Idea¶

  • Number of Transfers for that Asset between 1 hour before and after the event (Maybe transfer list if possible)

  • Plot transfers (-> Use plot to answer question wheter or not wallet tracking is suitable / plattforms doing stacked transfers )

  • tbd

  • Exemplary perfrom on Raiden Event

  • Extend to X further Events

In [ ]:
import pandas as pd
import json
import pandas as pd
import matplotlib.pyplot as plt
from datetime import datetime
import os
from web3_helpers import (
    get_contract_for_symbol,
    get_file_from_alchemy_api,
    get_block_number_for_unix_date,
)
import time
from datetime import datetime, timedelta
import json
import random
In [ ]:
lm_df = pd.read_csv("../data/la_morgia_data/pump_telegram.csv")
lm_df.sample(3)
Out[ ]:
symbol group date hour exchange
1064 GRS CPI 2020-04-02 16:00 binance
621 APPC TWP 2020-11-04 17:00 binance
1100 BRD CCS 2020-01-20 16:00 binance
In [ ]:
# lm_df = lm_df[lm_df["symbol"] == "RDN"]
# lm_df = lm_df[lm_df["date"] == "2021-08-21"]

# lm_df = lm_df.sample(100, random_state=1)
In [ ]:
def download_alchemy_data(lm_df, save_path, categories):
    i = 0

    for index, row in lm_df.iterrows():
        print(" ")

        print(row)

        symbol = row["symbol"]

        contract = get_contract_for_symbol(symbol.lower())

        print(f" Symbol: {symbol}, Contract: {contract}")

        event_time = datetime.strptime(f"{row['date']} {row['hour']}", "%Y-%m-%d %H:%M")

        start_date = event_time - timedelta(hours=12)

        end_date = event_time + timedelta(hours=12)

        print("Datetime timestamps: ", event_time, start_date, end_date)

        unix_start_date = time.mktime(start_date.timetuple())

        unix_end_date = time.mktime(end_date.timetuple())

        print("Unix timestamps: ", unix_start_date, unix_end_date)

        hex_block_number_start = get_block_number_for_unix_date(unix_start_date, True)

        hex_block_number_end = get_block_number_for_unix_date(unix_end_date, True)

        print("Hex Block Numbers: ", hex_block_number_start, hex_block_number_end)

        params = {
            "jsonrpc": "2.0",
            "method": "alchemy_getAssetTransfers",
            "params": [
                {
                    "fromBlock": hex_block_number_start,
                    "toBlock": hex_block_number_end,
                    "contractAddresses": [contract],
                    "category": categories,  # Decide Categories
                    "withMetadata": True,
                    "excludeZeroValue": False,
                    # "maxCount": "0x3e8" # maximum transactions possible
                }
            ],
        }

        i = i + 1

        answer_file = f"{save_path}/{i}_alchemy_answer_{symbol}.json"

        get_file_from_alchemy_api(params, answer_file)
In [ ]:
def parse_timestamp(entry):
    if "metadata" in entry and "blockTimestamp" in entry["metadata"]:
        timestamp = entry["metadata"]["blockTimestamp"]
        return datetime.fromisoformat(timestamp.replace("Z", "+00:00"))
    return None


def process_transaction_data_with_year(file_path):
    with open(file_path, "r") as file:
        data = json.load(file)

    filtered_data = [item for item in data if isinstance(item, dict)]

    for i, item in enumerate(filtered_data):
        if not isinstance(item, dict):
            print(f"Non-dict item at index {i}: {item}")
    df = pd.DataFrame(filtered_data)
    print("HERE HERE HERE DONE DONE DONE")

    df["timestamp"] = df.apply(lambda entry: parse_timestamp(entry), axis=1)
    df.dropna(subset=["timestamp"], inplace=True)
    df["timestamp"] = pd.to_datetime(df["timestamp"])
    year = df["timestamp"].dt.year.mode()[0] if not df["timestamp"].empty else None
    df["hour"] = df["timestamp"].dt.hour
    hourly_transactions = df.groupby("hour").size()
    return hourly_transactions, year


def plot_hourly_transactions_with_year_and_mean(file_paths):
    plt.figure(figsize=(12, 6))
    all_hourly_transactions = []

    for file_path in file_paths:
        print("File Path: ", file_path)

        hourly_transactions, year = process_transaction_data_with_year(file_path)
        hourly_transactions = hourly_transactions.reindex(range(24), fill_value=0)
        color = (
            "green"
            if year == 2019
            else "blue"
            if year == 2020
            else "yellow"
            if year == 2021
            else "black"
        )
        plt.plot(
            hourly_transactions,
            label=f"Transactions in {file_path} ({year})",
            color=color,
            alpha=0.4,
        )
        all_hourly_transactions.append(hourly_transactions)

    if all_hourly_transactions:
        mean_transactions = pd.concat(all_hourly_transactions, axis=1).mean(axis=1)
        plt.plot(
            mean_transactions,
            label="Mean Transactions",
            color="red",
            linestyle="--",
            marker="*",
        )

        med_transactions = pd.concat(all_hourly_transactions, axis=1).median(axis=1)
        plt.plot(
            med_transactions,
            label="Median Transactions",
            color="orange",
            linestyle="--",
            marker="*",
        )

    x_labels = [
        f"+{i-12}" if i > 12 else "Event Time" if i == 12 else f"{i-12}"
        for i in range(24)
    ]
    plt.xticks(range(24), x_labels, rotation=45)

    plt.ylim(0, 50)
    plt.xlabel("Hour")
    plt.ylabel("Number of Transactions")
    plt.title("Hourly Transactions by Year with Mean")
    # plt.legend()
    plt.grid(True)
    plt.show()
In [ ]:
# plot_hourly_transactions_with_year_and_mean(files)

files.remove("./alchemy_answers/alchemy_answer_BNT.json")¶

files.remove("./alchemy_answers/alchemy_answer_POWR.json")¶

files.remove("./alchemy_answers/alchemy_answer_SNT.json")¶

files.remove("./alchemy_answers/alchemy_answer_STORJ.json")¶

files.remove("./alchemy_answers/alchemy_answer_STPT.json")¶

files.remove("./alchemy_answers/alchemy_answer_WPR.json")¶

plot_hourly_transactions_with_year_and_mean(files)

In [ ]:
import json
import pandas as pd
import matplotlib.pyplot as plt
from datetime import datetime


def parse_timestamp(entry):
    try:
        if "metadata" in entry and "blockTimestamp" in entry["metadata"]:
            timestamp = entry["metadata"]["blockTimestamp"]
            return datetime.fromisoformat(timestamp.replace("Z", "+00:00"))
    except Exception as e:
        return None
    return None


def process_transaction_data(file_path):
    with open(file_path, "r") as file:
        data = json.load(file)
    filtered_data = [item for item in data if isinstance(item, dict)]
    df = pd.DataFrame(filtered_data)
    df["timestamp"] = df.apply(lambda entry: parse_timestamp(entry), axis=1)
    df = df.dropna(subset=["timestamp"])
    df["timestamp"] = pd.to_datetime(df["timestamp"])
    df["year"] = df["timestamp"].dt.year
    df["hour"] = df["timestamp"].dt.hour
    # Filter out data from the year 2021
    df = df[df["year"] != 2021]
    return df.groupby(["year", "hour"]).size().reset_index(name="transaction_count")


def combine_yearly_data(file_paths):
    all_data = pd.DataFrame()
    for file_path in file_paths:
        df = process_transaction_data(file_path)
        all_data = pd.concat([all_data, df], ignore_index=True)
    return all_data


def plot_hourly_quartile_areas_with_mean_median(file_paths):
    combined_data = combine_yearly_data(file_paths)

    plt.rcParams["font.size"] = 14
    plt.rcParams["axes.titlesize"] = 16
    plt.rcParams["axes.labelsize"] = 14
    plt.rcParams["xtick.labelsize"] = 11
    plt.rcParams["ytick.labelsize"] = 11
    plt.figure(figsize=(10, 5.5))

    # Plot quartile areas for each year
    for year in combined_data["year"].unique():
        year_data = combined_data[combined_data["year"] == year]
        quartiles = (
            year_data.groupby("hour")["transaction_count"]
            .quantile([0.25, 0.75])
            .unstack(level=-1)
        )
        plt.fill_between(
            quartiles.index,
            quartiles[0.25],
            quartiles[0.75],
            alpha=0.5,
            label=f"{year} Quartile Range",
        )

    # Calculate and plot overall mean and median
    overall_mean = combined_data.groupby("hour")["transaction_count"].mean()
    overall_median = combined_data.groupby("hour")["transaction_count"].median()

    plt.plot(
        overall_mean.index,
        overall_mean.values,
        color="green",
        label="Overall Mean",
        linestyle="-",
        marker="o",
    )
    plt.plot(
        overall_median.index,
        overall_median.values,
        color="purple",
        label="Overall Median",
        linestyle="-",
        marker="x",
    )

    x_labels = [
        f"+{i-12}" if i > 12 else "Event Time" if i == 12 else f"{i-12}"
        for i in range(24)
    ]
    plt.xticks(range(24), x_labels, rotation=60)

    event_time_index = x_labels.index("Event Time")
    plt.axvline(
        x=event_time_index, color="black", linestyle="--", linewidth=1.5, alpha=0.7
    )

    plt.xlabel("Hour")
    plt.ylabel("Transaction Count")
    plt.title("Hourly Transaction Analysis")
    plt.legend(loc="upper left")
    plt.grid(True)
    plt.tight_layout()
    plt.savefig("./transfers_overall.png")
    plt.show()
In [ ]:
# Binance
lm_df = pd.read_csv("../data/la_morgia_data/pump_telegram.csv")

save_path = "./alchemy_answers/binance_erc20"
categories = ["erc20"]
lm_df = lm_df[lm_df["exchange"] == "binance"]
download_alchemy_data(lm_df, save_path, categories)

files = os.listdir(save_path)
files = [f"{save_path}/{x}" for x in files]

file_paths = files
plot_hourly_quartile_areas_with_mean_median(file_paths)
 
symbol             BRD
group              ATW
date        2018-12-22
hour             17:00
exchange       binance
Name: 125, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2018-12-22 17:00:00 2018-12-22 05:00:00 2018-12-23 05:00:00
Unix timestamps:  1545451200.0 1545537600.0
Hex Block Numbers:  0x69c000 0x69d6bd
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x69c050', 'uniqueId': '0x82929410c3f7250c7dcc9b9db9613ce3d6c03947bbbe52487d66b228b672f9c2:log:68', 'hash': '0x82929410c3f7250c7dcc9b9db9613ce3d6c03947bbbe52487d66b228b672f9c2', 'from': '0xf8586bb82f330f7851f3145b6baa930138d8e9be', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T04:22:10.000Z'}}, {'blockNum': '0x69c07f', 'uniqueId': '0x64cd15ad4b6844cba2858b8641094da156951344b74e4424f4c408c5f812e1c1:log:43', 'hash': '0x64cd15ad4b6844cba2858b8641094da156951344b74e4424f4c408c5f812e1c1', 'from': '0x9520d4f751907a93da69322c25741bb492b9a95e', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T04:35:48.000Z'}}, {'blockNum': '0x69c197', 'uniqueId': '0x079a911d13dc24fdfd1402bd28f2a93762717f311005edbabc2c5cc7d76aa6f6:log:129', 'hash': '0x079a911d13dc24fdfd1402bd28f2a93762717f311005edbabc2c5cc7d76aa6f6', 'from': '0x92cf669d17bab9fe050d9da703e05bb0e6854a8a', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T05:47:54.000Z'}}, {'blockNum': '0x69c1dd', 'uniqueId': '0xad3d9cf039d7604b10bfeafd04fab8e2a1188594d9ff59e7abf885f42847e00c:log:25', 'hash': '0xad3d9cf039d7604b10bfeafd04fab8e2a1188594d9ff59e7abf885f42847e00c', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x28c3df94b262363b820df41277ec31891295c108', 'value': 27.53774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x017e29b4a0f910c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T06:06:42.000Z'}}, {'blockNum': '0x69c1e5', 'uniqueId': '0x70c78bbb5ee459e9c2e91de0f0fa82fbab104955e97f102d3f68d3321acccdf8:log:76', 'hash': '0x70c78bbb5ee459e9c2e91de0f0fa82fbab104955e97f102d3f68d3321acccdf8', 'from': '0x363eac71431f14e3ec15df1b7e7bf22801cf56ab', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T06:08:36.000Z'}}, {'blockNum': '0x69c258', 'uniqueId': '0xfb497d1c152118c40925528be0432fab36fb1a8d3aff78d65c605d99ff82abd5:log:121', 'hash': '0xfb497d1c152118c40925528be0432fab36fb1a8d3aff78d65c605d99ff82abd5', 'from': '0x8958618332df62af93053cb9c535e26462c959b0', 'to': '0x79d9d733a11621b80978e00bdb17f13ecc98af0b', 'value': 23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x013f306a2409fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T06:40:14.000Z'}}, {'blockNum': '0x69c281', 'uniqueId': '0x86f7d06af86cc12f992daee9c063d4dedf7dcc6bcda627512ddd23455f31bd3d:log:128', 'hash': '0x86f7d06af86cc12f992daee9c063d4dedf7dcc6bcda627512ddd23455f31bd3d', 'from': '0xaec5c9015f21ac5dd25df029255d358527756d4b', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T06:53:50.000Z'}}, {'blockNum': '0x69c2b1', 'uniqueId': '0x1be8b5d3277e57cb64fe0a2c04598d9f44de6152129fbc828df749fe5c73f6bb:log:154', 'hash': '0x1be8b5d3277e57cb64fe0a2c04598d9f44de6152129fbc828df749fe5c73f6bb', 'from': '0x131ec35ce94a773b2ec55f18f0e2b4f54ef25e35', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:05:15.000Z'}}, {'blockNum': '0x69c2bb', 'uniqueId': '0xaddde3fc8af31945a9ab87b75f262543256cfc01d159c32c7f86c365bc1a3585:log:160', 'hash': '0xaddde3fc8af31945a9ab87b75f262543256cfc01d159c32c7f86c365bc1a3585', 'from': '0xc4b38f26df3937be8d3fd1acd5b2ddd7c14bdca4', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:08:53.000Z'}}, {'blockNum': '0x69c2e4', 'uniqueId': '0x0db5ce43730f2680a31e21fa60e996ba6d587fd5f48517373e9258ae0f20447d:log:228', 'hash': '0x0db5ce43730f2680a31e21fa60e996ba6d587fd5f48517373e9258ae0f20447d', 'from': '0x331b6357de83d8653c9ee880fb90fffcaa34f993', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:17:13.000Z'}}, {'blockNum': '0x69c317', 'uniqueId': '0x5b5fdcdaf35e273543118d52b000c2967e24c4f2a1beaa70d9710d367b72df13:log:74', 'hash': '0x5b5fdcdaf35e273543118d52b000c2967e24c4f2a1beaa70d9710d367b72df13', 'from': '0x13c1af9a353acb8b288dd5fdeed57d9cb366b516', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:27:11.000Z'}}, {'blockNum': '0x69c33e', 'uniqueId': '0xc820de2a174b828be0960f26aa1cdd75e492c1baa794b544b877eb3da46fd242:log:22', 'hash': '0xc820de2a174b828be0960f26aa1cdd75e492c1baa794b544b877eb3da46fd242', 'from': '0x53f8c9a9e745e9562e3f680fa10596405d539985', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:38:59.000Z'}}, {'blockNum': '0x69c364', 'uniqueId': '0xf2cd7b2596d61646f4df8b8d86d1a6e0c84a7022072f65422e2bf0c5e5614b03:log:158', 'hash': '0xf2cd7b2596d61646f4df8b8d86d1a6e0c84a7022072f65422e2bf0c5e5614b03', 'from': '0x0f3f242eb394403e1175ab7313fca043c8c70544', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:47:42.000Z'}}, {'blockNum': '0x69c37b', 'uniqueId': '0xcf8df661e42e692a0521b602c1c9df81deb65ea94d2094e936ecd48a9d678cee:log:5', 'hash': '0xcf8df661e42e692a0521b602c1c9df81deb65ea94d2094e936ecd48a9d678cee', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 7890.1751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01abba2d0182bc33c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:55:07.000Z'}}, {'blockNum': '0x69c391', 'uniqueId': '0x165da081994d212b75868d3522e4a12a8747c445785cbc6382a2c66c27df2585:log:50', 'hash': '0x165da081994d212b75868d3522e4a12a8747c445785cbc6382a2c66c27df2585', 'from': '0xb810ec427a562ca7e00d1a9ed18bc9c793ad4927', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T07:59:53.000Z'}}, {'blockNum': '0x69c3a0', 'uniqueId': '0xce876edd588eb59e1c3e8d83e8e273733df0b709c6473a1702d03383a43eeb6c:log:23', 'hash': '0xce876edd588eb59e1c3e8d83e8e273733df0b709c6473a1702d03383a43eeb6c', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 9833.22002245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02150f5747c926e07400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T08:03:16.000Z'}}, {'blockNum': '0x69c3bc', 'uniqueId': '0x39270fa2237da9ea1326dd7674b0e3bd06b41e5f7418cc813783a38a5197aa61:log:88', 'hash': '0x39270fa2237da9ea1326dd7674b0e3bd06b41e5f7418cc813783a38a5197aa61', 'from': '0x2bae48ac8572e8c90608c6d40894095dcc280c30', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T08:10:56.000Z'}}, {'blockNum': '0x69c427', 'uniqueId': '0xf288801b40264c318e93f9ab0cf10ff8db2f22e9acdbffc75932e4b33ecefe5f:log:20', 'hash': '0xf288801b40264c318e93f9ab0cf10ff8db2f22e9acdbffc75932e4b33ecefe5f', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7890.1751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01abba2d0182bc33c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T08:34:21.000Z'}}, {'blockNum': '0x69c477', 'uniqueId': '0xbddaf3911fe1fdb2b2507344a695d9cb0be1cf14b750b61cdb68cfb93c824022:log:31', 'hash': '0xbddaf3911fe1fdb2b2507344a695d9cb0be1cf14b750b61cdb68cfb93c824022', 'from': '0x517118a2bd3b3f3f0324f0d1c0af0485d9635772', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T08:53:28.000Z'}}, {'blockNum': '0x69c49b', 'uniqueId': '0x0463d4c33c65e6e266a83fd4176b5c65644a9930497eca2b6e7095e1c5851247:log:90', 'hash': '0x0463d4c33c65e6e266a83fd4176b5c65644a9930497eca2b6e7095e1c5851247', 'from': '0xa9e29fc358998886cfe061028ebfdaeedb3dc559', 'to': '0xeba43d831415e05388711bd5f75abafd88d6e427', 'value': 14591.84388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0317068359f52daa8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T09:00:00.000Z'}}, {'blockNum': '0x69c510', 'uniqueId': '0x4a85427395dbfebf832f41152963d45ee7c0e8ab17d685387b2d5722fa1a5002:log:35', 'hash': '0x4a85427395dbfebf832f41152963d45ee7c0e8ab17d685387b2d5722fa1a5002', 'from': '0x2a431ae261d4345338f655e9ae6ac3805adcab7d', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T09:24:10.000Z'}}, {'blockNum': '0x69c527', 'uniqueId': '0x774174a4b2aee9075bb28ac84d269318df2a78592413aa4989c6f11e3a6153cd:log:27', 'hash': '0x774174a4b2aee9075bb28ac84d269318df2a78592413aa4989c6f11e3a6153cd', 'from': '0x326dfcf057b64f5ad4829df0626807652348dd01', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T09:30:18.000Z'}}, {'blockNum': '0x69c605', 'uniqueId': '0x08fbeca4936e2cb6616e8d4f2003383151fd08718f3600f6643b6a6ce553c659:log:79', 'hash': '0x08fbeca4936e2cb6616e8d4f2003383151fd08718f3600f6643b6a6ce553c659', 'from': '0xb8e02aac7eaa74fdd7437d31e4eb22b4ab9045aa', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T10:23:46.000Z'}}, {'blockNum': '0x69c61f', 'uniqueId': '0x2031f3085dcad2ffb49e3bd2d82dbbe53287a2a2191c26a993a6fc235dc1c54c:log:7', 'hash': '0x2031f3085dcad2ffb49e3bd2d82dbbe53287a2a2191c26a993a6fc235dc1c54c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3f2acac58d4e34722760cd530974bdc3cf6974b2', 'value': 52.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02d67d0224a2ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T10:30:57.000Z'}}, {'blockNum': '0x69c637', 'uniqueId': '0x3a4b8e0d6d59825b94b343648faa378eae2e8b21ae7b8f411020fcf9a7efeffb:log:50', 'hash': '0x3a4b8e0d6d59825b94b343648faa378eae2e8b21ae7b8f411020fcf9a7efeffb', 'from': '0x4a7738729e90b691e501d20c71c5a19f893ee014', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T10:37:58.000Z'}}, {'blockNum': '0x69c744', 'uniqueId': '0x6142392e01bd843e715638a26479776a6a13d4036fe55d82c0d3f7fcacc7627b:log:30', 'hash': '0x6142392e01bd843e715638a26479776a6a13d4036fe55d82c0d3f7fcacc7627b', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x5fd9b40d53aa9fced8a54d21904f8eae5842c174', 'value': 223.27144655408472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0c1a8385b2b7d56095', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T11:43:23.000Z'}}, {'blockNum': '0x69c796', 'uniqueId': '0xf22aea927f6ef26a912bc28a344a81da5db47ff04011e9fea1c1c9aceea32a6e:log:6', 'hash': '0xf22aea927f6ef26a912bc28a344a81da5db47ff04011e9fea1c1c9aceea32a6e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05970f6debbee3c23bcfc000021b29f2272348c8', 'value': 151.545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08371bfe9486928000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T12:01:51.000Z'}}, {'blockNum': '0x69c924', 'uniqueId': '0xea70bd1ecaa0e4934aa102c749345e2f60768ecdc48c503cac09c02142a559eb:log:72', 'hash': '0xea70bd1ecaa0e4934aa102c749345e2f60768ecdc48c503cac09c02142a559eb', 'from': '0x673657f21346e14f52d4e64958f3b31eb256e5a3', 'to': '0x129f321cae16d689761bd90586e12b2e298e8a2c', 'value': 1013.1920933757007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36ecdd68cdad0b68f5', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T13:41:27.000Z'}}, {'blockNum': '0x69c979', 'uniqueId': '0x23ed09817f3939c7b83822fc9d35b5be897a69fd5c49d0384bca0d6452bd9537:log:85', 'hash': '0x23ed09817f3939c7b83822fc9d35b5be897a69fd5c49d0384bca0d6452bd9537', 'from': '0x39099c2bbe6e4147cd950dc3dea809b4c243f4cd', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:02:17.000Z'}}, {'blockNum': '0x69c97f', 'uniqueId': '0xb1e579011dd83939db49957a4fabb7151a980e2c3081a227134d4dd6d4559d33:log:30', 'hash': '0xb1e579011dd83939db49957a4fabb7151a980e2c3081a227134d4dd6d4559d33', 'from': '0x129f321cae16d689761bd90586e12b2e298e8a2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1013.1920933757007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36ecdd68cdad0b68f5', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:03:46.000Z'}}, {'blockNum': '0x69c998', 'uniqueId': '0x8327c43009699f6e7ef9b416f93386472348c22edfd55e8048950185b075a89b:log:136', 'hash': '0x8327c43009699f6e7ef9b416f93386472348c22edfd55e8048950185b075a89b', 'from': '0x6ef3eda24ab0f03e3067ed63c3abca6585d47d49', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:10:55.000Z'}}, {'blockNum': '0x69ca10', 'uniqueId': '0x9b726420ca5dc35c92804ab122a0255311915ed3928b37298c9130ffb5cc07cc:log:87', 'hash': '0x9b726420ca5dc35c92804ab122a0255311915ed3928b37298c9130ffb5cc07cc', 'from': '0xf1e1af04889d83abb0fa89ffa5f2c946d19525c8', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:38:39.000Z'}}, {'blockNum': '0x69ca34', 'uniqueId': '0xfa7ab5c0e9be35286e585becfd667118264204938add4ffdf70a076f12f9af7a:log:149', 'hash': '0xfa7ab5c0e9be35286e585becfd667118264204938add4ffdf70a076f12f9af7a', 'from': '0xcc51c22401c2a6f4bab2957c4b47ebb20a6737b3', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:47:42.000Z'}}, {'blockNum': '0x69ca4b', 'uniqueId': '0xddb58bb9c90c717bf31c6c4386a07f95c19edc2b62c8f9ba8fd84d8df691eff1:log:50', 'hash': '0xddb58bb9c90c717bf31c6c4386a07f95c19edc2b62c8f9ba8fd84d8df691eff1', 'from': '0xd93361089eaa3e95e07422007e038c4d7d8e50b9', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:52:18.000Z'}}, {'blockNum': '0x69ca63', 'uniqueId': '0xc6d7b8379797ec6c49a9b35285248fa0741d1d83bcdf797f7007e991a8957613:log:70', 'hash': '0xc6d7b8379797ec6c49a9b35285248fa0741d1d83bcdf797f7007e991a8957613', 'from': '0x6163cb7a048efd6d3e7c7b82ab0f3f6d10dc1bd4', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T14:58:24.000Z'}}, {'blockNum': '0x69ca77', 'uniqueId': '0xc2469d29bb3b47ea6a4ecfe4ba3ef71b17aa8433512eab36e380df65a094a0af:log:51', 'hash': '0xc2469d29bb3b47ea6a4ecfe4ba3ef71b17aa8433512eab36e380df65a094a0af', 'from': '0x7995a8e25134f1df4c15f6db85c795eeef68b9bc', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T15:04:34.000Z'}}, {'blockNum': '0x69caaf', 'uniqueId': '0xc976394618012e2b7cfeca4f653076f2bf433e7094410355e4e4b7b9a16df4f6:log:58', 'hash': '0xc976394618012e2b7cfeca4f653076f2bf433e7094410355e4e4b7b9a16df4f6', 'from': '0xada75da084186e21d9ebeff6952a896443a317ae', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T15:14:34.000Z'}}, {'blockNum': '0x69cb19', 'uniqueId': '0x2b88306af7479ece8bd5e5a4ff33e99b9b851147f1fb7c6dc7af03a366855647:log:140', 'hash': '0x2b88306af7479ece8bd5e5a4ff33e99b9b851147f1fb7c6dc7af03a366855647', 'from': '0xa89de186be529867993d11b5230b5081b67531f3', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T15:36:05.000Z'}}, {'blockNum': '0x69cbb5', 'uniqueId': '0x5c2d361270357f21d0db9027d885cced775d5f1de09969f8b4c861e641c6a984:log:45', 'hash': '0x5c2d361270357f21d0db9027d885cced775d5f1de09969f8b4c861e641c6a984', 'from': '0x06354852c4178876eff5d1d176600ac5b02367d7', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:18:40.000Z'}}, {'blockNum': '0x69cbc5', 'uniqueId': '0x2222f1abc80749a68167412fa73f147efce1aa1bdde88c66765af8b8c0691c3a:log:96', 'hash': '0x2222f1abc80749a68167412fa73f147efce1aa1bdde88c66765af8b8c0691c3a', 'from': '0x96a0fc97b54e92c6f72467442ab19193ef313212', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:22:38.000Z'}}, {'blockNum': '0x69cbf3', 'uniqueId': '0x8d25c2f515676f14a855d19535d1613e10e8887022b7ad4232ea520e85256bf6:log:92', 'hash': '0x8d25c2f515676f14a855d19535d1613e10e8887022b7ad4232ea520e85256bf6', 'from': '0xd8c42acba3a74eddf89fb4a7c7f70eaaa8985589', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:32:53.000Z'}}, {'blockNum': '0x69cc0b', 'uniqueId': '0x2d2fc9fef4bf69d709df67f421bd3c4d91de82e2f77e630f1c707a2710bf5d66:log:134', 'hash': '0x2d2fc9fef4bf69d709df67f421bd3c4d91de82e2f77e630f1c707a2710bf5d66', 'from': '0x3c64d7b42447eb622c39faa74f5bb1483a575b6b', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:37:37.000Z'}}, {'blockNum': '0x69cc18', 'uniqueId': '0x620f38e06d9a1ca2829c4dbf646d16cc300d5d64e825adcc288c630bf21dffbe:log:73', 'hash': '0x620f38e06d9a1ca2829c4dbf646d16cc300d5d64e825adcc288c630bf21dffbe', 'from': '0x738bdfd51909fc998a3df47657d499e7f0559667', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:40:54.000Z'}}, {'blockNum': '0x69cc19', 'uniqueId': '0x2a0f228092535da7d6ecb6295a5ec38028f2cf0dbd4e9bbdcc63307dcff3f969:log:85', 'hash': '0x2a0f228092535da7d6ecb6295a5ec38028f2cf0dbd4e9bbdcc63307dcff3f969', 'from': '0xc91595ce2a0144da6b2fdee88abeded80bc8f6c7', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:41:14.000Z'}}, {'blockNum': '0x69cc3b', 'uniqueId': '0x29b4a7a0ad7fafec82793705b82d60a84ef2f8fefd34f75fef93b82c81de2e6e:log:46', 'hash': '0x29b4a7a0ad7fafec82793705b82d60a84ef2f8fefd34f75fef93b82c81de2e6e', 'from': '0x10a02aba49b9909c3402f5db5b299bc9af3991b2', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:50:37.000Z'}}, {'blockNum': '0x69cc57', 'uniqueId': '0x2c955bd5f6f9e4f7f2398b72e678c9a19237774c034bf457add6974d2a4ee289:log:4', 'hash': '0x2c955bd5f6f9e4f7f2398b72e678c9a19237774c034bf457add6974d2a4ee289', 'from': '0x80f1326229b970f7f9f259a6bc74ed9a0f380546', 'to': '0x72c4d247835f8f18489cb463394ee412db35c844', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T16:56:32.000Z'}}, {'blockNum': '0x69cc6d', 'uniqueId': '0xeaa4027c77df2dc9dce0940ac702678b14a237255cf169b5111394930da7fda0:log:87', 'hash': '0xeaa4027c77df2dc9dce0940ac702678b14a237255cf169b5111394930da7fda0', 'from': '0x63a644a7910cf9e71a9c21b6e082c6fd926f11c9', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T17:02:17.000Z'}}, {'blockNum': '0x69ccb0', 'uniqueId': '0xc9a98289d38e8a3e3725c6b6e36525655adb20b07118deb29bdd32088ba58a78:log:131', 'hash': '0xc9a98289d38e8a3e3725c6b6e36525655adb20b07118deb29bdd32088ba58a78', 'from': '0x17ba1c5f529c481d24a955fba6039c79007299f0', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T17:16:14.000Z'}}, {'blockNum': '0x69ccd8', 'uniqueId': '0xba90260d62a49ce0e50cdf2f5d830cb5cad9c395c99940ecfa843043bb3140c2:log:165', 'hash': '0xba90260d62a49ce0e50cdf2f5d830cb5cad9c395c99940ecfa843043bb3140c2', 'from': '0x163e197f9f1c60b96a2e04c1b6ad4d137534f21b', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T17:24:39.000Z'}}, {'blockNum': '0x69ccfb', 'uniqueId': '0xea48ca42b2515d00ca3b7adc36f1fc071f7e884d651a13831ad339c2b1c6e3a8:log:75', 'hash': '0xea48ca42b2515d00ca3b7adc36f1fc071f7e884d651a13831ad339c2b1c6e3a8', 'from': '0xf924a5f8e7306a527968c0e2ef5d43943dd56c45', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T17:32:10.000Z'}}, {'blockNum': '0x69cf29', 'uniqueId': '0x32be877dabfdb0a911569aa6c6ebda8fcf12807306d7a549b5685ad73896ffa3:log:45', 'hash': '0x32be877dabfdb0a911569aa6c6ebda8fcf12807306d7a549b5685ad73896ffa3', 'from': '0x506f3b599432e4f2bc6beaddf998ad04d3741aed', 'to': '0x3366ee19d83d09ce9632a195aeeb1f242994be74', 'value': 1138.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3db93fcb704bc40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T20:00:23.000Z'}}, {'blockNum': '0x69cfb2', 'uniqueId': '0x3992f320fa6c36e835d88a20c509a73acabef11ae7add41b5806a2b3ac207bcd:log:26', 'hash': '0x3992f320fa6c36e835d88a20c509a73acabef11ae7add41b5806a2b3ac207bcd', 'from': '0x3366ee19d83d09ce9632a195aeeb1f242994be74', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1138.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3db93fcb704bc40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T20:34:43.000Z'}}, {'blockNum': '0x69cfc2', 'uniqueId': '0x8d919c7c509bf85c0115fa076814483224bdfda6bae177a72251912108b2dbb4:log:0', 'hash': '0x8d919c7c509bf85c0115fa076814483224bdfda6bae177a72251912108b2dbb4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb96c207eeafc9f446c77279db3b560dc23de4a7a', 'value': 31.665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01b770adbb4cbe8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T20:38:00.000Z'}}, {'blockNum': '0x69d0be', 'uniqueId': '0xbf68a83fcf2de6e5e4078c45180c5a4d0bde1cd9dd6f84163239baaccd5d8bd6:log:0', 'hash': '0xbf68a83fcf2de6e5e4078c45180c5a4d0bde1cd9dd6f84163239baaccd5d8bd6', 'from': '0x77a15b1dd4ff1823e21f9ac4be7a9e95afd667c5', 'to': '0x5eed9a0c49c61d890b553d2fbb4768e6f0f64a52', 'value': 1466.9591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4f8625a92ae6bbc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T21:37:38.000Z'}}, {'blockNum': '0x69d0fa', 'uniqueId': '0x428f26a54a84346d6a0137f153682b9c48e2db53cc84e3c3dc9387c115a70f3e:log:7', 'hash': '0x428f26a54a84346d6a0137f153682b9c48e2db53cc84e3c3dc9387c115a70f3e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xedfa17dcfacdaf931419d73dece5b9b5c4ca60dd', 'value': 6.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5cfb2e807b1e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T21:51:50.000Z'}}, {'blockNum': '0x69d10e', 'uniqueId': '0x193d05dbb535d089c4bf74643188cf54a85a23472abddd2dac3168e0596780af:log:1', 'hash': '0x193d05dbb535d089c4bf74643188cf54a85a23472abddd2dac3168e0596780af', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xedfa17dcfacdaf931419d73dece5b9b5c4ca60dd', 'value': 1581.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x55b639cef3b5380000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T21:57:10.000Z'}}, {'blockNum': '0x69d1f1', 'uniqueId': '0x6c41adb6f78f86c1c7cf0e1f485313246254eb0945d4dd38bc82a908ceb71257:log:1', 'hash': '0x6c41adb6f78f86c1c7cf0e1f485313246254eb0945d4dd38bc82a908ceb71257', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7458150d3557f37e4207f7e1d414e26475ccceef', 'value': 74000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0fab8c4c3b325a400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T22:48:52.000Z'}}, {'blockNum': '0x69d208', 'uniqueId': '0x8e7f191ed5850c4d039bfca9c7477e7a16adad8c57202e724d0650286be32fa0:log:1', 'hash': '0x8e7f191ed5850c4d039bfca9c7477e7a16adad8c57202e724d0650286be32fa0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 291702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3dc53275889114180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T22:54:56.000Z'}}, {'blockNum': '0x69d20e', 'uniqueId': '0xf7ee4cfe86ae92c33e7761b43099a48a0afcb9a6eb0f550c2f0d4546ad2990fc:log:1', 'hash': '0xf7ee4cfe86ae92c33e7761b43099a48a0afcb9a6eb0f550c2f0d4546ad2990fc', 'from': '0xa427c208447f77fa7b8f1e9b0f4d063223af48b8', 'to': '0x859ea256ccb4ce3bfb8f34fa1ad79a528c8c6838', 'value': 26005.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0581c863c3d3749b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-22T22:56:12.000Z'}}, {'blockNum': '0x69d3ab', 'uniqueId': '0x3bf346dafcdae008994a45836c6c63e252513a46d75df9373d52d8736da01f98:log:3', 'hash': '0x3bf346dafcdae008994a45836c6c63e252513a46d75df9373d52d8736da01f98', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6e200993bb0db496d0edbfa64be9721794f3ae9e', 'value': 2631.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ea1558287e1958000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T00:35:18.000Z'}}, {'blockNum': '0x69d4bc', 'uniqueId': '0x0fa104a8a9c29197ba1d743b07a8b012d67d0d2be4d43c8a1f7892b12e9ccacd:log:11', 'hash': '0x0fa104a8a9c29197ba1d743b07a8b012d67d0d2be4d43c8a1f7892b12e9ccacd', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xaa493fc50ecfd8197eedb1f5a486080dc081a8d8', 'value': 147.2540875167391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x07fb8f9c692f84398a', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T01:47:03.000Z'}}, {'blockNum': '0x69d5a5', 'uniqueId': '0x05f7dee46d0065ea11525c7756470ff1217d2a7e8d8fd6cd4f7d9d881c8b43f2:log:135', 'hash': '0x05f7dee46d0065ea11525c7756470ff1217d2a7e8d8fd6cd4f7d9d881c8b43f2', 'from': '0x9fdef85334f24bd107ee7404daef53a825f880fc', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T02:49:22.000Z'}}, {'blockNum': '0x69d5e1', 'uniqueId': '0x079ee12eca64a1d34977e9db56d86646fc4456a57037ba7601ae793772b0b4a2:log:115', 'hash': '0x079ee12eca64a1d34977e9db56d86646fc4456a57037ba7601ae793772b0b4a2', 'from': '0x6072d95ab4c666ab417b3f496b19dfeb2ce4249b', 'to': '0xc731c5190287de7be026794665494febb714371f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T03:04:34.000Z'}}, {'blockNum': '0x69d6a7', 'uniqueId': '0x967dd1438c00165583e84f2acd5b4c6710397c3d319828184fb0237174926436:log:27', 'hash': '0x967dd1438c00165583e84f2acd5b4c6710397c3d319828184fb0237174926436', 'from': '0x5eed9a0c49c61d890b553d2fbb4768e6f0f64a52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1466.9591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4f8625a92ae6bbc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T03:54:22.000Z'}}, {'blockNum': '0x69d6b9', 'uniqueId': '0xf435731221056ae8e6ca494877aaefc8510fd4fe508c33b69ce94f1e70526f89:log:1', 'hash': '0xf435731221056ae8e6ca494877aaefc8510fd4fe508c33b69ce94f1e70526f89', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2bde5d7733a578c3ff1c79c25b990917b316d084', 'value': 105.591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05b95e970e0e458000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-23T03:59:02.000Z'}}]}}
Number of returned transfers:  65
Answer is complete
 
symbol             BQX
group              ATW
date        2019-02-24
hour             17:00
exchange       binance
Name: 151, dtype: object
HERE
 Symbol: BQX, Contract: 
Datetime timestamps:  2019-02-24 17:00:00 2019-02-24 05:00:00 2019-02-25 05:00:00
Unix timestamps:  1550980800.0 1551067200.0
Hex Block Numbers:  0x6ec7e6 0x6ed8a2
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SYS
group              ATW
date        2019-02-27
hour             17:00
exchange       binance
Name: 153, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SYS, Contract: 
Datetime timestamps:  2019-02-27 17:00:00 2019-02-27 05:00:00 2019-02-28 05:00:00
Unix timestamps:  1551240000.0 1551326400.0
Hex Block Numbers:  0x6ef9cc 0x6f0a9d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol              HC
group              ATW
date        2019-05-12
hour             17:00
exchange       binance
Name: 190, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
 Symbol: HC, Contract: 
Datetime timestamps:  2019-05-12 17:00:00 2019-05-12 05:00:00 2019-05-13 05:00:00
Unix timestamps:  1557630000.0 1557716400.0
Hex Block Numbers:  0x76266f 0x763f9a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              ATW
date        2019-05-25
hour             16:00
exchange       binance
Name: 194, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2019-05-25 16:00:00 2019-05-25 04:00:00 2019-05-26 04:00:00
Unix timestamps:  1558749600.0 1558836000.0
Hex Block Numbers:  0x776a51 0x7783ad
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x776af4', 'uniqueId': '0x2e39c9690071565e1ae4a9f11781685347963fc6749f39b0fd1e6f46b54c8405:log:73', 'hash': '0x2e39c9690071565e1ae4a9f11781685347963fc6749f39b0fd1e6f46b54c8405', 'from': '0xb434a5a29c7bda2e3c6ff0496f51a5fb36bbd2fb', 'to': '0x1a7e9b85da4dffdfcb4972f312c284ed145ad162', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T02:35:05.000Z'}}, {'blockNum': '0x776f8f', 'uniqueId': '0xdfd4bb96054c395207857536e56053b5f1971b7918b12d2878ae70e709a485bd:log:90', 'hash': '0xdfd4bb96054c395207857536e56053b5f1971b7918b12d2878ae70e709a485bd', 'from': '0x978277ffc11dcf2ecf4e99dc583d76c7ce583b79', 'to': '0x017760d5db096ae1aaa1341dd034cf3127f9ecad', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T07:05:22.000Z'}}, {'blockNum': '0x777017', 'uniqueId': '0x97a94d70b58e1079f5aabe877988ce793469d6fc152abf7d568394899b606499:log:40', 'hash': '0x97a94d70b58e1079f5aabe877988ce793469d6fc152abf7d568394899b606499', 'from': '0x8958618332df62af93053cb9c535e26462c959b0', 'to': '0xdb27fc9a34b5ca525a21ab78a230b51081cb1578', 'value': 10.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8dd4bbda247e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T07:33:29.000Z'}}, {'blockNum': '0x77725a', 'uniqueId': '0xb740ea9edb3655e51c07a5b1f9ba84daf154a7d4bfb5d49098d4f7e7237469af:log:16', 'hash': '0xb740ea9edb3655e51c07a5b1f9ba84daf154a7d4bfb5d49098d4f7e7237469af', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xdc9dc3e9301ed6dc859ab15b6492ebae2dbf37a3', 'value': 35.30033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01e9e3f71b1810a000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T09:44:26.000Z'}}, {'blockNum': '0x7772f0', 'uniqueId': '0x95df88284d83a5191ad4155102e3024d230d3aaa93c2f56999aee63fe3bf0dbd:log:114', 'hash': '0x95df88284d83a5191ad4155102e3024d230d3aaa93c2f56999aee63fe3bf0dbd', 'from': '0xf86a7dad7ea6acf38a6abefc525c5635c63db2af', 'to': '0x52e42d053b36f946262cc14bdf46c7edbfd22387', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T10:17:24.000Z'}}, {'blockNum': '0x777337', 'uniqueId': '0x841d43343ad16a46fdf0be367a6f63727c12144eb41be61956b010c3cec47614:log:52', 'hash': '0x841d43343ad16a46fdf0be367a6f63727c12144eb41be61956b010c3cec47614', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x00d0bd6ca4b08a3da74b9f5aa36ee76afcf6278e', 'value': 46.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02897b000b00480000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T10:37:36.000Z'}}, {'blockNum': '0x7773ae', 'uniqueId': '0x623103e934e8cc52ceb3be35844734e278f3da9b91507a835e26308802d306fc:log:4', 'hash': '0x623103e934e8cc52ceb3be35844734e278f3da9b91507a835e26308802d306fc', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd3735f7b020f98273558213141484a188e883e20', 'value': 27.45161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x017cf7b5d9a28fa000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T11:03:07.000Z'}}, {'blockNum': '0x7773de', 'uniqueId': '0xd953cef878b263e6547f7c5702dc4705b6f2824bcf3aad4ab5ca5a0a17882fe9:log:5', 'hash': '0xd953cef878b263e6547f7c5702dc4705b6f2824bcf3aad4ab5ca5a0a17882fe9', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x938ed056267ce954c267af5dd71bba0394811762', 'value': 82.40444128264089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04779762bfc6583379', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T11:15:08.000Z'}}, {'blockNum': '0x7773f4', 'uniqueId': '0x4ed403ff0be85308382bea185117e7b586fb3dbe22ddc29e4af5965f674731a8:log:23', 'hash': '0x4ed403ff0be85308382bea185117e7b586fb3dbe22ddc29e4af5965f674731a8', 'from': '0x2c1266ef400b58c7a582472479c5fe8f4738df50', 'to': '0x6bdee37daf991a224e63b13c52e761e5ab0460f4', 'value': 241.30564755689772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d14c9dff5fc7ebd84', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T11:21:02.000Z'}}, {'blockNum': '0x777498', 'uniqueId': '0xae9b63762bd087c18be064fa8195727f8f70b87aa4a72747cd970bbb40c76e88:log:0', 'hash': '0xae9b63762bd087c18be064fa8195727f8f70b87aa4a72747cd970bbb40c76e88', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 996.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x360960feba2d600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T11:56:26.000Z'}}, {'blockNum': '0x777522', 'uniqueId': '0xb9f6da559b9a72b11b0eda4f703421c9aeaa496e09d55481a350e6f3c17b55c4:log:26', 'hash': '0xb9f6da559b9a72b11b0eda4f703421c9aeaa496e09d55481a350e6f3c17b55c4', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3addcebb60e6622450fa867b88069e5a42ab5e38', 'value': 161.86094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08c645935a9ed0c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T12:27:39.000Z'}}, {'blockNum': '0x777522', 'uniqueId': '0xd09cd3f478f0c47cd13387d89991d16f65fa7c47101358ac3af32217c760a360:log:27', 'hash': '0xd09cd3f478f0c47cd13387d89991d16f65fa7c47101358ac3af32217c760a360', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3addcebb60e6622450fa867b88069e5a42ab5e38', 'value': 161.86094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08c645935a9ed0c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T12:27:39.000Z'}}, {'blockNum': '0x777557', 'uniqueId': '0x097f6564016265fb4f4feb632490bb6895c8027f26f1262edee8446cb444d15d:log:4', 'hash': '0x097f6564016265fb4f4feb632490bb6895c8027f26f1262edee8446cb444d15d', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x46b0a7844016033456383b5a5bce825531989a8b', 'value': 18.6218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01026dec6ffe5e8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T12:40:10.000Z'}}, {'blockNum': '0x777557', 'uniqueId': '0xf600d95a177397cb37ad165bbbde9a3880fc05d0764b88332ff002cb962947b5:log:5', 'hash': '0xf600d95a177397cb37ad165bbbde9a3880fc05d0764b88332ff002cb962947b5', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x46b0a7844016033456383b5a5bce825531989a8b', 'value': 18.6218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01026dec6ffe5e8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T12:40:10.000Z'}}, {'blockNum': '0x7775f1', 'uniqueId': '0xbd57b8bd505c834e38d69f418a637a7c47f06dad1927b751434e8009264480d6:log:15', 'hash': '0xbd57b8bd505c834e38d69f418a637a7c47f06dad1927b751434e8009264480d6', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xe26aec9cf9fb4991f1bd08e6322c6727fbb7265a', 'value': 22.54616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0138e40d10b91f0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T13:13:17.000Z'}}, {'blockNum': '0x7775f3', 'uniqueId': '0xf495b44f7bb318b9732b5a2380f4f2ea088ba27e27f9ed69c4640f8f694ba56d:log:95', 'hash': '0xf495b44f7bb318b9732b5a2380f4f2ea088ba27e27f9ed69c4640f8f694ba56d', 'from': '0xed5dab5f32c775e57d6834fe900a8ab556a174e9', 'to': '0x18dcf57d4540e51ca4b8a141a95d953b9162edba', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T13:14:33.000Z'}}, {'blockNum': '0x777650', 'uniqueId': '0xc48b8579921cf39841246403ab0c1bad47787ec95f740eeb0a14b69c92fe4fef:log:13', 'hash': '0xc48b8579921cf39841246403ab0c1bad47787ec95f740eeb0a14b69c92fe4fef', 'from': '0xa4602a6cad80cfaf85c8f2325121f54d8f3e3597', 'to': '0xa674ea657de352db1dc72e170a92daf7f8718453', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T13:34:01.000Z'}}, {'blockNum': '0x777770', 'uniqueId': '0x4f975ce5c4f2a38eaec8804349df2382f2fc57f5c56f877dd5f4be828b03499f:log:7', 'hash': '0x4f975ce5c4f2a38eaec8804349df2382f2fc57f5c56f877dd5f4be828b03499f', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x623baad50bda973d5de8567bd6787b6c1f23ed54', 'value': 35.30033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01e9e3f71b1810a000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T14:38:03.000Z'}}, {'blockNum': '0x777773', 'uniqueId': '0xbdca4697cd49c7fcc4071a53635153d8ec61b124903e9463c99ee4323b9d9a83:log:129', 'hash': '0xbdca4697cd49c7fcc4071a53635153d8ec61b124903e9463c99ee4323b9d9a83', 'from': '0xdfcc252863a347dd4a1eba8b924bc9030017a127', 'to': '0x5e776185730e4f2d9e121711f0e88e1fb3040e47', 'value': 829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2cf0afa3c50ed40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T14:38:23.000Z'}}, {'blockNum': '0x77778a', 'uniqueId': '0xbb1ee0a7265efd51d4991834bf0db2b50bb3677d1acc51580188cd5e0627ab46:log:57', 'hash': '0xbb1ee0a7265efd51d4991834bf0db2b50bb3677d1acc51580188cd5e0627ab46', 'from': '0xc76ec7706a86e39fce52267085de7874dae8c120', 'to': '0x981e3963130fed5634b6d02f627a83e2a127003a', 'value': 10.76523502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9565cc36cab1f800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T14:43:00.000Z'}}, {'blockNum': '0x77780a', 'uniqueId': '0x88bbddbe0f76a4e695c55902203532a4cdd7d78b7141ec00efaa75c28983b1f7:log:96', 'hash': '0x88bbddbe0f76a4e695c55902203532a4cdd7d78b7141ec00efaa75c28983b1f7', 'from': '0xacd390321981a422ba8a89bf647f2fcfdaa942f3', 'to': '0x532aa4ffc9e7c452c7dfbd452958166423dbfac7', 'value': 791.0998137529584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2ae2b7212e8ec447cc', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T15:12:36.000Z'}}, {'blockNum': '0x777884', 'uniqueId': '0x683dd70deb2a170da851d221180f3fe5b4b0f21558b65e4ddd1f8a94658b99bb:log:69', 'hash': '0x683dd70deb2a170da851d221180f3fe5b4b0f21558b65e4ddd1f8a94658b99bb', 'from': '0x532aa4ffc9e7c452c7dfbd452958166423dbfac7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 791.0998137529584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2ae2b7212e8ec447cc', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T15:33:44.000Z'}}, {'blockNum': '0x7778ae', 'uniqueId': '0xd1347728efb12aad00e4eb4d4e6261a8b4dd4c64bdb60d41547fe8d31be278c3:log:19', 'hash': '0xd1347728efb12aad00e4eb4d4e6261a8b4dd4c64bdb60d41547fe8d31be278c3', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x28d6cefaa50742d8d9f74927f205b4f6315ff1d7', 'value': 82.7158803303467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x047be9d6e9b6093374', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T15:44:32.000Z'}}, {'blockNum': '0x77798d', 'uniqueId': '0x15ff949f41baac650a8fa1868728102c26ffdf995d247c5e43bed91c30da5913:log:34', 'hash': '0x15ff949f41baac650a8fa1868728102c26ffdf995d247c5e43bed91c30da5913', 'from': '0x17d42f9f55573782a6edc80a2187436b82260283', 'to': '0x6a3ee8937a37c990c89697caf42f59ca8713d437', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T16:31:51.000Z'}}, {'blockNum': '0x777998', 'uniqueId': '0xaeb5d5dd0068801a8ff9799e3ced6ceefd44223d76bad3812965d6e23c318e9a:log:158', 'hash': '0xaeb5d5dd0068801a8ff9799e3ced6ceefd44223d76bad3812965d6e23c318e9a', 'from': '0x0306c2d1fa4794bf90c037867589b6bdadf0a9d0', 'to': '0xac0fe600f10cf3f93a431f3e22b92251dec75c72', 'value': 389.603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x151ed3e84b7a838000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T16:34:59.000Z'}}, {'blockNum': '0x7779cc', 'uniqueId': '0x46702e0fdfb513be0038016600528561ac214151c4763380e4a38506a6b22786:log:3', 'hash': '0x46702e0fdfb513be0038016600528561ac214151c4763380e4a38506a6b22786', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 3104.07, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa8459ff2eeaac70000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T16:45:20.000Z'}}, {'blockNum': '0x777a71', 'uniqueId': '0x38eb0195d8b17dc27b56cb2a7287807c15fd1a6ca144911e4e63a85b07bb2788:log:2', 'hash': '0x38eb0195d8b17dc27b56cb2a7287807c15fd1a6ca144911e4e63a85b07bb2788', 'from': '0xab13434508eedcc2ff429091268279be536a13ad', 'to': '0x8a94b88f7f77a20fc960d190f7ea31d38d0dfe34', 'value': 993.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x35de5b9526d9aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T17:21:33.000Z'}}, {'blockNum': '0x777a8c', 'uniqueId': '0x98b70a2756a3ae5a26bca424adec75275752d3e9dde106b79a920184d83fbdc0:log:17', 'hash': '0x98b70a2756a3ae5a26bca424adec75275752d3e9dde106b79a920184d83fbdc0', 'from': '0xafa705c6c9b729c9864aca98525eec15be46ad95', 'to': '0x6a5f2d59794319c621c41df3142b603d18e0209c', 'value': 55.6167027511081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0303d6387b7249e8bb', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T17:27:27.000Z'}}, {'blockNum': '0x777aa3', 'uniqueId': '0x8df6a2bfe9754dd6e7050de4045223f742b4d81de4c8a114d0c9ade0e8bcbe63:log:42', 'hash': '0x8df6a2bfe9754dd6e7050de4045223f742b4d81de4c8a114d0c9ade0e8bcbe63', 'from': '0x8a94b88f7f77a20fc960d190f7ea31d38d0dfe34', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 993.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x35de5b9526d9aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T17:33:50.000Z'}}, {'blockNum': '0x777c5b', 'uniqueId': '0xde7ad1c7a5c1d308ad531725e8b007edb8d158129c6ddd0ae3e6db0b131da93d:log:27', 'hash': '0xde7ad1c7a5c1d308ad531725e8b007edb8d158129c6ddd0ae3e6db0b131da93d', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0x75295d50b9cbf608bdead57ebaef28d893831e10', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T19:08:12.000Z'}}, {'blockNum': '0x777cbd', 'uniqueId': '0x6a0f98b1b4e9c9a76144b0a59eb7dcc6e7abd97743666057c844e7827f3925cb:log:11', 'hash': '0x6a0f98b1b4e9c9a76144b0a59eb7dcc6e7abd97743666057c844e7827f3925cb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x539d4c06659bdacd36764767b7eaffeedb8d41e1', 'value': 46.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02897b000b00480000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T19:29:12.000Z'}}, {'blockNum': '0x777ce3', 'uniqueId': '0x7624bb016f3024a85d5cfc9302162921f95f534a2c42ad06f9157e9a08c3e81d:log:21', 'hash': '0x7624bb016f3024a85d5cfc9302162921f95f534a2c42ad06f9157e9a08c3e81d', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 93.94556163994562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0517c1ae910d85e488', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T19:39:49.000Z'}}, {'blockNum': '0x777d1e', 'uniqueId': '0x86979b2575f79196c154468f0a51fc7c092e909003dd9ed3bd290d762a5de660:log:79', 'hash': '0x86979b2575f79196c154468f0a51fc7c092e909003dd9ed3bd290d762a5de660', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0x94daf0f200dbb272e908f9e352da3067b2954c04', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T19:53:33.000Z'}}, {'blockNum': '0x777d50', 'uniqueId': '0xed04aef03cbe7d9c09e6ab82d9b882d306c52d1a96f0f08467c9a1f2a8ef9f66:log:103', 'hash': '0xed04aef03cbe7d9c09e6ab82d9b882d306c52d1a96f0f08467c9a1f2a8ef9f66', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0x23a45de3ce73a11a11a9c6a543e4582debdf1e13', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:06:13.000Z'}}, {'blockNum': '0x777d80', 'uniqueId': '0x59e23beda7fa184de37cfde6eaa81de54329a6f1e46a4dbc34bfba21a8ab55eb:log:79', 'hash': '0x59e23beda7fa184de37cfde6eaa81de54329a6f1e46a4dbc34bfba21a8ab55eb', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0xb02900de3429cfac05181e69324be2d27d41547b', 'value': 897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x30a0602b7d85640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:17:39.000Z'}}, {'blockNum': '0x777da0', 'uniqueId': '0xf331b4d204775155b3b91c6f084d08c001811dfa685dac714bfb2c8801504ad8:log:80', 'hash': '0xf331b4d204775155b3b91c6f084d08c001811dfa685dac714bfb2c8801504ad8', 'from': '0x0082fcf784380e0102fdd77457b0865978846152', 'to': '0xdf5e882e0c0446d73a81b35c1ca46f2ca476998b', 'value': 67.51882147624998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a9030a6710e54bbc', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:25:07.000Z'}}, {'blockNum': '0x777dc1', 'uniqueId': '0x60da1628da41395052edd4912455a453e00627835050c93d9979c069e41211e0:log:105', 'hash': '0x60da1628da41395052edd4912455a453e00627835050c93d9979c069e41211e0', 'from': '0xb02900de3429cfac05181e69324be2d27d41547b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x30a0602b7d85640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:34:43.000Z'}}, {'blockNum': '0x777dfa', 'uniqueId': '0x94f6c1b967203df1141074cb940350c24ae324a422ba1126d4ac52cc6a116d5a:log:93', 'hash': '0x94f6c1b967203df1141074cb940350c24ae324a422ba1126d4ac52cc6a116d5a', 'from': '0xb9bb734d277e6a23249fc26d8ee8a790703667bb', 'to': '0x26a848e5029e1d916c93dd461eb06868751c8fc8', 'value': 770.17868147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x29c060563726136c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:46:33.000Z'}}, {'blockNum': '0x777e2c', 'uniqueId': '0xf789a2a7ccf061e4b02c45834fde8b71f3dc35af4bd5b18327c0d7c23246e9d3:log:10', 'hash': '0xf789a2a7ccf061e4b02c45834fde8b71f3dc35af4bd5b18327c0d7c23246e9d3', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 87.02244776199875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b7add72cc2ec2130', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T20:58:13.000Z'}}, {'blockNum': '0x777e52', 'uniqueId': '0x44284c85da67930c8851eaa801992b028df1f1c9896f628f3554279ab085a6ff:log:125', 'hash': '0x44284c85da67930c8851eaa801992b028df1f1c9896f628f3554279ab085a6ff', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0xb02900de3429cfac05181e69324be2d27d41547b', 'value': 87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b75e170de2fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T21:05:54.000Z'}}, {'blockNum': '0x777e85', 'uniqueId': '0x94f58503967eb08e715d10f44a309b86e2942278ad16d0e7adeb15a167d6e6e2:log:22', 'hash': '0x94f58503967eb08e715d10f44a309b86e2942278ad16d0e7adeb15a167d6e6e2', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3bb1e57a6f0f4b9fe60a682769dbbd206ece38e5', 'value': 18.6218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01026dec6ffe5e8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T21:15:04.000Z'}}, {'blockNum': '0x777ef8', 'uniqueId': '0x59341cf2449d4302d23f205f833bf7b0b4c1b9debf58cb35f4aebde11a2a3fcb:log:165', 'hash': '0x59341cf2449d4302d23f205f833bf7b0b4c1b9debf58cb35f4aebde11a2a3fcb', 'from': '0x976f7f5b7d0698128a7eaba472a82da175fff52c', 'to': '0xe1003b56367cf3128baeac269dcf9cd3bcb05d92', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T21:39:01.000Z'}}, {'blockNum': '0x777fd1', 'uniqueId': '0xf0588c895776d90f87c28aff597d1af2c4feac4e010d65b811ce209150af01eb:log:22', 'hash': '0xf0588c895776d90f87c28aff597d1af2c4feac4e010d65b811ce209150af01eb', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 101.85769176683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05858f36ff2b21e780', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T22:23:27.000Z'}}, {'blockNum': '0x777ff7', 'uniqueId': '0xff06a7adf7f2715c37b2e8441d5da704b679556c5aede1402568b14c8f88b3f0:log:3', 'hash': '0xff06a7adf7f2715c37b2e8441d5da704b679556c5aede1402568b14c8f88b3f0', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 92.9096375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x050961570cc5cfd800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T22:32:09.000Z'}}, {'blockNum': '0x77809c', 'uniqueId': '0x297938ced7caf6f4cd482e3a5bfcaec355375a879e366513c70551c7b2a0e7f6:log:34', 'hash': '0x297938ced7caf6f4cd482e3a5bfcaec355375a879e366513c70551c7b2a0e7f6', 'from': '0xa674ea657de352db1dc72e170a92daf7f8718453', 'to': '0x458a729f0b0b8a68335a437783d91c315615920b', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:04:26.000Z'}}, {'blockNum': '0x7780c7', 'uniqueId': '0x0a8f53af8abd709ce9faf862d485a720c5fc6435bd46bbc3b20a4bbb45394886:log:9', 'hash': '0x0a8f53af8abd709ce9faf862d485a720c5fc6435bd46bbc3b20a4bbb45394886', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1396.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4bb87e776fb9a00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:12:04.000Z'}}, {'blockNum': '0x7780d1', 'uniqueId': '0x0f110073294f6b3dc260775b37f6317789a99a1e183648ee455b4ad83f2e2dad:log:57', 'hash': '0x0f110073294f6b3dc260775b37f6317789a99a1e183648ee455b4ad83f2e2dad', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 1033.5110152702325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3806d8b89cbb862720', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:14:14.000Z'}}, {'blockNum': '0x7780d1', 'uniqueId': '0xf7da19ba6b3f4c404f07bf0979122b0bd8577f66322cf3fddf5bdba6ae4779b2:log:58', 'hash': '0xf7da19ba6b3f4c404f07bf0979122b0bd8577f66322cf3fddf5bdba6ae4779b2', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x75438d34c9125839c8b08d21b7f3167281659e7c', 'value': 328.8108983099764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11d32af9e5eb3b6a9f', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:14:14.000Z'}}, {'blockNum': '0x7780f0', 'uniqueId': '0x8ddf25be17c3ed21493470f4d89ffec4bbddfa0afdbd90d9063c52983d9e56f6:log:96', 'hash': '0x8ddf25be17c3ed21493470f4d89ffec4bbddfa0afdbd90d9063c52983d9e56f6', 'from': '0x0a62229e734f2c8c8880be7e9f023484fff22b8e', 'to': '0x78c7fd00c351dd732eb8f46c2ca47e422e72fbe3', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xf9ccd8a1c5080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:22:11.000Z'}}, {'blockNum': '0x778145', 'uniqueId': '0x121b99baef470c59a590fa3521db48c56cb5c379e5f00a3163217a25ff616bd5:log:38', 'hash': '0x121b99baef470c59a590fa3521db48c56cb5c379e5f00a3163217a25ff616bd5', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 100.8178175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x057720d6dc4da91800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:43:05.000Z'}}, {'blockNum': '0x778157', 'uniqueId': '0x53383cc621494c9e98a2f6b466ccdf58d479a65af179bc93579000635c3d12c1:log:9', 'hash': '0x53383cc621494c9e98a2f6b466ccdf58d479a65af179bc93579000635c3d12c1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1996.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c3f2aac800c000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:48:18.000Z'}}, {'blockNum': '0x77815c', 'uniqueId': '0x342c5c8be47bb6dbd460f8db8c1ea7a93117eb7eb1ee47a22e0f0cde0adfaf17:log:8', 'hash': '0x342c5c8be47bb6dbd460f8db8c1ea7a93117eb7eb1ee47a22e0f0cde0adfaf17', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 1763.40502030793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5f9829230cc2a8aa80', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:49:17.000Z'}}, {'blockNum': '0x77816a', 'uniqueId': '0x445b14b3ab7171292aa0bb071c2f7f5f913150f65566384c3cd6426eb06ac3b4:log:119', 'hash': '0x445b14b3ab7171292aa0bb071c2f7f5f913150f65566384c3cd6426eb06ac3b4', 'from': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'to': '0xb02900de3429cfac05181e69324be2d27d41547b', 'value': 3092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa79e1eb1e1c3d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-25T23:53:11.000Z'}}, {'blockNum': '0x7781a2', 'uniqueId': '0xccba34561051263071d895a5fc19fd2db5f4f33105abcb58153357e99f5bb2d0:log:34', 'hash': '0xccba34561051263071d895a5fc19fd2db5f4f33105abcb58153357e99f5bb2d0', 'from': '0xb02900de3429cfac05181e69324be2d27d41547b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xac557cc8efa6cc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:04:03.000Z'}}, {'blockNum': '0x77821a', 'uniqueId': '0x9910b68a86c4ae82aa74b3fe02079e972e13b934aaa33065e7cea9a9a0e1c4db:log:134', 'hash': '0x9910b68a86c4ae82aa74b3fe02079e972e13b934aaa33065e7cea9a9a0e1c4db', 'from': '0x458a729f0b0b8a68335a437783d91c315615920b', 'to': '0x986af1972f446be681e8ea5bcad7d8f590a99ef1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:30:25.000Z'}}, {'blockNum': '0x778252', 'uniqueId': '0x48386b71bc75f4ce789efffdcbe8d086365a9c0a343d01c6f74dfc093b2f312e:log:17', 'hash': '0x48386b71bc75f4ce789efffdcbe8d086365a9c0a343d01c6f74dfc093b2f312e', 'from': '0xbc3b0c0cb6e1e316b0c73fca54d17fa38073272e', 'to': '0xbc76ea0c40d7a1488237747de846eb36a9d6f96d', 'value': 29.877166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x019ea1042e5560e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:43:26.000Z'}}, {'blockNum': '0x778295', 'uniqueId': '0x4e5dde71d2985c2fc3d1567728f42047267cf5b286e4b790e524838f04037b8d:log:1', 'hash': '0x4e5dde71d2985c2fc3d1567728f42047267cf5b286e4b790e524838f04037b8d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2696.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x92330185361efa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:58:51.000Z'}}, {'blockNum': '0x778299', 'uniqueId': '0xb5df04c4e5aefda0ff9685c822b1bf464053161ec14c77e49a17f2324e2641f9:log:3', 'hash': '0xb5df04c4e5aefda0ff9685c822b1bf464053161ec14c77e49a17f2324e2641f9', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 2543.7388549750826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x89e577d34b34ae03b4', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T00:59:25.000Z'}}, {'blockNum': '0x7782dc', 'uniqueId': '0x50d91d7073cb663f4a1da55eac66f94377daaa2d943698efca58b982a556b892:log:9', 'hash': '0x50d91d7073cb663f4a1da55eac66f94377daaa2d943698efca58b982a556b892', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2596.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8cc73a2708bbea0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T01:14:10.000Z'}}, {'blockNum': '0x7782e0', 'uniqueId': '0xabe19c318dcc7b0f81ca82a4a12006851cb2d3a0165ff1babe7bf065842d5700:log:13', 'hash': '0xabe19c318dcc7b0f81ca82a4a12006851cb2d3a0165ff1babe7bf065842d5700', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2b5c5d7d87f2e6c2ac338cb99a93b7a3aeca823f', 'value': 2541.760822444328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x89ca04712fe6e69365', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T01:15:05.000Z'}}, {'blockNum': '0x77834b', 'uniqueId': '0xbbace292fb1017a00ac586d95b127cbfadf733ab836de81c68e70a9b5dfc7b8f:log:136', 'hash': '0xbbace292fb1017a00ac586d95b127cbfadf733ab836de81c68e70a9b5dfc7b8f', 'from': '0xfcd5fbecc619d58c9ad448440a6fbe0a829d77b5', 'to': '0xb556482b7f88fe779cc30feba37c07e21271e68f', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T01:39:58.000Z'}}, {'blockNum': '0x778390', 'uniqueId': '0x79b5e6d4ae4037dc55c11083be92123c6b19d8d8a94e68ca52a123fa588f10df:log:12', 'hash': '0x79b5e6d4ae4037dc55c11083be92123c6b19d8d8a94e68ca52a123fa588f10df', 'from': '0x986af1972f446be681e8ea5bcad7d8f590a99ef1', 'to': '0xc4b6ae4a833274bad9bb735b3f90364ba22a4004', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-26T01:54:03.000Z'}}]}}
Number of returned transfers:  62
Answer is complete
 
symbol           STORJ
group              ATW
date        2019-08-10
hour             20:00
exchange       binance
Name: 217, dtype: object
HERE
 Symbol: STORJ, Contract: 0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac
Datetime timestamps:  2019-08-10 20:00:00 2019-08-10 08:00:00 2019-08-11 08:00:00
Unix timestamps:  1565416800.0 1565503200.0
Hex Block Numbers:  0x7ef850 0x7f1186
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7ef909', 'uniqueId': '0xe757157a80dddea9a96a838e32cae8aba20aff935219335346e0b9ac98d34680:log:35', 'hash': '0xe757157a80dddea9a96a838e32cae8aba20aff935219335346e0b9ac98d34680', 'from': '0x26ef6cf6b1657667c6b57db88bb623592da51db0', 'to': '0xf0a6de92b477f267ee78f35eaa53dc89eace98cd', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T06:36:58.000Z'}}, {'blockNum': '0x7ef915', 'uniqueId': '0x7906d96185777642a314b1a9173ea19e0cf02c58c957385f01c0b7b16e22c058:log:32', 'hash': '0x7906d96185777642a314b1a9173ea19e0cf02c58c957385f01c0b7b16e22c058', 'from': '0xf0a6de92b477f267ee78f35eaa53dc89eace98cd', 'to': '0xfbf2173154f7625713be22e0504404ebfe021eae', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T06:39:26.000Z'}}, {'blockNum': '0x7ef91a', 'uniqueId': '0x6b02af8706459db9c7dc6e6176a18074313a115d294e7dda88e8ff2fca323f50:log:10', 'hash': '0x6b02af8706459db9c7dc6e6176a18074313a115d294e7dda88e8ff2fca323f50', 'from': '0xfbf2173154f7625713be22e0504404ebfe021eae', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T06:40:19.000Z'}}, {'blockNum': '0x7ef996', 'uniqueId': '0x17ea76eb79753a465685a82255fbccc01e26708410d5957e721613d166d2207b:log:62', 'hash': '0x17ea76eb79753a465685a82255fbccc01e26708410d5957e721613d166d2207b', 'from': '0xea870832e339fa2026f86847dec8c82e2f839e42', 'to': '0xbe7da847bbb78a8d17c72e06e330f111a7e442d1', 'value': 147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x036c303300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:05:49.000Z'}}, {'blockNum': '0x7ef9b2', 'uniqueId': '0x6063861f5e435d9311554e948afbc1a9e983d8fc3c6020270e03cd7d6fb34697:log:39', 'hash': '0x6063861f5e435d9311554e948afbc1a9e983d8fc3c6020270e03cd7d6fb34697', 'from': '0xbe7da847bbb78a8d17c72e06e330f111a7e442d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 227.4728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054bd7f280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:12:24.000Z'}}, {'blockNum': '0x7ef9be', 'uniqueId': '0x6036af3bdd2556bceae767f90a068bb52d1cf2a782d37ad778b34b31d74cc509:log:116', 'hash': '0x6036af3bdd2556bceae767f90a068bb52d1cf2a782d37ad778b34b31d74cc509', 'from': '0xacd31a8a10c786d45cbdb18befc3733392a66bac', 'to': '0x89bbf0581110a620948b5f475562dac34940ceef', 'value': 5413.87812611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e0d3a6f03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:14:36.000Z'}}, {'blockNum': '0x7ef9c2', 'uniqueId': '0x4693def27a5a1f3d6dd91b52768356e3ae2c85692dc2e91f8628ddaed6363c02:log:6', 'hash': '0x4693def27a5a1f3d6dd91b52768356e3ae2c85692dc2e91f8628ddaed6363c02', 'from': '0x89bbf0581110a620948b5f475562dac34940ceef', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 5413.87812611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e0d3a6f03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:15:46.000Z'}}, {'blockNum': '0x7ef9e2', 'uniqueId': '0x21d2fffc61415ed94aba7b48034b6fc3593a6a43871e71f52561253b86fee686:log:22', 'hash': '0x21d2fffc61415ed94aba7b48034b6fc3593a6a43871e71f52561253b86fee686', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5413.87812611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e0d3a6f03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:21:54.000Z'}}, {'blockNum': '0x7efa23', 'uniqueId': '0x92d40b260a9268192f2319e6425ea8e4bfcc91e5a677d94550b24bbdd1087b13:log:55', 'hash': '0x92d40b260a9268192f2319e6425ea8e4bfcc91e5a677d94550b24bbdd1087b13', 'from': '0xf000d7380471301e3f80a5cbf9c533ada1c13ab8', 'to': '0x3a7bfd20bc2dbe186316aa2a4b5820d96a78f072', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:36:01.000Z'}}, {'blockNum': '0x7efa38', 'uniqueId': '0xb4075e544a1fe33b97953b317bffb2aaba84b44338cb0651efb3020352cf4718:log:5', 'hash': '0xb4075e544a1fe33b97953b317bffb2aaba84b44338cb0651efb3020352cf4718', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x111f9088395ccae9c4d26d5f0aa348c6ba0d97b9', 'value': 943.933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x15fa477420', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:41:05.000Z'}}, {'blockNum': '0x7efa3e', 'uniqueId': '0x6d9b8c96510a692c84271f7b5a3d34db3e6635f1212a051badb5ad706caea084:log:36', 'hash': '0x6d9b8c96510a692c84271f7b5a3d34db3e6635f1212a051badb5ad706caea084', 'from': '0x3a7bfd20bc2dbe186316aa2a4b5820d96a78f072', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:42:02.000Z'}}, {'blockNum': '0x7efa40', 'uniqueId': '0x572289326aef5d9e738d1b6b98929600035d723af6a4636200021410e1df697a:log:11', 'hash': '0x572289326aef5d9e738d1b6b98929600035d723af6a4636200021410e1df697a', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x99a07abce3aa74ed56ed9446c4a10a1416aaa2d7', 'value': 80.233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01de39d7a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:42:37.000Z'}}, {'blockNum': '0x7efa85', 'uniqueId': '0xd3aa8f9af384c5df8429b6fdb07c5ada368b6d5b4579ba7e9b132c827da04198:log:2', 'hash': '0xd3aa8f9af384c5df8429b6fdb07c5ada368b6d5b4579ba7e9b132c827da04198', 'from': '0x1c59d5fff9668e5b929a4d8f19cffd757281ad9e', 'to': '0xcc435575730513e89416682d6204a3c89697ef96', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0306dc4200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T07:55:46.000Z'}}, {'blockNum': '0x7efab2', 'uniqueId': '0xc35cbbcb88cbd71d8b94065a9730e1e5875b40298ff74e421f2dd9684ee1d177:log:93', 'hash': '0xc35cbbcb88cbd71d8b94065a9730e1e5875b40298ff74e421f2dd9684ee1d177', 'from': '0xf9b4083fb389762effc162a018efcaa1354afcd3', 'to': '0xcc30af70e765221f39fff838b12f371075ccd159', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:06:57.000Z'}}, {'blockNum': '0x7efab2', 'uniqueId': '0xa32757611900e5cc25f9a5152eeb2a94e6a97053f23ae2179602109909a6b39d:log:96', 'hash': '0xa32757611900e5cc25f9a5152eeb2a94e6a97053f23ae2179602109909a6b39d', 'from': '0xae9b8e367a1927b075e2625b3fb4599b62329eea', 'to': '0xcc30af70e765221f39fff838b12f371075ccd159', 'value': 133.97252358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031e89d906', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:06:57.000Z'}}, {'blockNum': '0x7efab3', 'uniqueId': '0xa6c94c6750bab50d0685f024f7b090ce0bb5952e18d5368dbcb0f4c17605d3b8:log:97', 'hash': '0xa6c94c6750bab50d0685f024f7b090ce0bb5952e18d5368dbcb0f4c17605d3b8', 'from': '0xab99efb436d36841d01e662e8b5688f86a0eeb9c', 'to': '0xcc30af70e765221f39fff838b12f371075ccd159', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:07:01.000Z'}}, {'blockNum': '0x7efab7', 'uniqueId': '0xe564f0c81b970c3a3e74fc05faf95fa8033ec9e0d9cb82f8262b8ef6f7049842:log:24', 'hash': '0xe564f0c81b970c3a3e74fc05faf95fa8033ec9e0d9cb82f8262b8ef6f7049842', 'from': '0xf7b60595f663f3df5207646f94db2a6543f42521', 'to': '0xa7347960968ab6905b85618a1ec17b6c53d0ad54', 'value': 153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x038ff37900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:07:47.000Z'}}, {'blockNum': '0x7efacb', 'uniqueId': '0x3d871f0829c77fffe359024319d471be8f2d6da04476877ba13908c0702e3fc3:log:95', 'hash': '0x3d871f0829c77fffe359024319d471be8f2d6da04476877ba13908c0702e3fc3', 'from': '0xcc30af70e765221f39fff838b12f371075ccd159', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 401.37252358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09585dde06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:11:47.000Z'}}, {'blockNum': '0x7efacb', 'uniqueId': '0x8c816e3e23ff14ce75f2949942f13d17e606462957c9875269d037020d479fdb:log:97', 'hash': '0x8c816e3e23ff14ce75f2949942f13d17e606462957c9875269d037020d479fdb', 'from': '0xcc435575730513e89416682d6204a3c89697ef96', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0306dc4200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:11:47.000Z'}}, {'blockNum': '0x7efad3', 'uniqueId': '0xfa1523bb04217989dc4be3dee3ca76cda382d694623efc9b109947e040c6e772:log:85', 'hash': '0xfa1523bb04217989dc4be3dee3ca76cda382d694623efc9b109947e040c6e772', 'from': '0x4314b8c4d5933ed75b4fdc08b7597f8856118871', 'to': '0xa00aca51c9419d331fbb38cdd0d851338289579d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T08:14:21.000Z'}}, {'blockNum': '0x7efc13', 'uniqueId': '0x970dc9ee1c6da711f7bb850f079e4d65594cb4a895f80fc145e27653d5c635be:log:68', 'hash': '0x970dc9ee1c6da711f7bb850f079e4d65594cb4a895f80fc145e27653d5c635be', 'from': '0xd5264487ffa83825a96dba1ffb0456343b1da2c5', 'to': '0xca1f400e95cb603f9b682c42813aad9975654bc2', 'value': 161.33214402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03c19d50c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T09:24:00.000Z'}}, {'blockNum': '0x7efc72', 'uniqueId': '0x01b18abc838481451ea3b5936feed3b607468c064eda895e97035f16ae94d119:log:55', 'hash': '0x01b18abc838481451ea3b5936feed3b607468c064eda895e97035f16ae94d119', 'from': '0x6f010cacdcd0549ccd0a40219c7155baacf7ab39', 'to': '0xacee7e48eb7ac0357d49d5c21cc4c1b5cb13cedb', 'value': 267.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0639d40500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T09:44:10.000Z'}}, {'blockNum': '0x7efd0c', 'uniqueId': '0xbe1f48ea37e1992164297092118be30b139d99d3d7d06e2b04498f13fbecfb1f:log:80', 'hash': '0xbe1f48ea37e1992164297092118be30b139d99d3d7d06e2b04498f13fbecfb1f', 'from': '0x716d6d4a72b6d6b4966bd1f486c6d62302fb9500', 'to': '0x8a7ab116a18fe11934093bb9c548acf887783d46', 'value': 142.10602169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x034f0494b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:20:18.000Z'}}, {'blockNum': '0x7efd12', 'uniqueId': '0xa35227b1092294b8097b1f379ef2d4c278d1c6729d1c417988ce1f3d672a55b4:log:2', 'hash': '0xa35227b1092294b8097b1f379ef2d4c278d1c6729d1c417988ce1f3d672a55b4', 'from': '0x8a7ab116a18fe11934093bb9c548acf887783d46', 'to': '0x565369ec3ee45e1d0de717883a6a3d60c09d8b93', 'value': 142.10602169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x034f0494b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:21:33.000Z'}}, {'blockNum': '0x7efd4d', 'uniqueId': '0xc63b8e35864ec408d9329f29b585d9d694d29d285d125183c6959a6eb74a04a0:log:1', 'hash': '0xc63b8e35864ec408d9329f29b585d9d694d29d285d125183c6959a6eb74a04a0', 'from': '0x99f6da169610943538205be87f4135774e8bab83', 'to': '0x90f2d651bafb839e8a7e7ef5c3145ea94661877a', 'value': 283.33467331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0698ce66c3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:35:15.000Z'}}, {'blockNum': '0x7efd5c', 'uniqueId': '0xb0365c427c31a6eac433f5b90bb48a1aa187775f48112f0b10163364fb4b6bb3:log:27', 'hash': '0xb0365c427c31a6eac433f5b90bb48a1aa187775f48112f0b10163364fb4b6bb3', 'from': '0x90f2d651bafb839e8a7e7ef5c3145ea94661877a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 283.33467331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0698ce66c3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:38:06.000Z'}}, {'blockNum': '0x7efd9c', 'uniqueId': '0x249198d886fba27506b428e46f759307a2e7abc8d874260e08d55a6869c4e684:log:19', 'hash': '0x249198d886fba27506b428e46f759307a2e7abc8d874260e08d55a6869c4e684', 'from': '0xab2a3ec557a9fc596bef9c447637abef78f2bf36', 'to': '0x0a36ae48118406a24047a5b04202ad9302326287', 'value': 175.12500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0413d38b21', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T10:52:49.000Z'}}, {'blockNum': '0x7efdcc', 'uniqueId': '0x52f4edba02d4489f3274b2be327dd4fb2f5f5d2019fe9da8c4215ee97c311478:log:25', 'hash': '0x52f4edba02d4489f3274b2be327dd4fb2f5f5d2019fe9da8c4215ee97c311478', 'from': '0x0a36ae48118406a24047a5b04202ad9302326287', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 175.12500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0413d38b21', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:02:12.000Z'}}, {'blockNum': '0x7efdf5', 'uniqueId': '0x71eac1420ac4044f9e126a7966e986e3992c347a6a028d4d07505353d56bd5c9:log:98', 'hash': '0x71eac1420ac4044f9e126a7966e986e3992c347a6a028d4d07505353d56bd5c9', 'from': '0xd5c5bb2e973381aaf80f511ed59a1a0a71d7e167', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 135.61989735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03285b8a67', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:12:24.000Z'}}, {'blockNum': '0x7efdf5', 'uniqueId': '0x565fa2a7074186ff2e5ea9e4a48f416f3d676f99d84ce1034cd3d98f074597d5:log:100', 'hash': '0x565fa2a7074186ff2e5ea9e4a48f416f3d676f99d84ce1034cd3d98f074597d5', 'from': '0x27ccd6f724e01056693416ced0b3818ef4b321b4', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 1251.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d243c8e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:12:24.000Z'}}, {'blockNum': '0x7efe44', 'uniqueId': '0x69bd65d19e9212a425d9a89ab620bf7d25d8170111d31ab4a77e3b9d77ccc53d:log:50', 'hash': '0x69bd65d19e9212a425d9a89ab620bf7d25d8170111d31ab4a77e3b9d77ccc53d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 7978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb9c095ea00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:32:29.000Z'}}, {'blockNum': '0x7efe49', 'uniqueId': '0x1ac82ba639badefb802b50a166056df1ca5c1990a651da153339779a6d8e8454:log:7', 'hash': '0x1ac82ba639badefb802b50a166056df1ca5c1990a651da153339779a6d8e8454', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 5665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x83e6080100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:34:37.000Z'}}, {'blockNum': '0x7efe9a', 'uniqueId': '0x4f12c65dadd7fe7d1e73bd50f6ec19e3212e5c9de5beb2f05139bcdda922bd1f:log:13', 'hash': '0x4f12c65dadd7fe7d1e73bd50f6ec19e3212e5c9de5beb2f05139bcdda922bd1f', 'from': '0xca1f400e95cb603f9b682c42813aad9975654bc2', 'to': '0x8c240d98e179a9e283a2394e5969a2eea95ca810', 'value': 161.33214402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03c19d50c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T11:53:25.000Z'}}, {'blockNum': '0x7eff71', 'uniqueId': '0xbf1620fa2824f79894357ee7d4f166baa6fa7335aed08707fcc28d7d01ca6ba6:log:2', 'hash': '0xbf1620fa2824f79894357ee7d4f166baa6fa7335aed08707fcc28d7d01ca6ba6', 'from': '0xd9116c60321ef510157596826d834cb8e61eba76', 'to': '0x4801328a3f7d81eff19251ab52d09d942ee41617', 'value': 141.63730107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x034c395ebb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:41:18.000Z'}}, {'blockNum': '0x7eff80', 'uniqueId': '0xfb653a5029aad12b60499d7392c07058c5f39470231f43ac4753da99f786836e:log:52', 'hash': '0xfb653a5029aad12b60499d7392c07058c5f39470231f43ac4753da99f786836e', 'from': '0x4801328a3f7d81eff19251ab52d09d942ee41617', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 141.63730107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x034c395ebb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:43:19.000Z'}}, {'blockNum': '0x7eff83', 'uniqueId': '0xaad5576702ff27b1d45c3434f443b651206c3d6e465ffa6e41649d38b39d3aa0:log:73', 'hash': '0xaad5576702ff27b1d45c3434f443b651206c3d6e465ffa6e41649d38b39d3aa0', 'from': '0x6b34187bb43a409e8d8b5304cf577c5f7909637f', 'to': '0x28593b54ec8432983839ee2addcdb4e602ae81b6', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:44:47.000Z'}}, {'blockNum': '0x7eff87', 'uniqueId': '0x6bb434c65bed9adb9f6dfb268f709cf195554493b39ba52195b597a4444aad77:log:74', 'hash': '0x6bb434c65bed9adb9f6dfb268f709cf195554493b39ba52195b597a4444aad77', 'from': '0xf5906777b2e8a564a0ed2515047ecd7a3e8360b5', 'to': '0xa6535d2cbfb54566521d98c42f4f8e2dfe8a8311', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:45:14.000Z'}}, {'blockNum': '0x7eff8a', 'uniqueId': '0x005e4c5bc6352250b73563405465db4dfe651faab0d17e8e6a205399c12369a1:log:13', 'hash': '0x005e4c5bc6352250b73563405465db4dfe651faab0d17e8e6a205399c12369a1', 'from': '0x28593b54ec8432983839ee2addcdb4e602ae81b6', 'to': '0x9021743a8c1f9f492f7c748adb00860e3aec3e28', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:46:43.000Z'}}, {'blockNum': '0x7eff90', 'uniqueId': '0x2df52ddc93b7832c94b8064801c70d04734c721f890c3504467b2888a453d7d4:log:14', 'hash': '0x2df52ddc93b7832c94b8064801c70d04734c721f890c3504467b2888a453d7d4', 'from': '0x9021743a8c1f9f492f7c748adb00860e3aec3e28', 'to': '0x565369ec3ee45e1d0de717883a6a3d60c09d8b93', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:47:35.000Z'}}, {'blockNum': '0x7effc5', 'uniqueId': '0x049f7c4a47ef131085942ad5f36e20c5098ed68bd8fad29baabf79189430ca8b:log:56', 'hash': '0x049f7c4a47ef131085942ad5f36e20c5098ed68bd8fad29baabf79189430ca8b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 445.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5f630d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T12:58:39.000Z'}}, {'blockNum': '0x7effd4', 'uniqueId': '0x0167f1e4a307b442e054dc4aadfc50e04dfa4c63fec71f55eddc87e87ecca56f:log:34', 'hash': '0x0167f1e4a307b442e054dc4aadfc50e04dfa4c63fec71f55eddc87e87ecca56f', 'from': '0xa6535d2cbfb54566521d98c42f4f8e2dfe8a8311', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 162.83043533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ca8b86cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T13:02:06.000Z'}}, {'blockNum': '0x7f007c', 'uniqueId': '0x2583e98f4f63f1d5caa743932f3ddbfc70ca680791e284e06b0817fb7e3fcf31:log:16', 'hash': '0x2583e98f4f63f1d5caa743932f3ddbfc70ca680791e284e06b0817fb7e3fcf31', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac26adcff2c83f7757b7894075516f2aac8a7482', 'value': 2084.69999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3089c7c17f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T13:40:29.000Z'}}, {'blockNum': '0x7f0154', 'uniqueId': '0xafe44c88b78385c10970718eb02cdd78144e33e3c8f05093ed51eda599e9b98c:log:15', 'hash': '0xafe44c88b78385c10970718eb02cdd78144e33e3c8f05093ed51eda599e9b98c', 'from': '0xb88d6daee828a40fb4000cb99f1704428f6ebe43', 'to': '0x37d685de302d8865451d1cd5d6e0a5d5c7d1b4c1', 'value': 133.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031cea0280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:31:42.000Z'}}, {'blockNum': '0x7f0177', 'uniqueId': '0x979459cbf0a606d21e1ac33a0db77da2129437ef3b51452d802a823835acea1b:log:88', 'hash': '0x979459cbf0a606d21e1ac33a0db77da2129437ef3b51452d802a823835acea1b', 'from': '0x38c4f8b6a9fba073120ce0ae9104b755d346fc1e', 'to': '0x4e5f161ff433d2802f12ce600edb8a6538674927', 'value': 133.76048685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031d464e2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:39:30.000Z'}}, {'blockNum': '0x7f017a', 'uniqueId': '0x9bfc46d45f9472590333a9eafaf1750da0450f0832b84b76d69b09e8c6a8b39d:log:2', 'hash': '0x9bfc46d45f9472590333a9eafaf1750da0450f0832b84b76d69b09e8c6a8b39d', 'from': '0x4e5f161ff433d2802f12ce600edb8a6538674927', 'to': '0x565369ec3ee45e1d0de717883a6a3d60c09d8b93', 'value': 133.76048685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031d464e2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:41:27.000Z'}}, {'blockNum': '0x7f017e', 'uniqueId': '0x35003b6f0667137d19961aa5bc89177679c6d2c8b6c7885a2c6370d811898865:log:29', 'hash': '0x35003b6f0667137d19961aa5bc89177679c6d2c8b6c7885a2c6370d811898865', 'from': '0x37d685de302d8865451d1cd5d6e0a5d5c7d1b4c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 190.2594928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x046e08f260', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:41:54.000Z'}}, {'blockNum': '0x7f01a4', 'uniqueId': '0x3c88cf20b1a2ffcbc1d76a177c62203f93715e86ebec77e5ea0c9fe80f58a72f:log:1', 'hash': '0x3c88cf20b1a2ffcbc1d76a177c62203f93715e86ebec77e5ea0c9fe80f58a72f', 'from': '0x5e37a9df66132763f373a4626a22d9fe747e30b0', 'to': '0xcf57475145b15e3636051b7615efcc6025552a29', 'value': 4.89908021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d336735', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:49:29.000Z'}}, {'blockNum': '0x7f01d5', 'uniqueId': '0x46ee773ab3a43244a818727c0ee43a3419d9c0666ea0be578f86d4c7e49ded5f:log:3', 'hash': '0x46ee773ab3a43244a818727c0ee43a3419d9c0666ea0be578f86d4c7e49ded5f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x98107a3934e83436d975fc893e66de41e80d7659', 'value': 992.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1719607680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T14:59:41.000Z'}}, {'blockNum': '0x7f01ee', 'uniqueId': '0xcad7ceacc6f2528bbd6ab2d0e423f638f26f9ee431366000b8cbd1ec288e1b48:log:50', 'hash': '0xcad7ceacc6f2528bbd6ab2d0e423f638f26f9ee431366000b8cbd1ec288e1b48', 'from': '0x1844d3cc51b6ca1f7e8eaf64861574ae010fa757', 'to': '0x9b46f952073b81e28fd27fae2dce336ba42e19fb', 'value': 135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0324a9a700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:04:51.000Z'}}, {'blockNum': '0x7f01f5', 'uniqueId': '0x63aa62c0468c4a439a9695477ee8f39956a8da4bef6b3e31de7367a173857de0:log:125', 'hash': '0x63aa62c0468c4a439a9695477ee8f39956a8da4bef6b3e31de7367a173857de0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x000000000c7c9cbb8485c5e38c6c0da6a1017c1f', 'value': 0.00077361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012e31', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:07:00.000Z'}}, {'blockNum': '0x7f01f5', 'uniqueId': '0xce9e94885f91bf9d28675da18e9ab4ba099ff6ff4679acf70d5e6f4778c166aa:log:126', 'hash': '0xce9e94885f91bf9d28675da18e9ab4ba099ff6ff4679acf70d5e6f4778c166aa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x000000043dc3052d771845a71efc05b67f40abb4', 'value': 0.48737544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e7ad08', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:07:00.000Z'}}, {'blockNum': '0x7f01f5', 'uniqueId': '0x6d04a5f82e45c34b47b2b39f06d91870f71932c20692bfe5cf0f90cdcd9374dd:log:127', 'hash': '0x6d04a5f82e45c34b47b2b39f06d91870f71932c20692bfe5cf0f90cdcd9374dd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x000000e5e3f0831517a5fb8eeb00a2da21e49e94', 'value': 0.00058711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe557', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:07:00.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x11f2fcc796a139163b3fb0769c649c3bf8b777cd6f7d4f2f157920d806d7fbe7:log:52', 'hash': '0x11f2fcc796a139163b3fb0769c649c3bf8b777cd6f7d4f2f157920d806d7fbe7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x000500b81c9b361ed7d4daebc184029ec3b402f1', 'value': 0.0056294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0896fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x304922f2a70250b84464fd337a0b9a82e3ac09d677ee87e129a1090aab1dfdcd:log:53', 'hash': '0x304922f2a70250b84464fd337a0b9a82e3ac09d677ee87e129a1090aab1dfdcd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00101a0e98ecea02681a5447c3cab0c787d109f6', 'value': 0.01574852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1807c4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x7cc3bc09611a5c72e3efea51ea460ca384840eaa004e3eb46171ae2a580de98b:log:54', 'hash': '0x7cc3bc09611a5c72e3efea51ea460ca384840eaa004e3eb46171ae2a580de98b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0012e9a8424da6db3200711ffbe5e2c62bf91bbf', 'value': 0.39906627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0260ed43', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x3ad3f19750c6975258300fd611582a175093e7bab61ec9f177f5847792e0fbaf:log:55', 'hash': '0x3ad3f19750c6975258300fd611582a175093e7bab61ec9f177f5847792e0fbaf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0017ceed8eb8fc7977c55dce6b0dc3ffe8f4d184', 'value': 0.77696183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a18cb7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f7', 'uniqueId': '0x70cf8632425fda7fecf98b28aa7c169c3c91db2368964f8d8b5c143f5f1710aa:log:56', 'hash': '0x70cf8632425fda7fecf98b28aa7c169c3c91db2368964f8d8b5c143f5f1710aa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0035e7c3929651f1b7c1a8bba7d7ff734a1f31e1', 'value': 0.00089794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x015ec2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:10.000Z'}}, {'blockNum': '0x7f01f9', 'uniqueId': '0x0e5b80677d33f3a5631d8c045f1d854ae157ac4a2abda2f05a3dc80f715469e8:log:66', 'hash': '0x0e5b80677d33f3a5631d8c045f1d854ae157ac4a2abda2f05a3dc80f715469e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x003656d5892c049a8079aeb0455164502db0d550', 'value': 0.06558432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6412e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:08:32.000Z'}}, {'blockNum': '0x7f01fe', 'uniqueId': '0x144b8a84717a11063ec8821bec6f54598e91fb63da0150b294d090e22df3f115:log:31', 'hash': '0x144b8a84717a11063ec8821bec6f54598e91fb63da0150b294d090e22df3f115', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x003dd7051bd7b10beb092df05258b5b847b0c8fc', 'value': 0.00544291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084e23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:09:12.000Z'}}, {'blockNum': '0x7f01fe', 'uniqueId': '0x60453cfe5edd2b67687da090a960291427e839fab4c270af1628ef82a0f77a44:log:32', 'hash': '0x60453cfe5edd2b67687da090a960291427e839fab4c270af1628ef82a0f77a44', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00409b11db5b50907628818529262814ffd5dc59', 'value': 0.15921898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf2f2ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:09:12.000Z'}}, {'blockNum': '0x7f01ff', 'uniqueId': '0x0c7e10960e62858c620278fbef54910feb003998992c1dba3660db46b2473c05:log:64', 'hash': '0x0c7e10960e62858c620278fbef54910feb003998992c1dba3660db46b2473c05', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x004251ec96a0b688cb93cc30b1ad79438ddea9fb', 'value': 0.32201592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01eb5b78', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:09:37.000Z'}}, {'blockNum': '0x7f01ff', 'uniqueId': '0xe51b7d0fdf5a8e9d74640cd395d5849362e4ba92e352fce47006284fdb533105:log:65', 'hash': '0xe51b7d0fdf5a8e9d74640cd395d5849362e4ba92e352fce47006284fdb533105', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x004beb16c4430325025772937639ae9965539db8', 'value': 0.06178533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5e46e5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:09:37.000Z'}}, {'blockNum': '0x7f0202', 'uniqueId': '0xfe1fa1cb5586e884f375988f77c7c1bc8b6a42af0f49127e240ac1297d7bb4a4:log:18', 'hash': '0xfe1fa1cb5586e884f375988f77c7c1bc8b6a42af0f49127e240ac1297d7bb4a4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0056a0cdb437c3092e2e35d6038ccfebcd5774a6', 'value': 0.04935229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b4e3d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:21.000Z'}}, {'blockNum': '0x7f0202', 'uniqueId': '0xcd47944c5a5ffe45e702107a65eaa3d8642af1154f1de3f433598e63ab96ffdd:log:19', 'hash': '0xcd47944c5a5ffe45e702107a65eaa3d8642af1154f1de3f433598e63ab96ffdd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x006210354c9e93d3fd45335e09c8713231a937ef', 'value': 0.00044897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaf61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:21.000Z'}}, {'blockNum': '0x7f0202', 'uniqueId': '0xb16581939b677ddd0a7cbe08c0d8b2534375a41e8b79b5b53b2561b7e3a32ea3:log:20', 'hash': '0xb16581939b677ddd0a7cbe08c0d8b2534375a41e8b79b5b53b2561b7e3a32ea3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00724362c779029818e60b99cb5f5be256d97157', 'value': 0.02282845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d55d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:21.000Z'}}, {'blockNum': '0x7f0203', 'uniqueId': '0xbf4ce9827d7da57c8cec41a0f509bf576bf64dd38072910184797937e9c37183:log:110', 'hash': '0xbf4ce9827d7da57c8cec41a0f509bf576bf64dd38072910184797937e9c37183', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x007b042697fcf9c7631e566205903bb621270393', 'value': 0.03968214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c8cd6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:48.000Z'}}, {'blockNum': '0x7f0203', 'uniqueId': '0x5f0dfb0d8928fce59da4d074fe74e3d0b377dd68f0fe2b94b035c29f585eeca4:log:111', 'hash': '0x5f0dfb0d8928fce59da4d074fe74e3d0b377dd68f0fe2b94b035c29f585eeca4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00840c6ed146e52b15dc10c0a0eb6dec64178832', 'value': 0.14695171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe03b03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:48.000Z'}}, {'blockNum': '0x7f0203', 'uniqueId': '0xc7107ad9287d74237dfa9c6622dd2a74e6b9f32d6adb21ab971bbdfd74b8ff7e:log:112', 'hash': '0xc7107ad9287d74237dfa9c6622dd2a74e6b9f32d6adb21ab971bbdfd74b8ff7e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00853d5e7ae5b909eebcc4cc0bdaa8e24b84d7aa', 'value': 0.00066309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010305', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:48.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x8e6c85bca17221c1a156970d79bd09405c9f993ff9abd5267fa3a5927cb41c28:log:88', 'hash': '0x8e6c85bca17221c1a156970d79bd09405c9f993ff9abd5267fa3a5927cb41c28', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00870129b8a8176a2cf0855aef53367c0c34b56c', 'value': 0.02376093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24419d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x9d17d0561bbcd5e03168e7e4a1d122abd6124d0d6ec0cbee60a7486cc9ff279e:log:89', 'hash': '0x9d17d0561bbcd5e03168e7e4a1d122abd6124d0d6ec0cbee60a7486cc9ff279e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00974817dd40c0ac29c3979093e4a2cdb3816039', 'value': 0.00773611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bcdeb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x7f09052396912e39f3bad0629e86819221c1c1390cdd0d0631b4fa23d4fe9bbb:log:90', 'hash': '0x7f09052396912e39f3bad0629e86819221c1c1390cdd0d0631b4fa23d4fe9bbb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x009a67b266874f06af2493bc9d35934b38209c81', 'value': 0.00093247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016c3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x5eaca7a692f8e1a6a6b5cdcd2fbeca293d72f08984f27eac8efab59f73bc7978:log:91', 'hash': '0x5eaca7a692f8e1a6a6b5cdcd2fbeca293d72f08984f27eac8efab59f73bc7978', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00a61bd92307339a28537f75c802c5448c11f2ab', 'value': 0.04192699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ff9bb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x8ae0784fead6e4eae53fb1db42339f11b0fccdadebc5a29e3219dd257d97ea32:log:92', 'hash': '0x8ae0784fead6e4eae53fb1db42339f11b0fccdadebc5a29e3219dd257d97ea32', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00a993ba2c49fc6f116ca00ee389b2f371b184e2', 'value': 0.00041443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa1e3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0xe2fe82362c582323117352da919e684000c41182f37c0b5cafa06bc2b51b9655:log:93', 'hash': '0xe2fe82362c582323117352da919e684000c41182f37c0b5cafa06bc2b51b9655', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00b860772c864807c0362dc77e7f968c94337ae3', 'value': 0.0368847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x384816', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0xb48632e7e17ffefe64e16d0f9429f2ca67a1db6afd78b46217d7f3eb844e8388:log:94', 'hash': '0xb48632e7e17ffefe64e16d0f9429f2ca67a1db6afd78b46217d7f3eb844e8388', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00bc8da53c76f5e52e2290f147fa2c24ca33aa98', 'value': 0.0139181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x153cc2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f020d', 'uniqueId': '0x7c686f4f25be81b2b29b65eaf2a6950e3e77c3e18cf48168c7e6bca8c1bfb7f5:log:95', 'hash': '0x7c686f4f25be81b2b29b65eaf2a6950e3e77c3e18cf48168c7e6bca8c1bfb7f5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00f8b1c7d29d500a054a74ad974ae714ed737767', 'value': 0.07104105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6c6669', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:12:47.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0xd28b7e0d399ce2c54a026e7c063bad5cfc425805c9a37514c60cc16e58be77c2:log:79', 'hash': '0xd28b7e0d399ce2c54a026e7c063bad5cfc425805c9a37514c60cc16e58be77c2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00a40b7a7fe72838450d502362aba539e1ca3471', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0x17ce7f87212104fce0d4949a44cef9d44e8df77e1c1e1ba323a470a41ce644f0:log:80', 'hash': '0x17ce7f87212104fce0d4949a44cef9d44e8df77e1c1e1ba323a470a41ce644f0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00aa5267ead3a30d67b995e33d8559184b1d7371', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0xfcc7502bcaf91e984aec89c9e5a8daa2404354cb6e69614121e30e82d34400ed:log:81', 'hash': '0xfcc7502bcaf91e984aec89c9e5a8daa2404354cb6e69614121e30e82d34400ed', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00bbafbdef6e353c976a5cdca7d3195684874e32', 'value': 0.09067835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8a5d3b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0x348412b3110b9605d2ba8174c423c613838ae0f19612e18346f584ada7cf82e4:log:82', 'hash': '0x348412b3110b9605d2ba8174c423c613838ae0f19612e18346f584ada7cf82e4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00cc2e4bc95dd72fdb8287802ec91f63f0fc493e', 'value': 0.04306669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41b6ed', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0211', 'uniqueId': '0x6cf7628911962069bdccde48fb91bac316772236a508d2033cef83e079b41aec:log:83', 'hash': '0x6cf7628911962069bdccde48fb91bac316772236a508d2033cef83e079b41aec', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00de0afaabe26327ef728dca3735b3b29b5fab97', 'value': 0.00069072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010dd0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:18.000Z'}}, {'blockNum': '0x7f0214', 'uniqueId': '0xa0b5642978e2952808f197415577b9863ed2738c0294cdbf7fa4697a81c1d190:log:22', 'hash': '0xa0b5642978e2952808f197415577b9863ed2738c0294cdbf7fa4697a81c1d190', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x00e5764cd83a1335502bc4572f9cb67bd2dcb2d6', 'value': 0.00093938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016ef2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:44.000Z'}}, {'blockNum': '0x7f0215', 'uniqueId': '0x5568b81f2bce5daded669a27f1a5cb3bdb649cc4dd0b092c67c42b12a425d98e:log:101', 'hash': '0x5568b81f2bce5daded669a27f1a5cb3bdb649cc4dd0b092c67c42b12a425d98e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0107e0427a9eaa692bd0175c028e2f86f4c74929', 'value': 0.01699183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19ed6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:56.000Z'}}, {'blockNum': '0x7f0215', 'uniqueId': '0xf0548adc72b45ab67a53a1def1e5e9460808e9eba6bfd2b78a0d29b6a3cd216a:log:102', 'hash': '0xf0548adc72b45ab67a53a1def1e5e9460808e9eba6bfd2b78a0d29b6a3cd216a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0191fb62a0341e9228f73bffa2f00a6b2f3ab6fd', 'value': 0.00051804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xca5c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:56.000Z'}}, {'blockNum': '0x7f021a', 'uniqueId': '0xa37d6b3194150a702de2ae507c36c987cac3ee64c1160db9ec4f54101e6ccb67:log:24', 'hash': '0xa37d6b3194150a702de2ae507c36c987cac3ee64c1160db9ec4f54101e6ccb67', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x1ecae6738d376f05f3643d9b80070509ae247908', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:11.000Z'}}, {'blockNum': '0x7f021c', 'uniqueId': '0x8c3f1643f6cfad10943b87dcd589192cb4eb05c2eefdccbbe7ba99f4fe6a6335:log:118', 'hash': '0x8c3f1643f6cfad10943b87dcd589192cb4eb05c2eefdccbbe7ba99f4fe6a6335', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x020eaf29a571702b690abcc7fb8f650f12c6fcb1', 'value': 0.01412532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x158db4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:24.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x6f8fb0a4ab15b602d9171300e772e8afd24e791753f1331d51486911f5f6f1e0:log:96', 'hash': '0x6f8fb0a4ab15b602d9171300e772e8afd24e791753f1331d51486911f5f6f1e0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0217dc6b1198af19ac90dfbdae60c45aadb30b02', 'value': 0.01813152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1baaa0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0xe7731709c1948745f9d98c0f322ba5bbc3f2e0fbd67985a3e8691064fd0e051b:log:97', 'hash': '0xe7731709c1948745f9d98c0f322ba5bbc3f2e0fbd67985a3e8691064fd0e051b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0245f13e3d3c4fb9ef086959ebcd3b969e4315f4', 'value': 0.00016577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x148112a839804a8b163ad4cba1f822eb023fe66488fd1f051b809e15dafe157a:log:98', 'hash': '0x148112a839804a8b163ad4cba1f822eb023fe66488fd1f051b809e15dafe157a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0273b2e8abd4b2b54f8f233d179395b37b695ea2', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x1bbb2e02b8b5da9d9093116af4a4edddf023ef6ebb1ccc25ffcec1c28b965cfe:log:99', 'hash': '0x1bbb2e02b8b5da9d9093116af4a4edddf023ef6ebb1ccc25ffcec1c28b965cfe', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0277562d5d47af853a570d87fb5c813bc093d894', 'value': 0.01858049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1c5a01', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x57357c1a20f3a1d22e3e20346ab3b82dbd7117be8a2ad71e001cfc0c666813ed:log:100', 'hash': '0x57357c1a20f3a1d22e3e20346ab3b82dbd7117be8a2ad71e001cfc0c666813ed', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x029d4980433d81cdcd8ba16f9bfc5edf9ccaf991', 'value': 0.03574501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x368ae5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0xb8667ad08c3e224ef3701d2b234acf25cf5913642eff82724ef8fb0d401b6948:log:101', 'hash': '0xb8667ad08c3e224ef3701d2b234acf25cf5913642eff82724ef8fb0d401b6948', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x02d4c1ed3fc0b471901ebb567bc88604c1c69671', 'value': 0.00080124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0138fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f021d', 'uniqueId': '0x25a8b6eb4fa13faa09dd716b4c722c76c98bcab9c4443df5fbacbb264c95e98f:log:102', 'hash': '0x25a8b6eb4fa13faa09dd716b4c722c76c98bcab9c4443df5fbacbb264c95e98f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0315e9138ce0a4d69122e615482c799b2fdc89b0', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:16:45.000Z'}}, {'blockNum': '0x7f0225', 'uniqueId': '0x803b407587d55f63aefff8825fe2530965d8cdbd2c3c1de148938ac932f0009b:log:75', 'hash': '0x803b407587d55f63aefff8825fe2530965d8cdbd2c3c1de148938ac932f0009b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x034e46b6f6d0b0629773800912dfaa08534eeec6', 'value': 0.00566394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08a47a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:18:56.000Z'}}, {'blockNum': '0x7f0225', 'uniqueId': '0x98ae6df4d122d3b1784b8cc6091133bc55ad5667a8d221b3e05cea0b58a083c7:log:76', 'hash': '0x98ae6df4d122d3b1784b8cc6091133bc55ad5667a8d221b3e05cea0b58a083c7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x038f254f8318d3c91db657e594a55868bf51fd0c', 'value': 0.02990838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2da2f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:18:56.000Z'}}, {'blockNum': '0x7f0225', 'uniqueId': '0x936125bc4d16302447205116ad05bf68d373a2766c57616401fa9363fce0f274:log:77', 'hash': '0x936125bc4d16302447205116ad05bf68d373a2766c57616401fa9363fce0f274', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x03f936c185578d72c8449d9711f3d794e8e1f33a', 'value': 0.0210671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x202556', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:18:56.000Z'}}, {'blockNum': '0x7f0225', 'uniqueId': '0xcf669ebdc2d75cc497b6e414adb06ad03e3d023d6247e61131f7691604c5f40b:log:78', 'hash': '0xcf669ebdc2d75cc497b6e414adb06ad03e3d023d6247e61131f7691604c5f40b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x04869655186ab838078c942092da99fe1e990848', 'value': 0.00149196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0246cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:18:56.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x3be7df8167f7603a208d7fb3b34d3622a97c28812650057cf9d5db5d2dca74f3:log:53', 'hash': '0x3be7df8167f7603a208d7fb3b34d3622a97c28812650057cf9d5db5d2dca74f3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x04c9720af269f4dfda36fcf64c4d0b856b061bcb', 'value': 0.00013814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x194c1e9dadb6a6035cc87a031305a5f259478a758e3d4da79f339d60a75f306c:log:54', 'hash': '0x194c1e9dadb6a6035cc87a031305a5f259478a758e3d4da79f339d60a75f306c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x04d4e1d345602ebcaf85dad0f85222641dd0ac5c', 'value': 0.00011051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b2b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xba9729a6bf555bcdfe6857bc270b0f68d5c3f6e88e71d73db24ab72349030cc7:log:55', 'hash': '0xba9729a6bf555bcdfe6857bc270b0f68d5c3f6e88e71d73db24ab72349030cc7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0554ebe00716a615ef98b4a5b2ac6d4c90656368', 'value': 0.05404921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5278f9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x7b89e9e07b44e0f33df036b17ad9195381f4c213dd4372b5298e131d8f02c2d4:log:56', 'hash': '0x7b89e9e07b44e0f33df036b17ad9195381f4c213dd4372b5298e131d8f02c2d4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0595f75ef4d10fa37571d8df3ce73f1310f65d75', 'value': 0.07798283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x76fe0b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x83fcbee8759a2555d18aaa3a234574797291c3fbfaa8fe3f8fbe1b5c2f3eaf5e:log:57', 'hash': '0x83fcbee8759a2555d18aaa3a234574797291c3fbfaa8fe3f8fbe1b5c2f3eaf5e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x05a082d4a4ae72304cb0518eaf460fa474f00620', 'value': 0.00131237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0200a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x42648bd81f52bee2021acbc99f4e575a3889d55897f178b131dfaa21ea47968c:log:58', 'hash': '0x42648bd81f52bee2021acbc99f4e575a3889d55897f178b131dfaa21ea47968c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x05e87ab2823203c2329798af2219b201e594399d', 'value': 0.00037989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9465', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x3124f7e94173800283279f0571a0987efdf8ec9e740d33ce0d5c35783e80c95e:log:59', 'hash': '0x3124f7e94173800283279f0571a0987efdf8ec9e740d33ce0d5c35783e80c95e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0602759e3fdb784e646c027602f1daa4edaa38b7', 'value': 0.25822748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018a061c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xcda104264e49de57a07e297f9f8bcf10f6adde6a6916909d75fe70c25af022c8:log:60', 'hash': '0xcda104264e49de57a07e297f9f8bcf10f6adde6a6916909d75fe70c25af022c8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x06562e95864e3331f7a1e19c58e1402c7a6033e6', 'value': 6.907e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1afb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xc511a2943be523445178103e1105a15a82050ab9353a0140b333e31353a28ee4:log:61', 'hash': '0xc511a2943be523445178103e1105a15a82050ab9353a0140b333e31353a28ee4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x068922166bbd43e6daa1a848bbdc2d7c8ae8efc9', 'value': 0.01381449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x151449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x9d14786d1538b7ffc38f4da3fcc8007dc131f484f8cfbe0f561d32a83a37374d:log:62', 'hash': '0x9d14786d1538b7ffc38f4da3fcc8007dc131f484f8cfbe0f561d32a83a37374d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x06c0836681faaf9e1a03fff989f77cdf54050510', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x7ff923514f3ba484cfddc8986a3b04bca304887bfd973e4f82a8505c902bf31f:log:63', 'hash': '0x7ff923514f3ba484cfddc8986a3b04bca304887bfd973e4f82a8505c902bf31f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x07167fde02c61c9039fb412809e9ca22d257df14', 'value': 0.32574583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f10c77', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x0e7434d03aa3d83b032e0cd3458c814af70b84b8ef6b895d125f5cf581c21a7c:log:64', 'hash': '0x0e7434d03aa3d83b032e0cd3458c814af70b84b8ef6b895d125f5cf581c21a7c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x07262c9307259b33df069e98a6c79feff28c8606', 'value': 0.02282845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d55d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xa21c9814f7a67d2f9d9321c956b0b76c3fa91c8c8bc836f2568d88d87b235863:log:65', 'hash': '0xa21c9814f7a67d2f9d9321c956b0b76c3fa91c8c8bc836f2568d88d87b235863', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x073941fdd0c525f5c0b571350d08f0091b49ab25', 'value': 0.0022932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037fc8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0xea572a4eb08e1f3eb6c4f795afea6d037441709db98f2b14b34b543136f3b0cd:log:66', 'hash': '0xea572a4eb08e1f3eb6c4f795afea6d037441709db98f2b14b34b543136f3b0cd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x075852ca2ad33943d2428aef6745883b8cb3c9a2', 'value': 0.09473291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x908d0b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x9fa11332664f22c11c0cee1a22b822da3c260c2b0b6c5a09de308fa4f4c4d6c4:log:67', 'hash': '0x9fa11332664f22c11c0cee1a22b822da3c260c2b0b6c5a09de308fa4f4c4d6c4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0776bb9fd604f8a2566b0505ead2c5626934ca07', 'value': 0.02963209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d3709', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0227', 'uniqueId': '0x334f67f42bb86e80f6b11a87786f80848b4cdbc9d4e65fec065a32ba8b7a1a7b:log:68', 'hash': '0x334f67f42bb86e80f6b11a87786f80848b4cdbc9d4e65fec065a32ba8b7a1a7b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0796c6e1b6a63f0848549bde5c179c7441e41c2a', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:19:44.000Z'}}, {'blockNum': '0x7f0229', 'uniqueId': '0xf139fd6086f6d09d83de8f496aee95c1e09ceddc111a003d71bfc7607b6c65cc:log:64', 'hash': '0xf139fd6086f6d09d83de8f496aee95c1e09ceddc111a003d71bfc7607b6c65cc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x07e0880e89e0dbaf096dbb703c0ed7461e6595b9', 'value': 0.02956302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d1c0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:20:25.000Z'}}, {'blockNum': '0x7f0229', 'uniqueId': '0x4a6966835a4a17913b1903189a49a732da93c69b2a73e8beb043cd83827f84d0:log:65', 'hash': '0x4a6966835a4a17913b1903189a49a732da93c69b2a73e8beb043cd83827f84d0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x07ef5af38213b58e79091bbaeee35a1a11de2d07', 'value': 0.04804682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x49504a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:20:25.000Z'}}, {'blockNum': '0x7f022a', 'uniqueId': '0x9c28c1b8b1f8277bd2f3734a3620592e601239ce4e97873856df1b7b768908e5:log:7', 'hash': '0x9c28c1b8b1f8277bd2f3734a3620592e601239ce4e97873856df1b7b768908e5', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x1ecae6738d376f05f3643d9b80070509ae247908', 'value': 6696.63034586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9beb06fcda', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:20:32.000Z'}}, {'blockNum': '0x7f022b', 'uniqueId': '0x1788599e2b6390645b6c22c155565ba9bae9299a10947803fa0189b8d0a3de1d:log:28', 'hash': '0x1788599e2b6390645b6c22c155565ba9bae9299a10947803fa0189b8d0a3de1d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x08114dd8ce26e7ad16faaf1101cc4a15d8f8afb7', 'value': 0.02037638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f1786', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:20:55.000Z'}}, {'blockNum': '0x7f022d', 'uniqueId': '0x9a10b65bc4cabef9e43121b14a95cc89f342c519a16c959afb55b5227f296dbb:log:27', 'hash': '0x9a10b65bc4cabef9e43121b14a95cc89f342c519a16c959afb55b5227f296dbb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x08474b14e3e41be4fef57d25853f8f6f7e7a3179', 'value': 0.01011911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f70c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:21:13.000Z'}}, {'blockNum': '0x7f022d', 'uniqueId': '0xc38899cb0c1ae5826c5fc6cad42fad7ac5e1eeb47db5adb1ad22e4f6e1cdc176:log:28', 'hash': '0xc38899cb0c1ae5826c5fc6cad42fad7ac5e1eeb47db5adb1ad22e4f6e1cdc176', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x08d57bc82b7d09e5b8a8129ed3275590b8dd4974', 'value': 0.00044897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaf61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:21:13.000Z'}}, {'blockNum': '0x7f022f', 'uniqueId': '0x855fb6924ccb10af6130c50270baa20295280d85933f4986a95380cc53ed280c:log:33', 'hash': '0x855fb6924ccb10af6130c50270baa20295280d85933f4986a95380cc53ed280c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x090650c4af0067e7f4894a65f6f4285b10852044', 'value': 0.01771709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b08bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:21:25.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0xfc880a82d4b20610dc3bc07a65ca76ebea41e66d287097a351ed0b49b6666ec9:log:15', 'hash': '0xfc880a82d4b20610dc3bc07a65ca76ebea41e66d287097a351ed0b49b6666ec9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09540c0a4c21455ba2e1b7407154cc3cdf3977ed', 'value': 0.00099464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018488', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0x18bef72df8ad74309ca8c58c8eda189d153a41f18ec02fa1bc745d37b1a55832:log:16', 'hash': '0x18bef72df8ad74309ca8c58c8eda189d153a41f18ec02fa1bc745d37b1a55832', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0985224a811e65c235dbf4a2c2117712aabe4e39', 'value': 0.0265929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2893da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0x836e7438080bc7c4eb2effc1b74b44cebc7c1a4f445cedcc8690214c547dec73:log:17', 'hash': '0x836e7438080bc7c4eb2effc1b74b44cebc7c1a4f445cedcc8690214c547dec73', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09903a26db6e4d3a39fe93976f7a2565df050264', 'value': 0.00127784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f328', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0x24a2737ae5511b0999de35784ecc5e81f671d1652b6a7fae75b36afe5a7dc3f6:log:18', 'hash': '0x24a2737ae5511b0999de35784ecc5e81f671d1652b6a7fae75b36afe5a7dc3f6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09e57654ba3aa0e0e414b4058be3d95fafe5338a', 'value': 0.03115169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f88a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0233', 'uniqueId': '0xc431717199fe44abe575bc378f82f5d69aa172b2c18ea860e0d272d7cdf8a7c8:log:19', 'hash': '0xc431717199fe44abe575bc378f82f5d69aa172b2c18ea860e0d272d7cdf8a7c8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09d7b99caf2070947ee3e14bb5495c21f570753f', 'value': 0.00093938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016ef2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:26.000Z'}}, {'blockNum': '0x7f0237', 'uniqueId': '0x84435aee653b6214108b339fb413e63bed2143c6c275fadabd437fc6fda63f07:log:58', 'hash': '0x84435aee653b6214108b339fb413e63bed2143c6c275fadabd437fc6fda63f07', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09e3ca09031b2f2539b08fc0c38ee145629086ff', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:23:18.000Z'}}, {'blockNum': '0x7f0237', 'uniqueId': '0x0346de91628c1526a65a188f1440540c039dc24e3d2ee92fd319996d5e3e12d3:log:62', 'hash': '0x0346de91628c1526a65a188f1440540c039dc24e3d2ee92fd319996d5e3e12d3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x09e686fc83eb77085dfe7f7780af070db216d028', 'value': 0.03505428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x357d14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:23:18.000Z'}}, {'blockNum': '0x7f0237', 'uniqueId': '0x49cfaec35e6e99eb546e0843ffa986cfd5d0df1a228652b3d5b5a268e18bc457:log:64', 'hash': '0x49cfaec35e6e99eb546e0843ffa986cfd5d0df1a228652b3d5b5a268e18bc457', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0a4dc4c36d31581d8f00b2a387502d5cfa7ed418', 'value': 0.0028665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x045fba', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:23:18.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0x540f0c6537accf8b1e27cac5c1e756bfddad893eae47104d076fc77dd4ace94d:log:72', 'hash': '0x540f0c6537accf8b1e27cac5c1e756bfddad893eae47104d076fc77dd4ace94d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0ac0dcdb561bda27bf53a65c252b2a6725badc77', 'value': 0.03417015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3423b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0x14c976a3ca155ae942eac9e1e923c1cdfb806fa2a981b84ca85bd81edd274e24:log:73', 'hash': '0x14c976a3ca155ae942eac9e1e923c1cdfb806fa2a981b84ca85bd81edd274e24', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0b6504349a12b8c11ddbc63a000040091ee816aa', 'value': 0.22287618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01541502', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0x45590d9d4332cafc34171d076ad9c7de4d5c9bc74c2bb06c3af3dacdb023b3de:log:74', 'hash': '0x45590d9d4332cafc34171d076ad9c7de4d5c9bc74c2bb06c3af3dacdb023b3de', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0ca13dbd2402afeb272bb7d53fc16f0ef99f2af1', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0xdc79c4692e5d5e522d5b012866d635d07388c5d9d6e34ebf51ccb978d5675012:log:75', 'hash': '0xdc79c4692e5d5e522d5b012866d635d07388c5d9d6e34ebf51ccb978d5675012', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d397b54102f0817a7ca4f11bd6f7742709091ca', 'value': 0.00080124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0138fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f023e', 'uniqueId': '0xad2cb4ee5745c61c6dd90449a7f55abfe6746f9614178ecc62b74252a9410acc:log:76', 'hash': '0xad2cb4ee5745c61c6dd90449a7f55abfe6746f9614178ecc62b74252a9410acc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d94d655de331439da3ce40446815073ee07928a', 'value': 0.01609388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x188eac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:24:10.000Z'}}, {'blockNum': '0x7f0241', 'uniqueId': '0xb1066455f1d29518319faa254fc73c8d47b73a650e28e4a016f33789dbc1607a:log:8', 'hash': '0xb1066455f1d29518319faa254fc73c8d47b73a650e28e4a016f33789dbc1607a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0e670e84b6d11416a19602daa77d648fefd42aaa', 'value': 0.02783621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a7985', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:25:16.000Z'}}, {'blockNum': '0x7f0241', 'uniqueId': '0x77104b9879e776aae4307eba77abf9ad742e873332c289c9f49c76cae3308592:log:9', 'hash': '0x77104b9879e776aae4307eba77abf9ad742e873332c289c9f49c76cae3308592', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0e7e40d26ee8c46c91be14fa31676640c80e0cd3', 'value': 0.00085649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:25:16.000Z'}}, {'blockNum': '0x7f0241', 'uniqueId': '0x71e3970bef18463c2f9b44d78e29a83c546e5794e97be44a6c56c89b4eac4d32:log:10', 'hash': '0x71e3970bef18463c2f9b44d78e29a83c546e5794e97be44a6c56c89b4eac4d32', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0ed735bbddc15660ec332a71e204a62f0dd9bc79', 'value': 6.907e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1afb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:25:16.000Z'}}, {'blockNum': '0x7f0241', 'uniqueId': '0x6af408f6ef1aed671457d41578caabe6d54281010469adf43f2900477917756d:log:11', 'hash': '0x6af408f6ef1aed671457d41578caabe6d54281010469adf43f2900477917756d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0f240a413d1660646da73c4312f4ee35497818d4', 'value': 0.50087911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fc47e7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:25:16.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xff02f632386ba20d0741fbc83d773341b56f5cc9ff63a75c15c26627b25fd699:log:64', 'hash': '0xff02f632386ba20d0741fbc83d773341b56f5cc9ff63a75c15c26627b25fd699', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0f3f4ae1701a1922f42c0c604af63c40a4debcb5', 'value': 0.02721455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2986af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x461f414c2f4b4cf3d18fe5adba661b1361eefbc1709a883229dd0a83d0c0720b:log:65', 'hash': '0x461f414c2f4b4cf3d18fe5adba661b1361eefbc1709a883229dd0a83d0c0720b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0fa4a88d69a208da32daf11b14c616fe0f62f98a', 'value': 0.00052495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xcd0f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xe2dc0939de3b0f1563ac94c36afcdc9c165be10fea8c1ddc380a331893334fb3:log:66', 'hash': '0xe2dc0939de3b0f1563ac94c36afcdc9c165be10fea8c1ddc380a331893334fb3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0a3ab13cb3c25a3cbf69d4d138c55ee77bdb053b', 'value': 0.01022272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f9940', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x3cd304caa449a30055fef9f3d113e2f2eeabc59dfa4aaee59bce582256f3bd4b:log:67', 'hash': '0x3cd304caa449a30055fef9f3d113e2f2eeabc59dfa4aaee59bce582256f3bd4b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0a63113dc359dda6cf652cc2ff7437ecefdcb521', 'value': 0.12374335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcd13f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xd96ac3930b1fa62ed39676a9ab2be26875a05ed255675ef16e49c7ca03cb2c4d:log:68', 'hash': '0xd96ac3930b1fa62ed39676a9ab2be26875a05ed255675ef16e49c7ca03cb2c4d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0a6c7ee13a7ec57d69a434bb075afb215e02d993', 'value': 0.10170923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b322b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x3c3892ccbfcd2294a54a88e6a41ada99158e13429d101d6c5e58785b738f639b:log:69', 'hash': '0x3c3892ccbfcd2294a54a88e6a41ada99158e13429d101d6c5e58785b738f639b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0bb52f9da12d67cfe84f33e11966f930c95e0eb5', 'value': 0.00035917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c4d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x21b4b3792c3ad6a0de0769243efcc9fd01a9d89c674414458092a772e0bb1aa3:log:70', 'hash': '0x21b4b3792c3ad6a0de0769243efcc9fd01a9d89c674414458092a772e0bb1aa3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0bd68cb43b188be181ebfd05b87374874858212d', 'value': 0.01958204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1de13c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xab4ab88544acfb1ad4c252e6e5295a5e0d33c338801d1d6cfe6f2e34b2a471e8:log:71', 'hash': '0xab4ab88544acfb1ad4c252e6e5295a5e0d33c338801d1d6cfe6f2e34b2a471e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0c4e79f15dfb621ad650977444d2e9486eab2464', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xf7bc0f9d4f238d83b2fae154b0ad87208b647e19de318abe889183da74ca4400:log:72', 'hash': '0xf7bc0f9d4f238d83b2fae154b0ad87208b647e19de318abe889183da74ca4400', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0cd7f81ff5b50841247e3ed224d6c50449bbeb1f', 'value': 0.0020031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x030e76', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x740c13dce00e7b7267ab01db891f35950e657e319231dda94e7e0c3553d2373d:log:73', 'hash': '0x740c13dce00e7b7267ab01db891f35950e657e319231dda94e7e0c3553d2373d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d0fbaa8fb07ce1ef4b66362f67392aea2f7f50d', 'value': 0.05090642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4dad52', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x2524f2a89d816ca170e2aa27d169b5c5189788c9a00bc6926fa99424b993597d:log:74', 'hash': '0x2524f2a89d816ca170e2aa27d169b5c5189788c9a00bc6926fa99424b993597d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d1e5bddb7be97189776024cb733b4a8d24ce1dd', 'value': 0.05529252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x545ea4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x7e7a136ce2a74a63716838c37875c4bbf58b2d8928cb03215335826b90f18095:log:75', 'hash': '0x7e7a136ce2a74a63716838c37875c4bbf58b2d8928cb03215335826b90f18095', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0d24c90bf19dcd4bf13c0ee0c8ae85bbabe64763', 'value': 0.00203763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031bf3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x2009acd2e5a1c748dbddd3865a3b75c3749212d223c95d49b07355034a1e72f5:log:76', 'hash': '0x2009acd2e5a1c748dbddd3865a3b75c3749212d223c95d49b07355034a1e72f5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0e8713014daa08b2905e2152accdd35050a3cea6', 'value': 0.00110515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01afb3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x6181b9d5a20d057f7321eb8fb26ddcfbf8dc62c50eec6a307c4bfda19446c1ee:log:77', 'hash': '0x6181b9d5a20d057f7321eb8fb26ddcfbf8dc62c50eec6a307c4bfda19446c1ee', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0ee1f94f918f3ae97ce0489cee9da8546981e0b6', 'value': 0.0352615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35ce06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x992a552ec04384833d91a7b0c38078c98f19d59b17cc81dc04117aafb045fb66:log:78', 'hash': '0x992a552ec04384833d91a7b0c38078c98f19d59b17cc81dc04117aafb045fb66', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0f7936d68b2a2a13ab46b67feda2ff2d8d799ac0', 'value': 0.00107753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a4e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x1477dcf80159a4286ccb50da6e6b8c9e5502c84748d0a5516621d24659f4f6e2:log:79', 'hash': '0x1477dcf80159a4286ccb50da6e6b8c9e5502c84748d0a5516621d24659f4f6e2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x0fbcf4bedafdbf47458c5fe896c53c5aa7947b8d', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x525489ca044bea67e5721ec6f2cc7d63f5ddb0003c2c33117071bee341597823:log:80', 'hash': '0x525489ca044bea67e5721ec6f2cc7d63f5ddb0003c2c33117071bee341597823', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1024a4498390748d8c3a6797f7413a11aa2b87cd', 'value': 0.00135382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0210d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x607fd4f44e23b0c1bbd42e4393a8d6b5e13430fc391d0d5bfdf52c31312cba33:log:81', 'hash': '0x607fd4f44e23b0c1bbd42e4393a8d6b5e13430fc391d0d5bfdf52c31312cba33', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x103e60e629aabb1a01e5bae0a88297f86f5d0630', 'value': 0.03222231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x312ad7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x397c29d5b71d439646e242803dcda8318e218aa75d28373a94124c96987a9ce9:log:82', 'hash': '0x397c29d5b71d439646e242803dcda8318e218aa75d28373a94124c96987a9ce9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1073549bbc99bd77f14ce756a4e7d1d46b0a9704', 'value': 0.26727597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0197d4ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x7fbf7a06f2bb65118aae92d7781a8f53eb2fd017af40c21347e911f47a00719d:log:83', 'hash': '0x7fbf7a06f2bb65118aae92d7781a8f53eb2fd017af40c21347e911f47a00719d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x10911f3ec784dee1db1a9f7da90b7d8b935e58a0', 'value': 0.00013814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xa7656c775d4bbab471b55c1d085f8283b67c7a3e6f03996fabaa63c581d2ae96:log:84', 'hash': '0xa7656c775d4bbab471b55c1d085f8283b67c7a3e6f03996fabaa63c581d2ae96', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x10d96bc43dada41d6e6418618db4d6f703450485', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x33c80749b967d9e446df4994304762c80deeea3a2bc107cfe1c879a53e77166d:log:85', 'hash': '0x33c80749b967d9e446df4994304762c80deeea3a2bc107cfe1c879a53e77166d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x10fb1b0fdbd357a06998fbb6cfa138742a97d998', 'value': 0.00100155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01873b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xc78b81cfb4024e0bc8b3ca2fedfef4a562d8d9ff10d228c7741717335805e2d8:log:86', 'hash': '0xc78b81cfb4024e0bc8b3ca2fedfef4a562d8d9ff10d228c7741717335805e2d8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x10a65567fa70c517c6b47f4a71a7b5b82711c38b', 'value': 0.00587116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08f56c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x3dfd0a0bff8d7f98c24dddbc3e392b5bcc528573c4b56437447c2f7b86ff3aaa:log:88', 'hash': '0x3dfd0a0bff8d7f98c24dddbc3e392b5bcc528573c4b56437447c2f7b86ff3aaa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11b850b928b1bde3a53c268f469086d570dcfac7', 'value': 0.32084168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e990c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xfe0c6fc4888a6c33a702dd82431cfdfd5564f8313a432d93c737ecb7af0773d3:log:89', 'hash': '0xfe0c6fc4888a6c33a702dd82431cfdfd5564f8313a432d93c737ecb7af0773d3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11fcc75af3cb8a326b0620839978794c03c08170', 'value': 0.10170923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b322b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x87d14acda5d61aae67d24e0c3d1faab11df4d34f4514f423907704af870e2727:log:91', 'hash': '0x87d14acda5d61aae67d24e0c3d1faab11df4d34f4514f423907704af870e2727', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11d3cffcc3d0426c9bc9ea7fa7ef280401b44b57', 'value': 0.00017268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4374', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x11cbf6ed7defa5b71445277fdb6ea2ce1d723174c2ad5655a7c49070f99a8498:log:92', 'hash': '0x11cbf6ed7defa5b71445277fdb6ea2ce1d723174c2ad5655a7c49070f99a8498', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11d484fab9c282d3854e1f85b8af62d7b686d795', 'value': 0.43907996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x029dfb9c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xd276b4fec022a480dced3c8883b4ee31342f011c44e111c8fe06fe32f0265954:log:94', 'hash': '0xd276b4fec022a480dced3c8883b4ee31342f011c44e111c8fe06fe32f0265954', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x11f44bb3b78f1565f70b743dd9c5a9c97bd608a4', 'value': 0.00292867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x047803', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0xceaa3407e7c4162e01ab3479634c66fad43444e9251be0393ba332deadb46012:log:95', 'hash': '0xceaa3407e7c4162e01ab3479634c66fad43444e9251be0393ba332deadb46012', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x120b3d8bc249a2c82d890c228b7cfd5acfc423da', 'value': 0.04866156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4a406c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0244', 'uniqueId': '0x800065e55d0b7711099fac060ebe59c61b440ef1d7ec94023c2be8cedebfe505:log:96', 'hash': '0x800065e55d0b7711099fac060ebe59c61b440ef1d7ec94023c2be8cedebfe505', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x126f18515451e1500474dcb80658ab52f5678d7d', 'value': 0.01232943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12d02f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:26:58.000Z'}}, {'blockNum': '0x7f0246', 'uniqueId': '0xa4dfbff18604fa7f213cef0fdc438d2ffdaaacbd8f79beac64aed281bbd98fe1:log:48', 'hash': '0xa4dfbff18604fa7f213cef0fdc438d2ffdaaacbd8f79beac64aed281bbd98fe1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x129caf775d8a4723fb368581107819f88d6c289e', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:27:16.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xcfacc3582c8d04d9f24ca90426234af012d2350991de724298d5235f32971f95:log:102', 'hash': '0xcfacc3582c8d04d9f24ca90426234af012d2350991de724298d5235f32971f95', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x12f12858c9b867d69968d24f4d7770e64e64aad7', 'value': 0.02921766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c9526', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0x0364bfe415862c071f462b1255c5bc6f13fd5bde37959bed3b8885be6d6fcdff:log:103', 'hash': '0x0364bfe415862c071f462b1255c5bc6f13fd5bde37959bed3b8885be6d6fcdff', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x130de75bc4c5e7d6bac1d9ee05f81184d3941011', 'value': 0.05739923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x579593', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xedd7058db350c19ddcd1ccf1fecdfa9d9869af0b33d0dbdf664cd257102ba40b:log:104', 'hash': '0xedd7058db350c19ddcd1ccf1fecdfa9d9869af0b33d0dbdf664cd257102ba40b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1324aad89aa0744eb398d25dbb1409e5e8a2a12c', 'value': 0.06339472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x60bb90', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0x6028c7f82923fb4fdaf976817dcb71aa760653b3fb566971f9c461039e02844b:log:105', 'hash': '0x6028c7f82923fb4fdaf976817dcb71aa760653b3fb566971f9c461039e02844b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1369247d0fb4e5778d7929027d32e879076a75e4', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xfbe6c7d0cf8dbaa5e3f4cec0514e986efde1a0774b97f8e1cf8b6ab5a2677411:log:106', 'hash': '0xfbe6c7d0cf8dbaa5e3f4cec0514e986efde1a0774b97f8e1cf8b6ab5a2677411', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x13766384bf34e8e3810c345d70c435177e54598b', 'value': 0.35993671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02253847', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xdae0dc11cf5de061a2065f2ab82efd048b450500363b00513a8c4b761976c606:log:107', 'hash': '0xdae0dc11cf5de061a2065f2ab82efd048b450500363b00513a8c4b761976c606', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x13a58631b894e2f059d2146c2eae28898572b7d4', 'value': 6.907e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1afb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0x30a3e80f1795aad5114f76b70eb7c9cb11e9a3962ad4236078edf5ffc51705bd:log:108', 'hash': '0x30a3e80f1795aad5114f76b70eb7c9cb11e9a3962ad4236078edf5ffc51705bd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1405568d505257fed075cce18d30cbb866de92cd', 'value': 0.26927907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x019ae323', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xef5e57a68f8e5ea20e3f3403a8bd1b348cf40e037a477f1534cac4feaa3eca19:log:109', 'hash': '0xef5e57a68f8e5ea20e3f3403a8bd1b348cf40e037a477f1534cac4feaa3eca19', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x14156dde01d8abd2341b15d4284a5ec74e965343', 'value': 0.00113278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ba7e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xa7604050c610dd145a323d8c9a71bd8192e9256ecd3081830f796bf8756b2f87:log:110', 'hash': '0xa7604050c610dd145a323d8c9a71bd8192e9256ecd3081830f796bf8756b2f87', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x141abf9772b0887db1b5e3fc959594732b16bc3c', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0253', 'uniqueId': '0xda84d0e1764fbed89b7f47eec8ece05c683edd107b8da5c41bf3cedd7e5fc1ad:log:111', 'hash': '0xda84d0e1764fbed89b7f47eec8ece05c683edd107b8da5c41bf3cedd7e5fc1ad', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1439648ff4815de902e4a66cf0cb8475260e4693', 'value': 0.0669036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x661638', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:29:43.000Z'}}, {'blockNum': '0x7f0256', 'uniqueId': '0x83fbca5f8b369f585367575fe1225e3a89baf1060a8b5530a01261a8dc12fb6c:log:23', 'hash': '0x83fbca5f8b369f585367575fe1225e3a89baf1060a8b5530a01261a8dc12fb6c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x144fa6874eb49595310d311b0c5aae390bc6ee6c', 'value': 0.05052652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d18ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:30:17.000Z'}}, {'blockNum': '0x7f0256', 'uniqueId': '0x2e069b676bc0fae0ed4378d20eea4360129e157ccc5dd774385300da7391b08b:log:24', 'hash': '0x2e069b676bc0fae0ed4378d20eea4360129e157ccc5dd774385300da7391b08b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1466e94cc3dcc19760bd880b77f3da194a83a5da', 'value': 0.00102227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018f53', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:30:17.000Z'}}, {'blockNum': '0x7f0256', 'uniqueId': '0x8d96fad79a5bc19cd08c20fd9e21ed1c7bfb19b895bb9308c9119e1bec309a16:log:25', 'hash': '0x8d96fad79a5bc19cd08c20fd9e21ed1c7bfb19b895bb9308c9119e1bec309a16', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x14e725bb7325492fe87fe6904cf8853ad9fcae8c', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:30:17.000Z'}}, {'blockNum': '0x7f0256', 'uniqueId': '0x69ad94ee96a61b2431df18881b1d69f09e2a7f4716a5ee5b09ecb7be5262f193:log:26', 'hash': '0x69ad94ee96a61b2431df18881b1d69f09e2a7f4716a5ee5b09ecb7be5262f193', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x14deedc7ba39e2ada7abeb6eaaffb6d9bbca3994', 'value': 0.06752526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x67090e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:30:17.000Z'}}, {'blockNum': '0x7f025e', 'uniqueId': '0x4efce2e668f9eeca2c6bb5aab7de7a6eea592508d8e57fd642ceb26ce88b6878:log:30', 'hash': '0x4efce2e668f9eeca2c6bb5aab7de7a6eea592508d8e57fd642ceb26ce88b6878', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x15337c4662b4eb604488c870406311f09f59cf54', 'value': 0.03008106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2de66a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:25.000Z'}}, {'blockNum': '0x7f025e', 'uniqueId': '0x4e0704e5f3553279ab6f0578ba75ccc469264264d13b371df6d2f8d9858ef5f2:log:31', 'hash': '0x4e0704e5f3553279ab6f0578ba75ccc469264264d13b371df6d2f8d9858ef5f2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x158a89107038b56e2d3ef6822d950ad1dc69f682', 'value': 0.00134691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020e23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:25.000Z'}}, {'blockNum': '0x7f025e', 'uniqueId': '0x477f72430765c2922c40e74d3ecd4e7c8ad7b6f027091c11b9b27868e9e53c7e:log:32', 'hash': '0x477f72430765c2922c40e74d3ecd4e7c8ad7b6f027091c11b9b27868e9e53c7e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x15988ff3e61c00c592126287f16d7b7c10f0802a', 'value': 0.02424444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24fe7c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:25.000Z'}}, {'blockNum': '0x7f025e', 'uniqueId': '0x9cce7a6abba8a4478d2a71fac298eeca703d350e793837ca02c6226e633a493a:log:33', 'hash': '0x9cce7a6abba8a4478d2a71fac298eeca703d350e793837ca02c6226e633a493a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1598f5ad2eb5c1076548d434bac3d41ec0831a7a', 'value': 0.00310826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04be2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:25.000Z'}}, {'blockNum': '0x7f0260', 'uniqueId': '0x94c60743c2a87b42324f662206e4ae4ec44aeea594f11bf026e911f553c039d2:log:34', 'hash': '0x94c60743c2a87b42324f662206e4ae4ec44aeea594f11bf026e911f553c039d2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x15f6f77a7d183b39c0008ccde18b8e7ffb3e96bb', 'value': 0.63826429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03cde9fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:31:49.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x1bfc92d38830fc6ae8aa9c0ef930ad3d9cc4c1bbb5394c6529a26ca287775b20:log:134', 'hash': '0x1bfc92d38830fc6ae8aa9c0ef930ad3d9cc4c1bbb5394c6529a26ca287775b20', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x161712a2f0603c954666bd09ba405f5b25abe3fa', 'value': 0.00116041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01c549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x9db42fc8c93b48c2aaa88b46928575357d6376cf00550397bc985cc70eecceca:log:135', 'hash': '0x9db42fc8c93b48c2aaa88b46928575357d6376cf00550397bc985cc70eecceca', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x162c28e126a97d0009158fbda0ca93e6e9cc13d0', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x39b3cf7f120272309f89384da2d1fd532f41b28bfa09c89b3b26a802213efb72:log:136', 'hash': '0x39b3cf7f120272309f89384da2d1fd532f41b28bfa09c89b3b26a802213efb72', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x16575bd7a7cdb324f7ba9ca1f95b3749a3cefbba', 'value': 0.03736821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3904f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x7eae87a53627842836beea5c5ec6c3a11d579af2818d51342f66fe95fba71367:log:137', 'hash': '0x7eae87a53627842836beea5c5ec6c3a11d579af2818d51342f66fe95fba71367', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1683116fe2a64d89c1fa1a65448a468086b87f9a', 'value': 0.00020721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x50f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x723281e129636efc92ea59476a75144c0efdfa46be794019afff9440eea07a4d:log:138', 'hash': '0x723281e129636efc92ea59476a75144c0efdfa46be794019afff9440eea07a4d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x16c44978353dd9c66d0c70bc14ea8a2e1f7a33fc', 'value': 0.03294757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x324625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x17de27c18a15bb076fbfc06dfa45c9a17e78d49d0d2e0a9956ff8b57ca1f48f0:log:139', 'hash': '0x17de27c18a15bb076fbfc06dfa45c9a17e78d49d0d2e0a9956ff8b57ca1f48f0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x16cb21d29c756442674bc1b61a401637b81e4678', 'value': 0.03515789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35a58d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x733eb529467063147ab60f844998964047c5f3a53f2311f3daf6e0e2d09feb3c:log:140', 'hash': '0x733eb529467063147ab60f844998964047c5f3a53f2311f3daf6e0e2d09feb3c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x16f581b9600721071496aa7eac62c89d8aea5b09', 'value': 0.00041443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa1e3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x9540833c638d5fbb8ff4bcbe79c4255f83f01ae5110a89ed0fc7d134abe0ab67:log:141', 'hash': '0x9540833c638d5fbb8ff4bcbe79c4255f83f01ae5110a89ed0fc7d134abe0ab67', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1714ce55143faea9207318195b69cbd495fad12c', 'value': 0.0004835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcde', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x06a3f1a061849fb869f12e51b48932c97198f619ca1380bf66fadf0033a3feac:log:142', 'hash': '0x06a3f1a061849fb869f12e51b48932c97198f619ca1380bf66fadf0033a3feac', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x171947991c12f203f100dbd3dae3fa7beb04061a', 'value': 0.02479702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25d656', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0xdc972b6e72976df87c4514e46c58a205ac88732280c1f67185287f9411f72924:log:143', 'hash': '0xdc972b6e72976df87c4514e46c58a205ac88732280c1f67185287f9411f72924', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x17252c18271dfad2dcf4fbaec09f15791b672bd5', 'value': 0.00080124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0138fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0xa08017604c3a8129e1b0f62e304460ae01c5bd0908c5dd511e8829a0d4e23a37:log:144', 'hash': '0xa08017604c3a8129e1b0f62e304460ae01c5bd0908c5dd511e8829a0d4e23a37', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x173c2608295f96280d2296615be5441fca0775ce', 'value': 0.06516988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6370fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x06ee0c34a22a17081854aa2a2598d8b3a6f132f0ad9a39e5d667e8c7958dcb7a:log:145', 'hash': '0x06ee0c34a22a17081854aa2a2598d8b3a6f132f0ad9a39e5d667e8c7958dcb7a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x178baa54dfef10fbe5f61ab7e592c14a5d684edd', 'value': 0.00138144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x021ba0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0xa5caf15e00afc72f3d297a9208c52fcc50d57f60fd34d24d7311c703d1664040:log:146', 'hash': '0xa5caf15e00afc72f3d297a9208c52fcc50d57f60fd34d24d7311c703d1664040', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1793432e447e1e83b816a500eeba277401a59a57', 'value': 0.00022103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5657', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x66e9a63e986b12b950fbf55edc12d388dbb80ea7d2db8934f79267d09001809e:log:147', 'hash': '0x66e9a63e986b12b950fbf55edc12d388dbb80ea7d2db8934f79267d09001809e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x17baf7649ee1262883eccf598570b1cd202bebd6', 'value': 0.00276289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x043741', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0x752f4a81204fb12509ac2161b2a4d91ffa0a9caedf97f5a6ee72df587dbacd60:log:148', 'hash': '0x752f4a81204fb12509ac2161b2a4d91ffa0a9caedf97f5a6ee72df587dbacd60', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x17bf906f3d523d6b49a8485a4d5720306969a6bc', 'value': 0.0557553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55136a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026b', 'uniqueId': '0xea0bdc596c7051bc7d65d8a7051708ed6c90460bab1a365b8cb390cb41cc6516:log:149', 'hash': '0xea0bdc596c7051bc7d65d8a7051708ed6c90460bab1a365b8cb390cb41cc6516', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x17cad8a4a8b448e59e77539171b13c3858371491', 'value': 0.02776713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a5e89', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:12.000Z'}}, {'blockNum': '0x7f026d', 'uniqueId': '0xcedc5012291ccb15365244d80c7f051ee4de7b3659395ceca4db77050f3acd2c:log:44', 'hash': '0xcedc5012291ccb15365244d80c7f051ee4de7b3659395ceca4db77050f3acd2c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x182208d25cf3bb6d1bf168adda5b5076923e94a3', 'value': 0.00379898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05cbfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:34:52.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x2f741e3c8b1569ed58d016843f817fdf21d72826334c925dbec43b8d3ba1c9bc:log:55', 'hash': '0x2f741e3c8b1569ed58d016843f817fdf21d72826334c925dbec43b8d3ba1c9bc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1844d3cc51b6ca1f7e8eaf64861574ae010fa757', 'value': 6.907e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1afb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x16b0cba2bd6f3560ca8621564441ce0c3fa826e51ba1856abd7b7c578b542095:log:56', 'hash': '0x16b0cba2bd6f3560ca8621564441ce0c3fa826e51ba1856abd7b7c578b542095', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x18716fd9289726d4c8918cf3b0645463b6c00f49', 'value': 0.01357274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14b5da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x22aecc680547cfb943d44a85bc59725e88d16ed733a13bd066c91bc3ddc46913:log:57', 'hash': '0x22aecc680547cfb943d44a85bc59725e88d16ed733a13bd066c91bc3ddc46913', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x189fcef7101d6071c6d22167a9e1bcedba908277', 'value': 0.00027628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6bec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x605da1cb618a33e25efbe01fd22a32853c6645226a44c59d5512800cd07fcf53:log:58', 'hash': '0x605da1cb618a33e25efbe01fd22a32853c6645226a44c59d5512800cd07fcf53', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x18b396f772ef19f062621927925be09ef9ba8737', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x548bfdf268dde43871c6ec1b24e95c34e31b9f146864505a92be81fe6ded4cc7:log:59', 'hash': '0x548bfdf268dde43871c6ec1b24e95c34e31b9f146864505a92be81fe6ded4cc7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x18d5601445061d31903052e368edb6535675c366', 'value': 0.00060783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xed6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x3a2f581d1124409c70513e6bab7f4c4c02fd37054cbe7b8ddb637513bf48946b:log:60', 'hash': '0x3a2f581d1124409c70513e6bab7f4c4c02fd37054cbe7b8ddb637513bf48946b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x18bea3e8441d32e9a2c8b780dda7fed6dddaff65', 'value': 0.00134691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020e23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f0272', 'uniqueId': '0x3f46368542e67103a97648243c63aeee15687083800a072f26986c3e70ea3092:log:61', 'hash': '0x3f46368542e67103a97648243c63aeee15687083800a072f26986c3e70ea3092', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1932dbd2dbde34dd5eb8ce5b31ace8a0093ee4b2', 'value': 0.0600378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5b9c44', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:36:15.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0x07780c3de618738d09947aa90215fbb9934f8627eaf3698c9f01a6be5abf94e0:log:21', 'hash': '0x07780c3de618738d09947aa90215fbb9934f8627eaf3698c9f01a6be5abf94e0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19415ec85192a2d65fc80987d103802ce428d0e2', 'value': 0.04686568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4782e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0x5faea7f0c5600e0ad14cf0761313992d042ca4810a608951cf18b92c806382c8:log:22', 'hash': '0x5faea7f0c5600e0ad14cf0761313992d042ca4810a608951cf18b92c806382c8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19ee588256cfb969da322b2e4782d965b8e8341a', 'value': 0.00077361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012e31', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0xa3b971a1b3823e3c0154866770f0c193a947add10ad6ad0c591477e88f4e9dea:log:23', 'hash': '0xa3b971a1b3823e3c0154866770f0c193a947add10ad6ad0c591477e88f4e9dea', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19c337192d0b6a023f28744aa8eaef7f83127928', 'value': 0.02217226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21d50a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0xe6cea188d057952bf438544be13e291abe479c3c1a075682f471917c8ddb8105:log:24', 'hash': '0xe6cea188d057952bf438544be13e291abe479c3c1a075682f471917c8ddb8105', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19c67d5758de7674ad681dd9412195d56dabf21e', 'value': 0.00033154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8182', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0x437c81810eda7e718e20e00c26289bcea3366a591f57b041bf6a88dc755f6ac7:log:25', 'hash': '0x437c81810eda7e718e20e00c26289bcea3366a591f57b041bf6a88dc755f6ac7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x19ee0a07fbcf87ee7f6fd8ce716c515abbbbe658', 'value': 0.01495419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16d17b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0xb17dbe343277abea63ac09f904018fe7211c86c138275c9f44f63a377f527eeb:log:26', 'hash': '0xb17dbe343277abea63ac09f904018fe7211c86c138275c9f44f63a377f527eeb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1a1590da0b3273f52e817d87ce96962fda425418', 'value': 0.00055257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd7d9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027e', 'uniqueId': '0xb8cbdd805838ee91b14dbec9f8ab819cc9cf13c5b9f240fb9665cff078992328:log:27', 'hash': '0xb8cbdd805838ee91b14dbec9f8ab819cc9cf13c5b9f240fb9665cff078992328', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1a5765182a40f39ca39a74d1f1f509a702ab56a9', 'value': 0.06333946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x60a5fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:23.000Z'}}, {'blockNum': '0x7f027f', 'uniqueId': '0x3f5ed50f98980124ceb739cc0fb67f31ffb6b3ec1572249a823133c0addd40de:log:85', 'hash': '0x3f5ed50f98980124ceb739cc0fb67f31ffb6b3ec1572249a823133c0addd40de', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1a7c9b496d72d97ff8c20cfcd6db050f7c6ceb10', 'value': 0.00027628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6bec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:51.000Z'}}, {'blockNum': '0x7f027f', 'uniqueId': '0x8ed7d52d0adf8b32a25012d85ab0843ed8aeaf49a308a5f69d2660b3a1cc80f7:log:86', 'hash': '0x8ed7d52d0adf8b32a25012d85ab0843ed8aeaf49a308a5f69d2660b3a1cc80f7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1ac54695617b986fef5513b541198fffd8c61cb8', 'value': 0.00085649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:51.000Z'}}, {'blockNum': '0x7f0280', 'uniqueId': '0x5380bc4e71f786c9db3cad29cb0af48fc9d59c6700bff0c1b793c069721c3ab9:log:46', 'hash': '0x5380bc4e71f786c9db3cad29cb0af48fc9d59c6700bff0c1b793c069721c3ab9', 'from': '0x934f97ba727dbf2970f495ae17f6d7bad3a23102', 'to': '0x957866b394291c21b28cb173b73868157d8be75d', 'value': 243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05a8649300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:38:59.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x534d892024eacf83a870dcf4e683819a253a1c1cc1bc3ecc45a829a3c9dd38d2:log:83', 'hash': '0x534d892024eacf83a870dcf4e683819a253a1c1cc1bc3ecc45a829a3c9dd38d2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1b2dfe388f3e3d59d142f1c7c94b1e4f5998e4cf', 'value': 0.00060783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xed6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x2cddba6e870e6a9fbb5957595698467f48cb439488220ca49fa8a91402fa79be:log:84', 'hash': '0x2cddba6e870e6a9fbb5957595698467f48cb439488220ca49fa8a91402fa79be', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1b302519fc30e42ca8b37c0ec32158fcf2f8d48f', 'value': 0.03184241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x309671', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x43e33b0eb3ee23ee13d2a6da546bbf42c15d95d18ebe8ec0563befd8dc886af3:log:85', 'hash': '0x43e33b0eb3ee23ee13d2a6da546bbf42c15d95d18ebe8ec0563befd8dc886af3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1b6b5c7dc3be0a390f434f01870d1228913ec3cd', 'value': 0.39630337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025cb601', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x2d7d00a4f48e5a771def4c6ad6db1ccb7ee1f62efcc74804054a3c271eb6201d:log:86', 'hash': '0x2d7d00a4f48e5a771def4c6ad6db1ccb7ee1f62efcc74804054a3c271eb6201d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c3b4ebc14b51e149633eae8aafc3381b3afcfb4', 'value': 0.00116041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01c549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x083048ea7a1068e6f94fec51eaf40072998c9c4753dbdcbed5a76b21d1f347a6:log:89', 'hash': '0x083048ea7a1068e6f94fec51eaf40072998c9c4753dbdcbed5a76b21d1f347a6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c603667dc47fdd019af6f6f306caf01bdd2fb9f', 'value': 0.00100155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01873b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0x71349c0604a1d1ab8db6941fb1f4b32aedc2f5fcd6b5b3e937779d4b743a5864:log:98', 'hash': '0x71349c0604a1d1ab8db6941fb1f4b32aedc2f5fcd6b5b3e937779d4b743a5864', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c8d2f8f64ddc032220481c111ee1ef845844102', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0xd46eaf5b69a791a8f9c181aa6e7a6047506b6a88d52cbe1396b78d0f789a5c84:log:99', 'hash': '0xd46eaf5b69a791a8f9c181aa6e7a6047506b6a88d52cbe1396b78d0f789a5c84', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1cc82585d00a49ad325771315a7cd4f2294ea1af', 'value': 0.03588315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x36c0db', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0284', 'uniqueId': '0xa885ae8baa2ea9b90f2b55593088b8487681d7c22f7e270e58b1ab2d6e7f2c92:log:100', 'hash': '0xa885ae8baa2ea9b90f2b55593088b8487681d7c22f7e270e58b1ab2d6e7f2c92', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1d649e3f11866c443b4272070b308f3325a7f8be', 'value': 0.10644069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa26a65', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:40:47.000Z'}}, {'blockNum': '0x7f0285', 'uniqueId': '0xcac18d75f023c14c64e6f5426325e240eed8b92ca0db38fecb40589045533892:log:113', 'hash': '0xcac18d75f023c14c64e6f5426325e240eed8b92ca0db38fecb40589045533892', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1dd8ae3102eec14c3c98611caf70e8c9453ea98f', 'value': 0.00189949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e5fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:41:23.000Z'}}, {'blockNum': '0x7f0285', 'uniqueId': '0x2275ca374c5a84e8ec37a397b27c478161550facb2696d5f8ce89062feb6f08a:log:114', 'hash': '0x2275ca374c5a84e8ec37a397b27c478161550facb2696d5f8ce89062feb6f08a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1e2476533d0782d7018b2b8498f3f1123e208ddd', 'value': 0.32584944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f134f0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:41:23.000Z'}}, {'blockNum': '0x7f0289', 'uniqueId': '0xe0f2c588ef06c934a6371c5180ea89cb0e7835f54beeb921272677f8a6255c52:log:5', 'hash': '0xe0f2c588ef06c934a6371c5180ea89cb0e7835f54beeb921272677f8a6255c52', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x000000000c7c9cbb8485c5e38c6c0da6a1017c1f', 'value': 0.00587333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08f645', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:41:46.000Z'}}, {'blockNum': '0x7f028a', 'uniqueId': '0xd3017640af7a60a0f05e2dc0a742d0fcd6cd33d55648c9cff94e5b5508796d24:log:87', 'hash': '0xd3017640af7a60a0f05e2dc0a742d0fcd6cd33d55648c9cff94e5b5508796d24', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x000000043dc3052d771845a71efc05b67f40abb4', 'value': 0.00885116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d817c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:07.000Z'}}, {'blockNum': '0x7f028a', 'uniqueId': '0x6802cdc352945a79fe4528b2de2af09a43ae7ab5b4762872922b19547519d70f:log:88', 'hash': '0x6802cdc352945a79fe4528b2de2af09a43ae7ab5b4762872922b19547519d70f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x000000e5e3f0831517a5fb8eeb00a2da21e49e94', 'value': 6.861e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1acd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:07.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0x81b141933e38e33a1e93249929256cf3037f465b393c98f52e9a9f981fa2f340:log:92', 'hash': '0x81b141933e38e33a1e93249929256cf3037f465b393c98f52e9a9f981fa2f340', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1f9522de481203fae4d50f5fe0f051ed37107336', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0xfcd8c6e8d9ea3073d8db9a6a694e28094744790f7ed561f8b781596c20fc8bbe:log:93', 'hash': '0xfcd8c6e8d9ea3073d8db9a6a694e28094744790f7ed561f8b781596c20fc8bbe', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1a529dd8ee6bcd5a9fa53887048c5d7b3df8329c', 'value': 0.09065763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8a5523', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0x5db6a69417ddd032e800e855f838ed9fa992f3de381fbc59d9be35be8b026183:log:94', 'hash': '0x5db6a69417ddd032e800e855f838ed9fa992f3de381fbc59d9be35be8b026183', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1aadce023498f6d9e23230d86039f93f9dff4807', 'value': 0.12284541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbb727d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0x13d9c2de2ddb3d03d7d2b28dfbcbefd53acf487e8c60e83ee0becc895aef57ba:log:95', 'hash': '0x13d9c2de2ddb3d03d7d2b28dfbcbefd53acf487e8c60e83ee0becc895aef57ba', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1ac486bf81d83edb4b8780918d4525b01328ace0', 'value': 0.03522696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35c088', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0xd41f171fd23097fbcee1e8acd58bac43bce1a8704b2f0ea5659b5d4b0ed5a5b2:log:96', 'hash': '0xd41f171fd23097fbcee1e8acd58bac43bce1a8704b2f0ea5659b5d4b0ed5a5b2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1b5d06c050066a2efc8546012bfbca75ea851c9e', 'value': 0.01208768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1271c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028b', 'uniqueId': '0xa760d5d3229fabe250ba4cece23a2e9896f477d161c9ec74a3e341e8fac86b77:log:97', 'hash': '0xa760d5d3229fabe250ba4cece23a2e9896f477d161c9ec74a3e341e8fac86b77', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1bad6578ca1e3b0a0a25326d8bd223126b8f3bc5', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:42:30.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0x162afec85f8a29438e85f849a2f0a2b9f497789b1bf11e7e60ac6e892a02d29f:log:26', 'hash': '0x162afec85f8a29438e85f849a2f0a2b9f497789b1bf11e7e60ac6e892a02d29f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x000500b81c9b361ed7d4daebc184029ec3b402f1', 'value': 0.00356791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0571b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0x9922e23b03565cb7e378d2e62ea9ad4c1c920f68500fc4af4555b98d358e8b26:log:27', 'hash': '0x9922e23b03565cb7e378d2e62ea9ad4c1c920f68500fc4af4555b98d358e8b26', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0012e9a8424da6db3200711ffbe5e2c62bf91bbf', 'value': 0.01341397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1477d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0x68b2406cda284cb49db4ffc924aefcfc644c8404f626683a02b88857115adf69:log:28', 'hash': '0x68b2406cda284cb49db4ffc924aefcfc644c8404f626683a02b88857115adf69', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0017ceed8eb8fc7977c55dce6b0dc3ffe8f4d184', 'value': 0.00679275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5d6b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0xc08d26e4f831708634a56b39ae3f8049107999be17c95ed888e27d469f24aa72:log:29', 'hash': '0xc08d26e4f831708634a56b39ae3f8049107999be17c95ed888e27d469f24aa72', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0035e7c3929651f1b7c1a8bba7d7ff734a1f31e1', 'value': 0.00919423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e077f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0xfc08ca1b1696944f9c2884a8954b901e96bb6d8bfbd9c9b62d42e6d460f0fe59:log:30', 'hash': '0xfc08ca1b1696944f9c2884a8954b901e96bb6d8bfbd9c9b62d42e6d460f0fe59', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x003656d5892c049a8079aeb0455164502db0d550', 'value': 0.00226425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037479', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028d', 'uniqueId': '0x4f8719d7fb1c20b8eb51276d953fcb45bf83ea3b3a00f06d2bad64cf80341efd:log:31', 'hash': '0x4f8719d7fb1c20b8eb51276d953fcb45bf83ea3b3a00f06d2bad64cf80341efd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x003dd7051bd7b10beb092df05258b5b847b0c8fc', 'value': 0.01520479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17335f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:38.000Z'}}, {'blockNum': '0x7f028f', 'uniqueId': '0xdd8271caa6aaeadec269cbcec80769cc71a2dc688b5b0f0cf7530174719f0110:log:63', 'hash': '0xdd8271caa6aaeadec269cbcec80769cc71a2dc688b5b0f0cf7530174719f0110', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00409b11db5b50907628818529262814ffd5dc59', 'value': 0.02107812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2029a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:43:48.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0x39d33e3c31dec5dd24f8d0ffbe58164066df7a018d2e8ba2082df0dc98558893:log:31', 'hash': '0x39d33e3c31dec5dd24f8d0ffbe58164066df7a018d2e8ba2082df0dc98558893', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c24d08f685fd1da0fd99df05090ff3b53e911de', 'value': 0.01015365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f7e45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0xe6c026e42f1655d7ecdd90d09f544e4d4c2145ea4c79512e32a81774edf9ea8b:log:32', 'hash': '0xe6c026e42f1655d7ecdd90d09f544e4d4c2145ea4c79512e32a81774edf9ea8b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c57b30a08a0a748f8379a20f4decf3846343220', 'value': 0.00031082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x796a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0xa891823dece5833425a723825e80cccab8c9ac7efbd3ccf69b61cc50118078cf:log:33', 'hash': '0xa891823dece5833425a723825e80cccab8c9ac7efbd3ccf69b61cc50118078cf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c59d5fff9668e5b929a4d8f19cffd757281ad9e', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0x3489153cf002933966d0b0eb4a35570d8ffdac4787f2f59718a50985f8cc16d3:log:34', 'hash': '0x3489153cf002933966d0b0eb4a35570d8ffdac4787f2f59718a50985f8cc16d3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c8af860d59430bfc32ca71c7d0d5a9395f83891', 'value': 0.0230702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2333cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0x1d1b2b6639aeda328aba3aa73ec55ff362d6ff928dc28da4b275bc7ceeab8d9c:log:35', 'hash': '0x1d1b2b6639aeda328aba3aa73ec55ff362d6ff928dc28da4b275bc7ceeab8d9c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1c94886ff66e6e8f98cfa83215955c21d846efb5', 'value': 0.01122427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11207b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0292', 'uniqueId': '0x950a11eb5e7fbe782812aa9695ac53adbbbcbc5e61ce62b27a486f3bf691e0c3:log:36', 'hash': '0x950a11eb5e7fbe782812aa9695ac53adbbbcbc5e61ce62b27a486f3bf691e0c3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x004251ec96a0b688cb93cc30b1ad79438ddea9fb', 'value': 0.01066942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1047be', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:11.000Z'}}, {'blockNum': '0x7f0295', 'uniqueId': '0x44dd4a7a9cb91420f8d5176d41fdf48d7f0d90e012c42d98f58efb4c53fed9e8:log:49', 'hash': '0x44dd4a7a9cb91420f8d5176d41fdf48d7f0d90e012c42d98f58efb4c53fed9e8', 'from': '0x934f97ba727dbf2970f495ae17f6d7bad3a23102', 'to': '0x957866b394291c21b28cb173b73868157d8be75d', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:32.000Z'}}, {'blockNum': '0x7f0295', 'uniqueId': '0x484d25f9220eaa4435f9bb4378a4d66b455ad2a96e32aeed8db88ce9dab078d6:log:101', 'hash': '0x484d25f9220eaa4435f9bb4378a4d66b455ad2a96e32aeed8db88ce9dab078d6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1d8779a176f4c8dbd75cb8b76c9a33187ca49a04', 'value': 0.0032464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04f420', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:32.000Z'}}, {'blockNum': '0x7f0295', 'uniqueId': '0xda0c3b01cd74932397791ca8ef665865c82b224b87d14131f3e9c897b0cac56c:log:102', 'hash': '0xda0c3b01cd74932397791ca8ef665865c82b224b87d14131f3e9c897b0cac56c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1d8cad94005380c26df415d3f3e8e8181e9a164c', 'value': 0.0001934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b8c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:32.000Z'}}, {'blockNum': '0x7f0295', 'uniqueId': '0xa44391a6ef8cefe78296549b8a616d258e0fd0b715996092b5c5c7bf0a7ba9bc:log:103', 'hash': '0xa44391a6ef8cefe78296549b8a616d258e0fd0b715996092b5c5c7bf0a7ba9bc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1db7f01cf9fafcdc5b8ef93337aa9091ac731d62', 'value': 0.53472463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032feccf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:32.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0x4244c1b1a673ed83fea65fe73a121988cf611077a6444918b04f69e61e10fdb6:log:97', 'hash': '0x4244c1b1a673ed83fea65fe73a121988cf611077a6444918b04f69e61e10fdb6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0056a0cdb437c3092e2e35d6038ccfebcd5774a6', 'value': 0.0225739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2271ee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0xf75958d3882332b789b16a83134e1776e18949c6be93900971304ae444635d5c:log:98', 'hash': '0xf75958d3882332b789b16a83134e1776e18949c6be93900971304ae444635d5c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00724362c779029818e60b99cb5f5be256d97157', 'value': 0.01036066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0fcf22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0x61915f8830553d4daead55bdab48e3860e8bc5133d4402c091a6f35390d15797:log:99', 'hash': '0x61915f8830553d4daead55bdab48e3860e8bc5133d4402c091a6f35390d15797', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x007b042697fcf9c7631e566205903bb621270393', 'value': 0.08418898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x807652', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0xca1fcf4b20af5ed731dab3cb746c0db3c53dd415c937a317d9eeed263a90724b:log:100', 'hash': '0xca1fcf4b20af5ed731dab3cb746c0db3c53dd415c937a317d9eeed263a90724b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00840c6ed146e52b15dc10c0a0eb6dec64178832', 'value': 0.00408251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x063abb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0xdf599c961ebfbffa770b4a5d30e4139b5f35b6ea2118ecb67cf03ce60e7500ab:log:101', 'hash': '0xdf599c961ebfbffa770b4a5d30e4139b5f35b6ea2118ecb67cf03ce60e7500ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00853d5e7ae5b909eebcc4cc0bdaa8e24b84d7aa', 'value': 0.00038423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9617', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0296', 'uniqueId': '0x331a26b82e01faa1851cdc5637e43a6936ff9b80c4104934d91b541f8c3c20e5:log:102', 'hash': '0x331a26b82e01faa1851cdc5637e43a6936ff9b80c4104934d91b541f8c3c20e5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00870129b8a8176a2cf0855aef53367c0c34b56c', 'value': 0.02137316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x209ce4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:44:58.000Z'}}, {'blockNum': '0x7f0299', 'uniqueId': '0xef6dee7fb06f0a6fbe87a9d1cc3ff1faa20face669c51217c438c9374142b17d:log:106', 'hash': '0xef6dee7fb06f0a6fbe87a9d1cc3ff1faa20face669c51217c438c9374142b17d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00974817dd40c0ac29c3979093e4a2cdb3816039', 'value': 0.0005489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd66a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:40.000Z'}}, {'blockNum': '0x7f0299', 'uniqueId': '0xbf39d4ea85d793232b994589ff8384f3ba15321394522fb3c72ec4a799b8c5d5:log:107', 'hash': '0xbf39d4ea85d793232b994589ff8384f3ba15321394522fb3c72ec4a799b8c5d5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x009a67b266874f06af2493bc9d35934b38209c81', 'value': 0.01125264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x112b90', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:40.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x6e6662f5612f583cde79866c35f6fd1b8eed4d4971caf0f1596169b3a981a0a0:log:10', 'hash': '0x6e6662f5612f583cde79866c35f6fd1b8eed4d4971caf0f1596169b3a981a0a0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1f7cb6a67f0688ca6f2bcd57b23fdeab959e30ec', 'value': 0.00853045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d0435', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xe83610e727dc6b20f1fa9a522d92fbaeda7d53877dc289ee4c8b982661d05395:log:11', 'hash': '0xe83610e727dc6b20f1fa9a522d92fbaeda7d53877dc289ee4c8b982661d05395', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x1fc44f21ba30d6dfb0595d281fcb9f4ae7756875', 'value': 0.14304911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xda468f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xbb8ad01f0e7d590ea2a85a5907f09e2f9e6b9ada138cd9d54f6e261ae9a09c80:log:12', 'hash': '0xbb8ad01f0e7d590ea2a85a5907f09e2f9e6b9ada138cd9d54f6e261ae9a09c80', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x205d9063450191cae5cb955cc754762ade8b17a4', 'value': 0.00063546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf83a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x9d91bf16c0a87e01adaad141d9fd87cfaf2086ee8dfafa6a9d1b76ab746c5a6b:log:13', 'hash': '0x9d91bf16c0a87e01adaad141d9fd87cfaf2086ee8dfafa6a9d1b76ab746c5a6b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x20ba0ed29b38f63cfe96193b1e85365821a7058a', 'value': 0.18729004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011dc82c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xe5ca654ba7586331b2c587cf97b47a01f2c7560cd93a908705d6307d33578897:log:14', 'hash': '0xe5ca654ba7586331b2c587cf97b47a01f2c7560cd93a908705d6307d33578897', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x20f5c037c374098afc8e5c451f9ee7b97ed46f92', 'value': 0.21992678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014f94e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xc7f4f31cd568e333ac333b99eabc7e0b613c2db5ef297ed9b656a11dc7b14710:log:15', 'hash': '0xc7f4f31cd568e333ac333b99eabc7e0b613c2db5ef297ed9b656a11dc7b14710', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x20f53ce559324b7859b34b5eed66df3a9886e2e2', 'value': 0.05796562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5872d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xaa151381110a788c63cd6afc48b91513c9dbef3266a11db4e84270373330c0bc:log:16', 'hash': '0xaa151381110a788c63cd6afc48b91513c9dbef3266a11db4e84270373330c0bc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x215eefa97889a0235135c65facfcce13d861ebb0', 'value': 0.00386805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05e6f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x3652ba4ed831bb10b5a602d2ca59c4ac7306774f40d176aca5938e584bb4a645:log:17', 'hash': '0x3652ba4ed831bb10b5a602d2ca59c4ac7306774f40d176aca5938e584bb4a645', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2162634ca9755479b74f4f88d207242667f771ad', 'value': 0.06320132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x607004', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x458981056f72d519ecbf88462502514a2a81cd71afae7dfd62e0091cdbc60414:log:18', 'hash': '0x458981056f72d519ecbf88462502514a2a81cd71afae7dfd62e0091cdbc60414', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x218c59cdcd00e616b3e8281bb4956c5e55ed2a72', 'value': 0.37233522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02382372', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x4539b83d52f4fa07936f1ea52b457331285a116a720400797d9147697f6f0cdd:log:19', 'hash': '0x4539b83d52f4fa07936f1ea52b457331285a116a720400797d9147697f6f0cdd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x21bee34c6ecfb2d173246c850153d34ab6972c13', 'value': 0.03094447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f37af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xa35c4df297675fbcbed5f612906fde634a4d424de7284c879990f28e4a3c8c3b:log:20', 'hash': '0xa35c4df297675fbcbed5f612906fde634a4d424de7284c879990f28e4a3c8c3b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x21ae694cc0e60ba2da6197b65ee72a5de1bb67a4', 'value': 0.00531858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x081d92', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xb02a32b1cfc39b561f33a5b83a53451b27d1d13fd747d6a677a97022c1a50572:log:21', 'hash': '0xb02a32b1cfc39b561f33a5b83a53451b27d1d13fd747d6a677a97022c1a50572', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x21d0d2216fd306803260abd43367dac2f36003b6', 'value': 0.14860944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe2c290', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x3206dc04d2af55a406c2ad3a3e37d232093de2efd0f53b0b6f49778cd7944e9d:log:22', 'hash': '0x3206dc04d2af55a406c2ad3a3e37d232093de2efd0f53b0b6f49778cd7944e9d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x220ba70e7ace7c799bfb643f148087e81a04c6de', 'value': 0.34242684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020a807c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x55aa22acdcfc5496c96e990103a15a6cde01a0cd69558dde28f4939b6eebefb7:log:23', 'hash': '0x55aa22acdcfc5496c96e990103a15a6cde01a0cd69558dde28f4939b6eebefb7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x224835890c0f377366ab57ef2a1a6e0d53258afe', 'value': 0.00944911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e6b0f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x629b9fcd48594b6096f4271e956a25637df0b65c8297734a5f6520967cb1ad87:log:24', 'hash': '0x629b9fcd48594b6096f4271e956a25637df0b65c8297734a5f6520967cb1ad87', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x22b521db01bf5da475fe8afaec000f7d05435947', 'value': 0.04047647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3dc31f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xb2ef83b6b05c8886f3323a73ee3659c2c527747828019ed094fa94aa1168add9:log:25', 'hash': '0xb2ef83b6b05c8886f3323a73ee3659c2c527747828019ed094fa94aa1168add9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x22f247b071b697bf904b9f3fd7e2f28b352716d0', 'value': 0.00031082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x796a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x3fb11baa3b3a1a33519fb9306d161dc3e03df769224ff4d451da49b9e74a312f:log:26', 'hash': '0x3fb11baa3b3a1a33519fb9306d161dc3e03df769224ff4d451da49b9e74a312f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x22f6799c9b10dfcff14da9a6d434810cddff7c72', 'value': 0.21585151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01495cff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xffc8930e1a5df3e94ff2455f2230c32bdcb57a71275951728bb0839ef8b49c6e:log:27', 'hash': '0xffc8930e1a5df3e94ff2455f2230c32bdcb57a71275951728bb0839ef8b49c6e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2305ab379e5bd340c35b6dafa9c2208402518f00', 'value': 0.02569496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x273518', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x2302ccf027f0d3b6a3456fec1c9757fd069e5f04eb47d6e38b733acc093ba947:log:28', 'hash': '0x2302ccf027f0d3b6a3456fec1c9757fd069e5f04eb47d6e38b733acc093ba947', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x231ec38d8a6e570d6f20b86eab76ef772256ae5b', 'value': 0.00013814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xe4e5c82e5ded5355b34945541ffecfb870d31ef15a30c255f788cd00bacd9d2e:log:29', 'hash': '0xe4e5c82e5ded5355b34945541ffecfb870d31ef15a30c255f788cd00bacd9d2e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x232b2a2820ac4119f31960746e3403997612164c', 'value': 0.01882225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cb871', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xb597f293f0407b89b748659f5490b728dc7b787b37b1804b0f8d95a041eaec7e:log:30', 'hash': '0xb597f293f0407b89b748659f5490b728dc7b787b37b1804b0f8d95a041eaec7e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2344cbbccd41759bd140cf7645bbec1dba9c05e0', 'value': 0.00049732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc244', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x1c66b3c16b3c0cbbdb7a9815d4218d563814a84a23df859634f7c2debf2189b1:log:31', 'hash': '0x1c66b3c16b3c0cbbdb7a9815d4218d563814a84a23df859634f7c2debf2189b1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x234e4b988df2d1b1f20a3b947e591813e074b507', 'value': 0.00683817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a6f29', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xcd44b2264b3851e8dc87decc1879fc30a50440f7e98a49bd253cfc2ecddeb846:log:32', 'hash': '0xcd44b2264b3851e8dc87decc1879fc30a50440f7e98a49bd253cfc2ecddeb846', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x238062b9601fba8238b5642e69282607dff60dff', 'value': 0.01177685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11f855', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0xf312ad390129e449c309215dab422d1f7dd63b75693abcd850c1f0084b5684ac:log:33', 'hash': '0xf312ad390129e449c309215dab422d1f7dd63b75693abcd850c1f0084b5684ac', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x238e5c464bd4011bff06dc81fa3763f5ff0656fd', 'value': 0.13172122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc8fd9a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x44589dadc686a9b1d87e8a3b438eac9584b2134eb0466c3dae428e16ae2db1dc:log:34', 'hash': '0x44589dadc686a9b1d87e8a3b438eac9584b2134eb0466c3dae428e16ae2db1dc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x239bdf8e418068babb4073f1b34c4d9e3309096d', 'value': 0.35921145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02241cf9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029a', 'uniqueId': '0x941414d176f770c2aaaafa2a3744f90dfb4b16e9bff697583e22bb6eb6879546:log:35', 'hash': '0x941414d176f770c2aaaafa2a3744f90dfb4b16e9bff697583e22bb6eb6879546', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x23cb4612432fcfffee616c83c0ad90422d633103', 'value': 0.05663943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x566cc7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:45:54.000Z'}}, {'blockNum': '0x7f029d', 'uniqueId': '0xdb8bfc9cea3712e1a85a73da6f55c41f84acc6a0e56176a081fb93673cd83ff1:log:24', 'hash': '0xdb8bfc9cea3712e1a85a73da6f55c41f84acc6a0e56176a081fb93673cd83ff1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00b860772c864807c0362dc77e7f968c94337ae3', 'value': 0.00967452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ec31c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:46:11.000Z'}}, {'blockNum': '0x7f029d', 'uniqueId': '0x401e91499eb22b94f18579b33e88dd5eba1df4f7f88de29b1023e5a62b6c4f8b:log:25', 'hash': '0x401e91499eb22b94f18579b33e88dd5eba1df4f7f88de29b1023e5a62b6c4f8b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00bc8da53c76f5e52e2290f147fa2c24ca33aa98', 'value': 0.02902358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c4956', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:46:11.000Z'}}, {'blockNum': '0x7f029d', 'uniqueId': '0x1192bbcc6d35f1d644127a6955e090a362892e189faebffe1e5f45f4656ab66c:log:26', 'hash': '0x1192bbcc6d35f1d644127a6955e090a362892e189faebffe1e5f45f4656ab66c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00f8b1c7d29d500a054a74ad974ae714ed737767', 'value': 0.00600369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x092931', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:46:11.000Z'}}, {'blockNum': '0x7f02a4', 'uniqueId': '0x5085660e09fe75dc44147ce5b5853f57d0cfe08982ed112c5e7aa3295050df59:log:53', 'hash': '0x5085660e09fe75dc44147ce5b5853f57d0cfe08982ed112c5e7aa3295050df59', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x23dfbc4c028c072df5706492fc09dc85a91fde1d', 'value': 0.12564284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbfb73c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:03.000Z'}}, {'blockNum': '0x7f02a4', 'uniqueId': '0x9d23ca936999c077b7369d1df12d36e79429717a1a7d207f39dee090deeff177:log:54', 'hash': '0x9d23ca936999c077b7369d1df12d36e79429717a1a7d207f39dee090deeff177', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x242fc9a0f065d4664483c592372783514ca88e0e', 'value': 0.00116041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01c549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:03.000Z'}}, {'blockNum': '0x7f02a4', 'uniqueId': '0x784eb9e59c63e79be503144fcca6f6abae2925182b5bd56c2d983b36ad80f061:log:55', 'hash': '0x784eb9e59c63e79be503144fcca6f6abae2925182b5bd56c2d983b36ad80f061', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x24cfaf6ad0fb977fead1f1205601d55502ef6b98', 'value': 0.09376589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8f134d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:03.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0xb049b1e1a597595e49b7549c621b72f3c59d196231265cb6d5da90f4d41e84ce:log:14', 'hash': '0xb049b1e1a597595e49b7549c621b72f3c59d196231265cb6d5da90f4d41e84ce', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00a40b7a7fe72838450d502362aba539e1ca3471', 'value': 0.0009057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0161ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0xc26f63d1f399c54281762ff077f0f05f16dad1d0e4f5c96f37bbcde36b06a275:log:15', 'hash': '0xc26f63d1f399c54281762ff077f0f05f16dad1d0e4f5c96f37bbcde36b06a275', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00aa5267ead3a30d67b995e33d8559184b1d7371', 'value': 0.00376002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05bcc2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0x7c23c858076547bf37288c0144c8cd7cf6d0ed8c7d6c41718d63788dc736300a:log:16', 'hash': '0x7c23c858076547bf37288c0144c8cd7cf6d0ed8c7d6c41718d63788dc736300a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00bbafbdef6e353c976a5cdca7d3195684874e32', 'value': 0.00458339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06fe63', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0x9e2a6b98e9857f3fe39eca7fa467395a45eef623420f18691c816b7200c7e5a3:log:17', 'hash': '0x9e2a6b98e9857f3fe39eca7fa467395a45eef623420f18691c816b7200c7e5a3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00cc2e4bc95dd72fdb8287802ec91f63f0fc493e', 'value': 0.00981175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ef8b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02a9', 'uniqueId': '0x8c43701c5c599e21a08074c90ab0e62557c6bdb024a972cf29dfef8319c81e05:log:18', 'hash': '0x8c43701c5c599e21a08074c90ab0e62557c6bdb024a972cf29dfef8319c81e05', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2632b0a88efdd5bb9039d3721dc38606cdf495db', 'value': 0.03166973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3052fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:12.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x93d50b2037f7340f6820912172646a074f4574d4ad9b7ad31a210a8153d9b42d:log:29', 'hash': '0x93d50b2037f7340f6820912172646a074f4574d4ad9b7ad31a210a8153d9b42d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x00e5764cd83a1335502bc4572f9cb67bd2dcb2d6', 'value': 0.00510485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07ca15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x4f79b595f0a67dc7a142de189c274fd790932271efbdfeb41b3e3bff888e13d3:log:30', 'hash': '0x4f79b595f0a67dc7a142de189c274fd790932271efbdfeb41b3e3bff888e13d3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0107e0427a9eaa692bd0175c028e2f86f4c74929', 'value': 0.01725634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a54c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x67b0ea58ff0237da48d1a8784f427c1b19dce703c64048f6f6e9dd1cac1c291b:log:31', 'hash': '0x67b0ea58ff0237da48d1a8784f427c1b19dce703c64048f6f6e9dd1cac1c291b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0191fb62a0341e9228f73bffa2f00a6b2f3ab6fd', 'value': 0.00734166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b33d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xfea033258f9ba77fd34d66e8566b98455f02763cc89a6001837757e599aa6499:log:32', 'hash': '0xfea033258f9ba77fd34d66e8566b98455f02763cc89a6001837757e599aa6499', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0217dc6b1198af19ac90dfbdae60c45aadb30b02', 'value': 0.00332776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0513e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xed6bb8e5b40b24332e7f2d05d00c0a49fd3a97fef78e55e0dfcdd6e974171027:log:33', 'hash': '0xed6bb8e5b40b24332e7f2d05d00c0a49fd3a97fef78e55e0dfcdd6e974171027', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0273b2e8abd4b2b54f8f233d179395b37b695ea2', 'value': 0.00727305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b1909', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x30ff40b11896b940198a39088155bd911ff7b8866278850b16efa6343a58dc12:log:34', 'hash': '0x30ff40b11896b940198a39088155bd911ff7b8866278850b16efa6343a58dc12', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0277562d5d47af853a570d87fb5c813bc093d894', 'value': 0.02103009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2016e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x010e14ac90cde5a6185f25a15049d7e81f97734fe47bb88eb3106004a56250ab:log:35', 'hash': '0x010e14ac90cde5a6185f25a15049d7e81f97734fe47bb88eb3106004a56250ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x029334b8092db57006c4e1c7e62468093bccba1d', 'value': 0.00099489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0184a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xc55afefe2291bbc85738059215718c986372f4860ad5a9b0a80e0f8d2b710e3e:log:36', 'hash': '0xc55afefe2291bbc85738059215718c986372f4860ad5a9b0a80e0f8d2b710e3e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x029d4980433d81cdcd8ba16f9bfc5edf9ccaf991', 'value': 0.02583305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x276b09', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xc16c24253b1303b5994e745701ce0e11218c5676a835f8fe9de1feb765790339:log:37', 'hash': '0xc16c24253b1303b5994e745701ce0e11218c5676a835f8fe9de1feb765790339', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x02b80aff403c79ddf0c57ea755e174c8d9b7111c', 'value': 5.489e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1571', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xf3385bb95ecee8d771504a21d7d9c779a1d65522cc48cbe2d18ad9c9082e9b7f:log:38', 'hash': '0xf3385bb95ecee8d771504a21d7d9c779a1d65522cc48cbe2d18ad9c9082e9b7f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x02d4c1ed3fc0b471901ebb567bc88604c1c69671', 'value': 0.00145461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023835', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xfc86a8f5ba32598616d96b56827b2aa0e39e1d5c15c40dec4aec50622a3d62e4:log:39', 'hash': '0xfc86a8f5ba32598616d96b56827b2aa0e39e1d5c15c40dec4aec50622a3d62e4', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0315e9138ce0a4d69122e615482c799b2fdc89b0', 'value': 0.00559201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x088861', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xf3a3e5de37a48c5fc5128ed78d42ac2a0b8ccd51e01d47e372f58c8b7a280acf:log:40', 'hash': '0xf3a3e5de37a48c5fc5128ed78d42ac2a0b8ccd51e01d47e372f58c8b7a280acf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x034e46b6f6d0b0629773800912dfaa08534eeec6', 'value': 0.00804152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c4538', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x71789c59ab7bb620c154b8f214c6d03b2781cbe36fdeb0c897729cbc285f3542:log:41', 'hash': '0x71789c59ab7bb620c154b8f214c6d03b2781cbe36fdeb0c897729cbc285f3542', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0353fa047271be2f6d34e301b5293ad156f42035', 'value': 0.04646518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x46e676', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x1a1a8dbe1328923a7a3dd337220df37982132dd3f1caf2650a29a5c6dbe88e36:log:42', 'hash': '0x1a1a8dbe1328923a7a3dd337220df37982132dd3f1caf2650a29a5c6dbe88e36', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x038f254f8318d3c91db657e594a55868bf51fd0c', 'value': 0.0055577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x087afa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x5885e364cc887df0044a419a0f00e704101cb988a86cd03d69e2fd627a0a516b:log:43', 'hash': '0x5885e364cc887df0044a419a0f00e704101cb988a86cd03d69e2fd627a0a516b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x03f936c185578d72c8449d9711f3d794e8e1f33a', 'value': 0.00871393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d4be1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xdfada80e87efced079759447f778b3509c08c7ebb2aecc4b967e2f921ccb2b94:log:44', 'hash': '0xdfada80e87efced079759447f778b3509c08c7ebb2aecc4b967e2f921ccb2b94', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x04869655186ab838078c942092da99fe1e990848', 'value': 5.489e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1571', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x95ef14369fc998c78fbb0e474d6cbb31d7db484352cf5e83c2098ce49797b211:log:45', 'hash': '0x95ef14369fc998c78fbb0e474d6cbb31d7db484352cf5e83c2098ce49797b211', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x04c9720af269f4dfda36fcf64c4d0b856b061bcb', 'value': 0.02994987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2db32b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x0c5b8017b88860d73c8fddec2154de3a4efacc2934e2ff6625190e33bc267df9:log:46', 'hash': '0x0c5b8017b88860d73c8fddec2154de3a4efacc2934e2ff6625190e33bc267df9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x04d4e1d345602ebcaf85dad0f85222641dd0ac5c', 'value': 0.00365024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0591e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x18920bd50dd10f772b0abcbf78571c3ba18098fe64f34876eb1bfb22d769bb53:log:47', 'hash': '0x18920bd50dd10f772b0abcbf78571c3ba18098fe64f34876eb1bfb22d769bb53', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0554ebe00716a615ef98b4a5b2ac6d4c90656368', 'value': 0.00397959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x061287', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0xd224d44287429d30dd96cdf3ce50ca39142d0bd202b16a3318fd4ded2aba4be1:log:48', 'hash': '0xd224d44287429d30dd96cdf3ce50ca39142d0bd202b16a3318fd4ded2aba4be1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0595f75ef4d10fa37571d8df3ce73f1310f65d75', 'value': 0.0261075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27d63e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ac', 'uniqueId': '0x1f2fbc9d528d23f69d328eb0396ba7c9e7d16910258a70e152631815995f5e36:log:49', 'hash': '0x1f2fbc9d528d23f69d328eb0396ba7c9e7d16910258a70e152631815995f5e36', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x05a082d4a4ae72304cb0518eaf460fa474f00620', 'value': 0.01694757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19dc25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:47:55.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0x36fd0ed5ce82f52276e7e940f90a13e5ab7ce69ccb5917c78b83ed426c6bf44d:log:49', 'hash': '0x36fd0ed5ce82f52276e7e940f90a13e5ab7ce69ccb5917c78b83ed426c6bf44d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x05e87ab2823203c2329798af2219b201e594399d', 'value': 0.00617523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x096c33', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0xd761ae58b3791f5fad5dda9692a9b1ff7943c9d49304c8ab54c8553f24446492:log:50', 'hash': '0xd761ae58b3791f5fad5dda9692a9b1ff7943c9d49304c8ab54c8553f24446492', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0602759e3fdb784e646c027602f1daa4edaa38b7', 'value': 0.01694757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19dc25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0xf5c3e24738cca095e75f3be326fc957ab0fbf2d51fb71fab52472630acf4457d:log:51', 'hash': '0xf5c3e24738cca095e75f3be326fc957ab0fbf2d51fb71fab52472630acf4457d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x068922166bbd43e6daa1a848bbdc2d7c8ae8efc9', 'value': 0.06298735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x601c6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0xe502b8817f95ace84efa1f621a04d811adb87f1a3214ad97d75ff23adac3ceb5:log:52', 'hash': '0xe502b8817f95ace84efa1f621a04d811adb87f1a3214ad97d75ff23adac3ceb5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x06c0836681faaf9e1a03fff989f77cdf54050510', 'value': 0.021579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20ed4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0x8f5bb8cfeca16dea0dfb2f7060adfa52d3dd17a7d40537e80c6acbb592398643:log:53', 'hash': '0x8f5bb8cfeca16dea0dfb2f7060adfa52d3dd17a7d40537e80c6acbb592398643', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x07167fde02c61c9039fb412809e9ca22d257df14', 'value': 0.00988037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f1385', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0x182fcf8f4c05de40d123740a055487a1ca8892b86775f654c0bfafc5fff91ed3:log:54', 'hash': '0x182fcf8f4c05de40d123740a055487a1ca8892b86775f654c0bfafc5fff91ed3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x263eaa960e8e961bb530e3b2a50adcef68c6600d', 'value': 0.02293206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22fdd6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0x4c4c7c0a2f92eb0f37577204e7c9923ac8b801e57afee36abd68b9ceb0f6fe8e:log:55', 'hash': '0x4c4c7c0a2f92eb0f37577204e7c9923ac8b801e57afee36abd68b9ceb0f6fe8e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x26407009be8dd15d90a2014264042f75f549c75d', 'value': 0.02863054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2bafce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02ae', 'uniqueId': '0xd3673e0c90f4b9cb4ed9e4e6406c4e79b2529d99cc5788e5a44eaabc4bc27d40:log:56', 'hash': '0xd3673e0c90f4b9cb4ed9e4e6406c4e79b2529d99cc5788e5a44eaabc4bc27d40', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2673f2cab5397d41ec8b69a6f0159d53e051cdcb', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:08.000Z'}}, {'blockNum': '0x7f02af', 'uniqueId': '0x07480cf71ad13fce0e7ffbd8c45ef80a9aa4771a980f77c8cce88af0afab5061:log:89', 'hash': '0x07480cf71ad13fce0e7ffbd8c45ef80a9aa4771a980f77c8cce88af0afab5061', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x26ef6cf6b1657667c6b57db88bb623592da51db0', 'value': 0.38887808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02516180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:26.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0x2ead80a3985abdbd57bc48ebf07ab44e00ed081657cc7d792c49f941b6e4daa5:log:123', 'hash': '0x2ead80a3985abdbd57bc48ebf07ab44e00ed081657cc7d792c49f941b6e4daa5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x07262c9307259b33df069e98a6c79feff28c8606', 'value': 0.00295038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04807e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0xecdf29f6305a6d78b20c25063b863e80ced44f89b1b913c4f39060a37787e879:log:124', 'hash': '0xecdf29f6305a6d78b20c25063b863e80ced44f89b1b913c4f39060a37787e879', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x073941fdd0c525f5c0b571350d08f0091b49ab25', 'value': 0.0703153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b4aea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0x5801d8344ae17610babec57ed3433b54f6050ca69db1d504456826d3bad2e859:log:125', 'hash': '0x5801d8344ae17610babec57ed3433b54f6050ca69db1d504456826d3bad2e859', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x075852ca2ad33943d2428aef6745883b8cb3c9a2', 'value': 0.03334624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x32e1e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0xc6ce67bca269f64e3900349708d5d531f374e0bd43ee0b315691cfd1328e4ca6:log:126', 'hash': '0xc6ce67bca269f64e3900349708d5d531f374e0bd43ee0b315691cfd1328e4ca6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0776bb9fd604f8a2566b0505ead2c5626934ca07', 'value': 0.00758181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b91a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0x73b58438de28709f2f3e2fa78278a8b3bbd6e49c31ddc50f095ceae7b6d75f44:log:127', 'hash': '0x73b58438de28709f2f3e2fa78278a8b3bbd6e49c31ddc50f095ceae7b6d75f44', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0796c6e1b6a63f0848549bde5c179c7441e41c2a', 'value': 0.00041168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b1', 'uniqueId': '0x698d0b7c22c166927fa7a863967336e3646589225ec4b719d0636ebdbccbc93e:log:128', 'hash': '0x698d0b7c22c166927fa7a863967336e3646589225ec4b719d0636ebdbccbc93e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x07e0880e89e0dbaf096dbb703c0ed7461e6595b9', 'value': 0.00044598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xae36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:48:57.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xc7a412b2dde945831d4d4b508ec1a1be4119de475ff203411e387b0013b888f3:log:107', 'hash': '0xc7a412b2dde945831d4d4b508ec1a1be4119de475ff203411e387b0013b888f3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x07ef5af38213b58e79091bbaeee35a1a11de2d07', 'value': 0.00699859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aadd3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x42f7b78d8f6fb31c0c8deb241c13a96d22821c6510b4e2f62a5aff47cb26006f:log:108', 'hash': '0x42f7b78d8f6fb31c0c8deb241c13a96d22821c6510b4e2f62a5aff47cb26006f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x08114dd8ce26e7ad16faaf1101cc4a15d8f8afb7', 'value': 0.0005146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc904', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x2859287c5ed4446b0e24653278bb164e76b2d7aa482dd0caa7a0023703d73137:log:109', 'hash': '0x2859287c5ed4446b0e24653278bb164e76b2d7aa482dd0caa7a0023703d73137', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x08474b14e3e41be4fef57d25853f8f6f7e7a3179', 'value': 0.00159183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x026dcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x4537c3c8ddfdae3577b9dab7737893692b9a3ea35f24bc8fe0be1c9b20337698:log:111', 'hash': '0x4537c3c8ddfdae3577b9dab7737893692b9a3ea35f24bc8fe0be1c9b20337698', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x27002683b93dd81b51f11c30d708a99ececfc8de', 'value': 0.01011911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f70c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xe88d2065d906ab116fc3b65e1d1d9d5e146c5003467208527a8e6432597f8953:log:112', 'hash': '0xe88d2065d906ab116fc3b65e1d1d9d5e146c5003467208527a8e6432597f8953', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x27056d262c32383bd565e4f8872f9910863128e9', 'value': 0.00442063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06becf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xa09cef43e0835a2d3f0b7583ea8d27455255fe134f367414147f9994bd54934b:log:113', 'hash': '0xa09cef43e0835a2d3f0b7583ea8d27455255fe134f367414147f9994bd54934b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2723b2e9c5b8f331e6a75d70acfcd523512a133e', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x4da30d1ea1d2ff3977edabcc5e111f5757eece103305f4fbfb651bc5dc9f028e:log:114', 'hash': '0x4da30d1ea1d2ff3977edabcc5e111f5757eece103305f4fbfb651bc5dc9f028e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2754b81741a35b41f295a4efdb75df9f1559a9ea', 'value': 0.04289401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x417379', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x93e9892f7c3f67d244f055db735650c36814838511b521b1a9be9a985b1ccdee:log:115', 'hash': '0x93e9892f7c3f67d244f055db735650c36814838511b521b1a9be9a985b1ccdee', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x277f00050cf73582d3dd43a391abd8fa7e5d2d3d', 'value': 0.00269382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x041c46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xc7129fe825bd01489895e837b1e647806db86b61956750cffc2cdf1d5d36e2b6:log:116', 'hash': '0xc7129fe825bd01489895e837b1e647806db86b61956750cffc2cdf1d5d36e2b6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x27c12bf2b154b4bcfc5094aa3c2e3c1e00cabe58', 'value': 0.09563085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x91ebcd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0x31d99f3a13bc157459f749a09b45fc0670c8a7e214f68dc733fa7aeaaff269df:log:117', 'hash': '0x31d99f3a13bc157459f749a09b45fc0670c8a7e214f68dc733fa7aeaaff269df', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x280dfa6e7126e741f3035cc9d67a6af8629c6e75', 'value': 0.00030391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x76b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b6', 'uniqueId': '0xb54b383cc4f0b822d81b9c25c0e24faa3f9bf5b3d69f2014e6e076c7412187a2:log:118', 'hash': '0xb54b383cc4f0b822d81b9c25c0e24faa3f9bf5b3d69f2014e6e076c7412187a2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2872b40f3a5d71ce3a5e990a374fbb59f57a0395', 'value': 0.00034536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x86e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:49:49.000Z'}}, {'blockNum': '0x7f02b9', 'uniqueId': '0x9bd3123491dfaffd0326066b07463323eeff0b3958ae81ada93f6d0f2c419b26:log:126', 'hash': '0x9bd3123491dfaffd0326066b07463323eeff0b3958ae81ada93f6d0f2c419b26', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000008291242dce189a441885964f8224eb63ad1', 'value': 0.02770715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a471b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:50:33.000Z'}}, {'blockNum': '0x7f02b9', 'uniqueId': '0xe21aeeb64e301e9318a4d0a7a9bffc1591194ddbba03b40e8e0a30f928b9eb4e:log:127', 'hash': '0xe21aeeb64e301e9318a4d0a7a9bffc1591194ddbba03b40e8e0a30f928b9eb4e', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000df4cbfe859c05923d57aa0a4bcdec5309938c', 'value': 0.02820242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b0892', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:50:33.000Z'}}, {'blockNum': '0x7f02b9', 'uniqueId': '0xd7977dc27158900227b685d5425b6991f28749bab34ba47b21f7922cd0f0ee4d:log:128', 'hash': '0xd7977dc27158900227b685d5425b6991f28749bab34ba47b21f7922cd0f0ee4d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x08d57bc82b7d09e5b8a8129ed3275590b8dd4974', 'value': 0.00651829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09f235', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:50:33.000Z'}}, {'blockNum': '0x7f02b9', 'uniqueId': '0x75a3d782efbd5e1cd4040f7465745096cfa898326e05b59b641a055c9219b30b:log:129', 'hash': '0x75a3d782efbd5e1cd4040f7465745096cfa898326e05b59b641a055c9219b30b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x090650c4af0067e7f4894a65f6f4285b10852044', 'value': 0.00354046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0566fe', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:50:33.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0x4776618c40b049e4c92073752580de10ecb2a4f02882a908fbcd36d25c7be340:log:132', 'hash': '0x4776618c40b049e4c92073752580de10ecb2a4f02882a908fbcd36d25c7be340', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x28b701c08f85b7d7ee036a71523c3a0687547b8c', 'value': 0.00321187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e6a3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0x0ab142ec4c641cd3fd1319d43e45ade300a185dac5b294c3cd02b9316b428897:log:133', 'hash': '0x0ab142ec4c641cd3fd1319d43e45ade300a185dac5b294c3cd02b9316b428897', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x28b9c072fad52fc7948c3ac700c6dcc0f2eef2aa', 'value': 0.02590218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27860a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0xc93550380cbb57800055966ae8756fe94c99ad62fc37803a32fa1856b091a9d5:log:134', 'hash': '0xc93550380cbb57800055966ae8756fe94c99ad62fc37803a32fa1856b091a9d5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2911474482845c0d9882aa75e7587b3872976398', 'value': 0.02838879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b515f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0xc2b85b671eb1d96c025efb3c3d6dc4fe1e99c0cb276c59aecb9c7e933a433dc2:log:135', 'hash': '0xc2b85b671eb1d96c025efb3c3d6dc4fe1e99c0cb276c59aecb9c7e933a433dc2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x29351f71b3ff6ac63cd65117b79c1db39a32a4bb', 'value': 0.00221031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x035f67', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0x486f417c87254a69e447c148881ac5f1e9541cf8b9016fffdd13c12c04e38311:log:136', 'hash': '0x486f417c87254a69e447c148881ac5f1e9541cf8b9016fffdd13c12c04e38311', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x296c6031252169b5b9f73cd86a41b2b4f67ca440', 'value': 0.18494157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011a32cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02ba', 'uniqueId': '0xf90e52bd5c6f3f3ba9aa8c5216dce0305d6a9fa3ed1242a850fead16b8bdd05b:log:137', 'hash': '0xf90e52bd5c6f3f3ba9aa8c5216dce0305d6a9fa3ed1242a850fead16b8bdd05b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x29c504e3c6bfb8bfa095c476f8afc847da98dd25', 'value': 0.08143645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c431d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:28.000Z'}}, {'blockNum': '0x7f02bc', 'uniqueId': '0xf5482513e28f041bebeb5d2ecb76abd0776f75b28bed26d1a24a9c3701571c48:log:61', 'hash': '0xf5482513e28f041bebeb5d2ecb76abd0776f75b28bed26d1a24a9c3701571c48', 'from': '0x888cb5b838fd021a5470cb9ade072a2bd76bb4d4', 'to': '0x9194eea248b97a2b7ff271d654b9112ecd39ad88', 'value': 429.23489065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09fe707729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:51:36.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x1e384b2a182ae1f2dd1530719d6efa5a7509d94da588eb4310d6891411140710:log:103', 'hash': '0x1e384b2a182ae1f2dd1530719d6efa5a7509d94da588eb4310d6891411140710', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x094c71f535f915dcee43306b26af68e1af361e35', 'value': 5.489e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1571', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x343a691aa5e37d1991a3f6adea6900bf04cd860cc44dfc504b42f78a155a5de7:log:104', 'hash': '0x343a691aa5e37d1991a3f6adea6900bf04cd860cc44dfc504b42f78a155a5de7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09540c0a4c21455ba2e1b7407154cc3cdf3977ed', 'value': 0.00773962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bcf4a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x9ca09cc5cdfd670f0b05a0b73f25e9ce01b1dec8d1b73a16006924667beb4a4b:log:105', 'hash': '0x9ca09cc5cdfd670f0b05a0b73f25e9ce01b1dec8d1b73a16006924667beb4a4b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0985224a811e65c235dbf4a2c2117712aabe4e39', 'value': 0.01447748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x161744', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x66d6f1595fd62037cbb22e0e999a3a14f31a4ea22edd8f8773df72ac0c42f150:log:106', 'hash': '0x66d6f1595fd62037cbb22e0e999a3a14f31a4ea22edd8f8773df72ac0c42f150', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09903a26db6e4d3a39fe93976f7a2565df050264', 'value': 0.00946868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e72b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x9e7c65995ce085cb0869f321f31eac798bd800b719c0d413bbf8e41e10a8545b:log:107', 'hash': '0x9e7c65995ce085cb0869f321f31eac798bd800b719c0d413bbf8e41e10a8545b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0998df2fa42763493346ccdfe081ef935028e24c', 'value': 0.01725634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a54c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xfab2543f58079353eb9f77f98ff31ad3c7228267dae9e55e9d2e05951dfd2964:log:108', 'hash': '0xfab2543f58079353eb9f77f98ff31ad3c7228267dae9e55e9d2e05951dfd2964', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09e57654ba3aa0e0e414b4058be3d95fafe5338a', 'value': 0.00974314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0eddea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x873115587f81595a58e76a9cc2a335d9dfd2a4f1bab96c63579e767d683cbd4e:log:109', 'hash': '0x873115587f81595a58e76a9cc2a335d9dfd2a4f1bab96c63579e767d683cbd4e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09acd7359fef9c560671abf2db413d28ac97e007', 'value': 0.00488529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x077451', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xa452596f50d045831f6fe46b840b085a599a21e436ecbb36b5235070e23d4d8e:log:110', 'hash': '0xa452596f50d045831f6fe46b840b085a599a21e436ecbb36b5235070e23d4d8e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09d7b99caf2070947ee3e14bb5495c21f570753f', 'value': 0.00200351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x030e9f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x5b50677bb1ab269c75a3c13fd7888590844aeabf3b5f2035e9b081fa2544751b:log:111', 'hash': '0x5b50677bb1ab269c75a3c13fd7888590844aeabf3b5f2035e9b081fa2544751b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09e3ca09031b2f2539b08fc0c38ee145629086ff', 'value': 0.01303659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13e46b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x5326746f36c325e0065b3340b8608a101a2dffa7db5a4e4699e9d9da9cc6ee58:log:112', 'hash': '0x5326746f36c325e0065b3340b8608a101a2dffa7db5a4e4699e9d9da9cc6ee58', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x09e686fc83eb77085dfe7f7780af070db216d028', 'value': 0.03029294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e392e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xb66d0986a37c15658c7bc239c34bab4df6460c36f5a1d944d0fd4cd935a4b97d:log:113', 'hash': '0xb66d0986a37c15658c7bc239c34bab4df6460c36f5a1d944d0fd4cd935a4b97d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0a4dc4c36d31581d8f00b2a387502d5cfa7ed418', 'value': 0.00343068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x053c1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x6919f7362178a56fb0bd7411338abf380b26fb0b27b444946dc837e79f418bab:log:114', 'hash': '0x6919f7362178a56fb0bd7411338abf380b26fb0b27b444946dc837e79f418bab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0ac0dcdb561bda27bf53a65c252b2a6725badc77', 'value': 0.10689325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa31b2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xb75238dcc738265a3dfdf7241a97c478f8dcf092e5c561bbd0038505e8ea5e20:log:115', 'hash': '0xb75238dcc738265a3dfdf7241a97c478f8dcf092e5c561bbd0038505e8ea5e20', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0b6504349a12b8c11ddbc63a000040091ee816aa', 'value': 0.03217981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x311a3d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x07395e030d4a33975a8c275be451b1b86e6aee903d764887c3d4441a717fe5aa:log:116', 'hash': '0x07395e030d4a33975a8c275be451b1b86e6aee903d764887c3d4441a717fe5aa', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0ca13dbd2402afeb272bb7d53fc16f0ef99f2af1', 'value': 0.00279943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x044587', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x76e1b44b0dfab5d4e904a116a71be6b5ee5d51bfe0359e6608178cbc2e2dd784:log:117', 'hash': '0x76e1b44b0dfab5d4e904a116a71be6b5ee5d51bfe0359e6608178cbc2e2dd784', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0d397b54102f0817a7ca4f11bd6f7742709091ca', 'value': 0.0036228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x058728', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x60866a572a88f71ec0673581b5dc384a48f7a4dede25276fbcec1f7578015b67:log:118', 'hash': '0x60866a572a88f71ec0673581b5dc384a48f7a4dede25276fbcec1f7578015b67', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0d94d655de331439da3ce40446815073ee07928a', 'value': 0.00833656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cb878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x2edb57f7890f3e6a4103015fc91b4099fa033b0a10f8b6ff0d15aad428a4b692:log:119', 'hash': '0x2edb57f7890f3e6a4103015fc91b4099fa033b0a10f8b6ff0d15aad428a4b692', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e28ac7ee1aab7c3cabe7d7d06ea9a999c8588e8', 'value': 2.744e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ab8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x9393fdd959bc8e53f446bf921f499b78c0dd97b9d8842add386bcf1a73dcb8c1:log:120', 'hash': '0x9393fdd959bc8e53f446bf921f499b78c0dd97b9d8842add386bcf1a73dcb8c1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e670e84b6d11416a19602daa77d648fefd42aaa', 'value': 0.02569582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27356e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xa01eb2bea010302b3263921e86e67395beae389c2a4d0a9c5d4128398cc64eb6:log:121', 'hash': '0xa01eb2bea010302b3263921e86e67395beae389c2a4d0a9c5d4128398cc64eb6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e7e40d26ee8c46c91be14fa31676640c80e0cd3', 'value': 0.02159958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20f556', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x438e9ff77f39630aa907da2115229228db6efedad6c2eb89776ae4bfe5ae0170:log:122', 'hash': '0x438e9ff77f39630aa907da2115229228db6efedad6c2eb89776ae4bfe5ae0170', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0ed735bbddc15660ec332a71e204a62f0dd9bc79', 'value': 0.07132392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6cd4e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x8008c74b5a34ff3095416f4aaac299649dff33f8af642c29b86b9f7d9b118d53:log:123', 'hash': '0x8008c74b5a34ff3095416f4aaac299649dff33f8af642c29b86b9f7d9b118d53', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0eeef2b2da87d0ac554ae37c126e62cfc9de9633', 'value': 0.00061752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf138', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x6037d0edb9a4b96d0c8debe06fc2f4f580c03879dbe55c0248672a90e852d2ad:log:124', 'hash': '0x6037d0edb9a4b96d0c8debe06fc2f4f580c03879dbe55c0248672a90e852d2ad', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0f240a413d1660646da73c4312f4ee35497818d4', 'value': 0.01365412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14d5a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xb252985b5c7017a148ac63512d0b72c66d9cb9f791eb86d565c267e3496e4481:log:125', 'hash': '0xb252985b5c7017a148ac63512d0b72c66d9cb9f791eb86d565c267e3496e4481', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0f3f4ae1701a1922f42c0c604af63c40a4debcb5', 'value': 0.00044598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xae36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xfe3eecfd950821af5b03fd4fdee22746b2c961989a15880d0de6bd87755de6d2:log:126', 'hash': '0xfe3eecfd950821af5b03fd4fdee22746b2c961989a15880d0de6bd87755de6d2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0fa4a88d69a208da32daf11b14c616fe0f62f98a', 'value': 0.01553413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17b405', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x969758a89cde70a33e27f34d7885107e04ef02d5561305a0074c2401d5889e1d:log:127', 'hash': '0x969758a89cde70a33e27f34d7885107e04ef02d5561305a0074c2401d5889e1d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0a3ab13cb3c25a3cbf69d4d138c55ee77bdb053b', 'value': 0.00562632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0895c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x0709876426b022b1f53784716de5dea12c549e6d2c8d417fe912b483fec92e21:log:128', 'hash': '0x0709876426b022b1f53784716de5dea12c549e6d2c8d417fe912b483fec92e21', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0a63113dc359dda6cf652cc2ff7437ecefdcb521', 'value': 0.03811489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a28a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x1bca364544cab2ab3abd1f40b54dbff382ee2535175b57a7a2a54cd8f3119f22:log:129', 'hash': '0x1bca364544cab2ab3abd1f40b54dbff382ee2535175b57a7a2a54cd8f3119f22', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0bb52f9da12d67cfe84f33e11966f930c95e0eb5', 'value': 0.00043912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x9f41c8aaea067024d7ca42aec4328181ad3b51b093707fa6e47727dc081010ba:log:130', 'hash': '0x9f41c8aaea067024d7ca42aec4328181ad3b51b093707fa6e47727dc081010ba', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0bd68cb43b188be181ebfd05b87374874858212d', 'value': 0.02130454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x208216', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x303a4cc158e02f269b16e9ccb12ba386227f84d6a4a39329132c63424fbc5f57:log:131', 'hash': '0x303a4cc158e02f269b16e9ccb12ba386227f84d6a4a39329132c63424fbc5f57', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0c4e79f15dfb621ad650977444d2e9486eab2464', 'value': 0.00351302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x055c46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xcb5e5919956c1625414027f96474b6f055a12e79fa67fb8706f0a391898a42eb:log:132', 'hash': '0xcb5e5919956c1625414027f96474b6f055a12e79fa67fb8706f0a391898a42eb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0cd7f81ff5b50841247e3ed224d6c50449bbeb1f', 'value': 0.00257301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ed15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x506b6a438f2b77d0b843684d4a58d2c87465b02b94771d85143ed5ef4cb3f690:log:133', 'hash': '0x506b6a438f2b77d0b843684d4a58d2c87465b02b94771d85143ed5ef4cb3f690', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0d0fbaa8fb07ce1ef4b66362f67392aea2f7f50d', 'value': 0.00850809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cfb79', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xfae1205787128f36952bb9f2491cf6ec3d999067204287201f13db3f77f5b0ab:log:134', 'hash': '0xfae1205787128f36952bb9f2491cf6ec3d999067204287201f13db3f77f5b0ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0d1e5bddb7be97189776024cb733b4a8d24ce1dd', 'value': 0.00758181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b91a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xa7f0554c1df3bbd16208f4ec6c1e44ebdd4c3f192485ea69fdd817574b1b4247:log:135', 'hash': '0xa7f0554c1df3bbd16208f4ec6c1e44ebdd4c3f192485ea69fdd817574b1b4247', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e15596b078f7eed03d3eac5ce780f2157a7e4ff', 'value': 0.00430893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06932d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x839fe1c0b19c03b52fb3d4d91a2261fc457f719dc2490ac66d5264b02e6d1b00:log:136', 'hash': '0x839fe1c0b19c03b52fb3d4d91a2261fc457f719dc2490ac66d5264b02e6d1b00', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0e8713014daa08b2905e2152accdd35050a3cea6', 'value': 0.00680647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a62c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x46e2d56f15fc173f2f7cc361095e933fe1ad329d5d5e998caea2f10aaee63327:log:137', 'hash': '0x46e2d56f15fc173f2f7cc361095e933fe1ad329d5d5e998caea2f10aaee63327', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0ee1f94f918f3ae97ce0489cee9da8546981e0b6', 'value': 0.01241907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12f333', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xdb846b29d14a5183ec4ac9c9914badfb05188991f96663f2e5aae807c94755b7:log:138', 'hash': '0xdb846b29d14a5183ec4ac9c9914badfb05188991f96663f2e5aae807c94755b7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0f7936d68b2a2a13ab46b67feda2ff2d8d799ac0', 'value': 0.00548909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08602d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x40f393efc4cd19c3798c2f82cc59f54fc58385798b829dcbb47ed49641a7a27c:log:139', 'hash': '0x40f393efc4cd19c3798c2f82cc59f54fc58385798b829dcbb47ed49641a7a27c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x0fbcf4bedafdbf47458c5fe896c53c5aa7947b8d', 'value': 0.00010978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ae2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xc494a51fb6289d9950d865b56a1121c4821f719567080d5ed9de72b9dfa09181:log:140', 'hash': '0xc494a51fb6289d9950d865b56a1121c4821f719567080d5ed9de72b9dfa09181', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1024a4498390748d8c3a6797f7413a11aa2b87cd', 'value': 0.00507741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07bf5d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x0c7a1f3f552f0f716688299343396f002493a0fd0a04854cb6be6208a547f09b:log:141', 'hash': '0x0c7a1f3f552f0f716688299343396f002493a0fd0a04854cb6be6208a547f09b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x103e60e629aabb1a01e5bae0a88297f86f5d0630', 'value': 0.0210644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x202448', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xdae91bf90bdb3a39966a9fd8c65d1f742ce6f677d3342141f27123d2be418121:log:142', 'hash': '0xdae91bf90bdb3a39966a9fd8c65d1f742ce6f677d3342141f27123d2be418121', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x10911f3ec784dee1db1a9f7da90b7d8b935e58a0', 'value': 0.03135645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2fd89d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xa138d15e3ffbadc5f47a01bbb4cd16e0268f284e17cbbda4aba5b032b2429c68:log:143', 'hash': '0xa138d15e3ffbadc5f47a01bbb4cd16e0268f284e17cbbda4aba5b032b2429c68', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x10d96bc43dada41d6e6418618db4d6f703450485', 'value': 0.03712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x38a400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x959424ba1048f3e91de2ed4951c9d6c1ec7fc1b28730601ea5d5e064af3930c5:log:144', 'hash': '0x959424ba1048f3e91de2ed4951c9d6c1ec7fc1b28730601ea5d5e064af3930c5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x10fb1b0fdbd357a06998fbb6cfa138742a97d998', 'value': 0.00974314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0eddea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xd9e839baf48e90a1abeb3baf5ef2b81d2dc626e795b3122be495eb91eecfa2aa:log:145', 'hash': '0xd9e839baf48e90a1abeb3baf5ef2b81d2dc626e795b3122be495eb91eecfa2aa', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x10f71bebc38ebef5e4b90083acf888950ff08a99', 'value': 0.00345812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0546d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x76f5639ab16f1fba3ae2fa6f828dea7534cbba1c4eb24d15cc5c06d4539ed113:log:146', 'hash': '0x76f5639ab16f1fba3ae2fa6f828dea7534cbba1c4eb24d15cc5c06d4539ed113', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11b850b928b1bde3a53c268f469086d570dcfac7', 'value': 0.00497449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x079729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x1c0c48c3e4ef46e2c7f3c4a3cc22089d879ca09ad7cfc94eec9013f6c4285801:log:147', 'hash': '0x1c0c48c3e4ef46e2c7f3c4a3cc22089d879ca09ad7cfc94eec9013f6c4285801', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11fcc75af3cb8a326b0620839978794c03c08170', 'value': 0.03036155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e53fb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x01a8cf1f3787e18f772696b644f8af7e642602bf0db3078ccf5bed9789b9a196:log:148', 'hash': '0x01a8cf1f3787e18f772696b644f8af7e642602bf0db3078ccf5bed9789b9a196', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11d3cffcc3d0426c9bc9ea7fa7ef280401b44b57', 'value': 0.0070329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0abb3a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0xc471159de3f30dfea2598beba2dcef53e83ba5fe36fa2b0d785acf15a9f661dc:log:149', 'hash': '0xc471159de3f30dfea2598beba2dcef53e83ba5fe36fa2b0d785acf15a9f661dc', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0010a5d66463a74ac47cdc7facad3a1808944f1b', 'value': 0.00015133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x747f68e491abb99d671d1bfbde0751a9a70aac6400e9ce024ba3881545bd278b:log:150', 'hash': '0x747f68e491abb99d671d1bfbde0751a9a70aac6400e9ce024ba3881545bd278b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x29ab00ccf1aedb576773d8846cd9cf8e14b28fa0', 'value': 0.03082704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f09d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x83465c388d09f82087750c17989592df11f70a9d4532a435e81685417674712b:log:151', 'hash': '0x83465c388d09f82087750c17989592df11f70a9d4532a435e81685417674712b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a1a9d6373eb2864270d337f3c35f40ead3f0cad', 'value': 8.288e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2060', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02be', 'uniqueId': '0x93209d0cd8e10c64b1c57912ace2453cef60ea124043f378c635a17633dd7f17:log:152', 'hash': '0x93209d0cd8e10c64b1c57912ace2453cef60ea124043f378c635a17633dd7f17', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a41f97b65d9dfce0165bfb3604e506361325c4b', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:28.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0xc31ff7a41b749b31960cc10ef3177223912e1dfc6875fcdb861fbb6ee4602163:log:24', 'hash': '0xc31ff7a41b749b31960cc10ef3177223912e1dfc6875fcdb861fbb6ee4602163', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x001417f9a416c7f0ce0c0e3d75c9a8a9059470b1', 'value': 6.19e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x182e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x4d302111c36ead8c7131ad5761494d0461a0b863bffdd5699a05f0270d3cf69c:log:25', 'hash': '0x4d302111c36ead8c7131ad5761494d0461a0b863bffdd5699a05f0270d3cf69c', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00164b438c138948df8f911b7a49fe34e6c6a19c', 'value': 0.0001582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3dcc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x6c18739b49a98c5b3c76488d05b8e31ddf6157dcd09eee8f4731a18127de83fb:log:26', 'hash': '0x6c18739b49a98c5b3c76488d05b8e31ddf6157dcd09eee8f4731a18127de83fb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a5a65ae17cf031ab6838ecb40b91a82c413947d', 'value': 0.00148505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x024419', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x32ee5023101f31933cd2dfccae19404924c8d52ac17218a85ec05c1e1c26e9d2:log:27', 'hash': '0x32ee5023101f31933cd2dfccae19404924c8d52ac17218a85ec05c1e1c26e9d2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a7f0b143121bd314389a9f8a481ef38f01f49b8', 'value': 0.00189949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e5fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x2ab4d674fd6d318489281cad0114dc35087ed0e99964788ec073888f2a673144:log:28', 'hash': '0x2ab4d674fd6d318489281cad0114dc35087ed0e99964788ec073888f2a673144', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11d484fab9c282d3854e1f85b8af62d7b686d795', 'value': 0.08307058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7ec172', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c1', 'uniqueId': '0x0ca21cff744591c970bdeeb02e615ea6aed791b64feea2ed7c74b914553d841d:log:29', 'hash': '0x0ca21cff744591c970bdeeb02e615ea6aed791b64feea2ed7c74b914553d841d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x11f44bb3b78f1565f70b743dd9c5a9c97bd608a4', 'value': 0.01761999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ae2cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:52:59.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0xb7852ef356de32e649b71475ef1d9aab24dcf90a7a10f2c81c1137b79389202f:log:114', 'hash': '0xb7852ef356de32e649b71475ef1d9aab24dcf90a7a10f2c81c1137b79389202f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x120b3d8bc249a2c82d890c228b7cfd5acfc423da', 'value': 0.01612421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x189a85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0xb5af3e18f9b52d93e1f2e1517ae469a832b603a08129e94d596497d566c99db2:log:115', 'hash': '0xb5af3e18f9b52d93e1f2e1517ae469a832b603a08129e94d596497d566c99db2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x126f18515451e1500474dcb80658ab52f5678d7d', 'value': 0.02267682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x229a22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0x8c3b324c3a2d88318cea10345b0f256ad7288b2df60f6e8deff5066325a7843b:log:116', 'hash': '0x8c3b324c3a2d88318cea10345b0f256ad7288b2df60f6e8deff5066325a7843b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x129caf775d8a4723fb368581107819f88d6c289e', 'value': 0.003019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x049b4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0xde94e215094b72a478fe5554c1a0c8cd6c7b531be2ed02022a651c132bfbe1b6:log:117', 'hash': '0xde94e215094b72a478fe5554c1a0c8cd6c7b531be2ed02022a651c132bfbe1b6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x12f12858c9b867d69968d24f4d7770e64e64aad7', 'value': 0.01543807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x178e7f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c3', 'uniqueId': '0xcf42f0de7434dd62687e1be53d532c9c708034b168a7b809bba3ef130674e5cf:log:118', 'hash': '0xcf42f0de7434dd62687e1be53d532c9c708034b168a7b809bba3ef130674e5cf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2ac2e618d183a8f49ba12cf973e8482524cc21a8', 'value': 0.01802791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b8227', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:23.000Z'}}, {'blockNum': '0x7f02c4', 'uniqueId': '0x4866a8730fea95b1b6386828a0ad7c9e666206a03001ad1ab426a3ab3671cfcb:log:63', 'hash': '0x4866a8730fea95b1b6386828a0ad7c9e666206a03001ad1ab426a3ab3671cfcb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x130de75bc4c5e7d6bac1d9ee05f81184d3941011', 'value': 0.00421974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x067056', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:30.000Z'}}, {'blockNum': '0x7f02c7', 'uniqueId': '0x9fe9d95fb7b340e36df76ffb36eb1535c4ca9fb0eb88ffba89060b57c2066271:log:65', 'hash': '0x9fe9d95fb7b340e36df76ffb36eb1535c4ca9fb0eb88ffba89060b57c2066271', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2c1b57bf0d868cc8e2807dab7e364f74b32b6797', 'value': 0.03581408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x36a5e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:54.000Z'}}, {'blockNum': '0x7f02c7', 'uniqueId': '0x9a09858a19048e0f0cccb27f1aece0a0de02ec01644b4d728a0c2dd276281f34:log:66', 'hash': '0x9a09858a19048e0f0cccb27f1aece0a0de02ec01644b4d728a0c2dd276281f34', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2cc0624ce82075557e9f5f4e3fd4c8d0dc9ae054', 'value': 0.02079081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fb969', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:54.000Z'}}, {'blockNum': '0x7f02c7', 'uniqueId': '0x7f6e21e98b07dfffdaf687e2f121e2262daa9696be05fc20f50f112039e82ca7:log:67', 'hash': '0x7f6e21e98b07dfffdaf687e2f121e2262daa9696be05fc20f50f112039e82ca7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2de7d9f9e119b9d7b4a855af83a39d671c4f0459', 'value': 0.01163871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11c25f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:54.000Z'}}, {'blockNum': '0x7f02c7', 'uniqueId': '0xee31e0298c4feed1a49dc318b4b447a2ab4d0eae2477ad3c9ac68a458c00515d:log:68', 'hash': '0xee31e0298c4feed1a49dc318b4b447a2ab4d0eae2477ad3c9ac68a458c00515d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2dd407f2bf94ebdf97e9281de7704348f01b0a61', 'value': 0.02552228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26f1a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:53:54.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x9259a8f366df616da3837707acc4b4b744f0ef1e7839b48faff4c4bb557a81b3:log:61', 'hash': '0x9259a8f366df616da3837707acc4b4b744f0ef1e7839b48faff4c4bb557a81b3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1324aad89aa0744eb398d25dbb1409e5e8a2a12c', 'value': 0.02991556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2da5c4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x29735a9ad6daebd3cd706e549099d70322619e1c47a66339839e9c3c899c0d56:log:62', 'hash': '0x29735a9ad6daebd3cd706e549099d70322619e1c47a66339839e9c3c899c0d56', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1369247d0fb4e5778d7929027d32e879076a75e4', 'value': 0.00167417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028df9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x7a1d228103676dd4e122fc2984bab617b33b8ac964b1f51b5c483246527c0bbc:log:63', 'hash': '0x7a1d228103676dd4e122fc2984bab617b33b8ac964b1f51b5c483246527c0bbc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x13766384bf34e8e3810c345d70c435177e54598b', 'value': 0.00816502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c7576', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x272c0d2a08e462db511f5576e2941dfd32e3831228a0ffa99e43f6c7d22381bf:log:64', 'hash': '0x272c0d2a08e462db511f5576e2941dfd32e3831228a0ffa99e43f6c7d22381bf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x13a58631b894e2f059d2146c2eae28898572b7d4', 'value': 0.00209271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033177', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02c9', 'uniqueId': '0x8ddebb3c803887505cf2abbd888d095025d323defbff65ae150d1db3b8ab4572:log:65', 'hash': '0x8ddebb3c803887505cf2abbd888d095025d323defbff65ae150d1db3b8ab4572', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e22bc9b96ab3f77c8d6e33b5085c47b9836ade3', 'value': 0.00811601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6251', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:54:22.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xd422d4ec57939878ae3bd617a4a8a5b34f6d55ee519fdd50d645992198c2aed6:log:106', 'hash': '0xd422d4ec57939878ae3bd617a4a8a5b34f6d55ee519fdd50d645992198c2aed6', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0016ba692bded8cdcf495ab2b3d90ae30bee8a5a', 'value': 0.01150796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x118f4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x933a44a1ce6bed788b0788575a455c8f370ac167b9edbaf84bc7aba47b11aad8:log:107', 'hash': '0x933a44a1ce6bed788b0788575a455c8f370ac167b9edbaf84bc7aba47b11aad8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00170339967b35f783729cdf0524234bb746558f', 'value': 2.063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x7b0688df98a1f005803fd5893ad406640dec541e0e6820f3b7b050c6744104df:log:108', 'hash': '0x7b0688df98a1f005803fd5893ad406640dec541e0e6820f3b7b050c6744104df', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0017ceed8eb8fc7977c55dce6b0dc3ffe8f4d184', 'value': 0.83923525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05009245', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x2def380d0091ee874d5f39de274d3e937dcf3d50caf9e6dc7dd951968e3d86b8:log:109', 'hash': '0x2def380d0091ee874d5f39de274d3e937dcf3d50caf9e6dc7dd951968e3d86b8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x001ab2297061f18e1fba29cd0e84907ee446a1a0', 'value': 4.815e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x3185e3a64bae81ac2f9374d57c74cef420bea5e1dd504a1bff7c5fd8ed234dab:log:110', 'hash': '0x3185e3a64bae81ac2f9374d57c74cef420bea5e1dd504a1bff7c5fd8ed234dab', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000e3b43b51561db662aba6705d83cc466cac344', 'value': 0.00557857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x088321', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x5d3d4d61734512310fdd9df46d347df1396312df6557611d48345fd0ed5fcb88:log:111', 'hash': '0x5d3d4d61734512310fdd9df46d347df1396312df6557611d48345fd0ed5fcb88', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000ef887b298505bc3d17c419c63bdff22e88d61', 'value': 0.02499009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2621c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x91e4c2b403057a07d2e4f01c75c0fa257c1fe28fc0378f31b4daadc4b71bdca8:log:112', 'hash': '0x91e4c2b403057a07d2e4f01c75c0fa257c1fe28fc0378f31b4daadc4b71bdca8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x000febfac52e6d5411c76cd04f0ad24004716e1b', 'value': 0.00017196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x432c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xa8fcc95e8bbf80deed36f64a151b567caad77dcb15cc7d5c00ea2170365f122b:log:113', 'hash': '0xa8fcc95e8bbf80deed36f64a151b567caad77dcb15cc7d5c00ea2170365f122b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e23a041ae4a7d7c72625bed2ac74d0fabc66b8e', 'value': 0.00041443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa1e3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x8a44f5fda959321afd6fdd0fa5c7b2f69e09439b6b5f57cb0889b65eb033bbf9:log:114', 'hash': '0x8a44f5fda959321afd6fdd0fa5c7b2f69e09439b6b5f57cb0889b65eb033bbf9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f071599ea475de9887aa27d09dd87b8d897d83b', 'value': 0.03843883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3aa72b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xac475b643f41036420ea83edb17d14d5691fafa763d7c35a287b46ee56a8b0c7:log:115', 'hash': '0xac475b643f41036420ea83edb17d14d5691fafa763d7c35a287b46ee56a8b0c7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f0ec33bb07c71cba29d3795f5e209232477d132', 'value': 0.1084438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa578dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x575d83f26422580fe76d1baaf393e1184735391ebaf1be9a9b18a9e2a4975513:log:116', 'hash': '0x575d83f26422580fe76d1baaf393e1184735391ebaf1be9a9b18a9e2a4975513', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f6102a60813af809c8da5f46ceb1d022dd718f2', 'value': 0.00903468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0dc92c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x3b4c222804d6b87a97f1226a7425bf81a74dfdfc3188aa8e3ecab5678a4392c9:log:117', 'hash': '0x3b4c222804d6b87a97f1226a7425bf81a74dfdfc3188aa8e3ecab5678a4392c9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2a2df30228a6da366560ce11759a10be57d1623c', 'value': 0.00055257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd7d9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xf4c4625368ec054737dd629e433c8007f747a5e771a50b515206e6049172d0a6:log:118', 'hash': '0xf4c4625368ec054737dd629e433c8007f747a5e771a50b515206e6049172d0a6', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2b9caf5ee04938e39c8d66cd8d780efc2dccb473', 'value': 0.03453624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x34b2b8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xac1a94e170fbe7bec63472f11c8c9c282310515e465b578c7a0381ee1a617f46:log:119', 'hash': '0xac1a94e170fbe7bec63472f11c8c9c282310515e465b578c7a0381ee1a617f46', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2c12abe41a0a1f53bf91636a1223b02b5ec66793', 'value': 0.04558093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x458d0d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x78e18e5c0c9965eed78daf9d5704507fc08585af7be830401581f719f9dbabcb:log:120', 'hash': '0x78e18e5c0c9965eed78daf9d5704507fc08585af7be830401581f719f9dbabcb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2c5eccdcf6d91bc773608f61584b0cd1c05a880f', 'value': 0.00088412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01595c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xaa9e3a15b1378a036120eb1d586ad26e1fc41b0989e3f0db592c8afb105d1f19:log:121', 'hash': '0xaa9e3a15b1378a036120eb1d586ad26e1fc41b0989e3f0db592c8afb105d1f19', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2ca4e5688b0c13e9516200563fdc1245455dde94', 'value': 0.0946293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x906492', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x52463913446f28a0990e67f2fc3f7500845c5b383ec9473251e1a4599ae9ad54:log:122', 'hash': '0x52463913446f28a0990e67f2fc3f7500845c5b383ec9473251e1a4599ae9ad54', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1405568d505257fed075cce18d30cbb866de92cd', 'value': 0.01753079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1abff7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x67f5fd3b1e9a675546ed2924b2ca0bf217ff0812a4581584bed5b12b64f489bf:log:123', 'hash': '0x67f5fd3b1e9a675546ed2924b2ca0bf217ff0812a4581584bed5b12b64f489bf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x141abf9772b0887db1b5e3fc959594732b16bc3c', 'value': 0.00139971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0222c3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x1e4ea30b042de42faf87a5f62edf0b6d37bdec1f7ab7eac627cb306101088fbd:log:124', 'hash': '0x1e4ea30b042de42faf87a5f62edf0b6d37bdec1f7ab7eac627cb306101088fbd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1439648ff4815de902e4a66cf0cb8475260e4693', 'value': 0.03460874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x34cf0a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x11a7b9bb9a0b5dc7a780e38f4e52b3b12922266921875955ff626c066eb70128:log:125', 'hash': '0x11a7b9bb9a0b5dc7a780e38f4e52b3b12922266921875955ff626c066eb70128', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x144fa6874eb49595310d311b0c5aae390bc6ee6c', 'value': 0.01132125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11465d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x7c4cf043f4d445b3b8c0b70491dfdf92e70b4c7db98c2ea89c18febc6b16da10:log:126', 'hash': '0x7c4cf043f4d445b3b8c0b70491dfdf92e70b4c7db98c2ea89c18febc6b16da10', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1466e94cc3dcc19760bd880b77f3da194a83a5da', 'value': 0.01701619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19f6f3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x1602fe6ba578cd90006a8fdc3667ee834ab86ea9edf2f1a06d229a9c429dcea5:log:127', 'hash': '0x1602fe6ba578cd90006a8fdc3667ee834ab86ea9edf2f1a06d229a9c429dcea5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x14e725bb7325492fe87fe6904cf8853ad9fcae8c', 'value': 0.03149367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x300e37', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xf3c729fcde3192c9abf90ee03b4f843480ed19b6f6b4619f404e019c0c7d0ef8:log:128', 'hash': '0xf3c729fcde3192c9abf90ee03b4f843480ed19b6f6b4619f404e019c0c7d0ef8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x14deedc7ba39e2ada7abeb6eaaffb6d9bbca3994', 'value': 0.00386981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05e7a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x09a9a86f2b3371446ec61f8536a6974b730fd32b54bafcf78e47fdd99d0905ab:log:129', 'hash': '0x09a9a86f2b3371446ec61f8536a6974b730fd32b54bafcf78e47fdd99d0905ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x15119ebb98fab4aa050c41d0771179c6d937446a', 'value': 0.01176724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11f494', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0xf0438b4e8b219d4dc1116119e1108c0d1640fff938cc5225961d4f2faadda60a:log:130', 'hash': '0xf0438b4e8b219d4dc1116119e1108c0d1640fff938cc5225961d4f2faadda60a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x15337c4662b4eb604488c870406311f09f59cf54', 'value': 0.01012051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f7153', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02cf', 'uniqueId': '0x49d12f54238a2e333f3d93f6b99d97c72c5fc83281c5a07f879aa0c32a0a0fba:log:131', 'hash': '0x49d12f54238a2e333f3d93f6b99d97c72c5fc83281c5a07f879aa0c32a0a0fba', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x158a89107038b56e2d3ef6822d950ad1dc69f682', 'value': 0.00819933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c82dd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:56:38.000Z'}}, {'blockNum': '0x7f02d5', 'uniqueId': '0x8e14ab5ce8b9d344cf282bb9e2e881d891d0e5445d715433a61b1a7deafad586:log:37', 'hash': '0x8e14ab5ce8b9d344cf282bb9e2e881d891d0e5445d715433a61b1a7deafad586', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x15988ff3e61c00c592126287f16d7b7c10f0802a', 'value': 0.01084096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x108ac0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:57:01.000Z'}}, {'blockNum': '0x7f02d7', 'uniqueId': '0x772dfbd6501fa91b4926210321c08b2faf2ec983cd5d4276ea1259fa6d253b46:log:85', 'hash': '0x772dfbd6501fa91b4926210321c08b2faf2ec983cd5d4276ea1259fa6d253b46', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2ca65a99b4b238f197733b2f9945a892f16ea306', 'value': 0.01985833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e4d29', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:57:13.000Z'}}, {'blockNum': '0x7f02d7', 'uniqueId': '0xa836967c2f624ae0b683c242adbbcd990b4f29345a051c129b73521c2ca3795e:log:86', 'hash': '0xa836967c2f624ae0b683c242adbbcd990b4f29345a051c129b73521c2ca3795e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2cafe1abc991a42a67a502af7a7e63bba00c22da', 'value': 0.01194953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x123bc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:57:13.000Z'}}, {'blockNum': '0x7f02d7', 'uniqueId': '0x1662ca2dc65bc610a542f16eee420727f9cc66e5c8aa9e1bd375d1101c02e077:log:87', 'hash': '0x1662ca2dc65bc610a542f16eee420727f9cc66e5c8aa9e1bd375d1101c02e077', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1598f5ad2eb5c1076548d434bac3d41ec0831a7a', 'value': 0.02343157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23c0f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:57:13.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x91c3be51f6dd1fe0e514005aabebf761500fa76a67a8311d9a3319a3e1f4e2a2:log:85', 'hash': '0x91c3be51f6dd1fe0e514005aabebf761500fa76a67a8311d9a3319a3e1f4e2a2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2d427cf50166142ab7acfb37baa2d59729cd2d12', 'value': 0.03695377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x386311', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x5778cbdf58f14d14794ba0243a226c7103c701160cbedc49885e2dc7f796d4bc:log:86', 'hash': '0x5778cbdf58f14d14794ba0243a226c7103c701160cbedc49885e2dc7f796d4bc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2d595febca85974c1e63b6775ab48da881598129', 'value': 0.00100155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01873b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x7a442e93661a2295dff10ae61b9589ed8ddcf0e7b785defbd51c8f89db05646b:log:87', 'hash': '0x7a442e93661a2295dff10ae61b9589ed8ddcf0e7b785defbd51c8f89db05646b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2d659edb6fe9eef60ce38dac4e7b568e14ae261c', 'value': 0.59032798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0384c4de', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xc4b42353a1f43beddea3b884793bcf61128f631205b2c5efd3498493dba7ee11:log:88', 'hash': '0xc4b42353a1f43beddea3b884793bcf61128f631205b2c5efd3498493dba7ee11', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x15f6f77a7d183b39c0008ccde18b8e7ffb3e96bb', 'value': 0.01900598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d0036', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x84544e90d08d1e363017cd1dc21e232d082a7bbde0db64cf7f9fbd82368d9fde:log:89', 'hash': '0x84544e90d08d1e363017cd1dc21e232d082a7bbde0db64cf7f9fbd82368d9fde', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x161712a2f0603c954666bd09ba405f5b25abe3fa', 'value': 0.00606544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x094150', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x6976ad777deb3e3f0ed55c41006eb152bedf17255aebd4f11460eef3ece28d76:log:90', 'hash': '0x6976ad777deb3e3f0ed55c41006eb152bedf17255aebd4f11460eef3ece28d76', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x16575bd7a7cdb324f7ba9ca1f95b3749a3cefbba', 'value': 0.02854329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b8db9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xb3e7e79517452072b526c2ec5f9985a5d1982201789073fb5b6c3e2fc30d4338:log:91', 'hash': '0xb3e7e79517452072b526c2ec5f9985a5d1982201789073fb5b6c3e2fc30d4338', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1683116fe2a64d89c1fa1a65448a468086b87f9a', 'value': 0.00761611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b9f0b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x375e1bd0a55408662299c3a7b7c02ba6d21cd0615811df1c93144eaa7309fba2:log:92', 'hash': '0x375e1bd0a55408662299c3a7b7c02ba6d21cd0615811df1c93144eaa7309fba2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x16c44978353dd9c66d0c70bc14ea8a2e1f7a33fc', 'value': 0.00126935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01efd7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x5265561c3d0ea8454d40313cc27b1ff56552fb03a0724e9b006982cc8b42b502:log:93', 'hash': '0x5265561c3d0ea8454d40313cc27b1ff56552fb03a0724e9b006982cc8b42b502', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x16cb21d29c756442674bc1b61a401637b81e4678', 'value': 0.02295127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x230557', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x139cc65153b89e39bb666d181b692d96fa0e215858a836df3fde300f74bb12c9:log:94', 'hash': '0x139cc65153b89e39bb666d181b692d96fa0e215858a836df3fde300f74bb12c9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1714ce55143faea9207318195b69cbd495fad12c', 'value': 0.00600369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x092931', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x69bb494d4fc3b273f93ccabac771c9410041948e6530430cd257a7e31e05f968:log:95', 'hash': '0x69bb494d4fc3b273f93ccabac771c9410041948e6530430cd257a7e31e05f968', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x171947991c12f203f100dbd3dae3fa7beb04061a', 'value': 0.0140658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x157674', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xaa811f91e7a4cebb61e2af879fbb553def7d63563db1fad42afab5838e876501:log:96', 'hash': '0xaa811f91e7a4cebb61e2af879fbb553def7d63563db1fad42afab5838e876501', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x17252c18271dfad2dcf4fbaec09f15791b672bd5', 'value': 0.02321886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x236dde', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x87e7ef6b2c148af694336fca4d53f7601a06861320cb0777382cfc2b06e91175:log:97', 'hash': '0x87e7ef6b2c148af694336fca4d53f7601a06861320cb0777382cfc2b06e91175', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x173c2608295f96280d2296615be5441fca0775ce', 'value': 0.02103009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2016e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x584ddd9170351a6782775efaa267799d12ef8f301728235de812b01c6d76d6d6:log:98', 'hash': '0x584ddd9170351a6782775efaa267799d12ef8f301728235de812b01c6d76d6d6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x178baa54dfef10fbe5f61ab7e592c14a5d684edd', 'value': 0.01389427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x153373', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xb6a785ee071b66b83dd91e6e3ea2102fa29ea2377eb214db0e2cd4022845e1df:log:99', 'hash': '0xb6a785ee071b66b83dd91e6e3ea2102fa29ea2377eb214db0e2cd4022845e1df', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1793432e447e1e83b816a500eeba277401a59a57', 'value': 0.00334834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x051bf2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xb433fbdce0175d1fdc1b97f12753d5a06624e35f52511b7cf514f55404bead8f:log:100', 'hash': '0xb433fbdce0175d1fdc1b97f12753d5a06624e35f52511b7cf514f55404bead8f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x17baf7649ee1262883eccf598570b1cd202bebd6', 'value': 0.00099489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0184a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0xc1c5fafdfab4b3b2009736850549c28cb0458021c7338b1bf2d8d428eadbb7eb:log:101', 'hash': '0xc1c5fafdfab4b3b2009736850549c28cb0458021c7338b1bf2d8d428eadbb7eb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x17cad8a4a8b448e59e77539171b13c3858371491', 'value': 0.00607231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0943ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x052dc0bb9b208f288326c3accf9f3fd3645838075889f7c5a23591170a42d396:log:102', 'hash': '0x052dc0bb9b208f288326c3accf9f3fd3645838075889f7c5a23591170a42d396', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x182208d25cf3bb6d1bf168adda5b5076923e94a3', 'value': 0.00126935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01efd7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dc', 'uniqueId': '0x4813908ac379965e1b4ba60668f6c9053724839ddb45dff5d50be34f2609060c:log:103', 'hash': '0x4813908ac379965e1b4ba60668f6c9053724839ddb45dff5d50be34f2609060c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1844d3cc51b6ca1f7e8eaf64861574ae010fa757', 'value': 0.00044598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xae36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:06.000Z'}}, {'blockNum': '0x7f02dd', 'uniqueId': '0x1b284fe0e01580d434c8c0aa726cfb222b0e253abeff2eb562a8606e314a95d8:log:17', 'hash': '0x1b284fe0e01580d434c8c0aa726cfb222b0e253abeff2eb562a8606e314a95d8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2da1d79f7ac1c9f4f6e7cf0191bf7d272613ce88', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:23.000Z'}}, {'blockNum': '0x7f02df', 'uniqueId': '0x7b6ceb202a60a52027183da808ce78da32670322302bd3975785249019ff9375:log:74', 'hash': '0x7b6ceb202a60a52027183da808ce78da32670322302bd3975785249019ff9375', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x18716fd9289726d4c8918cf3b0645463b6c00f49', 'value': 0.00092628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0169d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:58:29.000Z'}}, {'blockNum': '0x7f02e2', 'uniqueId': '0x558aec0eb2e610e096982175c6f080d3da15a8953d455f9c4283ea332a1cfecb:log:125', 'hash': '0x558aec0eb2e610e096982175c6f080d3da15a8953d455f9c4283ea332a1cfecb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2de5d6fab319897545b6dfb090a5ad350b9a9bf8', 'value': 0.12212015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xba572f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:10.000Z'}}, {'blockNum': '0x7f02e2', 'uniqueId': '0xc7499ee0a5a6337ea1a927725dc9837ebe3919c0becea697fd377d2748fd4ee0:log:126', 'hash': '0xc7499ee0a5a6337ea1a927725dc9837ebe3919c0becea697fd377d2748fd4ee0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2da0a55876542e7d4fbe619b1b3a61826f65cb59', 'value': 0.00031082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x796a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:10.000Z'}}, {'blockNum': '0x7f02e2', 'uniqueId': '0xd8b020f061f783a5a179d03e8b680dc8cdb80ffc36945d2d734a5ea902d14a23:log:127', 'hash': '0xd8b020f061f783a5a179d03e8b680dc8cdb80ffc36945d2d734a5ea902d14a23', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e165ab77faab45db480a0eb0e416ba182de8c8d', 'value': 0.00044897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaf61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:10.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0xf959086169ac639f2f82d381b6af578d72053957d6a85bfb1c90c8d20629c6b1:log:67', 'hash': '0xf959086169ac639f2f82d381b6af578d72053957d6a85bfb1c90c8d20629c6b1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x18b396f772ef19f062621927925be09ef9ba8737', 'value': 0.00052146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xcbb2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0xfb8f391782a5a7f06c35016691d43079b6ad21f3af39917dd887bf998ab238d5:log:68', 'hash': '0xfb8f391782a5a7f06c35016691d43079b6ad21f3af39917dd887bf998ab238d5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x18d5601445061d31903052e368edb6535675c366', 'value': 0.0021133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033982', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x6bd219b459363af59dcc8a1687b238312650d61ec427a50f7b8cfa013d47569a:log:69', 'hash': '0x6bd219b459363af59dcc8a1687b238312650d61ec427a50f7b8cfa013d47569a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x18bea3e8441d32e9a2c8b780dda7fed6dddaff65', 'value': 0.03145937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3000d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x570170fd7f763b17b8e7127fd74fe75a41b94c1202183e455e091032e8d60c93:log:70', 'hash': '0x570170fd7f763b17b8e7127fd74fe75a41b94c1202183e455e091032e8d60c93', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1932dbd2dbde34dd5eb8ce5b31ace8a0093ee4b2', 'value': 8.233e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2029', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x72b171692bb7236e1dc3afb1048bb64258fccbbafecd792650a5d6d97ec5e7b8:log:71', 'hash': '0x72b171692bb7236e1dc3afb1048bb64258fccbbafecd792650a5d6d97ec5e7b8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x19415ec85192a2d65fc80987d103802ce428d0e2', 'value': 0.02693086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2917de', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x63a82ff590bc3e4a4ccc98944fa5394082b0420ee825f22f42032d9956fa0a1a:log:72', 'hash': '0x63a82ff590bc3e4a4ccc98944fa5394082b0420ee825f22f42032d9956fa0a1a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1948de9d5bda15192a1bdcc3205c12bab6f686d4', 'value': 0.00279943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x044587', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e3', 'uniqueId': '0x79dcaacbdce50710cc7c4ba9b5063f5e618220aa3a840efde5a1f21b3d7f66e8:log:73', 'hash': '0x79dcaacbdce50710cc7c4ba9b5063f5e618220aa3a840efde5a1f21b3d7f66e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e228b8629ee0a139318ca4e05112660a00ed259', 'value': 0.06282142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5fdb9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T15:59:38.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xb3ac0dc4c7b82dd1354809f14f72d2bd29f7266c822222bb553bc2be43755ebf:log:36', 'hash': '0xb3ac0dc4c7b82dd1354809f14f72d2bd29f7266c822222bb553bc2be43755ebf', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x003105fe86aa597e27a878c30c502926a4248b49', 'value': 0.00482192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x075b90', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xf8af1b91a35f18d746911ebde98439b4a3a770d4315ea7206412469a19dc886f:log:37', 'hash': '0xf8af1b91a35f18d746911ebde98439b4a3a770d4315ea7206412469a19dc886f', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00333861f4f1d305f477c4c94e818fb74c946151', 'value': 0.00011005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2afd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0x52548a3bcc72b775b50601f51727f73a071b865976173ee6e40f51d94e26df38:log:38', 'hash': '0x52548a3bcc72b775b50601f51727f73a071b865976173ee6e40f51d94e26df38', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0035e7c3929651f1b7c1a8bba7d7ff734a1f31e1', 'value': 0.07410358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7112b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xa740ee890b5da5fc2217f9e22eec8c89e318171746302fd50c31dc7b58d3682d:log:39', 'hash': '0xa740ee890b5da5fc2217f9e22eec8c89e318171746302fd50c31dc7b58d3682d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x003ea7646766420b6b17d5ad961d2c0a2eb6f5df', 'value': 0.00890783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d979f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0x673037247314a39058c146d7873ef9545a675913bbbf68b4ad292d3c8ba44aba:log:40', 'hash': '0x673037247314a39058c146d7873ef9545a675913bbbf68b4ad292d3c8ba44aba', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x004251ec96a0b688cb93cc30b1ad79438ddea9fb', 'value': 8.68036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x33bd2e14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0x6372491491b1d34caf06e51fa6a7a30f265779363c3fa54ae67e14e1584789ac:log:41', 'hash': '0x6372491491b1d34caf06e51fa6a7a30f265779363c3fa54ae67e14e1584789ac', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e2f5624b2f22e521a7474ffbcb597d22921e55e', 'value': 0.06114987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5d4eab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xf01688382443e2bf50e1d43f90532e1d3384f2fed1273237963f67d3457cbcdd:log:42', 'hash': '0xf01688382443e2bf50e1d43f90532e1d3384f2fed1273237963f67d3457cbcdd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2e97b18ecf6057990a1e925f90a2fcf1b98860e9', 'value': 0.01340006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x147266', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e6', 'uniqueId': '0xb339440c85a0cd272030dfcd6c81b8b2a56122131d80facbe73cd7c800556c7d:log:43', 'hash': '0xb339440c85a0cd272030dfcd6c81b8b2a56122131d80facbe73cd7c800556c7d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2ef83161733480526642860e8672e304e8b1a522', 'value': 0.00027628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6bec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:24.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0xe90c7472c5ab62c168657d7f1d753d942bbc5627047a8ea5de09108ea0b347b7:log:98', 'hash': '0xe90c7472c5ab62c168657d7f1d753d942bbc5627047a8ea5de09108ea0b347b7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f40208b2edc15347d9ec9079fbe41a67ac53a74', 'value': 0.0210671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x202556', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x7142b13f645917767492dc56c5acbfdfffc03567a260ca49e8dbf4dd4b2c247d:log:34', 'hash': '0x7142b13f645917767492dc56c5acbfdfffc03567a260ca49e8dbf4dd4b2c247d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x004e44b87abe2931fa76cf64a1a46545ba6cc182', 'value': 0.09495961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x90e599', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x870c3827f67eb28ed43401d5ce8844134afd0a5e42ca6ad47787559e59c737ab:log:35', 'hash': '0x870c3827f67eb28ed43401d5ce8844134afd0a5e42ca6ad47787559e59c737ab', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x005391ee370ab6050cd72473f98eea1783893d54', 'value': 2.751e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0abf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x3cb65dfcffb1c3e44b940dfdd3e33e5ba7083c3c6cfdd5d42fe65681f2c748ed:log:36', 'hash': '0x3cb65dfcffb1c3e44b940dfdd3e33e5ba7083c3c6cfdd5d42fe65681f2c748ed', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0056a0cdb437c3092e2e35d6038ccfebcd5774a6', 'value': 0.44863172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ac8ec4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x1e76a6235c8b1649083ababa164139645ab3ce828eef29cbd47992809f68822d:log:37', 'hash': '0x1e76a6235c8b1649083ababa164139645ab3ce828eef29cbd47992809f68822d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0073124e931d0cf3d25ca77f56f6efc8995aa99d', 'value': 0.01672885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1986b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x6f53021fb80bc61d7b673b6016742d7d9203d69cdd6744434c3d55e5d929ddd9:log:38', 'hash': '0x6f53021fb80bc61d7b673b6016742d7d9203d69cdd6744434c3d55e5d929ddd9', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x007824cf5c325d4aef4d48213cc26e7c8feccf01', 'value': 0.00012381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x305d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x3857ec71c7922bb6aaf43ada23c41a473d94a36c35af09a104cd09fc3f6a4705:log:39', 'hash': '0x3857ec71c7922bb6aaf43ada23c41a473d94a36c35af09a104cd09fc3f6a4705', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x007b042697fcf9c7631e566205903bb621270393', 'value': 0.48784684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e8652c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x38839bd2f02eee4f5c6da3a9dd58f714aad740be6da448aca28a535ac61deedb:log:40', 'hash': '0x38839bd2f02eee4f5c6da3a9dd58f714aad740be6da448aca28a535ac61deedb', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x007d1ddbd2448d29380ce94732530aa1dd0f975b', 'value': 2.72940964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1044bfa4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x5588155e2ada017f7b9850bf2af98c53d53ef6a4dda15fd06cbb2a03fc7b2908:log:42', 'hash': '0x5588155e2ada017f7b9850bf2af98c53d53ef6a4dda15fd06cbb2a03fc7b2908', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00853d5e7ae5b909eebcc4cc0bdaa8e24b84d7aa', 'value': 0.75820488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0484edc8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x1c3fb7721169d4e0306e3d559faeb1bd0c9c0fc8a63e549ae6eb1c59b5a93006:log:43', 'hash': '0x1c3fb7721169d4e0306e3d559faeb1bd0c9c0fc8a63e549ae6eb1c59b5a93006', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00934e5268a8eb98c7b7ff594cd8387a17b02627', 'value': 2.063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x7aa2bfe7249c32650769cdc646b0578b109a8a2033e61ba90c6bcf1f3e7c8f49:log:44', 'hash': '0x7aa2bfe7249c32650769cdc646b0578b109a8a2033e61ba90c6bcf1f3e7c8f49', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x009a67b266874f06af2493bc9d35934b38209c81', 'value': 0.01489225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16b949', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xd21e98416769d36897cb705863f2183da08fd8c6c527e191e83975b4cf335a82:log:45', 'hash': '0xd21e98416769d36897cb705863f2183da08fd8c6c527e191e83975b4cf335a82', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x009d3993cb4c02b10414001573577949475f042a', 'value': 0.23091591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01605987', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xcd509f39a9e43932fafa579a0189cb0e3782580701a599e1ac22beef5f3fe4ea:log:46', 'hash': '0xcd509f39a9e43932fafa579a0189cb0e3782580701a599e1ac22beef5f3fe4ea', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x009f091d78d8bc213be52ccb40912b8b083797ac', 'value': 1.53553238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09270956', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x00002167e52670ea17ccd33ae6c9d0f9f57b608ad38be430f6710743c1c6b3d3:log:47', 'hash': '0x00002167e52670ea17ccd33ae6c9d0f9f57b608ad38be430f6710743c1c6b3d3', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00a643bc1c1e29e60a23b63ae0623478c274fa77', 'value': 0.41187227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0274779b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x39ac33033f9eff718a09d10c49a198fabf50038b8a8a31af7046b572126629af:log:48', 'hash': '0x39ac33033f9eff718a09d10c49a198fabf50038b8a8a31af7046b572126629af', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00a95d58fdd38dbf10945cd10dfa4944ada38f31', 'value': 0.0223143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x220c86', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xb1323bb62381489ede85cb6d13e5a05b44c6ddddfff9ba928f2df349610351cc:log:49', 'hash': '0xb1323bb62381489ede85cb6d13e5a05b44c6ddddfff9ba928f2df349610351cc', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00c10281b684235ae49ddb744ee207485658dcab', 'value': 0.13735266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd19562', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x673c0e3d3e1abce07ed9b48f3baf83fa79cfc0c65392e27e72c225739cc9a78d:log:50', 'hash': '0x673c0e3d3e1abce07ed9b48f3baf83fa79cfc0c65392e27e72c225739cc9a78d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00c3c6253b8c4e21fe51a54ab43398722d12a9a8', 'value': 0.00050214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc426', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xe189ca0e0f3f24f3afa012c9dea4790a0907a0b4c20c3ac15d52a9bbbf2140c8:log:51', 'hash': '0xe189ca0e0f3f24f3afa012c9dea4790a0907a0b4c20c3ac15d52a9bbbf2140c8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00cc2e4bc95dd72fdb8287802ec91f63f0fc493e', 'value': 0.63282104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03c59bb8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x4b123489a4097278082dc10d35fe865f323926ce82a2125b018489c068ed8166:log:52', 'hash': '0x4b123489a4097278082dc10d35fe865f323926ce82a2125b018489c068ed8166', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00d2831cabbbecbc03aa74fe74381932b115eba1', 'value': 4.127e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x101f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xe7ac873c85cdf92113526e1d823beb3e368e71cdbcb81383406a6f4378ac8886:log:53', 'hash': '0xe7ac873c85cdf92113526e1d823beb3e368e71cdbcb81383406a6f4378ac8886', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00dc413d0a55c9045d2435e0543f54c8939e3bfe', 'value': 0.00033705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x83a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xa7645a1885cf28630d9f2413ea9d506d2dd863994ef968a4f89d3c27e14e3a54:log:54', 'hash': '0xa7645a1885cf28630d9f2413ea9d506d2dd863994ef968a4f89d3c27e14e3a54', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00e5e7140f78e60ab3c60937d2426c396d55a384', 'value': 6.87e-06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xf4aae37251c84cbb65332d73d012f3bc8d0ccc572e706b68458096aefc69ae7e:log:55', 'hash': '0xf4aae37251c84cbb65332d73d012f3bc8d0ccc572e706b68458096aefc69ae7e', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00f191a2677c75e10aa3e102ebf38c4a39dd1db9', 'value': 1.39401126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084f17a6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x72d60430ba2e9b54d72b873f3bb92daffef5bf936775aca8c22c7c982adde272:log:56', 'hash': '0x72d60430ba2e9b54d72b873f3bb92daffef5bf936775aca8c22c7c982adde272', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x00ff77b290de0b5c166d979caff91a04cd7ef2cc', 'value': 0.05079875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d8343', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xe1a674c4647b3493155430e54174387650c54305b61428defafc90beed275a72:log:57', 'hash': '0xe1a674c4647b3493155430e54174387650c54305b61428defafc90beed275a72', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0107e0427a9eaa692bd0175c028e2f86f4c74929', 'value': 5.43668382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2067b89e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0xa2946ffe3d21920b9bcc7273bb37222590609e55f2df418f16b1450e47c0dfe1:log:58', 'hash': '0xa2946ffe3d21920b9bcc7273bb37222590609e55f2df418f16b1450e47c0dfe1', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0128a7c2aea829505350fb3f7be9c14236584912', 'value': 0.50883357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03086b1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x5d6319e7692b99b4b9c60dc5dc6b77f841a2d415ac3048bc8d87e6f298aa8a6e:log:63', 'hash': '0x5d6319e7692b99b4b9c60dc5dc6b77f841a2d415ac3048bc8d87e6f298aa8a6e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x19ee588256cfb969da322b2e4782d965b8e8341a', 'value': 0.01018227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f8973', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xa388950df8229197c71a2b42dfad03de5662416b09353e502a00931d7bb3f796:log:64', 'hash': '0xa388950df8229197c71a2b42dfad03de5662416b09353e502a00931d7bb3f796', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x19c337192d0b6a023f28744aa8eaef7f83127928', 'value': 0.00675844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5004', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xce9206e5c28046639fc12d393edb4c2707b966ef0ba1de8bfe180d69b6264622:log:65', 'hash': '0xce9206e5c28046639fc12d393edb4c2707b966ef0ba1de8bfe180d69b6264622', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x19ee0a07fbcf87ee7f6fd8ce716c515abbbbe658', 'value': 0.00895408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0da9b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x14c4cb45e47ae1c013274e6e751819cc239ca60732b5b0ca1c1eb82e24135e51:log:66', 'hash': '0x14c4cb45e47ae1c013274e6e751819cc239ca60732b5b0ca1c1eb82e24135e51', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1a1590da0b3273f52e817d87ce96962fda425418', 'value': 0.00590077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0900fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xa83fedb3af1ef19067dd4b54bfa5ab925485d93b65b1cacd3d210939780eee83:log:67', 'hash': '0xa83fedb3af1ef19067dd4b54bfa5ab925485d93b65b1cacd3d210939780eee83', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1a5765182a40f39ca39a74d1f1f509a702ab56a9', 'value': 0.04260909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41042d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x15d1d1ac8b685129374544e73b1fa3f3e3484ba1679fdca006104aa175fb3ee0:log:68', 'hash': '0x15d1d1ac8b685129374544e73b1fa3f3e3484ba1679fdca006104aa175fb3ee0', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0163c6c16077e5aa5d2a3c01068181aa4f55e4d1', 'value': 17.20514127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x668cf64f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xafdbc17232d9818d1ea8f4b1389eefcaf3fd06cd6e50f75d7d461d14b2c05ccb:log:69', 'hash': '0xafdbc17232d9818d1ea8f4b1389eefcaf3fd06cd6e50f75d7d461d14b2c05ccb', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x01c08b9dfe54b53c616cbe663fb8c983268d5201', 'value': 0.80980843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04d3ab6b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x918209f92ab827b26b663a32b33564f7882ab3b04f6ec864886a6ca5529e941b:log:70', 'hash': '0x918209f92ab827b26b663a32b33564f7882ab3b04f6ec864886a6ca5529e941b', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02321c40f274c1b16eea6914a4d34f060a03d37c', 'value': 0.33653054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0201813e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xf3ef7ddb830eb8e745ac600faedf45af64f4f0dde9e0aa4d32ed6fba5d19c103:log:71', 'hash': '0xf3ef7ddb830eb8e745ac600faedf45af64f4f0dde9e0aa4d32ed6fba5d19c103', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0295166e6c4cd62558a7c64346b4a05cdc28e650', 'value': 0.00615638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0964d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xc811fce39e8bea5312f08f82b5038b9e64cf5161318487e6b1206fc766aafd94:log:72', 'hash': '0xc811fce39e8bea5312f08f82b5038b9e64cf5161318487e6b1206fc766aafd94', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02a1f20c25f2733cc79d6dd09937d6d474d15037', 'value': 0.0090798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ddacc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0xd20bb8075f90775e0e2c1604de54fc2d22cb789080bdeaae8d067ae12c71ce63:log:73', 'hash': '0xd20bb8075f90775e0e2c1604de54fc2d22cb789080bdeaae8d067ae12c71ce63', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02af437baf7ca6b5b2b380e33e180af8991898be', 'value': 0.02230054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x220726', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02ed', 'uniqueId': '0xc81e7b537b7195f4efa4e7709d81b6817ba96f21e7ca70be757230b0997936c8:log:24', 'hash': '0xc81e7b537b7195f4efa4e7709d81b6817ba96f21e7ca70be757230b0997936c8', 'from': '0x9194eea248b97a2b7ff271d654b9112ecd39ad88', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 429.23489065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09fe707729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:01:35.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x1fa16caf20b5f58f97a3eac5afdff0fd6cb5d4f00f9c02bda1095e0e4e4e81b5:log:108', 'hash': '0x1fa16caf20b5f58f97a3eac5afdff0fd6cb5d4f00f9c02bda1095e0e4e4e81b5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1a7c9b496d72d97ff8c20cfcd6db050f7c6ceb10', 'value': 0.00345812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0546d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xae019094c2216b4b74d0f21c88b44b29f781abb891141d9fe440ac64b54efa19:log:109', 'hash': '0xae019094c2216b4b74d0f21c88b44b29f781abb891141d9fe440ac64b54efa19', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1ac54695617b986fef5513b541198fffd8c61cb8', 'value': 0.00504996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b4a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x0c0c83f9132a88d1bac078711a4861a1bb2541a6c583165b8ddd407b735ccff7:log:110', 'hash': '0x0c0c83f9132a88d1bac078711a4861a1bb2541a6c583165b8ddd407b735ccff7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1b2dfe388f3e3d59d142f1c7c94b1e4f5998e4cf', 'value': 0.00307389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04b0bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xedd3cf2b10bd778624b86ff4bd804b18e3679bccda63e27b352a34dfca1dfa38:log:111', 'hash': '0xedd3cf2b10bd778624b86ff4bd804b18e3679bccda63e27b352a34dfca1dfa38', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1b302519fc30e42ca8b37c0ec32158fcf2f8d48f', 'value': 0.00799349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c3275', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x4250ab745629201d5e55b7263be3eb63aeebd1a15247877af17b294201609fc0:log:112', 'hash': '0x4250ab745629201d5e55b7263be3eb63aeebd1a15247877af17b294201609fc0', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1b6b5c7dc3be0a390f434f01870d1228913ec3cd', 'value': 0.01598698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1864ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xb3d3ef97c069420b49a100ab0688e012d3b05cee85bb95dc128909824f749d12:log:113', 'hash': '0xb3d3ef97c069420b49a100ab0688e012d3b05cee85bb95dc128909824f749d12', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c3b4ebc14b51e149633eae8aafc3381b3afcfb4', 'value': 0.06847645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x687c9d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x9a67b35edea8dc836867d052d3621711aefe079161495a6ba39d962d5de207bc:log:114', 'hash': '0x9a67b35edea8dc836867d052d3621711aefe079161495a6ba39d962d5de207bc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c603667dc47fdd019af6f6f306caf01bdd2fb9f', 'value': 0.00174964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ab74', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xe558c885fa4bafeac1533bbf3415f03944276910de0ddf4dccb789fa5f8ae3f0:log:115', 'hash': '0xe558c885fa4bafeac1533bbf3415f03944276910de0ddf4dccb789fa5f8ae3f0', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c8d2f8f64ddc032220481c111ee1ef845844102', 'value': 0.00936576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e4a80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x185261fccc8e69d55c88adb9d5d2cecc7fe556d9736d1b4442c72f472faf8f6c:log:116', 'hash': '0x185261fccc8e69d55c88adb9d5d2cecc7fe556d9736d1b4442c72f472faf8f6c', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02d4c1ed3fc0b471901ebb567bc88604c1c69671', 'value': 0.03096763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f40bb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xbd932579d58350ec3fd0e6a8f40ab4d34e1fa18266c8c96ff9f6c91cce156b99:log:117', 'hash': '0xbd932579d58350ec3fd0e6a8f40ab4d34e1fa18266c8c96ff9f6c91cce156b99', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x02f7e85460d4a0a3bd528c2bd7640712b139903e', 'value': 0.22237264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01535050', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x32541b17fee983ef34398f15c0011e02dab00078a5095b0b2200cbcab5e318b8:log:118', 'hash': '0x32541b17fee983ef34398f15c0011e02dab00078a5095b0b2200cbcab5e318b8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f498e9940f39731ca47ed36f52d8bb99ef5d736', 'value': 0.21830358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014d1ad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x62c15bfcb1477fd9ffa8b9e182b3685a15b17a1c19856c0b5c0c27e61042b908:log:119', 'hash': '0x62c15bfcb1477fd9ffa8b9e182b3685a15b17a1c19856c0b5c0c27e61042b908', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2f8dbb7c0135f0fae090046d77038ee98e8a2f2e', 'value': 0.01053355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1012ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x0a26cd45ea0498389e95d6d0c3fdac3401ae300339e56e9838c69efb23f47461:log:120', 'hash': '0x0a26cd45ea0498389e95d6d0c3fdac3401ae300339e56e9838c69efb23f47461', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x2fb2ceeb1743605eddc1f28e7a456553126db354', 'value': 0.0154377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x178e5a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x243d2adf51ed749d984f477c2a61a7f965142c65257816dbeabc54072585cdda:log:121', 'hash': '0x243d2adf51ed749d984f477c2a61a7f965142c65257816dbeabc54072585cdda', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3021cc75b578c171165e9af60d85ee57c4d7a552', 'value': 0.00160248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0271f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x07a23fdf1cbece9b5badd55b58f6c67884df34a32e67df530daa29ce6a07af12:log:122', 'hash': '0x07a23fdf1cbece9b5badd55b58f6c67884df34a32e67df530daa29ce6a07af12', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x30d3b77ac63c0e796e3e74df093a7ce4021edfa0', 'value': 0.01364181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14d0d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x1d2a3f41e36da7685b9461729c21c5b648138c1e10aaba3b66093adaea9bd425:log:123', 'hash': '0x1d2a3f41e36da7685b9461729c21c5b648138c1e10aaba3b66093adaea9bd425', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x30e56764dc5fffd658c4a290408cb41ddeb9aa5f', 'value': 0.03574501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x368ae5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x58f3eb710e44a6da2e497b6ec6ecb27522bdc1878089c84a2c8341418b54426c:log:124', 'hash': '0x58f3eb710e44a6da2e497b6ec6ecb27522bdc1878089c84a2c8341418b54426c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x30c40d09609301729dcd68859f2acb435272ff26', 'value': 0.18014103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0112df97', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x1455072dbb24ba61b604dc69a2ab544860077d69c8f788b05a487ac94e390b0a:log:125', 'hash': '0x1455072dbb24ba61b604dc69a2ab544860077d69c8f788b05a487ac94e390b0a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x30cde1ea3eef5c3e5fe5c15d368bbb83b802fbec', 'value': 0.13161761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc8d521', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x3bf52d273ffd000b0e315fde510626815f1e789b3da55efdb9d34f6b160f23e8:log:126', 'hash': '0x3bf52d273ffd000b0e315fde510626815f1e789b3da55efdb9d34f6b160f23e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3119bf1d8d0aea0b9d5ec8d8d37242fa433a5fdf', 'value': 0.02885157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c0625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xeaf311075245a477ba0f598f2def26c3e8f76c1cbe8ff3499f7fff395f0a6563:log:64', 'hash': '0xeaf311075245a477ba0f598f2def26c3e8f76c1cbe8ff3499f7fff395f0a6563', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x313af9c42a4338c13221a69eefbce0df66b4c4e9', 'value': 0.00355723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056d8b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xe89d8a5854adc2d7f8e88e5368eda603babf81f3dcbd9052325d66c21d5d3e74:log:65', 'hash': '0xe89d8a5854adc2d7f8e88e5368eda603babf81f3dcbd9052325d66c21d5d3e74', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3151add7e14c998318564655a14aafc3a2d02304', 'value': 0.00393713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0601f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0x47eb207f1114ff327ebf9d9f2904311c83871bebff9a607fba2f8d88906ee7ae:log:66', 'hash': '0x47eb207f1114ff327ebf9d9f2904311c83871bebff9a607fba2f8d88906ee7ae', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3182f521cff947064d30db8023052ac4205b9db4', 'value': 0.00176134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b006', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xe164bc5882f3ad204e7134a7449fc417750cf693a107a633f6aea2cc1726ddba:log:67', 'hash': '0xe164bc5882f3ad204e7134a7449fc417750cf693a107a633f6aea2cc1726ddba', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1cc82585d00a49ad325771315a7cd4f2294ea1af', 'value': 0.02205929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21a8e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xfc2a01b83821f7e535fb1e80eed097daf11f736501330c481958ba2969249525:log:68', 'hash': '0xfc2a01b83821f7e535fb1e80eed097daf11f736501330c481958ba2969249525', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1d649e3f11866c443b4272070b308f3325a7f8be', 'value': 0.09520148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x914414', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0x8156155b9e4fc99521167d85b6c99b53ba73299ee38cec768b21b94143b53c86:log:69', 'hash': '0x8156155b9e4fc99521167d85b6c99b53ba73299ee38cec768b21b94143b53c86', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1dd8ae3102eec14c3c98611caf70e8c9453ea98f', 'value': 0.00912561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0decb1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0x10478243013bc9f86da55480b7806f3fcee97d7dc5e996712df53a4daaf4d858:log:70', 'hash': '0x10478243013bc9f86da55480b7806f3fcee97d7dc5e996712df53a4daaf4d858', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1e2476533d0782d7018b2b8498f3f1123e208ddd', 'value': 0.01252199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x131b67', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xabd6a9d27f726bec93174f65aa46ede5f5d1775290fe45d082c0a4c616e9c77c:log:71', 'hash': '0xabd6a9d27f726bec93174f65aa46ede5f5d1775290fe45d082c0a4c616e9c77c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1a529dd8ee6bcd5a9fa53887048c5d7b3df8329c', 'value': 0.08813427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x867b73', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f3', 'uniqueId': '0x4d7def15c77582eee53e504e9fdc6365bb6f94f7e17f9d0a23dd97a19f8a921d:log:87', 'hash': '0x4d7def15c77582eee53e504e9fdc6365bb6f94f7e17f9d0a23dd97a19f8a921d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1ac486bf81d83edb4b8780918d4525b01328ace0', 'value': 0.00960591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ea84f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:11.000Z'}}, {'blockNum': '0x7f02f3', 'uniqueId': '0xd3498621b00f3db34371e6a9f1a04039c6396cd3295b67e9b8af626edf1e743b:log:88', 'hash': '0xd3498621b00f3db34371e6a9f1a04039c6396cd3295b67e9b8af626edf1e743b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x318ec61f4afcb385e3544acc11206db3a0e6b92a', 'value': 0.07988232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x79e408', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:11.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0x1baf5edbc7ebad5f2b2ed0647703dbb9e16f3a0ebc434bc1cefd3f480ba64484:log:52', 'hash': '0x1baf5edbc7ebad5f2b2ed0647703dbb9e16f3a0ebc434bc1cefd3f480ba64484', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1b5d06c050066a2efc8546012bfbca75ea851c9e', 'value': 0.03128783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2fbdcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0x033c991746930df80af3fe878803286c5dcf00313aaa0181ac5ddd9142d1859a:log:53', 'hash': '0x033c991746930df80af3fe878803286c5dcf00313aaa0181ac5ddd9142d1859a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1bad6578ca1e3b0a0a25326d8bd223126b8f3bc5', 'value': 0.00432266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06988a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0x7643092735c616e7340746a6c528807624107cf9b503568fb79dfd1cba533e27:log:54', 'hash': '0x7643092735c616e7340746a6c528807624107cf9b503568fb79dfd1cba533e27', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c24d08f685fd1da0fd99df05090ff3b53e911de', 'value': 0.00219563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0359ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0xa5e3036b7b5190bea950dbc1a44a3586f50115ab04da130b2555b9f0d4ed037c:log:55', 'hash': '0xa5e3036b7b5190bea950dbc1a44a3586f50115ab04da130b2555b9f0d4ed037c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c57b30a08a0a748f8379a20f4decf3846343220', 'value': 0.01070373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x105525', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fd', 'uniqueId': '0xe12b8491ddb1aeae95ee49327508cd774e132734e1543e36613458f2c68ab480:log:44', 'hash': '0xe12b8491ddb1aeae95ee49327508cd774e132734e1543e36613458f2c68ab480', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c59d5fff9668e5b929a4d8f19cffd757281ad9e', 'value': 0.00109781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01acd5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:43.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xc838f59794a65f41a731de4aada5b3bbf5c333d9a7195a8f80e09c56c5b8fc7b:log:89', 'hash': '0xc838f59794a65f41a731de4aada5b3bbf5c333d9a7195a8f80e09c56c5b8fc7b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x31c1d6d32a1ef79d216a12764ce08edb0f2a32e7', 'value': 0.19053644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0122bc4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0x287473a954e2c536a972b27d1608c769c4ab8cbe66244aaca574e501faa7ce74:log:90', 'hash': '0x287473a954e2c536a972b27d1608c769c4ab8cbe66244aaca574e501faa7ce74', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x31f3be1d114864cacae0c810d1a84a46c6735bcd', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xef11065dd961cdcdbbb3bba5d57b162d9a61c8d6c36316f04b5eac8793b3adbe:log:91', 'hash': '0xef11065dd961cdcdbbb3bba5d57b162d9a61c8d6c36316f04b5eac8793b3adbe', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x31ef9748a55e55d73c67457133f00ae0b0f509b5', 'value': 0.20928962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013f59c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xdec2fb01814e177f351e7f808cb980c841abee3ace893e6eded03133a198e121:log:92', 'hash': '0xdec2fb01814e177f351e7f808cb980c841abee3ace893e6eded03133a198e121', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x31eb7da8c071f1c52b6b0dfd36ced2643e740bef', 'value': 0.0036263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x058886', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0x2a9813d17bf0ac912764baa8ebf8e7f691ef49f495bc6c76d2b24c52124bd99d:log:93', 'hash': '0x2a9813d17bf0ac912764baa8ebf8e7f691ef49f495bc6c76d2b24c52124bd99d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x323f83d12b4050e0922c5885b0a3382fb09f9466', 'value': 0.03149705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x300f89', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02ff', 'uniqueId': '0x0963fa4c1eac5091dd2c8332ada07a11e7ff03e306f5ef0cbf42f3d1b05d52f1:log:61', 'hash': '0x0963fa4c1eac5091dd2c8332ada07a11e7ff03e306f5ef0cbf42f3d1b05d52f1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c8af860d59430bfc32ca71c7d0d5a9395f83891', 'value': 0.00391097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05f7b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:02.000Z'}}, {'blockNum': '0x7f02ff', 'uniqueId': '0x1963da9970606caa29a6974d0c69f6859be68eaa70c27df71cd981ea2645ae15:log:62', 'hash': '0x1963da9970606caa29a6974d0c69f6859be68eaa70c27df71cd981ea2645ae15', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1c94886ff66e6e8f98cfa83215955c21d846efb5', 'value': 0.01694757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19dc25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:02.000Z'}}, {'blockNum': '0x7f02ff', 'uniqueId': '0x7a4c26ccfe5f62476030d86b35c2a6fdd15da9663662bd4d320e74bcc6b3c5ba:log:63', 'hash': '0x7a4c26ccfe5f62476030d86b35c2a6fdd15da9663662bd4d320e74bcc6b3c5ba', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x324c43b2e66a7e8aa8a8da918e844120c688a098', 'value': 0.00383352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05d978', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:02.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0x3a5c72f286e3e6d1f50d8d562201aaaa8e673c701363e4a51094929f2315f4a4:log:23', 'hash': '0x3a5c72f286e3e6d1f50d8d562201aaaa8e673c701363e4a51094929f2315f4a4', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1d8779a176f4c8dbd75cb8b76c9a33187ca49a04', 'value': 0.00343068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x053c1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0x2efce341c1f3efafc4a8a81d8468118c2dabc011f9e6a1831f24ae6376682247:log:24', 'hash': '0x2efce341c1f3efafc4a8a81d8468118c2dabc011f9e6a1831f24ae6376682247', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0315e9138ce0a4d69122e615482c799b2fdc89b0', 'value': 0.41097117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0273179d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0xcc441a924cd4b6d34a174e4596bdcd741df2973f1885a5a1ce6391e9470b3dc1:log:25', 'hash': '0xcc441a924cd4b6d34a174e4596bdcd741df2973f1885a5a1ce6391e9470b3dc1', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x034f68d5beed0226928c2e29b381b7710973cb13', 'value': 0.23848929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016be7e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0xf0af1c5a457a2d0a524ceb6f36dce8d58781742bfdf9984e624c5926dad891cb:log:26', 'hash': '0xf0af1c5a457a2d0a524ceb6f36dce8d58781742bfdf9984e624c5926dad891cb', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x03c13bd6c3d6d8cbee4f2b87c98ee5875086833e', 'value': 1.375e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x055f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0x4464e655a1801f1002acce4e3b2bb70e58aa23914e99f86f6edd73434cc69bfc:log:27', 'hash': '0x4464e655a1801f1002acce4e3b2bb70e58aa23914e99f86f6edd73434cc69bfc', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x042b092a64559e0be1e4c4e46dba56fe4696ea58', 'value': 0.00320544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e420', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0300', 'uniqueId': '0xb698912ed04d2f064dbe13190de8cd0ca9a447ffc0802bdcd183d8e28427f21e:log:28', 'hash': '0xb698912ed04d2f064dbe13190de8cd0ca9a447ffc0802bdcd183d8e28427f21e', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x04548899ffe9b75634b64cb8410374d03e844139', 'value': 0.01722411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a482b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:15.000Z'}}, {'blockNum': '0x7f0302', 'uniqueId': '0xead0f57878733c81e15a1eb277fd5cfd22918aab5fabdc5d0c630a7a89af2390:log:77', 'hash': '0xead0f57878733c81e15a1eb277fd5cfd22918aab5fabdc5d0c630a7a89af2390', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x04557982519325fb3f207f606391d520dff491ae', 'value': 0.0002889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x70da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:48.000Z'}}, {'blockNum': '0x7f0302', 'uniqueId': '0xf166c58d4179b24a5588eb564d322abbab14ca2f50b90ffc0b272384eb7bdb21:log:78', 'hash': '0xf166c58d4179b24a5588eb564d322abbab14ca2f50b90ffc0b272384eb7bdb21', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x04eb922a5821802c5d31e915c63e92a030c32a9d', 'value': 0.00755274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b864a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:48.000Z'}}, {'blockNum': '0x7f0302', 'uniqueId': '0x7760c3d5b7523d5dfc8c4443b2dbdd70ba2ed1733beffaca0c176d305daa7d37:log:79', 'hash': '0x7760c3d5b7523d5dfc8c4443b2dbdd70ba2ed1733beffaca0c176d305daa7d37', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x05071d9b08be19bc2c11388387d614e89db36ecc', 'value': 0.78908309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04b40b95', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:48.000Z'}}, {'blockNum': '0x7f0305', 'uniqueId': '0xc446aa11076cebbe53f31ef07024252b599a6ed4edc1616fe315d27f65d6c727:log:8', 'hash': '0xc446aa11076cebbe53f31ef07024252b599a6ed4edc1616fe315d27f65d6c727', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1d8cad94005380c26df415d3f3e8e8181e9a164c', 'value': 0.00043912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:19.000Z'}}, {'blockNum': '0x7f0305', 'uniqueId': '0x9086b6a43a222c0edf5bd524e86c528ca9a831dbfe13d2bf12137782d5dd33ce:log:9', 'hash': '0x9086b6a43a222c0edf5bd524e86c528ca9a831dbfe13d2bf12137782d5dd33ce', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1db7f01cf9fafcdc5b8ef93337aa9091ac731d62', 'value': 0.04617014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x467336', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:19.000Z'}}, {'blockNum': '0x7f0305', 'uniqueId': '0xfa514acfec2c737e1802c3137ecc021288eb55db8dced5ad2dac3d909dabab92:log:10', 'hash': '0xfa514acfec2c737e1802c3137ecc021288eb55db8dced5ad2dac3d909dabab92', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1f214e02ae067e46deb759f9abfa778cd26734d6', 'value': 0.01365412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14d5a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:19.000Z'}}, {'blockNum': '0x7f0305', 'uniqueId': '0x9b0da6293f7d15da842e732c91b2cc7c555365ae813d427b79924bb0319e76ce:log:11', 'hash': '0x9b0da6293f7d15da842e732c91b2cc7c555365ae813d427b79924bb0319e76ce', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1f7cb6a67f0688ca6f2bcd57b23fdeab959e30ec', 'value': 0.01643297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191321', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:19.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xfed1d7979ca199fd4595ed1cc21a2ab3a3781bad7be4189443066add55c11663:log:83', 'hash': '0xfed1d7979ca199fd4595ed1cc21a2ab3a3781bad7be4189443066add55c11663', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x32f98a2061c9bcace6914cdd372f7de10cabef89', 'value': 0.0004835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcde', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x3f94ab1059eb114cf58d4f73f4c971ebb645c9f3ca42017e16e9528746908cdb:log:84', 'hash': '0x3f94ab1059eb114cf58d4f73f4c971ebb645c9f3ca42017e16e9528746908cdb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3302195bee4dfe1d27f14c64135ab274f283557b', 'value': 0.19509523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0129b113', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x2de5f53328e5cbbcc47a92bdd5eb9869b83c823a6314100666717d78911d526f:log:85', 'hash': '0x2de5f53328e5cbbcc47a92bdd5eb9869b83c823a6314100666717d78911d526f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x331252e3b8af250ad737b49bb5608e453dd8b988', 'value': 0.05439458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x52ffe2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xbaf9083204bae37d0ff82bac37614764fe19b1581140c5ee11de71a52f5bf037:log:86', 'hash': '0xbaf9083204bae37d0ff82bac37614764fe19b1581140c5ee11de71a52f5bf037', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x33843f220346a6ee5f1c2ed16169479e816448bf', 'value': 0.10664791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa2bb57', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x3a176b4ad13f4bab462ff4d88440ca010d50b3dcc20b9866ab915f19a74372e5:log:87', 'hash': '0x3a176b4ad13f4bab462ff4d88440ca010d50b3dcc20b9866ab915f19a74372e5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x339216fb93b816ee16f4cc6edca95a9939792890', 'value': 0.01757894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ad2c6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x3de92d28e5e46991c86367bf8359b15597ad77918218c25e49d937c8fee54e30:log:88', 'hash': '0x3de92d28e5e46991c86367bf8359b15597ad77918218c25e49d937c8fee54e30', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3392cea0a1fdb485ce2a37de696f692099fb3e7b', 'value': 0.01281294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x138d0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x83544995509d8c5f91533d77293f4e5a4f9847f46c51487d7f502c30b11cfd00:log:89', 'hash': '0x83544995509d8c5f91533d77293f4e5a4f9847f46c51487d7f502c30b11cfd00', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x33aac15e8dcce4a548d27bdb075b28f2f0803630', 'value': 0.00049732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc244', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xe518e27dafcde03cc24d44a846df2f622c991a9fd9aa4d2e65760f6456e8cd65:log:90', 'hash': '0xe518e27dafcde03cc24d44a846df2f622c991a9fd9aa4d2e65760f6456e8cd65', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x344aeaa8e9edc542b94235091e9b70d4ebb6ad12', 'value': 0.17433895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010a0527', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x58254033e0d3c4b03ef10d4702cea2c815386daa5af6f63ba05fb00fdde2b771:log:91', 'hash': '0x58254033e0d3c4b03ef10d4702cea2c815386daa5af6f63ba05fb00fdde2b771', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3451622c0f880ae238d720b5693ecf6f8294fb06', 'value': 0.01978926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e322e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x0b8fa11ad1755becf743e5b46cdff4393f81cc1869d282a9223e66faeced81fd:log:92', 'hash': '0x0b8fa11ad1755becf743e5b46cdff4393f81cc1869d282a9223e66faeced81fd', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x34695287d7ea674a510dda1399d3972a18a9337b', 'value': 0.00013814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xf1041231939c181ed23d796c500fe580b7cf2cf473a2500eb7fbd2d8ae953a63:log:93', 'hash': '0xf1041231939c181ed23d796c500fe580b7cf2cf473a2500eb7fbd2d8ae953a63', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3481e7ccf16870f3f6638361ac73caab6ee934b6', 'value': 0.01381449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x151449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x86055b7ed0b7e9973eea05c294f8517f9f5be29d457ae61d7f65c05bfce21b2e:log:94', 'hash': '0x86055b7ed0b7e9973eea05c294f8517f9f5be29d457ae61d7f65c05bfce21b2e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x348d8adf39e1fc19be932b3f2917c21c825dd978', 'value': 0.00063546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf83a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xa8d050054b62673297ff87a2d50419fa091353313b3d0a4e1c4061e4c40d59ce:log:95', 'hash': '0xa8d050054b62673297ff87a2d50419fa091353313b3d0a4e1c4061e4c40d59ce', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x34fb1f09c370f9810070a8d2df766afabaf91a76', 'value': 0.002383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03a2dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xeaa9605343ffa620389afb96c638f88329eb87e7c04831085b4fd4878cbfd2f4:log:96', 'hash': '0xeaa9605343ffa620389afb96c638f88329eb87e7c04831085b4fd4878cbfd2f4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x34ea47ac6dbeb55482a029dea7f20fe675ecd2a5', 'value': 0.01471243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16730b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x7b2f41fa8481f489c1af20ecdf4e0a2de9f697e661c02d0118b4ddd59e914752:log:97', 'hash': '0x7b2f41fa8481f489c1af20ecdf4e0a2de9f697e661c02d0118b4ddd59e914752', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3512ffd48d3f89866ff873fc0637c94443ef77c1', 'value': 0.00031082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x796a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xc779a779395fdb3993b94347cafd9bcba2bcb786d1d5c1483c00bdf67ef7f975:log:98', 'hash': '0xc779a779395fdb3993b94347cafd9bcba2bcb786d1d5c1483c00bdf67ef7f975', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x357bdf2a8b28eda9374cc3dbb6cc29310eab6c10', 'value': 0.56870829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0363c7ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x21dc662da5e6d3287319841b96936306a9d685ad973b22b771ddb43eb9ee0f96:log:99', 'hash': '0x21dc662da5e6d3287319841b96936306a9d685ad973b22b771ddb43eb9ee0f96', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x35a98c72d40cae37fb6120d584a5858452868042', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x0181371ba6c1e5d07159496d80edd89d2f1093706c3f75b05c4d46925735ebd8:log:100', 'hash': '0x0181371ba6c1e5d07159496d80edd89d2f1093706c3f75b05c4d46925735ebd8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x35ee023dee15dedf0f3b3ca5885ab457d2b8037d', 'value': 0.00262475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04014b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x39351547ba0f1348cb0b2b370858897f1ff52d2c39e1a8456a574511ae0fe341:log:101', 'hash': '0x39351547ba0f1348cb0b2b370858897f1ff52d2c39e1a8456a574511ae0fe341', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x35a6623588b2f97ff5ad4c0526567997fd212eea', 'value': 0.01333098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14576a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x07e549a654a2c9e7da4b4822d9ee823fd13a1294db3dd584bb03dd8e140ff338:log:102', 'hash': '0x07e549a654a2c9e7da4b4822d9ee823fd13a1294db3dd584bb03dd8e140ff338', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x36b34c106746e8b44af3124409805e9c17a36dad', 'value': 0.0348816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3539a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xa0d3dae26be0d2fa5cb12dba1d51b16118143e10c4ecf70a01a1544662de69ef:log:103', 'hash': '0xa0d3dae26be0d2fa5cb12dba1d51b16118143e10c4ecf70a01a1544662de69ef', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x36dcf60deda3ec2b90bbcafa4886d334f4eeed86', 'value': 0.36439189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x022c0495', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x2e3af07ec32c8e1b437e5299293f16636e8f573ada5b2838eaede1a731bdfbea:log:104', 'hash': '0x2e3af07ec32c8e1b437e5299293f16636e8f573ada5b2838eaede1a731bdfbea', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x36a163ae5b3d370273cc178338137609b0bf0c73', 'value': 0.02623372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28078c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0xcbe941f3acff7b08bb78b6be40694d86e7a21f810ddb4dada18e0446dddf07fa:log:105', 'hash': '0xcbe941f3acff7b08bb78b6be40694d86e7a21f810ddb4dada18e0446dddf07fa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x36d4a91ebd99a313f5cb4060e84a96d7ac573ba4', 'value': 0.03805893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a12c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x99e5ddb6a9bb1c02261e12a48ba4ffbba4878ca54f67dfa39379c201c5e8694d:log:106', 'hash': '0x99e5ddb6a9bb1c02261e12a48ba4ffbba4878ca54f67dfa39379c201c5e8694d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x372e9546f3b0261ca0dbd2a4eb0b82d29662a3d6', 'value': 0.03115169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f88a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x39cc1ef32d52618bfb353eac679cb1a1c9e129571c8332797ba00684d89aa54a:log:107', 'hash': '0x39cc1ef32d52618bfb353eac679cb1a1c9e129571c8332797ba00684d89aa54a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3787c57dc7a951c6e954cb64c121a6c9b1a41b21', 'value': 0.0646173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x629922', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x8104331289a459f82fcdb8dd8d3ddeca4003c73dd5c7980714f2afdda8ca77a5:log:108', 'hash': '0x8104331289a459f82fcdb8dd8d3ddeca4003c73dd5c7980714f2afdda8ca77a5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x37ab4f0b9cf56f720d28aa9b94ccd17e4b4d0620', 'value': 0.00066309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010305', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x78c34534d482aa6e95755b34721c674bc593a0f5826b446bc06d5c3904ff6ef1:log:109', 'hash': '0x78c34534d482aa6e95755b34721c674bc593a0f5826b446bc06d5c3904ff6ef1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x388f7f9f6a9c1eede50754d01584b709d0315bf5', 'value': 0.00127093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f075', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x8c226fbca79dae956d73a2a9bf0600dec8b3dc1220daa4233e68cf4495849522:log:22', 'hash': '0x8c226fbca79dae956d73a2a9bf0600dec8b3dc1220daa4233e68cf4495849522', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x38c4f8b6a9fba073120ce0ae9104b755d346fc1e', 'value': 0.00024866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6122', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x9c44bfc02a8a5d74d1cbe87778a0ffc89c6724fe0230cb297530485cae841b5d:log:25', 'hash': '0x9c44bfc02a8a5d74d1cbe87778a0ffc89c6724fe0230cb297530485cae841b5d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x1fc44f21ba30d6dfb0595d281fcb9f4ae7756875', 'value': 0.01262491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13439b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x74db4e48cf16546c04a7184d3cf849e5701124aa8e7aa45ea6f119e1027ac0c9:log:26', 'hash': '0x74db4e48cf16546c04a7184d3cf849e5701124aa8e7aa45ea6f119e1027ac0c9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x205d9063450191cae5cb955cc754762ade8b17a4', 'value': 0.0054342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084abc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x2cf9613a906fd85dbad497cc7053b00599f78600461823965ee69a0cd80af5c6:log:27', 'hash': '0x2cf9613a906fd85dbad497cc7053b00599f78600461823965ee69a0cd80af5c6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x20e1d9a6efe246b2491983b59ceb77e3e0a8d7a9', 'value': 0.00074102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012176', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0xab0c50988c9000f674a4a845c1fda39c75e116a3e0cbc3e92aeef68c0a7c036b:log:28', 'hash': '0xab0c50988c9000f674a4a845c1fda39c75e116a3e0cbc3e92aeef68c0a7c036b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x20f5c037c374098afc8e5c451f9ee7b97ed46f92', 'value': 0.00212702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033ede', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f0309', 'uniqueId': '0x95bcd31330682e12e8aa38647518b707f1d2ffeabe027f35f7a8ca357ea52fd8:log:29', 'hash': '0x95bcd31330682e12e8aa38647518b707f1d2ffeabe027f35f7a8ca357ea52fd8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x20f53ce559324b7859b34b5eed66df3a9886e2e2', 'value': 0.00872766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d513e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:21.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0x48a5942b2ae9a4f8ae2df9fb5d6226a7546749173e62ec4963177d43472a74c8:log:138', 'hash': '0x48a5942b2ae9a4f8ae2df9fb5d6226a7546749173e62ec4963177d43472a74c8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x38d5e0befd52a6e50a4a18f06b788f5af0cfc8cb', 'value': 0.77703091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a1a7b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0x1ec21dc95417e25e8a385e60bff4119dd3e80b595b0e6fd04f8f64c913f3dea1:log:139', 'hash': '0x1ec21dc95417e25e8a385e60bff4119dd3e80b595b0e6fd04f8f64c913f3dea1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x38f433ceaaacdf9fa939f9fb2e0257ea61725e31', 'value': 0.03557232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x364770', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0xe931eb734c758d0c3bbcbfcded02f898dc34221d8ce30525b70eecfc965f56f7:log:140', 'hash': '0xe931eb734c758d0c3bbcbfcded02f898dc34221d8ce30525b70eecfc965f56f7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x38b326f35fafcf697bda7511705e68ce29123ec5', 'value': 0.03881873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b3b91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0xdab3638c9a4ccfbd4b9b9a6cfa816f250f73556696ebce9ecfaf11a1be4ff20e:log:141', 'hash': '0xdab3638c9a4ccfbd4b9b9a6cfa816f250f73556696ebce9ecfaf11a1be4ff20e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x215eefa97889a0235135c65facfcce13d861ebb0', 'value': 0.00038423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9617', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x94589ddb0ae3d668f567ea960d685ac7c63abb1e25c750ace8df5f5daa15674e:log:115', 'hash': '0x94589ddb0ae3d668f567ea960d685ac7c63abb1e25c750ace8df5f5daa15674e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2162634ca9755479b74f4f88d207242667f771ad', 'value': 0.00473434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07395a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0xb7e0cb1967a05b326481fbbb680943423e5528c177a23ad1afafbcc75ea283d1:log:116', 'hash': '0xb7e0cb1967a05b326481fbbb680943423e5528c177a23ad1afafbcc75ea283d1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x218c59cdcd00e616b3e8281bb4956c5e55ed2a72', 'value': 0.01286506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13a16a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0xf6521ff7370819ff16dbbee9ca1c874bba99395492320f84798c7f9f3fa2c1bf:log:117', 'hash': '0xf6521ff7370819ff16dbbee9ca1c874bba99395492320f84798c7f9f3fa2c1bf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x21bee34c6ecfb2d173246c850153d34ab6972c13', 'value': 0.00590077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0900fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x999fa7ccb65e558bb1a573f67cb87f78679c15b505b45dd911a412b77639b1d7:log:118', 'hash': '0x999fa7ccb65e558bb1a573f67cb87f78679c15b505b45dd911a412b77639b1d7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x21a693a7b998589c5308c44817588f7508729b96', 'value': 0.0006038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xebdc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x24a32bd2048caa754f303ba43946c62e7a1968fa88ee5a955095af2dc741cd0b:log:122', 'hash': '0x24a32bd2048caa754f303ba43946c62e7a1968fa88ee5a955095af2dc741cd0b', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x05354611d2c7307e1a7ce6abefbc6a8193ecab8e', 'value': 0.00349434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0554fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x976f6d63e1201a7e68e0b412e59082f87b38e84802a8e49b5ec33a03d8d765fd:log:123', 'hash': '0x976f6d63e1201a7e68e0b412e59082f87b38e84802a8e49b5ec33a03d8d765fd', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x05b8a57c01ff427df8bc4a8e9622e0c5e6cd3932', 'value': 0.77864132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a41cc4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x12afeeee52dc3ad6bf40f32bc4ff47958c9032fbb953d29110cb47c93c34f93d:log:124', 'hash': '0x12afeeee52dc3ad6bf40f32bc4ff47958c9032fbb953d29110cb47c93c34f93d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0612ea07df480b06bef72a2591afe76c1be7f494', 'value': 0.23416263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01654dc7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030f', 'uniqueId': '0x30aa664b09d11cca12347fcd440e208a9b9a69a1ef09b5a61679a93a30eec63b:log:5', 'hash': '0x30aa664b09d11cca12347fcd440e208a9b9a69a1ef09b5a61679a93a30eec63b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 41760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03cc4cff2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:48.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xb3212ce01f060bf763518d4c9f4cde3d12c56273a9d7b9eb5509d4f21890e6ab:log:59', 'hash': '0xb3212ce01f060bf763518d4c9f4cde3d12c56273a9d7b9eb5509d4f21890e6ab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x21ae694cc0e60ba2da6197b65ee72a5de1bb67a4', 'value': 0.01420303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x15ac0f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xf018482e25d7c244cda4f03539dce1e3f1751ed9c783214b04fce160a6063724:log:60', 'hash': '0xf018482e25d7c244cda4f03539dce1e3f1751ed9c783214b04fce160a6063724', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x21d0d2216fd306803260abd43367dac2f36003b6', 'value': 0.01138987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11612b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xf1901730b2d5145b3bfd1db7b5a68479f6916f9e19248e322635831df9b9da43:log:61', 'hash': '0xf1901730b2d5145b3bfd1db7b5a68479f6916f9e19248e322635831df9b9da43', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x220ba70e7ace7c799bfb643f148087e81a04c6de', 'value': 0.02398048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x249760', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x520592908ff0fadee7dd14d171ad2c520d485707ee5748c36acf26d654022d86:log:62', 'hash': '0x520592908ff0fadee7dd14d171ad2c520d485707ee5748c36acf26d654022d86', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x224835890c0f377366ab57ef2a1a6e0d53258afe', 'value': 0.01830613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1beed5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xce022118bd15c57abdf9960ddd0c71cbd80c548d2f5e09762356b93aac35783e:log:63', 'hash': '0xce022118bd15c57abdf9960ddd0c71cbd80c548d2f5e09762356b93aac35783e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x22b521db01bf5da475fe8afaec000f7d05435947', 'value': 0.0135855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14bad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x906d6f61afe5e3d9a027dc9182c04777295a98d481b3f7209e12cb425f3ffc46:log:64', 'hash': '0x906d6f61afe5e3d9a027dc9182c04777295a98d481b3f7209e12cb425f3ffc46', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x22f247b071b697bf904b9f3fd7e2f28b352716d0', 'value': 0.00583216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e630', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x327d8b74b48107c59473abfebe60e992479d59fa59157ee4fc1c6da385550574:log:65', 'hash': '0x327d8b74b48107c59473abfebe60e992479d59fa59157ee4fc1c6da385550574', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x22f6799c9b10dfcff14da9a6d434810cddff7c72', 'value': 0.03835504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a8670', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xafb309b87f66c2933cc7ea252b8957f0cbe2acfadcfd800bddd17ea214f86d15:log:66', 'hash': '0xafb309b87f66c2933cc7ea252b8957f0cbe2acfadcfd800bddd17ea214f86d15', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2305ab379e5bd340c35b6dafa9c2208402518f00', 'value': 0.0105665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x101f8a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x2ed0e44d42155c02b37e0eccb057ba3607d3fd5d411f77475d8560b7899bb156:log:67', 'hash': '0x2ed0e44d42155c02b37e0eccb057ba3607d3fd5d411f77475d8560b7899bb156', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x232b2a2820ac4119f31960746e3403997612164c', 'value': 0.01646728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x192088', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x4691491212fe6b1fe358ffca54983fb77ee1faec5e97a179fc8b26bf485fd0e8:log:68', 'hash': '0x4691491212fe6b1fe358ffca54983fb77ee1faec5e97a179fc8b26bf485fd0e8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2344cbbccd41759bd140cf7645bbec1dba9c05e0', 'value': 0.00568121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08ab39', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x7940bec48f211560e544f678a755c82351d7ca2a72a1a1c56988e14f6f6c502a:log:69', 'hash': '0x7940bec48f211560e544f678a755c82351d7ca2a72a1a1c56988e14f6f6c502a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x234e4b988df2d1b1f20a3b947e591813e074b507', 'value': 0.00476865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0746c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xadd040afb278f9537cccadb2f154446e99ddba67bd36414f0bdd36911ea313e6:log:70', 'hash': '0xadd040afb278f9537cccadb2f154446e99ddba67bd36414f0bdd36911ea313e6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x238062b9601fba8238b5642e69282607dff60dff', 'value': 0.00692998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a9306', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x4cf91d4a26814a941e7ea8358f272d6a11d846ba8b3faec45aa38559180df8ef:log:71', 'hash': '0x4cf91d4a26814a941e7ea8358f272d6a11d846ba8b3faec45aa38559180df8ef', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x238e5c464bd4011bff06dc81fa3763f5ff0656fd', 'value': 0.00514602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07da2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xe78b89d0b1b298833dbf3c6201e555a6ab2a1075ae4ac7ab758796db5da65d48:log:72', 'hash': '0xe78b89d0b1b298833dbf3c6201e555a6ab2a1075ae4ac7ab758796db5da65d48', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x239bdf8e418068babb4073f1b34c4d9e3309096d', 'value': 0.0010292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x019208', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xfd43bfd01f0317ac914e75f10675a19f0f19a1e4f1787227849eed06f203a9a7:log:73', 'hash': '0xfd43bfd01f0317ac914e75f10675a19f0f19a1e4f1787227849eed06f203a9a7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x23cb4612432fcfffee616c83c0ad90422d633103', 'value': 2.744e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ab8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x3db84cd0dd888a8cd0fcdbdce44294b375af44750ae71c306680d666086f70f9:log:74', 'hash': '0x3db84cd0dd888a8cd0fcdbdce44294b375af44750ae71c306680d666086f70f9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x23dfbc4c028c072df5706492fc09dc85a91fde1d', 'value': 0.00212702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033ede', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xefedddce3969d601b445b729719f4480fb83b7209f536d597a7e6d98fb21ab43:log:75', 'hash': '0xefedddce3969d601b445b729719f4480fb83b7209f536d597a7e6d98fb21ab43', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x242fc9a0f065d4664483c592372783514ca88e0e', 'value': 8.233e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2029', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x496566835bb35684e709db1880e5522dd7bb9a55b972c69b3c1fa0555dfc6bb5:log:76', 'hash': '0x496566835bb35684e709db1880e5522dd7bb9a55b972c69b3c1fa0555dfc6bb5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3917c9627812351b9b60054affd8e0860c6dc931', 'value': 0.00052495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xcd0f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x15184a2715ce1eff7a2ac650cce9cd47e6509c87ff35bb10e8347000ad354248:log:77', 'hash': '0x15184a2715ce1eff7a2ac650cce9cd47e6509c87ff35bb10e8347000ad354248', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3922c384c307051add80079d8f7e35faf0c9016d', 'value': 0.02165422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x210aae', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x5b6160ad0ceafff4723d96d54771bb24988df757b3e7953dd5f09c7943643d60:log:78', 'hash': '0x5b6160ad0ceafff4723d96d54771bb24988df757b3e7953dd5f09c7943643d60', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3947c871966085a06a807a2baf6fc34181de0eb5', 'value': 0.02617847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27f1f7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x63faa1a478b2af53829dc35a08f7af32b5ee72e288ac7f72a253846324365d6a:log:79', 'hash': '0x63faa1a478b2af53829dc35a08f7af32b5ee72e288ac7f72a253846324365d6a', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3a038df468c6d1da4618d5f9e74b60390c7c93df', 'value': 0.41139571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0273bd73', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x9ca6ab07ff210806e7de02fbc1a41de7603c69363b50b1308575a92bfbc67a2d:log:80', 'hash': '0x9ca6ab07ff210806e7de02fbc1a41de7603c69363b50b1308575a92bfbc67a2d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3b18432bba473422d552251231bb2a994e281ab4', 'value': 0.00110515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01afb3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x0cd079b2a7401ef8df8881e574bf5d8b32b56f816948d19cfe96da05b51f3355:log:81', 'hash': '0x0cd079b2a7401ef8df8881e574bf5d8b32b56f816948d19cfe96da05b51f3355', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3b1942c3557a00ac0b7dcb679a261cf5b42ed430', 'value': 0.30374624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cf7ae0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x2683a908bc97ab2d6091606b9ff28b8e48e11f81a7ad9b4ecdec0df2fbab7d10:log:82', 'hash': '0x2683a908bc97ab2d6091606b9ff28b8e48e11f81a7ad9b4ecdec0df2fbab7d10', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x24cfaf6ad0fb977fead1f1205601d55502ef6b98', 'value': 0.00497449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x079729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x3862362dad2d0be21cda6e675200b8582788d92227d65d75b1843fe9c05c3ace:log:83', 'hash': '0x3862362dad2d0be21cda6e675200b8582788d92227d65d75b1843fe9c05c3ace', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3b74256958a303c531e7138d0be5398781e8bebb', 'value': 0.00417888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x066060', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xe43ae950e0e5c8755146bfcf1dc36a2b4d268714b0ee2dbdfbebb3933483b5f0:log:84', 'hash': '0xe43ae950e0e5c8755146bfcf1dc36a2b4d268714b0ee2dbdfbebb3933483b5f0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3be0d421c69d0fb10e48b48b5e2846b9a05e0b31', 'value': 0.01198407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x124947', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xad9f694c7e31e0f7a2d6620b65c3ea5a7b68a57d9705f0218793549c0ae62ac2:log:86', 'hash': '0xad9f694c7e31e0f7a2d6620b65c3ea5a7b68a57d9705f0218793549c0ae62ac2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c3323413576a6a6dca55f7061373fa3789b7712', 'value': 0.45090517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b006d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x8479f115f31ca800fc63acaf9d723edfe201344fa9964af5c864ab7b3998e581:log:87', 'hash': '0x8479f115f31ca800fc63acaf9d723edfe201344fa9964af5c864ab7b3998e581', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c47f46a0b86d9f9c3778213962aea3ca2affe62', 'value': 0.21067107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01417563', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0xc28d29f8a41fdfc88a9afa4f2fda5cce3ac5df3026fce55a0fe765fe97fa065e:log:88', 'hash': '0xc28d29f8a41fdfc88a9afa4f2fda5cce3ac5df3026fce55a0fe765fe97fa065e', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x06905a108f968a4558553d5feeae25014c8e6da7', 'value': 0.92657333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0585d6b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x1c018c81365c801856e92a7d74ee0d1037455fbe0e283c5ce61a03d29b3cdace:log:89', 'hash': '0x1c018c81365c801856e92a7d74ee0d1037455fbe0e283c5ce61a03d29b3cdace', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2632b0a88efdd5bb9039d3721dc38606cdf495db', 'value': 0.01012051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f7153', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x23df667048a623f988db8046fffccafc851bcfa31424f6337272bcae38749d5e:log:90', 'hash': '0x23df667048a623f988db8046fffccafc851bcfa31424f6337272bcae38749d5e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x263eaa960e8e961bb530e3b2a50adcef68c6600d', 'value': 0.02833745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b3d51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0315', 'uniqueId': '0x9f967fdaeb1c77106801914fcf24cc2d9a6ce7086c2f09a4a975ab01893ee3ce:log:91', 'hash': '0x9f967fdaeb1c77106801914fcf24cc2d9a6ce7086c2f09a4a975ab01893ee3ce', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c73e018013e813c957840d2b29191599579c661', 'value': 0.21134108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01427b1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:49.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xdd256c1b8537b219666d0c32ed60fe29cc11dce071f83696201c1e6b3b4d534c:log:118', 'hash': '0xdd256c1b8537b219666d0c32ed60fe29cc11dce071f83696201c1e6b3b4d534c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c96bb7df2a71a2d8160e3233e0558db33ea84bd', 'value': 0.05616974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55b54e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xfe078318f48b5c7966eb0f026ba09b248a580d0ce72076fc92a23882ff782514:log:119', 'hash': '0xfe078318f48b5c7966eb0f026ba09b248a580d0ce72076fc92a23882ff782514', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x26407009be8dd15d90a2014264042f75f549c75d', 'value': 0.00658691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a0d03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x8aa2c3c7cd570561c5c1d54f25edcc4d47d5adb49f6eb3abdaf467778704fcb7:log:120', 'hash': '0x8aa2c3c7cd570561c5c1d54f25edcc4d47d5adb49f6eb3abdaf467778704fcb7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2673f2cab5397d41ec8b69a6f0159d53e051cdcb', 'value': 0.00038423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9617', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x3aefa869b7e2cf3b2676a851d96ba00043c6dfaeaaeb63bf6e32945febca8eda:log:121', 'hash': '0x3aefa869b7e2cf3b2676a851d96ba00043c6dfaeaaeb63bf6e32945febca8eda', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x26ef6cf6b1657667c6b57db88bb623592da51db0', 'value': 0.00607231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0943ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xd195a7512467069a7f9f5aa2a91ede148b5bb2e6a7e20a41716039d9b1e3774b:log:122', 'hash': '0xd195a7512467069a7f9f5aa2a91ede148b5bb2e6a7e20a41716039d9b1e3774b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x27002683b93dd81b51f11c30d708a99ececfc8de', 'value': 0.00583216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e630', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x718b864f53ad1766aaec8dbcfef779161327f7deac823f8808ca208750915d9d:log:123', 'hash': '0x718b864f53ad1766aaec8dbcfef779161327f7deac823f8808ca208750915d9d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x27056d262c32383bd565e4f8872f9910863128e9', 'value': 0.01289937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13aed1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x34c3535cc103b1d8bce04e18af5e60461e5b8828b51533aa6a8834cb1b6ae582:log:124', 'hash': '0x34c3535cc103b1d8bce04e18af5e60461e5b8828b51533aa6a8834cb1b6ae582', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2723b2e9c5b8f331e6a75d70acfcd523512a133e', 'value': 0.00200351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x030e9f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xd7eed418c13b504ad5e6c13cf80e434890d36e76d836366e256b2b858eac66fd:log:125', 'hash': '0xd7eed418c13b504ad5e6c13cf80e434890d36e76d836366e256b2b858eac66fd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2754b81741a35b41f295a4efdb75df9f1559a9ea', 'value': 0.00085767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014f07', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x944ee280f606b78a08d4e749556caac754495d1b5aa2f8d54c5028bb9db2b42a:log:126', 'hash': '0x944ee280f606b78a08d4e749556caac754495d1b5aa2f8d54c5028bb9db2b42a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x277f00050cf73582d3dd43a391abd8fa7e5d2d3d', 'value': 0.00013722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x359a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x707558c087609aead07a0bc104cbd55e707b808b6cd4ca296326009b418f2cbe:log:127', 'hash': '0x707558c087609aead07a0bc104cbd55e707b808b6cd4ca296326009b418f2cbe', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x27c12bf2b154b4bcfc5094aa3c2e3c1e00cabe58', 'value': 0.01492347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16c57b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x9e94d1cc3b409286c67e8e02a10d2bc5311d3167484e6471575bdf06efb9255f:log:128', 'hash': '0x9e94d1cc3b409286c67e8e02a10d2bc5311d3167484e6471575bdf06efb9255f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x288677b90e4f22737c2bcc0ae87e6ffe2d63007e', 'value': 0.00068613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010c05', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x81e25b591524365374ee40ad2fbabaf6230c150eb1cf64d9d8072cdcd176caf2:log:129', 'hash': '0x81e25b591524365374ee40ad2fbabaf6230c150eb1cf64d9d8072cdcd176caf2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x28b701c08f85b7d7ee036a71523c3a0687547b8c', 'value': 0.07972909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x79a82d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0x609cca8117a91943c6827962765e8e0932a8f2a14400cb9c786763602d732eab:log:130', 'hash': '0x609cca8117a91943c6827962765e8e0932a8f2a14400cb9c786763602d732eab', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x28b9c072fad52fc7948c3ac700c6dcc0f2eef2aa', 'value': 0.01337966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x146a6e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xa9d9dc2805f1f80461671df3d7b88889dc4c279e7d8a38aa3551598593888c0f:log:131', 'hash': '0xa9d9dc2805f1f80461671df3d7b88889dc4c279e7d8a38aa3551598593888c0f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3dcc883d12704f6676204168cb31b40d7ebdccf2', 'value': 0.12426139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbd9b9b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0317', 'uniqueId': '0xa2541c8b9658512e43bf201cf30480e492e085d3b88014386be618c252bcebe0:log:132', 'hash': '0xa2541c8b9658512e43bf201cf30480e492e085d3b88014386be618c252bcebe0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3ec9b53e899499e9d3f95643e46b7ab55574703b', 'value': 0.00035917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c4d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:29.000Z'}}, {'blockNum': '0x7f0318', 'uniqueId': '0x9f875bb5ac8fcb19214a14d10b84b4ce1d98d302baf702479c65974410dc8f64:log:27', 'hash': '0x9f875bb5ac8fcb19214a14d10b84b4ce1d98d302baf702479c65974410dc8f64', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2911474482845c0d9882aa75e7587b3872976398', 'value': 0.0165702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1948bc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:11:35.000Z'}}, {'blockNum': '0x7f031a', 'uniqueId': '0x17a2cf1aca3c38f61664f5d7bf4b3e4f266fd0eb2690c8e8afcc1ca6417fdcc8:log:67', 'hash': '0x17a2cf1aca3c38f61664f5d7bf4b3e4f266fd0eb2690c8e8afcc1ca6417fdcc8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f22861129b95af15de6a47bc4d8499bbb5fd238', 'value': 0.22638506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01596faa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:02.000Z'}}, {'blockNum': '0x7f031a', 'uniqueId': '0x29af87ec1fad5528083da025787ab57f008324cf20ad5a4b322b1bc84b5c45a8:log:68', 'hash': '0x29af87ec1fad5528083da025787ab57f008324cf20ad5a4b322b1bc84b5c45a8', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x06c0836681faaf9e1a03fff989f77cdf54050510', 'value': 1.11674019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06a802a3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:02.000Z'}}, {'blockNum': '0x7f031a', 'uniqueId': '0x9b8c01c7d49cd764efeac233b78777c4e900bef611ec61388e5edc8529e45166:log:69', 'hash': '0x9b8c01c7d49cd764efeac233b78777c4e900bef611ec61388e5edc8529e45166', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x06cc3dbf60203341ef75d0c977b5277a91ed0fc7', 'value': 1.16916918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06f802b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:02.000Z'}}, {'blockNum': '0x7f031a', 'uniqueId': '0x0322774b828ac25b8a76920c4358e1376d30689b26baffa211601fec1348df06:log:70', 'hash': '0x0322774b828ac25b8a76920c4358e1376d30689b26baffa211601fec1348df06', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x07262c9307259b33df069e98a6c79feff28c8606', 'value': 0.117666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb38b48', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:02.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0x99d2161456d5bd7c4b327e0bbfeb3bcc934f7588a17a0cc413bb3fc8da11762e:log:59', 'hash': '0x99d2161456d5bd7c4b327e0bbfeb3bcc934f7588a17a0cc413bb3fc8da11762e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x29351f71b3ff6ac63cd65117b79c1db39a32a4bb', 'value': 0.00230541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03848d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0x2165c568ec2dfb314e30c17eec5cc15191bb8d03194a0939c9eb08c00bbee3d8:log:60', 'hash': '0x2165c568ec2dfb314e30c17eec5cc15191bb8d03194a0939c9eb08c00bbee3d8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x296c6031252169b5b9f73cd86a41b2b4f67ca440', 'value': 0.00782195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bef73', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0xf5c0b2a8d9add91fce6268fed093435cc4edd440841ad16472d3cd8d75dfb0c9:log:61', 'hash': '0xf5c0b2a8d9add91fce6268fed093435cc4edd440841ad16472d3cd8d75dfb0c9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x29c504e3c6bfb8bfa095c476f8afc847da98dd25', 'value': 0.00137227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02180b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0xf40c8bf08c633c2093df1befc542a0ed4c0b118c71f1d042c8a0c5b24f39a287:log:62', 'hash': '0xf40c8bf08c633c2093df1befc542a0ed4c0b118c71f1d042c8a0c5b24f39a287', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x29ab00ccf1aedb576773d8846cd9cf8e14b28fa0', 'value': 0.01654275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x193e03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0x6f489da273fa2ada2939e28b372ce854a07545901894c503e9f06c5580165944:log:63', 'hash': '0x6f489da273fa2ada2939e28b372ce854a07545901894c503e9f06c5580165944', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f27729c0a3a3d28d46afc70d3a5bdf85b7af35e', 'value': 0.27504663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a3b017', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x443871225795738cbc65a6fff352765cb1e776f09ff750463eb92ccd621f4d94:log:97', 'hash': '0x443871225795738cbc65a6fff352765cb1e776f09ff750463eb92ccd621f4d94', 'from': '0x218c59cdcd00e616b3e8281bb4956c5e55ed2a72', 'to': '0x2ca4e5688b0c13e9516200563fdc1245455dde94', 'value': 158.90582591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b3270c3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x99e27f76970e0e1faf354248cb714e22dfc06dee70789178812e40e1f2173465:log:159', 'hash': '0x99e27f76970e0e1faf354248cb714e22dfc06dee70789178812e40e1f2173465', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3fcd71225517650ea93a362dc68850c2f69578a9', 'value': 0.1188392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb55590', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0xe7eea9a7d2394b20fda689773737a4c2f6aa3d014ec0814ce0a916f571aa76d2:log:160', 'hash': '0xe7eea9a7d2394b20fda689773737a4c2f6aa3d014ec0814ce0a916f571aa76d2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3fdfdc23877f719280ebe72f65470574435526c5', 'value': 0.00065618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010052', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x982e74ca76580b529366f36a04538a3e638ebae1fcef8bc188e13b16cf71b53d:log:161', 'hash': '0x982e74ca76580b529366f36a04538a3e638ebae1fcef8bc188e13b16cf71b53d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3a04d6336f0948636801ae398b7478f4927ee5cc', 'value': 0.0075289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b7cfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x9c48ee9ed2dacc32127d1a667b6875dbf774e431d0d03a835b3b7026c2e92cb3:log:162', 'hash': '0x9c48ee9ed2dacc32127d1a667b6875dbf774e431d0d03a835b3b7026c2e92cb3', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3afca76f6a97649a3fde05f133d7ae1ed2b581fb', 'value': 0.00768086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bb856', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x19662ce19a7065b45da8d22d32c4ea0f60c58e141573e1a08ad6440f62cd9906:log:163', 'hash': '0x19662ce19a7065b45da8d22d32c4ea0f60c58e141573e1a08ad6440f62cd9906', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3bab3ee9f80717e1a46fc08558fa5605ad6b777d', 'value': 0.00403383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0627b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x7bc8de72cbe88a3005a7f04e5e2a500372460e94ca14da3490c214bf7131a211:log:164', 'hash': '0x7bc8de72cbe88a3005a7f04e5e2a500372460e94ca14da3490c214bf7131a211', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c438e7aab4e09045d6a4b5314f431844bc66677', 'value': 0.00127093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f075', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0xa97e3dcff01d67bc1da0d4daf3940eb0c269683adcd5609ea62dce7306baed8f:log:165', 'hash': '0xa97e3dcff01d67bc1da0d4daf3940eb0c269683adcd5609ea62dce7306baed8f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2a1a9d6373eb2864270d337f3c35f40ead3f0cad', 'value': 0.0048304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x075ee0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x0104e647a4157593e02a93c7e878ccedd4be80da97a07811e7bef109739cda3e:log:166', 'hash': '0x0104e647a4157593e02a93c7e878ccedd4be80da97a07811e7bef109739cda3e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2a5a65ae17cf031ab6838ecb40b91a82c413947d', 'value': 0.00322484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04ebb4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x5f3332dbbcc8d2840fd09082ef4117197300eada0779418e1cc7129ec24da393:log:167', 'hash': '0x5f3332dbbcc8d2840fd09082ef4117197300eada0779418e1cc7129ec24da393', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2a7f0b143121bd314389a9f8a481ef38f01f49b8', 'value': 0.00274454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x043016', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0xee771abeddb433b9b13a903a00bd1a44e9dcc4dee706b1bf3f8e5c24add77192:log:168', 'hash': '0xee771abeddb433b9b13a903a00bd1a44e9dcc4dee706b1bf3f8e5c24add77192', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2ac2e618d183a8f49ba12cf973e8482524cc21a8', 'value': 0.00075475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0126d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0323', 'uniqueId': '0x57a743fdc39efe4e961dd97ab205a219e6de48ac6cfc6a7bfabcf26a8a0e54c3:log:66', 'hash': '0x57a743fdc39efe4e961dd97ab205a219e6de48ac6cfc6a7bfabcf26a8a0e54c3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2c1b57bf0d868cc8e2807dab7e364f74b32b6797', 'value': 0.00514602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07da2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:56.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x4e78040a69bfad56de6f129468852233b87b68595eb9065d6b271cb2d63b269d:log:44', 'hash': '0x4e78040a69bfad56de6f129468852233b87b68595eb9065d6b271cb2d63b269d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2de7d9f9e119b9d7b4a855af83a39d671c4f0459', 'value': 0.00765042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bac72', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x99bb86161f8d373d29b8612606b54f9bebd521ddab05fdb55454a6b92deb7c7a:log:45', 'hash': '0x99bb86161f8d373d29b8612606b54f9bebd521ddab05fdb55454a6b92deb7c7a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2dd407f2bf94ebdf97e9281de7704348f01b0a61', 'value': 0.01945197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dae6d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0xbe8d1296a4ccebcd74dc5c6de274e1c6327c48f6a34b96c27ad95e6091b66668:log:46', 'hash': '0xbe8d1296a4ccebcd74dc5c6de274e1c6327c48f6a34b96c27ad95e6091b66668', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3c8e01ef63823df650ba4409ee10b1fb7fb47d06', 'value': 0.00093247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016c3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x46a73d7cb35734652d1a75b0223225c3cab7cc494162290947be83bcfc8d2bf7:log:47', 'hash': '0x46a73d7cb35734652d1a75b0223225c3cab7cc494162290947be83bcfc8d2bf7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3d2ddf3c389e534b29d8773243c38786f8b1f600', 'value': 0.0067691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a542e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0xb5b980a4baafd08ddab52aa4d3d52a8e2a0a784d55278f96ed1c8fe7200360b4:log:48', 'hash': '0xb5b980a4baafd08ddab52aa4d3d52a8e2a0a784d55278f96ed1c8fe7200360b4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3d4aa9b18320a8dd0587c3bc57640c9aaeb4eca4', 'value': 0.03184241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x309671', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x560f359b3170d8d94dccd16940939b6fb0ce5d99795add0fa0cb17bc67a7be25:log:49', 'hash': '0x560f359b3170d8d94dccd16940939b6fb0ce5d99795add0fa0cb17bc67a7be25', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3d7934a0f7e603566d4f4bdf9db0dbbedc4dd6fe', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0327', 'uniqueId': '0x31ae60439ebc4107d3b20ac7d35b036265caee38eb8504d5fbb756e623972b1b:log:50', 'hash': '0x31ae60439ebc4107d3b20ac7d35b036265caee38eb8504d5fbb756e623972b1b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3dc523ea5c95bf21f8195d5910b302e4f1235840', 'value': 0.00075979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0128cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:19.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0xcc1c56a6d4a829339eff42ee2f78bc5a364875ccadca362daf4af609bacab3f7:log:54', 'hash': '0xcc1c56a6d4a829339eff42ee2f78bc5a364875ccadca362daf4af609bacab3f7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e22bc9b96ab3f77c8d6e33b5085c47b9836ade3', 'value': 0.01416872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x159ea8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0xf628d919b391173de470912db60c6d48b9a83fdfe589a19b35c469dab6d664a7:log:55', 'hash': '0xf628d919b391173de470912db60c6d48b9a83fdfe589a19b35c469dab6d664a7', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e23a041ae4a7d7c72625bed2ac74d0fabc66b8e', 'value': 0.00830225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cab11', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0x94252c20c560a03c16b55cb20fb36f1e1f632d5c41d34287ffe3d0fe0f3ee859:log:56', 'hash': '0x94252c20c560a03c16b55cb20fb36f1e1f632d5c41d34287ffe3d0fe0f3ee859', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f071599ea475de9887aa27d09dd87b8d897d83b', 'value': 0.01856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1c5200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0xb07317fcffd55033ddb1f415134c60330db623621b3fb53416968d40b8c11cfe:log:57', 'hash': '0xb07317fcffd55033ddb1f415134c60330db623621b3fb53416968d40b8c11cfe', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f0ec33bb07c71cba29d3795f5e209232477d132', 'value': 0.01173293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11e72d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x0e8696a86fc2bb3be99c7a95ac553d61499d25edb65068a3a637f451c38d8184:log:106', 'hash': '0x0e8696a86fc2bb3be99c7a95ac553d61499d25edb65068a3a637f451c38d8184', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f6102a60813af809c8da5f46ceb1d022dd718f2', 'value': 0.00307389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04b0bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x763ef98f9e66e74391fcb81f33bec25b98f6057b410041de9515a54955f54656:log:107', 'hash': '0x763ef98f9e66e74391fcb81f33bec25b98f6057b410041de9515a54955f54656', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3e5487f7df3e608593bdde7f7f22d27604392d08', 'value': 0.09929169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9781d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x2602dfe60552c6fc3330010503c4241c1bae401da59484b6cfbd49f5ba4c7d41:log:108', 'hash': '0x2602dfe60552c6fc3330010503c4241c1bae401da59484b6cfbd49f5ba4c7d41', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3e6c753cb00f0c9f363d4ac4ec60388fa74b01ad', 'value': 0.02092896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fef60', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x46df62ef57930ccff60d20e01884e791ee67597e437f94fe3c66826ece110862:log:109', 'hash': '0x46df62ef57930ccff60d20e01884e791ee67597e437f94fe3c66826ece110862', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3ee83180ecaaa7143a9bfb6a05a67cd9acf9c7ba', 'value': 0.03830069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a7135', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0xf08887457d010d4b3807c895c7fa78339a6810220150f495e40c7ceab8d9385e:log:54', 'hash': '0xf08887457d010d4b3807c895c7fa78339a6810220150f495e40c7ceab8d9385e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2a2df30228a6da366560ce11759a10be57d1623c', 'value': 0.00636734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09b73e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x272c00124e563361550b60b9d28c4b76b885682a92ac834500b4ab53ff1123ef:log:55', 'hash': '0x272c00124e563361550b60b9d28c4b76b885682a92ac834500b4ab53ff1123ef', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2b9caf5ee04938e39c8d66cd8d780efc2dccb473', 'value': 0.01653589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x193b55', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x5c5c4b5760b83d8e3b3ff602d4f3f16a617833278f54a0b8c23a1199e0fd5e01:log:56', 'hash': '0x5c5c4b5760b83d8e3b3ff602d4f3f16a617833278f54a0b8c23a1199e0fd5e01', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2c12abe41a0a1f53bf91636a1223b02b5ec66793', 'value': 0.04037915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d9d1b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x32e0f5640d2a077c2c6f5ef785490c8cc74f10c226db40c921cc94b60f2e29c8:log:57', 'hash': '0x32e0f5640d2a077c2c6f5ef785490c8cc74f10c226db40c921cc94b60f2e29c8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2c5eccdcf6d91bc773608f61584b0cd1c05a880f', 'value': 0.00041168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0xf53cfc2eb496a0b6ed480c7fb5e6e6f6728e2db32d647a08ac8510587697cdc8:log:58', 'hash': '0xf53cfc2eb496a0b6ed480c7fb5e6e6f6728e2db32d647a08ac8510587697cdc8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2ca4e5688b0c13e9516200563fdc1245455dde94', 'value': 0.02041257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f25a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0xc937939cfaa876885b07877162dbbd94a36977e8d77ec0049c1c1ce5e5ba6340:log:59', 'hash': '0xc937939cfaa876885b07877162dbbd94a36977e8d77ec0049c1c1ce5e5ba6340', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2ca65a99b4b238f197733b2f9945a892f16ea306', 'value': 0.01830613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1beed5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x6276c4106c10e41331b17c9f08e1c049c9e85c6ae2709ef66ec6db20fee5d24c:log:60', 'hash': '0x6276c4106c10e41331b17c9f08e1c049c9e85c6ae2709ef66ec6db20fee5d24c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2cafe1abc991a42a67a502af7a7e63bba00c22da', 'value': 0.00717012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0af0d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x373bfd87c227ae5fed8d0baa8400d09c46334d140cd31e64f6c05a9fb6d6535a:log:61', 'hash': '0x373bfd87c227ae5fed8d0baa8400d09c46334d140cd31e64f6c05a9fb6d6535a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2d427cf50166142ab7acfb37baa2d59729cd2d12', 'value': 0.00813072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6810', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x231f23fd92ad0b4c1c1a785b216b994230295f2fa0df199c1167208791457472:log:62', 'hash': '0x231f23fd92ad0b4c1c1a785b216b994230295f2fa0df199c1167208791457472', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2d595febca85974c1e63b6775ab48da881598129', 'value': 0.00696428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aa06c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0xdd52eb7819ebed64af495df3ba780747585468467491e1b39bee09d0c6773aeb:log:63', 'hash': '0xdd52eb7819ebed64af495df3ba780747585468467491e1b39bee09d0c6773aeb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2d659edb6fe9eef60ce38dac4e7b568e14ae261c', 'value': 0.00895408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0da9b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x057f3900cad4188b9d00c4f8603164e71208bfd4a26f23cd192dd11bd94befa4:log:64', 'hash': '0x057f3900cad4188b9d00c4f8603164e71208bfd4a26f23cd192dd11bd94befa4', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2da1d79f7ac1c9f4f6e7cf0191bf7d272613ce88', 'value': 0.00658691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a0d03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x9ef9e5dc31711eda8fdc35bc5dbe4f35623f2f12631695f85e96ee521737b204:log:65', 'hash': '0x9ef9e5dc31711eda8fdc35bc5dbe4f35623f2f12631695f85e96ee521737b204', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2de5d6fab319897545b6dfb090a5ad350b9a9bf8', 'value': 0.01955489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd6a1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032c', 'uniqueId': '0x54fabe4bc93c832ab108baf0f1b8e157028a45fc1db207f773a330e4be0669d8:log:66', 'hash': '0x54fabe4bc93c832ab108baf0f1b8e157028a45fc1db207f773a330e4be0669d8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2da0a55876542e7d4fbe619b1b3a61826f65cb59', 'value': 0.00171534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x029e0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:33.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x063271c2bc7c097dc035b659e56636a04d32d4b68593f00028130eb42f9ccb9c:log:58', 'hash': '0x063271c2bc7c097dc035b659e56636a04d32d4b68593f00028130eb42f9ccb9c', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0774786db16c983a766753f100c9ba6347eafadc', 'value': 0.16214328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf76938', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x5bf16378ea86f87673d7e84e1fffef764e7aed3a51a43508f6c4a885feaa31c5:log:59', 'hash': '0x5bf16378ea86f87673d7e84e1fffef764e7aed3a51a43508f6c4a885feaa31c5', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0794cb97d146338f3f79bc874aa82399d659ef11', 'value': 3.439e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x2261632fc08f9816a4b7b7dc999d70b524d54831628f7eb645d749032aa82114:log:60', 'hash': '0x2261632fc08f9816a4b7b7dc999d70b524d54831628f7eb645d749032aa82114', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x07e43da10809c83407e9146bf7e99e261686b5c8', 'value': 6.19e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x182e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x38649403de9d450f6b82bf5f991f01640249fd7d2f8f8abe19e5ac1a3a950ab0:log:61', 'hash': '0x38649403de9d450f6b82bf5f991f01640249fd7d2f8f8abe19e5ac1a3a950ab0', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x07ecdc3082676ef14b085c49824e0d1a2d71ef8c', 'value': 0.33948148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020601f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x15f58ee05659206d4c88b9ff8e4bf39d2e6f9974214669810b953efc8404539f:log:62', 'hash': '0x15f58ee05659206d4c88b9ff8e4bf39d2e6f9974214669810b953efc8404539f', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x07f34c8f838736090d9ca8023a81cb3fba7a5a84', 'value': 1.24301137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0768af51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032d', 'uniqueId': '0x5c0d64859e3e4a71a442ebbe7ce606d0409f091664fcb8bd44bd2739e641366f:log:63', 'hash': '0x5c0d64859e3e4a71a442ebbe7ce606d0409f091664fcb8bd44bd2739e641366f', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0864e2bc8e5f7b4fcf4a6bd5fb65ac83264bec42', 'value': 0.68031117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x040e128d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:44.000Z'}}, {'blockNum': '0x7f032e', 'uniqueId': '0xee885a38cf523f4136467b1fb9f9a5a87d20aa0be2e103050a638ee68bbdb0e8:log:140', 'hash': '0xee885a38cf523f4136467b1fb9f9a5a87d20aa0be2e103050a638ee68bbdb0e8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f074bd7cb7d454800c66dd766fc29f989999181', 'value': 0.00341908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x053794', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:48.000Z'}}, {'blockNum': '0x7f032e', 'uniqueId': '0x4b788c3cc9322d358cd557c903700671237151e06c2cf341c72c6e0ba6159c49:log:141', 'hash': '0x4b788c3cc9322d358cd557c903700671237151e06c2cf341c72c6e0ba6159c49', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f6312fd939dcadf607c8eed886e0156faecda15', 'value': 0.06081832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5ccd28', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:48.000Z'}}, {'blockNum': '0x7f032e', 'uniqueId': '0x0ad2ad5fed11abc499fbe3c58c3dbe014d532954368f3dc3afcca7be30b562b5:log:142', 'hash': '0x0ad2ad5fed11abc499fbe3c58c3dbe014d532954368f3dc3afcca7be30b562b5', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3f663c6e63e8fa973f22787f852e1e00914e360e', 'value': 0.00207217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032971', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:48.000Z'}}, {'blockNum': '0x7f032e', 'uniqueId': '0x0241608574bf0987c87c042cef2f00fa65a80db1f8ab4e3c3399ca0c864e1689:log:143', 'hash': '0x0241608574bf0987c87c042cef2f00fa65a80db1f8ab4e3c3399ca0c864e1689', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3ff39298b96813099355626fc18153ad966e17ba', 'value': 0.26855381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0199c7d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:48.000Z'}}, {'blockNum': '0x7f032f', 'uniqueId': '0x7e85068fe393814613fb407a7f5684ea04174df64dccf891b81a8d856f116313:log:74', 'hash': '0x7e85068fe393814613fb407a7f5684ea04174df64dccf891b81a8d856f116313', 'from': '0x2ca4e5688b0c13e9516200563fdc1245455dde94', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 159.02086778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b3d6967a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:53.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x5c68b5308d23104c9b626c285282bc5aeacab885711db6deb334b20137265537:log:70', 'hash': '0x5c68b5308d23104c9b626c285282bc5aeacab885711db6deb334b20137265537', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e165ab77faab45db480a0eb0e416ba182de8c8d', 'value': 0.01554099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17b6b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xeec87c3783715549b9dbb1846c1d4d94acce691a1d92def2daa3a0615070de5b:log:71', 'hash': '0xeec87c3783715549b9dbb1846c1d4d94acce691a1d92def2daa3a0615070de5b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e228b8629ee0a139318ca4e05112660a00ed259', 'value': 0.00291608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x047318', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xd11b75a01c33fe4d4334b63f5e4fc58ae2ee150419e68113f20a0443e50fd1da:log:72', 'hash': '0xd11b75a01c33fe4d4334b63f5e4fc58ae2ee150419e68113f20a0443e50fd1da', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e2f5624b2f22e521a7474ffbcb597d22921e55e', 'value': 0.01814145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bae81', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xd7a5c24825498658e6cae22812484996b004edf6c50b0eb7bcf4b21b185b2453:log:73', 'hash': '0xd7a5c24825498658e6cae22812484996b004edf6c50b0eb7bcf4b21b185b2453', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2e97b18ecf6057990a1e925f90a2fcf1b98860e9', 'value': 0.00428835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x068b23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xbe7459af5f1ceebdb80c90bcfafa4ce037659e1b921ac0feb31a198728180ca1:log:74', 'hash': '0xbe7459af5f1ceebdb80c90bcfafa4ce037659e1b921ac0feb31a198728180ca1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2ef83161733480526642860e8672e304e8b1a522', 'value': 0.00397959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x061287', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x4db7881b4b3ed9c0d01ad3146369727a1d14aeed45fdbebfbfd8a0c4bac29efb:log:75', 'hash': '0x4db7881b4b3ed9c0d01ad3146369727a1d14aeed45fdbebfbfd8a0c4bac29efb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f40208b2edc15347d9ec9079fbe41a67ac53a74', 'value': 0.00521463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07f4f7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x89b657bcea344df21c62e3ecdc146b5b460603bf5b0cb7e925206700a71e111e:log:76', 'hash': '0x89b657bcea344df21c62e3ecdc146b5b460603bf5b0cb7e925206700a71e111e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f498e9940f39731ca47ed36f52d8bb99ef5d736', 'value': 0.01560961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17d181', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xdce193d76ac55cb2619d98a390e848cbc0e91a639ec38312272777be40bd249c:log:77', 'hash': '0xdce193d76ac55cb2619d98a390e848cbc0e91a639ec38312272777be40bd249c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2f8dbb7c0135f0fae090046d77038ee98e8a2f2e', 'value': 0.0075475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b843e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xd92c9572c9cc816faed9b351d529dc4edfc1f64c15c8cfe121920bd4cf62b0c1:log:78', 'hash': '0xd92c9572c9cc816faed9b351d529dc4edfc1f64c15c8cfe121920bd4cf62b0c1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x2fff9d3c5971f7499171b7adfcbaeec217c85e52', 'value': 0.00101548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018cac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x8f44adae65554791f4568a5269207ce8ff3579222a4dcce05401baeb4601bbff:log:79', 'hash': '0x8f44adae65554791f4568a5269207ce8ff3579222a4dcce05401baeb4601bbff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3021cc75b578c171165e9af60d85ee57c4d7a552', 'value': 0.00719071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0af8df', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x4eec95b278c8a465c99e7e198bcfceb30e96c80a8ea340667b9a6f63e6dbaf45:log:80', 'hash': '0x4eec95b278c8a465c99e7e198bcfceb30e96c80a8ea340667b9a6f63e6dbaf45', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3037c04f9f65f2c9891bfa8433f99e8b83146d5b', 'value': 0.00041168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xc426cef5127f3e47238ebbced8548bcedf54579ac3fd4f99cca22c7413692078:log:81', 'hash': '0xc426cef5127f3e47238ebbced8548bcedf54579ac3fd4f99cca22c7413692078', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30d3b77ac63c0e796e3e74df093a7ce4021edfa0', 'value': 0.00590077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0900fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x7a908ffe6176072f36f1334a9da7952be150cbaf2c72765d52b60a15a5e1684f:log:82', 'hash': '0x7a908ffe6176072f36f1334a9da7952be150cbaf2c72765d52b60a15a5e1684f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30e56764dc5fffd658c4a290408cb41ddeb9aa5f', 'value': 0.02418632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24e7c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xbbff63207ca9a8bbcee5ab3e4ea56141227995560c19627f2932f8968d44bcfe:log:90', 'hash': '0xbbff63207ca9a8bbcee5ab3e4ea56141227995560c19627f2932f8968d44bcfe', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x3ff83d096d31c6fa232c39a7ddbb7448081b1ab7', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xbc49d9f6c3f2922eab0ca836118eb438606867802733feed7d30a66e7b28fbb1:log:91', 'hash': '0xbc49d9f6c3f2922eab0ca836118eb438606867802733feed7d30a66e7b28fbb1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x405e94a57d6801e3e583d30776ffc047b0aad6a6', 'value': 0.00022103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5657', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x5484fb71a7aa1f148ef85c0ec77de6a43409077b7663b4f251016e5f37da7823:log:92', 'hash': '0x5484fb71a7aa1f148ef85c0ec77de6a43409077b7663b4f251016e5f37da7823', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x408965e07bc026cada8a8f3b73f751756d08ac2a', 'value': 0.09984427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9859ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x3cbc9d93165347c7f855b75535a3110873bdc19041c23f8b4eb1995f8b4594be:log:93', 'hash': '0x3cbc9d93165347c7f855b75535a3110873bdc19041c23f8b4eb1995f8b4594be', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x419ec1b706a786e5df7315e3b97f4aaefbf05026', 'value': 0.00989117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f17bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xde6f2ba3fd61365401922652deb209c1e675e21018c2b45dd4afa348ea405399:log:94', 'hash': '0xde6f2ba3fd61365401922652deb209c1e675e21018c2b45dd4afa348ea405399', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x41b3d61d125c07f69066a5ec8eb9f9e2a8036d0c', 'value': 0.07045393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b8111', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xbdb06196960e3c971917a4f87ac9d028557523cb9c836b7cf533b25756d94a01:log:99', 'hash': '0xbdb06196960e3c971917a4f87ac9d028557523cb9c836b7cf533b25756d94a01', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x08be773bc9f8d52ae5e1f3fe6496c7cbc6a7449a', 'value': 0.82168096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e5c920', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xb3a9434374a618b88da24c1729fdd45cb5badc82d67f85e772867015a73c2450:log:100', 'hash': '0xb3a9434374a618b88da24c1729fdd45cb5badc82d67f85e772867015a73c2450', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x08c3d6f5e291e003f003d41fc9d2e0487f070568', 'value': 0.00543412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084ab4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x579165e4781669870ace2a7c42991c052f07287c25c4369a46604a336c053abb:log:101', 'hash': '0x579165e4781669870ace2a7c42991c052f07287c25c4369a46604a336c053abb', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09040e803fe15e9493531a69d6b102b4b76eb56f', 'value': 0.0057299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08be3e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0xcfb017b9bc3089e27ffb2f50d4fe892065d9ce1586f96b6bfc9d1753e87e1d34:log:102', 'hash': '0xcfb017b9bc3089e27ffb2f50d4fe892065d9ce1586f96b6bfc9d1753e87e1d34', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x090bfc43fc828eac1e475ed5973dac4589057cd9', 'value': 0.01167992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11d278', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0331', 'uniqueId': '0x80ffe5984d8ccb99a101b4904ef90c0fe400e089bc35f91befaeb4a2a3172db9:log:103', 'hash': '0x80ffe5984d8ccb99a101b4904ef90c0fe400e089bc35f91befaeb4a2a3172db9', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x094c71f535f915dcee43306b26af68e1af361e35', 'value': 0.00017196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x432c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:06.000Z'}}, {'blockNum': '0x7f0332', 'uniqueId': '0x16d7fec76775bcb3f591271fc23099f565ea88e754d83328eff41aea545f3929:log:88', 'hash': '0x16d7fec76775bcb3f591271fc23099f565ea88e754d83328eff41aea545f3929', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x41ebbbd8c8ea43da810b317e2c08d1121308dd70', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:08.000Z'}}, {'blockNum': '0x7f0332', 'uniqueId': '0xaae11d02ba3db70c347deb94e899128eccd46ceafe74d2b367497ae9f34573ea:log:89', 'hash': '0xaae11d02ba3db70c347deb94e899128eccd46ceafe74d2b367497ae9f34573ea', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x421c107d6b82da7346f2ce3dd3784e93a7efb84b', 'value': 0.0012433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e5aa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:08.000Z'}}, {'blockNum': '0x7f0339', 'uniqueId': '0x07e0eccd47557aa14855d36ed271fcde4e15203aefc20db9600ba8cd4370b7d8:log:98', 'hash': '0x07e0eccd47557aa14855d36ed271fcde4e15203aefc20db9600ba8cd4370b7d8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x421e4eb81a24a1e1d80dfa86b8fc8e35ab9ec71c', 'value': 0.06333946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x60a5fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:16.000Z'}}, {'blockNum': '0x7f0339', 'uniqueId': '0x29d32e3dafca6df90740d8e73e39e91185d5bbc37dfc785138a165fcaae5999d:log:99', 'hash': '0x29d32e3dafca6df90740d8e73e39e91185d5bbc37dfc785138a165fcaae5999d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4226d52b39877668a0888d2ad2fa13e8637640d8', 'value': 0.03899141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b7f05', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:16.000Z'}}, {'blockNum': '0x7f0339', 'uniqueId': '0x73202b001932886b5f4bd81d82d7bf7db00afbd786f1ba230aa1fdf6a4164e8f:log:100', 'hash': '0x73202b001932886b5f4bd81d82d7bf7db00afbd786f1ba230aa1fdf6a4164e8f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x42862ccfcc8a9a33ac9f803f716d250a4812f665', 'value': 0.03153158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x301d06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:16.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x006aa2c530e16a6af5867fb35529bc47af4be5a19d4db71e150fbd1019c6d3e9:log:24', 'hash': '0x006aa2c530e16a6af5867fb35529bc47af4be5a19d4db71e150fbd1019c6d3e9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x429f0b98d6aee7e18209cc95a9ac2c99a7a4ea6b', 'value': 0.01536862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17735e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xdb3f5707136f8fc2d47312c46bb9f8656288f919d8f29ebfdd0e2fc786bdf0ff:log:25', 'hash': '0xdb3f5707136f8fc2d47312c46bb9f8656288f919d8f29ebfdd0e2fc786bdf0ff', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x42b5c5f28dafe27ca602eb6f9b97b3f70180630d', 'value': 0.00155413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025f15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x920c8832b877222dad6de056e5796297edebd590e84d0a9d52ea52864f745823:log:26', 'hash': '0x920c8832b877222dad6de056e5796297edebd590e84d0a9d52ea52864f745823', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x42e05dc97e7baf3e1ecaaa657f2a8c479038d81b', 'value': 0.1817297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01154c2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x7fba8917426c19f74b2b5d96fc51ad9abb562c0d1182a34288874094a72a996b:log:27', 'hash': '0x7fba8917426c19f74b2b5d96fc51ad9abb562c0d1182a34288874094a72a996b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4314b8c4d5933ed75b4fdc08b7597f8856118871', 'value': 0.01519594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172fea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x847edd365665abd4239b108b23d897be0793b852c06285415963d0469b2f11d4:log:28', 'hash': '0x847edd365665abd4239b108b23d897be0793b852c06285415963d0469b2f11d4', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x431623abdcd66ba2f5105859a7cdb575be14e667', 'value': 0.01633564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x18ed1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xe9c47d47665b5330dac0d76357a95995b22fa7e17ce790f96fd25b824341dcce:log:29', 'hash': '0xe9c47d47665b5330dac0d76357a95995b22fa7e17ce790f96fd25b824341dcce', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x432e9dabe0ec0ecac47c1d1e2024c0d5926e6218', 'value': 0.0001934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b8c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xe622f902aafdd70aa6f92b2fa7940d5e19f509fa028e21630e6c70be9e1f96bf:log:30', 'hash': '0xe622f902aafdd70aa6f92b2fa7940d5e19f509fa028e21630e6c70be9e1f96bf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4374398fc33c5ebf7e92fb111521a9a5bc4e3325', 'value': 0.02110164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2032d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x1c31d8518f59100f17d2e844078b4fd1ce43d570ab94bb64ac042405f4af8552:log:31', 'hash': '0x1c31d8518f59100f17d2e844078b4fd1ce43d570ab94bb64ac042405f4af8552', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x43b08ce13abca96763b99cac35a3935a7f6444f4', 'value': 0.01958204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1de13c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x88cdc3c96394166358fdc337058c044105b844ace59b13a158344072b16dfd6f:log:32', 'hash': '0x88cdc3c96394166358fdc337058c044105b844ace59b13a158344072b16dfd6f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x43c9a8870cc24c88212b14912bcd24ed673a3176', 'value': 0.10060407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x998277', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x8a812a42e4df4df1e5de71446440c287bd3219406bd1f7f4ce2276ec506eeeae:log:33', 'hash': '0x8a812a42e4df4df1e5de71446440c287bd3219406bd1f7f4ce2276ec506eeeae', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4495fe2d74cea7e4b4cd2f79231b63c1e6503403', 'value': 0.00227939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037a63', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xb3faa30780ab46749bcf9b11c61fe51f44ba5d96d5d0ab3490199ec244bdb70d:log:34', 'hash': '0xb3faa30780ab46749bcf9b11c61fe51f44ba5d96d5d0ab3490199ec244bdb70d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x44a46e8ac16ba3456c3f606d1bfaf3073f88f28a', 'value': 0.12543563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbf664b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x786e16569580c1221cdd82cac88fc4498951544152af2da8926895f211205398:log:35', 'hash': '0x786e16569580c1221cdd82cac88fc4498951544152af2da8926895f211205398', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x44bbb67e5f02eeb86401e5e023d5a805cac5ae2d', 'value': 0.0815746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c7914', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xa59b26be52ed3352e7eaed9c9a12ad71842a5ce7b347a2a3a270e5ba73532085:log:36', 'hash': '0xa59b26be52ed3352e7eaed9c9a12ad71842a5ce7b347a2a3a270e5ba73532085', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x457b99ac42a76c37c62f8bc0faad0b7aa012738e', 'value': 0.01274387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x137213', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x81a2cd8222d92e1f8742f1689f4e0c30f698f028c9439d90a6ad5388e4224a64:log:37', 'hash': '0x81a2cd8222d92e1f8742f1689f4e0c30f698f028c9439d90a6ad5388e4224a64', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x45c5c5cc547185ac550808f677a047a89e106cbd', 'value': 0.10350511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9defaf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xcd638ec5cd1711c260d718f1ccc988b3dfd9a2091d3e5aa03a15e6b4bc77488b:log:38', 'hash': '0xcd638ec5cd1711c260d718f1ccc988b3dfd9a2091d3e5aa03a15e6b4bc77488b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x45cb33e21fd98713003daf215c5c4debcc7c2262', 'value': 0.00091175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016427', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x8da36edd45e1898adbf24454d7ad954ff818c6115a7292555423f69a01890afa:log:39', 'hash': '0x8da36edd45e1898adbf24454d7ad954ff818c6115a7292555423f69a01890afa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x45eca6b4feabdc7bd78c8393268b96f7ec27164d', 'value': 0.00044897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaf61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x1009efa759c18152bf59444244a4154a499a096550b5339430858bd1cda83ccd:log:40', 'hash': '0x1009efa759c18152bf59444244a4154a499a096550b5339430858bd1cda83ccd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30c40d09609301729dcd68859f2acb435272ff26', 'value': 0.02339726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23b38e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x1451790faf50bdbae0ccf35e3e2595eb186deb31404bd1764afee034d9d08980:log:41', 'hash': '0x1451790faf50bdbae0ccf35e3e2595eb186deb31404bd1764afee034d9d08980', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30cde1ea3eef5c3e5fe5c15d368bbb83b802fbec', 'value': 0.00370513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05a751', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x8076a65901ee6e7a4dfd809f09ac56d7316465408ca341f7b0c3672019f64388:log:42', 'hash': '0x8076a65901ee6e7a4dfd809f09ac56d7316465408ca341f7b0c3672019f64388', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x30f4b2a7b0162425f65cd3250c0d74b21b9ed9e5', 'value': 0.00692998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a9306', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xbf86cda5e73a00da9b842f7e07b90167d290895afd0fd0e993ce1e207dd4ca70:log:43', 'hash': '0xbf86cda5e73a00da9b842f7e07b90167d290895afd0fd0e993ce1e207dd4ca70', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3119bf1d8d0aea0b9d5ec8d8d37242fa433a5fdf', 'value': 0.00660749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a150d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xbf320dfb8d0e7a9523198747de802042af2c7aca4d0db409510a5596a97238a9:log:44', 'hash': '0xbf320dfb8d0e7a9523198747de802042af2c7aca4d0db409510a5596a97238a9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x313af9c42a4338c13221a69eefbce0df66b4c4e9', 'value': 0.00840517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cd345', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x2983e93468c98ce25eeb6dae1d7c0e70ee608ffdd797911095f5692ba3a196b3:log:45', 'hash': '0x2983e93468c98ce25eeb6dae1d7c0e70ee608ffdd797911095f5692ba3a196b3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3151add7e14c998318564655a14aafc3a2d02304', 'value': 0.03073892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ee764', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0xf2b9d900a4575ad40ff443460fc099dd74ee7f3c5eff18005ea4a4af72987249:log:46', 'hash': '0xf2b9d900a4575ad40ff443460fc099dd74ee7f3c5eff18005ea4a4af72987249', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3180d5468bc17f069707d6c6dcdd00a65fb644c2', 'value': 0.00013722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x359a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x203a9c1689b3d393078e6994db78fda3ae3694bbe20e6433d8225959b68f15c6:log:47', 'hash': '0x203a9c1689b3d393078e6994db78fda3ae3694bbe20e6433d8225959b68f15c6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3182f521cff947064d30db8023052ac4205b9db4', 'value': 6.861e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1acd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x2695c693964dff6d1ab1824057a21673362cb049ca35d4c2090bed60344c0e35:log:48', 'hash': '0x2695c693964dff6d1ab1824057a21673362cb049ca35d4c2090bed60344c0e35', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x318ec61f4afcb385e3544acc11206db3a0e6b92a', 'value': 0.02576443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27503b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x74c30dfbfe96f88aa3e14644907d466d2985ac36aad3b7c6c1c293f23aac61b5:log:51', 'hash': '0x74c30dfbfe96f88aa3e14644907d466d2985ac36aad3b7c6c1c293f23aac61b5', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09641b1f168a0e0e86b36a8c113ffffddead79e6', 'value': 6.87e-06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033a', 'uniqueId': '0x96ba0f16c51b468cd931cdea13851b90903055edb66e0bb300563a886eda5008:log:52', 'hash': '0x96ba0f16c51b468cd931cdea13851b90903055edb66e0bb300563a886eda5008', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x097196cea6f214f4487a6bf0692359e38e9bda7d', 'value': 0.7306972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x045af498', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:20:23.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x4f8becc7895f8849028bb0c12dce5754a0f331ef3475c8061db752faddcb5b07:log:31', 'hash': '0x4f8becc7895f8849028bb0c12dce5754a0f331ef3475c8061db752faddcb5b07', 'from': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03cc4cff2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x0bafae900e3f431d441b62b34b6082a17abce448b120fc501f9afb50b9b6b46c:log:135', 'hash': '0x0bafae900e3f431d441b62b34b6082a17abce448b120fc501f9afb50b9b6b46c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x463e5e0522d120ecafad475e63860d00e258f328', 'value': 0.03933677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c05ed', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0xb13ada571b5bbdf1cb17be6c2ce4fbb92b0b6a19a1f4ae403a0c16fa775459f6:log:137', 'hash': '0xb13ada571b5bbdf1cb17be6c2ce4fbb92b0b6a19a1f4ae403a0c16fa775459f6', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09869dc411a42ddfe74dd07699b15a76d3a7410e', 'value': 0.09732586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9481ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x1fb609b398dd95ebee7ff56bde9f284831c2c0c77a2010c1533e978c57076cac:log:138', 'hash': '0x1fb609b398dd95ebee7ff56bde9f284831c2c0c77a2010c1533e978c57076cac', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09aec88a104bb9d2c5857a5556984e3d2cfba65a', 'value': 0.00533094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x082266', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0xd440194bbb0453ae93857773069a42bffd267e9394f7fee5ce88fdc5a8c7ad46:log:141', 'hash': '0xd440194bbb0453ae93857773069a42bffd267e9394f7fee5ce88fdc5a8c7ad46', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x31c1d6d32a1ef79d216a12764ce08edb0f2a32e7', 'value': 0.0070672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ac8a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0xdab5a1dc9ba25c997f7cd016b68e86323da261e420f96bb6168e3c4a889cc950:log:142', 'hash': '0xdab5a1dc9ba25c997f7cd016b68e86323da261e420f96bb6168e3c4a889cc950', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x31f3be1d114864cacae0c810d1a84a46c6735bcd', 'value': 0.02205929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21a8e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0xc8aacca512bc6f5e306f14c9c16ceaa84e8bd30c6bb21513f50b1ab58945c58d:log:143', 'hash': '0xc8aacca512bc6f5e306f14c9c16ceaa84e8bd30c6bb21513f50b1ab58945c58d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x31ef9748a55e55d73c67457133f00ae0b0f509b5', 'value': 0.02953818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d125a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x9b5c1ed1dbb970bfcd6cd6191a2ae44811bfa6d98b8672788e23c43cf8b5a2bb:log:36', 'hash': '0x9b5c1ed1dbb970bfcd6cd6191a2ae44811bfa6d98b8672788e23c43cf8b5a2bb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4669c15130be9e9ad19bd79b5309d2c21e6533ea', 'value': 0.02959755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d298b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x465524f3032c528ae7d02dacccfcbf42c11f8fc184b0790fd09c971819c2351c:log:37', 'hash': '0x465524f3032c528ae7d02dacccfcbf42c11f8fc184b0790fd09c971819c2351c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x46969c1cd33d3c650fcc8af93ec43c6ca65766be', 'value': 0.0194439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dab46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0xd976288ac7180bbb322e7283a61020b7cf7d9f19ffe417959e5c35219c1b0943:log:38', 'hash': '0xd976288ac7180bbb322e7283a61020b7cf7d9f19ffe417959e5c35219c1b0943', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x46b9bd817264ec5ad544a8f9087def6c0421b9a6', 'value': 0.02555681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26ff21', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x3ad422953cb9ad58acfef3a53a66c1fb200a30fe3e828b84cb3d3bbd0b41bd70:log:39', 'hash': '0x3ad422953cb9ad58acfef3a53a66c1fb200a30fe3e828b84cb3d3bbd0b41bd70', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x471451f1cacc608121d1515d46105ac773ff4f20', 'value': 0.00055257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd7d9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x4f4eacf997cca3ad3cf452431df3fa904a588290078e068787571415177ec783:log:40', 'hash': '0x4f4eacf997cca3ad3cf452431df3fa904a588290078e068787571415177ec783', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x474932c2b0df801b58940484d78bb02baae71378', 'value': 0.02099803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x200a5b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0xcd752131122de899fb099c510123898967e609f29f0f571abee837105d8517fb:log:41', 'hash': '0xcd752131122de899fb099c510123898967e609f29f0f571abee837105d8517fb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x47b6cba2ca9e97060558236b6dd6394b32759f75', 'value': 0.03584861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x36b35d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x14413c5b47d54d2d47ee1dd89f56eb31da7c40ac300d0a701242dc57b729aa4c:log:42', 'hash': '0x14413c5b47d54d2d47ee1dd89f56eb31da7c40ac300d0a701242dc57b729aa4c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x47c3fc14e182afaae8cdd2b15789b61067605afd', 'value': 0.24724495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0179440f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x7e47ffffd9dcc2bc95866da1f68d52bf81339e9ec5bcf8171232f2eec320c7f7:log:43', 'hash': '0x7e47ffffd9dcc2bc95866da1f68d52bf81339e9ec5bcf8171232f2eec320c7f7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x481543a98460e80f3c545bea87531b14ec385407', 'value': 0.08651328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x840240', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0xb59c9a0e5388ee9a449b47e5948ca3564d1f29597d96c5153aaeb757a2eebfbc:log:44', 'hash': '0xb59c9a0e5388ee9a449b47e5948ca3564d1f29597d96c5153aaeb757a2eebfbc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x481f4da3fc9dfd0f9016df5e96916d871d8a158a', 'value': 0.05418736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x52aef0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x9d328d6b9ee3d2daf492de93107e49fe1c0c4d4b6c7f1ae0429e146a960fe68c:log:45', 'hash': '0x9d328d6b9ee3d2daf492de93107e49fe1c0c4d4b6c7f1ae0429e146a960fe68c', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x488fde5f82913823f99e53ac459f9fcc1a557c28', 'value': 0.00146433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023c01', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x5b32facc3dc4619dca21547465db957357ae591b8dd19cdb771ee3aebbe7e97f:log:46', 'hash': '0x5b32facc3dc4619dca21547465db957357ae591b8dd19cdb771ee3aebbe7e97f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x48c8bf4af8d211ab485577484b01c5cf14fdc5fe', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x7573ea1aefb9b0f09b8e54f95ab982a04dd3b835f56dee75b8b2f423c8d2ead2:log:47', 'hash': '0x7573ea1aefb9b0f09b8e54f95ab982a04dd3b835f56dee75b8b2f423c8d2ead2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x48a7fa829bbc12f29b081e928e646dd45fa28faa', 'value': 0.15696722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xef8352', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x5d0d5cfe5bb5828803da2bf98717c90ea863f48a9841ace04fb979e4fcaf4d0d:log:48', 'hash': '0x5d0d5cfe5bb5828803da2bf98717c90ea863f48a9841ace04fb979e4fcaf4d0d', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x48b8e515f3455d9550e571127043dce3b67533d2', 'value': 0.0004835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcde', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x51e46ff8ff4d6219d59669f86d97aa954b705e9e19ffd9124527974cbd5728d9:log:49', 'hash': '0x51e46ff8ff4d6219d59669f86d97aa954b705e9e19ffd9124527974cbd5728d9', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4928808cf3ca6f9ea19ac5d65b90e3ff5369e2d3', 'value': 0.03028828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e375c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0x4b51ece46471f3cc832668662bbbe0e6770213b46ab2ddf225cc9dbc0b27185a:log:32', 'hash': '0x4b51ece46471f3cc832668662bbbe0e6770213b46ab2ddf225cc9dbc0b27185a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x31eb7da8c071f1c52b6b0dfd36ced2643e740bef', 'value': 0.00384236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05dcec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0xbc89970f72aa774cd2bbce76b13b7c4424f96a064c0ee870bcb581ca891421c9:log:33', 'hash': '0xbc89970f72aa774cd2bbce76b13b7c4424f96a064c0ee870bcb581ca891421c9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x323f83d12b4050e0922c5885b0a3382fb09f9466', 'value': 0.0045285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e8f2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0x5d588bec964ee95714e350e708d532ab9c857e6de02558e98d5ec6f109406516:log:34', 'hash': '0x5d588bec964ee95714e350e708d532ab9c857e6de02558e98d5ec6f109406516', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x324c43b2e66a7e8aa8a8da918e844120c688a098', 'value': 0.00586646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08f396', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0xeb168a66148013726d80c6a40df5efce453ed12b2142382d9fb8e2303b8b9d5c:log:35', 'hash': '0xeb168a66148013726d80c6a40df5efce453ed12b2142382d9fb8e2303b8b9d5c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x32b2e69fea1e396d3d87db3cc34f82a60d60e2ae', 'value': 0.00041168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0x7179757478fd518b01e3fef053808e46e021f7487e13813aee7c97bd6c5744ea:log:36', 'hash': '0x7179757478fd518b01e3fef053808e46e021f7487e13813aee7c97bd6c5744ea', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x32f98a2061c9bcace6914cdd372f7de10cabef89', 'value': 0.0055234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x086d94', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0342', 'uniqueId': '0x277ff9113d387aa548fd272c55951b0b8c20a86322ad4926bd7fe50b7f38f023:log:37', 'hash': '0x277ff9113d387aa548fd272c55951b0b8c20a86322ad4926bd7fe50b7f38f023', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3302195bee4dfe1d27f14c64135ab274f283557b', 'value': 0.01145848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x117bf8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:10.000Z'}}, {'blockNum': '0x7f0343', 'uniqueId': '0x6579ea91decbe4111921a899475cb1828a500c2ffa62b9a59d0005c0ff433c89:log:65', 'hash': '0x6579ea91decbe4111921a899475cb1828a500c2ffa62b9a59d0005c0ff433c89', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x331252e3b8af250ad737b49bb5608e453dd8b988', 'value': 0.02092717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1feead', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:13.000Z'}}, {'blockNum': '0x7f0346', 'uniqueId': '0x11b3d22aae96e2dc9fe302fc3efbf363a58ee8711732741398b4a5c35258ad1f:log:25', 'hash': '0x11b3d22aae96e2dc9fe302fc3efbf363a58ee8711732741398b4a5c35258ad1f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x33843f220346a6ee5f1c2ed16169479e816448bf', 'value': 0.01001759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f491f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:29.000Z'}}, {'blockNum': '0x7f0347', 'uniqueId': '0x61d78eddbb9a3bc350ba908afdfe76baa95e7c6f972c464c259725d7275a46bc:log:62', 'hash': '0x61d78eddbb9a3bc350ba908afdfe76baa95e7c6f972c464c259725d7275a46bc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x339216fb93b816ee16f4cc6edca95a9939792890', 'value': 0.00391097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05f7b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:38.000Z'}}, {'blockNum': '0x7f034d', 'uniqueId': '0xc8fb176d060333c31ff8b2896a699bd67b5ebb43f1bf2ef4755ff588df6b1d75:log:4', 'hash': '0xc8fb176d060333c31ff8b2896a699bd67b5ebb43f1bf2ef4755ff588df6b1d75', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3392cea0a1fdb485ce2a37de696f692099fb3e7b', 'value': 0.08096414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7b8a9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:24:31.000Z'}}, {'blockNum': '0x7f034d', 'uniqueId': '0x25e9d648f64f365fbb297803319c7dffc70b27331285bbc9df51f3a29e90fba3:log:5', 'hash': '0x25e9d648f64f365fbb297803319c7dffc70b27331285bbc9df51f3a29e90fba3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3397546a133d33550a74c53e0bf9e187a6c1e2b9', 'value': 0.00065869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01014d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:24:31.000Z'}}, {'blockNum': '0x7f0353', 'uniqueId': '0x571f6f9acb7bc26b036a61b2c6cb2ceec0989d345cc023bffc04fce0102529b1:log:36', 'hash': '0x571f6f9acb7bc26b036a61b2c6cb2ceec0989d345cc023bffc04fce0102529b1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x33aac15e8dcce4a548d27bdb075b28f2f0803630', 'value': 0.01413441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x159141', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:58.000Z'}}, {'blockNum': '0x7f0353', 'uniqueId': '0x3298ee56fc5deeb2a8e3db9ec2d0a8980cb6c8a6fd38a43a4e56960855f9a6ff:log:37', 'hash': '0x3298ee56fc5deeb2a8e3db9ec2d0a8980cb6c8a6fd38a43a4e56960855f9a6ff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x344aeaa8e9edc542b94235091e9b70d4ebb6ad12', 'value': 0.01221323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12a2cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:58.000Z'}}, {'blockNum': '0x7f0353', 'uniqueId': '0x456e6609412b747e3383de36b7fd98dcc993f0baf470f2f2d81114c0e1223980:log:38', 'hash': '0x456e6609412b747e3383de36b7fd98dcc993f0baf470f2f2d81114c0e1223980', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3451622c0f880ae238d720b5693ecf6f8294fb06', 'value': 0.00459711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0703bf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:58.000Z'}}, {'blockNum': '0x7f0353', 'uniqueId': '0x1172dd0d743eae17dae78a89ced692b25538ea8d6ae5de8d99930c5664625a44:log:39', 'hash': '0x1172dd0d743eae17dae78a89ced692b25538ea8d6ae5de8d99930c5664625a44', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x34695287d7ea674a510dda1399d3972a18a9337b', 'value': 0.02085855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fd3df', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:58.000Z'}}, {'blockNum': '0x7f0354', 'uniqueId': '0xa80194c127f0bb6df1d2692aea005614922f7ef721f3ccfec5a9c8022364b768:log:103', 'hash': '0xa80194c127f0bb6df1d2692aea005614922f7ef721f3ccfec5a9c8022364b768', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3481e7ccf16870f3f6638361ac73caab6ee934b6', 'value': 0.01914321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d35d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:05.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0xa7e1e9551d15720238750a4734fbe4c16c8a992b51ec5705e8462f700946c00b:log:8', 'hash': '0xa7e1e9551d15720238750a4734fbe4c16c8a992b51ec5705e8462f700946c00b', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09bbf76688ad7df542bd377678c66b7f2e015b16', 'value': 0.01671509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x198155', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0x3bc5fc3cd14ce4b96cc015412138cd062f3137c10185269350c3a96561cf4303:log:9', 'hash': '0x3bc5fc3cd14ce4b96cc015412138cd062f3137c10185269350c3a96561cf4303', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09d38641852219f174c0623e6e670881dd32d900', 'value': 0.24146087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017070a7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0xc99ed6de6d6e36c715659b14acfabf5c34cb9f96918508a1a5aa691de8ea9c33:log:10', 'hash': '0xc99ed6de6d6e36c715659b14acfabf5c34cb9f96918508a1a5aa691de8ea9c33', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x09df7ea444944c24aef42ad03295358678171506', 'value': 1.66062044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09e5e7dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0x5abad68bf9f9d359c13b8076013cdf48064205f315c1bcb21f1c811d3467c104:log:11', 'hash': '0x5abad68bf9f9d359c13b8076013cdf48064205f315c1bcb21f1c811d3467c104', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0a6baef62b13c5f3ee690d74eaf439e60da06231', 'value': 0.03321694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x32af5e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0xb6f80cb478827cf41ce55c1ef4b6b9e5513c393ec5e64c32f7d322d00082ece2:log:12', 'hash': '0xb6f80cb478827cf41ce55c1ef4b6b9e5513c393ec5e64c32f7d322d00082ece2', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0a878625362d3cdd50c2f71aa613cd8fcc21a73b', 'value': 0.90484371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0564ae93', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0356', 'uniqueId': '0xfc655209655edb0dc4af6c77212460d0ab723e1e6903388a3ddcbf75260626bc:log:13', 'hash': '0xfc655209655edb0dc4af6c77212460d0ab723e1e6903388a3ddcbf75260626bc', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0abce90d80dbbe342df19aaa6d82d9b004c96ec1', 'value': 0.01434196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x15e254', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:40.000Z'}}, {'blockNum': '0x7f0359', 'uniqueId': '0xb1128d3bb875176cb39e052f8ee4dd7fdb279f62594be50e5161da4285840c8d:log:0', 'hash': '0xb1128d3bb875176cb39e052f8ee4dd7fdb279f62594be50e5161da4285840c8d', 'from': '0x0bd68cb43b188be181ebfd05b87374874858212d', 'to': '0x8c240d98e179a9e283a2394e5969a2eea95ca810', 'value': 0.04088658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e6352', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:50.000Z'}}, {'blockNum': '0x7f0359', 'uniqueId': '0x3eea8ce38e4da51ec325a7d133c6c4c395aa1308029a4195c0b372b63ef11326:log:17', 'hash': '0x3eea8ce38e4da51ec325a7d133c6c4c395aa1308029a4195c0b372b63ef11326', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0b6adc15b5474faac6c1c218cd8d7c6cfd6b8faa', 'value': 0.16411745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfa6c61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:50.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0x3ef0bf795aa7ca4c244f4c467e086c8e7a14c7612b89ed12c62ffb18b450c1f0:log:63', 'hash': '0x3ef0bf795aa7ca4c244f4c467e086c8e7a14c7612b89ed12c62ffb18b450c1f0', 'from': '0xa7298541e52f96d42382ecbe4f242cbcbc534d02', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 278.26020501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x067a8f6095', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0x904920bf19d9fc6d6b14d9738e6456af7bdf8c166056cbef804f9f5549ded614:log:116', 'hash': '0x904920bf19d9fc6d6b14d9738e6456af7bdf8c166056cbef804f9f5549ded614', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x348d8adf39e1fc19be932b3f2917c21c825dd978', 'value': 0.00035679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8b5f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0x4a467636a28f98556c655dd86ae474e823dc847c187039322848f8112aefa47f:log:117', 'hash': '0x4a467636a28f98556c655dd86ae474e823dc847c187039322848f8112aefa47f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x34fb1f09c370f9810070a8d2df766afabaf91a76', 'value': 0.00363652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x058c84', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0xcb65a20c1c02fd18fd0ea4dfec90324fd23f96454a5f0af0dda4b1b6ec4a82b6:log:118', 'hash': '0xcb65a20c1c02fd18fd0ea4dfec90324fd23f96454a5f0af0dda4b1b6ec4a82b6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x34ea47ac6dbeb55482a029dea7f20fe675ecd2a5', 'value': 0.02288952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22ed38', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x447354b0f8b00ef86ab60965ff64f9959f6fff0c3879a22aff7104c6c33c8211:log:33', 'hash': '0x447354b0f8b00ef86ab60965ff64f9959f6fff0c3879a22aff7104c6c33c8211', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3512ffd48d3f89866ff873fc0637c94443ef77c1', 'value': 0.00713582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ae36e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0xf6c824db5fadfb78880ef3c03c6b6dfe669dc149affa4e45b1a12b27aa91ce2a:log:34', 'hash': '0xf6c824db5fadfb78880ef3c03c6b6dfe669dc149affa4e45b1a12b27aa91ce2a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x357bdf2a8b28eda9374cc3dbb6cc29310eab6c10', 'value': 0.04555948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4584ac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x0284235986b16d8720600ffa964c924f8ccc5256235d812a8834bdcb0b397104:log:35', 'hash': '0x0284235986b16d8720600ffa964c924f8ccc5256235d812a8834bdcb0b397104', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x35a98c72d40cae37fb6120d584a5858452868042', 'value': 0.00542048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084560', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0xdac1a8823192252a5339700cb04311e55c2e9b85f46b8781fb24fa70c2bd50ff:log:36', 'hash': '0xdac1a8823192252a5339700cb04311e55c2e9b85f46b8781fb24fa70c2bd50ff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x35ee023dee15dedf0f3b3ca5885ab457d2b8037d', 'value': 0.00782195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bef73', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x2d20ead2dd512c3bea6997b6b955590b0b2fe910d05e7116b1c6082f382cd03c:log:37', 'hash': '0x2d20ead2dd512c3bea6997b6b955590b0b2fe910d05e7116b1c6082f382cd03c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x35a6623588b2f97ff5ad4c0526567997fd212eea', 'value': 0.0135855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14bad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x70727d5d90dfab50f88e44ddee57d983b7fcf3b27dffbc220db6823cffe2c9ad:log:38', 'hash': '0x70727d5d90dfab50f88e44ddee57d983b7fcf3b27dffbc220db6823cffe2c9ad', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x36b34c106746e8b44af3124409805e9c17a36dad', 'value': 0.00267593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x041549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x0642673e3ff8c4c02157cb58918a800a87545230ac35942bb96c008c181e9b94:log:39', 'hash': '0x0642673e3ff8c4c02157cb58918a800a87545230ac35942bb96c008c181e9b94', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x36dcf60deda3ec2b90bbcafa4886d334f4eeed86', 'value': 0.00161242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0275da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x862b7f8a0a83774aaf64aa38634580c2bb784d0d3c05022e50b64745b662b045:log:40', 'hash': '0x862b7f8a0a83774aaf64aa38634580c2bb784d0d3c05022e50b64745b662b045', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x36a163ae5b3d370273cc178338137609b0bf0c73', 'value': 0.00161242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0275da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f035e', 'uniqueId': '0x14d736db66aa22c134d99662aa4fafd6a06b4d3b08b72465b2d2a045e701e238:log:41', 'hash': '0x14d736db66aa22c134d99662aa4fafd6a06b4d3b08b72465b2d2a045e701e238', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x36d4a91ebd99a313f5cb4060e84a96d7ac573ba4', 'value': 0.02295127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x230557', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:50.000Z'}}, {'blockNum': '0x7f0361', 'uniqueId': '0x10563734dc6caafdacd53f9fb63c9d6e8e47d6d7b8db1caacb9565819b31f960:log:115', 'hash': '0x10563734dc6caafdacd53f9fb63c9d6e8e47d6d7b8db1caacb9565819b31f960', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x372e9546f3b0261ca0dbd2a4eb0b82d29662a3d6', 'value': 0.0201038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ead0c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:28:45.000Z'}}, {'blockNum': '0x7f0361', 'uniqueId': '0xa46124dfeb7bdc466a2ed66f9325bd06500d7b7af618e996076ab62b57b02287:log:116', 'hash': '0xa46124dfeb7bdc466a2ed66f9325bd06500d7b7af618e996076ab62b57b02287', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3787c57dc7a951c6e954cb64c121a6c9b1a41b21', 'value': 0.04182003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3fcff3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:28:45.000Z'}}, {'blockNum': '0x7f0361', 'uniqueId': '0xe55126052d7e7d70e1758512fc44a9259833ebd5feb2fb68990fff5cfec1abb6:log:117', 'hash': '0xe55126052d7e7d70e1758512fc44a9259833ebd5feb2fb68990fff5cfec1abb6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x37ab4f0b9cf56f720d28aa9b94ccd17e4b4d0620', 'value': 0.05609854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55997e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:28:45.000Z'}}, {'blockNum': '0x7f0361', 'uniqueId': '0xaff6dae09bb93fe0164c8836f2bca3aa7192bc7f8ceb75652a6e9d6550ec514b:log:118', 'hash': '0xaff6dae09bb93fe0164c8836f2bca3aa7192bc7f8ceb75652a6e9d6550ec514b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38630cceeb0f40949790772dede8dd84008a8e6f', 'value': 0.00570865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08b5f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:28:45.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0x1a4faa4b572a846a5eb9979e2317dc6a0e8fa61da58a4db1800c4325c88d5cd2:log:83', 'hash': '0x1a4faa4b572a846a5eb9979e2317dc6a0e8fa61da58a4db1800c4325c88d5cd2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x49984ae1a4c0b61792e4b22f37a6079f95fa5344', 'value': 0.02814703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2af2ef', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0xb2808bd657d06aadf33e3a80c20b505679fe8506a3581d6c264893d2f679b360:log:84', 'hash': '0xb2808bd657d06aadf33e3a80c20b505679fe8506a3581d6c264893d2f679b360', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4993dde698e00dbf75e6745c8a30db75a1edbc9d', 'value': 0.00171299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x029d23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0xd25aca75f31dea39e6a51f9fbce48031f170e54dfa8c484490a2930b1aa59d76:log:85', 'hash': '0xd25aca75f31dea39e6a51f9fbce48031f170e54dfa8c484490a2930b1aa59d76', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x49816d0cfa45f1e78fc9563d7a4f3dcd62a8a966', 'value': 0.00085649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0xee9da6b4906e4e8bb8ede109ded3596542b6dd551b29600dbf0f4a1f593535c6:log:86', 'hash': '0xee9da6b4906e4e8bb8ede109ded3596542b6dd551b29600dbf0f4a1f593535c6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x388f7f9f6a9c1eede50754d01584b709d0315bf5', 'value': 0.00614778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09617a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0xf92e93f7cc76bb11aaa610b9a5a5ca5f74e4f333310c4c195a3fa400d589c8ae:log:87', 'hash': '0xf92e93f7cc76bb11aaa610b9a5a5ca5f74e4f333310c4c195a3fa400d589c8ae', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38c4f8b6a9fba073120ce0ae9104b755d346fc1e', 'value': 5.489e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1571', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x7967527f5972df53b8489235f8bedd7c8255569054a74532b90630e76cf01287:log:79', 'hash': '0x7967527f5972df53b8489235f8bedd7c8255569054a74532b90630e76cf01287', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4ab054802b2f00d429ba05fa7a4135de3aec446b', 'value': 0.77720359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a1eb27', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x43afeb4943d008c6a98e8d6f1575120caf390c0cdd5bffd91a099e1f3a58f722:log:80', 'hash': '0x43afeb4943d008c6a98e8d6f1575120caf390c0cdd5bffd91a099e1f3a58f722', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4ae677e2f17f2c63fef1a1aaa4d9701d2c4d95fa', 'value': 0.00290104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x046d38', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0xe7e84ac5cbf71e795594d37d4f7deac15bbe0cf5cf444896824b9e0408255bf0:log:83', 'hash': '0xe7e84ac5cbf71e795594d37d4f7deac15bbe0cf5cf444896824b9e0408255bf0', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38d5e0befd52a6e50a4a18f06b788f5af0cfc8cb', 'value': 0.07578381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x73a30d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x7a5435397074c037e176c7aaeecdcf494d5e0bfb0801eb6ea14be2f54f03d4f4:log:84', 'hash': '0x7a5435397074c037e176c7aaeecdcf494d5e0bfb0801eb6ea14be2f54f03d4f4', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0b8b8216fa790b5917666c5012aa912d7fcaf3c7', 'value': 0.00020635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x509b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x1f3a70e02445197b0f6e8d54784eab88e671ba029b9dca82aa6cba2d0c8a9a05:log:85', 'hash': '0x1f3a70e02445197b0f6e8d54784eab88e671ba029b9dca82aa6cba2d0c8a9a05', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0babc32cb28229cd11992051e8b0e4f877b3b117', 'value': 0.00049526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc176', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x629370818b1f43fd45c1f17f3b4d7dfc0ca68fb4101f4ef5ccbcc49cbb1717c1:log:86', 'hash': '0x629370818b1f43fd45c1f17f3b4d7dfc0ca68fb4101f4ef5ccbcc49cbb1717c1', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0c4c708c8f0309bfc05b047c1f97080331647092', 'value': 8.942e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22ee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x76b8a8c52236108981de2cc3c776fcab9b8dd563eb3b081e2a1b198b66c17376:log:87', 'hash': '0x76b8a8c52236108981de2cc3c776fcab9b8dd563eb3b081e2a1b198b66c17376', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0d0fbaa8fb07ce1ef4b66362f67392aea2f7f50d', 'value': 0.53818473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03353469', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x77b4b546fb4dfa7c903cddeb93db98858923eb5bf0de754a2f2ee94635dc4d07:log:88', 'hash': '0x77b4b546fb4dfa7c903cddeb93db98858923eb5bf0de754a2f2ee94635dc4d07', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0d1e5bddb7be97189776024cb733b4a8d24ce1dd', 'value': 0.38692345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x024e65f9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x020c5e68ccf42ca0e993d1d1395de6e1a30c4b732da55c7d00eefdd6bb92bbb6:log:89', 'hash': '0x020c5e68ccf42ca0e993d1d1395de6e1a30c4b732da55c7d00eefdd6bb92bbb6', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0d89617df8aae0a734687184fb8bc0d8b8a84002', 'value': 0.00569551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08b0cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x68a41973c46d6c3972fa471565c46bcc3be2ddf9449021aa2c3bbcd9fc8f9a6d:log:90', 'hash': '0x68a41973c46d6c3972fa471565c46bcc3be2ddf9449021aa2c3bbcd9fc8f9a6d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0d94d655de331439da3ce40446815073ee07928a', 'value': 1.56701591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09571397', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x748f3f34d046d28359ebf84417a1681f97962a2a9ab721dc94fcaec57a612eb1:log:91', 'hash': '0x748f3f34d046d28359ebf84417a1681f97962a2a9ab721dc94fcaec57a612eb1', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0e28ac7ee1aab7c3cabe7d7d06ea9a999c8588e8', 'value': 0.36258682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0229437a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0363', 'uniqueId': '0x3fad663172a89571aaf7fd5f36c54b5abc0f7aa07d67365f5676c63a5b8f1fd5:log:92', 'hash': '0x3fad663172a89571aaf7fd5f36c54b5abc0f7aa07d67365f5676c63a5b8f1fd5', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0ec70b5e4e3467a2f4c3e5c1c8b750322505c2ce', 'value': 0.44453205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02a64d55', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:24.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x17c29a6ff66cabc339c4c10d0066b8fa8ba0505b1ec7a6691281477d0c52ef05:log:39', 'hash': '0x17c29a6ff66cabc339c4c10d0066b8fa8ba0505b1ec7a6691281477d0c52ef05', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0eea7da3e6d8a964c2ac7dff6c6e5f01ea73e3d6', 'value': 1.463458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08b90f48', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xcbf3d6873953aa2b6ec98ad0e31cee307e125b092b6f38aaec1c7e0149a5e736:log:58', 'hash': '0xcbf3d6873953aa2b6ec98ad0e31cee307e125b092b6f38aaec1c7e0149a5e736', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4b8463dcc68cbfe51b12f6afcbc96af552252fb4', 'value': 0.00215506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0349d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xb269ddca2473267b4e4f5b78ba4a948d026873901cc19ed266506bb95902560e:log:59', 'hash': '0xb269ddca2473267b4e4f5b78ba4a948d026873901cc19ed266506bb95902560e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4b878044667feda542998dbd8690b74dc5556154', 'value': 0.01480914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1698d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xb42362d69d55b5498a9559a2d18f9f48d0ceb951fdf84897a5b90d62644d7f47:log:60', 'hash': '0xb42362d69d55b5498a9559a2d18f9f48d0ceb951fdf84897a5b90d62644d7f47', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4b887741d3d67c84fc45588c71d2dc65a3be2764', 'value': 0.02562589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x271a1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x1d004df5ae559e332074481a3fd7e71404c3e7b9612d308fdbe9d9d3024963ef:log:61', 'hash': '0x1d004df5ae559e332074481a3fd7e71404c3e7b9612d308fdbe9d9d3024963ef', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4c439dfb27d76ef996ac56fbabfd2b53114b6d15', 'value': 0.00011051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b2b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xeeb38f2284990a3322c4edf0fc4022f0f8d5e520269f935f84bf42324be5f323:log:62', 'hash': '0xeeb38f2284990a3322c4edf0fc4022f0f8d5e520269f935f84bf42324be5f323', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4da1f3f61c06f9b5972c0ee2c705af08f38860ff', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x08e79a9e556e268b2057f6e5eb55f4e9b99d0186d0562a4f9c84389727732544:log:63', 'hash': '0x08e79a9e556e268b2057f6e5eb55f4e9b99d0186d0562a4f9c84389727732544', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38f433ceaaacdf9fa939f9fb2e0257ea61725e31', 'value': 0.02579874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x275da2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x3755dc3a4be8fc97f25eb0e404c3550770001fc3791a5803aa870c7db20da1b5:log:64', 'hash': '0x3755dc3a4be8fc97f25eb0e404c3550770001fc3791a5803aa870c7db20da1b5', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x38b326f35fafcf697bda7511705e68ce29123ec5', 'value': 0.02288266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22ea8a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xf148c8baa06b8401834f64447eb0e9fca76c38b4dd0008b0c875568b78a64fdd:log:65', 'hash': '0xf148c8baa06b8401834f64447eb0e9fca76c38b4dd0008b0c875568b78a64fdd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3917c9627812351b9b60054affd8e0860c6dc931', 'value': 0.00118015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ccff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x0d875bc4545876528fffcf632c44462fa7f0051ffae839e9aceea7ca80140433:log:66', 'hash': '0x0d875bc4545876528fffcf632c44462fa7f0051ffae839e9aceea7ca80140433', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3947c871966085a06a807a2baf6fc34181de0eb5', 'value': 0.00960591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ea84f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xca857db2798fbc8870a81410a8d5eefe17580ae20051a1d6109ff6b54d312d3f:log:67', 'hash': '0xca857db2798fbc8870a81410a8d5eefe17580ae20051a1d6109ff6b54d312d3f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3a038df468c6d1da4618d5f9e74b60390c7c93df', 'value': 0.02051549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f4ddd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xa1f8fd09a6bb33a559778615895d80a0a2c552f12e3d326b1d5f86c57c1022c2:log:68', 'hash': '0xa1f8fd09a6bb33a559778615895d80a0a2c552f12e3d326b1d5f86c57c1022c2', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3b18432bba473422d552251231bb2a994e281ab4', 'value': 0.00993526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f28f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0xecb5eb660800848f7be87eb038ce8ca070bb9b837305525edc9f524548bda92e:log:69', 'hash': '0xecb5eb660800848f7be87eb038ce8ca070bb9b837305525edc9f524548bda92e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3b1942c3557a00ac0b7dcb679a261cf5b42ed430', 'value': 0.00583216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e630', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0369', 'uniqueId': '0x72fe37e1d47537ef1f9cb1621748e2461e24f6b1f398172a692d5c801f939fb7:log:48', 'hash': '0x72fe37e1d47537ef1f9cb1621748e2461e24f6b1f398172a692d5c801f939fb7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4daedd0c7906b0d5e7e5805f283b0d8805735971', 'value': 0.00110515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01afb3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:40.000Z'}}, {'blockNum': '0x7f0369', 'uniqueId': '0x08e525037b45cc01d17c6213f9984a3b4dcb1081f2b31824961eb413cd8d9f2a:log:49', 'hash': '0x08e525037b45cc01d17c6213f9984a3b4dcb1081f2b31824961eb413cd8d9f2a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3b74256958a303c531e7138d0be5398781e8bebb', 'value': 0.00775334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bd4a6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:40.000Z'}}, {'blockNum': '0x7f036e', 'uniqueId': '0x630d6b88205e7151bfd964bc54017e74fb924e4adf19dc018d9d65da45df3ce2:log:16', 'hash': '0x630d6b88205e7151bfd964bc54017e74fb924e4adf19dc018d9d65da45df3ce2', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0f2f35765e365cf7940ac6ecca130aeaed3798c3', 'value': 0.68870311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x041ae0a7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:09.000Z'}}, {'blockNum': '0x7f036e', 'uniqueId': '0xca319787df68dd5916893d6836c4a636e027c16a304cd4ead3b700b446af4db9:log:17', 'hash': '0xca319787df68dd5916893d6836c4a636e027c16a304cd4ead3b700b446af4db9', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0fa1155ad4ca2cca430814feb2fdce40c36b89e7', 'value': 0.30110555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cb735b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:09.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0x5bc896452cfcbbd8e50b6e03642dde2b9391a44a2374c3e01d069466c3e0d703:log:109', 'hash': '0x5bc896452cfcbbd8e50b6e03642dde2b9391a44a2374c3e01d069466c3e0d703', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4df335e264c77843c46d55d4b7ee51c1e55c787b', 'value': 0.00203763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x031bf3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0xb14ab2c4a51f20e5ff00462582e8717fae4cc1c0c3a21393eae9f058d3da52d0:log:110', 'hash': '0xb14ab2c4a51f20e5ff00462582e8717fae4cc1c0c3a21393eae9f058d3da52d0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4def9d38b88818fb170d9b9ef76bf22b3e9ebd8f', 'value': 0.36048929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02261021', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0x0056c6971e11297a40d268518ff3e072e5c5c1e87dafb26ba949562d97e90647:log:111', 'hash': '0x0056c6971e11297a40d268518ff3e072e5c5c1e87dafb26ba949562d97e90647', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4e1ebc40d3646fab3e5a619c87f76444b8fff60d', 'value': 0.02351918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23e32e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0xa78aecc62f072cf9974c31d1428eb362bd324bed111e182765b7509d4d434636:log:112', 'hash': '0xa78aecc62f072cf9974c31d1428eb362bd324bed111e182765b7509d4d434636', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4e21ba222717f037a0296b949737153b5390f2f1', 'value': 0.0839576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x801bf0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0x586e9ff1901ada8b055639fd606095d6c360218b41cd2783d5fde4637f32bba8:log:113', 'hash': '0x586e9ff1901ada8b055639fd606095d6c360218b41cd2783d5fde4637f32bba8', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4e86c0b2b2ba3af17b6d25931b733ea2d1464fbd', 'value': 0.00939385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e5579', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0x716828740c7509c5a667502b7f17fd643355f26f049f4bbe736be14fb342ee75:log:121', 'hash': '0x716828740c7509c5a667502b7f17fd643355f26f049f4bbe736be14fb342ee75', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x0fa4a88d69a208da32daf11b14c616fe0f62f98a', 'value': 0.00552354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x086da2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0xcb26f57a319b6cada8eb1f40fec362bf7d19b3a9edf6599b868b314c5460cb6c:log:8', 'hash': '0xcb26f57a319b6cada8eb1f40fec362bf7d19b3a9edf6599b868b314c5460cb6c', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x104c69a9fc19bfbd37b509a82fa34ce2d5780423', 'value': 0.00860517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d2165', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0x3d00545ad78a2d1fc3c378f6d8c5292ac21cf3376a9aaa7726e8c1ca267934d9:log:9', 'hash': '0x3d00545ad78a2d1fc3c378f6d8c5292ac21cf3376a9aaa7726e8c1ca267934d9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3be0d421c69d0fb10e48b48b5e2846b9a05e0b31', 'value': 0.01036066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0fcf22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0x518ef8bb4c03b6da920bc7562a1acb56fdefd0717132313c30494a7b6f467671:log:10', 'hash': '0x518ef8bb4c03b6da920bc7562a1acb56fdefd0717132313c30494a7b6f467671', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c3323413576a6a6dca55f7061373fa3789b7712', 'value': 0.01831985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bf431', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0xf555fc056d24b32096c1c675376103c3f6f2671860c87f2918c8d51cee8974a1:log:11', 'hash': '0xf555fc056d24b32096c1c675376103c3f6f2671860c87f2918c8d51cee8974a1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c47f46a0b86d9f9c3778213962aea3ca2affe62', 'value': 0.02120162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2059e2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0x79e46c7d3c26bd486618312061f06f8093eace8aca91a8a74e7e6d4fe6eb83ff:log:12', 'hash': '0x79e46c7d3c26bd486618312061f06f8093eace8aca91a8a74e7e6d4fe6eb83ff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c73e018013e813c957840d2b29191599579c661', 'value': 0.16069324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf532cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0xbfa85093b0436f4a08420e01b2de9cb169ee0e0e045007484e0f553e70e1e391:log:13', 'hash': '0xbfa85093b0436f4a08420e01b2de9cb169ee0e0e045007484e0f553e70e1e391', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c96bb7df2a71a2d8160e3233e0558db33ea84bd', 'value': 0.00043912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0370', 'uniqueId': '0xcf9057074765f29e4c18b822d1b65dd685731a928b2cc1950d7ed51ccd18e8ee:log:14', 'hash': '0xcf9057074765f29e4c18b822d1b65dd685731a928b2cc1950d7ed51ccd18e8ee', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3da89cfe97731156f0ce44f71b7a61ed42dd09ee', 'value': 0.01399719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x155ba7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:14.000Z'}}, {'blockNum': '0x7f0371', 'uniqueId': '0xd13dc9b9ebd0a47f91d0ef96739f179ab844f1813681db80712add7662a9f909:log:7', 'hash': '0xd13dc9b9ebd0a47f91d0ef96739f179ab844f1813681db80712add7662a9f909', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4ea2e26322da6a9d81830f5b240d5596f6e54243', 'value': 0.06233791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5f1ebf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:17.000Z'}}, {'blockNum': '0x7f0374', 'uniqueId': '0xf82fbdc06beb8d592cd31a0f881a14aa90c0bfe3c9521637d5d8943034edff77:log:106', 'hash': '0xf82fbdc06beb8d592cd31a0f881a14aa90c0bfe3c9521637d5d8943034edff77', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4eae449c335096c1b73048f48529ea8a9ba03674', 'value': 0.05480901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x53a1c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:30.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0xf17f1680ffc1d45224b176a5a3bed15f5382ae6d4709e1ac700def7ebd45c2ac:log:70', 'hash': '0xf17f1680ffc1d45224b176a5a3bed15f5382ae6d4709e1ac700def7ebd45c2ac', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f46ba1360be53aae841b91e97c8100464cceb5e', 'value': 0.01847688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1c3188', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0xdf11f001e7f65586f5d58c5c29fb73dfb2ed29e49036cfba1df211f96e92fadc:log:71', 'hash': '0xdf11f001e7f65586f5d58c5c29fb73dfb2ed29e49036cfba1df211f96e92fadc', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f8cffca3fe0653b9b2c403ec30ab297a7f76c50', 'value': 0.03553779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3639f3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0x7830aca390e106b6df429637b5b2b3890a8cfd576303d4331a04bb202b93b552:log:72', 'hash': '0x7830aca390e106b6df429637b5b2b3890a8cfd576303d4331a04bb202b93b552', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3dcc883d12704f6676204168cb31b40d7ebdccf2', 'value': 0.02199068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x218e1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0x03af3f5de4f8f4bc1a2f525ba6149833a038b3faaea3b02b4e0d98ee17a364cf:log:73', 'hash': '0x03af3f5de4f8f4bc1a2f525ba6149833a038b3faaea3b02b4e0d98ee17a364cf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3ec9b53e899499e9d3f95643e46b7ab55574703b', 'value': 0.00285432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x045af8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0xe50fcf056d4b19367c7041e3c14da836f27d87aababaefb728674687c972bdcc:log:74', 'hash': '0xe50fcf056d4b19367c7041e3c14da836f27d87aababaefb728674687c972bdcc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f22861129b95af15de6a47bc4d8499bbb5fd238', 'value': 0.01413441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x159141', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0xe57529ccd02fa773ddb2419c813dacedb3b0b387b91126285c296404d011cd6c:log:75', 'hash': '0xe57529ccd02fa773ddb2419c813dacedb3b0b387b91126285c296404d011cd6c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f27729c0a3a3d28d46afc70d3a5bdf85b7af35e', 'value': 0.13995818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd58f2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0x63f4f8d95c4bba8da910187eb6f425582af0985a46ee29e7fbcd5643ec2398fd:log:76', 'hash': '0x63f4f8d95c4bba8da910187eb6f425582af0985a46ee29e7fbcd5643ec2398fd', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3fcd71225517650ea93a362dc68850c2f69578a9', 'value': 0.01159571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x11b193', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0376', 'uniqueId': '0x775925df75fba7c5d506a88da2d6c236a1e6e904834583f99719c7609cab4dc5:log:2', 'hash': '0x775925df75fba7c5d506a88da2d6c236a1e6e904834583f99719c7609cab4dc5', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x10fc3941464db618fa40df8eb077fc94a8ae2d61', 'value': 0.1101614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa817cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:39.000Z'}}, {'blockNum': '0x7f0376', 'uniqueId': '0x0854dc54996a8a1bc21d1f7867cdb1783a76b0ae5a59a2b7dfc1eee083fd2033:log:3', 'hash': '0x0854dc54996a8a1bc21d1f7867cdb1783a76b0ae5a59a2b7dfc1eee083fd2033', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x115f512348a324b36091e199fc16c1ae4ac8bb77', 'value': 0.09030277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x89ca85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:39.000Z'}}, {'blockNum': '0x7f0376', 'uniqueId': '0xd7549e8f3a22e03f27708ddf124e9bef16b120d43046d89d27c35b6819f6c333:log:62', 'hash': '0xd7549e8f3a22e03f27708ddf124e9bef16b120d43046d89d27c35b6819f6c333', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3fdfdc23877f719280ebe72f65470574435526c5', 'value': 0.00922854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e14e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:39.000Z'}}, {'blockNum': '0x7f0379', 'uniqueId': '0x435486184cdb0010d3466f81075f97e8707e6c8b88d42c76a120f95078b11f2d:log:79', 'hash': '0x435486184cdb0010d3466f81075f97e8707e6c8b88d42c76a120f95078b11f2d', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x11bf3a254714b4f00af982a80ab33ea867cd0b4a', 'value': 0.00551666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x086af2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:06.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xd5b522538fbfecd6275a9d08c171ae9c17880fa60d6472c811181c8f2d7643cb:log:83', 'hash': '0xd5b522538fbfecd6275a9d08c171ae9c17880fa60d6472c811181c8f2d7643cb', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4fa3fe897ee0419363509be0111f4305e388a672', 'value': 0.00024175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5e6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x2d5c1e605e4cd89a27f736d2ff1ad1230b7f5519e90e3a343a304a30205202d7:log:84', 'hash': '0x2d5c1e605e4cd89a27f736d2ff1ad1230b7f5519e90e3a343a304a30205202d7', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4fbe41e9ada7d8e8a4d7aa865ab01a013aae846e', 'value': 0.12477944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbe65f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xa93411822659ea3235a1ebaf536d09f4073058d403536d68ae0e1ae22c3fb390:log:85', 'hash': '0xa93411822659ea3235a1ebaf536d09f4073058d403536d68ae0e1ae22c3fb390', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4fa25bf1c9b58f98de5a0b449fbe7387e04a12c3', 'value': 0.09165918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8bdc5e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xe7b74e260df40a5a263061a32a408f606c02bcf705d27e2a18b8cd842ece2143:log:86', 'hash': '0xe7b74e260df40a5a263061a32a408f606c02bcf705d27e2a18b8cd842ece2143', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4a0cac1a6599ddfa8d8c1668e1c186d793494c34', 'value': 0.00074598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012366', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xeca07d81ffb86b707236b106db0612a9e81783967251a20df6529f40c38cf614:log:87', 'hash': '0xeca07d81ffb86b707236b106db0612a9e81783967251a20df6529f40c38cf614', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4a6fb0c48df17975b6d915b8446098ef620cd5d2', 'value': 0.22096287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0151299f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x88b378498a4b8decadeb6fb376e7a36b7ebc6bfceebf8c457fc5c40828cce01b:log:88', 'hash': '0x88b378498a4b8decadeb6fb376e7a36b7ebc6bfceebf8c457fc5c40828cce01b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4cd9cd79dfbcfe523bf83739b51e719e68d3dcda', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x00d33b9a1428039201c5353d6adcb35033d247f0da195f0cc226f8521b326e7b:log:89', 'hash': '0x00d33b9a1428039201c5353d6adcb35033d247f0da195f0cc226f8521b326e7b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4dcc849813186b235ac46aef44ac28ef73175450', 'value': 0.0503193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4cc7fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x0b7d3edf3755d13175c486f1b544c071784725269920868927980ab710f28318:log:90', 'hash': '0x0b7d3edf3755d13175c486f1b544c071784725269920868927980ab710f28318', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4e3ddbf8a6b6183fe31cac3314dbb42025f90963', 'value': 3.453e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xac034c9c1fc9e3656c32dce709c8c3920f16bcfabd39d58ee1f4fcd4cf7f97bf:log:91', 'hash': '0xac034c9c1fc9e3656c32dce709c8c3920f16bcfabd39d58ee1f4fcd4cf7f97bf', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4ebaf078abef8c6aac14457ca220f0e179d596b4', 'value': 0.00245207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03bdd7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x48729ad89709e3aab6ff54ab0f3fe6000b93f9da2ec27ddf1b8cff40e8c62898:log:92', 'hash': '0x48729ad89709e3aab6ff54ab0f3fe6000b93f9da2ec27ddf1b8cff40e8c62898', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3a04d6336f0948636801ae398b7478f4927ee5cc', 'value': 0.00569493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08b095', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x229987c4967d36bd72abefadba8b8381c79a737b1b99bbb03ff3ead30f96710f:log:93', 'hash': '0x229987c4967d36bd72abefadba8b8381c79a737b1b99bbb03ff3ead30f96710f', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3afca76f6a97649a3fde05f133d7ae1ed2b581fb', 'value': 0.01630261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x18e035', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x2fc01f6008a147ea9ac60240552797c5db65098887124f1d0fbe996e8c9ef777:log:94', 'hash': '0x2fc01f6008a147ea9ac60240552797c5db65098887124f1d0fbe996e8c9ef777', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3bab3ee9f80717e1a46fc08558fa5605ad6b777d', 'value': 0.01331105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144fa1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x0fc24df5e565208c2d8c4eeb8652c901a3c64c2ea1bde4636c035c723880bbfc:log:95', 'hash': '0x0fc24df5e565208c2d8c4eeb8652c901a3c64c2ea1bde4636c035c723880bbfc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c438e7aab4e09045d6a4b5314f431844bc66677', 'value': 0.01270725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1363c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xf732140429963af473f641112d9df3b3004a2ec48d891c0689c8d129d8f26d1d:log:96', 'hash': '0xf732140429963af473f641112d9df3b3004a2ec48d891c0689c8d129d8f26d1d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3c8e01ef63823df650ba4409ee10b1fb7fb47d06', 'value': 0.006038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x093698', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xc3f3773b5b438e61b3834c133b9259a4d0dbdd912adbb275c0fa7d00f38a2e25:log:97', 'hash': '0xc3f3773b5b438e61b3834c133b9259a4d0dbdd912adbb275c0fa7d00f38a2e25', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3cc2caae97d9db608d802fd2febc4bb2a84cd4ce', 'value': 0.00044598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xae36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xaf64e60f8a109fa9a794764cad27c7c5c83c977e4933dfe665ac7e6674367a63:log:98', 'hash': '0xaf64e60f8a109fa9a794764cad27c7c5c83c977e4933dfe665ac7e6674367a63', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3d2ddf3c389e534b29d8773243c38786f8b1f600', 'value': 0.00370513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05a751', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xe01bf05a9bb5dae24723e7cdb42cc5221c87c82cc3180d9a6fbcfcb22d756cfa:log:99', 'hash': '0xe01bf05a9bb5dae24723e7cdb42cc5221c87c82cc3180d9a6fbcfcb22d756cfa', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3d4aa9b18320a8dd0587c3bc57640c9aaeb4eca4', 'value': 0.00871393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d4be1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x9132abef7a5e6d941dcac975076eefaeb760b5c83ad4d3ee89cc276abb44a9d9:log:124', 'hash': '0x9132abef7a5e6d941dcac975076eefaeb760b5c83ad4d3ee89cc276abb44a9d9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3d7934a0f7e603566d4f4bdf9db0dbbedc4dd6fe', 'value': 0.00445988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06ce24', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x8f32efc3a96f3fc7c669c4f483e7a31d02b0b29a2d84cfc1d90e1e5196bf9022:log:125', 'hash': '0x8f32efc3a96f3fc7c669c4f483e7a31d02b0b29a2d84cfc1d90e1e5196bf9022', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3dc523ea5c95bf21f8195d5910b302e4f1235840', 'value': 0.00830225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cab11', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0xe7a271d3f2272372de848337d65e29426934ef90c0a98c60f48ea57516688955:log:126', 'hash': '0xe7a271d3f2272372de848337d65e29426934ef90c0a98c60f48ea57516688955', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3e5487f7df3e608593bdde7f7f22d27604392d08', 'value': 0.0005146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc904', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x0de27e0d57797c033b0ea9da725b545fd9227022f3489940f8d7f5a51ce88c2f:log:127', 'hash': '0x0de27e0d57797c033b0ea9da725b545fd9227022f3489940f8d7f5a51ce88c2f', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f0d48c6881bc6fc257b8a63b9a56458d3e9b6c2', 'value': 0.00259021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03f3cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x75a6fc35994f6147d983d6aa2bd27123fabc87cb19947bc6e28d5c65d127c688:log:128', 'hash': '0x75a6fc35994f6147d983d6aa2bd27123fabc87cb19947bc6e28d5c65d127c688', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f7f0fb13e6360240b74f6e250976ff6b41371e0', 'value': 0.01883606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cbdd6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0xcd897ab8b6da7152e6116a8662d53531073b29794c962e7f0008edb3913187ce:log:133', 'hash': '0xcd897ab8b6da7152e6116a8662d53531073b29794c962e7f0008edb3913187ce', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x11cb4b21b11b6c1282291a01cb7725933fd76792', 'value': 0.01320698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1426fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x6fe2d82c08e664fac05285b4f89274606512acf08f578d49af2f83b2fd53a5dd:log:134', 'hash': '0x6fe2d82c08e664fac05285b4f89274606512acf08f578d49af2f83b2fd53a5dd', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x120b3d8bc249a2c82d890c228b7cfd5acfc423da', 'value': 0.24093121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016fa1c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x96e39577a71fe9071c1705914ff6d0926e76c6029c9536c5f3a7809335109165:log:135', 'hash': '0x96e39577a71fe9071c1705914ff6d0926e76c6029c9536c5f3a7809335109165', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x12a8822c9a93bc595bf0b9ed297607aadc939578', 'value': 0.0112053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x111912', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0xfdc71749922ef15357761c648bbf2e2fe8d18b690a357f4effeb27c8e1b21600:log:136', 'hash': '0xfdc71749922ef15357761c648bbf2e2fe8d18b690a357f4effeb27c8e1b21600', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x12adabb203e9741283042fa356bc4d30e5e90081', 'value': 0.35974595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0224edc3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x9a4b89975ecb548c97582e99ca3672a4cb0c1df80eaae2a35748cf51246f8ca9:log:137', 'hash': '0x9a4b89975ecb548c97582e99ca3672a4cb0c1df80eaae2a35748cf51246f8ca9', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x1324aad89aa0744eb398d25dbb1409e5e8a2a12c', 'value': 1.34066053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07fdaf85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x311ef3a88cc4a0a8200140ff1f1e3571f91919e813aed64824c39a2ad2a18492:log:138', 'hash': '0x311ef3a88cc4a0a8200140ff1f1e3571f91919e813aed64824c39a2ad2a18492', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x138b29c26b84acbf1529f0906e34757d8b1552c9', 'value': 0.29045054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01bb313e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0xdd678e5c35e1e453b44f88b4b1f1654533f24f012ec09e24b802c61a226370be:log:139', 'hash': '0xdd678e5c35e1e453b44f88b4b1f1654533f24f012ec09e24b802c61a226370be', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x13d1bdffd982439749dd2684065f7f007e97a875', 'value': 8.254e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x203e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x74c1dc8107435736b2596ffd25384cc071a9a4aed96b63e37d1a0332942eda0a:log:140', 'hash': '0x74c1dc8107435736b2596ffd25384cc071a9a4aed96b63e37d1a0332942eda0a', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x14011475b92a4b780c94e65431b15711244803b2', 'value': 1.375e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x055f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x76d53a66ff052453caebc8e02ee3053cacb2c969161d74a271743f857270f0ec:log:141', 'hash': '0x76d53a66ff052453caebc8e02ee3053cacb2c969161d74a271743f857270f0ec', 'from': '0x0035fa5cd07fa1c21dd79afad732fa6d60bf3551', 'to': '0x14052ab2eb933d9f8ce38ac3c249363ccc724464', 'value': 0.27967171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01aabec3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0381', 'uniqueId': '0x1f522d57f2c37ef7e76fbe40c8f509e556784f3f01e18c2e2f4ec167982611b9:log:12', 'hash': '0x1f522d57f2c37ef7e76fbe40c8f509e556784f3f01e18c2e2f4ec167982611b9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3e6c753cb00f0c9f363d4ac4ec60388fa74b01ad', 'value': 0.02984695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d8af7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:24.000Z'}}, {'blockNum': '0x7f0383', 'uniqueId': '0xc048e06b31537d8afb44ed8bcf7f35244cf21d2705e9d8134f38de7a4a7a92ce:log:46', 'hash': '0xc048e06b31537d8afb44ed8bcf7f35244cf21d2705e9d8134f38de7a4a7a92ce', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4f8cdcdf26435e5376c1a6fb73c6a0a5e9e9f5bc', 'value': 0.02987384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d9578', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:35.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0x98936f9d0d6ee1df181267c2df08e4f897fd653d1e2fc19f13c38cd833cbbb56:log:73', 'hash': '0x98936f9d0d6ee1df181267c2df08e4f897fd653d1e2fc19f13c38cd833cbbb56', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x4fc41555c094857e47e108e42e4537049b49fd99', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0x69ad48c610e8047e4d76054e5cc6583f075d4cb7c15a65f2b09fb8edb8a3acf2:log:74', 'hash': '0x69ad48c610e8047e4d76054e5cc6583f075d4cb7c15a65f2b09fb8edb8a3acf2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x5016aae777d37d656683fb981cc5aee493b361ee', 'value': 0.05764098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x57f402', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0xa9f2f335b4d80307cf554958bde39440e5147c35cf252b329c5c20aa5daff0d8:log:77', 'hash': '0xa9f2f335b4d80307cf554958bde39440e5147c35cf252b329c5c20aa5daff0d8', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3ee83180ecaaa7143a9bfb6a05a67cd9acf9c7ba', 'value': 0.00195548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fbdc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0x1219851f1e55502249d5be59e410a92bed7cc155863eca441774138f87fa0fd6:log:78', 'hash': '0x1219851f1e55502249d5be59e410a92bed7cc155863eca441774138f87fa0fd6', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f074bd7cb7d454800c66dd766fc29f989999181', 'value': 0.00878255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d66af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0x000f1b07984c67cc6475f6bb4c538902be75d167245bd0d4d46c37889f2305c3:log:79', 'hash': '0x000f1b07984c67cc6475f6bb4c538902be75d167245bd0d4d46c37889f2305c3', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f6312fd939dcadf607c8eed886e0156faecda15', 'value': 0.17918462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011169fe', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0385', 'uniqueId': '0x83d744fca8c2a1f0c57119bef58357888a3b08ecc9b1bbcc06bf8d45daa4bef2:log:19', 'hash': '0x83d744fca8c2a1f0c57119bef58357888a3b08ecc9b1bbcc06bf8d45daa4bef2', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x509be1b6c0d18bf6221a76b93f936c5c632fa0bb', 'value': 0.61650645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03acb6d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:38:10.000Z'}}, {'blockNum': '0x7f0385', 'uniqueId': '0x2ee61ce2ec5523d6734d6a41307d31b9b79a0796b21c8a663d18d96bca057a97:log:21', 'hash': '0x2ee61ce2ec5523d6734d6a41307d31b9b79a0796b21c8a663d18d96bca057a97', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3f663c6e63e8fa973f22787f852e1e00914e360e', 'value': 0.00964022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0eb5b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:38:10.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xe62c4d196def4c087fc381234291adb254b655bb756c593c3be5f5939ce30efa:log:108', 'hash': '0xe62c4d196def4c087fc381234291adb254b655bb756c593c3be5f5939ce30efa', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x50abb2f2d75469b0855314fbd63bbc2bfc597785', 'value': 0.00207217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032971', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xd486e546a95253e8e824ea648735a05c21a861942f9a6daa5eef465ae0ec2773:log:109', 'hash': '0xd486e546a95253e8e824ea648735a05c21a861942f9a6daa5eef465ae0ec2773', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x51090098c754cb5f04e57dccb127d171ab2cd887', 'value': 0.05669469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x56825d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x14e3b087d9b44a4e9ac2650394c6bbfbf538269c7b5b62f6226d9442e48bd145:log:110', 'hash': '0x14e3b087d9b44a4e9ac2650394c6bbfbf538269c7b5b62f6226d9442e48bd145', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x511895a4f0e801e9012f44f8f37487e6ea337c3f', 'value': 0.00154722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025c62', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xb41cbfe034961cea0f483a68c7247592e1ba5641ae9139faba6f80eb11c1b8ee:log:111', 'hash': '0xb41cbfe034961cea0f483a68c7247592e1ba5641ae9139faba6f80eb11c1b8ee', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3ff39298b96813099355626fc18153ad966e17ba', 'value': 0.00950299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e801b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x6bdd4be7c9fbb9880552e64374a5b0e1990ff6a7f0e8200cffd6cd26a3640345:log:112', 'hash': '0x6bdd4be7c9fbb9880552e64374a5b0e1990ff6a7f0e8200cffd6cd26a3640345', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x3ff83d096d31c6fa232c39a7ddbb7448081b1ab7', 'value': 0.00075475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0126d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x61373fb0a28bed486b0c33d7daf9ee90d602924eba86bf6dcdedadb921238591:log:113', 'hash': '0x61373fb0a28bed486b0c33d7daf9ee90d602924eba86bf6dcdedadb921238591', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x400303bcd4bf9243d116be436d7f306aec35ea9e', 'value': 0.00032934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x80a6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x19de005fb5bff8cf7870e26f8d8d919ee5b47eed1de7901f4b04810e5c037809:log:114', 'hash': '0x19de005fb5bff8cf7870e26f8d8d919ee5b47eed1de7901f4b04810e5c037809', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4045a7dac57e456bb335817849a133162d7442ab', 'value': 0.0012076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01d7b8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x0fe85dafd52601a2b1ae55a78ce3d63c2ff4718f19bdea3f8fa31e37f19fd066:log:115', 'hash': '0x0fe85dafd52601a2b1ae55a78ce3d63c2ff4718f19bdea3f8fa31e37f19fd066', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x405e94a57d6801e3e583d30776ffc047b0aad6a6', 'value': 2.744e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ab8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x2e28075919a80ff93d34592d45527e131e51fc01db11bcb45cab51de5a7ffcbc:log:116', 'hash': '0x2e28075919a80ff93d34592d45527e131e51fc01db11bcb45cab51de5a7ffcbc', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x406f9064d8b605ecffa5bbd75ebcceb2f457e79c', 'value': 0.01228184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12bd98', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x2a130e501d3113baff7021f3291263e049074fdded79641d255ec32bd11bb376:log:117', 'hash': '0x2a130e501d3113baff7021f3291263e049074fdded79641d255ec32bd11bb376', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x408965e07bc026cada8a8f3b73f751756d08ac2a', 'value': 0.02531844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26a204', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x21e6b2efc0d701fa465a422cddd51a0c1da027c3ade17f83981ca749103705d1:log:118', 'hash': '0x21e6b2efc0d701fa465a422cddd51a0c1da027c3ade17f83981ca749103705d1', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x419ec1b706a786e5df7315e3b97f4aaefbf05026', 'value': 0.01789444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b4e04', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x74252077d0d1fed8ac9c47539a21f56999fb471edaabb956189a63f4025b7b90:log:119', 'hash': '0x74252077d0d1fed8ac9c47539a21f56999fb471edaabb956189a63f4025b7b90', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x41b3d61d125c07f69066a5ec8eb9f9e2a8036d0c', 'value': 0.01272783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x136bcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x5716ddb628ced417b808de2401b5a54ba787a42d13ac34fec2c142200ac9d841:log:120', 'hash': '0x5716ddb628ced417b808de2401b5a54ba787a42d13ac34fec2c142200ac9d841', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x41ebbbd8c8ea43da810b317e2c08d1121308dd70', 'value': 0.00439127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06b357', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xff45ac93e0878f9d0b8aaf867276392ae1c6c43b3ed5969cefb632d68c4785cf:log:121', 'hash': '0xff45ac93e0878f9d0b8aaf867276392ae1c6c43b3ed5969cefb632d68c4785cf', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x421c107d6b82da7346f2ce3dd3784e93a7efb84b', 'value': 0.00304644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04a604', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x2ed1d8567707eec2dfd2eafa9d4349f7ba07172df34eb1d9441e00a08e615e96:log:122', 'hash': '0x2ed1d8567707eec2dfd2eafa9d4349f7ba07172df34eb1d9441e00a08e615e96', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x421e4eb81a24a1e1d80dfa86b8fc8e35ab9ec71c', 'value': 0.00226425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037479', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xe2802622387236266cfab7b5bcd9ce2143484f0d8af9003569e7255f8ffcbb6d:log:123', 'hash': '0xe2802622387236266cfab7b5bcd9ce2143484f0d8af9003569e7255f8ffcbb6d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4226d52b39877668a0888d2ad2fa13e8637640d8', 'value': 0.02596341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x279df5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xeb354b9bd3f130542ec4a4ce3b7b8dfda397dfaba6c234a9005ad7b348523950:log:124', 'hash': '0xeb354b9bd3f130542ec4a4ce3b7b8dfda397dfaba6c234a9005ad7b348523950', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x42862ccfcc8a9a33ac9f803f716d250a4812f665', 'value': 0.00658691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a0d03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x1d4e9f20fc84f2cdda7b049aa07808aa64bca5734c2e7930c891906d6edba56a:log:125', 'hash': '0x1d4e9f20fc84f2cdda7b049aa07808aa64bca5734c2e7930c891906d6edba56a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x429f0b98d6aee7e18209cc95a9ac2c99a7a4ea6b', 'value': 0.00480295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x075427', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x38ddb3fd754811e32c35cb5d8b473433a2af53f488b6b21da2a47083afe0047d:log:126', 'hash': '0x38ddb3fd754811e32c35cb5d8b473433a2af53f488b6b21da2a47083afe0047d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x42b5c5f28dafe27ca602eb6f9b97b3f70180630d', 'value': 0.01506756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16fdc4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0x32b9bdea6be585aa01e8358bee39015c05319a4ef6c1a0672c741cbfdbe03908:log:127', 'hash': '0x32b9bdea6be585aa01e8358bee39015c05319a4ef6c1a0672c741cbfdbe03908', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x42e05dc97e7baf3e1ecaaa657f2a8c479038d81b', 'value': 0.00518033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07e791', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038e', 'uniqueId': '0xf538e33c80af32d0f9773e4760719281d2979de563c87537cffee3d28c51855e:log:15', 'hash': '0xf538e33c80af32d0f9773e4760719281d2979de563c87537cffee3d28c51855e', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4314b8c4d5933ed75b4fdc08b7597f8856118871', 'value': 0.01447748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x161744', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:41.000Z'}}, {'blockNum': '0x7f038e', 'uniqueId': '0x29fc72313f3b8f1ea98aedb906ff83571ed152b3e4e9ad63b9a6b24a1efcb02e:log:16', 'hash': '0x29fc72313f3b8f1ea98aedb906ff83571ed152b3e4e9ad63b9a6b24a1efcb02e', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x519f39f5f663ab28b1a0811097ff4ee6977a6990', 'value': 2.762e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:41.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x093706a34bbec6de4f1062b7eddd080e41b9c122343c8602d55a458aa405831a:log:10', 'hash': '0x093706a34bbec6de4f1062b7eddd080e41b9c122343c8602d55a458aa405831a', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x431623abdcd66ba2f5105859a7cdb575be14e667', 'value': 0.00270337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x042001', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x3b313761c96b4e4cf14e4c6748da78f48c19ea440817d817a8e0aa97f46cacdb:log:11', 'hash': '0x3b313761c96b4e4cf14e4c6748da78f48c19ea440817d817a8e0aa97f46cacdb', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x432e9dabe0ec0ecac47c1d1e2024c0d5926e6218', 'value': 0.00365024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0591e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xa1dc5724ee0373d2f79f1aa7bbc0d0d732dd26daff3ff47f6f8968171765276d:log:12', 'hash': '0xa1dc5724ee0373d2f79f1aa7bbc0d0d732dd26daff3ff47f6f8968171765276d', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4374398fc33c5ebf7e92fb111521a9a5bc4e3325', 'value': 0.00727305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b1909', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xf7336aff812ec2060915f17fcef67b5f9750ec99cd6f66998d725b4c511280ff:log:13', 'hash': '0xf7336aff812ec2060915f17fcef67b5f9750ec99cd6f66998d725b4c511280ff', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x43b08ce13abca96763b99cac35a3935a7f6444f4', 'value': 0.00874824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0d5948', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xfe9813382b3ae3a6449b8a9928d3d26fe027ed40d002579856a7dabead7eceb9:log:14', 'hash': '0xfe9813382b3ae3a6449b8a9928d3d26fe027ed40d002579856a7dabead7eceb9', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x43c9a8870cc24c88212b14912bcd24ed673a3176', 'value': 0.02336295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23a627', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x0ef6e329e822f07d3965c9f41e1ddad6078a1c2be5c31cad0b620b6ad695e49b:log:15', 'hash': '0x0ef6e329e822f07d3965c9f41e1ddad6078a1c2be5c31cad0b620b6ad695e49b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4434ba4dc9faec4b99f0fe15081647e0557e146c', 'value': 0.01396288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x154e40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x5c6e6943fd99cdec0175aab72b3ecc9c979be76feab06dd91ebc15b1139a1cba:log:16', 'hash': '0x5c6e6943fd99cdec0175aab72b3ecc9c979be76feab06dd91ebc15b1139a1cba', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x51a9e356e810a802801014007fbeea2d2053e714', 'value': 0.04928321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b3341', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xd23a1caa064b90431bd0691516fa46b3514c90443a48698019674681a8a2bb1b:log:17', 'hash': '0xd23a1caa064b90431bd0691516fa46b3514c90443a48698019674681a8a2bb1b', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x51dc998df36ba16241b7c6498469fed2d2eda7da', 'value': 0.3388696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020512f0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x665c1606453f36ce33a6f8b86c1a3e49cfd41f94e4c1adf4c0ecbd8e618394c0:log:18', 'hash': '0x665c1606453f36ce33a6f8b86c1a3e49cfd41f94e4c1adf4c0ecbd8e618394c0', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x521af46b9b09ecda22467f7977b0d24dc673f537', 'value': 0.00597476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x091de4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xa40bd553261c3b020948404ca9c84e3e5b33a0f5216cbeaa3acac5ee46a7ed53:log:19', 'hash': '0xa40bd553261c3b020948404ca9c84e3e5b33a0f5216cbeaa3acac5ee46a7ed53', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x52329c94d913eec7bddf09e9eda71b0f2aaee1cc', 'value': 0.0001036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2878', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0x3a1e439b5801e71f41fc089c99a037f3ea39968f0681e1d8394f1bc1fe0aebb1:log:20', 'hash': '0x3a1e439b5801e71f41fc089c99a037f3ea39968f0681e1d8394f1bc1fe0aebb1', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x524c1a81ec57f7ac4d941839ea31c78f99c8cc8a', 'value': 0.00259021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03f3cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0397', 'uniqueId': '0xb530a2e60ec65ef23802ca77511a576ab890d188c616201e91b324d0e7a98a68:log:69', 'hash': '0xb530a2e60ec65ef23802ca77511a576ab890d188c616201e91b324d0e7a98a68', 'from': '0x005f7b5faa2f8a7a647d2b2dd2c278b35429fdc6', 'to': '0x525a5fe6012e10a25284a5bc287968eb6ab0da0d', 'value': 5.525e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:21.000Z'}}, {'blockNum': '0x7f0399', 'uniqueId': '0x9dd39e6010296d6593da49e4381f61cde1e6b383ae93a23c10edb71888c47b5c:log:101', 'hash': '0x9dd39e6010296d6593da49e4381f61cde1e6b383ae93a23c10edb71888c47b5c', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x4495fe2d74cea7e4b4cd2f79231b63c1e6503403', 'value': 0.00343068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x053c1c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:53.000Z'}}, {'blockNum': '0x7f0399', 'uniqueId': '0xda1f85161e14a2ac53449df5cbc3e41993c0eea100118259102516323ac1cb98:log:102', 'hash': '0xda1f85161e14a2ac53449df5cbc3e41993c0eea100118259102516323ac1cb98', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x44a46e8ac16ba3456c3f606d1bfaf3073f88f28a', 'value': 0.01461471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x164cdf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:53.000Z'}}, {'blockNum': '0x7f0399', 'uniqueId': '0xb8000546055a31d60033f9c0d8f992e28b0370af4ad143cffb04cba81eb1d659:log:103', 'hash': '0xb8000546055a31d60033f9c0d8f992e28b0370af4ad143cffb04cba81eb1d659', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x44bbb67e5f02eeb86401e5e023d5a805cac5ae2d', 'value': 0.00548909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08602d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:53.000Z'}}, {'blockNum': '0x7f0399', 'uniqueId': '0x7e66a15fc74515a342649867a62a4b769a76b856b6d2cbfaddeb1c79f2d3f21b:log:104', 'hash': '0x7e66a15fc74515a342649867a62a4b769a76b856b6d2cbfaddeb1c79f2d3f21b', 'from': '0x0071edcf0c4dd52231bcafc7caab231062b75561', 'to': '0x457b99ac42a76c37c62f8bc0faad0b7aa012738e', 'value': 0.02065271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f8377', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:53.000Z'}}], 'pageKey': 'cca167e3-333d-4c11-ab52-8a906e2e7b1f'}}
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Number of returned transfers:  1005
Answer is complete
 
symbol             ICN
group              BPG
date        2018-08-08
hour             16:00
exchange       binance
Name: 253, dtype: object
HERE
 Symbol: ICN, Contract: 
Datetime timestamps:  2018-08-08 16:00:00 2018-08-08 04:00:00 2018-08-09 04:00:00
Unix timestamps:  1533693600.0 1533780000.0
Hex Block Numbers:  0x5d32d4 0x5d4a05
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             OAX
group              BPG
date        2018-08-17
hour             16:00
exchange       binance
Name: 254, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2018-08-17 16:00:00 2018-08-17 04:00:00 2018-08-18 04:00:00
Unix timestamps:  1534471200.0 1534557600.0
Hex Block Numbers:  0x5e0308 0x5e19c2
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5e0afa', 'uniqueId': '0xab4681269b71b8379d0fe596d32c1cfee87e94e5a76f17937f1b0b804a387095:log:16', 'hash': '0xab4681269b71b8379d0fe596d32c1cfee87e94e5a76f17937f1b0b804a387095', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf7c8d0ca768080105330d9de4f0f96b001ff7a55', 'value': 963.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3438ce5a1738660000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T10:25:36.000Z'}}, {'blockNum': '0x5e0dec', 'uniqueId': '0xe210f978d3d13321c318e8c95fbe2a96dcceca13bea002f50516c230537c174d:log:22', 'hash': '0xe210f978d3d13321c318e8c95fbe2a96dcceca13bea002f50516c230537c174d', 'from': '0x1966b35598ed9b92b75091f6ec296cdd22e064cb', 'to': '0xe4fae7bdc973581fe52eb1905646664f6d7b7dbf', 'value': 302.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1064a49dd0ee200000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T13:29:37.000Z'}}, {'blockNum': '0x5e104b', 'uniqueId': '0xdd1b17cc55deebe8530db5d15af5579e8050c01af40bec7d9036e51cd3073443:log:116', 'hash': '0xdd1b17cc55deebe8530db5d15af5579e8050c01af40bec7d9036e51cd3073443', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb30074914113d80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:01:21.000Z'}}, {'blockNum': '0x5e104d', 'uniqueId': '0x29c477f7fb2e33c7098734bf8a7b9018cd66b215ff7161d6134e28de18105890:log:42', 'hash': '0x29c477f7fb2e33c7098734bf8a7b9018cd66b215ff7161d6134e28de18105890', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 957.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x33eb73869f7e5f0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:02:12.000Z'}}, {'blockNum': '0x5e1053', 'uniqueId': '0xa6b4541e34c077e397a2b7c40b667195e392df19bbdf674bd1650722d50667ca:log:17', 'hash': '0xa6b4541e34c077e397a2b7c40b667195e392df19bbdf674bd1650722d50667ca', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 5229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x011b76f3d39215940000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:03:50.000Z'}}, {'blockNum': '0x5e1056', 'uniqueId': '0xb8e8a4d606acbbbfd92973fd2c0d1bb33f3789b140e82dd575f0b9948044019c:log:104', 'hash': '0xb8e8a4d606acbbbfd92973fd2c0d1bb33f3789b140e82dd575f0b9948044019c', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1037.70281994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x38410500c010d6e800', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:04:49.000Z'}}, {'blockNum': '0x5e105c', 'uniqueId': '0xb782dec40d3a8f05d94ad950ae8110e644925b66d8271c9f5eafbf0704149eba:log:33', 'hash': '0xb782dec40d3a8f05d94ad950ae8110e644925b66d8271c9f5eafbf0704149eba', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1020.07015935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x374c51355d90dc1c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:06:00.000Z'}}, {'blockNum': '0x5e107e', 'uniqueId': '0xa68139d0f9fe5631695090bab0b06236da5bb39163311a99fdf84ceb6041ec77:log:91', 'hash': '0xa68139d0f9fe5631695090bab0b06236da5bb39163311a99fdf84ceb6041ec77', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6317.52297929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0156793e4dfe33ea0400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:13:02.000Z'}}, {'blockNum': '0x5e107e', 'uniqueId': '0x2f9c6bc028083c5f5c4b8b28b51982d48a6dea5c33e97356f4dd5126d8b540d2:log:92', 'hash': '0x2f9c6bc028083c5f5c4b8b28b51982d48a6dea5c33e97356f4dd5126d8b540d2', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x011b76f3d39215940000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:13:02.000Z'}}, {'blockNum': '0x5e10bc', 'uniqueId': '0x9a6fd9a892212a060fadb8c470783a6efa265ecc5d5807edaa64567ddb2142e9:log:18', 'hash': '0x9a6fd9a892212a060fadb8c470783a6efa265ecc5d5807edaa64567ddb2142e9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x203367ecda66080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:29:04.000Z'}}, {'blockNum': '0x5e10d6', 'uniqueId': '0x5caa9591e35863d6e24b5921669e1d8447666118ecd414983f939039b8481b48:log:8', 'hash': '0x5caa9591e35863d6e24b5921669e1d8447666118ecd414983f939039b8481b48', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 9394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01fd3ff04c7473880000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:36:53.000Z'}}, {'blockNum': '0x5e10f5', 'uniqueId': '0x9689a021f03709b71ed35f9a494c3f6e8211f0132ff4d43ad44f878fa36d604d:log:20', 'hash': '0x9689a021f03709b71ed35f9a494c3f6e8211f0132ff4d43ad44f878fa36d604d', 'from': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01fd3ff04c7473880000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-17T16:43:08.000Z'}}]}}
Number of returned transfers:  12
Answer is complete
 
symbol             RDN
group              BPG
date        2018-08-21
hour             16:00
exchange       binance
Name: 255, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2018-08-21 16:00:00 2018-08-21 04:00:00 2018-08-22 04:00:00
Unix timestamps:  1534816800.0 1534903200.0
Hex Block Numbers:  0x5e5f1a 0x5e7667
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5e5ff1', 'uniqueId': '0xc85e09c0effd529492f3c6c68a238b9ab6f1bc8a7450db9691347af681a6c771:log:0', 'hash': '0xc85e09c0effd529492f3c6c68a238b9ab6f1bc8a7450db9691347af681a6c771', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x35125ab109236c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T02:53:00.000Z'}}, {'blockNum': '0x5e6049', 'uniqueId': '0xabaafecaae73b504cc447b6138b7a018b430098ff4de02f317275568f834f846:log:6', 'hash': '0xabaafecaae73b504cc447b6138b7a018b430098ff4de02f317275568f834f846', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 4526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf55ade1c3969f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T03:13:15.000Z'}}, {'blockNum': '0x5e61c5', 'uniqueId': '0x2c6bb3871b17d4b72427117d8fa14e557cad3ed8ef82082b76f0c0b9214c4c0a:log:0', 'hash': '0x2c6bb3871b17d4b72427117d8fa14e557cad3ed8ef82082b76f0c0b9214c4c0a', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xfa1542e385fd4d8e1f1b3b057b04b0ed9f521936', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T04:47:50.000Z'}}, {'blockNum': '0x5e62b3', 'uniqueId': '0x53e8eb2e39b86f15844d4b0b08c53f986f84d4dc658a9d73b15ad068764c8fee:log:38', 'hash': '0x53e8eb2e39b86f15844d4b0b08c53f986f84d4dc658a9d73b15ad068764c8fee', 'from': '0x81f1d004fc93f35ae9e46a11dd39432f3651664d', 'to': '0xb7bb6c45800f4531cc1581637868373a06367b48', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T05:42:49.000Z'}}, {'blockNum': '0x5e636b', 'uniqueId': '0x711a8e4066b4da6999b2f839c94ac13dc88330335dbf6a53fbc18f18185c6720:log:51', 'hash': '0x711a8e4066b4da6999b2f839c94ac13dc88330335dbf6a53fbc18f18185c6720', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2020.2443023315334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d84859141e9e81f24', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:26:51.000Z'}}, {'blockNum': '0x5e636b', 'uniqueId': '0x711a8e4066b4da6999b2f839c94ac13dc88330335dbf6a53fbc18f18185c6720:log:53', 'hash': '0x711a8e4066b4da6999b2f839c94ac13dc88330335dbf6a53fbc18f18185c6720', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x4d9cf56abbbca2b8fea0d4d90c8f5a3c82c90119', 'value': 2020.2443023315334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d84859141e9e81f24', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:26:51.000Z'}}, {'blockNum': '0x5e6383', 'uniqueId': '0xfa6b6dafe441500e04619e43b5ff5c9bb712e0b45044f78432b5ecb07b96bf95:log:2', 'hash': '0xfa6b6dafe441500e04619e43b5ff5c9bb712e0b45044f78432b5ecb07b96bf95', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a0d0ee29f2f980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:32:30.000Z'}}, {'blockNum': '0x5e6394', 'uniqueId': '0x6cd56777e3d07770fce6e8170914f2cdc9fe13678f77a0e9d437fc5760676d65:log:11', 'hash': '0x6cd56777e3d07770fce6e8170914f2cdc9fe13678f77a0e9d437fc5760676d65', 'from': '0x7990da0c8c669963f82de5a0b0f5af464f39ae07', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1704.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c63c2d7ca35b67fff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:37:19.000Z'}}, {'blockNum': '0x5e63b3', 'uniqueId': '0xd3ee94b912faef4977ba13753697c13fd4b51c2fb81d5d6b6500d78a4596edd2:log:6', 'hash': '0xd3ee94b912faef4977ba13753697c13fd4b51c2fb81d5d6b6500d78a4596edd2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x629bb22e86638c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:44:57.000Z'}}, {'blockNum': '0x5e63e7', 'uniqueId': '0x05cd7b33dd5a99a6979cbdeb3d171477ba90e0f020ad8ea8db61df95c6a90640:log:117', 'hash': '0x05cd7b33dd5a99a6979cbdeb3d171477ba90e0f020ad8ea8db61df95c6a90640', 'from': '0x5f2a8c0f9907dd1c8f6b10de8645ebf818b26250', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 118.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0666f77c4785a20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T06:57:55.000Z'}}, {'blockNum': '0x5e6402', 'uniqueId': '0x18a8f0c5a28157a740aaa50624a616bde2b968614a2e673f6daedae625ef7dbd:log:65', 'hash': '0x18a8f0c5a28157a740aaa50624a616bde2b968614a2e673f6daedae625ef7dbd', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3274.3066542151037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb1802209fd0d0902f0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:04:37.000Z'}}, {'blockNum': '0x5e6402', 'uniqueId': '0x18a8f0c5a28157a740aaa50624a616bde2b968614a2e673f6daedae625ef7dbd:log:67', 'hash': '0x18a8f0c5a28157a740aaa50624a616bde2b968614a2e673f6daedae625ef7dbd', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x2d48ff17252a19ddac3f5e7276081e35402a9cc4', 'value': 3274.3066542151037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb1802209fd0d0902f0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:04:37.000Z'}}, {'blockNum': '0x5e6411', 'uniqueId': '0x4d360730f9ef712a4ff60afa0525a2da6ce902c210cf6ec1ce3264852d236d9d:log:8', 'hash': '0x4d360730f9ef712a4ff60afa0525a2da6ce902c210cf6ec1ce3264852d236d9d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a5aa85009e39c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:09:34.000Z'}}, {'blockNum': '0x5e6443', 'uniqueId': '0x2ad514a0663eb305ae94ab6537b06085485b973dda80dac62ad12ef65eec38d5:log:118', 'hash': '0x2ad514a0663eb305ae94ab6537b06085485b973dda80dac62ad12ef65eec38d5', 'from': '0xbbbb32bdf73b869b5b1df34f8600b2f09247cbe4', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 5.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4c53ecdc18a60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:22:46.000Z'}}, {'blockNum': '0x5e6458', 'uniqueId': '0x37c0ad6c3178952e58652ced8ce6194a71a6215e18d0d07c7cc935b23329963b:log:1', 'hash': '0x37c0ad6c3178952e58652ced8ce6194a71a6215e18d0d07c7cc935b23329963b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa721384590e14c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:26:47.000Z'}}, {'blockNum': '0x5e6459', 'uniqueId': '0xfe6dd22e021ed7f72e1cc520055b4fd2ddf689a5a5a4cfe1cd0544c52876ec1d:log:6', 'hash': '0xfe6dd22e021ed7f72e1cc520055b4fd2ddf689a5a5a4cfe1cd0544c52876ec1d', 'from': '0xa86b11e73634da52611a037e0dc70a9ab27959c8', 'to': '0x818a7beaa5f985de4029b045c52e5d0a2b9a95a2', 'value': 961.535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x341ffa8c11b9398000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:26:54.000Z'}}, {'blockNum': '0x5e647f', 'uniqueId': '0xf012f90d3a5ef0e4ef9ec9a36ca9e3ff7cbeb2ce49dd5337e20bdc665c7d8865:log:2', 'hash': '0xf012f90d3a5ef0e4ef9ec9a36ca9e3ff7cbeb2ce49dd5337e20bdc665c7d8865', 'from': '0x6b4719dddfad684418aedce49889be15bf7a15ed', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:34:26.000Z'}}, {'blockNum': '0x5e6486', 'uniqueId': '0x0703fac7fb7b2ee38df932120b0dbf7ed23e4b6377cec38057ed924d97c5a9cc:log:13', 'hash': '0x0703fac7fb7b2ee38df932120b0dbf7ed23e4b6377cec38057ed924d97c5a9cc', 'from': '0xce39f6dc4e1988cfd4bb725822222c174e74aeb7', 'to': '0x24952ee53e20127f0b72cd4670ca06c9ee0baf1f', 'value': 202.432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0af94eef7823e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:35:30.000Z'}}, {'blockNum': '0x5e64ae', 'uniqueId': '0x59ddb3a9a0430aa36f34306981c71ee0127c8844e6868fa4c1e1a959632fdb89:log:12', 'hash': '0x59ddb3a9a0430aa36f34306981c71ee0127c8844e6868fa4c1e1a959632fdb89', 'from': '0x24952ee53e20127f0b72cd4670ca06c9ee0baf1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 202.432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0af94eef7823e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:44:37.000Z'}}, {'blockNum': '0x5e64ae', 'uniqueId': '0x18f45647a23b37f94a3ba43340428f0b1005e170a6b35abc6b8a682f7ae037bc:log:13', 'hash': '0x18f45647a23b37f94a3ba43340428f0b1005e170a6b35abc6b8a682f7ae037bc', 'from': '0x818a7beaa5f985de4029b045c52e5d0a2b9a95a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 961.535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x341ffa8c11b9398000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T07:44:37.000Z'}}, {'blockNum': '0x5e6670', 'uniqueId': '0x7deb722afc8f6719cc4373dee89a32a4a43571a54e1dbc76372b9b5ec018a99a:log:4', 'hash': '0x7deb722afc8f6719cc4373dee89a32a4a43571a54e1dbc76372b9b5ec018a99a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf6fdd7ebeca6c34d5ff9f4f18f329c05f13ac5da', 'value': 902.092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x30e70a968301ae0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T09:30:32.000Z'}}, {'blockNum': '0x5e667a', 'uniqueId': '0xa491efc8a5ae030b0ce97405bde67fa8f151852b9313b2cae61a71bafa15657f:log:154', 'hash': '0xa491efc8a5ae030b0ce97405bde67fa8f151852b9313b2cae61a71bafa15657f', 'from': '0xd74eba253fb1cf771d29d841c8cbae7495f8031e', 'to': '0xcead80b1887232eb50533521a62de921ea54ed62', 'value': 896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x30927f74c9de000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T09:34:00.000Z'}}, {'blockNum': '0x5e66a6', 'uniqueId': '0x1ae97e95bca6c288bfc5b316922f5c460eecbdb0a51e0ab8726528c115a3637d:log:21', 'hash': '0x1ae97e95bca6c288bfc5b316922f5c460eecbdb0a51e0ab8726528c115a3637d', 'from': '0xcead80b1887232eb50533521a62de921ea54ed62', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x30927f74c9de000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T09:44:23.000Z'}}, {'blockNum': '0x5e670e', 'uniqueId': '0x835014db00b26e6bf12ff4e9db966677defb23c142b4c72abb95cb2e260981ae:log:3', 'hash': '0x835014db00b26e6bf12ff4e9db966677defb23c142b4c72abb95cb2e260981ae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 3994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd883e26ee18e280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T10:11:58.000Z'}}, {'blockNum': '0x5e6792', 'uniqueId': '0xfbd46812f5c2aee13cb1a19be10673da2466735ea74410ed0f922621f21bc252:log:40', 'hash': '0xfbd46812f5c2aee13cb1a19be10673da2466735ea74410ed0f922621f21bc252', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3e8201a819c994acffb3823543e19e0415a53a21', 'value': 32.8753449225397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c83cb006a86bb52c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T10:43:21.000Z'}}, {'blockNum': '0x5e6911', 'uniqueId': '0xeae9ca9041df540c1ca90f598f247fa4cacba6ff8590b50340849b87dfe8983e:log:1', 'hash': '0xeae9ca9041df540c1ca90f598f247fa4cacba6ff8590b50340849b87dfe8983e', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0xbfdfe1f9a5b61ed9d33786d4ed4851774274b1b8', 'value': 105.18520346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05b3bce940747d00f0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T12:16:28.000Z'}}, {'blockNum': '0x5e6978', 'uniqueId': '0x756375d2fb6e479cc8eca62fa24bc1b1c9c1a073a244dfe22df354fd5d47432a:log:99', 'hash': '0x756375d2fb6e479cc8eca62fa24bc1b1c9c1a073a244dfe22df354fd5d47432a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 546.9770332602275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1da6d4c9bddce122f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T12:39:36.000Z'}}, {'blockNum': '0x5e6978', 'uniqueId': '0x756375d2fb6e479cc8eca62fa24bc1b1c9c1a073a244dfe22df354fd5d47432a:log:101', 'hash': '0x756375d2fb6e479cc8eca62fa24bc1b1c9c1a073a244dfe22df354fd5d47432a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x99c95d3205aaaa68719c62e04b0374dad21052d3', 'value': 546.9770332602275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1da6d4c9bddce122f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T12:39:36.000Z'}}, {'blockNum': '0x5e6987', 'uniqueId': '0x034f4185ca502c80abdba8f354aa8162f00347e7c8cf50218a449ff407f9921b:log:2', 'hash': '0x034f4185ca502c80abdba8f354aa8162f00347e7c8cf50218a449ff407f9921b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd28b9760333f8f19f4af59e12c9481cc4850dd7b', 'value': 5382.089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123c37d35f8695a8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T12:43:10.000Z'}}, {'blockNum': '0x5e6a68', 'uniqueId': '0xced84bfb2538d0145a6df077b5b8f0350fc3d7171373a0ac98ffcb8114982653:log:74', 'hash': '0xced84bfb2538d0145a6df077b5b8f0350fc3d7171373a0ac98ffcb8114982653', 'from': '0x21c3036f22cf323bd191c6f843a31833fc5c5d69', 'to': '0x656f0cded98cf6a00ffdf3d12933d4442f04e1b7', 'value': 199.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad364ebf1ad820000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T13:37:15.000Z'}}, {'blockNum': '0x5e6ac9', 'uniqueId': '0x2b5614d2d066ca0850104a9cea72979c9f884597234d4acf0ae0c2cf6f50afb4:log:14', 'hash': '0x2b5614d2d066ca0850104a9cea72979c9f884597234d4acf0ae0c2cf6f50afb4', 'from': '0x656f0cded98cf6a00ffdf3d12933d4442f04e1b7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 199.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad364ebf1ad820000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T14:04:02.000Z'}}, {'blockNum': '0x5e6ade', 'uniqueId': '0x8c2664d13bcd552aa72a7fef0b655c6208ef27090b10af11f3d71264eba7d3e1:log:123', 'hash': '0x8c2664d13bcd552aa72a7fef0b655c6208ef27090b10af11f3d71264eba7d3e1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 3982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd7dd59de75b5780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T14:11:48.000Z'}}, {'blockNum': '0x5e6af3', 'uniqueId': '0x656bee1cae55956c3ac93634e5f64e7c2c4f712c367911ba7f7e4b5e527624b5:log:20', 'hash': '0x656bee1cae55956c3ac93634e5f64e7c2c4f712c367911ba7f7e4b5e527624b5', 'from': '0x32587c4c800dad2ce1ea5166bb172faa660ae4fc', 'to': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'value': 5977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01440389a87f2dc40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T14:17:25.000Z'}}, {'blockNum': '0x5e6b09', 'uniqueId': '0xaba84b67f68c8113daefaa79f67ef7312dc604248a198ff8cf3abeb1ff2c73da:log:12', 'hash': '0xaba84b67f68c8113daefaa79f67ef7312dc604248a198ff8cf3abeb1ff2c73da', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd7dd59de75b5780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T14:24:09.000Z'}}, {'blockNum': '0x5e6c21', 'uniqueId': '0xa6e59815b4fb90794d22c95836445878d87ef625002e409e2f9a052ee5e945c8:log:7', 'hash': '0xa6e59815b4fb90794d22c95836445878d87ef625002e409e2f9a052ee5e945c8', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x5251d9734cee6155b0243d2fd1426905d7492218', 'value': 133.195923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x073876fa4429483000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T15:28:30.000Z'}}, {'blockNum': '0x5e6c73', 'uniqueId': '0x0793c022b3f899f2c032736ee87604a10608427eec8559eed5bb7058574130df:log:2', 'hash': '0x0793c022b3f899f2c032736ee87604a10608427eec8559eed5bb7058574130df', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb2fa68e7aa90a3c7e1cf974a9829a9c134e5d6d5', 'value': 19999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043c25e0dcc1bd1c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T15:50:49.000Z'}}, {'blockNum': '0x5e6c8d', 'uniqueId': '0x6d9c116fb946ddf523be46f409ceefbcf40c0c1b430d06e7ce6b758efc97a5e2:log:7', 'hash': '0x6d9c116fb946ddf523be46f409ceefbcf40c0c1b430d06e7ce6b758efc97a5e2', 'from': '0xb2fa68e7aa90a3c7e1cf974a9829a9c134e5d6d5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 19999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043c25e0dcc1bd1c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T15:58:21.000Z'}}, {'blockNum': '0x5e6c9b', 'uniqueId': '0x67e75a894c43ae8185b45ccc1b37c1685577fab299334a52054fdfa8f4e0ce00:log:1', 'hash': '0x67e75a894c43ae8185b45ccc1b37c1685577fab299334a52054fdfa8f4e0ce00', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 318.352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x114205814c7f280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:01:53.000Z'}}, {'blockNum': '0x5e6c9b', 'uniqueId': '0x585315d9d2ee507bf6575dd13868e60e69dbab09ac7ad8a135ea7d55d5da9d90:log:2', 'hash': '0x585315d9d2ee507bf6575dd13868e60e69dbab09ac7ad8a135ea7d55d5da9d90', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 14.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcf9c98bd0fd80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:01:53.000Z'}}, {'blockNum': '0x5e6c9f', 'uniqueId': '0x0924768cba3b23580bf85a4c637e658a636c6c7db20bd84564ab82b7e3b691fa:log:48', 'hash': '0x0924768cba3b23580bf85a4c637e658a636c6c7db20bd84564ab82b7e3b691fa', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 783.019612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2a72947c7f9031c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:02:13.000Z'}}, {'blockNum': '0x5e6ca0', 'uniqueId': '0x167c260d54635caedda61aec2bc1afe1853a10ce8e82a6e33aa2b318b8ce0d18:log:2', 'hash': '0x167c260d54635caedda61aec2bc1afe1853a10ce8e82a6e33aa2b318b8ce0d18', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010d5eba451c14040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:02:22.000Z'}}, {'blockNum': '0x5e6ca2', 'uniqueId': '0x6b89ae7fa588cea7d3314c393ed06d8089726fc92492fc4f39b03f3471b8c90f:log:2', 'hash': '0x6b89ae7fa588cea7d3314c393ed06d8089726fc92492fc4f39b03f3471b8c90f', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 502.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b444708164f870000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:02:51.000Z'}}, {'blockNum': '0x5e6ca3', 'uniqueId': '0xb6fd0bc58e19a3e23c2072d62a83cbb7d35bd6d26ea517e62349784887e1b91d:log:0', 'hash': '0xb6fd0bc58e19a3e23c2072d62a83cbb7d35bd6d26ea517e62349784887e1b91d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38374415bd10140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:02:54.000Z'}}, {'blockNum': '0x5e6ca7', 'uniqueId': '0xf43eb4270a998bb615e5b65742b42d3a55e46d374be548e5f689f36253001d30:log:0', 'hash': '0xf43eb4270a998bb615e5b65742b42d3a55e46d374be548e5f689f36253001d30', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 450.112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18668f0f3454a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:04:01.000Z'}}, {'blockNum': '0x5e6ca7', 'uniqueId': '0x57f7f845996a6e4a9a92112155c8e852421d0e87ecceb7b4e4a1ea3242728be8:log:14', 'hash': '0x57f7f845996a6e4a9a92112155c8e852421d0e87ecceb7b4e4a1ea3242728be8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a97d605a3b9800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:04:01.000Z'}}, {'blockNum': '0x5e6cbb', 'uniqueId': '0x2cc39da121106b03f04e213fc8e3a1009e49da78ad09b41f0b83ce51cb3dbce6:log:5', 'hash': '0x2cc39da121106b03f04e213fc8e3a1009e49da78ad09b41f0b83ce51cb3dbce6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x271244831b4017c9955ed638f5e4791d2c0ca06c', 'value': 1130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d41e67500df680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:10:29.000Z'}}, {'blockNum': '0x5e6cbc', 'uniqueId': '0x13be467c8d7398a6121ad2aa670392f898705ed98b8bda2dd1f9913c9d2329c9:log:0', 'hash': '0x13be467c8d7398a6121ad2aa670392f898705ed98b8bda2dd1f9913c9d2329c9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x44f771cbd868ff3f6e3a74f6844eb171276e465b', 'value': 1369.741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a40f9964d18548000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:10:33.000Z'}}, {'blockNum': '0x5e6cc8', 'uniqueId': '0xd61a736a7eed4421fb690e065cd80a08a2b6a4e8c6cabebf715bb37d67b866de:log:6', 'hash': '0xd61a736a7eed4421fb690e065cd80a08a2b6a4e8c6cabebf715bb37d67b866de', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a97d605a3b9800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:14:08.000Z'}}, {'blockNum': '0x5e6cc8', 'uniqueId': '0x0de21faa91adbc6585b07312a95adeca24a4c746d06e4bb3bd43f99f4fe7e8a6:log:7', 'hash': '0x0de21faa91adbc6585b07312a95adeca24a4c746d06e4bb3bd43f99f4fe7e8a6', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38374415bd10140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:14:08.000Z'}}, {'blockNum': '0x5e6cc8', 'uniqueId': '0x44c5121c40a2a1a3d8fb4473fb6dcbba2a5099fca228713b6bb052cdd69dfa7c:log:8', 'hash': '0x44c5121c40a2a1a3d8fb4473fb6dcbba2a5099fca228713b6bb052cdd69dfa7c', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010d5eba451c14040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:14:08.000Z'}}, {'blockNum': '0x5e6cc8', 'uniqueId': '0xe3f4401f1b0197d00f7c08bcdf6afbb0de7a3cb0fa4093327a45952c5b380242:log:9', 'hash': '0xe3f4401f1b0197d00f7c08bcdf6afbb0de7a3cb0fa4093327a45952c5b380242', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2069.425612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x702f0cadd3c358c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:14:08.000Z'}}, {'blockNum': '0x5e6cd3', 'uniqueId': '0x68c0214bbe781314d82b567035808847bdc28fb952f696ed13c82ee2e7f18626:log:11', 'hash': '0x68c0214bbe781314d82b567035808847bdc28fb952f696ed13c82ee2e7f18626', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x047c32da63ee8d7a04e238e74991f9cb0bbcced3', 'value': 3539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbfd97db5930b6c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:16:50.000Z'}}, {'blockNum': '0x5e6cdb', 'uniqueId': '0x496fba613c289494b920adcb3a0c4518cf8f93b52a2cc857fe470f6f45f6793b:log:1', 'hash': '0x496fba613c289494b920adcb3a0c4518cf8f93b52a2cc857fe470f6f45f6793b', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 2860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9b0a791f1211300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:17:57.000Z'}}, {'blockNum': '0x5e6cf6', 'uniqueId': '0x1facec84461e21345424b6b2592763be71f57b531a1ee83c716e9bfb84f72964:log:2', 'hash': '0x1facec84461e21345424b6b2592763be71f57b531a1ee83c716e9bfb84f72964', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd86821017a3f600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:24:54.000Z'}}, {'blockNum': '0x5e6d25', 'uniqueId': '0x334306836d731dd6ea5313992df0d5ba80919c5b5ec5db3a1cc9ee964616e506:log:0', 'hash': '0x334306836d731dd6ea5313992df0d5ba80919c5b5ec5db3a1cc9ee964616e506', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 2999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2937c529df47c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:36:26.000Z'}}, {'blockNum': '0x5e6d4a', 'uniqueId': '0x9bf31e14f368c4faeabd18b53c553254121ea1b9eeea8081a284ee0eb71530f7:log:7', 'hash': '0x9bf31e14f368c4faeabd18b53c553254121ea1b9eeea8081a284ee0eb71530f7', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2937c529df47c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T16:44:08.000Z'}}, {'blockNum': '0x5e6ec3', 'uniqueId': '0x074e09d5fe8bdeb23580957a437d05499d491e0722b5ce9f707e813f4c6d69c6:log:0', 'hash': '0x074e09d5fe8bdeb23580957a437d05499d491e0722b5ce9f707e813f4c6d69c6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 3363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb64f001a0ff6ac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T18:08:05.000Z'}}, {'blockNum': '0x5e6f31', 'uniqueId': '0x287807d463498d7ba9fdab4e443e2ee6bbe82af9236d508919130bd597c9e340:log:4', 'hash': '0x287807d463498d7ba9fdab4e443e2ee6bbe82af9236d508919130bd597c9e340', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6e54d395b376cb491c2fca1488b38dc5a5da14f5', 'value': 994.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x35f05b73c7ab588000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T18:33:31.000Z'}}, {'blockNum': '0x5e6f4a', 'uniqueId': '0xcb14b94427ac975f80761cb3e2ce02d1ea2b729e8f3d56127a3c00fe759b07b6:log:0', 'hash': '0xcb14b94427ac975f80761cb3e2ce02d1ea2b729e8f3d56127a3c00fe759b07b6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6e54d395b376cb491c2fca1488b38dc5a5da14f5', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T18:40:15.000Z'}}, {'blockNum': '0x5e6f4a', 'uniqueId': '0x3a88c376689a33bc2eac94b31bc9f53796db190817114e13cd6aea6e1e86a939:log:1', 'hash': '0x3a88c376689a33bc2eac94b31bc9f53796db190817114e13cd6aea6e1e86a939', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ebbdf8871f4e4b8240c525c084a2e54e291db2f', 'value': 3381.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb751441a765cb10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T18:40:15.000Z'}}, {'blockNum': '0x5e7008', 'uniqueId': '0xc0c3daee6b46c941a77a491ec3a7c4bc5a123dddb63a9257067311b46d0ebaaa:log:0', 'hash': '0xc0c3daee6b46c941a77a491ec3a7c4bc5a123dddb63a9257067311b46d0ebaaa', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa9605dbf76418b25595563b8686b5dc6305e1d73', 'value': 44.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02698fc23a98e20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T19:28:54.000Z'}}, {'blockNum': '0x5e7148', 'uniqueId': '0x44a5e362f51ea7c5d31f012ce14d4aa1af6a8f189047ea97912cc3624014f370:log:0', 'hash': '0x44a5e362f51ea7c5d31f012ce14d4aa1af6a8f189047ea97912cc3624014f370', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb5dffa6472bb8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T20:46:24.000Z'}}, {'blockNum': '0x5e7165', 'uniqueId': '0x71416623fa913bfb5c965a0208e2c9a15d422f1f933f68cab93266309b6f1c28:log:20', 'hash': '0x71416623fa913bfb5c965a0208e2c9a15d422f1f933f68cab93266309b6f1c28', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb5dffa6472bb8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T20:54:31.000Z'}}, {'blockNum': '0x5e72ad', 'uniqueId': '0xd8d8a351fd9d22fb7ed2af528a36968f815024cf43bca62b2809b9debdf5e025:log:50', 'hash': '0xd8d8a351fd9d22fb7ed2af528a36968f815024cf43bca62b2809b9debdf5e025', 'from': '0xaa8000d91294eeb2f868623f62b7d42af7547992', 'to': '0x0861fca546225fbf8806986d211c8398f7457734', 'value': 995.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x35f32ca73454c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T22:08:05.000Z'}}, {'blockNum': '0x5e72f0', 'uniqueId': '0x8f12726f5a86d95afa0f1775e005a0a6d5a90be8956fc2136f361309c85c1e23:log:63', 'hash': '0x8f12726f5a86d95afa0f1775e005a0a6d5a90be8956fc2136f361309c85c1e23', 'from': '0x99c95d3205aaaa68719c62e04b0374dad21052d3', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1712.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5cd121c788d8910000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T22:24:32.000Z'}}, {'blockNum': '0x5e72f0', 'uniqueId': '0x8f12726f5a86d95afa0f1775e005a0a6d5a90be8956fc2136f361309c85c1e23:log:64', 'hash': '0x8f12726f5a86d95afa0f1775e005a0a6d5a90be8956fc2136f361309c85c1e23', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1712.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5cd121c788d8910000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T22:24:32.000Z'}}, {'blockNum': '0x5e7483', 'uniqueId': '0xcb1bb608dc5f3575fc5f5ee7d365e106b61da89c2d85900f50f9e3114558fed5:log:13', 'hash': '0xcb1bb608dc5f3575fc5f5ee7d365e106b61da89c2d85900f50f9e3114558fed5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x2bc9b39ac3564deb01d08bdc2fce7481a3203cb5', 'value': 106.006945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05bf2452d4215f1000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-21T23:59:55.000Z'}}, {'blockNum': '0x5e74e7', 'uniqueId': '0x8ba2e4a677a95e548ce9b853a2f14e380d9cffafbab92e96860c9d7f8079fc31:log:48', 'hash': '0x8ba2e4a677a95e548ce9b853a2f14e380d9cffafbab92e96860c9d7f8079fc31', 'from': '0xbed50bf08d7bcddc87c23852cf9f0cc9a7ecbc4e', 'to': '0x6a1902bc0141cda8c7038439538785cfb8231080', 'value': 39.78927402183565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02282fe5e906314398', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T00:26:53.000Z'}}, {'blockNum': '0x5e74fb', 'uniqueId': '0x57987b2388809dc0ac6830b7e81c681e805e896febbc681773e4cd809e97d686:log:10', 'hash': '0x57987b2388809dc0ac6830b7e81c681e805e896febbc681773e4cd809e97d686', 'from': '0xfc3b7a897822bc7e46b5610e74c8143188773d21', 'to': '0x377b544f3d51130e8908a48a04c248c49301c476', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb469471f80140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T00:31:19.000Z'}}, {'blockNum': '0x5e752e', 'uniqueId': '0x51aac17a04e67d01ee78e86bc035d274baa97d5e2a71f3638d100f10d4a6ce7c:log:5', 'hash': '0x51aac17a04e67d01ee78e86bc035d274baa97d5e2a71f3638d100f10d4a6ce7c', 'from': '0xef83ac3b6129e8ae9cbca94b8dd7347041dc7d4d', 'to': '0x7b81c4d3940716a9aeb21a95ba673f107b21e62c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T00:44:13.000Z'}}, {'blockNum': '0x5e7574', 'uniqueId': '0x8cc3cbbc5f878dcfd5d66a3c0da8fa510af811a6f91a999a3ee1ea402d1ba98c:log:136', 'hash': '0x8cc3cbbc5f878dcfd5d66a3c0da8fa510af811a6f91a999a3ee1ea402d1ba98c', 'from': '0x7b81c4d3940716a9aeb21a95ba673f107b21e62c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:03:52.000Z'}}, {'blockNum': '0x5e75ab', 'uniqueId': '0xbb66f72894fc438e6cf3bb932ccd5e4de43ce74bce5780ed05619dc22d0a286c:log:48', 'hash': '0xbb66f72894fc438e6cf3bb932ccd5e4de43ce74bce5780ed05619dc22d0a286c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 3970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd736d14e09dcc80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:17:14.000Z'}}, {'blockNum': '0x5e75cd', 'uniqueId': '0xeba4eadc8c076f1fd231201c77aa94e28406d2d30c2e376e87742fb95a469901:log:32', 'hash': '0xeba4eadc8c076f1fd231201c77aa94e28406d2d30c2e376e87742fb95a469901', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd736d14e09dcc80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:24:06.000Z'}}, {'blockNum': '0x5e7610', 'uniqueId': '0xa3ad26573058bc83a25e9011b6176d1c742038441b2ded2b8381978ba5fdc6b0:log:0', 'hash': '0xa3ad26573058bc83a25e9011b6176d1c742038441b2ded2b8381978ba5fdc6b0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'value': 2379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x80f741d7848e4c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:40:05.000Z'}}, {'blockNum': '0x5e7621', 'uniqueId': '0x276f27ffd74ca68115c7ec22a3156582af352cea76af2fe42af703a528ee0def:log:9', 'hash': '0x276f27ffd74ca68115c7ec22a3156582af352cea76af2fe42af703a528ee0def', 'from': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x80f741d7848e4c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-22T01:44:12.000Z'}}]}}
Number of returned transfers:  75
Answer is complete
 
symbol             DLT
group              BPG
date        2018-08-23
hour             16:00
exchange       binance
Name: 256, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2018-08-23 16:00:00 2018-08-23 04:00:00 2018-08-24 04:00:00
Unix timestamps:  1534989600.0 1535076000.0
Hex Block Numbers:  0x5e8d99 0x5ea45c
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5e927f', 'uniqueId': '0x2dab9d30f2f23ef0fd9d5d4cae729c201e8afea30bd5ba8976e0b5295b4377b4:log:0', 'hash': '0x2dab9d30f2f23ef0fd9d5d4cae729c201e8afea30bd5ba8976e0b5295b4377b4', 'from': '0x4a08bfa6f70a5a2f663d4ee3dbdbac71956a9d48', 'to': '0x45465f0519ad0b6ca511836e0a53e8bceefd0fa4', 'value': 102907.291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15ca9d8c624e10af8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T07:09:47.000Z'}}, {'blockNum': '0x5e9394', 'uniqueId': '0xb51bec3bec32c4708c5a622bfa30bd0e4afff60651de12771c9b3d12743db2fa:log:79', 'hash': '0xb51bec3bec32c4708c5a622bfa30bd0e4afff60651de12771c9b3d12743db2fa', 'from': '0x45465f0519ad0b6ca511836e0a53e8bceefd0fa4', 'to': '0x3bef55294bbbd38787b3d89a6532f8ebd59baa63', 'value': 102907.291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15ca9d8c624e10af8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T08:18:52.000Z'}}, {'blockNum': '0x5e93a7', 'uniqueId': '0xea07d5339a7e2b48bea331fbf3eba243d8c4ee94962933a4929d05b01940c50b:log:2', 'hash': '0xea07d5339a7e2b48bea331fbf3eba243d8c4ee94962933a4929d05b01940c50b', 'from': '0x3bef55294bbbd38787b3d89a6532f8ebd59baa63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102907.291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15ca9d8c624e10af8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T08:23:09.000Z'}}, {'blockNum': '0x5e972a', 'uniqueId': '0x7ca610ada0d3bedf5d0afa79259382a2a8663f6ea8dee94b458fa853cdbb2231:log:16', 'hash': '0x7ca610ada0d3bedf5d0afa79259382a2a8663f6ea8dee94b458fa853cdbb2231', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2aa98e09d39a19ad08c0cfa9ca1e69572e60392e', 'value': 11110.851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x025a520854b03db38000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T12:08:23.000Z'}}, {'blockNum': '0x5e9b86', 'uniqueId': '0xedb02687f810784e406d2930ee2deaf160e05783e48ff075608e0dd04413bd30:log:81', 'hash': '0xedb02687f810784e406d2930ee2deaf160e05783e48ff075608e0dd04413bd30', 'from': '0x4df56650e9d4791e8a19db075cac5ff5eb06bcf6', 'to': '0x81cfe3170336510b261b8edf3d71fad4a0a1a673', 'value': 2356.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x7fbbd0a8f24dab0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-08-23T16:48:52.000Z'}}]}}
Number of returned transfers:  5
Answer is complete
 
symbol             RDN
group              BPG
date        2018-09-04
hour             15:30
exchange       binance
Name: 257, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2018-09-04 15:30:00 2018-09-04 03:30:00 2018-09-05 03:30:00
Unix timestamps:  1536024600.0 1536111000.0
Hex Block Numbers:  0x5fa2b1 0x5fba15
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5fa2fd', 'uniqueId': '0x2310ac150217cf3d8d7a1e5c719b76351aff3c2704691aa9aae2931e837bdeb1:log:2', 'hash': '0x2310ac150217cf3d8d7a1e5c719b76351aff3c2704691aa9aae2931e837bdeb1', 'from': '0x8cb1549ae57f4afe25279aaaebfeea6752a58765', 'to': '0xcfd82d89c474903c28e0e62512ade47e60a7280a', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T01:47:32.000Z'}}, {'blockNum': '0x5fa318', 'uniqueId': '0x523e02630e12691ef8dd16aa3413d11881de5772449482e6869fabfdf15ad53f:log:22', 'hash': '0x523e02630e12691ef8dd16aa3413d11881de5772449482e6869fabfdf15ad53f', 'from': '0xcfd82d89c474903c28e0e62512ade47e60a7280a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T01:54:08.000Z'}}, {'blockNum': '0x5fa527', 'uniqueId': '0xd41433b51373853b3384b30ebfb289b4822892cdcb2005e449565b397dfc3dee:log:58', 'hash': '0xd41433b51373853b3384b30ebfb289b4822892cdcb2005e449565b397dfc3dee', 'from': '0xfe07d0ab7744fabd83c3a0b7f1a55c2538b34618', 'to': '0xb3d79c2fa058f47730449c7d0794752a54cbe2bf', 'value': 1364.817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x49fca40663be4e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T04:02:03.000Z'}}, {'blockNum': '0x5fa685', 'uniqueId': '0x0438462c0107e5ac8da6d767c00fab45c9b6e592438aab7c3878aa4e05b4de97:log:0', 'hash': '0x0438462c0107e5ac8da6d767c00fab45c9b6e592438aab7c3878aa4e05b4de97', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xc9e9ea20421cf24047afd1f93908064cfae1a9d9', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T05:23:34.000Z'}}, {'blockNum': '0x5fa6b4', 'uniqueId': '0x1e1bf06c6b551dd379e8b263d65a5331486e061621146f6bdbd405c00a7238b2:log:26', 'hash': '0x1e1bf06c6b551dd379e8b263d65a5331486e061621146f6bdbd405c00a7238b2', 'from': '0xb23eac7f5f7b8e1c76cf9ed15ccb2b22789a45be', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 18430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03e717a119acd1380000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T05:34:23.000Z'}}, {'blockNum': '0x5fa6df', 'uniqueId': '0x9939a6043d8e4beda83051380d5042a732a3dbd96160ece9a188c065efa984c4:log:39', 'hash': '0x9939a6043d8e4beda83051380d5042a732a3dbd96160ece9a188c065efa984c4', 'from': '0xc9e9ea20421cf24047afd1f93908064cfae1a9d9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T05:44:28.000Z'}}, {'blockNum': '0x5fa7a2', 'uniqueId': '0x929a87134ae873c21f66db5503c0cdc612c63d89d0b786d9cb1fc8d2958c7050:log:6', 'hash': '0x929a87134ae873c21f66db5503c0cdc612c63d89d0b786d9cb1fc8d2958c7050', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x7617bb44a2060360b5ce5556313b2c3de3ce62e7', 'value': 270.67810902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0eac69d20a238f0d30', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T06:31:12.000Z'}}, {'blockNum': '0x5fa7a8', 'uniqueId': '0xe9e6d79b4dbc8c8155b4a4e585832b81aa3e683b338859adc2e44975b0adbe19:log:4', 'hash': '0xe9e6d79b4dbc8c8155b4a4e585832b81aa3e683b338859adc2e44975b0adbe19', 'from': '0x2d3c303cd0575e02c5e58095867fd2a1b9033f8b', 'to': '0x1e425a06bd870249a2c3860c76929a47b43aadc1', 'value': 1140, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dccad980569500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T06:33:21.000Z'}}, {'blockNum': '0x5fa7f6', 'uniqueId': '0xdaaa35e13b3630bbbc87eae1c00a84b3061266b1a1dea34b487761e22e4d6aa1:log:15', 'hash': '0xdaaa35e13b3630bbbc87eae1c00a84b3061266b1a1dea34b487761e22e4d6aa1', 'from': '0x1e425a06bd870249a2c3860c76929a47b43aadc1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1140, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dccad980569500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T06:54:19.000Z'}}, {'blockNum': '0x5fa941', 'uniqueId': '0x7a3b7d8a55bd3999de90eaa669c70c3189a3276d109a80c7cf4809cd6e6c499f:log:82', 'hash': '0x7a3b7d8a55bd3999de90eaa669c70c3189a3276d109a80c7cf4809cd6e6c499f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ebbdf8871f4e4b8240c525c084a2e54e291db2f', 'value': 1639.1227544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x58db65d4aea7d9c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T08:19:29.000Z'}}, {'blockNum': '0x5faae3', 'uniqueId': '0x5e4f4a581cfb7ff317bf828e74aec91d8a41140c9764a052ecb3237ac5ca7b18:log:6', 'hash': '0x5e4f4a581cfb7ff317bf828e74aec91d8a41140c9764a052ecb3237ac5ca7b18', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x7446dbfb57e7496735c876312fecbc140927acee', 'value': 269.64422452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e9e10b9908a465000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:01:27.000Z'}}, {'blockNum': '0x5fab37', 'uniqueId': '0xad4bb1fc264f289582d453f7f98859dad2ffee64c330750b21250c20599dbb53:log:6', 'hash': '0xad4bb1fc264f289582d453f7f98859dad2ffee64c330750b21250c20599dbb53', 'from': '0x2a5cc9c0e2cd0f27c315769eb5be9b5e86ffc16f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 104.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05afa42344dab8ffff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:22:13.000Z'}}, {'blockNum': '0x5fab58', 'uniqueId': '0x1c777c4bbe7c90594636e599c0512cc4d04fcd90216ba9197e4d651a242a57e4:log:161', 'hash': '0x1c777c4bbe7c90594636e599c0512cc4d04fcd90216ba9197e4d651a242a57e4', 'from': '0xf7793d27a1b76cdf14db7c83e82c772cf7c92910', 'to': '0xcea76322480089d0c03ffd36eecfb223b02f39e6', 'value': 2960.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa07a46c6b61d1d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:31:16.000Z'}}, {'blockNum': '0x5fab5e', 'uniqueId': '0xd43341d618add23164d2d58079bdf45f379289b408dd4d1fd3f736ab98b9974e:log:34', 'hash': '0xd43341d618add23164d2d58079bdf45f379289b408dd4d1fd3f736ab98b9974e', 'from': '0xcea76322480089d0c03ffd36eecfb223b02f39e6', 'to': '0xf7793d27a1b76cdf14db7c83e82c772cf7c92910', 'value': 2960.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa07a46c6b61d1d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:32:34.000Z'}}, {'blockNum': '0x5fab9b', 'uniqueId': '0xe9091ec35b747191ac3b32dd3fbeb65656a32ac3ef3192162211e56eb0724a0f:log:64', 'hash': '0xe9091ec35b747191ac3b32dd3fbeb65656a32ac3ef3192162211e56eb0724a0f', 'from': '0x28aa9f2d206d06b934ebb7cb452525253c758e44', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 10.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8c2a687ce7720000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T10:48:08.000Z'}}, {'blockNum': '0x5fac48', 'uniqueId': '0xefe5070076b8bd74d955943620837dcf7b881cc892dbfecc5b1a5883eecf7317:log:14', 'hash': '0xefe5070076b8bd74d955943620837dcf7b881cc892dbfecc5b1a5883eecf7317', 'from': '0xd7a888da31e25e4fcf82b949cb901cd0da5cdefe', 'to': '0x95e3ea15a514a095c0e18cbea69add55d8e103c7', 'value': 3378.06559043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb72013d4bcce58ac00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T11:24:50.000Z'}}, {'blockNum': '0x5fac77', 'uniqueId': '0x712062bc931dd1f5a8f5cb3cde945b5a7fb02fd7ec3a378d22df76c62d9e0628:log:9', 'hash': '0x712062bc931dd1f5a8f5cb3cde945b5a7fb02fd7ec3a378d22df76c62d9e0628', 'from': '0x95e3ea15a514a095c0e18cbea69add55d8e103c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3378.06559043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb72013d4bcce58ac00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T11:34:16.000Z'}}, {'blockNum': '0x5fac86', 'uniqueId': '0x7abf0f8001d1df3088d41a97eb04d8d7e34a20bda88f2b8f1a76b3ccb467a7a9:log:39', 'hash': '0x7abf0f8001d1df3088d41a97eb04d8d7e34a20bda88f2b8f1a76b3ccb467a7a9', 'from': '0x76521d3cfd984b9e5aa30b23e9823353ce640fa0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 99.9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x056bc7033a5295c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T11:39:25.000Z'}}, {'blockNum': '0x5faca9', 'uniqueId': '0x46965e95ff710bf2885b503e47e1d103ebbc17d6e499e063df0e127a1e05fe4c:log:2', 'hash': '0x46965e95ff710bf2885b503e47e1d103ebbc17d6e499e063df0e127a1e05fe4c', 'from': '0xcb11527587e21fe4a3868dee6f1ca05733c20c41', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 99.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0560ad326a76bfffff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T11:47:41.000Z'}}, {'blockNum': '0x5facf0', 'uniqueId': '0xc510d1ba8d3ca08fc2b7cb89199555d639804a94e6d9f808bfb900892f8325cd:log:3', 'hash': '0xc510d1ba8d3ca08fc2b7cb89199555d639804a94e6d9f808bfb900892f8325cd', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3c3a38e5ab72fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T12:07:01.000Z'}}, {'blockNum': '0x5fad03', 'uniqueId': '0x647d2fbe52aff25a73b7eaa791d68c95127189de4c5edbe1a9cf5505ea1ef059:log:100', 'hash': '0x647d2fbe52aff25a73b7eaa791d68c95127189de4c5edbe1a9cf5505ea1ef059', 'from': '0x39117cb65d0f4007f6a76aa8f013635d9e8f0ba1', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 9.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x83d6c7aab6360000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T12:11:03.000Z'}}, {'blockNum': '0x5fad0e', 'uniqueId': '0x5d92de834fe69e81a747f64c8985f5b1c66225e4d383d056910f01cf5348b600:log:11', 'hash': '0x5d92de834fe69e81a747f64c8985f5b1c66225e4d383d056910f01cf5348b600', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3c3a38e5ab72fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T12:14:12.000Z'}}, {'blockNum': '0x5fad7a', 'uniqueId': '0x72b1fe20824e3e846a2022d9e68d085c0d5551b5356cb1ca20acba6d69c54bd4:log:30', 'hash': '0x72b1fe20824e3e846a2022d9e68d085c0d5551b5356cb1ca20acba6d69c54bd4', 'from': '0x68f2a70a5cad2400ee847eab7ed2d5478ed88478', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 50.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b607360921490000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T12:41:53.000Z'}}, {'blockNum': '0x5fadf4', 'uniqueId': '0x59d9f6169d80dc2d0cbb2520eb6d5bac7ec26d6e81a83383ce09bde3980724dd:log:8', 'hash': '0x59d9f6169d80dc2d0cbb2520eb6d5bac7ec26d6e81a83383ce09bde3980724dd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94c8936b349301c3ff7821668a8f0cab27c3088c', 'value': 27000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05b7ac4553de7ae00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:09:45.000Z'}}, {'blockNum': '0x5fae6a', 'uniqueId': '0xe9934e8e7d8112136acff58a6ced6865dfe4257d4d4792720f916ce36e156d64:log:10', 'hash': '0xe9934e8e7d8112136acff58a6ced6865dfe4257d4d4792720f916ce36e156d64', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x620e009f6cd1f1496425daa311762c429424d55f', 'value': 146.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07f27bd347a8440000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:36:43.000Z'}}, {'blockNum': '0x5fae7b', 'uniqueId': '0x5f9cb51dd2c4720398fdbf55c90ac8c984763f0fedf53d2d59cc0427137910b8:log:2', 'hash': '0x5f9cb51dd2c4720398fdbf55c90ac8c984763f0fedf53d2d59cc0427137910b8', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x49c7ab511ceaa40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:41:45.000Z'}}, {'blockNum': '0x5fae93', 'uniqueId': '0xf8ab7fbdc734508f28100cd212d12ba175fc5038ac3487cff2a35e3f3a980365:log:28', 'hash': '0xf8ab7fbdc734508f28100cd212d12ba175fc5038ac3487cff2a35e3f3a980365', 'from': '0x002cb22591b8d5059478ae0f9fd248f80e5f03a2', 'to': '0xe2d98e81d2f91cb5ac0cf6edc3a218b60c27446c', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:47:48.000Z'}}, {'blockNum': '0x5faeab', 'uniqueId': '0x8d54705c1b01f47187d3f2f188d5d84b972f6c6239bf1cb0c7ed8aa985a06665:log:2', 'hash': '0x8d54705c1b01f47187d3f2f188d5d84b972f6c6239bf1cb0c7ed8aa985a06665', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'value': 4206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe401f9bba82cf80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:53:09.000Z'}}, {'blockNum': '0x5faeaf', 'uniqueId': '0xecbf6f9f9b76082e915dc6cc5551d4400a6675a4b4f43ee1ef9ce00d613d06e3:log:8', 'hash': '0xecbf6f9f9b76082e915dc6cc5551d4400a6675a4b4f43ee1ef9ce00d613d06e3', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x49c7ab511ceaa40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T13:54:04.000Z'}}, {'blockNum': '0x5faecd', 'uniqueId': '0xaa3b7dfd31b66e282979571fc5efe04e8084e156f1a81471bc262ae0caa7e80a:log:3', 'hash': '0xaa3b7dfd31b66e282979571fc5efe04e8084e156f1a81471bc262ae0caa7e80a', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x240cba98add2c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:01:08.000Z'}}, {'blockNum': '0x5faeda', 'uniqueId': '0xf1939c1cbcde910a26f389b4232633476d3c202829163a340a82c43926e0104a:log:20', 'hash': '0xf1939c1cbcde910a26f389b4232633476d3c202829163a340a82c43926e0104a', 'from': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe401f9bba82cf80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:04:08.000Z'}}, {'blockNum': '0x5faef4', 'uniqueId': '0x2b76962506d0704233e7a075947543d049e3c4d87c343ef7d097f2f6e5e51a3b:log:2', 'hash': '0x2b76962506d0704233e7a075947543d049e3c4d87c343ef7d097f2f6e5e51a3b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 5499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012a19f4850ca10c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:09:41.000Z'}}, {'blockNum': '0x5faf07', 'uniqueId': '0x454018ce6069ecfe5aa31419a3b8343def676d2b6909b8bf87dfb781ae6ccabf:log:9', 'hash': '0x454018ce6069ecfe5aa31419a3b8343def676d2b6909b8bf87dfb781ae6ccabf', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x240cba98add2c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:14:12.000Z'}}, {'blockNum': '0x5faf16', 'uniqueId': '0x617c8f8dce23e5f28bbbea0786bf166978581f7d7909cfdad99a301f7860aceb:log:24', 'hash': '0x617c8f8dce23e5f28bbbea0786bf166978581f7d7909cfdad99a301f7860aceb', 'from': '0x002cb22591b8d5059478ae0f9fd248f80e5f03a2', 'to': '0xe2d98e81d2f91cb5ac0cf6edc3a218b60c27446c', 'value': 4563.892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf768b98976bf120000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:16:21.000Z'}}, {'blockNum': '0x5faf3e', 'uniqueId': '0x1fa06a7ac83522ef1f1f3b1420309a3306dfa8fbc757972d5229c5e2427b8947:log:20', 'hash': '0x1fa06a7ac83522ef1f1f3b1420309a3306dfa8fbc757972d5229c5e2427b8947', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012a19f4850ca10c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T14:24:18.000Z'}}, {'blockNum': '0x5fb037', 'uniqueId': '0xbc0ba2eeafe11b525d4f0eaff7c3b535be767d7bc2ae51426e9fb8e6b3ebf85e:log:80', 'hash': '0xbc0ba2eeafe11b525d4f0eaff7c3b535be767d7bc2ae51426e9fb8e6b3ebf85e', 'from': '0x26905c07fda4e4dd46cebe157d2db60066ae0019', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 347.943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12dcaddb04dbbd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:31:09.000Z'}}, {'blockNum': '0x5fb03f', 'uniqueId': '0x8394c1c8c8313437c05303740c11b605ded7177455679fbe25382b51ad7344a6:log:18', 'hash': '0x8394c1c8c8313437c05303740c11b605ded7177455679fbe25382b51ad7344a6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 235.296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cc16351592e500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:33:08.000Z'}}, {'blockNum': '0x5fb051', 'uniqueId': '0x28d8032d94c4bd77357b46d5f61139458be545e03c532ae097bb2b59424c1506:log:1', 'hash': '0x28d8032d94c4bd77357b46d5f61139458be545e03c532ae097bb2b59424c1506', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4add399725fe740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:37:41.000Z'}}, {'blockNum': '0x5fb051', 'uniqueId': '0x9fb2577260fa2a0377264b53b654e75a5071a9c28d005873c10d3836a0211bce:log:2', 'hash': '0x9fb2577260fa2a0377264b53b654e75a5071a9c28d005873c10d3836a0211bce', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 1619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x57c423722b9d6c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:37:41.000Z'}}, {'blockNum': '0x5fb052', 'uniqueId': '0x4d0fb16c1a0d105b572dfb8cf2c720fa9f234bec1e8c44fa3d77428583cbb0c6:log:53', 'hash': '0x4d0fb16c1a0d105b572dfb8cf2c720fa9f234bec1e8c44fa3d77428583cbb0c6', 'from': '0xb09a30093425dc524c92daa0885f3e92107e49f8', 'to': '0x1dc921c3611143242e7ca3c10107c287042d713e', 'value': 961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34188dd8675e640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:37:57.000Z'}}, {'blockNum': '0x5fb05a', 'uniqueId': '0xb422a00820557f64a336ee19e8c6a6f103fe94f169bf37f7de70e2d0e4f1a44e:log:21', 'hash': '0xb422a00820557f64a336ee19e8c6a6f103fe94f169bf37f7de70e2d0e4f1a44e', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0x9e45bd979047976427694d93de45999703405ca0', 'value': 390.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x152f4cfa817ee70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:39:29.000Z'}}, {'blockNum': '0x5fb05c', 'uniqueId': '0xdbdbae0325bd3ff52bab3711d707adb97c03a2e74891ae8b6dc42c79b74da35e:log:60', 'hash': '0xdbdbae0325bd3ff52bab3711d707adb97c03a2e74891ae8b6dc42c79b74da35e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 739.5676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28178fedcd8c2f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:39:54.000Z'}}, {'blockNum': '0x5fb069', 'uniqueId': '0xb4de01c2104709db5c4242ce72b8987323579399d5bdefbfd467d2f5d4fd930d:log:2', 'hash': '0xb4de01c2104709db5c4242ce72b8987323579399d5bdefbfd467d2f5d4fd930d', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaad0e8cd4957dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:43:44.000Z'}}, {'blockNum': '0x5fb06b', 'uniqueId': '0xfd794f6b0723018f72aba5dab2fddee5356cee04e8ef919f47401a4b8aaa09ee:log:7', 'hash': '0xfd794f6b0723018f72aba5dab2fddee5356cee04e8ef919f47401a4b8aaa09ee', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 235.296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cc16351592e500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:44:09.000Z'}}, {'blockNum': '0x5fb06e', 'uniqueId': '0xe3072d8373d68d8160c775cc019a1330d90d32b84de012f55e4720821b5f7e94:log:1', 'hash': '0xe3072d8373d68d8160c775cc019a1330d90d32b84de012f55e4720821b5f7e94', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 10414.128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02348d0eff95c9380000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:44:27.000Z'}}, {'blockNum': '0x5fb091', 'uniqueId': '0xeac3f0fcf791960ec0a6045f60bec62dd54a392133c7185fcfdad531806d725d:log:0', 'hash': '0xeac3f0fcf791960ec0a6045f60bec62dd54a392133c7185fcfdad531806d725d', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10414.128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02348d0eff95c9380000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:54:02.000Z'}}, {'blockNum': '0x5fb092', 'uniqueId': '0xe0faec1b27f9fd9266c0e6eabd46676cdd344fdc9c026f82e4fbad666b043bcf:log:2', 'hash': '0xe0faec1b27f9fd9266c0e6eabd46676cdd344fdc9c026f82e4fbad666b043bcf', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 739.5676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28178fedcd8c2f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:54:09.000Z'}}, {'blockNum': '0x5fb092', 'uniqueId': '0x5795276192c2fd5742f81a075b5c0bd7e34c29f035283017d9b1a7624b9f60c6:log:3', 'hash': '0x5795276192c2fd5742f81a075b5c0bd7e34c29f035283017d9b1a7624b9f60c6', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4add399725fe740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:54:09.000Z'}}, {'blockNum': '0x5fb096', 'uniqueId': '0xe15d6551481d9cfcc70cc1d247d04a17fb733110deb2e5abdfd14757248dc6a7:log:2', 'hash': '0xe15d6551481d9cfcc70cc1d247d04a17fb733110deb2e5abdfd14757248dc6a7', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ac17829beafac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T15:54:43.000Z'}}, {'blockNum': '0x5fb0b5', 'uniqueId': '0x9607e56afa938161b8b353613d456f9b488f4bbea84bce8e0c7d72155a9c1739:log:1', 'hash': '0x9607e56afa938161b8b353613d456f9b488f4bbea84bce8e0c7d72155a9c1739', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd19387150ddc280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:03:49.000Z'}}, {'blockNum': '0x5fb0b6', 'uniqueId': '0x28fffbe0aefc4016915a3d1482afc24c405ddf953833a33bd2d3c74b417cd84c:log:4', 'hash': '0x28fffbe0aefc4016915a3d1482afc24c405ddf953833a33bd2d3c74b417cd84c', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ac17829beafac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:04:03.000Z'}}, {'blockNum': '0x5fb0b6', 'uniqueId': '0x3b12064d08e46158bf046005b40cab8a439749208fb1d7e815a6d03a8efc2e75:log:6', 'hash': '0x3b12064d08e46158bf046005b40cab8a439749208fb1d7e815a6d03a8efc2e75', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaad0e8cd4957dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:04:03.000Z'}}, {'blockNum': '0x5fb0da', 'uniqueId': '0x4d82a11147662a8f1740a2a1548f97c5ff70d87c26881ea1481723d85b6d0661:log:15', 'hash': '0x4d82a11147662a8f1740a2a1548f97c5ff70d87c26881ea1481723d85b6d0661', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd19387150ddc280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:14:08.000Z'}}, {'blockNum': '0x5fb13d', 'uniqueId': '0x9d388a262127f366de610832e1eae462a48dfd6f2c1613f5536258a484793ce1:log:8', 'hash': '0x9d388a262127f366de610832e1eae462a48dfd6f2c1613f5536258a484793ce1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x00cd9fad11d5b2118a3dd32d5d43fdb33bde9e85', 'value': 100840.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x155a8d7f16c1ef638000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:38:43.000Z'}}, {'blockNum': '0x5fb19c', 'uniqueId': '0x256bfbf29412ab8af763c2832e430078881fae532acc1cddb5715417f75fb7ed:log:57', 'hash': '0x256bfbf29412ab8af763c2832e430078881fae532acc1cddb5715417f75fb7ed', 'from': '0x976b8edcf4e41b82f4094143d65d242cb84276a8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 537.551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d2404ca6ec8018000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T16:59:24.000Z'}}, {'blockNum': '0x5fb1a1', 'uniqueId': '0x877cd03104e6ad08042269bbb34843d054c64805251b449c825f80507bbe9298:log:0', 'hash': '0x877cd03104e6ad08042269bbb34843d054c64805251b449c825f80507bbe9298', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb56313f821d9080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:00:39.000Z'}}, {'blockNum': '0x5fb1ba', 'uniqueId': '0xc1aaeb65f749482f2ba49e30a0df9db7d33f10922c1bf90463e91e62a2c8dd92:log:27', 'hash': '0xc1aaeb65f749482f2ba49e30a0df9db7d33f10922c1bf90463e91e62a2c8dd92', 'from': '0x65eba2861ea8f9e5efcfdadb70c68897cda52673', 'to': '0x480c1c12a8ee256df40be01d4a54799e3ce6c52c', 'value': 3586.9052540128714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc2724f5c49437ad3cb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:06:53.000Z'}}, {'blockNum': '0x5fb1dc', 'uniqueId': '0x58893beb6fff0da17a8db923ffdfeb98db1dde66dcaa80e6681fa6b87a0b16de:log:8', 'hash': '0x58893beb6fff0da17a8db923ffdfeb98db1dde66dcaa80e6681fa6b87a0b16de', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb56313f821d9080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:14:27.000Z'}}, {'blockNum': '0x5fb202', 'uniqueId': '0xbf52b9399d71cf70c8a909c8ee6d63755734bb7e9c767151a94a61c9edac3b3f:log:4', 'hash': '0xbf52b9399d71cf70c8a909c8ee6d63755734bb7e9c767151a94a61c9edac3b3f', 'from': '0x08e0f9bcd4e7d2abd8ed31252c288fffe765ad16', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:23:21.000Z'}}, {'blockNum': '0x5fb205', 'uniqueId': '0x12fbefbef433e6bcef919a495c8039e5a3118d6668cc747d90bf2247a7d9571f:log:8', 'hash': '0x12fbefbef433e6bcef919a495c8039e5a3118d6668cc747d90bf2247a7d9571f', 'from': '0x480c1c12a8ee256df40be01d4a54799e3ce6c52c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3586.9052540128714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc2724f5c49437ad3cb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:24:22.000Z'}}, {'blockNum': '0x5fb21a', 'uniqueId': '0x912e40bd0ae60382b922a91e9e443daac08a6850dba0e0dfdd80928540246dd3:log:5', 'hash': '0x912e40bd0ae60382b922a91e9e443daac08a6850dba0e0dfdd80928540246dd3', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 3621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc44b783b1ea9740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:28:22.000Z'}}, {'blockNum': '0x5fb25e', 'uniqueId': '0xc22f3c78fdaa9f7ac4ce713f61847889630d73b260c1095ddff843cd98e78ceb:log:25', 'hash': '0xc22f3c78fdaa9f7ac4ce713f61847889630d73b260c1095ddff843cd98e78ceb', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc44b783b1ea9740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T17:44:44.000Z'}}, {'blockNum': '0x5fb2bd', 'uniqueId': '0xe8e7fb163c805c75145164a413e14d4be1289d8f6a30f99b987a8b5be1cfeb44:log:79', 'hash': '0xe8e7fb163c805c75145164a413e14d4be1289d8f6a30f99b987a8b5be1cfeb44', 'from': '0x14998afb4c6fb8437c9cdc8208ff8a3e28da7375', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 27.26238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017a576e2aefb6c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:06:06.000Z'}}, {'blockNum': '0x5fb344', 'uniqueId': '0x62303942f94512e736702353a7b11e99f72216bbb68d292d37bd65d16668ad2f:log:67', 'hash': '0x62303942f94512e736702353a7b11e99f72216bbb68d292d37bd65d16668ad2f', 'from': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'to': '0x3dbd00685a34b247dc256b23718a083e0ae43e25', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:37:10.000Z'}}, {'blockNum': '0x5fb34b', 'uniqueId': '0x585d95c06b3a546515ee31eff605a3340a1ec1ade1fe686f5459e595d67fe56e:log:30', 'hash': '0x585d95c06b3a546515ee31eff605a3340a1ec1ade1fe686f5459e595d67fe56e', 'from': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'to': '0x3dbd00685a34b247dc256b23718a083e0ae43e25', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:39:00.000Z'}}, {'blockNum': '0x5fb371', 'uniqueId': '0x10ef7d40341e1859e267fd93ae29611091a85e2abb4133cbd14a14b6ad3b23ff:log:3', 'hash': '0x10ef7d40341e1859e267fd93ae29611091a85e2abb4133cbd14a14b6ad3b23ff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'value': 284.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0f6d9e501fe42c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:47:29.000Z'}}, {'blockNum': '0x5fb371', 'uniqueId': '0x14d7b5a4bdc8bad576185258c1073c6b164a92aa5634c48749b207674e7e2096:log:5', 'hash': '0x14d7b5a4bdc8bad576185258c1073c6b164a92aa5634c48749b207674e7e2096', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'value': 887.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301deca94b2cb80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:47:29.000Z'}}, {'blockNum': '0x5fb383', 'uniqueId': '0xefd9a4d8cd155e2e3f5a9b8c958e84c443a8ee3d67c71c55a96c195ec67ca2df:log:1', 'hash': '0xefd9a4d8cd155e2e3f5a9b8c958e84c443a8ee3d67c71c55a96c195ec67ca2df', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 5579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012e702d9d30f04c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T18:53:29.000Z'}}, {'blockNum': '0x5fb3a1', 'uniqueId': '0xa1cad4e2d0f0279c38eec6498c696da7f30d4e69deb75b7a42ac2106a95a38e6:log:115', 'hash': '0xa1cad4e2d0f0279c38eec6498c696da7f30d4e69deb75b7a42ac2106a95a38e6', 'from': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'to': '0x0cc8a30910f7588db14103e7d9aa73ef838194b0', 'value': 261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e261a4529a8f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:00:42.000Z'}}, {'blockNum': '0x5fb3b2', 'uniqueId': '0x71d742ba2fb55af0ae63f3009a9584d27a8a583c7feffb4bd94844b9ffc7ee95:log:12', 'hash': '0x71d742ba2fb55af0ae63f3009a9584d27a8a583c7feffb4bd94844b9ffc7ee95', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012e702d9d30f04c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:04:12.000Z'}}, {'blockNum': '0x5fb3de', 'uniqueId': '0x66f02410454718d2241b0d6221f300e4149f539a7fcdb18d63e4f0164c1665d4:log:2', 'hash': '0x66f02410454718d2241b0d6221f300e4149f539a7fcdb18d63e4f0164c1665d4', 'from': '0x0cc8a30910f7588db14103e7d9aa73ef838194b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e261a4529a8f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:14:04.000Z'}}, {'blockNum': '0x5fb3e3', 'uniqueId': '0x7a2d02152e3d15257c71974999e4f30e9a1f06c46e1a5c2d7d757a798d6f6e3d:log:0', 'hash': '0x7a2d02152e3d15257c71974999e4f30e9a1f06c46e1a5c2d7d757a798d6f6e3d', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d184450e5e93c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:15:21.000Z'}}, {'blockNum': '0x5fb3e5', 'uniqueId': '0x0d516e053c1abca06134fb606bcc10cab1e26c55b443aa3801d54c82206aeecf:log:0', 'hash': '0x0d516e053c1abca06134fb606bcc10cab1e26c55b443aa3801d54c82206aeecf', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 5460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0127fcb8afae20d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:16:16.000Z'}}, {'blockNum': '0x5fb3f1', 'uniqueId': '0x276846344409718fc9dead5c3f95fc0e755fa1c1a5d5595fcc5eafa01e02d23d:log:0', 'hash': '0x276846344409718fc9dead5c3f95fc0e755fa1c1a5d5595fcc5eafa01e02d23d', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 270.052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ea3b96f3403ca0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:18:49.000Z'}}, {'blockNum': '0x5fb3fe', 'uniqueId': '0x5a37002302d0a7b0c993c2db35ca530d0ae484c4171fe475314f0859b53e1fc8:log:0', 'hash': '0x5a37002302d0a7b0c993c2db35ca530d0ae484c4171fe475314f0859b53e1fc8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 1785.9839218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x60d181825428075000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:22:00.000Z'}}, {'blockNum': '0x5fb40c', 'uniqueId': '0xf2f3f4b0f1613f999e14b2ceb9aa77db24e0eadd8e9430d7e3f3ad4b42ae0317:log:10', 'hash': '0xf2f3f4b0f1613f999e14b2ceb9aa77db24e0eadd8e9430d7e3f3ad4b42ae0317', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0127fcb8afae20d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:24:07.000Z'}}, {'blockNum': '0x5fb40c', 'uniqueId': '0x12d3f11da39eec068b3024dab802b6c1164508a3ee1ba6fdef5291831d9b9042:log:11', 'hash': '0x12d3f11da39eec068b3024dab802b6c1164508a3ee1ba6fdef5291831d9b9042', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 270.052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ea3b96f3403ca0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:24:07.000Z'}}, {'blockNum': '0x5fb40c', 'uniqueId': '0xd06df21b6b8576218ef4e5aee6a175931cbd1dd7ffa7a7d1241d9d1c096078ff:log:12', 'hash': '0xd06df21b6b8576218ef4e5aee6a175931cbd1dd7ffa7a7d1241d9d1c096078ff', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d184450e5e93c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:24:07.000Z'}}, {'blockNum': '0x5fb43a', 'uniqueId': '0x2fa2aacba11d8f548aa85966888323a53885e9421ab690d867eafb393f42ae0d:log:21', 'hash': '0x2fa2aacba11d8f548aa85966888323a53885e9421ab690d867eafb393f42ae0d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 385.26208134011796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14e295ddc5d960f887', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:35:32.000Z'}}, {'blockNum': '0x5fb43a', 'uniqueId': '0x2fa2aacba11d8f548aa85966888323a53885e9421ab690d867eafb393f42ae0d:log:23', 'hash': '0x2fa2aacba11d8f548aa85966888323a53885e9421ab690d867eafb393f42ae0d', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xb71d05cf5cdf7a9b15b20b9aab5e91332c271c96', 'value': 385.26208134011796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14e295ddc5d960f887', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:35:32.000Z'}}, {'blockNum': '0x5fb43c', 'uniqueId': '0x9e2b7d725759b64628784e6cb8194a2e82a476f3b0bef51e78503dfb0dab6086:log:16', 'hash': '0x9e2b7d725759b64628784e6cb8194a2e82a476f3b0bef51e78503dfb0dab6086', 'from': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'to': '0xb71d05cf5cdf7a9b15b20b9aab5e91332c271c96', 'value': 630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2227019e1df0180000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:35:51.000Z'}}, {'blockNum': '0x5fb43e', 'uniqueId': '0x7662aa6d702c3e8f14383df6e43efa99d2f1eb2b335d0749f925e3e8b4d0b3e1:log:21', 'hash': '0x7662aa6d702c3e8f14383df6e43efa99d2f1eb2b335d0749f925e3e8b4d0b3e1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1479.6529587121179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x50364f4e694b83672a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:36:38.000Z'}}, {'blockNum': '0x5fb43e', 'uniqueId': '0x7662aa6d702c3e8f14383df6e43efa99d2f1eb2b335d0749f925e3e8b4d0b3e1:log:23', 'hash': '0x7662aa6d702c3e8f14383df6e43efa99d2f1eb2b335d0749f925e3e8b4d0b3e1', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xb71d05cf5cdf7a9b15b20b9aab5e91332c271c96', 'value': 1479.6529587121179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x50364f4e694b83672a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:36:38.000Z'}}, {'blockNum': '0x5fb44c', 'uniqueId': '0x7d71be20ff32f63ea47e88b10a5791c1da7555779a94d37cb7d207fb2fa59a3c:log:0', 'hash': '0x7d71be20ff32f63ea47e88b10a5791c1da7555779a94d37cb7d207fb2fa59a3c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2877.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9bfeb8e1d260100000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:40:04.000Z'}}, {'blockNum': '0x5fb462', 'uniqueId': '0x1947901505c331e6db19ae5a30abede03921cc9a058504d908f853296cf7651e:log:1', 'hash': '0x1947901505c331e6db19ae5a30abede03921cc9a058504d908f853296cf7651e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 4595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf9186f5aa587ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:43:44.000Z'}}, {'blockNum': '0x5fb463', 'uniqueId': '0xbbcb4f925bbb300b53e31bcb07ac489961427a296ec936d8c6f749ff63eb28d8:log:87', 'hash': '0xbbcb4f925bbb300b53e31bcb07ac489961427a296ec936d8c6f749ff63eb28d8', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1785.9839218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x60d181825428075000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:44:13.000Z'}}, {'blockNum': '0x5fb46b', 'uniqueId': '0x39ad3257f515f69e06988159d42060319403ad4fc0a444d5d42a44045a1c5231:log:43', 'hash': '0x39ad3257f515f69e06988159d42060319403ad4fc0a444d5d42a44045a1c5231', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 369.7614039327906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x140b7865cc07b5cf2b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:47:02.000Z'}}, {'blockNum': '0x5fb46b', 'uniqueId': '0x39ad3257f515f69e06988159d42060319403ad4fc0a444d5d42a44045a1c5231:log:45', 'hash': '0x39ad3257f515f69e06988159d42060319403ad4fc0a444d5d42a44045a1c5231', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xb71d05cf5cdf7a9b15b20b9aab5e91332c271c96', 'value': 369.7614039327906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x140b7865cc07b5cf2b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:47:02.000Z'}}, {'blockNum': '0x5fb48f', 'uniqueId': '0xce403d022f9b3afc2520fead86f2b05b1994ba387add1461faff6124a0a69100:log:10', 'hash': '0xce403d022f9b3afc2520fead86f2b05b1994ba387add1461faff6124a0a69100', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf9186f5aa587ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:54:11.000Z'}}, {'blockNum': '0x5fb495', 'uniqueId': '0x40aff9f554426eda4ec849e8eb2e5e2928309dcd13fd2b2fd250ac4682e83309:log:5', 'hash': '0x40aff9f554426eda4ec849e8eb2e5e2928309dcd13fd2b2fd250ac4682e83309', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'value': 710.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26858e571470940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:55:35.000Z'}}, {'blockNum': '0x5fb495', 'uniqueId': '0x367ba7537d8f01bd368ad1ea673d98d29524e5ffc0292edd9cea0f08a391b59e:log:6', 'hash': '0x367ba7537d8f01bd368ad1ea673d98d29524e5ffc0292edd9cea0f08a391b59e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x97f9d412e22fe10471f94047d4aa7f43d796412a', 'value': 139.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x079156d45e14880000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T19:55:35.000Z'}}, {'blockNum': '0x5fb55a', 'uniqueId': '0x4f65bd35a305b608e18a74660ef4d184df5992b9575a448a2a1d0c96923a1744:log:3', 'hash': '0x4f65bd35a305b608e18a74660ef4d184df5992b9575a448a2a1d0c96923a1744', 'from': '0x820910798bdb9b7885bfb7cf9bb37c70fd67e21a', 'to': '0x4909ee253eb7b419ab73063d118505bbfc796fe9', 'value': 1000.292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3639d71239d10a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T20:40:29.000Z'}}, {'blockNum': '0x5fb592', 'uniqueId': '0x443797fe7b05d68128acc3b985d539b8eee815a29f365a7b2f50d29bbd839eb1:log:8', 'hash': '0x443797fe7b05d68128acc3b985d539b8eee815a29f365a7b2f50d29bbd839eb1', 'from': '0x4909ee253eb7b419ab73063d118505bbfc796fe9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000.292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3639d71239d10a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T20:54:17.000Z'}}, {'blockNum': '0x5fb5a2', 'uniqueId': '0x4c9c5d9bbc9b3c2d5341d488c007f65fa986f6c637283e2caaabfef36b03da1c:log:0', 'hash': '0x4c9c5d9bbc9b3c2d5341d488c007f65fa986f6c637283e2caaabfef36b03da1c', 'from': '0xb1bf6a2a83daf026d8dbd089c2d0c75649fef3da', 'to': '0xe008e99a4777e3a72668c17059e4254849fc0d40', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T20:58:09.000Z'}}, {'blockNum': '0x5fb5ae', 'uniqueId': '0xe5b74b502e47cc8a610b9dfa7614b23851654c03f213d17cff80392c7b135fa4:log:0', 'hash': '0xe5b74b502e47cc8a610b9dfa7614b23851654c03f213d17cff80392c7b135fa4', 'from': '0xb1bf6a2a83daf026d8dbd089c2d0c75649fef3da', 'to': '0xe008e99a4777e3a72668c17059e4254849fc0d40', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01605d9ee98627100000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:01:21.000Z'}}, {'blockNum': '0x5fb5bf', 'uniqueId': '0xd69a6fe0730db2ec462128af3bf15268fa84494a2dda99c666250b70ce838cbf:log:0', 'hash': '0xd69a6fe0730db2ec462128af3bf15268fa84494a2dda99c666250b70ce838cbf', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d0856233826140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:06:35.000Z'}}, {'blockNum': '0x5fb5d0', 'uniqueId': '0x679353bda5c4b69ab7a4140f20dd0fa59a081bceeadd8f6234c37db4359cc6df:log:0', 'hash': '0x679353bda5c4b69ab7a4140f20dd0fa59a081bceeadd8f6234c37db4359cc6df', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe98285826484ea131e9f08bfe9375dbb8d5b2ce4', 'value': 21484.091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048ca7a7f8e84ebf8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:09:25.000Z'}}, {'blockNum': '0x5fb5e1', 'uniqueId': '0xda360efdac0fa9084ba90f28fde38ee3d664c98b3c05304c03b1a8f49f49e01a:log:20', 'hash': '0xda360efdac0fa9084ba90f28fde38ee3d664c98b3c05304c03b1a8f49f49e01a', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d0856233826140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:14:06.000Z'}}, {'blockNum': '0x5fb632', 'uniqueId': '0x3f0b9a5783d6b20b55067305b89d78939a7d42bae58083e45cf8bce1cac8840a:log:16', 'hash': '0x3f0b9a5783d6b20b55067305b89d78939a7d42bae58083e45cf8bce1cac8840a', 'from': '0x5c1c3ad29d231c4451022c7d661f3dfd7350bc13', 'to': '0x92c1b2b38ae0873bab61d3e64598ea41e32cfba4', 'value': 102.3296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058c1bc508d7d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:33:37.000Z'}}, {'blockNum': '0x5fb671', 'uniqueId': '0xc5a977ba276bee66f6f129468fe154ad69b726682b0ed67438accd0aa4b0ec97:log:6', 'hash': '0xc5a977ba276bee66f6f129468fe154ad69b726682b0ed67438accd0aa4b0ec97', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 314.1575396297596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1107cfc9d0b685968f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:47:18.000Z'}}, {'blockNum': '0x5fb671', 'uniqueId': '0xc5a977ba276bee66f6f129468fe154ad69b726682b0ed67438accd0aa4b0ec97:log:8', 'hash': '0xc5a977ba276bee66f6f129468fe154ad69b726682b0ed67438accd0aa4b0ec97', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x846c8e2341cff64140797a7d17acb2839be33440', 'value': 314.1575396297596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1107cfc9d0b685968f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:47:18.000Z'}}, {'blockNum': '0x5fb6a2', 'uniqueId': '0x9b24e020a01c21a8edada4f0c1b680e2d7cfdec19d709b3cd5b37bbb9da05257:log:15', 'hash': '0x9b24e020a01c21a8edada4f0c1b680e2d7cfdec19d709b3cd5b37bbb9da05257', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x69645de4e5bab7b593614084cde5a4360bfe0ccc', 'value': 243.0139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d2c7ece81d64cc000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T21:57:35.000Z'}}, {'blockNum': '0x5fb6c2', 'uniqueId': '0xf1237e5cd8729b3209887caadb2fb828636d37d21b89637a489bd30b8f56ef87:log:35', 'hash': '0xf1237e5cd8729b3209887caadb2fb828636d37d21b89637a489bd30b8f56ef87', 'from': '0x51b7af29b46a9d0cdbf9f367c130e47c18faded7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T22:05:24.000Z'}}, {'blockNum': '0x5fb74a', 'uniqueId': '0xad68cd573da6c6a84d9b6a08234e418763ee28beb197ee584d661503f06f411e:log:39', 'hash': '0xad68cd573da6c6a84d9b6a08234e418763ee28beb197ee584d661503f06f411e', 'from': '0x00cd9fad11d5b2118a3dd32d5d43fdb33bde9e85', 'to': '0x83ae51a80b34d5dc204e140faec27b7cbde6d020', 'value': 104146.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x160dc57682d1a0cb8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T22:39:24.000Z'}}, {'blockNum': '0x5fb7a3', 'uniqueId': '0x95300f795e9ae7f0a6f7ffd27fe227abf66fd4deee548401b41f09e7e1b600c3:log:2', 'hash': '0x95300f795e9ae7f0a6f7ffd27fe227abf66fd4deee548401b41f09e7e1b600c3', 'from': '0x69645de4e5bab7b593614084cde5a4360bfe0ccc', 'to': '0x0861fca546225fbf8806986d211c8398f7457734', 'value': 243.0139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d2c7ece81d64cc000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T23:03:11.000Z'}}, {'blockNum': '0x5fb7fa', 'uniqueId': '0x24de3c5bb871c024f20d633d9844455501cc0ed94c4c98ce8703090bc0d4bb11:log:19', 'hash': '0x24de3c5bb871c024f20d633d9844455501cc0ed94c4c98ce8703090bc0d4bb11', 'from': '0xdbb05290de6733cf33d7abdee6064e0829d5c00a', 'to': '0xb79c8c59bfad0d2d4d5eacb714610e2fe31c401e', 'value': 4466.802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf2255490de64650000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T23:25:29.000Z'}}, {'blockNum': '0x5fb820', 'uniqueId': '0x3298b6c8c9106b575f98b5be57e605785dbcee1be16b73968babd9fff1bca883:log:17', 'hash': '0x3298b6c8c9106b575f98b5be57e605785dbcee1be16b73968babd9fff1bca883', 'from': '0xb79c8c59bfad0d2d4d5eacb714610e2fe31c401e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4466.802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf2255490de64650000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-04T23:34:05.000Z'}}, {'blockNum': '0x5fb8dd', 'uniqueId': '0xdae069ccfe50aa4c18f651530cb8c9f186eb033bc3347eb74876f2ac283ab93e:log:0', 'hash': '0xdae069ccfe50aa4c18f651530cb8c9f186eb033bc3347eb74876f2ac283ab93e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4222e6b029b8900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:19:53.000Z'}}, {'blockNum': '0x5fb8f2', 'uniqueId': '0x7553da636d19bcee44e608846694f5a2a143800bf76df8d25c7405845596aebf:log:13', 'hash': '0x7553da636d19bcee44e608846694f5a2a143800bf76df8d25c7405845596aebf', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4222e6b029b8900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:24:13.000Z'}}, {'blockNum': '0x5fb942', 'uniqueId': '0x293f273fde2b34e9654c56bb4ac9ae60eb3183dacfd55288d47b9f86d9fb3eb9:log:2', 'hash': '0x293f273fde2b34e9654c56bb4ac9ae60eb3183dacfd55288d47b9f86d9fb3eb9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'value': 8831.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01debc21c4d3b0260000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:41:49.000Z'}}, {'blockNum': '0x5fb942', 'uniqueId': '0x6fba0117ee3bbd846beac62e6052f44a29397bb5c98ae12d474a7e55a3c1e893:log:3', 'hash': '0x6fba0117ee3bbd846beac62e6052f44a29397bb5c98ae12d474a7e55a3c1e893', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc1afe584ecc05379b7be8a57039f4d37f2fc9ad7', 'value': 8830.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01deae410e2008c20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:41:49.000Z'}}, {'blockNum': '0x5fb963', 'uniqueId': '0x3cbee8675631b216818b2875767140abfd504169b64e8547b2d285069d11064b:log:7', 'hash': '0x3cbee8675631b216818b2875767140abfd504169b64e8547b2d285069d11064b', 'from': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 8831.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01debc21c4d3b0260000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:46:58.000Z'}}, {'blockNum': '0x5fb97d', 'uniqueId': '0x92b053ed54d4a2fa6467c6632ce322deaab3a4a49886d31b0c8e5175c842f093:log:2', 'hash': '0x92b053ed54d4a2fa6467c6632ce322deaab3a4a49886d31b0c8e5175c842f093', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'value': 5123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0115b7e82d2ec62c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T00:53:33.000Z'}}, {'blockNum': '0x5fb9a9', 'uniqueId': '0xc520db494aebc3a970eb56ac08265b19ea69d2c42c2c89fb12025b8387995fd5:log:5', 'hash': '0xc520db494aebc3a970eb56ac08265b19ea69d2c42c2c89fb12025b8387995fd5', 'from': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0115b7e82d2ec62c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T01:04:31.000Z'}}, {'blockNum': '0x5fb9ad', 'uniqueId': '0xe14328606b7fd29d7206bc600d0ede168f91f1e03eb5d0f8f8dc24ffc0b4ab41:log:120', 'hash': '0xe14328606b7fd29d7206bc600d0ede168f91f1e03eb5d0f8f8dc24ffc0b4ab41', 'from': '0xce3e3ea2248de056e5ac5ff78e1fca1966fd5cb8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 431.134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x175f2fa8c111430000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-05T01:05:26.000Z'}}]}}
Number of returned transfers:  115
Answer is complete
 
symbol             AST
group              BPG
date        2018-09-07
hour             15:30
exchange       binance
Name: 258, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
 Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps:  2018-09-07 15:30:00 2018-09-07 03:30:00 2018-09-08 03:30:00
Unix timestamps:  1536283800.0 1536370200.0
Hex Block Numbers:  0x5fe8d5 0x600006
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5fe8d7', 'uniqueId': '0xa930b6be12ecd9cdc7f9c9c89e27db6dc6e6d6e178cb486bbf9b879e3bb20d5d:log:53', 'hash': '0xa930b6be12ecd9cdc7f9c9c89e27db6dc6e6d6e178cb486bbf9b879e3bb20d5d', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x5291e85f9d1a853fde405711bf7942ee97096d39', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T01:30:22.000Z'}}, {'blockNum': '0x5fe8e9', 'uniqueId': '0x614d3414cb700657d5e33159ec3f20d6b8725c0ba84a194dc7183d431145b766:log:2', 'hash': '0x614d3414cb700657d5e33159ec3f20d6b8725c0ba84a194dc7183d431145b766', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 40439.3091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x181a8c83', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T01:35:41.000Z'}}, {'blockNum': '0x5feba5', 'uniqueId': '0xeab70f874383379719a3db94db5ac8677f747b3effb02e2a2c0b5dcb62881ec2:log:6', 'hash': '0xeab70f874383379719a3db94db5ac8677f747b3effb02e2a2c0b5dcb62881ec2', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xa7478e48101a4600959837bd19ed719f2cb023df', 'value': 2275.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015b33fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T04:31:31.000Z'}}, {'blockNum': '0x5febdc', 'uniqueId': '0xcc90c2a6009e56d60a43f074103346e1fb8e80f8ea2ae8f611ec138a45872891:log:21', 'hash': '0xcc90c2a6009e56d60a43f074103346e1fb8e80f8ea2ae8f611ec138a45872891', 'from': '0xa7478e48101a4600959837bd19ed719f2cb023df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2275.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015b33fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T04:45:01.000Z'}}, {'blockNum': '0x5fed59', 'uniqueId': '0x2304cd35bed6a2290b11ca128f776b166f49af42376bc5b401aab3b0d3a50c81:log:15', 'hash': '0x2304cd35bed6a2290b11ca128f776b166f49af42376bc5b401aab3b0d3a50c81', 'from': '0x84faf1f993d2261a6a6dc53047719a5815719877', 'to': '0x99a1e7cd3032b1e4cab0181bc021130418c9587b', 'value': 2640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0192d500', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T06:09:16.000Z'}}, {'blockNum': '0x5fed72', 'uniqueId': '0x09e8e6555f0b0f9a7b94b00120e93d019d8c38686c2c07ea615efa0c328fcd52:log:84', 'hash': '0x09e8e6555f0b0f9a7b94b00120e93d019d8c38686c2c07ea615efa0c328fcd52', 'from': '0x99a1e7cd3032b1e4cab0181bc021130418c9587b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T06:15:13.000Z'}}, {'blockNum': '0x5fef5d', 'uniqueId': '0xc9fdd66479896388bc992dea109631b7ae163398c928b8cc75644b3968e36e8d:log:3', 'hash': '0xc9fdd66479896388bc992dea109631b7ae163398c928b8cc75644b3968e36e8d', 'from': '0xb56198923886d25042961dd091133e80b4fd7a8f', 'to': '0xef9762afb01ed8b7bd82bc78953317fd9480c37e', 'value': 7989.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c31dc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T08:13:37.000Z'}}, {'blockNum': '0x5fefbf', 'uniqueId': '0x2da624fb2d332315329a9f7b23325c59e13236dc9f062baef6080bf8d70f9545:log:8', 'hash': '0x2da624fb2d332315329a9f7b23325c59e13236dc9f062baef6080bf8d70f9545', 'from': '0xef9762afb01ed8b7bd82bc78953317fd9480c37e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7989.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c31dc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T08:35:17.000Z'}}, {'blockNum': '0x5ff21f', 'uniqueId': '0x88f1e0b1b3a6131af32b58b86bdc6597fd32df2b1889859045515432273459d9:log:44', 'hash': '0x88f1e0b1b3a6131af32b58b86bdc6597fd32df2b1889859045515432273459d9', 'from': '0xfdf65ce54ce170ba7d1517d62b750a4d46360e51', 'to': '0xb8c2382f9fbcbe03c52a9f517eeb5eb9dd2ad18a', 'value': 40286.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x18034b80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T11:03:26.000Z'}}, {'blockNum': '0x5ff251', 'uniqueId': '0x3ec5a1e9472d1f5eb3bbf032301bceb42daaa693c7bd18dab8208087e5889b40:log:41', 'hash': '0x3ec5a1e9472d1f5eb3bbf032301bceb42daaa693c7bd18dab8208087e5889b40', 'from': '0xb8c2382f9fbcbe03c52a9f517eeb5eb9dd2ad18a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40286.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x18034b80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T11:15:25.000Z'}}, {'blockNum': '0x5ff417', 'uniqueId': '0x054e34b61deaacbb0c5e644370cdd2ce96ede16e7499bfe0003998d8229c8bf2:log:10', 'hash': '0x054e34b61deaacbb0c5e644370cdd2ce96ede16e7499bfe0003998d8229c8bf2', 'from': '0x1c06328ddc1d662860415cf54f33570759a20ff6', 'to': '0xf2bbd020e7a95fbd3108c8ed9bb42966f2a380eb', 'value': 1001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x98bd90', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T13:07:41.000Z'}}, {'blockNum': '0x5ff439', 'uniqueId': '0x26d892b00d64a39bce5a041d4f22e426f2faae7bf56528aa6d5b44fb03028e60:log:17', 'hash': '0x26d892b00d64a39bce5a041d4f22e426f2faae7bf56528aa6d5b44fb03028e60', 'from': '0x0605e70e2581adb08e58636a6bfc7e542fa0c6f1', 'to': '0x8ca917727619e4f3c2916735c92f90ec01f2aa5b', 'value': 2032.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01361cac', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T13:16:33.000Z'}}, {'blockNum': '0x5ff45f', 'uniqueId': '0x17c316a9f5371b66649bdc6c68c9d3d2c648ae080cee4d05ff4b31639b01476b:log:27', 'hash': '0x17c316a9f5371b66649bdc6c68c9d3d2c648ae080cee4d05ff4b31639b01476b', 'from': '0x8ca917727619e4f3c2916735c92f90ec01f2aa5b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016cd670', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T13:24:58.000Z'}}, {'blockNum': '0x5ff621', 'uniqueId': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a:log:46', 'hash': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 671.6657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x667cf1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:15:19.000Z'}}, {'blockNum': '0x5ff621', 'uniqueId': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a:log:49', 'hash': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 671.6657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x667cf1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:15:19.000Z'}}, {'blockNum': '0x5ff621', 'uniqueId': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a:log:50', 'hash': '0x18f246df99c07a650546a996c52d7ae8e07c10b295d079a065ab292667e2164a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 671.6657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x667cf1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:15:19.000Z'}}, {'blockNum': '0x5ff659', 'uniqueId': '0xac6f5bfde1b56e1daa833ec3ebc964de4440a2108f7f23d6c37399660ae4aa3c:log:70', 'hash': '0xac6f5bfde1b56e1daa833ec3ebc964de4440a2108f7f23d6c37399660ae4aa3c', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0xa3ed571cac41bed0249ab19080d1013404319e20', 'value': 2614.1966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018ee50e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:29:56.000Z'}}, {'blockNum': '0x5ff65d', 'uniqueId': '0x69677388ba599b91d7b01a2218fc39e1377c6519ec89d5f284cfe3f265bee24b:log:0', 'hash': '0x69677388ba599b91d7b01a2218fc39e1377c6519ec89d5f284cfe3f265bee24b', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0xa3ed571cac41bed0249ab19080d1013404319e20', 'value': 2614.1966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018ee50e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:30:50.000Z'}}, {'blockNum': '0x5ff663', 'uniqueId': '0x3fad015dd40266a0e37daad797a215d5f5d55af23031f7f9dbf2fb0e3c27f8c8:log:29', 'hash': '0x3fad015dd40266a0e37daad797a215d5f5d55af23031f7f9dbf2fb0e3c27f8c8', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4309.4999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x029193d7', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:31:59.000Z'}}, {'blockNum': '0x5ff664', 'uniqueId': '0xd32400e271b61490b56bbd0a982fda6c9933911fccdee97a33fc1c7a91e4bcd4:log:2', 'hash': '0xd32400e271b61490b56bbd0a982fda6c9933911fccdee97a33fc1c7a91e4bcd4', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:32:18.000Z'}}, {'blockNum': '0x5ff667', 'uniqueId': '0x7af6c9300e9a181af11a1a3136909fb17c93b234f442b05d3d3573031d6cedee:log:65', 'hash': '0x7af6c9300e9a181af11a1a3136909fb17c93b234f442b05d3d3573031d6cedee', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xb7e3abd75119fe3cfc76015193226b21fc19230b', 'value': 10747.0924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0667e04c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:32:39.000Z'}}, {'blockNum': '0x5ff66d', 'uniqueId': '0x03663d3c9f3c2f9b84900098bac83226e54fd3435245fbcbbc2ebe5d1ee985a7:log:10', 'hash': '0x03663d3c9f3c2f9b84900098bac83226e54fd3435245fbcbbc2ebe5d1ee985a7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 8066.4999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04ced9a7', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:34:50.000Z'}}, {'blockNum': '0x5ff67d', 'uniqueId': '0xca950fa0c0af11b7d31752ead775d50b712f841cd260d924bc1b164302c17f91:log:10', 'hash': '0xca950fa0c0af11b7d31752ead775d50b712f841cd260d924bc1b164302c17f91', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc350', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:38:41.000Z'}}, {'blockNum': '0x5ff681', 'uniqueId': '0xf5aaaa1611fd10181d329d7bb1bc23362ea04513e00319dcbb9fa5eb8e76f3c8:log:56', 'hash': '0xf5aaaa1611fd10181d329d7bb1bc23362ea04513e00319dcbb9fa5eb8e76f3c8', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9c40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:39:18.000Z'}}, {'blockNum': '0x5ff687', 'uniqueId': '0xeb0e47884cddece699e0ef81ffb7cae793bcd349b4fce3efc633521338ed80d0:log:5', 'hash': '0xeb0e47884cddece699e0ef81ffb7cae793bcd349b4fce3efc633521338ed80d0', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 67543.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x28425db0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:40:29.000Z'}}, {'blockNum': '0x5ff68d', 'uniqueId': '0x1f66913bf1bd5f8dbebc4a93c4c415bfd97b1d5d4151dd980bda6303471c1686:log:19', 'hash': '0x1f66913bf1bd5f8dbebc4a93c4c415bfd97b1d5d4151dd980bda6303471c1686', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0xdead0717b16b9f56eb6e308e4b29230dc0eee0b6', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc350', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:41:49.000Z'}}, {'blockNum': '0x5ff69f', 'uniqueId': '0x4544a51386e950d6a2a49f87266854d0da50749364d11a9c4149d75eb2577119:log:520', 'hash': '0x4544a51386e950d6a2a49f87266854d0da50749364d11a9c4149d75eb2577119', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67543.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x28425db0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:44:50.000Z'}}, {'blockNum': '0x5ff69f', 'uniqueId': '0x28f64fb78c5e34fed24984127a918acc7a3b5c80d190f98b9428ed741375e324:log:521', 'hash': '0x28f64fb78c5e34fed24984127a918acc7a3b5c80d190f98b9428ed741375e324', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4309.4999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x029193d7', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:44:50.000Z'}}, {'blockNum': '0x5ff6a0', 'uniqueId': '0x7d5ef5c1ec650f48c758c8863daccd9f8f6c4e9eb9a7a475b082a2afdc368b9f:log:22', 'hash': '0x7d5ef5c1ec650f48c758c8863daccd9f8f6c4e9eb9a7a475b082a2afdc368b9f', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:45:10.000Z'}}, {'blockNum': '0x5ff6a7', 'uniqueId': '0x6245758323d3e5fd88df29b38e4ffb83706afdcd22f7e5534b5dc7ab72a0b470:log:50', 'hash': '0x6245758323d3e5fd88df29b38e4ffb83706afdcd22f7e5534b5dc7ab72a0b470', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0xfe723d068f07c2c588fe4db8ce84fd33b93c3511', 'value': 1955.6675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012a6943', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:46:52.000Z'}}, {'blockNum': '0x5ff6b1', 'uniqueId': '0xde9bfc7cfa88f9092de7fba74140421a9e75e29e57b8fbcf6da8f5d1a6fa0935:log:6', 'hash': '0xde9bfc7cfa88f9092de7fba74140421a9e75e29e57b8fbcf6da8f5d1a6fa0935', 'from': '0xfe723d068f07c2c588fe4db8ce84fd33b93c3511', 'to': '0x9ea39651739f6c025d0770695a822b7187605f42', 'value': 1955.6675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012a6943', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:48:26.000Z'}}, {'blockNum': '0x5ff6cf', 'uniqueId': '0xdee27f4ad8479b69e64d6af91f50117382993c9369a952a4d2ffa67114280f3c:log:65', 'hash': '0xdee27f4ad8479b69e64d6af91f50117382993c9369a952a4d2ffa67114280f3c', 'from': '0xa3ed571cac41bed0249ab19080d1013404319e20', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 7389.6212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04679114', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:54:43.000Z'}}, {'blockNum': '0x5ff6d1', 'uniqueId': '0xbfdf1b80bb8cee2cba2a6126346649dff5083e21cf6ad7ed55abfa241beb7726:log:15', 'hash': '0xbfdf1b80bb8cee2cba2a6126346649dff5083e21cf6ad7ed55abfa241beb7726', 'from': '0xb7e3abd75119fe3cfc76015193226b21fc19230b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10747.0924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0667e04c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:55:23.000Z'}}, {'blockNum': '0x5ff6d1', 'uniqueId': '0xef9cb40dc2ab08647e51f025e3669e6706bafe34922e6a8879dd609e499ec704:log:16', 'hash': '0xef9cb40dc2ab08647e51f025e3669e6706bafe34922e6a8879dd609e499ec704', 'from': '0x9ea39651739f6c025d0770695a822b7187605f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1955.6675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012a6943', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T15:55:23.000Z'}}, {'blockNum': '0x5ff6f3', 'uniqueId': '0x1023bdfc295005c0c3eb83f32db806f3ed26f1a3be6be03787dca8d93874d61b:log:5', 'hash': '0x1023bdfc295005c0c3eb83f32db806f3ed26f1a3be6be03787dca8d93874d61b', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7389.6212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04679114', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:05:08.000Z'}}, {'blockNum': '0x5ff706', 'uniqueId': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd:log:34', 'hash': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 630.4812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x60342c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:09:29.000Z'}}, {'blockNum': '0x5ff706', 'uniqueId': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd:log:37', 'hash': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 630.4812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x60342c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:09:29.000Z'}}, {'blockNum': '0x5ff706', 'uniqueId': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd:log:38', 'hash': '0x6d43cf81f78b6ab9fe61e9778990c8413ceeac901a0fee0dd668d0ed3e4ea6fd', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 630.4812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x60342c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:09:29.000Z'}}, {'blockNum': '0x5ff707', 'uniqueId': '0xa601899c0d4452f1aa2e7a0c015a005e9e82f911636af3f4ff3290c1304447a0:log:59', 'hash': '0xa601899c0d4452f1aa2e7a0c015a005e9e82f911636af3f4ff3290c1304447a0', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0xfe723d068f07c2c588fe4db8ce84fd33b93c3511', 'value': 1996.852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0130b208', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:09:44.000Z'}}, {'blockNum': '0x5ff70b', 'uniqueId': '0xf7aebec01ff87bb85060ce926eb1d912817cad7df1280b2ca7964a58feb315aa:log:12', 'hash': '0xf7aebec01ff87bb85060ce926eb1d912817cad7df1280b2ca7964a58feb315aa', 'from': '0xfe723d068f07c2c588fe4db8ce84fd33b93c3511', 'to': '0x9ea39651739f6c025d0770695a822b7187605f42', 'value': 1996.852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0130b208', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:10:48.000Z'}}, {'blockNum': '0x5ff741', 'uniqueId': '0x832de9ee4aa0e0d49b204fdcbabb5e5474cc986a3ae02cddd5d77bb39b95d121:log:32', 'hash': '0x832de9ee4aa0e0d49b204fdcbabb5e5474cc986a3ae02cddd5d77bb39b95d121', 'from': '0x9ea39651739f6c025d0770695a822b7187605f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1996.852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0130b208', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T16:25:46.000Z'}}, {'blockNum': '0x5ff7f4', 'uniqueId': '0x62f65baf2c04547d78d499d35ce94f0d623328ff1b1e0db4d5472561cd8954ff:log:3', 'hash': '0x62f65baf2c04547d78d499d35ce94f0d623328ff1b1e0db4d5472561cd8954ff', 'from': '0x33f25e81dd49b49560b26039f8889e81daf0a1f8', 'to': '0x0437930a50edbf9cfa055b9b227a1b70d53ada24', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T17:08:18.000Z'}}, {'blockNum': '0x5ff8a8', 'uniqueId': '0x50411576a066d99c71ebf53e0238a1cefe3a26d2648af635cd9de039a3d7a730:log:66', 'hash': '0x50411576a066d99c71ebf53e0238a1cefe3a26d2648af635cd9de039a3d7a730', 'from': '0x15f0612a8e583e87e2891d8ad1bb79e4e55620e8', 'to': '0x228835bdf697cbe8fc098b47b0dc8746e19e4e40', 'value': 98.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0effd8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T17:53:46.000Z'}}, {'blockNum': '0x5ff8ab', 'uniqueId': '0x6c40edec108d6843467b1c3b2940d84520e08e467d03cdfef94cb9658a5adbcc:log:19', 'hash': '0x6c40edec108d6843467b1c3b2940d84520e08e467d03cdfef94cb9658a5adbcc', 'from': '0xc1f14e12ef36de651d62950d9f152e524bf6543b', 'to': '0xe9b47e8f0105793f03967a979d3d2ee73661caba', 'value': 5800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03750280', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T17:55:03.000Z'}}, {'blockNum': '0x5ff8ce', 'uniqueId': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3:log:49', 'hash': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3', 'from': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x48efe0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:03:14.000Z'}}, {'blockNum': '0x5ff8ce', 'uniqueId': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3:log:52', 'hash': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x48efe0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:03:14.000Z'}}, {'blockNum': '0x5ff8ce', 'uniqueId': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3:log:53', 'hash': '0xf759fab36b8ca33cec89b8a93cc79e2dadfa682927741233aa3d229e15cf1ea3', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x48efe0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:03:14.000Z'}}, {'blockNum': '0x5ff8e2', 'uniqueId': '0xf7594049294360e50b846285061b23ea0dc99c07b4a009113a5583a8d03f087b:log:15', 'hash': '0xf7594049294360e50b846285061b23ea0dc99c07b4a009113a5583a8d03f087b', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x8d99f2e4c0534bd2500e0ab378897ae78c09cb14', 'value': 7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x011170', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:07:43.000Z'}}, {'blockNum': '0x5ff900', 'uniqueId': '0xcc69f56705da2b5f154ec5c6c50b59176708deb2c5a3335d23fe8ff8061fe529:log:18', 'hash': '0xcc69f56705da2b5f154ec5c6c50b59176708deb2c5a3335d23fe8ff8061fe529', 'from': '0xe9b47e8f0105793f03967a979d3d2ee73661caba', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03750280', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T18:15:07.000Z'}}, {'blockNum': '0x5ffa1c', 'uniqueId': '0xc4b605be1166e174483ee3817554ab71b7bb4effbfe539de67cff7b3fa0d5ad3:log:20', 'hash': '0xc4b605be1166e174483ee3817554ab71b7bb4effbfe539de67cff7b3fa0d5ad3', 'from': '0xe8bcbc2fbc5d35cc2e31ed7f6ed615d1e9bf7ebf', 'to': '0x2255cf33fd3eac46a8818bb255ef5ba54733565e', 'value': 10495.416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x06417930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T19:24:02.000Z'}}, {'blockNum': '0x5ffa4b', 'uniqueId': '0x5039b42e900a8cc356709b1eeb6a12eb65b76cdd92b6ef0b7041f7c849a920eb:log:23', 'hash': '0x5039b42e900a8cc356709b1eeb6a12eb65b76cdd92b6ef0b7041f7c849a920eb', 'from': '0x2255cf33fd3eac46a8818bb255ef5ba54733565e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10495.416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x06417930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T19:35:08.000Z'}}, {'blockNum': '0x5ffb56', 'uniqueId': '0x1c82d0e9035c0f4d6099edb5be527c4639e3ebbcfebee8d13d03d46971d8230f:log:10', 'hash': '0x1c82d0e9035c0f4d6099edb5be527c4639e3ebbcfebee8d13d03d46971d8230f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29983.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11df2a30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T20:38:34.000Z'}}, {'blockNum': '0x5ffb99', 'uniqueId': '0x9ad7f83f9bc0e29ab073a05e485180c092689a0e7afe0f910f7b4a189f3711a0:log:63', 'hash': '0x9ad7f83f9bc0e29ab073a05e485180c092689a0e7afe0f910f7b4a189f3711a0', 'from': '0xdead0717b16b9f56eb6e308e4b29230dc0eee0b6', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9c40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T20:57:55.000Z'}}, {'blockNum': '0x5ffbe5', 'uniqueId': '0x268884dbd38d6f0684167d35934f60a8ca8ecfab2222c99a394810ac051875f7:log:33', 'hash': '0x268884dbd38d6f0684167d35934f60a8ca8ecfab2222c99a394810ac051875f7', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7530', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:14:26.000Z'}}, {'blockNum': '0x5ffbf0', 'uniqueId': '0x495b5ec288d169666720b3b43f74ab10ae7dffa4dd21b5c7cc72e4b2e474ad7d:log:2', 'hash': '0x495b5ec288d169666720b3b43f74ab10ae7dffa4dd21b5c7cc72e4b2e474ad7d', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9c40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:16:53.000Z'}}, {'blockNum': '0x5ffbf5', 'uniqueId': '0xea53aa72e40a06a2f310636e6d7588e136bfcec545943b55d393e840b6b010b0:log:55', 'hash': '0xea53aa72e40a06a2f310636e6d7588e136bfcec545943b55d393e840b6b010b0', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:19:08.000Z'}}, {'blockNum': '0x5ffc27', 'uniqueId': '0x3f189094d93c1e27085e862e1ede3bd97e8a1677a2de7a46b23b43b555a01c81:log:57', 'hash': '0x3f189094d93c1e27085e862e1ede3bd97e8a1677a2de7a46b23b43b555a01c81', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc350', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:30:18.000Z'}}, {'blockNum': '0x5ffc3c', 'uniqueId': '0xe0896daa5b9b6b86b1094256b0319d675e962d3f2122be48cbe78a5dea1ddb35:log:97', 'hash': '0xe0896daa5b9b6b86b1094256b0319d675e962d3f2122be48cbe78a5dea1ddb35', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x16d9ff6b46a36bf39a5af9735da95103cee64a8c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc350', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-07T21:35:33.000Z'}}, {'blockNum': '0x5ffffd', 'uniqueId': '0x23d024614957d0c0073aeeda5eb706c958be04a187a42d6b71db202c5f31cb41:log:11', 'hash': '0x23d024614957d0c0073aeeda5eb706c958be04a187a42d6b71db202c5f31cb41', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdcf411ce507c5c0135efaf7a6df458bff7f511bb', 'value': 534.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x517d54', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-09-08T01:28:00.000Z'}}]}}
Number of returned transfers:  59
Answer is complete
 
symbol             ICN
group              BPG
date        2018-09-11
hour             15:30
exchange       binance
Name: 259, dtype: object
HERE
 Symbol: ICN, Contract: 
Datetime timestamps:  2018-09-11 15:30:00 2018-09-11 03:30:00 2018-09-12 03:30:00
Unix timestamps:  1536629400.0 1536715800.0
Hex Block Numbers:  0x6045b6 0x605d2e
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             OAX
group              BPG
date        2018-09-25
hour             14:00
exchange       binance
Name: 260, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2018-09-25 14:00:00 2018-09-25 02:00:00 2018-09-26 02:00:00
Unix timestamps:  1537833600.0 1537920000.0
Hex Block Numbers:  0x618f3c 0x61a71d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x618f47', 'uniqueId': '0x4823bc16fca73d6c6088f7ce8c0d68017f0bf061e92140f15b88289c2720e93b:log:3', 'hash': '0x4823bc16fca73d6c6088f7ce8c0d68017f0bf061e92140f15b88289c2720e93b', 'from': '0x86a96a8a212b7123a9aae4d2b15eb0485e83a4b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11009.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0254d572a06d63a40000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T00:03:08.000Z'}}, {'blockNum': '0x6190d4', 'uniqueId': '0xfc69edb168cf73e1ddc34f6fc92ca219526d8ede7b7b2139242ade076803e7c9:log:41', 'hash': '0xfc69edb168cf73e1ddc34f6fc92ca219526d8ede7b7b2139242ade076803e7c9', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xe098ebebb75baa6e780cd933e0dd407294f24f94', 'value': 8.48706227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x75c81a2b0df86c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T01:40:04.000Z'}}, {'blockNum': '0x619110', 'uniqueId': '0xbf7bb05f1fef043d67395ee4e44858047477a580d8f6eb1e9ae29914699876df:log:169', 'hash': '0xbf7bb05f1fef043d67395ee4e44858047477a580d8f6eb1e9ae29914699876df', 'from': '0x51ec49876fd0f9e4bf72998fb24cd82e05802fbb', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 290.7767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0fc3565c0c8c53c000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T01:52:23.000Z'}}, {'blockNum': '0x61912b', 'uniqueId': '0xf738a8ff6ce39df58028d5993a1c09a3578bfe52e10cd92eaaac06bf239f7974:log:31', 'hash': '0xf738a8ff6ce39df58028d5993a1c09a3578bfe52e10cd92eaaac06bf239f7974', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 285.5655678223108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f7b04b2f1738e7efa', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T01:57:49.000Z'}}, {'blockNum': '0x619132', 'uniqueId': '0x0e241204c1c7834ae6613334ca9117d076f8258a2391e03cf8aa7e8fe1930657:log:143', 'hash': '0x0e241204c1c7834ae6613334ca9117d076f8258a2391e03cf8aa7e8fe1930657', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 285.5655678223108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f7b04b2f1738e7efa', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T01:59:34.000Z'}}, {'blockNum': '0x619210', 'uniqueId': '0x19d3b0c95e9ae60631a24bd9d2e70a457c372a527b5c28132ec261bd55599fca:log:109', 'hash': '0x19d3b0c95e9ae60631a24bd9d2e70a457c372a527b5c28132ec261bd55599fca', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x204717f118d5b22e0978907a28f417ed1136803b', 'value': 228.65853658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0c65464f88df902800', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T02:45:46.000Z'}}, {'blockNum': '0x6192f3', 'uniqueId': '0x95e4d8129171d845b858a40ff1255e15ff2c134e30d3b12bc16ead662c270b37:log:11', 'hash': '0x95e4d8129171d845b858a40ff1255e15ff2c134e30d3b12bc16ead662c270b37', 'from': '0x46f6de6c14b6234c875ddf6187ef94334e39d1fb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 4201.08799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe3bdcecdac38341bff', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T03:37:46.000Z'}}, {'blockNum': '0x619615', 'uniqueId': '0x1552380971219e05af9f054c2d91199c0df210cc78ffed18d183519f8741ff09:log:2', 'hash': '0x1552380971219e05af9f054c2d91199c0df210cc78ffed18d183519f8741ff09', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe6042e4132b754bfffed235a093f78fc368e2774', 'value': 1683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x5b3c511f15766c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T06:48:41.000Z'}}, {'blockNum': '0x619660', 'uniqueId': '0x87514fc1bdbcc89768a518fab834a0d9a176c62a9d101d65c26e02edf8f48bae:log:116', 'hash': '0x87514fc1bdbcc89768a518fab834a0d9a176c62a9d101d65c26e02edf8f48bae', 'from': '0x50f69cea36c1c8eba0b7268cb2c63a9e55aea2bc', 'to': '0xb51eb4d493ee15b5e699ee197aeee0d050c55baf', 'value': 63.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0370cf2f3a11448000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T07:08:56.000Z'}}, {'blockNum': '0x619683', 'uniqueId': '0x0f47ae97c465643026780769c76b6a92dcb12bda98da8cd6cf65ed06f6c24104:log:131', 'hash': '0x0f47ae97c465643026780769c76b6a92dcb12bda98da8cd6cf65ed06f6c24104', 'from': '0x4238e233f9cf05fe09c6b778175c0cca8ca7fde3', 'to': '0xb51eb4d493ee15b5e699ee197aeee0d050c55baf', 'value': 80.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x045826ebe7c7078000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T07:18:22.000Z'}}, {'blockNum': '0x6196fb', 'uniqueId': '0x8dc306eaa300fdd3b0ad5171f2720fee2ec7c0044f198523faba3b9cf35723bd:log:114', 'hash': '0x8dc306eaa300fdd3b0ad5171f2720fee2ec7c0044f198523faba3b9cf35723bd', 'from': '0xe46b213cf417f84241cc07105f7b159aa0e56603', 'to': '0xb51eb4d493ee15b5e699ee197aeee0d050c55baf', 'value': 33.628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d2aea7d4cad60000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T07:47:28.000Z'}}, {'blockNum': '0x619735', 'uniqueId': '0x6e416e3539ccd9231108c84b7d6e85f06c9361142fa7bd53de4a453d333392db:log:2', 'hash': '0x6e416e3539ccd9231108c84b7d6e85f06c9361142fa7bd53de4a453d333392db', 'from': '0x9464564c4c1fb19fa80c119287d406ea2f50fb03', 'to': '0x200aa1d0ce9f38cf2ed53833f4a90c0223d13af8', 'value': 306.237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1099e460fca14c8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:00:39.000Z'}}, {'blockNum': '0x619786', 'uniqueId': '0x4a5db62f8ce8eef87438256da7bcd35e1e4e55bb7186317c1be10adffa71e4ef:log:8', 'hash': '0x4a5db62f8ce8eef87438256da7bcd35e1e4e55bb7186317c1be10adffa71e4ef', 'from': '0x191d5fc07b706936b3dbc00b8171da62d11765c7', 'to': '0x200aa1d0ce9f38cf2ed53833f4a90c0223d13af8', 'value': 279.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f2410ee34869a0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:21:08.000Z'}}, {'blockNum': '0x619796', 'uniqueId': '0xb9a0a9136237beb188c88c6b05d6d933e76dd2b4bb24b523db0da678522f9613:log:1', 'hash': '0xb9a0a9136237beb188c88c6b05d6d933e76dd2b4bb24b523db0da678522f9613', 'from': '0xff1b2367c621ffd6e4ad1e1a2a77dc897caedf3e', 'to': '0x200aa1d0ce9f38cf2ed53833f4a90c0223d13af8', 'value': 230.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0c7f1b8ea7170c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:24:09.000Z'}}, {'blockNum': '0x6197a1', 'uniqueId': '0x2a1849b26cffcaf6decc6130d8eb0639a118589a49c165cd54763c4df4c612f6:log:114', 'hash': '0x2a1849b26cffcaf6decc6130d8eb0639a118589a49c165cd54763c4df4c612f6', 'from': '0xf96d5e478438f68ad949b4ee71292fdf79d458c5', 'to': '0xb51eb4d493ee15b5e699ee197aeee0d050c55baf', 'value': 29.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01a051db8ef8f18000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:25:54.000Z'}}, {'blockNum': '0x6197c6', 'uniqueId': '0x7ee35d45be54defd75537695f17800c7c8c6fc43b12c581a135c5de56bfa4869:log:5', 'hash': '0x7ee35d45be54defd75537695f17800c7c8c6fc43b12c581a135c5de56bfa4869', 'from': '0x200aa1d0ce9f38cf2ed53833f4a90c0223d13af8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 816.057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2c3d10ddd83ef28000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T08:33:10.000Z'}}, {'blockNum': '0x6199d5', 'uniqueId': '0x5966f3d19e101f193a2c7af5911ddd70bd9698b9e5fc67c5ea79eaa0d5c4fc8d:log:9', 'hash': '0x5966f3d19e101f193a2c7af5911ddd70bd9698b9e5fc67c5ea79eaa0d5c4fc8d', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x045f831a24ef96b91f539b40c676e05e9e0a8d18', 'value': 2346.06681307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x7f2e37a87e121c0c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T10:33:55.000Z'}}, {'blockNum': '0x619a2f', 'uniqueId': '0x59731578c1657ea904e3658aabd7381de0c983d25ad51fea658c43470ed8c686:log:10', 'hash': '0x59731578c1657ea904e3658aabd7381de0c983d25ad51fea658c43470ed8c686', 'from': '0x045f831a24ef96b91f539b40c676e05e9e0a8d18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2346.06681307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x7f2e37a87e121c0c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T10:53:01.000Z'}}, {'blockNum': '0x619c7d', 'uniqueId': '0xbab1a4ef2f2aabc0c4cc3c0ad8e0622a3cc8314eb8df4ce0848bec8b0806ddc5:log:81', 'hash': '0xbab1a4ef2f2aabc0c4cc3c0ad8e0622a3cc8314eb8df4ce0848bec8b0806ddc5', 'from': '0xcc199806952b580ef7c4e7941f030fd9583d194e', 'to': '0xea94d4a1f59d197ba429f803392a2a1c9dfcf464', 'value': 283.843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f631ce8a2a5338000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T13:15:31.000Z'}}, {'blockNum': '0x619d2c', 'uniqueId': '0xe233e829210bf2982d5c0573b30270847f9daf727aac91a3e8d6394268f246ac:log:56', 'hash': '0xe233e829210bf2982d5c0573b30270847f9daf727aac91a3e8d6394268f246ac', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 220.34073759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0bf1d78d6c3f829c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T14:01:37.000Z'}}, {'blockNum': '0x619d3a', 'uniqueId': '0xe0ea28eaab0d51272d30f68f4d4caea9be788e4100f7eed3615dd2f69b13ca32:log:12', 'hash': '0xe0ea28eaab0d51272d30f68f4d4caea9be788e4100f7eed3615dd2f69b13ca32', 'from': '0x0861fca546225fbf8806986d211c8398f7457734', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 8569.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d08f17245033800000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T14:04:44.000Z'}}, {'blockNum': '0x619d89', 'uniqueId': '0xbe0dc127821371e956e666c61ad5d84cc6cd9d33448a82b41e2c19363d6e487f:log:38', 'hash': '0xbe0dc127821371e956e666c61ad5d84cc6cd9d33448a82b41e2c19363d6e487f', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8569.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d08f17245033800000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T14:23:34.000Z'}}, {'blockNum': '0x61a151', 'uniqueId': '0x3a538c6d21c15aa710d54ad9ae23c47559ec43dd7dad01208d46ec38e4fb3e2b:log:50', 'hash': '0x3a538c6d21c15aa710d54ad9ae23c47559ec43dd7dad01208d46ec38e4fb3e2b', 'from': '0x9b3fc93051e2ca9a0bff950fbed26a9a6865a027', 'to': '0x02c1f9f2c8707cdb50a5566737a3d5f78565ff9d', 'value': 14.849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xce123ed39dc68000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-25T18:05:21.000Z'}}]}}
Number of returned transfers:  23
Answer is complete
 
symbol              HC
group              BPG
date        2018-09-27
hour             14:00
exchange       binance
Name: 261, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
 Symbol: HC, Contract: 
Datetime timestamps:  2018-09-27 14:00:00 2018-09-27 02:00:00 2018-09-28 02:00:00
Unix timestamps:  1538006400.0 1538092800.0
Hex Block Numbers:  0x61befd 0x61d6be
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              BPG
date        2018-10-08
hour             14:00
exchange       binance
Name: 262, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2018-10-08 14:00:00 2018-10-08 02:00:00 2018-10-09 02:00:00
Unix timestamps:  1538956800.0 1539043200.0
Hex Block Numbers:  0x62c673 0x62de96
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x62c6a7', 'uniqueId': '0xf83d122a197743f9816563262c00a7cea115792c0755bf0538c4cd465c365f6c:log:130', 'hash': '0xf83d122a197743f9816563262c00a7cea115792c0755bf0538c4cd465c365f6c', 'from': '0x6b860c34427245cedf4982ab06897f0eccb398d3', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T00:09:24.000Z'}}, {'blockNum': '0x62c856', 'uniqueId': '0xddbf38816506734357a7467fc88d8819e50234c7d3089aa99b681e433f8a8d34:log:8', 'hash': '0xddbf38816506734357a7467fc88d8819e50234c7d3089aa99b681e433f8a8d34', 'from': '0xd1c956cb1abb88b6a2f3c30d0e8231e965fbc5ad', 'to': '0x281a89ccf9ab0df21194bf91f5647442c7ebabc8', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xf9ccd8a1c5080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T01:50:45.000Z'}}, {'blockNum': '0x62c951', 'uniqueId': '0x758b630fffdd8081275384aa686792c7f866ac5342b1fc0b6f6a750cb43dbb49:log:10', 'hash': '0x758b630fffdd8081275384aa686792c7f866ac5342b1fc0b6f6a750cb43dbb49', 'from': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13961.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02f4d911b370432a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T02:50:16.000Z'}}, {'blockNum': '0x62c9c9', 'uniqueId': '0x5f2ec7e7c980b50ddbe36394fc1d5e9f0cb61cb4fb355fc0490518ebdbe7ae37:log:27', 'hash': '0x5f2ec7e7c980b50ddbe36394fc1d5e9f0cb61cb4fb355fc0490518ebdbe7ae37', 'from': '0x4878b27ce3db2577549fff9dd14783d50a9a03a3', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:23:06.000Z'}}, {'blockNum': '0x62c9f0', 'uniqueId': '0x58c42fa3f69d9e392d959c77af7a2c9ac70eece0917f1afe7c891cfbe58df0e1:log:80', 'hash': '0x58c42fa3f69d9e392d959c77af7a2c9ac70eece0917f1afe7c891cfbe58df0e1', 'from': '0x319c71e1cd3e8927a5a00b00a2fb792f2a3b9c94', 'to': '0x24b1020d151042ef29187129353eb10719ad8a26', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:31:48.000Z'}}, {'blockNum': '0x62ca0a', 'uniqueId': '0x8a042fcabab1f18a3a2db483321a690b55c8c3d718da117fb5598fded019fc2a:log:85', 'hash': '0x8a042fcabab1f18a3a2db483321a690b55c8c3d718da117fb5598fded019fc2a', 'from': '0x70ee8b8d3be6194f09f8add5270821da664c4b41', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:38:08.000Z'}}, {'blockNum': '0x62ca55', 'uniqueId': '0x280727e1f47563ca0447f2bcc3c9369bfa8fddf430cf2b6af47ab01ecc3d2d11:log:165', 'hash': '0x280727e1f47563ca0447f2bcc3c9369bfa8fddf430cf2b6af47ab01ecc3d2d11', 'from': '0xedd3a1b631a720004288f11a439a3942449916ff', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:53:50.000Z'}}, {'blockNum': '0x62ca57', 'uniqueId': '0xfc3d1fb30b5125d58a6e5755bd23b593c2d0ec4034ab8ef4d1e5054ee0aa0a01:log:211', 'hash': '0xfc3d1fb30b5125d58a6e5755bd23b593c2d0ec4034ab8ef4d1e5054ee0aa0a01', 'from': '0xe2987038f5b225df57c47967abe2faedcafb2e3f', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:53:57.000Z'}}, {'blockNum': '0x62ca58', 'uniqueId': '0x3bb753a4f861d77f0fb84073aaaaa268385d5eebfb98dd842405f2200f8543cc:log:48', 'hash': '0x3bb753a4f861d77f0fb84073aaaaa268385d5eebfb98dd842405f2200f8543cc', 'from': '0xb14cdf3fb45e1ba4cf38c8b88408a695a384b8f7', 'to': '0x8ef634eeddd0f2af6f8237e7908350f8987da710', 'value': 175.98829331903679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x098a54045904704571', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:54:35.000Z'}}, {'blockNum': '0x62ca61', 'uniqueId': '0x7f2000b5a9a7c1b463be227870c7c1aa0f9a1fae495ba81c081636b97a3e4a07:log:53', 'hash': '0x7f2000b5a9a7c1b463be227870c7c1aa0f9a1fae495ba81c081636b97a3e4a07', 'from': '0x906d15e7535ad702a5d7651d587bfc3250ca74fc', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:56:24.000Z'}}, {'blockNum': '0x62ca68', 'uniqueId': '0xaf0dd861843839bea2e945f134ddb917d65888707c42f736834a573a7ef254f4:log:133', 'hash': '0xaf0dd861843839bea2e945f134ddb917d65888707c42f736834a573a7ef254f4', 'from': '0xeb10f3d4bd507ccd7d27a69efbb3e7d20c33cc28', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:57:45.000Z'}}, {'blockNum': '0x62ca69', 'uniqueId': '0x59196c8e0448d1fb0fb60f29e430b983759cd57e3ded4c53015a4f54a490fb61:log:114', 'hash': '0x59196c8e0448d1fb0fb60f29e430b983759cd57e3ded4c53015a4f54a490fb61', 'from': '0xf9040ef292fa301f4be0a3d32ad0b108b687bc55', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T03:58:00.000Z'}}, {'blockNum': '0x62cab7', 'uniqueId': '0x054b34ce7fcac9cd60d6503f2f08cbb06d9ec3c21667fad8d955eb59205dbb96:log:32', 'hash': '0x054b34ce7fcac9cd60d6503f2f08cbb06d9ec3c21667fad8d955eb59205dbb96', 'from': '0x8ef634eeddd0f2af6f8237e7908350f8987da710', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 175.98829331903679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x098a54045904704571', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:14:54.000Z'}}, {'blockNum': '0x62cac2', 'uniqueId': '0x0fd53b9a2962fe956ccb90705b25cd637044f9696023f5554a4c4f340914dc49:log:77', 'hash': '0x0fd53b9a2962fe956ccb90705b25cd637044f9696023f5554a4c4f340914dc49', 'from': '0xaafc549118ecb175e2183c28bfd7793138eb56bf', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:16:08.000Z'}}, {'blockNum': '0x62cac8', 'uniqueId': '0x85a9bd5ae8b5a656c0e667d293e8826bbaebc1ea01dd3a4f6fa3d9d1bc9782fe:log:1', 'hash': '0x85a9bd5ae8b5a656c0e667d293e8826bbaebc1ea01dd3a4f6fa3d9d1bc9782fe', 'from': '0x9e20794926c3f2eb262df404d95ee20a02322adf', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1367.675166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4a244e45393167dfff', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:18:37.000Z'}}, {'blockNum': '0x62cb17', 'uniqueId': '0xce9377d596c4bfc254002ec852032ca49ed2bced92b788496b77e8140ce3d0a4:log:8', 'hash': '0xce9377d596c4bfc254002ec852032ca49ed2bced92b788496b77e8140ce3d0a4', 'from': '0xd20936150259c93da423f5a6f27b0826587e1ae9', 'to': '0x788b5b85fb29d0d979747e5a80c2fd68bf9cd5ff', 'value': 3688.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc7f57826033a1b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:36:04.000Z'}}, {'blockNum': '0x62cb2c', 'uniqueId': '0xfe05a33c16bfe55f4162da4b7a2c43d37ce14f461698e9f4c37fc351ab15982c:log:239', 'hash': '0xfe05a33c16bfe55f4162da4b7a2c43d37ce14f461698e9f4c37fc351ab15982c', 'from': '0x404ee5b0d530955aefac218036b2f7ae2c40b7ad', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:39:52.000Z'}}, {'blockNum': '0x62cb36', 'uniqueId': '0xa50060238d0c57a6a5d2452dab16e788f1fdd4db406732a797739d91fb3dbaf2:log:84', 'hash': '0xa50060238d0c57a6a5d2452dab16e788f1fdd4db406732a797739d91fb3dbaf2', 'from': '0xaf6c358b0c26ce68150e21c777a4fe8e87e226c5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:41:56.000Z'}}, {'blockNum': '0x62cb4c', 'uniqueId': '0x86cb1035201cc06df6f7b09aa42cd561d6262fc12bf41e388189bfc487fe548f:log:74', 'hash': '0x86cb1035201cc06df6f7b09aa42cd561d6262fc12bf41e388189bfc487fe548f', 'from': '0xd432a817b1a60868bbe92ac746c25e3aef913ca5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:19.000Z'}}, {'blockNum': '0x62cb4d', 'uniqueId': '0xae36636aeea8fbc42b72a4e39c0f1234fa1c7b3fd89e0bb7ab20077902b66ff7:log:180', 'hash': '0xae36636aeea8fbc42b72a4e39c0f1234fa1c7b3fd89e0bb7ab20077902b66ff7', 'from': '0x42b24a23ce18d1af71e167779d5ffe66689e3950', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:28.000Z'}}, {'blockNum': '0x62cb4d', 'uniqueId': '0x64375e1b2fc010253b4a6ab8c3125113e3db1fbdc9a029234a5f02689c8ea351:log:181', 'hash': '0x64375e1b2fc010253b4a6ab8c3125113e3db1fbdc9a029234a5f02689c8ea351', 'from': '0x6ec713144860f5c83d1469164cbd68fdeed625fd', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:28.000Z'}}, {'blockNum': '0x62cb4d', 'uniqueId': '0x67187e0ccc9e212659bf87e59b3f9d6a56da551767b7eee8d9e514925ff02cc7:log:209', 'hash': '0x67187e0ccc9e212659bf87e59b3f9d6a56da551767b7eee8d9e514925ff02cc7', 'from': '0xf6e1b356ebf1b125f9dd72e4f6edc9a2165f3a33', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:28.000Z'}}, {'blockNum': '0x62cb4f', 'uniqueId': '0x6d0d1911e2379b7005ceb3e220b8db986411af35983cda90a5041ba16503868f:log:177', 'hash': '0x6d0d1911e2379b7005ceb3e220b8db986411af35983cda90a5041ba16503868f', 'from': '0x68d018a59be4ce231e258322d9a5f9e3aaec1eaa', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:44.000Z'}}, {'blockNum': '0x62cb4f', 'uniqueId': '0x95d8cf0512cf28dfa8f56b2089475790cadece06cad16be01276da2955377b72:log:180', 'hash': '0x95d8cf0512cf28dfa8f56b2089475790cadece06cad16be01276da2955377b72', 'from': '0xcf73c2f39abeac9377e646c4a32a818a08a64b1e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:44.000Z'}}, {'blockNum': '0x62cb4f', 'uniqueId': '0x238b342d763177808a9a454f8d888ddc6fe40e1e9e6ec1a6ac536853047e2800:log:185', 'hash': '0x238b342d763177808a9a454f8d888ddc6fe40e1e9e6ec1a6ac536853047e2800', 'from': '0x8fa6ddbb5505aa6299c7034e29758fa1198e5f7c', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:44.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xec718862005da0f1fc2f3e4e95979fde95a257ebd068ca01f679bdc6f1eb7813:log:209', 'hash': '0xec718862005da0f1fc2f3e4e95979fde95a257ebd068ca01f679bdc6f1eb7813', 'from': '0x456131466ab9632fd2e9bdfb774a2e6b5b28c633', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x1c41aa695a0731e848c6d81b30aceb7c31461c6ae8e3c4cea02e6be24c579971:log:219', 'hash': '0x1c41aa695a0731e848c6d81b30aceb7c31461c6ae8e3c4cea02e6be24c579971', 'from': '0x09e8b58e47317f7a5cfafc4cdff8a2e2a8edef5f', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xff136d62c6666ac2413a7d20869c2d2c657dac2f77d3fafc9b92bf3224f76e5d:log:222', 'hash': '0xff136d62c6666ac2413a7d20869c2d2c657dac2f77d3fafc9b92bf3224f76e5d', 'from': '0x6cd9774fd55e508b734d2f469f0c25a7913a48c3', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x5ccd9d770559fc15d8cfecb6be41ef917f1e27cbdc468d50e2e49c4dec37e785:log:230', 'hash': '0x5ccd9d770559fc15d8cfecb6be41ef917f1e27cbdc468d50e2e49c4dec37e785', 'from': '0xea98b1b68778e3aa4e2bdd95b1a13d83037abfe2', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xa156a9c6d1ced1d617aec2749f177170fce5925391dcc64adbe71fc7fa46a341:log:234', 'hash': '0xa156a9c6d1ced1d617aec2749f177170fce5925391dcc64adbe71fc7fa46a341', 'from': '0x692c51788919d196e02f900ec15e0087eb594a75', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xeabaa8f8694a63d8894d4f8b3fd93ef58cc89cf3cc870775cb51f0f90973dcd4:log:237', 'hash': '0xeabaa8f8694a63d8894d4f8b3fd93ef58cc89cf3cc870775cb51f0f90973dcd4', 'from': '0x181b98123495dca34a436df15c6e8d1f762d3bba', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x2077ce27d1651019422b28305de4f6e2a688946a09409729c48160fc034a6f0e:log:243', 'hash': '0x2077ce27d1651019422b28305de4f6e2a688946a09409729c48160fc034a6f0e', 'from': '0xa73350c83720a7df7851a8bc7708ea2aa76dd16e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x9fa9a7d7e36e4bb3b0820c50c81d55e63c426f60adce001ead06705b512adb0a:log:247', 'hash': '0x9fa9a7d7e36e4bb3b0820c50c81d55e63c426f60adce001ead06705b512adb0a', 'from': '0x0ff9c926bdfd3ff1fdccd7f235e53042c316cee0', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x7f05db10c8dc8aef7287235eaf632df6c9d856371a3c5d38e229ca3315016d08:log:251', 'hash': '0x7f05db10c8dc8aef7287235eaf632df6c9d856371a3c5d38e229ca3315016d08', 'from': '0x5251d6b1c60d06d0f16aaa1527b7dbdc706635a2', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xc79be74cb79e6360de8117bda0eccc6e245dd00f00ca50be5604638277b104bf:log:254', 'hash': '0xc79be74cb79e6360de8117bda0eccc6e245dd00f00ca50be5604638277b104bf', 'from': '0x3c4e4f5f863696840d752f7f0d5c7fdb48705c56', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x492f0afa1b89507dd7c0a809e11e7a14d6ae2fe1b1f301d1bfcfe66d7c993d9a:log:255', 'hash': '0x492f0afa1b89507dd7c0a809e11e7a14d6ae2fe1b1f301d1bfcfe66d7c993d9a', 'from': '0x14a77f12913f48ca2b8bd829e7bb72cb3acbfa7e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0xe0ef3cb1cd82b3b348db5defcb3c5d387992c6beed99da69dd042dbcb5895db3:log:260', 'hash': '0xe0ef3cb1cd82b3b348db5defcb3c5d387992c6beed99da69dd042dbcb5895db3', 'from': '0x13ab35de2911e0b3cfab4c2a36cd207561ee1142', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb50', 'uniqueId': '0x2b511bed51c41424c28887d1900eefd48c636b506f0342444bdfd5d6463ebb03:log:266', 'hash': '0x2b511bed51c41424c28887d1900eefd48c636b506f0342444bdfd5d6463ebb03', 'from': '0x83170f97cceb3e9b14101d1c1eb85e845e83a9bc', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:47:47.000Z'}}, {'blockNum': '0x62cb5b', 'uniqueId': '0x718a2c20bdbf4ebad8f010fa5ebc4ccfd05af3b4c7d63a8f2963823e16d92f44:log:165', 'hash': '0x718a2c20bdbf4ebad8f010fa5ebc4ccfd05af3b4c7d63a8f2963823e16d92f44', 'from': '0x8a84f199fad22a21be25f1d2fb5b17c3b1466727', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:18.000Z'}}, {'blockNum': '0x62cb5c', 'uniqueId': '0x452f4ed3afd2546a6f70ae2061856d3f59a3176a4eb740136187f4b65b42989b:log:167', 'hash': '0x452f4ed3afd2546a6f70ae2061856d3f59a3176a4eb740136187f4b65b42989b', 'from': '0xdef37a840ca6758e42149c54f8df63553bb0e871', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:26.000Z'}}, {'blockNum': '0x62cb5c', 'uniqueId': '0x6382638d8fe3a007877ff44d468c8112f8a499698424f38e70ebef71421ee2f4:log:174', 'hash': '0x6382638d8fe3a007877ff44d468c8112f8a499698424f38e70ebef71421ee2f4', 'from': '0xf408ff8aa32f69828c7a4d47e43068e8e67a69b2', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:26.000Z'}}, {'blockNum': '0x62cb5c', 'uniqueId': '0x7fe13bde1e9e5b237465d0945923999970846d0193c491579cebf60e553cbebe:log:186', 'hash': '0x7fe13bde1e9e5b237465d0945923999970846d0193c491579cebf60e553cbebe', 'from': '0x85cd3ecffbd9c8982de2160ec27b922c6d223a3a', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:26.000Z'}}, {'blockNum': '0x62cb5c', 'uniqueId': '0x6e5daaee12d92aac98ffb708b056b9dd87e4fed6e01997347048141f66289d86:log:213', 'hash': '0x6e5daaee12d92aac98ffb708b056b9dd87e4fed6e01997347048141f66289d86', 'from': '0xa40fdcea03d93049fe0662f3cc7c51ba25cf776e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:50:26.000Z'}}, {'blockNum': '0x62cb61', 'uniqueId': '0x46ab8a27e22598afd487d762ba428b5df2ab40e2a54fe4c0f9e67792692cc077:log:120', 'hash': '0x46ab8a27e22598afd487d762ba428b5df2ab40e2a54fe4c0f9e67792692cc077', 'from': '0x5fcbbaec05fbb0aad98654eb872cc5ccceb8cde9', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:51:35.000Z'}}, {'blockNum': '0x62cb61', 'uniqueId': '0xd901c86403e69a60a678f080dbc65e77d23de9156af211e411bdaaa3087f04d5:log:168', 'hash': '0xd901c86403e69a60a678f080dbc65e77d23de9156af211e411bdaaa3087f04d5', 'from': '0xdd4c34ba268bb7805e3331a14a7b6f48fa2dedef', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:51:35.000Z'}}, {'blockNum': '0x62cb6a', 'uniqueId': '0x8e875b7ddae02b3eff641e7ed131b8c042c4ed76be79ea628b357c6b53bc6b2c:log:43', 'hash': '0x8e875b7ddae02b3eff641e7ed131b8c042c4ed76be79ea628b357c6b53bc6b2c', 'from': '0x788b5b85fb29d0d979747e5a80c2fd68bf9cd5ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3688.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc7f57826033a1b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T04:54:34.000Z'}}, {'blockNum': '0x62cbfe', 'uniqueId': '0xd65becb7ac9a448e86207b2b19cb73aaa3a05e3ec39ca7a0d9ba7320d91223e2:log:168', 'hash': '0xd65becb7ac9a448e86207b2b19cb73aaa3a05e3ec39ca7a0d9ba7320d91223e2', 'from': '0x8466593551f9328623e8b3d5e2d3a61cd32ba6e5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T05:32:33.000Z'}}, {'blockNum': '0x62cbff', 'uniqueId': '0xd628de8b30916eb3dd32d643bf7e8f8785fa06afed33e5e0dd4cabd4d5db35f8:log:168', 'hash': '0xd628de8b30916eb3dd32d643bf7e8f8785fa06afed33e5e0dd4cabd4d5db35f8', 'from': '0x170d6cc78ddac2cf0cbdf34cd262977ddae42a96', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T05:32:54.000Z'}}, {'blockNum': '0x62cc61', 'uniqueId': '0x1130ceefa80f367d36902fc55caf18db92dd24dbbe88900f509c014a17aef567:log:199', 'hash': '0x1130ceefa80f367d36902fc55caf18db92dd24dbbe88900f509c014a17aef567', 'from': '0x9cacfe4bdf865c8ee125e41b96bcc7c59ff450ef', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T05:58:33.000Z'}}, {'blockNum': '0x62cc70', 'uniqueId': '0x5062e8395c0b22f7b67ef705e8e0bbee5d30475f5f1f0ffa44653298f4922520:log:175', 'hash': '0x5062e8395c0b22f7b67ef705e8e0bbee5d30475f5f1f0ffa44653298f4922520', 'from': '0xba30ed1cf5a4e341c3f59b07f4fce3eaacaeffc6', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T06:01:28.000Z'}}, {'blockNum': '0x62cd71', 'uniqueId': '0xba47c388dea2472911fc90f15f90638121a5514b67e9a2510cee658cb0596900:log:151', 'hash': '0xba47c388dea2472911fc90f15f90638121a5514b67e9a2510cee658cb0596900', 'from': '0x09c4c337a057699579b147afd1b98658a60b11c5', 'to': '0xe3fdc85610dbe3df3ddcb006f1425a79dd893640', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f8003c', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:00:57.000Z'}}, {'blockNum': '0x62cd76', 'uniqueId': '0x301fbe7051ebd0ee4951921685aa3ffedd82af839985ea710ab8fc582721e8db:log:21', 'hash': '0x301fbe7051ebd0ee4951921685aa3ffedd82af839985ea710ab8fc582721e8db', 'from': '0xae630c3ba15023b5b1ce8beb09e8f638a743965a', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:01:44.000Z'}}, {'blockNum': '0x62cd7a', 'uniqueId': '0xb58120cb7eb43918fabf3eaf6d707d0ed023c067cdf9a8684181f2248b397a6a:log:16', 'hash': '0xb58120cb7eb43918fabf3eaf6d707d0ed023c067cdf9a8684181f2248b397a6a', 'from': '0x4b07a069f6239a566990a98a4af29b039dd2ada3', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:02:31.000Z'}}, {'blockNum': '0x62cd8c', 'uniqueId': '0x3fa235d5f8ba1843a6fc7416b184e0d515a8a820f1fcb7bfac13c7002817ab07:log:146', 'hash': '0x3fa235d5f8ba1843a6fc7416b184e0d515a8a820f1fcb7bfac13c7002817ab07', 'from': '0x1bd9eb1ff8fa8e3766be38466e2fc7b8e1d067b9', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:06:09.000Z'}}, {'blockNum': '0x62cd8d', 'uniqueId': '0xd622c615d00f168deaab7f91813f9486abc316d6094f50189932b324f89d0378:log:118', 'hash': '0xd622c615d00f168deaab7f91813f9486abc316d6094f50189932b324f89d0378', 'from': '0x7247cb260876de3aa9194b7291a6a47f6c63acff', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:06:21.000Z'}}, {'blockNum': '0x62cd9a', 'uniqueId': '0xfa1c5240b5632902997a086c1e62a6c99934eeb003d72fd38a1316d75af96251:log:102', 'hash': '0xfa1c5240b5632902997a086c1e62a6c99934eeb003d72fd38a1316d75af96251', 'from': '0xa73b2740d00a691f19d9f011c8a35a9bd77ccf8a', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:10:22.000Z'}}, {'blockNum': '0x62cd9f', 'uniqueId': '0xe0a1ba54def2bb9e39e5827a03dd1087806eba42c30b04e1a89c300e4bec3e21:log:152', 'hash': '0xe0a1ba54def2bb9e39e5827a03dd1087806eba42c30b04e1a89c300e4bec3e21', 'from': '0x56562dfb8bc53da973b93f0e3dc93ec298aa7826', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:11:16.000Z'}}, {'blockNum': '0x62cda1', 'uniqueId': '0x7a140ba5d5ada44b18762bc335c3f48dbf9542dcdecccd70ead6c7304f4d119d:log:70', 'hash': '0x7a140ba5d5ada44b18762bc335c3f48dbf9542dcdecccd70ead6c7304f4d119d', 'from': '0xe3274f175f7732196759933cc54b0033892286d6', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:11:42.000Z'}}, {'blockNum': '0x62cdaa', 'uniqueId': '0x81d414f1ec38139fca5c3720c1efdf91391ab7b85f2f637f992a894f4b1d605c:log:148', 'hash': '0x81d414f1ec38139fca5c3720c1efdf91391ab7b85f2f637f992a894f4b1d605c', 'from': '0xae9bca307cb6f9bf30ab91c8abada601feb65bb5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:13:46.000Z'}}, {'blockNum': '0x62cdbf', 'uniqueId': '0x8beebec3b0e0de54f55a0b7cade6cfcaeeb0be090e3527538f1b3389360bebb1:log:18', 'hash': '0x8beebec3b0e0de54f55a0b7cade6cfcaeeb0be090e3527538f1b3389360bebb1', 'from': '0xe3fdc85610dbe3df3ddcb006f1425a79dd893640', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f8003c', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:19:35.000Z'}}, {'blockNum': '0x62cdc0', 'uniqueId': '0x0d920905d44a3a0c20b94b2d61ee2f9ac9468ae422d0bb9a351400c0516c45ad:log:104', 'hash': '0x0d920905d44a3a0c20b94b2d61ee2f9ac9468ae422d0bb9a351400c0516c45ad', 'from': '0x6487e120100da679751a400bf63d376c0eddf5db', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:19:54.000Z'}}, {'blockNum': '0x62cdc3', 'uniqueId': '0x38fd42aed717bb44eb33b371e747e5c387390e8a68acefc9fe94c499e0fe307b:log:59', 'hash': '0x38fd42aed717bb44eb33b371e747e5c387390e8a68acefc9fe94c499e0fe307b', 'from': '0xa61f3b0ea2864bc2c5251da59cfb000eb5c3b2ff', 'to': '0xf087cb80f55130e46660a56e42762beef64088c5', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:20:41.000Z'}}, {'blockNum': '0x62cdca', 'uniqueId': '0xa75f252474a2bcc9debbddca6210dff98121a7939c80ba2a558f5cc5ce112020:log:151', 'hash': '0xa75f252474a2bcc9debbddca6210dff98121a7939c80ba2a558f5cc5ce112020', 'from': '0x5ad702b70a9fb55538b8f8dc4b5e6fd8e38d0572', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:21:39.000Z'}}, {'blockNum': '0x62cdcb', 'uniqueId': '0x1abd87c5251c148273b5a9b9ce21f6b531da04cf87b39fbd2d59145ca52558c6:log:130', 'hash': '0x1abd87c5251c148273b5a9b9ce21f6b531da04cf87b39fbd2d59145ca52558c6', 'from': '0x66bf0d8a4cbba13a841441b983b971a082894634', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:22:00.000Z'}}, {'blockNum': '0x62cdd3', 'uniqueId': '0x076579152b75bcdfcb277c726098a4c0bdadd5550dddd7f7ec78200e0e383436:log:196', 'hash': '0x076579152b75bcdfcb277c726098a4c0bdadd5550dddd7f7ec78200e0e383436', 'from': '0xe0f30af507464c2615c7541d2129fd9b503b3a41', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:23:51.000Z'}}, {'blockNum': '0x62cdd9', 'uniqueId': '0x305d60f3754be42cd4d9ea06810053a63dfa4340fcb5cc2b9dc6f68781ac6c1f:log:186', 'hash': '0x305d60f3754be42cd4d9ea06810053a63dfa4340fcb5cc2b9dc6f68781ac6c1f', 'from': '0x7f29fecca6e9cb9fc8d512b79b3ca40d01740e3e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:24:39.000Z'}}, {'blockNum': '0x62cdfa', 'uniqueId': '0xf136308887f2aa7bac71bf11692f27353c340f295a6564d28847413fee07f17f:log:105', 'hash': '0xf136308887f2aa7bac71bf11692f27353c340f295a6564d28847413fee07f17f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xcf4e77a9c99d7b07aff272e59428f1e8fb1af197', 'value': 32.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01bf47f63cf6d70000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T07:32:09.000Z'}}, {'blockNum': '0x62cf12', 'uniqueId': '0x5bd2a09ec24583d35f1eff1fb6c90fe224a1e9eb9f51439d9140a76d42e91f1d:log:89', 'hash': '0x5bd2a09ec24583d35f1eff1fb6c90fe224a1e9eb9f51439d9140a76d42e91f1d', 'from': '0x35eacf4af3670e566a74fe8669e6a1f108cd7a49', 'to': '0x17cd376dba5fb8403676855b5e20a74f27e61bec', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T08:35:36.000Z'}}, {'blockNum': '0x62cf66', 'uniqueId': '0x6c4e8aa7fc47932978edd7d90923b9fc01b5cc86101e57932515451d25dd4c3b:log:5', 'hash': '0x6c4e8aa7fc47932978edd7d90923b9fc01b5cc86101e57932515451d25dd4c3b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x77476dabfbb1e73e1f7783e60386200b88f5ad06', 'value': 1083.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3ab86b74f5df200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T08:55:13.000Z'}}, {'blockNum': '0x62cffb', 'uniqueId': '0xdfb6e3168349f269fb8a6261230c62aa2e5180ea507d6d8a483fc55d9d651187:log:52', 'hash': '0xdfb6e3168349f269fb8a6261230c62aa2e5180ea507d6d8a483fc55d9d651187', 'from': '0xf4ff63af04d0ba0cef0ee98c288e41f6c4f122d1', 'to': '0x21c628776232cdc6356aaed0f0a749e20858ee1a', 'value': 211.54541519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b77c84a4cb6795c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T09:30:48.000Z'}}, {'blockNum': '0x62d05e', 'uniqueId': '0x7a76d3bd6d1901f238526774a239245e448a6139e9e41b63813100a233d2d5af:log:81', 'hash': '0x7a76d3bd6d1901f238526774a239245e448a6139e9e41b63813100a233d2d5af', 'from': '0x21c628776232cdc6356aaed0f0a749e20858ee1a', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 211.54541519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b77c84a4cb6795c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T09:51:35.000Z'}}, {'blockNum': '0x62d102', 'uniqueId': '0x540afbcc74ed29f61ff97805ab342e0d56ed85ac80586f28852acf858abe50d2:log:67', 'hash': '0x540afbcc74ed29f61ff97805ab342e0d56ed85ac80586f28852acf858abe50d2', 'from': '0xca0ace22d6cc5aed01e3c98483b11e401f36299d', 'to': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T10:27:41.000Z'}}, {'blockNum': '0x62d1f8', 'uniqueId': '0x90ebd169b5adad8f559f116b7f3b5b57b003f9e0842f8f854ac001a060af2f35:log:86', 'hash': '0x90ebd169b5adad8f559f116b7f3b5b57b003f9e0842f8f854ac001a060af2f35', 'from': '0x1cc05be4d3c74653fae1b857b9028f4604854bb0', 'to': '0x4d21bd9db123ed09f125f30057a17003b2751a7c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T11:24:37.000Z'}}, {'blockNum': '0x62d2b7', 'uniqueId': '0xdc0858719b8ea5236231d7a55806bbdfee09a4b005fd14c930fed3db43b268fc:log:0', 'hash': '0xdc0858719b8ea5236231d7a55806bbdfee09a4b005fd14c930fed3db43b268fc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 638.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2298cddeabe64c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T12:07:05.000Z'}}, {'blockNum': '0x62d322', 'uniqueId': '0xf21a264b2c02e2e928424c2aecf1b686c930007882c96615619fd9d007074d19:log:15', 'hash': '0xf21a264b2c02e2e928424c2aecf1b686c930007882c96615619fd9d007074d19', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T12:34:41.000Z'}}, {'blockNum': '0x62d349', 'uniqueId': '0x404b4d8331886248d52b64148b4199fa534d4b9722647d4920f16968ad7677c4:log:17', 'hash': '0x404b4d8331886248d52b64148b4199fa534d4b9722647d4920f16968ad7677c4', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T12:44:45.000Z'}}, {'blockNum': '0x62d42f', 'uniqueId': '0xd49ea03f17d3a63342f7c655d51afb9993ba9d6819e1dd29fa68f201d29e99da:log:7', 'hash': '0xd49ea03f17d3a63342f7c655d51afb9993ba9d6819e1dd29fa68f201d29e99da', 'from': '0xa7f4f7d0a679189923322749ab94dffa845588ce', 'to': '0x162c3cda1de326bfed4c0264a2450da359157f3d', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T13:40:36.000Z'}}, {'blockNum': '0x62d46e', 'uniqueId': '0x8739ab00984df58734b6aa7449a604c87ca463f059f7bc3638ad10fed7127c3b:log:102', 'hash': '0x8739ab00984df58734b6aa7449a604c87ca463f059f7bc3638ad10fed7127c3b', 'from': '0x4c4dc8afd6af7e691d16871d61ede9f868e08de9', 'to': '0x5ced21efb2f2e7c45d9093275dc62b9fb7870e5c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T13:53:48.000Z'}}, {'blockNum': '0x62d472', 'uniqueId': '0xc88e06920a60df106469a45e9de84c5997f80b9bb2484892f6eb33fee6672185:log:6', 'hash': '0xc88e06920a60df106469a45e9de84c5997f80b9bb2484892f6eb33fee6672185', 'from': '0x162c3cda1de326bfed4c0264a2450da359157f3d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T13:54:20.000Z'}}, {'blockNum': '0x62d4fd', 'uniqueId': '0x3f4bc98c7a6ea7aeddb5820d1648f45483fff5841ff6d4682bc722a8988bb024:log:78', 'hash': '0x3f4bc98c7a6ea7aeddb5820d1648f45483fff5841ff6d4682bc722a8988bb024', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T14:22:56.000Z'}}, {'blockNum': '0x62d52a', 'uniqueId': '0x12b64b937283c5bdba74406385576b40610a0de9404cec2f362c109bacf0e3b6:log:6', 'hash': '0x12b64b937283c5bdba74406385576b40610a0de9404cec2f362c109bacf0e3b6', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T14:34:18.000Z'}}, {'blockNum': '0x62d55a', 'uniqueId': '0x8dd92e626765abbf81e8143c34ddc84967089645284c045d624e936a4448fedb:log:1', 'hash': '0x8dd92e626765abbf81e8143c34ddc84967089645284c045d624e936a4448fedb', 'from': '0xc8f33a3833f532241e8d0598b2387355688d39c3', 'to': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T14:44:41.000Z'}}, {'blockNum': '0x62d5d8', 'uniqueId': '0x7bf812501573611a030c8b225b367bcf004b3496514d600f4b1a3cb7e9623d57:log:94', 'hash': '0x7bf812501573611a030c8b225b367bcf004b3496514d600f4b1a3cb7e9623d57', 'from': '0x4b6703b85936706a28879e5705eed8a4dcf176d9', 'to': '0xddab07811727d1049f9fe69c4d7f2a453591d090', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T15:16:58.000Z'}}, {'blockNum': '0x62d65b', 'uniqueId': '0x11eb13d4d240b25455722d6025587e61322a4810412a43ba20a494f53995668f:log:16', 'hash': '0x11eb13d4d240b25455722d6025587e61322a4810412a43ba20a494f53995668f', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x83cea1ffc8010d0ebcb7e8eca0bf3c5a70dfb7bc', 'value': 104.3102161063436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05a79854e3b6d706cd', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T15:52:38.000Z'}}, {'blockNum': '0x62d6b3', 'uniqueId': '0x13cba09a1f0b71561c0516ffff2f40bebd8ee97b2a02b1eec246b0f6a5fee887:log:161', 'hash': '0x13cba09a1f0b71561c0516ffff2f40bebd8ee97b2a02b1eec246b0f6a5fee887', 'from': '0x5fb94f778835580ce1891077c568808301cc3da8', 'to': '0xfd615d01836040c3b5c57f1fce07628f393968f0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:14:08.000Z'}}, {'blockNum': '0x62d6bf', 'uniqueId': '0xb2a76a65d3628ef294f2a8c4f5dfd144ffa2d86158cc6e3c3aa63dd1241b1b77:log:106', 'hash': '0xb2a76a65d3628ef294f2a8c4f5dfd144ffa2d86158cc6e3c3aa63dd1241b1b77', 'from': '0x543d399d8cb25e3e119b0baf41543f66e2af56f3', 'to': '0xd3d50a44743fb5bdc03b51c383dfeacab2f4c067', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:16:20.000Z'}}, {'blockNum': '0x62d6d8', 'uniqueId': '0x4c571e46c7fdb79e60ec04bfa06efe24ef9ca947c45a071f52d9f7330c49e24a:log:53', 'hash': '0x4c571e46c7fdb79e60ec04bfa06efe24ef9ca947c45a071f52d9f7330c49e24a', 'from': '0x83cea1ffc8010d0ebcb7e8eca0bf3c5a70dfb7bc', 'to': '0xa32a20138c2ec37068ceec2acaeb7c2692da5156', 'value': 104.31021611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05a79854e490c74c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:22:29.000Z'}}, {'blockNum': '0x62d6fb', 'uniqueId': '0xc788326f42dcad73de9d7b9cbd50ca210e488face15006a8db499949b4871814:log:16', 'hash': '0xc788326f42dcad73de9d7b9cbd50ca210e488face15006a8db499949b4871814', 'from': '0xe32c17795dfebf4e2a3bd7cd2b3dab26f5500e95', 'to': '0x575b5c11ef956e03f9317eedab1a23d4ae1cf04b', 'value': 339.542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x126817820785af0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:34:09.000Z'}}, {'blockNum': '0x62d72b', 'uniqueId': '0xd569719ccda7c8c1369ab63c000d9506335ce505de9791d07848621a7c52d724:log:30', 'hash': '0xd569719ccda7c8c1369ab63c000d9506335ce505de9791d07848621a7c52d724', 'from': '0xb58f5bc5422cf4799ffa35926c712ff40920e993', 'to': '0xbfb28f4735ea3a978de47de90ce9e069e4596798', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:43:30.000Z'}}, {'blockNum': '0x62d72e', 'uniqueId': '0x29a8c49edb02a9e61c4cc929b6cc15381f335f9bbb4bea6667685525a1064838:log:12', 'hash': '0x29a8c49edb02a9e61c4cc929b6cc15381f335f9bbb4bea6667685525a1064838', 'from': '0x575b5c11ef956e03f9317eedab1a23d4ae1cf04b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 339.542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x126817820785af0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:43:45.000Z'}}, {'blockNum': '0x62d72e', 'uniqueId': '0x89c3048da3037bd0b35b059257381f8ecbca50fb7d34514df0fa4fb931bd7798:log:20', 'hash': '0x89c3048da3037bd0b35b059257381f8ecbca50fb7d34514df0fa4fb931bd7798', 'from': '0xa32a20138c2ec37068ceec2acaeb7c2692da5156', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 104.31021611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05a79854e490c74c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T16:43:45.000Z'}}, {'blockNum': '0x62d7bd', 'uniqueId': '0x4f54120e18bca01cd60669cfbf8f7b15335f0b75978cb94ca84079e3c35e9113:log:10', 'hash': '0x4f54120e18bca01cd60669cfbf8f7b15335f0b75978cb94ca84079e3c35e9113', 'from': '0xbfb28f4735ea3a978de47de90ce9e069e4596798', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T17:14:19.000Z'}}, {'blockNum': '0x62d891', 'uniqueId': '0xf168ce624765b9567beb10a8d593be1f32155045a2e1ad3546181a658d3bcb5e:log:18', 'hash': '0xf168ce624765b9567beb10a8d593be1f32155045a2e1ad3546181a658d3bcb5e', 'from': '0xbb3a202f1e0815ab6b998eef75d81800f7106ace', 'to': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T18:02:22.000Z'}}, {'blockNum': '0x62d966', 'uniqueId': '0x1bbb190d06f8fc0cc6d6064ecf004c38b26342a19c21bebc321f95d0c4a16021:log:163', 'hash': '0x1bbb190d06f8fc0cc6d6064ecf004c38b26342a19c21bebc321f95d0c4a16021', 'from': '0xe5518369422abe268afdd8cf38f20a546903b60b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T18:48:45.000Z'}}, {'blockNum': '0x62d97b', 'uniqueId': '0x4851844ad0494171413169a269c44ad3d3df54ae1489cd46352d1dc1f7217590:log:148', 'hash': '0x4851844ad0494171413169a269c44ad3d3df54ae1489cd46352d1dc1f7217590', 'from': '0xb815aed19ab2aa804b1253580fcff31bd2f667ed', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T18:53:33.000Z'}}, {'blockNum': '0x62d986', 'uniqueId': '0xcda2a47a8af65bdd1bcc267236acec4904f886f452934f3ec13503385269ac8b:log:64', 'hash': '0xcda2a47a8af65bdd1bcc267236acec4904f886f452934f3ec13503385269ac8b', 'from': '0xef3999b6eae86800ad73d8a249c053013c4a8cc4', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T18:55:56.000Z'}}, {'blockNum': '0x62d99b', 'uniqueId': '0x1f7f24efa51b550a6b25f5bca20ff4d25e4aeb16920dbfbb761a2182cdd1ce70:log:77', 'hash': '0x1f7f24efa51b550a6b25f5bca20ff4d25e4aeb16920dbfbb761a2182cdd1ce70', 'from': '0xfa6b01e7cf72a7532ecd2e33459a9b5a60454850', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:02:24.000Z'}}, {'blockNum': '0x62d9b5', 'uniqueId': '0x686b9f34214a82f8d1693ff4e162663e939162d1304d4ef384748ec17a4345f1:log:59', 'hash': '0x686b9f34214a82f8d1693ff4e162663e939162d1304d4ef384748ec17a4345f1', 'from': '0x84b5f25068b0f243f4ce457b17f528a6e614f626', 'to': '0x2a5239ff3018dd1172834dc352cc83cfd6d0599d', 'value': 42818.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09112f2495fa0ca50000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:08:25.000Z'}}, {'blockNum': '0x62d9cd', 'uniqueId': '0x11294954f649da104bb2585f8aeb8df0878acfd5fda61bb0956499689e46a659:log:104', 'hash': '0x11294954f649da104bb2585f8aeb8df0878acfd5fda61bb0956499689e46a659', 'from': '0x7c127b340b8deccd6c85594023d0aa1346c27d94', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:13:30.000Z'}}, {'blockNum': '0x62d9fa', 'uniqueId': '0x1db608e6a04252de8119d884cc45dafb88c76ef2b6791bec845ba35ac0bbd609:log:86', 'hash': '0x1db608e6a04252de8119d884cc45dafb88c76ef2b6791bec845ba35ac0bbd609', 'from': '0x2a5239ff3018dd1172834dc352cc83cfd6d0599d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42818.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09112f2495fa0ca50000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:24:07.000Z'}}, {'blockNum': '0x62da11', 'uniqueId': '0xd66c465ce6e032ef56e3d1d292584046db341a0310894cd91f1ffbd0cc28928c:log:139', 'hash': '0xd66c465ce6e032ef56e3d1d292584046db341a0310894cd91f1ffbd0cc28928c', 'from': '0xba2f1f5fb911563e485722358dc14120776ad516', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:32:59.000Z'}}, {'blockNum': '0x62da1f', 'uniqueId': '0x8d61151574d2572035ccfc8621575138ed0b39e61f4127b143dd6476eb6ee564:log:110', 'hash': '0x8d61151574d2572035ccfc8621575138ed0b39e61f4127b143dd6476eb6ee564', 'from': '0x8494e5d2d2ebca9dc1e341c10d07ccd3dce99caf', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:36:39.000Z'}}, {'blockNum': '0x62da2a', 'uniqueId': '0x651a2565fd5bfb66342b4af215b36469cb29d4ddcc6bd45316a1498e09c79bac:log:122', 'hash': '0x651a2565fd5bfb66342b4af215b36469cb29d4ddcc6bd45316a1498e09c79bac', 'from': '0xec5ed522f950760bbdeb9ea2597b40215f6c3a71', 'to': '0x3bb4204b3d8f8364cd298e437939a6186d679023', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:38:40.000Z'}}, {'blockNum': '0x62da88', 'uniqueId': '0x7ccb63f352559040a62b25500e9d59f12b4acbc715fc580cf60732dd283bc034:log:64', 'hash': '0x7ccb63f352559040a62b25500e9d59f12b4acbc715fc580cf60732dd283bc034', 'from': '0x99d2d405e6cf19401bf08783d69d71723ec1a1b8', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T19:59:42.000Z'}}, {'blockNum': '0x62da8c', 'uniqueId': '0x9a7efee8e09ce5ca1a57955020c68caf811a420d1f91bd3d82531a92382b6a85:log:49', 'hash': '0x9a7efee8e09ce5ca1a57955020c68caf811a420d1f91bd3d82531a92382b6a85', 'from': '0x09d61a9b9d266e1e564c52d18ae27cc77e613eee', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:00:15.000Z'}}, {'blockNum': '0x62da92', 'uniqueId': '0x7042ca3105b48f77932c8e8610f8e9a65ec8feb6dfa7349cfe50eb8feaecde69:log:36', 'hash': '0x7042ca3105b48f77932c8e8610f8e9a65ec8feb6dfa7349cfe50eb8feaecde69', 'from': '0x721ee8bd8666b72b8dee9da3a10c61a18bb28d29', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:00:54.000Z'}}, {'blockNum': '0x62daa0', 'uniqueId': '0x77d775201705615d57879e6bb11a45d014f97b7ca064e9cb0a02b4482db05bdf:log:19', 'hash': '0x77d775201705615d57879e6bb11a45d014f97b7ca064e9cb0a02b4482db05bdf', 'from': '0x2b5a5c327d3378cffd28f2db39a7fbda09d47d86', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:03:12.000Z'}}, {'blockNum': '0x62daab', 'uniqueId': '0x08263c031bed55c0959d06039bc9675f3f8cb06d4df9e23adabfbd3d6945dbfb:log:97', 'hash': '0x08263c031bed55c0959d06039bc9675f3f8cb06d4df9e23adabfbd3d6945dbfb', 'from': '0x5c0a31648efc5ca8ddd42fcf1d31d2d97d514f11', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:06:18.000Z'}}, {'blockNum': '0x62dab0', 'uniqueId': '0x1c18a4e6ce97adf4ca65cdb0bd6d7052fd2a0e0263661fb293e52b1fbd9386af:log:117', 'hash': '0x1c18a4e6ce97adf4ca65cdb0bd6d7052fd2a0e0263661fb293e52b1fbd9386af', 'from': '0xabde22cfcb290aa4ffdf1ace2e24688efe0ef86b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:07:13.000Z'}}, {'blockNum': '0x62dab6', 'uniqueId': '0xb354f9d9fba57cf7d195df9f6120aa8b62995d6bb3a969c631b6afe976d468f6:log:26', 'hash': '0xb354f9d9fba57cf7d195df9f6120aa8b62995d6bb3a969c631b6afe976d468f6', 'from': '0x5953ae3c3fc5beb487758a1544352476fbfb1cff', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:08:01.000Z'}}, {'blockNum': '0x62dac3', 'uniqueId': '0x8be60152f588c53ae4d6928623acd9eff7abdb8fec02de6748f81a4e46f1be45:log:32', 'hash': '0x8be60152f588c53ae4d6928623acd9eff7abdb8fec02de6748f81a4e46f1be45', 'from': '0xd890368d0f5711ab0f50da3f6882f6d60149d62b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:11:57.000Z'}}, {'blockNum': '0x62dac9', 'uniqueId': '0x9f518de7383edd5972c068019f56983b28583207437ed96b35735d62f79edfc3:log:17', 'hash': '0x9f518de7383edd5972c068019f56983b28583207437ed96b35735d62f79edfc3', 'from': '0x832c495e070772560d166b4352522d4a669abe83', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:13:56.000Z'}}, {'blockNum': '0x62dad3', 'uniqueId': '0xdc25c7bc6eb75977595ccd9cb63b945b65574555b159ac2eef7ef71e29b84de4:log:146', 'hash': '0xdc25c7bc6eb75977595ccd9cb63b945b65574555b159ac2eef7ef71e29b84de4', 'from': '0x0ff050cb53e4fdacf77dc97eb27b667459d866d2', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:16:09.000Z'}}, {'blockNum': '0x62dad7', 'uniqueId': '0xb81fd68829af3556c71cf00918e02b24369e08ea6f69311685360c3c00324ef5:log:17', 'hash': '0xb81fd68829af3556c71cf00918e02b24369e08ea6f69311685360c3c00324ef5', 'from': '0x1279b1b01be2f9c7163c1823446166bc40c90757', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:16:30.000Z'}}, {'blockNum': '0x62dadb', 'uniqueId': '0x41edbd2976e6dfc25b803615335c2b4229da8bcd5689031dc06187553535df43:log:238', 'hash': '0x41edbd2976e6dfc25b803615335c2b4229da8bcd5689031dc06187553535df43', 'from': '0x87b8d5a86ee8514de9dcce69f1c8035d3744ca91', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:16:59.000Z'}}, {'blockNum': '0x62db0c', 'uniqueId': '0xd869508e906efd31cb2e6d8ce69099d478c87dc693edb6887e31ea0d13e907dc:log:23', 'hash': '0xd869508e906efd31cb2e6d8ce69099d478c87dc693edb6887e31ea0d13e907dc', 'from': '0xf0ed5dd72699b52dca452044f130a999f1c0bb5e', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:30:15.000Z'}}, {'blockNum': '0x62db0c', 'uniqueId': '0x7478d62197c75d61ecadb02d01f22687c8f57f8818ea080070e34c43f0308cbc:log:24', 'hash': '0x7478d62197c75d61ecadb02d01f22687c8f57f8818ea080070e34c43f0308cbc', 'from': '0x66a783b40c580502252c6afb50311bcf5ce129a0', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:30:15.000Z'}}, {'blockNum': '0x62db0d', 'uniqueId': '0xcff9f8681a7fdd263a8a125f119c4ed087d687fc6244ee860b302c2ba9cfda4b:log:149', 'hash': '0xcff9f8681a7fdd263a8a125f119c4ed087d687fc6244ee860b302c2ba9cfda4b', 'from': '0x5a568c1f8afc4716ba0e5c1fe1134e13bc060923', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:30:19.000Z'}}, {'blockNum': '0x62db11', 'uniqueId': '0xa12dfcface469e0aa16098bccfd67e2813cf4807066d59eb89b856b2d24366ad:log:25', 'hash': '0xa12dfcface469e0aa16098bccfd67e2813cf4807066d59eb89b856b2d24366ad', 'from': '0x6d0786f523954e48d202e87285f4565404fb10df', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:30:58.000Z'}}, {'blockNum': '0x62db3e', 'uniqueId': '0xf85695ef8186ef19c50f9a946fca3e2c7db6792a700f117a2ab16698f1a327c4:log:0', 'hash': '0xf85695ef8186ef19c50f9a946fca3e2c7db6792a700f117a2ab16698f1a327c4', 'from': '0x1a4d1c8d2d5ec8850c5f735443e0d907cd22d93b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:41:50.000Z'}}, {'blockNum': '0x62db3e', 'uniqueId': '0x206cb8fa28fdb03dbd226aaa41c7a48888f583605b61deaa7ef9df936bfb9da6:log:54', 'hash': '0x206cb8fa28fdb03dbd226aaa41c7a48888f583605b61deaa7ef9df936bfb9da6', 'from': '0xd999e83fe13fbac3a6235588ddb7b8de45f018be', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:41:50.000Z'}}, {'blockNum': '0x62db4c', 'uniqueId': '0x82ce6460435c22ef07657bc551642c3005811d0f19519ccdabe1db5dc2b5a2f7:log:73', 'hash': '0x82ce6460435c22ef07657bc551642c3005811d0f19519ccdabe1db5dc2b5a2f7', 'from': '0x24626296c1ca987b6fb154a02204e8863d83a13c', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:44:31.000Z'}}, {'blockNum': '0x62db71', 'uniqueId': '0x4e13987a5f0f771247ef1629d7e9ce7ae49da1419579bb1e1cd50c84f890726e:log:43', 'hash': '0x4e13987a5f0f771247ef1629d7e9ce7ae49da1419579bb1e1cd50c84f890726e', 'from': '0x5f7db4866ebc1bc29d3faf0ba5ab5391619ab820', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:51:47.000Z'}}, {'blockNum': '0x62db74', 'uniqueId': '0x90b00293c9c319f465fa3115509b4c242cddb7faa216f9dd96f068fb1b72ca53:log:82', 'hash': '0x90b00293c9c319f465fa3115509b4c242cddb7faa216f9dd96f068fb1b72ca53', 'from': '0xf5871a87c7432a3573c63419c3987e41b80ef2c9', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:52:57.000Z'}}, {'blockNum': '0x62db74', 'uniqueId': '0xbb21343f24c878113df4dfbd89be0b64db3b3c4d43f167624a50339cee6a6c77:log:88', 'hash': '0xbb21343f24c878113df4dfbd89be0b64db3b3c4d43f167624a50339cee6a6c77', 'from': '0xab3eeb2b3cdd3307038b040a9a7b54f86018b11f', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:52:57.000Z'}}, {'blockNum': '0x62db78', 'uniqueId': '0x0658e3189e68792a8ad7e96afdc1a311f08f78a0ac73d029ea474eee3d950120:log:21', 'hash': '0x0658e3189e68792a8ad7e96afdc1a311f08f78a0ac73d029ea474eee3d950120', 'from': '0x89187ccfc2c7ddac50f364179ec9359d6460ad11', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:53:24.000Z'}}, {'blockNum': '0x62db78', 'uniqueId': '0x34d6c93a366fe7752909f097ba958a8803889440e28f0ba6b12091158b26d210:log:40', 'hash': '0x34d6c93a366fe7752909f097ba958a8803889440e28f0ba6b12091158b26d210', 'from': '0x3eac31704e7eb00c4e9436863531a39d8655e6d6', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:53:24.000Z'}}, {'blockNum': '0x62db79', 'uniqueId': '0x08641057edb83a61e939ec5b0526f96e74858a72f6b115deffee27e6ab0ef78e:log:9', 'hash': '0x08641057edb83a61e939ec5b0526f96e74858a72f6b115deffee27e6ab0ef78e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 7996.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01b179911e5112840000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:53:33.000Z'}}, {'blockNum': '0x62db83', 'uniqueId': '0x5aa40346291382fc284c43652e3bb24976512625c9a96808c8f6e8d58738fd85:log:105', 'hash': '0x5aa40346291382fc284c43652e3bb24976512625c9a96808c8f6e8d58738fd85', 'from': '0x485917da803c32c40ebc293d6158c865494a454c', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:56:44.000Z'}}, {'blockNum': '0x62db87', 'uniqueId': '0x35e932c3e45397c796bf4a1f26c64db64621b0cc2444fc959bb886bc254ca163:log:94', 'hash': '0x35e932c3e45397c796bf4a1f26c64db64621b0cc2444fc959bb886bc254ca163', 'from': '0x4811158737ae5d6792d944ec182278377921a247', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T20:57:43.000Z'}}, {'blockNum': '0x62db95', 'uniqueId': '0xd02a7d91c7b5de659f6b102a6de0a5b090f5a8a77926842a3b23c480526eae7c:log:86', 'hash': '0xd02a7d91c7b5de659f6b102a6de0a5b090f5a8a77926842a3b23c480526eae7c', 'from': '0xbb6673957ae0b380b369131ac54319165010a346', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:00:55.000Z'}}, {'blockNum': '0x62db9f', 'uniqueId': '0x92de72436f276e08b04163798e1a14502e408436276b416d6dea3c10f33e5f61:log:72', 'hash': '0x92de72436f276e08b04163798e1a14502e408436276b416d6dea3c10f33e5f61', 'from': '0x20af6e8cab165201266c4949c2d01c3783a3dbc4', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:04:59.000Z'}}, {'blockNum': '0x62dbd2', 'uniqueId': '0xad70a6bac39a0a5a6a0b91e67f602b18d848c818302221d539fe8192f6a3cc8c:log:37', 'hash': '0xad70a6bac39a0a5a6a0b91e67f602b18d848c818302221d539fe8192f6a3cc8c', 'from': '0x3067059f860b56dfb9d5313625c4772574852864', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:18:14.000Z'}}, {'blockNum': '0x62dbdd', 'uniqueId': '0xefc1cd8f1e63776b2ffa5bf87aa6e02e884d40d88524294f20d41a2146d2f5d7:log:106', 'hash': '0xefc1cd8f1e63776b2ffa5bf87aa6e02e884d40d88524294f20d41a2146d2f5d7', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'value': 92.57909224832888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0504cb01e511c32d3e', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:21:34.000Z'}}, {'blockNum': '0x62dbf3', 'uniqueId': '0xe717d0a194f4a95d716652a58a71a08dc57f0a1b9bb18834dbdc9c41c91ccfdc:log:88', 'hash': '0xe717d0a194f4a95d716652a58a71a08dc57f0a1b9bb18834dbdc9c41c91ccfdc', 'from': '0x11700b0a76370bdb55bec67d03fcd732de5650af', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:25:51.000Z'}}, {'blockNum': '0x62dbfc', 'uniqueId': '0x6b0f9703a93a6dd3274e0aa3fbae4d0e8c67d417a58a9d338e739f8d26c12d44:log:170', 'hash': '0x6b0f9703a93a6dd3274e0aa3fbae4d0e8c67d417a58a9d338e739f8d26c12d44', 'from': '0x7b7bde362c2062b13a10ce89281fa3bd9180c7e6', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:28:41.000Z'}}, {'blockNum': '0x62dbff', 'uniqueId': '0xe4e406091cd80c170164251098067b3ff503afdaca82f98e314058244d4a26d6:log:23', 'hash': '0xe4e406091cd80c170164251098067b3ff503afdaca82f98e314058244d4a26d6', 'from': '0xbd63fc4711eed900ddea1dc8c8994842f509ecee', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:28:58.000Z'}}, {'blockNum': '0x62dc0a', 'uniqueId': '0x5c290ef5bb475abb6f2485c12af9258f7b52d55fb8491870976ce9f148508432:log:45', 'hash': '0x5c290ef5bb475abb6f2485c12af9258f7b52d55fb8491870976ce9f148508432', 'from': '0x3a59926cef39a66cd2b8b69d8dd4c305a01e7d99', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:31:38.000Z'}}, {'blockNum': '0x62dc13', 'uniqueId': '0x99f61dd2c1df6845b8eb428f336445516c9318bdd977c2e7e64c2b83cafe02d0:log:44', 'hash': '0x99f61dd2c1df6845b8eb428f336445516c9318bdd977c2e7e64c2b83cafe02d0', 'from': '0xf8e6c5ae6daf002ecce4d62d18d984fa549aae11', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:33:38.000Z'}}, {'blockNum': '0x62dc19', 'uniqueId': '0x9372bae5d5d7461199e6b6fad278b7c28c7a594583c62bda43484e9d935a4014:log:17', 'hash': '0x9372bae5d5d7461199e6b6fad278b7c28c7a594583c62bda43484e9d935a4014', 'from': '0x30a91dc6009e1bf0f58d35830897689ee50f2fdb', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:34:09.000Z'}}, {'blockNum': '0x62dc48', 'uniqueId': '0x263c3383c73b13a843062aaa7c49ef39635ef58f6d2df83e45c01129d7b998b1:log:29', 'hash': '0x263c3383c73b13a843062aaa7c49ef39635ef58f6d2df83e45c01129d7b998b1', 'from': '0x18a0b0e640546e39bd7470f0012313a3c01e01ad', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:45:10.000Z'}}, {'blockNum': '0x62dc50', 'uniqueId': '0xcefe48f3beb1d5818212acc962aa8868005f9e99ff8594fcee9ac990537d2ff8:log:131', 'hash': '0xcefe48f3beb1d5818212acc962aa8868005f9e99ff8594fcee9ac990537d2ff8', 'from': '0xd732d15a2d13bd72ef6f4040cdbfd0463e3402ae', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:46:49.000Z'}}, {'blockNum': '0x62dc54', 'uniqueId': '0xf17c201bebac7a45eccf10fac0709636378d071b083c630778309c63b6fac4a4:log:21', 'hash': '0xf17c201bebac7a45eccf10fac0709636378d071b083c630778309c63b6fac4a4', 'from': '0xbba5817248ea9c1d67523d582362f1d94f51c4e5', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:47:19.000Z'}}, {'blockNum': '0x62dc84', 'uniqueId': '0xb08a06d0b761e5803a48cceb9c6777e64d51cbc3da9fd3fbc985767ac6061ccd:log:59', 'hash': '0xb08a06d0b761e5803a48cceb9c6777e64d51cbc3da9fd3fbc985767ac6061ccd', 'from': '0xaca630e29e77d52da003ebe0db4e7a2725846f5b', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T21:57:28.000Z'}}, {'blockNum': '0x62dc9c', 'uniqueId': '0xb4e9831ec4b26ff41799fe59b51292d1d4d977607b334d772e9757f8a9ea0734:log:98', 'hash': '0xb4e9831ec4b26ff41799fe59b51292d1d4d977607b334d772e9757f8a9ea0734', 'from': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'to': '0xb76681435bced9f644c950dc77771eeafea64040', 'value': 5.21780129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x48695aa0cf066400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:03:42.000Z'}}, {'blockNum': '0x62dc9d', 'uniqueId': '0xf7a78a9c7e6cda9d7b93da25aeeea0c4d5b673670c60d661f188a5e490148d47:log:32', 'hash': '0xf7a78a9c7e6cda9d7b93da25aeeea0c4d5b673670c60d661f188a5e490148d47', 'from': '0xddd1224d7843588f1b5d04038d2958bd6d71ee02', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:03:46.000Z'}}, {'blockNum': '0x62dcab', 'uniqueId': '0x6a72ddbb47fadcabaefa6458da65fdc74bb74797d594e5df4becefc86b7fe7ca:log:78', 'hash': '0x6a72ddbb47fadcabaefa6458da65fdc74bb74797d594e5df4becefc86b7fe7ca', 'from': '0x52f0986a1cd35e2a39732f535d277016ac3fa656', 'to': '0x97c4510b4b6e0a1d3237880529de652c83a2ff1a', 'value': 29.8470808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x019e3621d9da61c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:07:39.000Z'}}, {'blockNum': '0x62dcae', 'uniqueId': '0xe2e8ff1e91b98f0ab729bdb5a981cb1d45ce48270c1e74deda2e5dcb2dc34516:log:91', 'hash': '0xe2e8ff1e91b98f0ab729bdb5a981cb1d45ce48270c1e74deda2e5dcb2dc34516', 'from': '0x487babcb2262f1704f88a6d8142496089279d85f', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:08:13.000Z'}}, {'blockNum': '0x62dcb4', 'uniqueId': '0x63dba4d5e9a7693e0f6a8e6847f0c8db1e7cdf2f5d5b184da2ae2948e31d2a02:log:71', 'hash': '0x63dba4d5e9a7693e0f6a8e6847f0c8db1e7cdf2f5d5b184da2ae2948e31d2a02', 'from': '0xe93db2d68c5b3eef990daa1185cff18b55cbf3b7', 'to': '0x4b50abcb8a15b9fc55f2f590abebc8fd9e15430b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:10:07.000Z'}}, {'blockNum': '0x62dcf6', 'uniqueId': '0x5429dfb90097ec0d35d12a274c78149d38d00f31e05c0e2f5a12e910d7e47fea:log:61', 'hash': '0x5429dfb90097ec0d35d12a274c78149d38d00f31e05c0e2f5a12e910d7e47fea', 'from': '0x9af9f8cdb187d0e009bdd9eb1379b49471c7a854', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:24:06.000Z'}}, {'blockNum': '0x62dcf9', 'uniqueId': '0x080b05c4f2d6da0ced01cb230d04088461b00ffe6eaf550c596115f2a95bdc9d:log:85', 'hash': '0x080b05c4f2d6da0ced01cb230d04088461b00ffe6eaf550c596115f2a95bdc9d', 'from': '0x69606bc965a2285b3adb4fc55b53f19a92e602e4', 'to': '0x81afad40d16fd55571a1d60fa5c5f20fdd1b1653', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:24:48.000Z'}}, {'blockNum': '0x62dd03', 'uniqueId': '0x4f22ed47928d0bf633ac177b24c4f8427cc0a2ade0c1eefd3b7795fe041859b1:log:36', 'hash': '0x4f22ed47928d0bf633ac177b24c4f8427cc0a2ade0c1eefd3b7795fe041859b1', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x14602492cc123b9a8d96e8fd13fb38b6e9bb3f51', 'value': 41.31458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x023d5adf9db0754000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:27:07.000Z'}}, {'blockNum': '0x62dd3d', 'uniqueId': '0xfc4f9074ed9d209b547c67989795686491fc352f7f2581806bf5557e02518ffc:log:0', 'hash': '0xfc4f9074ed9d209b547c67989795686491fc352f7f2581806bf5557e02518ffc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa1cc65cb829682d36567917809b299a4b6d23a06', 'value': 71.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03dc1936c427d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:37:56.000Z'}}, {'blockNum': '0x62dd55', 'uniqueId': '0x066fdc1149d683eeefb366bd3bf34bf32a65b4a117387d441bf6136de9988db0:log:121', 'hash': '0x066fdc1149d683eeefb366bd3bf34bf32a65b4a117387d441bf6136de9988db0', 'from': '0xb76681435bced9f644c950dc77771eeafea64040', 'to': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'value': 5.2178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4869597475088000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T22:42:38.000Z'}}, {'blockNum': '0x62de85', 'uniqueId': '0x87cf0548dfe65ce6e363d7acd835fd56513699709fcadbfcf5b931088d2b9084:log:41', 'hash': '0x87cf0548dfe65ce6e363d7acd835fd56513699709fcadbfcf5b931088d2b9084', 'from': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'to': '0x9287c9fba96a7161586b66309279fe3aa72067e8', 'value': 2.5740372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x23b8d13210a42000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-08T23:56:27.000Z'}}]}}
Number of returned transfers:  155
Answer is complete
 
symbol             BRD
group              BPG
date        2018-11-13
hour             17:00
exchange       binance
Name: 263, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2018-11-13 17:00:00 2018-11-13 05:00:00 2018-11-14 05:00:00
Unix timestamps:  1542081600.0 1542168000.0
Hex Block Numbers:  0x662732 0x663eeb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x662924', 'uniqueId': '0x63802eba5e4b8f54ef7d3c42041f89348b562d3ad060bf2a2bbedd2ec2985d64:log:92', 'hash': '0x63802eba5e4b8f54ef7d3c42041f89348b562d3ad060bf2a2bbedd2ec2985d64', 'from': '0x2b3aafe496c242cd9b8f092364a5f3b2b80bc58e', 'to': '0xa6ef7aa7dcecc474f67c9810caf3dfaaf6d240d3', 'value': 1243.2218359416095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43652b38ead496f3ea', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T05:56:40.000Z'}}, {'blockNum': '0x66296a', 'uniqueId': '0xd6015015bc55d0d5bd4fc0e98150b15fc2933bc960ae88838b553c648770076a:log:0', 'hash': '0xd6015015bc55d0d5bd4fc0e98150b15fc2933bc960ae88838b553c648770076a', 'from': '0xa6ef7aa7dcecc474f67c9810caf3dfaaf6d240d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1243.2218359416095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43652b38ead496f3ea', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T06:16:19.000Z'}}, {'blockNum': '0x662a98', 'uniqueId': '0x5ceca8c9c464b7c7fc3838fcc01f01a7327e176c0b64841cd24f9e17774ef651:log:42', 'hash': '0x5ceca8c9c464b7c7fc3838fcc01f01a7327e176c0b64841cd24f9e17774ef651', 'from': '0xda61fdda71c206350012212a3df622c6e167aa66', 'to': '0x684702248985765c1b990d884a8eeeca36c50c51', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T07:23:11.000Z'}}, {'blockNum': '0x662ac7', 'uniqueId': '0xe7cf9cac4309e47467cfcef033f9e0c24e316e50325cf306a3cd3f2b78c8eb0f:log:79', 'hash': '0xe7cf9cac4309e47467cfcef033f9e0c24e316e50325cf306a3cd3f2b78c8eb0f', 'from': '0x203dfa75b5fca03a97b0c71a7c41d0b761f07e4c', 'to': '0x9700ceb2f2dd643a7c522d67c4abe217e571acbe', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T07:32:58.000Z'}}, {'blockNum': '0x662b3f', 'uniqueId': '0xf67c741bf3155ccde9647179e32091eb2b0a98523bed4056c9f9e5499172c1dd:log:136', 'hash': '0xf67c741bf3155ccde9647179e32091eb2b0a98523bed4056c9f9e5499172c1dd', 'from': '0xe7bb1fbed8a86f9e46f0f5d25f72fc84c9032501', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 63.031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x036abb188c25a58000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T08:02:58.000Z'}}, {'blockNum': '0x662bd4', 'uniqueId': '0x38753d512969b57ad3c6ceb2b4cce4c21b4d76c699c3a53e3fb6e024e64b4538:log:19', 'hash': '0x38753d512969b57ad3c6ceb2b4cce4c21b4d76c699c3a53e3fb6e024e64b4538', 'from': '0xe041ddfb9406920d073bd304913e62dee33cab0f', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T08:38:41.000Z'}}, {'blockNum': '0x662bdc', 'uniqueId': '0xd7ffac0c03ebf90b409096eec7018927a0b169f8c2e909fea7bdceae565b8501:log:13', 'hash': '0xd7ffac0c03ebf90b409096eec7018927a0b169f8c2e909fea7bdceae565b8501', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf8c1c268d2a0ccfdbe9b54526d0d0c375eb7f918', 'value': 396.99247852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1585609bdb8e7e3000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T08:40:15.000Z'}}, {'blockNum': '0x662c8f', 'uniqueId': '0xce0c237835b6dd096ca73a1b637ceb56c6a593e50c8d38aa8b02078d0c0ec658:log:13', 'hash': '0xce0c237835b6dd096ca73a1b637ceb56c6a593e50c8d38aa8b02078d0c0ec658', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x83d0257c56a21deb689c6a13b3cca5db5ed0542b', 'value': 90.51758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04e82f0b6d6400c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T09:25:58.000Z'}}, {'blockNum': '0x662da6', 'uniqueId': '0xd13f6c6cb085c4b333fb2dd0648e805a87d96f781577bc81a730a8915f473b59:log:41', 'hash': '0xd13f6c6cb085c4b333fb2dd0648e805a87d96f781577bc81a730a8915f473b59', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x725e231c09b537522ed97465f79120eebb3c58a0', 'value': 184.98734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a07370da00468c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T10:33:25.000Z'}}, {'blockNum': '0x662ed4', 'uniqueId': '0xaa3e7aec0fcb63dc85a1a37d87eb7a231cf53c91af24aa9b2cf7d7640c3b2f25:log:17', 'hash': '0xaa3e7aec0fcb63dc85a1a37d87eb7a231cf53c91af24aa9b2cf7d7640c3b2f25', 'from': '0xd40ed0a85bd57a5ec43fa141306942a0bc44c33f', 'to': '0x5a89cc376cd75d3e8c1a4cf8718ff3f607695dfb', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T11:42:27.000Z'}}, {'blockNum': '0x662eeb', 'uniqueId': '0x13a91ddee6258c74786c3e2ef82195777b5b8ff202a3ae9b0aa7a12e17b346fd:log:44', 'hash': '0x13a91ddee6258c74786c3e2ef82195777b5b8ff202a3ae9b0aa7a12e17b346fd', 'from': '0xf51afa4f64468fe8f51f8fa85557613789c7608b', 'to': '0x17e77d92d07d0d19a5cf861ab21bfdf6f060cfef', 'value': 62.181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x035eef4a0d0a908000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T11:48:10.000Z'}}, {'blockNum': '0x662f11', 'uniqueId': '0x356e0167ad292587ff337a432c9a2014f91bb7165ef9f052a13a380a27d80790:log:77', 'hash': '0x356e0167ad292587ff337a432c9a2014f91bb7165ef9f052a13a380a27d80790', 'from': '0xb7e45b7a1fc88e1763b43b50de7f176ff1542122', 'to': '0xfdcf1317a59198fc6036f42b920b8db4d5f53ea3', 'value': 67.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a5f9a16de7ca0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T11:57:55.000Z'}}, {'blockNum': '0x662ff3', 'uniqueId': '0xac1a828828b05f43274634c095ac799c074bb0774e1eb4b0e69238ee0b99f5a9:log:54', 'hash': '0xac1a828828b05f43274634c095ac799c074bb0774e1eb4b0e69238ee0b99f5a9', 'from': '0xd536c9cd79a74e5adc06eb380a3d1aa26e290028', 'to': '0xac4768c425f7f01b0dbdb08e6a9051d8dbc7e861', 'value': 23.6015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0147895f343261c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T12:56:39.000Z'}}, {'blockNum': '0x66329f', 'uniqueId': '0x2322c114cbf14922ac97be7a90ee7f2631c1844368425d892fd9c9bf333854f6:log:83', 'hash': '0x2322c114cbf14922ac97be7a90ee7f2631c1844368425d892fd9c9bf333854f6', 'from': '0xfe23fc62374b4511576eb0b7c6ee18c9b8a59212', 'to': '0x02a9ea0448b50e54bc7ef4a2a06678bcdcedcf5f', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4bfffd0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T15:50:07.000Z'}}, {'blockNum': '0x6632a9', 'uniqueId': '0xdf4de3237420adcd2d6370141edd0ed83b515fcb64e444447f14048e014ddb29:log:47', 'hash': '0xdf4de3237420adcd2d6370141edd0ed83b515fcb64e444447f14048e014ddb29', 'from': '0xe535f4a0ad0926dbdac0eaf13906cbba2cc201db', 'to': '0x20605b81cdca1d9cdbcc01ffbaa0b5038f03ea18', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T15:52:16.000Z'}}, {'blockNum': '0x6632ac', 'uniqueId': '0xcaf7a7880c6b365e8cd66c1ba76140240aa57a70fc7b099929bec2a7678bff3f:log:23', 'hash': '0xcaf7a7880c6b365e8cd66c1ba76140240aa57a70fc7b099929bec2a7678bff3f', 'from': '0x02a9ea0448b50e54bc7ef4a2a06678bcdcedcf5f', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4bfffd0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T15:53:10.000Z'}}, {'blockNum': '0x66340f', 'uniqueId': '0x3f530c2d53692843d52df3a12c3e71acf2b52c86264fdc1ee05feab8210a0881:log:69', 'hash': '0x3f530c2d53692843d52df3a12c3e71acf2b52c86264fdc1ee05feab8210a0881', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0x68ebc3366b6b31101360831c6271c856d910882e', 'value': 2927.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9eb0c8045f6b960000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:12:48.000Z'}}, {'blockNum': '0x663415', 'uniqueId': '0x5012be9288e9cfecadc780c0de318f2f36358958dcb52ec4013ec0ff845d57dd:log:31', 'hash': '0x5012be9288e9cfecadc780c0de318f2f36358958dcb52ec4013ec0ff845d57dd', 'from': '0x68ebc3366b6b31101360831c6271c856d910882e', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2927.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9eb0c8045f6b960000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:13:37.000Z'}}, {'blockNum': '0x66342e', 'uniqueId': '0x362e6cf7764dfd5c4d6e6b05f68ab4604c543bdf31fc10a6f8a6100bdae0d5bc:log:8', 'hash': '0x362e6cf7764dfd5c4d6e6b05f68ab4604c543bdf31fc10a6f8a6100bdae0d5bc', 'from': '0xbee076c8f5f71915db1d0a5e3e23a1cc4a68ef46', 'to': '0x2f000b5e97d9cde1c72fb9ea11f7d347ec6a044d', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:17:39.000Z'}}, {'blockNum': '0x66343e', 'uniqueId': '0x1df19b1b06e887c2747011abd5044efb89fd48e0c29db7f38ecaf5337384d273:log:44', 'hash': '0x1df19b1b06e887c2747011abd5044efb89fd48e0c29db7f38ecaf5337384d273', 'from': '0x3ab0ac163ad232b0dea746457727ff1f73cafde4', 'to': '0x93788caa63f30dd0f4774d557e56eef7c87a9d79', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:21:02.000Z'}}, {'blockNum': '0x663470', 'uniqueId': '0xdc9456681d99717b688c3dfa9434dae604deb538ee377dd4bf3a9c506deffb18:log:17', 'hash': '0xdc9456681d99717b688c3dfa9434dae604deb538ee377dd4bf3a9c506deffb18', 'from': '0x2f000b5e97d9cde1c72fb9ea11f7d347ec6a044d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:34:47.000Z'}}, {'blockNum': '0x6634aa', 'uniqueId': '0x6f966f6eccebe75944baccedf649484e20ca07a84c7679d9523d7740481298fa:log:189', 'hash': '0x6f966f6eccebe75944baccedf649484e20ca07a84c7679d9523d7740481298fa', 'from': '0x03410c0fa39abb19f48ad8430834ab488baa4d0d', 'to': '0x59dc8754210ca31d4a4bf59fd1f88715230b42e1', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:47:17.000Z'}}, {'blockNum': '0x66351b', 'uniqueId': '0x7889019f8b7afce6caca16fbc61867c6d0974475f2acfb52023c4d903546b5ed:log:7', 'hash': '0x7889019f8b7afce6caca16fbc61867c6d0974475f2acfb52023c4d903546b5ed', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x6944bd16c1938a3fcdc7b821ada3d32b8f093cf6', 'value': 21.63338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x012c39347dcf0a4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:11:16.000Z'}}, {'blockNum': '0x66353e', 'uniqueId': '0xb657a4a42b29ea43aa554a7f22f53004221e11c27e80b0fcebca788b02406c17:log:23', 'hash': '0xb657a4a42b29ea43aa554a7f22f53004221e11c27e80b0fcebca788b02406c17', 'from': '0x20605b81cdca1d9cdbcc01ffbaa0b5038f03ea18', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:19:54.000Z'}}, {'blockNum': '0x66354d', 'uniqueId': '0x3bc0bb98eac1912f45f718d901a3afe759d97651a0db32ffb8839fbc9e0d196b:log:170', 'hash': '0x3bc0bb98eac1912f45f718d901a3afe759d97651a0db32ffb8839fbc9e0d196b', 'from': '0x12a50c37c9c81397b51f35ebf9d998360e83824a', 'to': '0xe65178d3601b778f5f1b3c3a99035d0065b93714', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:22:01.000Z'}}, {'blockNum': '0x663586', 'uniqueId': '0x81819033ce1fce597ca661b900af196b6a5078d0d1907c857ea76397ec38f5d6:log:56', 'hash': '0x81819033ce1fce597ca661b900af196b6a5078d0d1907c857ea76397ec38f5d6', 'from': '0x3d30add05cd182c220f0d6e6048f0125c986f009', 'to': '0xe8e2eae6827eeebd1a193a5e55d3518c72682932', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac61ffff8', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:36:49.000Z'}}, {'blockNum': '0x6635d3', 'uniqueId': '0x34d2527b2f430a0f8493e3c5de27322d3f711295eba349c8de8e84f894d2c16d:log:29', 'hash': '0x34d2527b2f430a0f8493e3c5de27322d3f711295eba349c8de8e84f894d2c16d', 'from': '0xe8e2eae6827eeebd1a193a5e55d3518c72682932', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac61ffff8', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:56:50.000Z'}}, {'blockNum': '0x6635e6', 'uniqueId': '0x8135d59d0272c038b177b50e411fea736c4b205a729c92118d0895d91f171c55:log:14', 'hash': '0x8135d59d0272c038b177b50e411fea736c4b205a729c92118d0895d91f171c55', 'from': '0xed33a839535f51b63a60dea180ce95151b48a206', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:59:57.000Z'}}, {'blockNum': '0x663631', 'uniqueId': '0x842303e6531ebbcfb206b629e8dd8a73c0cb9a5dd66516f024c8db9929da59c7:log:50', 'hash': '0x842303e6531ebbcfb206b629e8dd8a73c0cb9a5dd66516f024c8db9929da59c7', 'from': '0xf2c57ed90e236fe14b8868afac535d2d40bf98f3', 'to': '0x0362439691095a358960800b24168ce8f85b5a26', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T19:19:08.000Z'}}, {'blockNum': '0x663818', 'uniqueId': '0xad38006565cc768f0723cc1d8f5ed3b1541e0816eb366847d304a6bd2f47794f:log:71', 'hash': '0xad38006565cc768f0723cc1d8f5ed3b1541e0816eb366847d304a6bd2f47794f', 'from': '0xe3c67790646ae6aacf112de9b12008aeddee9029', 'to': '0x037ac968812fd3ee46c3980f1333cd8781821cab', 'value': 53.6015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02e7dec841d019c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:17:30.000Z'}}, {'blockNum': '0x66386f', 'uniqueId': '0xae53638bfadec76b7fdca769d7892f9b4b7f5aefe32399a420ad30715637fa85:log:25', 'hash': '0xae53638bfadec76b7fdca769d7892f9b4b7f5aefe32399a420ad30715637fa85', 'from': '0x4768a9c485c46a23dd3d2fc3d48b9f91d181b880', 'to': '0x939b663739608cda27b29abdb121063ac5a2e071', 'value': 2556.794117647059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8a9aa56f86313f6903', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:37:01.000Z'}}, {'blockNum': '0x663887', 'uniqueId': '0x2a5e626e7ce43cebac62ef304cf53e1973c7e2827af98ed88ca6075f8cb3ec4e:log:5', 'hash': '0x2a5e626e7ce43cebac62ef304cf53e1973c7e2827af98ed88ca6075f8cb3ec4e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdb6fbe8c7b97c9572f4f116f6c798fb86c9a1c35', 'value': 567.408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1ec25e29be5ad80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:42:34.000Z'}}, {'blockNum': '0x6638ba', 'uniqueId': '0xd34b2fbbb49a5cec061b6f20b0e89bf3a591f9722b397f81a5f3c3c332c41aec:log:12', 'hash': '0xd34b2fbbb49a5cec061b6f20b0e89bf3a591f9722b397f81a5f3c3c332c41aec', 'from': '0x939b663739608cda27b29abdb121063ac5a2e071', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2556.794117647059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8a9aa56f86313f6903', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:56:17.000Z'}}, {'blockNum': '0x6638f9', 'uniqueId': '0x7ed57833617822850636d2c3ede20c661ed64fb8db57a2cc8695d0a6039a2c4d:log:1', 'hash': '0x7ed57833617822850636d2c3ede20c661ed64fb8db57a2cc8695d0a6039a2c4d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5b3f41627fa23a3460bbb3d356906138fe1ddd4', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T22:07:00.000Z'}}, {'blockNum': '0x663900', 'uniqueId': '0x0511d64c74b6ee7ecadf45b608a4ff023796040d4f7a74bcc915a1566a8303c5:log:12', 'hash': '0x0511d64c74b6ee7ecadf45b608a4ff023796040d4f7a74bcc915a1566a8303c5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0dadc599986a21b89b6e0eefecc61ba688763d8d', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T22:09:10.000Z'}}, {'blockNum': '0x6639ca', 'uniqueId': '0xeac85e7aed874b6ab40c66d9794d3bf0c4933b88ce230302c8c65df1aa408ec7:log:4', 'hash': '0xeac85e7aed874b6ab40c66d9794d3bf0c4933b88ce230302c8c65df1aa408ec7', 'from': '0x8958618332df62af93053cb9c535e26462c959b0', 'to': '0x93cf522bcfa85f8ea5268cf55287c477f8959478', 'value': 102.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0588c88a1a9fa10000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T22:51:11.000Z'}}, {'blockNum': '0x663a06', 'uniqueId': '0x8bf09479c6b54efc1236d9ac010c898dc873dd0b66b65f8b67544eb517b05192:log:5', 'hash': '0x8bf09479c6b54efc1236d9ac010c898dc873dd0b66b65f8b67544eb517b05192', 'from': '0x93cf522bcfa85f8ea5268cf55287c477f8959478', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0588c88a1a9fa10000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T23:04:11.000Z'}}, {'blockNum': '0x663b33', 'uniqueId': '0x4f65100354af9df3a8cd240e6c2e38d61480b751adfaa335eb9d240cf42790c5:log:29', 'hash': '0x4f65100354af9df3a8cd240e6c2e38d61480b751adfaa335eb9d240cf42790c5', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x76d00870b17b08ad9aab41fbdce4fadb383ea425', 'value': 30.48992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a721f4b28e140000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-14T00:10:16.000Z'}}, {'blockNum': '0x663b56', 'uniqueId': '0xc482e389c916d68e29440c838b6d39bc995b49e50100cf16f69559c0f77fe0e4:log:5', 'hash': '0xc482e389c916d68e29440c838b6d39bc995b49e50100cf16f69559c0f77fe0e4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc5f6bb86a40e588e9ded51a3c0f2b92057b29b62', 'value': 1596.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x56891cd870ac0e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-14T00:18:17.000Z'}}, {'blockNum': '0x663cc7', 'uniqueId': '0xf265bc488da81c31ef57107912480b5c4a923bc7988272bb87a1c3fd8276152e:log:96', 'hash': '0xf265bc488da81c31ef57107912480b5c4a923bc7988272bb87a1c3fd8276152e', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd3edeb986909b3e6f0ba18cf34b3a33cb7c6f340', 'value': 1500.444446054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5156d981fda06e7c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-14T01:44:02.000Z'}}]}}
Number of returned transfers:  40
Answer is complete
 
symbol             EVX
group              BPG
date        2018-11-20
hour             17:00
exchange       binance
Name: 264, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2018-11-20 17:00:00 2018-11-20 05:00:00 2018-11-21 05:00:00
Unix timestamps:  1542686400.0 1542772800.0
Hex Block Numbers:  0x66cdf8 0x66e592
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x66ce5b', 'uniqueId': '0x425705b1a4b6653f0199cf47c9464ee7043686f9a5e2a6546b893fad733555e3:log:21', 'hash': '0x425705b1a4b6653f0199cf47c9464ee7043686f9a5e2a6546b893fad733555e3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 7232.987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044faa8e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T04:23:42.000Z'}}, {'blockNum': '0x66ce5d', 'uniqueId': '0x5b9ea4bcc4ab04f7fd5744be454933fd302b6e982b53b8974e3208b24c575510:log:30', 'hash': '0x5b9ea4bcc4ab04f7fd5744be454933fd302b6e982b53b8974e3208b24c575510', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 13647.954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08228334', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T04:24:06.000Z'}}, {'blockNum': '0x66ce6d', 'uniqueId': '0x353c47908d639c726804a596fa08e9db6539ff54a927e3a7be9cf6d647916b95:log:54', 'hash': '0x353c47908d639c726804a596fa08e9db6539ff54a927e3a7be9cf6d647916b95', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 6232.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03b710a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T04:28:39.000Z'}}, {'blockNum': '0x66cedb', 'uniqueId': '0x6f56ec5cd4d1b8329280d166e48ee8d36ee700c332dc3f1f04105ffc799d0216:log:39', 'hash': '0x6f56ec5cd4d1b8329280d166e48ee8d36ee700c332dc3f1f04105ffc799d0216', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'value': 5881.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x038181b8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T04:57:29.000Z'}}, {'blockNum': '0x66cf02', 'uniqueId': '0x36be9b2d2d735d7da40cf6fa3a72e81e52a217a1371a77f8ef5dd512e09f3fcb:log:4', 'hash': '0x36be9b2d2d735d7da40cf6fa3a72e81e52a217a1371a77f8ef5dd512e09f3fcb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 7180.493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0447a802', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T05:04:33.000Z'}}, {'blockNum': '0x66cf0a', 'uniqueId': '0x71f27c5048e61e1509d7a990680b477e000abf8fe631e1b8f841cd0d5ca624a5:log:70', 'hash': '0x71f27c5048e61e1509d7a990680b477e000abf8fe631e1b8f841cd0d5ca624a5', 'from': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 12028.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x072b57a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T05:05:53.000Z'}}, {'blockNum': '0x66cf10', 'uniqueId': '0x0abf721844510781f4b2d190be9acf6935271e3ba26dbaca709f4e236d1d9622:log:2', 'hash': '0x0abf721844510781f4b2d190be9acf6935271e3ba26dbaca709f4e236d1d9622', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01f4f230', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T05:07:01.000Z'}}, {'blockNum': '0x66cf1b', 'uniqueId': '0x38ac13f66e3b3096866683ac4918fdf2fe8e82dbf66abe0a4f74cf10d6fca61c:log:82', 'hash': '0x38ac13f66e3b3096866683ac4918fdf2fe8e82dbf66abe0a4f74cf10d6fca61c', 'from': '0xf7392941c268c2d089b82ad7ada3003d41a16763', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 88.3195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d79fb', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T05:10:37.000Z'}}, {'blockNum': '0x66d096', 'uniqueId': '0xd8a03408bdf69c7f84805942a7d757007fe28e824e4434b8b219eabc5ae4db80:log:46', 'hash': '0xd8a03408bdf69c7f84805942a7d757007fe28e824e4434b8b219eabc5ae4db80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 14966.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08ebc488', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:40:45.000Z'}}, {'blockNum': '0x66d09e', 'uniqueId': '0x0b2d8b7e905f9fdbf6288e1a430a0a7306f95f78ec4896d94a5b96ed8a24d8d9:log:1', 'hash': '0x0b2d8b7e905f9fdbf6288e1a430a0a7306f95f78ec4896d94a5b96ed8a24d8d9', 'from': '0xfc303465d8ea05434b395f039539cf2bc666541c', 'to': '0xea2579a3b7058b406f5b35fdfbade534c94185a3', 'value': 2278.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015bb868', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:42:00.000Z'}}, {'blockNum': '0x66d09f', 'uniqueId': '0xfb45232d208ff62c2dad38df674a57bb81754039258be8b02f2d0f8388190549:log:117', 'hash': '0xfb45232d208ff62c2dad38df674a57bb81754039258be8b02f2d0f8388190549', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 7180.493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0447a802', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:42:36.000Z'}}, {'blockNum': '0x66d0a1', 'uniqueId': '0x8163b69b8ac500e04d6dfef1542bb1726d0fc9ba0fbfc0aaa20fa9e90087e564:log:161', 'hash': '0x8163b69b8ac500e04d6dfef1542bb1726d0fc9ba0fbfc0aaa20fa9e90087e564', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 6700.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03fe7218', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:43:03.000Z'}}, {'blockNum': '0x66d0a9', 'uniqueId': '0x541d353df576f97025b0bbd493b9b2bb392b61ad3a1762ef2e7ca65a104d134d:log:32', 'hash': '0x541d353df576f97025b0bbd493b9b2bb392b61ad3a1762ef2e7ca65a104d134d', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5265c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:44:37.000Z'}}, {'blockNum': '0x66d0c6', 'uniqueId': '0x02df5d040dfda65bcc66dabc735a9d8eda1d17ab592cacdb0e55d14a01e059ee:log:21', 'hash': '0x02df5d040dfda65bcc66dabc735a9d8eda1d17ab592cacdb0e55d14a01e059ee', 'from': '0xea2579a3b7058b406f5b35fdfbade534c94185a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2278.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015bb868', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:51:07.000Z'}}, {'blockNum': '0x66d0e1', 'uniqueId': '0xa9c5ff01d206174919571a0afd2e76fc06e65ee0f0ab9d8880aaac528c771cf1:log:8', 'hash': '0xa9c5ff01d206174919571a0afd2e76fc06e65ee0f0ab9d8880aaac528c771cf1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 7234.903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044ff566', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:58:41.000Z'}}, {'blockNum': '0x66d0e1', 'uniqueId': '0x66fa6cbd8d03bc84ab792b43fc46760622fea3f8bd3a51535d97a846d1918ac0:log:64', 'hash': '0x66fa6cbd8d03bc84ab792b43fc46760622fea3f8bd3a51535d97a846d1918ac0', 'from': '0xc06447b44d2961ed718b087a3e7de1db270eb877', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 135.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x14b4c8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T06:58:41.000Z'}}, {'blockNum': '0x66d0eb', 'uniqueId': '0x09f6d1875f7ca922e4971f5b6b5116166cb5c19eb31f18358f7e5c294b05f2a4:log:37', 'hash': '0x09f6d1875f7ca922e4971f5b6b5116166cb5c19eb31f18358f7e5c294b05f2a4', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 7234.903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044ff566', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:00:06.000Z'}}, {'blockNum': '0x66d105', 'uniqueId': '0xb2692a918bd84cd66a91d4074ab86eabb080d870c58a8465b7aa5f760243698a:log:17', 'hash': '0xb2692a918bd84cd66a91d4074ab86eabb080d870c58a8465b7aa5f760243698a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5265c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:07:59.000Z'}}, {'blockNum': '0x66d149', 'uniqueId': '0xe68810442fe81c1af235d9b641e05de6e91e8f66037cc3de9ca3c58b8651dbca:log:2', 'hash': '0xe68810442fe81c1af235d9b641e05de6e91e8f66037cc3de9ca3c58b8651dbca', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 1924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01259440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:23:12.000Z'}}, {'blockNum': '0x66d15f', 'uniqueId': '0xb77d84e2283f28f5928d3244b09fac318958270540e623ea7d2622024f9e8ac5:log:6', 'hash': '0xb77d84e2283f28f5928d3244b09fac318958270540e623ea7d2622024f9e8ac5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02951cf4474c62be118c840c2cf0b47cf4dd6a6d', 'value': 121.4781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12893d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:28:10.000Z'}}, {'blockNum': '0x66d1a3', 'uniqueId': '0x64392179229fb3ca9b677b782e6195eb809c3a8472978a619d08616d12ff4124:log:38', 'hash': '0x64392179229fb3ca9b677b782e6195eb809c3a8472978a619d08616d12ff4124', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01259440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T07:42:10.000Z'}}, {'blockNum': '0x66d20a', 'uniqueId': '0xbca623cf34a8cf61d390558f126240e6e2752d2e0788c506aacaf4eba8f97556:log:89', 'hash': '0xbca623cf34a8cf61d390558f126240e6e2752d2e0788c506aacaf4eba8f97556', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x16216a0a2f03e695031c7ef6936829215c6a4576', 'value': 8522.5936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x051471d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T08:11:09.000Z'}}, {'blockNum': '0x66d217', 'uniqueId': '0xd79bc132e4a4ef04576772be1cf2d113d578e2e48cbed7d785bc9299157af8e8:log:5', 'hash': '0xd79bc132e4a4ef04576772be1cf2d113d578e2e48cbed7d785bc9299157af8e8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02196a20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T08:13:47.000Z'}}, {'blockNum': '0x66d2a0', 'uniqueId': '0x383715d8a8728f08e710fa0a82ac6cdd267e7ea23741b2bbc78f8942af10e1c6:log:21', 'hash': '0x383715d8a8728f08e710fa0a82ac6cdd267e7ea23741b2bbc78f8942af10e1c6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6742.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0404c988', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T08:43:20.000Z'}}, {'blockNum': '0x66d2a5', 'uniqueId': '0xa975dcc419abde13eb7409a1d411441c2502803889cc5bdde7131cea4a6cdd85:log:96', 'hash': '0xa975dcc419abde13eb7409a1d411441c2502803889cc5bdde7131cea4a6cdd85', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 6742.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0404c988', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T08:44:09.000Z'}}, {'blockNum': '0x66d30c', 'uniqueId': '0x5f5823739832d0e55ca968dea93cde09d5c1b67a3eaddb5c257ed42052a10577:log:51', 'hash': '0x5f5823739832d0e55ca968dea93cde09d5c1b67a3eaddb5c257ed42052a10577', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 4093.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0270adf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T09:10:59.000Z'}}, {'blockNum': '0x66d323', 'uniqueId': '0xb0f2d3d9892bf76f84e2c4192c613d46267ef482052dc0b97c823e35c840e16f:log:21', 'hash': '0xb0f2d3d9892bf76f84e2c4192c613d46267ef482052dc0b97c823e35c840e16f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x74b4c380831ec85798f8681b9bd67d27a6673422', 'value': 134.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x149588', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T09:16:36.000Z'}}, {'blockNum': '0x66d372', 'uniqueId': '0x3febfc31afd784eda6837ba6f86d029eb148e6c8bd3203afc3db10957f213954:log:57', 'hash': '0x3febfc31afd784eda6837ba6f86d029eb148e6c8bd3203afc3db10957f213954', 'from': '0x74b4c380831ec85798f8681b9bd67d27a6673422', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 134.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x149588', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T09:38:14.000Z'}}, {'blockNum': '0x66d4a5', 'uniqueId': '0x8b7875cd92b8bdaf92620f198a8e819cd4c799167c31dae66262c6ecbcece430:log:9', 'hash': '0x8b7875cd92b8bdaf92620f198a8e819cd4c799167c31dae66262c6ecbcece430', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01240da0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T10:51:43.000Z'}}, {'blockNum': '0x66d4a5', 'uniqueId': '0x168e0e5a445cb6251deb782eeb4cd1b3a743745ee0c62a8932aabb751f5828c0:log:11', 'hash': '0x168e0e5a445cb6251deb782eeb4cd1b3a743745ee0c62a8932aabb751f5828c0', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5af140', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T10:51:43.000Z'}}, {'blockNum': '0x66d4d3', 'uniqueId': '0xc1286bee3de09e833aa2870eea6f039094c6af6cfeb5bb0db270b91a43d2320c:log:18', 'hash': '0xc1286bee3de09e833aa2870eea6f039094c6af6cfeb5bb0db270b91a43d2320c', 'from': '0x7ce51bbaaa40ff0ad0e307f142c1ba2e179cf30d', 'to': '0x6510a23768ff9cec13de173a090b737cb386c13c', 'value': 2507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017e89b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:02:18.000Z'}}, {'blockNum': '0x66d4f9', 'uniqueId': '0x07dc224195f8fd681be786b700c5588bcf68e1e1e5ab4557994147833e085baf:log:10', 'hash': '0x07dc224195f8fd681be786b700c5588bcf68e1e1e5ab4557994147833e085baf', 'from': '0x6510a23768ff9cec13de173a090b737cb386c13c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017e89b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:11:05.000Z'}}, {'blockNum': '0x66d4fb', 'uniqueId': '0x87d477242ceee467778722869648c6488cb8b5ed623462eee305ded2e406ee2a:log:3', 'hash': '0x87d477242ceee467778722869648c6488cb8b5ed623462eee305ded2e406ee2a', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01240da0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:11:11.000Z'}}, {'blockNum': '0x66d518', 'uniqueId': '0x8020a53ad43b3a870c7f59d1b23813a8cd125d4269dfc3d1a0c0ab1e8043bd79:log:29', 'hash': '0x8020a53ad43b3a870c7f59d1b23813a8cd125d4269dfc3d1a0c0ab1e8043bd79', 'from': '0x39559ce6d0e5cc86d8fb933a1847b69b88eebc7b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d6d80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:17:10.000Z'}}, {'blockNum': '0x66d52c', 'uniqueId': '0x68961543b1f0f1bebceadfdc1e2c050ed2892cfec7ab9aea29f0c31350d34b4e:log:9', 'hash': '0x68961543b1f0f1bebceadfdc1e2c050ed2892cfec7ab9aea29f0c31350d34b4e', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5af140', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:22:42.000Z'}}, {'blockNum': '0x66d564', 'uniqueId': '0xc22e7a0988d7a877ea670c09d98c1232c3d2b8a8fad924ffe854cad2ecbbb5f3:log:89', 'hash': '0xc22e7a0988d7a877ea670c09d98c1232c3d2b8a8fad924ffe854cad2ecbbb5f3', 'from': '0x9cb6247bf9e22da514b1b32acae28c560c73d848', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d0370', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T11:36:20.000Z'}}, {'blockNum': '0x66d5d1', 'uniqueId': '0x576b7406f0e7e91a57064823e8a877c87425f78af097d379e4f47106e46a086f:log:23', 'hash': '0x576b7406f0e7e91a57064823e8a877c87425f78af097d379e4f47106e46a086f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6332.757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03c64d52', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T12:03:28.000Z'}}, {'blockNum': '0x66d5d9', 'uniqueId': '0x6c89f55fd9f3d47d946f363bb9314c3bb58e1a4af17ba2183654e33b009ed080:log:26', 'hash': '0x6c89f55fd9f3d47d946f363bb9314c3bb58e1a4af17ba2183654e33b009ed080', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 6332.757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03c64d52', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T12:05:25.000Z'}}, {'blockNum': '0x66d5fd', 'uniqueId': '0x82c1c5f247bacd3dee9c2dcf7d6cc40936f2697a0962a18173651948c1ebc7ce:log:10', 'hash': '0x82c1c5f247bacd3dee9c2dcf7d6cc40936f2697a0962a18173651948c1ebc7ce', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0xf61d2e526ecea32e0079466cb696e87dce93010f', 'value': 933.6057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8e74f9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T12:16:04.000Z'}}, {'blockNum': '0x66d690', 'uniqueId': '0x2750286c64021723aedcd2ad9dea2d0cab49a78f03da4331ba723763b583eee8:log:70', 'hash': '0x2750286c64021723aedcd2ad9dea2d0cab49a78f03da4331ba723763b583eee8', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0x16216a0a2f03e695031c7ef6936829215c6a4576', 'value': 1159.9901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb1001d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T12:51:54.000Z'}}, {'blockNum': '0x66d743', 'uniqueId': '0x187aea7ea8b9cea91de7228d734651ff4f11c1d16fd6164ed79ac91004532913:log:101', 'hash': '0x187aea7ea8b9cea91de7228d734651ff4f11c1d16fd6164ed79ac91004532913', 'from': '0xe9dd0c3a522d3c81df54699b1d9713985c9626b0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 102.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fa3e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T13:32:55.000Z'}}, {'blockNum': '0x66d774', 'uniqueId': '0x8a93626da0d1ee3608381edb09c954b33c0b59de17f1f75e5bc38071cf7f908b:log:2', 'hash': '0x8a93626da0d1ee3608381edb09c954b33c0b59de17f1f75e5bc38071cf7f908b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x57e400', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T13:41:32.000Z'}}, {'blockNum': '0x66d78e', 'uniqueId': '0x27786d1daeb37793b7c48273448a4352ae41f54e62eebd043bb01fdbfc58eb44:log:0', 'hash': '0x27786d1daeb37793b7c48273448a4352ae41f54e62eebd043bb01fdbfc58eb44', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015d4610', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T13:47:35.000Z'}}, {'blockNum': '0x66d7e2', 'uniqueId': '0xa04eef774b8e21801e6c1004902552b9b4cb195f4a878bb4da936aec1dec3f96:log:4', 'hash': '0xa04eef774b8e21801e6c1004902552b9b4cb195f4a878bb4da936aec1dec3f96', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x55c120', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:08:46.000Z'}}, {'blockNum': '0x66d859', 'uniqueId': '0x62683e24bce99c4fa18fb784a19174b9c1c3539cbd3c702b8b6df667ba2881e7:log:4', 'hash': '0x62683e24bce99c4fa18fb784a19174b9c1c3539cbd3c702b8b6df667ba2881e7', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x515450', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:33:59.000Z'}}, {'blockNum': '0x66d8b2', 'uniqueId': '0xf9e1fc5c19756f84c3f64ee1edc8514a2a0ffbca78064b4d9fac39d72b4654ed:log:16', 'hash': '0xf9e1fc5c19756f84c3f64ee1edc8514a2a0ffbca78064b4d9fac39d72b4654ed', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'value': 3522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02196a20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:57:08.000Z'}}, {'blockNum': '0x66d8b2', 'uniqueId': '0x8b9fdd876460567585f29b874a4ee420e2e82e58decd181913afbfbb4148a928:log:17', 'hash': '0x8b9fdd876460567585f29b874a4ee420e2e82e58decd181913afbfbb4148a928', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'value': 912.9258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8b4d2a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:57:08.000Z'}}, {'blockNum': '0x66d8b6', 'uniqueId': '0xaa291c0b1bbc58ed74c43706ad2b3e0bc7228d036cdf160305cb8d172a615c1b:log:20', 'hash': '0xaa291c0b1bbc58ed74c43706ad2b3e0bc7228d036cdf160305cb8d172a615c1b', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'value': 346585.2064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xce94b4a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T14:58:06.000Z'}}, {'blockNum': '0x66d8c5', 'uniqueId': '0xa51dfa823ab1e346ed63f9ffafe34645f8d336999154f007fb13d80cbf36696b:log:34', 'hash': '0xa51dfa823ab1e346ed63f9ffafe34645f8d336999154f007fb13d80cbf36696b', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5312.584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032aa2d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:01:55.000Z'}}, {'blockNum': '0x66d8ec', 'uniqueId': '0x885a19ee8b6759d0378cc90d0aa1aedc64cc58e58f0e199c1960ad3ad36e7e0b:log:103', 'hash': '0x885a19ee8b6759d0378cc90d0aa1aedc64cc58e58f0e199c1960ad3ad36e7e0b', 'from': '0x134d5f80e5cd47c5fc217a0cffea3e6276885e53', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 12.4423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01e607', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:09:38.000Z'}}, {'blockNum': '0x66d960', 'uniqueId': '0xad867303e84fb866d39e53d25812ad41aa786ff06981c73a17ad1a07ac6e32d9:log:44', 'hash': '0xad867303e84fb866d39e53d25812ad41aa786ff06981c73a17ad1a07ac6e32d9', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015d4610', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:41:24.000Z'}}, {'blockNum': '0x66d961', 'uniqueId': '0x5969936e92885cbbc3cbd1af9f648caa8b5a8d483da5090cf13497844a603270:log:8', 'hash': '0x5969936e92885cbbc3cbd1af9f648caa8b5a8d483da5090cf13497844a603270', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfef970', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:41:33.000Z'}}, {'blockNum': '0x66d98b', 'uniqueId': '0x4bc619de292d190ab75230c27ab177410e4c605dee19e6eed4eea5f98df2851b:log:12', 'hash': '0x4bc619de292d190ab75230c27ab177410e4c605dee19e6eed4eea5f98df2851b', 'from': '0x2bfb6549c54f0aa92db07f7f9111d29452b5fdc8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 208.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1fd858', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T15:50:04.000Z'}}, {'blockNum': '0x66da0e', 'uniqueId': '0x54536d5d3d6240e17d201b533af3ab0b84a9b28883e5b5b82251037f2f66a5d8:log:93', 'hash': '0x54536d5d3d6240e17d201b533af3ab0b84a9b28883e5b5b82251037f2f66a5d8', 'from': '0x5276e896a941b24eb268956a54116b096d093f56', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x100590', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T16:23:12.000Z'}}, {'blockNum': '0x66da29', 'uniqueId': '0x6ac9e903fbbf43f7b1b72e02a34bd8c130c578bb46fa79ae3dcf6463267f444c:log:63', 'hash': '0x6ac9e903fbbf43f7b1b72e02a34bd8c130c578bb46fa79ae3dcf6463267f444c', 'from': '0xa561584ed577664f10252bdcf64bd0513cb88fa0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 78.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bf428', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T16:28:51.000Z'}}, {'blockNum': '0x66da89', 'uniqueId': '0xebae6343c26a3916b88a079149db5b1c9a09227164747cfc66cea0205d3f0b99:log:17', 'hash': '0xebae6343c26a3916b88a079149db5b1c9a09227164747cfc66cea0205d3f0b99', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb6b442a2fb19cc40f152e904d91c8ebae6479afe', 'value': 111.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x110b48', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T16:55:13.000Z'}}, {'blockNum': '0x66dacd', 'uniqueId': '0x89e13fbae29a85f06bd03e6777eaad9fac2771230424783430e3fe2106ef2a7e:log:20', 'hash': '0x89e13fbae29a85f06bd03e6777eaad9fac2771230424783430e3fe2106ef2a7e', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x029550e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:10:52.000Z'}}, {'blockNum': '0x66dad1', 'uniqueId': '0x9755e3f4e4a558ee41d5124b3502c5886cc866687c0ed059ece6d9c8c2b58892:log:12', 'hash': '0x9755e3f4e4a558ee41d5124b3502c5886cc866687c0ed059ece6d9c8c2b58892', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014a0c30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:13:01.000Z'}}, {'blockNum': '0x66dad5', 'uniqueId': '0x50bc39f1ce5d2d96cf92907b3160df583ef1fafbb291495d952c512419331fe3:log:62', 'hash': '0x50bc39f1ce5d2d96cf92907b3160df583ef1fafbb291495d952c512419331fe3', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5bb490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:13:40.000Z'}}, {'blockNum': '0x66daf0', 'uniqueId': '0x7aaa2a19f1fc626defcf9ae338fa1ee794332775445be8e09de0659469f0a6ed:log:13', 'hash': '0x7aaa2a19f1fc626defcf9ae338fa1ee794332775445be8e09de0659469f0a6ed', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014a0c30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:21:22.000Z'}}, {'blockNum': '0x66dafd', 'uniqueId': '0x90bbca71198906d0f746f5529be676bca2c396a69fac57e6ad5d224c02f2d356:log:53', 'hash': '0x90bbca71198906d0f746f5529be676bca2c396a69fac57e6ad5d224c02f2d356', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5bb490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:24:24.000Z'}}, {'blockNum': '0x66db31', 'uniqueId': '0xa55716e95d96e7f2c49a07f5104a1247b91fd7eed3df2e91aa371fca3cb6068d:log:10', 'hash': '0xa55716e95d96e7f2c49a07f5104a1247b91fd7eed3df2e91aa371fca3cb6068d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6529.499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e4528e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:37:17.000Z'}}, {'blockNum': '0x66db55', 'uniqueId': '0xc26cf3c7b4504991398afa89a08181c28f6e03571cf2ef7ae1b2d1ad0dc51579:log:85', 'hash': '0xc26cf3c7b4504991398afa89a08181c28f6e03571cf2ef7ae1b2d1ad0dc51579', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 82920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x316c9680', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:42:54.000Z'}}, {'blockNum': '0x66db9b', 'uniqueId': '0x423ede12c69b3bd6428a17279eeffbcda5b77f28712eb9b5a7ac3376a8219077:log:23', 'hash': '0x423ede12c69b3bd6428a17279eeffbcda5b77f28712eb9b5a7ac3376a8219077', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 16808.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0a04d5a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T17:59:20.000Z'}}, {'blockNum': '0x66db9e', 'uniqueId': '0x210114ec9b1de92407309335f2ac71accfdb031d8f916125f88af14ba060da93:log:76', 'hash': '0x210114ec9b1de92407309335f2ac71accfdb031d8f916125f88af14ba060da93', 'from': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10846.297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0677037a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:01:29.000Z'}}, {'blockNum': '0x66dba2', 'uniqueId': '0x8afb36b8dc84dba861731db56133ec0d812ebf6a94860982cbe343e58cd3f44f:log:20', 'hash': '0x8afb36b8dc84dba861731db56133ec0d812ebf6a94860982cbe343e58cd3f44f', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 16808.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0a04d5a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:02:06.000Z'}}, {'blockNum': '0x66dba8', 'uniqueId': '0xf8c1e541342de5044fdbdca3dc541ba73a485ce8a4688b5212153012542b19c0:log:22', 'hash': '0xf8c1e541342de5044fdbdca3dc541ba73a485ce8a4688b5212153012542b19c0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6486.566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03ddc57c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:03:51.000Z'}}, {'blockNum': '0x66dbc2', 'uniqueId': '0xb751aaf2c438f110e4cc32df0500b07e87377c9166702c228344eeb035e72748:log:44', 'hash': '0xb751aaf2c438f110e4cc32df0500b07e87377c9166702c228344eeb035e72748', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc0fd5601ef2dbc387c77742ae95f266f313c4265', 'value': 23089.7839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0dc338af', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:08:48.000Z'}}, {'blockNum': '0x66dbc2', 'uniqueId': '0x15b61fa7d3204cf3170cfaaacc84f5542faf2d511cb745f6d18a7c00418b7efd:log:51', 'hash': '0x15b61fa7d3204cf3170cfaaacc84f5542faf2d511cb745f6d18a7c00418b7efd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 93187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x378b3530', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:08:48.000Z'}}, {'blockNum': '0x66dbc2', 'uniqueId': '0x95f3414383b8dd2a96cedb301c698e1780a5da3bd9091d9582727d92e08a45b6:log:57', 'hash': '0x95f3414383b8dd2a96cedb301c698e1780a5da3bd9091d9582727d92e08a45b6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x55cf5fee6ebfff86b0607e0f91cd4206a4cd50ef', 'value': 111.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x111318', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:08:48.000Z'}}, {'blockNum': '0x66dbf3', 'uniqueId': '0x67fcafea5cfeb151badc6ee35155d554552352f43aed52e68d0133a781fa2b10:log:36', 'hash': '0x67fcafea5cfeb151badc6ee35155d554552352f43aed52e68d0133a781fa2b10', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x029550e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:21:24.000Z'}}, {'blockNum': '0x66dc05', 'uniqueId': '0x040ad99df847b9c467610207b9639c604ccbb890d4108536187b9b5cde1409df:log:87', 'hash': '0x040ad99df847b9c467610207b9639c604ccbb890d4108536187b9b5cde1409df', 'from': '0x645cbf40bb1b4b31d45a642b683c2391c126568e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 148.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x16a2e2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:25:50.000Z'}}, {'blockNum': '0x66dc0e', 'uniqueId': '0xbcfe51a89d2c229770e783369a2223e86d438b397210df58d07ec583b6396bc2:log:65', 'hash': '0xbcfe51a89d2c229770e783369a2223e86d438b397210df58d07ec583b6396bc2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6640.749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03f54c42', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:27:39.000Z'}}, {'blockNum': '0x66dc13', 'uniqueId': '0x85ddb7f5b84f7ca2aa4b249b02cc501968d305a539268623fbf507f1eae61be0:log:72', 'hash': '0x85ddb7f5b84f7ca2aa4b249b02cc501968d305a539268623fbf507f1eae61be0', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 19656.814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bb7644c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:29:22.000Z'}}, {'blockNum': '0x66dc72', 'uniqueId': '0x9eb19d0a73cf5c3de6a1697b2377b9a9f9dac528dd012dd57063605339cec83c:log:93', 'hash': '0x9eb19d0a73cf5c3de6a1697b2377b9a9f9dac528dd012dd57063605339cec83c', 'from': '0x55cf5fee6ebfff86b0607e0f91cd4206a4cd50ef', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 111.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x111318', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T18:52:58.000Z'}}, {'blockNum': '0x66dd7f', 'uniqueId': '0x9218d0da0f719d8930096cd0d1a686f164e6aa04ce903524e603bb187273e57f:log:1', 'hash': '0x9218d0da0f719d8930096cd0d1a686f164e6aa04ce903524e603bb187273e57f', 'from': '0xfd5e3bba64120837218f49706cf27dc953c39f0b', 'to': '0x658fca3451e5670a4442f7939b725626bc0c3148', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1e8480', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T19:55:37.000Z'}}, {'blockNum': '0x66ddcb', 'uniqueId': '0x946cc0ecb4a0b2e5adcd3a7d8aed8d7e422cd150834080b67c9518da11c5f8c3:log:9', 'hash': '0x946cc0ecb4a0b2e5adcd3a7d8aed8d7e422cd150834080b67c9518da11c5f8c3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3426.5608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x020ada08', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:12:02.000Z'}}, {'blockNum': '0x66ddcc', 'uniqueId': '0x4a38c098239c1c3bb0db7a557f768b5b25941a219bc6e6480108a0fde11bad15:log:13', 'hash': '0x4a38c098239c1c3bb0db7a557f768b5b25941a219bc6e6480108a0fde11bad15', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6840.884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0413d608', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:12:38.000Z'}}, {'blockNum': '0x66de19', 'uniqueId': '0x429518ef1f1901abc0de710392010dac513769078be294fc9083f6a392b1812b:log:21', 'hash': '0x429518ef1f1901abc0de710392010dac513769078be294fc9083f6a392b1812b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6932.397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0421ccc2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:32:00.000Z'}}, {'blockNum': '0x66de1f', 'uniqueId': '0x4538747c992724e23e539d8473026ea72aa08806382b46c382d6148d5b88eef7:log:81', 'hash': '0x4538747c992724e23e539d8473026ea72aa08806382b46c382d6148d5b88eef7', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 13773.281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0835a2ca', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:33:33.000Z'}}, {'blockNum': '0x66de22', 'uniqueId': '0x86a4c464ff28b8884d3e60b7e6cba25edffa77606a0baf1186f69e213836fe3b:log:14', 'hash': '0x86a4c464ff28b8884d3e60b7e6cba25edffa77606a0baf1186f69e213836fe3b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x021153d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:33:46.000Z'}}, {'blockNum': '0x66de27', 'uniqueId': '0x1bd38fe3e5b8986ceb8ca252d38dc77ea070a6edc72b7c61d1a9c061619bca7b:log:64', 'hash': '0x1bd38fe3e5b8986ceb8ca252d38dc77ea070a6edc72b7c61d1a9c061619bca7b', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 3426.5608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x020ada08', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:35:01.000Z'}}, {'blockNum': '0x66de51', 'uniqueId': '0x6e83f70f0b75c5e0f07ece7ef5455119ab7f1d354ffdecbca3743895c416d0ed:log:92', 'hash': '0x6e83f70f0b75c5e0f07ece7ef5455119ab7f1d354ffdecbca3743895c416d0ed', 'from': '0x76876034d2a967816795433537cda38c06b9e9ed', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 8.071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x013b46', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:45:12.000Z'}}, {'blockNum': '0x66de69', 'uniqueId': '0xcf24d2e9d349d5a566c5e28b084ce1555278ac2a8e62c8582c272df5f3834645:log:14', 'hash': '0xcf24d2e9d349d5a566c5e28b084ce1555278ac2a8e62c8582c272df5f3834645', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 6812.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x040f7b62', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T20:51:15.000Z'}}, {'blockNum': '0x66ded9', 'uniqueId': '0x51e595779077a555c7a22bc201563cdc68ed0c4e9f040bdccc9abeae877cb570:log:58', 'hash': '0x51e595779077a555c7a22bc201563cdc68ed0c4e9f040bdccc9abeae877cb570', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'value': 3447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x020df870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:16:30.000Z'}}, {'blockNum': '0x66dedc', 'uniqueId': '0xadc2890a99c83e43dfe7fe95239d5e7b3cbf6473f083a958294c1d4887a11fff:log:26', 'hash': '0xadc2890a99c83e43dfe7fe95239d5e7b3cbf6473f083a958294c1d4887a11fff', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 6916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x041f4c40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:17:17.000Z'}}, {'blockNum': '0x66df15', 'uniqueId': '0x68fa01d01bef801a2d12ce752e6aa2ef58d340d36291915675543583304ca263:log:9', 'hash': '0x68fa01d01bef801a2d12ce752e6aa2ef58d340d36291915675543583304ca263', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 14251.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x087eaad8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:28:24.000Z'}}, {'blockNum': '0x66df17', 'uniqueId': '0x889b36e141ece2f5a019f1a55240601d595fae885f8ba9a0b6506c0f274a3062:log:23', 'hash': '0x889b36e141ece2f5a019f1a55240601d595fae885f8ba9a0b6506c0f274a3062', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0xb74de1a0832c436359018ee3611e3ce42b133471', 'value': 14251.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x087eaad8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:29:00.000Z'}}, {'blockNum': '0x66df4a', 'uniqueId': '0xa63d2c59c2a0fd5856ba7a291a9c46c4464c1eb29b195ecae2bf18aa97a1bce8:log:82', 'hash': '0xa63d2c59c2a0fd5856ba7a291a9c46c4464c1eb29b195ecae2bf18aa97a1bce8', 'from': '0x15ce4ab7cea086d23a4b65792788995771279d6f', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 82.4035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c92e3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T21:41:28.000Z'}}, {'blockNum': '0x66e0e3', 'uniqueId': '0x0a42a3a703c571d7fec4ee5bbb23429295f83b15bf21bac42a856ee8bae17908:log:26', 'hash': '0x0a42a3a703c571d7fec4ee5bbb23429295f83b15bf21bac42a856ee8bae17908', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 4164.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x027b8368', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:22:56.000Z'}}, {'blockNum': '0x66e0ee', 'uniqueId': '0x29f5917997775a0b9955408e1e1bd7a8a4a84ab9926ecb90418cd19eff073d24:log:48', 'hash': '0x29f5917997775a0b9955408e1e1bd7a8a4a84ab9926ecb90418cd19eff073d24', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 4093.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0270adf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:26:40.000Z'}}, {'blockNum': '0x66e106', 'uniqueId': '0xa274f212da3f1b999502be706b445e0818af9a5a1d5489ab38f58860b9146aac:log:75', 'hash': '0xa274f212da3f1b999502be706b445e0818af9a5a1d5489ab38f58860b9146aac', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x627c2b4d2c1f3528f5ca116e9b46e9919b11f8f1', 'value': 219.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x216d26', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:30:53.000Z'}}, {'blockNum': '0x66e108', 'uniqueId': '0xb31aecc39c8c801840c63cb52da74468778935e4a76c961db090d3f5998d9420:log:66', 'hash': '0xb31aecc39c8c801840c63cb52da74468778935e4a76c961db090d3f5998d9420', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 4164.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x027b8368', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:32:02.000Z'}}, {'blockNum': '0x66e17b', 'uniqueId': '0x0e1ddf6167897b5d9c8f107196e47cc47a39d233c1e0d0d7bab0fa6a76abaa15:log:52', 'hash': '0x0e1ddf6167897b5d9c8f107196e47cc47a39d233c1e0d0d7bab0fa6a76abaa15', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2d60421a411b99fe8ca0396a955bdcc52922b41f', 'value': 15966.0309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x09843915', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-20T23:57:25.000Z'}}, {'blockNum': '0x66e1c1', 'uniqueId': '0x54b0f38363bffea2e62b2c368190a5e7d09e97af2f1f34e36001976274863e00:log:19', 'hash': '0x54b0f38363bffea2e62b2c368190a5e7d09e97af2f1f34e36001976274863e00', 'from': '0x2d60421a411b99fe8ca0396a955bdcc52922b41f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15966.0309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x09843915', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-21T00:11:28.000Z'}}, {'blockNum': '0x66e3b6', 'uniqueId': '0x76aa23d14ae07bec7a7a1030838f1afaed1847a5f2b94ac5e4064c9dd78adfbc:log:106', 'hash': '0x76aa23d14ae07bec7a7a1030838f1afaed1847a5f2b94ac5e4064c9dd78adfbc', 'from': '0x6d7f6fbade2bca06cd83d99db5c9f1cb7ea512c7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030d40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-21T02:07:20.000Z'}}, {'blockNum': '0x66e4e0', 'uniqueId': '0x1c796269324cf1572871152c8e7ffc9f951540747459aa05adf6e6ebd292921e:log:97', 'hash': '0x1c796269324cf1572871152c8e7ffc9f951540747459aa05adf6e6ebd292921e', 'from': '0x1f52598d8eb19936d3f6b3699b14c4d3cb87763b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 302.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2e18c8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-21T03:18:06.000Z'}}]}}
Number of returned transfers:  97
Answer is complete
 
symbol             RDN
group              BPG
date        2018-11-27
hour             17:00
exchange       binance
Name: 265, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2018-11-27 17:00:00 2018-11-27 05:00:00 2018-11-28 05:00:00
Unix timestamps:  1543291200.0 1543377600.0
Hex Block Numbers:  0x6774c0 0x678c00
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6776c5', 'uniqueId': '0x8ff86dba2d2ab58665f5caafbd01eb9975c769c5b946f7ba702dee6d979330b7:log:15', 'hash': '0x8ff86dba2d2ab58665f5caafbd01eb9975c769c5b946f7ba702dee6d979330b7', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x204f295a41b4d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:11:33.000Z'}}, {'blockNum': '0x6776c8', 'uniqueId': '0xe1ab69026a631e7fc885b369285bd209737ec080b5793e7c55400603a61cc3a6:log:3', 'hash': '0xe1ab69026a631e7fc885b369285bd209737ec080b5793e7c55400603a61cc3a6', 'from': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x204f295a41b4d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:11:56.000Z'}}, {'blockNum': '0x67770e', 'uniqueId': '0x7e90dcdb108bf8d138c5cb850e444bf84a630e76461e8db749de48782bd58c99:log:34', 'hash': '0x7e90dcdb108bf8d138c5cb850e444bf84a630e76461e8db749de48782bd58c99', 'from': '0x555c403690abc5b70193c46251e8d2ec1409deee', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7d9ad598020413ffff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:27:09.000Z'}}, {'blockNum': '0x677770', 'uniqueId': '0xfade3ce642f69f8a596b2ddde576671dfb923f7c1a16adf9a69073d1f37f47e4:log:1', 'hash': '0xfade3ce642f69f8a596b2ddde576671dfb923f7c1a16adf9a69073d1f37f47e4', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40ba1421eab8680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:51:03.000Z'}}, {'blockNum': '0x6777e3', 'uniqueId': '0x362c8d43d1f398716a014e93b020531a189592395b2b45c17cc45ec89f8613b1:log:14', 'hash': '0x362c8d43d1f398716a014e93b020531a189592395b2b45c17cc45ec89f8613b1', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40ba1421eab8680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T07:16:26.000Z'}}, {'blockNum': '0x67785b', 'uniqueId': '0xfe04983c114502d16648e4ab182aa3e90b8c3a0c344ea6dd5d5ee70683d1020e:log:2', 'hash': '0xfe04983c114502d16648e4ab182aa3e90b8c3a0c344ea6dd5d5ee70683d1020e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x52a99fb2cb7e9729e60edb62837ac3e5ecd1c28b', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T07:49:08.000Z'}}, {'blockNum': '0x6778d0', 'uniqueId': '0x878d13e0faf35d8c61acba452d6ea2a11d1016929787ae1aff99884842c2ea6d:log:14', 'hash': '0x878d13e0faf35d8c61acba452d6ea2a11d1016929787ae1aff99884842c2ea6d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x96146937c70b918f764870a226d640f162ce0c46', 'value': 1491.998034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x50e1a1d2fa872f2000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T08:13:56.000Z'}}, {'blockNum': '0x677955', 'uniqueId': '0x47a6fb45a43292f00e9fa8c1a5b899025a41900b0bab4407d80913be9f8a6e7f:log:25', 'hash': '0x47a6fb45a43292f00e9fa8c1a5b899025a41900b0bab4407d80913be9f8a6e7f', 'from': '0x451fc78e1adcc5f8158342931c9055603912be09', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 556.806072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e2f3c8c6624937fff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T08:51:27.000Z'}}, {'blockNum': '0x677989', 'uniqueId': '0x9501d2b874c65b525953c8fac4084c380f1daa9126417fd2416649047db255d7:log:67', 'hash': '0x9501d2b874c65b525953c8fac4084c380f1daa9126417fd2416649047db255d7', 'from': '0x72e65059428d9a2da614a9161e0122d95405a24c', 'to': '0xff2dbe4ba5d2c18766e7ee4d9a2af6aff8fef4c0', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:06:12.000Z'}}, {'blockNum': '0x6779cb', 'uniqueId': '0x3d4bdf95dd488614aa2e13ad4b9ba7ad1647e1874762bb2484aefdf91893bb2a:log:9', 'hash': '0x3d4bdf95dd488614aa2e13ad4b9ba7ad1647e1874762bb2484aefdf91893bb2a', 'from': '0xff2dbe4ba5d2c18766e7ee4d9a2af6aff8fef4c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:24:12.000Z'}}, {'blockNum': '0x6779ea', 'uniqueId': '0xf1802d0dc801f75fc9bcd21a13d8cb22c5f2d3ec6b2a91a25b959480ccafc73c:log:10', 'hash': '0xf1802d0dc801f75fc9bcd21a13d8cb22c5f2d3ec6b2a91a25b959480ccafc73c', 'from': '0xf60fa103662ce52035e0f580924bffb5879678e5', 'to': '0x5dbd3cc3c3ef48b7e8ede33a6b0921c2bb18a739', 'value': 1280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f4000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:30:50.000Z'}}, {'blockNum': '0x677a51', 'uniqueId': '0x4f015fd464771870a45b0c287618fc87d22b55b87b387b51876ab228bf50cba3:log:27', 'hash': '0x4f015fd464771870a45b0c287618fc87d22b55b87b387b51876ab228bf50cba3', 'from': '0x5dbd3cc3c3ef48b7e8ede33a6b0921c2bb18a739', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f4000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:56:03.000Z'}}, {'blockNum': '0x677a6d', 'uniqueId': '0xe382d1416d633f8f447d991c27fdfebc046d95f427077d6318fde61299baa9ab:log:226', 'hash': '0xe382d1416d633f8f447d991c27fdfebc046d95f427077d6318fde61299baa9ab', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x599ad3f92f76e859f7b7a87dbe3aacb81e54c6e6', 'value': 6824.161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0171f042218ba2768000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T10:03:01.000Z'}}, {'blockNum': '0x677b0f', 'uniqueId': '0xbb03b6813deda0e5e70eecdab9b11b94faa6fba4ba65abf6725781a494cf35d9:log:3', 'hash': '0xbb03b6813deda0e5e70eecdab9b11b94faa6fba4ba65abf6725781a494cf35d9', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x4d1e50b89893ed260f0cd82c4677fd331537b93a', 'value': 672.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2476e4db25c6810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T10:45:20.000Z'}}, {'blockNum': '0x677c5b', 'uniqueId': '0xb10242fbc10932fcf7e5d96328d26c5da796acfb2e89b8f3c257a58770f71a69:log:18', 'hash': '0xb10242fbc10932fcf7e5d96328d26c5da796acfb2e89b8f3c257a58770f71a69', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf58a512988838e2f756e883318ebdf986f70c0bd', 'value': 7305.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018c07f4efe30bce0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T12:05:11.000Z'}}, {'blockNum': '0x677e4e', 'uniqueId': '0x2d22ac169029a7f77dfaf98c0259cc2efbbe17a3af5ba4a0a57bc3b7b4e762ed:log:5', 'hash': '0x2d22ac169029a7f77dfaf98c0259cc2efbbe17a3af5ba4a0a57bc3b7b4e762ed', 'from': '0x7b30fed9d91e63a6dc66e1b3face87392f231199', 'to': '0x65ebdd24cf8859e86ba73b5bab09b8ac269255de', 'value': 69.92999999999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03ca79447eb710fb50', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T14:03:06.000Z'}}, {'blockNum': '0x677f24', 'uniqueId': '0x9b7a84cc66ff981e201eeda43de03a18a75f443e1f6db23749c4b98622d792b1:log:10', 'hash': '0x9b7a84cc66ff981e201eeda43de03a18a75f443e1f6db23749c4b98622d792b1', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x720d2def2d5d12e65fa1446a922fb6c5530d2e19', 'value': 7.290066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x652b84670f272000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T14:58:41.000Z'}}, {'blockNum': '0x677fa4', 'uniqueId': '0x41c68986595bc724954762e2dd674026e2224b832a7895d6a8ba948482495c97:log:2', 'hash': '0x41c68986595bc724954762e2dd674026e2224b832a7895d6a8ba948482495c97', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 35112.8057262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x076f7811345c6cd9b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T15:29:17.000Z'}}, {'blockNum': '0x67800a', 'uniqueId': '0x36295ead81a22a928d00cadc2bee20d41df9098a25708809dc5688975f4a01db:log:1', 'hash': '0x36295ead81a22a928d00cadc2bee20d41df9098a25708809dc5688975f4a01db', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35112.8057262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x076f7811345c6cd9b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T15:54:07.000Z'}}, {'blockNum': '0x678023', 'uniqueId': '0x8b221864b71fc5a2700999f550a0c1a6bddee5a6a5312dfa22e516aadd8d7bbd:log:0', 'hash': '0x8b221864b71fc5a2700999f550a0c1a6bddee5a6a5312dfa22e516aadd8d7bbd', 'from': '0x28fe861364202a66818da54ca345ebdd17bb07e0', 'to': '0x5e3593b99021bd607db3435adc04d8598c3b2d6c', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:01:51.000Z'}}, {'blockNum': '0x678089', 'uniqueId': '0x1b28d96b9d12067b81eea2b11a3215548edde331466ea50096b4fed598509cf5:log:5', 'hash': '0x1b28d96b9d12067b81eea2b11a3215548edde331466ea50096b4fed598509cf5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'value': 3796.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcdd32f4bb103200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:23:45.000Z'}}, {'blockNum': '0x678092', 'uniqueId': '0xd8b0a64eb34087bec506d9f2db35942c921726c60abd4e1fbc881c08ec74bc53:log:3', 'hash': '0xd8b0a64eb34087bec506d9f2db35942c921726c60abd4e1fbc881c08ec74bc53', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x436ff7d10169f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:26:23.000Z'}}, {'blockNum': '0x678099', 'uniqueId': '0x0aa2e1200d73c812365edae0a5be5198eb969d2a9ea857e36cc5ef0ed608ff1e:log:152', 'hash': '0x0aa2e1200d73c812365edae0a5be5198eb969d2a9ea857e36cc5ef0ed608ff1e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 21488.58978061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048ce616da0964369400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:27:48.000Z'}}, {'blockNum': '0x6780a1', 'uniqueId': '0x4d80357e879b2be226fc41a32671adde7113e95bd9b68d46310170677ff6b43a:log:3', 'hash': '0x4d80357e879b2be226fc41a32671adde7113e95bd9b68d46310170677ff6b43a', 'from': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 3796.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcdd32f4bb103200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:31:04.000Z'}}, {'blockNum': '0x6780a1', 'uniqueId': '0xe3860e8d18a3653939d24a57cd88dc3d9b38724ecfd39533221edff95d5f00d5:log:5', 'hash': '0xe3860e8d18a3653939d24a57cd88dc3d9b38724ecfd39533221edff95d5f00d5', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 21488.58978061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048ce616da0964369400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:31:04.000Z'}}, {'blockNum': '0x678126', 'uniqueId': '0xfae084a1f46959300737202a458358592e837bad5910188045bfb0e6e6c34089:log:14', 'hash': '0xfae084a1f46959300737202a458358592e837bad5910188045bfb0e6e6c34089', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x436ff7d10169f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:01:01.000Z'}}, {'blockNum': '0x678132', 'uniqueId': '0x0c487cb0a1bca650353d6b173acb92b86d57f9dbbba09dbbed4cf56029500e2b:log:2', 'hash': '0x0c487cb0a1bca650353d6b173acb92b86d57f9dbbba09dbbed4cf56029500e2b', 'from': '0x0861fca546225fbf8806986d211c8398f7457734', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 1549.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x54052eee4721ee0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:03:31.000Z'}}, {'blockNum': '0x678137', 'uniqueId': '0xca8341c2af4945c15f2f8098d8a8cd8959f1cfde78614981f9c6c0e3098734cf:log:85', 'hash': '0xca8341c2af4945c15f2f8098d8a8cd8959f1cfde78614981f9c6c0e3098734cf', 'from': '0xef0bc05e0531dc5d5b2b3bac023b16f2d3ff68a1', 'to': '0x3f24c26f934685693c88c888941d9d97179cac2d', 'value': 190.61406801087924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a554d34f0749b1b96', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:04:42.000Z'}}, {'blockNum': '0x67813d', 'uniqueId': '0x5985ba5438ce8be39d965816741282a1e4a728b6e6ab5f7b372721de592bc60c:log:65', 'hash': '0x5985ba5438ce8be39d965816741282a1e4a728b6e6ab5f7b372721de592bc60c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:06:31.000Z'}}, {'blockNum': '0x678148', 'uniqueId': '0xffb1fb15fde867f51531619f307535c7898935c20d7e18ee99514e67e1fdbc97:log:24', 'hash': '0xffb1fb15fde867f51531619f307535c7898935c20d7e18ee99514e67e1fdbc97', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'value': 4355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec15c412389a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:01.000Z'}}, {'blockNum': '0x678148', 'uniqueId': '0x5d2f7b930f29575c1297151e280aeeff39e408971d6080ffc83efc2d42e2864b:log:25', 'hash': '0x5d2f7b930f29575c1297151e280aeeff39e408971d6080ffc83efc2d42e2864b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 2939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9f52d18082b90c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:01.000Z'}}, {'blockNum': '0x67814a', 'uniqueId': '0xffd5e7fd8b39e40d03519144fd31a9b6d16486a1dca2bfcea1bc7534aaca0f8c:log:20', 'hash': '0xffd5e7fd8b39e40d03519144fd31a9b6d16486a1dca2bfcea1bc7534aaca0f8c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 381.92570604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14b448ae1d40763000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:20.000Z'}}, {'blockNum': '0x67814c', 'uniqueId': '0xeb7491c447bfc98199b82e8dca55616cc4e7d686481d4e32903a9d56613edc02:log:55', 'hash': '0xeb7491c447bfc98199b82e8dca55616cc4e7d686481d4e32903a9d56613edc02', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x3c393088336d83acc8718b2dd1725f7f279ccda1', 'value': 4183.87610562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe2cef1deef8ccec800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:55.000Z'}}, {'blockNum': '0x67814c', 'uniqueId': '0x0f257db4cb18fae9493d2c2c6d75b42b96bf8ceb7edbd74fd3901dc8dde8e43f:log:77', 'hash': '0x0f257db4cb18fae9493d2c2c6d75b42b96bf8ceb7edbd74fd3901dc8dde8e43f', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xf241cac6e0db55e16e94869a3188a11083a9b50b', 'value': 1372.02379035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a60a7b0079cc50c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:55.000Z'}}, {'blockNum': '0x678159', 'uniqueId': '0x055b60c56f70e80aff953738662d279d197e4e02121f0b2b997ac58f905d1ab2:log:2', 'hash': '0x055b60c56f70e80aff953738662d279d197e4e02121f0b2b997ac58f905d1ab2', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 3154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaafa8af1644e080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:11:11.000Z'}}, {'blockNum': '0x67815f', 'uniqueId': '0x3772848edca8dd93a35c957de37372cc900130fbc2d65987ec15cc978305e63c:log:31', 'hash': '0x3772848edca8dd93a35c957de37372cc900130fbc2d65987ec15cc978305e63c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 5329.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0120edd55d8264f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:13:26.000Z'}}, {'blockNum': '0x67815f', 'uniqueId': '0x9de014d0b6d3fd3142c872707e38a1b28f74d17fbe8fc5df97c271da1175e61b:log:37', 'hash': '0x9de014d0b6d3fd3142c872707e38a1b28f74d17fbe8fc5df97c271da1175e61b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 8430.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c908da7bb50b480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:13:26.000Z'}}, {'blockNum': '0x67815f', 'uniqueId': '0x6ae3631ffc112ee0ee391b5c136bd863e1cf60e1303a5df6129243d493a08dd3:log:40', 'hash': '0x6ae3631ffc112ee0ee391b5c136bd863e1cf60e1303a5df6129243d493a08dd3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'value': 9049.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ea9734401aca140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:13:26.000Z'}}, {'blockNum': '0x678169', 'uniqueId': '0x09f255973afe0e1026d1c750a41a36edea9658dda3cd9265f35e449dd93265a6:log:16', 'hash': '0x09f255973afe0e1026d1c750a41a36edea9658dda3cd9265f35e449dd93265a6', 'from': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 9049.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ea9734401aca140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:15:36.000Z'}}, {'blockNum': '0x67818b', 'uniqueId': '0xb3220b4368cf8fe708ba10feda4471f131665655ff6f437ec9eed1fefa71dcfb:log:3', 'hash': '0xb3220b4368cf8fe708ba10feda4471f131665655ff6f437ec9eed1fefa71dcfb', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:22:28.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xd84d13edb0dbb9362292bcea472889de70fa09b94e91e7617711dfbb9c700e73:log:14', 'hash': '0xd84d13edb0dbb9362292bcea472889de70fa09b94e91e7617711dfbb9c700e73', 'from': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec15c412389a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xb2d24baa2bd2c2f443a13b95a127b4b4a7504334ea6bf063d1fa44af283dcd51:log:16', 'hash': '0xb2d24baa2bd2c2f443a13b95a127b4b4a7504334ea6bf063d1fa44af283dcd51', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1549.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x54052eee4721ee0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xb6fcf1ccc574a92e05eec2402411aa079d758933de801894784552a92749dd00:log:17', 'hash': '0xb6fcf1ccc574a92e05eec2402411aa079d758933de801894784552a92749dd00', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9f52d18082b90c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xb6ca052fbc6bd82b4f2c3d160a38af4ab494c555996af28ac8abc12e7da5fe7d:log:18', 'hash': '0xb6ca052fbc6bd82b4f2c3d160a38af4ab494c555996af28ac8abc12e7da5fe7d', 'from': '0x3f24c26f934685693c88c888941d9d97179cac2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 290.61406801087924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0fc114931dd7ab1b96', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678195', 'uniqueId': '0xbfa607715b280a1afa81b9d41631fdd960f350effd9b3cab4c67e5d4e162ed01:log:2', 'hash': '0xbfa607715b280a1afa81b9d41631fdd960f350effd9b3cab4c67e5d4e162ed01', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 38420.85088124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0822cc6a7a18740e7000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:57.000Z'}}, {'blockNum': '0x678195', 'uniqueId': '0xa9dae8b2711f859a41b003cd296202fb6cfb9f9be7429dc0b1c4f0b8a760f9ad:log:13', 'hash': '0xa9dae8b2711f859a41b003cd296202fb6cfb9f9be7429dc0b1c4f0b8a760f9ad', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 5329.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0120edd55d8264f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:57.000Z'}}, {'blockNum': '0x678197', 'uniqueId': '0x23acbf02b481236e331147b144a28b2a341f27a972b6aea3ea9563678eea9eb0:log:5', 'hash': '0x23acbf02b481236e331147b144a28b2a341f27a972b6aea3ea9563678eea9eb0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 2195.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7708d8b2272abc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:25:50.000Z'}}, {'blockNum': '0x67819d', 'uniqueId': '0x8283ec80eb00b4d1a1a4ee6e26162de716f83a4855ee16fa248edf11b41a3328:log:4', 'hash': '0x8283ec80eb00b4d1a1a4ee6e26162de716f83a4855ee16fa248edf11b41a3328', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 5644.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x013201562c915d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:27:05.000Z'}}, {'blockNum': '0x6781aa', 'uniqueId': '0xc1af5038749a655935b6da69510bef55abb5cecedc489813b065508a9c323a1f:log:37', 'hash': '0xc1af5038749a655935b6da69510bef55abb5cecedc489813b065508a9c323a1f', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 8430.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c908da7bb50b480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:30:09.000Z'}}, {'blockNum': '0x6781ab', 'uniqueId': '0x1b5755be6540d0c1b2e83393035a330e5900ca0b6c30a4d47bc7f98c0b355e42:log:6', 'hash': '0x1b5755be6540d0c1b2e83393035a330e5900ca0b6c30a4d47bc7f98c0b355e42', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 38420.85088124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0822cc6a7a18740e7000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:30:29.000Z'}}, {'blockNum': '0x6781ad', 'uniqueId': '0x5d2f278d418e9f88c9392deb54d3782deeab4b32a6227d4b94a09b2353058d03:log:13', 'hash': '0x5d2f278d418e9f88c9392deb54d3782deeab4b32a6227d4b94a09b2353058d03', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 205477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b82ee3494322b740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:31:02.000Z'}}, {'blockNum': '0x6781b3', 'uniqueId': '0x781b9923abed84fd8d77b55b06f965be224a0c6984f45208133fae94b2897b0b:log:2', 'hash': '0x781b9923abed84fd8d77b55b06f965be224a0c6984f45208133fae94b2897b0b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 9014.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e8b17b458ae7680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:31:27.000Z'}}, {'blockNum': '0x6781bc', 'uniqueId': '0xe5b6b944e78cd848f3bd8c891f9c82491c28abfeecdfcbf315418934f6c6b875:log:9', 'hash': '0xe5b6b944e78cd848f3bd8c891f9c82491c28abfeecdfcbf315418934f6c6b875', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 381.92570604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14b448ae1d40763000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:34:06.000Z'}}, {'blockNum': '0x6781bc', 'uniqueId': '0xc55b491f12daf20cdb4d64166f68dd0aad1cf97ccf22c9601ab05d3f9d6523db:log:10', 'hash': '0xc55b491f12daf20cdb4d64166f68dd0aad1cf97ccf22c9601ab05d3f9d6523db', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaafa8af1644e080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:34:06.000Z'}}, {'blockNum': '0x6781d7', 'uniqueId': '0x44559ec60f657c1cefbb79fb643fea00da381cbbfe0a9765c7af8b2f823faa90:log:37', 'hash': '0x44559ec60f657c1cefbb79fb643fea00da381cbbfe0a9765c7af8b2f823faa90', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 9014.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e8b17b458ae7680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:41:20.000Z'}}, {'blockNum': '0x6781db', 'uniqueId': '0x8994cc1ae5522f581b2faaa3694fe3efb9778f16b72daa645babc594f7f0dc7e:log:19', 'hash': '0x8994cc1ae5522f581b2faaa3694fe3efb9778f16b72daa645babc594f7f0dc7e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 55079.12881496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ba9d8765b7988ca6000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:42:48.000Z'}}, {'blockNum': '0x6781e0', 'uniqueId': '0x4f2404a08759326ec01547e38e124251c7af5f11b8aa45dea8a1499769ce1a7c:log:28', 'hash': '0x4f2404a08759326ec01547e38e124251c7af5f11b8aa45dea8a1499769ce1a7c', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 5644.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x013201562c915d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:43:35.000Z'}}, {'blockNum': '0x6781e5', 'uniqueId': '0x498f4287a84dd94947f0e23c769bc53b3e825e247f37ce1a27522c575fb92ee7:log:5', 'hash': '0x498f4287a84dd94947f0e23c769bc53b3e825e247f37ce1a27522c575fb92ee7', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 55079.12881496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ba9d8765b7988ca6000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:45:40.000Z'}}, {'blockNum': '0x6781f6', 'uniqueId': '0x75a133e4cca132ccaf18acc947afbec54c4a001e3c59e34c66efbe1c041a21d8:log:38', 'hash': '0x75a133e4cca132ccaf18acc947afbec54c4a001e3c59e34c66efbe1c041a21d8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 224817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2f9b5a9f207c02240000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:50:56.000Z'}}, {'blockNum': '0x6781f9', 'uniqueId': '0x0a86bc193084ac6b0995bc55bf208b3dc6c035e71e56de1e8bc166a98432d485:log:49', 'hash': '0x0a86bc193084ac6b0995bc55bf208b3dc6c035e71e56de1e8bc166a98432d485', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 3146.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaa969f6789ff380000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:52:42.000Z'}}, {'blockNum': '0x678213', 'uniqueId': '0xcfbf0b8637ce5e6b28c0fee6ef3d3853fb72b874fd28b8a80c6ae15fa71edd60:log:21', 'hash': '0xcfbf0b8637ce5e6b28c0fee6ef3d3853fb72b874fd28b8a80c6ae15fa71edd60', 'from': '0x977c827a997e6cb67e70daeaa7145b17d0cb8bda', 'to': '0x02d66417fbe0f07585710703d4d6931c52768074', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:59:56.000Z'}}, {'blockNum': '0x678214', 'uniqueId': '0xa6fbb44f47f3051ec672a791bd4416ce7014893bcc67b6b5375f5b5839f0c4c3:log:2', 'hash': '0xa6fbb44f47f3051ec672a791bd4416ce7014893bcc67b6b5375f5b5839f0c4c3', 'from': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 5342.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01219f7819b129f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:00:14.000Z'}}, {'blockNum': '0x67822d', 'uniqueId': '0x4debdd71019a0c33a3880eff328f8967e3f9b0c1e79a47e3d3a360127330baa7:log:24', 'hash': '0x4debdd71019a0c33a3880eff328f8967e3f9b0c1e79a47e3d3a360127330baa7', 'from': '0x25be66eecae4a2555c452e2c0fbec849e067c0d7', 'to': '0x32433e991eb048752ff30af2a541a2971e01502c', 'value': 87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04b75e170de2fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:05:39.000Z'}}, {'blockNum': '0x678231', 'uniqueId': '0x0d180f0480f71144f3e854add27c9a8158d5f05840b2a33ca82efa3acc02f682:log:6', 'hash': '0x0d180f0480f71144f3e854add27c9a8158d5f05840b2a33ca82efa3acc02f682', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa4dad4df5481ee2d17a23d979d6c8c5c91c1e350', 'value': 3197.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad578f0c6909f60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:06:17.000Z'}}, {'blockNum': '0x678241', 'uniqueId': '0x6c6db279e33e7a998991b21e61818a04af0da010759bb5cdef4cb5fc9b5feaf7:log:4', 'hash': '0x6c6db279e33e7a998991b21e61818a04af0da010759bb5cdef4cb5fc9b5feaf7', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 5382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123c24104f120580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:09:44.000Z'}}, {'blockNum': '0x678243', 'uniqueId': '0x338bbdc1f1c7de6d5048562f9c4b341d9ae980c49331e78dda9274d7d18f13e1:log:23', 'hash': '0x338bbdc1f1c7de6d5048562f9c4b341d9ae980c49331e78dda9274d7d18f13e1', 'from': '0x62273cfaddf55c4caa380fa0a3816dc9b7439eed', 'to': '0xae8a6dce6010babc57af1ef80083c9f0ac999500', 'value': 249.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d82583fae8b580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:11:22.000Z'}}, {'blockNum': '0x67824c', 'uniqueId': '0xb0652200628bb97385fe09c716f8b9bf5d7bd8ff16d7a39b648eb3a7f88ac574:log:4', 'hash': '0xb0652200628bb97385fe09c716f8b9bf5d7bd8ff16d7a39b648eb3a7f88ac574', 'from': '0x02d66417fbe0f07585710703d4d6931c52768074', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:14:10.000Z'}}, {'blockNum': '0x678281', 'uniqueId': '0x5ddf6ad63d78f076b46cf31df43c5b5e729e4322e45c1f838e82982cb40966c1:log:2', 'hash': '0x5ddf6ad63d78f076b46cf31df43c5b5e729e4322e45c1f838e82982cb40966c1', 'from': '0xae8a6dce6010babc57af1ef80083c9f0ac999500', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 249.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d82583fae8b580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:24:11.000Z'}}, {'blockNum': '0x678281', 'uniqueId': '0x0d461360cc123ed1ead1cc4a8b44960d83414fc3d17a67920a861270a97a70e7:log:4', 'hash': '0x0d461360cc123ed1ead1cc4a8b44960d83414fc3d17a67920a861270a97a70e7', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123c24104f120580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:24:11.000Z'}}, {'blockNum': '0x67828b', 'uniqueId': '0xc839069ba705df416fe18658aed4c2565c0a6f02b1f73fad82ab4eb471fdbc24:log:44', 'hash': '0xc839069ba705df416fe18658aed4c2565c0a6f02b1f73fad82ab4eb471fdbc24', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7f3c6b712e85e72b721f740fcec62b40a84bd3a', 'value': 6349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01582e13258e6b140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:26:38.000Z'}}, {'blockNum': '0x6782c7', 'uniqueId': '0xa99e41bd8b9ec59204fc6406cd58fcbc12775f186e86aac27bed1dfc4a365518:log:9', 'hash': '0xa99e41bd8b9ec59204fc6406cd58fcbc12775f186e86aac27bed1dfc4a365518', 'from': '0xf7f3c6b712e85e72b721f740fcec62b40a84bd3a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01582e13258e6b140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:44:13.000Z'}}, {'blockNum': '0x6782ca', 'uniqueId': '0x99847f00d1aa0a28310d84aab4c30f5595ff1519b89f8438ddabbe286f73fa4f:log:8', 'hash': '0x99847f00d1aa0a28310d84aab4c30f5595ff1519b89f8438ddabbe286f73fa4f', 'from': '0xa4dad4df5481ee2d17a23d979d6c8c5c91c1e350', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 3197.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad578f0c6909f60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:45:28.000Z'}}, {'blockNum': '0x6782f0', 'uniqueId': '0x6be5c28e0f1d163228ec9c59677a1b9754b958ab119922b15e1482b4f5a48a19:log:3', 'hash': '0x6be5c28e0f1d163228ec9c59677a1b9754b958ab119922b15e1482b4f5a48a19', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 2925.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9e9ba1ae727de40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:53:25.000Z'}}, {'blockNum': '0x678301', 'uniqueId': '0xfbe4e9c36e85bde421aacd1b9726dfeff47036a746b6caaabb2ef9415ecd6944:log:25', 'hash': '0xfbe4e9c36e85bde421aacd1b9726dfeff47036a746b6caaabb2ef9415ecd6944', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb8be5c22e4ef41bd16f14d28720c9f03a32c10a5', 'value': 2461.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x856ddb6acc82888000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:58:30.000Z'}}, {'blockNum': '0x678303', 'uniqueId': '0x1eec37079c66f115dac8c4df22c24483e4d68d32ab8d1ed845b1c65ece021a3e:log:16', 'hash': '0x1eec37079c66f115dac8c4df22c24483e4d68d32ab8d1ed845b1c65ece021a3e', 'from': '0xb8be5c22e4ef41bd16f14d28720c9f03a32c10a5', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 2461.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x856ddb6acc82888000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:58:42.000Z'}}, {'blockNum': '0x678396', 'uniqueId': '0x45cfe34369a92c61a78a143b5fd1488641754221f49246c3cdd949696f11f936:log:0', 'hash': '0x45cfe34369a92c61a78a143b5fd1488641754221f49246c3cdd949696f11f936', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:33:36.000Z'}}, {'blockNum': '0x6783be', 'uniqueId': '0xc19a66a9302c054eed24217352f2cb6f510bce1f8e63da47805eabb2aa51dfbf:log:151', 'hash': '0xc19a66a9302c054eed24217352f2cb6f510bce1f8e63da47805eabb2aa51dfbf', 'from': '0x1a2e8b0c196f1b64796fa9600d57725c0d9ecbe8', 'to': '0x89c163c19df2df16fb28154f68b8cd2cd0a06b7e', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:41:44.000Z'}}, {'blockNum': '0x6783f7', 'uniqueId': '0x0cc59a200ffb32216b9f99ccba6a0e9996f4ab46830685bbe8bb98c66b73d853:log:27', 'hash': '0x0cc59a200ffb32216b9f99ccba6a0e9996f4ab46830685bbe8bb98c66b73d853', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:54:58.000Z'}}, {'blockNum': '0x6783f9', 'uniqueId': '0x92ae88513833b9fa7672755c55c0705dc2f43db93406b7e57481c0ff1cd566f8:log:45', 'hash': '0x92ae88513833b9fa7672755c55c0705dc2f43db93406b7e57481c0ff1cd566f8', 'from': '0x1a2e8b0c196f1b64796fa9600d57725c0d9ecbe8', 'to': '0x89c163c19df2df16fb28154f68b8cd2cd0a06b7e', 'value': 7119.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0181f11b2ef60cc10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:55:12.000Z'}}, {'blockNum': '0x678427', 'uniqueId': '0xdf43b7836584a319aa09fee58b9cc126fd56baf2c9d7eed3a54e2772a541c2b1:log:29', 'hash': '0xdf43b7836584a319aa09fee58b9cc126fd56baf2c9d7eed3a54e2772a541c2b1', 'from': '0x89c163c19df2df16fb28154f68b8cd2cd0a06b7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8119.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b826e4dcbbeb610000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:04:39.000Z'}}, {'blockNum': '0x678442', 'uniqueId': '0x2a184310d0ac45ef725016407a0d8b1503457d27c58a26bd573326344beceec4:log:0', 'hash': '0x2a184310d0ac45ef725016407a0d8b1503457d27c58a26bd573326344beceec4', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x430ed2d217d6340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:11:47.000Z'}}, {'blockNum': '0x67847b', 'uniqueId': '0x2f3c1ee24fbaeb2553df6318f5949dcbb76ceca175012c6290d29db1c9fddf3b:log:8', 'hash': '0x2f3c1ee24fbaeb2553df6318f5949dcbb76ceca175012c6290d29db1c9fddf3b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 206.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b33031e7073f30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:21:56.000Z'}}, {'blockNum': '0x678487', 'uniqueId': '0x2bbf3d7dccc1686b693bbb6d3a30a93316af0227ac0051c1d2db3b90cf164465:log:2', 'hash': '0x2bbf3d7dccc1686b693bbb6d3a30a93316af0227ac0051c1d2db3b90cf164465', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0xcdf20191fc4886dbe8a073ca06a0f0f7ac8cf78c', 'value': 206.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b33031e7073f30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:25:09.000Z'}}, {'blockNum': '0x678488', 'uniqueId': '0xf19ce5f621dafe1d9c754632a66e552ececddd651b5851a928b673b5fa616b2a:log:5', 'hash': '0xf19ce5f621dafe1d9c754632a66e552ececddd651b5851a928b673b5fa616b2a', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'value': 2462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x85771d13c3d3b80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:25:24.000Z'}}, {'blockNum': '0x67848b', 'uniqueId': '0x8aedf8d302353dd09d8ca8c94c34774831bd0d2be0ad3fd7c15cdf48c5859dbf:log:12', 'hash': '0x8aedf8d302353dd09d8ca8c94c34774831bd0d2be0ad3fd7c15cdf48c5859dbf', 'from': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 2462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x85771d13c3d3b80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:25:42.000Z'}}, {'blockNum': '0x678490', 'uniqueId': '0x3ee6bef5474be4527fef4741448e8296f9b0bc1cdce8c9017c527cf6fe1993f5:log:0', 'hash': '0x3ee6bef5474be4527fef4741448e8296f9b0bc1cdce8c9017c527cf6fe1993f5', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38ebad5cdc90280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:26:54.000Z'}}, {'blockNum': '0x6784b3', 'uniqueId': '0x3707885084b1ba18105cbcc2ea1f0de42669612012981d7efb97c7e33de10847:log:5', 'hash': '0x3707885084b1ba18105cbcc2ea1f0de42669612012981d7efb97c7e33de10847', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7bfa802ef4665c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:34:26.000Z'}}, {'blockNum': '0x6784ba', 'uniqueId': '0x124c9da9631bb51a1cdf059b698b7378ebf495f41817323bb7b02d5f6ac9ba86:log:4', 'hash': '0x124c9da9631bb51a1cdf059b698b7378ebf495f41817323bb7b02d5f6ac9ba86', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xddfeb815266c4fce1d0830d0a6c765ba6686f27c', 'value': 996.34461437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x36030f23e8d5685400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:36:14.000Z'}}, {'blockNum': '0x67854f', 'uniqueId': '0xffdf7147cd3cfeef2620e1b22a27c9b605cd5f7cf39e28d62fb2a4a9fccd8eb9:log:10', 'hash': '0xffdf7147cd3cfeef2620e1b22a27c9b605cd5f7cf39e28d62fb2a4a9fccd8eb9', 'from': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2925.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9e9ba1ae727de40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:11:27.000Z'}}, {'blockNum': '0x678582', 'uniqueId': '0x9c67e717d31f285bed40d2ecf48472373d042776811a05211e47d4e204f64ff4:log:20', 'hash': '0x9c67e717d31f285bed40d2ecf48472373d042776811a05211e47d4e204f64ff4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 870.82379035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2f351b97804afd0c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:22:56.000Z'}}, {'blockNum': '0x678584', 'uniqueId': '0xad060f7cd50896944b9518586317c0580967ed860ee07bda243a018da61f7f29:log:3', 'hash': '0xad060f7cd50896944b9518586317c0580967ed860ee07bda243a018da61f7f29', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 870.82379035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2f351b97804afd0c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:23:40.000Z'}}, {'blockNum': '0x67859a', 'uniqueId': '0x26ae7ed61e19f8d95b21abc47e0439b77163ff0ddc8e90c22a6e96df5a9e919f:log:18', 'hash': '0x26ae7ed61e19f8d95b21abc47e0439b77163ff0ddc8e90c22a6e96df5a9e919f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 1959.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6a3db04488da8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:29:23.000Z'}}, {'blockNum': '0x67859c', 'uniqueId': '0x2861c89a434f2905cf27ab65402753d5c6b3c18998b846a0dd760d690381135e:log:23', 'hash': '0x2861c89a434f2905cf27ab65402753d5c6b3c18998b846a0dd760d690381135e', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1959.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6a3db04488da8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:30:00.000Z'}}, {'blockNum': '0x6785a1', 'uniqueId': '0xfa548146214aae1fe95e672cab229220befe339ac27c6d684d6e203b4eda8517:log:6', 'hash': '0xfa548146214aae1fe95e672cab229220befe339ac27c6d684d6e203b4eda8517', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 2522.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x88c2e211a1fb780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:30:51.000Z'}}, {'blockNum': '0x6785a3', 'uniqueId': '0xa51dbba2f8153bd065dc9d018499cd6391ad974f4459b535cc268d9ea28a00fd:log:14', 'hash': '0xa51dbba2f8153bd065dc9d018499cd6391ad974f4459b535cc268d9ea28a00fd', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 2522.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x88c2e211a1fb780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:31:06.000Z'}}, {'blockNum': '0x6785bb', 'uniqueId': '0x998214faf266cf74476c9ac486a0208801bfd61b4065916477645828105d634d:log:13', 'hash': '0x998214faf266cf74476c9ac486a0208801bfd61b4065916477645828105d634d', 'from': '0x5735fbac26bb21ca3c5228022cc382136038087c', 'to': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'value': 2097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x71adb8959e2a240000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:36:35.000Z'}}, {'blockNum': '0x6785e5', 'uniqueId': '0xb84255356f318a878794ed3f53335d45485e1759ad27c0f782ae88945e7a62cb:log:25', 'hash': '0xb84255356f318a878794ed3f53335d45485e1759ad27c0f782ae88945e7a62cb', 'from': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x71adb8959e2a240000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:44:02.000Z'}}, {'blockNum': '0x67867c', 'uniqueId': '0x26a991a913be2f9eea0249cb56d4fa3d6e267094c7ba9573b2f63798827d358d:log:65', 'hash': '0x26a991a913be2f9eea0249cb56d4fa3d6e267094c7ba9573b2f63798827d358d', 'from': '0x5735fbac26bb21ca3c5228022cc382136038087c', 'to': '0xc36fe8ea0a785dc7d80620d8271f8d8ef00364c9', 'value': 414.62245983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x167a0ae27391d19c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:27:11.000Z'}}, {'blockNum': '0x678695', 'uniqueId': '0x55dda42c15d43c9fdaefc7b78a96d27fb588e50a140af20143fecdfb67ed7555:log:6', 'hash': '0x55dda42c15d43c9fdaefc7b78a96d27fb588e50a140af20143fecdfb67ed7555', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 36371.62466682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07b3b5b07958a97ea800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:32:03.000Z'}}, {'blockNum': '0x6786d9', 'uniqueId': '0x0dfeecba761c2164d476bc21371213e2e5638fff540d5b7c671dbd6c27ab06b7:log:1', 'hash': '0x0dfeecba761c2164d476bc21371213e2e5638fff540d5b7c671dbd6c27ab06b7', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 36371.62466682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07b3b5b07958a97ea800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:45:19.000Z'}}, {'blockNum': '0x678707', 'uniqueId': '0xdf606cd85fda49c40c9b1326c5b8379ce19e0d7ce3ea174c186077d0d229d9fa:log:18', 'hash': '0xdf606cd85fda49c40c9b1326c5b8379ce19e0d7ce3ea174c186077d0d229d9fa', 'from': '0xc36fe8ea0a785dc7d80620d8271f8d8ef00364c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 414.62245983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x167a0ae27391d19c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:54:27.000Z'}}, {'blockNum': '0x678728', 'uniqueId': '0x2c9332867df2bc6a9ad019e31a4f18a8853bb5871a22d000066175d873cecaf9:log:4', 'hash': '0x2c9332867df2bc6a9ad019e31a4f18a8853bb5871a22d000066175d873cecaf9', 'from': '0x25be66eecae4a2555c452e2c0fbec849e067c0d7', 'to': '0xe74d7ea4244bd0d316d52f647d14262226ada36d', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T23:01:52.000Z'}}, {'blockNum': '0x67881a', 'uniqueId': '0xd51d87a3311ea09628cc7bcbb2679ab0eeb74d920aed0930cc9dc14ce1250e60:log:58', 'hash': '0xd51d87a3311ea09628cc7bcbb2679ab0eeb74d920aed0930cc9dc14ce1250e60', 'from': '0x01aaffd0f7c00578e7415af6d73c16dc2a7463b0', 'to': '0x9cec467ac2c5fc3b6d9bff622beec4f977b48c24', 'value': 5.224227204351692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x48802ef695508b08', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T23:57:22.000Z'}}, {'blockNum': '0x678886', 'uniqueId': '0x42ac4949c0ed2da4a01908b1c2ee2cebbb312b6191da87c9f3a71effcfcfcefe:log:2', 'hash': '0x42ac4949c0ed2da4a01908b1c2ee2cebbb312b6191da87c9f3a71effcfcfcefe', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 36076.48589279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3b5d0ea140b0f9c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:24:26.000Z'}}, {'blockNum': '0x6788dc', 'uniqueId': '0x1c184e3d01189861be51a3c25010adddc41eeab121b68be53b6587427f582616:log:76', 'hash': '0x1c184e3d01189861be51a3c25010adddc41eeab121b68be53b6587427f582616', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36076.48589279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3b5d0ea140b0f9c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:43:56.000Z'}}, {'blockNum': '0x6788ec', 'uniqueId': '0x780c96fab0ad15ccc270eadc2f41e5f863ae6a1fc775d9cb87d803620ae00751:log:75', 'hash': '0x780c96fab0ad15ccc270eadc2f41e5f863ae6a1fc775d9cb87d803620ae00751', 'from': '0x2fff2815f159f549c6c6b6f7a4a5b4ef845266c5', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1e-18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:48:17.000Z'}}, {'blockNum': '0x6788f5', 'uniqueId': '0xa484952ca331f2205d39de68cb0a0c7db1aa6e64262c7ed41b70e8d220078bd8:log:61', 'hash': '0xa484952ca331f2205d39de68cb0a0c7db1aa6e64262c7ed41b70e8d220078bd8', 'from': '0x4d1f5a0bfb2c752caa8c86342224b7c5e15b8dd7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 195.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a9929bc2ce7f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:50:12.000Z'}}, {'blockNum': '0x678927', 'uniqueId': '0xb0ecd0443341221f560cee2954d7bed43aca573c723d5872ab720ac9b85b489a:log:6', 'hash': '0xb0ecd0443341221f560cee2954d7bed43aca573c723d5872ab720ac9b85b489a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x592b53d808e888e09a9c79d0aeacb621483d334f', 'value': 1.885427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1a2a61ddf8ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:02:14.000Z'}}, {'blockNum': '0x678997', 'uniqueId': '0xad0a63763006f85c4a35686d2de7d51cbce880c95315a063afcaaa06c21c8dac:log:0', 'hash': '0xad0a63763006f85c4a35686d2de7d51cbce880c95315a063afcaaa06c21c8dac', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x964e58de799aa524adbfa40047b4f8685e898ac1', 'value': 2355.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7fb43ce0d6de4e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:29:13.000Z'}}, {'blockNum': '0x678998', 'uniqueId': '0xbcc0bf352fe59dc07bc814baeeeaf96d3bd0c5e80534c565ece9cad04745ac62:log:35', 'hash': '0xbcc0bf352fe59dc07bc814baeeeaf96d3bd0c5e80534c565ece9cad04745ac62', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'value': 1514.051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5213adb2b6c8f38000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:29:39.000Z'}}, {'blockNum': '0x6789a9', 'uniqueId': '0x75edf4f490f3d2dcd3264cf0f78d658df9c4599e12b5e565e5cf1d39f25a6a93:log:71', 'hash': '0x75edf4f490f3d2dcd3264cf0f78d658df9c4599e12b5e565e5cf1d39f25a6a93', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cbb3a3ff08d080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:32:39.000Z'}}, {'blockNum': '0x6789ab', 'uniqueId': '0x49c547221c1ef5e987c76c90d278e4faab66c0c75cc4ec52903db97ce4cefa77:log:8', 'hash': '0x49c547221c1ef5e987c76c90d278e4faab66c0c75cc4ec52903db97ce4cefa77', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cbb3a3ff08d080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:33:20.000Z'}}, {'blockNum': '0x6789da', 'uniqueId': '0x916f1b1d7cbc4b48eb6db9376370211f3772845a74d44348dc19846bd874fb29:log:21', 'hash': '0x916f1b1d7cbc4b48eb6db9376370211f3772845a74d44348dc19846bd874fb29', 'from': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1514.051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5213adb2b6c8f38000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:44:20.000Z'}}, {'blockNum': '0x6789e4', 'uniqueId': '0x96b710371fb1702f147d717d9e36f11b4c6f9a23bb928a43fdc1a16d54fd0254:log:4', 'hash': '0x96b710371fb1702f147d717d9e36f11b4c6f9a23bb928a43fdc1a16d54fd0254', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 7989.346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b11a72d1a177fd0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:46:59.000Z'}}, {'blockNum': '0x678a36', 'uniqueId': '0x0cac3f27abb053a6617e9cfabbdf6bc3e9aa52932e74a7ea7db6d4c17aea270c:log:4', 'hash': '0x0cac3f27abb053a6617e9cfabbdf6bc3e9aa52932e74a7ea7db6d4c17aea270c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xddfeb815266c4fce1d0830d0a6c765ba6686f27c', 'value': 2091.94045982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7167817ca1766cb800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:09:10.000Z'}}, {'blockNum': '0x678a53', 'uniqueId': '0x96ec8724ddd8f2709f8c4206db2277a901d182101f6c9a216625e5af7b6db5d6:log:0', 'hash': '0x96ec8724ddd8f2709f8c4206db2277a901d182101f6c9a216625e5af7b6db5d6', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x93b9f8533a14eccb4173704ceda727b830e57620', 'value': 3196.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad49ae55b562920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:16:26.000Z'}}, {'blockNum': '0x678a7f', 'uniqueId': '0x77c1d71e5cc9064205b191bf4851ec614c86ed2dd23eed28bf89e2618d7bd821:log:18', 'hash': '0x77c1d71e5cc9064205b191bf4851ec614c86ed2dd23eed28bf89e2618d7bd821', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 26663.63629495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05a570496441e35bfc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:28:37.000Z'}}, {'blockNum': '0x678a87', 'uniqueId': '0xd5f43b2c8810a2deeedd5dbfef8cc433ab9290eaa23b6d7994e143661d6b71cf:log:12', 'hash': '0xd5f43b2c8810a2deeedd5dbfef8cc433ab9290eaa23b6d7994e143661d6b71cf', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 26663.63629495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05a570496441e35bfc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:30:16.000Z'}}, {'blockNum': '0x678a93', 'uniqueId': '0x4ae4bce8c26b2f062b407a51ddeeab16f66e079e2923c6615911e192fa2c273c:log:9', 'hash': '0x4ae4bce8c26b2f062b407a51ddeeab16f66e079e2923c6615911e192fa2c273c', 'from': '0x93b9f8533a14eccb4173704ceda727b830e57620', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3196.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad49ae55b562920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:34:19.000Z'}}, {'blockNum': '0x678b31', 'uniqueId': '0x686f3ccce7869b4062a1df2bde74ce4421149fa89c10b54ce47bcb139c0abe14:log:16', 'hash': '0x686f3ccce7869b4062a1df2bde74ce4421149fa89c10b54ce47bcb139c0abe14', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'value': 12475.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02a450a4d753621d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:08:49.000Z'}}, {'blockNum': '0x678b70', 'uniqueId': '0x0f3796ddccd277858da9c532beec9346843c28cf627f42cee45e881e9c1cfc20:log:3', 'hash': '0x0f3796ddccd277858da9c532beec9346843c28cf627f42cee45e881e9c1cfc20', 'from': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12475.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02a450a4d753621d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:24:09.000Z'}}, {'blockNum': '0x678b79', 'uniqueId': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581:log:115', 'hash': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4148.457282767102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe0e368ef353f4d0c60', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:25:58.000Z'}}, {'blockNum': '0x678b79', 'uniqueId': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581:log:117', 'hash': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xe8e70e656d43f828c543cb8d4d190362d65204bd', 'value': 4148.457282767102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe0e368ef353f4d0c60', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:25:58.000Z'}}, {'blockNum': '0x678b8d', 'uniqueId': '0xf5af9366e1f27d3a616af239f091811e658b65400078a13adc34fe016710e165:log:55', 'hash': '0xf5af9366e1f27d3a616af239f091811e658b65400078a13adc34fe016710e165', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x19a43191f047c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:30:16.000Z'}}, {'blockNum': '0x678b9a', 'uniqueId': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023:log:48', 'hash': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3196.763511874489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad4c0174def124ea43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:33:44.000Z'}}, {'blockNum': '0x678b9a', 'uniqueId': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023:log:50', 'hash': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xe8e70e656d43f828c543cb8d4d190362d65204bd', 'value': 3196.763511874489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad4c0174def124ea43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:33:44.000Z'}}, {'blockNum': '0x678bbf', 'uniqueId': '0x35cf6ee516b3ae534aea88ca780f4edf27746303e3c29143529c3991e258f4f9:log:10', 'hash': '0x35cf6ee516b3ae534aea88ca780f4edf27746303e3c29143529c3991e258f4f9', 'from': '0xe1255e8e1ab7bba0c732f33940e76b32dd15f1f1', 'to': '0x35d5b964c4a209984e2c0af3eb5ba5342bb694b2', 'value': 2390.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x81984b880983ee0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:42:45.000Z'}}, {'blockNum': '0x678bd9', 'uniqueId': '0x7749d75c682d9ce99f78296bd7eac9821222d74ef2501551830a8d9f15a7b269:log:5', 'hash': '0x7749d75c682d9ce99f78296bd7eac9821222d74ef2501551830a8d9f15a7b269', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 36072.14772216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3799ca2dffae0e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:49:06.000Z'}}, {'blockNum': '0x678bd9', 'uniqueId': '0x46589082be567e09abf0ad350ed487f71e802128b5a91bdf81c0d0c09405c5f9:log:6', 'hash': '0x46589082be567e09abf0ad350ed487f71e802128b5a91bdf81c0d0c09405c5f9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x54d955860b266feeb292443a9e055ebcd1e656ae', 'value': 6144.83895892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014d1cc56c62b7bed000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:49:06.000Z'}}, {'blockNum': '0x678bdb', 'uniqueId': '0x552cc7d17dc76b6e87e39e73ba2b8c2649dfa3f32bff297637d345bec92f549d:log:4', 'hash': '0x552cc7d17dc76b6e87e39e73ba2b8c2649dfa3f32bff297637d345bec92f549d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 2892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9cc68ff586fdb00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:49:27.000Z'}}, {'blockNum': '0x678be5', 'uniqueId': '0x037d1bfa8206613173baa818ccbabbdbbb60b33f1212a64c8f6d6a3aff86c462:log:20', 'hash': '0x037d1bfa8206613173baa818ccbabbdbbb60b33f1212a64c8f6d6a3aff86c462', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 6472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015ed90aeddfd8200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:53:16.000Z'}}, {'blockNum': '0x678bf3', 'uniqueId': '0x2e6a88816aacd824d93eca9bfe6cc06d602e863a8081dfad0c6238c0b15bb0b2:log:17', 'hash': '0x2e6a88816aacd824d93eca9bfe6cc06d602e863a8081dfad0c6238c0b15bb0b2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe7a153101f16fd83825692fa5bbd5d3d3dbc15dd', 'value': 8076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b5cd03ab84a6b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:56:59.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0x80241b249df1361f892294ffa639082af56c57fb52a3d52ac87ea053315c351e:log:29', 'hash': '0x80241b249df1361f892294ffa639082af56c57fb52a3d52ac87ea053315c351e', 'from': '0x54d955860b266feeb292443a9e055ebcd1e656ae', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 6144.83895892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014d1cc56c62b7bed000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0x98508cf1014f6b7b13b48097f3f581a935004da40b5a6f7743fb4fb8ab27de70:log:34', 'hash': '0x98508cf1014f6b7b13b48097f3f581a935004da40b5a6f7743fb4fb8ab27de70', 'from': '0xe7a153101f16fd83825692fa5bbd5d3d3dbc15dd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 8076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b5cd03ab84a6b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0xc305bc4c801c2c90cf7a908326b1118efc3c50027b9f47819ce5f6fe7490d0f0:log:38', 'hash': '0xc305bc4c801c2c90cf7a908326b1118efc3c50027b9f47819ce5f6fe7490d0f0', 'from': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 2892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9cc68ff586fdb00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0x4f2998e7fe31fa94273ef7dd4a37cb02b9436f7e7162e8ae4b91ed27d004e966:log:45', 'hash': '0x4f2998e7fe31fa94273ef7dd4a37cb02b9436f7e7162e8ae4b91ed27d004e966', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 36072.14772216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3799ca2dffae0e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}]}}
Number of returned transfers:  136
Answer is complete
 
symbol             OAX
group              BPG
date        2018-12-07
hour             17:00
exchange       binance
Name: 266, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2018-12-07 17:00:00 2018-12-07 05:00:00 2018-12-08 05:00:00
Unix timestamps:  1544155200.0 1544241600.0
Hex Block Numbers:  0x6860a8 0x687814
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x686c31', 'uniqueId': '0xda00eeab7a1253f9eeb0bf902002c1ceb5768cec58670fd52c78a26f489be8b2:log:1', 'hash': '0xda00eeab7a1253f9eeb0bf902002c1ceb5768cec58670fd52c78a26f489be8b2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x62229e9ece81a7c142ca71d615607abd7eaff362', 'value': 219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0bdf3c4bb0328c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-07T15:50:52.000Z'}}, {'blockNum': '0x686d92', 'uniqueId': '0xf0f850786fd6f24228d9745e12457fb1be72bdd275bc8f22793171caa479e36c:log:2', 'hash': '0xf0f850786fd6f24228d9745e12457fb1be72bdd275bc8f22793171caa479e36c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7b4bd0f6a8852a5982e5b5e9841d5fc54d933672', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-07T17:13:37.000Z'}}, {'blockNum': '0x686e0e', 'uniqueId': '0xe8ed2649266d4e443f61a81c66753bb49b8aa12b46e17b3d337f7b676085896a:log:13', 'hash': '0xe8ed2649266d4e443f61a81c66753bb49b8aa12b46e17b3d337f7b676085896a', 'from': '0x7b4bd0f6a8852a5982e5b5e9841d5fc54d933672', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-07T17:43:18.000Z'}}]}}
Number of returned transfers:  3
Answer is complete
 
symbol             EVX
group              BPG
date        2018-12-10
hour             17:00
exchange       binance
Name: 267, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2018-12-10 17:00:00 2018-12-10 05:00:00 2018-12-11 05:00:00
Unix timestamps:  1544414400.0 1544500800.0
Hex Block Numbers:  0x68a7aa 0x68bf92
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x68adf3', 'uniqueId': '0x94aacc8a10de35133576df46082ed2f3c78f99e51457dbc94e7f2ad6ec5543bf:log:2', 'hash': '0x94aacc8a10de35133576df46082ed2f3c78f99e51457dbc94e7f2ad6ec5543bf', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa01090', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:13:09.000Z'}}, {'blockNum': '0x68ae24', 'uniqueId': '0x4b09155341772804596899120fe3070322e8a63451a580779e925bf3769d8ac3:log:0', 'hash': '0x4b09155341772804596899120fe3070322e8a63451a580779e925bf3769d8ac3', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x799cd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:26:16.000Z'}}, {'blockNum': '0x68ae3f', 'uniqueId': '0xb05e6c283793cc6c255e3f4937545bb1acb336bb5a9895e21e4a9ddedc90609c:log:31', 'hash': '0xb05e6c283793cc6c255e3f4937545bb1acb336bb5a9895e21e4a9ddedc90609c', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0119ad60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:32:13.000Z'}}, {'blockNum': '0x68ae46', 'uniqueId': '0xc828b199b1b1a33ba19e4d10eaf9d6e18038bb63c1a1e18fdf51de94ea438b31:log:2', 'hash': '0xc828b199b1b1a33ba19e4d10eaf9d6e18038bb63c1a1e18fdf51de94ea438b31', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fffa0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:33:33.000Z'}}, {'blockNum': '0x68ae55', 'uniqueId': '0xc44a2589617610b3b53b8a1938c6e2177b5ba570d2f46d63da739c4bc2c014ca:log:0', 'hash': '0xc44a2589617610b3b53b8a1938c6e2177b5ba570d2f46d63da739c4bc2c014ca', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x829d80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:38:04.000Z'}}, {'blockNum': '0x68ae88', 'uniqueId': '0x1b3ff615dd6b7c0c6118d7b5294390f1c40c49fc27e92963cd1e4bd313ece6bf:log:10', 'hash': '0x1b3ff615dd6b7c0c6118d7b5294390f1c40c49fc27e92963cd1e4bd313ece6bf', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fffa0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:51:18.000Z'}}, {'blockNum': '0x68ae90', 'uniqueId': '0xa6b25101b7068dbcbaf01f2fc0e4363081c25e26ddbf4f7808df48da9ea46790:log:0', 'hash': '0xa6b25101b7068dbcbaf01f2fc0e4363081c25e26ddbf4f7808df48da9ea46790', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbdaab0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:52:39.000Z'}}, {'blockNum': '0x68ae9b', 'uniqueId': '0x1e877082d27a1c623c9989703b5539dc2e95f39b8865f1687b2440d050b72ff9:log:0', 'hash': '0x1e877082d27a1c623c9989703b5539dc2e95f39b8865f1687b2440d050b72ff9', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0133c510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:56:32.000Z'}}, {'blockNum': '0x68aeaf', 'uniqueId': '0xafaad7b87ea825d97e7a8eb1df7c0dcdbdce90a12e6057e29084a197aa6bb509:log:9', 'hash': '0xafaad7b87ea825d97e7a8eb1df7c0dcdbdce90a12e6057e29084a197aa6bb509', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0133c510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:01:02.000Z'}}, {'blockNum': '0x68af09', 'uniqueId': '0xc8476706994e3c16968e72dade8b66a2bb83b799c442517c80f85774a6257683:log:8', 'hash': '0xc8476706994e3c16968e72dade8b66a2bb83b799c442517c80f85774a6257683', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01404830', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:23:13.000Z'}}, {'blockNum': '0x68af3a', 'uniqueId': '0x31330e2a65114701f457f278659903b67b057a5a1a6ee00a4ccdbf26698fbace:log:5', 'hash': '0x31330e2a65114701f457f278659903b67b057a5a1a6ee00a4ccdbf26698fbace', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x679b70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:37:17.000Z'}}, {'blockNum': '0x68af49', 'uniqueId': '0x82594c9e9e53c0c260208c09844bdff3a17a0b986c61edb1e45df404008ba312:log:36', 'hash': '0x82594c9e9e53c0c260208c09844bdff3a17a0b986c61edb1e45df404008ba312', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6163.8519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03ac8777', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:41:07.000Z'}}, {'blockNum': '0x68af64', 'uniqueId': '0xf0c3d52c5116ad933dfdd295c62bed19decb6b99cb821d1f2b98d3f7422bd0f4:log:32', 'hash': '0xf0c3d52c5116ad933dfdd295c62bed19decb6b99cb821d1f2b98d3f7422bd0f4', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x679b70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:50:51.000Z'}}, {'blockNum': '0x68b474', 'uniqueId': '0xd77c176090bcae419b14d03b5767c3d0c6d717bcea4d827b16e843308acc112c:log:0', 'hash': '0xd77c176090bcae419b14d03b5767c3d0c6d717bcea4d827b16e843308acc112c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xde2b00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T16:54:35.000Z'}}, {'blockNum': '0x68b49b', 'uniqueId': '0x8f7232dab1b013a40fcda0c893372b0ad03224594ea8dfbc675a14ec6391b34a:log:2', 'hash': '0x8f7232dab1b013a40fcda0c893372b0ad03224594ea8dfbc675a14ec6391b34a', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02865cc0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:02:45.000Z'}}, {'blockNum': '0x68b4a8', 'uniqueId': '0xe33fd2e20161abbbb7edd84adc8edbe5050c234bcb0aaa66667826c2bd62f6f4:log:68', 'hash': '0xe33fd2e20161abbbb7edd84adc8edbe5050c234bcb0aaa66667826c2bd62f6f4', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3514.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0218487a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:05:37.000Z'}}, {'blockNum': '0x68b4c3', 'uniqueId': '0xe8a574d02c973b1fe44c8c6e26e3f35b4f69e910e20b3a3241c7e1e83acc4ccb:log:46', 'hash': '0xe8a574d02c973b1fe44c8c6e26e3f35b4f69e910e20b3a3241c7e1e83acc4ccb', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6011.0383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0395362f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:11:45.000Z'}}, {'blockNum': '0x68b4c5', 'uniqueId': '0xd5e46ed374335c5a205140b6a1d2dcb5d71741a58de314bcf8136a6786a64911:log:17', 'hash': '0xd5e46ed374335c5a205140b6a1d2dcb5d71741a58de314bcf8136a6786a64911', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xde2b00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:12:17.000Z'}}, {'blockNum': '0x68b4ed', 'uniqueId': '0x40aa30f1f29ece434445b6c72762c5cfa609fed3a80bdc69ad749ec05d26b73f:log:8', 'hash': '0x40aa30f1f29ece434445b6c72762c5cfa609fed3a80bdc69ad749ec05d26b73f', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02865cc0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:21:04.000Z'}}, {'blockNum': '0x68b579', 'uniqueId': '0x4c4552a3be27609cb3edfa69be3c7370232b6bcdfb143c528c48124a0eaa84cd:log:2', 'hash': '0x4c4552a3be27609cb3edfa69be3c7370232b6bcdfb143c528c48124a0eaa84cd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x735be6c32f1d58b41c3141dfdf29f126e87a5ce2', 'value': 115.182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11934c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:54:37.000Z'}}, {'blockNum': '0x68b788', 'uniqueId': '0x28dfc2991b379f6a064632868e2b3bd9208afecfd180bb754930b9e31dd35f74:log:18', 'hash': '0x28dfc2991b379f6a064632868e2b3bd9208afecfd180bb754930b9e31dd35f74', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x29d770bb6fcbcfe107171d77f99c6eec4a73090f', 'value': 12.2851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dfe3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T19:59:36.000Z'}}, {'blockNum': '0x68b791', 'uniqueId': '0x8574344b3b599eae9d91bd39c4c711062e688499d56a14abe5d8d68b4148d6b7:log:8', 'hash': '0x8574344b3b599eae9d91bd39c4c711062e688499d56a14abe5d8d68b4148d6b7', 'from': '0x29d770bb6fcbcfe107171d77f99c6eec4a73090f', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 12.2851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dfe3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T20:01:08.000Z'}}, {'blockNum': '0x68bc92', 'uniqueId': '0xf27928210a191dc98b30e2ea5c2d726fb38015b414334b150d4d87ebcb65a6c3:log:13', 'hash': '0xf27928210a191dc98b30e2ea5c2d726fb38015b414334b150d4d87ebcb65a6c3', 'from': '0xdc1e9b7c72c18a8493625ccb759880ff40231113', 'to': '0x6e7ccf5f6b8322b557fba78a0e8479e791e763df', 'value': 271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2965a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-11T00:58:10.000Z'}}, {'blockNum': '0x68bceb', 'uniqueId': '0x503911e13f81cf9a73e71522ccb7a999cc951951286931a659070427932e7812:log:11', 'hash': '0x503911e13f81cf9a73e71522ccb7a999cc951951286931a659070427932e7812', 'from': '0x6e7ccf5f6b8322b557fba78a0e8479e791e763df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2965a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-11T01:21:07.000Z'}}]}}
Number of returned transfers:  24
Answer is complete
 
symbol              HC
group              BPG
date        2018-12-27
hour             17:00
exchange       binance
Name: 268, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
 Symbol: HC, Contract: 
Datetime timestamps:  2018-12-27 17:00:00 2018-12-27 05:00:00 2018-12-28 05:00:00
Unix timestamps:  1545883200.0 1545969600.0
Hex Block Numbers:  0x6a3368 0x6a4a6c
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EVX
group              BPG
date        2019-01-08
hour             16:00
exchange       binance
Name: 269, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2019-01-08 16:00:00 2019-01-08 04:00:00 2019-01-09 04:00:00
Unix timestamps:  1546916400.0 1547002800.0
Hex Block Numbers:  0x6b4143 0x6b56f9
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6b422e', 'uniqueId': '0x525fd680b734e806e2dde54ad9d5bc05768c75e6437a68e1489993761088b142:log:1', 'hash': '0x525fd680b734e806e2dde54ad9d5bc05768c75e6437a68e1489993761088b142', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xfe9559b0eaebac67b78fac42b4ec7cb70cbb638d', 'value': 1422.3284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xd907b4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:07:28.000Z'}}, {'blockNum': '0x6b4262', 'uniqueId': '0x195d43ab3bdcfb175e056e5bbfa3c11a87b2f96c83effd81213cbe319f1d754b:log:43', 'hash': '0x195d43ab3bdcfb175e056e5bbfa3c11a87b2f96c83effd81213cbe319f1d754b', 'from': '0xfe9559b0eaebac67b78fac42b4ec7cb70cbb638d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1422.3284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xd907b4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:20:54.000Z'}}, {'blockNum': '0x6b42c0', 'uniqueId': '0x11aed15a444ff40a4e98025dd35cc2a1e0aeb243e01afc91c1a1acdb4b86c396:log:7', 'hash': '0x11aed15a444ff40a4e98025dd35cc2a1e0aeb243e01afc91c1a1acdb4b86c396', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2551.556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01855628', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:47:33.000Z'}}, {'blockNum': '0x6b42d8', 'uniqueId': '0x762820be2cb71ae9e8aaf1c0bd45e61fb572d2e118e57cfa929431515a686f80:log:31', 'hash': '0x762820be2cb71ae9e8aaf1c0bd45e61fb572d2e118e57cfa929431515a686f80', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2194.687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014ee1f6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:53:11.000Z'}}, {'blockNum': '0x6b4491', 'uniqueId': '0xa03561d6ef30b3059a4dcce97f6d9fd6699c7703ef7aa882ebad95c1ac5da0af:log:43', 'hash': '0xa03561d6ef30b3059a4dcce97f6d9fd6699c7703ef7aa882ebad95c1ac5da0af', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7a97fe3679c441f8092867af5dcddfae0474ec32', 'value': 7.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x012494', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T06:45:11.000Z'}}, {'blockNum': '0x6b46fd', 'uniqueId': '0x1be8d83d9c16e8b66565e09114c1b01464b524ed421f60b5b7ac4e71faefd7a4:log:27', 'hash': '0x1be8d83d9c16e8b66565e09114c1b01464b524ed421f60b5b7ac4e71faefd7a4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc6844011ba0bd7b30c54fb377617c0bce1e806d5', 'value': 82.7547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0ca09b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T09:27:49.000Z'}}, {'blockNum': '0x6b4ac5', 'uniqueId': '0x223cf56508e2c5f30d7a3e55d1a5ba747b40b4e902ad43c7f05c884269bc2b18:log:46', 'hash': '0x223cf56508e2c5f30d7a3e55d1a5ba747b40b4e902ad43c7f05c884269bc2b18', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6197.5799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03b1acf7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T13:22:13.000Z'}}, {'blockNum': '0x6b4bcd', 'uniqueId': '0xde0c8ae3b162b584f85fc7e3d69167db4be8dcd81ee45dad0ac27765f6cd7ae4:log:3', 'hash': '0xde0c8ae3b162b584f85fc7e3d69167db4be8dcd81ee45dad0ac27765f6cd7ae4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x735be6c32f1d58b41c3141dfdf29f126e87a5ce2', 'value': 151.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x171240', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T14:35:34.000Z'}}, {'blockNum': '0x6b4bf5', 'uniqueId': '0x2f3f8933ce0d114706b69fb944100a0c5dee38a0ec3eaea9eba3a0b5e3b00a8d:log:20', 'hash': '0x2f3f8933ce0d114706b69fb944100a0c5dee38a0ec3eaea9eba3a0b5e3b00a8d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa9f987c7deaea1fc2cc08f696d3fed5b960b4fae', 'value': 295.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d148c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T14:47:17.000Z'}}, {'blockNum': '0x6b4c2a', 'uniqueId': '0xa1c0ffb2ade5ad43cad15662d2fa06cfa549b38ebb7ab3964ce21f95991de4b4:log:17', 'hash': '0xa1c0ffb2ade5ad43cad15662d2fa06cfa549b38ebb7ab3964ce21f95991de4b4', 'from': '0xa9f987c7deaea1fc2cc08f696d3fed5b960b4fae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 295.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d148c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T15:01:39.000Z'}}, {'blockNum': '0x6b4d12', 'uniqueId': '0x2ed801b94405cea84a46c7ce6d7c1aa0841d91936bd6fc79e399baccce21a41f:log:20', 'hash': '0x2ed801b94405cea84a46c7ce6d7c1aa0841d91936bd6fc79e399baccce21a41f', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T16:03:19.000Z'}}, {'blockNum': '0x6b4d28', 'uniqueId': '0x47b24ae5f4d0f35f174ab6195aa083c995f81385ab341824e8d0009fc3db2a09:log:7', 'hash': '0x47b24ae5f4d0f35f174ab6195aa083c995f81385ab341824e8d0009fc3db2a09', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0207ddf0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T16:08:44.000Z'}}, {'blockNum': '0x6b4d40', 'uniqueId': '0x87c9036d8c57fbfc6803741223ac1d36bd3e9a0c0e3f1803b175f254bdf6d969:log:24', 'hash': '0x87c9036d8c57fbfc6803741223ac1d36bd3e9a0c0e3f1803b175f254bdf6d969', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T16:14:32.000Z'}}, {'blockNum': '0x6b4e5e', 'uniqueId': '0x4727f7827e53d1496f3c55c275d198280cb2c126bc0b37bc28e8c0d3a5fd58fc:log:8', 'hash': '0x4727f7827e53d1496f3c55c275d198280cb2c126bc0b37bc28e8c0d3a5fd58fc', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xd3d2e6b1fd248647b296c0dd93c0b7e283b5217d', 'value': 57.5001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08c619', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T17:31:21.000Z'}}, {'blockNum': '0x6b4ec8', 'uniqueId': '0x3675a2a9d6550b71e7ff66e302680df7ad50de10ed0fb43de88ee44b4cb82a2a:log:7', 'hash': '0x3675a2a9d6550b71e7ff66e302680df7ad50de10ed0fb43de88ee44b4cb82a2a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x67b3ed835089a3f6c9159a02cf8b5a1d20365187', 'value': 1595.5989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf37815', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T17:59:46.000Z'}}, {'blockNum': '0x6b500a', 'uniqueId': '0xc97c5caee63741e53ee0af08c7a4cd473db0ec4129d92da836bed69ce68a7908:log:16', 'hash': '0xc97c5caee63741e53ee0af08c7a4cd473db0ec4129d92da836bed69ce68a7908', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4303a8a30d81e47fb29a51354ec2729e14a70dff', 'value': 495.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4ba348', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T19:22:40.000Z'}}, {'blockNum': '0x6b5042', 'uniqueId': '0xba701f88616f48fa5f59ea76b63f596a84abfc35d4fc166ce62470d63f62c21c:log:1', 'hash': '0xba701f88616f48fa5f59ea76b63f596a84abfc35d4fc166ce62470d63f62c21c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7f254c1456e311c52296a3a747f50dd2f09a89', 'value': 575.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x57c4c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T19:37:59.000Z'}}, {'blockNum': '0x6b506c', 'uniqueId': '0x81e85b3cd5635c68bfdd9a686fbd8b87d39eacebab9814fe867975bcf2dcc9fe:log:7', 'hash': '0x81e85b3cd5635c68bfdd9a686fbd8b87d39eacebab9814fe867975bcf2dcc9fe', 'from': '0x4303a8a30d81e47fb29a51354ec2729e14a70dff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 495.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4ba348', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T19:52:53.000Z'}}, {'blockNum': '0x6b5088', 'uniqueId': '0xf15f6e8543d2af86282fb49b42f647b3ec71abcb1b9ae1cc2af537cc74036ddf:log:14', 'hash': '0xf15f6e8543d2af86282fb49b42f647b3ec71abcb1b9ae1cc2af537cc74036ddf', 'from': '0x8e7f254c1456e311c52296a3a747f50dd2f09a89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 575.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x57c4c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T20:01:05.000Z'}}, {'blockNum': '0x6b5159', 'uniqueId': '0x70815476b92c222fadcc45e3a9755c8326b278b390dd2e5513aeb90f9399784b:log:0', 'hash': '0x70815476b92c222fadcc45e3a9755c8326b278b390dd2e5513aeb90f9399784b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x37214ad3d231604a7402d52f9bbbfb11126b5c13', 'value': 77.8067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bdf53', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T20:50:46.000Z'}}, {'blockNum': '0x6b522d', 'uniqueId': '0x4c543f0965a9764f4916e8dc10066663c56a3f8bc00c464156e1663112f60f7a:log:19', 'hash': '0x4c543f0965a9764f4916e8dc10066663c56a3f8bc00c464156e1663112f60f7a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x4817be1733f0e508361b26bc9776b68fe8e5b977', 'value': 21.1991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033c17', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T21:43:20.000Z'}}, {'blockNum': '0x6b53db', 'uniqueId': '0x3da30ae2451aa5fa5f933fe087973303b5f584c0d73400d027aebae7b077b2d0:log:26', 'hash': '0x3da30ae2451aa5fa5f933fe087973303b5f584c0d73400d027aebae7b077b2d0', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1605c1d29f561f436e204af0c9a51a1fe1f59710', 'value': 3112.8199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dafa87', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T23:34:41.000Z'}}, {'blockNum': '0x6b541e', 'uniqueId': '0xff0f48b9a9ccad796b4a6c1302bf56bf273a1cd2e56918dd6ba2ed7d9b04cd29:log:9', 'hash': '0xff0f48b9a9ccad796b4a6c1302bf56bf273a1cd2e56918dd6ba2ed7d9b04cd29', 'from': '0x1605c1d29f561f436e204af0c9a51a1fe1f59710', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3112.8199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dafa87', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T23:50:55.000Z'}}]}}
Number of returned transfers:  23
Answer is complete
 
symbol             RDN
group              BPG
date        2019-05-10
hour             15:59
exchange       binance
Name: 270, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2019-05-10 15:59:00 2019-05-10 03:59:00 2019-05-11 03:59:00
Unix timestamps:  1557453540.0 1557539940.0
Hex Block Numbers:  0x75f347 0x760c52
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x75f347', 'uniqueId': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45:log:91', 'hash': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45', 'from': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 178.38048014901977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09ab86c59861f1308e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T01:58:51.000Z'}}, {'blockNum': '0x75f347', 'uniqueId': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45:log:93', 'hash': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 178.38048014901977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09ab86c59861f1308e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T01:58:51.000Z'}}, {'blockNum': '0x75f347', 'uniqueId': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45:log:95', 'hash': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xbd43eb8c323beaf77484784b6aade4e54e92086d', 'value': 150.95703893102015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x082ef3231a6444e549', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T01:58:51.000Z'}}, {'blockNum': '0x75f347', 'uniqueId': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45:log:100', 'hash': '0x468f21680b9b7b7c737d6fac19d4b86640676d5dec4f4e2a7595c364b168db45', 'from': '0xbd43eb8c323beaf77484784b6aade4e54e92086d', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 150.95703893102015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x082ef3231a6444e549', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T01:58:51.000Z'}}, {'blockNum': '0x75f35d', 'uniqueId': '0x3997678b27f1785ad1d4f9830fac76839de1a8f691a4d6c510bcec6a553e2b33:log:23', 'hash': '0x3997678b27f1785ad1d4f9830fac76839de1a8f691a4d6c510bcec6a553e2b33', 'from': '0xe14f0bc3d8faab523069bc670497c439e2777614', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 1496.299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x511d51ecc4a4378000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T02:02:45.000Z'}}, {'blockNum': '0x75f5d3', 'uniqueId': '0x828a00a29b6a9ae5afa75881ff3ea35e81905d2d2ea3b6623b53da483f1e0326:log:30', 'hash': '0x828a00a29b6a9ae5afa75881ff3ea35e81905d2d2ea3b6623b53da483f1e0326', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:30:17.000Z'}}, {'blockNum': '0x75f5de', 'uniqueId': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649:log:7', 'hash': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:55.000Z'}}, {'blockNum': '0x75f5de', 'uniqueId': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649:log:9', 'hash': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:55.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:28', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1140.5394756887104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd42a324d3fdb9bbf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:32', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1140.5394756887104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd42a324d3fdb9bbf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:33', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1140.4653437382854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd322d3af8444baed', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f65c', 'uniqueId': '0x449871ab45f562f4c0172e567d6bc5e8e9c96922fa966e70e3bd9af55eaf2668:log:125', 'hash': '0x449871ab45f562f4c0172e567d6bc5e8e9c96922fa966e70e3bd9af55eaf2668', 'from': '0xd8b8e5635d316bd3561f0a2cabd5177870268328', 'to': '0x6b09463f42e4519c20d223cf11a0f695c543b1a6', 'value': 202.107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0af4cc4db0f3df8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:02:44.000Z'}}, {'blockNum': '0x75f694', 'uniqueId': '0xfa88f220b269996ee6a1c9b8973c2480fd135a331b9a431abc60dd467545224d:log:106', 'hash': '0xfa88f220b269996ee6a1c9b8973c2480fd135a331b9a431abc60dd467545224d', 'from': '0x14781b75f698b66acebc9abc2ff89343991eded1', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 636.99105882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228806d912d20e2800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:14:55.000Z'}}, {'blockNum': '0x75f694', 'uniqueId': '0xcaecf56fd9ad7eab9b76e67ee8d8b41c9df8b0cd491a37f3dc0e1114e7d893c3:log:108', 'hash': '0xcaecf56fd9ad7eab9b76e67ee8d8b41c9df8b0cd491a37f3dc0e1114e7d893c3', 'from': '0x63675b1f88cf053a19e721221a93afb81e04f380', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 1696.8326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5bfc48637ede7d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:14:55.000Z'}}, {'blockNum': '0x75f81b', 'uniqueId': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51:log:12', 'hash': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51', 'from': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7.782018706702859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6bff48c86877f975', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:42:39.000Z'}}, {'blockNum': '0x75f81b', 'uniqueId': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51:log:13', 'hash': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 7.782018706702859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6bff48c86877f975', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:42:39.000Z'}}, {'blockNum': '0x75f823', 'uniqueId': '0xcffe553c93313cd39cd2b2f3d7ede6196d0dae561fe361750004a8fbe2168eb4:log:24', 'hash': '0xcffe553c93313cd39cd2b2f3d7ede6196d0dae561fe361750004a8fbe2168eb4', 'from': '0x2f94781daee522b2f68635e8ce7bc0578d9c56e3', 'to': '0x1d0d1e86d4ad1b87273892f77ee9cc55490d2196', 'value': 456.48922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18bf0f858f0bf70b08', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:43:45.000Z'}}, {'blockNum': '0x75f849', 'uniqueId': '0x2630a46d345d988ac2f4059a6a6482e91140c27d6327ab5ac1d7470dbbb8f46e:log:111', 'hash': '0x2630a46d345d988ac2f4059a6a6482e91140c27d6327ab5ac1d7470dbbb8f46e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:52:13.000Z'}}, {'blockNum': '0x75f852', 'uniqueId': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8:log:118', 'hash': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:54:54.000Z'}}, {'blockNum': '0x75f852', 'uniqueId': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8:log:120', 'hash': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:54:54.000Z'}}, {'blockNum': '0x75f857', 'uniqueId': '0xd6bb7c8f937b0b7631ce4f0e6a0169c39f2adc4d722a5ad9a212cd9633bd19ec:log:34', 'hash': '0xd6bb7c8f937b0b7631ce4f0e6a0169c39f2adc4d722a5ad9a212cd9633bd19ec', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:55:45.000Z'}}, {'blockNum': '0x75f85a', 'uniqueId': '0x847d1478b95c71e88516cfd42e1335b951ffef646b563a813f5e2dc0953ef62c:log:34', 'hash': '0x847d1478b95c71e88516cfd42e1335b951ffef646b563a813f5e2dc0953ef62c', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:56:07.000Z'}}, {'blockNum': '0x75f861', 'uniqueId': '0x2ab1de47ee15c0359b9712604c8beaf108adbb81ac4470a4c27a40ec8f953314:log:81', 'hash': '0x2ab1de47ee15c0359b9712604c8beaf108adbb81ac4470a4c27a40ec8f953314', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:57:55.000Z'}}, {'blockNum': '0x75f862', 'uniqueId': '0x27076fac7729100e259e4a04b3260c93b63d136ef3dcd771c22e5a84514dc834:log:72', 'hash': '0x27076fac7729100e259e4a04b3260c93b63d136ef3dcd771c22e5a84514dc834', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:58:22.000Z'}}, {'blockNum': '0x75f86a', 'uniqueId': '0x244405f669c1102f0ecee02722a8c19a7eb2048325ba38d497fd7e0d532d63ae:log:6', 'hash': '0x244405f669c1102f0ecee02722a8c19a7eb2048325ba38d497fd7e0d532d63ae', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:00:29.000Z'}}, {'blockNum': '0x75f86e', 'uniqueId': '0xbfec6f2f6759a6da2c9467f9e1d75337afa8ee4ef60355a73c3812191d652415:log:4', 'hash': '0xbfec6f2f6759a6da2c9467f9e1d75337afa8ee4ef60355a73c3812191d652415', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:00:49.000Z'}}, {'blockNum': '0x75f876', 'uniqueId': '0xc72977ab5581ec3d88b65282f94c3370cc354c569912133b1ac6549d2ef84648:log:48', 'hash': '0xc72977ab5581ec3d88b65282f94c3370cc354c569912133b1ac6549d2ef84648', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:02:38.000Z'}}, {'blockNum': '0x75f879', 'uniqueId': '0x0243a4703d0773b2f8cd9aea80ce21695f935ed313d5cbc2ec2214db23d42a83:log:13', 'hash': '0x0243a4703d0773b2f8cd9aea80ce21695f935ed313d5cbc2ec2214db23d42a83', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:03:46.000Z'}}, {'blockNum': '0x75f87e', 'uniqueId': '0xf66843ccc76433cc2dc262f49e7329f640a6c3bf10f4a44ceac530b939b3af4f:log:148', 'hash': '0xf66843ccc76433cc2dc262f49e7329f640a6c3bf10f4a44ceac530b939b3af4f', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:05:13.000Z'}}, {'blockNum': '0x75f880', 'uniqueId': '0xeccddd220241ebfaffc977efd66abefb19302d2a371884588add1efebc5a5263:log:26', 'hash': '0xeccddd220241ebfaffc977efd66abefb19302d2a371884588add1efebc5a5263', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:05:44.000Z'}}, {'blockNum': '0x75f887', 'uniqueId': '0x07bf086b95f5c3bab52bdf8f348dae747a6519239c36caf242aa5f62dbd4046c:log:12', 'hash': '0x07bf086b95f5c3bab52bdf8f348dae747a6519239c36caf242aa5f62dbd4046c', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:00.000Z'}}, {'blockNum': '0x75f888', 'uniqueId': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512:log:72', 'hash': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 656.9215158709343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x239c9e0e2a4e2b6e90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:12.000Z'}}, {'blockNum': '0x75f888', 'uniqueId': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512:log:76', 'hash': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 656.9215158709343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x239c9e0e2a4e2b6e90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:12.000Z'}}, {'blockNum': '0x75f889', 'uniqueId': '0x1cec08c1a44dafc4ba6ab99dab220974c7ceb4372ba0ba9c8a554ade57e917fb:log:157', 'hash': '0x1cec08c1a44dafc4ba6ab99dab220974c7ceb4372ba0ba9c8a554ade57e917fb', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:21.000Z'}}, {'blockNum': '0x75f904', 'uniqueId': '0x629c8e63bb14276503e39ee79b09bfcbb1d144f7ae2fa214f396cd13c25eb7c9:log:114', 'hash': '0x629c8e63bb14276503e39ee79b09bfcbb1d144f7ae2fa214f396cd13c25eb7c9', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.8025090465147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2339d2432d3310a5f8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:05.000Z'}}, {'blockNum': '0x75f909', 'uniqueId': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4:log:60', 'hash': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 649.9556140455707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233bf2335cad2136a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:56.000Z'}}, {'blockNum': '0x75f909', 'uniqueId': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4:log:64', 'hash': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.9556140455707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233bf2335cad2136a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:56.000Z'}}, {'blockNum': '0x75f946', 'uniqueId': '0xd3c4478dac3e00227e3a5335a7ae9b65a0703ae8b18113650062f358a99ec40e:log:12', 'hash': '0xd3c4478dac3e00227e3a5335a7ae9b65a0703ae8b18113650062f358a99ec40e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 659.1884793631777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23bc13ed73581f4328', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:45:57.000Z'}}, {'blockNum': '0x75f95b', 'uniqueId': '0x0bbfe19883d7bde00d216a805b626ceb697056d1f91febf200f56a5c988cb58a:log:102', 'hash': '0x0bbfe19883d7bde00d216a805b626ceb697056d1f91febf200f56a5c988cb58a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 665.744341623271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24170f0771115fba87', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:50:22.000Z'}}, {'blockNum': '0x75fa6f', 'uniqueId': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c:log:27', 'hash': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 631.7468179765709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x223f3f8fcfc4de4d7b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T08:50:33.000Z'}}, {'blockNum': '0x75fa6f', 'uniqueId': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c:log:29', 'hash': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 631.7468179765709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x223f3f8fcfc4de4d7b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T08:50:33.000Z'}}, {'blockNum': '0x75fce7', 'uniqueId': '0x998592a478f223fa00bec267ffe32421341d7cab83d18e587a414195f7c93b33:log:106', 'hash': '0x998592a478f223fa00bec267ffe32421341d7cab83d18e587a414195f7c93b33', 'from': '0x773c249cc8dd02fce180ff066823312e448c6413', 'to': '0xcbc29eb2983568683e552e156316bfe67866fce1', 'value': 7162.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018443a16ffc2e7d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T11:07:57.000Z'}}, {'blockNum': '0x75fe58', 'uniqueId': '0xb72a25005a42f97697f9229435b55a9dcf94305ce260406bd341ae7265203700:log:0', 'hash': '0xb72a25005a42f97697f9229435b55a9dcf94305ce260406bd341ae7265203700', 'from': '0x20f72138a6cd58bf40aa3dce316e8b11586cffcb', 'to': '0x82683ef5441294a6e040eb9b0cc6ff68a54a6e64', 'value': 185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a076407d3f7440000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T12:32:16.000Z'}}, {'blockNum': '0x75fee2', 'uniqueId': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1:log:149', 'hash': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 102.18798436396273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058a24a65d272b8789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:07:22.000Z'}}, {'blockNum': '0x75fee2', 'uniqueId': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1:log:153', 'hash': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x3ed4587c28403d6a1b829167a1e7bd8f04cff701', 'value': 102.18798436396273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058a24a65d272b8789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:07:22.000Z'}}, {'blockNum': '0x75ffa2', 'uniqueId': '0x79347509dd8353817c0f036c745e8b35b725cc8cdf78d68ed3b02a6b5912e5cc:log:44', 'hash': '0x79347509dd8353817c0f036c745e8b35b725cc8cdf78d68ed3b02a6b5912e5cc', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 655.2045613420711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2384ca351e39c88d8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:55:56.000Z'}}, {'blockNum': '0x75ffb9', 'uniqueId': '0xc7e2690acfcbc882269c62ac25d5389a1434b3a581a79a40d7aeb0a0fc91d428:log:56', 'hash': '0xc7e2690acfcbc882269c62ac25d5389a1434b3a581a79a40d7aeb0a0fc91d428', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.9307652234905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233b99eb7d6ff5750f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:03:05.000Z'}}, {'blockNum': '0x75ffc4', 'uniqueId': '0xf710dd454c62eebfd31266e1a8927009e3d12daaa48cc04ea48c4386df3f7e0d:log:51', 'hash': '0xf710dd454c62eebfd31266e1a8927009e3d12daaa48cc04ea48c4386df3f7e0d', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 644.720419085663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22f34b0d4881eae623', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:01.000Z'}}, {'blockNum': '0x75ffc5', 'uniqueId': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f:log:61', 'hash': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 711.9597650168635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26986d322888ba0510', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:26.000Z'}}, {'blockNum': '0x75ffc5', 'uniqueId': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f:log:65', 'hash': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 711.9597650168635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26986d322888ba0510', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:26.000Z'}}, {'blockNum': '0x75ffc8', 'uniqueId': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab:log:81', 'hash': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:15.000Z'}}, {'blockNum': '0x75ffc8', 'uniqueId': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab:log:85', 'hash': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x0bea818348a0082457cb9e6dc7611c60ddae12af', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:15.000Z'}}, {'blockNum': '0x75ffc9', 'uniqueId': '0x25ae1b6a1f3d4aa26f45df96c24531278c952e295732e59e9f3049f84828e2fe:log:61', 'hash': '0x25ae1b6a1f3d4aa26f45df96c24531278c952e295732e59e9f3049f84828e2fe', 'from': '0x0bea818348a0082457cb9e6dc7611c60ddae12af', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:26.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:95', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:97', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:98', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:20', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 632.5254245559515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0dba5ecca20166', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:23', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 632.5253995189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0da3996d940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:24', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 632.5253995189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0da3996d940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:73', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:76', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:77', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:78', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:38', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:42', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:44', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:45', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:46', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760140', 'uniqueId': '0xa46e1f52002ec94d4450707b0c15cc282a4eb158f2fe1f5ca044346b5746a2f7:log:67', 'hash': '0xa46e1f52002ec94d4450707b0c15cc282a4eb158f2fe1f5ca044346b5746a2f7', 'from': '0x5325832cdf994b19407dadc9cb1a6d6e22ee0a23', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 100.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05723eeeb554650000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:27:30.000Z'}}, {'blockNum': '0x760160', 'uniqueId': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb:log:48', 'hash': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 355.47301465683995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13452dd774222b98c2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:35:19.000Z'}}, {'blockNum': '0x760160', 'uniqueId': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb:log:50', 'hash': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb09cd60ad551ce7ff6bc97458b483a8d50489ee7', 'value': 355.47301465683995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13452dd774222b98c2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:35:19.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:123', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:125', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:126', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x76017d', 'uniqueId': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48:log:53', 'hash': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 349.7105341760806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f53565fcc163b142', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:41:51.000Z'}}, {'blockNum': '0x76017d', 'uniqueId': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48:log:55', 'hash': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb09cd60ad551ce7ff6bc97458b483a8d50489ee7', 'value': 349.7105341760806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f53565fcc163b142', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:41:51.000Z'}}, {'blockNum': '0x760186', 'uniqueId': '0x85c3374e441bde6bc97d949a357dfc1cf0bdc66b9022e4c6144e42d51928e54f:log:65', 'hash': '0x85c3374e441bde6bc97d949a357dfc1cf0bdc66b9022e4c6144e42d51928e54f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 634.5002393268401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x226575adf100a30737', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:45:23.000Z'}}, {'blockNum': '0x760190', 'uniqueId': '0xe705b6946cb0936140c8a001ea869052475e19984e735c7ccb813fe85c7930e1:log:102', 'hash': '0xe705b6946cb0936140c8a001ea869052475e19984e735c7ccb813fe85c7930e1', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 3914.316011085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd4320c0925916ac200', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:46:51.000Z'}}, {'blockNum': '0x7601b1', 'uniqueId': '0xb14457bd50e15b514adda22fda31d84288a41c6521b60ee5bdcb29d120c14f8f:log:20', 'hash': '0xb14457bd50e15b514adda22fda31d84288a41c6521b60ee5bdcb29d120c14f8f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 705.1581025641026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x263a08d631bdcd6906', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:54:23.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xc93af9c808029e2cb8776c3a25aaa408a988cbbcff5225ad962215e9ff9b9229:log:38', 'hash': '0xc93af9c808029e2cb8776c3a25aaa408a988cbbcff5225ad962215e9ff9b9229', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'value': 356.62060493156787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13551ae6ba730553ea', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0x2d6014c820addd90162cee970c8470c59f31ac96a50c6c27d2f1c7085fe9fcaa:log:40', 'hash': '0x2d6014c820addd90162cee970c8470c59f31ac96a50c6c27d2f1c7085fe9fcaa', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 2972.7839158513184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa127aa14fb88916a72', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:42', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:44', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:50', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0x2064a23a6372c79625ea3321f14b7767f45a011a36281e4e780a53429245d441:log:53', 'hash': '0x2064a23a6372c79625ea3321f14b7767f45a011a36281e4e780a53429245d441', 'from': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 356.62060493156787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13551ae6ba730553ea', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601ca', 'uniqueId': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05:log:109', 'hash': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1477.6197060378133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x501a17bde06cfa21d2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:31.000Z'}}, {'blockNum': '0x7601ca', 'uniqueId': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05:log:113', 'hash': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1477.6197060378133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x501a17bde06cfa21d2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:31.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:0', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x000000001e29fcd9b1469a7954dc65ff254fffc0', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:2', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x000000001e29fcd9b1469a7954dc65ff254fffc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:3', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x42d34d6284337bf7b16863a5574aeaa39c7ba5059ea4f1b2f84b504aef3a199c:log:35', 'hash': '0x42d34d6284337bf7b16863a5574aeaa39c7ba5059ea4f1b2f84b504aef3a199c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1727.073971563981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5d9ff752b5162df3de', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:37', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:39', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:40', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0xc81e8fa2a188264dd0886346a0164f747c45afb04b40340635d0636a8d4afdc0:log:27', 'hash': '0xc81e8fa2a188264dd0886346a0164f747c45afb04b40340635d0636a8d4afdc0', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 616.8121327014218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x216ffce6ae63598df3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332:log:75', 'hash': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 816.7670975483106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c46eba3cd79e0746c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332:log:77', 'hash': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 816.7670975483106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c46eba3cd79e0746c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601cf', 'uniqueId': '0xa79190b5c260bbc683826b83fa1bca9ee88f35791b8e40888aa8dce66d84e002:log:70', 'hash': '0xa79190b5c260bbc683826b83fa1bca9ee88f35791b8e40888aa8dce66d84e002', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1193.7365271859924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b66c16c9d983204f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:02:02.000Z'}}, {'blockNum': '0x7601d5', 'uniqueId': '0x260a015f3b72763513f548afaa602ebb16f9c621a1c8c31047b06e9a660a65c2:log:32', 'hash': '0x260a015f3b72763513f548afaa602ebb16f9c621a1c8c31047b06e9a660a65c2', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 636.1201201537541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x227bf0a6f89350671c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:03:58.000Z'}}, {'blockNum': '0x7601f1', 'uniqueId': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350:log:12', 'hash': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 641.4434092366902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22c5d0c6301c6faf20', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:47.000Z'}}, {'blockNum': '0x7601f1', 'uniqueId': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350:log:14', 'hash': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 641.4434092366902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22c5d0c6301c6faf20', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:47.000Z'}}, {'blockNum': '0x7601f3', 'uniqueId': '0x7033dba509cd768e0961f4eff8a7e88bec1626fc00a5c423f9baf356115dd671:log:86', 'hash': '0x7033dba509cd768e0961f4eff8a7e88bec1626fc00a5c423f9baf356115dd671', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 140.60753227612702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x079f524da26ed2dd0e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:59.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:94', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:96', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:101', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:128', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:130', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:136', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:138', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:14', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:16', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:21', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:89', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:91', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:96', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:98', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760209', 'uniqueId': '0x9e68b31905228aa80a396104ef9defe0b64eb4fefd87cd919333a5e00d245b84:log:36', 'hash': '0x9e68b31905228aa80a396104ef9defe0b64eb4fefd87cd919333a5e00d245b84', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:16:45.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:42', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:44', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:50', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x76021f', 'uniqueId': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc:log:78', 'hash': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:20:28.000Z'}}, {'blockNum': '0x76021f', 'uniqueId': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc:log:80', 'hash': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:20:28.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:16', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:18', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:24', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760298', 'uniqueId': '0xf889109533c0e4aed7f686e8bbf566c0de2208ab0b76652dfcb9103a4d906656:log:9', 'hash': '0xf889109533c0e4aed7f686e8bbf566c0de2208ab0b76652dfcb9103a4d906656', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:48:02.000Z'}}, {'blockNum': '0x7602a1', 'uniqueId': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8:log:104', 'hash': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 159.0998551682927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089ff43b54122eaa6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:49:44.000Z'}}, {'blockNum': '0x7602a1', 'uniqueId': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8:log:108', 'hash': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'value': 159.0998551682927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089ff43b54122eaa6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:49:44.000Z'}}, {'blockNum': '0x7602a6', 'uniqueId': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47:log:8', 'hash': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:51:49.000Z'}}, {'blockNum': '0x7602a6', 'uniqueId': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47:log:10', 'hash': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:51:49.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:30', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:32', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x9475cec6a585cafd941d7e074d6fe5484a822be0', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:38', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x9475cec6a585cafd941d7e074d6fe5484a822be0', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7604ab', 'uniqueId': '0x5cf8696a4f7a0b2817195012942709112c6aa4b202b155a60f3ee77715d01b6a:log:51', 'hash': '0x5cf8696a4f7a0b2817195012942709112c6aa4b202b155a60f3ee77715d01b6a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:38:31.000Z'}}, {'blockNum': '0x7604b7', 'uniqueId': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94:log:22', 'hash': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:40:52.000Z'}}, {'blockNum': '0x7604b7', 'uniqueId': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94:log:24', 'hash': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:40:52.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:32', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:36', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:37', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x760592', 'uniqueId': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250:log:77', 'hash': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250', 'from': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 89.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04d47f3c6eea878000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:29:42.000Z'}}, {'blockNum': '0x760592', 'uniqueId': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250:log:79', 'hash': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 89.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04d47f3c6eea878000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:29:42.000Z'}}, {'blockNum': '0x7605db', 'uniqueId': '0x7b8295276770019f64700bab106cd4adef00ca0b1bf13679a78304c5458d9fe6:log:35', 'hash': '0x7b8295276770019f64700bab106cd4adef00ca0b1bf13679a78304c5458d9fe6', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0xbe4dfe79790cf61490d195d4bc0082625d829c21', 'value': 59.8689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x033ed90f59d9624000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:50:50.000Z'}}, {'blockNum': '0x7605fd', 'uniqueId': '0xc44f13b4934429a04036acc942210574ecba11d20d4a6c931757ecd011755961:log:44', 'hash': '0xc44f13b4934429a04036acc942210574ecba11d20d4a6c931757ecd011755961', 'from': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'to': '0x4b771b02981ef44e52c7b561e9a614fa9b11def6', 'value': 70.00085516829269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03cb74fee527a72a6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:57:33.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:49', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:53', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:55', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:56', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:57', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:31', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:35', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:37', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:38', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:39', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:18', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x320b7287b5136cddf0e6242837b0838136491689', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:21', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x320b7287b5136cddf0e6242837b0838136491689', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:22', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:23', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:20', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:24', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:26', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:27', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:28', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}]}}
Number of returned transfers:  162
Answer is complete
 
symbol             CDT
group              BPG
date        2019-05-13
hour             15:00
exchange       binance
Name: 271, dtype: object
HERE
{'osmosis': 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt'}
No contract for ethereum specified
 Symbol: CDT, Contract: 0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc
Datetime timestamps:  2019-05-13 15:00:00 2019-05-13 03:00:00 2019-05-14 03:00:00
Unix timestamps:  1557709200.0 1557795600.0
Hex Block Numbers:  0x763da3 0x765661
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             PPT
group              BPG
date        2019-05-31
hour             14:59
exchange       binance
Name: 272, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2019-05-31 14:59:00 2019-05-31 02:59:00 2019-06-01 02:59:00
Unix timestamps:  1559264340.0 1559350740.0
Hex Block Numbers:  0x77ffae 0x7818df
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x77ffd2', 'uniqueId': '0x7244b890e3b58a4e5ef0da511572c2b4e4b68342ef60c9ac5133d4825f5e7542:log:11', 'hash': '0x7244b890e3b58a4e5ef0da511572c2b4e4b68342ef60c9ac5133d4825f5e7542', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x87b42472ab204e37cbf30293f70f21bddc65cbc0', 'value': 1078.02617899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x191989682b', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:05:30.000Z'}}, {'blockNum': '0x77ffd2', 'uniqueId': '0x93eb6977ea271ed071ed10ecdc7338b3ec588c1822002e17994613115051d8ff:log:26', 'hash': '0x93eb6977ea271ed071ed10ecdc7338b3ec588c1822002e17994613115051d8ff', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 216.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x050a153b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:05:30.000Z'}}, {'blockNum': '0x780018', 'uniqueId': '0x9cd132926a0641e8f57f652892046352982781855cdb4adc90a692cc75a532f8:log:141', 'hash': '0x9cd132926a0641e8f57f652892046352982781855cdb4adc90a692cc75a532f8', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xbf85aa4cb91e2d31ff68fc75a1b3329c6d2a041c', 'value': 320.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07755e85e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:20:14.000Z'}}, {'blockNum': '0x780032', 'uniqueId': '0x02a06d6c3d3b34906d4c9c5bbe1e3f267e2dc30b9e19c300a50cb8e51fbfe573:log:15', 'hash': '0x02a06d6c3d3b34906d4c9c5bbe1e3f267e2dc30b9e19c300a50cb8e51fbfe573', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x87b42472ab204e37cbf30293f70f21bddc65cbc0', 'value': 1079.3564119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1921772e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:27:22.000Z'}}, {'blockNum': '0x780070', 'uniqueId': '0xdc515f958d1247c59804356072614a3674c809f7ac278bf2739ce4d1c57fb09b:log:51', 'hash': '0xdc515f958d1247c59804356072614a3674c809f7ac278bf2739ce4d1c57fb09b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1227.538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c94b25740', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:43:37.000Z'}}, {'blockNum': '0x780070', 'uniqueId': '0xd214da030c049a5a6d889a096f1660d968dbde8e3c2f1ca1df2c6076c6f5ef24:log:52', 'hash': '0xd214da030c049a5a6d889a096f1660d968dbde8e3c2f1ca1df2c6076c6f5ef24', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 379.784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08d7b06500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:43:37.000Z'}}, {'blockNum': '0x780072', 'uniqueId': '0x4b0d932a0b3d816da70f70a57d147d7e5ac946858898ab21cd3d4bd4adb375e5:log:6', 'hash': '0x4b0d932a0b3d816da70f70a57d147d7e5ac946858898ab21cd3d4bd4adb375e5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x46bfccd95aa6eaae7ce9a669135cc352aaae9dc8', 'value': 174.548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0410631c80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:44:53.000Z'}}, {'blockNum': '0x780080', 'uniqueId': '0x0ec4f133d72a776d7ccfa66ed7ebdb22ef54fa8bb855cdd4f89c46f14a04b1ce:log:45', 'hash': '0x0ec4f133d72a776d7ccfa66ed7ebdb22ef54fa8bb855cdd4f89c46f14a04b1ce', 'from': '0xbf85aa4cb91e2d31ff68fc75a1b3329c6d2a041c', 'to': '0xeea896b8da77763f3525b1587a54bd3e6a6c0d92', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:47:54.000Z'}}, {'blockNum': '0x780087', 'uniqueId': '0x52306eecbf7d556270bc175e25f17f50ce81eb2ab5ce9d86e0dd129c729853d1:log:13', 'hash': '0x52306eecbf7d556270bc175e25f17f50ce81eb2ab5ce9d86e0dd129c729853d1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x87b42472ab204e37cbf30293f70f21bddc65cbc0', 'value': 1083.58457281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x193aaad7c1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:50:13.000Z'}}, {'blockNum': '0x780087', 'uniqueId': '0x17850e5c714c86ea4acfe5d49577cb1945cf04e6b674f175dc3012e90e35ef67:log:62', 'hash': '0x17850e5c714c86ea4acfe5d49577cb1945cf04e6b674f175dc3012e90e35ef67', 'from': '0x46bfccd95aa6eaae7ce9a669135cc352aaae9dc8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 180.548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0434266280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:50:13.000Z'}}, {'blockNum': '0x780091', 'uniqueId': '0x6a9da4acf2f49bce3fcd6acc9b1921d83e189bfab3086f63940559e33eb37425:log:17', 'hash': '0x6a9da4acf2f49bce3fcd6acc9b1921d83e189bfab3086f63940559e33eb37425', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 430.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a05cd17c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:52:03.000Z'}}, {'blockNum': '0x780091', 'uniqueId': '0xbfe9503d891801bd37a551c9bfca297395caec9356e6c951ce15510fd3e9fd63:log:30', 'hash': '0xbfe9503d891801bd37a551c9bfca297395caec9356e6c951ce15510fd3e9fd63', 'from': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2839.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x421c8f60c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T01:52:03.000Z'}}, {'blockNum': '0x7800b7', 'uniqueId': '0xaf0a00bec2871defd6ef709f5a92f0d69ce9228da8e19807f955b4382066e237:log:38', 'hash': '0xaf0a00bec2871defd6ef709f5a92f0d69ce9228da8e19807f955b4382066e237', 'from': '0xbf85aa4cb91e2d31ff68fc75a1b3329c6d2a041c', 'to': '0xeea896b8da77763f3525b1587a54bd3e6a6c0d92', 'value': 310.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0739c3bbe0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:00:51.000Z'}}, {'blockNum': '0x7800dd', 'uniqueId': '0xdfcab24b7cb41dbca6a02e6bf6c16e3c6ec6a53adcec5f6752a85f3b5cb301db:log:0', 'hash': '0xdfcab24b7cb41dbca6a02e6bf6c16e3c6ec6a53adcec5f6752a85f3b5cb301db', 'from': '0xfdc18307198ed2f631268172617ecd55dd807ce8', 'to': '0xaa1559de968affb0ccde6c8e2f47763e787762d6', 'value': 1500.13185795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x22ed7b8f03', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:09:06.000Z'}}, {'blockNum': '0x78015a', 'uniqueId': '0xd67586abc5c2439b3da25a7ddcffa9ea20a1a188594c42fcac17870573ab1fae:log:122', 'hash': '0xd67586abc5c2439b3da25a7ddcffa9ea20a1a188594c42fcac17870573ab1fae', 'from': '0x678da6af4a6813dcfe027446eda950ca504ea8c7', 'to': '0x472bf46d5fc2816c1a7b343442a79a89ef055ab6', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:39:19.000Z'}}, {'blockNum': '0x78015b', 'uniqueId': '0xd3c513add3ee394c58ffc8c58fd58ad86567c6ba79a60091fedd140930ddbe6b:log:66', 'hash': '0xd3c513add3ee394c58ffc8c58fd58ad86567c6ba79a60091fedd140930ddbe6b', 'from': '0x9c4ced9b96f9cd182b3534d6a3a33f25d09955fd', 'to': '0x48a9c504e16671692aefcc99558dd2e7c1c5b7eb', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:39:25.000Z'}}, {'blockNum': '0x780162', 'uniqueId': '0xa07612ab1196a0b5d7c2904e091d7824fd507f059e682349aaf73de8af8371b4:log:134', 'hash': '0xa07612ab1196a0b5d7c2904e091d7824fd507f059e682349aaf73de8af8371b4', 'from': '0x2cb76bd6f43a79d48a5f24dabfccd09bd9ab16a9', 'to': '0x794ceafca61abfe8c090853a0a23ee46b2ec8c26', 'value': 1946.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2d50ac56c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:42:34.000Z'}}, {'blockNum': '0x78017e', 'uniqueId': '0x9e2ff8908a4c4d9bb454b71c19b4fe2cccf75ce283c4864a9deba695996f4b28:log:73', 'hash': '0x9e2ff8908a4c4d9bb454b71c19b4fe2cccf75ce283c4864a9deba695996f4b28', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb2bf54efb37eafe318b97a3bc644f4dfe728ca94', 'value': 301.51965705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0705327c09', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:49:17.000Z'}}, {'blockNum': '0x780182', 'uniqueId': '0xff1d6cd7a5bcddd8c041a2874f7bf3d5b49a3f0281a49243c1389e3cfc7650dd:log:12', 'hash': '0xff1d6cd7a5bcddd8c041a2874f7bf3d5b49a3f0281a49243c1389e3cfc7650dd', 'from': '0x48a9c504e16671692aefcc99558dd2e7c1c5b7eb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T02:50:03.000Z'}}, {'blockNum': '0x7801a8', 'uniqueId': '0xa4b91853d450219066da99e801dfb83556e08177eb3c4a0df083974047456e84:log:33', 'hash': '0xa4b91853d450219066da99e801dfb83556e08177eb3c4a0df083974047456e84', 'from': '0x3cb2668094bbc9106bfec217913b043dc2b7bdf1', 'to': '0xab71de4cfd0e00b6a05cd0e6fff1ed0b68094ff1', 'value': 87.0915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02071b1530', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:00:17.000Z'}}, {'blockNum': '0x7801d6', 'uniqueId': '0xb59701022e89182ad1b57bd9152e35d4ce8a8ad396a6e78b94084f6197d4031f:log:7', 'hash': '0xb59701022e89182ad1b57bd9152e35d4ce8a8ad396a6e78b94084f6197d4031f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1625.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25da475d60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:09:36.000Z'}}, {'blockNum': '0x7801da', 'uniqueId': '0x7c500f1d3a0133824ecc9b6f75072b973a2f48795f8d2a6c4d2ab1a0941d0ac3:log:3', 'hash': '0x7c500f1d3a0133824ecc9b6f75072b973a2f48795f8d2a6c4d2ab1a0941d0ac3', 'from': '0xb927d1f1bfad49a976b315eb34a15b1b9f2c1437', 'to': '0xcb6b2fb4e2c3f0282c7167e014ebbd79e778cdb7', 'value': 5010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x74a5ed5200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:10:58.000Z'}}, {'blockNum': '0x780205', 'uniqueId': '0x7beb82dcfd921b99a31e0b8783518b1b43e0c9f7b867baa6556caaf5b8a26f21:log:30', 'hash': '0x7beb82dcfd921b99a31e0b8783518b1b43e0c9f7b867baa6556caaf5b8a26f21', 'from': '0xcb6b2fb4e2c3f0282c7167e014ebbd79e778cdb7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x74a5ed5200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:20:04.000Z'}}, {'blockNum': '0x78022d', 'uniqueId': '0x8c6d02662e4ff43318b7cbad1683591202c098c05e88e7d030260c690c5df787:log:6', 'hash': '0x8c6d02662e4ff43318b7cbad1683591202c098c05e88e7d030260c690c5df787', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1607.322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x256c62bc40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:29:08.000Z'}}, {'blockNum': '0x78024f', 'uniqueId': '0xb1f852bc971598003e1a55f588350cf7343c2a9e76d3d0d74166a45f1fdcdb6e:log:2', 'hash': '0xb1f852bc971598003e1a55f588350cf7343c2a9e76d3d0d74166a45f1fdcdb6e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 203.3761825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04bc376d4a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:37:44.000Z'}}, {'blockNum': '0x780278', 'uniqueId': '0x38aec31db3d13fd3bd4e196680683e88637e4b195b75ebdc6d1f336982f65a37:log:54', 'hash': '0x38aec31db3d13fd3bd4e196680683e88637e4b195b75ebdc6d1f336982f65a37', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb825651f21989277d95798aab075380f353424ff', 'value': 203.3761825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04bc376d4a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:46:08.000Z'}}, {'blockNum': '0x780279', 'uniqueId': '0x00142f0dd55c0ff8ba996a37e6869094a71575604128a1a3ee46fe04aae7d15a:log:4', 'hash': '0x00142f0dd55c0ff8ba996a37e6869094a71575604128a1a3ee46fe04aae7d15a', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1625.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25da475d60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:46:30.000Z'}}, {'blockNum': '0x780285', 'uniqueId': '0x3fcd07b25a4e7cce1640e5a0274f884af71c9984fcd2a060df36d14182f77a29:log:2', 'hash': '0x3fcd07b25a4e7cce1640e5a0274f884af71c9984fcd2a060df36d14182f77a29', 'from': '0x6d15db61abc98697b5c4e3e2190ed153036a9387', 'to': '0x77a2f42421cdfebb3f61eed26e15370854d48956', 'value': 152.317989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x038be2ce74', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:48:26.000Z'}}, {'blockNum': '0x78028e', 'uniqueId': '0x966a8625373db9c3825bf12e6684ebd3a4b1ded4347e37cf859407219e3641c4:log:18', 'hash': '0x966a8625373db9c3825bf12e6684ebd3a4b1ded4347e37cf859407219e3641c4', 'from': '0x426870240c7d94e4454bc3509985251134d38a56', 'to': '0x616e83660177fd508a7a939a849a288510713408', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:50:39.000Z'}}, {'blockNum': '0x780292', 'uniqueId': '0xd299851b9619c9bd5026dfe88378f29ecb938cfd13431c4124c9353789695150:log:107', 'hash': '0xd299851b9619c9bd5026dfe88378f29ecb938cfd13431c4124c9353789695150', 'from': '0x426870240c7d94e4454bc3509985251134d38a56', 'to': '0x616e83660177fd508a7a939a849a288510713408', 'value': 600.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0dfd0c0c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:52:11.000Z'}}, {'blockNum': '0x7802a9', 'uniqueId': '0xe55ff72f4e8160e0bb94f3bd9de166ac2d681f2c864aaf54bbd3c5ae3657da2e:log:45', 'hash': '0xe55ff72f4e8160e0bb94f3bd9de166ac2d681f2c864aaf54bbd3c5ae3657da2e', 'from': '0x616e83660177fd508a7a939a849a288510713408', 'to': '0xe384137f7baffc564265006fd332e5b9adc66864', 'value': 603.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e0eedaf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:56:19.000Z'}}, {'blockNum': '0x7802b3', 'uniqueId': '0x80f7b088f7b08084b2104dc10a16f668dbe5381e99632fafc66c48417a71ff8a:log:30', 'hash': '0x80f7b088f7b08084b2104dc10a16f668dbe5381e99632fafc66c48417a71ff8a', 'from': '0xe384137f7baffc564265006fd332e5b9adc66864', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 603.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e0eedaf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T03:59:02.000Z'}}, {'blockNum': '0x7802e6', 'uniqueId': '0x953cb2049b4d55a3c24bc4d303a7e95d057eb76b0abc45602e4e5c9d02806115:log:30', 'hash': '0x953cb2049b4d55a3c24bc4d303a7e95d057eb76b0abc45602e4e5c9d02806115', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 603.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e0eedaf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:10:01.000Z'}}, {'blockNum': '0x78030e', 'uniqueId': '0x4acf271672cb6fa5d73da9fda6aedd3ac618c33d4adb5c12bc7775e7293a9d7a:log:12', 'hash': '0x4acf271672cb6fa5d73da9fda6aedd3ac618c33d4adb5c12bc7775e7293a9d7a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1626.928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e13f1e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:17:45.000Z'}}, {'blockNum': '0x780315', 'uniqueId': '0x6f3c32d3e7eed77bf148fcb5e5839b544eb46d6cfa993dbde23770b5ea90eabd:log:13', 'hash': '0x6f3c32d3e7eed77bf148fcb5e5839b544eb46d6cfa993dbde23770b5ea90eabd', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa3e0b06bfe4a25ef0fc80a20cfee6d2fb563684c', 'value': 466.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0add7b0560', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:19:23.000Z'}}, {'blockNum': '0x780346', 'uniqueId': '0x974a1eda13eb2f40a06072d70f48d07b49af23f5bffdc077b5b7b61149ce9864:log:23', 'hash': '0x974a1eda13eb2f40a06072d70f48d07b49af23f5bffdc077b5b7b61149ce9864', 'from': '0xa3e0b06bfe4a25ef0fc80a20cfee6d2fb563684c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 466.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0add7b0560', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:30:05.000Z'}}, {'blockNum': '0x78035a', 'uniqueId': '0xe3e9584223f4213400c1d73b4d0d1d1ea4c4198ba57a62c8fbe01ae0497273b8:log:63', 'hash': '0xe3e9584223f4213400c1d73b4d0d1d1ea4c4198ba57a62c8fbe01ae0497273b8', 'from': '0xe1da32fa5002d62eb1b383f9a3239015822562b3', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 0.05487468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53bb6c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:36:13.000Z'}}, {'blockNum': '0x780367', 'uniqueId': '0x7a892e9ee317c4a7c171ed73da2f429399044e35ed35502bb90aa010e2e2c5e8:log:19', 'hash': '0x7a892e9ee317c4a7c171ed73da2f429399044e35ed35502bb90aa010e2e2c5e8', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 1.87783205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b315825', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:38:46.000Z'}}, {'blockNum': '0x780385', 'uniqueId': '0xfea26e378f45d1c809dcbc2a7bd5441653522351010a0760572e3da08367e3e0:log:175', 'hash': '0xfea26e378f45d1c809dcbc2a7bd5441653522351010a0760572e3da08367e3e0', 'from': '0xb0703f1c87209989974ea3c7062a1f2fd233b756', 'to': '0xcbc7baca85ecb864c8bacbb649d85dc5bafbea90', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:46:42.000Z'}}, {'blockNum': '0x7803ac', 'uniqueId': '0x4ff5e57cb53d365f1d4fc73e2dcc321d12c7cd7cb3dd4dfc787b7574ceeceb6f:log:6', 'hash': '0x4ff5e57cb53d365f1d4fc73e2dcc321d12c7cd7cb3dd4dfc787b7574ceeceb6f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1613.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x258ed95e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T04:54:19.000Z'}}, {'blockNum': '0x7803bf', 'uniqueId': '0x375f073ca88e2c24a08d87abca1466adecac47297f16b055202019c1d9b268e8:log:148', 'hash': '0x375f073ca88e2c24a08d87abca1466adecac47297f16b055202019c1d9b268e8', 'from': '0xcbc7baca85ecb864c8bacbb649d85dc5bafbea90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:00:28.000Z'}}, {'blockNum': '0x7803c7', 'uniqueId': '0xcb8e4682d356087c08829587dc15835cdc5fa85c59360decff49309a10a45387:log:13', 'hash': '0xcb8e4682d356087c08829587dc15835cdc5fa85c59360decff49309a10a45387', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'value': 3216.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4ae379f300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:02:19.000Z'}}, {'blockNum': '0x7803cb', 'uniqueId': '0x6d7e5660bb04a7329bd53b17a2180fbb2ab94226d489fab4a9f28b9e93911b48:log:23', 'hash': '0x6d7e5660bb04a7329bd53b17a2180fbb2ab94226d489fab4a9f28b9e93911b48', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xcf9f9b2362e53fd5241dd13568037671913baa7b', 'value': 14.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x55b62380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:03:20.000Z'}}, {'blockNum': '0x7803dc', 'uniqueId': '0x0474f34bd3b1a19765d4ec873fd6a03c08b44b032a05712e17f3c85ece67e8e1:log:16', 'hash': '0x0474f34bd3b1a19765d4ec873fd6a03c08b44b032a05712e17f3c85ece67e8e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1626.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e1146480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:06:06.000Z'}}, {'blockNum': '0x7803f4', 'uniqueId': '0xa956f155bb3df07dc55ea55d2c31a99af99ec7a4a463a83f19be348c2ba67074:log:25', 'hash': '0xa956f155bb3df07dc55ea55d2c31a99af99ec7a4a463a83f19be348c2ba67074', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 409.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x098873dc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:10:23.000Z'}}, {'blockNum': '0x78044b', 'uniqueId': '0x633c327f86d4ded8bd55772b822dd104d5636618609520a0b722ebe14286f723:log:155', 'hash': '0x633c327f86d4ded8bd55772b822dd104d5636618609520a0b722ebe14286f723', 'from': '0x981854df9dede96490649816840d6e042d0556fb', 'to': '0x5b07d158d4a77aea303915293ce6e4be3562a5f7', 'value': 1011.93482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178f99ff10', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:24:46.000Z'}}, {'blockNum': '0x780464', 'uniqueId': '0x9eafe112f50e0c7e8159cfe2893b9640a68d0c86a93e89b0cc2251fa8c9335f9:log:59', 'hash': '0x9eafe112f50e0c7e8159cfe2893b9640a68d0c86a93e89b0cc2251fa8c9335f9', 'from': '0x5b07d158d4a77aea303915293ce6e4be3562a5f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3064.93841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x475c74de68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:30:31.000Z'}}, {'blockNum': '0x7804b1', 'uniqueId': '0xc8e78b47dcc0f70c40f4da17134ddc892e8b7efa480d419744f282f1e4a54243:log:26', 'hash': '0xc8e78b47dcc0f70c40f4da17134ddc892e8b7efa480d419744f282f1e4a54243', 'from': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3216.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4ae379f300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:46:45.000Z'}}, {'blockNum': '0x7804b1', 'uniqueId': '0x28b4a48eb884dcf2d3de445e3a6b7461a977f7dc8905dd51c7a77e080ff2f531:log:27', 'hash': '0x28b4a48eb884dcf2d3de445e3a6b7461a977f7dc8905dd51c7a77e080ff2f531', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 409.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x098873dc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:46:45.000Z'}}, {'blockNum': '0x7804b1', 'uniqueId': '0xe53daa7405cdf55f0639c25cefd2df343e38ffa1e51f4c057f459df93cee92dd:log:30', 'hash': '0xe53daa7405cdf55f0639c25cefd2df343e38ffa1e51f4c057f459df93cee92dd', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 4866.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x71512ce080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T05:46:45.000Z'}}, {'blockNum': '0x7804f0', 'uniqueId': '0xbc2b1bc95821b314d89495f6fe6408777b901cd6c30c6028bec4e925f85dab11:log:37', 'hash': '0xbc2b1bc95821b314d89495f6fe6408777b901cd6c30c6028bec4e925f85dab11', 'from': '0x2201697a7a9ce6e41c11d955d222b380fadb3bac', 'to': '0xce3d2662fe44918fbb585241ed8fb4ee4347d4c7', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:00:01.000Z'}}, {'blockNum': '0x7804fc', 'uniqueId': '0xf94a472f674f62ba07dee620e8c3acaabc32c6ec0c24a837b97f96d62f215dcc:log:24', 'hash': '0xf94a472f674f62ba07dee620e8c3acaabc32c6ec0c24a837b97f96d62f215dcc', 'from': '0x268cd2d7464ac3366e0254daad6f93364d6e3507', 'to': '0x3a9d7e387fb7bbbbf6c2e277468688b6e05dafa5', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:03:04.000Z'}}, {'blockNum': '0x780520', 'uniqueId': '0xf7a414a3e3feed5ab6a9656b308a0fc27d391afd62ff09833b7f012ad7625654:log:163', 'hash': '0xf7a414a3e3feed5ab6a9656b308a0fc27d391afd62ff09833b7f012ad7625654', 'from': '0x977b1ea1549ff6908ace041796ea9a54d6a8dec5', 'to': '0x3a9d7e387fb7bbbbf6c2e277468688b6e05dafa5', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:10:37.000Z'}}, {'blockNum': '0x780523', 'uniqueId': '0xac1a6363f9f7c5716a3a38032f5b16857a3dd010f5659a6faac9502d8ebf49b2:log:99', 'hash': '0xac1a6363f9f7c5716a3a38032f5b16857a3dd010f5659a6faac9502d8ebf49b2', 'from': '0x81a1774a5f77fd5630b6513ca797c8dd14c1f3bf', 'to': '0x3a9d7e387fb7bbbbf6c2e277468688b6e05dafa5', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:11:35.000Z'}}, {'blockNum': '0x780536', 'uniqueId': '0x069edea4fbd00a1e532966c2da0cbef5858a4809c55a50e62f8692476114d8b2:log:57', 'hash': '0x069edea4fbd00a1e532966c2da0cbef5858a4809c55a50e62f8692476114d8b2', 'from': '0x3a9d7e387fb7bbbbf6c2e277468688b6e05dafa5', 'to': '0x7d1d856380fcf977635b71ef69087f43ac072269', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T06:15:19.000Z'}}, {'blockNum': '0x78063d', 'uniqueId': '0x8eb884bb5e62d300b0b6ed4743c72ddd518567d064f1dd410285bbe55f5efe41:log:21', 'hash': '0x8eb884bb5e62d300b0b6ed4743c72ddd518567d064f1dd410285bbe55f5efe41', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd7f6965ddb77042a01a1e800f41cd5bc4b565776', 'value': 372.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aea83e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T07:14:20.000Z'}}, {'blockNum': '0x78077e', 'uniqueId': '0xf395b8d3ec5d0c199a71aef4305c6237f991528aed2ac1747414ca19d82e218f:log:9', 'hash': '0xf395b8d3ec5d0c199a71aef4305c6237f991528aed2ac1747414ca19d82e218f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x41d7ba904b4dbe8ad00b58c0937813ac0d4113bb', 'value': 271.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06543ba9c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:32:55.000Z'}}, {'blockNum': '0x780789', 'uniqueId': '0x4320efba2a3a621e2f0376b57f2625a3d9a7330bbde31e618063ac923b795962:log:26', 'hash': '0x4320efba2a3a621e2f0376b57f2625a3d9a7330bbde31e618063ac923b795962', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa65169244d72df82d42a223476fcfbfc2feb4e81', 'value': 201.91348606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04b37f877e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:34:39.000Z'}}, {'blockNum': '0x78079f', 'uniqueId': '0xbf6bf18bf8c7c6d4fa9d4c8e6a6b791c596479a5f2a964110833882bbc288bc1:log:8', 'hash': '0xbf6bf18bf8c7c6d4fa9d4c8e6a6b791c596479a5f2a964110833882bbc288bc1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1626.218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25dd03be40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:39:22.000Z'}}, {'blockNum': '0x7807aa', 'uniqueId': '0xb904663cde98841547e1f7f1f799b88da7bc293a282dadc6bfbc35b11d519878:log:1', 'hash': '0xb904663cde98841547e1f7f1f799b88da7bc293a282dadc6bfbc35b11d519878', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x37929986a2ecf7c192175b75e2b571254739792c', 'value': 892.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14c75b5f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:43:00.000Z'}}, {'blockNum': '0x7807b9', 'uniqueId': '0x9158fbe291f9370938ca8748441d843337d218cdcf08df7efb991b9269a66060:log:2', 'hash': '0x9158fbe291f9370938ca8748441d843337d218cdcf08df7efb991b9269a66060', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x55f08be66905a1be1a0a6780091fe9d07346b4ca', 'value': 893.649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14ce9028a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:45:07.000Z'}}, {'blockNum': '0x7807c0', 'uniqueId': '0x9b963952bf9be95636a810275d7de05187d711c6610f940884155bbfb8490be5:log:76', 'hash': '0x9b963952bf9be95636a810275d7de05187d711c6610f940884155bbfb8490be5', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1626.218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25dd03be40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:47:15.000Z'}}, {'blockNum': '0x780805', 'uniqueId': '0x408f9d07d29fbde292d1a7af88f3e3c474b38950866290c83abce29962b96f88:log:8', 'hash': '0x408f9d07d29fbde292d1a7af88f3e3c474b38950866290c83abce29962b96f88', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb970f97a6a560566c4562c1ab6a3f708339a1710', 'value': 497.94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b97f42480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T08:59:35.000Z'}}, {'blockNum': '0x78090c', 'uniqueId': '0xc2714170d0d3846dca419b8d5b53e71b9dd94555a45e0f2360da6d4245c8be37:log:3', 'hash': '0xc2714170d0d3846dca419b8d5b53e71b9dd94555a45e0f2360da6d4245c8be37', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 994.282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x172661ee40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T09:59:28.000Z'}}, {'blockNum': '0x78090f', 'uniqueId': '0x2feb4ff20e8d759bcd61cc0f293c455b57013687ccb118cec127a2d53637f8ef:log:2', 'hash': '0x2feb4ff20e8d759bcd61cc0f293c455b57013687ccb118cec127a2d53637f8ef', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 184.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x044b591b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:00:53.000Z'}}, {'blockNum': '0x78092b', 'uniqueId': '0x3dcbb6960184dc9ea53989e1ebeecf1fbfd5a7bedc2717ddac5d4cb0e9455a3e:log:13', 'hash': '0x3dcbb6960184dc9ea53989e1ebeecf1fbfd5a7bedc2717ddac5d4cb0e9455a3e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 445.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a5f2f2c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:08:22.000Z'}}, {'blockNum': '0x7809a6', 'uniqueId': '0x9067737eea5bfdec83c6755738e73cf5a9659467bc0c5015e64fd09e9b8b47eb:log:10', 'hash': '0x9067737eea5bfdec83c6755738e73cf5a9659467bc0c5015e64fd09e9b8b47eb', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1407.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20c6fca6c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:38:02.000Z'}}, {'blockNum': '0x7809c6', 'uniqueId': '0x99db8b59b3c78b2ee02d46ab5a5631695104c6b391446febdf30727c9fb7c3e7:log:0', 'hash': '0x99db8b59b3c78b2ee02d46ab5a5631695104c6b391446febdf30727c9fb7c3e7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 200.128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a8db1800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:46:38.000Z'}}, {'blockNum': '0x7809cd', 'uniqueId': '0xfaa4f0d5ecfdd869c0fc2905eee75de95255b42f10841f2ea1ab96ad6762a245:log:25', 'hash': '0xfaa4f0d5ecfdd869c0fc2905eee75de95255b42f10841f2ea1ab96ad6762a245', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x799ec2b69296ff49d276542dccfa47a452c165bb', 'value': 6636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9a81a46c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:48:39.000Z'}}, {'blockNum': '0x7809e1', 'uniqueId': '0x6993a7dfbde935ab2e1544a7edb27f55637876f17a33819ea84ff938d921c90e:log:91', 'hash': '0x6993a7dfbde935ab2e1544a7edb27f55637876f17a33819ea84ff938d921c90e', 'from': '0x5eb1bea85208929bd38cad554cb74d98e9722a11', 'to': '0x799ec2b69296ff49d276542dccfa47a452c165bb', 'value': 1061.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18b6145180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T10:53:18.000Z'}}, {'blockNum': '0x780a13', 'uniqueId': '0x6b451f1c7e2a39e9f9fa3b15596a3d53ade292682128abda91f21e79c75d528c:log:32', 'hash': '0x6b451f1c7e2a39e9f9fa3b15596a3d53ade292682128abda91f21e79c75d528c', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1439.748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2185911a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:05:07.000Z'}}, {'blockNum': '0x780a9f', 'uniqueId': '0x601e3ef151beb07008b548510c4c3bee521cdba735b3985d99b253dd9c72e251:log:83', 'hash': '0x601e3ef151beb07008b548510c4c3bee521cdba735b3985d99b253dd9c72e251', 'from': '0xa19d0a4cf4b2829b4a83c8bf1a076a5eb4f3b2ed', 'to': '0x928c341a2470e785ff2fab1c10a36dbe09012f39', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:30:47.000Z'}}, {'blockNum': '0x780acf', 'uniqueId': '0x941502d86f49c20f847732870a98c632f3755a817aafd5cc9bd9c6a735c4d953:log:32', 'hash': '0x941502d86f49c20f847732870a98c632f3755a817aafd5cc9bd9c6a735c4d953', 'from': '0x928c341a2470e785ff2fab1c10a36dbe09012f39', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:40:05.000Z'}}, {'blockNum': '0x780b1c', 'uniqueId': '0xce024ccf9d9aa699c528e2ee8edcec412587bc5e2b230598586ef5c80eba7df1:log:7', 'hash': '0xce024ccf9d9aa699c528e2ee8edcec412587bc5e2b230598586ef5c80eba7df1', 'from': '0x1071764fa56827c66ec5f454f105a82639575ee7', 'to': '0x4e32365ff0218e1baf13b6a63d2648d34f8b0747', 'value': 642.68913029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef6b9c985', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:56:15.000Z'}}, {'blockNum': '0x780b2b', 'uniqueId': '0x729adff549568956788889a64ac3da20f0c202da3c0ae56da18eec3016546686:log:75', 'hash': '0x729adff549568956788889a64ac3da20f0c202da3c0ae56da18eec3016546686', 'from': '0x4e32365ff0218e1baf13b6a63d2648d34f8b0747', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 642.68913029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef6b9c985', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T11:59:57.000Z'}}, {'blockNum': '0x780b3a', 'uniqueId': '0xe2cb705d93c22e99280ffd7223e7552c5d1320a524bb7e89c3fbde773a3cf01a:log:17', 'hash': '0xe2cb705d93c22e99280ffd7223e7552c5d1320a524bb7e89c3fbde773a3cf01a', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1607.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x256fd7bec0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:03:56.000Z'}}, {'blockNum': '0x780b42', 'uniqueId': '0x9f45d9876cfa93f7024d5bb5bbadc8e2b644b00a305542e8980897334f257f76:log:15', 'hash': '0x9f45d9876cfa93f7024d5bb5bbadc8e2b644b00a305542e8980897334f257f76', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 184.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x044b591b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:06:11.000Z'}}, {'blockNum': '0x780b6c', 'uniqueId': '0x00b13ff959e3c478a3dddd34d4bafa1960ab1d9bfade7edfe5e9002a25eb3817:log:119', 'hash': '0x00b13ff959e3c478a3dddd34d4bafa1960ab1d9bfade7edfe5e9002a25eb3817', 'from': '0x472bf46d5fc2816c1a7b343442a79a89ef055ab6', 'to': '0x10aaed27e13fdf9c174d1b581da505bd7704ab6e', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:15:09.000Z'}}, {'blockNum': '0x780b72', 'uniqueId': '0xe0a9652cc57f9ca6d82f1fb24d1ee6a4d400e09c2327fb99c3402a7952f30afa:log:11', 'hash': '0xe0a9652cc57f9ca6d82f1fb24d1ee6a4d400e09c2327fb99c3402a7952f30afa', 'from': '0x472bf46d5fc2816c1a7b343442a79a89ef055ab6', 'to': '0x5280ec861d087b4179aa67978e8d5ad2d25f0906', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:16:53.000Z'}}, {'blockNum': '0x780b7d', 'uniqueId': '0x2f58705856bdb713516a218adc77a5167d225270081cd23849b2061da242743b:log:83', 'hash': '0x2f58705856bdb713516a218adc77a5167d225270081cd23849b2061da242743b', 'from': '0x472bf46d5fc2816c1a7b343442a79a89ef055ab6', 'to': '0xc88744baf972a421675d3ea695dcfbfd4e3a65f1', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:20:12.000Z'}}, {'blockNum': '0x780b84', 'uniqueId': '0x811493f6bbea1ce73ce4e702e762cc66919a6cd52e96c64db412630c908b8173:log:6', 'hash': '0x811493f6bbea1ce73ce4e702e762cc66919a6cd52e96c64db412630c908b8173', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1627.566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e50ca0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:21:51.000Z'}}, {'blockNum': '0x780b92', 'uniqueId': '0x94abd6578f55b8c3296a0f98f7f73d9cfb630320a4e59a74b34412e0231da6d0:log:5', 'hash': '0x94abd6578f55b8c3296a0f98f7f73d9cfb630320a4e59a74b34412e0231da6d0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'value': 2768.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4075303300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:25:58.000Z'}}, {'blockNum': '0x780b93', 'uniqueId': '0x101cbd1b9cb47b465fbd0991339aadd34553ea3011eec2e4253737a8c5490c1d:log:12', 'hash': '0x101cbd1b9cb47b465fbd0991339aadd34553ea3011eec2e4253737a8c5490c1d', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x63498c428d27f5bc56b828fda76b8cd6091e8af0', 'value': 1003.22008142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x175ba85c4e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:26:27.000Z'}}, {'blockNum': '0x780bf6', 'uniqueId': '0x20abadaaca2a7cbb9c7f6cc0550aed3da79b0b3815b97034dc95a09a997ea6a8:log:98', 'hash': '0x20abadaaca2a7cbb9c7f6cc0550aed3da79b0b3815b97034dc95a09a997ea6a8', 'from': '0xd4ce54ac108be1e22fcd3ca01ec95232c8ee4ccd', 'to': '0x9b32f1403ac24e215d3627dff7dcd32d58cd34a3', 'value': 101.65516493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025de978cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:46:52.000Z'}}, {'blockNum': '0x780c14', 'uniqueId': '0x6d25b51edf4081c9383fd147fb061446ee8d0aa58e51723786dd52d1fee7bb23:log:56', 'hash': '0x6d25b51edf4081c9383fd147fb061446ee8d0aa58e51723786dd52d1fee7bb23', 'from': '0xd4ce54ac108be1e22fcd3ca01ec95232c8ee4ccd', 'to': '0x70214d41a3b738b6819ea3e0c6337fd654cdd076', 'value': 101.65516493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025de978cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:51:33.000Z'}}, {'blockNum': '0x780c28', 'uniqueId': '0x69643936ec07d4270f4d79b718f022e5070c09954491e9d3d03e44d5908ff9b7:log:31', 'hash': '0x69643936ec07d4270f4d79b718f022e5070c09954491e9d3d03e44d5908ff9b7', 'from': '0x9b32f1403ac24e215d3627dff7dcd32d58cd34a3', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 101.65516493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025de978cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:55:41.000Z'}}, {'blockNum': '0x780c28', 'uniqueId': '0x70b54b1bef7d8dbae5ddd0e189698186f4acf770ad33b83d0dba3a49fe921002:log:37', 'hash': '0x70b54b1bef7d8dbae5ddd0e189698186f4acf770ad33b83d0dba3a49fe921002', 'from': '0x70214d41a3b738b6819ea3e0c6337fd654cdd076', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 101.65516493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025de978cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T12:55:41.000Z'}}, {'blockNum': '0x780c3f', 'uniqueId': '0x781b92062d1f26d43ad85343876157bf5103fc1f07862883f382fc641c0479d4:log:35', 'hash': '0x781b92062d1f26d43ad85343876157bf5103fc1f07862883f382fc641c0479d4', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 203.31032986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04bbd2f19a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:01:15.000Z'}}, {'blockNum': '0x780c4e', 'uniqueId': '0x24d66d14c5c08f0cde005fc18e830d6fd71084f40f80f3fc29c9f7810723598e:log:36', 'hash': '0x24d66d14c5c08f0cde005fc18e830d6fd71084f40f80f3fc29c9f7810723598e', 'from': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2768.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4075303300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:04:42.000Z'}}, {'blockNum': '0x780c4e', 'uniqueId': '0x814d2ca8d8b9555aa2132d79529a2cb0b0472af250568edaa33eb9bb069baea9:log:37', 'hash': '0x814d2ca8d8b9555aa2132d79529a2cb0b0472af250568edaa33eb9bb069baea9', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1627.566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e50ca0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:04:42.000Z'}}, {'blockNum': '0x780c92', 'uniqueId': '0xe37b6ca13c7229a2ba9c12998ffd26d590bce41b93204cb84b0b714b146a51c6:log:43', 'hash': '0xe37b6ca13c7229a2ba9c12998ffd26d590bce41b93204cb84b0b714b146a51c6', 'from': '0x0344e613e8d41bc9f7588598357d7558099a1778', 'to': '0xb1be42c354fe8e7ef46699e3e018b47df1def200', 'value': 376.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08c194e8e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:19:18.000Z'}}, {'blockNum': '0x780cbe', 'uniqueId': '0x272213888a177e55258f17b8ef7dc2f25013f045ba0a0d8fb047acc6189c0861:log:98', 'hash': '0x272213888a177e55258f17b8ef7dc2f25013f045ba0a0d8fb047acc6189c0861', 'from': '0xce3d2662fe44918fbb585241ed8fb4ee4347d4c7', 'to': '0xaa6cba72075ad880d406c2beccc5ea2dae7e3ec6', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:29:28.000Z'}}, {'blockNum': '0x780cdf', 'uniqueId': '0x74c0519db065fc0a64c33ada94ede421dae4d0bfe704b5ea7764afafe078a8ff:log:18', 'hash': '0x74c0519db065fc0a64c33ada94ede421dae4d0bfe704b5ea7764afafe078a8ff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x27e3a7255724f486bb93851dc64d1968279c36ab', 'value': 158.13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03ae873b40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:36:05.000Z'}}, {'blockNum': '0x780d20', 'uniqueId': '0x35de680352e54ab19fe2c482edd519d8e97be6ec28497c8e09f1d1fe9ee9a94d:log:117', 'hash': '0x35de680352e54ab19fe2c482edd519d8e97be6ec28497c8e09f1d1fe9ee9a94d', 'from': '0xb5ef47ecf266ee4dc614e9ccb88a3a7fdc4957da', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 43.09808943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0100e2772f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:52:43.000Z'}}, {'blockNum': '0x780d2d', 'uniqueId': '0xb53ee6a657425099035bee370c13d6bb71ab29db874a973f1526848c9eea33d9:log:70', 'hash': '0xb53ee6a657425099035bee370c13d6bb71ab29db874a973f1526848c9eea33d9', 'from': '0xd1ed9b54ca79b2ef87d13e1662ed5eb4ebbba894', 'to': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T13:55:32.000Z'}}, {'blockNum': '0x780d43', 'uniqueId': '0x623176e1abddc8513cfd198c37aaa5920f956ad757965a016cac096b55442223:log:136', 'hash': '0x623176e1abddc8513cfd198c37aaa5920f956ad757965a016cac096b55442223', 'from': '0x35f48a13528d22e3c313366130f53fb2d7302b0c', 'to': '0xf555e0136c802857e2f64d3307fb9a27f54eee36', 'value': 848.37449961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13c0b4c0e9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:00:08.000Z'}}, {'blockNum': '0x780d55', 'uniqueId': '0x11190a8342d068920c1401bb5484744b4c8774aa7cd57575a9cf84900e410f96:log:78', 'hash': '0x11190a8342d068920c1401bb5484744b4c8774aa7cd57575a9cf84900e410f96', 'from': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:03:50.000Z'}}, {'blockNum': '0x780d79', 'uniqueId': '0xc8aac561d104bda8bf80e6d1dcd7b4fdba5fcd248bb4aff36bc5708cb72da8e7:log:103', 'hash': '0xc8aac561d104bda8bf80e6d1dcd7b4fdba5fcd248bb4aff36bc5708cb72da8e7', 'from': '0xf555e0136c802857e2f64d3307fb9a27f54eee36', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 848.37449961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13c0b4c0e9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:09:58.000Z'}}, {'blockNum': '0x780da7', 'uniqueId': '0xf0ced0df44379768fcff64319e65f7445f4737fe40b1f11438312688a3b0a3dd:log:27', 'hash': '0xf0ced0df44379768fcff64319e65f7445f4737fe40b1f11438312688a3b0a3dd', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:20:03.000Z'}}, {'blockNum': '0x780dce', 'uniqueId': '0x078a78e45ab9b0e6aa917eaac4bde33ced51e005be5d969c2002a32e91ff2f59:log:143', 'hash': '0x078a78e45ab9b0e6aa917eaac4bde33ced51e005be5d969c2002a32e91ff2f59', 'from': '0xaa1559de968affb0ccde6c8e2f47763e787762d6', 'to': '0xfef35a7bfd422bf277cfdde1f2f6150fe5fc365b', 'value': 1000.13185795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749401b03', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:28:53.000Z'}}, {'blockNum': '0x780dd5', 'uniqueId': '0x980b513149d72087d2dfb2493ae69098542e70d5bfdc16b667f99323eb32a50b:log:71', 'hash': '0x980b513149d72087d2dfb2493ae69098542e70d5bfdc16b667f99323eb32a50b', 'from': '0xfef35a7bfd422bf277cfdde1f2f6150fe5fc365b', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000.13185795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749401b03', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:32:08.000Z'}}, {'blockNum': '0x780de7', 'uniqueId': '0x1f99358054d39770e75ace2942dfcc15f4d1374956322faaef14ac18bc46c148:log:1', 'hash': '0x1f99358054d39770e75ace2942dfcc15f4d1374956322faaef14ac18bc46c148', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x6aabd70800f218a2fed2a4e1db94daaee89d07c6', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:36:49.000Z'}}, {'blockNum': '0x780de9', 'uniqueId': '0x7a079be0724dd20f9ee4fd0d822f2e610e1ea74b324662517d9aa4f7d2aae9ae:log:41', 'hash': '0x7a079be0724dd20f9ee4fd0d822f2e610e1ea74b324662517d9aa4f7d2aae9ae', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1608.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25725d3120', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:38:47.000Z'}}, {'blockNum': '0x780df2', 'uniqueId': '0x640f95b8f3d2755826146326198b9e66dc6050922e93c0e0e19d6962f83473c7:log:74', 'hash': '0x640f95b8f3d2755826146326198b9e66dc6050922e93c0e0e19d6962f83473c7', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000.13185795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749401b03', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:41:04.000Z'}}, {'blockNum': '0x780e03', 'uniqueId': '0x1d78541693e08c527ece14a4e7aedd44a7c32b11748bf0295b854664807b9e15:log:2', 'hash': '0x1d78541693e08c527ece14a4e7aedd44a7c32b11748bf0295b854664807b9e15', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 2842.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4230688e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:43:59.000Z'}}, {'blockNum': '0x780e1e', 'uniqueId': '0x43d249a83fb6d3d01ca8881d59f1480d09ccead92acab92d066d1d53b6d3d6ea:log:4', 'hash': '0x43d249a83fb6d3d01ca8881d59f1480d09ccead92acab92d066d1d53b6d3d6ea', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe8bc9d533b22efd27583139847cd4c38953f94d', 'value': 401.97124047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x095bef6fcf', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:50:48.000Z'}}, {'blockNum': '0x780e1e', 'uniqueId': '0x06077f513534708bc8e2bf9f6479d80439719f91deb08a8447657127b2d3725c:log:7', 'hash': '0x06077f513534708bc8e2bf9f6479d80439719f91deb08a8447657127b2d3725c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 452.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a88c0a700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:50:48.000Z'}}, {'blockNum': '0x780e1e', 'uniqueId': '0x5216096f46c58b24bc562d90135dd6aa8176ed458bf43e7807cc1483afc234b1:log:65', 'hash': '0x5216096f46c58b24bc562d90135dd6aa8176ed458bf43e7807cc1483afc234b1', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2842.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4230688e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:50:48.000Z'}}, {'blockNum': '0x780e24', 'uniqueId': '0x761ae2cf4bb427f1f5cd0fa12ab2524f0bd842474260576b3eb1411662f04ab5:log:20', 'hash': '0x761ae2cf4bb427f1f5cd0fa12ab2524f0bd842474260576b3eb1411662f04ab5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5922a79b481c9fa64355bb8baf1ff3309369e1fd', 'value': 75.63825918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c2d6d2fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:52:27.000Z'}}, {'blockNum': '0x780e2f', 'uniqueId': '0x8b85c0da2a0214abefd99d526dbde7a5b8903f58d15c1bf5b68aa7f4f0a0fec9:log:102', 'hash': '0x8b85c0da2a0214abefd99d526dbde7a5b8903f58d15c1bf5b68aa7f4f0a0fec9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5922a79b481c9fa64355bb8baf1ff3309369e1fd', 'value': 383.84609289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08efe6a809', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T14:54:34.000Z'}}, {'blockNum': '0x780e63', 'uniqueId': '0x59c6e29c199e72b7c5f63d5d212a696a30ab8cd9c4320a1923ac6afe46bd3697:log:30', 'hash': '0x59c6e29c199e72b7c5f63d5d212a696a30ab8cd9c4320a1923ac6afe46bd3697', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 452.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a88c0a700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:05:41.000Z'}}, {'blockNum': '0x780ed4', 'uniqueId': '0x5aad2ce67fe6cd94f116d5b2e306fe27317980eca8940725ae21ab088ddcc19b:log:7', 'hash': '0x5aad2ce67fe6cd94f116d5b2e306fe27317980eca8940725ae21ab088ddcc19b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 451.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a82cac600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:31:32.000Z'}}, {'blockNum': '0x780ee8', 'uniqueId': '0xd3480f08b89036dff4dedd1dbd6a41c096907817c8860b4102f0e714c02f5042:log:10', 'hash': '0xd3480f08b89036dff4dedd1dbd6a41c096907817c8860b4102f0e714c02f5042', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 348.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x081cdd3f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:36:12.000Z'}}, {'blockNum': '0x780eeb', 'uniqueId': '0xde59cc3168042d2b68e836618796da99277d05099d96185b6e9e450e6146a8ca:log:11', 'hash': '0xde59cc3168042d2b68e836618796da99277d05099d96185b6e9e450e6146a8ca', 'from': '0x164632c9855308641295fac06811dd6b1f7f6bfc', 'to': '0x5462d3f892ffbdec917fbfd44d2d014b4be49f40', 'value': 550, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0cce416600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:36:30.000Z'}}, {'blockNum': '0x780ef7', 'uniqueId': '0xf8a62b66e5dd1a9222e0b7d0e948b6971c1307673921e46ebc75555dc4ec2bd5:log:12', 'hash': '0xf8a62b66e5dd1a9222e0b7d0e948b6971c1307673921e46ebc75555dc4ec2bd5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xea5a31be2fce24680eca4219ebd78f8df89ea73d', 'value': 50.388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012c55fc80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:38:49.000Z'}}, {'blockNum': '0x780f3b', 'uniqueId': '0xe6d0db14400b750584666184329623e2b721371d68ed2e5a85bdcbd847a0d6f3:log:3', 'hash': '0xe6d0db14400b750584666184329623e2b721371d68ed2e5a85bdcbd847a0d6f3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'value': 2652.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3dc1c63f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:54:55.000Z'}}, {'blockNum': '0x780f4d', 'uniqueId': '0x4daab86244d8a61008d02c6b9a4ae0a057d684248ef6e6d823ec6caca7fa48ee:log:2', 'hash': '0x4daab86244d8a61008d02c6b9a4ae0a057d684248ef6e6d823ec6caca7fa48ee', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 401.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0958c4d400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T15:59:25.000Z'}}, {'blockNum': '0x780f5a', 'uniqueId': '0x71d8cb3e7f86d520c8b5bf6c396c4b8bbb7c4434440e6c208e30848676f669f3:log:1', 'hash': '0x71d8cb3e7f86d520c8b5bf6c396c4b8bbb7c4434440e6c208e30848676f669f3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1628.076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25e816d380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:01:31.000Z'}}, {'blockNum': '0x780f67', 'uniqueId': '0x86b6b6ffdd1ae5ef897dc2ed6c6fa67d0fc98d3e4e63e9e4eb6064c3d63e00a4:log:0', 'hash': '0x86b6b6ffdd1ae5ef897dc2ed6c6fa67d0fc98d3e4e63e9e4eb6064c3d63e00a4', 'from': '0x946a2c2fa8b264002058eb5e1d2a635994e4b559', 'to': '0x15111ced8acfbc83ef6f23707c7a61437f86cf39', 'value': 41.78108226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf908df42', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:05:00.000Z'}}, {'blockNum': '0x780f6a', 'uniqueId': '0x02376bacc2a2d2fc879d4cb6c413148df7634185740a5d82899a4361ecb85081:log:58', 'hash': '0x02376bacc2a2d2fc879d4cb6c413148df7634185740a5d82899a4361ecb85081', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 451.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a82cac600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:06:29.000Z'}}, {'blockNum': '0x780f6a', 'uniqueId': '0x58e8f54c6125476b3f51de3bd3393a478f9b1ada50974d53e180a8fcef35bd98:log:76', 'hash': '0x58e8f54c6125476b3f51de3bd3393a478f9b1ada50974d53e180a8fcef35bd98', 'from': '0xfe8bc9d533b22efd27583139847cd4c38953f94d', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 401.97124047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x095bef6fcf', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:06:29.000Z'}}, {'blockNum': '0x780f75', 'uniqueId': '0xaf921950c16d4fbfb20d5af5fe64d0ae8c08f4f897abb4b877fc6a40437cfe97:log:14', 'hash': '0xaf921950c16d4fbfb20d5af5fe64d0ae8c08f4f897abb4b877fc6a40437cfe97', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 749.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1175a21300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:08:57.000Z'}}, {'blockNum': '0x780f75', 'uniqueId': '0x9cdf48b39879cb9968ed238df627c77b37cb84166d8738622cdeb10cc73feffb:log:27', 'hash': '0x9cdf48b39879cb9968ed238df627c77b37cb84166d8738622cdeb10cc73feffb', 'from': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2652.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3dc1c63f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:08:57.000Z'}}, {'blockNum': '0x780f8e', 'uniqueId': '0x0324f8df035fb9a40d1367e62c17cd85349adda07f228d7efa28b484239e62e4:log:12', 'hash': '0x0324f8df035fb9a40d1367e62c17cd85349adda07f228d7efa28b484239e62e4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xce91af5d591b0c69041e57e61e04db2eed4390d9', 'value': 59.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0161655c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:14:29.000Z'}}, {'blockNum': '0x780f91', 'uniqueId': '0xd5449d521437a4f3fd0f09d24200fe6cae857578c8c0452b2eb6d17d461104fd:log:0', 'hash': '0xd5449d521437a4f3fd0f09d24200fe6cae857578c8c0452b2eb6d17d461104fd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1629.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25eda678a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:16:44.000Z'}}, {'blockNum': '0x780ff8', 'uniqueId': '0xdca92bb76b0d2e2d0f131faaf6b5a31672a5888c5bcb296ee95e0ab0e6f09645:log:31', 'hash': '0xdca92bb76b0d2e2d0f131faaf6b5a31672a5888c5bcb296ee95e0ab0e6f09645', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xc1f678302590f18169ce4f46e20bf14185461169', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:38:17.000Z'}}, {'blockNum': '0x780fff', 'uniqueId': '0x2aa83ef4c6893e4a84e0133af833daa9c95e20e82791089f80d0353c338d3e81:log:188', 'hash': '0x2aa83ef4c6893e4a84e0133af833daa9c95e20e82791089f80d0353c338d3e81', 'from': '0xcf49e1ba6954f02d321e09c0f8e947957074c6b8', 'to': '0x0efea8d4b173a2a32840293f0223f9486f6b3c6d', 'value': 97.81207384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0247016158', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:39:36.000Z'}}, {'blockNum': '0x781012', 'uniqueId': '0x32c37502139e24a793cd52c48f8b0740fafc194a93e5a51f19cd1ada4d05c94f:log:3', 'hash': '0x32c37502139e24a793cd52c48f8b0740fafc194a93e5a51f19cd1ada4d05c94f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f963758a2045270200ea89579d9718c9d03648f', 'value': 29.83317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb1d1ce08', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:44:00.000Z'}}, {'blockNum': '0x781017', 'uniqueId': '0xf7ccf5119d914f6c02631a3d2c42806f447a9e571ec13d6ffc274ec2b58e21f3:log:128', 'hash': '0xf7ccf5119d914f6c02631a3d2c42806f447a9e571ec13d6ffc274ec2b58e21f3', 'from': '0x0efea8d4b173a2a32840293f0223f9486f6b3c6d', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 97.81207384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0247016158', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:46:45.000Z'}}, {'blockNum': '0x781026', 'uniqueId': '0x605461d7cc68c13a8223025bd2a4a2ae6e888a8c3b40e822c67dd3c3764a3bc0:log:3', 'hash': '0x605461d7cc68c13a8223025bd2a4a2ae6e888a8c3b40e822c67dd3c3764a3bc0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6e1e10175b9145bb887ac78fff35fabea2dfff6d', 'value': 280.37777999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06872e8a4f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:48:28.000Z'}}, {'blockNum': '0x78102e', 'uniqueId': '0x0e94a0032081ff1663c3616a497c645d6f40870e86f2f0ce7bae583d5da246af:log:135', 'hash': '0x0e94a0032081ff1663c3616a497c645d6f40870e86f2f0ce7bae583d5da246af', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97.81207384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0247016158', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:50:08.000Z'}}, {'blockNum': '0x78103a', 'uniqueId': '0x80cd291d74afedea82f98580fb5e60f58d24e24b8bf23ccc373a3b6eeb0b0a11:log:8', 'hash': '0x80cd291d74afedea82f98580fb5e60f58d24e24b8bf23ccc373a3b6eeb0b0a11', 'from': '0xde1d540bb473a1ee08be6c22bc99cd1b977562c8', 'to': '0x57345ded90fcdb0734c8516d640c2d73c1e2d6e2', 'value': 52.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0139853b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:52:48.000Z'}}, {'blockNum': '0x781044', 'uniqueId': '0x8b4934c501fd031eca71d04b3b8a516a24a635e4e062b9956f00180e21588c17:log:72', 'hash': '0x8b4934c501fd031eca71d04b3b8a516a24a635e4e062b9956f00180e21588c17', 'from': '0x57345ded90fcdb0734c8516d640c2d73c1e2d6e2', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 52.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0139853b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T16:55:18.000Z'}}, {'blockNum': '0x78105b', 'uniqueId': '0xe29e9b3293ec74a01176c8928fdc4ee0ac0072248c9563cb29c9e9e5d6f40202:log:52', 'hash': '0xe29e9b3293ec74a01176c8928fdc4ee0ac0072248c9563cb29c9e9e5d6f40202', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0139853b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:00:09.000Z'}}, {'blockNum': '0x781060', 'uniqueId': '0xc6302b12f7d25cde9cf8d5096b24c45b8b9135de9f77e09a7ee883447c0e0faa:log:2', 'hash': '0xc6302b12f7d25cde9cf8d5096b24c45b8b9135de9f77e09a7ee883447c0e0faa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3b8c43b6c8f33f201fd0fdf23c8badd0730ec4e9', 'value': 2851.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4263128680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:00:52.000Z'}}, {'blockNum': '0x78107e', 'uniqueId': '0x5053529748f655534af17659b1ed7c4713c000770e4466afcad2c26a0ebd6cda:log:3', 'hash': '0x5053529748f655534af17659b1ed7c4713c000770e4466afcad2c26a0ebd6cda', 'from': '0x2f5b9109457d70ec8c1ca52c586944a6f10cbd13', 'to': '0x13d6a4b52828b711886507a240db411496fb10a3', 'value': 190.13631737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x046d4cfef9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:07:21.000Z'}}, {'blockNum': '0x781084', 'uniqueId': '0x63e085dac037fe195b6d94ad2c903160eee3a3d5ac4c33b47a6fb089b90fa0b3:log:8', 'hash': '0x63e085dac037fe195b6d94ad2c903160eee3a3d5ac4c33b47a6fb089b90fa0b3', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3257.085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4bd5bd4c20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:09:35.000Z'}}, {'blockNum': '0x7810c4', 'uniqueId': '0x605de7a1fda78e985e4f99d5b88b5405c4884d761c68cfd2b156fa84ad6f9ac3:log:0', 'hash': '0x605de7a1fda78e985e4f99d5b88b5405c4884d761c68cfd2b156fa84ad6f9ac3', 'from': '0xbb0ab3a2db1aad7aa356a476d76e45a5559fe33d', 'to': '0xf82d2e28eb42a9dc7c4c2751f5aca2fe17bcc963', 'value': 1577.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24b8029680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:24:38.000Z'}}, {'blockNum': '0x7810dd', 'uniqueId': '0x02c56549ef3369e966f14537cd93a536727af81301853268c3fd427943df6f76:log:24', 'hash': '0x02c56549ef3369e966f14537cd93a536727af81301853268c3fd427943df6f76', 'from': '0x13d6a4b52828b711886507a240db411496fb10a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 190.13631737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x046d4cfef9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:29:53.000Z'}}, {'blockNum': '0x7810dd', 'uniqueId': '0x26b1b13dd999c0a94a9dec7dee0639604881fc2f71e75947da3a4834b7ca6b6d:log:66', 'hash': '0x26b1b13dd999c0a94a9dec7dee0639604881fc2f71e75947da3a4834b7ca6b6d', 'from': '0xf82d2e28eb42a9dc7c4c2751f5aca2fe17bcc963', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1577.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24b8029680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:29:53.000Z'}}, {'blockNum': '0x781121', 'uniqueId': '0xdaec3219c84930d405a80eb0e489ebed29b9a52b81854d16ffb09bc2b04d944d:log:71', 'hash': '0xdaec3219c84930d405a80eb0e489ebed29b9a52b81854d16ffb09bc2b04d944d', 'from': '0xddaa42d8031a3e464cb096d196867730c3f7773a', 'to': '0x57a1d5541ebc0e130cffa3d7f7ec189e8f7f9b2f', 'value': 306.194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07210ef740', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T17:43:02.000Z'}}, {'blockNum': '0x78119a', 'uniqueId': '0x1dd4fc8382bd5f87870f86bba13be1dd8f38b2412eca086b33a340e93c1c2ba0:log:166', 'hash': '0x1dd4fc8382bd5f87870f86bba13be1dd8f38b2412eca086b33a340e93c1c2ba0', 'from': '0x579edcfce8cd6ed4ae2784d618e3060f09e8e5f4', 'to': '0x0ca8b7e9f68fdc67c989270aea6315bbb3d7b0e7', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:08:48.000Z'}}, {'blockNum': '0x7811a2', 'uniqueId': '0x137cc99e3a166f0ceb0492396f446b1a29a8d58de57c0b9dd00f7a89c701f058:log:56', 'hash': '0x137cc99e3a166f0ceb0492396f446b1a29a8d58de57c0b9dd00f7a89c701f058', 'from': '0x0ca8b7e9f68fdc67c989270aea6315bbb3d7b0e7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:10:20.000Z'}}, {'blockNum': '0x7811ac', 'uniqueId': '0x581ca9a9f03bed5e9a1a844b4dbe0bf1b9fdfa463e110fe73229092f22dbdb15:log:0', 'hash': '0x581ca9a9f03bed5e9a1a844b4dbe0bf1b9fdfa463e110fe73229092f22dbdb15', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 291.6299425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06ca3ffa4a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:11:29.000Z'}}, {'blockNum': '0x7811cc', 'uniqueId': '0xf4864beffdf19283c8650913d69517b538475c7ddddcc0ee4c2afcf645636a70:log:10', 'hash': '0xf4864beffdf19283c8650913d69517b538475c7ddddcc0ee4c2afcf645636a70', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3a5420bb5a1d7dd1934b621113624c26298465d6', 'value': 2016.78963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ef500c138', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:17:38.000Z'}}, {'blockNum': '0x7811d5', 'uniqueId': '0xcb3d9a76be9d08f73101677bb8c83b6ff3b2363e01d3bc0fb206b93a0b1c9039:log:3', 'hash': '0xcb3d9a76be9d08f73101677bb8c83b6ff3b2363e01d3bc0fb206b93a0b1c9039', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:20:06.000Z'}}, {'blockNum': '0x7811da', 'uniqueId': '0xcba8b469247b93792dc3fb6a8977f5d14b6d7ecb53f0d5e8a3cc3393639c0224:log:93', 'hash': '0xcba8b469247b93792dc3fb6a8977f5d14b6d7ecb53f0d5e8a3cc3393639c0224', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x74f60564e29f5bc4380243d476fe1e040d9834e5', 'value': 291.62994249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06ca3ffa49', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:21:09.000Z'}}, {'blockNum': '0x781208', 'uniqueId': '0x2ce790c1966ce9cdcba97e25f3ddb0005c00f60253617bc599312a6e016e6e8a:log:2', 'hash': '0x2ce790c1966ce9cdcba97e25f3ddb0005c00f60253617bc599312a6e016e6e8a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4dd63e3c8f90ced36aa5278cc88ca85306b58304', 'value': 104.17416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026ced2740', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:31:11.000Z'}}, {'blockNum': '0x781215', 'uniqueId': '0xb260152ac50c6e51ba1a01663a7564386c4a80e3d764a2f00908a9586ec9baba:log:25', 'hash': '0xb260152ac50c6e51ba1a01663a7564386c4a80e3d764a2f00908a9586ec9baba', 'from': '0x74f60564e29f5bc4380243d476fe1e040d9834e5', 'to': '0x5be02678783b921c97fccdb58d50f6eb40f8fe65', 'value': 292.29259217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06ce3319d1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:33:16.000Z'}}, {'blockNum': '0x781242', 'uniqueId': '0x0a72d1a2b003b198b2cefe0e0da803d076fe9c6ae8a1ecbfc349bb525a4422b9:log:9', 'hash': '0x0a72d1a2b003b198b2cefe0e0da803d076fe9c6ae8a1ecbfc349bb525a4422b9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 19.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76046700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:43:07.000Z'}}, {'blockNum': '0x78124b', 'uniqueId': '0xd5dd7a6a7c7354e594a4c2387a130b84c7ad8a3cbdc54c5fbda0a45bb19a9eeb:log:6', 'hash': '0xd5dd7a6a7c7354e594a4c2387a130b84c7ad8a3cbdc54c5fbda0a45bb19a9eeb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa1ffdfdcc4ff617769d0bb7b5792fa49b968e867', 'value': 33.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc7516400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:45:50.000Z'}}, {'blockNum': '0x78125c', 'uniqueId': '0xc7613d80dbf2499a62ddcac347e135139ad429f53b1d6a98478175d48a00e3fc:log:43', 'hash': '0xc7613d80dbf2499a62ddcac347e135139ad429f53b1d6a98478175d48a00e3fc', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76046700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:49:38.000Z'}}, {'blockNum': '0x78126b', 'uniqueId': '0x07a24e9175af4f745cd2da8576b85a0e126b66467ecc2a28d2aec410f210e486:log:2', 'hash': '0x07a24e9175af4f745cd2da8576b85a0e126b66467ecc2a28d2aec410f210e486', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71fd15e5626911c43137ec9d3b1168a03852fa01', 'value': 1112.24508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19e57f4e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:52:33.000Z'}}, {'blockNum': '0x781287', 'uniqueId': '0xea9f36b7d72798809a7035ee4fb562d3674414001d8f00060cb21780856efa12:log:11', 'hash': '0xea9f36b7d72798809a7035ee4fb562d3674414001d8f00060cb21780856efa12', 'from': '0xf795933ce28cedb808fe18e9f6220c9181f59d9d', 'to': '0x2a4ff51cd3992e51831ba2977102a9d5e20076e8', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x47868c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T18:57:33.000Z'}}, {'blockNum': '0x7812b0', 'uniqueId': '0xe8fd51dcbf86d3580fc62a90fbb125abceae6311c0bd487eaa8a24d2cce8047a:log:10', 'hash': '0xe8fd51dcbf86d3580fc62a90fbb125abceae6311c0bd487eaa8a24d2cce8047a', 'from': '0xa1ffdfdcc4ff617769d0bb7b5792fa49b968e867', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 33.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc7516400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:05:39.000Z'}}, {'blockNum': '0x7812d9', 'uniqueId': '0x9b1b1192d5be011f94a9281df1621a33d64ad87092ed11d0e8c217b437fb8c81:log:1', 'hash': '0x9b1b1192d5be011f94a9281df1621a33d64ad87092ed11d0e8c217b437fb8c81', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 197.26247288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0497c6a578', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:15:36.000Z'}}, {'blockNum': '0x7812ee', 'uniqueId': '0x2aa42d2591e461018ee1c8a01601475486eb731c2e67710bb50591d12b65e603:log:2', 'hash': '0x2aa42d2591e461018ee1c8a01601475486eb731c2e67710bb50591d12b65e603', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa861c36103b9e9a8d5d7b8a7269f93c840a14ca1', 'value': 263.60457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x062334a728', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:20:10.000Z'}}, {'blockNum': '0x7812fa', 'uniqueId': '0x97f52a469115a2d98f6651a8dde582cd7d961fae0fcb3e25d5bf58413797741a:log:82', 'hash': '0x97f52a469115a2d98f6651a8dde582cd7d961fae0fcb3e25d5bf58413797741a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf5a998aa24a91628774b4c60d8a21918a059cbe8', 'value': 197.26247288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0497c6a578', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:22:46.000Z'}}, {'blockNum': '0x78130d', 'uniqueId': '0x9d24064dc1ca888a12f5aef911f276cb56c0171767fc2d8b78a4edab12b6be38:log:70', 'hash': '0x9d24064dc1ca888a12f5aef911f276cb56c0171767fc2d8b78a4edab12b6be38', 'from': '0x3b39bf173d034ec279c9a6bb51aad4ff86086758', 'to': '0xe539aa05096a39360b525c0251b7cf64b86b0971', 'value': 101.16791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025b01fad8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:27:33.000Z'}}, {'blockNum': '0x781346', 'uniqueId': '0x65a9b1ae099351e04d07a17df1d406b49f9eaceccc4d20291e58cd7860aca778:log:10', 'hash': '0x65a9b1ae099351e04d07a17df1d406b49f9eaceccc4d20291e58cd7860aca778', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6643e829767dc9251665e4150d1938606ff7a428', 'value': 1.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x094c5f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:38:35.000Z'}}, {'blockNum': '0x78137f', 'uniqueId': '0xe4400f95f9dc7f8af3dafb04fb71a377558ad0979117b17e2082a6668b819d90:log:67', 'hash': '0xe4400f95f9dc7f8af3dafb04fb71a377558ad0979117b17e2082a6668b819d90', 'from': '0xbf79e9e31b530441dc3c9daeb985a0f2f64392b1', 'to': '0xf795933ce28cedb808fe18e9f6220c9181f59d9d', 'value': 20.32663902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7927fd5e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T19:50:02.000Z'}}, {'blockNum': '0x7813de', 'uniqueId': '0x58f44de6309b47a38336f5971c9dd631cc0faf5afafc22334486fe23e7a86c27:log:0', 'hash': '0x58f44de6309b47a38336f5971c9dd631cc0faf5afafc22334486fe23e7a86c27', 'from': '0xd3d6f9328006290f963676868e087d18c07d23a6', 'to': '0x6f8d24b7824a2324d83ea908f04babf1f9ebe36a', 'value': 161.28299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03c15253df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T20:11:44.000Z'}}, {'blockNum': '0x781404', 'uniqueId': '0x2c2f99ce521199910845afc63f4e2a8ae96ae9d3a5b869fe08570b6d49f5ff55:log:15', 'hash': '0x2c2f99ce521199910845afc63f4e2a8ae96ae9d3a5b869fe08570b6d49f5ff55', 'from': '0x6f8d24b7824a2324d83ea908f04babf1f9ebe36a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 161.28299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03c15253df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T20:20:10.000Z'}}, {'blockNum': '0x78146f', 'uniqueId': '0x96b085a635707c91166502ca196d4aedb12a48b36849f0b01dc796490706adbc:log:1', 'hash': '0x96b085a635707c91166502ca196d4aedb12a48b36849f0b01dc796490706adbc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x201a21eaf7cd640193940d71d205e04c7225b239', 'value': 19.05936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x719a4680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T20:46:34.000Z'}}, {'blockNum': '0x7814b9', 'uniqueId': '0x48adb56d0a76d1433e37f5f31e758db185170a6faa71748658dc06f4d6cbe991:log:69', 'hash': '0x48adb56d0a76d1433e37f5f31e758db185170a6faa71748658dc06f4d6cbe991', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xf9842a274beb866d6a5814ce15f3aa80457a2de9', 'value': 1835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ab973cb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:02:33.000Z'}}, {'blockNum': '0x7814bd', 'uniqueId': '0xe87f27c9557f617cf809d5c51bcec6f3079430556bec3dfe54910105fd759816:log:107', 'hash': '0xe87f27c9557f617cf809d5c51bcec6f3079430556bec3dfe54910105fd759816', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xc1bd376aeada20b028aba3b451613256394e4e2d', 'value': 2037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2f6d775500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:03:17.000Z'}}, {'blockNum': '0x7814be', 'uniqueId': '0x75a852019b314c99b4c1f9515ffd47203dcb5f08bb5b3e258526920c3d55a24a:log:77', 'hash': '0x75a852019b314c99b4c1f9515ffd47203dcb5f08bb5b3e258526920c3d55a24a', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x0bedce35d8c4502e5d802b2e7b4b96c265b710a7', 'value': 1964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2dba5a2c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:03:31.000Z'}}, {'blockNum': '0x7814c0', 'uniqueId': '0x1b63cbcca592c9c2384e9c26a05432ee6983e6aa6680f9162a9324ba83efe593:log:97', 'hash': '0x1b63cbcca592c9c2384e9c26a05432ee6983e6aa6680f9162a9324ba83efe593', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x34566e8f26d5a7f38063570e39538dc4226889f2', 'value': 1836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2abf69ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:03:51.000Z'}}, {'blockNum': '0x7814c2', 'uniqueId': '0x3f7b94b4703f1ef9a9a2a975c01a2ce1f4ce984ebf7142903bda2bc001029303:log:46', 'hash': '0x3f7b94b4703f1ef9a9a2a975c01a2ce1f4ce984ebf7142903bda2bc001029303', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x3c93fa6f9c0d7a67a3239515fd013514d4bfed77', 'value': 2765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4060af2d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:04:08.000Z'}}, {'blockNum': '0x7814c6', 'uniqueId': '0x902497b1b9e0ebe30eea2bbf10c5214f6660d59efcbc122ca0f9d6a899351be3:log:53', 'hash': '0x902497b1b9e0ebe30eea2bbf10c5214f6660d59efcbc122ca0f9d6a899351be3', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x1f8094aa41425f70cb654c0342e8028aaabcb94f', 'value': 1823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a71ed3f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:05:00.000Z'}}, {'blockNum': '0x7814c7', 'uniqueId': '0x392f3173639d5fe87819052bd7ee45da304d266f00e5a6e33e9920d477e814ef:log:54', 'hash': '0x392f3173639d5fe87819052bd7ee45da304d266f00e5a6e33e9920d477e814ef', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x98e6a1878c834ced5375e664a55e6843cfe9af2c', 'value': 3021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4656902d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:05:14.000Z'}}, {'blockNum': '0x7814c8', 'uniqueId': '0x5044dea190ded36016fa5ceaa3ade4e7514f78a3e8a15c71656b687bcb64d721:log:92', 'hash': '0x5044dea190ded36016fa5ceaa3ade4e7514f78a3e8a15c71656b687bcb64d721', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x884fff3b487aae343910e7b074cbd013dc682138', 'value': 2911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x43c6e97f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:05:24.000Z'}}, {'blockNum': '0x7814c9', 'uniqueId': '0xc5cadb7d20b91cd559efb7afcdccacef50e8741fcb44139cea48315fb7b943bf:log:110', 'hash': '0xc5cadb7d20b91cd559efb7afcdccacef50e8741fcb44139cea48315fb7b943bf', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x015b44099bc3ac13cf971554b242eae529f09dff', 'value': 3001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45df5a9900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:05:30.000Z'}}, {'blockNum': '0x7814cd', 'uniqueId': '0x9f7f8a55ae958926d8d177a6a87d0b4da5d741ba184cce6a5d98969ec435aaf1:log:50', 'hash': '0x9f7f8a55ae958926d8d177a6a87d0b4da5d741ba184cce6a5d98969ec435aaf1', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x4e50200c36554201a2a371007f7c17cff1874454', 'value': 2745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3fe9799900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:01.000Z'}}, {'blockNum': '0x7814cd', 'uniqueId': '0x4e7642d0e7a4227699f20e2c880cbec5fbbd3d43668fbfe8d38904acbd0a198a:log:51', 'hash': '0x4e7642d0e7a4227699f20e2c880cbec5fbbd3d43668fbfe8d38904acbd0a198a', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xbf18385b35f4466b88c14b29952f3019f76e6212', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1cc12c7300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:01.000Z'}}, {'blockNum': '0x7814ce', 'uniqueId': '0x79e8dcc2efe415328d7d811ef1554bd7fb7deec15482002731e2971620024c5f:log:44', 'hash': '0x79e8dcc2efe415328d7d811ef1554bd7fb7deec15482002731e2971620024c5f', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x384f2509e7065d2c52c816eaadef9b441a82a385', 'value': 1999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e8af7ef00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:09.000Z'}}, {'blockNum': '0x7814d0', 'uniqueId': '0x6f56b7bf5478378068cece744197856105ccf7f3c607f13a0a6ea7fea29c3477:log:45', 'hash': '0x6f56b7bf5478378068cece744197856105ccf7f3c607f13a0a6ea7fea29c3477', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x9d47cc37300c6b63febec8eeade4e86cf37d5aa3', 'value': 3017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x463eb8a900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:18.000Z'}}, {'blockNum': '0x7814d0', 'uniqueId': '0xb85cbbda6dcdcb28bbc0817453b66e176d27867764c5f088cc277384fcba85ec:log:46', 'hash': '0xb85cbbda6dcdcb28bbc0817453b66e176d27867764c5f088cc277384fcba85ec', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0x5a41d0ea37090563b4a492b0e0c8136a89358c23', 'value': 1992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e613ec800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:18.000Z'}}, {'blockNum': '0x7814d1', 'uniqueId': '0xc14aa93984dc3207cf67aece8242ef91f7cc5d8322d599cccfdc28266b3c3162:log:120', 'hash': '0xc14aa93984dc3207cf67aece8242ef91f7cc5d8322d599cccfdc28266b3c3162', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xbe4c64bc94878213530558f82c7a006d489790f1', 'value': 2192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3309569000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:07:38.000Z'}}, {'blockNum': '0x7814d6', 'uniqueId': '0x2c26adfa2714f19a5cf0dfc8581e5a7835451b80da3fdbd05b42716275372ad9:log:8', 'hash': '0x2c26adfa2714f19a5cf0dfc8581e5a7835451b80da3fdbd05b42716275372ad9', 'from': '0xfc3db2fdf65fb5a34c742917384fd1b59a9bc4ab', 'to': '0xdd47ae175e6d93122f36198f0c8ab6b073275a58', 'value': 1949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2d60f1fd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:09:04.000Z'}}, {'blockNum': '0x7814e8', 'uniqueId': '0x917acf8c1847880039b66b20a0bd25fb22f39146662139ebfd66360fa363ab09:log:9', 'hash': '0x917acf8c1847880039b66b20a0bd25fb22f39146662139ebfd66360fa363ab09', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x84907eb9c0c539b7a44ddc9ca96e0000423798d2', 'value': 257.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05fe94c880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:12:53.000Z'}}, {'blockNum': '0x7814fb', 'uniqueId': '0x7d27ab1f703806a1dcba798b24142112f35bac5ff1e6199b50207d84849ca3cc:log:11', 'hash': '0x7d27ab1f703806a1dcba798b24142112f35bac5ff1e6199b50207d84849ca3cc', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 1619.342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25b407ccc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:17:29.000Z'}}, {'blockNum': '0x781522', 'uniqueId': '0xed043a156205301bfc3129d8f4a3c7973556c22bbd3b19a42c56c08f9c0b3736:log:109', 'hash': '0xed043a156205301bfc3129d8f4a3c7973556c22bbd3b19a42c56c08f9c0b3736', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1571.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24946a0a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:28:57.000Z'}}, {'blockNum': '0x781556', 'uniqueId': '0x33e90d160480fab06f985942076c102d119bd7080a3e664f6b9de088340387ae:log:12', 'hash': '0x33e90d160480fab06f985942076c102d119bd7080a3e664f6b9de088340387ae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 1625.368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25d7f2bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T21:40:21.000Z'}}, {'blockNum': '0x7815cd', 'uniqueId': '0xe1b2b4fb7a08dd555a449101a574465564ac342e2883468d6dd319f21a8399af:log:9', 'hash': '0xe1b2b4fb7a08dd555a449101a574465564ac342e2883468d6dd319f21a8399af', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1619.342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x25b407ccc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:05:13.000Z'}}, {'blockNum': '0x7815e9', 'uniqueId': '0x43cd82243312603b9a8e7161616414df98375b52ef43ad401060a65a1e4db34f:log:12', 'hash': '0x43cd82243312603b9a8e7161616414df98375b52ef43ad401060a65a1e4db34f', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3196.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4a6c5cc900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:11:05.000Z'}}, {'blockNum': '0x781621', 'uniqueId': '0xf3ebb6ed7ab9187aaef4ac3be5f44052c0df991d20cfb51867635f39599d9720:log:9', 'hash': '0xf3ebb6ed7ab9187aaef4ac3be5f44052c0df991d20cfb51867635f39599d9720', 'from': '0x6f08ce56341a1de156dd92f26b61aefda2a51b4c', 'to': '0x2257eb956e9307383fea1d4247d1c8c946082c46', 'value': 500.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba8c31f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:25:48.000Z'}}, {'blockNum': '0x781635', 'uniqueId': '0xb1041b0ceca7213be44bfd9459e55669868e8c4324b8e2e596d3ac0769ff0202:log:40', 'hash': '0xb1041b0ceca7213be44bfd9459e55669868e8c4324b8e2e596d3ac0769ff0202', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6fb3f33e338a88a14949f131aa0e8f90745b49cc', 'value': 923.97820286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x158356d97e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:29:39.000Z'}}, {'blockNum': '0x781637', 'uniqueId': '0xdc68169dfbb675d4b7ee3ba60113a06f3537d7fdeb0bf16ef8b6a0b3ab7f5136:log:45', 'hash': '0xdc68169dfbb675d4b7ee3ba60113a06f3537d7fdeb0bf16ef8b6a0b3ab7f5136', 'from': '0x2257eb956e9307383fea1d4247d1c8c946082c46', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba8c31f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:30:18.000Z'}}, {'blockNum': '0x781683', 'uniqueId': '0x27a0d9980806f6e78fb0092f511c8947d2d333ba0a224e5c1c180f2cafb10d17:log:37', 'hash': '0x27a0d9980806f6e78fb0092f511c8947d2d333ba0a224e5c1c180f2cafb10d17', 'from': '0x0d4ee66f40077be3251a002a985c24762fa251ad', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 155.99825068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a1d270ac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:45:10.000Z'}}, {'blockNum': '0x78169c', 'uniqueId': '0xfa192a45e09c219ebd3a4f4855d3dc7477483ad9ce1619aedd9dd7713fe36c51:log:20', 'hash': '0xfa192a45e09c219ebd3a4f4855d3dc7477483ad9ce1619aedd9dd7713fe36c51', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 199.09634011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a2b4e7db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T22:50:14.000Z'}}, {'blockNum': '0x7816f8', 'uniqueId': '0xef9371c4ccfd7fbba9d4e80dbd6d6a8566f19509ce71657926bd80e56108af50:log:6', 'hash': '0xef9371c4ccfd7fbba9d4e80dbd6d6a8566f19509ce71657926bd80e56108af50', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 943.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15f6260500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:10:52.000Z'}}, {'blockNum': '0x781704', 'uniqueId': '0x7e691650de4f5ef366556db3d81ab93096171e5c4c31b6a72dadb3964b72897d:log:1', 'hash': '0x7e691650de4f5ef366556db3d81ab93096171e5c4c31b6a72dadb3964b72897d', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x46862f36d7dd083bcd3f5d7328b41a9fc2c3a591', 'value': 159.47390285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b689dd4d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:13:20.000Z'}}, {'blockNum': '0x78170e', 'uniqueId': '0x9413a6913908f9548f895136dd9b970316e56b24705bead925a5fdf8c4901579:log:1', 'hash': '0x9413a6913908f9548f895136dd9b970316e56b24705bead925a5fdf8c4901579', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa578cd67abaee60003951464fe49cb7544e41611', 'value': 688.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x100952d460', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:15:24.000Z'}}, {'blockNum': '0x78178e', 'uniqueId': '0x2cbaffe7fc586e50ab5561a4fff441bc2e2d2f6f695b59051e6763f5cd09eb45:log:3', 'hash': '0x2cbaffe7fc586e50ab5561a4fff441bc2e2d2f6f695b59051e6763f5cd09eb45', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x34ff6caade469eef6895eafb2d1b3a91ab4e94fd', 'value': 1124.00463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1a2b96f498', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:44:32.000Z'}}, {'blockNum': '0x7817c8', 'uniqueId': '0x07d37e8e5e7134aaf44e6b1da4de1b49b4293e9bc2f030faea535da764c73e62:log:4', 'hash': '0x07d37e8e5e7134aaf44e6b1da4de1b49b4293e9bc2f030faea535da764c73e62', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x34ff6caade469eef6895eafb2d1b3a91ab4e94fd', 'value': 1108.32078616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19ce1b4f18', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-05-31T23:56:20.000Z'}}, {'blockNum': '0x7817ea', 'uniqueId': '0xfe597a42f57716bb5891fa5e792c658568ac49be1d3f0ce4f5827d346f5a8bfa:log:36', 'hash': '0xfe597a42f57716bb5891fa5e792c658568ac49be1d3f0ce4f5827d346f5a8bfa', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 943.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15f6260500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:04:59.000Z'}}, {'blockNum': '0x781806', 'uniqueId': '0x3cc7212839b29cb4daa1fbbd12e8c6e7f087851469655f9835093acbf8bf5ad9:log:61', 'hash': '0x3cc7212839b29cb4daa1fbbd12e8c6e7f087851469655f9835093acbf8bf5ad9', 'from': '0x6f0402397997b710997629f847dc2c34f502f92a', 'to': '0x07c0ce8b7135670bc2b20d55603ba8cfa0506c82', 'value': 100.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0254a47a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:10:57.000Z'}}, {'blockNum': '0x78180b', 'uniqueId': '0x16ce61dbc2cbc7f3d7477260b1d3e5f2df8b558ceb2fc5190e75abc6ab70fccb:log:4', 'hash': '0x16ce61dbc2cbc7f3d7477260b1d3e5f2df8b558ceb2fc5190e75abc6ab70fccb', 'from': '0xa578cd67abaee60003951464fe49cb7544e41611', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 688.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x100952d460', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:11:48.000Z'}}, {'blockNum': '0x78186c', 'uniqueId': '0x525ebc2cb42242e81fa331115bef4d485ff1460f6fe92e18def1a43c4b4d4038:log:3', 'hash': '0x525ebc2cb42242e81fa331115bef4d485ff1460f6fe92e18def1a43c4b4d4038', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'value': 2097.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30d55be680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:30:49.000Z'}}, {'blockNum': '0x781894', 'uniqueId': '0x2b0eae07705122cb3ef91f487c05a94a844b3f2c37e118d035668f0df8914f36:log:207', 'hash': '0x2b0eae07705122cb3ef91f487c05a94a844b3f2c37e118d035668f0df8914f36', 'from': '0xaa1559de968affb0ccde6c8e2f47763e787762d6', 'to': '0x8ab879033f4c06109a0d9a5298b4d0a2d3aed888', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:41:24.000Z'}}, {'blockNum': '0x78189a', 'uniqueId': '0xb46ed54990b96598f139ebbd8f146706ce094f00923670943803d5a9e7011162:log:15', 'hash': '0xb46ed54990b96598f139ebbd8f146706ce094f00923670943803d5a9e7011162', 'from': '0xf179657bd9af6cc12a10032843734f1906c7a7fb', 'to': '0xee4d1011f90bc204f35ea100c7cc80e5c037b4a2', 'value': 2692.63122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3eb1552e50', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-01T00:43:15.000Z'}}]}}
Number of returned transfers:  202
Answer is complete
 
symbol             BRD
group              BPG
date        2019-06-17
hour             14:59
exchange       binance
Name: 273, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2019-06-17 14:59:00 2019-06-17 02:59:00 2019-06-18 02:59:00
Unix timestamps:  1560733140.0 1560819540.0
Hex Block Numbers:  0x79a803 0x79c11e
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x79a900', 'uniqueId': '0xecbb0761efe0c0acec006de4d46b6d8a1367e3a0b720fed0daea0793e93af37b:log:117', 'hash': '0xecbb0761efe0c0acec006de4d46b6d8a1367e3a0b720fed0daea0793e93af37b', 'from': '0x336665d293dbde5d457b67975d887ecf52dde350', 'to': '0xa47e3da667218b027a723ad71dba09c4910dd85f', 'value': 107.24039167838119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05d042680c2baae714', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T01:57:26.000Z'}}, {'blockNum': '0x79a930', 'uniqueId': '0x3720a953712d9404714457c50c23781f8a088db9a1dcf638014b84797e20324f:log:130', 'hash': '0x3720a953712d9404714457c50c23781f8a088db9a1dcf638014b84797e20324f', 'from': '0x2984d8b3e71d122b07c7fdcb26ff4f4e89191599', 'to': '0x472958d150418e297cfbdc73b98a1475b4d65160', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:07:30.000Z'}}, {'blockNum': '0x79a969', 'uniqueId': '0xa9de2dfbc6f4b3f8b99b68b62226ff9e838651d6b058e682bbde136470516409:log:119', 'hash': '0xa9de2dfbc6f4b3f8b99b68b62226ff9e838651d6b058e682bbde136470516409', 'from': '0x170817da64532ddd155d71e6fc107605e11e1cff', 'to': '0xdab5f0407383970a4b60c3f73887850dfbeb6d87', 'value': 16811.61723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x038f5c0e7eeb6282e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:21:21.000Z'}}, {'blockNum': '0x79a9be', 'uniqueId': '0xb974becc7df4b32d062cb17a9ec5a3b17116f1d413b7e7b6fb8ed53039af1d98:log:75', 'hash': '0xb974becc7df4b32d062cb17a9ec5a3b17116f1d413b7e7b6fb8ed53039af1d98', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3c7d43acf263d738ffef95583a18ba0e63db5761', 'value': 906.50825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x312454427d0affa000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:38:15.000Z'}}, {'blockNum': '0x79a9df', 'uniqueId': '0x0f0a192bc17c9c5c07448e23a4b1cc187144f584571f0537df92463144155e70:log:18', 'hash': '0x0f0a192bc17c9c5c07448e23a4b1cc187144f584571f0537df92463144155e70', 'from': '0xdab5f0407383970a4b60c3f73887850dfbeb6d87', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16811.61723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x038f5c0e7eeb6282e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:46:27.000Z'}}, {'blockNum': '0x79ac4f', 'uniqueId': '0x4a22565ddfecb9a5dadc6552e0aa04a843d66b26faf4dec7791a5be6c60d63d2:log:58', 'hash': '0x4a22565ddfecb9a5dadc6552e0aa04a843d66b26faf4dec7791a5be6c60d63d2', 'from': '0x05e3e7b84bd0532fe7c829652035a0250136dfb1', 'to': '0xed74a37a7894923ffb7b200f6a3ddc6cd1e3e056', 'value': 259.35014629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0e0f34cff46d0af400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T05:00:26.000Z'}}, {'blockNum': '0x79ad20', 'uniqueId': '0xd90b7e7d3d68fb55007e52550e331f024eaac3241a2d14821623c7a1cbabf831:log:17', 'hash': '0xd90b7e7d3d68fb55007e52550e331f024eaac3241a2d14821623c7a1cbabf831', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7cdca7db2be4d1cf945d7a18f783f4de610a9027', 'value': 96.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05386e53c7de1e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T05:45:30.000Z'}}, {'blockNum': '0x79adec', 'uniqueId': '0x34d749b9fc25a3a25e40dd361cf5c41901c2b1228a0902511d914dbc57c3d9dc:log:7', 'hash': '0x34d749b9fc25a3a25e40dd361cf5c41901c2b1228a0902511d914dbc57c3d9dc', 'from': '0x6d56297604a62ef08e0f0e85ed4d4afffab1b17a', 'to': '0xfe6a83711ce9878d8918741464615ff900c1a50b', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T06:33:20.000Z'}}, {'blockNum': '0x79ae05', 'uniqueId': '0x774f4ebbdf755dd292e730b1f197353b6272521a6bd234548068c393b23b0bfc:log:45', 'hash': '0x774f4ebbdf755dd292e730b1f197353b6272521a6bd234548068c393b23b0bfc', 'from': '0x6d56297604a62ef08e0f0e85ed4d4afffab1b17a', 'to': '0xfe6a83711ce9878d8918741464615ff900c1a50b', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T06:38:23.000Z'}}, {'blockNum': '0x79ae3a', 'uniqueId': '0x6825115c68f7e2d822ce672a11efd917950f85374b0c444155d474a216029349:log:130', 'hash': '0x6825115c68f7e2d822ce672a11efd917950f85374b0c444155d474a216029349', 'from': '0xfe6a83711ce9878d8918741464615ff900c1a50b', 'to': '0x1b488e0c29d63541bee08b77a6049ece1d0177a5', 'value': 90030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1310893c809de1f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T06:49:43.000Z'}}, {'blockNum': '0x79aea9', 'uniqueId': '0x00d518ddc517ba5ad8067077d3e7866d326eef0ae80bffae42d17fccd6dfa789:log:107', 'hash': '0x00d518ddc517ba5ad8067077d3e7866d326eef0ae80bffae42d17fccd6dfa789', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 14854.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03253e0c419af1e20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T07:15:47.000Z'}}, {'blockNum': '0x79aec1', 'uniqueId': '0x607230c163a84d2dd6c6a48585ebf6c0e4e108edbef272bad364a9ae73edfeb3:log:37', 'hash': '0x607230c163a84d2dd6c6a48585ebf6c0e4e108edbef272bad364a9ae73edfeb3', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x1d40b9c7ce71003abb3ed727d3422aecce698722', 'value': 288.56611606622755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0fa4a8c9ac65a2350d', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T07:22:59.000Z'}}, {'blockNum': '0x79af38', 'uniqueId': '0xcd8dc968b4911a0ad9094d05d388684d14c2814ef2eb3734ea5031efe446ff54:log:94', 'hash': '0xcd8dc968b4911a0ad9094d05d388684d14c2814ef2eb3734ea5031efe446ff54', 'from': '0x38160b1e26c0bc28407d7eebd0f02fd7c1559a8d', 'to': '0x8052ff99379d585e3484849ea7e6d8c2d9059ae3', 'value': 192.253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a6c0bdce6632c8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T07:53:50.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xb86ea295304864c89509927192f7e3915aa2b9c08faf1ccb8ad0259a1347919f:log:131', 'hash': '0xb86ea295304864c89509927192f7e3915aa2b9c08faf1ccb8ad0259a1347919f', 'from': '0x2e692146ecec0c47babc1407599287a971d08cde', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 118.556964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x066d4ef29dc4c64000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x84c5f8fa4c24035d129bf9c1b4da0320f6121abdd46715b0b88a6625e6918c15:log:132', 'hash': '0x84c5f8fa4c24035d129bf9c1b4da0320f6121abdd46715b0b88a6625e6918c15', 'from': '0x01dd3d5618f00d996c9b8f14883ab0b539b354b9', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 6168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x014e5e31f88911600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x0043dc1a8b5388f2ca94b5c82f486efb181908cf77af53e940c66aa7200d94cc:log:133', 'hash': '0x0043dc1a8b5388f2ca94b5c82f486efb181908cf77af53e940c66aa7200d94cc', 'from': '0x227dc13dede9ea7fae0cce4d30be2a164d763f90', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 89.204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04d5f445607ff20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xbfd34129f8bb2d3eaacdf30b48b02a83de310f2bb703be91ae0beafcd3f058f0:log:134', 'hash': '0xbfd34129f8bb2d3eaacdf30b48b02a83de310f2bb703be91ae0beafcd3f058f0', 'from': '0x638f7859a5b6e508c374c3894faee6b7b00227d6', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 84.99552339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x049b8cc232975aec00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xbf988ed9168496a67b777e6970af3bb40f0d06a7220a20db48773c44dba956ab:log:135', 'hash': '0xbf988ed9168496a67b777e6970af3bb40f0d06a7220a20db48773c44dba956ab', 'from': '0xa9fff549508138074c991aa27ceb9a34b469b3b5', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x825233af0fe7100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xad85eba600d98e9236ba0f199bcf4bdbefbc6aa860ee3637a9affde78ff9f2eb:log:136', 'hash': '0xad85eba600d98e9236ba0f199bcf4bdbefbc6aa860ee3637a9affde78ff9f2eb', 'from': '0x89506e5af46b64e1b0af80ef6c2320ae55fa49a8', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x4eba84a375912e4eac9a125c1fc9942a7d0db77f49161aede35077da69fdb708:log:137', 'hash': '0x4eba84a375912e4eac9a125c1fc9942a7d0db77f49161aede35077da69fdb708', 'from': '0x63e05d2eb003c1750badc4845c958acf6c5f9b96', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 3000.490768990614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa2a82c991d9430e15b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x974ffbf0b1bc4f3e85736e24740dabf13a7f4e51a9a99a381481c53e4d827b3b:log:138', 'hash': '0x974ffbf0b1bc4f3e85736e24740dabf13a7f4e51a9a99a381481c53e4d827b3b', 'from': '0x8a373eeb2ac20e33baa051a321da58a823fc4bb5', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2042.82886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6ebdf208cc802fc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x5c76cee74b15cacbec88dba894abd6bff37a79e1491623a36a7b4619063450d8:log:139', 'hash': '0x5c76cee74b15cacbec88dba894abd6bff37a79e1491623a36a7b4619063450d8', 'from': '0x24e331540bd464e58bfdde13437bc3ec511a0943', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x93b8f8c654cb740000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xb2deb5611e34ea2a6082efbf8e2dcf8e03802c56823661b02ddba4e120d87e65:log:140', 'hash': '0xb2deb5611e34ea2a6082efbf8e2dcf8e03802c56823661b02ddba4e120d87e65', 'from': '0x472958d150418e297cfbdc73b98a1475b4d65160', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xae308a078132b77ddd4d0ddbac6d90aa3bdac319c6999cc2d6e57ad04ad224ee:log:141', 'hash': '0xae308a078132b77ddd4d0ddbac6d90aa3bdac319c6999cc2d6e57ad04ad224ee', 'from': '0xed74a37a7894923ffb7b200f6a3ddc6cd1e3e056', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 259.35014629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0e0f34cff46d0af400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af68', 'uniqueId': '0x49d65d14e8dec5c44489b255cedbdea7f50d2c81481541ae7a4dc4d5f5f9e26c:log:133', 'hash': '0x49d65d14e8dec5c44489b255cedbdea7f50d2c81481541ae7a4dc4d5f5f9e26c', 'from': '0x8052ff99379d585e3484849ea7e6d8c2d9059ae3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 192.253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a6c0bdce6632c8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:04:14.000Z'}}, {'blockNum': '0x79afaa', 'uniqueId': '0x25dde5e1477c6e26e937670572d2a246a7d6f71b0d8ca00e0fd9bfc791b956da:log:47', 'hash': '0x25dde5e1477c6e26e937670572d2a246a7d6f71b0d8ca00e0fd9bfc791b956da', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 17132.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a0bfcfd4a78e580000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:17:52.000Z'}}, {'blockNum': '0x79afb1', 'uniqueId': '0x971267f3bf207843e12c34d5be37f87fa214cd9e02e550aab9e0769cf50ff7b6:log:80', 'hash': '0x971267f3bf207843e12c34d5be37f87fa214cd9e02e550aab9e0769cf50ff7b6', 'from': '0x1a70983ed1ba080868b36d0f796a6406eba89591', 'to': '0xc4ae5f2b9e6005ee34dc4417d4a1ada873bf61ec', 'value': 1371.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4a5538ff122fa00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:20:20.000Z'}}, {'blockNum': '0x79afee', 'uniqueId': '0x0de7f683737d04080d45a2d6b90f31b9ed37530fb7337301632f5454db79bb00:log:112', 'hash': '0x0de7f683737d04080d45a2d6b90f31b9ed37530fb7337301632f5454db79bb00', 'from': '0xc4ae5f2b9e6005ee34dc4417d4a1ada873bf61ec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1371.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4a5538ff122fa00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:34:23.000Z'}}, {'blockNum': '0x79b00a', 'uniqueId': '0x808898f957ff981ae74e0f46b97642182b59de792305886a9f92dbd422a766c8:log:15', 'hash': '0x808898f957ff981ae74e0f46b97642182b59de792305886a9f92dbd422a766c8', 'from': '0xd0a978f2c07ea03425a9ee49e6ec49a355907fee', 'to': '0x8def0fd87c572eab755547153b03a24bc1b62e05', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:41:30.000Z'}}, {'blockNum': '0x79b044', 'uniqueId': '0x6147ac961a052305b3b46646cec6dd90d4d4f36917fa9290986c19d796e07e20:log:49', 'hash': '0x6147ac961a052305b3b46646cec6dd90d4d4f36917fa9290986c19d796e07e20', 'from': '0x1b488e0c29d63541bee08b77a6049ece1d0177a5', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 90030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1310893c809de1f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:54:33.000Z'}}, {'blockNum': '0x79b04d', 'uniqueId': '0x33286dbe34c91a3e7572888708e53c35b1678a3e165626fa43a85cdc69c1c110:log:7', 'hash': '0x33286dbe34c91a3e7572888708e53c35b1678a3e165626fa43a85cdc69c1c110', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x621d6641f54987e99acf061eecb23427955f1ddd', 'value': 672.1048196694596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x246f53fc86821cfa2b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:56:03.000Z'}}, {'blockNum': '0x79b07b', 'uniqueId': '0x14aa67e8ea83234cdc40fc671cbde4f3784a1d6089ae56a341ad10cdfaddab64:log:39', 'hash': '0x14aa67e8ea83234cdc40fc671cbde4f3784a1d6089ae56a341ad10cdfaddab64', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 90030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1310893c809de1f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T09:07:49.000Z'}}, {'blockNum': '0x79b080', 'uniqueId': '0xe5073ee43a67e72b582e0002735cc3c7fb85cb6faffd9595e5f522a346d1c776:log:45', 'hash': '0xe5073ee43a67e72b582e0002735cc3c7fb85cb6faffd9595e5f522a346d1c776', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T09:09:51.000Z'}}, {'blockNum': '0x79b099', 'uniqueId': '0x1ab78aadaa3a08368cd73649375588b9a73ab633263b1093c4a3ecd2b413b3d7:log:61', 'hash': '0x1ab78aadaa3a08368cd73649375588b9a73ab633263b1093c4a3ecd2b413b3d7', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T09:14:33.000Z'}}, {'blockNum': '0x79b370', 'uniqueId': '0xc91f5f4cdc411928c348d1b5f8bf3389f37f7e7b028eac87c66ed0360843c04b:log:34', 'hash': '0xc91f5f4cdc411928c348d1b5f8bf3389f37f7e7b028eac87c66ed0360843c04b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x35d1cb9136cc6ff64106f9e562ca100047b72293', 'value': 507.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b7f3af5948d630000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T12:03:57.000Z'}}, {'blockNum': '0x79b3f9', 'uniqueId': '0x6475151bb4bc8f1fde49d481a0ff35c56db1ca315afe4332c7d57f96d72ca775:log:0', 'hash': '0x6475151bb4bc8f1fde49d481a0ff35c56db1ca315afe4332c7d57f96d72ca775', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3b198ad9bcb38a23de08967ad8723150490e817c', 'value': 6.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x576e189f04f60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T12:37:03.000Z'}}, {'blockNum': '0x79b413', 'uniqueId': '0xd58cb0a90590db3c2448959da457df448197f2dbb0a36c51f886457c3eccf3d9:log:44', 'hash': '0xd58cb0a90590db3c2448959da457df448197f2dbb0a36c51f886457c3eccf3d9', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd979ddb1beab0d637281462dcb96a3f4b71b39be', 'value': 118.21940560856943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06689fb30c389a5b40', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T12:42:07.000Z'}}, {'blockNum': '0x79b483', 'uniqueId': '0x60cb6427870417fa3497ae832ebdf2ecbecb11ed1e84f3f396a33fd9927af890:log:6', 'hash': '0x60cb6427870417fa3497ae832ebdf2ecbecb11ed1e84f3f396a33fd9927af890', 'from': '0x25c641c4e7afedee998f29c8bb11914ca52c3d45', 'to': '0x3bd8a17382fbf8b2f587672e1d96913e8359f26d', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc8af9209f6a0180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:04:33.000Z'}}, {'blockNum': '0x79b4d9', 'uniqueId': '0x8b2d34888f22c7ee6e3a3492edbaeb77c4cdc18cb0e5731a6db54eaa99209b9d:log:64', 'hash': '0x8b2d34888f22c7ee6e3a3492edbaeb77c4cdc18cb0e5731a6db54eaa99209b9d', 'from': '0x3bd8a17382fbf8b2f587672e1d96913e8359f26d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc8af9209f6a0180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:24:21.000Z'}}, {'blockNum': '0x79b521', 'uniqueId': '0x14fb48b0a306df4fc3d2969695ebfcd29673a7c64efc500556302ea929ed7617:log:29', 'hash': '0x14fb48b0a306df4fc3d2969695ebfcd29673a7c64efc500556302ea929ed7617', 'from': '0x4506462b445166f8f5ce1b82d4bf5e50489b8f73', 'to': '0xa5ff11e7fd0462409122aed0b5b274149f7b362f', 'value': 158.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0896c4d98f3b570000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:38:11.000Z'}}, {'blockNum': '0x79b565', 'uniqueId': '0x175480db068c3ae5f9d1bd48f5af2f6776db96384603b78780fef5087f7a2e88:log:0', 'hash': '0x175480db068c3ae5f9d1bd48f5af2f6776db96384603b78780fef5087f7a2e88', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3218caf5bfd5d317edef3f0f13d0f9f2cdebf61f', 'value': 98.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05542fc12f2ce60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:53:34.000Z'}}, {'blockNum': '0x79b61d', 'uniqueId': '0xd3accf80ea8e5b4f4592ff46a287698e991287aca3c305c0d526c8c4a9b57a63:log:18', 'hash': '0xd3accf80ea8e5b4f4592ff46a287698e991287aca3c305c0d526c8c4a9b57a63', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb5236feab9c7662579fee170b962364bf50b2c8a', 'value': 3582.077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc22f4df4d7b8ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T14:36:45.000Z'}}, {'blockNum': '0x79b63a', 'uniqueId': '0x7e5c92bcb45baa0553192d6a1475fc71e1534d87a6f7c38006d41fa123ddc649:log:28', 'hash': '0x7e5c92bcb45baa0553192d6a1475fc71e1534d87a6f7c38006d41fa123ddc649', 'from': '0xb5236feab9c7662579fee170b962364bf50b2c8a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3582.077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc22f4df4d7b8ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T14:43:49.000Z'}}, {'blockNum': '0x79b679', 'uniqueId': '0x7f920e75e9db9de9b834ea7ac86010f95f5d3c451109b7106106f720eb6ba443:log:139', 'hash': '0x7f920e75e9db9de9b834ea7ac86010f95f5d3c451109b7106106f720eb6ba443', 'from': '0x8def0fd87c572eab755547153b03a24bc1b62e05', 'to': '0x2fdc804a8abd4cf2a9ff3df34e958f87e3264619', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T14:55:42.000Z'}}, {'blockNum': '0x79b87e', 'uniqueId': '0x3c0eefdafbc09eca002b68097a3b3ef460a1e248254bc5e3bdbd42909583a39a:log:127', 'hash': '0x3c0eefdafbc09eca002b68097a3b3ef460a1e248254bc5e3bdbd42909583a39a', 'from': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'to': '0x9011134c72b9a467ee45c03f68b65c42d5919968', 'value': 115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x063bf212b431ec0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T16:49:23.000Z'}}, {'blockNum': '0x79b93b', 'uniqueId': '0x6b8d7cbb59dbae6c6748e5f493d321be20db16fa93c2aef9f1bef8bfe2e1b84c:log:15', 'hash': '0x6b8d7cbb59dbae6c6748e5f493d321be20db16fa93c2aef9f1bef8bfe2e1b84c', 'from': '0x37597f383bb4fb74f84c270598a8350b1a765530', 'to': '0x1f3b476c1633f96347dcc41c58275484baf22b26', 'value': 490.033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a9092f131a2fe8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T17:31:22.000Z'}}, {'blockNum': '0x79b9c9', 'uniqueId': '0xdaad102af8556bc4eb9bc682428fdaba508c0f18d34403b88c5cb453c144c247:log:158', 'hash': '0xdaad102af8556bc4eb9bc682428fdaba508c0f18d34403b88c5cb453c144c247', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xb2bb0ea40f13e7827089f25967419af710c5b625', 'value': 106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05bf0ba6634f680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T18:06:31.000Z'}}, {'blockNum': '0x79baab', 'uniqueId': '0xe4e52710b78c0b837cc532b3d08adefab3ad86c7df56af640886a7ef68d92959:log:96', 'hash': '0xe4e52710b78c0b837cc532b3d08adefab3ad86c7df56af640886a7ef68d92959', 'from': '0x7cd6c173e249f37d8073494d7e032b9d9282250e', 'to': '0x9feaecfb8f9bac1966c8b79a4859275c89fa7376', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T18:54:36.000Z'}}, {'blockNum': '0x79bab4', 'uniqueId': '0xdd7f4c4ba034e395890d3b684958ad78fc5d1506192b332aa3f16ba840f5b914:log:92', 'hash': '0xdd7f4c4ba034e395890d3b684958ad78fc5d1506192b332aa3f16ba840f5b914', 'from': '0x7cd6c173e249f37d8073494d7e032b9d9282250e', 'to': '0x9feaecfb8f9bac1966c8b79a4859275c89fa7376', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T18:57:45.000Z'}}, {'blockNum': '0x79bae2', 'uniqueId': '0x8c2b08e367cdd1bdfa1a4d58ab77191ffc68ba4eb91a03166c5cc7c785a2dbfb:log:2', 'hash': '0x8c2b08e367cdd1bdfa1a4d58ab77191ffc68ba4eb91a03166c5cc7c785a2dbfb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5741da22b26131e23c9c03926f2d98c2efd040fe', 'value': 302.2082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1061fb34bb7a348000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T19:10:11.000Z'}}, {'blockNum': '0x79bb12', 'uniqueId': '0x4fdcce13bebf9c4c743466cee1ff4b02794db23a3e08a063fc28d13b01dce3bf:log:0', 'hash': '0x4fdcce13bebf9c4c743466cee1ff4b02794db23a3e08a063fc28d13b01dce3bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5459289a2adc8f0d64f1866b998fee914370d2ea', 'value': 12.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xaa6b52f011cc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T19:19:46.000Z'}}, {'blockNum': '0x79bb58', 'uniqueId': '0xc14046cc578a12aea4d2c670ee53ccc6e44bb87458edab9c5efe11dc63c739e9:log:29', 'hash': '0xc14046cc578a12aea4d2c670ee53ccc6e44bb87458edab9c5efe11dc63c739e9', 'from': '0xd33f26bf71bb87df1fe3bf52f6998eb83eadc77c', 'to': '0xc3816ea0db09d16af3f7afea2a6ae86196d27fc1', 'value': 181.615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09d86a184332918000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T19:35:50.000Z'}}, {'blockNum': '0x79bbd5', 'uniqueId': '0x503eecb425c08b769116ff88b6a6aa91e560788fde1e4a479d7a3cf5abdc6c4f:log:113', 'hash': '0x503eecb425c08b769116ff88b6a6aa91e560788fde1e4a479d7a3cf5abdc6c4f', 'from': '0xc3816ea0db09d16af3f7afea2a6ae86196d27fc1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 181.615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09d86a184332918000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:03:51.000Z'}}, {'blockNum': '0x79bc15', 'uniqueId': '0x5db503c3168574dcb7aba1453f1ebde66e5c3b4a1f69f8c704143b87e0fbe910:log:106', 'hash': '0x5db503c3168574dcb7aba1453f1ebde66e5c3b4a1f69f8c704143b87e0fbe910', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x5f28d22f61a30f52ee99490e8fccb666771c2f75', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:15:21.000Z'}}, {'blockNum': '0x79bc18', 'uniqueId': '0x5b02d67fc90c4a87730b985e952d8541383cb9797126d126f3c49d2894a3cadc:log:158', 'hash': '0x5b02d67fc90c4a87730b985e952d8541383cb9797126d126f3c49d2894a3cadc', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0xff4dd871dd89975ea1976fd91db023c6fd860395', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:16:35.000Z'}}, {'blockNum': '0x79bc18', 'uniqueId': '0x595a6557347acc460afffb7b788bc8a0fd62678afb4d587c00199a348b882387:log:159', 'hash': '0x595a6557347acc460afffb7b788bc8a0fd62678afb4d587c00199a348b882387', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0xf891542b52f1708ce94f6df0f67c8548c4dba70f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:16:35.000Z'}}, {'blockNum': '0x79bc1c', 'uniqueId': '0x66af2c6e9c4b8d42fd40d028ab2269c3fe2a3d4e89994608257f419958d9576b:log:46', 'hash': '0x66af2c6e9c4b8d42fd40d028ab2269c3fe2a3d4e89994608257f419958d9576b', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x0668d1ebf4610cbf002dfb4576af2e86e46251f2', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:17:13.000Z'}}, {'blockNum': '0x79bc20', 'uniqueId': '0x8ce111cd8f1fcde9e16dac4dd78785dd3931879884033194f29616703d44dca1:log:138', 'hash': '0x8ce111cd8f1fcde9e16dac4dd78785dd3931879884033194f29616703d44dca1', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0xfa06943787ffe832493055363e4bc1d1557b274b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:18:17.000Z'}}, {'blockNum': '0x79bc20', 'uniqueId': '0xe7d0a9942304057e80cf119989e609608f818191d8317b1a61c444a299e5eea1:log:139', 'hash': '0xe7d0a9942304057e80cf119989e609608f818191d8317b1a61c444a299e5eea1', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x910b0b2092476c02f03d7880c0fbcd75ecd285d5', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:18:17.000Z'}}, {'blockNum': '0x79bc29', 'uniqueId': '0x614faa93bd1a81dd250e698b54fa17dc6c4d1a2ebbf0fa6cc8f33b7ad475b5f0:log:36', 'hash': '0x614faa93bd1a81dd250e698b54fa17dc6c4d1a2ebbf0fa6cc8f33b7ad475b5f0', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x0b504eb2a808a2561531af37ec1b08d6235b8d70', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:20:49.000Z'}}, {'blockNum': '0x79bc2f', 'uniqueId': '0x1e2646ab021e74e53e62b7b6222d2db835f2d5e06e45a8dd27f376f4fbb001ba:log:10', 'hash': '0x1e2646ab021e74e53e62b7b6222d2db835f2d5e06e45a8dd27f376f4fbb001ba', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7764aef137f4b2f72ada1a869eb7f92844574b43', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:22:13.000Z'}}, {'blockNum': '0x79bc2f', 'uniqueId': '0x5385bba89a46376111379f47702ded4debe75f7a37828478f9b7122c21e529fd:log:58', 'hash': '0x5385bba89a46376111379f47702ded4debe75f7a37828478f9b7122c21e529fd', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x430c489835375d872fe9be45b215f75c1d5da19d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:22:13.000Z'}}, {'blockNum': '0x79bc2f', 'uniqueId': '0x2cfdfea07c5cea95fa6b6a1ef2af1b507f049519feb07d966e96bc6e81b03da9:log:59', 'hash': '0x2cfdfea07c5cea95fa6b6a1ef2af1b507f049519feb07d966e96bc6e81b03da9', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x519fdc790f5bb1cc1dd55d59572a42d3e5b6ce7c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:22:13.000Z'}}, {'blockNum': '0x79bc53', 'uniqueId': '0xbc2dbb98bffe9571f31b1b10224e664b885ad8b9b7c50d4d91b69ffb9eaa235b:log:7', 'hash': '0xbc2dbb98bffe9571f31b1b10224e664b885ad8b9b7c50d4d91b69ffb9eaa235b', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'value': 113.84486638169147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x062bea36cc5687df8b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:29:55.000Z'}}, {'blockNum': '0x79bc83', 'uniqueId': '0x5fb4f9bee4340ca2b0fe92dcf15a1d74876c7b8f5e42bf51284ca254ed37e171:log:4', 'hash': '0x5fb4f9bee4340ca2b0fe92dcf15a1d74876c7b8f5e42bf51284ca254ed37e171', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xe2c2f01e93887a77d81f47ea16ffc94a1fa1dd8f', 'value': 102.99554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x059559a9efad894000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:42:10.000Z'}}, {'blockNum': '0x79bcf8', 'uniqueId': '0x8c67b7fd45219c85249a19d10fb42a88d88a91c489c2a9600bd79112a1065f55:log:1', 'hash': '0x8c67b7fd45219c85249a19d10fb42a88d88a91c489c2a9600bd79112a1065f55', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x58ede29b8b8de94e4604d468b56f0822639d20b7', 'value': 54.92213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02fa329a3ebdd32000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:06:03.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x965d53e28041d7ea6b3b54d08f68c43726df469f7ee341e1e95a7c6a17464c51:log:17', 'hash': '0x965d53e28041d7ea6b3b54d08f68c43726df469f7ee341e1e95a7c6a17464c51', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xa674ea657de352db1dc72e170a92daf7f8718453', 'value': 800.8287121034866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b69bb1eaf8de3a65b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x38eea8a9955ab28fc41fba0877cbddd86818b2377fba600b6410e08560351c2b:log:41', 'hash': '0x38eea8a9955ab28fc41fba0877cbddd86818b2377fba600b6410e08560351c2b', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x458a729f0b0b8a68335a437783d91c315615920b', 'value': 416.4721288718584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1693b63aa521d310d1', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x34647fb8ae5830beda2d9e554321e15da494867947e5de5e28d7a93786ca950d:log:42', 'hash': '0x34647fb8ae5830beda2d9e554321e15da494867947e5de5e28d7a93786ca950d', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xc4b6ae4a833274bad9bb735b3f90364ba22a4004', 'value': 415.12105901100813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1680f643c3cf1c1de3', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x33250f8670eb448d7f36153589a88a06ef4ac8f03a4c25a22ef4f384b94a0cce:log:44', 'hash': '0x33250f8670eb448d7f36153589a88a06ef4ac8f03a4c25a22ef4f384b94a0cce', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x792ebb9f4dc4d8ddf557b051d88e98320a5c8b95', 'value': 811.5981341791336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2bff2fcb0135123267', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0xbe1112dba24850fc3abddcab7891ec9b8e79ed674dd0717a57da018e46f33f63:log:45', 'hash': '0xbe1112dba24850fc3abddcab7891ec9b8e79ed674dd0717a57da018e46f33f63', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x2b1826ea3a6c5c245561fcd0cbb135a0f4f6aa89', 'value': 393.49758637797623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1554e041f8a0dca4c0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0xc77436f5a6699d3e897eebdd1f6e1f3d39ec5ab9c1897d4584429125d123a6b7:log:46', 'hash': '0xc77436f5a6699d3e897eebdd1f6e1f3d39ec5ab9c1897d4584429125d123a6b7', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xf93fed6ec2da7f44b01390f5098df77f5d3b04a2', 'value': 416.64449399893033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x16961a97d09c9d00d3', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0xe063e90eb1fc4c34edeafe44e6ed5c57858508ea44b56a1484e60a829ed89389:log:47', 'hash': '0xe063e90eb1fc4c34edeafe44e6ed5c57858508ea44b56a1484e60a829ed89389', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xba4b3f7cd4672c8645bd61ccda0b21c784491507', 'value': 800.6589730801496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b676015f17f5d014e', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd79', 'uniqueId': '0x728349faa24d0396842e991ef016ebdc484f4f85ee3cdbc9ce654c9837f745da:log:168', 'hash': '0x728349faa24d0396842e991ef016ebdc484f4f85ee3cdbc9ce654c9837f745da', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x45193f21dcd87957be6ed26e8a59b0ca586e30e4', 'value': 412.2990883206368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1659cc9c5f98f6d731', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:37:44.000Z'}}, {'blockNum': '0x79bd86', 'uniqueId': '0x0e94d50d26e67e06be0077b0c0e864adb07b00cc118b0d95d4c0882cc65a465b:log:139', 'hash': '0x0e94d50d26e67e06be0077b0c0e864adb07b00cc118b0d95d4c0882cc65a465b', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x94432c62a90bbed35c486737091a39d4553af751', 'value': 801.9637460137021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b797b9203704daad5', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:39:58.000Z'}}, {'blockNum': '0x79be72', 'uniqueId': '0x60a7448cfda855186b6b5fd9683307034799b54d5f64a7081af844385c167ee7:log:26', 'hash': '0x60a7448cfda855186b6b5fd9683307034799b54d5f64a7081af844385c167ee7', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x14e9426f19e5afdfcacabd7a9a5d02c5ca043459', 'value': 208.11309595208493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b48263e2352cecc1d', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T22:34:51.000Z'}}, {'blockNum': '0x79bf22', 'uniqueId': '0x046b8ba91f7c904286b08c4ef3835ba87d125458837a14c36d587e646939bc46:log:67', 'hash': '0x046b8ba91f7c904286b08c4ef3835ba87d125458837a14c36d587e646939bc46', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4645b1e3cc12086f7f9bb93521c5d6f72209490', 'value': 28.4327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x018a953e01d13fc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T23:16:05.000Z'}}, {'blockNum': '0x79bf22', 'uniqueId': '0xc7f693f8c3b503d660f3e3b0d979cc154acfa1050867b4628c587d20a9bcaf21:log:68', 'hash': '0xc7f693f8c3b503d660f3e3b0d979cc154acfa1050867b4628c587d20a9bcaf21', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4645b1e3cc12086f7f9bb93521c5d6f72209490', 'value': 28.4327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x018a953e01d13fc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T23:16:05.000Z'}}, {'blockNum': '0x79c0b5', 'uniqueId': '0xc26c94daf61141ce84f1889d87ba41212863044044931372be20afa03f726b8a:log:46', 'hash': '0xc26c94daf61141ce84f1889d87ba41212863044044931372be20afa03f726b8a', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x1c976ea0d60f04b4354ec4ead3f0ce069bd1b3a5', 'value': 1476.52154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x500ada45af00b84000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-18T00:37:23.000Z'}}]}}
Number of returned transfers:  79
Answer is complete
 
symbol             RDN
group              BPG
date        2019-07-29
hour             15:00
exchange       binance
Name: 274, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2019-07-29 15:00:00 2019-07-29 03:00:00 2019-07-30 03:00:00
Unix timestamps:  1564362000.0 1564448400.0
Hex Block Numbers:  0x7dc53c 0x7dde20
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7dc552', 'uniqueId': '0x8cfe8dafcbe2e1a9edef5cd05d67abc5e6a4bbec8c2bd300de37db05bd5cfff6:log:23', 'hash': '0x8cfe8dafcbe2e1a9edef5cd05d67abc5e6a4bbec8c2bd300de37db05bd5cfff6', 'from': '0xbef19ef7cc7e652092b0961fedfbeba29b471a9d', 'to': '0x17c304d4207da4295e45f0b2024217c882e656a1', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T01:05:40.000Z'}}, {'blockNum': '0x7dc5ae', 'uniqueId': '0xf2ff3481659becbd7a2d1b4cfefffe8fd5a4b540e856c6e19c97c715edc706d7:log:11', 'hash': '0xf2ff3481659becbd7a2d1b4cfefffe8fd5a4b540e856c6e19c97c715edc706d7', 'from': '0x17c304d4207da4295e45f0b2024217c882e656a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T01:23:53.000Z'}}, {'blockNum': '0x7dc66f', 'uniqueId': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d:log:123', 'hash': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 189.5045670654986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a45e777b5353bac91', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:12:06.000Z'}}, {'blockNum': '0x7dc66f', 'uniqueId': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d:log:125', 'hash': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 189.5045670654986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a45e777b5353bac91', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:12:06.000Z'}}, {'blockNum': '0x7dc66f', 'uniqueId': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d:log:130', 'hash': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 189.5045670654986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a45e777b5353bac91', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:12:06.000Z'}}, {'blockNum': '0x7dc6ac', 'uniqueId': '0x589c82ffbf92f655c9046460b4ad097d5280dc8c89a9c2604a18be2952f2a55a:log:80', 'hash': '0x589c82ffbf92f655c9046460b4ad097d5280dc8c89a9c2604a18be2952f2a55a', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 5621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0130b70b96aa66b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:25:50.000Z'}}, {'blockNum': '0x7dc775', 'uniqueId': '0x1d192c7b0e547175daf0c6b01a3ce75d7c8489c05b57869c1c74991cdf9a9923:log:30', 'hash': '0x1d192c7b0e547175daf0c6b01a3ce75d7c8489c05b57869c1c74991cdf9a9923', 'from': '0x5769b4b1c9494335b295d44a66eb1fe41e78a423', 'to': '0x88d531da71124781791532a36ea8395529577cae', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T03:12:55.000Z'}}, {'blockNum': '0x7dc77d', 'uniqueId': '0xbb5efcb0df28f57e1f9941d4facba9741f7302296cb1f95ad3a7f65244d09781:log:99', 'hash': '0xbb5efcb0df28f57e1f9941d4facba9741f7302296cb1f95ad3a7f65244d09781', 'from': '0x5769b4b1c9494335b295d44a66eb1fe41e78a423', 'to': '0x88d531da71124781791532a36ea8395529577cae', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T03:14:37.000Z'}}, {'blockNum': '0x7dc7ae', 'uniqueId': '0x724e753ee9d08c214303bdfe47f716054207803002ec7855c331761ea6d9a1f0:log:20', 'hash': '0x724e753ee9d08c214303bdfe47f716054207803002ec7855c331761ea6d9a1f0', 'from': '0x88d531da71124781791532a36ea8395529577cae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T03:23:49.000Z'}}, {'blockNum': '0x7dca92', 'uniqueId': '0xf66542a9ea02e45c3fc9a08434a07480fc97ae1f14fd9b3564863882ae3b8e65:log:26', 'hash': '0xf66542a9ea02e45c3fc9a08434a07480fc97ae1f14fd9b3564863882ae3b8e65', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x9b63f600256bdacc1c0af19f2ed620c07e60865f', 'value': 43866.3907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x094a0076478d1ee6c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T06:10:02.000Z'}}, {'blockNum': '0x7dcaa0', 'uniqueId': '0xced6be35a423c9eb6528d7adeef2683af3e186fb27068fd7b45b05a63d7ea193:log:7', 'hash': '0xced6be35a423c9eb6528d7adeef2683af3e186fb27068fd7b45b05a63d7ea193', 'from': '0x9b63f600256bdacc1c0af19f2ed620c07e60865f', 'to': '0x27c9a9604467aa0340cdefa784a93e0ea4f8f4c0', 'value': 43866.3907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x094a0076478d1ee6c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T06:14:42.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:36', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 353.30631433001275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee94fc8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:38', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 353.30631433001275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee94fc8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:43', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 353.30631433001264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:45', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 353.30631433001264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd78', 'uniqueId': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4:log:48', 'hash': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 199.473987730719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad041f6fb8c224282', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:54:49.000Z'}}, {'blockNum': '0x7dcd78', 'uniqueId': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4:log:50', 'hash': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 199.473987730719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad041f6fb8c224282', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:54:49.000Z'}}, {'blockNum': '0x7dcd78', 'uniqueId': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4:log:55', 'hash': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 199.473987730719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad041f6fb8c224282', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:54:49.000Z'}}, {'blockNum': '0x7dcd8e', 'uniqueId': '0xb1c2e7237edf626974b2bae100ba2b3ac6b849c6c48dabbf1b44c97280370f83:log:4', 'hash': '0xb1c2e7237edf626974b2bae100ba2b3ac6b849c6c48dabbf1b44c97280370f83', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2410.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x82af2edd90622e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:59:13.000Z'}}, {'blockNum': '0x7dce65', 'uniqueId': '0xa702eac9064d784c7f9916444af74991e6f8cc565d2a1955a534b88559b52240:log:34', 'hash': '0xa702eac9064d784c7f9916444af74991e6f8cc565d2a1955a534b88559b52240', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x93c990ad10bd6e41fe25571375da94f9112c7db2', 'value': 3.8770359056241515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x35cdff9d60299563', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:50:05.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:62', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 634.5126075760069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab8711e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:64', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 634.5126075760069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab8711e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:69', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 634.5126075760066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:71', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 634.5126075760066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dcf20', 'uniqueId': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc:log:47', 'hash': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 237.93581621891116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ce605d4368ed37bde', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T10:31:08.000Z'}}, {'blockNum': '0x7dcf20', 'uniqueId': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc:log:49', 'hash': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 237.93581621891116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ce605d4368ed37bde', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T10:31:08.000Z'}}, {'blockNum': '0x7dcf20', 'uniqueId': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc:log:54', 'hash': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 237.93581621891104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ce605d4368ed20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T10:31:08.000Z'}}, {'blockNum': '0x7dd06b', 'uniqueId': '0xb9f594d89cd1f33c80311d71c36e279a464ea6c0f016730d4aebb9bf581593bb:log:7', 'hash': '0xb9f594d89cd1f33c80311d71c36e279a464ea6c0f016730d4aebb9bf581593bb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7a6ab43aee38c562f8f0ba1890a286e28ab03896', 'value': 188.506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a380bd8409dc90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T11:49:06.000Z'}}, {'blockNum': '0x7dd0f4', 'uniqueId': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4:log:65', 'hash': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4', 'from': '0x16ea1f673e01419ba9af51365b88138ac492489a', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 45.648922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279818d5b1acbe780', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:21:44.000Z'}}, {'blockNum': '0x7dd0f4', 'uniqueId': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4:log:66', 'hash': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 45.648922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279818d5b1acbe780', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:21:44.000Z'}}, {'blockNum': '0x7dd157', 'uniqueId': '0xcebbf02a25e1697c0d6ae7b01b8dd1aca676f1c12379ef71ad6d2c3f524f226a:log:7', 'hash': '0xcebbf02a25e1697c0d6ae7b01b8dd1aca676f1c12379ef71ad6d2c3f524f226a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x34b61c1b68212b1799a3aebb1ff763f7a766aaf9', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:44:15.000Z'}}, {'blockNum': '0x7dd170', 'uniqueId': '0xa8b66cd3d4ca96802696060acf7cc548c041608a427494cc79b62c3bfa0bb8f1:log:26', 'hash': '0xa8b66cd3d4ca96802696060acf7cc548c041608a427494cc79b62c3bfa0bb8f1', 'from': '0x1cb5b2bb4030220ad5417229a7a1e3c373cdd2f6', 'to': '0xf36700ff798394c4a58fe861a4661f5489d90735', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:48:30.000Z'}}, {'blockNum': '0x7dd1b9', 'uniqueId': '0xfca6fa6f44a2fa15e2d40d7e6ee6bb9da47c23e609817c464320a463b85ab1fa:log:49', 'hash': '0xfca6fa6f44a2fa15e2d40d7e6ee6bb9da47c23e609817c464320a463b85ab1fa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7f5be7b017a7035ec0e5e7d423a9c22dba8353d', 'value': 2976.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa15ddf47d209850000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:24.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:118', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 334.5484508916073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f7723e8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:120', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 334.5484508916073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f7723e8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:125', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 334.5484508916072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f770000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:127', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 334.5484508916072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f770000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1c3', 'uniqueId': '0x70290aa73784e1d07f1fd0cbdc22d5b68c07f8bf9c3c69853f3891917e0143bf:log:4', 'hash': '0x70290aa73784e1d07f1fd0cbdc22d5b68c07f8bf9c3c69853f3891917e0143bf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf7f5be7b017a7035ec0e5e7d423a9c22dba8353d', 'value': 3465.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbbe03fcbef374a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:07:16.000Z'}}, {'blockNum': '0x7dd1c8', 'uniqueId': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6:log:50', 'hash': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 197.488661040306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ab4b4aae05af7327e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:08:42.000Z'}}, {'blockNum': '0x7dd1c8', 'uniqueId': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6:log:52', 'hash': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 197.488661040306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ab4b4aae05af7327e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:08:42.000Z'}}, {'blockNum': '0x7dd1c8', 'uniqueId': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6:log:57', 'hash': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 197.488661040306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ab4b4aae05af7327e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:08:42.000Z'}}, {'blockNum': '0x7dd1d7', 'uniqueId': '0xece55e828f186a26456296ef2c0a7018fceca5aee90f2105332b23e70971fb5e:log:28', 'hash': '0xece55e828f186a26456296ef2c0a7018fceca5aee90f2105332b23e70971fb5e', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xf7f5be7b017a7035ec0e5e7d423a9c22dba8353d', 'value': 158.3907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08961cce75c976c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:11:58.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:114', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 372.2971628242598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea93912e1c4f136', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:116', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 372.2971628242598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea93912e1c4f136', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:121', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 372.29679052709696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea7e678b1a0d6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:123', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 372.29679052709696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea7e678b1a0d6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd204', 'uniqueId': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a:log:114', 'hash': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 198.61824346760994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ac461c01bf6f0cd42', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:21:01.000Z'}}, {'blockNum': '0x7dd204', 'uniqueId': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a:log:116', 'hash': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 198.61824346760994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ac461c01bf6f0cd42', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:21:01.000Z'}}, {'blockNum': '0x7dd204', 'uniqueId': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a:log:121', 'hash': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 198.61824346760994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ac461c01bf6f0cd42', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:21:01.000Z'}}, {'blockNum': '0x7dd369', 'uniqueId': '0xe0069619f571a7ebe5641a45c29f3dd87a00bfe6b7c7757f8ac34c0c375ed1cd:log:132', 'hash': '0xe0069619f571a7ebe5641a45c29f3dd87a00bfe6b7c7757f8ac34c0c375ed1cd', 'from': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'to': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'value': 4937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010ba2a36ea727840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T14:40:49.000Z'}}, {'blockNum': '0x7dd3cd', 'uniqueId': '0x2fdb4778533d58e1b72cd78b6f6bc6d4193d934e139ac056fd5ebe97076a984e:log:1', 'hash': '0x2fdb4778533d58e1b72cd78b6f6bc6d4193d934e139ac056fd5ebe97076a984e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 5142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0116bf95bc8432980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:02:42.000Z'}}, {'blockNum': '0x7dd3fb', 'uniqueId': '0x9ed1903a211361f8c49f9ef9ee27b41bce9a53c45c6949c3d1fca6990b3565e3:log:38', 'hash': '0x9ed1903a211361f8c49f9ef9ee27b41bce9a53c45c6949c3d1fca6990b3565e3', 'from': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'to': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'value': 3245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xafe96be340ce940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:13:14.000Z'}}, {'blockNum': '0x7dd3ff', 'uniqueId': '0xa569b4f376aaafee58ff8967b4d567e7e02e922f7136f571fb7095f15cd201d7:log:23', 'hash': '0xa569b4f376aaafee58ff8967b4d567e7e02e922f7136f571fb7095f15cd201d7', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0116bf95bc8432980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:13:56.000Z'}}, {'blockNum': '0x7dd4ab', 'uniqueId': '0x77c4bf2f46217e1c02a75f0c55c253119c6d5820757098fb08248e645c3762c9:log:131', 'hash': '0x77c4bf2f46217e1c02a75f0c55c253119c6d5820757098fb08248e645c3762c9', 'from': '0x773c249cc8dd02fce180ff066823312e448c6413', 'to': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:56:26.000Z'}}, {'blockNum': '0x7dd4b6', 'uniqueId': '0x4b506195c3f488e2e910a706b7178bab3367a7be78cf48b295749250721056c1:log:117', 'hash': '0x4b506195c3f488e2e910a706b7178bab3367a7be78cf48b295749250721056c1', 'from': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'to': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'value': 5411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012554b5b74b16ac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:59:49.000Z'}}, {'blockNum': '0x7dd4e9', 'uniqueId': '0xdd8696f59fd24b4e25992161286aeeaa559aa7588a374c9ce0423dea3324d2ae:log:126', 'hash': '0xdd8696f59fd24b4e25992161286aeeaa559aa7588a374c9ce0423dea3324d2ae', 'from': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'to': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'value': 4329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeaacf183f99a040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T16:13:17.000Z'}}, {'blockNum': '0x7dd5d8', 'uniqueId': '0x5dd03bde0ee17aa5551deb8533849cc53e4a6db722df346cd2aa17a955a5a451:log:17', 'hash': '0x5dd03bde0ee17aa5551deb8533849cc53e4a6db722df346cd2aa17a955a5a451', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x301ad4b114174a2e237ff3ecdd53511f80b3f8fa', 'value': 6284.0292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0154a86c7f2fb6210000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T17:07:31.000Z'}}, {'blockNum': '0x7dd7cb', 'uniqueId': '0x152134597a244e700089dde00c871fc79007b9f7cb3b1e18be7f6a8e0910b16f:log:0', 'hash': '0x152134597a244e700089dde00c871fc79007b9f7cb3b1e18be7f6a8e0910b16f', 'from': '0x67ca63d179611594c7e2c4bde379b59d35c0453e', 'to': '0x193397962bd548a45f83a1af5313bd1bb6d7e606', 'value': 346.464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12c827645ae4f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T18:59:13.000Z'}}, {'blockNum': '0x7dd7e5', 'uniqueId': '0x13b4f27dd84ea625a7d0419195f15f19218649464bac8dd257899a8ab20959de:log:19', 'hash': '0x13b4f27dd84ea625a7d0419195f15f19218649464bac8dd257899a8ab20959de', 'from': '0x193397962bd548a45f83a1af5313bd1bb6d7e606', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 346.464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12c827645ae4f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T19:03:41.000Z'}}, {'blockNum': '0x7dd9cd', 'uniqueId': '0x8129e91798b6ce3ac6e7ff2604c1cc015e86c0bc813d1f2bd79072744cecaf74:log:234', 'hash': '0x8129e91798b6ce3ac6e7ff2604c1cc015e86c0bc813d1f2bd79072744cecaf74', 'from': '0x93c990ad10bd6e41fe25571375da94f9112c7db2', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 15.271222809908046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd3ee483c36696691', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T20:55:16.000Z'}}, {'blockNum': '0x7ddacf', 'uniqueId': '0xafda6a5b5a5a50ea03f55ef0d3a4a8213aaf47757ffbe654c2b9e03b7ea0638b:log:36', 'hash': '0xafda6a5b5a5a50ea03f55ef0d3a4a8213aaf47757ffbe654c2b9e03b7ea0638b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 931.7380478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32827681ea12ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T21:48:54.000Z'}}, {'blockNum': '0x7ddad6', 'uniqueId': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b:log:9', 'hash': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 931.7380478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32827681ea12ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T21:50:14.000Z'}}, {'blockNum': '0x7ddad6', 'uniqueId': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b:log:11', 'hash': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 931.7380478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32827681ea12ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T21:50:14.000Z'}}, {'blockNum': '0x7dddf0', 'uniqueId': '0xf15faa9c7552391eb9f0dc785bac41c1cd4a553327ea14effdbb8ad1211af507:log:72', 'hash': '0xf15faa9c7552391eb9f0dc785bac41c1cd4a553327ea14effdbb8ad1211af507', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x10c2dc6ddc8e98eedf6e9a9113f6223853628183', 'value': 59.220741996326176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0335da5714aa143c0b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-30T00:50:16.000Z'}}]}}
Number of returned transfers:  64
Answer is complete
 
symbol             BRD
group              BPG
date        2019-10-03
hour             14:59
exchange       binance
Name: 275, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2019-10-03 14:59:00 2019-10-03 02:59:00 2019-10-04 02:59:00
Unix timestamps:  1570064340.0 1570150740.0
Hex Block Numbers:  0x843c64 0x84556a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x843ccd', 'uniqueId': '0x500dedfc22812518aa437221f30c972d81ec3549d4ddb6793276e0d1857c9af9:log:72', 'hash': '0x500dedfc22812518aa437221f30c972d81ec3549d4ddb6793276e0d1857c9af9', 'from': '0xef9bbfe4ffe3789ae09fa114341fc16afe8e6ced', 'to': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T01:23:24.000Z'}}, {'blockNum': '0x843cff', 'uniqueId': '0xb4aa96a09e3fe93e1d455f0fdf2dc9854ea213bf3863785b440edd35c8605e6d:log:9', 'hash': '0xb4aa96a09e3fe93e1d455f0fdf2dc9854ea213bf3863785b440edd35c8605e6d', 'from': '0x04d73710af531a575113e65d315147247fb7088d', 'to': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'value': 4.557111647405681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3f3e1ce6116929d9', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T01:38:33.000Z'}}, {'blockNum': '0x843d4c', 'uniqueId': '0x9c8dd0708724064bd5d138b72794592eb60532c50a90b74248185b8bfda33e18:log:30', 'hash': '0x9c8dd0708724064bd5d138b72794592eb60532c50a90b74248185b8bfda33e18', 'from': '0x41ce6644b9ec14ee58c994d571970b62167ab23b', 'to': '0x3683792624a0501a75110420dfd5c84843282ef9', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T01:55:54.000Z'}}, {'blockNum': '0x843dd4', 'uniqueId': '0xe94cdacab65d6380bd5718f68fa223e3fed6ee507e47f973c8d8741549c639cb:log:47', 'hash': '0xe94cdacab65d6380bd5718f68fa223e3fed6ee507e47f973c8d8741549c639cb', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 2722.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9397aa430c06840000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T02:27:07.000Z'}}, {'blockNum': '0x843dd6', 'uniqueId': '0x0abdc5eb5235714ed6e0c449e5bce77fa639555b93c4c471ab01fe9ea68be8d0:log:53', 'hash': '0x0abdc5eb5235714ed6e0c449e5bce77fa639555b93c4c471ab01fe9ea68be8d0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2896762d1639c1838edf6f21e29a89c2aca84491', 'value': 2094.31830398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x718881494bbe763800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T02:27:44.000Z'}}, {'blockNum': '0x843edd', 'uniqueId': '0x29061e37468798d8ce0192b877da45293c945b9b032b3dba98096a31a7693be5:log:93', 'hash': '0x29061e37468798d8ce0192b877da45293c945b9b032b3dba98096a31a7693be5', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 9036.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01e9e0046e0a8eec0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T03:25:53.000Z'}}, {'blockNum': '0x843edf', 'uniqueId': '0x395199186bdb0a5855222789671acaddbc1e92bbb134cb27ba8641a4e6ad9bca:log:42', 'hash': '0x395199186bdb0a5855222789671acaddbc1e92bbb134cb27ba8641a4e6ad9bca', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T03:26:21.000Z'}}, {'blockNum': '0x843fa2', 'uniqueId': '0xc2f0b217da075909fee507b1d146ea50895e0490a9a987bada5abb76acb4d4c6:log:20', 'hash': '0xc2f0b217da075909fee507b1d146ea50895e0490a9a987bada5abb76acb4d4c6', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x7a9f328d99cbfdcbd6f2a4f03f4b9d2fc63be0c8', 'value': 86.93057175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b6676e6dc05b7c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T04:06:25.000Z'}}, {'blockNum': '0x84401c', 'uniqueId': '0xe3ccf4e6f8d9080b522f0628c292fd5753670d6ab91f2e3b71bfd44c5ab29899:log:14', 'hash': '0xe3ccf4e6f8d9080b522f0628c292fd5753670d6ab91f2e3b71bfd44c5ab29899', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8485ce278c81e9788fe4571d966b718e15e42eee', 'value': 212.87271094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b8a33cac0811c1800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T04:31:33.000Z'}}, {'blockNum': '0x84404b', 'uniqueId': '0x8a1c022a9ac01d15df491454fdf4669c351bf2990c818243381f038763feb11a:log:27', 'hash': '0x8a1c022a9ac01d15df491454fdf4669c351bf2990c818243381f038763feb11a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xdcf9bcf5913d261535571f8dd58258eb611887d6', 'value': 83.4358796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0485e7ca6f1842e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T04:42:37.000Z'}}, {'blockNum': '0x84408a', 'uniqueId': '0xb97a4815682c7c175054b46d7ac1b36fd835b5e506052db4d11b98bf1f238500:log:137', 'hash': '0xb97a4815682c7c175054b46d7ac1b36fd835b5e506052db4d11b98bf1f238500', 'from': '0x7a9f328d99cbfdcbd6f2a4f03f4b9d2fc63be0c8', 'to': '0x2c558203f4931c566e9f8af4b1b47775f58d7fd2', 'value': 86.93057175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b6676e6dc05b7c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T04:56:55.000Z'}}, {'blockNum': '0x8440d9', 'uniqueId': '0xc74651c6865e5b31583c35ec142e0828433d7c101b2c3033a241436818e77e69:log:149', 'hash': '0xc74651c6865e5b31583c35ec142e0828433d7c101b2c3033a241436818e77e69', 'from': '0xad63ea28b762233560b38faca66c9504d1a5cf47', 'to': '0x782b3cc75980a0ac397846ad768e371ef5f54adb', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T05:16:30.000Z'}}, {'blockNum': '0x844292', 'uniqueId': '0x220fa194bcb1e1cb82d84d2659e44c4b4da7c389a062755844efa154b7989fd7:log:27', 'hash': '0x220fa194bcb1e1cb82d84d2659e44c4b4da7c389a062755844efa154b7989fd7', 'from': '0x07715f89037b891d8f7d239143f43e93a8b49781', 'to': '0xa2061074a9921fcfc0168ef91b58e69672462626', 'value': 26800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05acd4b69783b4c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T06:54:46.000Z'}}, {'blockNum': '0x8442f5', 'uniqueId': '0xe18d4e882c62b7032464fed477922138c84b6efc10fb88dcac204daa9446dacb:log:6', 'hash': '0xe18d4e882c62b7032464fed477922138c84b6efc10fb88dcac204daa9446dacb', 'from': '0x50060f6dfb4acdbe95c2e89251bc2c1e77c2b9da', 'to': '0x720b78db122c36f5d8c8390c01e391cccfc240b4', 'value': 540.851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1d51d0bef2d6cb8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T07:16:35.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x9aa331ec66fa2f3dbb16256a098f224f7411bf42a2580f68785a7cdc351c3ba1:log:72', 'hash': '0x9aa331ec66fa2f3dbb16256a098f224f7411bf42a2580f68785a7cdc351c3ba1', 'from': '0x782b3cc75980a0ac397846ad768e371ef5f54adb', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xebd56568e40dcf31b2435c4162e87845de0e5b5988aa99e521b342ba68f35564:log:73', 'hash': '0xebd56568e40dcf31b2435c4162e87845de0e5b5988aa99e521b342ba68f35564', 'from': '0x8e880173e29372f73cd3b27aebd771ca1d1f361c', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 23.43338695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0145341d468f063c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x37df0c973895c497df728b5a38b9e4803bc5db6a7f1c129e1e9191af470913a9:log:74', 'hash': '0x37df0c973895c497df728b5a38b9e4803bc5db6a7f1c129e1e9191af470913a9', 'from': '0xb21b5743352a2f065c7c4c42e2e28d86b53bb4d2', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 56.5559409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0310df109a327c6800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x2d4e535f46d37b3a6c1aaa9c858dde922972dcea71063f6e49727fdd36691f4f:log:75', 'hash': '0x2d4e535f46d37b3a6c1aaa9c858dde922972dcea71063f6e49727fdd36691f4f', 'from': '0xc896168e717ed05ed3a5fd8a60c0a5c74dba0976', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 42.63589344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x024fb11f30649b8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xac114612f47a31f0f83defc9240b5a92760894f26851c9a3c4817f7919a17d2b:log:76', 'hash': '0xac114612f47a31f0f83defc9240b5a92760894f26851c9a3c4817f7919a17d2b', 'from': '0xeeb3841d1c6d030288506fa2ee5b4ce4a72047b6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x7672f24b23d354964e97b0bf7bf3ae020a7f80609a84a54859dc7053b240fbcf:log:77', 'hash': '0x7672f24b23d354964e97b0bf7bf3ae020a7f80609a84a54859dc7053b240fbcf', 'from': '0xc5ade0d4e7bea5c00261def24b99f20227e67230', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 999.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc38a941c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xe383569c36843fb63b1d830d78206ac38a3b57d364874238a53c3d3aa8aea44a:log:78', 'hash': '0xe383569c36843fb63b1d830d78206ac38a3b57d364874238a53c3d3aa8aea44a', 'from': '0x0b7148f348e6a063a0ffac9a0a330e36564d81c4', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x63a2e72c2228d3dc656622ee404451b43a005fca1f4835c6a440a037f03f332c:log:79', 'hash': '0x63a2e72c2228d3dc656622ee404451b43a005fca1f4835c6a440a037f03f332c', 'from': '0xfe5e36f757607bdff2add83d40e1265659b853aa', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xc8def6666691787ee2381112c0a63f21fe4969db69b086e2eea1fc10eb881c60:log:82', 'hash': '0xc8def6666691787ee2381112c0a63f21fe4969db69b086e2eea1fc10eb881c60', 'from': '0x3683792624a0501a75110420dfd5c84843282ef9', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x09ac6406c9caceeb2bca1a1995fbe16c6851a63cdf18b006b9bbfdfc9253866f:log:83', 'hash': '0x09ac6406c9caceeb2bca1a1995fbe16c6851a63cdf18b006b9bbfdfc9253866f', 'from': '0xe292179292d57304e2c13e9c6049842c8124c257', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 299.20966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x10385e407d4167c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x73333c32b63563c01d94a1df471a424358fe9c5d8ad8cd49bba32c051c816cef:log:84', 'hash': '0x73333c32b63563c01d94a1df471a424358fe9c5d8ad8cd49bba32c051c816cef', 'from': '0x914158815a41c31c6d011d268b5cf1c65b2a5d53', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 13.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xb6e8c42b5ba60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xb4d57dd994e13b8001cd8ef321cba66f5fa54b5f22855ee7e9d95ef7c0e162e3:log:85', 'hash': '0xb4d57dd994e13b8001cd8ef321cba66f5fa54b5f22855ee7e9d95ef7c0e162e3', 'from': '0xaab81f78fed546507fca6d76463e9fb9263d3386', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 58.82855328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0330690185688a8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xf288a0a6b6db9c8f4e5ed7dc018ae328333ba0caecd07a718e9f0f4f1d1a2f87:log:86', 'hash': '0xf288a0a6b6db9c8f4e5ed7dc018ae328333ba0caecd07a718e9f0f4f1d1a2f87', 'from': '0x2c558203f4931c566e9f8af4b1b47775f58d7fd2', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 86.93057175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04b6676e6dc05b7c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0xbce682f1658d17b15bf28616391f84677540a807b699b59b8f1e3095243d0350:log:87', 'hash': '0xbce682f1658d17b15bf28616391f84677540a807b699b59b8f1e3095243d0350', 'from': '0x0a57f44f04f9e2fdecfe8fb31bdbeaa733491398', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444da', 'uniqueId': '0x21e93d71e1a0c69277a349bc92775e539f7c5d8c9c918be7366a615a5c643a71:log:88', 'hash': '0x21e93d71e1a0c69277a349bc92775e539f7c5d8c9c918be7366a615a5c643a71', 'from': '0x000c27f1297860a52a84ca41dc4991de8533a6e6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x50fd6a3c72e1980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:06:17.000Z'}}, {'blockNum': '0x8444f4', 'uniqueId': '0x09cb7d174ed818767c6f28b587f4f10c844806e01e22644bafea2c8494ca0a28:log:84', 'hash': '0x09cb7d174ed818767c6f28b587f4f10c844806e01e22644bafea2c8494ca0a28', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 32.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01c1a3ec5662a80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:11:08.000Z'}}, {'blockNum': '0x8444f5', 'uniqueId': '0xf6b678e6429790a66066a23d9fec2c9c39db5c9091df14e6ccfd677bfb01581f:log:24', 'hash': '0xf6b678e6429790a66066a23d9fec2c9c39db5c9091df14e6ccfd677bfb01581f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x56edbb942d15dc6532cdc2cdb4e8342b47a51525', 'value': 24.94483793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x015a2dddef15572400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:11:19.000Z'}}, {'blockNum': '0x844593', 'uniqueId': '0x0a47fdd52a0765897397935af25e2bb2569662d06f33210dd985d804b55011dd:log:86', 'hash': '0x0a47fdd52a0765897397935af25e2bb2569662d06f33210dd985d804b55011dd', 'from': '0xbce023ac4557ea3832351cbfe2a957e2bba033e6', 'to': '0x6a943f731c29685a279400ae20bdbf73e1136d1e', 'value': 43.9552944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x026200935f25b78000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T09:53:27.000Z'}}, {'blockNum': '0x84475c', 'uniqueId': '0xcdb53ad41632c3c4e12e010f1fea26a56dcbb0cc0423e5808203d0a9afaa58f5:log:52', 'hash': '0xcdb53ad41632c3c4e12e010f1fea26a56dcbb0cc0423e5808203d0a9afaa58f5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xdcf9bcf5913d261535571f8dd58258eb611887d6', 'value': 2.63693547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x249846d6c0fa4c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T11:49:51.000Z'}}, {'blockNum': '0x8447ae', 'uniqueId': '0xa4e16006e3409624260652eef156d2c09968fa5df4d7c5d6aa1ded3981c8ee98:log:176', 'hash': '0xa4e16006e3409624260652eef156d2c09968fa5df4d7c5d6aa1ded3981c8ee98', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 137.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x077432217e68360000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:12:05.000Z'}}, {'blockNum': '0x8447b0', 'uniqueId': '0x4f751064861f69913ab39622a8e68ac53e7fa5d50e37301d99e48ea1b46ab3ab:log:9', 'hash': '0x4f751064861f69913ab39622a8e68ac53e7fa5d50e37301d99e48ea1b46ab3ab', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xdcf9bcf5913d261535571f8dd58258eb611887d6', 'value': 105.82590466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05bca123993da7c800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:12:14.000Z'}}, {'blockNum': '0x8447b0', 'uniqueId': '0x7781a264b8c69f23fec509727a7c75919858d917c0328a1df24d066e4ecc2c2b:log:210', 'hash': '0x7781a264b8c69f23fec509727a7c75919858d917c0328a1df24d066e4ecc2c2b', 'from': '0xdd578da44c9c4bfc96d54ef321eb1e53f0721df3', 'to': '0x01293a8fc946cd68cb50b22b81d6813da3c4fc76', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:12:14.000Z'}}, {'blockNum': '0x8447e5', 'uniqueId': '0x16e80cf0d2efcc79e93fe94441a64ed5ccc03ee443221a366a51b0d4386732b7:log:97', 'hash': '0x16e80cf0d2efcc79e93fe94441a64ed5ccc03ee443221a366a51b0d4386732b7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 136.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x076bde80ac36fa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:21:18.000Z'}}, {'blockNum': '0x8447e7', 'uniqueId': '0x6e40c3ce6bb33dcd2fc92f166d2017c9da1e6721e13e50cefd8a835952437a70:log:42', 'hash': '0x6e40c3ce6bb33dcd2fc92f166d2017c9da1e6721e13e50cefd8a835952437a70', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5a400fce1b5dd983c7a0d1fe3ced446bec8155fa', 'value': 105.37541616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05b660aeb1d3c1c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:22:05.000Z'}}, {'blockNum': '0x84485b', 'uniqueId': '0xbb3234f089eb8d242a19f78e269ade0d69b3a04d24debfd07091e3a15bc38c02:log:163', 'hash': '0xbb3234f089eb8d242a19f78e269ade0d69b3a04d24debfd07091e3a15bc38c02', 'from': '0xc24f18869d9d42133b627bfde6151dc611ae4d88', 'to': '0x9ae77dd88012997f0a1f6ec0588d39ab0eb7134b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T12:46:40.000Z'}}, {'blockNum': '0x844927', 'uniqueId': '0xcb8842dfded6c489db6d169d212982ccd8e951d1db3d700a6ebf2ec0e59c5f53:log:57', 'hash': '0xcb8842dfded6c489db6d169d212982ccd8e951d1db3d700a6ebf2ec0e59c5f53', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x33117285d6f6cbd1a3892d2cbc14f05bfacbe545', 'value': 28.38449447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0189e9fb553d63bc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T13:31:40.000Z'}}, {'blockNum': '0x844a3d', 'uniqueId': '0x2a392c44a3b418ce6b7f49263b90e5d0efeb013683f3a03176c0e61c0bdb5bf7:log:77', 'hash': '0x2a392c44a3b418ce6b7f49263b90e5d0efeb013683f3a03176c0e61c0bdb5bf7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 355.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x134854416bae720000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:26:45.000Z'}}, {'blockNum': '0x844a3f', 'uniqueId': '0x7cccbe48b83ac6bd1ae16e68c79e75a923f1851aa731646ef04d45183c126b62:log:58', 'hash': '0x7cccbe48b83ac6bd1ae16e68c79e75a923f1851aa731646ef04d45183c126b62', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2346e5124f5632fbd19c90979e8d4b8c600b54bc', 'value': 139.69340777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0792a2ae3d4aa48400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:27:28.000Z'}}, {'blockNum': '0x844a3f', 'uniqueId': '0xd8823b9532856dc492f0167176fbed8d133317d0042450c672725387cfbed1a7:log:59', 'hash': '0xd8823b9532856dc492f0167176fbed8d133317d0042450c672725387cfbed1a7', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xdcf9bcf5913d261535571f8dd58258eb611887d6', 'value': 133.97289065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x07433f523a35808400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:27:28.000Z'}}, {'blockNum': '0x844a4e', 'uniqueId': '0xca872f914e9151f1c78a430e76297d194defd7a3ca69fbc13458805d9afb5930:log:196', 'hash': '0xca872f914e9151f1c78a430e76297d194defd7a3ca69fbc13458805d9afb5930', 'from': '0x4daafb0a02b358044b47bbf0ecd295f8f33b3b40', 'to': '0xd9deb28f70cfefd512cfd3c32ce33f372c084f79', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:30:58.000Z'}}, {'blockNum': '0x844a9c', 'uniqueId': '0x88603713c013b560daca4e7798e42e61bfa98a54ea41cb11510d79c5ddf90541:log:68', 'hash': '0x88603713c013b560daca4e7798e42e61bfa98a54ea41cb11510d79c5ddf90541', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2346e5124f5632fbd19c90979e8d4b8c600b54bc', 'value': 70.74140794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03d5bbf7b7a6b2a800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:49:29.000Z'}}, {'blockNum': '0x844aa6', 'uniqueId': '0x7893c4911edc20c5dd027d9704cb574eab6f71c48efa9a0a6dc1d91890223163:log:89', 'hash': '0x7893c4911edc20c5dd027d9704cb574eab6f71c48efa9a0a6dc1d91890223163', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xd36b5f58ea17700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:51:15.000Z'}}, {'blockNum': '0x844aa7', 'uniqueId': '0xb144daae3712391ba9089f7362a9626b2f97a23e652ffea48a0cfcd3bd35cdeb:log:21', 'hash': '0xb144daae3712391ba9089f7362a9626b2f97a23e652ffea48a0cfcd3bd35cdeb', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:51:17.000Z'}}, {'blockNum': '0x844ac1', 'uniqueId': '0xe13d4fc7b918e65ee378ed556ab7616332a6fb2f7403d9802167aad83395fcdb:log:73', 'hash': '0xe13d4fc7b918e65ee378ed556ab7616332a6fb2f7403d9802167aad83395fcdb', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x10a629411109194563f447dd926edeb97f7fed92', 'value': 962.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x342f093dd216860000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T14:57:36.000Z'}}, {'blockNum': '0x844acd', 'uniqueId': '0xc5b67e6e5f2f172c48ee1c18d74d65bcad9a23c20830d8bc0aba2b930d36cb0c:log:187', 'hash': '0xc5b67e6e5f2f172c48ee1c18d74d65bcad9a23c20830d8bc0aba2b930d36cb0c', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 796.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b2c452c7df1180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:01:10.000Z'}}, {'blockNum': '0x844acf', 'uniqueId': '0x0c9b52c96d15fa96713826c7f9b2be9a221790334ab6ee49542a239519ad584c:log:113', 'hash': '0x0c9b52c96d15fa96713826c7f9b2be9a221790334ab6ee49542a239519ad584c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x10a629411109194563f447dd926edeb97f7fed92', 'value': 612.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2135cf74333bce0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:02:14.000Z'}}, {'blockNum': '0x844af0', 'uniqueId': '0xadc924fab3d06aa34cc0c98e4f35d7c9910ef41a88383ec229a0568f4e5c1ff7:log:40', 'hash': '0xadc924fab3d06aa34cc0c98e4f35d7c9910ef41a88383ec229a0568f4e5c1ff7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3249.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xb02d6c2f4ab5fe0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:10:54.000Z'}}, {'blockNum': '0x844af1', 'uniqueId': '0xc59990885afe2468e8110b7148dfa62d2d32da308eb775fa57f5d1252dbfae71:log:62', 'hash': '0xc59990885afe2468e8110b7148dfa62d2d32da308eb775fa57f5d1252dbfae71', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5fb9485142ebc11153f0532de52ef28d5978eb23', 'value': 999.99970497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c8a171d846e400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:11:02.000Z'}}, {'blockNum': '0x844af1', 'uniqueId': '0x7a13ecd37e355f319aeb5af7614110d668a026871daefe1e1eed41ff3b65695f:log:63', 'hash': '0x7a13ecd37e355f319aeb5af7614110d668a026871daefe1e1eed41ff3b65695f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5fb9485142ebc11153f0532de52ef28d5978eb23', 'value': 1499.99981308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5150addaa819bc7000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T15:11:02.000Z'}}, {'blockNum': '0x844c64', 'uniqueId': '0xd92f75eb7a56cd7e58d0d2df203438aacfddec7b90a14e3d239d56f1e0545004:log:19', 'hash': '0xd92f75eb7a56cd7e58d0d2df203438aacfddec7b90a14e3d239d56f1e0545004', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5fb9485142ebc11153f0532de52ef28d5978eb23', 'value': 99.06646631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x055ed2ca3b78c0bc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T16:25:43.000Z'}}, {'blockNum': '0x844d0e', 'uniqueId': '0x365030c1382bd92327d66522b7be0fc3afed2bc1ca222a6e87abac094918a458:log:52', 'hash': '0x365030c1382bd92327d66522b7be0fc3afed2bc1ca222a6e87abac094918a458', 'from': '0x00bd59ebc3e5de4aa4885fd5d9538dc98399abec', 'to': '0x9fb75d2cab815e104151892d461aa956f1a4a1b6', 'value': 177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09985e5236bc240000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T17:02:07.000Z'}}, {'blockNum': '0x844e24', 'uniqueId': '0x848df1a256ee1a8fcf1139b70087ff98ddd9de894127ce245ca02e2e17250262:log:48', 'hash': '0x848df1a256ee1a8fcf1139b70087ff98ddd9de894127ce245ca02e2e17250262', 'from': '0xa2061074a9921fcfc0168ef91b58e69672462626', 'to': '0x4e51f98332cc598fe483b6016942d0f8ff3fe58c', 'value': 26800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05acd4b69783b4c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:09:45.000Z'}}, {'blockNum': '0x844ede', 'uniqueId': '0x7f65a8a8baeea8c764e0dfd760ea9fd64d5223e708ddb251d41f45c2d5fd06d7:log:33', 'hash': '0x7f65a8a8baeea8c764e0dfd760ea9fd64d5223e708ddb251d41f45c2d5fd06d7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3045.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa51e5a9821524e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:46:11.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xe0c85d6622e17b1d6deb5fb74fb29b6be5fa4a0ead4c8503cbbee2a2acf26524:log:158', 'hash': '0xe0c85d6622e17b1d6deb5fb74fb29b6be5fa4a0ead4c8503cbbee2a2acf26524', 'from': '0x4e51f98332cc598fe483b6016942d0f8ff3fe58c', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 26800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05acd4b69783b4c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x675dec7d17bb6e00bd7d20d6aa6316a384a3c95bfd8d3bb53ae5570723eb7653:log:160', 'hash': '0x675dec7d17bb6e00bd7d20d6aa6316a384a3c95bfd8d3bb53ae5570723eb7653', 'from': '0x9fb75d2cab815e104151892d461aa956f1a4a1b6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09985e5236bc240000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xae1433b1e15bb0faa82f67403e963485fd0bba208397e756c8f39726f5be4336:log:162', 'hash': '0xae1433b1e15bb0faa82f67403e963485fd0bba208397e756c8f39726f5be4336', 'from': '0x01293a8fc946cd68cb50b22b81d6813da3c4fc76', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xd365ff1484e91ac726784ebba85f76f7c80e1e7a2efae3ca46ba55d72c561384:log:163', 'hash': '0xd365ff1484e91ac726784ebba85f76f7c80e1e7a2efae3ca46ba55d72c561384', 'from': '0xb52f1bc65937a9af61ea1a7fd049eb66c2b85666', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x81103cb9fb220000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x58dc3310feede14cb0ba5ec985fb44fac25abd2a5f6e2cc73c2abf286560b4a9:log:164', 'hash': '0x58dc3310feede14cb0ba5ec985fb44fac25abd2a5f6e2cc73c2abf286560b4a9', 'from': '0xa52ed041627cc409d3b65791d874df824c9faf8a', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 5.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x48712a57df8a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x87932fad8ac0bfdf3eec1ee7f9bcf816f797bd00cebee0c29b24015071854d57:log:165', 'hash': '0x87932fad8ac0bfdf3eec1ee7f9bcf816f797bd00cebee0c29b24015071854d57', 'from': '0xd9deb28f70cfefd512cfd3c32ce33f372c084f79', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xf2b13eb322cddb0a9faf4ba88beb449d8fff196e420593643dc3d48184705ebf:log:166', 'hash': '0xf2b13eb322cddb0a9faf4ba88beb449d8fff196e420593643dc3d48184705ebf', 'from': '0x9ae77dd88012997f0a1f6ec0588d39ab0eb7134b', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x3f2b2c01a9455cfffea4a915b80c2910ef9a5c85871224785233b9221d8fa5ef:log:169', 'hash': '0x3f2b2c01a9455cfffea4a915b80c2910ef9a5c85871224785233b9221d8fa5ef', 'from': '0x267bb1f15be137ac3d87442f3d32d988a718ed74', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 6.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5cfb2e807b1e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0x0e2687d085a8e7c28147e0db805e1855b2e8b6655ef31a73ee04570859c0fb94:log:172', 'hash': '0x0e2687d085a8e7c28147e0db805e1855b2e8b6655ef31a73ee04570859c0fb94', 'from': '0xe2674bbe6ffececbc696523adf3a7ff73a886889', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9.82466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x885834377afd4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844ef2', 'uniqueId': '0xfa8872666062ca0b2b040f7a774dcefd82f64d643248a00a9be7a5f41cbcc456:log:176', 'hash': '0xfa8872666062ca0b2b040f7a774dcefd82f64d643248a00a9be7a5f41cbcc456', 'from': '0x6a943f731c29685a279400ae20bdbf73e1136d1e', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 43.9552944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x026200935f25b78000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T18:51:41.000Z'}}, {'blockNum': '0x844f3f', 'uniqueId': '0x7e0eb7c05188fa749407e2fbfb141133fb7c84b3f002803b75e87e745f6f1281:log:62', 'hash': '0x7e0eb7c05188fa749407e2fbfb141133fb7c84b3f002803b75e87e745f6f1281', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x043794e5ec3e4f021774022ea041a7723a495bbd', 'value': 999.99995527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c985175add3c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:06:34.000Z'}}, {'blockNum': '0x844f3f', 'uniqueId': '0xabf5c70c6178b4e4d53c2062dc23bf4e415e8975232949961912ea8ead2339d3:log:63', 'hash': '0xabf5c70c6178b4e4d53c2062dc23bf4e415e8975232949961912ea8ead2339d3', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xaff7c24a48ac16b80edf0cf88fcd0c823c1b4890', 'value': 1039.67328908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x385c5d83fe3b68b000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:06:34.000Z'}}, {'blockNum': '0x844f54', 'uniqueId': '0xde0406ecedd6d15145435b899b4db5e0a9e0ea4d2edf0a1f8babfa978cde641e:log:72', 'hash': '0xde0406ecedd6d15145435b899b4db5e0a9e0ea4d2edf0a1f8babfa978cde641e', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 29852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x065247b8bd5350f00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:11:48.000Z'}}, {'blockNum': '0x844f56', 'uniqueId': '0x205663f427e61ca5d00ed91d509b54cee0971dd69ff909ee765ba9c654c49ea6:log:30', 'hash': '0x205663f427e61ca5d00ed91d509b54cee0971dd69ff909ee765ba9c654c49ea6', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:12:19.000Z'}}, {'blockNum': '0x844fc4', 'uniqueId': '0x1262284779b7b2704f34eae98da8af597eccc174b86e522d39a827351705c2f0:log:28', 'hash': '0x1262284779b7b2704f34eae98da8af597eccc174b86e522d39a827351705c2f0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x85d31b85ffc08ebc9b6111f5fe6ce05e353197f8', 'value': 34.77242807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01e2907b18f22bfc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:35:43.000Z'}}, {'blockNum': '0x845016', 'uniqueId': '0x1e704597470813c39695d984ac1b5d91677dd01d14bd8a3d9958795d5e1b2d3f:log:82', 'hash': '0x1e704597470813c39695d984ac1b5d91677dd01d14bd8a3d9958795d5e1b2d3f', 'from': '0x19454a70538bfbdbd7abf3ac8d274d5cb2514056', 'to': '0xf415dbe0b2aaddb50c186209db8bcc9101a9037d', 'value': 6263.381731847007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x015389e1f44bd3cd6273', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:52:23.000Z'}}, {'blockNum': '0x84501a', 'uniqueId': '0x8a779c5414e2cab440c4f4fb02dddfe9f03462abc622a066e71d9819d9907edb:log:0', 'hash': '0x8a779c5414e2cab440c4f4fb02dddfe9f03462abc622a066e71d9819d9907edb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee94448c7e4766299dc232743ad3d5d62a90dab3', 'value': 59995.07, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0cb456d9d97ef6d30000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T19:52:46.000Z'}}, {'blockNum': '0x845068', 'uniqueId': '0x919977d26ce2da5ec209f7159264a2af412aac9cce71c3bd23fc709eff9eaf48:log:13', 'hash': '0x919977d26ce2da5ec209f7159264a2af412aac9cce71c3bd23fc709eff9eaf48', 'from': '0xf415dbe0b2aaddb50c186209db8bcc9101a9037d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17923.440768209068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03cba1b5303a1ff19e5d', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T20:13:43.000Z'}}, {'blockNum': '0x8450a4', 'uniqueId': '0x474949ea388e577823399dbafb6f05c3886c23485db70ecbae73a798aaced81b:log:35', 'hash': '0x474949ea388e577823399dbafb6f05c3886c23485db70ecbae73a798aaced81b', 'from': '0x7a2660ae2b1adc9c3e77d10f658991b97eb2adfe', 'to': '0xe98f26297b633311e8435b6513935726d2a4d4dc', 'value': 126.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06d760775d1e4c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T20:29:50.000Z'}}, {'blockNum': '0x8450fc', 'uniqueId': '0x6bd33ee8a9d00ddadc8c83809d0430ea0cb47c14eed7cf2ab36b5635c5a6d50c:log:53', 'hash': '0x6bd33ee8a9d00ddadc8c83809d0430ea0cb47c14eed7cf2ab36b5635c5a6d50c', 'from': '0x5a400fce1b5dd983c7a0d1fe3ced446bec8155fa', 'to': '0x6decf2184b34c1065ab67e60675a8636e8eeb383', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T20:50:16.000Z'}}, {'blockNum': '0x84522e', 'uniqueId': '0x233c0f8bf4d44673dfac610f11d1bdbe4ad2e5d6ee020b443537998b8b0d2f25:log:71', 'hash': '0x233c0f8bf4d44673dfac610f11d1bdbe4ad2e5d6ee020b443537998b8b0d2f25', 'from': '0xc0ebee30bdeb5c2a5ac005a7fb18e03c5a5a19ce', 'to': '0x835491157e14ec3a98c58692041c0232cd1631a6', 'value': 1002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36518b1b2d2d680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T22:01:38.000Z'}}, {'blockNum': '0x845243', 'uniqueId': '0x8f86972a7107ffbbab4bbb5f964d70d5afb0d947773fb917470905e1e073da15:log:29', 'hash': '0x8f86972a7107ffbbab4bbb5f964d70d5afb0d947773fb917470905e1e073da15', 'from': '0xdbbca21e12430d560729f98cdba479ee695e7ab4', 'to': '0x43a0fe792d38745575f624728070b20072208d2d', 'value': 0.22225521833071574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03159bf18a144659', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T22:07:24.000Z'}}, {'blockNum': '0x845272', 'uniqueId': '0xe6d862180b0cedee45b747cbc53c76ecded69c1b64f970ebb0b15ab3522f5550:log:77', 'hash': '0xe6d862180b0cedee45b747cbc53c76ecded69c1b64f970ebb0b15ab3522f5550', 'from': '0xdbbca21e12430d560729f98cdba479ee695e7ab4', 'to': '0x43a0fe792d38745575f624728070b20072208d2d', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x016345785d8a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T22:16:39.000Z'}}, {'blockNum': '0x8452ae', 'uniqueId': '0xaa26be407c334dac265c7035c81936421b5c6ee088d20eef4932fe40e041cc80:log:3', 'hash': '0xaa26be407c334dac265c7035c81936421b5c6ee088d20eef4932fe40e041cc80', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdbf41c85535d746c760de92ddcfac182a3ec2975', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T22:31:22.000Z'}}, {'blockNum': '0x845350', 'uniqueId': '0x6389ea090e9975fc53c6a340daf571030bd258e765be83b8075c145c6ed6a7e3:log:75', 'hash': '0x6389ea090e9975fc53c6a340daf571030bd258e765be83b8075c145c6ed6a7e3', 'from': '0xcaacd0621a0629fb269ffbafd9c3bd3f44e590f2', 'to': '0xfa28bc827f2f04ba04d43e2492b4537061f470e0', 'value': 89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04d31f847531c40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T23:02:57.000Z'}}, {'blockNum': '0x84537e', 'uniqueId': '0xf27efb2d3336dd86f38c0ba2f76a469a053b6d133ddcc7d2da4b39aa96741be7:log:18', 'hash': '0xf27efb2d3336dd86f38c0ba2f76a469a053b6d133ddcc7d2da4b39aa96741be7', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2346e5124f5632fbd19c90979e8d4b8c600b54bc', 'value': 348.36876927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x12e2967dea0a5e1c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T23:13:45.000Z'}}, {'blockNum': '0x8453b2', 'uniqueId': '0x3cbf0425296b42c41d2b93f9e1f99384a55098ee9411d7f8231f2416e3a20f0b:log:77', 'hash': '0x3cbf0425296b42c41d2b93f9e1f99384a55098ee9411d7f8231f2416e3a20f0b', 'from': '0xec80cd72910315e6c35ca389e92e89302416d815', 'to': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T23:25:11.000Z'}}, {'blockNum': '0x8453c9', 'uniqueId': '0xe2dc3d0da9532db0379bc43b26c6281f04a05cb438942f0a70bc0a21dff08448:log:6', 'hash': '0xe2dc3d0da9532db0379bc43b26c6281f04a05cb438942f0a70bc0a21dff08448', 'from': '0xec80cd72910315e6c35ca389e92e89302416d815', 'to': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'value': 245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d480ed9ef32b40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-03T23:29:40.000Z'}}]}}
Number of returned transfers:  85
Answer is complete
 
symbol             PPT
group              BPS
date        2018-01-03
hour             18:00
exchange       binance
Name: 276, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2018-01-03 18:00:00 2018-01-03 06:00:00 2018-01-04 06:00:00
Unix timestamps:  1514955600.0 1515042000.0
Hex Block Numbers:  0x49f001 0x4a052e
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x49f002', 'uniqueId': '0x5804bba202e5db680060bf68a49e7fb69a96a6c2adfa76daba0cea3847f9381f:log:27', 'hash': '0x5804bba202e5db680060bf68a49e7fb69a96a6c2adfa76daba0cea3847f9381f', 'from': '0xbb130ce270ad8dda54601c0c360027b84c58806d', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:01:22.000Z'}}, {'blockNum': '0x49f006', 'uniqueId': '0x8e287e6ece51e8315c35b69ac193f2662ef0c9d0566883cb8d163c051e83a7c2:log:1', 'hash': '0x8e287e6ece51e8315c35b69ac193f2662ef0c9d0566883cb8d163c051e83a7c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2166ff3d4f26b705e93a2b4cf13aa455576316bf', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:02:40.000Z'}}, {'blockNum': '0x49f00d', 'uniqueId': '0xbb33fb43c3b80c0e92e38d4f4ab9840a738b4e51d9c779638e3bafab8a54921e:log:103', 'hash': '0xbb33fb43c3b80c0e92e38d4f4ab9840a738b4e51d9c779638e3bafab8a54921e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 29.90757511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2435687', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:04:48.000Z'}}, {'blockNum': '0x49f01f', 'uniqueId': '0x3213f04bf659a4cee5ff5c35284866d421fc9f17a36a1e82774a9809dd9e45ca:log:10', 'hash': '0x3213f04bf659a4cee5ff5c35284866d421fc9f17a36a1e82774a9809dd9e45ca', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 29.90757511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2435687', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:10:36.000Z'}}, {'blockNum': '0x49f020', 'uniqueId': '0xfa47366f680ba5bd281b5d9e89c57c561b3ece1b65568aada073d51fda8cf8be:log:58', 'hash': '0xfa47366f680ba5bd281b5d9e89c57c561b3ece1b65568aada073d51fda8cf8be', 'from': '0x15f3719e4d502c8720e6e6ac3d01ccc888ee6f1e', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:10:49.000Z'}}, {'blockNum': '0x49f021', 'uniqueId': '0x7574f94f13d23af81e207e82f449a4c3db6ffabf3021c3af1e05104bfed85c47:log:16', 'hash': '0x7574f94f13d23af81e207e82f449a4c3db6ffabf3021c3af1e05104bfed85c47', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c5082b616aebacb9f5ef8defca579260a2b5ec', 'value': 0.94885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a7d488', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:11:03.000Z'}}, {'blockNum': '0x49f02e', 'uniqueId': '0x944e37758ff1ec9f356d5ce75dd7d7e89f9048b101f99beb47e8f1d67055e5ae:log:18', 'hash': '0x944e37758ff1ec9f356d5ce75dd7d7e89f9048b101f99beb47e8f1d67055e5ae', 'from': '0xbb130ce270ad8dda54601c0c360027b84c58806d', 'to': '0x1a29ac570af45cd2c9f612e10878b20ef555a175', 'value': 14.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x540ae480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:14:04.000Z'}}, {'blockNum': '0x49f03c', 'uniqueId': '0x8af1a5fff1c3387b6dae4fc7d865df6989a726e2e902ebd378ae24cccb002f02:log:13', 'hash': '0x8af1a5fff1c3387b6dae4fc7d865df6989a726e2e902ebd378ae24cccb002f02', 'from': '0xaba1b455b57f37c55741ce1346b754417191b50c', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 30.956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb8831b80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:16:52.000Z'}}, {'blockNum': '0x49f040', 'uniqueId': '0xccba8f2deec6ef2f9c341e5012e8f45539ea45f98df6978a4e1550cb6f842bc5:log:46', 'hash': '0xccba8f2deec6ef2f9c341e5012e8f45539ea45f98df6978a4e1550cb6f842bc5', 'from': '0x55162cace8a5ce7bd21062e0a04237f1a84d1d7a', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:17:41.000Z'}}, {'blockNum': '0x49f047', 'uniqueId': '0x3b50997298991814123a00118dad456edb023e44b66535119654b07ccba18869:log:15', 'hash': '0x3b50997298991814123a00118dad456edb023e44b66535119654b07ccba18869', 'from': '0xbb130ce270ad8dda54601c0c360027b84c58806d', 'to': '0x1e7497c7634d73ddc188daf6c4328fb3c32f5e75', 'value': 17.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6ab13b80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:20:37.000Z'}}, {'blockNum': '0x49f04d', 'uniqueId': '0xe4c961a2e387f0c64b8d57720f76c97f102b97dfdc92a09ad9f64ff2d3dbf5d7:log:40', 'hash': '0xe4c961a2e387f0c64b8d57720f76c97f102b97dfdc92a09ad9f64ff2d3dbf5d7', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29.90757511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2435687', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:22:14.000Z'}}, {'blockNum': '0x49f061', 'uniqueId': '0x8c4d87d3184d3cd5cd3ac38f0727fe9879c51def43e53b827c9fa9b1f7a3eace:log:86', 'hash': '0x8c4d87d3184d3cd5cd3ac38f0727fe9879c51def43e53b827c9fa9b1f7a3eace', 'from': '0x6f9b7edc35252cbf4e8dcc8e20af0badd0b9180d', 'to': '0x75d3ff408df9ebad4898b9cafbc489fba019bebd', 'value': 39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8754700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:27:06.000Z'}}, {'blockNum': '0x49f06e', 'uniqueId': '0x35c5b598b7c50af07522894920e78fa724e175698b1c2117ed3b70cef4868935:log:2', 'hash': '0x35c5b598b7c50af07522894920e78fa724e175698b1c2117ed3b70cef4868935', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2166ff3d4f26b705e93a2b4cf13aa455576316bf', 'value': 11.95683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4744acb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:30:45.000Z'}}, {'blockNum': '0x49f071', 'uniqueId': '0x6fc1c16e0fb78df729d36bc4b2dcf27a106b1a2a4738d43fea499203d74fe0d9:log:33', 'hash': '0x6fc1c16e0fb78df729d36bc4b2dcf27a106b1a2a4738d43fea499203d74fe0d9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb35f8c45d5272f3f6ce4bb76ac5e31b68fc0e661', 'value': 184.69341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x044cdbc748', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:31:11.000Z'}}, {'blockNum': '0x49f07a', 'uniqueId': '0x705177bd941c5ea11181007a700f61e21dbf75a3e85b1cec631408595e76aa52:log:23', 'hash': '0x705177bd941c5ea11181007a700f61e21dbf75a3e85b1cec631408595e76aa52', 'from': '0x21d1e35248b16a20a87dd22c09c527c38bf6b464', 'to': '0xa138cf3d447f94e30573b0af7e46af844cb4f2e4', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7c6d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:34:48.000Z'}}, {'blockNum': '0x49f07e', 'uniqueId': '0xaf6ac471104797c3efcd19cd847cc84a01da342b1c4c786b14e05ca9cf1cf6cf:log:44', 'hash': '0xaf6ac471104797c3efcd19cd847cc84a01da342b1c4c786b14e05ca9cf1cf6cf', 'from': '0xb303d7c66a29ca1a71f60530eff6a2377962a10e', 'to': '0x142e562c31941d170bac90debb01149b0944d336', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:35:56.000Z'}}, {'blockNum': '0x49f08c', 'uniqueId': '0xc961c4139fb2c7647f892752dc988a0dbab0130a2ddd00b3e8031666ae6f7542:log:78', 'hash': '0xc961c4139fb2c7647f892752dc988a0dbab0130a2ddd00b3e8031666ae6f7542', 'from': '0xa17fec5fbd2f08625c6d2cf9fc209f3f8437544f', 'to': '0x1e7497c7634d73ddc188daf6c4328fb3c32f5e75', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:42:02.000Z'}}, {'blockNum': '0x49f0a3', 'uniqueId': '0xbcd0146d67f4237f5c4ce3b19f11ce3bda7a6d4e51668d4d342d1c68feefb463:log:41', 'hash': '0xbcd0146d67f4237f5c4ce3b19f11ce3bda7a6d4e51668d4d342d1c68feefb463', 'from': '0x142e562c31941d170bac90debb01149b0944d336', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:48:52.000Z'}}, {'blockNum': '0x49f0b0', 'uniqueId': '0x06bd133094af561830deb1344f1bf5a20763a4e30f995dda1d0dd7a5f39c6c2c:log:56', 'hash': '0x06bd133094af561830deb1344f1bf5a20763a4e30f995dda1d0dd7a5f39c6c2c', 'from': '0xdc9bf16d827973a448a09a8251efb1ca0b8f0f05', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xee6b2800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:52:46.000Z'}}, {'blockNum': '0x49f0b2', 'uniqueId': '0x9554c3b6f53e9261aad4395b806711af850d62254306e8360e56d70f8fb46c8a:log:55', 'hash': '0x9554c3b6f53e9261aad4395b806711af850d62254306e8360e56d70f8fb46c8a', 'from': '0x0b08c09f7e412b90656aaf90c56b70ac8c53113c', 'to': '0xe84d0e36f458c914604fa5df1b98f9b3ef3fd3c2', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:53:16.000Z'}}, {'blockNum': '0x49f0c5', 'uniqueId': '0x18193b87cd7e9df225f7d5c4307caecef59d1f8f95c9dcb922269390474cd440:log:4', 'hash': '0x18193b87cd7e9df225f7d5c4307caecef59d1f8f95c9dcb922269390474cd440', 'from': '0xe84d0e36f458c914604fa5df1b98f9b3ef3fd3c2', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:57:23.000Z'}}, {'blockNum': '0x49f0c7', 'uniqueId': '0x7a976f1a84d3d6f6128276cc0c81b82fbbd019f4dc0909737efbc3e7fa92801b:log:35', 'hash': '0x7a976f1a84d3d6f6128276cc0c81b82fbbd019f4dc0909737efbc3e7fa92801b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc2af0c3b0a4c9f552f207c966fa8daf622b749ce', 'value': 1.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0754d4c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:57:57.000Z'}}, {'blockNum': '0x49f0cf', 'uniqueId': '0x5bb8ee7dee7dba5920089cb5925de006503521a2b748541d568cca0569fd127c:log:36', 'hash': '0x5bb8ee7dee7dba5920089cb5925de006503521a2b748541d568cca0569fd127c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0733bbe26d1d42dc4a6fdea01ac04a4712de0e2e', 'value': 547.63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0cc02110c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T05:59:34.000Z'}}, {'blockNum': '0x49f0d3', 'uniqueId': '0x4bebf8ffe608125aee23f16592d6b0bbe32de0116dd597674499dd8046777aac:log:23', 'hash': '0x4bebf8ffe608125aee23f16592d6b0bbe32de0116dd597674499dd8046777aac', 'from': '0x142e562c31941d170bac90debb01149b0944d336', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:00:08.000Z'}}, {'blockNum': '0x49f0e6', 'uniqueId': '0xb084ed7696a9a965a245c12e5c1facdd7b931ead1e43fb92714319ed52a21d1f:log:1', 'hash': '0xb084ed7696a9a965a245c12e5c1facdd7b931ead1e43fb92714319ed52a21d1f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe84d0e36f458c914604fa5df1b98f9b3ef3fd3c2', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:05:56.000Z'}}, {'blockNum': '0x49f0ea', 'uniqueId': '0x7a3af794139171f231fb2c8af6cf08665716281820adb0c10c7ece581e2cdf73:log:6', 'hash': '0x7a3af794139171f231fb2c8af6cf08665716281820adb0c10c7ece581e2cdf73', 'from': '0xe84d0e36f458c914604fa5df1b98f9b3ef3fd3c2', 'to': '0x79f142bf32ad9d047ddbbf217280b6cf974e1963', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:08:34.000Z'}}, {'blockNum': '0x49f0ef', 'uniqueId': '0x81be9c40ded65b4c5a0becf82f57d319a1831255e937a47ad8352f926d8c2b8b:log:44', 'hash': '0x81be9c40ded65b4c5a0becf82f57d319a1831255e937a47ad8352f926d8c2b8b', 'from': '0x5e0f8cb29e194af2ab131980feda68dc015d3f45', 'to': '0xf16756e9febfc8faa04763cadac6801c4f344231', 'value': 999.99974614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17487684d6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:09:24.000Z'}}, {'blockNum': '0x49f0f3', 'uniqueId': '0x83efdae9d6946f368415a43d74fec513033438c040c65175bcb47683b90402ab:log:6', 'hash': '0x83efdae9d6946f368415a43d74fec513033438c040c65175bcb47683b90402ab', 'from': '0x39ab9541b7c4f322366e22650d5c527333940178', 'to': '0x1a1df2dd5fe632e89edc1958232133fc89cfc258', 'value': 155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x039bdf3b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:10:38.000Z'}}, {'blockNum': '0x49f0f6', 'uniqueId': '0x0696d7d56a9b1621ba85892313551f744866f0927947af9850003d770029f3fc:log:47', 'hash': '0x0696d7d56a9b1621ba85892313551f744866f0927947af9850003d770029f3fc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x88650fdbfbb5c7933eb52008c4387050b963747d', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:11:41.000Z'}}, {'blockNum': '0x49f0fc', 'uniqueId': '0x7e5f049fe81dafed382cbe653a6157f6d381f1fb6feb1e02a863423b6874f384:log:4', 'hash': '0x7e5f049fe81dafed382cbe653a6157f6d381f1fb6feb1e02a863423b6874f384', 'from': '0x88650fdbfbb5c7933eb52008c4387050b963747d', 'to': '0xb9e65d6cf7f9f7cf7f66933a0f8c3d455ed77879', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:13:18.000Z'}}, {'blockNum': '0x49f10b', 'uniqueId': '0xd4fc3e26a43e8a60c7b472ec350b1dd6589cd1d4c3897a6f76222348969c5630:log:60', 'hash': '0xd4fc3e26a43e8a60c7b472ec350b1dd6589cd1d4c3897a6f76222348969c5630', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x5e0f8cb29e194af2ab131980feda68dc015d3f45', 'value': 500.001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43cfaa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:16:51.000Z'}}, {'blockNum': '0x49f10e', 'uniqueId': '0x30658c27d37982827c8946c2346179e5cd9db142c36a5c4bb683219abf91fa3f:log:17', 'hash': '0x30658c27d37982827c8946c2346179e5cd9db142c36a5c4bb683219abf91fa3f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xdd148e7f1fd7c2af4b8f9f8042de8932eeaf23f5', 'value': 97.37582144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024467b640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:17:47.000Z'}}, {'blockNum': '0x49f113', 'uniqueId': '0x3aafe414924b5ee6df17dffac5c00d6315910712d815bd3b5fab046393dc45c1:log:51', 'hash': '0x3aafe414924b5ee6df17dffac5c00d6315910712d815bd3b5fab046393dc45c1', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xebab905eca331718528f7dffbc9ccb303595e841', 'value': 0.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e0ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:19:11.000Z'}}, {'blockNum': '0x49f118', 'uniqueId': '0x8a082977c2c04b5590e6796789b03b521ed43c8372777bbb0ec43abd89524852:log:33', 'hash': '0x8a082977c2c04b5590e6796789b03b521ed43c8372777bbb0ec43abd89524852', 'from': '0xf16756e9febfc8faa04763cadac6801c4f344231', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 999.99974614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17487684d6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:20:05.000Z'}}, {'blockNum': '0x49f118', 'uniqueId': '0x01af1bf63d104125a570ecb59e4f9927394758db104779dba819b061e31b94b3:log:34', 'hash': '0x01af1bf63d104125a570ecb59e4f9927394758db104779dba819b061e31b94b3', 'from': '0x79f142bf32ad9d047ddbbf217280b6cf974e1963', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 91.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0223e2ca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:20:05.000Z'}}, {'blockNum': '0x49f118', 'uniqueId': '0xf3065d95bb81dcb64f518f5f0acf70516db15c86146b0886c08df31f6b622bc7:log:36', 'hash': '0xf3065d95bb81dcb64f518f5f0acf70516db15c86146b0886c08df31f6b622bc7', 'from': '0x1a1df2dd5fe632e89edc1958232133fc89cfc258', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a1d51c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:20:05.000Z'}}, {'blockNum': '0x49f132', 'uniqueId': '0x792192b78a5648bcc172672674c7ce791af1df499f19da320582def43c48764c:log:3', 'hash': '0x792192b78a5648bcc172672674c7ce791af1df499f19da320582def43c48764c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa2b632690ebe5fd4d6725bd477d864788e862ce4', 'value': 251.548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05db57c980', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:27:42.000Z'}}, {'blockNum': '0x49f14e', 'uniqueId': '0x869921e626439ade62d112df935c7917199ef633527148da62244043d8d2ab13:log:41', 'hash': '0x869921e626439ade62d112df935c7917199ef633527148da62244043d8d2ab13', 'from': '0xa0b89b4e7c19de891faae5b0844da805877afd6d', 'to': '0xfe6e442acbed264e5e0154d44b58a45e73d2be19', 'value': 5060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x75cff34400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:35:23.000Z'}}, {'blockNum': '0x49f154', 'uniqueId': '0x26d255e58144d53937e265a7f3af149531bb0bad95c0d726f9e9e407da3375dc:log:53', 'hash': '0x26d255e58144d53937e265a7f3af149531bb0bad95c0d726f9e9e407da3375dc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x96017f30b08173ac4ae6bb2d29779cfdaa891bb9', 'value': 2.00703412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bf67db4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:36:24.000Z'}}, {'blockNum': '0x49f15c', 'uniqueId': '0xa4461527491201eb9d90d19ed314eee33fdde0ec8e01c06105fc1f8c33597bf0:log:11', 'hash': '0xa4461527491201eb9d90d19ed314eee33fdde0ec8e01c06105fc1f8c33597bf0', 'from': '0xbaa4d8d03513d350be5fbed2ea2bbceece3526ec', 'to': '0xaa868750d255e23bb321acde46c62e462da62788', 'value': 402.364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x095e46bd80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:38:05.000Z'}}, {'blockNum': '0x49f18f', 'uniqueId': '0x64319cb5b1258271d7a7f1e12707b26f8e0008adf5e737c3ab483c2111bf00c3:log:10', 'hash': '0x64319cb5b1258271d7a7f1e12707b26f8e0008adf5e737c3ab483c2111bf00c3', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf72615cae003e579593a489e0607479b6636058d', 'value': 3.69303778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x160320e2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:52:00.000Z'}}, {'blockNum': '0x49f19c', 'uniqueId': '0x2ae6af697656b9c2fc3f4d9adf77a3652ce985df08a2e464f3988cef01f00620:log:1', 'hash': '0x2ae6af697656b9c2fc3f4d9adf77a3652ce985df08a2e464f3988cef01f00620', 'from': '0xf72615cae003e579593a489e0607479b6636058d', 'to': '0x2df42ea8e3f5141cdfeea4ae9e9c967fe813aedc', 'value': 3.69303778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x160320e2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:54:02.000Z'}}, {'blockNum': '0x49f19c', 'uniqueId': '0x0df7187f9a17335d65ef0026f875ce161da4803808afece5e731dbdcd5be3e8c:log:29', 'hash': '0x0df7187f9a17335d65ef0026f875ce161da4803808afece5e731dbdcd5be3e8c', 'from': '0xff46eb0f9273221e214d2e64cfec072d160062b7', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:54:02.000Z'}}, {'blockNum': '0x49f1a5', 'uniqueId': '0xa5f91f662aab550de8cbc2134a506b135c2eb327f71fb658396d1060905ef55c:log:7', 'hash': '0xa5f91f662aab550de8cbc2134a506b135c2eb327f71fb658396d1060905ef55c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x916cc54c0a6c6151f80533298ea746d42e347e85', 'value': 1.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aba9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:56:00.000Z'}}, {'blockNum': '0x49f1a9', 'uniqueId': '0xca90b0bc8743998cf84aaef69c81bf31dffd6ad2116b33524724288fdcc34950:log:58', 'hash': '0xca90b0bc8743998cf84aaef69c81bf31dffd6ad2116b33524724288fdcc34950', 'from': '0x72b9c8cdae3dd50096a927b7820da2ef9e21939a', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:57:48.000Z'}}, {'blockNum': '0x49f1ac', 'uniqueId': '0x3ec8bf59e061e1ec358b0ce3e9a37fbb988f23bc72db993df39c5729f66d51c0:log:24', 'hash': '0x3ec8bf59e061e1ec358b0ce3e9a37fbb988f23bc72db993df39c5729f66d51c0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x00dfd41164697f420639626e2ec2d775d5646b2a', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:58:07.000Z'}}, {'blockNum': '0x49f1b0', 'uniqueId': '0x72cd98aae2439a717de34691dcc06102d28bbd5a2e3703fb9940bceb8045b6ff:log:37', 'hash': '0x72cd98aae2439a717de34691dcc06102d28bbd5a2e3703fb9940bceb8045b6ff', 'from': '0x00dfd41164697f420639626e2ec2d775d5646b2a', 'to': '0x271fddc66ec8cadbe32362a2a95f15af33bf298a', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T06:59:25.000Z'}}, {'blockNum': '0x49f1bd', 'uniqueId': '0x81f20f86f87acefae42f871d4ff458345026eb5b093c76cc097623507673a94e:log:9', 'hash': '0x81f20f86f87acefae42f871d4ff458345026eb5b093c76cc097623507673a94e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 114.58784442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02aaff2cba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:02:06.000Z'}}, {'blockNum': '0x49f1bd', 'uniqueId': '0x4301796a86fa61fab93ff25dfdf18ba1bfadca39a8e194ee7dac40f1b3ccb493:log:19', 'hash': '0x4301796a86fa61fab93ff25dfdf18ba1bfadca39a8e194ee7dac40f1b3ccb493', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'value': 31.868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbdf2b580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:02:06.000Z'}}, {'blockNum': '0x49f1c4', 'uniqueId': '0x28b10acf62d7fcc8199d1ed45dc841221d2ed7b85ce3576a6a6681832935a4ef:log:33', 'hash': '0x28b10acf62d7fcc8199d1ed45dc841221d2ed7b85ce3576a6a6681832935a4ef', 'from': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'to': '0x49a3e55eff6df39ac3d95de2ccbe3719d1be00b5', 'value': 31.868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbdf2b580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:03:42.000Z'}}, {'blockNum': '0x49f1c6', 'uniqueId': '0xb58a4b3821adebf47737362493e6e1bdc34f3f45a4683421cedf0fe714b33a05:log:16', 'hash': '0xb58a4b3821adebf47737362493e6e1bdc34f3f45a4683421cedf0fe714b33a05', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x916cc54c0a6c6151f80533298ea746d42e347e85', 'value': 18.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fee7ae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:04:50.000Z'}}, {'blockNum': '0x49f1d3', 'uniqueId': '0x7f2f00c0a65e5c49edc2eaa6a60981d16448f41727b3ebfe1c8edc54a8f27d92:log:11', 'hash': '0x7f2f00c0a65e5c49edc2eaa6a60981d16448f41727b3ebfe1c8edc54a8f27d92', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 114.58784442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02aaff2cba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:08:50.000Z'}}, {'blockNum': '0x49f1d8', 'uniqueId': '0x4ab894b0d89edb22b32918a17c1b7b8cb9be3c5b9b5c4843c6dac3656e22e702:log:37', 'hash': '0x4ab894b0d89edb22b32918a17c1b7b8cb9be3c5b9b5c4843c6dac3656e22e702', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114.58784442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02aaff2cba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:10:02.000Z'}}, {'blockNum': '0x49f1dd', 'uniqueId': '0x854400baffe1764aef9dc3f3158ed8bc810ceaffeb4c5d83e4d12ce234819e03:log:79', 'hash': '0x854400baffe1764aef9dc3f3158ed8bc810ceaffeb4c5d83e4d12ce234819e03', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x36555ff874c73e80564335146ece83dfb13794e2', 'value': 146.48769701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0369227ca5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:10:56.000Z'}}, {'blockNum': '0x49f1df', 'uniqueId': '0x7dfe2db923c63fd11ce517b3e74252b3ab6bb9f0dcb7f1173f312aaaf0393d89:log:63', 'hash': '0x7dfe2db923c63fd11ce517b3e74252b3ab6bb9f0dcb7f1173f312aaaf0393d89', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'value': 16.871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x648f1a60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:11:39.000Z'}}, {'blockNum': '0x49f1e2', 'uniqueId': '0x4a3a7cc59222bcef91122d1518ad78d4de2c66659f0ba7a8868b2efa7c682098:log:54', 'hash': '0x4a3a7cc59222bcef91122d1518ad78d4de2c66659f0ba7a8868b2efa7c682098', 'from': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'to': '0x49a3e55eff6df39ac3d95de2ccbe3719d1be00b5', 'value': 16.871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x648f1a60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:12:27.000Z'}}, {'blockNum': '0x49f1ec', 'uniqueId': '0x28dec3ccdc8d851168992af7eb51d114291b679c9609ba9fb9f9171ffc7a4693:log:2', 'hash': '0x28dec3ccdc8d851168992af7eb51d114291b679c9609ba9fb9f9171ffc7a4693', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x674eca39e2fb1025c61e6588bfa0d80c8a23b1b5', 'value': 9.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a5a5ac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:14:13.000Z'}}, {'blockNum': '0x49f1fb', 'uniqueId': '0x69f9d12c45ee02e0fdbb16778fdddb2385e24236506a2602a4aae76f5e7f1746:log:18', 'hash': '0x69f9d12c45ee02e0fdbb16778fdddb2385e24236506a2602a4aae76f5e7f1746', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x435826e998110ebcfe445ea2edbf494966def8a1', 'value': 15.76402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5df5fc50', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:19:13.000Z'}}, {'blockNum': '0x49f202', 'uniqueId': '0x3f65d5edb4a756a810ff34b09cbcf3a10078e9e1f3196457daf14079fb5cf50d:log:34', 'hash': '0x3f65d5edb4a756a810ff34b09cbcf3a10078e9e1f3196457daf14079fb5cf50d', 'from': '0x49a3e55eff6df39ac3d95de2ccbe3719d1be00b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018846ab20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:20:09.000Z'}}, {'blockNum': '0x49f204', 'uniqueId': '0x4bfa332d94148306542426464663ac7af5eabd6b6174b4837a25bf0d3cabbc8b:log:38', 'hash': '0x4bfa332d94148306542426464663ac7af5eabd6b6174b4837a25bf0d3cabbc8b', 'from': '0x36555ff874c73e80564335146ece83dfb13794e2', 'to': '0x5edc26e36f020326ef1d81a60be0259944320c61', 'value': 146.48769701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0369227ca5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:20:41.000Z'}}, {'blockNum': '0x49f20a', 'uniqueId': '0xaa16d962daca42f7c86b40057521bf6551ce3d2ad54afecb1645ac2a4f84c41d:log:25', 'hash': '0xaa16d962daca42f7c86b40057521bf6551ce3d2ad54afecb1645ac2a4f84c41d', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 56.94404301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015369b6cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:22:20.000Z'}}, {'blockNum': '0x49f21a', 'uniqueId': '0x559fd1e716bcae379abb8ad7c8bd22b4deb8b6823e3d0c9f50f65718fc904061:log:68', 'hash': '0x559fd1e716bcae379abb8ad7c8bd22b4deb8b6823e3d0c9f50f65718fc904061', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 56.94404301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015369b6cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:26:45.000Z'}}, {'blockNum': '0x49f220', 'uniqueId': '0x18dd362e2286444c6e2636250e1494f5c4d9bbbae2699a3475a6f968fb5ffe82:log:10', 'hash': '0x18dd362e2286444c6e2636250e1494f5c4d9bbbae2699a3475a6f968fb5ffe82', 'from': '0x323af10790d4a37d3fc7658d0401747fc02c8874', 'to': '0x6c59f1041f43ff70f0d07a1dc19b4956a302c8d3', 'value': 265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x062b85e900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:28:11.000Z'}}, {'blockNum': '0x49f220', 'uniqueId': '0x792e4f0bfdad9a661f377499bcb377a6f3df105dfea92ab48d9aeb19aaeb2ae9:log:25', 'hash': '0x792e4f0bfdad9a661f377499bcb377a6f3df105dfea92ab48d9aeb19aaeb2ae9', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf9bb806edbf0059cf74c48805ccda77009ea2fea', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:28:11.000Z'}}, {'blockNum': '0x49f228', 'uniqueId': '0xfb3e4dff7e5e016c6d439b977835d7ac4a6258d0a92dc3195575be174a61051d:log:88', 'hash': '0xfb3e4dff7e5e016c6d439b977835d7ac4a6258d0a92dc3195575be174a61051d', 'from': '0x5edc26e36f020326ef1d81a60be0259944320c61', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 146.48769701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0369227ca5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:30:05.000Z'}}, {'blockNum': '0x49f229', 'uniqueId': '0xb859bcc3b3ac52778d89ee75c974cd9c9d2ee42a5f6a7a90b96d34faf3f39749:log:77', 'hash': '0xb859bcc3b3ac52778d89ee75c974cd9c9d2ee42a5f6a7a90b96d34faf3f39749', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56.94404301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015369b6cd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:31:14.000Z'}}, {'blockNum': '0x49f22b', 'uniqueId': '0x56c313f94f9abd776943b8044dd906b361984f88124183c7a49491d7aed56a43:log:39', 'hash': '0x56c313f94f9abd776943b8044dd906b361984f88124183c7a49491d7aed56a43', 'from': '0x6c59f1041f43ff70f0d07a1dc19b4956a302c8d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x062b85e900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:32:09.000Z'}}, {'blockNum': '0x49f243', 'uniqueId': '0xfe92dcb4255344e3b951aa1b3e9b8e50c24e3a73a01261b4afcc16cd0bf3f954:log:56', 'hash': '0xfe92dcb4255344e3b951aa1b3e9b8e50c24e3a73a01261b4afcc16cd0bf3f954', 'from': '0xf9bb806edbf0059cf74c48805ccda77009ea2fea', 'to': '0xf3c5299352184a83e85e7df3e3dd03e36fd88c1d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:38:06.000Z'}}, {'blockNum': '0x49f250', 'uniqueId': '0x8d9d7ed5485caf921b821fca71be7170687d971becef66464f78e831ae98bd2e:log:14', 'hash': '0x8d9d7ed5485caf921b821fca71be7170687d971becef66464f78e831ae98bd2e', 'from': '0xf3c5299352184a83e85e7df3e3dd03e36fd88c1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:40:07.000Z'}}, {'blockNum': '0x49f25b', 'uniqueId': '0x3705f4752d262cb0157b68322836396c320bb98a1fe540eb9b441960fae9b32d:log:57', 'hash': '0x3705f4752d262cb0157b68322836396c320bb98a1fe540eb9b441960fae9b32d', 'from': '0x67c5ea88b62ee88f03ca09dd9714d6cda1beaada', 'to': '0xa33c1af148a514018efa8dedf3824505d77947fe', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:42:38.000Z'}}, {'blockNum': '0x49f273', 'uniqueId': '0xdda114f2612d82482d5edd1dbc89623fcdd563054a907e672118877bdc3d1984:log:28', 'hash': '0xdda114f2612d82482d5edd1dbc89623fcdd563054a907e672118877bdc3d1984', 'from': '0xdd148e7f1fd7c2af4b8f9f8042de8932eeaf23f5', 'to': '0x185ff98350dfc911048d4a61391717e464774f54', 'value': 97.37582144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024467b640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:50:03.000Z'}}, {'blockNum': '0x49f278', 'uniqueId': '0xa11659d9ee1b00d87e9e20a8ce453de080007a48f51290eb6d2103e8c6113f12:log:68', 'hash': '0xa11659d9ee1b00d87e9e20a8ce453de080007a48f51290eb6d2103e8c6113f12', 'from': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.29153445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bcd8a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:52:28.000Z'}}, {'blockNum': '0x49f278', 'uniqueId': '0xa11659d9ee1b00d87e9e20a8ce453de080007a48f51290eb6d2103e8c6113f12:log:70', 'hash': '0xa11659d9ee1b00d87e9e20a8ce453de080007a48f51290eb6d2103e8c6113f12', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 0.29153445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bcd8a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T07:52:28.000Z'}}, {'blockNum': '0x49f291', 'uniqueId': '0xfb187cd83365953ee45e9117dbf37775b741ba934fe5d486862219eb43599e92:log:10', 'hash': '0xfb187cd83365953ee45e9117dbf37775b741ba934fe5d486862219eb43599e92', 'from': '0xa33c1af148a514018efa8dedf3824505d77947fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9af8da00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:00:33.000Z'}}, {'blockNum': '0x49f297', 'uniqueId': '0xbfa199613721fec473259459c054399679b00fbb47e9e6c59879ab0980c199ab:log:86', 'hash': '0xbfa199613721fec473259459c054399679b00fbb47e9e6c59879ab0980c199ab', 'from': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.29323793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf7211', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:02:38.000Z'}}, {'blockNum': '0x49f297', 'uniqueId': '0xbfa199613721fec473259459c054399679b00fbb47e9e6c59879ab0980c199ab:log:88', 'hash': '0xbfa199613721fec473259459c054399679b00fbb47e9e6c59879ab0980c199ab', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 0.29323793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf7211', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:02:38.000Z'}}, {'blockNum': '0x49f29d', 'uniqueId': '0xddd5f044b9c7403c66499a62ad3787dd98043558f66bff087945b4e196cc6cf9:log:23', 'hash': '0xddd5f044b9c7403c66499a62ad3787dd98043558f66bff087945b4e196cc6cf9', 'from': '0x271fddc66ec8cadbe32362a2a95f15af33bf298a', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:03:21.000Z'}}, {'blockNum': '0x49f29f', 'uniqueId': '0x3704041d363688930e7f90a43b278f326eb42f949f8902b197abde6ad08a7c7b:log:14', 'hash': '0x3704041d363688930e7f90a43b278f326eb42f949f8902b197abde6ad08a7c7b', 'from': '0xee7627f4f08574fd8330dd25404852fdd8b2f86f', 'to': '0xea0ce225a188c59f66cc9acc223190eca868c5ed', 'value': 7.23535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2b204498', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:03:48.000Z'}}, {'blockNum': '0x49f2ad', 'uniqueId': '0x66fd7f2ff0c181d2c76bdbcc5fd0c65dde00212ea12d9d66448f30759ebc1cdf:log:76', 'hash': '0x66fd7f2ff0c181d2c76bdbcc5fd0c65dde00212ea12d9d66448f30759ebc1cdf', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xc44d85575607a609c1d7f49819754722ca0bbc97', 'value': 0.98454791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05de4d07', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:06:47.000Z'}}, {'blockNum': '0x49f2af', 'uniqueId': '0xeda28e1c86ce63eab68b92f512ea2633c84f6b8a427220b27ae24466a9f45368:log:23', 'hash': '0xeda28e1c86ce63eab68b92f512ea2633c84f6b8a427220b27ae24466a9f45368', 'from': '0xb9b9d20594bc8c2399747cf9752b8aff4473234e', 'to': '0x166eef4cc8e46e448e07c8159e53f1a4251380ef', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:07:31.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0xaf4e8f7e8a70f7f47706a15cd8f325c9e4bfe0363e78a516e85301121a175f7f:log:61', 'hash': '0xaf4e8f7e8a70f7f47706a15cd8f325c9e4bfe0363e78a516e85301121a175f7f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.14955136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe43280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0xaf4e8f7e8a70f7f47706a15cd8f325c9e4bfe0363e78a516e85301121a175f7f:log:63', 'hash': '0xaf4e8f7e8a70f7f47706a15cd8f325c9e4bfe0363e78a516e85301121a175f7f', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 0.14955136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe43280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x894f2426cc2b7cf9ff0ccf18161792b21523627482581c34b2e97fcb1887d2a6:log:68', 'hash': '0x894f2426cc2b7cf9ff0ccf18161792b21523627482581c34b2e97fcb1887d2a6', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.07896303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x787cef', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x894f2426cc2b7cf9ff0ccf18161792b21523627482581c34b2e97fcb1887d2a6:log:70', 'hash': '0x894f2426cc2b7cf9ff0ccf18161792b21523627482581c34b2e97fcb1887d2a6', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 0.07896303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x787cef', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x6b0f7203175baba7dcba619ece5bc627733e8d16ce585d58ba24282519d80b34:log:75', 'hash': '0x6b0f7203175baba7dcba619ece5bc627733e8d16ce585d58ba24282519d80b34', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 0.22816976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015c28d0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x6b0f7203175baba7dcba619ece5bc627733e8d16ce585d58ba24282519d80b34:log:77', 'hash': '0x6b0f7203175baba7dcba619ece5bc627733e8d16ce585d58ba24282519d80b34', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 0.22816976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015c28d0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x949fd80f60eba4b87cb329dd2226e12df8085b11cd89f6a709e4890f98c38a06:log:82', 'hash': '0x949fd80f60eba4b87cb329dd2226e12df8085b11cd89f6a709e4890f98c38a06', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 2.39391882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e44d48a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2c6', 'uniqueId': '0x949fd80f60eba4b87cb329dd2226e12df8085b11cd89f6a709e4890f98c38a06:log:84', 'hash': '0x949fd80f60eba4b87cb329dd2226e12df8085b11cd89f6a709e4890f98c38a06', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 2.39391882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e44d48a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:14:32.000Z'}}, {'blockNum': '0x49f2d0', 'uniqueId': '0xb076f8c04da2881787a81e76f8dd6fc7f380c108b552c63f61c68e809bd3302f:log:26', 'hash': '0xb076f8c04da2881787a81e76f8dd6fc7f380c108b552c63f61c68e809bd3302f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'value': 2.84064973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10ee7ccd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:19:18.000Z'}}, {'blockNum': '0x49f2d0', 'uniqueId': '0xb076f8c04da2881787a81e76f8dd6fc7f380c108b552c63f61c68e809bd3302f:log:28', 'hash': '0xb076f8c04da2881787a81e76f8dd6fc7f380c108b552c63f61c68e809bd3302f', 'from': '0x7e34ace17be6a15896b431ef08a941b143946ce4', 'to': '0xf46fb3a5052ab45b51f64e2672a8ccd6154349d6', 'value': 2.84064973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10ee7ccd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:19:18.000Z'}}, {'blockNum': '0x49f2d1', 'uniqueId': '0x1fa594f6a66f6fe92e9529f9da8ead91cedcc20e1cc42cfdc5994008ffd3586a:log:39', 'hash': '0x1fa594f6a66f6fe92e9529f9da8ead91cedcc20e1cc42cfdc5994008ffd3586a', 'from': '0x56656b6c9c6a608214ea405fe642dc33edb8da3f', 'to': '0x1f17c980b30ee232e2264c19e273715021081ff3', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:19:23.000Z'}}, {'blockNum': '0x49f2e3', 'uniqueId': '0xa27d2e1dc386493b8145d2f6bb220f77358b140a06f3f293623fff5e8a1c46e3:log:11', 'hash': '0xa27d2e1dc386493b8145d2f6bb220f77358b140a06f3f293623fff5e8a1c46e3', 'from': '0xef5d450e3fee87bfb737204ade57c8589c7fd58a', 'to': '0xa138cf3d447f94e30573b0af7e46af844cb4f2e4', 'value': 2999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d36ed700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:26:07.000Z'}}, {'blockNum': '0x49f2e6', 'uniqueId': '0x805439012ca988e9885263319e0e209278b1317c8a46f256f7204606b405f9aa:log:13', 'hash': '0x805439012ca988e9885263319e0e209278b1317c8a46f256f7204606b405f9aa', 'from': '0x0c9d2c087bb67c227907c2a2c44e079bd2a639d0', 'to': '0x1c20dd4e42e66a2035dd1d41a376b3e8127b14ad', 'value': 176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04190ab000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:27:37.000Z'}}, {'blockNum': '0x49f2e8', 'uniqueId': '0x6aa8a6481f2682a8556555df9aab93cceb79049abfa8c41b81f8564fb993ddc3:log:4', 'hash': '0x6aa8a6481f2682a8556555df9aab93cceb79049abfa8c41b81f8564fb993ddc3', 'from': '0x6334aff810c218c6ed9d02ce8a14d3e5fd969ffc', 'to': '0xeec5c1a4d0b88ccd9716ea67e935692c06a23b58', 'value': 35.08859581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd124f2bd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:28:15.000Z'}}, {'blockNum': '0x49f2f7', 'uniqueId': '0x79725ea84761f7d08ba7a88e4480480dea56a6313253acea920debbac1e97de9:log:17', 'hash': '0x79725ea84761f7d08ba7a88e4480480dea56a6313253acea920debbac1e97de9', 'from': '0xeec5c1a4d0b88ccd9716ea67e935692c06a23b58', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35.08859581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd124f2bd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:32:55.000Z'}}, {'blockNum': '0x49f2fd', 'uniqueId': '0x98e271c3971ab2de684d196cf5adc7216f20710dd181327ea3071ea7fbb7c6db:log:15', 'hash': '0x98e271c3971ab2de684d196cf5adc7216f20710dd181327ea3071ea7fbb7c6db', 'from': '0xdd21cd45af446a4bf5c35bb3a2b22eb28b2c4071', 'to': '0xfe6e442acbed264e5e0154d44b58a45e73d2be19', 'value': 140, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342770c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:34:14.000Z'}}, {'blockNum': '0x49f337', 'uniqueId': '0x9540b98b2fc6801f49e2723a86312c5059accb4e2f68162ca37bb51c14cc2a0c:log:80', 'hash': '0x9540b98b2fc6801f49e2723a86312c5059accb4e2f68162ca37bb51c14cc2a0c', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x15e433814a8879ab68c6db00b8e1611b1987f143', 'value': 20.097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77c996a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:46:39.000Z'}}, {'blockNum': '0x49f341', 'uniqueId': '0xdaa1e41c1e69fd659b1801300a9126eb87accde66455592f44e5846586eab3c2:log:56', 'hash': '0xdaa1e41c1e69fd659b1801300a9126eb87accde66455592f44e5846586eab3c2', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe26ffc1833adb42d66d10e7ec4f65b15610f36cd', 'value': 0.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0112a880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:49:16.000Z'}}, {'blockNum': '0x49f34f', 'uniqueId': '0xb93f1a9ff0e32010d77f620e8a224ffd06b641ce3eeadbdbb902daa928447f3b:log:35', 'hash': '0xb93f1a9ff0e32010d77f620e8a224ffd06b641ce3eeadbdbb902daa928447f3b', 'from': '0xcdbaba542f681f2708d15adfd12c875959c602fb', 'to': '0xf34d9150d7647e0ce3c3af41a7a4ac643519e43f', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:52:29.000Z'}}, {'blockNum': '0x49f35b', 'uniqueId': '0x89eaef8c74f6de1ff053309edd0dcb0ebf54bb0fe8bc04d35b4bf80d80995cba:log:70', 'hash': '0x89eaef8c74f6de1ff053309edd0dcb0ebf54bb0fe8bc04d35b4bf80d80995cba', 'from': '0xa812710abdc76de98086ae6bc8589407cc1d1eb0', 'to': '0xb4b07334e45211913f9c0f6f5d6b89e0238a4cb4', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:55:53.000Z'}}, {'blockNum': '0x49f35f', 'uniqueId': '0x1b5a3e5f281006c5e87a6f22eb644db20c606a507bf7e0b9ce9a26b8a6a358e5:log:51', 'hash': '0x1b5a3e5f281006c5e87a6f22eb644db20c606a507bf7e0b9ce9a26b8a6a358e5', 'from': '0xb4b07334e45211913f9c0f6f5d6b89e0238a4cb4', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T08:56:33.000Z'}}, {'blockNum': '0x49f37f', 'uniqueId': '0x544e90ac0fe4765fdec2227017aa2f73fa0a6d30d1c70c7c5072a98e734e9a2c:log:77', 'hash': '0x544e90ac0fe4765fdec2227017aa2f73fa0a6d30d1c70c7c5072a98e734e9a2c', 'from': '0x30d1811fcaf1c7c90733ef5f0c8beb9a7c9d0996', 'to': '0x8752160a3bebdd72eb7ee8c4db953d866b01f3f8', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:02:10.000Z'}}, {'blockNum': '0x49f382', 'uniqueId': '0x98adc4d00e3ef4ace24840e817f12686c12b722089fe6c5c90c2c0b7fad0ebac:log:5', 'hash': '0x98adc4d00e3ef4ace24840e817f12686c12b722089fe6c5c90c2c0b7fad0ebac', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xac96c4c5df55a7985635fed1e44f5c44f3e6aaea', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:03:00.000Z'}}, {'blockNum': '0x49f386', 'uniqueId': '0xd4ece9d74c4a3fe8030533cd07d762a98d226cfc925eb813d8583b115e90109f:log:37', 'hash': '0xd4ece9d74c4a3fe8030533cd07d762a98d226cfc925eb813d8583b115e90109f', 'from': '0xb9b9d20594bc8c2399747cf9752b8aff4473234e', 'to': '0x166eef4cc8e46e448e07c8159e53f1a4251380ef', 'value': 266.415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0633f50760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:04:01.000Z'}}, {'blockNum': '0x49f38b', 'uniqueId': '0x2c4a73a719d147d5c9c44d676230cc1f7e4d2765603c081ab85f67e8b0f628c2:log:44', 'hash': '0x2c4a73a719d147d5c9c44d676230cc1f7e4d2765603c081ab85f67e8b0f628c2', 'from': '0x8752160a3bebdd72eb7ee8c4db953d866b01f3f8', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:05:17.000Z'}}, {'blockNum': '0x49f3a0', 'uniqueId': '0x82b26e1995eab5429c5ae29bfb037a1ac369669193485ef438c45229afb28bfd:log:9', 'hash': '0x82b26e1995eab5429c5ae29bfb037a1ac369669193485ef438c45229afb28bfd', 'from': '0x08409a8803e93de4e73e0353262ced389f824fee', 'to': '0x230abfb2c5a157407ea084a3aada4f29ccd479c2', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:11:28.000Z'}}, {'blockNum': '0x49f3a5', 'uniqueId': '0xc56bf01dde13b49433e6aab59f0b1f2d88fe829cecf8e931edcbe60b9594d31f:log:94', 'hash': '0xc56bf01dde13b49433e6aab59f0b1f2d88fe829cecf8e931edcbe60b9594d31f', 'from': '0xf34d9150d7647e0ce3c3af41a7a4ac643519e43f', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:12:46.000Z'}}, {'blockNum': '0x49f3ed', 'uniqueId': '0x0b55b08d0a0d7d2dfc1775668538b28ed8b613b12150b255f540f19430a91b78:log:57', 'hash': '0x0b55b08d0a0d7d2dfc1775668538b28ed8b613b12150b255f540f19430a91b78', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8a0992b80f5d642ee8f2e49a4838e21d555aaebc', 'value': 34.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcc255a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:29:39.000Z'}}, {'blockNum': '0x49f3f3', 'uniqueId': '0x9d0f58ed6a16633331ab37e61af973cebe796f1be2cb05d483fb5b32fd863699:log:33', 'hash': '0x9d0f58ed6a16633331ab37e61af973cebe796f1be2cb05d483fb5b32fd863699', 'from': '0x4b44ed479e27a8021bfabb6100f73c1bae615999', 'to': '0xf27e85561501ead277affcb212af7d2889099006', 'value': 19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x713fb300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:31:34.000Z'}}, {'blockNum': '0x49f3f4', 'uniqueId': '0x7ed189c05b9e2ac9187f0eaaedcc2c170c8b12c0ae80a22eb0392ec1d68863fa:log:1', 'hash': '0x7ed189c05b9e2ac9187f0eaaedcc2c170c8b12c0ae80a22eb0392ec1d68863fa', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xcfbbec4ca9c61f6715eba68a7fbe0b7848a6ddc4', 'value': 69.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a00a5900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:31:38.000Z'}}, {'blockNum': '0x49f449', 'uniqueId': '0xd06a947dcd5cfdae40f36ddf7c0172ed0d8b705a11b48f91cd5dc93db1272c9d:log:17', 'hash': '0xd06a947dcd5cfdae40f36ddf7c0172ed0d8b705a11b48f91cd5dc93db1272c9d', 'from': '0x1c20dd4e42e66a2035dd1d41a376b3e8127b14ad', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04190ab000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:53:27.000Z'}}, {'blockNum': '0x49f454', 'uniqueId': '0x3cc1ddd2b6a1ba13fd0ff93ee968b68d8486af3107cc748be9a57e80e9eb1250:log:26', 'hash': '0x3cc1ddd2b6a1ba13fd0ff93ee968b68d8486af3107cc748be9a57e80e9eb1250', 'from': '0xd7f87501c10c23d7cae9608bd0d5a3929cf83972', 'to': '0x18cd1419344ae7b4d7b40c452fa10d644edc5cc2', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T09:57:21.000Z'}}, {'blockNum': '0x49f45e', 'uniqueId': '0xe0b4528965b90a782033b1fd935f61fc1c453b321399564ef97ce91ffe15f1ed:log:26', 'hash': '0xe0b4528965b90a782033b1fd935f61fc1c453b321399564ef97ce91ffe15f1ed', 'from': '0x18cd1419344ae7b4d7b40c452fa10d644edc5cc2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:00:11.000Z'}}, {'blockNum': '0x49f460', 'uniqueId': '0x4c57b90769a58884c84ea7de0652218b68a5550e02d483d10196f420cc2003af:log:18', 'hash': '0x4c57b90769a58884c84ea7de0652218b68a5550e02d483d10196f420cc2003af', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xf64fcf611b77a1f2ad0ebafd1e09040ad081b4d0', 'value': 52.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013a1dd180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:00:26.000Z'}}, {'blockNum': '0x49f473', 'uniqueId': '0xbf38b0a092e690511c8fcaea5a13c5523b3c0e2b8c1e3e85fcc67f7f84d047c4:log:20', 'hash': '0xbf38b0a092e690511c8fcaea5a13c5523b3c0e2b8c1e3e85fcc67f7f84d047c4', 'from': '0x5c737e115fa9be8b78b48828898f2feb29efe451', 'to': '0xb06ec0ef43ed41476d62fb82e99acd931196d7cf', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:04:21.000Z'}}, {'blockNum': '0x49f4a6', 'uniqueId': '0x3a7d268cef3cb715e259ab050b430a1f6fee9186f4b6d99f34fcef21c8c0fb43:log:44', 'hash': '0x3a7d268cef3cb715e259ab050b430a1f6fee9186f4b6d99f34fcef21c8c0fb43', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x472bc03cd84276b0343491d0ce425c9d82b04271', 'value': 1.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x068e7780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:16:53.000Z'}}, {'blockNum': '0x49f4df', 'uniqueId': '0x60b30a4fd25132e5b07e001f45638cc10c41316aef377e84703e7d6665e2ae27:log:35', 'hash': '0x60b30a4fd25132e5b07e001f45638cc10c41316aef377e84703e7d6665e2ae27', 'from': '0xf01d40d6ec9b2501db108e83ec6a0a89adf7f42a', 'to': '0x87d9edfbc61c639deebbb7211dd641e1dd87b5ea', 'value': 175.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0413ad6580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:33:14.000Z'}}, {'blockNum': '0x49f4ff', 'uniqueId': '0x6bb6ce109d6090532388dcc571ba47e12c0a6992acff96db070b5292f5b11f62:log:80', 'hash': '0x6bb6ce109d6090532388dcc571ba47e12c0a6992acff96db070b5292f5b11f62', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7bb8001b1fd57a4404d0001a411b4a94ad0e9ba6', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6b49d200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:40:36.000Z'}}, {'blockNum': '0x49f508', 'uniqueId': '0x131a3701e0522907e90d2cd1858596844bfd6145269b741464cb2fe4e1893936:log:42', 'hash': '0x131a3701e0522907e90d2cd1858596844bfd6145269b741464cb2fe4e1893936', 'from': '0x5f82f622bcce9a0310325d8006d0df0a29a921e7', 'to': '0x0dfd3e4714b1c0e16f73e3e5baa306953bb88093', 'value': 8.771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x34477be0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:42:25.000Z'}}, {'blockNum': '0x49f50c', 'uniqueId': '0x9f7004d0e273ea750cf0fc39c156c67738ce7476d642c3cfc70d952f3b818ce4:log:50', 'hash': '0x9f7004d0e273ea750cf0fc39c156c67738ce7476d642c3cfc70d952f3b818ce4', 'from': '0xda1c1fab0bd7743933640ed9e96f18753154ae15', 'to': '0x153faff6f0b6dbdfee616f7cdc29f97ffc95930b', 'value': 53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013be79500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:43:38.000Z'}}, {'blockNum': '0x49f53f', 'uniqueId': '0xadd8d465a52fcbf41c39da0f2f51c2b25ddebf5f80202736fe9ace53a7579566:log:9', 'hash': '0xadd8d465a52fcbf41c39da0f2f51c2b25ddebf5f80202736fe9ace53a7579566', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x153faff6f0b6dbdfee616f7cdc29f97ffc95930b', 'value': 145.41324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0362bafee0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:55:52.000Z'}}, {'blockNum': '0x49f53f', 'uniqueId': '0x43f1e8da56271bf0c86910788dafc38996d597b86c88e4bbe3de15354658f228:log:20', 'hash': '0x43f1e8da56271bf0c86910788dafc38996d597b86c88e4bbe3de15354658f228', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x153faff6f0b6dbdfee616f7cdc29f97ffc95930b', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:55:52.000Z'}}, {'blockNum': '0x49f542', 'uniqueId': '0xf53e96bb166322542e486834ea1f5f07b45fe061f6a49ab265327f36b9de51d5:log:59', 'hash': '0xf53e96bb166322542e486834ea1f5f07b45fe061f6a49ab265327f36b9de51d5', 'from': '0x0c4fe355d6cb9de761afbc008cfa74c07711df9f', 'to': '0xd52de4229a226b8184b2e8a2d6c330d81715e52c', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7c6d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:56:18.000Z'}}, {'blockNum': '0x49f54e', 'uniqueId': '0x23c4f5461a64698263ef75b011fa6ed0014114f187caf68187bd724ca11c5d4c:log:34', 'hash': '0x23c4f5461a64698263ef75b011fa6ed0014114f187caf68187bd724ca11c5d4c', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xfc8a75a3e7df41a02a9f6f71f747b15c847667c8', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011e1a3000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T10:58:51.000Z'}}, {'blockNum': '0x49f562', 'uniqueId': '0x10a6d9491efa819747f449b0ad9902e875156a93545f325fec18ce7fc81f19dc:log:36', 'hash': '0x10a6d9491efa819747f449b0ad9902e875156a93545f325fec18ce7fc81f19dc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3b48189bf7ad181b0c03db6af0cf5084689cc136', 'value': 178.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x042ae7bf20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:02:30.000Z'}}, {'blockNum': '0x49f57b', 'uniqueId': '0xda0eefbf827f4a72a1de580842cb4cfc2d62249fcfe4683a6da9adb65bf1eb39:log:50', 'hash': '0xda0eefbf827f4a72a1de580842cb4cfc2d62249fcfe4683a6da9adb65bf1eb39', 'from': '0x7aee88f942975b02062264e467dbcabde2e9acca', 'to': '0x47661212f2ba43c0abfd1ee941c67ed4c3c9a2c9', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17d78400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:09:19.000Z'}}, {'blockNum': '0x49f585', 'uniqueId': '0x0578a3a8da68cf52bf066c0a7638b10bb88a6111adf374f9ff73ec995c853ed1:log:117', 'hash': '0x0578a3a8da68cf52bf066c0a7638b10bb88a6111adf374f9ff73ec995c853ed1', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf03251c06f6c7ff2441df9eb4aae752233859c9e', 'value': 55.55283389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x014b1ee5bd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:11:23.000Z'}}, {'blockNum': '0x49f5a3', 'uniqueId': '0x2f954d91835a162f26fbf9dc8ed6a9bd2236659564afff448c5eb5e9aa461613:log:15', 'hash': '0x2f954d91835a162f26fbf9dc8ed6a9bd2236659564afff448c5eb5e9aa461613', 'from': '0x3b48189bf7ad181b0c03db6af0cf5084689cc136', 'to': '0x5ff351afbf765245c27a7c705403b88e86b10bf9', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:17:29.000Z'}}, {'blockNum': '0x49f5a9', 'uniqueId': '0x2e928bda245cdd33413af2888b1fcaedb7bc88549d764abb1ca659d329555c37:log:62', 'hash': '0x2e928bda245cdd33413af2888b1fcaedb7bc88549d764abb1ca659d329555c37', 'from': '0x5ff351afbf765245c27a7c705403b88e86b10bf9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 157.74110018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03ac35d142', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:20:08.000Z'}}, {'blockNum': '0x49f5ed', 'uniqueId': '0xb8738b7c01c794c56da55bf52652a51465578d05d3705697cb86862a54048eaa:log:67', 'hash': '0xb8738b7c01c794c56da55bf52652a51465578d05d3705697cb86862a54048eaa', 'from': '0xb06ec0ef43ed41476d62fb82e99acd931196d7cf', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:37:43.000Z'}}, {'blockNum': '0x49f5ff', 'uniqueId': '0x273301d36e093b3994fda979a0326712bba0804b1fa805cc938a38829bfe14f9:log:80', 'hash': '0x273301d36e093b3994fda979a0326712bba0804b1fa805cc938a38829bfe14f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xefe5c1dbdc110b0804f2259fdbd2df6b4b5b0a30', 'value': 9.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a699d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:41:28.000Z'}}, {'blockNum': '0x49f602', 'uniqueId': '0x06e560f235269c7e39d176b21afc984cd2d5b26ded210e1f02570e39c6edd0e8:log:91', 'hash': '0x06e560f235269c7e39d176b21afc984cd2d5b26ded210e1f02570e39c6edd0e8', 'from': '0xff46eb0f9273221e214d2e64cfec072d160062b7', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:41:52.000Z'}}, {'blockNum': '0x49f60d', 'uniqueId': '0x184eec4c38ec0ffe92b41eae37a1988f49e8219bb89fcdfc5be1e601bf58ded1:log:54', 'hash': '0x184eec4c38ec0ffe92b41eae37a1988f49e8219bb89fcdfc5be1e601bf58ded1', 'from': '0x02e5f58bfd5b75cc9836cff9f2d0af0aaf7d82d1', 'to': '0x7c10c55a63b07430dd6df4f8351df56b5c902f05', 'value': 59.57881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01631e0ca8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:44:29.000Z'}}, {'blockNum': '0x49f60e', 'uniqueId': '0xf4cfc7c7ba938525a1c43ccd0507f7955d481d38c20b4a1f5e3451e7cdc38670:log:78', 'hash': '0xf4cfc7c7ba938525a1c43ccd0507f7955d481d38c20b4a1f5e3451e7cdc38670', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xabff3af4250cac8600d0a210ceb44fc4c2f25405', 'value': 131.25841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x030e5c7068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:44:37.000Z'}}, {'blockNum': '0x49f622', 'uniqueId': '0x367f2c51a1029cc0eb8f7dbd4963ecdd34690e445076169957ac9e491729a6b6:log:34', 'hash': '0x367f2c51a1029cc0eb8f7dbd4963ecdd34690e445076169957ac9e491729a6b6', 'from': '0x7c10c55a63b07430dd6df4f8351df56b5c902f05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59.57881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01631e0ca8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T11:50:11.000Z'}}, {'blockNum': '0x49f658', 'uniqueId': '0xf3c3ef2fb4266fcc439d10634db611d5604c7c17e8229ed63b43918032635620:log:6', 'hash': '0xf3c3ef2fb4266fcc439d10634db611d5604c7c17e8229ed63b43918032635620', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1d88f1c6272bafc59ed3b8d52a0b595c70773076', 'value': 44.6851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x010a580d30', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:02:29.000Z'}}, {'blockNum': '0x49f65b', 'uniqueId': '0x1e85c78a38a82a942e5870c783dbd5a14b5f991b14ae997208a5cfb4dedb37eb:log:19', 'hash': '0x1e85c78a38a82a942e5870c783dbd5a14b5f991b14ae997208a5cfb4dedb37eb', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb2c91c4dce83174095dcd753fe0e769bf3e7725a', 'value': 10.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x40f81480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:02:58.000Z'}}, {'blockNum': '0x49f667', 'uniqueId': '0xd4e897de7e7f075404b64b828c00341af28ef63ac6b2037457d2931b36802875:log:91', 'hash': '0xd4e897de7e7f075404b64b828c00341af28ef63ac6b2037457d2931b36802875', 'from': '0xee91331b0f613904f617592fd05541ca41d670ed', 'to': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'value': 680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0fd51da800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:05:37.000Z'}}, {'blockNum': '0x49f673', 'uniqueId': '0x5ce1cdf8be463fa55d186a292cfa2fe6717d299e0588cadfeef630af672a7c2b:log:1', 'hash': '0x5ce1cdf8be463fa55d186a292cfa2fe6717d299e0588cadfeef630af672a7c2b', 'from': '0x48ef3de608ab2304dbb0c4497d266f3bf5506e7b', 'to': '0x345f47e008354603841a76be690710dcee0f0927', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:08:32.000Z'}}, {'blockNum': '0x49f675', 'uniqueId': '0xa005602ca9163368189d87354aab2d168ff4b5bac8f57b3f26d458cf1d3fae02:log:43', 'hash': '0xa005602ca9163368189d87354aab2d168ff4b5bac8f57b3f26d458cf1d3fae02', 'from': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b9aca000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:09:10.000Z'}}, {'blockNum': '0x49f689', 'uniqueId': '0x5d48d01c6c209cda4f6637568b0b53ca03bd4fe585651210c2aa8ebf7796cee4:log:37', 'hash': '0x5d48d01c6c209cda4f6637568b0b53ca03bd4fe585651210c2aa8ebf7796cee4', 'from': '0x97a01380ba62af5627eec4c5029b16e28e62c5cb', 'to': '0xe15e6ec4bd80163ba766e434263a8deeb4575aa4', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:13:10.000Z'}}, {'blockNum': '0x49f691', 'uniqueId': '0xf041150fbb8266a12ba3afa60d3fde5cc5ff8bc70ad9d761311b6e9edbc01af8:log:0', 'hash': '0xf041150fbb8266a12ba3afa60d3fde5cc5ff8bc70ad9d761311b6e9edbc01af8', 'from': '0x48ef3de608ab2304dbb0c4497d266f3bf5506e7b', 'to': '0x345f47e008354603841a76be690710dcee0f0927', 'value': 490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b68a0aa00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:14:27.000Z'}}, {'blockNum': '0x49f6a3', 'uniqueId': '0xcb631cf2587901e26a7b62fb2a50458c32401fbd1513d7d364dbdbfa68948846:log:24', 'hash': '0xcb631cf2587901e26a7b62fb2a50458c32401fbd1513d7d364dbdbfa68948846', 'from': '0x345f47e008354603841a76be690710dcee0f0927', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:20:24.000Z'}}, {'blockNum': '0x49f6bc', 'uniqueId': '0xd319fae52578cf4af7ea26c770f141b2352fd71d75ebe0a42f4bccd563223067:log:91', 'hash': '0xd319fae52578cf4af7ea26c770f141b2352fd71d75ebe0a42f4bccd563223067', 'from': '0xcaaa5858dc686d8c3bd78572d192e3003528c90e', 'to': '0xdf44f0d36bef35e34b350241ae43fffb73cab92e', 'value': 2800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x41314cf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:27:55.000Z'}}, {'blockNum': '0x49f6c3', 'uniqueId': '0xbb39bdc71b8d213838122736cbcb3764dd4e9feca5afdce025125786b96804a0:log:32', 'hash': '0xbb39bdc71b8d213838122736cbcb3764dd4e9feca5afdce025125786b96804a0', 'from': '0xdf44f0d36bef35e34b350241ae43fffb73cab92e', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 2800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x41314cf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:29:24.000Z'}}, {'blockNum': '0x49f6c7', 'uniqueId': '0xe368cd7fdda0e9175d6d9c555f8b2dc43a66307cfd327c228361d99fec03bb58:log:36', 'hash': '0xe368cd7fdda0e9175d6d9c555f8b2dc43a66307cfd327c228361d99fec03bb58', 'from': '0x5048026b3a30db4ea36055ae265c42365b396ba0', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x041314cf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:30:17.000Z'}}, {'blockNum': '0x49f6e8', 'uniqueId': '0x4e51e7943f4189f1e4061277fc71c822dbe963638f8f6c27bd72ae5a62a33e8d:log:93', 'hash': '0x4e51e7943f4189f1e4061277fc71c822dbe963638f8f6c27bd72ae5a62a33e8d', 'from': '0x020a2c1421e5887068b4e4af4ff33091d3ed6ed5', 'to': '0x0ae623f3cd7d2ea87dd66c6617dc41c8c730c7f3', 'value': 31.29827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xba8d5eb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:38:23.000Z'}}, {'blockNum': '0x49f6eb', 'uniqueId': '0xe064ec21c73df4217923e1b4842c01e3e254b76b864b5ef57b9c197389d1fc7b:log:2', 'hash': '0xe064ec21c73df4217923e1b4842c01e3e254b76b864b5ef57b9c197389d1fc7b', 'from': '0x48ef3de608ab2304dbb0c4497d266f3bf5506e7b', 'to': '0x345f47e008354603841a76be690710dcee0f0927', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:39:02.000Z'}}, {'blockNum': '0x49f6f2', 'uniqueId': '0x0eb69b0a48c28ea68745b4da53bdd60e9f1f5944acfcd309ba258ad3bd16b4bb:log:28', 'hash': '0x0eb69b0a48c28ea68745b4da53bdd60e9f1f5944acfcd309ba258ad3bd16b4bb', 'from': '0x345f47e008354603841a76be690710dcee0f0927', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:40:18.000Z'}}, {'blockNum': '0x49f6fc', 'uniqueId': '0x2da3a46cbcc962dc2941bcef0e8cb0280d34b78839ba9af00c0184d7ce438fa9:log:65', 'hash': '0x2da3a46cbcc962dc2941bcef0e8cb0280d34b78839ba9af00c0184d7ce438fa9', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x4b44ed479e27a8021bfabb6100f73c1bae615999', 'value': 18.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x70a71c80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:43:16.000Z'}}, {'blockNum': '0x49f70b', 'uniqueId': '0x8bde24fd9b44afbc6a77f9ff13ead3669c078abd16b63be9719f1af29b2adc9a:log:71', 'hash': '0x8bde24fd9b44afbc6a77f9ff13ead3669c078abd16b63be9719f1af29b2adc9a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xac96c4c5df55a7985635fed1e44f5c44f3e6aaea', 'value': 28.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba95000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:46:22.000Z'}}, {'blockNum': '0x49f720', 'uniqueId': '0x3ed4f6ba9986055ca2a5bb310a2f9d7bb209c9f61f6ed9b9afcc7a62202cbfbe:log:8', 'hash': '0x3ed4f6ba9986055ca2a5bb310a2f9d7bb209c9f61f6ed9b9afcc7a62202cbfbe', 'from': '0x0ae623f3cd7d2ea87dd66c6617dc41c8c730c7f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31.29827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xba8d5eb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:52:23.000Z'}}, {'blockNum': '0x49f72c', 'uniqueId': '0xac73d8d235abdd08c59f91f2cc79e47cca49fd74209ebaacc5ac2008b2d72373:log:48', 'hash': '0xac73d8d235abdd08c59f91f2cc79e47cca49fd74209ebaacc5ac2008b2d72373', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf1451e8b62b620223e07765da9815398bf8291e7', 'value': 670, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f9982de00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:55:38.000Z'}}, {'blockNum': '0x49f73a', 'uniqueId': '0x1f5df32f2f454c945959b084adccdfc8d41201f2ee64c91e4ab26d2af33f0e6b:log:39', 'hash': '0x1f5df32f2f454c945959b084adccdfc8d41201f2ee64c91e4ab26d2af33f0e6b', 'from': '0xf1451e8b62b620223e07765da9815398bf8291e7', 'to': '0x8ef22fd14515d0605820fc8afe3b5d16bdd6f996', 'value': 670, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f9982de00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T12:59:15.000Z'}}, {'blockNum': '0x49f746', 'uniqueId': '0x02e2a055a8de2ba39b69c8fd9fbaad92f91c25c232989207d84af1126846e708:log:26', 'hash': '0x02e2a055a8de2ba39b69c8fd9fbaad92f91c25c232989207d84af1126846e708', 'from': '0xb37425dbd25fdb1028f8589fd80fddd2d60bde01', 'to': '0x83d6478f068c12674e011c4a92051da894017694', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:01:49.000Z'}}, {'blockNum': '0x49f755', 'uniqueId': '0xcfd11cafb8e85be9fa88d6e6a060eac6f3214572c5106db4839cfee3150b8341:log:0', 'hash': '0xcfd11cafb8e85be9fa88d6e6a060eac6f3214572c5106db4839cfee3150b8341', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x5048026b3a30db4ea36055ae265c42365b396ba0', 'value': 62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01718c7e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:05:09.000Z'}}, {'blockNum': '0x49f785', 'uniqueId': '0xca1f4c9064710c77c9eea75b41205ceaae122d27700050e49e4e897313fc75f1:log:15', 'hash': '0xca1f4c9064710c77c9eea75b41205ceaae122d27700050e49e4e897313fc75f1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5531342f0d31a6a9aaaabf171bf59f568ad00c83', 'value': 9.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a699d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:16:18.000Z'}}, {'blockNum': '0x49f7af', 'uniqueId': '0x51ac17a1e2e8f081615be28015e667ba79369538030acad9a7184d30604293b4:log:40', 'hash': '0x51ac17a1e2e8f081615be28015e667ba79369538030acad9a7184d30604293b4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1deb50782a5d1b3d3c4534e55e56606909e6eec1', 'value': 28.51126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xa9f0baf0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:25:29.000Z'}}, {'blockNum': '0x49f7e0', 'uniqueId': '0x587f2a4073d08a5734d90591843b1a59f549c0e8f76e84b6d51a899a4c5ad725:log:59', 'hash': '0x587f2a4073d08a5734d90591843b1a59f549c0e8f76e84b6d51a899a4c5ad725', 'from': '0x08c54823199749c43c7793823fe7207df0381f88', 'to': '0xf968ede0bc6a3d54a69fb0ca7f33f47035810083', 'value': 226.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x054796c660', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:36:49.000Z'}}, {'blockNum': '0x49f7fd', 'uniqueId': '0x1d2497bf8be00a3ef6ef41b337f696365092d71f762dade5dd314e63597028f5:log:17', 'hash': '0x1d2497bf8be00a3ef6ef41b337f696365092d71f762dade5dd314e63597028f5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2bb6db4b9acc105219c10a216e46907fc7435412', 'value': 17.782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x69fd2dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:45:18.000Z'}}, {'blockNum': '0x49f816', 'uniqueId': '0x0521f35f5383d99963a4498a009ab16ee52f854aa9a2194499ea1ec763b7bb92:log:57', 'hash': '0x0521f35f5383d99963a4498a009ab16ee52f854aa9a2194499ea1ec763b7bb92', 'from': '0x2deb31b97f5240d4c7ac81a1df9786dab92564fc', 'to': '0x1aa776aaf8501ceaf8ac1ae96e99bf56d53e25c8', 'value': 2.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e7be2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:51:36.000Z'}}, {'blockNum': '0x49f81a', 'uniqueId': '0x25314b24a2500bef199dbe2997edf6d4536c4925089ac91e89e1d8342981aea1:log:31', 'hash': '0x25314b24a2500bef199dbe2997edf6d4536c4925089ac91e89e1d8342981aea1', 'from': '0xb37425dbd25fdb1028f8589fd80fddd2d60bde01', 'to': '0x28d57c68e6bc1bf01825747391645ac3682b2c95', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:52:21.000Z'}}, {'blockNum': '0x49f82d', 'uniqueId': '0x1e7e8b80669145f8425ad1740f50cba6f2d1a25fa298e81d1e243863d4b00c0d:log:9', 'hash': '0x1e7e8b80669145f8425ad1740f50cba6f2d1a25fa298e81d1e243863d4b00c0d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xada10155ede4b5267833c1c74e5f4bc71f89e2fe', 'value': 42.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xffc376c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T13:57:44.000Z'}}, {'blockNum': '0x49f849', 'uniqueId': '0xf6117003fe66adf3c275ad0ba4ea5d1c699241bb6f2816746fb8fc440abd2348:log:10', 'hash': '0xf6117003fe66adf3c275ad0ba4ea5d1c699241bb6f2816746fb8fc440abd2348', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 158.60811241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b160c5e9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:03:55.000Z'}}, {'blockNum': '0x49f855', 'uniqueId': '0xd04e3fcf1a00ec436d9459f50541579133280faba86771c7606d6e856f64377c:log:43', 'hash': '0xd04e3fcf1a00ec436d9459f50541579133280faba86771c7606d6e856f64377c', 'from': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 173.99437544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x040d1658e8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:07:26.000Z'}}, {'blockNum': '0x49f856', 'uniqueId': '0x010d79f9926575c089aa432985101df610dc8291050410f69b78399e48dc70fb:log:42', 'hash': '0x010d79f9926575c089aa432985101df610dc8291050410f69b78399e48dc70fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x44d124098ca55f8844fe63dce22c7d8d3c7903c6', 'value': 20.89888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7c912900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:07:37.000Z'}}, {'blockNum': '0x49f863', 'uniqueId': '0x46d8e56ec4d890a9d6c55b56e11f596b5dab2e7829ef255b8e37e347e98d8f31:log:29', 'hash': '0x46d8e56ec4d890a9d6c55b56e11f596b5dab2e7829ef255b8e37e347e98d8f31', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 173.99437544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x040d1658e8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:11:14.000Z'}}, {'blockNum': '0x49f8a2', 'uniqueId': '0x6edfe4d49ea13a4231600283380ee1689896188b4e9a93875ec0940b8f039fbd:log:18', 'hash': '0x6edfe4d49ea13a4231600283380ee1689896188b4e9a93875ec0940b8f039fbd', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0ef7e0ef5103979a58daf55fac5d7dce42fb3951', 'value': 26.54305881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9e357e59', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:27:15.000Z'}}, {'blockNum': '0x49f8a8', 'uniqueId': '0x4da4fe125b147ab9aa32624fde08d28b7e76f65966692ecf6b5e8f8314e34a9d:log:6', 'hash': '0x4da4fe125b147ab9aa32624fde08d28b7e76f65966692ecf6b5e8f8314e34a9d', 'from': '0x33acb520c14a360b3a16bce24f10f744bbb69783', 'to': '0x49274dab91cf3b37cc266a0126fc12855c7b94eb', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:28:29.000Z'}}, {'blockNum': '0x49f8ab', 'uniqueId': '0x8c67f08736765608a6e0b40e2c3f0d54349b3a406307d51d7087ccc01b720bc7:log:23', 'hash': '0x8c67f08736765608a6e0b40e2c3f0d54349b3a406307d51d7087ccc01b720bc7', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfe00ed16676b6d1c7e92391658ccc5d2bee1ea0c', 'value': 19.85553504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76592460', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:29:23.000Z'}}, {'blockNum': '0x49f8ac', 'uniqueId': '0x70118a48263ddf8911fd07fdb04c3c209ffb24c6981e2836b4df6af3f8a68bdd:log:56', 'hash': '0x70118a48263ddf8911fd07fdb04c3c209ffb24c6981e2836b4df6af3f8a68bdd', 'from': '0x0ef7e0ef5103979a58daf55fac5d7dce42fb3951', 'to': '0xc0169239a3bd3cc4e79d1669e2d04bd28873e3ed', 'value': 26.54305881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9e357e59', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:30:24.000Z'}}, {'blockNum': '0x49f8b1', 'uniqueId': '0x987e327067937f2de35a389160ddac4f81b659a99f167e04f6061bb912e3051b:log:19', 'hash': '0x987e327067937f2de35a389160ddac4f81b659a99f167e04f6061bb912e3051b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x506c69c54171d50b0f93b184dca0ba93dd8eb15d', 'value': 9.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a5a5ac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:31:19.000Z'}}, {'blockNum': '0x49f8e7', 'uniqueId': '0x5e72e1ee34d59ef8f2f9c94c777ad02bab8371e43685724c74cd21ba631bd519:log:32', 'hash': '0x5e72e1ee34d59ef8f2f9c94c777ad02bab8371e43685724c74cd21ba631bd519', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5531342f0d31a6a9aaaabf171bf59f568ad00c83', 'value': 5999.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb1984300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:45:15.000Z'}}, {'blockNum': '0x49f90b', 'uniqueId': '0x6275cf61b447ec59e1ad9cdf650767dcc40a48ff2b32cd02c1656b098f488685:log:25', 'hash': '0x6275cf61b447ec59e1ad9cdf650767dcc40a48ff2b32cd02c1656b098f488685', 'from': '0x28d57c68e6bc1bf01825747391645ac3682b2c95', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:53:55.000Z'}}, {'blockNum': '0x49f915', 'uniqueId': '0x92aa8b4398c12e4bd19994498894d99fe9db232cc8f3e8c7932f0914ca8746fd:log:83', 'hash': '0x92aa8b4398c12e4bd19994498894d99fe9db232cc8f3e8c7932f0914ca8746fd', 'from': '0xa0ba96632269d3169349cf544d9567515d1e7964', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:56:13.000Z'}}, {'blockNum': '0x49f91f', 'uniqueId': '0xa6f461a21fa6fa45c832b15dfe5950a5ff702c5ac7f1fec20c6a5237a0af57ca:log:25', 'hash': '0xa6f461a21fa6fa45c832b15dfe5950a5ff702c5ac7f1fec20c6a5237a0af57ca', 'from': '0xa0ba96632269d3169349cf544d9567515d1e7964', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x014dc93800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T14:58:38.000Z'}}, {'blockNum': '0x49f92d', 'uniqueId': '0x5dc452ec71cdfdb90598f97802f75da313d7e78db435576be24751b1439fddeb:log:3', 'hash': '0x5dc452ec71cdfdb90598f97802f75da313d7e78db435576be24751b1439fddeb', 'from': '0xdacfd3720f6b1d454b746280d1754f620055b373', 'to': '0x7fa7d7d874f58859267c834f7e5e949ea92b17e6', 'value': 18.1224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6c049680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:02:24.000Z'}}, {'blockNum': '0x49f942', 'uniqueId': '0xb24a80ac63621f0bfc3731feaa184e9ac7c4743c83e83d42d083b9a314f36389:log:38', 'hash': '0xb24a80ac63621f0bfc3731feaa184e9ac7c4743c83e83d42d083b9a314f36389', 'from': '0x6f32cccbd953bb514a294cc0bb3cde9e6d1b67d2', 'to': '0xfc204b08f56f43c505a9653336d547e3e60a300a', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:08:23.000Z'}}, {'blockNum': '0x49f946', 'uniqueId': '0x4b86ff9259437a1a27d39ec14e3a0a962b1cc17c2ad0df10b7659a26be1d43be:log:43', 'hash': '0x4b86ff9259437a1a27d39ec14e3a0a962b1cc17c2ad0df10b7659a26be1d43be', 'from': '0x30d14dd10f73fd46ebe19b1e0b3802e2057b1f42', 'to': '0x92000ce4b4777e32c828d2ede8c29a17c6432c15', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:09:33.000Z'}}, {'blockNum': '0x49f94b', 'uniqueId': '0xa8bc443a3a63959643da7cd8a18c070c9d19830a59a294d0847dcd51890bd913:log:59', 'hash': '0xa8bc443a3a63959643da7cd8a18c070c9d19830a59a294d0847dcd51890bd913', 'from': '0x92000ce4b4777e32c828d2ede8c29a17c6432c15', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:10:51.000Z'}}, {'blockNum': '0x49f94e', 'uniqueId': '0xbba419b43e640bc448e40c2e3789e03fa0510907cbc66d33aed532bbec09db4c:log:45', 'hash': '0xbba419b43e640bc448e40c2e3789e03fa0510907cbc66d33aed532bbec09db4c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa7a365e8068ca901171703c3640b567b21de7666', 'value': 22.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87e60a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:11:25.000Z'}}, {'blockNum': '0x49f962', 'uniqueId': '0x02945d044396d528007dbddd08e44133ab6ad86fbe55da3838b10a96ea630da8:log:17', 'hash': '0x02945d044396d528007dbddd08e44133ab6ad86fbe55da3838b10a96ea630da8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa6151305c93e30f340d05f97884f801fe3ba4ace', 'value': 19.8005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76052a50', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:16:50.000Z'}}, {'blockNum': '0x49f967', 'uniqueId': '0xf1f5d97539cb53759b0f9f3b8b6d1cd1989c266be90aae190deb0b6b3de20157:log:59', 'hash': '0xf1f5d97539cb53759b0f9f3b8b6d1cd1989c266be90aae190deb0b6b3de20157', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xca6f779d0373d22d195e75f98482c9e9bfbd9b9a', 'value': 85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01faa3b500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:18:44.000Z'}}, {'blockNum': '0x49f96d', 'uniqueId': '0xab97a8523df998cc932006bbd31dfb2f3923d58d3b21212b365b035441abb685:log:18', 'hash': '0xab97a8523df998cc932006bbd31dfb2f3923d58d3b21212b365b035441abb685', 'from': '0x62c62b5f6d4ffe12694a1f3662680af75b352caf', 'to': '0xae0c25cf0001ebfc58fa4f0fd2a746d18fd7bfca', 'value': 86.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02016f3580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:20:11.000Z'}}, {'blockNum': '0x49f97e', 'uniqueId': '0x071022c0bcc55081a06dcbe01c0dbee0da1bda99970f401b8c4e2210e93aa8cc:log:11', 'hash': '0x071022c0bcc55081a06dcbe01c0dbee0da1bda99970f401b8c4e2210e93aa8cc', 'from': '0xa3c85443a7edef4408f415597ee18b51a74d39da', 'to': '0xb8760a26c40ee73420294061f6e3a89ae050bfc8', 'value': 52.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013929ad80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:24:06.000Z'}}, {'blockNum': '0x49f97e', 'uniqueId': '0x5fb17da4115f62f509ca6cdcf1de3085099baca6fbd195f2eea926db9fdacbde:log:37', 'hash': '0x5fb17da4115f62f509ca6cdcf1de3085099baca6fbd195f2eea926db9fdacbde', 'from': '0xca6f779d0373d22d195e75f98482c9e9bfbd9b9a', 'to': '0x12fa6ddd15468417408628156e42e74cd0ce5866', 'value': 85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01faa3b500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:24:06.000Z'}}, {'blockNum': '0x49f97f', 'uniqueId': '0x7bf2c3a3e56c785839452ae0c5493a8f9c9573619724160bfbdfb38d470bb5d1:log:29', 'hash': '0x7bf2c3a3e56c785839452ae0c5493a8f9c9573619724160bfbdfb38d470bb5d1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x75d3ff408df9ebad4898b9cafbc489fba019bebd', 'value': 4.72507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c29e278', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:24:30.000Z'}}, {'blockNum': '0x49f981', 'uniqueId': '0x0493f438324ab6e8df1762427cf534f4c7341c6b1456610e9e08fa15b9252b18:log:16', 'hash': '0x0493f438324ab6e8df1762427cf534f4c7341c6b1456610e9e08fa15b9252b18', 'from': '0x6f32cccbd953bb514a294cc0bb3cde9e6d1b67d2', 'to': '0xfc204b08f56f43c505a9653336d547e3e60a300a', 'value': 690, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1010b87200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:25:02.000Z'}}, {'blockNum': '0x49f98d', 'uniqueId': '0xed748b1eda65e68e78b86b5ed6822384f309d1f4a22af05f697b919d58147e99:log:27', 'hash': '0xed748b1eda65e68e78b86b5ed6822384f309d1f4a22af05f697b919d58147e99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1deb50782a5d1b3d3c4534e55e56606909e6eec1', 'value': 21.02875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7d575378', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:27:40.000Z'}}, {'blockNum': '0x49f99c', 'uniqueId': '0x0ed67df9e53e384e881cd0be50e8db6a259506c5625118134be5b88a8a378247:log:13', 'hash': '0x0ed67df9e53e384e881cd0be50e8db6a259506c5625118134be5b88a8a378247', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xcdef04d3c5fb5823aaa63efe94cf66abdbbc06a2', 'value': 28.314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xa8c3bc40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:32:21.000Z'}}, {'blockNum': '0x49f9a3', 'uniqueId': '0x9785ed9a423e4373637391f792230b8729680515e251fa76805b2a504a3e3234:log:15', 'hash': '0x9785ed9a423e4373637391f792230b8729680515e251fa76805b2a504a3e3234', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 50.75590727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012e875e47', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:33:49.000Z'}}, {'blockNum': '0x49f9a4', 'uniqueId': '0xf31e945d22591861f9f84217fadfe9791d1432a0d38cb59f4c1e9462446e4409:log:37', 'hash': '0xf31e945d22591861f9f84217fadfe9791d1432a0d38cb59f4c1e9462446e4409', 'from': '0xfd73ca65852f29b674de8a4f048f9ccdecb2a007', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 46.26127182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0113bd194e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:33:57.000Z'}}, {'blockNum': '0x49f9af', 'uniqueId': '0x58640f960e8aacb9dfd7a5f6865792a15276557fef389d55f2fc8ee3d34524a1:log:22', 'hash': '0x58640f960e8aacb9dfd7a5f6865792a15276557fef389d55f2fc8ee3d34524a1', 'from': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 51.01229943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01300e9777', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:35:55.000Z'}}, {'blockNum': '0x49f9ba', 'uniqueId': '0xe318243efd301026272744068245780da2dc769c9a2671d20de01a370dea9f0d:log:24', 'hash': '0xe318243efd301026272744068245780da2dc769c9a2671d20de01a370dea9f0d', 'from': '0xa62a1a841412700ce7d9f69c23f8484809be5292', 'to': '0xc31c786613f537391958d74610e468175c576d9f', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:39:41.000Z'}}, {'blockNum': '0x49f9c1', 'uniqueId': '0x241125e11a17d8d74bfb74c1fad26e601245ff7078e741f456b0c85ab4709a62:log:8', 'hash': '0x241125e11a17d8d74bfb74c1fad26e601245ff7078e741f456b0c85ab4709a62', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51.01229943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01300e9777', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:42:22.000Z'}}, {'blockNum': '0x49f9d4', 'uniqueId': '0x30468b8075520accf840c4df4822dd11eb1f23b394c2987cf197593661fba2ad:log:66', 'hash': '0x30468b8075520accf840c4df4822dd11eb1f23b394c2987cf197593661fba2ad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x50ebd0c3ec06199aca7588ac85902123f331433f', 'value': 64.6351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01814155f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T15:48:58.000Z'}}, {'blockNum': '0x49fa04', 'uniqueId': '0x51b21ad5ef479bce787734e3675776e9fbec2bd273b555cc084cfab2f7407c39:log:40', 'hash': '0x51b21ad5ef479bce787734e3675776e9fbec2bd273b555cc084cfab2f7407c39', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x57f9ca58fbdef1f8c8715c97e346e4db5d0e89ff', 'value': 250.75829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d6a2c908', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:03:03.000Z'}}, {'blockNum': '0x49fa0f', 'uniqueId': '0xea6b306ed231e43f8aa8615167105e778a12904569ce357f53334f38f3ab4aba:log:42', 'hash': '0xea6b306ed231e43f8aa8615167105e778a12904569ce357f53334f38f3ab4aba', 'from': '0xc31c786613f537391958d74610e468175c576d9f', 'to': '0xa62a1a841412700ce7d9f69c23f8484809be5292', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:06:03.000Z'}}, {'blockNum': '0x49fa21', 'uniqueId': '0xe08453e9c344dee3d3f774f19b46f7a5c4cf8778ce465e7b2a2337ee2bdeded8:log:19', 'hash': '0xe08453e9c344dee3d3f774f19b46f7a5c4cf8778ce465e7b2a2337ee2bdeded8', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7c7d5079b5d58cab28d176c686bca7fa4d791923', 'value': 6.529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26ea76a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:10:01.000Z'}}, {'blockNum': '0x49fa24', 'uniqueId': '0x82a31209320542d1113610f6bb261815073d6796ca20bf32aa686553016fffe0:log:6', 'hash': '0x82a31209320542d1113610f6bb261815073d6796ca20bf32aa686553016fffe0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x7c7d5079b5d58cab28d176c686bca7fa4d791923', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:10:59.000Z'}}, {'blockNum': '0x49fa54', 'uniqueId': '0x7721fb2d0bc8a0fd2ef4b9607383d7a0aa2457991a2718bb9c2dc2673311d225:log:30', 'hash': '0x7721fb2d0bc8a0fd2ef4b9607383d7a0aa2457991a2718bb9c2dc2673311d225', 'from': '0x21f2098fff91eeb31b857d1a861517c14073ceee', 'to': '0x7cfe38173b65b447b7afb4cee63d11f40e2537b0', 'value': 550, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0cce416600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:25:44.000Z'}}, {'blockNum': '0x49fa80', 'uniqueId': '0x72b8d1d5accec85ffbedb3ef79ae0f29e3331a5cfc9e4c75aa7ce9124e16172a:log:7', 'hash': '0x72b8d1d5accec85ffbedb3ef79ae0f29e3331a5cfc9e4c75aa7ce9124e16172a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x78da64f7669bf47ced00b34b1e3037b60d252b45', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:38:02.000Z'}}, {'blockNum': '0x49fab0', 'uniqueId': '0xf6d77d6fc8fe9eb8044742d82c566219235202a6c3cf451d20d12091ec7f49b8:log:4', 'hash': '0xf6d77d6fc8fe9eb8044742d82c566219235202a6c3cf451d20d12091ec7f49b8', 'from': '0x78da64f7669bf47ced00b34b1e3037b60d252b45', 'to': '0x7b7722135006a0216e1ff54b5d7abfec0815de1b', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:49:19.000Z'}}, {'blockNum': '0x49fab3', 'uniqueId': '0x7d84331be0544dfd95c25c13edf5b150774e5f71ec97be8d5c831a1331ecded1:log:45', 'hash': '0x7d84331be0544dfd95c25c13edf5b150774e5f71ec97be8d5c831a1331ecded1', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x83e1112d76b9a94e407375d40ff419dc6e63304a', 'value': 4.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd64ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:51:06.000Z'}}, {'blockNum': '0x49fac0', 'uniqueId': '0x0311a3012fd24f468b5d6431cb537bfe983902c7f95fdd1c0da2f1b0e33a8aa5:log:24', 'hash': '0x0311a3012fd24f468b5d6431cb537bfe983902c7f95fdd1c0da2f1b0e33a8aa5', 'from': '0x83e1112d76b9a94e407375d40ff419dc6e63304a', 'to': '0x8fef458d97183cd0be62819f7cfd7ad21f95538e', 'value': 4.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd64ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T16:53:53.000Z'}}, {'blockNum': '0x49fad5', 'uniqueId': '0x5fb861c4d80e93ca9112bca7e5ac387e92b2b7210412d83cb87461d339cb6e7e:log:25', 'hash': '0x5fb861c4d80e93ca9112bca7e5ac387e92b2b7210412d83cb87461d339cb6e7e', 'from': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 45.876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0111713880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:01:16.000Z'}}, {'blockNum': '0x49fae8', 'uniqueId': '0xa07d9edca0e95bbd0f90040736b1e023b734685daa365248cea9d2d0b52cc115:log:60', 'hash': '0xa07d9edca0e95bbd0f90040736b1e023b734685daa365248cea9d2d0b52cc115', 'from': '0xa91c49d752907a93de8e4e075f70ff10d1e9bbdd', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 18.00681358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6b54378e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:05:50.000Z'}}, {'blockNum': '0x49fae9', 'uniqueId': '0xf9bf4c2fcc5e3868de1ec9a33900355aca17aacd18dca2b6e6b77e77167c88c1:log:42', 'hash': '0xf9bf4c2fcc5e3868de1ec9a33900355aca17aacd18dca2b6e6b77e77167c88c1', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x9065168985f414947a80020b059bc8351a503b3c', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:06:51.000Z'}}, {'blockNum': '0x49faf2', 'uniqueId': '0xd1e3c5b29f00144f252132fe7b18b830700d8011cc80de26eebc060bbe799bbd:log:52', 'hash': '0xd1e3c5b29f00144f252132fe7b18b830700d8011cc80de26eebc060bbe799bbd', 'from': '0x8bdaf4cd3f54dde2469d2e78f019078aebb79711', 'to': '0xd803b2529af18a67af666ec4111da57ba4feab04', 'value': 65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01836e2100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:08:36.000Z'}}, {'blockNum': '0x49fb01', 'uniqueId': '0x7cb2e94109b2c8653c118a3aaa98c5d2b5a1ac4cb610c23bfdc4eb8136f8a39b:log:38', 'hash': '0x7cb2e94109b2c8653c118a3aaa98c5d2b5a1ac4cb610c23bfdc4eb8136f8a39b', 'from': '0xd39492887f9586267e7af7ccb268f6ed77cf377b', 'to': '0xe92efddbf755f2ed9ebe549f51bbe72497b22e38', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:11:45.000Z'}}, {'blockNum': '0x49fb02', 'uniqueId': '0x645e45b7632ec34959709fe8e96bd8a38b23270c17ae4676c92767d778d4f07a:log:88', 'hash': '0x645e45b7632ec34959709fe8e96bd8a38b23270c17ae4676c92767d778d4f07a', 'from': '0x9065168985f414947a80020b059bc8351a503b3c', 'to': '0x1df0c979ad48da85d0c4516804a9e5867328b5cf', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:12:49.000Z'}}, {'blockNum': '0x49fb03', 'uniqueId': '0x261ac34af4e1e3a1b7b7eed47e831b8fd199bee25d2d5744141896e33005274c:log:68', 'hash': '0x261ac34af4e1e3a1b7b7eed47e831b8fd199bee25d2d5744141896e33005274c', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8f682727fde9cf89a45bb83ecfe122d63d45781b', 'value': 9.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9ac9ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:13:24.000Z'}}, {'blockNum': '0x49fb0b', 'uniqueId': '0x982eaa8bcdf5832fe9113775b97a9bfc0b1f1aa94784354f34ce9e8107e5372c:log:0', 'hash': '0x982eaa8bcdf5832fe9113775b97a9bfc0b1f1aa94784354f34ce9e8107e5372c', 'from': '0x57fecdcee640b1b6e2b64943452053de487a8a6d', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x044eaf9900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:15:24.000Z'}}, {'blockNum': '0x49fb1a', 'uniqueId': '0x4737fcfe0739f398b33377ba66011ef4a7314e3c45a6b8242ec0203ca86637e4:log:11', 'hash': '0x4737fcfe0739f398b33377ba66011ef4a7314e3c45a6b8242ec0203ca86637e4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0fd1b7efe3f15e6b14cdc417c8c0898e74391b41', 'value': 0.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c9c380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:20:48.000Z'}}, {'blockNum': '0x49fb36', 'uniqueId': '0x0052d777be4abf27d70e3ef9e522f516fcf0afe17cde2fbe565d8b920470dd3d:log:8', 'hash': '0x0052d777be4abf27d70e3ef9e522f516fcf0afe17cde2fbe565d8b920470dd3d', 'from': '0x59d9793ef191a04de8d66c5231b6420633f019c0', 'to': '0x1fd5cfdf3c64f3d44e51fb5b3424205438192cef', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:28:44.000Z'}}, {'blockNum': '0x49fb38', 'uniqueId': '0xdd90995ec56785ce8058e15621aabc2f9d9bca78599c2b226a034d7682964627:log:3', 'hash': '0xdd90995ec56785ce8058e15621aabc2f9d9bca78599c2b226a034d7682964627', 'from': '0xa62a1a841412700ce7d9f69c23f8484809be5292', 'to': '0xc31c786613f537391958d74610e468175c576d9f', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:29:32.000Z'}}, {'blockNum': '0x49fb43', 'uniqueId': '0x6f1d6985b986bbb9e0f856626e0b857cec70579ace2d7dbfef2717acc3767be7:log:14', 'hash': '0x6f1d6985b986bbb9e0f856626e0b857cec70579ace2d7dbfef2717acc3767be7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1df0c979ad48da85d0c4516804a9e5867328b5cf', 'value': 6.41338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x263a0a90', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:31:28.000Z'}}, {'blockNum': '0x49fb53', 'uniqueId': '0x23d7c10bed5ee8c749f000ea723eeb6a9c45c533b70f4a2f82b110656b6cd519:log:13', 'hash': '0x23d7c10bed5ee8c749f000ea723eeb6a9c45c533b70f4a2f82b110656b6cd519', 'from': '0x59d9793ef191a04de8d66c5231b6420633f019c0', 'to': '0x1fd5cfdf3c64f3d44e51fb5b3424205438192cef', 'value': 39.89828688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xedcff450', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:37:15.000Z'}}, {'blockNum': '0x49fb5d', 'uniqueId': '0xcf6f5ea42aa0d4cdd8e930e640a13200fbb1a2db9189515912ad01c7d5d49800:log:42', 'hash': '0xcf6f5ea42aa0d4cdd8e930e640a13200fbb1a2db9189515912ad01c7d5d49800', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbed7ad70115262a38d6139327bb9906a7cff25e0', 'value': 18.781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6ff18820', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:40:06.000Z'}}, {'blockNum': '0x49fb62', 'uniqueId': '0x3c9581ddc6b73ef342d387147ed5b3fe0e6d13dab2d116d22c27dc96738bb80b:log:6', 'hash': '0x3c9581ddc6b73ef342d387147ed5b3fe0e6d13dab2d116d22c27dc96738bb80b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x95861fc2566e0563ad8e58b3f06148c10a931bfb', 'value': 329.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07adc2dd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:41:38.000Z'}}, {'blockNum': '0x49fb6b', 'uniqueId': '0x7a804d699a119429dd68d5375848781e82af7a75a8850b9b3f5df90e3d84bef2:log:48', 'hash': '0x7a804d699a119429dd68d5375848781e82af7a75a8850b9b3f5df90e3d84bef2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xcd383376f2522f544bacc4814be3b934b7101f86', 'value': 79.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01dba52300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:44:10.000Z'}}, {'blockNum': '0x49fb6b', 'uniqueId': '0xcc470881be634ff85de8d935d406b0aab52657c6355943814032580599b476d3:log:114', 'hash': '0xcc470881be634ff85de8d935d406b0aab52657c6355943814032580599b476d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f9b0b71d17cf0502f9c8e43c839141630e7db58', 'value': 2.67712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff4f600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:44:10.000Z'}}, {'blockNum': '0x49fb70', 'uniqueId': '0xfc105fde18009c24cea3ba14d7727719e1f0767da6cb7e21fb04091b8042208d:log:48', 'hash': '0xfc105fde18009c24cea3ba14d7727719e1f0767da6cb7e21fb04091b8042208d', 'from': '0x931b269e31f17d1f9215364e35b42c0672f4dc3d', 'to': '0x253e23cda8d3c44695a2c4d10c4918efde566763', 'value': 2035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2f618b9300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:45:17.000Z'}}, {'blockNum': '0x49fb75', 'uniqueId': '0x336ff2182dcd65f81c5f94af235bedbddfa2d7108f99735493272393b1b8c455:log:9', 'hash': '0x336ff2182dcd65f81c5f94af235bedbddfa2d7108f99735493272393b1b8c455', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8adb01f9a5c4e8ff5fe0379521189e834c7c6bdf', 'value': 25.263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x96944760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:46:21.000Z'}}, {'blockNum': '0x49fb81', 'uniqueId': '0x42146958ee333607c2f3537350266285404226eeb663c7dd5bdd89a89c12a95c:log:11', 'hash': '0x42146958ee333607c2f3537350266285404226eeb663c7dd5bdd89a89c12a95c', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8adb01f9a5c4e8ff5fe0379521189e834c7c6bdf', 'value': 0.002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x030d40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:48:55.000Z'}}, {'blockNum': '0x49fb84', 'uniqueId': '0xa5f1d1d086354a1c2aafbe2ded19cc6a5707235d56b79179662d253bef62296f:log:28', 'hash': '0xa5f1d1d086354a1c2aafbe2ded19cc6a5707235d56b79179662d253bef62296f', 'from': '0x2cd0f0ec79c36d02ca9c2ecff97192abc0bd66fc', 'to': '0x490553a53898b3ef18bff3c7edd353061c718213', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7c6d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:49:46.000Z'}}, {'blockNum': '0x49fb89', 'uniqueId': '0x8ba48c375b3f486a8974a2798f4460e82eda81cfe5c1f298ab1c2b92c3dbce8e:log:18', 'hash': '0x8ba48c375b3f486a8974a2798f4460e82eda81cfe5c1f298ab1c2b92c3dbce8e', 'from': '0x8adb01f9a5c4e8ff5fe0379521189e834c7c6bdf', 'to': '0x1bb58a7925388b7ceeb9643750db5211bdac8cb7', 'value': 25.263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x96944760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:52:08.000Z'}}, {'blockNum': '0x49fb90', 'uniqueId': '0xf518979ab941bb434f3bb38343e4aac8898b2e712297d45320c151fc946a1adc:log:1', 'hash': '0xf518979ab941bb434f3bb38343e4aac8898b2e712297d45320c151fc946a1adc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x005ba693b35376807eb17883951c5b9007d575ba', 'value': 222.359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x052d5ce860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T17:54:18.000Z'}}, {'blockNum': '0x49fbb1', 'uniqueId': '0xfadddb35951cda48542d7f06367ada7c4458a1cb2ac1c7567ee777012e64151e:log:26', 'hash': '0xfadddb35951cda48542d7f06367ada7c4458a1cb2ac1c7567ee777012e64151e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 14.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x577fe700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:05:03.000Z'}}, {'blockNum': '0x49fbb4', 'uniqueId': '0x3e9f26410881cd97f3c9bae6cd4d9033d24312e3b9c9060fc0b3d2ed7215aff6:log:85', 'hash': '0x3e9f26410881cd97f3c9bae6cd4d9033d24312e3b9c9060fc0b3d2ed7215aff6', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 14.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x577fe700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:05:51.000Z'}}, {'blockNum': '0x49fbbc', 'uniqueId': '0x3fa0ef57611215b0fb99f320a24bf48eb16df9dc020e10ce6d21cf7e35df1f3f:log:9', 'hash': '0x3fa0ef57611215b0fb99f320a24bf48eb16df9dc020e10ce6d21cf7e35df1f3f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 165.2459438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03d8f14ccc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:08:01.000Z'}}, {'blockNum': '0x49fbc4', 'uniqueId': '0x9eaa49b67ed2d1c312dccd811f812fc5d2d1e2a11dc51a0f2e4ee1e47d412669:log:4', 'hash': '0x9eaa49b67ed2d1c312dccd811f812fc5d2d1e2a11dc51a0f2e4ee1e47d412669', 'from': '0xfeb6acfc316f38aa40061ed94a5f966d0a277b40', 'to': '0xe6d596641cdda066afc325ebfd0ff14c84617288', 'value': 11.19990958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x42c1b4ae', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:09:42.000Z'}}, {'blockNum': '0x49fbc6', 'uniqueId': '0xa4b5b38868fc97853afdfc2c2270cb5de2d06c80d88708455251d097a0012773:log:19', 'hash': '0xa4b5b38868fc97853afdfc2c2270cb5de2d06c80d88708455251d097a0012773', 'from': '0xb3710e97e8e864eba33f5e28b3d8fe94a94d3156', 'to': '0xcd431991cad8f0535402f2c8764565b9bb053112', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:10:48.000Z'}}, {'blockNum': '0x49fbc6', 'uniqueId': '0x36681a351b4c363eb068f9524e99ba211eeaa0ecd85cbdbe3d4d6b2a927d7897:log:21', 'hash': '0x36681a351b4c363eb068f9524e99ba211eeaa0ecd85cbdbe3d4d6b2a927d7897', 'from': '0xf9bb806edbf0059cf74c48805ccda77009ea2fea', 'to': '0xf3c5299352184a83e85e7df3e3dd03e36fd88c1d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:10:48.000Z'}}, {'blockNum': '0x49fbcd', 'uniqueId': '0xa0cfb36c78985206f8dc45fd61bc0d352b0ec86ca44c8b6c5a55f4779cea91b7:log:1', 'hash': '0xa0cfb36c78985206f8dc45fd61bc0d352b0ec86ca44c8b6c5a55f4779cea91b7', 'from': '0xcaaa5858dc686d8c3bd78572d192e3003528c90e', 'to': '0x7d17f48a9434ade5a409f45297c9b10897a06fb7', 'value': 2800.00003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x41314cfbb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:12:35.000Z'}}, {'blockNum': '0x49fbcd', 'uniqueId': '0x6a3deaa520466c8a55b2952b348c4567641f1abd6ecd64aad12ca1f3ae8c4b34:log:16', 'hash': '0x6a3deaa520466c8a55b2952b348c4567641f1abd6ecd64aad12ca1f3ae8c4b34', 'from': '0xb3710e97e8e864eba33f5e28b3d8fe94a94d3156', 'to': '0xcd431991cad8f0535402f2c8764565b9bb053112', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:12:35.000Z'}}, {'blockNum': '0x49fbcd', 'uniqueId': '0x0d5352359fabf55ec1406083c7af20e8d3df31659b9a9a7fbd9d94a945c07697:log:21', 'hash': '0x0d5352359fabf55ec1406083c7af20e8d3df31659b9a9a7fbd9d94a945c07697', 'from': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 166.98840123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03e354143b', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:12:35.000Z'}}, {'blockNum': '0x49fbd5', 'uniqueId': '0x0a081f71457f43a39113ddb93293cb8cc37b78cd55cf2ddd5ca3aa6375f20373:log:48', 'hash': '0x0a081f71457f43a39113ddb93293cb8cc37b78cd55cf2ddd5ca3aa6375f20373', 'from': '0x3d51082f231742328d4568030618bbf0d01432cf', 'to': '0x5c847832aa0daeeae54e7f4674c68698ed21dfb5', 'value': 11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4190ab00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:14:57.000Z'}}, {'blockNum': '0x49fbd9', 'uniqueId': '0xac04fd387ba5850613adbaf505b77c43a140d9736369c6123705e61df15cceb7:log:40', 'hash': '0xac04fd387ba5850613adbaf505b77c43a140d9736369c6123705e61df15cceb7', 'from': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:15:56.000Z'}}, {'blockNum': '0x49fbdd', 'uniqueId': '0x0c69f63e232d0a7312627f6cd13617d5f5c6efa6a13db9b9415d7f5267fdea15:log:9', 'hash': '0x0c69f63e232d0a7312627f6cd13617d5f5c6efa6a13db9b9415d7f5267fdea15', 'from': '0x1fc4032ae026db1eeb7913d44ac0480ba78bb16e', 'to': '0x3008398423da1c19bd2b00f6994721bcf08ad3b6', 'value': 404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0968071400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:16:39.000Z'}}, {'blockNum': '0x49fbdd', 'uniqueId': '0x50a46f0d326b5fd21291269f7f44bb4a3fb539bb37887e32f6465abb0b6b13ff:log:19', 'hash': '0x50a46f0d326b5fd21291269f7f44bb4a3fb539bb37887e32f6465abb0b6b13ff', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfcfc5ccbc8885955d9345e112c6d1553a7c54010', 'value': 155.934939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a171d58c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:16:39.000Z'}}, {'blockNum': '0x49fbdd', 'uniqueId': '0x4004b8194098b38b747e5bc392479c634ef0b6fefe92c3ea5b4ec47a8992800d:log:27', 'hash': '0x4004b8194098b38b747e5bc392479c634ef0b6fefe92c3ea5b4ec47a8992800d', 'from': '0xc597ce61d5264d69d96128aaa8b65b1c8b87df50', 'to': '0x2bca86e5e6cfbe6a799f3849aed4e9efea684968', 'value': 5.9868182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x23af28dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:16:39.000Z'}}, {'blockNum': '0x49fbde', 'uniqueId': '0x82fdc05c07ad79489ae48026a2f024db446690b2a9a8ef425d135588a96cc68d:log:18', 'hash': '0x82fdc05c07ad79489ae48026a2f024db446690b2a9a8ef425d135588a96cc68d', 'from': '0x005ba693b35376807eb17883951c5b9007d575ba', 'to': '0xa3e113ed3dc84f147cccf0b9ad07ae691a51c2f9', 'value': 222.359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x052d5ce860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:16:54.000Z'}}, {'blockNum': '0x49fbe1', 'uniqueId': '0x0aa3a1b6614de808442aa45778323a96c6214d83340fbba5fc07fd55bfa378cc:log:16', 'hash': '0x0aa3a1b6614de808442aa45778323a96c6214d83340fbba5fc07fd55bfa378cc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x557081d14fc70b9ab03bdd1d677c9abaa2c7bb25', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:17:26.000Z'}}, {'blockNum': '0x49fbe1', 'uniqueId': '0xcb53241f3ef8dca017a7ac568ad993cefa10fba1a78acae7c0a66bc2659c0856:log:25', 'hash': '0xcb53241f3ef8dca017a7ac568ad993cefa10fba1a78acae7c0a66bc2659c0856', 'from': '0x765182e53f5e8902503a184324bf0310150b0abc', 'to': '0x55a274a6164b8263606c6335ab41f3770c36cf9d', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:17:26.000Z'}}, {'blockNum': '0x49fbe2', 'uniqueId': '0xc64164feb4a6cab15d3995bc250a0abff57150d1650550aaba617a4f19ca6c25:log:26', 'hash': '0xc64164feb4a6cab15d3995bc250a0abff57150d1650550aaba617a4f19ca6c25', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3dfc124d107b90c5717b3a037204fe2f5d94fd60', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:17:55.000Z'}}, {'blockNum': '0x49fbe2', 'uniqueId': '0xb7a5d6d2d911a2c1b16a8ebf4d014e4c1e4f3f976ec8ef8683b7049832ce195f:log:31', 'hash': '0xb7a5d6d2d911a2c1b16a8ebf4d014e4c1e4f3f976ec8ef8683b7049832ce195f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x00000a94230f3a5cd61bb0a3b39767e0684f7234', 'value': 395.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09356c5dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:17:55.000Z'}}, {'blockNum': '0x49fbe3', 'uniqueId': '0x80835b4cfe8386978c9ae5cd6096eda6d47b8c87405627b1934dd3b8ecab577a:log:4', 'hash': '0x80835b4cfe8386978c9ae5cd6096eda6d47b8c87405627b1934dd3b8ecab577a', 'from': '0xaac8533e4d54429a1664d3f8fb6929a46fd6d019', 'to': '0x71bb9aaa09e5424f6a1846fe5c9851bb6a1b2a83', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:18:20.000Z'}}, {'blockNum': '0x49fbe8', 'uniqueId': '0xbbc3291e9db4ab775c402d207ede3503e9b27c77ec97686d72f25c2dfe0c989f:log:23', 'hash': '0xbbc3291e9db4ab775c402d207ede3503e9b27c77ec97686d72f25c2dfe0c989f', 'from': '0x3dfc124d107b90c5717b3a037204fe2f5d94fd60', 'to': '0x68108a3fb03ac12e90e12f56e91b3a8e2a73876c', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:19:37.000Z'}}, {'blockNum': '0x49fbe8', 'uniqueId': '0x70bfafe78ea1657ba3226cc78c7ee83a00acaeedc10158dff3508f379fc15260:log:30', 'hash': '0x70bfafe78ea1657ba3226cc78c7ee83a00acaeedc10158dff3508f379fc15260', 'from': '0x00000a94230f3a5cd61bb0a3b39767e0684f7234', 'to': '0xcfef471878edc247692a952553f14965f78f83fd', 'value': 395.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09356c5dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:19:37.000Z'}}, {'blockNum': '0x49fbec', 'uniqueId': '0x81425dd09b89d349ebbd680449dd4a7aaf7d0aa396d4429af97abbe234f9a105:log:16', 'hash': '0x81425dd09b89d349ebbd680449dd4a7aaf7d0aa396d4429af97abbe234f9a105', 'from': '0xfcfc5ccbc8885955d9345e112c6d1553a7c54010', 'to': '0x7b0b12d3009a8c9acfb87f861dbb34d43d7746cc', 'value': 155.934939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a171d58c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:20:31.000Z'}}, {'blockNum': '0x49fbee', 'uniqueId': '0x7155da29c01e2868afd832d703ff5c0b665b1dfddccab8fd84b2b2661d8dfa66:log:17', 'hash': '0x7155da29c01e2868afd832d703ff5c0b665b1dfddccab8fd84b2b2661d8dfa66', 'from': '0x3b48189bf7ad181b0c03db6af0cf5084689cc136', 'to': '0x57cdb5c8418c2264a644bb28328f21fdb13d16ff', 'value': 28.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xacd5e920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:20:57.000Z'}}, {'blockNum': '0x49fbf1', 'uniqueId': '0x3963b07b1ddd3a2711b73d28ec4a6bdb8c762f9364ef5dd975908af8c3d4e8f4:log:28', 'hash': '0x3963b07b1ddd3a2711b73d28ec4a6bdb8c762f9364ef5dd975908af8c3d4e8f4', 'from': '0xf3c5299352184a83e85e7df3e3dd03e36fd88c1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:21:26.000Z'}}, {'blockNum': '0x49fbf6', 'uniqueId': '0xd55b332c8af21a6e17ec15c2c66cfcb845be688a008d0443a133d0f9330c4f23:log:3', 'hash': '0xd55b332c8af21a6e17ec15c2c66cfcb845be688a008d0443a133d0f9330c4f23', 'from': '0x1435881b8ba4e71c8c8a1c2b682cb607a51b3bd1', 'to': '0xd32ab3b727ae81c01526dd3582e370fb7561153b', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:22:59.000Z'}}, {'blockNum': '0x49fbf9', 'uniqueId': '0x35645eb13b97d1e9f8226dbd3a35dc3bdc075a8393a5613489c753a45f92e859:log:66', 'hash': '0x35645eb13b97d1e9f8226dbd3a35dc3bdc075a8393a5613489c753a45f92e859', 'from': '0x71bb9aaa09e5424f6a1846fe5c9851bb6a1b2a83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:23:50.000Z'}}, {'blockNum': '0x49fbfb', 'uniqueId': '0x8d43edd4fffdd70bf72c4a07af53c02e1ced79a92e812b566465a8992f2cc6ce:log:9', 'hash': '0x8d43edd4fffdd70bf72c4a07af53c02e1ced79a92e812b566465a8992f2cc6ce', 'from': '0x7d17f48a9434ade5a409f45297c9b10897a06fb7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2800.00003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x41314cfbb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:24:05.000Z'}}, {'blockNum': '0x49fbfd', 'uniqueId': '0x0a4e7b2f0d80f61fd2a923bfc8fddf53f5d092861942996b63686bd6f59d69bf:log:4', 'hash': '0x0a4e7b2f0d80f61fd2a923bfc8fddf53f5d092861942996b63686bd6f59d69bf', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 166.98840123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03e354143b', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:24:33.000Z'}}, {'blockNum': '0x49fbfe', 'uniqueId': '0x4a39430a600862118bd2851b4ab7202a72e59518a27989a7b418dc778faf6c0c:log:28', 'hash': '0x4a39430a600862118bd2851b4ab7202a72e59518a27989a7b418dc778faf6c0c', 'from': '0x55a274a6164b8263606c6335ab41f3770c36cf9d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1135.98397946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1a72fdfdfa', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:24:42.000Z'}}, {'blockNum': '0x49fbfe', 'uniqueId': '0x0d8a9282b09ef5c696abd628399d4fdf26dad648b8753602ed57630451be85fb:log:29', 'hash': '0x0d8a9282b09ef5c696abd628399d4fdf26dad648b8753602ed57630451be85fb', 'from': '0xcfef471878edc247692a952553f14965f78f83fd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 395.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09356c5dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:24:42.000Z'}}, {'blockNum': '0x49fc01', 'uniqueId': '0x2d71370e73625fead0bb655a053dfab7f86b5fbe5c48319dbe4cf0084edbd7e0:log:2', 'hash': '0x2d71370e73625fead0bb655a053dfab7f86b5fbe5c48319dbe4cf0084edbd7e0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'value': 216.00582183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05077eba27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:25:31.000Z'}}, {'blockNum': '0x49fc02', 'uniqueId': '0x0e806a3825db39fc0551c9627c922ba59e8ba5729d7f29615f3bb47819358fd4:log:2', 'hash': '0x0e806a3825db39fc0551c9627c922ba59e8ba5729d7f29615f3bb47819358fd4', 'from': '0xdc4ec8b1471b18d52a240880271062ae4eb161a0', 'to': '0x904659de577f76d297caf7bc587243af2295cf22', 'value': 31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb8c63f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:25:46.000Z'}}, {'blockNum': '0x49fc03', 'uniqueId': '0x8f359e955938e5c0fa1b1f974260499581095ab7816435bbfb1fa9fe92b433dc:log:2', 'hash': '0x8f359e955938e5c0fa1b1f974260499581095ab7816435bbfb1fa9fe92b433dc', 'from': '0x1ec56189772c262bbecbcc68d636c45d93264524', 'to': '0xdd3195a9c254722262d2f78050bb298f63d53981', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:26:15.000Z'}}, {'blockNum': '0x49fc03', 'uniqueId': '0xdb45676085e31162f05ec3cd08914d8130cc95a962104e9c4c2b5b19bf46aaa1:log:32', 'hash': '0xdb45676085e31162f05ec3cd08914d8130cc95a962104e9c4c2b5b19bf46aaa1', 'from': '0x390b8884f3ebb86aba8317c189e7bd2c93b92fc0', 'to': '0x3966d326b4d73dbb114ea35a177ec181d7f00708', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x59682f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:26:15.000Z'}}, {'blockNum': '0x49fc03', 'uniqueId': '0x0e7062b0c2b18366599b7592c47a9b8fd9780fb640dd59bcc24d2c69bb0866c5:log:61', 'hash': '0x0e7062b0c2b18366599b7592c47a9b8fd9780fb640dd59bcc24d2c69bb0866c5', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xc3cabef78d27b8c09e4677bba2b9881766615cc5', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:26:15.000Z'}}, {'blockNum': '0x49fc05', 'uniqueId': '0x8c8e22978ad3b1bc4932775ce1e33ffb4b131ed6026756de30cc4d2e89994c7d:log:27', 'hash': '0x8c8e22978ad3b1bc4932775ce1e33ffb4b131ed6026756de30cc4d2e89994c7d', 'from': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:26:54.000Z'}}, {'blockNum': '0x49fc08', 'uniqueId': '0xb8c2ac29b6823204a852c2060fe427418c46f8a3fbf32ce82224594853f0fd83:log:3', 'hash': '0xb8c2ac29b6823204a852c2060fe427418c46f8a3fbf32ce82224594853f0fd83', 'from': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'to': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'value': 216.00582183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05077eba27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:27:41.000Z'}}, {'blockNum': '0x49fc08', 'uniqueId': '0xaddc3f439433d837f3332ab85eb0aef7983b35b3e012023d9c7233534670948d:log:16', 'hash': '0xaddc3f439433d837f3332ab85eb0aef7983b35b3e012023d9c7233534670948d', 'from': '0xc6133dd3cfada27fc0a1f053bc00db1b1c876431', 'to': '0xce6b62a68a719fa1fd893195cfc86d87f9640aeb', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:27:41.000Z'}}, {'blockNum': '0x49fc0a', 'uniqueId': '0x8472d4d5baa81c605e68eca5130176d20807aa14f5a4b2c5e0c6e8f96d673280:log:24', 'hash': '0x8472d4d5baa81c605e68eca5130176d20807aa14f5a4b2c5e0c6e8f96d673280', 'from': '0xc3cabef78d27b8c09e4677bba2b9881766615cc5', 'to': '0x898b2966cf1685cac737d524f911a76833a24c43', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:28:01.000Z'}}, {'blockNum': '0x49fc0e', 'uniqueId': '0x54b5e778f635b09fb030c1c76891e566aaea0eb544454132018988d4c5ff29e1:log:4', 'hash': '0x54b5e778f635b09fb030c1c76891e566aaea0eb544454132018988d4c5ff29e1', 'from': '0x244ea573f91e4bff6582f3303e3afc3db5b27904', 'to': '0x40d96322ca94d9d144a84dd5faf4208fedaba7ec', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:29:19.000Z'}}, {'blockNum': '0x49fc1a', 'uniqueId': '0x2dd113cf709bfba2481cf5ff2fca1c4f4bf643c67c83115192ed65077c7650c4:log:32', 'hash': '0x2dd113cf709bfba2481cf5ff2fca1c4f4bf643c67c83115192ed65077c7650c4', 'from': '0xdd3195a9c254722262d2f78050bb298f63d53981', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:08.000Z'}}, {'blockNum': '0x49fc1a', 'uniqueId': '0x99d64bf4c2e9265d1417073e437abdf87f629e950507329bceeed7a923cde120:log:33', 'hash': '0x99d64bf4c2e9265d1417073e437abdf87f629e950507329bceeed7a923cde120', 'from': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 216.00582183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05077eba27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:08.000Z'}}, {'blockNum': '0x49fc1b', 'uniqueId': '0x1d236da32a0471a58a98d78707834726aec0a65cd528a7aa8376b99acf054e9e:log:31', 'hash': '0x1d236da32a0471a58a98d78707834726aec0a65cd528a7aa8376b99acf054e9e', 'from': '0xcd431991cad8f0535402f2c8764565b9bb053112', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4614ff8200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:32.000Z'}}, {'blockNum': '0x49fc1b', 'uniqueId': '0x56e74dc9205537ff7d231a70ee5c5d3abb573ffc5364a858960155b4eb57a40d:log:33', 'hash': '0x56e74dc9205537ff7d231a70ee5c5d3abb573ffc5364a858960155b4eb57a40d', 'from': '0x68108a3fb03ac12e90e12f56e91b3a8e2a73876c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:32.000Z'}}, {'blockNum': '0x49fc1b', 'uniqueId': '0x803793f62501308c0c38db0c120e5b033ddc4e1e32e02697377b5c61e33b6f74:log:34', 'hash': '0x803793f62501308c0c38db0c120e5b033ddc4e1e32e02697377b5c61e33b6f74', 'from': '0x7b0b12d3009a8c9acfb87f861dbb34d43d7746cc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 155.934939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a171d58c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:32.000Z'}}, {'blockNum': '0x49fc1b', 'uniqueId': '0x3bf47ba7d89555894759f8958f3e275d4a56068e2bd1e09366d28a387c38f4a2:log:35', 'hash': '0x3bf47ba7d89555894759f8958f3e275d4a56068e2bd1e09366d28a387c38f4a2', 'from': '0xd32ab3b727ae81c01526dd3582e370fb7561153b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:33:32.000Z'}}, {'blockNum': '0x49fc22', 'uniqueId': '0xe8b9b3886685d6562b6860bf046622202dc30693dcf785807c0203ecb8227dd8:log:14', 'hash': '0xe8b9b3886685d6562b6860bf046622202dc30693dcf785807c0203ecb8227dd8', 'from': '0xff46eb0f9273221e214d2e64cfec072d160062b7', 'to': '0xdcd04cb26a0ce1ba50422424210cf6f6285414f8', 'value': 14.75478286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x57f2030e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:35:31.000Z'}}, {'blockNum': '0x49fc22', 'uniqueId': '0xca4e95a70d8a2e3c0df7577ff69d521886814c9a70c7713e9acbbccc1769acba:log:15', 'hash': '0xca4e95a70d8a2e3c0df7577ff69d521886814c9a70c7713e9acbbccc1769acba', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xff46eb0f9273221e214d2e64cfec072d160062b7', 'value': 1.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x067f3540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:35:31.000Z'}}, {'blockNum': '0x49fc32', 'uniqueId': '0x96169b35659c406bcf931042632b65bfef38329e921408ffbb3d70e122ed0eed:log:29', 'hash': '0x96169b35659c406bcf931042632b65bfef38329e921408ffbb3d70e122ed0eed', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x56b2fe8bc076cd5f5ef336319fe41eda1e3074a0', 'value': 12.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4c4b4000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:39:26.000Z'}}, {'blockNum': '0x49fc41', 'uniqueId': '0x9e792f2fd95337a705bc5fc54b4a2fc379012788d8bf0ea0d4b11b2a87b84e3b:log:26', 'hash': '0x9e792f2fd95337a705bc5fc54b4a2fc379012788d8bf0ea0d4b11b2a87b84e3b', 'from': '0xc31c786613f537391958d74610e468175c576d9f', 'to': '0xa62a1a841412700ce7d9f69c23f8484809be5292', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:42:34.000Z'}}, {'blockNum': '0x49fc48', 'uniqueId': '0xf20ef7730f291d1996cdb77e854eb929e691fc0fc56b176dceccf2c2e551332b:log:59', 'hash': '0xf20ef7730f291d1996cdb77e854eb929e691fc0fc56b176dceccf2c2e551332b', 'from': '0x56b2fe8bc076cd5f5ef336319fe41eda1e3074a0', 'to': '0x9ef31bfafb22421b5b53264b0c1fbbaa4a9355c6', 'value': 12.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4c4b4000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:44:23.000Z'}}, {'blockNum': '0x49fc4d', 'uniqueId': '0x9e2422052e039d483cec7e2df4e99d4286b4da277e15f44eb78f12a14d294525:log:21', 'hash': '0x9e2422052e039d483cec7e2df4e99d4286b4da277e15f44eb78f12a14d294525', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2cb5cbe355c448c40d1c44193039ce4fdbcd2625', 'value': 0.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x042c1d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:45:36.000Z'}}, {'blockNum': '0x49fc5f', 'uniqueId': '0xa96c8adc4e85387183f490e8c8e5cded83aea3da3693ffa796e4d08e37c4d0a2:log:52', 'hash': '0xa96c8adc4e85387183f490e8c8e5cded83aea3da3693ffa796e4d08e37c4d0a2', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x879d325832a387b2af6a5ad4ce05824bc52e381c', 'value': 0.00024887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6137', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:49:55.000Z'}}, {'blockNum': '0x49fc61', 'uniqueId': '0xbf154af6ea185294435654980eca56cc866eee980bffd645e6e79d79ef6c92d4:log:41', 'hash': '0xbf154af6ea185294435654980eca56cc866eee980bffd645e6e79d79ef6c92d4', 'from': '0x7976b4623fb8781e8836ac2092f833db16fe58fe', 'to': '0x14066b63024ce80131cea92b61a934c056b6bacb', 'value': 288.40082199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06b700bb17', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:50:08.000Z'}}, {'blockNum': '0x49fc62', 'uniqueId': '0x326ec7f5e52c239a16107c833fc1606f19b7f04bfe9d4cd05167100a6818b475:log:4', 'hash': '0x326ec7f5e52c239a16107c833fc1606f19b7f04bfe9d4cd05167100a6818b475', 'from': '0x98c6846bd8191d975cd2dfc043c85e80edc15c5f', 'to': '0x33285fbbc23401d7016a27c8e56fb7092b4d76f1', 'value': 420, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09c7652400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:50:19.000Z'}}, {'blockNum': '0x49fc73', 'uniqueId': '0x71cceeb5c444bcfd3def5bf0f517c934417e8169c95a3c2a794023abd6d8f33d:log:0', 'hash': '0x71cceeb5c444bcfd3def5bf0f517c934417e8169c95a3c2a794023abd6d8f33d', 'from': '0x24cea444fa2919edea10e97065e280bbfc5e8793', 'to': '0xdc151ec029bc8aa8ef01ea534288df9fa79e7b8d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:54:39.000Z'}}, {'blockNum': '0x49fc76', 'uniqueId': '0xe2d9964fbe271b3894f1c5f1a38d7ea021c7072809836d721d93e75572a0af9b:log:7', 'hash': '0xe2d9964fbe271b3894f1c5f1a38d7ea021c7072809836d721d93e75572a0af9b', 'from': '0x2cb5cbe355c448c40d1c44193039ce4fdbcd2625', 'to': '0xd0d9c1154be9398cd2e7c833d2cc47f488353067', 'value': 0.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x042c1d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T18:55:44.000Z'}}, {'blockNum': '0x49fc90', 'uniqueId': '0x135bd29fff03868c4dabed49340efdcea669db4814798b2af71942aaa810b550:log:23', 'hash': '0x135bd29fff03868c4dabed49340efdcea669db4814798b2af71942aaa810b550', 'from': '0xdc151ec029bc8aa8ef01ea534288df9fa79e7b8d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:03:55.000Z'}}, {'blockNum': '0x49fc98', 'uniqueId': '0x8df2044d6151be199032ff05e391e415b442bbc8dce74898392bd776dcca04e7:log:27', 'hash': '0x8df2044d6151be199032ff05e391e415b442bbc8dce74898392bd776dcca04e7', 'from': '0xa0f56f786ed6206bf9a30d6e875dd8dcc644d6c9', 'to': '0x554265957b72a43dee3a22af13c3fc980381ae4c', 'value': 41.38052704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf6a5ac60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:05:07.000Z'}}, {'blockNum': '0x49fca8', 'uniqueId': '0x121f586f7d2231e6fe8e0b1040562016fc76daf8cba074cee04027750a6748b0:log:1', 'hash': '0x121f586f7d2231e6fe8e0b1040562016fc76daf8cba074cee04027750a6748b0', 'from': '0x2e489afbdcbe851948158afe61aacadf671f7df4', 'to': '0xde36bd8b28afe22467ee7f04c15fd090de44a922', 'value': 900.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14f47a4640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:08:55.000Z'}}, {'blockNum': '0x49fcaa', 'uniqueId': '0x08b508bc43acaaf350e6d54181aa2ec9a1560c77c5b90ca3a46f81950db08c61:log:9', 'hash': '0x08b508bc43acaaf350e6d54181aa2ec9a1560c77c5b90ca3a46f81950db08c61', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x9e2e639867b84cf479967125df1cada64a1e20a1', 'value': 3556.783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52d0142760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:09:12.000Z'}}, {'blockNum': '0x49fcaf', 'uniqueId': '0xc21b4581c7df69ed7fce89d6796e808d66b664b6c31d3045508950c240edf99f:log:17', 'hash': '0xc21b4581c7df69ed7fce89d6796e808d66b664b6c31d3045508950c240edf99f', 'from': '0x30d14dd10f73fd46ebe19b1e0b3802e2057b1f42', 'to': '0x92000ce4b4777e32c828d2ede8c29a17c6432c15', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:10:03.000Z'}}, {'blockNum': '0x49fcb0', 'uniqueId': '0x90eb4dcc980fea06ad9fd3ea8ff624b145b70fef709733eb6470910850244eb7:log:10', 'hash': '0x90eb4dcc980fea06ad9fd3ea8ff624b145b70fef709733eb6470910850244eb7', 'from': '0x9e2e639867b84cf479967125df1cada64a1e20a1', 'to': '0xbfcc008a5225e994ea616fc08a65b267b2a62206', 'value': 3556.783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52d0142760', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:10:20.000Z'}}, {'blockNum': '0x49fcb2', 'uniqueId': '0x3babb9223ac074ca9c44b65ba66224031822c4dc9346e782c5ff83362aabc947:log:43', 'hash': '0x3babb9223ac074ca9c44b65ba66224031822c4dc9346e782c5ff83362aabc947', 'from': '0x21e729ca55cd726233ebbddb4e41de4ab6c72d0b', 'to': '0x14066b63024ce80131cea92b61a934c056b6bacb', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:10:36.000Z'}}, {'blockNum': '0x49fcb6', 'uniqueId': '0x48142c5109318f1869e88dd01e66925d63c620454ae27540e2dd74cae07e503c:log:24', 'hash': '0x48142c5109318f1869e88dd01e66925d63c620454ae27540e2dd74cae07e503c', 'from': '0x554265957b72a43dee3a22af13c3fc980381ae4c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41.38052704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf6a5ac60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:11:54.000Z'}}, {'blockNum': '0x49fccf', 'uniqueId': '0xd44083280116296ac0c07a21e27ccf2d4972e2cd5cad19b019ef2b3149d31692:log:19', 'hash': '0xd44083280116296ac0c07a21e27ccf2d4972e2cd5cad19b019ef2b3149d31692', 'from': '0x58c3d329b0fcb8d053b958d4616c5eb121c3c94d', 'to': '0x14066b63024ce80131cea92b61a934c056b6bacb', 'value': 285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06a2bb7d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:19:39.000Z'}}, {'blockNum': '0x49fcd3', 'uniqueId': '0x79057005bba0727d881a2778505960e8b8a0691f4253d95f1f9eac750471cfec:log:1', 'hash': '0x79057005bba0727d881a2778505960e8b8a0691f4253d95f1f9eac750471cfec', 'from': '0xe6b57f54fe3d5dbd56144a1f3dcf77bcf9e83cfb', 'to': '0x2efc555ce366546b2f5ce0d08a5373e14fc2af3a', 'value': 85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01faa3b500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:20:39.000Z'}}, {'blockNum': '0x49fce7', 'uniqueId': '0x7bf00e94ccbea0d0d40daf6775326ac89249b8d1cdf13c593fc91e9f8d71c035:log:10', 'hash': '0x7bf00e94ccbea0d0d40daf6775326ac89249b8d1cdf13c593fc91e9f8d71c035', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x07a624a1fb32258506ea500d944aed61ae9c8fb2', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:25:26.000Z'}}, {'blockNum': '0x49fce8', 'uniqueId': '0x9f197f605b799f612a0a8ec20bdb26d46e4b5f02678bcdfbd990ca262e4f8734:log:5', 'hash': '0x9f197f605b799f612a0a8ec20bdb26d46e4b5f02678bcdfbd990ca262e4f8734', 'from': '0x92000ce4b4777e32c828d2ede8c29a17c6432c15', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:26:13.000Z'}}, {'blockNum': '0x49fcfc', 'uniqueId': '0xb0ce0d6b6812c47475fa93671355fac55581f4252a925765e89e90ee608d50e2:log:9', 'hash': '0xb0ce0d6b6812c47475fa93671355fac55581f4252a925765e89e90ee608d50e2', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xbde5c8ebdfddb83d2a6ac2e52592228138509844', 'value': 116.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b93087a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:31:49.000Z'}}, {'blockNum': '0x49fcfd', 'uniqueId': '0x926513d06a7ea878df3d382d1b82e84f6c6b358b34099224afd8cf0814b12c12:log:37', 'hash': '0x926513d06a7ea878df3d382d1b82e84f6c6b358b34099224afd8cf0814b12c12', 'from': '0x07a624a1fb32258506ea500d944aed61ae9c8fb2', 'to': '0x0d12eee83d6ed28e6eb7cb5af385cf898caf5535', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:32:00.000Z'}}, {'blockNum': '0x49fd00', 'uniqueId': '0x42bc8c01ee28c64c86d1b288ff38a85675482b9abf002ec15f5d9e275d4382ca:log:10', 'hash': '0x42bc8c01ee28c64c86d1b288ff38a85675482b9abf002ec15f5d9e275d4382ca', 'from': '0x6941b101994624bd4be7d71883ecea31f563b53f', 'to': '0x20877861911adb00db38d41b16fe34de9f7ef2b9', 'value': 7.64596883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2d92d293', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:32:37.000Z'}}, {'blockNum': '0x49fd09', 'uniqueId': '0xff0aca0e7e926036782b97375e85070b20d7692efaa8d5b5ef56e621c7baa09b:log:0', 'hash': '0xff0aca0e7e926036782b97375e85070b20d7692efaa8d5b5ef56e621c7baa09b', 'from': '0x2ab0707042cfa47b49176888d964e3622745f3cc', 'to': '0x203053679eb15c3decf20b91d89069d0009a9254', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e90edd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:36:18.000Z'}}, {'blockNum': '0x49fd0a', 'uniqueId': '0x164a2847936197389744335102c1a37bdf65f30fed2a6bd7e1801efabb0c8cd3:log:43', 'hash': '0x164a2847936197389744335102c1a37bdf65f30fed2a6bd7e1801efabb0c8cd3', 'from': '0xe0f82df37f05a1cfb6b88cab50a59f7c3fe8c6b7', 'to': '0xbfa30807cae1d4351620d32bb7985bfaf28f74aa', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:36:54.000Z'}}, {'blockNum': '0x49fd14', 'uniqueId': '0x7592526d90cfbbed88d4df3ca72afeed1a749ff7ff4fcd0cd9e32529dab92774:log:38', 'hash': '0x7592526d90cfbbed88d4df3ca72afeed1a749ff7ff4fcd0cd9e32529dab92774', 'from': '0x1e06506ac0a8f6ccfe031b070fcab99d95e15c51', 'to': '0xb2080e9a9034ea639a99d62e5572c4aa8e757698', 'value': 1246.03633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d02f48d68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:39:35.000Z'}}, {'blockNum': '0x49fd16', 'uniqueId': '0xc47578429debcadada24c8c86e29bccecd3a23d408387911ee3d48747aade928:log:59', 'hash': '0xc47578429debcadada24c8c86e29bccecd3a23d408387911ee3d48747aade928', 'from': '0x1d67d4c68b4003d20ca7c54ef080314260cae5c8', 'to': '0x155ea4c3308b9e4e0d8d182cf742cac3344af85f', 'value': 160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b9aca000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:40:02.000Z'}}, {'blockNum': '0x49fd17', 'uniqueId': '0xd3d5be7ec08cda64433e8933be766310bd449cd96cc7506f9e7f1af4269e0821:log:9', 'hash': '0xd3d5be7ec08cda64433e8933be766310bd449cd96cc7506f9e7f1af4269e0821', 'from': '0x0d12eee83d6ed28e6eb7cb5af385cf898caf5535', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:40:09.000Z'}}, {'blockNum': '0x49fd17', 'uniqueId': '0x2a689e7b8cfa70c17136321e683f0dc166d5315b6a57b76d3c75ab9da00aaee4:log:10', 'hash': '0x2a689e7b8cfa70c17136321e683f0dc166d5315b6a57b76d3c75ab9da00aaee4', 'from': '0xb2080e9a9034ea639a99d62e5572c4aa8e757698', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1246.03633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d02f48d68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:40:09.000Z'}}, {'blockNum': '0x49fd17', 'uniqueId': '0xc47415d77ef14e8a7d52e3120a7390ef119043c323ee70ef713ab591a7622288:log:45', 'hash': '0xc47415d77ef14e8a7d52e3120a7390ef119043c323ee70ef713ab591a7622288', 'from': '0x25eb666384ea7d54739d5271763e6bd3ea00e2e4', 'to': '0x1a3a8bbb31ffafd8e4e11f0580d36d1d08c5c006', 'value': 407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0979e8b700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:40:09.000Z'}}, {'blockNum': '0x49fd1d', 'uniqueId': '0x4a8efae6e78e3cb1262859efa1162218c10a65079ccd32b7809963edc9a4842b:log:89', 'hash': '0x4a8efae6e78e3cb1262859efa1162218c10a65079ccd32b7809963edc9a4842b', 'from': '0xa0f777bde97f5c3a7642686fe849723891257c5a', 'to': '0x7fcecc848ef9632ef130e3bcfb32e020a70dfff9', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:42:09.000Z'}}, {'blockNum': '0x49fd22', 'uniqueId': '0x70c70e2c1e3f4e64efa774902ea37fe11db06afc55dbabb087ee0dd030393894:log:51', 'hash': '0x70c70e2c1e3f4e64efa774902ea37fe11db06afc55dbabb087ee0dd030393894', 'from': '0xffb22880d9c4232b4369e143bfd6059eeae0502f', 'to': '0x5847d3b773f96264573305840bc3c99f01cc6fb1', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:43:15.000Z'}}, {'blockNum': '0x49fd24', 'uniqueId': '0x42668f8c83449139d87892c60b2b78e250c96fb5a10dbf753b3152599c11b0f2:log:27', 'hash': '0x42668f8c83449139d87892c60b2b78e250c96fb5a10dbf753b3152599c11b0f2', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xebacc5a667c03ae26316c5a055d292b5f2a1e7cf', 'value': 1512.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x23356a1500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:43:30.000Z'}}, {'blockNum': '0x49fd24', 'uniqueId': '0xb64b8033b87631099e681f976728c6449550feb4654dcf55a3732e1485c5b829:log:42', 'hash': '0xb64b8033b87631099e681f976728c6449550feb4654dcf55a3732e1485c5b829', 'from': '0x443bf1cfad0d711dd2bda4a6dcdbbd03f99024c0', 'to': '0xb06ec0ef43ed41476d62fb82e99acd931196d7cf', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e90edd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:43:30.000Z'}}, {'blockNum': '0x49fd27', 'uniqueId': '0xa9808be3dd8f9539553b3662c865106f70d7e03402898f8e8fe9815e77ba68e3:log:43', 'hash': '0xa9808be3dd8f9539553b3662c865106f70d7e03402898f8e8fe9815e77ba68e3', 'from': '0x285cbde4a7ba2383e965ae4c0ec476be9034a8d3', 'to': '0x7eea4cee8899533dc505f61022714965049a5c4e', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:44:50.000Z'}}, {'blockNum': '0x49fd3b', 'uniqueId': '0xdb97d2cb3d973bd0a2f153f3ac5813dc3ac57b87f11f85f489159813fa3282de:log:64', 'hash': '0xdb97d2cb3d973bd0a2f153f3ac5813dc3ac57b87f11f85f489159813fa3282de', 'from': '0x155ea4c3308b9e4e0d8d182cf742cac3344af85f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03b9aca000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:50:43.000Z'}}, {'blockNum': '0x49fd59', 'uniqueId': '0x4549f44f55883364baf5347fca63c2c1093c0ae88f4cd1b41e1ce79f97ab9cb7:log:5', 'hash': '0x4549f44f55883364baf5347fca63c2c1093c0ae88f4cd1b41e1ce79f97ab9cb7', 'from': '0xee71f72bb9bd8e333b897661dd14ae643248dbc7', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:58:10.000Z'}}, {'blockNum': '0x49fd59', 'uniqueId': '0xd05663ff3bf923529c5771ae91ebf1c26a1dab8375e933a960b03752cf852998:log:49', 'hash': '0xd05663ff3bf923529c5771ae91ebf1c26a1dab8375e933a960b03752cf852998', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe20d7ad742e0244e80944842744d77447824afa2', 'value': 115.849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b2838ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T19:58:10.000Z'}}, {'blockNum': '0x49fd6a', 'uniqueId': '0xa82897d87b0ae016e704e00ed5ec81f43eb8a98abb265dd5124111b9df1e0f0c:log:20', 'hash': '0xa82897d87b0ae016e704e00ed5ec81f43eb8a98abb265dd5124111b9df1e0f0c', 'from': '0x1a3a8bbb31ffafd8e4e11f0580d36d1d08c5c006', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 407.59993124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x097d7c2324', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:01:42.000Z'}}, {'blockNum': '0x49fd7b', 'uniqueId': '0xdc62bf3366a07b0a28baedbdcc71507555b5d2207d53b60f3dd73d36a5f039f0:log:14', 'hash': '0xdc62bf3366a07b0a28baedbdcc71507555b5d2207d53b60f3dd73d36a5f039f0', 'from': '0xe20d7ad742e0244e80944842744d77447824afa2', 'to': '0x474e9c1b2d3bff6d4d3c3d02553a84593b213f6f', 'value': 115.849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b2838ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:05:10.000Z'}}, {'blockNum': '0x49fd90', 'uniqueId': '0x7e95f369ca8848a6cb2bac05a7e1821fadd477ff4ccd55dbc684e2b622df53d0:log:0', 'hash': '0x7e95f369ca8848a6cb2bac05a7e1821fadd477ff4ccd55dbc684e2b622df53d0', 'from': '0x700fcc458148180c68554c85ded7a1d11b0d44fc', 'to': '0x84c7d7d5d9edbef8e983d21b5bf548ba06641c76', 'value': 19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x713fb300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:09:37.000Z'}}, {'blockNum': '0x49fd99', 'uniqueId': '0x44d2655194aa2cddca2dd53218a5d1ab75b178493f6838718a0faaf5dd7149b4:log:0', 'hash': '0x44d2655194aa2cddca2dd53218a5d1ab75b178493f6838718a0faaf5dd7149b4', 'from': '0x700fcc458148180c68554c85ded7a1d11b0d44fc', 'to': '0x84c7d7d5d9edbef8e983d21b5bf548ba06641c76', 'value': 19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x713fb300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:11:31.000Z'}}, {'blockNum': '0x49fd99', 'uniqueId': '0x5f7d33f3e140769f75667e141886aadcc138ebcac4fef2a14ba12fcce059aa14:log:38', 'hash': '0x5f7d33f3e140769f75667e141886aadcc138ebcac4fef2a14ba12fcce059aa14', 'from': '0x626309bcffe83987e346e2a89b859993e8e6e215', 'to': '0x4335b32bba1cd23c601ffe3c219a9df009a5f818', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:11:31.000Z'}}, {'blockNum': '0x49fdbd', 'uniqueId': '0xf267458a4e09c60aa1ba0b55c93e03bca42cace86a71d330b2ee07be24d424e4:log:60', 'hash': '0xf267458a4e09c60aa1ba0b55c93e03bca42cace86a71d330b2ee07be24d424e4', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe0f82df37f05a1cfb6b88cab50a59f7c3fe8c6b7', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:19:47.000Z'}}, {'blockNum': '0x49fdc6', 'uniqueId': '0x1c58bb3dbbed498b2c710399b73e6da2684ce5d6f263b94eef18aa5b77bc2d31:log:3', 'hash': '0x1c58bb3dbbed498b2c710399b73e6da2684ce5d6f263b94eef18aa5b77bc2d31', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x850dcb0ca5e6cd1138b83a3f8eb76fd849fd3e82', 'value': 109.82263392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028e980a60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:23:23.000Z'}}, {'blockNum': '0x49fdc6', 'uniqueId': '0xca40060b2936a61d44a6a9c316b9e324b4aae788833fd3f617ecc8b9619a2473:log:34', 'hash': '0xca40060b2936a61d44a6a9c316b9e324b4aae788833fd3f617ecc8b9619a2473', 'from': '0x16ba546d15c8cb16331164e799410f6a3d0ae88b', 'to': '0xb6cb1862122084733758a2b148501677918d03f3', 'value': 0.93074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x058c3250', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:23:23.000Z'}}, {'blockNum': '0x49fdc7', 'uniqueId': '0xdbe76d50ac9bca2bf65d1d7be7013a8dad60b58c5d289ffa35c3043bb162066f:log:18', 'hash': '0xdbe76d50ac9bca2bf65d1d7be7013a8dad60b58c5d289ffa35c3043bb162066f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x66cfa50b0b61a8edb3be8b20cad3f403e31f7a09', 'value': 44.558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0109961cc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:23:29.000Z'}}, {'blockNum': '0x49fdc7', 'uniqueId': '0xe09ed6e86c742804cac0faaccdbee1f1fe675c2431531e7dfa648479fb0c8089:log:26', 'hash': '0xe09ed6e86c742804cac0faaccdbee1f1fe675c2431531e7dfa648479fb0c8089', 'from': '0x84c7d7d5d9edbef8e983d21b5bf548ba06641c76', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe27f6600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:23:29.000Z'}}, {'blockNum': '0x49fdd0', 'uniqueId': '0xcf8d34ef981087a332dc8f1fd466623cdcd4b9c851c3c2ba8aa0c8a0bdd44cb9:log:17', 'hash': '0xcf8d34ef981087a332dc8f1fd466623cdcd4b9c851c3c2ba8aa0c8a0bdd44cb9', 'from': '0x383932e5467528999954bf192452e390e1c84795', 'to': '0x3bae7ffaf60f1a5a38fce086d701d53a0da9d1d2', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:25:56.000Z'}}, {'blockNum': '0x49fdd2', 'uniqueId': '0xa939fa59144a5e7904a205b9e09aa3d9b194a4e20f0d1553b8ffba3d51c0ca1c:log:2', 'hash': '0xa939fa59144a5e7904a205b9e09aa3d9b194a4e20f0d1553b8ffba3d51c0ca1c', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x66cfa50b0b61a8edb3be8b20cad3f403e31f7a09', 'value': 0.00032743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7fe7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:26:23.000Z'}}, {'blockNum': '0x49fdd5', 'uniqueId': '0xbb14d7099e44a2000de957e422338929c39b9f9580a20e60b59f30c16f17a140:log:5', 'hash': '0xbb14d7099e44a2000de957e422338929c39b9f9580a20e60b59f30c16f17a140', 'from': '0x850dcb0ca5e6cd1138b83a3f8eb76fd849fd3e82', 'to': '0x81272c71c6f73280bf882cf4d170dbbefb1a5a2f', 'value': 109.82263392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028e980a60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:27:23.000Z'}}, {'blockNum': '0x49fdd7', 'uniqueId': '0xf9c575480d7830bb6056fbc1bebc038f53393e01682dcd5152abe49d758e2c25:log:26', 'hash': '0xf9c575480d7830bb6056fbc1bebc038f53393e01682dcd5152abe49d758e2c25', 'from': '0x2efc555ce366546b2f5ce0d08a5373e14fc2af3a', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:28:25.000Z'}}, {'blockNum': '0x49fdef', 'uniqueId': '0xd0ff0229cc78494dd57fec783415268c9c0cc82719e4dc55d4e0889d710eb8f4:log:35', 'hash': '0xd0ff0229cc78494dd57fec783415268c9c0cc82719e4dc55d4e0889d710eb8f4', 'from': '0x253e23cda8d3c44695a2c4d10c4918efde566763', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 2035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2f618b9300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:34:13.000Z'}}, {'blockNum': '0x49fdef', 'uniqueId': '0x3d90661606741f091036dbb49b875cc7e7e735146c2f6eef56c9a3b10623f4a6:log:75', 'hash': '0x3d90661606741f091036dbb49b875cc7e7e735146c2f6eef56c9a3b10623f4a6', 'from': '0x7440384e15c0b8aa995e033a68e901308ffd669c', 'to': '0x951ca39f35001cf4b43730442bd607f990522821', 'value': 19999.83851869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a853b95d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:34:13.000Z'}}, {'blockNum': '0x49fdf3', 'uniqueId': '0xc4c1342273adff4563d3429f765f88adf0b4b9e55922eece5f6be114da51be7c:log:54', 'hash': '0xc4c1342273adff4563d3429f765f88adf0b4b9e55922eece5f6be114da51be7c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee72dbcea547ed290f81be6296a8901d3c145127', 'value': 28.9708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xacadeec0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:35:06.000Z'}}, {'blockNum': '0x49fdf3', 'uniqueId': '0xbf7fc1ead6fb98f74123fc266ff8e7cb12ce00c6385cad96872e65544e614cdb:log:98', 'hash': '0xbf7fc1ead6fb98f74123fc266ff8e7cb12ce00c6385cad96872e65544e614cdb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x51adc3c67a1c3745373125a74c5fdbb0b0e39ec2', 'value': 24.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x93d1cc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:35:06.000Z'}}, {'blockNum': '0x49fdfc', 'uniqueId': '0x8fd41d597e6d26ea61f298cc2e9b35854cdbcaa298fae22f4e3f633ef775eb63:log:17', 'hash': '0x8fd41d597e6d26ea61f298cc2e9b35854cdbcaa298fae22f4e3f633ef775eb63', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 105.25556051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02735f3d53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:37:49.000Z'}}, {'blockNum': '0x49fdfc', 'uniqueId': '0x1a81c83b698c740ac97bdeebaf7e10510c1c812433a0156b969eb476c65c0f3d:log:52', 'hash': '0x1a81c83b698c740ac97bdeebaf7e10510c1c812433a0156b969eb476c65c0f3d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0c894a22a97fa4afb043a523eb317e0d3df03c4d', 'value': 0.9988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f40c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:37:49.000Z'}}, {'blockNum': '0x49fe02', 'uniqueId': '0x99c70c68c93aa961c2464c0a3f8d8f0be18345ed418e7a69364df055e4ac53e3:log:54', 'hash': '0x99c70c68c93aa961c2464c0a3f8d8f0be18345ed418e7a69364df055e4ac53e3', 'from': '0xf2fcb844b59348fe7f07de5dd3875ccd60ab63b4', 'to': '0x5d28d57411588bdd4ccd91fae76ffc97d656e5be', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:39:01.000Z'}}, {'blockNum': '0x49fe05', 'uniqueId': '0x66150b26f908052571501f42fcf8fda93972706b845f6f771c3d54bce53e2c57:log:0', 'hash': '0x66150b26f908052571501f42fcf8fda93972706b845f6f771c3d54bce53e2c57', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xff391312481660ea12d06b8048e97d3d1df1276d', 'value': 4.04575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x181d5318', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:39:30.000Z'}}, {'blockNum': '0x49fe10', 'uniqueId': '0xf783bcbf6095cbc233c621e8e9289eaf76c89acf3953e47157fc8455e29bf086:log:33', 'hash': '0xf783bcbf6095cbc233c621e8e9289eaf76c89acf3953e47157fc8455e29bf086', 'from': '0x5d28d57411588bdd4ccd91fae76ffc97d656e5be', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:41:34.000Z'}}, {'blockNum': '0x49fe1a', 'uniqueId': '0xc869f354600b615a1d1f3185165b431e3475a76e54d8d93856df4ec70d51bc14:log:105', 'hash': '0xc869f354600b615a1d1f3185165b431e3475a76e54d8d93856df4ec70d51bc14', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x018baa2adf59350d2fecdd921d39364f4dbb1537', 'value': 457.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aa42bb200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:43:25.000Z'}}, {'blockNum': '0x49fe1b', 'uniqueId': '0xf8f9d1114790b93dde8e0d90bf8c4d921bbba1dbf08c1bb55f14eaa9fddb21bd:log:40', 'hash': '0xf8f9d1114790b93dde8e0d90bf8c4d921bbba1dbf08c1bb55f14eaa9fddb21bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3a43abc3c1d5d3e65a55ef1c65ea9b27b7d094cd', 'value': 7.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2abc8d40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:43:34.000Z'}}, {'blockNum': '0x49fe23', 'uniqueId': '0xe78078fe55b82eaaddde7deea74bf15441287474e1b1fd707bb088dfa490f8b8:log:15', 'hash': '0xe78078fe55b82eaaddde7deea74bf15441287474e1b1fd707bb088dfa490f8b8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 123.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e1e7cf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:45:30.000Z'}}, {'blockNum': '0x49fe23', 'uniqueId': '0x13d2977f9699f879741bc398baf9c35d281f3176164803739af86f99f67bb091:log:16', 'hash': '0x13d2977f9699f879741bc398baf9c35d281f3176164803739af86f99f67bb091', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc94d2ea35b65032f4634b312a4b731d8430e5c50', 'value': 4.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c9c3800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:45:30.000Z'}}, {'blockNum': '0x49fe30', 'uniqueId': '0xea4423c216379d010e2d270174d643bcd8826d577d4aaef3581884f0feac4f44:log:42', 'hash': '0xea4423c216379d010e2d270174d643bcd8826d577d4aaef3581884f0feac4f44', 'from': '0xffb22880d9c4232b4369e143bfd6059eeae0502f', 'to': '0x5847d3b773f96264573305840bc3c99f01cc6fb1', 'value': 3.296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a54c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:48:58.000Z'}}, {'blockNum': '0x49fe3a', 'uniqueId': '0x05392a13eb5fc0c67b436698fe70062ffa01c927016647eaaf428a4170cb845e:log:134', 'hash': '0x05392a13eb5fc0c67b436698fe70062ffa01c927016647eaaf428a4170cb845e', 'from': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 126.4162341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02f17fdd72', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:51:34.000Z'}}, {'blockNum': '0x49fe3e', 'uniqueId': '0x2dcb3f8da214be2c6131ed6f3db4b78d47ef0c4f886ddbd083d5fa2204899d9c:log:105', 'hash': '0x2dcb3f8da214be2c6131ed6f3db4b78d47ef0c4f886ddbd083d5fa2204899d9c', 'from': '0x5c891cb26ec8a1cf3af2d8bd4deff962f537922d', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:52:39.000Z'}}, {'blockNum': '0x49fe52', 'uniqueId': '0x26036d1cf8f1db6ed6be110a6f062701c3f2962b38ed14c7bacdf6a5b555c989:log:10', 'hash': '0x26036d1cf8f1db6ed6be110a6f062701c3f2962b38ed14c7bacdf6a5b555c989', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3d51082f231742328d4568030618bbf0d01432cf', 'value': 11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4190ab00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:57:05.000Z'}}, {'blockNum': '0x49fe53', 'uniqueId': '0x39dd29e81fd4d8bd47d260f80d5037771dcff96345486f781734cd0ef5904b7b:log:21', 'hash': '0x39dd29e81fd4d8bd47d260f80d5037771dcff96345486f781734cd0ef5904b7b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0be7a29c6f095e5427f111e9da3e1f3d1546f923', 'value': 5.75404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x224bf7e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:57:16.000Z'}}, {'blockNum': '0x49fe53', 'uniqueId': '0xd4db276533fad9b00f0b6735ecbe7e831588018e8b35a930132ef4f844012b9e:log:22', 'hash': '0xd4db276533fad9b00f0b6735ecbe7e831588018e8b35a930132ef4f844012b9e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x43d91646e2b690155638b05c9d88410abb740f87', 'value': 30.12964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb3962ea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:57:16.000Z'}}, {'blockNum': '0x49fe54', 'uniqueId': '0x8d4313222353c4a32ab19e2548413f10c8a187ac723b5c8381ba39440a435e4e:log:29', 'hash': '0x8d4313222353c4a32ab19e2548413f10c8a187ac723b5c8381ba39440a435e4e', 'from': '0xeb07d758f4efb5713d3a88b898d1b986f1298db8', 'to': '0x6520036d7a601c062205819f4b3c6df6df4834fa', 'value': 345.90270831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x080dbda56f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:57:51.000Z'}}, {'blockNum': '0x49fe56', 'uniqueId': '0xb2129d9af3efa624abb16d87efa17dc976eb337d42ce9a0a7dac9ab1077011fa:log:12', 'hash': '0xb2129d9af3efa624abb16d87efa17dc976eb337d42ce9a0a7dac9ab1077011fa', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 105.25556051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02735f3d53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:58:11.000Z'}}, {'blockNum': '0x49fe5a', 'uniqueId': '0x5d97f8dca6823fc383eff3bdc005fa1b5e579a6ccc619a55f4071697911c91db:log:31', 'hash': '0x5d97f8dca6823fc383eff3bdc005fa1b5e579a6ccc619a55f4071697911c91db', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24d008edce3fef8715cc1effd5a2cb181b833199', 'value': 34.78498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcf55aad0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T20:59:05.000Z'}}, {'blockNum': '0x49fe78', 'uniqueId': '0xa0a7e30d0d337d71dab18bab2f26e23d35bc5ffb559467aa5a5b66a52dce36aa:log:17', 'hash': '0xa0a7e30d0d337d71dab18bab2f26e23d35bc5ffb559467aa5a5b66a52dce36aa', 'from': '0x2efc555ce366546b2f5ce0d08a5373e14fc2af3a', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:07:16.000Z'}}, {'blockNum': '0x49fe79', 'uniqueId': '0x027838d7effb1abf90583287ccb13e83fa17bbe8b0e907c7a8be1bab352c14e7:log:44', 'hash': '0x027838d7effb1abf90583287ccb13e83fa17bbe8b0e907c7a8be1bab352c14e7', 'from': '0x4eef5f0cd4fe38ed6ea3446b4ed3b88e2c6a190f', 'to': '0xc32bc63a93eba6d7a331c3badbadbacf68999c38', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x47868c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:07:33.000Z'}}, {'blockNum': '0x49fe7a', 'uniqueId': '0x58f7194f91090e9a234df560dda8494b06a749faa72615038451ab1c95316e2e:log:11', 'hash': '0x58f7194f91090e9a234df560dda8494b06a749faa72615038451ab1c95316e2e', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 105.25556051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02735f3d53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:07:40.000Z'}}, {'blockNum': '0x49fe8a', 'uniqueId': '0x8db31829f1d3e2f372a09add01acbd1a6a060504a97a0e7d062a95b6829d17a1:log:56', 'hash': '0x8db31829f1d3e2f372a09add01acbd1a6a060504a97a0e7d062a95b6829d17a1', 'from': '0xeeedf522e3fce3937401cc31a86ebb809df0f8c8', 'to': '0x3a26cdf8d6df89861001d476f8de2185e364fccb', 'value': 19.86991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x766f1398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:11:52.000Z'}}, {'blockNum': '0x49fea4', 'uniqueId': '0xa746f53166a621c8cfa218167c7757a06f9aeb9d49bcc1c3fce57cbb402df3f0:log:37', 'hash': '0xa746f53166a621c8cfa218167c7757a06f9aeb9d49bcc1c3fce57cbb402df3f0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x325b004e0471c68e7ffd59936f5b7dfb21603a9f', 'value': 6.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2756cd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:19:50.000Z'}}, {'blockNum': '0x49feb4', 'uniqueId': '0x8e8f4b7543fafd55d1ecfa30e001db1e51aa8913257cccf80f3259b64b8a8764:log:28', 'hash': '0x8e8f4b7543fafd55d1ecfa30e001db1e51aa8913257cccf80f3259b64b8a8764', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'value': 50.002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a08ff40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:24:21.000Z'}}, {'blockNum': '0x49feb6', 'uniqueId': '0x511c367e9ac0e6502c61912e3de978e99b1f22ca756cfd6bd34e9a5ed60fe582:log:62', 'hash': '0x511c367e9ac0e6502c61912e3de978e99b1f22ca756cfd6bd34e9a5ed60fe582', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xd4209ca5eb53a66759ed2fbe921a7a50bf3b0d8e', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:25:34.000Z'}}, {'blockNum': '0x49fec2', 'uniqueId': '0xb09672328933430866b5a8df6fa11d40b16940c06e7d83bb24abd1019e36f1fd:log:29', 'hash': '0xb09672328933430866b5a8df6fa11d40b16940c06e7d83bb24abd1019e36f1fd', 'from': '0xc3c4edaa2538757f5bdb3d1e1bb70cff675d25db', 'to': '0x340209c8975508a8b6750c01ae290db038a275c5', 'value': 16.499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x625779e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:28:37.000Z'}}, {'blockNum': '0x49fec8', 'uniqueId': '0x74cbd6b5021cfce4610ff9511ed8e132d8502d2adeb747a2e675e7bee1dd0dff:log:66', 'hash': '0x74cbd6b5021cfce4610ff9511ed8e132d8502d2adeb747a2e675e7bee1dd0dff', 'from': '0xf87f684f78b97589809fae13018e8376d97455bb', 'to': '0x951ca39f35001cf4b43730442bd607f990522821', 'value': 0.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0112a880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:30:25.000Z'}}, {'blockNum': '0x49fecc', 'uniqueId': '0x7d41ab4ffdcbc797cc0e27c5c23ebe991c69ea4cdd9e7a9ad65e06d9d8899984:log:2', 'hash': '0x7d41ab4ffdcbc797cc0e27c5c23ebe991c69ea4cdd9e7a9ad65e06d9d8899984', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfe7dc10140f4f1f5efeb579e8885f116f843aa3b', 'value': 57.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0158654880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:31:37.000Z'}}, {'blockNum': '0x49fed1', 'uniqueId': '0x90474f55880ff2d3dbf1ad9dbcb08b080098ea2d02919d190063569bc3f50825:log:4', 'hash': '0x90474f55880ff2d3dbf1ad9dbcb08b080098ea2d02919d190063569bc3f50825', 'from': '0x8dc7bb21d651540a4f36b5719c48737d158ef90c', 'to': '0x38984fec4962bb65456554b04be65966ae9742e7', 'value': 245.18671424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05b56d3c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:33:33.000Z'}}, {'blockNum': '0x49fed3', 'uniqueId': '0x129c9a781640e76475d0ef5935f8565a94b6b1b4e2a9889c32850a00522e7a9b:log:19', 'hash': '0x129c9a781640e76475d0ef5935f8565a94b6b1b4e2a9889c32850a00522e7a9b', 'from': '0x340209c8975508a8b6750c01ae290db038a275c5', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 16.499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x625779e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:34:06.000Z'}}, {'blockNum': '0x49fed5', 'uniqueId': '0x35a779d4f2321368ba30a7aa6630b2223805a10b47b1becb809b2c4c686610f0:log:54', 'hash': '0x35a779d4f2321368ba30a7aa6630b2223805a10b47b1becb809b2c4c686610f0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2fef96626f5cf1f333e9cf6bb0e81be1231afd98', 'value': 45.1136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x010ce5e400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:34:18.000Z'}}, {'blockNum': '0x49fed6', 'uniqueId': '0x2a902f80323e7f2239372ca3b0c479d481cd40a9b819f9e99a329c8c579a574f:log:26', 'hash': '0x2a902f80323e7f2239372ca3b0c479d481cd40a9b819f9e99a329c8c579a574f', 'from': '0x0e40324c0a24c148d4f545a9739420b487671c6e', 'to': '0x7390c8d328167ba6432dad960faf3c301ea7d1cf', 'value': 105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0271d94900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:34:24.000Z'}}, {'blockNum': '0x49fedf', 'uniqueId': '0x7b70d70641dfc9eac55f428703353e6b6d57bdf99c896de76b6c673f2ddb035a:log:72', 'hash': '0x7b70d70641dfc9eac55f428703353e6b6d57bdf99c896de76b6c673f2ddb035a', 'from': '0xa98bbb200e21f126ceb9f866e1645c53ceebe91a', 'to': '0xda4f62d390ba0f14035b2ac299508b7eefcfc98f', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:36:45.000Z'}}, {'blockNum': '0x49fee5', 'uniqueId': '0xbc0c13234c60c402ffd3b61a31d101ddc1a00f2a5a86da1c0d558a859813b06b:log:1', 'hash': '0xbc0c13234c60c402ffd3b61a31d101ddc1a00f2a5a86da1c0d558a859813b06b', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x1dbbc44b2b33fdd6c6f7eadf51bebbccb1d6a9e0', 'value': 73.26699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01b4b491df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:38:29.000Z'}}, {'blockNum': '0x49fee8', 'uniqueId': '0x80af908d09f1df8ffd77d32bde200286b0d903d666a6698a50942b23b6d9deb3:log:10', 'hash': '0x80af908d09f1df8ffd77d32bde200286b0d903d666a6698a50942b23b6d9deb3', 'from': '0x03a8920a900b6ff21f2d14763137a32a80f980c1', 'to': '0x2973050902b077d856d653e2c29ee49aee9dcf13', 'value': 65.571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0186d567e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:39:30.000Z'}}, {'blockNum': '0x49fef4', 'uniqueId': '0x7cb0cf7c50f4e974ed75f3e4ad2808db119db0124e867a891c1978ab41689044:log:44', 'hash': '0x7cb0cf7c50f4e974ed75f3e4ad2808db119db0124e867a891c1978ab41689044', 'from': '0xa98bbb200e21f126ceb9f866e1645c53ceebe91a', 'to': '0xda4f62d390ba0f14035b2ac299508b7eefcfc98f', 'value': 50.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012d00e280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:43:03.000Z'}}, {'blockNum': '0x49ff05', 'uniqueId': '0x4a47ee9b6606873ce3b5620bfe6e1d3f185710be4abbc1852c1183c8c6d691e6:log:11', 'hash': '0x4a47ee9b6606873ce3b5620bfe6e1d3f185710be4abbc1852c1183c8c6d691e6', 'from': '0x3f393c413a8550efe98a5568b597659b6c2cdda9', 'to': '0x0af84b6161bb52db32dd958fce647a92ed0f05d8', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:46:34.000Z'}}, {'blockNum': '0x49ff08', 'uniqueId': '0xdb3cc463dc63b98d6a0c5de910f144c07dfedce131cb8706e3a51ae1dfbcd324:log:14', 'hash': '0xdb3cc463dc63b98d6a0c5de910f144c07dfedce131cb8706e3a51ae1dfbcd324', 'from': '0x1dbbc44b2b33fdd6c6f7eadf51bebbccb1d6a9e0', 'to': '0x4bae939b18eee2cf996fee1d5880bcc5baa39195', 'value': 73.26699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01b4b491df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:47:32.000Z'}}, {'blockNum': '0x49ff0a', 'uniqueId': '0x63dc59f643460c8dc6e634964858c327d53527c26f730be807fe5deb8ee20105:log:5', 'hash': '0x63dc59f643460c8dc6e634964858c327d53527c26f730be807fe5deb8ee20105', 'from': '0x62c62b5f6d4ffe12694a1f3662680af75b352caf', 'to': '0x2bfbc7ec6d43089fc137a9cdc55429986e2a553a', 'value': 107.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0281771680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:48:06.000Z'}}, {'blockNum': '0x49ff0c', 'uniqueId': '0x07f80d567b0f7f92adeec78bc33d6445aae5a31d71c7d4009427d32c298d5528:log:89', 'hash': '0x07f80d567b0f7f92adeec78bc33d6445aae5a31d71c7d4009427d32c298d5528', 'from': '0xe54e8f825a35942d99023f4934e5735aa7a13718', 'to': '0x7e44b638307c93978bf65ff7286a3faae8962df3', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:48:49.000Z'}}, {'blockNum': '0x49ff1b', 'uniqueId': '0x96a8a535b5992d43d8d35432b2c0e211e3495b9bf279919acb575cb79c957034:log:113', 'hash': '0x96a8a535b5992d43d8d35432b2c0e211e3495b9bf279919acb575cb79c957034', 'from': '0x3f393c413a8550efe98a5568b597659b6c2cdda9', 'to': '0x0af84b6161bb52db32dd958fce647a92ed0f05d8', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:53:51.000Z'}}, {'blockNum': '0x49ff1f', 'uniqueId': '0x19d1c6963e5c294434e38d0e152275324f64f01f5074edd120b6729b5985a2c9:log:50', 'hash': '0x19d1c6963e5c294434e38d0e152275324f64f01f5074edd120b6729b5985a2c9', 'from': '0x0af84b6161bb52db32dd958fce647a92ed0f05d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T21:55:23.000Z'}}, {'blockNum': '0x49ff3a', 'uniqueId': '0xe6452bf070e9057e7db028e52c861498656996f22077103dd7d08ea96b3c7fa7:log:20', 'hash': '0xe6452bf070e9057e7db028e52c861498656996f22077103dd7d08ea96b3c7fa7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6b923811d8968fe6587a0c06c5271f1f53b8f3c1', 'value': 540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c92a69c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:02:27.000Z'}}, {'blockNum': '0x49ff3d', 'uniqueId': '0x55be72cc7902b89d9660f0be79ec617c1065cb40eb29bbcbcb4467caf55fd31c:log:29', 'hash': '0x55be72cc7902b89d9660f0be79ec617c1065cb40eb29bbcbcb4467caf55fd31c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d69f73b8257e2b388a770eb34e28640a60edc03', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:03:16.000Z'}}, {'blockNum': '0x49ff3d', 'uniqueId': '0x0ca64c33efe221f23797cdc954dec7627b615f0e39049c5dcf959fff4047ea2f:log:75', 'hash': '0x0ca64c33efe221f23797cdc954dec7627b615f0e39049c5dcf959fff4047ea2f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ca204736b4f46076de94d4df2cf5db624238317', 'value': 56.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01511073c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:03:16.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0x01e4560b587dc4ce32d856cf232e59e653ebc7b49222fec7e3701168184fa222:log:10', 'hash': '0x01e4560b587dc4ce32d856cf232e59e653ebc7b49222fec7e3701168184fa222', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1d67d4c68b4003d20ca7c54ef080314260cae5c8', 'value': 142.78334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03530e1630', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0x26dd85bf4748289b81535fb4ed24eedaede3c25cfc0f1b065792e999675378ce:log:51', 'hash': '0x26dd85bf4748289b81535fb4ed24eedaede3c25cfc0f1b065792e999675378ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe6867a5fd9ade14d5f90fcb2a716b629c5e9f4d8', 'value': 13.30648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4f5013c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0xfc86195dc813120fcea1e32ea968834b6a626406eeb4ee8900badbf24d9cb3d7:log:85', 'hash': '0xfc86195dc813120fcea1e32ea968834b6a626406eeb4ee8900badbf24d9cb3d7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd8c20d78c2cff963a692fff2af6599949599c2be', 'value': 25.10467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x95a2afb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0x89c2198e949064e9d1840d9eed3a17fd5bae72a7c5148e146cb171cc64aecc03:log:119', 'hash': '0x89c2198e949064e9d1840d9eed3a17fd5bae72a7c5148e146cb171cc64aecc03', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf4b4f1e73cf81136264ed91092842b86717b50e7', 'value': 11.45559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4447d7d8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff41', 'uniqueId': '0x21e9568c6a09bb11e98ab1296ce31e83f38bb8d4d750aae8f98777fb8f2ebca5:log:152', 'hash': '0x21e9568c6a09bb11e98ab1296ce31e83f38bb8d4d750aae8f98777fb8f2ebca5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x700fcc458148180c68554c85ded7a1d11b0d44fc', 'value': 35.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd4c9e080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:14.000Z'}}, {'blockNum': '0x49ff42', 'uniqueId': '0x0977175aa90baf1a2200ca065bedbc3ee836537acb4b550ab09fc66731485105:log:22', 'hash': '0x0977175aa90baf1a2200ca065bedbc3ee836537acb4b550ab09fc66731485105', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2b4b7465ea3115297e37e0030d78dbc73074620e', 'value': 11.94784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4736f500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:23.000Z'}}, {'blockNum': '0x49ff43', 'uniqueId': '0xd012668fd10c5100364a07ffaaf0132a642bcc9e564b50e0b46d6df6e6266e3c:log:3', 'hash': '0xd012668fd10c5100364a07ffaaf0132a642bcc9e564b50e0b46d6df6e6266e3c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa68c7d09040808ba493672ac90f97eacadcc2e88', 'value': 61.65745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x016f81cd68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:04:38.000Z'}}, {'blockNum': '0x49ff61', 'uniqueId': '0x47f4374bfd2010daa83caf0650a138352e8a799bb0defa45b44c67f6d75e602e:log:57', 'hash': '0x47f4374bfd2010daa83caf0650a138352e8a799bb0defa45b44c67f6d75e602e', 'from': '0x0af84b6161bb52db32dd958fce647a92ed0f05d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:13:30.000Z'}}, {'blockNum': '0x49ff66', 'uniqueId': '0x02ac011775ecfb331155327aacbadbf90898816fa50ee8af616ff081017fcc4a:log:5', 'hash': '0x02ac011775ecfb331155327aacbadbf90898816fa50ee8af616ff081017fcc4a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe348c190ab375cc53352a4ce0603ba3bb03cd225', 'value': 22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x83215600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:14:25.000Z'}}, {'blockNum': '0x49ff6c', 'uniqueId': '0x6a3f4450624dbaa30d2b453747b345dad5397d361e37a122e356f742c259a39e:log:27', 'hash': '0x6a3f4450624dbaa30d2b453747b345dad5397d361e37a122e356f742c259a39e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x9a3d6b710c1f85cb4f44ddb40871d987233b8728', 'value': 9.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3731a380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:16:01.000Z'}}, {'blockNum': '0x49ff7b', 'uniqueId': '0x7d9403dc96ce841771c134d20633becfb335f09a11077e9455f56704f366aa1a:log:38', 'hash': '0x7d9403dc96ce841771c134d20633becfb335f09a11077e9455f56704f366aa1a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf136e69a602247a8ce1a63f6799c7f23604bfc0f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:20:40.000Z'}}, {'blockNum': '0x49ff81', 'uniqueId': '0x2d8d89a81323d2d17e4cf73ebc69c4498ec66d633d3f6bae49bf7ae1dd824d30:log:2', 'hash': '0x2d8d89a81323d2d17e4cf73ebc69c4498ec66d633d3f6bae49bf7ae1dd824d30', 'from': '0xa7e6659520eb663f71dc2d92f03102167ab9485f', 'to': '0x94684a3d6ddcfda04680a3c772203b192f8fe616', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:22:51.000Z'}}, {'blockNum': '0x49ff8d', 'uniqueId': '0xf5e7d9c96976eae18cffc691d057e7b9a8beb734af0986559deeaf2aa0ab8fb7:log:1', 'hash': '0xf5e7d9c96976eae18cffc691d057e7b9a8beb734af0986559deeaf2aa0ab8fb7', 'from': '0x2973050902b077d856d653e2c29ee49aee9dcf13', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 65.571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0186d567e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:27:57.000Z'}}, {'blockNum': '0x49ffa7', 'uniqueId': '0x8198ee9f33d8835f322aa83ee973dc59bdd0ccd70880a77adaef9002fdef3e16:log:60', 'hash': '0x8198ee9f33d8835f322aa83ee973dc59bdd0ccd70880a77adaef9002fdef3e16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb3710e97e8e864eba33f5e28b3d8fe94a94d3156', 'value': 499.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba30a4700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:33:27.000Z'}}, {'blockNum': '0x49ffcd', 'uniqueId': '0x64cee32d17ccb86fd648cfc2734d934f3635254353000906c89bef31f85b08be:log:13', 'hash': '0x64cee32d17ccb86fd648cfc2734d934f3635254353000906c89bef31f85b08be', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf9bb806edbf0059cf74c48805ccda77009ea2fea', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:43:10.000Z'}}, {'blockNum': '0x49ffe6', 'uniqueId': '0xd0fae7a93c3f03a573eb6c4c035da5adecbcce5fe1a5e0e2c0a5b4fab0686b56:log:9', 'hash': '0xd0fae7a93c3f03a573eb6c4c035da5adecbcce5fe1a5e0e2c0a5b4fab0686b56', 'from': '0xa7e6659520eb663f71dc2d92f03102167ab9485f', 'to': '0x94684a3d6ddcfda04680a3c772203b192f8fe616', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:51:32.000Z'}}, {'blockNum': '0x49ffe8', 'uniqueId': '0xb304e51a4e2fe74c3933e16b48291fecf179cfc47acd3d87878afcf5428faa43:log:11', 'hash': '0xb304e51a4e2fe74c3933e16b48291fecf179cfc47acd3d87878afcf5428faa43', 'from': '0x0e81013616379e06a350e632d0df259bfe4bc8e3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xee6b2800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:52:00.000Z'}}, {'blockNum': '0x49ffff', 'uniqueId': '0x53195b3ffde542e229ef7e57a6cb1e037abb65a279d5afbcef3b5c03d4e85db0:log:34', 'hash': '0x53195b3ffde542e229ef7e57a6cb1e037abb65a279d5afbcef3b5c03d4e85db0', 'from': '0xfd53425224057d036b4e9f00ed7b2cad013b3607', 'to': '0x21c991e3666704201bb3d49dbe0e48b22a361708', 'value': 128.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02fe37bbc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:58:21.000Z'}}, {'blockNum': '0x4a0004', 'uniqueId': '0x3df78e31abb3f77b2f80191b70fbb6f89ba996e0c0109f3ccbcad8a07978f01b:log:3', 'hash': '0x3df78e31abb3f77b2f80191b70fbb6f89ba996e0c0109f3ccbcad8a07978f01b', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xa6ce7e4a3fa99623eeb3f4245cca462913e5f39e', 'value': 7.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf07ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T22:59:04.000Z'}}, {'blockNum': '0x4a000c', 'uniqueId': '0xb1f1cc4a0c79d6e47ae8b9c5935ab8aa5472ac11cbfcca56ce3696c82a3d9d8d:log:10', 'hash': '0xb1f1cc4a0c79d6e47ae8b9c5935ab8aa5472ac11cbfcca56ce3696c82a3d9d8d', 'from': '0xa6ce7e4a3fa99623eeb3f4245cca462913e5f39e', 'to': '0xeb4c7798e03997e3236ed4f8fcd0d0f6d29c5987', 'value': 7.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf07ff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:01:20.000Z'}}, {'blockNum': '0x4a000e', 'uniqueId': '0x048a62582fdfd2d069a928145420d24fba8d9abb2bf4c4fed3c870327dc88e78:log:2', 'hash': '0x048a62582fdfd2d069a928145420d24fba8d9abb2bf4c4fed3c870327dc88e78', 'from': '0xdfce88f728f5abd4040f177cb84a4fc89ff0425d', 'to': '0xad901097769914ebb8a5d6ab9a21bb2ebc5d3c17', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbebc2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:01:56.000Z'}}, {'blockNum': '0x4a0010', 'uniqueId': '0xfcd1293f462f86ca48a765452a685efcfa4f4a058ff017208cd09e2e4b51720d:log:15', 'hash': '0xfcd1293f462f86ca48a765452a685efcfa4f4a058ff017208cd09e2e4b51720d', 'from': '0x17806e8e5bf77dff03742cbd6b51ac6b1f98e973', 'to': '0xb0f3e13abd96711ceffc01a22a88aa4bf81d9783', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:02:32.000Z'}}, {'blockNum': '0x4a0014', 'uniqueId': '0xfd0f6051a484343c875362b69e65b4b5ef53e21d323069c71e8c866cdb805ca3:log:5', 'hash': '0xfd0f6051a484343c875362b69e65b4b5ef53e21d323069c71e8c866cdb805ca3', 'from': '0xb3809ef0c7851634b3b82956da687f997217e550', 'to': '0x70943350008b12ff9f45da2d19ec494c028dbe85', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:03:18.000Z'}}, {'blockNum': '0x4a0019', 'uniqueId': '0xc8a06ffac02a16ab5321c4a429a667b3865b1bec1304eb992096133311edaf7e:log:16', 'hash': '0xc8a06ffac02a16ab5321c4a429a667b3865b1bec1304eb992096133311edaf7e', 'from': '0x09088786cd2cb358bacb2fa7b90e0dd68f523168', 'to': '0xd3c61fa188ca510e28747391b4c2cb044b247426', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:04:52.000Z'}}, {'blockNum': '0x4a001c', 'uniqueId': '0xe6e002bec00a7da710af43c0f86c59c069ccd1df981391a4a8e7268e39f56e7c:log:3', 'hash': '0xe6e002bec00a7da710af43c0f86c59c069ccd1df981391a4a8e7268e39f56e7c', 'from': '0x04cf3aebd987aa311fc9f51bc4991638a5de4a3b', 'to': '0x83d0fb73b80e37c5aef847218dac5d850abae2e5', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:05:33.000Z'}}, {'blockNum': '0x4a002f', 'uniqueId': '0xe8b6c34c2f3816315b710b74de8b5c394c6e06dcee5a5c7d8e7c93d602bf4b23:log:27', 'hash': '0xe8b6c34c2f3816315b710b74de8b5c394c6e06dcee5a5c7d8e7c93d602bf4b23', 'from': '0x70943350008b12ff9f45da2d19ec494c028dbe85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:10:15.000Z'}}, {'blockNum': '0x4a002f', 'uniqueId': '0xbe2d35d72e73f4ece75c83a06761bdf82af5c0c5a7cb6ec21fba4464034ef45f:log:33', 'hash': '0xbe2d35d72e73f4ece75c83a06761bdf82af5c0c5a7cb6ec21fba4464034ef45f', 'from': '0xb0f3e13abd96711ceffc01a22a88aa4bf81d9783', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:10:15.000Z'}}, {'blockNum': '0x4a002f', 'uniqueId': '0x668ff742a47a299ec72c96d3bc7ce6700bc8a48986842363a6682f7e6a8008a6:log:35', 'hash': '0x668ff742a47a299ec72c96d3bc7ce6700bc8a48986842363a6682f7e6a8008a6', 'from': '0xad901097769914ebb8a5d6ab9a21bb2ebc5d3c17', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbebc2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:10:15.000Z'}}, {'blockNum': '0x4a0033', 'uniqueId': '0xf2689f4e1ef7d30caa452437612540e76a833741b58b085dc478e3b14b91d7ea:log:7', 'hash': '0xf2689f4e1ef7d30caa452437612540e76a833741b58b085dc478e3b14b91d7ea', 'from': '0x83d0fb73b80e37c5aef847218dac5d850abae2e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:11:07.000Z'}}, {'blockNum': '0x4a0041', 'uniqueId': '0x666347ff885459904a5a1b7157f6f2f7a631e1478d3bc6af523089430b885ed8:log:19', 'hash': '0x666347ff885459904a5a1b7157f6f2f7a631e1478d3bc6af523089430b885ed8', 'from': '0xf2fcb844b59348fe7f07de5dd3875ccd60ab63b4', 'to': '0x5d28d57411588bdd4ccd91fae76ffc97d656e5be', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:14:13.000Z'}}, {'blockNum': '0x4a0044', 'uniqueId': '0xc98a9ffd8952e8e97f006a4f4a0145c73575ba7798dcc589229f4c05b4e9bd34:log:35', 'hash': '0xc98a9ffd8952e8e97f006a4f4a0145c73575ba7798dcc589229f4c05b4e9bd34', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2548876d60fb398c52af22fbb0fcf06ad4148783', 'value': 1.914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b688840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:15:16.000Z'}}, {'blockNum': '0x4a004a', 'uniqueId': '0x0ac139f07b63bb5b73870485bc58cf9ff79d1c103b5d17ca602df9ccf86a9fbd:log:5', 'hash': '0x0ac139f07b63bb5b73870485bc58cf9ff79d1c103b5d17ca602df9ccf86a9fbd', 'from': '0x09088786cd2cb358bacb2fa7b90e0dd68f523168', 'to': '0xd3c61fa188ca510e28747391b4c2cb044b247426', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:15:56.000Z'}}, {'blockNum': '0x4a0054', 'uniqueId': '0x9633fa32c2080aa508c5f4485ca7e6a9fac21dfd434cd3eb4ac2c2a06781dbc3:log:0', 'hash': '0x9633fa32c2080aa508c5f4485ca7e6a9fac21dfd434cd3eb4ac2c2a06781dbc3', 'from': '0xdf48f1586f07dc4f6d02192cad51e8d56401864e', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:18:05.000Z'}}, {'blockNum': '0x4a005a', 'uniqueId': '0xb28af4f92eb5cfe3c24d6a6a8322b276cdb2be76fae8b06c3471dbda5a745535:log:26', 'hash': '0xb28af4f92eb5cfe3c24d6a6a8322b276cdb2be76fae8b06c3471dbda5a745535', 'from': '0x5d28d57411588bdd4ccd91fae76ffc97d656e5be', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:20:17.000Z'}}, {'blockNum': '0x4a0080', 'uniqueId': '0xd51975f1079a65542c55049d0575a4f59e28dc035a2b00c87ed1a0dc8faa1440:log:10', 'hash': '0xd51975f1079a65542c55049d0575a4f59e28dc035a2b00c87ed1a0dc8faa1440', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0dbd11966a196bdf9bc72ce0d997560fdfc48533', 'value': 1.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aba9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:31:08.000Z'}}, {'blockNum': '0x4a0081', 'uniqueId': '0x2b513100798aa074a185af858bb1045d9a2c03200073624c7a2404b440d8a5c4:log:63', 'hash': '0x2b513100798aa074a185af858bb1045d9a2c03200073624c7a2404b440d8a5c4', 'from': '0x1ce7ae555139c5ef5a57cc8d814a867ee6ee33d8', 'to': '0xb0c8851d241285f78a8ca7f97bb09252d2387552', 'value': 4.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1908b100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:31:41.000Z'}}, {'blockNum': '0x4a0088', 'uniqueId': '0x3444648f872a7a23906ef9fae80154cf41e5021399e3c3a2f7e17acc7fa3d589:log:41', 'hash': '0x3444648f872a7a23906ef9fae80154cf41e5021399e3c3a2f7e17acc7fa3d589', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x710d468a2ad7a2a2a59484aaf1c5e395ed453450', 'value': 150.605545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0381add304', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:33:12.000Z'}}, {'blockNum': '0x4a008c', 'uniqueId': '0x22cc6093ccc28c5f27411796171f1dbe96aed2b94420e9014e33661901740c95:log:18', 'hash': '0x22cc6093ccc28c5f27411796171f1dbe96aed2b94420e9014e33661901740c95', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf2942df1196d28c6eac39815f6d540aa5e19a2eb', 'value': 0.939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0598cce0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:34:12.000Z'}}, {'blockNum': '0x4a008d', 'uniqueId': '0x77f2fbab09142edf23bc8f99195d0bff78f003f80bd7017f03c1cab0f03b0a7a:log:106', 'hash': '0x77f2fbab09142edf23bc8f99195d0bff78f003f80bd7017f03c1cab0f03b0a7a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9e1ca65864ebdbcfde446ddbadf1b1f08c73f3dc', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:34:19.000Z'}}, {'blockNum': '0x4a009a', 'uniqueId': '0xe2e298b77785bf8524f3a869f1b22a9588fd7b029086e88f8e13da68b26b5c0f:log:6', 'hash': '0xe2e298b77785bf8524f3a869f1b22a9588fd7b029086e88f8e13da68b26b5c0f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x160836c297c457439b60c51140eddd530d69a33a', 'value': 49.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01288879c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:37:16.000Z'}}, {'blockNum': '0x4a009a', 'uniqueId': '0xa69a5c45128d0fa4df2cbd1b3cd2f8f46318d4532ece36b9500114bdb9fb817c:log:64', 'hash': '0xa69a5c45128d0fa4df2cbd1b3cd2f8f46318d4532ece36b9500114bdb9fb817c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0dbd11966a196bdf9bc72ce0d997560fdfc48533', 'value': 14.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x58370200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:37:16.000Z'}}, {'blockNum': '0x4a00b4', 'uniqueId': '0xc99bd66baadda9c09792a7ec2b13fda959c93134cfef8237c07f71dafe793738:log:15', 'hash': '0xc99bd66baadda9c09792a7ec2b13fda959c93134cfef8237c07f71dafe793738', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3cbbbff83dc3691ff750f2d6206d57ae8967b88b', 'value': 218.31562939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05154336bb', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:47:26.000Z'}}, {'blockNum': '0x4a00b5', 'uniqueId': '0xa5def3caa3033a7208298ad21bd9fcb2a566ca1479836f190ce95bc3d8b7abc4:log:76', 'hash': '0xa5def3caa3033a7208298ad21bd9fcb2a566ca1479836f190ce95bc3d8b7abc4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf9a76a99614c382b3f465aa62509d0561a15fa8c', 'value': 55.43431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x014a6a0b58', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:47:52.000Z'}}, {'blockNum': '0x4a00cc', 'uniqueId': '0x88af7b6eb79ebc12b71ef69d9fe6542e6850303e3de57d75e9141c865915ec05:log:12', 'hash': '0x88af7b6eb79ebc12b71ef69d9fe6542e6850303e3de57d75e9141c865915ec05', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x3cbbbff83dc3691ff750f2d6206d57ae8967b88b', 'value': 0.67499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0405f7df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:52:38.000Z'}}, {'blockNum': '0x4a00e3', 'uniqueId': '0xd56a4887549d98e5572cc36db989c45123940321fb2c115122226032cfc90f9d:log:55', 'hash': '0xd56a4887549d98e5572cc36db989c45123940321fb2c115122226032cfc90f9d', 'from': '0xb0c8851d241285f78a8ca7f97bb09252d2387552', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 4.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1908b100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-03T23:57:16.000Z'}}, {'blockNum': '0x4a00f2', 'uniqueId': '0xdcbd3c006e936abdee68d73cf01c7c929d0db21a579b55263751892c5423aad7:log:34', 'hash': '0xdcbd3c006e936abdee68d73cf01c7c929d0db21a579b55263751892c5423aad7', 'from': '0x2e2e8f5e95ea026586e15fc6250695483f4fe0ee', 'to': '0xd35a932ca0aff814f88863f6ed02adf22e4a426a', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:10.000Z'}}, {'blockNum': '0x4a00f5', 'uniqueId': '0x3fcd2dfde0b8309d364ff3a3e1068bc3b3b3132b64b37c2aa7aab9f088c5f5ef:log:19', 'hash': '0x3fcd2dfde0b8309d364ff3a3e1068bc3b3b3132b64b37c2aa7aab9f088c5f5ef', 'from': '0x31df4bef162a2b78bce63b46a5e77f2eb0a0ea4d', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 298.07521739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f0aaafcb', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:37.000Z'}}, {'blockNum': '0x4a00f5', 'uniqueId': '0x79ed77faac72110609024a9f7faaf5df7c77f87fc1579410c701398dd1439bbc:log:22', 'hash': '0x79ed77faac72110609024a9f7faaf5df7c77f87fc1579410c701398dd1439bbc', 'from': '0x6d02e64891678bba120a6387223d49e7ddaa81c6', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:37.000Z'}}, {'blockNum': '0x4a00f6', 'uniqueId': '0x809d85374484fe7c7deb04e71917a52cbe04fb59aa31dafc0a8835f7c024b0f9:log:22', 'hash': '0x809d85374484fe7c7deb04e71917a52cbe04fb59aa31dafc0a8835f7c024b0f9', 'from': '0x8d89b55f18bb3d557fdf3924893fc7547b001439', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 141.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034b67dd80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:49.000Z'}}, {'blockNum': '0x4a00f6', 'uniqueId': '0x2188af30d1a2b26243241ca6e9420c59c2001c6d563322ba00afa595af4fafc6:log:27', 'hash': '0x2188af30d1a2b26243241ca6e9420c59c2001c6d563322ba00afa595af4fafc6', 'from': '0x2495c552a3a68b2909da9457ece8d19ae146e79a', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 137.41061777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033307f691', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:49.000Z'}}, {'blockNum': '0x4a00f6', 'uniqueId': '0x0acd661636ed8200b11d3ec85bb9b4693e0fcd0cabcb069701bd61fd0529e0d4:log:30', 'hash': '0x0acd661636ed8200b11d3ec85bb9b4693e0fcd0cabcb069701bd61fd0529e0d4', 'from': '0xe25690a961a178efa4e69e95e5d638178b8261f8', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 135.41495556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032722d304', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:01:49.000Z'}}, {'blockNum': '0x4a00f7', 'uniqueId': '0x2171c973b12fa95541f9810fcf6d7abf1cf4042d9c6e1f72eda6daabfb73d1bc:log:68', 'hash': '0x2171c973b12fa95541f9810fcf6d7abf1cf4042d9c6e1f72eda6daabfb73d1bc', 'from': '0x474e9c1b2d3bff6d4d3c3d02553a84593b213f6f', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 115.849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b2838ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:02:33.000Z'}}, {'blockNum': '0x4a00f9', 'uniqueId': '0x800f9a3373827b19e48639df14ab479a7294525b8616274f89418ec5fbbe199d:log:35', 'hash': '0x800f9a3373827b19e48639df14ab479a7294525b8616274f89418ec5fbbe199d', 'from': '0xb06ec0ef43ed41476d62fb82e99acd931196d7cf', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e90edd00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:12.000Z'}}, {'blockNum': '0x4a00f9', 'uniqueId': '0xa19d39fa5cd76155e1f7ff61169ce21b87b3b8038206fb883a6a6b7bd73252e7:log:40', 'hash': '0xa19d39fa5cd76155e1f7ff61169ce21b87b3b8038206fb883a6a6b7bd73252e7', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x309de13e6a5b13d6d6faebebf16ae6117dd55411', 'value': 76.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c9c38000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:12.000Z'}}, {'blockNum': '0x4a00f9', 'uniqueId': '0xf8dc54b7ce30540b46ad12787318936c683804d82836817c5c0f2fb549a3ad38:log:69', 'hash': '0xf8dc54b7ce30540b46ad12787318936c683804d82836817c5c0f2fb549a3ad38', 'from': '0x07c382c4070d7c3783bd7d00b604af61bab03069', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 79.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01db2b1100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:12.000Z'}}, {'blockNum': '0x4a00f9', 'uniqueId': '0x509540b939aaaaa0baaadfcb9e020bc38aa590d86c173705379d1dd6164f495d:log:81', 'hash': '0x509540b939aaaaa0baaadfcb9e020bc38aa590d86c173705379d1dd6164f495d', 'from': '0xb059960fce15a1850c25f2910d7959dd2b073099', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 66.8894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018eb11fe0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:12.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0x965634705b839eca15b8e8cce9664352b91aa87abb7b010c2008db9032a53aa7:log:45', 'hash': '0x965634705b839eca15b8e8cce9664352b91aa87abb7b010c2008db9032a53aa7', 'from': '0x7390c8d328167ba6432dad960faf3c301ea7d1cf', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0271d94900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0x0d7df5c741e6ca63f3bdee9be0d7809dfa219785b58e4b3a22f805432925a0ff:log:51', 'hash': '0x0d7df5c741e6ca63f3bdee9be0d7809dfa219785b58e4b3a22f805432925a0ff', 'from': '0x7a664e0ce67fe8c0779d467ee8a4ac236b65f86a', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 57.54555177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0156ff8b29', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0xcb2e5d80d05f4db6ac6822162b8f964ef2e242e2af99bf1f95c67646de46f803:log:75', 'hash': '0xcb2e5d80d05f4db6ac6822162b8f964ef2e242e2af99bf1f95c67646de46f803', 'from': '0x0e20e410d81664f04d0ca3fccc350907bc8fc50b', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0xf22441af8413070d001d38772125f91bcdd33319b769afb6acf9c039b797283b:log:79', 'hash': '0xf22441af8413070d001d38772125f91bcdd33319b769afb6acf9c039b797283b', 'from': '0xc5232b2ee1c249f2cbbeedf5335f753922f49b95', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0x9c57b279004648a1d7ff16e10a218362605ab18529e54f39ea6f7aa51e4649b3:log:83', 'hash': '0x9c57b279004648a1d7ff16e10a218362605ab18529e54f39ea6f7aa51e4649b3', 'from': '0xfc8a75a3e7df41a02a9f6f71f747b15c847667c8', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011e1a3000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fa', 'uniqueId': '0xea852a2a50bae071a2dc53daee0117ee2f01b071246ef08da7698a1fbd499af9:log:88', 'hash': '0xea852a2a50bae071a2dc53daee0117ee2f01b071246ef08da7698a1fbd499af9', 'from': '0x599d56e3d0cc5e00adb4515356693a28e90584c0', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 43.84571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0105573e78', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:03:33.000Z'}}, {'blockNum': '0x4a00fc', 'uniqueId': '0x0dfa196406b3ea69f565aac18c942af7d31573c560b0375949be09cfd3ac97ff:log:47', 'hash': '0x0dfa196406b3ea69f565aac18c942af7d31573c560b0375949be09cfd3ac97ff', 'from': '0x211497f2a87da1b426564dd62b9a36ae5086ec27', 'to': '0x40c33681ef8bb5a5b5b507f9252fced8afb3b191', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:04:12.000Z'}}, {'blockNum': '0x4a00fd', 'uniqueId': '0x192090de35d2c42e004bcb2876891fc7a67023435a8dc16b30ed47c182f9bf00:log:53', 'hash': '0x192090de35d2c42e004bcb2876891fc7a67023435a8dc16b30ed47c182f9bf00', 'from': '0x20f4a5d0695fb5a8744924e8f05da01cd04774ee', 'to': '0x4512106a07ed9a7e2ea66c4c63a32ab31b57f381', 'value': 69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019b45a500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:04:26.000Z'}}, {'blockNum': '0x4a0100', 'uniqueId': '0x857c37d8492f5915af82f97ca5446648a8473146ce157b237f6b6e76b11c2235:log:57', 'hash': '0x857c37d8492f5915af82f97ca5446648a8473146ce157b237f6b6e76b11c2235', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 19.88196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x768176a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:05:30.000Z'}}, {'blockNum': '0x4a0119', 'uniqueId': '0x15a1baee5ec52d9af2c275593ae5781de38fe495a5e6a07cea75e30e4924ab99:log:57', 'hash': '0x15a1baee5ec52d9af2c275593ae5781de38fe495a5e6a07cea75e30e4924ab99', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xe2a5b2384a70b2f53036cc0bed974d00b8fb5147', 'value': 23.98912333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8efc7f4d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:11:55.000Z'}}, {'blockNum': '0x4a0123', 'uniqueId': '0x4a97f56e6effbbcea1a31ae1c383cc760aae91a16b2240d6f807cd987ef84d0b:log:34', 'hash': '0x4a97f56e6effbbcea1a31ae1c383cc760aae91a16b2240d6f807cd987ef84d0b', 'from': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:14:30.000Z'}}, {'blockNum': '0x4a0125', 'uniqueId': '0x51ac05001c4cb8aca9bc7abfad0191c5b5bebfe1f0e38b26d05e7dcd6d832d62:log:43', 'hash': '0x51ac05001c4cb8aca9bc7abfad0191c5b5bebfe1f0e38b26d05e7dcd6d832d62', 'from': '0x211497f2a87da1b426564dd62b9a36ae5086ec27', 'to': '0x40c33681ef8bb5a5b5b507f9252fced8afb3b191', 'value': 211.786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ee57ca40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:15:12.000Z'}}, {'blockNum': '0x4a0129', 'uniqueId': '0x85c01ec3142bdad8461a3953e2707e2e2c298db45aa0977c0acab88bd8a8db4f:log:44', 'hash': '0x85c01ec3142bdad8461a3953e2707e2e2c298db45aa0977c0acab88bd8a8db4f', 'from': '0xc063c4f10193cc256f01ef5831c851c96d33e26c', 'to': '0x8ed1bf47b979385be43b5e0be5a39c2afddcd696', 'value': 12.84675979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4c92998b', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:16:37.000Z'}}, {'blockNum': '0x4a0131', 'uniqueId': '0x9a4940043512e80d14d8ab409d5a576468026506de892b1a806e4ca5aaf4ddee:log:7', 'hash': '0x9a4940043512e80d14d8ab409d5a576468026506de892b1a806e4ca5aaf4ddee', 'from': '0xa49fdb01b57e943999aade25262cca6fc7f1b94f', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 39.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xede4e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:19:36.000Z'}}, {'blockNum': '0x4a0139', 'uniqueId': '0x02192e9b09cf3be06f7d6f3145c6c7d02b35f4944885420d019236061e22acd4:log:2', 'hash': '0x02192e9b09cf3be06f7d6f3145c6c7d02b35f4944885420d019236061e22acd4', 'from': '0xde36bd8b28afe22467ee7f04c15fd090de44a922', 'to': '0xa08b6d2e18c6e78fcca0b90b6467e42b69cfae9c', 'value': 450.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a7a44c440', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:21:47.000Z'}}, {'blockNum': '0x4a0146', 'uniqueId': '0x532490f7823d92453b0a73921bb359cd74a22d65073b4f142facc9ecdccd6088:log:21', 'hash': '0x532490f7823d92453b0a73921bb359cd74a22d65073b4f142facc9ecdccd6088', 'from': '0xd35a932ca0aff814f88863f6ed02adf22e4a426a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:25:42.000Z'}}, {'blockNum': '0x4a0149', 'uniqueId': '0x1849ebf5951365a2f1252afb7a35c9629aba6f238fc7845346d47aae9bf79493:log:9', 'hash': '0x1849ebf5951365a2f1252afb7a35c9629aba6f238fc7845346d47aae9bf79493', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x898efa55ce5ccec7efad8c7b77204edeb8847961', 'value': 299.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06faf27f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:26:40.000Z'}}, {'blockNum': '0x4a014c', 'uniqueId': '0xaa0e7d668d4411094d31aee7f639b5dd900e2f145893103305368a8c2e491426:log:0', 'hash': '0xaa0e7d668d4411094d31aee7f639b5dd900e2f145893103305368a8c2e491426', 'from': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 18.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6e44c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:27:13.000Z'}}, {'blockNum': '0x4a0152', 'uniqueId': '0x4b27994fa09f1a03942bce03949e42f3e86289e14dfee6651104a92320544e1d:log:64', 'hash': '0x4b27994fa09f1a03942bce03949e42f3e86289e14dfee6651104a92320544e1d', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 145.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0365092500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:28:29.000Z'}}, {'blockNum': '0x4a0155', 'uniqueId': '0xe319babc7771cbb2f1585a1ef9daac44501bc8a33228127ed167e8d46d3dfbdc:log:1', 'hash': '0xe319babc7771cbb2f1585a1ef9daac44501bc8a33228127ed167e8d46d3dfbdc', 'from': '0x80e3d5734fc29dfcede04130ffbbb02a98df3531', 'to': '0x4aa7170114287b5e767aa07e1a4caca04f130704', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:29:09.000Z'}}, {'blockNum': '0x4a0158', 'uniqueId': '0xd59a8a1c5fc31c1fc7897a6b0a52b808e9698a3fa40e6e00cc6b802e0ffe626b:log:10', 'hash': '0xd59a8a1c5fc31c1fc7897a6b0a52b808e9698a3fa40e6e00cc6b802e0ffe626b', 'from': '0x8e6690b1a607ab8ff549a0e52ae6b259f0148dfb', 'to': '0xecc621120cb00a079a91bb3c4b59718e60cf59a1', 'value': 176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04190ab000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:29:52.000Z'}}, {'blockNum': '0x4a0159', 'uniqueId': '0x780fb6f5a82f54ce80834b0b4c46ee691a8415a989a9ba7b22f434a063427f5c:log:44', 'hash': '0x780fb6f5a82f54ce80834b0b4c46ee691a8415a989a9ba7b22f434a063427f5c', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 145.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0365092500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:10.000Z'}}, {'blockNum': '0x4a0159', 'uniqueId': '0x072e2460b496d6904921992df2ad0ccad22c09f46a700eaa7b2e27ac398f55d0:log:50', 'hash': '0x072e2460b496d6904921992df2ad0ccad22c09f46a700eaa7b2e27ac398f55d0', 'from': '0xa08b6d2e18c6e78fcca0b90b6467e42b69cfae9c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 450.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a7a44c440', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:10.000Z'}}, {'blockNum': '0x4a015c', 'uniqueId': '0xedaa2e7e25e24827bf0e99f9a1cc0e82515382605db83442ef466aee53f16ccc:log:25', 'hash': '0xedaa2e7e25e24827bf0e99f9a1cc0e82515382605db83442ef466aee53f16ccc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x85b5e97802e148f6ab9dc7ccc60dba1916903d2d', 'value': 20.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7bfa4800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:34.000Z'}}, {'blockNum': '0x4a015c', 'uniqueId': '0x4e7701e212dc8dfe475d0567131bcdc749bb7e133119ce4a1b542650820ece96:log:66', 'hash': '0x4e7701e212dc8dfe475d0567131bcdc749bb7e133119ce4a1b542650820ece96', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:34.000Z'}}, {'blockNum': '0x4a015c', 'uniqueId': '0x823aa63597d5804a5fcf057a40d342e1373a6963e9ef67b219e44166428c6779:log:120', 'hash': '0x823aa63597d5804a5fcf057a40d342e1373a6963e9ef67b219e44166428c6779', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe8eb055a7b41d071403d03989a574b84debb4f28', 'value': 52.1476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0136d2ec40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:30:34.000Z'}}, {'blockNum': '0x4a0160', 'uniqueId': '0x7a6234ab1645b15d085b34128937e4113424840a79a4690f0ef3686e203401ab:log:33', 'hash': '0x7a6234ab1645b15d085b34128937e4113424840a79a4690f0ef3686e203401ab', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024e160300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:32:11.000Z'}}, {'blockNum': '0x4a0173', 'uniqueId': '0xde5592042b411ddc5ce8f3afb1eb5eaa9522ad197f7db7e247e101fd7f1e357f:log:66', 'hash': '0xde5592042b411ddc5ce8f3afb1eb5eaa9522ad197f7db7e247e101fd7f1e357f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc84623e8bcd7ad3fed1b638e38f66065528c857f', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:37:44.000Z'}}, {'blockNum': '0x4a0183', 'uniqueId': '0xe6f41532d066cc3f65712b6ae3a0ff4c577f36f06df577adbe2b61c47f3158fe:log:0', 'hash': '0xe6f41532d066cc3f65712b6ae3a0ff4c577f36f06df577adbe2b61c47f3158fe', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8fb14159afaa32f827269be9b2865bb05ec8d040', 'value': 14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53724e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:41:30.000Z'}}, {'blockNum': '0x4a0186', 'uniqueId': '0xf435bad7798f97bac55e6819074675395c393d4e6592f33ec5f72ea2c3a555dd:log:44', 'hash': '0xf435bad7798f97bac55e6819074675395c393d4e6592f33ec5f72ea2c3a555dd', 'from': '0xecc621120cb00a079a91bb3c4b59718e60cf59a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04190ab000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:41:57.000Z'}}, {'blockNum': '0x4a0198', 'uniqueId': '0xe8596114d3d6ccbff7b60029af58cb929653d5444863f0014249bf33cfd03e2f:log:19', 'hash': '0xe8596114d3d6ccbff7b60029af58cb929653d5444863f0014249bf33cfd03e2f', 'from': '0x9a3d6b710c1f85cb4f44ddb40871d987233b8728', 'to': '0xa8e535aec2671ba9a22bd96ea2568f5739f1d6c7', 'value': 9.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3731a380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:47:53.000Z'}}, {'blockNum': '0x4a0198', 'uniqueId': '0x43228109378886a9d9de4444f546f11319fd177cf1a305111874d6cab107d96d:log:20', 'hash': '0x43228109378886a9d9de4444f546f11319fd177cf1a305111874d6cab107d96d', 'from': '0x21e729ca55cd726233ebbddb4e41de4ab6c72d0b', 'to': '0x14066b63024ce80131cea92b61a934c056b6bacb', 'value': 494.20657955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b81b36523', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:47:53.000Z'}}, {'blockNum': '0x4a01aa', 'uniqueId': '0x3e804a2dd70be556f9ec5d4a3f98f84d5b1da0d0a3124a8159647cda07151c20:log:10', 'hash': '0x3e804a2dd70be556f9ec5d4a3f98f84d5b1da0d0a3124a8159647cda07151c20', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xaa89f1e9a51a9604e4bf456ea57bc741b906d36f', 'value': 76.878705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ca3b9824', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:52:40.000Z'}}, {'blockNum': '0x4a01b3', 'uniqueId': '0x86bae71da83e7ce374a9b31052288298cc8536bcd4e70e3eb07867e7024cdc2a:log:18', 'hash': '0x86bae71da83e7ce374a9b31052288298cc8536bcd4e70e3eb07867e7024cdc2a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:55:07.000Z'}}, {'blockNum': '0x4a01b5', 'uniqueId': '0x5788557fad29b310c580144731e117efe242a42348a3d06a57fab608e91f572f:log:3', 'hash': '0x5788557fad29b310c580144731e117efe242a42348a3d06a57fab608e91f572f', 'from': '0x2a67a073a4dc54f4a3eae0a9d3227c8181db1a35', 'to': '0x66158ff54502be9db9b809e03223ebdc06f46374', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:55:23.000Z'}}, {'blockNum': '0x4a01c1', 'uniqueId': '0x6055cbbabe7ecddd4f8c4b2b91f25b412c04182cb052982bd5129f696772de54:log:23', 'hash': '0x6055cbbabe7ecddd4f8c4b2b91f25b412c04182cb052982bd5129f696772de54', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:58:00.000Z'}}, {'blockNum': '0x4a01c4', 'uniqueId': '0x1a8f2c2abc5d9cff132e3c8b510d5f6b96a21136672251fb19f41f746189ffae:log:6', 'hash': '0x1a8f2c2abc5d9cff132e3c8b510d5f6b96a21136672251fb19f41f746189ffae', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 80.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01e069d700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:58:37.000Z'}}, {'blockNum': '0x4a01c7', 'uniqueId': '0x94367ee71fcbe3db7474b84692919f23c7adb66bda7fe233625e3ec70705e924:log:12', 'hash': '0x94367ee71fcbe3db7474b84692919f23c7adb66bda7fe233625e3ec70705e924', 'from': '0x64f20243ca2840ea23c575dc4d27a3622de699aa', 'to': '0x297bbdf2c7d2c826ed058ce335d30b498e4f0f49', 'value': 40.17819999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xef7b115f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T00:59:12.000Z'}}, {'blockNum': '0x4a01cf', 'uniqueId': '0x2128b2c64e91c0979177b1784da6ace39448ea6fb47113fe128294acae1e5bc8:log:63', 'hash': '0x2128b2c64e91c0979177b1784da6ace39448ea6fb47113fe128294acae1e5bc8', 'from': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01e069d700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:01:17.000Z'}}, {'blockNum': '0x4a01d6', 'uniqueId': '0x57b7d969ba0c0937ac30444ffbec506de08735aef59a63f0374baf5c2f0b96cd:log:44', 'hash': '0x57b7d969ba0c0937ac30444ffbec506de08735aef59a63f0374baf5c2f0b96cd', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'value': 49.88989413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01295defe5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:03:18.000Z'}}, {'blockNum': '0x4a01da', 'uniqueId': '0x9f17f98b1ffee2b08d5f53d90d8bf2540ef35cd872cf771c0d239927b597942c:log:2', 'hash': '0x9f17f98b1ffee2b08d5f53d90d8bf2540ef35cd872cf771c0d239927b597942c', 'from': '0x8e6690b1a607ab8ff549a0e52ae6b259f0148dfb', 'to': '0x332e3b5a256223ab9b422fb59e17ac4bb4a92a89', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:03:54.000Z'}}, {'blockNum': '0x4a01db', 'uniqueId': '0x07df570cee0d95b5a8b9458c91595591cb735f00a5bb4843dce46044779da8a3:log:23', 'hash': '0x07df570cee0d95b5a8b9458c91595591cb735f00a5bb4843dce46044779da8a3', 'from': '0xdbc59117313953d7b5f67db0549f96647c959b8b', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x35a4e900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:04:02.000Z'}}, {'blockNum': '0x4a01dd', 'uniqueId': '0xbb643bbe14e4d7e1cef7616c983af03f24e4fd6c0151ae7b5a6ab92ee2fc152b:log:1', 'hash': '0xbb643bbe14e4d7e1cef7616c983af03f24e4fd6c0151ae7b5a6ab92ee2fc152b', 'from': '0xac2bdd5ccded98c539cdc138ba585d577180513f', 'to': '0x875a04f31755de6ceae06d9f065a74aec7b966dd', 'value': 182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x043ccdf600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:04:16.000Z'}}, {'blockNum': '0x4a01e0', 'uniqueId': '0x429cec0986e1ba04da42aa57b87e47f7d1e21a057ce4bfdb86366fcd1f0fa076:log:22', 'hash': '0x429cec0986e1ba04da42aa57b87e47f7d1e21a057ce4bfdb86366fcd1f0fa076', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'value': 391.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x091caceac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:04:31.000Z'}}, {'blockNum': '0x4a01e2', 'uniqueId': '0xd488e8154487d04a720c3c866f52b0c1876bb7c46ce851aa0a4e6c6057608692:log:13', 'hash': '0xd488e8154487d04a720c3c866f52b0c1876bb7c46ce851aa0a4e6c6057608692', 'from': '0x557081d14fc70b9ab03bdd1d677c9abaa2c7bb25', 'to': '0xe5c0fdf9a41f79f2b46ad3f861142f3e97380e3c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:05:03.000Z'}}, {'blockNum': '0x4a01e4', 'uniqueId': '0x6d250bf1de496f4ac26f126a7353f44a5e0bf6d2f9992a56b4555253dc88e4c6:log:35', 'hash': '0x6d250bf1de496f4ac26f126a7353f44a5e0bf6d2f9992a56b4555253dc88e4c6', 'from': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'to': '0x1aec407f093dd0c485c126802a4ff71f36557ac6', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:05:29.000Z'}}, {'blockNum': '0x4a01e9', 'uniqueId': '0xd670829f1b2b228864fd5f7c7326be300a036c12305d6e36024044696a7470fb:log:5', 'hash': '0xd670829f1b2b228864fd5f7c7326be300a036c12305d6e36024044696a7470fb', 'from': '0x2ff146284eb5f7c3a176f2dd47e7a40010263996', 'to': '0x41a1ac11c6b6f4f801989d028797d4175695977f', 'value': 19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x713fb300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:06:56.000Z'}}, {'blockNum': '0x4a01f5', 'uniqueId': '0x79df2d70e126902ad2bbc7a27635121b6e47c209504f1935f2f2bcc9b89e4a22:log:86', 'hash': '0x79df2d70e126902ad2bbc7a27635121b6e47c209504f1935f2f2bcc9b89e4a22', 'from': '0x1aec407f093dd0c485c126802a4ff71f36557ac6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:10:57.000Z'}}, {'blockNum': '0x4a01f5', 'uniqueId': '0xea11298b42fc58c25f3c84a35c2ccd4c5863c9a3f7f073fde4e28d009a22d759:log:88', 'hash': '0xea11298b42fc58c25f3c84a35c2ccd4c5863c9a3f7f073fde4e28d009a22d759', 'from': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 391.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x091caceac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:10:57.000Z'}}, {'blockNum': '0x4a01fa', 'uniqueId': '0x74ceb9c75d0768affc83cc57443a7dc3329dd4cd16d7d1880dc3f44dfa694332:log:8', 'hash': '0x74ceb9c75d0768affc83cc57443a7dc3329dd4cd16d7d1880dc3f44dfa694332', 'from': '0xaa89f1e9a51a9604e4bf456ea57bc741b906d36f', 'to': '0x567d8a28d23f05b3270e8a7e921e3f09cdb90b76', 'value': 76.878705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ca3b9824', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:12:36.000Z'}}, {'blockNum': '0x4a0202', 'uniqueId': '0x63419e75b8c159cacab688f9c1f979bc24c718af45ea0ae0392383a932d35857:log:88', 'hash': '0x63419e75b8c159cacab688f9c1f979bc24c718af45ea0ae0392383a932d35857', 'from': '0xb5cfcf2c09e04312fcbeac20f8de00fcafd60376', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 3.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13d18c20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:14:51.000Z'}}, {'blockNum': '0x4a020c', 'uniqueId': '0x3ad480cfd51c42b7a89d6aea3bd6ee26bba3c0dfe07f4edf1b4329dac8761fc0:log:10', 'hash': '0x3ad480cfd51c42b7a89d6aea3bd6ee26bba3c0dfe07f4edf1b4329dac8761fc0', 'from': '0x4cceb464e41b3cc82d60629df076d14e873252f3', 'to': '0x49bff69994f36d546b9539d1c1daa1f65ac12ae9', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:17:34.000Z'}}, {'blockNum': '0x4a0214', 'uniqueId': '0x8ec282aad2046794a61c26a354fcfa816a345e86bca486a6b7e39c4a89e32db4:log:3', 'hash': '0x8ec282aad2046794a61c26a354fcfa816a345e86bca486a6b7e39c4a89e32db4', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2a105a4f6811ad015d24399daeab190c042b72f3', 'value': 5.388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x201d6f80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:20:23.000Z'}}, {'blockNum': '0x4a021a', 'uniqueId': '0xcb3952575c352eb0df4426e35110e318d80c8c53f10ca761f0432401220a6bcf:log:39', 'hash': '0xcb3952575c352eb0df4426e35110e318d80c8c53f10ca761f0432401220a6bcf', 'from': '0x49bff69994f36d546b9539d1c1daa1f65ac12ae9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:22:00.000Z'}}, {'blockNum': '0x4a0225', 'uniqueId': '0xa63de4768617944dd21ff8c482da0b4806e7458f679ae4e1941ddc6d1504ba08:log:18', 'hash': '0xa63de4768617944dd21ff8c482da0b4806e7458f679ae4e1941ddc6d1504ba08', 'from': '0xe28661c53f9d1fef171b1939da09e291053723f5', 'to': '0x869ac10af3fc6cce5824eea9b7e8f24749c7436a', 'value': 260, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x060db88400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:26:01.000Z'}}, {'blockNum': '0x4a0231', 'uniqueId': '0xa714b3c85b094a46965c297f2c01d655e513b67417d421b76bb2496dbfe792bb:log:46', 'hash': '0xa714b3c85b094a46965c297f2c01d655e513b67417d421b76bb2496dbfe792bb', 'from': '0xf13ecd2c3b4e7c360ec996197699c8ea8e8f903c', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:29:54.000Z'}}, {'blockNum': '0x4a0255', 'uniqueId': '0x21e3b312f57d76f08fe04c2b96a74ca110093cf23cdc9806500dedc2895a5d78:log:5', 'hash': '0x21e3b312f57d76f08fe04c2b96a74ca110093cf23cdc9806500dedc2895a5d78', 'from': '0x51e05d0217edb909d4f943b50ea086856aaffd08', 'to': '0x0a0b9e52eef2a61ede9d1753f829bb5f95084862', 'value': 9538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xde12e90200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:38:11.000Z'}}, {'blockNum': '0x4a025f', 'uniqueId': '0xd8d2af8b0e766c20b0f2ed48446f81d1933a04969737d5111d42b66ab91fa366:log:51', 'hash': '0xd8d2af8b0e766c20b0f2ed48446f81d1933a04969737d5111d42b66ab91fa366', 'from': '0x87d7517d52f6fa3d303e85974f348e346253eac4', 'to': '0x565d78bc8c58cb77e8bdfd3231a6b82589488e85', 'value': 112.12637238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x029c534436', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:41:23.000Z'}}, {'blockNum': '0x4a0264', 'uniqueId': '0x38f1c90297948c5214a595b4642451878640928a743c720d5c5a5dfd5c1ba394:log:99', 'hash': '0x38f1c90297948c5214a595b4642451878640928a743c720d5c5a5dfd5c1ba394', 'from': '0x8855d26f160fabb8bb52e8f51904f419224a66e0', 'to': '0x60e04fd7cae7cbfb68730638a8de5f3bb2dc00d8', 'value': 94.57841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0233bb3368', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:43:40.000Z'}}, {'blockNum': '0x4a0266', 'uniqueId': '0x2bf0cbdec8e93ecab9220b4878ee5c4c5427344f6111ba3acaf25fd1c2fb4867:log:35', 'hash': '0x2bf0cbdec8e93ecab9220b4878ee5c4c5427344f6111ba3acaf25fd1c2fb4867', 'from': '0x0a0b9e52eef2a61ede9d1753f829bb5f95084862', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xde12e90200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:44:01.000Z'}}, {'blockNum': '0x4a026e', 'uniqueId': '0xeb4cc2610c04e0fd4f4f7242982f3bb97c37d8de7bc9dc5d7be25abcfeb6a24e:log:12', 'hash': '0xeb4cc2610c04e0fd4f4f7242982f3bb97c37d8de7bc9dc5d7be25abcfeb6a24e', 'from': '0x1efb863d5fdce9eb99337dffa16c4255ce280011', 'to': '0x3fe4a2e6a10c74e087d0b5a741bf3e3391794ee0', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6b49d200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:46:54.000Z'}}, {'blockNum': '0x4a0289', 'uniqueId': '0xd1d0d75951f3c0734fc97c733b4235db279b0230b559522706e73f4c72c4eb95:log:23', 'hash': '0xd1d0d75951f3c0734fc97c733b4235db279b0230b559522706e73f4c72c4eb95', 'from': '0x60e04fd7cae7cbfb68730638a8de5f3bb2dc00d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94.57841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0233bb3368', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T01:55:10.000Z'}}, {'blockNum': '0x4a02a4', 'uniqueId': '0x32f170aa7e62d3c98a0d6a9f6f94b382ddea278046a848f5068ef7f458fe0507:log:26', 'hash': '0x32f170aa7e62d3c98a0d6a9f6f94b382ddea278046a848f5068ef7f458fe0507', 'from': '0x525bb975837225dbc4a07ad35a0305962c023a05', 'to': '0x4605de71e288da71abce662460d0fa5a5bd2ed48', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x47868c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:02:19.000Z'}}, {'blockNum': '0x4a02ae', 'uniqueId': '0xe28bfc05c3ded7c5ba2eff9b99af61351f712729ddd8ba73d7e42d7163258c78:log:65', 'hash': '0xe28bfc05c3ded7c5ba2eff9b99af61351f712729ddd8ba73d7e42d7163258c78', 'from': '0xe5ced93e71e20e4aa68fee53f1b9acd0543a47b3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 3.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15846c40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:05:16.000Z'}}, {'blockNum': '0x4a02b3', 'uniqueId': '0xd62930b899043199d87a0df600aca071e0e4e81c55c7742a1786ce0174ebf38e:log:16', 'hash': '0xd62930b899043199d87a0df600aca071e0e4e81c55c7742a1786ce0174ebf38e', 'from': '0xaeb1d6c19206c11b7e1188fadc6c171ada519886', 'to': '0x2c0b75352250f31b3e0439ba674fdd0bbae6f547', 'value': 105.04558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02721ed5b0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:07:00.000Z'}}, {'blockNum': '0x4a02bd', 'uniqueId': '0x48a20169c7fdf1570a44870f3a92575f3574124e4ed736cdb0c86aebd10406b6:log:28', 'hash': '0x48a20169c7fdf1570a44870f3a92575f3574124e4ed736cdb0c86aebd10406b6', 'from': '0x7f0432e9a885267ce885ed2d70be07687a0140d8', 'to': '0xc7072ff247a8f2719c2096764f2f81ca655e4e33', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:09:29.000Z'}}, {'blockNum': '0x4a02c6', 'uniqueId': '0x5c40d4a93dfef10e661812a643ef4e919a3fed35da1a121717f0433dab5feb9b:log:5', 'hash': '0x5c40d4a93dfef10e661812a643ef4e919a3fed35da1a121717f0433dab5feb9b', 'from': '0x875a04f31755de6ceae06d9f065a74aec7b966dd', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x043ccdf600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:12:16.000Z'}}, {'blockNum': '0x4a02d2', 'uniqueId': '0xc0b7c26ff7a596814bdebb0fe8ea1f9307d2a62ed7c2c9eb473cc3db02d883bd:log:98', 'hash': '0xc0b7c26ff7a596814bdebb0fe8ea1f9307d2a62ed7c2c9eb473cc3db02d883bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d0a8901a1973166fd970bc26bf5ef1156ef59a3', 'value': 6.24355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2536e6b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:15:38.000Z'}}, {'blockNum': '0x4a02d2', 'uniqueId': '0x8f784b9e7a56af18b402e9716f86e3e20058eeb4a56e6736701c845e50d9b366:log:107', 'hash': '0x8f784b9e7a56af18b402e9716f86e3e20058eeb4a56e6736701c845e50d9b366', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xcf360c411bd6707909984aec96d29b43915e9959', 'value': 1.11868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06aaf860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:15:38.000Z'}}, {'blockNum': '0x4a02db', 'uniqueId': '0x1c0072220e600c719dca09262d767974ff4aa4457201499f120b02d9cdf1a80d:log:3', 'hash': '0x1c0072220e600c719dca09262d767974ff4aa4457201499f120b02d9cdf1a80d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53724e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:17:35.000Z'}}, {'blockNum': '0x4a02e0', 'uniqueId': '0xbcc57760c6aceaa23ba9bcd97a94adb378fc3e8aa73bc67c63800afb365111c2:log:22', 'hash': '0xbcc57760c6aceaa23ba9bcd97a94adb378fc3e8aa73bc67c63800afb365111c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:19:02.000Z'}}, {'blockNum': '0x4a02e0', 'uniqueId': '0x8d2a6248591787e2b9656c59ae466fadcdd3614b0cef7e2f6b656503007c5dd2:log:93', 'hash': '0x8d2a6248591787e2b9656c59ae466fadcdd3614b0cef7e2f6b656503007c5dd2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x531c907457798619c5d8452f471f0aa785cec166', 'value': 29.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xae57f540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:19:02.000Z'}}, {'blockNum': '0x4a02ea', 'uniqueId': '0xcfe757728f7f55df4eb9ff6bc9bcc2432986f2b56d4d9c0513a22da2c3374ce4:log:36', 'hash': '0xcfe757728f7f55df4eb9ff6bc9bcc2432986f2b56d4d9c0513a22da2c3374ce4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc84623e8bcd7ad3fed1b638e38f66065528c857f', 'value': 272.50602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0658433010', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:22:40.000Z'}}, {'blockNum': '0x4a02ea', 'uniqueId': '0x5cadd902d9c66ae30956adb59a9704ce1390d36de30e6d7b4116914c124c759f:log:41', 'hash': '0x5cadd902d9c66ae30956adb59a9704ce1390d36de30e6d7b4116914c124c759f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8b165da07a3d684c9af89b9a17d8f073f480b9aa', 'value': 200.87872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ad549a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:22:40.000Z'}}, {'blockNum': '0x4a02f2', 'uniqueId': '0x50f2009472ebbe8728037d830e64cdecb251232f7474faca5ced7f239c3d499e:log:18', 'hash': '0x50f2009472ebbe8728037d830e64cdecb251232f7474faca5ced7f239c3d499e', 'from': '0x7f0432e9a885267ce885ed2d70be07687a0140d8', 'to': '0xc7072ff247a8f2719c2096764f2f81ca655e4e33', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:24:57.000Z'}}, {'blockNum': '0x4a02fa', 'uniqueId': '0x6f033ce622adf5b23f67aa2fd35b1211cb337ad26d1bd576b1e531cf0bd58d2b:log:26', 'hash': '0x6f033ce622adf5b23f67aa2fd35b1211cb337ad26d1bd576b1e531cf0bd58d2b', 'from': '0x5e0f8cb29e194af2ab131980feda68dc015d3f45', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:27:11.000Z'}}, {'blockNum': '0x4a02fc', 'uniqueId': '0x56b37f2511eb6a3de818d6775af81b368f7c8257f24608fa0a0336b734e13caa:log:33', 'hash': '0x56b37f2511eb6a3de818d6775af81b368f7c8257f24608fa0a0336b734e13caa', 'from': '0xeb4d3938608d00fe62c9d7fbbca7b090d28c0829', 'to': '0x04fa174ba7100a59cbce42c3065169a382d0d694', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:27:44.000Z'}}, {'blockNum': '0x4a030a', 'uniqueId': '0x71add9e5441c3a3dd4433c6dc5f6f6b2390a7bb9dc5f2623e7fdace02b661d33:log:13', 'hash': '0x71add9e5441c3a3dd4433c6dc5f6f6b2390a7bb9dc5f2623e7fdace02b661d33', 'from': '0xc7072ff247a8f2719c2096764f2f81ca655e4e33', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01bf08eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:31:32.000Z'}}, {'blockNum': '0x4a031f', 'uniqueId': '0x8a37febb6b638e85e3869f5d9b6fa2860d53c41815c566cc9fbae4aced24538c:log:40', 'hash': '0x8a37febb6b638e85e3869f5d9b6fa2860d53c41815c566cc9fbae4aced24538c', 'from': '0xc7072ff247a8f2719c2096764f2f81ca655e4e33', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:37:43.000Z'}}, {'blockNum': '0x4a032f', 'uniqueId': '0xdb54c9a0fb9ad662d9ffa754def7ac812672bd883cba6057854b75b0ff79d39b:log:36', 'hash': '0xdb54c9a0fb9ad662d9ffa754def7ac812672bd883cba6057854b75b0ff79d39b', 'from': '0x04fa174ba7100a59cbce42c3065169a382d0d694', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:44:13.000Z'}}, {'blockNum': '0x4a0337', 'uniqueId': '0x596e49fe44cebc1f6cdd8d4e703ddf579333a7f4cca23451433f134d5bf74626:log:10', 'hash': '0x596e49fe44cebc1f6cdd8d4e703ddf579333a7f4cca23451433f134d5bf74626', 'from': '0x5e0f8cb29e194af2ab131980feda68dc015d3f45', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09502f9000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:45:34.000Z'}}, {'blockNum': '0x4a0338', 'uniqueId': '0x3b25b2c7fff7187e08a777eaf44bbff4ee85d2a45ae2d5c832d759af0e110945:log:6', 'hash': '0x3b25b2c7fff7187e08a777eaf44bbff4ee85d2a45ae2d5c832d759af0e110945', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xbb4081d84495a1037742fffe7372ce6b67cddae5', 'value': 49.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0126c7de00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:45:44.000Z'}}, {'blockNum': '0x4a0349', 'uniqueId': '0x116e334cd3b35b5af005a87bd2bd409ada3250495695cc2f517c17b88f39c2f7:log:29', 'hash': '0x116e334cd3b35b5af005a87bd2bd409ada3250495695cc2f517c17b88f39c2f7', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x6caba1d222113d190c8f2783c8f67c842e4b2f16', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:50:11.000Z'}}, {'blockNum': '0x4a035c', 'uniqueId': '0xb911e7a0b8b1fe89011e534734497441b18ff38bab41fb65d8ff1ffb9878362e:log:22', 'hash': '0xb911e7a0b8b1fe89011e534734497441b18ff38bab41fb65d8ff1ffb9878362e', 'from': '0x68058ece4db24ba95e033177b2a5590b72af6e64', 'to': '0xf457805b3edc34f240b598a06b346d8af6958fb1', 'value': 35.021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd0bdce20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:54:31.000Z'}}, {'blockNum': '0x4a0364', 'uniqueId': '0x67977c87fa683fed203a86524b7bc95ea1dc804016248c2fa07f010c89b5c6fa:log:54', 'hash': '0x67977c87fa683fed203a86524b7bc95ea1dc804016248c2fa07f010c89b5c6fa', 'from': '0x50595b75062e36864860b4fd5ed06a41e95d1280', 'to': '0x7c0d19dde28e67ebd339b2edf6b737a79768cc86', 'value': 33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc4b20100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T02:58:04.000Z'}}, {'blockNum': '0x4a0375', 'uniqueId': '0xc9840f1393e54065ff2d184508eaa421e143d67fbe3481203b1d676b159d0faf:log:64', 'hash': '0xc9840f1393e54065ff2d184508eaa421e143d67fbe3481203b1d676b159d0faf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x72463702c309e469e4e20d91e72ba566c0b42303', 'value': 615.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e56743b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:27.000Z'}}, {'blockNum': '0x4a0375', 'uniqueId': '0x5f12abaa52e9acfd07f0796a9fc5b8253c87d8664b4b4c7ce98ab1a08c02ea43:log:66', 'hash': '0x5f12abaa52e9acfd07f0796a9fc5b8253c87d8664b4b4c7ce98ab1a08c02ea43', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'value': 16.21611001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x60a7d1f9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:27.000Z'}}, {'blockNum': '0x4a0375', 'uniqueId': '0xda04b43cd173befb72d4427368ae08a90e1d64d893d20432d9c393a57ad80631:log:68', 'hash': '0xda04b43cd173befb72d4427368ae08a90e1d64d893d20432d9c393a57ad80631', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02d4d7224aeec3f18891ee5daa3ad619c0ae64c5', 'value': 29.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb19f3100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:27.000Z'}}, {'blockNum': '0x4a0375', 'uniqueId': '0x28cd260157db09ce7d5832fc96f29943e6f52848d2808e8eeebe42d181299230:log:71', 'hash': '0x28cd260157db09ce7d5832fc96f29943e6f52848d2808e8eeebe42d181299230', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd2ff98d4fe0c6bad913c560d9affe7d7bcc35026', 'value': 63.52581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x017aa4b188', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:27.000Z'}}, {'blockNum': '0x4a0376', 'uniqueId': '0x9d0f68b1ef3ae4e19b9a8411fe793383f6546fe72c8f732bf3d64a00610a5e4b:log:21', 'hash': '0x9d0f68b1ef3ae4e19b9a8411fe793383f6546fe72c8f732bf3d64a00610a5e4b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x12a12562192bd96c0c9bda1f564681c256d71553', 'value': 86.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0204c5b380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:42.000Z'}}, {'blockNum': '0x4a0376', 'uniqueId': '0x8ccb02aa7c0a03636f201525dfc4c267e0a6dd51fe2e55b7cd9b8f09ff2562c7:log:22', 'hash': '0x8ccb02aa7c0a03636f201525dfc4c267e0a6dd51fe2e55b7cd9b8f09ff2562c7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0b036b49d40abb816fe70800c054351709914bd7', 'value': 19.75003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x75b82778', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:02:42.000Z'}}, {'blockNum': '0x4a037e', 'uniqueId': '0x46a54d8dd19567e697ae56cba08a036fb7635504640b8879cacfd7d80efbfd41:log:87', 'hash': '0x46a54d8dd19567e697ae56cba08a036fb7635504640b8879cacfd7d80efbfd41', 'from': '0x24f8ca0de5e5705918ae4f883d100c09849a62d0', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 20.27373471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x78d7439f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:05:05.000Z'}}, {'blockNum': '0x4a0382', 'uniqueId': '0x8797f485acc430814d67460cb3968eec1bbcebdb20466d459de02dba971f69a9:log:10', 'hash': '0x8797f485acc430814d67460cb3968eec1bbcebdb20466d459de02dba971f69a9', 'from': '0x7c0d19dde28e67ebd339b2edf6b737a79768cc86', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc4b20100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:05:38.000Z'}}, {'blockNum': '0x4a03a2', 'uniqueId': '0x319384ea997d98ce9897459d5f0b9ae9465cae122e431b0f2f3bf4acbcc05a20:log:12', 'hash': '0x319384ea997d98ce9897459d5f0b9ae9465cae122e431b0f2f3bf4acbcc05a20', 'from': '0xef38f87549c03bceb98db5a2d6e0fbb3b6b2028e', 'to': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:14:36.000Z'}}, {'blockNum': '0x4a03a4', 'uniqueId': '0x5723bec63dca2226c2e024e68f42a5fdf82790fcbf212eba7de7d477be3f24cf:log:18', 'hash': '0x5723bec63dca2226c2e024e68f42a5fdf82790fcbf212eba7de7d477be3f24cf', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x84a89a472136da428de6461ab9dd9ee649048091', 'value': 4.99984358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd27e6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:16:12.000Z'}}, {'blockNum': '0x4a03a9', 'uniqueId': '0x6a8ac760eaf45e4bb3a0e97dfe9e5829fbe7f74cbad3f9cca3d4f4af8fecdc0b:log:14', 'hash': '0x6a8ac760eaf45e4bb3a0e97dfe9e5829fbe7f74cbad3f9cca3d4f4af8fecdc0b', 'from': '0x84a89a472136da428de6461ab9dd9ee649048091', 'to': '0xa09b3fabb3b5dfc4c77adef884933a4e572497fe', 'value': 4.99984358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd27e6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:17:41.000Z'}}, {'blockNum': '0x4a03b7', 'uniqueId': '0x232e109c14251d517bafc422f6d00f1d41d68967311d4c2cc285846746f7ba6f:log:20', 'hash': '0x232e109c14251d517bafc422f6d00f1d41d68967311d4c2cc285846746f7ba6f', 'from': '0x3101e4eaf5837facf1ddcd6cb2803d5743cbf178', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:20:31.000Z'}}, {'blockNum': '0x4a03c7', 'uniqueId': '0x9aabec1f01a707ea5462cf9619f9cb10e3701dd1a3b0dfa2452730bb4cfafe89:log:50', 'hash': '0x9aabec1f01a707ea5462cf9619f9cb10e3701dd1a3b0dfa2452730bb4cfafe89', 'from': '0x4605de71e288da71abce662460d0fa5a5bd2ed48', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x47868c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:25:47.000Z'}}, {'blockNum': '0x4a03e2', 'uniqueId': '0xfefe8feb58ba01d17117cf196c224fa5eb9c3e3a9c007de92394537d99e434f5:log:23', 'hash': '0xfefe8feb58ba01d17117cf196c224fa5eb9c3e3a9c007de92394537d99e434f5', 'from': '0x6185dc1b1fbebe5b472d583e2d840b2d3041247a', 'to': '0xdea5a7c575e02d43bb6c155f9f800422f737adea', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:31:43.000Z'}}, {'blockNum': '0x4a03f2', 'uniqueId': '0xf741cd3398a3e45d87ab441db45a0d75c9bb7d2e728669254fa8df6f7edf6904:log:20', 'hash': '0xf741cd3398a3e45d87ab441db45a0d75c9bb7d2e728669254fa8df6f7edf6904', 'from': '0xdbbdb6cd9e9389872aa3f48b79436c5f792c0e84', 'to': '0x6af4aefd5fcb1a63ecd1c0b415d837ba548a0bb9', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:36:38.000Z'}}, {'blockNum': '0x4a03f9', 'uniqueId': '0x3f4dc7acf58ec03fd046aaf08f16dbdff1d4ca52c1fe20b57760dea0b41213e6:log:1', 'hash': '0x3f4dc7acf58ec03fd046aaf08f16dbdff1d4ca52c1fe20b57760dea0b41213e6', 'from': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a221e700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:38:30.000Z'}}, {'blockNum': '0x4a03fa', 'uniqueId': '0x04ea6a13d91d19358c461341fe8a34cf2bf10f659fe7f152ade56cfd8a5f17c9:log:75', 'hash': '0x04ea6a13d91d19358c461341fe8a34cf2bf10f659fe7f152ade56cfd8a5f17c9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d69f73b8257e2b388a770eb34e28640a60edc03', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:39:11.000Z'}}, {'blockNum': '0x4a03fd', 'uniqueId': '0xdb825c6edf7e112f4e789776d6a55d91e9cafa0e670a3849ac1aa9b8ddbb477f:log:14', 'hash': '0xdb825c6edf7e112f4e789776d6a55d91e9cafa0e670a3849ac1aa9b8ddbb477f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x11bd47832fb58b8b66257eda98283eb5d147e12e', 'value': 140.56499998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0345d52b1e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:39:46.000Z'}}, {'blockNum': '0x4a0404', 'uniqueId': '0x81699046463618620cba3f2f1222caef4030aabee344530d35ad14485318e751:log:46', 'hash': '0x81699046463618620cba3f2f1222caef4030aabee344530d35ad14485318e751', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xff3e5ba3c0a6ead375175d07e52bbdfa8ae1f9ce', 'value': 22.858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x883e8a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:42:08.000Z'}}, {'blockNum': '0x4a0420', 'uniqueId': '0x443d65f4800d7bcf535ac31f3d362fe1966b3c6eda1667a08e822d968a3022be:log:14', 'hash': '0x443d65f4800d7bcf535ac31f3d362fe1966b3c6eda1667a08e822d968a3022be', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb501732006565d18cb6a3d778937277d78ee224f', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:48:01.000Z'}}, {'blockNum': '0x4a0422', 'uniqueId': '0x562029f63adee55155346291a037389066cb3e1395690feda4cc88aea5f23291:log:45', 'hash': '0x562029f63adee55155346291a037389066cb3e1395690feda4cc88aea5f23291', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x37dd87c722ffc94296aeb8d9e74713f3c982e342', 'value': 3.77609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1681db28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:48:35.000Z'}}, {'blockNum': '0x4a0430', 'uniqueId': '0xf15c82a3a860c0c7183f7032f11fbf2384ffa082ef254749f6e0653ef03869a6:log:13', 'hash': '0xf15c82a3a860c0c7183f7032f11fbf2384ffa082ef254749f6e0653ef03869a6', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'value': 105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0271d94900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:54:29.000Z'}}, {'blockNum': '0x4a0432', 'uniqueId': '0xc54f5e536562af144e7b73e16e12e92c228d92a31e8be68fcec8aa36fd85dcd5:log:12', 'hash': '0xc54f5e536562af144e7b73e16e12e92c228d92a31e8be68fcec8aa36fd85dcd5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9bf6c38642678937867c77db3fc5161e5b65d4cb', 'value': 99.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0252dab700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:54:52.000Z'}}, {'blockNum': '0x4a0438', 'uniqueId': '0x373c5187f03c8fa7aa97e57f8970f75925f2b50699624fa8beb6c4b56d5d070f:log:35', 'hash': '0x373c5187f03c8fa7aa97e57f8970f75925f2b50699624fa8beb6c4b56d5d070f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa3c1c1adfed82c0d5d66a8d03e9d62d0c5156ae8', 'value': 1.43836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0892c360', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:57:10.000Z'}}, {'blockNum': '0x4a0438', 'uniqueId': '0xc8a53b419a593ff6ad72e6ec2eafc74f904fd741dbbea80ff27f0e48f738600e:log:68', 'hash': '0xc8a53b419a593ff6ad72e6ec2eafc74f904fd741dbbea80ff27f0e48f738600e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3fe4a2e6a10c74e087d0b5a741bf3e3391794ee0', 'value': 103.93576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026b816240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:57:10.000Z'}}, {'blockNum': '0x4a0439', 'uniqueId': '0x76adc69409e5c0467da65d20e85f7fd9fc6644b2597194b11dc949edf91c1621:log:15', 'hash': '0x76adc69409e5c0467da65d20e85f7fd9fc6644b2597194b11dc949edf91c1621', 'from': '0x2fe6548eaeee12b996fc969c6487416f6d3002b1', 'to': '0x2f3ff2a182674bca307279e3c9f8fd9917ef4c4d', 'value': 278.00198186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0679055c2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:57:50.000Z'}}, {'blockNum': '0x4a0439', 'uniqueId': '0x3028ad5300f1881f6d046e9ad628b907d9af6b2826a04214f1e2c7f55c0ec37a:log:84', 'hash': '0x3028ad5300f1881f6d046e9ad628b907d9af6b2826a04214f1e2c7f55c0ec37a', 'from': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'to': '0xa594363531a276731fdc83509e12914756480e4a', 'value': 106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0277cf2a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T03:57:50.000Z'}}, {'blockNum': '0x4a0442', 'uniqueId': '0xe48f7c5bf0dd2255b29dfd09603997b495eb613096a47a6920218e42075a00a3:log:46', 'hash': '0xe48f7c5bf0dd2255b29dfd09603997b495eb613096a47a6920218e42075a00a3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd4b646888825b12ac4d53bee0c0d455fe8563271', 'value': 200.0995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a8af9b30', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:00:27.000Z'}}, {'blockNum': '0x4a0444', 'uniqueId': '0x292ceb0f084b47371cd704e47af7f8d13fa24000a10f938b99146e5f9c4f76d4:log:2', 'hash': '0x292ceb0f084b47371cd704e47af7f8d13fa24000a10f938b99146e5f9c4f76d4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5a22c0e25077e41af9d0b1f4927cbc828fceed6d', 'value': 81.67804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01e6d6cc60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:00:45.000Z'}}, {'blockNum': '0x4a0447', 'uniqueId': '0x9239b860d21f75506c34497e4ca17a41d9b1660ff961cb925e102d9390ee3743:log:88', 'hash': '0x9239b860d21f75506c34497e4ca17a41d9b1660ff961cb925e102d9390ee3743', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x800009b39db2737b072670c444e3379e6ba0a738', 'value': 1.72808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a4cd740', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:02:03.000Z'}}, {'blockNum': '0x4a044d', 'uniqueId': '0xab47ad62bad0733e32bad7319c120e6133c8392762e52268fa57c9eeda5fdccb:log:18', 'hash': '0xab47ad62bad0733e32bad7319c120e6133c8392762e52268fa57c9eeda5fdccb', 'from': '0xce6937cbe66831685d412b5416d84668f1b59cef', 'to': '0x10831d621e7b9ce91ea8b8ab2663edd38b50f87c', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:03:37.000Z'}}, {'blockNum': '0x4a0452', 'uniqueId': '0xc298d5b1fbac774d297616b401030ad1a4e26be758d72b101a07951ae077b93a:log:71', 'hash': '0xc298d5b1fbac774d297616b401030ad1a4e26be758d72b101a07951ae077b93a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2c90cf19f68cf7f85b9dc0b19217e1dc12b7a85a', 'value': 0.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:04:57.000Z'}}, {'blockNum': '0x4a0452', 'uniqueId': '0x2cbade3e9efe300e7ed2c4000fea1cc8d2d05364fca8af4c6e4e2164b39e7480:log:91', 'hash': '0x2cbade3e9efe300e7ed2c4000fea1cc8d2d05364fca8af4c6e4e2164b39e7480', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4cceb464e41b3cc82d60629df076d14e873252f3', 'value': 100.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258d09800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:04:57.000Z'}}, {'blockNum': '0x4a045c', 'uniqueId': '0x20c3215da8e851b66a48de48f1ccc81b9df488fd507446a6bb6e30d63ed1f25f:log:46', 'hash': '0x20c3215da8e851b66a48de48f1ccc81b9df488fd507446a6bb6e30d63ed1f25f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x16c9c1735ad07534604d9d01193d362a614950c7', 'value': 7.94185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2f564d28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:06:52.000Z'}}, {'blockNum': '0x4a045c', 'uniqueId': '0x41cf11473b5d3fe7d2bd23f9ad9b3fc62f97a574363e494668c3402cdea1b2a4:log:96', 'hash': '0x41cf11473b5d3fe7d2bd23f9ad9b3fc62f97a574363e494668c3402cdea1b2a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf01d40d6ec9b2501db108e83ec6a0a89adf7f42a', 'value': 143.95601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x035a0b7068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:06:52.000Z'}}, {'blockNum': '0x4a045c', 'uniqueId': '0x1cb68a2599377c3b49a9e11f83376015914174d3443dcdd59d2582bb133789d7:log:98', 'hash': '0x1cb68a2599377c3b49a9e11f83376015914174d3443dcdd59d2582bb133789d7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2412f8511ea0cc48a22b6e1926c51916e3fccae2', 'value': 192.1088008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04790ec450', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:06:52.000Z'}}, {'blockNum': '0x4a0460', 'uniqueId': '0x3e8ebc17fead870d0acbc05f2334f0604ca95dc029d6a46c4d829ca52be12880:log:36', 'hash': '0x3e8ebc17fead870d0acbc05f2334f0604ca95dc029d6a46c4d829ca52be12880', 'from': '0xce6937cbe66831685d412b5416d84668f1b59cef', 'to': '0x10831d621e7b9ce91ea8b8ab2663edd38b50f87c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:07:54.000Z'}}, {'blockNum': '0x4a0469', 'uniqueId': '0xef7a9bfc538a716c1e173edebe025fe88ce2256856d58dd5af8e7266c31fc8ed:log:91', 'hash': '0xef7a9bfc538a716c1e173edebe025fe88ce2256856d58dd5af8e7266c31fc8ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x98dbb6901641d770a71429401865729d916b3537', 'value': 1.65814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09e21ef0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:10:27.000Z'}}, {'blockNum': '0x4a046c', 'uniqueId': '0xee4c70121635974bb930af7dd30741756e2cac46fe69d714ff950480d5343a7d:log:12', 'hash': '0xee4c70121635974bb930af7dd30741756e2cac46fe69d714ff950480d5343a7d', 'from': '0x47d18e6c90adba9d70ca6bd0df8d3a596eb01013', 'to': '0x64f3502c4b6b7e7f106e7ab1f175a4e2c2fde45f', 'value': 59.77274026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x016445f6aa', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:12:00.000Z'}}, {'blockNum': '0x4a0479', 'uniqueId': '0x3fef2c36ea8b8549941dd1a51798e8e34f607c40cd1c9a2fbeacef5e4db5cbb0:log:56', 'hash': '0x3fef2c36ea8b8549941dd1a51798e8e34f607c40cd1c9a2fbeacef5e4db5cbb0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x47397318517590545e1246aa0b17dc7a3172d749', 'value': 7.37242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2bf16b90', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:15:04.000Z'}}, {'blockNum': '0x4a0483', 'uniqueId': '0x7567a969cd71d5fb2128e87b5891ace04d888dd7222b9025396bdb2af21bf433:log:4', 'hash': '0x7567a969cd71d5fb2128e87b5891ace04d888dd7222b9025396bdb2af21bf433', 'from': '0x2412f8511ea0cc48a22b6e1926c51916e3fccae2', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 192.1088008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04790ec450', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:18:14.000Z'}}, {'blockNum': '0x4a04a2', 'uniqueId': '0x265f96e591281a718a83dde854b58f8e207f1fb9e2ce666d2cd6aae4a9f8ca7f:log:10', 'hash': '0x265f96e591281a718a83dde854b58f8e207f1fb9e2ce666d2cd6aae4a9f8ca7f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'value': 93.753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022ecfb9a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:26:20.000Z'}}, {'blockNum': '0x4a04a3', 'uniqueId': '0xf23a557bf15d3d86a84b63fbfdf55fdf905b2c885d6550f4a78681f051793c53:log:0', 'hash': '0xf23a557bf15d3d86a84b63fbfdf55fdf905b2c885d6550f4a78681f051793c53', 'from': '0xb3389fdbdbc052a57f6ccfa1043e4bd43b44cd06', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcaa7e200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:26:35.000Z'}}, {'blockNum': '0x4a04a6', 'uniqueId': '0x250efd730002921ce719ce104693178301b2b373405ef68e7e45784f90b4a2cd:log:36', 'hash': '0x250efd730002921ce719ce104693178301b2b373405ef68e7e45784f90b4a2cd', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x049c2c0600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:27:07.000Z'}}, {'blockNum': '0x4a04a9', 'uniqueId': '0xc650c39b01617c85779c5321f5425f55ca1af7aaaa389ea290e835d42085e86b:log:1', 'hash': '0xc650c39b01617c85779c5321f5425f55ca1af7aaaa389ea290e835d42085e86b', 'from': '0xb3389fdbdbc052a57f6ccfa1043e4bd43b44cd06', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcaa7e200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:27:54.000Z'}}, {'blockNum': '0x4a04a9', 'uniqueId': '0x351eb12be6aaa844f9678d8f51a50a12e004957a5f2f9f7962ef710aff4970b4:log:17', 'hash': '0x351eb12be6aaa844f9678d8f51a50a12e004957a5f2f9f7962ef710aff4970b4', 'from': '0xb3389fdbdbc052a57f6ccfa1043e4bd43b44cd06', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcaa7e200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:27:54.000Z'}}, {'blockNum': '0x4a04a9', 'uniqueId': '0xd9083450ece44eb5eb51468ff5ff1f742ba6cb662f897e2d8110d779fe83387b:log:20', 'hash': '0xd9083450ece44eb5eb51468ff5ff1f742ba6cb662f897e2d8110d779fe83387b', 'from': '0xb3389fdbdbc052a57f6ccfa1043e4bd43b44cd06', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcaa7e200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:27:54.000Z'}}, {'blockNum': '0x4a04ae', 'uniqueId': '0x000fb5cc5cde5374e5cf96d769e88786bfe105bc08d42f351c48e3cc1581425c:log:12', 'hash': '0x000fb5cc5cde5374e5cf96d769e88786bfe105bc08d42f351c48e3cc1581425c', 'from': '0xb4dc73127297d25de5660e9fe63e60630b4827e9', 'to': '0xa594363531a276731fdc83509e12914756480e4a', 'value': 93.753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022ecfb9a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:29:13.000Z'}}, {'blockNum': '0x4a04b5', 'uniqueId': '0x83ac45cc614b60b7aecb33a4d12dc06982da1f6de66615efcb9f7d969131a36a:log:21', 'hash': '0x83ac45cc614b60b7aecb33a4d12dc06982da1f6de66615efcb9f7d969131a36a', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x049c2c0600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:30:42.000Z'}}, {'blockNum': '0x4a04bd', 'uniqueId': '0x24d87eb3e6df57cbdf848931be3fdc21dadf2b114f84098d86610ff8a97e781a:log:30', 'hash': '0x24d87eb3e6df57cbdf848931be3fdc21dadf2b114f84098d86610ff8a97e781a', 'from': '0xce6937cbe66831685d412b5416d84668f1b59cef', 'to': '0xdd8bccda953ecd55401c34a025fc14532916668f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:33:12.000Z'}}, {'blockNum': '0x4a04d8', 'uniqueId': '0x3bfa7b4cf9d16be31d0b61d3fa83b62e0f036f89d4ead127265a1b009ddf7a20:log:6', 'hash': '0x3bfa7b4cf9d16be31d0b61d3fa83b62e0f036f89d4ead127265a1b009ddf7a20', 'from': '0xfab786df69c253ef999f83fd0c4f8d3b43a67c3e', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:39:18.000Z'}}, {'blockNum': '0x4a04dc', 'uniqueId': '0xb1e9ada703b52dfa5ed4c5e2ac0c580f2e7bb4bdea7b95be0d0df9c405dda5da:log:23', 'hash': '0xb1e9ada703b52dfa5ed4c5e2ac0c580f2e7bb4bdea7b95be0d0df9c405dda5da', 'from': '0x85673b69d4004c45f63acb8a187646eed0effb1a', 'to': '0x6d94c360c2f3cc280bbf155c6c9296c70264792f', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:40:12.000Z'}}, {'blockNum': '0x4a04dd', 'uniqueId': '0x08f801adc868e3c9343f00c46ae624abd74580c07298c800beb31f880cba0951:log:8', 'hash': '0x08f801adc868e3c9343f00c46ae624abd74580c07298c800beb31f880cba0951', 'from': '0xdea5a7c575e02d43bb6c155f9f800422f737adea', 'to': '0x6185dc1b1fbebe5b472d583e2d840b2d3041247a', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:40:18.000Z'}}, {'blockNum': '0x4a04f0', 'uniqueId': '0xfd4f25c878877460fbf32737c68d237335f00fd6f0e4b181a2d3d1e8969119ab:log:13', 'hash': '0xfd4f25c878877460fbf32737c68d237335f00fd6f0e4b181a2d3d1e8969119ab', 'from': '0xff3e5ba3c0a6ead375175d07e52bbdfa8ae1f9ce', 'to': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'value': 22.858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x883e8a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:46:10.000Z'}}, {'blockNum': '0x4a04f2', 'uniqueId': '0x5afe7e34a871a106fe5836092b1e1adeac6e8ab9b9e10087876a0cff7b846531:log:17', 'hash': '0x5afe7e34a871a106fe5836092b1e1adeac6e8ab9b9e10087876a0cff7b846531', 'from': '0x85673b69d4004c45f63acb8a187646eed0effb1a', 'to': '0x6d94c360c2f3cc280bbf155c6c9296c70264792f', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x517da02c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:46:22.000Z'}}, {'blockNum': '0x4a0506', 'uniqueId': '0xe9e4a31ad1cfcac117f6c403b8a20ac9c65a1ae99e9db5f943d6349f753134cc:log:58', 'hash': '0xe9e4a31ad1cfcac117f6c403b8a20ac9c65a1ae99e9db5f943d6349f753134cc', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb04f3dc5e28c3750b8e75dbfa881b512b79af4c6', 'value': 122.9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02dd22f3f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:51:12.000Z'}}, {'blockNum': '0x4a0506', 'uniqueId': '0xbbe61f1e6082994a15493b1eb2414bd0d0d41f4dcd7d0dffdc9268eede4dc04e:log:69', 'hash': '0xbbe61f1e6082994a15493b1eb2414bd0d0d41f4dcd7d0dffdc9268eede4dc04e', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b984fb200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:51:12.000Z'}}, {'blockNum': '0x4a050d', 'uniqueId': '0x17c68e44ca3dfea604a2615dc328a16b3e5572296e3c66999bfe558ef91da984:log:14', 'hash': '0x17c68e44ca3dfea604a2615dc328a16b3e5572296e3c66999bfe558ef91da984', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x965e7999d34a0d978467d1627d8a055cb9997efb', 'value': 38.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe79fa780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:53:02.000Z'}}, {'blockNum': '0x4a0514', 'uniqueId': '0x1debcd55940f248f696e8b8bf55ae2b0e610f9bc15617179195a2ecdda533f02:log:5', 'hash': '0x1debcd55940f248f696e8b8bf55ae2b0e610f9bc15617179195a2ecdda533f02', 'from': '0xb784e84fab00ccc1f77cacbf6f5c60f41634ff24', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:54:29.000Z'}}, {'blockNum': '0x4a0514', 'uniqueId': '0x96dfd278fefdf603be343f95d74db169a6a21e2dc3cbd9e50912f4452546a344:log:89', 'hash': '0x96dfd278fefdf603be343f95d74db169a6a21e2dc3cbd9e50912f4452546a344', 'from': '0x4e5ff835f1e62560f97c6ccd4c03abeea064f188', 'to': '0x34623bc8413b38e60f3236a8c79f81fd37817cd0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:54:29.000Z'}}, {'blockNum': '0x4a0516', 'uniqueId': '0x9f6ba27a46797e47f0ff0d6d5e22366450748e45d4f34e26dd8100ddbc0f194d:log:19', 'hash': '0x9f6ba27a46797e47f0ff0d6d5e22366450748e45d4f34e26dd8100ddbc0f194d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 248.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05c8d15b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:54:42.000Z'}}, {'blockNum': '0x4a0517', 'uniqueId': '0xb4cac557489d86bc860f0d1593e25310e8aeb428a96ba01193e38a80297406bf:log:9', 'hash': '0xb4cac557489d86bc860f0d1593e25310e8aeb428a96ba01193e38a80297406bf', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xabc8c349141fd3f8e3b654e5150867f96fad6aba', 'value': 9.692775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x39c6003c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:55:04.000Z'}}, {'blockNum': '0x4a051d', 'uniqueId': '0xa457649fc2e5316858b05d704ade6d8eb34b31af6cedb5de16e0cec36357cadc:log:41', 'hash': '0xa457649fc2e5316858b05d704ade6d8eb34b31af6cedb5de16e0cec36357cadc', 'from': '0xba0138411070f0cc868c0be3ce16d890d970067c', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 610.48600422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e36c7b766', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:56:12.000Z'}}, {'blockNum': '0x4a051e', 'uniqueId': '0xaea7805125daa2e2b4b3124e58da13bdd57e428fddcb271aa613720022599db8:log:21', 'hash': '0xaea7805125daa2e2b4b3124e58da13bdd57e428fddcb271aa613720022599db8', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 95.55581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02398e9848', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:56:28.000Z'}}, {'blockNum': '0x4a0522', 'uniqueId': '0x3bd9c9bf365e6586dfd07888362037ea9acff2454c7dd21313a269a23478f7f1:log:4', 'hash': '0x3bd9c9bf365e6586dfd07888362037ea9acff2454c7dd21313a269a23478f7f1', 'from': '0x3bde055a2410ff8de0633b152cc330298ba22968', 'to': '0x103bc4755848c643fb4f139449fa62d474a445c1', 'value': 34.46030001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcd663eb1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T04:57:21.000Z'}}, {'blockNum': '0x4a052e', 'uniqueId': '0xd9a21411bc0f806b74068638b9e41f8f3a0ce65514db6f0bdc4d6766ea03648d:log:13', 'hash': '0xd9a21411bc0f806b74068638b9e41f8f3a0ce65514db6f0bdc4d6766ea03648d', 'from': '0x7e44b638307c93978bf65ff7286a3faae8962df3', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2faf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-01-04T05:00:17.000Z'}}]}}
Number of returned transfers:  586
Answer is complete
 
symbol             KMD
group              BPS
date        2018-01-04
hour             16:00
exchange       binance
Name: 277, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: KMD, Contract: 
Datetime timestamps:  2018-01-04 16:00:00 2018-01-04 04:00:00 2018-01-05 04:00:00
Unix timestamps:  1515034800.0 1515121200.0
Hex Block Numbers:  0x4a036e 0x4a18bb
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NAV
group              BPS
date        2018-01-07
hour             18:00
exchange       binance
Name: 278, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2018-01-07 18:00:00 2018-01-07 06:00:00 2018-01-08 06:00:00
Unix timestamps:  1515301200.0 1515387600.0
Hex Block Numbers:  0x4a44c8 0x4a5a34
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             DGD
group              BPS
date        2018-01-09
hour             20:00
exchange       binance
Name: 279, dtype: object
HERE
 Symbol: DGD, Contract: 
Datetime timestamps:  2018-01-09 20:00:00 2018-01-09 08:00:00 2018-01-10 08:00:00
Unix timestamps:  1515481200.0 1515567600.0
Hex Block Numbers:  0x4a7116 0x4a861c
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GVT
group              BPS
date        2018-01-13
hour             20:00
exchange       binance
Name: 280, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2018-01-13 20:00:00 2018-01-13 08:00:00 2018-01-14 08:00:00
Unix timestamps:  1515826800.0 1515913200.0
Hex Block Numbers:  0x4ac5ab 0x4adafb
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ICN
group              BPS
date        2018-01-15
hour             16:59
exchange       binance
Name: 281, dtype: object
HERE
 Symbol: ICN, Contract: 
Datetime timestamps:  2018-01-15 16:59:00 2018-01-15 04:59:00 2018-01-16 04:59:00
Unix timestamps:  1515988740.0 1516075140.0
Hex Block Numbers:  0x4aee32 0x4b0360
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BNT
group              BPS
date        2018-01-20
hour             19:00
exchange       binance
Name: 282, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2018-01-20 19:00:00 2018-01-20 07:00:00 2018-01-21 07:00:00
Unix timestamps:  1516428000.0 1516514400.0
Hex Block Numbers:  0x4b5c95 0x4b7381
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x4b5c97', 'uniqueId': '0xdd0356e83d6cef7cd65a4f99144d5e8339ef7df09becadbeeeb7436b3b88ea33:log:63', 'hash': '0xdd0356e83d6cef7cd65a4f99144d5e8339ef7df09becadbeeeb7436b3b88ea33', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0x0f5b07f59731f96f3ee2c8c4b1c3677b143d3931', 'value': 2229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x78d596ca4079b40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:00:32.000Z'}}, {'blockNum': '0x4b5c9f', 'uniqueId': '0x8a4e1445dbf6f86af263d5694aee5bcd18cdb5f4b9ccbadfaf359d0c0707ba2d:log:47', 'hash': '0x8a4e1445dbf6f86af263d5694aee5bcd18cdb5f4b9ccbadfaf359d0c0707ba2d', 'from': '0xbbc836c264b881522fd03d38c81570374f73ad69', 'to': '0xb78dd2ea01a718bd1f189172b910aa43ae74e290', 'value': 0.18528830224812853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029246baac88f021', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:02:39.000Z'}}, {'blockNum': '0x4b5cad', 'uniqueId': '0x4ad399fbc96376001fcc0e1af90f272228f76255a0a0043ff331a91d750a52a4:log:6', 'hash': '0x4ad399fbc96376001fcc0e1af90f272228f76255a0a0043ff331a91d750a52a4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:05:29.000Z'}}, {'blockNum': '0x4b5cb1', 'uniqueId': '0x11e4be0536dcf977fe6851c855a6204ad9e291d2a3991f181f288becb0c594d2:log:31', 'hash': '0x11e4be0536dcf977fe6851c855a6204ad9e291d2a3991f181f288becb0c594d2', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x275fd2300d41436ea3fa31240cb2fe654879fb65', 'value': 3.443865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fcb10f89b669000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:06:13.000Z'}}, {'blockNum': '0x4b5cb5', 'uniqueId': '0x1dad3e18e847bf6f32fdacc228dbd36737a8da1331509c3141980c9464a033e9:log:34', 'hash': '0x1dad3e18e847bf6f32fdacc228dbd36737a8da1331509c3141980c9464a033e9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2217.8773506892476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x783b3b33a2510e26a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:07:33.000Z'}}, {'blockNum': '0x4b5cb5', 'uniqueId': '0x1dad3e18e847bf6f32fdacc228dbd36737a8da1331509c3141980c9464a033e9:log:36', 'hash': '0x1dad3e18e847bf6f32fdacc228dbd36737a8da1331509c3141980c9464a033e9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2217.8773506892476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x783b3b33a2510e26a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:07:33.000Z'}}, {'blockNum': '0x4b5cbe', 'uniqueId': '0x29ae32f8d591889718ae65eadef6c4b500af8dbe064178eda73e6a5a1e4100f8:log:16', 'hash': '0x29ae32f8d591889718ae65eadef6c4b500af8dbe064178eda73e6a5a1e4100f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 51.74351221348648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ce15e23593f2aeab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:09:39.000Z'}}, {'blockNum': '0x4b5cbe', 'uniqueId': '0x29ae32f8d591889718ae65eadef6c4b500af8dbe064178eda73e6a5a1e4100f8:log:19', 'hash': '0x29ae32f8d591889718ae65eadef6c4b500af8dbe064178eda73e6a5a1e4100f8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 51.74351221348648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ce15e23593f2aeab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:09:39.000Z'}}, {'blockNum': '0x4b5cbf', 'uniqueId': '0xb04f5152bcd17541385a43555ca75de1032f3119f88ccfd124262a62799e4177:log:13', 'hash': '0xb04f5152bcd17541385a43555ca75de1032f3119f88ccfd124262a62799e4177', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdbcb39bb4491f0fd60414067aa6d3ba3715b71d7', 'value': 87.93906765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c466541b454b9400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:10:08.000Z'}}, {'blockNum': '0x4b5cbf', 'uniqueId': '0x546533ba2c660c33588706a386305b47037b0583b945ce1db4a6cc31302a7560:log:14', 'hash': '0x546533ba2c660c33588706a386305b47037b0583b945ce1db4a6cc31302a7560', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 335.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122b23fd4c982b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:10:08.000Z'}}, {'blockNum': '0x4b5cbf', 'uniqueId': '0x31d12be4275369e5bd1d0377bd7506b0d6ffaf6b4c11284699c368875e7cb81e:log:22', 'hash': '0x31d12be4275369e5bd1d0377bd7506b0d6ffaf6b4c11284699c368875e7cb81e', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x275fd2300d41436ea3fa31240cb2fe654879fb65', 'value': 2.4500196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x220037d86ebea000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:10:08.000Z'}}, {'blockNum': '0x4b5cc2', 'uniqueId': '0xb7470c7aa21e340e8d12177a7446b7b410400b0fc9f41c7c7cfdb79264113002:log:20', 'hash': '0xb7470c7aa21e340e8d12177a7446b7b410400b0fc9f41c7c7cfdb79264113002', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:10:55.000Z'}}, {'blockNum': '0x4b5cc6', 'uniqueId': '0xf2a96f1e26a8efb5f193a5f3b0e4ae4324052f602785c04e529211d67cebf0b6:log:4', 'hash': '0xf2a96f1e26a8efb5f193a5f3b0e4ae4324052f602785c04e529211d67cebf0b6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc20f396b3d13f8343d1af5c0a368153bf3c159', 'value': 8.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f610f70ed20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:11:19.000Z'}}, {'blockNum': '0x4b5cc7', 'uniqueId': '0xb3dba29f472dbb8e059b155b11770266d7a36ae54f0aad5589e1ff559dd3068f:log:23', 'hash': '0xb3dba29f472dbb8e059b155b11770266d7a36ae54f0aad5589e1ff559dd3068f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x275fd2300d41436ea3fa31240cb2fe654879fb65', 'value': 1.47001176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x146687e842726000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:11:54.000Z'}}, {'blockNum': '0x4b5cc7', 'uniqueId': '0x2aae6236fdfd11f6749ad34d5bab4c41a990bbfc8cedb71e5656ffe69f9087e6:log:92', 'hash': '0x2aae6236fdfd11f6749ad34d5bab4c41a990bbfc8cedb71e5656ffe69f9087e6', 'from': '0xcea3791725380e941f162c941af775f44aa99053', 'to': '0xe054c70be277793618b2d2ad9fd7776fdf4e8686', 'value': 3.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30927f74c9de0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:11:54.000Z'}}, {'blockNum': '0x4b5cc8', 'uniqueId': '0xfbac7db0cb613632b0eb0186e77a5cf873167805004202fa6996fe453717de98:log:62', 'hash': '0xfbac7db0cb613632b0eb0186e77a5cf873167805004202fa6996fe453717de98', 'from': '0x21d80128fe55bbb6a22701cbdfa3c28f65fb2ed3', 'to': '0x4413abc21cee458d2c226e753ce47b194da7558f', 'value': 2.94600447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e24f74f5101c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:12:19.000Z'}}, {'blockNum': '0x4b5cd0', 'uniqueId': '0x867216f56ff4bd0b89865596f10b6335973ae97f6c5cb54ba47e8e9f58c7ad39:log:24', 'hash': '0x867216f56ff4bd0b89865596f10b6335973ae97f6c5cb54ba47e8e9f58c7ad39', 'from': '0x83c1ded540d8b6b734885ed9083a5c4e4f142e73', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 306.4956835622661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x109d7b6850ef66d470', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:14:13.000Z'}}, {'blockNum': '0x4b5cd0', 'uniqueId': '0x867216f56ff4bd0b89865596f10b6335973ae97f6c5cb54ba47e8e9f58c7ad39:log:26', 'hash': '0x867216f56ff4bd0b89865596f10b6335973ae97f6c5cb54ba47e8e9f58c7ad39', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 306.4956835622661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x109d7b6850ef66d470', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:14:13.000Z'}}, {'blockNum': '0x4b5cdc', 'uniqueId': '0xaac41e05eba1d9cd92b2f9428eeeebda354b501400adf9e83d2b75847f3e9c23:log:53', 'hash': '0xaac41e05eba1d9cd92b2f9428eeeebda354b501400adf9e83d2b75847f3e9c23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.26277187216169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe1b0f8da97696ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:17:30.000Z'}}, {'blockNum': '0x4b5cdc', 'uniqueId': '0xaac41e05eba1d9cd92b2f9428eeeebda354b501400adf9e83d2b75847f3e9c23:log:55', 'hash': '0xaac41e05eba1d9cd92b2f9428eeeebda354b501400adf9e83d2b75847f3e9c23', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa8d01c10d57112a233a56be6608958b6004d65da', 'value': 16.26277187216169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe1b0f8da97696ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:17:30.000Z'}}, {'blockNum': '0x4b5ce3', 'uniqueId': '0x3869489af8bd7f08a028c54c9cc5e22b74262f6ccb1075a581df6a1b1606cab2:log:10', 'hash': '0x3869489af8bd7f08a028c54c9cc5e22b74262f6ccb1075a581df6a1b1606cab2', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:19:03.000Z'}}, {'blockNum': '0x4b5ce3', 'uniqueId': '0x96e6235185d018d769af7197fed039f3f5a63f511faa4250d6389279e9cfc45f:log:11', 'hash': '0x96e6235185d018d769af7197fed039f3f5a63f511faa4250d6389279e9cfc45f', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:19:03.000Z'}}, {'blockNum': '0x4b5ce4', 'uniqueId': '0x4ea3fd3f1264feece544220e9cff089ebf49d496b82708ce5b783524f9b75d69:log:28', 'hash': '0x4ea3fd3f1264feece544220e9cff089ebf49d496b82708ce5b783524f9b75d69', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x1f1019fa248f94abc9f7bd8c724ffcd65e25f0ea', 'value': 128.83042933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbe1a0e71bb70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:19:07.000Z'}}, {'blockNum': '0x4b5ce5', 'uniqueId': '0x7e8ef7aa392d3b3681f498d6bf982472e5f7a06e9b2eba6de1205ce4c1924fd8:log:5', 'hash': '0x7e8ef7aa392d3b3681f498d6bf982472e5f7a06e9b2eba6de1205ce4c1924fd8', 'from': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:19:15.000Z'}}, {'blockNum': '0x4b5cec', 'uniqueId': '0xfa42072f6646c53876617f0248022606a6c14dda9d010b235522804e5daa1a84:log:10', 'hash': '0xfa42072f6646c53876617f0248022606a6c14dda9d010b235522804e5daa1a84', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe9e8709d3215310075d67e3ed32a380ccf451c8', 'value': 112537.02409151723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d4a4f0dc86fd91e594', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:20:32.000Z'}}, {'blockNum': '0x4b5cf0', 'uniqueId': '0xdeaeb51d701aa89f16709e1dff00ae420f8def41c322bece3748771fe579ea49:log:0', 'hash': '0xdeaeb51d701aa89f16709e1dff00ae420f8def41c322bece3748771fe579ea49', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc20f396b3d13f8343d1af5c0a368153bf3c159', 'value': 1873.63924379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6591f7c542c6770c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:21:18.000Z'}}, {'blockNum': '0x4b5cfb', 'uniqueId': '0x5b503c1d02fa413e017325cae5131e5ab14dedc932556ba6098f49bd7eee76ad:log:1', 'hash': '0x5b503c1d02fa413e017325cae5131e5ab14dedc932556ba6098f49bd7eee76ad', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2259.5373518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a7d6141eb8dd6b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:37.000Z'}}, {'blockNum': '0x4b5cfc', 'uniqueId': '0xae4ed5e42a825a4a57d9e94b97f71f1579702c832c5ed1c01ceaf991f334d2cb:log:43', 'hash': '0xae4ed5e42a825a4a57d9e94b97f71f1579702c832c5ed1c01ceaf991f334d2cb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.983531085127826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6ecb33392e5538de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:50.000Z'}}, {'blockNum': '0x4b5cfc', 'uniqueId': '0xae4ed5e42a825a4a57d9e94b97f71f1579702c832c5ed1c01ceaf991f334d2cb:log:46', 'hash': '0xae4ed5e42a825a4a57d9e94b97f71f1579702c832c5ed1c01ceaf991f334d2cb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 7.983531085127826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6ecb33392e5538de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:50.000Z'}}, {'blockNum': '0x4b5cfc', 'uniqueId': '0xaf64274b15e644f92f5a1ae514a0b2f8e6601eea057523816c265421ac7b8b2b:log:60', 'hash': '0xaf64274b15e644f92f5a1ae514a0b2f8e6601eea057523816c265421ac7b8b2b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.999997161559597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2218615f09f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:50.000Z'}}, {'blockNum': '0x4b5cfc', 'uniqueId': '0xaf64274b15e644f92f5a1ae514a0b2f8e6601eea057523816c265421ac7b8b2b:log:62', 'hash': '0xaf64274b15e644f92f5a1ae514a0b2f8e6601eea057523816c265421ac7b8b2b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xdecf4b112d4120b6998e5020a6b4819e490f7db6', 'value': 2.999997161559597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2218615f09f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:23:50.000Z'}}, {'blockNum': '0x4b5d01', 'uniqueId': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303:log:12', 'hash': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2259.5373518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a7d6141eb8dd6b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:24:43.000Z'}}, {'blockNum': '0x4b5d01', 'uniqueId': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303:log:15', 'hash': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2259.5373518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a7d6141eb8dd6b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:24:43.000Z'}}, {'blockNum': '0x4b5d01', 'uniqueId': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303:log:16', 'hash': '0xbdb696726a7d3a008070271b9498d4b6f7c72c1f42ad670a225725e574228303', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2259.5373518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a7d6141eb8dd6b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:24:43.000Z'}}, {'blockNum': '0x4b5d07', 'uniqueId': '0xbdf65f4fe4f886334eb9b8497f5610fe404dbd3fd360ee2d175e24268a997711:log:6', 'hash': '0xbdf65f4fe4f886334eb9b8497f5610fe404dbd3fd360ee2d175e24268a997711', 'from': '0x4413abc21cee458d2c226e753ce47b194da7558f', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 2.94600447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e24f74f5101c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:25:43.000Z'}}, {'blockNum': '0x4b5d0b', 'uniqueId': '0x356715ed7354b9507051f4e0bd8368cd1061d7899c224e31a03fe7fca003220c:log:25', 'hash': '0x356715ed7354b9507051f4e0bd8368cd1061d7899c224e31a03fe7fca003220c', 'from': '0xa8d01c10d57112a233a56be6608958b6004d65da', 'to': '0xb78dd2ea01a718bd1f189172b910aa43ae74e290', 'value': 16.26277187216169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe1b0f8da97696ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:26:26.000Z'}}, {'blockNum': '0x4b5d0b', 'uniqueId': '0x709df01ec91ccc1e06efddb51248afcd5ed469163eae28b3f2d10b0281863590:log:55', 'hash': '0x709df01ec91ccc1e06efddb51248afcd5ed469163eae28b3f2d10b0281863590', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.78825119160954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcd3a6c1b75223f7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:26:26.000Z'}}, {'blockNum': '0x4b5d0b', 'uniqueId': '0x709df01ec91ccc1e06efddb51248afcd5ed469163eae28b3f2d10b0281863590:log:58', 'hash': '0x709df01ec91ccc1e06efddb51248afcd5ed469163eae28b3f2d10b0281863590', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 14.78825119160954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcd3a6c1b75223f7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:26:26.000Z'}}, {'blockNum': '0x4b5d13', 'uniqueId': '0x7daedd388c33021ec3df13c5409fc52b40dab3ce834ed6a5aa25eb2e998b790e:log:42', 'hash': '0x7daedd388c33021ec3df13c5409fc52b40dab3ce834ed6a5aa25eb2e998b790e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5897874af574d50ce88f9ca7d5a5b2f0e1dc9b20', 'value': 15.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd23f9cbb5b2b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:27:53.000Z'}}, {'blockNum': '0x4b5d1c', 'uniqueId': '0x1d9e4343e977b3e70794fe8b7eba643eb938147dbefadcc70f6eddeb8d1ec5bb:log:44', 'hash': '0x1d9e4343e977b3e70794fe8b7eba643eb938147dbefadcc70f6eddeb8d1ec5bb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb7d4696988d863b9af07793d87e7df9a352eb353', 'value': 148.77957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0810bb36a5a55d2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:30:13.000Z'}}, {'blockNum': '0x4b5d1d', 'uniqueId': '0x349512bbd7353182f54f9f9b25bf12ff5ea94b2a90319973006ee6373f36d957:log:2', 'hash': '0x349512bbd7353182f54f9f9b25bf12ff5ea94b2a90319973006ee6373f36d957', 'from': '0x87473fd5cf8e1756c70e023b1adf903a02233d02', 'to': '0x866b1ead4c3d651378ddd67d4bb65759f2ffcd22', 'value': 1.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d1120d7b160000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:30:21.000Z'}}, {'blockNum': '0x4b5d29', 'uniqueId': '0x807bbe27d7f423c86e1c31c21b8ed7400d3cbe02a8ad6f0638ee8edf1cc13203:log:30', 'hash': '0x807bbe27d7f423c86e1c31c21b8ed7400d3cbe02a8ad6f0638ee8edf1cc13203', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 52.49808240677635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02d88ea7cd5d169abf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:32:07.000Z'}}, {'blockNum': '0x4b5d29', 'uniqueId': '0x807bbe27d7f423c86e1c31c21b8ed7400d3cbe02a8ad6f0638ee8edf1cc13203:log:33', 'hash': '0x807bbe27d7f423c86e1c31c21b8ed7400d3cbe02a8ad6f0638ee8edf1cc13203', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 52.49808240677635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02d88ea7cd5d169abf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:32:07.000Z'}}, {'blockNum': '0x4b5d2b', 'uniqueId': '0xc0bf95f86a6130ce9885b51b630c0fbc84cc28a2c8e3681956e64b748fcd6625:log:13', 'hash': '0xc0bf95f86a6130ce9885b51b630c0fbc84cc28a2c8e3681956e64b748fcd6625', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.30932110329775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8b4350713ac23f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:32:21.000Z'}}, {'blockNum': '0x4b5d2b', 'uniqueId': '0xc0bf95f86a6130ce9885b51b630c0fbc84cc28a2c8e3681956e64b748fcd6625:log:16', 'hash': '0xc0bf95f86a6130ce9885b51b630c0fbc84cc28a2c8e3681956e64b748fcd6625', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 13.30932110329775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8b4350713ac23f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:32:21.000Z'}}, {'blockNum': '0x4b5d37', 'uniqueId': '0x174fb1fe29a50c58b8db8b7da378be6b2c224e4c53fc7b9b54145ec07a7eefc8:log:21', 'hash': '0x174fb1fe29a50c58b8db8b7da378be6b2c224e4c53fc7b9b54145ec07a7eefc8', 'from': '0x5d43c86d733f618749a8c814c7102d365b95f71f', 'to': '0x5897874af574d50ce88f9ca7d5a5b2f0e1dc9b20', 'value': 39.64047956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02261f4622b3eed000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:35:49.000Z'}}, {'blockNum': '0x4b5d43', 'uniqueId': '0x9801b9b1d0396664cca08e9385d0fa40d8b14b4c3150b627cba4dbc330f6412c:log:75', 'hash': '0x9801b9b1d0396664cca08e9385d0fa40d8b14b4c3150b627cba4dbc330f6412c', 'from': '0x92eb61bcddee5f9161c303f3cacd6d7eb8fd3b69', 'to': '0x067111af2e732aef8858580736f946624cfcb2a4', 'value': 625.13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21e36be6eb57f10000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:39:38.000Z'}}, {'blockNum': '0x4b5d4b', 'uniqueId': '0x9d8ec515bb7e848d6ef376a1866bbb2a5f661191c53b84a0904b7020aed91d69:log:19', 'hash': '0x9d8ec515bb7e848d6ef376a1866bbb2a5f661191c53b84a0904b7020aed91d69', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xead0021a028bc43c475b8cbab7173500387f500f', 'value': 4.68593398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4107c820aed51800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:31.000Z'}}, {'blockNum': '0x4b5d4b', 'uniqueId': '0x54efc23f17b3541fb35dd7bf6d26f37d5e3d669b79d4827a09bbcb6d7c2c6de3:log:46', 'hash': '0x54efc23f17b3541fb35dd7bf6d26f37d5e3d669b79d4827a09bbcb6d7c2c6de3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 295.7572744395947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x100874ea1d15c299c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:31.000Z'}}, {'blockNum': '0x4b5d4b', 'uniqueId': '0x54efc23f17b3541fb35dd7bf6d26f37d5e3d669b79d4827a09bbcb6d7c2c6de3:log:49', 'hash': '0x54efc23f17b3541fb35dd7bf6d26f37d5e3d669b79d4827a09bbcb6d7c2c6de3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 295.7572744395947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x100874ea1d15c299c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:31.000Z'}}, {'blockNum': '0x4b5d4c', 'uniqueId': '0x70735a8fbbcd7725fd7d8b4090e77b12d88f78fa64fc9bf4a321ccba8b3cef6c:log:22', 'hash': '0x70735a8fbbcd7725fd7d8b4090e77b12d88f78fa64fc9bf4a321ccba8b3cef6c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.577945376012562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f882110825eee47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:33.000Z'}}, {'blockNum': '0x4b5d4c', 'uniqueId': '0x70735a8fbbcd7725fd7d8b4090e77b12d88f78fa64fc9bf4a321ccba8b3cef6c:log:25', 'hash': '0x70735a8fbbcd7725fd7d8b4090e77b12d88f78fa64fc9bf4a321ccba8b3cef6c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 4.577945376012562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f882110825eee47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:33.000Z'}}, {'blockNum': '0x4b5d4c', 'uniqueId': '0x660101d4917db161861887974a24c298ecc3ee3c97aad25c03c8638acd57b408:log:90', 'hash': '0x660101d4917db161861887974a24c298ecc3ee3c97aad25c03c8638acd57b408', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 156.65099443120832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x087df821766fde15f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:33.000Z'}}, {'blockNum': '0x4b5d4c', 'uniqueId': '0x660101d4917db161861887974a24c298ecc3ee3c97aad25c03c8638acd57b408:log:92', 'hash': '0x660101d4917db161861887974a24c298ecc3ee3c97aad25c03c8638acd57b408', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 156.65099443120832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x087df821766fde15f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:41:33.000Z'}}, {'blockNum': '0x4b5d5a', 'uniqueId': '0x71c99471a8bf62e9538d6b483ff7a60e715b0df8edcfc06db5b9bfb409b06ed2:log:69', 'hash': '0x71c99471a8bf62e9538d6b483ff7a60e715b0df8edcfc06db5b9bfb409b06ed2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 73.93903140675778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04021c3551943fa63a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:44:34.000Z'}}, {'blockNum': '0x4b5d5a', 'uniqueId': '0x71c99471a8bf62e9538d6b483ff7a60e715b0df8edcfc06db5b9bfb409b06ed2:log:72', 'hash': '0x71c99471a8bf62e9538d6b483ff7a60e715b0df8edcfc06db5b9bfb409b06ed2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 73.93903140675778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04021c3551943fa63a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:44:34.000Z'}}, {'blockNum': '0x4b5d64', 'uniqueId': '0x4d1c2881ff7ed6a77f6534d07c8ad8841459e3b1e7178483523687f00d397c82:log:103', 'hash': '0x4d1c2881ff7ed6a77f6534d07c8ad8841459e3b1e7178483523687f00d397c82', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 260.651348966672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e21439ce528dd75b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:46:57.000Z'}}, {'blockNum': '0x4b5d64', 'uniqueId': '0x4d1c2881ff7ed6a77f6534d07c8ad8841459e3b1e7178483523687f00d397c82:log:105', 'hash': '0x4d1c2881ff7ed6a77f6534d07c8ad8841459e3b1e7178483523687f00d397c82', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 260.651348966672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e21439ce528dd75b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:46:57.000Z'}}, {'blockNum': '0x4b5d7f', 'uniqueId': '0xc0b2daeeb27be6f4a38e30ddf986aff4844e9221a64d2e528a91ec0ad18ac780:log:80', 'hash': '0xc0b2daeeb27be6f4a38e30ddf986aff4844e9221a64d2e528a91ec0ad18ac780', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 10.508016230108174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x91d3f91661a31675', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:36.000Z'}}, {'blockNum': '0x4b5d7f', 'uniqueId': '0xc0b2daeeb27be6f4a38e30ddf986aff4844e9221a64d2e528a91ec0ad18ac780:log:83', 'hash': '0xc0b2daeeb27be6f4a38e30ddf986aff4844e9221a64d2e528a91ec0ad18ac780', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 10.508016230108174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x91d3f91661a31675', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:36.000Z'}}, {'blockNum': '0x4b5d7f', 'uniqueId': '0x4c58f95e12987d3c9ac34245722038e2263ca8d76742850c1a051a2cf238500c:log:98', 'hash': '0x4c58f95e12987d3c9ac34245722038e2263ca8d76742850c1a051a2cf238500c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 37.83004322851509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020cff4fe25950296b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:36.000Z'}}, {'blockNum': '0x4b5d7f', 'uniqueId': '0x4c58f95e12987d3c9ac34245722038e2263ca8d76742850c1a051a2cf238500c:log:101', 'hash': '0x4c58f95e12987d3c9ac34245722038e2263ca8d76742850c1a051a2cf238500c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 37.83004322851509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020cff4fe25950296b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:36.000Z'}}, {'blockNum': '0x4b5d80', 'uniqueId': '0x4a151e61e93d2ebdb637c2632993c6129891edb72cac9758ed954cbd00ac7520:log:48', 'hash': '0x4a151e61e93d2ebdb637c2632993c6129891edb72cac9758ed954cbd00ac7520', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 158.61572406054978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08993c40a6a472e53a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:40.000Z'}}, {'blockNum': '0x4b5d80', 'uniqueId': '0x4a151e61e93d2ebdb637c2632993c6129891edb72cac9758ed954cbd00ac7520:log:50', 'hash': '0x4a151e61e93d2ebdb637c2632993c6129891edb72cac9758ed954cbd00ac7520', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 158.61572406054978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08993c40a6a472e53a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:55:40.000Z'}}, {'blockNum': '0x4b5d85', 'uniqueId': '0x38d467c1f4ade63f9d0c2ec65aa346475f1e3a5ab456c09db2639560cce805ea:log:41', 'hash': '0x38d467c1f4ade63f9d0c2ec65aa346475f1e3a5ab456c09db2639560cce805ea', 'from': '0x067111af2e732aef8858580736f946624cfcb2a4', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 625.13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21e36be6eb57f10000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:57:03.000Z'}}, {'blockNum': '0x4b5d8d', 'uniqueId': '0x1ab7ca9cebc5479b06153cd22a4089a525e0184479c350cc2a7d18a9e90987cd:log:7', 'hash': '0x1ab7ca9cebc5479b06153cd22a4089a525e0184479c350cc2a7d18a9e90987cd', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xd5a2da1fb250e58d5dd14a5dc4d835d2cd7dc4fc', 'value': 156.83185494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08807aad231c4a8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T06:59:01.000Z'}}, {'blockNum': '0x4b5d92', 'uniqueId': '0x13fab1a41e969edcd94a5d23cca6f77444a133518faf2a744ce8cdb75ade1f5b:log:107', 'hash': '0x13fab1a41e969edcd94a5d23cca6f77444a133518faf2a744ce8cdb75ade1f5b', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 362.5492135425771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a7618cd9528c6722', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:00:28.000Z'}}, {'blockNum': '0x4b5d92', 'uniqueId': '0x13fab1a41e969edcd94a5d23cca6f77444a133518faf2a744ce8cdb75ade1f5b:log:109', 'hash': '0x13fab1a41e969edcd94a5d23cca6f77444a133518faf2a744ce8cdb75ade1f5b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 362.5492135425771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a7618cd9528c6722', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:00:28.000Z'}}, {'blockNum': '0x4b5d92', 'uniqueId': '0x2c71c82c16f1fdf410988ce13f22e4c1390e17e3ff51c0c2ffc7a010ff41eaa1:log:125', 'hash': '0x2c71c82c16f1fdf410988ce13f22e4c1390e17e3ff51c0c2ffc7a010ff41eaa1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.772905967883414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011267793768e468a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:00:28.000Z'}}, {'blockNum': '0x4b5d92', 'uniqueId': '0x2c71c82c16f1fdf410988ce13f22e4c1390e17e3ff51c0c2ffc7a010ff41eaa1:log:128', 'hash': '0x2c71c82c16f1fdf410988ce13f22e4c1390e17e3ff51c0c2ffc7a010ff41eaa1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'value': 19.772905967883414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011267793768e468a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:00:28.000Z'}}, {'blockNum': '0x4b5d9c', 'uniqueId': '0x6913191cc28ad15823ae1cb6c96f76540c426e5130c1f6419c3051903d817c71:log:36', 'hash': '0x6913191cc28ad15823ae1cb6c96f76540c426e5130c1f6419c3051903d817c71', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 147.8886276610816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08045df34f6ac6e174', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:02:12.000Z'}}, {'blockNum': '0x4b5d9c', 'uniqueId': '0x6913191cc28ad15823ae1cb6c96f76540c426e5130c1f6419c3051903d817c71:log:38', 'hash': '0x6913191cc28ad15823ae1cb6c96f76540c426e5130c1f6419c3051903d817c71', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7b85887c9deb416c26ad76bbcf0062ad85cfa23c', 'value': 147.8886276610816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08045df34f6ac6e174', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:02:12.000Z'}}, {'blockNum': '0x4b5db0', 'uniqueId': '0x45de96a65d2dd871e653677ea084cad83f704cad2155c33fe693549c54b28ceb:log:77', 'hash': '0x45de96a65d2dd871e653677ea084cad83f704cad2155c33fe693549c54b28ceb', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 93.34934729309815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x050f7b80c6ebaff5db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:06:38.000Z'}}, {'blockNum': '0x4b5db0', 'uniqueId': '0x45de96a65d2dd871e653677ea084cad83f704cad2155c33fe693549c54b28ceb:log:79', 'hash': '0x45de96a65d2dd871e653677ea084cad83f704cad2155c33fe693549c54b28ceb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 93.34934729309815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x050f7b80c6ebaff5db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:06:38.000Z'}}, {'blockNum': '0x4b5dbb', 'uniqueId': '0x5eed58700d2985c81659e82c7cba5222aa1239bdd88f1afb4e724f433096211e:log:46', 'hash': '0x5eed58700d2985c81659e82c7cba5222aa1239bdd88f1afb4e724f433096211e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 147.88767175010648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08045a8dea0cab02e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:09:19.000Z'}}, {'blockNum': '0x4b5dbb', 'uniqueId': '0x5eed58700d2985c81659e82c7cba5222aa1239bdd88f1afb4e724f433096211e:log:49', 'hash': '0x5eed58700d2985c81659e82c7cba5222aa1239bdd88f1afb4e724f433096211e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 147.88767175010648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08045a8dea0cab02e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:09:19.000Z'}}, {'blockNum': '0x4b5dc4', 'uniqueId': '0x4dc72c1251bef654468e243cb0a36c2b55c1cc38329e4b3fdbf38e0c91b7c9e3:log:44', 'hash': '0x4dc72c1251bef654468e243cb0a36c2b55c1cc38329e4b3fdbf38e0c91b7c9e3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 69.50631031188256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c49804f7ebd48ed3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:12:07.000Z'}}, {'blockNum': '0x4b5dc4', 'uniqueId': '0x4dc72c1251bef654468e243cb0a36c2b55c1cc38329e4b3fdbf38e0c91b7c9e3:log:47', 'hash': '0x4dc72c1251bef654468e243cb0a36c2b55c1cc38329e4b3fdbf38e0c91b7c9e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 69.50631031188256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c49804f7ebd48ed3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:12:07.000Z'}}, {'blockNum': '0x4b5dc8', 'uniqueId': '0x5e6bdf78776a0fab92dd94a18122ce08864d47013d44f415c8218224cad796c6:log:76', 'hash': '0x5e6bdf78776a0fab92dd94a18122ce08864d47013d44f415c8218224cad796c6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 739.3933901645396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28152502e16d300a25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:13:14.000Z'}}, {'blockNum': '0x4b5dc8', 'uniqueId': '0x5e6bdf78776a0fab92dd94a18122ce08864d47013d44f415c8218224cad796c6:log:79', 'hash': '0x5e6bdf78776a0fab92dd94a18122ce08864d47013d44f415c8218224cad796c6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 739.3933901645396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28152502e16d300a25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:13:14.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0xfc3e67b078165dadbede51afa01fdfe49b20b540c1ea3659593a0ea44bbb73ec:log:4', 'hash': '0xfc3e67b078165dadbede51afa01fdfe49b20b540c1ea3659593a0ea44bbb73ec', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfbd3f76eeb144cc9608f29e115b55cfead7b981f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0xe8c2a7eff44b3b3c7cdca59d02e0beb61018fe55cf9ead2135b02f6775794bd0:log:44', 'hash': '0xe8c2a7eff44b3b3c7cdca59d02e0beb61018fe55cf9ead2135b02f6775794bd0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 884.2294171573593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fef25f20e6f1891fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0xe8c2a7eff44b3b3c7cdca59d02e0beb61018fe55cf9ead2135b02f6775794bd0:log:47', 'hash': '0xe8c2a7eff44b3b3c7cdca59d02e0beb61018fe55cf9ead2135b02f6775794bd0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'value': 884.2294171573593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fef25f20e6f1891fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0x7471ce59f84e487fc879ab484e95408fbf345c31a3631a03fa5e18268fa19e48:log:73', 'hash': '0x7471ce59f84e487fc879ab484e95408fbf345c31a3631a03fa5e18268fa19e48', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1205.9521617095954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415ff2bdaa9ede8df0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e09', 'uniqueId': '0x7471ce59f84e487fc879ab484e95408fbf345c31a3631a03fa5e18268fa19e48:log:75', 'hash': '0x7471ce59f84e487fc879ab484e95408fbf345c31a3631a03fa5e18268fa19e48', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1205.9521617095954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415ff2bdaa9ede8df0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:27:51.000Z'}}, {'blockNum': '0x4b5e16', 'uniqueId': '0x034e2c9ecd28d37e23e24739d853001258d0a78d5ab153b4138109f4c3e8f56d:log:26', 'hash': '0x034e2c9ecd28d37e23e24739d853001258d0a78d5ab153b4138109f4c3e8f56d', 'from': '0xc9308c224a46aec3d232f40869034f2c93f339c1', 'to': '0xaa422578eadcf1922693a63917a8be375215275c', 'value': 13.07102437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb5659b694852f400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:31:30.000Z'}}, {'blockNum': '0x4b5e16', 'uniqueId': '0x8f57153ffbd23b3dfc2e8e57e8e318fa1018b087f6ec420cd7c1782ccbd5b898:log:33', 'hash': '0x8f57153ffbd23b3dfc2e8e57e8e318fa1018b087f6ec420cd7c1782ccbd5b898', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 316.766605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x112c050cf23379d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:31:30.000Z'}}, {'blockNum': '0x4b5e16', 'uniqueId': '0x20b559be0868771d9e0d620ba77346ac1bf707ac9dc02574fa69369a9731a955:log:36', 'hash': '0x20b559be0868771d9e0d620ba77346ac1bf707ac9dc02574fa69369a9731a955', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 316.766605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x112c050cf23379d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:31:30.000Z'}}, {'blockNum': '0x4b5e22', 'uniqueId': '0x2442fdb0de61db9a545c0b30fa050f28654ec648c0157f6d6d685fbd79fad5c3:log:25', 'hash': '0x2442fdb0de61db9a545c0b30fa050f28654ec648c0157f6d6d685fbd79fad5c3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 591.4906167459598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x201094ce142fa6dc67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:35:27.000Z'}}, {'blockNum': '0x4b5e22', 'uniqueId': '0x2442fdb0de61db9a545c0b30fa050f28654ec648c0157f6d6d685fbd79fad5c3:log:28', 'hash': '0x2442fdb0de61db9a545c0b30fa050f28654ec648c0157f6d6d685fbd79fad5c3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 591.4906167459598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x201094ce142fa6dc67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:35:27.000Z'}}, {'blockNum': '0x4b5e51', 'uniqueId': '0xce983e4bdff9974692909275ca2ddc6caf3efcc427d793bbff1353536ff3177c:log:79', 'hash': '0xce983e4bdff9974692909275ca2ddc6caf3efcc427d793bbff1353536ff3177c', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 323.3393664463673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11873c30a857949b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:45:21.000Z'}}, {'blockNum': '0x4b5e51', 'uniqueId': '0xce983e4bdff9974692909275ca2ddc6caf3efcc427d793bbff1353536ff3177c:log:81', 'hash': '0xce983e4bdff9974692909275ca2ddc6caf3efcc427d793bbff1353536ff3177c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 323.3393664463673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11873c30a857949b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:45:21.000Z'}}, {'blockNum': '0x4b5e52', 'uniqueId': '0x94441d21632a8c8aa4b5b4754f73ce6cddc9773cb291b88e358c2cfe9b71c57d:log:39', 'hash': '0x94441d21632a8c8aa4b5b4754f73ce6cddc9773cb291b88e358c2cfe9b71c57d', 'from': '0xeb5e251b03fc6d58cd21dbd4931a26695630ddfd', 'to': '0xe3913fdfdccc7c144f1e9143fdce2ba90c62507e', 'value': 15.89716536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdc9e13ab0a71e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:45:39.000Z'}}, {'blockNum': '0x4b5e5e', 'uniqueId': '0x92e8543472d415860a18cef6bf111d6bb5d92a2a8036b971218eb85f27e9a383:log:37', 'hash': '0x92e8543472d415860a18cef6bf111d6bb5d92a2a8036b971218eb85f27e9a383', 'from': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 637.6024118390519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229082cf67bf0204d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:48:40.000Z'}}, {'blockNum': '0x4b5e5e', 'uniqueId': '0x92e8543472d415860a18cef6bf111d6bb5d92a2a8036b971218eb85f27e9a383:log:39', 'hash': '0x92e8543472d415860a18cef6bf111d6bb5d92a2a8036b971218eb85f27e9a383', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 637.6024118390519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229082cf67bf0204d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:48:40.000Z'}}, {'blockNum': '0x4b5e65', 'uniqueId': '0x7d5f80192667ee7da71e188c0fbf8ebeb8076944ab9373f29c40ad5a7be2d102:log:6', 'hash': '0x7d5f80192667ee7da71e188c0fbf8ebeb8076944ab9373f29c40ad5a7be2d102', 'from': '0x97a78d5e73af81ba47f446052a4ab0e07c03bf95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15af1d78b58c400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:50:13.000Z'}}, {'blockNum': '0x4b5e89', 'uniqueId': '0xc2fc2476edce3661e72765434bc87c69eda2b4207378f42bd7a0cf3e45b2b18d:log:3', 'hash': '0xc2fc2476edce3661e72765434bc87c69eda2b4207378f42bd7a0cf3e45b2b18d', 'from': '0xe3913fdfdccc7c144f1e9143fdce2ba90c62507e', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 15.89716536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdc9e13ab0a71e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T07:59:32.000Z'}}, {'blockNum': '0x4b5e8d', 'uniqueId': '0xaa3e8338179a6f9e56b541764b177b567c8c7a7423fcb62ae207f4e1c345261d:log:63', 'hash': '0xaa3e8338179a6f9e56b541764b177b567c8c7a7423fcb62ae207f4e1c345261d', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 321.26014120273595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x116a614c5090e931f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:00:27.000Z'}}, {'blockNum': '0x4b5e8d', 'uniqueId': '0xaa3e8338179a6f9e56b541764b177b567c8c7a7423fcb62ae207f4e1c345261d:log:65', 'hash': '0xaa3e8338179a6f9e56b541764b177b567c8c7a7423fcb62ae207f4e1c345261d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 321.26014120273595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x116a614c5090e931f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:00:27.000Z'}}, {'blockNum': '0x4b5ea0', 'uniqueId': '0x6bc0dc281795b99b20ee1d003f696c579ffe4a620efb09832b89177c27215167:log:59', 'hash': '0x6bc0dc281795b99b20ee1d003f696c579ffe4a620efb09832b89177c27215167', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0xf0702565bfe8b796a360bfc60a0024668c8a3fca', 'value': 402.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d0d690d5a0730000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:05:43.000Z'}}, {'blockNum': '0x4b5ea8', 'uniqueId': '0xbb56cd4056153e85e996746f9fc777febc52420e50e247569df61703abee3e62:log:54', 'hash': '0xbb56cd4056153e85e996746f9fc777febc52420e50e247569df61703abee3e62', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x714c41c141e0a45be6b1ea59c7b7b5f0b0540e2c', 'value': 3.76261913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34378229dcbd4400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:09:42.000Z'}}, {'blockNum': '0x4b5eb5', 'uniqueId': '0x7c54d0f6b0f75506d350c8c1a758b915878d88a8f37eb4d3c92dab4645835543:log:41', 'hash': '0x7c54d0f6b0f75506d350c8c1a758b915878d88a8f37eb4d3c92dab4645835543', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 295.7747021094627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1008b2d47cad80854d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:13:10.000Z'}}, {'blockNum': '0x4b5eb5', 'uniqueId': '0x7c54d0f6b0f75506d350c8c1a758b915878d88a8f37eb4d3c92dab4645835543:log:44', 'hash': '0x7c54d0f6b0f75506d350c8c1a758b915878d88a8f37eb4d3c92dab4645835543', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 295.7747021094627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1008b2d47cad80854d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:13:10.000Z'}}, {'blockNum': '0x4b5ec2', 'uniqueId': '0xce5697768ae261046522b31e82745b538a89b893a5f525bc95af3620647f4399:log:38', 'hash': '0xce5697768ae261046522b31e82745b538a89b893a5f525bc95af3620647f4399', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 73.94205553765073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040226f3bfebe08af7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:17:15.000Z'}}, {'blockNum': '0x4b5ec2', 'uniqueId': '0xce5697768ae261046522b31e82745b538a89b893a5f525bc95af3620647f4399:log:41', 'hash': '0xce5697768ae261046522b31e82745b538a89b893a5f525bc95af3620647f4399', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 73.94205553765073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040226f3bfebe08af7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:17:15.000Z'}}, {'blockNum': '0x4b5ec3', 'uniqueId': '0x519d4b51524ad32a5773f7415160526534c7a2c0d24305e1b02ac49f553657be:log:12', 'hash': '0x519d4b51524ad32a5773f7415160526534c7a2c0d24305e1b02ac49f553657be', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x40ac9959eea8093099a42c4efbd1e125e427ed10', 'value': 12.3259866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xab0eb381bf399000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:17:43.000Z'}}, {'blockNum': '0x4b5ec5', 'uniqueId': '0x10fb6c339bf0582314e2d6a1ffc3c051cdc983306c3a9c957a6ed342cdf0327d:log:60', 'hash': '0x10fb6c339bf0582314e2d6a1ffc3c051cdc983306c3a9c957a6ed342cdf0327d', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x9e7fa6cb5e4c86e8d90eab790f105b762d9145c2', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f05b59d3b20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:18:12.000Z'}}, {'blockNum': '0x4b5ec6', 'uniqueId': '0x83cb994bb8d9a72de3b873717bc63cdc67422d5a3c2ede6fa75af1961db27f2b:log:0', 'hash': '0x83cb994bb8d9a72de3b873717bc63cdc67422d5a3c2ede6fa75af1961db27f2b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x74e3cf6244e24bc7aad8f76f44412179f8088a3d', 'value': 2.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dd6559bdb170000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:18:25.000Z'}}, {'blockNum': '0x4b5ede', 'uniqueId': '0x89c264d5b62ec1c10989fbfbddfac11244b47062fb564d064f15543b5654236e:log:38', 'hash': '0x89c264d5b62ec1c10989fbfbddfac11244b47062fb564d064f15543b5654236e', 'from': '0x9e7fa6cb5e4c86e8d90eab790f105b762d9145c2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f05b59d3b20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:26:21.000Z'}}, {'blockNum': '0x4b5ee0', 'uniqueId': '0x55633a64e28776bc55588242e1f2bde139b487534820cc2f6e831139abf0fa67:log:28', 'hash': '0x55633a64e28776bc55588242e1f2bde139b487534820cc2f6e831139abf0fa67', 'from': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 143.92040248454353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb896676cafd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:26:47.000Z'}}, {'blockNum': '0x4b5ee0', 'uniqueId': '0x55633a64e28776bc55588242e1f2bde139b487534820cc2f6e831139abf0fa67:log:30', 'hash': '0x55633a64e28776bc55588242e1f2bde139b487534820cc2f6e831139abf0fa67', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd8c9d6b34a37851fd9f9e088b91c65cae2ca67fe', 'value': 143.92040248454353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb896676cafd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:26:47.000Z'}}, {'blockNum': '0x4b5ee4', 'uniqueId': '0xdab73fbea251e54b0f0e17916ae81324e1680b8abcca6a7c12d3b335e2bbe805:log:18', 'hash': '0xdab73fbea251e54b0f0e17916ae81324e1680b8abcca6a7c12d3b335e2bbe805', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 618.2909496384812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x218482b6d9b09a040c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:27:49.000Z'}}, {'blockNum': '0x4b5ee4', 'uniqueId': '0xdab73fbea251e54b0f0e17916ae81324e1680b8abcca6a7c12d3b335e2bbe805:log:20', 'hash': '0xdab73fbea251e54b0f0e17916ae81324e1680b8abcca6a7c12d3b335e2bbe805', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 618.2909496384812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x218482b6d9b09a040c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:27:49.000Z'}}, {'blockNum': '0x4b5ee4', 'uniqueId': '0xe182c8c2f5af009bc02dc807a437c07eb0d63b332c6b6390651b223c58fa6082:log:138', 'hash': '0xe182c8c2f5af009bc02dc807a437c07eb0d63b332c6b6390651b223c58fa6082', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2684.7164514114884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9189ecdc52450afc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:27:49.000Z'}}, {'blockNum': '0x4b5ee4', 'uniqueId': '0xe182c8c2f5af009bc02dc807a437c07eb0d63b332c6b6390651b223c58fa6082:log:140', 'hash': '0xe182c8c2f5af009bc02dc807a437c07eb0d63b332c6b6390651b223c58fa6082', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2684.7164514114884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9189ecdc52450afc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:27:49.000Z'}}, {'blockNum': '0x4b5eee', 'uniqueId': '0x5fe48f780d80e79223546d3df59847fe934393715d767670ef8a16c284243d15:log:0', 'hash': '0x5fe48f780d80e79223546d3df59847fe934393715d767670ef8a16c284243d15', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x89ee3e4e1404033cb21faae51d11238867cc15de', 'value': 102.79405748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05928ddaa6dc7c8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:29:14.000Z'}}, {'blockNum': '0x4b5eef', 'uniqueId': '0x19b01a9687901a0e3f5edebccc823cf3e5119b11c70a393db31be312f4fc104a:log:13', 'hash': '0x19b01a9687901a0e3f5edebccc823cf3e5119b11c70a393db31be312f4fc104a', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x97193af002e818d6072e98514bcac7c347a27a6f', 'value': 24.18316213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014f9bd9d450543000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:29:29.000Z'}}, {'blockNum': '0x4b5efa', 'uniqueId': '0x52fb0d3565d0c4b5c7f30665a73548cccfdc9146a6865ff5090cc6826d7943f0:log:215', 'hash': '0x52fb0d3565d0c4b5c7f30665a73548cccfdc9146a6865ff5090cc6826d7943f0', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1064.0079403719349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39ae139069a03058c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:31:34.000Z'}}, {'blockNum': '0x4b5efa', 'uniqueId': '0x52fb0d3565d0c4b5c7f30665a73548cccfdc9146a6865ff5090cc6826d7943f0:log:217', 'hash': '0x52fb0d3565d0c4b5c7f30665a73548cccfdc9146a6865ff5090cc6826d7943f0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1064.0079403719349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39ae139069a03058c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:31:34.000Z'}}, {'blockNum': '0x4b5f05', 'uniqueId': '0x6396636d47da461c1998a8a6e115598efd5aac10e0a9eb427cb6dae5a649bae5:log:46', 'hash': '0x6396636d47da461c1998a8a6e115598efd5aac10e0a9eb427cb6dae5a649bae5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 221.9371167613146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c07ff07d2388cc999', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:34:02.000Z'}}, {'blockNum': '0x4b5f05', 'uniqueId': '0x6396636d47da461c1998a8a6e115598efd5aac10e0a9eb427cb6dae5a649bae5:log:49', 'hash': '0x6396636d47da461c1998a8a6e115598efd5aac10e0a9eb427cb6dae5a649bae5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 221.9371167613146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c07ff07d2388cc999', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:34:02.000Z'}}, {'blockNum': '0x4b5f1e', 'uniqueId': '0x77b86cbee72e440e22289341acd8647dfc9a2622fe7628e94bd6534a905a1c10:log:29', 'hash': '0x77b86cbee72e440e22289341acd8647dfc9a2622fe7628e94bd6534a905a1c10', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.869294038322696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc079a171f7aaccbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:09.000Z'}}, {'blockNum': '0x4b5f1e', 'uniqueId': '0x77b86cbee72e440e22289341acd8647dfc9a2622fe7628e94bd6534a905a1c10:log:32', 'hash': '0x77b86cbee72e440e22289341acd8647dfc9a2622fe7628e94bd6534a905a1c10', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 13.869294038322696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc079a171f7aaccbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:09.000Z'}}, {'blockNum': '0x4b5f1f', 'uniqueId': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f:log:52', 'hash': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f', 'from': '0xd8c9d6b34a37851fd9f9e088b91c65cae2ca67fe', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 143.920402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb18956b2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:36.000Z'}}, {'blockNum': '0x4b5f1f', 'uniqueId': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f:log:55', 'hash': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 143.920402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb18956b2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:36.000Z'}}, {'blockNum': '0x4b5f1f', 'uniqueId': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f:log:57', 'hash': '0xde207edd2fcbdce03ca99db6d30b91aef2c3835ac1318eb70457fdbb132eb35f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 143.920402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07cd4bfb18956b2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:36.000Z'}}, {'blockNum': '0x4b5f20', 'uniqueId': '0xf16813cbf0522f7d99a3297e5a1dd0c6d0bd8a2c00eef9ba97485e476b59aa78:log:37', 'hash': '0xf16813cbf0522f7d99a3297e5a1dd0c6d0bd8a2c00eef9ba97485e476b59aa78', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 158.67501175690728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a0ee27f2563b667', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:45.000Z'}}, {'blockNum': '0x4b5f20', 'uniqueId': '0xf16813cbf0522f7d99a3297e5a1dd0c6d0bd8a2c00eef9ba97485e476b59aa78:log:39', 'hash': '0xf16813cbf0522f7d99a3297e5a1dd0c6d0bd8a2c00eef9ba97485e476b59aa78', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 158.67501175690728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a0ee27f2563b667', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:40:45.000Z'}}, {'blockNum': '0x4b5f33', 'uniqueId': '0xd7cc0630dbd02943f949447f336d9635591b57c531ec0d66ff1eed270ec18199:log:68', 'hash': '0xd7cc0630dbd02943f949447f336d9635591b57c531ec0d66ff1eed270ec18199', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1413.2788180715127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c9d2efd29f86cb39d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:46:45.000Z'}}, {'blockNum': '0x4b5f33', 'uniqueId': '0xd7cc0630dbd02943f949447f336d9635591b57c531ec0d66ff1eed270ec18199:log:70', 'hash': '0xd7cc0630dbd02943f949447f336d9635591b57c531ec0d66ff1eed270ec18199', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1413.2788180715127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c9d2efd29f86cb39d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:46:45.000Z'}}, {'blockNum': '0x4b5f3a', 'uniqueId': '0xe0079263bfe44bbffe3f0157f577c09abc3eb557e1455fc8b175d1259a9d5218:log:38', 'hash': '0xe0079263bfe44bbffe3f0157f577c09abc3eb557e1455fc8b175d1259a9d5218', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 143.5427326364351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c80e3acf93955e90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:49:42.000Z'}}, {'blockNum': '0x4b5f3a', 'uniqueId': '0xe0079263bfe44bbffe3f0157f577c09abc3eb557e1455fc8b175d1259a9d5218:log:41', 'hash': '0xe0079263bfe44bbffe3f0157f577c09abc3eb557e1455fc8b175d1259a9d5218', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 143.5427326364351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c80e3acf93955e90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:49:42.000Z'}}, {'blockNum': '0x4b5f3c', 'uniqueId': '0x254a798e5d3e9a925c9f155b19167d969e96796ed0cb7267242fb18fcf118cda:log:49', 'hash': '0x254a798e5d3e9a925c9f155b19167d969e96796ed0cb7267242fb18fcf118cda', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1542.209415775266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x539a747cac036fd2af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:50:29.000Z'}}, {'blockNum': '0x4b5f3c', 'uniqueId': '0x254a798e5d3e9a925c9f155b19167d969e96796ed0cb7267242fb18fcf118cda:log:51', 'hash': '0x254a798e5d3e9a925c9f155b19167d969e96796ed0cb7267242fb18fcf118cda', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1542.209415775266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x539a747cac036fd2af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:50:29.000Z'}}, {'blockNum': '0x4b5f3f', 'uniqueId': '0x62288b04e0d52a499272032a2b0ffa944923de1b79fa9fc072e088d5225e4256:log:66', 'hash': '0x62288b04e0d52a499272032a2b0ffa944923de1b79fa9fc072e088d5225e4256', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2417.876765615461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8312c7dbddfbf625e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:00.000Z'}}, {'blockNum': '0x4b5f3f', 'uniqueId': '0x62288b04e0d52a499272032a2b0ffa944923de1b79fa9fc072e088d5225e4256:log:68', 'hash': '0x62288b04e0d52a499272032a2b0ffa944923de1b79fa9fc072e088d5225e4256', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x6866e64b72bec90c6b5b33437ff7084052067f86', 'value': 2417.876765615461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8312c7dbddfbf625e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:00.000Z'}}, {'blockNum': '0x4b5f42', 'uniqueId': '0x87de6230ef4f216de041ccc3fd1eee09d0484a02a44433acd2c3f620e4a6aaf5:log:30', 'hash': '0x87de6230ef4f216de041ccc3fd1eee09d0484a02a44433acd2c3f620e4a6aaf5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 133.167972845373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073813adbfab5246e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:25.000Z'}}, {'blockNum': '0x4b5f42', 'uniqueId': '0x87de6230ef4f216de041ccc3fd1eee09d0484a02a44433acd2c3f620e4a6aaf5:log:33', 'hash': '0x87de6230ef4f216de041ccc3fd1eee09d0484a02a44433acd2c3f620e4a6aaf5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 133.167972845373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073813adbfab5246e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:25.000Z'}}, {'blockNum': '0x4b5f42', 'uniqueId': '0x90c93ad65d661e59cb1f18ca87a272e0b4d9ab649dee3823aeae2b98d2b8bf96:log:47', 'hash': '0x90c93ad65d661e59cb1f18ca87a272e0b4d9ab649dee3823aeae2b98d2b8bf96', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 142.04352102980036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b33ff5cc3afa5abb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:25.000Z'}}, {'blockNum': '0x4b5f42', 'uniqueId': '0x90c93ad65d661e59cb1f18ca87a272e0b4d9ab649dee3823aeae2b98d2b8bf96:log:50', 'hash': '0x90c93ad65d661e59cb1f18ca87a272e0b4d9ab649dee3823aeae2b98d2b8bf96', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 142.04352102980036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b33ff5cc3afa5abb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:25.000Z'}}, {'blockNum': '0x4b5f43', 'uniqueId': '0xf42f74798a70332f11e619090329f78c553003b26757a59f304bc3cbde524b34:log:123', 'hash': '0xf42f74798a70332f11e619090329f78c553003b26757a59f304bc3cbde524b34', 'from': '0x6866e64b72bec90c6b5b33437ff7084052067f86', 'to': '0xaf52bcc41ca1af3ed5c3d2f3a27647433167b214', 'value': 2417.876765615461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8312c7dbddfbf625e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:51:27.000Z'}}, {'blockNum': '0x4b5f48', 'uniqueId': '0x0aff853cb437bfd6cc8c98cf5a460fa6e2322fab1068bc79c83e3c8e08dc7e8a:log:37', 'hash': '0x0aff853cb437bfd6cc8c98cf5a460fa6e2322fab1068bc79c83e3c8e08dc7e8a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 51.786105524915335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02cead3499b178f74d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:52:31.000Z'}}, {'blockNum': '0x4b5f48', 'uniqueId': '0x0aff853cb437bfd6cc8c98cf5a460fa6e2322fab1068bc79c83e3c8e08dc7e8a:log:40', 'hash': '0x0aff853cb437bfd6cc8c98cf5a460fa6e2322fab1068bc79c83e3c8e08dc7e8a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 51.786105524915335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02cead3499b178f74d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:52:31.000Z'}}, {'blockNum': '0x4b5f4f', 'uniqueId': '0x1f39b0992644ddcd0be06f04cdab1285ffd4c80c71d70a3cc2357307e8526d9f:log:5', 'hash': '0x1f39b0992644ddcd0be06f04cdab1285ffd4c80c71d70a3cc2357307e8526d9f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5d7ed74d24198ba40321bd2c0fb9649275c3b671', 'value': 150.30973325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0825f7720409f88000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:54:17.000Z'}}, {'blockNum': '0x4b5f59', 'uniqueId': '0x64fb0af1e087bc426e960e41e076f0d4263d7750fbd8f86a50a57c55f2d9c743:log:36', 'hash': '0x64fb0af1e087bc426e960e41e076f0d4263d7750fbd8f86a50a57c55f2d9c743', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 36.98988077109621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02015674949d3df0c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:58:38.000Z'}}, {'blockNum': '0x4b5f59', 'uniqueId': '0x64fb0af1e087bc426e960e41e076f0d4263d7750fbd8f86a50a57c55f2d9c743:log:39', 'hash': '0x64fb0af1e087bc426e960e41e076f0d4263d7750fbd8f86a50a57c55f2d9c743', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 36.98988077109621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02015674949d3df0c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:58:38.000Z'}}, {'blockNum': '0x4b5f5d', 'uniqueId': '0x362851e668cc9dbda83a2c4c1941bfb05bd4123a25be7f35e82a11d4972f30f1:log:31', 'hash': '0x362851e668cc9dbda83a2c4c1941bfb05bd4123a25be7f35e82a11d4972f30f1', 'from': '0xaf52bcc41ca1af3ed5c3d2f3a27647433167b214', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2417.87676562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8312c7dbdf0a840800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T08:59:40.000Z'}}, {'blockNum': '0x4b5f61', 'uniqueId': '0x96ff7fd8acda4f940829e915eaadced2a497b3c1bc7a2dbc12447540845868fc:log:80', 'hash': '0x96ff7fd8acda4f940829e915eaadced2a497b3c1bc7a2dbc12447540845868fc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 12.75466073790802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb101a85d31a11657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:00:46.000Z'}}, {'blockNum': '0x4b5f61', 'uniqueId': '0x96ff7fd8acda4f940829e915eaadced2a497b3c1bc7a2dbc12447540845868fc:log:83', 'hash': '0x96ff7fd8acda4f940829e915eaadced2a497b3c1bc7a2dbc12447540845868fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 12.75466073790802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb101a85d31a11657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:00:46.000Z'}}, {'blockNum': '0x4b5f67', 'uniqueId': '0x15e1bb74f20cbeb48e9e04b85f8b7f706ff0b625bca8d7a38163ba7ceac12a9e:log:3', 'hash': '0x15e1bb74f20cbeb48e9e04b85f8b7f706ff0b625bca8d7a38163ba7ceac12a9e', 'from': '0x59118eb6df33ce20eaa77a2e21e51a1cecec5e28', 'to': '0x0a9ce8978151e5db9660f3a581a7f211109a94b1', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:02:02.000Z'}}, {'blockNum': '0x4b5f75', 'uniqueId': '0x52eef4429b4971dd958e574054867409925acc74988d4e98bdbd00e3c2c16fd8:log:14', 'hash': '0x52eef4429b4971dd958e574054867409925acc74988d4e98bdbd00e3c2c16fd8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x97f5e58550d15f79cec1cef14e332e9cdaeec67b', 'value': 679.73832116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24d943a1afe2305000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:04:50.000Z'}}, {'blockNum': '0x4b5f94', 'uniqueId': '0x3b28b506576e97d7e9f3d170825bd062f26c87a0c34a7c2f1bae41c345290d16:log:3', 'hash': '0x3b28b506576e97d7e9f3d170825bd062f26c87a0c34a7c2f1bae41c345290d16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd46bc961065f56d92921a5fea66125822a7eeaa0', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:12:55.000Z'}}, {'blockNum': '0x4b5f9a', 'uniqueId': '0xef4a4434c6df49278c7a633b0111acd51f203fb6060332ec5caaa70fe7a64354:log:17', 'hash': '0xef4a4434c6df49278c7a633b0111acd51f203fb6060332ec5caaa70fe7a64354', 'from': '0x943cf58d9510fbbc2327c239cc33756dd5ed6453', 'to': '0xd602018a594dd01c0e7695fe715f3b81b0031e49', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:13:45.000Z'}}, {'blockNum': '0x4b5fa1', 'uniqueId': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694:log:20', 'hash': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694', 'from': '0x0a9ce8978151e5db9660f3a581a7f211109a94b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:15:01.000Z'}}, {'blockNum': '0x4b5fa1', 'uniqueId': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694:log:23', 'hash': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:15:01.000Z'}}, {'blockNum': '0x4b5fa1', 'uniqueId': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694:log:25', 'hash': '0xff43b73764040a4c047b78e96b7878112dd5989b5e729e4d33eb262859f82694', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:15:01.000Z'}}, {'blockNum': '0x4b5fa3', 'uniqueId': '0x75ad928f517682cdfa3c75b6eede61eb60632a5094e10cbb752973b88c060477:log:44', 'hash': '0x75ad928f517682cdfa3c75b6eede61eb60632a5094e10cbb752973b88c060477', 'from': '0x2208bf69dcecdf9b1e229c7d155a3fe0f29e16ba', 'to': '0x875389a21efd3cf3018d4f19f2db028d6342ec63', 'value': 50.68563107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02bf6788ea07da2c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:15:30.000Z'}}, {'blockNum': '0x4b5faf', 'uniqueId': '0x73247cfbbacf5b27f07bbccb30ba93b53a9dc73bcdc729a56b615eb848132d79:log:30', 'hash': '0x73247cfbbacf5b27f07bbccb30ba93b53a9dc73bcdc729a56b615eb848132d79', 'from': '0x59118eb6df33ce20eaa77a2e21e51a1cecec5e28', 'to': '0x0a9ce8978151e5db9660f3a581a7f211109a94b1', 'value': 647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2312edc00c0dbc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:18:28.000Z'}}, {'blockNum': '0x4b5fb3', 'uniqueId': '0x1628dd8a32141f3f757ef371231a184cdb2139b2cab840b37007a743079a731a:log:31', 'hash': '0x1628dd8a32141f3f757ef371231a184cdb2139b2cab840b37007a743079a731a', 'from': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.0481728993686295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x61d023e8be66f35b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:19:28.000Z'}}, {'blockNum': '0x4b5fb3', 'uniqueId': '0x1628dd8a32141f3f757ef371231a184cdb2139b2cab840b37007a743079a731a:log:33', 'hash': '0x1628dd8a32141f3f757ef371231a184cdb2139b2cab840b37007a743079a731a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7.0481728993686295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x61d023e8be66f35b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:19:28.000Z'}}, {'blockNum': '0x4b5fc0', 'uniqueId': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6:log:43', 'hash': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6', 'from': '0x0a9ce8978151e5db9660f3a581a7f211109a94b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2312edc00c0dbc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:21:58.000Z'}}, {'blockNum': '0x4b5fc0', 'uniqueId': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6:log:46', 'hash': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2312edc00c0dbc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:21:58.000Z'}}, {'blockNum': '0x4b5fc0', 'uniqueId': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6:log:48', 'hash': '0xfe58540e3a0b314eae5f9116b01d07a131b0b7ca946a618c7f1882371e3ff5a6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2312edc00c0dbc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:21:58.000Z'}}, {'blockNum': '0x4b5fc2', 'uniqueId': '0x239385a1dfaf3a5fb509f9b2a85591ef2ea2ed1de5c4bf5e4348159492c8e997:log:0', 'hash': '0x239385a1dfaf3a5fb509f9b2a85591ef2ea2ed1de5c4bf5e4348159492c8e997', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8718438b983d394f3d8c2bd538f91e4c316bf35a', 'value': 3248.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb019fe62b598720000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:22:13.000Z'}}, {'blockNum': '0x4b5fd5', 'uniqueId': '0x96b0bf304e123e65166c944f289ac8f1eb9508ab9be0ea409c7c24aedf1b1c10:log:25', 'hash': '0x96b0bf304e123e65166c944f289ac8f1eb9508ab9be0ea409c7c24aedf1b1c10', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 728.733588175249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x278135c97309848833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:27:02.000Z'}}, {'blockNum': '0x4b5fd5', 'uniqueId': '0x96b0bf304e123e65166c944f289ac8f1eb9508ab9be0ea409c7c24aedf1b1c10:log:27', 'hash': '0x96b0bf304e123e65166c944f289ac8f1eb9508ab9be0ea409c7c24aedf1b1c10', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 728.733588175249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x278135c97309848833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:27:02.000Z'}}, {'blockNum': '0x4b5fd6', 'uniqueId': '0xe9bf3f532f8c985be12fe26d7e5c95adaf17bfff3202f4cc4d872e42143adf80:log:33', 'hash': '0xe9bf3f532f8c985be12fe26d7e5c95adaf17bfff3202f4cc4d872e42143adf80', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 41.43202431615569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023efc1e9969ce85c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:27:08.000Z'}}, {'blockNum': '0x4b5fd6', 'uniqueId': '0xe9bf3f532f8c985be12fe26d7e5c95adaf17bfff3202f4cc4d872e42143adf80:log:36', 'hash': '0xe9bf3f532f8c985be12fe26d7e5c95adaf17bfff3202f4cc4d872e42143adf80', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 41.43202431615569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023efc1e9969ce85c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:27:08.000Z'}}, {'blockNum': '0x4b5fe1', 'uniqueId': '0x5fc90d17eeb7bfe42bff8a2827e61c2a725cad2c1d020bc2d34b4713931ec6fc:log:87', 'hash': '0x5fc90d17eeb7bfe42bff8a2827e61c2a725cad2c1d020bc2d34b4713931ec6fc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 54.489770942749985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f4328df92703ca9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:29:25.000Z'}}, {'blockNum': '0x4b5fe1', 'uniqueId': '0x5fc90d17eeb7bfe42bff8a2827e61c2a725cad2c1d020bc2d34b4713931ec6fc:log:90', 'hash': '0x5fc90d17eeb7bfe42bff8a2827e61c2a725cad2c1d020bc2d34b4713931ec6fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 54.489770942749985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f4328df92703ca9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:29:25.000Z'}}, {'blockNum': '0x4b5ff1', 'uniqueId': '0xcc10297a583ad4798f770585e8e7ac54bc1abb5c605daac7af48c9b6037c878d:log:42', 'hash': '0xcc10297a583ad4798f770585e8e7ac54bc1abb5c605daac7af48c9b6037c878d', 'from': '0x1954cc7945f653d27da5f95b448ea543a7cb68f1', 'to': '0x8f14d6339cccefe9ad659510c992ab0c01653f94', 'value': 203.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b0f03612ed0960000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:33:24.000Z'}}, {'blockNum': '0x4b5ff4', 'uniqueId': '0x84caa03878ec8537004b31c88f5c35ac3deb707155871c49aa7634403e6c968a:log:82', 'hash': '0x84caa03878ec8537004b31c88f5c35ac3deb707155871c49aa7634403e6c968a', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 173.7365081470326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x096b1411aa0ca2f607', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:34:14.000Z'}}, {'blockNum': '0x4b5ff4', 'uniqueId': '0x84caa03878ec8537004b31c88f5c35ac3deb707155871c49aa7634403e6c968a:log:85', 'hash': '0x84caa03878ec8537004b31c88f5c35ac3deb707155871c49aa7634403e6c968a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 173.7365081470326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x096b1411aa0ca2f607', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:34:14.000Z'}}, {'blockNum': '0x4b5ff4', 'uniqueId': '0xf7e1f1bb83bbd83a8ace21eb16b4f0509602e8139c67d8b0d63ab44141d06595:log:107', 'hash': '0xf7e1f1bb83bbd83a8ace21eb16b4f0509602e8139c67d8b0d63ab44141d06595', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.797006669643507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcd59872b0b2fe36d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:34:14.000Z'}}, {'blockNum': '0x4b5ff4', 'uniqueId': '0xf7e1f1bb83bbd83a8ace21eb16b4f0509602e8139c67d8b0d63ab44141d06595:log:110', 'hash': '0xf7e1f1bb83bbd83a8ace21eb16b4f0509602e8139c67d8b0d63ab44141d06595', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 14.797006669643507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcd59872b0b2fe36d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:34:14.000Z'}}, {'blockNum': '0x4b6004', 'uniqueId': '0xe8c59cd8688c6fd6538ac78239cbffbdab86c69fc4e84d73becdd4026472883a:log:77', 'hash': '0xe8c59cd8688c6fd6538ac78239cbffbdab86c69fc4e84d73becdd4026472883a', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 899.0520435991058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30bcda7e4581b42ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:39:32.000Z'}}, {'blockNum': '0x4b6004', 'uniqueId': '0xe8c59cd8688c6fd6538ac78239cbffbdab86c69fc4e84d73becdd4026472883a:log:79', 'hash': '0xe8c59cd8688c6fd6538ac78239cbffbdab86c69fc4e84d73becdd4026472883a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 899.0520435991058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30bcda7e4581b42ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:39:32.000Z'}}, {'blockNum': '0x4b600c', 'uniqueId': '0x405c932b6d3bcb925f02c83f95d2812b3348638577cb6e2764c78279e2da5e55:log:8', 'hash': '0x405c932b6d3bcb925f02c83f95d2812b3348638577cb6e2764c78279e2da5e55', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 140.58524884520256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x079f0322f8de3152d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:41:36.000Z'}}, {'blockNum': '0x4b600c', 'uniqueId': '0x405c932b6d3bcb925f02c83f95d2812b3348638577cb6e2764c78279e2da5e55:log:11', 'hash': '0x405c932b6d3bcb925f02c83f95d2812b3348638577cb6e2764c78279e2da5e55', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 140.58524884520256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x079f0322f8de3152d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:41:36.000Z'}}, {'blockNum': '0x4b6020', 'uniqueId': '0xa2663a7ee7199493daab3276e3df116b2c45211d056c8a59b2c2c188ce93b896:log:11', 'hash': '0xa2663a7ee7199493daab3276e3df116b2c45211d056c8a59b2c2c188ce93b896', 'from': '0x8f14d6339cccefe9ad659510c992ab0c01653f94', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 203.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b0f03612ed0960000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:45:08.000Z'}}, {'blockNum': '0x4b602d', 'uniqueId': '0x1d48219e6a20e9a6a827c68a67210315571d30b8841b488fd5899316e61adc23:log:57', 'hash': '0x1d48219e6a20e9a6a827c68a67210315571d30b8841b488fd5899316e61adc23', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 190.35484564732175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a51b44392b2ece18d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:50:04.000Z'}}, {'blockNum': '0x4b602d', 'uniqueId': '0x1d48219e6a20e9a6a827c68a67210315571d30b8841b488fd5899316e61adc23:log:60', 'hash': '0x1d48219e6a20e9a6a827c68a67210315571d30b8841b488fd5899316e61adc23', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 190.35484564732175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a51b44392b2ece18d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:50:04.000Z'}}, {'blockNum': '0x4b603b', 'uniqueId': '0x1542dc5a72c8eddb3767303e4fe7a99218a34880b3ae6185ad929fd2edb01d4d:log:9', 'hash': '0x1542dc5a72c8eddb3767303e4fe7a99218a34880b3ae6185ad929fd2edb01d4d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1485.42218571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50865fb7cc98dfcc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:53:29.000Z'}}, {'blockNum': '0x4b603d', 'uniqueId': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0:log:34', 'hash': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1485.42218571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50865fb7cc98dfcc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:54:56.000Z'}}, {'blockNum': '0x4b603d', 'uniqueId': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0:log:37', 'hash': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1485.42218571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50865fb7cc98dfcc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:54:56.000Z'}}, {'blockNum': '0x4b603d', 'uniqueId': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0:log:38', 'hash': '0xa54165edf1b04d653d9d552015f5db9bb446c7e0c0f4191c4fa92cd305b801c0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1485.42218571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50865fb7cc98dfcc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:54:56.000Z'}}, {'blockNum': '0x4b6040', 'uniqueId': '0xba3cc0034486d5fe6a131e311b79c04a93ae6fbb7b9c5bf992030389cc336439:log:7', 'hash': '0xba3cc0034486d5fe6a131e311b79c04a93ae6fbb7b9c5bf992030389cc336439', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:55:21.000Z'}}, {'blockNum': '0x4b6044', 'uniqueId': '0xa29ffee3e80e6e2b348525f2b57511e86ea6a3973b203add52db13d5e20c9c99:log:164', 'hash': '0xa29ffee3e80e6e2b348525f2b57511e86ea6a3973b203add52db13d5e20c9c99', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.6068380915835878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x086bec07750405d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:55:49.000Z'}}, {'blockNum': '0x4b6044', 'uniqueId': '0xa29ffee3e80e6e2b348525f2b57511e86ea6a3973b203add52db13d5e20c9c99:log:167', 'hash': '0xa29ffee3e80e6e2b348525f2b57511e86ea6a3973b203add52db13d5e20c9c99', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.6068380915835878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x086bec07750405d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T09:55:49.000Z'}}, {'blockNum': '0x4b6050', 'uniqueId': '0x6818878403cc1a772b4d799f36dc6e7ea1c2a67196335d79144fbaaeea3aa5a6:log:61', 'hash': '0x6818878403cc1a772b4d799f36dc6e7ea1c2a67196335d79144fbaaeea3aa5a6', 'from': '0xebec9760681817ee735f1a855287682f7dfa1a36', 'to': '0x860aa8d022d04e45836644b14c27b5eec4b328e7', 'value': 58.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032669162170660000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:00:23.000Z'}}, {'blockNum': '0x4b6050', 'uniqueId': '0xfa318e2ebbfd5cdf74855cb9b2816e6a20739d91afd4d459d49a167d33c45916:log:68', 'hash': '0xfa318e2ebbfd5cdf74855cb9b2816e6a20739d91afd4d459d49a167d33c45916', 'from': '0x164a853451ca0fd4d2ae3c2c961c0dbde82c9d8d', 'to': '0x51e4351adb8f2f93e712ca3c41c908c937cbc853', 'value': 6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53444835ec580000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:00:23.000Z'}}, {'blockNum': '0x4b6059', 'uniqueId': '0x94eca1f2d0139f25170994ad94a90fc4c4a7b95dca35fdf030c566d5baffa8ee:log:45', 'hash': '0x94eca1f2d0139f25170994ad94a90fc4c4a7b95dca35fdf030c566d5baffa8ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 59.03733224605142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03334ebce2749c01fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:02:37.000Z'}}, {'blockNum': '0x4b6059', 'uniqueId': '0x94eca1f2d0139f25170994ad94a90fc4c4a7b95dca35fdf030c566d5baffa8ee:log:48', 'hash': '0x94eca1f2d0139f25170994ad94a90fc4c4a7b95dca35fdf030c566d5baffa8ee', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 59.03733224605142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03334ebce2749c01fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:02:37.000Z'}}, {'blockNum': '0x4b6060', 'uniqueId': '0x8bbc59a35a671685fef0f169250281f18fa1a165d8664bd7da4516eda2e72660:log:43', 'hash': '0x8bbc59a35a671685fef0f169250281f18fa1a165d8664bd7da4516eda2e72660', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 340.5882326190807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12769c790da26a701d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:04:33.000Z'}}, {'blockNum': '0x4b6060', 'uniqueId': '0x8bbc59a35a671685fef0f169250281f18fa1a165d8664bd7da4516eda2e72660:log:46', 'hash': '0x8bbc59a35a671685fef0f169250281f18fa1a165d8664bd7da4516eda2e72660', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 340.5882326190807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12769c790da26a701d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:04:33.000Z'}}, {'blockNum': '0x4b6064', 'uniqueId': '0x0fa7c2dd06811832b062a39304c5539cab54d858fc95f1a273f7e6bf733dbc77:log:52', 'hash': '0x0fa7c2dd06811832b062a39304c5539cab54d858fc95f1a273f7e6bf733dbc77', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.00081287161743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0402f7b33bcee93729', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:05:23.000Z'}}, {'blockNum': '0x4b6064', 'uniqueId': '0x0fa7c2dd06811832b062a39304c5539cab54d858fc95f1a273f7e6bf733dbc77:log:55', 'hash': '0x0fa7c2dd06811832b062a39304c5539cab54d858fc95f1a273f7e6bf733dbc77', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 74.00081287161743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0402f7b33bcee93729', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:05:23.000Z'}}, {'blockNum': '0x4b6074', 'uniqueId': '0xf3a7760c4762aa35d868bb74d44428b2ac925132b691f21d6c05fe5e1759735a:log:71', 'hash': '0xf3a7760c4762aa35d868bb74d44428b2ac925132b691f21d6c05fe5e1759735a', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 701.0682061560103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2601469b149150ec99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:10:14.000Z'}}, {'blockNum': '0x4b6074', 'uniqueId': '0xf3a7760c4762aa35d868bb74d44428b2ac925132b691f21d6c05fe5e1759735a:log:73', 'hash': '0xf3a7760c4762aa35d868bb74d44428b2ac925132b691f21d6c05fe5e1759735a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 701.0682061560103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2601469b149150ec99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:10:14.000Z'}}, {'blockNum': '0x4b6080', 'uniqueId': '0x463285abbdc82ae7c8a437a6f4a48ae6b38947b6e608d4ce5d40c0277b3b1714:log:23', 'hash': '0x463285abbdc82ae7c8a437a6f4a48ae6b38947b6e608d4ce5d40c0277b3b1714', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 367.02189159698355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13e573b1d79620fa98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:13:15.000Z'}}, {'blockNum': '0x4b6080', 'uniqueId': '0x463285abbdc82ae7c8a437a6f4a48ae6b38947b6e608d4ce5d40c0277b3b1714:log:26', 'hash': '0x463285abbdc82ae7c8a437a6f4a48ae6b38947b6e608d4ce5d40c0277b3b1714', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 367.02189159698355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13e573b1d79620fa98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:13:15.000Z'}}, {'blockNum': '0x4b608b', 'uniqueId': '0x327f9efcc2542efc559de273467c619092ae8035e20cc9eb1fd3f930cdee30e1:log:16', 'hash': '0x327f9efcc2542efc559de273467c619092ae8035e20cc9eb1fd3f930cdee30e1', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xecfb69e2bfd3dfef4d391addc36f60ca93e05118', 'value': 11.42878533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e9b33b490d87800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:15:50.000Z'}}, {'blockNum': '0x4b6092', 'uniqueId': '0xeefde4f228f2c893a9e8b7fd26d5def735af4eab2ec1d41341517a4ba1055cb8:log:10', 'hash': '0xeefde4f228f2c893a9e8b7fd26d5def735af4eab2ec1d41341517a4ba1055cb8', 'from': '0x51e4351adb8f2f93e712ca3c41c908c937cbc853', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53444835ec580000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:17:24.000Z'}}, {'blockNum': '0x4b6096', 'uniqueId': '0x068d885bb6627f48f63fb468213ae8ce30b3da056da1db8f9e20f02707ca81db:log:46', 'hash': '0x068d885bb6627f48f63fb468213ae8ce30b3da056da1db8f9e20f02707ca81db', 'from': '0xf0d43de11d6b4f35f60264fe9533c3d1d330654e', 'to': '0x83fc4bfbcdec3a58adadb0b231ab9a9cf2eca2ff', 'value': 2.607476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x242f9d9b645b4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:19:05.000Z'}}, {'blockNum': '0x4b6097', 'uniqueId': '0xd10c3daad4b528f9a26b21c922cbc7819ec2e6801ccccd68a46a0667cc5809d9:log:12', 'hash': '0xd10c3daad4b528f9a26b21c922cbc7819ec2e6801ccccd68a46a0667cc5809d9', 'from': '0x0ae2b017fea73623942698084c6a5339ed204281', 'to': '0x53c4a0cb4d603ff15331a5351f80fb5c20f2384d', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:19:11.000Z'}}, {'blockNum': '0x4b60be', 'uniqueId': '0xdc0fc9b61fb9c7e67ba7acae72cfc3d53d8951f1aa048c9ce11650393ddd2967:log:30', 'hash': '0xdc0fc9b61fb9c7e67ba7acae72cfc3d53d8951f1aa048c9ce11650393ddd2967', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1595.4028253207102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x567ca970d29f843290', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:28:55.000Z'}}, {'blockNum': '0x4b60be', 'uniqueId': '0xdc0fc9b61fb9c7e67ba7acae72cfc3d53d8951f1aa048c9ce11650393ddd2967:log:32', 'hash': '0xdc0fc9b61fb9c7e67ba7acae72cfc3d53d8951f1aa048c9ce11650393ddd2967', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1595.4028253207102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x567ca970d29f843290', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:28:55.000Z'}}, {'blockNum': '0x4b60d6', 'uniqueId': '0xfa07d6f006ccfe57b38efdf6d7bd90e54443ac276390b2fda3833ba121eb518a:log:156', 'hash': '0xfa07d6f006ccfe57b38efdf6d7bd90e54443ac276390b2fda3833ba121eb518a', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1498.184384787581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51377c283e44e8d340', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:34:30.000Z'}}, {'blockNum': '0x4b60d6', 'uniqueId': '0xfa07d6f006ccfe57b38efdf6d7bd90e54443ac276390b2fda3833ba121eb518a:log:158', 'hash': '0xfa07d6f006ccfe57b38efdf6d7bd90e54443ac276390b2fda3833ba121eb518a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1498.184384787581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51377c283e44e8d340', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:34:30.000Z'}}, {'blockNum': '0x4b60d8', 'uniqueId': '0x654b58625532e4e0ea5876b52b837c681b679a7b714802bd37a0d7d3f6185226:log:31', 'hash': '0x654b58625532e4e0ea5876b52b837c681b679a7b714802bd37a0d7d3f6185226', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 36.92530325914986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02007107acf1337bb2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:34:42.000Z'}}, {'blockNum': '0x4b60d8', 'uniqueId': '0x654b58625532e4e0ea5876b52b837c681b679a7b714802bd37a0d7d3f6185226:log:34', 'hash': '0x654b58625532e4e0ea5876b52b837c681b679a7b714802bd37a0d7d3f6185226', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 36.92530325914986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02007107acf1337bb2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:34:42.000Z'}}, {'blockNum': '0x4b60dd', 'uniqueId': '0x504560a2861618faa341a077f18b279e36f556df4c54faeb694a9d9374dffe92:log:50', 'hash': '0x504560a2861618faa341a077f18b279e36f556df4c54faeb694a9d9374dffe92', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 585.2052261030154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb95a9c972c62a269', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:35:07.000Z'}}, {'blockNum': '0x4b60dd', 'uniqueId': '0x504560a2861618faa341a077f18b279e36f556df4c54faeb694a9d9374dffe92:log:52', 'hash': '0x504560a2861618faa341a077f18b279e36f556df4c54faeb694a9d9374dffe92', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 585.2052261030154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb95a9c972c62a269', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:35:07.000Z'}}, {'blockNum': '0x4b60e5', 'uniqueId': '0x0cf306a690387f736d97552d1b195cd69590cc61b508a0c59af5b61fd4fd5e68:log:92', 'hash': '0x0cf306a690387f736d97552d1b195cd69590cc61b508a0c59af5b61fd4fd5e68', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.269795378657276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x64e380613ea4b3c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:36:30.000Z'}}, {'blockNum': '0x4b60e5', 'uniqueId': '0x0cf306a690387f736d97552d1b195cd69590cc61b508a0c59af5b61fd4fd5e68:log:95', 'hash': '0x0cf306a690387f736d97552d1b195cd69590cc61b508a0c59af5b61fd4fd5e68', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.269795378657276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x64e380613ea4b3c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:36:30.000Z'}}, {'blockNum': '0x4b60e9', 'uniqueId': '0xdc59d09f3dcc223e70bb2d8ab5ac3d2815da4e4a146e955155ed4fff7e97ec80:log:1', 'hash': '0xdc59d09f3dcc223e70bb2d8ab5ac3d2815da4e4a146e955155ed4fff7e97ec80', 'from': '0x83fc4bfbcdec3a58adadb0b231ab9a9cf2eca2ff', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 2.607476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x242f9d9b645b4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:37:11.000Z'}}, {'blockNum': '0x4b60f8', 'uniqueId': '0xa4335385464ad4055b68834b5bf3b738775732fe8642d36f209ef0d2fe75f9a9:log:49', 'hash': '0xa4335385464ad4055b68834b5bf3b738775732fe8642d36f209ef0d2fe75f9a9', 'from': '0x866b1ead4c3d651378ddd67d4bb65759f2ffcd22', 'to': '0xc9308c224a46aec3d232f40869034f2c93f339c1', 'value': 1.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d1120d7b160000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:39:58.000Z'}}, {'blockNum': '0x4b6104', 'uniqueId': '0xa60c6b1c1a4cddf7a674f3939733b1945f3b6bb51292d6c4aeaf89e82ee42cca:log:55', 'hash': '0xa60c6b1c1a4cddf7a674f3939733b1945f3b6bb51292d6c4aeaf89e82ee42cca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 44.42299947527726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02687e32a8dd43d105', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:42:49.000Z'}}, {'blockNum': '0x4b6104', 'uniqueId': '0xa60c6b1c1a4cddf7a674f3939733b1945f3b6bb51292d6c4aeaf89e82ee42cca:log:58', 'hash': '0xa60c6b1c1a4cddf7a674f3939733b1945f3b6bb51292d6c4aeaf89e82ee42cca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 44.42299947527726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02687e32a8dd43d105', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:42:49.000Z'}}, {'blockNum': '0x4b611a', 'uniqueId': '0x65d17ae65ed1f8344445c27b704d362aaf3c687914ad2a235ab384d98023edfb:log:1', 'hash': '0x65d17ae65ed1f8344445c27b704d362aaf3c687914ad2a235ab384d98023edfb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x9cfefdfecd70fa2ce222c828b14484705b564ddd', 'value': 14.4957956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc92b694bd2aba000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:46:07.000Z'}}, {'blockNum': '0x4b6127', 'uniqueId': '0xbb4d140e647e518a3952cc30522bc38551164b1b0c8596abc10454634a85dd46:log:43', 'hash': '0xbb4d140e647e518a3952cc30522bc38551164b1b0c8596abc10454634a85dd46', 'from': '0xa07c749095fb91f0adade3cd75491e8e507d9d20', 'to': '0x6fbb095e457cc7fb5cbb0b0781ced14c09c4681c', 'value': 3331.7844765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb49dcc48d377504800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:49:17.000Z'}}, {'blockNum': '0x4b612d', 'uniqueId': '0xecc2dc4cb5dfbeb58319b1385528fd7b4fbae001b49afbb6d1f864c9e819fc96:log:31', 'hash': '0xecc2dc4cb5dfbeb58319b1385528fd7b4fbae001b49afbb6d1f864c9e819fc96', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 456.3036032791565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18bc7c0d9510e4a923', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:50:44.000Z'}}, {'blockNum': '0x4b612d', 'uniqueId': '0xecc2dc4cb5dfbeb58319b1385528fd7b4fbae001b49afbb6d1f864c9e819fc96:log:33', 'hash': '0xecc2dc4cb5dfbeb58319b1385528fd7b4fbae001b49afbb6d1f864c9e819fc96', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 456.3036032791565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18bc7c0d9510e4a923', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:50:44.000Z'}}, {'blockNum': '0x4b6146', 'uniqueId': '0xba9b742a7319eafaf2e00c053b84c147d880cb88479ca55590a7ef13b2d2e6ac:log:69', 'hash': '0xba9b742a7319eafaf2e00c053b84c147d880cb88479ca55590a7ef13b2d2e6ac', 'from': '0x06da1a08f030cf89cbf869cb0e2c9078281afe19', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 58768.97343735405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c71df57d1e84f3f9a95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:10.000Z'}}, {'blockNum': '0x4b6147', 'uniqueId': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d:log:23', 'hash': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:18.000Z'}}, {'blockNum': '0x4b6147', 'uniqueId': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d:log:26', 'hash': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:18.000Z'}}, {'blockNum': '0x4b6147', 'uniqueId': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d:log:27', 'hash': '0xf60d10db0b9489b325d3fc24195e4bd11fbf744561dd5592ffa7e501b925f64d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:18.000Z'}}, {'blockNum': '0x4b614a', 'uniqueId': '0x49ca0f2af1bf49c0c663781034a245d3c41e08d5f9f21c5de932dceb6c42ccef:log:25', 'hash': '0x49ca0f2af1bf49c0c663781034a245d3c41e08d5f9f21c5de932dceb6c42ccef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.917280666574095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf04d3bb29f3810e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:39.000Z'}}, {'blockNum': '0x4b614a', 'uniqueId': '0x49ca0f2af1bf49c0c663781034a245d3c41e08d5f9f21c5de932dceb6c42ccef:log:28', 'hash': '0x49ca0f2af1bf49c0c663781034a245d3c41e08d5f9f21c5de932dceb6c42ccef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 14.917280666574095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf04d3bb29f3810e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:57:39.000Z'}}, {'blockNum': '0x4b614d', 'uniqueId': '0x679872443393340db18034a33f98a008103e25ca4ee0654f1d456e7b6440c64f:log:18', 'hash': '0x679872443393340db18034a33f98a008103e25ca4ee0654f1d456e7b6440c64f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 64.10053308681435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037992d73928be33d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:03.000Z'}}, {'blockNum': '0x4b614d', 'uniqueId': '0x679872443393340db18034a33f98a008103e25ca4ee0654f1d456e7b6440c64f:log:21', 'hash': '0x679872443393340db18034a33f98a008103e25ca4ee0654f1d456e7b6440c64f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 64.10053308681435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037992d73928be33d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:03.000Z'}}, {'blockNum': '0x4b6150', 'uniqueId': '0x3c9b3d0b526d86fc8303133cb0f1fbee49322fedba1c8b63872225e84c2a4c13:log:22', 'hash': '0x3c9b3d0b526d86fc8303133cb0f1fbee49322fedba1c8b63872225e84c2a4c13', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 700.3671319146495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f78be3c5b3d499d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:16.000Z'}}, {'blockNum': '0x4b6150', 'uniqueId': '0x3c9b3d0b526d86fc8303133cb0f1fbee49322fedba1c8b63872225e84c2a4c13:log:24', 'hash': '0x3c9b3d0b526d86fc8303133cb0f1fbee49322fedba1c8b63872225e84c2a4c13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 700.3671319146495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f78be3c5b3d499d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:16.000Z'}}, {'blockNum': '0x4b6150', 'uniqueId': '0xf03c66efdb55b9c8bb99a2f8bb6cd6fa98acec49c2391ab82cac7b25a7722d14:log:35', 'hash': '0xf03c66efdb55b9c8bb99a2f8bb6cd6fa98acec49c2391ab82cac7b25a7722d14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.196751691218107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e7c6e0636cb3ac2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:16.000Z'}}, {'blockNum': '0x4b6150', 'uniqueId': '0xf03c66efdb55b9c8bb99a2f8bb6cd6fa98acec49c2391ab82cac7b25a7722d14:log:38', 'hash': '0xf03c66efdb55b9c8bb99a2f8bb6cd6fa98acec49c2391ab82cac7b25a7722d14', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 2.196751691218107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e7c6e0636cb3ac2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:58:16.000Z'}}, {'blockNum': '0x4b6158', 'uniqueId': '0x63f51b09d9cb651f2fb40be915d7565e6db63edd243f752f199485a73c3cbd41:log:55', 'hash': '0x63f51b09d9cb651f2fb40be915d7565e6db63edd243f752f199485a73c3cbd41', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 301.7571790797227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105bb8db984ece4522', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:59:32.000Z'}}, {'blockNum': '0x4b6158', 'uniqueId': '0x63f51b09d9cb651f2fb40be915d7565e6db63edd243f752f199485a73c3cbd41:log:57', 'hash': '0x63f51b09d9cb651f2fb40be915d7565e6db63edd243f752f199485a73c3cbd41', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 301.7571790797227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105bb8db984ece4522', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T10:59:32.000Z'}}, {'blockNum': '0x4b6173', 'uniqueId': '0xc5875e0eb6892781279d5541ecfdb7e026a957ecaac4c788f41a6921c9005079:log:31', 'hash': '0xc5875e0eb6892781279d5541ecfdb7e026a957ecaac4c788f41a6921c9005079', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 97.09685014125088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05437d4ec3269899fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:05:58.000Z'}}, {'blockNum': '0x4b6173', 'uniqueId': '0xc5875e0eb6892781279d5541ecfdb7e026a957ecaac4c788f41a6921c9005079:log:33', 'hash': '0xc5875e0eb6892781279d5541ecfdb7e026a957ecaac4c788f41a6921c9005079', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 97.09685014125088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05437d4ec3269899fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:05:58.000Z'}}, {'blockNum': '0x4b617f', 'uniqueId': '0xff38f53e7a5e63de36e9fe075814031ae6269e78b69110875763052673d3facd:log:70', 'hash': '0xff38f53e7a5e63de36e9fe075814031ae6269e78b69110875763052673d3facd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 551.9884599378744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dec60f3c0d7f0eeaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:08:43.000Z'}}, {'blockNum': '0x4b617f', 'uniqueId': '0xff38f53e7a5e63de36e9fe075814031ae6269e78b69110875763052673d3facd:log:73', 'hash': '0xff38f53e7a5e63de36e9fe075814031ae6269e78b69110875763052673d3facd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 551.9884599378744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dec60f3c0d7f0eeaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:08:43.000Z'}}, {'blockNum': '0x4b6184', 'uniqueId': '0xcb73ab0b6d518f6b819c7100e038d4ab8dbc88f5f8227fd7e8b018cf1988c87f:log:6', 'hash': '0xcb73ab0b6d518f6b819c7100e038d4ab8dbc88f5f8227fd7e8b018cf1988c87f', 'from': '0x252ffc0fed4949ecfa1744f513aa7bf373dd7862', 'to': '0x972c82fe891332d6e467176ff0dbb71f5d209451', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:10:00.000Z'}}, {'blockNum': '0x4b618c', 'uniqueId': '0x407152b545fc7485b76f3573412c219b0c81f38eb2d2a552606bba07dfe68166:log:1', 'hash': '0x407152b545fc7485b76f3573412c219b0c81f38eb2d2a552606bba07dfe68166', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x89aef2e30d5be0d3e94dbc1d5f3a4634ad0f33bf', 'value': 82.81103645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x047d3be6e64c2cd400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:11:51.000Z'}}, {'blockNum': '0x4b61a1', 'uniqueId': '0x64a909776dc5145c2c49842ca83de920e21f91da06ef9ecfd264eafcc4420acf:log:8', 'hash': '0x64a909776dc5145c2c49842ca83de920e21f91da06ef9ecfd264eafcc4420acf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x29648ec0fc197705cddb875b3bb422b72e58f5ff', 'value': 63.215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x036d48cb9294518000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:16:08.000Z'}}, {'blockNum': '0x4b61a6', 'uniqueId': '0x006a8d86c5b3bebe9df0771c7621dece1f325885f36cbcfeb4b7f1142a29d8b6:log:38', 'hash': '0x006a8d86c5b3bebe9df0771c7621dece1f325885f36cbcfeb4b7f1142a29d8b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 502.10073682664785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b380c27e66e3d5a87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:17:10.000Z'}}, {'blockNum': '0x4b61a6', 'uniqueId': '0x006a8d86c5b3bebe9df0771c7621dece1f325885f36cbcfeb4b7f1142a29d8b6:log:41', 'hash': '0x006a8d86c5b3bebe9df0771c7621dece1f325885f36cbcfeb4b7f1142a29d8b6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 502.10073682664785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b380c27e66e3d5a87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:17:10.000Z'}}, {'blockNum': '0x4b61ab', 'uniqueId': '0x9c2b3914d5d891421e24a06eaddf6f28af0f805b19a4eea3ed1cf7526322da30:log:2', 'hash': '0x9c2b3914d5d891421e24a06eaddf6f28af0f805b19a4eea3ed1cf7526322da30', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'value': 1224.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x426159e65229d20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:18:34.000Z'}}, {'blockNum': '0x4b61ae', 'uniqueId': '0xfc218ee25ce8670799a553ab408b6dc00ff64b6c5d04bfb5f5c63d9ca2004411:log:57', 'hash': '0xfc218ee25ce8670799a553ab408b6dc00ff64b6c5d04bfb5f5c63d9ca2004411', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 88.0111976188425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c56695ee57cffeb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:19:13.000Z'}}, {'blockNum': '0x4b61ae', 'uniqueId': '0xfc218ee25ce8670799a553ab408b6dc00ff64b6c5d04bfb5f5c63d9ca2004411:log:60', 'hash': '0xfc218ee25ce8670799a553ab408b6dc00ff64b6c5d04bfb5f5c63d9ca2004411', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 88.0111976188425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c56695ee57cffeb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:19:13.000Z'}}, {'blockNum': '0x4b61b0', 'uniqueId': '0xcb537ce88002723d80f9c06a686d6dd87eb3151c2f449d8049f0877830310a81:log:10', 'hash': '0xcb537ce88002723d80f9c06a686d6dd87eb3151c2f449d8049f0877830310a81', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:19:34.000Z'}}, {'blockNum': '0x4b61b5', 'uniqueId': '0x05d85e5a2fa9db0c0c40ef08644cdbf9d35d9437d630ff4a7691ca5306107a22:log:9', 'hash': '0x05d85e5a2fa9db0c0c40ef08644cdbf9d35d9437d630ff4a7691ca5306107a22', 'from': '0x85d605fe562a017b7e2d1d0e12cb2f53553e4ad1', 'to': '0xfc270ba8450fd77bf93a3d872ae3f09a80d8c7dc', 'value': 444.395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18173831fe8fb78000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:20:03.000Z'}}, {'blockNum': '0x4b61bf', 'uniqueId': '0x58af64c02e51d8bd7fbf8416ec4c226bb456a056ff9fda79184406a3284a0e07:log:13', 'hash': '0x58af64c02e51d8bd7fbf8416ec4c226bb456a056ff9fda79184406a3284a0e07', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x89b21c097a7821d9c4b515c2bcddb149b3cb873d', 'value': 634.0640051500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x225f67dd44d3340000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:22:56.000Z'}}, {'blockNum': '0x4b61c3', 'uniqueId': '0x91a7ba3a570f1d08c5552f0c9d50353f4ad919d94564d637a07006dbaf83b16d:log:25', 'hash': '0x91a7ba3a570f1d08c5552f0c9d50353f4ad919d94564d637a07006dbaf83b16d', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 150.3945230306935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082724addf40ca93fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:23:24.000Z'}}, {'blockNum': '0x4b61c3', 'uniqueId': '0x91a7ba3a570f1d08c5552f0c9d50353f4ad919d94564d637a07006dbaf83b16d:log:27', 'hash': '0x91a7ba3a570f1d08c5552f0c9d50353f4ad919d94564d637a07006dbaf83b16d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 150.3945230306935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082724addf40ca93fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:23:24.000Z'}}, {'blockNum': '0x4b61c6', 'uniqueId': '0x736a52e0030c86d2ae6a2967f8c4c91d5052b051c69510db32ea47520034fab9:log:0', 'hash': '0x736a52e0030c86d2ae6a2967f8c4c91d5052b051c69510db32ea47520034fab9', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:24:19.000Z'}}, {'blockNum': '0x4b61c7', 'uniqueId': '0xb096b61c11ce9f0276ea7d3ac1ddcb587655195937351bb2a145be0a4527b839:log:7', 'hash': '0xb096b61c11ce9f0276ea7d3ac1ddcb587655195937351bb2a145be0a4527b839', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x403f8902a6657626284a56a63ba8dc9ee1cb625f', 'value': 56.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03101852a671920000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:24:31.000Z'}}, {'blockNum': '0x4b61c9', 'uniqueId': '0xa57b9eab079d9c6603f4ff678627a1973c0eaf13490692334dec64a4a7744883:log:41', 'hash': '0xa57b9eab079d9c6603f4ff678627a1973c0eaf13490692334dec64a4a7744883', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 91.53963528894784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04f65e1d4c2a8c50fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:24:41.000Z'}}, {'blockNum': '0x4b61c9', 'uniqueId': '0xa57b9eab079d9c6603f4ff678627a1973c0eaf13490692334dec64a4a7744883:log:43', 'hash': '0xa57b9eab079d9c6603f4ff678627a1973c0eaf13490692334dec64a4a7744883', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 91.53963528894784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04f65e1d4c2a8c50fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:24:41.000Z'}}, {'blockNum': '0x4b61cc', 'uniqueId': '0xe1ad05bc821f000b1862c4b1836f8f8698275ca5c14861d1c1c65d491f29c7be:log:4', 'hash': '0xe1ad05bc821f000b1862c4b1836f8f8698275ca5c14861d1c1c65d491f29c7be', 'from': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1224.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x426159e65229d20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:25:40.000Z'}}, {'blockNum': '0x4b61cc', 'uniqueId': '0xfaffae90c32aa145ac819a665d009eb9b44b42d1b6127ad780a166aac376e572:log:6', 'hash': '0xfaffae90c32aa145ac819a665d009eb9b44b42d1b6127ad780a166aac376e572', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:25:40.000Z'}}, {'blockNum': '0x4b61f2', 'uniqueId': '0x024e9bd9737a785d4b1c16e3deb7ad3fecb3d85036e1f1e489d61fb57a3e1cf4:log:64', 'hash': '0x024e9bd9737a785d4b1c16e3deb7ad3fecb3d85036e1f1e489d61fb57a3e1cf4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6e45e3923892311473a7e983ccb23cdf4ff4cb38', 'value': 26.444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016efbf5e4c86e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:34:02.000Z'}}, {'blockNum': '0x4b620b', 'uniqueId': '0x38012b3c0e3955e2c89b4f475c350ba7c8d13cdadf5e1923b0dbdabb5953f35c:log:0', 'hash': '0x38012b3c0e3955e2c89b4f475c350ba7c8d13cdadf5e1923b0dbdabb5953f35c', 'from': '0xf51f4012db91498a94cd1910b31c860f3736ec81', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1696.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bfa714c7f85460000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:40:33.000Z'}}, {'blockNum': '0x4b620c', 'uniqueId': '0xf1c3d36fee8371978537d73563b6ef529c0c09b98d4503ac66a7e4f7b0ef2504:log:4', 'hash': '0xf1c3d36fee8371978537d73563b6ef529c0c09b98d4503ac66a7e4f7b0ef2504', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x36c3c81c62c5c48d8cd840ad3abc58f436ced775', 'value': 307.74370355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10aecd43e1f8df0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:40:41.000Z'}}, {'blockNum': '0x4b624a', 'uniqueId': '0x86939ea422941c21b2311ab67360b450010e4e64f7741431995b09902eae9bf0:log:24', 'hash': '0x86939ea422941c21b2311ab67360b450010e4e64f7741431995b09902eae9bf0', 'from': '0x29648ec0fc197705cddb875b3bb422b72e58f5ff', 'to': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'value': 63.215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x036d48cb9294518000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:55:49.000Z'}}, {'blockNum': '0x4b6250', 'uniqueId': '0xed9e3cbf71d86637ce888dfde7b2a12455ea16c7829cd4a7da009d8ba32a1948:log:40', 'hash': '0xed9e3cbf71d86637ce888dfde7b2a12455ea16c7829cd4a7da009d8ba32a1948', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 745.8421233458214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x286ea3838ac6c2dab2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:56:34.000Z'}}, {'blockNum': '0x4b6250', 'uniqueId': '0xed9e3cbf71d86637ce888dfde7b2a12455ea16c7829cd4a7da009d8ba32a1948:log:43', 'hash': '0xed9e3cbf71d86637ce888dfde7b2a12455ea16c7829cd4a7da009d8ba32a1948', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 745.8421233458214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x286ea3838ac6c2dab2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:56:34.000Z'}}, {'blockNum': '0x4b6251', 'uniqueId': '0x1d0acaa34b1bfa474308ed2498bcd82605a100643ed2f2d580133e73b581bf8a:log:10', 'hash': '0x1d0acaa34b1bfa474308ed2498bcd82605a100643ed2f2d580133e73b581bf8a', 'from': '0xdc27819f91d67e9bff0968f7e086254f7d57c47e', 'to': '0x0169281358d5d7e8dab609cba294f270dcc1d800', 'value': 317.481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1135ef1769dfca8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:56:41.000Z'}}, {'blockNum': '0x4b6255', 'uniqueId': '0x5eaf0ec9c3e27cc09e53670de28131d3abce74c5d750b5301708db0c7d9b5a62:log:5', 'hash': '0x5eaf0ec9c3e27cc09e53670de28131d3abce74c5d750b5301708db0c7d9b5a62', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x75def611a34549874c38f5074feed432559a2f8e', 'value': 65.959754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0393601ecb1226a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:57:43.000Z'}}, {'blockNum': '0x4b6260', 'uniqueId': '0xec1371153cd9ae2c57b3ff2b00630914298d1a3b80b8545c3a23ab6fcb07fdb9:log:69', 'hash': '0xec1371153cd9ae2c57b3ff2b00630914298d1a3b80b8545c3a23ab6fcb07fdb9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.91616937504024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf00e10470d57d6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:59:39.000Z'}}, {'blockNum': '0x4b6260', 'uniqueId': '0xec1371153cd9ae2c57b3ff2b00630914298d1a3b80b8545c3a23ab6fcb07fdb9:log:71', 'hash': '0xec1371153cd9ae2c57b3ff2b00630914298d1a3b80b8545c3a23ab6fcb07fdb9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x67fb8cf736057fe611a2637b70321a52190d1d22', 'value': 14.91616937504024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf00e10470d57d6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T11:59:39.000Z'}}, {'blockNum': '0x4b626b', 'uniqueId': '0x438fe07a1ca3b0921613ea7a8bb1b12609d155390e81e2ef137684ea837dfa40:log:4', 'hash': '0x438fe07a1ca3b0921613ea7a8bb1b12609d155390e81e2ef137684ea837dfa40', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x400eee3d0f80f197b9cdf3dd788f53208be010d9', 'value': 51.29017366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c7cb4d326065a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:01:21.000Z'}}, {'blockNum': '0x4b626f', 'uniqueId': '0x4912c3e72bc9ab8b2a0f931cb8422ac4e5a1f0cc14ea51e8da9717bf34c97d27:log:62', 'hash': '0x4912c3e72bc9ab8b2a0f931cb8422ac4e5a1f0cc14ea51e8da9717bf34c97d27', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 152.27301933613032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084136704f263c790e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:02:51.000Z'}}, {'blockNum': '0x4b626f', 'uniqueId': '0x4912c3e72bc9ab8b2a0f931cb8422ac4e5a1f0cc14ea51e8da9717bf34c97d27:log:64', 'hash': '0x4912c3e72bc9ab8b2a0f931cb8422ac4e5a1f0cc14ea51e8da9717bf34c97d27', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 152.27301933613032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084136704f263c790e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:02:51.000Z'}}, {'blockNum': '0x4b627c', 'uniqueId': '0x10cd4b0e548c8404a85e124d1c8b287f91a4c894d7b922f8b140928d97fe941a:log:78', 'hash': '0x10cd4b0e548c8404a85e124d1c8b287f91a4c894d7b922f8b140928d97fe941a', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 757.0611360447597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x290a557426a193b9c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:05:53.000Z'}}, {'blockNum': '0x4b627c', 'uniqueId': '0x10cd4b0e548c8404a85e124d1c8b287f91a4c894d7b922f8b140928d97fe941a:log:80', 'hash': '0x10cd4b0e548c8404a85e124d1c8b287f91a4c894d7b922f8b140928d97fe941a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 757.0611360447597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x290a557426a193b9c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:05:53.000Z'}}, {'blockNum': '0x4b628b', 'uniqueId': '0xe81521fc52b9d263246d57a8cd4a993747c8ae5c1627fb3602b8f07b1d2a79f6:log:51', 'hash': '0xe81521fc52b9d263246d57a8cd4a993747c8ae5c1627fb3602b8f07b1d2a79f6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc46b7c69fbe5787dcaea6b0300dbe7898ed82f0e', 'value': 222.276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0cb2fc54ceba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:09:18.000Z'}}, {'blockNum': '0x4b629e', 'uniqueId': '0x506f8fd0cbd195c3e2087ac1fd34c2745044d2aefb40cdce1491ffa926928543:log:106', 'hash': '0x506f8fd0cbd195c3e2087ac1fd34c2745044d2aefb40cdce1491ffa926928543', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 43.756355315694634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x025f3dcd5419c104db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:14:00.000Z'}}, {'blockNum': '0x4b629e', 'uniqueId': '0x506f8fd0cbd195c3e2087ac1fd34c2745044d2aefb40cdce1491ffa926928543:log:108', 'hash': '0x506f8fd0cbd195c3e2087ac1fd34c2745044d2aefb40cdce1491ffa926928543', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 43.756355315694634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x025f3dcd5419c104db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:14:00.000Z'}}, {'blockNum': '0x4b62cc', 'uniqueId': '0x5ae8c318f56560fbc1facd219c5ee8ea0811aaa7c372fb01957435ca3a9ce2d1:log:47', 'hash': '0x5ae8c318f56560fbc1facd219c5ee8ea0811aaa7c372fb01957435ca3a9ce2d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.917829571836224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf06c6f5211da3d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:25:45.000Z'}}, {'blockNum': '0x4b62cc', 'uniqueId': '0x5ae8c318f56560fbc1facd219c5ee8ea0811aaa7c372fb01957435ca3a9ce2d1:log:50', 'hash': '0x5ae8c318f56560fbc1facd219c5ee8ea0811aaa7c372fb01957435ca3a9ce2d1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 14.917829571836224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf06c6f5211da3d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:25:45.000Z'}}, {'blockNum': '0x4b62cc', 'uniqueId': '0x61def1ad762ce81c2d55225dcee9486a01f54f865276fc2494ded13ed842cbd6:log:67', 'hash': '0x61def1ad762ce81c2d55225dcee9486a01f54f865276fc2494ded13ed842cbd6', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.715908181029805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x78f5204fd133db1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:25:45.000Z'}}, {'blockNum': '0x4b62cc', 'uniqueId': '0x61def1ad762ce81c2d55225dcee9486a01f54f865276fc2494ded13ed842cbd6:log:69', 'hash': '0x61def1ad762ce81c2d55225dcee9486a01f54f865276fc2494ded13ed842cbd6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8.715908181029805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x78f5204fd133db1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:25:45.000Z'}}, {'blockNum': '0x4b62d9', 'uniqueId': '0xede46de8348a7c6bf69a757a41a7c23f735dd7adbb196184126995351b9b9269:log:121', 'hash': '0xede46de8348a7c6bf69a757a41a7c23f735dd7adbb196184126995351b9b9269', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.917818596218996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf06bcf9ab5987a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:29:18.000Z'}}, {'blockNum': '0x4b62d9', 'uniqueId': '0xede46de8348a7c6bf69a757a41a7c23f735dd7adbb196184126995351b9b9269:log:124', 'hash': '0xede46de8348a7c6bf69a757a41a7c23f735dd7adbb196184126995351b9b9269', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 14.917818596218996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf06bcf9ab5987a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:29:18.000Z'}}, {'blockNum': '0x4b62e6', 'uniqueId': '0x30269ca21c0b6860ce70254a2aba5c55c13b53f5ecea71ef0000f3f0e6db9ee8:log:42', 'hash': '0x30269ca21c0b6860ce70254a2aba5c55c13b53f5ecea71ef0000f3f0e6db9ee8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 44.75329738778014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026d13a6dc6e0d63b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:32:06.000Z'}}, {'blockNum': '0x4b62e6', 'uniqueId': '0x30269ca21c0b6860ce70254a2aba5c55c13b53f5ecea71ef0000f3f0e6db9ee8:log:45', 'hash': '0x30269ca21c0b6860ce70254a2aba5c55c13b53f5ecea71ef0000f3f0e6db9ee8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 44.75329738778014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026d13a6dc6e0d63b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:32:06.000Z'}}, {'blockNum': '0x4b62e8', 'uniqueId': '0x61b66a247f426480c093d7352fcccabbbecef47bf1f514883a72012e35bd9f66:log:51', 'hash': '0x61b66a247f426480c093d7352fcccabbbecef47bf1f514883a72012e35bd9f66', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x467121105adc1c0e7a75a527aef4ce00b391755a', 'value': 14.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc45ee607b3c70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:32:28.000Z'}}, {'blockNum': '0x4b62f4', 'uniqueId': '0x3276962e7a55092fb9ddc3215f95d7e7f7b1c1e86b8bf082370c66696a05509b:log:12', 'hash': '0x3276962e7a55092fb9ddc3215f95d7e7f7b1c1e86b8bf082370c66696a05509b', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4c8a8b5b2826a611b541561e4430810732b26c51', 'value': 27.0884027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0177ed56bc323b7000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:36:38.000Z'}}, {'blockNum': '0x4b62f8', 'uniqueId': '0xab28887e17aadc06e2f7d69c0ff7c34f521a6300a322174e53d599fa1caadf3a:log:22', 'hash': '0xab28887e17aadc06e2f7d69c0ff7c34f521a6300a322174e53d599fa1caadf3a', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4c8a8b5b2826a611b541561e4430810732b26c51', 'value': 3.56816222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3184a8a25811b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:37:34.000Z'}}, {'blockNum': '0x4b62f9', 'uniqueId': '0x80700caa46fcd9fa80a128f69f8b47a061fe83247c5cfe1c8516348f48846f75:log:36', 'hash': '0x80700caa46fcd9fa80a128f69f8b47a061fe83247c5cfe1c8516348f48846f75', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1044.1761595569749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x389adaecd5ad16de45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:37:46.000Z'}}, {'blockNum': '0x4b62f9', 'uniqueId': '0x80700caa46fcd9fa80a128f69f8b47a061fe83247c5cfe1c8516348f48846f75:log:39', 'hash': '0x80700caa46fcd9fa80a128f69f8b47a061fe83247c5cfe1c8516348f48846f75', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'value': 1044.1761595569749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x389adaecd5ad16de45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:37:46.000Z'}}, {'blockNum': '0x4b630e', 'uniqueId': '0xe79797a0571ac5634755fb716489ef352be45d0be2edd5eee9d75ffc97def86c:log:43', 'hash': '0xe79797a0571ac5634755fb716489ef352be45d0be2edd5eee9d75ffc97def86c', 'from': '0xab5ad302579aa47dabef238fd413786e4aa1d57e', 'to': '0xc01490b357765f8e1e26286eb78f70e443cde27f', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:41:42.000Z'}}, {'blockNum': '0x4b631b', 'uniqueId': '0x98df5c64f19d5d1e828d5908931b8c15f9bea9346d0c35837df8e37b7de72503:log:10', 'hash': '0x98df5c64f19d5d1e828d5908931b8c15f9bea9346d0c35837df8e37b7de72503', 'from': '0xab5ad302579aa47dabef238fd413786e4aa1d57e', 'to': '0xc106df34108e26ba071f96a73795cbdef6123edb', 'value': 0.69856984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09b1d1917c006000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:45:18.000Z'}}, {'blockNum': '0x4b6324', 'uniqueId': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab:log:30', 'hash': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:47:45.000Z'}}, {'blockNum': '0x4b6324', 'uniqueId': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab:log:33', 'hash': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:47:45.000Z'}}, {'blockNum': '0x4b6324', 'uniqueId': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab:log:34', 'hash': '0x88f7d3bc528627611a6804f0c684f746f1c3842c29b4660c00041676683f63ab', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:47:45.000Z'}}, {'blockNum': '0x4b6335', 'uniqueId': '0x277ff1661045ef8d5d99f63200afabe5ec5a30f269260899c6f135d76007474a:log:4', 'hash': '0x277ff1661045ef8d5d99f63200afabe5ec5a30f269260899c6f135d76007474a', 'from': '0xc01490b357765f8e1e26286eb78f70e443cde27f', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:52:57.000Z'}}, {'blockNum': '0x4b6335', 'uniqueId': '0xcf41fc63cbf1eca807c0969288d205493470aebfab344b6d12a34ea9535a56ee:log:5', 'hash': '0xcf41fc63cbf1eca807c0969288d205493470aebfab344b6d12a34ea9535a56ee', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xc6e0d645aa6ba9deb0d6139c5b4a4f77b9c14417', 'value': 7.6530535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a351b9c528f5800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:52:57.000Z'}}, {'blockNum': '0x4b6335', 'uniqueId': '0xd5e2a88fddd076b971282e47d756f63d6a1969719991fa08fa65f11744e63d50:log:82', 'hash': '0xd5e2a88fddd076b971282e47d756f63d6a1969719991fa08fa65f11744e63d50', 'from': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 52.88791105240113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ddf79ae3d6d3430d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:52:57.000Z'}}, {'blockNum': '0x4b6335', 'uniqueId': '0xd5e2a88fddd076b971282e47d756f63d6a1969719991fa08fa65f11744e63d50:log:84', 'hash': '0xd5e2a88fddd076b971282e47d756f63d6a1969719991fa08fa65f11744e63d50', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 52.88791105240113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ddf79ae3d6d3430d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:52:57.000Z'}}, {'blockNum': '0x4b6337', 'uniqueId': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837:log:30', 'hash': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:13.000Z'}}, {'blockNum': '0x4b6337', 'uniqueId': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837:log:33', 'hash': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:13.000Z'}}, {'blockNum': '0x4b6337', 'uniqueId': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837:log:34', 'hash': '0xb4a0323b64e6a1997afa5d4633a913b1b525e7d2dc8ea282af5084e4b141d837', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:13.000Z'}}, {'blockNum': '0x4b633a', 'uniqueId': '0xfd7b799631b8a7137b8dba5336a071dec16a55720522282ee52abaa9eede49a5:log:81', 'hash': '0xfd7b799631b8a7137b8dba5336a071dec16a55720522282ee52abaa9eede49a5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.4053682610617235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d230317c15d45d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:48.000Z'}}, {'blockNum': '0x4b633a', 'uniqueId': '0xfd7b799631b8a7137b8dba5336a071dec16a55720522282ee52abaa9eede49a5:log:84', 'hash': '0xfd7b799631b8a7137b8dba5336a071dec16a55720522282ee52abaa9eede49a5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.4053682610617235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d230317c15d45d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:53:48.000Z'}}, {'blockNum': '0x4b633f', 'uniqueId': '0x83a05ed0a5cd2fe67ceb490657375cad7a60df3f3cfcf59f4b40fba32203a3a6:log:2', 'hash': '0x83a05ed0a5cd2fe67ceb490657375cad7a60df3f3cfcf59f4b40fba32203a3a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc5669a244f943c05b36a7b9931c3dc24bacda860', 'value': 200.19882267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ada51188500c50c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:55:14.000Z'}}, {'blockNum': '0x4b6348', 'uniqueId': '0xdd225115108a3f012f3dcfcde01529eb50398ec59356e86d88b0db03f435b99d:log:30', 'hash': '0xdd225115108a3f012f3dcfcde01529eb50398ec59356e86d88b0db03f435b99d', 'from': '0xdf4e8138ba453ef80d1623db998b5bb130ece33b', 'to': '0x76110779be9c603aa2b6032bed095e19c840c143', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:56:24.000Z'}}, {'blockNum': '0x4b6352', 'uniqueId': '0xa9a52fa4dc6e972837139a1b0db1e62ce7800e3d62710a1bbadd8d8e4e01b9a9:log:67', 'hash': '0xa9a52fa4dc6e972837139a1b0db1e62ce7800e3d62710a1bbadd8d8e4e01b9a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 15998.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x036347c9ca506eea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:59:32.000Z'}}, {'blockNum': '0x4b6355', 'uniqueId': '0x68fca94dbb4d4f461ab1dea0f15c304eaf65ae68c97362b5975387845add8d35:log:15', 'hash': '0x68fca94dbb4d4f461ab1dea0f15c304eaf65ae68c97362b5975387845add8d35', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0xc46b7c69fbe5787dcaea6b0300dbe7898ed82f0e', 'value': 198.332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ac068cf3128c60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T12:59:48.000Z'}}, {'blockNum': '0x4b6358', 'uniqueId': '0x59fddf4cc421a3be37e289fe7ac849408f42fe25945bca582328bde14e4c71ff:log:11', 'hash': '0x59fddf4cc421a3be37e289fe7ac849408f42fe25945bca582328bde14e4c71ff', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x19dfb110b6f6f5f6d7c40bb580b62b3816a660f8', 'value': 5.38599641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4abee732db944400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:00:24.000Z'}}, {'blockNum': '0x4b6361', 'uniqueId': '0x5d9ccd17a24065423b31c60cda15cbddfbdac906571e39beda82bc2bde7f939a:log:11', 'hash': '0x5d9ccd17a24065423b31c60cda15cbddfbdac906571e39beda82bc2bde7f939a', 'from': '0xc106df34108e26ba071f96a73795cbdef6123edb', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 0.69856984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09b1d1917c006000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:02:46.000Z'}}, {'blockNum': '0x4b636d', 'uniqueId': '0x8ce370bb9d7dd1ce2caaba16ac9d36cbba793797c8720b18001153f2729e4b34:log:63', 'hash': '0x8ce370bb9d7dd1ce2caaba16ac9d36cbba793797c8720b18001153f2729e4b34', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 42.24213039071717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x024a3a31c82e6dfe83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:05:41.000Z'}}, {'blockNum': '0x4b636d', 'uniqueId': '0x8ce370bb9d7dd1ce2caaba16ac9d36cbba793797c8720b18001153f2729e4b34:log:66', 'hash': '0x8ce370bb9d7dd1ce2caaba16ac9d36cbba793797c8720b18001153f2729e4b34', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 42.24213039071717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x024a3a31c82e6dfe83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:05:41.000Z'}}, {'blockNum': '0x4b6384', 'uniqueId': '0xd16471610b4c930853952ab1d1588e3d544f9741e3c902b77c1daaf5efe92e70:log:67', 'hash': '0xd16471610b4c930853952ab1d1588e3d544f9741e3c902b77c1daaf5efe92e70', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 321.7305683549426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1170e8975134e2f243', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:10:36.000Z'}}, {'blockNum': '0x4b6384', 'uniqueId': '0xd16471610b4c930853952ab1d1588e3d544f9741e3c902b77c1daaf5efe92e70:log:69', 'hash': '0xd16471610b4c930853952ab1d1588e3d544f9741e3c902b77c1daaf5efe92e70', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 321.7305683549426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1170e8975134e2f243', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:10:36.000Z'}}, {'blockNum': '0x4b6386', 'uniqueId': '0x72cdd9882fa6980b0895d710184cbd7c62e3bb9a2743a4ec5717cbca0f56d706:log:9', 'hash': '0x72cdd9882fa6980b0895d710184cbd7c62e3bb9a2743a4ec5717cbca0f56d706', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x89b21c097a7821d9c4b515c2bcddb149b3cb873d', 'value': 641.11075278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22c132f0e72f2e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:11:22.000Z'}}, {'blockNum': '0x4b6388', 'uniqueId': '0x9f80b353aee14cc0dcdf83951aceae4bc712129d0dc38d43a51f0f54a422b2d2:log:44', 'hash': '0x9f80b353aee14cc0dcdf83951aceae4bc712129d0dc38d43a51f0f54a422b2d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3.7317692214911875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33c9e855ceb7df94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:11:52.000Z'}}, {'blockNum': '0x4b6388', 'uniqueId': '0x9f80b353aee14cc0dcdf83951aceae4bc712129d0dc38d43a51f0f54a422b2d2:log:47', 'hash': '0x9f80b353aee14cc0dcdf83951aceae4bc712129d0dc38d43a51f0f54a422b2d2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 3.7317692214911875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33c9e855ceb7df94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:11:52.000Z'}}, {'blockNum': '0x4b638c', 'uniqueId': '0x058550c87292eebdfd5ef6caffb119c4d26bc748ecd27e5a3234abe53bacc78d:log:12', 'hash': '0x058550c87292eebdfd5ef6caffb119c4d26bc748ecd27e5a3234abe53bacc78d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.686872816444858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2549b09744d95fb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:12:43.000Z'}}, {'blockNum': '0x4b638c', 'uniqueId': '0x058550c87292eebdfd5ef6caffb119c4d26bc748ecd27e5a3234abe53bacc78d:log:15', 'hash': '0x058550c87292eebdfd5ef6caffb119c4d26bc748ecd27e5a3234abe53bacc78d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 2.686872816444858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2549b09744d95fb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:12:43.000Z'}}, {'blockNum': '0x4b6395', 'uniqueId': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855:log:72', 'hash': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:16:03.000Z'}}, {'blockNum': '0x4b6395', 'uniqueId': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855:log:75', 'hash': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:16:03.000Z'}}, {'blockNum': '0x4b6395', 'uniqueId': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855:log:76', 'hash': '0x57e6caa9d148981648a21e46cc11868e0ad608f1c70f06b2ef28500c86062855', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:16:03.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377:log:47', 'hash': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377:log:50', 'hash': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377:log:51', 'hash': '0xe0903868f33e2f47ba3e2b3e6cc750033b6583203f6e7be8875a2aa31989a377', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0x53ae1ceaee799556ca4fb07ef29557fca55974abd9c57293ea28431b6350dabd:log:66', 'hash': '0x53ae1ceaee799556ca4fb07ef29557fca55974abd9c57293ea28431b6350dabd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 297.47491333531786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10204b3196bdbbb2fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63aa', 'uniqueId': '0x53ae1ceaee799556ca4fb07ef29557fca55974abd9c57293ea28431b6350dabd:log:69', 'hash': '0x53ae1ceaee799556ca4fb07ef29557fca55974abd9c57293ea28431b6350dabd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 297.47491333531786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10204b3196bdbbb2fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:20:24.000Z'}}, {'blockNum': '0x4b63b5', 'uniqueId': '0xd00403c579509f53c0cce7c7e12d25f9f92aa9e2b3589770dac763890f34ee05:log:57', 'hash': '0xd00403c579509f53c0cce7c7e12d25f9f92aa9e2b3589770dac763890f34ee05', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 41.833902105816406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02448fe051d9a7112c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:22:39.000Z'}}, {'blockNum': '0x4b63b5', 'uniqueId': '0xd00403c579509f53c0cce7c7e12d25f9f92aa9e2b3589770dac763890f34ee05:log:60', 'hash': '0xd00403c579509f53c0cce7c7e12d25f9f92aa9e2b3589770dac763890f34ee05', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 41.833902105816406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02448fe051d9a7112c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:22:39.000Z'}}, {'blockNum': '0x4b63c1', 'uniqueId': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480:log:54', 'hash': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:24:10.000Z'}}, {'blockNum': '0x4b63c1', 'uniqueId': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480:log:57', 'hash': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:24:10.000Z'}}, {'blockNum': '0x4b63c1', 'uniqueId': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480:log:58', 'hash': '0x6ab4127d702549cbf6bbce1eedda2ca5fdd9a08aece916adbc90e6e8d34a3480', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:24:10.000Z'}}, {'blockNum': '0x4b63cb', 'uniqueId': '0xdcf9c4d14939c6bfbe1621076848e2967fc4ede5f4af7a1c5297bb3b572f05bf:log:30', 'hash': '0xdcf9c4d14939c6bfbe1621076848e2967fc4ede5f4af7a1c5297bb3b572f05bf', 'from': '0x49ce81b3a8102460e0d81dd600a722436a6279de', 'to': '0xc11769b7dde1ffb20463f2064ddf75a617b2b1c5', 'value': 15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd02ab486cedc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:26:22.000Z'}}, {'blockNum': '0x4b63d1', 'uniqueId': '0x1701392696644499187ec4725308f55ae8f930e84dd164b8790b2a4bccb39397:log:51', 'hash': '0x1701392696644499187ec4725308f55ae8f930e84dd164b8790b2a4bccb39397', 'from': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1198.9038506367372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40fe221c16dab44873', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:28:24.000Z'}}, {'blockNum': '0x4b63d1', 'uniqueId': '0x1701392696644499187ec4725308f55ae8f930e84dd164b8790b2a4bccb39397:log:53', 'hash': '0x1701392696644499187ec4725308f55ae8f930e84dd164b8790b2a4bccb39397', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1198.9038506367372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40fe221c16dab44873', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:28:24.000Z'}}, {'blockNum': '0x4b63f2', 'uniqueId': '0x907982de71c92bc60804b2ebe11d11c2fa07b470939487320af7fc7152086b62:log:1', 'hash': '0x907982de71c92bc60804b2ebe11d11c2fa07b470939487320af7fc7152086b62', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdfc670dda0e6962661f38667f65daab9a1d701ac', 'value': 73.50816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03fc21720e9c940000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:35:05.000Z'}}, {'blockNum': '0x4b63f7', 'uniqueId': '0x5400e8fd27d7154e122440788250e9265c6919a0995c35efd029af7ff35d72f3:log:78', 'hash': '0x5400e8fd27d7154e122440788250e9265c6919a0995c35efd029af7ff35d72f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 50.753316787625266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c05800b73b460c45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:36:06.000Z'}}, {'blockNum': '0x4b63f7', 'uniqueId': '0x5400e8fd27d7154e122440788250e9265c6919a0995c35efd029af7ff35d72f3:log:81', 'hash': '0x5400e8fd27d7154e122440788250e9265c6919a0995c35efd029af7ff35d72f3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 50.753316787625266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c05800b73b460c45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:36:06.000Z'}}, {'blockNum': '0x4b63ff', 'uniqueId': '0x61c690ee2c9083b4362f73cf0ea15d53643658ab2fe38f7399b564b0276cdc3b:log:3', 'hash': '0x61c690ee2c9083b4362f73cf0ea15d53643658ab2fe38f7399b564b0276cdc3b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfa44a846b04f17661d67b0e9dbae85bffdf306c9', 'value': 10.40172683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x905a5b70f0cccc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:37:00.000Z'}}, {'blockNum': '0x4b640c', 'uniqueId': '0x77bbe8e36a6f1e4dced099d1482c198b4afcadcf1803fa0c30a0135be2968d69:log:9', 'hash': '0x77bbe8e36a6f1e4dced099d1482c198b4afcadcf1803fa0c30a0135be2968d69', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ae2b017fea73623942698084c6a5339ed204281', 'value': 2729.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x93fb1d021472f70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:39:26.000Z'}}, {'blockNum': '0x4b641f', 'uniqueId': '0xd8a9de28c81b47963cca25951b905e661c14ba45162bac3216a150c83cb4faa6:log:99', 'hash': '0xd8a9de28c81b47963cca25951b905e661c14ba45162bac3216a150c83cb4faa6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 28689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06133bdabb29dda40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:43:21.000Z'}}, {'blockNum': '0x4b6423', 'uniqueId': '0x267d1c55e4b8da0c981c349beab228540b78d9d59b88c7e0a43dd27220e688ce:log:73', 'hash': '0x267d1c55e4b8da0c981c349beab228540b78d9d59b88c7e0a43dd27220e688ce', 'from': '0xb408cc992d0572652638f0677aac1fc35cf03070', 'to': '0x4a3e34ce7e79c47638c9053a776127271a1fffe9', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:43:42.000Z'}}, {'blockNum': '0x4b642f', 'uniqueId': '0x9cc4788cbd58217bd3312fe530cc2ec5565901f2b252fc2f75cf07ede8786771:log:258', 'hash': '0x9cc4788cbd58217bd3312fe530cc2ec5565901f2b252fc2f75cf07ede8786771', 'from': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.2293467493070036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032ecda742d5a2dd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:45:57.000Z'}}, {'blockNum': '0x4b642f', 'uniqueId': '0x9cc4788cbd58217bd3312fe530cc2ec5565901f2b252fc2f75cf07ede8786771:log:261', 'hash': '0x9cc4788cbd58217bd3312fe530cc2ec5565901f2b252fc2f75cf07ede8786771', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.2293467493070036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032ecda742d5a2dd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:45:57.000Z'}}, {'blockNum': '0x4b6439', 'uniqueId': '0x071a070a2a92567e9ad9be7535edc160d1026e3e7675a4cd4bc9fb09609b2d68:log:13', 'hash': '0x071a070a2a92567e9ad9be7535edc160d1026e3e7675a4cd4bc9fb09609b2d68', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5b54f91e4f806fe8775f195481b9e1ca5ecee2f9', 'value': 2.75333926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2635d3781a6fd800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:48:54.000Z'}}, {'blockNum': '0x4b643d', 'uniqueId': '0xcb63fbd55f7f128dc463e50319de1288ce3e3632a358f6f4de8d7e3e233f67fa:log:16', 'hash': '0xcb63fbd55f7f128dc463e50319de1288ce3e3632a358f6f4de8d7e3e233f67fa', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x9223261860c402713fbb21caed072ba8dfc5260f', 'value': 1001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3643aa647986040000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:50:12.000Z'}}, {'blockNum': '0x4b6440', 'uniqueId': '0x23569c743273969778d7376abf54865d4d54e3720efb850f41a93ffa4a7bd635:log:38', 'hash': '0x23569c743273969778d7376abf54865d4d54e3720efb850f41a93ffa4a7bd635', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 747.3667492483279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2883cc12b8fd054210', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:51:32.000Z'}}, {'blockNum': '0x4b6440', 'uniqueId': '0x23569c743273969778d7376abf54865d4d54e3720efb850f41a93ffa4a7bd635:log:41', 'hash': '0x23569c743273969778d7376abf54865d4d54e3720efb850f41a93ffa4a7bd635', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'value': 747.3667492483279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2883cc12b8fd054210', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:51:32.000Z'}}, {'blockNum': '0x4b6455', 'uniqueId': '0x1657d0fb20b85e7f91b311310cc46733f1c20e19e3802bee8da02e49b54e64dc:log:32', 'hash': '0x1657d0fb20b85e7f91b311310cc46733f1c20e19e3802bee8da02e49b54e64dc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2241.70267471657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7985dfc19adc3343a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:55:50.000Z'}}, {'blockNum': '0x4b6455', 'uniqueId': '0x1657d0fb20b85e7f91b311310cc46733f1c20e19e3802bee8da02e49b54e64dc:log:34', 'hash': '0x1657d0fb20b85e7f91b311310cc46733f1c20e19e3802bee8da02e49b54e64dc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2241.70267471657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7985dfc19adc3343a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:55:50.000Z'}}, {'blockNum': '0x4b6455', 'uniqueId': '0xdc81d5388bc12202f427e89da59fd2f0173037be08c443d3749745855de3ac97:log:40', 'hash': '0xdc81d5388bc12202f427e89da59fd2f0173037be08c443d3749745855de3ac97', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.495068463467067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75e48bc23b93f864', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:55:50.000Z'}}, {'blockNum': '0x4b6455', 'uniqueId': '0xdc81d5388bc12202f427e89da59fd2f0173037be08c443d3749745855de3ac97:log:43', 'hash': '0xdc81d5388bc12202f427e89da59fd2f0173037be08c443d3749745855de3ac97', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 8.495068463467067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75e48bc23b93f864', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:55:50.000Z'}}, {'blockNum': '0x4b645a', 'uniqueId': '0x3ce5ad342831fdab366c0cf51c5d4e039c4ca5476cddaa0a48bf526cf359cae5:log:41', 'hash': '0x3ce5ad342831fdab366c0cf51c5d4e039c4ca5476cddaa0a48bf526cf359cae5', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 119.42095950808712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06794c79f407d7168c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:56:33.000Z'}}, {'blockNum': '0x4b645a', 'uniqueId': '0x3ce5ad342831fdab366c0cf51c5d4e039c4ca5476cddaa0a48bf526cf359cae5:log:43', 'hash': '0x3ce5ad342831fdab366c0cf51c5d4e039c4ca5476cddaa0a48bf526cf359cae5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 119.42095950808712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06794c79f407d7168c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:56:33.000Z'}}, {'blockNum': '0x4b645c', 'uniqueId': '0xb0b2c935da54db8f824aeebb6df16b87a8a435cf8e516d1566cb94493e77f5cd:log:28', 'hash': '0xb0b2c935da54db8f824aeebb6df16b87a8a435cf8e516d1566cb94493e77f5cd', 'from': '0x4e0002e5c82ce539309537b3151e2a80c7a58bd1', 'to': '0xdbc07b30e8f32484b8720654cfef7c922f448ab4', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T13:57:10.000Z'}}, {'blockNum': '0x4b646a', 'uniqueId': '0x1375eb6eef14f1a1f3a09e7caea84b93ec66991dfc048a39cfa8027a615cef11:log:37', 'hash': '0x1375eb6eef14f1a1f3a09e7caea84b93ec66991dfc048a39cfa8027a615cef11', 'from': '0x61a1a51451d6e641e6e1e774d75f09f48f56c02f', 'to': '0xba348ae2dacc7cef6c3359d87f29260029f59a4c', 'value': 447.74541512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1845b742cb756a2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:01:47.000Z'}}, {'blockNum': '0x4b6472', 'uniqueId': '0xf36878247e12c192c9b875df2eea4a93fc60d9ec0dd67a60a7153eb96b3cd35d:log:40', 'hash': '0xf36878247e12c192c9b875df2eea4a93fc60d9ec0dd67a60a7153eb96b3cd35d', 'from': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 169.58341480742612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0931715146a25a2e77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:03:44.000Z'}}, {'blockNum': '0x4b6472', 'uniqueId': '0xf36878247e12c192c9b875df2eea4a93fc60d9ec0dd67a60a7153eb96b3cd35d:log:42', 'hash': '0xf36878247e12c192c9b875df2eea4a93fc60d9ec0dd67a60a7153eb96b3cd35d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 169.58341480742612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0931715146a25a2e77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:03:44.000Z'}}, {'blockNum': '0x4b647d', 'uniqueId': '0x08ba07e732c3a2b679e29788979779a5f1ad383ce3442d85f408939d66445f15:log:77', 'hash': '0x08ba07e732c3a2b679e29788979779a5f1ad383ce3442d85f408939d66445f15', 'from': '0x1a305c9204184e858474e3b90105daa3f377a6ed', 'to': '0x8da657b039735b495e16a1c5c40b87837131592d', 'value': 27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0176b344f2a78c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:06:05.000Z'}}, {'blockNum': '0x4b648d', 'uniqueId': '0x811f1e0083948e000b34a60301f43c95d5446eff6d07cb902537fce5ebc05fff:log:3', 'hash': '0x811f1e0083948e000b34a60301f43c95d5446eff6d07cb902537fce5ebc05fff', 'from': '0xe5a191d687753bc29d510e1e0719847e934791cb', 'to': '0x08254c92a181e0249ae22317c9715581a5af403e', 'value': 200.6639307706807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ae0c57ddf74002ffd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:09:00.000Z'}}, {'blockNum': '0x4b6491', 'uniqueId': '0xeab19a3e447ab3d56a1b8af65e9f79948598f71c9a1439bcca3766503f267d60:log:19', 'hash': '0xeab19a3e447ab3d56a1b8af65e9f79948598f71c9a1439bcca3766503f267d60', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5b54f91e4f806fe8775f195481b9e1ca5ecee2f9', 'value': 6.86432026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5f42f6e861d12800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:11:35.000Z'}}, {'blockNum': '0x4b6494', 'uniqueId': '0x03919bf97ed68d1716e82a386c95b53935a10dd3f95cb66ef1815a8d644a3f43:log:32', 'hash': '0x03919bf97ed68d1716e82a386c95b53935a10dd3f95cb66ef1815a8d644a3f43', 'from': '0x95c891f82bed97e307e333820b899e02a992ce99', 'to': '0x893edd2b8293053ab6abbe5dca14bcd9a06333e4', 'value': 4996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ed56d8a0ebb900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:12:09.000Z'}}, {'blockNum': '0x4b649d', 'uniqueId': '0x2cb0fea486262dccc14d3014ae623d61e5f5dc75e2987c541ab184b3219c2dc4:log:15', 'hash': '0x2cb0fea486262dccc14d3014ae623d61e5f5dc75e2987c541ab184b3219c2dc4', 'from': '0x95c891f82bed97e307e333820b899e02a992ce99', 'to': '0x950a53330fa298b0d6ce05c31c4f696d026bed06', 'value': 4996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ed56d8a0ebb900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:14:56.000Z'}}, {'blockNum': '0x4b64a4', 'uniqueId': '0x0bbffeb81528f256e76d4a08aa05dbd1f1330cc0df77d5b08dc3e8f4c5bf8f12:log:13', 'hash': '0x0bbffeb81528f256e76d4a08aa05dbd1f1330cc0df77d5b08dc3e8f4c5bf8f12', 'from': '0xba348ae2dacc7cef6c3359d87f29260029f59a4c', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 447.74541512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1845b742cb756a2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:16:44.000Z'}}, {'blockNum': '0x4b64ab', 'uniqueId': '0x333f9338b14cdfa2b9002ee2e8f68f03253c23ffc488dcacebeac77f043645ca:log:13', 'hash': '0x333f9338b14cdfa2b9002ee2e8f68f03253c23ffc488dcacebeac77f043645ca', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xdc113710349087b9ed228091a25630f129841317', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:18:02.000Z'}}, {'blockNum': '0x4b64b6', 'uniqueId': '0x9dfc6c1a00eb6f46a70a6aa4f3d3bcbbe4e169b250d94d303b60efdcff281692:log:40', 'hash': '0x9dfc6c1a00eb6f46a70a6aa4f3d3bcbbe4e169b250d94d303b60efdcff281692', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 177.9799969143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09a5f7f837174de36d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:20:12.000Z'}}, {'blockNum': '0x4b64b6', 'uniqueId': '0x9dfc6c1a00eb6f46a70a6aa4f3d3bcbbe4e169b250d94d303b60efdcff281692:log:42', 'hash': '0x9dfc6c1a00eb6f46a70a6aa4f3d3bcbbe4e169b250d94d303b60efdcff281692', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 177.9799969143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09a5f7f837174de36d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:20:12.000Z'}}, {'blockNum': '0x4b64bf', 'uniqueId': '0x32c79fd36ffbbd75c72c3714120c494fc944c1f76beae267953b4ea3406878b6:log:27', 'hash': '0x32c79fd36ffbbd75c72c3714120c494fc944c1f76beae267953b4ea3406878b6', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xa3bae6ed5a1c43b51c4d741d722742b83b93a086', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:22:31.000Z'}}, {'blockNum': '0x4b64d5', 'uniqueId': '0xda8c88fcde5ccb510855518081f846c7f796a5db70fdee6154d1fe202da61133:log:13', 'hash': '0xda8c88fcde5ccb510855518081f846c7f796a5db70fdee6154d1fe202da61133', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x93b75fa013711808b227c963caf1e60d537a2b78', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:27:45.000Z'}}, {'blockNum': '0x4b64e1', 'uniqueId': '0x3588265971f70b6f5d028454bd12d37f1699d1693cbbf7257c0c69ae47515b44:log:36', 'hash': '0x3588265971f70b6f5d028454bd12d37f1699d1693cbbf7257c0c69ae47515b44', 'from': '0x08254c92a181e0249ae22317c9715581a5af403e', 'to': '0x5eea162fee75a7635b80aa72c43ac7f9633cc8b4', 'value': 200.6639307706807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ae0c57ddf74002ffd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:30:25.000Z'}}, {'blockNum': '0x4b64e6', 'uniqueId': '0xf25f9b71221e4862775ca5ba928a4dfb6ae2de4a58121ef4367dadcd20f862cd:log:12', 'hash': '0xf25f9b71221e4862775ca5ba928a4dfb6ae2de4a58121ef4367dadcd20f862cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1494.2185400240462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x510072a57158132065', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:31:35.000Z'}}, {'blockNum': '0x4b64e6', 'uniqueId': '0xf25f9b71221e4862775ca5ba928a4dfb6ae2de4a58121ef4367dadcd20f862cd:log:14', 'hash': '0xf25f9b71221e4862775ca5ba928a4dfb6ae2de4a58121ef4367dadcd20f862cd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1494.2185400240462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x510072a57158132065', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:31:35.000Z'}}, {'blockNum': '0x4b64e9', 'uniqueId': '0x4122af512c5849a4fa32c8ae6e88fdc1c6d6fc6e32cc348e1bfeb67c08462de7:log:33', 'hash': '0x4122af512c5849a4fa32c8ae6e88fdc1c6d6fc6e32cc348e1bfeb67c08462de7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 11.504455051794272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fa808ea98a55265', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:32:14.000Z'}}, {'blockNum': '0x4b64e9', 'uniqueId': '0x4122af512c5849a4fa32c8ae6e88fdc1c6d6fc6e32cc348e1bfeb67c08462de7:log:36', 'hash': '0x4122af512c5849a4fa32c8ae6e88fdc1c6d6fc6e32cc348e1bfeb67c08462de7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 11.504455051794272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fa808ea98a55265', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:32:14.000Z'}}, {'blockNum': '0x4b64f4', 'uniqueId': '0xd55b7e6faf72e93690cc531e0572456b6bfb188018fca07cb38b71eddcd26cdc:log:49', 'hash': '0xd55b7e6faf72e93690cc531e0572456b6bfb188018fca07cb38b71eddcd26cdc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.9999999999999998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec7ff77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:34:26.000Z'}}, {'blockNum': '0x4b64f4', 'uniqueId': '0xd55b7e6faf72e93690cc531e0572456b6bfb188018fca07cb38b71eddcd26cdc:log:51', 'hash': '0xd55b7e6faf72e93690cc531e0572456b6bfb188018fca07cb38b71eddcd26cdc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x20db35d984ea19427035dcdfdac2c8a4a0e8f001', 'value': 1.9999999999999998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec7ff77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:34:26.000Z'}}, {'blockNum': '0x4b64f7', 'uniqueId': '0x7dd8eb2c57b0d4d3689069fde06a62001576a2cdfa5c057f2406376db5b274de:log:79', 'hash': '0x7dd8eb2c57b0d4d3689069fde06a62001576a2cdfa5c057f2406376db5b274de', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 57.342009365727556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031bc7bdb50750397d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:35:08.000Z'}}, {'blockNum': '0x4b64f7', 'uniqueId': '0x7dd8eb2c57b0d4d3689069fde06a62001576a2cdfa5c057f2406376db5b274de:log:81', 'hash': '0x7dd8eb2c57b0d4d3689069fde06a62001576a2cdfa5c057f2406376db5b274de', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 57.342009365727556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031bc7bdb50750397d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:35:08.000Z'}}, {'blockNum': '0x4b64fe', 'uniqueId': '0x4543c1f2afe7558c712e6d64e9424847fb02a84f35d8c91822fc3a6c87880060:log:22', 'hash': '0x4543c1f2afe7558c712e6d64e9424847fb02a84f35d8c91822fc3a6c87880060', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.70436205395367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040cbb357cc6145cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:36:06.000Z'}}, {'blockNum': '0x4b64fe', 'uniqueId': '0x4543c1f2afe7558c712e6d64e9424847fb02a84f35d8c91822fc3a6c87880060:log:24', 'hash': '0x4543c1f2afe7558c712e6d64e9424847fb02a84f35d8c91822fc3a6c87880060', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0a790ab519b15fb06dbb7b71ab6137890135510a', 'value': 74.70436205395367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040cbb357cc6145cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:36:06.000Z'}}, {'blockNum': '0x4b6502', 'uniqueId': '0x60a30a9de1bb18f24c20638e4b6195e6012e8ab8ac4a3bdd0e58451d373ab809:log:21', 'hash': '0x60a30a9de1bb18f24c20638e4b6195e6012e8ab8ac4a3bdd0e58451d373ab809', 'from': '0x5eea162fee75a7635b80aa72c43ac7f9633cc8b4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 200.66393077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ae0c57ddf4b6d3400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:37:10.000Z'}}, {'blockNum': '0x4b650d', 'uniqueId': '0xf8392e8d1ca0e5416c4fb9b287b5748e70c7a08f60a922fcc8054d1d6bdaad11:log:13', 'hash': '0xf8392e8d1ca0e5416c4fb9b287b5748e70c7a08f60a922fcc8054d1d6bdaad11', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x0b1e1e650ba4af35091cf9295bf0cbc6ebcd471f', 'value': 2.7194736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25bd82d4b00d8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:39:42.000Z'}}, {'blockNum': '0x4b651b', 'uniqueId': '0x046a5a082add1388e7321733e64f7119621cac1a80b16820ebce8d3b868724b8:log:60', 'hash': '0x046a5a082add1388e7321733e64f7119621cac1a80b16820ebce8d3b868724b8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.462514438057567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dee093ced79211e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:43:09.000Z'}}, {'blockNum': '0x4b651b', 'uniqueId': '0x046a5a082add1388e7321733e64f7119621cac1a80b16820ebce8d3b868724b8:log:63', 'hash': '0x046a5a082add1388e7321733e64f7119621cac1a80b16820ebce8d3b868724b8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.462514438057567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dee093ced79211e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:43:09.000Z'}}, {'blockNum': '0x4b651e', 'uniqueId': '0xc529c1f5024ac1df5e6338f513f4c5c5dcb4ca71b7d4a1e0bf2a96b83cf8fc29:log:54', 'hash': '0xc529c1f5024ac1df5e6338f513f4c5c5dcb4ca71b7d4a1e0bf2a96b83cf8fc29', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 62.37591905387519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0361a3c7e5d0c00e82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:44:00.000Z'}}, {'blockNum': '0x4b651e', 'uniqueId': '0xc529c1f5024ac1df5e6338f513f4c5c5dcb4ca71b7d4a1e0bf2a96b83cf8fc29:log:57', 'hash': '0xc529c1f5024ac1df5e6338f513f4c5c5dcb4ca71b7d4a1e0bf2a96b83cf8fc29', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 62.37591905387519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0361a3c7e5d0c00e82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:44:00.000Z'}}, {'blockNum': '0x4b6528', 'uniqueId': '0x6eb034698d19b3c7ea9eecafd90d528c9ece40acfc1d45e5b43b1ecda55eba74:log:14', 'hash': '0x6eb034698d19b3c7ea9eecafd90d528c9ece40acfc1d45e5b43b1ecda55eba74', 'from': '0x1954cc7945f653d27da5f95b448ea543a7cb68f1', 'to': '0xbda67d64bcca85609ce66386951b8be1dd2b5502', 'value': 74.29523498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04070db294cf136800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:46:40.000Z'}}, {'blockNum': '0x4b652b', 'uniqueId': '0xc96a1ac684a617e265e21c3348529dd69c2d9f475e2b640bffa9d34326d1bd34:log:44', 'hash': '0xc96a1ac684a617e265e21c3348529dd69c2d9f475e2b640bffa9d34326d1bd34', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 364.97302865200186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c904abd95908b82d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:47:16.000Z'}}, {'blockNum': '0x4b652b', 'uniqueId': '0xc96a1ac684a617e265e21c3348529dd69c2d9f475e2b640bffa9d34326d1bd34:log:46', 'hash': '0xc96a1ac684a617e265e21c3348529dd69c2d9f475e2b640bffa9d34326d1bd34', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 364.97302865200186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c904abd95908b82d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:47:16.000Z'}}, {'blockNum': '0x4b653e', 'uniqueId': '0xd98161e431b8b885a96da79d56f22ebafed7310941cb91724a50ae65983cd91f:log:11', 'hash': '0xd98161e431b8b885a96da79d56f22ebafed7310941cb91724a50ae65983cd91f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x7c9cc661be3b7682d6dc76e5c48fcbaaac35c28d', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:50:38.000Z'}}, {'blockNum': '0x4b653e', 'uniqueId': '0x293290a2e118a24a132fdb19309008b403b9d07454eb0373b6ecff8d0dcc2073:log:75', 'hash': '0x293290a2e118a24a132fdb19309008b403b9d07454eb0373b6ecff8d0dcc2073', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.993536738661142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7ccf760396528e17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:50:38.000Z'}}, {'blockNum': '0x4b653e', 'uniqueId': '0x293290a2e118a24a132fdb19309008b403b9d07454eb0373b6ecff8d0dcc2073:log:78', 'hash': '0x293290a2e118a24a132fdb19309008b403b9d07454eb0373b6ecff8d0dcc2073', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xec64bd6efff779637f10b58109ff74e4f4212918', 'value': 8.993536738661142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7ccf760396528e17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:50:38.000Z'}}, {'blockNum': '0x4b654b', 'uniqueId': '0x315e1cb440ea8a1a8e53bcccbb0181993c009a0f6a167dd127c3c2665091c475:log:66', 'hash': '0x315e1cb440ea8a1a8e53bcccbb0181993c009a0f6a167dd127c3c2665091c475', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 25.445027467682227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01611ee5ab1741a73c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:53:18.000Z'}}, {'blockNum': '0x4b654b', 'uniqueId': '0x315e1cb440ea8a1a8e53bcccbb0181993c009a0f6a167dd127c3c2665091c475:log:69', 'hash': '0x315e1cb440ea8a1a8e53bcccbb0181993c009a0f6a167dd127c3c2665091c475', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 25.445027467682227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01611ee5ab1741a73c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:53:18.000Z'}}, {'blockNum': '0x4b655b', 'uniqueId': '0x3a3cb05bd6a2cc73919d393380ed3bafcdc0d18b95a9b4d9491eb5ed530b5f29:log:62', 'hash': '0x3a3cb05bd6a2cc73919d393380ed3bafcdc0d18b95a9b4d9491eb5ed530b5f29', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.94126042442978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf5a05319ebd3a4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:56:25.000Z'}}, {'blockNum': '0x4b655b', 'uniqueId': '0x3a3cb05bd6a2cc73919d393380ed3bafcdc0d18b95a9b4d9491eb5ed530b5f29:log:65', 'hash': '0x3a3cb05bd6a2cc73919d393380ed3bafcdc0d18b95a9b4d9491eb5ed530b5f29', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'value': 14.94126042442978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf5a05319ebd3a4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:56:25.000Z'}}, {'blockNum': '0x4b6560', 'uniqueId': '0xf0a500471aedd0b32796c87245758a9d95ed503b194e0c3dbcc176b27fdc923f:log:71', 'hash': '0xf0a500471aedd0b32796c87245758a9d95ed503b194e0c3dbcc176b27fdc923f', 'from': '0x7efded0e74bcacab1cd7008b129ee3c744809ecb', 'to': '0x00e1c55efd0bbb953b8d14feb54dde5d918ce0ed', 'value': 325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x119e47f21381f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T14:57:04.000Z'}}, {'blockNum': '0x4b656a', 'uniqueId': '0x0583eef8b5c786d129cefd0b6708908978f62c584e18852ab3c4afb242b6bb63:log:51', 'hash': '0x0583eef8b5c786d129cefd0b6708908978f62c584e18852ab3c4afb242b6bb63', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1495.6810747623656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5114be9d09d5433fe3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:00:38.000Z'}}, {'blockNum': '0x4b656a', 'uniqueId': '0x0583eef8b5c786d129cefd0b6708908978f62c584e18852ab3c4afb242b6bb63:log:54', 'hash': '0x0583eef8b5c786d129cefd0b6708908978f62c584e18852ab3c4afb242b6bb63', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1495.6810747623656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5114be9d09d5433fe3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:00:38.000Z'}}, {'blockNum': '0x4b656a', 'uniqueId': '0x2a7b4abbbba7b62a89fd9452066e913531f7967b51ce6c224da7d1d01151d8ec:log:68', 'hash': '0x2a7b4abbbba7b62a89fd9452066e913531f7967b51ce6c224da7d1d01151d8ec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 35.90321851112539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f241db0330dba4be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:00:38.000Z'}}, {'blockNum': '0x4b656a', 'uniqueId': '0x2a7b4abbbba7b62a89fd9452066e913531f7967b51ce6c224da7d1d01151d8ec:log:71', 'hash': '0x2a7b4abbbba7b62a89fd9452066e913531f7967b51ce6c224da7d1d01151d8ec', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 35.90321851112539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f241db0330dba4be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:00:38.000Z'}}, {'blockNum': '0x4b656c', 'uniqueId': '0x63c61cccad9b78448a0147b20ccb8037e0f4b7997a39a3e5fa01f9425f09b258:log:4', 'hash': '0x63c61cccad9b78448a0147b20ccb8037e0f4b7997a39a3e5fa01f9425f09b258', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8104d0be75ad95ec81a8003c43cbfc8cbecef633', 'value': 8.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f610f70ed20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:01:25.000Z'}}, {'blockNum': '0x4b6572', 'uniqueId': '0xa0c56916a4e9aa82deae7965dc597012eb98d412e95e61f58aa17254c225df3e:log:21', 'hash': '0xa0c56916a4e9aa82deae7965dc597012eb98d412e95e61f58aa17254c225df3e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.877011563436042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ea077b8c4d7e7bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:02:20.000Z'}}, {'blockNum': '0x4b6572', 'uniqueId': '0xa0c56916a4e9aa82deae7965dc597012eb98d412e95e61f58aa17254c225df3e:log:24', 'hash': '0xa0c56916a4e9aa82deae7965dc597012eb98d412e95e61f58aa17254c225df3e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 29.877011563436042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ea077b8c4d7e7bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:02:20.000Z'}}, {'blockNum': '0x4b6578', 'uniqueId': '0x9aa1e8958c2eb88eaeabb7dfa7036d23b1d2af1ff64362a7a79c30ac2e4f55dc:log:15', 'hash': '0x9aa1e8958c2eb88eaeabb7dfa7036d23b1d2af1ff64362a7a79c30ac2e4f55dc', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 43.429897287696946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x025ab5fd7b50e08f06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:04:12.000Z'}}, {'blockNum': '0x4b6578', 'uniqueId': '0x9aa1e8958c2eb88eaeabb7dfa7036d23b1d2af1ff64362a7a79c30ac2e4f55dc:log:17', 'hash': '0x9aa1e8958c2eb88eaeabb7dfa7036d23b1d2af1ff64362a7a79c30ac2e4f55dc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 43.429897287696946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x025ab5fd7b50e08f06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:04:12.000Z'}}, {'blockNum': '0x4b6588', 'uniqueId': '0x71923066636ed57fff910cf94d9f38dd7bc54a23db01a2b819440c49396ff530:log:63', 'hash': '0x71923066636ed57fff910cf94d9f38dd7bc54a23db01a2b819440c49396ff530', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.570990814334909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x76f246bc0d917cfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:08:51.000Z'}}, {'blockNum': '0x4b6588', 'uniqueId': '0x71923066636ed57fff910cf94d9f38dd7bc54a23db01a2b819440c49396ff530:log:66', 'hash': '0x71923066636ed57fff910cf94d9f38dd7bc54a23db01a2b819440c49396ff530', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 8.570990814334909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x76f246bc0d917cfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:08:51.000Z'}}, {'blockNum': '0x4b6589', 'uniqueId': '0x0cbb3cc9cec9c114032c8ac1e653c058ccc819ac676491b344205da1fdc838f9:log:40', 'hash': '0x0cbb3cc9cec9c114032c8ac1e653c058ccc819ac676491b344205da1fdc838f9', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1092.7485596006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b3ceec153a5883742', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:09:01.000Z'}}, {'blockNum': '0x4b6589', 'uniqueId': '0x0cbb3cc9cec9c114032c8ac1e653c058ccc819ac676491b344205da1fdc838f9:log:42', 'hash': '0x0cbb3cc9cec9c114032c8ac1e653c058ccc819ac676491b344205da1fdc838f9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1092.7485596006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b3ceec153a5883742', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:09:01.000Z'}}, {'blockNum': '0x4b6594', 'uniqueId': '0xb29e61960e11c3171e0dde65fefddce3afd7e84272a445da8303bfcd11bb7bf6:log:70', 'hash': '0xb29e61960e11c3171e0dde65fefddce3afd7e84272a445da8303bfcd11bb7bf6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 141.93334650274255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b1b88aa62e66be75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:10:53.000Z'}}, {'blockNum': '0x4b6594', 'uniqueId': '0xb29e61960e11c3171e0dde65fefddce3afd7e84272a445da8303bfcd11bb7bf6:log:73', 'hash': '0xb29e61960e11c3171e0dde65fefddce3afd7e84272a445da8303bfcd11bb7bf6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 141.93334650274255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b1b88aa62e66be75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:10:53.000Z'}}, {'blockNum': '0x4b6596', 'uniqueId': '0xc2000b87e52d1686d362c65b20470e1c64ab83f936e5ed031f78ef0e9662f7fa:log:20', 'hash': '0xc2000b87e52d1686d362c65b20470e1c64ab83f936e5ed031f78ef0e9662f7fa', 'from': '0x561382c1a2a73014f275e50c653369c5e48ff0ae', 'to': '0x63d2a938242228fe27e447de4ad24f30d6d50654', 'value': 15.719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xda251b37985d8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:11:10.000Z'}}, {'blockNum': '0x4b65a9', 'uniqueId': '0xb5add4ab9de6cc199203b22aeb4f388088a70c58afc780cb0f2fd0ca39c05eb6:log:29', 'hash': '0xb5add4ab9de6cc199203b22aeb4f388088a70c58afc780cb0f2fd0ca39c05eb6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.766983873351887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4227ba938527a525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:15:13.000Z'}}, {'blockNum': '0x4b65a9', 'uniqueId': '0xb5add4ab9de6cc199203b22aeb4f388088a70c58afc780cb0f2fd0ca39c05eb6:log:32', 'hash': '0xb5add4ab9de6cc199203b22aeb4f388088a70c58afc780cb0f2fd0ca39c05eb6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xec64bd6efff779637f10b58109ff74e4f4212918', 'value': 4.766983873351887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4227ba938527a525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:15:13.000Z'}}, {'blockNum': '0x4b65ac', 'uniqueId': '0x8e6a6ba0a03532d15abaed68425085c16e0dab237212c2be17a88448f0e94fb4:log:5', 'hash': '0x8e6a6ba0a03532d15abaed68425085c16e0dab237212c2be17a88448f0e94fb4', 'from': '0x1dc1f9f0bc45883a4dc40a2fd71749bbbb2ff92b', 'to': '0x5ceac136540020fe8190ae07ad88da40d0a32bbb', 'value': 426.38459017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x171d465dad5f5d0400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:15:37.000Z'}}, {'blockNum': '0x4b65ac', 'uniqueId': '0x60633646b03ec0c83958164e66f34c2aa8c47f6d2e423e57e5d8baaf012ee05a:log:6', 'hash': '0x60633646b03ec0c83958164e66f34c2aa8c47f6d2e423e57e5d8baaf012ee05a', 'from': '0x5b54f91e4f806fe8775f195481b9e1ca5ecee2f9', 'to': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'value': 9.61765952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8578ca607c410000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:15:37.000Z'}}, {'blockNum': '0x4b65b0', 'uniqueId': '0xab32328b35b4968dfd1c206ce7855c28cb96128aba6c3f2bec5e93d6ddc13c9a:log:38', 'hash': '0xab32328b35b4968dfd1c206ce7855c28cb96128aba6c3f2bec5e93d6ddc13c9a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x605111d89a1199c75b309759f6eead8b07037ebc', 'value': 32.87559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c83d8eec33626000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:16:46.000Z'}}, {'blockNum': '0x4b65b4', 'uniqueId': '0xdfcd4d2c220c2889b80fa098b30c7ab72e67e165eb83375013ace6c6faccccfb:log:27', 'hash': '0xdfcd4d2c220c2889b80fa098b30c7ab72e67e165eb83375013ace6c6faccccfb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3.5109505016369233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b966e1220c6065', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:17:25.000Z'}}, {'blockNum': '0x4b65b4', 'uniqueId': '0xdfcd4d2c220c2889b80fa098b30c7ab72e67e165eb83375013ace6c6faccccfb:log:30', 'hash': '0xdfcd4d2c220c2889b80fa098b30c7ab72e67e165eb83375013ace6c6faccccfb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 3.5109505016369233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b966e1220c6065', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:17:25.000Z'}}, {'blockNum': '0x4b65b4', 'uniqueId': '0xe67e8d6a7603dc80d32bc893250134eaef5e61ed3fa88c53ab292ffc1357769c:log:47', 'hash': '0xe67e8d6a7603dc80d32bc893250134eaef5e61ed3fa88c53ab292ffc1357769c', 'from': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 805.1304088185715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ba56dd10e87fcec77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:17:25.000Z'}}, {'blockNum': '0x4b65b4', 'uniqueId': '0xe67e8d6a7603dc80d32bc893250134eaef5e61ed3fa88c53ab292ffc1357769c:log:49', 'hash': '0xe67e8d6a7603dc80d32bc893250134eaef5e61ed3fa88c53ab292ffc1357769c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 805.1304088185715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ba56dd10e87fcec77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:17:25.000Z'}}, {'blockNum': '0x4b65d1', 'uniqueId': '0xeecd59b43df841f01b9eb943d59067f955968720279684ae3cfdbb7743d8a36d:log:79', 'hash': '0xeecd59b43df841f01b9eb943d59067f955968720279684ae3cfdbb7743d8a36d', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 265.64013286071156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e667f556a4248cf5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:22:54.000Z'}}, {'blockNum': '0x4b65d1', 'uniqueId': '0xeecd59b43df841f01b9eb943d59067f955968720279684ae3cfdbb7743d8a36d:log:81', 'hash': '0xeecd59b43df841f01b9eb943d59067f955968720279684ae3cfdbb7743d8a36d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 265.64013286071156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e667f556a4248cf5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:22:54.000Z'}}, {'blockNum': '0x4b65d3', 'uniqueId': '0x4d1a6947291c6fb2615d21ff7e667f7d44e63eefd66627bb3a9ccdebab8dd31a:log:0', 'hash': '0x4d1a6947291c6fb2615d21ff7e667f7d44e63eefd66627bb3a9ccdebab8dd31a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8b8ae20b2851557cb4167d06b41b3691aa7e8ddd', 'value': 230.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c7b9c45fce3a60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:23:19.000Z'}}, {'blockNum': '0x4b65d7', 'uniqueId': '0x6b8d5f2b94174b1e03438245a6438a561691b13af1b2e2248fab4a855e19e7d9:log:39', 'hash': '0x6b8d5f2b94174b1e03438245a6438a561691b13af1b2e2248fab4a855e19e7d9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.494210871580035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14bc80defc0e0844', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:24:48.000Z'}}, {'blockNum': '0x4b65d7', 'uniqueId': '0x6b8d5f2b94174b1e03438245a6438a561691b13af1b2e2248fab4a855e19e7d9:log:42', 'hash': '0x6b8d5f2b94174b1e03438245a6438a561691b13af1b2e2248fab4a855e19e7d9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 1.494210871580035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14bc80defc0e0844', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:24:48.000Z'}}, {'blockNum': '0x4b65e0', 'uniqueId': '0x018ddbbf187d2427bcd6eb0351f33129f43cfd1248bbffbbdc21f59b64dc7e30:log:22', 'hash': '0x018ddbbf187d2427bcd6eb0351f33129f43cfd1248bbffbbdc21f59b64dc7e30', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x30cd3d70ac4002c5f7ae4ec15ecbba24586af5c3', 'value': 24.5467685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0154a7a3e57a3f8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:26:26.000Z'}}, {'blockNum': '0x4b65e2', 'uniqueId': '0xfd6b15cf12af2cb45dd0f9ff2095d31d60185ee0cd5ea8d9e1c5c319fe104a13:log:55', 'hash': '0xfd6b15cf12af2cb45dd0f9ff2095d31d60185ee0cd5ea8d9e1c5c319fe104a13', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 694.8151506547845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25aa7f4a3b69f342f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:26:46.000Z'}}, {'blockNum': '0x4b65e2', 'uniqueId': '0xfd6b15cf12af2cb45dd0f9ff2095d31d60185ee0cd5ea8d9e1c5c319fe104a13:log:57', 'hash': '0xfd6b15cf12af2cb45dd0f9ff2095d31d60185ee0cd5ea8d9e1c5c319fe104a13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 694.8151506547845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25aa7f4a3b69f342f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:26:46.000Z'}}, {'blockNum': '0x4b6604', 'uniqueId': '0x4f6916bda037d58fd9eefd773078afa51a003eab1a251ab9ca833cee1509a2f3:log:41', 'hash': '0x4f6916bda037d58fd9eefd773078afa51a003eab1a251ab9ca833cee1509a2f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2988.138077411539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1fcbf05925d7b0ff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:34:50.000Z'}}, {'blockNum': '0x4b6604', 'uniqueId': '0x4f6916bda037d58fd9eefd773078afa51a003eab1a251ab9ca833cee1509a2f3:log:43', 'hash': '0x4f6916bda037d58fd9eefd773078afa51a003eab1a251ab9ca833cee1509a2f3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'value': 2988.138077411539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1fcbf05925d7b0ff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:34:50.000Z'}}, {'blockNum': '0x4b6607', 'uniqueId': '0x958e65b7b242c85ab7c14603b81c6c88f1797bd3e4b10524e3fd9d58febca4e6:log:35', 'hash': '0x958e65b7b242c85ab7c14603b81c6c88f1797bd3e4b10524e3fd9d58febca4e6', 'from': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'to': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'value': 2988.138077411539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1fcbf05925d7b0ff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:35:52.000Z'}}, {'blockNum': '0x4b6619', 'uniqueId': '0xff51eb406b0f5e7d15860dcec204641cabe85260328b98f491897e8d305e0c0b:log:45', 'hash': '0xff51eb406b0f5e7d15860dcec204641cabe85260328b98f491897e8d305e0c0b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 164.31686176042862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08e85ac32edd50b510', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:39:54.000Z'}}, {'blockNum': '0x4b6619', 'uniqueId': '0xff51eb406b0f5e7d15860dcec204641cabe85260328b98f491897e8d305e0c0b:log:47', 'hash': '0xff51eb406b0f5e7d15860dcec204641cabe85260328b98f491897e8d305e0c0b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xc22060a0e86cc0ee5c24407303aec752e2791c3a', 'value': 164.31686176042862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08e85ac32edd50b510', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:39:54.000Z'}}, {'blockNum': '0x4b661f', 'uniqueId': '0x1a6dbf0adf0085d71cb8f02d562c3dbf00da9eb61d7f41562a1fc18bb17df495:log:25', 'hash': '0x1a6dbf0adf0085d71cb8f02d562c3dbf00da9eb61d7f41562a1fc18bb17df495', 'from': '0x8432e92e57b7dfa232e6b10f6dd6c6619ec9982f', 'to': '0x3f91e32814eb3117c38a02a9145745be319faaa3', 'value': 14.59008603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca7a65f1548a0c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:40:53.000Z'}}, {'blockNum': '0x4b6636', 'uniqueId': '0xf69fe43ab773e4977644162aa071fd8fa79df15889f6fb3bf4bff87f3e616350:log:20', 'hash': '0xf69fe43ab773e4977644162aa071fd8fa79df15889f6fb3bf4bff87f3e616350', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0xbed26d67a4babc89f0edf155f819389c692f964e', 'value': 30.98818657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ae0c2780c2616400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:45:40.000Z'}}, {'blockNum': '0x4b6637', 'uniqueId': '0xfeee77d58f6416c39a6bceb3c2a7d1602b11f7002332cce770c8981d8ccd8880:log:58', 'hash': '0xfeee77d58f6416c39a6bceb3c2a7d1602b11f7002332cce770c8981d8ccd8880', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.468872145834456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67a6c3a51545b2ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:05.000Z'}}, {'blockNum': '0x4b6637', 'uniqueId': '0xfeee77d58f6416c39a6bceb3c2a7d1602b11f7002332cce770c8981d8ccd8880:log:61', 'hash': '0xfeee77d58f6416c39a6bceb3c2a7d1602b11f7002332cce770c8981d8ccd8880', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 7.468872145834456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67a6c3a51545b2ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:05.000Z'}}, {'blockNum': '0x4b6637', 'uniqueId': '0x61d790e63c72cd80ffad89a3885e48e40cdd6e08661df557f945be8ec8cf88ba:log:81', 'hash': '0x61d790e63c72cd80ffad89a3885e48e40cdd6e08661df557f945be8ec8cf88ba', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.13443963798460185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01dda02371cde6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:05.000Z'}}, {'blockNum': '0x4b6637', 'uniqueId': '0x61d790e63c72cd80ffad89a3885e48e40cdd6e08661df557f945be8ec8cf88ba:log:84', 'hash': '0x61d790e63c72cd80ffad89a3885e48e40cdd6e08661df557f945be8ec8cf88ba', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.13443963798460185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01dda02371cde6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:05.000Z'}}, {'blockNum': '0x4b6638', 'uniqueId': '0xcea1f38d75eb0b38166fbd84a22f541b9cf41f2efd64d916a6900aee4ab22176:log:89', 'hash': '0xcea1f38d75eb0b38166fbd84a22f541b9cf41f2efd64d916a6900aee4ab22176', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 371.73799986529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1426e6ad533cd19e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:38.000Z'}}, {'blockNum': '0x4b6638', 'uniqueId': '0xcea1f38d75eb0b38166fbd84a22f541b9cf41f2efd64d916a6900aee4ab22176:log:91', 'hash': '0xcea1f38d75eb0b38166fbd84a22f541b9cf41f2efd64d916a6900aee4ab22176', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 371.73799986529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1426e6ad533cd19e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:46:38.000Z'}}, {'blockNum': '0x4b6645', 'uniqueId': '0xdd246f6fe98cf1ca98d70b1ab5bcecadb80b15acfe3efa64f6725766a6e48c6a:log:17', 'hash': '0xdd246f6fe98cf1ca98d70b1ab5bcecadb80b15acfe3efa64f6725766a6e48c6a', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x427f68a670fc555da8face4b8eb1161106349a00', 'value': 8.12153999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70b5819755145c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:49:03.000Z'}}, {'blockNum': '0x4b6648', 'uniqueId': '0xc08f6d94fba8120d649b5f13f7833b46282c9941166ed211595a8d010d79f80f:log:19', 'hash': '0xc08f6d94fba8120d649b5f13f7833b46282c9941166ed211595a8d010d79f80f', 'from': '0x1954cc7945f653d27da5f95b448ea543a7cb68f1', 'to': '0x6c7d78ba52db01bac56f845eb168faf40d459c8d', 'value': 2.6918802914158317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255b7adce3b7341b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:50:10.000Z'}}, {'blockNum': '0x4b6655', 'uniqueId': '0x9a9dcbe8132eca463b65ed971c5a993b3371eadcb1f7dc141f2cb62a0bbd3fb3:log:120', 'hash': '0x9a9dcbe8132eca463b65ed971c5a993b3371eadcb1f7dc141f2cb62a0bbd3fb3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 748.4659961684667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28930d61f8f0573f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:52:57.000Z'}}, {'blockNum': '0x4b6655', 'uniqueId': '0x9a9dcbe8132eca463b65ed971c5a993b3371eadcb1f7dc141f2cb62a0bbd3fb3:log:123', 'hash': '0x9a9dcbe8132eca463b65ed971c5a993b3371eadcb1f7dc141f2cb62a0bbd3fb3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 748.4659961684667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28930d61f8f0573f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:52:57.000Z'}}, {'blockNum': '0x4b665d', 'uniqueId': '0x047c5a6192b1ce75dcc86e0ac6063c34932b914e9d6074789c349fee56982c12:log:73', 'hash': '0x047c5a6192b1ce75dcc86e0ac6063c34932b914e9d6074789c349fee56982c12', 'from': '0x6bba7e98b829e3dea401d3920f6ea3ea11a86622', 'to': '0xbb2c943ceb4ac9df462e6df8be5b39fe9a13e3e6', 'value': 505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b6048686534440000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:55:58.000Z'}}, {'blockNum': '0x4b6668', 'uniqueId': '0xfef0fd5d31ce0e3bc2cae8bb4a68e1e8cbbb5b09021d5446c5da9db0878b587c:log:22', 'hash': '0xfef0fd5d31ce0e3bc2cae8bb4a68e1e8cbbb5b09021d5446c5da9db0878b587c', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5ee526ee00295ac303e754da3786e24e79eb0ef8', 'value': 14.23356297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc587c61bcb010000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T15:59:14.000Z'}}, {'blockNum': '0x4b6674', 'uniqueId': '0x9acef6ae0fa74fb341d8ff2cd28d8b91ca2023ec1c0168aae0573190eb76e5d0:log:0', 'hash': '0x9acef6ae0fa74fb341d8ff2cd28d8b91ca2023ec1c0168aae0573190eb76e5d0', 'from': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:02:04.000Z'}}, {'blockNum': '0x4b668d', 'uniqueId': '0xb40a5a93528b2b1861b279d1f1622a79c2431cd1826eecc2177175403420c1ca:log:16', 'hash': '0xb40a5a93528b2b1861b279d1f1622a79c2431cd1826eecc2177175403420c1ca', 'from': '0x0cc64f23e7b0d21e6a9c3a101bfecb58d79d462c', 'to': '0x96d32dc4085171d4cc5cc3fb02ed682df8d04b7f', 'value': 27.071093499999996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0177afd81c04e2d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:07:13.000Z'}}, {'blockNum': '0x4b668e', 'uniqueId': '0xcd12438868c18da11d34b928fd326e39945bd36678670d904d6ac6a81e143e2d:log:50', 'hash': '0xcd12438868c18da11d34b928fd326e39945bd36678670d904d6ac6a81e143e2d', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 765.2823001184602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x297c6ce5517eb2b957', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:07:28.000Z'}}, {'blockNum': '0x4b668e', 'uniqueId': '0xcd12438868c18da11d34b928fd326e39945bd36678670d904d6ac6a81e143e2d:log:52', 'hash': '0xcd12438868c18da11d34b928fd326e39945bd36678670d904d6ac6a81e143e2d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 765.2823001184602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x297c6ce5517eb2b957', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:07:28.000Z'}}, {'blockNum': '0x4b668f', 'uniqueId': '0xa6a52f01e8e62b2335fe44e70144797861b5170943dff8b0bd39bbe7b09b816c:log:2', 'hash': '0xa6a52f01e8e62b2335fe44e70144797861b5170943dff8b0bd39bbe7b09b816c', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x30cd3d70ac4002c5f7ae4ec15ecbba24586af5c3', 'value': 50.83397281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c1768cf0d5ea6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:07:39.000Z'}}, {'blockNum': '0x4b6696', 'uniqueId': '0x134d5887436b134e71004df94a4e1b44f67c87fcce14a80c81a4aee8521c7ee1:log:79', 'hash': '0x134d5887436b134e71004df94a4e1b44f67c87fcce14a80c81a4aee8521c7ee1', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 126.54309414032319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06dc2361aaa4c75138', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:09:30.000Z'}}, {'blockNum': '0x4b6696', 'uniqueId': '0x134d5887436b134e71004df94a4e1b44f67c87fcce14a80c81a4aee8521c7ee1:log:81', 'hash': '0x134d5887436b134e71004df94a4e1b44f67c87fcce14a80c81a4aee8521c7ee1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 126.54309414032319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06dc2361aaa4c75138', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:09:30.000Z'}}, {'blockNum': '0x4b669b', 'uniqueId': '0x2d34fae784102000da3142506ee844744def02b0759b4cbd5dbf90553986b260:log:25', 'hash': '0x2d34fae784102000da3142506ee844744def02b0759b4cbd5dbf90553986b260', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0783c3ca86ef18d622d17ceebeeea23e273a50c8', 'value': 29.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0194899a8e82a30000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:10:21.000Z'}}, {'blockNum': '0x4b669c', 'uniqueId': '0x68b2b7c0abaee63444834d8e75e2621e0b0f70bb5ee6aee3c74a573ccaca4549:log:55', 'hash': '0x68b2b7c0abaee63444834d8e75e2621e0b0f70bb5ee6aee3c74a573ccaca4549', 'from': '0x73014f495c905fc4029adfed4faaf9c12a4a203b', 'to': '0xc07d4742a2c26c589186d353bfe4b62d34f6bd8e', 'value': 657.5380533120281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23a52c6fb38d4b5add', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:10:43.000Z'}}, {'blockNum': '0x4b66a0', 'uniqueId': '0x7153c76759d1c99fc1cc95e9d5501b99f5d7bde26b406e811b9f9832ed50498b:log:8', 'hash': '0x7153c76759d1c99fc1cc95e9d5501b99f5d7bde26b406e811b9f9832ed50498b', 'from': '0x6c7d78ba52db01bac56f845eb168faf40d459c8d', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 2.6918802914158317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255b7adce3b7341b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:11:05.000Z'}}, {'blockNum': '0x4b66a9', 'uniqueId': '0xafb9127bd70bdf5dacb2eed1b1d56e180a391753ae220d9c77891f75630d6e06:log:50', 'hash': '0xafb9127bd70bdf5dacb2eed1b1d56e180a391753ae220d9c77891f75630d6e06', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 32.132824976527594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01bdeeba11b3ba06e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:13:23.000Z'}}, {'blockNum': '0x4b66a9', 'uniqueId': '0xafb9127bd70bdf5dacb2eed1b1d56e180a391753ae220d9c77891f75630d6e06:log:53', 'hash': '0xafb9127bd70bdf5dacb2eed1b1d56e180a391753ae220d9c77891f75630d6e06', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 32.132824976527594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01bdeeba11b3ba06e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:13:23.000Z'}}, {'blockNum': '0x4b66ae', 'uniqueId': '0xefe04b557d539cfd2688caf64b06419d1c86431dab7394de13911d278e08565c:log:59', 'hash': '0xefe04b557d539cfd2688caf64b06419d1c86431dab7394de13911d278e08565c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.938580199948468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf507f8b3a9cc1c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:14:39.000Z'}}, {'blockNum': '0x4b66ae', 'uniqueId': '0xefe04b557d539cfd2688caf64b06419d1c86431dab7394de13911d278e08565c:log:62', 'hash': '0xefe04b557d539cfd2688caf64b06419d1c86431dab7394de13911d278e08565c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 14.938580199948468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf507f8b3a9cc1c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:14:39.000Z'}}, {'blockNum': '0x4b66b0', 'uniqueId': '0xad750ad4c4becba72557f8b58a808b335bdc26dbcc14d55181a646200b9952c2:log:61', 'hash': '0xad750ad4c4becba72557f8b58a808b335bdc26dbcc14d55181a646200b9952c2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 38.84018460383018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021b040e1cf1e4d3c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:15:15.000Z'}}, {'blockNum': '0x4b66b0', 'uniqueId': '0xad750ad4c4becba72557f8b58a808b335bdc26dbcc14d55181a646200b9952c2:log:64', 'hash': '0xad750ad4c4becba72557f8b58a808b335bdc26dbcc14d55181a646200b9952c2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 38.84018460383018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021b040e1cf1e4d3c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:15:15.000Z'}}, {'blockNum': '0x4b66bb', 'uniqueId': '0x7d0ff01e05792cce055e7b5aed898cbd245a67e828b5486239dd813726401034:log:8', 'hash': '0x7d0ff01e05792cce055e7b5aed898cbd245a67e828b5486239dd813726401034', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x30cd3d70ac4002c5f7ae4ec15ecbba24586af5c3', 'value': 45.52884934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0277d6f740a6fa6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:18:44.000Z'}}, {'blockNum': '0x4b66c8', 'uniqueId': '0xcfe2104e60d8bab77e87b53db26cf52fa6a3ac4217650e97c75195704d31ab07:log:72', 'hash': '0xcfe2104e60d8bab77e87b53db26cf52fa6a3ac4217650e97c75195704d31ab07', 'from': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1165.3270037751686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f2c292fc435379590', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:22:13.000Z'}}, {'blockNum': '0x4b66c8', 'uniqueId': '0xcfe2104e60d8bab77e87b53db26cf52fa6a3ac4217650e97c75195704d31ab07:log:74', 'hash': '0xcfe2104e60d8bab77e87b53db26cf52fa6a3ac4217650e97c75195704d31ab07', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1165.3270037751686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f2c292fc435379590', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:22:13.000Z'}}, {'blockNum': '0x4b66ca', 'uniqueId': '0xc42f0ae0eff44b37e8f08db7d629fb3a0513eab62bba387d83ed3b515c1ea279:log:7', 'hash': '0xc42f0ae0eff44b37e8f08db7d629fb3a0513eab62bba387d83ed3b515c1ea279', 'from': '0x96d32dc4085171d4cc5cc3fb02ed682df8d04b7f', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 27.071093499999996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0177afd81c04e2d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:22:31.000Z'}}, {'blockNum': '0x4b66d7', 'uniqueId': '0x99fea91d0dc56208b4119aa8769af093e2c42ddf252867b762daccfbfe0d2fac:log:69', 'hash': '0x99fea91d0dc56208b4119aa8769af093e2c42ddf252867b762daccfbfe0d2fac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d8fff6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:25:21.000Z'}}, {'blockNum': '0x4b66d7', 'uniqueId': '0x99fea91d0dc56208b4119aa8769af093e2c42ddf252867b762daccfbfe0d2fac:log:71', 'hash': '0x99fea91d0dc56208b4119aa8769af093e2c42ddf252867b762daccfbfe0d2fac', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4bde562d91b6e9c77062a03b0190bd6829e46752', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d8fff6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:25:21.000Z'}}, {'blockNum': '0x4b66df', 'uniqueId': '0x1e9e785fa6f1e491a76ef05c57cdb214d769d346d2d45f9fc850d6a56cb6d612:log:7', 'hash': '0x1e9e785fa6f1e491a76ef05c57cdb214d769d346d2d45f9fc850d6a56cb6d612', 'from': '0x8104d0be75ad95ec81a8003c43cbfc8cbecef633', 'to': '0x1954cc7945f653d27da5f95b448ea543a7cb68f1', 'value': 8.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f610f70ed20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:27:48.000Z'}}, {'blockNum': '0x4b66f1', 'uniqueId': '0x566971788f69d2aae5d0961f59a4962a63e86a74d0e3ee32466437bf93d6c0a0:log:54', 'hash': '0x566971788f69d2aae5d0961f59a4962a63e86a74d0e3ee32466437bf93d6c0a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2987.581758067369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1f5069413628570de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:32:36.000Z'}}, {'blockNum': '0x4b66f1', 'uniqueId': '0x566971788f69d2aae5d0961f59a4962a63e86a74d0e3ee32466437bf93d6c0a0:log:56', 'hash': '0x566971788f69d2aae5d0961f59a4962a63e86a74d0e3ee32466437bf93d6c0a0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2987.581758067369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1f5069413628570de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:32:36.000Z'}}, {'blockNum': '0x4b66f5', 'uniqueId': '0x3f3301c018f86a2db0cae00b3dbc5ba36f15962b72adf601db3b409cdd5cb37b:log:54', 'hash': '0x3f3301c018f86a2db0cae00b3dbc5ba36f15962b72adf601db3b409cdd5cb37b', 'from': '0x88733425ca833b0123e2cacfb85846f20762f970', 'to': '0xa89083d5a0e9d774ff2b378251ab3159db31c199', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:34:06.000Z'}}, {'blockNum': '0x4b66fa', 'uniqueId': '0xc9592ed4da617262c121f12341fc22f7a809e79689a6216ca49b74ca2b9714ec:log:68', 'hash': '0xc9592ed4da617262c121f12341fc22f7a809e79689a6216ca49b74ca2b9714ec', 'from': '0xdde4acb37b66d173a5407ce1e1fbc81dae18679f', 'to': '0x64c1859e25bc3a41764c4409d08c31f7efa9a1c6', 'value': 5.48391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c1ac3170a366000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:35:05.000Z'}}, {'blockNum': '0x4b66fe', 'uniqueId': '0x26aa588e43a2e30bac599e3e784143794304f4903abf67da72b833c516d650a0:log:66', 'hash': '0x26aa588e43a2e30bac599e3e784143794304f4903abf67da72b833c516d650a0', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 306.8836141006598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10a2dd9d15e1e2abcb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:36:20.000Z'}}, {'blockNum': '0x4b66fe', 'uniqueId': '0x26aa588e43a2e30bac599e3e784143794304f4903abf67da72b833c516d650a0:log:68', 'hash': '0x26aa588e43a2e30bac599e3e784143794304f4903abf67da72b833c516d650a0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 306.8836141006598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10a2dd9d15e1e2abcb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:36:20.000Z'}}, {'blockNum': '0x4b670d', 'uniqueId': '0x321709c40f120b6ced67abec94647870ebea90bd63dc5b49b683456b944d2ca7:log:102', 'hash': '0x321709c40f120b6ced67abec94647870ebea90bd63dc5b49b683456b944d2ca7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 11.981378111997374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa64667e9ad3e6c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:41:23.000Z'}}, {'blockNum': '0x4b670d', 'uniqueId': '0x321709c40f120b6ced67abec94647870ebea90bd63dc5b49b683456b944d2ca7:log:105', 'hash': '0x321709c40f120b6ced67abec94647870ebea90bd63dc5b49b683456b944d2ca7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 11.981378111997374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa64667e9ad3e6c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:41:23.000Z'}}, {'blockNum': '0x4b6711', 'uniqueId': '0x4ff368b159f2d75692a375a93f7e814e8260794a19f02da3a9fabc4072319b13:log:104', 'hash': '0x4ff368b159f2d75692a375a93f7e814e8260794a19f02da3a9fabc4072319b13', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.46341586330789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0198e3149fb213740e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:42:23.000Z'}}, {'blockNum': '0x4b6711', 'uniqueId': '0x4ff368b159f2d75692a375a93f7e814e8260794a19f02da3a9fabc4072319b13:log:106', 'hash': '0x4ff368b159f2d75692a375a93f7e814e8260794a19f02da3a9fabc4072319b13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 29.46341586330789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0198e3149fb213740e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:42:23.000Z'}}, {'blockNum': '0x4b6716', 'uniqueId': '0xf4b4db9817b2ab3484ce94898d3cca9bb7d397d5c997ce709f938ffad8dcbe98:log:57', 'hash': '0xf4b4db9817b2ab3484ce94898d3cca9bb7d397d5c997ce709f938ffad8dcbe98', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.442242018361066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xba8c6fe5493dbe9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:43:04.000Z'}}, {'blockNum': '0x4b6716', 'uniqueId': '0xf4b4db9817b2ab3484ce94898d3cca9bb7d397d5c997ce709f938ffad8dcbe98:log:60', 'hash': '0xf4b4db9817b2ab3484ce94898d3cca9bb7d397d5c997ce709f938ffad8dcbe98', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 13.442242018361066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xba8c6fe5493dbe9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:43:04.000Z'}}, {'blockNum': '0x4b671c', 'uniqueId': '0xcb6e5b095cbfdb8f9270368df5ebac24ab1f6779b3f569920f00c84a5012b091:log:82', 'hash': '0xcb6e5b095cbfdb8f9270368df5ebac24ab1f6779b3f569920f00c84a5012b091', 'from': '0x150f205ad0870d1a85440681b68ba9ac7ac2af37', 'to': '0xac6904631c9838e65a00d5363a60f33002413673', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:44:45.000Z'}}, {'blockNum': '0x4b671d', 'uniqueId': '0x5fb5f29b4ad4ed872c74bc76b44f76e73d9b4d90806bbce75cdfa56dc42e1487:log:65', 'hash': '0x5fb5f29b4ad4ed872c74bc76b44f76e73d9b4d90806bbce75cdfa56dc42e1487', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 625.8397940619302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21ed4598dba4f9dab9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:07.000Z'}}, {'blockNum': '0x4b671d', 'uniqueId': '0x5fb5f29b4ad4ed872c74bc76b44f76e73d9b4d90806bbce75cdfa56dc42e1487:log:67', 'hash': '0x5fb5f29b4ad4ed872c74bc76b44f76e73d9b4d90806bbce75cdfa56dc42e1487', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 625.8397940619302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21ed4598dba4f9dab9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:07.000Z'}}, {'blockNum': '0x4b671e', 'uniqueId': '0x791b1dc06a5496c4185ba64ac5f847840e8bff8ea407435ad72f71389212f390:log:78', 'hash': '0x791b1dc06a5496c4185ba64ac5f847840e8bff8ea407435ad72f71389212f390', 'from': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'to': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'value': 2988.138077411539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa1fcbf05925d7b0ff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:41.000Z'}}, {'blockNum': '0x4b671f', 'uniqueId': '0x4fc4c3bc48729f814008e59f41d22351120870658269ba46a30313d33931c5f1:log:95', 'hash': '0x4fc4c3bc48729f814008e59f41d22351120870658269ba46a30313d33931c5f1', 'from': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 491.79310420728615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa90016a51df48509', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:45.000Z'}}, {'blockNum': '0x4b671f', 'uniqueId': '0x4fc4c3bc48729f814008e59f41d22351120870658269ba46a30313d33931c5f1:log:97', 'hash': '0x4fc4c3bc48729f814008e59f41d22351120870658269ba46a30313d33931c5f1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.79310420728615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa90016a51df48509', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:45:45.000Z'}}, {'blockNum': '0x4b6720', 'uniqueId': '0x9c933201cb38b3c9e6ae33a48442c32466315b8d03218f979158f664f756fb60:log:74', 'hash': '0x9c933201cb38b3c9e6ae33a48442c32466315b8d03218f979158f664f756fb60', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 198.669101602653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ac5166f50481ec9b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:46:14.000Z'}}, {'blockNum': '0x4b6720', 'uniqueId': '0x9c933201cb38b3c9e6ae33a48442c32466315b8d03218f979158f664f756fb60:log:76', 'hash': '0x9c933201cb38b3c9e6ae33a48442c32466315b8d03218f979158f664f756fb60', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 198.669101602653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ac5166f50481ec9b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:46:14.000Z'}}, {'blockNum': '0x4b6721', 'uniqueId': '0x74153332866ad5bd93543f16c345ecf6a57adc2898d36b9b14194349e6c6ee80:log:19', 'hash': '0x74153332866ad5bd93543f16c345ecf6a57adc2898d36b9b14194349e6c6ee80', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 597.5046342948798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20640ae32d0bfd5969', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:46:24.000Z'}}, {'blockNum': '0x4b6721', 'uniqueId': '0x74153332866ad5bd93543f16c345ecf6a57adc2898d36b9b14194349e6c6ee80:log:22', 'hash': '0x74153332866ad5bd93543f16c345ecf6a57adc2898d36b9b14194349e6c6ee80', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 597.5046342948798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20640ae32d0bfd5969', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:46:24.000Z'}}, {'blockNum': '0x4b672c', 'uniqueId': '0x598572cc913080e254443ffadd8e77d0a80df2f90705bca1d47cdf19bf158f33:log:53', 'hash': '0x598572cc913080e254443ffadd8e77d0a80df2f90705bca1d47cdf19bf158f33', 'from': '0x73014f495c905fc4029adfed4faaf9c12a4a203b', 'to': '0x920030662c363aa3950cbef0a4694e1a455ab62b', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:48:35.000Z'}}, {'blockNum': '0x4b6731', 'uniqueId': '0xf8479f796bb4c2cf76e447d50e8896e26fb29f77be1ea49a043338953be6f7ec:log:3', 'hash': '0xf8479f796bb4c2cf76e447d50e8896e26fb29f77be1ea49a043338953be6f7ec', 'from': '0xe594187863257aafeff831b394acbcf84240530f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:50:38.000Z'}}, {'blockNum': '0x4b6732', 'uniqueId': '0x663825b4ea08cc80a797cef7d616cd463fd443d59f6ca06e085b1f50fa3e8a0a:log:94', 'hash': '0x663825b4ea08cc80a797cef7d616cd463fd443d59f6ca06e085b1f50fa3e8a0a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 134.43270534884098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0749a0e942806c2dd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:50:47.000Z'}}, {'blockNum': '0x4b6732', 'uniqueId': '0x663825b4ea08cc80a797cef7d616cd463fd443d59f6ca06e085b1f50fa3e8a0a:log:97', 'hash': '0x663825b4ea08cc80a797cef7d616cd463fd443d59f6ca06e085b1f50fa3e8a0a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 134.43270534884098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0749a0e942806c2dd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:50:47.000Z'}}, {'blockNum': '0x4b6738', 'uniqueId': '0x248c0eca28fe325cf8cefa78e82ea81af6660299161e153e0192eb8a8f2ba055:log:70', 'hash': '0x248c0eca28fe325cf8cefa78e82ea81af6660299161e153e0192eb8a8f2ba055', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.23968252929747094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035385fd91a495ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:51:39.000Z'}}, {'blockNum': '0x4b6738', 'uniqueId': '0x248c0eca28fe325cf8cefa78e82ea81af6660299161e153e0192eb8a8f2ba055:log:73', 'hash': '0x248c0eca28fe325cf8cefa78e82ea81af6660299161e153e0192eb8a8f2ba055', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 0.23968252929747094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035385fd91a495ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:51:39.000Z'}}, {'blockNum': '0x4b673c', 'uniqueId': '0x0a01aaaae45bd2784ab70b2179eaf7bc6b81dd0bd272fd80923331b84b49d868:log:22', 'hash': '0x0a01aaaae45bd2784ab70b2179eaf7bc6b81dd0bd272fd80923331b84b49d868', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x47bedfd2b1300a388f59a52204d70c4ded33f360', 'value': 28.34553982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01895f964901ca3000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:09.000Z'}}, {'blockNum': '0x4b673d', 'uniqueId': '0x7a0a79ee9d63b3f3541fff054fdfb76a278132242e8111bdd1f2f1c91ff8f1ef:log:78', 'hash': '0x7a0a79ee9d63b3f3541fff054fdfb76a278132242e8111bdd1f2f1c91ff8f1ef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.481053122849975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2fe612d720a8d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:23.000Z'}}, {'blockNum': '0x4b673d', 'uniqueId': '0x7a0a79ee9d63b3f3541fff054fdfb76a278132242e8111bdd1f2f1c91ff8f1ef:log:81', 'hash': '0x7a0a79ee9d63b3f3541fff054fdfb76a278132242e8111bdd1f2f1c91ff8f1ef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 4.481053122849975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2fe612d720a8d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:23.000Z'}}, {'blockNum': '0x4b673e', 'uniqueId': '0xba7623fd8139748f53c1d42564e27e82860bbef9beb0b343b062e781e1416c6f:log:22', 'hash': '0xba7623fd8139748f53c1d42564e27e82860bbef9beb0b343b062e781e1416c6f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 477.9653199044443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e919ee1594585169', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:26.000Z'}}, {'blockNum': '0x4b673e', 'uniqueId': '0xba7623fd8139748f53c1d42564e27e82860bbef9beb0b343b062e781e1416c6f:log:25', 'hash': '0xba7623fd8139748f53c1d42564e27e82860bbef9beb0b343b062e781e1416c6f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 477.9653199044443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e919ee1594585169', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:53:26.000Z'}}, {'blockNum': '0x4b6742', 'uniqueId': '0x28b1464da3cc300df00f5194653b358ba514ee5457f67ae124c445fe1aaf4288:log:55', 'hash': '0x28b1464da3cc300df00f5194653b358ba514ee5457f67ae124c445fe1aaf4288', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 126.95498212599085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e1dab39b75c02245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:54:24.000Z'}}, {'blockNum': '0x4b6742', 'uniqueId': '0x28b1464da3cc300df00f5194653b358ba514ee5457f67ae124c445fe1aaf4288:log:58', 'hash': '0x28b1464da3cc300df00f5194653b358ba514ee5457f67ae124c445fe1aaf4288', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 126.95498212599085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e1dab39b75c02245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:54:24.000Z'}}, {'blockNum': '0x4b6744', 'uniqueId': '0x3debf490c6e336432f59844d7e8d861bb0a9284a9c987414687dc5f6cfa75ff3:log:12', 'hash': '0x3debf490c6e336432f59844d7e8d861bb0a9284a9c987414687dc5f6cfa75ff3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 1408.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c5601c44d324f0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:54:46.000Z'}}, {'blockNum': '0x4b674c', 'uniqueId': '0xf5104b9031171b9f37bde189224cf3df72ae38d3076b2b5ff4ff25f2262b1376:log:23', 'hash': '0xf5104b9031171b9f37bde189224cf3df72ae38d3076b2b5ff4ff25f2262b1376', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 24.64398077969956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01560101f3218bdb15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:56:18.000Z'}}, {'blockNum': '0x4b674c', 'uniqueId': '0xf5104b9031171b9f37bde189224cf3df72ae38d3076b2b5ff4ff25f2262b1376:log:26', 'hash': '0xf5104b9031171b9f37bde189224cf3df72ae38d3076b2b5ff4ff25f2262b1376', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 24.64398077969956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01560101f3218bdb15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:56:18.000Z'}}, {'blockNum': '0x4b674f', 'uniqueId': '0x939de4a50dadf3d01785e512bbe3a3c4daddc8297f498abcc79f825ab043696d:log:23', 'hash': '0x939de4a50dadf3d01785e512bbe3a3c4daddc8297f498abcc79f825ab043696d', 'from': '0x7444d44f88da2d12927f0c2ee634d1674f0215b9', 'to': '0x1019d10368171459f21a22e0f9467dad62ede33a', 'value': 16500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037e777fb340d9500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T16:56:44.000Z'}}, {'blockNum': '0x4b676e', 'uniqueId': '0xfb039bb3b991d508289bad5e6f59af4b6fcd51b516fe33eadaaa5813c94ab13f:log:92', 'hash': '0xfb039bb3b991d508289bad5e6f59af4b6fcd51b516fe33eadaaa5813c94ab13f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1194.7732407307237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40c4cf3c43c10e157c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:37.000Z'}}, {'blockNum': '0x4b676e', 'uniqueId': '0xfb039bb3b991d508289bad5e6f59af4b6fcd51b516fe33eadaaa5813c94ab13f:log:95', 'hash': '0xfb039bb3b991d508289bad5e6f59af4b6fcd51b516fe33eadaaa5813c94ab13f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1194.7732407307237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40c4cf3c43c10e157c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:37.000Z'}}, {'blockNum': '0x4b676e', 'uniqueId': '0xd5fa673bb583ac50b8a7e60f26e6e6ccb798740a87d5c5c33b3439c5a122021f:log:113', 'hash': '0xd5fa673bb583ac50b8a7e60f26e6e6ccb798740a87d5c5c33b3439c5a122021f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 447.9963047359095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18493299923788b709', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:37.000Z'}}, {'blockNum': '0x4b676e', 'uniqueId': '0xd5fa673bb583ac50b8a7e60f26e6e6ccb798740a87d5c5c33b3439c5a122021f:log:116', 'hash': '0xd5fa673bb583ac50b8a7e60f26e6e6ccb798740a87d5c5c33b3439c5a122021f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 447.9963047359095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18493299923788b709', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:37.000Z'}}, {'blockNum': '0x4b6770', 'uniqueId': '0x232e8e5404052bc458c48ef80b73c5da2b551b97c8cd4440afb41c14ced8180d:log:43', 'hash': '0x232e8e5404052bc458c48ef80b73c5da2b551b97c8cd4440afb41c14ced8180d', 'from': '0xb538fb43f2dc93750aba48823283ae3f6d55fc16', 'to': '0x3032ed2453e4e542c543e2c70270b3b879b5a7be', 'value': 140.88168266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07a32047f4c49be800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:02:52.000Z'}}, {'blockNum': '0x4b6771', 'uniqueId': '0x0817c1f1bf6eb035b74866cd604850d20aa9b9533e6b54cda3bc271f627782ff:log:6', 'hash': '0x0817c1f1bf6eb035b74866cd604850d20aa9b9533e6b54cda3bc271f627782ff', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xa722ed95558ac09324cc2c5659f84ed95d9f6271', 'value': 3.58290568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31b909bba0212000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:03:07.000Z'}}, {'blockNum': '0x4b6780', 'uniqueId': '0x3887dcc2abb7c22c0a46e48d84eb9e3ae3d9d5f94bd9d84ef757ed0718a9fdb8:log:76', 'hash': '0x3887dcc2abb7c22c0a46e48d84eb9e3ae3d9d5f94bd9d84ef757ed0718a9fdb8', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 142.4177472578088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b8717a91c50e2f2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:06:25.000Z'}}, {'blockNum': '0x4b6780', 'uniqueId': '0x3887dcc2abb7c22c0a46e48d84eb9e3ae3d9d5f94bd9d84ef757ed0718a9fdb8:log:78', 'hash': '0x3887dcc2abb7c22c0a46e48d84eb9e3ae3d9d5f94bd9d84ef757ed0718a9fdb8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 142.4177472578088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07b8717a91c50e2f2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:06:25.000Z'}}, {'blockNum': '0x4b678a', 'uniqueId': '0x06f1007b55abb8c1c5b945616f046eb52c883b63132e705d34f6f0ec47bf356f:log:12', 'hash': '0x06f1007b55abb8c1c5b945616f046eb52c883b63132e705d34f6f0ec47bf356f', 'from': '0xc2befb6d33ba6291e89d3e37863e87104097a3ee', 'to': '0x882622ca65db0237785c88ed4a5fae240aa67d99', 'value': 16, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xde0b6b3a76400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:08:43.000Z'}}, {'blockNum': '0x4b678e', 'uniqueId': '0x4587b355d38035fb4610839c13c7718cac2c015ed3713d2565cc55873c1d0a41:log:17', 'hash': '0x4587b355d38035fb4610839c13c7718cac2c015ed3713d2565cc55873c1d0a41', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7d1fa4b3666b1b4cf5729e2b716362846076422e', 'value': 61.51447848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0355af544287cfa000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:09:11.000Z'}}, {'blockNum': '0x4b678f', 'uniqueId': '0x8226cefbf5534dd9c7c69b91773bbd55e47ed8ab85fe25aad9573220364d96a1:log:2', 'hash': '0x8226cefbf5534dd9c7c69b91773bbd55e47ed8ab85fe25aad9573220364d96a1', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x094ddfd54f9b781ed704b507a6bfecc9e04d8a8e', 'value': 5.87102854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x517a1559e0e15800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:09:15.000Z'}}, {'blockNum': '0x4b6798', 'uniqueId': '0x03972cfe8e2c987734dd4d37eabe3dc6865b69539846b9498e71582d7b3bf0ba:log:6', 'hash': '0x03972cfe8e2c987734dd4d37eabe3dc6865b69539846b9498e71582d7b3bf0ba', 'from': '0x05cf484f3ad036fb9ea24e05d0f589fb95297350', 'to': '0xbc1d9196ede0488197db38ba1d707ea3ac01cbea', 'value': 57.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031f5c4ed276800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:10:42.000Z'}}, {'blockNum': '0x4b679b', 'uniqueId': '0xaa9e1d78715e54046ca835176c17f8f807ff4383b3d1d14e3be4ca6ca9c53ddb:log:8', 'hash': '0xaa9e1d78715e54046ca835176c17f8f807ff4383b3d1d14e3be4ca6ca9c53ddb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 597.3014600800071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206139114dd2fc9d55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:10:57.000Z'}}, {'blockNum': '0x4b679b', 'uniqueId': '0xaa9e1d78715e54046ca835176c17f8f807ff4383b3d1d14e3be4ca6ca9c53ddb:log:11', 'hash': '0xaa9e1d78715e54046ca835176c17f8f807ff4383b3d1d14e3be4ca6ca9c53ddb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 597.3014600800071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206139114dd2fc9d55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:10:57.000Z'}}, {'blockNum': '0x4b67a6', 'uniqueId': '0x558f5f0ea062d0f9ef5ac78a1556814265ed2cee4af916ec2592b0dfa1aeb614:log:5', 'hash': '0x558f5f0ea062d0f9ef5ac78a1556814265ed2cee4af916ec2592b0dfa1aeb614', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e4a8c4abeee63cc45d62827c3936e1129a1b8cb', 'value': 1707.50041684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c905416641b9ed000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:13:35.000Z'}}, {'blockNum': '0x4b67a9', 'uniqueId': '0x83fdf360d969ed907bd0341f1056c94854e33110eaa2e863cbe680bdf03472f3:log:51', 'hash': '0x83fdf360d969ed907bd0341f1056c94854e33110eaa2e863cbe680bdf03472f3', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 594.9363043624613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20406658b5c42fd88a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:14:13.000Z'}}, {'blockNum': '0x4b67a9', 'uniqueId': '0x83fdf360d969ed907bd0341f1056c94854e33110eaa2e863cbe680bdf03472f3:log:53', 'hash': '0x83fdf360d969ed907bd0341f1056c94854e33110eaa2e863cbe680bdf03472f3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 594.9363043624613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20406658b5c42fd88a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:14:13.000Z'}}, {'blockNum': '0x4b67ad', 'uniqueId': '0x35c1f2752f6c65f00896f76ee133bc7bad73837eeee9c41985b25056e4d064fc:log:0', 'hash': '0x35c1f2752f6c65f00896f76ee133bc7bad73837eeee9c41985b25056e4d064fc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x17e980b69137ca8f178ba2dd372095f5373ea538', 'value': 76.41356184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04247381a3178b6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:15:04.000Z'}}, {'blockNum': '0x4b67ad', 'uniqueId': '0x37366e7290683377e7fb48d83b276670781601aedd495e75c155edb4ea62599b:log:6', 'hash': '0x37366e7290683377e7fb48d83b276670781601aedd495e75c155edb4ea62599b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x65bb47d0bd50ebfd205bcea1cb069ed28cc6bf78', 'value': 79.8425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0454098ab9ef204000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:15:04.000Z'}}, {'blockNum': '0x4b67be', 'uniqueId': '0x037e956a0f2baec5a5f7db12e3b5cd3b012bbad78e2e0231d08416664c65dc3a:log:79', 'hash': '0x037e956a0f2baec5a5f7db12e3b5cd3b012bbad78e2e0231d08416664c65dc3a', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.09084081833978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0108f04a93a0aba267', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:20:35.000Z'}}, {'blockNum': '0x4b67be', 'uniqueId': '0x037e956a0f2baec5a5f7db12e3b5cd3b012bbad78e2e0231d08416664c65dc3a:log:81', 'hash': '0x037e956a0f2baec5a5f7db12e3b5cd3b012bbad78e2e0231d08416664c65dc3a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 19.09084081833978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0108f04a93a0aba267', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:20:35.000Z'}}, {'blockNum': '0x4b67bf', 'uniqueId': '0x983a157944bfff32e4cb224638fe33dba264e9c75e8f892f9a33de65ffbeeda9:log:22', 'hash': '0x983a157944bfff32e4cb224638fe33dba264e9c75e8f892f9a33de65ffbeeda9', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 317.2799523967091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x113324d3aefeb16437', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:20:37.000Z'}}, {'blockNum': '0x4b67bf', 'uniqueId': '0x983a157944bfff32e4cb224638fe33dba264e9c75e8f892f9a33de65ffbeeda9:log:24', 'hash': '0x983a157944bfff32e4cb224638fe33dba264e9c75e8f892f9a33de65ffbeeda9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 317.2799523967091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x113324d3aefeb16437', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:20:37.000Z'}}, {'blockNum': '0x4b67ca', 'uniqueId': '0x1993e808622165146a1d0900c7184164acdbd2fdc5c5b9cc0e97b49b2521f64d:log:10', 'hash': '0x1993e808622165146a1d0900c7184164acdbd2fdc5c5b9cc0e97b49b2521f64d', 'from': '0xbc1d9196ede0488197db38ba1d707ea3ac01cbea', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 57.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031f5c4ed276800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:24:02.000Z'}}, {'blockNum': '0x4b67da', 'uniqueId': '0x1085d43ee4e35e4ab41d8223da888102f20a68a0c4518572e976cfdc6db3e469:log:46', 'hash': '0x1085d43ee4e35e4ab41d8223da888102f20a68a0c4518572e976cfdc6db3e469', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 362.39763726895313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a5470b07f8d0a786', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:28:05.000Z'}}, {'blockNum': '0x4b67da', 'uniqueId': '0x1085d43ee4e35e4ab41d8223da888102f20a68a0c4518572e976cfdc6db3e469:log:48', 'hash': '0x1085d43ee4e35e4ab41d8223da888102f20a68a0c4518572e976cfdc6db3e469', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 362.39763726895313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a5470b07f8d0a786', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:28:05.000Z'}}, {'blockNum': '0x4b67e0', 'uniqueId': '0x9181c8a1b766dfbe4c9d9c70be50c2950c04edf5e0d6fe7fc4ca2c208d5ba40c:log:13', 'hash': '0x9181c8a1b766dfbe4c9d9c70be50c2950c04edf5e0d6fe7fc4ca2c208d5ba40c', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 500.61728430030576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b2375dfafe47602c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:28:45.000Z'}}, {'blockNum': '0x4b67e0', 'uniqueId': '0x9181c8a1b766dfbe4c9d9c70be50c2950c04edf5e0d6fe7fc4ca2c208d5ba40c:log:15', 'hash': '0x9181c8a1b766dfbe4c9d9c70be50c2950c04edf5e0d6fe7fc4ca2c208d5ba40c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500.61728430030576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b2375dfafe47602c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:28:45.000Z'}}, {'blockNum': '0x4b67f0', 'uniqueId': '0x8122a116b0ede525dfa066066b8f32d6af1024fed309484f689c4ee8683a31fa:log:83', 'hash': '0x8122a116b0ede525dfa066066b8f32d6af1024fed309484f689c4ee8683a31fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.9525661460574898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3831dce8d1cda9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:32:42.000Z'}}, {'blockNum': '0x4b67f0', 'uniqueId': '0x8122a116b0ede525dfa066066b8f32d6af1024fed309484f689c4ee8683a31fa:log:86', 'hash': '0x8122a116b0ede525dfa066066b8f32d6af1024fed309484f689c4ee8683a31fa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.9525661460574898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3831dce8d1cda9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:32:42.000Z'}}, {'blockNum': '0x4b6810', 'uniqueId': '0xea7df0c820311c2ec47fd6f70e9d29c35b6b3295fdc3d3c7c8a1425fc4c0cfbe:log:2', 'hash': '0xea7df0c820311c2ec47fd6f70e9d29c35b6b3295fdc3d3c7c8a1425fc4c0cfbe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:40:27.000Z'}}, {'blockNum': '0x4b6811', 'uniqueId': '0x8faabed7fb2780a3181ccee433a81e147c67690599dc596faedf42555a7c9ef0:log:3', 'hash': '0x8faabed7fb2780a3181ccee433a81e147c67690599dc596faedf42555a7c9ef0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'value': 1406.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c3f1bca0b2aea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:40:42.000Z'}}, {'blockNum': '0x4b6811', 'uniqueId': '0x1ddc5deb3d74670455ceed02750509b6841ec0f2d0c57df96a32ca448ceb3fd4:log:12', 'hash': '0x1ddc5deb3d74670455ceed02750509b6841ec0f2d0c57df96a32ca448ceb3fd4', 'from': '0x00c0a318ff56406bfb75406eb4831197776a82fe', 'to': '0x009bb5e9fcf28e5e601b7d0e9e821da6365d0a9c', 'value': 81808.03193695779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1152d282192235025de0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:40:42.000Z'}}, {'blockNum': '0x4b6818', 'uniqueId': '0xb315807a035ac47d6927a7cbffe060abbf55f4706cf605cfeb1ec82ff719f1a7:log:81', 'hash': '0xb315807a035ac47d6927a7cbffe060abbf55f4706cf605cfeb1ec82ff719f1a7', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x3480fcbc4325e34ed9dcc3241f817ef6dc8dd848', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:42:39.000Z'}}, {'blockNum': '0x4b6819', 'uniqueId': '0xb89bac42989e3c57593d8cabcd01ffb8c1b6bd5eefdf840023a1a8af5b5fc6df:log:27', 'hash': '0xb89bac42989e3c57593d8cabcd01ffb8c1b6bd5eefdf840023a1a8af5b5fc6df', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1907.9904401547674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x676eafbc5aaa1c1393', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:02.000Z'}}, {'blockNum': '0x4b6819', 'uniqueId': '0xb89bac42989e3c57593d8cabcd01ffb8c1b6bd5eefdf840023a1a8af5b5fc6df:log:29', 'hash': '0xb89bac42989e3c57593d8cabcd01ffb8c1b6bd5eefdf840023a1a8af5b5fc6df', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1907.9904401547674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x676eafbc5aaa1c1393', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:02.000Z'}}, {'blockNum': '0x4b6819', 'uniqueId': '0xd464800d14fe157f16ccf7ccf8acc21d3ef7c8e67432cbe4bf25af5f7be7ad60:log:64', 'hash': '0xd464800d14fe157f16ccf7ccf8acc21d3ef7c8e67432cbe4bf25af5f7be7ad60', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xb03fad2c42f0a122f54ce5c55507e5a15463bbb7', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:02.000Z'}}, {'blockNum': '0x4b681a', 'uniqueId': '0xae710f28d7f9c4fe612edc7bba5522cab48fc8387d03652acb4906c6280f5fdc:log:20', 'hash': '0xae710f28d7f9c4fe612edc7bba5522cab48fc8387d03652acb4906c6280f5fdc', 'from': '0x7015b8a8c07fc73e968e445f4a7b236a7d90d44a', 'to': '0xb048466e9234f56a4242f80ce33087380fd957e5', 'value': 1.86388537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19ddd9de64e5c400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:21.000Z'}}, {'blockNum': '0x4b681b', 'uniqueId': '0xe50b57674802fd3c8ed49975078d37e13d0aa17803784d189fc6046466dc945f:log:34', 'hash': '0xe50b57674802fd3c8ed49975078d37e13d0aa17803784d189fc6046466dc945f', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6760f0fc47edec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:25.000Z'}}, {'blockNum': '0x4b681d', 'uniqueId': '0x000d5627b0f13ae0d0669fc64079b87aa1f35612e6ecb721bc3a7d31a43e31c1:log:2', 'hash': '0x000d5627b0f13ae0d0669fc64079b87aa1f35612e6ecb721bc3a7d31a43e31c1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 360.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138af147fd38520000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:43:57.000Z'}}, {'blockNum': '0x4b681f', 'uniqueId': '0x9d3f16d202011b4bfb271234493024dd27309ac5383660ff1ed1ec03f97c42bf:log:31', 'hash': '0x9d3f16d202011b4bfb271234493024dd27309ac5383660ff1ed1ec03f97c42bf', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 144.394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d3de89f7c1c10000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:44:40.000Z'}}, {'blockNum': '0x4b6820', 'uniqueId': '0xe506f74017d89973b6f5d5efa39eb2f448f4db6a9ebbc2d4199ee0fa3c47f958:log:84', 'hash': '0xe506f74017d89973b6f5d5efa39eb2f448f4db6a9ebbc2d4199ee0fa3c47f958', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xb25868efd37e634cab807fe910cb168f740e7880', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:44:53.000Z'}}, {'blockNum': '0x4b6823', 'uniqueId': '0x59459f7fdba260d0bd2f13905a90579a2792e60a7b7bcd6147dabbfd87881e6b:log:63', 'hash': '0x59459f7fdba260d0bd2f13905a90579a2792e60a7b7bcd6147dabbfd87881e6b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 71.03929477568867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d9de4637572fce08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:45:23.000Z'}}, {'blockNum': '0x4b6823', 'uniqueId': '0x59459f7fdba260d0bd2f13905a90579a2792e60a7b7bcd6147dabbfd87881e6b:log:66', 'hash': '0x59459f7fdba260d0bd2f13905a90579a2792e60a7b7bcd6147dabbfd87881e6b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 71.03929477568867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d9de4637572fce08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:45:23.000Z'}}, {'blockNum': '0x4b6825', 'uniqueId': '0xb8941b08ba4913085660b282dae6436b0678e3984dfe1fb27058ab45d4035490:log:11', 'hash': '0xb8941b08ba4913085660b282dae6436b0678e3984dfe1fb27058ab45d4035490', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xef5b58cb9515355b21ddf2f8b54266fdf948456d', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:45:34.000Z'}}, {'blockNum': '0x4b6828', 'uniqueId': '0x3e8b426a758c15d4ff54db5a671c2d46e60be1fbc44b7f7865589d746b6d17a1:log:9', 'hash': '0x3e8b426a758c15d4ff54db5a671c2d46e60be1fbc44b7f7865589d746b6d17a1', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:46:31.000Z'}}, {'blockNum': '0x4b6828', 'uniqueId': '0x412fb4aaae46e82a684f53174079dcfbb47dbc346dbb73c24511a2b756ac7cd4:log:69', 'hash': '0x412fb4aaae46e82a684f53174079dcfbb47dbc346dbb73c24511a2b756ac7cd4', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xa82b1008ed14ff74d42aa4f4cb81d9e7ea672d7a', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:46:31.000Z'}}, {'blockNum': '0x4b6829', 'uniqueId': '0xc1f59f203f03e591f3084a46febc983a966b40851a8ba5212490cd32285ac083:log:55', 'hash': '0xc1f59f203f03e591f3084a46febc983a966b40851a8ba5212490cd32285ac083', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xbd2c655c9fc40af89c2c5adbc507049b24ccb9ec', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:46:53.000Z'}}, {'blockNum': '0x4b6834', 'uniqueId': '0x68ec4ac5469ccb587bc8ed55583908012007521d6407f12112d6080f5a124ec4:log:77', 'hash': '0x68ec4ac5469ccb587bc8ed55583908012007521d6407f12112d6080f5a124ec4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4329.074857716199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeaadfb76abd8c2b2d9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:49:14.000Z'}}, {'blockNum': '0x4b6834', 'uniqueId': '0x68ec4ac5469ccb587bc8ed55583908012007521d6407f12112d6080f5a124ec4:log:79', 'hash': '0x68ec4ac5469ccb587bc8ed55583908012007521d6407f12112d6080f5a124ec4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'value': 4329.074857716199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeaadfb76abd8c2b2d9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:49:14.000Z'}}, {'blockNum': '0x4b6837', 'uniqueId': '0x62258efe2cd0a82e043d735afe67dedf2020774900b1b36770279116d3095bee:log:46', 'hash': '0x62258efe2cd0a82e043d735afe67dedf2020774900b1b36770279116d3095bee', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xbb3c86073bd4c05829d0d58926f71caa84686dad', 'value': 1.46667477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x145aaceebae0b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:50:48.000Z'}}, {'blockNum': '0x4b683a', 'uniqueId': '0x058f08b2a677d4ec8c6e4ff19bcb6cced043a9f6956227fff8d1567e853398a3:log:4', 'hash': '0x058f08b2a677d4ec8c6e4ff19bcb6cced043a9f6956227fff8d1567e853398a3', 'from': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1406.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c3f1bca0b2aea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:51:43.000Z'}}, {'blockNum': '0x4b683a', 'uniqueId': '0x3bedd3495f90beec275331e433a83afeccb43b3687e720c9a53369bb99d1f9cc:log:43', 'hash': '0x3bedd3495f90beec275331e433a83afeccb43b3687e720c9a53369bb99d1f9cc', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x956eb928a79351bcab988dd46b61c3956c99be1e', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:51:43.000Z'}}, {'blockNum': '0x4b683b', 'uniqueId': '0x898bf357aafcbc84333fcfe78bfdfc5c2b42d7e1c70f05dd73fbd7855b58dd6b:log:21', 'hash': '0x898bf357aafcbc84333fcfe78bfdfc5c2b42d7e1c70f05dd73fbd7855b58dd6b', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6760f0fc47edec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:52:01.000Z'}}, {'blockNum': '0x4b683b', 'uniqueId': '0x8076cb0a1c5a70f1f91927f0c0bf9cc1dccbe9dab1d5d71e0f76acff25621d9e:log:23', 'hash': '0x8076cb0a1c5a70f1f91927f0c0bf9cc1dccbe9dab1d5d71e0f76acff25621d9e', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 360.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138af147fd38520000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:52:01.000Z'}}, {'blockNum': '0x4b6844', 'uniqueId': '0x69b270dd329d68ae77fb5c6341e3b12f7a23f2dd3a88aa68df0e166b2dfcac5d:log:18', 'hash': '0x69b270dd329d68ae77fb5c6341e3b12f7a23f2dd3a88aa68df0e166b2dfcac5d', 'from': '0x3480fcbc4325e34ed9dcc3241f817ef6dc8dd848', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:55:40.000Z'}}, {'blockNum': '0x4b6845', 'uniqueId': '0x5b8dcbabd16d5e74b3ef256a757fe0cc7dccf45e0430b930f805589ed602d186:log:24', 'hash': '0x5b8dcbabd16d5e74b3ef256a757fe0cc7dccf45e0430b930f805589ed602d186', 'from': '0xb03fad2c42f0a122f54ce5c55507e5a15463bbb7', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:07.000Z'}}, {'blockNum': '0x4b6845', 'uniqueId': '0x16885f240dc44f84dc6bd860a4bf7c9ed0475df764310a95e68827a5939f0f03:log:27', 'hash': '0x16885f240dc44f84dc6bd860a4bf7c9ed0475df764310a95e68827a5939f0f03', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xab0c0b8dbbe6bdc0d0a57becbf913d4d2ddf8932', 'value': 1383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4af8fb048d4d3c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:07.000Z'}}, {'blockNum': '0x4b6845', 'uniqueId': '0x7132666ee88bf6075af2ac0a8d579afe53889defbc5ef8d8cf997c63bb5a35e3:log:89', 'hash': '0x7132666ee88bf6075af2ac0a8d579afe53889defbc5ef8d8cf997c63bb5a35e3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 32.16118355318783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01be537a0b5be56601', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:07.000Z'}}, {'blockNum': '0x4b6845', 'uniqueId': '0x7132666ee88bf6075af2ac0a8d579afe53889defbc5ef8d8cf997c63bb5a35e3:log:92', 'hash': '0x7132666ee88bf6075af2ac0a8d579afe53889defbc5ef8d8cf997c63bb5a35e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 32.16118355318783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01be537a0b5be56601', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:07.000Z'}}, {'blockNum': '0x4b6846', 'uniqueId': '0x9daa3bd6a0440707c8dca146d2d5cf349b67c4fd11677627fae6f4e79ea6acd9:log:11', 'hash': '0x9daa3bd6a0440707c8dca146d2d5cf349b67c4fd11677627fae6f4e79ea6acd9', 'from': '0x882622ca65db0237785c88ed4a5fae240aa67d99', 'to': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'value': 16, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xde0b6b3a76400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:11.000Z'}}, {'blockNum': '0x4b6846', 'uniqueId': '0x19ff9b20fb345bf2d123254c0439e2686c23a8d27343b75f0f32f8cea314c6d2:log:71', 'hash': '0x19ff9b20fb345bf2d123254c0439e2686c23a8d27343b75f0f32f8cea314c6d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3279.647120264448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1ca3f2f90bb390519', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:11.000Z'}}, {'blockNum': '0x4b6846', 'uniqueId': '0x19ff9b20fb345bf2d123254c0439e2686c23a8d27343b75f0f32f8cea314c6d2:log:73', 'hash': '0x19ff9b20fb345bf2d123254c0439e2686c23a8d27343b75f0f32f8cea314c6d2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'value': 3279.647120264448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1ca3f2f90bb390519', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:11.000Z'}}, {'blockNum': '0x4b6847', 'uniqueId': '0xf940ae8180f8ad6c1c3a1828b64b77c5a21fa2c2599aa6166cea2e661bf15ba7:log:57', 'hash': '0xf940ae8180f8ad6c1c3a1828b64b77c5a21fa2c2599aa6166cea2e661bf15ba7', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xcbf9c9c217874c9964811d9f3832b4a1baf53f2d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:56:28.000Z'}}, {'blockNum': '0x4b684b', 'uniqueId': '0xcecf8b51de6c4cd6be084508c76ddb6286721afd36486f9cfa09fa8277f70315:log:20', 'hash': '0xcecf8b51de6c4cd6be084508c76ddb6286721afd36486f9cfa09fa8277f70315', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x010ecc753b432b8a09d727f42830b67f3f572f8a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:57:15.000Z'}}, {'blockNum': '0x4b684d', 'uniqueId': '0xc86fad9ef825d2bdd988f7c7f679e8f3808ac4265161355f3a442053a483ca1f:log:63', 'hash': '0xc86fad9ef825d2bdd988f7c7f679e8f3808ac4265161355f3a442053a483ca1f', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x7defc3954c907fa7d5ea7913efc83f0770a8933f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:58:10.000Z'}}, {'blockNum': '0x4b684f', 'uniqueId': '0xeac9148b82384a8bdfbc8315742d4c50228fe2b8498d719751b9333ce71317c2:log:72', 'hash': '0xeac9148b82384a8bdfbc8315742d4c50228fe2b8498d719751b9333ce71317c2', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x06b7ce5e8b711b00371c86bfc9ae1f692233ceae', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T17:58:37.000Z'}}, {'blockNum': '0x4b6856', 'uniqueId': '0xe0c5148b7e67df278979cd38267b85980470c7042a6b9f21ca35439a7c821ee3:log:2', 'hash': '0xe0c5148b7e67df278979cd38267b85980470c7042a6b9f21ca35439a7c821ee3', 'from': '0xb25868efd37e634cab807fe910cb168f740e7880', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:01:36.000Z'}}, {'blockNum': '0x4b6857', 'uniqueId': '0x1a2ea587eea6565c0a5068e373e2ca61bb24f86d694a5749211bd1d8ea220430:log:132', 'hash': '0x1a2ea587eea6565c0a5068e373e2ca61bb24f86d694a5749211bd1d8ea220430', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x43194d278839a37903e570cd1ad4be959cac2f83', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:01:41.000Z'}}, {'blockNum': '0x4b6859', 'uniqueId': '0xc33546d6ad85a95a61dd5ed7388a25114f3e424372046ab3960b3bf20dbb855f:log:9', 'hash': '0xc33546d6ad85a95a61dd5ed7388a25114f3e424372046ab3960b3bf20dbb855f', 'from': '0x46277982bd95632bd1949b7926248de598ca5777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:02:18.000Z'}}, {'blockNum': '0x4b6859', 'uniqueId': '0xc5aa9f5df3c21430d053132c97cb6fdda3ea24348a1d5188368cc395355b633b:log:82', 'hash': '0xc5aa9f5df3c21430d053132c97cb6fdda3ea24348a1d5188368cc395355b633b', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x23395194df46d4c0cd4f77470bfee70b67b79e2c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:02:18.000Z'}}, {'blockNum': '0x4b685a', 'uniqueId': '0x0131a85c60fe964f7fda8624f89cc7f40799ee70bfb6ad2efa794bed946aa3fb:log:27', 'hash': '0x0131a85c60fe964f7fda8624f89cc7f40799ee70bfb6ad2efa794bed946aa3fb', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x474985b2cc35638282377659057feda3498b9ea1', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:02:22.000Z'}}, {'blockNum': '0x4b685f', 'uniqueId': '0xc15eb838de382b4fa6d346b076d0eb081c606d6138aa3f974a7971a8b9ec12ed:log:20', 'hash': '0xc15eb838de382b4fa6d346b076d0eb081c606d6138aa3f974a7971a8b9ec12ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2457.3602598470097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8536b968ad9e9b8b57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:03:19.000Z'}}, {'blockNum': '0x4b685f', 'uniqueId': '0xc15eb838de382b4fa6d346b076d0eb081c606d6138aa3f974a7971a8b9ec12ed:log:22', 'hash': '0xc15eb838de382b4fa6d346b076d0eb081c606d6138aa3f974a7971a8b9ec12ed', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x6866e64b72bec90c6b5b33437ff7084052067f86', 'value': 2457.3602598470097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8536b968ad9e9b8b57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:03:19.000Z'}}, {'blockNum': '0x4b6860', 'uniqueId': '0xfb3d594a7616a172965d7f32b848b177d064e708c6c5966eec60e543cd6659a4:log:66', 'hash': '0xfb3d594a7616a172965d7f32b848b177d064e708c6c5966eec60e543cd6659a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:03:43.000Z'}}, {'blockNum': '0x4b6861', 'uniqueId': '0xa8330f3f9dede67fde02d507f19803dfeec7c29af4f6cc4f30fdcd0439054fbd:log:28', 'hash': '0xa8330f3f9dede67fde02d507f19803dfeec7c29af4f6cc4f30fdcd0439054fbd', 'from': '0xab0c0b8dbbe6bdc0d0a57becbf913d4d2ddf8932', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4af8fb048d4d3c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:04:31.000Z'}}, {'blockNum': '0x4b6862', 'uniqueId': '0x753741d3d3de71487e809e0fa46b1d8c62710d7447ae6f4d5a7f3da3aa5fe244:log:2', 'hash': '0x753741d3d3de71487e809e0fa46b1d8c62710d7447ae6f4d5a7f3da3aa5fe244', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8fe580e6f488978517106f825339045dce939aa4', 'value': 53.21523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e28279bd16b5e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:04:46.000Z'}}, {'blockNum': '0x4b6863', 'uniqueId': '0x9cc3907de38c0a887cc80b29027a044b392a9b7321ba0593c5fa9d538bceae32:log:26', 'hash': '0x9cc3907de38c0a887cc80b29027a044b392a9b7321ba0593c5fa9d538bceae32', 'from': '0x6866e64b72bec90c6b5b33437ff7084052067f86', 'to': '0xaf52bcc41ca1af3ed5c3d2f3a27647433167b214', 'value': 2457.3602598470097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8536b968ad9e9b8b57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:04:54.000Z'}}, {'blockNum': '0x4b6865', 'uniqueId': '0x9d187c9b0a9cd0dc05a4e5764d4aa7add27aa5ce5f08da884ffd6642dc3426ca:log:33', 'hash': '0x9d187c9b0a9cd0dc05a4e5764d4aa7add27aa5ce5f08da884ffd6642dc3426ca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4323.893178268129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xea661270aabe9b4143', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:05:19.000Z'}}, {'blockNum': '0x4b6865', 'uniqueId': '0x9d187c9b0a9cd0dc05a4e5764d4aa7add27aa5ce5f08da884ffd6642dc3426ca:log:35', 'hash': '0x9d187c9b0a9cd0dc05a4e5764d4aa7add27aa5ce5f08da884ffd6642dc3426ca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'value': 4323.893178268129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xea661270aabe9b4143', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:05:19.000Z'}}, {'blockNum': '0x4b6867', 'uniqueId': '0x9a6b90869ed0b5714ba9b98c26b83615023d7fe603eded3868a985370b9e0d47:log:39', 'hash': '0x9a6b90869ed0b5714ba9b98c26b83615023d7fe603eded3868a985370b9e0d47', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x3e45521f66466db692f9c96f1e7a97005b0ec10a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:05:42.000Z'}}, {'blockNum': '0x4b6868', 'uniqueId': '0x031cf41c1f626928292c66806dc4e3cc0c81cda20de9b92ed2fbe8a9a0d9fa24:log:3', 'hash': '0x031cf41c1f626928292c66806dc4e3cc0c81cda20de9b92ed2fbe8a9a0d9fa24', 'from': '0xbe152c58f170bfff3992ccb848d865ee5b75e00e', 'to': '0x90557207a5e94da81b35c61ee28ce065e076a552', 'value': 13.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbcbce7f1b1500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:05:49.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0x435a6950b2e0acf97d3f09f4e3760b7c87b70000e95f9c761635fcd9db4cd2ba:log:11', 'hash': '0x435a6950b2e0acf97d3f09f4e3760b7c87b70000e95f9c761635fcd9db4cd2ba', 'from': '0xa82b1008ed14ff74d42aa4f4cb81d9e7ea672d7a', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0xba1e63dcf7a60c658227364c36e38b0c2dafb89973f0ccb811c5888d45607df9:log:17', 'hash': '0xba1e63dcf7a60c658227364c36e38b0c2dafb89973f0ccb811c5888d45607df9', 'from': '0x956eb928a79351bcab988dd46b61c3956c99be1e', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0x5238239176598ec73117ed243a6a2ae9db4ce6831428910b25db48f3f3fb35ff:log:36', 'hash': '0x5238239176598ec73117ed243a6a2ae9db4ce6831428910b25db48f3f3fb35ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2487.7208261539945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86dc0fcee0922142c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0x5238239176598ec73117ed243a6a2ae9db4ce6831428910b25db48f3f3fb35ff:log:38', 'hash': '0x5238239176598ec73117ed243a6a2ae9db4ce6831428910b25db48f3f3fb35ff', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2487.7208261539945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86dc0fcee0922142c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686a', 'uniqueId': '0x34e8f64b14c2e81a42142b325d5edcb85a6d5510dbf699803a8c08157a8d272b:log:61', 'hash': '0x34e8f64b14c2e81a42142b325d5edcb85a6d5510dbf699803a8c08157a8d272b', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xe688cb18d16c3fc477b05fbd425b2c2933c90558', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:06:10.000Z'}}, {'blockNum': '0x4b686b', 'uniqueId': '0x30200d2d688003c753add5f39dfd24d6e3607d229b92aca39a123aafb667fb1d:log:18', 'hash': '0x30200d2d688003c753add5f39dfd24d6e3607d229b92aca39a123aafb667fb1d', 'from': '0xef5b58cb9515355b21ddf2f8b54266fdf948456d', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:01.000Z'}}, {'blockNum': '0x4b686b', 'uniqueId': '0x31ceab59bdbfea6372f441a6fe70be452785a614f1e568521134f0506c9e0b78:log:19', 'hash': '0x31ceab59bdbfea6372f441a6fe70be452785a614f1e568521134f0506c9e0b78', 'from': '0xbd2c655c9fc40af89c2c5adbc507049b24ccb9ec', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 533.83333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cf06cfc4b1d58b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:01.000Z'}}, {'blockNum': '0x4b686c', 'uniqueId': '0x721ca51b2b6f2ea7275f3e78eb680689f006a2978f6db3d4e62cf3f4a1f29ea6:log:33', 'hash': '0x721ca51b2b6f2ea7275f3e78eb680689f006a2978f6db3d4e62cf3f4a1f29ea6', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86dfefa202d3e00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:39.000Z'}}, {'blockNum': '0x4b686e', 'uniqueId': '0x80978635267908881e409cda942389573a0a0fccb15b3ab9431e2cc3df150c59:log:50', 'hash': '0x80978635267908881e409cda942389573a0a0fccb15b3ab9431e2cc3df150c59', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xe0ec7759cd5d46a0a1085ec3457c3e37a75ac0e3', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:55.000Z'}}, {'blockNum': '0x4b686e', 'uniqueId': '0xfbbed366cee7027aa4b0152b81133a6b51ccee460f14ec093958721de2d30d4f:log:51', 'hash': '0xfbbed366cee7027aa4b0152b81133a6b51ccee460f14ec093958721de2d30d4f', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xcdd88911a61a49bfce1427ec78af6bc86314b242', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:55.000Z'}}, {'blockNum': '0x4b686e', 'uniqueId': '0x42dee54ca137cd70f5e9ab9b354b3d95df4b86117a84f0a789048b12a4ce952f:log:52', 'hash': '0x42dee54ca137cd70f5e9ab9b354b3d95df4b86117a84f0a789048b12a4ce952f', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x60265fdcbe88fa351f39dda656854333c1804f74', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:07:55.000Z'}}, {'blockNum': '0x4b6870', 'uniqueId': '0x328dfbc054b5116efeb8ce81f9062da3044d01a905f6b3cd7dc2c1e305851edc:log:30', 'hash': '0x328dfbc054b5116efeb8ce81f9062da3044d01a905f6b3cd7dc2c1e305851edc', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x19c38c345e5d5aad595c1747580c114799b93e40', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:14.000Z'}}, {'blockNum': '0x4b6870', 'uniqueId': '0x3d38fdb94a3586b7f24b6a66b0a2c3587a109b70effe897c9b3b5e634658ce70:log:59', 'hash': '0x3d38fdb94a3586b7f24b6a66b0a2c3587a109b70effe897c9b3b5e634658ce70', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 182.40400446408043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09e35d33a46a479b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:14.000Z'}}, {'blockNum': '0x4b6870', 'uniqueId': '0x3d38fdb94a3586b7f24b6a66b0a2c3587a109b70effe897c9b3b5e634658ce70:log:61', 'hash': '0x3d38fdb94a3586b7f24b6a66b0a2c3587a109b70effe897c9b3b5e634658ce70', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 182.40400446408043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09e35d33a46a479b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:14.000Z'}}, {'blockNum': '0x4b6871', 'uniqueId': '0xa37fdbbe1bd831e598485729bf738b8844f62d6ea51ecbb47712e93ce89cb9b0:log:34', 'hash': '0xa37fdbbe1bd831e598485729bf738b8844f62d6ea51ecbb47712e93ce89cb9b0', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xf484a652c95611431e9abe3f1b0f3fed555f063c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:24.000Z'}}, {'blockNum': '0x4b6871', 'uniqueId': '0x853bf2a714e73963731f314c90fdf4ddca0ac6843d1360a3ed2946b4d46b8807:log:35', 'hash': '0x853bf2a714e73963731f314c90fdf4ddca0ac6843d1360a3ed2946b4d46b8807', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xc87a7117d470a7f470ec7154f2943261cfa5c8c8', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:24.000Z'}}, {'blockNum': '0x4b6871', 'uniqueId': '0x557af4a5c30c29cc430c37489393678f667fadcdba02cc1dac1baf1d2d1018cd:log:36', 'hash': '0x557af4a5c30c29cc430c37489393678f667fadcdba02cc1dac1baf1d2d1018cd', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x6d764f07d6daa62f340d151f93d5b5ecc87eb104', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:08:24.000Z'}}, {'blockNum': '0x4b6879', 'uniqueId': '0x199c45fa455bceadcc5901a9897aa30a7f4b46ef10b2e06f54bd2dd0911a12ed:log:67', 'hash': '0x199c45fa455bceadcc5901a9897aa30a7f4b46ef10b2e06f54bd2dd0911a12ed', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0xe265b50d0c49de9a8183ba5c423ba9b9061191bf', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:10:23.000Z'}}, {'blockNum': '0x4b687d', 'uniqueId': '0x51bb72b5bf72ed2bf441c0e7d3938f930c38c610e01860de888e7ff9a34bd376:log:12', 'hash': '0x51bb72b5bf72ed2bf441c0e7d3938f930c38c610e01860de888e7ff9a34bd376', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x00e3ef121b19f47de8293f181f2ec50260982aad', 'value': 110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05f68e8131ecf80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:12:38.000Z'}}, {'blockNum': '0x4b687d', 'uniqueId': '0x09902791afc96adf7c277a38d4eb5b4bd27a19f294789f140d8834e9e620de35:log:77', 'hash': '0x09902791afc96adf7c277a38d4eb5b4bd27a19f294789f140d8834e9e620de35', 'from': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'to': '0x0c7681eca92b2acadae83749e885019885d81485', 'value': 223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c16bf267ed01c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:12:38.000Z'}}, {'blockNum': '0x4b6882', 'uniqueId': '0xfdfcb6b03444613041e9b4a5836bacb39783f22a1871eec27f4b3b7d09793aef:log:68', 'hash': '0xfdfcb6b03444613041e9b4a5836bacb39783f22a1871eec27f4b3b7d09793aef', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:13:49.000Z'}}, {'blockNum': '0x4b6882', 'uniqueId': '0x8089c107974cd80714b7bbb77b37816c801630f3936fefd9bbe01dd47e45ff2e:log:87', 'hash': '0x8089c107974cd80714b7bbb77b37816c801630f3936fefd9bbe01dd47e45ff2e', 'from': '0xaf52bcc41ca1af3ed5c3d2f3a27647433167b214', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2457.36025984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8536b968abfcce0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:13:49.000Z'}}, {'blockNum': '0x4b6886', 'uniqueId': '0xa8f877152c5c83e685517fb3970346d600a62ef00318920647dc0a9e15a80454:log:70', 'hash': '0xa8f877152c5c83e685517fb3970346d600a62ef00318920647dc0a9e15a80454', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1561.5799512225674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54a746740820f4136d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:14:29.000Z'}}, {'blockNum': '0x4b6886', 'uniqueId': '0xa8f877152c5c83e685517fb3970346d600a62ef00318920647dc0a9e15a80454:log:72', 'hash': '0xa8f877152c5c83e685517fb3970346d600a62ef00318920647dc0a9e15a80454', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1561.5799512225674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54a746740820f4136d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:14:29.000Z'}}, {'blockNum': '0x4b688a', 'uniqueId': '0x46a360b21520047098916b25d5d6227bbd525ac8860bd8c4a1b543918f17d8de:log:25', 'hash': '0x46a360b21520047098916b25d5d6227bbd525ac8860bd8c4a1b543918f17d8de', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4470.266126760435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf255679dcdb91676dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:15:08.000Z'}}, {'blockNum': '0x4b688a', 'uniqueId': '0x46a360b21520047098916b25d5d6227bbd525ac8860bd8c4a1b543918f17d8de:log:27', 'hash': '0x46a360b21520047098916b25d5d6227bbd525ac8860bd8c4a1b543918f17d8de', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4470.266126760435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf255679dcdb91676dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:15:08.000Z'}}, {'blockNum': '0x4b688e', 'uniqueId': '0xf75464ae50167ac4f47a8a74666645c03b795edf71f53d0287e8f0bb8958a092:log:3', 'hash': '0xf75464ae50167ac4f47a8a74666645c03b795edf71f53d0287e8f0bb8958a092', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x01bcac86e3f04eca9714d67d4f84b69ea952e89f', 'value': 17.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef8ef18ac0cb0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:15:25.000Z'}}, {'blockNum': '0x4b6892', 'uniqueId': '0x7ef34531c1b088dd9f95aedf880139d2e39b48fa57b7ee1733e3a02ff2ae250c:log:13', 'hash': '0x7ef34531c1b088dd9f95aedf880139d2e39b48fa57b7ee1733e3a02ff2ae250c', 'from': '0x23395194df46d4c0cd4f77470bfee70b67b79e2c', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:39.000Z'}}, {'blockNum': '0x4b6893', 'uniqueId': '0x3a555b2c1d1bc8bc5349498a7939b95b8d08beb8da4e1536b1c540a73cfbbd76:log:21', 'hash': '0x3a555b2c1d1bc8bc5349498a7939b95b8d08beb8da4e1536b1c540a73cfbbd76', 'from': '0x010ecc753b432b8a09d727f42830b67f3f572f8a', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:46.000Z'}}, {'blockNum': '0x4b6893', 'uniqueId': '0x6b51aa6406dadd31440f6f90e8c36b6b296e39c4c3031a8d9a40690cf860a44a:log:42', 'hash': '0x6b51aa6406dadd31440f6f90e8c36b6b296e39c4c3031a8d9a40690cf860a44a', 'from': '0xa9aabbfa7d2f1a7e946186cdfe056c9693fe3841', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 9.34503512507984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81b03bef23ee91f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:46.000Z'}}, {'blockNum': '0x4b6893', 'uniqueId': '0x6b51aa6406dadd31440f6f90e8c36b6b296e39c4c3031a8d9a40690cf860a44a:log:44', 'hash': '0x6b51aa6406dadd31440f6f90e8c36b6b296e39c4c3031a8d9a40690cf860a44a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.34503512507984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81b03bef23ee91f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:46.000Z'}}, {'blockNum': '0x4b6894', 'uniqueId': '0x98b7627cdfbd41ecbbf8d2f9e8b09f4767e05f056d9abe14094b4a475ba84907:log:6', 'hash': '0x98b7627cdfbd41ecbbf8d2f9e8b09f4767e05f056d9abe14094b4a475ba84907', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x8ec9aed780c02f13e9865a66660b71a42f3c3817', 'value': 15.47987616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd6d3915a03d68000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:56.000Z'}}, {'blockNum': '0x4b6894', 'uniqueId': '0x02a429b43e087448cd3e97384adee3a048da7e8714fecbf7c7e29b127593d22f:log:9', 'hash': '0x02a429b43e087448cd3e97384adee3a048da7e8714fecbf7c7e29b127593d22f', 'from': '0x43194d278839a37903e570cd1ad4be959cac2f83', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:56.000Z'}}, {'blockNum': '0x4b6894', 'uniqueId': '0x28383ae305f5b6d45cc163e4ec0ffaf6c10e7a54152c3f53aa81833c1c3d041d:log:104', 'hash': '0x28383ae305f5b6d45cc163e4ec0ffaf6c10e7a54152c3f53aa81833c1c3d041d', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86dfefa202d3e00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:16:56.000Z'}}, {'blockNum': '0x4b6895', 'uniqueId': '0xa7e09319752ff361de7346407b8717a1380110a646e6299e02672ce2da6383d1:log:28', 'hash': '0xa7e09319752ff361de7346407b8717a1380110a646e6299e02672ce2da6383d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 12.470298730558454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xad0f669ffdf0fd41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:01.000Z'}}, {'blockNum': '0x4b6895', 'uniqueId': '0xa7e09319752ff361de7346407b8717a1380110a646e6299e02672ce2da6383d1:log:31', 'hash': '0xa7e09319752ff361de7346407b8717a1380110a646e6299e02672ce2da6383d1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 12.470298730558454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xad0f669ffdf0fd41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:01.000Z'}}, {'blockNum': '0x4b6896', 'uniqueId': '0x0e177a1b5b180ee999676fee4e0d83340ac9b68f1783304f41ba75f353758758:log:58', 'hash': '0x0e177a1b5b180ee999676fee4e0d83340ac9b68f1783304f41ba75f353758758', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4467.895462927692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf23481539ba886f54b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:20.000Z'}}, {'blockNum': '0x4b6896', 'uniqueId': '0x0e177a1b5b180ee999676fee4e0d83340ac9b68f1783304f41ba75f353758758:log:60', 'hash': '0x0e177a1b5b180ee999676fee4e0d83340ac9b68f1783304f41ba75f353758758', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4467.895462927692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf23481539ba886f54b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:20.000Z'}}, {'blockNum': '0x4b6897', 'uniqueId': '0x964a0b90d31a15c8066dcecee44d22fd8807b3d4e559c98a6d9bfd4f18d61f24:log:6', 'hash': '0x964a0b90d31a15c8066dcecee44d22fd8807b3d4e559c98a6d9bfd4f18d61f24', 'from': '0x7defc3954c907fa7d5ea7913efc83f0770a8933f', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:35.000Z'}}, {'blockNum': '0x4b6897', 'uniqueId': '0x1d9843322b02d0331d388d1715a17edf336752e42f8e58b7d0195f4b05cd29d6:log:8', 'hash': '0x1d9843322b02d0331d388d1715a17edf336752e42f8e58b7d0195f4b05cd29d6', 'from': '0x06b7ce5e8b711b00371c86bfc9ae1f692233ceae', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:35.000Z'}}, {'blockNum': '0x4b6897', 'uniqueId': '0x7a64bfd8a0b171ddbe12aeef5427170f40e5aa570e22e51c62969304d6dc5f28:log:9', 'hash': '0x7a64bfd8a0b171ddbe12aeef5427170f40e5aa570e22e51c62969304d6dc5f28', 'from': '0x474985b2cc35638282377659057feda3498b9ea1', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:35.000Z'}}, {'blockNum': '0x4b6897', 'uniqueId': '0x93c5b1c5909b70b3ac96227291c4a764b5a50ac3047c7e79d62584525dc84cf5:log:10', 'hash': '0x93c5b1c5909b70b3ac96227291c4a764b5a50ac3047c7e79d62584525dc84cf5', 'from': '0xcbf9c9c217874c9964811d9f3832b4a1baf53f2d', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:17:35.000Z'}}, {'blockNum': '0x4b68a0', 'uniqueId': '0xe967b64d8098a86140bec55dcb48e38de5a3e63f2dbb6bbd281fe7695968ab31:log:81', 'hash': '0xe967b64d8098a86140bec55dcb48e38de5a3e63f2dbb6bbd281fe7695968ab31', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4465.529105521237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf213aa5615992e814b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:20:10.000Z'}}, {'blockNum': '0x4b68a0', 'uniqueId': '0xe967b64d8098a86140bec55dcb48e38de5a3e63f2dbb6bbd281fe7695968ab31:log:83', 'hash': '0xe967b64d8098a86140bec55dcb48e38de5a3e63f2dbb6bbd281fe7695968ab31', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4465.529105521237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf213aa5615992e814b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:20:10.000Z'}}, {'blockNum': '0x4b68a0', 'uniqueId': '0x00879f3406d243734bc946837889597adbb0ada7be385ca972ec02b6ba202dc7:log:92', 'hash': '0x00879f3406d243734bc946837889597adbb0ada7be385ca972ec02b6ba202dc7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.7440577686094088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a536c992e55670e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:20:10.000Z'}}, {'blockNum': '0x4b68a0', 'uniqueId': '0x00879f3406d243734bc946837889597adbb0ada7be385ca972ec02b6ba202dc7:log:95', 'hash': '0x00879f3406d243734bc946837889597adbb0ada7be385ca972ec02b6ba202dc7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 0.7440577686094088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a536c992e55670e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:20:10.000Z'}}, {'blockNum': '0x4b68a6', 'uniqueId': '0x5367e71a09aae5c394a09032404b15ca20f9168931443f3978884ad87fc41953:log:57', 'hash': '0x5367e71a09aae5c394a09032404b15ca20f9168931443f3978884ad87fc41953', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.488115340242807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a6d9047ffb6865', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:22:07.000Z'}}, {'blockNum': '0x4b68a6', 'uniqueId': '0x5367e71a09aae5c394a09032404b15ca20f9168931443f3978884ad87fc41953:log:60', 'hash': '0x5367e71a09aae5c394a09032404b15ca20f9168931443f3978884ad87fc41953', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 1.488115340242807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a6d9047ffb6865', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:22:07.000Z'}}, {'blockNum': '0x4b68a8', 'uniqueId': '0x2f6d2a48d6272e8df1f24ed8aed3ead40e9865f0c445393cb706262d3e25910d:log:76', 'hash': '0x2f6d2a48d6272e8df1f24ed8aed3ead40e9865f0c445393cb706262d3e25910d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4463.164211234457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf1f2d88b42a24a4896', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:22:37.000Z'}}, {'blockNum': '0x4b68a8', 'uniqueId': '0x2f6d2a48d6272e8df1f24ed8aed3ead40e9865f0c445393cb706262d3e25910d:log:78', 'hash': '0x2f6d2a48d6272e8df1f24ed8aed3ead40e9865f0c445393cb706262d3e25910d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4463.164211234457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf1f2d88b42a24a4896', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:22:37.000Z'}}, {'blockNum': '0x4b68b0', 'uniqueId': '0x470b2f9be7b0d6c7ce1279e38eea82fcad58e0650652c8eccbd07c0cd5860aef:log:57', 'hash': '0x470b2f9be7b0d6c7ce1279e38eea82fcad58e0650652c8eccbd07c0cd5860aef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4460.803139270411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf1d21454d1882b569a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:25:17.000Z'}}, {'blockNum': '0x4b68b0', 'uniqueId': '0x470b2f9be7b0d6c7ce1279e38eea82fcad58e0650652c8eccbd07c0cd5860aef:log:59', 'hash': '0x470b2f9be7b0d6c7ce1279e38eea82fcad58e0650652c8eccbd07c0cd5860aef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4460.803139270411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf1d21454d1882b569a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:25:17.000Z'}}, {'blockNum': '0x4b68b0', 'uniqueId': '0x7c310661f34012a950bfe92e3e562cd60548825219069f7e882f426876363d4b:log:97', 'hash': '0x7c310661f34012a950bfe92e3e562cd60548825219069f7e882f426876363d4b', 'from': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'to': '0xdbc198992ede50a6679d42bcbdc7cb68ad06ed35', 'value': 3279.647120264448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1ca3f2f90bb390519', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:25:17.000Z'}}, {'blockNum': '0x4b68b7', 'uniqueId': '0x0e0023f59193add1d7731fdd4d21bc63796b1aa15e97b3ff7ac8470ac3a20977:log:23', 'hash': '0x0e0023f59193add1d7731fdd4d21bc63796b1aa15e97b3ff7ac8470ac3a20977', 'from': '0x0c7681eca92b2acadae83749e885019885d81485', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c16bf267ed01c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:21.000Z'}}, {'blockNum': '0x4b68b8', 'uniqueId': '0x549c6e354602d7820cc78ea829a2c892c04f558aac6af543cd8494c44565bc3a:log:37', 'hash': '0x549c6e354602d7820cc78ea829a2c892c04f558aac6af543cd8494c44565bc3a', 'from': '0x19c38c345e5d5aad595c1747580c114799b93e40', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:31.000Z'}}, {'blockNum': '0x4b68b8', 'uniqueId': '0x4ff40cadc63cba52d510b870202fbb41c1c3baecbfc0a10d26136049e897616f:log:38', 'hash': '0x4ff40cadc63cba52d510b870202fbb41c1c3baecbfc0a10d26136049e897616f', 'from': '0xf484a652c95611431e9abe3f1b0f3fed555f063c', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:31.000Z'}}, {'blockNum': '0x4b68b8', 'uniqueId': '0xd39c496baa392c80c9cb8914f5cffdfd0bf1222cce717e284d88478da64e93aa:log:39', 'hash': '0xd39c496baa392c80c9cb8914f5cffdfd0bf1222cce717e284d88478da64e93aa', 'from': '0x6d764f07d6daa62f340d151f93d5b5ecc87eb104', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:31.000Z'}}, {'blockNum': '0x4b68b9', 'uniqueId': '0x2fd5c686a18be784b05fe6c9c6f77fc10e4a4682bffa1b15f26955d14f3a3e84:log:11', 'hash': '0x2fd5c686a18be784b05fe6c9c6f77fc10e4a4682bffa1b15f26955d14f3a3e84', 'from': '0xe265b50d0c49de9a8183ba5c423ba9b9061191bf', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:27:47.000Z'}}, {'blockNum': '0x4b68bd', 'uniqueId': '0xa6afd74ef787729b847d0edde8e20484122adb83c20437f32f4a25dbc4e096c3:log:9', 'hash': '0xa6afd74ef787729b847d0edde8e20484122adb83c20437f32f4a25dbc4e096c3', 'from': '0x3e45521f66466db692f9c96f1e7a97005b0ec10a', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:23.000Z'}}, {'blockNum': '0x4b68bd', 'uniqueId': '0x969d169cbcc9baccbb956d265803342e11486ee33e9b10187b6b3dbbc36cc41e:log:10', 'hash': '0x969d169cbcc9baccbb956d265803342e11486ee33e9b10187b6b3dbbc36cc41e', 'from': '0xe0ec7759cd5d46a0a1085ec3457c3e37a75ac0e3', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:23.000Z'}}, {'blockNum': '0x4b68bd', 'uniqueId': '0x5eb4f1e5058e9300d94a5a4642440bce8ef2c24edde1ff1d3a7dfabe52c0aa2b:log:13', 'hash': '0x5eb4f1e5058e9300d94a5a4642440bce8ef2c24edde1ff1d3a7dfabe52c0aa2b', 'from': '0x60265fdcbe88fa351f39dda656854333c1804f74', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:23.000Z'}}, {'blockNum': '0x4b68bd', 'uniqueId': '0x4c27289ad81a048516eadefcd314cb1991d53cccd2f807ea103f9af081b1a420:log:20', 'hash': '0x4c27289ad81a048516eadefcd314cb1991d53cccd2f807ea103f9af081b1a420', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x3b762e0062b977fb41eb3d462c0dabd29797a794', 'value': 399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15a13cc201e4dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:23.000Z'}}, {'blockNum': '0x4b68be', 'uniqueId': '0xb3403352acdd833d9524af2fa74cb5fc63667f6032a0abe143d5d89452b77ae5:log:41', 'hash': '0xb3403352acdd833d9524af2fa74cb5fc63667f6032a0abe143d5d89452b77ae5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2080.900862063924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70ce4cf4f63c4e7bcd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:27.000Z'}}, {'blockNum': '0x4b68be', 'uniqueId': '0xb3403352acdd833d9524af2fa74cb5fc63667f6032a0abe143d5d89452b77ae5:log:43', 'hash': '0xb3403352acdd833d9524af2fa74cb5fc63667f6032a0abe143d5d89452b77ae5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2080.900862063924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70ce4cf4f63c4e7bcd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:27.000Z'}}, {'blockNum': '0x4b68bf', 'uniqueId': '0xe818d1ccb88671680eb13852083c2bac17f1e4e0ce2293f927a6f26f5eb001ca:log:5', 'hash': '0xe818d1ccb88671680eb13852083c2bac17f1e4e0ce2293f927a6f26f5eb001ca', 'from': '0xc87a7117d470a7f470ec7154f2943261cfa5c8c8', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:39.000Z'}}, {'blockNum': '0x4b68bf', 'uniqueId': '0x9b1b772c0648536d146062b804dd643477fa6ef53d27638185c31677c58da966:log:6', 'hash': '0x9b1b772c0648536d146062b804dd643477fa6ef53d27638185c31677c58da966', 'from': '0xe688cb18d16c3fc477b05fbd425b2c2933c90558', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:39.000Z'}}, {'blockNum': '0x4b68c0', 'uniqueId': '0xf6e0e50104191c46b55271677f1a08f6ae44bed19da86c59c05338e6f89aa39e:log:8', 'hash': '0xf6e0e50104191c46b55271677f1a08f6ae44bed19da86c59c05338e6f89aa39e', 'from': '0xcdd88911a61a49bfce1427ec78af6bc86314b242', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:28:53.000Z'}}, {'blockNum': '0x4b68c2', 'uniqueId': '0xd44fa3432d47ae5fb16449eee99893661c6d753516becbf6403100b9c3421636:log:27', 'hash': '0xd44fa3432d47ae5fb16449eee99893661c6d753516becbf6403100b9c3421636', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:29:28.000Z'}}, {'blockNum': '0x4b68c4', 'uniqueId': '0x8430312ab4d667e6d48fa3fba73743ad5790b27f4d1423bd36f65a774b811714:log:65', 'hash': '0x8430312ab4d667e6d48fa3fba73743ad5790b27f4d1423bd36f65a774b811714', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 355.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13458db67af35e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:29:46.000Z'}}, {'blockNum': '0x4b68ca', 'uniqueId': '0xcafd55c3fdf2279a5e441aa8d0508025fde9f4d2c6b1644100e8940e2e5253aa:log:3', 'hash': '0xcafd55c3fdf2279a5e441aa8d0508025fde9f4d2c6b1644100e8940e2e5253aa', 'from': '0xcb0280f1b08f643bc25abcdab16a7918c8b41423', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 174.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0970d1165052470000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:31:12.000Z'}}, {'blockNum': '0x4b68ce', 'uniqueId': '0x073c48c7c311464bf11ef4e2511d0a830f337a438bf30023443eeca513406ac8:log:12', 'hash': '0x073c48c7c311464bf11ef4e2511d0a830f337a438bf30023443eeca513406ac8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2483.344634271313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x869f54738bc5fa4ca2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:32:01.000Z'}}, {'blockNum': '0x4b68ce', 'uniqueId': '0x073c48c7c311464bf11ef4e2511d0a830f337a438bf30023443eeca513406ac8:log:14', 'hash': '0x073c48c7c311464bf11ef4e2511d0a830f337a438bf30023443eeca513406ac8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2483.344634271313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x869f54738bc5fa4ca2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:32:01.000Z'}}, {'blockNum': '0x4b68cf', 'uniqueId': '0xf9c574a866d96c1f79b03550e8f55be7aa63f07f6707ab68ccad802afa2a59cf:log:91', 'hash': '0xf9c574a866d96c1f79b03550e8f55be7aa63f07f6707ab68ccad802afa2a59cf', 'from': '0xdbc198992ede50a6679d42bcbdc7cb68ad06ed35', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3279.64712026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1ca3f2f8fb21e2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:32:22.000Z'}}, {'blockNum': '0x4b68d1', 'uniqueId': '0xa232b7f5fac9ff333ba1a963e4ac2743c82d203d260a7cd504e2ff2cb91a0215:log:68', 'hash': '0xa232b7f5fac9ff333ba1a963e4ac2743c82d203d260a7cd504e2ff2cb91a0215', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86a86cc73436500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:33:11.000Z'}}, {'blockNum': '0x4b68d2', 'uniqueId': '0x339b728c3807a4c00a3b5ae01f50d1256d7bd280d7ee8eb992754c3cf666943b:log:52', 'hash': '0x339b728c3807a4c00a3b5ae01f50d1256d7bd280d7ee8eb992754c3cf666943b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x06da1a08f030cf89cbf869cb0e2c9078281afe19', 'value': 58554.54959057854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c663f9d4954d4be6e8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:33:19.000Z'}}, {'blockNum': '0x4b68d2', 'uniqueId': '0x2246a1eb967a7da7097205163ed523ba5f5b0b28abb283498760b20d74bd05b1:log:62', 'hash': '0x2246a1eb967a7da7097205163ed523ba5f5b0b28abb283498760b20d74bd05b1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 10321.910506374765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022f8d48a5b8e02b9b6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:33:19.000Z'}}, {'blockNum': '0x4b68d2', 'uniqueId': '0x2246a1eb967a7da7097205163ed523ba5f5b0b28abb283498760b20d74bd05b1:log:64', 'hash': '0x2246a1eb967a7da7097205163ed523ba5f5b0b28abb283498760b20d74bd05b1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 10321.910506374765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022f8d48a5b8e02b9b6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:33:19.000Z'}}, {'blockNum': '0x4b68d8', 'uniqueId': '0xc9056c66440d7dfa375834828c7db57960a9e1c9818e379f9975ae4b19cb939d:log:36', 'hash': '0xc9056c66440d7dfa375834828c7db57960a9e1c9818e379f9975ae4b19cb939d', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xace649f083e9852c51eb4056fd3382a610e25e65', 'value': 6321.910506374764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156b621eea165ab9b6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:15.000Z'}}, {'blockNum': '0x4b68d8', 'uniqueId': '0x4a464a400dc0124e058d6eb5ed50690cd753741d2a0a63231a361cf2e92fd388:log:66', 'hash': '0x4a464a400dc0124e058d6eb5ed50690cd753741d2a0a63231a361cf2e92fd388', 'from': '0x4b0669f04774cd341b1fd2c01cee67ddb5151718', 'to': '0xda80cd974c4de464e37d0ff355eec05835817502', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:15.000Z'}}, {'blockNum': '0x4b68d8', 'uniqueId': '0x637ef2dd2fe110b628254ef3ab69426ddcc215fb4faf6a26a32e7c4a6ca067a3:log:85', 'hash': '0x637ef2dd2fe110b628254ef3ab69426ddcc215fb4faf6a26a32e7c4a6ca067a3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2946.8003716344515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fbf11fd2f1c8ee908', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:15.000Z'}}, {'blockNum': '0x4b68d8', 'uniqueId': '0x637ef2dd2fe110b628254ef3ab69426ddcc215fb4faf6a26a32e7c4a6ca067a3:log:87', 'hash': '0x637ef2dd2fe110b628254ef3ab69426ddcc215fb4faf6a26a32e7c4a6ca067a3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2946.8003716344515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fbf11fd2f1c8ee908', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:15.000Z'}}, {'blockNum': '0x4b68d9', 'uniqueId': '0x7d6f60fd5d5c08053ac38890773c96ef887f21a78f5c6a859aca9bc49c9690ae:log:36', 'hash': '0x7d6f60fd5d5c08053ac38890773c96ef887f21a78f5c6a859aca9bc49c9690ae', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'value': 3999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8c9460063d31c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:35:46.000Z'}}, {'blockNum': '0x4b68dc', 'uniqueId': '0x34263aa740c6b2a9bf7c1e9866d758c317a702df6b96d5e945e81bc28a1f9dd9:log:29', 'hash': '0x34263aa740c6b2a9bf7c1e9866d758c317a702df6b96d5e945e81bc28a1f9dd9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:36:46.000Z'}}, {'blockNum': '0x4b68dc', 'uniqueId': '0x7909fc90e5124e3d367b8c97a8700bf23109fafe23a8833e3f14321ff9c1b176:log:36', 'hash': '0x7909fc90e5124e3d367b8c97a8700bf23109fafe23a8833e3f14321ff9c1b176', 'from': '0x3b762e0062b977fb41eb3d462c0dabd29797a794', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15a13cc201e4dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:36:46.000Z'}}, {'blockNum': '0x4b68df', 'uniqueId': '0xb9696420cb95a141f14ee1f8834e2c8dc335e5b92c0098cb6478e314acd5cfbd:log:16', 'hash': '0xb9696420cb95a141f14ee1f8834e2c8dc335e5b92c0098cb6478e314acd5cfbd', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 659.33729138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23be249d31011f8800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:37:37.000Z'}}, {'blockNum': '0x4b68e2', 'uniqueId': '0x303f8dccb4547e7e640b5ee6d75ea80ff26a326940d6743fa5ea62b29795645d:log:4', 'hash': '0x303f8dccb4547e7e640b5ee6d75ea80ff26a326940d6743fa5ea62b29795645d', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 355.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13458db67af35e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:38:57.000Z'}}, {'blockNum': '0x4b68e4', 'uniqueId': '0x4359367299afff4a17387072e47729838898470972641a10aac8e6452d683af9:log:55', 'hash': '0x4359367299afff4a17387072e47729838898470972641a10aac8e6452d683af9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 36.828495543148165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ff1919921d673390', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:39:44.000Z'}}, {'blockNum': '0x4b68e4', 'uniqueId': '0x4359367299afff4a17387072e47729838898470972641a10aac8e6452d683af9:log:58', 'hash': '0x4359367299afff4a17387072e47729838898470972641a10aac8e6452d683af9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 36.828495543148165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ff1919921d673390', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:39:44.000Z'}}, {'blockNum': '0x4b68e6', 'uniqueId': '0x80486e6e118d9e1f8034f43f871b6100078fd34353ba164c9d1e236e7635eec6:log:12', 'hash': '0x80486e6e118d9e1f8034f43f871b6100078fd34353ba164c9d1e236e7635eec6', 'from': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8c9460063d31c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:40:20.000Z'}}, {'blockNum': '0x4b68e7', 'uniqueId': '0x7ced6a4ea990bfa0fdd51128d50c6c5e806035f8825555b938c21e55c3cea9c9:log:0', 'hash': '0x7ced6a4ea990bfa0fdd51128d50c6c5e806035f8825555b938c21e55c3cea9c9', 'from': '0x48daa2551c98cfbf725c6124e621020f199186ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ac9ae05a71ebc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:40:28.000Z'}}, {'blockNum': '0x4b68e7', 'uniqueId': '0xda052e4e9a7bcea51846a6d50693e642754eb22c8ab9d4c1e5e16ae1eb8b85ae:log:1', 'hash': '0xda052e4e9a7bcea51846a6d50693e642754eb22c8ab9d4c1e5e16ae1eb8b85ae', 'from': '0x49e1e5e94c5aeb765409ae92128904b1b96a40bf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1697.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bff05b1bfed270000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:40:28.000Z'}}, {'blockNum': '0x4b68e8', 'uniqueId': '0xf9f7bfa28772372fe9f2e9dbe1c132bb2b1d3f532fea9f499b4d0fb459db16ca:log:7', 'hash': '0xf9f7bfa28772372fe9f2e9dbe1c132bb2b1d3f532fea9f499b4d0fb459db16ca', 'from': '0xdfc52bf15cf9100627d37da0f709f4fb57f0e618', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 255.07405037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd3dd115f0bf21400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:40:33.000Z'}}, {'blockNum': '0x4b68ef', 'uniqueId': '0x35ccbb3d40fc107e6c9add37258d86b18a5038325512a8525ea19e0218aa8de4:log:11', 'hash': '0x35ccbb3d40fc107e6c9add37258d86b18a5038325512a8525ea19e0218aa8de4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3dab71c6b880583f2aafdfcce64ccd27da0df3c3', 'value': 79.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044a6d49a5342b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:41:29.000Z'}}, {'blockNum': '0x4b68f0', 'uniqueId': '0xc740062d77b18b5b8943c37eaa77b25cc57f834fc3b746e3d5fb80feb4b5b994:log:65', 'hash': '0xc740062d77b18b5b8943c37eaa77b25cc57f834fc3b746e3d5fb80feb4b5b994', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86a86cc73436500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:41:47.000Z'}}, {'blockNum': '0x4b68f9', 'uniqueId': '0xfdd2d8b8225ee02ed12673e7d8657e0db53009b150afb47e0b7726f8f0bfeee4:log:25', 'hash': '0xfdd2d8b8225ee02ed12673e7d8657e0db53009b150afb47e0b7726f8f0bfeee4', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.46066643739929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010e122d048d8d1a56', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:43:37.000Z'}}, {'blockNum': '0x4b68f9', 'uniqueId': '0xfdd2d8b8225ee02ed12673e7d8657e0db53009b150afb47e0b7726f8f0bfeee4:log:27', 'hash': '0xfdd2d8b8225ee02ed12673e7d8657e0db53009b150afb47e0b7726f8f0bfeee4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 19.46066643739929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010e122d048d8d1a56', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:43:37.000Z'}}, {'blockNum': '0x4b68fe', 'uniqueId': '0x6b740aee8e8d998f22a23c141e393c36d202a66910bb4a58d6ea67b66ba7fdb6:log:43', 'hash': '0x6b740aee8e8d998f22a23c141e393c36d202a66910bb4a58d6ea67b66ba7fdb6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4418.26355103808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef83b95ab4a0b3b950', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:44:35.000Z'}}, {'blockNum': '0x4b68fe', 'uniqueId': '0x6b740aee8e8d998f22a23c141e393c36d202a66910bb4a58d6ea67b66ba7fdb6:log:45', 'hash': '0x6b740aee8e8d998f22a23c141e393c36d202a66910bb4a58d6ea67b66ba7fdb6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4418.26355103808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef83b95ab4a0b3b950', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:44:35.000Z'}}, {'blockNum': '0x4b68ff', 'uniqueId': '0x131bf15505e2e4cccf2a430a301e3e4862009a8616f6f70729cec1874f7355da:log:17', 'hash': '0x131bf15505e2e4cccf2a430a301e3e4862009a8616f6f70729cec1874f7355da', 'from': '0xace649f083e9852c51eb4056fd3382a610e25e65', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6321.91050637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156b621eea049b89400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:45:08.000Z'}}, {'blockNum': '0x4b68ff', 'uniqueId': '0x377b272734fc323a2a795e49144ef9dc44809d4521396baec2491fad78b02022:log:19', 'hash': '0x377b272734fc323a2a795e49144ef9dc44809d4521396baec2491fad78b02022', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:45:08.000Z'}}, {'blockNum': '0x4b6905', 'uniqueId': '0xcd79413e4e5259095bc9b326a34a227aa38767ef0eb9041891481297039b0081:log:3', 'hash': '0xcd79413e4e5259095bc9b326a34a227aa38767ef0eb9041891481297039b0081', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x42d441fde48fd56e98b3f06e16c7ce30203c0e9f', 'value': 542.26033821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d655fb895663ad400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:46:16.000Z'}}, {'blockNum': '0x4b6909', 'uniqueId': '0x34ef4da535dbd116afbeb75c3b4aaa33c84f13e00d7afcae647c398c53920786:log:48', 'hash': '0x34ef4da535dbd116afbeb75c3b4aaa33c84f13e00d7afcae647c398c53920786', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2208.264908020697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77b5d4f1f4b64d42c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:47:26.000Z'}}, {'blockNum': '0x4b6909', 'uniqueId': '0x34ef4da535dbd116afbeb75c3b4aaa33c84f13e00d7afcae647c398c53920786:log:50', 'hash': '0x34ef4da535dbd116afbeb75c3b4aaa33c84f13e00d7afcae647c398c53920786', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2208.264908020697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77b5d4f1f4b64d42c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:47:26.000Z'}}, {'blockNum': '0x4b6912', 'uniqueId': '0x5a28ef49433ff3afb4779497acb21529661ad757135c8f09cbf893988e880d98:log:7', 'hash': '0x5a28ef49433ff3afb4779497acb21529661ad757135c8f09cbf893988e880d98', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9574aacb471425c204a21c7a0679687d1af3b486', 'value': 27.30259524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x017ae64db726789000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:49:53.000Z'}}, {'blockNum': '0x4b6913', 'uniqueId': '0xa63adaf1e9b6d3f14f0e14202b3146e94ef7ee122c703e43683788cf933252b7:log:0', 'hash': '0xa63adaf1e9b6d3f14f0e14202b3146e94ef7ee122c703e43683788cf933252b7', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:50:09.000Z'}}, {'blockNum': '0x4b6915', 'uniqueId': '0xe34f320a13d64a7271fe77f324a47099ae5d590879b9ae8795b4056eac80bc6d:log:51', 'hash': '0xe34f320a13d64a7271fe77f324a47099ae5d590879b9ae8795b4056eac80bc6d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2943.454953845899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9f90a4ad6e1c9ee4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:50:48.000Z'}}, {'blockNum': '0x4b6915', 'uniqueId': '0xe34f320a13d64a7271fe77f324a47099ae5d590879b9ae8795b4056eac80bc6d:log:53', 'hash': '0xe34f320a13d64a7271fe77f324a47099ae5d590879b9ae8795b4056eac80bc6d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2943.454953845899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9f90a4ad6e1c9ee4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:50:48.000Z'}}, {'blockNum': '0x4b6916', 'uniqueId': '0xebe7ff690903db7a5b9fd029006c97c705c650cdd194fc3f44c9a8317d8a1b47:log:18', 'hash': '0xebe7ff690903db7a5b9fd029006c97c705c650cdd194fc3f44c9a8317d8a1b47', 'from': '0x8ae135005dca5757dec61cb67087f21172097e4f', 'to': '0x6dd8db5830a15e09b9680582b0c6b3608f65f972', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:51:02.000Z'}}, {'blockNum': '0x4b6925', 'uniqueId': '0xa2fd3cb90a38e81105cb1c3b60775cbf33db49b330e3277cb39a838e9d612a49:log:70', 'hash': '0xa2fd3cb90a38e81105cb1c3b60775cbf33db49b330e3277cb39a838e9d612a49', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 352.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131beb925ffd320000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:54:39.000Z'}}, {'blockNum': '0x4b692a', 'uniqueId': '0xd60383b9dfb76edb0cea912ff64694274868c5374defc47738f3cfb3eb8ded9b:log:25', 'hash': '0xd60383b9dfb76edb0cea912ff64694274868c5374defc47738f3cfb3eb8ded9b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2481.1142861908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x868060a9c89d84f016', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:55:53.000Z'}}, {'blockNum': '0x4b692a', 'uniqueId': '0xd60383b9dfb76edb0cea912ff64694274868c5374defc47738f3cfb3eb8ded9b:log:27', 'hash': '0xd60383b9dfb76edb0cea912ff64694274868c5374defc47738f3cfb3eb8ded9b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2481.1142861908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x868060a9c89d84f016', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:55:53.000Z'}}, {'blockNum': '0x4b692b', 'uniqueId': '0xa33b0d0d5f85e0b7e02b72cd23896a1c78950060b7a40ff50863ebd424205c07:log:12', 'hash': '0xa33b0d0d5f85e0b7e02b72cd23896a1c78950060b7a40ff50863ebd424205c07', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4303.241901697654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe9477a5e0a9114edb4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:55:55.000Z'}}, {'blockNum': '0x4b692b', 'uniqueId': '0xa33b0d0d5f85e0b7e02b72cd23896a1c78950060b7a40ff50863ebd424205c07:log:14', 'hash': '0xa33b0d0d5f85e0b7e02b72cd23896a1c78950060b7a40ff50863ebd424205c07', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'value': 4303.241901697654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe9477a5e0a9114edb4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:55:55.000Z'}}, {'blockNum': '0x4b692d', 'uniqueId': '0x1a41b61d5e22a4e7ff31367fff0b694fa8867ad194310346b5ac50b60fc4ecce:log:20', 'hash': '0x1a41b61d5e22a4e7ff31367fff0b694fa8867ad194310346b5ac50b60fc4ecce', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x867ecaa31940240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:56:07.000Z'}}, {'blockNum': '0x4b6932', 'uniqueId': '0x30d2f872880de9e6f2113ef029124d171022e8d631fc7c009380158d45a4477f:log:54', 'hash': '0x30d2f872880de9e6f2113ef029124d171022e8d631fc7c009380158d45a4477f', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 110.33977716620896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fb45a2ba3ba48b26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:57:14.000Z'}}, {'blockNum': '0x4b6932', 'uniqueId': '0x30d2f872880de9e6f2113ef029124d171022e8d631fc7c009380158d45a4477f:log:56', 'hash': '0x30d2f872880de9e6f2113ef029124d171022e8d631fc7c009380158d45a4477f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 110.33977716620896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fb45a2ba3ba48b26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:57:14.000Z'}}, {'blockNum': '0x4b6932', 'uniqueId': '0x69fbb8159f1917fa5345d35fac24a5e7fe2c70d449f3d30d3e914aa54fbc76ac:log:87', 'hash': '0x69fbb8159f1917fa5345d35fac24a5e7fe2c70d449f3d30d3e914aa54fbc76ac', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 742.9343225975514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284648ee2af084026e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:57:14.000Z'}}, {'blockNum': '0x4b6932', 'uniqueId': '0x69fbb8159f1917fa5345d35fac24a5e7fe2c70d449f3d30d3e914aa54fbc76ac:log:89', 'hash': '0x69fbb8159f1917fa5345d35fac24a5e7fe2c70d449f3d30d3e914aa54fbc76ac', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 742.9343225975514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284648ee2af084026e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T18:57:14.000Z'}}, {'blockNum': '0x4b693b', 'uniqueId': '0x4e159df2b723f3d49d81c6947934f2c49b2532ed378ee96260dad5b992d4d42d:log:48', 'hash': '0x4e159df2b723f3d49d81c6947934f2c49b2532ed378ee96260dad5b992d4d42d', 'from': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'to': '0xdbc198992ede50a6679d42bcbdc7cb68ad06ed35', 'value': 4303.241901697654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe9477a5e0a9114edb4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:00:05.000Z'}}, {'blockNum': '0x4b6940', 'uniqueId': '0x6d60f79f6d97ce09f28c1f3b535bf9eaa02bbd09ae4a179e9b1160f38d6b36ad:log:3', 'hash': '0x6d60f79f6d97ce09f28c1f3b535bf9eaa02bbd09ae4a179e9b1160f38d6b36ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:16.000Z'}}, {'blockNum': '0x4b6940', 'uniqueId': '0xb9adeb2932a9f4148c05a2eb775e33f941f501beb32d299b856dc87bef8c3db3:log:47', 'hash': '0xb9adeb2932a9f4148c05a2eb775e33f941f501beb32d299b856dc87bef8c3db3', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 352.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131beb925ffd320000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:16.000Z'}}, {'blockNum': '0x4b6944', 'uniqueId': '0xa7f45dcc0ec744647fd52689a40bdf95c67d263c184ede584f3e82ab618baf34:log:1', 'hash': '0xa7f45dcc0ec744647fd52689a40bdf95c67d263c184ede584f3e82ab618baf34', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x2412f8511ea0cc48a22b6e1926c51916e3fccae2', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15af1d78b58c400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:39.000Z'}}, {'blockNum': '0x4b6944', 'uniqueId': '0x74ddf301541478b042f76aaa66d86d30c5288f041c07eab9685bd12118fad336:log:16', 'hash': '0x74ddf301541478b042f76aaa66d86d30c5288f041c07eab9685bd12118fad336', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 17.64523253310191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf4e075801ab4a170', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:39.000Z'}}, {'blockNum': '0x4b6944', 'uniqueId': '0x74ddf301541478b042f76aaa66d86d30c5288f041c07eab9685bd12118fad336:log:19', 'hash': '0x74ddf301541478b042f76aaa66d86d30c5288f041c07eab9685bd12118fad336', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 17.64523253310191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf4e075801ab4a170', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:39.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x80f195d4dd7ad01b175c6c209f41cd1c95958460326135317c5bfaf833f5ae5e:log:3', 'hash': '0x80f195d4dd7ad01b175c6c209f41cd1c95958460326135317c5bfaf833f5ae5e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2872.95749432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9bbe4b6380bbede000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x772f94e6bc82d79bace11aea2033d7f3ea051c343be4526065db1497dd64ec1b:log:4', 'hash': '0x772f94e6bc82d79bace11aea2033d7f3ea051c343be4526065db1497dd64ec1b', 'from': '0x2412f8511ea0cc48a22b6e1926c51916e3fccae2', 'to': '0x3979b95eadda2401f6bd10f190c16f6a31e72f76', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15af1d78b58c400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x89cff609952892eac8aa50ba2ba0e9d6971d2042fee85fc5ff536b4917aac34f:log:37', 'hash': '0x89cff609952892eac8aa50ba2ba0e9d6971d2042fee85fc5ff536b4917aac34f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7348.973368602197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018e637e3636cbc68b9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x89cff609952892eac8aa50ba2ba0e9d6971d2042fee85fc5ff536b4917aac34f:log:39', 'hash': '0x89cff609952892eac8aa50ba2ba0e9d6971d2042fee85fc5ff536b4917aac34f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 7348.973368602197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018e637e3636cbc68b9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x34071cdf19760c714273bfa7705ff94e317e37f633d257e86d3bc14525948bea:log:40', 'hash': '0x34071cdf19760c714273bfa7705ff94e317e37f633d257e86d3bc14525948bea', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfb5607de3ddb810dbcad532b0935a08cae385728', 'value': 2552.90117262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a649eeaa5d5487800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0xf8e2420fc69d99e3b2739e16bdd71978ae34a5e3091a07d115d3b9d4bb251085:log:47', 'hash': '0xf8e2420fc69d99e3b2739e16bdd71978ae34a5e3091a07d115d3b9d4bb251085', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 825.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cbb41b12afd930000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x56685749c1707290d05e409427b5a2343cf69f49dfe8aeecd8440d0232d929fb:log:50', 'hash': '0x56685749c1707290d05e409427b5a2343cf69f49dfe8aeecd8440d0232d929fb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 16.94957236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeb38fa423c945000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b6945', 'uniqueId': '0x05a92b1a1f80c390a76058748e8790d79f09810c428627c667afef5818a18375:log:52', 'hash': '0x05a92b1a1f80c390a76058748e8790d79f09810c428627c667afef5818a18375', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x04f8c9cd5f3b8c9020d2fce2e60bced4829287b1', 'value': 199.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0acbc2eddbab0b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:01:49.000Z'}}, {'blockNum': '0x4b694a', 'uniqueId': '0x93b22a870bee5100768c96ef555c82865db74397c90c84c4d34d84f92bdf5928:log:29', 'hash': '0x93b22a870bee5100768c96ef555c82865db74397c90c84c4d34d84f92bdf5928', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x1f309c972f6a9d190486338745f5b7c62778a856', 'value': 2.58705782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23e71361667f1800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:03:01.000Z'}}, {'blockNum': '0x4b694a', 'uniqueId': '0x3a5dacf3490ae4dccd25491845043b63177c014270ad2ffc111bd04106302541:log:31', 'hash': '0x3a5dacf3490ae4dccd25491845043b63177c014270ad2ffc111bd04106302541', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 870.016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f29e5be752a400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:03:01.000Z'}}, {'blockNum': '0x4b6951', 'uniqueId': '0x81eb40c98becd7d62b0ccf444469dec442075ffe18265a88637920a2186e5262:log:22', 'hash': '0x81eb40c98becd7d62b0ccf444469dec442075ffe18265a88637920a2186e5262', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x867ecaa31940240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:04.000Z'}}, {'blockNum': '0x4b6951', 'uniqueId': '0x3e71394a15b656f727c707f1d96867b0d107dafb4a90063bcb8c8154b7bb9253:log:43', 'hash': '0x3e71394a15b656f727c707f1d96867b0d107dafb4a90063bcb8c8154b7bb9253', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 56.99861018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031703bdf795dd2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:04.000Z'}}, {'blockNum': '0x4b6951', 'uniqueId': '0xe6d98be2aac6fc9bb4a0354063c7504029317c5ca014c9348c044b685ff782bc:log:44', 'hash': '0xe6d98be2aac6fc9bb4a0354063c7504029317c5ca014c9348c044b685ff782bc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 24.35042984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0151ee1aece545a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:04.000Z'}}, {'blockNum': '0x4b6951', 'uniqueId': '0xea2161bf3c9061571615852b8effdff3446b321cb940f4997043b51dda82b37f:log:45', 'hash': '0xea2161bf3c9061571615852b8effdff3446b321cb940f4997043b51dda82b37f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5faeef35dd957ff60bf97399072c9942a7ed2a34', 'value': 2385.36306336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x814f8ffbee46668000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:04.000Z'}}, {'blockNum': '0x4b6953', 'uniqueId': '0x8129c1dce826a5d58716745166b9105bd966f4fe6a242390c189be01bd901575:log:23', 'hash': '0x8129c1dce826a5d58716745166b9105bd966f4fe6a242390c189be01bd901575', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4406.315824730039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeeddea80ee205e46a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:17.000Z'}}, {'blockNum': '0x4b6953', 'uniqueId': '0x8129c1dce826a5d58716745166b9105bd966f4fe6a242390c189be01bd901575:log:25', 'hash': '0x8129c1dce826a5d58716745166b9105bd966f4fe6a242390c189be01bd901575', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4406.315824730039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeeddea80ee205e46a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:04:17.000Z'}}, {'blockNum': '0x4b6955', 'uniqueId': '0x8a15ee10d66821dbb24f24ab663cd24ba3b90ea711520d878507c474b00c22a7:log:51', 'hash': '0x8a15ee10d66821dbb24f24ab663cd24ba3b90ea711520d878507c474b00c22a7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2495.8920593281155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x874d75dc27f2818d8d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:18.000Z'}}, {'blockNum': '0x4b6955', 'uniqueId': '0x8a15ee10d66821dbb24f24ab663cd24ba3b90ea711520d878507c474b00c22a7:log:53', 'hash': '0x8a15ee10d66821dbb24f24ab663cd24ba3b90ea711520d878507c474b00c22a7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7ac34681f6aaeb691e150c43ee494177c0e2c183', 'value': 2495.8920593281155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x874d75dc27f2818d8d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:18.000Z'}}, {'blockNum': '0x4b6956', 'uniqueId': '0x0411038898d9e8afd98a6f102917c5a70a512c3b60b0fbf7e9a13a537e9dd80b:log:47', 'hash': '0x0411038898d9e8afd98a6f102917c5a70a512c3b60b0fbf7e9a13a537e9dd80b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'value': 835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d43f3ebfafb2c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:59.000Z'}}, {'blockNum': '0x4b6956', 'uniqueId': '0x0fb19ca258a3372362d8d27ec60ff27d2c08802a972d4db227bf798957588bf6:log:79', 'hash': '0x0fb19ca258a3372362d8d27ec60ff27d2c08802a972d4db227bf798957588bf6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 587.1615273453043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd480ca3498ac2920', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:59.000Z'}}, {'blockNum': '0x4b6956', 'uniqueId': '0x0fb19ca258a3372362d8d27ec60ff27d2c08802a972d4db227bf798957588bf6:log:81', 'hash': '0x0fb19ca258a3372362d8d27ec60ff27d2c08802a972d4db227bf798957588bf6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1bd39650266b94fde58a72c0e2bb17d85708d3af', 'value': 587.1615273453043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd480ca3498ac2920', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:05:59.000Z'}}, {'blockNum': '0x4b6957', 'uniqueId': '0xb958f7b8a5bf170533e617cb45926315d32c0a82c1c108832525ac570c31caf2:log:62', 'hash': '0xb958f7b8a5bf170533e617cb45926315d32c0a82c1c108832525ac570c31caf2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7336.076608992848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018db083b7ade6f93334', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:21.000Z'}}, {'blockNum': '0x4b6957', 'uniqueId': '0xb958f7b8a5bf170533e617cb45926315d32c0a82c1c108832525ac570c31caf2:log:64', 'hash': '0xb958f7b8a5bf170533e617cb45926315d32c0a82c1c108832525ac570c31caf2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xbb131c1704046232c30067dee33c8ddf39112f50', 'value': 7336.076608992848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018db083b7ade6f93334', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:21.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0xff23ee8658508e3b42b67040e0d43be428051c9b121a7bdd323d47dc3f541a64:log:37', 'hash': '0xff23ee8658508e3b42b67040e0d43be428051c9b121a7bdd323d47dc3f541a64', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6fffd968df5ea5557e0c180e07361eebda6dff75', 'value': 464.58072075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x192f5a481166b2cc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0x0ba82f2c8689c068271aa2054af4c6ab9b08eae8c50707badf6fe3fe4eb95a53:log:38', 'hash': '0x0ba82f2c8689c068271aa2054af4c6ab9b08eae8c50707badf6fe3fe4eb95a53', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 275.28431477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eec5659c3b6ab3400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0x1ca04a8258b14fb9efe6005478aa212accf2729a2e4518c90192c03254267e5b:log:40', 'hash': '0x1ca04a8258b14fb9efe6005478aa212accf2729a2e4518c90192c03254267e5b', 'from': '0xdbc198992ede50a6679d42bcbdc7cb68ad06ed35', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4303.2419017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe9477a5e0b1cec2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0xb793c5fbbad34b0ebcb298db25643b18c817a94e7518ce4832750e2f2a8338dd:log:43', 'hash': '0xb793c5fbbad34b0ebcb298db25643b18c817a94e7518ce4832750e2f2a8338dd', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6958', 'uniqueId': '0x09c0b063ff0dd869bcc3b7ff41cd6f2e564bfe3f7cf3460f73c97a1c691c7727:log:50', 'hash': '0x09c0b063ff0dd869bcc3b7ff41cd6f2e564bfe3f7cf3460f73c97a1c691c7727', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xab0c0b8dbbe6bdc0d0a57becbf913d4d2ddf8932', 'value': 8876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e12b3e9cefbf300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:06:31.000Z'}}, {'blockNum': '0x4b6959', 'uniqueId': '0xe2ee8781fb06aeb4d90f8046f488020801b5b1a50753c7bc9b59bad70b76d87c:log:24', 'hash': '0xe2ee8781fb06aeb4d90f8046f488020801b5b1a50753c7bc9b59bad70b76d87c', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:07:03.000Z'}}, {'blockNum': '0x4b6960', 'uniqueId': '0xdef022ac813d25b5fdf9e942f05601284e95c823eea937a7db30bf368aca43f6:log:41', 'hash': '0xdef022ac813d25b5fdf9e942f05601284e95c823eea937a7db30bf368aca43f6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4398.589120931319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee72afbcc358f27cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:08:20.000Z'}}, {'blockNum': '0x4b6960', 'uniqueId': '0xdef022ac813d25b5fdf9e942f05601284e95c823eea937a7db30bf368aca43f6:log:44', 'hash': '0xdef022ac813d25b5fdf9e942f05601284e95c823eea937a7db30bf368aca43f6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 4398.589120931319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee72afbcc358f27cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:08:20.000Z'}}, {'blockNum': '0x4b6961', 'uniqueId': '0x553bb4239f0106e92aa246110ceb5d15f82a051ec8a61eb6c5fab1123ad4d516:log:32', 'hash': '0x553bb4239f0106e92aa246110ceb5d15f82a051ec8a61eb6c5fab1123ad4d516', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5128.793742420645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0116084faf37bccfbe47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:08:35.000Z'}}, {'blockNum': '0x4b6961', 'uniqueId': '0x553bb4239f0106e92aa246110ceb5d15f82a051ec8a61eb6c5fab1123ad4d516:log:34', 'hash': '0x553bb4239f0106e92aa246110ceb5d15f82a051ec8a61eb6c5fab1123ad4d516', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 5128.793742420645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0116084faf37bccfbe47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:08:35.000Z'}}, {'blockNum': '0x4b6963', 'uniqueId': '0x64d2cc3b0262a86c7c8a64492eaa34f06819d54b6050acdc2cf5378f46151002:log:10', 'hash': '0x64d2cc3b0262a86c7c8a64492eaa34f06819d54b6050acdc2cf5378f46151002', 'from': '0x1bd39650266b94fde58a72c0e2bb17d85708d3af', 'to': '0x49da3e4a9fc77d6ec54bcac841992f280e4f8136', 'value': 10625.039813474717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023ffc0c487b4f315651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:01.000Z'}}, {'blockNum': '0x4b6964', 'uniqueId': '0x83ed6dfc54718b7eea93503aebb85aef9531dc0aba76693373c71d94cff80bb2:log:21', 'hash': '0x83ed6dfc54718b7eea93503aebb85aef9531dc0aba76693373c71d94cff80bb2', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xf56a01c5b5a28fdda394ca9b7cfa6c47f7faf322', 'value': 3.3505796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e7fa664e1aba000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:22.000Z'}}, {'blockNum': '0x4b6964', 'uniqueId': '0xb20dcf313a7bad17805d5a8a897576642fe0305c40729cc22e3eb2a5a95baf83:log:71', 'hash': '0xb20dcf313a7bad17805d5a8a897576642fe0305c40729cc22e3eb2a5a95baf83', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1825.57502461629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x62f6f15c93d6f589a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:22.000Z'}}, {'blockNum': '0x4b6964', 'uniqueId': '0xb20dcf313a7bad17805d5a8a897576642fe0305c40729cc22e3eb2a5a95baf83:log:73', 'hash': '0xb20dcf313a7bad17805d5a8a897576642fe0305c40729cc22e3eb2a5a95baf83', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1825.57502461629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x62f6f15c93d6f589a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:22.000Z'}}, {'blockNum': '0x4b6966', 'uniqueId': '0x2522cbd74a2d2d74fe0cfeef7828cb032b98d82be97789887e9af70c49cefeff:log:66', 'hash': '0x2522cbd74a2d2d74fe0cfeef7828cb032b98d82be97789887e9af70c49cefeff', 'from': '0x7ac34681f6aaeb691e150c43ee494177c0e2c183', 'to': '0x5efdfd41565b39beba21e13e5f4f987e56a94fb0', 'value': 2495.8926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x874d77c7e4ee1f8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:51.000Z'}}, {'blockNum': '0x4b6966', 'uniqueId': '0x71ee3eaecdcefc9f77a8dfbfb608f01d776a09f7655d97b0f0c6a981c8edd5f7:log:93', 'hash': '0x71ee3eaecdcefc9f77a8dfbfb608f01d776a09f7655d97b0f0c6a981c8edd5f7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'value': 1475.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ff7ae0e5f91ba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:09:51.000Z'}}, {'blockNum': '0x4b6967', 'uniqueId': '0x5eb6b379603ebb79a84310db65258d03d47566ee1511d4f37632fd1883978a3f:log:3', 'hash': '0x5eb6b379603ebb79a84310db65258d03d47566ee1511d4f37632fd1883978a3f', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:10:04.000Z'}}, {'blockNum': '0x4b696f', 'uniqueId': '0xb9ae2f9bc359fad8949828a99554b4175cb6c6004fc2e9be930c12ceeb153a04:log:15', 'hash': '0xb9ae2f9bc359fad8949828a99554b4175cb6c6004fc2e9be930c12ceeb153a04', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x982b3f3403274618d6db8ba63cb6f91be5e7bd9b', 'value': 83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x047fdb3c3f456c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:11:29.000Z'}}, {'blockNum': '0x4b6975', 'uniqueId': '0xe4050b3def153ddea13ac98c0094123f157521a7271e6b27e2e622c09c4ce01f:log:7', 'hash': '0xe4050b3def153ddea13ac98c0094123f157521a7271e6b27e2e622c09c4ce01f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5858.933458252845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013d9d090a5233ce081a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:12:35.000Z'}}, {'blockNum': '0x4b6975', 'uniqueId': '0xe4050b3def153ddea13ac98c0094123f157521a7271e6b27e2e622c09c4ce01f:log:9', 'hash': '0xe4050b3def153ddea13ac98c0094123f157521a7271e6b27e2e622c09c4ce01f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 5858.933458252845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013d9d090a5233ce081a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:12:35.000Z'}}, {'blockNum': '0x4b6976', 'uniqueId': '0x910318844e1834e6ed3aca6e7c58e0fdc11c1b62d5be8bf77d6b946c78e4b1f0:log:39', 'hash': '0x910318844e1834e6ed3aca6e7c58e0fdc11c1b62d5be8bf77d6b946c78e4b1f0', 'from': '0x22872db37d9e5123119c1e07b740b1be1ed1f050', 'to': '0x15f9e2f31c7148ee9fa182a5d81d1338d5ea8d64', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:12:51.000Z'}}, {'blockNum': '0x4b6976', 'uniqueId': '0x8dbf52e4199e37ee1a895e31a35cf0583d121ba4314d6b4d4fd686981c2a6a58:log:40', 'hash': '0x8dbf52e4199e37ee1a895e31a35cf0583d121ba4314d6b4d4fd686981c2a6a58', 'from': '0xab0c0b8dbbe6bdc0d0a57becbf913d4d2ddf8932', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e12b3e9cefbf300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:12:51.000Z'}}, {'blockNum': '0x4b6979', 'uniqueId': '0xa385352c5606cbefefc8abba653447787047435019c2042d0f36d4793d3c8b79:log:38', 'hash': '0xa385352c5606cbefefc8abba653447787047435019c2042d0f36d4793d3c8b79', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xcf41e59816eec50c1882008a6d0115458a592e86', 'value': 26.81157843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x017415dc873bacf000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:14:39.000Z'}}, {'blockNum': '0x4b697a', 'uniqueId': '0x813cc2e0b93a2725b364e54e9a6b2ba95f98048b7dca2be8b951cb1ff27a80e2:log:40', 'hash': '0x813cc2e0b93a2725b364e54e9a6b2ba95f98048b7dca2be8b951cb1ff27a80e2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 1070.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a03508b1a30470000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:14:46.000Z'}}, {'blockNum': '0x4b697a', 'uniqueId': '0xf3f8d42c5020e47a9a0a23055cc0c33632b864e5d21ddb868619c32d1da66e47:log:41', 'hash': '0xf3f8d42c5020e47a9a0a23055cc0c33632b864e5d21ddb868619c32d1da66e47', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 347.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12d1ac8db870db0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:14:46.000Z'}}, {'blockNum': '0x4b697a', 'uniqueId': '0xa5ab61d90770cc660396d8ed850453a1c6d0b75679a374ba4cb4c66ca6d50a7f:log:45', 'hash': '0xa5ab61d90770cc660396d8ed850453a1c6d0b75679a374ba4cb4c66ca6d50a7f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x46335987897c30b466b5ef02f0b552c94aac3403', 'value': 130.18075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x070e9eee65d7eec000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:14:46.000Z'}}, {'blockNum': '0x4b697b', 'uniqueId': '0xb1388ac6065044d7e1a7ef90e7294af63880249959b17e82227056673fb17bf7:log:34', 'hash': '0xb1388ac6065044d7e1a7ef90e7294af63880249959b17e82227056673fb17bf7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 64.835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0383c430fd4c738000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:03.000Z'}}, {'blockNum': '0x4b697d', 'uniqueId': '0xfc2f0f332cbcb29faf234afd80ab04390268733ca1627398869079908409cc2a:log:28', 'hash': '0xfc2f0f332cbcb29faf234afd80ab04390268733ca1627398869079908409cc2a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7cea16b6cf7dddf2f5a089877e3ec953fed67d11', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:48.000Z'}}, {'blockNum': '0x4b697e', 'uniqueId': '0x02da4f082909aeccf4a5e3a2348f4d29b84ce1be3fa6f90a31773a6ef88873ef:log:7', 'hash': '0x02da4f082909aeccf4a5e3a2348f4d29b84ce1be3fa6f90a31773a6ef88873ef', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x960c6e001bb8dfc9b986617852cf086181091abf', 'value': 289.67955738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fb41c86a627492800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:57.000Z'}}, {'blockNum': '0x4b697e', 'uniqueId': '0x8527b60fc73eda42e2739753ef12d1c9873041a8a7e8acac1476f679e9355e34:log:8', 'hash': '0x8527b60fc73eda42e2739753ef12d1c9873041a8a7e8acac1476f679e9355e34', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x92f7db0aab0077f481127f1cba27abf0130b9dfa', 'value': 152.42829891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08435e1a42479cac00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:57.000Z'}}, {'blockNum': '0x4b697e', 'uniqueId': '0xb1f0b91ffad76102e6442d0f431c3dfd3c59bb900a884537e1a7af5e65133970:log:9', 'hash': '0xb1f0b91ffad76102e6442d0f431c3dfd3c59bb900a884537e1a7af5e65133970', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d67bcb6442b2af096f6fe6a3ab09076c4b0fccc', 'value': 738.01584055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280206f8ce0213fc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:15:57.000Z'}}, {'blockNum': '0x4b6980', 'uniqueId': '0xd3d632429afdef333b562aac6143d59aaa16616a8f34a5014732f47ca95ac346:log:49', 'hash': '0xd3d632429afdef333b562aac6143d59aaa16616a8f34a5014732f47ca95ac346', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.124787663239224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x471ee73a38ad9b66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:11.000Z'}}, {'blockNum': '0x4b6980', 'uniqueId': '0xd3d632429afdef333b562aac6143d59aaa16616a8f34a5014732f47ca95ac346:log:52', 'hash': '0xd3d632429afdef333b562aac6143d59aaa16616a8f34a5014732f47ca95ac346', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 5.124787663239224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x471ee73a38ad9b66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:11.000Z'}}, {'blockNum': '0x4b6980', 'uniqueId': '0x4a2c531f7c64613991f983031f8940f98468efe82562471b426a3909d490103d:log:88', 'hash': '0x4a2c531f7c64613991f983031f8940f98468efe82562471b426a3909d490103d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4391.532068320464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee10c00ccda9b992f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:11.000Z'}}, {'blockNum': '0x4b6980', 'uniqueId': '0x4a2c531f7c64613991f983031f8940f98468efe82562471b426a3909d490103d:log:90', 'hash': '0x4a2c531f7c64613991f983031f8940f98468efe82562471b426a3909d490103d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4391.532068320464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee10c00ccda9b992f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:11.000Z'}}, {'blockNum': '0x4b6981', 'uniqueId': '0x3ddc81d9d613d63eace513b3a33079f7a71addb260c9c3a72c9451e71b76249d:log:48', 'hash': '0x3ddc81d9d613d63eace513b3a33079f7a71addb260c9c3a72c9451e71b76249d', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 616.3771533017048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2169f38b38c699d168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:36.000Z'}}, {'blockNum': '0x4b6981', 'uniqueId': '0x3ddc81d9d613d63eace513b3a33079f7a71addb260c9c3a72c9451e71b76249d:log:50', 'hash': '0x3ddc81d9d613d63eace513b3a33079f7a71addb260c9c3a72c9451e71b76249d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 616.3771533017048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2169f38b38c699d168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:16:36.000Z'}}, {'blockNum': '0x4b6984', 'uniqueId': '0xca358bad4a09211cd37fd5286e97bb2e7ef60cb82f012044c141effa6ed252ee:log:41', 'hash': '0xca358bad4a09211cd37fd5286e97bb2e7ef60cb82f012044c141effa6ed252ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.390709967093397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ceeef73bc5e7543', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:17:03.000Z'}}, {'blockNum': '0x4b6984', 'uniqueId': '0xca358bad4a09211cd37fd5286e97bb2e7ef60cb82f012044c141effa6ed252ee:log:44', 'hash': '0xca358bad4a09211cd37fd5286e97bb2e7ef60cb82f012044c141effa6ed252ee', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 4.390709967093397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ceeef73bc5e7543', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:17:03.000Z'}}, {'blockNum': '0x4b698a', 'uniqueId': '0xcaba0acd512ab47d36263354ef6dd6734a6bcbbc7f2577ed7529f0f00f629785:log:39', 'hash': '0xcaba0acd512ab47d36263354ef6dd6734a6bcbbc7f2577ed7529f0f00f629785', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1696.3989464048198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf643bdd92e346d7b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:18:32.000Z'}}, {'blockNum': '0x4b698a', 'uniqueId': '0xcaba0acd512ab47d36263354ef6dd6734a6bcbbc7f2577ed7529f0f00f629785:log:41', 'hash': '0xcaba0acd512ab47d36263354ef6dd6734a6bcbbc7f2577ed7529f0f00f629785', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1696.3989464048198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf643bdd92e346d7b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:18:32.000Z'}}, {'blockNum': '0x4b698c', 'uniqueId': '0xf23bc7fe3cb2164684c3378ad6229a8dc10f736bf1542e4fafd05f543e9d31d0:log:27', 'hash': '0xf23bc7fe3cb2164684c3378ad6229a8dc10f736bf1542e4fafd05f543e9d31d0', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xf56a01c5b5a28fdda394ca9b7cfa6c47f7faf322', 'value': 4.44006872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4af9f1ec6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:19:04.000Z'}}, {'blockNum': '0x4b698c', 'uniqueId': '0x64b39583af85246282b26fcebe9cd43fe787b7c6cb70e709e70c119011c57ca4:log:47', 'hash': '0x64b39583af85246282b26fcebe9cd43fe787b7c6cb70e709e70c119011c57ca4', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf0ba6634f6800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:19:04.000Z'}}, {'blockNum': '0x4b698d', 'uniqueId': '0xe1a369db6e5e8494823a17c211a9c7c205b44afa7f432d77f6ad1b6d0062e1e2:log:34', 'hash': '0xe1a369db6e5e8494823a17c211a9c7c205b44afa7f432d77f6ad1b6d0062e1e2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7313.2122567934375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018c7335387e95a4a559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:19:12.000Z'}}, {'blockNum': '0x4b698d', 'uniqueId': '0xe1a369db6e5e8494823a17c211a9c7c205b44afa7f432d77f6ad1b6d0062e1e2:log:36', 'hash': '0xe1a369db6e5e8494823a17c211a9c7c205b44afa7f432d77f6ad1b6d0062e1e2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 7313.2122567934375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018c7335387e95a4a559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:19:12.000Z'}}, {'blockNum': '0x4b6993', 'uniqueId': '0xbe52bc62a9dcefca4d2ba8950f5276a17e4cdd97d54f71a7b7e9aaf660297206:log:36', 'hash': '0xbe52bc62a9dcefca4d2ba8950f5276a17e4cdd97d54f71a7b7e9aaf660297206', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1023.3447110048473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3779c2c0bf0ab3ab64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:20:37.000Z'}}, {'blockNum': '0x4b6993', 'uniqueId': '0xbe52bc62a9dcefca4d2ba8950f5276a17e4cdd97d54f71a7b7e9aaf660297206:log:39', 'hash': '0xbe52bc62a9dcefca4d2ba8950f5276a17e4cdd97d54f71a7b7e9aaf660297206', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1023.3447110048473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3779c2c0bf0ab3ab64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:20:37.000Z'}}, {'blockNum': '0x4b6995', 'uniqueId': '0xb14fa46dddf66b4ea49f14eb38dcf95c9a2f423ec5bcf22b40d93d38383be32c:log:20', 'hash': '0xb14fa46dddf66b4ea49f14eb38dcf95c9a2f423ec5bcf22b40d93d38383be32c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5fb6889e681dea9234d78117952a3f7940a4cc0d', 'value': 9.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7efb54856ed30000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:02.000Z'}}, {'blockNum': '0x4b6995', 'uniqueId': '0xaa2814af9b3ca7a22de33a941e940a7e6e790ecc3986e1d5b556956d5a601360:log:21', 'hash': '0xaa2814af9b3ca7a22de33a941e940a7e6e790ecc3986e1d5b556956d5a601360', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x961c2086f45adb3452e93538b7a00e19f7a2e039', 'value': 46.13624606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x028044df59ec50b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:02.000Z'}}, {'blockNum': '0x4b6995', 'uniqueId': '0x002d6b23379faa78ae9e5b4b82c6c81d7d40b23c3f3186d42d289c55d0e88755:log:22', 'hash': '0x002d6b23379faa78ae9e5b4b82c6c81d7d40b23c3f3186d42d289c55d0e88755', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:02.000Z'}}, {'blockNum': '0x4b6996', 'uniqueId': '0xda8c4d8eaea8860148e8399041127fcedde005f61a0b6f32d93aeadbb05da75e:log:78', 'hash': '0xda8c4d8eaea8860148e8399041127fcedde005f61a0b6f32d93aeadbb05da75e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 15.349227095325542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50368b831ae046d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:26.000Z'}}, {'blockNum': '0x4b6996', 'uniqueId': '0xda8c4d8eaea8860148e8399041127fcedde005f61a0b6f32d93aeadbb05da75e:log:80', 'hash': '0xda8c4d8eaea8860148e8399041127fcedde005f61a0b6f32d93aeadbb05da75e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x63ffd2a819d9d444ef0d9d64b04429ced07c37b7', 'value': 15.349227095325542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50368b831ae046d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:21:26.000Z'}}, {'blockNum': '0x4b69a0', 'uniqueId': '0x8105a064637cbc0765c2f2093f79d5eae7030414a0db2f60200f394c87936d50:log:34', 'hash': '0x8105a064637cbc0765c2f2093f79d5eae7030414a0db2f60200f394c87936d50', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0x9667beaf0664dd52cec248625ad5b1f92603d9e9', 'value': 6.46364257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x59b378abebf16400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:23:46.000Z'}}, {'blockNum': '0x4b69a2', 'uniqueId': '0x0e49936203cc9cbfdde100bcf4447922d563f111aeea3fd3efae7132f6b68f27:log:41', 'hash': '0x0e49936203cc9cbfdde100bcf4447922d563f111aeea3fd3efae7132f6b68f27', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 47.946825753984484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02996557fd75cbc3d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:24:00.000Z'}}, {'blockNum': '0x4b69a2', 'uniqueId': '0x0e49936203cc9cbfdde100bcf4447922d563f111aeea3fd3efae7132f6b68f27:log:44', 'hash': '0x0e49936203cc9cbfdde100bcf4447922d563f111aeea3fd3efae7132f6b68f27', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 47.946825753984484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02996557fd75cbc3d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:24:00.000Z'}}, {'blockNum': '0x4b69a5', 'uniqueId': '0x4773eea5c0a729aac926a10e68b1ce5ae04542dd9a8dac6aa3ac11b3ca3277d9:log:42', 'hash': '0x4773eea5c0a729aac926a10e68b1ce5ae04542dd9a8dac6aa3ac11b3ca3277d9', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf0ba6634f6800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:25:08.000Z'}}, {'blockNum': '0x4b69ac', 'uniqueId': '0x2e502184982aa21203fb99b463ef955b7ff3520d155abfed4405e7aa698d4334:log:2', 'hash': '0x2e502184982aa21203fb99b463ef955b7ff3520d155abfed4405e7aa698d4334', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1bd39650266b94fde58a72c0e2bb17d85708d3af', 'value': 10036.53981347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022014f8487be8a22c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:00.000Z'}}, {'blockNum': '0x4b69ac', 'uniqueId': '0xedb56748aa08d697bc5d22c5275da25123974c12ab596f5ee25a1cb1d9a979f1:log:3', 'hash': '0xedb56748aa08d697bc5d22c5275da25123974c12ab596f5ee25a1cb1d9a979f1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'value': 1131.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d56b7870e5a7e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:00.000Z'}}, {'blockNum': '0x4b69ac', 'uniqueId': '0xd40eda040ff5a5db2ec192a4622ceb5cf84d3ed139d55dd63f87ff401ae47e3e:log:63', 'hash': '0xd40eda040ff5a5db2ec192a4622ceb5cf84d3ed139d55dd63f87ff401ae47e3e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 336.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x123de0272586f20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:00.000Z'}}, {'blockNum': '0x4b69b2', 'uniqueId': '0xb6e5caef624ce25231025b4e8ced15b4a9a31eb58b6c2983be4e6746beff2785:log:27', 'hash': '0xb6e5caef624ce25231025b4e8ced15b4a9a31eb58b6c2983be4e6746beff2785', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2923.1373108843113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e76ade8cdd5fb1215', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:50.000Z'}}, {'blockNum': '0x4b69b2', 'uniqueId': '0xb6e5caef624ce25231025b4e8ced15b4a9a31eb58b6c2983be4e6746beff2785:log:29', 'hash': '0xb6e5caef624ce25231025b4e8ced15b4a9a31eb58b6c2983be4e6746beff2785', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2923.1373108843113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e76ade8cdd5fb1215', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:26:50.000Z'}}, {'blockNum': '0x4b69b7', 'uniqueId': '0x8ba4fffa262f831ae6fb5465b5d2dc181df9db66de39abd83da4721783f61003:log:50', 'hash': '0x8ba4fffa262f831ae6fb5465b5d2dc181df9db66de39abd83da4721783f61003', 'from': '0x63ffd2a819d9d444ef0d9d64b04429ced07c37b7', 'to': '0x7b0872dd5bee1cd4362b10393a11d32b4cf07b2b', 'value': 15.349227095325542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50368b831ae046d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:28:25.000Z'}}, {'blockNum': '0x4b69b7', 'uniqueId': '0xc072dfcf6aae09db9f499de1f06bcc377d83edb559b29b5f94726b5605422a07:log:79', 'hash': '0xc072dfcf6aae09db9f499de1f06bcc377d83edb559b29b5f94726b5605422a07', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4382.810576577596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed97b716458c976b74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:28:25.000Z'}}, {'blockNum': '0x4b69b7', 'uniqueId': '0xc072dfcf6aae09db9f499de1f06bcc377d83edb559b29b5f94726b5605422a07:log:81', 'hash': '0xc072dfcf6aae09db9f499de1f06bcc377d83edb559b29b5f94726b5605422a07', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4382.810576577596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed97b716458c976b74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:28:25.000Z'}}, {'blockNum': '0x4b69bd', 'uniqueId': '0xfdfaf82a36b668227608e9cc4152332e831bf75f3a3864f00c6cce3f2e0b9c2f:log:33', 'hash': '0xfdfaf82a36b668227608e9cc4152332e831bf75f3a3864f00c6cce3f2e0b9c2f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4344.04321763911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeb7db5c2b724077157', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:29:59.000Z'}}, {'blockNum': '0x4b69bd', 'uniqueId': '0xfdfaf82a36b668227608e9cc4152332e831bf75f3a3864f00c6cce3f2e0b9c2f:log:35', 'hash': '0xfdfaf82a36b668227608e9cc4152332e831bf75f3a3864f00c6cce3f2e0b9c2f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7f912e5f83e7e68ac9d5cc2d2b3a720c046551f7', 'value': 4344.04321763911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeb7db5c2b724077157', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:29:59.000Z'}}, {'blockNum': '0x4b69bf', 'uniqueId': '0xae2d102a48abe99bdda1fa21da4c988233f7f97e30e2f9a2b8df9d25d8177469:log:3', 'hash': '0xae2d102a48abe99bdda1fa21da4c988233f7f97e30e2f9a2b8df9d25d8177469', 'from': '0x218d1693255a4c1e1ac13f3feb5f7e79e344283d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 299.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10378a4c090e1b0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:30:14.000Z'}}, {'blockNum': '0x4b69c0', 'uniqueId': '0xef6312d2e13a35089c51ffa4fdcfba5318e56300553f5fd11c9d6876f08d7b27:log:6', 'hash': '0xef6312d2e13a35089c51ffa4fdcfba5318e56300553f5fd11c9d6876f08d7b27', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:30:40.000Z'}}, {'blockNum': '0x4b69c0', 'uniqueId': '0x374485acd580bdab94df0dcb4de670c418a7a64db49fb0d3dfdb482d21764ade:log:43', 'hash': '0x374485acd580bdab94df0dcb4de670c418a7a64db49fb0d3dfdb482d21764ade', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5837.212640205067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013c6f9931637314cea0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:30:40.000Z'}}, {'blockNum': '0x4b69c0', 'uniqueId': '0x374485acd580bdab94df0dcb4de670c418a7a64db49fb0d3dfdb482d21764ade:log:45', 'hash': '0x374485acd580bdab94df0dcb4de670c418a7a64db49fb0d3dfdb482d21764ade', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 5837.212640205067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013c6f9931637314cea0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:30:40.000Z'}}, {'blockNum': '0x4b69c1', 'uniqueId': '0x6de1db337fd7bb647374a24e728a21f98155c88025206921b7e348f75dedfbf2:log:10', 'hash': '0x6de1db337fd7bb647374a24e728a21f98155c88025206921b7e348f75dedfbf2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5a476a21e25804e2292a84ca848bc4f57171014', 'value': 82.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0478eae0e571ba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:31:02.000Z'}}, {'blockNum': '0x4b69c3', 'uniqueId': '0x1dcfc10ecdba43ca2fdab181ec86f1ac7cc6fe74ee4dbde4b9d4d1f68a051a86:log:45', 'hash': '0x1dcfc10ecdba43ca2fdab181ec86f1ac7cc6fe74ee4dbde4b9d4d1f68a051a86', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad43f181cb2915bca1577dff8a9e181eaa0f0e4e', 'value': 2.55662578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x237af599f0818800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:32:10.000Z'}}, {'blockNum': '0x4b69c3', 'uniqueId': '0xfd9e3c6d91ddacf52164609d8229f007865f6c02e4f3804f493899614237ff09:log:46', 'hash': '0xfd9e3c6d91ddacf52164609d8229f007865f6c02e4f3804f493899614237ff09', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7d4e021c0dcbe5d2e6721f9a09ff687186bd59ff', 'value': 414.68802275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x167af3cf946edb2c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:32:10.000Z'}}, {'blockNum': '0x4b69c4', 'uniqueId': '0xe5a8710f8c1f15ba47cdd79e941f9f7536994deec5ae1e13d6f67edf2deebb2a:log:9', 'hash': '0xe5a8710f8c1f15ba47cdd79e941f9f7536994deec5ae1e13d6f67edf2deebb2a', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:32:17.000Z'}}, {'blockNum': '0x4b69cf', 'uniqueId': '0x712f4efc8cff271ad709071b42aa2cb594af246c10c877b4ab9427abde00ab2f:log:10', 'hash': '0x712f4efc8cff271ad709071b42aa2cb594af246c10c877b4ab9427abde00ab2f', 'from': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1131.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d56b7870e5a7e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:12.000Z'}}, {'blockNum': '0x4b69cf', 'uniqueId': '0x5de439397da25e5371818020f7c634a9acfb456e1792e69cd0852cb74408ffca:log:68', 'hash': '0x5de439397da25e5371818020f7c634a9acfb456e1792e69cd0852cb74408ffca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4375.264929265488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed2eff900515fa9a61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:12.000Z'}}, {'blockNum': '0x4b69cf', 'uniqueId': '0x5de439397da25e5371818020f7c634a9acfb456e1792e69cd0852cb74408ffca:log:70', 'hash': '0x5de439397da25e5371818020f7c634a9acfb456e1792e69cd0852cb74408ffca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4375.264929265488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed2eff900515fa9a61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:12.000Z'}}, {'blockNum': '0x4b69d0', 'uniqueId': '0x21aaabe18c520da41df1c4e5f86b3090e5e4b68ca7e7c3e4fc3cae501a0d7be5:log:23', 'hash': '0x21aaabe18c520da41df1c4e5f86b3090e5e4b68ca7e7c3e4fc3cae501a0d7be5', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 336.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x123de0272586f20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:15.000Z'}}, {'blockNum': '0x4b69d2', 'uniqueId': '0x1b2398dbb04568bb3038809e9fc7689a3c96d0b515e2e73f2d3134bde40ece7d:log:11', 'hash': '0x1b2398dbb04568bb3038809e9fc7689a3c96d0b515e2e73f2d3134bde40ece7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2475.3898532563526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8630ef645bef364731', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:28.000Z'}}, {'blockNum': '0x4b69d2', 'uniqueId': '0x1b2398dbb04568bb3038809e9fc7689a3c96d0b515e2e73f2d3134bde40ece7d:log:13', 'hash': '0x1b2398dbb04568bb3038809e9fc7689a3c96d0b515e2e73f2d3134bde40ece7d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2475.3898532563526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8630ef645bef364731', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:28.000Z'}}, {'blockNum': '0x4b69d3', 'uniqueId': '0x6ff30508f2c8459e8214e4fe6647525c253e5b91261de5b3ae9df40c46529236:log:5', 'hash': '0x6ff30508f2c8459e8214e4fe6647525c253e5b91261de5b3ae9df40c46529236', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x70fd01e9492cf089999c2d33063b8fe78a6267b8', 'value': 3.465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3016272442ba8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:34:54.000Z'}}, {'blockNum': '0x4b69d4', 'uniqueId': '0xbdd5f514e64313d47ee64f523d1e0fa6d2811ff0bc0ca8a9a7c2833c512e28f7:log:68', 'hash': '0xbdd5f514e64313d47ee64f523d1e0fa6d2811ff0bc0ca8a9a7c2833c512e28f7', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x862b865ae353cc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:35:43.000Z'}}, {'blockNum': '0x4b69d8', 'uniqueId': '0xfead9a274ad287e932eb0ea9b0d0bc016954b2524826516d9e0a741f6ec27a25:log:5', 'hash': '0xfead9a274ad287e932eb0ea9b0d0bc016954b2524826516d9e0a741f6ec27a25', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3e83b0f1928792e208d3ed0ed8e7dfbec59e43d2', 'value': 1008.44277469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x36aaf4709f2abbd400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:36:27.000Z'}}, {'blockNum': '0x4b69d8', 'uniqueId': '0x75e6c4b012e99895fc19ef939814245b8ba56def76e2b49ea2f91b8dd8968ff2:log:27', 'hash': '0x75e6c4b012e99895fc19ef939814245b8ba56def76e2b49ea2f91b8dd8968ff2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad43f181cb2915bca1577dff8a9e181eaa0f0e4e', 'value': 1289.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e28cd6ca62d30000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:36:27.000Z'}}, {'blockNum': '0x4b69db', 'uniqueId': '0x049e68d35b0ddb559355f638ff532392ca76b31940a4933d9af2c3d1c3c95cbe:log:148', 'hash': '0x049e68d35b0ddb559355f638ff532392ca76b31940a4933d9af2c3d1c3c95cbe', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:37:03.000Z'}}, {'blockNum': '0x4b69dd', 'uniqueId': '0x8873ceb6f4010f57a0422a1b56c790a6d506ae476de6d040eeb71b070b7a820b:log:4', 'hash': '0x8873ceb6f4010f57a0422a1b56c790a6d506ae476de6d040eeb71b070b7a820b', 'from': '0xe5a476a21e25804e2292a84ca848bc4f57171014', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 82.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0478eae0e571ba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:37:33.000Z'}}, {'blockNum': '0x4b69e7', 'uniqueId': '0xf3b90fb6c4a40aeef22d1ad4cf743ac0135985ffa1ac62050073d3e33d0f88d5:log:45', 'hash': '0xf3b90fb6c4a40aeef22d1ad4cf743ac0135985ffa1ac62050073d3e33d0f88d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8741.181050907146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9dc417d09b8202135', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:39:14.000Z'}}, {'blockNum': '0x4b69e7', 'uniqueId': '0xf3b90fb6c4a40aeef22d1ad4cf743ac0135985ffa1ac62050073d3e33d0f88d5:log:47', 'hash': '0xf3b90fb6c4a40aeef22d1ad4cf743ac0135985ffa1ac62050073d3e33d0f88d5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'value': 8741.181050907146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9dc417d09b8202135', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:39:14.000Z'}}, {'blockNum': '0x4b69e9', 'uniqueId': '0xfced94c28abbee14a1c9280642d8236b7efbf1c4a6913bef600935ebb8d54bc0:log:14', 'hash': '0xfced94c28abbee14a1c9280642d8236b7efbf1c4a6913bef600935ebb8d54bc0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcab007003d241d7e7e8c1092ab93911b669ebd0c', 'value': 1999.76908497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c685efb8caccd2400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:08.000Z'}}, {'blockNum': '0x4b69ea', 'uniqueId': '0x276bcbc5b805f0e36e8d876a48c7d7921e4c29ccc2c55573b50a0c4fa94df53c:log:49', 'hash': '0x276bcbc5b805f0e36e8d876a48c7d7921e4c29ccc2c55573b50a0c4fa94df53c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 291.2170637454624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc972d88ad8929aa9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:30.000Z'}}, {'blockNum': '0x4b69ea', 'uniqueId': '0x276bcbc5b805f0e36e8d876a48c7d7921e4c29ccc2c55573b50a0c4fa94df53c:log:51', 'hash': '0x276bcbc5b805f0e36e8d876a48c7d7921e4c29ccc2c55573b50a0c4fa94df53c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd297ba16f1f8124db142231aa4271bf904826ef6', 'value': 291.2170637454624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc972d88ad8929aa9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:30.000Z'}}, {'blockNum': '0x4b69ea', 'uniqueId': '0x64690210c4df36abb94f4fae15cd15fd873cf56b79a97def62faf2b10555d819:log:60', 'hash': '0x64690210c4df36abb94f4fae15cd15fd873cf56b79a97def62faf2b10555d819', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 519.190333459898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c2536997e55d437b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:30.000Z'}}, {'blockNum': '0x4b69ea', 'uniqueId': '0x64690210c4df36abb94f4fae15cd15fd873cf56b79a97def62faf2b10555d819:log:62', 'hash': '0x64690210c4df36abb94f4fae15cd15fd873cf56b79a97def62faf2b10555d819', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 519.190333459898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c2536997e55d437b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:30.000Z'}}, {'blockNum': '0x4b69eb', 'uniqueId': '0x018340dc5bf574a542cef41e857fb9c86f6fdc9da2353b28716ac51c65f661e2:log:5', 'hash': '0x018340dc5bf574a542cef41e857fb9c86f6fdc9da2353b28716ac51c65f661e2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x73e588c6b9227278bdfedd8206e48490e93bdacd', 'value': 116.382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064f1fec61b9830000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:40:37.000Z'}}, {'blockNum': '0x4b69ee', 'uniqueId': '0x036fa24e36dfa8566b31449de47b82b7e0651139e26a63ee331af5d58e139e95:log:10', 'hash': '0x036fa24e36dfa8566b31449de47b82b7e0651139e26a63ee331af5d58e139e95', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7d4e021c0dcbe5d2e6721f9a09ff687186bd59ff', 'value': 7.77045661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6bd6351dfda2d400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:42:16.000Z'}}, {'blockNum': '0x4b69ee', 'uniqueId': '0x4c871a5fc08b8d7276543de1d7233db9d46f98f3a7e23f542256e31d52727e18:log:50', 'hash': '0x4c871a5fc08b8d7276543de1d7233db9d46f98f3a7e23f542256e31d52727e18', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 15595.528655959333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x034d6f6ffbf161441b19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:42:16.000Z'}}, {'blockNum': '0x4b69ee', 'uniqueId': '0x4c871a5fc08b8d7276543de1d7233db9d46f98f3a7e23f542256e31d52727e18:log:52', 'hash': '0x4c871a5fc08b8d7276543de1d7233db9d46f98f3a7e23f542256e31d52727e18', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 15595.528655959333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x034d6f6ffbf161441b19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:42:16.000Z'}}, {'blockNum': '0x4b69ef', 'uniqueId': '0x00d781a2d8b4f79d558a027ca0b75a3754d3b1b89af5e4f3aad86ab3338afda7:log:23', 'hash': '0x00d781a2d8b4f79d558a027ca0b75a3754d3b1b89af5e4f3aad86ab3338afda7', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x862b865ae353cc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:43:04.000Z'}}, {'blockNum': '0x4b69f3', 'uniqueId': '0xe03bb10fde5fad0e1a0acbd19b035fed99fcc76d2690394da36694c3672bf3b9:log:62', 'hash': '0xe03bb10fde5fad0e1a0acbd19b035fed99fcc76d2690394da36694c3672bf3b9', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'value': 5596.528655959333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012f636fe8ea56681b19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:44:19.000Z'}}, {'blockNum': '0x4b69f7', 'uniqueId': '0x9a28fbbea7062d865cf65e856f338861adb662fd474621eae0bdafa6445ffc82:log:5', 'hash': '0x9a28fbbea7062d865cf65e856f338861adb662fd474621eae0bdafa6445ffc82', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xace649f083e9852c51eb4056fd3382a610e25e65', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:44:43.000Z'}}, {'blockNum': '0x4b69fa', 'uniqueId': '0x7273a6be5d3f6523fb31e180e697ac3278ba99e9e2d7027b0964df77d946b938:log:43', 'hash': '0x7273a6be5d3f6523fb31e180e697ac3278ba99e9e2d7027b0964df77d946b938', 'from': '0xec64bd6efff779637f10b58109ff74e4f4212918', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 312.90750674082864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f676c786983d3a87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:46:03.000Z'}}, {'blockNum': '0x4b69fa', 'uniqueId': '0x7273a6be5d3f6523fb31e180e697ac3278ba99e9e2d7027b0964df77d946b938:log:45', 'hash': '0x7273a6be5d3f6523fb31e180e697ac3278ba99e9e2d7027b0964df77d946b938', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 312.90750674082864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f676c786983d3a87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:46:03.000Z'}}, {'blockNum': '0x4b69fc', 'uniqueId': '0xa1c1c1e54ac226c8c2d8e9c4f5a52ade844b7367aa93baf4eddaaf88247d82eb:log:29', 'hash': '0xa1c1c1e54ac226c8c2d8e9c4f5a52ade844b7367aa93baf4eddaaf88247d82eb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x3555d8df02c54e904004d45c563812a8bda012cc', 'value': 599.1405956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x207abefd50b5f80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:46:20.000Z'}}, {'blockNum': '0x4b6a00', 'uniqueId': '0x7e973715ae4f406a4bf01035b5d3cc6ee4f00b1b1e0300897f37ce5060f67a67:log:65', 'hash': '0x7e973715ae4f406a4bf01035b5d3cc6ee4f00b1b1e0300897f37ce5060f67a67', 'from': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'to': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'value': 8741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9d9be443279740000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:47:31.000Z'}}, {'blockNum': '0x4b6a01', 'uniqueId': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d:log:33', 'hash': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d', 'from': '0xcab007003d241d7e7e8c1092ab93911b669ebd0c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:47:50.000Z'}}, {'blockNum': '0x4b6a01', 'uniqueId': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d:log:36', 'hash': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:47:50.000Z'}}, {'blockNum': '0x4b6a01', 'uniqueId': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d:log:37', 'hash': '0x51d221423fd274c059bfb8324d74976fa086f698568b3b2f2782b88c26401c4d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:47:50.000Z'}}, {'blockNum': '0x4b6a03', 'uniqueId': '0xf61e5964b8f43abb949589b8eaa310727f2fff29a9d2a53db920b9b31de32e5c:log:52', 'hash': '0xf61e5964b8f43abb949589b8eaa310727f2fff29a9d2a53db920b9b31de32e5c', 'from': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 308.1533224930488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10b47c8624228ff110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:48:54.000Z'}}, {'blockNum': '0x4b6a03', 'uniqueId': '0xf61e5964b8f43abb949589b8eaa310727f2fff29a9d2a53db920b9b31de32e5c:log:54', 'hash': '0xf61e5964b8f43abb949589b8eaa310727f2fff29a9d2a53db920b9b31de32e5c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 308.1533224930488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10b47c8624228ff110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:48:54.000Z'}}, {'blockNum': '0x4b6a03', 'uniqueId': '0x0c78193bced75a992574af260c55b78c6a4d27e20429651c16114dd63e5edc7d:log:68', 'hash': '0x0c78193bced75a992574af260c55b78c6a4d27e20429651c16114dd63e5edc7d', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 76.28660055386301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0422b073051f1f49f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:48:54.000Z'}}, {'blockNum': '0x4b6a03', 'uniqueId': '0x0c78193bced75a992574af260c55b78c6a4d27e20429651c16114dd63e5edc7d:log:70', 'hash': '0x0c78193bced75a992574af260c55b78c6a4d27e20429651c16114dd63e5edc7d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 76.28660055386301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0422b073051f1f49f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:48:54.000Z'}}, {'blockNum': '0x4b6a10', 'uniqueId': '0xf431cec137dcce334918c1c43785d9fe772f2a2fbef281d6d60f190b3791dcf5:log:54', 'hash': '0xf431cec137dcce334918c1c43785d9fe772f2a2fbef281d6d60f190b3791dcf5', 'from': '0xace649f083e9852c51eb4056fd3382a610e25e65', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:52:02.000Z'}}, {'blockNum': '0x4b6a17', 'uniqueId': '0x54553c14054ba70867375aacdf599ba6c90e040c4d3546a95fee482c26f034b9:log:49', 'hash': '0x54553c14054ba70867375aacdf599ba6c90e040c4d3546a95fee482c26f034b9', 'from': '0x06da1a08f030cf89cbf869cb0e2c9078281afe19', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 58554.54959057854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c663f9d4954d4be6e8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:53:39.000Z'}}, {'blockNum': '0x4b6a17', 'uniqueId': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3:log:56', 'hash': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:53:39.000Z'}}, {'blockNum': '0x4b6a17', 'uniqueId': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3:log:59', 'hash': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:53:39.000Z'}}, {'blockNum': '0x4b6a17', 'uniqueId': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3:log:60', 'hash': '0xb123b57d1b1ed9f442ad0494776f57142a0c0f8306c96a4e4ba545b245b4a9f3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:53:39.000Z'}}, {'blockNum': '0x4b6a1a', 'uniqueId': '0x37ce2ecfb14a5fc6e6d4fcc33aecb7eacc4a01e596ba7029c57de36649a8a7f5:log:7', 'hash': '0x37ce2ecfb14a5fc6e6d4fcc33aecb7eacc4a01e596ba7029c57de36649a8a7f5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa1c9753e7181313585b07bcd88a64a8ebd808ed7', 'value': 566.94857445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ebbfdf4a3d65af400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:54:12.000Z'}}, {'blockNum': '0x4b6a1c', 'uniqueId': '0x29cb1d45a94deba1656f95a25298eec4dde0014f7148d94221a3391eefd2f1ce:log:81', 'hash': '0x29cb1d45a94deba1656f95a25298eec4dde0014f7148d94221a3391eefd2f1ce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.645578407460134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb3f8bf74acada92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:32.000Z'}}, {'blockNum': '0x4b6a1c', 'uniqueId': '0x29cb1d45a94deba1656f95a25298eec4dde0014f7148d94221a3391eefd2f1ce:log:84', 'hash': '0x29cb1d45a94deba1656f95a25298eec4dde0014f7148d94221a3391eefd2f1ce', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 14.645578407460134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb3f8bf74acada92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:32.000Z'}}, {'blockNum': '0x4b6a1c', 'uniqueId': '0x2230071e85317832b076b68607a114685feb5856b269f0ca105d3a3bc770feca:log:100', 'hash': '0x2230071e85317832b076b68607a114685feb5856b269f0ca105d3a3bc770feca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.25681286713907236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039061f12792f16f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:32.000Z'}}, {'blockNum': '0x4b6a1c', 'uniqueId': '0x2230071e85317832b076b68607a114685feb5856b269f0ca105d3a3bc770feca:log:103', 'hash': '0x2230071e85317832b076b68607a114685feb5856b269f0ca105d3a3bc770feca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 0.25681286713907236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039061f12792f16f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:32.000Z'}}, {'blockNum': '0x4b6a1d', 'uniqueId': '0xdc6c376a7e9b8f26930b360f6cd994e6b2f5a7bec6ad2f6e4aa9afa3be914513:log:41', 'hash': '0xdc6c376a7e9b8f26930b360f6cd994e6b2f5a7bec6ad2f6e4aa9afa3be914513', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 76.00870796122757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041ed52d2de960073d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:38.000Z'}}, {'blockNum': '0x4b6a1d', 'uniqueId': '0xdc6c376a7e9b8f26930b360f6cd994e6b2f5a7bec6ad2f6e4aa9afa3be914513:log:43', 'hash': '0xdc6c376a7e9b8f26930b360f6cd994e6b2f5a7bec6ad2f6e4aa9afa3be914513', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 76.00870796122757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041ed52d2de960073d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:55:38.000Z'}}, {'blockNum': '0x4b6a22', 'uniqueId': '0x3f509b853e3a1c63361aed5c79964f3931f5b29859f9984469d2664ad416cd47:log:13', 'hash': '0x3f509b853e3a1c63361aed5c79964f3931f5b29859f9984469d2664ad416cd47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 11.716549517839821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2998bb5a41dec5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:56:34.000Z'}}, {'blockNum': '0x4b6a22', 'uniqueId': '0x3f509b853e3a1c63361aed5c79964f3931f5b29859f9984469d2664ad416cd47:log:16', 'hash': '0x3f509b853e3a1c63361aed5c79964f3931f5b29859f9984469d2664ad416cd47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 11.716549517839821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2998bb5a41dec5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:56:34.000Z'}}, {'blockNum': '0x4b6a28', 'uniqueId': '0xa58b124759b4c02aeb65633ba35e18c74ddf8caaa803d12fac2ddadb42f0a8fb:log:9', 'hash': '0xa58b124759b4c02aeb65633ba35e18c74ddf8caaa803d12fac2ddadb42f0a8fb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x705eb714bab0b4e041da2a73541767e23a6f2622', 'value': 729.768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x278f90c185ff440000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:57:43.000Z'}}, {'blockNum': '0x4b6a28', 'uniqueId': '0x78fde484bd738e0118afa90643682449a16bc7f8d1a2c30d8ffcb47ac608d1a2:log:37', 'hash': '0x78fde484bd738e0118afa90643682449a16bc7f8d1a2c30d8ffcb47ac608d1a2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1172.590293051878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f90f592e18c637bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:57:43.000Z'}}, {'blockNum': '0x4b6a28', 'uniqueId': '0x78fde484bd738e0118afa90643682449a16bc7f8d1a2c30d8ffcb47ac608d1a2:log:39', 'hash': '0x78fde484bd738e0118afa90643682449a16bc7f8d1a2c30d8ffcb47ac608d1a2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1172.590293051878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f90f592e18c637bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:57:43.000Z'}}, {'blockNum': '0x4b6a2a', 'uniqueId': '0x717b98386f121e4dff0eb6845d31ca0a97866370a2b91eae0db06ec3d4d7571d:log:22', 'hash': '0x717b98386f121e4dff0eb6845d31ca0a97866370a2b91eae0db06ec3d4d7571d', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f96a5252dfd340000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:58:36.000Z'}}, {'blockNum': '0x4b6a2a', 'uniqueId': '0x856c4dabdfabb19e349ecf06726726eca99e32735da1df7c186fab82b29343a8:log:26', 'hash': '0x856c4dabdfabb19e349ecf06726726eca99e32735da1df7c186fab82b29343a8', 'from': '0x3402d50c38202abb797819f728824068a5dafe60', 'to': '0x17d2dcfbb4281a41b9601a2291096c44ca0bafca', 'value': 274.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0edc98747db5570000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T19:58:36.000Z'}}, {'blockNum': '0x4b6a30', 'uniqueId': '0x90dafe82838ffa681e02a276c6ee8f2a08f743820ca839a4fdc50259c953b795:log:21', 'hash': '0x90dafe82838ffa681e02a276c6ee8f2a08f743820ca839a4fdc50259c953b795', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:00:36.000Z'}}, {'blockNum': '0x4b6a34', 'uniqueId': '0xfce8b47af0c8f649aa33d39aeed04deab218d1d788d5d3f4a40796dd685bf0cb:log:35', 'hash': '0xfce8b47af0c8f649aa33d39aeed04deab218d1d788d5d3f4a40796dd685bf0cb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x088ce77bd4f83c0062dac606959a4bca9e9de184', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:01:54.000Z'}}, {'blockNum': '0x4b6a37', 'uniqueId': '0x1c12a56413852df24fd111ac91ab62c1ec45efb8730ca923d4ada7ce58e65611:log:17', 'hash': '0x1c12a56413852df24fd111ac91ab62c1ec45efb8730ca923d4ada7ce58e65611', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 23.23906162992774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014281bb6d3540d0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:02:48.000Z'}}, {'blockNum': '0x4b6a37', 'uniqueId': '0x1c12a56413852df24fd111ac91ab62c1ec45efb8730ca923d4ada7ce58e65611:log:20', 'hash': '0x1c12a56413852df24fd111ac91ab62c1ec45efb8730ca923d4ada7ce58e65611', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 23.23906162992774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014281bb6d3540d0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:02:48.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0xc55b262f5a86be612f0b47afc777fb357ae245fa8b8af10895d9585ba9a2a3d9:log:13', 'hash': '0xc55b262f5a86be612f0b47afc777fb357ae245fa8b8af10895d9585ba9a2a3d9', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 183.86373571546335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f79f357b3c7ecb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0xc55b262f5a86be612f0b47afc777fb357ae245fa8b8af10895d9585ba9a2a3d9:log:15', 'hash': '0xc55b262f5a86be612f0b47afc777fb357ae245fa8b8af10895d9585ba9a2a3d9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 183.86373571546335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f79f357b3c7ecb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0x17fcbfdbccfdc93cbea0705d74b8dbb7c7fb951c8fd53271e5f65ddf52cf14b2:log:39', 'hash': '0x17fcbfdbccfdc93cbea0705d74b8dbb7c7fb951c8fd53271e5f65ddf52cf14b2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1294.8836845831715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46321efa8a64e77886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0x17fcbfdbccfdc93cbea0705d74b8dbb7c7fb951c8fd53271e5f65ddf52cf14b2:log:41', 'hash': '0x17fcbfdbccfdc93cbea0705d74b8dbb7c7fb951c8fd53271e5f65ddf52cf14b2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1294.8836845831715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46321efa8a64e77886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0x8615f5191abadcb31efd71d7eca333ea25fb57431b8d96db43c1f1a1772c0294:log:70', 'hash': '0x8615f5191abadcb31efd71d7eca333ea25fb57431b8d96db43c1f1a1772c0294', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 258.6190650445949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e050f7d6f7eb85d1e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3c', 'uniqueId': '0x8615f5191abadcb31efd71d7eca333ea25fb57431b8d96db43c1f1a1772c0294:log:73', 'hash': '0x8615f5191abadcb31efd71d7eca333ea25fb57431b8d96db43c1f1a1772c0294', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 258.6190650445949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e050f7d6f7eb85d1e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:03:54.000Z'}}, {'blockNum': '0x4b6a3e', 'uniqueId': '0x93daeb7d22cab94ab291119d9ce52219373b0646e4381f28d842d8886a55260b:log:46', 'hash': '0x93daeb7d22cab94ab291119d9ce52219373b0646e4381f28d842d8886a55260b', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4633bc36cbc2dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:04:28.000Z'}}, {'blockNum': '0x4b6a42', 'uniqueId': '0x78f51212ca37c8970a099ccad06da22c3713eed8c49051f3b4ca1497c511f57c:log:74', 'hash': '0x78f51212ca37c8970a099ccad06da22c3713eed8c49051f3b4ca1497c511f57c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 62.83076064170626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0367f3b3e9787f0765', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:04:57.000Z'}}, {'blockNum': '0x4b6a42', 'uniqueId': '0x78f51212ca37c8970a099ccad06da22c3713eed8c49051f3b4ca1497c511f57c:log:77', 'hash': '0x78f51212ca37c8970a099ccad06da22c3713eed8c49051f3b4ca1497c511f57c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 62.83076064170626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0367f3b3e9787f0765', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:04:57.000Z'}}, {'blockNum': '0x4b6a49', 'uniqueId': '0x69f0777980428a7f43a9c674008945dbab62ad1242f48c0c631f3d7433abc2a0:log:35', 'hash': '0x69f0777980428a7f43a9c674008945dbab62ad1242f48c0c631f3d7433abc2a0', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1880.6263834247286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x65f2ef13bd3a84d2d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:07:07.000Z'}}, {'blockNum': '0x4b6a49', 'uniqueId': '0x69f0777980428a7f43a9c674008945dbab62ad1242f48c0c631f3d7433abc2a0:log:37', 'hash': '0x69f0777980428a7f43a9c674008945dbab62ad1242f48c0c631f3d7433abc2a0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1880.6263834247286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x65f2ef13bd3a84d2d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:07:07.000Z'}}, {'blockNum': '0x4b6a4c', 'uniqueId': '0x29fd26c0c704a13c198b0448239619decb7dcb74a6ea834a79f454c473895c78:log:25', 'hash': '0x29fd26c0c704a13c198b0448239619decb7dcb74a6ea834a79f454c473895c78', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85ca615bf9c0100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:08:16.000Z'}}, {'blockNum': '0x4b6a4f', 'uniqueId': '0x41b60689beb7c893a8d3cf9a501796f5c055ff3b42cba9a9986e6d4459bd24c5:log:62', 'hash': '0x41b60689beb7c893a8d3cf9a501796f5c055ff3b42cba9a9986e6d4459bd24c5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 17.028077761497848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xec4fe28165ced5d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:08:49.000Z'}}, {'blockNum': '0x4b6a4f', 'uniqueId': '0x41b60689beb7c893a8d3cf9a501796f5c055ff3b42cba9a9986e6d4459bd24c5:log:65', 'hash': '0x41b60689beb7c893a8d3cf9a501796f5c055ff3b42cba9a9986e6d4459bd24c5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x38a3fc625df834dd34e8ede60e10cd3024a6650e', 'value': 17.028077761497848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xec4fe28165ced5d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:08:49.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0x168b07bf96ecfc74ca8572879931bde2708883ca978b1b0f99486bdb09e60f7b:log:2', 'hash': '0x168b07bf96ecfc74ca8572879931bde2708883ca978b1b0f99486bdb09e60f7b', 'from': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1475.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ff7ae0e5f91ba0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0x4d827cadfd09c93ae0c24fd39a19fe01b0403860292c85d55e52ed2a830dcca9:log:5', 'hash': '0x4d827cadfd09c93ae0c24fd39a19fe01b0403860292c85d55e52ed2a830dcca9', 'from': '0x49da3e4a9fc77d6ec54bcac841992f280e4f8136', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10625.039813474717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023ffc0c487b4f315651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0xa6362b942a40d521162811b3bec544a0cc1d9c61cb4d9fa4c2d49c0b31f62cb4:log:6', 'hash': '0xa6362b942a40d521162811b3bec544a0cc1d9c61cb4d9fa4c2d49c0b31f62cb4', 'from': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d43f3ebfafb2c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0xabe50f5c8b3be8e8fba0347f05823689f1104768915b9ee14a995b532b05c883:log:12', 'hash': '0xabe50f5c8b3be8e8fba0347f05823689f1104768915b9ee14a995b532b05c883', 'from': '0x6fffd968df5ea5557e0c180e07361eebda6dff75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 464.58072075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x192f5a481166b2cc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0x1dd8e651186260160eab9328a5ef9da4a0ad15ecc31a4e41273c39452fc3b3e7:log:38', 'hash': '0x1dd8e651186260160eab9328a5ef9da4a0ad15ecc31a4e41273c39452fc3b3e7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 556.4840416540088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e2ac4778168e0d655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a57', 'uniqueId': '0x1dd8e651186260160eab9328a5ef9da4a0ad15ecc31a4e41273c39452fc3b3e7:log:41', 'hash': '0x1dd8e651186260160eab9328a5ef9da4a0ad15ecc31a4e41273c39452fc3b3e7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 556.4840416540088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e2ac4778168e0d655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:10:13.000Z'}}, {'blockNum': '0x4b6a5a', 'uniqueId': '0x667295e541506b4d75776b0a48ff0422e8d6dc0f295b640bbb131a73ad629794:log:64', 'hash': '0x667295e541506b4d75776b0a48ff0422e8d6dc0f295b640bbb131a73ad629794', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.321914081018405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x659caa1043086049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:11:17.000Z'}}, {'blockNum': '0x4b6a5a', 'uniqueId': '0x667295e541506b4d75776b0a48ff0422e8d6dc0f295b640bbb131a73ad629794:log:67', 'hash': '0x667295e541506b4d75776b0a48ff0422e8d6dc0f295b640bbb131a73ad629794', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.321914081018405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x659caa1043086049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:11:17.000Z'}}, {'blockNum': '0x4b6a5b', 'uniqueId': '0xc8173a2d027db71618a32ce05e7b4cdf26a4f855cc7ca97b29e79192a0df0eb3:log:26', 'hash': '0xc8173a2d027db71618a32ce05e7b4cdf26a4f855cc7ca97b29e79192a0df0eb3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 362.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a6b2b564871a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:12:22.000Z'}}, {'blockNum': '0x4b6a5b', 'uniqueId': '0x01924ac2c60e8e9d2e617d7aba3190aab825f462d430133ee2cb9626b2c41d01:log:63', 'hash': '0x01924ac2c60e8e9d2e617d7aba3190aab825f462d430133ee2cb9626b2c41d01', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xf08906346ef723390e46d409e244d5c9074e1856', 'value': 1.42401136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c31ac984ebc000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:12:22.000Z'}}, {'blockNum': '0x4b6a5c', 'uniqueId': '0xa250063188d3acd7738f5d9927c3174362c03fac800b2a8a3d04424f86340cfd:log:0', 'hash': '0xa250063188d3acd7738f5d9927c3174362c03fac800b2a8a3d04424f86340cfd', 'from': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5596.528655959333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012f636fe8ea56681b19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:12:59.000Z'}}, {'blockNum': '0x4b6a5d', 'uniqueId': '0xe15c619cf7c9f6d12662f7a95669e50b9a62a6573b2ff041783c2fbcc6beb84e:log:34', 'hash': '0xe15c619cf7c9f6d12662f7a95669e50b9a62a6573b2ff041783c2fbcc6beb84e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:13:17.000Z'}}, {'blockNum': '0x4b6a5e', 'uniqueId': '0x918702472aa37e725e9b65e5df7d536bf61f0d22c34023843e9ba6432c55a042:log:56', 'hash': '0x918702472aa37e725e9b65e5df7d536bf61f0d22c34023843e9ba6432c55a042', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 236.491074882241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd1f9139f3a47c36b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:13:25.000Z'}}, {'blockNum': '0x4b6a5e', 'uniqueId': '0x918702472aa37e725e9b65e5df7d536bf61f0d22c34023843e9ba6432c55a042:log:59', 'hash': '0x918702472aa37e725e9b65e5df7d536bf61f0d22c34023843e9ba6432c55a042', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 236.491074882241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd1f9139f3a47c36b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:13:25.000Z'}}, {'blockNum': '0x4b6a64', 'uniqueId': '0x882a7c0a769f9166805d59bc7aa22475afc28d3261d3eb6da89119fc00351f83:log:22', 'hash': '0x882a7c0a769f9166805d59bc7aa22475afc28d3261d3eb6da89119fc00351f83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'value': 1061.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x398b4591ee95260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:14:58.000Z'}}, {'blockNum': '0x4b6a6b', 'uniqueId': '0x5e52b327a5e8954b41b47f59ad39daf6515531900d751d52fe099572770fd34e:log:2', 'hash': '0x5e52b327a5e8954b41b47f59ad39daf6515531900d751d52fe099572770fd34e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe9e8709d3215310075d67e3ed32a380ccf451c8', 'value': 106226.75042193405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x167e904d474ddf4bf96a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:16:46.000Z'}}, {'blockNum': '0x4b6a6e', 'uniqueId': '0x3c9790755a1d50015f4d7d3b733ac3308e2cd37ba2d9264a43e362a54ccb3b2f:log:3', 'hash': '0x3c9790755a1d50015f4d7d3b733ac3308e2cd37ba2d9264a43e362a54ccb3b2f', 'from': '0xc9308c224a46aec3d232f40869034f2c93f339c1', 'to': '0x66e9a02f07421ae1e8532c6186abc409906ad8f6', 'value': 6.80547746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5e71e9b1623a4800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:20.000Z'}}, {'blockNum': '0x4b6a6e', 'uniqueId': '0x208d2b629f753be4c2ff71736733025400cc560cb2a4ac00f0b58a0f4e0ba87e:log:88', 'hash': '0x208d2b629f753be4c2ff71736733025400cc560cb2a4ac00f0b58a0f4e0ba87e', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 788.6681073042743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ac0f7f90ceeeccaee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:20.000Z'}}, {'blockNum': '0x4b6a6e', 'uniqueId': '0x208d2b629f753be4c2ff71736733025400cc560cb2a4ac00f0b58a0f4e0ba87e:log:90', 'hash': '0x208d2b629f753be4c2ff71736733025400cc560cb2a4ac00f0b58a0f4e0ba87e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 788.6681073042743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ac0f7f90ceeeccaee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:20.000Z'}}, {'blockNum': '0x4b6a6f', 'uniqueId': '0x2939c478923fe7675df5e4fb44c5096e26556a9168c731630e595f246759f38f:log:26', 'hash': '0x2939c478923fe7675df5e4fb44c5096e26556a9168c731630e595f246759f38f', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 322.0186680064922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1174e8206c836a1266', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:28.000Z'}}, {'blockNum': '0x4b6a6f', 'uniqueId': '0x2939c478923fe7675df5e4fb44c5096e26556a9168c731630e595f246759f38f:log:28', 'hash': '0x2939c478923fe7675df5e4fb44c5096e26556a9168c731630e595f246759f38f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 322.0186680064922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1174e8206c836a1266', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:18:28.000Z'}}, {'blockNum': '0x4b6a75', 'uniqueId': '0x1288e3408f7e9dbfc2f982877faa71b32f97797d70e30edff8ffdccd0ea86ff5:log:23', 'hash': '0x1288e3408f7e9dbfc2f982877faa71b32f97797d70e30edff8ffdccd0ea86ff5', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 258.51497332292325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e039dae90f06cc545', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:03.000Z'}}, {'blockNum': '0x4b6a75', 'uniqueId': '0x1288e3408f7e9dbfc2f982877faa71b32f97797d70e30edff8ffdccd0ea86ff5:log:25', 'hash': '0x1288e3408f7e9dbfc2f982877faa71b32f97797d70e30edff8ffdccd0ea86ff5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 258.51497332292325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e039dae90f06cc545', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:03.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0xb8fcfc8d90d976ed5230b6cfe14dd1623f900eeb70f1cdbc2c4414d71256589d:log:7', 'hash': '0xb8fcfc8d90d976ed5230b6cfe14dd1623f900eeb70f1cdbc2c4414d71256589d', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 362.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13a6b2b564871a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0xe10fcb07041fcd70b68921b6ecedde84b3f0d11634964e8e127f5d5af835f6cc:log:9', 'hash': '0xe10fcb07041fcd70b68921b6ecedde84b3f0d11634964e8e127f5d5af835f6cc', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454:log:55', 'hash': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454:log:58', 'hash': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a77', 'uniqueId': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454:log:59', 'hash': '0x599ed197f8119bfd7a8b2ae7b8ea002109c4a7e31c3748d2cca070e729af1454', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:19:34.000Z'}}, {'blockNum': '0x4b6a7a', 'uniqueId': '0x864c49c10bf9143afe1cbfa1b24e0623480ec0d333d5a51eb124542cfea323a1:log:12', 'hash': '0x864c49c10bf9143afe1cbfa1b24e0623480ec0d333d5a51eb124542cfea323a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2466.62303951078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85b74569b4c25b39ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:20:06.000Z'}}, {'blockNum': '0x4b6a7a', 'uniqueId': '0x864c49c10bf9143afe1cbfa1b24e0623480ec0d333d5a51eb124542cfea323a1:log:14', 'hash': '0x864c49c10bf9143afe1cbfa1b24e0623480ec0d333d5a51eb124542cfea323a1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2466.62303951078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85b74569b4c25b39ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:20:06.000Z'}}, {'blockNum': '0x4b6a7c', 'uniqueId': '0xdf5d0001311cd5b8aba99e8952763ee874cbf2332f677ec047e3cf104e1a8e3a:log:38', 'hash': '0xdf5d0001311cd5b8aba99e8952763ee874cbf2332f677ec047e3cf104e1a8e3a', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85bc80a54618ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:20:34.000Z'}}, {'blockNum': '0x4b6a86', 'uniqueId': '0x92da5c720a2e2d04f3ca580db12b6333fed0afaa0747164279edb7c45aa9ff75:log:5', 'hash': '0x92da5c720a2e2d04f3ca580db12b6333fed0afaa0747164279edb7c45aa9ff75', 'from': '0x379a2e3ff2199b974215d6428a057d48f3b952eb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1061.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x398b4591ee95260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:23:23.000Z'}}, {'blockNum': '0x4b6a88', 'uniqueId': '0xb725cc577c034c07505300f027d90c28a2d0fe26af0544c6b2129efd5cfcd3b3:log:4', 'hash': '0xb725cc577c034c07505300f027d90c28a2d0fe26af0544c6b2129efd5cfcd3b3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 24998.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054b2be0e645428a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:23:34.000Z'}}, {'blockNum': '0x4b6a8d', 'uniqueId': '0xbfd2f75af5701b252f0d405cff9939b70cab42f6337b32fa9bfbff1b79fd5b65:log:30', 'hash': '0xbfd2f75af5701b252f0d405cff9939b70cab42f6337b32fa9bfbff1b79fd5b65', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 248.34049781480695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d766aaeff8b3d86b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:24:31.000Z'}}, {'blockNum': '0x4b6a8d', 'uniqueId': '0xbfd2f75af5701b252f0d405cff9939b70cab42f6337b32fa9bfbff1b79fd5b65:log:32', 'hash': '0xbfd2f75af5701b252f0d405cff9939b70cab42f6337b32fa9bfbff1b79fd5b65', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 248.34049781480695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d766aaeff8b3d86b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:24:31.000Z'}}, {'blockNum': '0x4b6a8e', 'uniqueId': '0xf7fc5bd784d0d52d34c293581abf505104c8f28b6690826d993d02ce86bbdf4b:log:14', 'hash': '0xf7fc5bd784d0d52d34c293581abf505104c8f28b6690826d993d02ce86bbdf4b', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x13a6c80ff3ddf7b276cf19c951f2649c789df0bb', 'value': 4.30777887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3bc84e0f05489c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:24:44.000Z'}}, {'blockNum': '0x4b6a92', 'uniqueId': '0x5b848dbf219ae36b9cd4c21dc3c47053f56d47af8548ff3184067244f43bb697:log:4', 'hash': '0x5b848dbf219ae36b9cd4c21dc3c47053f56d47af8548ff3184067244f43bb697', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xa93bce2ecd560d5dce5d60724a905672bf931cd7', 'value': 7.56281401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68f48345c865c400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:25:18.000Z'}}, {'blockNum': '0x4b6a97', 'uniqueId': '0x96a3220aca319782e96a71c30245ed3d554d4c56e91bbbcc37aad5f9e747d65b:log:13', 'hash': '0x96a3220aca319782e96a71c30245ed3d554d4c56e91bbbcc37aad5f9e747d65b', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85bc80a54618ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:27:13.000Z'}}, {'blockNum': '0x4b6a99', 'uniqueId': '0xd0cfc5f6e531811b89241c03ba8432c6bf0e370754693ba477616000427589cf:log:132', 'hash': '0xd0cfc5f6e531811b89241c03ba8432c6bf0e370754693ba477616000427589cf', 'from': '0x15f9e2f31c7148ee9fa182a5d81d1338d5ea8d64', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:27:33.000Z'}}, {'blockNum': '0x4b6a9c', 'uniqueId': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0:log:5', 'hash': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:28:02.000Z'}}, {'blockNum': '0x4b6a9c', 'uniqueId': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0:log:8', 'hash': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:28:02.000Z'}}, {'blockNum': '0x4b6a9c', 'uniqueId': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0:log:9', 'hash': '0x810925c0901dbd1131c9a27615e4107aa8ad8c10891306abe3a6f4a6a8e0a1e0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:28:02.000Z'}}, {'blockNum': '0x4b6a9e', 'uniqueId': '0x4368e7dfdde17429fd9d558d8fad413db179466a97272e42e659d3877d13b8ed:log:62', 'hash': '0x4368e7dfdde17429fd9d558d8fad413db179466a97272e42e659d3877d13b8ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13181.192056957818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ca8dc952dac33260fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:29:14.000Z'}}, {'blockNum': '0x4b6a9e', 'uniqueId': '0x4368e7dfdde17429fd9d558d8fad413db179466a97272e42e659d3877d13b8ed:log:64', 'hash': '0x4368e7dfdde17429fd9d558d8fad413db179466a97272e42e659d3877d13b8ed', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'value': 13181.192056957818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ca8dc952dac33260fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:29:14.000Z'}}, {'blockNum': '0x4b6aa5', 'uniqueId': '0x0f0a504fa4af6c12f2a994d633e342fbd47ab3acb0f7b011b6d1787287cbf1a4:log:2', 'hash': '0x0f0a504fa4af6c12f2a994d633e342fbd47ab3acb0f7b011b6d1787287cbf1a4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:31:40.000Z'}}, {'blockNum': '0x4b6aa9', 'uniqueId': '0x7eccc0442fc547571d7a3af49526f5d8876314d440ac0ed8ddeadfac0df983c3:log:33', 'hash': '0x7eccc0442fc547571d7a3af49526f5d8876314d440ac0ed8ddeadfac0df983c3', 'from': '0x00a83e95a30765e4938ad86370b25f941a3caa86', 'to': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'value': 13181.373107864963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ca904c8bb201de8232', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:32:53.000Z'}}, {'blockNum': '0x4b6ab9', 'uniqueId': '0x272477c8e322516476ee3d8bf9d43b6c6a8e5a3eb4669b49d9f43eb2dee154b3:log:72', 'hash': '0x272477c8e322516476ee3d8bf9d43b6c6a8e5a3eb4669b49d9f43eb2dee154b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 64.39088514318317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037d9a60e15469043e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:37:39.000Z'}}, {'blockNum': '0x4b6ab9', 'uniqueId': '0x272477c8e322516476ee3d8bf9d43b6c6a8e5a3eb4669b49d9f43eb2dee154b3:log:75', 'hash': '0x272477c8e322516476ee3d8bf9d43b6c6a8e5a3eb4669b49d9f43eb2dee154b3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 64.39088514318317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037d9a60e15469043e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:37:39.000Z'}}, {'blockNum': '0x4b6ac4', 'uniqueId': '0xcac212e7f20c2b004311de082190d2f62d543a2213b6c8d6d147d66906b709f2:log:7', 'hash': '0xcac212e7f20c2b004311de082190d2f62d543a2213b6c8d6d147d66906b709f2', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102e85087aae1a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:41:00.000Z'}}, {'blockNum': '0x4b6ac9', 'uniqueId': '0xebabecdaa6b511d843d1e660d63e954451081f7939b9040734d8064e9aebffb3:log:43', 'hash': '0xebabecdaa6b511d843d1e660d63e954451081f7939b9040734d8064e9aebffb3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9bced9cffb39d97e51b86917879f910f12ac0cad', 'value': 8.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f610f70ed20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:42:30.000Z'}}, {'blockNum': '0x4b6ad5', 'uniqueId': '0xc6ce2fb052386dcdeff36459a4e80d2c0fd0c829e82ef2c5bbd6b1287f9618b2:log:21', 'hash': '0xc6ce2fb052386dcdeff36459a4e80d2c0fd0c829e82ef2c5bbd6b1287f9618b2', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0xc903073e12ad8d0a5157dbf7235b23d46f212b84', 'value': 1.0351633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e5da3896d056800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:44:11.000Z'}}, {'blockNum': '0x4b6ad8', 'uniqueId': '0xc3158f9feea535f0c5f08cc9d1f914a23a74daf8b18dbcf189539974cbe99acb:log:2', 'hash': '0xc3158f9feea535f0c5f08cc9d1f914a23a74daf8b18dbcf189539974cbe99acb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x35c6a5dd66b836409b716609d2ead0aa1fe6d7ab', 'value': 7.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63eb89da4ed00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:44:35.000Z'}}, {'blockNum': '0x4b6adb', 'uniqueId': '0xe7f23bb64819ddfa9ac5336ead1eef1e0bde302393665d1a000de93f5ecab0ef:log:35', 'hash': '0xe7f23bb64819ddfa9ac5336ead1eef1e0bde302393665d1a000de93f5ecab0ef', 'from': '0xec64bd6efff779637f10b58109ff74e4f4212918', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 23.296240277408963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01434cdf1a811bd84c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:45:03.000Z'}}, {'blockNum': '0x4b6adb', 'uniqueId': '0xe7f23bb64819ddfa9ac5336ead1eef1e0bde302393665d1a000de93f5ecab0ef:log:37', 'hash': '0xe7f23bb64819ddfa9ac5336ead1eef1e0bde302393665d1a000de93f5ecab0ef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 23.296240277408963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01434cdf1a811bd84c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:45:03.000Z'}}, {'blockNum': '0x4b6aeb', 'uniqueId': '0x9feb8c5d40e870a4f01be5ff86273f97bbc35b041fddad236663b1178d153a2a:log:1', 'hash': '0x9feb8c5d40e870a4f01be5ff86273f97bbc35b041fddad236663b1178d153a2a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa062f873a8830e70367e88b1646abe0be41dedd5', 'value': 4.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3997c30329df0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:48:50.000Z'}}, {'blockNum': '0x4b6aec', 'uniqueId': '0xa50d1a4245b448ebcd156951fd329738b03f4cce6d9aaacac940e66d5c9267a6:log:0', 'hash': '0xa50d1a4245b448ebcd156951fd329738b03f4cce6d9aaacac940e66d5c9267a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x872f071574528c5900a058cb17e99a211f298e8c', 'value': 600.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2088c11d44deaf0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:49:04.000Z'}}, {'blockNum': '0x4b6aee', 'uniqueId': '0x1216b9781d306a57feccc10dd914079606b7411a552e0476fbb14e0315711a7d:log:6', 'hash': '0x1216b9781d306a57feccc10dd914079606b7411a552e0476fbb14e0315711a7d', 'from': '0xc903073e12ad8d0a5157dbf7235b23d46f212b84', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1.0351633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e5da3896d056800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:49:31.000Z'}}, {'blockNum': '0x4b6aee', 'uniqueId': '0x2b34a02b3cbe0fffa706bbdfbd7313d0c89aef0c4db65bd75395bbd16ce5cb7c:log:48', 'hash': '0x2b34a02b3cbe0fffa706bbdfbd7313d0c89aef0c4db65bd75395bbd16ce5cb7c', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 636.2432116925834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x227da5f612ca17a046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:49:31.000Z'}}, {'blockNum': '0x4b6aee', 'uniqueId': '0x2b34a02b3cbe0fffa706bbdfbd7313d0c89aef0c4db65bd75395bbd16ce5cb7c:log:50', 'hash': '0x2b34a02b3cbe0fffa706bbdfbd7313d0c89aef0c4db65bd75395bbd16ce5cb7c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 636.2432116925834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x227da5f612ca17a046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:49:31.000Z'}}, {'blockNum': '0x4b6af1', 'uniqueId': '0x52121ede053ac2b9366edecccbefbb47d92ca0dddd5d67bd9782c2a24137f494:log:154', 'hash': '0x52121ede053ac2b9366edecccbefbb47d92ca0dddd5d67bd9782c2a24137f494', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 92.93414494423652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0509b86870c9e1d5be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:50:08.000Z'}}, {'blockNum': '0x4b6af1', 'uniqueId': '0x52121ede053ac2b9366edecccbefbb47d92ca0dddd5d67bd9782c2a24137f494:log:157', 'hash': '0x52121ede053ac2b9366edecccbefbb47d92ca0dddd5d67bd9782c2a24137f494', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 92.93414494423652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0509b86870c9e1d5be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:50:08.000Z'}}, {'blockNum': '0x4b6af4', 'uniqueId': '0x4ce523b913d98ab9e4092abd44960e9dfec7ef683ae84d8523eb9562239bd315:log:6', 'hash': '0x4ce523b913d98ab9e4092abd44960e9dfec7ef683ae84d8523eb9562239bd315', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5694344318d9265ccc18cf27371aedf6720dc675', 'value': 18.99283973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0107941f1b26937000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:51:24.000Z'}}, {'blockNum': '0x4b6afb', 'uniqueId': '0xcbbadaacfd777cb846c7a3ea17a707b505a7df6d1f2dfac6a79fa6ced538790c:log:2', 'hash': '0xcbbadaacfd777cb846c7a3ea17a707b505a7df6d1f2dfac6a79fa6ced538790c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa062f873a8830e70367e88b1646abe0be41dedd5', 'value': 390.50275488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152b507a9751d68000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:52:51.000Z'}}, {'blockNum': '0x4b6afb', 'uniqueId': '0xff6a96e9f4189dc3530fec29b05f568b13353233de4f43aedb81a4d499fd291c:log:9', 'hash': '0xff6a96e9f4189dc3530fec29b05f568b13353233de4f43aedb81a4d499fd291c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1304.4772641823317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b742385b69459c8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:52:51.000Z'}}, {'blockNum': '0x4b6afb', 'uniqueId': '0xff6a96e9f4189dc3530fec29b05f568b13353233de4f43aedb81a4d499fd291c:log:11', 'hash': '0xff6a96e9f4189dc3530fec29b05f568b13353233de4f43aedb81a4d499fd291c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1304.4772641823317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b742385b69459c8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:52:51.000Z'}}, {'blockNum': '0x4b6afe', 'uniqueId': '0x12b19179d2afb2ec235027e498b771877b266693829f1c4b7aad9ef7b8b94472:log:32', 'hash': '0x12b19179d2afb2ec235027e498b771877b266693829f1c4b7aad9ef7b8b94472', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:54:27.000Z'}}, {'blockNum': '0x4b6b01', 'uniqueId': '0x41d96afc0b01dc470b00e38004fda4604dc30da0f2743509d5ac4b4321015d56:log:52', 'hash': '0x41d96afc0b01dc470b00e38004fda4604dc30da0f2743509d5ac4b4321015d56', 'from': '0x24082f1de7a54e8f150541c8c615cb1dee5553ba', 'to': '0xf07232bc85d995c32c1edf1c985c84a8b7b0ded7', 'value': 21922.37310786496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04a46a0acfe47b528232', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:55:26.000Z'}}, {'blockNum': '0x4b6b08', 'uniqueId': '0x54f227d0089aa225ab5e0447b9a019a28b839ba345fba4335e7c97912e168143:log:18', 'hash': '0x54f227d0089aa225ab5e0447b9a019a28b839ba345fba4335e7c97912e168143', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 651.4928704057832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x235147a1e07c4ebc1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:57:29.000Z'}}, {'blockNum': '0x4b6b08', 'uniqueId': '0x54f227d0089aa225ab5e0447b9a019a28b839ba345fba4335e7c97912e168143:log:20', 'hash': '0x54f227d0089aa225ab5e0447b9a019a28b839ba345fba4335e7c97912e168143', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 651.4928704057832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x235147a1e07c4ebc1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:57:29.000Z'}}, {'blockNum': '0x4b6b0b', 'uniqueId': '0xdaf473bd40e06b71fcaa2811fd3da63f0d14429a5ff7584c13b38353e5f82dc0:log:30', 'hash': '0xdaf473bd40e06b71fcaa2811fd3da63f0d14429a5ff7584c13b38353e5f82dc0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2926.3104279798035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9ea2b715fd9180de4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:57:56.000Z'}}, {'blockNum': '0x4b6b0b', 'uniqueId': '0xdaf473bd40e06b71fcaa2811fd3da63f0d14429a5ff7584c13b38353e5f82dc0:log:32', 'hash': '0xdaf473bd40e06b71fcaa2811fd3da63f0d14429a5ff7584c13b38353e5f82dc0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2926.3104279798035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9ea2b715fd9180de4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T20:57:56.000Z'}}, {'blockNum': '0x4b6b19', 'uniqueId': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d:log:142', 'hash': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d', 'from': '0x004a8d75917ce886c0012f5cced092ddd85d01ef', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:04.000Z'}}, {'blockNum': '0x4b6b19', 'uniqueId': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d:log:145', 'hash': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:04.000Z'}}, {'blockNum': '0x4b6b19', 'uniqueId': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d:log:146', 'hash': '0xd59d3ea159d15b9868d698d16764e47615db4aaa7dae7d42f46142cef254354d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:04.000Z'}}, {'blockNum': '0x4b6b1d', 'uniqueId': '0xda179e8ff6fa68a4021df7baf5e32b25862c74b11d64cc1536a4f16db99b1ffc:log:27', 'hash': '0xda179e8ff6fa68a4021df7baf5e32b25862c74b11d64cc1536a4f16db99b1ffc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 33.610690492286295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d27128ecf852e1de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:46.000Z'}}, {'blockNum': '0x4b6b1d', 'uniqueId': '0xda179e8ff6fa68a4021df7baf5e32b25862c74b11d64cc1536a4f16db99b1ffc:log:30', 'hash': '0xda179e8ff6fa68a4021df7baf5e32b25862c74b11d64cc1536a4f16db99b1ffc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 33.610690492286295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01d27128ecf852e1de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:01:46.000Z'}}, {'blockNum': '0x4b6b20', 'uniqueId': '0x924a7ff942c8d5932017c6c7bc5f5f189f84bca1aa8b70a1d8fef180fb19386f:log:36', 'hash': '0x924a7ff942c8d5932017c6c7bc5f5f189f84bca1aa8b70a1d8fef180fb19386f', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:02:27.000Z'}}, {'blockNum': '0x4b6b2a', 'uniqueId': '0x1d24ee5e043e10877b92ba948a4fb186082b378035f93b398731927f4fab737a:log:55', 'hash': '0x1d24ee5e043e10877b92ba948a4fb186082b378035f93b398731927f4fab737a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2925.4585866337334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e96e4bcccabfe7130', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:01.000Z'}}, {'blockNum': '0x4b6b2a', 'uniqueId': '0x1d24ee5e043e10877b92ba948a4fb186082b378035f93b398731927f4fab737a:log:57', 'hash': '0x1d24ee5e043e10877b92ba948a4fb186082b378035f93b398731927f4fab737a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2925.4585866337334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e96e4bcccabfe7130', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:01.000Z'}}, {'blockNum': '0x4b6b2a', 'uniqueId': '0x274b8b37a5aef66bbe965fdc35572605a5e7c3314048539d34c4123b2a2fe181:log:68', 'hash': '0x274b8b37a5aef66bbe965fdc35572605a5e7c3314048539d34c4123b2a2fe181', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x6b0858d65218192b21e3a506a5620fc9a32257ba', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2241af62c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:01.000Z'}}, {'blockNum': '0x4b6b2b', 'uniqueId': '0x342be4941748f721222f218680dab1baa9b60ad819070161fd9378f84450f467:log:44', 'hash': '0x342be4941748f721222f218680dab1baa9b60ad819070161fd9378f84450f467', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.624747925610253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf58ac0cba14732', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:52.000Z'}}, {'blockNum': '0x4b6b2b', 'uniqueId': '0x342be4941748f721222f218680dab1baa9b60ad819070161fd9378f84450f467:log:47', 'hash': '0x342be4941748f721222f218680dab1baa9b60ad819070161fd9378f84450f467', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 14.624747925610253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf58ac0cba14732', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:52.000Z'}}, {'blockNum': '0x4b6b2b', 'uniqueId': '0x6a6018edb0184fecf549a4a868184d01038c7bb11ebc6a10b93acf91788f699f:log:69', 'hash': '0x6a6018edb0184fecf549a4a868184d01038c7bb11ebc6a10b93acf91788f699f', 'from': '0x70fd01e9492cf089999c2d33063b8fe78a6267b8', 'to': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'value': 3.465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3016272442ba8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:05:52.000Z'}}, {'blockNum': '0x4b6b2e', 'uniqueId': '0x9a5aa17e76cea8c1efca3ee1824004a0ef5f5a567241672354b33b22d67d573c:log:17', 'hash': '0x9a5aa17e76cea8c1efca3ee1824004a0ef5f5a567241672354b33b22d67d573c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.624722608383669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf573ba2b5532b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:06:40.000Z'}}, {'blockNum': '0x4b6b2e', 'uniqueId': '0x9a5aa17e76cea8c1efca3ee1824004a0ef5f5a567241672354b33b22d67d573c:log:20', 'hash': '0x9a5aa17e76cea8c1efca3ee1824004a0ef5f5a567241672354b33b22d67d573c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 14.624722608383669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf573ba2b5532b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:06:40.000Z'}}, {'blockNum': '0x4b6b31', 'uniqueId': '0x04c9b67b4b7e47b009d348e7756e2a251f7881694b5667c51777a17f9d6ec579:log:13', 'hash': '0x04c9b67b4b7e47b009d348e7756e2a251f7881694b5667c51777a17f9d6ec579', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 212.0556328554104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7edcf290276422f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:07:31.000Z'}}, {'blockNum': '0x4b6b31', 'uniqueId': '0x04c9b67b4b7e47b009d348e7756e2a251f7881694b5667c51777a17f9d6ec579:log:16', 'hash': '0x04c9b67b4b7e47b009d348e7756e2a251f7881694b5667c51777a17f9d6ec579', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 212.0556328554104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7edcf290276422f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:07:31.000Z'}}, {'blockNum': '0x4b6b33', 'uniqueId': '0x23a9d22ad38c96b28f2ecf9927be579343018bb050b4bc1f97324f5f562071a9:log:18', 'hash': '0x23a9d22ad38c96b28f2ecf9927be579343018bb050b4bc1f97324f5f562071a9', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x070e6f41e3f256e8f6adea7a00c64f9bf36d6a72', 'value': 3.64495089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32957785ce31a400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:07:51.000Z'}}, {'blockNum': '0x4b6b34', 'uniqueId': '0xb59afabd661a8f14b19b41763c578b15aefac8739bac1ea7f7f05566b9ad469c:log:95', 'hash': '0xb59afabd661a8f14b19b41763c578b15aefac8739bac1ea7f7f05566b9ad469c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2924.36237968687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e87ae3a63a7e819b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:08:26.000Z'}}, {'blockNum': '0x4b6b34', 'uniqueId': '0xb59afabd661a8f14b19b41763c578b15aefac8739bac1ea7f7f05566b9ad469c:log:97', 'hash': '0xb59afabd661a8f14b19b41763c578b15aefac8739bac1ea7f7f05566b9ad469c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2924.36237968687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e87ae3a63a7e819b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:08:26.000Z'}}, {'blockNum': '0x4b6b35', 'uniqueId': '0x50a3a18cbc6c2c35397a92fd3e827a6ef1464331f816a5dc27ff61cd8a0324f8:log:6', 'hash': '0x50a3a18cbc6c2c35397a92fd3e827a6ef1464331f816a5dc27ff61cd8a0324f8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 3.64495089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32957785ce31a400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:08:48.000Z'}}, {'blockNum': '0x4b6b42', 'uniqueId': '0x576962d87cc2e7f0760cb2e0ecfe023bcff27ac3646689ba0af477378d2b6184:log:47', 'hash': '0x576962d87cc2e7f0760cb2e0ecfe023bcff27ac3646689ba0af477378d2b6184', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2923.3504876343363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e79a343edc1920288', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:12:11.000Z'}}, {'blockNum': '0x4b6b42', 'uniqueId': '0x576962d87cc2e7f0760cb2e0ecfe023bcff27ac3646689ba0af477378d2b6184:log:49', 'hash': '0x576962d87cc2e7f0760cb2e0ecfe023bcff27ac3646689ba0af477378d2b6184', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2923.3504876343363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9e79a343edc1920288', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:12:11.000Z'}}, {'blockNum': '0x4b6b57', 'uniqueId': '0x88e65be26c777880c67436e5245c8d315fcd7fbca2c7be836c553fd0beb4ed7b:log:17', 'hash': '0x88e65be26c777880c67436e5245c8d315fcd7fbca2c7be836c553fd0beb4ed7b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 73.07080371593848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f60fa4d57cce6e31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:16:17.000Z'}}, {'blockNum': '0x4b6b57', 'uniqueId': '0x88e65be26c777880c67436e5245c8d315fcd7fbca2c7be836c553fd0beb4ed7b:log:20', 'hash': '0x88e65be26c777880c67436e5245c8d315fcd7fbca2c7be836c553fd0beb4ed7b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 73.07080371593848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f60fa4d57cce6e31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:16:17.000Z'}}, {'blockNum': '0x4b6b5a', 'uniqueId': '0x206b6f61ccaa5b701d80c63ec683542629df26d6084e7a1cf1a7b11f59588cd6:log:48', 'hash': '0x206b6f61ccaa5b701d80c63ec683542629df26d6084e7a1cf1a7b11f59588cd6', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 22.283184629080107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01353dc65bd8c3a2dd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:16:58.000Z'}}, {'blockNum': '0x4b6b5a', 'uniqueId': '0x206b6f61ccaa5b701d80c63ec683542629df26d6084e7a1cf1a7b11f59588cd6:log:51', 'hash': '0x206b6f61ccaa5b701d80c63ec683542629df26d6084e7a1cf1a7b11f59588cd6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 22.283184629080107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01353dc65bd8c3a2dd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:16:58.000Z'}}, {'blockNum': '0x4b6b5f', 'uniqueId': '0xd72efcebee111cbdbcc37d24866f0987ebc15f7cb4459b8078af906752505258:log:40', 'hash': '0xd72efcebee111cbdbcc37d24866f0987ebc15f7cb4459b8078af906752505258', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3068.403239317079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa656a6290fd06cb6ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:17:30.000Z'}}, {'blockNum': '0x4b6b5f', 'uniqueId': '0xd72efcebee111cbdbcc37d24866f0987ebc15f7cb4459b8078af906752505258:log:43', 'hash': '0xd72efcebee111cbdbcc37d24866f0987ebc15f7cb4459b8078af906752505258', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 3068.403239317079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa656a6290fd06cb6ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:17:30.000Z'}}, {'blockNum': '0x4b6b66', 'uniqueId': '0xdd620a1fdee6d6c00b5397210bf21c5fd3b56a966068184e1ddc9ad0089912f0:log:41', 'hash': '0xdd620a1fdee6d6c00b5397210bf21c5fd3b56a966068184e1ddc9ad0089912f0', 'from': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 415.5795770851185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1687533f86218e295e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:19:31.000Z'}}, {'blockNum': '0x4b6b66', 'uniqueId': '0xdd620a1fdee6d6c00b5397210bf21c5fd3b56a966068184e1ddc9ad0089912f0:log:43', 'hash': '0xdd620a1fdee6d6c00b5397210bf21c5fd3b56a966068184e1ddc9ad0089912f0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 415.5795770851185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1687533f86218e295e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:19:31.000Z'}}, {'blockNum': '0x4b6b67', 'uniqueId': '0x82d3ace2851602854879e827d78e3442981c934b487063c1bed9211de9d71cd8:log:32', 'hash': '0x82d3ace2851602854879e827d78e3442981c934b487063c1bed9211de9d71cd8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 146.0938338602375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb758fdb8a642014', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:19:39.000Z'}}, {'blockNum': '0x4b6b67', 'uniqueId': '0x82d3ace2851602854879e827d78e3442981c934b487063c1bed9211de9d71cd8:log:35', 'hash': '0x82d3ace2851602854879e827d78e3442981c934b487063c1bed9211de9d71cd8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 146.0938338602375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb758fdb8a642014', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:19:39.000Z'}}, {'blockNum': '0x4b6b6a', 'uniqueId': '0xcbed9b00a33689692c1a729109c5e985df61209fc4bc4349fe7c3d4d785d5257:log:21', 'hash': '0xcbed9b00a33689692c1a729109c5e985df61209fc4bc4349fe7c3d4d785d5257', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1231.957920106357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42c8d9c124d87a60a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:20:33.000Z'}}, {'blockNum': '0x4b6b6a', 'uniqueId': '0xcbed9b00a33689692c1a729109c5e985df61209fc4bc4349fe7c3d4d785d5257:log:23', 'hash': '0xcbed9b00a33689692c1a729109c5e985df61209fc4bc4349fe7c3d4d785d5257', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1231.957920106357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42c8d9c124d87a60a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:20:33.000Z'}}, {'blockNum': '0x4b6b6b', 'uniqueId': '0xa23967455af642ef0bad27651f098bb18affde02e3e5a3e7b030e34efcb4dfac:log:9', 'hash': '0xa23967455af642ef0bad27651f098bb18affde02e3e5a3e7b030e34efcb4dfac', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0xfb1700001905f468909f63aae29f07842827aa0d', 'value': 0.62360527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08a77db066695c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:20:43.000Z'}}, {'blockNum': '0x4b6b6d', 'uniqueId': '0x97b7f5fcad75f8941415db8a9d4b58fe1e6d68c44466399f293996685dd34ce2:log:56', 'hash': '0x97b7f5fcad75f8941415db8a9d4b58fe1e6d68c44466399f293996685dd34ce2', 'from': '0xedb8158d3c7d103f9bd03b4ecc81754ff1d828e1', 'to': '0x45ce96860bf46a9434cc4cd1c8d78fc6a83029a7', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:21:41.000Z'}}, {'blockNum': '0x4b6b6d', 'uniqueId': '0xb314d25775d5874e804125f5c7802a0c605d208947f0803dc4d7e57f389acc56:log:75', 'hash': '0xb314d25775d5874e804125f5c7802a0c605d208947f0803dc4d7e57f389acc56', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 1232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42c96f409591400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:21:41.000Z'}}, {'blockNum': '0x4b6b6e', 'uniqueId': '0xc9ceb940966b1950dd4047e0dbcb4e63d22c370644ce358eea8ddc8d50bf6a22:log:18', 'hash': '0xc9ceb940966b1950dd4047e0dbcb4e63d22c370644ce358eea8ddc8d50bf6a22', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4bd3b2ddd469bda2806fbf43f57355b92f8ac583', 'value': 21.21199878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012660288121eb5000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:21:59.000Z'}}, {'blockNum': '0x4b6b70', 'uniqueId': '0x4b766743a83b014e269d4ae00cb64e050eff5e31ee2c24cfeca3f45ea26d2d94:log:30', 'hash': '0x4b766743a83b014e269d4ae00cb64e050eff5e31ee2c24cfeca3f45ea26d2d94', 'from': '0xc1dd8ac971129c8c08333924f58ff40a50b8bb9a', 'to': '0x1472f3a91639321c205faf691dcf1dc77ee8b47c', 'value': 390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15245655b102580000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:22:27.000Z'}}, {'blockNum': '0x4b6b74', 'uniqueId': '0x6f952f95dfd5752b61144440b95744de31da1a622495975b4590dc0aa2d78a72:log:27', 'hash': '0x6f952f95dfd5752b61144440b95744de31da1a622495975b4590dc0aa2d78a72', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1663.4271658422863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5a2cb0721e64432008', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-20T21:23:12.000Z'}}], 'pageKey': '52fb9a56-5ad7-478a-a92c-51cd54b5b754'}}
Answer is paginated. Downloading more pages...
Number of returned transfers:  1001
Answer is complete
 
symbol             XZC
group              BPS
date        2018-01-23
hour             18:00
exchange       binance
Name: 283, dtype: object
HERE
 Symbol: XZC, Contract: 
Datetime timestamps:  2018-01-23 18:00:00 2018-01-23 06:00:00 2018-01-24 06:00:00
Unix timestamps:  1516683600.0 1516770000.0
Hex Block Numbers:  0x4ba06f 0x4bb7a8
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BNT
group              BPS
date        2018-01-27
hour             18:00
exchange       binance
Name: 284, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2018-01-27 18:00:00 2018-01-27 06:00:00 2018-01-28 06:00:00
Unix timestamps:  1517029200.0 1517115600.0
Hex Block Numbers:  0x4bfd21 0x4c1476
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x4bfd25', 'uniqueId': '0xde6b17c8d4d1d1c4a651328c80ecd53b67b06b71f5aaefbca21c12226493d6c8:log:8', 'hash': '0xde6b17c8d4d1d1c4a651328c80ecd53b67b06b71f5aaefbca21c12226493d6c8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf0b073de02cdeb738c328133caed6ddfa2b7127d', 'value': 54.344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f22cac12b9d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:00:50.000Z'}}, {'blockNum': '0x4bfd26', 'uniqueId': '0x2356b5782c5db0302482125fb66f971b0ecc199ce148e9c907ae5694ec787526:log:36', 'hash': '0x2356b5782c5db0302482125fb66f971b0ecc199ce148e9c907ae5694ec787526', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.434121614425814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4b69e0d12e1f74c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:00:53.000Z'}}, {'blockNum': '0x4bfd26', 'uniqueId': '0x2356b5782c5db0302482125fb66f971b0ecc199ce148e9c907ae5694ec787526:log:38', 'hash': '0x2356b5782c5db0302482125fb66f971b0ecc199ce148e9c907ae5694ec787526', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.434121614425814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4b69e0d12e1f74c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:00:53.000Z'}}, {'blockNum': '0x4bfd29', 'uniqueId': '0x8e3dd65d9e9c8865cda8f3987faeab783d03f186978b450a97373b3bc0a5361a:log:22', 'hash': '0x8e3dd65d9e9c8865cda8f3987faeab783d03f186978b450a97373b3bc0a5361a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 792.4558656862694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af588cb3b04c09d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:01:54.000Z'}}, {'blockNum': '0x4bfd29', 'uniqueId': '0x8e3dd65d9e9c8865cda8f3987faeab783d03f186978b450a97373b3bc0a5361a:log:25', 'hash': '0x8e3dd65d9e9c8865cda8f3987faeab783d03f186978b450a97373b3bc0a5361a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 792.4558656862694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af588cb3b04c09d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:01:54.000Z'}}, {'blockNum': '0x4bfd29', 'uniqueId': '0x9073a0ad36f98e7fd7387443d5544dbf73bbb56a5846e71cbc3bf6fa810aab84:log:43', 'hash': '0x9073a0ad36f98e7fd7387443d5544dbf73bbb56a5846e71cbc3bf6fa810aab84', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.526898795945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18508fa60ebbe18dc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:01:54.000Z'}}, {'blockNum': '0x4bfd29', 'uniqueId': '0x9073a0ad36f98e7fd7387443d5544dbf73bbb56a5846e71cbc3bf6fa810aab84:log:46', 'hash': '0x9073a0ad36f98e7fd7387443d5544dbf73bbb56a5846e71cbc3bf6fa810aab84', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 448.526898795945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18508fa60ebbe18dc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:01:54.000Z'}}, {'blockNum': '0x4bfd36', 'uniqueId': '0x6b669e0def328af3c41258bdaf0b0b6c558ba966e315e3c2718f975023abdcf5:log:55', 'hash': '0x6b669e0def328af3c41258bdaf0b0b6c558ba966e315e3c2718f975023abdcf5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.50366163187346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ac7b4265c03903d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:38.000Z'}}, {'blockNum': '0x4bfd36', 'uniqueId': '0x6b669e0def328af3c41258bdaf0b0b6c558ba966e315e3c2718f975023abdcf5:log:58', 'hash': '0x6b669e0def328af3c41258bdaf0b0b6c558ba966e315e3c2718f975023abdcf5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.50366163187346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ac7b4265c03903d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:38.000Z'}}, {'blockNum': '0x4bfd36', 'uniqueId': '0x09f86856ab4d83bd3ad1a73e62a3ccf50e27222ab0b3e38edbaccd0a13673278:log:120', 'hash': '0x09f86856ab4d83bd3ad1a73e62a3ccf50e27222ab0b3e38edbaccd0a13673278', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 269.09990758317065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9682ec31c954c348', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:38.000Z'}}, {'blockNum': '0x4bfd36', 'uniqueId': '0x09f86856ab4d83bd3ad1a73e62a3ccf50e27222ab0b3e38edbaccd0a13673278:log:123', 'hash': '0x09f86856ab4d83bd3ad1a73e62a3ccf50e27222ab0b3e38edbaccd0a13673278', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 269.09990758317065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9682ec31c954c348', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:38.000Z'}}, {'blockNum': '0x4bfd37', 'uniqueId': '0x1b2b4db1b405ba98869ec69ffe5954b4a8486e3534955fd8d3d32b97acfc092f:log:38', 'hash': '0x1b2b4db1b405ba98869ec69ffe5954b4a8486e3534955fd8d3d32b97acfc092f', 'from': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 175.96034783278213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0989f0bc1377278ce1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:39.000Z'}}, {'blockNum': '0x4bfd37', 'uniqueId': '0x1b2b4db1b405ba98869ec69ffe5954b4a8486e3534955fd8d3d32b97acfc092f:log:40', 'hash': '0x1b2b4db1b405ba98869ec69ffe5954b4a8486e3534955fd8d3d32b97acfc092f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 175.96034783278213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0989f0bc1377278ce1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:05:39.000Z'}}, {'blockNum': '0x4bfd41', 'uniqueId': '0xcdff7abbe81c30e55c3461fd8d9e3ea2c743150123d1954a794abb38e780d20f:log:26', 'hash': '0xcdff7abbe81c30e55c3461fd8d9e3ea2c743150123d1954a794abb38e780d20f', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 615.6871221200978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2160600f849ef9c1a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:07:54.000Z'}}, {'blockNum': '0x4bfd41', 'uniqueId': '0xcdff7abbe81c30e55c3461fd8d9e3ea2c743150123d1954a794abb38e780d20f:log:28', 'hash': '0xcdff7abbe81c30e55c3461fd8d9e3ea2c743150123d1954a794abb38e780d20f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 615.6871221200978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2160600f849ef9c1a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:07:54.000Z'}}, {'blockNum': '0x4bfd51', 'uniqueId': '0xa7f62f0986e17d1d3e2fd1e91a280e0723b2ae387fa60201bee462595141be0e:log:125', 'hash': '0xa7f62f0986e17d1d3e2fd1e91a280e0723b2ae387fa60201bee462595141be0e', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.335099444855357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a0a14adb3fcbd47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:12:43.000Z'}}, {'blockNum': '0x4bfd51', 'uniqueId': '0xa7f62f0986e17d1d3e2fd1e91a280e0723b2ae387fa60201bee462595141be0e:log:127', 'hash': '0xa7f62f0986e17d1d3e2fd1e91a280e0723b2ae387fa60201bee462595141be0e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.335099444855357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a0a14adb3fcbd47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:12:43.000Z'}}, {'blockNum': '0x4bfd5b', 'uniqueId': '0x32fe412ff5c93f0222931fa5090339470f0428e72544e92450e5ea7b2295758f:log:16', 'hash': '0x32fe412ff5c93f0222931fa5090339470f0428e72544e92450e5ea7b2295758f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2511.422324688141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8824fc7237d6632e73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:14:43.000Z'}}, {'blockNum': '0x4bfd5b', 'uniqueId': '0x32fe412ff5c93f0222931fa5090339470f0428e72544e92450e5ea7b2295758f:log:19', 'hash': '0x32fe412ff5c93f0222931fa5090339470f0428e72544e92450e5ea7b2295758f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2511.422324688141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8824fc7237d6632e73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:14:43.000Z'}}, {'blockNum': '0x4bfd5c', 'uniqueId': '0xeb1c22a0bf9fe9cb4db31bf32002840d2e2db86420a88ed5685babc8533c719d:log:48', 'hash': '0xeb1c22a0bf9fe9cb4db31bf32002840d2e2db86420a88ed5685babc8533c719d', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 162.2752785783958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cc059a1884d66494', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:14:59.000Z'}}, {'blockNum': '0x4bfd5c', 'uniqueId': '0xeb1c22a0bf9fe9cb4db31bf32002840d2e2db86420a88ed5685babc8533c719d:log:50', 'hash': '0xeb1c22a0bf9fe9cb4db31bf32002840d2e2db86420a88ed5685babc8533c719d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 162.2752785783958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cc059a1884d66494', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:14:59.000Z'}}, {'blockNum': '0x4bfd62', 'uniqueId': '0xd30b853da4e50a36351d76545a68883c93d213e61c9218889fec299b19f25608:log:129', 'hash': '0xd30b853da4e50a36351d76545a68883c93d213e61c9218889fec299b19f25608', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 760.9877008110981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2940d36a0086bdc60f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:16:24.000Z'}}, {'blockNum': '0x4bfd62', 'uniqueId': '0xd30b853da4e50a36351d76545a68883c93d213e61c9218889fec299b19f25608:log:131', 'hash': '0xd30b853da4e50a36351d76545a68883c93d213e61c9218889fec299b19f25608', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 760.9877008110981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2940d36a0086bdc60f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:16:24.000Z'}}, {'blockNum': '0x4bfd63', 'uniqueId': '0x6b6de77bfbfdd6e9d3a95226b2cf45b96f11e495c6f7b22de99aff2e71115f0a:log:17', 'hash': '0x6b6de77bfbfdd6e9d3a95226b2cf45b96f11e495c6f7b22de99aff2e71115f0a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 95.82212516784304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0531cc93271c4d7577', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:16:28.000Z'}}, {'blockNum': '0x4bfd63', 'uniqueId': '0x6b6de77bfbfdd6e9d3a95226b2cf45b96f11e495c6f7b22de99aff2e71115f0a:log:20', 'hash': '0x6b6de77bfbfdd6e9d3a95226b2cf45b96f11e495c6f7b22de99aff2e71115f0a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 95.82212516784304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0531cc93271c4d7577', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:16:28.000Z'}}, {'blockNum': '0x4bfd69', 'uniqueId': '0x0c3166d5108c258ac6e8e95dbeb21431bad982ef1559365b0def798f4bca4017:log:50', 'hash': '0x0c3166d5108c258ac6e8e95dbeb21431bad982ef1559365b0def798f4bca4017', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 99.21917119459917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0560f14e840ac0f434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:17:25.000Z'}}, {'blockNum': '0x4bfd69', 'uniqueId': '0x0c3166d5108c258ac6e8e95dbeb21431bad982ef1559365b0def798f4bca4017:log:53', 'hash': '0x0c3166d5108c258ac6e8e95dbeb21431bad982ef1559365b0def798f4bca4017', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 99.21917119459917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0560f14e840ac0f434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:17:25.000Z'}}, {'blockNum': '0x4bfd6a', 'uniqueId': '0x765c99b20a1c24a43b0ee4409f2938ff40b20b982398083b883383e75075c1b5:log:77', 'hash': '0x765c99b20a1c24a43b0ee4409f2938ff40b20b982398083b883383e75075c1b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 20.32829216224406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011a1c9a0484ea2b21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:17:59.000Z'}}, {'blockNum': '0x4bfd6a', 'uniqueId': '0x765c99b20a1c24a43b0ee4409f2938ff40b20b982398083b883383e75075c1b5:log:80', 'hash': '0x765c99b20a1c24a43b0ee4409f2938ff40b20b982398083b883383e75075c1b5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'value': 20.32829216224406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011a1c9a0484ea2b21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:17:59.000Z'}}, {'blockNum': '0x4bfd70', 'uniqueId': '0xd62784e6d4d4230f26844495a888690f55ea3b29c291e84060559aed21a25a1b:log:46', 'hash': '0xd62784e6d4d4230f26844495a888690f55ea3b29c291e84060559aed21a25a1b', 'from': '0x73d8bdc3ecce282de798b0903d306a5990ef445c', 'to': '0x59fec5f31fe2cdb2f034ff430c548c9e3f957e95', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:20:30.000Z'}}, {'blockNum': '0x4bfd76', 'uniqueId': '0xa5f3af21dc74e35352c2c202961b025ecdedf7ad156abf36e0e4bc3cd169111e:log:65', 'hash': '0xa5f3af21dc74e35352c2c202961b025ecdedf7ad156abf36e0e4bc3cd169111e', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 197.27726758122756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ab1c5a5a536c0e69f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:22:21.000Z'}}, {'blockNum': '0x4bfd76', 'uniqueId': '0xa5f3af21dc74e35352c2c202961b025ecdedf7ad156abf36e0e4bc3cd169111e:log:67', 'hash': '0xa5f3af21dc74e35352c2c202961b025ecdedf7ad156abf36e0e4bc3cd169111e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 197.27726758122756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ab1c5a5a536c0e69f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:22:21.000Z'}}, {'blockNum': '0x4bfd78', 'uniqueId': '0xca1ad6146f41d35953b36f5addbeebf47b1f02c7f2876feeaaa7d9877bb4fd57:log:38', 'hash': '0xca1ad6146f41d35953b36f5addbeebf47b1f02c7f2876feeaaa7d9877bb4fd57', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 42.56141758649993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x024ea887cb7c6448f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:22:46.000Z'}}, {'blockNum': '0x4bfd78', 'uniqueId': '0xca1ad6146f41d35953b36f5addbeebf47b1f02c7f2876feeaaa7d9877bb4fd57:log:41', 'hash': '0xca1ad6146f41d35953b36f5addbeebf47b1f02c7f2876feeaaa7d9877bb4fd57', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 42.56141758649993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x024ea887cb7c6448f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:22:46.000Z'}}, {'blockNum': '0x4bfd7a', 'uniqueId': '0xc43b5426b95a3418d41cfc2acf0230b6f3a0ec97c2993ffbf0299f01de076857:log:75', 'hash': '0xc43b5426b95a3418d41cfc2acf0230b6f3a0ec97c2993ffbf0299f01de076857', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.220850178739934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48742f93895413c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:23:41.000Z'}}, {'blockNum': '0x4bfd7a', 'uniqueId': '0xc43b5426b95a3418d41cfc2acf0230b6f3a0ec97c2993ffbf0299f01de076857:log:77', 'hash': '0xc43b5426b95a3418d41cfc2acf0230b6f3a0ec97c2993ffbf0299f01de076857', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.220850178739934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48742f93895413c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:23:41.000Z'}}, {'blockNum': '0x4bfd7c', 'uniqueId': '0xbba5d4675fa84c3ad1b979dc0afd5915587bfa45ae912a0287ad95f42c023f9c:log:22', 'hash': '0xbba5d4675fa84c3ad1b979dc0afd5915587bfa45ae912a0287ad95f42c023f9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2594.648072880338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ca7f9b34000635553', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:24:18.000Z'}}, {'blockNum': '0x4bfd7c', 'uniqueId': '0xbba5d4675fa84c3ad1b979dc0afd5915587bfa45ae912a0287ad95f42c023f9c:log:25', 'hash': '0xbba5d4675fa84c3ad1b979dc0afd5915587bfa45ae912a0287ad95f42c023f9c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2594.648072880338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ca7f9b34000635553', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:24:18.000Z'}}, {'blockNum': '0x4bfd7c', 'uniqueId': '0x0595721c8d086827e8a2634574b0b04ba3534e94151bf71292d07d51193740fd:log:48', 'hash': '0x0595721c8d086827e8a2634574b0b04ba3534e94151bf71292d07d51193740fd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 627.6174470575802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2205f116d6d099006c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:24:18.000Z'}}, {'blockNum': '0x4bfd7c', 'uniqueId': '0x0595721c8d086827e8a2634574b0b04ba3534e94151bf71292d07d51193740fd:log:51', 'hash': '0x0595721c8d086827e8a2634574b0b04ba3534e94151bf71292d07d51193740fd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 627.6174470575802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2205f116d6d099006c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:24:18.000Z'}}, {'blockNum': '0x4bfd89', 'uniqueId': '0x42a9a7b2fa13af2134e5cf98f64c1ed41ff0c496e2d184c9b2676d9f85e4856e:log:35', 'hash': '0x42a9a7b2fa13af2134e5cf98f64c1ed41ff0c496e2d184c9b2676d9f85e4856e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1509.0792196843186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51ceae62dbc77a41c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:27:11.000Z'}}, {'blockNum': '0x4bfd89', 'uniqueId': '0x42a9a7b2fa13af2134e5cf98f64c1ed41ff0c496e2d184c9b2676d9f85e4856e:log:38', 'hash': '0x42a9a7b2fa13af2134e5cf98f64c1ed41ff0c496e2d184c9b2676d9f85e4856e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1509.0792196843186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51ceae62dbc77a41c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:27:11.000Z'}}, {'blockNum': '0x4bfd8f', 'uniqueId': '0x3956ce00013c752ab1fe5472c5afb7a0d4efc0c9672dca42e3fc69cca27dc343:log:23', 'hash': '0x3956ce00013c752ab1fe5472c5afb7a0d4efc0c9672dca42e3fc69cca27dc343', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1359.4340740905263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49b1f007cb7fe1d757', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:28:06.000Z'}}, {'blockNum': '0x4bfd8f', 'uniqueId': '0x3956ce00013c752ab1fe5472c5afb7a0d4efc0c9672dca42e3fc69cca27dc343:log:26', 'hash': '0x3956ce00013c752ab1fe5472c5afb7a0d4efc0c9672dca42e3fc69cca27dc343', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1359.4340740905263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49b1f007cb7fe1d757', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:28:06.000Z'}}, {'blockNum': '0x4bfd9d', 'uniqueId': '0x1a6c6b4fdda52fe16ce900c823a19318f38b93b5bfd73355bd7b2dbbe3791b5f:log:23', 'hash': '0x1a6c6b4fdda52fe16ce900c823a19318f38b93b5bfd73355bd7b2dbbe3791b5f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2972.064545682241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa11dae5da00ab03dc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:30:50.000Z'}}, {'blockNum': '0x4bfd9d', 'uniqueId': '0x1a6c6b4fdda52fe16ce900c823a19318f38b93b5bfd73355bd7b2dbbe3791b5f:log:26', 'hash': '0x1a6c6b4fdda52fe16ce900c823a19318f38b93b5bfd73355bd7b2dbbe3791b5f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2972.064545682241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa11dae5da00ab03dc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:30:50.000Z'}}, {'blockNum': '0x4bfd9f', 'uniqueId': '0x5436e975f6e68219c56b7f1cdc11bf07a03fb728402937bb46416646a5861e81:log:48', 'hash': '0x5436e975f6e68219c56b7f1cdc11bf07a03fb728402937bb46416646a5861e81', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1240.7881839236616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x434365274d0fe4cf75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:32:01.000Z'}}, {'blockNum': '0x4bfd9f', 'uniqueId': '0x5436e975f6e68219c56b7f1cdc11bf07a03fb728402937bb46416646a5861e81:log:51', 'hash': '0x5436e975f6e68219c56b7f1cdc11bf07a03fb728402937bb46416646a5861e81', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1240.7881839236616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x434365274d0fe4cf75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:32:01.000Z'}}, {'blockNum': '0x4bfda3', 'uniqueId': '0xba17268081f7d9b3dcc8cf1e40d28883c19d01e2084863a4ea001885fcfefd49:log:37', 'hash': '0xba17268081f7d9b3dcc8cf1e40d28883c19d01e2084863a4ea001885fcfefd49', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 231.4144084114998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c8b85225d3a9d4177', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:32:43.000Z'}}, {'blockNum': '0x4bfda3', 'uniqueId': '0xba17268081f7d9b3dcc8cf1e40d28883c19d01e2084863a4ea001885fcfefd49:log:40', 'hash': '0xba17268081f7d9b3dcc8cf1e40d28883c19d01e2084863a4ea001885fcfefd49', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 231.4144084114998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c8b85225d3a9d4177', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:32:43.000Z'}}, {'blockNum': '0x4bfda7', 'uniqueId': '0x2ff74f10f3adeb2656917aee4dcb09238c4f8c0721cd79fa7a2d334d93a9ed15:log:21', 'hash': '0x2ff74f10f3adeb2656917aee4dcb09238c4f8c0721cd79fa7a2d334d93a9ed15', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x0eb72ac1a1d9812408bc31e745f07eb7035e6739', 'value': 4.72634131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4197566155cdec00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:33:30.000Z'}}, {'blockNum': '0x4bfdaf', 'uniqueId': '0x2db8cc01c91dcafb0b62175bcd93343fe380c1e4c5ffa6c59952605297aea636:log:4', 'hash': '0x2db8cc01c91dcafb0b62175bcd93343fe380c1e4c5ffa6c59952605297aea636', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3df9293f03221ea6a0ba8e9a98f67f2f9a5cb2f6', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:36:49.000Z'}}, {'blockNum': '0x4bfdb0', 'uniqueId': '0x63ffd3a37c3137956911f081898a9b805c84a85d8a3c147be03ae2b7d73fd67b:log:69', 'hash': '0x63ffd3a37c3137956911f081898a9b805c84a85d8a3c147be03ae2b7d73fd67b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1251.0207825390974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43d166a586f218bc3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:36:56.000Z'}}, {'blockNum': '0x4bfdb0', 'uniqueId': '0x63ffd3a37c3137956911f081898a9b805c84a85d8a3c147be03ae2b7d73fd67b:log:72', 'hash': '0x63ffd3a37c3137956911f081898a9b805c84a85d8a3c147be03ae2b7d73fd67b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1251.0207825390974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43d166a586f218bc3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:36:56.000Z'}}, {'blockNum': '0x4bfdb1', 'uniqueId': '0x0a96488461a19e5cac0b24039bc07f62c56a4b9dc798031b7cc390cc7c071ee5:log:144', 'hash': '0x0a96488461a19e5cac0b24039bc07f62c56a4b9dc798031b7cc390cc7c071ee5', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 295.1815218262142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1000776e2986b6354f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:37:07.000Z'}}, {'blockNum': '0x4bfdb1', 'uniqueId': '0x0a96488461a19e5cac0b24039bc07f62c56a4b9dc798031b7cc390cc7c071ee5:log:146', 'hash': '0x0a96488461a19e5cac0b24039bc07f62c56a4b9dc798031b7cc390cc7c071ee5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 295.1815218262142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1000776e2986b6354f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:37:07.000Z'}}, {'blockNum': '0x4bfdb6', 'uniqueId': '0x1f26de8be8a6b0ac44857a75860cdca851267d49781d2ef876d109c129d0e2ea:log:20', 'hash': '0x1f26de8be8a6b0ac44857a75860cdca851267d49781d2ef876d109c129d0e2ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3104.4655252687044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa84b1d23118f9a3047', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:37:56.000Z'}}, {'blockNum': '0x4bfdb6', 'uniqueId': '0x1f26de8be8a6b0ac44857a75860cdca851267d49781d2ef876d109c129d0e2ea:log:23', 'hash': '0x1f26de8be8a6b0ac44857a75860cdca851267d49781d2ef876d109c129d0e2ea', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 3104.4655252687044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa84b1d23118f9a3047', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:37:56.000Z'}}, {'blockNum': '0x4bfdb7', 'uniqueId': '0xb29b18d8b10a19f7cbb4525e601d297cb24ada60b440b3679e50891e46f90138:log:49', 'hash': '0xb29b18d8b10a19f7cbb4525e601d297cb24ada60b440b3679e50891e46f90138', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4490.496318842504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf36e27b2516eb0e0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:38:16.000Z'}}, {'blockNum': '0x4bfdb7', 'uniqueId': '0xb29b18d8b10a19f7cbb4525e601d297cb24ada60b440b3679e50891e46f90138:log:52', 'hash': '0xb29b18d8b10a19f7cbb4525e601d297cb24ada60b440b3679e50891e46f90138', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 4490.496318842504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf36e27b2516eb0e0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:38:16.000Z'}}, {'blockNum': '0x4bfdbc', 'uniqueId': '0xd44267354a3449b86dadfa5e9f13124bae857c4d3805cb6ddd7a5a3075c8a81f:log:0', 'hash': '0xd44267354a3449b86dadfa5e9f13124bae857c4d3805cb6ddd7a5a3075c8a81f', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x43808b0d7d6952f5fb4d1b118c877c88bf954f34', 'value': 2.90037642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284034fcb504e800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:40:12.000Z'}}, {'blockNum': '0x4bfdbd', 'uniqueId': '0xd8f3b25409486490d83514ddefe7741c18478577326dd96046aa7b04c1b80285:log:34', 'hash': '0xd8f3b25409486490d83514ddefe7741c18478577326dd96046aa7b04c1b80285', 'from': '0x59fec5f31fe2cdb2f034ff430c548c9e3f957e95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:40:18.000Z'}}, {'blockNum': '0x4bfdc0', 'uniqueId': '0xf1472f0b6c12f3b31bcf6cae8502bf9ba850b702963bc3937e284989069e0929:log:56', 'hash': '0xf1472f0b6c12f3b31bcf6cae8502bf9ba850b702963bc3937e284989069e0929', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2002.7954612667322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c925ed4c1c82f0b93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:41:22.000Z'}}, {'blockNum': '0x4bfdc0', 'uniqueId': '0xf1472f0b6c12f3b31bcf6cae8502bf9ba850b702963bc3937e284989069e0929:log:59', 'hash': '0xf1472f0b6c12f3b31bcf6cae8502bf9ba850b702963bc3937e284989069e0929', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2002.7954612667322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c925ed4c1c82f0b93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:41:22.000Z'}}, {'blockNum': '0x4bfdc5', 'uniqueId': '0xa6047931da31d19fa1a982bbefdf195103ee9197d217e70d1102d1e3826df62a:log:22', 'hash': '0xa6047931da31d19fa1a982bbefdf195103ee9197d217e70d1102d1e3826df62a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4963.926704079024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010d18524d5959c4f3f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:42:41.000Z'}}, {'blockNum': '0x4bfdc5', 'uniqueId': '0xa6047931da31d19fa1a982bbefdf195103ee9197d217e70d1102d1e3826df62a:log:25', 'hash': '0xa6047931da31d19fa1a982bbefdf195103ee9197d217e70d1102d1e3826df62a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 4963.926704079024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010d18524d5959c4f3f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:42:41.000Z'}}, {'blockNum': '0x4bfdd8', 'uniqueId': '0xe508d90a6ed58bd78f948cd3f6a9dcf10358d052067d1332083db45a690d9ccb:log:13', 'hash': '0xe508d90a6ed58bd78f948cd3f6a9dcf10358d052067d1332083db45a690d9ccb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xdafd3d7cec1a15f0e9a4c735fbe2138cbd1a727d', 'value': 6.36372627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58507f537b2bec00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:46:52.000Z'}}, {'blockNum': '0x4bfdd8', 'uniqueId': '0xcce549dcc5826ca81f2783dc67fcd40aa5039345e4e524cd9088dbca42f9f858:log:56', 'hash': '0xcce549dcc5826ca81f2783dc67fcd40aa5039345e4e524cd9088dbca42f9f858', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 275.24951429567847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebdab6eae0b82897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:46:52.000Z'}}, {'blockNum': '0x4bfdd8', 'uniqueId': '0xcce549dcc5826ca81f2783dc67fcd40aa5039345e4e524cd9088dbca42f9f858:log:58', 'hash': '0xcce549dcc5826ca81f2783dc67fcd40aa5039345e4e524cd9088dbca42f9f858', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 275.24951429567847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebdab6eae0b82897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:46:52.000Z'}}, {'blockNum': '0x4bfde1', 'uniqueId': '0x74f1591d24309dd94da273c6e655bc15ea647e013d80b2fb97545ef67b832451:log:57', 'hash': '0x74f1591d24309dd94da273c6e655bc15ea647e013d80b2fb97545ef67b832451', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1311.3431346478892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47168ab12b26ab51ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:20.000Z'}}, {'blockNum': '0x4bfde1', 'uniqueId': '0x74f1591d24309dd94da273c6e655bc15ea647e013d80b2fb97545ef67b832451:log:60', 'hash': '0x74f1591d24309dd94da273c6e655bc15ea647e013d80b2fb97545ef67b832451', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1311.3431346478892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47168ab12b26ab51ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:20.000Z'}}, {'blockNum': '0x4bfde2', 'uniqueId': '0x88f6e2bf046f0a3feb09c88fefcafba0a79bae2cbba9d491bed6a3fd0856eac7:log:73', 'hash': '0x88f6e2bf046f0a3feb09c88fefcafba0a79bae2cbba9d491bed6a3fd0856eac7', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.383745344304941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ab6e7ddc875870c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:29.000Z'}}, {'blockNum': '0x4bfde2', 'uniqueId': '0x88f6e2bf046f0a3feb09c88fefcafba0a79bae2cbba9d491bed6a3fd0856eac7:log:75', 'hash': '0x88f6e2bf046f0a3feb09c88fefcafba0a79bae2cbba9d491bed6a3fd0856eac7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.383745344304941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ab6e7ddc875870c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:29.000Z'}}, {'blockNum': '0x4bfde2', 'uniqueId': '0xe90e698d40987efcd07a46ba2da4255833954cf12231d8065c3337b8a7a91cf7:log:96', 'hash': '0xe90e698d40987efcd07a46ba2da4255833954cf12231d8065c3337b8a7a91cf7', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 27.595725200857775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x017ef7b5dc9c6c3da1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:29.000Z'}}, {'blockNum': '0x4bfde2', 'uniqueId': '0xe90e698d40987efcd07a46ba2da4255833954cf12231d8065c3337b8a7a91cf7:log:98', 'hash': '0xe90e698d40987efcd07a46ba2da4255833954cf12231d8065c3337b8a7a91cf7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 27.595725200857775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x017ef7b5dc9c6c3da1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:49:29.000Z'}}, {'blockNum': '0x4bfde5', 'uniqueId': '0x898f348ed2c505f25fb339537df607280de4b18b604ff028837b9b7f15762346:log:43', 'hash': '0x898f348ed2c505f25fb339537df607280de4b18b604ff028837b9b7f15762346', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2979.5786032733495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa185f5a9316e8b9cf1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:50:04.000Z'}}, {'blockNum': '0x4bfde5', 'uniqueId': '0x898f348ed2c505f25fb339537df607280de4b18b604ff028837b9b7f15762346:log:46', 'hash': '0x898f348ed2c505f25fb339537df607280de4b18b604ff028837b9b7f15762346', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2979.5786032733495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa185f5a9316e8b9cf1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:50:04.000Z'}}, {'blockNum': '0x4bfde7', 'uniqueId': '0x55a94f5df0731eaeaa838b0c7812767c26de365d4b139b85dcfb330de50ad373:log:42', 'hash': '0x55a94f5df0731eaeaa838b0c7812767c26de365d4b139b85dcfb330de50ad373', 'from': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 414.1036469556015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1672d7b0e4166565f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:50:44.000Z'}}, {'blockNum': '0x4bfde7', 'uniqueId': '0x55a94f5df0731eaeaa838b0c7812767c26de365d4b139b85dcfb330de50ad373:log:44', 'hash': '0x55a94f5df0731eaeaa838b0c7812767c26de365d4b139b85dcfb330de50ad373', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 414.1036469556015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1672d7b0e4166565f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:50:44.000Z'}}, {'blockNum': '0x4bfdf2', 'uniqueId': '0x00cbe7f9110096e9127938ca343bff62dc84952b6fc8a0e45b010d5ab463a3c7:log:23', 'hash': '0x00cbe7f9110096e9127938ca343bff62dc84952b6fc8a0e45b010d5ab463a3c7', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 297.7743205970479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102472e6e83452ef1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:53:10.000Z'}}, {'blockNum': '0x4bfdf2', 'uniqueId': '0x00cbe7f9110096e9127938ca343bff62dc84952b6fc8a0e45b010d5ab463a3c7:log:25', 'hash': '0x00cbe7f9110096e9127938ca343bff62dc84952b6fc8a0e45b010d5ab463a3c7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 297.7743205970479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102472e6e83452ef1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:53:10.000Z'}}, {'blockNum': '0x4bfdfc', 'uniqueId': '0x962fb1c7edc78ee3e93d8e22745e977a5ee3da658b5d1395459ace0141de31b9:log:38', 'hash': '0x962fb1c7edc78ee3e93d8e22745e977a5ee3da658b5d1395459ace0141de31b9', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 535.9256574919199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d0d766a08778bedec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:28.000Z'}}, {'blockNum': '0x4bfdfc', 'uniqueId': '0x962fb1c7edc78ee3e93d8e22745e977a5ee3da658b5d1395459ace0141de31b9:log:40', 'hash': '0x962fb1c7edc78ee3e93d8e22745e977a5ee3da658b5d1395459ace0141de31b9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 535.9256574919199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d0d766a08778bedec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:28.000Z'}}, {'blockNum': '0x4bfdfc', 'uniqueId': '0x50f17fe9adf227b4499d2b5286030fa2ac2c577ab8c738b26ac37c9f895aa242:log:82', 'hash': '0x50f17fe9adf227b4499d2b5286030fa2ac2c577ab8c738b26ac37c9f895aa242', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1335.3031083457322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48630d9e4d264f5dd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:28.000Z'}}, {'blockNum': '0x4bfdfc', 'uniqueId': '0x50f17fe9adf227b4499d2b5286030fa2ac2c577ab8c738b26ac37c9f895aa242:log:84', 'hash': '0x50f17fe9adf227b4499d2b5286030fa2ac2c577ab8c738b26ac37c9f895aa242', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1335.3031083457322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48630d9e4d264f5dd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:28.000Z'}}, {'blockNum': '0x4bfdfe', 'uniqueId': '0xbd047ac3f6a6e30939489f66f040a4d9eb83f0cd6b86581f5507d17fd3b4a774:log:8', 'hash': '0xbd047ac3f6a6e30939489f66f040a4d9eb83f0cd6b86581f5507d17fd3b4a774', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3111.9990584775055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa8b3a99f9b8dc99e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:49.000Z'}}, {'blockNum': '0x4bfdfe', 'uniqueId': '0xbd047ac3f6a6e30939489f66f040a4d9eb83f0cd6b86581f5507d17fd3b4a774:log:11', 'hash': '0xbd047ac3f6a6e30939489f66f040a4d9eb83f0cd6b86581f5507d17fd3b4a774', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 3111.9990584775055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa8b3a99f9b8dc99e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:55:49.000Z'}}, {'blockNum': '0x4bfe09', 'uniqueId': '0xf6ed2ec0d0a8081ea894a65d203c5e998857c2d7bc5afc3fdcaa2461ea506686:log:50', 'hash': '0xf6ed2ec0d0a8081ea894a65d203c5e998857c2d7bc5afc3fdcaa2461ea506686', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5806.787184464148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013ac95c4297d43917b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:57:52.000Z'}}, {'blockNum': '0x4bfe09', 'uniqueId': '0xf6ed2ec0d0a8081ea894a65d203c5e998857c2d7bc5afc3fdcaa2461ea506686:log:53', 'hash': '0xf6ed2ec0d0a8081ea894a65d203c5e998857c2d7bc5afc3fdcaa2461ea506686', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 5806.787184464148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013ac95c4297d43917b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:57:52.000Z'}}, {'blockNum': '0x4bfe0a', 'uniqueId': '0xc864b142fd408b178fb576e07f38c86a7b2e71b2367b4cea51e5c53f525174b5:log:41', 'hash': '0xc864b142fd408b178fb576e07f38c86a7b2e71b2367b4cea51e5c53f525174b5', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 98.84945880178319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055bcfd30da7e59b8b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:57:56.000Z'}}, {'blockNum': '0x4bfe0a', 'uniqueId': '0xc864b142fd408b178fb576e07f38c86a7b2e71b2367b4cea51e5c53f525174b5:log:44', 'hash': '0xc864b142fd408b178fb576e07f38c86a7b2e71b2367b4cea51e5c53f525174b5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 98.84945880178319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055bcfd30da7e59b8b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:57:56.000Z'}}, {'blockNum': '0x4bfe15', 'uniqueId': '0x3afcb15ebfe66284031ecc8564ea36a001c42e9b9f4e64d65b7a948d7c112d8b:log:94', 'hash': '0x3afcb15ebfe66284031ecc8564ea36a001c42e9b9f4e64d65b7a948d7c112d8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.795821972123886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0112b8e3336d511e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:59:53.000Z'}}, {'blockNum': '0x4bfe15', 'uniqueId': '0x3afcb15ebfe66284031ecc8564ea36a001c42e9b9f4e64d65b7a948d7c112d8b:log:97', 'hash': '0x3afcb15ebfe66284031ecc8564ea36a001c42e9b9f4e64d65b7a948d7c112d8b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 19.795821972123886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0112b8e3336d511e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:59:53.000Z'}}, {'blockNum': '0x4bfe15', 'uniqueId': '0xc0cec76ca6903ce3858f9aff6690c9b643a75be11b4e01c93c534083d4fd4e16:log:116', 'hash': '0xc0cec76ca6903ce3858f9aff6690c9b643a75be11b4e01c93c534083d4fd4e16', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 53.692266726268166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e921401d1cbd5dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:59:53.000Z'}}, {'blockNum': '0x4bfe15', 'uniqueId': '0xc0cec76ca6903ce3858f9aff6690c9b643a75be11b4e01c93c534083d4fd4e16:log:118', 'hash': '0xc0cec76ca6903ce3858f9aff6690c9b643a75be11b4e01c93c534083d4fd4e16', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 53.692266726268166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e921401d1cbd5dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T05:59:53.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0x19f15874c35dcb4bcd44054e3fe40957e740c9d0f289fda2dd70b91ac70ed90f:log:52', 'hash': '0x19f15874c35dcb4bcd44054e3fe40957e740c9d0f289fda2dd70b91ac70ed90f', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 53.6782006196121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e8ef47107221c8e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0x19f15874c35dcb4bcd44054e3fe40957e740c9d0f289fda2dd70b91ac70ed90f:log:54', 'hash': '0x19f15874c35dcb4bcd44054e3fe40957e740c9d0f289fda2dd70b91ac70ed90f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 53.6782006196121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e8ef47107221c8e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0xda6da1a618aa99d2189d36d6ef0ccc3ed25614b3fce007e001c280cd5fffe2cb:log:80', 'hash': '0xda6da1a618aa99d2189d36d6ef0ccc3ed25614b3fce007e001c280cd5fffe2cb', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.220030637043651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x487146351da4909c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0xda6da1a618aa99d2189d36d6ef0ccc3ed25614b3fce007e001c280cd5fffe2cb:log:82', 'hash': '0xda6da1a618aa99d2189d36d6ef0ccc3ed25614b3fce007e001c280cd5fffe2cb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.220030637043651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x487146351da4909c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0x6620f4c09f32ef66de1a900f915af26dc2dc9effbeb20ff38d27f088cd952b1f:log:99', 'hash': '0x6620f4c09f32ef66de1a900f915af26dc2dc9effbeb20ff38d27f088cd952b1f', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3117.882689168107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa905507a8c44a9deed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1c', 'uniqueId': '0x6620f4c09f32ef66de1a900f915af26dc2dc9effbeb20ff38d27f088cd952b1f:log:101', 'hash': '0x6620f4c09f32ef66de1a900f915af26dc2dc9effbeb20ff38d27f088cd952b1f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3117.882689168107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa905507a8c44a9deed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:01:54.000Z'}}, {'blockNum': '0x4bfe1e', 'uniqueId': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32:log:69', 'hash': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:02:59.000Z'}}, {'blockNum': '0x4bfe1e', 'uniqueId': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32:log:72', 'hash': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:02:59.000Z'}}, {'blockNum': '0x4bfe1e', 'uniqueId': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32:log:73', 'hash': '0x52c802f8c231a431a3c6890ee3c973e11df8b1ff5fcd6ec43da53a260b14dd32', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:02:59.000Z'}}, {'blockNum': '0x4bfe2a', 'uniqueId': '0xe726f9484ab5a1b198af3db19c2deeb9de73ac4a2a7d58c2e72456063493715d:log:43', 'hash': '0xe726f9484ab5a1b198af3db19c2deeb9de73ac4a2a7d58c2e72456063493715d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe5f029e221b5f8bbbe5cb8e92fe30bae8eff13e0', 'value': 37.22114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02048c0d9fbb154000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:06:55.000Z'}}, {'blockNum': '0x4bfe2c', 'uniqueId': '0x22adb463e700cc36c424cf2f7193e88451f410839cef270c4f10445e3c769a82:log:21', 'hash': '0x22adb463e700cc36c424cf2f7193e88451f410839cef270c4f10445e3c769a82', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4563.22414539483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf75f74d73d28528472', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:07:35.000Z'}}, {'blockNum': '0x4bfe2c', 'uniqueId': '0x22adb463e700cc36c424cf2f7193e88451f410839cef270c4f10445e3c769a82:log:23', 'hash': '0x22adb463e700cc36c424cf2f7193e88451f410839cef270c4f10445e3c769a82', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4563.22414539483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf75f74d73d28528472', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:07:35.000Z'}}, {'blockNum': '0x4bfe2e', 'uniqueId': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98:log:17', 'hash': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:08:19.000Z'}}, {'blockNum': '0x4bfe2e', 'uniqueId': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98:log:20', 'hash': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:08:19.000Z'}}, {'blockNum': '0x4bfe2e', 'uniqueId': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98:log:21', 'hash': '0x066b4661e1ce189a7660727491dc9f3f399018291ffa7dd6e36b4cc596657c98', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:08:19.000Z'}}, {'blockNum': '0x4bfe38', 'uniqueId': '0xac0d01939a1d4de1e32f01bf95c0d2d93ddcfdb442cd752134e45522800f4db1:log:60', 'hash': '0xac0d01939a1d4de1e32f01bf95c0d2d93ddcfdb442cd752134e45522800f4db1', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.219211288367598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x486e5d03a2dc0a60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:10:11.000Z'}}, {'blockNum': '0x4bfe38', 'uniqueId': '0xac0d01939a1d4de1e32f01bf95c0d2d93ddcfdb442cd752134e45522800f4db1:log:62', 'hash': '0xac0d01939a1d4de1e32f01bf95c0d2d93ddcfdb442cd752134e45522800f4db1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.219211288367598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x486e5d03a2dc0a60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:10:11.000Z'}}, {'blockNum': '0x4bfe39', 'uniqueId': '0xe41705512b0da408ed5d13ee1b5896ce04e9b7d669bbfd5177fecf9ad7274def:log:69', 'hash': '0xe41705512b0da408ed5d13ee1b5896ce04e9b7d669bbfd5177fecf9ad7274def', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2475.611210728564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x863401cfceaac2dd19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:10:32.000Z'}}, {'blockNum': '0x4bfe39', 'uniqueId': '0xe41705512b0da408ed5d13ee1b5896ce04e9b7d669bbfd5177fecf9ad7274def:log:71', 'hash': '0xe41705512b0da408ed5d13ee1b5896ce04e9b7d669bbfd5177fecf9ad7274def', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2475.611210728564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x863401cfceaac2dd19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:10:32.000Z'}}, {'blockNum': '0x4bfe3c', 'uniqueId': '0x2e3e23e24cd0187f94a605891dad438bcff570e480dc207ecc7a2c64fcfa1d82:log:40', 'hash': '0x2e3e23e24cd0187f94a605891dad438bcff570e480dc207ecc7a2c64fcfa1d82', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 298.17990582242714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102a13d48549334d14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:11:13.000Z'}}, {'blockNum': '0x4bfe3c', 'uniqueId': '0x2e3e23e24cd0187f94a605891dad438bcff570e480dc207ecc7a2c64fcfa1d82:log:43', 'hash': '0x2e3e23e24cd0187f94a605891dad438bcff570e480dc207ecc7a2c64fcfa1d82', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 298.17990582242714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102a13d48549334d14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:11:13.000Z'}}, {'blockNum': '0x4bfe48', 'uniqueId': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60:log:19', 'hash': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:13:04.000Z'}}, {'blockNum': '0x4bfe48', 'uniqueId': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60:log:22', 'hash': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:13:04.000Z'}}, {'blockNum': '0x4bfe48', 'uniqueId': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60:log:23', 'hash': '0xddc9b6c79830e076cdfe2bcf0288bd11f4f1d0e37152ed2f37693d0b0f747a60', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:13:04.000Z'}}, {'blockNum': '0x4bfe50', 'uniqueId': '0x676fe6c894c34615b4b1588da949755394d97f2f7dbe7d568c135c8fb1171033:log:14', 'hash': '0x676fe6c894c34615b4b1588da949755394d97f2f7dbe7d568c135c8fb1171033', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2108.04488999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7246ffea8b9f5bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:15:26.000Z'}}, {'blockNum': '0x4bfe52', 'uniqueId': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47:log:14', 'hash': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2108.04488999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7246ffea8b9f5bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:15:47.000Z'}}, {'blockNum': '0x4bfe52', 'uniqueId': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47:log:17', 'hash': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2108.04488999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7246ffea8b9f5bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:15:47.000Z'}}, {'blockNum': '0x4bfe52', 'uniqueId': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47:log:18', 'hash': '0x9f71edf87296511bb8533cd36e5535e45f4249ce03980ed77cbf14647414ed47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2108.04488999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7246ffea8b9f5bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:15:47.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xf2db3b0f2c8a95f4c17e91ec5660efbd071bbfdb427eeafb338acb9d7cd4bbe1:log:12', 'hash': '0xf2db3b0f2c8a95f4c17e91ec5660efbd071bbfdb427eeafb338acb9d7cd4bbe1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe17e995e74d2feb8c0e8dcb9e9914093a4e38a3c', 'value': 31.80801026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b96cc0ce2f47c800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5:log:64', 'hash': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5:log:67', 'hash': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5:log:68', 'hash': '0xf84c96357d8d342566ea4eab9321308f95dcebd964512d4fb3be1810c3e10cd5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xa8ca33821b4a5c7297c415f1497a641be3f9c64fcde681eb7115b4f7d81506e1:log:83', 'hash': '0xa8ca33821b4a5c7297c415f1497a641be3f9c64fcde681eb7115b4f7d81506e1', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2384.0105719372295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x813ccaf825c66848c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe55', 'uniqueId': '0xa8ca33821b4a5c7297c415f1497a641be3f9c64fcde681eb7115b4f7d81506e1:log:85', 'hash': '0xa8ca33821b4a5c7297c415f1497a641be3f9c64fcde681eb7115b4f7d81506e1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2384.0105719372295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x813ccaf825c66848c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:17:29.000Z'}}, {'blockNum': '0x4bfe6f', 'uniqueId': '0x420db7a166eb263ebd94cb0ec188e1cbc248f593be2d80c1ae432d3562e4372a:log:19', 'hash': '0x420db7a166eb263ebd94cb0ec188e1cbc248f593be2d80c1ae432d3562e4372a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcab007003d241d7e7e8c1092ab93911b669ebd0c', 'value': 3207.53432038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xade17b0e23f3e2d800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:23:09.000Z'}}, {'blockNum': '0x4bfe76', 'uniqueId': '0x4a760335331a52d4319ed87457cc81e6f80741c5cbe46a15e29413ed92e5abbb:log:65', 'hash': '0x4a760335331a52d4319ed87457cc81e6f80741c5cbe46a15e29413ed92e5abbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 46.949261080650494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x028b8d48347b3eaf26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:25:23.000Z'}}, {'blockNum': '0x4bfe76', 'uniqueId': '0x4a760335331a52d4319ed87457cc81e6f80741c5cbe46a15e29413ed92e5abbb:log:68', 'hash': '0x4a760335331a52d4319ed87457cc81e6f80741c5cbe46a15e29413ed92e5abbb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 46.949261080650494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x028b8d48347b3eaf26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:25:23.000Z'}}, {'blockNum': '0x4bfe78', 'uniqueId': '0x888b1645e017c1ade467adff648744f0559d7f5ab1bb169cb6e32068220c9101:log:73', 'hash': '0x888b1645e017c1ade467adff648744f0559d7f5ab1bb169cb6e32068220c9101', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.218392132651157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x486b73ff155d8685', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:26:06.000Z'}}, {'blockNum': '0x4bfe78', 'uniqueId': '0x888b1645e017c1ade467adff648744f0559d7f5ab1bb169cb6e32068220c9101:log:75', 'hash': '0x888b1645e017c1ade467adff648744f0559d7f5ab1bb169cb6e32068220c9101', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.218392132651157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x486b73ff155d8685', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:26:06.000Z'}}, {'blockNum': '0x4bfe79', 'uniqueId': '0x6f71b3fe0b969f1088d1dfa18c40e0dcac9b9626fad0a3ba332150e6aca48380:log:12', 'hash': '0x6f71b3fe0b969f1088d1dfa18c40e0dcac9b9626fad0a3ba332150e6aca48380', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2475.159312197891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x862dbc587ce7774f16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:26:23.000Z'}}, {'blockNum': '0x4bfe79', 'uniqueId': '0x6f71b3fe0b969f1088d1dfa18c40e0dcac9b9626fad0a3ba332150e6aca48380:log:14', 'hash': '0x6f71b3fe0b969f1088d1dfa18c40e0dcac9b9626fad0a3ba332150e6aca48380', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2475.159312197891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x862dbc587ce7774f16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:26:23.000Z'}}, {'blockNum': '0x4bfe8f', 'uniqueId': '0xfb21da0ead861de6d8d5b024d6d89d49fb35f59635c556dabb161f6d7e22089d:log:118', 'hash': '0xfb21da0ead861de6d8d5b024d6d89d49fb35f59635c556dabb161f6d7e22089d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.686567352709572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410a082d42326628', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:29.000Z'}}, {'blockNum': '0x4bfe8f', 'uniqueId': '0xfb21da0ead861de6d8d5b024d6d89d49fb35f59635c556dabb161f6d7e22089d:log:121', 'hash': '0xfb21da0ead861de6d8d5b024d6d89d49fb35f59635c556dabb161f6d7e22089d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.686567352709572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410a082d42326628', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:29.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860:log:38', 'hash': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860', 'from': '0xcab007003d241d7e7e8c1092ab93911b669ebd0c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860:log:41', 'hash': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860:log:42', 'hash': '0x18edc5f368b13718b54a18dd99b6303e3f0fbc1551042502fbd17075b980d860', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x31070a254441fcbf783abf61b216b06160ff60d55f84933c8042b3fbcec54522:log:53', 'hash': '0x31070a254441fcbf783abf61b216b06160ff60d55f84933c8042b3fbcec54522', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1424.4816160582204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d38a75293f09890a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x31070a254441fcbf783abf61b216b06160ff60d55f84933c8042b3fbcec54522:log:56', 'hash': '0x31070a254441fcbf783abf61b216b06160ff60d55f84933c8042b3fbcec54522', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1424.4816160582204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d38a75293f09890a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x6d6f2409962c13c926d91722f97d1cbe7f805e1d6ce229b15fdf038413e3184a:log:74', 'hash': '0x6d6f2409962c13c926d91722f97d1cbe7f805e1d6ce229b15fdf038413e3184a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.1944972314931561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1093b4e740564d79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe92', 'uniqueId': '0x6d6f2409962c13c926d91722f97d1cbe7f805e1d6ce229b15fdf038413e3184a:log:77', 'hash': '0x6d6f2409962c13c926d91722f97d1cbe7f805e1d6ce229b15fdf038413e3184a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 1.1944972314931561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1093b4e740564d79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:31:53.000Z'}}, {'blockNum': '0x4bfe98', 'uniqueId': '0xca43913c5855672e4a1d871995561a872b06c7d567c7022f8b79b64f52ac7495:log:19', 'hash': '0xca43913c5855672e4a1d871995561a872b06c7d567c7022f8b79b64f52ac7495', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 247.85451372027126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d6fac1f0a01f34957', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:33:15.000Z'}}, {'blockNum': '0x4bfe98', 'uniqueId': '0xca43913c5855672e4a1d871995561a872b06c7d567c7022f8b79b64f52ac7495:log:22', 'hash': '0xca43913c5855672e4a1d871995561a872b06c7d567c7022f8b79b64f52ac7495', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 247.85451372027126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d6fac1f0a01f34957', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:33:15.000Z'}}, {'blockNum': '0x4bfe99', 'uniqueId': '0x004a23cda161e9002a812b147978ed1c88272b2feb9eebcff35663c6e98d57a7:log:48', 'hash': '0x004a23cda161e9002a812b147978ed1c88272b2feb9eebcff35663c6e98d57a7', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 900.1466303388152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cc0b3f1ca5ef88b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:33:26.000Z'}}, {'blockNum': '0x4bfe99', 'uniqueId': '0x004a23cda161e9002a812b147978ed1c88272b2feb9eebcff35663c6e98d57a7:log:50', 'hash': '0x004a23cda161e9002a812b147978ed1c88272b2feb9eebcff35663c6e98d57a7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 900.1466303388152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cc0b3f1ca5ef88b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:33:26.000Z'}}, {'blockNum': '0x4bfe9e', 'uniqueId': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7:log:47', 'hash': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:23.000Z'}}, {'blockNum': '0x4bfe9e', 'uniqueId': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7:log:50', 'hash': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:23.000Z'}}, {'blockNum': '0x4bfe9e', 'uniqueId': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7:log:51', 'hash': '0x8b88397a29d299eddf17621a7d75c830e4ab5ffd881a821ff6eb26728b5a58f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:23.000Z'}}, {'blockNum': '0x4bfea0', 'uniqueId': '0x3a4bf7d75906c9b7eaf45c927de809d8228d37a66baae7e29d157f5f86fbd53f:log:34', 'hash': '0x3a4bf7d75906c9b7eaf45c927de809d8228d37a66baae7e29d157f5f86fbd53f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 53.171684826885986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e1e7c5a2679115dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:47.000Z'}}, {'blockNum': '0x4bfea0', 'uniqueId': '0x3a4bf7d75906c9b7eaf45c927de809d8228d37a66baae7e29d157f5f86fbd53f:log:37', 'hash': '0x3a4bf7d75906c9b7eaf45c927de809d8228d37a66baae7e29d157f5f86fbd53f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 53.171684826885986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e1e7c5a2679115dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:34:47.000Z'}}, {'blockNum': '0x4bfea1', 'uniqueId': '0x64d05ceb5288230b5378c45423b2e5f29ac902be4c583c442b31485df266f67a:log:62', 'hash': '0x64d05ceb5288230b5378c45423b2e5f29ac902be4c583c442b31485df266f67a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2795.666198638056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x978da98b9643f7ecdc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:35:07.000Z'}}, {'blockNum': '0x4bfea1', 'uniqueId': '0x64d05ceb5288230b5378c45423b2e5f29ac902be4c583c442b31485df266f67a:log:64', 'hash': '0x64d05ceb5288230b5378c45423b2e5f29ac902be4c583c442b31485df266f67a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2795.666198638056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x978da98b9643f7ecdc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:35:07.000Z'}}, {'blockNum': '0x4bfea1', 'uniqueId': '0xc66f4575fd8afbd4edd47ca5c06ff4dd6f5a502282edbd6600c478309c45f427:log:85', 'hash': '0xc66f4575fd8afbd4edd47ca5c06ff4dd6f5a502282edbd6600c478309c45f427', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 574.7970053761113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f28e92efc0969c146', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:35:07.000Z'}}, {'blockNum': '0x4bfea1', 'uniqueId': '0xc66f4575fd8afbd4edd47ca5c06ff4dd6f5a502282edbd6600c478309c45f427:log:87', 'hash': '0xc66f4575fd8afbd4edd47ca5c06ff4dd6f5a502282edbd6600c478309c45f427', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 574.7970053761113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f28e92efc0969c146', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:35:07.000Z'}}, {'blockNum': '0x4bfea9', 'uniqueId': '0x67e8962848ad8f28cba223543ab363bbc9ccb6c722874f11a8b642958c81419b:log:20', 'hash': '0x67e8962848ad8f28cba223543ab363bbc9ccb6c722874f11a8b642958c81419b', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.217573169833732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48688b27718c677e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:36:46.000Z'}}, {'blockNum': '0x4bfea9', 'uniqueId': '0x67e8962848ad8f28cba223543ab363bbc9ccb6c722874f11a8b642958c81419b:log:22', 'hash': '0x67e8962848ad8f28cba223543ab363bbc9ccb6c722874f11a8b642958c81419b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.217573169833732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48688b27718c677e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:36:46.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0x84a6246fe7efac860e7b515b74d83b52024a123b64d7d612f628ca5027cb17ec:log:11', 'hash': '0x84a6246fe7efac860e7b515b74d83b52024a123b64d7d612f628ca5027cb17ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 1304.71154062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46ba8289892fbc7800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0x076a1c6612da6ce4597822c6ce16ed2a826704ba6caf8676e9c3a0d8d51657dd:log:68', 'hash': '0x076a1c6612da6ce4597822c6ce16ed2a826704ba6caf8676e9c3a0d8d51657dd', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4612.46111153853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xfa0ac1af13f57a4c7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0x076a1c6612da6ce4597822c6ce16ed2a826704ba6caf8676e9c3a0d8d51657dd:log:70', 'hash': '0x076a1c6612da6ce4597822c6ce16ed2a826704ba6caf8676e9c3a0d8d51657dd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4612.46111153853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xfa0ac1af13f57a4c7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0xf7529af58035fae499099d590ab5643cd7400d782ed69cc591a31dc4bf405c08:log:84', 'hash': '0xf7529af58035fae499099d590ab5643cd7400d782ed69cc591a31dc4bf405c08', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 318.87709480165626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11494f043d254811ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfeab', 'uniqueId': '0xf7529af58035fae499099d590ab5643cd7400d782ed69cc591a31dc4bf405c08:log:87', 'hash': '0xf7529af58035fae499099d590ab5643cd7400d782ed69cc591a31dc4bf405c08', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 318.87709480165626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11494f043d254811ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:05.000Z'}}, {'blockNum': '0x4bfead', 'uniqueId': '0x1fbcb92c50eb3d6e58e95943626c0f3184dd145074a7dc900f75a7b615819fb7:log:41', 'hash': '0x1fbcb92c50eb3d6e58e95943626c0f3184dd145074a7dc900f75a7b615819fb7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1474.9128118434883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ff486ebf2dbac14ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:34.000Z'}}, {'blockNum': '0x4bfead', 'uniqueId': '0x1fbcb92c50eb3d6e58e95943626c0f3184dd145074a7dc900f75a7b615819fb7:log:44', 'hash': '0x1fbcb92c50eb3d6e58e95943626c0f3184dd145074a7dc900f75a7b615819fb7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1474.9128118434883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ff486ebf2dbac14ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:34.000Z'}}, {'blockNum': '0x4bfeae', 'uniqueId': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2:log:19', 'hash': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1304.71154062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46ba8289892fbc7800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:42.000Z'}}, {'blockNum': '0x4bfeae', 'uniqueId': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2:log:22', 'hash': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1304.71154062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46ba8289892fbc7800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:42.000Z'}}, {'blockNum': '0x4bfeae', 'uniqueId': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2:log:23', 'hash': '0x99f462a0665d96f1a6b7484319c7496a01ca97040de8b3648072e97bf9f0dae2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1304.71154062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46ba8289892fbc7800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:37:42.000Z'}}, {'blockNum': '0x4bfeb1', 'uniqueId': '0xb2fc5b334b83f92304025874b4f8cb8fffad21c8d023ae4e5386553aeee885de:log:69', 'hash': '0xb2fc5b334b83f92304025874b4f8cb8fffad21c8d023ae4e5386553aeee885de', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 358.567047070916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13701e0d8a96b78fad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:38:22.000Z'}}, {'blockNum': '0x4bfeb1', 'uniqueId': '0xb2fc5b334b83f92304025874b4f8cb8fffad21c8d023ae4e5386553aeee885de:log:72', 'hash': '0xb2fc5b334b83f92304025874b4f8cb8fffad21c8d023ae4e5386553aeee885de', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 358.567047070916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13701e0d8a96b78fad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:38:22.000Z'}}, {'blockNum': '0x4bfeb4', 'uniqueId': '0x8b84123f05ef754fb540f026a439feab5687c3bb0c2b0ae2a26793b3960e72cf:log:95', 'hash': '0x8b84123f05ef754fb540f026a439feab5687c3bb0c2b0ae2a26793b3960e72cf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 28.40206213494988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018a286507fa42a4be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:39:15.000Z'}}, {'blockNum': '0x4bfeb4', 'uniqueId': '0x8b84123f05ef754fb540f026a439feab5687c3bb0c2b0ae2a26793b3960e72cf:log:98', 'hash': '0x8b84123f05ef754fb540f026a439feab5687c3bb0c2b0ae2a26793b3960e72cf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 28.40206213494988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018a286507fa42a4be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:39:15.000Z'}}, {'blockNum': '0x4bfeb5', 'uniqueId': '0xe56b245df4079f692d5b2b136a75c8c23d6c1324a1349ebfd364f08a151f6cda:log:50', 'hash': '0xe56b245df4079f692d5b2b136a75c8c23d6c1324a1349ebfd364f08a151f6cda', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 17.468028260158555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf26ae7272d3c402a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:39:25.000Z'}}, {'blockNum': '0x4bfeb5', 'uniqueId': '0xe56b245df4079f692d5b2b136a75c8c23d6c1324a1349ebfd364f08a151f6cda:log:52', 'hash': '0xe56b245df4079f692d5b2b136a75c8c23d6c1324a1349ebfd364f08a151f6cda', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 17.468028260158555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf26ae7272d3c402a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:39:25.000Z'}}, {'blockNum': '0x4bfeb9', 'uniqueId': '0xf6edc8bc1dae229d958701d0b5ed218ac7aacef5d219b8963c5e033f69b182cc:log:84', 'hash': '0xf6edc8bc1dae229d958701d0b5ed218ac7aacef5d219b8963c5e033f69b182cc', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 260.0603085437398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e190fd0c310178b3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:40:19.000Z'}}, {'blockNum': '0x4bfeb9', 'uniqueId': '0xf6edc8bc1dae229d958701d0b5ed218ac7aacef5d219b8963c5e033f69b182cc:log:86', 'hash': '0xf6edc8bc1dae229d958701d0b5ed218ac7aacef5d219b8963c5e033f69b182cc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 260.0603085437398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e190fd0c310178b3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:40:19.000Z'}}, {'blockNum': '0x4bfebf', 'uniqueId': '0x0fca697b13fae9b596b50076d17b2e7d02c42a237a9c543288b88ba78aff0339:log:159', 'hash': '0x0fca697b13fae9b596b50076d17b2e7d02c42a237a9c543288b88ba78aff0339', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1590.8366717211993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x563d4b345106cb90d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:41:23.000Z'}}, {'blockNum': '0x4bfebf', 'uniqueId': '0x0fca697b13fae9b596b50076d17b2e7d02c42a237a9c543288b88ba78aff0339:log:161', 'hash': '0x0fca697b13fae9b596b50076d17b2e7d02c42a237a9c543288b88ba78aff0339', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1590.8366717211993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x563d4b345106cb90d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:41:23.000Z'}}, {'blockNum': '0x4bfec3', 'uniqueId': '0x23323d5e1cdb2cc1473fe1b7eb7605236c438a194c0cdc5a04835c52937d1550:log:33', 'hash': '0x23323d5e1cdb2cc1473fe1b7eb7605236c438a194c0cdc5a04835c52937d1550', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 107.98746720282932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05daa08d4762c97d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:42:15.000Z'}}, {'blockNum': '0x4bfec3', 'uniqueId': '0x23323d5e1cdb2cc1473fe1b7eb7605236c438a194c0cdc5a04835c52937d1550:log:35', 'hash': '0x23323d5e1cdb2cc1473fe1b7eb7605236c438a194c0cdc5a04835c52937d1550', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 107.98746720282932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05daa08d4762c97d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:42:15.000Z'}}, {'blockNum': '0x4bfec5', 'uniqueId': '0xd55bff353fb44b8ac4efc3fa43a0bea72afb281418e3220026a31a8a4781d44c:log:65', 'hash': '0xd55bff353fb44b8ac4efc3fa43a0bea72afb281418e3220026a31a8a4781d44c', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 336.1521108384029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12390c33cc1cbe44c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:23.000Z'}}, {'blockNum': '0x4bfec5', 'uniqueId': '0xd55bff353fb44b8ac4efc3fa43a0bea72afb281418e3220026a31a8a4781d44c:log:67', 'hash': '0xd55bff353fb44b8ac4efc3fa43a0bea72afb281418e3220026a31a8a4781d44c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 336.1521108384029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12390c33cc1cbe44c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:23.000Z'}}, {'blockNum': '0x4bfec5', 'uniqueId': '0xcb26855de9103475712adae1c0ccca59cb57f68421f4a0c048c0a6ae97f5b560:log:83', 'hash': '0xcb26855de9103475712adae1c0ccca59cb57f68421f4a0c048c0a6ae97f5b560', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 50.38987879709167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02bb4ccfc9f7a2fb52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:23.000Z'}}, {'blockNum': '0x4bfec5', 'uniqueId': '0xcb26855de9103475712adae1c0ccca59cb57f68421f4a0c048c0a6ae97f5b560:log:86', 'hash': '0xcb26855de9103475712adae1c0ccca59cb57f68421f4a0c048c0a6ae97f5b560', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 50.38987879709167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02bb4ccfc9f7a2fb52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:23.000Z'}}, {'blockNum': '0x4bfec6', 'uniqueId': '0xd879d856bb3e7465df97d7889ae29d849ab42b69f923c0993103805c8434536c:log:58', 'hash': '0xd879d856bb3e7465df97d7889ae29d849ab42b69f923c0993103805c8434536c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 231.60221462881077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c8e205b1fb00b45c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:32.000Z'}}, {'blockNum': '0x4bfec6', 'uniqueId': '0xd879d856bb3e7465df97d7889ae29d849ab42b69f923c0993103805c8434536c:log:61', 'hash': '0xd879d856bb3e7465df97d7889ae29d849ab42b69f923c0993103805c8434536c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 231.60221462881077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c8e205b1fb00b45c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:32.000Z'}}, {'blockNum': '0x4bfeca', 'uniqueId': '0xf8f3acb17041f6ce5c1ff6a506dfd0473ae8dd981aa724b5851636a8fa317380:log:40', 'hash': '0xf8f3acb17041f6ce5c1ff6a506dfd0473ae8dd981aa724b5851636a8fa317380', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.123616972205643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x471abe7d797ad7b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:58.000Z'}}, {'blockNum': '0x4bfeca', 'uniqueId': '0xf8f3acb17041f6ce5c1ff6a506dfd0473ae8dd981aa724b5851636a8fa317380:log:42', 'hash': '0xf8f3acb17041f6ce5c1ff6a506dfd0473ae8dd981aa724b5851636a8fa317380', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.123616972205643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x471abe7d797ad7b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:43:58.000Z'}}, {'blockNum': '0x4bfecf', 'uniqueId': '0x481adee25358c5eb6b00dd89c8c1d9afda39e4120c4f405ad748c04de569623b:log:75', 'hash': '0x481adee25358c5eb6b00dd89c8c1d9afda39e4120c4f405ad748c04de569623b', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.135401656681768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70e6c0b41ba428ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:45:29.000Z'}}, {'blockNum': '0x4bfecf', 'uniqueId': '0x481adee25358c5eb6b00dd89c8c1d9afda39e4120c4f405ad748c04de569623b:log:77', 'hash': '0x481adee25358c5eb6b00dd89c8c1d9afda39e4120c4f405ad748c04de569623b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8.135401656681768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70e6c0b41ba428ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:45:29.000Z'}}, {'blockNum': '0x4bfed0', 'uniqueId': '0x425709bbacccae7983604bf4f2b09a769d489d9d212787390a737109ea8d43bf:log:23', 'hash': '0x425709bbacccae7983604bf4f2b09a769d489d9d212787390a737109ea8d43bf', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2264.055637651237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7abc156ef68277f37a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:45:34.000Z'}}, {'blockNum': '0x4bfed0', 'uniqueId': '0x425709bbacccae7983604bf4f2b09a769d489d9d212787390a737109ea8d43bf:log:25', 'hash': '0x425709bbacccae7983604bf4f2b09a769d489d9d212787390a737109ea8d43bf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2264.055637651237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7abc156ef68277f37a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:45:34.000Z'}}, {'blockNum': '0x4bfed3', 'uniqueId': '0x76ac17b12f16249038d12ca0a27ee3ac8d1c4d7af055063b84080660a68c175d:log:75', 'hash': '0x76ac17b12f16249038d12ca0a27ee3ac8d1c4d7af055063b84080660a68c175d', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 67.41137159927325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a7854d4f0c89f168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:06.000Z'}}, {'blockNum': '0x4bfed3', 'uniqueId': '0x76ac17b12f16249038d12ca0a27ee3ac8d1c4d7af055063b84080660a68c175d:log:77', 'hash': '0x76ac17b12f16249038d12ca0a27ee3ac8d1c4d7af055063b84080660a68c175d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 67.41137159927325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a7854d4f0c89f168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:06.000Z'}}, {'blockNum': '0x4bfed5', 'uniqueId': '0xe59d77c34f1381146d6e8cc44bf2f5898b076b8d4ddd20caedb26986ad8e3f0a:log:40', 'hash': '0xe59d77c34f1381146d6e8cc44bf2f5898b076b8d4ddd20caedb26986ad8e3f0a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1309.9683684045297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4703768a8dd6084cf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:21.000Z'}}, {'blockNum': '0x4bfed5', 'uniqueId': '0xe59d77c34f1381146d6e8cc44bf2f5898b076b8d4ddd20caedb26986ad8e3f0a:log:42', 'hash': '0xe59d77c34f1381146d6e8cc44bf2f5898b076b8d4ddd20caedb26986ad8e3f0a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1309.9683684045297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4703768a8dd6084cf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:21.000Z'}}, {'blockNum': '0x4bfed6', 'uniqueId': '0xc389d697b059a77b4174995cdcc50ce97cca46510e2e82450757efb5d9c27aaa:log:34', 'hash': '0xc389d697b059a77b4174995cdcc50ce97cca46510e2e82450757efb5d9c27aaa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 264.76158235012673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e5a4e186165a2ba1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:34.000Z'}}, {'blockNum': '0x4bfed6', 'uniqueId': '0xc389d697b059a77b4174995cdcc50ce97cca46510e2e82450757efb5d9c27aaa:log:37', 'hash': '0xc389d697b059a77b4174995cdcc50ce97cca46510e2e82450757efb5d9c27aaa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 264.76158235012673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e5a4e186165a2ba1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:46:34.000Z'}}, {'blockNum': '0x4bfedd', 'uniqueId': '0xdf2d012c3afd1ae8a91cd4772e0c222bfb6cee3d945708d13cbfb8a1577e4dea:log:64', 'hash': '0xdf2d012c3afd1ae8a91cd4772e0c222bfb6cee3d945708d13cbfb8a1577e4dea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 224.2020510632772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c276db19194a0a6cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:48:58.000Z'}}, {'blockNum': '0x4bfedd', 'uniqueId': '0xdf2d012c3afd1ae8a91cd4772e0c222bfb6cee3d945708d13cbfb8a1577e4dea:log:67', 'hash': '0xdf2d012c3afd1ae8a91cd4772e0c222bfb6cee3d945708d13cbfb8a1577e4dea', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 224.2020510632772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c276db19194a0a6cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:48:58.000Z'}}, {'blockNum': '0x4bfedf', 'uniqueId': '0x664b81f965e519db18c57513ef2742152424bbf9a2901302151f61aa281c442c:log:131', 'hash': '0x664b81f965e519db18c57513ef2742152424bbf9a2901302151f61aa281c442c', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 610.2333435945478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2114b058d82bea4281', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:49:05.000Z'}}, {'blockNum': '0x4bfedf', 'uniqueId': '0x664b81f965e519db18c57513ef2742152424bbf9a2901302151f61aa281c442c:log:133', 'hash': '0x664b81f965e519db18c57513ef2742152424bbf9a2901302151f61aa281c442c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 610.2333435945478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2114b058d82bea4281', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:49:05.000Z'}}, {'blockNum': '0x4bfedf', 'uniqueId': '0xc0a34bb46b978d204fbcfd951279407fcb646adfacd5b2cfd8c7875e4808edad:log:169', 'hash': '0xc0a34bb46b978d204fbcfd951279407fcb646adfacd5b2cfd8c7875e4808edad', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2192.468094018363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x76da9b6350de4506cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:49:05.000Z'}}, {'blockNum': '0x4bfedf', 'uniqueId': '0xc0a34bb46b978d204fbcfd951279407fcb646adfacd5b2cfd8c7875e4808edad:log:171', 'hash': '0xc0a34bb46b978d204fbcfd951279407fcb646adfacd5b2cfd8c7875e4808edad', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2192.468094018363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x76da9b6350de4506cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:49:05.000Z'}}, {'blockNum': '0x4bfee5', 'uniqueId': '0xe48207afe05291246238fa3abc69ddf74eb24c5d0ebe67fdab065596b84d869a:log:38', 'hash': '0xe48207afe05291246238fa3abc69ddf74eb24c5d0ebe67fdab065596b84d869a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.390872248344435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9d5ef5cab34d6c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:51:06.000Z'}}, {'blockNum': '0x4bfee5', 'uniqueId': '0xe48207afe05291246238fa3abc69ddf74eb24c5d0ebe67fdab065596b84d869a:log:40', 'hash': '0xe48207afe05291246238fa3abc69ddf74eb24c5d0ebe67fdab065596b84d869a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 13.390872248344435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9d5ef5cab34d6c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:51:06.000Z'}}, {'blockNum': '0x4bfee5', 'uniqueId': '0xee6404b8e44abe6f15efd78c11d983e552d3688e953c11c454f73707f557cd13:log:76', 'hash': '0xee6404b8e44abe6f15efd78c11d983e552d3688e953c11c454f73707f557cd13', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 468.1110244237388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x196058708e0d28561b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:51:06.000Z'}}, {'blockNum': '0x4bfee5', 'uniqueId': '0xee6404b8e44abe6f15efd78c11d983e552d3688e953c11c454f73707f557cd13:log:78', 'hash': '0xee6404b8e44abe6f15efd78c11d983e552d3688e953c11c454f73707f557cd13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 468.1110244237388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x196058708e0d28561b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:51:06.000Z'}}, {'blockNum': '0x4bfeea', 'uniqueId': '0x76ca3855084d51257a73de6e7cdc244d3920ce6043e24495455068e1d11d4e45:log:68', 'hash': '0x76ca3855084d51257a73de6e7cdc244d3920ce6043e24495455068e1d11d4e45', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1662.8351232413283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5a247916828a453b25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:52:11.000Z'}}, {'blockNum': '0x4bfeea', 'uniqueId': '0x76ca3855084d51257a73de6e7cdc244d3920ce6043e24495455068e1d11d4e45:log:70', 'hash': '0x76ca3855084d51257a73de6e7cdc244d3920ce6043e24495455068e1d11d4e45', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1662.8351232413283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5a247916828a453b25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:52:11.000Z'}}, {'blockNum': '0x4bfeec', 'uniqueId': '0x58c7d9e301c6cdb9a6773e2657a34863f488ff286ced46ab014e8c33012218da:log:50', 'hash': '0x58c7d9e301c6cdb9a6773e2657a34863f488ff286ced46ab014e8c33012218da', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.279087189795627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x72e539ef4441618d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:52:38.000Z'}}, {'blockNum': '0x4bfeec', 'uniqueId': '0x58c7d9e301c6cdb9a6773e2657a34863f488ff286ced46ab014e8c33012218da:log:52', 'hash': '0x58c7d9e301c6cdb9a6773e2657a34863f488ff286ced46ab014e8c33012218da', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8.279087189795627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x72e539ef4441618d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:52:38.000Z'}}, {'blockNum': '0x4bfef2', 'uniqueId': '0xb5791cf9e9435b22cc21261f93d3fbc4d41d9ddb51296cdcbbfb3f4e8d41cb21:log:38', 'hash': '0xb5791cf9e9435b22cc21261f93d3fbc4d41d9ddb51296cdcbbfb3f4e8d41cb21', 'from': '0xb3d96e75aa45f97ca747d45bd1d885c69b832c14', 'to': '0x2ea900df2d84c4892972d39e14de7ba01f11e542', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:54:36.000Z'}}, {'blockNum': '0x4bfef6', 'uniqueId': '0x1ea6a6d5f749bc89c91f9c6a3be6f0c8f1ab603ba9ba824c0cc9f6edb2aa692a:log:149', 'hash': '0x1ea6a6d5f749bc89c91f9c6a3be6f0c8f1ab603ba9ba824c0cc9f6edb2aa692a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 85.30831571716993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049fe4052974c95f9f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:56:17.000Z'}}, {'blockNum': '0x4bfef6', 'uniqueId': '0x1ea6a6d5f749bc89c91f9c6a3be6f0c8f1ab603ba9ba824c0cc9f6edb2aa692a:log:152', 'hash': '0x1ea6a6d5f749bc89c91f9c6a3be6f0c8f1ab603ba9ba824c0cc9f6edb2aa692a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 85.30831571716993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049fe4052974c95f9f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:56:17.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0xadf0aa8247e6580efe99b91d310e683dcca4853313e73e33fd5dc547ad19e39e:log:29', 'hash': '0xadf0aa8247e6580efe99b91d310e683dcca4853313e73e33fd5dc547ad19e39e', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2105.6533595166475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7225cf7e4031a5524d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0xadf0aa8247e6580efe99b91d310e683dcca4853313e73e33fd5dc547ad19e39e:log:31', 'hash': '0xadf0aa8247e6580efe99b91d310e683dcca4853313e73e33fd5dc547ad19e39e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2105.6533595166475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7225cf7e4031a5524d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0xdfd7fb142be19076de2e3f1d7412ffe3918c8b6ae8026104360ec5a6c6f34c20:log:45', 'hash': '0xdfd7fb142be19076de2e3f1d7412ffe3918c8b6ae8026104360ec5a6c6f34c20', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.557131083888898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe5c6beff52c6af70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0xdfd7fb142be19076de2e3f1d7412ffe3918c8b6ae8026104360ec5a6c6f34c20:log:47', 'hash': '0xdfd7fb142be19076de2e3f1d7412ffe3918c8b6ae8026104360ec5a6c6f34c20', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 16.557131083888898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe5c6beff52c6af70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0x746bba82222707bfbdfc1fdb7f974ec3ba9ace611e8b914e04be55d331a3cd43:log:61', 'hash': '0x746bba82222707bfbdfc1fdb7f974ec3ba9ace611e8b914e04be55d331a3cd43', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 99.11245943559896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055f7630bc8230723b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bfefc', 'uniqueId': '0x746bba82222707bfbdfc1fdb7f974ec3ba9ace611e8b914e04be55d331a3cd43:log:64', 'hash': '0x746bba82222707bfbdfc1fdb7f974ec3ba9ace611e8b914e04be55d331a3cd43', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 99.11245943559896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055f7630bc8230723b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:57:46.000Z'}}, {'blockNum': '0x4bff00', 'uniqueId': '0xb3c935c15c3a9048f1835c1685c883f9224d5f2f37495711b8261d576efa7076:log:3', 'hash': '0xb3c935c15c3a9048f1835c1685c883f9224d5f2f37495711b8261d576efa7076', 'from': '0xb3d96e75aa45f97ca747d45bd1d885c69b832c14', 'to': '0x2ea900df2d84c4892972d39e14de7ba01f11e542', 'value': 11357.789759399977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0267b4ff0a066cf71a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:58:10.000Z'}}, {'blockNum': '0x4bff04', 'uniqueId': '0x6f0944d84e37142a628fa4a0b12ffa461ff421a175353a979bed4d6ed0853613:log:41', 'hash': '0x6f0944d84e37142a628fa4a0b12ffa461ff421a175353a979bed4d6ed0853613', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 57.963977230974095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0324696a2f6d0a93b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:58:58.000Z'}}, {'blockNum': '0x4bff04', 'uniqueId': '0x6f0944d84e37142a628fa4a0b12ffa461ff421a175353a979bed4d6ed0853613:log:43', 'hash': '0x6f0944d84e37142a628fa4a0b12ffa461ff421a175353a979bed4d6ed0853613', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 57.963977230974095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0324696a2f6d0a93b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T06:58:58.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0x2e669361f3473718363f1e396b061ed095d665a7be66d9feed29bc3afbac510f:log:16', 'hash': '0x2e669361f3473718363f1e396b061ed095d665a7be66d9feed29bc3afbac510f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 835.5326082452959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d4b58205b8c7acdf4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0x2e669361f3473718363f1e396b061ed095d665a7be66d9feed29bc3afbac510f:log:19', 'hash': '0x2e669361f3473718363f1e396b061ed095d665a7be66d9feed29bc3afbac510f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 835.5326082452959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d4b58205b8c7acdf4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0x65458700846f3eb0152a391eb180eb5c9eed49f8d3979f77df684b754b923966:log:35', 'hash': '0x65458700846f3eb0152a391eb180eb5c9eed49f8d3979f77df684b754b923966', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1047.7427285031276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38cc59ec650b764b77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0x65458700846f3eb0152a391eb180eb5c9eed49f8d3979f77df684b754b923966:log:38', 'hash': '0x65458700846f3eb0152a391eb180eb5c9eed49f8d3979f77df684b754b923966', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1047.7427285031276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38cc59ec650b764b77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0xec45289d529a0a61bd16e8d26416a66179a7094435d0d540412921d313274c18:log:60', 'hash': '0xec45289d529a0a61bd16e8d26416a66179a7094435d0d540412921d313274c18', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2435.231280345776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x84039f7b10f1afbfac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff0c', 'uniqueId': '0xec45289d529a0a61bd16e8d26416a66179a7094435d0d540412921d313274c18:log:62', 'hash': '0xec45289d529a0a61bd16e8d26416a66179a7094435d0d540412921d313274c18', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2435.231280345776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x84039f7b10f1afbfac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:00:46.000Z'}}, {'blockNum': '0x4bff11', 'uniqueId': '0xf3b494ca2a679b86a088a9f5df2f45f1d987d271af9a336bbf0f04a8aa437ee2:log:28', 'hash': '0xf3b494ca2a679b86a088a9f5df2f45f1d987d271af9a336bbf0f04a8aa437ee2', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 825.8438281516303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cc4e2aa321eaa9c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:01:47.000Z'}}, {'blockNum': '0x4bff11', 'uniqueId': '0xf3b494ca2a679b86a088a9f5df2f45f1d987d271af9a336bbf0f04a8aa437ee2:log:30', 'hash': '0xf3b494ca2a679b86a088a9f5df2f45f1d987d271af9a336bbf0f04a8aa437ee2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 825.8438281516303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cc4e2aa321eaa9c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:01:47.000Z'}}, {'blockNum': '0x4bff14', 'uniqueId': '0x92b213bfefddd6da871166acae86b68e05e2f2cda3a0b8fec5dd20be67a9e390:log:18', 'hash': '0x92b213bfefddd6da871166acae86b68e05e2f2cda3a0b8fec5dd20be67a9e390', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x5a6fc2de011d93842411aa5f91a0a4acd3feffde', 'value': 52.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ddb7f8e1fae70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:02:23.000Z'}}, {'blockNum': '0x4bff1e', 'uniqueId': '0x37f797800345cd5437cd5e2ea193a76e0ae5a8096fe98ff82718eb384118f72f:log:60', 'hash': '0x37f797800345cd5437cd5e2ea193a76e0ae5a8096fe98ff82718eb384118f72f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 32.93969133381851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c9214abf0343d9e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:05:10.000Z'}}, {'blockNum': '0x4bff1e', 'uniqueId': '0x37f797800345cd5437cd5e2ea193a76e0ae5a8096fe98ff82718eb384118f72f:log:63', 'hash': '0x37f797800345cd5437cd5e2ea193a76e0ae5a8096fe98ff82718eb384118f72f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 32.93969133381851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c9214abf0343d9e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:05:10.000Z'}}, {'blockNum': '0x4bff20', 'uniqueId': '0x66a6c23e1e56edeba98b566447928aa00d36764e71b1fd0d6f4ec239cc0447c4:log:54', 'hash': '0x66a6c23e1e56edeba98b566447928aa00d36764e71b1fd0d6f4ec239cc0447c4', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 67.82206959270337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ad3864f534e8163d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:05:35.000Z'}}, {'blockNum': '0x4bff20', 'uniqueId': '0x66a6c23e1e56edeba98b566447928aa00d36764e71b1fd0d6f4ec239cc0447c4:log:56', 'hash': '0x66a6c23e1e56edeba98b566447928aa00d36764e71b1fd0d6f4ec239cc0447c4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 67.82206959270337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ad3864f534e8163d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:05:35.000Z'}}, {'blockNum': '0x4bff24', 'uniqueId': '0x963c12f3f22b1387c5fbbab952039c6feb8db3437cbe46a0fc491bc2b3957ff3:log:35', 'hash': '0x963c12f3f22b1387c5fbbab952039c6feb8db3437cbe46a0fc491bc2b3957ff3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 898.3128066270586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b29832297e000cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:06:15.000Z'}}, {'blockNum': '0x4bff24', 'uniqueId': '0x963c12f3f22b1387c5fbbab952039c6feb8db3437cbe46a0fc491bc2b3957ff3:log:38', 'hash': '0x963c12f3f22b1387c5fbbab952039c6feb8db3437cbe46a0fc491bc2b3957ff3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 898.3128066270586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b29832297e000cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:06:15.000Z'}}, {'blockNum': '0x4bff26', 'uniqueId': '0x27d3ad2bed9e301c13aa9c00c555cabfb0ae32e54993a03cde259da35406d3ad:log:60', 'hash': '0x27d3ad2bed9e301c13aa9c00c555cabfb0ae32e54993a03cde259da35406d3ad', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 826.525670051239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cce590dca79d1e857', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:07:11.000Z'}}, {'blockNum': '0x4bff26', 'uniqueId': '0x27d3ad2bed9e301c13aa9c00c555cabfb0ae32e54993a03cde259da35406d3ad:log:63', 'hash': '0x27d3ad2bed9e301c13aa9c00c555cabfb0ae32e54993a03cde259da35406d3ad', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 826.525670051239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cce590dca79d1e857', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:07:11.000Z'}}, {'blockNum': '0x4bff2a', 'uniqueId': '0x564dadd048c7cb65903e58726cd1d8a4b306e5e134927329e3c53477f7c5af0a:log:55', 'hash': '0x564dadd048c7cb65903e58726cd1d8a4b306e5e134927329e3c53477f7c5af0a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 26.196035838339643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016b8b03cd6ba2f5fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:08:09.000Z'}}, {'blockNum': '0x4bff2a', 'uniqueId': '0x564dadd048c7cb65903e58726cd1d8a4b306e5e134927329e3c53477f7c5af0a:log:57', 'hash': '0x564dadd048c7cb65903e58726cd1d8a4b306e5e134927329e3c53477f7c5af0a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 26.196035838339643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016b8b03cd6ba2f5fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:08:09.000Z'}}, {'blockNum': '0x4bff2c', 'uniqueId': '0xe63f4d2fe1ff25496b48ceee047b689c52a6e20108bad8b54b875d8b20eb2caa:log:13', 'hash': '0xe63f4d2fe1ff25496b48ceee047b689c52a6e20108bad8b54b875d8b20eb2caa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 224.54191062631594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c251e0a651231fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:08:27.000Z'}}, {'blockNum': '0x4bff2c', 'uniqueId': '0xe63f4d2fe1ff25496b48ceee047b689c52a6e20108bad8b54b875d8b20eb2caa:log:16', 'hash': '0xe63f4d2fe1ff25496b48ceee047b689c52a6e20108bad8b54b875d8b20eb2caa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 224.54191062631594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c251e0a651231fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:08:27.000Z'}}, {'blockNum': '0x4bff30', 'uniqueId': '0x48198f21fc7120dbdc60f4862e061abb4d79571768cc9304a312cedcc7f32f76:log:31', 'hash': '0x48198f21fc7120dbdc60f4862e061abb4d79571768cc9304a312cedcc7f32f76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 858.0481250249018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e83cf4f938b3b9e86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:09:52.000Z'}}, {'blockNum': '0x4bff30', 'uniqueId': '0x48198f21fc7120dbdc60f4862e061abb4d79571768cc9304a312cedcc7f32f76:log:34', 'hash': '0x48198f21fc7120dbdc60f4862e061abb4d79571768cc9304a312cedcc7f32f76', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 858.0481250249018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e83cf4f938b3b9e86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:09:52.000Z'}}, {'blockNum': '0x4bff38', 'uniqueId': '0xa33f5928d2b1bc02b0f0959fffc535ee8f96ad4204c9778e984e1e1ebe354c1b:log:88', 'hash': '0xa33f5928d2b1bc02b0f0959fffc535ee8f96ad4204c9778e984e1e1ebe354c1b', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 608.6089826984048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20fe2575373246b646', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:11:04.000Z'}}, {'blockNum': '0x4bff38', 'uniqueId': '0xa33f5928d2b1bc02b0f0959fffc535ee8f96ad4204c9778e984e1e1ebe354c1b:log:90', 'hash': '0xa33f5928d2b1bc02b0f0959fffc535ee8f96ad4204c9778e984e1e1ebe354c1b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 608.6089826984048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20fe2575373246b646', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:11:04.000Z'}}, {'blockNum': '0x4bff3d', 'uniqueId': '0x4068b5df381e71e2a0fca752f6b9385dc4ffdb97bd7a6d1d40e2bf01a5a658d8:log:40', 'hash': '0x4068b5df381e71e2a0fca752f6b9385dc4ffdb97bd7a6d1d40e2bf01a5a658d8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 276.918585252068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f0304721bf53c9524', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:11:44.000Z'}}, {'blockNum': '0x4bff3d', 'uniqueId': '0x4068b5df381e71e2a0fca752f6b9385dc4ffdb97bd7a6d1d40e2bf01a5a658d8:log:43', 'hash': '0x4068b5df381e71e2a0fca752f6b9385dc4ffdb97bd7a6d1d40e2bf01a5a658d8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 276.918585252068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f0304721bf53c9524', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:11:44.000Z'}}, {'blockNum': '0x4bff40', 'uniqueId': '0xbc8b0656ca660f0c02a0ad97434e9ce55fc36e549e1c3a6d1a993d82e1542a8b:log:97', 'hash': '0xbc8b0656ca660f0c02a0ad97434e9ce55fc36e549e1c3a6d1a993d82e1542a8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.68193274011668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081d410cc73c90fa71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:41.000Z'}}, {'blockNum': '0x4bff40', 'uniqueId': '0xbc8b0656ca660f0c02a0ad97434e9ce55fc36e549e1c3a6d1a993d82e1542a8b:log:100', 'hash': '0xbc8b0656ca660f0c02a0ad97434e9ce55fc36e549e1c3a6d1a993d82e1542a8b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.68193274011668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081d410cc73c90fa71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:41.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xb7dc07d91bcd3fdf42370f74068799db2659b989319dfd08423e97e903556cdc:log:28', 'hash': '0xb7dc07d91bcd3fdf42370f74068799db2659b989319dfd08423e97e903556cdc', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 98.51589544549047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05572ec4f2b5fb9d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xb7dc07d91bcd3fdf42370f74068799db2659b989319dfd08423e97e903556cdc:log:30', 'hash': '0xb7dc07d91bcd3fdf42370f74068799db2659b989319dfd08423e97e903556cdc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 98.51589544549047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05572ec4f2b5fb9d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xf765d35f248bd31cb1b62977a5f76e9b5db45cf1f7d67520c3742c17728c3860:log:49', 'hash': '0xf765d35f248bd31cb1b62977a5f76e9b5db45cf1f7d67520c3742c17728c3860', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.414510140009984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe3cc0e012957ab07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xf765d35f248bd31cb1b62977a5f76e9b5db45cf1f7d67520c3742c17728c3860:log:51', 'hash': '0xf765d35f248bd31cb1b62977a5f76e9b5db45cf1f7d67520c3742c17728c3860', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 16.414510140009984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe3cc0e012957ab07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xb34a50d10e139f8c1e930207e40d05f2448bb9a2abd53c0152033bc182e2d6e7:log:72', 'hash': '0xb34a50d10e139f8c1e930207e40d05f2448bb9a2abd53c0152033bc182e2d6e7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 79.03053797702461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0448c4df918091dea4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff43', 'uniqueId': '0xb34a50d10e139f8c1e930207e40d05f2448bb9a2abd53c0152033bc182e2d6e7:log:75', 'hash': '0xb34a50d10e139f8c1e930207e40d05f2448bb9a2abd53c0152033bc182e2d6e7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 79.03053797702461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0448c4df918091dea4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:12:54.000Z'}}, {'blockNum': '0x4bff46', 'uniqueId': '0x06a7917fa44af673e34c54089630c00351897d2f480623092e736c787dbbe96e:log:9', 'hash': '0x06a7917fa44af673e34c54089630c00351897d2f480623092e736c787dbbe96e', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x1b80169e0230832311c2b34a300732a627243540', 'value': 2.90354801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284b79880c57a400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:13:42.000Z'}}, {'blockNum': '0x4bff4e', 'uniqueId': '0xbdd50aa7afea6abecdab624491ff745e7e1ef686625f5007c5c281145a044460:log:3', 'hash': '0xbdd50aa7afea6abecdab624491ff745e7e1ef686625f5007c5c281145a044460', 'from': '0xb3d96e75aa45f97ca747d45bd1d885c69b832c14', 'to': '0x94740e6762f81fefaa0ec1789bc5df9d2acdd339', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:14:17.000Z'}}, {'blockNum': '0x4bff50', 'uniqueId': '0x71e333f1abbd92ab1e8e082d3b980b09cb8a4e122c4a05a2bb5403d04750a880:log:93', 'hash': '0x71e333f1abbd92ab1e8e082d3b980b09cb8a4e122c4a05a2bb5403d04750a880', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 942.9390575356056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331de87cec6363a34d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:15:14.000Z'}}, {'blockNum': '0x4bff50', 'uniqueId': '0x71e333f1abbd92ab1e8e082d3b980b09cb8a4e122c4a05a2bb5403d04750a880:log:96', 'hash': '0x71e333f1abbd92ab1e8e082d3b980b09cb8a4e122c4a05a2bb5403d04750a880', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 942.9390575356056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331de87cec6363a34d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:15:14.000Z'}}, {'blockNum': '0x4bff50', 'uniqueId': '0x25a0466fcdb2944a0e040380df3081ea374ce2c667d39e61302ac97cea699071:log:113', 'hash': '0x25a0466fcdb2944a0e040380df3081ea374ce2c667d39e61302ac97cea699071', 'from': '0x5a6fc2de011d93842411aa5f91a0a4acd3feffde', 'to': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'value': 52.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dd9471ef8b260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:15:14.000Z'}}, {'blockNum': '0x4bff52', 'uniqueId': '0x81371b47870f64c634c3937166875b07b83d1f21512c72a9d33810c7db25edde:log:69', 'hash': '0x81371b47870f64c634c3937166875b07b83d1f21512c72a9d33810c7db25edde', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 82.40626814516848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04779de0455a5b1990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:16:15.000Z'}}, {'blockNum': '0x4bff52', 'uniqueId': '0x81371b47870f64c634c3937166875b07b83d1f21512c72a9d33810c7db25edde:log:72', 'hash': '0x81371b47870f64c634c3937166875b07b83d1f21512c72a9d33810c7db25edde', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 82.40626814516848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04779de0455a5b1990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:16:15.000Z'}}, {'blockNum': '0x4bff54', 'uniqueId': '0xcd971339e4dd0dd9e873d2457ef585523ca5e06ed01c1fd03ee8367b0d2b57cb:log:75', 'hash': '0xcd971339e4dd0dd9e873d2457ef585523ca5e06ed01c1fd03ee8367b0d2b57cb', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8042.113095343142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b3f6bd3345f526a169', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:04.000Z'}}, {'blockNum': '0x4bff54', 'uniqueId': '0xcd971339e4dd0dd9e873d2457ef585523ca5e06ed01c1fd03ee8367b0d2b57cb:log:77', 'hash': '0xcd971339e4dd0dd9e873d2457ef585523ca5e06ed01c1fd03ee8367b0d2b57cb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8042.113095343142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b3f6bd3345f526a169', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:04.000Z'}}, {'blockNum': '0x4bff55', 'uniqueId': '0xd9738d2fc567f4f069fc23ccde8027d24ae82c3311ae0047b0009a4b78ff629f:log:38', 'hash': '0xd9738d2fc567f4f069fc23ccde8027d24ae82c3311ae0047b0009a4b78ff629f', 'from': '0xa9aabbfa7d2f1a7e946186cdfe056c9693fe3841', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.344264089035764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c49ed2c0d767155', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:08.000Z'}}, {'blockNum': '0x4bff55', 'uniqueId': '0xd9738d2fc567f4f069fc23ccde8027d24ae82c3311ae0047b0009a4b78ff629f:log:40', 'hash': '0xd9738d2fc567f4f069fc23ccde8027d24ae82c3311ae0047b0009a4b78ff629f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.344264089035764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c49ed2c0d767155', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:08.000Z'}}, {'blockNum': '0x4bff58', 'uniqueId': '0xbff144ddefe7f292893e1006ca2c0de2e511a658b9625e7d04c5c7e7ea6cf849:log:50', 'hash': '0xbff144ddefe7f292893e1006ca2c0de2e511a658b9625e7d04c5c7e7ea6cf849', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 224.7060305207318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2e6c30370c4d8234', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:44.000Z'}}, {'blockNum': '0x4bff58', 'uniqueId': '0xbff144ddefe7f292893e1006ca2c0de2e511a658b9625e7d04c5c7e7ea6cf849:log:53', 'hash': '0xbff144ddefe7f292893e1006ca2c0de2e511a658b9625e7d04c5c7e7ea6cf849', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 224.7060305207318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2e6c30370c4d8234', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:17:44.000Z'}}, {'blockNum': '0x4bff5d', 'uniqueId': '0x04c66fba8730549b656754fe4236c8b28a8585d3ebaf20523549a9843fea47c4:log:120', 'hash': '0x04c66fba8730549b656754fe4236c8b28a8585d3ebaf20523549a9843fea47c4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1497.887074991487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51335be68f147b30d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:19:34.000Z'}}, {'blockNum': '0x4bff5d', 'uniqueId': '0x04c66fba8730549b656754fe4236c8b28a8585d3ebaf20523549a9843fea47c4:log:123', 'hash': '0x04c66fba8730549b656754fe4236c8b28a8585d3ebaf20523549a9843fea47c4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1497.887074991487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51335be68f147b30d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:19:34.000Z'}}, {'blockNum': '0x4bff5e', 'uniqueId': '0xfb27a642b50358cf5d6761c0c6353ecf88c31c420faf9d91ea9694426d25d15c:log:88', 'hash': '0xfb27a642b50358cf5d6761c0c6353ecf88c31c420faf9d91ea9694426d25d15c', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1084.0167138401232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ac3c101def2d134b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:20:00.000Z'}}, {'blockNum': '0x4bff5e', 'uniqueId': '0xfb27a642b50358cf5d6761c0c6353ecf88c31c420faf9d91ea9694426d25d15c:log:90', 'hash': '0xfb27a642b50358cf5d6761c0c6353ecf88c31c420faf9d91ea9694426d25d15c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1084.0167138401232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ac3c101def2d134b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:20:00.000Z'}}, {'blockNum': '0x4bff61', 'uniqueId': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56:log:92', 'hash': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2994436442849c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:13.000Z'}}, {'blockNum': '0x4bff61', 'uniqueId': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56:log:95', 'hash': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2994436442849c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:13.000Z'}}, {'blockNum': '0x4bff61', 'uniqueId': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56:log:96', 'hash': '0x02dc0640e152fb29b8d8773f994fc910937eed75e5f437c2a8e233b450b0ad56', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2994436442849c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:13.000Z'}}, {'blockNum': '0x4bff62', 'uniqueId': '0x0c2fa6e48c32b6f36cfbc76c6a981e125e5d332158ca5b6faa06779b8120e9b9:log:50', 'hash': '0x0c2fa6e48c32b6f36cfbc76c6a981e125e5d332158ca5b6faa06779b8120e9b9', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7676.207850908328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a020c8a21bdf92a977', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:30.000Z'}}, {'blockNum': '0x4bff62', 'uniqueId': '0x0c2fa6e48c32b6f36cfbc76c6a981e125e5d332158ca5b6faa06779b8120e9b9:log:52', 'hash': '0x0c2fa6e48c32b6f36cfbc76c6a981e125e5d332158ca5b6faa06779b8120e9b9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7676.207850908328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a020c8a21bdf92a977', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:30.000Z'}}, {'blockNum': '0x4bff62', 'uniqueId': '0x393be937f493b6614092e357e013416d09a17714998f5b4b4fa98e8bb400c1f7:log:102', 'hash': '0x393be937f493b6614092e357e013416d09a17714998f5b4b4fa98e8bb400c1f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 464.8162277304664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19329ef86b3f859319', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:30.000Z'}}, {'blockNum': '0x4bff62', 'uniqueId': '0x393be937f493b6614092e357e013416d09a17714998f5b4b4fa98e8bb400c1f7:log:105', 'hash': '0x393be937f493b6614092e357e013416d09a17714998f5b4b4fa98e8bb400c1f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 464.8162277304664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19329ef86b3f859319', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:30.000Z'}}, {'blockNum': '0x4bff63', 'uniqueId': '0x1478456552317083ff9040a7597035e29d6a9499fbd20c19994e3363f203955c:log:67', 'hash': '0x1478456552317083ff9040a7597035e29d6a9499fbd20c19994e3363f203955c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.9352481762038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820c501d344a98e27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:43.000Z'}}, {'blockNum': '0x4bff63', 'uniqueId': '0x1478456552317083ff9040a7597035e29d6a9499fbd20c19994e3363f203955c:log:70', 'hash': '0x1478456552317083ff9040a7597035e29d6a9499fbd20c19994e3363f203955c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.9352481762038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820c501d344a98e27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:21:43.000Z'}}, {'blockNum': '0x4bff68', 'uniqueId': '0x6b0d9cfe1f706f785a74117301a73febc58403bb51d83d647ae0bbdb996e1659:log:47', 'hash': '0x6b0d9cfe1f706f785a74117301a73febc58403bb51d83d647ae0bbdb996e1659', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 11.864093831192484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4a5ba7b162197a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:22:41.000Z'}}, {'blockNum': '0x4bff68', 'uniqueId': '0x6b0d9cfe1f706f785a74117301a73febc58403bb51d83d647ae0bbdb996e1659:log:50', 'hash': '0x6b0d9cfe1f706f785a74117301a73febc58403bb51d83d647ae0bbdb996e1659', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 11.864093831192484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4a5ba7b162197a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:22:41.000Z'}}, {'blockNum': '0x4bff6b', 'uniqueId': '0x5dc8017413497a2c58dd14e9b3987f76b54086cfb5cba8a795c75844f154dea0:log:8', 'hash': '0x5dc8017413497a2c58dd14e9b3987f76b54086cfb5cba8a795c75844f154dea0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3e2f13412ad0fb51632c08eb21638a482e7161d5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:08.000Z'}}, {'blockNum': '0x4bff6c', 'uniqueId': '0xb51b8a928bddf7663fc2762544f6d4d3680e87c979be0408df899105eb99a416:log:111', 'hash': '0xb51b8a928bddf7663fc2762544f6d4d3680e87c979be0408df899105eb99a416', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.9323686976699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820bac6f46d8281b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:17.000Z'}}, {'blockNum': '0x4bff6c', 'uniqueId': '0xb51b8a928bddf7663fc2762544f6d4d3680e87c979be0408df899105eb99a416:log:114', 'hash': '0xb51b8a928bddf7663fc2762544f6d4d3680e87c979be0408df899105eb99a416', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.9323686976699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820bac6f46d8281b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:17.000Z'}}, {'blockNum': '0x4bff6d', 'uniqueId': '0x0f899e3202c832fab41a88913b27c1ca49b3e0dcc96b75b07ea6e6850ffc1999:log:6', 'hash': '0x0f899e3202c832fab41a88913b27c1ca49b3e0dcc96b75b07ea6e6850ffc1999', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb4bd55b3d6c00c62ecd1dc63f374286b614b699c', 'value': 53.395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e5012599e5fb8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:28.000Z'}}, {'blockNum': '0x4bff6d', 'uniqueId': '0x27895feadc65f24ba1e2c9b0c5dc5e5b8c381687555c2a856ddfd52725eed23e:log:153', 'hash': '0x27895feadc65f24ba1e2c9b0c5dc5e5b8c381687555c2a856ddfd52725eed23e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 13.643713097615471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbd5834c658b6f4aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:28.000Z'}}, {'blockNum': '0x4bff6d', 'uniqueId': '0x27895feadc65f24ba1e2c9b0c5dc5e5b8c381687555c2a856ddfd52725eed23e:log:156', 'hash': '0x27895feadc65f24ba1e2c9b0c5dc5e5b8c381687555c2a856ddfd52725eed23e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 13.643713097615471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbd5834c658b6f4aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:28.000Z'}}, {'blockNum': '0x4bff6e', 'uniqueId': '0xf76f469a86b51c310f4cbce99757c64083c1fa9fcd5854e88b4f9b162852969d:log:123', 'hash': '0xf76f469a86b51c310f4cbce99757c64083c1fa9fcd5854e88b4f9b162852969d', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 38.717819932370084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0219515417ba752531', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:31.000Z'}}, {'blockNum': '0x4bff6e', 'uniqueId': '0xf76f469a86b51c310f4cbce99757c64083c1fa9fcd5854e88b4f9b162852969d:log:126', 'hash': '0xf76f469a86b51c310f4cbce99757c64083c1fa9fcd5854e88b4f9b162852969d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 38.717819932370084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0219515417ba752531', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:24:31.000Z'}}, {'blockNum': '0x4bff71', 'uniqueId': '0xb85c44e73681f62efaa8e29ba58ec23442cbf8f2d7fce5fc0f9b985c5874f196:log:143', 'hash': '0xb85c44e73681f62efaa8e29ba58ec23442cbf8f2d7fce5fc0f9b985c5874f196', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 6.2687847877789595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ff328d10effa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:25:13.000Z'}}, {'blockNum': '0x4bff71', 'uniqueId': '0xb85c44e73681f62efaa8e29ba58ec23442cbf8f2d7fce5fc0f9b985c5874f196:log:146', 'hash': '0xb85c44e73681f62efaa8e29ba58ec23442cbf8f2d7fce5fc0f9b985c5874f196', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 6.2687847877789595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ff328d10effa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:25:13.000Z'}}, {'blockNum': '0x4bff7c', 'uniqueId': '0xec72c1221ad02bea9fdebdf3f6f2c1cdc76c49215eaa44a00460ce20894f48af:log:137', 'hash': '0xec72c1221ad02bea9fdebdf3f6f2c1cdc76c49215eaa44a00460ce20894f48af', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.9293461022377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820b009eb9679794c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:27:06.000Z'}}, {'blockNum': '0x4bff7c', 'uniqueId': '0xec72c1221ad02bea9fdebdf3f6f2c1cdc76c49215eaa44a00460ce20894f48af:log:140', 'hash': '0xec72c1221ad02bea9fdebdf3f6f2c1cdc76c49215eaa44a00460ce20894f48af', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 149.9293461022377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820b009eb9679794c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:27:06.000Z'}}, {'blockNum': '0x4bff86', 'uniqueId': '0x2a80fe060c75d8dbd3e6ad0822c8aa2b203e0d6ba8df12e51459fb9395ef68ce:log:60', 'hash': '0x2a80fe060c75d8dbd3e6ad0822c8aa2b203e0d6ba8df12e51459fb9395ef68ce', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 38.418805373150796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02152b03ef7185a5d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:28:42.000Z'}}, {'blockNum': '0x4bff86', 'uniqueId': '0x2a80fe060c75d8dbd3e6ad0822c8aa2b203e0d6ba8df12e51459fb9395ef68ce:log:63', 'hash': '0x2a80fe060c75d8dbd3e6ad0822c8aa2b203e0d6ba8df12e51459fb9395ef68ce', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 38.418805373150796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02152b03ef7185a5d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:28:42.000Z'}}, {'blockNum': '0x4bff87', 'uniqueId': '0x06fa342783649ce1cda76190032ab826059fc0902c34764293682bc77ccff932:log:36', 'hash': '0x06fa342783649ce1cda76190032ab826059fc0902c34764293682bc77ccff932', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 869.5375952621029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f23421be21d061c37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:28:54.000Z'}}, {'blockNum': '0x4bff87', 'uniqueId': '0x06fa342783649ce1cda76190032ab826059fc0902c34764293682bc77ccff932:log:39', 'hash': '0x06fa342783649ce1cda76190032ab826059fc0902c34764293682bc77ccff932', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 869.5375952621029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f23421be21d061c37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:28:54.000Z'}}, {'blockNum': '0x4bff89', 'uniqueId': '0x34d2fdffbd9b204309e9680301608925e0018eed85fa70f197a2c20217d7301b:log:26', 'hash': '0x34d2fdffbd9b204309e9680301608925e0018eed85fa70f197a2c20217d7301b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.2892477335374641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e453fba0fa5edd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:29:04.000Z'}}, {'blockNum': '0x4bff89', 'uniqueId': '0x34d2fdffbd9b204309e9680301608925e0018eed85fa70f197a2c20217d7301b:log:29', 'hash': '0x34d2fdffbd9b204309e9680301608925e0018eed85fa70f197a2c20217d7301b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb33f5f5172fce076e9355afcf2529982260b7a4b', 'value': 1.2892477335374641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e453fba0fa5edd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:29:04.000Z'}}, {'blockNum': '0x4bff8b', 'uniqueId': '0xdc5abd71cf4cf6fbe98bcb5a626cffd6aa4a703d8b75ee1b66eae1bca036f8fe:log:166', 'hash': '0xdc5abd71cf4cf6fbe98bcb5a626cffd6aa4a703d8b75ee1b66eae1bca036f8fe', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.623689172502214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf1c7d2a0b87878', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:29:23.000Z'}}, {'blockNum': '0x4bff8b', 'uniqueId': '0xdc5abd71cf4cf6fbe98bcb5a626cffd6aa4a703d8b75ee1b66eae1bca036f8fe:log:169', 'hash': '0xdc5abd71cf4cf6fbe98bcb5a626cffd6aa4a703d8b75ee1b66eae1bca036f8fe', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 14.623689172502214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf1c7d2a0b87878', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:29:23.000Z'}}, {'blockNum': '0x4bff8e', 'uniqueId': '0x9e984deacc29678362c934b1c4b9127c2b34bf238621e21acc3cf30fd8dacaf0:log:54', 'hash': '0x9e984deacc29678362c934b1c4b9127c2b34bf238621e21acc3cf30fd8dacaf0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.8191760250796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040d3b015b12f72ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:30:14.000Z'}}, {'blockNum': '0x4bff8e', 'uniqueId': '0x9e984deacc29678362c934b1c4b9127c2b34bf238621e21acc3cf30fd8dacaf0:log:57', 'hash': '0x9e984deacc29678362c934b1c4b9127c2b34bf238621e21acc3cf30fd8dacaf0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 299.8191760250796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040d3b015b12f72ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:30:14.000Z'}}, {'blockNum': '0x4bff93', 'uniqueId': '0xee58afb0d57a4fe501865f7c8a07dfcbeb166530bdfdee38dcf2c61452b8c97b:log:69', 'hash': '0xee58afb0d57a4fe501865f7c8a07dfcbeb166530bdfdee38dcf2c61452b8c97b', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1509.1331379553371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51cf6df13d86721d50', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:31:18.000Z'}}, {'blockNum': '0x4bff93', 'uniqueId': '0xee58afb0d57a4fe501865f7c8a07dfcbeb166530bdfdee38dcf2c61452b8c97b:log:71', 'hash': '0xee58afb0d57a4fe501865f7c8a07dfcbeb166530bdfdee38dcf2c61452b8c97b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1509.1331379553371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51cf6df13d86721d50', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:31:18.000Z'}}, {'blockNum': '0x4bff97', 'uniqueId': '0x1e2493159ff6d440ffc19fa4abbb75267229c703b6e7d6d00bc0bc22335c6ab1:log:152', 'hash': '0x1e2493159ff6d440ffc19fa4abbb75267229c703b6e7d6d00bc0bc22335c6ab1', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 120.41120606475184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06870a89f331e4f5c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:31:41.000Z'}}, {'blockNum': '0x4bff97', 'uniqueId': '0x1e2493159ff6d440ffc19fa4abbb75267229c703b6e7d6d00bc0bc22335c6ab1:log:155', 'hash': '0x1e2493159ff6d440ffc19fa4abbb75267229c703b6e7d6d00bc0bc22335c6ab1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 120.41120606475184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06870a89f331e4f5c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:31:41.000Z'}}, {'blockNum': '0x4bffa3', 'uniqueId': '0xe159ccebfafe3bb58ea3c11ba655c7cea2e5e9d7646d916a382eee47a7a6fbde:log:145', 'hash': '0xe159ccebfafe3bb58ea3c11ba655c7cea2e5e9d7646d916a382eee47a7a6fbde', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5917.633984221049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0140cbab33ae332e2652', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:34:15.000Z'}}, {'blockNum': '0x4bffa3', 'uniqueId': '0xe159ccebfafe3bb58ea3c11ba655c7cea2e5e9d7646d916a382eee47a7a6fbde:log:147', 'hash': '0xe159ccebfafe3bb58ea3c11ba655c7cea2e5e9d7646d916a382eee47a7a6fbde', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5917.633984221049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0140cbab33ae332e2652', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:34:15.000Z'}}, {'blockNum': '0x4bffb1', 'uniqueId': '0x1e0a44b36f72488e232eeacbfb45bf7a86beececa4176730edac2f58d58d30fc:log:3', 'hash': '0x1e0a44b36f72488e232eeacbfb45bf7a86beececa4176730edac2f58d58d30fc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x09122e1e318164e4e3a98788b3b9068eeec3489e', 'value': 8.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7492cb7eb1480000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:37:49.000Z'}}, {'blockNum': '0x4bffbc', 'uniqueId': '0x90fa7db04b7189119e24a159a285e68f66aa6ca42ff896e5e27a0f165be02f47:log:145', 'hash': '0x90fa7db04b7189119e24a159a285e68f66aa6ca42ff896e5e27a0f165be02f47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 30.007772838232416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a07106688b755c07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:40:00.000Z'}}, {'blockNum': '0x4bffbc', 'uniqueId': '0x90fa7db04b7189119e24a159a285e68f66aa6ca42ff896e5e27a0f165be02f47:log:148', 'hash': '0x90fa7db04b7189119e24a159a285e68f66aa6ca42ff896e5e27a0f165be02f47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 30.007772838232416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a07106688b755c07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:40:00.000Z'}}, {'blockNum': '0x4bffbe', 'uniqueId': '0x4d2afd1b3e01ad7beaf1f2bc716ccdca9caf8b3882040d74f562ed9248df5253:log:5', 'hash': '0x4d2afd1b3e01ad7beaf1f2bc716ccdca9caf8b3882040d74f562ed9248df5253', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 12.5659146203046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xae6318c52524aa4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:40:44.000Z'}}, {'blockNum': '0x4bffbe', 'uniqueId': '0x4d2afd1b3e01ad7beaf1f2bc716ccdca9caf8b3882040d74f562ed9248df5253:log:8', 'hash': '0x4d2afd1b3e01ad7beaf1f2bc716ccdca9caf8b3882040d74f562ed9248df5253', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 12.5659146203046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xae6318c52524aa4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:40:44.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb:log:76', 'hash': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb:log:79', 'hash': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb:log:80', 'hash': '0x0bfe98abd94b225c28fe6a91e7bf8998e906fbd56436a6a8a05d35bf0d8b26bb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0xfef063ab051c36b58ee14536c03e78fdbd4a3a4a5845f48d1eb3d284fc6be949:log:107', 'hash': '0xfef063ab051c36b58ee14536c03e78fdbd4a3a4a5845f48d1eb3d284fc6be949', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.5006151549374678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d34188669d937a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffc7', 'uniqueId': '0xfef063ab051c36b58ee14536c03e78fdbd4a3a4a5845f48d1eb3d284fc6be949:log:110', 'hash': '0xfef063ab051c36b58ee14536c03e78fdbd4a3a4a5845f48d1eb3d284fc6be949', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1.5006151549374678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d34188669d937a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:43:03.000Z'}}, {'blockNum': '0x4bffd2', 'uniqueId': '0xb4fb0a4ac196c8cca89250fe06588e3dcd72ce4f88e7768d92302dc9af873c8d:log:31', 'hash': '0xb4fb0a4ac196c8cca89250fe06588e3dcd72ce4f88e7768d92302dc9af873c8d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 255.10069101859352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd43bb6e667f2dc91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:44:51.000Z'}}, {'blockNum': '0x4bffd2', 'uniqueId': '0xb4fb0a4ac196c8cca89250fe06588e3dcd72ce4f88e7768d92302dc9af873c8d:log:34', 'hash': '0xb4fb0a4ac196c8cca89250fe06588e3dcd72ce4f88e7768d92302dc9af873c8d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 255.10069101859352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd43bb6e667f2dc91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:44:51.000Z'}}, {'blockNum': '0x4bffd2', 'uniqueId': '0xf85f1d6192f61bced0d8ab86ab6525ea211231ab6226173299ca76b1e20b5ff4:log:166', 'hash': '0xf85f1d6192f61bced0d8ab86ab6525ea211231ab6226173299ca76b1e20b5ff4', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 72.78285317908842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f210a358a6f9bbc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:44:51.000Z'}}, {'blockNum': '0x4bffd2', 'uniqueId': '0xf85f1d6192f61bced0d8ab86ab6525ea211231ab6226173299ca76b1e20b5ff4:log:168', 'hash': '0xf85f1d6192f61bced0d8ab86ab6525ea211231ab6226173299ca76b1e20b5ff4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 72.78285317908842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f210a358a6f9bbc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:44:51.000Z'}}, {'blockNum': '0x4bffd5', 'uniqueId': '0x0ef6b30679d0ca314f514d6a26699a3a5332c9318a014e66592b82b86b8d6dc9:log:13', 'hash': '0x0ef6b30679d0ca314f514d6a26699a3a5332c9318a014e66592b82b86b8d6dc9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2175.563739717604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f0030ea4782ff060', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:45:29.000Z'}}, {'blockNum': '0x4bffd5', 'uniqueId': '0x0ef6b30679d0ca314f514d6a26699a3a5332c9318a014e66592b82b86b8d6dc9:log:16', 'hash': '0x0ef6b30679d0ca314f514d6a26699a3a5332c9318a014e66592b82b86b8d6dc9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 2175.563739717604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75f0030ea4782ff060', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:45:29.000Z'}}, {'blockNum': '0x4bffd8', 'uniqueId': '0xa3ed1e283df797a204a82f6f1193263271b82621bc9c5648290a8f1c55d209b5:log:14', 'hash': '0xa3ed1e283df797a204a82f6f1193263271b82621bc9c5648290a8f1c55d209b5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 14998.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d109cd71232c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:47:38.000Z'}}, {'blockNum': '0x4bffd8', 'uniqueId': '0x70229a6f9ae8ac6148cfb9f09ce487646bc8c2eb97027a27da6bd431b0ed21bd:log:55', 'hash': '0x70229a6f9ae8ac6148cfb9f09ce487646bc8c2eb97027a27da6bd431b0ed21bd', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x54bb3831a77868c7a117c5b77429a53fbc6255b2', 'value': 115.7428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064641075e4d150000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:47:38.000Z'}}, {'blockNum': '0x4bffe5', 'uniqueId': '0xa03a3249d9ef8b4105f2c2beb1a98171bb16b4710dc9684508d0c6b4f2d0afae:log:12', 'hash': '0xa03a3249d9ef8b4105f2c2beb1a98171bb16b4710dc9684508d0c6b4f2d0afae', 'from': '0x642ae7eb0215e6459c5420a874452d723cde5acf', 'to': '0x46f4b65922e4326669f17137dd9f3810bea1a472', 'value': 4.0386423544124e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24bb326dd93c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:50:52.000Z'}}, {'blockNum': '0x4bffe7', 'uniqueId': '0x12a9564a5a049a4aafb1dbdd572b5280383e85ed09dd069cce296e86ad87403d:log:133', 'hash': '0x12a9564a5a049a4aafb1dbdd572b5280383e85ed09dd069cce296e86ad87403d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1624.5546024376624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5811395ba86ad08936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:51:10.000Z'}}, {'blockNum': '0x4bffe7', 'uniqueId': '0x12a9564a5a049a4aafb1dbdd572b5280383e85ed09dd069cce296e86ad87403d:log:136', 'hash': '0x12a9564a5a049a4aafb1dbdd572b5280383e85ed09dd069cce296e86ad87403d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1624.5546024376624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5811395ba86ad08936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:51:10.000Z'}}, {'blockNum': '0x4bffe7', 'uniqueId': '0xd2d6296e0dec718ec2c56f1f86796ed07c73e92af9f9d26b58a089deebbf142c:log:159', 'hash': '0xd2d6296e0dec718ec2c56f1f86796ed07c73e92af9f9d26b58a089deebbf142c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.98924400366917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082184d6be8816b19f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:51:10.000Z'}}, {'blockNum': '0x4bffe7', 'uniqueId': '0xd2d6296e0dec718ec2c56f1f86796ed07c73e92af9f9d26b58a089deebbf142c:log:162', 'hash': '0xd2d6296e0dec718ec2c56f1f86796ed07c73e92af9f9d26b58a089deebbf142c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 149.98924400366917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082184d6be8816b19f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:51:10.000Z'}}, {'blockNum': '0x4bffe8', 'uniqueId': '0x4381e1912201161c3a1c640576216eac6936bc3e12843f7d04ee85c5dd99fa7a:log:75', 'hash': '0x4381e1912201161c3a1c640576216eac6936bc3e12843f7d04ee85c5dd99fa7a', 'from': '0x54bb3831a77868c7a117c5b77429a53fbc6255b2', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 115.7428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064641075e4d150000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:52:04.000Z'}}, {'blockNum': '0x4bffef', 'uniqueId': '0x1ff60edfdb59200047051a77f141bba3aacabab66a4bbeb2493132518ef9db03:log:209', 'hash': '0x1ff60edfdb59200047051a77f141bba3aacabab66a4bbeb2493132518ef9db03', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 460.96528955058994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fd2db08c27ffba04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:53:14.000Z'}}, {'blockNum': '0x4bffef', 'uniqueId': '0x1ff60edfdb59200047051a77f141bba3aacabab66a4bbeb2493132518ef9db03:log:212', 'hash': '0x1ff60edfdb59200047051a77f141bba3aacabab66a4bbeb2493132518ef9db03', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 460.96528955058994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fd2db08c27ffba04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:53:14.000Z'}}, {'blockNum': '0x4bfff5', 'uniqueId': '0x1d27485d81ab28e7522cafa06dbf4cb1a1068339774d1286007d8329596158f7:log:63', 'hash': '0x1d27485d81ab28e7522cafa06dbf4cb1a1068339774d1286007d8329596158f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2496.4921457410587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8755c9cb91b884dd04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:54:47.000Z'}}, {'blockNum': '0x4bfff5', 'uniqueId': '0x1d27485d81ab28e7522cafa06dbf4cb1a1068339774d1286007d8329596158f7:log:66', 'hash': '0x1d27485d81ab28e7522cafa06dbf4cb1a1068339774d1286007d8329596158f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2496.4921457410587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8755c9cb91b884dd04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:54:47.000Z'}}, {'blockNum': '0x4bfffb', 'uniqueId': '0x32f7e957329d688ebcc151405cc1c471f8e0fd59e707dd4b0014b48a6202e3ed:log:153', 'hash': '0x32f7e957329d688ebcc151405cc1c471f8e0fd59e707dd4b0014b48a6202e3ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 284.87218680065604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f71655093e1d2d9fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:56:00.000Z'}}, {'blockNum': '0x4bfffb', 'uniqueId': '0x32f7e957329d688ebcc151405cc1c471f8e0fd59e707dd4b0014b48a6202e3ed:log:156', 'hash': '0x32f7e957329d688ebcc151405cc1c471f8e0fd59e707dd4b0014b48a6202e3ed', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 284.87218680065604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f71655093e1d2d9fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:56:00.000Z'}}, {'blockNum': '0x4bfffd', 'uniqueId': '0x976c0e35f8b2138be2d4e308687bc7f05ee4a22657b8ed6dd3edfd820977bf87:log:15', 'hash': '0x976c0e35f8b2138be2d4e308687bc7f05ee4a22657b8ed6dd3edfd820977bf87', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 319.4951874377254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1151e2ec377077fa67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:56:08.000Z'}}, {'blockNum': '0x4bfffd', 'uniqueId': '0x976c0e35f8b2138be2d4e308687bc7f05ee4a22657b8ed6dd3edfd820977bf87:log:18', 'hash': '0x976c0e35f8b2138be2d4e308687bc7f05ee4a22657b8ed6dd3edfd820977bf87', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 319.4951874377254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1151e2ec377077fa67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:56:08.000Z'}}, {'blockNum': '0x4c0001', 'uniqueId': '0x4817942fce108d67d29eeca9bc187aa79d7d6feba8b6e1773e1207d9610c125e:log:2', 'hash': '0x4817942fce108d67d29eeca9bc187aa79d7d6feba8b6e1773e1207d9610c125e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0bf5fd3d657b40cca170fdd2beb458bbb3e14ff5', 'value': 421.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16d5014a0234b28000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:57:12.000Z'}}, {'blockNum': '0x4c0001', 'uniqueId': '0x72dce9b39cd7a247bb93ca9cf1c38c433c532b006ca9e6c9c07bf1a155420eaa:log:15', 'hash': '0x72dce9b39cd7a247bb93ca9cf1c38c433c532b006ca9e6c9c07bf1a155420eaa', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x43741f41faeb5638389884931bb463cbf9ebcec3', 'value': 1.82396754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x195008d0578b0800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:57:12.000Z'}}, {'blockNum': '0x4c0001', 'uniqueId': '0xabba24edafafe29ebcfe86535a9429896f2ca458b5949a06d2947b7e6bea5c33:log:80', 'hash': '0xabba24edafafe29ebcfe86535a9429896f2ca458b5949a06d2947b7e6bea5c33', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.44633796933661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6756b4ee43cfed69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:57:12.000Z'}}, {'blockNum': '0x4c0001', 'uniqueId': '0xabba24edafafe29ebcfe86535a9429896f2ca458b5949a06d2947b7e6bea5c33:log:82', 'hash': '0xabba24edafafe29ebcfe86535a9429896f2ca458b5949a06d2947b7e6bea5c33', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7.44633796933661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6756b4ee43cfed69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T07:57:12.000Z'}}, {'blockNum': '0x4c0012', 'uniqueId': '0xaaabcfb74c6ddec3e1f80e856e372aa1863eaec41a0a601a447ee1f1a2aacc47:log:45', 'hash': '0xaaabcfb74c6ddec3e1f80e856e372aa1863eaec41a0a601a447ee1f1a2aacc47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5994.852349111682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144fb49f16d95dcc0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:01:09.000Z'}}, {'blockNum': '0x4c0012', 'uniqueId': '0xaaabcfb74c6ddec3e1f80e856e372aa1863eaec41a0a601a447ee1f1a2aacc47:log:48', 'hash': '0xaaabcfb74c6ddec3e1f80e856e372aa1863eaec41a0a601a447ee1f1a2aacc47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 5994.852349111682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144fb49f16d95dcc0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:01:09.000Z'}}, {'blockNum': '0x4c0013', 'uniqueId': '0xc46c36b9707d2b1d2b7157ec04699299d48f23c19a5b84bcfbb13a243ccd0b95:log:1', 'hash': '0xc46c36b9707d2b1d2b7157ec04699299d48f23c19a5b84bcfbb13a243ccd0b95', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3eb1ffa8206eaac6162446f8e89d6a4d619c82e4', 'value': 38.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214e8348c4f000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:01:55.000Z'}}, {'blockNum': '0x4c0026', 'uniqueId': '0x4dce77be07be968487dff2c84fe9370c83658fa7ad9260fdff37568a29714165:log:82', 'hash': '0x4dce77be07be968487dff2c84fe9370c83658fa7ad9260fdff37568a29714165', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 164.79819084529632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ef08c96f80eb1418', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:07:08.000Z'}}, {'blockNum': '0x4c0026', 'uniqueId': '0x4dce77be07be968487dff2c84fe9370c83658fa7ad9260fdff37568a29714165:log:85', 'hash': '0x4dce77be07be968487dff2c84fe9370c83658fa7ad9260fdff37568a29714165', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 164.79819084529632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ef08c96f80eb1418', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:07:08.000Z'}}, {'blockNum': '0x4c002b', 'uniqueId': '0xc66d6990eb3fd0f3b3d446a4a613c521b0ee359ddddc22aca081ebbd2a8190bb:log:129', 'hash': '0xc66d6990eb3fd0f3b3d446a4a613c521b0ee359ddddc22aca081ebbd2a8190bb', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 21.539345814577143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012aeb20e5e42ad994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:07:38.000Z'}}, {'blockNum': '0x4c002b', 'uniqueId': '0xc66d6990eb3fd0f3b3d446a4a613c521b0ee359ddddc22aca081ebbd2a8190bb:log:131', 'hash': '0xc66d6990eb3fd0f3b3d446a4a613c521b0ee359ddddc22aca081ebbd2a8190bb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 21.539345814577143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012aeb20e5e42ad994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:07:38.000Z'}}, {'blockNum': '0x4c002f', 'uniqueId': '0xc4ca6d0ea0b69318faf3a69b9df8782b6dd75e854ee648dc21268fa4b1b1ac32:log:76', 'hash': '0xc4ca6d0ea0b69318faf3a69b9df8782b6dd75e854ee648dc21268fa4b1b1ac32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 121.91472308439583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069be81ab69f8749f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:12.000Z'}}, {'blockNum': '0x4c002f', 'uniqueId': '0xc4ca6d0ea0b69318faf3a69b9df8782b6dd75e854ee648dc21268fa4b1b1ac32:log:79', 'hash': '0xc4ca6d0ea0b69318faf3a69b9df8782b6dd75e854ee648dc21268fa4b1b1ac32', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 121.91472308439583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069be81ab69f8749f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:12.000Z'}}, {'blockNum': '0x4c002f', 'uniqueId': '0x5a5aa6115cdcc2da48cb8f3e858996fba7b00a73c38288db65e2fa0878f91364:log:97', 'hash': '0x5a5aa6115cdcc2da48cb8f3e858996fba7b00a73c38288db65e2fa0878f91364', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.490661030569074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67f42c8523ee5d3d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:12.000Z'}}, {'blockNum': '0x4c002f', 'uniqueId': '0x5a5aa6115cdcc2da48cb8f3e858996fba7b00a73c38288db65e2fa0878f91364:log:100', 'hash': '0x5a5aa6115cdcc2da48cb8f3e858996fba7b00a73c38288db65e2fa0878f91364', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.490661030569074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67f42c8523ee5d3d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:12.000Z'}}, {'blockNum': '0x4c0032', 'uniqueId': '0x0ab8869bf73903c3e740f92dde8cddddd3d7c067b4943ea34482379618a90efa:log:11', 'hash': '0x0ab8869bf73903c3e740f92dde8cddddd3d7c067b4943ea34482379618a90efa', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 179.21235066304578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09b7122b6b9995b716', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:25.000Z'}}, {'blockNum': '0x4c0032', 'uniqueId': '0x0ab8869bf73903c3e740f92dde8cddddd3d7c067b4943ea34482379618a90efa:log:13', 'hash': '0x0ab8869bf73903c3e740f92dde8cddddd3d7c067b4943ea34482379618a90efa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 179.21235066304578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09b7122b6b9995b716', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:09:25.000Z'}}, {'blockNum': '0x4c0037', 'uniqueId': '0xbd6a044eca5ab96a3d723b0b7aa21006817c4615d6dbff781f7154e3d60c419b:log:75', 'hash': '0xbd6a044eca5ab96a3d723b0b7aa21006817c4615d6dbff781f7154e3d60c419b', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 472.9077739835177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19a2e9eadd80499ab0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:10:42.000Z'}}, {'blockNum': '0x4c0037', 'uniqueId': '0xbd6a044eca5ab96a3d723b0b7aa21006817c4615d6dbff781f7154e3d60c419b:log:77', 'hash': '0xbd6a044eca5ab96a3d723b0b7aa21006817c4615d6dbff781f7154e3d60c419b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 472.9077739835177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19a2e9eadd80499ab0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:10:42.000Z'}}, {'blockNum': '0x4c0038', 'uniqueId': '0x09e58a4df25af2e4eb1baa0b85eca035bab405b433d862cfaf6eb4536fa5b859:log:53', 'hash': '0x09e58a4df25af2e4eb1baa0b85eca035bab405b433d862cfaf6eb4536fa5b859', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.82341766058727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081f37b490564a7fd0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:01.000Z'}}, {'blockNum': '0x4c0038', 'uniqueId': '0x09e58a4df25af2e4eb1baa0b85eca035bab405b433d862cfaf6eb4536fa5b859:log:56', 'hash': '0x09e58a4df25af2e4eb1baa0b85eca035bab405b433d862cfaf6eb4536fa5b859', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 149.82341766058727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081f37b490564a7fd0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:01.000Z'}}, {'blockNum': '0x4c0039', 'uniqueId': '0x2074768659cfa06e989ed8939da7a62b4bf8ddfb0b8cf1dd9b74282f9cc148ce:log:8', 'hash': '0x2074768659cfa06e989ed8939da7a62b4bf8ddfb0b8cf1dd9b74282f9cc148ce', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xc856faef18f6677b94dfea8ba0437f8c05365e81', 'value': 5.11032912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46eb89424aef4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:10.000Z'}}, {'blockNum': '0x4c003b', 'uniqueId': '0xa2eb047a74e7e276006aa345bd337d74c211c4ebbbd1a20dc33a6342a7935a9e:log:139', 'hash': '0xa2eb047a74e7e276006aa345bd337d74c211c4ebbbd1a20dc33a6342a7935a9e', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 144.01916450602462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ceaadb126e24ed4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:20.000Z'}}, {'blockNum': '0x4c003b', 'uniqueId': '0xa2eb047a74e7e276006aa345bd337d74c211c4ebbbd1a20dc33a6342a7935a9e:log:141', 'hash': '0xa2eb047a74e7e276006aa345bd337d74c211c4ebbbd1a20dc33a6342a7935a9e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 144.01916450602462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ceaadb126e24ed4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:20.000Z'}}, {'blockNum': '0x4c003e', 'uniqueId': '0x50871de8e144bdee738635349be0d9dc4f6edd9edc34aa900feb8c9eb9910edc:log:46', 'hash': '0x50871de8e144bdee738635349be0d9dc4f6edd9edc34aa900feb8c9eb9910edc', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 282.46552570345824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f4fff230f909975b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:38.000Z'}}, {'blockNum': '0x4c003e', 'uniqueId': '0x50871de8e144bdee738635349be0d9dc4f6edd9edc34aa900feb8c9eb9910edc:log:48', 'hash': '0x50871de8e144bdee738635349be0d9dc4f6edd9edc34aa900feb8c9eb9910edc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 282.46552570345824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f4fff230f909975b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:11:38.000Z'}}, {'blockNum': '0x4c0044', 'uniqueId': '0x5f51fa3ab271811f05e36e42749438c2248dd13173cab06b695e81802705b1e3:log:80', 'hash': '0x5f51fa3ab271811f05e36e42749438c2248dd13173cab06b695e81802705b1e3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.8283373532816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081f492eff8dbda363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:13:14.000Z'}}, {'blockNum': '0x4c0044', 'uniqueId': '0x5f51fa3ab271811f05e36e42749438c2248dd13173cab06b695e81802705b1e3:log:83', 'hash': '0x5f51fa3ab271811f05e36e42749438c2248dd13173cab06b695e81802705b1e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 149.8283373532816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081f492eff8dbda363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:13:14.000Z'}}, {'blockNum': '0x4c004d', 'uniqueId': '0x003b933f8abe7741baff929f44aabd9e56587666a8f90b754e9757184d68b24d:log:22', 'hash': '0x003b933f8abe7741baff929f44aabd9e56587666a8f90b754e9757184d68b24d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 235.21013225830447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cc03241179ce2cfe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:14:35.000Z'}}, {'blockNum': '0x4c004d', 'uniqueId': '0x003b933f8abe7741baff929f44aabd9e56587666a8f90b754e9757184d68b24d:log:25', 'hash': '0x003b933f8abe7741baff929f44aabd9e56587666a8f90b754e9757184d68b24d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 235.21013225830447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cc03241179ce2cfe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:14:35.000Z'}}, {'blockNum': '0x4c004f', 'uniqueId': '0x513fc0f7d89de87fb16c075e3c49ce7f8f718ede3ca12279d602b83b799be31b:log:28', 'hash': '0x513fc0f7d89de87fb16c075e3c49ce7f8f718ede3ca12279d602b83b799be31b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 139.33407288739588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x078da61111499e35ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:14:44.000Z'}}, {'blockNum': '0x4c004f', 'uniqueId': '0x513fc0f7d89de87fb16c075e3c49ce7f8f718ede3ca12279d602b83b799be31b:log:31', 'hash': '0x513fc0f7d89de87fb16c075e3c49ce7f8f718ede3ca12279d602b83b799be31b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 139.33407288739588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x078da61111499e35ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:14:44.000Z'}}, {'blockNum': '0x4c0052', 'uniqueId': '0x4070b46b3d3a2f41284b508172f77ade2fc56f748f59d739c554508ff120e03a:log:72', 'hash': '0x4070b46b3d3a2f41284b508172f77ade2fc56f748f59d739c554508ff120e03a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 35.56620621308668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ed948c1ceb52938d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:15:39.000Z'}}, {'blockNum': '0x4c0052', 'uniqueId': '0x4070b46b3d3a2f41284b508172f77ade2fc56f748f59d739c554508ff120e03a:log:75', 'hash': '0x4070b46b3d3a2f41284b508172f77ade2fc56f748f59d739c554508ff120e03a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 35.56620621308668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ed948c1ceb52938d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:15:39.000Z'}}, {'blockNum': '0x4c0052', 'uniqueId': '0x9be16a339ce76e438256466db529f685a855122db35cb5c4a8d6d56146cc22c3:log:109', 'hash': '0x9be16a339ce76e438256466db529f685a855122db35cb5c4a8d6d56146cc22c3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 449.4471497526527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185d55096d4ea8c1fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:15:39.000Z'}}, {'blockNum': '0x4c0052', 'uniqueId': '0x9be16a339ce76e438256466db529f685a855122db35cb5c4a8d6d56146cc22c3:log:112', 'hash': '0x9be16a339ce76e438256466db529f685a855122db35cb5c4a8d6d56146cc22c3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 449.4471497526527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185d55096d4ea8c1fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:15:39.000Z'}}, {'blockNum': '0x4c005e', 'uniqueId': '0xe9870fb43627fcda8c464d195048b96f3d6d8529fdc6cc73ca81baf9a70cbb5a:log:75', 'hash': '0xe9870fb43627fcda8c464d195048b96f3d6d8529fdc6cc73ca81baf9a70cbb5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 34.45662532968279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01de2e862da6782a34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:06.000Z'}}, {'blockNum': '0x4c005e', 'uniqueId': '0xe9870fb43627fcda8c464d195048b96f3d6d8529fdc6cc73ca81baf9a70cbb5a:log:78', 'hash': '0xe9870fb43627fcda8c464d195048b96f3d6d8529fdc6cc73ca81baf9a70cbb5a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 34.45662532968279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01de2e862da6782a34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:06.000Z'}}, {'blockNum': '0x4c005e', 'uniqueId': '0x653a7c45b454712f2a12242e7f78338a178dbf7fe87779d88ea42e85fea62545:log:103', 'hash': '0x653a7c45b454712f2a12242e7f78338a178dbf7fe87779d88ea42e85fea62545', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 404.4802830361955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed4aa2649de3d5f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:06.000Z'}}, {'blockNum': '0x4c005e', 'uniqueId': '0x653a7c45b454712f2a12242e7f78338a178dbf7fe87779d88ea42e85fea62545:log:106', 'hash': '0x653a7c45b454712f2a12242e7f78338a178dbf7fe87779d88ea42e85fea62545', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 404.4802830361955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed4aa2649de3d5f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:06.000Z'}}, {'blockNum': '0x4c005f', 'uniqueId': '0xaf9cf150e9c1fe2e56f76924be2ee0d1b2d9133c0e98f11cc3ba01f15cf978c6:log:48', 'hash': '0xaf9cf150e9c1fe2e56f76924be2ee0d1b2d9133c0e98f11cc3ba01f15cf978c6', 'from': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 757.8734169642611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29159b4157f24914a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:24.000Z'}}, {'blockNum': '0x4c005f', 'uniqueId': '0xaf9cf150e9c1fe2e56f76924be2ee0d1b2d9133c0e98f11cc3ba01f15cf978c6:log:50', 'hash': '0xaf9cf150e9c1fe2e56f76924be2ee0d1b2d9133c0e98f11cc3ba01f15cf978c6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 757.8734169642611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29159b4157f24914a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:24.000Z'}}, {'blockNum': '0x4c005f', 'uniqueId': '0x50d25ab25436b868e9fd61a4dc10bd1a391f1b2628662b89b783ec3ecb2ca69e:log:69', 'hash': '0x50d25ab25436b868e9fd61a4dc10bd1a391f1b2628662b89b783ec3ecb2ca69e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 179.77895216845135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09beef247ccc7c33ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:24.000Z'}}, {'blockNum': '0x4c005f', 'uniqueId': '0x50d25ab25436b868e9fd61a4dc10bd1a391f1b2628662b89b783ec3ecb2ca69e:log:72', 'hash': '0x50d25ab25436b868e9fd61a4dc10bd1a391f1b2628662b89b783ec3ecb2ca69e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 179.77895216845135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09beef247ccc7c33ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:19:24.000Z'}}, {'blockNum': '0x4c0072', 'uniqueId': '0x0ad5d82fc82048efb4b883d19a72166ce40433ca30060a24d12b6a95fd633b41:log:25', 'hash': '0x0ad5d82fc82048efb4b883d19a72166ce40433ca30060a24d12b6a95fd633b41', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.62306273160925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103e1af41558269fb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:23:27.000Z'}}, {'blockNum': '0x4c0072', 'uniqueId': '0x0ad5d82fc82048efb4b883d19a72166ce40433ca30060a24d12b6a95fd633b41:log:28', 'hash': '0x0ad5d82fc82048efb4b883d19a72166ce40433ca30060a24d12b6a95fd633b41', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 299.62306273160925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103e1af41558269fb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:23:27.000Z'}}, {'blockNum': '0x4c0079', 'uniqueId': '0x734ae673462658031282fb57c04ac68d3c09d891ee00b4e12b26f75363ee2f6b:log:77', 'hash': '0x734ae673462658031282fb57c04ac68d3c09d891ee00b4e12b26f75363ee2f6b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.6124081550941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103df519cd6fbb931c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:25:58.000Z'}}, {'blockNum': '0x4c0079', 'uniqueId': '0x734ae673462658031282fb57c04ac68d3c09d891ee00b4e12b26f75363ee2f6b:log:80', 'hash': '0x734ae673462658031282fb57c04ac68d3c09d891ee00b4e12b26f75363ee2f6b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa6f89e1d3de44691ef031706e13c1ad091fd60f6', 'value': 299.6124081550941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103df519cd6fbb931c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:25:58.000Z'}}, {'blockNum': '0x4c007b', 'uniqueId': '0x35202815de58eb33d1247c388bd62b189b987257c714de329729904851adaa1a:log:36', 'hash': '0x35202815de58eb33d1247c388bd62b189b987257c714de329729904851adaa1a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.6017543783968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103dcf403fc02c00c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:12.000Z'}}, {'blockNum': '0x4c007b', 'uniqueId': '0x35202815de58eb33d1247c388bd62b189b987257c714de329729904851adaa1a:log:39', 'hash': '0x35202815de58eb33d1247c388bd62b189b987257c714de329729904851adaa1a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 299.6017543783968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103dcf403fc02c00c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:12.000Z'}}, {'blockNum': '0x4c007b', 'uniqueId': '0x0f917e9888e1d483db4926031e3703b4d5607cc7cf6e72e48c5c7bc7ef0e4512:log:67', 'hash': '0x0f917e9888e1d483db4926031e3703b4d5607cc7cf6e72e48c5c7bc7ef0e4512', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.692031877462905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6abf963d09285128', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:12.000Z'}}, {'blockNum': '0x4c007b', 'uniqueId': '0x0f917e9888e1d483db4926031e3703b4d5607cc7cf6e72e48c5c7bc7ef0e4512:log:69', 'hash': '0x0f917e9888e1d483db4926031e3703b4d5607cc7cf6e72e48c5c7bc7ef0e4512', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7.692031877462905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6abf963d09285128', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:12.000Z'}}, {'blockNum': '0x4c007f', 'uniqueId': '0xad6a6b2cb4a6783b7e715ecd8c8e937745deb49b853fad2fa7b05caa19fdd5ca:log:39', 'hash': '0xad6a6b2cb4a6783b7e715ecd8c8e937745deb49b853fad2fa7b05caa19fdd5ca', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 511.90511106683965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc01c4a5365dc740c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:56.000Z'}}, {'blockNum': '0x4c007f', 'uniqueId': '0xad6a6b2cb4a6783b7e715ecd8c8e937745deb49b853fad2fa7b05caa19fdd5ca:log:41', 'hash': '0xad6a6b2cb4a6783b7e715ecd8c8e937745deb49b853fad2fa7b05caa19fdd5ca', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 511.90511106683965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc01c4a5365dc740c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:56.000Z'}}, {'blockNum': '0x4c007f', 'uniqueId': '0x3442c8530b907ff3bc2df4ebcede9c2ab85c1bd8f00dc0bd34adac022fa65a3f:log:56', 'hash': '0x3442c8530b907ff3bc2df4ebcede9c2ab85c1bd8f00dc0bd34adac022fa65a3f', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 701.3097409906163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2604a0b5bb92e3e3c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:56.000Z'}}, {'blockNum': '0x4c007f', 'uniqueId': '0x3442c8530b907ff3bc2df4ebcede9c2ab85c1bd8f00dc0bd34adac022fa65a3f:log:58', 'hash': '0x3442c8530b907ff3bc2df4ebcede9c2ab85c1bd8f00dc0bd34adac022fa65a3f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 701.3097409906163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2604a0b5bb92e3e3c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:26:56.000Z'}}, {'blockNum': '0x4c0082', 'uniqueId': '0x50329f779caed8c072c2c040afe2459a6237c18028907a995c0d77d05b4e9766:log:85', 'hash': '0x50329f779caed8c072c2c040afe2459a6237c18028907a995c0d77d05b4e9766', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 61.29818070881484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0352aee2953e9c58d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:27:25.000Z'}}, {'blockNum': '0x4c0082', 'uniqueId': '0x50329f779caed8c072c2c040afe2459a6237c18028907a995c0d77d05b4e9766:log:87', 'hash': '0x50329f779caed8c072c2c040afe2459a6237c18028907a995c0d77d05b4e9766', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 61.29818070881484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0352aee2953e9c58d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:27:25.000Z'}}, {'blockNum': '0x4c0091', 'uniqueId': '0xd21a359f4d6bb62892f6e02cab79da47a888c63a2b9e58edb54fcf80705dde5a:log:18', 'hash': '0xd21a359f4d6bb62892f6e02cab79da47a888c63a2b9e58edb54fcf80705dde5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1048.6818190828524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38d9623e4d2bde6f9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:30:44.000Z'}}, {'blockNum': '0x4c0091', 'uniqueId': '0xd21a359f4d6bb62892f6e02cab79da47a888c63a2b9e58edb54fcf80705dde5a:log:21', 'hash': '0xd21a359f4d6bb62892f6e02cab79da47a888c63a2b9e58edb54fcf80705dde5a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'value': 1048.6818190828524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38d9623e4d2bde6f9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:30:44.000Z'}}, {'blockNum': '0x4c0096', 'uniqueId': '0x8076dee3bed9f71a5959d7ba3a4eff090c3582dfc4f6bfa7c0d166fd7f5d5fb3:log:33', 'hash': '0x8076dee3bed9f71a5959d7ba3a4eff090c3582dfc4f6bfa7c0d166fd7f5d5fb3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 19.298153891636247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010bd0d0b7ebccfe05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:31:52.000Z'}}, {'blockNum': '0x4c0096', 'uniqueId': '0x8076dee3bed9f71a5959d7ba3a4eff090c3582dfc4f6bfa7c0d166fd7f5d5fb3:log:36', 'hash': '0x8076dee3bed9f71a5959d7ba3a4eff090c3582dfc4f6bfa7c0d166fd7f5d5fb3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 19.298153891636247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010bd0d0b7ebccfe05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:31:52.000Z'}}, {'blockNum': '0x4c0098', 'uniqueId': '0x1385c1aa650533513fc0f382011f2ce8c39b309cad39b7b217794d86b61d4b8b:log:49', 'hash': '0x1385c1aa650533513fc0f382011f2ce8c39b309cad39b7b217794d86b61d4b8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 670.3373846939801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2456cccbc78d0e5d82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:32:41.000Z'}}, {'blockNum': '0x4c0098', 'uniqueId': '0x1385c1aa650533513fc0f382011f2ce8c39b309cad39b7b217794d86b61d4b8b:log:52', 'hash': '0x1385c1aa650533513fc0f382011f2ce8c39b309cad39b7b217794d86b61d4b8b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 670.3373846939801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2456cccbc78d0e5d82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:32:41.000Z'}}, {'blockNum': '0x4c0099', 'uniqueId': '0x187ae6754f51ed81f886f4f049913438fe9c30e9099d40b568ef4032349cdea0:log:40', 'hash': '0x187ae6754f51ed81f886f4f049913438fe9c30e9099d40b568ef4032349cdea0', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 782.8325002349774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a6ffbbb56e0b921ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:01.000Z'}}, {'blockNum': '0x4c0099', 'uniqueId': '0x187ae6754f51ed81f886f4f049913438fe9c30e9099d40b568ef4032349cdea0:log:42', 'hash': '0x187ae6754f51ed81f886f4f049913438fe9c30e9099d40b568ef4032349cdea0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 782.8325002349774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a6ffbbb56e0b921ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:01.000Z'}}, {'blockNum': '0x4c009b', 'uniqueId': '0x0bb1af354aa020525077408ac5f3703d640392f9d86fd4989d7a09ecb1efe0f6:log:78', 'hash': '0x0bb1af354aa020525077408ac5f3703d640392f9d86fd4989d7a09ecb1efe0f6', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 15.168241714344406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd2806b7972c2ab4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:26.000Z'}}, {'blockNum': '0x4c009b', 'uniqueId': '0x0bb1af354aa020525077408ac5f3703d640392f9d86fd4989d7a09ecb1efe0f6:log:80', 'hash': '0x0bb1af354aa020525077408ac5f3703d640392f9d86fd4989d7a09ecb1efe0f6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15.168241714344406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd2806b7972c2ab4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:26.000Z'}}, {'blockNum': '0x4c009e', 'uniqueId': '0x1a58f385b62df1533544f144f1fc2add638a5a753658895c7439a8a788f81365:log:46', 'hash': '0x1a58f385b62df1533544f144f1fc2add638a5a753658895c7439a8a788f81365', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 6403.98994248772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015b2936aae652cbd007', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:48.000Z'}}, {'blockNum': '0x4c009e', 'uniqueId': '0x1a58f385b62df1533544f144f1fc2add638a5a753658895c7439a8a788f81365:log:48', 'hash': '0x1a58f385b62df1533544f144f1fc2add638a5a753658895c7439a8a788f81365', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 6403.98994248772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015b2936aae652cbd007', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:33:48.000Z'}}, {'blockNum': '0x4c00a7', 'uniqueId': '0x3ce631e50c18ce648f0aa82d51ca37ae6cf942be723a6419431cf9bb820d7fc1:log:31', 'hash': '0x3ce631e50c18ce648f0aa82d51ca37ae6cf942be723a6419431cf9bb820d7fc1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 112.43790074826917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061863ab024f361d90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:35:00.000Z'}}, {'blockNum': '0x4c00a7', 'uniqueId': '0x3ce631e50c18ce648f0aa82d51ca37ae6cf942be723a6419431cf9bb820d7fc1:log:34', 'hash': '0x3ce631e50c18ce648f0aa82d51ca37ae6cf942be723a6419431cf9bb820d7fc1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 112.43790074826917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061863ab024f361d90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:35:00.000Z'}}, {'blockNum': '0x4c00a8', 'uniqueId': '0x74ab10e5646c6b6291307ef08ff96a1d2aceda4713784f4a7915c785a0a390d7:log:19', 'hash': '0x74ab10e5646c6b6291307ef08ff96a1d2aceda4713784f4a7915c785a0a390d7', 'from': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1049.4927753600098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38e4a356bd2834f5d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:35:08.000Z'}}, {'blockNum': '0x4c00a8', 'uniqueId': '0x74ab10e5646c6b6291307ef08ff96a1d2aceda4713784f4a7915c785a0a390d7:log:21', 'hash': '0x74ab10e5646c6b6291307ef08ff96a1d2aceda4713784f4a7915c785a0a390d7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1049.4927753600098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38e4a356bd2834f5d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:35:08.000Z'}}, {'blockNum': '0x4c00c3', 'uniqueId': '0x33a7d4eac4c533413b84daa4dfdcfef8ccd133edddb55c8695b38e90c10d941e:log:39', 'hash': '0x33a7d4eac4c533413b84daa4dfdcfef8ccd133edddb55c8695b38e90c10d941e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.8288541787021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1451cb98f2783af895', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:39:45.000Z'}}, {'blockNum': '0x4c00c3', 'uniqueId': '0x33a7d4eac4c533413b84daa4dfdcfef8ccd133edddb55c8695b38e90c10d941e:log:42', 'hash': '0x33a7d4eac4c533413b84daa4dfdcfef8ccd133edddb55c8695b38e90c10d941e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 374.8288541787021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1451cb98f2783af895', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:39:45.000Z'}}, {'blockNum': '0x4c00c6', 'uniqueId': '0x10d7303c95e2a2a7b2b887eae0e9407b9aba1ab9fa4e2ec5dc6ed18a34a5e35f:log:49', 'hash': '0x10d7303c95e2a2a7b2b887eae0e9407b9aba1ab9fa4e2ec5dc6ed18a34a5e35f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.8510767024478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1041450594efcf0d59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:41:06.000Z'}}, {'blockNum': '0x4c00c6', 'uniqueId': '0x10d7303c95e2a2a7b2b887eae0e9407b9aba1ab9fa4e2ec5dc6ed18a34a5e35f:log:52', 'hash': '0x10d7303c95e2a2a7b2b887eae0e9407b9aba1ab9fa4e2ec5dc6ed18a34a5e35f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 299.8510767024478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1041450594efcf0d59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:41:06.000Z'}}, {'blockNum': '0x4c00c9', 'uniqueId': '0x15a4bb857e5240ae1a1825cccac364e9701e9933224d9a68fb4c3465d7a6b3cf:log:16', 'hash': '0x15a4bb857e5240ae1a1825cccac364e9701e9933224d9a68fb4c3465d7a6b3cf', 'from': '0x8967172b067b9427392aa667a3996f90df01aff4', 'to': '0x65b4aa0e88e4239d1d61254a2331791167fbdc77', 'value': 107.27928018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d0cc90ef08810000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:42:47.000Z'}}, {'blockNum': '0x4c00cf', 'uniqueId': '0xf1daae493e6fb2510b68236e434401fe7397937a5ed1c84811b888719ad774a6:log:0', 'hash': '0xf1daae493e6fb2510b68236e434401fe7397937a5ed1c84811b888719ad774a6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4a76fce55eeb323ed52b2ae14db59589c0f98e81', 'value': 2791.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x975941caeecd550000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:43:39.000Z'}}, {'blockNum': '0x4c00d1', 'uniqueId': '0xb11f75c9c10a80c668d66d00ac834d4c7336d6b6adf2ade85ac23ad47417213a:log:233', 'hash': '0xb11f75c9c10a80c668d66d00ac834d4c7336d6b6adf2ade85ac23ad47417213a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 134.92950282580773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075085e3eed455d830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:44:06.000Z'}}, {'blockNum': '0x4c00d1', 'uniqueId': '0xb11f75c9c10a80c668d66d00ac834d4c7336d6b6adf2ade85ac23ad47417213a:log:236', 'hash': '0xb11f75c9c10a80c668d66d00ac834d4c7336d6b6adf2ade85ac23ad47417213a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 134.92950282580773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075085e3eed455d830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:44:06.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7:log:25', 'hash': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7', 'from': '0x4a76fce55eeb323ed52b2ae14db59589c0f98e81', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2791.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x975941caeecd550000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7:log:28', 'hash': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2791.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x975941caeecd550000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7:log:29', 'hash': '0xf7f40b26c85f04807bb42cf4e12632195e2a0484e63acad44e2af24f516771d7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2791.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x975941caeecd550000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xdce973974b0ef62024769c8358dd8ee210111d3c5ce08baafaeb914e9159be86:log:45', 'hash': '0xdce973974b0ef62024769c8358dd8ee210111d3c5ce08baafaeb914e9159be86', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 502.78518645573564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b418bcf361ea9cc21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00d8', 'uniqueId': '0xdce973974b0ef62024769c8358dd8ee210111d3c5ce08baafaeb914e9159be86:log:47', 'hash': '0xdce973974b0ef62024769c8358dd8ee210111d3c5ce08baafaeb914e9159be86', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 502.78518645573564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b418bcf361ea9cc21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:45:23.000Z'}}, {'blockNum': '0x4c00f0', 'uniqueId': '0x012c04b7fca80e04e365036cb7ae3ac5b1638d65b5756445622cd84b82bca620:log:131', 'hash': '0x012c04b7fca80e04e365036cb7ae3ac5b1638d65b5756445622cd84b82bca620', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4553.226232495292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf6d4b51e6d9007b6cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:50:17.000Z'}}, {'blockNum': '0x4c00f0', 'uniqueId': '0x012c04b7fca80e04e365036cb7ae3ac5b1638d65b5756445622cd84b82bca620:log:133', 'hash': '0x012c04b7fca80e04e365036cb7ae3ac5b1638d65b5756445622cd84b82bca620', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4553.226232495292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf6d4b51e6d9007b6cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:50:17.000Z'}}, {'blockNum': '0x4c00fa', 'uniqueId': '0xb95aed8c914679f80f5d9ebf4c7f72195602e52dd4bc046085dbfc27f4d1504f:log:23', 'hash': '0xb95aed8c914679f80f5d9ebf4c7f72195602e52dd4bc046085dbfc27f4d1504f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xba341b3da395f64715f5a844b9618714c9dfbd4e', 'value': 829.44832716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cf6e86af249c9b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:53:37.000Z'}}, {'blockNum': '0x4c00ff', 'uniqueId': '0x41ccc6c36baa053657f613918ac8b17ed115f51b54514e105a4bdf9548464256:log:23', 'hash': '0x41ccc6c36baa053657f613918ac8b17ed115f51b54514e105a4bdf9548464256', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 570.13014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ee82525a6abb9c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:55:31.000Z'}}, {'blockNum': '0x4c0102', 'uniqueId': '0xc0bf065b6607ecfed3ae65849d92bac5fe5e931e378404fcc53d80e989da7c7f:log:95', 'hash': '0xc0bf065b6607ecfed3ae65849d92bac5fe5e931e378404fcc53d80e989da7c7f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 90.03563583783672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e17ed5c3e8b007be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:56:08.000Z'}}, {'blockNum': '0x4c0102', 'uniqueId': '0xc0bf065b6607ecfed3ae65849d92bac5fe5e931e378404fcc53d80e989da7c7f:log:98', 'hash': '0xc0bf065b6607ecfed3ae65849d92bac5fe5e931e378404fcc53d80e989da7c7f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 90.03563583783672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e17ed5c3e8b007be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:56:08.000Z'}}, {'blockNum': '0x4c0106', 'uniqueId': '0xcdcf334b0d518cfb529d4257c2d3affdf0c8e208a154b3396c788224f0a20e8d:log:36', 'hash': '0xcdcf334b0d518cfb529d4257c2d3affdf0c8e208a154b3396c788224f0a20e8d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 360.1329206731804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1385d9274948d974da', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:10.000Z'}}, {'blockNum': '0x4c0106', 'uniqueId': '0xcdcf334b0d518cfb529d4257c2d3affdf0c8e208a154b3396c788224f0a20e8d:log:39', 'hash': '0xcdcf334b0d518cfb529d4257c2d3affdf0c8e208a154b3396c788224f0a20e8d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 360.1329206731804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1385d9274948d974da', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:10.000Z'}}, {'blockNum': '0x4c0107', 'uniqueId': '0x09ab2b0e54059b1c0e3915cb6b87756bab67a0f408dcb66439e41f60ce3f450a:log:56', 'hash': '0x09ab2b0e54059b1c0e3915cb6b87756bab67a0f408dcb66439e41f60ce3f450a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1290.3498861608957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45f333b0e589eca2b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:21.000Z'}}, {'blockNum': '0x4c0107', 'uniqueId': '0x09ab2b0e54059b1c0e3915cb6b87756bab67a0f408dcb66439e41f60ce3f450a:log:59', 'hash': '0x09ab2b0e54059b1c0e3915cb6b87756bab67a0f408dcb66439e41f60ce3f450a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1290.3498861608957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45f333b0e589eca2b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:21.000Z'}}, {'blockNum': '0x4c0107', 'uniqueId': '0x72f2d53df4d7088e821a5b676e0bfb1a1fb6c454978332279764e93635182055:log:97', 'hash': '0x72f2d53df4d7088e821a5b676e0bfb1a1fb6c454978332279764e93635182055', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 330.0577607932523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e478b8b872a83d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:21.000Z'}}, {'blockNum': '0x4c0107', 'uniqueId': '0x72f2d53df4d7088e821a5b676e0bfb1a1fb6c454978332279764e93635182055:log:100', 'hash': '0x72f2d53df4d7088e821a5b676e0bfb1a1fb6c454978332279764e93635182055', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 330.0577607932523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e478b8b872a83d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:21.000Z'}}, {'blockNum': '0x4c0109', 'uniqueId': '0xa14f5e723c4913ec80ae02e044fc0a2c438d2bcc023b377fbbf14c00ee6ec1ce:log:4', 'hash': '0xa14f5e723c4913ec80ae02e044fc0a2c438d2bcc023b377fbbf14c00ee6ec1ce', 'from': '0x642ae7eb0215e6459c5420a874452d723cde5acf', 'to': '0x6ff11a135c59f2ac5e272fd1424ec0316ac44d20', 'value': 0.000122419879416756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f57196d13b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:58:45.000Z'}}, {'blockNum': '0x4c010a', 'uniqueId': '0x214b8b1cfc35876eb672854f2ec65a79717af23ad991bea100f01ff626972713:log:65', 'hash': '0x214b8b1cfc35876eb672854f2ec65a79717af23ad991bea100f01ff626972713', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4356.883360751894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xec2fe71cd8b2b5cba7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:07.000Z'}}, {'blockNum': '0x4c010a', 'uniqueId': '0x214b8b1cfc35876eb672854f2ec65a79717af23ad991bea100f01ff626972713:log:67', 'hash': '0x214b8b1cfc35876eb672854f2ec65a79717af23ad991bea100f01ff626972713', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4356.883360751894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xec2fe71cd8b2b5cba7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:07.000Z'}}, {'blockNum': '0x4c010a', 'uniqueId': '0xb22353cb7dbf8c012964d90e997bf888d555509b064f04c0ca41488e59998a6f:log:83', 'hash': '0xb22353cb7dbf8c012964d90e997bf888d555509b064f04c0ca41488e59998a6f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.14441255219927684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02010e737af20924', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:07.000Z'}}, {'blockNum': '0x4c010a', 'uniqueId': '0xb22353cb7dbf8c012964d90e997bf888d555509b064f04c0ca41488e59998a6f:log:86', 'hash': '0xb22353cb7dbf8c012964d90e997bf888d555509b064f04c0ca41488e59998a6f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 0.14441255219927684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02010e737af20924', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:07.000Z'}}, {'blockNum': '0x4c010b', 'uniqueId': '0x9e431aa60b693206af28d9de031d297942279ee73b147db830728add818c2c65:log:63', 'hash': '0x9e431aa60b693206af28d9de031d297942279ee73b147db830728add818c2c65', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 120.07988454966481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06827172c994b0382c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:30.000Z'}}, {'blockNum': '0x4c010b', 'uniqueId': '0x9e431aa60b693206af28d9de031d297942279ee73b147db830728add818c2c65:log:66', 'hash': '0x9e431aa60b693206af28d9de031d297942279ee73b147db830728add818c2c65', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 120.07988454966481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06827172c994b0382c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:30.000Z'}}, {'blockNum': '0x4c010b', 'uniqueId': '0x58161d4580c5caf99993c968950471ebbc9434dd79581625c4314bbc44345042:log:89', 'hash': '0x58161d4580c5caf99993c968950471ebbc9434dd79581625c4314bbc44345042', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 300.19222277976036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1046010421b28a8683', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:30.000Z'}}, {'blockNum': '0x4c010b', 'uniqueId': '0x58161d4580c5caf99993c968950471ebbc9434dd79581625c4314bbc44345042:log:92', 'hash': '0x58161d4580c5caf99993c968950471ebbc9434dd79581625c4314bbc44345042', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 300.19222277976036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1046010421b28a8683', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T08:59:30.000Z'}}, {'blockNum': '0x4c010c', 'uniqueId': '0x0c7fdeaf7341e1310debc35041a9593f38e1763f1abc588d8396178d6aed2205:log:51', 'hash': '0x0c7fdeaf7341e1310debc35041a9593f38e1763f1abc588d8396178d6aed2205', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 570.13014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ee82525a6abb9c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:00:05.000Z'}}, {'blockNum': '0x4c010d', 'uniqueId': '0x1ef30e851630d67279080850e1f3027405a1cb5d9b1ed4c27af88e3dd583d727:log:48', 'hash': '0x1ef30e851630d67279080850e1f3027405a1cb5d9b1ed4c27af88e3dd583d727', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 300.1815254315996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1045db02f33d61e9ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:00:22.000Z'}}, {'blockNum': '0x4c010d', 'uniqueId': '0x1ef30e851630d67279080850e1f3027405a1cb5d9b1ed4c27af88e3dd583d727:log:51', 'hash': '0x1ef30e851630d67279080850e1f3027405a1cb5d9b1ed4c27af88e3dd583d727', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 300.1815254315996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1045db02f33d61e9ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:00:22.000Z'}}, {'blockNum': '0x4c011b', 'uniqueId': '0x145db39d4999a9b58d01668af0f53dedd8c5775c81511f9dc91ba1e6ade5a32e:log:35', 'hash': '0x145db39d4999a9b58d01668af0f53dedd8c5775c81511f9dc91ba1e6ade5a32e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 155.93726033939163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0874107016710c24b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:02:53.000Z'}}, {'blockNum': '0x4c011b', 'uniqueId': '0x145db39d4999a9b58d01668af0f53dedd8c5775c81511f9dc91ba1e6ade5a32e:log:38', 'hash': '0x145db39d4999a9b58d01668af0f53dedd8c5775c81511f9dc91ba1e6ade5a32e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 155.93726033939163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0874107016710c24b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:02:53.000Z'}}, {'blockNum': '0x4c0120', 'uniqueId': '0x094711801271021a5b85f540957dae524bd976486e88b26f8e1eb457f3d4b1bf:log:71', 'hash': '0x094711801271021a5b85f540957dae524bd976486e88b26f8e1eb457f3d4b1bf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1020.5182909592315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3752894ab095bb0fec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:04:01.000Z'}}, {'blockNum': '0x4c0120', 'uniqueId': '0x094711801271021a5b85f540957dae524bd976486e88b26f8e1eb457f3d4b1bf:log:74', 'hash': '0x094711801271021a5b85f540957dae524bd976486e88b26f8e1eb457f3d4b1bf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1020.5182909592315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3752894ab095bb0fec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:04:01.000Z'}}, {'blockNum': '0x4c0121', 'uniqueId': '0x7cf8fa35898df1a093cc1c264a2a1fb4bab24e12a10141f34ff98b67957109c1:log:40', 'hash': '0x7cf8fa35898df1a093cc1c264a2a1fb4bab24e12a10141f34ff98b67957109c1', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1620.1412319827973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57d3f9ea9cba5d5c68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:04:16.000Z'}}, {'blockNum': '0x4c0121', 'uniqueId': '0x7cf8fa35898df1a093cc1c264a2a1fb4bab24e12a10141f34ff98b67957109c1:log:42', 'hash': '0x7cf8fa35898df1a093cc1c264a2a1fb4bab24e12a10141f34ff98b67957109c1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1620.1412319827973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57d3f9ea9cba5d5c68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:04:16.000Z'}}, {'blockNum': '0x4c012b', 'uniqueId': '0x71b95d0b5339f53f40d27ced5b29824bf0c9b8e19131378cf86052b4db4817e9:log:17', 'hash': '0x71b95d0b5339f53f40d27ced5b29824bf0c9b8e19131378cf86052b4db4817e9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1500.8262345076819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x515c25e491097c797a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:06:22.000Z'}}, {'blockNum': '0x4c012b', 'uniqueId': '0x71b95d0b5339f53f40d27ced5b29824bf0c9b8e19131378cf86052b4db4817e9:log:20', 'hash': '0x71b95d0b5339f53f40d27ced5b29824bf0c9b8e19131378cf86052b4db4817e9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1500.8262345076819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x515c25e491097c797a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:06:22.000Z'}}, {'blockNum': '0x4c0137', 'uniqueId': '0xd4670f19f2833ea4a95fcc984740c92f2cc65d0cac0f386e86be71d4008c3b25:log:76', 'hash': '0xd4670f19f2833ea4a95fcc984740c92f2cc65d0cac0f386e86be71d4008c3b25', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 600.2556322018286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208a3865326984d605', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:10:00.000Z'}}, {'blockNum': '0x4c0137', 'uniqueId': '0xd4670f19f2833ea4a95fcc984740c92f2cc65d0cac0f386e86be71d4008c3b25:log:79', 'hash': '0xd4670f19f2833ea4a95fcc984740c92f2cc65d0cac0f386e86be71d4008c3b25', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 600.2556322018286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208a3865326984d605', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:10:00.000Z'}}, {'blockNum': '0x4c0138', 'uniqueId': '0xffdddc58844db8b0ab865f1b27626c10d5fed5ee27fc2d5df3a68fd8d51d94d1:log:7', 'hash': '0xffdddc58844db8b0ab865f1b27626c10d5fed5ee27fc2d5df3a68fd8d51d94d1', 'from': '0xba341b3da395f64715f5a844b9618714c9dfbd4e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 829.44832716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cf6e86af249c9b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:10:04.000Z'}}, {'blockNum': '0x4c0145', 'uniqueId': '0x878afa493586b11211dfccac9326621598fd94a42f752b135959be7e6e64cb7b:log:124', 'hash': '0x878afa493586b11211dfccac9326621598fd94a42f752b135959be7e6e64cb7b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 121.03105345578459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x068fa4adde375aa6e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:13:11.000Z'}}, {'blockNum': '0x4c0145', 'uniqueId': '0x878afa493586b11211dfccac9326621598fd94a42f752b135959be7e6e64cb7b:log:127', 'hash': '0x878afa493586b11211dfccac9326621598fd94a42f752b135959be7e6e64cb7b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 121.03105345578459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x068fa4adde375aa6e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:13:11.000Z'}}, {'blockNum': '0x4c0149', 'uniqueId': '0x8becc4aa27db3a6c8b733154b962d39604b472b3532302071352aa5fe0275dbf:log:10', 'hash': '0x8becc4aa27db3a6c8b733154b962d39604b472b3532302071352aa5fe0275dbf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1500.4304275034146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5156a7b4317884f038', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:09.000Z'}}, {'blockNum': '0x4c0149', 'uniqueId': '0x8becc4aa27db3a6c8b733154b962d39604b472b3532302071352aa5fe0275dbf:log:13', 'hash': '0x8becc4aa27db3a6c8b733154b962d39604b472b3532302071352aa5fe0275dbf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1500.4304275034146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5156a7b4317884f038', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:09.000Z'}}, {'blockNum': '0x4c0149', 'uniqueId': '0x99c526fe4aa79a6e35b23eb5d42e9191d93fc8300e565f50a1c7ff7d00493b47:log:94', 'hash': '0x99c526fe4aa79a6e35b23eb5d42e9191d93fc8300e565f50a1c7ff7d00493b47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 150.02834542576596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08220fc147ce619f92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:09.000Z'}}, {'blockNum': '0x4c0149', 'uniqueId': '0x99c526fe4aa79a6e35b23eb5d42e9191d93fc8300e565f50a1c7ff7d00493b47:log:97', 'hash': '0x99c526fe4aa79a6e35b23eb5d42e9191d93fc8300e565f50a1c7ff7d00493b47', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 150.02834542576596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08220fc147ce619f92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:09.000Z'}}, {'blockNum': '0x4c014b', 'uniqueId': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef:log:20', 'hash': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef', 'from': '0xb0e83c2d71a991017e0116d58c5765abc57384af', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:35.000Z'}}, {'blockNum': '0x4c014b', 'uniqueId': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef:log:23', 'hash': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:35.000Z'}}, {'blockNum': '0x4c014b', 'uniqueId': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef:log:25', 'hash': '0x4b84f79eb1e2b3f749879ac18ed1d834a4b17d969f4e84cdcb2fb8d1bb9483ef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:14:35.000Z'}}, {'blockNum': '0x4c0154', 'uniqueId': '0x0ae4f1fdb6b4547e4fecfa904bc8fda6e204251a7e0dc0bcf4ebc45f0b9f4676:log:32', 'hash': '0x0ae4f1fdb6b4547e4fecfa904bc8fda6e204251a7e0dc0bcf4ebc45f0b9f4676', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xf7f3c83c824e8ff09736eda5875be6381b2fa486', 'value': 51.20327124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c6968fe7fe2cd000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:16:01.000Z'}}, {'blockNum': '0x4c015b', 'uniqueId': '0x8f755b763ffc4df6124d86af3cd94b6f70acd5b1d36bb2087946d93396da5ac0:log:46', 'hash': '0x8f755b763ffc4df6124d86af3cd94b6f70acd5b1d36bb2087946d93396da5ac0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 300.04867543511045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10440308950c3b8089', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:17:33.000Z'}}, {'blockNum': '0x4c015b', 'uniqueId': '0x8f755b763ffc4df6124d86af3cd94b6f70acd5b1d36bb2087946d93396da5ac0:log:49', 'hash': '0x8f755b763ffc4df6124d86af3cd94b6f70acd5b1d36bb2087946d93396da5ac0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 300.04867543511045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10440308950c3b8089', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:17:33.000Z'}}, {'blockNum': '0x4c0162', 'uniqueId': '0x1fb62bf809fbb76a28dc8349e81d6a59390fc7a5179f1dd5ab7eb344e9c3ac46:log:70', 'hash': '0x1fb62bf809fbb76a28dc8349e81d6a59390fc7a5179f1dd5ab7eb344e9c3ac46', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.5775037191697272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0803b492a5941add', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:19:12.000Z'}}, {'blockNum': '0x4c0162', 'uniqueId': '0x1fb62bf809fbb76a28dc8349e81d6a59390fc7a5179f1dd5ab7eb344e9c3ac46:log:73', 'hash': '0x1fb62bf809fbb76a28dc8349e81d6a59390fc7a5179f1dd5ab7eb344e9c3ac46', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 0.5775037191697272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0803b492a5941add', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:19:12.000Z'}}, {'blockNum': '0x4c016e', 'uniqueId': '0xc4ba553c689c55519bdf3cbeaa2e2e3e6f194f7c49df6a2e4b23abfaa0e84ec2:log:85', 'hash': '0xc4ba553c689c55519bdf3cbeaa2e2e3e6f194f7c49df6a2e4b23abfaa0e84ec2', 'from': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 573.1789987567836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f1274de896c25a3aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:22:14.000Z'}}, {'blockNum': '0x4c016e', 'uniqueId': '0xc4ba553c689c55519bdf3cbeaa2e2e3e6f194f7c49df6a2e4b23abfaa0e84ec2:log:87', 'hash': '0xc4ba553c689c55519bdf3cbeaa2e2e3e6f194f7c49df6a2e4b23abfaa0e84ec2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 573.1789987567836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f1274de896c25a3aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:22:14.000Z'}}, {'blockNum': '0x4c0174', 'uniqueId': '0xd145a81c34be608ac51ef42d3c6b0149ee86799dbd76cf33fb6baaa186c8e3fd:log:107', 'hash': '0xd145a81c34be608ac51ef42d3c6b0149ee86799dbd76cf33fb6baaa186c8e3fd', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7341.563378571396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018dfca8a38a74b87bf7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:24:30.000Z'}}, {'blockNum': '0x4c0174', 'uniqueId': '0xd145a81c34be608ac51ef42d3c6b0149ee86799dbd76cf33fb6baaa186c8e3fd:log:109', 'hash': '0xd145a81c34be608ac51ef42d3c6b0149ee86799dbd76cf33fb6baaa186c8e3fd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 7341.563378571396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018dfca8a38a74b87bf7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:24:30.000Z'}}, {'blockNum': '0x4c0178', 'uniqueId': '0xdc2045d0b1faf195fdc8126d336617c9f4ab42a46ea1f1d8f6737a5ca4e5c45a:log:57', 'hash': '0xdc2045d0b1faf195fdc8126d336617c9f4ab42a46ea1f1d8f6737a5ca4e5c45a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 240.25685806668687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d063bd379ec50a20c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:25:46.000Z'}}, {'blockNum': '0x4c0178', 'uniqueId': '0xdc2045d0b1faf195fdc8126d336617c9f4ab42a46ea1f1d8f6737a5ca4e5c45a:log:60', 'hash': '0xdc2045d0b1faf195fdc8126d336617c9f4ab42a46ea1f1d8f6737a5ca4e5c45a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 240.25685806668687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d063bd379ec50a20c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:25:46.000Z'}}, {'blockNum': '0x4c017a', 'uniqueId': '0xbcc49766cd3a82251e3c4ec1712d7cfc86a571f919ba80a4d213d5426ebd5896:log:78', 'hash': '0xbcc49766cd3a82251e3c4ec1712d7cfc86a571f919ba80a4d213d5426ebd5896', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 18.018988106069376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xfa104e36ba40fca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:26:10.000Z'}}, {'blockNum': '0x4c017a', 'uniqueId': '0xbcc49766cd3a82251e3c4ec1712d7cfc86a571f919ba80a4d213d5426ebd5896:log:81', 'hash': '0xbcc49766cd3a82251e3c4ec1712d7cfc86a571f919ba80a4d213d5426ebd5896', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 18.018988106069376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xfa104e36ba40fca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:26:10.000Z'}}, {'blockNum': '0x4c017e', 'uniqueId': '0xf6e17cff30ab7f9e5851c1457c772affeb4af4f4ceec989b50b909b0719aa2bb:log:84', 'hash': '0xf6e17cff30ab7f9e5851c1457c772affeb4af4f4ceec989b50b909b0719aa2bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 252.26178628951712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacd5e617102c6a14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:32.000Z'}}, {'blockNum': '0x4c017e', 'uniqueId': '0xf6e17cff30ab7f9e5851c1457c772affeb4af4f4ceec989b50b909b0719aa2bb:log:87', 'hash': '0xf6e17cff30ab7f9e5851c1457c772affeb4af4f4ceec989b50b909b0719aa2bb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 252.26178628951712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacd5e617102c6a14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:32.000Z'}}, {'blockNum': '0x4c017f', 'uniqueId': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b:log:14', 'hash': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b', 'from': '0xb0e83c2d71a991017e0116d58c5765abc57384af', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:46.000Z'}}, {'blockNum': '0x4c017f', 'uniqueId': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b:log:17', 'hash': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:46.000Z'}}, {'blockNum': '0x4c017f', 'uniqueId': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b:log:19', 'hash': '0x45b136d4cf2963792f8f5d6029d171cc241b18cba890982fc394dc25f7ad7a6b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:27:46.000Z'}}, {'blockNum': '0x4c0181', 'uniqueId': '0xab88f51ab53728e46823a89b192d0b9fef5cf4b16282a03e9222f7eb3b1161ce:log:6', 'hash': '0xab88f51ab53728e46823a89b192d0b9fef5cf4b16282a03e9222f7eb3b1161ce', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xd205d2bb94ff42ab66b369e17087b87c27bbc06e', 'value': 28.85324551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01906b51eb98af4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:28:13.000Z'}}, {'blockNum': '0x4c0185', 'uniqueId': '0x6d231479b319608906c386df994002402a00ac6b7765d7636749fa3d5b78f8ca:log:0', 'hash': '0x6d231479b319608906c386df994002402a00ac6b7765d7636749fa3d5b78f8ca', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0bfd6edd1730ae0eeff3f3dd3d7f4b4bab1abb59', 'value': 6.57819149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b4a6e4eb1f29400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:28:25.000Z'}}, {'blockNum': '0x4c018a', 'uniqueId': '0x6708d0b61ba5f5c3b658379e363c7969404bd6f01ee2029b9512aabb984964bb:log:28', 'hash': '0x6708d0b61ba5f5c3b658379e363c7969404bd6f01ee2029b9512aabb984964bb', 'from': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.974020356013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1453cf54d0f83f3da8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:30:41.000Z'}}, {'blockNum': '0x4c018a', 'uniqueId': '0x6708d0b61ba5f5c3b658379e363c7969404bd6f01ee2029b9512aabb984964bb:log:30', 'hash': '0x6708d0b61ba5f5c3b658379e363c7969404bd6f01ee2029b9512aabb984964bb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 374.974020356013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1453cf54d0f83f3da8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:30:41.000Z'}}, {'blockNum': '0x4c018b', 'uniqueId': '0x1f1caf17d25f0939dd5568056fe7ab1bca4fcb9deb4a955bd915a2a5cca4b427:log:62', 'hash': '0x1f1caf17d25f0939dd5568056fe7ab1bca4fcb9deb4a955bd915a2a5cca4b427', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1126.1266791802177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d0c25a83d5328feca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:30:45.000Z'}}, {'blockNum': '0x4c018b', 'uniqueId': '0x1f1caf17d25f0939dd5568056fe7ab1bca4fcb9deb4a955bd915a2a5cca4b427:log:65', 'hash': '0x1f1caf17d25f0939dd5568056fe7ab1bca4fcb9deb4a955bd915a2a5cca4b427', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1126.1266791802177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d0c25a83d5328feca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:30:45.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05:log:15', 'hash': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05', 'from': '0xb0e83c2d71a991017e0116d58c5765abc57384af', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05:log:18', 'hash': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05:log:20', 'hash': '0x93d40ac68b807d940c183bf3e75847dca1fea5864c9aa5c23919fac9ac663b05', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x8dfc7385a939ada53d74b7e9bcdc5f2cb725355576248f5770a3486c39d48ec5:log:59', 'hash': '0x8dfc7385a939ada53d74b7e9bcdc5f2cb725355576248f5770a3486c39d48ec5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 402.6147705799815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d36700b2b13054cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0194', 'uniqueId': '0x8dfc7385a939ada53d74b7e9bcdc5f2cb725355576248f5770a3486c39d48ec5:log:62', 'hash': '0x8dfc7385a939ada53d74b7e9bcdc5f2cb725355576248f5770a3486c39d48ec5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 402.6147705799815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d36700b2b13054cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:01.000Z'}}, {'blockNum': '0x4c0197', 'uniqueId': '0x0bca205ea0c38d451cb9abe50c08c5dac634909d013eb61cba02caf0f8779c12:log:227', 'hash': '0x0bca205ea0c38d451cb9abe50c08c5dac634909d013eb61cba02caf0f8779c12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 109.59638548570886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05f0f493eec6741721', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:36.000Z'}}, {'blockNum': '0x4c0197', 'uniqueId': '0x0bca205ea0c38d451cb9abe50c08c5dac634909d013eb61cba02caf0f8779c12:log:230', 'hash': '0x0bca205ea0c38d451cb9abe50c08c5dac634909d013eb61cba02caf0f8779c12', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 109.59638548570886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05f0f493eec6741721', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:33:36.000Z'}}, {'blockNum': '0x4c019d', 'uniqueId': '0x8a002799b1a3e7695d9b6a87208fc8beb0800b8fc32d7fceefab9013fabba1fc:log:56', 'hash': '0x8a002799b1a3e7695d9b6a87208fc8beb0800b8fc32d7fceefab9013fabba1fc', 'from': '0x578f3c8454f316293dbd31d8c7806050f3b3e2d8', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 380.57780307693866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a193f782c77ee087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:35:02.000Z'}}, {'blockNum': '0x4c019d', 'uniqueId': '0x8a002799b1a3e7695d9b6a87208fc8beb0800b8fc32d7fceefab9013fabba1fc:log:58', 'hash': '0x8a002799b1a3e7695d9b6a87208fc8beb0800b8fc32d7fceefab9013fabba1fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 380.57780307693866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a193f782c77ee087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:35:02.000Z'}}, {'blockNum': '0x4c019e', 'uniqueId': '0xa808f5c50552747e1b63cab5637bd43dca7d08c5ce9bb52a3c64d8ddbdb9ad37:log:41', 'hash': '0xa808f5c50552747e1b63cab5637bd43dca7d08c5ce9bb52a3c64d8ddbdb9ad37', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 450.401482549733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186a93820cb621fa14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:35:34.000Z'}}, {'blockNum': '0x4c019e', 'uniqueId': '0xa808f5c50552747e1b63cab5637bd43dca7d08c5ce9bb52a3c64d8ddbdb9ad37:log:44', 'hash': '0xa808f5c50552747e1b63cab5637bd43dca7d08c5ce9bb52a3c64d8ddbdb9ad37', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 450.401482549733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186a93820cb621fa14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:35:34.000Z'}}, {'blockNum': '0x4c01a0', 'uniqueId': '0xd23f48a527a4a0b870cb055091aaf1ef98e2af33adbe329d7af95d9c5a56f5f2:log:251', 'hash': '0xd23f48a527a4a0b870cb055091aaf1ef98e2af33adbe329d7af95d9c5a56f5f2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 45.03882373587312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02710a0b8fd6263d16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:36:18.000Z'}}, {'blockNum': '0x4c01a0', 'uniqueId': '0xd23f48a527a4a0b870cb055091aaf1ef98e2af33adbe329d7af95d9c5a56f5f2:log:254', 'hash': '0xd23f48a527a4a0b870cb055091aaf1ef98e2af33adbe329d7af95d9c5a56f5f2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 45.03882373587312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02710a0b8fd6263d16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:36:18.000Z'}}, {'blockNum': '0x4c01a6', 'uniqueId': '0xb8bf7d37ae2998e78f6e97a180e5e29bd5e959cb19c74e4a12ddcc3de3a4c55d:log:9', 'hash': '0xb8bf7d37ae2998e78f6e97a180e5e29bd5e959cb19c74e4a12ddcc3de3a4c55d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 360.3019209271743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138831901f331b9506', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:37:37.000Z'}}, {'blockNum': '0x4c01a6', 'uniqueId': '0xb8bf7d37ae2998e78f6e97a180e5e29bd5e959cb19c74e4a12ddcc3de3a4c55d:log:12', 'hash': '0xb8bf7d37ae2998e78f6e97a180e5e29bd5e959cb19c74e4a12ddcc3de3a4c55d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 360.3019209271743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138831901f331b9506', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:37:37.000Z'}}, {'blockNum': '0x4c01a6', 'uniqueId': '0x078eb22194620b4d603892f089216b380fd157d03f1b154178aca81b6ebb3460:log:114', 'hash': '0x078eb22194620b4d603892f089216b380fd157d03f1b154178aca81b6ebb3460', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 42.68436963272383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02505d58078bf97786', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:37:37.000Z'}}, {'blockNum': '0x4c01a6', 'uniqueId': '0x078eb22194620b4d603892f089216b380fd157d03f1b154178aca81b6ebb3460:log:117', 'hash': '0x078eb22194620b4d603892f089216b380fd157d03f1b154178aca81b6ebb3460', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 42.68436963272383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02505d58078bf97786', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:37:37.000Z'}}, {'blockNum': '0x4c01a8', 'uniqueId': '0x3d6dbf36c392104c6fc863784843e27d8657b20077c42575c6e0e26a6bf51481:log:233', 'hash': '0x3d6dbf36c392104c6fc863784843e27d8657b20077c42575c6e0e26a6bf51481', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 300.2383074539597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1046a4bde60dc84d75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:38:02.000Z'}}, {'blockNum': '0x4c01a8', 'uniqueId': '0x3d6dbf36c392104c6fc863784843e27d8657b20077c42575c6e0e26a6bf51481:log:236', 'hash': '0x3d6dbf36c392104c6fc863784843e27d8657b20077c42575c6e0e26a6bf51481', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 300.2383074539597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1046a4bde60dc84d75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:38:02.000Z'}}, {'blockNum': '0x4c01ac', 'uniqueId': '0x083ea6a1ab42e83efb68d2f612d6c1c464d334adbd322b4ccbcd525f047b2e29:log:78', 'hash': '0x083ea6a1ab42e83efb68d2f612d6c1c464d334adbd322b4ccbcd525f047b2e29', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 750.5489543290892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28aff589622e3e7e2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:39:44.000Z'}}, {'blockNum': '0x4c01ac', 'uniqueId': '0x083ea6a1ab42e83efb68d2f612d6c1c464d334adbd322b4ccbcd525f047b2e29:log:81', 'hash': '0x083ea6a1ab42e83efb68d2f612d6c1c464d334adbd322b4ccbcd525f047b2e29', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 750.5489543290892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28aff589622e3e7e2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:39:44.000Z'}}, {'blockNum': '0x4c01b5', 'uniqueId': '0x141c9cf04d7de3a2be60d550408f5a0b407601089fbdd08e803f879344bdcfa8:log:16', 'hash': '0x141c9cf04d7de3a2be60d550408f5a0b407601089fbdd08e803f879344bdcfa8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 128.29740918968028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f47bf5e8c1d45684', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:41:54.000Z'}}, {'blockNum': '0x4c01b5', 'uniqueId': '0x141c9cf04d7de3a2be60d550408f5a0b407601089fbdd08e803f879344bdcfa8:log:19', 'hash': '0x141c9cf04d7de3a2be60d550408f5a0b407601089fbdd08e803f879344bdcfa8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 128.29740918968028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f47bf5e8c1d45684', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:41:54.000Z'}}, {'blockNum': '0x4c01c5', 'uniqueId': '0xb04ba0cb0b2efcbc8aae2101c282898bd1961a3057676c5766389cce6d8c208d:log:93', 'hash': '0xb04ba0cb0b2efcbc8aae2101c282898bd1961a3057676c5766389cce6d8c208d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 450.29041740026577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186908ece2793748a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:47:43.000Z'}}, {'blockNum': '0x4c01c5', 'uniqueId': '0xb04ba0cb0b2efcbc8aae2101c282898bd1961a3057676c5766389cce6d8c208d:log:96', 'hash': '0xb04ba0cb0b2efcbc8aae2101c282898bd1961a3057676c5766389cce6d8c208d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 450.29041740026577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186908ece2793748a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:47:43.000Z'}}, {'blockNum': '0x4c01c8', 'uniqueId': '0x6bc26872957d56041d2f06e2c7d3582acba7ea9001d33167f63cae512de36744:log:25', 'hash': '0x6bc26872957d56041d2f06e2c7d3582acba7ea9001d33167f63cae512de36744', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 450.2663485844965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1868b36a6c9b1fa217', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:48:37.000Z'}}, {'blockNum': '0x4c01c8', 'uniqueId': '0x6bc26872957d56041d2f06e2c7d3582acba7ea9001d33167f63cae512de36744:log:28', 'hash': '0x6bc26872957d56041d2f06e2c7d3582acba7ea9001d33167f63cae512de36744', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 450.2663485844965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1868b36a6c9b1fa217', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:48:37.000Z'}}, {'blockNum': '0x4c01d3', 'uniqueId': '0x1decca16c733753b28ceab0e1c6b2164931ad0f2544cad48aef8f2624d1b87bd:log:15', 'hash': '0x1decca16c733753b28ceab0e1c6b2164931ad0f2544cad48aef8f2624d1b87bd', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 911.754439464986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x316d227802e7e2c9db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:50:08.000Z'}}, {'blockNum': '0x4c01d3', 'uniqueId': '0x1decca16c733753b28ceab0e1c6b2164931ad0f2544cad48aef8f2624d1b87bd:log:17', 'hash': '0x1decca16c733753b28ceab0e1c6b2164931ad0f2544cad48aef8f2624d1b87bd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb0e83c2d71a991017e0116d58c5765abc57384af', 'value': 911.754439464986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x316d227802e7e2c9db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:50:08.000Z'}}, {'blockNum': '0x4c01d4', 'uniqueId': '0xf564ce97fc899e0c7827ebe93485920089a42b4e35e67a2904e7d83941014385:log:127', 'hash': '0xf564ce97fc899e0c7827ebe93485920089a42b4e35e67a2904e7d83941014385', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.204065960851889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63f9fbd2970f5886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:50:17.000Z'}}, {'blockNum': '0x4c01d4', 'uniqueId': '0xf564ce97fc899e0c7827ebe93485920089a42b4e35e67a2904e7d83941014385:log:130', 'hash': '0xf564ce97fc899e0c7827ebe93485920089a42b4e35e67a2904e7d83941014385', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.204065960851889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63f9fbd2970f5886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:50:17.000Z'}}, {'blockNum': '0x4c01d7', 'uniqueId': '0xe4dc913ac5bd3bbaefbb06b56f9b546f85331c44f2d9712de4492ade507e32db:log:36', 'hash': '0xe4dc913ac5bd3bbaefbb06b56f9b546f85331c44f2d9712de4492ade507e32db', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 525.2798741257066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c79b8fe771ca3a56c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:51:24.000Z'}}, {'blockNum': '0x4c01d7', 'uniqueId': '0xe4dc913ac5bd3bbaefbb06b56f9b546f85331c44f2d9712de4492ade507e32db:log:39', 'hash': '0xe4dc913ac5bd3bbaefbb06b56f9b546f85331c44f2d9712de4492ade507e32db', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 525.2798741257066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c79b8fe771ca3a56c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:51:24.000Z'}}, {'blockNum': '0x4c01d9', 'uniqueId': '0x40ccc291b49a249e9a403c429e307c268b5da38077f67df4db153147edd39848:log:20', 'hash': '0x40ccc291b49a249e9a403c429e307c268b5da38077f67df4db153147edd39848', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 600.2797515806382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208a8e15a4e7aa061d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:51:45.000Z'}}, {'blockNum': '0x4c01d9', 'uniqueId': '0x40ccc291b49a249e9a403c429e307c268b5da38077f67df4db153147edd39848:log:23', 'hash': '0x40ccc291b49a249e9a403c429e307c268b5da38077f67df4db153147edd39848', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 600.2797515806382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208a8e15a4e7aa061d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:51:45.000Z'}}, {'blockNum': '0x4c01e2', 'uniqueId': '0x9f6326d52fcbfd716d551245e765fedda9c5621f410e1aa2642d7f6ed6f9f40b:log:43', 'hash': '0x9f6326d52fcbfd716d551245e765fedda9c5621f410e1aa2642d7f6ed6f9f40b', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x155cbe8dfb1c23b603776c8edca2c054fb616098', 'value': 14.04774548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc2f39e15fe7fd000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T09:54:07.000Z'}}, {'blockNum': '0x4c01f8', 'uniqueId': '0xcb58a0014c7691448a3160aeb807de0e9fc523256dc5496185a4bf53e61c5083:log:15', 'hash': '0xcb58a0014c7691448a3160aeb807de0e9fc523256dc5496185a4bf53e61c5083', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe90e640b09fdef82c3e33f2ba2d80d4a784ba0f5', 'value': 334.26848336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x121ee83695e95f4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:00:58.000Z'}}, {'blockNum': '0x4c01f8', 'uniqueId': '0x57e0324242ff91b0dfe093df00f9c926c5952ff3cf074b74ecc8bc95e58d3980:log:16', 'hash': '0x57e0324242ff91b0dfe093df00f9c926c5952ff3cf074b74ecc8bc95e58d3980', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0096ecc5c5a46e1d9647bf845094698fe1cf7da1', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:00:58.000Z'}}, {'blockNum': '0x4c01fb', 'uniqueId': '0x1ae97f97d840910e7ff1e18d501077faf1a64f23266ad6e636dbab1eede259fa:log:74', 'hash': '0x1ae97f97d840910e7ff1e18d501077faf1a64f23266ad6e636dbab1eede259fa', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 80.71606311742183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0460290fc0d5efd710', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:01:47.000Z'}}, {'blockNum': '0x4c01fb', 'uniqueId': '0x1ae97f97d840910e7ff1e18d501077faf1a64f23266ad6e636dbab1eede259fa:log:76', 'hash': '0x1ae97f97d840910e7ff1e18d501077faf1a64f23266ad6e636dbab1eede259fa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 80.71606311742183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0460290fc0d5efd710', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:01:47.000Z'}}, {'blockNum': '0x4c0207', 'uniqueId': '0x395345016a3028dad50230e3524a52e3d386203961a5e36701c8163d52ee0f7a:log:22', 'hash': '0x395345016a3028dad50230e3524a52e3d386203961a5e36701c8163d52ee0f7a', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.21724037197257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0816ce21880f807f5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:03:40.000Z'}}, {'blockNum': '0x4c0207', 'uniqueId': '0x395345016a3028dad50230e3524a52e3d386203961a5e36701c8163d52ee0f7a:log:24', 'hash': '0x395345016a3028dad50230e3524a52e3d386203961a5e36701c8163d52ee0f7a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 149.21724037197257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0816ce21880f807f5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:03:40.000Z'}}, {'blockNum': '0x4c0220', 'uniqueId': '0xebc58298614683f03b4b7e947f208a6eab4ba5a50e09e0f9a66a4cd91888641c:log:36', 'hash': '0xebc58298614683f03b4b7e947f208a6eab4ba5a50e09e0f9a66a4cd91888641c', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x9c31d140d8cb10cfbde2db973acf42365176ee85', 'value': 4.10840174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3903f99d834bf600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:10:40.000Z'}}, {'blockNum': '0x4c022b', 'uniqueId': '0x12e94d867a2898f42c3ab0a101f8a51b3b77f25792e26336e75dda0e51a05fc8:log:135', 'hash': '0x12e94d867a2898f42c3ab0a101f8a51b3b77f25792e26336e75dda0e51a05fc8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 30.013683975829064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a086068e84200ed1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:13:04.000Z'}}, {'blockNum': '0x4c022b', 'uniqueId': '0x12e94d867a2898f42c3ab0a101f8a51b3b77f25792e26336e75dda0e51a05fc8:log:138', 'hash': '0x12e94d867a2898f42c3ab0a101f8a51b3b77f25792e26336e75dda0e51a05fc8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 30.013683975829064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a086068e84200ed1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:13:04.000Z'}}, {'blockNum': '0x4c022d', 'uniqueId': '0xebe4472c6e0f07587711714784f989431ac08ea57119a09829da738c7170c557:log:4', 'hash': '0xebe4472c6e0f07587711714784f989431ac08ea57119a09829da738c7170c557', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x6df2ae57619a58c4ac8db1b849e6a2af1beff51f', 'value': 12.37995831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xabce727db9b1f800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:13:13.000Z'}}, {'blockNum': '0x4c0232', 'uniqueId': '0x1cfa2c5dfd99bcc9a6d54160471dd35c2a56c60ae0ccfd1e15e049f734e50d10:log:20', 'hash': '0x1cfa2c5dfd99bcc9a6d54160471dd35c2a56c60ae0ccfd1e15e049f734e50d10', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 255.11199635727286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd463e10bafff062c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:14:59.000Z'}}, {'blockNum': '0x4c0232', 'uniqueId': '0x1cfa2c5dfd99bcc9a6d54160471dd35c2a56c60ae0ccfd1e15e049f734e50d10:log:23', 'hash': '0x1cfa2c5dfd99bcc9a6d54160471dd35c2a56c60ae0ccfd1e15e049f734e50d10', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 255.11199635727286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd463e10bafff062c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:14:59.000Z'}}, {'blockNum': '0x4c0240', 'uniqueId': '0x9f764d8e27f0f20f8e6fc1a576849e903ea92553c6359e441d43f779b7e7ec19:log:136', 'hash': '0x9f764d8e27f0f20f8e6fc1a576849e903ea92553c6359e441d43f779b7e7ec19', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 7.5031770549269545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6820a3c725c85f0f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:18:17.000Z'}}, {'blockNum': '0x4c0240', 'uniqueId': '0x9f764d8e27f0f20f8e6fc1a576849e903ea92553c6359e441d43f779b7e7ec19:log:139', 'hash': '0x9f764d8e27f0f20f8e6fc1a576849e903ea92553c6359e441d43f779b7e7ec19', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 7.5031770549269545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6820a3c725c85f0f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:18:17.000Z'}}, {'blockNum': '0x4c0248', 'uniqueId': '0x1d51af5703aef8a2c1c562e6d6c69ed49bf5dc361d7362c318c7bfd1aa300c37:log:81', 'hash': '0x1d51af5703aef8a2c1c562e6d6c69ed49bf5dc361d7362c318c7bfd1aa300c37', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1320.4550782821188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4794fed1a0724efc35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:19:49.000Z'}}, {'blockNum': '0x4c0248', 'uniqueId': '0x1d51af5703aef8a2c1c562e6d6c69ed49bf5dc361d7362c318c7bfd1aa300c37:log:84', 'hash': '0x1d51af5703aef8a2c1c562e6d6c69ed49bf5dc361d7362c318c7bfd1aa300c37', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1320.4550782821188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4794fed1a0724efc35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:19:49.000Z'}}, {'blockNum': '0x4c0250', 'uniqueId': '0x300bbdb6cf090033b193c68b2a91d8a8538bb6bab06698d1f3665bfada11d549:log:87', 'hash': '0x300bbdb6cf090033b193c68b2a91d8a8538bb6bab06698d1f3665bfada11d549', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 450.1078367204822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18668044b947de0535', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:21:23.000Z'}}, {'blockNum': '0x4c0250', 'uniqueId': '0x300bbdb6cf090033b193c68b2a91d8a8538bb6bab06698d1f3665bfada11d549:log:90', 'hash': '0x300bbdb6cf090033b193c68b2a91d8a8538bb6bab06698d1f3665bfada11d549', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 450.1078367204822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18668044b947de0535', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:21:23.000Z'}}, {'blockNum': '0x4c0252', 'uniqueId': '0xc6d9f7627114c5529dcc5de5693a9794b19146ff711f2e10cb15e5b57c5f4ee6:log:121', 'hash': '0xc6d9f7627114c5529dcc5de5693a9794b19146ff711f2e10cb15e5b57c5f4ee6', 'from': '0xc52a136c05ca1b20d57bd10f0294a56d4193c6c6', 'to': '0x52d4ec0a365297fcc1b07d385b804c4fd26edd7a', 'value': 39.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02242c30b853ee0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:21:37.000Z'}}, {'blockNum': '0x4c0253', 'uniqueId': '0xcb59e0c16ff9ae950a20137f3313d4f6947c383a3383bd6e2d8cade3daaaf582:log:16', 'hash': '0xcb59e0c16ff9ae950a20137f3313d4f6947c383a3383bd6e2d8cade3daaaf582', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xdbea8e1663b36d4df6192009ca8312db9a4b36c4', 'value': 1.87736904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a0dc131f5842000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:22:05.000Z'}}, {'blockNum': '0x4c0269', 'uniqueId': '0x330a11ee5273a7a70594d10379de9b47d5a3b7e1adf05d311bee9082b4fd6df0:log:149', 'hash': '0x330a11ee5273a7a70594d10379de9b47d5a3b7e1adf05d311bee9082b4fd6df0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 353.1589291980881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1325108efd4d5f3882', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:25:41.000Z'}}, {'blockNum': '0x4c0269', 'uniqueId': '0x330a11ee5273a7a70594d10379de9b47d5a3b7e1adf05d311bee9082b4fd6df0:log:152', 'hash': '0x330a11ee5273a7a70594d10379de9b47d5a3b7e1adf05d311bee9082b4fd6df0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 353.1589291980881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1325108efd4d5f3882', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:25:41.000Z'}}, {'blockNum': '0x4c0278', 'uniqueId': '0x63a5bcb029087a2ced8471354f0e250aee9d479a01f7b39e6218c401fea35987:log:54', 'hash': '0x63a5bcb029087a2ced8471354f0e250aee9d479a01f7b39e6218c401fea35987', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1500.1229061241474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5152632b20cc77d040', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:28:57.000Z'}}, {'blockNum': '0x4c0278', 'uniqueId': '0x63a5bcb029087a2ced8471354f0e250aee9d479a01f7b39e6218c401fea35987:log:57', 'hash': '0x63a5bcb029087a2ced8471354f0e250aee9d479a01f7b39e6218c401fea35987', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1500.1229061241474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5152632b20cc77d040', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:28:57.000Z'}}, {'blockNum': '0x4c028d', 'uniqueId': '0x4968b6ea736cf3c90b8fa86f989682f2f93408880729660ae7f7bf3464650e30:log:151', 'hash': '0x4968b6ea736cf3c90b8fa86f989682f2f93408880729660ae7f7bf3464650e30', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 391.4881238804905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1538fd3679f0c1b344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:32:37.000Z'}}, {'blockNum': '0x4c028d', 'uniqueId': '0x4968b6ea736cf3c90b8fa86f989682f2f93408880729660ae7f7bf3464650e30:log:154', 'hash': '0x4968b6ea736cf3c90b8fa86f989682f2f93408880729660ae7f7bf3464650e30', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 391.4881238804905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1538fd3679f0c1b344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:32:37.000Z'}}, {'blockNum': '0x4c0290', 'uniqueId': '0x8e3378a13e8050d72533c51d54a2afb15d7f5d8cc2aac26eb6005b5b457d9d02:log:149', 'hash': '0x8e3378a13e8050d72533c51d54a2afb15d7f5d8cc2aac26eb6005b5b457d9d02', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 294.7143735016202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff9fbc93c6ddd7534', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:33:08.000Z'}}, {'blockNum': '0x4c0290', 'uniqueId': '0x8e3378a13e8050d72533c51d54a2afb15d7f5d8cc2aac26eb6005b5b457d9d02:log:152', 'hash': '0x8e3378a13e8050d72533c51d54a2afb15d7f5d8cc2aac26eb6005b5b457d9d02', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 294.7143735016202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff9fbc93c6ddd7534', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:33:08.000Z'}}, {'blockNum': '0x4c0293', 'uniqueId': '0x367df2225e152e6c87c0b2b73e0dc725ad46cdfccc030e35989be74fcef994b1:log:64', 'hash': '0x367df2225e152e6c87c0b2b73e0dc725ad46cdfccc030e35989be74fcef994b1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1499.7336754925088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514cfc57ee4df33cf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:34:21.000Z'}}, {'blockNum': '0x4c0293', 'uniqueId': '0x367df2225e152e6c87c0b2b73e0dc725ad46cdfccc030e35989be74fcef994b1:log:66', 'hash': '0x367df2225e152e6c87c0b2b73e0dc725ad46cdfccc030e35989be74fcef994b1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1499.7336754925088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514cfc57ee4df33cf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:34:21.000Z'}}, {'blockNum': '0x4c0294', 'uniqueId': '0x26b7104fc3a0414c61d04735b6efe9dbdbbf79c9dc2e9d96c80823cc21a1d677:log:60', 'hash': '0x26b7104fc3a0414c61d04735b6efe9dbdbbf79c9dc2e9d96c80823cc21a1d677', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 391.3865587575886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1537946189009e4ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:34:36.000Z'}}, {'blockNum': '0x4c0294', 'uniqueId': '0x26b7104fc3a0414c61d04735b6efe9dbdbbf79c9dc2e9d96c80823cc21a1d677:log:63', 'hash': '0x26b7104fc3a0414c61d04735b6efe9dbdbbf79c9dc2e9d96c80823cc21a1d677', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 391.3865587575886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1537946189009e4ac0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:34:36.000Z'}}, {'blockNum': '0x4c02a0', 'uniqueId': '0x07dfc44174d937c16e235d721cb00fb6c79a0df37912c2b9865ca3040dbdbb74:log:157', 'hash': '0x07dfc44174d937c16e235d721cb00fb6c79a0df37912c2b9865ca3040dbdbb74', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.6185947507319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103e0b147a7b1877cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:36:28.000Z'}}, {'blockNum': '0x4c02a0', 'uniqueId': '0x07dfc44174d937c16e235d721cb00fb6c79a0df37912c2b9865ca3040dbdbb74:log:159', 'hash': '0x07dfc44174d937c16e235d721cb00fb6c79a0df37912c2b9865ca3040dbdbb74', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 299.6185947507319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103e0b147a7b1877cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:36:28.000Z'}}, {'blockNum': '0x4c02ba', 'uniqueId': '0xd51e7ea1c5a886f42aff9730a15b10dcda7b35df788865411c283639aefc593f:log:144', 'hash': '0xd51e7ea1c5a886f42aff9730a15b10dcda7b35df788865411c283639aefc593f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.4995837244628774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14cf9773c7912aff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:41:15.000Z'}}, {'blockNum': '0x4c02ba', 'uniqueId': '0xd51e7ea1c5a886f42aff9730a15b10dcda7b35df788865411c283639aefc593f:log:147', 'hash': '0xd51e7ea1c5a886f42aff9730a15b10dcda7b35df788865411c283639aefc593f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 1.4995837244628774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14cf9773c7912aff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:41:15.000Z'}}, {'blockNum': '0x4c02bf', 'uniqueId': '0x403ed92961284ecda02b9e6aad6ff48e57d7336cd3d51eb593e133d2ea56034f:log:38', 'hash': '0x403ed92961284ecda02b9e6aad6ff48e57d7336cd3d51eb593e133d2ea56034f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.911379816579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10421b42f1d0723b61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:42:39.000Z'}}, {'blockNum': '0x4c02bf', 'uniqueId': '0x403ed92961284ecda02b9e6aad6ff48e57d7336cd3d51eb593e133d2ea56034f:log:41', 'hash': '0x403ed92961284ecda02b9e6aad6ff48e57d7336cd3d51eb593e133d2ea56034f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 299.911379816579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10421b42f1d0723b61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:42:39.000Z'}}, {'blockNum': '0x4c02cb', 'uniqueId': '0xfc7ac2fd9cc5078d2e23a71482153a5c1a35ab757f145174fa0086cff40efac2:log:98', 'hash': '0xfc7ac2fd9cc5078d2e23a71482153a5c1a35ab757f145174fa0086cff40efac2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1499.3967716489904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51484f6bab918f9ab8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:46:53.000Z'}}, {'blockNum': '0x4c02cb', 'uniqueId': '0xfc7ac2fd9cc5078d2e23a71482153a5c1a35ab757f145174fa0086cff40efac2:log:100', 'hash': '0xfc7ac2fd9cc5078d2e23a71482153a5c1a35ab757f145174fa0086cff40efac2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1499.3967716489904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51484f6bab918f9ab8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:46:53.000Z'}}, {'blockNum': '0x4c02ce', 'uniqueId': '0xc6ca3cad7360ec6cd22131bcbc14714d0561e4411168d9bfa760a742ffc0dc58:log:21', 'hash': '0xc6ca3cad7360ec6cd22131bcbc14714d0561e4411168d9bfa760a742ffc0dc58', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 194.90198131259848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a90ceef5e6d4130a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:48:00.000Z'}}, {'blockNum': '0x4c02ce', 'uniqueId': '0xc6ca3cad7360ec6cd22131bcbc14714d0561e4411168d9bfa760a742ffc0dc58:log:24', 'hash': '0xc6ca3cad7360ec6cd22131bcbc14714d0561e4411168d9bfa760a742ffc0dc58', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 194.90198131259848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a90ceef5e6d4130a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:48:00.000Z'}}, {'blockNum': '0x4c02d0', 'uniqueId': '0x80f3d0eea2bcd98e0fb66784ef534189104320ebb681728bc407d9714a92fe77:log:67', 'hash': '0x80f3d0eea2bcd98e0fb66784ef534189104320ebb681728bc407d9714a92fe77', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 40.17923250028955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022d994f148f96c545', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:48:21.000Z'}}, {'blockNum': '0x4c02d0', 'uniqueId': '0x80f3d0eea2bcd98e0fb66784ef534189104320ebb681728bc407d9714a92fe77:log:70', 'hash': '0x80f3d0eea2bcd98e0fb66784ef534189104320ebb681728bc407d9714a92fe77', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 40.17923250028955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022d994f148f96c545', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:48:21.000Z'}}, {'blockNum': '0x4c02d9', 'uniqueId': '0x2edc9c9a79c6e614200b72637927057d2802a1e8f52fcfdbe4ac167c65d2e1a5:log:21', 'hash': '0x2edc9c9a79c6e614200b72637927057d2802a1e8f52fcfdbe4ac167c65d2e1a5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 254.86380308002174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0f21e9331cd7d7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:49:37.000Z'}}, {'blockNum': '0x4c02d9', 'uniqueId': '0x2edc9c9a79c6e614200b72637927057d2802a1e8f52fcfdbe4ac167c65d2e1a5:log:24', 'hash': '0x2edc9c9a79c6e614200b72637927057d2802a1e8f52fcfdbe4ac167c65d2e1a5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 254.86380308002174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0f21e9331cd7d7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:49:37.000Z'}}, {'blockNum': '0x4c02db', 'uniqueId': '0x6fc2b3af6b57fef6ef9cff00fe25cfa8ba0517f5f1a691f21541327d65fefcd4:log:23', 'hash': '0x6fc2b3af6b57fef6ef9cff00fe25cfa8ba0517f5f1a691f21541327d65fefcd4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 58.467667573944716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032b66e1e22e9981a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:50:16.000Z'}}, {'blockNum': '0x4c02db', 'uniqueId': '0x6fc2b3af6b57fef6ef9cff00fe25cfa8ba0517f5f1a691f21541327d65fefcd4:log:26', 'hash': '0x6fc2b3af6b57fef6ef9cff00fe25cfa8ba0517f5f1a691f21541327d65fefcd4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 58.467667573944716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032b66e1e22e9981a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:50:16.000Z'}}, {'blockNum': '0x4c02e4', 'uniqueId': '0x8267c6d4e70e29a3d2a6129e06e142cc6fbd48072fe8edc562f58314744fb58d:log:80', 'hash': '0x8267c6d4e70e29a3d2a6129e06e142cc6fbd48072fe8edc562f58314744fb58d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1499.0323936809637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514340e3d6bd59db90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:52:54.000Z'}}, {'blockNum': '0x4c02e4', 'uniqueId': '0x8267c6d4e70e29a3d2a6129e06e142cc6fbd48072fe8edc562f58314744fb58d:log:82', 'hash': '0x8267c6d4e70e29a3d2a6129e06e142cc6fbd48072fe8edc562f58314744fb58d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1499.0323936809637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514340e3d6bd59db90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:52:54.000Z'}}, {'blockNum': '0x4c02e4', 'uniqueId': '0xedb2b0a5bcad654618021f959c7a03708deaa142e282375996b6ea37d2ccd6b6:log:90', 'hash': '0xedb2b0a5bcad654618021f959c7a03708deaa142e282375996b6ea37d2ccd6b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.88857093762078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08201f2d1fc3d32fb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:52:54.000Z'}}, {'blockNum': '0x4c02e4', 'uniqueId': '0xedb2b0a5bcad654618021f959c7a03708deaa142e282375996b6ea37d2ccd6b6:log:93', 'hash': '0xedb2b0a5bcad654618021f959c7a03708deaa142e282375996b6ea37d2ccd6b6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.88857093762078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08201f2d1fc3d32fb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:52:54.000Z'}}, {'blockNum': '0x4c02e5', 'uniqueId': '0x1fdfbfb3191cf0bd4fdd649d77aaad56bb86319a3871285bfde3488d331f60e3:log:67', 'hash': '0x1fdfbfb3191cf0bd4fdd649d77aaad56bb86319a3871285bfde3488d331f60e3', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 24.91856307206538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159d08516ff9f9de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:53:04.000Z'}}, {'blockNum': '0x4c02e5', 'uniqueId': '0x1fdfbfb3191cf0bd4fdd649d77aaad56bb86319a3871285bfde3488d331f60e3:log:70', 'hash': '0x1fdfbfb3191cf0bd4fdd649d77aaad56bb86319a3871285bfde3488d331f60e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 24.91856307206538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159d08516ff9f9de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:53:04.000Z'}}, {'blockNum': '0x4c02ee', 'uniqueId': '0x291ddb9962166e02a14e0b208b28e6960b6b4bf506c6ef6f941866319cc557d3:log:17', 'hash': '0x291ddb9962166e02a14e0b208b28e6960b6b4bf506c6ef6f941866319cc557d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 719.4280233796109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x270011c7921b1fe256', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:54:56.000Z'}}, {'blockNum': '0x4c02ee', 'uniqueId': '0x291ddb9962166e02a14e0b208b28e6960b6b4bf506c6ef6f941866319cc557d3:log:20', 'hash': '0x291ddb9962166e02a14e0b208b28e6960b6b4bf506c6ef6f941866319cc557d3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 719.4280233796109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x270011c7921b1fe256', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:54:56.000Z'}}, {'blockNum': '0x4c02ef', 'uniqueId': '0x2cbd6b496c58b0dd26e47295659f8752d6e520b05f9885321d84bacf94bf894e:log:38', 'hash': '0x2cbd6b496c58b0dd26e47295659f8752d6e520b05f9885321d84bacf94bf894e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 412.3127942680013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1659fd4ddc24ef0548', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:55:10.000Z'}}, {'blockNum': '0x4c02ef', 'uniqueId': '0x2cbd6b496c58b0dd26e47295659f8752d6e520b05f9885321d84bacf94bf894e:log:41', 'hash': '0x2cbd6b496c58b0dd26e47295659f8752d6e520b05f9885321d84bacf94bf894e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 412.3127942680013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1659fd4ddc24ef0548', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:55:10.000Z'}}, {'blockNum': '0x4c02f8', 'uniqueId': '0x7adc95653d4002fbeb477b5f90b3323b2516084ce899da561edd9fb8f3863885:log:7', 'hash': '0x7adc95653d4002fbeb477b5f90b3323b2516084ce899da561edd9fb8f3863885', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xbed8e4df57dd14395eba5fd520fce2eea4b67212', 'value': 11.73728079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2e332b114f75800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:56:48.000Z'}}, {'blockNum': '0x4c0304', 'uniqueId': '0x0b24c99dee15a40afafefc01ad528bcd0c452e9bca0ed3ae94483c47fc12f261:log:15', 'hash': '0x0b24c99dee15a40afafefc01ad528bcd0c452e9bca0ed3ae94483c47fc12f261', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.992021487154023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7cca13e69a7ec944', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:59:50.000Z'}}, {'blockNum': '0x4c0304', 'uniqueId': '0x0b24c99dee15a40afafefc01ad528bcd0c452e9bca0ed3ae94483c47fc12f261:log:18', 'hash': '0x0b24c99dee15a40afafefc01ad528bcd0c452e9bca0ed3ae94483c47fc12f261', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'value': 8.992021487154023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7cca13e69a7ec944', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T10:59:50.000Z'}}, {'blockNum': '0x4c030d', 'uniqueId': '0x58faa223836ce583b5a40ce508bc1757eb95eff805a08fe5ab5e2329544855a4:log:65', 'hash': '0x58faa223836ce583b5a40ce508bc1757eb95eff805a08fe5ab5e2329544855a4', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3341.4209380351595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb52387df893e346523', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:01:55.000Z'}}, {'blockNum': '0x4c030d', 'uniqueId': '0x58faa223836ce583b5a40ce508bc1757eb95eff805a08fe5ab5e2329544855a4:log:67', 'hash': '0x58faa223836ce583b5a40ce508bc1757eb95eff805a08fe5ab5e2329544855a4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3341.4209380351595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb52387df893e346523', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:01:55.000Z'}}, {'blockNum': '0x4c030e', 'uniqueId': '0x14bb21f73a7abc94494183d9114c6d87770bd1781f791992356887bac7dbc2d2:log:56', 'hash': '0x14bb21f73a7abc94494183d9114c6d87770bd1781f791992356887bac7dbc2d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.84745384344086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x104138269c57a12159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:02:23.000Z'}}, {'blockNum': '0x4c030e', 'uniqueId': '0x14bb21f73a7abc94494183d9114c6d87770bd1781f791992356887bac7dbc2d2:log:59', 'hash': '0x14bb21f73a7abc94494183d9114c6d87770bd1781f791992356887bac7dbc2d2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 299.84745384344086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x104138269c57a12159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:02:23.000Z'}}, {'blockNum': '0x4c0312', 'uniqueId': '0x4f29cbf49167e15de6964a0a6bac4a875c5410f7b72ce84e060e64e7580c9e99:log:22', 'hash': '0x4f29cbf49167e15de6964a0a6bac4a875c5410f7b72ce84e060e64e7580c9e99', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.8367824149911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1041123d00c9a20159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:03:19.000Z'}}, {'blockNum': '0x4c0312', 'uniqueId': '0x4f29cbf49167e15de6964a0a6bac4a875c5410f7b72ce84e060e64e7580c9e99:log:25', 'hash': '0x4f29cbf49167e15de6964a0a6bac4a875c5410f7b72ce84e060e64e7580c9e99', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 299.8367824149911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1041123d00c9a20159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:03:19.000Z'}}, {'blockNum': '0x4c0317', 'uniqueId': '0x64677e4c5b6d67bdd0632aef4858e1fba37bc8b99d25e2de984bf20d7c233dbc:log:47', 'hash': '0x64677e4c5b6d67bdd0632aef4858e1fba37bc8b99d25e2de984bf20d7c233dbc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.8261117882907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040ec541fe7a08094', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:04:41.000Z'}}, {'blockNum': '0x4c0317', 'uniqueId': '0x64677e4c5b6d67bdd0632aef4858e1fba37bc8b99d25e2de984bf20d7c233dbc:log:50', 'hash': '0x64677e4c5b6d67bdd0632aef4858e1fba37bc8b99d25e2de984bf20d7c233dbc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 299.8261117882907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040ec541fe7a08094', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:04:41.000Z'}}, {'blockNum': '0x4c0317', 'uniqueId': '0x987360ce0bea0a4bea467f31cecda3ef8dcdd4fec1233318ab867e9603d03c7d:log:66', 'hash': '0x987360ce0bea0a4bea467f31cecda3ef8dcdd4fec1233318ab867e9603d03c7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 202.37659362253518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0af88a17a99ccb3bcb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:04:41.000Z'}}, {'blockNum': '0x4c0317', 'uniqueId': '0x987360ce0bea0a4bea467f31cecda3ef8dcdd4fec1233318ab867e9603d03c7d:log:69', 'hash': '0x987360ce0bea0a4bea467f31cecda3ef8dcdd4fec1233318ab867e9603d03c7d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 202.37659362253518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0af88a17a99ccb3bcb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:04:41.000Z'}}, {'blockNum': '0x4c0321', 'uniqueId': '0x1a8ae4fcdcc5747b145145e80a370e0602a4fe955e774d57d73785899ca31a6e:log:22', 'hash': '0x1a8ae4fcdcc5747b145145e80a370e0602a4fe955e774d57d73785899ca31a6e', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xfb5e97b1c721f233f78c652727ea4a306d8b65ec', 'value': 10.94681106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x97eae2a90e9e0800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:07:16.000Z'}}, {'blockNum': '0x4c0326', 'uniqueId': '0xbdf1a68bfc1b37d247528ab671f9afdc51edf87ae3045cfc656d0c11dcd84092:log:267', 'hash': '0xbdf1a68bfc1b37d247528ab671f9afdc51edf87ae3045cfc656d0c11dcd84092', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 405.5722315039989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fc7203bd3658d5f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:08:05.000Z'}}, {'blockNum': '0x4c0326', 'uniqueId': '0xbdf1a68bfc1b37d247528ab671f9afdc51edf87ae3045cfc656d0c11dcd84092:log:269', 'hash': '0xbdf1a68bfc1b37d247528ab671f9afdc51edf87ae3045cfc656d0c11dcd84092', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.5722315039989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fc7203bd3658d5f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:08:05.000Z'}}, {'blockNum': '0x4c032c', 'uniqueId': '0xf90ba90df2c70e0b08417b53b7370f9227dd42562736fbc62fabca95b2c4f3ba:log:63', 'hash': '0xf90ba90df2c70e0b08417b53b7370f9227dd42562736fbc62fabca95b2c4f3ba', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.9965580265687395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53380dc108a5aa31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:09:49.000Z'}}, {'blockNum': '0x4c032c', 'uniqueId': '0xf90ba90df2c70e0b08417b53b7370f9227dd42562736fbc62fabca95b2c4f3ba:log:66', 'hash': '0xf90ba90df2c70e0b08417b53b7370f9227dd42562736fbc62fabca95b2c4f3ba', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 5.9965580265687395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53380dc108a5aa31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:09:49.000Z'}}, {'blockNum': '0x4c0335', 'uniqueId': '0x96c8d44aea621688e58d2af5339bd3f99782e0333d71ab545de9188876821147:log:145', 'hash': '0x96c8d44aea621688e58d2af5339bd3f99782e0333d71ab545de9188876821147', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 559.8179937805729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e59090b4cf2e2eec7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:13:23.000Z'}}, {'blockNum': '0x4c0335', 'uniqueId': '0x96c8d44aea621688e58d2af5339bd3f99782e0333d71ab545de9188876821147:log:147', 'hash': '0x96c8d44aea621688e58d2af5339bd3f99782e0333d71ab545de9188876821147', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 559.8179937805729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e59090b4cf2e2eec7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:13:23.000Z'}}, {'blockNum': '0x4c033b', 'uniqueId': '0xe0d09dc625c88c95664fc68797d9c2ee17c8d35b44b8a6dc6013860d7bf58153:log:60', 'hash': '0xe0d09dc625c88c95664fc68797d9c2ee17c8d35b44b8a6dc6013860d7bf58153', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 393.2758601235915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1551cc871e1ae13a58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:15:39.000Z'}}, {'blockNum': '0x4c033b', 'uniqueId': '0xe0d09dc625c88c95664fc68797d9c2ee17c8d35b44b8a6dc6013860d7bf58153:log:62', 'hash': '0xe0d09dc625c88c95664fc68797d9c2ee17c8d35b44b8a6dc6013860d7bf58153', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 393.2758601235915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1551cc871e1ae13a58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:15:39.000Z'}}, {'blockNum': '0x4c033e', 'uniqueId': '0x43888bff7bb73c2447440e16a93b26de1b70be3ad722b4004b29af2b8f5d30ab:log:20', 'hash': '0x43888bff7bb73c2447440e16a93b26de1b70be3ad722b4004b29af2b8f5d30ab', 'from': '0xcbc11045932ab142a8d0ddb1f6728107471d8c2f', 'to': '0x292522e1901e09ad2a0039632b63ea79466f21f4', 'value': 4.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45400a8fd5330000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:16:04.000Z'}}, {'blockNum': '0x4c0341', 'uniqueId': '0x1e753bdfc5439b4c4d474af6005af00f12fb8e901eedfdfcd27820f886712f03:log:78', 'hash': '0x1e753bdfc5439b4c4d474af6005af00f12fb8e901eedfdfcd27820f886712f03', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1.499308445175932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14ce9d1653746434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:17:18.000Z'}}, {'blockNum': '0x4c0341', 'uniqueId': '0x1e753bdfc5439b4c4d474af6005af00f12fb8e901eedfdfcd27820f886712f03:log:81', 'hash': '0x1e753bdfc5439b4c4d474af6005af00f12fb8e901eedfdfcd27820f886712f03', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 1.499308445175932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14ce9d1653746434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:17:18.000Z'}}, {'blockNum': '0x4c0342', 'uniqueId': '0x5d9fcf5b5d06b99c935684fc4d7509ab15c397b213fd039467545e8ad1afff71:log:34', 'hash': '0x5d9fcf5b5d06b99c935684fc4d7509ab15c397b213fd039467545e8ad1afff71', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.85632603811933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x104157abd323d1195c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:17:27.000Z'}}, {'blockNum': '0x4c0342', 'uniqueId': '0x5d9fcf5b5d06b99c935684fc4d7509ab15c397b213fd039467545e8ad1afff71:log:37', 'hash': '0x5d9fcf5b5d06b99c935684fc4d7509ab15c397b213fd039467545e8ad1afff71', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 299.85632603811933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x104157abd323d1195c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:17:27.000Z'}}, {'blockNum': '0x4c0348', 'uniqueId': '0x47ce8d0e2541992605c68d7d4e9ac1ec1507614299a086ad7d9db042ba05e7ae:log:42', 'hash': '0x47ce8d0e2541992605c68d7d4e9ac1ec1507614299a086ad7d9db042ba05e7ae', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 622.259437171473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21bb959d3c5425b1d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:19:13.000Z'}}, {'blockNum': '0x4c0348', 'uniqueId': '0x47ce8d0e2541992605c68d7d4e9ac1ec1507614299a086ad7d9db042ba05e7ae:log:44', 'hash': '0x47ce8d0e2541992605c68d7d4e9ac1ec1507614299a086ad7d9db042ba05e7ae', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 622.259437171473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21bb959d3c5425b1d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:19:13.000Z'}}, {'blockNum': '0x4c034e', 'uniqueId': '0x28497901fd5a2677589aae24de03f544a8bda11460026d0f589acfef1f28e5d2:log:141', 'hash': '0x28497901fd5a2677589aae24de03f544a8bda11460026d0f589acfef1f28e5d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.069259590731324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3878ea09b464596c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:20:35.000Z'}}, {'blockNum': '0x4c034e', 'uniqueId': '0x28497901fd5a2677589aae24de03f544a8bda11460026d0f589acfef1f28e5d2:log:144', 'hash': '0x28497901fd5a2677589aae24de03f544a8bda11460026d0f589acfef1f28e5d2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xe86d3a9bada1b7adcc32abde0522861b1dc7973a', 'value': 4.069259590731324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3878ea09b464596c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:20:35.000Z'}}, {'blockNum': '0x4c0352', 'uniqueId': '0x2927752f5f6d1b813c7f79ec81422ad145198ccef4ef820a3c17a12bd4018034:log:140', 'hash': '0x2927752f5f6d1b813c7f79ec81422ad145198ccef4ef820a3c17a12bd4018034', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.835451247447011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a9dd418ea5c71a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:21:41.000Z'}}, {'blockNum': '0x4c0352', 'uniqueId': '0x2927752f5f6d1b813c7f79ec81422ad145198ccef4ef820a3c17a12bd4018034:log:142', 'hash': '0x2927752f5f6d1b813c7f79ec81422ad145198ccef4ef820a3c17a12bd4018034', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8.835451247447011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7a9dd418ea5c71a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:21:41.000Z'}}, {'blockNum': '0x4c035e', 'uniqueId': '0x02f49b4f81309471cc975d31d3f29082f5c7072322a743ed5c526a360bb337ae:log:70', 'hash': '0x02f49b4f81309471cc975d31d3f29082f5c7072322a743ed5c526a360bb337ae', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 224.9019786490967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c312455ffe5e53a1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:29.000Z'}}, {'blockNum': '0x4c035e', 'uniqueId': '0x02f49b4f81309471cc975d31d3f29082f5c7072322a743ed5c526a360bb337ae:log:73', 'hash': '0x02f49b4f81309471cc975d31d3f29082f5c7072322a743ed5c526a360bb337ae', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 224.9019786490967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c312455ffe5e53a1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:29.000Z'}}, {'blockNum': '0x4c0360', 'uniqueId': '0xfa2aee36e2fe792f18da54537d8457ff65cc518ac45886b682973c2c37994619:log:52', 'hash': '0xfa2aee36e2fe792f18da54537d8457ff65cc518ac45886b682973c2c37994619', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 17.63408462883857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf4b8da8a611954ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:51.000Z'}}, {'blockNum': '0x4c0360', 'uniqueId': '0xfa2aee36e2fe792f18da54537d8457ff65cc518ac45886b682973c2c37994619:log:54', 'hash': '0xfa2aee36e2fe792f18da54537d8457ff65cc518ac45886b682973c2c37994619', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 17.63408462883857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf4b8da8a611954ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:51.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xff4e8578201764312edd08073fda82f975ddeaf92663b45258fd77b5f3b57f72:log:33', 'hash': '0xff4e8578201764312edd08073fda82f975ddeaf92663b45258fd77b5f3b57f72', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 355.03624922497903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x133f1e239b81ede60d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xff4e8578201764312edd08073fda82f975ddeaf92663b45258fd77b5f3b57f72:log:36', 'hash': '0xff4e8578201764312edd08073fda82f975ddeaf92663b45258fd77b5f3b57f72', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 355.03624922497903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x133f1e239b81ede60d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xcb2d1ae84a9d7f1222209d359d7259738df6284100511fc393e69c8d6ec2fc43:log:51', 'hash': '0xcb2d1ae84a9d7f1222209d359d7259738df6284100511fc393e69c8d6ec2fc43', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.93163086743442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820b827e6f06bbfe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xcb2d1ae84a9d7f1222209d359d7259738df6284100511fc393e69c8d6ec2fc43:log:54', 'hash': '0xcb2d1ae84a9d7f1222209d359d7259738df6284100511fc393e69c8d6ec2fc43', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 149.93163086743442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0820b827e6f06bbfe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xb361f658cef8b9a759e85f0e14ca2089e5216f1d698abdd49ce358ca58786487:log:68', 'hash': '0xb361f658cef8b9a759e85f0e14ca2089e5216f1d698abdd49ce358ca58786487', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 494.755451499264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad21c75cfd5a25cd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0362', 'uniqueId': '0xb361f658cef8b9a759e85f0e14ca2089e5216f1d698abdd49ce358ca58786487:log:71', 'hash': '0xb361f658cef8b9a759e85f0e14ca2089e5216f1d698abdd49ce358ca58786487', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xc11cce040583640001f5a7e945dfd82f662cc0ae', 'value': 494.755451499264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad21c75cfd5a25cd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:25:57.000Z'}}, {'blockNum': '0x4c0366', 'uniqueId': '0xb2181f00867c91a3383de8129338fc95109b5ec1e92c6540de99de98e0e6bd10:log:15', 'hash': '0xb2181f00867c91a3383de8129338fc95109b5ec1e92c6540de99de98e0e6bd10', 'from': '0xd8e2823cbaf8db721443235cbca5d78b7a536b73', 'to': '0xf8c92faa9ff833e1abe1917a13a060fc0586089f', 'value': 605.6429314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20d4fbed464745d000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:27:01.000Z'}}, {'blockNum': '0x4c0369', 'uniqueId': '0x385f77d55dd9dd7d9db56c40a5d8d4344dd2387ea27f5f41d6e1afb01b1910df:log:120', 'hash': '0x385f77d55dd9dd7d9db56c40a5d8d4344dd2387ea27f5f41d6e1afb01b1910df', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.31702098103147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe271b42186fa0117', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:27:33.000Z'}}, {'blockNum': '0x4c0369', 'uniqueId': '0x385f77d55dd9dd7d9db56c40a5d8d4344dd2387ea27f5f41d6e1afb01b1910df:log:123', 'hash': '0x385f77d55dd9dd7d9db56c40a5d8d4344dd2387ea27f5f41d6e1afb01b1910df', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xe86d3a9bada1b7adcc32abde0522861b1dc7973a', 'value': 16.31702098103147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe271b42186fa0117', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:27:33.000Z'}}, {'blockNum': '0x4c037d', 'uniqueId': '0x427c5036f733a2c6613e52ff7d5bf3482ddd92a021844951d3e6b613b1cb40cd:log:131', 'hash': '0x427c5036f733a2c6613e52ff7d5bf3482ddd92a021844951d3e6b613b1cb40cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1499.0786421519863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5143e5329404106d5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:32:32.000Z'}}, {'blockNum': '0x4c037d', 'uniqueId': '0x427c5036f733a2c6613e52ff7d5bf3482ddd92a021844951d3e6b613b1cb40cd:log:133', 'hash': '0x427c5036f733a2c6613e52ff7d5bf3482ddd92a021844951d3e6b613b1cb40cd', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1499.0786421519863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5143e5329404106d5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:32:32.000Z'}}, {'blockNum': '0x4c0383', 'uniqueId': '0x2aebc160da6c40ddff2e499c7a78ea4ba52b75d504bb5d0cca6e3e6136fa4fc7:log:77', 'hash': '0x2aebc160da6c40ddff2e499c7a78ea4ba52b75d504bb5d0cca6e3e6136fa4fc7', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 334.06354062721334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x121c101c4186534973', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:07.000Z'}}, {'blockNum': '0x4c0383', 'uniqueId': '0x2aebc160da6c40ddff2e499c7a78ea4ba52b75d504bb5d0cca6e3e6136fa4fc7:log:79', 'hash': '0x2aebc160da6c40ddff2e499c7a78ea4ba52b75d504bb5d0cca6e3e6136fa4fc7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 334.06354062721334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x121c101c4186534973', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:07.000Z'}}, {'blockNum': '0x4c0385', 'uniqueId': '0xa58133c64cbde8a4c37a38b1dacd332560d345878daf0b19677594d796a8068e:log:35', 'hash': '0xa58133c64cbde8a4c37a38b1dacd332560d345878daf0b19677594d796a8068e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2997.4761546243108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa27e5689524de5f323', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:45.000Z'}}, {'blockNum': '0x4c0385', 'uniqueId': '0xa58133c64cbde8a4c37a38b1dacd332560d345878daf0b19677594d796a8068e:log:37', 'hash': '0xa58133c64cbde8a4c37a38b1dacd332560d345878daf0b19677594d796a8068e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2997.4761546243108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa27e5689524de5f323', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:45.000Z'}}, {'blockNum': '0x4c0387', 'uniqueId': '0x03540a6bb81d773d0e70edf71f2e7c6f85305bc4f7ebf8ec5cc2035123eb9b0d:log:1', 'hash': '0x03540a6bb81d773d0e70edf71f2e7c6f85305bc4f7ebf8ec5cc2035123eb9b0d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x84bc7f0528179dfdc072349f9aede07185e23a42', 'value': 28.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0189fd8a9555570000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:59.000Z'}}, {'blockNum': '0x4c0387', 'uniqueId': '0xc8193686c3bbac4632ca56f128327ef07135e5fb159ee0dee6eb7460807d1f63:log:55', 'hash': '0xc8193686c3bbac4632ca56f128327ef07135e5fb159ee0dee6eb7460807d1f63', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 97.39954597473809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0547b0b304e4978989', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:59.000Z'}}, {'blockNum': '0x4c0387', 'uniqueId': '0xc8193686c3bbac4632ca56f128327ef07135e5fb159ee0dee6eb7460807d1f63:log:57', 'hash': '0xc8193686c3bbac4632ca56f128327ef07135e5fb159ee0dee6eb7460807d1f63', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 97.39954597473809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0547b0b304e4978989', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:34:59.000Z'}}, {'blockNum': '0x4c0388', 'uniqueId': '0xe0c2c0de018c6645e5040553403cf2fa5f8dba8b19d5a8623bbe03a3981542c0:log:71', 'hash': '0xe0c2c0de018c6645e5040553403cf2fa5f8dba8b19d5a8623bbe03a3981542c0', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 57.9201907945183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0323cddaa73e1cff7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:35:05.000Z'}}, {'blockNum': '0x4c0388', 'uniqueId': '0xe0c2c0de018c6645e5040553403cf2fa5f8dba8b19d5a8623bbe03a3981542c0:log:73', 'hash': '0xe0c2c0de018c6645e5040553403cf2fa5f8dba8b19d5a8623bbe03a3981542c0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 57.9201907945183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0323cddaa73e1cff7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:35:05.000Z'}}, {'blockNum': '0x4c038d', 'uniqueId': '0x8c3ef0962c6cf9c2a66f8f8603bb24186692d6907812a2f11830bc7a5c0539cf:log:43', 'hash': '0x8c3ef0962c6cf9c2a66f8f8603bb24186692d6907812a2f11830bc7a5c0539cf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4494.298497457877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf3a2ebbf9fbc96b1c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:36:18.000Z'}}, {'blockNum': '0x4c038d', 'uniqueId': '0x8c3ef0962c6cf9c2a66f8f8603bb24186692d6907812a2f11830bc7a5c0539cf:log:45', 'hash': '0x8c3ef0962c6cf9c2a66f8f8603bb24186692d6907812a2f11830bc7a5c0539cf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4494.298497457877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf3a2ebbf9fbc96b1c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:36:18.000Z'}}, {'blockNum': '0x4c039a', 'uniqueId': '0xc17245802bf060331b8f09c94e73f5899cbb9f77cfc44f78b8a7c8824df1d2c6:log:88', 'hash': '0xc17245802bf060331b8f09c94e73f5899cbb9f77cfc44f78b8a7c8824df1d2c6', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3169.093756213147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xabcc02bcb2910525ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:40:10.000Z'}}, {'blockNum': '0x4c039a', 'uniqueId': '0xc17245802bf060331b8f09c94e73f5899cbb9f77cfc44f78b8a7c8824df1d2c6:log:90', 'hash': '0xc17245802bf060331b8f09c94e73f5899cbb9f77cfc44f78b8a7c8824df1d2c6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3169.093756213147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xabcc02bcb2910525ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:40:10.000Z'}}, {'blockNum': '0x4c03a1', 'uniqueId': '0x1255e7d0e545a9739e4f94bf7acd0a5eb3aa57a83d239b4aa20a7468c0f3e974:log:29', 'hash': '0x1255e7d0e545a9739e4f94bf7acd0a5eb3aa57a83d239b4aa20a7468c0f3e974', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.91283949303381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040f9fde9d1a225288', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:38.000Z'}}, {'blockNum': '0x4c03a1', 'uniqueId': '0x1255e7d0e545a9739e4f94bf7acd0a5eb3aa57a83d239b4aa20a7468c0f3e974:log:32', 'hash': '0x1255e7d0e545a9739e4f94bf7acd0a5eb3aa57a83d239b4aa20a7468c0f3e974', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 74.91283949303381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040f9fde9d1a225288', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:38.000Z'}}, {'blockNum': '0x4c03a2', 'uniqueId': '0x332a0c0ab33bbcd6dea083637d85e0cccb73bbf711707866067b3d9357d2e21a:log:59', 'hash': '0x332a0c0ab33bbcd6dea083637d85e0cccb73bbf711707866067b3d9357d2e21a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 55.4628583090615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0301b3a7c6fb6ee9de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:52.000Z'}}, {'blockNum': '0x4c03a2', 'uniqueId': '0x332a0c0ab33bbcd6dea083637d85e0cccb73bbf711707866067b3d9357d2e21a:log:62', 'hash': '0x332a0c0ab33bbcd6dea083637d85e0cccb73bbf711707866067b3d9357d2e21a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 55.4628583090615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0301b3a7c6fb6ee9de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:52.000Z'}}, {'blockNum': '0x4c03a2', 'uniqueId': '0x31d2454a317400e68608eeb522a480bf012862470906dc33f6dd90d6f5da0f58:log:82', 'hash': '0x31d2454a317400e68608eeb522a480bf012862470906dc33f6dd90d6f5da0f58', 'from': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1705.7538979283893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c781734b1c38fb6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:52.000Z'}}, {'blockNum': '0x4c03a2', 'uniqueId': '0x31d2454a317400e68608eeb522a480bf012862470906dc33f6dd90d6f5da0f58:log:84', 'hash': '0x31d2454a317400e68608eeb522a480bf012862470906dc33f6dd90d6f5da0f58', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x858a5e79f27b938be9944c642c5305a829f4cb96', 'value': 1705.7538979283893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c781734b1c38fb6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:41:52.000Z'}}, {'blockNum': '0x4c03a4', 'uniqueId': '0x37f30f34e692085fa2c303adbaab2ca7b09cce25b8728ad1cfb17b64e13171d7:log:58', 'hash': '0x37f30f34e692085fa2c303adbaab2ca7b09cce25b8728ad1cfb17b64e13171d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1498.107072603685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5136697d38bafb2fe8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:42:43.000Z'}}, {'blockNum': '0x4c03a4', 'uniqueId': '0x37f30f34e692085fa2c303adbaab2ca7b09cce25b8728ad1cfb17b64e13171d7:log:60', 'hash': '0x37f30f34e692085fa2c303adbaab2ca7b09cce25b8728ad1cfb17b64e13171d7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1498.107072603685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5136697d38bafb2fe8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:42:43.000Z'}}, {'blockNum': '0x4c03ab', 'uniqueId': '0x50665bfdf6406b3f73e1e0d2d1887cdd9c7586b59807be0f2685309f30ba09ab:log:48', 'hash': '0x50665bfdf6406b3f73e1e0d2d1887cdd9c7586b59807be0f2685309f30ba09ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 37.44926415675875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0207b68355fb5faa8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:44:02.000Z'}}, {'blockNum': '0x4c03ab', 'uniqueId': '0x50665bfdf6406b3f73e1e0d2d1887cdd9c7586b59807be0f2685309f30ba09ab:log:51', 'hash': '0x50665bfdf6406b3f73e1e0d2d1887cdd9c7586b59807be0f2685309f30ba09ab', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 37.44926415675875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0207b68355fb5faa8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:44:02.000Z'}}, {'blockNum': '0x4c03ac', 'uniqueId': '0x77a13e8f9642be7ffe2a50ded8cf44b4663757f57356fa229da3cc58fc45af9a:log:22', 'hash': '0x77a13e8f9642be7ffe2a50ded8cf44b4663757f57356fa229da3cc58fc45af9a', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x1958f11200c9c5e4b1e185ddef8acd22b05de89a', 'value': 96.54811778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x053bdfd1964979c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:44:28.000Z'}}, {'blockNum': '0x4c03af', 'uniqueId': '0x76c82a2132c06b6c762f7153536e77bc37374493486c35a6981f763c17e34712:log:42', 'hash': '0x76c82a2132c06b6c762f7153536e77bc37374493486c35a6981f763c17e34712', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 243.36346010320668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3158b191a994f7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:45:22.000Z'}}, {'blockNum': '0x4c03af', 'uniqueId': '0x76c82a2132c06b6c762f7153536e77bc37374493486c35a6981f763c17e34712:log:45', 'hash': '0x76c82a2132c06b6c762f7153536e77bc37374493486c35a6981f763c17e34712', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 243.36346010320668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3158b191a994f7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:45:22.000Z'}}, {'blockNum': '0x4c03b5', 'uniqueId': '0xac6928d7a457f6895e157aa620e1c894e1784b2c2db73322400168b8d9a4391d:log:45', 'hash': '0xac6928d7a457f6895e157aa620e1c894e1784b2c2db73322400168b8d9a4391d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 898.7064518231048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b80eb461dbde73af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:47:16.000Z'}}, {'blockNum': '0x4c03b5', 'uniqueId': '0xac6928d7a457f6895e157aa620e1c894e1784b2c2db73322400168b8d9a4391d:log:48', 'hash': '0xac6928d7a457f6895e157aa620e1c894e1784b2c2db73322400168b8d9a4391d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'value': 898.7064518231048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30b80eb461dbde73af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:47:16.000Z'}}, {'blockNum': '0x4c03b9', 'uniqueId': '0xef808f28019a49880f1006f5522fe57e52efeac24b342118a0488b1042c20bcb:log:2', 'hash': '0xef808f28019a49880f1006f5522fe57e52efeac24b342118a0488b1042c20bcb', 'from': '0x858a5e79f27b938be9944c642c5305a829f4cb96', 'to': '0x7dc0b9f537e6839c25f5188079a226e886d4a91e', 'value': 1705.7538979283893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c781734b1c38fb6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:47:56.000Z'}}, {'blockNum': '0x4c03bf', 'uniqueId': '0xcbf7e5dc08f4fd229bff63908cdb199a25466775624b3d19add7817930d7adfc:log:76', 'hash': '0xcbf7e5dc08f4fd229bff63908cdb199a25466775624b3d19add7817930d7adfc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 449.31728180693705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185b87a737ea91036e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:49:56.000Z'}}, {'blockNum': '0x4c03bf', 'uniqueId': '0xcbf7e5dc08f4fd229bff63908cdb199a25466775624b3d19add7817930d7adfc:log:79', 'hash': '0xcbf7e5dc08f4fd229bff63908cdb199a25466775624b3d19add7817930d7adfc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'value': 449.31728180693705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185b87a737ea91036e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:49:56.000Z'}}, {'blockNum': '0x4c03c8', 'uniqueId': '0x48ac081267eb6ad739eb3cbfcb327f2bd8995605dcbacda3e9b511e268b2fdc1:log:58', 'hash': '0x48ac081267eb6ad739eb3cbfcb327f2bd8995605dcbacda3e9b511e268b2fdc1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.365788456677789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a771c2c142bce65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:53:00.000Z'}}, {'blockNum': '0x4c03c8', 'uniqueId': '0x48ac081267eb6ad739eb3cbfcb327f2bd8995605dcbacda3e9b511e268b2fdc1:log:61', 'hash': '0x48ac081267eb6ad739eb3cbfcb327f2bd8995605dcbacda3e9b511e268b2fdc1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 5.365788456677789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a771c2c142bce65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:53:00.000Z'}}, {'blockNum': '0x4c03d2', 'uniqueId': '0x3e49fb3f0e8ccc98627ff7af43195a8377d5c930b40c9bf5189299f7bf72ac90:log:8', 'hash': '0x3e49fb3f0e8ccc98627ff7af43195a8377d5c930b40c9bf5189299f7bf72ac90', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x75899b563abe70a150eaf578918e613de6e2bc99', 'value': 162.74721578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08d292427aeebf8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:54:16.000Z'}}, {'blockNum': '0x4c03d9', 'uniqueId': '0x7f410fb2bf63c2b78cf778d564f143c32094d95f2238fadf4346b3fa3f89697e:log:12', 'hash': '0x7f410fb2bf63c2b78cf778d564f143c32094d95f2238fadf4346b3fa3f89697e', 'from': '0xa10d5531ef4fbfff688e1f075e4e2efc315a5a89', 'to': '0xd47b885d78b1de415a50cc8d2e1dfbf9f1b524a7', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c3c465ca58ec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:55:27.000Z'}}, {'blockNum': '0x4c03e2', 'uniqueId': '0x8f61c3a91e55ad7c833e7c4d1fcb4df8f188b5943a71796d17fb869313cf9ccc:log:43', 'hash': '0x8f61c3a91e55ad7c833e7c4d1fcb4df8f188b5943a71796d17fb869313cf9ccc', 'from': '0x00e39906dfe73c8bf88be8781627149268bfe504', 'to': '0x5a301fa4cadd44106ffbab13df73134c3217620a', 'value': 1e-17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:57:28.000Z'}}, {'blockNum': '0x4c03e3', 'uniqueId': '0xb36e26e1ae0a9bea3649d12d7913addacc1a1115c77e82b84eebda183ebb4758:log:55', 'hash': '0xb36e26e1ae0a9bea3649d12d7913addacc1a1115c77e82b84eebda183ebb4758', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1423.0189295372834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d245ad0efce65780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:57:39.000Z'}}, {'blockNum': '0x4c03e3', 'uniqueId': '0xb36e26e1ae0a9bea3649d12d7913addacc1a1115c77e82b84eebda183ebb4758:log:57', 'hash': '0xb36e26e1ae0a9bea3649d12d7913addacc1a1115c77e82b84eebda183ebb4758', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1423.0189295372834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d245ad0efce65780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:57:39.000Z'}}, {'blockNum': '0x4c03e8', 'uniqueId': '0xdee3e2249730d451a087bbf10cc1c8361871474b47e937ea46f1e3de5d4b3d05:log:19', 'hash': '0xdee3e2249730d451a087bbf10cc1c8361871474b47e937ea46f1e3de5d4b3d05', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 37.786185670255286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020c637faad4858faf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:58:36.000Z'}}, {'blockNum': '0x4c03e8', 'uniqueId': '0xdee3e2249730d451a087bbf10cc1c8361871474b47e937ea46f1e3de5d4b3d05:log:22', 'hash': '0xdee3e2249730d451a087bbf10cc1c8361871474b47e937ea46f1e3de5d4b3d05', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 37.786185670255286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020c637faad4858faf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T11:58:36.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xa3297853163a9cdcb8a8253198cc802c880c8aaf09b8dc7792a1ae47908e0875:log:44', 'hash': '0xa3297853163a9cdcb8a8253198cc802c880c8aaf09b8dc7792a1ae47908e0875', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.7184770205051825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x417b65d9c00e0f60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xa3297853163a9cdcb8a8253198cc802c880c8aaf09b8dc7792a1ae47908e0875:log:47', 'hash': '0xa3297853163a9cdcb8a8253198cc802c880c8aaf09b8dc7792a1ae47908e0875', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.7184770205051825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x417b65d9c00e0f60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xdf64cdf9b683f61943668ef8abd0afb3fdbeda6d3c2b6ee9252a1baf719c9690:log:71', 'hash': '0xdf64cdf9b683f61943668ef8abd0afb3fdbeda6d3c2b6ee9252a1baf719c9690', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xdf64cdf9b683f61943668ef8abd0afb3fdbeda6d3c2b6ee9252a1baf719c9690:log:73', 'hash': '0xdf64cdf9b683f61943668ef8abd0afb3fdbeda6d3c2b6ee9252a1baf719c9690', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x17c80c566f02fedf3fd292c36a3e4403a2c4abc4', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xfe1ad9705e37630d8b44ae1d9c6de0c4890c56728124e28cc8a6b519d3587f0f:log:88', 'hash': '0xfe1ad9705e37630d8b44ae1d9c6de0c4890c56728124e28cc8a6b519d3587f0f', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4203.459027673772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe3deb662c9f40a5dcd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03ec', 'uniqueId': '0xfe1ad9705e37630d8b44ae1d9c6de0c4890c56728124e28cc8a6b519d3587f0f:log:90', 'hash': '0xfe1ad9705e37630d8b44ae1d9c6de0c4890c56728124e28cc8a6b519d3587f0f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4203.459027673772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe3deb662c9f40a5dcd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:00:00.000Z'}}, {'blockNum': '0x4c03f6', 'uniqueId': '0xbfbd2a7a517097a0c86238ca5b685aff09b26543f922e3f429bea9b6bcfac12d:log:31', 'hash': '0xbfbd2a7a517097a0c86238ca5b685aff09b26543f922e3f429bea9b6bcfac12d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.885682737930152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43cd6e908f95a65b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:01:43.000Z'}}, {'blockNum': '0x4c03f6', 'uniqueId': '0xbfbd2a7a517097a0c86238ca5b685aff09b26543f922e3f429bea9b6bcfac12d:log:34', 'hash': '0xbfbd2a7a517097a0c86238ca5b685aff09b26543f922e3f429bea9b6bcfac12d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 4.885682737930152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43cd6e908f95a65b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:01:43.000Z'}}, {'blockNum': '0x4c03f8', 'uniqueId': '0xf4fd8da6955ea0bf604fd64508c43c6261b2d77baeaa1226eef93e33f01721bd:log:23', 'hash': '0xf4fd8da6955ea0bf604fd64508c43c6261b2d77baeaa1226eef93e33f01721bd', 'from': '0x4fd499dbb195b1fed1e8efb69f84319c8f9b8439', 'to': '0xf5a3ac900cfe35d30f305c3a332c8e6513dabe95', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:02:17.000Z'}}, {'blockNum': '0x4c03fc', 'uniqueId': '0x2ba1ba5b0030bf3c0300b7fc1bf041ff0e4a59bb5e72b91d5a66bee37556a5f7:log:23', 'hash': '0x2ba1ba5b0030bf3c0300b7fc1bf041ff0e4a59bb5e72b91d5a66bee37556a5f7', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 263.2635271964027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e4583ef27b9f90f1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:02:49.000Z'}}, {'blockNum': '0x4c03fc', 'uniqueId': '0x2ba1ba5b0030bf3c0300b7fc1bf041ff0e4a59bb5e72b91d5a66bee37556a5f7:log:25', 'hash': '0x2ba1ba5b0030bf3c0300b7fc1bf041ff0e4a59bb5e72b91d5a66bee37556a5f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 263.2635271964027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e4583ef27b9f90f1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:02:49.000Z'}}, {'blockNum': '0x4c0401', 'uniqueId': '0x204181dc3e7ace611cd635d1e2ffe81b7eb554be60c3cff65a7926f5e3a4a028:log:6', 'hash': '0x204181dc3e7ace611cd635d1e2ffe81b7eb554be60c3cff65a7926f5e3a4a028', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x77a11e1f057f5464ce5d135da4e30b2b18b29343', 'value': 47.80419158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02976a9af6ec9ea000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:04:03.000Z'}}, {'blockNum': '0x4c0404', 'uniqueId': '0x59bbe40a5ebc51382f886b0c3b389f766183c00ec9e29062be3c9232ab1e7abf:log:73', 'hash': '0x59bbe40a5ebc51382f886b0c3b389f766183c00ec9e29062be3c9232ab1e7abf', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 536.7490510565946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d18e3b21e1c540b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:04:57.000Z'}}, {'blockNum': '0x4c0404', 'uniqueId': '0x59bbe40a5ebc51382f886b0c3b389f766183c00ec9e29062be3c9232ab1e7abf:log:75', 'hash': '0x59bbe40a5ebc51382f886b0c3b389f766183c00ec9e29062be3c9232ab1e7abf', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 536.7490510565946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d18e3b21e1c540b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:04:57.000Z'}}, {'blockNum': '0x4c0406', 'uniqueId': '0x7a246fa84d55b1d7ca79910af61d093001d3052b7e81bd0628c7a916e2bcae80:log:56', 'hash': '0x7a246fa84d55b1d7ca79910af61d093001d3052b7e81bd0628c7a916e2bcae80', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 299.75818054087955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103ffafd03d888e81a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:05:30.000Z'}}, {'blockNum': '0x4c0406', 'uniqueId': '0x7a246fa84d55b1d7ca79910af61d093001d3052b7e81bd0628c7a916e2bcae80:log:59', 'hash': '0x7a246fa84d55b1d7ca79910af61d093001d3052b7e81bd0628c7a916e2bcae80', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 299.75818054087955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103ffafd03d888e81a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:05:30.000Z'}}, {'blockNum': '0x4c0406', 'uniqueId': '0x7cfb2f6a96f34b5ed4d810b8e551f91c3523256b51954ba66258d79ef8c5ce8b:log:75', 'hash': '0x7cfb2f6a96f34b5ed4d810b8e551f91c3523256b51954ba66258d79ef8c5ce8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.87509094952085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081fef4925758d59d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:05:30.000Z'}}, {'blockNum': '0x4c0406', 'uniqueId': '0x7cfb2f6a96f34b5ed4d810b8e551f91c3523256b51954ba66258d79ef8c5ce8b:log:77', 'hash': '0x7cfb2f6a96f34b5ed4d810b8e551f91c3523256b51954ba66258d79ef8c5ce8b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0e0193a44c0d7e36b8faff8fd3d9004d5bb5ff09', 'value': 149.87509094952085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081fef4925758d59d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:05:30.000Z'}}, {'blockNum': '0x4c040c', 'uniqueId': '0xae46ffa13cb3c3c077762b21f99dffc54d04cae34475b73b08ecb53b9e72d58d:log:53', 'hash': '0xae46ffa13cb3c3c077762b21f99dffc54d04cae34475b73b08ecb53b9e72d58d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 27.81345411504183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181fd3d27d7b1dc58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:06:59.000Z'}}, {'blockNum': '0x4c040c', 'uniqueId': '0xae46ffa13cb3c3c077762b21f99dffc54d04cae34475b73b08ecb53b9e72d58d:log:56', 'hash': '0xae46ffa13cb3c3c077762b21f99dffc54d04cae34475b73b08ecb53b9e72d58d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 27.81345411504183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181fd3d27d7b1dc58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:06:59.000Z'}}, {'blockNum': '0x4c040e', 'uniqueId': '0x16fcc4313b216a99a54dc9dcefcf5e7d476c4b0841a1db33da67a6927a6f1564:log:49', 'hash': '0x16fcc4313b216a99a54dc9dcefcf5e7d476c4b0841a1db33da67a6927a6f1564', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.8724972575593964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbba210549090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:07:17.000Z'}}, {'blockNum': '0x4c040e', 'uniqueId': '0x16fcc4313b216a99a54dc9dcefcf5e7d476c4b0841a1db33da67a6927a6f1564:log:52', 'hash': '0x16fcc4313b216a99a54dc9dcefcf5e7d476c4b0841a1db33da67a6927a6f1564', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x83c1ded540d8b6b734885ed9083a5c4e4f142e73', 'value': 0.8724972575593964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbba210549090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:07:17.000Z'}}, {'blockNum': '0x4c0411', 'uniqueId': '0xd877ea4be49b26baa0cc69bf6951ba5350b0c8cd5b303605f3e9c04bea3ff71e:log:10', 'hash': '0xd877ea4be49b26baa0cc69bf6951ba5350b0c8cd5b303605f3e9c04bea3ff71e', 'from': '0xe9b994bb1559cd308aec1796e6963e21c0996f2f', 'to': '0x1dadc56283961b9be74d4c22a1bc6c19d3c998eb', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:07:57.000Z'}}, {'blockNum': '0x4c0413', 'uniqueId': '0x6239701fa96f786002d4540fb3f97b4709742994ca85761573945b5024dd26be:log:18', 'hash': '0x6239701fa96f786002d4540fb3f97b4709742994ca85761573945b5024dd26be', 'from': '0x0a0780920a76beb1a6f43cf672cb1ec29ebcc1db', 'to': '0x16b112e808c7b6325dbc900d99d15843a4ae8392', 'value': 63.7443081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0374a1467c318e2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:08:14.000Z'}}, {'blockNum': '0x4c0416', 'uniqueId': '0xda70c61f523720eff78ca20c115b63aba1d324419bbe8f56e57e4babdbdcc5da:log:25', 'hash': '0xda70c61f523720eff78ca20c115b63aba1d324419bbe8f56e57e4babdbdcc5da', 'from': '0x00e39906dfe73c8bf88be8781627149268bfe504', 'to': '0x5a301fa4cadd44106ffbab13df73134c3217620a', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e7fff6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:09:01.000Z'}}, {'blockNum': '0x4c0417', 'uniqueId': '0x4c4f901b251fa4ab162677dfdd7bfa7edf6bf40ef1fce4fa2602f3153a5d1778:log:27', 'hash': '0x4c4f901b251fa4ab162677dfdd7bfa7edf6bf40ef1fce4fa2602f3153a5d1778', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:10:01.000Z'}}, {'blockNum': '0x4c041b', 'uniqueId': '0x542efe5c391b989f28d84ddaa86d488fae313674863d4f2431bc612f21d9d645:log:27', 'hash': '0x542efe5c391b989f28d84ddaa86d488fae313674863d4f2431bc612f21d9d645', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 164.7389804653915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ee366de8a3ad33cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:10:52.000Z'}}, {'blockNum': '0x4c041b', 'uniqueId': '0x542efe5c391b989f28d84ddaa86d488fae313674863d4f2431bc612f21d9d645:log:29', 'hash': '0x542efe5c391b989f28d84ddaa86d488fae313674863d4f2431bc612f21d9d645', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 164.7389804653915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ee366de8a3ad33cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:10:52.000Z'}}, {'blockNum': '0x4c041e', 'uniqueId': '0xf91710e2973321eecc04cf2234bef04f7965fa12d4f3b01685af338b2daf388d:log:17', 'hash': '0xf91710e2973321eecc04cf2234bef04f7965fa12d4f3b01685af338b2daf388d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.3634522502899236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20ccab4cae20e555', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:11:02.000Z'}}, {'blockNum': '0x4c041e', 'uniqueId': '0xf91710e2973321eecc04cf2234bef04f7965fa12d4f3b01685af338b2daf388d:log:20', 'hash': '0xf91710e2973321eecc04cf2234bef04f7965fa12d4f3b01685af338b2daf388d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 2.3634522502899236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20ccab4cae20e555', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:11:02.000Z'}}, {'blockNum': '0x4c0424', 'uniqueId': '0x2aae24f04bf14de952894db2cbc6e335726e682e28f9eb206cf5edad55e06263:log:65', 'hash': '0x2aae24f04bf14de952894db2cbc6e335726e682e28f9eb206cf5edad55e06263', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 76.09911422979734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0420165d339cf1cc2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:10.000Z'}}, {'blockNum': '0x4c0424', 'uniqueId': '0x2aae24f04bf14de952894db2cbc6e335726e682e28f9eb206cf5edad55e06263:log:67', 'hash': '0x2aae24f04bf14de952894db2cbc6e335726e682e28f9eb206cf5edad55e06263', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 76.09911422979734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0420165d339cf1cc2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:10.000Z'}}, {'blockNum': '0x4c0424', 'uniqueId': '0x3894e433cc6b260bd213531756740dd01de9f4ada1fdd96efe829b06ac6db61b:log:114', 'hash': '0x3894e433cc6b260bd213531756740dd01de9f4ada1fdd96efe829b06ac6db61b', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 194.81410823127007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a8f96bf44575aeac7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:10.000Z'}}, {'blockNum': '0x4c0424', 'uniqueId': '0x3894e433cc6b260bd213531756740dd01de9f4ada1fdd96efe829b06ac6db61b:log:116', 'hash': '0x3894e433cc6b260bd213531756740dd01de9f4ada1fdd96efe829b06ac6db61b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 194.81410823127007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a8f96bf44575aeac7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:10.000Z'}}, {'blockNum': '0x4c0425', 'uniqueId': '0xe247bee6dc727b6c6628a09bb1b4dfe391ab9eacbbeec56ef87b2e2efb736baf:log:33', 'hash': '0xe247bee6dc727b6c6628a09bb1b4dfe391ab9eacbbeec56ef87b2e2efb736baf', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xd7b69a37104ba4e9f8b3b418d73bc7c7ced13c1a', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2241af62c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:26.000Z'}}, {'blockNum': '0x4c0427', 'uniqueId': '0x5bbc79d6f739c829fe14cf532253775f7ecb103aa45aeda66aea9ba5641f2c69:log:55', 'hash': '0x5bbc79d6f739c829fe14cf532253775f7ecb103aa45aeda66aea9ba5641f2c69', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 680.0892435064229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24de225bb3ac798471', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:45.000Z'}}, {'blockNum': '0x4c0427', 'uniqueId': '0x5bbc79d6f739c829fe14cf532253775f7ecb103aa45aeda66aea9ba5641f2c69:log:57', 'hash': '0x5bbc79d6f739c829fe14cf532253775f7ecb103aa45aeda66aea9ba5641f2c69', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 680.0892435064229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24de225bb3ac798471', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:12:45.000Z'}}, {'blockNum': '0x4c0431', 'uniqueId': '0xc4196d68564d45f279e30021d54b17a85f509a18f2ec76b8adb97bc03c8ecfc0:log:66', 'hash': '0xc4196d68564d45f279e30021d54b17a85f509a18f2ec76b8adb97bc03c8ecfc0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 104.92448491937401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05b01ea71ed41e426e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:15:42.000Z'}}, {'blockNum': '0x4c0431', 'uniqueId': '0xc4196d68564d45f279e30021d54b17a85f509a18f2ec76b8adb97bc03c8ecfc0:log:69', 'hash': '0xc4196d68564d45f279e30021d54b17a85f509a18f2ec76b8adb97bc03c8ecfc0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 104.92448491937401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05b01ea71ed41e426e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:15:42.000Z'}}, {'blockNum': '0x4c0431', 'uniqueId': '0xa71d5645350bc9316a74463b4166042cf5e44286f300dc34e7048276913717f7:log:88', 'hash': '0xa71d5645350bc9316a74463b4166042cf5e44286f300dc34e7048276913717f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.13874128903826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0404e1b86603b650ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:15:42.000Z'}}, {'blockNum': '0x4c0431', 'uniqueId': '0xa71d5645350bc9316a74463b4166042cf5e44286f300dc34e7048276913717f7:log:91', 'hash': '0xa71d5645350bc9316a74463b4166042cf5e44286f300dc34e7048276913717f7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 74.13874128903826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0404e1b86603b650ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:15:42.000Z'}}, {'blockNum': '0x4c0434', 'uniqueId': '0x542a9ba44174057fa08317e34895bb5b06ffb764a0731baba8fdd86a236cc85c:log:16', 'hash': '0x542a9ba44174057fa08317e34895bb5b06ffb764a0731baba8fdd86a236cc85c', 'from': '0xf5a3ac900cfe35d30f305c3a332c8e6513dabe95', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:16:24.000Z'}}, {'blockNum': '0x4c0436', 'uniqueId': '0xe5efe18b8baa614da4fca8e00c8fa3c7cea84166bb372774d5ff3234a5310d9f:log:78', 'hash': '0xe5efe18b8baa614da4fca8e00c8fa3c7cea84166bb372774d5ff3234a5310d9f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 344.73964538579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b03940f82e256f1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:16:40.000Z'}}, {'blockNum': '0x4c0436', 'uniqueId': '0xe5efe18b8baa614da4fca8e00c8fa3c7cea84166bb372774d5ff3234a5310d9f:log:81', 'hash': '0xe5efe18b8baa614da4fca8e00c8fa3c7cea84166bb372774d5ff3234a5310d9f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 344.73964538579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b03940f82e256f1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:16:40.000Z'}}, {'blockNum': '0x4c043e', 'uniqueId': '0xeb799137878fe3fcb493678a0a826d8895b43030ebda3547048a3ad55d845dde:log:26', 'hash': '0xeb799137878fe3fcb493678a0a826d8895b43030ebda3547048a3ad55d845dde', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1049.120828381987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38df79eaeedbe2d344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:19:04.000Z'}}, {'blockNum': '0x4c043e', 'uniqueId': '0xeb799137878fe3fcb493678a0a826d8895b43030ebda3547048a3ad55d845dde:log:29', 'hash': '0xeb799137878fe3fcb493678a0a826d8895b43030ebda3547048a3ad55d845dde', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1049.120828381987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38df79eaeedbe2d344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:19:04.000Z'}}, {'blockNum': '0x4c043f', 'uniqueId': '0xc439f6339ffd240be5ba66770fcec984ea8fe8875274830a5248f46d037cada3:log:29', 'hash': '0xc439f6339ffd240be5ba66770fcec984ea8fe8875274830a5248f46d037cada3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 44.95940197058073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fefe1e31a763446', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:19:24.000Z'}}, {'blockNum': '0x4c043f', 'uniqueId': '0xc439f6339ffd240be5ba66770fcec984ea8fe8875274830a5248f46d037cada3:log:32', 'hash': '0xc439f6339ffd240be5ba66770fcec984ea8fe8875274830a5248f46d037cada3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 44.95940197058073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fefe1e31a763446', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:19:24.000Z'}}, {'blockNum': '0x4c0440', 'uniqueId': '0xbb90453340b36c5aa4840c616d4ebb9346eb4b0ae7c595f80e9cc6140963f1b0:log:77', 'hash': '0xbb90453340b36c5aa4840c616d4ebb9346eb4b0ae7c595f80e9cc6140963f1b0', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:20:11.000Z'}}, {'blockNum': '0x4c0440', 'uniqueId': '0x701e3a5d3839b9b974ce48143bb4ae92415256e9fcc5c8cfde2aef565fdeadfa:log:90', 'hash': '0x701e3a5d3839b9b974ce48143bb4ae92415256e9fcc5c8cfde2aef565fdeadfa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1048.9846091031602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38dd95f8387dd9ff08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:20:11.000Z'}}, {'blockNum': '0x4c0440', 'uniqueId': '0x701e3a5d3839b9b974ce48143bb4ae92415256e9fcc5c8cfde2aef565fdeadfa:log:93', 'hash': '0x701e3a5d3839b9b974ce48143bb4ae92415256e9fcc5c8cfde2aef565fdeadfa', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1048.9846091031602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38dd95f8387dd9ff08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:20:11.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x7d127492c108a9562b8a37afec6d06b12693eabbc78799fe3aeab0febd31c3e5:log:58', 'hash': '0x7d127492c108a9562b8a37afec6d06b12693eabbc78799fe3aeab0febd31c3e5', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2280.4322905256668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b9f5afdfc28c1da4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x7d127492c108a9562b8a37afec6d06b12693eabbc78799fe3aeab0febd31c3e5:log:60', 'hash': '0x7d127492c108a9562b8a37afec6d06b12693eabbc78799fe3aeab0febd31c3e5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2280.4322905256668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b9f5afdfc28c1da4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c:log:69', 'hash': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c', 'from': '0x17c80c566f02fedf3fd292c36a3e4403a2c4abc4', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c:log:72', 'hash': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c044d', 'uniqueId': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c:log:73', 'hash': '0x8d7e01fa80badb7bf86fee36492913b94e5a7c69f518663109b50780996cdb2c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.9999949553437326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b21d1a721f9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:23:18.000Z'}}, {'blockNum': '0x4c0452', 'uniqueId': '0x475d09adc3259216adeabe6e2b2684defb9d588f45567bbbb7598cfa7e5a6dfb:log:17', 'hash': '0x475d09adc3259216adeabe6e2b2684defb9d588f45567bbbb7598cfa7e5a6dfb', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5dcc4bd3b28c199c95ecdd457e1fbfd716001754', 'value': 10.19629637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8d808586b6747800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:24:23.000Z'}}, {'blockNum': '0x4c0453', 'uniqueId': '0x93aac19db54998ebbbc086037b14d888adc7f98ec59fa6f4f59b31fa05213dbd:log:20', 'hash': '0x93aac19db54998ebbbc086037b14d888adc7f98ec59fa6f4f59b31fa05213dbd', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xc61609b1d7aa8eb3f630becdb13026de95b9c1d7', 'value': 16.19421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe0bd6431c4142800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:24:43.000Z'}}, {'blockNum': '0x4c045a', 'uniqueId': '0x808c0651a3da539a139721fc639b081c8dadb5de8b1dd5874ef44db54f0d3096:log:18', 'hash': '0x808c0651a3da539a139721fc639b081c8dadb5de8b1dd5874ef44db54f0d3096', 'from': '0x16b112e808c7b6325dbc900d99d15843a4ae8392', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 63.7443081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0374a1467c318e2800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:26:14.000Z'}}, {'blockNum': '0x4c046d', 'uniqueId': '0x00a90a091495c69e71efe15f85745a6c1cc590df2e0a81cae7c688e6fa7ebd59:log:59', 'hash': '0x00a90a091495c69e71efe15f85745a6c1cc590df2e0a81cae7c688e6fa7ebd59', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.988606410371917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd0023a1e005c62f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:28.000Z'}}, {'blockNum': '0x4c046d', 'uniqueId': '0x00a90a091495c69e71efe15f85745a6c1cc590df2e0a81cae7c688e6fa7ebd59:log:62', 'hash': '0x00a90a091495c69e71efe15f85745a6c1cc590df2e0a81cae7c688e6fa7ebd59', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 14.988606410371917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd0023a1e005c62f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:28.000Z'}}, {'blockNum': '0x4c046e', 'uniqueId': '0x66c1c32a359b112b951b1860403c0d35acd6a4745cb56f75853100ba29e37088:log:44', 'hash': '0x66c1c32a359b112b951b1860403c0d35acd6a4745cb56f75853100ba29e37088', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 217.41525587688076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc93e274dfc22f61c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:38.000Z'}}, {'blockNum': '0x4c046e', 'uniqueId': '0x66c1c32a359b112b951b1860403c0d35acd6a4745cb56f75853100ba29e37088:log:47', 'hash': '0x66c1c32a359b112b951b1860403c0d35acd6a4745cb56f75853100ba29e37088', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 217.41525587688076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc93e274dfc22f61c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:38.000Z'}}, {'blockNum': '0x4c0472', 'uniqueId': '0xda140adc6b2d4473c86a5c8f34a0dc0f89e37c5475b308fab12cec3cd1097ca7:log:8', 'hash': '0xda140adc6b2d4473c86a5c8f34a0dc0f89e37c5475b308fab12cec3cd1097ca7', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4aca40ccf83d3bea7cce571c965e1aca7bfc11be', 'value': 16.37624948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe344202310934800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:31:57.000Z'}}, {'blockNum': '0x4c0475', 'uniqueId': '0x13ee4a8c093ec2e09e84b1b2ddaea7015f22cfa345849e4acf511d7853817d52:log:9', 'hash': '0x13ee4a8c093ec2e09e84b1b2ddaea7015f22cfa345849e4acf511d7853817d52', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x4aca40ccf83d3bea7cce571c965e1aca7bfc11be', 'value': 16.47951474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe4b2ff5804838800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:32:21.000Z'}}, {'blockNum': '0x4c0475', 'uniqueId': '0x60a2f04c81c4fb8d9cb3c953a26ef81a6cb18d1609dd4c0065b63f46fe687a49:log:52', 'hash': '0x60a2f04c81c4fb8d9cb3c953a26ef81a6cb18d1609dd4c0065b63f46fe687a49', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2997.1081133677444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2793afdbfa59795b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:32:21.000Z'}}, {'blockNum': '0x4c0475', 'uniqueId': '0x60a2f04c81c4fb8d9cb3c953a26ef81a6cb18d1609dd4c0065b63f46fe687a49:log:54', 'hash': '0x60a2f04c81c4fb8d9cb3c953a26ef81a6cb18d1609dd4c0065b63f46fe687a49', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2997.1081133677444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2793afdbfa59795b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:32:21.000Z'}}, {'blockNum': '0x4c047b', 'uniqueId': '0xfd2049942b9f9a7b3d768ffe861f776cbea6ab911aafcd29b8a9778c4fdeeeab:log:15', 'hash': '0xfd2049942b9f9a7b3d768ffe861f776cbea6ab911aafcd29b8a9778c4fdeeeab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.91404449889691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040fa4268f648e6b90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:33:55.000Z'}}, {'blockNum': '0x4c047b', 'uniqueId': '0xfd2049942b9f9a7b3d768ffe861f776cbea6ab911aafcd29b8a9778c4fdeeeab:log:18', 'hash': '0xfd2049942b9f9a7b3d768ffe861f776cbea6ab911aafcd29b8a9778c4fdeeeab', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 74.91404449889691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040fa4268f648e6b90', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:33:55.000Z'}}, {'blockNum': '0x4c047b', 'uniqueId': '0x37cb335df3171d38deda4089f3a0d73e5aae7af121fb1486a6d3aaeda5cf97c1:log:38', 'hash': '0x37cb335df3171d38deda4089f3a0d73e5aae7af121fb1486a6d3aaeda5cf97c1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 0.10103598962742312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0166f3b27f45c990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:33:55.000Z'}}, {'blockNum': '0x4c047b', 'uniqueId': '0x37cb335df3171d38deda4089f3a0d73e5aae7af121fb1486a6d3aaeda5cf97c1:log:41', 'hash': '0x37cb335df3171d38deda4089f3a0d73e5aae7af121fb1486a6d3aaeda5cf97c1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 0.10103598962742312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0166f3b27f45c990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:33:55.000Z'}}, {'blockNum': '0x4c0485', 'uniqueId': '0x7300ed350446e2a320ef7bc45870a7bc30c179bc32175f2b13277ef4af277f56:log:67', 'hash': '0x7300ed350446e2a320ef7bc45870a7bc30c179bc32175f2b13277ef4af277f56', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4493.624129992345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf3998fe9fcad7cd494', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:35:52.000Z'}}, {'blockNum': '0x4c0485', 'uniqueId': '0x7300ed350446e2a320ef7bc45870a7bc30c179bc32175f2b13277ef4af277f56:log:69', 'hash': '0x7300ed350446e2a320ef7bc45870a7bc30c179bc32175f2b13277ef4af277f56', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4493.624129992345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf3998fe9fcad7cd494', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:35:52.000Z'}}, {'blockNum': '0x4c0485', 'uniqueId': '0xc6eb8072e27b33294d73548ab0b92eefe879b7ef2acd008bb8df9bd65cabd324:log:79', 'hash': '0xc6eb8072e27b33294d73548ab0b92eefe879b7ef2acd008bb8df9bd65cabd324', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:35:52.000Z'}}, {'blockNum': '0x4c0486', 'uniqueId': '0x33d875b0cec9cc99e05da73e9c9f0062eca5f89d751dd98fab9d1a2393b4b862:log:47', 'hash': '0x33d875b0cec9cc99e05da73e9c9f0062eca5f89d751dd98fab9d1a2393b4b862', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.8734352734032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040f13e0af48668d72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:36:03.000Z'}}, {'blockNum': '0x4c0486', 'uniqueId': '0x33d875b0cec9cc99e05da73e9c9f0062eca5f89d751dd98fab9d1a2393b4b862:log:50', 'hash': '0x33d875b0cec9cc99e05da73e9c9f0062eca5f89d751dd98fab9d1a2393b4b862', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 74.8734352734032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040f13e0af48668d72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:36:03.000Z'}}, {'blockNum': '0x4c048a', 'uniqueId': '0x7680b9b5e1a0fafd18e64497c257eb570198a9799c0c711e684d6941addc96d7:log:8', 'hash': '0x7680b9b5e1a0fafd18e64497c257eb570198a9799c0c711e684d6941addc96d7', 'from': '0x1dadc56283961b9be74d4c22a1bc6c19d3c998eb', 'to': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4bfffff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:37:10.000Z'}}, {'blockNum': '0x4c048c', 'uniqueId': '0xeede734e06bfe62b99352282839bcfdd730e40cd44fad38a32adc42641905ff2:log:6', 'hash': '0xeede734e06bfe62b99352282839bcfdd730e40cd44fad38a32adc42641905ff2', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x366b087f773a9ffdf762720cb722c47fd8daaf0c', 'value': 70.99276573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d938f84baf2ce000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:37:32.000Z'}}, {'blockNum': '0x4c049c', 'uniqueId': '0x0f3c432a9b8da5b3ed25deb1d13aa7c0b40b94f34497c0b2ddec4ccc15fa0428:log:44', 'hash': '0x0f3c432a9b8da5b3ed25deb1d13aa7c0b40b94f34497c0b2ddec4ccc15fa0428', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5987.720239165467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144984f993832a8702e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:40:44.000Z'}}, {'blockNum': '0x4c049c', 'uniqueId': '0x0f3c432a9b8da5b3ed25deb1d13aa7c0b40b94f34497c0b2ddec4ccc15fa0428:log:46', 'hash': '0x0f3c432a9b8da5b3ed25deb1d13aa7c0b40b94f34497c0b2ddec4ccc15fa0428', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 5987.720239165467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144984f993832a8702e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:40:44.000Z'}}, {'blockNum': '0x4c049f', 'uniqueId': '0x12b19afcc71b4fa1dca86a9de2904e19cc18750a5d42232ef5bd5b4853997a81:log:2', 'hash': '0x12b19afcc71b4fa1dca86a9de2904e19cc18750a5d42232ef5bd5b4853997a81', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:41:18.000Z'}}, {'blockNum': '0x4c049f', 'uniqueId': '0x0941f71bb77c2c6e62c4b030e0f44bfa74066900b4263ca5d37b0830932b3ba1:log:62', 'hash': '0x0941f71bb77c2c6e62c4b030e0f44bfa74066900b4263ca5d37b0830932b3ba1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 819.9863894661294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7398dcbecfc0ba88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:41:18.000Z'}}, {'blockNum': '0x4c049f', 'uniqueId': '0x0941f71bb77c2c6e62c4b030e0f44bfa74066900b4263ca5d37b0830932b3ba1:log:65', 'hash': '0x0941f71bb77c2c6e62c4b030e0f44bfa74066900b4263ca5d37b0830932b3ba1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 819.9863894661294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7398dcbecfc0ba88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:41:18.000Z'}}, {'blockNum': '0x4c04a2', 'uniqueId': '0x79b5315dc6da60b99853964fbffed749e53cad9be6231d3cec7f9c13d7e2a215:log:9', 'hash': '0x79b5315dc6da60b99853964fbffed749e53cad9be6231d3cec7f9c13d7e2a215', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x68a013a56f17b12410784af9f91f4771b1faa490', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:42:16.000Z'}}, {'blockNum': '0x4c04a4', 'uniqueId': '0x75240e297f041d878566276c2668f157312a929e11eab17010c118cedcfef839:log:50', 'hash': '0x75240e297f041d878566276c2668f157312a929e11eab17010c118cedcfef839', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.039881397444297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38108aba0d604410', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:42:49.000Z'}}, {'blockNum': '0x4c04a4', 'uniqueId': '0x75240e297f041d878566276c2668f157312a929e11eab17010c118cedcfef839:log:53', 'hash': '0x75240e297f041d878566276c2668f157312a929e11eab17010c118cedcfef839', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 4.039881397444297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38108aba0d604410', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:42:49.000Z'}}, {'blockNum': '0x4c04a5', 'uniqueId': '0xfa893b744b69f0afe9d42fc7ed3b156e92717c89bae203427613f542b2ff090e:log:69', 'hash': '0xfa893b744b69f0afe9d42fc7ed3b156e92717c89bae203427613f542b2ff090e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 742.108319155044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x283ad26069c29c4c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:14.000Z'}}, {'blockNum': '0x4c04a5', 'uniqueId': '0xfa893b744b69f0afe9d42fc7ed3b156e92717c89bae203427613f542b2ff090e:log:72', 'hash': '0xfa893b744b69f0afe9d42fc7ed3b156e92717c89bae203427613f542b2ff090e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 742.108319155044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x283ad26069c29c4c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:14.000Z'}}, {'blockNum': '0x4c04a6', 'uniqueId': '0x13fe169cd443df2d9f10c357cc2b2fde886beac611262edba8d4d9ea353967af:log:35', 'hash': '0x13fe169cd443df2d9f10c357cc2b2fde886beac611262edba8d4d9ea353967af', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 89.7667367553472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04ddc3837974788a28', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:19.000Z'}}, {'blockNum': '0x4c04a6', 'uniqueId': '0x13fe169cd443df2d9f10c357cc2b2fde886beac611262edba8d4d9ea353967af:log:38', 'hash': '0x13fe169cd443df2d9f10c357cc2b2fde886beac611262edba8d4d9ea353967af', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 89.7667367553472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04ddc3837974788a28', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:19.000Z'}}, {'blockNum': '0x4c04a7', 'uniqueId': '0xbe270328a2879c43fb866d0e72d5de0d98713e9fbd3086d0a5f61cbaa2bea2ea:log:11', 'hash': '0xbe270328a2879c43fb866d0e72d5de0d98713e9fbd3086d0a5f61cbaa2bea2ea', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:43:41.000Z'}}, {'blockNum': '0x4c04ba', 'uniqueId': '0x6df39b4d47fe44551a733b714fc587892f9042c81758e566849e4201ccc5cab8:log:67', 'hash': '0x6df39b4d47fe44551a733b714fc587892f9042c81758e566849e4201ccc5cab8', 'from': '0x570d467968999db90b61199adfef1dfc0a290fa3', 'to': '0x292522e1901e09ad2a0039632b63ea79466f21f4', 'value': 1.26120563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1180b3d69cdf6c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:48:53.000Z'}}, {'blockNum': '0x4c04c3', 'uniqueId': '0x16cadd9b5e03af6c4c1043d2d364d44aaae85441ec7a90e2cd9d23bafdaa6a1d:log:35', 'hash': '0x16cadd9b5e03af6c4c1043d2d364d44aaae85441ec7a90e2cd9d23bafdaa6a1d', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x366b087f773a9ffdf762720cb722c47fd8daaf0c', 'value': 70.89604107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d7e155bad6dac000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:50:35.000Z'}}, {'blockNum': '0x4c04c3', 'uniqueId': '0xb6ce1f53e54dc79b5b67f220cd26a5f87c1c0f0602ab52015b8e08d455249d6d:log:36', 'hash': '0xb6ce1f53e54dc79b5b67f220cd26a5f87c1c0f0602ab52015b8e08d455249d6d', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x266654aefc0e9fc53d046633dbe0d98afb1abfac', 'value': 2.18409445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e4f76549826f400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:50:35.000Z'}}, {'blockNum': '0x4c04cb', 'uniqueId': '0x7038f8924a5eb109ae43d129c70bc3b0144e08d249e06872887310271bbca0bb:log:3', 'hash': '0x7038f8924a5eb109ae43d129c70bc3b0144e08d249e06872887310271bbca0bb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 1380.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad16dc8a6e35f0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:52:10.000Z'}}, {'blockNum': '0x4c04d0', 'uniqueId': '0xdd4349f1e2336dab0a76ac80b9fb058ef827835c76c2ac82ade94b479a34786f:log:36', 'hash': '0xdd4349f1e2336dab0a76ac80b9fb058ef827835c76c2ac82ade94b479a34786f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.8193407210711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18549e9c70647464ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:53:06.000Z'}}, {'blockNum': '0x4c04d0', 'uniqueId': '0xdd4349f1e2336dab0a76ac80b9fb058ef827835c76c2ac82ade94b479a34786f:log:39', 'hash': '0xdd4349f1e2336dab0a76ac80b9fb058ef827835c76c2ac82ade94b479a34786f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'value': 448.8193407210711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18549e9c70647464ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:53:06.000Z'}}, {'blockNum': '0x4c04db', 'uniqueId': '0x5c96adae06d994859554d184ded9753bca4eedf8d9a647736737dc4b45bd4973:log:79', 'hash': '0x5c96adae06d994859554d184ded9753bca4eedf8d9a647736737dc4b45bd4973', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1078.5647314074008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a7817acbbf2ba0faa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:55:33.000Z'}}, {'blockNum': '0x4c04db', 'uniqueId': '0x5c96adae06d994859554d184ded9753bca4eedf8d9a647736737dc4b45bd4973:log:82', 'hash': '0x5c96adae06d994859554d184ded9753bca4eedf8d9a647736737dc4b45bd4973', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 1078.5647314074008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a7817acbbf2ba0faa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:55:33.000Z'}}, {'blockNum': '0x4c04de', 'uniqueId': '0x02a0da9f14fdbcb904e56c3448f9fcfb4f940a604e12ba10431d29a442a3cbc3:log:61', 'hash': '0x02a0da9f14fdbcb904e56c3448f9fcfb4f940a604e12ba10431d29a442a3cbc3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.991665797654104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2984883143dbc754', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:56:29.000Z'}}, {'blockNum': '0x4c04de', 'uniqueId': '0x02a0da9f14fdbcb904e56c3448f9fcfb4f940a604e12ba10431d29a442a3cbc3:log:64', 'hash': '0x02a0da9f14fdbcb904e56c3448f9fcfb4f940a604e12ba10431d29a442a3cbc3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 2.991665797654104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2984883143dbc754', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:56:29.000Z'}}, {'blockNum': '0x4c04de', 'uniqueId': '0x529f7183f6b0350cf5c1acf63fbb4ba129edc2cdb359e1b6fc33e25ed8f6f2e0:log:81', 'hash': '0x529f7183f6b0350cf5c1acf63fbb4ba129edc2cdb359e1b6fc33e25ed8f6f2e0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.58193575600612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081bddca0d100bc10d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:56:29.000Z'}}, {'blockNum': '0x4c04de', 'uniqueId': '0x529f7183f6b0350cf5c1acf63fbb4ba129edc2cdb359e1b6fc33e25ed8f6f2e0:log:84', 'hash': '0x529f7183f6b0350cf5c1acf63fbb4ba129edc2cdb359e1b6fc33e25ed8f6f2e0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 149.58193575600612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081bddca0d100bc10d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T12:56:29.000Z'}}, {'blockNum': '0x4c04ee', 'uniqueId': '0xd8868aaf18a677bc7f68332351cc1e497b26ccca119f45fa59f17819ccf45970:log:19', 'hash': '0xd8868aaf18a677bc7f68332351cc1e497b26ccca119f45fa59f17819ccf45970', 'from': '0x7d8bae5c14d651634593ec06bfbfbf48e57b6b0a', 'to': '0x0768fe4ce8dc8d1d643d3081a2da3662ba67cc5d', 'value': 23.413458428998226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0144ed50642fd08966', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:00:11.000Z'}}, {'blockNum': '0x4c04ee', 'uniqueId': '0x025c3ccc3efab5915a31f208b1c08ff1265827e572851ab1dccdb80ee06c8a49:log:27', 'hash': '0x025c3ccc3efab5915a31f208b1c08ff1265827e572851ab1dccdb80ee06c8a49', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:00:11.000Z'}}, {'blockNum': '0x4c04f9', 'uniqueId': '0xe632d8624cc7c933a42305bc3ceafdde0b041e975366814ac431e3d105372e8f:log:30', 'hash': '0xe632d8624cc7c933a42305bc3ceafdde0b041e975366814ac431e3d105372e8f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 598.3011931849218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206f18d5441fa02719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:02:54.000Z'}}, {'blockNum': '0x4c04f9', 'uniqueId': '0xe632d8624cc7c933a42305bc3ceafdde0b041e975366814ac431e3d105372e8f:log:33', 'hash': '0xe632d8624cc7c933a42305bc3ceafdde0b041e975366814ac431e3d105372e8f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'value': 598.3011931849218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206f18d5441fa02719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:02:54.000Z'}}, {'blockNum': '0x4c04fd', 'uniqueId': '0xa6732d198efe658e1efbc538715f2ced01c3e6346b8b892ea214d3ebaf37635b:log:25', 'hash': '0xa6732d198efe658e1efbc538715f2ced01c3e6346b8b892ea214d3ebaf37635b', 'from': '0xd2605d77c5d290444232296b7dd8e6a16a460a3f', 'to': '0x52ff305d13c13f27399847b0c2705fe7bb257ae8', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:04:13.000Z'}}, {'blockNum': '0x4c04fe', 'uniqueId': '0x9d7dca2bd6e35ebba7708960f436976ce4da0075038fea8f6c61c75774e93ad8:log:2', 'hash': '0x9d7dca2bd6e35ebba7708960f436976ce4da0075038fea8f6c61c75774e93ad8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x36aff7df516641afcca74010a6de34e6170df1c7', 'value': 48.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029faf5790d8e80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:04:52.000Z'}}, {'blockNum': '0x4c0500', 'uniqueId': '0x7af43b26149989f2ad566ba1fda6ddc4b83afcc50c34274c82f2838e0240666d:log:37', 'hash': '0x7af43b26149989f2ad566ba1fda6ddc4b83afcc50c34274c82f2838e0240666d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1098.132454728165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b87a6316b8ffe80d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:05:23.000Z'}}, {'blockNum': '0x4c0500', 'uniqueId': '0x7af43b26149989f2ad566ba1fda6ddc4b83afcc50c34274c82f2838e0240666d:log:40', 'hash': '0x7af43b26149989f2ad566ba1fda6ddc4b83afcc50c34274c82f2838e0240666d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf3ed5b15618494ddbd0a57b3bca8b2686ac0bc04', 'value': 1098.132454728165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b87a6316b8ffe80d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:05:23.000Z'}}, {'blockNum': '0x4c050b', 'uniqueId': '0x3db6f82024fa0e59c25bfc9588fa20d769724bceffc43deb5e1d4f51c7c161ff:log:10', 'hash': '0x3db6f82024fa0e59c25bfc9588fa20d769724bceffc43deb5e1d4f51c7c161ff', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x3c200c37476b85ae4ccd9c967bd0e4c13a1e4e1e', 'value': 99.60910476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05665aa1070e788000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:07.000Z'}}, {'blockNum': '0x4c050e', 'uniqueId': '0x70adbe58ed2158f7d4ad6e76a59848fb88571e5a5b242dc8e120609257e5416d:log:52', 'hash': '0x70adbe58ed2158f7d4ad6e76a59848fb88571e5a5b242dc8e120609257e5416d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.91004683199698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019f15d51f9c7a4be8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:29.000Z'}}, {'blockNum': '0x4c050e', 'uniqueId': '0x70adbe58ed2158f7d4ad6e76a59848fb88571e5a5b242dc8e120609257e5416d:log:54', 'hash': '0x70adbe58ed2158f7d4ad6e76a59848fb88571e5a5b242dc8e120609257e5416d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb1e73b6be3c551753793c9abea850ad85f384138', 'value': 29.91004683199698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019f15d51f9c7a4be8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:29.000Z'}}, {'blockNum': '0x4c0510', 'uniqueId': '0x2c3e98cb99c3810faaca7660caa013833b3533eddfce68e9d46ccc7ba207c1fc:log:35', 'hash': '0x2c3e98cb99c3810faaca7660caa013833b3533eddfce68e9d46ccc7ba207c1fc', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 41.75714665174304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02437f2fa4130931dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:43.000Z'}}, {'blockNum': '0x4c0510', 'uniqueId': '0x2c3e98cb99c3810faaca7660caa013833b3533eddfce68e9d46ccc7ba207c1fc:log:37', 'hash': '0x2c3e98cb99c3810faaca7660caa013833b3533eddfce68e9d46ccc7ba207c1fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 41.75714665174304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02437f2fa4130931dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:09:43.000Z'}}, {'blockNum': '0x4c0521', 'uniqueId': '0xf1cc53fb06704ca848baa9d71356dc93a8a4d04957477919662e2db1cc3c0859:log:8', 'hash': '0xf1cc53fb06704ca848baa9d71356dc93a8a4d04957477919662e2db1cc3c0859', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x4a7e5fc2517d4f29566cd3f4dbc7dd24123adc7d', 'value': 126.252014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06d81941d237a4e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:12:27.000Z'}}, {'blockNum': '0x4c0536', 'uniqueId': '0xfe0b876e858f4d33348c5c6c17450041ca6f4903f409689a5eb45049a8c7e83e:log:53', 'hash': '0xfe0b876e858f4d33348c5c6c17450041ca6f4903f409689a5eb45049a8c7e83e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.760538699775164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019d02ac44f45d454a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:17:39.000Z'}}, {'blockNum': '0x4c0536', 'uniqueId': '0xfe0b876e858f4d33348c5c6c17450041ca6f4903f409689a5eb45049a8c7e83e:log:56', 'hash': '0xfe0b876e858f4d33348c5c6c17450041ca6f4903f409689a5eb45049a8c7e83e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 29.760538699775164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019d02ac44f45d454a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:17:39.000Z'}}, {'blockNum': '0x4c0539', 'uniqueId': '0x7eca76f2c6f6dce0a697a7bd87ff29a739651e881e9269411a2814e7fb1bd247:log:37', 'hash': '0x7eca76f2c6f6dce0a697a7bd87ff29a739651e881e9269411a2814e7fb1bd247', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 40.08593549091432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022c4dd9f1d12c198a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:01.000Z'}}, {'blockNum': '0x4c0539', 'uniqueId': '0x7eca76f2c6f6dce0a697a7bd87ff29a739651e881e9269411a2814e7fb1bd247:log:40', 'hash': '0x7eca76f2c6f6dce0a697a7bd87ff29a739651e881e9269411a2814e7fb1bd247', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 40.08593549091432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022c4dd9f1d12c198a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:01.000Z'}}, {'blockNum': '0x4c053b', 'uniqueId': '0xc766965b37971a287cb1ba75a1acaee69c6e1e6fc9299804deebe3250bd17575:log:17', 'hash': '0xc766965b37971a287cb1ba75a1acaee69c6e1e6fc9299804deebe3250bd17575', 'from': '0x52ff305d13c13f27399847b0c2705fe7bb257ae8', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:23.000Z'}}, {'blockNum': '0x4c053b', 'uniqueId': '0x34ba7b424a9a636b35339624b963b556fc174944506da6f06234a64de50aea7b:log:75', 'hash': '0x34ba7b424a9a636b35339624b963b556fc174944506da6f06234a64de50aea7b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 74.77440340719961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040db40bba21e42765', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:23.000Z'}}, {'blockNum': '0x4c053b', 'uniqueId': '0x34ba7b424a9a636b35339624b963b556fc174944506da6f06234a64de50aea7b:log:78', 'hash': '0x34ba7b424a9a636b35339624b963b556fc174944506da6f06234a64de50aea7b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 74.77440340719961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040db40bba21e42765', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:18:23.000Z'}}, {'blockNum': '0x4c0545', 'uniqueId': '0xa06928af26155b92d5b431bed81e28900fe0d6c3bf8c7b57cebd7dc8d90af20d:log:60', 'hash': '0xa06928af26155b92d5b431bed81e28900fe0d6c3bf8c7b57cebd7dc8d90af20d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 491.81911379592754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa95c7e3a61adb11c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:21:11.000Z'}}, {'blockNum': '0x4c0545', 'uniqueId': '0xa06928af26155b92d5b431bed81e28900fe0d6c3bf8c7b57cebd7dc8d90af20d:log:63', 'hash': '0xa06928af26155b92d5b431bed81e28900fe0d6c3bf8c7b57cebd7dc8d90af20d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 491.81911379592754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa95c7e3a61adb11c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:21:11.000Z'}}, {'blockNum': '0x4c0548', 'uniqueId': '0x41f944406613e1fa9777ffc3ab10dcecaaf8d45be959bf68789a03cae04db091:log:48', 'hash': '0x41f944406613e1fa9777ffc3ab10dcecaaf8d45be959bf68789a03cae04db091', 'from': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 95.55690226687389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e1e50545dbccf32', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:22:06.000Z'}}, {'blockNum': '0x4c0548', 'uniqueId': '0x41f944406613e1fa9777ffc3ab10dcecaaf8d45be959bf68789a03cae04db091:log:50', 'hash': '0x41f944406613e1fa9777ffc3ab10dcecaaf8d45be959bf68789a03cae04db091', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.55690226687389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e1e50545dbccf32', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:22:06.000Z'}}, {'blockNum': '0x4c054c', 'uniqueId': '0x2409ef07a5db23054868321af7d145c6c42d2fd1cda2f6ac98e588e91084328e:log:59', 'hash': '0x2409ef07a5db23054868321af7d145c6c42d2fd1cda2f6ac98e588e91084328e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 29.908169227265695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019f0f2973b170e46e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:23:08.000Z'}}, {'blockNum': '0x4c054c', 'uniqueId': '0x2409ef07a5db23054868321af7d145c6c42d2fd1cda2f6ac98e588e91084328e:log:62', 'hash': '0x2409ef07a5db23054868321af7d145c6c42d2fd1cda2f6ac98e588e91084328e', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 29.908169227265695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019f0f2973b170e46e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:23:08.000Z'}}, {'blockNum': '0x4c054d', 'uniqueId': '0x891c94fda49a37f25080bd4b216a647e60fc65ebcadd07c945db49084a95e62f:log:59', 'hash': '0x891c94fda49a37f25080bd4b216a647e60fc65ebcadd07c945db49084a95e62f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 65.4985198447937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x038cf97cc5d6cd4e94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:23:21.000Z'}}, {'blockNum': '0x4c054d', 'uniqueId': '0x891c94fda49a37f25080bd4b216a647e60fc65ebcadd07c945db49084a95e62f:log:62', 'hash': '0x891c94fda49a37f25080bd4b216a647e60fc65ebcadd07c945db49084a95e62f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 65.4985198447937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x038cf97cc5d6cd4e94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:23:21.000Z'}}, {'blockNum': '0x4c0562', 'uniqueId': '0x368f2ad808bdcaf057d2617fbce0fa7a60c11aff00f794c904ca83896dbb4f95:log:1', 'hash': '0x368f2ad808bdcaf057d2617fbce0fa7a60c11aff00f794c904ca83896dbb4f95', 'from': '0x8cd797b09b6719c19cf0f14bcf66fafd66bb504c', 'to': '0xe18fe5df4dc5aef12e40873b36b6763386d41c3e', 'value': 5.81757539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50bc2dfe8f012c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:29:01.000Z'}}, {'blockNum': '0x4c056d', 'uniqueId': '0x5cf9e5c957c893afa14a6f6d39230c4f1cc3253f88c82516c1655f528b9a4e22:log:11', 'hash': '0x5cf9e5c957c893afa14a6f6d39230c4f1cc3253f88c82516c1655f528b9a4e22', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xe77df16aca3f09e698bb5b2e7f88635aa14f374e', 'value': 29.26531177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019623460023e88000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:32:04.000Z'}}, {'blockNum': '0x4c056e', 'uniqueId': '0x448c5f7df2f854c449a1e50eac215345958df11b718ff7ec6a254714d85d6592:log:241', 'hash': '0x448c5f7df2f854c449a1e50eac215345958df11b718ff7ec6a254714d85d6592', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c53ecdc18a600001', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:32:14.000Z'}}, {'blockNum': '0x4c056e', 'uniqueId': '0x448c5f7df2f854c449a1e50eac215345958df11b718ff7ec6a254714d85d6592:log:243', 'hash': '0x448c5f7df2f854c449a1e50eac215345958df11b718ff7ec6a254714d85d6592', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x24b980e795ce48812bdebd982f0c5bcfe8f4adee', 'value': 88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c53ecdc18a600001', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:32:14.000Z'}}, {'blockNum': '0x4c0575', 'uniqueId': '0xfd8386b4cc0391c8396a1effd421a3c07571155c2c80543e88ad3af04099f64b:log:24', 'hash': '0xfd8386b4cc0391c8396a1effd421a3c07571155c2c80543e88ad3af04099f64b', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xb1d76a7efba901887327661734dedd79b86577f8', 'value': 1.98377519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b87c9065a2edc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:33:13.000Z'}}, {'blockNum': '0x4c0576', 'uniqueId': '0x9766796597fa6656b49207e4dbc315012cd7b03df984df01c63c4c2eedda79b9:log:17', 'hash': '0x9766796597fa6656b49207e4dbc315012cd7b03df984df01c63c4c2eedda79b9', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x46491b7c775183ba87d9eb1b6c47ebdc689d4a43', 'value': 86.50519031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b0802c43471d0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:33:47.000Z'}}, {'blockNum': '0x4c0577', 'uniqueId': '0x27a7aabf79fd67ddab9f9c053ddf20a14e81ea373ea5d2bfa7afb8cc9f234532:log:55', 'hash': '0x27a7aabf79fd67ddab9f9c053ddf20a14e81ea373ea5d2bfa7afb8cc9f234532', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 747.6639254048139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2887ebdadcc815d0c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:34:17.000Z'}}, {'blockNum': '0x4c0577', 'uniqueId': '0x27a7aabf79fd67ddab9f9c053ddf20a14e81ea373ea5d2bfa7afb8cc9f234532:log:57', 'hash': '0x27a7aabf79fd67ddab9f9c053ddf20a14e81ea373ea5d2bfa7afb8cc9f234532', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 747.6639254048139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2887ebdadcc815d0c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:34:17.000Z'}}, {'blockNum': '0x4c0584', 'uniqueId': '0x52bd83bb288a3cdf509cc7ebcf332f35624bedbf10019cf2f25ee50558a91bab:log:42', 'hash': '0x52bd83bb288a3cdf509cc7ebcf332f35624bedbf10019cf2f25ee50558a91bab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.56651792941864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18511c677314e39994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:36:39.000Z'}}, {'blockNum': '0x4c0584', 'uniqueId': '0x52bd83bb288a3cdf509cc7ebcf332f35624bedbf10019cf2f25ee50558a91bab:log:45', 'hash': '0x52bd83bb288a3cdf509cc7ebcf332f35624bedbf10019cf2f25ee50558a91bab', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 448.56651792941864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18511c677314e39994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:36:39.000Z'}}, {'blockNum': '0x4c0584', 'uniqueId': '0x1667acdb9d4c7a597aabd0e3b3f1cb905d880d02ea3a5723f02e0e179dfb6c72:log:68', 'hash': '0x1667acdb9d4c7a597aabd0e3b3f1cb905d880d02ea3a5723f02e0e179dfb6c72', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 78.5730085336688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04426b66f6b7108d49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:36:39.000Z'}}, {'blockNum': '0x4c0584', 'uniqueId': '0x1667acdb9d4c7a597aabd0e3b3f1cb905d880d02ea3a5723f02e0e179dfb6c72:log:71', 'hash': '0x1667acdb9d4c7a597aabd0e3b3f1cb905d880d02ea3a5723f02e0e179dfb6c72', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'value': 78.5730085336688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04426b66f6b7108d49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:36:39.000Z'}}, {'blockNum': '0x4c058e', 'uniqueId': '0x000c6cc30cb03544bacf5508281124dd2da1555a6ade757fee4b413fe6b7fe60:log:70', 'hash': '0x000c6cc30cb03544bacf5508281124dd2da1555a6ade757fee4b413fe6b7fe60', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 566.6496186456295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb7d7d9eb7b4f4d2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:40:35.000Z'}}, {'blockNum': '0x4c058e', 'uniqueId': '0x000c6cc30cb03544bacf5508281124dd2da1555a6ade757fee4b413fe6b7fe60:log:73', 'hash': '0x000c6cc30cb03544bacf5508281124dd2da1555a6ade757fee4b413fe6b7fe60', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 566.6496186456295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb7d7d9eb7b4f4d2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:40:35.000Z'}}, {'blockNum': '0x4c058f', 'uniqueId': '0xceb538343c4cc642ceea46844169110b13484931a09bf5f606f612a34d1979d5:log:72', 'hash': '0xceb538343c4cc642ceea46844169110b13484931a09bf5f606f612a34d1979d5', 'from': '0x689d643572fdaadfa00a12e772a4d0e6159bae87', 'to': '0x292522e1901e09ad2a0039632b63ea79466f21f4', 'value': 11.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9d26ee00bc860000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:40:53.000Z'}}, {'blockNum': '0x4c0592', 'uniqueId': '0x4a585e523cf366c6441de07dbb414910afc47880c647b5bfbcb500fc1bcffaa8:log:35', 'hash': '0x4a585e523cf366c6441de07dbb414910afc47880c647b5bfbcb500fc1bcffaa8', 'from': '0x1a39014059c62599555f3bca2f24d5d9e3fb8803', 'to': '0x26f13ba2085ff20931d3048bb01ac08403f5c673', 'value': 17.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef8ef18ac0cb0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:41:22.000Z'}}, {'blockNum': '0x4c0596', 'uniqueId': '0x463d78323a9dce052d1b0961a741e60ec7c0bef8571d6df138dd83b32b2d95fc:log:101', 'hash': '0x463d78323a9dce052d1b0961a741e60ec7c0bef8571d6df138dd83b32b2d95fc', 'from': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1167.794813674066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f4e689bcb622f3455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:43:02.000Z'}}, {'blockNum': '0x4c0596', 'uniqueId': '0x463d78323a9dce052d1b0961a741e60ec7c0bef8571d6df138dd83b32b2d95fc:log:103', 'hash': '0x463d78323a9dce052d1b0961a741e60ec7c0bef8571d6df138dd83b32b2d95fc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1167.794813674066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f4e689bcb622f3455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:43:02.000Z'}}, {'blockNum': '0x4c05a5', 'uniqueId': '0xc4d57977d98dea18d7396d28adcc63ad21653bd4cfd32fa7a0be95a45e0c8d49:log:11', 'hash': '0xc4d57977d98dea18d7396d28adcc63ad21653bd4cfd32fa7a0be95a45e0c8d49', 'from': '0x10eb123404632ee42eb491b06982d0f200d748bf', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a2241af62c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:47:04.000Z'}}, {'blockNum': '0x4c05a5', 'uniqueId': '0x6cc971f8027c8dcabd86893e7f5c7c6a808927f61c2f2bf4a61bb6244fe9e587:log:69', 'hash': '0x6cc971f8027c8dcabd86893e7f5c7c6a808927f61c2f2bf4a61bb6244fe9e587', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 53.54779821007107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e71ffec37f958141', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:47:04.000Z'}}, {'blockNum': '0x4c05a5', 'uniqueId': '0x6cc971f8027c8dcabd86893e7f5c7c6a808927f61c2f2bf4a61bb6244fe9e587:log:71', 'hash': '0x6cc971f8027c8dcabd86893e7f5c7c6a808927f61c2f2bf4a61bb6244fe9e587', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 53.54779821007107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e71ffec37f958141', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:47:04.000Z'}}, {'blockNum': '0x4c05aa', 'uniqueId': '0x1f9b82a99887f6265c99de24e56c68d9a3e16d091894d3cb02c2eaa944f54a4c:log:32', 'hash': '0x1f9b82a99887f6265c99de24e56c68d9a3e16d091894d3cb02c2eaa944f54a4c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.57330715027035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1851348635be0e8c6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:48:37.000Z'}}, {'blockNum': '0x4c05aa', 'uniqueId': '0x1f9b82a99887f6265c99de24e56c68d9a3e16d091894d3cb02c2eaa944f54a4c:log:35', 'hash': '0x1f9b82a99887f6265c99de24e56c68d9a3e16d091894d3cb02c2eaa944f54a4c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 448.57330715027035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1851348635be0e8c6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:48:37.000Z'}}, {'blockNum': '0x4c05ad', 'uniqueId': '0xe787bd59be3f6b6378a3bf7e372dd2e5c4532b55c90a9587d3c1c759f708d2d0:log:21', 'hash': '0xe787bd59be3f6b6378a3bf7e372dd2e5c4532b55c90a9587d3c1c759f708d2d0', 'from': '0xe18fe5df4dc5aef12e40873b36b6763386d41c3e', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 5.81757539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x50bc2dfe8f012c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:49:18.000Z'}}, {'blockNum': '0x4c05b7', 'uniqueId': '0xaf13c6af4c8a425b3c371ed6dbf37ef583c89707e2c5ace212464ffb0c4540a7:log:47', 'hash': '0xaf13c6af4c8a425b3c371ed6dbf37ef583c89707e2c5ace212464ffb0c4540a7', 'from': '0x1c58225bc4313ba011af4cfc250fb7e62591222c', 'to': '0x4152978314478feae6262fa06d14dd8874e0cae2', 'value': 8.12649325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70c71a8e0bdc1000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:53:04.000Z'}}, {'blockNum': '0x4c05c2', 'uniqueId': '0x2d3afc84a84153d8c67c383c57e55cdd15790f0b9242d54cf5b60460d9b7fcc5:log:86', 'hash': '0x2d3afc84a84153d8c67c383c57e55cdd15790f0b9242d54cf5b60460d9b7fcc5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 172.8635407304831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x095ef6aa6c90b6a566', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:55:15.000Z'}}, {'blockNum': '0x4c05c2', 'uniqueId': '0x2d3afc84a84153d8c67c383c57e55cdd15790f0b9242d54cf5b60460d9b7fcc5:log:89', 'hash': '0x2d3afc84a84153d8c67c383c57e55cdd15790f0b9242d54cf5b60460d9b7fcc5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 172.8635407304831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x095ef6aa6c90b6a566', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:55:15.000Z'}}, {'blockNum': '0x4c05cc', 'uniqueId': '0x4fbe8aec0531ad8fb830e889ddf509874a7f739894a789cfd53f48f37bc0ca81:log:48', 'hash': '0x4fbe8aec0531ad8fb830e889ddf509874a7f739894a789cfd53f48f37bc0ca81', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.951725673351612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf7f33484336058e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:57:53.000Z'}}, {'blockNum': '0x4c05cc', 'uniqueId': '0x4fbe8aec0531ad8fb830e889ddf509874a7f739894a789cfd53f48f37bc0ca81:log:51', 'hash': '0x4fbe8aec0531ad8fb830e889ddf509874a7f739894a789cfd53f48f37bc0ca81', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 14.951725673351612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcf7f33484336058e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:57:53.000Z'}}, {'blockNum': '0x4c05d4', 'uniqueId': '0x332a0f19ab5b8d08db84959061f47ad85a22a5dfd5623b03dc20ac2818b26042:log:22', 'hash': '0x332a0f19ab5b8d08db84959061f47ad85a22a5dfd5623b03dc20ac2818b26042', 'from': '0x26f13ba2085ff20931d3048bb01ac08403f5c673', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 17.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xef8ef18ac0cb0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:59:54.000Z'}}, {'blockNum': '0x4c05d4', 'uniqueId': '0x8426228904abf77a553bf9cee5f560f12c4bda1bf3b84abc562f8da7a1dc2ac8:log:62', 'hash': '0x8426228904abf77a553bf9cee5f560f12c4bda1bf3b84abc562f8da7a1dc2ac8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 448.53943556868904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1850bc302f99eba02b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:59:54.000Z'}}, {'blockNum': '0x4c05d4', 'uniqueId': '0x8426228904abf77a553bf9cee5f560f12c4bda1bf3b84abc562f8da7a1dc2ac8:log:65', 'hash': '0x8426228904abf77a553bf9cee5f560f12c4bda1bf3b84abc562f8da7a1dc2ac8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 448.53943556868904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1850bc302f99eba02b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T13:59:54.000Z'}}, {'blockNum': '0x4c05d7', 'uniqueId': '0x0f4472d594d7e05d6d9a7bc1804b000c390c6c381256b6512f759f874debee3c:log:38', 'hash': '0x0f4472d594d7e05d6d9a7bc1804b000c390c6c381256b6512f759f874debee3c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 209.31023368864308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b58c354911192125b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:00:59.000Z'}}, {'blockNum': '0x4c05d7', 'uniqueId': '0x0f4472d594d7e05d6d9a7bc1804b000c390c6c381256b6512f759f874debee3c:log:41', 'hash': '0x0f4472d594d7e05d6d9a7bc1804b000c390c6c381256b6512f759f874debee3c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 209.31023368864308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b58c354911192125b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:00:59.000Z'}}, {'blockNum': '0x4c05ff', 'uniqueId': '0x79445177c3543ef5f691a53c50759d5ac204ccfac5be49ea92d97bb3be13ca15:log:52', 'hash': '0x79445177c3543ef5f691a53c50759d5ac204ccfac5be49ea92d97bb3be13ca15', 'from': '0x4152978314478feae6262fa06d14dd8874e0cae2', 'to': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'value': 8.12649325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70c71a8e0bdc1000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:10:34.000Z'}}, {'blockNum': '0x4c0605', 'uniqueId': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2:log:40', 'hash': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:11:59.000Z'}}, {'blockNum': '0x4c0605', 'uniqueId': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2:log:43', 'hash': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:11:59.000Z'}}, {'blockNum': '0x4c0605', 'uniqueId': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2:log:44', 'hash': '0x494b94cd41001a9039b94cb1ba9f805b59828de33218747394d74ade522d85a2', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:11:59.000Z'}}, {'blockNum': '0x4c0612', 'uniqueId': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b:log:50', 'hash': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b', 'from': '0xb9fa043c6b3e28541b0ad65d57e619cefa8b77d5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:00.000Z'}}, {'blockNum': '0x4c0612', 'uniqueId': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b:log:53', 'hash': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:00.000Z'}}, {'blockNum': '0x4c0612', 'uniqueId': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b:log:54', 'hash': '0x912b1617ced0f324ff17cb40308b8a17b6a756e70765d7d044cb3aec971a811b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:00.000Z'}}, {'blockNum': '0x4c0616', 'uniqueId': '0xa330dfcdaa1b173cbbfc6cf5d27e3ad24e0a53ac7655892035e485ce3733bf8a:log:7', 'hash': '0xa330dfcdaa1b173cbbfc6cf5d27e3ad24e0a53ac7655892035e485ce3733bf8a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 603.1167519674295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20b1ed22770203a54f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:34.000Z'}}, {'blockNum': '0x4c0616', 'uniqueId': '0xa330dfcdaa1b173cbbfc6cf5d27e3ad24e0a53ac7655892035e485ce3733bf8a:log:10', 'hash': '0xa330dfcdaa1b173cbbfc6cf5d27e3ad24e0a53ac7655892035e485ce3733bf8a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 603.1167519674295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20b1ed22770203a54f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:34.000Z'}}, {'blockNum': '0x4c0617', 'uniqueId': '0x45c522c9a40f96328042f240498f4142be9b4a46c6f259d8ea306dd2a776c2e6:log:34', 'hash': '0x45c522c9a40f96328042f240498f4142be9b4a46c6f259d8ea306dd2a776c2e6', 'from': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 54.40491169585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f30512f013a241c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:39.000Z'}}, {'blockNum': '0x4c0617', 'uniqueId': '0x45c522c9a40f96328042f240498f4142be9b4a46c6f259d8ea306dd2a776c2e6:log:36', 'hash': '0x45c522c9a40f96328042f240498f4142be9b4a46c6f259d8ea306dd2a776c2e6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 54.40491169585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f30512f013a241c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:15:39.000Z'}}, {'blockNum': '0x4c0626', 'uniqueId': '0x8c65f206f83246f480441cfc9851330c28659fa479ba67367677c1a446d337d0:log:46', 'hash': '0x8c65f206f83246f480441cfc9851330c28659fa479ba67367677c1a446d337d0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 418.6322558845351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16b1b08ab7de25938f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:19:37.000Z'}}, {'blockNum': '0x4c0626', 'uniqueId': '0x8c65f206f83246f480441cfc9851330c28659fa479ba67367677c1a446d337d0:log:49', 'hash': '0x8c65f206f83246f480441cfc9851330c28659fa479ba67367677c1a446d337d0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 418.6322558845351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16b1b08ab7de25938f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:19:37.000Z'}}, {'blockNum': '0x4c0633', 'uniqueId': '0x2155ee4e5cd175344889e41cde8d7d3772edac1f62b51f0d51fb30d6faf6dd13:log:34', 'hash': '0x2155ee4e5cd175344889e41cde8d7d3772edac1f62b51f0d51fb30d6faf6dd13', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 285.55507255846317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f7adf698e6a17fe8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:23:33.000Z'}}, {'blockNum': '0x4c0633', 'uniqueId': '0x2155ee4e5cd175344889e41cde8d7d3772edac1f62b51f0d51fb30d6faf6dd13:log:37', 'hash': '0x2155ee4e5cd175344889e41cde8d7d3772edac1f62b51f0d51fb30d6faf6dd13', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 285.55507255846317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f7adf698e6a17fe8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:23:33.000Z'}}, {'blockNum': '0x4c0636', 'uniqueId': '0x67f6959be12877d3301e8e4070faa17f2f284c6b49c58f7c7276e44e5f0a3a7b:log:145', 'hash': '0x67f6959be12877d3301e8e4070faa17f2f284c6b49c58f7c7276e44e5f0a3a7b', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 155.18931667975002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0869af354ac01a50ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:24:08.000Z'}}, {'blockNum': '0x4c0636', 'uniqueId': '0x67f6959be12877d3301e8e4070faa17f2f284c6b49c58f7c7276e44e5f0a3a7b:log:147', 'hash': '0x67f6959be12877d3301e8e4070faa17f2f284c6b49c58f7c7276e44e5f0a3a7b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 155.18931667975002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0869af354ac01a50ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:24:08.000Z'}}, {'blockNum': '0x4c063f', 'uniqueId': '0x1c14ba1d0d72c76beb2a3c6ab4c2f7e6c65607ee667ee9c3e085638355875553:log:49', 'hash': '0x1c14ba1d0d72c76beb2a3c6ab4c2f7e6c65607ee667ee9c3e085638355875553', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdba0c2e70d5b7bfef8e0bbb2898b26540da260da', 'value': 161.23699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08bd9ce5387d9c9c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:26:29.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9:log:39', 'hash': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9:log:42', 'hash': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9:log:43', 'hash': '0x72ff3152a3ece0a522e011762bb34fc7dbc5b87d808dee4126d10ac3e1e516f9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0xf9516580255aff48418cd595beab8ad19f3285456fb01addc3af4b49acfaff68:log:66', 'hash': '0xf9516580255aff48418cd595beab8ad19f3285456fb01addc3af4b49acfaff68', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 93.5280044320773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0511f6387f9520a631', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0651', 'uniqueId': '0xf9516580255aff48418cd595beab8ad19f3285456fb01addc3af4b49acfaff68:log:68', 'hash': '0xf9516580255aff48418cd595beab8ad19f3285456fb01addc3af4b49acfaff68', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 93.5280044320773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0511f6387f9520a631', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:12.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x9cc44275020427b74bd2056cd3f534f1da2104756095df025dfd2d422663f87d:log:29', 'hash': '0x9cc44275020427b74bd2056cd3f534f1da2104756095df025dfd2d422663f87d', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 366.48055001688124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13ddf0768b0dfbf62f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x9cc44275020427b74bd2056cd3f534f1da2104756095df025dfd2d422663f87d:log:31', 'hash': '0x9cc44275020427b74bd2056cd3f534f1da2104756095df025dfd2d422663f87d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 366.48055001688124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13ddf0768b0dfbf62f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x4b13b763bcb738c6206b5951eec9f4e61449e1d5c91510cdbb812b8d77fb13ba:log:50', 'hash': '0x4b13b763bcb738c6206b5951eec9f4e61449e1d5c91510cdbb812b8d77fb13ba', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 6.105002783499761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54b953af974634d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x4b13b763bcb738c6206b5951eec9f4e61449e1d5c91510cdbb812b8d77fb13ba:log:52', 'hash': '0x4b13b763bcb738c6206b5951eec9f4e61449e1d5c91510cdbb812b8d77fb13ba', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 6.105002783499761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54b953af974634d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x5c8f8e4c4f5ed816cbea2803eaf3b74026af183c41d50f73a46a8787b47f8538:log:65', 'hash': '0x5c8f8e4c4f5ed816cbea2803eaf3b74026af183c41d50f73a46a8787b47f8538', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.487008735416956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e450eabf29a34e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0653', 'uniqueId': '0x5c8f8e4c4f5ed816cbea2803eaf3b74026af183c41d50f73a46a8787b47f8538:log:68', 'hash': '0x5c8f8e4c4f5ed816cbea2803eaf3b74026af183c41d50f73a46a8787b47f8538', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 4.487008735416956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e450eabf29a34e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:31:47.000Z'}}, {'blockNum': '0x4c0659', 'uniqueId': '0xe9d86f875a98955060f4a136dabefdf5c0419566dff98dd1515ed8b5744c947a:log:52', 'hash': '0xe9d86f875a98955060f4a136dabefdf5c0419566dff98dd1515ed8b5744c947a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 598.2464366121933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206e564c740d05daae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:32:37.000Z'}}, {'blockNum': '0x4c0659', 'uniqueId': '0xe9d86f875a98955060f4a136dabefdf5c0419566dff98dd1515ed8b5744c947a:log:55', 'hash': '0xe9d86f875a98955060f4a136dabefdf5c0419566dff98dd1515ed8b5744c947a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'value': 598.2464366121933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x206e564c740d05daae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:32:37.000Z'}}, {'blockNum': '0x4c0661', 'uniqueId': '0xd5709087b1220fa9fc2233e85ffa6884680edeca35dcb2df69874bd7facefad9:log:31', 'hash': '0xd5709087b1220fa9fc2233e85ffa6884680edeca35dcb2df69874bd7facefad9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 6.402196768264458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58d92c0a5a8e9032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:33:58.000Z'}}, {'blockNum': '0x4c0661', 'uniqueId': '0xd5709087b1220fa9fc2233e85ffa6884680edeca35dcb2df69874bd7facefad9:log:34', 'hash': '0xd5709087b1220fa9fc2233e85ffa6884680edeca35dcb2df69874bd7facefad9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 6.402196768264458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58d92c0a5a8e9032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:33:58.000Z'}}, {'blockNum': '0x4c066c', 'uniqueId': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095:log:77', 'hash': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:36:49.000Z'}}, {'blockNum': '0x4c066c', 'uniqueId': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095:log:80', 'hash': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:36:49.000Z'}}, {'blockNum': '0x4c066c', 'uniqueId': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095:log:81', 'hash': '0xdcaa93c6454a5cf60a5a4e64395564189fee9c085f9890d0287d04b1124e0095', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:36:49.000Z'}}, {'blockNum': '0x4c066e', 'uniqueId': '0x59d8daddd3d6f2d1c8fa654732ebe69f35935deac24f0d9efedf3e3f7eac4da4:log:62', 'hash': '0x59d8daddd3d6f2d1c8fa654732ebe69f35935deac24f0d9efedf3e3f7eac4da4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:37:15.000Z'}}, {'blockNum': '0x4c0675', 'uniqueId': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b:log:11', 'hash': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:38:33.000Z'}}, {'blockNum': '0x4c0675', 'uniqueId': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b:log:14', 'hash': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:38:33.000Z'}}, {'blockNum': '0x4c0675', 'uniqueId': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b:log:15', 'hash': '0x5e405dff7c3b1eda6dc7605f443101fcc81c59be50341e1200d98961f2e61e5b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:38:33.000Z'}}, {'blockNum': '0x4c067e', 'uniqueId': '0x5925cee77de47dcbe19b1e6ba87eb79ce73332683a507a1c5ec02f64dac33539:log:27', 'hash': '0x5925cee77de47dcbe19b1e6ba87eb79ce73332683a507a1c5ec02f64dac33539', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcd56ebb2b2e0eb157bea6d07a147095b853beab7', 'value': 6.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5559306a78a70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:41:01.000Z'}}, {'blockNum': '0x4c0680', 'uniqueId': '0xc8df54512f158758d0670b3036105bcec2bdb38341343f82f949cfd26639657a:log:23', 'hash': '0xc8df54512f158758d0670b3036105bcec2bdb38341343f82f949cfd26639657a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 44.109541345085816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0264249226a73ef99f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:41:15.000Z'}}, {'blockNum': '0x4c0680', 'uniqueId': '0xc8df54512f158758d0670b3036105bcec2bdb38341343f82f949cfd26639657a:log:26', 'hash': '0xc8df54512f158758d0670b3036105bcec2bdb38341343f82f949cfd26639657a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 44.109541345085816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0264249226a73ef99f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:41:15.000Z'}}, {'blockNum': '0x4c0682', 'uniqueId': '0x09fea0abff9777d3362458aea9474aee7b9cdbb48e7a0ffdb599bb925ba5ae2c:log:4', 'hash': '0x09fea0abff9777d3362458aea9474aee7b9cdbb48e7a0ffdb599bb925ba5ae2c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'value': 336.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x123c7ce1ad29680000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:42:28.000Z'}}, {'blockNum': '0x4c0684', 'uniqueId': '0xc6ba996d15e3749a62d0cc00b7534f8ade40024a3a6600a99a1027c0573a803f:log:3', 'hash': '0xc6ba996d15e3749a62d0cc00b7534f8ade40024a3a6600a99a1027c0573a803f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7c84ae9054329905ad9f79a2075d05f13e5cf48c', 'value': 199.65608838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad2c8ea8eede55800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:43:00.000Z'}}, {'blockNum': '0x4c0684', 'uniqueId': '0xeda90f08465c7320528f912d2d15be949a4821ed49d50b3e58edf0f0e3fa9462:log:33', 'hash': '0xeda90f08465c7320528f912d2d15be949a4821ed49d50b3e58edf0f0e3fa9462', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 595.8898259453417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x204da1ef89a570484a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:43:00.000Z'}}, {'blockNum': '0x4c0684', 'uniqueId': '0xeda90f08465c7320528f912d2d15be949a4821ed49d50b3e58edf0f0e3fa9462:log:35', 'hash': '0xeda90f08465c7320528f912d2d15be949a4821ed49d50b3e58edf0f0e3fa9462', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 595.8898259453417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x204da1ef89a570484a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:43:00.000Z'}}, {'blockNum': '0x4c068a', 'uniqueId': '0x0dc499836b42384453182d3c1812214076d576bc8e3f665a221477efb6e5fd89:log:0', 'hash': '0x0dc499836b42384453182d3c1812214076d576bc8e3f665a221477efb6e5fd89', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:44:02.000Z'}}, {'blockNum': '0x4c068b', 'uniqueId': '0x6f78c95969b73e05b7c335f8accf71bc2edccc3795a458dc9ced28675f88ac22:log:33', 'hash': '0x6f78c95969b73e05b7c335f8accf71bc2edccc3795a458dc9ced28675f88ac22', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 22.309115981318627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013599e6c9477c9f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:44:07.000Z'}}, {'blockNum': '0x4c068b', 'uniqueId': '0x6f78c95969b73e05b7c335f8accf71bc2edccc3795a458dc9ced28675f88ac22:log:36', 'hash': '0x6f78c95969b73e05b7c335f8accf71bc2edccc3795a458dc9ced28675f88ac22', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'value': 22.309115981318627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013599e6c9477c9f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:44:07.000Z'}}, {'blockNum': '0x4c069b', 'uniqueId': '0x3511e1531d8a1c0b851f8202b0aac3f2eca34f85f722a9a53ee0eae00d3b643f:log:8', 'hash': '0x3511e1531d8a1c0b851f8202b0aac3f2eca34f85f722a9a53ee0eae00d3b643f', 'from': '0x755f00f41d7cacb86530ef4c636e35ef7c28f6b5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 336.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x123c7ce1ad29680000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:47:21.000Z'}}, {'blockNum': '0x4c06a3', 'uniqueId': '0x4f5a83b27b03839b80caef4acb7566f2c74b8f2f10549ac148f5caff8f4658a9:log:38', 'hash': '0x4f5a83b27b03839b80caef4acb7566f2c74b8f2f10549ac148f5caff8f4658a9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 434.4919443124745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x178dc97950b1d90d36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:49:12.000Z'}}, {'blockNum': '0x4c06a3', 'uniqueId': '0x4f5a83b27b03839b80caef4acb7566f2c74b8f2f10549ac148f5caff8f4658a9:log:41', 'hash': '0x4f5a83b27b03839b80caef4acb7566f2c74b8f2f10549ac148f5caff8f4658a9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'value': 434.4919443124745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x178dc97950b1d90d36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:49:12.000Z'}}, {'blockNum': '0x4c06a4', 'uniqueId': '0x96e0ba7a439ccd3cb35806b43df1d412bb834370120ed5d68ee2fa7e487d56fd:log:0', 'hash': '0x96e0ba7a439ccd3cb35806b43df1d412bb834370120ed5d68ee2fa7e487d56fd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 14998.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032d109cd71232c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:49:21.000Z'}}, {'blockNum': '0x4c06a9', 'uniqueId': '0xc051528365cd83d3402c25f3fd3d28bf1ac5334f90d950d1d6e6217d335c7f5c:log:42', 'hash': '0xc051528365cd83d3402c25f3fd3d28bf1ac5334f90d950d1d6e6217d335c7f5c', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 193.60914123235756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a7eddd82a671b72a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:50:31.000Z'}}, {'blockNum': '0x4c06a9', 'uniqueId': '0xc051528365cd83d3402c25f3fd3d28bf1ac5334f90d950d1d6e6217d335c7f5c:log:44', 'hash': '0xc051528365cd83d3402c25f3fd3d28bf1ac5334f90d950d1d6e6217d335c7f5c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 193.60914123235756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a7eddd82a671b72a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:50:31.000Z'}}, {'blockNum': '0x4c06aa', 'uniqueId': '0x6897a73bd535cf1d29fb379b0b5f85f1a0fcc29a13b54bbba5bd47c0ddbf00d0:log:49', 'hash': '0x6897a73bd535cf1d29fb379b0b5f85f1a0fcc29a13b54bbba5bd47c0ddbf00d0', 'from': '0xaf6a5b0998ff41355f3b4fe1ab96d89bd2c487d3', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 763.0581200497757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x295d8f055480406160', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:50:45.000Z'}}, {'blockNum': '0x4c06aa', 'uniqueId': '0x6897a73bd535cf1d29fb379b0b5f85f1a0fcc29a13b54bbba5bd47c0ddbf00d0:log:51', 'hash': '0x6897a73bd535cf1d29fb379b0b5f85f1a0fcc29a13b54bbba5bd47c0ddbf00d0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 763.0581200497757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x295d8f055480406160', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:50:45.000Z'}}, {'blockNum': '0x4c06ad', 'uniqueId': '0x3eb7eca5ad4ba46077639816db1eb7642d4575e48c0b41601557dd74711b126d:log:31', 'hash': '0x3eb7eca5ad4ba46077639816db1eb7642d4575e48c0b41601557dd74711b126d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 16.62053435344223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a7ffef6219cd51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:05.000Z'}}, {'blockNum': '0x4c06ad', 'uniqueId': '0x3eb7eca5ad4ba46077639816db1eb7642d4575e48c0b41601557dd74711b126d:log:34', 'hash': '0x3eb7eca5ad4ba46077639816db1eb7642d4575e48c0b41601557dd74711b126d', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 16.62053435344223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a7ffef6219cd51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:05.000Z'}}, {'blockNum': '0x4c06b1', 'uniqueId': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91:log:23', 'hash': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x677cb269af3cb40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:47.000Z'}}, {'blockNum': '0x4c06b1', 'uniqueId': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91:log:26', 'hash': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x677cb269af3cb40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:47.000Z'}}, {'blockNum': '0x4c06b1', 'uniqueId': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91:log:27', 'hash': '0xbe7dd13c89e11d9e830707c9ad7a263c11bf500ee52e4bc7f5e6c0d9e76d1f91', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x677cb269af3cb40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:51:47.000Z'}}, {'blockNum': '0x4c06b3', 'uniqueId': '0xc02055d4df28e7a1fba333238b3a3ffaf999a1f69fc50afa4179c7645f8906ed:log:26', 'hash': '0xc02055d4df28e7a1fba333238b3a3ffaf999a1f69fc50afa4179c7645f8906ed', 'from': '0x31611127cfb6652786a75d85743113f069c579a1', 'to': '0x14bf0b0fb2928192e788ec16bc061765efd460b8', 'value': 1287.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45caf539cc2ca90000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:16.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788:log:86', 'hash': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788', 'from': '0xb9fa043c6b3e28541b0ad65d57e619cefa8b77d5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788:log:89', 'hash': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788:log:90', 'hash': '0x6b979e6ad45e7ac95f1dfcaad1dfa6435a930b5b7f37b77af222a7bbba595788', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0xee050236e71fe5dc192c7ee5f9c781a077b7a8279ef10289d82444109d7e9f15:log:104', 'hash': '0xee050236e71fe5dc192c7ee5f9c781a077b7a8279ef10289d82444109d7e9f15', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 14.880807187237842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xce833f4b7e64299c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06b4', 'uniqueId': '0xee050236e71fe5dc192c7ee5f9c781a077b7a8279ef10289d82444109d7e9f15:log:107', 'hash': '0xee050236e71fe5dc192c7ee5f9c781a077b7a8279ef10289d82444109d7e9f15', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 14.880807187237842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xce833f4b7e64299c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:52:39.000Z'}}, {'blockNum': '0x4c06c5', 'uniqueId': '0x024f75183de60705dd2359a84375a746d767275f27339cba346b1baa6b8290b5:log:24', 'hash': '0x024f75183de60705dd2359a84375a746d767275f27339cba346b1baa6b8290b5', 'from': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'to': '0xca317ce542d87d3c1d0a739a2fede22dce407874', 'value': 164.9534074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08f1303a11d74a9000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T14:55:40.000Z'}}, {'blockNum': '0x4c06ec', 'uniqueId': '0xa5f955ef969a356aed38cb8e0af7d2584325f533672d2dbd126ab076241b6f64:log:20', 'hash': '0xa5f955ef969a356aed38cb8e0af7d2584325f533672d2dbd126ab076241b6f64', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 395.7015961395904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x157376792c0b5dcb3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:04:13.000Z'}}, {'blockNum': '0x4c06ec', 'uniqueId': '0xa5f955ef969a356aed38cb8e0af7d2584325f533672d2dbd126ab076241b6f64:log:22', 'hash': '0xa5f955ef969a356aed38cb8e0af7d2584325f533672d2dbd126ab076241b6f64', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 395.7015961395904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x157376792c0b5dcb3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:04:13.000Z'}}, {'blockNum': '0x4c06ef', 'uniqueId': '0xeb9e5210d44182e815f2e0778bf719ae3b34a6cf80751314c39ac8b4dffbf303:log:14', 'hash': '0xeb9e5210d44182e815f2e0778bf719ae3b34a6cf80751314c39ac8b4dffbf303', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xd6e336b2e0f8d7c1e3607faef19f884ffc5f285d', 'value': 70.86073152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03d763e3e195ed0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:04:42.000Z'}}, {'blockNum': '0x4c0706', 'uniqueId': '0xe614995402d679e2b517eaaac203c169a9945272db0f314da8d79b06eaa76fb0:log:25', 'hash': '0xe614995402d679e2b517eaaac203c169a9945272db0f314da8d79b06eaa76fb0', 'from': '0xff8d1014da6382f4c07461fbd5f3bed733b229f1', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 34.72577144988823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e1eab9260dfd3a2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:10:37.000Z'}}, {'blockNum': '0x4c0706', 'uniqueId': '0xe614995402d679e2b517eaaac203c169a9945272db0f314da8d79b06eaa76fb0:log:28', 'hash': '0xe614995402d679e2b517eaaac203c169a9945272db0f314da8d79b06eaa76fb0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 34.72577144988823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e1eab9260dfd3a2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:10:37.000Z'}}, {'blockNum': '0x4c070c', 'uniqueId': '0xea865255e2d745d1fdb9aa38204199d68a3c9bc133e3c49c87ec2b7a211f99ee:log:22', 'hash': '0xea865255e2d745d1fdb9aa38204199d68a3c9bc133e3c49c87ec2b7a211f99ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1497.6338268295754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x512fd82eb289b88669', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:12:36.000Z'}}, {'blockNum': '0x4c070c', 'uniqueId': '0xea865255e2d745d1fdb9aa38204199d68a3c9bc133e3c49c87ec2b7a211f99ee:log:24', 'hash': '0xea865255e2d745d1fdb9aa38204199d68a3c9bc133e3c49c87ec2b7a211f99ee', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1497.6338268295754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x512fd82eb289b88669', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:12:36.000Z'}}, {'blockNum': '0x4c071e', 'uniqueId': '0xc402553afc3525a348d446b339a07f135e764830d30ebe6a947c7f4e930141f1:log:56', 'hash': '0xc402553afc3525a348d446b339a07f135e764830d30ebe6a947c7f4e930141f1', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 128.3356791170961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f503ec349707ecb1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:15:36.000Z'}}, {'blockNum': '0x4c071e', 'uniqueId': '0xc402553afc3525a348d446b339a07f135e764830d30ebe6a947c7f4e930141f1:log:59', 'hash': '0xc402553afc3525a348d446b339a07f135e764830d30ebe6a947c7f4e930141f1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 128.3356791170961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f503ec349707ecb1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:15:36.000Z'}}, {'blockNum': '0x4c071e', 'uniqueId': '0xab5b07c2330207cf2dbe4a9eed7171d1e7cc50aebd70fb624e21cbea8999b010:log:76', 'hash': '0xab5b07c2330207cf2dbe4a9eed7171d1e7cc50aebd70fb624e21cbea8999b010', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 199.32643518786958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ace35c0ba05e39ea6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:15:36.000Z'}}, {'blockNum': '0x4c071e', 'uniqueId': '0xab5b07c2330207cf2dbe4a9eed7171d1e7cc50aebd70fb624e21cbea8999b010:log:79', 'hash': '0xab5b07c2330207cf2dbe4a9eed7171d1e7cc50aebd70fb624e21cbea8999b010', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 199.32643518786958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ace35c0ba05e39ea6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:15:36.000Z'}}, {'blockNum': '0x4c072e', 'uniqueId': '0x7493075f925174e8662ea312bb3cbd47b4a23973040d02279b314d05ba09f2ea:log:43', 'hash': '0x7493075f925174e8662ea312bb3cbd47b4a23973040d02279b314d05ba09f2ea', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 191.4962798692699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a618b73f3489e524b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:18:45.000Z'}}, {'blockNum': '0x4c072e', 'uniqueId': '0x7493075f925174e8662ea312bb3cbd47b4a23973040d02279b314d05ba09f2ea:log:46', 'hash': '0x7493075f925174e8662ea312bb3cbd47b4a23973040d02279b314d05ba09f2ea', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'value': 191.4962798692699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a618b73f3489e524b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:18:45.000Z'}}, {'blockNum': '0x4c0733', 'uniqueId': '0xdc42363ac1eff397610a229423ed7c45b557f75492f01d590d9a26d353b2a694:log:18', 'hash': '0xdc42363ac1eff397610a229423ed7c45b557f75492f01d590d9a26d353b2a694', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 467.34987709387394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1955c84d1752d32c68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:19:26.000Z'}}, {'blockNum': '0x4c0733', 'uniqueId': '0xdc42363ac1eff397610a229423ed7c45b557f75492f01d590d9a26d353b2a694:log:20', 'hash': '0xdc42363ac1eff397610a229423ed7c45b557f75492f01d590d9a26d353b2a694', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 467.34987709387394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1955c84d1752d32c68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:19:26.000Z'}}, {'blockNum': '0x4c0740', 'uniqueId': '0x5e780327aa9c9c8592cbbc81df867e674742da8e0270d5139c145b12c55cadbe:log:10', 'hash': '0x5e780327aa9c9c8592cbbc81df867e674742da8e0270d5139c145b12c55cadbe', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2246.0763104975363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79c292082cd99eb049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:22:04.000Z'}}, {'blockNum': '0x4c0740', 'uniqueId': '0x5e780327aa9c9c8592cbbc81df867e674742da8e0270d5139c145b12c55cadbe:log:12', 'hash': '0x5e780327aa9c9c8592cbbc81df867e674742da8e0270d5139c145b12c55cadbe', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2246.0763104975363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79c292082cd99eb049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:22:04.000Z'}}, {'blockNum': '0x4c0741', 'uniqueId': '0x8fbca1369e1ef3010918dc14600adbaf628a57ad66be7ba1a252e41a1b5dfaec:log:44', 'hash': '0x8fbca1369e1ef3010918dc14600adbaf628a57ad66be7ba1a252e41a1b5dfaec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 449.14342451862586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18591dfcef932b0bed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:22:19.000Z'}}, {'blockNum': '0x4c0741', 'uniqueId': '0x8fbca1369e1ef3010918dc14600adbaf628a57ad66be7ba1a252e41a1b5dfaec:log:47', 'hash': '0x8fbca1369e1ef3010918dc14600adbaf628a57ad66be7ba1a252e41a1b5dfaec', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xff79b6660b02b4625e4faef219f297cb58c878c6', 'value': 449.14342451862586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18591dfcef932b0bed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:22:19.000Z'}}, {'blockNum': '0x4c0743', 'uniqueId': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5:log:70', 'hash': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5', 'from': '0xb9fa043c6b3e28541b0ad65d57e619cefa8b77d5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 33.366681875782305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cf0e4461bb77fc27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:23:19.000Z'}}, {'blockNum': '0x4c0743', 'uniqueId': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5:log:73', 'hash': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 33.366681875782305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cf0e4461bb77fc27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:23:19.000Z'}}, {'blockNum': '0x4c0743', 'uniqueId': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5:log:74', 'hash': '0xd4cde12038c49ac4e594727fa3223ea21120afb41f8172a3299c9ad4cf7e26e5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 33.366681875782305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cf0e4461bb77fc27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:23:19.000Z'}}, {'blockNum': '0x4c0744', 'uniqueId': '0x470771f79b5e6373d37dbd0080db470e4e9a477498a8d052216d08ab0f82aa5f:log:22', 'hash': '0x470771f79b5e6373d37dbd0080db470e4e9a477498a8d052216d08ab0f82aa5f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbd3e7d81c7059e1eef3c9ae0870dfa3d1151af8', 'value': 4063.86301576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdc4d6db9908e792000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:24:08.000Z'}}, {'blockNum': '0x4c0747', 'uniqueId': '0xf3bff718963fac67ed464b5df40efb892a3f8e435bc0c5b256bf325687fd75b3:log:62', 'hash': '0xf3bff718963fac67ed464b5df40efb892a3f8e435bc0c5b256bf325687fd75b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 748.5221403860952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d4d8d74447db59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:25:31.000Z'}}, {'blockNum': '0x4c0747', 'uniqueId': '0xf3bff718963fac67ed464b5df40efb892a3f8e435bc0c5b256bf325687fd75b3:log:65', 'hash': '0xf3bff718963fac67ed464b5df40efb892a3f8e435bc0c5b256bf325687fd75b3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 748.5221403860952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d4d8d74447db59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:25:31.000Z'}}, {'blockNum': '0x4c0748', 'uniqueId': '0x62e79eed6a3d2e27601ecc8b45cf26dd554b96ec3f47da9b0cdba5fb60ba32fe:log:1', 'hash': '0x62e79eed6a3d2e27601ecc8b45cf26dd554b96ec3f47da9b0cdba5fb60ba32fe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbfe62d74800b2d7b37dc8b7243c523f61026ad30', 'value': 6.15030585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x555a4695b941c400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:25:39.000Z'}}, {'blockNum': '0x4c0759', 'uniqueId': '0x6edf369a32dd6667b82b9c69d055ca9f6ac8ae3cfb6ef7bc1276c6f10c6f4ee9:log:32', 'hash': '0x6edf369a32dd6667b82b9c69d055ca9f6ac8ae3cfb6ef7bc1276c6f10c6f4ee9', 'from': '0xb100a7f4eef382d586fcb744d579347bb3b52477', 'to': '0x7a39fc7760cec74274019d11baff4ef47d4b0e7a', 'value': 49.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5c0282441c70000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:28:01.000Z'}}, {'blockNum': '0x4c0762', 'uniqueId': '0x3d244eb15fa472ec7719501dcb2cf7e9a0d28f9e8eee64c4f22d98b287518050:log:3', 'hash': '0x3d244eb15fa472ec7719501dcb2cf7e9a0d28f9e8eee64c4f22d98b287518050', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ba26287872802340d179761122f53bc04dcb6b7', 'value': 24.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01529e36b927880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:30:07.000Z'}}, {'blockNum': '0x4c076f', 'uniqueId': '0x85f8c15d2d9897acb6d9610ba14b98d0ca13750db93f2d88e283d5704cddfe41:log:26', 'hash': '0x85f8c15d2d9897acb6d9610ba14b98d0ca13750db93f2d88e283d5704cddfe41', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 149.69644925020384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081d749f779fb094a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:33:08.000Z'}}, {'blockNum': '0x4c076f', 'uniqueId': '0x85f8c15d2d9897acb6d9610ba14b98d0ca13750db93f2d88e283d5704cddfe41:log:29', 'hash': '0x85f8c15d2d9897acb6d9610ba14b98d0ca13750db93f2d88e283d5704cddfe41', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xa3a89db39f4cbfb8753259456332ce8373ff5bad', 'value': 149.69644925020384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081d749f779fb094a4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:33:08.000Z'}}, {'blockNum': '0x4c0778', 'uniqueId': '0xef6841ad9d6239c709dbc6c100db9fc4c9f71dc934189bddf2ff1cbee75c1ef4:log:4', 'hash': '0xef6841ad9d6239c709dbc6c100db9fc4c9f71dc934189bddf2ff1cbee75c1ef4', 'from': '0xdba0c2e70d5b7bfef8e0bbb2898b26540da260da', 'to': '0x512e2d8e36a62538ca8af3653253c44ec4899c73', 'value': 161.23699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08bd9ce5387d9c9c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:35:46.000Z'}}, {'blockNum': '0x4c0778', 'uniqueId': '0xb0bca29cf433a3214416fb6cf7907a0cdf7a05831f5b865ad3cd6074fe3d8da2:log:10', 'hash': '0xb0bca29cf433a3214416fb6cf7907a0cdf7a05831f5b865ad3cd6074fe3d8da2', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0x5790254ee1ca100ce43e744dc44067eb81d3c07a', 'value': 3.29758286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2dc35e23cbb77800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:35:46.000Z'}}, {'blockNum': '0x4c077f', 'uniqueId': '0x8e09240f1a5612a5012948449ccf2acfeb2b19c41229c8e4a50a361c06094e03:log:22', 'hash': '0x8e09240f1a5612a5012948449ccf2acfeb2b19c41229c8e4a50a361c06094e03', 'from': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 748.5221403860952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d4d8d74447db65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:36:18.000Z'}}, {'blockNum': '0x4c077f', 'uniqueId': '0x8e09240f1a5612a5012948449ccf2acfeb2b19c41229c8e4a50a361c06094e03:log:24', 'hash': '0x8e09240f1a5612a5012948449ccf2acfeb2b19c41229c8e4a50a361c06094e03', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.5221403860952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d4d8d74447db65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:36:18.000Z'}}, {'blockNum': '0x4c078a', 'uniqueId': '0x74a311edcfae355d5d80dcd0c69ec375cc3f4e0b860a5ac01b381b888282a372:log:41', 'hash': '0x74a311edcfae355d5d80dcd0c69ec375cc3f4e0b860a5ac01b381b888282a372', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 8.885121176621405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b4e4aa27ed1d505', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:38:59.000Z'}}, {'blockNum': '0x4c078a', 'uniqueId': '0x74a311edcfae355d5d80dcd0c69ec375cc3f4e0b860a5ac01b381b888282a372:log:44', 'hash': '0x74a311edcfae355d5d80dcd0c69ec375cc3f4e0b860a5ac01b381b888282a372', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 8.885121176621405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b4e4aa27ed1d505', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:38:59.000Z'}}, {'blockNum': '0x4c078d', 'uniqueId': '0xf842a84459295676d3a6e22a56922325beb4640824e059b2bf5ce65fc7994e54:log:57', 'hash': '0xf842a84459295676d3a6e22a56922325beb4640824e059b2bf5ce65fc7994e54', 'from': '0xcbd3e7d81c7059e1eef3c9ae0870dfa3d1151af8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4063.86301576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdc4d6db9908e792000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:09.000Z'}}, {'blockNum': '0x4c078e', 'uniqueId': '0xe3944c8c5ce0801592612c5b49df236e8f8029a9fc2478c269267a86b4740901:log:39', 'hash': '0xe3944c8c5ce0801592612c5b49df236e8f8029a9fc2478c269267a86b4740901', 'from': '0xd18cc695a6af30fcef7cb07bbf10bd0d274894d4', 'to': '0xe4c0ce5815f487ea58373104b510ca0d064feb49', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:29.000Z'}}, {'blockNum': '0x4c078f', 'uniqueId': '0x7d100e646b3c9ca44f5d671a92eaa5b0e403563dfcf21e6ecc924eae9a441b0f:log:79', 'hash': '0x7d100e646b3c9ca44f5d671a92eaa5b0e403563dfcf21e6ecc924eae9a441b0f', 'from': '0xfcce45b7768df12df0ca94d2765983540d366b3f', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 15.352460478350867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50ee576d853bc4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:38.000Z'}}, {'blockNum': '0x4c078f', 'uniqueId': '0x7d100e646b3c9ca44f5d671a92eaa5b0e403563dfcf21e6ecc924eae9a441b0f:log:81', 'hash': '0x7d100e646b3c9ca44f5d671a92eaa5b0e403563dfcf21e6ecc924eae9a441b0f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15.352460478350867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd50ee576d853bc4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:38.000Z'}}, {'blockNum': '0x4c0790', 'uniqueId': '0x37728703bbdf4673dcfc2c5a4c08d507006f4f37ad60bc7563388670740624b7:log:93', 'hash': '0x37728703bbdf4673dcfc2c5a4c08d507006f4f37ad60bc7563388670740624b7', 'from': '0x9a41b63664fd1bdf52024e8a3998d7c6a3839d62', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 12.514165050773487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadab3ecf8ff63beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:59.000Z'}}, {'blockNum': '0x4c0790', 'uniqueId': '0x37728703bbdf4673dcfc2c5a4c08d507006f4f37ad60bc7563388670740624b7:log:96', 'hash': '0x37728703bbdf4673dcfc2c5a4c08d507006f4f37ad60bc7563388670740624b7', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xb018af916ed0116404537d1238b18988d652733a', 'value': 12.514165050773487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xadab3ecf8ff63beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:40:59.000Z'}}, {'blockNum': '0x4c0792', 'uniqueId': '0x614f0e23b4b9c28629bd247b2515a20528467e61000837ca516607ae2b69a0a9:log:21', 'hash': '0x614f0e23b4b9c28629bd247b2515a20528467e61000837ca516607ae2b69a0a9', 'from': '0x83216cc3157d766c3ff4dd1886cb12cda1a3582d', 'to': '0xfaa13bbcbf3bd6a8d0ee376362dab81662a3031e', 'value': 10.01628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8b00f9976ad98000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:41:38.000Z'}}, {'blockNum': '0x4c0798', 'uniqueId': '0xdd72d11dfa471a53ef5ac07efb38cbbc377dfe936b6f8feba4b027209b0a6447:log:1', 'hash': '0xdd72d11dfa471a53ef5ac07efb38cbbc377dfe936b6f8feba4b027209b0a6447', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:43:14.000Z'}}, {'blockNum': '0x4c07a0', 'uniqueId': '0x87de9283c482e2e226a3dcade7faf641723d3892b261d982e6fb14639c231df3:log:9', 'hash': '0x87de9283c482e2e226a3dcade7faf641723d3892b261d982e6fb14639c231df3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 166.7437140155077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x090a08ac7377a8918f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:45:15.000Z'}}, {'blockNum': '0x4c07a0', 'uniqueId': '0x87de9283c482e2e226a3dcade7faf641723d3892b261d982e6fb14639c231df3:log:12', 'hash': '0x87de9283c482e2e226a3dcade7faf641723d3892b261d982e6fb14639c231df3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 166.7437140155077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x090a08ac7377a8918f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:45:15.000Z'}}, {'blockNum': '0x4c07a2', 'uniqueId': '0x02e2130fd8d8d07f3b98814e69e7a8dd4ef437d399de5f89a48268200aaff7f4:log:59', 'hash': '0x02e2130fd8d8d07f3b98814e69e7a8dd4ef437d399de5f89a48268200aaff7f4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.2556142432148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1449d70a435270c4b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:46:24.000Z'}}, {'blockNum': '0x4c07a2', 'uniqueId': '0x02e2130fd8d8d07f3b98814e69e7a8dd4ef437d399de5f89a48268200aaff7f4:log:62', 'hash': '0x02e2130fd8d8d07f3b98814e69e7a8dd4ef437d399de5f89a48268200aaff7f4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 374.2556142432148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1449d70a435270c4b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:46:24.000Z'}}, {'blockNum': '0x4c07ac', 'uniqueId': '0x6d7d3e0e0574bee3c438c8dc4091e969c1fed25b2613da01977a47a498742e33:log:43', 'hash': '0x6d7d3e0e0574bee3c438c8dc4091e969c1fed25b2613da01977a47a498742e33', 'from': '0x0b1bb711524f9d43515b5424c029f2e3beed1ffc', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2.7989899374474825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d80284b7733451', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:49:35.000Z'}}, {'blockNum': '0x4c07ac', 'uniqueId': '0x6d7d3e0e0574bee3c438c8dc4091e969c1fed25b2613da01977a47a498742e33:log:46', 'hash': '0x6d7d3e0e0574bee3c438c8dc4091e969c1fed25b2613da01977a47a498742e33', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x58b249b613ce917b6ccc2f66787856ef39f4f0b6', 'value': 2.7989899374474825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d80284b7733451', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:49:35.000Z'}}, {'blockNum': '0x4c07ad', 'uniqueId': '0x09d704d118a3ec04762a62e7c2c1d89a94dff56647ad67d962777db38f5c0fa5:log:16', 'hash': '0x09d704d118a3ec04762a62e7c2c1d89a94dff56647ad67d962777db38f5c0fa5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2156.859751258028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x74ec71243c8826b056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:49:53.000Z'}}, {'blockNum': '0x4c07ad', 'uniqueId': '0x09d704d118a3ec04762a62e7c2c1d89a94dff56647ad67d962777db38f5c0fa5:log:18', 'hash': '0x09d704d118a3ec04762a62e7c2c1d89a94dff56647ad67d962777db38f5c0fa5', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'value': 2156.859751258028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x74ec71243c8826b056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:49:53.000Z'}}, {'blockNum': '0x4c07b1', 'uniqueId': '0x3c68017a033ef798f4e6f642d1b2bd1e986143d2ea8e28259898920a5a7b9da2:log:20', 'hash': '0x3c68017a033ef798f4e6f642d1b2bd1e986143d2ea8e28259898920a5a7b9da2', 'from': '0x00c4a8e1a98cc9844f46ca47127e43b60ed5d1e6', 'to': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'value': 2156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x74e082b105be300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:50:22.000Z'}}, {'blockNum': '0x4c07b6', 'uniqueId': '0x4ab09481f1b344ce3de341bf65e4468d61db06f2c355670140154272998307a3:log:57', 'hash': '0x4ab09481f1b344ce3de341bf65e4468d61db06f2c355670140154272998307a3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 2992.6806831634226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa23bc9996f7123a0e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:51:49.000Z'}}, {'blockNum': '0x4c07b6', 'uniqueId': '0x4ab09481f1b344ce3de341bf65e4468d61db06f2c355670140154272998307a3:log:59', 'hash': '0x4ab09481f1b344ce3de341bf65e4468d61db06f2c355670140154272998307a3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 2992.6806831634226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa23bc9996f7123a0e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:51:49.000Z'}}, {'blockNum': '0x4c07b9', 'uniqueId': '0xfdeb4dbc86edf7a4f05de3f2cc9b8fc1056d68727d29686c143c73c7c04ee9f0:log:80', 'hash': '0xfdeb4dbc86edf7a4f05de3f2cc9b8fc1056d68727d29686c143c73c7c04ee9f0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 359.05027057840516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1376d2cec2ddb9dc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:52:36.000Z'}}, {'blockNum': '0x4c07b9', 'uniqueId': '0xfdeb4dbc86edf7a4f05de3f2cc9b8fc1056d68727d29686c143c73c7c04ee9f0:log:83', 'hash': '0xfdeb4dbc86edf7a4f05de3f2cc9b8fc1056d68727d29686c143c73c7c04ee9f0', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'value': 359.05027057840516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1376d2cec2ddb9dc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:52:36.000Z'}}, {'blockNum': '0x4c07ba', 'uniqueId': '0x055e69d51eb28cf4d2854b268e198432e8967014562d108456035e67fc0d66f8:log:55', 'hash': '0x055e69d51eb28cf4d2854b268e198432e8967014562d108456035e67fc0d66f8', 'from': '0x02f5635c20ab04fbb062a53631d6cc01fc372348', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 298.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x102d21c30250900000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:52:47.000Z'}}, {'blockNum': '0x4c07c0', 'uniqueId': '0xaf14bf353e117cfd5af0177ded05ab575e0fd5a605f6c1b812e6fbf0eca3d4ef:log:45', 'hash': '0xaf14bf353e117cfd5af0177ded05ab575e0fd5a605f6c1b812e6fbf0eca3d4ef', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1495.878146943231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51177ac1248cdc891d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:54:18.000Z'}}, {'blockNum': '0x4c07c0', 'uniqueId': '0xaf14bf353e117cfd5af0177ded05ab575e0fd5a605f6c1b812e6fbf0eca3d4ef:log:47', 'hash': '0xaf14bf353e117cfd5af0177ded05ab575e0fd5a605f6c1b812e6fbf0eca3d4ef', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1495.878146943231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51177ac1248cdc891d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:54:18.000Z'}}, {'blockNum': '0x4c07c2', 'uniqueId': '0x03d71f32458cf60f933d385143e2fa3f593c1057097c10282197a76d815bd290:log:75', 'hash': '0x03d71f32458cf60f933d385143e2fa3f593c1057097c10282197a76d815bd290', 'from': '0x94c654fef85b8b0a982909a6ca45b66bb2384236', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 31.029701286063318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ae9fa4ead2491da2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:54:35.000Z'}}, {'blockNum': '0x4c07c2', 'uniqueId': '0x03d71f32458cf60f933d385143e2fa3f593c1057097c10282197a76d815bd290:log:77', 'hash': '0x03d71f32458cf60f933d385143e2fa3f593c1057097c10282197a76d815bd290', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 31.029701286063318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ae9fa4ead2491da2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:54:35.000Z'}}, {'blockNum': '0x4c07c4', 'uniqueId': '0x9829357745b394b62a13c5d074495c087b1009e13ae29c06aaa5b09b8dbaa5c4:log:52', 'hash': '0x9829357745b394b62a13c5d074495c087b1009e13ae29c06aaa5b09b8dbaa5c4', 'from': '0xeade8b32735f9c7871da862c18bf12caeaa4e6e9', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1191.4126802548872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40962c2051209aa1ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:55:01.000Z'}}, {'blockNum': '0x4c07c4', 'uniqueId': '0x9829357745b394b62a13c5d074495c087b1009e13ae29c06aaa5b09b8dbaa5c4:log:54', 'hash': '0x9829357745b394b62a13c5d074495c087b1009e13ae29c06aaa5b09b8dbaa5c4', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1191.4126802548872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x40962c2051209aa1ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:55:01.000Z'}}, {'blockNum': '0x4c07c7', 'uniqueId': '0x095abf39cb12dd3d8f5662143f728bd53b3d3b74cc0191d88e9e3c91837999ce:log:69', 'hash': '0x095abf39cb12dd3d8f5662143f728bd53b3d3b74cc0191d88e9e3c91837999ce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 66.8692531209191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039fff4f6ccc104d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:55:41.000Z'}}, {'blockNum': '0x4c07c7', 'uniqueId': '0x095abf39cb12dd3d8f5662143f728bd53b3d3b74cc0191d88e9e3c91837999ce:log:72', 'hash': '0x095abf39cb12dd3d8f5662143f728bd53b3d3b74cc0191d88e9e3c91837999ce', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 66.8692531209191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039fff4f6ccc104d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:55:41.000Z'}}, {'blockNum': '0x4c07ce', 'uniqueId': '0xb1cf79295a34128b6c0b6a18b2e0ec7c8c84d110d7335586cc9a8ab3086dc86a:log:30', 'hash': '0xb1cf79295a34128b6c0b6a18b2e0ec7c8c84d110d7335586cc9a8ab3086dc86a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 204.94272778335034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1c26d515fa2d1de4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:56:46.000Z'}}, {'blockNum': '0x4c07ce', 'uniqueId': '0xb1cf79295a34128b6c0b6a18b2e0ec7c8c84d110d7335586cc9a8ab3086dc86a:log:33', 'hash': '0xb1cf79295a34128b6c0b6a18b2e0ec7c8c84d110d7335586cc9a8ab3086dc86a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xd9f5599c07be8eb4bb420fb258af6c25c7154866', 'value': 204.94272778335034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1c26d515fa2d1de4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:56:46.000Z'}}, {'blockNum': '0x4c07d1', 'uniqueId': '0xe55bfa44a114f9efb9ee8fd702c486ccb95247d8d99c21df3c8dc6b4c9ca7ddc:log:78', 'hash': '0xe55bfa44a114f9efb9ee8fd702c486ccb95247d8d99c21df3c8dc6b4c9ca7ddc', 'from': '0x25d4aef414ea092fbcbd83fd30e89e15cf820d0a', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.949713691592526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5291a1145ea68bce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:57:57.000Z'}}, {'blockNum': '0x4c07d1', 'uniqueId': '0xe55bfa44a114f9efb9ee8fd702c486ccb95247d8d99c21df3c8dc6b4c9ca7ddc:log:80', 'hash': '0xe55bfa44a114f9efb9ee8fd702c486ccb95247d8d99c21df3c8dc6b4c9ca7ddc', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.949713691592526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5291a1145ea68bce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:57:57.000Z'}}, {'blockNum': '0x4c07d3', 'uniqueId': '0x738c347f359c03f01a9996de600ededdfb682ef8d480d273d90814c4739fd944:log:6', 'hash': '0x738c347f359c03f01a9996de600ededdfb682ef8d480d273d90814c4739fd944', 'from': '0x034f321c33fc126a706fbda76947c53a5c4c239d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x74e082b105be300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T15:58:12.000Z'}}, {'blockNum': '0x4c07d9', 'uniqueId': '0xbdc3beaa9aed542d25017c451f93cde22f82e587c4eae5b211768f7ba6167914:log:45', 'hash': '0xbdc3beaa9aed542d25017c451f93cde22f82e587c4eae5b211768f7ba6167914', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1495.782427321765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x511626b0a77958f306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:00:13.000Z'}}, {'blockNum': '0x4c07d9', 'uniqueId': '0xbdc3beaa9aed542d25017c451f93cde22f82e587c4eae5b211768f7ba6167914:log:47', 'hash': '0xbdc3beaa9aed542d25017c451f93cde22f82e587c4eae5b211768f7ba6167914', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 1495.782427321765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x511626b0a77958f306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:00:13.000Z'}}, {'blockNum': '0x4c07e0', 'uniqueId': '0xa70404800d5fcf082f525f7deceec38d15d29e7bbf7fa8ab90f571abcae3e81c:log:31', 'hash': '0xa70404800d5fcf082f525f7deceec38d15d29e7bbf7fa8ab90f571abcae3e81c', 'from': '0x788ca5935759c06ea223d0e2cf5ea5729d669c18', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 176.31623351406327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x098ee11837b490672c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:01:27.000Z'}}, {'blockNum': '0x4c07e0', 'uniqueId': '0xa70404800d5fcf082f525f7deceec38d15d29e7bbf7fa8ab90f571abcae3e81c:log:33', 'hash': '0xa70404800d5fcf082f525f7deceec38d15d29e7bbf7fa8ab90f571abcae3e81c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 176.31623351406327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x098ee11837b490672c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:01:27.000Z'}}, {'blockNum': '0x4c07e6', 'uniqueId': '0x54cfe7e08108d8ce2eb989897b72d25b7259dbb7ed61d029d2237fad5f86ae75:log:40', 'hash': '0x54cfe7e08108d8ce2eb989897b72d25b7259dbb7ed61d029d2237fad5f86ae75', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 79.18817101096788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044af4e5fa41a03c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:02:45.000Z'}}, {'blockNum': '0x4c07e6', 'uniqueId': '0x54cfe7e08108d8ce2eb989897b72d25b7259dbb7ed61d029d2237fad5f86ae75:log:43', 'hash': '0x54cfe7e08108d8ce2eb989897b72d25b7259dbb7ed61d029d2237fad5f86ae75', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 79.18817101096788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044af4e5fa41a03c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:02:45.000Z'}}, {'blockNum': '0x4c07e6', 'uniqueId': '0x5ea232c10a1e80909d139f11721e0feeef6bdc0c0b678d337fefe7b96902f766:log:57', 'hash': '0x5ea232c10a1e80909d139f11721e0feeef6bdc0c0b678d337fefe7b96902f766', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 176.18504734349622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x098d0f07172c78d379', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-01-27T16:02:45.000Z'}}], 'pageKey': 'f8b4f6c3-5920-407f-8ef8-c574c0f96bb5'}}
Answer is paginated. Downloading more pages...
Number of returned transfers:  1001
Answer is complete
 
symbol             MOD
group              BPS
date        2018-02-12
hour             19:00
exchange       binance
Name: 285, dtype: object
HERE
{'arbitrum-one': '0x244ae62439c1ef3187f244d8604ac2c391ef2b53'}
No contract for ethereum specified
{'aptos': '0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD'}
No contract for ethereum specified
 Symbol: MOD, Contract: 0xea1ea0972fa092dd463f2968f9bb51cc4c981d71
Datetime timestamps:  2018-02-12 19:00:00 2018-02-12 07:00:00 2018-02-13 07:00:00
Unix timestamps:  1518415200.0 1518501600.0
Hex Block Numbers:  0x4d7157 0x4d8897
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             DLT
group              BPS
date        2018-03-11
hour             20:00
exchange       binance
Name: 290, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2018-03-11 20:00:00 2018-03-11 08:00:00 2018-03-12 08:00:00
Unix timestamps:  1520751600.0 1520838000.0
Hex Block Numbers:  0x4fe050 0x4ff78b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x4fe095', 'uniqueId': '0x5c31c042d7ba5017a469a73000ed2d6a6db80b2d39d612e01adb242beedacc04:log:78', 'hash': '0x5c31c042d7ba5017a469a73000ed2d6a6db80b2d39d612e01adb242beedacc04', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xafbb68d5bc82a65c5a558b2bd149eb9c3068e941', 'value': 509.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1b9a91ce248ce80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T07:14:45.000Z'}}, {'blockNum': '0x4fe0a1', 'uniqueId': '0x14b68bb80a5d1e6089f35857bc65ae1feaf03bc080d0343e682f08edb45760e3:log:0', 'hash': '0x14b68bb80a5d1e6089f35857bc65ae1feaf03bc080d0343e682f08edb45760e3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe31fa7a36e8f97f27cdf04a07a2f6e305f8d772a', 'value': 10000.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e1ca754ab6d540000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T07:16:38.000Z'}}, {'blockNum': '0x4fe0b3', 'uniqueId': '0xe27ba970756e78ecac640c5db727d1c66bc6b37acd049e9c8da6e081ddb093b2:log:43', 'hash': '0xe27ba970756e78ecac640c5db727d1c66bc6b37acd049e9c8da6e081ddb093b2', 'from': '0xe31fa7a36e8f97f27cdf04a07a2f6e305f8d772a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e1ca754ab6d540000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T07:23:08.000Z'}}, {'blockNum': '0x4fe0bb', 'uniqueId': '0xaf6ba169dc6f49f64d432b95dddb0724f55be8ac8ddf611586e9dabf565bc55b:log:5', 'hash': '0xaf6ba169dc6f49f64d432b95dddb0724f55be8ac8ddf611586e9dabf565bc55b', 'from': '0x74aa0d7d107ae07eb16961c0922f224088fe322f', 'to': '0x6b12b2350150b6f7e9428e58c1d8d80974da89f4', 'value': 1133.3333333333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3d7028d60260b8b500', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T07:24:53.000Z'}}, {'blockNum': '0x4fe208', 'uniqueId': '0x00cf7e8100efdda0314cbfce908f30a36cd213af1d81c5d6f4e4e2a0286d9b0c:log:61', 'hash': '0x00cf7e8100efdda0314cbfce908f30a36cd213af1d81c5d6f4e4e2a0286d9b0c', 'from': '0x1596cea26bd71e15866ec5adefebfb4c483034dd', 'to': '0x80bc7cfd26a9d0026b6767c4cfd32589b9a119f6', 'value': 1.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x16345785d8a00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T08:49:08.000Z'}}, {'blockNum': '0x4fe21a', 'uniqueId': '0xf5d867ca79f41fbe8c84321b31a97d79840a00fd41f351f06890a3dfdc09d6ee:log:162', 'hash': '0xf5d867ca79f41fbe8c84321b31a97d79840a00fd41f351f06890a3dfdc09d6ee', 'from': '0x1596cea26bd71e15866ec5adefebfb4c483034dd', 'to': '0x80bc7cfd26a9d0026b6767c4cfd32589b9a119f6', 'value': 998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x361a08405e8fd80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T08:53:04.000Z'}}, {'blockNum': '0x4fe287', 'uniqueId': '0x62f90dae9cdde6b5b099b1151f9d2976d12f6eb2029d9e08058cf097709377be:log:11', 'hash': '0x62f90dae9cdde6b5b099b1151f9d2976d12f6eb2029d9e08058cf097709377be', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb064bc2eb1114808e60d8c8ad6b889df0498f08e', 'value': 487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1a69421ab42a500000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T09:17:58.000Z'}}, {'blockNum': '0x4fe44b', 'uniqueId': '0xa7dce160d591179bf7bd3f0bdab036f8ffb7f8e19bd6e94923639bacbeea3cfd:log:12', 'hash': '0xa7dce160d591179bf7bd3f0bdab036f8ffb7f8e19bd6e94923639bacbeea3cfd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x50e8c448cb0cc181238b65fe8c679a31c29b8d5f', 'value': 334.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1225736078b2420000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T11:07:20.000Z'}}, {'blockNum': '0x4fe4f6', 'uniqueId': '0x8c30329a3c29d8d8bae008f25c8d1ddae4fff35ed61c81326806b021967b2418:log:1', 'hash': '0x8c30329a3c29d8d8bae008f25c8d1ddae4fff35ed61c81326806b021967b2418', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x695de20b30f467c9bae380979ecdb5e52d37b21e', 'value': 278.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0f1e83d85310720000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T11:51:03.000Z'}}, {'blockNum': '0x4fe58c', 'uniqueId': '0x46a92cf0942c95036cb6236ebe1421578a7680523af1bf32908e6017f9df412a:log:99', 'hash': '0x46a92cf0942c95036cb6236ebe1421578a7680523af1bf32908e6017f9df412a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4a3eeeed7f10b6dfc20c59e285a2e1958f6214f1', 'value': 649.0827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x232fd4fca99770c000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T12:26:42.000Z'}}, {'blockNum': '0x4fe69e', 'uniqueId': '0x2a2fe0d8a55c3cf0f0b1d0a3053568dd49a207e07bc90aea1b1cf7229f5efd7e:log:0', 'hash': '0x2a2fe0d8a55c3cf0f0b1d0a3053568dd49a207e07bc90aea1b1cf7229f5efd7e', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xbb297ae2d86b3109b3be6615a4bff77b0f8d113c', 'value': 6.55489009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5af7a5cebc2da400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T13:33:33.000Z'}}, {'blockNum': '0x4fe7f0', 'uniqueId': '0xb8769fa2b92d779f0125367c595c68f98cce9ad41276b07ed84d4550ce7a0e21:log:33', 'hash': '0xb8769fa2b92d779f0125367c595c68f98cce9ad41276b07ed84d4550ce7a0e21', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb47150f8a60a021de01d386cbb1620bc51cba5d2', 'value': 1254.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4403a0b0a1e4180000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T14:56:32.000Z'}}, {'blockNum': '0x4fe839', 'uniqueId': '0x2cb3ea2dde0a6ec32c79c1b296e315fdbc1ec50dedc16f064110e41b90cb610f:log:2', 'hash': '0x2cb3ea2dde0a6ec32c79c1b296e315fdbc1ec50dedc16f064110e41b90cb610f', 'from': '0x1300cd3633616c898bdff0165b04fb0abad1002e', 'to': '0x6e055b529c379c755fb33e141e57c0f257540072', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:15:11.000Z'}}, {'blockNum': '0x4fe876', 'uniqueId': '0x0f8a6a3fd1072541f80307f95bf71c4d3a8ab760c1f465c14cdd9b3719271834:log:0', 'hash': '0x0f8a6a3fd1072541f80307f95bf71c4d3a8ab760c1f465c14cdd9b3719271834', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9dc87bb130992b6973581a85033407d417ffb63d', 'value': 5274.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x011dea3a7c173d3c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:29:10.000Z'}}, {'blockNum': '0x4fe881', 'uniqueId': '0xf25a89f824ffff76c2dce20f68258bfeadcbd201eba4d146e46b2ca566e3ecdf:log:80', 'hash': '0xf25a89f824ffff76c2dce20f68258bfeadcbd201eba4d146e46b2ca566e3ecdf', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf6be906cf0066b4a07f8119e4ec5f4ef8cb32c67', 'value': 135.492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0758544821f33a0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:31:41.000Z'}}, {'blockNum': '0x4fe88a', 'uniqueId': '0x54a33ba021e80424aebba4f45f2180a9990e1f3bb9213b2a9e55ac47a6299e0a:log:6', 'hash': '0x54a33ba021e80424aebba4f45f2180a9990e1f3bb9213b2a9e55ac47a6299e0a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x139fc32c5911a6a225a2a4dec13878f13b5cb1d0', 'value': 2178.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x761950db99b37e0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:33:50.000Z'}}, {'blockNum': '0x4fe8b1', 'uniqueId': '0xcf8c4e27cd2cb156df8dd64f1ddad71ab30be9d2b45e44841c3b14694ec8f1eb:log:99', 'hash': '0xcf8c4e27cd2cb156df8dd64f1ddad71ab30be9d2b45e44841c3b14694ec8f1eb', 'from': '0x5dc3eb2d7345da1ac372674b4e6aeb5c685787df', 'to': '0x04c494e47c72b1e59ff8d99a53e83f39990658bf', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:41:57.000Z'}}, {'blockNum': '0x4fe901', 'uniqueId': '0xeb936a4f4eab44de56207f83540ab599289cb998db92a50f05b577e0ed2e5700:log:11', 'hash': '0xeb936a4f4eab44de56207f83540ab599289cb998db92a50f05b577e0ed2e5700', 'from': '0x5dc3eb2d7345da1ac372674b4e6aeb5c685787df', 'to': '0xf773c6db4799ff79c9a1b23d9d36e735309cbc61', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T15:58:00.000Z'}}, {'blockNum': '0x4fe987', 'uniqueId': '0xb365b8f106c4ae4c4f4d659c7417db0701698e6c567da2417c6bdb63b573441c:log:9', 'hash': '0xb365b8f106c4ae4c4f4d659c7417db0701698e6c567da2417c6bdb63b573441c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6523dd92fa4adecb2cb63227f7f7f1d382e14f8a', 'value': 19979.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x043b131921a964600000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T16:28:31.000Z'}}, {'blockNum': '0x4feb40', 'uniqueId': '0x1760f9e6782ef7427db2e03da95e4bece23635c3387592268c49fa0035832c75:log:13', 'hash': '0x1760f9e6782ef7427db2e03da95e4bece23635c3387592268c49fa0035832c75', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f1df99050876ccf5eb533f9b03e195a69636e12', 'value': 978.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x350f94261868580000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T18:17:34.000Z'}}, {'blockNum': '0x4febc1', 'uniqueId': '0xc2c5d40bb58aea5b263f0d3203686a58a7da59498dc2add56f0b18a2ca6c2534:log:1', 'hash': '0xc2c5d40bb58aea5b263f0d3203686a58a7da59498dc2add56f0b18a2ca6c2534', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x206fbdcbfccecb7a0209624a4d8a6fa2ac25247a', 'value': 1615.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x578f67224dbaf00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T18:45:41.000Z'}}, {'blockNum': '0x4fecf0', 'uniqueId': '0x237943b7cad869060d1138a2c5fe6a3ad0f2fc884a87413d847466b193c7a9d3:log:20', 'hash': '0x237943b7cad869060d1138a2c5fe6a3ad0f2fc884a87413d847466b193c7a9d3', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1702.49790988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5c4ae79cd0ba66b000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:00:53.000Z'}}, {'blockNum': '0x4fecf5', 'uniqueId': '0xcfabaff0981c12d79a5c01b3305eda2b06b29bcf485b9e1c2881b39255d9857d:log:2', 'hash': '0xcfabaff0981c12d79a5c01b3305eda2b06b29bcf485b9e1c2881b39255d9857d', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 291.29603002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0fca8b63f35f9fa800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:03:40.000Z'}}, {'blockNum': '0x4fed13', 'uniqueId': '0x43848ee70a931fe3ab2737d45631a27630df3c84216a08d256fed89a37b80d41:log:9', 'hash': '0x43848ee70a931fe3ab2737d45631a27630df3c84216a08d256fed89a37b80d41', 'from': '0xa901430a796c442e3be804489a23d4ee38505eeb', 'to': '0xf6271988e937c4db147042bb8453abdc7bf6c342', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:11:29.000Z'}}, {'blockNum': '0x4fed1a', 'uniqueId': '0x1783c1b820ad2d0e9f1f5dc44fa203ee00050a9d4b9c9c0c31039859647db9b3:log:1', 'hash': '0x1783c1b820ad2d0e9f1f5dc44fa203ee00050a9d4b9c9c0c31039859647db9b3', 'from': '0x1410b207054a98e89df3d6c3bf6e9195d709b918', 'to': '0xa09cf816b62ada4eefdc9332bcdc0dc575d4b307', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:13:29.000Z'}}, {'blockNum': '0x4fed1c', 'uniqueId': '0x473689d46b6fb9299903233a727748dde3c1f890294f7f3ddd76c53ffb481b04:log:6', 'hash': '0x473689d46b6fb9299903233a727748dde3c1f890294f7f3ddd76c53ffb481b04', 'from': '0xba8fbbd8193300623eebcbb265c4bf1aa4e07a57', 'to': '0x0e1935492e75dfb904ff874d7bd92e3848004408', 'value': 290.792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0fc38cb75165640000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:14:35.000Z'}}, {'blockNum': '0x4fed24', 'uniqueId': '0x9ddd76535d963999bc78a340523d20d9b19c1eefe621b665c41b2d44f8260602:log:9', 'hash': '0x9ddd76535d963999bc78a340523d20d9b19c1eefe621b665c41b2d44f8260602', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xf7d6477a43783bcf61e2c48ba26189e6b7177442', 'value': 14.93751426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xcf4cb613bea1c800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:17:51.000Z'}}, {'blockNum': '0x4fed32', 'uniqueId': '0xcda66ad92e9eb0be024a1144c9b9b4579df63c790080a3cd55aacf4ac64e5af6:log:1', 'hash': '0xcda66ad92e9eb0be024a1144c9b9b4579df63c790080a3cd55aacf4ac64e5af6', 'from': '0x0507fd26da77bbeae709be27050691864e759c4c', 'to': '0x8b1fa3d39e48a05085920d57a843c4672029f582', 'value': 5002.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f31057316d9240000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:20:35.000Z'}}, {'blockNum': '0x4fed35', 'uniqueId': '0xe9aa333afba48d84b3a07bba9437d00c5107f2dc80605b6b0bf53e43168b14aa:log:8', 'hash': '0xe9aa333afba48d84b3a07bba9437d00c5107f2dc80605b6b0bf53e43168b14aa', 'from': '0x0f94e2a44ced2a368da8a1edeaa337f13a8560d0', 'to': '0x1019390b505aceff5cfd0de590bf31eec11510af', 'value': 99541.7106666667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15142abd18bf44914b00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:21:06.000Z'}}, {'blockNum': '0x4fed3c', 'uniqueId': '0xb72c7b0ba182bf4f25bbb3ff7539dd96246dae4c9d3614d2523c8a54e1f74b0a:log:3', 'hash': '0xb72c7b0ba182bf4f25bbb3ff7539dd96246dae4c9d3614d2523c8a54e1f74b0a', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xb47150f8a60a021de01d386cbb1620bc51cba5d2', 'value': 60.99382188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x034e7595d73ad93000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:22:54.000Z'}}, {'blockNum': '0x4fed41', 'uniqueId': '0xa4ccff561f1b5ed7c07fd0e305c2335a1b98bcb3b5a6fa96ad3db14e2db965ae:log:0', 'hash': '0xa4ccff561f1b5ed7c07fd0e305c2335a1b98bcb3b5a6fa96ad3db14e2db965ae', 'from': '0x6aa6dbaff6878695f7d06f754a707925b1981bed', 'to': '0x521ff11ae7d1721a027d907c621e00d8405f544e', 'value': 4179.2897307692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xe28f4bcb4f0016ac00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:24:08.000Z'}}, {'blockNum': '0x4fed41', 'uniqueId': '0x288817eadba18f60b5472233d94e4dab74e932d7003cbba30efbc4217615351e:log:5', 'hash': '0x288817eadba18f60b5472233d94e4dab74e932d7003cbba30efbc4217615351e', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xf7d6477a43783bcf61e2c48ba26189e6b7177442', 'value': 28.7371291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x018ececaa91e0a7800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:24:08.000Z'}}, {'blockNum': '0x4fed42', 'uniqueId': '0x70c1597712faa6477e7bb270a6664ef1ada91b34581ac87cc84ab791480003e0:log:18', 'hash': '0x70c1597712faa6477e7bb270a6664ef1ada91b34581ac87cc84ab791480003e0', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xb47150f8a60a021de01d386cbb1620bc51cba5d2', 'value': 14.93751426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xcf4cb613bea1c800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:24:21.000Z'}}, {'blockNum': '0x4fed57', 'uniqueId': '0x41b7f7f50304b911af70314710fc7235fa209b336d8b1ab744d18858f16310bd:log:0', 'hash': '0x41b7f7f50304b911af70314710fc7235fa209b336d8b1ab744d18858f16310bd', 'from': '0x1410b207054a98e89df3d6c3bf6e9195d709b918', 'to': '0xa09cf816b62ada4eefdc9332bcdc0dc575d4b307', 'value': 62887.1834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0d511efcafb8f20a8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:27:45.000Z'}}, {'blockNum': '0x4fed63', 'uniqueId': '0x1dc7bdc773d270ae8c09a287c227efed300aee377fdfd9d3375a115b7c033a3e:log:5', 'hash': '0x1dc7bdc773d270ae8c09a287c227efed300aee377fdfd9d3375a115b7c033a3e', 'from': '0x2e1105944e57640124b31ba74bddff750a5161e4', 'to': '0x164f1264a837cf043a74e59450768a5a38fa03a5', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x15af1d78b58c400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:30:11.000Z'}}, {'blockNum': '0x4fed69', 'uniqueId': '0x3b31c76bfbd54de919b37435545c4284a079094c4b498601a96072aa5d183c83:log:3', 'hash': '0x3b31c76bfbd54de919b37435545c4284a079094c4b498601a96072aa5d183c83', 'from': '0x75e589357b07ddd7182127dd4fc6467ce0d8c695', 'to': '0x824252b82a59d2dbb6590e13a5c86caa8ea5e3fe', 'value': 3229.381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xaf10aa0d8193c08000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:31:09.000Z'}}, {'blockNum': '0x4fed79', 'uniqueId': '0x5bda9a1cb68b65d9a0da5da48e4641ee271557c17e0d8120590c0b34718de13b:log:10', 'hash': '0x5bda9a1cb68b65d9a0da5da48e4641ee271557c17e0d8120590c0b34718de13b', 'from': '0x372b418062839db28e96cde98982e668eb60fdec', 'to': '0x0e589c21929376e639546edccefaa2c94c12e053', 'value': 950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x337fe5feaf2d180000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:35:22.000Z'}}, {'blockNum': '0x4fed7e', 'uniqueId': '0x3231374095b6e4eaa20b47531be50abb28d7844ec97bb1a6f59584a27899327b:log:7', 'hash': '0x3231374095b6e4eaa20b47531be50abb28d7844ec97bb1a6f59584a27899327b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb1cdb83c661322881bbcc0537049f46e2373a66f', 'value': 114.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x062f1bd01ad0af8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:36:14.000Z'}}, {'blockNum': '0x4fed7f', 'uniqueId': '0x2e75a501099570c9e01c92f754a37d9612b9bd05db185b9ec7a5a7c546e17450:log:24', 'hash': '0x2e75a501099570c9e01c92f754a37d9612b9bd05db185b9ec7a5a7c546e17450', 'from': '0xcc91a3bcd481272ee4a23ac89be65ccf2cee727b', 'to': '0x41e93bc71888d0a8b11ab6240a7c91a95dc0a3c1', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:36:30.000Z'}}, {'blockNum': '0x4fed88', 'uniqueId': '0x4842dc8f2a9619a1f36c2556c3f0978b3e9b6fbd992eaedf3e7a041567bea3c0:log:77', 'hash': '0x4842dc8f2a9619a1f36c2556c3f0978b3e9b6fbd992eaedf3e7a041567bea3c0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 1096.169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3b6c6699bf6b2a8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:38:37.000Z'}}, {'blockNum': '0x4fed8c', 'uniqueId': '0xe787d8710a69f7942c46d593fd1aa845b3486cb679ebf3ccd88d77c1ca2411a1:log:16', 'hash': '0xe787d8710a69f7942c46d593fd1aa845b3486cb679ebf3ccd88d77c1ca2411a1', 'from': '0x536a30da345d7967d14e2d84829337755bb4c72a', 'to': '0x54a816ebbebc79a391c4e42f8096cb3610aead5f', 'value': 1111.0341538462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3c3ab23c697172de00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:39:40.000Z'}}, {'blockNum': '0x4fed8f', 'uniqueId': '0x019a00a33954d5407b374c2c7b8a6591c64189332364844afbcdff920eac2b9a:log:29', 'hash': '0x019a00a33954d5407b374c2c7b8a6591c64189332364844afbcdff920eac2b9a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1043.931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x389773f1843a4f8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:39:57.000Z'}}, {'blockNum': '0x4fed9c', 'uniqueId': '0x8eff89293ab7b1d23c14b901944fd860886f3ef3f00e1a778bf6e6d8bd60e423:log:23', 'hash': '0x8eff89293ab7b1d23c14b901944fd860886f3ef3f00e1a778bf6e6d8bd60e423', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 724.543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x27470dd3b4e7d98000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:42:40.000Z'}}, {'blockNum': '0x4fedb1', 'uniqueId': '0xb09ed672ac33a8c3869ac3dffa4761c52e034f0f91b4c8d3be4f53ad9928a1af:log:9', 'hash': '0xb09ed672ac33a8c3869ac3dffa4761c52e034f0f91b4c8d3be4f53ad9928a1af', 'from': '0x42ccea3fdf3b54fb6e48c2abbdf088919a6b19ba', 'to': '0xdcfef53026666742c9d4c94e9e67f21fd125e71e', 'value': 1310.292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4707f44fc684220000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:47:54.000Z'}}, {'blockNum': '0x4fedcb', 'uniqueId': '0xaec0f8d3f85fd80734a3d5dd117499e8966a342b0e2c3491b49186902d9acdd0:log:35', 'hash': '0xaec0f8d3f85fd80734a3d5dd117499e8966a342b0e2c3491b49186902d9acdd0', 'from': '0xcc91a3bcd481272ee4a23ac89be65ccf2cee727b', 'to': '0x41e93bc71888d0a8b11ab6240a7c91a95dc0a3c1', 'value': 1935.697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x68ef3135bcdd4e8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:53:43.000Z'}}, {'blockNum': '0x4fedd7', 'uniqueId': '0x1c2bad5fcad3de0b8ef081ebd93cdb7e9ee3ce7a764aba2dd83bb761b9989e5e:log:1', 'hash': '0x1c2bad5fcad3de0b8ef081ebd93cdb7e9ee3ce7a764aba2dd83bb761b9989e5e', 'from': '0x206fbdcbfccecb7a0209624a4d8a6fa2ac25247a', 'to': '0x4f93b1800866200b4bd1fc53d2f2c64315eecab8', 'value': 3265.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xb101c0b43a9d780000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T20:55:35.000Z'}}, {'blockNum': '0x4fedf8', 'uniqueId': '0xe17a7978c64cfeaeb5d76558bd93915a44220617a436693de3233bd53298715c:log:12', 'hash': '0xe17a7978c64cfeaeb5d76558bd93915a44220617a436693de3233bd53298715c', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xb38bc8e39e7c54590896a69399a5c28350b9a133', 'value': 871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x2f378d9d3e853c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:02:52.000Z'}}, {'blockNum': '0x4fee1c', 'uniqueId': '0xcd285249c1170d79c0e0ce7eca98f86ff8696b18e656a2f7cb0e82381f19b4f9:log:2', 'hash': '0xcd285249c1170d79c0e0ce7eca98f86ff8696b18e656a2f7cb0e82381f19b4f9', 'from': '0x140e7c141314985383dee669d13eb5dbf1d59ccf', 'to': '0x4f93b1800866200b4bd1fc53d2f2c64315eecab8', 'value': 3860.744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xd14a9604e6d0b40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:10:40.000Z'}}, {'blockNum': '0x4fee2d', 'uniqueId': '0x88d216ac6e9a9abf0acd4ab15a425cd10b45f52a09751a98813b4fbf6dc7668c:log:11', 'hash': '0x88d216ac6e9a9abf0acd4ab15a425cd10b45f52a09751a98813b4fbf6dc7668c', 'from': '0xfec3c0de5d3775c39ab3f31e0a1fbdbaad802e7b', 'to': '0xd48fbe2e03d61eef83c7bc8b6ec65a5f591da9b3', 'value': 13436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02d85df4fd0564700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:15:29.000Z'}}, {'blockNum': '0x4fee2f', 'uniqueId': '0x8151093880d429ccd8b6285bd8a04de34c0145d80b84ddd81f5bd5ff2c0a178e:log:3', 'hash': '0x8151093880d429ccd8b6285bd8a04de34c0145d80b84ddd81f5bd5ff2c0a178e', 'from': '0xd11dc1609d9b9503d0fea2603102c0ca057d08c2', 'to': '0x613aeba7039e9beba4305bd0915bd2db1a887524', 'value': 2064.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x6feedb343882900000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:16:20.000Z'}}, {'blockNum': '0x4feeaa', 'uniqueId': '0x62a602cbc1afe6fa3b132fa42f60aac7840b4cce10bdb9e402f7d07442bd0223:log:8', 'hash': '0x62a602cbc1afe6fa3b132fa42f60aac7840b4cce10bdb9e402f7d07442bd0223', 'from': '0x2eacc7f96cb5611a347c16cc812b31e448fa30b7', 'to': '0xcc4e34c7e0e490b1d3304a444429f7675f454cc8', 'value': 6042.6928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014793355e0a9a8c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:41:20.000Z'}}, {'blockNum': '0x4feeb7', 'uniqueId': '0xdb728844eaf2467bfe449029b098a9e52be80b9140a448c262b75cff82199f46:log:19', 'hash': '0xdb728844eaf2467bfe449029b098a9e52be80b9140a448c262b75cff82199f46', 'from': '0x0600b7f37736d4484937a111f7ed67cc8c9879fc', 'to': '0x92cd69c1213b5698c292825321a1c1eb7efee259', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:45:24.000Z'}}, {'blockNum': '0x4feecb', 'uniqueId': '0x389b7ab104aec25e9f8c35546a5e206912ba672ef77b3d53eb098250b5a4830a:log:9', 'hash': '0x389b7ab104aec25e9f8c35546a5e206912ba672ef77b3d53eb098250b5a4830a', 'from': '0x0815728f597260f6480916f6e25d3679c660d698', 'to': '0x5687b2c54a9c6d1e5eac79d7ea2ed8f8bf5a7ed2', 'value': 1001.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x364ec4903c72540000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T21:51:09.000Z'}}, {'blockNum': '0x4fef04', 'uniqueId': '0x74e0b50258e91d4986c1515732795642f18105541e76d282512cf81888a0a48e:log:129', 'hash': '0x74e0b50258e91d4986c1515732795642f18105541e76d282512cf81888a0a48e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 896.764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x309d19babd9e660000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:03:19.000Z'}}, {'blockNum': '0x4fef59', 'uniqueId': '0x7206516815d36ddf5e4928c8b7ce52b350acb76a08a4434abd3d270fa4f02a97:log:6', 'hash': '0x7206516815d36ddf5e4928c8b7ce52b350acb76a08a4434abd3d270fa4f02a97', 'from': '0x159c1919148129985b3b7574a69a0a64ebb1fe13', 'to': '0x845380b09244776b97d7d5e40918aa713f9ed49f', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:22:27.000Z'}}, {'blockNum': '0x4fef84', 'uniqueId': '0x6d7fadd468019cfaeeb0ed489e5a8eaf17e0cbdb5ce549e6da78be51867f6d50:log:74', 'hash': '0x6d7fadd468019cfaeeb0ed489e5a8eaf17e0cbdb5ce549e6da78be51867f6d50', 'from': '0x4c184bb75ff1b00f95e1e36200147fd61800ba94', 'to': '0x72eb81f4662ba592f3624b7bf02e33f32f73d39c', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:34:27.000Z'}}, {'blockNum': '0x4fefb7', 'uniqueId': '0xb5d2d74ae0ba544aaf4b8a6e846b40adae3902b6a3d9f0588fb238f69a2a3f0e:log:12', 'hash': '0xb5d2d74ae0ba544aaf4b8a6e846b40adae3902b6a3d9f0588fb238f69a2a3f0e', 'from': '0xffd06e976e128eb436d7674404da3bd0c53a7992', 'to': '0x326c566f1e428f1df27da28421256f7df7320239', 'value': 3000.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa2a6ea1f3312080000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:48:34.000Z'}}, {'blockNum': '0x4fefc6', 'uniqueId': '0x3b1d6a75d32b1c791342557a7be2a15cb7b5e9e2cc11f42d95593a73242a02be:log:1', 'hash': '0x3b1d6a75d32b1c791342557a7be2a15cb7b5e9e2cc11f42d95593a73242a02be', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d8ddab687ab763be9c850dff8b13bdb370fa436', 'value': 580.7385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1f7b5d9cdd95304000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T22:51:19.000Z'}}, {'blockNum': '0x4ff02c', 'uniqueId': '0x60618dcbfaaea5bb4dbb434d4c45825c03a5bc246c4b47fe2fb0622091c81232:log:11', 'hash': '0x60618dcbfaaea5bb4dbb434d4c45825c03a5bc246c4b47fe2fb0622091c81232', 'from': '0x470c45f7bdf01910e0fb1d2badb3e5a0c0b63fc9', 'to': '0xd5fdf63c83cb12ab2f229aa23ecc9015791680f8', 'value': 2774.94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x966e074bbcde760000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:13:16.000Z'}}, {'blockNum': '0x4ff055', 'uniqueId': '0xdccb685ac35ce39a31993ec0492aba72af532b19f2e2d09a060425d4d5b488be:log:2', 'hash': '0xdccb685ac35ce39a31993ec0492aba72af532b19f2e2d09a060425d4d5b488be', 'from': '0x93490fdc279f206c270807e49378d81fa6e6b60c', 'to': '0x1fc193f0ca6658b464ee7f45adb2ca180f30da4c', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:22:45.000Z'}}, {'blockNum': '0x4ff0a4', 'uniqueId': '0x3ad7fe6b4c6af833b90ed547a1e2ec240ea970c2a0694a444e9a43cf45a6559d:log:35', 'hash': '0x3ad7fe6b4c6af833b90ed547a1e2ec240ea970c2a0694a444e9a43cf45a6559d', 'from': '0x4e448f43540cb6d31022526c8dbaad3e6dd9a8fa', 'to': '0x83fcf2882ef2777029fa7ea76ad31671ce7ffa6f', 'value': 6651.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x016896e193c871d20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:41:43.000Z'}}, {'blockNum': '0x4ff0a7', 'uniqueId': '0x4107718e3b384931fd571d98b0f45bcca370efcdec032551d0917f428ac69205:log:0', 'hash': '0x4107718e3b384931fd571d98b0f45bcca370efcdec032551d0917f428ac69205', 'from': '0xa5176302ce2579ca89efe9ba1579ff8d3fe042c5', 'to': '0xa0623ab87d829e1db3850643a7a79a02f2ee5b80', 'value': 4100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xde42ee1544dd900000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:42:16.000Z'}}, {'blockNum': '0x4ff0a9', 'uniqueId': '0x2e85957536c90a435ea1b3d57b194da1d5c0af5aeed671f9a8f9158c4ac45134:log:11', 'hash': '0x2e85957536c90a435ea1b3d57b194da1d5c0af5aeed671f9a8f9158c4ac45134', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb41f8118fd7a0b33c2fb7d98cdf600b3a851e323', 'value': 3505.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbe046bfca78b380000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-11T23:42:39.000Z'}}, {'blockNum': '0x4ff13a', 'uniqueId': '0x744975fc59feac4b40c850d7c17e328760965f39bf5560044d2cc88c0f4948a5:log:13', 'hash': '0x744975fc59feac4b40c850d7c17e328760965f39bf5560044d2cc88c0f4948a5', 'from': '0x02af30e7e745826114b117d6f523aee2db7a11e5', 'to': '0x35377a467d68640dacedf1a5afd34c3b044c10b4', 'value': 4998.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010efc492338f6a80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T00:19:14.000Z'}}, {'blockNum': '0x4ff1c9', 'uniqueId': '0xbf57eec91c6a7ce9499d73cc56323c94920a22a86549577434501f73349ed159:log:2', 'hash': '0xbf57eec91c6a7ce9499d73cc56323c94920a22a86549577434501f73349ed159', 'from': '0x7d8ddab687ab763be9c850dff8b13bdb370fa436', 'to': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'value': 580.7385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1f7b5d9cdd95304000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T00:52:54.000Z'}}, {'blockNum': '0x4ff307', 'uniqueId': '0x8347ad6b47bb232dea5e2c1e3608c14e11bf8afc2c5cd02e1cae4bfb89a33602:log:10', 'hash': '0x8347ad6b47bb232dea5e2c1e3608c14e11bf8afc2c5cd02e1cae4bfb89a33602', 'from': '0x93490fdc279f206c270807e49378d81fa6e6b60c', 'to': '0x1fc193f0ca6658b464ee7f45adb2ca180f30da4c', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T02:16:34.000Z'}}, {'blockNum': '0x4ff30f', 'uniqueId': '0xa3da84c113abcacf92a09eb6e90c30ccefb6aee19173aa9a0a89c32768bccfe3:log:27', 'hash': '0xa3da84c113abcacf92a09eb6e90c30ccefb6aee19173aa9a0a89c32768bccfe3', 'from': '0xe58d9940a395d303e691dbe0676710d9c140101a', 'to': '0x9d0cc163ae362e6afac1adf11289eef89f031e47', 'value': 3054.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa59bc0ea4160bc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T02:18:47.000Z'}}, {'blockNum': '0x4ff345', 'uniqueId': '0x05733e68f1dbd7dd9944975925e303078323867cfb2d853f3b0c8da33794e74f:log:72', 'hash': '0x05733e68f1dbd7dd9944975925e303078323867cfb2d853f3b0c8da33794e74f', 'from': '0x9d0cc163ae362e6afac1adf11289eef89f031e47', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3054.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa59bc0ea4160bc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T02:35:37.000Z'}}, {'blockNum': '0x4ff3e2', 'uniqueId': '0xa46d016b6ccac2036e07ff73c46d4eede98359e1288009227c3705be456118fa:log:3', 'hash': '0xa46d016b6ccac2036e07ff73c46d4eede98359e1288009227c3705be456118fa', 'from': '0x1ee51353ffffe87950897a927a7f08d20c038091', 'to': '0x65b3dc250820f15ee6adf7d78c1f7a53ffba6bf8', 'value': 541.90384615385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1d606d34f282291280', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T03:09:40.000Z'}}, {'blockNum': '0x4ff454', 'uniqueId': '0xa5c63bfaf5cd6e3338d720bdedd05c8f9c81ad7a9fda5f0966489e58abb1bd8a:log:0', 'hash': '0xa5c63bfaf5cd6e3338d720bdedd05c8f9c81ad7a9fda5f0966489e58abb1bd8a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x98c4e143ce5ebbdbe3b9ac6c4a8b5bebaf219480', 'value': 1319.72029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x478acc5393c5802000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T03:36:19.000Z'}}, {'blockNum': '0x4ff5d8', 'uniqueId': '0xa84c61898f4308788be2dc7717bcfd85a42e3b620d05bd3d6c02b589f927253f:log:2', 'hash': '0xa84c61898f4308788be2dc7717bcfd85a42e3b620d05bd3d6c02b589f927253f', 'from': '0x573442828c569afb707909dc2f5b9be3649fc960', 'to': '0x05bb5b4edc3e8af81d26709af7cb628ae16ecc22', 'value': 1694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5bd4f8f8cda7b80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T05:09:09.000Z'}}, {'blockNum': '0x4ff672', 'uniqueId': '0x9226ff387873fd92db9c15630fc5c9f3165a25154a0cd1de40171612829aa3cb:log:2', 'hash': '0x9226ff387873fd92db9c15630fc5c9f3165a25154a0cd1de40171612829aa3cb', 'from': '0x98c4e143ce5ebbdbe3b9ac6c4a8b5bebaf219480', 'to': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'value': 1319.72029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x478acc5393c5802000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T05:45:55.000Z'}}, {'blockNum': '0x4ff72c', 'uniqueId': '0x03273d6946fc5ad607fe8d28b585e7e81de920559ebb18ebe800499ef74e0f25:log:28', 'hash': '0x03273d6946fc5ad607fe8d28b585e7e81de920559ebb18ebe800499ef74e0f25', 'from': '0x951996c509421c055ce004a509a0bfd196382aef', 'to': '0xcd011c30094ef743d90f37e375d8554e1d1d603d', 'value': 107.29230769231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x05d0fad9631c0c7180', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-12T06:33:10.000Z'}}]}}
Number of returned transfers:  73
Answer is complete
 
symbol             DNT
group              BPS
date        2018-03-24
hour             18:30
exchange       binance
Name: 292, dtype: object
HERE
{'binance-smart-chain': '0x2456493e757fdeedf569781f053998a72adfad03'}
No contract for ethereum specified
{'binance-smart-chain': '0x44836708ff32246635d8d08c785f4e779e294598'}
No contract for ethereum specified
 Symbol: DNT, Contract: 0x0abdace70d3790235af448c88547603b945604ea
Datetime timestamps:  2018-03-24 18:30:00 2018-03-24 06:30:00 2018-03-25 06:30:00
Unix timestamps:  1521869400.0 1521952200.0
Hex Block Numbers:  0x510b5b 0x512246
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x510b5b', 'uniqueId': '0x0851692390d1430bbdcdc5e9702f486bcc8b039455e8bbeb60eda28354b729c7:log:21', 'hash': '0x0851692390d1430bbdcdc5e9702f486bcc8b039455e8bbeb60eda28354b729c7', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x632ea202eef31173b55fed8a030f9b2a7cc09093', 'value': 41121.2526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08b5300499f75c278000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:30:30.000Z'}}, {'blockNum': '0x510b6a', 'uniqueId': '0x30ba9ec6a4e5ad42290738c66dc5f7cd46980ce0be831f74bd2b8ea1a2048109:log:4', 'hash': '0x30ba9ec6a4e5ad42290738c66dc5f7cd46980ce0be831f74bd2b8ea1a2048109', 'from': '0x632ea202eef31173b55fed8a030f9b2a7cc09093', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41121.2526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08b5300499f75c278000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:34:05.000Z'}}, {'blockNum': '0x510b83', 'uniqueId': '0xf92e8ca2733c3a44030713daea17c2569189db49ddc839cb7fb03f43f7d2f7ec:log:48', 'hash': '0xf92e8ca2733c3a44030713daea17c2569189db49ddc839cb7fb03f43f7d2f7ec', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xdc45e6095a0d3dddb37e2b3dba93beabe6d88a61', 'value': 1696.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5bf8c6f922483a0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:39:12.000Z'}}, {'blockNum': '0x510bb3', 'uniqueId': '0xcc2c1fa3fe5cb81599cd80803b41e3a223e6aaca528a5734043d032b483b45fe:log:5', 'hash': '0xcc2c1fa3fe5cb81599cd80803b41e3a223e6aaca528a5734043d032b483b45fe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 182029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x268bcfd63d063c140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:50:20.000Z'}}, {'blockNum': '0x510bd4', 'uniqueId': '0x2b42bb508bb420975a6b67d8dd87323af9844e0de6e183cc8b945ad6d92c505a:log:128', 'hash': '0x2b42bb508bb420975a6b67d8dd87323af9844e0de6e183cc8b945ad6d92c505a', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 182029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x268bcfd63d063c140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T05:58:36.000Z'}}, {'blockNum': '0x510c32', 'uniqueId': '0xc30dc7cebf464e623ce4449c905f893c01511bda7dd4e2d41df27d5128b7da4b:log:102', 'hash': '0xc30dc7cebf464e623ce4449c905f893c01511bda7dd4e2d41df27d5128b7da4b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 22015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04a96f7fa387f09c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T06:22:08.000Z'}}, {'blockNum': '0x510c4e', 'uniqueId': '0xc5e7d8c7d45f4d3c396165619c27009e4bc681f49b8d739cdb41346d9e389057:log:42', 'hash': '0xc5e7d8c7d45f4d3c396165619c27009e4bc681f49b8d739cdb41346d9e389057', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 22015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04a96f7fa387f09c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T06:28:24.000Z'}}, {'blockNum': '0x510cd2', 'uniqueId': '0xa81ef66fdb8b14c7e8371a402ebb5b5aaf7cba83bd49d6de0d4666790c2ca1b8:log:3', 'hash': '0xa81ef66fdb8b14c7e8371a402ebb5b5aaf7cba83bd49d6de0d4666790c2ca1b8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 20180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0445f5c209c716d00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T06:57:24.000Z'}}, {'blockNum': '0x510cf5', 'uniqueId': '0x1ba6cb49e79422dbab1d650376540568d37ec41a8c7c9eae18fc6ce581950675:log:39', 'hash': '0x1ba6cb49e79422dbab1d650376540568d37ec41a8c7c9eae18fc6ce581950675', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0445f5c209c716d00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T07:04:04.000Z'}}, {'blockNum': '0x510cfb', 'uniqueId': '0xbcb06a90c340dc4b6416e43ec2f345f03d9f2461dd9916e3a176bc562ef4af75:log:19', 'hash': '0xbcb06a90c340dc4b6416e43ec2f345f03d9f2461dd9916e3a176bc562ef4af75', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x26d497d8b7f1cf354b6b77c2452db9a4cdbdb4a9', 'value': 1712.01772592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5ccf04cb10c9aac000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T07:04:54.000Z'}}, {'blockNum': '0x510d6d', 'uniqueId': '0x89c63ac27ca632aff54e95392f12f6927164a42225cdb362790493d214d13b5a:log:11', 'hash': '0x89c63ac27ca632aff54e95392f12f6927164a42225cdb362790493d214d13b5a', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xb99228204758a360ae9306377997c13e8326a3f6', 'value': 0.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03e2c284391c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T07:33:09.000Z'}}, {'blockNum': '0x510d79', 'uniqueId': '0x617308317df879a521e193e940eaa9497875400d9a443b9ac0ac588ed8dfaa05:log:5', 'hash': '0x617308317df879a521e193e940eaa9497875400d9a443b9ac0ac588ed8dfaa05', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x79b869eb5798eb512e04d9369f6c7cd5a7f389e3', 'value': 2318.85103999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7db485cf1251121c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T07:35:46.000Z'}}, {'blockNum': '0x510de7', 'uniqueId': '0xb52b637fba1291363828569e76e999e1614ada2a384526b1449907251745ddc1:log:4', 'hash': '0xb52b637fba1291363828569e76e999e1614ada2a384526b1449907251745ddc1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1539b9ebd02e6fe6777a528ae30651bf09965144', 'value': 20895.023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x046cb8b207ec68f18000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T08:04:15.000Z'}}, {'blockNum': '0x510e66', 'uniqueId': '0x49d711a68ad1dfdf61c9c7dd5ff0ad38de597fe101a8de276634bcd38966606f:log:2', 'hash': '0x49d711a68ad1dfdf61c9c7dd5ff0ad38de597fe101a8de276634bcd38966606f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xebdc726434f2204b60b852ee0d79931e5bc0af98', 'value': 11461.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x026d53cb098cf1490000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T08:31:36.000Z'}}, {'blockNum': '0x510f13', 'uniqueId': '0xa7b57dc233d45cd6adcd2a363057352c2ff59c2d459ddab341f2cdc0d8b99966:log:39', 'hash': '0xa7b57dc233d45cd6adcd2a363057352c2ff59c2d459ddab341f2cdc0d8b99966', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe0e2262733a32454812347f59fb7e4edf053d4c9', 'value': 459.479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x18e88d54136fb58000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:14:26.000Z'}}, {'blockNum': '0x510f40', 'uniqueId': '0xb5726088ead60e522abfffa8154e6c75180c962d1ae3f341c70274dec7ac0dfc:log:107', 'hash': '0xb5726088ead60e522abfffa8154e6c75180c962d1ae3f341c70274dec7ac0dfc', 'from': '0x2e5b1a57d8598a71f5b7cfa16ad579a812502a95', 'to': '0x0038dd856804e30f920116d49963af88ea9f5bd8', 'value': 853.086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2e3ef24d281ae30000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:23:13.000Z'}}, {'blockNum': '0x510f6f', 'uniqueId': '0xbeadf04bb63419a9c4a1b1d2bac1540d3c80dbf19936e173a14ced9416e435a7:log:6', 'hash': '0xbeadf04bb63419a9c4a1b1d2bac1540d3c80dbf19936e173a14ced9416e435a7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x218b9f7a3abff608d76768745ddd7d5c5c96a6b5', 'value': 638.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22a1217f7e17880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:33:09.000Z'}}, {'blockNum': '0x510f76', 'uniqueId': '0x0288f7565e8e13afcef14a102aac1f5b053079383552bdcab4eb9746d7262c9e:log:9', 'hash': '0x0288f7565e8e13afcef14a102aac1f5b053079383552bdcab4eb9746d7262c9e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8d7a7ef81378fd4a5a099acbe6b1b34a35695a56', 'value': 1285.00264266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x45a8fe77437383e800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:35:01.000Z'}}, {'blockNum': '0x510f77', 'uniqueId': '0x0ab5cf7dbcf8520e22bdc6cc63cafac0464fa1207865f984c5ea9343322d7cc4:log:19', 'hash': '0x0ab5cf7dbcf8520e22bdc6cc63cafac0464fa1207865f984c5ea9343322d7cc4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff910cba6bfa4d4bb33387bccf3f20f3458ca7f4', 'value': 9939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021acb5540ebcf6c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:35:10.000Z'}}, {'blockNum': '0x510f7f', 'uniqueId': '0x0510aea9403401ccccf98389d9037c6ba6c90d287cb135bc793dde74082245f9:log:22', 'hash': '0x0510aea9403401ccccf98389d9037c6ba6c90d287cb135bc793dde74082245f9', 'from': '0x0038dd856804e30f920116d49963af88ea9f5bd8', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 853.086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2e3ef24d281ae30000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T09:36:44.000Z'}}, {'blockNum': '0x510fea', 'uniqueId': '0x86c6a4882f1ea53b7d8512eec33ea36f5c4bb73606c4099a02bed92af5b6ad50:log:25', 'hash': '0x86c6a4882f1ea53b7d8512eec33ea36f5c4bb73606c4099a02bed92af5b6ad50', 'from': '0xa87c038d55848579df4f9b1a562e9a927ec21ac2', 'to': '0xc72e2c01111edd04c1a371b05d01984b8cdb91c9', 'value': 694.7118769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x25a910634c9d666800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:02:28.000Z'}}, {'blockNum': '0x510ffb', 'uniqueId': '0xe61e782346ba6ceb8c078204b724482ac0703ef6521087b548dd9e30ff0da2a6:log:333', 'hash': '0xe61e782346ba6ceb8c078204b724482ac0703ef6521087b548dd9e30ff0da2a6', 'from': '0x1ec7e94bdba8c4b66f41aba85f7988b0b3a3536e', 'to': '0xc32cb77fa1398b0b0932927a28606f20df4ee075', 'value': 8025.450591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01b30f8017dadbc0f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:07:03.000Z'}}, {'blockNum': '0x511031', 'uniqueId': '0x9ddfc29fb2d208cf2d935c22b708c346e573d0066e4042ce546d02bd2395a2cd:log:1', 'hash': '0x9ddfc29fb2d208cf2d935c22b708c346e573d0066e4042ce546d02bd2395a2cd', 'from': '0xc32cb77fa1398b0b0932927a28606f20df4ee075', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 8025.450591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01b30f8017dadbc0f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:19:28.000Z'}}, {'blockNum': '0x511033', 'uniqueId': '0x60d1d32f95dbab2a3f7e20b8cd40d1f89024095b8f7c599665f24d4b4ac105b3:log:11', 'hash': '0x60d1d32f95dbab2a3f7e20b8cd40d1f89024095b8f7c599665f24d4b4ac105b3', 'from': '0xc72e2c01111edd04c1a371b05d01984b8cdb91c9', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 694.7118769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x25a910634c9d666800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:19:49.000Z'}}, {'blockNum': '0x51106a', 'uniqueId': '0x98644b3489a92c1ec37a1b6c70d776c75fa86df62f4e75057e3802d9d99f8cdd:log:16', 'hash': '0x98644b3489a92c1ec37a1b6c70d776c75fa86df62f4e75057e3802d9d99f8cdd', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x40c8515caa1857c3897c3f849982c5d6b8df335f', 'value': 1988.78618859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6bcff3e57b55fa4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:33:50.000Z'}}, {'blockNum': '0x51106b', 'uniqueId': '0x881bf197f9b8d24b0bf64290cd6ecde83aac9e085b105e657fd9f73375b087ea:log:32', 'hash': '0x881bf197f9b8d24b0bf64290cd6ecde83aac9e085b105e657fd9f73375b087ea', 'from': '0xae45b5d12b7d2083f6e9ae325c51635631c258f7', 'to': '0x81224d3743d6e134f84c7182af8bd4d123d3ca37', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:34:01.000Z'}}, {'blockNum': '0x51107b', 'uniqueId': '0x8f60bc7acb5fe1d365628c7b4a1b2b12845c6fc2c5cd43a5187936b89657e60a:log:35', 'hash': '0x8f60bc7acb5fe1d365628c7b4a1b2b12845c6fc2c5cd43a5187936b89657e60a', 'from': '0x81224d3743d6e134f84c7182af8bd4d123d3ca37', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:37:48.000Z'}}, {'blockNum': '0x51109c', 'uniqueId': '0xd83273f0152885efed9ecd20877037acb4f2cebb42bba4bd396b51caabfb3251:log:7', 'hash': '0xd83273f0152885efed9ecd20877037acb4f2cebb42bba4bd396b51caabfb3251', 'from': '0xe3094df985839ce045b2bdab9410f3155734bdb0', 'to': '0xb1824f8770bf23c3889964851df26ac19004a631', 'value': 215.72560025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bb1cb4a76d32b4400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T10:44:10.000Z'}}, {'blockNum': '0x511135', 'uniqueId': '0xb55db5d73a04373dd396c99cfd7aca72aa39debd0efc5b43573553de5141d50b:log:6', 'hash': '0xb55db5d73a04373dd396c99cfd7aca72aa39debd0efc5b43573553de5141d50b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x36bb8a019a99d65d6c05e51518cebae19bc37d33', 'value': 271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0eb0e1682e32dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T11:17:45.000Z'}}, {'blockNum': '0x511150', 'uniqueId': '0x369527e88029885f03495ceee92a8dcda838f20a50f9f4f11781491cf7a1d696:log:6', 'hash': '0x369527e88029885f03495ceee92a8dcda838f20a50f9f4f11781491cf7a1d696', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf476c1769ef7c2e1228febe67ddf9432098ef549', 'value': 2798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x97ae0cdf8f86f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T11:25:42.000Z'}}, {'blockNum': '0x511150', 'uniqueId': '0x8bf4eaab769aebf182aafd454892a81dda91f5c717eafdb48df32873246c05c3:log:45', 'hash': '0x8bf4eaab769aebf182aafd454892a81dda91f5c717eafdb48df32873246c05c3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x36bb8a019a99d65d6c05e51518cebae19bc37d33', 'value': 2671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x90cb923c6f7c5c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T11:25:42.000Z'}}, {'blockNum': '0x511177', 'uniqueId': '0xf6bc77fc0c70cba2baa7ecee11fd45e12d745bc52a6593e1b274c989b84ff5fd:log:6', 'hash': '0xf6bc77fc0c70cba2baa7ecee11fd45e12d745bc52a6593e1b274c989b84ff5fd', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x661a1ac9ff550f491ef04115ecaf5383359e3011', 'value': 2011.77693057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6d0f036b809e89e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T11:35:14.000Z'}}, {'blockNum': '0x51123d', 'uniqueId': '0xe0c99420f0b2fe53475aa6891f428dbf9157f7a81747bf247012345e4b8a9864:log:5', 'hash': '0xe0c99420f0b2fe53475aa6891f428dbf9157f7a81747bf247012345e4b8a9864', 'from': '0xae45b5d12b7d2083f6e9ae325c51635631c258f7', 'to': '0x81224d3743d6e134f84c7182af8bd4d123d3ca37', 'value': 18000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfc82e37e9a7400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:18:37.000Z'}}, {'blockNum': '0x511259', 'uniqueId': '0x63cc731e786074266ba2fd084ee02b15d3941c46f1b1aadd085a66c98c97c7fc:log:40', 'hash': '0x63cc731e786074266ba2fd084ee02b15d3941c46f1b1aadd085a66c98c97c7fc', 'from': '0x81224d3743d6e134f84c7182af8bd4d123d3ca37', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 18000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfc82e37e9a7400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:27:40.000Z'}}, {'blockNum': '0x511264', 'uniqueId': '0xed9b260ed58169ede8cecd73a6deabb616b850d98d17a9f94f032d77992c7459:log:13', 'hash': '0xed9b260ed58169ede8cecd73a6deabb616b850d98d17a9f94f032d77992c7459', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xb01a6b93a8f2dcba4ba8a022a8be09ade19683de', 'value': 19930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0438684f9e559f280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:29:12.000Z'}}, {'blockNum': '0x51127d', 'uniqueId': '0x550c0236f659dd15b76ba01fa8ba113c1e29d0d461e543a5d3994a8abfe7833e:log:32', 'hash': '0x550c0236f659dd15b76ba01fa8ba113c1e29d0d461e543a5d3994a8abfe7833e', 'from': '0xb01a6b93a8f2dcba4ba8a022a8be09ade19683de', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0438684f9e559f280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:35:04.000Z'}}, {'blockNum': '0x511288', 'uniqueId': '0xe5434158e4af829be27e792d72ef72bedc7d340cd7e881e9bd99c80ba56884ad:log:108', 'hash': '0xe5434158e4af829be27e792d72ef72bedc7d340cd7e881e9bd99c80ba56884ad', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x6776c5e7115551f165fa580841f7404474202f1c', 'value': 191.41569611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a606d2972beabcc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:37:16.000Z'}}, {'blockNum': '0x511294', 'uniqueId': '0xfed4fba5869a524ff01d0265cf4d894becfc47c6969a2f854a07169c2e55009e:log:4', 'hash': '0xfed4fba5869a524ff01d0265cf4d894becfc47c6969a2f854a07169c2e55009e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd98e36a13a3479e6289b1b7c9337daaba3961a11', 'value': 1471.53274148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4fc59e7fdc88201000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:40:11.000Z'}}, {'blockNum': '0x5112c5', 'uniqueId': '0x308178a404365c6a3c8f4fadc7b2d7f19237ae7b66e002d7003378a5677bc5e0:log:12', 'hash': '0x308178a404365c6a3c8f4fadc7b2d7f19237ae7b66e002d7003378a5677bc5e0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf848a68e16e0e88403f831c0412876a7cf8463ad', 'value': 9961.83527323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021c083c70eff68f0c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T12:52:32.000Z'}}, {'blockNum': '0x5112f9', 'uniqueId': '0x5a51a32fde0f749efe24d500c5c30f683ce7053113dfc3bbdde4d31c6e44b952:log:35', 'hash': '0x5a51a32fde0f749efe24d500c5c30f683ce7053113dfc3bbdde4d31c6e44b952', 'from': '0xf848a68e16e0e88403f831c0412876a7cf8463ad', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9961.83527323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021c083c70eff68f0c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:04:13.000Z'}}, {'blockNum': '0x511313', 'uniqueId': '0xe5198b7aa6b439d6d2f1f809c5563dda8d1a84874997456a9c4588d40d56e655:log:29', 'hash': '0xe5198b7aa6b439d6d2f1f809c5563dda8d1a84874997456a9c4588d40d56e655', 'from': '0xc1ed6b9780528942d5a4a74d4292cd3651b9b2e0', 'to': '0xa15e4f13d8a9cdac8bc4d12ec1d2ddc3aec19753', 'value': 1043.2027286136101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x388d589a8c9474a878', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:10:24.000Z'}}, {'blockNum': '0x511361', 'uniqueId': '0xb1b1bdcb0ce6cad59d4006da1c2cfd7dbc11e9784d62bc0e2735b1b355de2430:log:10', 'hash': '0xb1b1bdcb0ce6cad59d4006da1c2cfd7dbc11e9784d62bc0e2735b1b355de2430', 'from': '0xa15e4f13d8a9cdac8bc4d12ec1d2ddc3aec19753', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1043.2027286136101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x388d589a8c9474a878', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:31:25.000Z'}}, {'blockNum': '0x51136b', 'uniqueId': '0x4ab061e316958d520d4632cbe90075e7061b1577d485faece6b06406dd6288df:log:17', 'hash': '0x4ab061e316958d520d4632cbe90075e7061b1577d485faece6b06406dd6288df', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xb21840f0f86121f41e9411321f96303e3b61ed51', 'value': 491.66323671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa732b4d822587c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:33:25.000Z'}}, {'blockNum': '0x511387', 'uniqueId': '0xef68b29a09999df26ba89b354041edd76e2f56bf90d438ea8d67e1ee8af3e059:log:10', 'hash': '0xef68b29a09999df26ba89b354041edd76e2f56bf90d438ea8d67e1ee8af3e059', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x59322a64e4d27996089bcf289ad05eb6d0d61e72', 'value': 497.43737516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1af754912bfe853000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:40:46.000Z'}}, {'blockNum': '0x511388', 'uniqueId': '0xc6f529e5820a23b1577a64523cc20eec542835566eec68b3338f26cadc27f0e4:log:5', 'hash': '0xc6f529e5820a23b1577a64523cc20eec542835566eec68b3338f26cadc27f0e4', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x49f1189e1156f4f404941a33e4bff6475e9d6a07', 'value': 943.46343441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x33252f72e9921a2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T13:40:50.000Z'}}, {'blockNum': '0x511432', 'uniqueId': '0x2cf729afbbcff242445528ca0dfeb94a3470b9405e435723c9d20b3c4b305adb:log:7', 'hash': '0x2cf729afbbcff242445528ca0dfeb94a3470b9405e435723c9d20b3c4b305adb', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x00a4078466b7fa83bc74e5b926827ef1198455a1', 'value': 233.635285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0caa5745dace265000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:21:02.000Z'}}, {'blockNum': '0x511446', 'uniqueId': '0x8c0d67f926146c4858d3312a06147877aa9b909c55497e211934395718f30509:log:31', 'hash': '0x8c0d67f926146c4858d3312a06147877aa9b909c55497e211934395718f30509', 'from': '0x3a824bbd72f16d4517b86997c083e1d314f11984', 'to': '0x42e98d7b1a9edbb77668bd5f000976f25b8c7f76', 'value': 159.01158937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x089ebaa60d71214400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:24:45.000Z'}}, {'blockNum': '0x511450', 'uniqueId': '0x713f449218ffa3bea67c4842ac2a008895c685ba0520e0dbb9ad6493061a261e:log:27', 'hash': '0x713f449218ffa3bea67c4842ac2a008895c685ba0520e0dbb9ad6493061a261e', 'from': '0x28b3d54ed3a41f61059dc0482415d7ad99547f37', 'to': '0x997172cf4dba7d61faba625018b69cca5151fc19', 'value': 251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d9b5322251f0c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:26:38.000Z'}}, {'blockNum': '0x51145d', 'uniqueId': '0xa68838f385c00ebf0c4fe0dba4472ea00402e8ed7710e85397042b2872cb848d:log:24', 'hash': '0xa68838f385c00ebf0c4fe0dba4472ea00402e8ed7710e85397042b2872cb848d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 293122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3e122ceaf51592c80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:29:02.000Z'}}, {'blockNum': '0x511462', 'uniqueId': '0x748e58dea17431f77cfc56740c8f5c68ae0151bf3b46a40d8429775ea32c2322:log:41', 'hash': '0x748e58dea17431f77cfc56740c8f5c68ae0151bf3b46a40d8429775ea32c2322', 'from': '0x42e98d7b1a9edbb77668bd5f000976f25b8c7f76', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 159.01158937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x089ebaa60d71214400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:30:08.000Z'}}, {'blockNum': '0x511473', 'uniqueId': '0xeb0182be866844d02f7333412849a669ca8081e2a58cb64b07a131e50f647f58:log:29', 'hash': '0xeb0182be866844d02f7333412849a669ca8081e2a58cb64b07a131e50f647f58', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 293122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3e122ceaf51592c80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:34:16.000Z'}}, {'blockNum': '0x5114a3', 'uniqueId': '0xe90879d4fd941279c9af193898a85b399917c2030097015ec7a07815873db607:log:6', 'hash': '0xe90879d4fd941279c9af193898a85b399917c2030097015ec7a07815873db607', 'from': '0x997172cf4dba7d61faba625018b69cca5151fc19', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d9b5322251f0c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T14:45:31.000Z'}}, {'blockNum': '0x511514', 'uniqueId': '0x6b3b447a19872a4afc563abe7da73c57b713395d59ad3f99a35f5d93de7be9aa:log:5', 'hash': '0x6b3b447a19872a4afc563abe7da73c57b713395d59ad3f99a35f5d93de7be9aa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xce565d6b238abf43d24be6008a922bcca4258942', 'value': 700452.19807072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x945396f96e8584118000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:09:28.000Z'}}, {'blockNum': '0x51152b', 'uniqueId': '0x6d446460a09054dc2ea67d7ad4a65423c2101de1f242e7779ae5f91f314fb5ac:log:112', 'hash': '0x6d446460a09054dc2ea67d7ad4a65423c2101de1f242e7779ae5f91f314fb5ac', 'from': '0xce565d6b238abf43d24be6008a922bcca4258942', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 700452.19807072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x945396f96e8584118000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:14:20.000Z'}}, {'blockNum': '0x511545', 'uniqueId': '0x0dbe678aa7bddd04b7bd7ebffcb2847835227d261905cee4fd7f7100587a1017:log:11', 'hash': '0x0dbe678aa7bddd04b7bd7ebffcb2847835227d261905cee4fd7f7100587a1017', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0x711bb8904f6f15a748642a959d058f9f8efcde3f', 'value': 1456.59042085402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4ef640b66b80984900', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:20:55.000Z'}}, {'blockNum': '0x511547', 'uniqueId': '0x09c4a2b44bb20aea09d2e8d84a4b5972f294dd21a164c473ac8a69383b0539a7:log:4', 'hash': '0x09c4a2b44bb20aea09d2e8d84a4b5972f294dd21a164c473ac8a69383b0539a7', 'from': '0x03747f06215b44e498831da019b27f53e483599f', 'to': '0x4aee792a88edda29932254099b9d1e06d537883f', 'value': 41334.4774195452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08c0bf1b55a10c94aad1', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:21:06.000Z'}}, {'blockNum': '0x511550', 'uniqueId': '0xab09b0160e7ed1e886faf65c713c5bb19b3257d282da227c924f0a7640216158:log:21', 'hash': '0xab09b0160e7ed1e886faf65c713c5bb19b3257d282da227c924f0a7640216158', 'from': '0x159d70731be6417da3f4776637bca99029206bcd', 'to': '0x80a719d9a4e637cab82c969b87bb2926f82436b0', 'value': 632.38110484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22480d005a7141d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:22:56.000Z'}}, {'blockNum': '0x511565', 'uniqueId': '0xfd9c5cfb9d414b644093416d272125bb9fe0542446673faeb9e0a78aff1d7664:log:6', 'hash': '0xfd9c5cfb9d414b644093416d272125bb9fe0542446673faeb9e0a78aff1d7664', 'from': '0x4aee792a88edda29932254099b9d1e06d537883f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 41334.47741955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08c0bf1b55a22aabac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:28:36.000Z'}}, {'blockNum': '0x511574', 'uniqueId': '0x3af6c5c87d4d020fe03b94736dd651a26f8f613c72441a61c4161bcb8785b022:log:29', 'hash': '0x3af6c5c87d4d020fe03b94736dd651a26f8f613c72441a61c4161bcb8785b022', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x136caa6bd0a9fb7ea341de441370cffa431123fc', 'value': 70, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cb71f51fc5580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:32:15.000Z'}}, {'blockNum': '0x51158f', 'uniqueId': '0x069c052645860c0e3b8cbb408cb76ded3aecc0885e71ac7fcd4e44b81a28dfc4:log:16', 'hash': '0x069c052645860c0e3b8cbb408cb76ded3aecc0885e71ac7fcd4e44b81a28dfc4', 'from': '0x80a719d9a4e637cab82c969b87bb2926f82436b0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 632.38110484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22480d005a7141d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:39:14.000Z'}}, {'blockNum': '0x511596', 'uniqueId': '0x6a112819b2c61046ea3e91bba0444850f09d5d7dc19057e6666c91b4b11ea320:log:57', 'hash': '0x6a112819b2c61046ea3e91bba0444850f09d5d7dc19057e6666c91b4b11ea320', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'value': 2017.53065339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6d5edcbfec34b28c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:42:06.000Z'}}, {'blockNum': '0x511597', 'uniqueId': '0xacccb9601abdf7c76202fe5b60fcdb8e9328015e5d9d9763145760d9bc8883d3:log:2', 'hash': '0xacccb9601abdf7c76202fe5b60fcdb8e9328015e5d9d9763145760d9bc8883d3', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x8a94a96b9f9aa16dbcbc7be5284a7a33d96d3b9c', 'value': 787.45378893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2ab01dd8ec40139400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:42:14.000Z'}}, {'blockNum': '0x51159e', 'uniqueId': '0x01357c3660b4766c3d5a72bb486a6108a16aeebc22509bcb45e6e3e10c872bac:log:11', 'hash': '0x01357c3660b4766c3d5a72bb486a6108a16aeebc22509bcb45e6e3e10c872bac', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x8a94a96b9f9aa16dbcbc7be5284a7a33d96d3b9c', 'value': 428.8077977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x173ee754164a10a800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:43:37.000Z'}}, {'blockNum': '0x5115eb', 'uniqueId': '0xc1204dc3c33725bb418f7f46b15bd9e3789abaf203504f4c9e32f9150cba23f9:log:17', 'hash': '0xc1204dc3c33725bb418f7f46b15bd9e3789abaf203504f4c9e32f9150cba23f9', 'from': '0xef469af47f829509710b246e1d85b1b8b8ffe5d1', 'to': '0x53e6053dd0175a739c4aec08c262b51a11e2372d', 'value': 1740.62479672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5e5c058664341de000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T15:59:41.000Z'}}, {'blockNum': '0x51160b', 'uniqueId': '0x09e6ae6a7d6ac27587320dbbee04fbfc9b8b1203c702f92a972c45828c8885db:log:49', 'hash': '0x09e6ae6a7d6ac27587320dbbee04fbfc9b8b1203c702f92a972c45828c8885db', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbd3e7d81c7059e1eef3c9ae0870dfa3d1151af8', 'value': 33281.81588708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x070c35fa8eae6b9f1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:08:16.000Z'}}, {'blockNum': '0x511618', 'uniqueId': '0x645e92658659203b37eaef4bcc088853ea9d559116e6bedcb12da836c59a06b5:log:29', 'hash': '0x645e92658659203b37eaef4bcc088853ea9d559116e6bedcb12da836c59a06b5', 'from': '0x5ef75ac9e72e486cfa6044b15e305ba2d7a06158', 'to': '0xbe66edc50d69dca4f50c3679738b2637dddf4600', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:13:16.000Z'}}, {'blockNum': '0x51164a', 'uniqueId': '0x10d27f1f39c75d06085a54d47bd602eba36745a45ebb1de3187838c6b2d9359e:log:77', 'hash': '0x10d27f1f39c75d06085a54d47bd602eba36745a45ebb1de3187838c6b2d9359e', 'from': '0xcbd3e7d81c7059e1eef3c9ae0870dfa3d1151af8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33281.81588708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x070c35fa8eae6b9f1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:24:11.000Z'}}, {'blockNum': '0x511651', 'uniqueId': '0xba0110dae4b2b9fea2130734cc88696f128b637e07bb56a99179a5d1e756745b:log:3', 'hash': '0xba0110dae4b2b9fea2130734cc88696f128b637e07bb56a99179a5d1e756745b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa179460b2643e694f4e480a4b7536c4678db5537', 'value': 68.788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03baa0118ba9920000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:26:22.000Z'}}, {'blockNum': '0x5116c7', 'uniqueId': '0xe88daaefa12303059b49ea51b93e076c462bbc3a0c49ec3b9517407fac7712df:log:12', 'hash': '0xe88daaefa12303059b49ea51b93e076c462bbc3a0c49ec3b9517407fac7712df', 'from': '0x12962660056e600cccc6bcad4b578eba7975b862', 'to': '0xab6588982850b657d69b8053aaa964abf5421991', 'value': 6184.30443036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x014f4076f1903244f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:50:31.000Z'}}, {'blockNum': '0x5116e3', 'uniqueId': '0x7ae042b767286b373e041d4918b2c3ea991fb1522bb31dd89696ef998fd8ce94:log:6', 'hash': '0x7ae042b767286b373e041d4918b2c3ea991fb1522bb31dd89696ef998fd8ce94', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x2d415aadbb31d3dd3d6129481b211a717c2d4241', 'value': 2402.20269451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8239425f3dd2c0cc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T16:56:05.000Z'}}, {'blockNum': '0x511717', 'uniqueId': '0xedb42a3e31b7a357d2ab79d03f01ce5ab7eaabe5f139c75c56308f715f71b0c5:log:0', 'hash': '0xedb42a3e31b7a357d2ab79d03f01ce5ab7eaabe5f139c75c56308f715f71b0c5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xce565d6b238abf43d24be6008a922bcca4258942', 'value': 165049.42828306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22f358f18a180de20800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:10:22.000Z'}}, {'blockNum': '0x511720', 'uniqueId': '0xe87ace95e50ce231652d21531db553682ea7d726b2ad7ca176855ffab91a2c76:log:40', 'hash': '0xe87ace95e50ce231652d21531db553682ea7d726b2ad7ca176855ffab91a2c76', 'from': '0xce565d6b238abf43d24be6008a922bcca4258942', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 165049.42828306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22f358f18a180de20800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:14:04.000Z'}}, {'blockNum': '0x51173a', 'uniqueId': '0x3a5cbe513f2aac216304e9014d5bfd3653caa2143af25f4c819397194174b406:log:11', 'hash': '0x3a5cbe513f2aac216304e9014d5bfd3653caa2143af25f4c819397194174b406', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd18345a8217c53e991566cafae2d9a09d6eaf3a6', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:18:08.000Z'}}, {'blockNum': '0x511790', 'uniqueId': '0x91ed698407e9d8f31c70afdfc7c1f5364cff881d8031d942e6d79bcbe52b7d87:log:31', 'hash': '0x91ed698407e9d8f31c70afdfc7c1f5364cff881d8031d942e6d79bcbe52b7d87', 'from': '0x8efba25385899bca5a1b6b4890b4f3e05e5dc3d1', 'to': '0xc6bbc525320fdbbd1bd2c493ea9575967be36f71', 'value': 1190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x408291471c1ad80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:39:23.000Z'}}, {'blockNum': '0x5117a8', 'uniqueId': '0xf8b02673570bcb9d1da77ab1932911c2d630c736633c06feb0e6d66f5d469bb6:log:85', 'hash': '0xf8b02673570bcb9d1da77ab1932911c2d630c736633c06feb0e6d66f5d469bb6', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfebc19a41653160bb9cd90dd33a01d8f12edc0f3', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:44:19.000Z'}}, {'blockNum': '0x5117b6', 'uniqueId': '0x5cad96e967e31c9ce714a3deec8379de55d1f9c516b2e9ad22e5132f39d082a8:log:32', 'hash': '0x5cad96e967e31c9ce714a3deec8379de55d1f9c516b2e9ad22e5132f39d082a8', 'from': '0xfebc19a41653160bb9cd90dd33a01d8f12edc0f3', 'to': '0xcd996484b79b0532a820587a684b553b14f17d6d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:48:03.000Z'}}, {'blockNum': '0x5117d9', 'uniqueId': '0x90c4b687a5d35e3496460bdf8679f2df8c0c26ddad434accb453b0e6e81dc0ea:log:27', 'hash': '0x90c4b687a5d35e3496460bdf8679f2df8c0c26ddad434accb453b0e6e81dc0ea', 'from': '0xc6bbc525320fdbbd1bd2c493ea9575967be36f71', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x408291471c1ad80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T17:57:08.000Z'}}, {'blockNum': '0x511813', 'uniqueId': '0x2c848e89f4e1cc1f65446793bd8284ed97b30264a14d12f7d671143af374773f:log:3', 'hash': '0x2c848e89f4e1cc1f65446793bd8284ed97b30264a14d12f7d671143af374773f', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x2e3be188a4e2e921295a39373f250951fdd47cdf', 'value': 832.73742217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2d248da16e81590400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:08:41.000Z'}}, {'blockNum': '0x51181e', 'uniqueId': '0xc91bcca6067685a54c7dd3c50dd9aac9ec46e351ec556dc47864109b232a1251:log:15', 'hash': '0xc91bcca6067685a54c7dd3c50dd9aac9ec46e351ec556dc47864109b232a1251', 'from': '0x409b973e98df40e05bf6106760fad75448b7a644', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdefe2aa', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:11:04.000Z'}}, {'blockNum': '0x511871', 'uniqueId': '0x9cab58da19c18bbd248f53b7e486feeef3dab4fac5d5fe2981b09d3d8626d3f3:log:4', 'hash': '0x9cab58da19c18bbd248f53b7e486feeef3dab4fac5d5fe2981b09d3d8626d3f3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfb5607de3ddb810dbcad532b0935a08cae385728', 'value': 24799.746384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0540659e358f72250000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:08.000Z'}}, {'blockNum': '0x511871', 'uniqueId': '0xda796391221e5e6e90f1ef23db2b9947beb0484237b7a5a0454afbe20e3e892c:log:34', 'hash': '0xda796391221e5e6e90f1ef23db2b9947beb0484237b7a5a0454afbe20e3e892c', 'from': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'to': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'value': 5000.000257457907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf14f0570313e8b', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:08.000Z'}}, {'blockNum': '0x511873', 'uniqueId': '0xe4b905dbf358c8e042ac91f67b9ef4cafb4b24450ac27015ffb6a670a50d9992:log:7', 'hash': '0xe4b905dbf358c8e042ac91f67b9ef4cafb4b24450ac27015ffb6a670a50d9992', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 15379.48317235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0341b9343d421b766c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:35.000Z'}}, {'blockNum': '0x511874', 'uniqueId': '0xc0db5b3513bfd1e1949b416276fe7a0d1d2d259fca1a61a7edf659dc8572e1ff:log:6', 'hash': '0xc0db5b3513bfd1e1949b416276fe7a0d1d2d259fca1a61a7edf659dc8572e1ff', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 40752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08a12b9bd6a67ec00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:39.000Z'}}, {'blockNum': '0x511874', 'uniqueId': '0xb6b34f867a2000f7d7d96fe7963f4b9993275dcb0699b9403210363107890cbf:log:39', 'hash': '0xb6b34f867a2000f7d7d96fe7963f4b9993275dcb0699b9403210363107890cbf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9036ef5df09eac917b3b3629733c7b5b62d49fc1', 'value': 14097.56433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02fc3b01a209bbbca000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:39.000Z'}}, {'blockNum': '0x511875', 'uniqueId': '0xa5769ced5fe43f46528f4635a4aff02c8d831f2c902be2d02f495f90f78878c2:log:13', 'hash': '0xa5769ced5fe43f46528f4635a4aff02c8d831f2c902be2d02f495f90f78878c2', 'from': '0xdb2f8004ef60ca5ba2b2ae9b8825b3d37205ff3d', 'to': '0x35aeab26f479d7dc16891ad5a66bc8fe159180bc', 'value': 2750.1998755162376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9516b0b7993cdc31d2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:31:52.000Z'}}, {'blockNum': '0x511877', 'uniqueId': '0x4f92a53f0b562eec6015a118ec4d2c1a7402843e0013d085460c3e28ae21bfab:log:38', 'hash': '0x4f92a53f0b562eec6015a118ec4d2c1a7402843e0013d085460c3e28ae21bfab', 'from': '0x35aeab26f479d7dc16891ad5a66bc8fe159180bc', 'to': '0xfbce0152e2ecfe31832793c1b2d633fd8f656522', 'value': 2750.1998755162376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9516b0b7993cdc31d2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:10.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x20154883b2b00d8903bfedab9b17068a80e68886df207e1ea16bea239e96c72d:log:52', 'hash': '0x20154883b2b00d8903bfedab9b17068a80e68886df207e1ea16bea239e96c72d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 7701.79286062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01a183d8d8e2eeb2f800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x5621b67526c99b84aa82fb77718ddd35764e84868dbcf4c2b62d590bfef0f616:log:53', 'hash': '0x5621b67526c99b84aa82fb77718ddd35764e84868dbcf4c2b62d590bfef0f616', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf8851b834dfff1beeaea24ccde31acce8e2739b2', 'value': 4174.09514049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe24734e6f8c6ace400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0xee7794d9b3003b4b6da66eaa97c38862abbb0e1de1abe9a0c2f666acd0cff651:log:54', 'hash': '0xee7794d9b3003b4b6da66eaa97c38862abbb0e1de1abe9a0c2f666acd0cff651', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 26342.66227224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x059409e0973225a56000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x4e6c03744573b4c8ef478fbefe38396a374d83aa2aadc1bf4cb9a347c636c0b9:log:55', 'hash': '0x4e6c03744573b4c8ef478fbefe38396a374d83aa2aadc1bf4cb9a347c636c0b9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 43515.5704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0936fbda336d46ee0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x8ebc595915ecd48aa6f5932d75cf0ab5a8ee946154e88f9da9288c0382839b81:log:56', 'hash': '0x8ebc595915ecd48aa6f5932d75cf0ab5a8ee946154e88f9da9288c0382839b81', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf2f32342706c68ec18d498fc720f4cba5fcfb6c8', 'value': 113268.45536137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17fc4b96bd2b60990400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0xe55884c87e2d9fbaa88def4a55ff011405270fec0a785d0510b76b25ee967917:log:57', 'hash': '0xe55884c87e2d9fbaa88def4a55ff011405270fec0a785d0510b76b25ee967917', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 21781.0848588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x049cc1461df1f544e000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0xb267aee7b728eb63174bc324592ec602138962d6dffde0e3fe25b844e0a055b2:log:58', 'hash': '0xb267aee7b728eb63174bc324592ec602138962d6dffde0e3fe25b844e0a055b2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 18160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03d874a0683245c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0xd2580bbe192d40bd6780018dbeb4c1b7bece0dd2aaee1d766db061ea1a2852c9:log:70', 'hash': '0xd2580bbe192d40bd6780018dbeb4c1b7bece0dd2aaee1d766db061ea1a2852c9', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'value': 3048.662182139337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa544afd626b6669ad2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511878', 'uniqueId': '0x8bef132be4d12ed9762a18e078e823e2bb1939776484922998e27b81fadc1e7c:log:81', 'hash': '0x8bef132be4d12ed9762a18e078e823e2bb1939776484922998e27b81fadc1e7c', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x5a5d9c95a3f328e903f3b4d47aa5556e1f286b27', 'value': 19999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c25e0dcc1bd1c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:16.000Z'}}, {'blockNum': '0x511879', 'uniqueId': '0x4e6fa375e687e1cbfd0d88e3214b7de532758d4033d1f50b9042668062f0558a:log:13', 'hash': '0x4e6fa375e687e1cbfd0d88e3214b7de532758d4033d1f50b9042668062f0558a', 'from': '0x0b803ccb9da1fcbfa843abdf9182a7ea1097ccd2', 'to': '0xe51f926179ad4c39fd27ecdf75293631c0e627bd', 'value': 438.49480512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17c5567e02f7bd0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:33:33.000Z'}}, {'blockNum': '0x51187b', 'uniqueId': '0x777b6fa12f3288dc11f286ed03923bb0f9e32ab4e2ce7279d76d19e1bd6eabc4:log:28', 'hash': '0x777b6fa12f3288dc11f286ed03923bb0f9e32ab4e2ce7279d76d19e1bd6eabc4', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15379.48317235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0341b9343d421b766c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:14.000Z'}}, {'blockNum': '0x51187b', 'uniqueId': '0x3243cf6cb11e1775112ec63ab40e22e04fda2484ded0d2777b91712d03bfcf27:log:29', 'hash': '0x3243cf6cb11e1775112ec63ab40e22e04fda2484ded0d2777b91712d03bfcf27', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08a12b9bd6a67ec00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:14.000Z'}}, {'blockNum': '0x51187b', 'uniqueId': '0xda420d11c4db835cb8626e1d96f517efef5527312c4c44e4aae0828ee3a6802d:log:30', 'hash': '0xda420d11c4db835cb8626e1d96f517efef5527312c4c44e4aae0828ee3a6802d', 'from': '0xfb5607de3ddb810dbcad532b0935a08cae385728', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24922.67752336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x05470fa1597dbcfc4000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:14.000Z'}}, {'blockNum': '0x51187c', 'uniqueId': '0x694da2ce952ff756c87767896d06c848341a8d35075ef811fe66fcef0188e15f:log:20', 'hash': '0x694da2ce952ff756c87767896d06c848341a8d35075ef811fe66fcef0188e15f', 'from': '0x316d8ef68a18fd8dfb671a854654b76ff6b5c571', 'to': '0xc94727e72519c3b3434f5af6d3886615f82c2ec6', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:56.000Z'}}, {'blockNum': '0x51187c', 'uniqueId': '0x4488042a4be2d4b25a238849c778f2fbae40e2ca791990606e4e2576302309fa:log:24', 'hash': '0x4488042a4be2d4b25a238849c778f2fbae40e2ca791990606e4e2576302309fa', 'from': '0x0072ffb8069bdd4f791fbf9352a7226c7f46ecd9', 'to': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'value': 3048.662182139337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa544afd626b6669ad2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:34:56.000Z'}}, {'blockNum': '0x51187e', 'uniqueId': '0x5d4082a451a3aa586f1e33bd534fb701af2c17eba86f846dcaeb6771102742c2:log:189', 'hash': '0x5d4082a451a3aa586f1e33bd534fb701af2c17eba86f846dcaeb6771102742c2', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 5689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x013466bc1e62dd440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:35:39.000Z'}}, {'blockNum': '0x51187e', 'uniqueId': '0xdc294d41f39108f5631acb7033849ec7713457610919452f74c291df5971b869:log:192', 'hash': '0xdc294d41f39108f5631acb7033849ec7713457610919452f74c291df5971b869', 'from': '0x36948b49cca957e68410886e7caa35f92ea4626f', 'to': '0x4e065a633144e470176e956ca275ed1b1e755b24', 'value': 390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x15245655b102580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:35:39.000Z'}}, {'blockNum': '0x511881', 'uniqueId': '0x30c6ba258d6d4d0b627cc23fdf1370cbfe62505f6c65b1685d3d934ae191c4af:log:61', 'hash': '0x30c6ba258d6d4d0b627cc23fdf1370cbfe62505f6c65b1685d3d934ae191c4af', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x05d34963274c08d62e3fa72ed0bb45fa8bf965f1', 'value': 189945.38273851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2838f5b77ae7e6ad8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:36:04.000Z'}}, {'blockNum': '0x511881', 'uniqueId': '0x78f2e203728216dc24829c7eacb3eb2ed21ce387ccd44be01bbd8393a7ee67b1:log:66', 'hash': '0x78f2e203728216dc24829c7eacb3eb2ed21ce387ccd44be01bbd8393a7ee67b1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 79204.72561207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x10c5b2601b8e6425fc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:36:04.000Z'}}, {'blockNum': '0x511881', 'uniqueId': '0xb1de6822fe24062b7cc29220a177be40a80b29909bccb606a61c3ceabf792957:log:70', 'hash': '0xb1de6822fe24062b7cc29220a177be40a80b29909bccb606a61c3ceabf792957', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 312114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4217bbdd2527dd880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:36:04.000Z'}}, {'blockNum': '0x511886', 'uniqueId': '0x2adc70ab624c4bc4fc6349827aa647a70289ca0eca9228ec851c753fb393ff88:log:0', 'hash': '0x2adc70ab624c4bc4fc6349827aa647a70289ca0eca9228ec851c753fb393ff88', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x562954ee62631fafcea070630326560339b32f1c', 'value': 5285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011e801bcadeb3740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:36:46.000Z'}}, {'blockNum': '0x511888', 'uniqueId': '0x0bd6509b457173242d925a0c3a15eef9a425f8db02a805bc394e127eb8e17981:log:10', 'hash': '0x0bd6509b457173242d925a0c3a15eef9a425f8db02a805bc394e127eb8e17981', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 23500.41176471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04f9f5ba557c66477c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:37:23.000Z'}}, {'blockNum': '0x511888', 'uniqueId': '0x179e450b27ecf8be2095f90b8c2d3eb2772eec94c3f5012bc2834a64b6243720:log:66', 'hash': '0x179e450b27ecf8be2095f90b8c2d3eb2772eec94c3f5012bc2834a64b6243720', 'from': '0xa5e2a2da7450b4585ac00ce543954a6d900cd020', 'to': '0x2996ce512572d771246a0967ba6430b0c9dfc319', 'value': 14154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02ff4a3568e4dee80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:37:23.000Z'}}, {'blockNum': '0x511888', 'uniqueId': '0xa0de8e192e8968ff72d0b2eedd973f06c58355aadd75af06fa46fc53a8a6b7ad:log:70', 'hash': '0xa0de8e192e8968ff72d0b2eedd973f06c58355aadd75af06fa46fc53a8a6b7ad', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 23408.59014479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04f4fb7268a915bf5c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:37:23.000Z'}}, {'blockNum': '0x511888', 'uniqueId': '0x589359461527c168bffb713f315dd613a20e0964bb6f676e95e2889ce81c143c:log:74', 'hash': '0x589359461527c168bffb713f315dd613a20e0964bb6f676e95e2889ce81c143c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1a9b81da030f71a2f131a5524d21b5634c3501f3', 'value': 331664.53963529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x463b921abc40ecf70400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:37:23.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0x5a56929ccf452bf36213b7684c9ceca7c891e7f9a890a1b878bcbc92c95b8680:log:6', 'hash': '0x5a56929ccf452bf36213b7684c9ceca7c891e7f9a890a1b878bcbc92c95b8680', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 15803.63121536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0358b770cb24a79e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0xcbe334808375e7083b1b02341d748f64c776b03672b0c29d33719020eadb493c:log:7', 'hash': '0xcbe334808375e7083b1b02341d748f64c776b03672b0c29d33719020eadb493c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x518766e93438e9340d071101cea6356f205db470', 'value': 24971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0549ae3d45f8c74c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0x38e8f9ec86f2a3d8c051e74064c76d5d2daffab6bbe9b67cefaf1b3fab2a7792:log:8', 'hash': '0x38e8f9ec86f2a3d8c051e74064c76d5d2daffab6bbe9b67cefaf1b3fab2a7792', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x37fbb1db781a9b6e2da9b7ed6fcb34be4267b8b8', 'value': 51565.29347826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0aeb5c337dd7f62d8800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0xc2984149f700dcf1c5ba70167f298dbcfb20c6a97135bb12af436a3bd8e4191c:log:9', 'hash': '0xc2984149f700dcf1c5ba70167f298dbcfb20c6a97135bb12af436a3bd8e4191c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbe9f236a87d88cf163a1e973638812aa64fbddf3', 'value': 10804.76101156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0249ba2e3defc0141000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0xfbdd36be1c301ae0b2a9fcc5e659d6e0cfd035cd18a2cb85ad5690f19d7d7604:log:10', 'hash': '0xfbdd36be1c301ae0b2a9fcc5e659d6e0cfd035cd18a2cb85ad5690f19d7d7604', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 34971.11554323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0767c9b88da815e5ec00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x511889', 'uniqueId': '0x846f982c099215692b0c5943e215af0eccd79c5af8f06fdffc402a1593d204e6:log:11', 'hash': '0x846f982c099215692b0c5943e215af0eccd79c5af8f06fdffc402a1593d204e6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 101670.73778881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x158794ece0447026e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:38:27.000Z'}}, {'blockNum': '0x51188c', 'uniqueId': '0x8eafc437b989020063dc9477ee0b7b596aaa72224cc3b0e7f03575527fe6ce82:log:4', 'hash': '0x8eafc437b989020063dc9477ee0b7b596aaa72224cc3b0e7f03575527fe6ce82', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 10362.23126013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0231bcd8bda251045400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:06.000Z'}}, {'blockNum': '0x51188c', 'uniqueId': '0x1ee64924d44ef45ace4ccbc9ed61c7ff8df9a1d9641598ba3ea62fbb8d4fee47:log:224', 'hash': '0x1ee64924d44ef45ace4ccbc9ed61c7ff8df9a1d9641598ba3ea62fbb8d4fee47', 'from': '0x7f1efd6288d0e671712ed84bc668ab4d0f544fe3', 'to': '0xb5f2e775ebfe656d269021a619f975467eb429df', 'value': 180.98319591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfa579ca427abc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:06.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0x570ea066e931068bb5af823bb0901d020c8941d6d7f1783b0c3300b9df042f48:log:0', 'hash': '0x570ea066e931068bb5af823bb0901d020c8941d6d7f1783b0c3300b9df042f48', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 22297.57862826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04b8c11098c48b116800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0xa755d381be22998dc2f96c68ea5d66d87eda834821e1990f039027d487ee10e3:log:1', 'hash': '0xa755d381be22998dc2f96c68ea5d66d87eda834821e1990f039027d487ee10e3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'value': 21549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04902c7310813c940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0xe544a09c117ac7b1290218644f5a930e434b4504e26bb31af78cd58145d85de6:log:2', 'hash': '0xe544a09c117ac7b1290218644f5a930e434b4504e26bb31af78cd58145d85de6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3271.34740529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb15710acc51646a400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0x8c89836f84e3f8c3e76f7323e28235f75006f9c54d3c7a77972a7d7cff2a4e6f:log:3', 'hash': '0x8c89836f84e3f8c3e76f7323e28235f75006f9c54d3c7a77972a7d7cff2a4e6f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x708a2fd9321585465ab3de4bab2707ac5fede3bc', 'value': 2971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa10ee856f7a58c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0x8eb203dfa7450e7dc9bb72615c5b1de9f3776b47609ca0fb980519a6abfdf099:log:4', 'hash': '0x8eb203dfa7450e7dc9bb72615c5b1de9f3776b47609ca0fb980519a6abfdf099', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4865.7685239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0107c61a648a6049d800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x51188d', 'uniqueId': '0xb006ff696cd4c8c93beba859585456539f5a7d5a94caa754ea4d27c65a7dac25:log:5', 'hash': '0xb006ff696cd4c8c93beba859585456539f5a7d5a94caa754ea4d27c65a7dac25', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 23363.84363852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04f28e76e248fa9bb000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:07.000Z'}}, {'blockNum': '0x511890', 'uniqueId': '0x35ab9176fd7c28a9242da6ec6d6bbefc3a87cb9d9daa347ceee2b9ab95af8862:log:22', 'hash': '0x35ab9176fd7c28a9242da6ec6d6bbefc3a87cb9d9daa347ceee2b9ab95af8862', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 21981.368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04a79cc2c5b892ac0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:22.000Z'}}, {'blockNum': '0x511892', 'uniqueId': '0x3fd6ad3d26c3db50260e4141deb8e7a4ce0ab6a39f49e4bfb2e9ac1133b2b580:log:5', 'hash': '0x3fd6ad3d26c3db50260e4141deb8e7a4ce0ab6a39f49e4bfb2e9ac1133b2b580', 'from': '0xf8fdddec79f00db440aef12b4ecd7d0eac44d053', 'to': '0xd1c7ed7d274acf23c0cdff0609ebec75c76a369f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:41.000Z'}}, {'blockNum': '0x511893', 'uniqueId': '0x3c6cec4ff56a0bb7bf054a38c5760199a0c83113cde820f82fc90025c3a7e05e:log:338', 'hash': '0x3c6cec4ff56a0bb7bf054a38c5760199a0c83113cde820f82fc90025c3a7e05e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa5dfa5df584febae49aeed21d0687930ad0b1e5d', 'value': 182.756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09e83fbdb79b4a0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:39:51.000Z'}}, {'blockNum': '0x511894', 'uniqueId': '0xe1d4342e398084accb49ee28c64ec192cc295e27b9388c2a76027819e91d2826:log:45', 'hash': '0xe1d4342e398084accb49ee28c64ec192cc295e27b9388c2a76027819e91d2826', 'from': '0x9bd0404bbf339481efc75e69c88a92983e613b2a', 'to': '0x7a8c586083ee1b4c84da326cf9b412e5275e9835', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:00.000Z'}}, {'blockNum': '0x511895', 'uniqueId': '0xdf9548dd686f83a8d13108ee4f01b607ec12091eb3b79262564af9120d210507:log:57', 'hash': '0xdf9548dd686f83a8d13108ee4f01b607ec12091eb3b79262564af9120d210507', 'from': '0x03747f06215b44e498831da019b27f53e483599f', 'to': '0x3d510bd5289aafdd243a63198c3af5f5a873f395', 'value': 104384.41571509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x161ab0c5908982383400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:04.000Z'}}, {'blockNum': '0x511896', 'uniqueId': '0x9c15a2707cbb4018d3ef04a6297ef2fb34a602345774c228bc36388de4ac4360:log:3', 'hash': '0x9c15a2707cbb4018d3ef04a6297ef2fb34a602345774c228bc36388de4ac4360', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3717.56228542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xc9878a6219b06f3800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:25.000Z'}}, {'blockNum': '0x511896', 'uniqueId': '0xb7e3a51cac2e328554770b481008fa71b5e44f97f1d894f9850470bb1a1add33:log:4', 'hash': '0xb7e3a51cac2e328554770b481008fa71b5e44f97f1d894f9850470bb1a1add33', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 294860.6398875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3e706d64ab0e7d667800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:25.000Z'}}, {'blockNum': '0x511896', 'uniqueId': '0xa72114cbae1f843139bdf50c4300f185424627013a534788bf5024dee73840ec:log:5', 'hash': '0xa72114cbae1f843139bdf50c4300f185424627013a534788bf5024dee73840ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1a9b81da030f71a2f131a5524d21b5634c3501f3', 'value': 35176.33227933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0772e9acdbdacb7ad400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:25.000Z'}}, {'blockNum': '0x511897', 'uniqueId': '0x168a433325d2919590c39d8549614378d9a52a0d4e1efa4785bca96fdc2ca0ba:log:1', 'hash': '0x168a433325d2919590c39d8549614378d9a52a0d4e1efa4785bca96fdc2ca0ba', 'from': '0xcd11113dd5a12b2df60bc5974e809e7c8b956b44', 'to': '0x27bb2589a133265cf9f6ff770c465438cbd98ba3', 'value': 273244.32950703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x39dc9ad31823d614dc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:39.000Z'}}, {'blockNum': '0x511897', 'uniqueId': '0x9bf7d3260a692d84529e1e65a09b7e8b82346d016c01cbd9bcbecc630935413a:log:18', 'hash': '0x9bf7d3260a692d84529e1e65a09b7e8b82346d016c01cbd9bcbecc630935413a', 'from': '0x7f1efd6288d0e671712ed84bc668ab4d0f544fe3', 'to': '0xe6f4cbed16c5b734e662d25533bbe31812f2894f', 'value': 588.6238329594058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe8cbf169f240d98f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:39.000Z'}}, {'blockNum': '0x511898', 'uniqueId': '0x95092f06a1839748e2731d661587bb242bffe568b685d2bdea55c6f0f09b697c:log:181', 'hash': '0x95092f06a1839748e2731d661587bb242bffe568b685d2bdea55c6f0f09b697c', 'from': '0xdd80730f13068cdadfc9ecf23a14f923574239fc', 'to': '0xec8509b212ce2a0ca95953aee18cc3b2fe793e17', 'value': 1061.01495125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x39848a54a9eaa6b400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:41:52.000Z'}}, {'blockNum': '0x51189a', 'uniqueId': '0x4bf5856d4454f537569dbed4d6f089c53b4347e7bfca71ed353cefd85dae019e:log:334', 'hash': '0x4bf5856d4454f537569dbed4d6f089c53b4347e7bfca71ed353cefd85dae019e', 'from': '0xdb2f8004ef60ca5ba2b2ae9b8825b3d37205ff3d', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 215.97702217353137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bb548855f1c00302f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:11.000Z'}}, {'blockNum': '0x51189a', 'uniqueId': '0xe96647300bfab41951a4fb9454e62a0ad0798cb3bf2e09c789906e4db536c339:log:354', 'hash': '0xe96647300bfab41951a4fb9454e62a0ad0798cb3bf2e09c789906e4db536c339', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 5054.204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0111fd2bafadf6660000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:11.000Z'}}, {'blockNum': '0x51189c', 'uniqueId': '0x0421a16e263b772004d49ff96fe13f1bd9a5b360539013d5114e381330dc47bb:log:2', 'hash': '0x0421a16e263b772004d49ff96fe13f1bd9a5b360539013d5114e381330dc47bb', 'from': '0x7a2da1d6e9f3f23b7af660f88c06a748e93bc5d9', 'to': '0x16651e301bbbcdd19d02ac23f22ade2bdf0daf98', 'value': 695.74686554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x25b76d67fbd72a2800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:44.000Z'}}, {'blockNum': '0x51189c', 'uniqueId': '0x97cc113c0c1b5e2846c64e14d07b51a33b591802283b2e0ae903ee28946ea3c5:log:12', 'hash': '0x97cc113c0c1b5e2846c64e14d07b51a33b591802283b2e0ae903ee28946ea3c5', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0xb4c27911cd544c15b81370d746a48dcf013e7ed8', 'value': 13269.99438044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02cf5e2a8d9113fff000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:44.000Z'}}, {'blockNum': '0x51189c', 'uniqueId': '0x567c6139c7a7c1cf92ed2a74b62c1d2495454088af83a61a8051e583eaf542d5:log:25', 'hash': '0x567c6139c7a7c1cf92ed2a74b62c1d2495454088af83a61a8051e583eaf542d5', 'from': '0x8ebe3fe0bef15d658a9db26aad11465102f71cc7', 'to': '0x1f8b1a70c4ba7764364dce9da1d848228e2f6797', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:42:44.000Z'}}, {'blockNum': '0x51189d', 'uniqueId': '0x2cab355d0345c167f519b88908c1071790751b99a8c471f3479ab00cebef8435:log:18', 'hash': '0x2cab355d0345c167f519b88908c1071790751b99a8c471f3479ab00cebef8435', 'from': '0x2baf28545ded2b590ad316a75b56f52cbc1bf230', 'to': '0x516214d38e11cbb56b87ca8adf982a363d3855e7', 'value': 44788.8038174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x097c0183faac22973000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:01.000Z'}}, {'blockNum': '0x51189d', 'uniqueId': '0xa6c0c8f36c7f79eb6443463d5e08ea9b77c98f01bbf68852ad0b5b3d1a0b76a8:log:71', 'hash': '0xa6c0c8f36c7f79eb6443463d5e08ea9b77c98f01bbf68852ad0b5b3d1a0b76a8', 'from': '0xaca27d80379a582638409eb76a75b23f0d76d935', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 1050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x38ebad5cdc90280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:01.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0x5432b61efc2bdfb05f57e24b3f4e03b142550ddc221f270e11f23c69a46be98a:log:0', 'hash': '0x5432b61efc2bdfb05f57e24b3f4e03b142550ddc221f270e11f23c69a46be98a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc33ec0caef1c78143e970b7ea17fb09857306917', 'value': 1977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6b2c62f167b3440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0x2512e1acb39b706842493af4737b32d0403b3bcee2fdc63d792db0f8f7c2f2af:log:33', 'hash': '0x2512e1acb39b706842493af4737b32d0403b3bcee2fdc63d792db0f8f7c2f2af', 'from': '0x13a058c50e09912eadc459f2b2779d4a12f5e7e2', 'to': '0x29154fd303467ca07c67ded5ef27a86fd712af75', 'value': 25763.87792732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0574a9a18805a3e20000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0xad9c12de95fd637c8d97d5fca730e0569193a8687a2a26adbceca08fda0afaeb:log:66', 'hash': '0xad9c12de95fd637c8d97d5fca730e0569193a8687a2a26adbceca08fda0afaeb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ab2737e9ab6731e95628d7e4592a4f012462558', 'value': 49512.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a7c11e31d53ac030000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0x6ede948768586402fca1721773e1a851beab1d2befa30dad659a0f6cc6be2dfe:log:72', 'hash': '0x6ede948768586402fca1721773e1a851beab1d2befa30dad659a0f6cc6be2dfe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xaec7cb6bf3ba0d752212834229a0134f2a35d4b6', 'value': 124.69492153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06c27d5a7832dbc400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0x72f675d24040a87b5ebd972534a8a6884757781f871ef5a3b0b5d8e6bc038235:log:74', 'hash': '0x72f675d24040a87b5ebd972534a8a6884757781f871ef5a3b0b5d8e6bc038235', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03d952abd36cbc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189e', 'uniqueId': '0xf643cf4b90bf5dfea41b95fbefa4b22fe4cedc4c55c63ddbef2e491105e74b4f:log:76', 'hash': '0xf643cf4b90bf5dfea41b95fbefa4b22fe4cedc4c55c63ddbef2e491105e74b4f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x97044ab8a7c8467e2e8f7274aecf4487660144f0', 'value': 64151.02987028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d95a261544be8b9d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:22.000Z'}}, {'blockNum': '0x51189f', 'uniqueId': '0x07512878bd40f2f74f2d9402ee32d1424c58ed2e09fc531f859a5648c517854e:log:24', 'hash': '0x07512878bd40f2f74f2d9402ee32d1424c58ed2e09fc531f859a5648c517854e', 'from': '0x9bd0404bbf339481efc75e69c88a92983e613b2a', 'to': '0x7a8c586083ee1b4c84da326cf9b412e5275e9835', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:43:41.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xea2038dae1c28c86e42ea82049aba0f1cc982c8b5654f76bc7c7348b197de4f7:log:10', 'hash': '0xea2038dae1c28c86e42ea82049aba0f1cc982c8b5654f76bc7c7348b197de4f7', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43515.5704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0936fbda336d46ee0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x8b199d83dd759a4da682c6128196bcba75cf9335e614d0b5347d19a3ea04bfbc:log:11', 'hash': '0x8b199d83dd759a4da682c6128196bcba75cf9335e614d0b5347d19a3ea04bfbc', 'from': '0xf2f32342706c68ec18d498fc720f4cba5fcfb6c8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113268.45536137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17fc4b96bd2b60990400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x570311ce12ac5c57336e55dc2dd3d44fc4e856dbc4a41591076c1b66d0fc04a8:log:12', 'hash': '0x570311ce12ac5c57336e55dc2dd3d44fc4e856dbc4a41591076c1b66d0fc04a8', 'from': '0x27bb2589a133265cf9f6ff770c465438cbd98ba3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 273244.32950703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x39dc9ad31823d614dc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x3e952364fb199d180c80dc1affba7036c453472466c0f834cd3c9095b9d7cc83:log:14', 'hash': '0x3e952364fb199d180c80dc1affba7036c453472466c0f834cd3c9095b9d7cc83', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 396531.37767631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x53f802518b52ed8d5c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x85f9dc72fbf0faf235922914957217bab0c00b3722b4c9164c9aaa8a8d0dbeae:log:15', 'hash': '0x85f9dc72fbf0faf235922914957217bab0c00b3722b4c9164c9aaa8a8d0dbeae', 'from': '0xbe9f236a87d88cf163a1e973638812aa64fbddf3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10804.76101156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0249ba2e3defc0141000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xed14a19dd132c7aa9ed31440b1e65ea3c1e0ef2c79d4b20cf17731c25f4d8a83:log:16', 'hash': '0xed14a19dd132c7aa9ed31440b1e65ea3c1e0ef2c79d4b20cf17731c25f4d8a83', 'from': '0x518766e93438e9340d071101cea6356f205db470', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0549ae3d45f8c74c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xf60eeb9f1127682923db1a275e126bb4222687e9ac71d786c496389bb459f773:log:17', 'hash': '0xf60eeb9f1127682923db1a275e126bb4222687e9ac71d786c496389bb459f773', 'from': '0x05d34963274c08d62e3fa72ed0bb45fa8bf965f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 189945.38273851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2838f5b77ae7e6ad8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x55fc871159bfbb492a2674ee847c642aff2b94c4af4df1b4f5344e9ed8a36e00:log:18', 'hash': '0x55fc871159bfbb492a2674ee847c642aff2b94c4af4df1b4f5344e9ed8a36e00', 'from': '0x3d510bd5289aafdd243a63198c3af5f5a873f395', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 104384.41571509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x161ab0c5908982383400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xd8b0154a26540f8ef3cbbb0601b2b36cb28c0633e97d4e3a53381a8ba9f480f1:log:19', 'hash': '0xd8b0154a26540f8ef3cbbb0601b2b36cb28c0633e97d4e3a53381a8ba9f480f1', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 275664.71210384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3a5fd0617433bba44000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xb3425b53fec433966a9bb2ef4388beae4722bfab05e8d88f7d960ebc99466780:log:20', 'hash': '0xb3425b53fec433966a9bb2ef4388beae4722bfab05e8d88f7d960ebc99466780', 'from': '0x1f8b1a70c4ba7764364dce9da1d848228e2f6797', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x5c97e8482c0ba198ffc0ef4ec70fac67eb50fa22fa3ad10e1924dfd456e003a9:log:21', 'hash': '0x5c97e8482c0ba198ffc0ef4ec70fac67eb50fa22fa3ad10e1924dfd456e003a9', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 312114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4217bbdd2527dd880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0xa6df126a08865b757adabeec1563cf7eba8ac5532fcf7031d34d138289523df1:log:22', 'hash': '0xa6df126a08865b757adabeec1563cf7eba8ac5532fcf7031d34d138289523df1', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03d874a0683245c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a1', 'uniqueId': '0x2601bb1f4332b55bf40e5bd7e4a4db06d53caf8b3d9b6c29bb2e11dde6707db5:log:26', 'hash': '0x2601bb1f4332b55bf40e5bd7e4a4db06d53caf8b3d9b6c29bb2e11dde6707db5', 'from': '0xa06f8516027b85e62d7720606f939b9a36b994d2', 'to': '0x89af64fad4a6987bb775abc7069ebf48cdd035de', 'value': 831.37527137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2d11a64c7efcd56400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:03.000Z'}}, {'blockNum': '0x5118a2', 'uniqueId': '0x38bc5aae7737463d3c80b839344fb31b4ca9709bd660be7802cfdc61eecb6280:log:9', 'hash': '0x38bc5aae7737463d3c80b839344fb31b4ca9709bd660be7802cfdc61eecb6280', 'from': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04902c7310813c940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:15.000Z'}}, {'blockNum': '0x5118a2', 'uniqueId': '0x0ef412c1b0d775d3766a3c26d436d2190f4067a215cf9005b167d081d6fbf1df:log:10', 'hash': '0x0ef412c1b0d775d3766a3c26d436d2190f4067a215cf9005b167d081d6fbf1df', 'from': '0x2996ce512572d771246a0967ba6430b0c9dfc319', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02ff4a3568e4dee80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:15.000Z'}}, {'blockNum': '0x5118a3', 'uniqueId': '0xaa13943c4163da084122288760f6fe5ba02817cae301291f5907c67c214062fa:log:30', 'hash': '0xaa13943c4163da084122288760f6fe5ba02817cae301291f5907c67c214062fa', 'from': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12334.913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x029cad4e24547be68000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:44:32.000Z'}}, {'blockNum': '0x5118a5', 'uniqueId': '0x0935fcb84f8fc45a5c8a56d3d1d32c64e55bcce4132aa2557d29434ca3b0d9f8:log:179', 'hash': '0x0935fcb84f8fc45a5c8a56d3d1d32c64e55bcce4132aa2557d29434ca3b0d9f8', 'from': '0x7a23608a8ebe71868013bda0d900351a83bb4dc2', 'to': '0x1fe84364298395dee9235e421873c019a83114d7', 'value': 7096.172540648515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0180af2d40961be87540', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:04.000Z'}}, {'blockNum': '0x5118a6', 'uniqueId': '0x9d8ec8d70cc1835992242254c13b79d7937c3698c146ec70005a93111327197a:log:12', 'hash': '0x9d8ec8d70cc1835992242254c13b79d7937c3698c146ec70005a93111327197a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 150571.29056533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe27c6ba0479c7db400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:16.000Z'}}, {'blockNum': '0x5118a6', 'uniqueId': '0x57cbc911354780cd3503eac96d479510d9b3d77e1da109b5ac7c19c266648fa9:log:16', 'hash': '0x57cbc911354780cd3503eac96d479510d9b3d77e1da109b5ac7c19c266648fa9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 17818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03c5ea6c5430a6280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:16.000Z'}}, {'blockNum': '0x5118a6', 'uniqueId': '0xe7c7dd83955b7c9a2e0481177119967b162f66e6ac4381e1543abf2f25239353:log:17', 'hash': '0xe7c7dd83955b7c9a2e0481177119967b162f66e6ac4381e1543abf2f25239353', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 43600.7328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093b99b7d30462a80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:16.000Z'}}, {'blockNum': '0x5118a9', 'uniqueId': '0x1063eaaf436475291b8319ae92023cfde6fe9fa2af382adc7f23cf7370ac5301:log:8', 'hash': '0x1063eaaf436475291b8319ae92023cfde6fe9fa2af382adc7f23cf7370ac5301', 'from': '0x2be18e7a2d4cbd996e92956514fcfd282e69d652', 'to': '0x53228dd76dfd01b0d47333b24d24cf87501cd94d', 'value': 57.936268829663966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x032406f98a83a82728', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:59.000Z'}}, {'blockNum': '0x5118a9', 'uniqueId': '0x37e4a8b5310e26708d25512234820e94b65da633bad239ab8e589df038f45e48:log:9', 'hash': '0x37e4a8b5310e26708d25512234820e94b65da633bad239ab8e589df038f45e48', 'from': '0xebc6ad688f511ead6d4e921fde88f86eecd5977e', 'to': '0x0eaa20c94b3225b89fd3968960a7bc8a139781c6', 'value': 733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x27bc6b206649540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:45:59.000Z'}}, {'blockNum': '0x5118ab', 'uniqueId': '0xfdaf7e523f6069733f0febfd9be1e5bdcdd7c9fe98d2a13c7f5193d3a4dbdead:log:16', 'hash': '0xfdaf7e523f6069733f0febfd9be1e5bdcdd7c9fe98d2a13c7f5193d3a4dbdead', 'from': '0xe5f4fa4e83623c883106e5cd058a2a50b3eeba64', 'to': '0xcd6081dcdb20b1b65bbb461005635f8c58888619', 'value': 1778.09388336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x606402762bb7a6c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:46:25.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x1f14481515eba60f94cf6b062c80058971c9568e6a2aa45ecacbf8d445e3043f:log:9', 'hash': '0x1f14481515eba60f94cf6b062c80058971c9568e6a2aa45ecacbf8d445e3043f', 'from': '0xcd34e8767cf8164a71477e732d354877944d1bdb', 'to': '0xecbb11ac99b03fb7853e46ab551c4ebd14a53851', 'value': 19844.3242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0433c352082a0fbe8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x559596d0f4945a26e69c04a12d411f95ae77ca83329ad3b378602a85b005e945:log:36', 'hash': '0x559596d0f4945a26e69c04a12d411f95ae77ca83329ad3b378602a85b005e945', 'from': '0x2baf28545ded2b590ad316a75b56f52cbc1bf230', 'to': '0xb90da587cf558dca480d01b9ee0cff6dfd53047f', 'value': 45680.26717282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09ac550e0940697d4800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x3013f88724fc2625a850e39a44738bf5c1f16b7da36d6c302e02828f2e4ec799:log:38', 'hash': '0x3013f88724fc2625a850e39a44738bf5c1f16b7da36d6c302e02828f2e4ec799', 'from': '0xf91deb9ae9c436edef3f944a385901474b3bb07b', 'to': '0x12a6d0e18da6e6deca313183c19a8ec832714b1e', 'value': 1215.07362358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x41de88aee8f89a1800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0xb7d5cd861116270ef4fd7fc37271a358d33e1c1046350acdecf5bf31438ea6eb:log:40', 'hash': '0xb7d5cd861116270ef4fd7fc37271a358d33e1c1046350acdecf5bf31438ea6eb', 'from': '0x89c8154be5bd7899b15d93d47faf10877d36327e', 'to': '0x326c98319f4d11ee6f2ba4f4c7cb4b53cc4c2144', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x6a2fec782ad0624cdeafeacb976f2217d49ce237b154d745600383ec9ec46522:log:43', 'hash': '0x6a2fec782ad0624cdeafeacb976f2217d49ce237b154d745600383ec9ec46522', 'from': '0xe5f4fa4e83623c883106e5cd058a2a50b3eeba64', 'to': '0x8882e0eb338619971f04bb30a7b950aa73284298', 'value': 1185.39592224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4042ac4ec7cfc48000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118ae', 'uniqueId': '0x41522fddfde7826aab5fe2d4d027c77d96868b06d7b968130a42a4564ccd3e53:log:45', 'hash': '0x41522fddfde7826aab5fe2d4d027c77d96868b06d7b968130a42a4564ccd3e53', 'from': '0x004ba728a652bded4d4b79fb04b5a92ad8ce15e7', 'to': '0xdcafe3dd79080fc9a56428b664ebb6b715a7096b', 'value': 125000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1a784379d99db4200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:27.000Z'}}, {'blockNum': '0x5118b0', 'uniqueId': '0x7de29a2284b93f39de90b74d3fd54392014197c7623d406d3943e84c1f61173e:log:175', 'hash': '0x7de29a2284b93f39de90b74d3fd54392014197c7623d406d3943e84c1f61173e', 'from': '0x27d65d34fe67869b704e7bb806f86bedbf96b792', 'to': '0x884dbd166ffae569dcf8b1089a3949eb1b498dac', 'value': 1570.60899985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x55249413eba2cc2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:47:56.000Z'}}, {'blockNum': '0x5118b1', 'uniqueId': '0x0b1ee84b7902c258a58de88d62e932c5005292447253948bdd2a97ecc62956db:log:3', 'hash': '0x0b1ee84b7902c258a58de88d62e932c5005292447253948bdd2a97ecc62956db', 'from': '0xe2575bc12e5456441d377c144c619e6693de9a5e', 'to': '0x574ea78c8cefcd90194a95873782e19ed3ccd008', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:48:32.000Z'}}, {'blockNum': '0x5118b1', 'uniqueId': '0x06cc3da4905a8bec209d93175009cce6e23f3f76695ce31812510ab0d0b298ed:log:104', 'hash': '0x06cc3da4905a8bec209d93175009cce6e23f3f76695ce31812510ab0d0b298ed', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x7aae9b6feb50d38746c27fbb2e97b5de740c28a5', 'value': 20657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x045fd1767685fc240000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:48:32.000Z'}}, {'blockNum': '0x5118b2', 'uniqueId': '0x384bbbe3c40ef682b6ad8cdb3e7a316e8bde3d4e459e66ccb7a339383db7b282:log:59', 'hash': '0x384bbbe3c40ef682b6ad8cdb3e7a316e8bde3d4e459e66ccb7a339383db7b282', 'from': '0xff18d3e9759011c0a40626f6db708ba072706922', 'to': '0x1d05d057aecea117b3ddbd5bb0922eb5d1dfac40', 'value': 67000.054848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e30148b56c068840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:48:33.000Z'}}, {'blockNum': '0x5118b2', 'uniqueId': '0x3192611f9b6ce3d98f98782d8e8595bf0981316b60c90d90da1509de8f2197bf:log:60', 'hash': '0x3192611f9b6ce3d98f98782d8e8595bf0981316b60c90d90da1509de8f2197bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe9e8709d3215310075d67e3ed32a380ccf451c8', 'value': 5633283.475923817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04a8e4e8bd79b22b06d68a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:48:33.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0x36764db2ad2052624a65b1ac55572ba2bbab1834a9fc45b5393f4d5a908a5eb4:log:21', 'hash': '0x36764db2ad2052624a65b1ac55572ba2bbab1834a9fc45b5393f4d5a908a5eb4', 'from': '0x85dd671b45046264e5113356bdc4b9ad4a3073ad', 'to': '0xa5bef50e6d57fe6a76dbcc50f42f6a8b94125c69', 'value': 9910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021938e08e91d9180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0x0d31fa5c9d364203e960498b6c159b6a4224f2b2609fa532b8ea578a7da0e433:log:22', 'hash': '0x0d31fa5c9d364203e960498b6c159b6a4224f2b2609fa532b8ea578a7da0e433', 'from': '0x723d26b59f856bdbbeb055c9dc9dbc89bfe7a78a', 'to': '0xcfa490da45fba909fd1e0c9ee0e83678c191e12a', 'value': 7121.24485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01820b1ffd1a4de52000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0x648b6100563517df24441f97ae64c91e751894f2a34a625f20757149dd8ed743:log:24', 'hash': '0x648b6100563517df24441f97ae64c91e751894f2a34a625f20757149dd8ed743', 'from': '0xaf4ffbb3057356a9b6a25129211426daa2863d4f', 'to': '0x8d8a25d4fd12b0c0d66c46e72e303e60e1d59a4e', 'value': 936.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x32c752e72694660000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0xd74c7ebf3f2500fb34768a5faf2d47466bf7bba4b0b04be6532f90bdc7c5b5ef:log:26', 'hash': '0xd74c7ebf3f2500fb34768a5faf2d47466bf7bba4b0b04be6532f90bdc7c5b5ef', 'from': '0xe4b0e193f17207da8ad4faf3806d8705d01e0a18', 'to': '0xa4dd2e04bac8cbd9aab4877fb2c13f449415fe9f', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b3', 'uniqueId': '0x98d471c51cf4735cb6dfa8f8ba302884521adf890a806d41cff3cad1ec5cac26:log:46', 'hash': '0x98d471c51cf4735cb6dfa8f8ba302884521adf890a806d41cff3cad1ec5cac26', 'from': '0xb5f2e775ebfe656d269021a619f975467eb429df', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 180.98319591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfa579ca427abc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:50:31.000Z'}}, {'blockNum': '0x5118b7', 'uniqueId': '0xb3e3cb2bf861d5eb546dc45fa74424c6beefccdaf6e770ea0f8aa2028ba41141:log:0', 'hash': '0xb3e3cb2bf861d5eb546dc45fa74424c6beefccdaf6e770ea0f8aa2028ba41141', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1a9b81da030f71a2f131a5524d21b5634c3501f3', 'value': 28400.80338571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06039c52ad65dbeccc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:51:13.000Z'}}, {'blockNum': '0x5118b7', 'uniqueId': '0xaa16b275079f09e05de90c10c2341774641513b1f609e0a6f4b32a255ec10637:log:1', 'hash': '0xaa16b275079f09e05de90c10c2341774641513b1f609e0a6f4b32a255ec10637', 'from': '0xf32387a4e0ab95ee0e8aab1f452a00c9cd5797e5', 'to': '0x4e61ec62005243022aeccca249d67e98495c9d8a', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:51:13.000Z'}}, {'blockNum': '0x5118be', 'uniqueId': '0xb93e8e85584633ec50b0f06555701967d680ccae6752abc700211b0fb2af993d:log:10', 'hash': '0xb93e8e85584633ec50b0f06555701967d680ccae6752abc700211b0fb2af993d', 'from': '0xab07e32df9fd0d4ac567e03283d2b8db1f575fcc', 'to': '0xde05344cd4e4b100ee7f10598808a6e1444ea396', 'value': 1488.46485477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50b0997330433ef400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:52:02.000Z'}}, {'blockNum': '0x5118bf', 'uniqueId': '0x82b9683fb93ad728a195a8cf073c093ddf9abc23ab088e75dd8080e6c8e525a1:log:5', 'hash': '0x82b9683fb93ad728a195a8cf073c093ddf9abc23ab088e75dd8080e6c8e525a1', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xbc72bed54a862e141cb1cb8ff6451848af0c15c2', 'value': 452.92425479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x188d96320934773c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:52:07.000Z'}}, {'blockNum': '0x5118c3', 'uniqueId': '0x14561db4c478471e20eca3fd3dc2fc354dada98351cd805c7abfc9bd4b2388a7:log:3', 'hash': '0x14561db4c478471e20eca3fd3dc2fc354dada98351cd805c7abfc9bd4b2388a7', 'from': '0x09fee62f5823d863a71094259d279ee0f49e1b17', 'to': '0xb736be2367edb2cdac15ad8fc4f28598edbea745', 'value': 1037.410809579607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x383cf792dfe6e18133', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:52:46.000Z'}}, {'blockNum': '0x5118c4', 'uniqueId': '0xbe651547060ef6058288c426aec5040bb61eca1d727fef11f2cf05eb7f732e6b:log:2', 'hash': '0xbe651547060ef6058288c426aec5040bb61eca1d727fef11f2cf05eb7f732e6b', 'from': '0x36c11f380cc1c31945f4eca6a2f214b6f89a8544', 'to': '0xec27822460069286db36481657a4807720ae29c4', 'value': 4234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe5868db74e7be80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:09.000Z'}}, {'blockNum': '0x5118c4', 'uniqueId': '0x681d3d1f4cea1ee6416dc78341c2af4a86c6bbd332b87ad9e8581992a67f92be:log:189', 'hash': '0x681d3d1f4cea1ee6416dc78341c2af4a86c6bbd332b87ad9e8581992a67f92be', 'from': '0x2e3be188a4e2e921295a39373f250951fdd47cdf', 'to': '0x6020938e946f1f519a0d6fbd647d9842849b383d', 'value': 239.26046765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0cf867efabe0171400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:09.000Z'}}, {'blockNum': '0x5118c5', 'uniqueId': '0xbf54326c110aeb53519531a6f5950cd446da32a9aa410d663477147283d293b5:log:9', 'hash': '0xbf54326c110aeb53519531a6f5950cd446da32a9aa410d663477147283d293b5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x579ae165e1deeeb9c96551347ae705aee163bdbb', 'value': 240.91945998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d0f6ddc67e2d67800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:23.000Z'}}, {'blockNum': '0x5118c7', 'uniqueId': '0xe91fc8694f660ebdc71654354b7d88ec30b63dbdd6addf913ab9f4cde37725d4:log:8', 'hash': '0xe91fc8694f660ebdc71654354b7d88ec30b63dbdd6addf913ab9f4cde37725d4', 'from': '0x997e70bbde34e55d10ffd9ca89d70b26b1828a9f', 'to': '0xe5e87affc473990cb0de219dc1329bbef2638bef', 'value': 4964.56211302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010d2123ba6a0fc8d800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:52.000Z'}}, {'blockNum': '0x5118c7', 'uniqueId': '0x1893ed07f259060114cb0c877764f11dcf7b64e6af445f2c269d31ff3ac73a0c:log:9', 'hash': '0x1893ed07f259060114cb0c877764f11dcf7b64e6af445f2c269d31ff3ac73a0c', 'from': '0xa4dd2e04bac8cbd9aab4877fb2c13f449415fe9f', 'to': '0x15e9ddacfdec790cd89a4c723bc59c42c195c72b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:52.000Z'}}, {'blockNum': '0x5118c7', 'uniqueId': '0x59aee2ae0bc0d3a49e2b6253d37c5cb303aa1cfcb1e2051d5498bb365b0eb7db:log:62', 'hash': '0x59aee2ae0bc0d3a49e2b6253d37c5cb303aa1cfcb1e2051d5498bb365b0eb7db', 'from': '0x0eaa20c94b3225b89fd3968960a7bc8a139781c6', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x27bc6b206649540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:53:52.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0xa58ff25aaa7ae261284d081cda0247d71dea91f1b7098816c5a23612d1bd7d28:log:17', 'hash': '0xa58ff25aaa7ae261284d081cda0247d71dea91f1b7098816c5a23612d1bd7d28', 'from': '0x37fbb1db781a9b6e2da9b7ed6fcb34be4267b8b8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51565.29347826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0aeb5c337dd7f62d8800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x6bf4018a50d05beec123a86c2bbdfe5d4e5e84fffda5ed80d4432a162d715024:log:18', 'hash': '0x6bf4018a50d05beec123a86c2bbdfe5d4e5e84fffda5ed80d4432a162d715024', 'from': '0xdcafe3dd79080fc9a56428b664ebb6b715a7096b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 127923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b16b83feee5f6ec0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x57e55bd702a1ad238181b8b91709c72f1f067143d3f78a47e2a99b8a06e7b958:log:19', 'hash': '0x57e55bd702a1ad238181b8b91709c72f1f067143d3f78a47e2a99b8a06e7b958', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43600.7328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093b99b7d30462a80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0xb45c0553a7e280ec631880599d908e7eabffddcf7164d80e3fdd9ea23b1fdd45:log:20', 'hash': '0xb45c0553a7e280ec631880599d908e7eabffddcf7164d80e3fdd9ea23b1fdd45', 'from': '0x326c98319f4d11ee6f2ba4f4c7cb4b53cc4c2144', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x8aa2284bfad0f93e66504b7016d69c6744458ebaad126c570bfc58fdbc8a7c5c:log:21', 'hash': '0x8aa2284bfad0f93e66504b7016d69c6744458ebaad126c570bfc58fdbc8a7c5c', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 154248.10242823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x20a9ce6f6d00cd3f3c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x4dc4651c154e0e9393cd0cdad969201a7912b2e8eb3e136a5356e09c531727ae:log:24', 'hash': '0x4dc4651c154e0e9393cd0cdad969201a7912b2e8eb3e136a5356e09c531727ae', 'from': '0x4e61ec62005243022aeccca249d67e98495c9d8a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x2dd4447f00c50bbbbb4dd4a8e9101244c0f3f252eadab1ca88ec41209d7e863a:log:25', 'hash': '0x2dd4447f00c50bbbbb4dd4a8e9101244c0f3f252eadab1ca88ec41209d7e863a', 'from': '0x97044ab8a7c8467e2e8f7274aecf4487660144f0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 64151.02987028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d95a261544be8b9d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x407b79ad3c4d21ae556403f394967c42ff3880bda1f69a82c4ea2abd8c16a7e6:log:26', 'hash': '0x407b79ad3c4d21ae556403f394967c42ff3880bda1f69a82c4ea2abd8c16a7e6', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03c5ea6c5430a6280000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x2ba20c94a5ad6b82e0f220615e78bd29fdd9363a4754a4644f7146b590c2d6f8:log:27', 'hash': '0x2ba20c94a5ad6b82e0f220615e78bd29fdd9363a4754a4644f7146b590c2d6f8', 'from': '0xecbb11ac99b03fb7853e46ab551c4ebd14a53851', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19844.3242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0433c352082a0fbe8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118c9', 'uniqueId': '0x650efc538e1ffbb0ff6e506924eb2efd5b01882567bbd995cbd270d878d6256c:log:28', 'hash': '0x650efc538e1ffbb0ff6e506924eb2efd5b01882567bbd995cbd270d878d6256c', 'from': '0x7aae9b6feb50d38746c27fbb2e97b5de740c28a5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x045fd1767685fc240000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:54:15.000Z'}}, {'blockNum': '0x5118cd', 'uniqueId': '0xee16d06d7e66cbef9db904922971877e2fe78f44abdd697e86045228150b874c:log:1', 'hash': '0xee16d06d7e66cbef9db904922971877e2fe78f44abdd697e86045228150b874c', 'from': '0xf984c060ffb33813beca4afa3319a7d548004724', 'to': '0x0f9153b43f708314ce9b160493d4c16dc1779b32', 'value': 17966.95469999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cdfd95baa296fcdc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:55:14.000Z'}}, {'blockNum': '0x5118cd', 'uniqueId': '0x24b6393152131ce6d95bf00c09ec1f0f42d78ca023fe836674a7d716593be88d:log:2', 'hash': '0x24b6393152131ce6d95bf00c09ec1f0f42d78ca023fe836674a7d716593be88d', 'from': '0xb5db7a687be58ebb7132fa3b57f45f0e6323f360', 'to': '0x4f2a4ccf2dfb651a0e244646abaf8fed4a2604fa', 'value': 14530.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0313b40745cb2c000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:55:14.000Z'}}, {'blockNum': '0x5118d2', 'uniqueId': '0xed2ee0d178be1d0ed3f5c01aeadeb66f57c0bd3f31929698266b0325a5a36c98:log:9', 'hash': '0xed2ee0d178be1d0ed3f5c01aeadeb66f57c0bd3f31929698266b0325a5a36c98', 'from': '0x574ea78c8cefcd90194a95873782e19ed3ccd008', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:55:52.000Z'}}, {'blockNum': '0x5118d2', 'uniqueId': '0xa8d8edc6c25d8be8504dccf0d6fdffd8180aedb8a47357cb18cd7ca80cb5a9e7:log:12', 'hash': '0xa8d8edc6c25d8be8504dccf0d6fdffd8180aedb8a47357cb18cd7ca80cb5a9e7', 'from': '0x1d05d057aecea117b3ddbd5bb0922eb5d1dfac40', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 67000.054848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e30148b56c068840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:55:52.000Z'}}, {'blockNum': '0x5118d4', 'uniqueId': '0xc9f0609c6086a9883b95977b62bd64f070f6d4f0e1d69d03b4d19738eb997b2e:log:20', 'hash': '0xc9f0609c6086a9883b95977b62bd64f070f6d4f0e1d69d03b4d19738eb997b2e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24323539d064ef3d61c23a7ed092f03666af7ad3', 'value': 14815.259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x032323054de4c8ef8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:15.000Z'}}, {'blockNum': '0x5118d4', 'uniqueId': '0x84d5f1cc17f5c55db4fadeb1978041b48b85c876907925141f31d5090ffb620f:log:28', 'hash': '0x84d5f1cc17f5c55db4fadeb1978041b48b85c876907925141f31d5090ffb620f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8a8175cef6a1a7acc947e93b3a37d77e066db7ee', 'value': 14048.03134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02f98b991a11eec2c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:15.000Z'}}, {'blockNum': '0x5118d4', 'uniqueId': '0x5703cb9ec7f2cdfd57de611daef1bf2b170f8aed0ffa8c8b187e0bc7f725e8f5:log:34', 'hash': '0x5703cb9ec7f2cdfd57de611daef1bf2b170f8aed0ffa8c8b187e0bc7f725e8f5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 220644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb9229cf1fc69100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:15.000Z'}}, {'blockNum': '0x5118d5', 'uniqueId': '0xe81ebd1e3bfa67a3da54366b8ec234e4f6aa731f52ffa6a7c8d6e919dc7a7769:log:0', 'hash': '0xe81ebd1e3bfa67a3da54366b8ec234e4f6aa731f52ffa6a7c8d6e919dc7a7769', 'from': '0x413e12b268497ffa0d4b3702c2a060d389dabbbd', 'to': '0x6ee6b33a144a31da249c37f2ef944b620acdd9fb', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:21.000Z'}}, {'blockNum': '0x5118d7', 'uniqueId': '0x4bf9cc487372f0b4e110e5adb697899164bda83ab505213cd5fb6721b53311f0:log:21', 'hash': '0x4bf9cc487372f0b4e110e5adb697899164bda83ab505213cd5fb6721b53311f0', 'from': '0x3e43789000dbdaf93f90801d29be5c3bdc1ed3b2', 'to': '0xcb88bd357277fdada51863885da9b58bdf5dbff3', 'value': 8117.23975545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01b80954b69a33eac400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:56:42.000Z'}}, {'blockNum': '0x5118d9', 'uniqueId': '0x965cce7959d01603dc95991a2da5b2a1d7fd544b9f8eab24f47ad3031f75092e:log:8', 'hash': '0x965cce7959d01603dc95991a2da5b2a1d7fd544b9f8eab24f47ad3031f75092e', 'from': '0xfc6d6e5d021ee2c5ca17bfb0ee7439d06c4ec53b', 'to': '0xcf651a116af6c2ec0debac2142385c5e7e7426b5', 'value': 10567.95590027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x023ce3d97bdd92c8cc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:57:36.000Z'}}, {'blockNum': '0x5118d9', 'uniqueId': '0xea43877e2cf6e0c9cdb6459dc6b293273fa75b3890226ab33adbd2ea7202502c:log:9', 'hash': '0xea43877e2cf6e0c9cdb6459dc6b293273fa75b3890226ab33adbd2ea7202502c', 'from': '0xbe8ff8364a6f536a843677b93e638ca2eacec68a', 'to': '0xcd447034fd2545a070148708be390fc090a3c629', 'value': 7500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01969368974c05b00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:57:36.000Z'}}, {'blockNum': '0x5118dd', 'uniqueId': '0x777a59ee92a91ac501d2737370fc25660cd1875c6ba912818f30044bd469718d:log:18', 'hash': '0x777a59ee92a91ac501d2737370fc25660cd1875c6ba912818f30044bd469718d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43592.6492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093b29891ba5584f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:58:17.000Z'}}, {'blockNum': '0x5118e3', 'uniqueId': '0x1ceef4494d0f7a11d7068ddfe998c2e7e42e3894598efdee5f690c1f218467f9:log:2', 'hash': '0x1ceef4494d0f7a11d7068ddfe998c2e7e42e3894598efdee5f690c1f218467f9', 'from': '0x5dce2e31f57b6eae38f37e6ec1b75a25c84c3631', 'to': '0xf480cae1f9225eeb90bab0c31654fa1b29266d04', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:59:22.000Z'}}, {'blockNum': '0x5118e4', 'uniqueId': '0x522c0dc269e04ed28be7ca7de52f5d33a82afc0be1f2ddb32bc8e6b86c4154d5:log:17', 'hash': '0x522c0dc269e04ed28be7ca7de52f5d33a82afc0be1f2ddb32bc8e6b86c4154d5', 'from': '0x9bd0404bbf339481efc75e69c88a92983e613b2a', 'to': '0x7a8c586083ee1b4c84da326cf9b412e5275e9835', 'value': 4463.757065321091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf1fb12c8e937c51d2a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T18:59:43.000Z'}}, {'blockNum': '0x5118e8', 'uniqueId': '0xedbd7687d8b627e7531585a7139b04f430a10fa6b9de65f34c45401186830099:log:12', 'hash': '0xedbd7687d8b627e7531585a7139b04f430a10fa6b9de65f34c45401186830099', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x6c022e721f0a619f760ae654dabb872c1f01e3bd', 'value': 1488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50aa25f43cf5400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:31.000Z'}}, {'blockNum': '0x5118e9', 'uniqueId': '0xca155cc1951ec15b9323ca613edcb9bc0334f8bf9ca37d4a8f2921b91c0fefc5:log:18', 'hash': '0xca155cc1951ec15b9323ca613edcb9bc0334f8bf9ca37d4a8f2921b91c0fefc5', 'from': '0x88a76b7618d2640be4f52e4522755db16a534379', 'to': '0x04c969e89c22e3c136ae893c28aaeed80270e52c', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:55.000Z'}}, {'blockNum': '0x5118e9', 'uniqueId': '0x40755b87943dbc8c1140cae894163107d15d0ed83525f2b5a2596b257ba72ac9:log:24', 'hash': '0x40755b87943dbc8c1140cae894163107d15d0ed83525f2b5a2596b257ba72ac9', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xc9b4392dbb2d3d4f3683e796b6a39a484fe48dcd', 'value': 2522.19173425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x88ba711327e5aea400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:55.000Z'}}, {'blockNum': '0x5118e9', 'uniqueId': '0x9fb32838c5c703f74f256493a3ae47f05af65c56c0fde03ea84f8b66ec75855c:log:25', 'hash': '0x9fb32838c5c703f74f256493a3ae47f05af65c56c0fde03ea84f8b66ec75855c', 'from': '0x8882e0eb338619971f04bb30a7b950aa73284298', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1185.39592224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4042ac4ec7cfc48000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:55.000Z'}}, {'blockNum': '0x5118e9', 'uniqueId': '0x3ed50e806864ca06e4b66f99ce750f85351d325a75a1768df4eca224864291a7:log:36', 'hash': '0x3ed50e806864ca06e4b66f99ce750f85351d325a75a1768df4eca224864291a7', 'from': '0x96f463e4b3865b3284a3b1c3c4eb77b8874ee59b', 'to': '0x2e80094302857998bdbe9784d1396e5a8e9ec710', 'value': 820.58823528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7bf30c530910a000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:00:55.000Z'}}, {'blockNum': '0x5118ea', 'uniqueId': '0xa99c0fa6d756b10b87bb9bc59b1854d2f58029af9ca056e5a25999145c27cbb5:log:11', 'hash': '0xa99c0fa6d756b10b87bb9bc59b1854d2f58029af9ca056e5a25999145c27cbb5', 'from': '0xcd6081dcdb20b1b65bbb461005635f8c58888619', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1778.09388336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x606402762bb7a6c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:00.000Z'}}, {'blockNum': '0x5118eb', 'uniqueId': '0xec6ef0d44caaa3bc89b29ff9263f2d41713f16e7b0cb931604ace71f603e8c3f:log:1', 'hash': '0xec6ef0d44caaa3bc89b29ff9263f2d41713f16e7b0cb931604ace71f603e8c3f', 'from': '0x516214d38e11cbb56b87ca8adf982a363d3855e7', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 44788.8038174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x097c0183faac22973000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:08.000Z'}}, {'blockNum': '0x5118eb', 'uniqueId': '0x57d06a21f8d7a79b457288cf993c17fca6f21cc4a7e7adf2ba3064ebdb404285:log:35', 'hash': '0x57d06a21f8d7a79b457288cf993c17fca6f21cc4a7e7adf2ba3064ebdb404285', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xaec7cb6bf3ba0d752212834229a0134f2a35d4b6', 'value': 122.03349319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x069d8e0f7ec2003c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:08.000Z'}}, {'blockNum': '0x5118eb', 'uniqueId': '0xeba2b2c48b6323bd02d0c239da43ea2e3eabcfb68a231193417e207ce1d2129d:log:39', 'hash': '0xeba2b2c48b6323bd02d0c239da43ea2e3eabcfb68a231193417e207ce1d2129d', 'from': '0xe6f4cbed16c5b734e662d25533bbe31812f2894f', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 588.6238329594058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe8cbf169f240d98f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:08.000Z'}}, {'blockNum': '0x5118eb', 'uniqueId': '0xa276b3c91fd15d3628cb90a214427232541ab7c0dc873a439d479ba714e73dbf:log:59', 'hash': '0xa276b3c91fd15d3628cb90a214427232541ab7c0dc873a439d479ba714e73dbf', 'from': '0xfaa0d09424014e0df6bfdb3c7a5a282119fc8863', 'to': '0x85056d6456de0ddf4f8775bb071d4781a294f20b', 'value': 100074.94200076046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x153112cf59ecbb05d4c3', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:01:08.000Z'}}, {'blockNum': '0x5118f1', 'uniqueId': '0x9b9ebbf4228850b1cb31e3ac5e581e4e237049bf5badbedcf283c07907dd1479:log:7', 'hash': '0x9b9ebbf4228850b1cb31e3ac5e581e4e237049bf5badbedcf283c07907dd1479', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf1bb7ab2b554dabf89ec8691183890ca61f49129', 'value': 7311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x018c5481b4a970dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:02:43.000Z'}}, {'blockNum': '0x5118f2', 'uniqueId': '0xeb896db24f0e67122de080a8e35849512372695b31417a4d51b326cd1e00e48f:log:7', 'hash': '0xeb896db24f0e67122de080a8e35849512372695b31417a4d51b326cd1e00e48f', 'from': '0xba3f1e92b3fe1bcb2c99339f17b53d1e9087019a', 'to': '0x160995b1c36b7e9d16fe5ff9ded75ea340c06422', 'value': 957.08819008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x33e2444e01d7f10000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:02:59.000Z'}}, {'blockNum': '0x5118f3', 'uniqueId': '0x97ab9337b73222706af6634cf0eb3143f5aea8a8c94e632972519b6ac9d867fe:log:25', 'hash': '0x97ab9337b73222706af6634cf0eb3143f5aea8a8c94e632972519b6ac9d867fe', 'from': '0x9109e83d58c2d59219236c98381654317cbb068f', 'to': '0x59fd3e479a907484ecb28b8f3d58519e99f81aca', 'value': 16201.94474162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x036e4f26b4ebd0248800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:03:53.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x9c85f67f72123180d175d16c6b0ed4e06f7b3d1e91a6bc59bc7de169534afc48:log:2', 'hash': '0x9c85f67f72123180d175d16c6b0ed4e06f7b3d1e91a6bc59bc7de169534afc48', 'from': '0x8a8175cef6a1a7acc947e93b3a37d77e066db7ee', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 14048.03134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02f98b991a11eec2c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0xf4eb16ca4da80be109177e797f26f97b39e3a23afcc334b43da6a8759687448c:log:9', 'hash': '0xf4eb16ca4da80be109177e797f26f97b39e3a23afcc334b43da6a8759687448c', 'from': '0x7d3a15ae8cb687862920f2bd0cfe2b39b8044081', 'to': '0xb169ec172085dfbcdc7c6d01f92a937cab04620b', 'value': 147313.78869102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1f31e580289453c7f800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0xe516a7ce550c5c69256a61e5fae325ac9a14bc1097d21ba7d940999bd633976d:log:23', 'hash': '0xe516a7ce550c5c69256a61e5fae325ac9a14bc1097d21ba7d940999bd633976d', 'from': '0x4f2a4ccf2dfb651a0e244646abaf8fed4a2604fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14530.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0313b40745cb2c000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x45e03bf97dcdb748722a51f432732c6f540ceca222c8e1af59f8eddb1c866410:log:24', 'hash': '0x45e03bf97dcdb748722a51f432732c6f540ceca222c8e1af59f8eddb1c866410', 'from': '0x6ee6b33a144a31da249c37f2ef944b620acdd9fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x01f13c416dfaf7de90539bf960f54447b7f678a3bc3bc7d3ed9c4e9f884858c2:log:25', 'hash': '0x01f13c416dfaf7de90539bf960f54447b7f678a3bc3bc7d3ed9c4e9f884858c2', 'from': '0xcf651a116af6c2ec0debac2142385c5e7e7426b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10567.95590027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x023ce3d97bdd92c8cc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x96b2545b11de7592c4c6e875c7ab7157c94396fb3051c5a242c9062e7e72f597:log:26', 'hash': '0x96b2545b11de7592c4c6e875c7ab7157c94396fb3051c5a242c9062e7e72f597', 'from': '0x85056d6456de0ddf4f8775bb071d4781a294f20b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100074.94200076046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x153112cf59ecbb05d4c3', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x8633eb685f9c43268c0d8feac1bebcab0e859c8e9242f69cfc1d1714120c5ca6:log:29', 'hash': '0x8633eb685f9c43268c0d8feac1bebcab0e859c8e9242f69cfc1d1714120c5ca6', 'from': '0x0f9153b43f708314ce9b160493d4c16dc1779b32', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17966.95469999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03cdfd95baa296fcdc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0xd151ce9b9165724de42a8ffdee37720fed10ea237c0ce71da26ac33f83259b5d:log:30', 'hash': '0xd151ce9b9165724de42a8ffdee37720fed10ea237c0ce71da26ac33f83259b5d', 'from': '0xf480cae1f9225eeb90bab0c31654fa1b29266d04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10412.523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x023476c8e496b8b78000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x4b23129e9c064e6d2194d7a8c867cad3f85238d4e9ce2a6fba59e10e775c5622:log:75', 'hash': '0x4b23129e9c064e6d2194d7a8c867cad3f85238d4e9ce2a6fba59e10e775c5622', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 220644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb9229cf1fc69100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f4', 'uniqueId': '0x8e1e125635d63a3b72470fc47979568b3dd87df4eceec6770106557444af6133:log:103', 'hash': '0x8e1e125635d63a3b72470fc47979568b3dd87df4eceec6770106557444af6133', 'from': '0xcb88bd357277fdada51863885da9b58bdf5dbff3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8117.23975545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01b80954b69a33eac400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:06.000Z'}}, {'blockNum': '0x5118f5', 'uniqueId': '0x584ea23ebd35735dc66503c0566f451abcef373a77f71d97ff6dccbf1d13fd86:log:42', 'hash': '0x584ea23ebd35735dc66503c0566f451abcef373a77f71d97ff6dccbf1d13fd86', 'from': '0x7a8c586083ee1b4c84da326cf9b412e5275e9835', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8463.757065321091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01cad2398000b2451d2a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:04:45.000Z'}}, {'blockNum': '0x5118f7', 'uniqueId': '0x75e3feae2e03bb0e7ffb1943ea36dd2733c0077b134ea28228c429c255ef28a9:log:17', 'hash': '0x75e3feae2e03bb0e7ffb1943ea36dd2733c0077b134ea28228c429c255ef28a9', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43592.6492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093b29891ba5584f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:05:39.000Z'}}, {'blockNum': '0x5118f7', 'uniqueId': '0xdbd9cfa98fdf8c13d6a7233b5996ef8ba6d5977c36510f701449b5eadb4434dd:log:40', 'hash': '0xdbd9cfa98fdf8c13d6a7233b5996ef8ba6d5977c36510f701449b5eadb4434dd', 'from': '0xfebd559ab2c97e676640264c4262278f0834cb27', 'to': '0x60238a9ef41bb0d9d30bc6fc01fc152daf26135a', 'value': 1795.1611813365898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6150ddaf410a08dda1', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:05:39.000Z'}}, {'blockNum': '0x5118ff', 'uniqueId': '0xfaa469465d1a0d949f81121317fa22fe69ebc7042a48bccefab79c820e8707b9:log:19', 'hash': '0xfaa469465d1a0d949f81121317fa22fe69ebc7042a48bccefab79c820e8707b9', 'from': '0xa4dd2e04bac8cbd9aab4877fb2c13f449415fe9f', 'to': '0x15e9ddacfdec790cd89a4c723bc59c42c195c72b', 'value': 49000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a604b9a42df9ca00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:16.000Z'}}, {'blockNum': '0x5118ff', 'uniqueId': '0xb6614bfd362bc7aabab5a9f9730f23349e023317edf0ae2c83415219635e8ddf:log:20', 'hash': '0xb6614bfd362bc7aabab5a9f9730f23349e023317edf0ae2c83415219635e8ddf', 'from': '0xba5695f76796c51fbf6ee2fe68c8e8b2151f249f', 'to': '0x6ee6b33a144a31da249c37f2ef944b620acdd9fb', 'value': 20000.000007691473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19a743400beee', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:16.000Z'}}, {'blockNum': '0x5118ff', 'uniqueId': '0xfb4aecebb8204c360b6a44fc2f57fe23b2fd7239d7134b0394be85f1d6c57d89:log:47', 'hash': '0xfb4aecebb8204c360b6a44fc2f57fe23b2fd7239d7134b0394be85f1d6c57d89', 'from': '0xa54749697ec521aa00f650ce8bc918cb1766b7c1', 'to': '0x4ac03d86fe7b0826fb71a715c7ef8fd2c6cea0e7', 'value': 2972.884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa1290da6fc4a620000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:16.000Z'}}, {'blockNum': '0x511901', 'uniqueId': '0xf276f10666c98363c12f402dbead49c855da7a69071cb2b74df0fafa62155a61:log:0', 'hash': '0xf276f10666c98363c12f402dbead49c855da7a69071cb2b74df0fafa62155a61', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x89dbb75467a93fc949673f49882dbd8ec9fb0467', 'value': 36301.84465693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07afed4c140fccccd400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:24.000Z'}}, {'blockNum': '0x511901', 'uniqueId': '0x73b9427a3bc8542e9ec378b353fb368882d66588ab10d3040e7dd9eb4904b929:log:9', 'hash': '0x73b9427a3bc8542e9ec378b353fb368882d66588ab10d3040e7dd9eb4904b929', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0x9708cc1db9d6769ca0209ed37c993cc244b404d0', 'value': 3887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2b6f611ca975c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:07:24.000Z'}}, {'blockNum': '0x511902', 'uniqueId': '0x5df534806b520c27fbabbb808f4b57f74d8a9ceb11484ae84645ab0e26f33565:log:3', 'hash': '0x5df534806b520c27fbabbb808f4b57f74d8a9ceb11484ae84645ab0e26f33565', 'from': '0x03d6714f3f528b6457d03380e45d07fb60a7224e', 'to': '0x98f95ac8741dfffc66d31dd612e131b25c9c0d4e', 'value': 50000.08, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a9682802838f9480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:08:19.000Z'}}, {'blockNum': '0x511902', 'uniqueId': '0xbec3dedad38959210362708ef9a79d317ff7c490dca5fb2539b8a81df97dae08:log:58', 'hash': '0xbec3dedad38959210362708ef9a79d317ff7c490dca5fb2539b8a81df97dae08', 'from': '0x0026959e2c16db938310f37a3e5d06a2cebdbe70', 'to': '0xd2a0ff710edc2b1b9ca901f18fb87e86c3086a9b', 'value': 802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2b79fc5ed267480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:08:19.000Z'}}, {'blockNum': '0x511903', 'uniqueId': '0x3436c9fabbd323306cdc3553fb8f0aeb414647784ac41c28aad5c32f817f5f44:log:16', 'hash': '0x3436c9fabbd323306cdc3553fb8f0aeb414647784ac41c28aad5c32f817f5f44', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb7eb37df22b8e1fb2e72a74890efa348ec204df6', 'value': 4589.05555556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf8c5f071ec66ad1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:09:33.000Z'}}, {'blockNum': '0x511905', 'uniqueId': '0xa725d1e8d5e678aba3424e0a89be2eeaee7704a9d02bb25f82ba6e92d9641e53:log:0', 'hash': '0xa725d1e8d5e678aba3424e0a89be2eeaee7704a9d02bb25f82ba6e92d9641e53', 'from': '0x85e3f4b00367a383f0fccfddce109f642127c3ee', 'to': '0x257601ac05a7ba6ce198f65afe3014838f078bf0', 'value': 1171705.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf81e4ee877ad850c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:10:12.000Z'}}, {'blockNum': '0x511905', 'uniqueId': '0x96e44b9e4402d97628f1a05e33bd0c65fb4edd00670d6ae8411ebae6110573af:log:108', 'hash': '0x96e44b9e4402d97628f1a05e33bd0c65fb4edd00670d6ae8411ebae6110573af', 'from': '0x04c969e89c22e3c136ae893c28aaeed80270e52c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:10:12.000Z'}}, {'blockNum': '0x511907', 'uniqueId': '0x7f4f506e1864d880081e50f827449aaf2b5e6fde32463f09ef6373132cb16b60:log:75', 'hash': '0x7f4f506e1864d880081e50f827449aaf2b5e6fde32463f09ef6373132cb16b60', 'from': '0x24323539d064ef3d61c23a7ed092f03666af7ad3', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 14815.259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x032323054de4c8ef8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:10:46.000Z'}}, {'blockNum': '0x511908', 'uniqueId': '0xc6ada935d1b33ad0b75eca14f86f6b734ef82853bf7952c9a85dd2f48898fbb3:log:13', 'hash': '0xc6ada935d1b33ad0b75eca14f86f6b734ef82853bf7952c9a85dd2f48898fbb3', 'from': '0xe5586452a33bea0fcf98708998f49aac78e35023', 'to': '0x45ff1a0a61125e5b1b6abc55241575a62e4f1174', 'value': 9950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021b63fd1aa400b80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:10:50.000Z'}}, {'blockNum': '0x51190a', 'uniqueId': '0xf98d3554aec4d5a2e5d33542c649a4cbc6bfebd8ffa23a322f47b7e3e85b31c2:log:31', 'hash': '0xf98d3554aec4d5a2e5d33542c649a4cbc6bfebd8ffa23a322f47b7e3e85b31c2', 'from': '0xd9117c0f284f2846943deb80ea319ed6985f1b91', 'to': '0x15327493b3626427ef5cb6ad5e961e0d3188067c', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:11:31.000Z'}}, {'blockNum': '0x51190b', 'uniqueId': '0xe0231042697982a97ca473448138d737ab9225140115b61e7547042aecb292d6:log:3', 'hash': '0xe0231042697982a97ca473448138d737ab9225140115b61e7547042aecb292d6', 'from': '0x6020938e946f1f519a0d6fbd647d9842849b383d', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 239.26046765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0cf867efabe0171400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:11:34.000Z'}}, {'blockNum': '0x51190c', 'uniqueId': '0x6923f5236706dcf4e5c15f1864d86ea9494a08661bc3a644e34c08bcd5c6ddb0:log:3', 'hash': '0x6923f5236706dcf4e5c15f1864d86ea9494a08661bc3a644e34c08bcd5c6ddb0', 'from': '0x884dbd166ffae569dcf8b1089a3949eb1b498dac', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1570.60899985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x55249413eba2cc2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:11:41.000Z'}}, {'blockNum': '0x51190c', 'uniqueId': '0xe8a4f5d0430187d22f5134764e629d26f50cd61e93c5c8305ad87603ab2a8264:log:4', 'hash': '0xe8a4f5d0430187d22f5134764e629d26f50cd61e93c5c8305ad87603ab2a8264', 'from': '0xa5bef50e6d57fe6a76dbcc50f42f6a8b94125c69', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 9910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021938e08e91d9180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:11:41.000Z'}}, {'blockNum': '0x51190d', 'uniqueId': '0xac62f6882c2052db0bd00ae0b3fd63a36627c51c48e90bd5b9e6d3ef03019eb5:log:18', 'hash': '0xac62f6882c2052db0bd00ae0b3fd63a36627c51c48e90bd5b9e6d3ef03019eb5', 'from': '0xb4c27911cd544c15b81370d746a48dcf013e7ed8', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 13269.99438044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02cf5e2a8d9113fff000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:01.000Z'}}, {'blockNum': '0x51190d', 'uniqueId': '0x9ea1c9a86e07a31e118fd41775bb9f099bc87e428567b7e2e6704183b7e6f52b:log:19', 'hash': '0x9ea1c9a86e07a31e118fd41775bb9f099bc87e428567b7e2e6704183b7e6f52b', 'from': '0xec8509b212ce2a0ca95953aee18cc3b2fe793e17', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1061.01495125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x39848a54a9eaa6b400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:01.000Z'}}, {'blockNum': '0x51190d', 'uniqueId': '0x1f1af8aaa07672c39bb8a45529dae4882387170357559a95f68f1b3690ff5595:log:20', 'hash': '0x1f1af8aaa07672c39bb8a45529dae4882387170357559a95f68f1b3690ff5595', 'from': '0xb90da587cf558dca480d01b9ee0cff6dfd53047f', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 45680.26717282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09ac550e0940697d4800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:01.000Z'}}, {'blockNum': '0x51190d', 'uniqueId': '0xce71c1f1d18ad3f88a03b24851326b61372044038d79296e0b1b3866e01c0dee:log:70', 'hash': '0xce71c1f1d18ad3f88a03b24851326b61372044038d79296e0b1b3866e01c0dee', 'from': '0x59fd3e479a907484ecb28b8f3d58519e99f81aca', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 16201.94474162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x036e4f26b4ebd0248800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:01.000Z'}}, {'blockNum': '0x511911', 'uniqueId': '0x0cb3fed7cda48814cde33c76cdc44000ecfea58e94b40602780a5a69c4620380:log:16', 'hash': '0x0cb3fed7cda48814cde33c76cdc44000ecfea58e94b40602780a5a69c4620380', 'from': '0xcbb6c5b4589afcfe1b8fce3aac69bd00ec91ff14', 'to': '0xe5a2ffa2a052e865def70a9819a52128e4717bf3', 'value': 407.0205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16108b4c4351e14000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:12:39.000Z'}}, {'blockNum': '0x511914', 'uniqueId': '0x5473e39e007518b70b3118a251f132ec09da151783903745202b8158c5b1282f:log:69', 'hash': '0x5473e39e007518b70b3118a251f132ec09da151783903745202b8158c5b1282f', 'from': '0x15e9ddacfdec790cd89a4c723bc59c42c195c72b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:13.000Z'}}, {'blockNum': '0x511914', 'uniqueId': '0x7f25b74e65431294c77ec5264aa6c9414c423950a00a41e22aff17b683f65088:log:71', 'hash': '0x7f25b74e65431294c77ec5264aa6c9414c423950a00a41e22aff17b683f65088', 'from': '0x257601ac05a7ba6ce198f65afe3014838f078bf0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1171705.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf81e4ee877ad850c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:13.000Z'}}, {'blockNum': '0x511914', 'uniqueId': '0x3cd64d8064265a213cb581c338ce25bcb585f5286a43740a8c351cf932f5f9bb:log:72', 'hash': '0x3cd64d8064265a213cb581c338ce25bcb585f5286a43740a8c351cf932f5f9bb', 'from': '0x98f95ac8741dfffc66d31dd612e131b25c9c0d4e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000.08, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a9682802838f9480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:13.000Z'}}, {'blockNum': '0x511914', 'uniqueId': '0x3377770a29f6b988fa48ce9ecd9b8ad1a102e4697aeb3ff70f4a7f6372763c94:log:73', 'hash': '0x3377770a29f6b988fa48ce9ecd9b8ad1a102e4697aeb3ff70f4a7f6372763c94', 'from': '0x6ee6b33a144a31da249c37f2ef944b620acdd9fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000.000007691473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19a743400beee', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:13.000Z'}}, {'blockNum': '0x511915', 'uniqueId': '0x5813d10912f96bd75b7065c65c9a64371c0d3a8f6651ade1a608fd3cebdb8225:log:4', 'hash': '0x5813d10912f96bd75b7065c65c9a64371c0d3a8f6651ade1a608fd3cebdb8225', 'from': '0x45ff1a0a61125e5b1b6abc55241575a62e4f1174', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021b63fd1aa400b80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:15.000Z'}}, {'blockNum': '0x511915', 'uniqueId': '0xec3913a1d88bcb8ae4e41cde87848afb0f37eddd3f2c1b13e6aa21947a742699:log:24', 'hash': '0xec3913a1d88bcb8ae4e41cde87848afb0f37eddd3f2c1b13e6aa21947a742699', 'from': '0xc9abb7e7fef8141bb1e8142e7c71e4b3811a88f6', 'to': '0xfa3e9ed8f470190605b65980e101bbae77789820', 'value': 1368.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4a2b96daf739740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:14:15.000Z'}}, {'blockNum': '0x51191b', 'uniqueId': '0xc3e7666962e0264e87d70f373ae266306b1e976b4a0e7756d552cc635e3eec60:log:22', 'hash': '0xc3e7666962e0264e87d70f373ae266306b1e976b4a0e7756d552cc635e3eec60', 'from': '0x66871cfb3aa4f9f2ab402fb6360471c4bc9261f7', 'to': '0xcbee9f120ed80e64bc1320ab085989de7b167ca6', 'value': 1094.82912101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3b59ce64e7c234f400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:15:27.000Z'}}, {'blockNum': '0x51191e', 'uniqueId': '0xea1159cd2ee36a115fff05261fa9e0d0a119be5eb8fa96d104fc1e664b87cd68:log:20', 'hash': '0xea1159cd2ee36a115fff05261fa9e0d0a119be5eb8fa96d104fc1e664b87cd68', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 108929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17110d8c516c5d640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:16:04.000Z'}}, {'blockNum': '0x511920', 'uniqueId': '0x998e1b2f5fe0b9392b25d0f73b34586b423ebbec36dc22d2706d0edb156ca3bf:log:8', 'hash': '0x998e1b2f5fe0b9392b25d0f73b34586b423ebbec36dc22d2706d0edb156ca3bf', 'from': '0xfe71f0939bd38df2b74d23a6afab5ecd13a4722a', 'to': '0xa761d9d5998a95458cb50e32d2d79dc693a64acc', 'value': 9500.13922071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x020300ea8f5747dd7c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:16:21.000Z'}}, {'blockNum': '0x511922', 'uniqueId': '0x3a10b8a20fafc860e25524d75c741d345e831425018c794440438b9d69a81635:log:1', 'hash': '0x3a10b8a20fafc860e25524d75c741d345e831425018c794440438b9d69a81635', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 22619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04ca2daeb366e08c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:16:49.000Z'}}, {'blockNum': '0x511924', 'uniqueId': '0x603314854ce6be108d0cbfbc28bf0ec170b5b2070afcbf6f6bfa1db943d0bd34:log:369', 'hash': '0x603314854ce6be108d0cbfbc28bf0ec170b5b2070afcbf6f6bfa1db943d0bd34', 'from': '0xf1bb7ab2b554dabf89ec8691183890ca61f49129', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 7311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x018c5481b4a970dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:17:11.000Z'}}, {'blockNum': '0x511926', 'uniqueId': '0xdc4b47752a9d8415803174b7fe00623173bf6247071adec25695b2d0ed6dd4cc:log:40', 'hash': '0xdc4b47752a9d8415803174b7fe00623173bf6247071adec25695b2d0ed6dd4cc', 'from': '0x312faa0884a98417ee4ed58e2b54f813125d5893', 'to': '0xac36ffe62f65edb1a34421445daad02e9c10a698', 'value': 1372.292597997697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4a6462af293ea86240', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:03.000Z'}}, {'blockNum': '0x511926', 'uniqueId': '0x80ad8394c1a573fcaa296e00f82bf3fcd190cd68f13b439231108ae01dfa8cd0:log:42', 'hash': '0x80ad8394c1a573fcaa296e00f82bf3fcd190cd68f13b439231108ae01dfa8cd0', 'from': '0x60238a9ef41bb0d9d30bc6fc01fc152daf26135a', 'to': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'value': 1795.1611813365898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6150ddaf410a08dda1', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:03.000Z'}}, {'blockNum': '0x511928', 'uniqueId': '0x5bc966b87e21ad232194faea646caed08cfe5b5a9455e433b330efb74a4b49db:log:16', 'hash': '0x5bc966b87e21ad232194faea646caed08cfe5b5a9455e433b330efb74a4b49db', 'from': '0x6f61e39ede4bf21891a8c4c4285c33de47e2252c', 'to': '0xbb0bbd1792d7cff1065b27dce16bf043bcd91251', 'value': 1803.68457746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x61c726dede91d61000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:40.000Z'}}, {'blockNum': '0x51192b', 'uniqueId': '0x6399a468a2bdc5b33f57c268b7de2cb6361fe2d29c080071ab0541751a586d8b:log:0', 'hash': '0x6399a468a2bdc5b33f57c268b7de2cb6361fe2d29c080071ab0541751a586d8b', 'from': '0x15327493b3626427ef5cb6ad5e961e0d3188067c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:59.000Z'}}, {'blockNum': '0x51192b', 'uniqueId': '0x474d5638d4b27a2a92b9329422df6f6753a49c58037aadff009a6337c1c130e8:log:11', 'hash': '0x474d5638d4b27a2a92b9329422df6f6753a49c58037aadff009a6337c1c130e8', 'from': '0x6cf55cdba5cc13e68b30359cdec104dd69dd06a7', 'to': '0x034bc43b04a0feef68f89376a83e5b62c863d8fb', 'value': 4470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xf251b624eccc180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:18:59.000Z'}}, {'blockNum': '0x51192e', 'uniqueId': '0xc820291af17e4e1870a42280addc340985b972c10ccfadf23226793497c35836:log:23', 'hash': '0xc820291af17e4e1870a42280addc340985b972c10ccfadf23226793497c35836', 'from': '0x73eabcf8e7e89cbf37a5f51900cbf66c8161b8db', 'to': '0xdb1c77cc4d4972cf5912eaaefd93727eecc936d2', 'value': 33000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06fceeff6681b2a00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:19:58.000Z'}}, {'blockNum': '0x511931', 'uniqueId': '0x954611aa3f8fff92ce05c2eb9acdfe8f5a3d18672f49877f13459c00ba5bce56:log:2', 'hash': '0x954611aa3f8fff92ce05c2eb9acdfe8f5a3d18672f49877f13459c00ba5bce56', 'from': '0xa240b406a360ee4c44e6c11ea3991670233bea8b', 'to': '0x3b2ccf3b0b2f6683f7bd936f7bce954f213e204c', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:20:30.000Z'}}, {'blockNum': '0x511931', 'uniqueId': '0xb332f587ebc6b777a893e895aacdac9dfe6557f11e588250cd952ed72571c3a1:log:26', 'hash': '0xb332f587ebc6b777a893e895aacdac9dfe6557f11e588250cd952ed72571c3a1', 'from': '0x92cf304bd5342848e486e3edfa7beffdd03dcfb4', 'to': '0x0a261f9ccb7d58fa8660ebb1eb378aad525004c8', 'value': 682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x24f8a6ba9bf0680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:20:30.000Z'}}, {'blockNum': '0x511934', 'uniqueId': '0x5507ba50ac607b7cc4989eff6b8430b78ac5e21ca06526e734fa20333bf7c15a:log:55', 'hash': '0x5507ba50ac607b7cc4989eff6b8430b78ac5e21ca06526e734fa20333bf7c15a', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0x4964e9156178555262f4e1dacf2544a086af9d79', 'value': 7137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0182e5c5868daae40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:21:38.000Z'}}, {'blockNum': '0x511937', 'uniqueId': '0x6134f186a0450ca87e9055684db8c72c0a6c7360ced1af5a1c90835919ccf960:log:0', 'hash': '0x6134f186a0450ca87e9055684db8c72c0a6c7360ced1af5a1c90835919ccf960', 'from': '0xc8a46f6ce6e480268bae32b52885b9bf01c7493b', 'to': '0xdb6432efe3816260cbfd83c012a8f79f78da7767', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:17.000Z'}}, {'blockNum': '0x511937', 'uniqueId': '0xff8c49433da6760fa4d949cadb2d31451695dafc0744f514c19e45bb8c5ac5b1:log:10', 'hash': '0xff8c49433da6760fa4d949cadb2d31451695dafc0744f514c19e45bb8c5ac5b1', 'from': '0x12a6d0e18da6e6deca313183c19a8ec832714b1e', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1215.07362358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x41de88aee8f89a1800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:17.000Z'}}, {'blockNum': '0x511937', 'uniqueId': '0x39f86d3dbdf68b1860c5e3671bdf5480211103c8a2d8120a9524c7cfee418a61:log:11', 'hash': '0x39f86d3dbdf68b1860c5e3671bdf5480211103c8a2d8120a9524c7cfee418a61', 'from': '0xde05344cd4e4b100ee7f10598808a6e1444ea396', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1488.46485477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50b0997330433ef400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:17.000Z'}}, {'blockNum': '0x511938', 'uniqueId': '0x584fd313971a6b008a2c1bd9aa19cf2a74f7c8b5fa6cd256ba352a56a45d7f4a:log:5', 'hash': '0x584fd313971a6b008a2c1bd9aa19cf2a74f7c8b5fa6cd256ba352a56a45d7f4a', 'from': '0x29154fd303467ca07c67ded5ef27a86fd712af75', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 25763.87792732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0574a9a18805a3e20000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:25.000Z'}}, {'blockNum': '0x511938', 'uniqueId': '0xb8a782b3e2a6c042757700ddbf9acfcb5220ac7d5c437ca839cb2e4993900791:log:6', 'hash': '0xb8a782b3e2a6c042757700ddbf9acfcb5220ac7d5c437ca839cb2e4993900791', 'from': '0x9708cc1db9d6769ca0209ed37c993cc244b404d0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 3887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2b6f611ca975c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:25.000Z'}}, {'blockNum': '0x511939', 'uniqueId': '0xb081f5ad5654803dcefd30e30aa44af831d156020a48aeb322e4928a80ab7d42:log:10', 'hash': '0xb081f5ad5654803dcefd30e30aa44af831d156020a48aeb322e4928a80ab7d42', 'from': '0x89af64fad4a6987bb775abc7069ebf48cdd035de', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 831.37527137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2d11a64c7efcd56400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:22:34.000Z'}}, {'blockNum': '0x51193d', 'uniqueId': '0x94f71d3fb5ecec4cb93eebfe2fc05f7dfd4af415498a248fdf6f1318deca1f2b:log:0', 'hash': '0x94f71d3fb5ecec4cb93eebfe2fc05f7dfd4af415498a248fdf6f1318deca1f2b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x61850dc4762ad9366f042dd0d17493ad7b316174', 'value': 2992.166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa234a513d339770000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:21.000Z'}}, {'blockNum': '0x51193d', 'uniqueId': '0x22776a0b416ba6f05a5148482ef76d48f7e3c6b39b12e0d6526843e540cae4ca:log:1', 'hash': '0x22776a0b416ba6f05a5148482ef76d48f7e3c6b39b12e0d6526843e540cae4ca', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 182870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9670e713723980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:21.000Z'}}, {'blockNum': '0x51193e', 'uniqueId': '0x4de59b039beef3a5062ccc23cacaeaf76b7d3988692108ea2cf8f27c1e69fab7:log:10', 'hash': '0x4de59b039beef3a5062ccc23cacaeaf76b7d3988692108ea2cf8f27c1e69fab7', 'from': '0x24db60f1ee1fee4b473d0077e4ce0b844d134453', 'to': '0x92bec8f3d3a321977bf8623344b771b046f81c9d', 'value': 15648.63592766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03505072ea2e25a22ac0', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:32.000Z'}}, {'blockNum': '0x51193f', 'uniqueId': '0xc082e23385336b3050c4f8d4cbcbc1b0c25bc485df290b8c56e9ba0f265550c6:log:24', 'hash': '0xc082e23385336b3050c4f8d4cbcbc1b0c25bc485df290b8c56e9ba0f265550c6', 'from': '0xa761d9d5998a95458cb50e32d2d79dc693a64acc', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9500.13922071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x020300ea8f5747dd7c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:46.000Z'}}, {'blockNum': '0x51193f', 'uniqueId': '0xee448bdf6406df75a5f1e4fd24d294a34a35ad95da4e794a674d69233ba2b5e2:log:28', 'hash': '0xee448bdf6406df75a5f1e4fd24d294a34a35ad95da4e794a674d69233ba2b5e2', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 22619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04ca2daeb366e08c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:46.000Z'}}, {'blockNum': '0x51193f', 'uniqueId': '0xa134b0515e3e791c4456867d4f5bb92a7c23b1347ef7d8d8fbc665f5d2051dfc:log:79', 'hash': '0xa134b0515e3e791c4456867d4f5bb92a7c23b1347ef7d8d8fbc665f5d2051dfc', 'from': '0xd8fdfb5b61b8a5b39b1b678b5bcd89c28ece1f02', 'to': '0x1dcfc3f1f874bad8a409e1f8dbcc34d32bb52de8', 'value': 12080.47795063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x028ee24f42fb9012fc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:23:46.000Z'}}, {'blockNum': '0x511940', 'uniqueId': '0x993679c940b439a47404babd0a6ec5d15811a40127715023cd7cdf307b6510ed:log:31', 'hash': '0x993679c940b439a47404babd0a6ec5d15811a40127715023cd7cdf307b6510ed', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17110d8c516c5d640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:24:06.000Z'}}, {'blockNum': '0x511940', 'uniqueId': '0x15f45bf12096267b41baa382aadfb9666972b9a56db1c04b1e4a4bcadc2f864c:log:32', 'hash': '0x15f45bf12096267b41baa382aadfb9666972b9a56db1c04b1e4a4bcadc2f864c', 'from': '0xb169ec172085dfbcdc7c6d01f92a937cab04620b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 147313.78869102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1f31e580289453c7f800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:24:06.000Z'}}, {'blockNum': '0x511940', 'uniqueId': '0x4861415f2e7405e64a70274928ca863c308cde96c1e944749f635d70fe6c7faa:log:33', 'hash': '0x4861415f2e7405e64a70274928ca863c308cde96c1e944749f635d70fe6c7faa', 'from': '0xdb1c77cc4d4972cf5912eaaefd93727eecc936d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33541.89234928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x071a4f43c31baaedc000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:24:06.000Z'}}, {'blockNum': '0x511945', 'uniqueId': '0x3e2bd29bbe49e6b75ca7bf770a6d93288cdb8a6210693fc3512d0420de6bc61b:log:75', 'hash': '0x3e2bd29bbe49e6b75ca7bf770a6d93288cdb8a6210693fc3512d0420de6bc61b', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0x1de453ba8afb60703b62d4f0eb075e28f4005fba', 'value': 4824.64829204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01058b71fb873749d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:25:23.000Z'}}, {'blockNum': '0x511945', 'uniqueId': '0xa722daba2f8c9676d4185f1f9897a373e0ceca166ef0aba79d33dc1096523477:log:76', 'hash': '0xa722daba2f8c9676d4185f1f9897a373e0ceca166ef0aba79d33dc1096523477', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 165.40982295144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08f785bd9874d62400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:25:23.000Z'}}, {'blockNum': '0x511946', 'uniqueId': '0x49acd72217ae640c7f9d0fae5bca5bd755f9b3176e9bd4f549b57a4574b361e0:log:1', 'hash': '0x49acd72217ae640c7f9d0fae5bca5bd755f9b3176e9bd4f549b57a4574b361e0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0ed07743031fd648563b5ab5765c01c8834e29cd', 'value': 7571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019a6cbb431f726c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:25:34.000Z'}}, {'blockNum': '0x511948', 'uniqueId': '0xf133b5ed3e9f79fbd5f36b9f112b7d6715fe62d61488a27592d850a42349ea3b:log:104', 'hash': '0xf133b5ed3e9f79fbd5f36b9f112b7d6715fe62d61488a27592d850a42349ea3b', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x24c639aaa70e70e1a624ff9c7511a24cc8827f23', 'value': 1452.9737942918327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4ec40fdfb92c2e084f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:26:04.000Z'}}, {'blockNum': '0x51194a', 'uniqueId': '0xe4dd02c32aa6ae41bf85222b1eb6fb93af86a8d83c2e340b34be7edc3db69053:log:30', 'hash': '0xe4dd02c32aa6ae41bf85222b1eb6fb93af86a8d83c2e340b34be7edc3db69053', 'from': '0x505ddbdbc45cce3c3777aad2c8baf70b9a62157f', 'to': '0x58cbb922823183989fcad84fc7bde32fb25f547f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:26:41.000Z'}}, {'blockNum': '0x51194f', 'uniqueId': '0x3327aa1117bfc29037f550bd65b56d97d80cec0e3844e74ca24292ffd3c98262:log:20', 'hash': '0x3327aa1117bfc29037f550bd65b56d97d80cec0e3844e74ca24292ffd3c98262', 'from': '0x8a5b30a476c9b615d629676582012cdd0c4945a2', 'to': '0x0e8231ec9eb0a3bfdd6db1f15c3746e43695614f', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:10.000Z'}}, {'blockNum': '0x511950', 'uniqueId': '0x6ff18df071804abfab8996bc5ee07ab0c04ad3412769c71e91dd326183836bda:log:5', 'hash': '0x6ff18df071804abfab8996bc5ee07ab0c04ad3412769c71e91dd326183836bda', 'from': '0x081dfeb7bc3be7bf3be0a8155e0118fae33b45f2', 'to': '0x753de24f78c8289bf138f35ecd479e55f8264351', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:38.000Z'}}, {'blockNum': '0x511950', 'uniqueId': '0xfc2911fa25a6a703dc950448c6e97a18af46cc1f02cd3e0c9fab816f5e257051:log:16', 'hash': '0xfc2911fa25a6a703dc950448c6e97a18af46cc1f02cd3e0c9fab816f5e257051', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x5d0de0ec00b9084c4cb485a55ad555b1add3e40e', 'value': 6865.5310381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01742e6208027156c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:38.000Z'}}, {'blockNum': '0x511950', 'uniqueId': '0xf7a9e4e83703874994f576648e156fd7620e1bb2684ad567d875878359e8853e:log:34', 'hash': '0xf7a9e4e83703874994f576648e156fd7620e1bb2684ad567d875878359e8853e', 'from': '0x3e58f7912cb547f3e8144b70f08f93e550125668', 'to': '0x56e2d5e471d2fc33ae157f708ecfa64321aba74e', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:38.000Z'}}, {'blockNum': '0x511951', 'uniqueId': '0x926e8dd6dfde71a7843e897c490e9afdd1048df83a9fa17ea29e03266065215e:log:2', 'hash': '0x926e8dd6dfde71a7843e897c490e9afdd1048df83a9fa17ea29e03266065215e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4286fc0802cf227f6db1eb4b97e57ea5f4ac45aa', 'value': 1492.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50e7d5c42fffdc8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:44.000Z'}}, {'blockNum': '0x511951', 'uniqueId': '0xb627ab2c0889dcf84a39077d3c2190d08663d9f35f5dd416b3273b73e4bbb17a:log:6', 'hash': '0xb627ab2c0889dcf84a39077d3c2190d08663d9f35f5dd416b3273b73e4bbb17a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 52214.60509441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b0e8f35c08819b7e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:27:44.000Z'}}, {'blockNum': '0x511958', 'uniqueId': '0x67957cd8242fe927d992139ecb2aa611d9983cf69d40054fc8f5e55ea101a016:log:44', 'hash': '0x67957cd8242fe927d992139ecb2aa611d9983cf69d40054fc8f5e55ea101a016', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'value': 19886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043605b03774d9f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:29:54.000Z'}}, {'blockNum': '0x511958', 'uniqueId': '0x1f778958cadebbfcf1ec8b5180d73f089e6e02ce67810e4f02e3c634b13203c7:log:45', 'hash': '0x1f778958cadebbfcf1ec8b5180d73f089e6e02ce67810e4f02e3c634b13203c7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093a349a8dc15e7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:29:54.000Z'}}, {'blockNum': '0x511959', 'uniqueId': '0x7d8971ea7f83737ce38570f7859cc2bc2882e425505daf14ebf6573208c1c810:log:3', 'hash': '0x7d8971ea7f83737ce38570f7859cc2bc2882e425505daf14ebf6573208c1c810', 'from': '0x06ed0da72219d0167b814c3063c241a2e9ad18ae', 'to': '0x7c641125d5059558aca0adf93539322b3d974b69', 'value': 18837.43855063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03fd2df99cc566607c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:30:00.000Z'}}, {'blockNum': '0x51195b', 'uniqueId': '0x81e92b30b76136077e7395474743564da97ddf12c4665629fa3f47f249b2140b:log:3', 'hash': '0x81e92b30b76136077e7395474743564da97ddf12c4665629fa3f47f249b2140b', 'from': '0x2ea556f52967bd826371d1926655a831a33c22eb', 'to': '0xda16b909a1ae6e080e1cd2b3a9431b3c560aeea7', 'value': 7536.56828811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01988ee53f95fe60cc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:30:21.000Z'}}, {'blockNum': '0x51195b', 'uniqueId': '0xc05a5626d6f3d3a5161e1687f3b6f015f2a24b68c27aad86796ec1c6a8889049:log:14', 'hash': '0xc05a5626d6f3d3a5161e1687f3b6f015f2a24b68c27aad86796ec1c6a8889049', 'from': '0xec11709586c0f6bb57d502042a58eb78461ec4cf', 'to': '0xf29772d1ca4472a0235c280daa96d0908107ccf6', 'value': 310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x10ce1d3d8cb3180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:30:21.000Z'}}, {'blockNum': '0x51195d', 'uniqueId': '0xaee232d268ece9afcef962e0f234564513bc2a56411f2de39087b695c7cad52d:log:11', 'hash': '0xaee232d268ece9afcef962e0f234564513bc2a56411f2de39087b695c7cad52d', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 182870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9670e713723980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:31:49.000Z'}}, {'blockNum': '0x51195d', 'uniqueId': '0x70d8faee2bed93e30271883532a8bd64a8d737acb686c693d3ab5049839208c5:log:20', 'hash': '0x70d8faee2bed93e30271883532a8bd64a8d737acb686c693d3ab5049839208c5', 'from': '0x1bf2d3e5bfdbba20502bf9b0ea0360a9b93a0d68', 'to': '0x2e9aa1eadabf165b0d1a289e09567a1fdfadff4d', 'value': 83486.9240158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11add5d0f3b06b913000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:31:49.000Z'}}, {'blockNum': '0x51195f', 'uniqueId': '0x5e68c18ca1968055d9645580e12ddbfa0fb45e223dfa8601c876934cbe89e5e8:log:25', 'hash': '0x5e68c18ca1968055d9645580e12ddbfa0fb45e223dfa8601c876934cbe89e5e8', 'from': '0x2dc420af29cbb5e33a7deba7d7da01f38dd7ea18', 'to': '0xab9bf0750cd28668d3f97509efb61cda59495409', 'value': 8902.90172582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2a094be09d13de400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:04.000Z'}}, {'blockNum': '0x511960', 'uniqueId': '0xb9d194cc72dcb762cdf3fa220666d987a4befc2ceb24ec622fc89af5b71fb0ba:log:32', 'hash': '0xb9d194cc72dcb762cdf3fa220666d987a4befc2ceb24ec622fc89af5b71fb0ba', 'from': '0xcbee9f120ed80e64bc1320ab085989de7b167ca6', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1094.82912101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3b59ce64e7c234f400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:36.000Z'}}, {'blockNum': '0x511960', 'uniqueId': '0x953700f2c1d1b7fd07b81601aa12b3787f33735dc9a9cf201c69da0921a7e20b:log:61', 'hash': '0x953700f2c1d1b7fd07b81601aa12b3787f33735dc9a9cf201c69da0921a7e20b', 'from': '0xb2de8e68a968f7da0b0396e3ac823b58c51bed2d', 'to': '0xaf811eeecf5657c30adb6aba56f2f39d7dae4659', 'value': 32117.1505356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06cd1300082bf8c0e000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:36.000Z'}}, {'blockNum': '0x511960', 'uniqueId': '0xf06b2c9264c1280b6cef8cf517f4d6cc1a79c4d015bf59d0ca160507834cc651:log:62', 'hash': '0xf06b2c9264c1280b6cef8cf517f4d6cc1a79c4d015bf59d0ca160507834cc651', 'from': '0xa06f8516027b85e62d7720606f939b9a36b994d2', 'to': '0x74b2a5d9197e24ab50ef926b5b11ffb92c765775', 'value': 440.5494317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17e1d9fe000eb6c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:36.000Z'}}, {'blockNum': '0x511961', 'uniqueId': '0x49645c14f0d97900fe356d83b047fdd57e8dfc24a2f216c90f21196c82fb8340:log:19', 'hash': '0x49645c14f0d97900fe356d83b047fdd57e8dfc24a2f216c90f21196c82fb8340', 'from': '0x4964e9156178555262f4e1dacf2544a086af9d79', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0182e5c5868daae40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:32:55.000Z'}}, {'blockNum': '0x511962', 'uniqueId': '0x5e22c89883b55aecd2df7a8218d3dbe7ecff5161ce4ad004156c2c6a14828e12:log:47', 'hash': '0x5e22c89883b55aecd2df7a8218d3dbe7ecff5161ce4ad004156c2c6a14828e12', 'from': '0x0a261f9ccb7d58fa8660ebb1eb378aad525004c8', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x24f8a6ba9bf0680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:33:25.000Z'}}, {'blockNum': '0x511962', 'uniqueId': '0x572715327d78ac737eb0f9f7875666bf3098f5a9951aefb1dc4355201c288263:log:48', 'hash': '0x572715327d78ac737eb0f9f7875666bf3098f5a9951aefb1dc4355201c288263', 'from': '0xbb0bbd1792d7cff1065b27dce16bf043bcd91251', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1803.68457746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x61c726dede91d61000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:33:25.000Z'}}, {'blockNum': '0x511965', 'uniqueId': '0xd7cbd9f398dd8366228a9164e4a925b6f8f9f42e48d28f56b3e4eeca07353fc9:log:0', 'hash': '0xd7cbd9f398dd8366228a9164e4a925b6f8f9f42e48d28f56b3e4eeca07353fc9', 'from': '0xe06de01d22974a5e57546ac35eb8e92e8e94f2f6', 'to': '0x018e5f45c6c2ed98ab64b4120a42c72997ac96bf', 'value': 5600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x012f939c99edab800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:33:46.000Z'}}, {'blockNum': '0x511967', 'uniqueId': '0x70e7476c45542cbc9ed1d6f169992b22c17f7c96368829e61efa6e034c024b65:log:11', 'hash': '0x70e7476c45542cbc9ed1d6f169992b22c17f7c96368829e61efa6e034c024b65', 'from': '0x1dcfc3f1f874bad8a409e1f8dbcc34d32bb52de8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12080.47795063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x028ee24f42fb9012fc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:05.000Z'}}, {'blockNum': '0x511967', 'uniqueId': '0x963483a45737aa2b230f14182eac8e995d13bc1e3a579f6a6def68aa85b2cdaf:log:12', 'hash': '0x963483a45737aa2b230f14182eac8e995d13bc1e3a579f6a6def68aa85b2cdaf', 'from': '0xdb6432efe3816260cbfd83c012a8f79f78da7767', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:05.000Z'}}, {'blockNum': '0x511967', 'uniqueId': '0x77b8b216b9121593a3cee85e5ea868f88df92d71c84e56cd40cb2dc2a136dd90:log:13', 'hash': '0x77b8b216b9121593a3cee85e5ea868f88df92d71c84e56cd40cb2dc2a136dd90', 'from': '0x7c641125d5059558aca0adf93539322b3d974b69', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18837.43855063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03fd2df99cc566607c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:05.000Z'}}, {'blockNum': '0x511968', 'uniqueId': '0x23dba0302b33367171e70187671d49a27b0e6da715973b059b55104438096d7c:log:0', 'hash': '0x23dba0302b33367171e70187671d49a27b0e6da715973b059b55104438096d7c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2f13865b65f4301bc2b04a5d4ead042c4f2df458', 'value': 10505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02397a29321fe6840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:28.000Z'}}, {'blockNum': '0x511968', 'uniqueId': '0x5287f9d03081bbe3c77340e510a20acde852d0279c22fa4fb89c8469bd052259:log:2', 'hash': '0x5287f9d03081bbe3c77340e510a20acde852d0279c22fa4fb89c8469bd052259', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'value': 14223.701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x030311811b1a30688000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:28.000Z'}}, {'blockNum': '0x51196a', 'uniqueId': '0xa13a568fad27fcf49f61d23c065921b64d0b8d9dfb867de216bd17fe814680e9:log:2', 'hash': '0xa13a568fad27fcf49f61d23c065921b64d0b8d9dfb867de216bd17fe814680e9', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xf257097ea6ded537f0a3e29338b3ab9a5c8ab178', 'value': 1559.35430967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x54886362d4e6d1fc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:34:46.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0xd46768c10ce8264719f16139097ac472a1950660c4a352fd71a0bf505f23c597:log:24', 'hash': '0xd46768c10ce8264719f16139097ac472a1950660c4a352fd71a0bf505f23c597', 'from': '0x4286fc0802cf227f6db1eb4b97e57ea5f4ac45aa', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1492.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50e7d5c42fffdc8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0x0ff7e8ec4c1df8472f9293486e4e624ad426c22f5004fba9610a3c1d1b74edf6:log:26', 'hash': '0x0ff7e8ec4c1df8472f9293486e4e624ad426c22f5004fba9610a3c1d1b74edf6', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52214.60509441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b0e8f35c08819b7e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0x67356e886c45f1096ca7bb4cd81cde7f8d728ddd37f821aca0d170e4cb2555e6:log:29', 'hash': '0x67356e886c45f1096ca7bb4cd81cde7f8d728ddd37f821aca0d170e4cb2555e6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5faf86f26f518e6c23920c36150b597d131dffcc', 'value': 1471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbe39d24ed79c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0x7008c3383e3b39deb45f2c0b0a4c27d807da7fb3a04a91ea90848acc2cb72351:log:52', 'hash': '0x7008c3383e3b39deb45f2c0b0a4c27d807da7fb3a04a91ea90848acc2cb72351', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xf257097ea6ded537f0a3e29338b3ab9a5c8ab178', 'value': 605.19829534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x20ced043223ca4b800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x51196b', 'uniqueId': '0xb186d750230e0bc9d8f84805ef1e967acf912b6f594e82e5a067d74570a53439:log:134', 'hash': '0xb186d750230e0bc9d8f84805ef1e967acf912b6f594e82e5a067d74570a53439', 'from': '0x74bdb3250a1e9371e2282e44581f0fec1552a2ad', 'to': '0xe8974e0ac1ed333ccb59f7aa746f18dada21a272', 'value': 56641.23892395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bfe87184f2fe4794c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:35:35.000Z'}}, {'blockNum': '0x511970', 'uniqueId': '0xd7aa9658fecbe1d09d000069695dc1e1e93548eceea62e826593ea6c23fc7935:log:58', 'hash': '0xd7aa9658fecbe1d09d000069695dc1e1e93548eceea62e826593ea6c23fc7935', 'from': '0x74bdb3250a1e9371e2282e44581f0fec1552a2ad', 'to': '0x115affcec1e09f49e5fb7e02622f611bdc906c04', 'value': 56461.0454446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf4c268786c9a09b000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:36:38.000Z'}}, {'blockNum': '0x511971', 'uniqueId': '0x41ad8fe97cf62c408ca26d3e79e99a920290cedc23135f0ed9f9d0845c27a14e:log:16', 'hash': '0x41ad8fe97cf62c408ca26d3e79e99a920290cedc23135f0ed9f9d0845c27a14e', 'from': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 19886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043605b03774d9f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:37:17.000Z'}}, {'blockNum': '0x511971', 'uniqueId': '0xc6a9bf71a1b849a0cd8f1c328b08e3d8340a3f3fb7339d0802614f28c2f50c31:log:18', 'hash': '0xc6a9bf71a1b849a0cd8f1c328b08e3d8340a3f3fb7339d0802614f28c2f50c31', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093a349a8dc15e7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:37:17.000Z'}}, {'blockNum': '0x511971', 'uniqueId': '0xa3afa11fa466a535013b3710973db358370e1e42b684252ed3b065f8a5b6b2a4:log:24', 'hash': '0xa3afa11fa466a535013b3710973db358370e1e42b684252ed3b065f8a5b6b2a4', 'from': '0x66de23db1fd0b1078ed77f1d79986c33ccda802d', 'to': '0xca585ba96b6707b122e73dd405f91d559159dcd6', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:37:17.000Z'}}, {'blockNum': '0x511973', 'uniqueId': '0x93200028bbdb246e872ca5eeffe8c8bf644065376a624d7f5b9c365e06f2ecdd:log:1', 'hash': '0x93200028bbdb246e872ca5eeffe8c8bf644065376a624d7f5b9c365e06f2ecdd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9120483c4b01199b676cbea0ce5dee99a08c38e1', 'value': 9664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x020be2f0fdeeff000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:37:31.000Z'}}, {'blockNum': '0x511975', 'uniqueId': '0x8d66b7bd50bcc68144d34bcdf5dad27199522c9be9bcccefc587c1712ebd1200:log:18', 'hash': '0x8d66b7bd50bcc68144d34bcdf5dad27199522c9be9bcccefc587c1712ebd1200', 'from': '0x46540bd6447f381385da9a5721bc6fdfd0fc2127', 'to': '0x21b99415819af104e64186b8b1cfd7d5d069a465', 'value': 4040.35833781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xdb073c558094c43400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:38:26.000Z'}}, {'blockNum': '0x511977', 'uniqueId': '0x68e554e0717d53664fdd560c7cf322ca61f66c2cc3ff7df9661a009be9a93ca6:log:24', 'hash': '0x68e554e0717d53664fdd560c7cf322ca61f66c2cc3ff7df9661a009be9a93ca6', 'from': '0x74bdb3250a1e9371e2282e44581f0fec1552a2ad', 'to': '0x28934b1cac39223b4bec7d746e601ee2858026bf', 'value': 13612.14653628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02e1ea7b3280dd4b7000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:39:05.000Z'}}, {'blockNum': '0x511979', 'uniqueId': '0x95d294e3d1f27241962d473fa90e05cde893913d03f3793f5ffb75c33e18da1a:log:28', 'hash': '0x95d294e3d1f27241962d473fa90e05cde893913d03f3793f5ffb75c33e18da1a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1188391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xfba6ce2176a1c83c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:39:47.000Z'}}, {'blockNum': '0x511979', 'uniqueId': '0x5a7a84938680e5f32de738504d098c386ac5023fd570ec28b2fe1936d7a731a1:log:35', 'hash': '0x5a7a84938680e5f32de738504d098c386ac5023fd570ec28b2fe1936d7a731a1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'value': 5175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0118898d49acc67c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:39:47.000Z'}}, {'blockNum': '0x511980', 'uniqueId': '0x795279cf9fb89c9c35d4499e6d4f2cdb7ae18d1418beeac4b2167bf4cb650a4c:log:7', 'hash': '0x795279cf9fb89c9c35d4499e6d4f2cdb7ae18d1418beeac4b2167bf4cb650a4c', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xd12f1a987691cc0f7a726ce3a27e5b034de3177f', 'value': 502.97570702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b4430aca7ba0c7800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:41:30.000Z'}}, {'blockNum': '0x511981', 'uniqueId': '0xd10ec3887b70ad263b830d19b34def20d4f11163b5b043b0f25e2a26b7511cdd:log:67', 'hash': '0xd10ec3887b70ad263b830d19b34def20d4f11163b5b043b0f25e2a26b7511cdd', 'from': '0xc4e41875414ecee3a9345a5618ec8412cc6ebf75', 'to': '0x87ffd6b78bfcf93b9e4a146de9cf4e4128c02a19', 'value': 423.70044531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16f8065e25f55f6c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:05.000Z'}}, {'blockNum': '0x511981', 'uniqueId': '0x483048cb8d3699d5fec238b94ad5ec99fa230384e2dd72a0d1474148e7d718a4:log:132', 'hash': '0x483048cb8d3699d5fec238b94ad5ec99fa230384e2dd72a0d1474148e7d718a4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'value': 88389.461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x12b79a2f28109b688000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:05.000Z'}}, {'blockNum': '0x511982', 'uniqueId': '0x1eb0b2fab8bf000f51bd53f38e9e36a87bf904c95f48167fbed4382fde92c5c6:log:31', 'hash': '0x1eb0b2fab8bf000f51bd53f38e9e36a87bf904c95f48167fbed4382fde92c5c6', 'from': '0x2f13865b65f4301bc2b04a5d4ead042c4f2df458', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02397a29321fe6840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:10.000Z'}}, {'blockNum': '0x511982', 'uniqueId': '0x6de48dbb9c1c60f7dbf095703076e8ede44cb280ec4c7f9f277d65c872f12b32:log:33', 'hash': '0x6de48dbb9c1c60f7dbf095703076e8ede44cb280ec4c7f9f277d65c872f12b32', 'from': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 14223.701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x030311811b1a30688000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:10.000Z'}}, {'blockNum': '0x511982', 'uniqueId': '0x44d0006331d538ede92353c7c22f677bf57172b70f5af3fd3e6548e0efdd95cf:log:37', 'hash': '0x44d0006331d538ede92353c7c22f677bf57172b70f5af3fd3e6548e0efdd95cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeee8e79dc6bb97ac71e102689a52eff9a469a2ac', 'value': 119945.10242823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x19663cae1a161ca33c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:42:10.000Z'}}, {'blockNum': '0x51198a', 'uniqueId': '0x8f746fdd607f1a8df075c16c72c80c8968800510d11abb85654c36a8ef7791f9:log:10', 'hash': '0x8f746fdd607f1a8df075c16c72c80c8968800510d11abb85654c36a8ef7791f9', 'from': '0x4929f4d38f2955649b5aa34343da04cf790b9d92', 'to': '0x03ca8f7a6791bf83e1106124d6e2ad6426be2cc3', 'value': 1949.7115238457363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x69b1aeccec5eaa5f77', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:21.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0x301087338708bf331ce9525248a3095730df02d0827bdc6a3147f8d94dd7680b:log:16', 'hash': '0x301087338708bf331ce9525248a3095730df02d0827bdc6a3147f8d94dd7680b', 'from': '0x1de453ba8afb60703b62d4f0eb075e28f4005fba', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 4824.64829204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01058b71fb873749d000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0x12b68fbdb5f2e6a38a96e474274c9af85dc942c8d1d449756a794ca7e3e99045:log:17', 'hash': '0x12b68fbdb5f2e6a38a96e474274c9af85dc942c8d1d449756a794ca7e3e99045', 'from': '0xab9bf0750cd28668d3f97509efb61cda59495409', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 8902.90172582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2a094be09d13de400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0x021ebcf18f962d88038e8c21043495806a3c7d0167181e6012fd8958429b1b1b:log:18', 'hash': '0x021ebcf18f962d88038e8c21043495806a3c7d0167181e6012fd8958429b1b1b', 'from': '0xaf811eeecf5657c30adb6aba56f2f39d7dae4659', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 32117.1505356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06cd1300082bf8c0e000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0xf804359a06e7efa7f3926c6cc746940ba168b6d5879e27a13837585cb58f64fc:log:19', 'hash': '0xf804359a06e7efa7f3926c6cc746940ba168b6d5879e27a13837585cb58f64fc', 'from': '0x74b2a5d9197e24ab50ef926b5b11ffb92c765775', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 440.5494317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17e1d9fe000eb6c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198c', 'uniqueId': '0x8053df7ddfcda17c4a22da2a4be3656c6fb16bda778326250e9b4c3672763458:log:20', 'hash': '0x8053df7ddfcda17c4a22da2a4be3656c6fb16bda778326250e9b4c3672763458', 'from': '0x92bec8f3d3a321977bf8623344b771b046f81c9d', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 15648.63592766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03505072ea2e25a22ac0', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:43:48.000Z'}}, {'blockNum': '0x51198f', 'uniqueId': '0x89383431e5231ff03f3f71a65b034dbfac7933a21cc31272cd9f13f054d33268:log:19', 'hash': '0x89383431e5231ff03f3f71a65b034dbfac7933a21cc31272cd9f13f054d33268', 'from': '0x2e9aa1eadabf165b0d1a289e09567a1fdfadff4d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83486.9240158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11add5d0f3b06b913000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:05.000Z'}}, {'blockNum': '0x51198f', 'uniqueId': '0xba89bb5111d4183371b9abe996a3d3089ef6b88f23d0876b570d2bb082ca3b42:log:24', 'hash': '0xba89bb5111d4183371b9abe996a3d3089ef6b88f23d0876b570d2bb082ca3b42', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x834b8c36ca6e573933f76adc576a28ce77f200b1', 'value': 12416.4216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02a11876dc2dcf4e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:05.000Z'}}, {'blockNum': '0x51198f', 'uniqueId': '0xd6340c05441a7c549cb1a0e881c55e425d2fc7873d1565f3f91b4bb866d7648c:log:25', 'hash': '0xd6340c05441a7c549cb1a0e881c55e425d2fc7873d1565f3f91b4bb866d7648c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'value': 9625.304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0209c9ed2ef42a7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:05.000Z'}}, {'blockNum': '0x511990', 'uniqueId': '0x82a5569995275e7a61e635661dd6f5265c82a3a06cb9f91f47a7ce5ccb9246cc:log:1', 'hash': '0x82a5569995275e7a61e635661dd6f5265c82a3a06cb9f91f47a7ce5ccb9246cc', 'from': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 88389.461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x12b79a2f28109b688000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:13.000Z'}}, {'blockNum': '0x511990', 'uniqueId': '0x67a9c1769932b2ff4093dd1ea326a404fa35d4c27ed1b3a89eaf4c837cb64bf3:log:15', 'hash': '0x67a9c1769932b2ff4093dd1ea326a404fa35d4c27ed1b3a89eaf4c837cb64bf3', 'from': '0x9120483c4b01199b676cbea0ce5dee99a08c38e1', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x020be2f0fdeeff000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:13.000Z'}}, {'blockNum': '0x511992', 'uniqueId': '0x7b9fab288c72c3e6f9084e2feda17b88373c12e334c62164f4b16862f7525c15:log:6', 'hash': '0x7b9fab288c72c3e6f9084e2feda17b88373c12e334c62164f4b16862f7525c15', 'from': '0x7eae60e789d217a768609b06764fd2763d381e87', 'to': '0x29c0b6699e53ab4a955767a3380b9b0102316fab', 'value': 7646.78251086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019e886cd33cafe77800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:44:48.000Z'}}, {'blockNum': '0x511993', 'uniqueId': '0xba829aa13a41d1fc8b6ec1af2ba88c945b1eb5b2be33a4edb4a23ac53155af42:log:28', 'hash': '0xba829aa13a41d1fc8b6ec1af2ba88c945b1eb5b2be33a4edb4a23ac53155af42', 'from': '0x7eae60e789d217a768609b06764fd2763d381e87', 'to': '0xe2302b6a2189363e77cae3fdb9cac5c22974e1c8', 'value': 7646.782510860002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019e886cd33cb005fc80', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:45:13.000Z'}}, {'blockNum': '0x511994', 'uniqueId': '0xd33a7833c3b9952cfcd88eb3a2b22f776f20903ac535aec1853b737872b0cff0:log:6', 'hash': '0xd33a7833c3b9952cfcd88eb3a2b22f776f20903ac535aec1853b737872b0cff0', 'from': '0x24c639aaa70e70e1a624ff9c7511a24cc8827f23', 'to': '0x57bcc3cd76621cbad3937ab78c49900b10fef531', 'value': 1452.9737942918327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4ec40fdfb92c2e084f', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:45:30.000Z'}}, {'blockNum': '0x511997', 'uniqueId': '0xab85f37a88cd2fbb4cc2ba4cba12ce96c3ee960ab886171d63d5055a49c4d61e:log:49', 'hash': '0xab85f37a88cd2fbb4cc2ba4cba12ce96c3ee960ab886171d63d5055a49c4d61e', 'from': '0xaf191ae59462b9bcce42941b74dab2d5bf3cbd53', 'to': '0x0c0657a4a9b53c24c40fd8b4858a27dec79d16e4', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:03.000Z'}}, {'blockNum': '0x511999', 'uniqueId': '0x68765e1f3fcb661181a83fcda5f492a6affe5dcde5a295f9718d6966b509609e:log:8', 'hash': '0x68765e1f3fcb661181a83fcda5f492a6affe5dcde5a295f9718d6966b509609e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6d63e9984362d3418dc8708ae1ee57dbb2728273', 'value': 10443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02361dbcf29d5c4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:25.000Z'}}, {'blockNum': '0x511999', 'uniqueId': '0x6778892bf7391ae471c936b191380f0d4eca90e22c5ba213a911a347e56f054a:log:14', 'hash': '0x6778892bf7391ae471c936b191380f0d4eca90e22c5ba213a911a347e56f054a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc47da9edb9b94b48e28b4d2836f5e8f7cde7ed20', 'value': 18388.391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03e4d6303ca105fd8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:25.000Z'}}, {'blockNum': '0x51199a', 'uniqueId': '0x24fc2ba1015a4ce2597486cf0a9aa3ba7cb5af84e58a43478199513b8ffa7f73:log:66', 'hash': '0x24fc2ba1015a4ce2597486cf0a9aa3ba7cb5af84e58a43478199513b8ffa7f73', 'from': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0118898d49acc67c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:33.000Z'}}, {'blockNum': '0x51199a', 'uniqueId': '0x56e730d7f7c7fb03b0a4d07e98a4606a4213132340228b7a7db68b518e8f0977:log:74', 'hash': '0x56e730d7f7c7fb03b0a4d07e98a4606a4213132340228b7a7db68b518e8f0977', 'from': '0x8a037a43e603ceda4a8c7809ef48d7d896244dad', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9625.304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0209c9ed2ef42a7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:33.000Z'}}, {'blockNum': '0x51199b', 'uniqueId': '0x54a2a7bf8637e5134a9abc0827eed3505bfcd19f543177aaa7380c1d1f0a7ffb:log:5', 'hash': '0x54a2a7bf8637e5134a9abc0827eed3505bfcd19f543177aaa7380c1d1f0a7ffb', 'from': '0xa25bfb0e606a4cd7b243de8d3bc2549bf5011e03', 'to': '0x3a5dc9f8b58ba8c62e6f934c72a0c6c1d1101420', 'value': 26199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x058c4029abbfbafc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:46:39.000Z'}}, {'blockNum': '0x5119a3', 'uniqueId': '0x872b1e93ddb7a5d2941feae3dfda2c43c9635dec37e4e7951b4ea8ce35f6eb80:log:93', 'hash': '0x872b1e93ddb7a5d2941feae3dfda2c43c9635dec37e4e7951b4ea8ce35f6eb80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 313404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x425daa35ca715b700000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:48:42.000Z'}}, {'blockNum': '0x5119a3', 'uniqueId': '0xf446f40bf59c30096552ee411cc584df11d70a84529a55b8acba4cb47ed3bef8:log:112', 'hash': '0xf446f40bf59c30096552ee411cc584df11d70a84529a55b8acba4cb47ed3bef8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe1a54300ea0f03eecd92782b2cba39bc763c6161', 'value': 127542.13901191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b0212bde41e52313c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:48:42.000Z'}}, {'blockNum': '0x5119a4', 'uniqueId': '0xe52448f1649f4c0d4656f3ad8cbced7168cbe6dc510ccef0db4911edeb85b353:log:12', 'hash': '0xe52448f1649f4c0d4656f3ad8cbced7168cbe6dc510ccef0db4911edeb85b353', 'from': '0xeee8e79dc6bb97ac71e102689a52eff9a469a2ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 119945.10242823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x19663cae1a161ca33c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:48:56.000Z'}}, {'blockNum': '0x5119a9', 'uniqueId': '0xeeabb02eedda01730161cd5d9b47e793a0979a235e3ac17fca23ff922eb2526d:log:0', 'hash': '0xeeabb02eedda01730161cd5d9b47e793a0979a235e3ac17fca23ff922eb2526d', 'from': '0x70afc1ca7c1228c61f6694f73b6b19138f887da4', 'to': '0xedd56801333a1824327539bc3fcd3403ddc9390d', 'value': 20649.32149999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x045f66e6f3725c41dc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:49:28.000Z'}}, {'blockNum': '0x5119b0', 'uniqueId': '0x03f035c9e355972811e1ec7b68fea5017e5c372e03b29c046d79d019bacbe956:log:50', 'hash': '0x03f035c9e355972811e1ec7b68fea5017e5c372e03b29c046d79d019bacbe956', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 44939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x098425e802f93f4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:50:39.000Z'}}, {'blockNum': '0x5119b3', 'uniqueId': '0x03b9d6a160699ef614a2d2d33740477eaa519d07773f23299ef72f6956d27638:log:4', 'hash': '0x03b9d6a160699ef614a2d2d33740477eaa519d07773f23299ef72f6956d27638', 'from': '0x5f203b24a22c55732df3220eb38b69efa1377974', 'to': '0xfc4dc915051e7b3f59d8e9637d6e8b0bb0f2ee5d', 'value': 6922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01773e0c15ac15e80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:51:05.000Z'}}, {'blockNum': '0x5119b3', 'uniqueId': '0x3bfb846ff09c6696fbc0533384ff30169413566a10bac20b63652007be10277a:log:28', 'hash': '0x3bfb846ff09c6696fbc0533384ff30169413566a10bac20b63652007be10277a', 'from': '0x834b8c36ca6e573933f76adc576a28ce77f200b1', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 12416.4216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02a11876dc2dcf4e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:51:05.000Z'}}, {'blockNum': '0x5119b3', 'uniqueId': '0xc5e85dd0bbf36a9cb5580728b6617b1b3159a39865630de85b2242ff4f7daa91:log:38', 'hash': '0xc5e85dd0bbf36a9cb5580728b6617b1b3159a39865630de85b2242ff4f7daa91', 'from': '0x6d63e9984362d3418dc8708ae1ee57dbb2728273', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02361dbcf29d5c4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:51:05.000Z'}}, {'blockNum': '0x5119b3', 'uniqueId': '0xc8763d44b114dce5de1c165469491c73297fd5715095dae5db2ec447de5e4563:log:40', 'hash': '0xc8763d44b114dce5de1c165469491c73297fd5715095dae5db2ec447de5e4563', 'from': '0xc47da9edb9b94b48e28b4d2836f5e8f7cde7ed20', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 18388.391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03e4d6303ca105fd8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:51:05.000Z'}}, {'blockNum': '0x5119bc', 'uniqueId': '0xfd8809069925ad220735d1b825709f879c5059d98d8cece8dc3bd169f0f20301:log:73', 'hash': '0xfd8809069925ad220735d1b825709f879c5059d98d8cece8dc3bd169f0f20301', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 313404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x425daa35ca715b700000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:53:40.000Z'}}, {'blockNum': '0x5119bc', 'uniqueId': '0x4500b13e32d55c35d7679e24bc8a7497712de2aa5887d49454da9785446f6d7d:log:79', 'hash': '0x4500b13e32d55c35d7679e24bc8a7497712de2aa5887d49454da9785446f6d7d', 'from': '0xe1a54300ea0f03eecd92782b2cba39bc763c6161', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 127542.13901191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b0212bde41e52313c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:53:40.000Z'}}, {'blockNum': '0x5119be', 'uniqueId': '0x3f415aebb2c21c6f0d79c3435ca7ceb7818685dac73987959aa04a56ba1bfe60:log:5', 'hash': '0x3f415aebb2c21c6f0d79c3435ca7ceb7818685dac73987959aa04a56ba1bfe60', 'from': '0x115affcec1e09f49e5fb7e02622f611bdc906c04', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 56461.0454446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf4c268786c9a09b000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:00.000Z'}}, {'blockNum': '0x5119bf', 'uniqueId': '0xcf7bf7d9487d41517092d6ceb7265627d6fbd5d700b666a9ad32fb4a72336d83:log:9', 'hash': '0xcf7bf7d9487d41517092d6ceb7265627d6fbd5d700b666a9ad32fb4a72336d83', 'from': '0x87ffd6b78bfcf93b9e4a146de9cf4e4128c02a19', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 423.70044531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16f8065e25f55f6c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:20.000Z'}}, {'blockNum': '0x5119bf', 'uniqueId': '0xefb2c2fb16ce3052789921533299702aaba4fb3c379b00fb7e42980a06bdd305:log:12', 'hash': '0xefb2c2fb16ce3052789921533299702aaba4fb3c379b00fb7e42980a06bdd305', 'from': '0x3a5dc9f8b58ba8c62e6f934c72a0c6c1d1101420', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x058c4029abbfbafc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:20.000Z'}}, {'blockNum': '0x5119bf', 'uniqueId': '0x4160073414af4b77c6d00b92bc4c3cbc2383a73132d8e4189e743454424c2d39:log:14', 'hash': '0x4160073414af4b77c6d00b92bc4c3cbc2383a73132d8e4189e743454424c2d39', 'from': '0xada245cf04b002adc022eae94fbba2e5309e8898', 'to': '0x8130cdea28278a14b42aaa49abf0415607cdbfee', 'value': 10067.7464517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0221c60c889d45e88800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:20.000Z'}}, {'blockNum': '0x5119c0', 'uniqueId': '0xf031d9ffb1dec8da867ddd1617f95ee93b8c24d873d0393d1ccb7bc48b2ddc05:log:14', 'hash': '0xf031d9ffb1dec8da867ddd1617f95ee93b8c24d873d0393d1ccb7bc48b2ddc05', 'from': '0xe8974e0ac1ed333ccb59f7aa746f18dada21a272', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 56641.23892395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bfe87184f2fe4794c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:25.000Z'}}, {'blockNum': '0x5119c0', 'uniqueId': '0xa9653680a766ee0a9e440fdd3a0cd122aa41cefe1342c6e26bf333e36d0e8350:log:15', 'hash': '0xa9653680a766ee0a9e440fdd3a0cd122aa41cefe1342c6e26bf333e36d0e8350', 'from': '0x28934b1cac39223b4bec7d746e601ee2858026bf', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 13612.14653628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02e1ea7b3280dd4b7000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:25.000Z'}}, {'blockNum': '0x5119c4', 'uniqueId': '0x92eb3648136b5ae8e37a85e491667051fccf3f820312b1ff34510acae8ae9483:log:2', 'hash': '0x92eb3648136b5ae8e37a85e491667051fccf3f820312b1ff34510acae8ae9483', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'value': 18218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03db9989cce632680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:54:54.000Z'}}, {'blockNum': '0x5119c5', 'uniqueId': '0xc69632dd7cbcaf6db2b324a603e35bdc1e26b83a2e5299766503b0f163bfe6e1:log:12', 'hash': '0xc69632dd7cbcaf6db2b324a603e35bdc1e26b83a2e5299766503b0f163bfe6e1', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0x87f9314c0a497ac8abcb318a80c5e5304d587c95', 'value': 3490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbd317abd3001480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:55:00.000Z'}}, {'blockNum': '0x5119c9', 'uniqueId': '0xff8b49d116d0f9988b76c89d17d4f1fe3af46123db2d3c7decf41b53a16196c3:log:15', 'hash': '0xff8b49d116d0f9988b76c89d17d4f1fe3af46123db2d3c7decf41b53a16196c3', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 44939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x098425e802f93f4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:55:52.000Z'}}, {'blockNum': '0x5119cb', 'uniqueId': '0x9e237a398568886199b78561a5e303b323b72cc06285f9461a52b606c47c1580:log:41', 'hash': '0x9e237a398568886199b78561a5e303b323b72cc06285f9461a52b606c47c1580', 'from': '0x26e0514dbb8d1cc854e0117c68774c38072f7da3', 'to': '0x6231788a7b38a36f125ff80edba0c0bca8cf0cc6', 'value': 1047.80642468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x38cd3c37bae77e1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:56:34.000Z'}}, {'blockNum': '0x5119cf', 'uniqueId': '0x8d724c0fe599f56c41c4fac4745c4c6dd75f909a41b3e97a03f52b5d00779e18:log:0', 'hash': '0x8d724c0fe599f56c41c4fac4745c4c6dd75f909a41b3e97a03f52b5d00779e18', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2f13865b65f4301bc2b04a5d4ead042c4f2df458', 'value': 10405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02340e61d3f283740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:57:31.000Z'}}, {'blockNum': '0x5119d0', 'uniqueId': '0x7a92737e54cc8a943a2fda6f8029fbc5a7ebab639058ad11e2b80bb255cb857d:log:2', 'hash': '0x7a92737e54cc8a943a2fda6f8029fbc5a7ebab639058ad11e2b80bb255cb857d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093886646e0019600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:57:39.000Z'}}, {'blockNum': '0x5119d0', 'uniqueId': '0xc9c85231738da12f20d2395a9f33561750cc0b5b2af3b2ca81f54e4b22db0d28:log:25', 'hash': '0xc9c85231738da12f20d2395a9f33561750cc0b5b2af3b2ca81f54e4b22db0d28', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xde817577353df8bd583f3c36dcbf8f18a66b8086', 'value': 1243.20599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4364f2f634063b1c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:57:39.000Z'}}, {'blockNum': '0x5119d1', 'uniqueId': '0x101c28a8c8127be9c008235d489b3e58e7c17b07bbc0a33715d6b825587323c0:log:17', 'hash': '0x101c28a8c8127be9c008235d489b3e58e7c17b07bbc0a33715d6b825587323c0', 'from': '0xa838172bb357d2f0fa84fa45fb8fa93c3fda1cb4', 'to': '0xd059a2e4fde487a56dff13385e93e6abe4ea875a', 'value': 933.5834327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x329c12a1b4214cd800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:57:54.000Z'}}, {'blockNum': '0x5119d2', 'uniqueId': '0xd135daa1854fb7eef5c3ffe035bf05eb90b1d5d7d565566e3bfda31e468d603c:log:6', 'hash': '0xd135daa1854fb7eef5c3ffe035bf05eb90b1d5d7d565566e3bfda31e468d603c', 'from': '0x2d14f236d640157e133b92c955051de1284ecd01', 'to': '0x60e5a84fcd707feb5f7e082a2f58fb89892fecea', 'value': 9750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02108c6e5e493a980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:59:08.000Z'}}, {'blockNum': '0x5119d3', 'uniqueId': '0x98f2a11287f0c7269b342725877651db2439954224073c6368f10a18f857f65e:log:33', 'hash': '0x98f2a11287f0c7269b342725877651db2439954224073c6368f10a18f857f65e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 52243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b101944b8b91c6c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:59:16.000Z'}}, {'blockNum': '0x5119d4', 'uniqueId': '0x4fb58b6c9966a66cdaa9e0042a6463e936a6f0005c790e37714f0f2e2456f022:log:0', 'hash': '0x4fb58b6c9966a66cdaa9e0042a6463e936a6f0005c790e37714f0f2e2456f022', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeee8e79dc6bb97ac71e102689a52eff9a469a2ac', 'value': 36692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07c513ca4d73c8d00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T19:59:28.000Z'}}, {'blockNum': '0x5119d6', 'uniqueId': '0x1bcbaef023ec0186b18e0a70d5299b1de300af9abb06d418b6cbb309054b8ca8:log:45', 'hash': '0x1bcbaef023ec0186b18e0a70d5299b1de300af9abb06d418b6cbb309054b8ca8', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:00:05.000Z'}}, {'blockNum': '0x5119d9', 'uniqueId': '0xc5a5b1f0ad97b35887e34c9ca2b314848f86c492e442f8e5c45e572f3c0f8452:log:7', 'hash': '0xc5a5b1f0ad97b35887e34c9ca2b314848f86c492e442f8e5c45e572f3c0f8452', 'from': '0x8130cdea28278a14b42aaa49abf0415607cdbfee', 'to': '0x900a5999fdbd86eae1b0aa93e91f9029e87c3816', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:00:43.000Z'}}, {'blockNum': '0x5119de', 'uniqueId': '0x806b991665c2f6e350ee70e11136cff89c5a0e944c6a36eca0019828649a7fc2:log:25', 'hash': '0x806b991665c2f6e350ee70e11136cff89c5a0e944c6a36eca0019828649a7fc2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe1a54300ea0f03eecd92782b2cba39bc763c6161', 'value': 67127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e36f6431de94e7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:01:37.000Z'}}, {'blockNum': '0x5119e0', 'uniqueId': '0xc3565dd8821912239a0394801fa56fa0fb18faafb2d0fb43c74ce11285c41457:log:37', 'hash': '0xc3565dd8821912239a0394801fa56fa0fb18faafb2d0fb43c74ce11285c41457', 'from': '0x8130cdea28278a14b42aaa49abf0415607cdbfee', 'to': '0x900a5999fdbd86eae1b0aa93e91f9029e87c3816', 'value': 10017.7464517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021f1028d98694608800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:02:28.000Z'}}, {'blockNum': '0x5119e1', 'uniqueId': '0xbf3baa58dafd78291b915bedba77167942b9ce59af23092561e0bd11c1967b54:log:4', 'hash': '0xbf3baa58dafd78291b915bedba77167942b9ce59af23092561e0bd11c1967b54', 'from': '0x384b38e394f467e931249960974abe7aee60979c', 'to': '0x6f078432feda0ae00da0c114b2f1a87dcf39ef1f', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:02:52.000Z'}}, {'blockNum': '0x5119e1', 'uniqueId': '0x315632f6c678cafd8fc73c767b5d14f93e9afd2da44605d0c66bb6aaaf003626:log:64', 'hash': '0x315632f6c678cafd8fc73c767b5d14f93e9afd2da44605d0c66bb6aaaf003626', 'from': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 18218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03db9989cce632680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:02:52.000Z'}}, {'blockNum': '0x5119e3', 'uniqueId': '0xf4bc77c657f6645d9ec63c9b8ccf8c52fb21ca67cb1138ca89a701708d808d17:log:26', 'hash': '0xf4bc77c657f6645d9ec63c9b8ccf8c52fb21ca67cb1138ca89a701708d808d17', 'from': '0x1041924b4827941c0678711e14f2a7bb2eed3dfe', 'to': '0xe4e376ec29b0d571cbc14c591aa5ccf6b9234fca', 'value': 2978.94003534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa17d19030a7e4b7800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:03:24.000Z'}}, {'blockNum': '0x5119e4', 'uniqueId': '0xece7c8d678b23c96efecbcab4645d7e1c8aa74d403d5035aaa8dd52c0bff0c08:log:27', 'hash': '0xece7c8d678b23c96efecbcab4645d7e1c8aa74d403d5035aaa8dd52c0bff0c08', 'from': '0x900a5999fdbd86eae1b0aa93e91f9029e87c3816', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10067.7464517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0221c60c889d45e88800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:21.000Z'}}, {'blockNum': '0x5119e4', 'uniqueId': '0x45f5e6d7d1788c582b7f62b9c78a9301815a3d5668e89346f6ddda0a1050315b:log:29', 'hash': '0x45f5e6d7d1788c582b7f62b9c78a9301815a3d5668e89346f6ddda0a1050315b', 'from': '0x6f078432feda0ae00da0c114b2f1a87dcf39ef1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:21.000Z'}}, {'blockNum': '0x5119e4', 'uniqueId': '0xa947236e21dbf4c64540d644c20abdef11354b15f000f27490aad7f2ebb87ab4:log:31', 'hash': '0xa947236e21dbf4c64540d644c20abdef11354b15f000f27490aad7f2ebb87ab4', 'from': '0x60e5a84fcd707feb5f7e082a2f58fb89892fecea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02108c6e5e493a980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:21.000Z'}}, {'blockNum': '0x5119e5', 'uniqueId': '0x8d9dce2481294d21d5b6d6461ffc8b1dc85301c25bbbe5ab6bd27cd610ed91c2:log:12', 'hash': '0x8d9dce2481294d21d5b6d6461ffc8b1dc85301c25bbbe5ab6bd27cd610ed91c2', 'from': '0xd9b569e201630bf2ae94900e502e439d5ec8621b', 'to': '0x3964a666e52c232023eab31c5c0e0fcafd3a72d7', 'value': 584.83020625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb426460569af2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:29.000Z'}}, {'blockNum': '0x5119e6', 'uniqueId': '0x0438b907489ed5572d1f5cea2c6ce76eaebab3e22e6a4112c69d98a9fe6e0469:log:7', 'hash': '0x0438b907489ed5572d1f5cea2c6ce76eaebab3e22e6a4112c69d98a9fe6e0469', 'from': '0x0c0657a4a9b53c24c40fd8b4858a27dec79d16e4', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:44.000Z'}}, {'blockNum': '0x5119e6', 'uniqueId': '0x62b72c73155e0689cf56a702004b144f5cabd98bb51594c283f36b9e19b561ac:log:8', 'hash': '0x62b72c73155e0689cf56a702004b144f5cabd98bb51594c283f36b9e19b561ac', 'from': '0x29c0b6699e53ab4a955767a3380b9b0102316fab', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7646.78251086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019e886cd33cafe77800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:44.000Z'}}, {'blockNum': '0x5119e7', 'uniqueId': '0x880181e732156640c9a6186983d92a8f622156ffb36f1f285281ab7e41c71129:log:0', 'hash': '0x880181e732156640c9a6186983d92a8f622156ffb36f1f285281ab7e41c71129', 'from': '0xe2302b6a2189363e77cae3fdb9cac5c22974e1c8', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7646.782510860002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x019e886cd33cb005fc80', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:04:47.000Z'}}, {'blockNum': '0x5119ea', 'uniqueId': '0x18cc525069f14c4a61d8e071b0968987f7be714df032de5317cedbfffd608407:log:5', 'hash': '0x18cc525069f14c4a61d8e071b0968987f7be714df032de5317cedbfffd608407', 'from': '0x77172b331856463346bee5140c0740ffc2dcd027', 'to': '0x3ad09bb0d93fa75a13bac0abf7a9974800a2c51f', 'value': 6615.68469511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0166a31182cd83fb3c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:05:35.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0x1695e872ac1c6cb2a7c2c4e4a26d392734a309187d9dce034fce8a80dd28a7ff:log:6', 'hash': '0x1695e872ac1c6cb2a7c2c4e4a26d392734a309187d9dce034fce8a80dd28a7ff', 'from': '0x2f13865b65f4301bc2b04a5d4ead042c4f2df458', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02340e61d3f283740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0x061608564641f14a3369785b32122681de75a4d80fc6e68bb36c1ab665fed680:log:8', 'hash': '0x061608564641f14a3369785b32122681de75a4d80fc6e68bb36c1ab665fed680', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093886646e0019600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0xef0acc4224573a47fb3c0dee6ce8e37b5a4967db8d7ce2db388d0b333239bcf6:log:11', 'hash': '0xef0acc4224573a47fb3c0dee6ce8e37b5a4967db8d7ce2db388d0b333239bcf6', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b101944b8b91c6c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0xaee94a2f86189e45739b512f4806ba3a27b060e8466d912d30ee339f809831f1:log:13', 'hash': '0xaee94a2f86189e45739b512f4806ba3a27b060e8466d912d30ee339f809831f1', 'from': '0xeee8e79dc6bb97ac71e102689a52eff9a469a2ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 36692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07c513ca4d73c8d00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0x8f3ca846cc54c2b3f0fa08af2f338bf0f199abe2a59879484f6da87dfc58af7f:log:15', 'hash': '0x8f3ca846cc54c2b3f0fa08af2f338bf0f199abe2a59879484f6da87dfc58af7f', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f0', 'uniqueId': '0x8ae438d70fbf687895fdbdc48c07a9aa7a7e6fcc456955eea1480e94f96b8ea2:log:91', 'hash': '0x8ae438d70fbf687895fdbdc48c07a9aa7a7e6fcc456955eea1480e94f96b8ea2', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xd4ac1e8cfb54e0fb3d84ae61f24be3a7fcc41a06', 'value': 2991.166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa226c45d1f92130000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:07:07.000Z'}}, {'blockNum': '0x5119f8', 'uniqueId': '0xd7436175d453cd394f784744f6c8ac1373464b6561d90bc5e6776b5a7b2452e1:log:3', 'hash': '0xd7436175d453cd394f784744f6c8ac1373464b6561d90bc5e6776b5a7b2452e1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7dd740580176525047b9fc797c7363709b4e79c0', 'value': 1916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x67ddd76898d0700000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:09:10.000Z'}}, {'blockNum': '0x5119f8', 'uniqueId': '0x1ec13a1768e803691a73ea573725577bc1764b47693ee63ba22b9f477d92df32:log:5', 'hash': '0x1ec13a1768e803691a73ea573725577bc1764b47693ee63ba22b9f477d92df32', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f17140f67c44a29c35337c21fd818087872183d', 'value': 159277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x21ba6c689e4964940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:09:10.000Z'}}, {'blockNum': '0x5119fa', 'uniqueId': '0xf237f1af6f7fb39c21fa6d7257cf5ac831c513b3627c6b4cc4aa82766537a626:log:65', 'hash': '0xf237f1af6f7fb39c21fa6d7257cf5ac831c513b3627c6b4cc4aa82766537a626', 'from': '0xe1a54300ea0f03eecd92782b2cba39bc763c6161', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 67127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e36f6431de94e7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:09:23.000Z'}}, {'blockNum': '0x5119fd', 'uniqueId': '0xda0ca934294ba3fcf5f89369cf4988ee56273989f4e557112c20bf51da196cbb:log:60', 'hash': '0xda0ca934294ba3fcf5f89369cf4988ee56273989f4e557112c20bf51da196cbb', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 89.39846924994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8a72a21225b0d00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:09:34.000Z'}}, {'blockNum': '0x5119ff', 'uniqueId': '0x4e24afd7aa89410f2f7b462c87268cc1ca42bbd124446a3c97074068a2a8aaea:log:3', 'hash': '0x4e24afd7aa89410f2f7b462c87268cc1ca42bbd124446a3c97074068a2a8aaea', 'from': '0x1f1019fa248f94abc9f7bd8c724ffcd65e25f0ea', 'to': '0x757cb1df72216279bab8cd599370b3e29d2a0dc2', 'value': 11683.98431312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x027963dae46172074000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:10:16.000Z'}}, {'blockNum': '0x511a04', 'uniqueId': '0xcedb3b82bf63445d500ee45c47b176935f92b72b35c2ca1a68d4e402d9d52dbb:log:3', 'hash': '0xcedb3b82bf63445d500ee45c47b176935f92b72b35c2ca1a68d4e402d9d52dbb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee910dbaa8a71c95648c721430e2ececc83d6a5c', 'value': 83481.85799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11ad8f82d9269e011c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:11:20.000Z'}}, {'blockNum': '0x511a0f', 'uniqueId': '0x0347bb7717ebb199969a0db04c4af726c71065ff8467768fa4acb53e51b0cf75:log:9', 'hash': '0x0347bb7717ebb199969a0db04c4af726c71065ff8467768fa4acb53e51b0cf75', 'from': '0x6b3e083357ee67db306f9a2eb184f8a0defe1ec8', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 18897.40351318594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04006e27f481fac00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:13:27.000Z'}}, {'blockNum': '0x511a10', 'uniqueId': '0xa1d36f82baf43c235e18d0c544362aa155cc3a8f76265339c5f2e9cb83c87323:log:10', 'hash': '0xa1d36f82baf43c235e18d0c544362aa155cc3a8f76265339c5f2e9cb83c87323', 'from': '0x578c143b8fbd2f4648fbb1ce82e0656e0b7c3206', 'to': '0xf53959a46a3f4326ec38aa0c94f7545ea9687e9d', 'value': 1713.5977500899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5ce4f22aad470c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:13:40.000Z'}}, {'blockNum': '0x511a12', 'uniqueId': '0x1fb358d1daa5764debf70f955cbc0204dd14ff4170f57ea6fe3efb3ff8c5a4d9:log:49', 'hash': '0x1fb358d1daa5764debf70f955cbc0204dd14ff4170f57ea6fe3efb3ff8c5a4d9', 'from': '0x7dd740580176525047b9fc797c7363709b4e79c0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x67ddd76898d0700000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:13:57.000Z'}}, {'blockNum': '0x511a12', 'uniqueId': '0x0992c8e4dd8fdbf1f85de5a9f9aa6ed85018575a46682af0fadce9b270121c68:log:51', 'hash': '0x0992c8e4dd8fdbf1f85de5a9f9aa6ed85018575a46682af0fadce9b270121c68', 'from': '0x9f17140f67c44a29c35337c21fd818087872183d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 159277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x21ba6c689e4964940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:13:57.000Z'}}, {'blockNum': '0x511a13', 'uniqueId': '0x76c2154ba6e662700615a49cd395694800a70716ba971c0c0d0d753a5a8504e2:log:13', 'hash': '0x76c2154ba6e662700615a49cd395694800a70716ba971c0c0d0d753a5a8504e2', 'from': '0x757cb1df72216279bab8cd599370b3e29d2a0dc2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11683.98431312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x027963dae46172074000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:14:14.000Z'}}, {'blockNum': '0x511a18', 'uniqueId': '0xf6397f546e174f62fac8ea86a6fa2e892247680b640620f2cac2f11f0665ccd4:log:11', 'hash': '0xf6397f546e174f62fac8ea86a6fa2e892247680b640620f2cac2f11f0665ccd4', 'from': '0x3964a666e52c232023eab31c5c0e0fcafd3a72d7', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 584.83020625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb426460569af2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:15:20.000Z'}}, {'blockNum': '0x511a18', 'uniqueId': '0xf22354ffecfd3beaa7522b44beee2b80dc4ab3bca2154e7849ea6d64d19ec3b2:log:12', 'hash': '0xf22354ffecfd3beaa7522b44beee2b80dc4ab3bca2154e7849ea6d64d19ec3b2', 'from': '0x6231788a7b38a36f125ff80edba0c0bca8cf0cc6', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1047.80642468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x38cd3c37bae77e1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:15:20.000Z'}}, {'blockNum': '0x511a19', 'uniqueId': '0x11178e0f278781d79e23a3d74d6b4be59db92c73fc771b68d738fdd2d9530871:log:20', 'hash': '0x11178e0f278781d79e23a3d74d6b4be59db92c73fc771b68d738fdd2d9530871', 'from': '0xd059a2e4fde487a56dff13385e93e6abe4ea875a', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 933.5834327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x329c12a1b4214cd800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:15:55.000Z'}}, {'blockNum': '0x511a19', 'uniqueId': '0x5e4273918188c26b5cb4a30268efac8801d87218910975e616de7f15c61a0183:log:21', 'hash': '0x5e4273918188c26b5cb4a30268efac8801d87218910975e616de7f15c61a0183', 'from': '0x87f9314c0a497ac8abcb318a80c5e5304d587c95', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 3490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbd317abd3001480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:15:55.000Z'}}, {'blockNum': '0x511a22', 'uniqueId': '0x82a055ba30179bda7adc344490edd8dadaf3f04de2bb3daf50c695fad82ba90f:log:4', 'hash': '0x82a055ba30179bda7adc344490edd8dadaf3f04de2bb3daf50c695fad82ba90f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd5d5d80aed0c411ad0cd2eacc50350a58cf92ab0', 'value': 5011.60150378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010fadf13715cc606800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:18:01.000Z'}}, {'blockNum': '0x511a23', 'uniqueId': '0xb857f0115d3d821ca3f6bf44f87245b01b050d175441332cfbff429ee0c07988:log:7', 'hash': '0xb857f0115d3d821ca3f6bf44f87245b01b050d175441332cfbff429ee0c07988', 'from': '0xee910dbaa8a71c95648c721430e2ececc83d6a5c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 83481.85799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11ad8f82d9269e011c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:18:22.000Z'}}, {'blockNum': '0x511a23', 'uniqueId': '0x657f0543e35f79857ca282cb3dcc066724ebab505182d6175914333fd83a24e5:log:10', 'hash': '0x657f0543e35f79857ca282cb3dcc066724ebab505182d6175914333fd83a24e5', 'from': '0xa240b406a360ee4c44e6c11ea3991670233bea8b', 'to': '0x10dd051fea617a3406917d1b1d0d7721a1d8ef8f', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:18:22.000Z'}}, {'blockNum': '0x511a29', 'uniqueId': '0xb23f58b7a904818e24144d20dcd36e6ff772d8232b44b3ddc1c2409e40d5b790:log:1', 'hash': '0xb23f58b7a904818e24144d20dcd36e6ff772d8232b44b3ddc1c2409e40d5b790', 'from': '0x6321c62d9377dedc3dad41630078f58532a94a81', 'to': '0xf8c89894873d5e1d0450199e926119472aaf6574', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:19:41.000Z'}}, {'blockNum': '0x511a2f', 'uniqueId': '0x592629b9cf2fed5584a1721b2a6d850ad4c50be4032fb51697686863ff4ab537:log:1', 'hash': '0x592629b9cf2fed5584a1721b2a6d850ad4c50be4032fb51697686863ff4ab537', 'from': '0x6c1bb4688292a31ceb2fcd99580707f9b7bc4754', 'to': '0xed5d30e748700a0a52341f1819feabbab67fbb99', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:21:04.000Z'}}, {'blockNum': '0x511a34', 'uniqueId': '0x16e32991331b29029c59293adaeabbbeeb716c6c92af24fc3e85b61ec3ad6870:log:7', 'hash': '0x16e32991331b29029c59293adaeabbbeeb716c6c92af24fc3e85b61ec3ad6870', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4286fc0802cf227f6db1eb4b97e57ea5f4ac45aa', 'value': 4361.573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xec70fc0ee556d08000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:22:05.000Z'}}, {'blockNum': '0x511a34', 'uniqueId': '0x338324f44a528ffe4d1ff06d73b8a27e7d3ef8984a016c3acdf9e368fda93d76:log:50', 'hash': '0x338324f44a528ffe4d1ff06d73b8a27e7d3ef8984a016c3acdf9e368fda93d76', 'from': '0x984decf891b30c24f5eb8313918a67d005d3e0b2', 'to': '0x1f539d6e201e8c7434a5a60bdc80399804eb4afd', 'value': 6904.02980618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017644a9219a63e2e800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:22:05.000Z'}}, {'blockNum': '0x511a39', 'uniqueId': '0x7e299f72c52ad4048b0e04a7bf31ad0562ff4bd2b5eb438c8c781471bd4dbe40:log:60', 'hash': '0x7e299f72c52ad4048b0e04a7bf31ad0562ff4bd2b5eb438c8c781471bd4dbe40', 'from': '0x890a059ab7c438e1b8723e7223691fd62bafda89', 'to': '0xe4c970d06777d769e57ef9e5258dc7dd229a5179', 'value': 16600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0383e347116e3c600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:23:13.000Z'}}, {'blockNum': '0x511a3d', 'uniqueId': '0x683dd4f833f0d502f0924c03140e47c460ab9a7ea87bb6ae933ee8a90d4d34de:log:10', 'hash': '0x683dd4f833f0d502f0924c03140e47c460ab9a7ea87bb6ae933ee8a90d4d34de', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x30ef83445d3a2caf22c0b8959af6e6a6cc8ef5bf', 'value': 5498.13063558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x012a0de3eab726955800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:23:51.000Z'}}, {'blockNum': '0x511a3f', 'uniqueId': '0x1320197efcb915e798501d81778ab6b9342a7ae70fbce54ccdbc31936f8709e8:log:6', 'hash': '0x1320197efcb915e798501d81778ab6b9342a7ae70fbce54ccdbc31936f8709e8', 'from': '0x6a6674ccbe8b45843894077002363c45858aae82', 'to': '0xa64cadaf6476843749bd3ae90f6a1e25715d6d84', 'value': 2730, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x93fe5c57d710680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:19.000Z'}}, {'blockNum': '0x511a3f', 'uniqueId': '0xf5ada6fbd6c5228feee7761185a09ec4294a48659c05a98e83c5b8b047804450:log:17', 'hash': '0xf5ada6fbd6c5228feee7761185a09ec4294a48659c05a98e83c5b8b047804450', 'from': '0xf8c89894873d5e1d0450199e926119472aaf6574', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10678.32671323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0242df8d617ba6b94e40', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:19.000Z'}}, {'blockNum': '0x511a3f', 'uniqueId': '0x1df4dec1856a6a40984acfd1003a4d8232ae21451ac6a76efaa0720f5ed0af62:log:36', 'hash': '0x1df4dec1856a6a40984acfd1003a4d8232ae21451ac6a76efaa0720f5ed0af62', 'from': '0xd5d5d80aed0c411ad0cd2eacc50350a58cf92ab0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12786.33561405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5260d7011a8695400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:19.000Z'}}, {'blockNum': '0x511a41', 'uniqueId': '0x6d1d70dd015342e6250d86cad8159f7ed694d53553d86b19323845f7643e9be7:log:7', 'hash': '0x6d1d70dd015342e6250d86cad8159f7ed694d53553d86b19323845f7643e9be7', 'from': '0xd51b5cf6dbfa70136d1ef6240ee01d1912c0474b', 'to': '0x843baa5a73e855c02b1665b5538e1431826ce597', 'value': 327.237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11bd535db95c808000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:42.000Z'}}, {'blockNum': '0x511a42', 'uniqueId': '0x13e34c592477c76858db4076dc0da2cdab487e689b6d3bff203723196632bbfd:log:11', 'hash': '0x13e34c592477c76858db4076dc0da2cdab487e689b6d3bff203723196632bbfd', 'from': '0xfc1572b0cc7373cf0b26e16a4f6e1f3f874dfdae', 'to': '0xfaceb5f4fd5fb39b2535e9375fa79afbc690ef39', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:24:56.000Z'}}, {'blockNum': '0x511a45', 'uniqueId': '0x93e68b7ec40ba0e3fd398487f611f3e3d24bd453b3fc1d7209174d66ea51a269:log:14', 'hash': '0x93e68b7ec40ba0e3fd398487f611f3e3d24bd453b3fc1d7209174d66ea51a269', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xebe860f99bbaf5254f60c39077c543662ba4b779', 'value': 125.43152507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06ccb64b7c88da8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:25:28.000Z'}}, {'blockNum': '0x511a45', 'uniqueId': '0xdc1f82dd1958bca0da46408f5e1ee0ccdf460f0e5827a03914e241ca3bd2b813:log:49', 'hash': '0xdc1f82dd1958bca0da46408f5e1ee0ccdf460f0e5827a03914e241ca3bd2b813', 'from': '0x3ad09bb0d93fa75a13bac0abf7a9974800a2c51f', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 6615.68469511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0166a31182cd83fb3c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:25:28.000Z'}}, {'blockNum': '0x511a46', 'uniqueId': '0xb81815b270b63f804094efc3202131642fce7107e08c6ec2c577f565bda6fadd:log:10', 'hash': '0xb81815b270b63f804094efc3202131642fce7107e08c6ec2c577f565bda6fadd', 'from': '0xf53959a46a3f4326ec38aa0c94f7545ea9687e9d', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1713.5977500899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5ce4f22aad470c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:25:52.000Z'}}, {'blockNum': '0x511a49', 'uniqueId': '0xad4cff2022c44ce44abea052f94b967276198008aa3d88f2ada831d51d01bba1:log:2', 'hash': '0xad4cff2022c44ce44abea052f94b967276198008aa3d88f2ada831d51d01bba1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf20e87d438e1384eee010044b33478b512abc84a', 'value': 1337.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4882edd1176a800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:26:26.000Z'}}, {'blockNum': '0x511a51', 'uniqueId': '0xd763a7fae6c0a5d039c90fa96125b6121047585f86a418b9d984c36919104527:log:4', 'hash': '0xd763a7fae6c0a5d039c90fa96125b6121047585f86a418b9d984c36919104527', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x555af7ae2eb255c39f7169044a393f234a586328', 'value': 1303.38130851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x46a80c9a7ace5e2c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:27:38.000Z'}}, {'blockNum': '0x511a51', 'uniqueId': '0x24a83ec9a2a5c7c777b424f386dbe7c01ef3be2f26835e3e16e53753c7e6b991:log:5', 'hash': '0x24a83ec9a2a5c7c777b424f386dbe7c01ef3be2f26835e3e16e53753c7e6b991', 'from': '0xd51b5cf6dbfa70136d1ef6240ee01d1912c0474b', 'to': '0x843baa5a73e855c02b1665b5538e1431826ce597', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:27:38.000Z'}}, {'blockNum': '0x511a54', 'uniqueId': '0x35a019ed10013c6bc86afb3192c34a2de79430fd75a82d73ff85a9bb34ed3be7:log:3', 'hash': '0x35a019ed10013c6bc86afb3192c34a2de79430fd75a82d73ff85a9bb34ed3be7', 'from': '0xed5d30e748700a0a52341f1819feabbab67fbb99', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:28:00.000Z'}}, {'blockNum': '0x511a54', 'uniqueId': '0xdafb7ca1dfb867b84a96b1b38877fb78ce8b82ee3b5d743c898d43d5af49e8be:log:7', 'hash': '0xdafb7ca1dfb867b84a96b1b38877fb78ce8b82ee3b5d743c898d43d5af49e8be', 'from': '0x4286fc0802cf227f6db1eb4b97e57ea5f4ac45aa', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4361.573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xec70fc0ee556d08000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:28:00.000Z'}}, {'blockNum': '0x511a66', 'uniqueId': '0xebf94118aa4087e8c365e0519ea3c2f880beb512792dc1dc37ac8ac444902294:log:11', 'hash': '0xebf94118aa4087e8c365e0519ea3c2f880beb512792dc1dc37ac8ac444902294', 'from': '0x38db7a2169f3970f909c495ef85871a358008fd4', 'to': '0x736c678243373996007eb5a9dd063a835b2b861e', 'value': 21389.69240397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0487899cc9f69eff9400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:30:25.000Z'}}, {'blockNum': '0x511a68', 'uniqueId': '0x7d5f9162100cb237978bf6bed3b00ed52ff9d3f472f7d1497ea9519208922814:log:18', 'hash': '0x7d5f9162100cb237978bf6bed3b00ed52ff9d3f472f7d1497ea9519208922814', 'from': '0x325ed2508fd0ba6269a70f678410bf73b84fcdf6', 'to': '0x2292fba487f400a2c321bae7606ce86e12cdd6e3', 'value': 5234.6501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011bc55d0395cb034000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:30:47.000Z'}}, {'blockNum': '0x511a6e', 'uniqueId': '0x11f69b4ff1e4bedf1aac08311761d0185238976bfff6deec6077327aad4fe69c:log:9', 'hash': '0x11f69b4ff1e4bedf1aac08311761d0185238976bfff6deec6077327aad4fe69c', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 236544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x32171370702cf0000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:31:45.000Z'}}, {'blockNum': '0x511a6e', 'uniqueId': '0xffe0b967dc232db03729812cd307e92f0e2390a3b9849b6500d7c7febd1bb49b:log:45', 'hash': '0xffe0b967dc232db03729812cd307e92f0e2390a3b9849b6500d7c7febd1bb49b', 'from': '0x325ed2508fd0ba6269a70f678410bf73b84fcdf6', 'to': '0x21f9bc526bc3135abd75df876c473595782996ae', 'value': 1991.71056382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6bf8895d426c143800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:31:45.000Z'}}, {'blockNum': '0x511a79', 'uniqueId': '0x72c6a6b2dec16ff174facd807ae7ae713e936afba34b679b0c5b818440766f19:log:7', 'hash': '0x72c6a6b2dec16ff174facd807ae7ae713e936afba34b679b0c5b818440766f19', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 236544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x32171370702cf0000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:34:15.000Z'}}, {'blockNum': '0x511a84', 'uniqueId': '0x8d20d7e8470183850754868f401a6905c7f0f1303572f3bab191bffb97b62139:log:9', 'hash': '0x8d20d7e8470183850754868f401a6905c7f0f1303572f3bab191bffb97b62139', 'from': '0xfaceb5f4fd5fb39b2535e9375fa79afbc690ef39', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:36:49.000Z'}}, {'blockNum': '0x511a84', 'uniqueId': '0x8d81967e7c0d56e73f228257274251d7a9f10903483c810e7dfa65668766dea6:log:10', 'hash': '0x8d81967e7c0d56e73f228257274251d7a9f10903483c810e7dfa65668766dea6', 'from': '0xe4c970d06777d769e57ef9e5258dc7dd229a5179', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 16600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0383e347116e3c600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:36:49.000Z'}}, {'blockNum': '0x511a87', 'uniqueId': '0x0777c7b3a700a5af4bd017919431c4c3e092e63f39fcc61f86676d41d12617cb:log:10', 'hash': '0x0777c7b3a700a5af4bd017919431c4c3e092e63f39fcc61f86676d41d12617cb', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 526.22165598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1c86cae0126db5b800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:37:14.000Z'}}, {'blockNum': '0x511a8c', 'uniqueId': '0x55157f31ed0aecd03af5fbba7988cc42cc03d6c2b67f3f292c0d4c48756eba8a:log:21', 'hash': '0x55157f31ed0aecd03af5fbba7988cc42cc03d6c2b67f3f292c0d4c48756eba8a', 'from': '0x09aeaaf3bee80f7f453167e469ac22b04322c0c8', 'to': '0x266d3ed64bdd126e3993d2c7503b54d5d73d358f', 'value': 2125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x73324c914479140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:39:03.000Z'}}, {'blockNum': '0x511a8e', 'uniqueId': '0x95376b77693b88bf06bc3a331905446f68dd0553e3344433495808ae814f376e:log:5', 'hash': '0x95376b77693b88bf06bc3a331905446f68dd0553e3344433495808ae814f376e', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x70590a738aef17e0294f21c5691955a48dc13860', 'value': 976.55095483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x34f05def6ddeaf8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:39:31.000Z'}}, {'blockNum': '0x511a93', 'uniqueId': '0x230099ec569db57f96b673ad626a27156f747f81f522992b4dbd6bd348acdeb3:log:21', 'hash': '0x230099ec569db57f96b673ad626a27156f747f81f522992b4dbd6bd348acdeb3', 'from': '0x582e793e8624394b625603700757b9472b6d37c7', 'to': '0x6c8fa126470e9c63790cbc9dbe3a1f4495b2d2d0', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:40:50.000Z'}}, {'blockNum': '0x511a98', 'uniqueId': '0xf3b0a3232026f4b74ec3682642b3ee8ff32dda53c54dd1bdab1b124b41dbc7d7:log:0', 'hash': '0xf3b0a3232026f4b74ec3682642b3ee8ff32dda53c54dd1bdab1b124b41dbc7d7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfafd71e801912073872808ae7d04f8370144637f', 'value': 275.70502441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0ef22d02f3fc738400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:42:08.000Z'}}, {'blockNum': '0x511a98', 'uniqueId': '0x397fbca6f248c6608a78c6b4f5e3f5de22f4efc67e144d2a591a97115e98ba90:log:74', 'hash': '0x397fbca6f248c6608a78c6b4f5e3f5de22f4efc67e144d2a591a97115e98ba90', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 19594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0426315fd289ebe80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:42:08.000Z'}}, {'blockNum': '0x511a9a', 'uniqueId': '0x1fa0fab89095a3fbe6fa3b62f2046277e9492efcb2c212a41c12a28ad14bfa04:log:39', 'hash': '0x1fa0fab89095a3fbe6fa3b62f2046277e9492efcb2c212a41c12a28ad14bfa04', 'from': '0x490099dac90438f9a95e9c75f5dcddfd71467272', 'to': '0xfc6d963ea4e5f4c4232b33181f4ef8ddbe342661', 'value': 1501.437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x51649fc48bbc2c8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:42:50.000Z'}}, {'blockNum': '0x511a9c', 'uniqueId': '0xe2ec73a8abda084f0ecd2c3164f2baa26e511b53972245bc2a062b93bf0b529d:log:9', 'hash': '0xe2ec73a8abda084f0ecd2c3164f2baa26e511b53972245bc2a062b93bf0b529d', 'from': '0xc29ad1e3da2f577f8ff972ceba393c7a05ec07e6', 'to': '0x0f9f35497182cc4836dc0210654585ecb431549c', 'value': 9287.23039088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f7763672a65e9fc000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:43:07.000Z'}}, {'blockNum': '0x511aa1', 'uniqueId': '0x33191c499d9a7f0050157c04d7230f4e76874d59dbce9ae0fb75448a5db4cec9:log:17', 'hash': '0x33191c499d9a7f0050157c04d7230f4e76874d59dbce9ae0fb75448a5db4cec9', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0426315fd289ebe80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:44:08.000Z'}}, {'blockNum': '0x511aa1', 'uniqueId': '0xb2b42fd0b5cf4e89071d5b310f5eac255d470291563da1cf23c96d66789d1ee8:log:18', 'hash': '0xb2b42fd0b5cf4e89071d5b310f5eac255d470291563da1cf23c96d66789d1ee8', 'from': '0x736c678243373996007eb5a9dd063a835b2b861e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21389.69240397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0487899cc9f69eff9400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:44:08.000Z'}}, {'blockNum': '0x511aa1', 'uniqueId': '0x6e5757d94cd526e88557c090971c407c0318541aaa1e2ec7d87683c6fc5a7bf3:log:19', 'hash': '0x6e5757d94cd526e88557c090971c407c0318541aaa1e2ec7d87683c6fc5a7bf3', 'from': '0x843baa5a73e855c02b1665b5538e1431826ce597', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20327.237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x044df114f12ec1008000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:44:08.000Z'}}, {'blockNum': '0x511aa8', 'uniqueId': '0x94e5d48622bc8df6f798d4e8706789f0fbd1d35dea26c35c695d92e9c940c1b0:log:35', 'hash': '0x94e5d48622bc8df6f798d4e8706789f0fbd1d35dea26c35c695d92e9c940c1b0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x77fd4c94ce0992c430c193311895e558fbe751d4', 'value': 1381.556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4ae4f0e633dd920000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:44:57.000Z'}}, {'blockNum': '0x511ab1', 'uniqueId': '0x9e7025bda83d66eed007bb8d4f326f037ac6f730dae648915a9c84260e5d8021:log:16', 'hash': '0x9e7025bda83d66eed007bb8d4f326f037ac6f730dae648915a9c84260e5d8021', 'from': '0x6f0ed14753573cd844f481754c8f6e1fc2e4bdf4', 'to': '0x676881ef6c6b3f9957b6ad633779acfae63c336c', 'value': 34772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x075cfe700a0c5ad00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:46:26.000Z'}}, {'blockNum': '0x511ab3', 'uniqueId': '0xa586bd958dc50078b5ec843e3ae46df4c76b617b67aebfcf4798c39c6146d493:log:11', 'hash': '0xa586bd958dc50078b5ec843e3ae46df4c76b617b67aebfcf4798c39c6146d493', 'from': '0x21f9bc526bc3135abd75df876c473595782996ae', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1991.71056382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6bf8895d426c143800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:47:07.000Z'}}, {'blockNum': '0x511ab4', 'uniqueId': '0xfac37b14a8d6336cbba3d92d3a02639021b3826eb0414c3daeb3acef71dfdfc4:log:11', 'hash': '0xfac37b14a8d6336cbba3d92d3a02639021b3826eb0414c3daeb3acef71dfdfc4', 'from': '0x2292fba487f400a2c321bae7606ce86e12cdd6e3', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 5234.6501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011bc55d0395cb034000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:47:40.000Z'}}, {'blockNum': '0x511ab5', 'uniqueId': '0x52e73e05829862c77a0f04f1f7028bd1f80aef603f11f9ce427b7c415b44d215:log:10', 'hash': '0x52e73e05829862c77a0f04f1f7028bd1f80aef603f11f9ce427b7c415b44d215', 'from': '0x6862333a4faff661b55e5846ed78b4ba40c04990', 'to': '0x76e0d0ed6cf4d9c61bb31c9a037ff4f580c0bb0d', 'value': 26452.44146628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0599fd5ea28a4885f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:47:43.000Z'}}, {'blockNum': '0x511ab9', 'uniqueId': '0xe60b40d8e9e6f5a0ad02dc9a290ea3c6908526182e7eff3b57bfea1349aa97c0:log:7', 'hash': '0xe60b40d8e9e6f5a0ad02dc9a290ea3c6908526182e7eff3b57bfea1349aa97c0', 'from': '0x0f9f35497182cc4836dc0210654585ecb431549c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9287.23039088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f7763672a65e9fc000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:48:27.000Z'}}, {'blockNum': '0x511abd', 'uniqueId': '0x502a55b8c211a7ca28eefe47b25c43cf5970dfb5c500bc5f9433ba294d87e3c6:log:12', 'hash': '0x502a55b8c211a7ca28eefe47b25c43cf5970dfb5c500bc5f9433ba294d87e3c6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 15678.151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0351ea0d84188f4d8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:50:07.000Z'}}, {'blockNum': '0x511ac7', 'uniqueId': '0x14a014155f3d5f5045efe0bf2c84fb7b21b18a75e52400f8ccf53f5946b4e921:log:8', 'hash': '0x14a014155f3d5f5045efe0bf2c84fb7b21b18a75e52400f8ccf53f5946b4e921', 'from': '0xc8a46f6ce6e480268bae32b52885b9bf01c7493b', 'to': '0xdb6432efe3816260cbfd83c012a8f79f78da7767', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:53:56.000Z'}}, {'blockNum': '0x511aca', 'uniqueId': '0xb2a9e83e7f5e634f18529a1e80dd1fd66ba1e83383366dbd8d445eec74585ac6:log:12', 'hash': '0xb2a9e83e7f5e634f18529a1e80dd1fd66ba1e83383366dbd8d445eec74585ac6', 'from': '0x676881ef6c6b3f9957b6ad633779acfae63c336c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x075cfe700a0c5ad00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:54:15.000Z'}}, {'blockNum': '0x511acb', 'uniqueId': '0xbb0c74e948bcf2f38780ccde1bf23ff9e7ce7b96eb085d4b1b83eb8036f36fbe:log:171', 'hash': '0xbb0c74e948bcf2f38780ccde1bf23ff9e7ce7b96eb085d4b1b83eb8036f36fbe', 'from': '0xc3e0b6a4bbb29ee400460bda947ef2b1b4d0ae1d', 'to': '0x4200d21922fd4456528c2fc7c4b9f5e587cc7027', 'value': 10141.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0225c339cfee4c350000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:54:24.000Z'}}, {'blockNum': '0x511ad0', 'uniqueId': '0x3ea43288796a3dfae3220c3a0bed5faa0c3f5a63093704167966667d89ad85ba:log:60', 'hash': '0x3ea43288796a3dfae3220c3a0bed5faa0c3f5a63093704167966667d89ad85ba', 'from': '0xa30ec0175bd809b0f50a2f75a8c385c190ca4802', 'to': '0xed5d30e748700a0a52341f1819feabbab67fbb99', 'value': 1900.47297125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x67065c5236eb68e817', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:55:48.000Z'}}, {'blockNum': '0x511ad3', 'uniqueId': '0xe80324da34e944efd217e4846e1da39f3e99cf46158eb79c7a6d4c27a72cca55:log:72', 'hash': '0xe80324da34e944efd217e4846e1da39f3e99cf46158eb79c7a6d4c27a72cca55', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'value': 18706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03f60de6135d49080000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:57:19.000Z'}}, {'blockNum': '0x511ad5', 'uniqueId': '0xd0c29b9f5de0ac1a643fea277e6342492e662b78a71efe1d75e098fe97b0df87:log:43', 'hash': '0xd0c29b9f5de0ac1a643fea277e6342492e662b78a71efe1d75e098fe97b0df87', 'from': '0x6c8fa126470e9c63790cbc9dbe3a1f4495b2d2d0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:58:20.000Z'}}, {'blockNum': '0x511ad5', 'uniqueId': '0x53a092516cba7871b32e7060abe6c4d622c0362f38f6a68b8afaa8e9d9949579:log:44', 'hash': '0x53a092516cba7871b32e7060abe6c4d622c0362f38f6a68b8afaa8e9d9949579', 'from': '0xfc6d963ea4e5f4c4232b33181f4ef8ddbe342661', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1501.437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x51649fc48bbc2c8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:58:20.000Z'}}, {'blockNum': '0x511ad7', 'uniqueId': '0xd1c14e2e2520dd9a16729940a5479f044bbb3f967fcdfc027809efd8eb1c2b6d:log:50', 'hash': '0xd1c14e2e2520dd9a16729940a5479f044bbb3f967fcdfc027809efd8eb1c2b6d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x02970b88ea5cd2c186baf970e93fa88f6a8b2aa9', 'value': 15176.747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0336bbacaaa5ef578000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T20:59:07.000Z'}}, {'blockNum': '0x511ae4', 'uniqueId': '0x202d8abc59d796e6eeb2e92f832af36af9a014d57b2d9e8311998a25b6d08c4f:log:62', 'hash': '0x202d8abc59d796e6eeb2e92f832af36af9a014d57b2d9e8311998a25b6d08c4f', 'from': '0xea2f8d232cf121a041eb13eee7ae53929b1140c9', 'to': '0xf7d76927db1fb880007ffb505a947798b44889b0', 'value': 7003.32038379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017ba6981fe0174a4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:01:19.000Z'}}, {'blockNum': '0x511aeb', 'uniqueId': '0x6014991c336654a37be3541df9223efe9d8c10efffdc45902253272f557032c6:log:6', 'hash': '0x6014991c336654a37be3541df9223efe9d8c10efffdc45902253272f557032c6', 'from': '0xed5d30e748700a0a52341f1819feabbab67fbb99', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1900.47297124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x67065c5234975d1000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:02:14.000Z'}}, {'blockNum': '0x511af0', 'uniqueId': '0x2da84575a57a698ccb63efb6a674465e13b2a4eedb3c6b0674aa66106435f0bd:log:80', 'hash': '0x2da84575a57a698ccb63efb6a674465e13b2a4eedb3c6b0674aa66106435f0bd', 'from': '0xdb6432efe3816260cbfd83c012a8f79f78da7767', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:04:02.000Z'}}, {'blockNum': '0x511af1', 'uniqueId': '0x12d0bb5b2517c50d4085cce24d23f33047b4d9677876066dfde8a05f6423df23:log:22', 'hash': '0x12d0bb5b2517c50d4085cce24d23f33047b4d9677876066dfde8a05f6423df23', 'from': '0x4200d21922fd4456528c2fc7c4b9f5e587cc7027', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10141.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0225c339cfee4c350000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:04:27.000Z'}}, {'blockNum': '0x511af2', 'uniqueId': '0xc5df110522f1387bceece942a127a8dd4de4cf911b43509718b3d394fd2ef2c3:log:55', 'hash': '0xc5df110522f1387bceece942a127a8dd4de4cf911b43509718b3d394fd2ef2c3', 'from': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 18706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03f60de6135d49080000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:05:16.000Z'}}, {'blockNum': '0x511af7', 'uniqueId': '0x6902e9a845724e8af4890049b200ffcbc4167ad4d71320d6ca99bd4c9fe852bf:log:29', 'hash': '0x6902e9a845724e8af4890049b200ffcbc4167ad4d71320d6ca99bd4c9fe852bf', 'from': '0x2a0a24fb3888c1a908e0f629f7da54d60f2bc479', 'to': '0x0d377a138e4f9c2724a60db945c73bd7321263e4', 'value': 496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae361fc1451c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:06:18.000Z'}}, {'blockNum': '0x511af8', 'uniqueId': '0x00f55a310ce64f2d997d07e479229753ae3184a9306ac8ac106d606254e57b43:log:4', 'hash': '0x00f55a310ce64f2d997d07e479229753ae3184a9306ac8ac106d606254e57b43', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf16e0df4c16ef8ad2beca2d10a07a21944d215c1', 'value': 9258.23039088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f5e3c1c04c684bc000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:06:53.000Z'}}, {'blockNum': '0x511b02', 'uniqueId': '0xa9b280b829f0f46ae48eae866454e9c77e290af384d36fa4c389085a23bcb4bf:log:6', 'hash': '0xa9b280b829f0f46ae48eae866454e9c77e290af384d36fa4c389085a23bcb4bf', 'from': '0x76e0d0ed6cf4d9c61bb31c9a037ff4f580c0bb0d', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 26452.44146628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0599fd5ea28a4885f000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:08:24.000Z'}}, {'blockNum': '0x511b08', 'uniqueId': '0x65b52bb3a050a62b22d46e1a458b3fe5b77b58108e94a229ccf97c64e5c5067e:log:5', 'hash': '0x65b52bb3a050a62b22d46e1a458b3fe5b77b58108e94a229ccf97c64e5c5067e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe498216ccc589c6a824b7aef2feab9e47dbabcc3', 'value': 11971.955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x028900404a5d29ab8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:10:27.000Z'}}, {'blockNum': '0x511b08', 'uniqueId': '0x78251f0451b0815b5f09c5dfea6326faa233af64037bcadfa17b3785a65c1a2f:log:52', 'hash': '0x78251f0451b0815b5f09c5dfea6326faa233af64037bcadfa17b3785a65c1a2f', 'from': '0xf16e0df4c16ef8ad2beca2d10a07a21944d215c1', 'to': '0x141951f4de87809873d7ca66077c4198b2771525', 'value': 9261.15054485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f60c4838dccf97b400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:10:27.000Z'}}, {'blockNum': '0x511b08', 'uniqueId': '0xa8713e94c7f78cbfa4d4143d11bf199ff3babef2d1ce50df0cc24562caa5dd50:log:80', 'hash': '0xa8713e94c7f78cbfa4d4143d11bf199ff3babef2d1ce50df0cc24562caa5dd50', 'from': '0xd8565b84f13b7bb3e217f614a938ea5a041dcfbf', 'to': '0x7ab2eca02a46417d57fb52846f6d3fe4b2a80bc0', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:10:27.000Z'}}, {'blockNum': '0x511b13', 'uniqueId': '0xee88927ead7be06d8a067eb6967e5319d2e03a3843de905e3323f55201c0a563:log:4', 'hash': '0xee88927ead7be06d8a067eb6967e5319d2e03a3843de905e3323f55201c0a563', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ebe3fe0bef15d658a9db26aad11465102f71cc7', 'value': 21229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x047ed38eafefff940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:12:09.000Z'}}, {'blockNum': '0x511b13', 'uniqueId': '0x331a5288d217c5b4be03c440ee6bc7e0e41282e94445997a2b3fac78cb2f52fe:log:5', 'hash': '0x331a5288d217c5b4be03c440ee6bc7e0e41282e94445997a2b3fac78cb2f52fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 52272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b11abb96b1312c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:12:09.000Z'}}, {'blockNum': '0x511b16', 'uniqueId': '0x25b45fd754d721c5af59d7e881bfda5ccdbb5d67b603d632b277cfbd91539df9:log:10', 'hash': '0x25b45fd754d721c5af59d7e881bfda5ccdbb5d67b603d632b277cfbd91539df9', 'from': '0xebdc726434f2204b60b852ee0d79931e5bc0af98', 'to': '0x3752fa534c018f62e575decacbfdb38df904ea8b', 'value': 11461.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x026d53cb098cf1490000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:13:14.000Z'}}, {'blockNum': '0x511b19', 'uniqueId': '0xb14e6b9e3a24ae6d14d2a628a0148884978629a75c6a36f8cf4c4439d8b77d5a:log:14', 'hash': '0xb14e6b9e3a24ae6d14d2a628a0148884978629a75c6a36f8cf4c4439d8b77d5a', 'from': '0x7ab2eca02a46417d57fb52846f6d3fe4b2a80bc0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:14:02.000Z'}}, {'blockNum': '0x511b1c', 'uniqueId': '0x697f5ec6ba504abf11d692a2348e72c1eb3fa9417958825ecd4313c9c275c3ca:log:1', 'hash': '0x697f5ec6ba504abf11d692a2348e72c1eb3fa9417958825ecd4313c9c275c3ca', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 42623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x090698f321aae29c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:14:24.000Z'}}, {'blockNum': '0x511b1c', 'uniqueId': '0x6f166ad2824776f4de5e3244c524b62652ff795a11f1747591096f9f98f49cc4:log:2', 'hash': '0x6f166ad2824776f4de5e3244c524b62652ff795a11f1747591096f9f98f49cc4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02970b88ea5cd2c186baf970e93fa88f6a8b2aa9', 'value': 2404.532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x825995ba3e53920000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:14:24.000Z'}}, {'blockNum': '0x511b20', 'uniqueId': '0x6c05008c2d1a7dae2ef9183cc1e91b2264247623d502cfa21ed09dd576984488:log:31', 'hash': '0x6c05008c2d1a7dae2ef9183cc1e91b2264247623d502cfa21ed09dd576984488', 'from': '0xe6c29560eadafb9187a6eb21da3e3c7fde1d4588', 'to': '0x25135fc021e6c4146b80ec5cc285d89556fec7fb', 'value': 1800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6194049f30f7200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:15:17.000Z'}}, {'blockNum': '0x511b2e', 'uniqueId': '0xfa168a57bc9bc9e3b74abb6ca064cd500d8371ee41fe21d0ad4f1a3096ab6bff:log:59', 'hash': '0xfa168a57bc9bc9e3b74abb6ca064cd500d8371ee41fe21d0ad4f1a3096ab6bff', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b11abb96b1312c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:18:28.000Z'}}, {'blockNum': '0x511b2f', 'uniqueId': '0xff9bcd9e95c2ecc658df7e613697edd4c8700affbc7469fa0ec69fda6e2c2a74:log:9', 'hash': '0xff9bcd9e95c2ecc658df7e613697edd4c8700affbc7469fa0ec69fda6e2c2a74', 'from': '0xf7d76927db1fb880007ffb505a947798b44889b0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7003.32038379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017ba6981fe0174a4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:19:08.000Z'}}, {'blockNum': '0x511b2f', 'uniqueId': '0xba41a6871983a7bbb367d23af07d0f8c18d2fc70805e921434013898bee4f1d0:log:23', 'hash': '0xba41a6871983a7bbb367d23af07d0f8c18d2fc70805e921434013898bee4f1d0', 'from': '0x0d377a138e4f9c2724a60db945c73bd7321263e4', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae361fc1451c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:19:08.000Z'}}, {'blockNum': '0x511b35', 'uniqueId': '0xa71b0cfeb9e4f5f441a1b00eb2a10e0a211d1adeaa8401037aa1087c4971e922:log:132', 'hash': '0xa71b0cfeb9e4f5f441a1b00eb2a10e0a211d1adeaa8401037aa1087c4971e922', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 42623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x090698f321aae29c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:20:29.000Z'}}, {'blockNum': '0x511b44', 'uniqueId': '0x7676e468f5475741a054f4e3e15639c01c5bc4dd8cb3710b5ac8f5af26254dfa:log:50', 'hash': '0x7676e468f5475741a054f4e3e15639c01c5bc4dd8cb3710b5ac8f5af26254dfa', 'from': '0x3752fa534c018f62e575decacbfdb38df904ea8b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11461.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x026d53cb098cf1490000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:24:56.000Z'}}, {'blockNum': '0x511b45', 'uniqueId': '0xe6231405498a02632b296814e423479e4e72da9aa60445d70192a1b1f8a6c828:log:15', 'hash': '0xe6231405498a02632b296814e423479e4e72da9aa60445d70192a1b1f8a6c828', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x917551e4b3faa9dafc2a0b2e8bf827eac6c7239e', 'value': 250.05797126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8e405fff3f235800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:25:08.000Z'}}, {'blockNum': '0x511b45', 'uniqueId': '0x28503507496322c1a649ce26eb0c11e824b13c8e02f3fb25dc9c6d1e5e1795d3:log:81', 'hash': '0x28503507496322c1a649ce26eb0c11e824b13c8e02f3fb25dc9c6d1e5e1795d3', 'from': '0x537149d508102cd78db70a30fa9dbddc7c2a7a89', 'to': '0x94ca04d4fb6b17d2237df0b767e68fb9319dd93a', 'value': 245.77177425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d52c4be8694bf2400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:25:08.000Z'}}, {'blockNum': '0x511b53', 'uniqueId': '0x795b2e7d21b49051ce5052ee9efdfa981fc02476ffec0d46a525f7414b88a550:log:32', 'hash': '0x795b2e7d21b49051ce5052ee9efdfa981fc02476ffec0d46a525f7414b88a550', 'from': '0x3aec4ce5b5373d9db0b4f1d59aa0a619a68f2f93', 'to': '0xb0904965fd37f2577c838f4d282c4a926ace42ce', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:29:42.000Z'}}, {'blockNum': '0x511b53', 'uniqueId': '0x18a838432fc8d79a269afee86a41bcd9468702ea62a66c9dbdf4d1340c47dd61:log:54', 'hash': '0x18a838432fc8d79a269afee86a41bcd9468702ea62a66c9dbdf4d1340c47dd61', 'from': '0x141951f4de87809873d7ca66077c4198b2771525', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 9261.15054485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01f60c4838dccf97b400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:29:42.000Z'}}, {'blockNum': '0x511b53', 'uniqueId': '0xb8727c6cd9d0f63c8de8c7a43cf08303949d50a6c1850d05d2cdab5103c44281:log:55', 'hash': '0xb8727c6cd9d0f63c8de8c7a43cf08303949d50a6c1850d05d2cdab5103c44281', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x6ebb62c6c9948d8c4d79ed13dc2ca1a16b4234f2', 'value': 3284.95614452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb213eca0ff53595000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:29:42.000Z'}}, {'blockNum': '0x511b84', 'uniqueId': '0x98e035ec1694a72111fd70a6aad6ab58ceeb62ad88be653f9aef87872b84499e:log:14', 'hash': '0x98e035ec1694a72111fd70a6aad6ab58ceeb62ad88be653f9aef87872b84499e', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 967.04032355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x346c6162ab64912c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:41:40.000Z'}}, {'blockNum': '0x511b8b', 'uniqueId': '0xb93a71cc192bc5238868f9731e7b70beb14651580d48e617f47b45f2735a633b:log:8', 'hash': '0xb93a71cc192bc5238868f9731e7b70beb14651580d48e617f47b45f2735a633b', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xd5bc4c9aa43d6a710c5a1fbd5a38c46e86b2c814', 'value': 309.6728711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x10c9930b8c5ad45800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:44:14.000Z'}}, {'blockNum': '0x511ba5', 'uniqueId': '0x8689816dcb8880c3c4a75bd2885089ace2efe635f3431c00c783f2fdfd904313:log:4', 'hash': '0x8689816dcb8880c3c4a75bd2885089ace2efe635f3431c00c783f2fdfd904313', 'from': '0xb7ddaba243659e42d2813fcb9f30aca983478b5c', 'to': '0xeeb9c37797dbc50350bd2844d452dd83b74a72db', 'value': 25053.49946357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x054e27263efce16d33ff', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:48:40.000Z'}}, {'blockNum': '0x511bcf', 'uniqueId': '0x13260797c2f3026a8178f31fd40dac658eb4663114833de1e7c6e6ee92798cae:log:0', 'hash': '0x13260797c2f3026a8178f31fd40dac658eb4663114833de1e7c6e6ee92798cae', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'value': 19971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043aa14ce11b6e2c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:58:48.000Z'}}, {'blockNum': '0x511bcf', 'uniqueId': '0x7620586725f2d862bb073adef649160633c57975b535dfd1d8433a0fefd116c2:log:12', 'hash': '0x7620586725f2d862bb073adef649160633c57975b535dfd1d8433a0fefd116c2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x356f5335dc64b0f760fa6e3785b592716c8969d8', 'value': 9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021c876c1760bbec0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:58:48.000Z'}}, {'blockNum': '0x511bcf', 'uniqueId': '0x4fb7b038feb1e6132722d7bbdeaf97f513fe72e449f945bb4b2180d483d92a4a:log:29', 'hash': '0x4fb7b038feb1e6132722d7bbdeaf97f513fe72e449f945bb4b2180d483d92a4a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'value': 21383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04872cbc9802b1bc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T21:58:48.000Z'}}, {'blockNum': '0x511bdc', 'uniqueId': '0xdc24997efecfae5adeeafb0fba0f4e47fa205c863438560a23f8e70351a511d1:log:7', 'hash': '0xdc24997efecfae5adeeafb0fba0f4e47fa205c863438560a23f8e70351a511d1', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x4a350ba502d6aac43bc6379b6886e8083a8f12cf', 'value': 160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08ac7230489e800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:01:16.000Z'}}, {'blockNum': '0x511beb', 'uniqueId': '0x9979c5e81fe41c40aa8688575f8a99c169a8d1874a629f8baa1500e6da9a9181:log:8', 'hash': '0x9979c5e81fe41c40aa8688575f8a99c169a8d1874a629f8baa1500e6da9a9181', 'from': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08c1ce09791e1fe80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:04:13.000Z'}}, {'blockNum': '0x511bf0', 'uniqueId': '0xd8dd00cd862d938dd1c53a526779dfdb5425e1e9ea8b4c26513c371b7477fa82:log:11', 'hash': '0xd8dd00cd862d938dd1c53a526779dfdb5425e1e9ea8b4c26513c371b7477fa82', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 42447.2739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fd12429cc119d6c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:06:53.000Z'}}, {'blockNum': '0x511bf6', 'uniqueId': '0x4f7727f21376ff4100912a7463d7aa61bae485ea1449f24636399d03221230d4:log:7', 'hash': '0x4f7727f21376ff4100912a7463d7aa61bae485ea1449f24636399d03221230d4', 'from': '0x081dfeb7bc3be7bf3be0a8155e0118fae33b45f2', 'to': '0xfaa932a9ac5bc05fa224263e08bddf56a2de994c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:08:42.000Z'}}, {'blockNum': '0x511c01', 'uniqueId': '0xbf1096e1d10b2b1b4b0cae4d05fd5b08b7d0ccb67a8b5cc7e0fb3c76c16aea0e:log:46', 'hash': '0xbf1096e1d10b2b1b4b0cae4d05fd5b08b7d0ccb67a8b5cc7e0fb3c76c16aea0e', 'from': '0x68ee2a61167172ea0ad6de979aee2e00d139a6ae', 'to': '0x1bcfc460f2e43a15b6229ca2505cac617ba83d40', 'value': 9065.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01eb75f14e116f190000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:12:06.000Z'}}, {'blockNum': '0x511c06', 'uniqueId': '0x14146b9acc94da3fde18fe5f6c34e917cdfabc295e1d1768a3342c68e63e69ad:log:33', 'hash': '0x14146b9acc94da3fde18fe5f6c34e917cdfabc295e1d1768a3342c68e63e69ad', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42447.2739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fd12429cc119d6c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:14:13.000Z'}}, {'blockNum': '0x511c06', 'uniqueId': '0x629138572064bfeee14170c9c76714c35f323080f187fb70df070939a473d677:log:35', 'hash': '0x629138572064bfeee14170c9c76714c35f323080f187fb70df070939a473d677', 'from': '0x1bcfc460f2e43a15b6229ca2505cac617ba83d40', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9065.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01eb75f14e116f190000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:14:13.000Z'}}, {'blockNum': '0x511c0c', 'uniqueId': '0x7ba8c7af158eac1fb7a6930780990a80fe8276da090d580091d4b707220f0327:log:62', 'hash': '0x7ba8c7af158eac1fb7a6930780990a80fe8276da090d580091d4b707220f0327', 'from': '0x356f5335dc64b0f760fa6e3785b592716c8969d8', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021c876c1760bbec0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:15:22.000Z'}}, {'blockNum': '0x511c12', 'uniqueId': '0x5c34dc02fcf12b0cdf7d3c5b2803e4cfb3cf5185aa34965612d5e0364b92d249:log:29', 'hash': '0x5c34dc02fcf12b0cdf7d3c5b2803e4cfb3cf5185aa34965612d5e0364b92d249', 'from': '0xce49bb2a0e34dac375db06cada4e3609276d429f', 'to': '0xbc577f7fd43fd8ca34daabb3f0297a52e6047b54', 'value': 3580.91908589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xc21f3c381831f61400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:16:25.000Z'}}, {'blockNum': '0x511c13', 'uniqueId': '0x86f1dc37dbffc5ffa5be58caacfea9a887a155927b53065e14c1c92fe2138711:log:40', 'hash': '0x86f1dc37dbffc5ffa5be58caacfea9a887a155927b53065e14c1c92fe2138711', 'from': '0xf252ac1d1383d3b54e6bd2fe07e2089e13f2caeb', 'to': '0xa515c4c92700fb29fe529b6730c7a2347660f9b0', 'value': 24292.37128481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0524e45fc109179c6400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:17:06.000Z'}}, {'blockNum': '0x511c18', 'uniqueId': '0x794722cbe295b02fbddbd40bc9b1f00b860adf762a83d5e79413d40e4d51c16f:log:2', 'hash': '0x794722cbe295b02fbddbd40bc9b1f00b860adf762a83d5e79413d40e4d51c16f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x66808d2e4a79dcb1d0f3cf7c8beae8aca9798f04', 'value': 2830.561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9971ecc88b8a768000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:18:36.000Z'}}, {'blockNum': '0x511c19', 'uniqueId': '0x2a815338e4967b5297fd503e3750db063d6cb7329d1796b00415e967616136cf:log:0', 'hash': '0x2a815338e4967b5297fd503e3750db063d6cb7329d1796b00415e967616136cf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'value': 19971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043aa14ce11b6e2c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:18:58.000Z'}}, {'blockNum': '0x511c19', 'uniqueId': '0x71a9ef1ccf2eccdeb92e8076b4368cd4caa2638a656cf3ab1779fca59123eac9:log:1', 'hash': '0x71a9ef1ccf2eccdeb92e8076b4368cd4caa2638a656cf3ab1779fca59123eac9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x545862068543ca4dc3de7a2d0f9dc148e7f41222', 'value': 22966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04dcfd4658eac5180000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:18:58.000Z'}}, {'blockNum': '0x511c35', 'uniqueId': '0x7630d6dd8ca37fd0e63688cc5e4897b93af1f3a97df79b4b3837839573d8dbe7:log:118', 'hash': '0x7630d6dd8ca37fd0e63688cc5e4897b93af1f3a97df79b4b3837839573d8dbe7', 'from': '0x66808d2e4a79dcb1d0f3cf7c8beae8aca9798f04', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2830.561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9971ecc88b8a768000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:26:26.000Z'}}, {'blockNum': '0x511c39', 'uniqueId': '0x7c69b477aa4319aee130b4f38906c34f6c81724061c2dea2389c52b1fafc8d97:log:4', 'hash': '0x7c69b477aa4319aee130b4f38906c34f6c81724061c2dea2389c52b1fafc8d97', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ab2737e9ab6731e95628d7e4592a4f012462558', 'value': 52334.34509441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b150cefb01f36fde400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:27:22.000Z'}}, {'blockNum': '0x511c4f', 'uniqueId': '0x26f7e164727f943d7f5366411b0a8d0597d48789b6e16dd42e02cc142101c0b0:log:11', 'hash': '0x26f7e164727f943d7f5366411b0a8d0597d48789b6e16dd42e02cc142101c0b0', 'from': '0xa515c4c92700fb29fe529b6730c7a2347660f9b0', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 24292.37128481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0524e45fc109179c6400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:33:14.000Z'}}, {'blockNum': '0x511c51', 'uniqueId': '0x2b9ca59d8700e599fada57e95cfb0ff1cc7d38d881398c8c02a4f25781e2b42e:log:40', 'hash': '0x2b9ca59d8700e599fada57e95cfb0ff1cc7d38d881398c8c02a4f25781e2b42e', 'from': '0x4ce1965132dd5ba325a26fd20ed474da2a8175d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043aa14ce11b6e2c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:34:23.000Z'}}, {'blockNum': '0x511c53', 'uniqueId': '0x7d3ba5a37baee22081f889afb99b7cc7d5f694477b9d89f56c6e40d8f5bcea64:log:8', 'hash': '0x7d3ba5a37baee22081f889afb99b7cc7d5f694477b9d89f56c6e40d8f5bcea64', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 43137.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09227640291571fb4000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:35:08.000Z'}}, {'blockNum': '0x511c57', 'uniqueId': '0x2f32e7b1881d60097366c294153103cb2efd1e25c20c6c74f58578e42e1860f6:log:6', 'hash': '0x2f32e7b1881d60097366c294153103cb2efd1e25c20c6c74f58578e42e1860f6', 'from': '0xe79d9d478c2c41b599f786c1eb4dc52389cbaa3f', 'to': '0x21ae177b0c7e178d9095e44203bcf8d74c2f4fe9', 'value': 73741.7893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0f9d8ce78b9b094b4000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:36:09.000Z'}}, {'blockNum': '0x511c58', 'uniqueId': '0x20bc9289cc3eab8b8ac237f69fe9d8a9cc2f76a2f0e28ff18d39f26439405efe:log:27', 'hash': '0x20bc9289cc3eab8b8ac237f69fe9d8a9cc2f76a2f0e28ff18d39f26439405efe', 'from': '0x5bdddbdd3eb417299d03098fc3182dc41235357d', 'to': '0x3ee8d1b0540ce0e01872bd09141c36218b74eafa', 'value': 165.64163688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fabd4f22a6a4a000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:36:24.000Z'}}, {'blockNum': '0x511c5a', 'uniqueId': '0x2bfd66f838b15d3427736dfa35e845b182c500e3e6d7c5e5f9ce99a4bfbee1c4:log:6', 'hash': '0x2bfd66f838b15d3427736dfa35e845b182c500e3e6d7c5e5f9ce99a4bfbee1c4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 19777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04301d026cf694640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:37:08.000Z'}}, {'blockNum': '0x511c5b', 'uniqueId': '0x25bd92252a1afd4b2d72c9f453161b343ea79c68b5964f3e6e47344088928d32:log:604', 'hash': '0x25bd92252a1afd4b2d72c9f453161b343ea79c68b5964f3e6e47344088928d32', 'from': '0xdeaa9ebc8d35f44c767be044b0d0dc249a4a5acb', 'to': '0xe13fb37a177b56bca4657fd3353248a01781422f', 'value': 14186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0301064c3f59cb680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:37:10.000Z'}}, {'blockNum': '0x511c5c', 'uniqueId': '0xe02e317fc1c748c833451ef53e738423b8ea8d6a4fbc400f767b4131e0251057:log:22', 'hash': '0xe02e317fc1c748c833451ef53e738423b8ea8d6a4fbc400f767b4131e0251057', 'from': '0xd3f7d8cb7c5207428ac8d58612a0410a1f286176', 'to': '0x4d2cae3d2ef815518c4ec03d529a70a8e08ec633', 'value': 7005.23760683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017bc133781285af4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:37:46.000Z'}}, {'blockNum': '0x511c76', 'uniqueId': '0x9616d19d9670c1169decd23c7ab1985a1538aa0666103dc976e3b4deea938d0a:log:37', 'hash': '0x9616d19d9670c1169decd23c7ab1985a1538aa0666103dc976e3b4deea938d0a', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04301d026cf694640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:44:17.000Z'}}, {'blockNum': '0x511c76', 'uniqueId': '0x474ad9f6d0da3825ba3067d68e2ca67d2c429e311ce6e22b24d6ce37d633a684:log:38', 'hash': '0x474ad9f6d0da3825ba3067d68e2ca67d2c429e311ce6e22b24d6ce37d633a684', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43137.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09227640291571fb4000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:44:17.000Z'}}, {'blockNum': '0x511c76', 'uniqueId': '0x6cff20e5de1e7db3345c405b40a7ef349b6bfbb30cf45c5e3fa094b0561f7c4c:log:39', 'hash': '0x6cff20e5de1e7db3345c405b40a7ef349b6bfbb30cf45c5e3fa094b0561f7c4c', 'from': '0xe13fb37a177b56bca4657fd3353248a01781422f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0301064c3f59cb680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:44:17.000Z'}}, {'blockNum': '0x511c7b', 'uniqueId': '0x59f06811273acaa143b7b273115bc9b1babb3c8ce604d5c7f46e53b3f787b868:log:11', 'hash': '0x59f06811273acaa143b7b273115bc9b1babb3c8ce604d5c7f46e53b3f787b868', 'from': '0x343b20f9706ea383832cdce63e5339f6e01c6167', 'to': '0x26b6e11ea45a7518b45540d3146391f5bee201fc', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:45:28.000Z'}}, {'blockNum': '0x511c86', 'uniqueId': '0x03190494eec230fdd0ece09334b4c7a830ceb37fc47e8a63416ef93c76091b45:log:8', 'hash': '0x03190494eec230fdd0ece09334b4c7a830ceb37fc47e8a63416ef93c76091b45', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xac9391eb80f2c7d7e0326d26a46c008280a685ab', 'value': 1934.17584952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x68da14ff6f82fde000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:47:26.000Z'}}, {'blockNum': '0x511c92', 'uniqueId': '0x7d56698c443844d01fa0c31f95763de56f6360477109f2ab7c04581e8ab319bc:log:2', 'hash': '0x7d56698c443844d01fa0c31f95763de56f6360477109f2ab7c04581e8ab319bc', 'from': '0x86b891e1a998537d7abbf4ef98bf05854a2da00b', 'to': '0x5514a560954cf12017531da9fedbfc0858f97349', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:49:37.000Z'}}, {'blockNum': '0x511c92', 'uniqueId': '0x3567f126e48247755ee966098b83abb4b185eb66aa5f04325cf22a5796fd3f3c:log:17', 'hash': '0x3567f126e48247755ee966098b83abb4b185eb66aa5f04325cf22a5796fd3f3c', 'from': '0x8ebe3fe0bef15d658a9db26aad11465102f71cc7', 'to': '0x1f8b1a70c4ba7764364dce9da1d848228e2f6797', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:49:37.000Z'}}, {'blockNum': '0x511ca5', 'uniqueId': '0x593e0205792652282f746e0a97a3474911b004c97431548fd6928bc03f32e96e:log:29', 'hash': '0x593e0205792652282f746e0a97a3474911b004c97431548fd6928bc03f32e96e', 'from': '0x343b20f9706ea383832cdce63e5339f6e01c6167', 'to': '0xfb4eaa727c53156843d62dbcbada2d04a4cc8b20', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:53:53.000Z'}}, {'blockNum': '0x511ca8', 'uniqueId': '0xa9fd73c4f307f414b23408054f97589722d9b733293b8db9841aa32880a770c6:log:3', 'hash': '0xa9fd73c4f307f414b23408054f97589722d9b733293b8db9841aa32880a770c6', 'from': '0x5514a560954cf12017531da9fedbfc0858f97349', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:54:22.000Z'}}, {'blockNum': '0x511ca8', 'uniqueId': '0x6953913f92893f000be02e09b734200bbb845e90ba7f46b82eff23a5642c84b7:log:4', 'hash': '0x6953913f92893f000be02e09b734200bbb845e90ba7f46b82eff23a5642c84b7', 'from': '0x1f8b1a70c4ba7764364dce9da1d848228e2f6797', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:54:22.000Z'}}, {'blockNum': '0x511ca8', 'uniqueId': '0x89b69546d5d0fb0d25a52a02202c968b850f434a544d6308b50c7c5f6492ae82:log:15', 'hash': '0x89b69546d5d0fb0d25a52a02202c968b850f434a544d6308b50c7c5f6492ae82', 'from': '0x4d2cae3d2ef815518c4ec03d529a70a8e08ec633', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 7005.23760683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017bc133781285af4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:54:22.000Z'}}, {'blockNum': '0x511cbb', 'uniqueId': '0xf179996837629d3116f2676b22c105b029e37581c4252f6dc54f6f830cb26a3a:log:50', 'hash': '0xf179996837629d3116f2676b22c105b029e37581c4252f6dc54f6f830cb26a3a', 'from': '0x7845e1b7f505310cb8f6191df9641dc4add7c887', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:59:45.000Z'}}, {'blockNum': '0x511cbd', 'uniqueId': '0xf0e1be5549d256f2e26a33aaf720a0b40585aab56f7373cf56686fd774578507:log:20', 'hash': '0xf0e1be5549d256f2e26a33aaf720a0b40585aab56f7373cf56686fd774578507', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0x6759c1e3bc99d49705bdebabceed4742f4bf80d1', 'value': 98.4223205807399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0555e2531ab89ea260', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T22:59:53.000Z'}}, {'blockNum': '0x511cd8', 'uniqueId': '0x1b91d8ef2020f689e5e3eabb5aceeacd4514fbcdc060af40cf263d1edd787f31:log:23', 'hash': '0x1b91d8ef2020f689e5e3eabb5aceeacd4514fbcdc060af40cf263d1edd787f31', 'from': '0xfb4eaa727c53156843d62dbcbada2d04a4cc8b20', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01043561a88293000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:05:04.000Z'}}, {'blockNum': '0x511cd9', 'uniqueId': '0xfb2104fc9e65bd313eb467ce7882f70cb6d546708a1bcdb75dae2185f8ffcac5:log:31', 'hash': '0xfb2104fc9e65bd313eb467ce7882f70cb6d546708a1bcdb75dae2185f8ffcac5', 'from': '0x26b6e11ea45a7518b45540d3146391f5bee201fc', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:05:55.000Z'}}, {'blockNum': '0x511ce2', 'uniqueId': '0xa99fac0c2ca9d46a3e878efbaed81edc0b867b1cb5524aca46015cbd267fc1f6:log:12', 'hash': '0xa99fac0c2ca9d46a3e878efbaed81edc0b867b1cb5524aca46015cbd267fc1f6', 'from': '0x699f3f8608f7c52bb5c2a091988b58e7ca7a5d68', 'to': '0x1fc12bc700793930a9b37c5b03ec5e96d44bd3bb', 'value': 66773.56752875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e23cd66bddffdc64c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:07:52.000Z'}}, {'blockNum': '0x511ce6', 'uniqueId': '0xa905ed0935bfd01465ee89ede943c80c906dceb0529635ec1ed38c5e0657837a:log:48', 'hash': '0xa905ed0935bfd01465ee89ede943c80c906dceb0529635ec1ed38c5e0657837a', 'from': '0xec1c6d79c2398537dfac9943eeebbf0082648923', 'to': '0x8f9f70952819953c26605adfe419b7608e20a0ea', 'value': 10942.22799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02512deb179510f61c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:08:32.000Z'}}, {'blockNum': '0x511ce7', 'uniqueId': '0xb94eee692d315bc75c645b47c8b4d8b633e0c79f34d036fa0cb1c4ca803a954f:log:30', 'hash': '0xb94eee692d315bc75c645b47c8b4d8b633e0c79f34d036fa0cb1c4ca803a954f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xca85bea0232e1d10267f13ba966d38939fe49607', 'value': 30145.54129789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0662316cec8209825400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:09:06.000Z'}}, {'blockNum': '0x511cf6', 'uniqueId': '0x91ab7609a44aefeccbc610b51270dd08f01931a103d5bd595d1c44f480d1916f:log:104', 'hash': '0x91ab7609a44aefeccbc610b51270dd08f01931a103d5bd595d1c44f480d1916f', 'from': '0x4671752733db38620cfaadee5c0973c25002ddb3', 'to': '0x887a46f731a77c52beede69d416c2f4ed72ac6b7', 'value': 555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1e162c177be5cc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:13:28.000Z'}}, {'blockNum': '0x511cfa', 'uniqueId': '0x12582806a0c947655a2fc5ed54aa6582bd98f37c0078287182dc71d35ad30732:log:42', 'hash': '0x12582806a0c947655a2fc5ed54aa6582bd98f37c0078287182dc71d35ad30732', 'from': '0x8f9f70952819953c26605adfe419b7608e20a0ea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10942.22799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02512deb179510f61c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:13:55.000Z'}}, {'blockNum': '0x511d04', 'uniqueId': '0x01a351b80db7079465273c9cdf2a9295d616c09b1a2194059ab022644f4aef37:log:5', 'hash': '0x01a351b80db7079465273c9cdf2a9295d616c09b1a2194059ab022644f4aef37', 'from': '0x1fc12bc700793930a9b37c5b03ec5e96d44bd3bb', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 66773.56752875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e23cd66bddffdc64c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:16:26.000Z'}}, {'blockNum': '0x511d23', 'uniqueId': '0xcbc80fd53f6cc35dee92c72eeed592fe2f25dc2a47693d3c6f0410a1bc86dc8b:log:13', 'hash': '0xcbc80fd53f6cc35dee92c72eeed592fe2f25dc2a47693d3c6f0410a1bc86dc8b', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x00b6a5d252d5d02115470a112664543325d95b2b', 'value': 116.8205725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0655360bbf30444800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:25:13.000Z'}}, {'blockNum': '0x511d2e', 'uniqueId': '0xfbea5d751edf474fec153b35fcf805a1bc44c20ef524b99e2120bd9c802bea06:log:28', 'hash': '0xfbea5d751edf474fec153b35fcf805a1bc44c20ef524b99e2120bd9c802bea06', 'from': '0x51b6710ab29e79396cc97b1a2dbb0f4791147fab', 'to': '0x3dc06a4267f2b276eb9eb40c8a2d1ef12625a2c3', 'value': 4819.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010547b098c9095f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:27:50.000Z'}}, {'blockNum': '0x511d4b', 'uniqueId': '0x5aa2a8906f7f6a1190892f9e433b60860a5e000192e9c9815fc4a62f6758375d:log:31', 'hash': '0x5aa2a8906f7f6a1190892f9e433b60860a5e000192e9c9815fc4a62f6758375d', 'from': '0x559932afb982e0abc4c5afcb3180c4ddd3d4a3c0', 'to': '0x8ee9575caf4dbb317550a44c2b9e4b7c04396f5a', 'value': 1682.75777716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5b38f492b1b7bc5000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:33:34.000Z'}}, {'blockNum': '0x511d4e', 'uniqueId': '0x01c6d4478f223d7a5eef4cf8746e2927a61ff3176daee539de6d4d65e188d9ce:log:57', 'hash': '0x01c6d4478f223d7a5eef4cf8746e2927a61ff3176daee539de6d4d65e188d9ce', 'from': '0x3dc06a4267f2b276eb9eb40c8a2d1ef12625a2c3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4819.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010547b098c9095f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:34:31.000Z'}}, {'blockNum': '0x511d57', 'uniqueId': '0xcc450aae7e23c674a5e924a95b6226162b7de221be245daeb968aad109b4e4a1:log:19', 'hash': '0xcc450aae7e23c674a5e924a95b6226162b7de221be245daeb968aad109b4e4a1', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 84585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11e95cae857690040000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:36:21.000Z'}}, {'blockNum': '0x511d7a', 'uniqueId': '0xb198b461e46acebff9d742f19060ce4ac660794b5009b2408dbe998a8c8db68a:log:25', 'hash': '0xb198b461e46acebff9d742f19060ce4ac660794b5009b2408dbe998a8c8db68a', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x11e95cae857690040000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:44:02.000Z'}}, {'blockNum': '0x511d8f', 'uniqueId': '0xd82fbb2fd30a9afc7415b09351c62b97664c4689448ae01b698efa6059167674:log:6', 'hash': '0xd82fbb2fd30a9afc7415b09351c62b97664c4689448ae01b698efa6059167674', 'from': '0x8ee9575caf4dbb317550a44c2b9e4b7c04396f5a', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1682.75777716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5b38f492b1b7bc5000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:47:32.000Z'}}, {'blockNum': '0x511d94', 'uniqueId': '0x0057e55f218235cfd1968be513bc9c4d4ad7de93275e8150ca06bed8f3a287ad:log:3', 'hash': '0x0057e55f218235cfd1968be513bc9c4d4ad7de93275e8150ca06bed8f3a287ad', 'from': '0x8658fff128fd1cc9b0ff5a552d2a175db27bafb5', 'to': '0xc133d10c675d7ff8d3a195d7d0cc10829dacfa7e', 'value': 6037.08751914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0147456b68cc1bf36800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:48:32.000Z'}}, {'blockNum': '0x511da9', 'uniqueId': '0xa705c9ab36c49fc3888e81cf81308b6c77b8f59443e87a8a0827df789d1d084d:log:13', 'hash': '0xa705c9ab36c49fc3888e81cf81308b6c77b8f59443e87a8a0827df789d1d084d', 'from': '0x4561b26249db5f6d12a415b9e97510b4177bb458', 'to': '0xe286d83145974009d59ea6f25bb9919a99bc59db', 'value': 40534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08955a4041a9f3980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:53:42.000Z'}}, {'blockNum': '0x511dad', 'uniqueId': '0xddda69a153d87b25b7748aed151ca6cfe8e3fe528be32060c0daf21b352464dd:log:1', 'hash': '0xddda69a153d87b25b7748aed151ca6cfe8e3fe528be32060c0daf21b352464dd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1a3587f90629664b7294168c4f09533eb4450ccc', 'value': 8723.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01d8e836d668528e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-24T23:54:29.000Z'}}, {'blockNum': '0x511dde', 'uniqueId': '0x682d92398282ff39cc8ccf136fb71aed95799a1da1a821035515395e08fe4def:log:15', 'hash': '0x682d92398282ff39cc8ccf136fb71aed95799a1da1a821035515395e08fe4def', 'from': '0xe286d83145974009d59ea6f25bb9919a99bc59db', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08955a4041a9f3980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:04:19.000Z'}}, {'blockNum': '0x511de7', 'uniqueId': '0x64365d2430e895dc2dc5a50f81faab3ac5874eb4ec0ccafd33ad33a36bb7743d:log:22', 'hash': '0x64365d2430e895dc2dc5a50f81faab3ac5874eb4ec0ccafd33ad33a36bb7743d', 'from': '0x5b7afb0b2daccef8545a2ecc9c405fbfd076f186', 'to': '0xfc70bcae87d607d22488837e14cb6b94a7082659', 'value': 9858.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021668a5d2897fdf0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:08:22.000Z'}}, {'blockNum': '0x511de9', 'uniqueId': '0xdfa8cf5417cba85d854c76c04569d66b0b617d991050cc5e17b4acecfe042f4e:log:103', 'hash': '0xdfa8cf5417cba85d854c76c04569d66b0b617d991050cc5e17b4acecfe042f4e', 'from': '0x3811055964ee0156b7c2e7b865e32d157c230671', 'to': '0x173c2d042fb346a7424df858e847cb5185677593', 'value': 525.46557368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1c7c4cbb39dd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:09:10.000Z'}}, {'blockNum': '0x511dea', 'uniqueId': '0x1fb6a4ad1f4fcb6201c941b0f116bdd843c3fb9b4367a5a854d260142433e121:log:2', 'hash': '0x1fb6a4ad1f4fcb6201c941b0f116bdd843c3fb9b4367a5a854d260142433e121', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4cf73da4c5ec89d60822b50f769277a9ce498525', 'value': 7825.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01a833702db4a1570000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:09:36.000Z'}}, {'blockNum': '0x511df8', 'uniqueId': '0x742463e72bf3456cb30ba05806c6d07073e07c408d989648b6ecaa07e6a1782d:log:1', 'hash': '0x742463e72bf3456cb30ba05806c6d07073e07c408d989648b6ecaa07e6a1782d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ab2737e9ab6731e95628d7e4592a4f012462558', 'value': 52334.61091205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1510a00fdb6e397400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:12:02.000Z'}}, {'blockNum': '0x511e00', 'uniqueId': '0x6c1e8ab2ba414a73bd8c4a78c8286c0fd6ed827de851300fdd37fb80271ddd49:log:29', 'hash': '0x6c1e8ab2ba414a73bd8c4a78c8286c0fd6ed827de851300fdd37fb80271ddd49', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 42404.5664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fac19317c740d80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:13:52.000Z'}}, {'blockNum': '0x511e06', 'uniqueId': '0xbb0d3ce67670d00b1c015cb1e52b3a27ad393c6fca43a20d92e4e17fd5f18dfa:log:46', 'hash': '0xbb0d3ce67670d00b1c015cb1e52b3a27ad393c6fca43a20d92e4e17fd5f18dfa', 'from': '0xfc2254eb4241fa612c66708cac1bed2b8da1eb87', 'to': '0x73cfda86be33ce193386bb999553b00dbb9be744', 'value': 248.87327196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7dcf7a42b0fbf000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:15:00.000Z'}}, {'blockNum': '0x511e07', 'uniqueId': '0x5c2af60a9cbd503635900f73916448a349352c47f6672cd43cd8c35e6c6eaa7f:log:16', 'hash': '0x5c2af60a9cbd503635900f73916448a349352c47f6672cd43cd8c35e6c6eaa7f', 'from': '0x4cf73da4c5ec89d60822b50f769277a9ce498525', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 7825.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01a833702db4a1570000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:15:04.000Z'}}, {'blockNum': '0x511e0a', 'uniqueId': '0xa665aca836489e11440ced2ba6caf320995972e71eb196928465a32195c621a2:log:36', 'hash': '0xa665aca836489e11440ced2ba6caf320995972e71eb196928465a32195c621a2', 'from': '0x79b869eb5798eb512e04d9369f6c7cd5a7f389e3', 'to': '0x1e69fccb59393ee285cfec002be7310c1f4551bb', 'value': 1788.207888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x60f05e9fcdf7810000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:15:40.000Z'}}, {'blockNum': '0x511e23', 'uniqueId': '0x4e507e310808fdbf3edcc1210ab93c2a89d3b0afbc4b711f5dfab2ee2384ac86:log:11', 'hash': '0x4e507e310808fdbf3edcc1210ab93c2a89d3b0afbc4b711f5dfab2ee2384ac86', 'from': '0x01748d0de44501e4c916bc25c7ad3d29b69c8a51', 'to': '0xae79e732127b288a106b942824afdc7a029411a2', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:22:23.000Z'}}, {'blockNum': '0x511e24', 'uniqueId': '0x13f61abfd341ba6d375a4d5c3096c65be24f90e170540f14dbf61a5c850ced3b:log:19', 'hash': '0x13f61abfd341ba6d375a4d5c3096c65be24f90e170540f14dbf61a5c850ced3b', 'from': '0x46d66c021d4f345fbda651f7a86af6d7f152a25c', 'to': '0xc9ab868d360cea6dbe0de942ed56cbbaca98d739', 'value': 11697.41641731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x027a1e434ff9a103ac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:22:55.000Z'}}, {'blockNum': '0x511e2c', 'uniqueId': '0x340b6d3c8d696a9bde4905fc694b7944894a863a114d3e9ad4ae93bc463d916e:log:9', 'hash': '0x340b6d3c8d696a9bde4905fc694b7944894a863a114d3e9ad4ae93bc463d916e', 'from': '0xfc70bcae87d607d22488837e14cb6b94a7082659', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9858.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021668a5d2897fdf0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:24:07.000Z'}}, {'blockNum': '0x511e2c', 'uniqueId': '0x232bb13ac467e4a8066a60e856e2398bc2561289e5997d14a59bfaf1d8016213:log:10', 'hash': '0x232bb13ac467e4a8066a60e856e2398bc2561289e5997d14a59bfaf1d8016213', 'from': '0xc9ab868d360cea6dbe0de942ed56cbbaca98d739', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11697.41641731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x027a1e434ff9a103ac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:24:07.000Z'}}, {'blockNum': '0x511e2c', 'uniqueId': '0x133860032366485c0ec0c2b604896a84f9fe2a0a2fd84f0011393cf72c95d77a:log:11', 'hash': '0x133860032366485c0ec0c2b604896a84f9fe2a0a2fd84f0011393cf72c95d77a', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42404.5664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x08fac19317c740d80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:24:07.000Z'}}, {'blockNum': '0x511e3d', 'uniqueId': '0x9c0d61c1f8724e3abd3c5d74ceef916ba768daf8f2fc55d23f85c4304a38aacc:log:30', 'hash': '0x9c0d61c1f8724e3abd3c5d74ceef916ba768daf8f2fc55d23f85c4304a38aacc', 'from': '0x6d1e61b024289443f8c45e835db4e2f60a0b9aa3', 'to': '0x661dc8890241b52f4b3a771be3b683c0362382d3', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac61ff48a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:28:08.000Z'}}, {'blockNum': '0x511e3e', 'uniqueId': '0xfc74854734a747450d50d7e7754a7723f46bc44daf0905b2fef9fe08d20bd06e:log:3', 'hash': '0xfc74854734a747450d50d7e7754a7723f46bc44daf0905b2fef9fe08d20bd06e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x75d781047872324d2f719869f6ca064f7266988c', 'value': 748.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x288f7fe6d043050000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:28:12.000Z'}}, {'blockNum': '0x511e44', 'uniqueId': '0xb3ed9d2d41b91362396f18fe653001aa6004676f7735f3879d0d4717868bd92c:log:8', 'hash': '0xb3ed9d2d41b91362396f18fe653001aa6004676f7735f3879d0d4717868bd92c', 'from': '0x173c2d042fb346a7424df858e847cb5185677593', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 525.46557368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1c7c4cbb39dd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:31:09.000Z'}}, {'blockNum': '0x511e44', 'uniqueId': '0x848e3b9f9a6f81b4971825f3ce14b375eecc6bcef9a9ba7d00ad0437c38fa1c0:log:9', 'hash': '0x848e3b9f9a6f81b4971825f3ce14b375eecc6bcef9a9ba7d00ad0437c38fa1c0', 'from': '0x1e69fccb59393ee285cfec002be7310c1f4551bb', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 1788.207888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x60f05e9fcdf7810000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:31:09.000Z'}}, {'blockNum': '0x511e4c', 'uniqueId': '0x4814f75cf5ff22b97ce7c644beb7a2a8403bbc642130fc7e5f5d1c734639d2e6:log:18', 'hash': '0x4814f75cf5ff22b97ce7c644beb7a2a8403bbc642130fc7e5f5d1c734639d2e6', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x306f07d974767ea877a7023fe0811884db069f06', 'value': 1408.26704251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4c57a195d8227a8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:33:08.000Z'}}, {'blockNum': '0x511e50', 'uniqueId': '0xfba6a6aa01d7ab7ea0cda6d38aa06a8bf1ae40bdff1cbd6d5b81fb367e3f9173:log:12', 'hash': '0xfba6a6aa01d7ab7ea0cda6d38aa06a8bf1ae40bdff1cbd6d5b81fb367e3f9173', 'from': '0xfc2a022a476698bb491684b67c7ff0f08974dd41', 'to': '0xa90094119dc44f45f80ffa631c517c2733d79a7b', 'value': 1111.89742082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3c46ad2d26991fc800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:34:09.000Z'}}, {'blockNum': '0x511e5c', 'uniqueId': '0xa2c983c01e8ba5a19a903602f513c2c266b1e7b3745b562df16cff0cc703b2ed:log:5', 'hash': '0xa2c983c01e8ba5a19a903602f513c2c266b1e7b3745b562df16cff0cc703b2ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x10da178cc12e5dff6529b0ab31b7219027a48215', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0332ca1b67940c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:37:15.000Z'}}, {'blockNum': '0x511e66', 'uniqueId': '0xbd85492a843ec551df58d43960e35b1d460af6fdafbe62bf4e8642037a45392f:log:5', 'hash': '0xbd85492a843ec551df58d43960e35b1d460af6fdafbe62bf4e8642037a45392f', 'from': '0x545862068543ca4dc3de7a2d0f9dc148e7f41222', 'to': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'value': 22966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04dcfd4658eac517ffff', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:39:47.000Z'}}, {'blockNum': '0x511e6b', 'uniqueId': '0x2dc30bc46d86656d7d6af9aa23ff04d50c60cbd58bbdf2cec5f9a76d837ca250:log:3', 'hash': '0x2dc30bc46d86656d7d6af9aa23ff04d50c60cbd58bbdf2cec5f9a76d837ca250', 'from': '0x79d876c932e999b4c8f27f392dce36454177030b', 'to': '0xfc8261ace7bfaf5eda61ca13ab03129f8836c519', 'value': 31475.55967002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06aa4b23633889752800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:41:25.000Z'}}, {'blockNum': '0x511e6e', 'uniqueId': '0xc0ce5cf63b3181f87f066b53d18bd19d16c620a4431a953443b589a8ea3cf4a4:log:6', 'hash': '0xc0ce5cf63b3181f87f066b53d18bd19d16c620a4431a953443b589a8ea3cf4a4', 'from': '0xa90094119dc44f45f80ffa631c517c2733d79a7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1111.89742082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3c46ad2d26991fc800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:41:54.000Z'}}, {'blockNum': '0x511e79', 'uniqueId': '0x4da133ce3b9879511a9b6ca91c7f6577b401bf0bad506eaab5e11614a0d0fdff:log:21', 'hash': '0x4da133ce3b9879511a9b6ca91c7f6577b401bf0bad506eaab5e11614a0d0fdff', 'from': '0x70590a738aef17e0294f21c5691955a48dc13860', 'to': '0x3763af4178cf5b8743af008ddffd504c353dbc97', 'value': 976.55095483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x34f05def6ddeaf8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:44:56.000Z'}}, {'blockNum': '0x511ea4', 'uniqueId': '0xceade3994b83d64260b9081cd4a4753979ffd788b8c9ad0c237502c7ef10f08a:log:20', 'hash': '0xceade3994b83d64260b9081cd4a4753979ffd788b8c9ad0c237502c7ef10f08a', 'from': '0xfc8261ace7bfaf5eda61ca13ab03129f8836c519', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31475.55967002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06aa4b23633889752800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T00:54:06.000Z'}}, {'blockNum': '0x511ebd', 'uniqueId': '0x3dae81387eb67598b806a53995b8248563aae133ffd05990792a5cc27c7abf09:log:4', 'hash': '0x3dae81387eb67598b806a53995b8248563aae133ffd05990792a5cc27c7abf09', 'from': '0x30cd958612f1189388f940ec16563441b3158759', 'to': '0xa1ada120f5ae5e34bc1ec3e87ebb0ef5410f3f10', 'value': 8206.02811871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01bcd9845891008f9c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:00:16.000Z'}}, {'blockNum': '0x511ebd', 'uniqueId': '0x364f527f1712531a714305906268efaf7e1c45073aa8240920e9b6a6107e7239:log:19', 'hash': '0x364f527f1712531a714305906268efaf7e1c45073aa8240920e9b6a6107e7239', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x7cb4a8c2533c23ad7ec6e3a083c0c1ce89a83330', 'value': 571.51105296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1efb4f22abfa424000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:00:16.000Z'}}, {'blockNum': '0x511ec8', 'uniqueId': '0xb6e85305070cd52defcbfd4ed1b1428c7554d6dcb768ae80c92a619ff51f74bf:log:2', 'hash': '0xb6e85305070cd52defcbfd4ed1b1428c7554d6dcb768ae80c92a619ff51f74bf', 'from': '0x3763af4178cf5b8743af008ddffd504c353dbc97', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 976.55095483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x34f05def6ddeaf8c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:01:57.000Z'}}, {'blockNum': '0x511ed3', 'uniqueId': '0x26e083316d17f51b51335a4cd2d91902fcae4f061b3e5d70f3306cbaeee5e161:log:2', 'hash': '0x26e083316d17f51b51335a4cd2d91902fcae4f061b3e5d70f3306cbaeee5e161', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 52320.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1453201791e0c75800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:04:35.000Z'}}, {'blockNum': '0x511ed4', 'uniqueId': '0xaac54d9023f9c042e04c3458f46a93db2b86049c89cd51e9dd5ea40948ce24de:log:43', 'hash': '0xaac54d9023f9c042e04c3458f46a93db2b86049c89cd51e9dd5ea40948ce24de', 'from': '0x1a3587f90629664b7294168c4f09533eb4450ccc', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 8723.5959999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01d8e836d6510a171800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:04:41.000Z'}}, {'blockNum': '0x511eea', 'uniqueId': '0x8d08cab3b6df425232166e341cb2ce3d08205e84fd937da470d7bb5f1f333135:log:1', 'hash': '0x8d08cab3b6df425232166e341cb2ce3d08205e84fd937da470d7bb5f1f333135', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43625.8488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093cf645c7f2655e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:08:47.000Z'}}, {'blockNum': '0x511eeb', 'uniqueId': '0xcf1068472f9d2ea7910ed0170d40e7b10f2a5a10d147951408ff4a151f32cbd3:log:112', 'hash': '0xcf1068472f9d2ea7910ed0170d40e7b10f2a5a10d147951408ff4a151f32cbd3', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52320.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1453201791e0c75800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:08:53.000Z'}}, {'blockNum': '0x511ef6', 'uniqueId': '0x8bb03c03114d422e0ee8575b9cef5580c2352ef48449e00fbcb3cac00b4f37f0:log:5', 'hash': '0x8bb03c03114d422e0ee8575b9cef5580c2352ef48449e00fbcb3cac00b4f37f0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x10da178cc12e5dff6529b0ab31b7219027a48215', 'value': 14580.264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x031665cf5a7358040000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:11:15.000Z'}}, {'blockNum': '0x511efa', 'uniqueId': '0x381a66f442cb69c5c25a5bc0db8e2994af9d648f314fc7dad7c5ada04d723062:log:6', 'hash': '0x381a66f442cb69c5c25a5bc0db8e2994af9d648f314fc7dad7c5ada04d723062', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x93f7e7f08ef3ab2ec90667544c7822a758d28d18', 'value': 2801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x97d7af03aa7d240000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:13:16.000Z'}}, {'blockNum': '0x511efc', 'uniqueId': '0x18f7e98067a09d58c7322529f1b6d1714ce35e9c6768b995003ff7f004f8272c:log:9', 'hash': '0x18f7e98067a09d58c7322529f1b6d1714ce35e9c6768b995003ff7f004f8272c', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x7e809d06b06ecd1fcf5f88ad0a077990f157b0c3', 'value': 2758.22775162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9586197661a676a800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:13:32.000Z'}}, {'blockNum': '0x511f08', 'uniqueId': '0x096e76e61d999041fc8d3b3ab3019a2fc842649f9b08761ed41c8e5469068651:log:31', 'hash': '0x096e76e61d999041fc8d3b3ab3019a2fc842649f9b08761ed41c8e5469068651', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43625.8488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093cf645c7f2655e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:16:29.000Z'}}, {'blockNum': '0x511f28', 'uniqueId': '0xa257e7873e547e598c1fe4a0330e292e11134708e17a9c8a117e48071c292ec6:log:1', 'hash': '0xa257e7873e547e598c1fe4a0330e292e11134708e17a9c8a117e48071c292ec6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ab2737e9ab6731e95628d7e4592a4f012462558', 'value': 52292.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b12ce8c1beb91d75800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:24:47.000Z'}}, {'blockNum': '0x511f2b', 'uniqueId': '0x05bf09067e3ad9049ec41e609d1d56e93364ce5f293a91e5b312b2967fc65338:log:6', 'hash': '0x05bf09067e3ad9049ec41e609d1d56e93364ce5f293a91e5b312b2967fc65338', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x62a3d48651ed80e2a1e43b5f811f76118fc94265', 'value': 13000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02c0bb3dd30c4e200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:25:08.000Z'}}, {'blockNum': '0x511f49', 'uniqueId': '0xe5d7c2e01586f3f73136fd731c9133638928529a9c1ba4e286165966c5e86a5e:log:0', 'hash': '0xe5d7c2e01586f3f73136fd731c9133638928529a9c1ba4e286165966c5e86a5e', 'from': '0xf476c1769ef7c2e1228febe67ddf9432098ef549', 'to': '0x03747f06215b44e498831da019b27f53e483599f', 'value': 2798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x97ae0cdf8f86f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:32:54.000Z'}}, {'blockNum': '0x511f54', 'uniqueId': '0xb8dab0e2c0cab08eb565ab4dc9fb6f352c8ae1200c9c38a8bffa57cc969a4900:log:34', 'hash': '0xb8dab0e2c0cab08eb565ab4dc9fb6f352c8ae1200c9c38a8bffa57cc969a4900', 'from': '0xd93a0867276e1ced7c8f5ac8940bbef506cc717a', 'to': '0xfa96b3276b59841745f97fffed6c2f6d8dd5302f', 'value': 2648.91194561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8f9909b3fecce6e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:35:19.000Z'}}, {'blockNum': '0x511f6c', 'uniqueId': '0x9a4f77a948ce43babf6ddaad175173deb68c6bbeaa0bf0bcc914613b31dac831:log:7', 'hash': '0x9a4f77a948ce43babf6ddaad175173deb68c6bbeaa0bf0bcc914613b31dac831', 'from': '0x2569b544e68d44709842e130ed63857ae3054c09', 'to': '0x82b66a238c9cdcf48060ac29faae0b2ca2e49c17', 'value': 3411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb8e9225bbf596c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:42:38.000Z'}}, {'blockNum': '0x511f6d', 'uniqueId': '0xd7b0ab4728c3d5c16ea749594667b0a9e0356f5044f6ee846eb5a53ac7d3a714:log:36', 'hash': '0xd7b0ab4728c3d5c16ea749594667b0a9e0356f5044f6ee846eb5a53ac7d3a714', 'from': '0xfa96b3276b59841745f97fffed6c2f6d8dd5302f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2648.91194561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8f9909b3fecce6e400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:43:18.000Z'}}, {'blockNum': '0x511f76', 'uniqueId': '0xd224a16e2365d657bf4572cdb4c85352a0490631133a17c796f1b862d6d50ea1:log:110', 'hash': '0xd224a16e2365d657bf4572cdb4c85352a0490631133a17c796f1b862d6d50ea1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 37269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07e45b46186011340000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:44:48.000Z'}}, {'blockNum': '0x511f94', 'uniqueId': '0xfe4fbb405400ef524b61526ea709c0fb85b7b4e090c7396f73216c215cc7f965:log:13', 'hash': '0xfe4fbb405400ef524b61526ea709c0fb85b7b4e090c7396f73216c215cc7f965', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07e45b46186011340000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:54:13.000Z'}}, {'blockNum': '0x511f97', 'uniqueId': '0x6fed4e5f4b9fd38018bd97e4658a446e97c31bf4a06b0f981703ae1d68e457fa:log:5', 'hash': '0x6fed4e5f4b9fd38018bd97e4658a446e97c31bf4a06b0f981703ae1d68e457fa', 'from': '0xa9058fecd7d1c4cc84724bf6e3fd5d0f25b8142b', 'to': '0x3305c68e9722dd52c7fd2fdfcc87aae83087a115', 'value': 6413.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x015bad783bb6f7480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:55:00.000Z'}}, {'blockNum': '0x511fa5', 'uniqueId': '0xf85b0ea53f49e670fbb64ba0bd4c36dc7c67235991d2bbe74ef245df73dbbdf8:log:357', 'hash': '0xf85b0ea53f49e670fbb64ba0bd4c36dc7c67235991d2bbe74ef245df73dbbdf8', 'from': '0x01ba0547db23b20f841e187bb073a7477576607d', 'to': '0x53482737c4478a962c99c5851b7cccdbd8f5049a', 'value': 2764.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x95d8fb26a406c40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T01:58:17.000Z'}}, {'blockNum': '0x511faf', 'uniqueId': '0x2e14de05eafa59cbf4691adc53ed91035a5f7069ac8c8eba82b5cea72f41191a:log:4', 'hash': '0x2e14de05eafa59cbf4691adc53ed91035a5f7069ac8c8eba82b5cea72f41191a', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'value': 16256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03713d5190054e000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:00:12.000Z'}}, {'blockNum': '0x511fca', 'uniqueId': '0x5fc44375e1981c038971aebd40a4b7d6e116fa29f4594871fe2b62b2f939df6c:log:30', 'hash': '0x5fc44375e1981c038971aebd40a4b7d6e116fa29f4594871fe2b62b2f939df6c', 'from': '0xec465ed3f0d265ded60675c86734478aaf8de1ac', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 16256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03713d5190054e000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:05:44.000Z'}}, {'blockNum': '0x512002', 'uniqueId': '0x9378cf148ba8461007df9d4615681404aee4d4abe1cbd8982727ebc4b1f05abc:log:2', 'hash': '0x9378cf148ba8461007df9d4615681404aee4d4abe1cbd8982727ebc4b1f05abc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'value': 49728.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a87cfe63c930c475800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:17:30.000Z'}}, {'blockNum': '0x512014', 'uniqueId': '0x1bfc286ef08eae910506d87309784a814b7cb928fe7e79fafcfe183799e6c161:log:12', 'hash': '0x1bfc286ef08eae910506d87309784a814b7cb928fe7e79fafcfe183799e6c161', 'from': '0xf4530fd119b557f55f87349840408a0d1edbf43b', 'to': '0xfcb143c41a6c9e3ba504f7363b105a0a8f0a5104', 'value': 1099.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3b9ea6fa1016db0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:21:27.000Z'}}, {'blockNum': '0x512024', 'uniqueId': '0xf2b7b3c378577af0931f9c78ce9d1aa8374947d494b7c21031b3873a9c8128c7:log:34', 'hash': '0xf2b7b3c378577af0931f9c78ce9d1aa8374947d494b7c21031b3873a9c8128c7', 'from': '0xffc1e830d90b28ae23a07f97ad1e3f78fbb4ffb4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 49728.95600646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a87cfe63c930c475800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:24:07.000Z'}}, {'blockNum': '0x512024', 'uniqueId': '0x7984401a9f0e6d38fb6ce1c71f6636d019cd4af7e5bca4cf85e59791dfb52599:log:47', 'hash': '0x7984401a9f0e6d38fb6ce1c71f6636d019cd4af7e5bca4cf85e59791dfb52599', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 43632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093d4ba33bc1a3c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:24:07.000Z'}}, {'blockNum': '0x51203d', 'uniqueId': '0xf7d42f7f76473cb2fd75856e24191024c9d39c445415cc2b3e8fe49fb008eaf0:log:6', 'hash': '0xf7d42f7f76473cb2fd75856e24191024c9d39c445415cc2b3e8fe49fb008eaf0', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 43632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x093d4ba33bc1a3c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:28:41.000Z'}}, {'blockNum': '0x51205e', 'uniqueId': '0x179223fb9548f0c908578a72ec11ad2f0860cd322af976ba5586f50db5cf68f3:log:26', 'hash': '0x179223fb9548f0c908578a72ec11ad2f0860cd322af976ba5586f50db5cf68f3', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xbd506942ed72ea0c8c9c9025483d8d60ce8d8a8f', 'value': 3250.37997959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb034156a2f97613c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:36:28.000Z'}}, {'blockNum': '0x512066', 'uniqueId': '0xd8e57e4c06ccd768d5c7cecce49ff0834f72e928b09ea175a5607cc2adef93c7:log:41', 'hash': '0xd8e57e4c06ccd768d5c7cecce49ff0834f72e928b09ea175a5607cc2adef93c7', 'from': '0xf838f4e2cdb8274667b4a4356a1ca533079df71f', 'to': '0xc08eb752c94e4dddfb29e55e1a2bec62f7911329', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:38:00.000Z'}}, {'blockNum': '0x512068', 'uniqueId': '0xb869552bc856214bd728b9d0d81651a701b56b96009a6ce7777ea1e9875caa05:log:11', 'hash': '0xb869552bc856214bd728b9d0d81651a701b56b96009a6ce7777ea1e9875caa05', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0xbd506942ed72ea0c8c9c9025483d8d60ce8d8a8f', 'value': 2482.10354642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x868e1b38b885650800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:38:44.000Z'}}, {'blockNum': '0x51209a', 'uniqueId': '0x163d01557657dc5aebbfee35b43a33d84b77c947d98073acb85427e94e67f65e:log:20', 'hash': '0x163d01557657dc5aebbfee35b43a33d84b77c947d98073acb85427e94e67f65e', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x7e80392d462cb6b11d73336d28355dd69e2d8e0c', 'value': 16889.33318128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0393929504da1479c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:51:32.000Z'}}, {'blockNum': '0x5120bd', 'uniqueId': '0x63c4be6860c93bda09679e2ea1a6e86278997345ac26730f4fe4aaeb9062561c:log:20', 'hash': '0x63c4be6860c93bda09679e2ea1a6e86278997345ac26730f4fe4aaeb9062561c', 'from': '0xc08eb752c94e4dddfb29e55e1a2bec62f7911329', 'to': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T02:57:56.000Z'}}, {'blockNum': '0x5120d7', 'uniqueId': '0x7f37d19327ebe56af85c73cbfdc741a83c41401410a8d3a1101828dc760bbf12:log:10', 'hash': '0x7f37d19327ebe56af85c73cbfdc741a83c41401410a8d3a1101828dc760bbf12', 'from': '0x572eb08a5614d2cfae8e3e25c1dce7412885b532', 'to': '0xcc27434d4a1788b6ae792db0b94e54cddf390ca0', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:02:43.000Z'}}, {'blockNum': '0x5120f0', 'uniqueId': '0x0cee153bb092a0a3eb4561c24d426fe96485c7ef677a4a3022eb0d3832c684de:log:2', 'hash': '0x0cee153bb092a0a3eb4561c24d426fe96485c7ef677a4a3022eb0d3832c684de', 'from': '0xcc27434d4a1788b6ae792db0b94e54cddf390ca0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:06:58.000Z'}}, {'blockNum': '0x512117', 'uniqueId': '0xd76034c74c7082ea801eaf7b95b590eaf7b338a0efaa3ed6c22795876862103e:log:35', 'hash': '0xd76034c74c7082ea801eaf7b95b590eaf7b338a0efaa3ed6c22795876862103e', 'from': '0x48684ee285c18d3a13978d649b4e07e8ed2980c7', 'to': '0x3ce559c8258f128e6f55887451e32c39b28ed15a', 'value': 2357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7fc5f224142bb40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:16:07.000Z'}}, {'blockNum': '0x512134', 'uniqueId': '0x77705c2bb5f9dd270e6c7be5443e0798fef7e672675bc2b29a6161afd7e53b6b:log:10', 'hash': '0x77705c2bb5f9dd270e6c7be5443e0798fef7e672675bc2b29a6161afd7e53b6b', 'from': '0x572eb08a5614d2cfae8e3e25c1dce7412885b532', 'to': '0xcc27434d4a1788b6ae792db0b94e54cddf390ca0', 'value': 36421.6943486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07b66c8bb7a50b3e3000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:23:30.000Z'}}, {'blockNum': '0x51214c', 'uniqueId': '0xa1a0ad0c11bda3469fc8e4125d763e6fbe832f68635d230eeb638f03a7d38ce9:log:18', 'hash': '0xa1a0ad0c11bda3469fc8e4125d763e6fbe832f68635d230eeb638f03a7d38ce9', 'from': '0xcc27434d4a1788b6ae792db0b94e54cddf390ca0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 36421.6943486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07b66c8bb7a50b3e3000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:29:40.000Z'}}, {'blockNum': '0x512156', 'uniqueId': '0xc4dbf68155b7d4657c3ad4aef82f982adb14e7c242f518b54a959d095614a6ca:log:9', 'hash': '0xc4dbf68155b7d4657c3ad4aef82f982adb14e7c242f518b54a959d095614a6ca', 'from': '0x1b4def26044a75a26b808b4824e502ab764c5027', 'to': '0x181e1ff49cae7f7c419688fcb9e69af2f93311da', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:31:03.000Z'}}, {'blockNum': '0x512169', 'uniqueId': '0x5674293c1d8ecd40cff46f61042eca5189792b6b334e7110af2d92f3ea770f20:log:4', 'hash': '0x5674293c1d8ecd40cff46f61042eca5189792b6b334e7110af2d92f3ea770f20', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'value': 15249.68444547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x033aafe286dd2f1dac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:35:34.000Z'}}, {'blockNum': '0x51217a', 'uniqueId': '0x00cf87b45fe56e1754c3d6e10baa85de51caad38fae626c45a7a6688fbc47056:log:10', 'hash': '0x00cf87b45fe56e1754c3d6e10baa85de51caad38fae626c45a7a6688fbc47056', 'from': '0xca6c813d4d7272ce494dfeedc7872d1c76132cce', 'to': '0x711bb8904f6f15a748642a959d058f9f8efcde3f', 'value': 15258.68444547362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x033b2cc8f32ee9667d00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:40:32.000Z'}}, {'blockNum': '0x512196', 'uniqueId': '0x3e22c7a5fca28d8c0ff1c18e03dc399ded09672f2f3c1204b744b8f356223a27:log:1', 'hash': '0x3e22c7a5fca28d8c0ff1c18e03dc399ded09672f2f3c1204b744b8f356223a27', 'from': '0x95402456cbcd4b9c5b602b8fd42eebd4f3ec0ef1', 'to': '0x98a3c1fcc63bc02547102fb958e2f3dd85f96e06', 'value': 4161.455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe197ca1a2a9d318000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:48:21.000Z'}}, {'blockNum': '0x5121a9', 'uniqueId': '0xc3b455415faf541356afa45619f864c4962a426297ab3b740e4cbca65a6e1e0d:log:35', 'hash': '0xc3b455415faf541356afa45619f864c4962a426297ab3b740e4cbca65a6e1e0d', 'from': '0x28d223db2944a0d3d444a0b2a13185b9f6443f5b', 'to': '0xa46fc68bde0555a7bc394cf50d0afa72ce96676f', 'value': 1386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4b229d28a843680000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:53:07.000Z'}}, {'blockNum': '0x5121ba', 'uniqueId': '0xb9fcd555b2ba6b67908c690fdbe63534a248677665b4e64f0daae5cac01f27c0:log:2', 'hash': '0xb9fcd555b2ba6b67908c690fdbe63534a248677665b4e64f0daae5cac01f27c0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'value': 40377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x088cd770357c4b440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T03:57:28.000Z'}}, {'blockNum': '0x5121d8', 'uniqueId': '0x93002f04bb1397622826f3077875c9232cfc2637fa2b7a9548127150d162d9ca:log:2', 'hash': '0x93002f04bb1397622826f3077875c9232cfc2637fa2b7a9548127150d162d9ca', 'from': '0x5ba6b3b16e45914e592eac770bea6339b490f35f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 40377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x088cd770357c4b440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T04:05:56.000Z'}}, {'blockNum': '0x5121fc', 'uniqueId': '0xacace99d1d3545e945765721582c99d39d9fd059d9d57683f814f920eb5f3565:log:33', 'hash': '0xacace99d1d3545e945765721582c99d39d9fd059d9d57683f814f920eb5f3565', 'from': '0xe1b36a77e56350d6e419c0c2b049d028add1de34', 'to': '0xf8483be7581114214bc1129cd78c562b7fdc71d3', 'value': 4298.94062005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe90bc9252c01c43400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T04:13:47.000Z'}}, {'blockNum': '0x512206', 'uniqueId': '0xd935efc3222fa6e0765cbeede1a16a3166ffd6866089aa30f50beb5362c93ab0:log:38', 'hash': '0xd935efc3222fa6e0765cbeede1a16a3166ffd6866089aa30f50beb5362c93ab0', 'from': '0x18ae94fbb05d9a6c68d97430b454598942420515', 'to': '0x09f4142d017e20d435e38a251ba3f3bef8889a2f', 'value': 7413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0191dc0a803e22b40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T04:15:32.000Z'}}]}}
Number of returned transfers:  658
Answer is complete
 
symbol             ICN
group              BPS
date        2018-04-04
hour             19:00
exchange       binance
Name: 293, dtype: object
HERE
 Symbol: ICN, Contract: 
Datetime timestamps:  2018-04-04 19:00:00 2018-04-04 07:00:00 2018-04-05 07:00:00
Unix timestamps:  1522818000.0 1522904400.0
Hex Block Numbers:  0x520cbb 0x52241a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           SNGLS
group              BPS
date        2018-04-10
hour             19:00
exchange       binance
Name: 294, dtype: object
HERE
 Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps:  2018-04-10 19:00:00 2018-04-10 07:00:00 2018-04-11 07:00:00
Unix timestamps:  1523336400.0 1523422800.0
Hex Block Numbers:  0x529a12 0x52b1bc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x529c3b', 'uniqueId': '0x7eaa42e85046946cded589d35f1d1e1a785e9c4c759bb52fd54676750d049e75:log:47', 'hash': '0x7eaa42e85046946cded589d35f1d1e1a785e9c4c759bb52fd54676750d049e75', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa0f1512df2fae05e9a5cf7b4fe2de266c83be5d4', 'value': 49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x31', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T07:08:05.000Z'}}, {'blockNum': '0x529c66', 'uniqueId': '0x93a3d7b6020bdee2729df86e1284cdebe64ebb1bf28a1d6d7d1f46dd7f829cf4:log:42', 'hash': '0x93a3d7b6020bdee2729df86e1284cdebe64ebb1bf28a1d6d7d1f46dd7f829cf4', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x76f4617036489d4eefc2c9ad0cd41202f88878bc', 'value': 4788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x12b4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T07:18:21.000Z'}}, {'blockNum': '0x529c94', 'uniqueId': '0x0698cbd235f7ed592ab161e7145d4fccf7342ade26ef143808e4209bf9542522:log:25', 'hash': '0x0698cbd235f7ed592ab161e7145d4fccf7342ade26ef143808e4209bf9542522', 'from': '0x76f4617036489d4eefc2c9ad0cd41202f88878bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x12b4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T07:29:20.000Z'}}, {'blockNum': '0x529f78', 'uniqueId': '0xfca4f81289345fdd9b1bc355aa86ab37dc60e1add47c5a32f0e2ca4f85e5a15f:log:0', 'hash': '0xfca4f81289345fdd9b1bc355aa86ab37dc60e1add47c5a32f0e2ca4f85e5a15f', 'from': '0xc39ac4481126649a1d15745d8a58711f9f350456', 'to': '0x4423cc862171b18812da8d97a1a959f9ef8a3a32', 'value': 742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x02e6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T10:24:50.000Z'}}, {'blockNum': '0x52a3e0', 'uniqueId': '0x74e7ea4ebd01e0825f5a788e509e277facfbd9d320de1738cf3fd5b57fcd6506:log:74', 'hash': '0x74e7ea4ebd01e0825f5a788e509e277facfbd9d320de1738cf3fd5b57fcd6506', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5a84873b1b6c4cefc4dbc86cc7597a4e4ef24ee1', 'value': 39959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9c17', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T14:57:55.000Z'}}, {'blockNum': '0x52a6c9', 'uniqueId': '0x5c11090f03961f74f085f8213fb42c1a1a7ebcd083b0f327d9daf3d2345f0f67:log:67', 'hash': '0x5c11090f03961f74f085f8213fb42c1a1a7ebcd083b0f327d9daf3d2345f0f67', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xac0d57aee6183a39aecc9f63529ff1d8713a82f0', 'value': 152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x98', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T17:56:27.000Z'}}, {'blockNum': '0x52a719', 'uniqueId': '0x9829ecb0abde520c64ad14fade75751119e9de7ecf7147694e74e906ead1125d:log:0', 'hash': '0x9829ecb0abde520c64ad14fade75751119e9de7ecf7147694e74e906ead1125d', 'from': '0xf4b51b14b9ee30dc37ec970b50a486f37686e2a8', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 1500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x16e360', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:18:43.000Z'}}, {'blockNum': '0x52a723', 'uniqueId': '0x1d5c1f3e292473c625fc9b071618cff1ee1557298e0753b90ed192752350d7f5:log:2', 'hash': '0x1d5c1f3e292473c625fc9b071618cff1ee1557298e0753b90ed192752350d7f5', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 290758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x046fc6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:20:30.000Z'}}, {'blockNum': '0x52a729', 'uniqueId': '0x94cee45945b356103d25b68f3245049f6b02c3c94401c88107a3090654a7cffb:log:26', 'hash': '0x94cee45945b356103d25b68f3245049f6b02c3c94401c88107a3090654a7cffb', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 397275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x060fdb', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:21:41.000Z'}}, {'blockNum': '0x52a72d', 'uniqueId': '0xf15c385402785f063baa6f066554f4f01dd3f6825dcd6a916d9161f24ed9ceea:log:5', 'hash': '0xf15c385402785f063baa6f066554f4f01dd3f6825dcd6a916d9161f24ed9ceea', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 296249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x048539', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:22:43.000Z'}}, {'blockNum': '0x52a74c', 'uniqueId': '0x921d8ae3b886c98e4aba8e4849fa94c687d97397922e9cd368ac2c9eddf216c1:log:97', 'hash': '0x921d8ae3b886c98e4aba8e4849fa94c687d97397922e9cd368ac2c9eddf216c1', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 984282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0f04da', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:28:35.000Z'}}, {'blockNum': '0x52a7c7', 'uniqueId': '0x47950d918be4fe49f968ed541fe9f52ca5c57a4bfeb10dbc44c0129e26b8e53b:log:97', 'hash': '0x47950d918be4fe49f968ed541fe9f52ca5c57a4bfeb10dbc44c0129e26b8e53b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 32960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x80c0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T18:59:35.000Z'}}, {'blockNum': '0x52a7cc', 'uniqueId': '0x93f382ceb86678fa06465fe91c6d534f7dfdd76161d28b68151df2322191f608:log:5', 'hash': '0x93f382ceb86678fa06465fe91c6d534f7dfdd76161d28b68151df2322191f608', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 8086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f96', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:01:05.000Z'}}, {'blockNum': '0x52a7cd', 'uniqueId': '0x0bfb5a8a6c7ec41f1f98761c09d50bdf10b9730a3c672e3fa1987f0098c63020:log:91', 'hash': '0x0bfb5a8a6c7ec41f1f98761c09d50bdf10b9730a3c672e3fa1987f0098c63020', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 2342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0926', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:01:41.000Z'}}, {'blockNum': '0x52a7cf', 'uniqueId': '0x71435824c80a1fad10a1d90cdb39fe6dbcc9d6795e3427f719e0e404967ca4a7:log:28', 'hash': '0x71435824c80a1fad10a1d90cdb39fe6dbcc9d6795e3427f719e0e404967ca4a7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'value': 4973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x136d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:02:05.000Z'}}, {'blockNum': '0x52a7d3', 'uniqueId': '0x4f9dd91c83f3d768c9f8601e623d2b4315c23bf2480e5d969af0e8b76afbb888:log:0', 'hash': '0x4f9dd91c83f3d768c9f8601e623d2b4315c23bf2480e5d969af0e8b76afbb888', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x6243cdbd7bd96613a209ad15264eae1c4602f5df', 'value': 57757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe19d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:03:40.000Z'}}, {'blockNum': '0x52a7d3', 'uniqueId': '0x1a970dc030fbf82f8a40694bf59fce56b64c9cd4afb4469df7546498dbae8ce6:log:2', 'hash': '0x1a970dc030fbf82f8a40694bf59fce56b64c9cd4afb4469df7546498dbae8ce6', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f71', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:03:40.000Z'}}, {'blockNum': '0x52a7d3', 'uniqueId': '0x723f7e0f4a61765a3b0e32f1b75c20c290be1b7b58b55d9e5b5845ce297cb8be:log:76', 'hash': '0x723f7e0f4a61765a3b0e32f1b75c20c290be1b7b58b55d9e5b5845ce297cb8be', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'value': 25013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61b5', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:03:40.000Z'}}, {'blockNum': '0x52a7d8', 'uniqueId': '0x421741b7c85576d1765e47c854d25b16f7dd8047f5873401c6edad9da6b063c4:log:132', 'hash': '0x421741b7c85576d1765e47c854d25b16f7dd8047f5873401c6edad9da6b063c4', 'from': '0x649968774f9961bbc17478bb9bda4558b3ac5fab', 'to': '0xc5e77dcadeb2ba7ed3c8ab13075dbd9a86457d40', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x030d40', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:04:39.000Z'}}, {'blockNum': '0x52a7da', 'uniqueId': '0x85ffb58127df8171724e6cc29d72f0a17a9ee38789256699eadae868d9c81dc0:log:56', 'hash': '0x85ffb58127df8171724e6cc29d72f0a17a9ee38789256699eadae868d9c81dc0', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0af3', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:05:15.000Z'}}, {'blockNum': '0x52a7de', 'uniqueId': '0xff5882c8b17644d9c8a993f378641f83c4397c0ddcec55d5f9f4407024b13d17:log:3', 'hash': '0xff5882c8b17644d9c8a993f378641f83c4397c0ddcec55d5f9f4407024b13d17', 'from': '0x695b9b0f02e5fb89afe875855452914514755ed1', 'to': '0x04c2b3b62465824001b4f75d015ba0d04fec03c8', 'value': 1792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0700', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:06:19.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0xb076bce9b8e8c25de84d00d10ef0b8edee74075db7ffbcdc53275dd425dd0baf:log:6', 'hash': '0xb076bce9b8e8c25de84d00d10ef0b8edee74075db7ffbcdc53275dd425dd0baf', 'from': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61b5', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0xc572d172e8705abad12d604d4647d1f48f3d1765618c0e132572f83d56cd0dd5:log:9', 'hash': '0xc572d172e8705abad12d604d4647d1f48f3d1765618c0e132572f83d56cd0dd5', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f71', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0xd62ae50c44a07ce241cbd8b15dc44d997d3a400716a3f1237edcf30b920c90dc:log:11', 'hash': '0xd62ae50c44a07ce241cbd8b15dc44d997d3a400716a3f1237edcf30b920c90dc', 'from': '0xc5e77dcadeb2ba7ed3c8ab13075dbd9a86457d40', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x030d40', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0xc5316e222b92dfcb3c3432f826c4464d5bdbf950ad51fb6a8ff0e1d0e937344f:log:12', 'hash': '0xc5316e222b92dfcb3c3432f826c4464d5bdbf950ad51fb6a8ff0e1d0e937344f', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2a89', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0x17e66cba2c978df926abca1dd100c17446e9b76a3cb294ade0c9cd55639b6f8b:log:14', 'hash': '0x17e66cba2c978df926abca1dd100c17446e9b76a3cb294ade0c9cd55639b6f8b', 'from': '0x6243cdbd7bd96613a209ad15264eae1c4602f5df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe19d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0x7a8c0ff0c0cb6728e30ba0f9752cd4ba45d498d4b33421dae2050a3922dadbe4:log:15', 'hash': '0x7a8c0ff0c0cb6728e30ba0f9752cd4ba45d498d4b33421dae2050a3922dadbe4', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x80c0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ec', 'uniqueId': '0x7b085c1b0c587b80668990cc11c6d23fe02cc649d8c7802acc684061e1aefa00:log:17', 'hash': '0x7b085c1b0c587b80668990cc11c6d23fe02cc649d8c7802acc684061e1aefa00', 'from': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x136d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:21.000Z'}}, {'blockNum': '0x52a7ed', 'uniqueId': '0x260c1a6a1efdc3081a0089dc1a4fd7edb1185d1f6ff0df88267c922ce92e072f:log:3', 'hash': '0x260c1a6a1efdc3081a0089dc1a4fd7edb1185d1f6ff0df88267c922ce92e072f', 'from': '0x9a2d163ab40f88c625fd475e807bbc3556566f80', 'to': '0x306b16a86776d9917883ba666ad0fc4b4310addf', 'value': 19002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4a3a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:30.000Z'}}, {'blockNum': '0x52a7ee', 'uniqueId': '0x19050c2b38fd6495c62cbdeb8adc250789a4f5786c85e1a8c9d74b373d6112b4:log:70', 'hash': '0x19050c2b38fd6495c62cbdeb8adc250789a4f5786c85e1a8c9d74b373d6112b4', 'from': '0x306b16a86776d9917883ba666ad0fc4b4310addf', 'to': '0x4b48e8318427bdb8b1d0c8a1bba3956ccf424422', 'value': 19002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4a3a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:09:45.000Z'}}, {'blockNum': '0x52a81d', 'uniqueId': '0x28ad25cd94c3e966d0746ee6625b9f0591c12fae4ce9542c998c021d8119f63a:log:12', 'hash': '0x28ad25cd94c3e966d0746ee6625b9f0591c12fae4ce9542c998c021d8119f63a', 'from': '0x4b48e8318427bdb8b1d0c8a1bba3956ccf424422', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4a3a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:19:24.000Z'}}, {'blockNum': '0x52a82b', 'uniqueId': '0xeb49e624f41d6692b9600d98585e8b9e9dbfd33af0499c10564b656616ed33ce:log:2', 'hash': '0xeb49e624f41d6692b9600d98585e8b9e9dbfd33af0499c10564b656616ed33ce', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xdee1645558e3b8f8f20e186acd5e8a7699127f30', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x63', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:22:22.000Z'}}, {'blockNum': '0x52a82b', 'uniqueId': '0xeb49e624f41d6692b9600d98585e8b9e9dbfd33af0499c10564b656616ed33ce:log:5', 'hash': '0xeb49e624f41d6692b9600d98585e8b9e9dbfd33af0499c10564b656616ed33ce', 'from': '0xdee1645558e3b8f8f20e186acd5e8a7699127f30', 'to': '0x9a2d163ab40f88c625fd475e807bbc3556566f80', 'value': 98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x62', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:22:22.000Z'}}, {'blockNum': '0x52a83f', 'uniqueId': '0xf72ee6b97beb5bbd28ce1069b08a29f8c8b11bf75ebcbb5cd81c12e3f89cf8ce:log:12', 'hash': '0xf72ee6b97beb5bbd28ce1069b08a29f8c8b11bf75ebcbb5cd81c12e3f89cf8ce', 'from': '0xac4984d936f2f6950530a68a1a5126de800812b5', 'to': '0xe9e2badc13ab4564699576e73ef06cff1bb3d75a', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f40', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:26:01.000Z'}}, {'blockNum': '0x52a84b', 'uniqueId': '0x9426a84d66252cdb837b60317ce011554574a5f692f479a8453da6fc54f9b60c:log:41', 'hash': '0x9426a84d66252cdb837b60317ce011554574a5f692f479a8453da6fc54f9b60c', 'from': '0xe9e2badc13ab4564699576e73ef06cff1bb3d75a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f40', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:29:33.000Z'}}, {'blockNum': '0x52a87f', 'uniqueId': '0xda9157e63f4ec52866bf40231d7ee7550beaf54120c4b7281efaca3a0286c47b:log:2', 'hash': '0xda9157e63f4ec52866bf40231d7ee7550beaf54120c4b7281efaca3a0286c47b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0cd62bd8995946435ce8669bdeb3819cee3a4697', 'value': 10559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x293f', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:40:15.000Z'}}, {'blockNum': '0x52a88d', 'uniqueId': '0x691c3a4ecbb492ee3047814cc62876d812e1958e32e23caba224ccc1e42925d1:log:55', 'hash': '0x691c3a4ecbb492ee3047814cc62876d812e1958e32e23caba224ccc1e42925d1', 'from': '0x51f2127d75525f7f3d49466f7f31dd070ca81784', 'to': '0xbcf6cf12e69bc71ae24e3e41b66997dacd29bbc6', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x035b60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:44:33.000Z'}}, {'blockNum': '0x52a897', 'uniqueId': '0x2d4d75e8e064dbeb6c39a7fc83ce8908c6d182a336ceb8e78f9417b1fb4a2b7f:log:0', 'hash': '0x2d4d75e8e064dbeb6c39a7fc83ce8908c6d182a336ceb8e78f9417b1fb4a2b7f', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 4496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1190', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:46:32.000Z'}}, {'blockNum': '0x52a8a4', 'uniqueId': '0x658737c3bc4804638181bedcc43413737dd266bf5c8ef8e09c403e832946c481:log:11', 'hash': '0x658737c3bc4804638181bedcc43413737dd266bf5c8ef8e09c403e832946c481', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1190', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:49:25.000Z'}}, {'blockNum': '0x52a8a4', 'uniqueId': '0x0115b187ffd977bea3700f02e05c8a1d2b948152d4a2a3e845d6f9430d569076:log:14', 'hash': '0x0115b187ffd977bea3700f02e05c8a1d2b948152d4a2a3e845d6f9430d569076', 'from': '0xbcf6cf12e69bc71ae24e3e41b66997dacd29bbc6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x035b60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:49:25.000Z'}}, {'blockNum': '0x52a8ac', 'uniqueId': '0x96b950063b7db61e07f21fae020052ace5ccd6bb67b417b8104ab3056ce794f0:log:0', 'hash': '0x96b950063b7db61e07f21fae020052ace5ccd6bb67b417b8104ab3056ce794f0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 617515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x096c2b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:53:13.000Z'}}, {'blockNum': '0x52a8c6', 'uniqueId': '0x41db6e582be1107a0ed0d0b5768031c6fbe6e20c01427b79cb0f1ee546c96682:log:2', 'hash': '0x41db6e582be1107a0ed0d0b5768031c6fbe6e20c01427b79cb0f1ee546c96682', 'from': '0xae02bae635f6c01685983077a14c226adefb5288', 'to': '0x2f5b7096694f2aed9a1722ef3b9d38c90c68e06d', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fa0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T19:59:07.000Z'}}, {'blockNum': '0x52a8ce', 'uniqueId': '0x23cc05d3d12e87419e257e14ecb38dea5edf36790ddeb3cf5cd1acea6cc0bcc8:log:15', 'hash': '0x23cc05d3d12e87419e257e14ecb38dea5edf36790ddeb3cf5cd1acea6cc0bcc8', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 617515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x096c2b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:01:21.000Z'}}, {'blockNum': '0x52a8d6', 'uniqueId': '0xeb4aef08fa8903b014baae6e266626a0647e796a3138e906b780f4cacf59375d:log:16', 'hash': '0xeb4aef08fa8903b014baae6e266626a0647e796a3138e906b780f4cacf59375d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1016029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0f80dd', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:03:28.000Z'}}, {'blockNum': '0x52a8ee', 'uniqueId': '0x2bc4f19e36e7cca4b068ef6da79d6c19a0c2061b724cd3f1086756c515e9e330:log:29', 'hash': '0x2bc4f19e36e7cca4b068ef6da79d6c19a0c2061b724cd3f1086756c515e9e330', 'from': '0x2f5b7096694f2aed9a1722ef3b9d38c90c68e06d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fa0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:09:10.000Z'}}, {'blockNum': '0x52a913', 'uniqueId': '0xded718cb36d19870fa4038d0adf1bc573db6ab488b0d2cdf868de7229d749406:log:17', 'hash': '0xded718cb36d19870fa4038d0adf1bc573db6ab488b0d2cdf868de7229d749406', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xf05590b4b18194bfb9d883017281a9643e0c4ab7', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x175e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:17:52.000Z'}}, {'blockNum': '0x52a92d', 'uniqueId': '0x02c17002b7edcc0a005f02718fd07641f5e46ad101634602ac988ae255a3365d:log:0', 'hash': '0x02c17002b7edcc0a005f02718fd07641f5e46ad101634602ac988ae255a3365d', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x38a36d8eb61d4e3a58364c912a30ef00e92b2e95', 'value': 1520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x05f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:23:13.000Z'}}, {'blockNum': '0x52a93c', 'uniqueId': '0x2c04f5086e25f92dfd8b956c68e21d69f8bb361e1eec3c051b7c6252fe570b31:log:23', 'hash': '0x2c04f5086e25f92dfd8b956c68e21d69f8bb361e1eec3c051b7c6252fe570b31', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x08eb973c9a02de4cfee9149cce679380dd9cff38', 'value': 10528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2920', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:25:46.000Z'}}, {'blockNum': '0x52a943', 'uniqueId': '0xe185014449f028bbe2c80b2687b1a46dca92e9dad9971c865f3a297aee1b574e:log:1', 'hash': '0xe185014449f028bbe2c80b2687b1a46dca92e9dad9971c865f3a297aee1b574e', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f92', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:26:58.000Z'}}, {'blockNum': '0x52a949', 'uniqueId': '0xd22c38efa87251ef312e2d9bf448b42c1480db6052c98ee493e5ff0e0ecef4ff:log:37', 'hash': '0xd22c38efa87251ef312e2d9bf448b42c1480db6052c98ee493e5ff0e0ecef4ff', 'from': '0xf05590b4b18194bfb9d883017281a9643e0c4ab7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x175e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:29:04.000Z'}}, {'blockNum': '0x52a949', 'uniqueId': '0xbe347d8ae295cea219e1e7ba176c96a551839bf6d10a5e5244919d7bfde41bb6:log:38', 'hash': '0xbe347d8ae295cea219e1e7ba176c96a551839bf6d10a5e5244919d7bfde41bb6', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f92', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:29:04.000Z'}}, {'blockNum': '0x52a971', 'uniqueId': '0x9d84ccc586e4c40be3e7df9707283e55ee0cc2ec601d43494609dc12891843c6:log:7', 'hash': '0x9d84ccc586e4c40be3e7df9707283e55ee0cc2ec601d43494609dc12891843c6', 'from': '0x08eb973c9a02de4cfee9149cce679380dd9cff38', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2920', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:39:02.000Z'}}, {'blockNum': '0x52a9c6', 'uniqueId': '0xab759f377f25f8208fd772a61175901f029a9ec72c39c2c340fe744ec6530705:log:0', 'hash': '0xab759f377f25f8208fd772a61175901f029a9ec72c39c2c340fe744ec6530705', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x46e6127260a632ae480fd9bd32735804a11326bb', 'value': 6497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1961', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T20:59:51.000Z'}}, {'blockNum': '0x52aa27', 'uniqueId': '0x847c99221a9b561ecfdbfae5f09f3778eae7052bcc9d88ab7adb719630628362:log:1', 'hash': '0x847c99221a9b561ecfdbfae5f09f3778eae7052bcc9d88ab7adb719630628362', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'value': 3326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0cfe', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:27:16.000Z'}}, {'blockNum': '0x52aa2b', 'uniqueId': '0x4eafe5b57037a49793ebaf600b200e23418a060c09ee25ae7700769288b58c69:log:17', 'hash': '0x4eafe5b57037a49793ebaf600b200e23418a060c09ee25ae7700769288b58c69', 'from': '0xa45f4146d4d954dc7f02aacbee7ffa0b0f6c3a37', 'to': '0xaebbb480af4c02408b584ade1ffa588005620a4b', 'value': 1026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0402', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:28:23.000Z'}}, {'blockNum': '0x52aaae', 'uniqueId': '0x82e77a22a7d50e92d4d4b19d011179e3cc713d7bd7ddde6f58e55e6c6428c493:log:0', 'hash': '0x82e77a22a7d50e92d4d4b19d011179e3cc713d7bd7ddde6f58e55e6c6428c493', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 12155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f7b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:55:43.000Z'}}, {'blockNum': '0x52aab2', 'uniqueId': '0xfcc3ce685aab9e600f91887b34457da9e5a6edeee216ebe992f3eb3f574cb328:log:0', 'hash': '0xfcc3ce685aab9e600f91887b34457da9e5a6edeee216ebe992f3eb3f574cb328', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xdc3a6bbc6aeee377e37ac25b81efca8ebab64118', 'value': 15200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3b60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:56:26.000Z'}}, {'blockNum': '0x52aab5', 'uniqueId': '0x695a4906c8ee46dd83029ea1c821366a6d94a68e300ac2f96f7ba31076bb06e9:log:11', 'hash': '0x695a4906c8ee46dd83029ea1c821366a6d94a68e300ac2f96f7ba31076bb06e9', 'from': '0x0cd62bd8995946435ce8669bdeb3819cee3a4697', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x293e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:57:11.000Z'}}, {'blockNum': '0x52aab5', 'uniqueId': '0xee5d005be2ad15e50104171cd06d6174d99752b22465c21704df2fcc1a825a19:log:92', 'hash': '0xee5d005be2ad15e50104171cd06d6174d99752b22465c21704df2fcc1a825a19', 'from': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f7b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:57:11.000Z'}}, {'blockNum': '0x52aabd', 'uniqueId': '0x0985562f5ac3216558c3e038aebbd242e9ab02ddcaf4167fb7521fb25abdbce5:log:12', 'hash': '0x0985562f5ac3216558c3e038aebbd242e9ab02ddcaf4167fb7521fb25abdbce5', 'from': '0xdc3a6bbc6aeee377e37ac25b81efca8ebab64118', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3b60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T21:59:06.000Z'}}, {'blockNum': '0x52ac0d', 'uniqueId': '0x552fe6f969a956cfb3ed50f2e67d807c4b60b7a84852a632f3c2ea41795e1e38:log:20', 'hash': '0x552fe6f969a956cfb3ed50f2e67d807c4b60b7a84852a632f3c2ea41795e1e38', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 34960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x8890', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:18:30.000Z'}}, {'blockNum': '0x52ac3c', 'uniqueId': '0xb90ad86affc0d38d521b573e55cd4627e3cc6078764c5cd424b4ca305bfa5572:log:14', 'hash': '0xb90ad86affc0d38d521b573e55cd4627e3cc6078764c5cd424b4ca305bfa5572', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x8890', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:29:12.000Z'}}, {'blockNum': '0x52ac61', 'uniqueId': '0xbb13dba07f5e0349394f8e07682b6459c2f530178892db837c31eb6e366d59bf:log:12', 'hash': '0xbb13dba07f5e0349394f8e07682b6459c2f530178892db837c31eb6e366d59bf', 'from': '0xe83c83ddafe9a7df4b56b446fe39d1b0500572de', 'to': '0xdbd3dae55fcceaf4c34828b24e41d318e46f233c', 'value': 996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03e4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:36:02.000Z'}}, {'blockNum': '0x52ac81', 'uniqueId': '0xc39bdfb81e6aae2e27bd1f5b8b6b21d940628f9b7cf7bbd3c9b84d0ce4945632:log:2', 'hash': '0xc39bdfb81e6aae2e27bd1f5b8b6b21d940628f9b7cf7bbd3c9b84d0ce4945632', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'value': 7283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1c73', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:41:49.000Z'}}, {'blockNum': '0x52aca2', 'uniqueId': '0xa4cbbbb5f0b9cc205b6956480098009ed24cb590fad4962155f14550c36cb5c0:log:35', 'hash': '0xa4cbbbb5f0b9cc205b6956480098009ed24cb590fad4962155f14550c36cb5c0', 'from': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2971', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-10T23:49:49.000Z'}}, {'blockNum': '0x52ad05', 'uniqueId': '0x29b2e8bed80ae791c36d858828bb08586939a762e21ce04be7a6edb1be30e0ba:log:3', 'hash': '0x29b2e8bed80ae791c36d858828bb08586939a762e21ce04be7a6edb1be30e0ba', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f67', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:15:26.000Z'}}, {'blockNum': '0x52ad1a', 'uniqueId': '0xd11b7769ff6ded4d83e4385d0a81ed1f6390e99ff744986b305862e1960dfe65:log:13', 'hash': '0xd11b7769ff6ded4d83e4385d0a81ed1f6390e99ff744986b305862e1960dfe65', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f67', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:19:13.000Z'}}, {'blockNum': '0x52ad2b', 'uniqueId': '0x87afb057b420c08063dfe24df0a50f476b3927d8101cd34d7ba4f0b2e12c5956:log:66', 'hash': '0x87afb057b420c08063dfe24df0a50f476b3927d8101cd34d7ba4f0b2e12c5956', 'from': '0xa23168b40f13dc04f7295a83c9d460f2129d1956', 'to': '0xf468710ed4971615fd3307ece6f86aba6d3ceb79', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x05dc', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:23:16.000Z'}}, {'blockNum': '0x52ad40', 'uniqueId': '0x98e7a1f8d0dd54d56efc87eff0f2b3c449212df214d9338b5f30ffbfa340734b:log:24', 'hash': '0x98e7a1f8d0dd54d56efc87eff0f2b3c449212df214d9338b5f30ffbfa340734b', 'from': '0x51f2127d75525f7f3d49466f7f31dd070ca81784', 'to': '0xbcf6cf12e69bc71ae24e3e41b66997dacd29bbc6', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x55f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:28:37.000Z'}}, {'blockNum': '0x52ad4b', 'uniqueId': '0x2e63cc61777154b38c4a62831812a66e9a7fb66825775435ea86988e725a0372:log:0', 'hash': '0x2e63cc61777154b38c4a62831812a66e9a7fb66825775435ea86988e725a0372', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 24655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x604f', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:30:31.000Z'}}, {'blockNum': '0x52ad55', 'uniqueId': '0xf09be9bbde5d53c8bcb72174436b39255db6dc33b097e281f21b54506982bdbd:log:64', 'hash': '0xf09be9bbde5d53c8bcb72174436b39255db6dc33b097e281f21b54506982bdbd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 18144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x46e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:33:26.000Z'}}, {'blockNum': '0x52ad68', 'uniqueId': '0x4417475b365a821ba144e230704930f98f6fd6456ec28b072a7055aa11ea1058:log:13', 'hash': '0x4417475b365a821ba144e230704930f98f6fd6456ec28b072a7055aa11ea1058', 'from': '0x38589df8ccb9ab95d0ed9780bbabcf11735cdc50', 'to': '0xae9df8903b214e2cc05616ab588b3169bc658091', 'value': 59130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe6fa', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:36:23.000Z'}}, {'blockNum': '0x52ad69', 'uniqueId': '0xf797b47270c56aa76cc690377e6b05f42da58601aae51f12857edf52a38ffe40:log:82', 'hash': '0xf797b47270c56aa76cc690377e6b05f42da58601aae51f12857edf52a38ffe40', 'from': '0xde8c43fdf50c517e0cc50677617238cd6d42a11c', 'to': '0x3d1fdf045ff9ae27545a17fe60ee07d3effd43fe', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01f4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:36:55.000Z'}}, {'blockNum': '0x52ad6b', 'uniqueId': '0x85ee8c87e06e3781eb1aa0c925296bef85f62fac4f328368710bddc36c6358c7:log:0', 'hash': '0x85ee8c87e06e3781eb1aa0c925296bef85f62fac4f328368710bddc36c6358c7', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 29097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x71a9', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:37:07.000Z'}}, {'blockNum': '0x52ad70', 'uniqueId': '0x95b7fcd3eade721948ee9b50b8f4e1ac2d882670fe5dfc548fffcdde5a9f961f:log:20', 'hash': '0x95b7fcd3eade721948ee9b50b8f4e1ac2d882670fe5dfc548fffcdde5a9f961f', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x46e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:39:07.000Z'}}, {'blockNum': '0x52ad70', 'uniqueId': '0xae62b063503c93be541e2af42c297612e12892d35686d59a4d6694da39e7c3a1:log:21', 'hash': '0xae62b063503c93be541e2af42c297612e12892d35686d59a4d6694da39e7c3a1', 'from': '0xbcf6cf12e69bc71ae24e3e41b66997dacd29bbc6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x55f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:39:07.000Z'}}, {'blockNum': '0x52ad70', 'uniqueId': '0x727e506e7c9787768d0bcdd6e95337017df3e52a72927d6395549b1f7f8d8d83:log:25', 'hash': '0x727e506e7c9787768d0bcdd6e95337017df3e52a72927d6395549b1f7f8d8d83', 'from': '0xae9df8903b214e2cc05616ab588b3169bc658091', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe6fa', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:39:07.000Z'}}, {'blockNum': '0x52ada3', 'uniqueId': '0x589beee5fdd04d4670305ba75c3b61429fbc0ff57d643f048cb6d53703f4cfba:log:28', 'hash': '0x589beee5fdd04d4670305ba75c3b61429fbc0ff57d643f048cb6d53703f4cfba', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xd1f8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:49:02.000Z'}}, {'blockNum': '0x52ada5', 'uniqueId': '0x6f5d501528be1032b7bf4b5246b3817d2f9a4526e31723dc8a9c2f99a4ffd021:log:1', 'hash': '0x6f5d501528be1032b7bf4b5246b3817d2f9a4526e31723dc8a9c2f99a4ffd021', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x738472d33bce28c9d8b6178584cd884b1486200f', 'value': 2698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0a8a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:49:31.000Z'}}, {'blockNum': '0x52adac', 'uniqueId': '0x2f33a7f4b3b636f9b9e761019581f156e76083d2685ffd2ee93b07c4fb3180c9:log:18', 'hash': '0x2f33a7f4b3b636f9b9e761019581f156e76083d2685ffd2ee93b07c4fb3180c9', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'value': 14708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3974', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:52:54.000Z'}}, {'blockNum': '0x52adac', 'uniqueId': '0xba7141eee9666082e2a17ea765d52c1e7ff806a304d15b32800ad091eeef21f7:log:46', 'hash': '0xba7141eee9666082e2a17ea765d52c1e7ff806a304d15b32800ad091eeef21f7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0141', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:52:54.000Z'}}, {'blockNum': '0x52adb2', 'uniqueId': '0x328e89a5362fb5e0c6470ad9aa347dc142c5087d926aecc4b30b20070cc9b918:log:21', 'hash': '0x328e89a5362fb5e0c6470ad9aa347dc142c5087d926aecc4b30b20070cc9b918', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'value': 5162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x142a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:53:46.000Z'}}, {'blockNum': '0x52adb7', 'uniqueId': '0x133bc16219aa39d77b2a0706cbfe4752882e297d6b9ff7a09ea0d19ab0eaea67:log:8', 'hash': '0x133bc16219aa39d77b2a0706cbfe4752882e297d6b9ff7a09ea0d19ab0eaea67', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 12878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x324e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:54:21.000Z'}}, {'blockNum': '0x52adb7', 'uniqueId': '0x3048434bff4fa6842e9bda0d3d689968244d644d21bcb36d36618f072e5c6c1a:log:48', 'hash': '0x3048434bff4fa6842e9bda0d3d689968244d644d21bcb36d36618f072e5c6c1a', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f89', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:54:21.000Z'}}, {'blockNum': '0x52adba', 'uniqueId': '0x3c0abcbed9150b0123a9539f88638deaec8defcc584948b520282a8077d216cc:log:48', 'hash': '0x3c0abcbed9150b0123a9539f88638deaec8defcc584948b520282a8077d216cc', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'value': 2886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0b46', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:55:53.000Z'}}, {'blockNum': '0x52adc3', 'uniqueId': '0xda478bfeb533f6c8d96134cc8a4f8794b04ada6118e5f6839ee3a6abe6cdc1b5:log:73', 'hash': '0xda478bfeb533f6c8d96134cc8a4f8794b04ada6118e5f6839ee3a6abe6cdc1b5', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'value': 5598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x15de', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:58:34.000Z'}}, {'blockNum': '0x52adc4', 'uniqueId': '0x81256cfef97eac703fefdeadf2ef9709232537919ab7fbccc438c8fcac91dc0b:log:24', 'hash': '0x81256cfef97eac703fefdeadf2ef9709232537919ab7fbccc438c8fcac91dc0b', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x324e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:59:14.000Z'}}, {'blockNum': '0x52adc4', 'uniqueId': '0x0068972deedb3655503c9008fc84c257a98e70380d6fefd9810781b6e72e9d2d:log:25', 'hash': '0x0068972deedb3655503c9008fc84c257a98e70380d6fefd9810781b6e72e9d2d', 'from': '0x738472d33bce28c9d8b6178584cd884b1486200f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x157a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:59:14.000Z'}}, {'blockNum': '0x52adc4', 'uniqueId': '0x4f120fccc904d27d066413b851a35505201b4d4e70c6b5fedaaf3bec048dd085:log:30', 'hash': '0x4f120fccc904d27d066413b851a35505201b4d4e70c6b5fedaaf3bec048dd085', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f89', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:59:14.000Z'}}, {'blockNum': '0x52adc4', 'uniqueId': '0xdc7e6a0a1f9e3fa8dc01de3a092cd3e6943b8cab26d01cdf67c7c4c80649e3b7:log:36', 'hash': '0xdc7e6a0a1f9e3fa8dc01de3a092cd3e6943b8cab26d01cdf67c7c4c80649e3b7', 'from': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4d9e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T00:59:14.000Z'}}, {'blockNum': '0x52add0', 'uniqueId': '0xd1c622074f18dc28042b72f5515c046259d370b1659fbeeffeb790b80915f663:log:0', 'hash': '0xd1c622074f18dc28042b72f5515c046259d370b1659fbeeffeb790b80915f663', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 27804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x6c9c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:01:43.000Z'}}, {'blockNum': '0x52add1', 'uniqueId': '0x982c50396e2741c3da12e6b235b5e7b6ff151c632f4d12eb5d6172a213c8307b:log:1', 'hash': '0x982c50396e2741c3da12e6b235b5e7b6ff151c632f4d12eb5d6172a213c8307b', 'from': '0x9a2d163ab40f88c625fd475e807bbc3556566f80', 'to': '0x306b16a86776d9917883ba666ad0fc4b4310addf', 'value': 17200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4330', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:01:53.000Z'}}, {'blockNum': '0x52add4', 'uniqueId': '0x06ad9e5f40ef33c5ee3974e7ac41a7d48bb9b22f864b47b862cd9e9b2b82a703:log:9', 'hash': '0x06ad9e5f40ef33c5ee3974e7ac41a7d48bb9b22f864b47b862cd9e9b2b82a703', 'from': '0x306b16a86776d9917883ba666ad0fc4b4310addf', 'to': '0x4b48e8318427bdb8b1d0c8a1bba3956ccf424422', 'value': 17200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4330', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:02:50.000Z'}}, {'blockNum': '0x52add4', 'uniqueId': '0xc2cdef9f0a0eb935e7a3064b4197ce01bc494e586f7188984b0c07d19e41999d:log:43', 'hash': '0xc2cdef9f0a0eb935e7a3064b4197ce01bc494e586f7188984b0c07d19e41999d', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0cc6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:02:50.000Z'}}, {'blockNum': '0x52add6', 'uniqueId': '0xacea7379aacfa4d690eb81b3752c3ca9848f042123cb586daccb818bb8e9fb4a:log:6', 'hash': '0xacea7379aacfa4d690eb81b3752c3ca9848f042123cb586daccb818bb8e9fb4a', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 2430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x097e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:03:16.000Z'}}, {'blockNum': '0x52add8', 'uniqueId': '0xca3557a322e383f657d4fb7e103494e978331a8038a63eb7770ca32b1ef2076c:log:15', 'hash': '0xca3557a322e383f657d4fb7e103494e978331a8038a63eb7770ca32b1ef2076c', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0905', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:03:33.000Z'}}, {'blockNum': '0x52addd', 'uniqueId': '0xd8305b9c61427a5db04232d113c78de9b217f17f64d68df867c7a23fa328e746:log:0', 'hash': '0xd8305b9c61427a5db04232d113c78de9b217f17f64d68df867c7a23fa328e746', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'value': 18839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4997', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:05:27.000Z'}}, {'blockNum': '0x52addf', 'uniqueId': '0x6e79b2f44f3d45b4c2873e269c698453158d9584b28b7f71e2ded2cc65cf334c:log:10', 'hash': '0x6e79b2f44f3d45b4c2873e269c698453158d9584b28b7f71e2ded2cc65cf334c', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 438194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x06afb2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:05:56.000Z'}}, {'blockNum': '0x52addf', 'uniqueId': '0x20fb325d2e6f2743f299cb79082ead64ae8b0a41ee552e31f40eee4464c7651d:log:57', 'hash': '0x20fb325d2e6f2743f299cb79082ead64ae8b0a41ee552e31f40eee4464c7651d', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0987', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:05:56.000Z'}}, {'blockNum': '0x52ade2', 'uniqueId': '0x96f66a8e640bf9d5bcc5964a358162e2a5af051ef4f6c616fa90e7b524219798:log:4', 'hash': '0x96f66a8e640bf9d5bcc5964a358162e2a5af051ef4f6c616fa90e7b524219798', 'from': '0xa30d8157911ef23c46c0eb71889efe6a648a41f7', 'to': '0x50dd14c11eaedc49651d9c0fd5f3f81500adc463', 'value': 481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01e1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:06:47.000Z'}}, {'blockNum': '0x52ade2', 'uniqueId': '0x6a74487c5291d81046eb087b0cabd4b1bfd1e441094ab93b2391c6238c8c514c:log:5', 'hash': '0x6a74487c5291d81046eb087b0cabd4b1bfd1e441094ab93b2391c6238c8c514c', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2fa1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:06:47.000Z'}}, {'blockNum': '0x52adee', 'uniqueId': '0x0c063167ec0a828d186da3f4d13edd4f76cc0fa7aebfeb6e28bd8a1ecb5094c4:log:28', 'hash': '0x0c063167ec0a828d186da3f4d13edd4f76cc0fa7aebfeb6e28bd8a1ecb5094c4', 'from': '0x4b48e8318427bdb8b1d0c8a1bba3956ccf424422', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4330', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:01.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xbab4159b0776c9552a37d7b88bf8277bce04999f00adb02c119e4059b40d9742:log:1', 'hash': '0xbab4159b0776c9552a37d7b88bf8277bce04999f00adb02c119e4059b40d9742', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2093', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xc456921eb426edb6e0329070f4cb1e0e5872d4ff601ff2a0a972de91fc4d335c:log:2', 'hash': '0xc456921eb426edb6e0329070f4cb1e0e5872d4ff601ff2a0a972de91fc4d335c', 'from': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4997', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xc964b0f895f04e4b0e26b2830355e15ddaba24f602de39dd9f60a4038558d7f5:log:3', 'hash': '0xc964b0f895f04e4b0e26b2830355e15ddaba24f602de39dd9f60a4038558d7f5', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x6c9c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0x854989a512df332f8fb25ae253238a1c7bd0dc2d25def548e24f57fe6c2909da:log:5', 'hash': '0x854989a512df332f8fb25ae253238a1c7bd0dc2d25def548e24f57fe6c2909da', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3903', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xde348d25ec810b71280c62e00a2795c62ffda9b7ec7d80090a98233cc8d4dd8f:log:6', 'hash': '0xde348d25ec810b71280c62e00a2795c62ffda9b7ec7d80090a98233cc8d4dd8f', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 438194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x06afb2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xcb818cbcfa7d3d2104a5322d4175515ea4e9000c4e6738165ea0cccd82b7fa5c:log:9', 'hash': '0xcb818cbcfa7d3d2104a5322d4175515ea4e9000c4e6738165ea0cccd82b7fa5c', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2fa1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52adef', 'uniqueId': '0xe8a301d8ab701cc119da7a6b76102f1b6486ecd694145fc7355275490dd60e82:log:19', 'hash': '0xe8a301d8ab701cc119da7a6b76102f1b6486ecd694145fc7355275490dd60e82', 'from': '0x29cb43c6377d7752cf5bdbe04c0fafe22c3a6a0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x15de', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:09:04.000Z'}}, {'blockNum': '0x52ae02', 'uniqueId': '0xc798e0be6edfc79eb1c7bb5a84d35a4dbd34ddd90942a17ae5eab5298ef93777:log:86', 'hash': '0xc798e0be6edfc79eb1c7bb5a84d35a4dbd34ddd90942a17ae5eab5298ef93777', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3d2bd1d72fc974dc016d6f8ff09c17eee3cee4c5', 'value': 6778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1a7a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:13:23.000Z'}}, {'blockNum': '0x52ae09', 'uniqueId': '0xb55ca07bbe016070399ee1fbd8f3a4bd12ff7b70eaa5dbc727506a8e9a1e837a:log:1', 'hash': '0xb55ca07bbe016070399ee1fbd8f3a4bd12ff7b70eaa5dbc727506a8e9a1e837a', 'from': '0xa30d8157911ef23c46c0eb71889efe6a648a41f7', 'to': '0x56d372a87a657bef8d544dc4470fd80f96e4ba42', 'value': 5739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x166b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:15:03.000Z'}}, {'blockNum': '0x52ae13', 'uniqueId': '0xf1dc3bf9c9d527deb48b779b7604e182a229e77ea1406d1ede586022eb7ccd75:log:0', 'hash': '0xf1dc3bf9c9d527deb48b779b7604e182a229e77ea1406d1ede586022eb7ccd75', 'from': '0x4fc9395c7e84ae1380b166c93fa59ef358b50a7f', 'to': '0xc237d64de3f2c76357cc0570bdfed904380b8c75', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:17:02.000Z'}}, {'blockNum': '0x52ae1e', 'uniqueId': '0xffcf773c3bad0d03c382fc8357cfbce164b462262f82c07fbcecea2bf7a06a0f:log:47', 'hash': '0xffcf773c3bad0d03c382fc8357cfbce164b462262f82c07fbcecea2bf7a06a0f', 'from': '0xc237d64de3f2c76357cc0570bdfed904380b8c75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:19:46.000Z'}}, {'blockNum': '0x52ae1e', 'uniqueId': '0x5c2d4084528edc2760811219208af9ff3503d2d3d16debfa85e7a6e9c5253890:log:48', 'hash': '0x5c2d4084528edc2760811219208af9ff3503d2d3d16debfa85e7a6e9c5253890', 'from': '0x56d372a87a657bef8d544dc4470fd80f96e4ba42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x166b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:19:46.000Z'}}, {'blockNum': '0x52ae3a', 'uniqueId': '0x9f3e0bd0fdbab47bb10f135ec18b5016ae4f82c24f0251bd3555e2dd61c60204:log:8', 'hash': '0x9f3e0bd0fdbab47bb10f135ec18b5016ae4f82c24f0251bd3555e2dd61c60204', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 295423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0481ff', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:26:06.000Z'}}, {'blockNum': '0x52ae44', 'uniqueId': '0xa36b5cd06cba0634deaf68a9d9de474a1101b60daf7d71a0f196b41135be8a07:log:14', 'hash': '0xa36b5cd06cba0634deaf68a9d9de474a1101b60daf7d71a0f196b41135be8a07', 'from': '0xc4e541cfcae8f91f1f9acc8f6b87f0704024bc3b', 'to': '0xb5a2f6ba15da78f773763eccf3076ed69e2e3402', 'value': 432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01b0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:28:13.000Z'}}, {'blockNum': '0x52ae45', 'uniqueId': '0x70b7b6ef5b47b399598864ba371d0def48c82799918d177fa2d1122a674d244c:log:7', 'hash': '0x70b7b6ef5b47b399598864ba371d0def48c82799918d177fa2d1122a674d244c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbee486035282c27a5ed93a28d9f9a9689f1a829e', 'value': 66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x42', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:28:31.000Z'}}, {'blockNum': '0x52ae47', 'uniqueId': '0x00fefe2caaacbb13af0ab08fd06993dd096a18bf65adc00b534240d7c38d2127:log:105', 'hash': '0x00fefe2caaacbb13af0ab08fd06993dd096a18bf65adc00b534240d7c38d2127', 'from': '0x3d2bd1d72fc974dc016d6f8ff09c17eee3cee4c5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1a7a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:28:56.000Z'}}, {'blockNum': '0x52ae5d', 'uniqueId': '0xa05fc87e721b3e89bd11fc26f170ec602456d6560835dcb05e78fec1f7400ad3:log:3', 'hash': '0xa05fc87e721b3e89bd11fc26f170ec602456d6560835dcb05e78fec1f7400ad3', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 295423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0481ff', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:32:35.000Z'}}, {'blockNum': '0x52ae5e', 'uniqueId': '0xbf35b6a33e1646ddde3b5156c9ba4dd2b36bf7d44a8fe84e7aba0f10e1eeab85:log:4', 'hash': '0xbf35b6a33e1646ddde3b5156c9ba4dd2b36bf7d44a8fe84e7aba0f10e1eeab85', 'from': '0xc24f574d6853f6f6a31c19d468a8c1b3f31c0e54', 'to': '0x207493711f59e6e469923691784299648416723d', 'value': 2996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0bb4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:32:47.000Z'}}, {'blockNum': '0x52ae66', 'uniqueId': '0xde1ef74e45b89cf549d9cfb20f05783b504fe8ff7a266153cba63996bf950115:log:3', 'hash': '0xde1ef74e45b89cf549d9cfb20f05783b504fe8ff7a266153cba63996bf950115', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 12182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f96', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:35:04.000Z'}}, {'blockNum': '0x52ae89', 'uniqueId': '0x0efdfe25cd81f01d33adcd53bc6f835d3a0639593e853c0386e24e7d23997045:log:4', 'hash': '0x0efdfe25cd81f01d33adcd53bc6f835d3a0639593e853c0386e24e7d23997045', 'from': '0xed93d3abf4e52d3cf7273ed4c7ea6f17ee876b99', 'to': '0xbbd4a624a58cf6b07e1f53acb5cd8ef86c777cc0', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:42:19.000Z'}}, {'blockNum': '0x52ae90', 'uniqueId': '0x51ec9d66edfcb2a22dce25e5245f687eda1ba9c7ec373eb32e23c3542a1ca825:log:1', 'hash': '0x51ec9d66edfcb2a22dce25e5245f687eda1ba9c7ec373eb32e23c3542a1ca825', 'from': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f96', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:44:13.000Z'}}, {'blockNum': '0x52aea4', 'uniqueId': '0x7e578f9ab84c1d2ce86b6f7dc3cf9f1a785aaa73e4aae467ca839b63d2ed6c5c:log:44', 'hash': '0x7e578f9ab84c1d2ce86b6f7dc3cf9f1a785aaa73e4aae467ca839b63d2ed6c5c', 'from': '0xbbd4a624a58cf6b07e1f53acb5cd8ef86c777cc0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:49:06.000Z'}}, {'blockNum': '0x52aea7', 'uniqueId': '0x47a6f4a3e6e09d89e3c664e3d3113d5fd5c7cb37ea970f5c1d2707e08dc81f86:log:2', 'hash': '0x47a6f4a3e6e09d89e3c664e3d3113d5fd5c7cb37ea970f5c1d2707e08dc81f86', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f82', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:49:46.000Z'}}, {'blockNum': '0x52aeb0', 'uniqueId': '0xac92aa0c2e90e2f1799ee8c828e2126a3788725aa27fe400130f1fc42f431e19:log:121', 'hash': '0xac92aa0c2e90e2f1799ee8c828e2126a3788725aa27fe400130f1fc42f431e19', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x086a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:51:26.000Z'}}, {'blockNum': '0x52aeb9', 'uniqueId': '0xb8fdf3d21cc9da7102f49bd92c12dbfe30da6cf46c01f1e4f32159f442f87b19:log:50', 'hash': '0xb8fdf3d21cc9da7102f49bd92c12dbfe30da6cf46c01f1e4f32159f442f87b19', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0663', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:53:28.000Z'}}, {'blockNum': '0x52aec9', 'uniqueId': '0xf2f22f56014424a98f3ad0e487dc98740fbb5fe63b845b5c8ead6d1fcf8cf362:log:2', 'hash': '0xf2f22f56014424a98f3ad0e487dc98740fbb5fe63b845b5c8ead6d1fcf8cf362', 'from': '0xc0cbd93be551016e000482a32c91402af64e587d', 'to': '0x72dafbe65ba160b840da3d58fb6395da94e74599', 'value': 837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0345', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:57:10.000Z'}}, {'blockNum': '0x52aecb', 'uniqueId': '0xb21680dddb23f431e40db3df72287a2330dae111f8f5a4f348b2a4c1f0972cfa:log:0', 'hash': '0xb21680dddb23f431e40db3df72287a2330dae111f8f5a4f348b2a4c1f0972cfa', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'value': 4413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x113d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:57:33.000Z'}}, {'blockNum': '0x52aed3', 'uniqueId': '0x5ceb0bf3de644341994d86030acdc87fd0ae2c1f0a0de93e8e8e83e9bbacbd9b:log:26', 'hash': '0x5ceb0bf3de644341994d86030acdc87fd0ae2c1f0a0de93e8e8e83e9bbacbd9b', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0ecd', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:59:26.000Z'}}, {'blockNum': '0x52aed3', 'uniqueId': '0x5f3a7df98e618e280c3ea72e9a1f60f5f667121e02b369c012e9a03e4451393e:log:27', 'hash': '0x5f3a7df98e618e280c3ea72e9a1f60f5f667121e02b369c012e9a03e4451393e', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2f82', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T01:59:26.000Z'}}, {'blockNum': '0x52aeeb', 'uniqueId': '0xd11f8496ca6fc4fff5d03b7586be73aa9b4e9a8dffd7c7923705d78ac6f3c826:log:1', 'hash': '0xd11f8496ca6fc4fff5d03b7586be73aa9b4e9a8dffd7c7923705d78ac6f3c826', 'from': '0xf4a14010acbe82428516415a117b157b59cc6bb3', 'to': '0x0de9aae7d237afacfac7bc6a9c9898a65f23600e', 'value': 9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x09', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:05:23.000Z'}}, {'blockNum': '0x52aefd', 'uniqueId': '0xb874305933f227bbd285bc0440cd214e60c6c441616c619421979d7124b83805:log:17', 'hash': '0xb874305933f227bbd285bc0440cd214e60c6c441616c619421979d7124b83805', 'from': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x113d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:09:07.000Z'}}, {'blockNum': '0x52aeff', 'uniqueId': '0x97083e1c36e209fcb7ee30984a161504eea209bca0a920fc43580da2fa78af1b:log:13', 'hash': '0x97083e1c36e209fcb7ee30984a161504eea209bca0a920fc43580da2fa78af1b', 'from': '0xf4a14010acbe82428516415a117b157b59cc6bb3', 'to': '0x0de9aae7d237afacfac7bc6a9c9898a65f23600e', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:09:26.000Z'}}, {'blockNum': '0x52af07', 'uniqueId': '0x9b0b558a672613f5db1f58a952ca9bb8806fe304316570c0597431d40156d5f0:log:0', 'hash': '0x9b0b558a672613f5db1f58a952ca9bb8806fe304316570c0597431d40156d5f0', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'value': 2008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x07d8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:10:58.000Z'}}, {'blockNum': '0x52af26', 'uniqueId': '0x9bd33f23d32cae57b607677ac83cd8e303af431af5e77180528d54b74c536c71:log:28', 'hash': '0x9bd33f23d32cae57b607677ac83cd8e303af431af5e77180528d54b74c536c71', 'from': '0x1674f04b3aaa79efbee513acd3a8155a24affea8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x131e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:19:10.000Z'}}, {'blockNum': '0x52af30', 'uniqueId': '0xa403f1532b3e2af8c65a6c159cce6fe49acf2c93a564ac3b99abd4c713da40d1:log:2', 'hash': '0xa403f1532b3e2af8c65a6c159cce6fe49acf2c93a564ac3b99abd4c713da40d1', 'from': '0xf4a14010acbe82428516415a117b157b59cc6bb3', 'to': '0x98aa60f08f8f2f9c30fddb73499f44a11f37e0dc', 'value': 10837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2a55', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:21:26.000Z'}}, {'blockNum': '0x52af51', 'uniqueId': '0xaf56c343d6e0eb3685675c21b740af3f3658c4242569da77a4e4904b6b017713:log:41', 'hash': '0xaf56c343d6e0eb3685675c21b740af3f3658c4242569da77a4e4904b6b017713', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x06af', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:29:04.000Z'}}, {'blockNum': '0x52af51', 'uniqueId': '0x04ac9d69e5ae63a1ecaede443dad0d4ca7449e05d1d51f61ac4be58c58a2c786:log:56', 'hash': '0x04ac9d69e5ae63a1ecaede443dad0d4ca7449e05d1d51f61ac4be58c58a2c786', 'from': '0x98aa60f08f8f2f9c30fddb73499f44a11f37e0dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2a55', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:29:04.000Z'}}, {'blockNum': '0x52af59', 'uniqueId': '0x462bec08374a0d5b63b747567f0a84cb8d8f1ed0689da508b79b099c63c16ce1:log:109', 'hash': '0x462bec08374a0d5b63b747567f0a84cb8d8f1ed0689da508b79b099c63c16ce1', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x2cb767dee9d20dbe7c7d2f576be2869db42ee02d', 'value': 6345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x18c9', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:30:49.000Z'}}, {'blockNum': '0x52af75', 'uniqueId': '0x8c9597349413a61c0313a2cc8a5e4f7973bb853f326f592f3d83cc629d73368d:log:7', 'hash': '0x8c9597349413a61c0313a2cc8a5e4f7973bb853f326f592f3d83cc629d73368d', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'value': 39060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9894', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:39:11.000Z'}}, {'blockNum': '0x52af75', 'uniqueId': '0x5e91682cf13d54d53c9964902e6bbdbc17b15a71cd59b37ed291760384262c31:log:18', 'hash': '0x5e91682cf13d54d53c9964902e6bbdbc17b15a71cd59b37ed291760384262c31', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7bd5284425879fdb22fce094f981d0efb9f8e22b', 'value': 49888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc2e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:39:11.000Z'}}, {'blockNum': '0x52af75', 'uniqueId': '0x512a2219c00a76b01bdfdbd69282c206cab53fec54012162460c06445e96fd77:log:46', 'hash': '0x512a2219c00a76b01bdfdbd69282c206cab53fec54012162460c06445e96fd77', 'from': '0x2cb767dee9d20dbe7c7d2f576be2869db42ee02d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x18c9', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:39:11.000Z'}}, {'blockNum': '0x52af7b', 'uniqueId': '0xbb91a727f2225a892fa7e809a391035b6fec55ad6980950327d26cc8729fb6b8:log:10', 'hash': '0xbb91a727f2225a892fa7e809a391035b6fec55ad6980950327d26cc8729fb6b8', 'from': '0x5664d5bd18eeacd3ed17e9252bbb4a9883ff5524', 'to': '0xe664fb39398c33bcca9e1d9e12c31975d4763eac', 'value': 430656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x069240', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:41:05.000Z'}}, {'blockNum': '0x52af7d', 'uniqueId': '0xf9d6a5b1b5065aadd1976e9bbf80d125923b6076d85d22c4f2b31d68c2f5201b:log:107', 'hash': '0xf9d6a5b1b5065aadd1976e9bbf80d125923b6076d85d22c4f2b31d68c2f5201b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 31684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x7bc4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:42:01.000Z'}}, {'blockNum': '0x52af81', 'uniqueId': '0x3de2cb26e8e4028d55ddfe36b843331ad7b3e1f4889756396bad198226fc021b:log:68', 'hash': '0x3de2cb26e8e4028d55ddfe36b843331ad7b3e1f4889756396bad198226fc021b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb70f757b44ce03669f64170076e6909fcdf27593', 'value': 9683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x25d3', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:43:06.000Z'}}, {'blockNum': '0x52af98', 'uniqueId': '0x89c62c809972ad47a8cb7747dfa1d08c17c56381d6489a6242e48b3a2797cd96:log:42', 'hash': '0x89c62c809972ad47a8cb7747dfa1d08c17c56381d6489a6242e48b3a2797cd96', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x7bc4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:49:11.000Z'}}, {'blockNum': '0x52af98', 'uniqueId': '0x8b122566341cce78964c0b23ec636224c1c9dff1798e39730f67b19abee0be35:log:45', 'hash': '0x8b122566341cce78964c0b23ec636224c1c9dff1798e39730f67b19abee0be35', 'from': '0xe664fb39398c33bcca9e1d9e12c31975d4763eac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 430656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x069240', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:49:11.000Z'}}, {'blockNum': '0x52af98', 'uniqueId': '0x03ef456671fa7f9ac1fc9aabfd8e8dc71caa614b7403692b798367f0de0b187f:log:46', 'hash': '0x03ef456671fa7f9ac1fc9aabfd8e8dc71caa614b7403692b798367f0de0b187f', 'from': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9894', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:49:11.000Z'}}, {'blockNum': '0x52afa3', 'uniqueId': '0x4e89c17b08ef7e121def54e70c2e37703ba0a29e682b88867ae6d2792701b3ca:log:1', 'hash': '0x4e89c17b08ef7e121def54e70c2e37703ba0a29e682b88867ae6d2792701b3ca', 'from': '0x7bd5284425879fdb22fce094f981d0efb9f8e22b', 'to': '0xc0181f4f690ee8b4ffa8745a0f5ceac14690afd5', 'value': 49888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc2e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T02:52:01.000Z'}}, {'blockNum': '0x52afcd', 'uniqueId': '0x534f98aadb71845c543e56905a07a1a762e695cabee7fb4b5c6dbf56996e54e0:log:1', 'hash': '0x534f98aadb71845c543e56905a07a1a762e695cabee7fb4b5c6dbf56996e54e0', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'value': 13483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x34ab', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:01:51.000Z'}}, {'blockNum': '0x52afd7', 'uniqueId': '0x5cc30af9b932f1bd0e72cec9380da6034da664fc39d00511252ec9555ce857d8:log:0', 'hash': '0x5cc30af9b932f1bd0e72cec9380da6034da664fc39d00511252ec9555ce857d8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 209171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x033113', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:03:36.000Z'}}, {'blockNum': '0x52afe8', 'uniqueId': '0x7739bca6165b1046ea0b8a04d3503be19e4646ebcfccaa5681f0bcfab918a89f:log:2', 'hash': '0x7739bca6165b1046ea0b8a04d3503be19e4646ebcfccaa5681f0bcfab918a89f', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 209171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x033113', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:07:09.000Z'}}, {'blockNum': '0x52aff1', 'uniqueId': '0x76aaf272280e417e241746daf52c6c7c138b79c14732d1299a565b859b2fb4a0:log:27', 'hash': '0x76aaf272280e417e241746daf52c6c7c138b79c14732d1299a565b859b2fb4a0', 'from': '0xa21c33efb8a098c160f57fecd9caaadb2f0fae04', 'to': '0x3d71d5a5ab3c148944d581e3a57cf4851e00174e', 'value': 1999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x07cf', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:09:29.000Z'}}, {'blockNum': '0x52aff1', 'uniqueId': '0x4ab6e439ced2557710e8e16501092cc1091fc7c789e678a5ee51daa310d1b511:log:71', 'hash': '0x4ab6e439ced2557710e8e16501092cc1091fc7c789e678a5ee51daa310d1b511', 'from': '0x598a2179b0273219fe72515666c9e57e26b4b7fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x34ab', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:09:29.000Z'}}, {'blockNum': '0x52aff1', 'uniqueId': '0xe8d8cf792c4e40f9ea1ae70bd59c45bcaf104905c4d4b9ee14a3db48dcbde71c:log:76', 'hash': '0xe8d8cf792c4e40f9ea1ae70bd59c45bcaf104905c4d4b9ee14a3db48dcbde71c', 'from': '0xc0181f4f690ee8b4ffa8745a0f5ceac14690afd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc2e0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:09:29.000Z'}}, {'blockNum': '0x52b001', 'uniqueId': '0x4e8ea7f1be5b4a5a8b9a833f6c381990909ec9ee0eb5608b6ec270335b46cba6:log:4', 'hash': '0x4e8ea7f1be5b4a5a8b9a833f6c381990909ec9ee0eb5608b6ec270335b46cba6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 824828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0c95fc', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:13:04.000Z'}}, {'blockNum': '0x52b01a', 'uniqueId': '0x84ca50e46d707edebe927a5ff34596b64c86f7cf18e72af1ff4eb08677b40f94:log:10', 'hash': '0x84ca50e46d707edebe927a5ff34596b64c86f7cf18e72af1ff4eb08677b40f94', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x6215fb37fe93bf9b4e3280dfd27de1e0f549b061', 'value': 17960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4628', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:18:09.000Z'}}, {'blockNum': '0x52b028', 'uniqueId': '0x4fc65efcf260fe10cc40088bb35b6922d8a6d3db7ee737020f301179d3d2e921:log:22', 'hash': '0x4fc65efcf260fe10cc40088bb35b6922d8a6d3db7ee737020f301179d3d2e921', 'from': '0xdbd3dae55fcceaf4c34828b24e41d318e46f233c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03e4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:20:30.000Z'}}, {'blockNum': '0x52b055', 'uniqueId': '0x574043cb96c9ad8296d9c074df721a105c4a77380d07e5f5bb73305b6066b567:log:142', 'hash': '0x574043cb96c9ad8296d9c074df721a105c4a77380d07e5f5bb73305b6066b567', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0cbe39bb60bfa242c77c562d9173ea112463325e', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x88', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T03:31:59.000Z'}}, {'blockNum': '0x52b0de', 'uniqueId': '0x907128c7c24ae97366c122de7a09255524b8a38aa6e7fc065cd86a8e5572625c:log:8', 'hash': '0x907128c7c24ae97366c122de7a09255524b8a38aa6e7fc065cd86a8e5572625c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x848b748fa05dada18f8a379885943ef65de02e9e', 'value': 129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x81', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:03:29.000Z'}}, {'blockNum': '0x52b0f0', 'uniqueId': '0x87d80cc4186e71f82de8d469156fb4f4317c6867566f7ab6935b1edb799be7c9:log:109', 'hash': '0x87d80cc4186e71f82de8d469156fb4f4317c6867566f7ab6935b1edb799be7c9', 'from': '0x6215fb37fe93bf9b4e3280dfd27de1e0f549b061', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 17960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4628', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:07:53.000Z'}}, {'blockNum': '0x52b107', 'uniqueId': '0x91ce52551e7c685aafb13b8fd6a089eb51c53e33f72f2366fc4353dae3c8c9f0:log:8', 'hash': '0x91ce52551e7c685aafb13b8fd6a089eb51c53e33f72f2366fc4353dae3c8c9f0', 'from': '0xe9fc19bb8436f7f3002d1cdc2f06505a5e8446cc', 'to': '0x7af172fc15896cdc5ac9dc80e84459e078d970ab', 'value': 213356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03416c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:14:33.000Z'}}, {'blockNum': '0x52b117', 'uniqueId': '0x1d7af10fed8e15b228415445bc4923e88b1a76ab8712bebeec96cae93ee2c27f:log:17', 'hash': '0x1d7af10fed8e15b228415445bc4923e88b1a76ab8712bebeec96cae93ee2c27f', 'from': '0x7af172fc15896cdc5ac9dc80e84459e078d970ab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 213356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03416c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:19:05.000Z'}}, {'blockNum': '0x52b130', 'uniqueId': '0xe6419b939cee83c5a2e1c47fe877bf88f871258d2f1230c92cc7c0836e45f47b:log:31', 'hash': '0xe6419b939cee83c5a2e1c47fe877bf88f871258d2f1230c92cc7c0836e45f47b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x7bebb0b91fa4b12bf566fec51358cc529e06d56b', 'value': 6064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x17b0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:25:30.000Z'}}, {'blockNum': '0x52b142', 'uniqueId': '0xf60e024899d9e90d63f8ad844a4eca8efac60c6a920ae20883a879b5f62ed5bc:log:47', 'hash': '0xf60e024899d9e90d63f8ad844a4eca8efac60c6a920ae20883a879b5f62ed5bc', 'from': '0x7bebb0b91fa4b12bf566fec51358cc529e06d56b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x17ba', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:29:55.000Z'}}, {'blockNum': '0x52b149', 'uniqueId': '0xc1cf4986cfeefae424618e7ec0c455c31217e25c779256f16d8e8b3e614ca504:log:10', 'hash': '0xc1cf4986cfeefae424618e7ec0c455c31217e25c779256f16d8e8b3e614ca504', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x637acc2fb43a1fc972715f732e99c1866a17102f', 'value': 949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03b5', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:32:42.000Z'}}, {'blockNum': '0x52b14a', 'uniqueId': '0xbc63dc19d6ea865ba3dc839584b1502cdc08f96d59bdfbe27bb72d3d0f836946:log:18', 'hash': '0xbc63dc19d6ea865ba3dc839584b1502cdc08f96d59bdfbe27bb72d3d0f836946', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0c0f', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:32:52.000Z'}}, {'blockNum': '0x52b14d', 'uniqueId': '0x1d907e32fec4e8f924446508c3033e53186c714742b6d4120671888a6c2dcab8:log:16', 'hash': '0x1d907e32fec4e8f924446508c3033e53186c714742b6d4120671888a6c2dcab8', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 12206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2fae', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:34:15.000Z'}}, {'blockNum': '0x52b14e', 'uniqueId': '0xaa0cf62c291a301a538daf714b3ee2f52862cd315c01b3aee1e571ed713cb86b:log:117', 'hash': '0xaa0cf62c291a301a538daf714b3ee2f52862cd315c01b3aee1e571ed713cb86b', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 279374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x04434e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:34:20.000Z'}}, {'blockNum': '0x52b152', 'uniqueId': '0x2fdf75f16abd6724e8d9fa988d4cae493d9e4651808f1065bf44b829b7164f52:log:7', 'hash': '0x2fdf75f16abd6724e8d9fa988d4cae493d9e4651808f1065bf44b829b7164f52', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3552c54d983334ac3679f1f62b5d282c23e3b6ff', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x33', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:35:47.000Z'}}, {'blockNum': '0x52b15e', 'uniqueId': '0x8d3cdaba5794dd0852f47c5dbffa75225328865cd32a5dc55b0f5f68f1ee875e:log:17', 'hash': '0x8d3cdaba5794dd0852f47c5dbffa75225328865cd32a5dc55b0f5f68f1ee875e', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x12be', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:39:18.000Z'}}, {'blockNum': '0x52b15e', 'uniqueId': '0x8fc2072e540417127971b464618864bb2d6b388f863c39cff0f1eb35d1a9b8d5:log:21', 'hash': '0x8fc2072e540417127971b464618864bb2d6b388f863c39cff0f1eb35d1a9b8d5', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 279374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x04434e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:39:18.000Z'}}, {'blockNum': '0x52b15e', 'uniqueId': '0x9b2e934db0534538609861bd3c0ba2ea1b536a57b2dd8d4223c2ade73a17eecd:log:23', 'hash': '0x9b2e934db0534538609861bd3c0ba2ea1b536a57b2dd8d4223c2ade73a17eecd', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2fae', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:39:18.000Z'}}, {'blockNum': '0x52b15e', 'uniqueId': '0x48b6eac51078500fc2c1e71f50bc8a50dbb41e0bff887108abf2e39548f7dcbd:log:102', 'hash': '0x48b6eac51078500fc2c1e71f50bc8a50dbb41e0bff887108abf2e39548f7dcbd', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 5572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x15c4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:39:18.000Z'}}, {'blockNum': '0x52b161', 'uniqueId': '0xfc07ffd7836349ce4ef45dce9c196be41d30455dbb4db4ae86039e7444774b4f:log:0', 'hash': '0xfc07ffd7836349ce4ef45dce9c196be41d30455dbb4db4ae86039e7444774b4f', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3d2bd1d72fc974dc016d6f8ff09c17eee3cee4c5', 'value': 2384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0950', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:40:19.000Z'}}, {'blockNum': '0x52b161', 'uniqueId': '0x5397f48a0817bd81a031c1cd6b782736f0b8c506137aaffbffbec88418abbbaf:log:45', 'hash': '0x5397f48a0817bd81a031c1cd6b782736f0b8c506137aaffbffbec88418abbbaf', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0851', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:40:19.000Z'}}, {'blockNum': '0x52b161', 'uniqueId': '0x7b2c12ebae74c0b79a00f5528c1e54b82eb15bc3c6d96eb0de135fd927d32333:log:115', 'hash': '0x7b2c12ebae74c0b79a00f5528c1e54b82eb15bc3c6d96eb0de135fd927d32333', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'value': 9608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2588', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:40:19.000Z'}}, {'blockNum': '0x52b178', 'uniqueId': '0xea72199f25fb59e4e3fd3e3e4415789c0bd0a4bc6f5ae41ac8ea7e50b106b597:log:23', 'hash': '0xea72199f25fb59e4e3fd3e3e4415789c0bd0a4bc6f5ae41ac8ea7e50b106b597', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xec07f0383759a92e565a69302c0757c1df48dd7a', 'value': 239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xef', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:45:12.000Z'}}, {'blockNum': '0x52b17f', 'uniqueId': '0xc95e5397f2cec48426a78221216c66c699de08839476c9f905e2a8bd07b9085b:log:8', 'hash': '0xc95e5397f2cec48426a78221216c66c699de08839476c9f905e2a8bd07b9085b', 'from': '0x2324f2b9a856b27ea8e8bd81fb55dcd45148490f', 'to': '0xae6ef19ef1e8f357b3ab1c5b5397b41a71b1c784', 'value': 2082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0822', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:47:16.000Z'}}, {'blockNum': '0x52b181', 'uniqueId': '0xb7294562580cc013e3779d06ef2e2984a7d82bec12c603a62ea8cd649393edb3:log:30', 'hash': '0xb7294562580cc013e3779d06ef2e2984a7d82bec12c603a62ea8cd649393edb3', 'from': '0x5664d5bd18eeacd3ed17e9252bbb4a9883ff5524', 'to': '0xe664fb39398c33bcca9e1d9e12c31975d4763eac', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1e8480', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:48:25.000Z'}}, {'blockNum': '0x52b184', 'uniqueId': '0x5d40e26c27bf9f8fcf69594731001bdef6082090e2aaa93495698df9a01110ac:log:34', 'hash': '0x5d40e26c27bf9f8fcf69594731001bdef6082090e2aaa93495698df9a01110ac', 'from': '0x933b04d87db77da13eec0a20f726b27932574f2a', 'to': '0x8dede93246f2bd6cb5b539939a49d2d0ce756fde', 'value': 119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x77', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:48:47.000Z'}}, {'blockNum': '0x52b185', 'uniqueId': '0x8fda9dae4ff4b46c2bdcde6debbe886f44d6fc4b343c47127d118c78fe37991c:log:19', 'hash': '0x8fda9dae4ff4b46c2bdcde6debbe886f44d6fc4b343c47127d118c78fe37991c', 'from': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2588', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:49:06.000Z'}}, {'blockNum': '0x52b185', 'uniqueId': '0xa679b9788f9d01c33a6c74897bb1f11782c522820a586896ac933dad54b7af01:log:25', 'hash': '0xa679b9788f9d01c33a6c74897bb1f11782c522820a586896ac933dad54b7af01', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x15c4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:49:06.000Z'}}, {'blockNum': '0x52b18b', 'uniqueId': '0x0ae8fccf484009d9d446752084c4d0fa54dd87175dbbcc83f0357c33e9d282e7:log:2', 'hash': '0x0ae8fccf484009d9d446752084c4d0fa54dd87175dbbcc83f0357c33e9d282e7', 'from': '0x2324f2b9a856b27ea8e8bd81fb55dcd45148490f', 'to': '0xae6ef19ef1e8f357b3ab1c5b5397b41a71b1c784', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x015f90', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:50:26.000Z'}}, {'blockNum': '0x52b1a4', 'uniqueId': '0x25b7c9095dc7e359cf133a686341c383bb59eb5373c9db7003dfdc19bc4c0972:log:3', 'hash': '0x25b7c9095dc7e359cf133a686341c383bb59eb5373c9db7003dfdc19bc4c0972', 'from': '0x9a2d163ab40f88c625fd475e807bbc3556566f80', 'to': '0xf90bfbaa667b28af539a55599056c13d4e237769', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4e20', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:55:35.000Z'}}, {'blockNum': '0x52b1a4', 'uniqueId': '0x69323e9bcecafa0ce2ad425d9476dbeca97a28b570a9c468c0aba61cf1bbaead:log:44', 'hash': '0x69323e9bcecafa0ce2ad425d9476dbeca97a28b570a9c468c0aba61cf1bbaead', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x090f', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:55:35.000Z'}}, {'blockNum': '0x52b1a8', 'uniqueId': '0x961762460d070f74abafa96d057f0dd0d679b07fe1589977f2df6a82bc2b2124:log:30', 'hash': '0x961762460d070f74abafa96d057f0dd0d679b07fe1589977f2df6a82bc2b2124', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5597eeb02a97b6b55acd3314cf45737189e2db13', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01c2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:56:31.000Z'}}, {'blockNum': '0x52b1b7', 'uniqueId': '0x6d5cadfb7bcbf4bfa1eb8cb095dd1e6dd9cc882b2bfaede96f5944cc729a9f82:log:67', 'hash': '0x6d5cadfb7bcbf4bfa1eb8cb095dd1e6dd9cc882b2bfaede96f5944cc729a9f82', 'from': '0xae6ef19ef1e8f357b3ab1c5b5397b41a71b1c784', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0167b2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:58:57.000Z'}}, {'blockNum': '0x52b1b7', 'uniqueId': '0x6c670224570f02c02b4a7d40b8e1589df6c6b90d83ebf04724ac7729f9343b17:log:68', 'hash': '0x6c670224570f02c02b4a7d40b8e1589df6c6b90d83ebf04724ac7729f9343b17', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1160', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:58:57.000Z'}}, {'blockNum': '0x52b1b7', 'uniqueId': '0x6c3b6def560112a00bba028975256c556ff9fb3fef892f9b714b86c6bfe829d1:log:72', 'hash': '0x6c3b6def560112a00bba028975256c556ff9fb3fef892f9b714b86c6bfe829d1', 'from': '0xe664fb39398c33bcca9e1d9e12c31975d4763eac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1e8480', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-04-11T04:58:57.000Z'}}]}}
Number of returned transfers:  191
Answer is complete
 
symbol             TNT
group              BPS
date        2018-04-14
hour             17:00
exchange       binance
Name: 295, dtype: object
HERE
 Symbol: TNT, Contract: 0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8
Datetime timestamps:  2018-04-14 17:00:00 2018-04-14 05:00:00 2018-04-15 05:00:00
Unix timestamps:  1523674800.0 1523761200.0
Hex Block Numbers:  0x52f52d 0x530c6f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x52f52d', 'uniqueId': '0xe84b08f2d5820be9430352b5b534c2061ada096510f8ba8fac226bcaad84b116:log:86', 'hash': '0xe84b08f2d5820be9430352b5b534c2061ada096510f8ba8fac226bcaad84b116', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x1d1bce8438390c8320387468eb82d8a475f4df44', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T03:00:12.000Z'}}, {'blockNum': '0x52f5ae', 'uniqueId': '0xcb50c6b325e6584a8d953e44d6d001f46e064a8cc1b1348513080813a6bfcfd4:log:55', 'hash': '0xcb50c6b325e6584a8d953e44d6d001f46e064a8cc1b1348513080813a6bfcfd4', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xbd188adbc220da1ee7fe772d3b295d35e7d1e9c5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T03:30:27.000Z'}}, {'blockNum': '0x52f5ff', 'uniqueId': '0x68990c5dd22c32f09189b397be2b001ba49cc2d11c925e2b7a8a3321f3cf6097:log:18', 'hash': '0x68990c5dd22c32f09189b397be2b001ba49cc2d11c925e2b7a8a3321f3cf6097', 'from': '0x58a3b821395f9f3c4ee659f1feb4c1d07d4bcc7e', 'to': '0x02aa5bfbb5289aa2ffc5deca8f584e8c801b20ab', 'value': 1733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x28597c2500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T03:50:35.000Z'}}, {'blockNum': '0x52f60f', 'uniqueId': '0x76f5cdaad34d4c333ce6fc2006acb99862e1ce06fb089b402ce9a8968c92d4e3:log:47', 'hash': '0x76f5cdaad34d4c333ce6fc2006acb99862e1ce06fb089b402ce9a8968c92d4e3', 'from': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T03:53:30.000Z'}}, {'blockNum': '0x52f625', 'uniqueId': '0x0fd8afd47dcefdd4f1d8f7c240db7ef34eab5f728b40e7da70190e7340aac130:log:59', 'hash': '0x0fd8afd47dcefdd4f1d8f7c240db7ef34eab5f728b40e7da70190e7340aac130', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x681434b73a145b91a808e049188ee0a2326c8e15', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T04:00:40.000Z'}}, {'blockNum': '0x52f6a1', 'uniqueId': '0xfcfe4a371a52d1a19fc11b90185e1ddcb37b688c5107b6ee92bfd81af1a42dac:log:57', 'hash': '0xfcfe4a371a52d1a19fc11b90185e1ddcb37b688c5107b6ee92bfd81af1a42dac', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x041d59439f56be03c5cf1257bbf5aa3db06f5fbd', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T04:30:57.000Z'}}, {'blockNum': '0x52f731', 'uniqueId': '0x7caa9e5fbf8d107325542c5d58107eb10653ac1ddfff9dd04744793d630582f9:log:6', 'hash': '0x7caa9e5fbf8d107325542c5d58107eb10653ac1ddfff9dd04744793d630582f9', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x160044de86bcb5bb9522076800849f77a0c7c7fb', 'value': 1066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x18d1daea00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:03:43.000Z'}}, {'blockNum': '0x52f731', 'uniqueId': '0xa8e25973f63866625db60182b9553c79df27a49c8c2beecf4fac08c82c00b23a:log:38', 'hash': '0xa8e25973f63866625db60182b9553c79df27a49c8c2beecf4fac08c82c00b23a', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xdc25a52363ba2b06ab9cf6e8b4cd44f42624757d', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:03:43.000Z'}}, {'blockNum': '0x52f73b', 'uniqueId': '0xe80846538536b3b0520edd76bb7a0c1d6c7f5ff5c665123b516a4be4d285611e:log:32', 'hash': '0xe80846538536b3b0520edd76bb7a0c1d6c7f5ff5c665123b516a4be4d285611e', 'from': '0x5ff0bc8f9fd6618ad640ff04d09010a0a23859dc', 'to': '0x970bc60db3f979f9882716628ea3250802e4eefc', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1176592e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:06:48.000Z'}}, {'blockNum': '0x52f76b', 'uniqueId': '0x6fc3a7e1f7f6f5d0eeebcd8167f235abbdbbc19dee1108f2172efa3f1c068658:log:14', 'hash': '0x6fc3a7e1f7f6f5d0eeebcd8167f235abbdbbc19dee1108f2172efa3f1c068658', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x20fc8f986022678ea2c19cb9c7a4ff7b6a6a0e94', 'value': 1962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2dae6e6a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:19:52.000Z'}}, {'blockNum': '0x52f799', 'uniqueId': '0xc980ff8f4b0084969e39c60595ce4239b0510ee7da50f550cc2c164efba8612b:log:71', 'hash': '0xc980ff8f4b0084969e39c60595ce4239b0510ee7da50f550cc2c164efba8612b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x152370c23f2f8d151e949dc26da25cfb32b0251c', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T05:30:47.000Z'}}, {'blockNum': '0x52f80d', 'uniqueId': '0xb7ac1371d50c9794e21e2be75d3dcd3bfd185a89871bc0d4ce379256d928f8f8:log:19', 'hash': '0xb7ac1371d50c9794e21e2be75d3dcd3bfd185a89871bc0d4ce379256d928f8f8', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x09745476b4d610b4918ae4db69af8cde80bfdc69', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:01:23.000Z'}}, {'blockNum': '0x52f851', 'uniqueId': '0x8c55ddc58ef19d943f0562394bbd1e729be7baf9f151fa8277464ce9bfbaa0c1:log:8', 'hash': '0x8c55ddc58ef19d943f0562394bbd1e729be7baf9f151fa8277464ce9bfbaa0c1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 27828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0287ebce3400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:17:42.000Z'}}, {'blockNum': '0x52f88d', 'uniqueId': '0xe6f5b2fd3cc89a5ecd92c6fa7985a847239813a9d50755036a8852a69f0ecd2c:log:17', 'hash': '0xe6f5b2fd3cc89a5ecd92c6fa7985a847239813a9d50755036a8852a69f0ecd2c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x8fd0411da5dc54aa178ea99e4d6afc8031e8d747', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:30:32.000Z'}}, {'blockNum': '0x52f8a3', 'uniqueId': '0xc0805c1070b4f0e7aabd05a0a1be90761135eab64c0bcdeac6677668abd44df4:log:1', 'hash': '0xc0805c1070b4f0e7aabd05a0a1be90761135eab64c0bcdeac6677668abd44df4', 'from': '0x041d59439f56be03c5cf1257bbf5aa3db06f5fbd', 'to': '0x8bcde14b6f971292107f16a3ef6737c3f3d6abb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:35:59.000Z'}}, {'blockNum': '0x52f8a9', 'uniqueId': '0xa9b593f6303e0dcd7522e79473a14060f63d1382f8ba57c5883c29781ddea30a:log:2', 'hash': '0xa9b593f6303e0dcd7522e79473a14060f63d1382f8ba57c5883c29781ddea30a', 'from': '0xdc25a52363ba2b06ab9cf6e8b4cd44f42624757d', 'to': '0x8bcde14b6f971292107f16a3ef6737c3f3d6abb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:36:36.000Z'}}, {'blockNum': '0x52f8ad', 'uniqueId': '0xe73d4724a6849dab3fc87b630b593cb2b83fc7e3d6d6cc8ee47544ba9b1b3f80:log:6', 'hash': '0xe73d4724a6849dab3fc87b630b593cb2b83fc7e3d6d6cc8ee47544ba9b1b3f80', 'from': '0x337f8662c206d7405c0ec240d9030a09bfe2543b', 'to': '0x8bcde14b6f971292107f16a3ef6737c3f3d6abb5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:37:33.000Z'}}, {'blockNum': '0x52f8b1', 'uniqueId': '0x1fd443dc478e2c73eef43909d26b16ef1c7552daabef4f5f0acca7bff1ead722:log:5', 'hash': '0x1fd443dc478e2c73eef43909d26b16ef1c7552daabef4f5f0acca7bff1ead722', 'from': '0x337f8662c206d7405c0ec240d9030a09bfe2543b', 'to': '0x80d7ff2b1abe8a63509fc9f8ce0dda647a31b17d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:38:28.000Z'}}, {'blockNum': '0x52f8c5', 'uniqueId': '0x0c5465da2dce06124ce67168a5b1148628ab44bd9814b8e7e8a6d197db057a16:log:26', 'hash': '0x0c5465da2dce06124ce67168a5b1148628ab44bd9814b8e7e8a6d197db057a16', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027ae7e7e500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:43:51.000Z'}}, {'blockNum': '0x52f8cd', 'uniqueId': '0x098077563238291d05602685a3e209e1e5dfca6ac7cdc88f533c2afff3336586:log:63', 'hash': '0x098077563238291d05602685a3e209e1e5dfca6ac7cdc88f533c2afff3336586', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027ae7e7e500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:45:26.000Z'}}, {'blockNum': '0x52f909', 'uniqueId': '0xe33669dd5788125db51a74bdb3f3ffb7646305c252c8616d3ae88eb51408cc72:log:4', 'hash': '0xe33669dd5788125db51a74bdb3f3ffb7646305c252c8616d3ae88eb51408cc72', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 1972.1539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2deaf40930', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T06:58:37.000Z'}}, {'blockNum': '0x52f915', 'uniqueId': '0xeaf3fc4cb22da6b8f03957c621057363498880d000ff2e43cf0f1d844b1fd610:log:59', 'hash': '0xeaf3fc4cb22da6b8f03957c621057363498880d000ff2e43cf0f1d844b1fd610', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x499314e879ac040ecf8ae957371397f82f525583', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:02:13.000Z'}}, {'blockNum': '0x52f929', 'uniqueId': '0x32551fa2f0970c70142e3c2ad15a3e1f88cf19fe58e072cf0d65e23c9fd7ef4b:log:1', 'hash': '0x32551fa2f0970c70142e3c2ad15a3e1f88cf19fe58e072cf0d65e23c9fd7ef4b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 1896.294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2c26cb03c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:06:01.000Z'}}, {'blockNum': '0x52f96b', 'uniqueId': '0x56fdec6ff9a2a0b8d91d0610e6f8d95137da509dad59d0a9bc8ac4ce55e3e036:log:9', 'hash': '0x56fdec6ff9a2a0b8d91d0610e6f8d95137da509dad59d0a9bc8ac4ce55e3e036', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x8939c7c178ac116ed3c6f017d859ac6904760d38', 'value': 2885.5175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x432f064970', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:24:20.000Z'}}, {'blockNum': '0x52f987', 'uniqueId': '0xbe0692655b92cd96838102cb3b9f8e457723ca2495bb9c92b7e71d5efd29f2d1:log:24', 'hash': '0xbe0692655b92cd96838102cb3b9f8e457723ca2495bb9c92b7e71d5efd29f2d1', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x4287a1358f44946f12f8c7345eac81251575ab15', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:30:08.000Z'}}, {'blockNum': '0x52f9a4', 'uniqueId': '0x8afafe6caa09f080f06bac39db58a41b73eefffd299784f5fba9427365082e9a:log:55', 'hash': '0x8afafe6caa09f080f06bac39db58a41b73eefffd299784f5fba9427365082e9a', 'from': '0x2cd00e2358b3309402740610ac6e1da8ae89d208', 'to': '0x4bb74c8460b58362fb8c077d2245bf7bcf3599b6', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:38:06.000Z'}}, {'blockNum': '0x52f9b4', 'uniqueId': '0x6d7c99d683304c070c1d2fc88d52bb8abf4e8ca2e08d5cb7d45edd08058e3808:log:3', 'hash': '0x6d7c99d683304c070c1d2fc88d52bb8abf4e8ca2e08d5cb7d45edd08058e3808', 'from': '0xb77d8e9a95e5215a832f611d8055af4e38736458', 'to': '0x4bb74c8460b58362fb8c077d2245bf7bcf3599b6', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:41:51.000Z'}}, {'blockNum': '0x52f9bc', 'uniqueId': '0xa9e60a533d79b5879f76fd5b2e8d3974b50094ae0327e8172c6c29f8702e5d84:log:56', 'hash': '0xa9e60a533d79b5879f76fd5b2e8d3974b50094ae0327e8172c6c29f8702e5d84', 'from': '0x4bb74c8460b58362fb8c077d2245bf7bcf3599b6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:45:19.000Z'}}, {'blockNum': '0x52f9dc', 'uniqueId': '0x9ad27eaa05116783e582073bebb160a6e84b8325b8b59b660bb3963ea1513b18:log:116', 'hash': '0x9ad27eaa05116783e582073bebb160a6e84b8325b8b59b660bb3963ea1513b18', 'from': '0xd46de29853471467e53a677d12ee327624d85210', 'to': '0xc95c2d60b5aa8129ed6120043db3baf1f1956c78', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb2d05e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:52:44.000Z'}}, {'blockNum': '0x52f9f4', 'uniqueId': '0xd5bfd5c186b2083af63640d8eb81aab2ac71268f9d2f21b32b1fe92887807d74:log:101', 'hash': '0xd5bfd5c186b2083af63640d8eb81aab2ac71268f9d2f21b32b1fe92887807d74', 'from': '0xd46de29853471467e53a677d12ee327624d85210', 'to': '0xc95c2d60b5aa8129ed6120043db3baf1f1956c78', 'value': 5050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7594587a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T07:57:45.000Z'}}, {'blockNum': '0x52fa04', 'uniqueId': '0x7cfe0afa3e30ceba87530a755c522cebc5bbfd75be94b30955edd6136d05e55d:log:67', 'hash': '0x7cfe0afa3e30ceba87530a755c522cebc5bbfd75be94b30955edd6136d05e55d', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xe1c7f114de762c86be31f7d574a908a5872f716d', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:00:57.000Z'}}, {'blockNum': '0x52fa20', 'uniqueId': '0xa0ae2768a9e6ee7515af9954cb86232bf2bdb5104b0a088b1e68fcbe1a070f01:log:40', 'hash': '0xa0ae2768a9e6ee7515af9954cb86232bf2bdb5104b0a088b1e68fcbe1a070f01', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5c521f80b7465753aeb31c31d10af55e7b12fbb0', 'value': 820, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x131794b400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:09:46.000Z'}}, {'blockNum': '0x52fa7e', 'uniqueId': '0x8d0c094975b8da1698fe31772d61e0020f3d2acb6174dc8adcc1f794081c6ab1:log:23', 'hash': '0x8d0c094975b8da1698fe31772d61e0020f3d2acb6174dc8adcc1f794081c6ab1', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xaacd58da4c1a5261e9c8355447ec92cc21df8221', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:33:37.000Z'}}, {'blockNum': '0x52fa97', 'uniqueId': '0xfa3c2757612286c0be1630997b395d4cd55bca0003b918feaff516976aa49397:log:8', 'hash': '0xfa3c2757612286c0be1630997b395d4cd55bca0003b918feaff516976aa49397', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 6123.574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8e935865c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:41:32.000Z'}}, {'blockNum': '0x52faab', 'uniqueId': '0x8d311b2ddbd4ead0277bdbfa5ab3e4e20b82a772c387b6869576e21ae8f41049:log:18', 'hash': '0x8d311b2ddbd4ead0277bdbfa5ab3e4e20b82a772c387b6869576e21ae8f41049', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6123.574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8e935865c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:45:20.000Z'}}, {'blockNum': '0x52fab0', 'uniqueId': '0x9b47c03dfcc5e3f21c086cbe0970722b45f42398bcc7f1be5c917dc37c9ede3e:log:5', 'hash': '0x9b47c03dfcc5e3f21c086cbe0970722b45f42398bcc7f1be5c917dc37c9ede3e', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xd3510c84611435568c705c3738a156651f3a87d3', 'value': 13322.1932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01362e7596c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:46:18.000Z'}}, {'blockNum': '0x52fabd', 'uniqueId': '0x521ed73e993aeba5b78875f10a072c6009de6c44a4f7f0f2c9d127b2a369b988:log:9', 'hash': '0x521ed73e993aeba5b78875f10a072c6009de6c44a4f7f0f2c9d127b2a369b988', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 8654.8318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc982d147e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:51:18.000Z'}}, {'blockNum': '0x52facc', 'uniqueId': '0xdd6bedd1d75a913b124d1f797a8355f672d476372813af2f46c5acadb6130917:log:71', 'hash': '0xdd6bedd1d75a913b124d1f797a8355f672d476372813af2f46c5acadb6130917', 'from': '0xfc7667276d66ac5243402afb48fdf14f76cc2e62', 'to': '0xca7a77f1c589bae1401da264e0f0d384e2d5e930', 'value': 1432.95850087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x215d192667', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:55:17.000Z'}}, {'blockNum': '0x52facd', 'uniqueId': '0x07d2240465a7fa71acae8b6f5d3b68f3c3fe71bea34a6c5baf2d11b262b82f30:log:17', 'hash': '0x07d2240465a7fa71acae8b6f5d3b68f3c3fe71bea34a6c5baf2d11b262b82f30', 'from': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12614.9082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0125b6b653a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:55:23.000Z'}}, {'blockNum': '0x52facd', 'uniqueId': '0x54477e2317913020eb915b319317ddb22db67868a671fdf609d01d8602e5cbf9:log:19', 'hash': '0x54477e2317913020eb915b319317ddb22db67868a671fdf609d01d8602e5cbf9', 'from': '0xd3510c84611435568c705c3738a156651f3a87d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16174.4963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01789782b930', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T08:55:23.000Z'}}, {'blockNum': '0x52fae7', 'uniqueId': '0x406a6cc3f33a4354e6f8e979ffd55b861cd5ae654937534312df67293ff7eebc:log:84', 'hash': '0x406a6cc3f33a4354e6f8e979ffd55b861cd5ae654937534312df67293ff7eebc', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x6c865a1ef51f58ce75e0c48c4d4ea4c623187550', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T09:00:40.000Z'}}, {'blockNum': '0x52fb52', 'uniqueId': '0xd4f9451815934532b7a7f396d81055a34c07dc1424470636dbf216558f087526:log:59', 'hash': '0xd4f9451815934532b7a7f396d81055a34c07dc1424470636dbf216558f087526', 'from': '0xf567b638bfe1d63db90825667c86407853d1271f', 'to': '0xd5d51f7aa020d01016fabb57367ef7423eda8cef', 'value': 524.826769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0c383618a4', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T09:28:31.000Z'}}, {'blockNum': '0x52fb5b', 'uniqueId': '0x4c7a6b9d25687852dd850b720db9d4a660a2e155dd863da30b34676140168b0e:log:27', 'hash': '0x4c7a6b9d25687852dd850b720db9d4a660a2e155dd863da30b34676140168b0e', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x002d26525eaeb028f42d0a70b66dc04ef9d8f998', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T09:30:02.000Z'}}, {'blockNum': '0x52fbd5', 'uniqueId': '0xa00410c7aad265d68bf2c9d1c0e27a562181b69f336b798d011c97fe9222deff:log:53', 'hash': '0xa00410c7aad265d68bf2c9d1c0e27a562181b69f336b798d011c97fe9222deff', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2e1c3dff08d1726b97086cc94827d36b9b71d12a', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T10:00:07.000Z'}}, {'blockNum': '0x52fc1e', 'uniqueId': '0x3c5adfca95f4ba51a4bafb875a8b89ddb3f981fb77fb13966dca23e5fbbe5d4a:log:6', 'hash': '0x3c5adfca95f4ba51a4bafb875a8b89ddb3f981fb77fb13966dca23e5fbbe5d4a', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 2049.0686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2fb5668de0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T10:16:04.000Z'}}, {'blockNum': '0x52fc57', 'uniqueId': '0x9503d1980ec0e844fe1126c9c9f72feeb399a3e575488bd8d18fe935724d6504:log:8', 'hash': '0x9503d1980ec0e844fe1126c9c9f72feeb399a3e575488bd8d18fe935724d6504', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 1031.7268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1805922940', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T10:30:02.000Z'}}, {'blockNum': '0x52fc5c', 'uniqueId': '0xd6ab7200760122c6de8bbec1786d3300cc6ac35ac97d436dc2112713a672633f:log:12', 'hash': '0xd6ab7200760122c6de8bbec1786d3300cc6ac35ac97d436dc2112713a672633f', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xc0bc621f72658235939ab072347a067630b20a78', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T10:31:20.000Z'}}, {'blockNum': '0x52fcd7', 'uniqueId': '0x165cf0a363346b14a555d489ba042edf247bf173dfac56f0faace338ab384231:log:69', 'hash': '0x165cf0a363346b14a555d489ba042edf247bf173dfac56f0faace338ab384231', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x4108a778fa16f06f8374e7434c0193b0be575724', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:02:42.000Z'}}, {'blockNum': '0x52fd07', 'uniqueId': '0x9ccb49f2a7a3dd1a588ea826bbb04c4c26a1d9209e15e53f312c75f4e7710e80:log:3', 'hash': '0x9ccb49f2a7a3dd1a588ea826bbb04c4c26a1d9209e15e53f312c75f4e7710e80', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x93ec712111fb2e64b195759e747094167d5138c2', 'value': 334976.532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1e7747b84480', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:12:07.000Z'}}, {'blockNum': '0x52fd18', 'uniqueId': '0xf52006e91d882039b238148a52c1019e0d1de54eb3dfda93cf77dd043c4992a3:log:24', 'hash': '0xf52006e91d882039b238148a52c1019e0d1de54eb3dfda93cf77dd043c4992a3', 'from': '0x93ec712111fb2e64b195759e747094167d5138c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 334976.532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1e7747b84480', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:15:08.000Z'}}, {'blockNum': '0x52fd1a', 'uniqueId': '0xe5ed4bc66346885ecc05b0a3319c23d8acc2ea0165fc0211157e20da8740fe65:log:5', 'hash': '0xe5ed4bc66346885ecc05b0a3319c23d8acc2ea0165fc0211157e20da8740fe65', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 3367.5869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4e6861d0d0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:15:39.000Z'}}, {'blockNum': '0x52fd44', 'uniqueId': '0x045904d896f961c37a9c1b4b77a7ce3a3b5fe16116c58cf3168b4573397a121e:log:10', 'hash': '0x045904d896f961c37a9c1b4b77a7ce3a3b5fe16116c58cf3168b4573397a121e', 'from': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6448.3823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x96235a87f0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:25:03.000Z'}}, {'blockNum': '0x52fd4b', 'uniqueId': '0xa8ebc272a11709d3aae44deb3401dff8d5599a7e287fd3e863f12f05bbb0ebd4:log:62', 'hash': '0xa8ebc272a11709d3aae44deb3401dff8d5599a7e287fd3e863f12f05bbb0ebd4', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x5ca8c08dd7353baa25051dcd9e5aa6a75bc24986', 'value': 558.5635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0d014c4330', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:28:00.000Z'}}, {'blockNum': '0x52fd54', 'uniqueId': '0x93e406856e923ec578241f34f3a74378e8c6dfc0bc2119b73b130aade605e0d7:log:30', 'hash': '0x93e406856e923ec578241f34f3a74378e8c6dfc0bc2119b73b130aade605e0d7', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x21383ec1b2f24debb54f440b51aa316ea76c8594', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:30:06.000Z'}}, {'blockNum': '0x52fd69', 'uniqueId': '0x793f49fb3f931ed3574868d7d5941bf047e8ece0b5774469348d1a9febc39120:log:3', 'hash': '0x793f49fb3f931ed3574868d7d5941bf047e8ece0b5774469348d1a9febc39120', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 10559.227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xf5d9e5bee0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:33:31.000Z'}}, {'blockNum': '0x52fd73', 'uniqueId': '0x946aae9b9bd1132a998f3ffecb60baa02a9b2f595299ca150adbd0359614db88:log:20', 'hash': '0x946aae9b9bd1132a998f3ffecb60baa02a9b2f595299ca150adbd0359614db88', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 1857.411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2b3f0843e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:34:20.000Z'}}, {'blockNum': '0x52fd92', 'uniqueId': '0x3e82abeefb67cb4750018ff8e4e8329eb2d465d15c9d351d9b47e175eeac3054:log:5', 'hash': '0x3e82abeefb67cb4750018ff8e4e8329eb2d465d15c9d351d9b47e175eeac3054', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:41:17.000Z'}}, {'blockNum': '0x52fdb5', 'uniqueId': '0x6008f35b3e23b5485f6873ff2e06f71c10ef6d5c34d6155f0088aced63064e4d:log:4', 'hash': '0x6008f35b3e23b5485f6873ff2e06f71c10ef6d5c34d6155f0088aced63064e4d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 7536.323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xaf77fc4be0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:48:40.000Z'}}, {'blockNum': '0x52fdc4', 'uniqueId': '0xd1f4a51285757b49b59175d433d64d18425c0812bd278fbe493e4584f19f1d1e:log:6', 'hash': '0xd1f4a51285757b49b59175d433d64d18425c0812bd278fbe493e4584f19f1d1e', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xb2fcb133fe7fa5f5176b6d489146bcb9db29f0c8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:53:20.000Z'}}, {'blockNum': '0x52fdcf', 'uniqueId': '0x707f460920627f333d8680c590768ffdec572a9495a0b981ecdac90fe751390f:log:51', 'hash': '0x707f460920627f333d8680c590768ffdec572a9495a0b981ecdac90fe751390f', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14312.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014d3fb90680', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:55:19.000Z'}}, {'blockNum': '0x52fdcf', 'uniqueId': '0xb6951e619d5c54383dabe876cb7d6c18ccac71ecc2034b41d9922a9edb803c89:log:53', 'hash': '0xb6951e619d5c54383dabe876cb7d6c18ccac71ecc2034b41d9922a9edb803c89', 'from': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8134.2239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbd63c0aaf0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:55:19.000Z'}}, {'blockNum': '0x52fdde', 'uniqueId': '0x67bb980d62ba692de67542cce52fd14c535fd842032c4f6e75359f12d15b8f54:log:15', 'hash': '0x67bb980d62ba692de67542cce52fd14c535fd842032c4f6e75359f12d15b8f54', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 14925.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015b80780140', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T11:59:24.000Z'}}, {'blockNum': '0x52fde5', 'uniqueId': '0xc7174bf6a2dd290ea9a92efb5c28a1103905ee8ded3132a380b3ce06bf240d1d:log:42', 'hash': '0xc7174bf6a2dd290ea9a92efb5c28a1103905ee8ded3132a380b3ce06bf240d1d', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x679bc05c83c07ecc21b6e7ac805758ea61ee6763', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:00:55.000Z'}}, {'blockNum': '0x52fdf6', 'uniqueId': '0x845e8f04a0df2fe1c74f7914953c93ae09bd10b89cef1216aa68c37b508479a8:log:18', 'hash': '0x845e8f04a0df2fe1c74f7914953c93ae09bd10b89cef1216aa68c37b508479a8', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 1319.031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb6099460', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:05:29.000Z'}}, {'blockNum': '0x52fdf6', 'uniqueId': '0xa3360adb69d20998ab886f41c5e17d1c3b900de3766c5546af0581628bec4fb1:log:62', 'hash': '0xa3360adb69d20998ab886f41c5e17d1c3b900de3766c5546af0581628bec4fb1', 'from': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14925.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015b80780140', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:05:29.000Z'}}, {'blockNum': '0x52fe33', 'uniqueId': '0x0c7200b3e9d5a2362e323906af5e9351e2bd57616d72d0583ef11bac55a1a6e7:log:1', 'hash': '0x0c7200b3e9d5a2362e323906af5e9351e2bd57616d72d0583ef11bac55a1a6e7', 'from': '0x0f5eaa48e6ed85a67abad8e3cd4184b180bd80f6', 'to': '0xcc63ecd2274157c77aed4b9d5a74076f54e2fe49', 'value': 5084.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76648b6d40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:20:11.000Z'}}, {'blockNum': '0x52fe48', 'uniqueId': '0x99892ff2fd881f15035d5bac4db583506a6583a29d56ec2c50559350e52de2bb:log:29', 'hash': '0x99892ff2fd881f15035d5bac4db583506a6583a29d56ec2c50559350e52de2bb', 'from': '0x95bdad08b2bc734b83bebb48340068b67fbb088f', 'to': '0x4408b8531a6210b33f19180d0ecae0478a933861', 'value': 4539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x69ae8c5b00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:23:35.000Z'}}, {'blockNum': '0x52fe4e', 'uniqueId': '0x4e8b5185f5446f5d3de7f14dff4d3a47f53c2e17687bbf4bc183b9f2afc33349:log:10', 'hash': '0x4e8b5185f5446f5d3de7f14dff4d3a47f53c2e17687bbf4bc183b9f2afc33349', 'from': '0xcc63ecd2274157c77aed4b9d5a74076f54e2fe49', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10134.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xebf8791780', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:25:11.000Z'}}, {'blockNum': '0x52fe63', 'uniqueId': '0x2e2daff68c90ad015d7897cbde38655d9986bafc43c83f0de33ff46ccfc4e86c:log:88', 'hash': '0x2e2daff68c90ad015d7897cbde38655d9986bafc43c83f0de33ff46ccfc4e86c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x854a6cbfdea21429c128f91daf36b52631a3fb99', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:32:21.000Z'}}, {'blockNum': '0x52feab', 'uniqueId': '0xc0a19e0c150a885afa17b2db193c158ce119d4d774e3baddad5f430a849c784d:log:4', 'hash': '0xc0a19e0c150a885afa17b2db193c158ce119d4d774e3baddad5f430a849c784d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 14494.386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01517945db40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:49:27.000Z'}}, {'blockNum': '0x52feca', 'uniqueId': '0x3b18e4b8edae3eeb4278c7b711e53cd6f1b5873ffdfcae7fc3bd501f9e362675:log:23', 'hash': '0x3b18e4b8edae3eeb4278c7b711e53cd6f1b5873ffdfcae7fc3bd501f9e362675', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14494.386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01517945db40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T12:55:15.000Z'}}, {'blockNum': '0x52fed7', 'uniqueId': '0xb7df2793fb61b8bee1ea78d64f659985b3f31d5c2b42cae26b41bfe16b51d71f:log:22', 'hash': '0xb7df2793fb61b8bee1ea78d64f659985b3f31d5c2b42cae26b41bfe16b51d71f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 26834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0270c71a9200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:00:47.000Z'}}, {'blockNum': '0x52fed9', 'uniqueId': '0x4ebc15096f6471ef287a242e43bf74f2721331e99adf82cc1ac795bf94c6988c:log:31', 'hash': '0x4ebc15096f6471ef287a242e43bf74f2721331e99adf82cc1ac795bf94c6988c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x46f30052ffe6b2a53548b2e0683cfff544e4f5b4', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:00:55.000Z'}}, {'blockNum': '0x52feef', 'uniqueId': '0x678108d5b528c91acfe8d0e8a3185dabdb84db43ad0d1851a942a3bd9688b5a4:log:110', 'hash': '0x678108d5b528c91acfe8d0e8a3185dabdb84db43ad0d1851a942a3bd9688b5a4', 'from': '0xbe7a1133337f84698f1a131c2d4c3b099964366e', 'to': '0xc95f11d3a41eb717aa468dd3632211ae4f333fa7', 'value': 116.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02b6359720', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:04:53.000Z'}}, {'blockNum': '0x52ff55', 'uniqueId': '0xb61822ed5dd94ef8c32df08881244ef1b93cb87ac8016cad1fa05bc5086e9682:log:15', 'hash': '0xb61822ed5dd94ef8c32df08881244ef1b93cb87ac8016cad1fa05bc5086e9682', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x18fec07f7bc004b675d9fa2dd69cf6324d12fe99', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:33:04.000Z'}}, {'blockNum': '0x52ff66', 'uniqueId': '0x48fec8a5ee5f222180eb44fa16b0106d2925712e3de897e4a9d3ec945b964dd6:log:13', 'hash': '0x48fec8a5ee5f222180eb44fa16b0106d2925712e3de897e4a9d3ec945b964dd6', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e22b424500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:36:45.000Z'}}, {'blockNum': '0x52ff83', 'uniqueId': '0x64a9fb9b6d461808d4819ea21fe9578de90bb92be30fb083fe9fbe2c295e4df7:log:4', 'hash': '0x64a9fb9b6d461808d4819ea21fe9578de90bb92be30fb083fe9fbe2c295e4df7', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x360c7867b7b528bda56b680632f6b980ed99cdb4', 'value': 1635.6964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x261582a240', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:43:52.000Z'}}, {'blockNum': '0x52ff89', 'uniqueId': '0x1cafe677524cc9da759bd29624aba1e9732cb30243828de8fa0994450e8302ea:log:13', 'hash': '0x1cafe677524cc9da759bd29624aba1e9732cb30243828de8fa0994450e8302ea', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x67254ffa39fe0bb73fa3f967cd332ac0c2c2d3c5', 'value': 1700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2794ca2400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:44:34.000Z'}}, {'blockNum': '0x52ff8e', 'uniqueId': '0x77d1fd3aee40b4459ce4488fb0d389784d19fce6b3a89939a6cf375afeef8495:log:5', 'hash': '0x77d1fd3aee40b4459ce4488fb0d389784d19fce6b3a89939a6cf375afeef8495', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:45:57.000Z'}}, {'blockNum': '0x52ff93', 'uniqueId': '0xf5c2750e430e3ec6b1b3dab9d5dcd49d5a4e308f6366120336e9ec323d646b5c:log:6', 'hash': '0xf5c2750e430e3ec6b1b3dab9d5dcd49d5a4e308f6366120336e9ec323d646b5c', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 5634.047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x832d897960', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:46:36.000Z'}}, {'blockNum': '0x52ff93', 'uniqueId': '0xd898388796720c1d5e0b43974648a8a4980971b0fb637d3a8967c31d2a70d243:log:18', 'hash': '0xd898388796720c1d5e0b43974648a8a4980971b0fb637d3a8967c31d2a70d243', 'from': '0x8fdf2cc10c535a93a3ef8e919824388e0a334b79', 'to': '0x4ca12fa5af3cd47969d34c41e7097d71573a989b', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x358d117c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:46:36.000Z'}}, {'blockNum': '0x52ff97', 'uniqueId': '0x9c54383b9c31e762101dfffd549a4607cf3c88757123d72a8cc1a975cf31c58c:log:4', 'hash': '0x9c54383b9c31e762101dfffd549a4607cf3c88757123d72a8cc1a975cf31c58c', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 7197.343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa79381dd60', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:47:52.000Z'}}, {'blockNum': '0x52ff9a', 'uniqueId': '0x52619a497d046cee1cbe697e364a97db6964041449590bdfb3f56c6c302d47ab:log:17', 'hash': '0x52619a497d046cee1cbe697e364a97db6964041449590bdfb3f56c6c302d47ab', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x81b5d43e3c93ee25fc9ddec51812c4058e062d4b', 'value': 213705.69228182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x136fb92fff96', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:49:07.000Z'}}, {'blockNum': '0x52ffb2', 'uniqueId': '0x3a4a7815d4d7389bdbeef7550e0d031c0af2db292e6c053db4a7847ddbee8a51:log:9', 'hash': '0x3a4a7815d4d7389bdbeef7550e0d031c0af2db292e6c053db4a7847ddbee8a51', 'from': '0x81b5d43e3c93ee25fc9ddec51812c4058e062d4b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 213705.69228182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x136fb92fff96', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:55:09.000Z'}}, {'blockNum': '0x52ffb2', 'uniqueId': '0x747c294594b46cd7b025aa1f9df1eed56dece58ab67718dbec72f878fb4845b7:log:10', 'hash': '0x747c294594b46cd7b025aa1f9df1eed56dece58ab67718dbec72f878fb4845b7', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22801.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0212e2e008c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:55:09.000Z'}}, {'blockNum': '0x52ffb2', 'uniqueId': '0x0611643bebaa1339ca80a15fc2fb8b0671d5c326a4cdf638b49cf859af9a3650:log:11', 'hash': '0x0611643bebaa1339ca80a15fc2fb8b0671d5c326a4cdf638b49cf859af9a3650', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e22b424500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T13:55:09.000Z'}}, {'blockNum': '0x52ffcd', 'uniqueId': '0x2bcc7a4a0ec32e006c3861d74122e70f9659e9e7b743cd063300800c30d6650a:log:16', 'hash': '0x2bcc7a4a0ec32e006c3861d74122e70f9659e9e7b743cd063300800c30d6650a', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x461017ea4349ca7922428a003aae625a904e9838', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:00:58.000Z'}}, {'blockNum': '0x52ffd8', 'uniqueId': '0x30dcf2be3709cdb3ada38a8bbad0732210a91a66fdc7d70bdac5809582941eb6:log:12', 'hash': '0x30dcf2be3709cdb3ada38a8bbad0732210a91a66fdc7d70bdac5809582941eb6', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:05:16.000Z'}}, {'blockNum': '0x52ffe3', 'uniqueId': '0x2330ed954c6e7a147e7acc88ca97f9b3c2a0256df3dc2afe519df907147cd6ff:log:6', 'hash': '0x2330ed954c6e7a147e7acc88ca97f9b3c2a0256df3dc2afe519df907147cd6ff', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:07:57.000Z'}}, {'blockNum': '0x52fff4', 'uniqueId': '0xa640e7842e56f158f2ac23cab17493aad6b6d92c5eab31c89a7abc74e2e1f68b:log:13', 'hash': '0xa640e7842e56f158f2ac23cab17493aad6b6d92c5eab31c89a7abc74e2e1f68b', 'from': '0xc99931ad483effca4e880839f6ee66d00b61bfec', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:13:04.000Z'}}, {'blockNum': '0x52fff6', 'uniqueId': '0xef8cec9f05fc11d9e5d8b685bf0308e3b92e88b3e1b2494c7949b9daa79f2f21:log:3', 'hash': '0xef8cec9f05fc11d9e5d8b685bf0308e3b92e88b3e1b2494c7949b9daa79f2f21', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:14:02.000Z'}}, {'blockNum': '0x52fffd', 'uniqueId': '0x3842705f19d20c6fe4f6e0b1d017c73202425712e36ef9d95fce98b39dd72e79:log:9', 'hash': '0x3842705f19d20c6fe4f6e0b1d017c73202425712e36ef9d95fce98b39dd72e79', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02b8657e1600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:15:03.000Z'}}, {'blockNum': '0x530006', 'uniqueId': '0x09491f6f860315e4311b45690b65a9ea961f5f5f4b9dc5186cdb0f3ff5e32f0f:log:0', 'hash': '0x09491f6f860315e4311b45690b65a9ea961f5f5f4b9dc5186cdb0f3ff5e32f0f', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 5115.607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x771b64d060', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:17:03.000Z'}}, {'blockNum': '0x53000c', 'uniqueId': '0x263f93c5d0bcd237f8ed62a618b2e44b506104a9c86c6e107cba2c486a7b4662:log:12', 'hash': '0x263f93c5d0bcd237f8ed62a618b2e44b506104a9c86c6e107cba2c486a7b4662', 'from': '0xeaa509da99b12bc33a7851c91a193d52609b7b5b', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:18:36.000Z'}}, {'blockNum': '0x530011', 'uniqueId': '0xf0c3177e2d3a9984d95524f4e3f597a33614e255616e327e6fde03b30d7e0443:log:64', 'hash': '0xf0c3177e2d3a9984d95524f4e3f597a33614e255616e327e6fde03b30d7e0443', 'from': '0xcee824e59b8eb2e9b25bc696f89fe937a7c07c42', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:19:39.000Z'}}, {'blockNum': '0x530015', 'uniqueId': '0x128687aeed6b394ec2e8d2a32f047b8db948bd8f4c7dff98cbd6982af4dec0df:log:108', 'hash': '0x128687aeed6b394ec2e8d2a32f047b8db948bd8f4c7dff98cbd6982af4dec0df', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x44ffd295a1481f033bb266d2405ddad7208a6f10', 'value': 14352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014e28961000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:20:43.000Z'}}, {'blockNum': '0x530017', 'uniqueId': '0xe07d008b09ea8305a383429923ee8d39d8c642aaf8590e6b3b4e85101748357f:log:29', 'hash': '0xe07d008b09ea8305a383429923ee8d39d8c642aaf8590e6b3b4e85101748357f', 'from': '0xdb7849733f4e93abcf02d878a39317be0e6f9e75', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:21:40.000Z'}}, {'blockNum': '0x53001f', 'uniqueId': '0x56178544a1970abbd45b81966d3af1391c51e951011d4cfb929bfebc945d48bc:log:12', 'hash': '0x56178544a1970abbd45b81966d3af1391c51e951011d4cfb929bfebc945d48bc', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 4985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7410ea5900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:23:48.000Z'}}, {'blockNum': '0x530020', 'uniqueId': '0x1d892a24ef9a20f7e3d1a8294090bf7891671a2fb39f5fc7669721682ec64a40:log:16', 'hash': '0x1d892a24ef9a20f7e3d1a8294090bf7891671a2fb39f5fc7669721682ec64a40', 'from': '0xa691ec41baf2f7d7e58a451451416ea5244eb4e5', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:24:18.000Z'}}, {'blockNum': '0x530025', 'uniqueId': '0x3f201b343b41398d7b13c87480d8229027fc2ae3963483abb7ed45fc6e5021e9:log:61', 'hash': '0x3f201b343b41398d7b13c87480d8229027fc2ae3963483abb7ed45fc6e5021e9', 'from': '0x44ffd295a1481f033bb266d2405ddad7208a6f10', 'to': '0x758716e7e12f2f8b9e9d76d1e066d6f0ff0e299b', 'value': 14352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014e28961000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:25:28.000Z'}}, {'blockNum': '0x530029', 'uniqueId': '0x745d4533b34efb6c1d6e797570ebed6ac9898c621bb269849bae1f44b29fd777:log:19', 'hash': '0x745d4533b34efb6c1d6e797570ebed6ac9898c621bb269849bae1f44b29fd777', 'from': '0x91429446b198756bf2bb493255f96ccb4a719eef', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:27:52.000Z'}}, {'blockNum': '0x530032', 'uniqueId': '0x45243d3fffad220f64f7b5633b9ec24706b27cd57b08812bab8d4e8a08e56d58:log:7', 'hash': '0x45243d3fffad220f64f7b5633b9ec24706b27cd57b08812bab8d4e8a08e56d58', 'from': '0x11f67f95025e96f1cd20280083536baa952bfe62', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:29:27.000Z'}}, {'blockNum': '0x530036', 'uniqueId': '0x330152d87d3190b625b156d2830e2b90c68213b7131d104ead7a734838e0684c:log:76', 'hash': '0x330152d87d3190b625b156d2830e2b90c68213b7131d104ead7a734838e0684c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x582049973571ca3fc634f6a9fdb7f0804f365be4', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:30:04.000Z'}}, {'blockNum': '0x53003d', 'uniqueId': '0x6057f4c7fcf9bf7bf045af01ffae0e521fce683ba98cbd34a45a5e60b432eb78:log:7', 'hash': '0x6057f4c7fcf9bf7bf045af01ffae0e521fce683ba98cbd34a45a5e60b432eb78', 'from': '0x7fc97cb235ca8d2ab5708c9a25d076131e412149', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:32:09.000Z'}}, {'blockNum': '0x530043', 'uniqueId': '0x178d4f097a511c1fec8e4d39c112716b38f6b78907f22759b252183b0fb362f5:log:132', 'hash': '0x178d4f097a511c1fec8e4d39c112716b38f6b78907f22759b252183b0fb362f5', 'from': '0x4769613e8ef8eaa4bc59ff02cee88380917642dc', 'to': '0x12384db07367bb35f1d19f585a0097988cd38d5c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:33:24.000Z'}}, {'blockNum': '0x530043', 'uniqueId': '0xbc101c98d55effc7033490316f27097ce83b08df57d389969c3d0d62654c6168:log:134', 'hash': '0xbc101c98d55effc7033490316f27097ce83b08df57d389969c3d0d62654c6168', 'from': '0x2e35eab793cccf26911e106ded0b4e6755e01b6b', 'to': '0xb0c5de1cdb8f2da390c242305a7a324f4bad8f72', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:33:24.000Z'}}, {'blockNum': '0x530045', 'uniqueId': '0x3e8a304d14c1eff747eef653334fa538d524cc12116b6c1f131f3c5dc6c1ae4d:log:34', 'hash': '0x3e8a304d14c1eff747eef653334fa538d524cc12116b6c1f131f3c5dc6c1ae4d', 'from': '0xbc38ba95165272c47453fb303787ea5791a6f844', 'to': '0xa044095fb3f70955649e1f0f219d0e38b660e580', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:33:41.000Z'}}, {'blockNum': '0x530048', 'uniqueId': '0xc015193628f5aa807e22713345ea9b20c6d1b03c0e3e4c372a16b8370ccb12ed:log:43', 'hash': '0xc015193628f5aa807e22713345ea9b20c6d1b03c0e3e4c372a16b8370ccb12ed', 'from': '0xf11debce780fc812213afd267b985a56ed85773d', 'to': '0xd1ce0bbdb22df6b33479353898630d76833485c2', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:34:17.000Z'}}, {'blockNum': '0x53004a', 'uniqueId': '0xad507394cb4d026f5db708ff9ef843601cffdb5e5ecd9226818b2e4ebf00b0f3:log:24', 'hash': '0xad507394cb4d026f5db708ff9ef843601cffdb5e5ecd9226818b2e4ebf00b0f3', 'from': '0xe36af3f053f6685a5742e7e74fcff1a62fe0e1c2', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:35:03.000Z'}}, {'blockNum': '0x53004a', 'uniqueId': '0x3a9e48070c06f5ea812601b9a3652a42b29c0a055e95edf036e475cdd7f1ef5e:log:88', 'hash': '0x3a9e48070c06f5ea812601b9a3652a42b29c0a055e95edf036e475cdd7f1ef5e', 'from': '0xbb48d5de7509001b05e109ef03f399e62d147f61', 'to': '0x8bf172dc69acbade9937244a11b005fc2f291088', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:35:03.000Z'}}, {'blockNum': '0x530052', 'uniqueId': '0x654f93d89b3e62e7ae82d96f9d6142f21c6bad1ddd9b1278b06617886533e81d:log:14', 'hash': '0x654f93d89b3e62e7ae82d96f9d6142f21c6bad1ddd9b1278b06617886533e81d', 'from': '0x7908daad8d57a838b701842d43695585aa2f2553', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:37:01.000Z'}}, {'blockNum': '0x530058', 'uniqueId': '0xe161edf4f0fcea77df489e98179f9bf800cb0b1b356675e5ecb4d03059e74880:log:5', 'hash': '0xe161edf4f0fcea77df489e98179f9bf800cb0b1b356675e5ecb4d03059e74880', 'from': '0x57ce252e7be9a132cb75ee5658b72ed0e0106810', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:38:19.000Z'}}, {'blockNum': '0x53005a', 'uniqueId': '0x8981177a735223a25e7adde051a176116bb235872e3f5daff4c3506b65952215:log:92', 'hash': '0x8981177a735223a25e7adde051a176116bb235872e3f5daff4c3506b65952215', 'from': '0x462c79281a8fd443f232e2017cd046661c2e5a9d', 'to': '0xd5d51f7aa020d01016fabb57367ef7423eda8cef', 'value': 138.8998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x033be84660', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:38:35.000Z'}}, {'blockNum': '0x53005c', 'uniqueId': '0x9f6c0f23a5979fe3d71d442a62e8e01b1937eed8ace8ba4fc8647c2ec26d6c4f:log:57', 'hash': '0x9f6c0f23a5979fe3d71d442a62e8e01b1937eed8ace8ba4fc8647c2ec26d6c4f', 'from': '0x818f413866cc48e312451adaedc42b40a14f9999', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:39:38.000Z'}}, {'blockNum': '0x530061', 'uniqueId': '0x4977f55322cdb68134cd035caecf694fd25e74415061c6d73bd4478c691ba6a6:log:13', 'hash': '0x4977f55322cdb68134cd035caecf694fd25e74415061c6d73bd4478c691ba6a6', 'from': '0x273e2c8e250cc6961d3df72cfa984a164a39f0a6', 'to': '0x9660be3ef0982ca40a336d25a8e80566aa9468a3', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:41:30.000Z'}}, {'blockNum': '0x53007f', 'uniqueId': '0x155c3d8678443f28d9e58fe7d1dc240c4b0f4cac77bebbb3100449ba19785cef:log:3', 'hash': '0x155c3d8678443f28d9e58fe7d1dc240c4b0f4cac77bebbb3100449ba19785cef', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 10537.293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xf557291e20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:47:36.000Z'}}, {'blockNum': '0x53009d', 'uniqueId': '0xca72462b8276d16986c6f7f18723ca11cc96ec5a1d58b76fe8c129b83ead5795:log:4', 'hash': '0xca72462b8276d16986c6f7f18723ca11cc96ec5a1d58b76fe8c129b83ead5795', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:54:33.000Z'}}, {'blockNum': '0x53009f', 'uniqueId': '0x9bb5bb70fa2c0235ff8d94cbc495c012d97aff92780ac119b4bb8258ffc55726:log:7', 'hash': '0x9bb5bb70fa2c0235ff8d94cbc495c012d97aff92780ac119b4bb8258ffc55726', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:55:21.000Z'}}, {'blockNum': '0x53009f', 'uniqueId': '0xee5a5003b496ab1d20fa040a2dfa377d588f04e1b6ec46d50df4f5b2f38504b2:log:26', 'hash': '0xee5a5003b496ab1d20fa040a2dfa377d588f04e1b6ec46d50df4f5b2f38504b2', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18513.293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01af0bd34620', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:55:21.000Z'}}, {'blockNum': '0x5300a2', 'uniqueId': '0xd196af5e95c7d3359b5f7a95d7b2efb91e97490364c53f7f44bdf7f16ccc28c7:log:7', 'hash': '0xd196af5e95c7d3359b5f7a95d7b2efb91e97490364c53f7f44bdf7f16ccc28c7', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 8702.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcaa0cec820', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:56:15.000Z'}}, {'blockNum': '0x5300a8', 'uniqueId': '0xa9f4e38785696ec191e76bdc08dd7e5498b0ac698bf49748889f52ad93ae5905:log:0', 'hash': '0xa9f4e38785696ec191e76bdc08dd7e5498b0ac698bf49748889f52ad93ae5905', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 14456.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015097746880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:57:31.000Z'}}, {'blockNum': '0x5300b0', 'uniqueId': '0x329ac27cb6f7b961a2a0df1e6bff49114c01e69c6ed3177a7c2aa88094390f02:log:7', 'hash': '0x329ac27cb6f7b961a2a0df1e6bff49114c01e69c6ed3177a7c2aa88094390f02', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 14210.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014adba2fea0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T14:59:59.000Z'}}, {'blockNum': '0x5300b7', 'uniqueId': '0x64cf3b8de8320bffce6e64e541c5adc8814e010da6ff1e5b21263f7a408676c8:log:37', 'hash': '0x64cf3b8de8320bffce6e64e541c5adc8814e010da6ff1e5b21263f7a408676c8', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x241557866e20bd049995fb3804e42b7c76dc0f8f', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:01:46.000Z'}}, {'blockNum': '0x5300bf', 'uniqueId': '0xd9acc61d28cf8b091a9a1d584d01500953fd083b6d52ecad0dafce9c52b23a1b:log:48', 'hash': '0xd9acc61d28cf8b091a9a1d584d01500953fd083b6d52ecad0dafce9c52b23a1b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb668159856ff7cc17a7eb6f0d8254ad3c4b760bf', 'value': 29364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02abaf143400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:02:48.000Z'}}, {'blockNum': '0x5300c9', 'uniqueId': '0xb27a51160b6dc221683f2569cfe1521f9e52957c71be5d2d8ec0531f2c7f85cd:log:29', 'hash': '0xb27a51160b6dc221683f2569cfe1521f9e52957c71be5d2d8ec0531f2c7f85cd', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33782.348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03128e7c3780', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:05:14.000Z'}}, {'blockNum': '0x5300c9', 'uniqueId': '0xaed8fca71e30da810550ebb172813b036c33f9369b684845b96e700703993049:log:175', 'hash': '0xaed8fca71e30da810550ebb172813b036c33f9369b684845b96e700703993049', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16678.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01845578f020', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:05:14.000Z'}}, {'blockNum': '0x5300d2', 'uniqueId': '0x36d755031a123debcabe3ff724551b78c775cf9baea4c4d2a78d4fa808091597:log:3', 'hash': '0x36d755031a123debcabe3ff724551b78c775cf9baea4c4d2a78d4fa808091597', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 6225.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x90f17d2080', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:06:52.000Z'}}, {'blockNum': '0x5300e9', 'uniqueId': '0x8fbf685399851f512a686d052e5e1f8ad5efdef3d79c60f77430eb2ff0749a84:log:57', 'hash': '0x8fbf685399851f512a686d052e5e1f8ad5efdef3d79c60f77430eb2ff0749a84', 'from': '0xcdde5206157bb802ccb5e64694261653ace0aee5', 'to': '0xac0349f3705a4cfe87d3a7857403e97aad8fd9e5', 'value': 173.85365004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x040c3f9e0c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:12:42.000Z'}}, {'blockNum': '0x5300f3', 'uniqueId': '0x69cda978c0607958a197acbb2eafc6b7985e287690f3a84ce49a3ee22354b625:log:27', 'hash': '0x69cda978c0607958a197acbb2eafc6b7985e287690f3a84ce49a3ee22354b625', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6225.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x90f17d2080', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:15:05.000Z'}}, {'blockNum': '0x530139', 'uniqueId': '0x76593c839ecec01162c2d195110f6d36d2559ec5a831d0548b51f878ec1f941c:log:4', 'hash': '0x76593c839ecec01162c2d195110f6d36d2559ec5a831d0548b51f878ec1f941c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xafb182deccb3da39e7f08c6b34c17f77f0dc8298', 'value': 346.2368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x080fbb6e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:28:07.000Z'}}, {'blockNum': '0x530141', 'uniqueId': '0x019793d3c4c60f7b19225907a74a88eb8e07ee9ebaf9c3a7610398dabdc7d674:log:108', 'hash': '0x019793d3c4c60f7b19225907a74a88eb8e07ee9ebaf9c3a7610398dabdc7d674', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xec66e4f3de9163ea1557e139182f3c2f7d3c1723', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:30:13.000Z'}}, {'blockNum': '0x53014d', 'uniqueId': '0x644223b26a4054760132ab21c6394e3d652994b773ae78512c1aab4d2b16bf2f:log:0', 'hash': '0x644223b26a4054760132ab21c6394e3d652994b773ae78512c1aab4d2b16bf2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 26735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x026e79048f00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:32:59.000Z'}}, {'blockNum': '0x530190', 'uniqueId': '0x7ff3a585e7cc79d6334cb9a50bd6590aa47ea477619d3728a30330e0ecc042dc:log:33', 'hash': '0x7ff3a585e7cc79d6334cb9a50bd6590aa47ea477619d3728a30330e0ecc042dc', 'from': '0x3f083cc758f1c56de5d4da809e249f1809dcb505', 'to': '0x084a7e14c8cc81925569198c39d22a5c2a969e2d', 'value': 974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x16ad7e0e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:49:19.000Z'}}, {'blockNum': '0x5301a1', 'uniqueId': '0xd851559cd899b1c63abe9aa7595aba92c7c9760276c0b3dab5ca5ed460b8d897:log:37', 'hash': '0xd851559cd899b1c63abe9aa7595aba92c7c9760276c0b3dab5ca5ed460b8d897', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e148c2df00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T15:56:22.000Z'}}, {'blockNum': '0x5301b8', 'uniqueId': '0x65dc964cbec4e79652f94d40cafe72fa8ddbb0114f3610f01dc9629ff3183415:log:32', 'hash': '0x65dc964cbec4e79652f94d40cafe72fa8ddbb0114f3610f01dc9629ff3183415', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x209a5bced4adddcd8d4e551993fcd40148ee5ad7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:02:24.000Z'}}, {'blockNum': '0x5301c4', 'uniqueId': '0x671036433970a0b94b020dc09b45c061fce3a3083cf553d90c7e9acdbb612126:log:28', 'hash': '0x671036433970a0b94b020dc09b45c061fce3a3083cf553d90c7e9acdbb612126', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e148c2df00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:05:07.000Z'}}, {'blockNum': '0x5301cf', 'uniqueId': '0xe4fee38024a02f90cd35cc2bce2bd61508b227a284fd35869d6de839f708710b:log:72', 'hash': '0xe4fee38024a02f90cd35cc2bce2bd61508b227a284fd35869d6de839f708710b', 'from': '0xac0349f3705a4cfe87d3a7857403e97aad8fd9e5', 'to': '0x18adf2007a93a6394a459c5535eeffdb997527d6', 'value': 173.85365004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x040c3f9e0c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:07:21.000Z'}}, {'blockNum': '0x5301dc', 'uniqueId': '0x55ad4f1c0fcd3f60363c61e28be7d18c9d0ce3d52cb9d5988a35d756250e2c77:log:22', 'hash': '0x55ad4f1c0fcd3f60363c61e28be7d18c9d0ce3d52cb9d5988a35d756250e2c77', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'value': 29743.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02b483868500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:09:33.000Z'}}, {'blockNum': '0x5301e9', 'uniqueId': '0x1785f6e1ba270c639031b5fe5f1728aa767e0232bdefc4e7b50c7a3aa5098bee:log:13', 'hash': '0x1785f6e1ba270c639031b5fe5f1728aa767e0232bdefc4e7b50c7a3aa5098bee', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'value': 8398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc387fb0e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:11:51.000Z'}}, {'blockNum': '0x5301f9', 'uniqueId': '0xaeab02846078db10ad238b851c4e6033eada48a05f9e3f7eb84fca0d75447fe3:log:32', 'hash': '0xaeab02846078db10ad238b851c4e6033eada48a05f9e3f7eb84fca0d75447fe3', 'from': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38141.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03780b819300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:15:11.000Z'}}, {'blockNum': '0x5301fb', 'uniqueId': '0x2aac14a3467c829699f2270e7803c71f40814bece92a498b45442efd35fbfa9c:log:29', 'hash': '0x2aac14a3467c829699f2270e7803c71f40814bece92a498b45442efd35fbfa9c', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x25bb5e014dd970e8096abfc7e96ed218cbb65a5e', 'value': 16392.75396303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x017dac6d7ccf', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:15:35.000Z'}}, {'blockNum': '0x530208', 'uniqueId': '0xa9fb16fc4189ab618076d2592549e79d0483ed4d95508c555d2fd9ded1f7924b:log:18', 'hash': '0xa9fb16fc4189ab618076d2592549e79d0483ed4d95508c555d2fd9ded1f7924b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x4bb1676391611d031f171a2a321808ab8daeb4ee', 'value': 2795.588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x411700c280', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:17:50.000Z'}}, {'blockNum': '0x530227', 'uniqueId': '0x807c1b683f9cc2d649eabf6010d6ba8896449742d0a196bd9094ce5e0cc343a4:log:11', 'hash': '0x807c1b683f9cc2d649eabf6010d6ba8896449742d0a196bd9094ce5e0cc343a4', 'from': '0x25bb5e014dd970e8096abfc7e96ed218cbb65a5e', 'to': '0xb614345e0357c8f720e1a16735a9f0b49fe98153', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:26:38.000Z'}}, {'blockNum': '0x530236', 'uniqueId': '0xb1e57a6f2e8d970b640e16be78f57feb390db22051065197ca20182841a699b8:log:15', 'hash': '0xb1e57a6f2e8d970b640e16be78f57feb390db22051065197ca20182841a699b8', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x25342d120ae2565bc060fe65141f47f4fa4de82f', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:30:25.000Z'}}, {'blockNum': '0x530264', 'uniqueId': '0xe1773490fabe66608048ae4b9375bbad4013a68ee97ef836b83652a762e38122:log:20', 'hash': '0xe1773490fabe66608048ae4b9375bbad4013a68ee97ef836b83652a762e38122', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xce565d6b238abf43d24be6008a922bcca4258942', 'value': 33946.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x031663786b40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:42:11.000Z'}}, {'blockNum': '0x530265', 'uniqueId': '0xd86776aaa7691ffa5686af21c5c905caa56d8f6c041c48091216e2f9d1fe5944:log:5', 'hash': '0xd86776aaa7691ffa5686af21c5c905caa56d8f6c041c48091216e2f9d1fe5944', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 8920.159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcfb04a7560', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:42:45.000Z'}}, {'blockNum': '0x53026e', 'uniqueId': '0xcbf7bd0cbc0ab32b78ed6350ba616f2d49e246374d170cd63821fdea2fcd1073:log:23', 'hash': '0xcbf7bd0cbc0ab32b78ed6350ba616f2d49e246374d170cd63821fdea2fcd1073', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8920.159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcfb04a7560', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:45:03.000Z'}}, {'blockNum': '0x530279', 'uniqueId': '0x19be25eac34bc288156d4709907e156d98ebe44137243566d98825a90f634d51:log:40', 'hash': '0x19be25eac34bc288156d4709907e156d98ebe44137243566d98825a90f634d51', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e00cdb4a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:46:44.000Z'}}, {'blockNum': '0x53027d', 'uniqueId': '0x8a942ed30aa1564f8a20b5c8d60695cc3ef122ed6f14ad69cf86fd48423b88e7:log:23', 'hash': '0x8a942ed30aa1564f8a20b5c8d60695cc3ef122ed6f14ad69cf86fd48423b88e7', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xb555c0419ac5966e6d6f0d866f77bebffd592c81', 'value': 2767.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4072818dc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:47:40.000Z'}}, {'blockNum': '0x53029e', 'uniqueId': '0x6321b7a30ca0cbfa5b4f149c5e3dc249ca25d15853a49fe8d9a41ba08f1149bd:log:13', 'hash': '0x6321b7a30ca0cbfa5b4f149c5e3dc249ca25d15853a49fe8d9a41ba08f1149bd', 'from': '0xce565d6b238abf43d24be6008a922bcca4258942', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33946.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x031663786b40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:55:17.000Z'}}, {'blockNum': '0x53029e', 'uniqueId': '0x4e20574d7918b00666687ba6ca67cc597b2d39cf84ecdbd61021e6aeed2ce620:log:14', 'hash': '0x4e20574d7918b00666687ba6ca67cc597b2d39cf84ecdbd61021e6aeed2ce620', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e00cdb4a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:55:17.000Z'}}, {'blockNum': '0x5302ab', 'uniqueId': '0xd9d44934219cdaeb1de954f4be59773137e9c0890c13f68ff74c784ab0cece84:log:96', 'hash': '0xd9d44934219cdaeb1de954f4be59773137e9c0890c13f68ff74c784ab0cece84', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01ddc4bb2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T16:58:36.000Z'}}, {'blockNum': '0x5302b4', 'uniqueId': '0xaaaec73b41c6bc73fb215a0ced7934f93fba6784df513814dbebf84f1826b27a:log:120', 'hash': '0xaaaec73b41c6bc73fb215a0ced7934f93fba6784df513814dbebf84f1826b27a', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x659d0715f2ab1bc451844e56201cad69a283916f', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:00:02.000Z'}}, {'blockNum': '0x5302bb', 'uniqueId': '0x99047acf9265837b1188edaa24758d205d9a5f3be12d83a3ba46386f5e8806e5:log:2', 'hash': '0x99047acf9265837b1188edaa24758d205d9a5f3be12d83a3ba46386f5e8806e5', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 849.14262022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x13c548d006', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:01:08.000Z'}}, {'blockNum': '0x5302bf', 'uniqueId': '0x2886e245156b1fc3ef7b06510e151d87664fa0c42d91be4c739f09791d5f4ae5:log:26', 'hash': '0x2886e245156b1fc3ef7b06510e151d87664fa0c42d91be4c739f09791d5f4ae5', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'value': 359.42023253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x085e4fc055', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:01:51.000Z'}}, {'blockNum': '0x5302bf', 'uniqueId': '0x800ec89604b37abcbcb85e5faf567e0659f52812b49e7dc1302ef1bcd557f1e5:log:71', 'hash': '0x800ec89604b37abcbcb85e5faf567e0659f52812b49e7dc1302ef1bcd557f1e5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 4490.629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x688e3c1120', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:01:51.000Z'}}, {'blockNum': '0x5302c1', 'uniqueId': '0xccc6389342ed95ac43dabd7c14d0dd541c27dab9dfad8254c54949553191e364:log:16', 'hash': '0xccc6389342ed95ac43dabd7c14d0dd541c27dab9dfad8254c54949553191e364', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 2869.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x42d081a980', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:02:05.000Z'}}, {'blockNum': '0x5302c1', 'uniqueId': '0xb25681c804b4423714eeef4dde46207131aa307e341d489a887aea939fc9d1d3:log:39', 'hash': '0xb25681c804b4423714eeef4dde46207131aa307e341d489a887aea939fc9d1d3', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf8851b834dfff1beeaea24ccde31acce8e2739b2', 'value': 3666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x555b101200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:02:05.000Z'}}, {'blockNum': '0x5302c5', 'uniqueId': '0xe5ab4633125eb93c11b5896ffd278e69a2d42439d25e377d515e63204e0afb36:log:22', 'hash': '0xe5ab4633125eb93c11b5896ffd278e69a2d42439d25e377d515e63204e0afb36', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4659.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6c7d82ebc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:03:10.000Z'}}, {'blockNum': '0x5302c8', 'uniqueId': '0xdc70bf6f125e32ada84911226c5026f9301fb655470a61553c61ade14519bf8b:log:48', 'hash': '0xdc70bf6f125e32ada84911226c5026f9301fb655470a61553c61ade14519bf8b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'value': 1064.82765074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x18cade0d12', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:03:31.000Z'}}, {'blockNum': '0x5302cb', 'uniqueId': '0x6f344602e46956e39499c2430039bb2e54424f251570acc6d225a4524e1f208b:log:17', 'hash': '0x6f344602e46956e39499c2430039bb2e54424f251570acc6d225a4524e1f208b', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 6295.96475897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9296dfd1f9', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:16.000Z'}}, {'blockNum': '0x5302cb', 'uniqueId': '0x6a36202315b35850ceaf23404a43d82cc89d3dcadcc473fbf7a4138d574f0c2d:log:54', 'hash': '0x6a36202315b35850ceaf23404a43d82cc89d3dcadcc473fbf7a4138d574f0c2d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 77084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0702c0719c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:16.000Z'}}, {'blockNum': '0x5302cb', 'uniqueId': '0x6d685b8b561b95744c29ac14e00a93028847c81763b5b14d2160adbcfe6ebd80:log:89', 'hash': '0x6d685b8b561b95744c29ac14e00a93028847c81763b5b14d2160adbcfe6ebd80', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5508.76462022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8042cbbbc6', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:16.000Z'}}, {'blockNum': '0x5302cb', 'uniqueId': '0xa13c248905e7e8c6076b18f758da370d3726a14dade984872c5c086c5ba1beb9:log:90', 'hash': '0xa13c248905e7e8c6076b18f758da370d3726a14dade984872c5c086c5ba1beb9', 'from': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11632.919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010ed999b860', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:16.000Z'}}, {'blockNum': '0x5302cc', 'uniqueId': '0xf0972ec58ba979e826720f1312ca9609d90aa7b42ba033887015df7befb858f5:log:14', 'hash': '0xf0972ec58ba979e826720f1312ca9609d90aa7b42ba033887015df7befb858f5', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01ddc4bb2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:23.000Z'}}, {'blockNum': '0x5302cd', 'uniqueId': '0xf2d2b975a0863322a2d0875c7ed72a859b8ad8670b78d0961f7439f6f9848b1d:log:11', 'hash': '0xf2d2b975a0863322a2d0875c7ed72a859b8ad8670b78d0961f7439f6f9848b1d', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02756f325a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:29.000Z'}}, {'blockNum': '0x5302d0', 'uniqueId': '0x7ec8f28e3d0fb4536418ed3b1a64ce352e569bb910a596232dd042d5a2e36e44:log:29', 'hash': '0x7ec8f28e3d0fb4536418ed3b1a64ce352e569bb910a596232dd042d5a2e36e44', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x7d482f72cc87612cfd3a96fca7482b5f42246c6f', 'value': 10848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfc931e6000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:05:48.000Z'}}, {'blockNum': '0x5302d4', 'uniqueId': '0x7cc69329210232069f730a999f71565a25da5199359bc6521013c8d09e37a9b1:log:3', 'hash': '0x7cc69329210232069f730a999f71565a25da5199359bc6521013c8d09e37a9b1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xaded80f59aa659099110a23e70ecf5bb2fa77390', 'value': 8880.279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcec2966860', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:06:39.000Z'}}, {'blockNum': '0x5302d8', 'uniqueId': '0x14fe959ab115887213c435331ff2071aff396ded0711859a5af7b463bedc45ae:log:41', 'hash': '0x14fe959ab115887213c435331ff2071aff396ded0711859a5af7b463bedc45ae', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 12279.052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011de4da6f80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:07:17.000Z'}}, {'blockNum': '0x5302dc', 'uniqueId': '0xd806052a9c2cc622e2719f7f5658a3e69776a7b3887efec99b135be2e5863053:log:34', 'hash': '0xd806052a9c2cc622e2719f7f5658a3e69776a7b3887efec99b135be2e5863053', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8a4d5690167a03f073c9b8df81d5cd7eb5508930', 'value': 4556.9443189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6a19813692', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:08:00.000Z'}}, {'blockNum': '0x5302dc', 'uniqueId': '0x77070bd0bdceb4e4f96409598a654b3ccaf3eae17698479b1f98276e18b1875b:log:37', 'hash': '0x77070bd0bdceb4e4f96409598a654b3ccaf3eae17698479b1f98276e18b1875b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 6872.321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa00239a6a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:08:00.000Z'}}, {'blockNum': '0x5302dd', 'uniqueId': '0x1ea1b7ffb2eccf03aedc4775d75bb86175c13e6c994e13de1d2b6909b210c841:log:4', 'hash': '0x1ea1b7ffb2eccf03aedc4775d75bb86175c13e6c994e13de1d2b6909b210c841', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x7ebca7a683670cf208654be4b31ff65d536fd6f9', 'value': 9495.88884066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdd17e87a62', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:08:23.000Z'}}, {'blockNum': '0x5302df', 'uniqueId': '0xee6fba726ea80267739c2251c39e9afa967bf327cca91ebfe010af0ccd263deb:log:3', 'hash': '0xee6fba726ea80267739c2251c39e9afa967bf327cca91ebfe010af0ccd263deb', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 1986.024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2e3da02100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:09:06.000Z'}}, {'blockNum': '0x5302e2', 'uniqueId': '0x7dcbfd3839cf5579d76527cd6d7933ea655efa005a19051226f58c3409258a8c:log:6', 'hash': '0x7dcbfd3839cf5579d76527cd6d7933ea655efa005a19051226f58c3409258a8c', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'value': 79267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x073594234300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:09:38.000Z'}}, {'blockNum': '0x5302e2', 'uniqueId': '0x7b5dc67d7c348dfdb3d9682865aea50578973bd150cdb2b46837c93835acf561:log:7', 'hash': '0x7b5dc67d7c348dfdb3d9682865aea50578973bd150cdb2b46837c93835acf561', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'value': 106935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x09b9c644d700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:09:38.000Z'}}, {'blockNum': '0x5302e3', 'uniqueId': '0x8b16da62b8a3fe705f9dc31412507cdd65d6a60b1cfdce5c411bfa1290ecdb7d:log:3', 'hash': '0x8b16da62b8a3fe705f9dc31412507cdd65d6a60b1cfdce5c411bfa1290ecdb7d', 'from': '0x6b660726400697bb9c8c55c0def79745d80d19f9', 'to': '0x6c8821c6b6c9c2473b5ecb76e87f879d1974ae45', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:09:47.000Z'}}, {'blockNum': '0x5302e9', 'uniqueId': '0x6d4fb61d2d20bb41da6c97077ef2862199a3ee166a057678f120ba696749ccd6:log:74', 'hash': '0x6d4fb61d2d20bb41da6c97077ef2862199a3ee166a057678f120ba696749ccd6', 'from': '0x8a4d5690167a03f073c9b8df81d5cd7eb5508930', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 4556.9443189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6a19813692', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:11:13.000Z'}}, {'blockNum': '0x5302ec', 'uniqueId': '0xb6426419826dd8c602b2857465be32b3be51e65df934cc1415c6d4d350ce11b1:log:51', 'hash': '0xb6426419826dd8c602b2857465be32b3be51e65df934cc1415c6d4d350ce11b1', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'value': 3552.89898452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x52b8ed9dd4', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:11:57.000Z'}}, {'blockNum': '0x5302ef', 'uniqueId': '0x296e13d969263fa63e108f5833aa74b9a7d2f7f97027fbfa76be33f485da7b27:log:3', 'hash': '0x296e13d969263fa63e108f5833aa74b9a7d2f7f97027fbfa76be33f485da7b27', 'from': '0x6d6006303ec9d0e4aa3db261c08fa8fe3a321dc1', 'to': '0x81d49904815d36734d51e2107e2790cb87532175', 'value': 100.04258978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02544ce0a2', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:12:22.000Z'}}, {'blockNum': '0x5302ef', 'uniqueId': '0x9d0407a17a0d2dd9e214e5cbc40a5097a26de2f7ebf0b7992f57f8ce97e2f7c0:log:5', 'hash': '0x9d0407a17a0d2dd9e214e5cbc40a5097a26de2f7ebf0b7992f57f8ce97e2f7c0', 'from': '0xff64f34e8511693e3dffa0e1fe037a6a65f3937b', 'to': '0x26f92f17c3e60fa019ca5ffe929dc86679e2c285', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:12:22.000Z'}}, {'blockNum': '0x5302f4', 'uniqueId': '0x4b64843dd4a5c2d54802b5e3998266897535f3abb2113d7234ac75f7846f664c:log:3', 'hash': '0x4b64843dd4a5c2d54802b5e3998266897535f3abb2113d7234ac75f7846f664c', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 6480.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x96e2ca4080', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:13:24.000Z'}}, {'blockNum': '0x5302f6', 'uniqueId': '0x2c3fd57e36c01f0d5e369ff54346b1759d9a43d4aa22f2d8cd5849b96bd460ea:log:9', 'hash': '0x2c3fd57e36c01f0d5e369ff54346b1759d9a43d4aa22f2d8cd5849b96bd460ea', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x639d1b9c55c7ae6f7e81d23c6b8726d81e702194', 'value': 1560.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2454247ca0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:13:57.000Z'}}, {'blockNum': '0x5302f6', 'uniqueId': '0x4fd56a9b3593aefb4d5c69a97c3f84cb5b4effee433e74a899c93dd9984f6996:log:24', 'hash': '0x4fd56a9b3593aefb4d5c69a97c3f84cb5b4effee433e74a899c93dd9984f6996', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'value': 17805.7988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x019e92d4cc40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:13:57.000Z'}}, {'blockNum': '0x5302f7', 'uniqueId': '0x087e9882ea4bb54102e9ec06367fd3f8b9d2abeeffba98b3dc9d43ee466a8ad7:log:52', 'hash': '0x087e9882ea4bb54102e9ec06367fd3f8b9d2abeeffba98b3dc9d43ee466a8ad7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x858ed8b568be10776374d9169dabd612d940b2d7', 'value': 2865.36012803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x42b6e09403', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:25.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xc988e40e1dfe791a0a1b00fbd999b471d54dcb5c9c56715a559ad9ff7596d2bc:log:8', 'hash': '0xc988e40e1dfe791a0a1b00fbd999b471d54dcb5c9c56715a559ad9ff7596d2bc', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x013cd78f1efe5b15e718a8682be794341687179b', 'value': 18127.964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01a61315e180', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xf07798af56e990493eb77c82fc6f2c1943cf6697ba942d42505b6705c21e816c:log:52', 'hash': '0xf07798af56e990493eb77c82fc6f2c1943cf6697ba942d42505b6705c21e816c', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21137.397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01ec24b43720', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x27488fba408a9508e2a19b09f480a904c8c85af116fd3d9cf0de0bc76ea8d076:log:53', 'hash': '0x27488fba408a9508e2a19b09f480a904c8c85af116fd3d9cf0de0bc76ea8d076', 'from': '0x7ebca7a683670cf208654be4b31ff65d536fd6f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9495.88884066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdd17e87a62', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xecdc909b25abe90b97718ad02e3e8c9dfb2659c8313897fb40354da819ec4a23:log:54', 'hash': '0xecdc909b25abe90b97718ad02e3e8c9dfb2659c8313897fb40354da819ec4a23', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6295.96475897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9296dfd1f9', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x97b6c755f50a9a5377c4916e09e4b4de9f127f72d873a236a10b0dc1add21ae2:log:55', 'hash': '0x97b6c755f50a9a5377c4916e09e4b4de9f127f72d873a236a10b0dc1add21ae2', 'from': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97072.7988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x08d426f80f40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xeb879d1492bf92964c230bd6c686e6fa16c70dbbb880fb280b114b0fbb1f56fd:log:60', 'hash': '0xeb879d1492bf92964c230bd6c686e6fa16c70dbbb880fb280b114b0fbb1f56fd', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 11417.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0109d6762380', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x270f2a356d4927cf4131d11bbb15631297321c2c819b476933a2a2b8ed762d21:log:63', 'hash': '0x270f2a356d4927cf4131d11bbb15631297321c2c819b476933a2a2b8ed762d21', 'from': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 106935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x09b9c644d700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x27cb959258946265f190a52aec1ff5ec7adb51c9a0f72bec2281e72f25cef14e:log:64', 'hash': '0x27cb959258946265f190a52aec1ff5ec7adb51c9a0f72bec2281e72f25cef14e', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02756f325a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xca18d046a61c5928ddc5b66db0e93eb672fc0bc589386f15405c0e48d2189963:log:65', 'hash': '0xca18d046a61c5928ddc5b66db0e93eb672fc0bc589386f15405c0e48d2189963', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0702c0719c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0xc56ad5a2489f5df89470edef2c1adae41d5c83b002cb41c04298a017c2e31b6d:log:66', 'hash': '0xc56ad5a2489f5df89470edef2c1adae41d5c83b002cb41c04298a017c2e31b6d', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6480.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x96e2ca4080', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x639c39c4aca5ceae05fd0e6adb6f20ac71d10c2a9cbc7723a192481f919f99ab:log:67', 'hash': '0x639c39c4aca5ceae05fd0e6adb6f20ac71d10c2a9cbc7723a192481f919f99ab', 'from': '0x8b1090425c820c9055b279f5da71a307b3759f2b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5316.55568144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7bc9242b10', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fa', 'uniqueId': '0x0c3cbd4a4a6f419ef8d5227e2a353027089a526e1b02bd4a2c957d4f5b9967a0:log:78', 'hash': '0x0c3cbd4a4a6f419ef8d5227e2a353027089a526e1b02bd4a2c957d4f5b9967a0', 'from': '0xaded80f59aa659099110a23e70ecf5bb2fa77390', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8880.279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcec2966860', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:14:58.000Z'}}, {'blockNum': '0x5302fc', 'uniqueId': '0xacf1c0273363c7c57c96db0bf9bb456edea014b729524a0da1769ededd06d757:log:11', 'hash': '0xacf1c0273363c7c57c96db0bf9bb456edea014b729524a0da1769ededd06d757', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xcccc7385e0e9b48d0cfbed5b2c3a9d98391ec1a4', 'value': 773.6676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x12036b1240', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:15:50.000Z'}}, {'blockNum': '0x5302fc', 'uniqueId': '0x5d094b832d78ac2af13a43bf052e92f2884b797a469dc9e8439e748ed1bfbb55:log:12', 'hash': '0x5d094b832d78ac2af13a43bf052e92f2884b797a469dc9e8439e748ed1bfbb55', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 31015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d21fce4700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:15:50.000Z'}}, {'blockNum': '0x5302fd', 'uniqueId': '0x1c516efb56268aa0e039df5edbb495a9cdbb117d1de39ca2f3532856e5ccb562:log:6', 'hash': '0x1c516efb56268aa0e039df5edbb495a9cdbb117d1de39ca2f3532856e5ccb562', 'from': '0xd4feebe7d216f105f744c36b95f61b0d337f36a9', 'to': '0x6c8821c6b6c9c2473b5ecb76e87f879d1974ae45', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:16:00.000Z'}}, {'blockNum': '0x530300', 'uniqueId': '0x9a52dd1f13bc88c85220d917ffafd175d9a751dd1b0f84b0f6d0f1bad218d4a0:log:3', 'hash': '0x9a52dd1f13bc88c85220d917ffafd175d9a751dd1b0f84b0f6d0f1bad218d4a0', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 12296.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011e4fd1dbc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:17:01.000Z'}}, {'blockNum': '0x530300', 'uniqueId': '0x9e461fc1885c8fcb085961436421d2ce14bbc4b4d90cdaedb83986ba6b8b2040:log:56', 'hash': '0x9e461fc1885c8fcb085961436421d2ce14bbc4b4d90cdaedb83986ba6b8b2040', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 11595.8125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010dfc6db1d0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:17:01.000Z'}}, {'blockNum': '0x530301', 'uniqueId': '0x7429fb8e4b47f568388a85e6a5637b82cb3d8e8fe7dc8820641dc64adf82168d:log:15', 'hash': '0x7429fb8e4b47f568388a85e6a5637b82cb3d8e8fe7dc8820641dc64adf82168d', 'from': '0xd403c988700c3518894e75109337efa6cab1f482', 'to': '0x6c8821c6b6c9c2473b5ecb76e87f879d1974ae45', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:17:52.000Z'}}, {'blockNum': '0x530305', 'uniqueId': '0x8312453e6a98101b4d744fd6360893b29c69a6672787ae9bf644ac3f4a1098eb:log:3', 'hash': '0x8312453e6a98101b4d744fd6360893b29c69a6672787ae9bf644ac3f4a1098eb', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 4806.537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6fe9316ba0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:19:37.000Z'}}, {'blockNum': '0x530307', 'uniqueId': '0xe1985956f7a3c3cfbb88fa4488df52dfddd0543a42cc76541eafa851d53b7a7e:log:24', 'hash': '0xe1985956f7a3c3cfbb88fa4488df52dfddd0543a42cc76541eafa851d53b7a7e', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'value': 16917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0189e12d7500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:20:17.000Z'}}, {'blockNum': '0x53030a', 'uniqueId': '0xe9a0e081d2c4d4a5f355bd3b74cc246fb71be02e8ad741f3a50d6fef589108c6:log:46', 'hash': '0xe9a0e081d2c4d4a5f355bd3b74cc246fb71be02e8ad741f3a50d6fef589108c6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 8248.0099827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc009f8737e', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:21:02.000Z'}}, {'blockNum': '0x530314', 'uniqueId': '0x51467685f6f2eac538a93f473e36cad79a4bcdd6cd15f4a4a9e73513ed39fcec:log:0', 'hash': '0x51467685f6f2eac538a93f473e36cad79a4bcdd6cd15f4a4a9e73513ed39fcec', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:22:38.000Z'}}, {'blockNum': '0x530317', 'uniqueId': '0x0bbb2fc008f07ed227e70f9cebbb9c855da4697b7ebb714379dac8b020b3f16e:log:7', 'hash': '0x0bbb2fc008f07ed227e70f9cebbb9c855da4697b7ebb714379dac8b020b3f16e', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 11054.736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0101635c7a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:23:55.000Z'}}, {'blockNum': '0x530318', 'uniqueId': '0xcdf8b375fbbd130f5a6024e8392ad7d570fa8307612ff4349a1abdb3605c8837:log:74', 'hash': '0xcdf8b375fbbd130f5a6024e8392ad7d570fa8307612ff4349a1abdb3605c8837', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 59116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x056066d16c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:24:38.000Z'}}, {'blockNum': '0x530318', 'uniqueId': '0x59b9e0920edeada3655fb7d3e9ee5f3c083ec36179afb3b4bcf6ad80877df43b:log:75', 'hash': '0x59b9e0920edeada3655fb7d3e9ee5f3c083ec36179afb3b4bcf6ad80877df43b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 43939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03ff08d94300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:24:38.000Z'}}, {'blockNum': '0x530318', 'uniqueId': '0x1f55f9fc31baef5110bdfbcfadc245c02c90434a3fd7c011b723743aff3b1398:log:76', 'hash': '0x1f55f9fc31baef5110bdfbcfadc245c02c90434a3fd7c011b723743aff3b1398', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5df69a9ab5d0189c7403090ab518fd20f1c0fb13', 'value': 59980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x057484a8cc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:24:38.000Z'}}, {'blockNum': '0x530318', 'uniqueId': '0xd20c1b90227e0732c7c32be132beb223ac07dfdf3fcbdbc1603d3d17137c8bda:log:77', 'hash': '0xd20c1b90227e0732c7c32be132beb223ac07dfdf3fcbdbc1603d3d17137c8bda', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xca93ed536dffeb230d2c889a6cd8bb05298ee0e1', 'value': 36206.76016436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x034b011b9934', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:24:38.000Z'}}, {'blockNum': '0x530319', 'uniqueId': '0xdd3610efc6b393d6c3fb5278d30c54f2eff2f006f38c3a0fbc21aef6b8d1372a:log:5', 'hash': '0xdd3610efc6b393d6c3fb5278d30c54f2eff2f006f38c3a0fbc21aef6b8d1372a', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 7602.125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb100322e20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:25:01.000Z'}}, {'blockNum': '0x53031a', 'uniqueId': '0x9fd132f036635226f0a82f2d134e6ff5a3b30990dff587baaee4d5ae33947d25:log:35', 'hash': '0x9fd132f036635226f0a82f2d134e6ff5a3b30990dff587baaee4d5ae33947d25', 'from': '0xa0c734885448968b3ff642438e0f2f3449789a05', 'to': '0xe93182bc148aa40a793ec4e3ec4c5f32553fd945', 'value': 4353.04609963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x655a2d38ab', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:25:28.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0xab4c0b6536c7148f2931e439a63c6917076647a3588b061f8c8e3e95734f0454:log:9', 'hash': '0xab4c0b6536c7148f2931e439a63c6917076647a3588b061f8c8e3e95734f0454', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x5f6ee8bbdf918692e765a9569c96069513cd601e', 'value': 4521.395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x69459d41e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0x3fe44bc4d6bd1bdd96e51b8d401b85257b42cd92448c1187a96283c98d8d409d:log:52', 'hash': '0x3fe44bc4d6bd1bdd96e51b8d401b85257b42cd92448c1187a96283c98d8d409d', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11595.8125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010dfc6db1d0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0xd3ea3a8905b7d80b3e0d7b55a707f8ccc16741f4a7ff6b533776014b902ea3a4:log:70', 'hash': '0xd3ea3a8905b7d80b3e0d7b55a707f8ccc16741f4a7ff6b533776014b902ea3a4', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23351.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x021fb32e55c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0xe3d7b7d6ad19f67cf156c5319cdc1a437eff5214afc7164990c4ae928f1fb8fa:log:71', 'hash': '0xe3d7b7d6ad19f67cf156c5319cdc1a437eff5214afc7164990c4ae928f1fb8fa', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8248.0099827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc009f8737e', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0xd1c34b33502610ed9395057b15e6d04d6acf04e97e9a9ad10c99ac709339483b:log:73', 'hash': '0xd1c34b33502610ed9395057b15e6d04d6acf04e97e9a9ad10c99ac709339483b', 'from': '0x013cd78f1efe5b15e718a8682be794341687179b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18127.964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01a61315e180', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0x8f00e190c0f4caa526aeec92f2f203339bc030fc622b550d53f5b06b8195724e:log:74', 'hash': '0x8f00e190c0f4caa526aeec92f2f203339bc030fc622b550d53f5b06b8195724e', 'from': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0189e12d7500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0x179e6eda3f1edc98a6f169d909de1327dd9785e23c062f27d022def9cabfd356:log:75', 'hash': '0x179e6eda3f1edc98a6f169d909de1327dd9785e23c062f27d022def9cabfd356', 'from': '0x7d482f72cc87612cfd3a96fca7482b5f42246c6f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfc931e6000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031b', 'uniqueId': '0x209a2a9b5c528f154a0e974b5faf5ac7050430bb5aa4a965af1e8bd14c51b24c:log:77', 'hash': '0x209a2a9b5c528f154a0e974b5faf5ac7050430bb5aa4a965af1e8bd14c51b24c', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21387.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01f1f84ad580', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:26:36.000Z'}}, {'blockNum': '0x53031e', 'uniqueId': '0x5fee39b5489249e46e987e8202f709535f198fb484ea076d4ca7c5b75f6e6483:log:14', 'hash': '0x5fee39b5489249e46e987e8202f709535f198fb484ea076d4ca7c5b75f6e6483', 'from': '0x36db5d7ebaee0a474df461aa0653d00a5e1d1797', 'to': '0xe24e22208d26265541585e8f748f7c3b1030c8bb', 'value': 6952.0764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa1dd9abbc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:27:36.000Z'}}, {'blockNum': '0x53031f', 'uniqueId': '0xe47fcb8c54a4a69f06475374cfee036072821e7495b0f3a862f9912a60237b07:log:39', 'hash': '0xe47fcb8c54a4a69f06475374cfee036072821e7495b0f3a862f9912a60237b07', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01df2a5be400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:27:46.000Z'}}, {'blockNum': '0x530323', 'uniqueId': '0x5d12f2c2b94adeecf71990848fbf850d4f7bc6cde16445d0e9f42e044d028824:log:18', 'hash': '0x5d12f2c2b94adeecf71990848fbf850d4f7bc6cde16445d0e9f42e044d028824', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:29:12.000Z'}}, {'blockNum': '0x530328', 'uniqueId': '0xe8818de7978fb0c38a4fcaae0e46247203a05eb59c6e667794ebabe21d97ae5d:log:23', 'hash': '0xe8818de7978fb0c38a4fcaae0e46247203a05eb59c6e667794ebabe21d97ae5d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 10767.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfab3e5b600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:19.000Z'}}, {'blockNum': '0x530328', 'uniqueId': '0x52c7034896784e20f8f4d3ec96758766cb790702b318a605fc004409ef11621a:log:28', 'hash': '0x52c7034896784e20f8f4d3ec96758766cb790702b318a605fc004409ef11621a', 'from': '0xe31251e2b777cd1f3928de81bbd04af39f5d2055', 'to': '0x4d3d8187f8e051f91fbaf7375396d161ef684e64', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:19.000Z'}}, {'blockNum': '0x53032b', 'uniqueId': '0x019a347a54ab6a7446fc2954d800d5fcec5e4f1021dcff9e710e7d94e2d1dde1:log:0', 'hash': '0x019a347a54ab6a7446fc2954d800d5fcec5e4f1021dcff9e710e7d94e2d1dde1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:48.000Z'}}, {'blockNum': '0x53032b', 'uniqueId': '0xaf760791318ca8cbc376f9d34db20aa359e80ea3ab81c44ec6160e036ef9db6b:log:58', 'hash': '0xaf760791318ca8cbc376f9d34db20aa359e80ea3ab81c44ec6160e036ef9db6b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x4d3954269d93a960ae2a998d9c7efa1c6b9f4a25', 'value': 3903.57142856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5ae3194d48', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:48.000Z'}}, {'blockNum': '0x53032d', 'uniqueId': '0x80c76c879bac167f1e7a92540297f6e0f538a8c6fb2ad0b7237da59b5fb370b6:log:55', 'hash': '0x80c76c879bac167f1e7a92540297f6e0f538a8c6fb2ad0b7237da59b5fb370b6', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x74af0e093ff399fc8ac50cb54a26f8ddbfc5e18c', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:30:57.000Z'}}, {'blockNum': '0x53032f', 'uniqueId': '0xb4fa9b62a021414d4a94818ea287829f54d2d060815c925ea4c218a8c1026d60:log:92', 'hash': '0xb4fa9b62a021414d4a94818ea287829f54d2d060815c925ea4c218a8c1026d60', 'from': '0xed2785b3392862faf66a59de91f171fa0478a5b5', 'to': '0xb70811b42bb4419054cecfdac544dd3c91c4114d', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:31:35.000Z'}}, {'blockNum': '0x530330', 'uniqueId': '0xd800b3368583b82b47f05f3287a00c2cf24099f09306657a89be37b7c68124e5:log:4', 'hash': '0xd800b3368583b82b47f05f3287a00c2cf24099f09306657a89be37b7c68124e5', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xad1a458742cccc876eb473e4c29b5bbc4409f9d2', 'value': 217.63829749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x051139aff5', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:31:58.000Z'}}, {'blockNum': '0x530331', 'uniqueId': '0x0fc2c362ada63d4049849560e8b45de7e0d0669d61347dcf1fe50a15a88ab831:log:8', 'hash': '0x0fc2c362ada63d4049849560e8b45de7e0d0669d61347dcf1fe50a15a88ab831', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:32:14.000Z'}}, {'blockNum': '0x530331', 'uniqueId': '0x06bdb9ae3468f0d6897e06cc3b833d6f598209ebf2e470c32dd318f255c001d5:log:149', 'hash': '0x06bdb9ae3468f0d6897e06cc3b833d6f598209ebf2e470c32dd318f255c001d5', 'from': '0xa348bc749d527ab9cc0dea70965388d56afba244', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:32:14.000Z'}}, {'blockNum': '0x530334', 'uniqueId': '0x496758a92b7463887301a4d855eeb8d880d5f895afa6fc0f6bfc3471d63d2df3:log:5', 'hash': '0x496758a92b7463887301a4d855eeb8d880d5f895afa6fc0f6bfc3471d63d2df3', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:33:21.000Z'}}, {'blockNum': '0x530336', 'uniqueId': '0x6f1c71372ff5b3beea81bd1c2067ef9a9c2fcf0e15eb4115e7ceddb5411536f2:log:6', 'hash': '0x6f1c71372ff5b3beea81bd1c2067ef9a9c2fcf0e15eb4115e7ceddb5411536f2', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'value': 9969.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe81be364e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:34:22.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x8ccfc1562a5fb67e62deb63c10734ba8ef82d0d173352105a39d23b50daf344e:log:8', 'hash': '0x8ccfc1562a5fb67e62deb63c10734ba8ef82d0d173352105a39d23b50daf344e', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x390a751ba30a560cd3860978ab2ad4542dbaa59dcf299be92b5c613bcf2c1202:log:33', 'hash': '0x390a751ba30a560cd3860978ab2ad4542dbaa59dcf299be92b5c613bcf2c1202', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7602.125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb100322e20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x0ef8c3af308995a85a3b4ef14877c6253bb9205120ec20be5ad9df9ec6a37d56:log:34', 'hash': '0x0ef8c3af308995a85a3b4ef14877c6253bb9205120ec20be5ad9df9ec6a37d56', 'from': '0x6c8821c6b6c9c2473b5ecb76e87f879d1974ae45', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x28d9a6bdf587a261cf5ccb17a6a6d3b092a3eb77fc92dc0950c94d55b617a6ec:log:35', 'hash': '0x28d9a6bdf587a261cf5ccb17a6a6d3b092a3eb77fc92dc0950c94d55b617a6ec', 'from': '0x5df69a9ab5d0189c7403090ab518fd20f1c0fb13', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x057484a8cc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x3af2e2eb53cfa86025fc4111e8b4496c7bc85266fae96030c73d3a3864ee1e05:log:36', 'hash': '0x3af2e2eb53cfa86025fc4111e8b4496c7bc85266fae96030c73d3a3864ee1e05', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x056066d16c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x32d08735c0bf7b77c0e1a1be93dfc29a243f6d1028ecf2c0e5b5f7893981c9d1:log:37', 'hash': '0x32d08735c0bf7b77c0e1a1be93dfc29a243f6d1028ecf2c0e5b5f7893981c9d1', 'from': '0xb70811b42bb4419054cecfdac544dd3c91c4114d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0xa425b912ce7741f93b7d626c13057c72433cf2973a3d5607b468d2dcecb006b1:log:38', 'hash': '0xa425b912ce7741f93b7d626c13057c72433cf2973a3d5607b468d2dcecb006b1', 'from': '0xca93ed536dffeb230d2c889a6cd8bb05298ee0e1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36206.76016436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x034b011b9934', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x59b5192b418ce5eb35bd0a34203579cdcf1145a50fc3a7ceea4ce81e8ab30059:log:39', 'hash': '0x59b5192b418ce5eb35bd0a34203579cdcf1145a50fc3a7ceea4ce81e8ab30059', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03ff08d94300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0xebbba01e4a091b329bd898f44a1b97ee244009e01c2bd124027b576747c2ecdf:log:105', 'hash': '0xebbba01e4a091b329bd898f44a1b97ee244009e01c2bd124027b576747c2ecdf', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01df2a5be400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0x1b910f2dcf65139a8d6aeae790a0f445de7dd83e493469fe9962d04903cdedfd:log:106', 'hash': '0x1b910f2dcf65139a8d6aeae790a0f445de7dd83e493469fe9962d04903cdedfd', 'from': '0xe24e22208d26265541585e8f748f7c3b1030c8bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11952.0764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011647ed43c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033a', 'uniqueId': '0xe1e8db3fcad4ff2c540984a3de0ea96dc5ef9106f677819befa1fdbedc9efc23:log:107', 'hash': '0xe1e8db3fcad4ff2c540984a3de0ea96dc5ef9106f677819befa1fdbedc9efc23', 'from': '0x5f6ee8bbdf918692e765a9569c96069513cd601e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8228.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbf942360a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:35:07.000Z'}}, {'blockNum': '0x53033d', 'uniqueId': '0x256f134db4985bf63b59e0922b4e85a02e40946259b39dceebf40d6d0957bee0:log:9', 'hash': '0x256f134db4985bf63b59e0922b4e85a02e40946259b39dceebf40d6d0957bee0', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 4656.987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6dce3ae0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:36:32.000Z'}}, {'blockNum': '0x53033f', 'uniqueId': '0xa9d71fcbda2640b495497ec4dbcd3bd9f7b0ea4eb6de752fc4856f4a79ea4da4:log:9', 'hash': '0xa9d71fcbda2640b495497ec4dbcd3bd9f7b0ea4eb6de752fc4856f4a79ea4da4', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xad1a458742cccc876eb473e4c29b5bbc4409f9d2', 'value': 9.29956012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x376e00ac', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:37:03.000Z'}}, {'blockNum': '0x530340', 'uniqueId': '0xfd5cd1528b643cd1b15a3b5d5e7d912efe94546cdb874fe66540cf3e20dfb7e1:log:5', 'hash': '0xfd5cd1528b643cd1b15a3b5d5e7d912efe94546cdb874fe66540cf3e20dfb7e1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 6724.765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9c92b91020', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:37:29.000Z'}}, {'blockNum': '0x530352', 'uniqueId': '0x977ada914ad8ba154858521a612c9f8c27e0460ad629f0cd7b0b971bc7adcf66:log:4', 'hash': '0x977ada914ad8ba154858521a612c9f8c27e0460ad629f0cd7b0b971bc7adcf66', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x8aad1a4a67fa3fe984a747b790ec42984df3a727', 'value': 4023.5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5dadf2a980', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:41:25.000Z'}}, {'blockNum': '0x530352', 'uniqueId': '0x0565de17a357820af2eee07465462cc97389c51141d85394856a0c0346b36b4b:log:16', 'hash': '0x0565de17a357820af2eee07465462cc97389c51141d85394856a0c0346b36b4b', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 8212.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbf38e0a540', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:41:25.000Z'}}, {'blockNum': '0x530359', 'uniqueId': '0x74de8732468b71ea2a242584713a69eee063178b94d1251d596919ce23d149a0:log:1', 'hash': '0x74de8732468b71ea2a242584713a69eee063178b94d1251d596919ce23d149a0', 'from': '0x09745476b4d610b4918ae4db69af8cde80bfdc69', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:42:39.000Z'}}, {'blockNum': '0x53035f', 'uniqueId': '0xccd4ec18adc72ec382f880e0eb13045e48d784095ac55ee49189e85a31aa5212:log:4', 'hash': '0xccd4ec18adc72ec382f880e0eb13045e48d784095ac55ee49189e85a31aa5212', 'from': '0xeb9e14531a4cd34642f8ab840f4b77243bdd6c39', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:43:40.000Z'}}, {'blockNum': '0x530362', 'uniqueId': '0x0d8ea9529a36792dff958d24d93a27c8baf1e5640bf1d2f484cb9fd5fc145e9e:log:13', 'hash': '0x0d8ea9529a36792dff958d24d93a27c8baf1e5640bf1d2f484cb9fd5fc145e9e', 'from': '0xb204dc66798e2ae304ffe9ac9fa6d0a81d15c204', 'to': '0x2fb54285b9f1c05eb5d6d44abe0a0437bb84b993', 'value': 661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0f63ddf500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:44:07.000Z'}}, {'blockNum': '0x530367', 'uniqueId': '0xf27eb300c5484efd1ba13a109d34c2a42cb8667170f0082d21895a40960c3125:log:11', 'hash': '0xf27eb300c5484efd1ba13a109d34c2a42cb8667170f0082d21895a40960c3125', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 2487.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x39eabeaae0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:25.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0x5a391ee7bef7bb6043c16c8c0f8f7afd41c4dd33191e6876b272aaa6c8ac78e8:log:18', 'hash': '0x5a391ee7bef7bb6043c16c8c0f8f7afd41c4dd33191e6876b272aaa6c8ac78e8', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8212.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbf38e0a540', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0x31f0cdbb57a9698e99339f2e813a6a34ec3e442bd72aed096e8d036182d8e0b0:log:19', 'hash': '0x31f0cdbb57a9698e99339f2e813a6a34ec3e442bd72aed096e8d036182d8e0b0', 'from': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9969.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe81be364e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0x121a164f6addc86203055412cd49e6aca695297471e7574d2c9f6949541a6525:log:21', 'hash': '0x121a164f6addc86203055412cd49e6aca695297471e7574d2c9f6949541a6525', 'from': '0x8aad1a4a67fa3fe984a747b790ec42984df3a727', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6598.8097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x99a3f88710', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0x641728005514921648e46ee708057239956cdb3e9fd1841b6ffe38d9c9b33f6b:log:22', 'hash': '0x641728005514921648e46ee708057239956cdb3e9fd1841b6ffe38d9c9b33f6b', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15574.137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x016a9d1721a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x530368', 'uniqueId': '0xfede50b0185b143dd5f8e4028584a6c22bd89b76859b1f9fcaf13c840c54cddc:log:23', 'hash': '0xfede50b0185b143dd5f8e4028584a6c22bd89b76859b1f9fcaf13c840c54cddc', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6724.765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9c92b91020', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:45:46.000Z'}}, {'blockNum': '0x53036c', 'uniqueId': '0x0f61c47ba12a86c54f8f1b79613c019a1531fa52b4e4103400503715b88e4212:log:2', 'hash': '0x0f61c47ba12a86c54f8f1b79613c019a1531fa52b4e4103400503715b88e4212', 'from': '0xfe22c8c1b13550af411ddc8c6dfc917ecc89bab1', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:46:06.000Z'}}, {'blockNum': '0x53036d', 'uniqueId': '0x9e21543b7c885671b03b19a93024b79b3a83656242eb7eeaba04f171824ede77:log:25', 'hash': '0x9e21543b7c885671b03b19a93024b79b3a83656242eb7eeaba04f171824ede77', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 31339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d9aaff0b00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:46:14.000Z'}}, {'blockNum': '0x530374', 'uniqueId': '0xe7b603e4c9f74d2c20ee4b0edb4da2f129b63ae7dbd86d1507b26d84f54b4a23:log:1', 'hash': '0xe7b603e4c9f74d2c20ee4b0edb4da2f129b63ae7dbd86d1507b26d84f54b4a23', 'from': '0x409df5d84115af9aa4e5a9ca7cd34410605ca412', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:48:01.000Z'}}, {'blockNum': '0x530379', 'uniqueId': '0xcd8d4916e45c77af1256b74f5a82953931428529d2c8a3ac38a061ed7713e926:log:5', 'hash': '0xcd8d4916e45c77af1256b74f5a82953931428529d2c8a3ac38a061ed7713e926', 'from': '0xeffb0c80b10f79fd879ee2605e356c93ad302492', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:49:16.000Z'}}, {'blockNum': '0x53037f', 'uniqueId': '0x90d270d36f24d1458535df5bb63a8ecf91dd7379e80558e7ba313e415f338529:log:8', 'hash': '0x90d270d36f24d1458535df5bb63a8ecf91dd7379e80558e7ba313e415f338529', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xafb182deccb3da39e7f08c6b34c17f77f0dc8298', 'value': 176.787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x041dbb8de0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:51:13.000Z'}}, {'blockNum': '0x530383', 'uniqueId': '0xb00652aecfa736ca110c40682a912959aeaad5b4a7f4678d4140248c8babbaa8:log:9', 'hash': '0xb00652aecfa736ca110c40682a912959aeaad5b4a7f4678d4140248c8babbaa8', 'from': '0x0dd00d2a6ac32ffa99f9e3247f139e41c37bdbb1', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:53:17.000Z'}}, {'blockNum': '0x53038c', 'uniqueId': '0xe106b9621ef383930eaec448b42e9c234023efc0242e74aaa67c9b74e383b64b:log:173', 'hash': '0xe106b9621ef383930eaec448b42e9c234023efc0242e74aaa67c9b74e383b64b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfa494915700050201e283533bf2ba7a690a17b3e', 'value': 20554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01de8f630a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:54:50.000Z'}}, {'blockNum': '0x53038f', 'uniqueId': '0xbf1931343384d77ccebc5ba3c5838cdfcd7ff16a9a25f66de2c3b5fba13420f9:log:17', 'hash': '0xbf1931343384d77ccebc5ba3c5838cdfcd7ff16a9a25f66de2c3b5fba13420f9', 'from': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:55:05.000Z'}}, {'blockNum': '0x53038f', 'uniqueId': '0x41a092744a2b2f68fe77c3ecde3d5314208edc14396694c41864c6ba6439ca85:log:18', 'hash': '0x41a092744a2b2f68fe77c3ecde3d5314208edc14396694c41864c6ba6439ca85', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d9aaff0b00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:55:05.000Z'}}, {'blockNum': '0x530391', 'uniqueId': '0x2402dd0a1453727555a6fe0b895e88ab57e2c46110a49422e596582d485e15da:log:18', 'hash': '0x2402dd0a1453727555a6fe0b895e88ab57e2c46110a49422e596582d485e15da', 'from': '0x15d0b674c8059aea78baa415bacc23228bec3281', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:55:51.000Z'}}, {'blockNum': '0x53039b', 'uniqueId': '0x1b812f2448312a95a65a4ab47f585b4a1019265e0749ef730a11111c782c8ce8:log:8', 'hash': '0x1b812f2448312a95a65a4ab47f585b4a1019265e0749ef730a11111c782c8ce8', 'from': '0xde5f4adc04a4f0c0c5fe27a24e5ba7c2fe89e1e5', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:57:16.000Z'}}, {'blockNum': '0x53039f', 'uniqueId': '0x138523d6b5a7c063b7b3bd3e3b78bfe4e49e66fa486ca509b77cd7c492f03516:log:20', 'hash': '0x138523d6b5a7c063b7b3bd3e3b78bfe4e49e66fa486ca509b77cd7c492f03516', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 55000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0500918bd800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:57:44.000Z'}}, {'blockNum': '0x5303a2', 'uniqueId': '0xa4185b0bd88c56ccd73dbd4d970c9f0bad485a9661b2059586910ee1a03e1273:log:3', 'hash': '0xa4185b0bd88c56ccd73dbd4d970c9f0bad485a9661b2059586910ee1a03e1273', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 7379.794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xabd2ffff40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T17:58:27.000Z'}}, {'blockNum': '0x5303ac', 'uniqueId': '0x0ebaf1ff3a4a11dab8f49365bed77019a73446deff176811b544b06a99244cdb:log:20', 'hash': '0x0ebaf1ff3a4a11dab8f49365bed77019a73446deff176811b544b06a99244cdb', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x22c7ebd472fca4da60fbde55ec283349bb1e6b24', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:00:05.000Z'}}, {'blockNum': '0x5303b0', 'uniqueId': '0x3ecd1f5bee1427d8032095fea0a621dc7d72909c9259daf5958262d16d96bb9b:log:2', 'hash': '0x3ecd1f5bee1427d8032095fea0a621dc7d72909c9259daf5958262d16d96bb9b', 'from': '0x27b8ca61039cc0ef3a5a11a0b71347c2cf8f3bcc', 'to': '0x4ca309cffb4b55568d3f161eafc1a7b912721196', 'value': 19397.7879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01c3a3d36270', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:00:52.000Z'}}, {'blockNum': '0x5303b3', 'uniqueId': '0x64c06591fad23e47fa678c792e0b021fc8693b68fc2409b9e284381d8909ef53:log:127', 'hash': '0x64c06591fad23e47fa678c792e0b021fc8693b68fc2409b9e284381d8909ef53', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 53460.92395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04dcbbf029f8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:01:31.000Z'}}, {'blockNum': '0x5303b7', 'uniqueId': '0x63832dff821d58dd760acdd6b923bc040a4c926edd7d49a74e9e3de821afe1d4:log:2', 'hash': '0x63832dff821d58dd760acdd6b923bc040a4c926edd7d49a74e9e3de821afe1d4', 'from': '0xef4c422553dc005501b0c74010af4939d32aeaf4', 'to': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'value': 5003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x747c342b00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:02:34.000Z'}}, {'blockNum': '0x5303c3', 'uniqueId': '0xdebd7ada63e434ffc1ce86d4c376d1bccae51e761f041f24c3d1bb7d960bf779:log:47', 'hash': '0xdebd7ada63e434ffc1ce86d4c376d1bccae51e761f041f24c3d1bb7d960bf779', 'from': '0x7bd4a6771de806f8e4f6815e34ed069a6055ccb5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xba5598e300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:05:07.000Z'}}, {'blockNum': '0x5303c3', 'uniqueId': '0x3657dc5390553f6f53d56dcb33b1bf139071427fd55b4c9baddfdd5b02a9e1f9:log:48', 'hash': '0x3657dc5390553f6f53d56dcb33b1bf139071427fd55b4c9baddfdd5b02a9e1f9', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9867.309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe5bdbeaa20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:05:07.000Z'}}, {'blockNum': '0x5303cd', 'uniqueId': '0x996254f32a097faccae3579a8d821b7a57f37263fd91a0bfd39038bb1797fa55:log:9', 'hash': '0x996254f32a097faccae3579a8d821b7a57f37263fd91a0bfd39038bb1797fa55', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9443.584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdbe025a000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:07:18.000Z'}}, {'blockNum': '0x5303d1', 'uniqueId': '0x568976c21097e5f34aed0575477955247249ab46191e0b7cd4b36a8cd8dc1cf3:log:0', 'hash': '0x568976c21097e5f34aed0575477955247249ab46191e0b7cd4b36a8cd8dc1cf3', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x888c27df025eeb62d6e63c7e76471fa156158303', 'value': 879.5834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x147ab9c1a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:08:04.000Z'}}, {'blockNum': '0x5303d2', 'uniqueId': '0x10e35a66dfb2ec00e115af01627e9775f0f5c70afe9c9e3e427c9327fefbbc3e:log:67', 'hash': '0x10e35a66dfb2ec00e115af01627e9775f0f5c70afe9c9e3e427c9327fefbbc3e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'value': 16658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0183d96ad200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:08:31.000Z'}}, {'blockNum': '0x5303f0', 'uniqueId': '0x7be858159237eb1565ad84cebbb4b0056c38d3d3f7f8b304870db806d4426b30:log:2', 'hash': '0x7be858159237eb1565ad84cebbb4b0056c38d3d3f7f8b304870db806d4426b30', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53460.92395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04dcbbf029f8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:15:04.000Z'}}, {'blockNum': '0x5303f0', 'uniqueId': '0x7d53d23085dd5113861b18707402cfc44df924908b4a8b83f1ebdcb9d8816d35:log:3', 'hash': '0x7d53d23085dd5113861b18707402cfc44df924908b4a8b83f1ebdcb9d8816d35', 'from': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0183d96ad200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:15:04.000Z'}}, {'blockNum': '0x530403', 'uniqueId': '0xb54d8f7991b19f9228ccf59565981fb8feb52824f9275591b59fd40e5d100958:log:6', 'hash': '0xb54d8f7991b19f9228ccf59565981fb8feb52824f9275591b59fd40e5d100958', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 6979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa27e14e300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:19:37.000Z'}}, {'blockNum': '0x530413', 'uniqueId': '0x141e6e2e2974c8f3e60fdb96d846e7c089b87f532a376136bff87cc910e5451b:log:5', 'hash': '0x141e6e2e2974c8f3e60fdb96d846e7c089b87f532a376136bff87cc910e5451b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 6467.539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x96958955e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:23:07.000Z'}}, {'blockNum': '0x530416', 'uniqueId': '0x1fda77e50fb3a0135ee7807df8977eef10704c3e73e76895a49e9a4219d3fd38:log:8', 'hash': '0x1fda77e50fb3a0135ee7807df8977eef10704c3e73e76895a49e9a4219d3fd38', 'from': '0x998fc33ab8ef2946b47b7f3dfb416411a77e50a2', 'to': '0xfbd01ccdcce4d50fb591c756298167ace1f41229', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:23:58.000Z'}}, {'blockNum': '0x53041d', 'uniqueId': '0x7d0062b48633a051ec7256a8e4152beb5214719f138fec13980024e58f2b7cab:log:12', 'hash': '0x7d0062b48633a051ec7256a8e4152beb5214719f138fec13980024e58f2b7cab', 'from': '0x46ed6562a168970fe4d992c81ad1aff66486779b', 'to': '0x602167d1449ccdc8ee23f117a4c4129f9e9ef724', 'value': 10000.448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d750a800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:26:28.000Z'}}, {'blockNum': '0x530421', 'uniqueId': '0xc0f6ae560c6a9de2944274ad29bab14a8694307606dd4898969589f0ffb84b74:log:0', 'hash': '0xc0f6ae560c6a9de2944274ad29bab14a8694307606dd4898969589f0ffb84b74', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x98888fa741486ef92ef73c52b84f20f35806c480', 'value': 12964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x012dd7762400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:27:35.000Z'}}, {'blockNum': '0x53042c', 'uniqueId': '0x4f05232bd9abcc2232263abc8c5ed4fec7b2761007f40d42d25fe9331383029c:log:48', 'hash': '0x4f05232bd9abcc2232263abc8c5ed4fec7b2761007f40d42d25fe9331383029c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2b7dd3cfdb707c553b502bc531611d01af496103', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:30:12.000Z'}}, {'blockNum': '0x530441', 'uniqueId': '0x2a791f8113133b0904712e498429dce9080aa74bc9d69cbd7c04f5acb57ffe58:log:13', 'hash': '0x2a791f8113133b0904712e498429dce9080aa74bc9d69cbd7c04f5acb57ffe58', 'from': '0x602167d1449ccdc8ee23f117a4c4129f9e9ef724', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12206.448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011c34198600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:35:03.000Z'}}, {'blockNum': '0x53045e', 'uniqueId': '0x2f7521e80548d331a51adf2086efe9cd35887863149034dd051f03efdd25fc64:log:73', 'hash': '0x2f7521e80548d331a51adf2086efe9cd35887863149034dd051f03efdd25fc64', 'from': '0xc542ba836c11735d21142f8d85da006423d939f2', 'to': '0x54c701528a69a245815078b0bc16c40ba360ecb7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:41:09.000Z'}}, {'blockNum': '0x530464', 'uniqueId': '0x606c084db5452b9db4898e16d986e19f82d1c4eb63e51a1de5b3d6cc588df776:log:61', 'hash': '0x606c084db5452b9db4898e16d986e19f82d1c4eb63e51a1de5b3d6cc588df776', 'from': '0xe97b172f32c4f0011488ef6e73ddf3a06e6f85b2', 'to': '0x54c701528a69a245815078b0bc16c40ba360ecb7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:42:26.000Z'}}, {'blockNum': '0x530469', 'uniqueId': '0x3846f6fc068c282c382e0a6028dd73c8d5e5ead98f24beced997106a38084b18:log:74', 'hash': '0x3846f6fc068c282c382e0a6028dd73c8d5e5ead98f24beced997106a38084b18', 'from': '0x209cf7a9df48143c075e2a03f970479caf0ec237', 'to': '0x54c701528a69a245815078b0bc16c40ba360ecb7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:43:07.000Z'}}, {'blockNum': '0x530472', 'uniqueId': '0x6a42bf63ad58ef625497df70177d892d2fe70df52319e519b7598b489c326a0e:log:36', 'hash': '0x6a42bf63ad58ef625497df70177d892d2fe70df52319e519b7598b489c326a0e', 'from': '0x54c701528a69a245815078b0bc16c40ba360ecb7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:45:43.000Z'}}, {'blockNum': '0x530494', 'uniqueId': '0xead74c699ea78110f29e395faa2e271218362e469bbac8b09f27145a0ea78535:log:22', 'hash': '0xead74c699ea78110f29e395faa2e271218362e469bbac8b09f27145a0ea78535', 'from': '0x143dde7078bdd0ce30b56b4fe85658cb49e65425', 'to': '0x60e73ec819eee24a6ce4c62a75a53c872b1dd24d', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T18:55:50.000Z'}}, {'blockNum': '0x5304a3', 'uniqueId': '0xb33f7044230b9ab1a8ddb44db04129c8bf9a37e0f986c580f08f041422ed9827:log:58', 'hash': '0xb33f7044230b9ab1a8ddb44db04129c8bf9a37e0f986c580f08f041422ed9827', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd00092700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:00:34.000Z'}}, {'blockNum': '0x5304a4', 'uniqueId': '0xe2e6c85efd67de475d024954e2375a9640b56e2f958fbd50890741ce79ce85b0:log:82', 'hash': '0xe2e6c85efd67de475d024954e2375a9640b56e2f958fbd50890741ce79ce85b0', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x9ff09d5846395a263cbf6c7c70f3eeb7b9d5f506', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:00:46.000Z'}}, {'blockNum': '0x5304a5', 'uniqueId': '0xcfcbdf7bb2b8b32bc87c7bca2f116fd7d27423630c8b380b55b728f0a39d1d3b:log:2', 'hash': '0xcfcbdf7bb2b8b32bc87c7bca2f116fd7d27423630c8b380b55b728f0a39d1d3b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 10169.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xecc658f300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:01:30.000Z'}}, {'blockNum': '0x5304ac', 'uniqueId': '0x918d9b51d7db6171b9806f577dab0a2b036549355750e7d96b00132184a307b1:log:4', 'hash': '0x918d9b51d7db6171b9806f577dab0a2b036549355750e7d96b00132184a307b1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 10463.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xf39f68d2e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:03:03.000Z'}}, {'blockNum': '0x5304ac', 'uniqueId': '0x22b7377d4f250ba84b24cff00b1ce3c95ccf33a5c7d482f30b2eeb3b8187e713:log:12', 'hash': '0x22b7377d4f250ba84b24cff00b1ce3c95ccf33a5c7d482f30b2eeb3b8187e713', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 26702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x026db4528e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:03:03.000Z'}}, {'blockNum': '0x5304b7', 'uniqueId': '0x6d7113313731fe88652517feb86c1afea5b53adccf882356c74c2d2eeea7b5d6:log:17', 'hash': '0x6d7113313731fe88652517feb86c1afea5b53adccf882356c74c2d2eeea7b5d6', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x026db4528e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:05:13.000Z'}}, {'blockNum': '0x5304b7', 'uniqueId': '0x939c92ac0f4303b6a019cada473f6a7c249d8804165d42bf354ebce75b7dc7a7:log:18', 'hash': '0x939c92ac0f4303b6a019cada473f6a7c249d8804165d42bf354ebce75b7dc7a7', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20632.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e065c1c5e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:05:13.000Z'}}, {'blockNum': '0x5304b7', 'uniqueId': '0x3427a967d2c5d9c89dc279579a578f672962863758634399fa676b797258abe5:log:21', 'hash': '0x3427a967d2c5d9c89dc279579a578f672962863758634399fa676b797258abe5', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd00092700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:05:13.000Z'}}, {'blockNum': '0x5304e2', 'uniqueId': '0x0929db6a50aad5f42fe8827e2e493b5ec499fe0390c8139b6a641b49d28c5f1b:log:56', 'hash': '0x0929db6a50aad5f42fe8827e2e493b5ec499fe0390c8139b6a641b49d28c5f1b', 'from': '0xaacd58da4c1a5261e9c8355447ec92cc21df8221', 'to': '0x34d2e76e688d781fccbb0d8d22d94161f331f031', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:14:59.000Z'}}, {'blockNum': '0x5304ed', 'uniqueId': '0x9d7f2df4b10470649f92bede4259f134b50f89dc56a96f901cc0cbe7db3e3d31:log:39', 'hash': '0x9d7f2df4b10470649f92bede4259f134b50f89dc56a96f901cc0cbe7db3e3d31', 'from': '0xdbbb49da2a2addaf45a2cfdb5670d0056429de50', 'to': '0x34d2e76e688d781fccbb0d8d22d94161f331f031', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:17:45.000Z'}}, {'blockNum': '0x5304f4', 'uniqueId': '0xed2474e305f359b7185b8b84bc563989b7d314c56f9f02e2be107edb1505052b:log:51', 'hash': '0xed2474e305f359b7185b8b84bc563989b7d314c56f9f02e2be107edb1505052b', 'from': '0x529d0907d8cfe6b24298b369abadca2fa689363c', 'to': '0x34d2e76e688d781fccbb0d8d22d94161f331f031', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:19:24.000Z'}}, {'blockNum': '0x5304fd', 'uniqueId': '0x66007b58905f9f1b6ff27956f0018b2ded2c81f1fccc2a161cec324d3f0e3894:log:31', 'hash': '0x66007b58905f9f1b6ff27956f0018b2ded2c81f1fccc2a161cec324d3f0e3894', 'from': '0x55274b9bb3ab562686003a359b04c63de9d1a256', 'to': '0x4cc6908f3453da5cacb0990d6684f2a1fb0aaf03', 'value': 3720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x569ced8800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:23:00.000Z'}}, {'blockNum': '0x530517', 'uniqueId': '0x590e0c0f9d57a9e72ca6bdd8b9619b08910725e03ceaa7acb3f7250a93e77563:log:24', 'hash': '0x590e0c0f9d57a9e72ca6bdd8b9619b08910725e03ceaa7acb3f7250a93e77563', 'from': '0x98888fa741486ef92ef73c52b84f20f35806c480', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 12964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x012dd7762400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:30:02.000Z'}}, {'blockNum': '0x530517', 'uniqueId': '0xcedbf08cfc329a37c4397aa0c8a76a61d1083ef09df2dda28aad330f89460c6e:log:138', 'hash': '0xcedbf08cfc329a37c4397aa0c8a76a61d1083ef09df2dda28aad330f89460c6e', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x5c1b60b54d67b8c899d2666a4c3f5cc27a03b941', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:30:02.000Z'}}, {'blockNum': '0x530525', 'uniqueId': '0xd6c59055b2ef2f2f5d4555654c34ca1a4769c33cf8d8423a5f27336fac26ced2:log:6', 'hash': '0xd6c59055b2ef2f2f5d4555654c34ca1a4769c33cf8d8423a5f27336fac26ced2', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 6694.855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9be0720660', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:34:29.000Z'}}, {'blockNum': '0x530526', 'uniqueId': '0x7bb855e0134d636fd5c6219c80f37efd1ac9c5fc8acdd5ad6cb0851494078dba:log:2', 'hash': '0x7bb855e0134d636fd5c6219c80f37efd1ac9c5fc8acdd5ad6cb0851494078dba', 'from': '0x7b0d7c8c4fb2d8cd41d6ca8372c02a08d7071d17', 'to': '0xef8c0073e52ea1277a08b6eef1dcd04cd2956f28', 'value': 5100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76be5e6c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:34:36.000Z'}}, {'blockNum': '0x530539', 'uniqueId': '0x58ec55ebe27bb643e4101cae19d1d72f9a90dfb93aac534219e0ca0109289675:log:5', 'hash': '0x58ec55ebe27bb643e4101cae19d1d72f9a90dfb93aac534219e0ca0109289675', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd61f9f78dfb4ff2f294151345968843df176a06d', 'value': 213.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04fa0c9dc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:39:31.000Z'}}, {'blockNum': '0x530543', 'uniqueId': '0x81251772e950bb89d284e7e55ec5bfb61456835803d83bbe291048befa972d6f:log:0', 'hash': '0x81251772e950bb89d284e7e55ec5bfb61456835803d83bbe291048befa972d6f', 'from': '0x591e1d87def5032938006a418c094dcd89177177', 'to': '0x13d064826d64a3a741502322d3b7934b4d25e996', 'value': 393.13419448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0927432cb8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:41:58.000Z'}}, {'blockNum': '0x53054f', 'uniqueId': '0xd37a465b2a0000dccabcd69ccb85c3c881e35d35d4894f4cde6297839a878333:log:4', 'hash': '0xd37a465b2a0000dccabcd69ccb85c3c881e35d35d4894f4cde6297839a878333', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6694.855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9be0720660', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:45:36.000Z'}}, {'blockNum': '0x530561', 'uniqueId': '0x25d36efe38b64b3478d5f4960e7e785a70d859514e0a4dab7cfb863b43b0fc96:log:52', 'hash': '0x25d36efe38b64b3478d5f4960e7e785a70d859514e0a4dab7cfb863b43b0fc96', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x4da8c523dade05bd8cb285d56d96b50db80c609c', 'value': 17843.85294117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x019f75a6cf25', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:52:15.000Z'}}, {'blockNum': '0x530575', 'uniqueId': '0xcb7b99e69a47a19a7a6ffd1c7c150dbb27a1e2bbd2fdf738cd6598c07cb52126:log:14', 'hash': '0xcb7b99e69a47a19a7a6ffd1c7c150dbb27a1e2bbd2fdf738cd6598c07cb52126', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x13b30bbb556879ba90f8c24e8fe43135958eeb94', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T19:57:46.000Z'}}, {'blockNum': '0x530584', 'uniqueId': '0x93d255839ab130a6ebee910a6791e2ffb87986f3306753fb2e0cb6123f31f74b:log:41', 'hash': '0x93d255839ab130a6ebee910a6791e2ffb87986f3306753fb2e0cb6123f31f74b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x5792f341e773fc58385ef18762d486dc322ef2ec', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:00:10.000Z'}}, {'blockNum': '0x530598', 'uniqueId': '0x2756ba03ed4cfc42720a4802a5df8c27c2f176823b476e4c6c2919d311663d8c:log:16', 'hash': '0x2756ba03ed4cfc42720a4802a5df8c27c2f176823b476e4c6c2919d311663d8c', 'from': '0x4da8c523dade05bd8cb285d56d96b50db80c609c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17843.85294117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x019f75a6cf25', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:05:11.000Z'}}, {'blockNum': '0x5305a9', 'uniqueId': '0x4ddf5ffa807e4d989c2cac4ab648916340d1836071d80401d779d02ee016853c:log:38', 'hash': '0x4ddf5ffa807e4d989c2cac4ab648916340d1836071d80401d779d02ee016853c', 'from': '0x1a5374e6e3f951a65f1df8e61a12e45ebf986a18', 'to': '0xd568aacda28662ef2b4af0fab3998cbbeca914a0', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:09:44.000Z'}}, {'blockNum': '0x5305ad', 'uniqueId': '0xdf0540988d6c49f174e3f731a2cb7c7100e792803bb39a7c84b9255dadecf778:log:9', 'hash': '0xdf0540988d6c49f174e3f731a2cb7c7100e792803bb39a7c84b9255dadecf778', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 8187.552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbea19ce400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:10:31.000Z'}}, {'blockNum': '0x5305af', 'uniqueId': '0xa8ce15572cad7c0822c8d963b8bf6c91db2962b09941e892854e252aecc94f51:log:10', 'hash': '0xa8ce15572cad7c0822c8d963b8bf6c91db2962b09941e892854e252aecc94f51', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028626cf6800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:11:22.000Z'}}, {'blockNum': '0x5305ba', 'uniqueId': '0xf677ccfbaa0d0f7ed8edb3b9b2aab88036e96a07273ee277a04dbbb8ae969314:log:22', 'hash': '0xf677ccfbaa0d0f7ed8edb3b9b2aab88036e96a07273ee277a04dbbb8ae969314', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6b70469ce21f3ffa5fd6aabcc41e1f4d257c78da', 'value': 2517.425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a9d05b4a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:14:21.000Z'}}, {'blockNum': '0x5305bf', 'uniqueId': '0x1f877869eefc3d2401bbb52bacbf1921308ef57fd6bb9b248e59ad0deab613e7:log:22', 'hash': '0x1f877869eefc3d2401bbb52bacbf1921308ef57fd6bb9b248e59ad0deab613e7', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028626cf6800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:15:06.000Z'}}, {'blockNum': '0x5305bf', 'uniqueId': '0xcf7451b44756cad32b44cfd6c51ef5150b06c2faf8a0d5b1eafc7525efd7f1a5:log:23', 'hash': '0xcf7451b44756cad32b44cfd6c51ef5150b06c2faf8a0d5b1eafc7525efd7f1a5', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8187.552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbea19ce400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:15:06.000Z'}}, {'blockNum': '0x5305d8', 'uniqueId': '0x326157ab6e3d61bbb68837082fb24ee90ffa96cdeecb9da06a1c6f3b5c86ed8a:log:12', 'hash': '0x326157ab6e3d61bbb68837082fb24ee90ffa96cdeecb9da06a1c6f3b5c86ed8a', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6b70469ce21f3ffa5fd6aabcc41e1f4d257c78da', 'value': 624.122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0e880e9840', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:21:28.000Z'}}, {'blockNum': '0x5305e6', 'uniqueId': '0x9713ece832b605e8775146713351886ec11cd3f1fc9c4eb23f3fb8c8bda94d72:log:23', 'hash': '0x9713ece832b605e8775146713351886ec11cd3f1fc9c4eb23f3fb8c8bda94d72', 'from': '0xc70a864739d94670fc456e108d75d0667626bd7b', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x517da02c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:23:56.000Z'}}, {'blockNum': '0x5305e8', 'uniqueId': '0x517ad501c401cda9e69664c968f2e0e6b93b02f00735144b4f44523822d04a8c:log:2', 'hash': '0x517ad501c401cda9e69664c968f2e0e6b93b02f00735144b4f44523822d04a8c', 'from': '0x468ddaddc42979a6fce664b6c3506090a997b791', 'to': '0x05ab638729a4b9f4897a90304f6dcc77aabb368d', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0773594000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:24:59.000Z'}}, {'blockNum': '0x5305ea', 'uniqueId': '0x89ade5033e667965bd0f57790aae98707698e88cb7b0b068b189c7afb550063f:log:0', 'hash': '0x89ade5033e667965bd0f57790aae98707698e88cb7b0b068b189c7afb550063f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 25702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02566bdba600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:25:35.000Z'}}, {'blockNum': '0x5305f0', 'uniqueId': '0x9a98d04051731a37f4505783929f261e100308d51e59e5b848cfa7763398871c:log:25', 'hash': '0x9a98d04051731a37f4505783929f261e100308d51e59e5b848cfa7763398871c', 'from': '0x13b30bbb556879ba90f8c24e8fe43135958eeb94', 'to': '0x4d5fff7cb7c1c234ec0758ccf0eeacff38a74896', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:27:10.000Z'}}, {'blockNum': '0x5305f1', 'uniqueId': '0xcd03d38159998774a770c6ee9b1f011f3149152ab376a5b87d0bb006340a4d95:log:7', 'hash': '0xcd03d38159998774a770c6ee9b1f011f3149152ab376a5b87d0bb006340a4d95', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xde692f7555911983051624d7c19afba64a4f3000', 'value': 322.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0781a75c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:27:40.000Z'}}, {'blockNum': '0x5305f5', 'uniqueId': '0x52d3210701ada9774e5583414466ab43ab41f82fd8e3580c7a4cc1dec1b470e0:log:30', 'hash': '0x52d3210701ada9774e5583414466ab43ab41f82fd8e3580c7a4cc1dec1b470e0', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x517da02c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:28:42.000Z'}}, {'blockNum': '0x5305f9', 'uniqueId': '0x35c050941bad299b2df709c5aedcdd73b71adb6c7584e0e757638ea07fdd3ed6:log:61', 'hash': '0x35c050941bad299b2df709c5aedcdd73b71adb6c7584e0e757638ea07fdd3ed6', 'from': '0x0910528c2ad9c2309ec8f5eeedd94b9b9e1f0246', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:31:05.000Z'}}, {'blockNum': '0x5305f9', 'uniqueId': '0xa93756a1ed72d7526e0d6c005772febd0ed4ba4e7b30ff2e681ab2b29a91f69b:log:88', 'hash': '0xa93756a1ed72d7526e0d6c005772febd0ed4ba4e7b30ff2e681ab2b29a91f69b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x6edf2fee7a77a3d984ecf3480ffe8046722f4c4e', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:31:05.000Z'}}, {'blockNum': '0x530605', 'uniqueId': '0x1108e2519aeaea2e06d7f8d6f0694ba32f26ba817687bf2742f25256d70c964b:log:77', 'hash': '0x1108e2519aeaea2e06d7f8d6f0694ba32f26ba817687bf2742f25256d70c964b', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:35:03.000Z'}}, {'blockNum': '0x530605', 'uniqueId': '0x9318bb4e2912095f05a4efd328f105c1d9c4ad32b2c78a75f03f425109d58e11:log:99', 'hash': '0x9318bb4e2912095f05a4efd328f105c1d9c4ad32b2c78a75f03f425109d58e11', 'from': '0x3aa748a0e88aedf75329946978872b359c9f173d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:35:03.000Z'}}, {'blockNum': '0x530606', 'uniqueId': '0x4ee22ae52c4e5ca92ce405dbf60b0284284d2d3b6cd019d69419660dfbcf3067:log:5', 'hash': '0x4ee22ae52c4e5ca92ce405dbf60b0284284d2d3b6cd019d69419660dfbcf3067', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:35:40.000Z'}}, {'blockNum': '0x53060e', 'uniqueId': '0xfa6e0220c2a682e2b54dcacaee6bd47fc407efe38a452fb7a5ee5642aaa363fb:log:37', 'hash': '0xfa6e0220c2a682e2b54dcacaee6bd47fc407efe38a452fb7a5ee5642aaa363fb', 'from': '0xbb1add66f1581fbaf579225479049ab247964337', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:37:45.000Z'}}, {'blockNum': '0x530617', 'uniqueId': '0x50f8db1db86d29603f8fc3e6072d00173ad0afb2b57a6e6e84e1b495145c8b77:log:1', 'hash': '0x50f8db1db86d29603f8fc3e6072d00173ad0afb2b57a6e6e84e1b495145c8b77', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 2750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x400746fe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:39:24.000Z'}}, {'blockNum': '0x53061d', 'uniqueId': '0x0ba23eeb27681c91fb8c931b9b3fecb47ec435faca34f9e2c8480e0f1fe1e78d:log:0', 'hash': '0x0ba23eeb27681c91fb8c931b9b3fecb47ec435faca34f9e2c8480e0f1fe1e78d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 25661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0255777a9d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:40:05.000Z'}}, {'blockNum': '0x530632', 'uniqueId': '0x98ef0bf7a9b2f376a47557d50c2e4cd0adbe7ec913972108733bebc073688063:log:32', 'hash': '0x98ef0bf7a9b2f376a47557d50c2e4cd0adbe7ec913972108733bebc073688063', 'from': '0xa5059c532c0ef4416a162d64cba8fd0c9539917e', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:45:02.000Z'}}, {'blockNum': '0x530633', 'uniqueId': '0xdb4ecd220d2c068642e42784476229431661f9e1b8d199b8db9aa3830ebdad1b:log:9', 'hash': '0xdb4ecd220d2c068642e42784476229431661f9e1b8d199b8db9aa3830ebdad1b', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0255777a9d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:45:11.000Z'}}, {'blockNum': '0x530640', 'uniqueId': '0xc1fd501251e176fab9938d3a65249d70f12c8cf6b12abb6cf5f800cd1f2c1122:log:29', 'hash': '0xc1fd501251e176fab9938d3a65249d70f12c8cf6b12abb6cf5f800cd1f2c1122', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:48:28.000Z'}}, {'blockNum': '0x530641', 'uniqueId': '0x0d6071948a4ca8868e4eb63b7938cc80a531ab50b669a8ce63f2f66d4c06bc33:log:64', 'hash': '0x0d6071948a4ca8868e4eb63b7938cc80a531ab50b669a8ce63f2f66d4c06bc33', 'from': '0xc3ed9410b507fc1fa18323987a5dd3aa1ff5e653', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:48:54.000Z'}}, {'blockNum': '0x53064a', 'uniqueId': '0x2d38b3ac21ecdf3722281ba80e04c009d895b76e2322fbf337c107145d0968a6:log:73', 'hash': '0x2d38b3ac21ecdf3722281ba80e04c009d895b76e2322fbf337c107145d0968a6', 'from': '0x28ad805be2f7a62fb81b38c18d43bc3d4d0baf85', 'to': '0xc8547cf7309353f98d61d578e2f33e99e2d20570', 'value': 5100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76be5e6c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:50:59.000Z'}}, {'blockNum': '0x530652', 'uniqueId': '0xcdd7080a7555b5c574128dfc9b07e6b9576ae2bc9772d0f4749e8ca8d0d64955:log:8', 'hash': '0xcdd7080a7555b5c574128dfc9b07e6b9576ae2bc9772d0f4749e8ca8d0d64955', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:52:14.000Z'}}, {'blockNum': '0x53065b', 'uniqueId': '0x90650d7d83e40e2e088388c64fdf206d606a9e7234dc137c9781abe99f0eaef8:log:17', 'hash': '0x90650d7d83e40e2e088388c64fdf206d606a9e7234dc137c9781abe99f0eaef8', 'from': '0x65213f13ced54adae7ebcf765981f2984db8db17', 'to': '0x853171bfa0ca45081224cfe4ac1c72fa7153edc0', 'value': 2750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x400746fe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:54:37.000Z'}}, {'blockNum': '0x530660', 'uniqueId': '0x3098f2695572182646278a3ee1ac5356e63dbcc50d8643111a321c0607ac1b21:log:225', 'hash': '0x3098f2695572182646278a3ee1ac5356e63dbcc50d8643111a321c0607ac1b21', 'from': '0x22c7ebd472fca4da60fbde55ec283349bb1e6b24', 'to': '0x853171bfa0ca45081224cfe4ac1c72fa7153edc0', 'value': 9500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdd30699c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:55:32.000Z'}}, {'blockNum': '0x530661', 'uniqueId': '0x96400c1b3c0d1e2df41c9dfe0b45e141cd444368ab52f2982971b1be6859361c:log:72', 'hash': '0x96400c1b3c0d1e2df41c9dfe0b45e141cd444368ab52f2982971b1be6859361c', 'from': '0x26bc3a4d6e96c328d2d7479eeed2f8df997f264c', 'to': '0x853171bfa0ca45081224cfe4ac1c72fa7153edc0', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:55:54.000Z'}}, {'blockNum': '0x530662', 'uniqueId': '0x4e945cc920c35a6e417a1948c652aa6d5cd98dcc5b028408fb3719c5b8894e9e:log:62', 'hash': '0x4e945cc920c35a6e417a1948c652aa6d5cd98dcc5b028408fb3719c5b8894e9e', 'from': '0xb3d4aab9d37d67e7d73984eac11d0bc660953d6b', 'to': '0xc8547cf7309353f98d61d578e2f33e99e2d20570', 'value': 5100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76be5e6c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:56:19.000Z'}}, {'blockNum': '0x530665', 'uniqueId': '0x3c6554080fb1b8f780f87f8e6502fc8eb35f0ba3900e03912e79c82aa7d8fe89:log:6', 'hash': '0x3c6554080fb1b8f780f87f8e6502fc8eb35f0ba3900e03912e79c82aa7d8fe89', 'from': '0xa2a675dd2a30aab0c90a4d7840bb67ec70038c7d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:57:05.000Z'}}, {'blockNum': '0x53066a', 'uniqueId': '0xdf941b6cb135dc07d9d486f606b646b773027c07e265d83ff4fcf3dff869f7a3:log:23', 'hash': '0xdf941b6cb135dc07d9d486f606b646b773027c07e265d83ff4fcf3dff869f7a3', 'from': '0xf26425556e381fca710d3902064acad107988ab6', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:58:01.000Z'}}, {'blockNum': '0x530674', 'uniqueId': '0x1f4c1afd56db412899f7b0d450331324a444f50808302c40873b9e99bb4a3fa1:log:15', 'hash': '0x1f4c1afd56db412899f7b0d450331324a444f50808302c40873b9e99bb4a3fa1', 'from': '0xef0509e1f538d77af1aa9bae033fbbce928785fa', 'to': '0xc8547cf7309353f98d61d578e2f33e99e2d20570', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:58:47.000Z'}}, {'blockNum': '0x530677', 'uniqueId': '0x9f9ad4866473b850da7c332379c6169550b94e053f8731a38ce7e9df9098fd62:log:10', 'hash': '0x9f9ad4866473b850da7c332379c6169550b94e053f8731a38ce7e9df9098fd62', 'from': '0x2215fa86a03488dde2a21e205fb39731aa464651', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:59:31.000Z'}}, {'blockNum': '0x530678', 'uniqueId': '0x18f15cc5c72063da13c173886983953579e56e728569794960b0bbf86d996d08:log:36', 'hash': '0x18f15cc5c72063da13c173886983953579e56e728569794960b0bbf86d996d08', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T20:59:56.000Z'}}, {'blockNum': '0x53067a', 'uniqueId': '0x9e19d1d3cbda99bdb42d50e82189df897942ea34284f7d06fffb8d90bb171079:log:13', 'hash': '0x9e19d1d3cbda99bdb42d50e82189df897942ea34284f7d06fffb8d90bb171079', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x6c234288622d647a35e50156611c134268778f9e', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:00:02.000Z'}}, {'blockNum': '0x530681', 'uniqueId': '0x365fc7b29c27fc4c0dbb7724508c921430c5cb0e93fa6c6063dfe698f3750375:log:9', 'hash': '0x365fc7b29c27fc4c0dbb7724508c921430c5cb0e93fa6c6063dfe698f3750375', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 2221.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x33b8133a80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:01:45.000Z'}}, {'blockNum': '0x530685', 'uniqueId': '0x34ca252a22309fff45f0746a00fa36d5888f38f92b3e5d2f1fcc25df5cad34cb:log:21', 'hash': '0x34ca252a22309fff45f0746a00fa36d5888f38f92b3e5d2f1fcc25df5cad34cb', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:02:27.000Z'}}, {'blockNum': '0x53068e', 'uniqueId': '0x82ebfefd4b588c12012043dc9fed54501ad8bd7793c0ede11e759d581b793cae:log:15', 'hash': '0x82ebfefd4b588c12012043dc9fed54501ad8bd7793c0ede11e759d581b793cae', 'from': '0x853171bfa0ca45081224cfe4ac1c72fa7153edc0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01402462f600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:05:06.000Z'}}, {'blockNum': '0x530691', 'uniqueId': '0xc609b410409869dd985d50f550a438d85140854896829afc60916fa620b8b1e0:log:18', 'hash': '0xc609b410409869dd985d50f550a438d85140854896829afc60916fa620b8b1e0', 'from': '0x48ca286fa9a6fb3091ded9481acc8bd460575a56', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 6250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9184e72a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:05:46.000Z'}}, {'blockNum': '0x5306a0', 'uniqueId': '0xa777e1abfc8716d9768e26ba543a673cc4953c8a85a517a4e95c2f5d792c68ff:log:91', 'hash': '0xa777e1abfc8716d9768e26ba543a673cc4953c8a85a517a4e95c2f5d792c68ff', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 6250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9184e72a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:09:22.000Z'}}, {'blockNum': '0x5306ce', 'uniqueId': '0xb15846066b8e820740a2c95e4794d4d1be84f2eb55963e21b6b67c6698dac034:log:22', 'hash': '0xb15846066b8e820740a2c95e4794d4d1be84f2eb55963e21b6b67c6698dac034', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 26635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x026c24f8ab00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:16:30.000Z'}}, {'blockNum': '0x5306d4', 'uniqueId': '0x4484e4a16347949021ab95e3745b252a849e94c7210ff8044b32d47333ab18da:log:12', 'hash': '0x4484e4a16347949021ab95e3745b252a849e94c7210ff8044b32d47333ab18da', 'from': '0x3784c2e7a28e537fdcdb274286606d5a05147f2e', 'to': '0x0db0b841a07e3265ca57128bd414b22cc9c0878e', 'value': 18686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01b3113d3e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:17:41.000Z'}}, {'blockNum': '0x5306e7', 'uniqueId': '0x4836c00ca70c063b34650ecb313ef4ec8bcf69f02228ab9abda685a0d4d461bc:log:10', 'hash': '0x4836c00ca70c063b34650ecb313ef4ec8bcf69f02228ab9abda685a0d4d461bc', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x24387a6178552ea2df6b39104abeed70525d6374', 'value': 3483904.6342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x013cdbf9d0b660', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:22:53.000Z'}}, {'blockNum': '0x5306e7', 'uniqueId': '0xd029ca520374d7f19f8993770df154992f99689313020f942b0b4fdcf022ee26:log:85', 'hash': '0xd029ca520374d7f19f8993770df154992f99689313020f942b0b4fdcf022ee26', 'from': '0x9281233040b47cafef196b91af8f435b83cb79b4', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:22:53.000Z'}}, {'blockNum': '0x5306e9', 'uniqueId': '0xc9119532f197adcfe820fa02a261b479abd7d0b59236abb525e05486ad91e8f7:log:62', 'hash': '0xc9119532f197adcfe820fa02a261b479abd7d0b59236abb525e05486ad91e8f7', 'from': '0x37d9ebc48a0889363960d8a7225a24161d71025f', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:24:05.000Z'}}, {'blockNum': '0x5306e9', 'uniqueId': '0xba95997c42ed6ca055032e8bc271b0e14f86cf4836d8d9cbf3797af431dcb9ec:log:94', 'hash': '0xba95997c42ed6ca055032e8bc271b0e14f86cf4836d8d9cbf3797af431dcb9ec', 'from': '0x9d5dd1d99455ba63fcb786327f3f799aeeeaf4b4', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:24:05.000Z'}}, {'blockNum': '0x5306ee', 'uniqueId': '0x34038d064eb659e993f2d03e77f866b5c0eab866ad5d76334ee014f362f415f5:log:12', 'hash': '0x34038d064eb659e993f2d03e77f866b5c0eab866ad5d76334ee014f362f415f5', 'from': '0xa8d60f69ef434dded322e0d7ea9b642081e867a2', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:25:12.000Z'}}, {'blockNum': '0x5306f2', 'uniqueId': '0x47fd5700c28135e7302f4603e976bda578e7ea85940217b7d007026f60213efc:log:49', 'hash': '0x47fd5700c28135e7302f4603e976bda578e7ea85940217b7d007026f60213efc', 'from': '0xc9cb275697917a347df6612e67c9cea7bef0c338', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:26:04.000Z'}}, {'blockNum': '0x5306f5', 'uniqueId': '0xcce445bf13e25cbd722dce4b6652a4833270b1ffb8f3be9bbbb19a497c358d3f:log:11', 'hash': '0xcce445bf13e25cbd722dce4b6652a4833270b1ffb8f3be9bbbb19a497c358d3f', 'from': '0x88634ad8e4f5436f8c72deb6b4b7e193d75bc5e0', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:26:17.000Z'}}, {'blockNum': '0x5306f7', 'uniqueId': '0x478c3ad3c82224f292309b4efc7d315610a633a64b9ccf5ba0420d4be1d426ac:log:58', 'hash': '0x478c3ad3c82224f292309b4efc7d315610a633a64b9ccf5ba0420d4be1d426ac', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 9750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe302875600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:26:57.000Z'}}, {'blockNum': '0x5306f7', 'uniqueId': '0x3712a62ee74934643c73a10db575c7148ba07a486d180f51dafc056b4fc65179:log:78', 'hash': '0x3712a62ee74934643c73a10db575c7148ba07a486d180f51dafc056b4fc65179', 'from': '0x3deb6d634d3436b3be4a67653457ef5593ad8140', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:26:57.000Z'}}, {'blockNum': '0x5306fb', 'uniqueId': '0x2cb32b800a60e1c8078c578cb67a6825d2ffef812dab417a0f8a9a98dbcf5310:log:27', 'hash': '0x2cb32b800a60e1c8078c578cb67a6825d2ffef812dab417a0f8a9a98dbcf5310', 'from': '0x8fd16cece5052937ec945c3cd374c5d6019c8e4d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:27:55.000Z'}}, {'blockNum': '0x530701', 'uniqueId': '0xb5ffad434399b91e8330e7bd4030aa5b11d25b85b3b6a341a29fb0b65bd83f8c:log:12', 'hash': '0xb5ffad434399b91e8330e7bd4030aa5b11d25b85b3b6a341a29fb0b65bd83f8c', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 2750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x400746fe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:28:29.000Z'}}, {'blockNum': '0x530701', 'uniqueId': '0x7afa7a50c86ae10f39fd033d64eb8bbba60d1370bc10932844b147a28e120918:log:19', 'hash': '0x7afa7a50c86ae10f39fd033d64eb8bbba60d1370bc10932844b147a28e120918', 'from': '0x16c1752cf3e25244252b8c0a95fddfdfd205b7d9', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:28:29.000Z'}}, {'blockNum': '0x53070b', 'uniqueId': '0x5cda35e6e241de1d814ff9a055f2ea8ff836e886551bd7ab81cd27155179af8c:log:62', 'hash': '0x5cda35e6e241de1d814ff9a055f2ea8ff836e886551bd7ab81cd27155179af8c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xb9bb6f022a0287e966cb9573dee4bf52e8934dbe', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:30:10.000Z'}}, {'blockNum': '0x530722', 'uniqueId': '0x95f392b53a71b16c225a9c7b22b51fec7fb7e9d7cfb99515a5508c7394ed9b76:log:91', 'hash': '0x95f392b53a71b16c225a9c7b22b51fec7fb7e9d7cfb99515a5508c7394ed9b76', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x4dccf211c7f549d8607a23d39246f571429f6168', 'value': 23574.24377217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0224e1714d81', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:35:21.000Z'}}, {'blockNum': '0x530726', 'uniqueId': '0x258ff0c4db2cb9494b697ade2e882bbaf77b95a25bfe92dbdaeb6c97746202e0:log:87', 'hash': '0x258ff0c4db2cb9494b697ade2e882bbaf77b95a25bfe92dbdaeb6c97746202e0', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01dca0ab1700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:36:40.000Z'}}, {'blockNum': '0x530727', 'uniqueId': '0x3724ab623f2d5ac9971b37a7c816bb394a43e32b63597f9f24137f10881060bb:log:7', 'hash': '0x3724ab623f2d5ac9971b37a7c816bb394a43e32b63597f9f24137f10881060bb', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2606.68285029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb10a6065', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:36:49.000Z'}}, {'blockNum': '0x53072d', 'uniqueId': '0xcd5af44f7ad5ec8006c753393f60f26da393853c56714b885c74f08cbadf6cf6:log:8', 'hash': '0xcd5af44f7ad5ec8006c753393f60f26da393853c56714b885c74f08cbadf6cf6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0283ea9b0800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:38:08.000Z'}}, {'blockNum': '0x53073f', 'uniqueId': '0xc66a8d9e48dfa9616ae2a4d7a79fb746ca2638f175721be86e782e7cd262e5b0:log:46', 'hash': '0xc66a8d9e48dfa9616ae2a4d7a79fb746ca2638f175721be86e782e7cd262e5b0', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 624.15131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0e883b5178', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:43:01.000Z'}}, {'blockNum': '0x530744', 'uniqueId': '0x15277ab658092fbea8398d0809dadadea82d004b796e3d38de6b1e16c507577c:log:17', 'hash': '0x15277ab658092fbea8398d0809dadadea82d004b796e3d38de6b1e16c507577c', 'from': '0xa9605dbf76418b25595563b8686b5dc6305e1d73', 'to': '0x4de3c2abf26cda3ed2a7af4cffdf93af56c94445', 'value': 9838.0907185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe50f971aea', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:44:29.000Z'}}, {'blockNum': '0x530747', 'uniqueId': '0x29a360a70309f4f18781131b5da1869d84ad42e9f5089ed7190c15930e2fd92c:log:41', 'hash': '0x29a360a70309f4f18781131b5da1869d84ad42e9f5089ed7190c15930e2fd92c', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0283ea9b0800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:45:20.000Z'}}, {'blockNum': '0x53074b', 'uniqueId': '0xc66594e9b1999aebc3122db1e252e0a009c3103933800584737b4214717de5b3:log:9', 'hash': '0xc66594e9b1999aebc3122db1e252e0a009c3103933800584737b4214717de5b3', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 39980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03a2db5eac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:46:16.000Z'}}, {'blockNum': '0x53075d', 'uniqueId': '0xe6a9f5379fa77f344aab1b2ae5551948d86224bf83c600ebd561944616448a2b:log:30', 'hash': '0xe6a9f5379fa77f344aab1b2ae5551948d86224bf83c600ebd561944616448a2b', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xf2dedf5b856ec65964f5bb0dd233acd2353ebd86', 'value': 31.35445919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbae31b9f', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:50:41.000Z'}}, {'blockNum': '0x530769', 'uniqueId': '0x923bb8f360be6da78b45b567a5676d39d03d91913775ca34a6fe678bf8b644ae:log:4', 'hash': '0x923bb8f360be6da78b45b567a5676d39d03d91913775ca34a6fe678bf8b644ae', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027dfaafe900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:52:33.000Z'}}, {'blockNum': '0x530774', 'uniqueId': '0xea758170124370c35960992ff6f253201004e74e69c28c2060e05efb7e0345c3:log:41', 'hash': '0xea758170124370c35960992ff6f253201004e74e69c28c2060e05efb7e0345c3', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 14145.37952911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014959083e8f', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:54:21.000Z'}}, {'blockNum': '0x530777', 'uniqueId': '0x2f1d1a668cd43395c396567f0f3207ac1f6d8806e3628ed99ad19b6c6cadfe13:log:0', 'hash': '0x2f1d1a668cd43395c396567f0f3207ac1f6d8806e3628ed99ad19b6c6cadfe13', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2050.35748422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2fbd153c46', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:54:40.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0x247e4975c0f501c87753457327b79c8eaf48360f9c9f3f1061ead597e3a9dd8c:log:19', 'hash': '0x247e4975c0f501c87753457327b79c8eaf48360f9c9f3f1061ead597e3a9dd8c', 'from': '0x4dccf211c7f549d8607a23d39246f571429f6168', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23574.24377217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0224e1714d81', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0x3c0a7aef9aa914b438c6135a7c72afd459d8617d9c8f9d5c99b6c6b648662df3:log:35', 'hash': '0x3c0a7aef9aa914b438c6135a7c72afd459d8617d9c8f9d5c99b6c6b648662df3', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03a2db5eac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0xc32e291dacadcaa3eb44f37d9668821f62e4a150c38c8094e6c7315b15f642fa:log:36', 'hash': '0xc32e291dacadcaa3eb44f37d9668821f62e4a150c38c8094e6c7315b15f642fa', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027dfaafe900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0xed05635f061d25212d7e566a4a2af1e8a81a71041d35d8b51fd93a1cd4493cae:log:37', 'hash': '0xed05635f061d25212d7e566a4a2af1e8a81a71041d35d8b51fd93a1cd4493cae', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01dca0ab1700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x53077a', 'uniqueId': '0x1b6a9121131e731746215b529b8e5679e260ec3236912df3e914d49783e80b8c:log:41', 'hash': '0x1b6a9121131e731746215b529b8e5679e260ec3236912df3e914d49783e80b8c', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xf2dedf5b856ec65964f5bb0dd233acd2353ebd86', 'value': 78.36914875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d31dd4bb', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:55:01.000Z'}}, {'blockNum': '0x530782', 'uniqueId': '0x51865c0a9c09390f56424218a3b846b2a325c8f7961ae6e28393aa4c2c476af2:log:22', 'hash': '0x51865c0a9c09390f56424218a3b846b2a325c8f7961ae6e28393aa4c2c476af2', 'from': '0x93c2fa852ebded94bccc534373f23b79d5c013d3', 'to': '0x08c39cdfaf624878a5cc3ffec437be0f0d5b59e3', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2c90543a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T21:56:57.000Z'}}, {'blockNum': '0x53078e', 'uniqueId': '0xf32d7e958773c53d4fb5d14c6c042d23c69c87ac4be98eed3b0e65dd9ae307bd:log:15', 'hash': '0xf32d7e958773c53d4fb5d14c6c042d23c69c87ac4be98eed3b0e65dd9ae307bd', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xcfef471878edc247692a952553f14965f78f83fd', 'value': 35391.8397398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x033807cdb65c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:00:00.000Z'}}, {'blockNum': '0x53078e', 'uniqueId': '0x39fe76d3281240785e2e1062a292c935a4211d11376022c345f138808cbc75e7:log:27', 'hash': '0x39fe76d3281240785e2e1062a292c935a4211d11376022c345f138808cbc75e7', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x79d5ee4ad589e9875e9950f68bd42f855c9cfedc', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:00:00.000Z'}}, {'blockNum': '0x530790', 'uniqueId': '0x14b95de3bb938346ac44b171463f57d0a54ec0b7112fe9daf46c8082de242c45:log:14', 'hash': '0x14b95de3bb938346ac44b171463f57d0a54ec0b7112fe9daf46c8082de242c45', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 38873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03891522b900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:02:09.000Z'}}, {'blockNum': '0x530790', 'uniqueId': '0xcad590a8f25387141e6af8583dcf747d87cdf9e1897b205db2e695d1cb7c9462:log:17', 'hash': '0xcad590a8f25387141e6af8583dcf747d87cdf9e1897b205db2e695d1cb7c9462', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xf2dedf5b856ec65964f5bb0dd233acd2353ebd86', 'value': 186.09423864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04553545f8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:02:09.000Z'}}, {'blockNum': '0x530799', 'uniqueId': '0x85a25453473d648ef5fffdd515464519c90cb886eba93161c36276da83abfcf3:log:70', 'hash': '0x85a25453473d648ef5fffdd515464519c90cb886eba93161c36276da83abfcf3', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 16405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x017df56b7500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:04:17.000Z'}}, {'blockNum': '0x530799', 'uniqueId': '0x11672abc27bff4ffcb3f5a0622604ea7be0f9cde69f6873d211f38158eb1b9bc:log:72', 'hash': '0x11672abc27bff4ffcb3f5a0622604ea7be0f9cde69f6873d211f38158eb1b9bc', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 18136.36833513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01a6452de0e9', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:04:17.000Z'}}, {'blockNum': '0x53079b', 'uniqueId': '0xeefc362d17bb24e370e467e80712b5d33004ec609e035c8f308a9a9b12a28b6a:log:29', 'hash': '0xeefc362d17bb24e370e467e80712b5d33004ec609e035c8f308a9a9b12a28b6a', 'from': '0x4de3c2abf26cda3ed2a7af4cffdf93af56c94445', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9838.0907185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe50f971aea', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:05:15.000Z'}}, {'blockNum': '0x53079b', 'uniqueId': '0x13ea93eb764f7dfb939b1e8182236bf8ebaef60e487915b6babd4279b13ff2a1:log:30', 'hash': '0x13ea93eb764f7dfb939b1e8182236bf8ebaef60e487915b6babd4279b13ff2a1', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14145.37952911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x014959083e8f', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:05:15.000Z'}}, {'blockNum': '0x53079b', 'uniqueId': '0xda1f624266d2aa6b4c60d6604d87b577d79b30361e721b204dfffaadbb5c35f7:log:31', 'hash': '0xda1f624266d2aa6b4c60d6604d87b577d79b30361e721b204dfffaadbb5c35f7', 'from': '0xcfef471878edc247692a952553f14965f78f83fd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35391.8397398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x033807cdb65c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:05:15.000Z'}}, {'blockNum': '0x5307a0', 'uniqueId': '0xba0477774e56f39b37d2242ac8cb275dc587c091a582035c44e77732d6b43f15:log:3', 'hash': '0xba0477774e56f39b37d2242ac8cb275dc587c091a582035c44e77732d6b43f15', 'from': '0x998fc33ab8ef2946b47b7f3dfb416411a77e50a2', 'to': '0xfbd01ccdcce4d50fb591c756298167ace1f41229', 'value': 2622.65299966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3d103ae3fe', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:06:57.000Z'}}, {'blockNum': '0x5307a0', 'uniqueId': '0x08c8629493ad5ce82d62e3735aa1a6fba43bc385fd4958bfaeb98a64d1bbbe51:log:37', 'hash': '0x08c8629493ad5ce82d62e3735aa1a6fba43bc385fd4958bfaeb98a64d1bbbe51', 'from': '0xf31d3b550213f4650627033315fde4d14f13abc0', 'to': '0x162f3a371988508ebf3336010cd278480828886b', 'value': 2375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x374c1a6700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:06:57.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0xc5b94b058c87a76d56f7d115c10d9069b5cc1232aae9c436d00c5e3fb48229c7:log:6', 'hash': '0xc5b94b058c87a76d56f7d115c10d9069b5cc1232aae9c436d00c5e3fb48229c7', 'from': '0xd69e09451ca8ae1d65e237c61c0418ea6d33df86', 'to': '0x162f3a371988508ebf3336010cd278480828886b', 'value': 136.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x032aad43a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0xdde5a5f89aca6e2005aa7a76e1be68038116f007da8284afde5b3931573c53f9:log:12', 'hash': '0xdde5a5f89aca6e2005aa7a76e1be68038116f007da8284afde5b3931573c53f9', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 7733.848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb411538700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0x63cbd265ed5327fc4455de502641dbd39d58760d7e5b43e4946baca4423fe68d:log:18', 'hash': '0x63cbd265ed5327fc4455de502641dbd39d58760d7e5b43e4946baca4423fe68d', 'from': '0x68676c071e4b63d496293d0ee288b8e34a0b70ab', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0x33f20eec8b7fa84bd4f4fa320d8b8068467b79a35c3dd939f6532feb9bb8e82d:log:97', 'hash': '0x33f20eec8b7fa84bd4f4fa320d8b8068467b79a35c3dd939f6532feb9bb8e82d', 'from': '0x88ce9d2dd1c6f6bf616a11af9235d3ba76cf1438', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a5', 'uniqueId': '0x8eb44ea7470acb637e814793de05add34c68821399756ec7544265c9a70d7982:log:100', 'hash': '0x8eb44ea7470acb637e814793de05add34c68821399756ec7544265c9a70d7982', 'from': '0x65bf8d929b0c8353505b41edc8495d7f211af7b5', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:00.000Z'}}, {'blockNum': '0x5307a8', 'uniqueId': '0xf2b90e0c26cab6e4a665d88e826b16b8fb3a21f344b64af25cd2cd9b13318d70:log:7', 'hash': '0xf2b90e0c26cab6e4a665d88e826b16b8fb3a21f344b64af25cd2cd9b13318d70', 'from': '0x888e946a0707f1e58f3f936bb9e2a0ec0aa18236', 'to': '0x162f3a371988508ebf3336010cd278480828886b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:54.000Z'}}, {'blockNum': '0x5307a8', 'uniqueId': '0x17cde1b1cf8481926722f001dfc8d3d28f8c510f3e586edad2491a043cbb53aa:log:72', 'hash': '0x17cde1b1cf8481926722f001dfc8d3d28f8c510f3e586edad2491a043cbb53aa', 'from': '0x103987020709aba881e921011eceed821c4c783b', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:09:54.000Z'}}, {'blockNum': '0x5307aa', 'uniqueId': '0x5afb0f8a3d5ee3812fc60a8a5f5007d9b490a5ebab217bdf4c470b5c527837b7:log:24', 'hash': '0x5afb0f8a3d5ee3812fc60a8a5f5007d9b490a5ebab217bdf4c470b5c527837b7', 'from': '0xb9fe09a3f4adb0604123caebd6d7013d1939da61', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:10:23.000Z'}}, {'blockNum': '0x5307ab', 'uniqueId': '0xf2296270201be5d8ee120f35b8f4e632e98fe4408279ab74f8640087d9055c76:log:0', 'hash': '0xf2296270201be5d8ee120f35b8f4e632e98fe4408279ab74f8640087d9055c76', 'from': '0x383b52dbd856a4370969c7b79f436407e2d05c18', 'to': '0x7c9ce2747aca0b13ff0beeee97ce3e3d65b9e0c3', 'value': 506.1769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc90ca790', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:10:27.000Z'}}, {'blockNum': '0x5307ad', 'uniqueId': '0x84bc0b5aef8c26eac13e2239229eac1c679aed63daf746353b40f33292aa1df1:log:9', 'hash': '0x84bc0b5aef8c26eac13e2239229eac1c679aed63daf746353b40f33292aa1df1', 'from': '0xe69e7d52c133f1fe56fe80613cb158037c509254', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:10:48.000Z'}}, {'blockNum': '0x5307b2', 'uniqueId': '0x1cb895a9ee91becc68cf919816958adb641ec29cf5d6649fbe7ca25d048b3950:log:12', 'hash': '0x1cb895a9ee91becc68cf919816958adb641ec29cf5d6649fbe7ca25d048b3950', 'from': '0x9426c84f79f8638acca04082dc23651f61830783', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:11:40.000Z'}}, {'blockNum': '0x5307b2', 'uniqueId': '0xa47c0a361e8dd26face48796facde2400979a9e56bc4fd8ddb0c60cda52536af:log:94', 'hash': '0xa47c0a361e8dd26face48796facde2400979a9e56bc4fd8ddb0c60cda52536af', 'from': '0xf877ebb29085ed4690f7b190b883572d946b90a4', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:11:40.000Z'}}, {'blockNum': '0x5307b3', 'uniqueId': '0x764aedc43dabb61c396a9508842a2c0ea9b5e5cfe55aa4f73e323d475c73a0c8:log:1', 'hash': '0x764aedc43dabb61c396a9508842a2c0ea9b5e5cfe55aa4f73e323d475c73a0c8', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 8250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc015d4fa00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:11:56.000Z'}}, {'blockNum': '0x5307b5', 'uniqueId': '0xf0a5e48d7c0b8cf8c3ff4b97b792d99ffcc41c771831b9a6b73b76cad7c230e5:log:26', 'hash': '0xf0a5e48d7c0b8cf8c3ff4b97b792d99ffcc41c771831b9a6b73b76cad7c230e5', 'from': '0x3e109ff9e1bca683f3ce7296c141983004876e37', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:12:26.000Z'}}, {'blockNum': '0x5307b6', 'uniqueId': '0xd95af3ee635b6ef5014fe90b53033c83535e858d2461ac695fa18786e19049d1:log:7', 'hash': '0xd95af3ee635b6ef5014fe90b53033c83535e858d2461ac695fa18786e19049d1', 'from': '0x960084b2f3dd53b5281cb8e56dca910a97915010', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:12:39.000Z'}}, {'blockNum': '0x5307b8', 'uniqueId': '0x7a873d52d44b88b0d4d343a90e78d049beeb11017c0c90f0e0f0cad55e46ed33:log:15', 'hash': '0x7a873d52d44b88b0d4d343a90e78d049beeb11017c0c90f0e0f0cad55e46ed33', 'from': '0x0f3f53945129abea28aa1969a179f8405cc2cded', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:13:25.000Z'}}, {'blockNum': '0x5307b9', 'uniqueId': '0xe9167dc3f9ad66bf088abc262808c1dc9b252a2d53b9829492d9efd113e346bf:log:12', 'hash': '0xe9167dc3f9ad66bf088abc262808c1dc9b252a2d53b9829492d9efd113e346bf', 'from': '0xe3a02700606ae8e1fcf6d02c2bc7f850350360a9', 'to': '0x4c7fbe2e66da7574cb0a952d0e0c8a9e65ab5526', 'value': 438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0a32aef600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:14:07.000Z'}}, {'blockNum': '0x5307b9', 'uniqueId': '0x1ffa6b824d4e3739d16c6989e7c768d282a59f27a376f0e5e797ead44efec867:log:13', 'hash': '0x1ffa6b824d4e3739d16c6989e7c768d282a59f27a376f0e5e797ead44efec867', 'from': '0x489a8830cbae3b5f712942d0350ca0ca178e1b7d', 'to': '0xd84e861b3cf19000e64a3a69b1561b3d2405e4de', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:14:07.000Z'}}, {'blockNum': '0x5307bc', 'uniqueId': '0xa0e3652be03e1e8c37aa2ec7eae8afaa81fe65be1bf0273fa4626e1244d34c4e:log:8', 'hash': '0xa0e3652be03e1e8c37aa2ec7eae8afaa81fe65be1bf0273fa4626e1244d34c4e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'value': 753.67734878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x118c445e5e', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:14:46.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x786fcee55d475e5ad4d392a2c0821303601dc6e2089541a7d0bb03c7e15a2a13:log:38', 'hash': '0x786fcee55d475e5ad4d392a2c0821303601dc6e2089541a7d0bb03c7e15a2a13', 'from': '0xfbd01ccdcce4d50fb591c756298167ace1f41229', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5622.65299966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x82e99f9bfe', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x95d77180b07f124a7e227d638f85d88484dcf2a2e0f265634cc4ea9addc2fbdc:log:39', 'hash': '0x95d77180b07f124a7e227d638f85d88484dcf2a2e0f265634cc4ea9addc2fbdc', 'from': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x032ee841b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x9dfc6ec9e2e43032efb2080ea6057b228dc35233276bc4436e2f7db0512dd5ce:log:40', 'hash': '0x9dfc6ec9e2e43032efb2080ea6057b228dc35233276bc4436e2f7db0512dd5ce', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18760.51964513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01b4cd693261', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x244477085c94c4e8211365c51d8ab880a1f2bc39ae46c2811338530d900ce2c5:log:41', 'hash': '0x244477085c94c4e8211365c51d8ab880a1f2bc39ae46c2811338530d900ce2c5', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7733.848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb411538700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0xd363183ea8ea95100e7e4d676061f68b57a3a6c22e95ffcd7f022765512b6726:log:43', 'hash': '0xd363183ea8ea95100e7e4d676061f68b57a3a6c22e95ffcd7f022765512b6726', 'from': '0x162f3a371988508ebf3336010cd278480828886b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9011.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd1cdcc8ea0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0xc28a0c6b61c00bc47e1047e3e78cb5b75b30d36b5aee5268e16e46696cba1df9:log:44', 'hash': '0xc28a0c6b61c00bc47e1047e3e78cb5b75b30d36b5aee5268e16e46696cba1df9', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x017df56b7500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307bd', 'uniqueId': '0x9c52e498b2642305b162e37844585c35ce15d7a1955f8b0b5cfb2e18b77cb7ab:log:117', 'hash': '0x9c52e498b2642305b162e37844585c35ce15d7a1955f8b0b5cfb2e18b77cb7ab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfa494915700050201e283533bf2ba7a690a17b3e', 'value': 20423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01db8290e700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:15:22.000Z'}}, {'blockNum': '0x5307c9', 'uniqueId': '0x63fecd8d2f4ee2a343b55d4913d2a5b9af557a5c9d08c8f9fe9533d8f6460f0b:log:34', 'hash': '0x63fecd8d2f4ee2a343b55d4913d2a5b9af557a5c9d08c8f9fe9533d8f6460f0b', 'from': '0x0b419bce1cb87adea84a913fa903593fb68d33b1', 'to': '0x49a3e55eff6df39ac3d95de2ccbe3719d1be00b5', 'value': 1113.09758131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x19ea941eb3', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:17:14.000Z'}}, {'blockNum': '0x5307cc', 'uniqueId': '0x5ce41319dfbd13f4ae7e8f1f4e5a19cf90238b303bf720ff413d059c05fe0059:log:22', 'hash': '0x5ce41319dfbd13f4ae7e8f1f4e5a19cf90238b303bf720ff413d059c05fe0059', 'from': '0x6449bf204e8b0adbe3b5e2d38cb7803b93ed5155', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x975704e400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:18:34.000Z'}}, {'blockNum': '0x5307cf', 'uniqueId': '0x083b775aab6f5a3096e6a87c872c1a1f31ecda32ef32e015bc04ef15b135783e:log:18', 'hash': '0x083b775aab6f5a3096e6a87c872c1a1f31ecda32ef32e015bc04ef15b135783e', 'from': '0x540c44016ddcc48389d12a96d2a46beb7643399e', 'to': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:19:47.000Z'}}, {'blockNum': '0x5307d3', 'uniqueId': '0xa609432d85bbdf2696d6b05420ad17259997d7cb6618660c6711f82ffecd222c:log:47', 'hash': '0xa609432d85bbdf2696d6b05420ad17259997d7cb6618660c6711f82ffecd222c', 'from': '0x624b12753245ebefbccc422e30439284fd8d0d11', 'to': '0xbde92f6c6d64539401f866d1e9834a9c0f551796', 'value': 774.00672845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1205708a4d', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:23:05.000Z'}}, {'blockNum': '0x5307d3', 'uniqueId': '0x1cb051ba58c3b1a842d7df3311656dc81d5aa0fae9497ce3d7d9ac36fd7a831f:log:57', 'hash': '0x1cb051ba58c3b1a842d7df3311656dc81d5aa0fae9497ce3d7d9ac36fd7a831f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 33951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03167bbabf00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:23:05.000Z'}}, {'blockNum': '0x5307d8', 'uniqueId': '0xdab88777fb37693956747d9077c11999c510865ce12e6c097e1e58034fde6151:log:13', 'hash': '0xdab88777fb37693956747d9077c11999c510865ce12e6c097e1e58034fde6151', 'from': '0x5ef6ca64cf204a3c1ba708fe342d27e266a8fb03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010bc1576c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:25:08.000Z'}}, {'blockNum': '0x5307e4', 'uniqueId': '0x60d83528b4d127a53d7dbbead31605b53a11825e397605033b29648656cfb1fd:log:24', 'hash': '0x60d83528b4d127a53d7dbbead31605b53a11825e397605033b29648656cfb1fd', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xc151e05ca78c506a07851052c62917b656687ad8', 'value': 15634.90245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x016c0747d988', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:27:44.000Z'}}, {'blockNum': '0x5307e9', 'uniqueId': '0x5b09b040bfef80f6b23ab7fdcf28342b580ac169c798cbf35518040442bf5c6b:log:19', 'hash': '0x5b09b040bfef80f6b23ab7fdcf28342b580ac169c798cbf35518040442bf5c6b', 'from': '0xa55ad2045cb0c9bc58ce1357c67915e1f6d83481', 'to': '0x043871e674aa1eb2c8dfdda50d28d04c1309b12a', 'value': 3270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4c22b80600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:28:46.000Z'}}, {'blockNum': '0x5307ed', 'uniqueId': '0x6efa412df6f1c6f437c6724c0786099097a1eed6eed8b807b548b48ace7325ad:log:32', 'hash': '0x6efa412df6f1c6f437c6724c0786099097a1eed6eed8b807b548b48ace7325ad', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2343a3d6ad08b8025dc5540d834326289cee9891', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:30:06.000Z'}}, {'blockNum': '0x5307f4', 'uniqueId': '0x7bebdf27692ed8d73d78061eaa19049ff8391f9df1ad18192eaf11e5164c8793:log:17', 'hash': '0x7bebdf27692ed8d73d78061eaa19049ff8391f9df1ad18192eaf11e5164c8793', 'from': '0xbb32f96fc504c01e3168d168cf31d2806e8aace3', 'to': '0xdc8fe351d0e6efbe14483edd732afd82fe6f0861', 'value': 2818.72565467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x41a0ea04db', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:32:24.000Z'}}, {'blockNum': '0x5307f8', 'uniqueId': '0xee9fdda8dd4ba4b1a4d3692acd48c258b1ea0cc4ad74aa03b10019f095949095:log:3', 'hash': '0xee9fdda8dd4ba4b1a4d3692acd48c258b1ea0cc4ad74aa03b10019f095949095', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf1bb7ab2b554dabf89ec8691183890ca61f49129', 'value': 3964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5c4b47fc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:33:17.000Z'}}, {'blockNum': '0x5307f9', 'uniqueId': '0x60e925e0cd36933d109c533fb6d2e30b093f1587a2313aed1eca097d6d5d4e31:log:7', 'hash': '0x60e925e0cd36933d109c533fb6d2e30b093f1587a2313aed1eca097d6d5d4e31', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xc151e05ca78c506a07851052c62917b656687ad8', 'value': 5893.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8935e946c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:33:27.000Z'}}, {'blockNum': '0x530803', 'uniqueId': '0x9bc51627a5a610f2609d1630dd70bb69f44b7c5c4c93d841b9b4f392586b33ee:log:39', 'hash': '0x9bc51627a5a610f2609d1630dd70bb69f44b7c5c4c93d841b9b4f392586b33ee', 'from': '0xc151e05ca78c506a07851052c62917b656687ad8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21528.05245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01f53d312048', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:35:44.000Z'}}, {'blockNum': '0x530803', 'uniqueId': '0xc7b01fdfd3b0482a02a14d4ac284635db6cd1faa6f60e10635215b1b0d7122ba:log:40', 'hash': '0xc7b01fdfd3b0482a02a14d4ac284635db6cd1faa6f60e10635215b1b0d7122ba', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03167bbabf00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:35:44.000Z'}}, {'blockNum': '0x530804', 'uniqueId': '0xd6505f513e8d1bb9cb975798f50138a448eab8b5ddb6be9d05bc2bc693a28e78:log:36', 'hash': '0xd6505f513e8d1bb9cb975798f50138a448eab8b5ddb6be9d05bc2bc693a28e78', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 27159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027858413700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:36:10.000Z'}}, {'blockNum': '0x530804', 'uniqueId': '0x960e9d93ae9e7ac2de1318eb54d693957d597092954db1bdf874a81ad01dd3a5:log:54', 'hash': '0x960e9d93ae9e7ac2de1318eb54d693957d597092954db1bdf874a81ad01dd3a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfa494915700050201e283533bf2ba7a690a17b3e', 'value': 20398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01daed8dee00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:36:10.000Z'}}, {'blockNum': '0x530805', 'uniqueId': '0x833ae3bd1ba71a99fd5efce558439f5a8a0280bced7a491bf876048463d56d0f:log:8', 'hash': '0x833ae3bd1ba71a99fd5efce558439f5a8a0280bced7a491bf876048463d56d0f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 7991.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xba10995000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:36:16.000Z'}}, {'blockNum': '0x530807', 'uniqueId': '0x941b21a224355a6c75dffd432837e7c108e08dbe94e6cb510919072ebe49ec2f:log:55', 'hash': '0x941b21a224355a6c75dffd432837e7c108e08dbe94e6cb510919072ebe49ec2f', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3370.20579713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4e77fdef81', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:36:41.000Z'}}, {'blockNum': '0x53081a', 'uniqueId': '0x575f43a2da298a31cfa5256240f44f1f3ab5104f4455da66ac4213e7e2828469:log:7', 'hash': '0x575f43a2da298a31cfa5256240f44f1f3ab5104f4455da66ac4213e7e2828469', 'from': '0x7df74150e13fc2362d3b2ea582ed70a744cc2d44', 'to': '0x2cb387e94dde52e59f704f7fc23570ce37f53c10', 'value': 5098.838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x76b77159c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:40:22.000Z'}}, {'blockNum': '0x53081b', 'uniqueId': '0xdbe4ec172fb5c466b2593a39fd99fabd6c0f837713c1b349c914002064e3402d:log:5', 'hash': '0xdbe4ec172fb5c466b2593a39fd99fabd6c0f837713c1b349c914002064e3402d', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'value': 5974.5071269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b1ad66672', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:41:08.000Z'}}, {'blockNum': '0x53081d', 'uniqueId': '0xf8d7b0c84cfbfceab657ab696a2a283cfffb6a6538149015236d6a9427c4a592:log:36', 'hash': '0xf8d7b0c84cfbfceab657ab696a2a283cfffb6a6538149015236d6a9427c4a592', 'from': '0xf9de33940866253fcc982fc0345c9b93cd7d3b55', 'to': '0x6f1dce16d3f1177ddb45c819df59b2e471a5b2d8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:41:36.000Z'}}, {'blockNum': '0x53081f', 'uniqueId': '0x2f5ec4cab3d8cf289276a3dbc29dc18550c17f00c523d16345170b42b8a24bc2:log:25', 'hash': '0x2f5ec4cab3d8cf289276a3dbc29dc18550c17f00c523d16345170b42b8a24bc2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028b75cbcc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:42:32.000Z'}}, {'blockNum': '0x530823', 'uniqueId': '0x59fdf4aa893459e4ab2880de5490539aaadcc37045dba317a9c3d322a039e16c:log:88', 'hash': '0x59fdf4aa893459e4ab2880de5490539aaadcc37045dba317a9c3d322a039e16c', 'from': '0x9e076d649817267158caeb673566d32fd645d715', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 6750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9d29229e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:43:19.000Z'}}, {'blockNum': '0x530827', 'uniqueId': '0xc63d16db8a5745f84eba0826493cf4631965492d15ec762b6c8df3171f67e390:log:58', 'hash': '0xc63d16db8a5745f84eba0826493cf4631965492d15ec762b6c8df3171f67e390', 'from': '0x854c511ccc8433c133f023f7436754b13888b1d5', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x34630b8a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:44:27.000Z'}}, {'blockNum': '0x530829', 'uniqueId': '0x71f57fb30ca8c48231ce3de82dfa61c53bf25491f0168a71a06d278448c0b20c:log:37', 'hash': '0x71f57fb30ca8c48231ce3de82dfa61c53bf25491f0168a71a06d278448c0b20c', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7991.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xba10995000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:09.000Z'}}, {'blockNum': '0x530829', 'uniqueId': '0xc143a1a47a1f75106c53bc070515f8c12b3642e83c52ff0caefea65cf575fb76:log:38', 'hash': '0xc143a1a47a1f75106c53bc070515f8c12b3642e83c52ff0caefea65cf575fb76', 'from': '0x6f1dce16d3f1177ddb45c819df59b2e471a5b2d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:09.000Z'}}, {'blockNum': '0x530829', 'uniqueId': '0xca8e2b6edf41b93a1c1ab4d3c46b71cd1e865fa84fd292edd0e76f2382ae7730:log:39', 'hash': '0xca8e2b6edf41b93a1c1ab4d3c46b71cd1e865fa84fd292edd0e76f2382ae7730', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028b75cbcc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:09.000Z'}}, {'blockNum': '0x530829', 'uniqueId': '0x4f6c119012347498cfad7367dc97b24bceab0bc5a2e74a273fb6fbbc14e7bce5:log:79', 'hash': '0x4f6c119012347498cfad7367dc97b24bceab0bc5a2e74a273fb6fbbc14e7bce5', 'from': '0x37d6d08339a5005bb34da1256c3afded0d41b8a7', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:09.000Z'}}, {'blockNum': '0x53082c', 'uniqueId': '0x94e467d3814ba6b61d3ff79e3db334645ea45418a507b920feec4503f3ccf2f9:log:19', 'hash': '0x94e467d3814ba6b61d3ff79e3db334645ea45418a507b920feec4503f3ccf2f9', 'from': '0xad3c66d67e72fda10d66d0c078060561b5ebd8db', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:45:36.000Z'}}, {'blockNum': '0x530832', 'uniqueId': '0x3753d41673ef353de1036a9ce2a042b5cb471c2d1f6e9eb3ca5a3b4882dda352:log:81', 'hash': '0x3753d41673ef353de1036a9ce2a042b5cb471c2d1f6e9eb3ca5a3b4882dda352', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0174876e8000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:46:52.000Z'}}, {'blockNum': '0x530832', 'uniqueId': '0x5bfe3ec15eee903c79b468c9cf91a029eec8f8159179ac33b309430381aecfef:log:89', 'hash': '0x5bfe3ec15eee903c79b468c9cf91a029eec8f8159179ac33b309430381aecfef', 'from': '0xb57042daf4753e21cdc52fb443a178b31f881520', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:46:52.000Z'}}, {'blockNum': '0x530834', 'uniqueId': '0xdc93a53fa1a88f0004872c8011ac8a95197d53c9530c33463cd6b75617a8e4a1:log:57', 'hash': '0xdc93a53fa1a88f0004872c8011ac8a95197d53c9530c33463cd6b75617a8e4a1', 'from': '0x2b9e1c973b15aded2e40d77bf38ef67239fe1e45', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 5750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x85e0abb600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:47:21.000Z'}}, {'blockNum': '0x530837', 'uniqueId': '0x2c662330be1ebbb7aff63767b8174ee7b775f4e4ec27e6c0a8b2c112857c6367:log:56', 'hash': '0x2c662330be1ebbb7aff63767b8174ee7b775f4e4ec27e6c0a8b2c112857c6367', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 8750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xcbba106e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:47:56.000Z'}}, {'blockNum': '0x530837', 'uniqueId': '0x09fbba641ea147a0d9894f832b3ddc60c6500aa707157dea8dbdf7be644b90fe:log:79', 'hash': '0x09fbba641ea147a0d9894f832b3ddc60c6500aa707157dea8dbdf7be644b90fe', 'from': '0x60114bfe5a70cf5d637f033ec3371ff38549ef37', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:47:56.000Z'}}, {'blockNum': '0x530839', 'uniqueId': '0x6d473380a7253ee86cf104c5d5a90572f4d6dd87d5cda5b819daa946aa7de8e6:log:81', 'hash': '0x6d473380a7253ee86cf104c5d5a90572f4d6dd87d5cda5b819daa946aa7de8e6', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:48:43.000Z'}}, {'blockNum': '0x530839', 'uniqueId': '0x4e5a114b16d4cb98e920c03a0a69510746588d7d2490b5cfbdc458db6b9c8ade:log:96', 'hash': '0x4e5a114b16d4cb98e920c03a0a69510746588d7d2490b5cfbdc458db6b9c8ade', 'from': '0x58ce5cce26768b7c14ad48ff6169be30e3bc5974', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:48:43.000Z'}}, {'blockNum': '0x53083e', 'uniqueId': '0xce77d1b13e688aeb283d8b418a2170edd7a20c28c7c4a2ddfa0ccf1250847489:log:54', 'hash': '0xce77d1b13e688aeb283d8b418a2170edd7a20c28c7c4a2ddfa0ccf1250847489', 'from': '0x134dba4255d4433d3bcc389e3a8918407f6c5715', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x62f3f95a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:50:07.000Z'}}, {'blockNum': '0x530841', 'uniqueId': '0x625c5df0f03ae08f8223050b97141e381423f403d567df28b63de4278cbf30fb:log:40', 'hash': '0x625c5df0f03ae08f8223050b97141e381423f403d567df28b63de4278cbf30fb', 'from': '0x155861d56783671b76d6b8cffc33ce4bac28828d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x62f3f95a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:50:44.000Z'}}, {'blockNum': '0x530843', 'uniqueId': '0xce9cd702cc86c4866fca6d021858510c2a782f0af55117ab5ec745dedf1a258e:log:66', 'hash': '0xce9cd702cc86c4866fca6d021858510c2a782f0af55117ab5ec745dedf1a258e', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 11000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:51:13.000Z'}}, {'blockNum': '0x530846', 'uniqueId': '0xa51241aae756c925b993a379e1d603ec303db8384e21a23188162b2ebfa642e1:log:65', 'hash': '0xa51241aae756c925b993a379e1d603ec303db8384e21a23188162b2ebfa642e1', 'from': '0x8f82f6584ea65e4808a4f5fdb87d0fdf36ec724e', 'to': '0xd972a9301458c1517fb25e4e05e939297f835402', 'value': 3124.2034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x48bdb41120', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:52:00.000Z'}}, {'blockNum': '0x53084e', 'uniqueId': '0x6fb55c36ae5699b3b826afd42fa638f789772c38069e5b77d413dcc89ff51c94:log:1', 'hash': '0x6fb55c36ae5699b3b826afd42fa638f789772c38069e5b77d413dcc89ff51c94', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x4a233e78cf828b5eee69b61c74b95c4f8bd52d08', 'value': 12.93170003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4d143553', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:54:12.000Z'}}, {'blockNum': '0x530852', 'uniqueId': '0x05a97ef11da0ebec3d0555d7eb68d868da8bcae8d46adda109ea817a4a02b5a5:log:69', 'hash': '0x05a97ef11da0ebec3d0555d7eb68d868da8bcae8d46adda109ea817a4a02b5a5', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8027.24613164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbae61d8c2c', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:55:02.000Z'}}, {'blockNum': '0x530852', 'uniqueId': '0xabbfcdf2d847021bcddd9ca998af520ddb746e4ece72da9aaba2bbcece0ccc46:log:77', 'hash': '0xabbfcdf2d847021bcddd9ca998af520ddb746e4ece72da9aaba2bbcece0ccc46', 'from': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5974.5071269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b1ad66672', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:55:02.000Z'}}, {'blockNum': '0x530854', 'uniqueId': '0xa9cce698c807129bef75514b96d2302632074d22bd5619f34190358923127f0e:log:0', 'hash': '0xa9cce698c807129bef75514b96d2302632074d22bd5619f34190358923127f0e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 31317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d927ddb500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:55:22.000Z'}}, {'blockNum': '0x530860', 'uniqueId': '0x572519b37d34fdb899538a8ef11c5735852e120ea2fe9926a51aab32abef0be3:log:1', 'hash': '0x572519b37d34fdb899538a8ef11c5735852e120ea2fe9926a51aab32abef0be3', 'from': '0x8954de33986674896220635c66f3185fea74891b', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:58:09.000Z'}}, {'blockNum': '0x530866', 'uniqueId': '0x4eb451666f84f5f370cc8e71531f8deb9c8934f46fd6c93e920eeb313c205e08:log:43', 'hash': '0x4eb451666f84f5f370cc8e71531f8deb9c8934f46fd6c93e920eeb313c205e08', 'from': '0x9160ad273e5e5054fc19be250a12357b3df32003', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T22:59:50.000Z'}}, {'blockNum': '0x530868', 'uniqueId': '0xdd6233676996dbea29c8f9502e072496a6b1b4807ab9b0f36c3d4a3ef2438272:log:25', 'hash': '0xdd6233676996dbea29c8f9502e072496a6b1b4807ab9b0f36c3d4a3ef2438272', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2465bf602ca9cb3abd8015288f7de1b24b8acc1b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:00:04.000Z'}}, {'blockNum': '0x530869', 'uniqueId': '0x2c70ee8cd8c8e374bb9b60a1edd2ecc161ea9e09782de202bc5581c93da22371:log:3', 'hash': '0x2c70ee8cd8c8e374bb9b60a1edd2ecc161ea9e09782de202bc5581c93da22371', 'from': '0x0e88c5fe2be5419100d745c8e414fbb1bae163f2', 'to': '0x59accb41ca6d8c0f50254c9d09c2ded60900d2f0', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:00:18.000Z'}}, {'blockNum': '0x53086c', 'uniqueId': '0xd1ed4766b91fa418f6fe5cc91c3c297e26397bb88d0bd99b75fe800614ac69a5:log:1', 'hash': '0xd1ed4766b91fa418f6fe5cc91c3c297e26397bb88d0bd99b75fe800614ac69a5', 'from': '0xa167d850a730339d5287835403cd5bf99d64c1e2', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:01:11.000Z'}}, {'blockNum': '0x53086c', 'uniqueId': '0xab2cf2ef3847785f8342d92b2a1960d022c493314ae58e1cc590c7dbed58be63:log:27', 'hash': '0xab2cf2ef3847785f8342d92b2a1960d022c493314ae58e1cc590c7dbed58be63', 'from': '0xa0d0ba0c77b9f169de4b7755e8c70f7aafdd92fb', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:01:11.000Z'}}, {'blockNum': '0x53086d', 'uniqueId': '0x146598ea11cc6ef3cc4f76ae2f0b89a9efaa7bd7a9db9bd6d0f8e8b57103f798:log:45', 'hash': '0x146598ea11cc6ef3cc4f76ae2f0b89a9efaa7bd7a9db9bd6d0f8e8b57103f798', 'from': '0x8ea000afd0e4ac3fcad5ed75b37f14eb31088ce5', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:01:27.000Z'}}, {'blockNum': '0x530870', 'uniqueId': '0xab0bc7ba770f627394735548322fd888e876792671163a5d0568dd844ce8dd3b:log:23', 'hash': '0xab0bc7ba770f627394735548322fd888e876792671163a5d0568dd844ce8dd3b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 6273.388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x92104e6b80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:02:33.000Z'}}, {'blockNum': '0x530873', 'uniqueId': '0x244175d2bae4ddcb95e0c8a9b3bb7db41c137c802727bc340118229222220eb2:log:31', 'hash': '0x244175d2bae4ddcb95e0c8a9b3bb7db41c137c802727bc340118229222220eb2', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9b1a65900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:03:25.000Z'}}, {'blockNum': '0x530874', 'uniqueId': '0x42b97e74d9754fdb924c9055851c4f795f77f5fc2db9bfb5abee7d6713c5b64c:log:17', 'hash': '0x42b97e74d9754fdb924c9055851c4f795f77f5fc2db9bfb5abee7d6713c5b64c', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xf9c64ac400cbdde15df45706a97e06384ddd2c88', 'value': 63898.21021681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x05cfbf031df1', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:03:43.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xf9d610b9a8c9854594e53d96e71ec49bbb266d477b8da0ea07e450cf38303694:log:94', 'hash': '0xf9d610b9a8c9854594e53d96e71ec49bbb266d477b8da0ea07e450cf38303694', 'from': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xd6fb9e32452e931298accb96f2aab0e489fd1fb41e38ef137ab7b6c7969f3e3a:log:95', 'hash': '0xd6fb9e32452e931298accb96f2aab0e489fd1fb41e38ef137ab7b6c7969f3e3a', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6273.388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x92104e6b80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xeaf2832281a7fd7cca5850d9298dd49d1673f8fe20b15f5e4aff8f0c1dfb7877:log:96', 'hash': '0xeaf2832281a7fd7cca5850d9298dd49d1673f8fe20b15f5e4aff8f0c1dfb7877', 'from': '0xf9c64ac400cbdde15df45706a97e06384ddd2c88', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63898.21021681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x05cfbf031df1', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xae45204654e76c9c1a63f8e4e530f426801670385126d9e32467da127794faba:log:97', 'hash': '0xae45204654e76c9c1a63f8e4e530f426801670385126d9e32467da127794faba', 'from': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xeb880f0400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0xceafea9521994140c004667cd3ad6bf16a593716739cb71f29b8cef03d856800:log:108', 'hash': '0xceafea9521994140c004667cd3ad6bf16a593716739cb71f29b8cef03d856800', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02d927ddb500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x530879', 'uniqueId': '0x584e5d466ce76ff38959f011c8ef30db2616f733b361b46e0d958bd1ad32ef1c:log:110', 'hash': '0x584e5d466ce76ff38959f011c8ef30db2616f733b361b46e0d958bd1ad32ef1c', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9b1a65900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:04:42.000Z'}}, {'blockNum': '0x53087d', 'uniqueId': '0x8f03b1020408d88044ea70c5d59449db537c0646121c887cd25d7df8b819c983:log:1', 'hash': '0x8f03b1020408d88044ea70c5d59449db537c0646121c887cd25d7df8b819c983', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf9de33940866253fcc982fc0345c9b93cd7d3b55', 'value': 9663.29100001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe0fdb3e6e1', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:06:08.000Z'}}, {'blockNum': '0x530887', 'uniqueId': '0x495e92ca4a641090c9d2c3b5a396ae91370bf38bbd47e9b835f9e8ffb7cad90b:log:6', 'hash': '0x495e92ca4a641090c9d2c3b5a396ae91370bf38bbd47e9b835f9e8ffb7cad90b', 'from': '0x0fb40eca4069cef1d607c548b60bb37ad8ccaa05', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:07:35.000Z'}}, {'blockNum': '0x53088a', 'uniqueId': '0xff749279b017be0f3f42182071e1d68248acc1992a81fce8aa3d04f005c556a2:log:7', 'hash': '0xff749279b017be0f3f42182071e1d68248acc1992a81fce8aa3d04f005c556a2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 42973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03e88b0a3d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:08:36.000Z'}}, {'blockNum': '0x530896', 'uniqueId': '0x95cc1893f7a47621aff9a33c93995373c5bfa199a735702a9bef10557f49123f:log:95', 'hash': '0x95cc1893f7a47621aff9a33c93995373c5bfa199a735702a9bef10557f49123f', 'from': '0xe435f63b41a4060fed5dd702e523f93d69a5659d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:12:01.000Z'}}, {'blockNum': '0x53089a', 'uniqueId': '0xb318223d86d23c87c7e0bfcf29095e211ffee5a5cf9fb4a46115e9f73e095500:log:22', 'hash': '0xb318223d86d23c87c7e0bfcf29095e211ffee5a5cf9fb4a46115e9f73e095500', 'from': '0xe435f63b41a4060fed5dd702e523f93d69a5659d', 'to': '0x90d648dc044a1249f54dd0085de235e253355443', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:12:47.000Z'}}, {'blockNum': '0x5308a3', 'uniqueId': '0xbed79a3f6f87d86141e0bcd6221aa09ec3a8e4e0ab3939269b4f33bccb45edf8:log:9', 'hash': '0xbed79a3f6f87d86141e0bcd6221aa09ec3a8e4e0ab3939269b4f33bccb45edf8', 'from': '0x0911d918af7e03639b84db428f12244b61011fcb', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5137.10000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x779b808781', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:15:39.000Z'}}, {'blockNum': '0x5308a3', 'uniqueId': '0xe5342cde9cca1847ad696615d1066d82095a6d67a821bd819ee94a148e925c4d:log:111', 'hash': '0xe5342cde9cca1847ad696615d1066d82095a6d67a821bd819ee94a148e925c4d', 'from': '0x8583ba397ab9519e78f3b1c07ff5faff3fce41a4', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:15:39.000Z'}}, {'blockNum': '0x5308a4', 'uniqueId': '0x332478065d4343d63eb27282db2dfb7f3b9ad696058f089613221e06fcf0df71:log:2', 'hash': '0x332478065d4343d63eb27282db2dfb7f3b9ad696058f089613221e06fcf0df71', 'from': '0x90d648dc044a1249f54dd0085de235e253355443', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:15:46.000Z'}}, {'blockNum': '0x5308a5', 'uniqueId': '0x6f98952e7b19fbef134405934919eb2b98ae184a504a4cd47781de9537af5e1b:log:5', 'hash': '0x6f98952e7b19fbef134405934919eb2b98ae184a504a4cd47781de9537af5e1b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 42874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03e63cf43a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:16:07.000Z'}}, {'blockNum': '0x5308b8', 'uniqueId': '0x9ec09739a3fa70fb9b8d854a46d62d0488a3a2e12c924c882ba33b91d4e856c7:log:32', 'hash': '0x9ec09739a3fa70fb9b8d854a46d62d0488a3a2e12c924c882ba33b91d4e856c7', 'from': '0x5eee4041a681ba83ea95a255a71186a3a1f6fb8e', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 1443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2198f34300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:20:01.000Z'}}, {'blockNum': '0x5308b9', 'uniqueId': '0x6fab6fc114c3ff82da72f148261c4d94831a68ac4af6c394cedc784a085725be:log:22', 'hash': '0x6fab6fc114c3ff82da72f148261c4d94831a68ac4af6c394cedc784a085725be', 'from': '0x84f58dfb843cd557cb0201540719282b299c6499', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:20:19.000Z'}}, {'blockNum': '0x5308c0', 'uniqueId': '0x0d363d3959c581f0353763c61fe80ad6f4e0c953648f5b5b8cd4b28552c0bd4f:log:26', 'hash': '0x0d363d3959c581f0353763c61fe80ad6f4e0c953648f5b5b8cd4b28552c0bd4f', 'from': '0x5792f341e773fc58385ef18762d486dc322ef2ec', 'to': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:21:07.000Z'}}, {'blockNum': '0x5308cf', 'uniqueId': '0x7821f5275d435f5cd972ac753a96349a027f1fee84e06a297a9cf3b0ef61d51c:log:33', 'hash': '0x7821f5275d435f5cd972ac753a96349a027f1fee84e06a297a9cf3b0ef61d51c', 'from': '0x1b64a234ef9a869732a4731e4b9015fcfd0bb2ae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xdbdcaa8300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:25:21.000Z'}}, {'blockNum': '0x5308cf', 'uniqueId': '0x2772f8d4c51d85f6c71da4ae40ecb9d478fb590c1de62012b25bc2067ec5cc8e:log:34', 'hash': '0x2772f8d4c51d85f6c71da4ae40ecb9d478fb590c1de62012b25bc2067ec5cc8e', 'from': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10195.10000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xed5f880981', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:25:21.000Z'}}, {'blockNum': '0x5308cf', 'uniqueId': '0xce74af5fe2adb14540b694ab7ec8fbb71f3e3619b5ac69c276323d1ff2bcd64c:log:36', 'hash': '0xce74af5fe2adb14540b694ab7ec8fbb71f3e3619b5ac69c276323d1ff2bcd64c', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03e63cf43a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:25:21.000Z'}}, {'blockNum': '0x5308d7', 'uniqueId': '0x91fa3c28564b5f95e55c24fac402ac945df7cd1b7b5222acda7ba384983a09d5:log:9', 'hash': '0x91fa3c28564b5f95e55c24fac402ac945df7cd1b7b5222acda7ba384983a09d5', 'from': '0xf9de33940866253fcc982fc0345c9b93cd7d3b55', 'to': '0x6f1dce16d3f1177ddb45c819df59b2e471a5b2d8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:26:53.000Z'}}, {'blockNum': '0x5308d8', 'uniqueId': '0x02ef374124b561a62b52c1fb6f38ba9f46c7d94def35a2accfa3e95950178b34:log:19', 'hash': '0x02ef374124b561a62b52c1fb6f38ba9f46c7d94def35a2accfa3e95950178b34', 'from': '0x71a45af32bae715e24705ce0ab1a52ce95d1f4a1', 'to': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'value': 0.00958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9e30', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:28:05.000Z'}}, {'blockNum': '0x5308d8', 'uniqueId': '0x3c42937ac21b8439e52af77156ab4781d26eda779f0fe7517f657935dfc734a2:log:30', 'hash': '0x3c42937ac21b8439e52af77156ab4781d26eda779f0fe7517f657935dfc734a2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 24510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023aaafbfe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:28:05.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x169f9e6ea8fe2394d288e453cee07fb9b2f38ea5ac658fb0ae1733b68fba5f5c:log:36', 'hash': '0x169f9e6ea8fe2394d288e453cee07fb9b2f38ea5ac658fb0ae1733b68fba5f5c', 'from': '0xc842e0e7dc7ddb309673fc1511722e1171c376ed', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x38602aec9519c7a041c3c82db4a4ca803b9366d47c541f113fde20006e6f8ded:log:37', 'hash': '0x38602aec9519c7a041c3c82db4a4ca803b9366d47c541f113fde20006e6f8ded', 'from': '0xb25b49b73ad82ad6e4175c0c38cc380db1a8d72d', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x0f5d055c793768b3cf2fb04bf89157ff1aa8560c94464a7f689644948f43e289:log:40', 'hash': '0x0f5d055c793768b3cf2fb04bf89157ff1aa8560c94464a7f689644948f43e289', 'from': '0xaa8d284f20ad634bccd99fad5586edd21e10125d', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x517da02c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x443562ba0a9457e7db4d0feb182579d8ad6bde9ab91b53af7543711c82c8933e:log:41', 'hash': '0x443562ba0a9457e7db4d0feb182579d8ad6bde9ab91b53af7543711c82c8933e', 'from': '0x961e383c3ff0dee285fa51f862bebecc40c36352', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x832b0b1bb9099a1d209c607017f4d613b3cb0d5cbbcd6c7a8d9e1aae63b81644:log:43', 'hash': '0x832b0b1bb9099a1d209c607017f4d613b3cb0d5cbbcd6c7a8d9e1aae63b81644', 'from': '0x3da8743251370a071b061853b605a53be2d63813', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x7e5db7ced9a1bab978ed235c09b7d56adfc152182c8585156e78bb2fb3c5f188:log:46', 'hash': '0x7e5db7ced9a1bab978ed235c09b7d56adfc152182c8585156e78bb2fb3c5f188', 'from': '0x52999c527fd7dc516111078687a7e2a3050a1bc5', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x8eb26e377eada6e4085b32eefe2a1654384df9087108733ee966a4d502843b73:log:47', 'hash': '0x8eb26e377eada6e4085b32eefe2a1654384df9087108733ee966a4d502843b73', 'from': '0x2cee34a4a8913771f9af8db55e898566b0954b6b', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0xd3909fb33ae4d00a67bcde0d5cda13901ed2117cdf3d8a9e69daf6dd2a5ba919:log:49', 'hash': '0xd3909fb33ae4d00a67bcde0d5cda13901ed2117cdf3d8a9e69daf6dd2a5ba919', 'from': '0x7582dcf593a1a9ae6bbbd3cebb4fc400216c3cac', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0xe8d443fe7642e6b3a11c996bf544b95fc93b63a5d65c1c8fb8f89da14e625ac1:log:51', 'hash': '0xe8d443fe7642e6b3a11c996bf544b95fc93b63a5d65c1c8fb8f89da14e625ac1', 'from': '0x7e7eb728a0332152c61ba607b0978f32a93f6880', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x64dfaf1540434724d7afd5d80a7628334b5fc962ba9773ac8a5a99ee7b0a9a89:log:52', 'hash': '0x64dfaf1540434724d7afd5d80a7628334b5fc962ba9773ac8a5a99ee7b0a9a89', 'from': '0x37ef365abfb5b346dcf54c5312d62b87df289b94', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x00c276053279e394e4ec10ed038b77b8a84ee9df7111276123ac48ef14c0c91d:log:56', 'hash': '0x00c276053279e394e4ec10ed038b77b8a84ee9df7111276123ac48ef14c0c91d', 'from': '0xc7f9f8e7d5b6416cfcf1806ff611a36a09212085', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x7cac2756ec7e2a4bdab90c1e0a7e65d08aab4f6e73578fdb94de5dcaa45a92ca:log:57', 'hash': '0x7cac2756ec7e2a4bdab90c1e0a7e65d08aab4f6e73578fdb94de5dcaa45a92ca', 'from': '0x7e035c6eedd0ce7420fa96d548480a2ffe35a078', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x8fe7312473bbb85c43165c0e78550379dd23a811f650a280cdf60a3cd106af38:log:58', 'hash': '0x8fe7312473bbb85c43165c0e78550379dd23a811f650a280cdf60a3cd106af38', 'from': '0xa5526a215d37cbc5b30fcf11ea743a23b7c80647', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0xdd47a98cf9456100058649191728997a564ff2456f0a44eba7a5fe7dddb17e68:log:61', 'hash': '0xdd47a98cf9456100058649191728997a564ff2456f0a44eba7a5fe7dddb17e68', 'from': '0x93280ac14fcc22fc1fc741b9f2eee34d4c218dd8', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x7b682298e7c0badb3591181b201142c0f536a9556eab34fba0a876bff725055b:log:62', 'hash': '0x7b682298e7c0badb3591181b201142c0f536a9556eab34fba0a876bff725055b', 'from': '0xa813efd8ef2e7f98f573eab0c06daba4f24d0521', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x72df90fd6decfec38350cbc65869f83406f08b9b5fede595051c65c17b3702c4:log:63', 'hash': '0x72df90fd6decfec38350cbc65869f83406f08b9b5fede595051c65c17b3702c4', 'from': '0x072eb0a9f84af0194b7fae69eab9757cc70d5ed2', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0x37cad09022c881e37f4fb706f980f053c41a4a46303ba5f33f919dbca0fca890:log:66', 'hash': '0x37cad09022c881e37f4fb706f980f053c41a4a46303ba5f33f919dbca0fca890', 'from': '0x745c49255d3741b96dedacde45b17428449d613d', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 2750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x400746fe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308de', 'uniqueId': '0xae0b27e2a7e89408ed3d22933d4b8a63df9188b6595180e15a135398e22df68b:log:67', 'hash': '0xae0b27e2a7e89408ed3d22933d4b8a63df9188b6595180e15a135398e22df68b', 'from': '0xbebe7dcb6c68d85d95efc5c8e33bb40e6fe0b11c', 'to': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x62f3f95a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:29:25.000Z'}}, {'blockNum': '0x5308e4', 'uniqueId': '0xf0bfd3ac3be7a2328419bda6a81bf3a073318f55cdc84fa0bea8b6a7ab810c3e:log:16', 'hash': '0xf0bfd3ac3be7a2328419bda6a81bf3a073318f55cdc84fa0bea8b6a7ab810c3e', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2877ef52484a7c4e2ff0abf56c8eea338a7a37df', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:30:02.000Z'}}, {'blockNum': '0x5308f3', 'uniqueId': '0x4de91aee7d282339d53fef855e95c265fee89270f426852dca781b625f661df6:log:38', 'hash': '0x4de91aee7d282339d53fef855e95c265fee89270f426852dca781b625f661df6', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x096f6feb3dbdd1f6e9e23f5b4ecfaea461fac9f8', 'value': 4399.7585405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x66709abfe2', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:33:05.000Z'}}, {'blockNum': '0x5308f3', 'uniqueId': '0x72d9466336ab8e2fc9e854db7b0914f49c0b6507492586991bad7a6129f8369e:log:51', 'hash': '0x72d9466336ab8e2fc9e854db7b0914f49c0b6507492586991bad7a6129f8369e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 11760.39769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0111d16ec3a8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:33:05.000Z'}}, {'blockNum': '0x5308fb', 'uniqueId': '0xb423514015411ad517eda65bb160e5e4e1621c69be666f4f07a9ddbb8f3887fb:log:2', 'hash': '0xb423514015411ad517eda65bb160e5e4e1621c69be666f4f07a9ddbb8f3887fb', 'from': '0x7e3fbaf7f9d32d84e20f4b11b1ff7449c6494861', 'to': '0x0f3a83969a8267546c87a29495a69d2fa0af1313', 'value': 11000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:34:24.000Z'}}, {'blockNum': '0x5308fe', 'uniqueId': '0x96855925c4921662694798ba50cab756e46ba6ed609b01f6a8f7203b3a6d0c34:log:9', 'hash': '0x96855925c4921662694798ba50cab756e46ba6ed609b01f6a8f7203b3a6d0c34', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11760.39769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0111d16ec3a8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:35:17.000Z'}}, {'blockNum': '0x5308fe', 'uniqueId': '0x9afba57b2954683b86d3fc0768f903a161d81614f5880e4332c7a55cacfa2401:log:10', 'hash': '0x9afba57b2954683b86d3fc0768f903a161d81614f5880e4332c7a55cacfa2401', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023aaafbfe00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:35:17.000Z'}}, {'blockNum': '0x530900', 'uniqueId': '0xd8b2970d088925c444a8847bc3e4337e7cf8b6b6f7f391e30ceaae863760e0b8:log:14', 'hash': '0xd8b2970d088925c444a8847bc3e4337e7cf8b6b6f7f391e30ceaae863760e0b8', 'from': '0xe794e77167c3d1d322629f191488e3bc1d39d81c', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:35:30.000Z'}}, {'blockNum': '0x530904', 'uniqueId': '0xe4853a0b5e0b19c93967b881e13499da704ddf14464055cb3a38a44f78d9172b:log:20', 'hash': '0xe4853a0b5e0b19c93967b881e13499da704ddf14464055cb3a38a44f78d9172b', 'from': '0xb4db083f771bce99f8f63596a8db445acf06b862', 'to': '0xba078c8bbdd4cbd1ea33b1468d0eef3b46a4cd0b', 'value': 38000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0374c1a67000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:37:03.000Z'}}, {'blockNum': '0x530906', 'uniqueId': '0xdee7fa5bf7a5e6de5281d16350e42d8db52359c2041d5bd9c3fea330694d8627:log:83', 'hash': '0xdee7fa5bf7a5e6de5281d16350e42d8db52359c2041d5bd9c3fea330694d8627', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 11869.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01145a3e3540', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:38:19.000Z'}}, {'blockNum': '0x530918', 'uniqueId': '0x682da0610e1d548a71c5a335a8bb9fa4e8a5e4dbb33695a22e98528a40e8dd74:log:20', 'hash': '0x682da0610e1d548a71c5a335a8bb9fa4e8a5e4dbb33695a22e98528a40e8dd74', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x4e1754be375bce21808bb44d54282b59d353ff6a', 'value': 28578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x029962276200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:42:16.000Z'}}, {'blockNum': '0x530926', 'uniqueId': '0xfcb1acefbe607621116590f6cb50aea1f3c375b9401239ee0c543affd7a5dd1c:log:14', 'hash': '0xfcb1acefbe607621116590f6cb50aea1f3c375b9401239ee0c543affd7a5dd1c', 'from': '0xba078c8bbdd4cbd1ea33b1468d0eef3b46a4cd0b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x038c0a1d5800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:45:28.000Z'}}, {'blockNum': '0x530926', 'uniqueId': '0xc9fe5acc5722305653ce58a61b334696b00399e7f468c035106a37c7c6dafa39:log:15', 'hash': '0xc9fe5acc5722305653ce58a61b334696b00399e7f468c035106a37c7c6dafa39', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11869.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01145a3e3540', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:45:28.000Z'}}, {'blockNum': '0x530926', 'uniqueId': '0x248d7cc16cfcf729049ef32ac9a3382a271f606d9373cc08df0156b7ec379937:log:16', 'hash': '0x248d7cc16cfcf729049ef32ac9a3382a271f606d9373cc08df0156b7ec379937', 'from': '0x6f1dce16d3f1177ddb45c819df59b2e471a5b2d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:45:28.000Z'}}, {'blockNum': '0x530926', 'uniqueId': '0xa5fe65ed2b5f89c89b80142cf9e57a5256bb976cd1e0120e299245feee883f93:log:17', 'hash': '0xa5fe65ed2b5f89c89b80142cf9e57a5256bb976cd1e0120e299245feee883f93', 'from': '0x0f3a83969a8267546c87a29495a69d2fa0af1313', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:45:28.000Z'}}, {'blockNum': '0x53092e', 'uniqueId': '0x9cb73fe2a660f07b7c05fcc3a0d7ccd00c2d9d05d9d899b850e2673ea12fe91a:log:10', 'hash': '0x9cb73fe2a660f07b7c05fcc3a0d7ccd00c2d9d05d9d899b850e2673ea12fe91a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028355980f00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:46:32.000Z'}}, {'blockNum': '0x53092e', 'uniqueId': '0x6ae926e59729cd2c33f32a64199050d9c22671dc0a2f2bd41cf83cb058603c83:log:50', 'hash': '0x6ae926e59729cd2c33f32a64199050d9c22671dc0a2f2bd41cf83cb058603c83', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x4a233e78cf828b5eee69b61c74b95c4f8bd52d08', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:46:32.000Z'}}, {'blockNum': '0x530939', 'uniqueId': '0x6c6234a161c35954e373bf4dc769e348b6476a67bfc36266fec95b5312756ea3:log:6', 'hash': '0x6c6234a161c35954e373bf4dc769e348b6476a67bfc36266fec95b5312756ea3', 'from': '0x71cd4d5822c9c3517b56d521682175b8e959b49e', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75c4078200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:49:26.000Z'}}, {'blockNum': '0x53094a', 'uniqueId': '0x52c5f5a195c7be51b82598ca5de385d2638dbd3886f6fb37583dfd032adbcf79:log:94', 'hash': '0x52c5f5a195c7be51b82598ca5de385d2638dbd3886f6fb37583dfd032adbcf79', 'from': '0x82c857c20da766dc18e36adeca436b00c943939a', 'to': '0x8920cf4700b8e26d181d64cd602569bfb3daa1da', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:53:42.000Z'}}, {'blockNum': '0x53094c', 'uniqueId': '0x0521cd8e3d3e498061b872a3d774d5e3787bdf43ec72fea611c43d1c0896ff49:log:1', 'hash': '0x0521cd8e3d3e498061b872a3d774d5e3787bdf43ec72fea611c43d1c0896ff49', 'from': '0xb9d20ab8df34e684fa96a0f5cb97e8977d29dfdb', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74881fed00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:54:07.000Z'}}, {'blockNum': '0x53094e', 'uniqueId': '0x65d433f33dbbcc5a85764ef7d6b8c9bcc424b4a5cbe643a7d42eff6d9b051b50:log:64', 'hash': '0x65d433f33dbbcc5a85764ef7d6b8c9bcc424b4a5cbe643a7d42eff6d9b051b50', 'from': '0x4e1754be375bce21808bb44d54282b59d353ff6a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x029962276200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:03.000Z'}}, {'blockNum': '0x53094e', 'uniqueId': '0xe4e4ec5a403109aca3e3be0937822567ed9029246d141870dcb12e0281f257dd:log:65', 'hash': '0xe4e4ec5a403109aca3e3be0937822567ed9029246d141870dcb12e0281f257dd', 'from': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0160102ef100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:03.000Z'}}, {'blockNum': '0x53094e', 'uniqueId': '0x46b3b88634bd74bc0edd07e6c7acf0db4c30bbab50bb947524195f9ab74b88e6:log:66', 'hash': '0x46b3b88634bd74bc0edd07e6c7acf0db4c30bbab50bb947524195f9ab74b88e6', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x028355980f00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:03.000Z'}}, {'blockNum': '0x530952', 'uniqueId': '0xee68d0307ba4b90660050fca1aad793d96f3ab4b041bad30e29fe49790096a68:log:5', 'hash': '0xee68d0307ba4b90660050fca1aad793d96f3ab4b041bad30e29fe49790096a68', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 34580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x032520dc9400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:47.000Z'}}, {'blockNum': '0x530952', 'uniqueId': '0x003eea841a2bd9c49f685479932a559043be46e8f27fcaf1f955a9d0e502779c:log:51', 'hash': '0x003eea841a2bd9c49f685479932a559043be46e8f27fcaf1f955a9d0e502779c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 8151.476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbdca954880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:56:47.000Z'}}, {'blockNum': '0x530955', 'uniqueId': '0xc37d5156a59e70853776875c8c1cb4ffa294459dc9d2acd6562b8ba9d7046bb2:log:2', 'hash': '0xc37d5156a59e70853776875c8c1cb4ffa294459dc9d2acd6562b8ba9d7046bb2', 'from': '0x1c53b76c32e0686ae1abf4cf885e529ef2ab37d3', 'to': '0x1c53b76c32e0686ae1abf4cf885e529ef2ab37d3', 'value': 5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74c9b09800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-14T23:57:31.000Z'}}, {'blockNum': '0x530960', 'uniqueId': '0xdebb6e5003d10271d1f34448e53deed72e23d15d1db5371b220d7880a0adba07:log:19', 'hash': '0xdebb6e5003d10271d1f34448e53deed72e23d15d1db5371b220d7880a0adba07', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xe435f63b41a4060fed5dd702e523f93d69a5659d', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:00:12.000Z'}}, {'blockNum': '0x53096b', 'uniqueId': '0x9cfa7e15456d744051b1a48d7428ef8e2f2fb7d83d69b1b356b8ff49aa44ea08:log:19', 'hash': '0x9cfa7e15456d744051b1a48d7428ef8e2f2fb7d83d69b1b356b8ff49aa44ea08', 'from': '0xf235a108510c902cdea47c958eb4f736e5728281', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:02:30.000Z'}}, {'blockNum': '0x53096e', 'uniqueId': '0x08e78731798aa4bfae78721f0bd5524fde3efc23d6b13402d1e3a85afa0262c4:log:7', 'hash': '0x08e78731798aa4bfae78721f0bd5524fde3efc23d6b13402d1e3a85afa0262c4', 'from': '0x92653bde7a4f6d7c26e481bf5b2a314e09f8f61c', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:03:04.000Z'}}, {'blockNum': '0x530972', 'uniqueId': '0x0c4a907a89f32bd6d4b063157265d1d6cab886af7b0d6b5dc2781b3551743108:log:2', 'hash': '0x0c4a907a89f32bd6d4b063157265d1d6cab886af7b0d6b5dc2781b3551743108', 'from': '0x43d23420ac31093d504159bff45cb28024fab126', 'to': '0x019bda3eecd27470713f8b5514d03e70a204bbbb', 'value': 5034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7534fa6a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:03:25.000Z'}}, {'blockNum': '0x530974', 'uniqueId': '0x2d8c2bacd846fec868c1e572700d35b80f12215a2b9a42e89283889b5437ee76:log:27', 'hash': '0x2d8c2bacd846fec868c1e572700d35b80f12215a2b9a42e89283889b5437ee76', 'from': '0xda62eefa311787092217b4824142981134e1e236', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:04:07.000Z'}}, {'blockNum': '0x530974', 'uniqueId': '0x9d26add883b3306ea49fe1b03158f457782bb5c33c60df2b6f1d148ac2b62563:log:28', 'hash': '0x9d26add883b3306ea49fe1b03158f457782bb5c33c60df2b6f1d148ac2b62563', 'from': '0x5fe72e8a89809de2088f7aadfdd95828c81cc701', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:04:07.000Z'}}, {'blockNum': '0x53097c', 'uniqueId': '0xfa3fbbef5fbae426f863ec377a51b46325704d30fa902e3155948bcc8c3fa46e:log:15', 'hash': '0xfa3fbbef5fbae426f863ec377a51b46325704d30fa902e3155948bcc8c3fa46e', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8151.476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xbdca954880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:05:07.000Z'}}, {'blockNum': '0x53097c', 'uniqueId': '0x6fe14d2453ec6666d8045c82cef81a378a18c76074facedea9971a6ca6c15aae:log:16', 'hash': '0x6fe14d2453ec6666d8045c82cef81a378a18c76074facedea9971a6ca6c15aae', 'from': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:05:07.000Z'}}, {'blockNum': '0x53097c', 'uniqueId': '0xa16bc0ede719a95573dfdabdfa92df28344d48b6951e39393a9d4b355f1efc01:log:17', 'hash': '0xa16bc0ede719a95573dfdabdfa92df28344d48b6951e39393a9d4b355f1efc01', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x032520dc9400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:05:07.000Z'}}, {'blockNum': '0x53097f', 'uniqueId': '0x6bac4d80f6dcdd8b861e280fbc8190e0a1186de660b80f3141df85ac8e871e22:log:6', 'hash': '0x6bac4d80f6dcdd8b861e280fbc8190e0a1186de660b80f3141df85ac8e871e22', 'from': '0x08318113d499d108d3e02f4d9f350a18d7acf32f', 'to': '0x019bda3eecd27470713f8b5514d03e70a204bbbb', 'value': 5004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74822a0c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:05:42.000Z'}}, {'blockNum': '0x530981', 'uniqueId': '0x398ba9ce1a2cd018547a0c4f5f711c4785122fb373462072b2671ac9baa3dab0:log:8', 'hash': '0x398ba9ce1a2cd018547a0c4f5f711c4785122fb373462072b2671ac9baa3dab0', 'from': '0xbca5c5ee1265a4ee149848b65d9ad2b7a5f9895f', 'to': '0x644465a756a290b0bab6b9a63132491da3de7ae2', 'value': 5007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74940baf00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:06:16.000Z'}}, {'blockNum': '0x530986', 'uniqueId': '0x32023df69425a1417515cdb53153a229a83e79a9bbe8488753eff60f69cb963d:log:14', 'hash': '0x32023df69425a1417515cdb53153a229a83e79a9bbe8488753eff60f69cb963d', 'from': '0xef8a120471d71d601b9cc1845ebc1ab1467e25f1', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:07:31.000Z'}}, {'blockNum': '0x530988', 'uniqueId': '0xb63ef8ca0ee4765107deefe652c994421c13ad2f9b8b22353805ba7392e2555d:log:20', 'hash': '0xb63ef8ca0ee4765107deefe652c994421c13ad2f9b8b22353805ba7392e2555d', 'from': '0x27cb915556ae5c188decb15157a224c9aefa1b25', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:07:43.000Z'}}, {'blockNum': '0x53098a', 'uniqueId': '0x986e8341da3f0468599d4ddbdc7c15f64896a3b5ca35497eb537760e10635be8:log:26', 'hash': '0x986e8341da3f0468599d4ddbdc7c15f64896a3b5ca35497eb537760e10635be8', 'from': '0xf7ff92efb2839a5408df4cb5718a96838ba63349', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:08:50.000Z'}}, {'blockNum': '0x53098b', 'uniqueId': '0xe06f33a739e2ae8d6dc71e52c668cf41598fb414471af92890aa6d158b2ed7b0:log:39', 'hash': '0xe06f33a739e2ae8d6dc71e52c668cf41598fb414471af92890aa6d158b2ed7b0', 'from': '0xefe8c8fda6e01abede56dab279d5723550b8d0cd', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:09:19.000Z'}}, {'blockNum': '0x53098e', 'uniqueId': '0x946d5347139f9befa22c5488c31a13fcee95288bbf1c9399b4b893bd03cd4ad9:log:10', 'hash': '0x946d5347139f9befa22c5488c31a13fcee95288bbf1c9399b4b893bd03cd4ad9', 'from': '0x0891838a347851ff3694e7146278fc7c986bd616', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:10:16.000Z'}}, {'blockNum': '0x530993', 'uniqueId': '0x153e65442b2cc4626439790fdfd98f5cf4d2d36a467f9b8c8394617b9ff3b482:log:4', 'hash': '0x153e65442b2cc4626439790fdfd98f5cf4d2d36a467f9b8c8394617b9ff3b482', 'from': '0xe37ad7085aadebeb97698e6ad6467ddeee2e7526', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:11:53.000Z'}}, {'blockNum': '0x530996', 'uniqueId': '0xf1ecdbf68c7be7afa0bba017fa4d486fbb77e700cbb9af173182efa7818661e1:log:4', 'hash': '0xf1ecdbf68c7be7afa0bba017fa4d486fbb77e700cbb9af173182efa7818661e1', 'from': '0xdef269b51d0c4c1b26c2f8649c65bf056e0b3ce4', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x975704e400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:12:34.000Z'}}, {'blockNum': '0x530998', 'uniqueId': '0xb411d045ea427dbbab893d8b76990c007630bb291f3735d9ff26c88199827596:log:11', 'hash': '0xb411d045ea427dbbab893d8b76990c007630bb291f3735d9ff26c88199827596', 'from': '0xe81517e1e6d8145f7ac412963118cadb54acb6a1', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:13:16.000Z'}}, {'blockNum': '0x530999', 'uniqueId': '0x8f92b5c057864d6538cb216e8a50f569a0299725a3319c433c2227587be40dd5:log:11', 'hash': '0x8f92b5c057864d6538cb216e8a50f569a0299725a3319c433c2227587be40dd5', 'from': '0x702223d43b29caf6fc2b535e3f983ae5a300cf9b', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x975704e400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:13:50.000Z'}}, {'blockNum': '0x530999', 'uniqueId': '0x2a11d97092d311f711e8993a3bd774a06bddf16868dae48a60ad31586d5ac163:log:81', 'hash': '0x2a11d97092d311f711e8993a3bd774a06bddf16868dae48a60ad31586d5ac163', 'from': '0x77306c0b26b09d536bcf5b217660ebe17819843d', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:13:50.000Z'}}, {'blockNum': '0x53099d', 'uniqueId': '0x952a9cba4bb69e9d29fb8d6d5ff79c5f4a5563518d28a199259e390df843f30d:log:8', 'hash': '0x952a9cba4bb69e9d29fb8d6d5ff79c5f4a5563518d28a199259e390df843f30d', 'from': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04d2009e0800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:15:09.000Z'}}, {'blockNum': '0x53099d', 'uniqueId': '0x23c9c55a2d6e202ebae5c5bf04fc9d2a8f3a9617275e17c5515d84e444f14473:log:9', 'hash': '0x23c9c55a2d6e202ebae5c5bf04fc9d2a8f3a9617275e17c5515d84e444f14473', 'from': '0x019bda3eecd27470713f8b5514d03e70a204bbbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe9b7247600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:15:09.000Z'}}, {'blockNum': '0x53099f', 'uniqueId': '0xfc231c0f99ce7fed990fc2364e70b912ebab2ca18ef2c8eb275835f1ec21f31b:log:8', 'hash': '0xfc231c0f99ce7fed990fc2364e70b912ebab2ca18ef2c8eb275835f1ec21f31b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x0ae2b017fea73623942698084c6a5339ed204281', 'value': 19442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01c4ab59b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:15:18.000Z'}}, {'blockNum': '0x5309a0', 'uniqueId': '0x946034cc2b359962f05725da7e50aac5d97f2925559ac4a578cab2caaec73a0f:log:59', 'hash': '0x946034cc2b359962f05725da7e50aac5d97f2925559ac4a578cab2caaec73a0f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 25480, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x025140a28800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:15:49.000Z'}}, {'blockNum': '0x5309a4', 'uniqueId': '0x22c6ab3b92af3138f39a7a69b0ddb875399ded997f2f55fc856ad593a5991f0b:log:16', 'hash': '0x22c6ab3b92af3138f39a7a69b0ddb875399ded997f2f55fc856ad593a5991f0b', 'from': '0xe1c97295b6fcf698650d94909743c1663f7d2e2f', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:17:04.000Z'}}, {'blockNum': '0x5309a4', 'uniqueId': '0xf8706b5674967017a83dff98edb29592cbc3a0fc2cb34b881bcfed7905b039c1:log:17', 'hash': '0xf8706b5674967017a83dff98edb29592cbc3a0fc2cb34b881bcfed7905b039c1', 'from': '0x446ae180fba3d86ed18f057ef7461ffcc5eec355', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:17:04.000Z'}}, {'blockNum': '0x5309a6', 'uniqueId': '0x2dd7010e17a2ce60a198f5081ea3d8a06cc0a0f5bdca917422a46f226a5a7ae9:log:7', 'hash': '0x2dd7010e17a2ce60a198f5081ea3d8a06cc0a0f5bdca917422a46f226a5a7ae9', 'from': '0x9a50efa96ad02fafb4c8b23be06db34738afd83a', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:17:27.000Z'}}, {'blockNum': '0x5309a7', 'uniqueId': '0x7b157dbcd2cf25f45aa81589c080bf832c0bd28b4bfdbbc961c66c165703223f:log:12', 'hash': '0x7b157dbcd2cf25f45aa81589c080bf832c0bd28b4bfdbbc961c66c165703223f', 'from': '0xfe02795dd00de2a105710d862c75861b6be83546', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:18:05.000Z'}}, {'blockNum': '0x5309a8', 'uniqueId': '0x52b7ee9f8df4c80a7c4320b2a5f0089848a59d70c46d4d60c54381d6f8a5a1e3:log:15', 'hash': '0x52b7ee9f8df4c80a7c4320b2a5f0089848a59d70c46d4d60c54381d6f8a5a1e3', 'from': '0xceada26994f060c2e87b3610dd41470db6840c14', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:18:23.000Z'}}, {'blockNum': '0x5309a9', 'uniqueId': '0xe07e7bb1ebc12a3317ef15e99ee105e1e61593c40ac7c072d73de41688350ae5:log:22', 'hash': '0xe07e7bb1ebc12a3317ef15e99ee105e1e61593c40ac7c072d73de41688350ae5', 'from': '0x720d7eb37a30b62f6a0c25d563376710a932edb4', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:19:28.000Z'}}, {'blockNum': '0x5309ac', 'uniqueId': '0x698be66203e88bee48d56a6254ea00907e5c24cd0fedb4fd166c3ec2e5ef82a1:log:4', 'hash': '0x698be66203e88bee48d56a6254ea00907e5c24cd0fedb4fd166c3ec2e5ef82a1', 'from': '0x74c36000a981bee41b45e6f5ad3532c8da98fce4', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:19:48.000Z'}}, {'blockNum': '0x5309b2', 'uniqueId': '0x9cbcc912bcd80b8b8632475e2bd3b22a0156d48a9897f9ebca9ca2ddade10584:log:2', 'hash': '0x9cbcc912bcd80b8b8632475e2bd3b22a0156d48a9897f9ebca9ca2ddade10584', 'from': '0x20825d3cab2c497c7fc570b37c399f84e95ddc73', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x975704e400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:20:37.000Z'}}, {'blockNum': '0x5309b4', 'uniqueId': '0xe7aad02c1fcfbbdf0bc3998c808def25cb323ca5854b9815a5cd70d6c3b9d162:log:11', 'hash': '0xe7aad02c1fcfbbdf0bc3998c808def25cb323ca5854b9815a5cd70d6c3b9d162', 'from': '0x08f64bcc2ed8cf65583b5c93ce88f31661f1be40', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:21:09.000Z'}}, {'blockNum': '0x5309b7', 'uniqueId': '0xaa65c8c8c84ff5d668d8fc5de58f55b78c2c48b904bd171680a64aa553ddb99f:log:2', 'hash': '0xaa65c8c8c84ff5d668d8fc5de58f55b78c2c48b904bd171680a64aa553ddb99f', 'from': '0xad66a8e1d44b0410553a735f5a1108ec3a6b69f8', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:21:52.000Z'}}, {'blockNum': '0x5309bb', 'uniqueId': '0x4956c188863747d1d808abe8b9bd0fbc5aea4e6e6481446982e0d5cbfad0aae6:log:7', 'hash': '0x4956c188863747d1d808abe8b9bd0fbc5aea4e6e6481446982e0d5cbfad0aae6', 'from': '0x02db4eec12588cae70cf520dc53d0c4cf8e8225f', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:23:06.000Z'}}, {'blockNum': '0x5309c3', 'uniqueId': '0x8caab8a0380eb248c427b3d945ac5f866df5304eaa24cc3c2894b2908c627015:log:57', 'hash': '0x8caab8a0380eb248c427b3d945ac5f866df5304eaa24cc3c2894b2908c627015', 'from': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x05237e3e3400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:24:54.000Z'}}, {'blockNum': '0x5309c3', 'uniqueId': '0xc955e209dc7e07f9d628f4a61246bf0302f13a83a82db4df3328a15a5cc44389:log:81', 'hash': '0xc955e209dc7e07f9d628f4a61246bf0302f13a83a82db4df3328a15a5cc44389', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25480, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x025140a28800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:24:54.000Z'}}, {'blockNum': '0x5309d3', 'uniqueId': '0x555e825714e474e8da484c52582c0d0861a33ab662a1662d36ab1d7f732f2309:log:88', 'hash': '0x555e825714e474e8da484c52582c0d0861a33ab662a1662d36ab1d7f732f2309', 'from': '0x0e8359e2a28d8ebc6a2a56f37070947845d8668e', 'to': '0xe5b12eacb2877e37fe5e687f4f9bf3f4ec59180b', 'value': 1786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x299563ba00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:28:01.000Z'}}, {'blockNum': '0x5309d4', 'uniqueId': '0x0a3006f094341fd7797c31567631d6cd160eeb9a661a90df4824b4c11d3380f2:log:10', 'hash': '0x0a3006f094341fd7797c31567631d6cd160eeb9a661a90df4824b4c11d3380f2', 'from': '0x3432db18a9e103ee8e76a92f9ec2bfa8e9ad5b02', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 13100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01310215ac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:28:18.000Z'}}, {'blockNum': '0x5309d7', 'uniqueId': '0x792c76c92c7d4b2a75e905087748de58df1b12a1b2d8192646f8cba30530b13e:log:11', 'hash': '0x792c76c92c7d4b2a75e905087748de58df1b12a1b2d8192646f8cba30530b13e', 'from': '0xe61b97c37821e55fda3627845d20f41d4a59052e', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 3880.5234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5a59b8cd20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:28:54.000Z'}}, {'blockNum': '0x5309d8', 'uniqueId': '0xe7dee94fa9058fc2cce606a61313f62586e167931ba9ac39bd3066472785f0d1:log:0', 'hash': '0xe7dee94fa9058fc2cce606a61313f62586e167931ba9ac39bd3066472785f0d1', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 6838.423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x9f382d6860', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:29:02.000Z'}}, {'blockNum': '0x5309da', 'uniqueId': '0x50078cd94dcbe116767b4c7eb56b242de427ab554a81dada9acda9bf839a67a5:log:4', 'hash': '0x50078cd94dcbe116767b4c7eb56b242de427ab554a81dada9acda9bf839a67a5', 'from': '0x1d2800e425638910809b334a05c5210abc2ef535', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 5766.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x864168b9c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:29:28.000Z'}}, {'blockNum': '0x5309dd', 'uniqueId': '0x0775ec5613f462f8bbb06c5d3fb3b60de740b12935c8b5e76b5f982d3b663b69:log:23', 'hash': '0x0775ec5613f462f8bbb06c5d3fb3b60de740b12935c8b5e76b5f982d3b663b69', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xcd2c2b3e82f9f7b8bb160c4e829983854e9a0859', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:17.000Z'}}, {'blockNum': '0x5309dd', 'uniqueId': '0xa08cf95d5d22731ffdc8b9bc574b14e9626d7fe4aebed90e551289a0b0a18b25:log:91', 'hash': '0xa08cf95d5d22731ffdc8b9bc574b14e9626d7fe4aebed90e551289a0b0a18b25', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x30716256c590991775a48ab28dd4b899d6c95031', 'value': 10919.144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfe3b2b8100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:17.000Z'}}, {'blockNum': '0x5309dd', 'uniqueId': '0x7a0d2b7bc36352d30b1ff4001d3fb7b48e08764dc687ec0ee2527fc52957f680:log:95', 'hash': '0x7a0d2b7bc36352d30b1ff4001d3fb7b48e08764dc687ec0ee2527fc52957f680', 'from': '0x2ff6f83c4f4de57913f515a77d134c57055e0487', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 558325.5585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x32c787a88910', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:17.000Z'}}, {'blockNum': '0x5309df', 'uniqueId': '0xd455ec0094f2a7696f102d55ed6453d697838e836a6c0e4b394c8db6a45a5032:log:5', 'hash': '0xd455ec0094f2a7696f102d55ed6453d697838e836a6c0e4b394c8db6a45a5032', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'value': 7156.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa69fdc8340', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:58.000Z'}}, {'blockNum': '0x5309df', 'uniqueId': '0x9a25c6fe1220a07e55f28227909453fdfe1c794a1e283cdb90fedf5b655d8fd7:log:15', 'hash': '0x9a25c6fe1220a07e55f28227909453fdfe1c794a1e283cdb90fedf5b655d8fd7', 'from': '0x22b50212995f62fb8ff5f08857e01bdd8d837f1f', 'to': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'value': 9961.769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe7f0c52fa0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:30:58.000Z'}}, {'blockNum': '0x5309e2', 'uniqueId': '0xaba99a9920b4be89a6261ab9ec05593273136df71a2be2d192c9a99f17f4b4d9:log:2', 'hash': '0xaba99a9920b4be89a6261ab9ec05593273136df71a2be2d192c9a99f17f4b4d9', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xd12a65a346063d7cb051fb06adc4e9a16b49bdcf', 'value': 9950.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe7aafaab80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:31:36.000Z'}}, {'blockNum': '0x5309e4', 'uniqueId': '0x1f7ff49775063be92efce38cd42281599d2250df1b33ff891d5d5e388ef25c72:log:5', 'hash': '0x1f7ff49775063be92efce38cd42281599d2250df1b33ff891d5d5e388ef25c72', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3a06e5db783d0f09ab0315a5c2c3ccd48ce971a3', 'value': 11185.147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01046cabdee0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:32:02.000Z'}}, {'blockNum': '0x5309e8', 'uniqueId': '0x879812e025a18ca40e5fc37938f24b361e4738534e0b7137a99a6fd30c874ee5:log:6', 'hash': '0x879812e025a18ca40e5fc37938f24b361e4738534e0b7137a99a6fd30c874ee5', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x82efff4d821178f7c59e874280b46dd5793593a5', 'value': 3201.4648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4a8a379b80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:33:18.000Z'}}, {'blockNum': '0x5309ee', 'uniqueId': '0x92b5a73579fd23d7b62e5d128e463e9be9150a8816d0427794154fc459274173:log:77', 'hash': '0x92b5a73579fd23d7b62e5d128e463e9be9150a8816d0427794154fc459274173', 'from': '0x6de4acab36b34685ce2af545d052eff0d528bf19', 'to': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:34:41.000Z'}}, {'blockNum': '0x5309ef', 'uniqueId': '0xac40bea674882b0cf8eb024e9ef09f4f9b81d0fd48e6bc91a92a08ea7e433949:log:17', 'hash': '0xac40bea674882b0cf8eb024e9ef09f4f9b81d0fd48e6bc91a92a08ea7e433949', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xa19371a9252ed197538933338a97ceffe9cd38f3', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b477f9e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:20.000Z'}}, {'blockNum': '0x5309ef', 'uniqueId': '0xa1f908d746c9d3bd675f9b24b33391c0884ade7958bfccd0de850aa87d8e76be:log:46', 'hash': '0xa1f908d746c9d3bd675f9b24b33391c0884ade7958bfccd0de850aa87d8e76be', 'from': '0x30716256c590991775a48ab28dd4b899d6c95031', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10919.144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xfe3b2b8100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:20.000Z'}}, {'blockNum': '0x5309ef', 'uniqueId': '0x200f015a5aa4d9b1ffa9ee840608f329eb80d5772e6eb13d0c1ab1cabc7cda13:log:47', 'hash': '0x200f015a5aa4d9b1ffa9ee840608f329eb80d5772e6eb13d0c1ab1cabc7cda13', 'from': '0xcdefc9a25c5e811b8fb2e10fa62a1b12315e0ba9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10696.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xf90df95220', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:20.000Z'}}, {'blockNum': '0x5309ef', 'uniqueId': '0xdf5033852787097cec0b4a5bb1f12e6f2a6c1794980f9b444712f82d628af848:log:48', 'hash': '0xdf5033852787097cec0b4a5bb1f12e6f2a6c1794980f9b444712f82d628af848', 'from': '0xd12a65a346063d7cb051fb06adc4e9a16b49bdcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9950.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe7aafaab80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:20.000Z'}}, {'blockNum': '0x5309f1', 'uniqueId': '0xc915650a34b5b126a4b6d4964049dfdf4ee9da0eb479610053f42c861cb9dc5e:log:65', 'hash': '0xc915650a34b5b126a4b6d4964049dfdf4ee9da0eb479610053f42c861cb9dc5e', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xa19371a9252ed197538933338a97ceffe9cd38f3', 'value': 4985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7410ea5900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:36.000Z'}}, {'blockNum': '0x5309f2', 'uniqueId': '0x040cdf1db2a5168fdbe6b325472d21cc58f0edea7c6d0a828e1e8da51ab7ebcf:log:40', 'hash': '0x040cdf1db2a5168fdbe6b325472d21cc58f0edea7c6d0a828e1e8da51ab7ebcf', 'from': '0xb3d3d0da6243dc954ce00da272d13b5200b8edc1', 'to': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:35:50.000Z'}}, {'blockNum': '0x5309f7', 'uniqueId': '0xdf1a948b5cab419bfa903dd0e05a936e95e395f154581652adede81caa2c24d6:log:15', 'hash': '0xdf1a948b5cab419bfa903dd0e05a936e95e395f154581652adede81caa2c24d6', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 30076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02bc42edfc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:36:45.000Z'}}, {'blockNum': '0x5309f9', 'uniqueId': '0xb8ab726d1d50c703ecef486ef74bb377b1b9e6361092438f0ec36584e21506ec:log:2', 'hash': '0xb8ab726d1d50c703ecef486ef74bb377b1b9e6361092438f0ec36584e21506ec', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'value': 4984.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x740af90be0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:37:05.000Z'}}, {'blockNum': '0x5309ff', 'uniqueId': '0x65bc8ae1493f2b3a6baa1b3b8f473848e4390b62fd76e79c508cfc11e9726552:log:5', 'hash': '0x65bc8ae1493f2b3a6baa1b3b8f473848e4390b62fd76e79c508cfc11e9726552', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'value': 9969.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe81be364e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:39:20.000Z'}}, {'blockNum': '0x530a02', 'uniqueId': '0x560f469bd096aeffdf99314746dcbe2569dae1dc0d8cb778b27d010b7bc391f4:log:0', 'hash': '0x560f469bd096aeffdf99314746dcbe2569dae1dc0d8cb778b27d010b7bc391f4', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xc4f23f11be514bb138eac7fe718e6f943c0abaa1', 'value': 4984.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x740af90be0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:39:49.000Z'}}, {'blockNum': '0x530a05', 'uniqueId': '0x2a6e8bbbb9743ce580fefed6a661a2e23aeaf532cfdffe6b0f9d546689d6a747:log:0', 'hash': '0x2a6e8bbbb9743ce580fefed6a661a2e23aeaf532cfdffe6b0f9d546689d6a747', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x5a5f46c4d727d4c1204cd8518d9b3ece3a4d564c', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:40:31.000Z'}}, {'blockNum': '0x530a06', 'uniqueId': '0x883e4fbdf61e835b85b321afc377a9196669bc7542475bc3d45e0f53354319b9:log:110', 'hash': '0x883e4fbdf61e835b85b321afc377a9196669bc7542475bc3d45e0f53354319b9', 'from': '0xa19371a9252ed197538933338a97ceffe9cd38f3', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 10967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xff5869f700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:41:29.000Z'}}, {'blockNum': '0x530a06', 'uniqueId': '0x6c067312e510b39e451b3b71d4edc038c8962f13c24d7a992233c3caece1fe7d:log:158', 'hash': '0x6c067312e510b39e451b3b71d4edc038c8962f13c24d7a992233c3caece1fe7d', 'from': '0xa9aca5de2c7f5286d183802ea38f317e0ffcf8f4', 'to': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:41:29.000Z'}}, {'blockNum': '0x530a09', 'uniqueId': '0x3548063a2e0e10e46086bf2ea6e0156cfc1c1284db85278e8f2e79f71507e2bf:log:2', 'hash': '0x3548063a2e0e10e46086bf2ea6e0156cfc1c1284db85278e8f2e79f71507e2bf', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x95c399d7ea3331b3ab8d9e45218af2f5e5e0b546', 'value': 1056.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x189b235880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:41:54.000Z'}}, {'blockNum': '0x530a0b', 'uniqueId': '0xf84369e11e949f812818bf859fd8a929869f9524dea8cb9d6e57e296199c6b20:log:36', 'hash': '0xf84369e11e949f812818bf859fd8a929869f9524dea8cb9d6e57e296199c6b20', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xdbed08ad8fe51c1572f9007b589511109c32eb2a', 'value': 4850.405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x70eeaaad20', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:42:45.000Z'}}, {'blockNum': '0x530a0e', 'uniqueId': '0x0e7d0b1698900dcffd24e4bdc0a99e13b32b9e87fa528cdd18f4377ac8c2d2ce:log:7', 'hash': '0x0e7d0b1698900dcffd24e4bdc0a99e13b32b9e87fa528cdd18f4377ac8c2d2ce', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x72b5675e2930417c3e51056b939aa86f22626ebe', 'value': 1701.879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x279ffd4460', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:43:22.000Z'}}, {'blockNum': '0x530a14', 'uniqueId': '0x536edab1db8a1e17c5223f5c2783a2c354871a27f8f6c5c63062e13e2fcc0f84:log:11', 'hash': '0x536edab1db8a1e17c5223f5c2783a2c354871a27f8f6c5c63062e13e2fcc0f84', 'from': '0x71a45af32bae715e24705ce0ab1a52ce95d1f4a1', 'to': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'value': 5000.94042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746fed7f90', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:43:58.000Z'}}, {'blockNum': '0x530a16', 'uniqueId': '0x7db21d593fba2b8545bc8efded04abff337b0284029fea26248480296daa966b:log:3', 'hash': '0x7db21d593fba2b8545bc8efded04abff337b0284029fea26248480296daa966b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:44:16.000Z'}}, {'blockNum': '0x530a18', 'uniqueId': '0x043971c4947d6084a97e221a90cda1861ab816eee862aa43b186d2913c87ba94:log:45', 'hash': '0x043971c4947d6084a97e221a90cda1861ab816eee862aa43b186d2913c87ba94', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x156fdfa2d17f9bf75a4792e797fa30cb34c53c40', 'value': 398.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0949088200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:44:52.000Z'}}, {'blockNum': '0x530a19', 'uniqueId': '0x20d95003e740485eb082fb0bd8db2024e31978e340f4c60ef6d866ddcdf7a58d:log:31', 'hash': '0x20d95003e740485eb082fb0bd8db2024e31978e340f4c60ef6d866ddcdf7a58d', 'from': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:15.000Z'}}, {'blockNum': '0x530a19', 'uniqueId': '0x7677b4c5e2a7682b9d4273c55117c963de86870f5d6565b96c9a0e7bc496bbcc:log:32', 'hash': '0x7677b4c5e2a7682b9d4273c55117c963de86870f5d6565b96c9a0e7bc496bbcc', 'from': '0x3a06e5db783d0f09ab0315a5c2c3ccd48ce971a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11185.147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01046cabdee0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:15.000Z'}}, {'blockNum': '0x530a19', 'uniqueId': '0x7fe8d975b5373128dbaabaa6932a1564c6bcf424699a336406a41e8882f3be62:log:33', 'hash': '0x7fe8d975b5373128dbaabaa6932a1564c6bcf424699a336406a41e8882f3be62', 'from': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14953.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x015c26dc70c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:15.000Z'}}, {'blockNum': '0x530a19', 'uniqueId': '0xd7fba2c0afc73f34d16fa4bb593c23bac07b250a7fbf46dbfda2f08b31f46454:log:34', 'hash': '0xd7fba2c0afc73f34d16fa4bb593c23bac07b250a7fbf46dbfda2f08b31f46454', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02bc42edfc00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:15.000Z'}}, {'blockNum': '0x530a1c', 'uniqueId': '0x0505f9b141ab2e4a19bce0b6b24742ddfc9aa0f9d966159644237a40b52e9d12:log:6', 'hash': '0x0505f9b141ab2e4a19bce0b6b24742ddfc9aa0f9d966159644237a40b52e9d12', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 2957.9993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x44df0cbc90', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:42.000Z'}}, {'blockNum': '0x530a1e', 'uniqueId': '0x34f10cd33fa587216695f8920fab345a2b9ed3298c8f0613ea977dc123b245a6:log:52', 'hash': '0x34f10cd33fa587216695f8920fab345a2b9ed3298c8f0613ea977dc123b245a6', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x82efff4d821178f7c59e874280b46dd5793593a5', 'value': 12031.9524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011824065e40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:45:47.000Z'}}, {'blockNum': '0x530a20', 'uniqueId': '0xd5f0f584ae1df2b5a7009960131b1fc45dee99a26678f2353e124f1ba5f47b1f:log:4', 'hash': '0xd5f0f584ae1df2b5a7009960131b1fc45dee99a26678f2353e124f1ba5f47b1f', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x91f41176eb10d612aefe45284f05f640aa2d0bac', 'value': 3341.944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4dcf89db00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:47:25.000Z'}}, {'blockNum': '0x530a20', 'uniqueId': '0x35473a2e68705d869b5a79eb351fdd206438541a964a1a12bc29b56bc4eb31d5:log:29', 'hash': '0x35473a2e68705d869b5a79eb351fdd206438541a964a1a12bc29b56bc4eb31d5', 'from': '0xfc5bb2c1ec69bfb14b329368bd35bfcb5d1f1e60', 'to': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'value': 5001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x7470486900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:47:25.000Z'}}, {'blockNum': '0x530a25', 'uniqueId': '0x3ace561b2dfbc90ed03140e63776ed2c5a2c9acb1f9f9ac93ce2009a8b575487:log:3', 'hash': '0x3ace561b2dfbc90ed03140e63776ed2c5a2c9acb1f9f9ac93ce2009a8b575487', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:48:12.000Z'}}, {'blockNum': '0x530a2a', 'uniqueId': '0xe13c709494505cf9d354ee9034c86ed8acb1f850ac529ca3dbd4cac87a96cc9c:log:5', 'hash': '0xe13c709494505cf9d354ee9034c86ed8acb1f850ac529ca3dbd4cac87a96cc9c', 'from': '0x6720c9b8b8aa9ff672195647976bcb9ba562c85f', 'to': '0xe448b82e58437f185660ef4921f01c10c3982ed7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:48:55.000Z'}}, {'blockNum': '0x530a2f', 'uniqueId': '0x52832cb7e157e4311e41959dbda07d3d18ac3c6228fd7cab591705312112c0d2:log:2', 'hash': '0x52832cb7e157e4311e41959dbda07d3d18ac3c6228fd7cab591705312112c0d2', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x156fdfa2d17f9bf75a4792e797fa30cb34c53c40', 'value': 4220.7328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6245872600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:49:55.000Z'}}, {'blockNum': '0x530a33', 'uniqueId': '0x6cc40d39e640654a885255599201ec908ec4fe10d24d76ac6665b176749adc17:log:7', 'hash': '0x6cc40d39e640654a885255599201ec908ec4fe10d24d76ac6665b176749adc17', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'value': 9968.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe815f217c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:50:41.000Z'}}, {'blockNum': '0x530a38', 'uniqueId': '0x38e80bd31273be9f8d49a28dfbae5842afcd36105369c5c2a8b90a0483db064f:log:0', 'hash': '0x38e80bd31273be9f8d49a28dfbae5842afcd36105369c5c2a8b90a0483db064f', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b477f9e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:52:22.000Z'}}, {'blockNum': '0x530a43', 'uniqueId': '0xbe378dadfc9ae9cef7f3aee2d50dadf7fa30591704b6f7589aba60cdd5908a61:log:52', 'hash': '0xbe378dadfc9ae9cef7f3aee2d50dadf7fa30591704b6f7589aba60cdd5908a61', 'from': '0x3481b5dd41c6ede5ee50da951c9292932661ba94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:55:11.000Z'}}, {'blockNum': '0x530a43', 'uniqueId': '0xcb6bdf92b6cbbd867d8b340b6aa67e7becdb427f46fb0474a38c92c75ca790dc:log:53', 'hash': '0xcb6bdf92b6cbbd867d8b340b6aa67e7becdb427f46fb0474a38c92c75ca790dc', 'from': '0x23bf6d9d931179b4783ee09fe50b28e2b801804e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9968.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe815f217c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:55:11.000Z'}}, {'blockNum': '0x530a43', 'uniqueId': '0xf76d9c6b39ae4c7e299e436b75868437cd7d383d732c3a414a174695475fbc16:log:54', 'hash': '0xf76d9c6b39ae4c7e299e436b75868437cd7d383d732c3a414a174695475fbc16', 'from': '0xfb1bc9f77fa140cfe97fa48dd9bf263a46ae3ebe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10001.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8e04486c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:55:11.000Z'}}, {'blockNum': '0x530a4f', 'uniqueId': '0xbeaa7c3c482640e3232215d7e2a6ef41c63d85715ba7157f9b01c2a9b128bae7:log:69', 'hash': '0xbeaa7c3c482640e3232215d7e2a6ef41c63d85715ba7157f9b01c2a9b128bae7', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 24876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02433083ac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T00:58:06.000Z'}}, {'blockNum': '0x530a58', 'uniqueId': '0xd75fc6c84deec855e258301fa1079072a07bebdd7c72ec53a90c7ea42f308844:log:25', 'hash': '0xd75fc6c84deec855e258301fa1079072a07bebdd7c72ec53a90c7ea42f308844', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xfaaf6e38dbdf9086981b591b224cbe39d56edc9c', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:00:11.000Z'}}, {'blockNum': '0x530a5e', 'uniqueId': '0x2647ca9d60675ab1b81394f49ffe580b7ae2abf0893998779594728e765078f8:log:134', 'hash': '0x2647ca9d60675ab1b81394f49ffe580b7ae2abf0893998779594728e765078f8', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9e1556100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:01:51.000Z'}}, {'blockNum': '0x530a6b', 'uniqueId': '0x9c726e2a3ddc6421114ace9b692b084cc3ba9230e925a916ace2ff14090976d3:log:90', 'hash': '0x9c726e2a3ddc6421114ace9b692b084cc3ba9230e925a916ace2ff14090976d3', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02433083ac00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:05:05.000Z'}}, {'blockNum': '0x530a6b', 'uniqueId': '0x4e211b4022777f7fb16e057621ad1888ab82bb0f07595b8ee41540d93316aba1:log:91', 'hash': '0x4e211b4022777f7fb16e057621ad1888ab82bb0f07595b8ee41540d93316aba1', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d9e1556100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:05:05.000Z'}}, {'blockNum': '0x530a6c', 'uniqueId': '0x655aa969260fef99f9499a577f2638187ff18463eb7315f3a2bb89ac73c3ac8d:log:0', 'hash': '0x655aa969260fef99f9499a577f2638187ff18463eb7315f3a2bb89ac73c3ac8d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x72b5675e2930417c3e51056b939aa86f22626ebe', 'value': 1751.729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x28c91e54a0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:05:12.000Z'}}, {'blockNum': '0x530a79', 'uniqueId': '0xf1438e71ab9bee33f77c3fde80c073fd5ffd308b4e9877cf74ba84c35b5aba21:log:79', 'hash': '0xf1438e71ab9bee33f77c3fde80c073fd5ffd308b4e9877cf74ba84c35b5aba21', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 27169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027893dc0100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:09:46.000Z'}}, {'blockNum': '0x530a82', 'uniqueId': '0x40b9d2427dfc03b239295f00632df2be0dc601e374274f1c5bac2596539ff287:log:84', 'hash': '0x40b9d2427dfc03b239295f00632df2be0dc601e374274f1c5bac2596539ff287', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'value': 21073.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01eaa6d5bb40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:11:50.000Z'}}, {'blockNum': '0x530a86', 'uniqueId': '0x842f44ed10888983a849fd3875100756f55c8f61f70c3761757296b9c6c37ec4:log:10', 'hash': '0x842f44ed10888983a849fd3875100756f55c8f61f70c3761757296b9c6c37ec4', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 5982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x8b477f9e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:12:26.000Z'}}, {'blockNum': '0x530a92', 'uniqueId': '0x50bb2c67121cf16b3b03b59a6b9367c9c812ab5f855aba1ed31c8c0253ff4eb9:log:9', 'hash': '0x50bb2c67121cf16b3b03b59a6b9367c9c812ab5f855aba1ed31c8c0253ff4eb9', 'from': '0xe1c46243a7ea1e047a85d3cccb5c41c72ee7d892', 'to': '0x647c9baeacb9502cee126b81d5e373b500dfa88b', 'value': 342.616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x07fa268700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:15:22.000Z'}}, {'blockNum': '0x530a92', 'uniqueId': '0xc235da58f96ef1a6dae1009d40d33cc9b1340738e9277c0e9d7d2501a5ba1ccb:log:31', 'hash': '0xc235da58f96ef1a6dae1009d40d33cc9b1340738e9277c0e9d7d2501a5ba1ccb', 'from': '0x0da2373219faff07d8190e39f77017b8e45ad4cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21073.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01eaa6d5bb40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:15:22.000Z'}}, {'blockNum': '0x530a92', 'uniqueId': '0x7b8ef5659ed0c10e89e227ec11b493b3e6e0dff20bf1dc9d554faf768a8c7515:log:33', 'hash': '0x7b8ef5659ed0c10e89e227ec11b493b3e6e0dff20bf1dc9d554faf768a8c7515', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x027893dc0100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:15:22.000Z'}}, {'blockNum': '0x530a92', 'uniqueId': '0x45d1489e3fa08d668ac80da3dd04d5602216ec93d6aa0f39b4a2588289205c81:log:34', 'hash': '0x45d1489e3fa08d668ac80da3dd04d5602216ec93d6aa0f39b4a2588289205c81', 'from': '0x72b5675e2930417c3e51056b939aa86f22626ebe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6281.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x923e45ff80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:15:22.000Z'}}, {'blockNum': '0x530a9f', 'uniqueId': '0xcdb5340a4380b03137e7825540f95b657748260178f6e510f0da45db9849ed8d:log:4', 'hash': '0xcdb5340a4380b03137e7825540f95b657748260178f6e510f0da45db9849ed8d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x896b2222b907de1074db67b25f94c1a0f44ff16d', 'value': 7976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xb9b4aa2800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:17:08.000Z'}}, {'blockNum': '0x530aa4', 'uniqueId': '0x6d9bc26a0f39753b5a366f75c8eac96bebe7c7d5346aa3ef766c4ea0023244a5:log:4', 'hash': '0x6d9bc26a0f39753b5a366f75c8eac96bebe7c7d5346aa3ef766c4ea0023244a5', 'from': '0xdae4d2c84046e46da756fbf664881e75c55b0808', 'to': '0xc354d1b466986f2149ffdafc4d68e16fb21b0b3e', 'value': 17058.29224104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x018d2b584ea8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:18:16.000Z'}}, {'blockNum': '0x530aa4', 'uniqueId': '0xafe3dd82f07d2487732c43ac00a6f88e45b08ca937482d94c15591d69f5f69fd:log:18', 'hash': '0xafe3dd82f07d2487732c43ac00a6f88e45b08ca937482d94c15591d69f5f69fd', 'from': '0xc0cbd93be551016e000482a32c91402af64e587d', 'to': '0x72dafbe65ba160b840da3d58fb6395da94e74599', 'value': 986.55397913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x16f851e819', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:18:16.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0x2958424aada3967534911e91410e78e2018b5221731fe00902519dc9b08922cb:log:22', 'hash': '0x2958424aada3967534911e91410e78e2018b5221731fe00902519dc9b08922cb', 'from': '0x82efff4d821178f7c59e874280b46dd5793593a5', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 15233.4172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0162ae3df9c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0xaf8c3343d29020e3101035221f23402aab19b6994fa11264135e5c418315d74d:log:25', 'hash': '0xaf8c3343d29020e3101035221f23402aab19b6994fa11264135e5c418315d74d', 'from': '0xdbed08ad8fe51c1572f9007b589511109c32eb2a', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4850.4049999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x70eeaaad16', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0xe5c5648b80c6daa41a0bfdab4225479ba34060016a2f56703f59eb1301ef8818:log:26', 'hash': '0xe5c5648b80c6daa41a0bfdab4225479ba34060016a2f56703f59eb1301ef8818', 'from': '0x156fdfa2d17f9bf75a4792e797fa30cb34c53c40', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 6605.5705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x99cc44b090', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0xdbedb029f4d36236096e2b6dd28b53e2e6bbcf6f227a4f97db8ab00f0903145d:log:27', 'hash': '0xdbedb029f4d36236096e2b6dd28b53e2e6bbcf6f227a4f97db8ab00f0903145d', 'from': '0xd972a9301458c1517fb25e4e05e939297f835402', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 3124.2034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x48bdb41120', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530aad', 'uniqueId': '0x43549fa04d8dc15afc3e66b8e196e6aaa9c63cd7b4a7e4961a6ba2655396e731:log:58', 'hash': '0x43549fa04d8dc15afc3e66b8e196e6aaa9c63cd7b4a7e4961a6ba2655396e731', 'from': '0xfa494915700050201e283533bf2ba7a690a17b3e', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 61375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0594ff81df00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:19:53.000Z'}}, {'blockNum': '0x530ac3', 'uniqueId': '0x7c09788c4be3637fd51891cb98aec9216c93088122256f82c55fc15da745fa07:log:4', 'hash': '0x7c09788c4be3637fd51891cb98aec9216c93088122256f82c55fc15da745fa07', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x0de9aae7d237afacfac7bc6a9c9898a65f23600e', 'value': 7056.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa44d9a62c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:24:01.000Z'}}, {'blockNum': '0x530aca', 'uniqueId': '0x38e8d7e82b3edff48eaef785f54d12db8ab55878d783d17257d7135307140c25:log:165', 'hash': '0x38e8d7e82b3edff48eaef785f54d12db8ab55878d783d17257d7135307140c25', 'from': '0xc354d1b466986f2149ffdafc4d68e16fb21b0b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17058.29224104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x018d2b584ea8', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:26:07.000Z'}}, {'blockNum': '0x530acb', 'uniqueId': '0x1553d517403861684cd08ca15a0f4350fb6d8b94b9a96ce7166788de0a668752:log:19', 'hash': '0x1553d517403861684cd08ca15a0f4350fb6d8b94b9a96ce7166788de0a668752', 'from': '0x0de9aae7d237afacfac7bc6a9c9898a65f23600e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7056.766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa44d9a62c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:26:13.000Z'}}, {'blockNum': '0x530ade', 'uniqueId': '0x56ce4400af18fcdd39be6fb11643073cab6cdae99fef544165965db94bf4403b:log:104', 'hash': '0x56ce4400af18fcdd39be6fb11643073cab6cdae99fef544165965db94bf4403b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x0eed5b50cb37ae0389c16a338f3ddbdaf0fb307b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:32:09.000Z'}}, {'blockNum': '0x530b14', 'uniqueId': '0x3073fb5ecb225e8682f78946d7f9b91078782b5e9086a8053c17932597fc7c1b:log:8', 'hash': '0x3073fb5ecb225e8682f78946d7f9b91078782b5e9086a8053c17932597fc7c1b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 26028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x025e02f82c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:44:34.000Z'}}, {'blockNum': '0x530b25', 'uniqueId': '0x925b273c16de7f21f54848163e306305dc974d230c28e5dbeedb9b33bea7ac6a:log:87', 'hash': '0x925b273c16de7f21f54848163e306305dc974d230c28e5dbeedb9b33bea7ac6a', 'from': '0x9d54b01b834cac9d90c37c83f159021d75aa60b9', 'to': '0x192ef9b8984aa79044b18f8fb4c24c401b06e168', 'value': 11274.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010683a721c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:47:24.000Z'}}, {'blockNum': '0x530b49', 'uniqueId': '0x32ab39b0c4013cea8be16f65f51f9572f24a22231b3c47f5e43a887cc17d38c3:log:23', 'hash': '0x32ab39b0c4013cea8be16f65f51f9572f24a22231b3c47f5e43a887cc17d38c3', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 25735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0257308da700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:54:58.000Z'}}, {'blockNum': '0x530b4a', 'uniqueId': '0xf1bc36e4425b2291494e08e26ff2890ccbec582040a61dddf3d2a5b3ee4ca40a:log:32', 'hash': '0xf1bc36e4425b2291494e08e26ff2890ccbec582040a61dddf3d2a5b3ee4ca40a', 'from': '0x192ef9b8984aa79044b18f8fb4c24c401b06e168', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11274.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x010683a721c0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:55:09.000Z'}}, {'blockNum': '0x530b4a', 'uniqueId': '0x17cb5f11f428438f526430982fe1c351538cbe6271c0b3625007e0d23cded4f6:log:35', 'hash': '0x17cb5f11f428438f526430982fe1c351538cbe6271c0b3625007e0d23cded4f6', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x025e02f82c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:55:09.000Z'}}, {'blockNum': '0x530b51', 'uniqueId': '0xe833da5a1528d4e5c6ec78d8172163b1e9fe1205f25d286ea755985a33018bb1:log:25', 'hash': '0xe833da5a1528d4e5c6ec78d8172163b1e9fe1205f25d286ea755985a33018bb1', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d745c2f100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T01:56:51.000Z'}}, {'blockNum': '0x530b5a', 'uniqueId': '0xfd896ef9d3a79b58132fa615b53486d08fd4d63490ecfee63fc1cb7cdcad8f14:log:72', 'hash': '0xfd896ef9d3a79b58132fa615b53486d08fd4d63490ecfee63fc1cb7cdcad8f14', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x4102c41cb9b353f175ce5b32839910a8fc4f20a9', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:00:05.000Z'}}, {'blockNum': '0x530b5d', 'uniqueId': '0xb0112ca0545eecbb1d81b6557abfdb9cd3c38bb335db17cf46d6d89e5d66ec78:log:0', 'hash': '0xb0112ca0545eecbb1d81b6557abfdb9cd3c38bb335db17cf46d6d89e5d66ec78', 'from': '0xfa0debf91414a1e22053c3e1d35cc2c9feeb646c', 'to': '0x49de4302450ccb65068eaf145c50f93b1a313869', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:01:08.000Z'}}, {'blockNum': '0x530b6c', 'uniqueId': '0xf0e15bf7b91805593cc3e1f80a2a699f656461c36f1a43d910c92b3e910fb85f:log:45', 'hash': '0xf0e15bf7b91805593cc3e1f80a2a699f656461c36f1a43d910c92b3e910fb85f', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0257308da700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:05:38.000Z'}}, {'blockNum': '0x530b6c', 'uniqueId': '0x784060d28f3ba56fc48efce992c5b74071711a07c2e5115a313f72400413bd42:log:48', 'hash': '0x784060d28f3ba56fc48efce992c5b74071711a07c2e5115a313f72400413bd42', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d745c2f100', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:05:38.000Z'}}, {'blockNum': '0x530ba3', 'uniqueId': '0xc0914a12629a89cc113b2eb4865ad06f343302e34df127d6c57222477a06e965:log:10', 'hash': '0xc0914a12629a89cc113b2eb4865ad06f343302e34df127d6c57222477a06e965', 'from': '0x590a4ebeec7a69b95d5a60e38634d55de86ba0eb', 'to': '0x4e6d821e4201f6997dca5078cb6f023004f2a756', 'value': 33000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03005753e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:17:59.000Z'}}, {'blockNum': '0x530bd1', 'uniqueId': '0xd641f9d199cdd9d51ce927754c97e77f5c7c9be9eee4ea5d68d7c9df704766c0:log:6', 'hash': '0xd641f9d199cdd9d51ce927754c97e77f5c7c9be9eee4ea5d68d7c9df704766c0', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xf62315a69bfd53856f565459e115ac6bd768fee2', 'value': 3670.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x5576813780', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:26:21.000Z'}}, {'blockNum': '0x530bd7', 'uniqueId': '0x6da1396007d0ce716f59bb001ea7136c34389a4635e2a31fdb8dec416c2e851e:log:1', 'hash': '0x6da1396007d0ce716f59bb001ea7136c34389a4635e2a31fdb8dec416c2e851e', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 24621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023d40988d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:26:39.000Z'}}, {'blockNum': '0x530bda', 'uniqueId': '0xb12f0b6a9683f9ac49a0dd733db4e21768dbe2473adcf2dd9784ef8323f4dc2d:log:4', 'hash': '0xb12f0b6a9683f9ac49a0dd733db4e21768dbe2473adcf2dd9784ef8323f4dc2d', 'from': '0x1794b02d2a49685b3d29d3ada018ef98556645b0', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 24883.042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02435a7ce940', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:27:14.000Z'}}, {'blockNum': '0x530bde', 'uniqueId': '0x95e83ae49ab04d139df5b700e917732231ad86bc8d36a203ea5c1d58e5d03d22:log:8', 'hash': '0x95e83ae49ab04d139df5b700e917732231ad86bc8d36a203ea5c1d58e5d03d22', 'from': '0xb77c85b0ba73ee51bb98d2e8d3a0ae48e562f914', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 13467.256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01398f19db00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:28:49.000Z'}}, {'blockNum': '0x530be3', 'uniqueId': '0x993d62d953cc8f9f046325cf02678109cd8e6577a3e3fb92d694d1e71d7b12c2:log:10', 'hash': '0x993d62d953cc8f9f046325cf02678109cd8e6577a3e3fb92d694d1e71d7b12c2', 'from': '0x7826f8c66bc0e9dfdf5dfc5d15d07a4b9a068f07', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 12139.3684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x011aa4462d40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:29:40.000Z'}}, {'blockNum': '0x530be5', 'uniqueId': '0xdbd18e64412ef576aca2bb5bba18bcaec75290fe4a8026508e06f08439c035a3:log:30', 'hash': '0xdbd18e64412ef576aca2bb5bba18bcaec75290fe4a8026508e06f08439c035a3', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'value': 9200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd63445f000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:30:02.000Z'}}, {'blockNum': '0x530be5', 'uniqueId': '0x36b08b93303179cb6accc785ea88904e00a0d71bfafff3bb98ed82a4a5ab2338:log:31', 'hash': '0x36b08b93303179cb6accc785ea88904e00a0d71bfafff3bb98ed82a4a5ab2338', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x710aa2a3f8993b720a54eaf7f360f79c66bcf7ee', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:30:02.000Z'}}, {'blockNum': '0x530be6', 'uniqueId': '0xcb429bc2b2f0e58eb38197a123d8cef004c93279b8ec605a254dd1d062230c43:log:43', 'hash': '0xcb429bc2b2f0e58eb38197a123d8cef004c93279b8ec605a254dd1d062230c43', 'from': '0x24ca730d103d7062f0b513c53e1ea12dde3d04c9', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 16757.5939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01862b0b0d30', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:30:06.000Z'}}, {'blockNum': '0x530bea', 'uniqueId': '0x1896d96fcf5221d70ba7b5f8385d711699d178ae55bca7174882d5651feff770:log:0', 'hash': '0x1896d96fcf5221d70ba7b5f8385d711699d178ae55bca7174882d5651feff770', 'from': '0xdd6d11ddefb3deea6d284be7561b3f15fccad029', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 89828.3409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x082b7aa29010', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:31:12.000Z'}}, {'blockNum': '0x530bed', 'uniqueId': '0xc6e9a6747f449d9d12fe04ae8da538c60b598257caf738cc546cee51087f1849:log:8', 'hash': '0xc6e9a6747f449d9d12fe04ae8da538c60b598257caf738cc546cee51087f1849', 'from': '0xd6f90da8c43ae2a6570d57b262f208b974af75fb', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 44460.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x040b2a4f6e40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:32:18.000Z'}}, {'blockNum': '0x530bf0', 'uniqueId': '0x4cf630c2d1b0b5903f93b24767f2a4e99c60caef86449c0fbec545fca9457f1d:log:10', 'hash': '0x4cf630c2d1b0b5903f93b24767f2a4e99c60caef86449c0fbec545fca9457f1d', 'from': '0xcab0029621156cf11bb9a14f6f775b57f1a649c9', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 198049.6748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1203340d2ac0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:32:58.000Z'}}, {'blockNum': '0x530bf5', 'uniqueId': '0xf1b1614df46c1b4a404b8abf604a64571f3791559875c8970ab8a472593c06af:log:10', 'hash': '0xf1b1614df46c1b4a404b8abf604a64571f3791559875c8970ab8a472593c06af', 'from': '0x3eb3f0db3a63337704cd7c050f522acfcdbb8c26', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 24694.124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023ef472eb80', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:33:35.000Z'}}, {'blockNum': '0x530bf8', 'uniqueId': '0x70b05b4fca5a3bcd1997b04f89f10b0ed257128cc84c1db4911f4e279d9295d7:log:39', 'hash': '0x70b05b4fca5a3bcd1997b04f89f10b0ed257128cc84c1db4911f4e279d9295d7', 'from': '0x1c057ba29b7bcf22afe3d0a15c1854df24361f8b', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 50932.5844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04a1dddc2d40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:34:18.000Z'}}, {'blockNum': '0x530bfb', 'uniqueId': '0xdec31753ef264f8eaa0091e2317cdc90d8aabc5d2d888b04d5f51d90cec9aa3d:log:17', 'hash': '0xdec31753ef264f8eaa0091e2317cdc90d8aabc5d2d888b04d5f51d90cec9aa3d', 'from': '0x14eb37f9b92a0cbef4cc52f06d59a8007aa5400d', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 26281.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0263e7cd2880', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:35:12.000Z'}}, {'blockNum': '0x530bfb', 'uniqueId': '0x5f4a731181b22b93490e22d55bfdefa347688e1b04a40278006db2881ea9b9e5:log:62', 'hash': '0x5f4a731181b22b93490e22d55bfdefa347688e1b04a40278006db2881ea9b9e5', 'from': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd63445f000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:35:12.000Z'}}, {'blockNum': '0x530bfb', 'uniqueId': '0xe978102c26f59d10516f670d9dbdf8470739189ab23c7fe0da573434f43ae649:log:64', 'hash': '0xe978102c26f59d10516f670d9dbdf8470739189ab23c7fe0da573434f43ae649', 'from': '0x4e6d821e4201f6997dca5078cb6f023004f2a756', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03005753e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:35:12.000Z'}}, {'blockNum': '0x530bfb', 'uniqueId': '0x17c2d4e5260b0cd340c384b405ae0422528c4bf2c5af15361caefb7294f81268:log:81', 'hash': '0x17c2d4e5260b0cd340c384b405ae0422528c4bf2c5af15361caefb7294f81268', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x023d40988d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:35:12.000Z'}}, {'blockNum': '0x530c19', 'uniqueId': '0xb3aaf778efadd5ed924f3ae10aac84a76124ac27308eefb040248b31e7e654ef:log:53', 'hash': '0xb3aaf778efadd5ed924f3ae10aac84a76124ac27308eefb040248b31e7e654ef', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4ee1fde33190e74895abf0f1f22270aa05aa02f7', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:40:47.000Z'}}, {'blockNum': '0x530c35', 'uniqueId': '0x507d7f87b7224c252ec48080fd851b2bae80d3472c48d646bb618a782afcd13d:log:8', 'hash': '0x507d7f87b7224c252ec48080fd851b2bae80d3472c48d646bb618a782afcd13d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'value': 36010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03466c536a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:48:51.000Z'}}, {'blockNum': '0x530c43', 'uniqueId': '0x140fe9152789d827e56d3fcc11830f17603622eb934ea6050936fcb39883e6a3:log:125', 'hash': '0x140fe9152789d827e56d3fcc11830f17603622eb934ea6050936fcb39883e6a3', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 20308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d8d51cd400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:53:34.000Z'}}, {'blockNum': '0x530c4e', 'uniqueId': '0xea48117405a4a04289397b66a0a74cb33aff2b699749126ae5f19f060c63ede6:log:54', 'hash': '0xea48117405a4a04289397b66a0a74cb33aff2b699749126ae5f19f060c63ede6', 'from': '0xa6c83c54306fb6fda6b86521c85716c753d76540', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03466c536a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:55:03.000Z'}}, {'blockNum': '0x530c4f', 'uniqueId': '0x5bbe888b3f9d850218deeb0763523a2fe388debb5f71bb1cfb1323065a8a077a:log:3', 'hash': '0x5bbe888b3f9d850218deeb0763523a2fe388debb5f71bb1cfb1323065a8a077a', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d8d51cd400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:55:06.000Z'}}, {'blockNum': '0x530c55', 'uniqueId': '0x6daeafa2d84d121e990b3a24ff866fd6cdd003d9baa430fae608e5a9e86bfe37:log:49', 'hash': '0x6daeafa2d84d121e990b3a24ff866fd6cdd003d9baa430fae608e5a9e86bfe37', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 52950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04d0d6981600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-04-15T02:56:32.000Z'}}]}}
Number of returned transfers:  698
Answer is complete
 
symbol             OAX
group              BPS
date        2018-04-29
hour             19:00
exchange       binance
Name: 296, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2018-04-29 19:00:00 2018-04-29 07:00:00 2018-04-30 07:00:00
Unix timestamps:  1524978000.0 1525064400.0
Hex Block Numbers:  0x544c58 0x5462dc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x544cf8', 'uniqueId': '0xaa2200066ff8e9578594de8b8f3ab8a5269f5ca9c0ab47f868803ce65fedb593:log:4', 'hash': '0xaa2200066ff8e9578594de8b8f3ab8a5269f5ca9c0ab47f868803ce65fedb593', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x94005fd47c5c7c4141e4e544d9a1f5f1c6d07fa4', 'value': 948.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x336f3ebd0acaa00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T05:37:07.000Z'}}, {'blockNum': '0x544d0c', 'uniqueId': '0x5861950b57e75db3a469a962c4854f9436f9c0efb417053d7b845fd7dcb616e8:log:67', 'hash': '0x5861950b57e75db3a469a962c4854f9436f9c0efb417053d7b845fd7dcb616e8', 'from': '0x94005fd47c5c7c4141e4e544d9a1f5f1c6d07fa4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 948.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x336f3ebd0acaa00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T05:43:08.000Z'}}, {'blockNum': '0x544dd3', 'uniqueId': '0xb699606a2af40906690b7cd118da0805fb852e89ecbca876a99589720eb6d667:log:1', 'hash': '0xb699606a2af40906690b7cd118da0805fb852e89ecbca876a99589720eb6d667', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 133.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x07425fe383b08f0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T06:32:33.000Z'}}, {'blockNum': '0x545104', 'uniqueId': '0x1965dbca5169053bda7cf96addecf77fa647c2bf422a4a394727c9f76f763491:log:25', 'hash': '0x1965dbca5169053bda7cf96addecf77fa647c2bf422a4a394727c9f76f763491', 'from': '0xdad57c877d4b5f4d99d60e43628ea00f21b2b9d9', 'to': '0x368d30d563dfca212864c3f7afd41e1bd11a6a22', 'value': 40.303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022f5104f72e918000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T10:02:58.000Z'}}, {'blockNum': '0x5452ed', 'uniqueId': '0xf3f5212000d7152f16cd549d43f87916c1df149ab3926ece71f9437560c2a8e3:log:87', 'hash': '0xf3f5212000d7152f16cd549d43f87916c1df149ab3926ece71f9437560c2a8e3', 'from': '0x43ebb7c59cc1e16f63fb8ff66b72280b1b072d34', 'to': '0x8e2635d0d48bde2da69bdd909222472b0dc50a74', 'value': 957.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x33e609f7b077f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T11:56:05.000Z'}}, {'blockNum': '0x54530d', 'uniqueId': '0x606948bf42c09b702beea8db738d9859618bfd998829d35702917eeef10724cc:log:77', 'hash': '0x606948bf42c09b702beea8db738d9859618bfd998829d35702917eeef10724cc', 'from': '0x8e2635d0d48bde2da69bdd909222472b0dc50a74', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 957.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x33e609f7b077f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T12:03:08.000Z'}}, {'blockNum': '0x5454d5', 'uniqueId': '0xc9205f61d731a4303c572b0ed8b8c4e97b9f9134bc142477762a03c34e0314b5:log:84', 'hash': '0xc9205f61d731a4303c572b0ed8b8c4e97b9f9134bc142477762a03c34e0314b5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T14:03:30.000Z'}}, {'blockNum': '0x5454e4', 'uniqueId': '0xd39c9cdafa7f22b43c93fcb4be36f403a4d30400db695711b2ef8b47f6ddbdbf:log:59', 'hash': '0xd39c9cdafa7f22b43c93fcb4be36f403a4d30400db695711b2ef8b47f6ddbdbf', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T14:06:58.000Z'}}, {'blockNum': '0x5454f3', 'uniqueId': '0xfd6ebb26c79046726c357ea000b5ede1000a0dd55d811f30ff7cb91b5ed21645:log:18', 'hash': '0xfd6ebb26c79046726c357ea000b5ede1000a0dd55d811f30ff7cb91b5ed21645', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 3794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcdac53b286c8080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T14:09:47.000Z'}}, {'blockNum': '0x545502', 'uniqueId': '0x1c4b5fd886c3f16cdcc320b003e9b81f01df78672e3c73eeace5756cd3093ee4:log:11', 'hash': '0x1c4b5fd886c3f16cdcc320b003e9b81f01df78672e3c73eeace5756cd3093ee4', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcdac53b286c8080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T14:13:19.000Z'}}, {'blockNum': '0x5455cf', 'uniqueId': '0x5262023c4ba456d9e9d36b0e622801df2e808f3e73514a9a87f643f1984071be:log:4', 'hash': '0x5262023c4ba456d9e9d36b0e622801df2e808f3e73514a9a87f643f1984071be', 'from': '0x2445c3bc5c3956b6cb7593143b2351a059ca8a03', 'to': '0x975c83d551f735a9109144c07171273d3f10708b', 'value': 473.8932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x19b096da9b31250000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T15:08:27.000Z'}}, {'blockNum': '0x545614', 'uniqueId': '0x61e6f64cf8fd448d280267c990f1df1a6856d028f7216fa68d45946d70fd6d13:log:2', 'hash': '0x61e6f64cf8fd448d280267c990f1df1a6856d028f7216fa68d45946d70fd6d13', 'from': '0x3973b17380b00ba475963042e786d6cea078ce70', 'to': '0xae8a6dce6010babc57af1ef80083c9f0ac999500', 'value': 52.74625275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02dc00556a1cb88c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T15:24:25.000Z'}}, {'blockNum': '0x545684', 'uniqueId': '0xdb41b5293a0536e9aa3ef5096b3dd25829bbb668e4ab0ced5c05e175ea408b12:log:53', 'hash': '0xdb41b5293a0536e9aa3ef5096b3dd25829bbb668e4ab0ced5c05e175ea408b12', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x358f411d5a05f00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T15:53:09.000Z'}}, {'blockNum': '0x545714', 'uniqueId': '0x0b99589a4083b79fdabb0216a6c084041927da6394b8da02f26a64aaf8a3d49d:log:46', 'hash': '0x0b99589a4083b79fdabb0216a6c084041927da6394b8da02f26a64aaf8a3d49d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 3787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcd4b2eb39d344c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T16:30:29.000Z'}}, {'blockNum': '0x545724', 'uniqueId': '0x957fa964a662943c90524be8fdb9df5c6acc1ed17f5b96eb09008bf335009ba1:log:97', 'hash': '0x957fa964a662943c90524be8fdb9df5c6acc1ed17f5b96eb09008bf335009ba1', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcd4b2eb39d344c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T16:33:34.000Z'}}, {'blockNum': '0x54579c', 'uniqueId': '0xafe90f7b72458dd9bb9726656604ab6d3a752572dd89680ef6566267392e384c:log:13', 'hash': '0xafe90f7b72458dd9bb9726656604ab6d3a752572dd89680ef6566267392e384c', 'from': '0xd959f6b80fc67bf41ecc4241540b2c10fd04cddc', 'to': '0x398cab8069c577f2d0225f0bccf9b13f4c8fe918', 'value': 18999.376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0405f54f00fde2080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T17:02:12.000Z'}}, {'blockNum': '0x5457c2', 'uniqueId': '0x9510915ef2ab8d09edfc1b6aca919306548dac1668365cdd792ea4ff24bfdd79:log:25', 'hash': '0x9510915ef2ab8d09edfc1b6aca919306548dac1668365cdd792ea4ff24bfdd79', 'from': '0x398cab8069c577f2d0225f0bccf9b13f4c8fe918', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18999.376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0405f54f00fde2080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T17:13:19.000Z'}}, {'blockNum': '0x545819', 'uniqueId': '0x63b989bccfd6bc9eb9783f2038e491164ea2cbbd097cf28d8d1506cebe3595c6:log:2', 'hash': '0x63b989bccfd6bc9eb9783f2038e491164ea2cbbd097cf28d8d1506cebe3595c6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1f77fecbc6094fa0cd8a10398f04918d8a4fb47b', 'value': 2931.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x9eeee5f6a86a3c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T17:38:14.000Z'}}, {'blockNum': '0x545860', 'uniqueId': '0x1d6e5aa7eec243934dcae770c79107d2251a1f7de5a345067a4651b616bb469c:log:63', 'hash': '0x1d6e5aa7eec243934dcae770c79107d2251a1f7de5a345067a4651b616bb469c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1f77fecbc6094fa0cd8a10398f04918d8a4fb47b', 'value': 1512.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x52025140d792f00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T17:54:53.000Z'}}, {'blockNum': '0x545874', 'uniqueId': '0xd6aba2c1a547475b2010e769bee94545c5f3eb93f93f55d7c77d5a244e2e0e5c:log:1', 'hash': '0xd6aba2c1a547475b2010e769bee94545c5f3eb93f93f55d7c77d5a244e2e0e5c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1f77fecbc6094fa0cd8a10398f04918d8a4fb47b', 'value': 3222.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xaeb555a4dfb0e80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T18:01:59.000Z'}}, {'blockNum': '0x54597d', 'uniqueId': '0x42953be3bc4ad330a6ae6e90b6d3aaaba8de494baf26832ce9dbb8889b38f2cd:log:91', 'hash': '0x42953be3bc4ad330a6ae6e90b6d3aaaba8de494baf26832ce9dbb8889b38f2cd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 704.523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2631387fc6f4878000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:02:07.000Z'}}, {'blockNum': '0x54597f', 'uniqueId': '0xb57dd909d82b393c8f9f5a56cc0586de9512ccb991795405daf629fe893313d5:log:69', 'hash': '0xb57dd909d82b393c8f9f5a56cc0586de9512ccb991795405daf629fe893313d5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1947.819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x69976b34833c978000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:03:01.000Z'}}, {'blockNum': '0x545989', 'uniqueId': '0xfab500ce93f089e32f3a100d3d0faa4e6a1a88270338822a2eb02849eb2051a3:log:7', 'hash': '0xfab500ce93f089e32f3a100d3d0faa4e6a1a88270338822a2eb02849eb2051a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb1c74167e9df09e7ac1e3db70973a42f2a4608c9', 'value': 541.253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1d5764efd196808000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:05:36.000Z'}}, {'blockNum': '0x54598a', 'uniqueId': '0x8c713e47fadae4ffb45fdc339581647995e931eac6196e07b76d80009b270064:log:0', 'hash': '0x8c713e47fadae4ffb45fdc339581647995e931eac6196e07b76d80009b270064', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1e162c177be5cc0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:05:51.000Z'}}, {'blockNum': '0x54598b', 'uniqueId': '0xbdb959b67243150abfa14e18e0bc70edb2d60376119794031e2f011077ba13e7:log:0', 'hash': '0xbdb959b67243150abfa14e18e0bc70edb2d60376119794031e2f011077ba13e7', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 3086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa74ada69abd7780000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:06:10.000Z'}}, {'blockNum': '0x545993', 'uniqueId': '0xe888e6510e5e6a7d9d52cd6c57852d6e86b317a94f36c35f4c7f6e15230b1b0e:log:11', 'hash': '0xe888e6510e5e6a7d9d52cd6c57852d6e86b317a94f36c35f4c7f6e15230b1b0e', 'from': '0x36bccd2be18634f62e4309ae22bc2426cc9f5068', 'to': '0xa4173c4c45294f70de3bb68da3cc0809784d20c8', 'value': 151.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0832e06ab236140000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:08:22.000Z'}}, {'blockNum': '0x5459a9', 'uniqueId': '0x1f9841215dde817472d17958c9aa608443182bb53a26dbfd1e4e869af64f07e9:log:70', 'hash': '0x1f9841215dde817472d17958c9aa608443182bb53a26dbfd1e4e869af64f07e9', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1947.819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x69976b34833c978000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:13:26.000Z'}}, {'blockNum': '0x5459a9', 'uniqueId': '0xd5e3df2224fc7a0db8c710ea82315d1d95843adb3d2dbd7de6ccdbde326264ff:log:71', 'hash': '0xd5e3df2224fc7a0db8c710ea82315d1d95843adb3d2dbd7de6ccdbde326264ff', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa74ada69abd7780000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:13:26.000Z'}}, {'blockNum': '0x5459b1', 'uniqueId': '0x913d758cb4620efa93e839b3054ba9e763b8e0ee6955c5112bb279ef83cfabfc:log:3', 'hash': '0x913d758cb4620efa93e839b3054ba9e763b8e0ee6955c5112bb279ef83cfabfc', 'from': '0x3918395a80b0a3e817508897336a73f9bb130002', 'to': '0xf10a342a3199af0c3913a5db531de33df0ded65b', 'value': 100.6603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0574f139876440c000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:15:26.000Z'}}, {'blockNum': '0x5459b5', 'uniqueId': '0xdcc5dc4a7c3222e3ffd89248c5c363d079f2b82ac01c9b74896d1d4bd3358f37:log:42', 'hash': '0xdcc5dc4a7c3222e3ffd89248c5c363d079f2b82ac01c9b74896d1d4bd3358f37', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'value': 247.9954698507586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d71a0e5e49890076b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:16:28.000Z'}}, {'blockNum': '0x5459c5', 'uniqueId': '0x6d4b2ef2d7ba774df2fb8f78430545533d1750666065f16193ae6f328fb93e6c:log:24', 'hash': '0x6d4b2ef2d7ba774df2fb8f78430545533d1750666065f16193ae6f328fb93e6c', 'from': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'to': '0xdee0e69dd8607df0f9a0c4172095f6f45a34ef57', 'value': 247.9954698507586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d71a0e5e49890076b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:19:18.000Z'}}, {'blockNum': '0x5459c9', 'uniqueId': '0x24f95c382055d2da940cdf61ec4fb29d87c29ed697cf1f5e99df2daf9c100473:log:7', 'hash': '0x24f95c382055d2da940cdf61ec4fb29d87c29ed697cf1f5e99df2daf9c100473', 'from': '0x9b672f56a6a156c525aba779ab066628d326c781', 'to': '0x916e92ce44f1848fc4adb42a2f8066eadb75975e', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:20:03.000Z'}}, {'blockNum': '0x5459cc', 'uniqueId': '0x48ae3bd90efae7c4f7c2e38ec9e0562bb308a5cfad71bdc3326f4df38a8a2e27:log:102', 'hash': '0x48ae3bd90efae7c4f7c2e38ec9e0562bb308a5cfad71bdc3326f4df38a8a2e27', 'from': '0xb54180244f5d9c929cd5f07f818d160b03df88be', 'to': '0x58ae12eb7d4550bbdce4583e8288b7d4993c5396', 'value': 1244.568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4377d9c1ff025c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:21:28.000Z'}}, {'blockNum': '0x5459d6', 'uniqueId': '0x22980da34e6a44281656e85d12cc0103ff769817d871b07c54ab2b180c66d6c9:log:10', 'hash': '0x22980da34e6a44281656e85d12cc0103ff769817d871b07c54ab2b180c66d6c9', 'from': '0x0865408f5c9cc3d7b00c2d08e01605821d64ec8a', 'to': '0x613470f8479e70ad3915f3a75f3cc964e74f4405', 'value': 2990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa21695e64d11f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:24:22.000Z'}}, {'blockNum': '0x5459ee', 'uniqueId': '0x9050dea53c6c1af3c496bc5dad92edba4a2fc4183b0ed7f921c3ece2b522bbb0:log:46', 'hash': '0x9050dea53c6c1af3c496bc5dad92edba4a2fc4183b0ed7f921c3ece2b522bbb0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5a5d9c95a3f328e903f3b4d47aa5556e1f286b27', 'value': 678.71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x24cafe4d0a515f0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:29:35.000Z'}}, {'blockNum': '0x5459f0', 'uniqueId': '0x83a8500c3c451c7d681a9e988d1ec57e0708d45c57d37c4251a64347cf9a268a:log:33', 'hash': '0x83a8500c3c451c7d681a9e988d1ec57e0708d45c57d37c4251a64347cf9a268a', 'from': '0x9606ab2f328cf5268cf2ad104256160632631bc3', 'to': '0x73f170974a1903cabae5c6859d537f8825420c0c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:30:52.000Z'}}, {'blockNum': '0x5459fe', 'uniqueId': '0xe42e48bde7466e736e9ec50f012faf119c75fc6ad2c0a8f8a7d77d2ca56e257b:log:50', 'hash': '0xe42e48bde7466e736e9ec50f012faf119c75fc6ad2c0a8f8a7d77d2ca56e257b', 'from': '0x73f170974a1903cabae5c6859d537f8825420c0c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:33:44.000Z'}}, {'blockNum': '0x5459fe', 'uniqueId': '0xe6c6702ae381256d3bba9967ee574d47c57b709055393eb69ce371f41d1e8599:log:81', 'hash': '0xe6c6702ae381256d3bba9967ee574d47c57b709055393eb69ce371f41d1e8599', 'from': '0x613470f8479e70ad3915f3a75f3cc964e74f4405', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa21695e64d11f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:33:44.000Z'}}, {'blockNum': '0x5459fe', 'uniqueId': '0xad6d9bae9d4d04ebcc3f1d928c914d5848e5f85f51af9fb43c5d49ae83b1d658:log:82', 'hash': '0xad6d9bae9d4d04ebcc3f1d928c914d5848e5f85f51af9fb43c5d49ae83b1d658', 'from': '0x58ae12eb7d4550bbdce4583e8288b7d4993c5396', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1244.568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4377d9c1ff025c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:33:44.000Z'}}, {'blockNum': '0x545a30', 'uniqueId': '0x0c9bd051d92b0ff48d0c790731f6cc015a75bdba2e386b9e56bd1e099d22c2b0:log:96', 'hash': '0x0c9bd051d92b0ff48d0c790731f6cc015a75bdba2e386b9e56bd1e099d22c2b0', 'from': '0x31a570a588dc86faeb45057e749533fb0cd9622d', 'to': '0xc00013abc1c6ec7a22f32df1d4199f40482a2b10', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:45:21.000Z'}}, {'blockNum': '0x545a36', 'uniqueId': '0x5f0db14b0f2bde409572deae90beaaddeb1444dd2892dd208eb9349ca0d5bbfd:log:52', 'hash': '0x5f0db14b0f2bde409572deae90beaaddeb1444dd2892dd208eb9349ca0d5bbfd', 'from': '0x963dd999616db43f6a5bebaf256c6e6aff751b8a', 'to': '0x98cfa56abc0d3c6a18d64412cc774138dc09be51', 'value': 702.897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x261aa7c9645fbe8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:47:17.000Z'}}, {'blockNum': '0x545a36', 'uniqueId': '0x3b55af36a0bc1d056a6a153e38a392c9dacfe1dabe871f655e8a8f264029a9fe:log:66', 'hash': '0x3b55af36a0bc1d056a6a153e38a392c9dacfe1dabe871f655e8a8f264029a9fe', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xd89491e8e216b25fb9a5d32a3fdcf6c5270c665b', 'value': 211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0b70369612f76c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:47:17.000Z'}}, {'blockNum': '0x545a47', 'uniqueId': '0x44abca5a01aff6c87c6bfd733bb4cb9f72c74b78c5035f2331dc7cbfc864f9aa:log:15', 'hash': '0x44abca5a01aff6c87c6bfd733bb4cb9f72c74b78c5035f2331dc7cbfc864f9aa', 'from': '0xd89491e8e216b25fb9a5d32a3fdcf6c5270c665b', 'to': '0xacdef807e5d82e9907dbac26259bf652c2743855', 'value': 211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0b70369612f76c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:50:02.000Z'}}, {'blockNum': '0x545a56', 'uniqueId': '0x87eea66f5980b8a28d0fc0a36c189aa34928a5556f36071444cf221122ea86d0:log:22', 'hash': '0x87eea66f5980b8a28d0fc0a36c189aa34928a5556f36071444cf221122ea86d0', 'from': '0xe4b8b70a0ce77a34162dc3272a69c8d35675597a', 'to': '0x43734aeef1bdc8dcf9aa137ba61574c4c6eecbee', 'value': 37.8672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x020d8351c55eac0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:52:59.000Z'}}, {'blockNum': '0x545a68', 'uniqueId': '0xf4e27ab9aa7db2f2bc4f17928103ea54d13ff5a3910cef036ec6c174a99050d2:log:79', 'hash': '0xf4e27ab9aa7db2f2bc4f17928103ea54d13ff5a3910cef036ec6c174a99050d2', 'from': '0x8021f788a36b89e8391cfa721092e8fb4c5b43b1', 'to': '0x719481c1975533eb9c9f2c1c308adffa5caa0b37', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T19:56:40.000Z'}}, {'blockNum': '0x545a76', 'uniqueId': '0xd2108691716a68790234098c5c878a2890b810969dc7e9df523ffdcd2d309119:log:17', 'hash': '0xd2108691716a68790234098c5c878a2890b810969dc7e9df523ffdcd2d309119', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x53c2de163b3d1ff0b36be827c322e260b1c8c8ed', 'value': 390.04765081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1524ff9fd9c5a74400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:00:18.000Z'}}, {'blockNum': '0x545a7d', 'uniqueId': '0xf5d32457d1ed6ff187dab4b58da4f7f37af40d932f6be05cbdebe93ee22e911c:log:7', 'hash': '0xf5d32457d1ed6ff187dab4b58da4f7f37af40d932f6be05cbdebe93ee22e911c', 'from': '0x761936afdb25922597b899d06a35db4b64f65bd8', 'to': '0x6226cf08ee76910699ebc8ac282ae430c837736e', 'value': 598.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x206fa2b3dbdb3a0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:01:53.000Z'}}, {'blockNum': '0x545a81', 'uniqueId': '0x662e7f852a655d4fe1aebaeefe1b622cc6eed783a5be9da92a4f06b89c289b5d:log:22', 'hash': '0x662e7f852a655d4fe1aebaeefe1b622cc6eed783a5be9da92a4f06b89c289b5d', 'from': '0xbb78e81e02b285cb0895a000c94d8a4ab1ff8484', 'to': '0xc9323a5d8a5351a927852db77e894633af602e99', 'value': 1393.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4b894f3d734d4c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:02:59.000Z'}}, {'blockNum': '0x545aa0', 'uniqueId': '0x861aaf83aea6178fd9bf7e8fcaae30b293d0598004e459486b744922f09b0fd3:log:73', 'hash': '0x861aaf83aea6178fd9bf7e8fcaae30b293d0598004e459486b744922f09b0fd3', 'from': '0x203b49f020c3c681f2d00bfb3e309a809c91255f', 'to': '0x8b99786b718f5abcfac5337c9daab51e49e22ce5', 'value': 88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x04c53ecdc18a600000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:11:42.000Z'}}, {'blockNum': '0x545aa8', 'uniqueId': '0x2d3ade041c3e2c6c11961069558bcdfdedd30390c46fe2ac64b0c88faf52a68d:log:61', 'hash': '0x2d3ade041c3e2c6c11961069558bcdfdedd30390c46fe2ac64b0c88faf52a68d', 'from': '0xc9323a5d8a5351a927852db77e894633af602e99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1393.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4b894f3d734d4c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:13:48.000Z'}}, {'blockNum': '0x545aaa', 'uniqueId': '0x0b00a5e9db9b5d3773128d71a154869fedeb87ab76ab12e861f8aa543713d275:log:98', 'hash': '0x0b00a5e9db9b5d3773128d71a154869fedeb87ab76ab12e861f8aa543713d275', 'from': '0x31a570a588dc86faeb45057e749533fb0cd9622d', 'to': '0xc00013abc1c6ec7a22f32df1d4199f40482a2b10', 'value': 241.171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d12eb82b8a5bb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:14:10.000Z'}}, {'blockNum': '0x545ac4', 'uniqueId': '0xf24d8aa5debb3d0ef33e9051ee0e3dcd6b7f1627e6464cbd87b1fe7c08823ab2:log:13', 'hash': '0xf24d8aa5debb3d0ef33e9051ee0e3dcd6b7f1627e6464cbd87b1fe7c08823ab2', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1f0218396a03700000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:20:09.000Z'}}, {'blockNum': '0x545b0d', 'uniqueId': '0x593f3f39ef03a74c281f5f9acb393b8aed4b4549d16a9e944bed111bce67fe7d:log:94', 'hash': '0x593f3f39ef03a74c281f5f9acb393b8aed4b4549d16a9e944bed111bce67fe7d', 'from': '0xa4535b2d08f27d9bd76b3423087ca8ce5a96699a', 'to': '0x97ff1b9cd1effbf0301587d89f907d7909b84727', 'value': 246.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d630ce1211ad68000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:37:21.000Z'}}, {'blockNum': '0x545b10', 'uniqueId': '0x422b94e07415077117687105eb14b9edf23bdf36d9e389633e66c92651c1cd3e:log:20', 'hash': '0x422b94e07415077117687105eb14b9edf23bdf36d9e389633e66c92651c1cd3e', 'from': '0x0ad30cce08e30bc44680bf76862c04ddd7ea1f5c', 'to': '0x8516019aae76ec3ae1bbfa70d41fa71e0f3934b5', 'value': 41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0238fd42c5cf040000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:38:11.000Z'}}, {'blockNum': '0x545b1a', 'uniqueId': '0x4554ea9e0abf61aa0f1803b3c1c9afa2f7947cb7a41cf0131b15c9808a5963d3:log:24', 'hash': '0x4554ea9e0abf61aa0f1803b3c1c9afa2f7947cb7a41cf0131b15c9808a5963d3', 'from': '0x25d1a51d86defe82496484b7aae5ec924e0622fe', 'to': '0x1f3e5b3c2d240b440813e39a02e0e7de3a5e30c8', 'value': 149.656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x081ce4eb16a9dc0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:40:59.000Z'}}, {'blockNum': '0x545b22', 'uniqueId': '0x66ffb5670f5dba7517bae915bd2128b3f5bdabb5126936d4863c3c4ab501fca0:log:30', 'hash': '0x66ffb5670f5dba7517bae915bd2128b3f5bdabb5126936d4863c3c4ab501fca0', 'from': '0xf4108e115c1c2c32f5bc95cc6193a4c2d9d2f9e6', 'to': '0x3e18288d22c9ef5bc362fbbff9e39dfc74f196e5', 'value': 151.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x083bb33b6d72458000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:43:44.000Z'}}, {'blockNum': '0x545b2b', 'uniqueId': '0xbd63c920d79e87d64b928328b2d07f03f2c24e1ec22d72797b545f88bbfc0dc7:log:19', 'hash': '0xbd63c920d79e87d64b928328b2d07f03f2c24e1ec22d72797b545f88bbfc0dc7', 'from': '0x42d5696860e9140b7ab6b0fc58cc238cc525b179', 'to': '0xa7d802ec2719fbb5a7e1ce6e759898127f52ea98', 'value': 283.578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0f5f6f708a13b90000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:46:36.000Z'}}, {'blockNum': '0x545b3c', 'uniqueId': '0xaf7e886d99d475ef5efe9b8f5d4b2e9741711ee7caeba0cbc0dd7d8ae10c698f:log:15', 'hash': '0xaf7e886d99d475ef5efe9b8f5d4b2e9741711ee7caeba0cbc0dd7d8ae10c698f', 'from': '0x5919e3f908bdb1767ff82b37c6228b32060b42f0', 'to': '0x9928ca79e1da92c2a8f826b1ffa6d46bb1f9711c', 'value': 638.597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x229e504c116e208000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T20:50:41.000Z'}}, {'blockNum': '0x545b58', 'uniqueId': '0xc15bda75798f92f2dac556c727613603f6e068d06700a8b31516fa11a4073ea8:log:20', 'hash': '0xc15bda75798f92f2dac556c727613603f6e068d06700a8b31516fa11a4073ea8', 'from': '0x5aaca122b0d46f675016d2ceb030c72f0b4cf618', 'to': '0xd5beb82797939137155bed80c63e3836e73f94cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:00:06.000Z'}}, {'blockNum': '0x545b58', 'uniqueId': '0xa64d56257dfc2f6f21505bf4013cca1ff7b1dcec486059aad9912564b99fdf4a:log:21', 'hash': '0xa64d56257dfc2f6f21505bf4013cca1ff7b1dcec486059aad9912564b99fdf4a', 'from': '0x8c62de41bb1c6ec5ccd48d3c23992e3fa0b633a9', 'to': '0x8516019aae76ec3ae1bbfa70d41fa71e0f3934b5', 'value': 140, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0796e3ea3f8ab00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:00:06.000Z'}}, {'blockNum': '0x545b64', 'uniqueId': '0x17e9232c9a5b473468679d793a927fa5fdac38247336930ef636c7268801662d:log:101', 'hash': '0x17e9232c9a5b473468679d793a927fa5fdac38247336930ef636c7268801662d', 'from': '0xa7d802ec2719fbb5a7e1ce6e759898127f52ea98', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 855.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2e5bf70693fc3a8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:03:41.000Z'}}, {'blockNum': '0x545b64', 'uniqueId': '0xc430ba2ff7582fbde2dced24eb5bf015e402931a839c399f364623f93007f4eb:log:102', 'hash': '0xc430ba2ff7582fbde2dced24eb5bf015e402931a839c399f364623f93007f4eb', 'from': '0xd5beb82797939137155bed80c63e3836e73f94cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:03:41.000Z'}}, {'blockNum': '0x545b73', 'uniqueId': '0x253a1489be0c999ceffec8207d0aba2c3d2fbe666809656e11404ca56b26b30e:log:16', 'hash': '0x253a1489be0c999ceffec8207d0aba2c3d2fbe666809656e11404ca56b26b30e', 'from': '0x6941a2eabc0ac12e55c81364ed0954cde12fb82e', 'to': '0x53143ebaf9a4012cc7424a4356477044e1a13f12', 'value': 166.4484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0905ef81eb28210000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:06:36.000Z'}}, {'blockNum': '0x545b7e', 'uniqueId': '0x4772a3b6231ad5db9674501411a59f1a17b87b22bcbc9cb99e258106776a4f7e:log:4', 'hash': '0x4772a3b6231ad5db9674501411a59f1a17b87b22bcbc9cb99e258106776a4f7e', 'from': '0xa3645147f051c1c1c0deedf38a725b50a33dd4a9', 'to': '0x659b7540a018cebfe3f69b62a497afc3134c03bb', 'value': 199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0ac9ae05a71ebc0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:08:52.000Z'}}, {'blockNum': '0x545b8d', 'uniqueId': '0x507045588994aa10347c53c8f22db223551b40ba54491923bb6931e1a208b8d4:log:43', 'hash': '0x507045588994aa10347c53c8f22db223551b40ba54491923bb6931e1a208b8d4', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3d184450e5e93c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:13:17.000Z'}}, {'blockNum': '0x545bcb', 'uniqueId': '0x379506fd886d920f0b62ec1392444acaa5714a825ad1972dfbb239493ac92586:log:3', 'hash': '0x379506fd886d920f0b62ec1392444acaa5714a825ad1972dfbb239493ac92586', 'from': '0x53219970580e15e318e38dcc79ab477542be1b2a', 'to': '0xa7f75f3cb19a382f6e521303d7acda5062d8dae1', 'value': 4004.47418055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xd9153e3298c2363c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:27:03.000Z'}}, {'blockNum': '0x545bda', 'uniqueId': '0x0a17f73cdf51952ef5e2bf62f6c6a1a2adc84eca1122409d3e8878b6630ae40e:log:15', 'hash': '0x0a17f73cdf51952ef5e2bf62f6c6a1a2adc84eca1122409d3e8878b6630ae40e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb15d42dc12fd87efcd47f00a806a1c3e419c572c', 'value': 542.252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1d65421906991e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:31:11.000Z'}}, {'blockNum': '0x545bfc', 'uniqueId': '0x4da96777be714f08b2b66a8fe3d01a561212025f8a3a51ec44bace3f97316be9:log:68', 'hash': '0x4da96777be714f08b2b66a8fe3d01a561212025f8a3a51ec44bace3f97316be9', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xc13328cb365d27a6c68a534167e9a992664f7683', 'value': 5031.09178606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0110bc6c9b8e0bddf800', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:39:08.000Z'}}, {'blockNum': '0x545c12', 'uniqueId': '0xfb0d4566ef4a33e79b51172255fb7c3659e0f9d56f145cc4c35a0ebd8dcdf716:log:59', 'hash': '0xfb0d4566ef4a33e79b51172255fb7c3659e0f9d56f145cc4c35a0ebd8dcdf716', 'from': '0xc13328cb365d27a6c68a534167e9a992664f7683', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5031.09178606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0110bc6c9b8e0bddf800', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:43:07.000Z'}}, {'blockNum': '0x545c12', 'uniqueId': '0x5dcba5ee7c7bb9e13d5365b0ff87394dfc77cc4e23aed536f747a63f876fc45f:log:61', 'hash': '0x5dcba5ee7c7bb9e13d5365b0ff87394dfc77cc4e23aed536f747a63f876fc45f', 'from': '0xa7f75f3cb19a382f6e521303d7acda5062d8dae1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4004.47418055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xd9153e3298c2363c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T21:43:07.000Z'}}, {'blockNum': '0x545c63', 'uniqueId': '0x40befef6e0196df9485ae5124949db20fca3fa41cbb8650210b5ee814eeb63c8:log:83', 'hash': '0x40befef6e0196df9485ae5124949db20fca3fa41cbb8650210b5ee814eeb63c8', 'from': '0xe2d4c79d6451c8ace3530c35f8b1dbe873a4657a', 'to': '0x85705f0e394aeb2ff70255f5af3f75edcf4c51a2', 'value': 79.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x044d3047174a788000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:06:25.000Z'}}, {'blockNum': '0x545cb4', 'uniqueId': '0x65990abfbaf664baafd43697a77f4e74474ea4da08d26d94714cc884600fe82e:log:34', 'hash': '0x65990abfbaf664baafd43697a77f4e74474ea4da08d26d94714cc884600fe82e', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x82f7312c145ba9594c231cf2c37d955af3496cf3', 'value': 1089.666728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3b1229e3d072328000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:26:35.000Z'}}, {'blockNum': '0x545cca', 'uniqueId': '0x48680781960dc92609f7f715c69606641233941bdaaba0a928ee2e736e74523b:log:61', 'hash': '0x48680781960dc92609f7f715c69606641233941bdaaba0a928ee2e736e74523b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xde93851e313a8b7a52fe6902c69669e5665c673b', 'value': 480.87563345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1a117d70d5a0332400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:31:34.000Z'}}, {'blockNum': '0x545cce', 'uniqueId': '0x1f47733b734cc5c180f303ef6bf3637f7c2eeb5c8e45f224f34d3dadfba87793:log:92', 'hash': '0x1f47733b734cc5c180f303ef6bf3637f7c2eeb5c8e45f224f34d3dadfba87793', 'from': '0x82f7312c145ba9594c231cf2c37d955af3496cf3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1089.666728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3b1229e3d072328000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:33:12.000Z'}}, {'blockNum': '0x545cd4', 'uniqueId': '0x9ab866d2af1a2d76a00004e6b04b06d475a78258901936be9fe8a13507a165f3:log:38', 'hash': '0x9ab866d2af1a2d76a00004e6b04b06d475a78258901936be9fe8a13507a165f3', 'from': '0xc00013abc1c6ec7a22f32df1d4199f40482a2b10', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 251.171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0d9db2a5bd2fa38000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:34:13.000Z'}}, {'blockNum': '0x545cd6', 'uniqueId': '0x6d63e81511161650b24459c8cd6e549c1cf0c35aa47a9d57e7f4f3850774efd5:log:85', 'hash': '0x6d63e81511161650b24459c8cd6e549c1cf0c35aa47a9d57e7f4f3850774efd5', 'from': '0x6eca7b8ba975f24ab02cbe685da5e0a79b139bae', 'to': '0x2ee6aa47d114e0ed407eadf34e3b42bf0b16e4d5', 'value': 1041.674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x38782177f980410000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:34:51.000Z'}}, {'blockNum': '0x545ce0', 'uniqueId': '0xbcf1e7fb5ee20011bc169d150c84ae96b161841f860110a21dc95cc5e2e551ca:log:26', 'hash': '0xbcf1e7fb5ee20011bc169d150c84ae96b161841f860110a21dc95cc5e2e551ca', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xab7c43fdbf5d30cbdae8196aec2d098b1ff24376', 'value': 12925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02bcaa684c6a43d40000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:37:42.000Z'}}, {'blockNum': '0x545cfe', 'uniqueId': '0x7cc7afaa25dafa8184601ee03f7b76aa8d98e1ca8f12818dc93d095b80b0881e:log:62', 'hash': '0x7cc7afaa25dafa8184601ee03f7b76aa8d98e1ca8f12818dc93d095b80b0881e', 'from': '0x2ee6aa47d114e0ed407eadf34e3b42bf0b16e4d5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1131.674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3d5921b32259690000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:44:21.000Z'}}, {'blockNum': '0x545d23', 'uniqueId': '0x7adaccff19b01cd92bedce99e0c43f56949461166518f0c3cb5b3233ec0e2584:log:105', 'hash': '0x7adaccff19b01cd92bedce99e0c43f56949461166518f0c3cb5b3233ec0e2584', 'from': '0xab7c43fdbf5d30cbdae8196aec2d098b1ff24376', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18116.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x03d6136446c9de1a0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T22:53:05.000Z'}}, {'blockNum': '0x545df0', 'uniqueId': '0x9130a2878a9822cd5309cd3de21e584850007ae855c41ff295cf36eafa4ef851:log:96', 'hash': '0x9130a2878a9822cd5309cd3de21e584850007ae855c41ff295cf36eafa4ef851', 'from': '0x25f2edef138db6e687880cb8373e2715a738a396', 'to': '0x0e9dccb1344167fb358747eb83cf84d2aa811d81', 'value': 12.798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb19ba1317b730000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-29T23:42:26.000Z'}}, {'blockNum': '0x545e9c', 'uniqueId': '0x752b31d3589721f991a30c3c99ba1d478d6cf03ec514b2080a8282b632550a05:log:51', 'hash': '0x752b31d3589721f991a30c3c99ba1d478d6cf03ec514b2080a8282b632550a05', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0f88ff12bad922f52cc7af57d41f7b9767ebebf5', 'value': 53.471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02e60f2732d0e98000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T00:24:10.000Z'}}, {'blockNum': '0x545eac', 'uniqueId': '0x22e5fd3a25eef657d9fc7528d11cf872ba043a4e588354c4c1158c1123a0804f:log:68', 'hash': '0x22e5fd3a25eef657d9fc7528d11cf872ba043a4e588354c4c1158c1123a0804f', 'from': '0xfb426dab49844b95c12fc3267570311fa90c27b3', 'to': '0x2ee6aa47d114e0ed407eadf34e3b42bf0b16e4d5', 'value': 38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x020f5b1eaad8d80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T00:27:40.000Z'}}, {'blockNum': '0x545edd', 'uniqueId': '0x511d036b4798fa682ba0c58943778f2951edfa6b66424f16e6dd407b8b6cffd3:log:5', 'hash': '0x511d036b4798fa682ba0c58943778f2951edfa6b66424f16e6dd407b8b6cffd3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf148acddf1407469c4ce5b0ba2c0ca8b575bcca3', 'value': 1288.60599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x45db0029a9e8f71c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T00:41:25.000Z'}}, {'blockNum': '0x545f78', 'uniqueId': '0xc80d2a395b6a060b9600b8da2392f7362d2fdc831236ad127a034ba449311158:log:3', 'hash': '0xc80d2a395b6a060b9600b8da2392f7362d2fdc831236ad127a034ba449311158', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf148acddf1407469c4ce5b0ba2c0ca8b575bcca3', 'value': 663.23200001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x23f431660e2bebe400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T01:19:21.000Z'}}, {'blockNum': '0x5460bd', 'uniqueId': '0x23d70806ed5802420b8c6ec21e9ff630de9bdc569ab34be4689beeb3524c99f4:log:36', 'hash': '0x23d70806ed5802420b8c6ec21e9ff630de9bdc569ab34be4689beeb3524c99f4', 'from': '0x676211f453def6ed91c0204bb99f7e0ba5907b2c', 'to': '0x9a46e7ec8e0032dedaec5f2976fec0241be7654f', 'value': 307.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x10b02360fe68400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T02:45:00.000Z'}}, {'blockNum': '0x5460e6', 'uniqueId': '0xbbafed1235611e14cb0671e027ce14dcb8affd0ec7a07e4605fd21c9b59ee56a:log:7', 'hash': '0xbbafed1235611e14cb0671e027ce14dcb8affd0ec7a07e4605fd21c9b59ee56a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7e4792d72f659c79ca8cccd91cc818861c2f1717', 'value': 6582.2517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0164d317a6e2c70f4000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T02:55:10.000Z'}}, {'blockNum': '0x5460ef', 'uniqueId': '0xf598446eb499384950cf29f5f0045b443fadf92fe0211bc3e2281b3e15274150:log:6', 'hash': '0xf598446eb499384950cf29f5f0045b443fadf92fe0211bc3e2281b3e15274150', 'from': '0xa707689622f5024991c325ae2182919944ac83a9', 'to': '0x98dcecdab9a2d9a690591db8dc347707d1532230', 'value': 1391.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4b6a15a25f14ab0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T02:57:58.000Z'}}, {'blockNum': '0x546104', 'uniqueId': '0xf2a5e99c00ad8e1403d8d92e1e5f1bd80c0184e19584e036734ac4b02a9c6670:log:41', 'hash': '0xf2a5e99c00ad8e1403d8d92e1e5f1bd80c0184e19584e036734ac4b02a9c6670', 'from': '0x98dcecdab9a2d9a690591db8dc347707d1532230', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1391.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x4b6a15a25f14ab0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T03:03:12.000Z'}}, {'blockNum': '0x54616d', 'uniqueId': '0xf6644e8e4906291293791a2b2c253559a9fdf357e02f40711c1c62c7febc9627:log:101', 'hash': '0xf6644e8e4906291293791a2b2c253559a9fdf357e02f40711c1c62c7febc9627', 'from': '0x599d05daa69fca3835a20fc5c2e48bf527f658b0', 'to': '0x84610182b5ff0661ceaf486d9c5122e91a3f8107', 'value': 509.805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1ba2f7326ff6048000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T03:30:50.000Z'}}, {'blockNum': '0x5462a8', 'uniqueId': '0x25bd447c4cf8380cd64c70120209b47429692123d600a85547e0a365593f5fe8:log:12', 'hash': '0x25bd447c4cf8380cd64c70120209b47429692123d600a85547e0a365593f5fe8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4edbc97446dea5606c303bc60b9b056b69161240', 'value': 3794.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xcdb8d123c211e20000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-30T04:47:18.000Z'}}]}}
Number of returned transfers:  90
Answer is complete
 
symbol           YOYOW
group              BPS
date        2018-05-12
hour             18:00
exchange       binance
Name: 297, dtype: object
HERE
 Symbol: YOYOW, Contract: 
Datetime timestamps:  2018-05-12 18:00:00 2018-05-12 06:00:00 2018-05-13 06:00:00
Unix timestamps:  1526097600.0 1526184000.0
Hex Block Numbers:  0x556df9 0x558475
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            CHAT
group              BPS
date        2018-06-10
hour             20:00
exchange       binance
Name: 298, dtype: object
HERE
 Symbol: CHAT, Contract: 0x442bc47357919446eabc18c7211e57a13d983469
Datetime timestamps:  2018-06-10 20:00:00 2018-06-10 08:00:00 2018-06-11 08:00:00
Unix timestamps:  1528610400.0 1528696800.0
Hex Block Numbers:  0x57f00e 0x5805fd
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x57f074', 'uniqueId': '0x70cfe6489936bbb7935964a3d2f61afbf95df569b723dde2c4ada247ba063577:log:12', 'hash': '0x70cfe6489936bbb7935964a3d2f61afbf95df569b723dde2c4ada247ba063577', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 119231.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x193f8d74fe705b4e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T06:28:03.000Z'}}, {'blockNum': '0x57f083', 'uniqueId': '0x83fdd218c577ef7eb800064b8c340ef88cf6d6277edb3844cdc86963d5419259:log:1', 'hash': '0x83fdd218c577ef7eb800064b8c340ef88cf6d6277edb3844cdc86963d5419259', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xab56026ca64141d8d40a62d72c10a419438d9718', 'value': 67998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e662dd0bb27d3b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T06:31:33.000Z'}}, {'blockNum': '0x57f089', 'uniqueId': '0x5e44038275a685850c7701ac4b771d354d7b3bea281de25a97dd13b84da87378:log:0', 'hash': '0x5e44038275a685850c7701ac4b771d354d7b3bea281de25a97dd13b84da87378', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb8b521343347018673c1678e44e970c16dcbfa42', 'value': 36511.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07bb4ad97bc842ce0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T06:34:15.000Z'}}, {'blockNum': '0x57f0c8', 'uniqueId': '0xe0ee218e305718cc0c4d4850de0bbd8f0829b2aac34474be0472fa70f7cacaea:log:52', 'hash': '0xe0ee218e305718cc0c4d4850de0bbd8f0829b2aac34474be0472fa70f7cacaea', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9500bb6678208dfd3059f15a81739d77bbc36f3e', 'value': 15709.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03539635d6a291a78000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T06:51:49.000Z'}}, {'blockNum': '0x57f147', 'uniqueId': '0x88741cf607b01e9f6c35eaf12167f899e9020d7262d6ea49d4036af303cddf0d:log:8', 'hash': '0x88741cf607b01e9f6c35eaf12167f899e9020d7262d6ea49d4036af303cddf0d', 'from': '0xaa105f77015866d99236a540815c14176a47d24c', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 18926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0401fb0315c122f7ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T07:23:14.000Z'}}, {'blockNum': '0x57f220', 'uniqueId': '0x156ab2226a07f444c62116ed69c2d9466800085f452de30c7a38618d9cbf25f5:log:10', 'hash': '0x156ab2226a07f444c62116ed69c2d9466800085f452de30c7a38618d9cbf25f5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x4f9593d929472dc858ec15772e8f4b2467f47943', 'value': 10141.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0225c623e1d1770a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:21:26.000Z'}}, {'blockNum': '0x57f24c', 'uniqueId': '0x568cc67a59a63194ec6b0c2868ae4555d33958c49d1257350ab4f3b7435e5064:log:2', 'hash': '0x568cc67a59a63194ec6b0c2868ae4555d33958c49d1257350ab4f3b7435e5064', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7ba7d64f8d1e2bb356870b3680e17a7c96f3f9cc', 'value': 73713.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f9c044fc32384d60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:32:36.000Z'}}, {'blockNum': '0x57f27b', 'uniqueId': '0xa29f26465345bc5ae00a63f44273f18d387a5c5de57688e54c1f8a20d54c1905:log:1', 'hash': '0xa29f26465345bc5ae00a63f44273f18d387a5c5de57688e54c1f8a20d54c1905', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x66692d289655557c40c3c6cb4e3649fa39d1fec1', 'value': 54927.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ba1a03097a1ec8e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:44:11.000Z'}}, {'blockNum': '0x57f285', 'uniqueId': '0xd021dc932434ae2b118c99f9ed88f986d83079b73cc6e0e6969b42bd5d824db6:log:1', 'hash': '0xd021dc932434ae2b118c99f9ed88f986d83079b73cc6e0e6969b42bd5d824db6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 106693.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1697ddc0e39c23a60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:46:27.000Z'}}, {'blockNum': '0x57f28d', 'uniqueId': '0x4320bb29d43ee3477adececacea015483f3f08282f40d72b1762878f236d6b05:log:33', 'hash': '0x4320bb29d43ee3477adececacea015483f3f08282f40d72b1762878f236d6b05', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x98f1509c7479d9cb4b7395e7b2754dbfb4fa847f', 'value': 2577.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8bbf2202dc003b0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:48:37.000Z'}}, {'blockNum': '0x57f291', 'uniqueId': '0x6da0006623cbfe21524376e1166580460c33ed3e2446ee8e874e893e573c56ec:log:35', 'hash': '0x6da0006623cbfe21524376e1166580460c33ed3e2446ee8e874e893e573c56ec', 'from': '0x2c174bedf6984e2d2d7ec3b0ee3e71cf3380c42d', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 46707.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09e400bfdd9874c10000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:50:01.000Z'}}, {'blockNum': '0x57f291', 'uniqueId': '0x95ddc5f7dfe80efe273aa0b8f236eb9e923b0d4707ec7a61f88ad6cd65cb4ea9:log:36', 'hash': '0x95ddc5f7dfe80efe273aa0b8f236eb9e923b0d4707ec7a61f88ad6cd65cb4ea9', 'from': '0x7d3ff5d8349c7fca79d9724c2aef1299eaae07c5', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 14902.946766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0327e3eed47b2282e000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:50:01.000Z'}}, {'blockNum': '0x57f292', 'uniqueId': '0x949f00c0ca2fd7ecf00fed1fa1a42e4505b9a15ef583abc8d5598c4649bc9d4a:log:14', 'hash': '0x949f00c0ca2fd7ecf00fed1fa1a42e4505b9a15ef583abc8d5598c4649bc9d4a', 'from': '0x52a85e13c1fadb3f829640052283a5d101abd30c', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 15697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0352efa29dbacaa40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:50:35.000Z'}}, {'blockNum': '0x57f29c', 'uniqueId': '0xc8c498a7ac5d9a9b4652382dbfa3c2012b293d09d17da153b1b8dc15fa99fa63:log:19', 'hash': '0xc8c498a7ac5d9a9b4652382dbfa3c2012b293d09d17da153b1b8dc15fa99fa63', 'from': '0xeae0d78450dab377376206f419e9bca0d28829f9', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 24558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05334ab68623baf80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T08:54:53.000Z'}}, {'blockNum': '0x57f2fe', 'uniqueId': '0x1f3eb31031377252fefc004b34e47ecc865ee7b4e9d446d11b8701a0846f91ca:log:25', 'hash': '0x1f3eb31031377252fefc004b34e47ecc865ee7b4e9d446d11b8701a0846f91ca', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbefeae8eef458e8ab1ac0571c1d13cd473524202', 'value': 26944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05b4a31d5c91dd000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T09:19:05.000Z'}}, {'blockNum': '0x57f34a', 'uniqueId': '0x4f40ffa12687f0ba5ef16a79dc531c904dff3acfb354353429c56f4afc11eb6d:log:4', 'hash': '0x4f40ffa12687f0ba5ef16a79dc531c904dff3acfb354353429c56f4afc11eb6d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdf25aed94ff547748194058b5eccd3824de47ffe', 'value': 1029.17977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x37cabd0bfca439a000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T09:37:41.000Z'}}, {'blockNum': '0x57f37a', 'uniqueId': '0x4b7fcadd13007182871713f7e88b7e52602734b39b3505b71bacc96fd1cbb92e:log:30', 'hash': '0x4b7fcadd13007182871713f7e88b7e52602734b39b3505b71bacc96fd1cbb92e', 'from': '0x9500bb6678208dfd3059f15a81739d77bbc36f3e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 15709.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03539635d6a291a77fff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T09:49:07.000Z'}}, {'blockNum': '0x57f380', 'uniqueId': '0x38e2a3a8b3055b906ead807fc398d92cba60748fbab5f1c3fe5510501994745f:log:7', 'hash': '0x38e2a3a8b3055b906ead807fc398d92cba60748fbab5f1c3fe5510501994745f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'value': 119998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19691ac807590c380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T09:49:40.000Z'}}, {'blockNum': '0x57f3a8', 'uniqueId': '0x7a5dec7e49256c4686e18055c7f48fbaef379291a8018109aad93d1f55f570ab:log:102', 'hash': '0x7a5dec7e49256c4686e18055c7f48fbaef379291a8018109aad93d1f55f570ab', 'from': '0x4f9593d929472dc858ec15772e8f4b2467f47943', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 84639.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11ec5384e7c18e600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T10:00:52.000Z'}}, {'blockNum': '0x57f3d3', 'uniqueId': '0xd9d076cc5d303441f4221e6cf74084755846d584f12dc7fad291422e04f53b00:log:34', 'hash': '0xd9d076cc5d303441f4221e6cf74084755846d584f12dc7fad291422e04f53b00', 'from': '0x319e6ab4f159de08d8f19c2ec198bfca4479f438', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 70716.193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ef988522f0d45167fff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T10:10:05.000Z'}}, {'blockNum': '0x57f3f2', 'uniqueId': '0xef79a0eadff6fb3ca0dc326f026f86bf611d5b42716daa2ba7ab41fe10dfe62e:log:155', 'hash': '0xef79a0eadff6fb3ca0dc326f026f86bf611d5b42716daa2ba7ab41fe10dfe62e', 'from': '0xfbe7b352accf06e043b9200ff9c98b990c794424', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 2818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x98c39b25989ac80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T10:18:30.000Z'}}, {'blockNum': '0x57f462', 'uniqueId': '0x42a75f8c0acf643d2811650765ff3b882a8ab10dea7fc97e1c4544d24c9d0e7d:log:57', 'hash': '0x42a75f8c0acf643d2811650765ff3b882a8ab10dea7fc97e1c4544d24c9d0e7d', 'from': '0x35920983093d1c9d90122eda53ecce7e0ad0de4a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ffdf28905e43bffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T10:47:54.000Z'}}, {'blockNum': '0x57f4b7', 'uniqueId': '0x17cf051c64a7930b81dd8ed3deca9d80bb4195e833449535b8a6b19dd90536c6:log:1', 'hash': '0x17cf051c64a7930b81dd8ed3deca9d80bb4195e833449535b8a6b19dd90536c6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 122619.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19f73766f00baabe0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T11:08:59.000Z'}}, {'blockNum': '0x57f4ca', 'uniqueId': '0x65cba18ce6dadcedc9d0ec1f60f3c4088988aa1e81d2daaa3387326901657575:log:139', 'hash': '0x65cba18ce6dadcedc9d0ec1f60f3c4088988aa1e81d2daaa3387326901657575', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7ba7d64f8d1e2bb356870b3680e17a7c96f3f9cc', 'value': 79340.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10cd0e9fa203d7e20000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T11:14:35.000Z'}}, {'blockNum': '0x57f513', 'uniqueId': '0x39497d19001938f4fd80e5f2e3c0a76472d743808b160666d49a28fe0006b0f1:log:3', 'hash': '0x39497d19001938f4fd80e5f2e3c0a76472d743808b160666d49a28fe0006b0f1', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x8f6ac38d263aa309c839fbe8a5751333087d4ac9', 'value': 23714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x050589dc2dd7dd480000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T11:37:21.000Z'}}, {'blockNum': '0x57f530', 'uniqueId': '0x4dc651bda1b5a8afd20a06054a96dedf01de80826dcf8387eae58caaa7bb204b:log:17', 'hash': '0x4dc651bda1b5a8afd20a06054a96dedf01de80826dcf8387eae58caaa7bb204b', 'from': '0x923bc1ca56bd8c74952d48f6bab3a2dccc430a78', 'to': '0x6ff67737596e36d0194f225aee0e3519c5ad14cb', 'value': 3579.719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xc20e94a855fc900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T11:45:08.000Z'}}, {'blockNum': '0x57f56c', 'uniqueId': '0xceec65deebafd377816acde78e3cbabece33515123ca9d54949f4f787f4df829:log:19', 'hash': '0xceec65deebafd377816acde78e3cbabece33515123ca9d54949f4f787f4df829', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x99f132e370d420296304cdc6e318c2b45415efa3', 'value': 289998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3d68d2b56cbee2780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:00:05.000Z'}}, {'blockNum': '0x57f581', 'uniqueId': '0x5b03700ae6447de43aa89904738609c1568fdab2f03c422b46b1008d3ac88ffc:log:100', 'hash': '0x5b03700ae6447de43aa89904738609c1568fdab2f03c422b46b1008d3ac88ffc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4c8f4e9b5af447d8d8ba3f1cf2bedf3a22deba93', 'value': 99927.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152914a4236a0eae0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:04:47.000Z'}}, {'blockNum': '0x57f588', 'uniqueId': '0x7f1a8c7ae4810a94ed2a24416e5a2aa96b0de7d3bba33004b8413a0e8a5e0b45:log:27', 'hash': '0x7f1a8c7ae4810a94ed2a24416e5a2aa96b0de7d3bba33004b8413a0e8a5e0b45', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x99f132e370d420296304cdc6e318c2b45415efa3', 'value': 3198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xad5d2a584513380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:07:30.000Z'}}, {'blockNum': '0x57f63d', 'uniqueId': '0x74b3c300fa07b4f1737d40eefce5616501164b33d2a1808a245b7600f3c7b5d7:log:148', 'hash': '0x74b3c300fa07b4f1737d40eefce5616501164b33d2a1808a245b7600f3c7b5d7', 'from': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'to': '0xe5a138db8746c9b7689d27664fbff8382d7e2412', 'value': 659503.13484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ba7bc905b9df8df7ffe', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:47:30.000Z'}}, {'blockNum': '0x57f64a', 'uniqueId': '0xa3ab83f5a8105cf6afcf29e404ddcc8d76d8d688b01ac02356f944678858da62:log:7', 'hash': '0xa3ab83f5a8105cf6afcf29e404ddcc8d76d8d688b01ac02356f944678858da62', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 5616.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x013076ca863248a50000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:51:00.000Z'}}, {'blockNum': '0x57f64a', 'uniqueId': '0x3234ee32a0c08c206a32c190c88227b75b33713bbc3cb64a71e6665147751788:log:71', 'hash': '0x3234ee32a0c08c206a32c190c88227b75b33713bbc3cb64a71e6665147751788', 'from': '0x840859b4d523d51b29b17e7ecbc9412ac1df775e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 5563.35698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x012d97167161a5f73fff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:51:00.000Z'}}, {'blockNum': '0x57f64a', 'uniqueId': '0xa9874884bff4aad54e4c5e7e4a9b2bd007e7845379202540e0de61bc7dc12999:log:74', 'hash': '0xa9874884bff4aad54e4c5e7e4a9b2bd007e7845379202540e0de61bc7dc12999', 'from': '0xab56026ca64141d8d40a62d72c10a419438d9718', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 67998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e662dd0bb27d3b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:51:00.000Z'}}, {'blockNum': '0x57f64a', 'uniqueId': '0x96cda51c4e543771baa869873eec27369d68b1275f3c72ac57ccf0631fd8c582:log:76', 'hash': '0x96cda51c4e543771baa869873eec27369d68b1275f3c72ac57ccf0631fd8c582', 'from': '0x9038a850e817eb23a28cacddf7ace3bb8a088ced', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 8490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01cc3e6b220d5a67ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:51:00.000Z'}}, {'blockNum': '0x57f66c', 'uniqueId': '0x8cd205ff988aac174ab4171dc6c7809f4c55827fe1ec819e870a9bd3fea80c90:log:5', 'hash': '0x8cd205ff988aac174ab4171dc6c7809f4c55827fe1ec819e870a9bd3fea80c90', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5616.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x013076ca863248a50000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:58:18.000Z'}}, {'blockNum': '0x57f66f', 'uniqueId': '0x013e4757b8007bba323bdf64c7194bb45eea80adb5273127872c0cc43106dac0:log:7', 'hash': '0x013e4757b8007bba323bdf64c7194bb45eea80adb5273127872c0cc43106dac0', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T12:59:17.000Z'}}, {'blockNum': '0x57f67f', 'uniqueId': '0x5dbcf53be60ea0b4f2809ba25f5f69990ee14197df3a35d44614a64c5af3bb83:log:39', 'hash': '0x5dbcf53be60ea0b4f2809ba25f5f69990ee14197df3a35d44614a64c5af3bb83', 'from': '0xcff8bb9148f7499dde3d082cf82b9e17bbeba9c1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x169b099aa3a9e3ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:03:24.000Z'}}, {'blockNum': '0x57f68e', 'uniqueId': '0xf71c5212cad24150d38e251cd3da1cec89fc59c47717d8b5aa0a908c2fd52a80:log:8', 'hash': '0xf71c5212cad24150d38e251cd3da1cec89fc59c47717d8b5aa0a908c2fd52a80', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:08:20.000Z'}}, {'blockNum': '0x57f6b0', 'uniqueId': '0x8faede66bbabc7f9490f816d0a1fe5ee4eac291c3f4686621992f44c6f5df7fd:log:32', 'hash': '0x8faede66bbabc7f9490f816d0a1fe5ee4eac291c3f4686621992f44c6f5df7fd', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 81078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x112b3f47a65871180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:19:40.000Z'}}, {'blockNum': '0x57f6d3', 'uniqueId': '0x92214eecb7de55366c66bcfbfef9c5dffead42fac85d28d7c6d83916470ee462:log:18', 'hash': '0x92214eecb7de55366c66bcfbfef9c5dffead42fac85d28d7c6d83916470ee462', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 81078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x112b3f47a65871180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:28:08.000Z'}}, {'blockNum': '0x57f6e2', 'uniqueId': '0x512bee059b5a1550b494ebbab037148356e0f937b588973b8508a9b3bad96ea4:log:23', 'hash': '0x512bee059b5a1550b494ebbab037148356e0f937b588973b8508a9b3bad96ea4', 'from': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'to': '0xdcadf0d84f207baeeb102638c83bb5623f23ef4d', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2b5e3af16b18800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T13:31:10.000Z'}}, {'blockNum': '0x57f76b', 'uniqueId': '0x2814dc70e520a5568327dbbdd6c3953d583a8489dbbdc927155aea50efb78150:log:42', 'hash': '0x2814dc70e520a5568327dbbdd6c3953d583a8489dbbdc927155aea50efb78150', 'from': '0x67310bec4c1cee530975c5b25ffe0b14bb73b8b8', 'to': '0xe4da17787a14cf3fa54af619c98ef6d634d76120', 'value': 798.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2b47aa3b0883b70000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T14:04:36.000Z'}}, {'blockNum': '0x57f7c9', 'uniqueId': '0xe62d4686403b898b86c128d16b2b54d594743d9375df5c11f23508fd67888c2d:log:95', 'hash': '0xe62d4686403b898b86c128d16b2b54d594743d9375df5c11f23508fd67888c2d', 'from': '0x5ea6b559305580f1f33bdc9d9168ee49ec3525e9', 'to': '0x6ff67737596e36d0194f225aee0e3519c5ad14cb', 'value': 64315.143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d9e87e84a44aa800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T14:25:43.000Z'}}, {'blockNum': '0x57f817', 'uniqueId': '0x30c80b450a576b1cc335efd1301eeccbf471aad6794ba7fb1c18d8e060f53465:log:21', 'hash': '0x30c80b450a576b1cc335efd1301eeccbf471aad6794ba7fb1c18d8e060f53465', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T14:44:23.000Z'}}, {'blockNum': '0x57f825', 'uniqueId': '0xd72c6b41378d28d035a22371144303c029023fabfe2d187ca6f55969f76f3801:log:28', 'hash': '0xd72c6b41378d28d035a22371144303c029023fabfe2d187ca6f55969f76f3801', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T14:48:17.000Z'}}, {'blockNum': '0x57f85a', 'uniqueId': '0x9bcb8c4308cb6dd5db42bcb7d89d7feee715c6510cb0b080e4b1e241eba55202:log:0', 'hash': '0x9bcb8c4308cb6dd5db42bcb7d89d7feee715c6510cb0b080e4b1e241eba55202', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 120220.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19752a96d27e08a20000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T15:03:56.000Z'}}, {'blockNum': '0x57f887', 'uniqueId': '0xa7aed8d01cefca072a54ac0b691d0f82e7b24f52f8d7c1a38d18973a92a0ec4a:log:22', 'hash': '0xa7aed8d01cefca072a54ac0b691d0f82e7b24f52f8d7c1a38d18973a92a0ec4a', 'from': '0x5076905e74d5f6318ce804a0d4b6e237f3e911fe', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 315.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x111e9afad1e45bffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T15:17:53.000Z'}}, {'blockNum': '0x57f89d', 'uniqueId': '0xc7e36433cc647f49aff1caf67dff86755100064ee81002a2e22231edd00ae28e:log:40', 'hash': '0xc7e36433cc647f49aff1caf67dff86755100064ee81002a2e22231edd00ae28e', 'from': '0x4daa30fcd52feadf0791952803b933344c0d89a3', 'to': '0x1ffa3309a24fbd69b3c3057bd5d7e480c2caa1c3', 'value': 168.7078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09254a823f6da58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T15:24:39.000Z'}}, {'blockNum': '0x57f8e1', 'uniqueId': '0x988c346f641a8db5e60e635f36a5c889c98efa9b753c4682e05ef475c51a0f3d:log:8', 'hash': '0x988c346f641a8db5e60e635f36a5c889c98efa9b753c4682e05ef475c51a0f3d', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e908d362390e74c585597f10e2e55f81bd96d90', 'value': 8708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01d80fc6b709e5900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T15:41:40.000Z'}}, {'blockNum': '0x57f9a9', 'uniqueId': '0xe6d3cee944768a18e27a5b71fd896f04870df7ccf9fe9ec4d5f9d3e2715e66b7:log:0', 'hash': '0xe6d3cee944768a18e27a5b71fd896f04870df7ccf9fe9ec4d5f9d3e2715e66b7', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T16:31:45.000Z'}}, {'blockNum': '0x57f9c5', 'uniqueId': '0x91a52efe71093dfdece8498453abdf03673f00048cced943ad398935ecc43d8a:log:16', 'hash': '0x91a52efe71093dfdece8498453abdf03673f00048cced943ad398935ecc43d8a', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T16:38:05.000Z'}}, {'blockNum': '0x57fae9', 'uniqueId': '0x148b70fcca9865034e54b0838d354add3c51d30f69fd09f15981f2af828db670:log:98', 'hash': '0x148b70fcca9865034e54b0838d354add3c51d30f69fd09f15981f2af828db670', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf66cae345071c62206f00300ea739bdd1dfd5958', 'value': 10887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x024e2f79d233adbc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T17:56:51.000Z'}}, {'blockNum': '0x57faee', 'uniqueId': '0x0ab65ba4c85cc1e334f23115a2e5d5ef8470663384cf7f9626f417b3df38c1b6:log:21', 'hash': '0x0ab65ba4c85cc1e334f23115a2e5d5ef8470663384cf7f9626f417b3df38c1b6', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T17:58:45.000Z'}}, {'blockNum': '0x57fb01', 'uniqueId': '0x2794c1781216759ebb4f73fe70334d210d55ca8353a95bc84b22ee1d99c334d7:log:6', 'hash': '0x2794c1781216759ebb4f73fe70334d210d55ca8353a95bc84b22ee1d99c334d7', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xb89ede251eb3ade0484ca4f95827ef47166058ed', 'value': 116877.1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x18bfebeaafcfaee24000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:03:28.000Z'}}, {'blockNum': '0x57fb29', 'uniqueId': '0x2aeff4149d4a8e0dd06162556ddcc5cf6828ece1c71afa4ff6c780e10f584255:log:21', 'hash': '0x2aeff4149d4a8e0dd06162556ddcc5cf6828ece1c71afa4ff6c780e10f584255', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x65e3a1759a943aeee894bc779e31d90121a87243', 'value': 30100.874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065fc58acdbc07810000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:14:19.000Z'}}, {'blockNum': '0x57fb3b', 'uniqueId': '0x3eaa6c4fcc9379bcd49940c560f559ec1c0fb6a2f6f10f931b0551e98e34e236:log:39', 'hash': '0x3eaa6c4fcc9379bcd49940c560f559ec1c0fb6a2f6f10f931b0551e98e34e236', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:18:10.000Z'}}, {'blockNum': '0x57fbb1', 'uniqueId': '0x134a3700773b1a275e407357132d5721949854c178fcaee66658e356c0a902c2:log:7', 'hash': '0x134a3700773b1a275e407357132d5721949854c178fcaee66658e356c0a902c2', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 75006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0fe2155a312e25380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:48:00.000Z'}}, {'blockNum': '0x57fbd4', 'uniqueId': '0x22817765efc2a1970ee5b14665f9489feaf1af3ce82fbed0290087ed141fde44:log:40', 'hash': '0x22817765efc2a1970ee5b14665f9489feaf1af3ce82fbed0290087ed141fde44', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0fe2155a312e25380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T18:58:09.000Z'}}, {'blockNum': '0x57fbf2', 'uniqueId': '0xc9bc6abbc6c95b3379402ec358430fc08d16e09117c7cc5636bef732fde03de7:log:20', 'hash': '0xc9bc6abbc6c95b3379402ec358430fc08d16e09117c7cc5636bef732fde03de7', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T19:04:37.000Z'}}, {'blockNum': '0x57fbfd', 'uniqueId': '0xc2aed8535aa484401e773e2bc1eff50017887faf7fa29b63d9893d601cf80c1c:log:28', 'hash': '0xc2aed8535aa484401e773e2bc1eff50017887faf7fa29b63d9893d601cf80c1c', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T19:08:15.000Z'}}, {'blockNum': '0x57fc54', 'uniqueId': '0xb8492d33a27684208469f891e395424dad4b2fa27a534d6ef1f12bda8234e7e5:log:32', 'hash': '0xb8492d33a27684208469f891e395424dad4b2fa27a534d6ef1f12bda8234e7e5', 'from': '0xf66cae345071c62206f00300ea739bdd1dfd5958', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 10887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x024e2f79d233adbc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T19:31:25.000Z'}}, {'blockNum': '0x57fcda', 'uniqueId': '0x22493c8f05888ba6deb41470ec6b425480e687c881c54825a11c5476ffdc9827:log:16', 'hash': '0x22493c8f05888ba6deb41470ec6b425480e687c881c54825a11c5476ffdc9827', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 28459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0606c3f695c179cc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:02:54.000Z'}}, {'blockNum': '0x57fcdd', 'uniqueId': '0xffd13e9a6f6340d76ef12256d0174ad2d194dd95dfcc67fc59371265af2b670b:log:15', 'hash': '0xffd13e9a6f6340d76ef12256d0174ad2d194dd95dfcc67fc59371265af2b670b', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:03:40.000Z'}}, {'blockNum': '0x57fcdf', 'uniqueId': '0x68acd70649618907377cc099f2ec4f8f88191bc8b53ec7c957816f0bb86b7832:log:6', 'hash': '0x68acd70649618907377cc099f2ec4f8f88191bc8b53ec7c957816f0bb86b7832', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 5294.7494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011f07689e83f0a58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:04:24.000Z'}}, {'blockNum': '0x57fce0', 'uniqueId': '0x35333272fef9e0e13c3fc3b5a02a14684217f109db793ec7cdedd5d29591ef2f:log:1', 'hash': '0x35333272fef9e0e13c3fc3b5a02a14684217f109db793ec7cdedd5d29591ef2f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:04:32.000Z'}}, {'blockNum': '0x57fce1', 'uniqueId': '0xc6c0b405d817311780c733163dbe84b98f9175322b1ab3e1dd32e8dd2ca8bdcc:log:25', 'hash': '0xc6c0b405d817311780c733163dbe84b98f9175322b1ab3e1dd32e8dd2ca8bdcc', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf8851b834dfff1beeaea24ccde31acce8e2739b2', 'value': 2873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x9bbee2663191440000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:04:50.000Z'}}, {'blockNum': '0x57fcec', 'uniqueId': '0xf8b0398464bb3ffde86285743b6a4cb42ef1863232868608b3c0d145564d3c98:log:5', 'hash': '0xf8b0398464bb3ffde86285743b6a4cb42ef1863232868608b3c0d145564d3c98', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:07:31.000Z'}}, {'blockNum': '0x57fced', 'uniqueId': '0x8df7066f8800e547adff69d31f4197a8615ff6aeaba7d2ef06b76daf28c8c6d9:log:13', 'hash': '0x8df7066f8800e547adff69d31f4197a8615ff6aeaba7d2ef06b76daf28c8c6d9', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 199.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0acf3b1b8894e40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:07:38.000Z'}}, {'blockNum': '0x57fcef', 'uniqueId': '0x66d5a62649359ebd0a93ea628c988dce7fb6a67f894dc4237211d8b3e2539156:log:10', 'hash': '0x66d5a62649359ebd0a93ea628c988dce7fb6a67f894dc4237211d8b3e2539156', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:08:07.000Z'}}, {'blockNum': '0x57fcf2', 'uniqueId': '0x3442ca50855b3c24e3f747215cd6826fe38f02d65a829dba43b3454a4016c583:log:5', 'hash': '0x3442ca50855b3c24e3f747215cd6826fe38f02d65a829dba43b3454a4016c583', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xc86d9b6148561e33fdd392820d00dd6106f15b10', 'value': 30080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065ea3db755466000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:08:40.000Z'}}, {'blockNum': '0x57fcf3', 'uniqueId': '0x7714c1e93450e56b05e217f621e635b831d6ff5785fd27f7a84289d8e942e845:log:2', 'hash': '0x7714c1e93450e56b05e217f621e635b831d6ff5785fd27f7a84289d8e942e845', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:08:50.000Z'}}, {'blockNum': '0x57fcf3', 'uniqueId': '0x6d876e86cd61c23f8b32692384ef460a4e5811cd52cafbee98ed19176104e8bc:log:3', 'hash': '0x6d876e86cd61c23f8b32692384ef460a4e5811cd52cafbee98ed19176104e8bc', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xa59f4bbbddf87e0baf909e59e3e5fdca6ebef465', 'value': 6962.051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x017969ddd1f911138000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:08:50.000Z'}}, {'blockNum': '0x57fcf5', 'uniqueId': '0x68b317430c37b968728f99f43814bb0075ee8376ef5cb7c8a08bc53b5848953f:log:2', 'hash': '0x68b317430c37b968728f99f43814bb0075ee8376ef5cb7c8a08bc53b5848953f', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 5056.42508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01121bfe8c2bf81f8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:09:08.000Z'}}, {'blockNum': '0x57fcf6', 'uniqueId': '0x1a4433c69ea004a0ae410471161d424114c51644121fddc016e01b808601c7f6:log:11', 'hash': '0x1a4433c69ea004a0ae410471161d424114c51644121fddc016e01b808601c7f6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 29995.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a0b05569e8ce00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:09:23.000Z'}}, {'blockNum': '0x57fcfc', 'uniqueId': '0xb6317d7ec5cc3fb7eb5e7de671a7825dc682d5281d225c5a9e6e0ec5c0642845:log:7', 'hash': '0xb6317d7ec5cc3fb7eb5e7de671a7825dc682d5281d225c5a9e6e0ec5c0642845', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xa59f4bbbddf87e0baf909e59e3e5fdca6ebef465', 'value': 31918.955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06c2547c0aa0e6778000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:10:38.000Z'}}, {'blockNum': '0x57fcff', 'uniqueId': '0x43c272006fd9241406727542e1a93c98b56615ea30c2d19db1b39d4264459354:log:13', 'hash': '0x43c272006fd9241406727542e1a93c98b56615ea30c2d19db1b39d4264459354', 'from': '0xf8851b834dfff1beeaea24ccde31acce8e2739b2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x9bbee2663191440000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:11:20.000Z'}}, {'blockNum': '0x57fd02', 'uniqueId': '0x5bbd1e7c757767077aac29766394f020d480b0e1236d1919e71b8d3094730836:log:6', 'hash': '0x5bbd1e7c757767077aac29766394f020d480b0e1236d1919e71b8d3094730836', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:11:53.000Z'}}, {'blockNum': '0x57fd03', 'uniqueId': '0x718726ebc25fdf60ced5b0eb5d76335d01f048cf7f0bf49006320a5292798056:log:5', 'hash': '0x718726ebc25fdf60ced5b0eb5d76335d01f048cf7f0bf49006320a5292798056', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 47927.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a2624e64c481b1a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:12:03.000Z'}}, {'blockNum': '0x57fd04', 'uniqueId': '0xe853a5e84551f962b57ca4cd946b3f51a183e5387cc47e6ab01cbc1a55d83c1c:log:9', 'hash': '0xe853a5e84551f962b57ca4cd946b3f51a183e5387cc47e6ab01cbc1a55d83c1c', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x602f96301e6bf3fabc5bedf52a3a4af0afcf94e0', 'value': 33.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01d4839d21c1300000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:12:35.000Z'}}, {'blockNum': '0x57fd07', 'uniqueId': '0x65ce7001f49e63344d8f649bf8ac5f8efd79b8fc8a47d5e599aeb323b38cfb49:log:11', 'hash': '0x65ce7001f49e63344d8f649bf8ac5f8efd79b8fc8a47d5e599aeb323b38cfb49', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x379483fff86baa2936c10900edfd7821b895bb5f', 'value': 20727.8594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0463a8d59f64e9748000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:13:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0x6ea757b5b16cc781d369e8c2681e96a2f805b238eb4c7595172968959085a019:log:10', 'hash': '0x6ea757b5b16cc781d369e8c2681e96a2f805b238eb4c7595172968959085a019', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x3b881a7f997a0f9e3b72ab10563f78ecc4d9a4bf', 'value': 35010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0769e559e511f9c80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0x5a55cd5b970763b65e2a9ff1bc471a4cb7d6c3b53b7da976ffb83cbb696d4721:log:101', 'hash': '0x5a55cd5b970763b65e2a9ff1bc471a4cb7d6c3b53b7da976ffb83cbb696d4721', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0x364e017063088f1d271cb491ada8a00f296f20c59d9f8342f2231329a9e0d9c7:log:124', 'hash': '0x364e017063088f1d271cb491ada8a00f296f20c59d9f8342f2231329a9e0d9c7', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0xafcc6737cfa57e8800e0a3987df5c1ff36b58ddd3b3305ef4cafc1a84c8c1562:log:129', 'hash': '0xafcc6737cfa57e8800e0a3987df5c1ff36b58ddd3b3305ef4cafc1a84c8c1562', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 5017.6046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011001407f4a9df78000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd08', 'uniqueId': '0xf2f39a0e9d3398acc066df5ee12d9deffbad68b9b8a3e63efc45fc8f2a9d9c42:log:130', 'hash': '0xf2f39a0e9d3398acc066df5ee12d9deffbad68b9b8a3e63efc45fc8f2a9d9c42', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'value': 71629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b0410194b07140000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:14:31.000Z'}}, {'blockNum': '0x57fd0a', 'uniqueId': '0x05f4a28a303b5a97fbb461ece293fe18779d8d5b4be86057e9186b12c05027ee:log:5', 'hash': '0x05f4a28a303b5a97fbb461ece293fe18779d8d5b4be86057e9186b12c05027ee', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x85a1dc38bd468007641c7142dd842129ef5ff0c7', 'value': 157453.7812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2157962a3f838e9d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:06.000Z'}}, {'blockNum': '0x57fd0b', 'uniqueId': '0xab1f758e428ef2aafef31bb8499b9846da3f56d1a01f28e5f941f1a31ff2a448:log:14', 'hash': '0xab1f758e428ef2aafef31bb8499b9846da3f56d1a01f28e5f941f1a31ff2a448', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xa59f4bbbddf87e0baf909e59e3e5fdca6ebef465', 'value': 4543.329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xf64b5b15e94ab68000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:24.000Z'}}, {'blockNum': '0x57fd0c', 'uniqueId': '0x9281fb3a33ddf10c30fe15cdf4e3274fd1f0df78426c4211133dc8b9a877efef:log:8', 'hash': '0x9281fb3a33ddf10c30fe15cdf4e3274fd1f0df78426c4211133dc8b9a877efef', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:52.000Z'}}, {'blockNum': '0x57fd0c', 'uniqueId': '0x9aa11a5287e421a28986b8e7a04f58a9515b50b3d7e060a95480da4d62b5d58a:log:9', 'hash': '0x9aa11a5287e421a28986b8e7a04f58a9515b50b3d7e060a95480da4d62b5d58a', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'value': 5303.383975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011f7f3ccabade1d7000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:52.000Z'}}, {'blockNum': '0x57fd0c', 'uniqueId': '0x317fea17750370a64586b5ffa5eb7200a80b8b8777f3872d4b71f27d630af1e2:log:94', 'hash': '0x317fea17750370a64586b5ffa5eb7200a80b8b8777f3872d4b71f27d630af1e2', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf7d6477a43783bcf61e2c48ba26189e6b7177442', 'value': 5233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011bae76ae60b3240000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:15:52.000Z'}}, {'blockNum': '0x57fd10', 'uniqueId': '0x3530225abbe85cfe19b85c9f21da7880650eae0d3f7faf6f019bc24f782c6169:log:42', 'hash': '0x3530225abbe85cfe19b85c9f21da7880650eae0d3f7faf6f019bc24f782c6169', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7798ef8eb5071cf25e9b6d26698caf815bf7819a', 'value': 33768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x072691238177dea00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:09.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x6a96f18630157649676bca93b6cd6ec6a9550e063f1ee94d7738fff90ca887fa:log:21', 'hash': '0x6a96f18630157649676bca93b6cd6ec6a9550e063f1ee94d7738fff90ca887fa', 'from': '0x3b881a7f997a0f9e3b72ab10563f78ecc4d9a4bf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0769e559e511f9c80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0xf811ad12d2a36755f54eae56c71d6dd6c721fd19630beb8e80aa86f77f85870e:log:23', 'hash': '0xf811ad12d2a36755f54eae56c71d6dd6c721fd19630beb8e80aa86f77f85870e', 'from': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x31c9f037de79fdf01104eeb0bc2026c8bacd090c5f0de1130db7288c8acbea9f:log:24', 'hash': '0x31c9f037de79fdf01104eeb0bc2026c8bacd090c5f0de1130db7288c8acbea9f', 'from': '0xa59f4bbbddf87e0baf909e59e3e5fdca6ebef465', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43424.335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x093209b4f28342418000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x401f75292184dad6afad1fce0a670b24a404d07ab75e1dd09ef50169d062682c:log:26', 'hash': '0x401f75292184dad6afad1fce0a670b24a404d07ab75e1dd09ef50169d062682c', 'from': '0xf7d6477a43783bcf61e2c48ba26189e6b7177442', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011bae76ae60b3240000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x58cf08287543539f4a22d6bdab3e3e5daa8b26bff3b52c818aff686a44a1b783:log:30', 'hash': '0x58cf08287543539f4a22d6bdab3e3e5daa8b26bff3b52c818aff686a44a1b783', 'from': '0x85a1dc38bd468007641c7142dd842129ef5ff0c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 157453.7812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2157962a3f838e9d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x6b9edeed39c0a7246e25b4043f26abd5d0e21e14db25d065687e945022622e69:log:33', 'hash': '0x6b9edeed39c0a7246e25b4043f26abd5d0e21e14db25d065687e945022622e69', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0606c3f695c179cc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x02cf70bafa5713a4f31507472ed3183f386432b2bfdf9f45754cbc85bb8ad828:log:34', 'hash': '0x02cf70bafa5713a4f31507472ed3183f386432b2bfdf9f45754cbc85bb8ad828', 'from': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 71629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b0410194b07140000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd11', 'uniqueId': '0x7da2f896f759a3592e076165ebf723405056344f793e091b1976f981f0af773b:log:36', 'hash': '0x7da2f896f759a3592e076165ebf723405056344f793e091b1976f981f0af773b', 'from': '0x379483fff86baa2936c10900edfd7821b895bb5f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20727.8594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0463a8d59f64e9748000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:18:53.000Z'}}, {'blockNum': '0x57fd16', 'uniqueId': '0x95659c77585710a3771c964ebbf6db1a4d946b660abf1a06d1e3087663f169da:log:40', 'hash': '0x95659c77585710a3771c964ebbf6db1a4d946b660abf1a06d1e3087663f169da', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 28576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x060d1baa15dcfa800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:20:34.000Z'}}, {'blockNum': '0x57fd18', 'uniqueId': '0xfe28fd4831189c6af9500712d28362a70d49c0e48d6949ec9d6780fd21215e24:log:11', 'hash': '0xfe28fd4831189c6af9500712d28362a70d49c0e48d6949ec9d6780fd21215e24', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5294.7494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011f07689e83f0a58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:20:50.000Z'}}, {'blockNum': '0x57fd20', 'uniqueId': '0x6e2283c2d71d1c92fd94f0b40e99f7a4e84a5288c9621e25aa8151e06d0713bf:log:21', 'hash': '0x6e2283c2d71d1c92fd94f0b40e99f7a4e84a5288c9621e25aa8151e06d0713bf', 'from': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45251.02508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0995101fc80dcc238000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:22:39.000Z'}}, {'blockNum': '0x57fd22', 'uniqueId': '0xe13080e9005c408ae87b63ce162c6c68b87d6f067c087c4c770f0ad568004b3a:log:3', 'hash': '0xe13080e9005c408ae87b63ce162c6c68b87d6f067c087c4c770f0ad568004b3a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:23:41.000Z'}}, {'blockNum': '0x57fd35', 'uniqueId': '0xcb712b36e2b994ef0989d4581ccc0305f5e21fc1a572b687f7c9bc659ebc0162:log:29', 'hash': '0xcb712b36e2b994ef0989d4581ccc0305f5e21fc1a572b687f7c9bc659ebc0162', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x060d1baa15dcfa800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:28:11.000Z'}}, {'blockNum': '0x57fd36', 'uniqueId': '0x465e2ae43e8c89aaf6c118bb8a6e1d8e6bfb4377c2fc4b4c11acec0f50aa9c0a:log:5', 'hash': '0x465e2ae43e8c89aaf6c118bb8a6e1d8e6bfb4377c2fc4b4c11acec0f50aa9c0a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4da90b1ff3c651d6ec3f40a918ea473bced334a3', 'value': 16233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x036ffe2125e144040000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:28:28.000Z'}}, {'blockNum': '0x57fd43', 'uniqueId': '0x6019bdba7e0de042359b4e6e4972be99a0af712dbd3a36417e9cae67965df9da:log:34', 'hash': '0x6019bdba7e0de042359b4e6e4972be99a0af712dbd3a36417e9cae67965df9da', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 79990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0443f2ad108180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:32:06.000Z'}}, {'blockNum': '0x57fd43', 'uniqueId': '0xc7cccd5129673f04a619420929d9df8afbda7b27db842689224beba60e8be87c:log:35', 'hash': '0xc7cccd5129673f04a619420929d9df8afbda7b27db842689224beba60e8be87c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x89007545c1f0f0113eaac2778ccf45476ed891b7', 'value': 42652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09082b67d404d8f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:32:06.000Z'}}, {'blockNum': '0x57fd52', 'uniqueId': '0x688986fdf16486f5f5329f0cbebbcc512a556e18ddf7e3a13344d1b318f8db6a:log:5', 'hash': '0x688986fdf16486f5f5329f0cbebbcc512a556e18ddf7e3a13344d1b318f8db6a', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x379483fff86baa2936c10900edfd7821b895bb5f', 'value': 19752.564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x042ec9e4506e40f20000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:35:43.000Z'}}, {'blockNum': '0x57fd59', 'uniqueId': '0xa1d235ab6aa4991f9e9ae9dc4aa4df39fd3d9b8fb5b87a301ed1bbdf08973768:log:8', 'hash': '0xa1d235ab6aa4991f9e9ae9dc4aa4df39fd3d9b8fb5b87a301ed1bbdf08973768', 'from': '0x379483fff86baa2936c10900edfd7821b895bb5f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19752.564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x042ec9e4506e40f20000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:38:04.000Z'}}, {'blockNum': '0x57fd59', 'uniqueId': '0x7a004cfc0ea7b8a255cffbb9721ff679a6ea8a46ebaa634dedad65f609ac2811:log:9', 'hash': '0x7a004cfc0ea7b8a255cffbb9721ff679a6ea8a46ebaa634dedad65f609ac2811', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 79990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0443f2ad108180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:38:04.000Z'}}, {'blockNum': '0x57fd59', 'uniqueId': '0x3c7bc3c2ba22e2936b3e4a9f4bba65bd22801d42a6c17ea07b22c1ca656126f7:log:12', 'hash': '0x3c7bc3c2ba22e2936b3e4a9f4bba65bd22801d42a6c17ea07b22c1ca656126f7', 'from': '0x89007545c1f0f0113eaac2778ccf45476ed891b7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09082b67d404d8f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:38:04.000Z'}}, {'blockNum': '0x57fd84', 'uniqueId': '0xc9059b5a3d9505ba1b8a27a59155dedf183cd408af207bb6289b5f40d2d83a40:log:15', 'hash': '0xc9059b5a3d9505ba1b8a27a59155dedf183cd408af207bb6289b5f40d2d83a40', 'from': '0x4da90b1ff3c651d6ec3f40a918ea473bced334a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x036ffe2125e144040000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:48:25.000Z'}}, {'blockNum': '0x57fd8e', 'uniqueId': '0x0cb937412eb27a7b6aa8ed39eea12185033eb4eef9e2430991429bb938f3b818:log:5', 'hash': '0x0cb937412eb27a7b6aa8ed39eea12185033eb4eef9e2430991429bb938f3b818', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5017.6046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x011001407f4a9df78000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:50:50.000Z'}}, {'blockNum': '0x57fd8f', 'uniqueId': '0x7dac3ce009bb509bb572eb00548db04f0dcf4608221b68a45b3450786420bb0b:log:11', 'hash': '0x7dac3ce009bb509bb572eb00548db04f0dcf4608221b68a45b3450786420bb0b', 'from': '0x2c359bdac0b1a9711119decc4f1a20530d28b260', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53230.683975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b45a4231702f9377000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:50:54.000Z'}}, {'blockNum': '0x57fd99', 'uniqueId': '0x93a1bfdbb41ba176841c653708a69467ed2828ad79fb1df5359147e7dad39c3a:log:9', 'hash': '0x93a1bfdbb41ba176841c653708a69467ed2828ad79fb1df5359147e7dad39c3a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 4980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x010df7621ed445500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:53:25.000Z'}}, {'blockNum': '0x57fd99', 'uniqueId': '0x0fd007692b1bc205ec397e81cd79abbc2b17335ff0e78f8fe3f35137f3dfbade:log:17', 'hash': '0x0fd007692b1bc205ec397e81cd79abbc2b17335ff0e78f8fe3f35137f3dfbade', 'from': '0xbefeae8eef458e8ab1ac0571c1d13cd473524202', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 26944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05b4a31d5c91dcffffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:53:25.000Z'}}, {'blockNum': '0x57fda0', 'uniqueId': '0xdb93ce317d41b6868634531459cf4fc38f5d96195af2a7ba5ac0eb020e074c6e:log:5', 'hash': '0xdb93ce317d41b6868634531459cf4fc38f5d96195af2a7ba5ac0eb020e074c6e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:55:53.000Z'}}, {'blockNum': '0x57fda9', 'uniqueId': '0xe12a5a0d2414354c94e4109ebba98b9737cd97d94aa6292dccbad564d0210e66:log:11', 'hash': '0xe12a5a0d2414354c94e4109ebba98b9737cd97d94aa6292dccbad564d0210e66', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x010df7621ed445500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T20:58:06.000Z'}}, {'blockNum': '0x57fdb6', 'uniqueId': '0xa913d85601da65343a793d8832c9be4fdf829f0ca03c63d05c816d1bbe5f6f68:log:18', 'hash': '0xa913d85601da65343a793d8832c9be4fdf829f0ca03c63d05c816d1bbe5f6f68', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:00:36.000Z'}}, {'blockNum': '0x57fddc', 'uniqueId': '0xfd2ef5cbe086741c12a89d6dbfff20fa6f94262ad463d0515eaad010c1740cf6:log:10', 'hash': '0xfd2ef5cbe086741c12a89d6dbfff20fa6f94262ad463d0515eaad010c1740cf6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 9980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021d045283b19e700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:09:58.000Z'}}, {'blockNum': '0x57fe01', 'uniqueId': '0x0fb50333504b4c19006ce1656ec40c8cbc8b9fa9da08677de73a816cc6f06725:log:32', 'hash': '0x0fb50333504b4c19006ce1656ec40c8cbc8b9fa9da08677de73a816cc6f06725', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021d045283b19e700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:18:10.000Z'}}, {'blockNum': '0x57fe46', 'uniqueId': '0x63dc17b2d0b2c7dca3ca8e3aa9ac446298f18431a3ca03b2ad8150147add6247:log:0', 'hash': '0x63dc17b2d0b2c7dca3ca8e3aa9ac446298f18431a3ca03b2ad8150147add6247', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 29980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06593814172702f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:33:30.000Z'}}, {'blockNum': '0x57fe55', 'uniqueId': '0xbb08e4abd329e48d95cc8fdce56b73938de7d7679b211b18a4b9af63cf2c9ab4:log:23', 'hash': '0xbb08e4abd329e48d95cc8fdce56b73938de7d7679b211b18a4b9af63cf2c9ab4', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:36:56.000Z'}}, {'blockNum': '0x57fe5b', 'uniqueId': '0x976e38575b6008877263439dd409a5fa9fc05baf39613edb28937e3483334db0:log:14', 'hash': '0x976e38575b6008877263439dd409a5fa9fc05baf39613edb28937e3483334db0', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06593814172702f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:38:12.000Z'}}, {'blockNum': '0x57fe5c', 'uniqueId': '0x1617bbde2e10c9f290908fb5c193d77575fecb10760614269c98d1f5806299f0:log:8', 'hash': '0x1617bbde2e10c9f290908fb5c193d77575fecb10760614269c98d1f5806299f0', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:38:46.000Z'}}, {'blockNum': '0x57fe67', 'uniqueId': '0x5d74f2cc3efcafe9bac05ed590e820ebb0e5335b4a0431e6935988cc79a09143:log:5', 'hash': '0x5d74f2cc3efcafe9bac05ed590e820ebb0e5335b4a0431e6935988cc79a09143', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:42:01.000Z'}}, {'blockNum': '0x57fe7c', 'uniqueId': '0x943e4394335b4a980236664629337bd5351d921f4d95c0a986695affd660e81b:log:8', 'hash': '0x943e4394335b4a980236664629337bd5351d921f4d95c0a986695affd660e81b', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:48:32.000Z'}}, {'blockNum': '0x57fe80', 'uniqueId': '0x164a3b9864b19c4426d02675d00bcba54b5528d4bb027f7a12a02128c6850669:log:11', 'hash': '0x164a3b9864b19c4426d02675d00bcba54b5528d4bb027f7a12a02128c6850669', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T21:49:22.000Z'}}, {'blockNum': '0x57feff', 'uniqueId': '0x3eb736803400b187c193fd09324f6efc7fc5f81dbdb9bd1ce802aaf04424a5c5:log:1', 'hash': '0x3eb736803400b187c193fd09324f6efc7fc5f81dbdb9bd1ce802aaf04424a5c5', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:17:47.000Z'}}, {'blockNum': '0x57ff04', 'uniqueId': '0xb370b7b2fba198358ae9044a7d6fa52abfa99630b7829066ec8492b5c7509418:log:2', 'hash': '0xb370b7b2fba198358ae9044a7d6fa52abfa99630b7829066ec8492b5c7509418', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 33398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0712825b71cff0180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:18:54.000Z'}}, {'blockNum': '0x57ff2a', 'uniqueId': '0x750878e344d6a877878d2e46c24627b978b53ed06e0707475c607da72c61e441:log:7', 'hash': '0x750878e344d6a877878d2e46c24627b978b53ed06e0707475c607da72c61e441', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:27:49.000Z'}}, {'blockNum': '0x57ff2c', 'uniqueId': '0x01a4be8baef5b5bde5279b7a53ff6aa3ba38502ab38883bac462665a420cd95f:log:12', 'hash': '0x01a4be8baef5b5bde5279b7a53ff6aa3ba38502ab38883bac462665a420cd95f', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0712825b71cff0180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:28:16.000Z'}}, {'blockNum': '0x57ff40', 'uniqueId': '0x0b76d7eaa702e694f0d314721eb189484e648ec6b16fc4df97baa293369a6664:log:15', 'hash': '0x0b76d7eaa702e694f0d314721eb189484e648ec6b16fc4df97baa293369a6664', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 32246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06d40f25495eae180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:32:45.000Z'}}, {'blockNum': '0x57ff47', 'uniqueId': '0x4ad48f58fa482a8011f78c589a2e879ebdf580d95e6708751e02799f0406f83f:log:21', 'hash': '0x4ad48f58fa482a8011f78c589a2e879ebdf580d95e6708751e02799f0406f83f', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:34:48.000Z'}}, {'blockNum': '0x57ff50', 'uniqueId': '0x9704903f8519c40a8dc8b9701d677a7f695ceb23874123d56832e4664d5364b9:log:1', 'hash': '0x9704903f8519c40a8dc8b9701d677a7f695ceb23874123d56832e4664d5364b9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 84000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11c9a62d04ed0c800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:38:04.000Z'}}, {'blockNum': '0x57ff50', 'uniqueId': '0x9537d49160229161030da2265254dcc198b9c081d0bdae50f062c5fba450c40c:log:5', 'hash': '0x9537d49160229161030da2265254dcc198b9c081d0bdae50f062c5fba450c40c', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06d40f25495eae180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:38:04.000Z'}}, {'blockNum': '0x57ff6b', 'uniqueId': '0x502b1ef6878f71009a8b946ce630728cad70081f39506e7fe2774db9ce0d3004:log:18', 'hash': '0x502b1ef6878f71009a8b946ce630728cad70081f39506e7fe2774db9ce0d3004', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d3ff5d8349c7fca79d9724c2aef1299eaae07c5', 'value': 21437.698055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x048a23d31f3af5837000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:43:41.000Z'}}, {'blockNum': '0x57ff74', 'uniqueId': '0xff52c4f6e4872c66806a84b633566d145392e78976ebbdf7485dad959025cadf:log:1', 'hash': '0xff52c4f6e4872c66806a84b633566d145392e78976ebbdf7485dad959025cadf', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2939364237980f9998081157896355b2bffdbac3', 'value': 17825.939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03c6589952a09dfb8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:46:30.000Z'}}, {'blockNum': '0x57ff76', 'uniqueId': '0xea95f9d420b7b56d6e62ce36c432270198ffd63580360b2405353099bf91e072:log:1', 'hash': '0xea95f9d420b7b56d6e62ce36c432270198ffd63580360b2405353099bf91e072', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xad7cb432e042b8c1e14805d27dac441226f7cce9', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:46:41.000Z'}}, {'blockNum': '0x57ff7b', 'uniqueId': '0xf8a46b6bdff4c30c57a7cfe5e4c86d019db03c59649c94d4a080dc967569eab9:log:4', 'hash': '0xf8a46b6bdff4c30c57a7cfe5e4c86d019db03c59649c94d4a080dc967569eab9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 44059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09547173f969d78c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:48:02.000Z'}}, {'blockNum': '0x57ff87', 'uniqueId': '0x50564e8ec4843d1a388c95cc9934f76ae43bbe29a549641c133eb51614a78c92:log:3', 'hash': '0x50564e8ec4843d1a388c95cc9934f76ae43bbe29a549641c133eb51614a78c92', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 122000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19d5a21cd04c18400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:50:52.000Z'}}, {'blockNum': '0x57ff90', 'uniqueId': '0x6d0a01071f46acac04fc9c8567e13ab23f454e63acf486d7a5f60e7aa3fed23d:log:1', 'hash': '0x6d0a01071f46acac04fc9c8567e13ab23f454e63acf486d7a5f60e7aa3fed23d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 6095.744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x014a7371175d36c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:52:54.000Z'}}, {'blockNum': '0x57ff96', 'uniqueId': '0x0fcc6dcb5a365963e5cf6023039a45ec25bf65488d8a4030db0c54e37dbd044f:log:0', 'hash': '0x0fcc6dcb5a365963e5cf6023039a45ec25bf65488d8a4030db0c54e37dbd044f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7d3ff5d8349c7fca79d9724c2aef1299eaae07c5', 'value': 10708.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0244857472ba374c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:54:30.000Z'}}, {'blockNum': '0x57ff9c', 'uniqueId': '0x98ba7efbdf8230815d5f0934f81c28404b55092311cb427c7c64cc85f8e60d11:log:47', 'hash': '0x98ba7efbdf8230815d5f0934f81c28404b55092311cb427c7c64cc85f8e60d11', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 69640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ebf312497777b200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:55:58.000Z'}}, {'blockNum': '0x57ff9d', 'uniqueId': '0x1de72d79bc83eafccc28ed1f2da4adef548b6109bfb246ae00ae12879790a332:log:12', 'hash': '0x1de72d79bc83eafccc28ed1f2da4adef548b6109bfb246ae00ae12879790a332', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 10942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x02512ac112cca4380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:17.000Z'}}, {'blockNum': '0x57ff9d', 'uniqueId': '0xe0f585f13169021d46804e28a1ce202a4aea496190165085d733318e86fabc76:log:14', 'hash': '0xe0f585f13169021d46804e28a1ce202a4aea496190165085d733318e86fabc76', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 11755.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x027d435cf61002370000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:17.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0x855aea44e8fe5629a142b9c044abc376f4fad764fe060a2ca7de7b8db2e376b6:log:6', 'hash': '0x855aea44e8fe5629a142b9c044abc376f4fad764fe060a2ca7de7b8db2e376b6', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 58347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c5aff49045854cc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0xbd486c6530121b2379be44fd7b0436527e5713231562fe9f9a74d00f1df19a27:log:7', 'hash': '0xbd486c6530121b2379be44fd7b0436527e5713231562fe9f9a74d00f1df19a27', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 75089.36105477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0fe69a3826d3e8f37400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0xa36a707801d5c86d7dc74ed3ab0b9ffb99806c6788b6c9e7f46c0ccedfe8c09f:log:8', 'hash': '0xa36a707801d5c86d7dc74ed3ab0b9ffb99806c6788b6c9e7f46c0ccedfe8c09f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 9264.7793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01f63ea426720c364000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0x81e108bf36f5dbdec68c440a5a1b6ab64881414b714ec4a940f646219f6a65c8:log:9', 'hash': '0x81e108bf36f5dbdec68c440a5a1b6ab64881414b714ec4a940f646219f6a65c8', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 137725.80066906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1d2a216ff5f1c9c62800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ff9e', 'uniqueId': '0x0502828756f7f53e34911d96b0e8e417e864439b78edd36da3a184da041b52cb:log:150', 'hash': '0x0502828756f7f53e34911d96b0e8e417e864439b78edd36da3a184da041b52cb', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 136311.38532774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1cdd747b3ae85849d800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:56:20.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0x51d0911dee77dbac75cd071e1333c738fa191cdf00f08a0dbd0b2e0c76a2761f:log:5', 'hash': '0x51d0911dee77dbac75cd071e1333c738fa191cdf00f08a0dbd0b2e0c76a2761f', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5bf68cd676a53b7df3533831ffbf5a3edd740527', 'value': 11247.41418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0261b93a355b0f6e4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0x054711ed44aa3781145f988cdbd6afd9740b65ccab97c3a38d6454584e395bbe:log:8', 'hash': '0x054711ed44aa3781145f988cdbd6afd9740b65ccab97c3a38d6454584e395bbe', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xbc0b3e5ca6986ea3309d81a6e37672d149ff5b77', 'value': 6841.5502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0172e194fad042af8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0x89ee871ea29a411e4fe8e35c6262b464d90e18c42566e8c2f43bcf4adcbdb1e7:log:9', 'hash': '0x89ee871ea29a411e4fe8e35c6262b464d90e18c42566e8c2f43bcf4adcbdb1e7', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 16263.39402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0371a3ee660918224000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0x941586c2d8b0d4fcac4af693841c40d6a8478f26863d00a92cba49da23280400:log:10', 'hash': '0x941586c2d8b0d4fcac4af693841c40d6a8478f26863d00a92cba49da23280400', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xc19fdef12506d5c2c9acbfbeca98ece1d2718576', 'value': 11690.87808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0279c38678d550c80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa0', 'uniqueId': '0xcdf81567e8ee96a2771a573e0a398af5fcaad7dce833f53c71447f1e53951443:log:18', 'hash': '0xcdf81567e8ee96a2771a573e0a398af5fcaad7dce833f53c71447f1e53951443', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 206000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2b9f4849d53924c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:01.000Z'}}, {'blockNum': '0x57ffa1', 'uniqueId': '0xf7844f9788d2814572f9e25275d25d81f2f5712f63b2b95de8f9aee2e3a44da7:log:3', 'hash': '0xf7844f9788d2814572f9e25275d25d81f2f5712f63b2b95de8f9aee2e3a44da7', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xc19fdef12506d5c2c9acbfbeca98ece1d2718576', 'value': 53394.36700612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b4e83b20895dc069000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:06.000Z'}}, {'blockNum': '0x57ffa1', 'uniqueId': '0x9982237c969942257a171ae778f310aaee3880f04b2913f30f64b9f015d3d9b2:log:4', 'hash': '0x9982237c969942257a171ae778f310aaee3880f04b2913f30f64b9f015d3d9b2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xce27dbcd10379c110d00c298ceebf0eb6237b7cd', 'value': 9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021dfe1f5c5363780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:06.000Z'}}, {'blockNum': '0x57ffa1', 'uniqueId': '0x7274770261f744e0d68fbaed05ddcb4ca4281efa37f3d5b03d650da314f3d514:log:10', 'hash': '0x7274770261f744e0d68fbaed05ddcb4ca4281efa37f3d5b03d650da314f3d514', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'value': 95702.14466961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1444060e75510b702400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:06.000Z'}}, {'blockNum': '0x57ffa1', 'uniqueId': '0x77e7973ac0bef114c5f60fe1a2999fe67513cd293d3c764a4c164c9eb8535572:log:14', 'hash': '0x77e7973ac0bef114c5f60fe1a2999fe67513cd293d3c764a4c164c9eb8535572', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09547173f969d78c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:06.000Z'}}, {'blockNum': '0x57ffa2', 'uniqueId': '0x75a9cd18b96e28e843d069521046e81637b92378bb5d9479941cf4d2bfe099db:log:6', 'hash': '0x75a9cd18b96e28e843d069521046e81637b92378bb5d9479941cf4d2bfe099db', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xbc4f7f9df41acecc1f55228da01a27efc797bc8e', 'value': 49998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a9665a2833e2c780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:13.000Z'}}, {'blockNum': '0x57ffa2', 'uniqueId': '0xdf133de100d7d5d679dfe61396d6690a3dc129b3c5f5e7660c457de98372a4c5:log:38', 'hash': '0xdf133de100d7d5d679dfe61396d6690a3dc129b3c5f5e7660c457de98372a4c5', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x92df426b5e03600c0f89fc7490a06eae5b2dc191', 'value': 1398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4bc925b9141c180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:13.000Z'}}, {'blockNum': '0x57ffa4', 'uniqueId': '0x9553eb4d441435705ddc0597661831bef3183a3b8611ebf5baad162f7c8b5e95:log:11', 'hash': '0x9553eb4d441435705ddc0597661831bef3183a3b8611ebf5baad162f7c8b5e95', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x89007545c1f0f0113eaac2778ccf45476ed891b7', 'value': 34408.20096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x074945b636a87eb00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:29.000Z'}}, {'blockNum': '0x57ffa4', 'uniqueId': '0x19627e7978256c397eeac6afcc74c22bf1261cef8f09e4c2b8ab7c667205ae30:log:15', 'hash': '0x19627e7978256c397eeac6afcc74c22bf1261cef8f09e4c2b8ab7c667205ae30', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 127987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1b1a306d9bcfcfec0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:58:29.000Z'}}, {'blockNum': '0x57ffa8', 'uniqueId': '0x355037930818c2a15aeb2ae230dfa09d8ee4de2ac216b4733951f4310031a4b1:log:16', 'hash': '0x355037930818c2a15aeb2ae230dfa09d8ee4de2ac216b4733951f4310031a4b1', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6095.744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x014a7371175d36c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T22:59:22.000Z'}}, {'blockNum': '0x57ffaf', 'uniqueId': '0x31236204e47c2e6d1a8c5630e861b0efe06369bec7cc1e22b28a99659f4cd841:log:11', 'hash': '0x31236204e47c2e6d1a8c5630e861b0efe06369bec7cc1e22b28a99659f4cd841', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 123000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e67e11f6e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:01:24.000Z'}}, {'blockNum': '0x57ffaf', 'uniqueId': '0x8cc6a79b30b414ca0ffed773a22726155bb0982f7ca6eaa770fcdd69dc66d162:log:18', 'hash': '0x8cc6a79b30b414ca0ffed773a22726155bb0982f7ca6eaa770fcdd69dc66d162', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:01:24.000Z'}}, {'blockNum': '0x57ffb7', 'uniqueId': '0x194fae4cd078ef941b73aa0fda2b13d7b6fa634d9ff1dc8861e3a989bc14abfb:log:11', 'hash': '0x194fae4cd078ef941b73aa0fda2b13d7b6fa634d9ff1dc8861e3a989bc14abfb', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf3ffab21306a12b2a4db2fe1c401b423c9b90b24', 'value': 84971.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11fe54bfb30e50dd0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:03:29.000Z'}}, {'blockNum': '0x57ffbe', 'uniqueId': '0x5094441ae50e775f12169246967a835ca1e154f2643243f42a550e8fa5c4b9d3:log:5', 'hash': '0x5094441ae50e775f12169246967a835ca1e154f2643243f42a550e8fa5c4b9d3', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:05:36.000Z'}}, {'blockNum': '0x57ffc3', 'uniqueId': '0xa1196e18d948c99e36f950a755e0214ac4d7e2955f6b27632bf46623fa5b3f4f:log:9', 'hash': '0xa1196e18d948c99e36f950a755e0214ac4d7e2955f6b27632bf46623fa5b3f4f', 'from': '0x7d3ff5d8349c7fca79d9724c2aef1299eaae07c5', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 32146.426055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06cea94791f52ccf7000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:06:30.000Z'}}, {'blockNum': '0x57ffcb', 'uniqueId': '0xc9176caa64aabc75c40a698df4dd78777e2172d5da91a53231c72da75f8dddea:log:4', 'hash': '0xc9176caa64aabc75c40a698df4dd78777e2172d5da91a53231c72da75f8dddea', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xffd8bf66dabecd7780e457b24992a9792015bfb5', 'value': 87875.21398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x129bb992bbf8ec35c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:07:58.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0x2184f540eec06b4adeb292814aee45e44ae5cb7b6860d77e99e23edc1d325bb8:log:17', 'hash': '0x2184f540eec06b4adeb292814aee45e44ae5cb7b6860d77e99e23edc1d325bb8', 'from': '0xc19fdef12506d5c2c9acbfbeca98ece1d2718576', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65085.24508612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0dc84738816b2cce9000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0xaba4a843964e53828c58f116df7f3d88a62b1cf8913f19db2ace8abfb89cd956:log:18', 'hash': '0xaba4a843964e53828c58f116df7f3d88a62b1cf8913f19db2ace8abfb89cd956', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 123000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e67e11f6e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0xe24f2ecd082b07fffabf94ee31975dc11515782b99f78f74996888018c826ecf:log:19', 'hash': '0xe24f2ecd082b07fffabf94ee31975dc11515782b99f78f74996888018c826ecf', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75089.36105477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0fe69a3826d3e8f37400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0x617e6f62245d84e7fff2dfc5918ed4ac323589ed3c02e799a695c4a92cef8455:log:20', 'hash': '0x617e6f62245d84e7fff2dfc5918ed4ac323589ed3c02e799a695c4a92cef8455', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16263.39402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0371a3ee660918224000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0xb99bf1ff0fea7e4fa43feacbdb5dc068f78ea339d5ac386cae81662df07772f1:log:21', 'hash': '0xb99bf1ff0fea7e4fa43feacbdb5dc068f78ea339d5ac386cae81662df07772f1', 'from': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95702.14466961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1444060e75510b702400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcc', 'uniqueId': '0x74affdb1a871202ada22da118e2717fc54745dedd9d8d0dc92d4df2fa6b60a46:log:25', 'hash': '0x74affdb1a871202ada22da118e2717fc54745dedd9d8d0dc92d4df2fa6b60a46', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:06.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x9cf038989c1772dd3ed668d7ddbf238c18f1460b214241564af6370892a44e21:log:2', 'hash': '0x9cf038989c1772dd3ed668d7ddbf238c18f1460b214241564af6370892a44e21', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 90272.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x131dae9991cbf2320000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x390d405d68a7e5d5f438f3b225de8b7d47791f3c5cd1935195c1a54e088d13a8:log:14', 'hash': '0x390d405d68a7e5d5f438f3b225de8b7d47791f3c5cd1935195c1a54e088d13a8', 'from': '0x89007545c1f0f0113eaac2778ccf45476ed891b7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34408.20096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x074945b636a87eb00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x6dada408f411e76474d8dbee7438d7bdf525249c9aacddfe0b79c4cdc1e8868d:log:15', 'hash': '0x6dada408f411e76474d8dbee7438d7bdf525249c9aacddfe0b79c4cdc1e8868d', 'from': '0xce27dbcd10379c110d00c298ceebf0eb6237b7cd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021dfe1f5c5363780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x0768a86cd11232a7b27770d04d50dc0e0fbd0af4974147334e4dc72bc6f2f5b8:log:16', 'hash': '0x0768a86cd11232a7b27770d04d50dc0e0fbd0af4974147334e4dc72bc6f2f5b8', 'from': '0x5bf68cd676a53b7df3533831ffbf5a3edd740527', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11247.41418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0261b93a355b0f6e4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffcd', 'uniqueId': '0x8375933526ed436218dc2f06a8600f7dfb27fc854ba2a7c2b68ff87dc87a0ec9:log:18', 'hash': '0x8375933526ed436218dc2f06a8600f7dfb27fc854ba2a7c2b68ff87dc87a0ec9', 'from': '0x92df426b5e03600c0f89fc7490a06eae5b2dc191', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4bc925b9141c180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:08:32.000Z'}}, {'blockNum': '0x57ffd0', 'uniqueId': '0xa5e610eb55b5c1541523e33da5cd379016e6b4c09c6f7d1472d241aaff52c512:log:11', 'hash': '0xa5e610eb55b5c1541523e33da5cd379016e6b4c09c6f7d1472d241aaff52c512', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcb00b2ca435fab0473159e079047df39883b1543', 'value': 92696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x13a10f6b2b8b19600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:09:51.000Z'}}, {'blockNum': '0x57ffd2', 'uniqueId': '0x9222033b3cbbcf4345a5dbf7346202016fdf7fceb78a438e90b6e01bee98527f:log:4', 'hash': '0x9222033b3cbbcf4345a5dbf7346202016fdf7fceb78a438e90b6e01bee98527f', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x915b58a290d365f9e709ffd6190e5c11622dd7d4', 'value': 92028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x137cd90e6ec250700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:10:22.000Z'}}, {'blockNum': '0x57ffd3', 'uniqueId': '0x345321fb895bc3378a68a6aca6be355bbd28d03f8c5ab38d157c7e62dc957e07:log:120', 'hash': '0x345321fb895bc3378a68a6aca6be355bbd28d03f8c5ab38d157c7e62dc957e07', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4988966b7e42f6a05ab574eef55ddd411b3ade15', 'value': 486.7896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a63901214027e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:10:56.000Z'}}, {'blockNum': '0x57ffd4', 'uniqueId': '0xe4aee5acacc51695f8797342afb271f5a3dee5c5377f789bf4c6be85486a3b82:log:5', 'hash': '0xe4aee5acacc51695f8797342afb271f5a3dee5c5377f789bf4c6be85486a3b82', 'from': '0x2939364237980f9998081157896355b2bffdbac3', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 17825.939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03c6589952a09dfb8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:11:00.000Z'}}, {'blockNum': '0x57ffd5', 'uniqueId': '0xf4aa9258c1cd5993351b60fa4ced46b50633b2099bccaeb488df4bc9d0e156c1:log:10', 'hash': '0xf4aa9258c1cd5993351b60fa4ced46b50633b2099bccaeb488df4bc9d0e156c1', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 6389.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x015a6246b8a82a958000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:11:04.000Z'}}, {'blockNum': '0x57ffd5', 'uniqueId': '0xedf4085c4fb3483f2ddab7968f6513a6a9278fb876ca96a151774fae7d3d5918:log:61', 'hash': '0xedf4085c4fb3483f2ddab7968f6513a6a9278fb876ca96a151774fae7d3d5918', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2c174bedf6984e2d2d7ec3b0ee3e71cf3380c42d', 'value': 15630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x034f4dd2ccb5fb780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:11:04.000Z'}}, {'blockNum': '0x57ffd8', 'uniqueId': '0x965c72669ed6c32175d5c6291adb78d70e14f4648acb455f9e583870905f4ebd:log:7', 'hash': '0x965c72669ed6c32175d5c6291adb78d70e14f4648acb455f9e583870905f4ebd', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x02512ac112cca4380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:11:32.000Z'}}, {'blockNum': '0x57ffda', 'uniqueId': '0x2fca9e179bde62043530e8dbd01bf2d7fb9924fdd1a118155abdfe69c0ce0a4f:log:3', 'hash': '0x2fca9e179bde62043530e8dbd01bf2d7fb9924fdd1a118155abdfe69c0ce0a4f', 'from': '0xa30d8157911ef23c46c0eb71889efe6a648a41f7', 'to': '0x46da31b0699345c9dbffce9412a6bd4b2a44dea7', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:12:29.000Z'}}, {'blockNum': '0x57ffda', 'uniqueId': '0x0f004a4905763aa2228170593fa218b326c9e7cdb839aa6785f1dcac3d44a41e:log:5', 'hash': '0x0f004a4905763aa2228170593fa218b326c9e7cdb839aa6785f1dcac3d44a41e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb2b210a7e3e25561b2aa102b6a0432e6a7e050e2', 'value': 28915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x061f7c3c05c3a3ec0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:12:29.000Z'}}, {'blockNum': '0x57ffda', 'uniqueId': '0xd1ef08bb8743fb3b34cea4631f47c81b83be0c8757ff49e7e83a9ad0ff0caebc:log:8', 'hash': '0xd1ef08bb8743fb3b34cea4631f47c81b83be0c8757ff49e7e83a9ad0ff0caebc', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xa13d8ecbbe96c9926c3d56ca1bfd9a502f65b280', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:12:29.000Z'}}, {'blockNum': '0x57ffdb', 'uniqueId': '0xc5564a3ef8d581326adf8fa8da1c40e30ef1189964cb8acaa3b01c2c37ede76f:log:32', 'hash': '0xc5564a3ef8d581326adf8fa8da1c40e30ef1189964cb8acaa3b01c2c37ede76f', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 123000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e67e11f6e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:12:50.000Z'}}, {'blockNum': '0x57ffe1', 'uniqueId': '0xc68be16df9536b6c23f387aa9a1ac7350fe7432524973a5b8561d33a3e686ea4:log:8', 'hash': '0xc68be16df9536b6c23f387aa9a1ac7350fe7432524973a5b8561d33a3e686ea4', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 40001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x08787563dd9e70640000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:13:55.000Z'}}, {'blockNum': '0x57ffe4', 'uniqueId': '0x3fa2dfc4bdc7f04cbd31a54236e5bd1c5baaeabb419dd0c0090b6bcf08e01d9f:log:9', 'hash': '0x3fa2dfc4bdc7f04cbd31a54236e5bd1c5baaeabb419dd0c0090b6bcf08e01d9f', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 33980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07320f3ace3e7d700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:15:08.000Z'}}, {'blockNum': '0x57ffef', 'uniqueId': '0xb67c9345abc841ec5fd0efb7a8ed4e43fbd10d14716ff3e465e305426257c57a:log:5', 'hash': '0xb67c9345abc841ec5fd0efb7a8ed4e43fbd10d14716ff3e465e305426257c57a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x5900f05c6d3083a7784a3df43333c28fc5281fd4', 'value': 52255.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b10cc4aba603ef60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:16:53.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x7e419558fb39ae477363a8c884c67fffe41a05194ace59ddae809a6391418da9:log:10', 'hash': '0x7e419558fb39ae477363a8c884c67fffe41a05194ace59ddae809a6391418da9', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 123000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e67e11f6e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0xc9cb45fd4969ff9178c2163293a236efae1c09425c348b2da2b2b7c3bf0c4e82:log:12', 'hash': '0xc9cb45fd4969ff9178c2163293a236efae1c09425c348b2da2b2b7c3bf0c4e82', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9264.7793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01f63ea426720c364000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0xfd457ebd957f39b331b68c65dbbdf24cba89e9e53432a659951a6d97446c5a85:log:13', 'hash': '0xfd457ebd957f39b331b68c65dbbdf24cba89e9e53432a659951a6d97446c5a85', 'from': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 274037.1859968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3a0795eb30da22100000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0xa2a9e6bcbbc1b1579b9ecc1304c312fa281947da4137f102651c09e3c84f657f:log:14', 'hash': '0xa2a9e6bcbbc1b1579b9ecc1304c312fa281947da4137f102651c09e3c84f657f', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x08787563dd9e70640000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x744c4fa428acf4b91a54d0767a60493ca197e5e7f18266f79244b4d463d5d8a1:log:15', 'hash': '0x744c4fa428acf4b91a54d0767a60493ca197e5e7f18266f79244b4d463d5d8a1', 'from': '0xf3ffab21306a12b2a4db2fe1c401b423c9b90b24', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84971.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11fe54bfb30e50dd0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x9987a45d7240ceed3bcc2e101dbefd311ebedf2625e552ed0b0e2f457e1ef409:log:18', 'hash': '0x9987a45d7240ceed3bcc2e101dbefd311ebedf2625e552ed0b0e2f457e1ef409', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07320f3ace3e7d700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x65d0d2fbef83081292e5aa9497568a0e04cd58ebf1a6588f531e330c989864b1:log:19', 'hash': '0x65d0d2fbef83081292e5aa9497568a0e04cd58ebf1a6588f531e330c989864b1', 'from': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11755.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x027d435cf61002370000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x402fe6e514807a3b92e8027c3f0de798842475e0b09fefc975cabb5d190f6f8c:log:20', 'hash': '0x402fe6e514807a3b92e8027c3f0de798842475e0b09fefc975cabb5d190f6f8c', 'from': '0xbc4f7f9df41acecc1f55228da01a27efc797bc8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a9665a2833e2c780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff3', 'uniqueId': '0x5a88d64826eb9f851315facdd2632379fbade83a2f4fb9e5f5c8f840ea122dcc:log:21', 'hash': '0x5a88d64826eb9f851315facdd2632379fbade83a2f4fb9e5f5c8f840ea122dcc', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6389.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x015a6246b8a82a958000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:07.000Z'}}, {'blockNum': '0x57fff4', 'uniqueId': '0x3935e00c3018f1d6d2db179c9292c0bd3736d07af491f7d496cc2fb544733ddc:log:7', 'hash': '0x3935e00c3018f1d6d2db179c9292c0bd3736d07af491f7d496cc2fb544733ddc', 'from': '0xffd8bf66dabecd7780e457b24992a9792015bfb5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 87875.21398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x129bb992bbf8ec35c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:18:19.000Z'}}, {'blockNum': '0x57fff9', 'uniqueId': '0x4fa7249097b17636362e312a16de53975cd1809b2358170d4cce8c7b1c1247ec:log:5', 'hash': '0x4fa7249097b17636362e312a16de53975cd1809b2358170d4cce8c7b1c1247ec', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcb00b2ca435fab0473159e079047df39883b1543', 'value': 44489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x096bc0e6db2d01840000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:20:26.000Z'}}, {'blockNum': '0x580000', 'uniqueId': '0x70e1ce883467e2e8c3c7f173dea6acdcca6bb0c759cc2150b1a2280103c84475:log:2', 'hash': '0x70e1ce883467e2e8c3c7f173dea6acdcca6bb0c759cc2150b1a2280103c84475', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'value': 1922.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x683c35dc91a9180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:22:22.000Z'}}, {'blockNum': '0x580007', 'uniqueId': '0xbda7754751cb00e90f11ba750dafaaf781120b81c432a440bd84c18c8a843f76:log:10', 'hash': '0xbda7754751cb00e90f11ba750dafaaf781120b81c432a440bd84c18c8a843f76', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcb00b2ca435fab0473159e079047df39883b1543', 'value': 43525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x09377eb6deaaacf40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:24:56.000Z'}}, {'blockNum': '0x58000a', 'uniqueId': '0x9133daeda2519d5cdff3330481900a21d8daa0bdeea361a8c567276ab46169ea:log:132', 'hash': '0x9133daeda2519d5cdff3330481900a21d8daa0bdeea361a8c567276ab46169ea', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:25:57.000Z'}}, {'blockNum': '0x58000b', 'uniqueId': '0x58c73a41f617961471d65ff7286d28f416bc9bdbf5b2b7040c19bf2b2ab57373:log:2', 'hash': '0x58c73a41f617961471d65ff7286d28f416bc9bdbf5b2b7040c19bf2b2ab57373', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x46da31b0699345c9dbffce9412a6bd4b2a44dea7', 'value': 95461.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1436fd37643c9b3a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:26:11.000Z'}}, {'blockNum': '0x580015', 'uniqueId': '0xedeed118ad6205612254d79ea8b99c286c1dd32e60579f0a55dfada70a0e02e0:log:4', 'hash': '0xedeed118ad6205612254d79ea8b99c286c1dd32e60579f0a55dfada70a0e02e0', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'value': 15407.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03434391177275360000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:28:25.000Z'}}, {'blockNum': '0x580015', 'uniqueId': '0xa89fc624ab4af29fb48be6f1fd97f29b544f6106070e55a87e187904272c2b0f:log:19', 'hash': '0xa89fc624ab4af29fb48be6f1fd97f29b544f6106070e55a87e187904272c2b0f', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:28:25.000Z'}}, {'blockNum': '0x580015', 'uniqueId': '0x1612be797ad5ddd31aaba0f32b08a1f1f00241739a5736eb1ea81a3c4b68aa4a:log:23', 'hash': '0x1612be797ad5ddd31aaba0f32b08a1f1f00241739a5736eb1ea81a3c4b68aa4a', 'from': '0x5900f05c6d3083a7784a3df43333c28fc5281fd4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52255.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b10cc4aba603ef60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:28:25.000Z'}}, {'blockNum': '0x580015', 'uniqueId': '0x91b3fed07693209b785fd0401754357f9e1519ad3e3be66ef70bac32172fa65b:log:25', 'hash': '0x91b3fed07693209b785fd0401754357f9e1519ad3e3be66ef70bac32172fa65b', 'from': '0x915b58a290d365f9e709ffd6190e5c11622dd7d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x137cd90e6ec250700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:28:25.000Z'}}, {'blockNum': '0x580017', 'uniqueId': '0x951e77c62c494c47e9972db1ea8e75028d886ac097c2931579e38d4efdf3960b:log:20', 'hash': '0x951e77c62c494c47e9972db1ea8e75028d886ac097c2931579e38d4efdf3960b', 'from': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17330.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03ab7fc6f4041e4e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:29:08.000Z'}}, {'blockNum': '0x58001a', 'uniqueId': '0x2afc9ae5e0fa88974321dafce30d012b38a571d7d01dce142de35acfd5120363:log:5', 'hash': '0x2afc9ae5e0fa88974321dafce30d012b38a571d7d01dce142de35acfd5120363', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 33980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07320f3ace3e7d700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:30:03.000Z'}}, {'blockNum': '0x580022', 'uniqueId': '0xb28a7ee13010aba6d63f72e8ba802b592e74d25c01a4ee1f92e231066cc0ef11:log:8', 'hash': '0xb28a7ee13010aba6d63f72e8ba802b592e74d25c01a4ee1f92e231066cc0ef11', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x9b035da833d64e39ca0c3f41b6d320bc460d49c6', 'value': 34910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0764799286e496b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:32:46.000Z'}}, {'blockNum': '0x580026', 'uniqueId': '0xd065b91bfdbbac1bcbf489e94b47db650622f16552e39cdef0277c0e3a08b597:log:25', 'hash': '0xd065b91bfdbbac1bcbf489e94b47db650622f16552e39cdef0277c0e3a08b597', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x840859b4d523d51b29b17e7ecbc9412ac1df775e', 'value': 25360, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x055ec4b2e4f622400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:34:11.000Z'}}, {'blockNum': '0x58002e', 'uniqueId': '0x2c5db81021515310ff5903477209cd61e5edfcf1c4d19512b865176acdbcfe9c:log:5', 'hash': '0x2c5db81021515310ff5903477209cd61e5edfcf1c4d19512b865176acdbcfe9c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f129e74a2c6a020ddb5bbdb98560f5b87fcc3f7', 'value': 14583.71299561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x031695aca5af2df28400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:35:51.000Z'}}, {'blockNum': '0x580032', 'uniqueId': '0x47f608d44d6a51331e7e73043088c014f44e1bfa7a2cb7b2e7093b3eb25274b2:log:9', 'hash': '0x47f608d44d6a51331e7e73043088c014f44e1bfa7a2cb7b2e7093b3eb25274b2', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 58755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c711d6c32ab1c2c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:37:09.000Z'}}, {'blockNum': '0x580037', 'uniqueId': '0x90bb5f8e293f71199e73743ad5f34b560ca5ca30a40aa5041c3e1ccfcce87b25:log:5', 'hash': '0x90bb5f8e293f71199e73743ad5f34b560ca5ca30a40aa5041c3e1ccfcce87b25', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 29999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a3fc1a67c6f5c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:38:25.000Z'}}, {'blockNum': '0x580037', 'uniqueId': '0xcc22222d6984999423fc76fbc4aff401e288ddf4e30cd9c5759b568656ad4384:log:8', 'hash': '0xcc22222d6984999423fc76fbc4aff401e288ddf4e30cd9c5759b568656ad4384', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07320f3ace3e7d700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:38:25.000Z'}}, {'blockNum': '0x580053', 'uniqueId': '0xebc7e5c93213b5cd0b391e1bbfd4cae68d38f57ae4895e467825e8af8c8f7a4d:log:10', 'hash': '0xebc7e5c93213b5cd0b391e1bbfd4cae68d38f57ae4895e467825e8af8c8f7a4d', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 72523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f5b7ace20ad964c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:46:12.000Z'}}, {'blockNum': '0x58005b', 'uniqueId': '0xdc6e333b59fc3678049f06030dca6f77e9056a78b6bf3855f463263d589fb3d9:log:0', 'hash': '0xdc6e333b59fc3678049f06030dca6f77e9056a78b6bf3855f463263d589fb3d9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 87000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x126c478a0e3ea8600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:47:28.000Z'}}, {'blockNum': '0x580060', 'uniqueId': '0x434252cc487e9c0b9fcaaec512b7a6143fea0fb6983c8b61194f53c82792b851:log:8', 'hash': '0x434252cc487e9c0b9fcaaec512b7a6143fea0fb6983c8b61194f53c82792b851', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a3fc1a67c6f5c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:48:06.000Z'}}, {'blockNum': '0x580060', 'uniqueId': '0x03da8b1fa91cb4fb51165996603a1169625e10425ce9113c435bf5a9ad1ce417:log:10', 'hash': '0x03da8b1fa91cb4fb51165996603a1169625e10425ce9113c435bf5a9ad1ce417', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 131278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1bcc983a5358b2780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:48:06.000Z'}}, {'blockNum': '0x580060', 'uniqueId': '0xe8552c90cb4dd5d042e04e32f7fd32db61b2d02590263d400eca6ba5c30304d9:log:11', 'hash': '0xe8552c90cb4dd5d042e04e32f7fd32db61b2d02590263d400eca6ba5c30304d9', 'from': '0x3f129e74a2c6a020ddb5bbdb98560f5b87fcc3f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14583.71299561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x031695aca5af2df28400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:48:06.000Z'}}, {'blockNum': '0x580064', 'uniqueId': '0xaa83ef74bc63e22b15109322fc455f2e2cbdf77d2e96703daf6a48404540304d:log:0', 'hash': '0xaa83ef74bc63e22b15109322fc455f2e2cbdf77d2e96703daf6a48404540304d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9b42b9baace30b148b86ccb9ff97db875ccff6c1', 'value': 16217.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x036f27061600a1760000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:49:05.000Z'}}, {'blockNum': '0x580065', 'uniqueId': '0xf63726c6ab822f5753515df570c9ea7a47e2222706d1bd9636c15536755fbccd:log:15', 'hash': '0xf63726c6ab822f5753515df570c9ea7a47e2222706d1bd9636c15536755fbccd', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x5bb59a63dffce8a77a6d1344786d8e12e2c2aede', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:49:39.000Z'}}, {'blockNum': '0x58007f', 'uniqueId': '0x51a074877b376c30282aaa6054e9892dec8ecae7a2e9120bd96b5c4d33deb6fe:log:11', 'hash': '0x51a074877b376c30282aaa6054e9892dec8ecae7a2e9120bd96b5c4d33deb6fe', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 37000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07d5c6261d992d200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:57:59.000Z'}}, {'blockNum': '0x580080', 'uniqueId': '0xbd49b9a6e726dae719cac8b0982237c9fcd7d936ee628540e1f8e4b9a7f810cd:log:9', 'hash': '0xbd49b9a6e726dae719cac8b0982237c9fcd7d936ee628540e1f8e4b9a7f810cd', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 87000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x126c478a0e3ea8600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:58:21.000Z'}}, {'blockNum': '0x580080', 'uniqueId': '0xa6a85ad11293fa03e3d2c676193e454dd6cfe2661dbc1d27de41a92a34ebc403:log:12', 'hash': '0xa6a85ad11293fa03e3d2c676193e454dd6cfe2661dbc1d27de41a92a34ebc403', 'from': '0x5bb59a63dffce8a77a6d1344786d8e12e2c2aede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:58:21.000Z'}}, {'blockNum': '0x580082', 'uniqueId': '0xf63cad2c9e1388e800212cd0d614c02f4a6ca1ad2579fdb1d6d75ccdecf9a2f7:log:0', 'hash': '0xf63cad2c9e1388e800212cd0d614c02f4a6ca1ad2579fdb1d6d75ccdecf9a2f7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 91572.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x136427b95a19fa020000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-10T23:58:40.000Z'}}, {'blockNum': '0x5800a5', 'uniqueId': '0xd4a6f974caff63dd1e8d2302cf810230dc64be58b639613c893d86f764fa2342:log:10', 'hash': '0xd4a6f974caff63dd1e8d2302cf810230dc64be58b639613c893d86f764fa2342', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07d5c6261d992d200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:08:08.000Z'}}, {'blockNum': '0x5800b9', 'uniqueId': '0x947dd1387bba09937e183ed34d67abac5b1fb124ea31e7fd1266c8d9624d9e26:log:11', 'hash': '0x947dd1387bba09937e183ed34d67abac5b1fb124ea31e7fd1266c8d9624d9e26', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 34980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x076845047c045c100000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:13:19.000Z'}}, {'blockNum': '0x5800c3', 'uniqueId': '0x5da6a621aaee94946d2d3e7124b68cd23cd584f414a37fbb7f9dcc7098207085:log:21', 'hash': '0x5da6a621aaee94946d2d3e7124b68cd23cd584f414a37fbb7f9dcc7098207085', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xbbb1d6b60209a7191c917720bc96f5c736eb8d20', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:16:25.000Z'}}, {'blockNum': '0x5800cb', 'uniqueId': '0x1d97e99c89b9bc2021bb48a0a4f36a3f4354dd7cbd0c666a054fcbc59a534a5c:log:5', 'hash': '0x1d97e99c89b9bc2021bb48a0a4f36a3f4354dd7cbd0c666a054fcbc59a534a5c', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x076845047c045c100000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:18:07.000Z'}}, {'blockNum': '0x5800ea', 'uniqueId': '0xacfe03b701b2114ef5b64a04a28642e9913c6baa9ac03c307186ca7a2cd44988:log:21', 'hash': '0xacfe03b701b2114ef5b64a04a28642e9913c6baa9ac03c307186ca7a2cd44988', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 59975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb34052e2d4d4bc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:26:52.000Z'}}, {'blockNum': '0x5800ec', 'uniqueId': '0x01a6038cd3318cbca874729afbe253955e0867bfeda0c83bd62ea4522d464534:log:20', 'hash': '0x01a6038cd3318cbca874729afbe253955e0867bfeda0c83bd62ea4522d464534', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xf947f8e56885af63dc21d8ba679869220ee0275b', 'value': 67845.54298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e5dea0c9737ad184000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:27:35.000Z'}}, {'blockNum': '0x580102', 'uniqueId': '0x86086a7475508dedae0ba43fb453836c87f765fdffc48a67944cf20cc124ae03:log:10', 'hash': '0x86086a7475508dedae0ba43fb453836c87f765fdffc48a67944cf20cc124ae03', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'value': 35658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x078d06285bd1aee80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:32:24.000Z'}}, {'blockNum': '0x58010a', 'uniqueId': '0xdb914592a46995cd09a1b43ca4011dce6dddcf663d58e04df5d8331161835a16:log:9', 'hash': '0xdb914592a46995cd09a1b43ca4011dce6dddcf663d58e04df5d8331161835a16', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 58402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c5dfa9044f14b480000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:34:07.000Z'}}, {'blockNum': '0x580118', 'uniqueId': '0x5420bcc0c66d60530d1b17a4a772843d095686adefae7bd3d02092925d031d56:log:32', 'hash': '0x5420bcc0c66d60530d1b17a4a772843d095686adefae7bd3d02092925d031d56', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 118377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19113ae327c620040000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:38:31.000Z'}}, {'blockNum': '0x580131', 'uniqueId': '0x2944f6f090c365fcdbe707ab15c6896bf1755ae8661d4db6f3418651c66dd430:log:4', 'hash': '0x2944f6f090c365fcdbe707ab15c6896bf1755ae8661d4db6f3418651c66dd430', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 86489.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x12509c50fe75b9000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:43:44.000Z'}}, {'blockNum': '0x58013e', 'uniqueId': '0x2977e0784c1ff4bb765521f3b07c2ebd4c3e48802dfee8b90e01ec0b67bb6aa7:log:25', 'hash': '0x2977e0784c1ff4bb765521f3b07c2ebd4c3e48802dfee8b90e01ec0b67bb6aa7', 'from': '0xec64cf65c94e0bb9de411f51e4d62678ca396892', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x078d06285bd1aee80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:48:02.000Z'}}, {'blockNum': '0x58015c', 'uniqueId': '0x7b2357a6d6fa62a8f73ca259e00a49211078a7181f84da39634957751785c5c7:log:8', 'hash': '0x7b2357a6d6fa62a8f73ca259e00a49211078a7181f84da39634957751785c5c7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 1184244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xfac5fef1d6612f500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:53:48.000Z'}}, {'blockNum': '0x58015e', 'uniqueId': '0x0302c23438c406d21fbe1677314fd4eb2fdaec72e3f1eab4fd8e49b7f28fe831:log:8', 'hash': '0x0302c23438c406d21fbe1677314fd4eb2fdaec72e3f1eab4fd8e49b7f28fe831', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdfb62a8310bdf681113fdde65200e79a15137fac', 'value': 926.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x323a2fce089ead0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T00:54:04.000Z'}}, {'blockNum': '0x580182', 'uniqueId': '0x3b5954a55f5c116783707c3d2e3ccdff64bbf4adc5d66a3651a785353ab39864:log:0', 'hash': '0x3b5954a55f5c116783707c3d2e3ccdff64bbf4adc5d66a3651a785353ab39864', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xdfb62a8310bdf681113fdde65200e79a15137fac', 'value': 743.04692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2847d8f4e8a0188000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:01:50.000Z'}}, {'blockNum': '0x5801ab', 'uniqueId': '0xd3c91a3c904e7a2ba60bebebe053692c2728b36903cb81757eee5f8183da2719:log:43', 'hash': '0xd3c91a3c904e7a2ba60bebebe053692c2728b36903cb81757eee5f8183da2719', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x4026e1cb35479e007e97e9140015cc4842a71b59', 'value': 79990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x10f0443f2ad108180000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:14:22.000Z'}}, {'blockNum': '0x5801af', 'uniqueId': '0x9da5fd1c4930f23b0c2694ca8ad19c91208d0e8273f191176cba8fabc8e03e4b:log:23', 'hash': '0x9da5fd1c4930f23b0c2694ca8ad19c91208d0e8273f191176cba8fabc8e03e4b', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'value': 92000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x137b547a731c01800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:15:11.000Z'}}, {'blockNum': '0x5801af', 'uniqueId': '0x80027a17ff033d5373a3e2c1381c6b61cee57a589d67d9fd43548d19bbcdab43:log:30', 'hash': '0x80027a17ff033d5373a3e2c1381c6b61cee57a589d67d9fd43548d19bbcdab43', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 59781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ca8bc086eaffaf40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:15:11.000Z'}}, {'blockNum': '0x5801ba', 'uniqueId': '0x86e8e8480bbf818f69259ab1a50691f4b84bbcf027a692295381a15a5166fadc:log:225', 'hash': '0x86e8e8480bbf818f69259ab1a50691f4b84bbcf027a692295381a15a5166fadc', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ca8bc086eaffaf40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:18:39.000Z'}}, {'blockNum': '0x5801bd', 'uniqueId': '0x8803805105a2048dd2f7409c78e827f78c3679371739a739e7a6b342ac5e473f:log:19', 'hash': '0x8803805105a2048dd2f7409c78e827f78c3679371739a739e7a6b342ac5e473f', 'from': '0xb079a72c627d0a34b880aee0504b901cbce64568', 'to': '0x064469b71356f407037e011d71a15d4a308088e3', 'value': 23485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x04f91fd8bf2320d40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:19:39.000Z'}}, {'blockNum': '0x5801c1', 'uniqueId': '0xfba0b99c499fc258582bc638d0dc84637079ad9f787f9dc3f0e2ce639a2395ea:log:22', 'hash': '0xfba0b99c499fc258582bc638d0dc84637079ad9f787f9dc3f0e2ce639a2395ea', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:21:35.000Z'}}, {'blockNum': '0x5801c1', 'uniqueId': '0xc0a7f972f9b59b287cc19d7d00285e5e1ce794628776db07f93ccccef8d077eb:log:230', 'hash': '0xc0a7f972f9b59b287cc19d7d00285e5e1ce794628776db07f93ccccef8d077eb', 'from': '0xa13d8ecbbe96c9926c3d56ca1bfd9a502f65b280', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:21:35.000Z'}}, {'blockNum': '0x5801d4', 'uniqueId': '0xce2620411390cf6e6a22c5f54c5fcf366a92bf28c25fcbfe02b8a19ecc82206e:log:70', 'hash': '0xce2620411390cf6e6a22c5f54c5fcf366a92bf28c25fcbfe02b8a19ecc82206e', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xa13d8ecbbe96c9926c3d56ca1bfd9a502f65b280', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:27:25.000Z'}}, {'blockNum': '0x5801d5', 'uniqueId': '0x8186f29c07600025e4728bc816041a323894c4ef9bce31f3928c26bb8da4c92d:log:16', 'hash': '0x8186f29c07600025e4728bc816041a323894c4ef9bce31f3928c26bb8da4c92d', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:28:10.000Z'}}, {'blockNum': '0x5801d5', 'uniqueId': '0x5b2c1079e294981b07b478400b4d3105edde39411222f003250894bbb8a25ecc:log:17', 'hash': '0x5b2c1079e294981b07b478400b4d3105edde39411222f003250894bbb8a25ecc', 'from': '0x064469b71356f407037e011d71a15d4a308088e3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x04f91fd8bf2320d40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:28:10.000Z'}}, {'blockNum': '0x5801f3', 'uniqueId': '0xca97f21b9bea72079dc35f914ee5bc2f3fee48803f0709b1bcf88c9b8700221c:log:37', 'hash': '0xca97f21b9bea72079dc35f914ee5bc2f3fee48803f0709b1bcf88c9b8700221c', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xa13d8ecbbe96c9926c3d56ca1bfd9a502f65b280', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:34:22.000Z'}}, {'blockNum': '0x580220', 'uniqueId': '0x5faf7ad911b958774e1af61d2a2058d7225cb46da17c4fd70277b89a1d455fd6:log:2', 'hash': '0x5faf7ad911b958774e1af61d2a2058d7225cb46da17c4fd70277b89a1d455fd6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9360fc04b2e436f136f66318d3d8d1322b846467', 'value': 515.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1bf3632c3bef680000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:44:49.000Z'}}, {'blockNum': '0x580225', 'uniqueId': '0x571e2dcdaa1f2a55dff7d6a4067930323d4d9a9a959d84670432ea4817ed02d7:log:23', 'hash': '0x571e2dcdaa1f2a55dff7d6a4067930323d4d9a9a959d84670432ea4817ed02d7', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0xb9461e8b0a69dceeac71813b322147f7335e4c9b', 'value': 1922.3000000000002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x6835458137d5680000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:45:39.000Z'}}, {'blockNum': '0x580230', 'uniqueId': '0x2d4d0d7d4407460ca324a184046906c336ba656541a3b3e11af55336b143af61:log:11', 'hash': '0x2d4d0d7d4407460ca324a184046906c336ba656541a3b3e11af55336b143af61', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x41b2a09ccdc580a36e008b489f73326b648d4ff2', 'value': 3772.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xcc809114f7db980000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:48:12.000Z'}}, {'blockNum': '0x580246', 'uniqueId': '0x1b4718f410db6df0e80102ad70d23ca2d78d22ba12f4c9e1b618f89bcf01e398:log:8', 'hash': '0x1b4718f410db6df0e80102ad70d23ca2d78d22ba12f4c9e1b618f89bcf01e398', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x4026e1cb35479e007e97e9140015cc4842a71b59', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:54:44.000Z'}}, {'blockNum': '0x580246', 'uniqueId': '0x079f3f5b812d7e4f28ca91431b087e9be4a6a7fca901bd021557405eb7f9f0fc:log:10', 'hash': '0x079f3f5b812d7e4f28ca91431b087e9be4a6a7fca901bd021557405eb7f9f0fc', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x17383d0ba6cbf3001496f567af359ce04491381e', 'value': 59980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb385b6745719b00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:54:44.000Z'}}, {'blockNum': '0x580257', 'uniqueId': '0xdd9126d5fbaf9baabab748b0715bd47db505d51668a83f3c10c29fa64c9adb30:log:29', 'hash': '0xdd9126d5fbaf9baabab748b0715bd47db505d51668a83f3c10c29fa64c9adb30', 'from': '0x17383d0ba6cbf3001496f567af359ce04491381e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb385b6745719b00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T01:58:41.000Z'}}, {'blockNum': '0x580277', 'uniqueId': '0xccbf66ff54f919d9f9af433cd3f962563135618dc58542858b75ca81738c5876:log:23', 'hash': '0xccbf66ff54f919d9f9af433cd3f962563135618dc58542858b75ca81738c5876', 'from': '0x41b2a09ccdc580a36e008b489f73326b648d4ff2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3772.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xcc809114f7db980000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:08:29.000Z'}}, {'blockNum': '0x580281', 'uniqueId': '0x0df132c688be672b8715a0feb979ee974386551d128124b3cdd0d2f857b15bdc:log:6', 'hash': '0x0df132c688be672b8715a0feb979ee974386551d128124b3cdd0d2f857b15bdc', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf3ffab21306a12b2a4db2fe1c401b423c9b90b24', 'value': 59832.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cab8820754c851c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:10:48.000Z'}}, {'blockNum': '0x580285', 'uniqueId': '0x6067cb70b75bea0bf62452a89f0f270381b68920a076ff632d83f98a4d928e13:log:38', 'hash': '0x6067cb70b75bea0bf62452a89f0f270381b68920a076ff632d83f98a4d928e13', 'from': '0xb89ede251eb3ade0484ca4f95827ef47166058ed', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 116877.1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x18bfebeaafcfaee24000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:11:26.000Z'}}, {'blockNum': '0x580285', 'uniqueId': '0x2754dc2fe3188e607735833f28c6f724888f6af2598447bffea55a392d185965:log:72', 'hash': '0x2754dc2fe3188e607735833f28c6f724888f6af2598447bffea55a392d185965', 'from': '0x65e3a1759a943aeee894bc779e31d90121a87243', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 30100.874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065fc58acdbc07810000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:11:26.000Z'}}, {'blockNum': '0x5802bd', 'uniqueId': '0x5373dffd9a5c5e7ad44cfcc3b3c5470c16133f18ad36990cbfb6fe7a98026fbe:log:13', 'hash': '0x5373dffd9a5c5e7ad44cfcc3b3c5470c16133f18ad36990cbfb6fe7a98026fbe', 'from': '0xf8467ff91650dc326c0dfc82195005fde128a132', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03860e639d8063ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:28:02.000Z'}}, {'blockNum': '0x5802c0', 'uniqueId': '0x07af4fcf61f5f48a161ca260a2fb64429cebb8f7e7330a7722ae4f0c2472b483:log:13', 'hash': '0x07af4fcf61f5f48a161ca260a2fb64429cebb8f7e7330a7722ae4f0c2472b483', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xdee8796b2532924991540253cd8582efd1f889e6', 'value': 29998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x065a31e0efc8c7f80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:28:49.000Z'}}, {'blockNum': '0x5802d7', 'uniqueId': '0xe1cc898aa5d269848d5cc8d817c6bd9703e97b8e8db411117221456911334cde:log:10', 'hash': '0xe1cc898aa5d269848d5cc8d817c6bd9703e97b8e8db411117221456911334cde', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xdee8796b2532924991540253cd8582efd1f889e6', 'value': 49998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a9665a2833e2c780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:35:48.000Z'}}, {'blockNum': '0x5802d7', 'uniqueId': '0xc3817690aadac7c02d235e83704d1c5060e35c6df0f942d95d2c9b7f203268eb:log:79', 'hash': '0xc3817690aadac7c02d235e83704d1c5060e35c6df0f942d95d2c9b7f203268eb', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x648ec870fa141fb089ce0fa6fdd6502c460eb8e6', 'value': 26845.52733999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05af4c8832056d22dc00', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:35:48.000Z'}}, {'blockNum': '0x5802e2', 'uniqueId': '0xaa7b8fb0decb4dbc15e86f5630e97914af58febcc8d6776fcd6120673446a3c4:log:81', 'hash': '0xaa7b8fb0decb4dbc15e86f5630e97914af58febcc8d6776fcd6120673446a3c4', 'from': '0xf947f8e56885af63dc21d8ba679869220ee0275b', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 67845.54298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e5dea0c9737ad184000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:37:54.000Z'}}, {'blockNum': '0x5802f3', 'uniqueId': '0x9bee628e4e9459cb9a023126e501f854b1ebc210bb8047e2a49c159665d92e05:log:6', 'hash': '0x9bee628e4e9459cb9a023126e501f854b1ebc210bb8047e2a49c159665d92e05', 'from': '0x648ec870fa141fb089ce0fa6fdd6502c460eb8e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26845.52733999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05af4c8832056d22dc00', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:40:42.000Z'}}, {'blockNum': '0x5802fe', 'uniqueId': '0x697d3b7749df73b3b0db4a5f150789f35ed79e8f0ee9a46aea9626b7b510a631:log:7', 'hash': '0x697d3b7749df73b3b0db4a5f150789f35ed79e8f0ee9a46aea9626b7b510a631', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfff90166c6cc1960332ec711845ecc3d0b07fd8a', 'value': 7614.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x019cce3e726cb9940000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:43:30.000Z'}}, {'blockNum': '0x580307', 'uniqueId': '0x6e0092e8e3defcb5829399336c6f9bca52a7cec75a4bb06c8afe2f2b94702fe1:log:3', 'hash': '0x6e0092e8e3defcb5829399336c6f9bca52a7cec75a4bb06c8afe2f2b94702fe1', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xdee8796b2532924991540253cd8582efd1f889e6', 'value': 55630.34586206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0bc7ba22b356d00db800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:45:55.000Z'}}, {'blockNum': '0x580309', 'uniqueId': '0x5934196e3095d1112129b27eda39353e0378e9b375784b60d358fd642291ac09:log:56', 'hash': '0x5934196e3095d1112129b27eda39353e0378e9b375784b60d358fd642291ac09', 'from': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 119998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x19691ac807590c380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:46:03.000Z'}}, {'blockNum': '0x580309', 'uniqueId': '0x79d7b7205bee89bc0fd1e2a9ba6a9d30b117c3d6e4ea9dd71f1421f55f52dbcc:log:58', 'hash': '0x79d7b7205bee89bc0fd1e2a9ba6a9d30b117c3d6e4ea9dd71f1421f55f52dbcc', 'from': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 711708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x96b5c49ae9683ef00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:46:03.000Z'}}, {'blockNum': '0x580309', 'uniqueId': '0x268a8caa2784ef54795e8fc9540997ecb9d3f46cd9ee9804ca4bbeb304bc9214:log:59', 'hash': '0x268a8caa2784ef54795e8fc9540997ecb9d3f46cd9ee9804ca4bbeb304bc9214', 'from': '0x7ba7d64f8d1e2bb356870b3680e17a7c96f3f9cc', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 388117.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x522fe44f3b5abee60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:46:03.000Z'}}, {'blockNum': '0x580310', 'uniqueId': '0xce8690501bd9b4f7da6a70536ef32fe8dd6dd788eab1c029b0a2e8c2cabf3706:log:35', 'hash': '0xce8690501bd9b4f7da6a70536ef32fe8dd6dd788eab1c029b0a2e8c2cabf3706', 'from': '0xdee8796b2532924991540253cd8582efd1f889e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 135626.34586206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1cb851a6265dc47db800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:48:10.000Z'}}, {'blockNum': '0x580322', 'uniqueId': '0xbbd8f43e14ff1e3210dabd289b1746f50264ef9eb1e3bdf7020bdb48f3842a0f:log:27', 'hash': '0xbbd8f43e14ff1e3210dabd289b1746f50264ef9eb1e3bdf7020bdb48f3842a0f', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x020af60c9a8f93a6954f1242c52351fd2cef4490', 'value': 81545.789312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x11449b292327cd780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T02:54:18.000Z'}}, {'blockNum': '0x580342', 'uniqueId': '0xe037705d2a891fa15883169e8dc2546723fbf3c635d89fd78bae680ce7f9d017:log:110', 'hash': '0xe037705d2a891fa15883169e8dc2546723fbf3c635d89fd78bae680ce7f9d017', 'from': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'to': '0xdab5be688241b3d7cb774b9f4632883523bd4706', 'value': 158.46932576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x089734242c18758000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:02:43.000Z'}}, {'blockNum': '0x580345', 'uniqueId': '0x198e043496a0bc98f439b79aa37bfff67ab0a30b30f64186dc610563e7f36c51:log:60', 'hash': '0x198e043496a0bc98f439b79aa37bfff67ab0a30b30f64186dc610563e7f36c51', 'from': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'to': '0x4073aa51806a8e5366e0f082cc2a4509019b7c1c', 'value': 1795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x614ea10daeb22c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:03:54.000Z'}}, {'blockNum': '0x58034d', 'uniqueId': '0x3e0739d0745fb62368a20890b6967ebc149be3c27f618f327c2d644c5a242521:log:111', 'hash': '0x3e0739d0745fb62368a20890b6967ebc149be3c27f618f327c2d644c5a242521', 'from': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'to': '0xd4abaf31b5b4488d58e4e845b1346546e494207b', 'value': 128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06f05b59d3b2000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:05:58.000Z'}}, {'blockNum': '0x58035a', 'uniqueId': '0x06de2b42ae3cfc8294e7c97eba9d923c46a777053a189aaf1ec8397121ee58df:log:11', 'hash': '0x06de2b42ae3cfc8294e7c97eba9d923c46a777053a189aaf1ec8397121ee58df', 'from': '0xf3ffab21306a12b2a4db2fe1c401b423c9b90b24', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59832.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cab8820754c851c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:09:35.000Z'}}, {'blockNum': '0x58035e', 'uniqueId': '0xfeffe49e8134d58c4dec6f5b9a6b96f44552410d5e2f904e198ce8737656d623:log:2', 'hash': '0xfeffe49e8134d58c4dec6f5b9a6b96f44552410d5e2f904e198ce8737656d623', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 109942.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x17480012e723ed540000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:10:14.000Z'}}, {'blockNum': '0x580383', 'uniqueId': '0xd5517826019fe1ba6d1dcb45eb470268c55830ad12c9b4c66ddf774b034f5bab:log:4', 'hash': '0xd5517826019fe1ba6d1dcb45eb470268c55830ad12c9b4c66ddf774b034f5bab', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe0217e40fcbbda85037a34f4c2af8871fd8f86a0', 'value': 27732.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05df63235e634e0c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:19:55.000Z'}}, {'blockNum': '0x580386', 'uniqueId': '0x211bacba798e1b4fe85f006ccc997b4665eafe91575f17386f90a9bfc076239d:log:262', 'hash': '0x211bacba798e1b4fe85f006ccc997b4665eafe91575f17386f90a9bfc076239d', 'from': '0x4c8f4e9b5af447d8d8ba3f1cf2bedf3a22deba93', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 99927.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152914a4236a0eae0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:20:32.000Z'}}, {'blockNum': '0x5803b8', 'uniqueId': '0x379d40a0c4e1130218c61ca5ef1eedda89783dc5863f5ef3c61454734e92a9d7:log:10', 'hash': '0x379d40a0c4e1130218c61ca5ef1eedda89783dc5863f5ef3c61454734e92a9d7', 'from': '0xa30d8157911ef23c46c0eb71889efe6a648a41f7', 'to': '0x70bdb3e8a59d81ae83053497b6dab0031462e615', 'value': 178216.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x25bd244c22eea89d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:32:40.000Z'}}, {'blockNum': '0x5803c0', 'uniqueId': '0x02415cf76891fbd098398f6b5bead59d11fd5f8407407108c930a3e3bbff043e:log:4', 'hash': '0x02415cf76891fbd098398f6b5bead59d11fd5f8407407108c930a3e3bbff043e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x44a48938a8be140ab1b8bd991d6639fd40b64fe8', 'value': 34880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0762d93d1dd6f9000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:34:10.000Z'}}, {'blockNum': '0x5803ce', 'uniqueId': '0x403537560bf2a583cd65a2110899c07b4c1cef1d4e865d044c07eeb0ea925bee:log:30', 'hash': '0x403537560bf2a583cd65a2110899c07b4c1cef1d4e865d044c07eeb0ea925bee', 'from': '0x70bdb3e8a59d81ae83053497b6dab0031462e615', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 178216.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x25bd244c22eea89d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:38:32.000Z'}}, {'blockNum': '0x5803fc', 'uniqueId': '0x7e2196d23f64ebbf8034d9d2c95e0cdf5875a7e02a445ad467208e9849bd7399:log:15', 'hash': '0x7e2196d23f64ebbf8034d9d2c95e0cdf5875a7e02a445ad467208e9849bd7399', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xde916a9e6ba912488c9dc624eefe89f8a0e7223a', 'value': 14773.192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0320db394c4632940000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:49:35.000Z'}}, {'blockNum': '0x5803fe', 'uniqueId': '0xb3a02d00e23f9ade4155b3cfb5db6d82d0be0edc4625aad31cb56900e59025bb:log:17', 'hash': '0xb3a02d00e23f9ade4155b3cfb5db6d82d0be0edc4625aad31cb56900e59025bb', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xa5dad1480ca0ba36bef4455481d8dff090524070', 'value': 598.965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x20784f260c23d88000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T03:50:13.000Z'}}, {'blockNum': '0x580454', 'uniqueId': '0x56cf8b0eeb4f66042cc404758b80b4bbe8cde3d7e56c587f40123fc567fc6534:log:29', 'hash': '0x56cf8b0eeb4f66042cc404758b80b4bbe8cde3d7e56c587f40123fc567fc6534', 'from': '0xe0217e40fcbbda85037a34f4c2af8871fd8f86a0', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 27732.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x05df63235e634e0bffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:12:07.000Z'}}, {'blockNum': '0x580454', 'uniqueId': '0x57e4b3363675f0216f4f66c7dce87f4b0383c6c1b50bd368849c2833960abefc:log:31', 'hash': '0x57e4b3363675f0216f4f66c7dce87f4b0383c6c1b50bd368849c2833960abefc', 'from': '0x9b035da833d64e39ca0c3f41b6d320bc460d49c6', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 34910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0764799286e496b7ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:12:07.000Z'}}, {'blockNum': '0x580454', 'uniqueId': '0xd514676764dd2d652606b2e86b4eabd2f4ed4d7c06f4a0cddbb69e2d162b3efd:log:35', 'hash': '0xd514676764dd2d652606b2e86b4eabd2f4ed4d7c06f4a0cddbb69e2d162b3efd', 'from': '0x6e908d362390e74c585597f10e2e55f81bd96d90', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 8708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01d80fc6b709e5900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:12:07.000Z'}}, {'blockNum': '0x580468', 'uniqueId': '0xcce7a88b3d4aa1cbd29a1a172cf9838a8327b220929f1eed41bf30f20ea87f66:log:1', 'hash': '0xcce7a88b3d4aa1cbd29a1a172cf9838a8327b220929f1eed41bf30f20ea87f66', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 109942.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x17480012e723ed540000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:20:02.000Z'}}, {'blockNum': '0x5804a1', 'uniqueId': '0x8cded40a3f13e9e399f8691e44607a11ff68ce246c5b06a9b4e6e64275ac7d54:log:229', 'hash': '0x8cded40a3f13e9e399f8691e44607a11ff68ce246c5b06a9b4e6e64275ac7d54', 'from': '0x840859b4d523d51b29b17e7ecbc9412ac1df775e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 25360, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x055ec4b2e4f622400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:34:38.000Z'}}, {'blockNum': '0x5804a2', 'uniqueId': '0x74f19e53610349927fbb6b82ea5ee93b4c06f7086d35b3653880ec080bd33caa:log:36', 'hash': '0x74f19e53610349927fbb6b82ea5ee93b4c06f7086d35b3653880ec080bd33caa', 'from': '0xe5a138db8746c9b7689d27664fbff8382d7e2412', 'to': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:35:27.000Z'}}, {'blockNum': '0x5804ab', 'uniqueId': '0xd53d7d052de51adc8dee9ed7a8915c8d69785bf2591873d148ae4d43ea69f4d3:log:1', 'hash': '0xd53d7d052de51adc8dee9ed7a8915c8d69785bf2591873d148ae4d43ea69f4d3', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x41c9a61cd12951ec8876e4f4b7660fe12a3ced46', 'value': 39334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x08544ce7d7894ed80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:37:57.000Z'}}, {'blockNum': '0x5804ae', 'uniqueId': '0xdc46ea23b1493f7ef9690ffd68dbbafd72a7ad1432f5117b44eb4efa7684a34e:log:3', 'hash': '0xdc46ea23b1493f7ef9690ffd68dbbafd72a7ad1432f5117b44eb4efa7684a34e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x69290f32bde900cda1f883060296ecfd8e3e1569', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:38:17.000Z'}}, {'blockNum': '0x5804ec', 'uniqueId': '0x6a509d060db83cec235e21f32a688269651597acf1708a45a193e1c9432fd319:log:2', 'hash': '0x6a509d060db83cec235e21f32a688269651597acf1708a45a193e1c9432fd319', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x247a350c958d3c0ebf38e866700c214ad35fe4c3', 'value': 48088.99058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a2ee8cea21e45fb4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:53:51.000Z'}}, {'blockNum': '0x5804fb', 'uniqueId': '0xfeedcae9c3b3d667f7a4535cd654b690227b567c160ba49ede61c55a102b786a:log:27', 'hash': '0xfeedcae9c3b3d667f7a4535cd654b690227b567c160ba49ede61c55a102b786a', 'from': '0x247a350c958d3c0ebf38e866700c214ad35fe4c3', 'to': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'value': 48088.99058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a2ee8cea21e45fb4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:56:50.000Z'}}, {'blockNum': '0x580503', 'uniqueId': '0x83c7671b0549dcbbc8586884e58df58dc25ed33bf77349a0d4b4ae425b009b59:log:5', 'hash': '0x83c7671b0549dcbbc8586884e58df58dc25ed33bf77349a0d4b4ae425b009b59', 'from': '0x61e3a1265c0e1775eef3385b08967b150c314876', 'to': '0xa3cf27f61d11de0228c6e83c34de3b72d6faa257', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x084231b97924ea600000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T04:58:20.000Z'}}, {'blockNum': '0x58051a', 'uniqueId': '0x952704ebd92549bdbabda047331e070bfa27d980e130cdd248f5d5e03b4dd779:log:31', 'hash': '0x952704ebd92549bdbabda047331e070bfa27d980e130cdd248f5d5e03b4dd779', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb3f6dd322311c6f751f0c7563853d9a1daef7ac0', 'value': 621.773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x21b4d5713498f48000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:03:46.000Z'}}, {'blockNum': '0x58051b', 'uniqueId': '0x2c3cb092aab2f18165daf6e0bf663b9f92e89833bfac3ba97dec55621a317640:log:36', 'hash': '0x2c3cb092aab2f18165daf6e0bf663b9f92e89833bfac3ba97dec55621a317640', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x17383d0ba6cbf3001496f567af359ce04491381e', 'value': 77000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x104e2da94483f6200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:03:58.000Z'}}, {'blockNum': '0x58051d', 'uniqueId': '0x20cfdedbf0f12b9b1209ad0380f393dca30837c77b05b766d96f0e697d0d3adc:log:258', 'hash': '0x20cfdedbf0f12b9b1209ad0380f393dca30837c77b05b766d96f0e697d0d3adc', 'from': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'to': '0xe5a138db8746c9b7689d27664fbff8382d7e2412', 'value': 266821.23298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3880687433d481b93ffc', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:04:10.000Z'}}, {'blockNum': '0x58053b', 'uniqueId': '0xd43be760143c736e2f2674641cc650fb6de5b2a8d467e7bf1caf0d1a5b86ecc7:log:14', 'hash': '0xd43be760143c736e2f2674641cc650fb6de5b2a8d467e7bf1caf0d1a5b86ecc7', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb3f6dd322311c6f751f0c7563853d9a1daef7ac0', 'value': 877.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2f93258646a2d00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:12:35.000Z'}}, {'blockNum': '0x580559', 'uniqueId': '0xca35ce4c105e836db68ec2ed25bded4e5d9cd4b5a24b17ac8731e527a1c20d96:log:5', 'hash': '0xca35ce4c105e836db68ec2ed25bded4e5d9cd4b5a24b17ac8731e527a1c20d96', 'from': '0x17383d0ba6cbf3001496f567af359ce04491381e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x104e2da94483f6200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:18:28.000Z'}}, {'blockNum': '0x580567', 'uniqueId': '0x50f052a09cfc92672220244ad3de31c48597f7b7daa2e17b8a8d5c60ab4d8ff6:log:38', 'hash': '0x50f052a09cfc92672220244ad3de31c48597f7b7daa2e17b8a8d5c60ab4d8ff6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x96a405fe5e6efae0e5e828a9c3753c2ec70d5804', 'value': 100241.9354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x153a204f15c39e8a8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:22:22.000Z'}}, {'blockNum': '0x580585', 'uniqueId': '0x2cca4c9f48fe23a5a7d0dd45b5a95940232a75867f1d124611d88b879ffd0161:log:13', 'hash': '0x2cca4c9f48fe23a5a7d0dd45b5a95940232a75867f1d124611d88b879ffd0161', 'from': '0xb2b210a7e3e25561b2aa102b6a0432e6a7e050e2', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 28915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x061f7c3c05c3a3ec0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:29:07.000Z'}}, {'blockNum': '0x580585', 'uniqueId': '0x404f8f26a94fa5db6bd541272733cf49b143aca16e22ba84b3c02b9c26e7c5d3:log:19', 'hash': '0x404f8f26a94fa5db6bd541272733cf49b143aca16e22ba84b3c02b9c26e7c5d3', 'from': '0x2c174bedf6984e2d2d7ec3b0ee3e71cf3380c42d', 'to': '0x639d9ba0f11ff73a25c0a26849d4d5a7175169b6', 'value': 15630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x034f4dd2ccb5fb780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:29:07.000Z'}}, {'blockNum': '0x58058b', 'uniqueId': '0xaa6872404b79bdd67499732f3939e3770cf652822824eb0c7441ad32a4b5b192:log:2', 'hash': '0xaa6872404b79bdd67499732f3939e3770cf652822824eb0c7441ad32a4b5b192', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 109942.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x17480012e723ed540000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:30:28.000Z'}}, {'blockNum': '0x5805ac', 'uniqueId': '0xdc26c673e41425e3512a32cbe25733eb595dacc6e3c94fa15a6a430f0090f4f9:log:9', 'hash': '0xdc26c673e41425e3512a32cbe25733eb595dacc6e3c94fa15a6a430f0090f4f9', 'from': '0x96a405fe5e6efae0e5e828a9c3753c2ec70d5804', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100241.9354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x153a204f15c39e8a8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:38:09.000Z'}}, {'blockNum': '0x5805bc', 'uniqueId': '0x9df3f78a9fb3d1b1cfdce76d552351ca2ab2caa11ed335e6d579b6bc09a1239b:log:1', 'hash': '0x9df3f78a9fb3d1b1cfdce76d552351ca2ab2caa11ed335e6d579b6bc09a1239b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 109942.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x17480012e723ed540000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:42:04.000Z'}}, {'blockNum': '0x5805f3', 'uniqueId': '0x705c459a575e7d81cefd06186df13e6521085d15e12b358072310a6c183c65eb:log:16', 'hash': '0x705c459a575e7d81cefd06186df13e6521085d15e12b358072310a6c183c65eb', 'from': '0xb287a379e6caca6732e50b88d23c290aa990a892', 'to': '0xfc25f327ab209a06d5cc5e3ced4f8b29115b9abe', 'value': 10183.072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x022806832fc5b2900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-11T05:57:38.000Z'}}]}}
Number of returned transfers:  317
Answer is complete
 
symbol           CLOAK
group              BPS
date        2018-07-01
hour             19:00
exchange       binance
Name: 299, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CLOAK, Contract: 0xb4622193ca7c7580ac0ecc09c3b7bd74aef0318d
Datetime timestamps:  2018-07-01 19:00:00 2018-07-01 07:00:00 2018-07-02 07:00:00
Unix timestamps:  1530421200.0 1530507600.0
Hex Block Numbers:  0x59cb00 0x59e221
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             NXS
group              BPS
date        2018-07-04
hour             18:59
exchange       binance
Name: 300, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2018-07-04 18:59:00 2018-07-04 06:59:00 2018-07-05 06:59:00
Unix timestamps:  1530680340.0 1530766740.0
Hex Block Numbers:  0x5a0fda 0x5a268a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             QLC
group              BPS
date        2018-07-28
hour             19:00
exchange       binance
Name: 301, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: QLC, Contract: 
Datetime timestamps:  2018-07-28 19:00:00 2018-07-28 07:00:00 2018-07-29 07:00:00
Unix timestamps:  1532754000.0 1532840400.0
Hex Block Numbers:  0x5c36c7 0x5c4e5e
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            VIBE
group              BPS
date        2018-09-09
hour             19:00
exchange       binance
Name: 302, dtype: object
HERE
 Symbol: VIBE, Contract: 0xe8ff5c9c75deb346acac493c463c8950be03dfba
Datetime timestamps:  2018-09-09 19:00:00 2018-09-09 07:00:00 2018-09-10 07:00:00
Unix timestamps:  1536469200.0 1536555600.0
Hex Block Numbers:  0x601a64 0x60318d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x60280a', 'uniqueId': '0x91f305a9a9e63e32b4ea2905c3bdc90c5c52760a6956162df9b81c82ddac543d:log:2', 'hash': '0x91f305a9a9e63e32b4ea2905c3bdc90c5c52760a6956162df9b81c82ddac543d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x67d0a0b8aebe72ff1c0acb00a145c830abddf081', 'value': 21115.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x0478b0977fb2615c0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T19:17:37.000Z'}}, {'blockNum': '0x602854', 'uniqueId': '0xfc5a1e9edc4433191285618dcf79e1becf1938c5cfce18eba9ee83227dadf6ab:log:17', 'hash': '0xfc5a1e9edc4433191285618dcf79e1becf1938c5cfce18eba9ee83227dadf6ab', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd0b2cb92a60b817e32c673e00ee780cce9bda12b', 'value': 21072.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x04765bd8cf8543900000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T19:36:14.000Z'}}, {'blockNum': '0x60288a', 'uniqueId': '0x64eaff7a34eb082342356063e45e38043e2d4223ef6a911fccd73a650543d1fa:log:13', 'hash': '0x64eaff7a34eb082342356063e45e38043e2d4223ef6a911fccd73a650543d1fa', 'from': '0xd0b2cb92a60b817e32c673e00ee780cce9bda12b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21072.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x04765bd8cf8543900000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T19:49:10.000Z'}}, {'blockNum': '0x602a57', 'uniqueId': '0x3e1a2b61fbccfcceebc6050782fad8b4391eb6e6dd818cec91f83e587ec16006:log:3', 'hash': '0x3e1a2b61fbccfcceebc6050782fad8b4391eb6e6dd818cec91f83e587ec16006', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf38984db9fc8d21b682b69cd37cae8b5e2bc7b9a', 'value': 5038.659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x01112570c08a5cf38000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T21:34:39.000Z'}}, {'blockNum': '0x602b0f', 'uniqueId': '0x6d08128c437e49bcd49c6db58a1b4f6d22a66787682e0026f7783c5d6eb371ac:log:6', 'hash': '0x6d08128c437e49bcd49c6db58a1b4f6d22a66787682e0026f7783c5d6eb371ac', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd5d0a9f9b3a14d0acbfb7808cbfc1239577e3214', 'value': 144557.37699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x1e9c789aa3aec2da9c00', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T22:17:40.000Z'}}, {'blockNum': '0x602b3f', 'uniqueId': '0xa734107f5733698cec55896a90aa69c2730b38dab18496d106a61919f6d664e5:log:18', 'hash': '0xa734107f5733698cec55896a90aa69c2730b38dab18496d106a61919f6d664e5', 'from': '0xd5d0a9f9b3a14d0acbfb7808cbfc1239577e3214', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 144557.37699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x1e9c789aa3aec2da9c00', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T22:29:18.000Z'}}, {'blockNum': '0x602bdf', 'uniqueId': '0x6a6dc7aef2217dea6cbb12ffbd6559d74f764d8c9360c7903d96ae548a546758:log:29', 'hash': '0x6a6dc7aef2217dea6cbb12ffbd6559d74f764d8c9360c7903d96ae548a546758', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf0fe3961e2430c2845365cdfe191e14aac1c9331', 'value': 2895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x9cf03219a1f3dc0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T23:06:52.000Z'}}, {'blockNum': '0x602c09', 'uniqueId': '0x94807952f5b989636b19a53764326c1368fb18ac1ec155d86552e1247780149b:log:13', 'hash': '0x94807952f5b989636b19a53764326c1368fb18ac1ec155d86552e1247780149b', 'from': '0xf0fe3961e2430c2845365cdfe191e14aac1c9331', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x9cf03219a1f3dc0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-09T23:19:06.000Z'}}, {'blockNum': '0x602d95', 'uniqueId': '0x4f1a0f69abe3a9dbdbe25ec53ab12d9b51fc8163b7552ad62f86e79105010d53:log:0', 'hash': '0x4f1a0f69abe3a9dbdbe25ec53ab12d9b51fc8163b7552ad62f86e79105010d53', 'from': '0xe13f7dc5db4060df3b53a16257df25441db85de9', 'to': '0x60beb5b017cf9800bbb24b3219d9eae2c205993c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T00:52:37.000Z'}}, {'blockNum': '0x602dd6', 'uniqueId': '0xe285396e18f491357e8cb094c91994db681debd8ebbbcca9014d8d6ce8177220:log:11', 'hash': '0xe285396e18f491357e8cb094c91994db681debd8ebbbcca9014d8d6ce8177220', 'from': '0x60beb5b017cf9800bbb24b3219d9eae2c205993c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T01:09:09.000Z'}}, {'blockNum': '0x602e07', 'uniqueId': '0xa1fbff4b3f731c954ca66c8657813f6460bcacbe302e7a5522a295d8b0f26c3c:log:10', 'hash': '0xa1fbff4b3f731c954ca66c8657813f6460bcacbe302e7a5522a295d8b0f26c3c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x35af7d17c5b913dca1490b31410a1b60970e86a5', 'value': 1998.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x6c5a5dfe1d9bc40000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T01:21:49.000Z'}}, {'blockNum': '0x602e19', 'uniqueId': '0x917abafc25b26649052f2eb0b15b5dcfe8a4edd2e3c6c50ef9c03ef063ffa5b4:log:105', 'hash': '0x917abafc25b26649052f2eb0b15b5dcfe8a4edd2e3c6c50ef9c03ef063ffa5b4', 'from': '0x71dd5427e0f8d1982036ab41c5a20f054eaa2312', 'to': '0x375363af5949d5ad7fb4f63d5e2a08acfa594219', 'value': 647.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x231b4160de3ef80000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T01:25:45.000Z'}}, {'blockNum': '0x6030e8', 'uniqueId': '0x7006d8c7005d8730f44e2a478fd3f7e4f70cc2f5849f416f725262230cff4c7a:log:71', 'hash': '0x7006d8c7005d8730f44e2a478fd3f7e4f70cc2f5849f416f725262230cff4c7a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ef7dd15b8bae032ffafa6b251ea19e475d0fb8a', 'value': 45336.379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x0999b0a5d211c73f8000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T04:15:58.000Z'}}, {'blockNum': '0x60313c', 'uniqueId': '0xc0e28d284c25979cd58c98e04eaace9c71319111629cbf38d58fe615951cbf93:log:0', 'hash': '0xc0e28d284c25979cd58c98e04eaace9c71319111629cbf38d58fe615951cbf93', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36d88e0b58c9483b976477346293a9258a801aa7', 'value': 11000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x02544faa778090e00000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-09-10T04:38:12.000Z'}}]}}
Number of returned transfers:  14
Answer is complete
 
symbol             NAV
group              BPS
date        2018-09-22
hour             19:00
exchange       binance
Name: 303, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2018-09-22 19:00:00 2018-09-22 07:00:00 2018-09-23 07:00:00
Unix timestamps:  1537592400.0 1537678800.0
Hex Block Numbers:  0x614cf7 0x616491
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            DATA
group              BPS
date        2018-09-29
hour             19:00
exchange       binance
Name: 304, dtype: object
HERE
 Symbol: DATA, Contract: 0x8f693ca8d21b157107184d29d398a8d082b38b76
Datetime timestamps:  2018-09-29 19:00:00 2018-09-29 07:00:00 2018-09-30 07:00:00
Unix timestamps:  1538197200.0 1538283600.0
Hex Block Numbers:  0x61f36d 0x620b95
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             EVX
group              BPS
date        2018-10-06
hour             19:00
exchange       binance
Name: 305, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2018-10-06 19:00:00 2018-10-06 07:00:00 2018-10-07 07:00:00
Unix timestamps:  1538802000.0 1538888400.0
Hex Block Numbers:  0x629ae0 0x62b31d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x629b15', 'uniqueId': '0x976c5f7dbb9cc87cf921c4df458dac7aa5df92157396f990418dc4ee1967dfea:log:11', 'hash': '0x976c5f7dbb9cc87cf921c4df458dac7aa5df92157396f990418dc4ee1967dfea', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe9be4f99647753b386067ad98492a8697b1f429c', 'value': 1150.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xaf9eca', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T05:12:28.000Z'}}, {'blockNum': '0x629bf8', 'uniqueId': '0x0fa5575768f27c938d3f3d0b24f335019507c7450f1ea30edeade59e6e52b778:log:24', 'hash': '0x0fa5575768f27c938d3f3d0b24f335019507c7450f1ea30edeade59e6e52b778', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6425.495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03d473e6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T06:04:06.000Z'}}, {'blockNum': '0x629cd1', 'uniqueId': '0x5a24f228b08f8615c9a677933e224028c3da4d087d1549121866d675081bff27:log:18', 'hash': '0x5a24f228b08f8615c9a677933e224028c3da4d087d1549121866d675081bff27', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6109.144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a42e70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T06:53:20.000Z'}}, {'blockNum': '0x629f1c', 'uniqueId': '0x36233dcbc52513f445a5ee9c3a28ea20f49a7979ca25610cf742a9f9aa6978d6:log:57', 'hash': '0x36233dcbc52513f445a5ee9c3a28ea20f49a7979ca25610cf742a9f9aa6978d6', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5845.913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x037c03fa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T09:12:13.000Z'}}, {'blockNum': '0x629fb7', 'uniqueId': '0x79822d21cbcedd40fd34906eb26596c39f1198646bf5fefcbdc8909cc1de8b21:log:40', 'hash': '0x79822d21cbcedd40fd34906eb26596c39f1198646bf5fefcbdc8909cc1de8b21', 'from': '0x9bb5c4947008ad22ece7e8a464a9f51cc7df0d3c', 'to': '0x5d5ed6e30dd5b18206b404bc191f44780af4252b', 'value': 218.6744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x215df8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T09:48:04.000Z'}}, {'blockNum': '0x629fde', 'uniqueId': '0x73a12961e699385a5fca25b622fe8b4719e1fb4021cad3e450cf1d700e48d8e9:log:51', 'hash': '0x73a12961e699385a5fca25b622fe8b4719e1fb4021cad3e450cf1d700e48d8e9', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xec57f2df771f5fe57734cbc2ed1f3455a5546d52', 'value': 469.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x47a7c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T09:57:18.000Z'}}, {'blockNum': '0x62a01c', 'uniqueId': '0x31f82ce0a54ba3fde0e1de0113d8b7ad17935be900263f8eebca8a64d573dccb:log:0', 'hash': '0x31f82ce0a54ba3fde0e1de0113d8b7ad17935be900263f8eebca8a64d573dccb', 'from': '0xec57f2df771f5fe57734cbc2ed1f3455a5546d52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 469.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x47a7c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T10:11:18.000Z'}}, {'blockNum': '0x62a1df', 'uniqueId': '0xa7890290328ab2a170255a73aa6a2734418e6c183c769bb7b12e40f0e8dcd712:log:40', 'hash': '0xa7890290328ab2a170255a73aa6a2734418e6c183c769bb7b12e40f0e8dcd712', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5838.382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x037addcc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T11:47:44.000Z'}}, {'blockNum': '0x62a243', 'uniqueId': '0x3c7aa2dda0445dbf2ff8e63bca276e5e8514bb79dbfb32c5ef0c41d0b2958a83:log:17', 'hash': '0x3c7aa2dda0445dbf2ff8e63bca276e5e8514bb79dbfb32c5ef0c41d0b2958a83', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 317.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3076ce', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T12:15:01.000Z'}}, {'blockNum': '0x62a2c1', 'uniqueId': '0xb7c9a6a39db71b1e99b2abf282ad98b5faaee5a946c626e9cc43682112d5e3ec:log:22', 'hash': '0xb7c9a6a39db71b1e99b2abf282ad98b5faaee5a946c626e9cc43682112d5e3ec', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6124.631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a68b66', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T12:43:56.000Z'}}, {'blockNum': '0x62a35f', 'uniqueId': '0xfdc20a5364cfb573336ef86e80d6e9dd8db6911cdcf5398ed84906ef289fc82d:log:23', 'hash': '0xfdc20a5364cfb573336ef86e80d6e9dd8db6911cdcf5398ed84906ef289fc82d', 'from': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'to': '0x0bbc36836a2466d9d7334d7cd1566a443f7ccf10', 'value': 2118.0299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01432f8b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T13:18:16.000Z'}}, {'blockNum': '0x62a43f', 'uniqueId': '0x1e79e7c0aaad499155af5d48768a07ab0b731c6981c11f2c9d12df8978dffdc2:log:0', 'hash': '0x1e79e7c0aaad499155af5d48768a07ab0b731c6981c11f2c9d12df8978dffdc2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 4886.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e9a2d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T14:15:27.000Z'}}, {'blockNum': '0x62a475', 'uniqueId': '0xcc75a304474a7691dfecc5591b3ef260e84a793e399f1ee4c336a3313e2aefae:log:2', 'hash': '0xcc75a304474a7691dfecc5591b3ef260e84a793e399f1ee4c336a3313e2aefae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7bf73bece1f4edd61a047c0e614b0ca720db9d0c', 'value': 108.988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10a158', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T14:27:16.000Z'}}, {'blockNum': '0x62a487', 'uniqueId': '0xf1b865b5051d95c0c212455a9ee81da24980775dabbb0e367fcd3570a9d498c0:log:145', 'hash': '0xf1b865b5051d95c0c212455a9ee81da24980775dabbb0e367fcd3570a9d498c0', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 4886.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e9a2d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T14:31:03.000Z'}}, {'blockNum': '0x62a549', 'uniqueId': '0x940de0d3aa9b7e3da71d5d3ebcaa75d34dea061625ce2154b125b29cfc45a816:log:6', 'hash': '0x940de0d3aa9b7e3da71d5d3ebcaa75d34dea061625ce2154b125b29cfc45a816', 'from': '0xd1eb41d1ab3a82e3e94eeaccebff29d13e8a5095', 'to': '0xd8dad59e110ca2c02f77fbcb8e5ed1b52b07ceda', 'value': 4.2798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa72e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T15:15:32.000Z'}}, {'blockNum': '0x62a7ab', 'uniqueId': '0x6704013ceedbc22fc7db6cafbfd9907d977d02f5cbf83c8b2e635335be72ff21:log:8', 'hash': '0x6704013ceedbc22fc7db6cafbfd9907d977d02f5cbf83c8b2e635335be72ff21', 'from': '0x28615671d1ceaa38a5bd3a9718bab431ede4af71', 'to': '0x6ce97fd710ed2f8ceb7f1a757982d5ab8113656e', 'value': 783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7779f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T17:37:58.000Z'}}, {'blockNum': '0x62a7ee', 'uniqueId': '0x5e35aa1b8fb3d7bee4df09148d31413299ae1a35f6f41550cb24910962806bbf:log:16', 'hash': '0x5e35aa1b8fb3d7bee4df09148d31413299ae1a35f6f41550cb24910962806bbf', 'from': '0x6ce97fd710ed2f8ceb7f1a757982d5ab8113656e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7779f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T17:51:10.000Z'}}, {'blockNum': '0x62a7ee', 'uniqueId': '0x4ab63f23853a6f8e4aa57e5b41ecd28e3fef75303ab22c3322d86ab48bc61a9f:log:61', 'hash': '0x4ab63f23853a6f8e4aa57e5b41ecd28e3fef75303ab22c3322d86ab48bc61a9f', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6140.044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a8e578', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T17:51:10.000Z'}}, {'blockNum': '0x62a829', 'uniqueId': '0x3e78c9e99a80a54261b3f2ab1af31f994173f27fdc93bb18c81c9cc58d404666:log:47', 'hash': '0x3e78c9e99a80a54261b3f2ab1af31f994173f27fdc93bb18c81c9cc58d404666', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x021b3ee0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T18:03:36.000Z'}}, {'blockNum': '0x62a90b', 'uniqueId': '0x44edeaee502f8be9ed9a014c66988277b012c046afd75711bcd37c08051082bf:log:8', 'hash': '0x44edeaee502f8be9ed9a014c66988277b012c046afd75711bcd37c08051082bf', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5266.148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03238ce8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T18:58:39.000Z'}}, {'blockNum': '0x62a922', 'uniqueId': '0xdbbb0d47265cbbfd618bc4d2729137d65eab74cf4c41b54eebb8d6245a70221a:log:2', 'hash': '0xdbbb0d47265cbbfd618bc4d2729137d65eab74cf4c41b54eebb8d6245a70221a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xae6870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:04.000Z'}}, {'blockNum': '0x62a928', 'uniqueId': '0xac45488b31da8128d6b3c74b81b5bf2474e3d0e68c6ea2a148172ca3140bdfd0:log:14', 'hash': '0xac45488b31da8128d6b3c74b81b5bf2474e3d0e68c6ea2a148172ca3140bdfd0', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1167.8538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb2334a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:53.000Z'}}, {'blockNum': '0x62a928', 'uniqueId': '0x0301c9a2a63f27f3c9c342c31ee3b02372b94afa1f5999022b91241635cff49f:log:15', 'hash': '0x0301c9a2a63f27f3c9c342c31ee3b02372b94afa1f5999022b91241635cff49f', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x0e7aecd8dd1b3eef2101c0951772979a50b7cdb7', 'value': 1038.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9e802c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:53.000Z'}}, {'blockNum': '0x62a928', 'uniqueId': '0x5c6bed12e7f25b7134c0be80ce8952aa0d74136b45918be1751f5cc84c4237fc:log:16', 'hash': '0x5c6bed12e7f25b7134c0be80ce8952aa0d74136b45918be1751f5cc84c4237fc', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 5323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032c39b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:53.000Z'}}, {'blockNum': '0x62a92b', 'uniqueId': '0x77266723a7c9f7863c65513884604f305b64f2dca7680ed5b79b44e503ebce45:log:16', 'hash': '0x77266723a7c9f7863c65513884604f305b64f2dca7680ed5b79b44e503ebce45', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x022b6b80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:04:10.000Z'}}, {'blockNum': '0x62a947', 'uniqueId': '0xbb9517df742906269de5286c3c3bb3339bd3e08611e639b46a0d21866112d59c:log:54', 'hash': '0xbb9517df742906269de5286c3c3bb3339bd3e08611e639b46a0d21866112d59c', 'from': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'to': '0xab55cbc807147c2503129c6d3d830d05d6221f18', 'value': 614.3098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5dbc7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:09:48.000Z'}}, {'blockNum': '0x62a947', 'uniqueId': '0x4f749bc55d13c5bd035dc1c9e4371e4386f3dbde622be702d7faff74eb1fcb15:log:55', 'hash': '0x4f749bc55d13c5bd035dc1c9e4371e4386f3dbde622be702d7faff74eb1fcb15', 'from': '0xed8e2268111d4403d887c0739aea1413108b681e', 'to': '0x16216a0a2f03e695031c7ef6936829215c6a4576', 'value': 1.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4dbc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:09:48.000Z'}}, {'blockNum': '0x62a94b', 'uniqueId': '0x2efa4f1f916626ee83d58fe153df5dc47168f486b6e0279a193262110d9a0101:log:9', 'hash': '0x2efa4f1f916626ee83d58fe153df5dc47168f486b6e0279a193262110d9a0101', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 5290.6267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0327491b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:16.000Z'}}, {'blockNum': '0x62a94b', 'uniqueId': '0x3baf66a69619512aad320caae7c966fd4adfcdcaaff576869091399c863f721c:log:10', 'hash': '0x3baf66a69619512aad320caae7c966fd4adfcdcaaff576869091399c863f721c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 638.347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x61676e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:16.000Z'}}, {'blockNum': '0x62a94e', 'uniqueId': '0x56217f5611934a7fdbc64072769376e82d2606172e10a5357b88164a8232a3bf:log:0', 'hash': '0x56217f5611934a7fdbc64072769376e82d2606172e10a5357b88164a8232a3bf', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 70.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0ad200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:38.000Z'}}, {'blockNum': '0x62a94e', 'uniqueId': '0x51733d83f800e9d4dbe1d4ded3fb47e92c59c5708b86c3d6075c25dd1797f60c:log:1', 'hash': '0x51733d83f800e9d4dbe1d4ded3fb47e92c59c5708b86c3d6075c25dd1797f60c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 48.5768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x076988', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:38.000Z'}}, {'blockNum': '0x62a951', 'uniqueId': '0xa40b70d737ea1e4f64cac04afb563a28f4048d0ea594c0fdf97d805af1ec0a70:log:4', 'hash': '0xa40b70d737ea1e4f64cac04afb563a28f4048d0ea594c0fdf97d805af1ec0a70', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xae6870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:11:21.000Z'}}, {'blockNum': '0x62a960', 'uniqueId': '0x018a003faafe462565dc2c4131f8bf800fd5eaf6ea5d42baf35cc6c46f83c00f:log:109', 'hash': '0x018a003faafe462565dc2c4131f8bf800fd5eaf6ea5d42baf35cc6c46f83c00f', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 4947.426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02f2ead4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:15:11.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0x7046281dcd878cfd963bd154a5d1cb3dce1aac40921b5dc32c5cbef5ee12757c:log:16', 'hash': '0x7046281dcd878cfd963bd154a5d1cb3dce1aac40921b5dc32c5cbef5ee12757c', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 638.347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x61676e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0xd3e6248266112bf5384f2bfc95b761c5d528567f73bf5ba28b7df4b652053b45:log:17', 'hash': '0xd3e6248266112bf5384f2bfc95b761c5d528567f73bf5ba28b7df4b652053b45', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032c39b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0x10224198ca47003c4aa31a3add675a225d67fdf4d69965e09981a822f159ec1b:log:18', 'hash': '0x10224198ca47003c4aa31a3add675a225d67fdf4d69965e09981a822f159ec1b', 'from': '0x0e7aecd8dd1b3eef2101c0951772979a50b7cdb7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1038.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9e802c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0xe3699eb41f9c99035b09317b7b7d0b41628212e1eea66a83949d0efbd02dae43:log:19', 'hash': '0xe3699eb41f9c99035b09317b7b7d0b41628212e1eea66a83949d0efbd02dae43', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40349.5156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x180cd8f4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0x99f72f3abd69ed5040add5c9ffe299e762eb19f8722db430f05431eac8b457f9:log:20', 'hash': '0x99f72f3abd69ed5040add5c9ffe299e762eb19f8722db430f05431eac8b457f9', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1287.3426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc46ed2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a990', 'uniqueId': '0xcb10000f853ec2835d1026ff9d9b272caee69c797c2c3b9b1ed319af151ea7b5:log:54', 'hash': '0xcb10000f853ec2835d1026ff9d9b272caee69c797c2c3b9b1ed319af151ea7b5', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5232.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031e571e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:27:07.000Z'}}, {'blockNum': '0x62a9a4', 'uniqueId': '0x9dc491b6e6b4400bae9761d3e211481e1bf43740ce7aaa11bf3d845d5c106879:log:10', 'hash': '0x9dc491b6e6b4400bae9761d3e211481e1bf43740ce7aaa11bf3d845d5c106879', 'from': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198343.983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7638e3d6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:31:10.000Z'}}, {'blockNum': '0x62a9a4', 'uniqueId': '0x75007bc3e8f0cb4202b4c031d0b5bccde89e809382cf08603d7d0941f66cbe76:log:11', 'hash': '0x75007bc3e8f0cb4202b4c031d0b5bccde89e809382cf08603d7d0941f66cbe76', 'from': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5290.6267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0327491b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:31:10.000Z'}}, {'blockNum': '0x62a9aa', 'uniqueId': '0xaae1008f9ec98672a3b6815498d51d1145b21d8a64e593257b2147d88b00269b:log:11', 'hash': '0xaae1008f9ec98672a3b6815498d51d1145b21d8a64e593257b2147d88b00269b', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 296.4617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d3c89', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:31:47.000Z'}}, {'blockNum': '0x62a9c9', 'uniqueId': '0xe1e16832e30d52eb6389704ba0d154d1eb45068eada38a921a3dd60e347a7f2a:log:1', 'hash': '0xe1e16832e30d52eb6389704ba0d154d1eb45068eada38a921a3dd60e347a7f2a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 398.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3cce68', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:38:48.000Z'}}, {'blockNum': '0x62a9f9', 'uniqueId': '0x876bd2520e557ff8606abfcdad20609ea17160c475e37e84fd5efae22600d614:log:0', 'hash': '0x876bd2520e557ff8606abfcdad20609ea17160c475e37e84fd5efae22600d614', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 5555.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034fa418', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:51:03.000Z'}}, {'blockNum': '0x62a9f9', 'uniqueId': '0xe1303e265cf92c720fe9c80d956c0342939859b70dd755c08b3953ce3134d495:log:3', 'hash': '0xe1303e265cf92c720fe9c80d956c0342939859b70dd755c08b3953ce3134d495', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 398.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3cce68', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:51:03.000Z'}}, {'blockNum': '0x62aa0a', 'uniqueId': '0xb2817e00e7390f3e1c6080b2bcb98c23308a60f3e483b2e8f57767be87366b00:log:78', 'hash': '0xb2817e00e7390f3e1c6080b2bcb98c23308a60f3e483b2e8f57767be87366b00', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5298.592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03288040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:54:07.000Z'}}, {'blockNum': '0x62aa1a', 'uniqueId': '0x36705776913a3c74dadac29382073176e6ddf0a97dc97205f8154d27f21acb61:log:44', 'hash': '0x36705776913a3c74dadac29382073176e6ddf0a97dc97205f8154d27f21acb61', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5555.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034fa418', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:59:55.000Z'}}, {'blockNum': '0x62aa1b', 'uniqueId': '0xca9f7208027c92de127fb654b6a98128efd11faca0feb662bcd7c40971e08394:log:10', 'hash': '0xca9f7208027c92de127fb654b6a98128efd11faca0feb662bcd7c40971e08394', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x0169bdd17b624f7a8754b5e17f8e02de7c3fd158', 'value': 1800.3298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0112b562', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:59:58.000Z'}}, {'blockNum': '0x62aa39', 'uniqueId': '0x1763819559b4d27cb1acc09c51cd23ea5b167e0d0c3051612f8f7c9547c7c4ce:log:15', 'hash': '0x1763819559b4d27cb1acc09c51cd23ea5b167e0d0c3051612f8f7c9547c7c4ce', 'from': '0xb31791874a8ff467c5e7792847ea82109766e02b', 'to': '0xbccd4fd887a8c5bbeb4020ad8b75b25717db6aa4', 'value': 107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1053b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:06:30.000Z'}}, {'blockNum': '0x62aa54', 'uniqueId': '0xc070ff76a420494d469a5cd439d1d674dfe09d74c509cc4f230e5aa5f2e27728:log:9', 'hash': '0xc070ff76a420494d469a5cd439d1d674dfe09d74c509cc4f230e5aa5f2e27728', 'from': '0x0169bdd17b624f7a8754b5e17f8e02de7c3fd158', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800.3298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0112b562', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:11:02.000Z'}}, {'blockNum': '0x62aa55', 'uniqueId': '0xd9dbfe7cb3f05afac3569276d7458ab2b3747422c0262fef960de91e492fdca0:log:9', 'hash': '0xd9dbfe7cb3f05afac3569276d7458ab2b3747422c0262fef960de91e492fdca0', 'from': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5298.592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03288040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:11:08.000Z'}}, {'blockNum': '0x62aa57', 'uniqueId': '0x5847813510df2fd5c34f4ef6c8dc500c733de10bdf71a11b8389077229636199:log:31', 'hash': '0x5847813510df2fd5c34f4ef6c8dc500c733de10bdf71a11b8389077229636199', 'from': '0xbccd4fd887a8c5bbeb4020ad8b75b25717db6aa4', 'to': '0x8cbc98af743b77ac88db1cfa561fca73091906cc', 'value': 107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1053b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:11:41.000Z'}}, {'blockNum': '0x62aac3', 'uniqueId': '0xdd582f934a7c1823a62eb3ef54cf6420fe40e65bdd7829a9104588ee452909ec:log:48', 'hash': '0xdd582f934a7c1823a62eb3ef54cf6420fe40e65bdd7829a9104588ee452909ec', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 1662.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfda5fc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:38:27.000Z'}}, {'blockNum': '0x62aacc', 'uniqueId': '0x427bae78e43ca3d0d4205cdf28359245ab6c5a2083607f13033bf989d9855f7c:log:37', 'hash': '0x427bae78e43ca3d0d4205cdf28359245ab6c5a2083607f13033bf989d9855f7c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'value': 1278.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc31d38', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:40:16.000Z'}}, {'blockNum': '0x62ab28', 'uniqueId': '0xf0bf82d50bf3462f1479135b8162bc94d12d37aecbe18004d146692a5e192a37:log:14', 'hash': '0xf0bf82d50bf3462f1479135b8162bc94d12d37aecbe18004d146692a5e192a37', 'from': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1326.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xca6868', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T21:01:19.000Z'}}, {'blockNum': '0x62abe0', 'uniqueId': '0xdfa11bd67457a5a561f74b586614a77e3ac0bb6bc77eadecc03f826e9d3e0856:log:4', 'hash': '0xdfa11bd67457a5a561f74b586614a77e3ac0bb6bc77eadecc03f826e9d3e0856', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 5234.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031ea908', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T21:43:24.000Z'}}, {'blockNum': '0x62ac03', 'uniqueId': '0x35080303ae556c1d899405d6a28cc3101ddf45d95cf2baf6e5ed0c84c898cfd2:log:39', 'hash': '0x35080303ae556c1d899405d6a28cc3101ddf45d95cf2baf6e5ed0c84c898cfd2', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5234.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031ea908', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T21:51:30.000Z'}}, {'blockNum': '0x62ad1e', 'uniqueId': '0x3ea46d8295000c5e5060ac2118303150713e088492b504406fe1e3347201a68e:log:27', 'hash': '0x3ea46d8295000c5e5060ac2118303150713e088492b504406fe1e3347201a68e', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x023863d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T22:57:53.000Z'}}, {'blockNum': '0x62ad5c', 'uniqueId': '0x90614a7974fc5dc284135c657f6a7f1ff2239db55a2e633dee9149e2ac86fbe9:log:5', 'hash': '0x90614a7974fc5dc284135c657f6a7f1ff2239db55a2e633dee9149e2ac86fbe9', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x023863d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T23:11:17.000Z'}}, {'blockNum': '0x62ada7', 'uniqueId': '0x51fdc5bf8cdc349ba7b8943d2af307a21b171c6af9f2b9b7850b2627658e6219:log:5', 'hash': '0x51fdc5bf8cdc349ba7b8943d2af307a21b171c6af9f2b9b7850b2627658e6219', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0234e160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T23:30:46.000Z'}}, {'blockNum': '0x62adf5', 'uniqueId': '0x5545ecd589589f4d5921e4d51b3a18575e2601f43773fc2e83e6d861646a6d93:log:35', 'hash': '0x5545ecd589589f4d5921e4d51b3a18575e2601f43773fc2e83e6d861646a6d93', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0234e160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T23:51:14.000Z'}}, {'blockNum': '0x62af86', 'uniqueId': '0xc27579aa172ca5ec6f65529016f088e1089ccb3c45c9c81fab10f33ccb7c8173:log:5', 'hash': '0xc27579aa172ca5ec6f65529016f088e1089ccb3c45c9c81fab10f33ccb7c8173', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5338.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032e9340', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:30:38.000Z'}}, {'blockNum': '0x62afa7', 'uniqueId': '0x828a08cee019e558388e8a812d39a3e35328554ec1f1b54eec8e5d5963e9e0e4:log:13', 'hash': '0x828a08cee019e558388e8a812d39a3e35328554ec1f1b54eec8e5d5963e9e0e4', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5338.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032e9340', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:37:38.000Z'}}, {'blockNum': '0x62afd5', 'uniqueId': '0x32a0cbb55c82045b0f38aa71819c749b9e0fea861b24f1f7f8c647889245053f:log:4', 'hash': '0x32a0cbb55c82045b0f38aa71819c749b9e0fea861b24f1f7f8c647889245053f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5373.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0333ea70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:45:36.000Z'}}, {'blockNum': '0x62afde', 'uniqueId': '0xfdc1bc9810fbaa96e8b95a92b86b016150f494cf916e854a8d2d91264addf7fe:log:5', 'hash': '0xfdc1bc9810fbaa96e8b95a92b86b016150f494cf916e854a8d2d91264addf7fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'value': 303.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2e4b90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:47:50.000Z'}}, {'blockNum': '0x62afde', 'uniqueId': '0x49113ead55df32aa06314cc2140faa31f5651a1c6b9a8150e03cd5fd21f56379:log:6', 'hash': '0x49113ead55df32aa06314cc2140faa31f5651a1c6b9a8150e03cd5fd21f56379', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63a6f6e759e27a6a41ebf8785c31d29b42c14719', 'value': 1088.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa613a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:47:50.000Z'}}, {'blockNum': '0x62afdf', 'uniqueId': '0xd426404dacc4de79722fc65d6235e373e1328d2981b5843dc630b424f5dd83da:log:6', 'hash': '0xd426404dacc4de79722fc65d6235e373e1328d2981b5843dc630b424f5dd83da', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 1582.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf17480', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:47:54.000Z'}}, {'blockNum': '0x62afe5', 'uniqueId': '0x90e3dd3bcec5bc7f608d0a71639d6e13ccda76d0ac9b1ab6c31bb4c5a892ecd9:log:49', 'hash': '0x90e3dd3bcec5bc7f608d0a71639d6e13ccda76d0ac9b1ab6c31bb4c5a892ecd9', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x022f3c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:48:58.000Z'}}, {'blockNum': '0x62afec', 'uniqueId': '0xc0bd24a21c204aece13f3f1481168d34f57b8facebaabf2fe78f3d0fa927190f:log:21', 'hash': '0xc0bd24a21c204aece13f3f1481168d34f57b8facebaabf2fe78f3d0fa927190f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa38cde626af6d97c39a44ba2bebc589cdafb6ac8', 'value': 1271.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc21398', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:49:36.000Z'}}, {'blockNum': '0x62afee', 'uniqueId': '0xaaf4781c1f5617f0db5243831ec0ce0b2df8068b27fc66d4d0fd8b0ac27e615a:log:8', 'hash': '0xaaf4781c1f5617f0db5243831ec0ce0b2df8068b27fc66d4d0fd8b0ac27e615a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 1385.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xd36530', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:49:57.000Z'}}, {'blockNum': '0x62aff6', 'uniqueId': '0xba30795000f1ac080f1b214839f802df773438630b8bb91243705cfe0fafaa0f:log:2', 'hash': '0xba30795000f1ac080f1b214839f802df773438630b8bb91243705cfe0fafaa0f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x388118e4769b2f946e763ea5bdd1825c720f428b', 'value': 2481.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017ab538', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:52:14.000Z'}}, {'blockNum': '0x62aff6', 'uniqueId': '0xf8064d2c0573e5b44077972e58345911e1f26249fefe3083f81f4ff2876dc1ae:log:3', 'hash': '0xf8064d2c0573e5b44077972e58345911e1f26249fefe3083f81f4ff2876dc1ae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x754652c7ba43392f60875c5dddcd117d3a84d37e', 'value': 10.387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0195be', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:52:14.000Z'}}, {'blockNum': '0x62aff6', 'uniqueId': '0x190598f27cb1f535260f53d8cd622f49658826ddf2670edc841180fb11f2d15a:log:59', 'hash': '0x190598f27cb1f535260f53d8cd622f49658826ddf2670edc841180fb11f2d15a', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5373.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0333ea70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:52:14.000Z'}}, {'blockNum': '0x62affc', 'uniqueId': '0x72c513d24367f47100516e02533f82f68896db6806cc810f2b2cdef686528f29:log:37', 'hash': '0x72c513d24367f47100516e02533f82f68896db6806cc810f2b2cdef686528f29', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6148.9518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03aa416e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:53:58.000Z'}}, {'blockNum': '0x62affd', 'uniqueId': '0x8ae27eaa6a37fad1586b2ee78d3ab906ecf466dcb22d12c40ee03914dcf6452b:log:8', 'hash': '0x8ae27eaa6a37fad1586b2ee78d3ab906ecf466dcb22d12c40ee03914dcf6452b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'value': 5445.57, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033eed94', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:54:33.000Z'}}, {'blockNum': '0x62b004', 'uniqueId': '0x78f51c7ff55f9740fc1c721658b9a0cbd0c6786f50acf4cccf4b2965114eac9a:log:2', 'hash': '0x78f51c7ff55f9740fc1c721658b9a0cbd0c6786f50acf4cccf4b2965114eac9a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x381856eca3328afd5627d19d348c222edc36d52b', 'value': 1805.5901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011382dd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:55:25.000Z'}}, {'blockNum': '0x62b010', 'uniqueId': '0x74debb61541652ab8534e578462f4c0020a59dd042eeba24f4ef2242031c8487:log:0', 'hash': '0x74debb61541652ab8534e578462f4c0020a59dd042eeba24f4ef2242031c8487', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 3302.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01f7ebe8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:57:21.000Z'}}, {'blockNum': '0x62b017', 'uniqueId': '0x9e24204edda596c7160a7646aec5c5e4540ae61b37bbaa897c293953dd4d20f6:log:26', 'hash': '0x9e24204edda596c7160a7646aec5c5e4540ae61b37bbaa897c293953dd4d20f6', 'from': '0x388118e4769b2f946e763ea5bdd1825c720f428b', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2481.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017ab538', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:58:38.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0x72254e5e6cd7a90ba45139e687c9835eb395fca24d485c5011ac742108210801:log:4', 'hash': '0x72254e5e6cd7a90ba45139e687c9835eb395fca24d485c5011ac742108210801', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 527.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x507990', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0xf0551257f866ff3f9774cf8fb6d0658d2999053d98176f3fda8525133d405371:log:5', 'hash': '0xf0551257f866ff3f9774cf8fb6d0658d2999053d98176f3fda8525133d405371', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 255.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x26f890', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0xa1283fd578ed68660425b5d3b001238f922588485234027f20c2b120ee7295c0:log:6', 'hash': '0xa1283fd578ed68660425b5d3b001238f922588485234027f20c2b120ee7295c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 571.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x573050', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0x25d4f7f10ef95244bacbd2089f0ee43fddf72219143c96ff0ebaaf55e6d71d37:log:7', 'hash': '0x25d4f7f10ef95244bacbd2089f0ee43fddf72219143c96ff0ebaaf55e6d71d37', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x754652c7ba43392f60875c5dddcd117d3a84d37e', 'value': 463.933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x46ca62', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01d', 'uniqueId': '0x0b1aa4ca226e89ceeebf7f6339462b9261015e7101ed227f119979f41168a7f0:log:76', 'hash': '0x0b1aa4ca226e89ceeebf7f6339462b9261015e7101ed227f119979f41168a7f0', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 5804.0095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03759f1f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:00:13.000Z'}}, {'blockNum': '0x62b01f', 'uniqueId': '0x217a382e2cd609c183ff0f21904197af21e64ee322fb780d46a796c994ea92f7:log:29', 'hash': '0x217a382e2cd609c183ff0f21904197af21e64ee322fb780d46a796c994ea92f7', 'from': '0x63a6f6e759e27a6a41ebf8785c31d29b42c14719', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1088.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa613a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:01.000Z'}}, {'blockNum': '0x62b01f', 'uniqueId': '0x3e2c32ae67fc9c77329c7bd4c07553a39d34168d88862150ce15795f06049c2d:log:30', 'hash': '0x3e2c32ae67fc9c77329c7bd4c07553a39d34168d88862150ce15795f06049c2d', 'from': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 5445.57, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033eed94', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:01.000Z'}}, {'blockNum': '0x62b020', 'uniqueId': '0x9281f2ca9b4ce56fed2b1f77d9f0e965dd9244c046920c58cfd1ff990f0fbdc1:log:0', 'hash': '0x9281f2ca9b4ce56fed2b1f77d9f0e965dd9244c046920c58cfd1ff990f0fbdc1', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x022f3c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:04.000Z'}}, {'blockNum': '0x62b024', 'uniqueId': '0x1585443d230fe19dad1237a230e8b6dfdb3ec7fcf8f7738f2b484cc1639fc7f1:log:29', 'hash': '0x1585443d230fe19dad1237a230e8b6dfdb3ec7fcf8f7738f2b484cc1639fc7f1', 'from': '0x381856eca3328afd5627d19d348c222edc36d52b', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1805.5901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011382dd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:49.000Z'}}, {'blockNum': '0x62b026', 'uniqueId': '0xdf6a55f0c5a982da4ee4aa965c74df0f99f43b35d86c90ebddfd23a339707931:log:6', 'hash': '0xdf6a55f0c5a982da4ee4aa965c74df0f99f43b35d86c90ebddfd23a339707931', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8961b8c41e1d929e0bee94480898127ab677ebc7', 'value': 903.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x89d910', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:14.000Z'}}, {'blockNum': '0x62b026', 'uniqueId': '0xafdf5feb292bb4b2196aaa6508376d87098904b0725236ef5dc8b5943e049893:log:7', 'hash': '0xafdf5feb292bb4b2196aaa6508376d87098904b0725236ef5dc8b5943e049893', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 210.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x201ac0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:14.000Z'}}, {'blockNum': '0x62b028', 'uniqueId': '0x48d072bdc30aec1ccda3eb54f002b190915086be799409358fc4ec597bb80f89:log:2', 'hash': '0x48d072bdc30aec1ccda3eb54f002b190915086be799409358fc4ec597bb80f89', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 307.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2ee7d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:46.000Z'}}, {'blockNum': '0x62b028', 'uniqueId': '0xfbd8abb46c94e062f236471f5943b6e17812d7913e6875716714eafda51868dc:log:3', 'hash': '0xfbd8abb46c94e062f236471f5943b6e17812d7913e6875716714eafda51868dc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'value': 2437.9728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01740150', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:46.000Z'}}, {'blockNum': '0x62b033', 'uniqueId': '0x590d9933dd1564fcf4e206552f22a05ee849986231037e1627836495a0b72d2d:log:0', 'hash': '0x590d9933dd1564fcf4e206552f22a05ee849986231037e1627836495a0b72d2d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'value': 495.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4b9790', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:05:32.000Z'}}, {'blockNum': '0x62b033', 'uniqueId': '0xf58d3a1dff130e23c7989c667679c56befade4eb9dfdad591ff799dfc3d76f3f:log:38', 'hash': '0xf58d3a1dff130e23c7989c667679c56befade4eb9dfdad591ff799dfc3d76f3f', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6213.0817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03b40a81', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:05:32.000Z'}}, {'blockNum': '0x62b037', 'uniqueId': '0x7c2e39d9de54b6295a74ffad5252e4d493b3efe9b25379c16efc9be7081064f0:log:38', 'hash': '0x7c2e39d9de54b6295a74ffad5252e4d493b3efe9b25379c16efc9be7081064f0', 'from': '0xa38cde626af6d97c39a44ba2bebc589cdafb6ac8', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1271.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc21398', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:06:10.000Z'}}, {'blockNum': '0x62b046', 'uniqueId': '0xf318c37725442d744400856346602182a25c0e9dbb571482a226944e991976f9:log:4', 'hash': '0xf318c37725442d744400856346602182a25c0e9dbb571482a226944e991976f9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'value': 2381.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x016b5f70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:09:28.000Z'}}, {'blockNum': '0x62b046', 'uniqueId': '0xfce0695299b5fcdaea640280d8ef40d60473a0d28c1089f8259864ff3b553b72:log:5', 'hash': '0xfce0695299b5fcdaea640280d8ef40d60473a0d28c1089f8259864ff3b553b72', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5408.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033941a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:09:28.000Z'}}, {'blockNum': '0x62b04b', 'uniqueId': '0x3675a77283d5049c816b57e5a9f1ee0f1b5c454e6049678abb55e6413fdaa85d:log:41', 'hash': '0x3675a77283d5049c816b57e5a9f1ee0f1b5c454e6049678abb55e6413fdaa85d', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011da500', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:10:26.000Z'}}, {'blockNum': '0x62b04d', 'uniqueId': '0xad1f29f05fb447f31349ccb98f10fab26907c6f0d4ebfc1a3a964b39b4f11822:log:49', 'hash': '0xad1f29f05fb447f31349ccb98f10fab26907c6f0d4ebfc1a3a964b39b4f11822', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 7841.5411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ac8633', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:11:01.000Z'}}, {'blockNum': '0x62b04e', 'uniqueId': '0x992b2042dbc4dabf01d91c1f95d3f1dac660b05eb2661c749efd0de277861fd1:log:2', 'hash': '0x992b2042dbc4dabf01d91c1f95d3f1dac660b05eb2661c749efd0de277861fd1', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 126268.1932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4b42ff4c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:11:17.000Z'}}, {'blockNum': '0x62b052', 'uniqueId': '0x72deab01350824ceab947e2ee36f6246d52deb7913bcfc0fbd0555929a001caa:log:0', 'hash': '0x72deab01350824ceab947e2ee36f6246d52deb7913bcfc0fbd0555929a001caa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x096a4e7ed3d256dc43b9a10954393566dd84e5ec', 'value': 1490.905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xe37e7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:11:56.000Z'}}, {'blockNum': '0x62b069', 'uniqueId': '0x9687ce74b28efe65dd18cc79b501e678256c2001d2b7b1d3e3155ed4b0eea333:log:55', 'hash': '0x9687ce74b28efe65dd18cc79b501e678256c2001d2b7b1d3e3155ed4b0eea333', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5408.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033941a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:15:57.000Z'}}, {'blockNum': '0x62b06c', 'uniqueId': '0x307495bf72569b49ecfdb1f3412d0aff7c0b6fc1b286c2f9ffe9aa3b5c8860e7:log:82', 'hash': '0x307495bf72569b49ecfdb1f3412d0aff7c0b6fc1b286c2f9ffe9aa3b5c8860e7', 'from': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 2437.9728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01740150', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:17:11.000Z'}}, {'blockNum': '0x62b081', 'uniqueId': '0xc2f3f3895fc0f8b55b916453cdd5e21ba3220ace474908ead1690a89fe96e05b:log:26', 'hash': '0xc2f3f3895fc0f8b55b916453cdd5e21ba3220ace474908ead1690a89fe96e05b', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 91294.1501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x366a61bd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:21:25.000Z'}}, {'blockNum': '0x62b083', 'uniqueId': '0xe268db6920dc23ee3b32fae0112ed8d55885425ccb786a24546d0fbbb4981b6b:log:2', 'hash': '0xe268db6920dc23ee3b32fae0112ed8d55885425ccb786a24546d0fbbb4981b6b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5444.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033ebfe0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:21:51.000Z'}}, {'blockNum': '0x62b087', 'uniqueId': '0xae35817922d8eb335eebd7af41ac4ccc42d1a340d3f67dacb3a524c0e5184b80:log:57', 'hash': '0xae35817922d8eb335eebd7af41ac4ccc42d1a340d3f67dacb3a524c0e5184b80', 'from': '0x3c020808764d8e123a2c023f36ee9ae38bd9dab0', 'to': '0x164322524976c74641416b7a3047db2c5b86e481', 'value': 55.9295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0888bf', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:22:45.000Z'}}, {'blockNum': '0x62b08e', 'uniqueId': '0x470f4da95835a5f0b87a0418348bc7219add0db5c49fe87c08657e4f8d6c30aa:log:114', 'hash': '0x470f4da95835a5f0b87a0418348bc7219add0db5c49fe87c08657e4f8d6c30aa', 'from': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 2381.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x016b5f70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:24:14.000Z'}}, {'blockNum': '0x62b093', 'uniqueId': '0xa781a4ae1dd46d0e8fb69618f55e0875a6064064304f759b4405da3295a1d767:log:9', 'hash': '0xa781a4ae1dd46d0e8fb69618f55e0875a6064064304f759b4405da3295a1d767', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdeaf423f4216716e2f258e4c8662397668807a52', 'value': 1306.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc762f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:25:00.000Z'}}, {'blockNum': '0x62b095', 'uniqueId': '0x5775e1e5e3b6f41c8829c52a18c0fb18e31eb7941ca16d181237d334a5b1a834:log:5', 'hash': '0x5775e1e5e3b6f41c8829c52a18c0fb18e31eb7941ca16d181237d334a5b1a834', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 78165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2e970850', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:26:07.000Z'}}, {'blockNum': '0x62b095', 'uniqueId': '0x0a94d32462b8034361632fc46ade47226f041eb43547b7355f3478eedb4af91b:log:34', 'hash': '0x0a94d32462b8034361632fc46ade47226f041eb43547b7355f3478eedb4af91b', 'from': '0x096a4e7ed3d256dc43b9a10954393566dd84e5ec', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 1490.905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xe37e7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:26:07.000Z'}}, {'blockNum': '0x62b09f', 'uniqueId': '0xb96951e7fbea587a1dbf1bfd0b62032b12abc334fa7e57fc499fa7923bff8fa6:log:26', 'hash': '0xb96951e7fbea587a1dbf1bfd0b62032b12abc334fa7e57fc499fa7923bff8fa6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'value': 1863.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011c5510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:29:46.000Z'}}, {'blockNum': '0x62b0a4', 'uniqueId': '0x9f20011bc568f01c50b8d628daed2020e087ce68d8f9d82d290f00e4b8c4d216:log:147', 'hash': '0x9f20011bc568f01c50b8d628daed2020e087ce68d8f9d82d290f00e4b8c4d216', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5444.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033ebfe0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:30:57.000Z'}}, {'blockNum': '0x62b0a7', 'uniqueId': '0x9d0570efa9be5cc47ffe7163b163e7d4cf25d20a2c0f5b8b48d9858f817e1bb3:log:13', 'hash': '0x9d0570efa9be5cc47ffe7163b163e7d4cf25d20a2c0f5b8b48d9858f817e1bb3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5480.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03443e20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:31:53.000Z'}}, {'blockNum': '0x62b0a7', 'uniqueId': '0xd42c1c80b4e7841e41eda633b692d05ee2a8f63ff0de5de8081fa62e5f303443:log:14', 'hash': '0xd42c1c80b4e7841e41eda633b692d05ee2a8f63ff0de5de8081fa62e5f303443', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 788.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x784ce0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:31:53.000Z'}}, {'blockNum': '0x62b0a7', 'uniqueId': '0x216280ddfe7c65aff85f30098aa819e474c9d13bce00232ba65dae1441030ec4:log:15', 'hash': '0x216280ddfe7c65aff85f30098aa819e474c9d13bce00232ba65dae1441030ec4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7f1ab4f31d4bc218433d6cc1e9a1a77346336e2d', 'value': 1234.162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbc5174', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:31:53.000Z'}}, {'blockNum': '0x62b0b3', 'uniqueId': '0x0e2196a8ff94f9bafc88c10aad30f13c1d5e92e0b14884f360ccd88b35dde2bb:log:6', 'hash': '0x0e2196a8ff94f9bafc88c10aad30f13c1d5e92e0b14884f360ccd88b35dde2bb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'value': 457.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x45cb30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:33:44.000Z'}}, {'blockNum': '0x62b0b4', 'uniqueId': '0x3f596649f76d388ef02bd5b561a836c120d4b693a79589c2ab6b485a047c3f24:log:20', 'hash': '0x3f596649f76d388ef02bd5b561a836c120d4b693a79589c2ab6b485a047c3f24', 'from': '0xdeaf423f4216716e2f258e4c8662397668807a52', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1306.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc762f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:34:06.000Z'}}, {'blockNum': '0x62b0c9', 'uniqueId': '0xd1e1235607d727a2e15b18f3cdbc3a2e28617af1baf775b2ed48c31ade3bca81:log:20', 'hash': '0xd1e1235607d727a2e15b18f3cdbc3a2e28617af1baf775b2ed48c31ade3bca81', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5480.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03443e20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:38:56.000Z'}}, {'blockNum': '0x62b0ca', 'uniqueId': '0x8939a30d6bb3a706c690e36f2a2653946d2cd067e33ab99783db9473cb04ee93:log:29', 'hash': '0x8939a30d6bb3a706c690e36f2a2653946d2cd067e33ab99783db9473cb04ee93', 'from': '0x7f1ab4f31d4bc218433d6cc1e9a1a77346336e2d', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 1234.162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbc5174', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:39:13.000Z'}}, {'blockNum': '0x62b0cd', 'uniqueId': '0x473895889573783b2deefabd7394c56483b7d1f115b080dd7c260de2ac6bebcc:log:13', 'hash': '0x473895889573783b2deefabd7394c56483b7d1f115b080dd7c260de2ac6bebcc', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 5232.9949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031e7ddd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:39:52.000Z'}}, {'blockNum': '0x62b0d0', 'uniqueId': '0x4a2071aa27fa44626009678116491483b62443a35c6a8b52469b655e348a0810:log:0', 'hash': '0x4a2071aa27fa44626009678116491483b62443a35c6a8b52469b655e348a0810', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'value': 4785.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02da31b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:40:20.000Z'}}, {'blockNum': '0x62b0d4', 'uniqueId': '0xeba7a22d951ef16a6ead9c6b6d95fe9517d3ba4586355ef2a9a41d9e8a385453:log:25', 'hash': '0xeba7a22d951ef16a6ead9c6b6d95fe9517d3ba4586355ef2a9a41d9e8a385453', 'from': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 1256.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbfae50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:41:26.000Z'}}, {'blockNum': '0x62b0e1', 'uniqueId': '0x74402bdc7d353399af39393970f81923721207b42cfa88deaec56cd3a1c891ca:log:38', 'hash': '0x74402bdc7d353399af39393970f81923721207b42cfa88deaec56cd3a1c891ca', 'from': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 1863.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011c5510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:44:56.000Z'}}, {'blockNum': '0x62b0e9', 'uniqueId': '0x9904bcb050b52bc737bf4a26661048f0343de4eef0dd81ad86eef515041adf2f:log:0', 'hash': '0x9904bcb050b52bc737bf4a26661048f0343de4eef0dd81ad86eef515041adf2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x699577ffe874562459b4b31b60537d0362f5aa51', 'value': 8242.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e9a17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:46:57.000Z'}}, {'blockNum': '0x62b0f8', 'uniqueId': '0xb8ace4d9401432f62ad5e4d23d8c7d4c161e057e0f117632592d7487968da740:log:19', 'hash': '0xb8ace4d9401432f62ad5e4d23d8c7d4c161e057e0f117632592d7487968da740', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5232.9949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031e7ddd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:51:23.000Z'}}, {'blockNum': '0x62b109', 'uniqueId': '0x6f42218e2df40769dad24852105c4b82b223d2f568aeaf7d2def849c19d1f19f:log:0', 'hash': '0x6f42218e2df40769dad24852105c4b82b223d2f568aeaf7d2def849c19d1f19f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5516.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0349bc60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:54:55.000Z'}}, {'blockNum': '0x62b109', 'uniqueId': '0xad491a422b338217a017fcc8a7941b0c464e53edd71013e17ed3c05eb41c9f8e:log:28', 'hash': '0xad491a422b338217a017fcc8a7941b0c464e53edd71013e17ed3c05eb41c9f8e', 'from': '0x699577ffe874562459b4b31b60537d0362f5aa51', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 8242.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e9a17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:54:55.000Z'}}, {'blockNum': '0x62b10f', 'uniqueId': '0x7d6e4b8658b01b75ab8448ae5240cd1d5d67bf54e2380f4ced26d48695fc7200:log:103', 'hash': '0x7d6e4b8658b01b75ab8448ae5240cd1d5d67bf54e2380f4ced26d48695fc7200', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x572cd0a1c8e7deb31fbe8a729b716cd08a5d5c4c', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02160ec0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:55:54.000Z'}}, {'blockNum': '0x62b113', 'uniqueId': '0x387ace7b518ad8b244ea8963db9d35f77b8d462d1fdfd684a18155fe6dba6878:log:31', 'hash': '0x387ace7b518ad8b244ea8963db9d35f77b8d462d1fdfd684a18155fe6dba6878', 'from': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 4785.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02da31b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:57:30.000Z'}}, {'blockNum': '0x62b12a', 'uniqueId': '0xb64967422dce0fc7d37fa599915cf81385091de4177fe77c37f9a6794fa01e84:log:24', 'hash': '0xb64967422dce0fc7d37fa599915cf81385091de4177fe77c37f9a6794fa01e84', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5516.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0349bc60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:03:09.000Z'}}, {'blockNum': '0x62b14e', 'uniqueId': '0x616531ebe9398717f91e5bb526296577a6d17e26dd3dc45be11e51e8c850158d:log:53', 'hash': '0x616531ebe9398717f91e5bb526296577a6d17e26dd3dc45be11e51e8c850158d', 'from': '0x572cd0a1c8e7deb31fbe8a729b716cd08a5d5c4c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03938700', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:10:49.000Z'}}, {'blockNum': '0x62b158', 'uniqueId': '0xe14dfd9b34c3ec55de98336afe81b98dd440e9142cf1a74e096e54cedec3c1fe:log:4', 'hash': '0xe14dfd9b34c3ec55de98336afe81b98dd440e9142cf1a74e096e54cedec3c1fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'value': 26648.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fe23920', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:13:21.000Z'}}, {'blockNum': '0x62b17b', 'uniqueId': '0xb384cbf2bbe0b56f04316ffc0976b1a90c9c2cd8e0398c69ee140c39b468581b:log:35', 'hash': '0xb384cbf2bbe0b56f04316ffc0976b1a90c9c2cd8e0398c69ee140c39b468581b', 'from': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 26648.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fe23920', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:20:37.000Z'}}, {'blockNum': '0x62b24f', 'uniqueId': '0xa10113cce4de0dfffcc5c47247a25d81141c0a2e2335d9be360f2b009560e3d4:log:8', 'hash': '0xa10113cce4de0dfffcc5c47247a25d81141c0a2e2335d9be360f2b009560e3d4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5553.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034f61b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:12:52.000Z'}}, {'blockNum': '0x62b292', 'uniqueId': '0xfce2e489cc66bece36d2f37b715530ef93b25aaafacd3eec8e8f755a13a81d58:log:6', 'hash': '0xfce2e489cc66bece36d2f37b715530ef93b25aaafacd3eec8e8f755a13a81d58', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5553.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034f61b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:29:31.000Z'}}, {'blockNum': '0x62b2b7', 'uniqueId': '0x03127033f5594f3e0ba5f34e0b61ef5d3c47c12b064ea40f26df21c74db5aa7a:log:12', 'hash': '0x03127033f5594f3e0ba5f34e0b61ef5d3c47c12b064ea40f26df21c74db5aa7a', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6143.2865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a96421', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:40:19.000Z'}}, {'blockNum': '0x62b2bf', 'uniqueId': '0x9f6955af25202cb57b99177ffb5aee0abec38c6b85a39b7d2a3b3f0e253750c2:log:61', 'hash': '0x9f6955af25202cb57b99177ffb5aee0abec38c6b85a39b7d2a3b3f0e253750c2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 5125.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e12f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:41:03.000Z'}}, {'blockNum': '0x62b2cf', 'uniqueId': '0x1eb42e1375caf2b68b61c6def03802b614677870178c980babfcfa42899acae1:log:103', 'hash': '0x1eb42e1375caf2b68b61c6def03802b614677870178c980babfcfa42899acae1', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 6838.7964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0413847c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:45:43.000Z'}}, {'blockNum': '0x62b2ec', 'uniqueId': '0x4f6d512165b0606b2a45ffd8b92657f8b23ea3d5256c55e5cf0626f5bc8f6070:log:4', 'hash': '0x4f6d512165b0606b2a45ffd8b92657f8b23ea3d5256c55e5cf0626f5bc8f6070', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6143.2865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a96421', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:51:06.000Z'}}, {'blockNum': '0x62b307', 'uniqueId': '0x90b58fd90172dcd56e5950d42e25a19eb76901657681404ce316b5774010e6d7:log:8', 'hash': '0x90b58fd90172dcd56e5950d42e25a19eb76901657681404ce316b5774010e6d7', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5125.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e12f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:56:37.000Z'}}]}}
Number of returned transfers:  139
Answer is complete
 
symbol            POLY
group              BPS
date        2018-10-17
hour             19:01
exchange       binance
Name: 306, dtype: object
HERE
{'arbitrum-one': '0x34772c4d12f288368aa35ae7bc527a6b2b3e8906'}
No contract for ethereum specified
 Symbol: POLY, Contract: 0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec
Datetime timestamps:  2018-10-17 19:01:00 2018-10-17 07:01:00 2018-10-18 07:01:00
Unix timestamps:  1539752460.0 1539838860.0
Hex Block Numbers:  0x63a3c8 0x63bbbe
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x63a3e1', 'uniqueId': '0x096356870409f39751b203547f845c4c5974986ccfc2f97902db328f5e018753:log:40', 'hash': '0x096356870409f39751b203547f845c4c5974986ccfc2f97902db328f5e018753', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:09:22.000Z'}}, {'blockNum': '0x63a42b', 'uniqueId': '0x9a1b829e7cdfe2299393d4ed5f0db02a56223ee409893970c9fc86011beef3ad:log:2', 'hash': '0x9a1b829e7cdfe2299393d4ed5f0db02a56223ee409893970c9fc86011beef3ad', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 27025.86387324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b91334438c54ce7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:28:47.000Z'}}, {'blockNum': '0x63a42d', 'uniqueId': '0x79138f8a15ab270dac36ba6c33736ac9958c74c570fc3e991749b6b67611b6d8:log:44', 'hash': '0x79138f8a15ab270dac36ba6c33736ac9958c74c570fc3e991749b6b67611b6d8', 'from': '0x3cac9d4be7117ba53c27260945f4c8b91054c81b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 81991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x115cbdb33d106cbc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:28:56.000Z'}}, {'blockNum': '0x63a431', 'uniqueId': '0x32fa946630cf66b28c424b83eba2f1471b38cd1137bce97e8f18cffa5e668eaa:log:12', 'hash': '0x32fa946630cf66b28c424b83eba2f1471b38cd1137bce97e8f18cffa5e668eaa', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:29:29.000Z'}}, {'blockNum': '0x63a438', 'uniqueId': '0x7152002108a009a09fdc7c4e575447880f99535f71c0d9c6e57c3698113a8a3f:log:6', 'hash': '0x7152002108a009a09fdc7c4e575447880f99535f71c0d9c6e57c3698113a8a3f', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0x08a9da083869c82813d52be0f5dec79a9e18117e', 'value': 50.51729643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02bd117d7373424c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:30:58.000Z'}}, {'blockNum': '0x63a44e', 'uniqueId': '0xa1b63f459bfe3b148f91ddfd50c0d0cd2eb6474d45410e1a5a1a0a4459b2b9b5:log:12', 'hash': '0xa1b63f459bfe3b148f91ddfd50c0d0cd2eb6474d45410e1a5a1a0a4459b2b9b5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x89bf8656d07ff60cf1890b277e15d8ec61e96fbf', 'value': 6180.6249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014f0d66a03222344000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:36:53.000Z'}}, {'blockNum': '0x63a44f', 'uniqueId': '0xa4086a6d0415ccfef2c77cd79c6609afba0c5a2f1651687adc95bcb0e8e0058f:log:3', 'hash': '0xa4086a6d0415ccfef2c77cd79c6609afba0c5a2f1651687adc95bcb0e8e0058f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d0b065a798f8700000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:37:17.000Z'}}, {'blockNum': '0x63a44f', 'uniqueId': '0x1a668069193c98b9df615a05cc452f99c80e5e30696a870fa744bb90cb34624b:log:5', 'hash': '0x1a668069193c98b9df615a05cc452f99c80e5e30696a870fa744bb90cb34624b', 'from': '0x000536c29f728e871d303da34a29546f33536e48', 'to': '0xe71427b1e4ecf9069b56452ec39fc1bfb4355905', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:37:17.000Z'}}, {'blockNum': '0x63a461', 'uniqueId': '0x7f7d6e27e7b97af33d9d990e50712b74f3433894032bd863250de7011d082294:log:7', 'hash': '0x7f7d6e27e7b97af33d9d990e50712b74f3433894032bd863250de7011d082294', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf5573d00d9fac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:41:31.000Z'}}, {'blockNum': '0x63a47e', 'uniqueId': '0x68e5024ab1fea46702995d938100ff12ddb12dc3406aebbdb333197e2daa9426:log:10', 'hash': '0x68e5024ab1fea46702995d938100ff12ddb12dc3406aebbdb333197e2daa9426', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27025.86387324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b91334438c54ce7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:49:28.000Z'}}, {'blockNum': '0x63a4a8', 'uniqueId': '0x0f9f48bdde95de0f5a5be7bca0b4e83da83bf28f567698ccb3f4da079ab9521d:log:6', 'hash': '0x0f9f48bdde95de0f5a5be7bca0b4e83da83bf28f567698ccb3f4da079ab9521d', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf5573d00d9fac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T05:59:06.000Z'}}, {'blockNum': '0x63a4b8', 'uniqueId': '0x7c229307f751b62e9ff7d4d677aabe9e5324a8915fc9456039c6de611db647e6:log:5', 'hash': '0x7c229307f751b62e9ff7d4d677aabe9e5324a8915fc9456039c6de611db647e6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 26903.85895234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b2760bb6663eacc800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:01:20.000Z'}}, {'blockNum': '0x63a4df', 'uniqueId': '0x8385d8f59836ba3d54484982e6ba09cb1c12ddc14429d75ba4b9657f32e50fd9:log:34', 'hash': '0x8385d8f59836ba3d54484982e6ba09cb1c12ddc14429d75ba4b9657f32e50fd9', 'from': '0x1059fa1e06e29501ac49a06ded1fda129bdc462c', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 969.903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x34941ba7bbd1b18000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:09:33.000Z'}}, {'blockNum': '0x63a4e5', 'uniqueId': '0x0581aed3550ee72f30a68c23a058093435fb89ce8c81f8e1a1821011cb78ea87:log:30', 'hash': '0x0581aed3550ee72f30a68c23a058093435fb89ce8c81f8e1a1821011cb78ea87', 'from': '0xe9186833ead90e44b219f9f4e71ef658feab750a', 'to': '0x43ff33ea82072463fbe7686435014dd26fa6ed6e', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:10:49.000Z'}}, {'blockNum': '0x63a508', 'uniqueId': '0x6e9398d73053f912fffd09e5adb6d0072c5a7baf4fc6501a3e2b7c9164aa935e:log:10', 'hash': '0x6e9398d73053f912fffd09e5adb6d0072c5a7baf4fc6501a3e2b7c9164aa935e', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26903.85895234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b2760bb6663eacc800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:19:06.000Z'}}, {'blockNum': '0x63a529', 'uniqueId': '0x2fba38e2f0c7a5798fd0ed96e69a2b98cf9a55e055f33f0a451c2004d95e38e6:log:18', 'hash': '0x2fba38e2f0c7a5798fd0ed96e69a2b98cf9a55e055f33f0a451c2004d95e38e6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3899cafd63b8f28eae59cfa823a8747a63f90ff4', 'value': 62993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d56db7cc4c835a40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:27:25.000Z'}}, {'blockNum': '0x63a546', 'uniqueId': '0xe23c7bd65135f70b40c2366a6904d50a39e7a96fee2e58529c581b74a9a452f4:log:126', 'hash': '0xe23c7bd65135f70b40c2366a6904d50a39e7a96fee2e58529c581b74a9a452f4', 'from': '0x3196ca0111df547437fc90c07f52794622182be1', 'to': '0x749a2f2d196afcafffb2ffe4404a9b71ab2b2a2b', 'value': 470.62017726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x19832abdc3f1ab3800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:34:19.000Z'}}, {'blockNum': '0x63a558', 'uniqueId': '0x567b1fb39a55180be22a4141b49f16e88248060daa31bc36f4dc433db097e7cf:log:29', 'hash': '0x567b1fb39a55180be22a4141b49f16e88248060daa31bc36f4dc433db097e7cf', 'from': '0x02e725b7e99091bd4ccbf15228384e160ecdf78f', 'to': '0xc31714e6759a1ee26db1d06af1ed276340cd4233', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:37:37.000Z'}}, {'blockNum': '0x63a568', 'uniqueId': '0xc6f35ce43afb221d701b512f9114f0f51498eef44e07e5239e80a48b18eed643:log:3', 'hash': '0xc6f35ce43afb221d701b512f9114f0f51498eef44e07e5239e80a48b18eed643', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7d452bc8f8ca389c02a2fe6c3a00d458e8eb2439', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3627e8f712373c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:39:56.000Z'}}, {'blockNum': '0x63a569', 'uniqueId': '0xb92d481281baf9fb2334f3363a8c1385bce1b69a6fec759c37ceabd3ab508925:log:71', 'hash': '0xb92d481281baf9fb2334f3363a8c1385bce1b69a6fec759c37ceabd3ab508925', 'from': '0x5fd9b40d53aa9fced8a54d21904f8eae5842c174', 'to': '0x7de710922846b3c990c04edaf98a3224466e3395', 'value': 357.16890898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x135cb6de5af6ba0800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:40:19.000Z'}}, {'blockNum': '0x63a599', 'uniqueId': '0xa85144660bb28e27f7cc73ea8cd6124761311a0ae23cd229b6e70ae861fb7037:log:97', 'hash': '0xa85144660bb28e27f7cc73ea8cd6124761311a0ae23cd229b6e70ae861fb7037', 'from': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'to': '0xd1a7b926248efa545df3d5badfc312c4f31001f0', 'value': 0.029141842819703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x67885a055e60d8', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:52:55.000Z'}}, {'blockNum': '0x63a599', 'uniqueId': '0xeea0ec7d3e07d6a08eb0c7e427f70200b075c12623d5634ce0f978b0cbd5a53f:log:98', 'hash': '0xeea0ec7d3e07d6a08eb0c7e427f70200b075c12623d5634ce0f978b0cbd5a53f', 'from': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'to': '0xafa2a0cd8ed977c2515b266c3bcc6fe1096c573d', 'value': 174.32244321429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x097335ba80e5f58000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:52:55.000Z'}}, {'blockNum': '0x63a599', 'uniqueId': '0x47121adcf08a748332626e7c3b7cd2ccc7d0ce69e6f9ca329b989380fbbf07e3:log:99', 'hash': '0x47121adcf08a748332626e7c3b7cd2ccc7d0ce69e6f9ca329b989380fbbf07e3', 'from': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'to': '0x040cd1aeaf1c5b9283026e004001d4c43190eda3', 'value': 0.016064524295223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x391299881a36d8', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:52:55.000Z'}}, {'blockNum': '0x63a5a4', 'uniqueId': '0x0b3eb6390a1f6ddd67f7ed69d767058047ea99bb823e9ff4fbbbf8886d6c0fbf:log:23', 'hash': '0x0b3eb6390a1f6ddd67f7ed69d767058047ea99bb823e9ff4fbbbf8886d6c0fbf', 'from': '0x749a2f2d196afcafffb2ffe4404a9b71ab2b2a2b', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 470.62017726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x19832abdc3f1ab3800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T06:55:12.000Z'}}, {'blockNum': '0x63a5bf', 'uniqueId': '0xda7150612b5bc145990f10a98da14eb756634b4251a6543e6415f4af6a7b3ae1:log:8', 'hash': '0xda7150612b5bc145990f10a98da14eb756634b4251a6543e6415f4af6a7b3ae1', 'from': '0x7d452bc8f8ca389c02a2fe6c3a00d458e8eb2439', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3627e8f712373c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:00:34.000Z'}}, {'blockNum': '0x63a5c3', 'uniqueId': '0x1a1ff12651b4a352c4f8627cad30a788177c80e7e1bc56c1929f0180e3347fad:log:5', 'hash': '0x1a1ff12651b4a352c4f8627cad30a788177c80e7e1bc56c1929f0180e3347fad', 'from': '0x7de710922846b3c990c04edaf98a3224466e3395', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 357.16890898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x135cb6de5af6ba0800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:01:31.000Z'}}, {'blockNum': '0x63a5d3', 'uniqueId': '0x035e126f1e4d489f8b3976271843d0c1e69fe17ac013c55189d22be804bcba7e:log:61', 'hash': '0x035e126f1e4d489f8b3976271843d0c1e69fe17ac013c55189d22be804bcba7e', 'from': '0xbec38e1270d940b8222a9f2d63e0f28093469267', 'to': '0x672b7f5507427c3153a352e5494288f754b88a6a', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:04:42.000Z'}}, {'blockNum': '0x63a604', 'uniqueId': '0x1cbd7851bc884b468e834366a4e5463324d8343ad4b49ccf33fb6400723faa16:log:35', 'hash': '0x1cbd7851bc884b468e834366a4e5463324d8343ad4b49ccf33fb6400723faa16', 'from': '0x672b7f5507427c3153a352e5494288f754b88a6a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:19:33.000Z'}}, {'blockNum': '0x63a604', 'uniqueId': '0x4a26bb7c6e232f6c5e3fd009fb26b4c17f6816a18ced54a692fc2482c1f42494:log:101', 'hash': '0x4a26bb7c6e232f6c5e3fd009fb26b4c17f6816a18ced54a692fc2482c1f42494', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'value': 1822.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x62c6b79819b7420000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:19:33.000Z'}}, {'blockNum': '0x63a632', 'uniqueId': '0x4a47240fe08919cb578bdd71525c548b8b1f5f32187393239b1d9cae95a7ab70:log:26', 'hash': '0x4a47240fe08919cb578bdd71525c548b8b1f5f32187393239b1d9cae95a7ab70', 'from': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1822.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x62c6b79819b7420000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:29:27.000Z'}}, {'blockNum': '0x63a63a', 'uniqueId': '0xc6b9f1d54aef39924b7528424fbbbbf2f79fc6d68e90e1a6fb94b4c7c10e0b9c:log:20', 'hash': '0xc6b9f1d54aef39924b7528424fbbbbf2f79fc6d68e90e1a6fb94b4c7c10e0b9c', 'from': '0x8288b5fcc8376c9bd310e324efaf5a374dd9fc4d', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 237.93061168463157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce5f356b77ddec433', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:30:46.000Z'}}, {'blockNum': '0x63a671', 'uniqueId': '0x76f05e2442c91eb629b3bfb2b5cdb186844019d4f3e27f1bfd12c937d8e71cc9:log:25', 'hash': '0x76f05e2442c91eb629b3bfb2b5cdb186844019d4f3e27f1bfd12c937d8e71cc9', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0x7cedf8697d345ea079a681f42faf51a20661e08b', 'value': 185.58744503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a0f8b0df8697bfc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:43:01.000Z'}}, {'blockNum': '0x63a68d', 'uniqueId': '0x29b0f4cd0fb14da752c0ebd832628c483dc8a94b2455133d2922b252eeccae71:log:7', 'hash': '0x29b0f4cd0fb14da752c0ebd832628c483dc8a94b2455133d2922b252eeccae71', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d460162f516f000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:48:07.000Z'}}, {'blockNum': '0x63a69b', 'uniqueId': '0x3de8e168f35cdc5478938f4e47017939e2cd65ac49c8ad91216f3b5fe11cdcc3:log:14', 'hash': '0x3de8e168f35cdc5478938f4e47017939e2cd65ac49c8ad91216f3b5fe11cdcc3', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf47931959f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:52:14.000Z'}}, {'blockNum': '0x63a6a9', 'uniqueId': '0x1be5dbf72974f96b67fd355e810a797eb23997bb87fabbf877d99d1fc8dc8037:log:2', 'hash': '0x1be5dbf72974f96b67fd355e810a797eb23997bb87fabbf877d99d1fc8dc8037', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x71fa4c5d4a5e932c0beb9668647426659c85fee4', 'value': 2193.797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x76ed0c9c43eda08000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:54:31.000Z'}}, {'blockNum': '0x63a6bd', 'uniqueId': '0x90402f859e4d7757215d077a995f4842cd65ffbb876666982328f77b4204b968:log:9', 'hash': '0x90402f859e4d7757215d077a995f4842cd65ffbb876666982328f77b4204b968', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf47931959f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T07:59:10.000Z'}}, {'blockNum': '0x63a6cb', 'uniqueId': '0xb03748105b07921505145e6eb18575450b45d24007dc39322f635c4ad7cb41c1:log:17', 'hash': '0xb03748105b07921505145e6eb18575450b45d24007dc39322f635c4ad7cb41c1', 'from': '0xe2c07d432d706e7951b86b1676343e0109006242', 'to': '0x805c93d4761dfa84b0829f157110226cdbad71e0', 'value': 30065.54319897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x065ddb3a956368594400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:01:58.000Z'}}, {'blockNum': '0x63a6e1', 'uniqueId': '0x64f20ee5f2edf732024f188ba64ee0010047601c1d6e7b7b0822a0f7d1231911:log:2', 'hash': '0x64f20ee5f2edf732024f188ba64ee0010047601c1d6e7b7b0822a0f7d1231911', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x72034369bb4f10baa8e3bb52bb30689c5bcabf53', 'value': 4123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdf821e7f68e78c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:06:30.000Z'}}, {'blockNum': '0x63a6f8', 'uniqueId': '0x7428e2a7d2b72edda4cac310ef3cdf4bac0d2da28fbe4afc54d122059592b795:log:89', 'hash': '0x7428e2a7d2b72edda4cac310ef3cdf4bac0d2da28fbe4afc54d122059592b795', 'from': '0x37222a4fe6293abd6f5503d29949c13c957fc67e', 'to': '0xcdd9093ee0583b9a7e2c4fda1c17c9c2663d6b59', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:14:24.000Z'}}, {'blockNum': '0x63a6fa', 'uniqueId': '0xb3e811bd2630869d186edc69d30919ab005ad572784fc7bf0c3850acef4975e7:log:13', 'hash': '0xb3e811bd2630869d186edc69d30919ab005ad572784fc7bf0c3850acef4975e7', 'from': '0x805c93d4761dfa84b0829f157110226cdbad71e0', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 30065.54319897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x065ddb3a956368594400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:14:39.000Z'}}, {'blockNum': '0x63a6fd', 'uniqueId': '0x1fcbc0b35b07ce32b43deb4f58502e35c6b317611ea50bece9b71809a1da6eeb:log:14', 'hash': '0x1fcbc0b35b07ce32b43deb4f58502e35c6b317611ea50bece9b71809a1da6eeb', 'from': '0x74c8e367d41865ac76a8570857afc320f8f42ccf', 'to': '0xc069120ef8fef6f13a15512f4a126abfba845837', 'value': 357.90980673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1366ff10eefa5ce400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:14:56.000Z'}}, {'blockNum': '0x63a715', 'uniqueId': '0xc4329c34bb53b1d624cf08d28f3760d97f07a2250d5ccaa6abb8e91c6f78a1ed:log:12', 'hash': '0xc4329c34bb53b1d624cf08d28f3760d97f07a2250d5ccaa6abb8e91c6f78a1ed', 'from': '0xbc91e606275025c4262c51daa28507896808484d', 'to': '0x209ab91cf648c4d1a0b71d68ce71d11f3e4d85fb', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:21:30.000Z'}}, {'blockNum': '0x63a72f', 'uniqueId': '0x42c1e076b36ecb17a1f189ec4c6bd4c70368fcfb03f3cbdcb8c5ae1d666d6223:log:16', 'hash': '0x42c1e076b36ecb17a1f189ec4c6bd4c70368fcfb03f3cbdcb8c5ae1d666d6223', 'from': '0xcdd9093ee0583b9a7e2c4fda1c17c9c2663d6b59', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:29:12.000Z'}}, {'blockNum': '0x63a730', 'uniqueId': '0xa0f2f95c1347ae80341ae661dbdd4b0e40a8ff7f2dd7402d55558baeda662934:log:10', 'hash': '0xa0f2f95c1347ae80341ae661dbdd4b0e40a8ff7f2dd7402d55558baeda662934', 'from': '0x209ab91cf648c4d1a0b71d68ce71d11f3e4d85fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:29:28.000Z'}}, {'blockNum': '0x63a732', 'uniqueId': '0xc55d9c6a34091900fb9ca5dbf8412c05cbfc4793b3a95dbd8e17dcb38459d056:log:11', 'hash': '0xc55d9c6a34091900fb9ca5dbf8412c05cbfc4793b3a95dbd8e17dcb38459d056', 'from': '0x72034369bb4f10baa8e3bb52bb30689c5bcabf53', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 4123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdf821e7f68e78c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:29:39.000Z'}}, {'blockNum': '0x63a754', 'uniqueId': '0x0739f41c1faed915b6c23d5103d027d9cefcbac241df7febb31aa667791c8f03:log:30', 'hash': '0x0739f41c1faed915b6c23d5103d027d9cefcbac241df7febb31aa667791c8f03', 'from': '0xc069120ef8fef6f13a15512f4a126abfba845837', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 357.90980673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1366ff10eefa5ce400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:36:20.000Z'}}, {'blockNum': '0x63a78d', 'uniqueId': '0x0f20f2470beef1be3eac9b3ad9f74fd096c8b87fe27002d3fddd496f32dae9a4:log:58', 'hash': '0x0f20f2470beef1be3eac9b3ad9f74fd096c8b87fe27002d3fddd496f32dae9a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 44714.99579175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x097801393265396bbc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T08:51:20.000Z'}}, {'blockNum': '0x63a7ae', 'uniqueId': '0xd4bae30a988371a7b8dc5a8829e7ffb93061fb1beb2925448807e5b61e799997:log:3', 'hash': '0xd4bae30a988371a7b8dc5a8829e7ffb93061fb1beb2925448807e5b61e799997', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 44714.99579175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x097801393265396bbc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:00:48.000Z'}}, {'blockNum': '0x63a7f2', 'uniqueId': '0x8b62d70d4881eea0c3a07e12779b7a16aec340aef27b6439709d8d24471e0511:log:9', 'hash': '0x8b62d70d4881eea0c3a07e12779b7a16aec340aef27b6439709d8d24471e0511', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x0ae44fafe2548c5b81c7c81b2d089c3ce6c2d023', 'value': 106.7081618516632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05c8df8bd70b4641b1', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:16:34.000Z'}}, {'blockNum': '0x63a808', 'uniqueId': '0xe10159ad57e00c49480ead233f765286da7db01e29bbedfb359c677b290944d2:log:14', 'hash': '0xe10159ad57e00c49480ead233f765286da7db01e29bbedfb359c677b290944d2', 'from': '0xa60142f038f00b6d8bca018e673b5a44fa328a73', 'to': '0x287c52f179dd62226b4d9720f095e7916798275f', 'value': 1010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x36c090d0ca68880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:22:42.000Z'}}, {'blockNum': '0x63a826', 'uniqueId': '0x33f88a57aa3beebfc0e4d42600693930d4942dd21ab64caff1d4604b9cbc0235:log:41', 'hash': '0x33f88a57aa3beebfc0e4d42600693930d4942dd21ab64caff1d4604b9cbc0235', 'from': '0x287c52f179dd62226b4d9720f095e7916798275f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x36c090d0ca68880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:29:34.000Z'}}, {'blockNum': '0x63a835', 'uniqueId': '0x09a1c795620c5a62b013e801d4249fb0a19534ddc5344a0da271e2d8bd6b9c19:log:44', 'hash': '0x09a1c795620c5a62b013e801d4249fb0a19534ddc5344a0da271e2d8bd6b9c19', 'from': '0x7784ee628b48295153430ffb691cecd4f9aa9761', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 9028.309174763395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01e96cf5806a4c4894c7', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:34:34.000Z'}}, {'blockNum': '0x63a885', 'uniqueId': '0x9ec9dc71f941a603a16c41d1f8bb9f530e7da4433644a48ca9e0f1a829848fdf:log:2', 'hash': '0x9ec9dc71f941a603a16c41d1f8bb9f530e7da4433644a48ca9e0f1a829848fdf', 'from': '0xc3286c059acd670985a4be5c644e41a8eae80d05', 'to': '0x0df865347fd67d6115e4b24a2e6ee6d17e2a88af', 'value': 300.9959580059386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x105128750fbc5cf5ba', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:54:06.000Z'}}, {'blockNum': '0x63a888', 'uniqueId': '0x5aae84540fe91047206096b19a130843c1cb2409b402d1adedcfa24cc0592079:log:82', 'hash': '0x5aae84540fe91047206096b19a130843c1cb2409b402d1adedcfa24cc0592079', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 837.7084461336381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2d698a416393f2bdac', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:55:03.000Z'}}, {'blockNum': '0x63a88b', 'uniqueId': '0x66d6a7608f7b1e59f3896901bc21061bb8b046edd6193df282061270d5bec331:log:61', 'hash': '0x66d6a7608f7b1e59f3896901bc21061bb8b046edd6193df282061270d5bec331', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0x7784ee628b48295153430ffb691cecd4f9aa9761', 'value': 837.7084461336381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2d698a416393f2bdac', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T09:56:07.000Z'}}, {'blockNum': '0x63a89d', 'uniqueId': '0x29608decd321cb92bd127ba6217d057a19a215693bec0fb253dc3116ee8e2fe3:log:13', 'hash': '0x29608decd321cb92bd127ba6217d057a19a215693bec0fb253dc3116ee8e2fe3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x94f1a0226414f32cf1d4aa4a772d3bf3c08764c5', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:00:26.000Z'}}, {'blockNum': '0x63a8aa', 'uniqueId': '0x099981fcdc5e438c5103829f28e447ee00ff0ead79dab188b600da4fe99cfddb:log:19', 'hash': '0x099981fcdc5e438c5103829f28e447ee00ff0ead79dab188b600da4fe99cfddb', 'from': '0x226431d6cde565901122e01e1c1c5c8fe656f828', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 218.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0bd70c31d071110000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:04:12.000Z'}}, {'blockNum': '0x63a8bd', 'uniqueId': '0xa9c2926ebde97370b4b592256bf97b9d2703ed188c9a3488bbd00990a5ef498c:log:3', 'hash': '0xa9c2926ebde97370b4b592256bf97b9d2703ed188c9a3488bbd00990a5ef498c', 'from': '0x0df865347fd67d6115e4b24a2e6ee6d17e2a88af', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 300.995958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x105128750e5a656000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:07:57.000Z'}}, {'blockNum': '0x63a8d1', 'uniqueId': '0x0b4f6c9af87ccc929676e44b26999f63b73b54af15b59aa050ce8882716f05a2:log:1', 'hash': '0x0b4f6c9af87ccc929676e44b26999f63b73b54af15b59aa050ce8882716f05a2', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x39e4660902803636388b5e0846c2d5879f8f3203', 'value': 92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x04fcc1a89027f00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:13:53.000Z'}}, {'blockNum': '0x63a8d9', 'uniqueId': '0xa4369e863333f108145ab9d519f8f7b6e71670d8a3cdc5e073389ea85c2b8846:log:5', 'hash': '0xa4369e863333f108145ab9d519f8f7b6e71670d8a3cdc5e073389ea85c2b8846', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 32348.40901288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d99c5b2fff7ce5a000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:16:48.000Z'}}, {'blockNum': '0x63a91c', 'uniqueId': '0x4fb9ec9c2013d7784552109e3fdae42dba964226c1dc4b89e781cfb9bda06153:log:74', 'hash': '0x4fb9ec9c2013d7784552109e3fdae42dba964226c1dc4b89e781cfb9bda06153', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 32348.40901288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d99c5b2fff7ce5a000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:31:06.000Z'}}, {'blockNum': '0x63a96c', 'uniqueId': '0xe0aa601c56aa96380c5283bae6a678ea4d5e6f43c5bf193452215bdb70101639:log:7', 'hash': '0xe0aa601c56aa96380c5283bae6a678ea4d5e6f43c5bf193452215bdb70101639', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x6063eae48c547b743359bd6d8009d2962c8448e0', 'value': 251.53637690011783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0da2c4ba18044bc6a7', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T10:48:47.000Z'}}, {'blockNum': '0x63a9da', 'uniqueId': '0x113151129f61c9847f900c9213d6db6f9bd968cbff01d27ae7f3a5c4016a40e9:log:27', 'hash': '0x113151129f61c9847f900c9213d6db6f9bd968cbff01d27ae7f3a5c4016a40e9', 'from': '0x0861fca546225fbf8806986d211c8398f7457734', 'to': '0xf61f21091fdbdfdfa51d6e38fb508b0445e74e50', 'value': 422.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x16e496fc8f07760000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T11:20:02.000Z'}}, {'blockNum': '0x63aa05', 'uniqueId': '0xc3c178301a6f0efd5c5d48bea65c75fe4c4ee473dbe86b37730c580e39d26d8e:log:14', 'hash': '0xc3c178301a6f0efd5c5d48bea65c75fe4c4ee473dbe86b37730c580e39d26d8e', 'from': '0x0861fca546225fbf8806986d211c8398f7457734', 'to': '0xf61f21091fdbdfdfa51d6e38fb508b0445e74e50', 'value': 413.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x166a771b2ee0060000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T11:27:26.000Z'}}, {'blockNum': '0x63aa1d', 'uniqueId': '0x6b32a22a067052463c2d6c6e1ffed10d60ccf9dad17fb6a4cae41cf34823b27a:log:10', 'hash': '0x6b32a22a067052463c2d6c6e1ffed10d60ccf9dad17fb6a4cae41cf34823b27a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3e20a5fe4eb128156c51e310f0391799beccf0c1', 'value': 1020.861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x37574ad6bf220c8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T11:32:41.000Z'}}, {'blockNum': '0x63aaa0', 'uniqueId': '0x52e1e67ce628bef15357df8300722cf7a2295b5cf628e14dbf3345333eb2019b:log:12', 'hash': '0x52e1e67ce628bef15357df8300722cf7a2295b5cf628e14dbf3345333eb2019b', 'from': '0x2531da4e9aa82c1a0b84771557232e4da09ca9dd', 'to': '0x6e1683c17d4db937ab7d4fa9ee9d7ccdb3592881', 'value': 950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x337fe5feaf2d180000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:01:21.000Z'}}, {'blockNum': '0x63aaf2', 'uniqueId': '0x5f9d130e008243f874fe77cbb1ba11f7f010b4d7b9633bc0898b9fbbdc1fe93b:log:55', 'hash': '0x5f9d130e008243f874fe77cbb1ba11f7f010b4d7b9633bc0898b9fbbdc1fe93b', 'from': '0x6e1683c17d4db937ab7d4fa9ee9d7ccdb3592881', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x337fe5feaf2d180000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:19:02.000Z'}}, {'blockNum': '0x63ab12', 'uniqueId': '0x462a8c0d2a3d52c777a2b025d1cbb2c9e2e3e74382b15b81d1e52411d9d56e98:log:16', 'hash': '0x462a8c0d2a3d52c777a2b025d1cbb2c9e2e3e74382b15b81d1e52411d9d56e98', 'from': '0x6b59210ade46b62b25e82e95ab390a7ccadd4c3a', 'to': '0x7da155d3f92faa3425b0a6c9a8751632a56674e1', 'value': 988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x358f411d5a05f00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:26:02.000Z'}}, {'blockNum': '0x63ab3f', 'uniqueId': '0x96cda664b8930ca0e5dd13382557d1409419a74c7fd01ee97c6bed52ac2a1bbf:log:10', 'hash': '0x96cda664b8930ca0e5dd13382557d1409419a74c7fd01ee97c6bed52ac2a1bbf', 'from': '0x7da155d3f92faa3425b0a6c9a8751632a56674e1', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x358f411d5a05f00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:36:38.000Z'}}, {'blockNum': '0x63ab7e', 'uniqueId': '0x0b4d3b1a93d7c183a3a87eda754bf7612860949337cd1796e6be5cbafd5ad7e0:log:23', 'hash': '0x0b4d3b1a93d7c183a3a87eda754bf7612860949337cd1796e6be5cbafd5ad7e0', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x4054b1cc3a8780d23ae633131a147a6cc1db553d', 'value': 3158.47138584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xab38987f1f74f16000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:51:03.000Z'}}, {'blockNum': '0x63ab81', 'uniqueId': '0x2d636e2d03a5add199ca8f1c905e886eb945f0a5918c0877b8fdd200d04fa5ce:log:22', 'hash': '0x2d636e2d03a5add199ca8f1c905e886eb945f0a5918c0877b8fdd200d04fa5ce', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x26048265b294e93477303591f88ca4826ff94455', 'value': 386.1314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x14eea64e7cf8448000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T12:51:57.000Z'}}, {'blockNum': '0x63abc7', 'uniqueId': '0x0da5a2611ddf43fb2b2b2af4f85d9cd5351809c1cde7078ff74869fd875f88ec:log:24', 'hash': '0x0da5a2611ddf43fb2b2b2af4f85d9cd5351809c1cde7078ff74869fd875f88ec', 'from': '0x26048265b294e93477303591f88ca4826ff94455', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 386.1314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x14eea64e7cf8448000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:08:54.000Z'}}, {'blockNum': '0x63abc7', 'uniqueId': '0xc77783849189eafed8746a6acaa727af2bd76194913a2dae79ae1aca4e3a2c8d:log:27', 'hash': '0xc77783849189eafed8746a6acaa727af2bd76194913a2dae79ae1aca4e3a2c8d', 'from': '0x4054b1cc3a8780d23ae633131a147a6cc1db553d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3158.47138584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xab38987f1f74f16000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:08:54.000Z'}}, {'blockNum': '0x63ac25', 'uniqueId': '0xcd3baede553f92b5d6b13ef152b1696a2a496ce1e8b027b6f78a2e8fd36d4609:log:64', 'hash': '0xcd3baede553f92b5d6b13ef152b1696a2a496ce1e8b027b6f78a2e8fd36d4609', 'from': '0xf68194a1486af6fc2a2f7627b5c0d57dca14c727', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06c6b935b8bbd40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:31:17.000Z'}}, {'blockNum': '0x63ac94', 'uniqueId': '0x8420ca36548af0cb369515f2c6ec5f22066d52820aee5661a580daf097add2d3:log:14', 'hash': '0x8420ca36548af0cb369515f2c6ec5f22066d52820aee5661a580daf097add2d3', 'from': '0x45d80dcf9dc5e403d56bae7511d44319dad76bbe', 'to': '0xef58491224958d978facf55d2120c55a24516b98', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:54:12.000Z'}}, {'blockNum': '0x63aca4', 'uniqueId': '0x964a29a71c6d8ccbca697c2d9fe83576cc1ddef2bd39dc83a1f6cf2167a8d728:log:148', 'hash': '0x964a29a71c6d8ccbca697c2d9fe83576cc1ddef2bd39dc83a1f6cf2167a8d728', 'from': '0xe415242c6624315175af7b6008c4c3e063d1cd61', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T13:58:23.000Z'}}, {'blockNum': '0x63acf8', 'uniqueId': '0xa8c1a7fe2bb224780df8cefc799a6082835adf63f83b20afd4d1f4104494491f:log:96', 'hash': '0xa8c1a7fe2bb224780df8cefc799a6082835adf63f83b20afd4d1f4104494491f', 'from': '0x026122654b5c91c8152fce1dcff9a8c086db6fa9', 'to': '0x12e1e35edabdae747f0ddfce1f3aaf067e2d2f53', 'value': 165.03231071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x08f2488c364b719c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:18:16.000Z'}}, {'blockNum': '0x63ad2c', 'uniqueId': '0x73a3e005a50c6d5d8d35ff6a39153f26254313220bfa82ec309ca57256b16230:log:7', 'hash': '0x73a3e005a50c6d5d8d35ff6a39153f26254313220bfa82ec309ca57256b16230', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xaed045082ba0caebc8c789ec6d8fceef891e7ed4', 'value': 45.08684172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0271b4a3a9fcdcb000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:29:49.000Z'}}, {'blockNum': '0x63ad32', 'uniqueId': '0x3a50ec125481ecc5a60d1d4d290d78a712f8470e5a69081dabbfb36e039fbabe:log:23', 'hash': '0x3a50ec125481ecc5a60d1d4d290d78a712f8470e5a69081dabbfb36e039fbabe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x008024771614f4290696b63ba3dd3a1ceb34d4d9', 'value': 3443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbaa539323445ec0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:31:30.000Z'}}, {'blockNum': '0x63ad4d', 'uniqueId': '0xb1a992e583c71c5b5fd792324eaea311770a6ff606689d8b9f5d674a0bcc1f29:log:10', 'hash': '0xb1a992e583c71c5b5fd792324eaea311770a6ff606689d8b9f5d674a0bcc1f29', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d078e2ccca5ae00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:37:32.000Z'}}, {'blockNum': '0x63ad4e', 'uniqueId': '0xb48e433a20b5a516ccad5f5beb0c4e9b2d5beecc8072a8543175c198232e35b7:log:7', 'hash': '0xb48e433a20b5a516ccad5f5beb0c4e9b2d5beecc8072a8543175c198232e35b7', 'from': '0x12e1e35edabdae747f0ddfce1f3aaf067e2d2f53', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 165.03231071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x08f2488c364b719c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:37:36.000Z'}}, {'blockNum': '0x63ad5f', 'uniqueId': '0x3fe0a0ed6b99b31652c5d053ee20d9af5af9d7ee3f4f0180a3fde92025e44df9:log:6', 'hash': '0x3fe0a0ed6b99b31652c5d053ee20d9af5af9d7ee3f4f0180a3fde92025e44df9', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf47931959f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:41:51.000Z'}}, {'blockNum': '0x63ad7a', 'uniqueId': '0x4e1767a12894ab0eb3b38ba9f2e014e5367e3c48e0ff586ed88605a702b20299:log:98', 'hash': '0x4e1767a12894ab0eb3b38ba9f2e014e5367e3c48e0ff586ed88605a702b20299', 'from': '0x8ef8f91d8c3fd83345ca579ae8b5688d25522cca', 'to': '0x5ad8caf5685f4dc940f11292485f0a396333258d', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:46:33.000Z'}}, {'blockNum': '0x63ad80', 'uniqueId': '0xba3e14a33577567056dd191aec57a6f610e7741e531cb2eba6fa025cc91afaf1:log:11', 'hash': '0xba3e14a33577567056dd191aec57a6f610e7741e531cb2eba6fa025cc91afaf1', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x73c5c4e3ba3fca06367f4d44e6d5a6ed1f9ddb5f', 'value': 1759.3303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5f5f9cd284c16bc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:47:44.000Z'}}, {'blockNum': '0x63ad8b', 'uniqueId': '0xab0979ad78eda19636d6f4d4abf0aa84b6d26f7636b5b25a4afa937b98c8d966:log:10', 'hash': '0xab0979ad78eda19636d6f4d4abf0aa84b6d26f7636b5b25a4afa937b98c8d966', 'from': '0x5ad8caf5685f4dc940f11292485f0a396333258d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:51:16.000Z'}}, {'blockNum': '0x63adaf', 'uniqueId': '0x39e1e82533b26c3de9feffcc49b1099930836c52dd784fa50b57fbb4b92eae40:log:7', 'hash': '0x39e1e82533b26c3de9feffcc49b1099930836c52dd784fa50b57fbb4b92eae40', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf47931959f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:59:26.000Z'}}, {'blockNum': '0x63adaf', 'uniqueId': '0x8c025129017fdcabf412f73989a150b7f670df3da4d91020dfaef5f00a69ba80:log:10', 'hash': '0x8c025129017fdcabf412f73989a150b7f670df3da4d91020dfaef5f00a69ba80', 'from': '0x73c5c4e3ba3fca06367f4d44e6d5a6ed1f9ddb5f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1759.3303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5f5f9cd284c16bc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T14:59:26.000Z'}}, {'blockNum': '0x63adbd', 'uniqueId': '0x193d076c9b00647e7eb9b1a342b083d91e61263d630c714109a91f126fcb8759:log:67', 'hash': '0x193d076c9b00647e7eb9b1a342b083d91e61263d630c714109a91f126fcb8759', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbebc8480587f8527d818598b294cac6d77b1dcf3', 'value': 4840.6758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010669df2119b5d58000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:03:17.000Z'}}, {'blockNum': '0x63adc7', 'uniqueId': '0x84bf74e0fb71277d476a9496d5b542e2d3f350f1a9b2a6ad258917850a530978:log:1', 'hash': '0x84bf74e0fb71277d476a9496d5b542e2d3f350f1a9b2a6ad258917850a530978', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x38e511101797dc8623e0d82ca948680202124447', 'value': 482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1a2117fe412a480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:06:04.000Z'}}, {'blockNum': '0x63ae04', 'uniqueId': '0x2fca5caae4fb54c203dbfdaebd2ce770fbd0662704582348579bf1e04bd0fa74:log:42', 'hash': '0x2fca5caae4fb54c203dbfdaebd2ce770fbd0662704582348579bf1e04bd0fa74', 'from': '0xbebc8480587f8527d818598b294cac6d77b1dcf3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4840.6758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010669df2119b5d58000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:20:05.000Z'}}, {'blockNum': '0x63ae41', 'uniqueId': '0xb84edc395d8b4b5715b170cc3e6af10c712f2e65f7cca69712f45ef1a4e97132:log:3', 'hash': '0xb84edc395d8b4b5715b170cc3e6af10c712f2e65f7cca69712f45ef1a4e97132', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad3e2314082cdb53d0cdb35d55f552ec1a1c12c3', 'value': 3499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbdae612980e3cc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:34:04.000Z'}}, {'blockNum': '0x63ae48', 'uniqueId': '0xd7eb49e3b0c0e02fce3dbceb411e63ef8efc3db53ce3364913fce8db806b5263:log:156', 'hash': '0xd7eb49e3b0c0e02fce3dbceb411e63ef8efc3db53ce3364913fce8db806b5263', 'from': '0x3b4868d23121761597cc962e3e50c96cd269ba11', 'to': '0xa860f8224100dd4274a4b6361684c02a56c7bdba', 'value': 1.63383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x16ac87ba85606000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:34:35.000Z'}}, {'blockNum': '0x63ae6a', 'uniqueId': '0xf6015f0865c67206fa6a853615825a4c9ce9bd4c91507f92b3a69b2ad8c916d4:log:21', 'hash': '0xf6015f0865c67206fa6a853615825a4c9ce9bd4c91507f92b3a69b2ad8c916d4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xce565d6b238abf43d24be6008a922bcca4258942', 'value': 49999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a96738339f1d3dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:42:08.000Z'}}, {'blockNum': '0x63ae6b', 'uniqueId': '0x8e70d8c135fe2d5029432981ad640c371bc74343fdbdf82a29fdd52234415619:log:0', 'hash': '0x8e70d8c135fe2d5029432981ad640c371bc74343fdbdf82a29fdd52234415619', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'value': 6130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014c4ed6d9de38880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:42:45.000Z'}}, {'blockNum': '0x63ae7d', 'uniqueId': '0x48b5dd6a194549eaeac360a18df23ceffb0856764207cd589ee06da742ea0480:log:12', 'hash': '0x48b5dd6a194549eaeac360a18df23ceffb0856764207cd589ee06da742ea0480', 'from': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014c4ed6d9de38880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:49:09.000Z'}}, {'blockNum': '0x63ae97', 'uniqueId': '0xdab1f8dcd54d56d31e8092ad7fc401a0a2f6ddb0726f46dd93f7938f2ade7114:log:4', 'hash': '0xdab1f8dcd54d56d31e8092ad7fc401a0a2f6ddb0726f46dd93f7938f2ade7114', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0a28cf41d69a05dc878fb86d0c78a1f2fcafd349', 'value': 68405.1674448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0e7c406614ef83308000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:58:22.000Z'}}, {'blockNum': '0x63ae9b', 'uniqueId': '0x2a6fe0975d90a5fb7b8d5cdd572ad8d9c9ae40b484e12051e44c6bccdf14a4fa:log:16', 'hash': '0x2a6fe0975d90a5fb7b8d5cdd572ad8d9c9ae40b484e12051e44c6bccdf14a4fa', 'from': '0xad3e2314082cdb53d0cdb35d55f552ec1a1c12c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbdae612980e3cc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:58:53.000Z'}}, {'blockNum': '0x63ae9b', 'uniqueId': '0x28733a4dc83e0d1fe10dbc214ecd44c3943c2d225089a5e9421d73bfb7a89092:log:18', 'hash': '0x28733a4dc83e0d1fe10dbc214ecd44c3943c2d225089a5e9421d73bfb7a89092', 'from': '0xce565d6b238abf43d24be6008a922bcca4258942', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a96738339f1d3dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:58:53.000Z'}}, {'blockNum': '0x63ae9d', 'uniqueId': '0x4776af313d209c80b98d7c184ace8e115008b459ec9fc5b215c8639906100ac5:log:14', 'hash': '0x4776af313d209c80b98d7c184ace8e115008b459ec9fc5b215c8639906100ac5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c4396a2bd1c9789fcbe6c36dbac64627b5f519e', 'value': 93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x050aa25f43cf540000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T15:59:41.000Z'}}, {'blockNum': '0x63aeae', 'uniqueId': '0xc5d64ab9fcabea8ceabf7e68e1592f7b12a6d940d573c59310c0d0dcfd4d7c95:log:42', 'hash': '0xc5d64ab9fcabea8ceabf7e68e1592f7b12a6d940d573c59310c0d0dcfd4d7c95', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x1c391cf7f5b214951cbb87f6c4a31bfc40c61dd9', 'value': 3463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbbbac7783d59bc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:04:17.000Z'}}, {'blockNum': '0x63aed3', 'uniqueId': '0x05f0a9584c7982bb420171960af3331de17722a6e053fa6e4d1c84d8e4fc35b8:log:3', 'hash': '0x05f0a9584c7982bb420171960af3331de17722a6e053fa6e4d1c84d8e4fc35b8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c4396a2bd1c9789fcbe6c36dbac64627b5f519e', 'value': 24384.136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0529dddd834f7e740000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:12:19.000Z'}}, {'blockNum': '0x63aeef', 'uniqueId': '0x4d958df7866f9b150655eee7039a93bf257ac2f09a54fbdb93555ad1f25fab03:log:42', 'hash': '0x4d958df7866f9b150655eee7039a93bf257ac2f09a54fbdb93555ad1f25fab03', 'from': '0x0a28cf41d69a05dc878fb86d0c78a1f2fcafd349', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 68405.1674448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0e7c406614ef83308000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:19:25.000Z'}}, {'blockNum': '0x63af55', 'uniqueId': '0x939dc1878dbe3e3e3d79bcba4b07bc6099af5a91ca566dda7e3c23462e4e6955:log:17', 'hash': '0x939dc1878dbe3e3e3d79bcba4b07bc6099af5a91ca566dda7e3c23462e4e6955', 'from': '0xd4a73194d346674a76f1a14d50ecb63dc9682f4f', 'to': '0x11b816fcb5eef018974be86ec270c2ea04ebef99', 'value': 5767.45558579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0138a78659fc97666c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:40:32.000Z'}}, {'blockNum': '0x63af82', 'uniqueId': '0xd5f64d1941d8ad3d79ae943c5d4da556303905a3efa10b1e34844ca91cdb987f:log:5', 'hash': '0xd5f64d1941d8ad3d79ae943c5d4da556303905a3efa10b1e34844ca91cdb987f', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xb5506a5fc5b949cb5de0e232729c7641ea238131', 'value': 229.4234595834083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c6fe3dcf41a3d5ae9', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:51:47.000Z'}}, {'blockNum': '0x63af89', 'uniqueId': '0x21e910df582cd8a46aaf8ec987cb3c86348a15cd7181239345bcfa82dfadb256:log:73', 'hash': '0x21e910df582cd8a46aaf8ec987cb3c86348a15cd7181239345bcfa82dfadb256', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x00443ebe3412c0d8cb2dd65949671389b482da79', 'value': 28.276349988751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x018869c680101fc1c0', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:53:25.000Z'}}, {'blockNum': '0x63af9f', 'uniqueId': '0x1a8f8f7465d67d80d7503e3350c0b625cbff5b07ef015901b283d9ca6b320ad8:log:23', 'hash': '0x1a8f8f7465d67d80d7503e3350c0b625cbff5b07ef015901b283d9ca6b320ad8', 'from': '0x00443ebe3412c0d8cb2dd65949671389b482da79', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 28.27634998875101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x018869c680101fe899', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:58:06.000Z'}}, {'blockNum': '0x63afa3', 'uniqueId': '0x6055a5529b6a4053c199821a6697409608e2a6cded45297b968c8b45f0f3b3ba:log:28', 'hash': '0x6055a5529b6a4053c199821a6697409608e2a6cded45297b968c8b45f0f3b3ba', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xb5506a5fc5b949cb5de0e232729c7641ea238131', 'value': 445.4428465690676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1825c2e4e5b01a5dcb', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T16:58:45.000Z'}}, {'blockNum': '0x63afc9', 'uniqueId': '0x1fdda5420bbd1b6ceb67f3b6039ba8b771a4da446d719ad44354c4749cfcc26b:log:5', 'hash': '0x1fdda5420bbd1b6ceb67f3b6039ba8b771a4da446d719ad44354c4749cfcc26b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc519a0788fa2150f69f0abeb5c33bc3dfa5901c8', 'value': 815.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2c30da7a81d49a8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:08:15.000Z'}}, {'blockNum': '0x63afdd', 'uniqueId': '0x88d39a1fb28cb26c2979e6cb900bc0ff70b04ef0eaf26ab0c3aba96944596b98:log:4', 'hash': '0x88d39a1fb28cb26c2979e6cb900bc0ff70b04ef0eaf26ab0c3aba96944596b98', 'from': '0xf284d7f2710f7401edcc09013321a0d295bf0ca4', 'to': '0xc36124eec1f2fa7057abf5c66db594d35e0ff9c7', 'value': 544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1d7d843dc3b4800000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:13:54.000Z'}}, {'blockNum': '0x63b004', 'uniqueId': '0x494ebc6e828c945ae8fe730967ddbae289f474346fab26951ff16cc6f1c2a8d4:log:20', 'hash': '0x494ebc6e828c945ae8fe730967ddbae289f474346fab26951ff16cc6f1c2a8d4', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0x401e636c0dd0bf2a308e7f1a1b1e6329ed1c6129', 'value': 246.97259094100232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d636ee6f1a84ca382', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:22:52.000Z'}}, {'blockNum': '0x63b004', 'uniqueId': '0xabd4e97189197be9f20bd9cea6c45f86cdf2c3b1cde0d2c37f2a2b49a4dd640e:log:57', 'hash': '0xabd4e97189197be9f20bd9cea6c45f86cdf2c3b1cde0d2c37f2a2b49a4dd640e', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0xe83949f06e097e0277f6a5e6d031334c0a1853fb', 'value': 591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2009c5c8bf6fdc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:22:52.000Z'}}, {'blockNum': '0x63b020', 'uniqueId': '0xa33d29c5668e7324b5b1286fbe5d6e0076855ee1cefc6e9bac0a5186383d7a61:log:13', 'hash': '0xa33d29c5668e7324b5b1286fbe5d6e0076855ee1cefc6e9bac0a5186383d7a61', 'from': '0xc36124eec1f2fa7057abf5c66db594d35e0ff9c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1d7d843dc3b4800000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:29:20.000Z'}}, {'blockNum': '0x63b044', 'uniqueId': '0x02854495600e8c6e0125164ec18ea9653ffe2a01b95cb1bb844e8b29ccbc3a5d:log:25', 'hash': '0x02854495600e8c6e0125164ec18ea9653ffe2a01b95cb1bb844e8b29ccbc3a5d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x94453ca80307154ffeb30defce19f90db603965c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:37:38.000Z'}}, {'blockNum': '0x63b04c', 'uniqueId': '0xd0d38a603deba4ebdc78ffc374a5e5d9a5770546b94d576246b40876adad7a8e:log:19', 'hash': '0xd0d38a603deba4ebdc78ffc374a5e5d9a5770546b94d576246b40876adad7a8e', 'from': '0x11b816fcb5eef018974be86ec270c2ea04ebef99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5767.45558579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0138a78659fc97666c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:39:30.000Z'}}, {'blockNum': '0x63b04c', 'uniqueId': '0x8e1850e650a683f9589cf11cb5d6d3dde8e5e57c9a5cfc3303a6aeeb77aaaae8:log:24', 'hash': '0x8e1850e650a683f9589cf11cb5d6d3dde8e5e57c9a5cfc3303a6aeeb77aaaae8', 'from': '0xe83949f06e097e0277f6a5e6d031334c0a1853fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2009c5c8bf6fdc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:39:30.000Z'}}, {'blockNum': '0x63b098', 'uniqueId': '0x9e58cd969138e34065f3bcff590df87bad89466fae3fca03c3387584b0c5c387:log:6', 'hash': '0x9e58cd969138e34065f3bcff590df87bad89466fae3fca03c3387584b0c5c387', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ab54202f4f3b24e10187dd853f58b82077aa633', 'value': 231.28473395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c89b87020e47a6c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T17:56:27.000Z'}}, {'blockNum': '0x63b0d7', 'uniqueId': '0xbfb221565329b297cfc3d55a03b06fdaaddffdfff7155401c14230732301ef03:log:0', 'hash': '0xbfb221565329b297cfc3d55a03b06fdaaddffdfff7155401c14230732301ef03', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 26009.66823748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0581fca820dc13c49000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:10:38.000Z'}}, {'blockNum': '0x63b0f4', 'uniqueId': '0x78f2092ed45f535f94a430faab601f157c4ee47dbaabebd4f86e41cb6c43bec0:log:0', 'hash': '0x78f2092ed45f535f94a430faab601f157c4ee47dbaabebd4f86e41cb6c43bec0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x58bbb78603ba67730078531b249a0a379dfd5d48', 'value': 3723.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xc9d7b1d7e8e9610000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:17:00.000Z'}}, {'blockNum': '0x63b0fa', 'uniqueId': '0x0dda8f976278ca9cc3f1d5af43bc80708ac358e5a7a98617e6f2b11cc8e413ff:log:30', 'hash': '0x0dda8f976278ca9cc3f1d5af43bc80708ac358e5a7a98617e6f2b11cc8e413ff', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x89407f3b57636f27c16ddf3197a4202e628d6cd4', 'value': 32266.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d5315ba292c5100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:17:49.000Z'}}, {'blockNum': '0x63b102', 'uniqueId': '0xc61fd937eab699b0e23a4dbcfb6455bd899497388c2785754cf63f8df958e3e6:log:24', 'hash': '0xc61fd937eab699b0e23a4dbcfb6455bd899497388c2785754cf63f8df958e3e6', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26009.66823748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0581fca820dc13c49000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:19:45.000Z'}}, {'blockNum': '0x63b10a', 'uniqueId': '0xc18470152c2ce9c615de2f95a4f82a94c5299f41fbab0d471e31e99489ccdc66:log:0', 'hash': '0xc18470152c2ce9c615de2f95a4f82a94c5299f41fbab0d471e31e99489ccdc66', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 41.38724693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x023e5d09cdc606b400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:21:23.000Z'}}, {'blockNum': '0x63b111', 'uniqueId': '0x14f770618f9172541426e5226dba739e8b097deb8a69bed472bd50e24255b9ea:log:0', 'hash': '0x14f770618f9172541426e5226dba739e8b097deb8a69bed472bd50e24255b9ea', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x89407f3b57636f27c16ddf3197a4202e628d6cd4', 'value': 81720.27792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x114e10ad33a6b5da0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:22:23.000Z'}}, {'blockNum': '0x63b129', 'uniqueId': '0x8d3597c17eb25cc5654228e0f036ca6d7b98d834bced1daa7df6e039e37c2e51:log:9', 'hash': '0x8d3597c17eb25cc5654228e0f036ca6d7b98d834bced1daa7df6e039e37c2e51', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc8a8eb695f87332a69ff7d42612a9bee85919ccb', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:26:44.000Z'}}, {'blockNum': '0x63b12f', 'uniqueId': '0x13ef3741987261469189c04472741e4767fabc3f4833210fd3173f3a26ef5398:log:37', 'hash': '0x13ef3741987261469189c04472741e4767fabc3f4833210fd3173f3a26ef5398', 'from': '0x89407f3b57636f27c16ddf3197a4202e628d6cd4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113987.18992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x18234208d6397aea0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:29:14.000Z'}}, {'blockNum': '0x63b132', 'uniqueId': '0x5d05bd9e37fbddaec93daa62c441083887df90c5246f2d61ecf35fba89fbc31f:log:5', 'hash': '0x5d05bd9e37fbddaec93daa62c441083887df90c5246f2d61ecf35fba89fbc31f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28345.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0600a35b5b9d47650000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:30:18.000Z'}}, {'blockNum': '0x63b136', 'uniqueId': '0x14814f9ded14c66450736fbd7a3b58a8dfdf10a1f39e572fac3fb52b87b10fd3:log:6', 'hash': '0x14814f9ded14c66450736fbd7a3b58a8dfdf10a1f39e572fac3fb52b87b10fd3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x35cdc3351be5c7b763e44c27451aa0ad36bb6a9d', 'value': 5192.795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01198081d3e4988f8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:31:22.000Z'}}, {'blockNum': '0x63b13c', 'uniqueId': '0x04ad92afbe9b4a731f6e2813bb33b7a4441694b87664762a05381955f25711b5:log:33', 'hash': '0x04ad92afbe9b4a731f6e2813bb33b7a4441694b87664762a05381955f25711b5', 'from': '0xe7988679da285df185e076fb0b1e435d86734dd8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:33:01.000Z'}}, {'blockNum': '0x63b15c', 'uniqueId': '0x6c7b55bbde07135bf98b6f5d7465993c42fc636114c8bb2761fd22c373f14236:log:6', 'hash': '0x6c7b55bbde07135bf98b6f5d7465993c42fc636114c8bb2761fd22c373f14236', 'from': '0x69d8ad34e5c07be4cf9761c6126ab59a5d2b5374', 'to': '0x1be3852dd9ccc1b8267865a46b155bc6b72d5a15', 'value': 10013.728450176437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021ed8660a6da560d05a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:38:53.000Z'}}, {'blockNum': '0x63b160', 'uniqueId': '0x6d44b12f5a752edc5264b34d0ca88be102a8f110bfad51891b4177a773da6033:log:0', 'hash': '0x6d44b12f5a752edc5264b34d0ca88be102a8f110bfad51891b4177a773da6033', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 25289.30631446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055aefa0788397619800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:39:39.000Z'}}, {'blockNum': '0x63b177', 'uniqueId': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad:log:30', 'hash': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce6e9db059ef80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:45:28.000Z'}}, {'blockNum': '0x63b177', 'uniqueId': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad:log:32', 'hash': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce6e9db059ef80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:45:28.000Z'}}, {'blockNum': '0x63b177', 'uniqueId': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad:log:33', 'hash': '0x6cd36abd6f01bbe4555ba8a9d37fdf35418e74dbded29c36d4f6af653c0479ad', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce6e9db059ef80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:45:28.000Z'}}, {'blockNum': '0x63b187', 'uniqueId': '0xd756f7be62c1fbde884fde7fbf06533467d0b4f88f862aee3c1eaa85209e19c6:log:23', 'hash': '0xd756f7be62c1fbde884fde7fbf06533467d0b4f88f862aee3c1eaa85209e19c6', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28345.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0600a35b5b9d47650000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:49:07.000Z'}}, {'blockNum': '0x63b188', 'uniqueId': '0x44114e53c3022141dbf515e1354916fc613233f499e5024286078afb91ce223b:log:5', 'hash': '0x44114e53c3022141dbf515e1354916fc613233f499e5024286078afb91ce223b', 'from': '0x1be3852dd9ccc1b8267865a46b155bc6b72d5a15', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10013.728450176437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021ed8660a6da560d05a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:49:14.000Z'}}, {'blockNum': '0x63b18e', 'uniqueId': '0xdd6a60ee8bfda026a8418cf14a826f44fb5ceaa2d75342c30d6887743fa402f4:log:121', 'hash': '0xdd6a60ee8bfda026a8418cf14a826f44fb5ceaa2d75342c30d6887743fa402f4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x675fd75b1232546931ff24eb643e5110ed416956', 'value': 333.9038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1219d8990079138000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:50:50.000Z'}}, {'blockNum': '0x63b191', 'uniqueId': '0xce9411fc8e2edcc615880471e7aa62fa9c2ed7473fed2d0cfdda5810f554ee21:log:11', 'hash': '0xce9411fc8e2edcc615880471e7aa62fa9c2ed7473fed2d0cfdda5810f554ee21', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x049b6339a45ccc019aeae34b93ef1e80719129ff', 'value': 97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:52:16.000Z'}}, {'blockNum': '0x63b196', 'uniqueId': '0x66e22c147f0029b3ce68ff758f34421a8f33d9c615a60de52b90297dba1f4739:log:117', 'hash': '0x66e22c147f0029b3ce68ff758f34421a8f33d9c615a60de52b90297dba1f4739', 'from': '0x258231c4de1fbf0571a48dca49aa13833c47a046', 'to': '0x16a9d1c974be039d96eb3d35e3300308d341e86b', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:53:50.000Z'}}, {'blockNum': '0x63b19c', 'uniqueId': '0x7486a9df0578a502fc76aa8bd70002ec3682702f31acba9e0fdba77b54f6bd16:log:29', 'hash': '0x7486a9df0578a502fc76aa8bd70002ec3682702f31acba9e0fdba77b54f6bd16', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xa89be3419b12bd5eb3ff2115baf856770c687c7d', 'value': 25.48092679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01619e6fe969af3c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:55:34.000Z'}}, {'blockNum': '0x63b1a8', 'uniqueId': '0xc05e7eca908d532cac8cd4740a013105cf42bf9bdb84c299bc6b1f2a55010e20:log:30', 'hash': '0xc05e7eca908d532cac8cd4740a013105cf42bf9bdb84c299bc6b1f2a55010e20', 'from': '0x049b6339a45ccc019aeae34b93ef1e80719129ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:58:54.000Z'}}, {'blockNum': '0x63b1a9', 'uniqueId': '0x5528b2b1f3b8bb7a20500d1a8a4d1e559af8c5875d368ac77686f290735bcfbd:log:16', 'hash': '0x5528b2b1f3b8bb7a20500d1a8a4d1e559af8c5875d368ac77686f290735bcfbd', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25289.30631446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055aefa0788397619800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:59:10.000Z'}}, {'blockNum': '0x63b1ab', 'uniqueId': '0x58a0ab58bb99ccccf5a50ef124357e63ef3318fd557fdda7b89a81713e30252b:log:31', 'hash': '0x58a0ab58bb99ccccf5a50ef124357e63ef3318fd557fdda7b89a81713e30252b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cfee1ba9c5d0f80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T18:59:59.000Z'}}, {'blockNum': '0x63b1b2', 'uniqueId': '0x20ceeee90dba8d4e84d0669ead1f400a592c90c27e9c271a5b32ed223bc155c4:log:93', 'hash': '0x20ceeee90dba8d4e84d0669ead1f400a592c90c27e9c271a5b32ed223bc155c4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 9278.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01f6ff69d47fd9bb0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:01:35.000Z'}}, {'blockNum': '0x63b1b3', 'uniqueId': '0x3eb7feffe0746e607613f72ce8b503a1e7f82921c135d8387805f73222890cf2:log:0', 'hash': '0x3eb7feffe0746e607613f72ce8b503a1e7f82921c135d8387805f73222890cf2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'value': 2347.0432533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7f3bc4abb54fa90800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:01:52.000Z'}}, {'blockNum': '0x63b1b9', 'uniqueId': '0xeae4e475725cf76d367d02e04c428ab9f5da71f92e67b6688f67e1662d434c16:log:0', 'hash': '0xeae4e475725cf76d367d02e04c428ab9f5da71f92e67b6688f67e1662d434c16', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 12405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02a079f52f7e40b40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:03:05.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xb78b919fdbfe310812b27b409704638876f5b67b074c76630697efb84a4d8aca:log:1', 'hash': '0xb78b919fdbfe310812b27b409704638876f5b67b074c76630697efb84a4d8aca', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 6421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x015c154688157f340000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xec18a77f56e935baebc212661250f6e8acb1f1350f81704e471b12c4d38f9166:log:2', 'hash': '0xec18a77f56e935baebc212661250f6e8acb1f1350f81704e471b12c4d38f9166', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 39175.004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x084bae6493eeead60000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x375381089f1ee044c2a61a48f3397682826282c00547ecfc86f7ede67642cc12:log:3', 'hash': '0x375381089f1ee044c2a61a48f3397682826282c00547ecfc86f7ede67642cc12', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e5389f69174a6d189af70b2075577d012e25194', 'value': 44.93336464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x026f936112aa4c4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xe26c391b04551e6ed9889016d722382f093842c4f2338f243494e50c1ccab20b:log:4', 'hash': '0xe26c391b04551e6ed9889016d722382f093842c4f2338f243494e50c1ccab20b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'value': 5698.78639801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0134ee8c638695e7c400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xd66227718bcc95316fabbf1224407ca63ea3d05a35f4361d3a4a94fdc4eddce7:log:5', 'hash': '0xd66227718bcc95316fabbf1224407ca63ea3d05a35f4361d3a4a94fdc4eddce7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 39892.61077839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0872952ffed5d73f5c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xd9dbe67fee3ce3ed4833e8630ab254ecfdeba4d39fe65f4edc567152871b193a:log:6', 'hash': '0xd9dbe67fee3ce3ed4833e8630ab254ecfdeba4d39fe65f4edc567152871b193a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 1774.40499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6030d0ea4a50f49c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x7c7b747444130b1e8c48ace5636d15625d84bc37285939fdd36f3ca268a17d74:log:7', 'hash': '0x7c7b747444130b1e8c48ace5636d15625d84bc37285939fdd36f3ca268a17d74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055de6a779bbac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x8d2ad097066d14f1838b64d8b23face105e1d645b371638365ef0606ca948e7a:log:8', 'hash': '0x8d2ad097066d14f1838b64d8b23face105e1d645b371638365ef0606ca948e7a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfb861c76dab6900585081449d3b81d8efe876945', 'value': 6114.68732424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014b7a554c64f4ff2000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xc4fad4bee9fb2a832f523d36378537cff08520673ea010fb588a87e08e68d101:log:9', 'hash': '0xc4fad4bee9fb2a832f523d36378537cff08520673ea010fb588a87e08e68d101', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6285895b68669a5139644d5adb4f664b7b79e226', 'value': 6005.058425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014588ed355fd7b49000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x2b3d816e105863a353d4c99980b3ea9ae6b9fcf35916860f8206346b2fc63d7e:log:10', 'hash': '0x2b3d816e105863a353d4c99980b3ea9ae6b9fcf35916860f8206346b2fc63d7e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'value': 10284.5336494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x022d86936055aec9b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0xb4c2d0b9b9dcb787457ffd76605ad04d447d60388f2bd112ee136cb8bd28efb2:log:11', 'hash': '0xb4c2d0b9b9dcb787457ffd76605ad04d447d60388f2bd112ee136cb8bd28efb2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 37809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0801a1477b5528240000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x1a653ad7f1b851c5ccde87094585f4d5d70425c6fd1042aee11fe1a6233034c9:log:12', 'hash': '0x1a653ad7f1b851c5ccde87094585f4d5d70425c6fd1042aee11fe1a6233034c9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x72248f253a859137b1fee18eb65329ee04eea067', 'value': 56323.11067194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0bed482db77fec79a800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bc', 'uniqueId': '0x79f908ca1ab3e49e86467ad2659fd2b0688c330bdebaedb8d09ff53c4f6d0901:log:13', 'hash': '0x79f908ca1ab3e49e86467ad2659fd2b0688c330bdebaedb8d09ff53c4f6d0901', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 2346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7f2d4a4a5bfa680000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:04.000Z'}}, {'blockNum': '0x63b1bd', 'uniqueId': '0x8f190847fead9794331ec7cf7eaecc5bb1503b2b913e50346e4b05bca0ccba85:log:0', 'hash': '0x8f190847fead9794331ec7cf7eaecc5bb1503b2b913e50346e4b05bca0ccba85', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 15838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x035a94673eadfcb80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:11.000Z'}}, {'blockNum': '0x63b1bd', 'uniqueId': '0x83c354ff5f53cd94580cc4713ecbc556e60b4059aa5ff7c584e91af61b514de0:log:1', 'hash': '0x83c354ff5f53cd94580cc4713ecbc556e60b4059aa5ff7c584e91af61b514de0', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 1029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x37c83e601fd4f40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:11.000Z'}}, {'blockNum': '0x63b1c0', 'uniqueId': '0x1723eb21ec36ba812db28eadb8871a6da69c6e6b3dc5f2b462b0c19b1f6eb66b:log:5', 'hash': '0x1723eb21ec36ba812db28eadb8871a6da69c6e6b3dc5f2b462b0c19b1f6eb66b', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf39b262a650e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:33.000Z'}}, {'blockNum': '0x63b1c1', 'uniqueId': '0x9be3929b6559c5eb6f1ba410a3165ba8dead43b4e11be8ad76b48144d986c129:log:8', 'hash': '0x9be3929b6559c5eb6f1ba410a3165ba8dead43b4e11be8ad76b48144d986c129', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x867a3b59fa70f4f82290818a7e1da9f0afe441e9', 'value': 1594.7839548213308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x567412c561ea092019', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:04:37.000Z'}}, {'blockNum': '0x63b1c4', 'uniqueId': '0x25918df446eb1d0a1c2d8737350f75f949cefc2126717a8435e0eb1ff5a58c8c:log:2', 'hash': '0x25918df446eb1d0a1c2d8737350f75f949cefc2126717a8435e0eb1ff5a58c8c', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'value': 4992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010e9deaaf401e000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:01.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xc5150ede802652a771137558fa58a22aef890e0ce90a80fefca4cde122f37483:log:0', 'hash': '0xc5150ede802652a771137558fa58a22aef890e0ce90a80fefca4cde122f37483', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x60a7aaee606c3f1cca0129ca74969acc9110876c', 'value': 8372.20546025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01c5dbb0dc4073068400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xe0124e76c5544f547791a4eb29fd4afdd7ee052b7fae6006c85ee5944eb6a2b7:log:1', 'hash': '0xe0124e76c5544f547791a4eb29fd4afdd7ee052b7fae6006c85ee5944eb6a2b7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'value': 6476.81193138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x015f1bd257f844948800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0x90748ddd087b6f55cdddb64f8cfcb8b8547967b0acdadfee2e1bd487b93d38c2:log:2', 'hash': '0x90748ddd087b6f55cdddb64f8cfcb8b8547967b0acdadfee2e1bd487b93d38c2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 113134.06477015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x17f5028b727c99c47c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0x598ba2d7a9fa169fa6919b167a47de41eecb95829e82fee1c68d83c7fbcc81ce:log:3', 'hash': '0x598ba2d7a9fa169fa6919b167a47de41eecb95829e82fee1c68d83c7fbcc81ce', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 5649.00337516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01323bab900162803000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xddb1376fef2204d8379c901a4155304ccace67f5b182f49ece4ae6f2ac70094e:log:4', 'hash': '0xddb1376fef2204d8379c901a4155304ccace67f5b182f49ece4ae6f2ac70094e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 5656.70862801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0132a69a1ea5f7512400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0x3ccff32d3e8668485c6f9e573a0f863d6b422e822502c25d5ad3659e152beaa5:log:5', 'hash': '0x3ccff32d3e8668485c6f9e573a0f863d6b422e822502c25d5ad3659e152beaa5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'value': 14149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02ff04d1d76299f40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xfc6a1187474c90e4c4ed6e9c900b03b8db08c25501839cf3dd71aa0178e6d586:log:6', 'hash': '0xfc6a1187474c90e4c4ed6e9c900b03b8db08c25501839cf3dd71aa0178e6d586', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'value': 9998.00027501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021dfe20567224d41400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xd60b992f6f83915e1d524a19b00efae962928da013d3ed5f4e8dd3eb3d7da2db:log:7', 'hash': '0xd60b992f6f83915e1d524a19b00efae962928da013d3ed5f4e8dd3eb3d7da2db', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'value': 2988.43677705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa200e4374f727b0400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xf3ed80a6e2eef7e2c32aff2e93760d909da5b1f93793382bee5ce8741fc14cb3:log:8', 'hash': '0xf3ed80a6e2eef7e2c32aff2e93760d909da5b1f93793382bee5ce8741fc14cb3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x72248f253a859137b1fee18eb65329ee04eea067', 'value': 67744.83182381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0e587466b040d5431400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c8', 'uniqueId': '0xeb46897d2bac18ed9cba7fddbce78475260b0bc942f262613ac9fcbc913b862a:log:9', 'hash': '0xeb46897d2bac18ed9cba7fddbce78475260b0bc942f262613ac9fcbc913b862a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4215e853169db2597b5a789bdc16f094ed40cad2', 'value': 14574.60908331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x031617550dae9a234c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:05:52.000Z'}}, {'blockNum': '0x63b1c9', 'uniqueId': '0xe9bb0b5daa84e2e620d4883549f9e0619225314de73bcd007eb9a1fdce0e7cd0:log:12', 'hash': '0xe9bb0b5daa84e2e620d4883549f9e0619225314de73bcd007eb9a1fdce0e7cd0', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'value': 1077.098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3a63bccc4a4bb10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:06:01.000Z'}}, {'blockNum': '0x63b1ca', 'uniqueId': '0x782a0f50e13de53aeca7fbc0026bcd026bf150d13d65dc9a14b39404dc59a6ff:log:5', 'hash': '0x782a0f50e13de53aeca7fbc0026bcd026bf150d13d65dc9a14b39404dc59a6ff', 'from': '0x867a3b59fa70f4f82290818a7e1da9f0afe441e9', 'to': '0xc3434a910c0065c28c85158c7e407434c87817bc', 'value': 1594.7839548213308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x567412c561ea092019', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:06:17.000Z'}}, {'blockNum': '0x63b1ca', 'uniqueId': '0x7595e403cb2a1ec79a36495ef4170b85c69aa53b81a54092f4796c9d3bd000aa:log:6', 'hash': '0x7595e403cb2a1ec79a36495ef4170b85c69aa53b81a54092f4796c9d3bd000aa', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbad67f79d99a7062c8794f2d43baf7d17ac605de', 'value': 12946.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02bdd5e3dc1450c20000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:06:17.000Z'}}, {'blockNum': '0x63b1cf', 'uniqueId': '0x5e4ab3c4b44071ca1921bf0f78c3482d763fa3c5f70251cdb2ae97b399054fd7:log:17', 'hash': '0x5e4ab3c4b44071ca1921bf0f78c3482d763fa3c5f70251cdb2ae97b399054fd7', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x20217114cc3ccff768d608ab290ae53c984c6e98', 'value': 4310.312200367851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe9a9991d38c61167c8', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:07:22.000Z'}}, {'blockNum': '0x63b1d1', 'uniqueId': '0xc08d55a2db5a1429e69acad0bcea4c1f1d76226d0797c0c0f0466b5cd6fdf24d:log:3', 'hash': '0xc08d55a2db5a1429e69acad0bcea4c1f1d76226d0797c0c0f0466b5cd6fdf24d', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x4c5c4e1437fc4106f50f40c38878681236b9c12d', 'value': 3897.654474330969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd34ad25dbedd4b3bf9', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:07:41.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0x8092306b66c307ee2fba96e77ca6ca8600e8b286f8026f3ff422e66b4bafed1d:log:6', 'hash': '0x8092306b66c307ee2fba96e77ca6ca8600e8b286f8026f3ff422e66b4bafed1d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'value': 1679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5b04ce4446d8dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0x29872677c2adf06d78b82a01833b64242bdf600605f3d07a5e353bdc3a895fad:log:162', 'hash': '0x29872677c2adf06d78b82a01833b64242bdf600605f3d07a5e353bdc3a895fad', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'value': 8551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf8cf6aadc3d3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0x85a7f511ee4e39ccb820016e031bd6782033fee38fac1f6882c8c2088638ba84:log:165', 'hash': '0x85a7f511ee4e39ccb820016e031bd6782033fee38fac1f6882c8c2088638ba84', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 12541.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02a7df94f78cd2c10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0xbb20a5acc6f4e20dfb9fc6ed280a8b98b4f8022f4542683795fd80c65da05e55:log:173', 'hash': '0xbb20a5acc6f4e20dfb9fc6ed280a8b98b4f8022f4542683795fd80c65da05e55', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'value': 36243.36006421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07acc1a910d8f7cdb400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0xf452a6b17f105e69a168d43c4a9932ad3260a43e1ed390a6244aa7cc5eb9dbe1:log:175', 'hash': '0xf452a6b17f105e69a168d43c4a9932ad3260a43e1ed390a6244aa7cc5eb9dbe1', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbad67f79d99a7062c8794f2d43baf7d17ac605de', 'value': 13557.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02def038f0c51d4a0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d2', 'uniqueId': '0x302de54d0a4147df9fc9cb6d9b00902e5574e6aeabb94852121fff9e87f94a18:log:182', 'hash': '0x302de54d0a4147df9fc9cb6d9b00902e5574e6aeabb94852121fff9e87f94a18', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x95f86e6c1ddbc82fee6316314f9edef4713ffaaf', 'value': 94091.46499404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x13ecb562be21e02bb000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:08:42.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0xf835b3786dd6f5270761fbe2c17ba52c1fe5ae7447aacc4bd9886c080aa50e64:log:1', 'hash': '0xf835b3786dd6f5270761fbe2c17ba52c1fe5ae7447aacc4bd9886c080aa50e64', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1abc665ac6302a1ec9d286d4c2897c95cf64a756', 'value': 37412.73258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07ec25f6cc5b7f9e4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x6662681559e647046dda9c342abe8e0888ef23bff32f91a772096e224a9e28d0:log:2', 'hash': '0x6662681559e647046dda9c342abe8e0888ef23bff32f91a772096e224a9e28d0', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 9385.35726013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01fcc7ff1e5596135400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x4a2152bab5c6fa27fb3a4c9ac59c4e528d7ad2ca40801c5a99e1b0716ac1d0f8:log:11', 'hash': '0x4a2152bab5c6fa27fb3a4c9ac59c4e528d7ad2ca40801c5a99e1b0716ac1d0f8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'value': 1750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5ede20f01a45980000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0xf1112bbb41a3e1bddbd40ebbdb817d187d27a02af99c7b218e4eeeb7b3455c4f:log:12', 'hash': '0xf1112bbb41a3e1bddbd40ebbdb817d187d27a02af99c7b218e4eeeb7b3455c4f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 40166.63615093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0881700daf4fd2073400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x5798bd624468347d0757bdf07bed9e2c19c736eefc19330a38713762259e9de1:log:25', 'hash': '0x5798bd624468347d0757bdf07bed9e2c19c736eefc19330a38713762259e9de1', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113134.06477015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x17f5028b727c99c47c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x3dbb3d7ab4849a556d711dc6871e504473e043ad196dd482e43c3dae1614fe6d:log:31', 'hash': '0x3dbb3d7ab4849a556d711dc6871e504473e043ad196dd482e43c3dae1614fe6d', 'from': '0x412f9d6a49ef125bffac3ea59688cfcaa6c7cd6c', 'to': '0x967c6cc4eda2d5e77a1d359d8f6342011d4a3573', 'value': 1054.1187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3924d5ecb0948ec000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d3', 'uniqueId': '0x64d1cfcb7be2cc49ece3ac8e3f31e9d995268453b4773c43e47af3b8209cc6ec:log:55', 'hash': '0x64d1cfcb7be2cc49ece3ac8e3f31e9d995268453b4773c43e47af3b8209cc6ec', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'value': 1525.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x52b12d72159cdc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:05.000Z'}}, {'blockNum': '0x63b1d4', 'uniqueId': '0x8dbe1f62904334b8243d6712adc1ef71eb599ab6de699c48c877c5a1fbb785ca:log:9', 'hash': '0x8dbe1f62904334b8243d6712adc1ef71eb599ab6de699c48c877c5a1fbb785ca', 'from': '0x4c5c4e1437fc4106f50f40c38878681236b9c12d', 'to': '0xcfef471878edc247692a952553f14965f78f83fd', 'value': 3897.654474330969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd34ad25dbedd4b3bf9', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:26.000Z'}}, {'blockNum': '0x63b1d5', 'uniqueId': '0x313eb26397c654e9a50af977b674b7569aa25935a4202e4db024f6fd2331ac0f:log:70', 'hash': '0x313eb26397c654e9a50af977b674b7569aa25935a4202e4db024f6fd2331ac0f', 'from': '0x20217114cc3ccff768d608ab290ae53c984c6e98', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 4310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe9a543f4a42d980000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:32.000Z'}}, {'blockNum': '0x63b1d5', 'uniqueId': '0x18d7cfff01d171c8d4c94a8bd4a1ecda192d21efc854d7decf73deaea68bc2a5:log:132', 'hash': '0x18d7cfff01d171c8d4c94a8bd4a1ecda192d21efc854d7decf73deaea68bc2a5', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xf63f197e4cacabade5ad93636213a43c7d1a1473', 'value': 357482.86074835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4bb32f495140fa28ec00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:09:32.000Z'}}, {'blockNum': '0x63b1d6', 'uniqueId': '0xbeda4add26ad7ccead5a09c743c3d63c737eeb0cd1b889f3e83ebfa7475d1c09:log:1', 'hash': '0xbeda4add26ad7ccead5a09c743c3d63c737eeb0cd1b889f3e83ebfa7475d1c09', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1abc665ac6302a1ec9d286d4c2897c95cf64a756', 'value': 10640.26482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0240cf565f4039ab4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:11.000Z'}}, {'blockNum': '0x63b1d6', 'uniqueId': '0x29ed9ba40ab84a8128f1467cef13de4dc8a3a27e01071b1098c2ed1c4ca6ad23:log:12', 'hash': '0x29ed9ba40ab84a8128f1467cef13de4dc8a3a27e01071b1098c2ed1c4ca6ad23', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 4634.4106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xfb3b5dee8a50ee8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:11.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0xb6ec083563646fd14ccc993d91ebc4c8deb252a13718e564152a4690bfd3c2cb:log:13', 'hash': '0xb6ec083563646fd14ccc993d91ebc4c8deb252a13718e564152a4690bfd3c2cb', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 8593.26702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d1d789499c2b90c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x833f48c4bf5aecdfb806742c7ef0fa1870e1eb27247759fd9df58fc0d43874a1:log:14', 'hash': '0x833f48c4bf5aecdfb806742c7ef0fa1870e1eb27247759fd9df58fc0d43874a1', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xa4aa2fcd6214c8c868d4334127ac11051dd583d3', 'value': 2033.57852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6e3d92399448998000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0xc37e09bee3b9e77c79fbba8626ed9ca1099bfbe5859c8148bf0c94c6b4d7dfe4:log:15', 'hash': '0xc37e09bee3b9e77c79fbba8626ed9ca1099bfbe5859c8148bf0c94c6b4d7dfe4', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb8736cffca4f723e22a9cd217644db10f78c1b12', 'value': 9687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x020d2221681308fc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x1779164ec09d9599464478a2a50b546f12c593c1601e57c7d8cb584954b346d2:log:30', 'hash': '0x1779164ec09d9599464478a2a50b546f12c593c1601e57c7d8cb584954b346d2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3e7db0bdc36a1ded5892b1970f1f0f612fb8ea9a', 'value': 56999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c11ec06fa5aea3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x481ca47618c56e5fa5bd8a76c5f806589ee1d49402e05162bfe030a1ef6f8af2:log:31', 'hash': '0x481ca47618c56e5fa5bd8a76c5f806589ee1d49402e05162bfe030a1ef6f8af2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf709dc519423a3a9fd50588abde00d676a6f24f3', 'value': 52806.12250847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0b2ea029c2a029ab9c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x5d355d542561bbc1425c77e9590692ab3bd0a6dd683e336ef8ab73f7674e5c94:log:32', 'hash': '0x5d355d542561bbc1425c77e9590692ab3bd0a6dd683e336ef8ab73f7674e5c94', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2c7fb08a352d3480f1c63f7a31a8ebe6aa0f9954', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055de6a779bbac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0x99323a401d3bb3eb91e555e585fb3c3dd477090a03281090cc9704c915cf6f44:log:33', 'hash': '0x99323a401d3bb3eb91e555e585fb3c3dd477090a03281090cc9704c915cf6f44', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1cd27134394c70d7663f1ee271b9e37a4fbb85dc', 'value': 21360.37482675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0485f2bfd4d01dd06c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d7', 'uniqueId': '0xf4652bb5ff099fdb4c962792291793d42e21203a6e232c6115fd53c6a0df5a7c:log:34', 'hash': '0xf4652bb5ff099fdb4c962792291793d42e21203a6e232c6115fd53c6a0df5a7c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 9319.4922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01f935ef6b1d37ae8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:16.000Z'}}, {'blockNum': '0x63b1d8', 'uniqueId': '0x3400d9887dd0e7c917fb5b816f1bb604ea1b63bb1f1ed99ecbb4781ca4460daf:log:66', 'hash': '0x3400d9887dd0e7c917fb5b816f1bb604ea1b63bb1f1ed99ecbb4781ca4460daf', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0xc7e029158a140a91f24c151e7fb5fd3f7c09524d', 'value': 2244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x79a5c17ec748900000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:10:42.000Z'}}, {'blockNum': '0x63b1d9', 'uniqueId': '0x4f672a7cee1d92fa86952db37234643eb8845b136e17a835a464223c77c3e398:log:126', 'hash': '0x4f672a7cee1d92fa86952db37234643eb8845b136e17a835a464223c77c3e398', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0x5fd9b40d53aa9fced8a54d21904f8eae5842c174', 'value': 689.1493813505577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x255bde6f1184338165', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:11:02.000Z'}}, {'blockNum': '0x63b1db', 'uniqueId': '0xb0f2cd5c6ca36178bf6be62af4725bc0b38f469e58cefc66db00fae460969cfa:log:16', 'hash': '0xb0f2cd5c6ca36178bf6be62af4725bc0b38f469e58cefc66db00fae460969cfa', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 7780.6585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01a5ca53e20df3a84000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:11:07.000Z'}}, {'blockNum': '0x63b1dd', 'uniqueId': '0x658fd94e840cc6b6ba6dca8330d92f342ba16d31d1993505f1236fc9a22ebd5c:log:1', 'hash': '0x658fd94e840cc6b6ba6dca8330d92f342ba16d31d1993505f1236fc9a22ebd5c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xaea424a9c42986d1431957afcb01c4fa78d99df8', 'value': 1442.83654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4e37611ca785afc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:11:58.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0x6131661bc7a93982532a87a73c6197b3e5e13830566aa824bde4549c589194fe:log:7', 'hash': '0x6131661bc7a93982532a87a73c6197b3e5e13830566aa824bde4549c589194fe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x269b268e501c280244d64479caac62d107444144', 'value': 6740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x016d604a31f314d00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0xbac9bfa21d025b3b14581b15a628fcab694c9ab982103813d79cdad021b69dab:log:8', 'hash': '0xbac9bfa21d025b3b14581b15a628fcab694c9ab982103813d79cdad021b69dab', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe5d3ba1018d1a3a224c81d6a7cc531703627e1df', 'value': 21026.88872993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0473deb336a3e6306400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0x861b84f3f72adf511e74dc6783658fc42c4cb3ffc7f45dbe0d8b10b863a748f6:log:9', 'hash': '0x861b84f3f72adf511e74dc6783658fc42c4cb3ffc7f45dbe0d8b10b863a748f6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'value': 13663.38356164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02e4b189ad9a57c69000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0x4664df671851ebee12c1cf9e0836c0c30d44e353d6c3a3eaa852d222cf367b07:log:10', 'hash': '0x4664df671851ebee12c1cf9e0836c0c30d44e353d6c3a3eaa852d222cf367b07', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x666eb514017c7c55eee1241eb01fbb2183efdb5a', 'value': 9201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01f2c9868f0341240000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1de', 'uniqueId': '0xd7857ddd14e1aa6b8ba3f0b3ca21cf45e3d9a6cb51fb8246108d3d6618960690:log:11', 'hash': '0xd7857ddd14e1aa6b8ba3f0b3ca21cf45e3d9a6cb51fb8246108d3d6618960690', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'value': 9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021dfe1f5c5363780000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:10.000Z'}}, {'blockNum': '0x63b1e0', 'uniqueId': '0x1215819cf1439a07cfdf7632aae97abe37ba23b678e6aca6ed1f39faa4761f59:log:5', 'hash': '0x1215819cf1439a07cfdf7632aae97abe37ba23b678e6aca6ed1f39faa4761f59', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x20217114cc3ccff768d608ab290ae53c984c6e98', 'value': 3314.6724407766965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb3b0521effc805a0ac', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:12:20.000Z'}}, {'blockNum': '0x63b1e6', 'uniqueId': '0x1acc1f336dec5fb186016003d739627fb293764838dac6f5b0f3efd947088b16:log:8', 'hash': '0x1acc1f336dec5fb186016003d739627fb293764838dac6f5b0f3efd947088b16', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'value': 4472.59526184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xf275ba5dd1746ba000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:13:28.000Z'}}, {'blockNum': '0x63b1e7', 'uniqueId': '0x6f04815446b26ec5593721bf3868a09d5dbb3a41f055b9628e89718ce99634a4:log:61', 'hash': '0x6f04815446b26ec5593721bf3868a09d5dbb3a41f055b9628e89718ce99634a4', 'from': '0xec893c816bc01bea6ce629a3d8e6053d0abd84b1', 'to': '0x43a5b1be13c083a858b217989b27b0246548791a', 'value': 210.8660752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0b6e5aca2d94ce8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:13:32.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0x0ddc44b4b0bdff2a0a63e993aeb3692585621eaf7116c616ab27305ba6b826a7:log:4', 'hash': '0x0ddc44b4b0bdff2a0a63e993aeb3692585621eaf7116c616ab27305ba6b826a7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 63603.42625451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d77f2da7914fe614c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0xfa3592e56a9f2d3e92de4f83cf685d14d0573cdc83539bedf386bd9d88b82c08:log:5', 'hash': '0xfa3592e56a9f2d3e92de4f83cf685d14d0573cdc83539bedf386bd9d88b82c08', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x25e6ce3e76b6e7ebaae0b92fcf5177f433f43676', 'value': 2334.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7e8db21549f56a0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0x5d073a29626ccf5e7fad19018e7b4f2495190703877069cbc843d2a236d34190:log:6', 'hash': '0x5d073a29626ccf5e7fad19018e7b4f2495190703877069cbc843d2a236d34190', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2c7fb08a352d3480f1c63f7a31a8ebe6aa0f9954', 'value': 3023.93722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa3ed8f20157e404000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0xae0343da1b664221fa379a43a7460c6d5b19426bf47c1dab374b9d1126273eeb:log:7', 'hash': '0xae0343da1b664221fa379a43a7460c6d5b19426bf47c1dab374b9d1126273eeb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe51f926179ad4c39fd27ecdf75293631c0e627bd', 'value': 717.42410109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x26e4426add95625400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0x623acbe9bec1f6009471c8ca157904f36fae39c025df900850d2f9be605b6862:log:11', 'hash': '0x623acbe9bec1f6009471c8ca157904f36fae39c025df900850d2f9be605b6862', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeb8f7b8c27732e00bef318441422000d8ccd1e54', 'value': 7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6124fee993bc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1e9', 'uniqueId': '0x733e37c7dc063270275478b29f2d976c46792c5aaab319545c8120add39193c0:log:52', 'hash': '0x733e37c7dc063270275478b29f2d976c46792c5aaab319545c8120add39193c0', 'from': '0x20217114cc3ccff768d608ab290ae53c984c6e98', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 3315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb3b4ddd86093ec0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:26.000Z'}}, {'blockNum': '0x63b1eb', 'uniqueId': '0xf09dd246d6ceb11a629b09f92f32e245affc48d8485260c33b72e44a73f94614:log:69', 'hash': '0xf09dd246d6ceb11a629b09f92f32e245affc48d8485260c33b72e44a73f94614', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'value': 1819.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x629e78b9771ea00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:14:51.000Z'}}, {'blockNum': '0x63b1ed', 'uniqueId': '0xe2ba7c6fe687e5a5e0ceaceef7cca4c4f77e0a8b12fb8e38b6fa6e1fbe9f2d19:log:25', 'hash': '0xe2ba7c6fe687e5a5e0ceaceef7cca4c4f77e0a8b12fb8e38b6fa6e1fbe9f2d19', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x793e3c4acca8404260ef34bce9f49a98fe0bd7d1', 'value': 5798.600000000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x013a57bd89b354234240', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:15:04.000Z'}}, {'blockNum': '0x63b1f2', 'uniqueId': '0x42bd47ff4afdacf408ace92149ee2ba41caa6157539fa5d922204c34d0b1ee90:log:27', 'hash': '0x42bd47ff4afdacf408ace92149ee2ba41caa6157539fa5d922204c34d0b1ee90', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 697.14938135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x25cae424ae9e157c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:02.000Z'}}, {'blockNum': '0x63b1f2', 'uniqueId': '0x7223d3be019bf7c6875fb2666ed6a5a820fc463225b23fece3c7743f20806d79:log:28', 'hash': '0x7223d3be019bf7c6875fb2666ed6a5a820fc463225b23fece3c7743f20806d79', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 24930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x054775400332f8480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:02.000Z'}}, {'blockNum': '0x63b1f3', 'uniqueId': '0xd84c37219ded57b0062bb650fb001c57fb7b7e5b78fe97de367f29753bbe0e94:log:4', 'hash': '0xd84c37219ded57b0062bb650fb001c57fb7b7e5b78fe97de367f29753bbe0e94', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xaba3b498a450234314a41945102fbe7a7427342e', 'value': 7818.90465987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01a7dd1989d1c5ceac00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:03.000Z'}}, {'blockNum': '0x63b1f5', 'uniqueId': '0x05fb610396d468488401aed09d2fcf54cdd755b39efc87a8b4f0aff372d411cb:log:11', 'hash': '0x05fb610396d468488401aed09d2fcf54cdd755b39efc87a8b4f0aff372d411cb', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40eb8da68712a2998af3c428f211723430fa4449', 'value': 15201.60386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x033814a1f91ef2f54000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:17.000Z'}}, {'blockNum': '0x63b1f7', 'uniqueId': '0x671cef3faa67e2eb6a1dcbbb9d969ad90148f70535122b446688cee62a7f4a67:log:15', 'hash': '0x671cef3faa67e2eb6a1dcbbb9d969ad90148f70535122b446688cee62a7f4a67', 'from': '0xdd795b7c0236cc28d88e7a0c90eae047121a5daf', 'to': '0xe7878ca0b3f7b0057a106f6190af7570a6a9a832', 'value': 889.7901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x303c5175a3d74d4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:46.000Z'}}, {'blockNum': '0x63b1f7', 'uniqueId': '0xfa82954111e6861dcac6cdaed094ec86b8e95b9d6131a83297056ad1729d7f2a:log:50', 'hash': '0xfa82954111e6861dcac6cdaed094ec86b8e95b9d6131a83297056ad1729d7f2a', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x2ad603904851b49b85deaf1d9a2a6f08a900d556', 'value': 1379.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4ac8688518835e0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:16:46.000Z'}}, {'blockNum': '0x63b1fb', 'uniqueId': '0x8d66a34b056a8796956cdb5bfb6f7a666e4b004d630214391acc381de8bcea22:log:1', 'hash': '0x8d66a34b056a8796956cdb5bfb6f7a666e4b004d630214391acc381de8bcea22', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 17590.17714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03b990bef013c89b4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:17:12.000Z'}}, {'blockNum': '0x63b1fc', 'uniqueId': '0x655a8e9a689bd1d520fcb67716c58c4e3d7740dfb4dfa7196c11e7f5a8411f3f:log:10', 'hash': '0x655a8e9a689bd1d520fcb67716c58c4e3d7740dfb4dfa7196c11e7f5a8411f3f', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 8158.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ba486e0975f3fc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:17:23.000Z'}}, {'blockNum': '0x63b1ff', 'uniqueId': '0xd05bffbb5e04a3df70643e45b5041ed5e8bf4f6c89e75169e2924bb093b4b745:log:1', 'hash': '0xd05bffbb5e04a3df70643e45b5041ed5e8bf4f6c89e75169e2924bb093b4b745', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6fdc6a397615545d91600adbf435e00f0ae97cd7', 'value': 37846.59912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0803ab1263c3936d0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:00.000Z'}}, {'blockNum': '0x63b1ff', 'uniqueId': '0x61abd84da5d055365cf8de8a54debe3b6f6746071742b4a2489b82f2961b73d9:log:4', 'hash': '0x61abd84da5d055365cf8de8a54debe3b6f6746071742b4a2489b82f2961b73d9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6dec88550c05b6e77d261590813b3f938f2500eb', 'value': 4151.78934221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe111a6c99e07c19400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:00.000Z'}}, {'blockNum': '0x63b1ff', 'uniqueId': '0x3a77e4405424084fbbecd4e420c711ab7c1c6af43ea6b2924f796892ec08d81d:log:5', 'hash': '0x3a77e4405424084fbbecd4e420c711ab7c1c6af43ea6b2924f796892ec08d81d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'value': 11595.31701157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x027495595b6681d5f400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:00.000Z'}}, {'blockNum': '0x63b1ff', 'uniqueId': '0x7c3e632f7296fdfdf4884a53ea90fa77027be1f6e0a4f130d432acf5605eb600:log:6', 'hash': '0x7c3e632f7296fdfdf4884a53ea90fa77027be1f6e0a4f130d432acf5605eb600', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 75549.02759664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0fff855fc33da685c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:00.000Z'}}, {'blockNum': '0x63b201', 'uniqueId': '0x5661c0bc0d68a0d78831d1381705fcbe370697a2804c6545e9bd6ae31aa7c477:log:0', 'hash': '0x5661c0bc0d68a0d78831d1381705fcbe370697a2804c6545e9bd6ae31aa7c477', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3300482bfd2418361b6e0c52fccf49ebdd718eb3', 'value': 5471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x012895608966521c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:36.000Z'}}, {'blockNum': '0x63b201', 'uniqueId': '0x44bef05a30302bdc925efe0ab46503219fa81ed5989d9f6081b1918397199c18:log:48', 'hash': '0x44bef05a30302bdc925efe0ab46503219fa81ed5989d9f6081b1918397199c18', 'from': '0x6dec88550c05b6e77d261590813b3f938f2500eb', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 4151.78934221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe111a6c99e07c19400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:18:36.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0x4f44a685bd02dea8f6f73d40f7d886238a005d4faea315eca2f7590ca03cef0c:log:4', 'hash': '0x4f44a685bd02dea8f6f73d40f7d886238a005d4faea315eca2f7590ca03cef0c', 'from': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2347.0432533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7f3bc4abb54fa90800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0xa8ab7cc81afb985e2eb8ec554e235dd142b85daffdca4600a935a72bea843d29:log:5', 'hash': '0xa8ab7cc81afb985e2eb8ec554e235dd142b85daffdca4600a935a72bea843d29', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x015c154688157f340000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0xaeed73a527f79f7e2c082426fe32b34959133c0e6e128e193c1e99837721a25d:log:6', 'hash': '0xaeed73a527f79f7e2c082426fe32b34959133c0e6e128e193c1e99837721a25d', 'from': '0xbad67f79d99a7062c8794f2d43baf7d17ac605de', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26503.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x059cc61cccd96e0c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0xab02a762a6a6e1b6ed61aacabf4a066aa4af890dbfcbbe050f5485d9f6e96f23:log:7', 'hash': '0xab02a762a6a6e1b6ed61aacabf4a066aa4af890dbfcbbe050f5485d9f6e96f23', 'from': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2988.43677705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa200e4374f727b0400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b204', 'uniqueId': '0xb7af3465ff9be61d4435dc82ef554f2680d241290d5ee9a947607daec2e855fc:log:8', 'hash': '0xb7af3465ff9be61d4435dc82ef554f2680d241290d5ee9a947607daec2e855fc', 'from': '0x72248f253a859137b1fee18eb65329ee04eea067', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 124067.94249575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1a45bc9467c0c1bcbc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:03.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0x1192ab3ee948365152a2f4d98f7c73b945382c3e98b931db3d5c34a6de40f55e:log:0', 'hash': '0x1192ab3ee948365152a2f4d98f7c73b945382c3e98b931db3d5c34a6de40f55e', 'from': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6476.81193138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x015f1bd257f844948800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0xf7c12cf484d9965da219408b845e5131d9c33238f7d127209ec1082311eef391:log:1', 'hash': '0xf7c12cf484d9965da219408b845e5131d9c33238f7d127209ec1082311eef391', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d4916877e88206c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0x0d1099e90f9e5c7a78c07456bdebe6b14399f2cc0cea040ce5899403e65bbea6:log:2', 'hash': '0x0d1099e90f9e5c7a78c07456bdebe6b14399f2cc0cea040ce5899403e65bbea6', 'from': '0x60a7aaee606c3f1cca0129ca74969acc9110876c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8372.20546025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01c5dbb0dc4073068400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0xd12d5d27fb335f73ae46a8f301a4a706c8f6faf47d2a99f4bb7f53760199434d:log:3', 'hash': '0xd12d5d27fb335f73ae46a8f301a4a706c8f6faf47d2a99f4bb7f53760199434d', 'from': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48560.36126013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a487663b24480e95400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0x7adc46140635fde0cf6bbf583d629af2e141347d72b4759605f1122bbcae322e:log:4', 'hash': '0x7adc46140635fde0cf6bbf583d629af2e141347d72b4759605f1122bbcae322e', 'from': '0xc3434a910c0065c28c85158c7e407434c87817bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1594.7839548213308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x567412c561ea092019', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b205', 'uniqueId': '0x0dea22ba47817470a474335d211d29405ea10f25f8eab293bed53c49c95ddb9f:log:5', 'hash': '0x0dea22ba47817470a474335d211d29405ea10f25f8eab293bed53c49c95ddb9f', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf39b262a650e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:05.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x1f3658471accab3d2d37750be700483a4414f5eaa5b3df4ba3b0ab46ea99ffab:log:5', 'hash': '0x1f3658471accab3d2d37750be700483a4414f5eaa5b3df4ba3b0ab46ea99ffab', 'from': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37759.4585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07fef1c0b79094204000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x646687070227d82e48b9343d86f961d76e7a3c4660a22b4631bf971b5c30103f:log:6', 'hash': '0x646687070227d82e48b9343d86f961d76e7a3c4660a22b4631bf971b5c30103f', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5656.70862801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0132a69a1ea5f7512400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0xfdf91a9ed8eb84a232bb1560173033aa133f56de0863c38f14b5071f30d54cc1:log:7', 'hash': '0xfdf91a9ed8eb84a232bb1560173033aa133f56de0863c38f14b5071f30d54cc1', 'from': '0x38db1e8aac7a6f612439e335765afdf3f1472d01', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10284.5336494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x022d86936055aec9b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x1c29c41ea2e99a28f468d4b4c846df81e07375604b005c3366674a997f8285b2:log:9', 'hash': '0x1c29c41ea2e99a28f468d4b4c846df81e07375604b005c3366674a997f8285b2', 'from': '0x16a9d1c974be039d96eb3d35e3300308d341e86b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x04e1003b28d9280000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x30028d3c9aef9f76cd357335be9d5e9e30c7a6c5ef264ceb6c472c41a28fd827:log:10', 'hash': '0x30028d3c9aef9f76cd357335be9d5e9e30c7a6c5ef264ceb6c472c41a28fd827', 'from': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6069.098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014901a77b8a69b10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x497263187f9fc8301160c1235c41fb7c7d1e144fdf67f148292e9f0b2e94c6d7:log:12', 'hash': '0x497263187f9fc8301160c1235c41fb7c7d1e144fdf67f148292e9f0b2e94c6d7', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5649.00337516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01323bab900162803000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0xfb783feffaaf617ed49b5e74c251a8261cdf2307624bd82d01eedee84967fe65:log:13', 'hash': '0xfb783feffaaf617ed49b5e74c251a8261cdf2307624bd82d01eedee84967fe65', 'from': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39506.70057321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x085da99b87dd2f3c8400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x7c8c5d73427f344fe733806dbcb5b11c29e99f117439787998d6855bc7f44c63:log:14', 'hash': '0x7c8c5d73427f344fe733806dbcb5b11c29e99f117439787998d6855bc7f44c63', 'from': '0x4215e853169db2597b5a789bdc16f094ed40cad2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14574.60908331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x031617550dae9a234c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0xa0ad4ab8bbca8d0e1c4064c2322e5f47268abc5cf85d344219bd22d758582ee4:log:16', 'hash': '0xa0ad4ab8bbca8d0e1c4064c2322e5f47268abc5cf85d344219bd22d758582ee4', 'from': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19996.00027501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x043bfc3fb2c5884c1400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x59ac978d4f7e90a0cb1a6d568cd90e9dca75d004d7cb588749b667feb0e1a9d2:log:17', 'hash': '0x59ac978d4f7e90a0cb1a6d568cd90e9dca75d004d7cb588749b667feb0e1a9d2', 'from': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10171.38165985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02276446c1580a536400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x63b3529dd7d61f02647ea37249041d3b8be621203126e221bc0fe5b589ee0ea2:log:19', 'hash': '0x63b3529dd7d61f02647ea37249041d3b8be621203126e221bc0fe5b589ee0ea2', 'from': '0xfb861c76dab6900585081449d3b81d8efe876945', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6114.68732424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014b7a554c64f4ff2000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x25d069bc8b57a17aff87e740a42eb903ae4efce46da346547db70889c69cfad5:log:20', 'hash': '0x25d069bc8b57a17aff87e740a42eb903ae4efce46da346547db70889c69cfad5', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7f2d4a4a5bfa680000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x50822e8b4e2bd84fe9fc07ffdb707d11556a5540197ccfb57b64af89dbaf020b:log:23', 'hash': '0x50822e8b4e2bd84fe9fc07ffdb707d11556a5540197ccfb57b64af89dbaf020b', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02a079f52f7e40b40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0x4f11291c30f05e225224dcfde9270f9dd3fd84686a476dc8afe285ac5c361ad5:log:26', 'hash': '0x4f11291c30f05e225224dcfde9270f9dd3fd84686a476dc8afe285ac5c361ad5', 'from': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39892.61077839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0872952ffed5d73f5c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b206', 'uniqueId': '0xaa6635a247daac79abef06c2ab7441c5b5a3819d1b888a1cd81b7a1133fadda0:log:27', 'hash': '0xaa6635a247daac79abef06c2ab7441c5b5a3819d1b888a1cd81b7a1133fadda0', 'from': '0x6285895b68669a5139644d5adb4f664b7b79e226', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6005.058425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x014588ed355fd7b49000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:19:28.000Z'}}, {'blockNum': '0x63b20a', 'uniqueId': '0x5fb5bc182d1be5d2098c08f7bc46db63eae69ddee53a0c9e70aae298368a6a91:log:5', 'hash': '0x5fb5bc182d1be5d2098c08f7bc46db63eae69ddee53a0c9e70aae298368a6a91', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 7907.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01acb12130c77dcd0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:13.000Z'}}, {'blockNum': '0x63b20a', 'uniqueId': '0x009617a3b8442ceee205c7623aaf94937c8fd8ccdbde8530dc2412937e18efb3:log:83', 'hash': '0x009617a3b8442ceee205c7623aaf94937c8fd8ccdbde8530dc2412937e18efb3', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x73cda4b2f7b1f9458633ec9a40be3c2230f3fc84', 'value': 1988.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6bc9349b88fd2c7960', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:13.000Z'}}, {'blockNum': '0x63b20c', 'uniqueId': '0x9016a123c8af76e7c05035361a80e2f9d7255d64b4755e941d0e5a66d63b7444:log:7', 'hash': '0x9016a123c8af76e7c05035361a80e2f9d7255d64b4755e941d0e5a66d63b7444', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe51f926179ad4c39fd27ecdf75293631c0e627bd', 'value': 763.66441268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2965f90143d6b65000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:42.000Z'}}, {'blockNum': '0x63b20c', 'uniqueId': '0xd8c18f2f4e180e4af63eeb443f7954903d2f047d0ba012a60fb559a29a8037b0:log:8', 'hash': '0xd8c18f2f4e180e4af63eeb443f7954903d2f047d0ba012a60fb559a29a8037b0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x269b3d15f507a3577e555e3377fece12264b4943', 'value': 3949.96141428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd620b9f27ec2f75000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:42.000Z'}}, {'blockNum': '0x63b20c', 'uniqueId': '0xe0ec96d82449988afc79c8acb9b88fff675ed783dcf33e7108cac22c180871b7:log:9', 'hash': '0xe0ec96d82449988afc79c8acb9b88fff675ed783dcf33e7108cac22c180871b7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'value': 5691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0134827d8bca2c0c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:20:42.000Z'}}, {'blockNum': '0x63b20f', 'uniqueId': '0x7dd3dbeafded8688db05169a42d0dda58febee316172da6f83a704c388b227a0:log:0', 'hash': '0x7dd3dbeafded8688db05169a42d0dda58febee316172da6f83a704c388b227a0', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 18309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03e0886abec2b2f40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:21:14.000Z'}}, {'blockNum': '0x63b212', 'uniqueId': '0x1498217dce5f755ae9f6a444e185c72a79aa6cafb359f168bb1e710bce85d151:log:7', 'hash': '0x1498217dce5f755ae9f6a444e185c72a79aa6cafb359f168bb1e710bce85d151', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x17f0ae4d42c81c93483d0973e6250abe0c31d1f8', 'value': 1958.12037489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6a26610a65652ba400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:22:36.000Z'}}, {'blockNum': '0x63b212', 'uniqueId': '0xdb6ab0c3e7b6687c9b7ccf3d3b27c71b6353dc196fcbe0ae4af7f281f850dfd6:log:8', 'hash': '0xdb6ab0c3e7b6687c9b7ccf3d3b27c71b6353dc196fcbe0ae4af7f281f850dfd6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 2168.07437829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x758813801ab9537400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:22:36.000Z'}}, {'blockNum': '0x63b215', 'uniqueId': '0xdc6233d3b8b7bd30bceefb17966bbb4108f13563ef44902005663ef5f64729a3:log:9', 'hash': '0xdc6233d3b8b7bd30bceefb17966bbb4108f13563ef44902005663ef5f64729a3', 'from': '0x8c7d6ffaf732292ce786b0a09209422b8c3d7998', 'to': '0x83a5fe3972c096dac1a96adcc7f9a4e7d134fed0', 'value': 5103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0114a259e725b25c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:23:24.000Z'}}, {'blockNum': '0x63b215', 'uniqueId': '0x7829a84d212175d483bc1408ea88abd24a75acbe676d3d00573ff3a3b87da885:log:14', 'hash': '0x7829a84d212175d483bc1408ea88abd24a75acbe676d3d00573ff3a3b87da885', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'value': 3524.09580686183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbf0aa760e18b01ff80', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:23:24.000Z'}}, {'blockNum': '0x63b216', 'uniqueId': '0xcd0714028923de77536a90912f6569fd04abd5d195584554b885e7f39bb50db5:log:8', 'hash': '0xcd0714028923de77536a90912f6569fd04abd5d195584554b885e7f39bb50db5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeb8f7b8c27732e00bef318441422000d8ccd1e54', 'value': 2068.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x70280862645d2c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:23:40.000Z'}}, {'blockNum': '0x63b216', 'uniqueId': '0xfee1b302f95c697816b8eaf828df73f97dc0586cb5167a2ba7417a88ae0956b3:log:9', 'hash': '0xfee1b302f95c697816b8eaf828df73f97dc0586cb5167a2ba7417a88ae0956b3', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2073.3676700252495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7065c1aeb71a4fd77f', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:23:40.000Z'}}, {'blockNum': '0x63b218', 'uniqueId': '0xf793232c3453c5ba786bb13539a3d5339f458b756cc1f34ae547d262e945d4b0:log:2', 'hash': '0xf793232c3453c5ba786bb13539a3d5339f458b756cc1f34ae547d262e945d4b0', 'from': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'to': '0xeb423ee26757e0393e33854d73cf8d194969a59a', 'value': 3524.09580686183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbf0aa760e18b01ff80', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:24:03.000Z'}}, {'blockNum': '0x63b219', 'uniqueId': '0xb1258edda0058f912bf7fc77d82ce756e710d073d66df7d8a1e195437134ce42:log:0', 'hash': '0xb1258edda0058f912bf7fc77d82ce756e710d073d66df7d8a1e195437134ce42', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'value': 1762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5f84a980861e480000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:24:17.000Z'}}, {'blockNum': '0x63b219', 'uniqueId': '0xbc563d5064e2ff7baf06a6c7be4d98904673a793ea2344399507d8da4a303877:log:1', 'hash': '0xbc563d5064e2ff7baf06a6c7be4d98904673a793ea2344399507d8da4a303877', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'value': 10008.4588115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021e8f4485f8c9bd3800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:24:17.000Z'}}, {'blockNum': '0x63b21e', 'uniqueId': '0x365bc0a82ecfb772b935839455ee3c31939028979ebb12d479708d89049ee38f:log:6', 'hash': '0x365bc0a82ecfb772b935839455ee3c31939028979ebb12d479708d89049ee38f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0ec6f7a6b489585c026427fcb6ab9667f882c784', 'value': 357698.4167916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4bbedeba38865b25e000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:20.000Z'}}, {'blockNum': '0x63b21e', 'uniqueId': '0x5ee98d2465c5c0ab127bf2607379578b61828e6942a0f99aac17433de8f37776:log:7', 'hash': '0x5ee98d2465c5c0ab127bf2607379578b61828e6942a0f99aac17433de8f37776', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0bc3221c1619b19653dd514d5100d298df569ce9', 'value': 18.17804459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xfc45633e42294c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:20.000Z'}}, {'blockNum': '0x63b21e', 'uniqueId': '0x0bac679c2e499a64539945d6a145c6b35a56173d846d1e77097a56b8e0a39faf:log:19', 'hash': '0x0bac679c2e499a64539945d6a145c6b35a56173d846d1e77097a56b8e0a39faf', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x950c5e88436da0eae5c877c912edb70a03f1c360', 'value': 2073.3676700252495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7065c1aeb71a4fd77f', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:20.000Z'}}, {'blockNum': '0x63b21f', 'uniqueId': '0x56b0634265f412e2fcc6d0c03949ef7cbf1bbaf799f37214a3facf655ccd0625:log:25', 'hash': '0x56b0634265f412e2fcc6d0c03949ef7cbf1bbaf799f37214a3facf655ccd0625', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 8072.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01b59c0697388d8f0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:26.000Z'}}, {'blockNum': '0x63b21f', 'uniqueId': '0xa7e6e1977319736fc821626e5b7abe69a3314c1de9aa3934999200766b1b8244:log:27', 'hash': '0xa7e6e1977319736fc821626e5b7abe69a3314c1de9aa3934999200766b1b8244', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x535b78da570d960db73436102bf55aed4204ddd9', 'value': 989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x359d21d40dad540000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:27:26.000Z'}}, {'blockNum': '0x63b221', 'uniqueId': '0x7552657190e419e327d7c663026edf26100d96f771a63014781774cd45ffdfc3:log:130', 'hash': '0x7552657190e419e327d7c663026edf26100d96f771a63014781774cd45ffdfc3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'value': 5732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0136bb7ace8ffb100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:28:17.000Z'}}, {'blockNum': '0x63b221', 'uniqueId': '0x86dfb5dd7c8975400248ea8fa7416c72c0a621aaadba57aed814f8d1d34a62e8:log:132', 'hash': '0x86dfb5dd7c8975400248ea8fa7416c72c0a621aaadba57aed814f8d1d34a62e8', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 4326.7151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xea8d3beb87eab9c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:28:17.000Z'}}, {'blockNum': '0x63b223', 'uniqueId': '0x094df9e5bb5d23f0ff3f60b5c0262fd771a7dc4e91d8671718bc75cd506552b9:log:40', 'hash': '0x094df9e5bb5d23f0ff3f60b5c0262fd771a7dc4e91d8671718bc75cd506552b9', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x461f5586a9f6700bf8a968a74cc0ba8239929c9e', 'value': 285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0f732b66015a540000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:28:33.000Z'}}, {'blockNum': '0x63b224', 'uniqueId': '0xcfac14090767527af6ee606580035a116189fea1d0a9123d1d3d5b2c4348d026:log:0', 'hash': '0xcfac14090767527af6ee606580035a116189fea1d0a9123d1d3d5b2c4348d026', 'from': '0x2ef5625a8acecfdcbcdcff13a049152793da8cc9', 'to': '0x01b596aee21a283a35582425ff93c1df5d6c15c7', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:28:45.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x2997d9d96ecad91c00341ef14596fd9d1eac6ec595e197763e2a0ebdaaf4d432:log:0', 'hash': '0x2997d9d96ecad91c00341ef14596fd9d1eac6ec595e197763e2a0ebdaaf4d432', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'value': 5358.4596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01227b90b7dd41bd0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xfc7521bcaef28ad0f6463f32258c9d4b273d34baad4494666f683c0c059b4ac6:log:3', 'hash': '0xfc7521bcaef28ad0f6463f32258c9d4b273d34baad4494666f683c0c059b4ac6', 'from': '0x490e3a01cdccf6cf240837b3de70b8c99ebd9fc7', 'to': '0xe5967a51c2f63d8dbfcc511acf1978f5250be713', 'value': 2565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8b0c86960c2cf40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x81cbf1856c466a2854f776eec50d2bd6578f96bee9650c6f690c1e7d936be73b:log:10', 'hash': '0x81cbf1856c466a2854f776eec50d2bd6578f96bee9650c6f690c1e7d936be73b', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3942.47937828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd5b8e46a650a481000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x731e57fbbf095faf59eaf324db3d202a9b35874c83b08ca0534e49283b87a1cf:log:12', 'hash': '0x731e57fbbf095faf59eaf324db3d202a9b35874c83b08ca0534e49283b87a1cf', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23689.61264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0504376adf220bb60000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xd564823b5d63ab07295733b556cdb01ef72a07ecdb427e611a16cc58aaad8c12:log:16', 'hash': '0xd564823b5d63ab07295733b556cdb01ef72a07ecdb427e611a16cc58aaad8c12', 'from': '0x967c6cc4eda2d5e77a1d359d8f6342011d4a3573', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1054.1187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3924d5ecb0948ec000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x7f58e192146341ab46d825f70187e958c8ba381854cd842d7b407c171722fe5b:log:17', 'hash': '0x7f58e192146341ab46d825f70187e958c8ba381854cd842d7b407c171722fe5b', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17912.75922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03cb0d78b4b9633f4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x413a3b9ac4e91e1ac94368f896f2b8d583cd6f0ee6c241d9b293e40524eee51d:log:19', 'hash': '0x413a3b9ac4e91e1ac94368f896f2b8d583cd6f0ee6c241d9b293e40524eee51d', 'from': '0xa4aa2fcd6214c8c868d4334127ac11051dd583d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2033.57852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6e3d92399448998000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x50e351c29e70cc7a050b616655c3a4ca46c1370c05f0c8491d4a0f0f0f8bf87f:log:20', 'hash': '0x50e351c29e70cc7a050b616655c3a4ca46c1370c05f0c8491d4a0f0f0f8bf87f', 'from': '0x1abc665ac6302a1ec9d286d4c2897c95cf64a756', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48052.9974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0a2cf54d2b9bb9498000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x12962ff762fef1615060be3c169c0a2c40d124a8e35a697d097d24ba79181cf3:log:21', 'hash': '0x12962ff762fef1615060be3c169c0a2c40d124a8e35a697d097d24ba79181cf3', 'from': '0x40eb8da68712a2998af3c428f211723430fa4449', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15201.60386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x033814a1f91ef2f54000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xdae4549a0f5200b751e81d83b0e48ecec4a28641c18627d0661a671eec7cbdd9:log:22', 'hash': '0xdae4549a0f5200b751e81d83b0e48ecec4a28641c18627d0661a671eec7cbdd9', 'from': '0xcfef471878edc247692a952553f14965f78f83fd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3897.654474330969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd34ad25dbedd4b3bf9', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x9835097031fe322722f5929cee3461f03d7c70c42b029bb34e8ef9401c1f45ab:log:24', 'hash': '0x9835097031fe322722f5929cee3461f03d7c70c42b029bb34e8ef9401c1f45ab', 'from': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xbe62ca70a063e00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x56a71b3750bc34a092c18d3149bb95c0f01ab2e39f8bbf73e27b83bf21865f49:log:25', 'hash': '0x56a71b3750bc34a092c18d3149bb95c0f01ab2e39f8bbf73e27b83bf21865f49', 'from': '0x1cd27134394c70d7663f1ee271b9e37a4fbb85dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34860.83652675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0761cf4ac873880cac00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x9502ce5319184738f1e7213f8d1498903c8c368b8bdf14aceb04abf56822bc84:log:26', 'hash': '0x9502ce5319184738f1e7213f8d1498903c8c368b8bdf14aceb04abf56822bc84', 'from': '0x6fdc6a397615545d91600adbf435e00f0ae97cd7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37846.59912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0803ab1263c3936d0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xde10701d1fdd36e0dfffe9af39e52a57dc1c082ba1da9da9859a772ef5a2911b:log:27', 'hash': '0xde10701d1fdd36e0dfffe9af39e52a57dc1c082ba1da9da9859a772ef5a2911b', 'from': '0xf63f197e4cacabade5ad93636213a43c7d1a1473', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 357482.86074835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4bb32f495140fa28ec00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xadbdc5c0af9e41dfcbca3eff7b9b45f6e66cc9f71c095f47d0e79eaa62c12aa8:log:28', 'hash': '0xadbdc5c0af9e41dfcbca3eff7b9b45f6e66cc9f71c095f47d0e79eaa62c12aa8', 'from': '0xe5d3ba1018d1a3a224c81d6a7cc531703627e1df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21026.88872993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0473deb336a3e6306400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x2a4c4767ef0007cc0bf213976ebef66e7c61305502a2695583a186005de7dead:log:29', 'hash': '0x2a4c4767ef0007cc0bf213976ebef66e7c61305502a2695583a186005de7dead', 'from': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20307.1551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x044cda63b387f615c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x5e43d490f30e47b1525291bf59c71a9e258af67b71e468cff2de87caa62b9f6f:log:30', 'hash': '0x5e43d490f30e47b1525291bf59c71a9e258af67b71e468cff2de87caa62b9f6f', 'from': '0xc7e029158a140a91f24c151e7fb5fd3f7c09524d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x79a5c17ec748900000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x9a3f3bb038c1bcb129ef53ee2a36c4665af59c4be0ad83be935d3ab9f55c0eba:log:31', 'hash': '0x9a3f3bb038c1bcb129ef53ee2a36c4665af59c4be0ad83be935d3ab9f55c0eba', 'from': '0xf709dc519423a3a9fd50588abde00d676a6f24f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52806.12250847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0b2ea029c2a029ab9c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x25cd2d779e7d8f4e11852356233e19a84ad5f9078269d4b90fb888f5266477fd:log:32', 'hash': '0x25cd2d779e7d8f4e11852356233e19a84ad5f9078269d4b90fb888f5266477fd', 'from': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1819.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x629e78b9771ea00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x6dbc2bf7672f2d91d1ab4d8e721c6acc0ca51559ce77a5819b60c1742ebf5cca:log:33', 'hash': '0x6dbc2bf7672f2d91d1ab4d8e721c6acc0ca51559ce77a5819b60c1742ebf5cca', 'from': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10008.4588115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021e8f4485f8c9bd3800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xeb6a1386c8f7bc61e5888dc1ad1132e804c5b5615d51c2784d81392deaae55e0:log:34', 'hash': '0xeb6a1386c8f7bc61e5888dc1ad1132e804c5b5615d51c2784d81392deaae55e0', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75549.02759664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0fff855fc33da685c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x86b0a3059432ffb04b8c805a9cf246a4c2cff1ec44ad00b29a39236d0fafe419:log:35', 'hash': '0x86b0a3059432ffb04b8c805a9cf246a4c2cff1ec44ad00b29a39236d0fafe419', 'from': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5b04ce4446d8dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x490c1a1122c34272cf55df194e56387b4a811f54b647d6d216394084d5aa3a4f:log:36', 'hash': '0x490c1a1122c34272cf55df194e56387b4a811f54b647d6d216394084d5aa3a4f', 'from': '0x3e7db0bdc36a1ded5892b1970f1f0f612fb8ea9a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c11ec06fa5aea3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x2b18dd385391d0bbec37b2fcdb0617e3be5681563fc2f2578bf97187dd8f3ae2:log:37', 'hash': '0x2b18dd385391d0bbec37b2fcdb0617e3be5681563fc2f2578bf97187dd8f3ae2', 'from': '0x3300482bfd2418361b6e0c52fccf49ebdd718eb3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x012895608966521c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x8cc0af8d4f1bf0735a865b6ee58ed32a6cb8dff1c9e83f8c6fdb8c3d753cda7d:log:38', 'hash': '0x8cc0af8d4f1bf0735a865b6ee58ed32a6cb8dff1c9e83f8c6fdb8c3d753cda7d', 'from': '0x793e3c4acca8404260ef34bce9f49a98fe0bd7d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5798.600000000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x013a57bd89b354234240', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x42adc6b54f5cbf66234737c49d2383df71b156359e05bb43b5eaceedf47320f7:log:39', 'hash': '0x42adc6b54f5cbf66234737c49d2383df71b156359e05bb43b5eaceedf47320f7', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03e0886abec2b2f40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x34b9a1f454b1d3403db14a1e974cefe537e8aa5b2b115911ed5278f97933c395:log:40', 'hash': '0x34b9a1f454b1d3403db14a1e974cefe537e8aa5b2b115911ed5278f97933c395', 'from': '0x2ad603904851b49b85deaf1d9a2a6f08a900d556', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1379.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4ac8688518835e0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0xb6d1688f195b98be17e0430e3983809155ec0f23096bf242de1e603535add61f:log:41', 'hash': '0xb6d1688f195b98be17e0430e3983809155ec0f23096bf242de1e603535add61f', 'from': '0x2c7fb08a352d3480f1c63f7a31a8ebe6aa0f9954', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3122.93722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa94b75c78f39ec4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x221150e70940feb912cde7573a554ed943f534499593acdd17fcd1d431e716d6:log:42', 'hash': '0x221150e70940feb912cde7573a554ed943f534499593acdd17fcd1d431e716d6', 'from': '0xe51f926179ad4c39fd27ecdf75293631c0e627bd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1481.08851377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x504a3b6c216c18a400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b225', 'uniqueId': '0x4fee104563c89754aa60f9c9fc52d47276cc5a8a7411959d0dc522f204b15bb7:log:43', 'hash': '0x4fee104563c89754aa60f9c9fc52d47276cc5a8a7411959d0dc522f204b15bb7', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb23eac7f5f7b8e1c76cf9ed15ccb2b22789a45be', 'value': 12687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02afc37e7164a4dc0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:27.000Z'}}, {'blockNum': '0x63b227', 'uniqueId': '0x051bb37043a33400cc401611c91fe57b293d2a22fdcab5f74653fd2c091b6338:log:20', 'hash': '0x051bb37043a33400cc401611c91fe57b293d2a22fdcab5f74653fd2c091b6338', 'from': '0xe7878ca0b3f7b0057a106f6190af7570a6a9a832', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 889.7901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x303c5175a3d74d4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:29:44.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0x37e2a4c68fa8e71b8add67ac48b3b4c6f256ce321e19b3c06fac326cc816c07d:log:0', 'hash': '0x37e2a4c68fa8e71b8add67ac48b3b4c6f256ce321e19b3c06fac326cc816c07d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0ff125d9e6619eded842bebe9a6f60bcb4aaac6b', 'value': 28484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06081ee86d4cd2900000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0xd6c92b81f941e6c9b43bdd82665750d23e2031f000ecd0ded6ac4d247764bd91:log:1', 'hash': '0xd6c92b81f941e6c9b43bdd82665750d23e2031f000ecd0ded6ac4d247764bd91', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 5664.18920331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01330e6a763ff760cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0xd089ec66d61b01e07373f089c3dc1098a14bce14aba6beea92224d7c6a401b0f:log:2', 'hash': '0xd089ec66d61b01e07373f089c3dc1098a14bce14aba6beea92224d7c6a401b0f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x55b71d6782040615eaf2746a0f959014bdfdc232', 'value': 1280.71869472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x456d8ad34f338c8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0x74243d800e6f7df78bad30af24f184d80d7b93b89db0d5639dc39a8fcdec7efe:log:3', 'hash': '0x74243d800e6f7df78bad30af24f184d80d7b93b89db0d5639dc39a8fcdec7efe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 28866.82287548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x061cdfa47e44418f7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b229', 'uniqueId': '0xa29df6fc037ad39075fb50df63c785556b0a43b12f3f02938b9a71eefc045c35:log:4', 'hash': '0xa29df6fc037ad39075fb50df63c785556b0a43b12f3f02938b9a71eefc045c35', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdbf9af083ac99e7830afe9ed151e7e988ed52ec8', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x070c1cc73b00c80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:07.000Z'}}, {'blockNum': '0x63b22c', 'uniqueId': '0x3d9ff277805214781ddd7d946bbd2bcb970af90921e38681242fcb62f6bb0b6a:log:3', 'hash': '0x3d9ff277805214781ddd7d946bbd2bcb970af90921e38681242fcb62f6bb0b6a', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03ad5bc9084972340000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:37.000Z'}}, {'blockNum': '0x63b22c', 'uniqueId': '0xb6c88ab1cd8e839b24917d4346c52e399acd8b5e970d0825846bf03a998dd77e:log:7', 'hash': '0xb6c88ab1cd8e839b24917d4346c52e399acd8b5e970d0825846bf03a998dd77e', 'from': '0x95f86e6c1ddbc82fee6316314f9edef4713ffaaf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94091.46499404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x13ecb562be21e02bb000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:37.000Z'}}, {'blockNum': '0x63b22e', 'uniqueId': '0xb5add8ab7bf2470754ee22d510735135e167156b4ff26ce3bbd26877245dfc37:log:11', 'hash': '0xb5add8ab7bf2470754ee22d510735135e167156b4ff26ce3bbd26877245dfc37', 'from': '0xaea424a9c42986d1431957afcb01c4fa78d99df8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1442.83654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4e37611ca785afc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:30:58.000Z'}}, {'blockNum': '0x63b230', 'uniqueId': '0xa501d6c5e1fe4fb14fb25d88b1e4084e6a01dceefd2c4191df19de0ed714e061:log:10', 'hash': '0xa501d6c5e1fe4fb14fb25d88b1e4084e6a01dceefd2c4191df19de0ed714e061', 'from': '0x9fd8a7e073212bfc1c19f7d83fe558d4a22bfe81', 'to': '0x5d5e37325bf71dd65680041beb65396ac3bfbdad', 'value': 2800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x97c9ce4cf6d5c00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:31:19.000Z'}}, {'blockNum': '0x63b234', 'uniqueId': '0x6f794c6d6a9ec62c77cfe38bb07b63f06431f732e9604fcbf161e254c0e80331:log:1', 'hash': '0x6f794c6d6a9ec62c77cfe38bb07b63f06431f732e9604fcbf161e254c0e80331', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 59154.95236896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c86cbe07332f4f08000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:32:11.000Z'}}, {'blockNum': '0x63b234', 'uniqueId': '0x760418dd5fe99df4e596232b97f645100682278bdcaf4f9e1fb6b1a53349a4a7:log:2', 'hash': '0x760418dd5fe99df4e596232b97f645100682278bdcaf4f9e1fb6b1a53349a4a7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 39436.63491265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0859dd404ccef756e400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:32:11.000Z'}}, {'blockNum': '0x63b236', 'uniqueId': '0xdebfadb7fd919b13b53eb73563909579e96d6b99aa3d0eeac91c7207845ef0c6:log:4', 'hash': '0xdebfadb7fd919b13b53eb73563909579e96d6b99aa3d0eeac91c7207845ef0c6', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x4504444270c138a59e276e17594ad31fb5667f42', 'value': 5667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0133356c6af27aac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:32:44.000Z'}}, {'blockNum': '0x63b237', 'uniqueId': '0xde148ec53b38dd6e85f2d9e573836cafc05e93d768311d2c83c6c3bf23aaef91:log:2', 'hash': '0xde148ec53b38dd6e85f2d9e573836cafc05e93d768311d2c83c6c3bf23aaef91', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x535b78da570d960db73436102bf55aed4204ddd9', 'value': 3980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd7c198710e66b00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:33:10.000Z'}}, {'blockNum': '0x63b23c', 'uniqueId': '0xa510c69797fd892ff15004b9f7af95c48d1c7b13bb63a25fd2b647b3c1c8f490:log:4', 'hash': '0xa510c69797fd892ff15004b9f7af95c48d1c7b13bb63a25fd2b647b3c1c8f490', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28345.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0600a35b5b9d47650000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:34:12.000Z'}}, {'blockNum': '0x63b23c', 'uniqueId': '0x8dd83783947e5650ffb73784b6b35a0389b0c41de8d526d6c7618e74866c8d5b:log:89', 'hash': '0x8dd83783947e5650ffb73784b6b35a0389b0c41de8d526d6c7618e74866c8d5b', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'value': 5492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0129b8cf86230d500000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:34:12.000Z'}}, {'blockNum': '0x63b23d', 'uniqueId': '0xc08b2634dcdb5d41d145a87f9e16b75e24f6111bc09d39f0d1ab13c194d768aa:log:0', 'hash': '0xc08b2634dcdb5d41d145a87f9e16b75e24f6111bc09d39f0d1ab13c194d768aa', 'from': '0xd39dc2a2915aa94d2f03e9aa6d654d2e52239016', 'to': '0x0159c8618bb1f81ce2066095bbca31efe79ead5f', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:34:22.000Z'}}, {'blockNum': '0x63b244', 'uniqueId': '0x4b4c6c9b1439f777bd71a27e081f65e1817ffbce3fc9a53d30b0d15c4ddd81b8:log:4', 'hash': '0x4b4c6c9b1439f777bd71a27e081f65e1817ffbce3fc9a53d30b0d15c4ddd81b8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcc050a9dd24f97c23410a8ade625a52d6232145a', 'value': 107567.69438089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x16c741a339595aa10400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:36:17.000Z'}}, {'blockNum': '0x63b244', 'uniqueId': '0x92a769827ff6a04376450cd12e889f46d7d7289347fe22cc87fb36ee687bf334:log:16', 'hash': '0x92a769827ff6a04376450cd12e889f46d7d7289347fe22cc87fb36ee687bf334', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9e8049a8193ab55775b9601a87584562ac9b76c3', 'value': 98.395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x055581432e528f8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:36:17.000Z'}}, {'blockNum': '0x63b244', 'uniqueId': '0x318450095d7ea6e89399cf9ad544fd273d2158520306a723826a87f54a43bca5:log:165', 'hash': '0x318450095d7ea6e89399cf9ad544fd273d2158520306a723826a87f54a43bca5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xd5d93e4b2dc59141138f73080c7659f4c765bbe2', 'value': 571.0664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1ef523692919220000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:36:17.000Z'}}, {'blockNum': '0x63b248', 'uniqueId': '0x297ac0d80639d83d8e9be81122eb2c8c617268782786d6788aefc9de19fe7c7d:log:2', 'hash': '0x297ac0d80639d83d8e9be81122eb2c8c617268782786d6788aefc9de19fe7c7d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcc050a9dd24f97c23410a8ade625a52d6232145a', 'value': 107800.26819923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x16d3dd3f68e67e8eec00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:36:45.000Z'}}, {'blockNum': '0x63b24b', 'uniqueId': '0xd5eb081688d1d9621dd591c34d7db0d4f8c4e7a168c3f6f1150f37485735f805:log:26', 'hash': '0xd5eb081688d1d9621dd591c34d7db0d4f8c4e7a168c3f6f1150f37485735f805', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x1c391cf7f5b214951cbb87f6c4a31bfc40c61dd9', 'value': 2103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7200fcddd4167c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:37:08.000Z'}}, {'blockNum': '0x63b24c', 'uniqueId': '0x67f414284a24efd7c4787d5a6a93ae5d2419a7e186da2fb2555e1ba6400bdb5e:log:142', 'hash': '0x67f414284a24efd7c4787d5a6a93ae5d2419a7e186da2fb2555e1ba6400bdb5e', 'from': '0x43a5b1be13c083a858b217989b27b0246548791a', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 210.8660752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0b6e5aca2d94ce8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:37:26.000Z'}}, {'blockNum': '0x63b24c', 'uniqueId': '0xc325caa1010621fdc7114cfb4d7e0cbc949bedb759374094f5e20074f3200c26:log:143', 'hash': '0xc325caa1010621fdc7114cfb4d7e0cbc949bedb759374094f5e20074f3200c26', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0x9e8049a8193ab55775b9601a87584562ac9b76c3', 'value': 126.31734850584814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d9015f35444c5e5f', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:37:26.000Z'}}, {'blockNum': '0x63b24f', 'uniqueId': '0xfd1df604477cce750b854b42971dafcb1e96e8a0d16dcd6c3f21369f32d3b2bb:log:21', 'hash': '0xfd1df604477cce750b854b42971dafcb1e96e8a0d16dcd6c3f21369f32d3b2bb', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x7a63b4bcca591a3a79ee907c27bd6ca5a6ce2417', 'value': 4136.78934221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe0417c151738e59400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:38:08.000Z'}}, {'blockNum': '0x63b251', 'uniqueId': '0x3e94fb5abcbe3fc2a0d8488f8c7179372d85942afc2a55faf1bc845ca49d2671:log:0', 'hash': '0x3e94fb5abcbe3fc2a0d8488f8c7179372d85942afc2a55faf1bc845ca49d2671', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 37799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0801168058509e3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:38:54.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0xc36c2f2b93059ccb94d4e8c1611b266e8b31601286cb0bffd4ac66259c73f6ae:log:21', 'hash': '0xc36c2f2b93059ccb94d4e8c1611b266e8b31601286cb0bffd4ac66259c73f6ae', 'from': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36243.36006421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07acc1a910d8f7cdb400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0xab41b02f87731d609c53c73f0f0227e882cb12367e20749c249fc24693731c15:log:26', 'hash': '0xab41b02f87731d609c53c73f0f0227e882cb12367e20749c249fc24693731c15', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 127458.41015709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1afd88c53e462dd6d400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x404b85c5a4b731bf5b9ca6f819ec2aa77d02f32dd2900c76521abe647f31e46c:log:27', 'hash': '0x404b85c5a4b731bf5b9ca6f819ec2aa77d02f32dd2900c76521abe647f31e46c', 'from': '0xf95f34f311b365b31fe56b94f705cdc78edc223c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x043acaef053664580000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0xdced4234813c2e604ad88017d603f6847e11cc51972e50a31b39098b0dcbcfc8:log:28', 'hash': '0xdced4234813c2e604ad88017d603f6847e11cc51972e50a31b39098b0dcbcfc8', 'from': '0x269b3d15f507a3577e555e3377fece12264b4943', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3949.96141428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd620b9f27ec2f75000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x6d8fbb8ba7393f90a079cda3e32046c8c8cf90b5a9aa18276eefaad2caf64e28:log:29', 'hash': '0x6d8fbb8ba7393f90a079cda3e32046c8c8cf90b5a9aa18276eefaad2caf64e28', 'from': '0x0ec6f7a6b489585c026427fcb6ab9667f882c784', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 357698.4167916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4bbedeba38865b25e000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x75b5299bc8872f8bb009babebaa4061d18edf41df235b8394ec2fae70366c5fd:log:37', 'hash': '0x75b5299bc8872f8bb009babebaa4061d18edf41df235b8394ec2fae70366c5fd', 'from': '0x73cda4b2f7b1f9458633ec9a40be3c2230f3fc84', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1988.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6bc9349b88fd2c7960', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0xd5ccfe878cdbb3d672a6f16213558d222d824d1bd5f5a8313accfd7317aed1ef:log:39', 'hash': '0xd5ccfe878cdbb3d672a6f16213558d222d824d1bd5f5a8313accfd7317aed1ef', 'from': '0x55087abd678d0d5140a5f65cde589099bbccb19b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7017.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x017c69fcf838aa2c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x5239274f7f1c9bb6b56a2a3126a16e67ff5cb358960cd646107daaadcd4da724:log:41', 'hash': '0x5239274f7f1c9bb6b56a2a3126a16e67ff5cb358960cd646107daaadcd4da724', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0801168058509e3c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b253', 'uniqueId': '0x42b164feab7d1bca6da087980bd6dd07f7c5637950710118a67e2933bafc7f74:log:42', 'hash': '0x42b164feab7d1bca6da087980bd6dd07f7c5637950710118a67e2933bafc7f74', 'from': '0x269b268e501c280244d64479caac62d107444144', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x016d604a31f314d00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:48.000Z'}}, {'blockNum': '0x63b254', 'uniqueId': '0xdc6c022cd4d51d0afaa218996da30858b7cd689f1c00ea51ac0900f1db785287:log:6', 'hash': '0xdc6c022cd4d51d0afaa218996da30858b7cd689f1c00ea51ac0900f1db785287', 'from': '0x25e6ce3e76b6e7ebaae0b92fcf5177f433f43676', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2334.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7e8db21549f56a0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:39:59.000Z'}}, {'blockNum': '0x63b255', 'uniqueId': '0x611b3364b9b76120f04086368e9ea326665f1910c8e3ebaa42fc32df060a997b:log:9', 'hash': '0x611b3364b9b76120f04086368e9ea326665f1910c8e3ebaa42fc32df060a997b', 'from': '0x0bc3221c1619b19653dd514d5100d298df569ce9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18.17804459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xfc45633e42294c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:40:22.000Z'}}, {'blockNum': '0x63b25f', 'uniqueId': '0x5a29c52d952d2a1d5536892e80b27b810c5678e2af41842602e2b895257dce25:log:93', 'hash': '0x5a29c52d952d2a1d5536892e80b27b810c5678e2af41842602e2b895257dce25', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc3f6d7dc769b025b2add0c12b6bb2dccb29b1e81', 'value': 32538.56379856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06e3eb48b21739d54000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:41:53.000Z'}}, {'blockNum': '0x63b260', 'uniqueId': '0x54d97f7cccfdf9f311be4f9cb7c2e0b2fdb84e79a337772402c2b3837ca3d532:log:0', 'hash': '0x54d97f7cccfdf9f311be4f9cb7c2e0b2fdb84e79a337772402c2b3837ca3d532', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xf293e1755758bcbb0c2061497f90f781b970a29d', 'value': 32963.30401411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06faf1bd11c36a6dac00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:42:22.000Z'}}, {'blockNum': '0x63b260', 'uniqueId': '0x05b5219c878b701f1affabf9f6ed3103fee8bedb0344ec3954910e25af37d513:log:1', 'hash': '0x05b5219c878b701f1affabf9f6ed3103fee8bedb0344ec3954910e25af37d513', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x2607a3fc9fbf124a8fe6625eb3a10d5e8d205d1f', 'value': 10954.05243647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0251d203ede98c881c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:42:22.000Z'}}, {'blockNum': '0x63b260', 'uniqueId': '0x0b98ede95d8cdd6bd7f88e2fbeba5b20463f3d09e34f9781e5291fe506851ec7:log:2', 'hash': '0x0b98ede95d8cdd6bd7f88e2fbeba5b20463f3d09e34f9781e5291fe506851ec7', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd4dc63e1e63218beefcde69ffbd28a41511974f7', 'value': 16772.34267714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x038d3b03412dc5e8c800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:42:22.000Z'}}, {'blockNum': '0x63b260', 'uniqueId': '0xb16276b86b9381f3b88b8a983688b2d0a7a952644deebf6e6120544ba88d2c69:log:3', 'hash': '0xb16276b86b9381f3b88b8a983688b2d0a7a952644deebf6e6120544ba88d2c69', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'value': 1765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5fae4ba4a114740000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:42:22.000Z'}}, {'blockNum': '0x63b270', 'uniqueId': '0x5914f7050ecffc994d717de5e22709318a8a3c7fec06f6b9de8d29b9095aed34:log:3', 'hash': '0x5914f7050ecffc994d717de5e22709318a8a3c7fec06f6b9de8d29b9095aed34', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5903ef129da0aebe70ba6c385c792d8f5e1c067f', 'value': 59360.15971282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c91ebb3633461ad0800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:46:22.000Z'}}, {'blockNum': '0x63b27b', 'uniqueId': '0xc06cdb3c181d8fde1dadb994827f0d6510ca3c33595ec5b725f561f58be46931:log:0', 'hash': '0xc06cdb3c181d8fde1dadb994827f0d6510ca3c33595ec5b725f561f58be46931', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa6c4a90574a53640f88a1ca34d25b153c3c597fb', 'value': 3066.32938462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa639de5933d93bb800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:48:50.000Z'}}, {'blockNum': '0x63b27e', 'uniqueId': '0x4b972ce9e1d3a7b06c2a32da21fc6488d94d42cea4d4227cfb4af8a9488d5a10:log:0', 'hash': '0x4b972ce9e1d3a7b06c2a32da21fc6488d94d42cea4d4227cfb4af8a9488d5a10', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28345.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0600a35b5b9d47650000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:03.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0xa7d9950b5575d071b3ab73608614e3e4444425326dca3ebf05fbf9fda520b576:log:0', 'hash': '0xa7d9950b5575d071b3ab73608614e3e4444425326dca3ebf05fbf9fda520b576', 'from': '0x55b71d6782040615eaf2746a0f959014bdfdc232', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1280.71869472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x456d8ad34f338c8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x237c8c049db6be3ad41bfd7cfe67a99755863ff70ec62271a828b504235a2f5a:log:18', 'hash': '0x237c8c049db6be3ad41bfd7cfe67a99755863ff70ec62271a828b504235a2f5a', 'from': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5358.4596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01227b90b7dd41bd0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0xf6d6cd15fe65d42239130882390b72759fc82dd46bd7f13321b99a322cc5510b:log:19', 'hash': '0xf6d6cd15fe65d42239130882390b72759fc82dd46bd7f13321b99a322cc5510b', 'from': '0x01b596aee21a283a35582425ff93c1df5d6c15c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x3aa4028a52bfb783cec35baa2826a134752629734edd84eef58f15171c3cbce7:log:21', 'hash': '0x3aa4028a52bfb783cec35baa2826a134752629734edd84eef58f15171c3cbce7', 'from': '0x4e41169d8db09a64cf618719442f69d3ca270f1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5fae4ba4a114740000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x14cceebeab94dfb3a1cd499999be2ec9f083bd702af5c06fb726eda4e11f613b:log:22', 'hash': '0x14cceebeab94dfb3a1cd499999be2ec9f083bd702af5c06fb726eda4e11f613b', 'from': '0x83a5fe3972c096dac1a96adcc7f9a4e7d134fed0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0114a259e725b25c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0xab2aee66f05468c0031a8f26ca512eb415f94fe4a0c7e51b81880c5a1ee760fc:log:33', 'hash': '0xab2aee66f05468c0031a8f26ca512eb415f94fe4a0c7e51b81880c5a1ee760fc', 'from': '0x461f5586a9f6700bf8a968a74cc0ba8239929c9e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0f732b66015a540000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0xb22291d944f278b87a5409750650886f8742f40fe62c69e2622a4dce9f3b7928:log:34', 'hash': '0xb22291d944f278b87a5409750650886f8742f40fe62c69e2622a4dce9f3b7928', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5664.18920331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01330e6a763ff760cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x886dae87bddb3c173266602c7d73a851c7d67314652f6e65090ac42015bce0a9:log:35', 'hash': '0x886dae87bddb3c173266602c7d73a851c7d67314652f6e65090ac42015bce0a9', 'from': '0x5d5e37325bf71dd65680041beb65396ac3bfbdad', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x97c9ce4cf6d5c00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x3875ac288854270da5a59ea31c64424e512e8c56dd902722fb89b3ae84087071:log:60', 'hash': '0x3875ac288854270da5a59ea31c64424e512e8c56dd902722fb89b3ae84087071', 'from': '0xe5967a51c2f63d8dbfcc511acf1978f5250be713', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8b0c86960c2cf40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b27f', 'uniqueId': '0x1e0da1584a11eb4de12858dad2017c436d7029d2708a2a609514eaa3db35b338:log:69', 'hash': '0x1e0da1584a11eb4de12858dad2017c436d7029d2708a2a609514eaa3db35b338', 'from': '0x0159c8618bb1f81ce2066095bbca31efe79ead5f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:05.000Z'}}, {'blockNum': '0x63b283', 'uniqueId': '0xee2c35925c1d7709e460c87c9c47c52ef58bf63947bde531756fd269eedee68f:log:6', 'hash': '0xee2c35925c1d7709e460c87c9c47c52ef58bf63947bde531756fd269eedee68f', 'from': '0x17f0ae4d42c81c93483d0973e6250abe0c31d1f8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1958.12037489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6a26610a65652ba400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:53.000Z'}}, {'blockNum': '0x63b283', 'uniqueId': '0x3427e27b5807899706a2be0adb77fd4d7fd018c48b2a505777c772b4258cfc8a:log:54', 'hash': '0x3427e27b5807899706a2be0adb77fd4d7fd018c48b2a505777c772b4258cfc8a', 'from': '0xd38eeb423b79802497b3b14cf7f10e400c80a730', 'to': '0xe2e6aaea1601c65d5fdf1aa48eadc2e88d69f79b', 'value': 469.42168675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x197288d8ff16712c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:49:53.000Z'}}, {'blockNum': '0x63b286', 'uniqueId': '0x56991630354f724f6f3c73c208f2a21474e5191f54639662fe637ca0f75a1f21:log:0', 'hash': '0x56991630354f724f6f3c73c208f2a21474e5191f54639662fe637ca0f75a1f21', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 35748.56995313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0791ef117854a455a400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:50:38.000Z'}}, {'blockNum': '0x63b293', 'uniqueId': '0x754303f1d0e035ef6479417c2d5f97b0dd93bd0e8469e50f058f1c5bb941bf2b:log:7', 'hash': '0x754303f1d0e035ef6479417c2d5f97b0dd93bd0e8469e50f058f1c5bb941bf2b', 'from': '0x16aea04055c947153228cb7b14cffd8cad8f6152', 'to': '0x737e135b991e532dda02775e68eaa18ab26e2342', 'value': 2422.6543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8355151213d0a1c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:52:26.000Z'}}, {'blockNum': '0x63b297', 'uniqueId': '0x1035d3b0a0b4a4f1e225fa537e621c2f0b12d0b168d72b2d7e0dddb11a1088d6:log:3', 'hash': '0x1035d3b0a0b4a4f1e225fa537e621c2f0b12d0b168d72b2d7e0dddb11a1088d6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 10841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x024bb118fdeb99c40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:53:13.000Z'}}, {'blockNum': '0x63b297', 'uniqueId': '0xb6f915593088705db5cc9a2759525def5bcb66c800f2c4483ba3b26f19ed08cc:log:5', 'hash': '0xb6f915593088705db5cc9a2759525def5bcb66c800f2c4483ba3b26f19ed08cc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1715a73594ca440184f3f88425d7c958dfcd6891', 'value': 7486.34442492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0195d5e63e1cae9c7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:53:13.000Z'}}, {'blockNum': '0x63b298', 'uniqueId': '0x24db5184af4c9c8930cebd8019478d8d8cc665a3b5e111a373fcedd78e121140:log:0', 'hash': '0x24db5184af4c9c8930cebd8019478d8d8cc665a3b5e111a373fcedd78e121140', 'from': '0x58bbb78603ba67730078531b249a0a379dfd5d48', 'to': '0x24c88f7908525330ff9d48f183a01333c7f93cad', 'value': 3723.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xc9d7b1d7e8e9610000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:53:27.000Z'}}, {'blockNum': '0x63b299', 'uniqueId': '0x3a484d2c03a9df514010a3dd7fae4da8d43dbb27e27da4eb10aab2884a5941ae:log:4', 'hash': '0x3a484d2c03a9df514010a3dd7fae4da8d43dbb27e27da4eb10aab2884a5941ae', 'from': '0x1715a73594ca440184f3f88425d7c958dfcd6891', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 7486.34442492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0195d5e63e1cae9c7000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:53:35.000Z'}}, {'blockNum': '0x63b29f', 'uniqueId': '0x0040708c1879c930d6d9a15a43edefd67134c53cd0832f04617819ecfafdad70:log:10', 'hash': '0x0040708c1879c930d6d9a15a43edefd67134c53cd0832f04617819ecfafdad70', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 25087.31946152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x054ffc7f03eff39da000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:54:38.000Z'}}, {'blockNum': '0x63b2b8', 'uniqueId': '0x2e8c4ef852342ca4bd04a0b52e9f4466e9ac7e4baa9b8b6c3afd53c45b2af25e:log:8', 'hash': '0x2e8c4ef852342ca4bd04a0b52e9f4466e9ac7e4baa9b8b6c3afd53c45b2af25e', 'from': '0x2607a3fc9fbf124a8fe6625eb3a10d5e8d205d1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10954.05243647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0251d203ede98c881c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:03.000Z'}}, {'blockNum': '0x63b2b8', 'uniqueId': '0xde0379fe7dc39d4d51e12345fa985e0b5be19d405f5203093fe448cc10f07b99:log:9', 'hash': '0xde0379fe7dc39d4d51e12345fa985e0b5be19d405f5203093fe448cc10f07b99', 'from': '0xc3f6d7dc769b025b2add0c12b6bb2dccb29b1e81', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32538.56379856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06e3eb48b21739d54000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:03.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0xd7d049d5bf0122a0af992ce0c3eb72d0d8d52c51310bd2d758b6e4028406881c:log:12', 'hash': '0xd7d049d5bf0122a0af992ce0c3eb72d0d8d52c51310bd2d758b6e4028406881c', 'from': '0x4504444270c138a59e276e17594ad31fb5667f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0133356c6af27aac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0xf7f9ea84a23d3945c2d75ebca16e48d78ade7b73f0475285c0492a79793c0a49:log:14', 'hash': '0xf7f9ea84a23d3945c2d75ebca16e48d78ade7b73f0475285c0492a79793c0a49', 'from': '0xdbf9af083ac99e7830afe9ed151e7e988ed52ec8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x070c1cc73b00c80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0x78f96f24685ed243204c6452104b2cd5bf2fbc59fac70a08f88c63092fd8d60c:log:15', 'hash': '0x78f96f24685ed243204c6452104b2cd5bf2fbc59fac70a08f88c63092fd8d60c', 'from': '0xd4dc63e1e63218beefcde69ffbd28a41511974f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16772.34267714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x038d3b03412dc5e8c800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0x43f3852c4cb1a7a13b314bf97e161efbb191b50afc76c6a64281a76367b17345:log:16', 'hash': '0x43f3852c4cb1a7a13b314bf97e161efbb191b50afc76c6a64281a76367b17345', 'from': '0xf293e1755758bcbb0c2061497f90f781b970a29d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32963.30401411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06faf1bd11c36a6dac00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0xcfbf7a110ae62ff32f3356991387c90033d947d2c5737c08f37e77366215d57a:log:23', 'hash': '0xcfbf7a110ae62ff32f3356991387c90033d947d2c5737c08f37e77366215d57a', 'from': '0xcc050a9dd24f97c23410a8ade625a52d6232145a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 215367.96258012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2d9b1ee2a23fd92ff000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0xf10c0f04c6af5d543b56dd608255c39e17e6ea26356c0dc7fae6a2f0aa5faa0b:log:24', 'hash': '0xf10c0f04c6af5d543b56dd608255c39e17e6ea26356c0dc7fae6a2f0aa5faa0b', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60835.88941465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce1eb907c4497f34400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2b9', 'uniqueId': '0x65655b05523bd8a227cbdfcff6c23b8d07b2d438fea99e193a094d577e0da912:log:26', 'hash': '0x65655b05523bd8a227cbdfcff6c23b8d07b2d438fea99e193a094d577e0da912', 'from': '0xd5d93e4b2dc59141138f73080c7659f4c765bbe2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 571.0664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1ef523692919220000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T19:59:23.000Z'}}, {'blockNum': '0x63b2d5', 'uniqueId': '0x6c85511ba004db90806751a27233c71a8476824a49de9abb4bf2cf539e64483e:log:0', 'hash': '0x6c85511ba004db90806751a27233c71a8476824a49de9abb4bf2cf539e64483e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 29236.71827162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0630ecf8ed4422a82800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:04:47.000Z'}}, {'blockNum': '0x63b2d6', 'uniqueId': '0x28b8a861d577466e8c8c1eaf6ab1f5cc463bb99106858d4b562e2e71d2da7dfe:log:3', 'hash': '0x28b8a861d577466e8c8c1eaf6ab1f5cc463bb99106858d4b562e2e71d2da7dfe', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xaa208e8045c4ab864a4e98080aa33d2cf21efbc1', 'value': 3866.1393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd19575f9aa855e4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:05:01.000Z'}}, {'blockNum': '0x63b2d7', 'uniqueId': '0xe0173c065443258f78703334b194311ccac6edebabbd36d9050066e0c83e15e4:log:7', 'hash': '0xe0173c065443258f78703334b194311ccac6edebabbd36d9050066e0c83e15e4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4761df1edb4dee36e2161a31becba39db20b6363', 'value': 3393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb7ef55831d94640000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:05:21.000Z'}}, {'blockNum': '0x63b2e4', 'uniqueId': '0x90a0b60b3071030af95fca4c5ef0bdc5efaae25f3774b231ce8baeb1a3647e1c:log:12', 'hash': '0x90a0b60b3071030af95fca4c5ef0bdc5efaae25f3774b231ce8baeb1a3647e1c', 'from': '0xa6c4a90574a53640f88a1ca34d25b153c3c597fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3066.32938462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa639de5933d93bb800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:08.000Z'}}, {'blockNum': '0x63b2e4', 'uniqueId': '0x1d37a6b26afc814dfcb7b8e438e78a490c212ed6f555fffdd14e912b675f5432:log:16', 'hash': '0x1d37a6b26afc814dfcb7b8e438e78a490c212ed6f555fffdd14e912b675f5432', 'from': '0x737e135b991e532dda02775e68eaa18ab26e2342', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2422.6543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8355151213d0a1c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:08.000Z'}}, {'blockNum': '0x63b2e4', 'uniqueId': '0xc5c41a42e4dfc7dcb494f33e3bbf2aabac2436a13c638cbc807100c770dd648b:log:18', 'hash': '0xc5c41a42e4dfc7dcb494f33e3bbf2aabac2436a13c638cbc807100c770dd648b', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29236.71827162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0630ecf8ed4422a82800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:08.000Z'}}, {'blockNum': '0x63b2e4', 'uniqueId': '0xb1f968c85e71c419a7e5e7d14fd54deb45cdd3b789f0ea7fa17bd0bc18028137:log:19', 'hash': '0xb1f968c85e71c419a7e5e7d14fd54deb45cdd3b789f0ea7fa17bd0bc18028137', 'from': '0xe2e6aaea1601c65d5fdf1aa48eadc2e88d69f79b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 469.42168675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x197288d8ff16712c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:08.000Z'}}, {'blockNum': '0x63b2e5', 'uniqueId': '0x3d313cd439770ec890bbc367426e9d33705a92b776f6493d1b88a9f561ab462d:log:1', 'hash': '0x3d313cd439770ec890bbc367426e9d33705a92b776f6493d1b88a9f561ab462d', 'from': '0x5903ef129da0aebe70ba6c385c792d8f5e1c067f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59360.15971282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0c91ebb3633461ad0800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:18.000Z'}}, {'blockNum': '0x63b2e7', 'uniqueId': '0xc2f543e143e336d9e8ab5193ad065a1935820353c648d4fdeb8024882620d66a:log:8', 'hash': '0xc2f543e143e336d9e8ab5193ad065a1935820353c648d4fdeb8024882620d66a', 'from': '0x24c88f7908525330ff9d48f183a01333c7f93cad', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3723.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xc9d7b1d7e8e9610000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:09:32.000Z'}}, {'blockNum': '0x63b2ec', 'uniqueId': '0x368b3bac9eac48dac3f5b4f9a8871e9e1d975b1ad845614f833761d412c115fc:log:56', 'hash': '0x368b3bac9eac48dac3f5b4f9a8871e9e1d975b1ad845614f833761d412c115fc', 'from': '0x5fd9b40d53aa9fced8a54d21904f8eae5842c174', 'to': '0x791c11999b051bf1c013ddb883deea47b9de2432', 'value': 146.90848344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07f6c3c7558c8e6000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:11:06.000Z'}}, {'blockNum': '0x63b2fc', 'uniqueId': '0x4e6adff4e57ee0a56f8f9d2a46825c46bffcdebe1e6cd08cb9d137159457fae2:log:1', 'hash': '0x4e6adff4e57ee0a56f8f9d2a46825c46bffcdebe1e6cd08cb9d137159457fae2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb5142014349b773e56cd3356e8e196152d4eef61', 'value': 2319.07546845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7db7a323911cdbd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:14:30.000Z'}}, {'blockNum': '0x63b309', 'uniqueId': '0xb761cec57ebb04be849b8ed769c6764dbc87b3db09562057b96b5e68a18c68e5:log:45', 'hash': '0xb761cec57ebb04be849b8ed769c6764dbc87b3db09562057b96b5e68a18c68e5', 'from': '0xfc1c7565c8e795ba117c265bbf861aeef3f262dd', 'to': '0x9f2ce5d60a9c86e43efa95ccb5b99e7cce38394b', 'value': 175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x097c9ce4cf6d5c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:18:12.000Z'}}, {'blockNum': '0x63b30b', 'uniqueId': '0x06b2d8a73f7c6da8a6cac3f1c6e36ffe7a06b5a46a82fedf02493e43ee19fee9:log:14', 'hash': '0x06b2d8a73f7c6da8a6cac3f1c6e36ffe7a06b5a46a82fedf02493e43ee19fee9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 27196.51529743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05c25377e9b2f0425c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:19:03.000Z'}}, {'blockNum': '0x63b30c', 'uniqueId': '0x4f3a7697237dcbc8d086571737a0f4c152bc12ee7b4087a2512a521831d59697:log:9', 'hash': '0x4f3a7697237dcbc8d086571737a0f4c152bc12ee7b4087a2512a521831d59697', 'from': '0xaa208e8045c4ab864a4e98080aa33d2cf21efbc1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3866.1393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xd19575f9aa855e4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:19:17.000Z'}}, {'blockNum': '0x63b30c', 'uniqueId': '0x95f9f6656fafd4355d39f7cf4aed4bff5f138a0fa10193261a8aa59ece47c454:log:19', 'hash': '0x95f9f6656fafd4355d39f7cf4aed4bff5f138a0fa10193261a8aa59ece47c454', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x86c60d0207266d88c1e69ccac30f2778cfcafdfa', 'value': 4109.277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdec3ac9b9e0adc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:19:17.000Z'}}, {'blockNum': '0x63b30d', 'uniqueId': '0x925c55f744bbb67653ed60987237b0d46cdaa6f5b385fa8c6505dad669ec593f:log:2', 'hash': '0x925c55f744bbb67653ed60987237b0d46cdaa6f5b385fa8c6505dad669ec593f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e2e93afbd1628565767ccc8fe94a4a166a8cd08', 'value': 4262.64988916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe7142691b438055000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:19:38.000Z'}}, {'blockNum': '0x63b329', 'uniqueId': '0xafcf4ed9afeb13ae7f3d90f3526fbf4743eb6ccc88eda742948480f21c751a66:log:21', 'hash': '0xafcf4ed9afeb13ae7f3d90f3526fbf4743eb6ccc88eda742948480f21c751a66', 'from': '0xc231b840bfb4678540de40070121adccca328ef6', 'to': '0xe40743942a8e13ac82eb09ece0db5ea78224d1fb', 'value': 1106.159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3bf70a35d185518000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:25:54.000Z'}}, {'blockNum': '0x63b334', 'uniqueId': '0x45e19bcb27bce7b74446d0f60fa4bc2703c939f8d31be1136f26ce694ea1499b:log:5', 'hash': '0x45e19bcb27bce7b74446d0f60fa4bc2703c939f8d31be1136f26ce694ea1499b', 'from': '0x30a2175b18ba5275f1ddfcf22c1d35f44dc1fa02', 'to': '0x1c7dd1b8bc95e079c43507a88a60253dee0b8df1', 'value': 10157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02269cb0d5e85a940000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:29:12.000Z'}}, {'blockNum': '0x63b334', 'uniqueId': '0x13652e896cbcd81679fcf0a4bad358d5abe4f3e7e4f96eeb9463a8ace46308a6:log:12', 'hash': '0x13652e896cbcd81679fcf0a4bad358d5abe4f3e7e4f96eeb9463a8ace46308a6', 'from': '0x86c60d0207266d88c1e69ccac30f2778cfcafdfa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4109.277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdec3ac9b9e0adc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:29:12.000Z'}}, {'blockNum': '0x63b334', 'uniqueId': '0x7bf40ff7456309689c1108d9de7eb228688abde844240952ff97c4a8744d5f06:log:17', 'hash': '0x7bf40ff7456309689c1108d9de7eb228688abde844240952ff97c4a8744d5f06', 'from': '0x3e2e93afbd1628565767ccc8fe94a4a166a8cd08', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4262.64988916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xe7142691b438055000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:29:12.000Z'}}, {'blockNum': '0x63b33c', 'uniqueId': '0x53f416c35dbcc5bfb7ac8ff6a587111af3d62c5bc3bc42f9dcc3b77f3d44ea23:log:0', 'hash': '0x53f416c35dbcc5bfb7ac8ff6a587111af3d62c5bc3bc42f9dcc3b77f3d44ea23', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x82fd368e4c825d29ae56c1ab8daafc2fd9421d5b', 'value': 9989.21906181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x021d84433390b9db7400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:31:16.000Z'}}, {'blockNum': '0x63b33f', 'uniqueId': '0xe2bada1bc54db8755b39564de02aed0891f703e09483ccaea3eeed0b9517c1a0:log:13', 'hash': '0xe2bada1bc54db8755b39564de02aed0891f703e09483ccaea3eeed0b9517c1a0', 'from': '0x791c11999b051bf1c013ddb883deea47b9de2432', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 146.90848344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07f6c3c7558c8e6000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:32:22.000Z'}}, {'blockNum': '0x63b33f', 'uniqueId': '0x1a2df1d4db15981bc159a33d63efbf40bd550faecf51b9d4bff7b9900bc12588:log:26', 'hash': '0x1a2df1d4db15981bc159a33d63efbf40bd550faecf51b9d4bff7b9900bc12588', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xe5e14089b9db8798a80254e3740e6f1b8007e713', 'value': 137.41071752581243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0772f4ef8e7997e1f2', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:32:22.000Z'}}, {'blockNum': '0x63b33f', 'uniqueId': '0x3ab643616167920ce171b1096c2ccf7deae0534a3b83432a780ecd7bf7918113:log:61', 'hash': '0x3ab643616167920ce171b1096c2ccf7deae0534a3b83432a780ecd7bf7918113', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'value': 4088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdd9c6584d904e00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:32:22.000Z'}}, {'blockNum': '0x63b34d', 'uniqueId': '0xc4ac5a4cabd0aa7a68bec973ac6e0af962659a5def3199ba7c02539c32078feb:log:84', 'hash': '0xc4ac5a4cabd0aa7a68bec973ac6e0af962659a5def3199ba7c02539c32078feb', 'from': '0xfa4de5a6a5f5262ad6ab8a67877b4718a5317d2e', 'to': '0xcbe2575fae0c3fb4709d8cd2141d5881bf111d8b', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:35:22.000Z'}}, {'blockNum': '0x63b357', 'uniqueId': '0x54b8fa36d8a82a8b937e874218db0ba20c2cfe8b7f9e74b97fb997c1558fa30c:log:43', 'hash': '0x54b8fa36d8a82a8b937e874218db0ba20c2cfe8b7f9e74b97fb997c1558fa30c', 'from': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xdd9c6584d904e00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:37:49.000Z'}}, {'blockNum': '0x63b359', 'uniqueId': '0x6a443bef01cecbc526576b38ca6e05a34d0f2342d1035650f550bdc93cbbd342:log:2', 'hash': '0x6a443bef01cecbc526576b38ca6e05a34d0f2342d1035650f550bdc93cbbd342', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9748565ee7f0c9017cc1935aea63b28ea45d5773', 'value': 62583.62459893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d40aa432e7905393400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:38:23.000Z'}}, {'blockNum': '0x63b35f', 'uniqueId': '0xdb168e211f9be8fd84e8465e3541b3b97bf8dfe66f0c8cfebc895994f9f99db5:log:10', 'hash': '0xdb168e211f9be8fd84e8465e3541b3b97bf8dfe66f0c8cfebc895994f9f99db5', 'from': '0xb5142014349b773e56cd3356e8e196152d4eef61', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2319.07546845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7db7a323911cdbd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:39:15.000Z'}}, {'blockNum': '0x63b35f', 'uniqueId': '0x7383c6134a13106be792ccaf75ce0a78ed210440429e2e7bb0dbdd1a9614a040:log:11', 'hash': '0x7383c6134a13106be792ccaf75ce0a78ed210440429e2e7bb0dbdd1a9614a040', 'from': '0x0ff125d9e6619eded842bebe9a6f60bcb4aaac6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59781.55257332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ca8c3b39131bde95000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:39:15.000Z'}}, {'blockNum': '0x63b36a', 'uniqueId': '0x6a37cc54ef8979354ff67460c1f87576e92f07c114321f1cc7b6bf2b4d9cd5f3:log:19', 'hash': '0x6a37cc54ef8979354ff67460c1f87576e92f07c114321f1cc7b6bf2b4d9cd5f3', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9748565ee7f0c9017cc1935aea63b28ea45d5773', 'value': 30010.43654618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x065ade786ca4b39c2800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:41:39.000Z'}}, {'blockNum': '0x63b370', 'uniqueId': '0xcccf5512bfb187fe131f4742cf584ba3176a9f59b602dcfa4df87b392282f762:log:21', 'hash': '0xcccf5512bfb187fe131f4742cf584ba3176a9f59b602dcfa4df87b392282f762', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 27704.86130896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05dde22fbdda58894000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:43:20.000Z'}}, {'blockNum': '0x63b379', 'uniqueId': '0x9f3afb446ebd6de06bfee5bcc644d650d83b9b3da11bc4bb26b7627b820c227d:log:1', 'hash': '0x9f3afb446ebd6de06bfee5bcc644d650d83b9b3da11bc4bb26b7627b820c227d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'value': 34999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07694cb20b59c87c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:45:16.000Z'}}, {'blockNum': '0x63b381', 'uniqueId': '0x949c33c7a144a6611f336017d11492c8142db4525c4174c3aa631d85a7291770:log:0', 'hash': '0x949c33c7a144a6611f336017d11492c8142db4525c4174c3aa631d85a7291770', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x285cb45173c943aa060628a06a985761156de4da', 'value': 5050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0111c2d413f40aa80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:46:24.000Z'}}, {'blockNum': '0x63b38c', 'uniqueId': '0x01ce4d31c26535e4461299bef54983aeb1a69038f826527c588de9a79581370f:log:17', 'hash': '0x01ce4d31c26535e4461299bef54983aeb1a69038f826527c588de9a79581370f', 'from': '0x58d3651b81273a2391605a681a60626d5ef3751b', 'to': '0xc9e86c0a4a41457856716a12a1819b1fe96fb15f', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:49:21.000Z'}}, {'blockNum': '0x63b38c', 'uniqueId': '0x89ca84b71c804f90e84e03157b93f5a1734c18ac8e161387b5e2776a7dd82055:log:38', 'hash': '0x89ca84b71c804f90e84e03157b93f5a1734c18ac8e161387b5e2776a7dd82055', 'from': '0x9748565ee7f0c9017cc1935aea63b28ea45d5773', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92594.06114511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x139b88bb9b1db8d55c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:49:21.000Z'}}, {'blockNum': '0x63b38c', 'uniqueId': '0xb6b71c31ddd9c53f22def78e467ef77df08e63228673fae7b36b41b1b352dff1:log:41', 'hash': '0xb6b71c31ddd9c53f22def78e467ef77df08e63228673fae7b36b41b1b352dff1', 'from': '0x1c7dd1b8bc95e079c43507a88a60253dee0b8df1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02269cb0d5e85a940000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:49:21.000Z'}}, {'blockNum': '0x63b394', 'uniqueId': '0xc7278ad9572e54711d5c77de1ee5e7bf40859da8ae37a330372527a8311ed98e:log:2', 'hash': '0xc7278ad9572e54711d5c77de1ee5e7bf40859da8ae37a330372527a8311ed98e', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0x1168ed13bbc78ad6fc865859e223d12c17224c92', 'value': 80.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x045c30c2dd14ab0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:50:47.000Z'}}, {'blockNum': '0x63b3a3', 'uniqueId': '0xd6ae04722f189a1f6d80a2ab59bc83ab683361311146f72c93e06bbbbac3330c:log:12', 'hash': '0xd6ae04722f189a1f6d80a2ab59bc83ab683361311146f72c93e06bbbbac3330c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 8585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01d164ceeeb878840000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:55:25.000Z'}}, {'blockNum': '0x63b3af', 'uniqueId': '0x3d8dbbf30672ca782bca92c00d3caab70fc44d7ee021bafc23c8647f079711fb:log:7', 'hash': '0x3d8dbbf30672ca782bca92c00d3caab70fc44d7ee021bafc23c8647f079711fb', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf39b262a650e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:59:12.000Z'}}, {'blockNum': '0x63b3b2', 'uniqueId': '0x27fd61119273237ef43db4197189d6bbb65f6621845fcfd15a05d8f7006429b0:log:7', 'hash': '0x27fd61119273237ef43db4197189d6bbb65f6621845fcfd15a05d8f7006429b0', 'from': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07694cb20b59c87c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T20:59:39.000Z'}}, {'blockNum': '0x63b3bd', 'uniqueId': '0x1d019676da52fe218814d01fdd517b2f279af043964b1d1376e8d45985363fac:log:5', 'hash': '0x1d019676da52fe218814d01fdd517b2f279af043964b1d1376e8d45985363fac', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'value': 8987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01e72fadd4d5538c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:02:18.000Z'}}, {'blockNum': '0x63b3df', 'uniqueId': '0x1cff390b0ee4801adf50a35dd33864ee93b171e5a0ab0a5cd8d89c6afa2f3ed4:log:13', 'hash': '0x1cff390b0ee4801adf50a35dd33864ee93b171e5a0ab0a5cd8d89c6afa2f3ed4', 'from': '0x1b9b1273757a0b232f8c572ad0ad412341cd37fe', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01e72fadd4d5538c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:08:52.000Z'}}, {'blockNum': '0x63b3e1', 'uniqueId': '0xe181109aa265734365b440b95b891a119e3511cf201d8be04d3a750292e863ca:log:14', 'hash': '0xe181109aa265734365b440b95b891a119e3511cf201d8be04d3a750292e863ca', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27704.86130896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05dde22fbdda58894000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:09:07.000Z'}}, {'blockNum': '0x63b3e2', 'uniqueId': '0x14aba8d6831857f8374393f0cb19f2750f6ce552ae6327c16af8ebbf0c312a80:log:8', 'hash': '0x14aba8d6831857f8374393f0cb19f2750f6ce552ae6327c16af8ebbf0c312a80', 'from': '0x285cb45173c943aa060628a06a985761156de4da', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0111c2d413f40aa80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:09:18.000Z'}}, {'blockNum': '0x63b3f3', 'uniqueId': '0x6188f20d5a89cac48c0bdfa7b6d1ff13094f6a2c8e8ab266e8591a99b4e95d64:log:27', 'hash': '0x6188f20d5a89cac48c0bdfa7b6d1ff13094f6a2c8e8ab266e8591a99b4e95d64', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc4facbe73b74bb97c3be680ebf1819f49ba7d4bb', 'value': 1325.9208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x47e0d8f6920dc20000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:13:08.000Z'}}, {'blockNum': '0x63b3fb', 'uniqueId': '0x8cd9924d09e822c293ade0c4b4856a3f502c88745402ae6b6e402067ba70613d:log:11', 'hash': '0x8cd9924d09e822c293ade0c4b4856a3f502c88745402ae6b6e402067ba70613d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 27428.83811407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05ceeb985c88b5ab5c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:15:34.000Z'}}, {'blockNum': '0x63b40b', 'uniqueId': '0x64de097ba646bbb1298d44ab886d30b8f986e8dd20444bdab31d0427757df993:log:10', 'hash': '0x64de097ba646bbb1298d44ab886d30b8f986e8dd20444bdab31d0427757df993', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27428.83811407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05ceeb985c88b5ab5c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:19:16.000Z'}}, {'blockNum': '0x63b40b', 'uniqueId': '0xf686f3dde4ca7d0b33f9be1aa7dba16b78a0f63747c7410062b2d63245b93ea6:log:11', 'hash': '0xf686f3dde4ca7d0b33f9be1aa7dba16b78a0f63747c7410062b2d63245b93ea6', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cf39b262a650e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:19:16.000Z'}}, {'blockNum': '0x63b429', 'uniqueId': '0xc0406383cd4076e856d5c6acad50f2c515b5bbedb2589e66a83ac22df9e72234:log:17', 'hash': '0xc0406383cd4076e856d5c6acad50f2c515b5bbedb2589e66a83ac22df9e72234', 'from': '0x47fc7c8476def8662bb31d8dc4f6cdacc60389d4', 'to': '0xf490af7013492356868c42eb2a9d1f1b76753966', 'value': 2264.84798301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7ac71468de62fdd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:25:00.000Z'}}, {'blockNum': '0x63b430', 'uniqueId': '0x26bcc563326cd4a830f394e0a9fa3ebe403feb7e9e0d0499ce34af67716a27af:log:35', 'hash': '0x26bcc563326cd4a830f394e0a9fa3ebe403feb7e9e0d0499ce34af67716a27af', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xbd825705ffe24abed5dc12cd1e3b789253b82e3e', 'value': 216.2236738265873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0bb8b4cdbe3fa98c1e', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:26:41.000Z'}}, {'blockNum': '0x63b43a', 'uniqueId': '0xdfb8dd41a7c76b2170013e37b92938577847e7fe6c48066f26cb3bf44b6cfdb6:log:1', 'hash': '0xdfb8dd41a7c76b2170013e37b92938577847e7fe6c48066f26cb3bf44b6cfdb6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 27821.26519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05e4319d66ecb2906000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:29:12.000Z'}}, {'blockNum': '0x63b448', 'uniqueId': '0xef75f50c5106a6e32408b2eca2e57619c740d62771ec202ac45bff243e8981c1:log:16', 'hash': '0xef75f50c5106a6e32408b2eca2e57619c740d62771ec202ac45bff243e8981c1', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x638606582f4d7989eb898e208d62d88b97c09d6c', 'value': 1213.3509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x41c6a056f100834000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:33:09.000Z'}}, {'blockNum': '0x63b450', 'uniqueId': '0x1cddb53a5dcb9e83f5840a2de5d41277743083352c2dfbd4d83fbfd2310b999d:log:15', 'hash': '0x1cddb53a5dcb9e83f5840a2de5d41277743083352c2dfbd4d83fbfd2310b999d', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xd646f40170a0c425e22e0b9e557fe341224baf92', 'value': 2256.84798301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7a580eb34127ddd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:34:43.000Z'}}, {'blockNum': '0x63b45a', 'uniqueId': '0x070ae57806015b1657cb6c4c2ee9d22efc46c4b7cbcb2c12a899bf4a368a3307:log:3', 'hash': '0x070ae57806015b1657cb6c4c2ee9d22efc46c4b7cbcb2c12a899bf4a368a3307', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa3a2a13a167ae5a58188affc69ef0e2eecd1803a', 'value': 6754.07900677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x016e23ace00358fb7400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:37:42.000Z'}}, {'blockNum': '0x63b463', 'uniqueId': '0x049203aff5fbe8b8bd2a00db693a6535c4c213be36b671ef7853fa4165983d40:log:54', 'hash': '0x049203aff5fbe8b8bd2a00db693a6535c4c213be36b671ef7853fa4165983d40', 'from': '0xc4facbe73b74bb97c3be680ebf1819f49ba7d4bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1325.9208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x47e0d8f6920dc20000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:39:09.000Z'}}, {'blockNum': '0x63b467', 'uniqueId': '0xb5d5dfe997efb249ca3f3f02b8db7fd2f9c4bd77a068d7ce158c6cc2f65a60cb:log:62', 'hash': '0xb5d5dfe997efb249ca3f3f02b8db7fd2f9c4bd77a068d7ce158c6cc2f65a60cb', 'from': '0xf517a26f51484a4045d4752e14dfe098c5bdf66a', 'to': '0x0fe07dbd07ba4c1075c1db97806ba3c5b113cee0', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:40:19.000Z'}}, {'blockNum': '0x63b46d', 'uniqueId': '0x820ee469be7f7c8cc4f19d079213d6d07dd46a5567e2993b6b73a6524fa19292:log:2', 'hash': '0x820ee469be7f7c8cc4f19d079213d6d07dd46a5567e2993b6b73a6524fa19292', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 51791.30852636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0af79cca3e9c8b80f000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:41:31.000Z'}}, {'blockNum': '0x63b471', 'uniqueId': '0x160ca6fa63cd5dc454d557f38fb09ce4672abae46e5fb4c881df64cef0fcc420:log:0', 'hash': '0x160ca6fa63cd5dc454d557f38fb09ce4672abae46e5fb4c881df64cef0fcc420', 'from': '0xd646f40170a0c425e22e0b9e557fe341224baf92', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2256.84798301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7a580eb34127ddd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:42:41.000Z'}}, {'blockNum': '0x63b47d', 'uniqueId': '0x5b67c3a11948a5cd6d7e46905d552a8856474f3c4f1e9b87c6116de5bd3a9aba:log:2', 'hash': '0x5b67c3a11948a5cd6d7e46905d552a8856474f3c4f1e9b87c6116de5bd3a9aba', 'from': '0xf490af7013492356868c42eb2a9d1f1b76753966', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 2264.84798301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x7ac71468de62fdd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:44:46.000Z'}}, {'blockNum': '0x63b491', 'uniqueId': '0xe6ab0ee75f986540eb13703500998b3041ecafc399b34ecdf86bd0aae24d2d49:log:5', 'hash': '0xe6ab0ee75f986540eb13703500998b3041ecafc399b34ecdf86bd0aae24d2d49', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x271244831b4017c9955ed638f5e4791d2c0ca06c', 'value': 1537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x535228ec9fff640000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:48:32.000Z'}}, {'blockNum': '0x63b497', 'uniqueId': '0x3fb34f40b19c9d15da69cfcaba0ab32f28574d9f361b4fee85345e06665877c0:log:8', 'hash': '0x3fb34f40b19c9d15da69cfcaba0ab32f28574d9f361b4fee85345e06665877c0', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 79612.57371636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x10dbce67a5893e115000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:49:06.000Z'}}, {'blockNum': '0x63b498', 'uniqueId': '0x41f140661d016dd0c6f46d143372b2160b38e49e126190c4fdade8522e62cd02:log:136', 'hash': '0x41f140661d016dd0c6f46d143372b2160b38e49e126190c4fdade8522e62cd02', 'from': '0x638606582f4d7989eb898e208d62d88b97c09d6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1213.3509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x41c6a056f100834000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:49:10.000Z'}}, {'blockNum': '0x63b499', 'uniqueId': '0xb4cab174bec706a09c7b52c29707346aaa6366b9cf4fd4f8b76cb9221634a1bd:log:9', 'hash': '0xb4cab174bec706a09c7b52c29707346aaa6366b9cf4fd4f8b76cb9221634a1bd', 'from': '0xa3a2a13a167ae5a58188affc69ef0e2eecd1803a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6754.07900677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x016e23ace00358fb7400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:49:39.000Z'}}, {'blockNum': '0x63b4c8', 'uniqueId': '0x1394155aaf2330411bde7546db42f29d695d8c111bbddac18da898dd5bed68f9:log:2', 'hash': '0x1394155aaf2330411bde7546db42f29d695d8c111bbddac18da898dd5bed68f9', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T21:58:45.000Z'}}, {'blockNum': '0x63b4da', 'uniqueId': '0x62058f71efc76ab9aa1976a67528d94bab5afe7365f56284cc35d6d649831249:log:0', 'hash': '0x62058f71efc76ab9aa1976a67528d94bab5afe7365f56284cc35d6d649831249', 'from': '0x2e93b992ab8a11e954464e6b0b2e28098241f1ef', 'to': '0xe0480b387b823095fe51182666f68e841b3108a5', 'value': 8449.7012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ca0f2908f6dfe50000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:05:22.000Z'}}, {'blockNum': '0x63b4ea', 'uniqueId': '0x6653bc32e66fa818e116c77273f86f3da8455ab1d91224a19dca0bcb94817482:log:4', 'hash': '0x6653bc32e66fa818e116c77273f86f3da8455ab1d91224a19dca0bcb94817482', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 30666.91566539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x067e74f2c563b0f9cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:09:44.000Z'}}, {'blockNum': '0x63b4ef', 'uniqueId': '0x2b560779899d9751889ac42162285826b83526b4c3122e7bfd247aa081ce395e:log:3', 'hash': '0x2b560779899d9751889ac42162285826b83526b4c3122e7bfd247aa081ce395e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf53354a8dc35416d28ab2523589d1b44843e025c', 'value': 15875.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x035c966fc26eed300000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:10:43.000Z'}}, {'blockNum': '0x63b4f0', 'uniqueId': '0xb0e811f67989575089b2c9671770a2f37a8f2be00b0180495722c85b7bf73389:log:11', 'hash': '0xb0e811f67989575089b2c9671770a2f37a8f2be00b0180495722c85b7bf73389', 'from': '0xe0480b387b823095fe51182666f68e841b3108a5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8449.7012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ca0f2908f6dfe50000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:11:17.000Z'}}, {'blockNum': '0x63b4f2', 'uniqueId': '0x221a4354abb8d7aec1cb898c95beaedd5afc5d135a3625d7774c40a6746952d9:log:36', 'hash': '0x221a4354abb8d7aec1cb898c95beaedd5afc5d135a3625d7774c40a6746952d9', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xa7d64d140d96c74371ce2274660e503f1dda2374', 'value': 453.3193313178186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x189311ca0b782fa3d5', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:11:33.000Z'}}, {'blockNum': '0x63b518', 'uniqueId': '0x47439becec4e4c5af577e7bd168038c70f45f9e76f0a459635b4ddae8eb10122:log:79', 'hash': '0x47439becec4e4c5af577e7bd168038c70f45f9e76f0a459635b4ddae8eb10122', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:19:25.000Z'}}, {'blockNum': '0x63b518', 'uniqueId': '0x35664bea5cfbdb026ebce297b58ef068c475586e51d200bef7e2cfa03e568deb:log:80', 'hash': '0x35664bea5cfbdb026ebce297b58ef068c475586e51d200bef7e2cfa03e568deb', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30666.91566539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x067e74f2c563b0f9cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:19:25.000Z'}}, {'blockNum': '0x63b51a', 'uniqueId': '0x53a3224e1863366fdf697d8fd7a37d86b1ee94215edbb15c691980f8fe6511a2:log:14', 'hash': '0x53a3224e1863366fdf697d8fd7a37d86b1ee94215edbb15c691980f8fe6511a2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 461.31933131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1902177fa6e149cc00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:19:51.000Z'}}, {'blockNum': '0x63b529', 'uniqueId': '0xbe2907586926b8be359f582a502a482ec3be8dc407cb68c8da53ef01ba688e09:log:1', 'hash': '0xbe2907586926b8be359f582a502a482ec3be8dc407cb68c8da53ef01ba688e09', 'from': '0x3bb5bf73a903b20f9d917874deab162e78a24998', 'to': '0xb9b5419705cfb6b8e7c402c6d676821a4ec93733', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:24:42.000Z'}}, {'blockNum': '0x63b531', 'uniqueId': '0x0ae3b30945196e532bdca14ac221b4b2f3ed527700e384030445c4684d84f36b:log:21', 'hash': '0x0ae3b30945196e532bdca14ac221b4b2f3ed527700e384030445c4684d84f36b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 15952.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0360cdd9d45653120000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:27:19.000Z'}}, {'blockNum': '0x63b543', 'uniqueId': '0xa14dbc31e0169d308cae082d6ebb13fad8b7c932832f9397470ef0c6afdd608e:log:2', 'hash': '0xa14dbc31e0169d308cae082d6ebb13fad8b7c932832f9397470ef0c6afdd608e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 32299.6179038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d6f73e58cbce293000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:32:00.000Z'}}, {'blockNum': '0x63b549', 'uniqueId': '0x44b641060ecb452bfe6258c5d6416c09870441632464ef298e154d8a299f92d6:log:3', 'hash': '0x44b641060ecb452bfe6258c5d6416c09870441632464ef298e154d8a299f92d6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x238724df353f920ec90141f3f62db31d63f06b66', 'value': 1070.921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3a0e03af84721a8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:34:16.000Z'}}, {'blockNum': '0x63b54d', 'uniqueId': '0x5469d385d12acef0347166c70ec82b4d44aaa587ec6ad35bf3f12f57eef4135e:log:51', 'hash': '0x5469d385d12acef0347166c70ec82b4d44aaa587ec6ad35bf3f12f57eef4135e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 32753.61917602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06ef93c6e07a76ae4800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:34:54.000Z'}}, {'blockNum': '0x63b558', 'uniqueId': '0x563d1f61e3f294494e309deb11354d7b975b06cf3ff9874187be1c7ca78b611f:log:24', 'hash': '0x563d1f61e3f294494e309deb11354d7b975b06cf3ff9874187be1c7ca78b611f', 'from': '0x5986591391b5dd78c7170e6e16a17aed05b50b1d', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:37:04.000Z'}}, {'blockNum': '0x63b562', 'uniqueId': '0xdb762ae2e39a639c49b472eb03282228c8603ee41b16ba3dedf845fdf6c440d6:log:8', 'hash': '0xdb762ae2e39a639c49b472eb03282228c8603ee41b16ba3dedf845fdf6c440d6', 'from': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15952.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0360cdd9d45653120000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:39:07.000Z'}}, {'blockNum': '0x63b563', 'uniqueId': '0x9b8cd352658c89009d0e3b8283bc16b6f31f203bc6b5475bc67948382ba4ae40:log:8', 'hash': '0x9b8cd352658c89009d0e3b8283bc16b6f31f203bc6b5475bc67948382ba4ae40', 'from': '0xb9b5419705cfb6b8e7c402c6d676821a4ec93733', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:39:14.000Z'}}, {'blockNum': '0x63b584', 'uniqueId': '0xe23e220cd8120e40c205834d9f77b53c3c9ac0a0c7405141a70baac5333193c9:log:14', 'hash': '0xe23e220cd8120e40c205834d9f77b53c3c9ac0a0c7405141a70baac5333193c9', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb4db0bfaf58af0b0a0c01edefcb6034c41ff55f9', 'value': 240.386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0d0806a161610d0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:47:15.000Z'}}, {'blockNum': '0x63b592', 'uniqueId': '0x3784cd135e8375337111c7b5982ac7bade29279d2ec8f7881106baab7ffb2d3b:log:74', 'hash': '0x3784cd135e8375337111c7b5982ac7bade29279d2ec8f7881106baab7ffb2d3b', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65053.23707982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0dc68b05394644d77800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:49:29.000Z'}}, {'blockNum': '0x63b5a5', 'uniqueId': '0x121d3ae84cd3fb3e9afd7b02bdb16dda9e868440819aeceee29fed794e4c5b34:log:2', 'hash': '0x121d3ae84cd3fb3e9afd7b02bdb16dda9e868440819aeceee29fed794e4c5b34', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0ec6f7a6b489585c026427fcb6ab9667f882c784', 'value': 17888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03c9b5de49506b800000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:53:30.000Z'}}, {'blockNum': '0x63b5bb', 'uniqueId': '0xc899c40bfdc561270124f2fadb72914e547b9586c7857c2201dc3241498fd842:log:5', 'hash': '0xc899c40bfdc561270124f2fadb72914e547b9586c7857c2201dc3241498fd842', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb4db0bfaf58af0b0a0c01edefcb6034c41ff55f9', 'value': 589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1fee045b5821140000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T22:58:23.000Z'}}, {'blockNum': '0x63b5d9', 'uniqueId': '0x3a173ff00b6f5b99f33887170552f75baf725d4c4b42126f3c5e673437d2e8b9:log:2', 'hash': '0x3a173ff00b6f5b99f33887170552f75baf725d4c4b42126f3c5e673437d2e8b9', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:05:32.000Z'}}, {'blockNum': '0x63b5da', 'uniqueId': '0x8add477505c2d9a5c62899afada218ff1d5f45956ebd6c58cf4a0134a816eb9a:log:3', 'hash': '0x8add477505c2d9a5c62899afada218ff1d5f45956ebd6c58cf4a0134a816eb9a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 34375.37337996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07477e23388a2ec8b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:05:45.000Z'}}, {'blockNum': '0x63b5e3', 'uniqueId': '0x9108e890527a75b1d43357a2444bf4018e192cc34acf1733a356c0e69be18b61:log:5', 'hash': '0x9108e890527a75b1d43357a2444bf4018e192cc34acf1733a356c0e69be18b61', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfeacb5a0f52fbc6dd1c302e1b899a17613cba478', 'value': 494.398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1acd2689912f930000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:08:24.000Z'}}, {'blockNum': '0x63b5e8', 'uniqueId': '0x625b3555a72af7446e6bded450843f67b743b4f92521f7e7c03e1d773991a808:log:11', 'hash': '0x625b3555a72af7446e6bded450843f67b743b4f92521f7e7c03e1d773991a808', 'from': '0x0ec6f7a6b489585c026427fcb6ab9667f882c784', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03c9b5de49506b800000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:09:12.000Z'}}, {'blockNum': '0x63b610', 'uniqueId': '0x89d42682aabf6a8ccc9e568982c98a14f306939eb91d9a1511f59a0855b81654:log:15', 'hash': '0x89d42682aabf6a8ccc9e568982c98a14f306939eb91d9a1511f59a0855b81654', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:19:22.000Z'}}, {'blockNum': '0x63b61c', 'uniqueId': '0xf10fb68dadb46d5244a06a3cdbaafaa3c6fa7f202e5fff2481f01170bc5e62c7:log:13', 'hash': '0xf10fb68dadb46d5244a06a3cdbaafaa3c6fa7f202e5fff2481f01170bc5e62c7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 27036.88995718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05b9ac38c87910255800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:22:21.000Z'}}, {'blockNum': '0x63b630', 'uniqueId': '0x64dd4fa34930bafa996984e0e4b01206a2a9d62d3ab3d0ef85ce4af0eaae023c:log:38', 'hash': '0x64dd4fa34930bafa996984e0e4b01206a2a9d62d3ab3d0ef85ce4af0eaae023c', 'from': '0x495a9ecaf36093860c8ef495a433dea9dfaedb9f', 'to': '0x7c25063ba78c0840c6f5e2eb349d4b10de2ae63c', 'value': 1897.4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x66dd07bb3ddee10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:27:49.000Z'}}, {'blockNum': '0x63b634', 'uniqueId': '0x9cd6442160755aa5e135cdb28194fab0b7bfeef636e3cbd69b3519c90b1f37f0:log:9', 'hash': '0x9cd6442160755aa5e135cdb28194fab0b7bfeef636e3cbd69b3519c90b1f37f0', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34375.37337996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x07477e23388a2ec8b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:29:06.000Z'}}, {'blockNum': '0x63b63a', 'uniqueId': '0x20e0bedbd3adce3ba7c6ab3baaa80cc3adcd1584017b4a46095d92550ff3cb0a:log:0', 'hash': '0x20e0bedbd3adce3ba7c6ab3baaa80cc3adcd1584017b4a46095d92550ff3cb0a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc72d1f7dfab2aa2a24d5d5f7afb0b2e1b34666b0', 'value': 629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x221920e76a48b40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:30:12.000Z'}}, {'blockNum': '0x63b662', 'uniqueId': '0x8cdf53168e7d71e84be55288b974ba045eefc69b2bb129dcc4ab33f5840c64f9:log:2', 'hash': '0x8cdf53168e7d71e84be55288b974ba045eefc69b2bb129dcc4ab33f5840c64f9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbe2668aed3526fddf52381e60b283d63a9851de6', 'value': 2635.70996232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8ee1d2d623e1cf2000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:40:24.000Z'}}, {'blockNum': '0x63b680', 'uniqueId': '0x59a84b5c1f6c9ac15968255b21b90429f8b75ae6db10ebd8c1620063d3f53b44:log:16', 'hash': '0x59a84b5c1f6c9ac15968255b21b90429f8b75ae6db10ebd8c1620063d3f53b44', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xed4f93c94e38e04734c3f9caaccd09a5fc624d84', 'value': 3132.3852692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa9ce93fe3fbc562000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:48:59.000Z'}}, {'blockNum': '0x63b680', 'uniqueId': '0xc35251db1406ac04538f5dc733b1655871dce17733495f51f3d58ee089412890:log:18', 'hash': '0xc35251db1406ac04538f5dc733b1655871dce17733495f51f3d58ee089412890', 'from': '0x9da4c24b5f05b9a3db59f999d290eccddfbb30c1', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06d499ec6c63380000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:48:59.000Z'}}, {'blockNum': '0x63b681', 'uniqueId': '0x5d9947763f86eb982825a5943f769aa8f0261dd467a148ba586dd4fac0e51ba1:log:18', 'hash': '0x5d9947763f86eb982825a5943f769aa8f0261dd467a148ba586dd4fac0e51ba1', 'from': '0xc72d1f7dfab2aa2a24d5d5f7afb0b2e1b34666b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x221920e76a48b40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:49:25.000Z'}}, {'blockNum': '0x63b681', 'uniqueId': '0x9cb400bfa2ca71f05c68ef9afcc397ed1fb4bebe77ddf56e1d78dde2fb185a64:log:25', 'hash': '0x9cb400bfa2ca71f05c68ef9afcc397ed1fb4bebe77ddf56e1d78dde2fb185a64', 'from': '0x7c25063ba78c0840c6f5e2eb349d4b10de2ae63c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1897.4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x66dd07bb3ddee10000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:49:25.000Z'}}, {'blockNum': '0x63b684', 'uniqueId': '0x52131f63f4c8e7be73d2fafbd07d4fd9e8a37b972eee7562bc0e7a376730b7ab:log:2', 'hash': '0x52131f63f4c8e7be73d2fafbd07d4fd9e8a37b972eee7562bc0e7a376730b7ab', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xf25945d30546e1d4c319b0191ebc9e2bfb6cc789', 'value': 8752.84878444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01da7e2d9ade27d43000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:49:56.000Z'}}, {'blockNum': '0x63b695', 'uniqueId': '0x4bd1b83c37168c8f08fdb5f67d777d3698c87ded998955b079f3037639f4fd09:log:23', 'hash': '0x4bd1b83c37168c8f08fdb5f67d777d3698c87ded998955b079f3037639f4fd09', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xa29c972a17946a3ce0d006d46f781a8d25747435', 'value': 2159.533137810737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x75118aeb2455adfb80', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:53:00.000Z'}}, {'blockNum': '0x63b69e', 'uniqueId': '0x01075f17c2f0a07a2c702ea365bc50547e3bd30c57f4b6f821537697ef6384ab:log:3', 'hash': '0x01075f17c2f0a07a2c702ea365bc50547e3bd30c57f4b6f821537697ef6384ab', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 12921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02bc72e5719ba6440000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:54:32.000Z'}}, {'blockNum': '0x63b6a5', 'uniqueId': '0x5db1be986b7e62bcefe894db2cecfb27df77818b02908d71d158c4ee39c27d43:log:1', 'hash': '0x5db1be986b7e62bcefe894db2cecfb27df77818b02908d71d158c4ee39c27d43', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 2167.53313781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x758090a0c164dd3400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:56:29.000Z'}}, {'blockNum': '0x63b6b3', 'uniqueId': '0x4b2cfcc00ac0612e71af53a96979454dcd455a65bf22e19763f15ad930219c7b:log:50', 'hash': '0x4b2cfcc00ac0612e71af53a96979454dcd455a65bf22e19763f15ad930219c7b', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 8457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ca747394e4c6840000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-17T23:59:08.000Z'}}, {'blockNum': '0x63b6e5', 'uniqueId': '0xd6bf1f6ab3bf2001abe4d6837803e2f094d7017a24e0ae13bc171732d9821967:log:13', 'hash': '0xd6bf1f6ab3bf2001abe4d6837803e2f094d7017a24e0ae13bc171732d9821967', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01ca747394e4c6840000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:09:18.000Z'}}, {'blockNum': '0x63b6e5', 'uniqueId': '0x94f6145dc24e74f7a3ab89744d64a7a8c0a9430c4ecac48202cfdbc297523007:log:16', 'hash': '0x94f6145dc24e74f7a3ab89744d64a7a8c0a9430c4ecac48202cfdbc297523007', 'from': '0xbe2668aed3526fddf52381e60b283d63a9851de6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2635.70996232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x8ee1d2d623e1cf2000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:09:18.000Z'}}, {'blockNum': '0x63b6e5', 'uniqueId': '0x98b0eaa7a7fd1852b1f33e8544547f929427db3b1787447c261cf84f56d6c89a:log:19', 'hash': '0x98b0eaa7a7fd1852b1f33e8544547f929427db3b1787447c261cf84f56d6c89a', 'from': '0xed4f93c94e38e04734c3f9caaccd09a5fc624d84', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3132.3852692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xa9ce93fe3fbc562000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:09:18.000Z'}}, {'blockNum': '0x63b6ed', 'uniqueId': '0x1fb0baf40f8d4472bb9a2c92dd8d4cc1343f12cfd5af3e976220c061b1d97aa6:log:4', 'hash': '0x1fb0baf40f8d4472bb9a2c92dd8d4cc1343f12cfd5af3e976220c061b1d97aa6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 32163.43252285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06cf954aae5cf8295400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:10:52.000Z'}}, {'blockNum': '0x63b703', 'uniqueId': '0xeed98cd224076ae6a6a05c74393497885f9bb93c7b36c9517710aa2ca643a7fa:log:23', 'hash': '0xeed98cd224076ae6a6a05c74393497885f9bb93c7b36c9517710aa2ca643a7fa', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x506b947bd113aeced07b1932cdfbb1fbb3f90f8d', 'value': 8558.1344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cfeff925dc52c80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:15:04.000Z'}}, {'blockNum': '0x63b712', 'uniqueId': '0x1e02f55b712643e5d54be3a67f6179588ae324ff923a0555bd717ed63d84095f:log:112', 'hash': '0x1e02f55b712643e5d54be3a67f6179588ae324ff923a0555bd717ed63d84095f', 'from': '0x53d203f07a228ccf767b71a741c078f3936b8318', 'to': '0xf3f963c7ba5757946a6bb6dd664ec121f3025ad3', 'value': 1699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5c1a5c8a4fecac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:18:39.000Z'}}, {'blockNum': '0x63b72d', 'uniqueId': '0x1c1fade1312de896626f5857efbd3858388b4ee9f9fe853dcd6de685f21e70d6:log:15', 'hash': '0x1c1fade1312de896626f5857efbd3858388b4ee9f9fe853dcd6de685f21e70d6', 'from': '0x3b2657f866b4922393400c663b2ab027c47c9321', 'to': '0x10d8db6be4de3b63fb04a18ac6a8bff6437d5bba', 'value': 973.7822889117542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x34c9f1a8720fe9e1e5', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:25:05.000Z'}}, {'blockNum': '0x63b72f', 'uniqueId': '0xf48b75c64de0b1d21eef14e5e6ce66f6398e3dabcdf0e54c6d5c326b32bc749c:log:11', 'hash': '0xf48b75c64de0b1d21eef14e5e6ce66f6398e3dabcdf0e54c6d5c326b32bc749c', 'from': '0xf3f963c7ba5757946a6bb6dd664ec121f3025ad3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5c1a5c8a4fecac0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:26:08.000Z'}}, {'blockNum': '0x63b73d', 'uniqueId': '0x364922d122909c1d241d02e040a2da0949702efc5bbe229ceff2cd66bff6d5c4:log:3', 'hash': '0x364922d122909c1d241d02e040a2da0949702efc5bbe229ceff2cd66bff6d5c4', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32163.43252285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06cf954aae5cf8295400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:29:08.000Z'}}, {'blockNum': '0x63b73d', 'uniqueId': '0xa78749f75c39e60f0e45a95c0158ef9ccf03d4c97b9d268f0a505bee8d856770:log:9', 'hash': '0xa78749f75c39e60f0e45a95c0158ef9ccf03d4c97b9d268f0a505bee8d856770', 'from': '0x506b947bd113aeced07b1932cdfbb1fbb3f90f8d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8558.1344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01cfeff925dc52c80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:29:08.000Z'}}, {'blockNum': '0x63b749', 'uniqueId': '0x7fdbb0186933badfd794e097f5386ac542ff150d7b2f6949cb7cdb46f2d5ec16:log:59', 'hash': '0x7fdbb0186933badfd794e097f5386ac542ff150d7b2f6949cb7cdb46f2d5ec16', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xcc778f0a81a25e2a51474e5bcb0c6221a08395e6', 'value': 1098.3262566813153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3b8a56b7450e4c32aa', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:33:04.000Z'}}, {'blockNum': '0x63b74d', 'uniqueId': '0x8ee481a29e53b25dd56275cee674f1e4e351f11d516a005d18853ae1fbecf3c1:log:125', 'hash': '0x8ee481a29e53b25dd56275cee674f1e4e351f11d516a005d18853ae1fbecf3c1', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xcc778f0a81a25e2a51474e5bcb0c6221a08395e6', 'value': 460.897271956588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x18fc3c0ae7f708e464', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:33:44.000Z'}}, {'blockNum': '0x63b759', 'uniqueId': '0x6a00be6fb255bd0fa5306f41d44c1b922aafd738226b48231777095cafed8b84:log:21', 'hash': '0x6a00be6fb255bd0fa5306f41d44c1b922aafd738226b48231777095cafed8b84', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 1106.32625668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3bf95c6ce1fb079000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:36:32.000Z'}}, {'blockNum': '0x63b769', 'uniqueId': '0x0503ce44d7753d1dbafcaf156634201a0952f0ef272f9725816c78d8fe3e29d8:log:75', 'hash': '0x0503ce44d7753d1dbafcaf156634201a0952f0ef272f9725816c78d8fe3e29d8', 'from': '0xf3bd66f75c950de66332d5dfc98fd04edde1055f', 'to': '0x7b2133ca58b043e405a472ab734f0a090a6c522b', 'value': 1320.3045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4792e7db7a19bb4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:39:56.000Z'}}, {'blockNum': '0x63b76f', 'uniqueId': '0xf61c8efa8eb7d36387b37df916fb56fb6486592eeec4a53bb36f3b489339fa4d:log:17', 'hash': '0xf61c8efa8eb7d36387b37df916fb56fb6486592eeec4a53bb36f3b489339fa4d', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xcc778f0a81a25e2a51474e5bcb0c6221a08395e6', 'value': 1112.288345891971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3c4c1a056eb9bee274', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:41:20.000Z'}}, {'blockNum': '0x63b77e', 'uniqueId': '0x4a9f49077f5e09ab386325750a1dd8c55ef86a384de22a060f875a7fd03c55ec:log:66', 'hash': '0x4a9f49077f5e09ab386325750a1dd8c55ef86a384de22a060f875a7fd03c55ec', 'from': '0x7ff09e0fea5ed9b0c10679c8a21a1ee378e1acfc', 'to': '0x7d140d96e4d8a16bff8bca601addd839023360af', 'value': 113.36443379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06253f5fe6c83d6c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:43:59.000Z'}}, {'blockNum': '0x63b784', 'uniqueId': '0xb66ec7bae4a9289d99913cae51b0e402fd1c40c92a7c2d526a52a2da01a1767f:log:116', 'hash': '0xb66ec7bae4a9289d99913cae51b0e402fd1c40c92a7c2d526a52a2da01a1767f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 468.89727195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x196b41c083a97c0c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:44:39.000Z'}}, {'blockNum': '0x63b795', 'uniqueId': '0xf1c53db26ab632d07ac7a439c5571cd929eeff147246f854790181dd116e19e8:log:1', 'hash': '0xf1c53db26ab632d07ac7a439c5571cd929eeff147246f854790181dd116e19e8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 30421.37490108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06712562bd2e21837000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:49:06.000Z'}}, {'blockNum': '0x63b7a2', 'uniqueId': '0x69296abcc9023b4b68cef81f01d92eff9983ebe912b7c2a76a50771bc62c2195:log:7', 'hash': '0x69296abcc9023b4b68cef81f01d92eff9983ebe912b7c2a76a50771bc62c2195', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 1120.28834589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3cbb1fbb0b7f64d400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:52:54.000Z'}}, {'blockNum': '0x63b7a3', 'uniqueId': '0x5eac7157a986769097235638ab215697e1d7dfbb4ee78d2e9a71f4fd88c8a698:log:32', 'hash': '0x5eac7157a986769097235638ab215697e1d7dfbb4ee78d2e9a71f4fd88c8a698', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0xd646f40170a0c425e22e0b9e557fe341224baf92', 'value': 1312.3045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4723e225dcde9b4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:53:10.000Z'}}, {'blockNum': '0x63b7b7', 'uniqueId': '0xcf9ddb876c8834be95e1c673fb9e65875422c16add901ad476e74ae743e7b596:log:12', 'hash': '0xcf9ddb876c8834be95e1c673fb9e65875422c16add901ad476e74ae743e7b596', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 25865.66742171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x057a2e3e75ddaa730c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:56:52.000Z'}}, {'blockNum': '0x63b7bc', 'uniqueId': '0xf8c642e4823f22139387c8eb554c4e978455dd403aa2f5dc83d853362d62b42e:log:8', 'hash': '0xf8c642e4823f22139387c8eb554c4e978455dd403aa2f5dc83d853362d62b42e', 'from': '0xd646f40170a0c425e22e0b9e557fe341224baf92', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1312.3045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4723e225dcde9b4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:59:10.000Z'}}, {'blockNum': '0x63b7bc', 'uniqueId': '0x2d35fde1a3c2cedd8df136e046adab00265553766a9184c02f9fa8396b2b67d6:log:18', 'hash': '0x2d35fde1a3c2cedd8df136e046adab00265553766a9184c02f9fa8396b2b67d6', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56287.04232279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0beb53a1330bcbf67c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T00:59:10.000Z'}}, {'blockNum': '0x63b7c2', 'uniqueId': '0x4db6bb606e47cd005fa44137fc7d16ecac3ce890067e49ac54c0b376764213dc:log:69', 'hash': '0x4db6bb606e47cd005fa44137fc7d16ecac3ce890067e49ac54c0b376764213dc', 'from': '0x7b2133ca58b043e405a472ab734f0a090a6c522b', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 1320.3045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4792e7db7a19bb4000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:00:31.000Z'}}, {'blockNum': '0x63b7ce', 'uniqueId': '0xe3f7fd3bb382ed30eab357a12786440dd78b68ec3b529910e3bd7cadd54be175:log:12', 'hash': '0xe3f7fd3bb382ed30eab357a12786440dd78b68ec3b529910e3bd7cadd54be175', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x2df60a5875fce3d2feac4a5e8b4ca6db1c573034', 'value': 28.7227385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x018e9baa7c74efa800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:03:50.000Z'}}, {'blockNum': '0x63b7d4', 'uniqueId': '0x8bd2fdd4e7042646583b1e2f470e451f1f11db58b204251db01703c6aa6e7b66:log:8', 'hash': '0x8bd2fdd4e7042646583b1e2f470e451f1f11db58b204251db01703c6aa6e7b66', 'from': '0x7d140d96e4d8a16bff8bca601addd839023360af', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 113.36443379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06253f5fe6c83d6c00', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:05:28.000Z'}}, {'blockNum': '0x63b7d5', 'uniqueId': '0x33301df9f453bb460926470b6c36a39df4030c91e0db9a2a64ee8eacc9ce3661:log:69', 'hash': '0x33301df9f453bb460926470b6c36a39df4030c91e0db9a2a64ee8eacc9ce3661', 'from': '0xf25945d30546e1d4c319b0191ebc9e2bfb6cc789', 'to': '0x20f690450a223908f4a9823c240684f5dc946ded', 'value': 3337.88446688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb4f273cdc1ec838000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:06:16.000Z'}}, {'blockNum': '0x63b7e5', 'uniqueId': '0x5099a543072a78bb34c21ca8a5f1e55f4d9d72cb86bf371c2fac615ba86689b2:log:4', 'hash': '0x5099a543072a78bb34c21ca8a5f1e55f4d9d72cb86bf371c2fac615ba86689b2', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 1636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x58b00f9419bb100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:09:25.000Z'}}, {'blockNum': '0x63b7f7', 'uniqueId': '0x2f6c9c5149e963d06593018d763f35037ad47b89490b1275e2339fa68db6792c:log:0', 'hash': '0x2f6c9c5149e963d06593018d763f35037ad47b89490b1275e2339fa68db6792c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:13:36.000Z'}}, {'blockNum': '0x63b80f', 'uniqueId': '0xc710c5d93774fbacd5813d89764684f9ae6a7fd06fe5e2d7fafd894923e879a7:log:18', 'hash': '0xc710c5d93774fbacd5813d89764684f9ae6a7fd06fe5e2d7fafd894923e879a7', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x58b00f9419bb100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:19:12.000Z'}}, {'blockNum': '0x63b81c', 'uniqueId': '0x09ed57018fc2bfbbbb57e6fc88a6c30ae50e462a2601d4f177384f0368bd8ce1:log:9', 'hash': '0x09ed57018fc2bfbbbb57e6fc88a6c30ae50e462a2601d4f177384f0368bd8ce1', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x3260eb070b83568993c69ff8b5b3f663b382e8a8', 'value': 1464.7397417318734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4f6758ea94d5b8f52a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:21:53.000Z'}}, {'blockNum': '0x63b821', 'uniqueId': '0x9996daec0e898ee9f9311d67836651917448b3d225d5fdcc95428d8077bbe0dc:log:7', 'hash': '0x9996daec0e898ee9f9311d67836651917448b3d225d5fdcc95428d8077bbe0dc', 'from': '0x3260eb070b83568993c69ff8b5b3f663b382e8a8', 'to': '0xf67fe1373e9d1f0a978b125b77a12b149628f3ac', 'value': 1464.7397417318734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4f6758ea94d5b8f52a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:25:09.000Z'}}, {'blockNum': '0x63b825', 'uniqueId': '0xe51d45b96587418bc5e86c47161698e14113fade68bf4198e71908d812141879:log:16', 'hash': '0xe51d45b96587418bc5e86c47161698e14113fade68bf4198e71908d812141879', 'from': '0x20f690450a223908f4a9823c240684f5dc946ded', 'to': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'value': 3337.88446688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb4f273cdc1ec838000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:25:50.000Z'}}, {'blockNum': '0x63b82d', 'uniqueId': '0x965357f17cc753652d810fb3072846c1e7c7879f8192e523257d739d352ce6ee:log:12', 'hash': '0x965357f17cc753652d810fb3072846c1e7c7879f8192e523257d739d352ce6ee', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x08c04040d57b7f6268778a8d6502c098d02fb29e', 'value': 16910.067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0394b25257200f6b8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:28:13.000Z'}}, {'blockNum': '0x63b82d', 'uniqueId': '0x96dcf9af749d93ee1a56117f31ce6b923f1ae94a7f201f46d6c9b988ea7a0b1b:log:13', 'hash': '0x96dcf9af749d93ee1a56117f31ce6b923f1ae94a7f201f46d6c9b988ea7a0b1b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf33ceee08e164b6b60ca6bb1e4aafd16d1b04633', 'value': 33603.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x071da4421148c3fc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:28:13.000Z'}}, {'blockNum': '0x63b849', 'uniqueId': '0x5ccaf942a6e1e5ae90b423a795bbeb2e5b54af21921103406e2a50dca80d564d:log:9', 'hash': '0x5ccaf942a6e1e5ae90b423a795bbeb2e5b54af21921103406e2a50dca80d564d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9a56a4b1a553bd80cf521b31c8924209e4e66aac', 'value': 1499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5142cdcdf5268c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:35:16.000Z'}}, {'blockNum': '0x63b849', 'uniqueId': '0x1241f2f6ac2548b37e1d214987b53ff8d9d419678b6a9145df61ff50958104c5:log:10', 'hash': '0x1241f2f6ac2548b37e1d214987b53ff8d9d419678b6a9145df61ff50958104c5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd4edb53ce6ad280fa12abe68fd6adb3f51237178', 'value': 1499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5142cdcdf5268c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:35:16.000Z'}}, {'blockNum': '0x63b85d', 'uniqueId': '0xc9f602524b803b9008ac637780174c4696d93d2b47071e739686c231ca1e90c2:log:0', 'hash': '0xc9f602524b803b9008ac637780174c4696d93d2b47071e739686c231ca1e90c2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb4175163b55f6c522b106fc908a40c0a553c0aee', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:38:57.000Z'}}, {'blockNum': '0x63b85e', 'uniqueId': '0x54ce437e699980ac70c1c3630bed5d821c39e4c63b5a3843ffbe59b1ff4302ca:log:14', 'hash': '0x54ce437e699980ac70c1c3630bed5d821c39e4c63b5a3843ffbe59b1ff4302ca', 'from': '0xf67fe1373e9d1f0a978b125b77a12b149628f3ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1464.7397417318734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4f6758ea94d5b8f52a', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:39:18.000Z'}}, {'blockNum': '0x63b85e', 'uniqueId': '0xd446cb42f21e605ab2b13d519080a8a19dcc1af96c8c112af0a45af0c985822e:log:17', 'hash': '0xd446cb42f21e605ab2b13d519080a8a19dcc1af96c8c112af0a45af0c985822e', 'from': '0x175818d253a1c00dedcadcc59b65fd53363b6603', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28454.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06068814a01e1bfc8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:39:18.000Z'}}, {'blockNum': '0x63b85f', 'uniqueId': '0xc8e11bab4d6aa7823438535672ef9aaf6e2ce07c6bb2053c3131c5f749871ea4:log:17', 'hash': '0xc8e11bab4d6aa7823438535672ef9aaf6e2ce07c6bb2053c3131c5f749871ea4', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x3079f797a3b2f72cddf2638d64d9c4ae9f46a725', 'value': 534.1372836275567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x1cf4a4d57a88962af3', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:39:24.000Z'}}, {'blockNum': '0x63b866', 'uniqueId': '0x490ba60fcec1e272cb584ad0392c56365e4445695b72d960f9da289b66af8ccf:log:9', 'hash': '0x490ba60fcec1e272cb584ad0392c56365e4445695b72d960f9da289b66af8ccf', 'from': '0x2e42e23b855480402d6ce33869a588f7ff566464', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x17da3a04c7b3e00000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:43:13.000Z'}}, {'blockNum': '0x63b87c', 'uniqueId': '0x8ad100af15487945912015d034e073ecdd519cf2ea9518a8f7268c6d75617ebd:log:19', 'hash': '0x8ad100af15487945912015d034e073ecdd519cf2ea9518a8f7268c6d75617ebd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f050bc566289fe08f9534eb8b5b7437071a85ca', 'value': 37864.3538597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0804a177e573d5738800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:48:04.000Z'}}, {'blockNum': '0x63b882', 'uniqueId': '0xce821f48a522863581c4ffe67a456d9955664c9e2b3b45079418983762a8545f:log:18', 'hash': '0xce821f48a522863581c4ffe67a456d9955664c9e2b3b45079418983762a8545f', 'from': '0x9a56a4b1a553bd80cf521b31c8924209e4e66aac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5142cdcdf5268c0000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:49:11.000Z'}}, {'blockNum': '0x63b890', 'uniqueId': '0x459398246e3c9f92626c3baaf1cd3e8824a987ec3d0264efc12acef28ae042bc:log:8', 'hash': '0x459398246e3c9f92626c3baaf1cd3e8824a987ec3d0264efc12acef28ae042bc', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'value': 3394.88807214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb809894ab93366f800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:51:28.000Z'}}, {'blockNum': '0x63b89e', 'uniqueId': '0x118d710a586e9b8c735e2166aedbe3e38dd75e9a9fbcac63076aaacfd6a1999a:log:1', 'hash': '0x118d710a586e9b8c735e2166aedbe3e38dd75e9a9fbcac63076aaacfd6a1999a', 'from': '0x76a2aaa2e54ca4fac6af634e18a5e6a3d7c80991', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 3394.88807214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0xb809894ab93366f800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:53:26.000Z'}}, {'blockNum': '0x63b8ab', 'uniqueId': '0xdb67b7e5c7da73640870010c236415a253ea6ad9790cd692dcdf6b592e110b8d:log:6', 'hash': '0xdb67b7e5c7da73640870010c236415a253ea6ad9790cd692dcdf6b592e110b8d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 28935.73839718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06209c099c1f68c8d800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T01:55:40.000Z'}}, {'blockNum': '0x63b8d2', 'uniqueId': '0x27cf4232113a21c92c3a5527b098a8f8731f9143fd5f9fc941b584fc768b02a7:log:17', 'hash': '0x27cf4232113a21c92c3a5527b098a8f8731f9143fd5f9fc941b584fc768b02a7', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 28935.73839718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x06209c099c1f68c8d800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:05:07.000Z'}}, {'blockNum': '0x63b8df', 'uniqueId': '0xc1a01adca28728568487fe73b1ea16548e63ad2b2b2ce3f97125e5bd38a7cb92:log:2', 'hash': '0xc1a01adca28728568487fe73b1ea16548e63ad2b2b2ce3f97125e5bd38a7cb92', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x440d08e428ede1985a1f47f7336ac3fd6b0dc387', 'value': 1077.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3a6f135d76292f8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:07:43.000Z'}}, {'blockNum': '0x63b8eb', 'uniqueId': '0xc87f05c8056e55c33b5b0cb55fd57571beedf13c1c0c26b926876fad94109b88:log:5', 'hash': '0xc87f05c8056e55c33b5b0cb55fd57571beedf13c1c0c26b926876fad94109b88', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xe0847b7484a30c7e3b3c92dfb2749f087b926517', 'value': 5463.4887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01282d2309d8a4b7c000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:09:36.000Z'}}, {'blockNum': '0x63b900', 'uniqueId': '0xe07dc0fd700f0dfda617694866296b0b4dd6c1211e1f43be4cb4f63b16cad3a0:log:7', 'hash': '0xe07dc0fd700f0dfda617694866296b0b4dd6c1211e1f43be4cb4f63b16cad3a0', 'from': '0x9de85fc08dc6fa936a70437e46ec44a7d919795a', 'to': '0xe0847b7484a30c7e3b3c92dfb2749f087b926517', 'value': 55338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0bb7e1058eb5d6680000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:14:51.000Z'}}, {'blockNum': '0x63b90d', 'uniqueId': '0xedff6b52764c09618bd52bba522e0bb8ed025b034fda131c17aba061828f223c:log:22', 'hash': '0xedff6b52764c09618bd52bba522e0bb8ed025b034fda131c17aba061828f223c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0f2bb5136d048b540510d25e7fca0a2ea806c79b', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:18:08.000Z'}}, {'blockNum': '0x63b915', 'uniqueId': '0x24d0da06c5fa7a49616e38f6d3d9fbad7fe96347e0b05f920a72041f2b39b996:log:11', 'hash': '0x24d0da06c5fa7a49616e38f6d3d9fbad7fe96347e0b05f920a72041f2b39b996', 'from': '0xe0847b7484a30c7e3b3c92dfb2749f087b926517', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60801.4887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ce00e28988e7b1fc000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:19:28.000Z'}}, {'blockNum': '0x63b922', 'uniqueId': '0x941b5e85e35121b4cfe7d8a7c4ccab113683fdfcf920eda72aea5d2001529155:log:85', 'hash': '0x941b5e85e35121b4cfe7d8a7c4ccab113683fdfcf920eda72aea5d2001529155', 'from': '0x440d08e428ede1985a1f47f7336ac3fd6b0dc387', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 1077.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3a6f135d76292f8000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:22:28.000Z'}}, {'blockNum': '0x63b925', 'uniqueId': '0xfd41c7e712e1dcf2d961f401241117d0ca87190cef0ab70b5dfbefc5f37467e2:log:82', 'hash': '0xfd41c7e712e1dcf2d961f401241117d0ca87190cef0ab70b5dfbefc5f37467e2', 'from': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'to': '0x03756ed9957de46d36af8a17fb9bb69431a0da42', 'value': 2004.4542769820614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6ca96420dc7c3972cf', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:23:39.000Z'}}, {'blockNum': '0x63b946', 'uniqueId': '0xad4893e8cca79c031e0e664772eb942ad32a4e7bc7caff9a4f0cda45636b879a:log:6', 'hash': '0xad4893e8cca79c031e0e664772eb942ad32a4e7bc7caff9a4f0cda45636b879a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5d4c46f6c0a23457cb7a78aed81bd374a6e439ae', 'value': 2012.45427698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6d1869d6793c798800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:30:01.000Z'}}, {'blockNum': '0x63b952', 'uniqueId': '0x0408042210203a1d77f325a0477dd0b3a937f0e686c44ecb61c59eb3e079475b:log:22', 'hash': '0x0408042210203a1d77f325a0477dd0b3a937f0e686c44ecb61c59eb3e079475b', 'from': '0x0f2bb5136d048b540510d25e7fca0a2ea806c79b', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:33:52.000Z'}}, {'blockNum': '0x63b954', 'uniqueId': '0x1903adfb9f6addcf28d79cc58246b2e24fd35982f0b50e91cc97562e9d255f37:log:5', 'hash': '0x1903adfb9f6addcf28d79cc58246b2e24fd35982f0b50e91cc97562e9d255f37', 'from': '0x276580495e06cf4042a9ae1f2335d16e0ddd5577', 'to': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'value': 1702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5c43feae6ae2d80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:34:17.000Z'}}, {'blockNum': '0x63b961', 'uniqueId': '0x557cb8582628f2326eeaa63716232c933e7ecfa9f6406ff8185516a6c73b1a8a:log:8', 'hash': '0x557cb8582628f2326eeaa63716232c933e7ecfa9f6406ff8185516a6c73b1a8a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb4175163b55f6c522b106fc908a40c0a553c0aee', 'value': 22560.25731037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x04c6fe76be6a5d5fd400', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:36:38.000Z'}}, {'blockNum': '0x63b974', 'uniqueId': '0x2fa3ea61429bd7928cb737d4ef52bb983a0cd9e6924425fc57d1616165c4b066:log:14', 'hash': '0x2fa3ea61429bd7928cb737d4ef52bb983a0cd9e6924425fc57d1616165c4b066', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe9bd0792177a17d73bab6ce3ed000cfc04e1895b', 'value': 201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ae56f730e6d840000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:41:32.000Z'}}, {'blockNum': '0x63b980', 'uniqueId': '0x19d32564a79ab4f58e8fee7d4b60996d30a458ece68c15a37cf93bd7a550be87:log:1', 'hash': '0x19d32564a79ab4f58e8fee7d4b60996d30a458ece68c15a37cf93bd7a550be87', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6f5c678e1d3c83fb5f31ec2fe5930eac801f9884', 'value': 1377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x4aa5b6bc5760e40000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:43:59.000Z'}}, {'blockNum': '0x63b98f', 'uniqueId': '0xc6f0d56b6abb3a9e2af3dbe6bf6b055be92a16aba43c1f7710a3e4b3e25f6f04:log:109', 'hash': '0xc6f0d56b6abb3a9e2af3dbe6bf6b055be92a16aba43c1f7710a3e4b3e25f6f04', 'from': '0x9e4edbbe451a30378b8ab76291677ab042b1008d', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 1992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6bfc8da5ee82200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:47:05.000Z'}}, {'blockNum': '0x63b9a1', 'uniqueId': '0xbdc1e5b4ab646d368ea1184e9d9ab84f32ddb9f6b95633e6fbfaafcb3ab16ac2:log:62', 'hash': '0xbdc1e5b4ab646d368ea1184e9d9ab84f32ddb9f6b95633e6fbfaafcb3ab16ac2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb4175163b55f6c522b106fc908a40c0a553c0aee', 'value': 17357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03acecc352ac37140000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:50:32.000Z'}}, {'blockNum': '0x63b9c7', 'uniqueId': '0xd7cf33e0a320730c09a96b9f6aad3e736d3f25a83bef9fb95219266d491b7ce4:log:17', 'hash': '0xd7cf33e0a320730c09a96b9f6aad3e736d3f25a83bef9fb95219266d491b7ce4', 'from': '0xb36efd48c9912bd9fd58b67b65f7438f6364a256', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x5c43feae6ae2d80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:59:05.000Z'}}, {'blockNum': '0x63b9c7', 'uniqueId': '0xa74cdb43f3bd9daf84609897f477a9ffc3c6fd29ced31a5f103d34474d83b2fd:log:23', 'hash': '0xa74cdb43f3bd9daf84609897f477a9ffc3c6fd29ced31a5f103d34474d83b2fd', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6bfc8da5ee82200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T02:59:05.000Z'}}, {'blockNum': '0x63b9ef', 'uniqueId': '0x2dc386dcc99db5a6cb6e854276c108b0007ea1932086be32fd74b406d84593b3:log:1', 'hash': '0x2dc386dcc99db5a6cb6e854276c108b0007ea1932086be32fd74b406d84593b3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x00e3288576a962f74790440a419be8fd2d17ea96', 'value': 5411.3425722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x01255976c6e4e9989000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T03:06:02.000Z'}}, {'blockNum': '0x63ba55', 'uniqueId': '0xb402b8d39d31553207d9780a8dd0d6d2b70c7ede7496951c0bc300be2e2c6042:log:5', 'hash': '0xb402b8d39d31553207d9780a8dd0d6d2b70c7ede7496951c0bc300be2e2c6042', 'from': '0xc8e6d4220b863a4cef97a1a390429447cbd235b1', 'to': '0x81823168c51c686ab4c8cb5f25c59ed0beb99707', 'value': 1125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3cfc82e37e9a740000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T03:31:26.000Z'}}, {'blockNum': '0x63ba5a', 'uniqueId': '0x780d751e693b78457d2293740d8c3721b928805efb5e81bae11914bb050af39b:log:3', 'hash': '0x780d751e693b78457d2293740d8c3721b928805efb5e81bae11914bb050af39b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x64ab2318b4861b52b91f2c101d1f0214578f5cdf', 'value': 233.2605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0ca523c4e206014000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T03:33:25.000Z'}}, {'blockNum': '0x63ba79', 'uniqueId': '0x61800a62a74a3e12e32e486d246a40f2b654ea9a979e0eaf8b45028dddbdcb09:log:1', 'hash': '0x61800a62a74a3e12e32e486d246a40f2b654ea9a979e0eaf8b45028dddbdcb09', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 28030.32961606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05ef86f772c15fc85800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T03:41:41.000Z'}}, {'blockNum': '0x63bb04', 'uniqueId': '0x9dbde0d18c15553a0019b7430d5ed8c13c4ba4c0aec700fc0659baea05114618:log:10', 'hash': '0x9dbde0d18c15553a0019b7430d5ed8c13c4ba4c0aec700fc0659baea05114618', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:13:26.000Z'}}, {'blockNum': '0x63bb27', 'uniqueId': '0xc669ea12b0c889c7a2fee6e4648056e8418d132d4e1d84345762fc499b4a215c:log:7', 'hash': '0xc669ea12b0c889c7a2fee6e4648056e8418d132d4e1d84345762fc499b4a215c', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 28030.32961606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x05ef86f772c15fc85800', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:23:30.000Z'}}, {'blockNum': '0x63bb40', 'uniqueId': '0xae6fd71449ca8fab87c904fdef40aff685a5caa4f1f672ec9ec12c6a71c1d94d:log:10', 'hash': '0xae6fd71449ca8fab87c904fdef40aff685a5caa4f1f672ec9ec12c6a71c1d94d', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:29:11.000Z'}}, {'blockNum': '0x63bb58', 'uniqueId': '0xd41cb777903f6f0b2273cec363303c8b77cd502d37c9c70f135b3a01f890a428:log:9', 'hash': '0xd41cb777903f6f0b2273cec363303c8b77cd502d37c9c70f135b3a01f890a428', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x9a56a4b1a553bd80cf521b31c8924209e4e66aac', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:35:45.000Z'}}, {'blockNum': '0x63bb5f', 'uniqueId': '0xf3b3f195417d629b15930bed3f8f29ceba57686c38971b79fede585f043afa2b:log:18', 'hash': '0xf3b3f195417d629b15930bed3f8f29ceba57686c38971b79fede585f043afa2b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 34292.12848416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0742fae1f0dc2b608000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:37:20.000Z'}}, {'blockNum': '0x63bb5f', 'uniqueId': '0x9abb3194e96feebffa774b3b09303a555bf7db4717cee7a1c3663fb176f07feb:log:19', 'hash': '0x9abb3194e96feebffa774b3b09303a555bf7db4717cee7a1c3663fb176f07feb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 36.97603404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x020125430d4cf3b000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:37:20.000Z'}}, {'blockNum': '0x63bb66', 'uniqueId': '0x376a12c42c13d57eaf31c770b8b006e5b1ad0e67958919ef6daee0221ea880ea:log:40', 'hash': '0x376a12c42c13d57eaf31c770b8b006e5b1ad0e67958919ef6daee0221ea880ea', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 15963.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03616042f570df710000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:39:56.000Z'}}, {'blockNum': '0x63bb6a', 'uniqueId': '0xb5592866b2a39a2dc37c816591977b06f6640dc8d7bd0fa1a399b35a1fe63676:log:9', 'hash': '0xb5592866b2a39a2dc37c816591977b06f6640dc8d7bd0fa1a399b35a1fe63676', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xe89d01615a43bc8b58d2bc4a7744c3393602ad56', 'value': 14058.9456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x02fa231057b6bd040000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:40:36.000Z'}}, {'blockNum': '0x63bb7c', 'uniqueId': '0x6cd5ff9a3513d6cfa4a5cdd68f0623b0cdfef5428ca371aeeced232b6ac6f354:log:3', 'hash': '0x6cd5ff9a3513d6cfa4a5cdd68f0623b0cdfef5428ca371aeeced232b6ac6f354', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x669d7796c9a1435cad8c62a2a43d951bbb45b39a', 'value': 1994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6c184f1355d0e80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:44:02.000Z'}}, {'blockNum': '0x63bb84', 'uniqueId': '0x4d51e124c5a9c4fe36613770a1f205716c8f2de6d2c20550420003d9892dd400:log:16', 'hash': '0x4d51e124c5a9c4fe36613770a1f205716c8f2de6d2c20550420003d9892dd400', 'from': '0x56f2cf864a053e5184c6613ecbd6560193a7d724', 'to': '0x52ce9026e4062171ec710214744f15a472bc764a', 'value': 1142.7764135076848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3df335656574745fb5', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:46:21.000Z'}}, {'blockNum': '0x63bb91', 'uniqueId': '0x2c97b11c83fb1d4c87c1f78ef539d1e096c64a822cea461182b529fbccaed89a:log:10', 'hash': '0x2c97b11c83fb1d4c87c1f78ef539d1e096c64a822cea461182b529fbccaed89a', 'from': '0x9a56a4b1a553bd80cf521b31c8924209e4e66aac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:49:14.000Z'}}, {'blockNum': '0x63bb91', 'uniqueId': '0x9e42b3dc4da2b305bcd54c43d141f2455c4bbfe3d2293724ccdddd187396aeed:log:12', 'hash': '0x9e42b3dc4da2b305bcd54c43d141f2455c4bbfe3d2293724ccdddd187396aeed', 'from': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15963.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x03616042f570df710000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:49:14.000Z'}}, {'blockNum': '0x63bb91', 'uniqueId': '0x2e3762118a29b38264b82a3665f0c1ff9fc0339d74e52d589b43d138f2546fb5:log:15', 'hash': '0x2e3762118a29b38264b82a3665f0c1ff9fc0339d74e52d589b43d138f2546fb5', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34292.12848416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0742fae1f0dc2b608000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:49:14.000Z'}}, {'blockNum': '0x63bb93', 'uniqueId': '0xbe24f39e588fc249ff09e4c6359b69c6c18e2649e091e3d3e39a938e2a690100:log:18', 'hash': '0xbe24f39e588fc249ff09e4c6359b69c6c18e2649e091e3d3e39a938e2a690100', 'from': '0x669d7796c9a1435cad8c62a2a43d951bbb45b39a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x6c184f1355d0e80000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:50:17.000Z'}}, {'blockNum': '0x63bbb8', 'uniqueId': '0xdb8dabd42f4e305d0f244a3ab31ce24d9cbaa27fd9308463e201d911f5db9e10:log:32', 'hash': '0xdb8dabd42f4e305d0f244a3ab31ce24d9cbaa27fd9308463e201d911f5db9e10', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 28449.535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x0606409c26674ab98000', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:59:43.000Z'}}, {'blockNum': '0x63bbb8', 'uniqueId': '0x15f141e830123a4696d9df06c877c56889ed9bcb97be16040fb28e55cbfa5520:log:57', 'hash': '0x15f141e830123a4696d9df06c877c56889ed9bcb97be16040fb28e55cbfa5520', 'from': '0x52ce9026e4062171ec710214744f15a472bc764a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1142.7764135076848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POLY', 'category': 'erc20', 'rawContract': {'value': '0x3df335656574745fb5', 'address': '0x9992ec3cf6a55b00978cddf2b27bc6882d88d1ec', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-18T04:59:43.000Z'}}]}}
Number of returned transfers:  578
Answer is complete
 
symbol             XZC
group              BPS
date        2018-10-20
hour             20:05
exchange       binance
Name: 307, dtype: object
HERE
 Symbol: XZC, Contract: 
Datetime timestamps:  2018-10-20 20:05:00 2018-10-20 08:05:00 2018-10-21 08:05:00
Unix timestamps:  1540015500.0 1540101900.0
Hex Block Numbers:  0x63ec74 0x640485
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BNT
group              BPS
date        2019-01-06
hour             21:00
exchange       binance
Name: 308, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2019-01-06 21:00:00 2019-01-06 09:00:00 2019-01-07 09:00:00
Unix timestamps:  1546761600.0 1546848000.0
Hex Block Numbers:  0x6b1a1f 0x6b2fc9
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6b1a3a', 'uniqueId': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4:log:54', 'hash': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 86.7824850948604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b459526684c9382d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:08:14.000Z'}}, {'blockNum': '0x6b1a3a', 'uniqueId': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4:log:58', 'hash': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 86.7824850948604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b459526684c9382d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:08:14.000Z'}}, {'blockNum': '0x6b1a44', 'uniqueId': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647:log:45', 'hash': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647', 'from': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 284.71836387374753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f42d370cd21b311', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:11:16.000Z'}}, {'blockNum': '0x6b1a44', 'uniqueId': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647:log:49', 'hash': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 284.71836387374753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f42d370cd21b311', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:11:16.000Z'}}, {'blockNum': '0x6b1a58', 'uniqueId': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0:log:199', 'hash': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 445.65913148990586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1828c34ae304f0db8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:14:28.000Z'}}, {'blockNum': '0x6b1a58', 'uniqueId': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0:log:203', 'hash': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 445.65913148990586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1828c34ae304f0db8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:14:28.000Z'}}, {'blockNum': '0x6b1a60', 'uniqueId': '0xaab70c8217ae9d8efe4cd8eb26ce55fe184b7d81f774c898bdd2fb6c0103dfcb:log:51', 'hash': '0xaab70c8217ae9d8efe4cd8eb26ce55fe184b7d81f774c898bdd2fb6c0103dfcb', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 434.721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1790f73e3fda968000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:16:31.000Z'}}, {'blockNum': '0x6b1a62', 'uniqueId': '0xba124000943d1f1e1f3399f2cb4271063ad2e446572c3091c5aa3375cf71729f:log:108', 'hash': '0xba124000943d1f1e1f3399f2cb4271063ad2e446572c3091c5aa3375cf71729f', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1794d673456eec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:16:53.000Z'}}, {'blockNum': '0x6b1a7a', 'uniqueId': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b:log:74', 'hash': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 220.30111646698853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf14aca38accf181d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:21:40.000Z'}}, {'blockNum': '0x6b1a7a', 'uniqueId': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b:log:78', 'hash': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'value': 220.30111646698853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf14aca38accf181d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:21:40.000Z'}}, {'blockNum': '0x6b1a80', 'uniqueId': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98:log:239', 'hash': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 802.7449687491827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b845307f3c7158257', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:23:33.000Z'}}, {'blockNum': '0x6b1a80', 'uniqueId': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98:log:243', 'hash': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 802.7449687491827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b845307f3c7158257', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:23:33.000Z'}}, {'blockNum': '0x6b1a85', 'uniqueId': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce:log:78', 'hash': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 612.4469499825277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x213368a82047fe3a9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:24:48.000Z'}}, {'blockNum': '0x6b1a85', 'uniqueId': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce:log:82', 'hash': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 612.4469499825277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x213368a82047fe3a9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:24:48.000Z'}}, {'blockNum': '0x6b1a86', 'uniqueId': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d:log:50', 'hash': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 222.52228100548976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c101df399d5de749d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:25:34.000Z'}}, {'blockNum': '0x6b1a86', 'uniqueId': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d:log:54', 'hash': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 222.52228100548976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c101df399d5de749d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:25:34.000Z'}}, {'blockNum': '0x6b1a8d', 'uniqueId': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3:log:41', 'hash': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 910.5460558130136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315c5d6d7b6fae674e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:26:52.000Z'}}, {'blockNum': '0x6b1a8d', 'uniqueId': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3:log:45', 'hash': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 910.5460558130136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315c5d6d7b6fae674e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:26:52.000Z'}}, {'blockNum': '0x6b1a92', 'uniqueId': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced:log:111', 'hash': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 601.6834357685901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209e08f8f9df6062a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:28:33.000Z'}}, {'blockNum': '0x6b1a92', 'uniqueId': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced:log:115', 'hash': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 601.6834357685901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209e08f8f9df6062a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:28:33.000Z'}}, {'blockNum': '0x6b1a97', 'uniqueId': '0x9644d4a74e9d2ab93dbe15ee85df206cec762e6a59ca83941c0e3539ff6cb90d:log:4', 'hash': '0x9644d4a74e9d2ab93dbe15ee85df206cec762e6a59ca83941c0e3539ff6cb90d', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1794d673456eec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:30:04.000Z'}}, {'blockNum': '0x6b1aa4', 'uniqueId': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229:log:33', 'hash': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 244.44884567000346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4068c1fdcad7643f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:32:32.000Z'}}, {'blockNum': '0x6b1aa4', 'uniqueId': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229:log:37', 'hash': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 244.44884567000346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4068c1fdcad7643f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:32:32.000Z'}}, {'blockNum': '0x6b1aab', 'uniqueId': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845:log:69', 'hash': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 359.71956948729587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13801ca2929eb74909', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:04.000Z'}}, {'blockNum': '0x6b1aab', 'uniqueId': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845:log:73', 'hash': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 359.71956948729587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13801ca2929eb74909', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:04.000Z'}}, {'blockNum': '0x6b1aac', 'uniqueId': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b:log:33', 'hash': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 342.3415775357067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x128ef19af71ea5025a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:11.000Z'}}, {'blockNum': '0x6b1aac', 'uniqueId': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b:log:37', 'hash': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 342.3415775357067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x128ef19af71ea5025a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:11.000Z'}}, {'blockNum': '0x6b1abb', 'uniqueId': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b:log:18', 'hash': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 221.78426949645788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c05e0020b29dffc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:37:30.000Z'}}, {'blockNum': '0x6b1abb', 'uniqueId': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b:log:22', 'hash': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 221.78426949645788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c05e0020b29dffc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:37:30.000Z'}}, {'blockNum': '0x6b1ac4', 'uniqueId': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e:log:80', 'hash': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:39:04.000Z'}}, {'blockNum': '0x6b1ac4', 'uniqueId': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e:log:83', 'hash': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:39:04.000Z'}}, {'blockNum': '0x6b1ac4', 'uniqueId': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e:log:85', 'hash': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:39:04.000Z'}}, {'blockNum': '0x6b1acb', 'uniqueId': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1:log:66', 'hash': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 67.09304102874553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a31a5d576b161f79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:42:19.000Z'}}, {'blockNum': '0x6b1acb', 'uniqueId': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1:log:70', 'hash': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 67.09304102874553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a31a5d576b161f79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:42:19.000Z'}}, {'blockNum': '0x6b1ae4', 'uniqueId': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3:log:77', 'hash': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8.920211247487716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bcaf4de47f30bbc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:48:04.000Z'}}, {'blockNum': '0x6b1ae4', 'uniqueId': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3:log:81', 'hash': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 8.920211247487716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bcaf4de47f30bbc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:48:04.000Z'}}, {'blockNum': '0x6b1af5', 'uniqueId': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644:log:19', 'hash': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1601.405645020698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56cff7bd891c001e7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:16.000Z'}}, {'blockNum': '0x6b1af5', 'uniqueId': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644:log:22', 'hash': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'value': 1601.405645020698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56cff7bd891c001e7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:16.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15:log:48', 'hash': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15', 'from': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.98192165760648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092918627168858f3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15:log:52', 'hash': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.98192165760648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092918627168858f3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349:log:68', 'hash': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349', 'from': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ca569989d8640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349:log:71', 'hash': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ca569989d8640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1afd', 'uniqueId': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036:log:76', 'hash': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 248.68423769321905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7b2fe498af20eb10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:55:48.000Z'}}, {'blockNum': '0x6b1afd', 'uniqueId': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036:log:80', 'hash': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 248.68423769321905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7b2fe498af20eb10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:55:48.000Z'}}, {'blockNum': '0x6b1b05', 'uniqueId': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c:log:10', 'hash': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 222.17150986252054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0b3fc31ad7bb544b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:57:23.000Z'}}, {'blockNum': '0x6b1b05', 'uniqueId': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c:log:14', 'hash': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 222.17150986252054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0b3fc31ad7bb544b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:57:23.000Z'}}, {'blockNum': '0x6b1b07', 'uniqueId': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c:log:94', 'hash': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.99302491172955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183b463be2fcf94a0d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:12.000Z'}}, {'blockNum': '0x6b1b07', 'uniqueId': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c:log:98', 'hash': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 446.99302491172955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183b463be2fcf94a0d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:12.000Z'}}, {'blockNum': '0x6b1b08', 'uniqueId': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07:log:44', 'hash': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07', 'from': '0x32131848edc60e032abf0369241d34ec969ebf90', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 275.23852267035886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebb3aa17ae0a0e21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:28.000Z'}}, {'blockNum': '0x6b1b08', 'uniqueId': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07:log:48', 'hash': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 275.23852267035886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebb3aa17ae0a0e21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:28.000Z'}}, {'blockNum': '0x6b1b09', 'uniqueId': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a:log:100', 'hash': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a', 'from': '0x51907923c3280c24b6b69b0d217ea34cabde684d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.3185943606039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831ea2cdfab752a36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:46.000Z'}}, {'blockNum': '0x6b1b09', 'uniqueId': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a:log:102', 'hash': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 446.3185943606039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831ea2cdfab752a36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:46.000Z'}}, {'blockNum': '0x6b1b14', 'uniqueId': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb:log:32', 'hash': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 167.6132451928812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091619de732c224a4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:01:23.000Z'}}, {'blockNum': '0x6b1b14', 'uniqueId': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb:log:36', 'hash': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 167.6132451928812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091619de732c224a4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:01:23.000Z'}}, {'blockNum': '0x6b1b1e', 'uniqueId': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7:log:24', 'hash': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.47909367937288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d653ba88d43ab74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:04:03.000Z'}}, {'blockNum': '0x6b1b1e', 'uniqueId': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7:log:28', 'hash': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 223.47909367937288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d653ba88d43ab74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:04:03.000Z'}}, {'blockNum': '0x6b1b2b', 'uniqueId': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c:log:81', 'hash': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.6204116529042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3b1cb90298c24aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:33.000Z'}}, {'blockNum': '0x6b1b2b', 'uniqueId': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c:log:84', 'hash': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 225.6204116529042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3b1cb90298c24aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:33.000Z'}}, {'blockNum': '0x6b1b2c', 'uniqueId': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42:log:46', 'hash': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 105.96656991339044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05be94e1e6ba3b9ceb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:54.000Z'}}, {'blockNum': '0x6b1b2c', 'uniqueId': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42:log:48', 'hash': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 105.96656991339044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05be94e1e6ba3b9ceb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:54.000Z'}}, {'blockNum': '0x6b1b2d', 'uniqueId': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5:log:95', 'hash': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 111.75337734334823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ee3c099587562e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:56.000Z'}}, {'blockNum': '0x6b1b2d', 'uniqueId': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5:log:99', 'hash': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0f1c029c5d7f626f6820bfe0f6a7b2ac48746ddf', 'value': 111.75337734334823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ee3c099587562e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:56.000Z'}}, {'blockNum': '0x6b1b2f', 'uniqueId': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505:log:24', 'hash': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505', 'from': '0xdc59242010e2d29617bfeec57e62c7c00a5acb52', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 401.1995052078203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15bfc2f857269c1ad3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:07:53.000Z'}}, {'blockNum': '0x6b1b2f', 'uniqueId': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505:log:28', 'hash': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 401.1995052078203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15bfc2f857269c1ad3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:07:53.000Z'}}, {'blockNum': '0x6b1b31', 'uniqueId': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9:log:59', 'hash': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.84762911696714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1234d27748edf67d1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:12.000Z'}}, {'blockNum': '0x6b1b31', 'uniqueId': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9:log:63', 'hash': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 335.84762911696714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1234d27748edf67d1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:12.000Z'}}, {'blockNum': '0x6b1b33', 'uniqueId': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3:log:69', 'hash': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3', 'from': '0x51907923c3280c24b6b69b0d217ea34cabde684d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.3165626074732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831e2f50147d4f22f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:45.000Z'}}, {'blockNum': '0x6b1b33', 'uniqueId': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3:log:71', 'hash': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 446.3165626074732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831e2f50147d4f22f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:45.000Z'}}, {'blockNum': '0x6b1b3e', 'uniqueId': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250:log:44', 'hash': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.00404727104312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b76c78069bd1ac76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:11:32.000Z'}}, {'blockNum': '0x6b1b3e', 'uniqueId': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250:log:48', 'hash': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.00404727104312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b76c78069bd1ac76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:11:32.000Z'}}, {'blockNum': '0x6b1b53', 'uniqueId': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2:log:117', 'hash': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.67122435559176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2df088313723019c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:02.000Z'}}, {'blockNum': '0x6b1b53', 'uniqueId': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2:log:121', 'hash': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.67122435559176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2df088313723019c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:02.000Z'}}, {'blockNum': '0x6b1b54', 'uniqueId': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783:log:71', 'hash': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 256.8596739902329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deca4e097de7a13c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:39.000Z'}}, {'blockNum': '0x6b1b54', 'uniqueId': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783:log:75', 'hash': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 256.8596739902329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deca4e097de7a13c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:39.000Z'}}, {'blockNum': '0x6b1b5d', 'uniqueId': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8:log:67', 'hash': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.49182811517588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d92798f6fb7c733', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:19:54.000Z'}}, {'blockNum': '0x6b1b5d', 'uniqueId': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8:log:71', 'hash': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 223.49182811517588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d92798f6fb7c733', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:19:54.000Z'}}, {'blockNum': '0x6b1b78', 'uniqueId': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e:log:64', 'hash': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.5958810778617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0923bce494bff285f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:27:50.000Z'}}, {'blockNum': '0x6b1b78', 'uniqueId': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e:log:68', 'hash': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.5958810778617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0923bce494bff285f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:27:50.000Z'}}, {'blockNum': '0x6b1b7f', 'uniqueId': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2:log:68', 'hash': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3.3527486788014795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e875b28e51f581b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:29:18.000Z'}}, {'blockNum': '0x6b1b7f', 'uniqueId': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2:log:71', 'hash': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x007eb60fa5eb50a300294fc5164dcc75b88f8e5c', 'value': 3.3527486788014795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e875b28e51f581b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:29:18.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d:log:22', 'hash': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 117.24182161003773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0e9f949e03f26f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d:log:26', 'hash': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4f8d76340ae90d4fe17d6c34427aa22da86e784f', 'value': 117.24182161003773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0e9f949e03f26f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805:log:30', 'hash': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805', 'from': '0xc7151af2e9d1a702a61fcb655e2334bfee5b5faf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 155.6893464381893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08709fabb541003056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805:log:34', 'hash': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 155.6893464381893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08709fabb541003056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b89', 'uniqueId': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481:log:36', 'hash': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.41666638569635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c462996788b8e9c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:47.000Z'}}, {'blockNum': '0x6b1b89', 'uniqueId': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481:log:40', 'hash': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.41666638569635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c462996788b8e9c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:47.000Z'}}, {'blockNum': '0x6b1b8a', 'uniqueId': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804:log:28', 'hash': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 217.42098728673884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc95283fdd4c9f442', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:52.000Z'}}, {'blockNum': '0x6b1b8a', 'uniqueId': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804:log:32', 'hash': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 217.42098728673884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc95283fdd4c9f442', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:52.000Z'}}, {'blockNum': '0x6b1b91', 'uniqueId': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e:log:57', 'hash': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e', 'from': '0x4f8d76340ae90d4fe17d6c34427aa22da86e784f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 117.24194954458285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0f13efb321b40a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:35:43.000Z'}}, {'blockNum': '0x6b1b91', 'uniqueId': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e:log:60', 'hash': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 117.24194954458285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0f13efb321b40a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:35:43.000Z'}}, {'blockNum': '0x6b1b91', 'uniqueId': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e:log:62', 'hash': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'value': 117.24194954458285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0f13efb321b40a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:35:43.000Z'}}, {'blockNum': '0x6b1b9c', 'uniqueId': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126:log:73', 'hash': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.53062646350466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2bfd0727811df078', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:37:18.000Z'}}, {'blockNum': '0x6b1b9c', 'uniqueId': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126:log:77', 'hash': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.53062646350466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2bfd0727811df078', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:37:18.000Z'}}, {'blockNum': '0x6b1bb3', 'uniqueId': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a:log:41', 'hash': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:17.000Z'}}, {'blockNum': '0x6b1bb3', 'uniqueId': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a:log:44', 'hash': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:17.000Z'}}, {'blockNum': '0x6b1bb3', 'uniqueId': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a:log:46', 'hash': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:17.000Z'}}, {'blockNum': '0x6b1bb4', 'uniqueId': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f:log:98', 'hash': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 111.76854804039105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060f19a64480b0df33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:40.000Z'}}, {'blockNum': '0x6b1bb4', 'uniqueId': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f:log:102', 'hash': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 111.76854804039105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060f19a64480b0df33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:40.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544:log:76', 'hash': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 439.98170659938995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d9f9070776c771c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544:log:80', 'hash': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 439.98170659938995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d9f9070776c771c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5:log:93', 'hash': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 434.6972478776593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1790a2dbd1ebcfa6a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5:log:97', 'hash': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 434.6972478776593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1790a2dbd1ebcfa6a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bd7', 'uniqueId': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7:log:56', 'hash': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.2615505962503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122cb04bf9b8264d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:01.000Z'}}, {'blockNum': '0x6b1bd7', 'uniqueId': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7:log:60', 'hash': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'value': 335.2615505962503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122cb04bf9b8264d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:01.000Z'}}, {'blockNum': '0x6b1bdb', 'uniqueId': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca:log:87', 'hash': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.35492907676567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c298cd34fdc933f8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:49.000Z'}}, {'blockNum': '0x6b1bdb', 'uniqueId': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca:log:91', 'hash': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.35492907676567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c298cd34fdc933f8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:49.000Z'}}, {'blockNum': '0x6b1be9', 'uniqueId': '0xffc8729cdd60d363a444db393277ec5b262815d0fcddcc4ed3ffa9047bec328a:log:11', 'hash': '0xffc8729cdd60d363a444db393277ec5b262815d0fcddcc4ed3ffa9047bec328a', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xfca5d6de2e70ae53907076afc6a3326449a377a6', 'value': 23.935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014c2a33afdaf98000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:57:55.000Z'}}, {'blockNum': '0x6b1bf9', 'uniqueId': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312:log:12', 'hash': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.9095765579387036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2860e476bebd7d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:01:50.000Z'}}, {'blockNum': '0x6b1bf9', 'uniqueId': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312:log:17', 'hash': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 2.9095765579387036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2860e476bebd7d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:01:50.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30:log:74', 'hash': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1560.4459900187533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x549789d0532a873f88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30:log:78', 'hash': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 1560.4459900187533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x549789d0532a873f88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa:log:101', 'hash': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 789.4186567622687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2acb6275ce550ab527', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa:log:103', 'hash': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 789.4186567622687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2acb6275ce550ab527', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c0e', 'uniqueId': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f:log:36', 'hash': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 228.6928447434094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c65c032a0a47a401a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:29.000Z'}}, {'blockNum': '0x6b1c0e', 'uniqueId': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f:log:40', 'hash': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 228.6928447434094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c65c032a0a47a401a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:29.000Z'}}, {'blockNum': '0x6b1c10', 'uniqueId': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966:log:67', 'hash': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 352.57184774230126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131cead38412f998de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:52.000Z'}}, {'blockNum': '0x6b1c10', 'uniqueId': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966:log:71', 'hash': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 352.57184774230126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131cead38412f998de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:52.000Z'}}, {'blockNum': '0x6b1c14', 'uniqueId': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e:log:28', 'hash': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 270.7984484676639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eae155a2132074af3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:10:05.000Z'}}, {'blockNum': '0x6b1c14', 'uniqueId': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e:log:32', 'hash': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 270.7984484676639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eae155a2132074af3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:10:05.000Z'}}, {'blockNum': '0x6b1c1c', 'uniqueId': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8:log:37', 'hash': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.77096400531832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09262ae993713c27eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:12:13.000Z'}}, {'blockNum': '0x6b1c1c', 'uniqueId': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8:log:39', 'hash': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.77096400531832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09262ae993713c27eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:12:13.000Z'}}, {'blockNum': '0x6b1c22', 'uniqueId': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c:log:16', 'hash': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 280.94272840757424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3add12fd02818a41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:14:01.000Z'}}, {'blockNum': '0x6b1c22', 'uniqueId': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c:log:20', 'hash': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 280.94272840757424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3add12fd02818a41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:14:01.000Z'}}, {'blockNum': '0x6b1c2f', 'uniqueId': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445:log:58', 'hash': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 523.0503892613112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c5ac845cb1e3f15f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:11.000Z'}}, {'blockNum': '0x6b1c2f', 'uniqueId': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445:log:62', 'hash': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 523.0503892613112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c5ac845cb1e3f15f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:11.000Z'}}, {'blockNum': '0x6b1c34', 'uniqueId': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5:log:78', 'hash': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 89.4096801813244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8cefe69811fea2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:39.000Z'}}, {'blockNum': '0x6b1c34', 'uniqueId': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5:log:82', 'hash': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 89.4096801813244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8cefe69811fea2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:39.000Z'}}, {'blockNum': '0x6b1c3f', 'uniqueId': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e:log:19', 'hash': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 868.9023685064876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1a715483bcc167db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:25.000Z'}}, {'blockNum': '0x6b1c3f', 'uniqueId': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e:log:24', 'hash': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 868.9023685064876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1a715483bcc167db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:25.000Z'}}, {'blockNum': '0x6b1c41', 'uniqueId': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620:log:24', 'hash': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 791.4222375995218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ae7309bf6484bd071', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:40.000Z'}}, {'blockNum': '0x6b1c41', 'uniqueId': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620:log:28', 'hash': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 791.4222375995218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ae7309bf6484bd071', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:40.000Z'}}, {'blockNum': '0x6b1c53', 'uniqueId': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349:log:99', 'hash': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.9693095597352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183af1fae651a038f2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:24:48.000Z'}}, {'blockNum': '0x6b1c53', 'uniqueId': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349:log:103', 'hash': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 446.9693095597352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183af1fae651a038f2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:24:48.000Z'}}, {'blockNum': '0x6b1c5b', 'uniqueId': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610:log:198', 'hash': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 357.04569779254655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135b01226ee235c7af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:28:05.000Z'}}, {'blockNum': '0x6b1c5b', 'uniqueId': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610:log:202', 'hash': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 357.04569779254655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135b01226ee235c7af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:28:05.000Z'}}, {'blockNum': '0x6b1c63', 'uniqueId': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72:log:55', 'hash': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 670.4865755338838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2458ded40ed541d61b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:33.000Z'}}, {'blockNum': '0x6b1c63', 'uniqueId': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72:log:59', 'hash': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 670.4865755338838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2458ded40ed541d61b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:33.000Z'}}, {'blockNum': '0x6b1c64', 'uniqueId': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae:log:52', 'hash': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:44.000Z'}}, {'blockNum': '0x6b1c64', 'uniqueId': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae:log:55', 'hash': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9caac20ade4648bc6a4f80ec5d5f7005985245c', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:44.000Z'}}, {'blockNum': '0x6b1c6f', 'uniqueId': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd:log:38', 'hash': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 240.33888539835343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d075f3ee65a2c6636', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:32:46.000Z'}}, {'blockNum': '0x6b1c6f', 'uniqueId': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd:log:42', 'hash': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 240.33888539835343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d075f3ee65a2c6636', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:32:46.000Z'}}, {'blockNum': '0x6b1c74', 'uniqueId': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343:log:91', 'hash': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343', 'from': '0xe9caac20ade4648bc6a4f80ec5d5f7005985245c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:34:36.000Z'}}, {'blockNum': '0x6b1c74', 'uniqueId': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343:log:94', 'hash': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:34:36.000Z'}}, {'blockNum': '0x6b1c74', 'uniqueId': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343:log:95', 'hash': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:34:36.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01:log:64', 'hash': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.39050175862937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2a0b347a46c503cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01:log:68', 'hash': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.39050175862937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2a0b347a46c503cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6:log:75', 'hash': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6:log:78', 'hash': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6:log:79', 'hash': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c85', 'uniqueId': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f:log:88', 'hash': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15789.47132300062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0357f2eec0108d01fadf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:39:29.000Z'}}, {'blockNum': '0x6b1c85', 'uniqueId': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f:log:91', 'hash': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 15789.47132300062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0357f2eec0108d01fadf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:39:29.000Z'}}, {'blockNum': '0x6b1c85', 'uniqueId': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f:log:92', 'hash': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15789.47132300062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0357f2eec0108d01fadf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:39:29.000Z'}}, {'blockNum': '0x6b1c88', 'uniqueId': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4:log:47', 'hash': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13.32665678543915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8f1cbbd1ba652b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:40:03.000Z'}}, {'blockNum': '0x6b1c88', 'uniqueId': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4:log:51', 'hash': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 13.32665678543915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8f1cbbd1ba652b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:40:03.000Z'}}, {'blockNum': '0x6b1c98', 'uniqueId': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4:log:29', 'hash': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:43:25.000Z'}}, {'blockNum': '0x6b1c98', 'uniqueId': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4:log:32', 'hash': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:43:25.000Z'}}, {'blockNum': '0x6b1c98', 'uniqueId': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4:log:34', 'hash': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:43:25.000Z'}}, {'blockNum': '0x6b1ca0', 'uniqueId': '0xa3fb68bcdd5bf7ebc88438725f5ae4c8530f1b3f6839afca7ae3de9fc9c6baf1:log:13', 'hash': '0xa3fb68bcdd5bf7ebc88438725f5ae4c8530f1b3f6839afca7ae3de9fc9c6baf1', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 181.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09d1f61539e6030000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:44:34.000Z'}}, {'blockNum': '0x6b1ca3', 'uniqueId': '0x7ecc0af535d347fa1e12b6484574891c80c1ce1e1e299ecb6e973058c7cf8008:log:34', 'hash': '0x7ecc0af535d347fa1e12b6484574891c80c1ce1e1e299ecb6e973058c7cf8008', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfe12d0559b40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:44:50.000Z'}}, {'blockNum': '0x6b1cb4', 'uniqueId': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd:log:42', 'hash': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.94231237336334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09288baa024366ed57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:48:19.000Z'}}, {'blockNum': '0x6b1cb4', 'uniqueId': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd:log:44', 'hash': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.94231237336334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09288baa024366ed57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:48:19.000Z'}}, {'blockNum': '0x6b1cb8', 'uniqueId': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1:log:21', 'hash': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 109.48348581255333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ef637a4734c28599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:04.000Z'}}, {'blockNum': '0x6b1cb8', 'uniqueId': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1:log:25', 'hash': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 109.48348581255333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ef637a4734c28599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:04.000Z'}}, {'blockNum': '0x6b1cba', 'uniqueId': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c:log:28', 'hash': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 294.59482965854215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff85314be801dc015', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:14.000Z'}}, {'blockNum': '0x6b1cba', 'uniqueId': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c:log:31', 'hash': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.59482965854215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff85314be801dc015', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:14.000Z'}}, {'blockNum': '0x6b1cd6', 'uniqueId': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f:log:51', 'hash': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 257.16808940459293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0df0ec96c74ea8e329', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:56:08.000Z'}}, {'blockNum': '0x6b1cd6', 'uniqueId': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f:log:53', 'hash': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 257.16808940459293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0df0ec96c74ea8e329', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:56:08.000Z'}}, {'blockNum': '0x6b1ce4', 'uniqueId': '0x79dd1e6b4ea30ae6df9209e601036006f1ae619de8e7d5e0e6d6bd47cfe7e76f:log:6', 'hash': '0x79dd1e6b4ea30ae6df9209e601036006f1ae619de8e7d5e0e6d6bd47cfe7e76f', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfe12d0559b40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:00:13.000Z'}}, {'blockNum': '0x6b1ce7', 'uniqueId': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b:log:80', 'hash': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.378288179121747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cc2cde6d8d7f332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:01:15.000Z'}}, {'blockNum': '0x6b1ce7', 'uniqueId': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b:log:84', 'hash': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 4.378288179121747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cc2cde6d8d7f332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:01:15.000Z'}}, {'blockNum': '0x6b1cec', 'uniqueId': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105:log:31', 'hash': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 236.6235566809066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd3cfbf1daef24e3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:03:34.000Z'}}, {'blockNum': '0x6b1cec', 'uniqueId': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105:log:35', 'hash': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 236.6235566809066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd3cfbf1daef24e3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:03:34.000Z'}}, {'blockNum': '0x6b1cf2', 'uniqueId': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796:log:29', 'hash': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.45300440502416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1841a868cc7ac35087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:04:44.000Z'}}, {'blockNum': '0x6b1cf2', 'uniqueId': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796:log:33', 'hash': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.45300440502416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1841a868cc7ac35087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:04:44.000Z'}}, {'blockNum': '0x6b1cf9', 'uniqueId': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d:log:66', 'hash': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.11974771219957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c26494b1b5fd1f818', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:06:04.000Z'}}, {'blockNum': '0x6b1cf9', 'uniqueId': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d:log:68', 'hash': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.11974771219957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c26494b1b5fd1f818', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:06:04.000Z'}}, {'blockNum': '0x6b1d07', 'uniqueId': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e:log:46', 'hash': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.50133163994656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1842541a29b14a07fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:32.000Z'}}, {'blockNum': '0x6b1d07', 'uniqueId': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e:log:50', 'hash': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.50133163994656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1842541a29b14a07fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:32.000Z'}}, {'blockNum': '0x6b1d09', 'uniqueId': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d:log:40', 'hash': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1500.0804021890406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5151cc2a063addc8df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:48.000Z'}}, {'blockNum': '0x6b1d09', 'uniqueId': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d:log:43', 'hash': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xecc996953e976a305ee585a9c7bbbcc85d1c467b', 'value': 1500.0804021890406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5151cc2a063addc8df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:48.000Z'}}, {'blockNum': '0x6b1d0d', 'uniqueId': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79:log:24', 'hash': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.05168257091935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091c2f82ec1a5a4768', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:11:15.000Z'}}, {'blockNum': '0x6b1d0d', 'uniqueId': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79:log:28', 'hash': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 168.05168257091935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091c2f82ec1a5a4768', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:11:15.000Z'}}, {'blockNum': '0x6b1d1b', 'uniqueId': '0x3f6ac8ce589f5fa84f92bccf8d7a055dd099e3ccd4852ebb9abcfe057845635e:log:17', 'hash': '0x3f6ac8ce589f5fa84f92bccf8d7a055dd099e3ccd4852ebb9abcfe057845635e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 904.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3109d8cb394a5c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:13:59.000Z'}}, {'blockNum': '0x6b1d1d', 'uniqueId': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26:log:0', 'hash': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310f65e11ac0840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:05.000Z'}}, {'blockNum': '0x6b1d1d', 'uniqueId': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26:log:3', 'hash': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310f65e11ac0840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:05.000Z'}}, {'blockNum': '0x6b1d20', 'uniqueId': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e:log:20', 'hash': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 360.79199813183004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138efeaabe3320a16b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:56.000Z'}}, {'blockNum': '0x6b1d20', 'uniqueId': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e:log:24', 'hash': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 360.79199813183004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138efeaabe3320a16b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:56.000Z'}}, {'blockNum': '0x6b1d21', 'uniqueId': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487:log:63', 'hash': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.57678080480375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bf5f3a23ea934e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:15:09.000Z'}}, {'blockNum': '0x6b1d21', 'uniqueId': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487:log:67', 'hash': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.57678080480375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bf5f3a23ea934e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:15:09.000Z'}}, {'blockNum': '0x6b1d26', 'uniqueId': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295:log:8', 'hash': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 269.1186699238008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e96c59471a1bea2f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:08.000Z'}}, {'blockNum': '0x6b1d26', 'uniqueId': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295:log:10', 'hash': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 269.1186699238008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e96c59471a1bea2f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:08.000Z'}}, {'blockNum': '0x6b1d27', 'uniqueId': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e:log:77', 'hash': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1153.9710075956723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e8e90956867a316e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:57.000Z'}}, {'blockNum': '0x6b1d27', 'uniqueId': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e:log:81', 'hash': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 1153.9710075956723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e8e90956867a316e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:57.000Z'}}, {'blockNum': '0x6b1d29', 'uniqueId': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8:log:49', 'hash': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.4244108927759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184142d3269e52e241', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:17:16.000Z'}}, {'blockNum': '0x6b1d29', 'uniqueId': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8:log:53', 'hash': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.4244108927759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184142d3269e52e241', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:17:16.000Z'}}, {'blockNum': '0x6b1d2e', 'uniqueId': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59:log:75', 'hash': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 358.0535022402302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1368fd933d1d73fa27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:18:11.000Z'}}, {'blockNum': '0x6b1d2e', 'uniqueId': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59:log:79', 'hash': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 358.0535022402302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1368fd933d1d73fa27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:18:11.000Z'}}, {'blockNum': '0x6b1d3b', 'uniqueId': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2:log:87', 'hash': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.07516618413197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c25aae8717fced48d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:22:32.000Z'}}, {'blockNum': '0x6b1d3b', 'uniqueId': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2:log:91', 'hash': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.07516618413197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c25aae8717fced48d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:22:32.000Z'}}, {'blockNum': '0x6b1d44', 'uniqueId': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6:log:22', 'hash': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 256.74463754153913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deb0c2f8d79dc91e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:24:27.000Z'}}, {'blockNum': '0x6b1d44', 'uniqueId': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6:log:26', 'hash': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 256.74463754153913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deb0c2f8d79dc91e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:24:27.000Z'}}, {'blockNum': '0x6b1d49', 'uniqueId': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4:log:69', 'hash': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 262.5082988174276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e3b08d2f224ddc455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:26.000Z'}}, {'blockNum': '0x6b1d49', 'uniqueId': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4:log:73', 'hash': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 262.5082988174276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e3b08d2f224ddc455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:26.000Z'}}, {'blockNum': '0x6b1d4e', 'uniqueId': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b:log:69', 'hash': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 268.46817773309783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8dbe913e2dbaff2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:59.000Z'}}, {'blockNum': '0x6b1d4e', 'uniqueId': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b:log:73', 'hash': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 268.46817773309783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8dbe913e2dbaff2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:59.000Z'}}, {'blockNum': '0x6b1d4f', 'uniqueId': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da:log:18', 'hash': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 39.795822886645155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0228472a116ed845b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:26:46.000Z'}}, {'blockNum': '0x6b1d4f', 'uniqueId': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da:log:22', 'hash': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 39.795822886645155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0228472a116ed845b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:26:46.000Z'}}, {'blockNum': '0x6b1d5e', 'uniqueId': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16:log:49', 'hash': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.04694291747526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2546a388285595ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:33:25.000Z'}}, {'blockNum': '0x6b1d5e', 'uniqueId': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16:log:53', 'hash': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 224.04694291747526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2546a388285595ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:33:25.000Z'}}, {'blockNum': '0x6b1d60', 'uniqueId': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18:log:60', 'hash': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.0409303201547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2531471b40dcfc34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:34:03.000Z'}}, {'blockNum': '0x6b1d60', 'uniqueId': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18:log:64', 'hash': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.0409303201547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2531471b40dcfc34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:34:03.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6:log:65', 'hash': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 279.83229982895335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b740a14515e4805', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6:log:69', 'hash': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 279.83229982895335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b740a14515e4805', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44:log:100', 'hash': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 265.59581595735835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e65e1e36d205ec8ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44:log:102', 'hash': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 265.59581595735835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e65e1e36d205ec8ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d74', 'uniqueId': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c:log:76', 'hash': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.04035171882862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c252f38df225b5f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:15.000Z'}}, {'blockNum': '0x6b1d74', 'uniqueId': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c:log:80', 'hash': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.04035171882862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c252f38df225b5f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:15.000Z'}}, {'blockNum': '0x6b1d78', 'uniqueId': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a:log:150', 'hash': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 286.40287436291106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f86a368ce3c24a29d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:50.000Z'}}, {'blockNum': '0x6b1d78', 'uniqueId': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a:log:154', 'hash': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 286.40287436291106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f86a368ce3c24a29d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:50.000Z'}}, {'blockNum': '0x6b1d8c', 'uniqueId': '0x6caad61b911f8226071f925a5e58c0d71cddd4ced28da94794de4ce60fa5b7ad:log:2', 'hash': '0x6caad61b911f8226071f925a5e58c0d71cddd4ced28da94794de4ce60fa5b7ad', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x161e9e50cca7e4b22a8b4f5721d6728f12a50502', 'value': 4.34300169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c457106df5f0400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:45:40.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x797abf04535f7b281bdae02d821922a972c92c33d6e433c50f81bbde6edbc385:log:42', 'hash': '0x797abf04535f7b281bdae02d821922a972c92c33d6e433c50f81bbde6edbc385', 'from': '0x161e9e50cca7e4b22a8b4f5721d6728f12a50502', 'to': '0x521db06bf657ed1d6c98553a70319a8ddbac75a3', 'value': 4.34300169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c457106df5f0400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c:log:84', 'hash': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c:log:87', 'hash': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c:log:89', 'hash': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1da1', 'uniqueId': '0xb9cdaa5dc8806aa14debf250a19922f55c1e6d9fd46f305c89690aeb8651db1e:log:14', 'hash': '0xb9cdaa5dc8806aa14debf250a19922f55c1e6d9fd46f305c89690aeb8651db1e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc7476fe5ce21078cf7a9b8aaadb0cdc26aacd9fe', 'value': 147.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07fd72781824d30000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:01.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565:log:85', 'hash': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 104.73700169976951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ad849420223ed5e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565:log:89', 'hash': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 104.73700169976951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ad849420223ed5e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4:log:102', 'hash': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.480772382431511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2ee6bdde360448', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4:log:105', 'hash': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1310c4ca76a8b4ff40fd9ec5de46932184b02ac1', 'value': 4.480772382431511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2ee6bdde360448', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1dac', 'uniqueId': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4:log:32', 'hash': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 233.67942041485418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0caaf412c7da8c419d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:54:36.000Z'}}, {'blockNum': '0x6b1dac', 'uniqueId': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4:log:36', 'hash': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 233.67942041485418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0caaf412c7da8c419d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:54:36.000Z'}}, {'blockNum': '0x6b1db2', 'uniqueId': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8:log:85', 'hash': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 329.7552129560593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e045db10c7344cd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:56:34.000Z'}}, {'blockNum': '0x6b1db2', 'uniqueId': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8:log:89', 'hash': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 329.7552129560593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e045db10c7344cd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:56:34.000Z'}}, {'blockNum': '0x6b1db5', 'uniqueId': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522:log:7', 'hash': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.02608830443631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0612ac9dc5f277f34f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:21.000Z'}}, {'blockNum': '0x6b1db5', 'uniqueId': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522:log:11', 'hash': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 112.02608830443631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0612ac9dc5f277f34f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:21.000Z'}}, {'blockNum': '0x6b1db7', 'uniqueId': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08:log:49', 'hash': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 336.06924561514336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1237e5ce50d81f9ada', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:45.000Z'}}, {'blockNum': '0x6b1db7', 'uniqueId': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08:log:53', 'hash': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 336.06924561514336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1237e5ce50d81f9ada', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:45.000Z'}}, {'blockNum': '0x6b1dc3', 'uniqueId': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab:log:48', 'hash': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.2404162420234157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f178eb3aed23f7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:00:40.000Z'}}, {'blockNum': '0x6b1dc3', 'uniqueId': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab:log:52', 'hash': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2.2404162420234157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f178eb3aed23f7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:00:40.000Z'}}, {'blockNum': '0x6b1ddd', 'uniqueId': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912:log:42', 'hash': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912', 'from': '0x6b431a7a99780819473722161ee9145e5649c5e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 240.06396987456705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d038e8cafffa51d03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:54.000Z'}}, {'blockNum': '0x6b1ddd', 'uniqueId': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912:log:44', 'hash': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 240.06396987456705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d038e8cafffa51d03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:54.000Z'}}, {'blockNum': '0x6b1dde', 'uniqueId': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383:log:15', 'hash': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.04503033202212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c253fd80ba7cc08b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:57.000Z'}}, {'blockNum': '0x6b1dde', 'uniqueId': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383:log:19', 'hash': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 224.04503033202212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c253fd80ba7cc08b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:57.000Z'}}, {'blockNum': '0x6b1dee', 'uniqueId': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15:log:97', 'hash': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 45.05472945688444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0271428dbb18ecceac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:10:51.000Z'}}, {'blockNum': '0x6b1dee', 'uniqueId': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15:log:101', 'hash': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 45.05472945688444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0271428dbb18ecceac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:10:51.000Z'}}, {'blockNum': '0x6b1e0b', 'uniqueId': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4:log:53', 'hash': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 86.70091141411882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b3378391ed299870', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:19:24.000Z'}}, {'blockNum': '0x6b1e0b', 'uniqueId': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4:log:57', 'hash': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 86.70091141411882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b3378391ed299870', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:19:24.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26:log:12', 'hash': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.016367090832125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bfb932f99d62d43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26:log:16', 'hash': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 2.016367090832125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bfb932f99d62d43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40:log:30', 'hash': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.7924372527662195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aff4d7b9deabcf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40:log:34', 'hash': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 0.7924372527662195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aff4d7b9deabcf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667:log:46', 'hash': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 527.027075869002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c91f84d3198b61dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667:log:50', 'hash': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0f1c029c5d7f626f6820bfe0f6a7b2ac48746ddf', 'value': 527.027075869002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c91f84d3198b61dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242:log:50', 'hash': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242:log:53', 'hash': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92578f6e362c4d28cfae1992af4d00b16beb22d4', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8:log:60', 'hash': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.00555805468403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24b39c37ea9595b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8:log:64', 'hash': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 224.00555805468403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24b39c37ea9595b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e28', 'uniqueId': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc:log:20', 'hash': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 357.9245143263665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136733516a1b492e10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:28:28.000Z'}}, {'blockNum': '0x6b1e28', 'uniqueId': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc:log:24', 'hash': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 357.9245143263665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136733516a1b492e10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:28:28.000Z'}}, {'blockNum': '0x6b1e2f', 'uniqueId': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3:log:74', 'hash': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 148.17169942117258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084b9f9384f1bbfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:31:09.000Z'}}, {'blockNum': '0x6b1e2f', 'uniqueId': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3:log:79', 'hash': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 148.17169942117258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084b9f9384f1bbfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:31:09.000Z'}}, {'blockNum': '0x6b1e35', 'uniqueId': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d:log:34', 'hash': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d', 'from': '0xe65c7e27c1c086f26ce0daa986c3d9c24ef3c2d8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 206.86882730998158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b36e1b666811463d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:33:49.000Z'}}, {'blockNum': '0x6b1e35', 'uniqueId': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d:log:39', 'hash': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 206.86882730998158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b36e1b666811463d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:33:49.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d:log:19', 'hash': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d', 'from': '0x92578f6e362c4d28cfae1992af4d00b16beb22d4', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d:log:22', 'hash': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d:log:24', 'hash': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38:log:57', 'hash': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.88384079157711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3ec49c6a82d81cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38:log:60', 'hash': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 225.88384079157711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3ec49c6a82d81cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e43', 'uniqueId': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698:log:50', 'hash': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13.332226284072508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb905952b0f4499b9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:37:32.000Z'}}, {'blockNum': '0x6b1e43', 'uniqueId': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698:log:54', 'hash': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 13.332226284072508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb905952b0f4499b9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:37:32.000Z'}}, {'blockNum': '0x6b1e53', 'uniqueId': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1:log:59', 'hash': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 623.8758894800167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21d204680bc3413c16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:05.000Z'}}, {'blockNum': '0x6b1e53', 'uniqueId': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1:log:63', 'hash': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 623.8758894800167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21d204680bc3413c16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:05.000Z'}}, {'blockNum': '0x6b1e55', 'uniqueId': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3:log:52', 'hash': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.97479142098982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24464e20ca4e70d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:36.000Z'}}, {'blockNum': '0x6b1e55', 'uniqueId': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3:log:56', 'hash': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 223.97479142098982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24464e20ca4e70d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:36.000Z'}}, {'blockNum': '0x6b1e5e', 'uniqueId': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5:log:21', 'hash': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 294.34540706060505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff4dcf4367b1e6a1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:29.000Z'}}, {'blockNum': '0x6b1e5e', 'uniqueId': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5:log:24', 'hash': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.34540706060505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff4dcf4367b1e6a1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:29.000Z'}}, {'blockNum': '0x6b1e61', 'uniqueId': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970:log:30', 'hash': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 559.9304320511291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5a98814fda8ada51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:49.000Z'}}, {'blockNum': '0x6b1e61', 'uniqueId': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970:log:34', 'hash': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 559.9304320511291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5a98814fda8ada51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:49.000Z'}}, {'blockNum': '0x6b1e65', 'uniqueId': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda:log:87', 'hash': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 262.11814829076724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e359ebb1be657c3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:43:50.000Z'}}, {'blockNum': '0x6b1e65', 'uniqueId': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda:log:89', 'hash': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 262.11814829076724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e359ebb1be657c3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:43:50.000Z'}}, {'blockNum': '0x6b1e73', 'uniqueId': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7:log:39', 'hash': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 272.1979023722994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ec181360a935c5567', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:26.000Z'}}, {'blockNum': '0x6b1e73', 'uniqueId': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7:log:42', 'hash': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 272.1979023722994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ec181360a935c5567', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:26.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad:log:57', 'hash': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 933.8358472315997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x329f936361fd7296de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad:log:61', 'hash': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 933.8358472315997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x329f936361fd7296de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4:log:72', 'hash': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.97426226941187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24446cde16786a97', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4:log:76', 'hash': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 223.97426226941187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24446cde16786a97', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc:log:92', 'hash': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 80.43896991591006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045c50a0f46026f440', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc:log:96', 'hash': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 80.43896991591006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045c50a0f46026f440', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a:log:105', 'hash': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 80.11769634839047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0457db3c58dc6cbf81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a:log:109', 'hash': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 80.11769634839047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0457db3c58dc6cbf81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995:log:121', 'hash': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2140.8906250573023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x740ed36890a082327a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995:log:125', 'hash': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 2140.8906250573023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x740ed36890a082327a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e79', 'uniqueId': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d:log:31', 'hash': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.8270275202719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4bdb7bbfa38f61f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:43.000Z'}}, {'blockNum': '0x6b1e79', 'uniqueId': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d:log:34', 'hash': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.8270275202719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4bdb7bbfa38f61f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:43.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73:log:15', 'hash': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 966.8357560978668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34698a9da7d790878f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73:log:19', 'hash': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 966.8357560978668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34698a9da7d790878f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344:log:34', 'hash': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344', 'from': '0x7e4b0abad3407b87a381c1c05af78d7ad42975e7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 268.1557747815083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8968b069e1740fa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344:log:37', 'hash': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 268.1557747815083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8968b069e1740fa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe:log:94', 'hash': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 380.04296543000623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x149a27d7813194fa08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe:log:98', 'hash': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 380.04296543000623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x149a27d7813194fa08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7e', 'uniqueId': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14:log:29', 'hash': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:49:40.000Z'}}, {'blockNum': '0x6b1e7e', 'uniqueId': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14:log:32', 'hash': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:49:40.000Z'}}, {'blockNum': '0x6b1e7e', 'uniqueId': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14:log:34', 'hash': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:49:40.000Z'}}, {'blockNum': '0x6b1e85', 'uniqueId': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1:log:63', 'hash': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.9530302986231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c23f8fe80a9b94a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:14.000Z'}}, {'blockNum': '0x6b1e85', 'uniqueId': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1:log:67', 'hash': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 223.9530302986231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c23f8fe80a9b94a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:14.000Z'}}, {'blockNum': '0x6b1e87', 'uniqueId': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4:log:66', 'hash': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 14.647081925061544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb44e3684356855e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:35.000Z'}}, {'blockNum': '0x6b1e87', 'uniqueId': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4:log:70', 'hash': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 14.647081925061544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb44e3684356855e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:35.000Z'}}, {'blockNum': '0x6b1e8e', 'uniqueId': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd:log:23', 'hash': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 645.7631897536954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2301c3b7ae543063e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:53:52.000Z'}}, {'blockNum': '0x6b1e8e', 'uniqueId': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd:log:27', 'hash': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 645.7631897536954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2301c3b7ae543063e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:53:52.000Z'}}, {'blockNum': '0x6b1e99', 'uniqueId': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529:log:79', 'hash': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 206.0470573312259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2b7a32f56a442a8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:56:15.000Z'}}, {'blockNum': '0x6b1e99', 'uniqueId': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529:log:83', 'hash': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 206.0470573312259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2b7a32f56a442a8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:56:15.000Z'}}, {'blockNum': '0x6b1e9d', 'uniqueId': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365:log:34', 'hash': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1334.6380452533201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4859d2d6f145de92c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:57:20.000Z'}}, {'blockNum': '0x6b1e9d', 'uniqueId': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365:log:38', 'hash': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1334.6380452533201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4859d2d6f145de92c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:57:20.000Z'}}, {'blockNum': '0x6b1ea9', 'uniqueId': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc:log:75', 'hash': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1599.254271295994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56b21c86880be92030', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:59:58.000Z'}}, {'blockNum': '0x6b1ea9', 'uniqueId': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc:log:78', 'hash': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'value': 1599.254271295994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56b21c86880be92030', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:59:58.000Z'}}, {'blockNum': '0x6b1eb0', 'uniqueId': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e:log:97', 'hash': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19375647fffd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:21.000Z'}}, {'blockNum': '0x6b1eb0', 'uniqueId': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e:log:100', 'hash': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19375647fffd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:21.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea:log:20', 'hash': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.41556016164088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c838442b98481be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea:log:24', 'hash': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 223.41556016164088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c838442b98481be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1:log:40', 'hash': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 631.0592947316215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2235b4fd101ed5fff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1:log:44', 'hash': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 631.0592947316215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2235b4fd101ed5fff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142:log:55', 'hash': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.39270194171968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c324ed4aaead58b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142:log:59', 'hash': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 223.39270194171968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c324ed4aaead58b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da:log:73', 'hash': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da', 'from': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ae952c22899c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da:log:76', 'hash': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ae952c22899c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b:log:43', 'hash': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 279.16570598802434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2233d283475441a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b:log:47', 'hash': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 279.16570598802434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2233d283475441a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46:log:57', 'hash': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46', 'from': '0x6431750a2e43ac6c6b3d84444875576b0aa7bd5e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 95.58403634558108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e7eb6a160631050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46:log:61', 'hash': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.58403634558108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e7eb6a160631050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1ebd', 'uniqueId': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf:log:99', 'hash': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.0704830716012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122a097d12f9538702', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:07:56.000Z'}}, {'blockNum': '0x6b1ebd', 'uniqueId': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf:log:103', 'hash': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 335.0704830716012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122a097d12f9538702', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:07:56.000Z'}}, {'blockNum': '0x6b1ec3', 'uniqueId': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e:log:48', 'hash': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.37285346631748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bebcabf5d3c7069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:09:19.000Z'}}, {'blockNum': '0x6b1ec3', 'uniqueId': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e:log:52', 'hash': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 223.37285346631748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bebcabf5d3c7069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:09:19.000Z'}}, {'blockNum': '0x6b1ec8', 'uniqueId': '0x65527e642e356709778df51ce75b8b73ec3400300aab774db2cae60bf27f3640:log:12', 'hash': '0x65527e642e356709778df51ce75b8b73ec3400300aab774db2cae60bf27f3640', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 915.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31a280a4f17ba80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:11:48.000Z'}}, {'blockNum': '0x6b1eca', 'uniqueId': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0:log:8', 'hash': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x319a2d041f4a6c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:12:52.000Z'}}, {'blockNum': '0x6b1eca', 'uniqueId': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0:log:11', 'hash': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x319a2d041f4a6c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:12:52.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d:log:75', 'hash': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.04807817077193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1229b9e3ef7e2b66f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d:log:79', 'hash': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 335.04807817077193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1229b9e3ef7e2b66f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e:log:93', 'hash': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.0346367483116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12298a2308732508c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e:log:97', 'hash': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 335.0346367483116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12298a2308732508c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2:log:108', 'hash': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 528.8190807062653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caad6c819499126ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2:log:112', 'hash': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 528.8190807062653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caad6c819499126ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecc', 'uniqueId': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8:log:54', 'hash': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1474.0860765150014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fe90dc48c31f0f7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:23.000Z'}}, {'blockNum': '0x6b1ecc', 'uniqueId': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8:log:58', 'hash': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 1474.0860765150014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fe90dc48c31f0f7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:23.000Z'}}, {'blockNum': '0x6b1ece', 'uniqueId': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414:log:56', 'hash': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 357.31502014802965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135ebdf5b042da0559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:14:49.000Z'}}, {'blockNum': '0x6b1ece', 'uniqueId': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414:log:60', 'hash': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 357.31502014802965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135ebdf5b042da0559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:14:49.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a:log:51', 'hash': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 669.9244605611094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x245111cb77ea1d183c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a:log:55', 'hash': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 669.9244605611094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x245111cb77ea1d183c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4:log:68', 'hash': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 798.3547476566652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b4765d52106263185', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4:log:72', 'hash': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 798.3547476566652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b4765d52106263185', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c:log:88', 'hash': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.39466140836518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0920f2045b95c96a2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c:log:92', 'hash': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.39466140836518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0920f2045b95c96a2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ed2', 'uniqueId': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671:log:55', 'hash': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.11818337693393681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a3df27b880dea7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:43.000Z'}}, {'blockNum': '0x6b1ed2', 'uniqueId': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671:log:59', 'hash': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.11818337693393681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a3df27b880dea7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:43.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554:log:17', 'hash': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 359.1065316927779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13779aaff2569481db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554:log:21', 'hash': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 359.1065316927779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13779aaff2569481db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853:log:33', 'hash': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 664.2372103338861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2402249f84e3b4effc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853:log:37', 'hash': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 664.2372103338861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2402249f84e3b4effc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974:log:47', 'hash': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 792.2807000552114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af31a7b0464ad5843', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974:log:51', 'hash': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 792.2807000552114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af31a7b0464ad5843', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1ee4', 'uniqueId': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63:log:124', 'hash': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 675.2430225614543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249ae11f6dc48e657f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:09.000Z'}}, {'blockNum': '0x6b1ee4', 'uniqueId': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63:log:128', 'hash': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 675.2430225614543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249ae11f6dc48e657f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:09.000Z'}}, {'blockNum': '0x6b1ee5', 'uniqueId': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2:log:74', 'hash': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.27346388084965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb29a10147ed6de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:32.000Z'}}, {'blockNum': '0x6b1ee5', 'uniqueId': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2:log:78', 'hash': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.27346388084965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb29a10147ed6de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:32.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8:log:78', 'hash': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 529.7284459325294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cb7757ef43c230cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8:log:82', 'hash': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 529.7284459325294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cb7757ef43c230cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1:log:93', 'hash': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1116.8519075480497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c8b6f0c9476eaba89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1:log:97', 'hash': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1116.8519075480497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c8b6f0c9476eaba89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eec', 'uniqueId': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff:log:52', 'hash': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.39719149842284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c42420f0b689b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:50.000Z'}}, {'blockNum': '0x6b1eec', 'uniqueId': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff:log:56', 'hash': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 223.39719149842284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c42420f0b689b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:50.000Z'}}, {'blockNum': '0x6b1eed', 'uniqueId': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32:log:29', 'hash': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 334.9817693015157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1228ce505ec8b2c5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:52.000Z'}}, {'blockNum': '0x6b1eed', 'uniqueId': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32:log:33', 'hash': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 334.9817693015157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1228ce505ec8b2c5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:52.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661:log:54', 'hash': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 227.01992972433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4e88cf47f8d53c4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661:log:58', 'hash': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 227.01992972433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4e88cf47f8d53c4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b:log:69', 'hash': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1035.5143087202714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3822a5d96421f49fd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b:log:73', 'hash': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1035.5143087202714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3822a5d96421f49fd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a:log:83', 'hash': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 641.440112464893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22c5c50fca9c8ef369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a:log:87', 'hash': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 641.440112464893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22c5c50fca9c8ef369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1f01', 'uniqueId': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb:log:94', 'hash': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 59.110339266086235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0334521c61ebe4e657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:29:29.000Z'}}, {'blockNum': '0x6b1f01', 'uniqueId': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb:log:98', 'hash': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 59.110339266086235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0334521c61ebe4e657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:29:29.000Z'}}, {'blockNum': '0x6b1f05', 'uniqueId': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab:log:56', 'hash': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.44953383379203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc3722adcd8ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:30:39.000Z'}}, {'blockNum': '0x6b1f05', 'uniqueId': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab:log:60', 'hash': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 223.44953383379203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc3722adcd8ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:30:39.000Z'}}, {'blockNum': '0x6b1f13', 'uniqueId': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac:log:88', 'hash': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 279.3035096414199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f241d663498b97064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:35:27.000Z'}}, {'blockNum': '0x6b1f13', 'uniqueId': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac:log:92', 'hash': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 279.3035096414199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f241d663498b97064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:35:27.000Z'}}, {'blockNum': '0x6b1f18', 'uniqueId': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f:log:23', 'hash': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.3015407470579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c28cf26e8b13155e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:36:31.000Z'}}, {'blockNum': '0x6b1f18', 'uniqueId': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f:log:27', 'hash': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.3015407470579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c28cf26e8b13155e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:36:31.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786:log:103', 'hash': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 209.86804439108266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b60811271f464c971', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786:log:108', 'hash': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 209.86804439108266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b60811271f464c971', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee:log:118', 'hash': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.0756214604351133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ca9514ea19549', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee:log:122', 'hash': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5f7a009664b771e889751f4fd721adc439033ecd', 'value': 0.0756214604351133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ca9514ea19549', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1c', 'uniqueId': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458:log:18', 'hash': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 171.25195545488253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0948992a278b4b0206', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:49.000Z'}}, {'blockNum': '0x6b1f1c', 'uniqueId': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458:log:22', 'hash': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 171.25195545488253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0948992a278b4b0206', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:49.000Z'}}, {'blockNum': '0x6b1f24', 'uniqueId': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172:log:47', 'hash': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 451.7217759550267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187ce621e813f513c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:39:53.000Z'}}, {'blockNum': '0x6b1f24', 'uniqueId': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172:log:51', 'hash': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 451.7217759550267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187ce621e813f513c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:39:53.000Z'}}, {'blockNum': '0x6b1f26', 'uniqueId': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9:log:63', 'hash': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.44958783839542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc68409b00f1fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:40:23.000Z'}}, {'blockNum': '0x6b1f26', 'uniqueId': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9:log:67', 'hash': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 223.44958783839542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc68409b00f1fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:40:23.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda:log:33', 'hash': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 567.3786723861118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1f5f86f22ed8115', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda:log:37', 'hash': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'value': 567.3786723861118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1f5f86f22ed8115', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd:log:48', 'hash': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 670.2673532206027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455d3fe86874c619d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd:log:52', 'hash': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'value': 670.2673532206027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455d3fe86874c619d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85:log:67', 'hash': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 435.2354563097107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17981af589935a08bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85:log:70', 'hash': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 435.2354563097107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17981af589935a08bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f33', 'uniqueId': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21:log:24', 'hash': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 569.0573892691539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ed941f88b871ac04c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:41.000Z'}}, {'blockNum': '0x6b1f33', 'uniqueId': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21:log:28', 'hash': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 569.0573892691539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ed941f88b871ac04c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:41.000Z'}}, {'blockNum': '0x6b1f36', 'uniqueId': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a:log:36', 'hash': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1550.2778214679902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x540a6d38e6b6013d92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:30.000Z'}}, {'blockNum': '0x6b1f36', 'uniqueId': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a:log:40', 'hash': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1550.2778214679902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x540a6d38e6b6013d92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:30.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac:log:66', 'hash': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3.6459480384363814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3299026c8488631d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac:log:70', 'hash': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 3.6459480384363814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3299026c8488631d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5:log:81', 'hash': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1.1174086307862177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f81d53abaf7d6c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5:log:85', 'hash': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'value': 1.1174086307862177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f81d53abaf7d6c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f3e', 'uniqueId': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695:log:101', 'hash': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 33.2457215661979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd60879efec4e1ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:08.000Z'}}, {'blockNum': '0x6b1f3e', 'uniqueId': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695:log:105', 'hash': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 33.2457215661979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd60879efec4e1ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:08.000Z'}}, {'blockNum': '0x6b1f3f', 'uniqueId': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218:log:15', 'hash': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.47783117661888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d60bf6b391589f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:14.000Z'}}, {'blockNum': '0x6b1f3f', 'uniqueId': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218:log:19', 'hash': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 223.47783117661888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d60bf6b391589f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:14.000Z'}}, {'blockNum': '0x6b1f3f', 'uniqueId': '0x21553a1c9796224f0ea7f4a3983f550273db191ceb2bda5897206b38a15562c6:log:31', 'hash': '0x21553a1c9796224f0ea7f4a3983f550273db191ceb2bda5897206b38a15562c6', 'from': '0x44e18bef2693ddc841f90949b27646a9b01fab59', 'to': '0xc545bb895b9809c321de7a62017c6e7e637a5cfd', 'value': 200.1762597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ada00ef9e2cd78800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:14.000Z'}}, {'blockNum': '0x6b1f4b', 'uniqueId': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a:log:50', 'hash': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 33.22785570105688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd210eb61d6f03d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:47:38.000Z'}}, {'blockNum': '0x6b1f4b', 'uniqueId': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a:log:54', 'hash': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 33.22785570105688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd210eb61d6f03d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:47:38.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7:log:90', 'hash': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.4709615939197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d485791dc8b89af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7:log:94', 'hash': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 223.4709615939197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d485791dc8b89af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f:log:106', 'hash': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 253.28070116719005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbaf9cfc5dc3a7b10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f:log:108', 'hash': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.28070116719005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbaf9cfc5dc3a7b10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d:log:120', 'hash': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 54.85775827808489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f94de8814b7e8f9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d:log:124', 'hash': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 54.85775827808489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f94de8814b7e8f9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f56', 'uniqueId': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42:log:46', 'hash': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.22347327841775422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0319efc340e1d86e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:50:16.000Z'}}, {'blockNum': '0x6b1f56', 'uniqueId': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42:log:50', 'hash': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x6b431a7a99780819473722161ee9145e5649c5e2', 'value': 0.22347327841775422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0319efc340e1d86e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:50:16.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a:log:34', 'hash': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2561.6787643643283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ade6f2fd5656049cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a:log:38', 'hash': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2561.6787643643283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ade6f2fd5656049cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29:log:50', 'hash': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29:log:53', 'hash': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29:log:55', 'hash': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a:log:68', 'hash': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 644.22221809412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ec61161efa3f2098', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a:log:72', 'hash': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 644.22221809412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ec61161efa3f2098', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f62', 'uniqueId': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb:log:21', 'hash': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 312.9285689718429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f6c19b83660556c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:54.000Z'}}, {'blockNum': '0x6b1f62', 'uniqueId': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb:log:25', 'hash': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 312.9285689718429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f6c19b83660556c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:54.000Z'}}, {'blockNum': '0x6b1f64', 'uniqueId': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07:log:24', 'hash': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 368.1230975103365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f4bbf6c9301773a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:54:48.000Z'}}, {'blockNum': '0x6b1f64', 'uniqueId': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07:log:28', 'hash': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 368.1230975103365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f4bbf6c9301773a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:54:48.000Z'}}, {'blockNum': '0x6b1f6e', 'uniqueId': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6:log:95', 'hash': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.50337423488673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1dbb7eb1eb9e0842', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:27.000Z'}}, {'blockNum': '0x6b1f6e', 'uniqueId': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6:log:99', 'hash': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 223.50337423488673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1dbb7eb1eb9e0842', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:27.000Z'}}, {'blockNum': '0x6b1f6f', 'uniqueId': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5:log:64', 'hash': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 167.60615132262075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091600aa9ccb2d35a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:33.000Z'}}, {'blockNum': '0x6b1f6f', 'uniqueId': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5:log:68', 'hash': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 167.60615132262075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091600aa9ccb2d35a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:33.000Z'}}, {'blockNum': '0x6b1f72', 'uniqueId': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878:log:57', 'hash': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 69.28344079146976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c1803a52085cfa8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:59:09.000Z'}}, {'blockNum': '0x6b1f72', 'uniqueId': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878:log:61', 'hash': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 69.28344079146976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c1803a52085cfa8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:59:09.000Z'}}, {'blockNum': '0x6b1f82', 'uniqueId': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84:log:36', 'hash': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 222.31045252252653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0d2d62b7cd893563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:02:02.000Z'}}, {'blockNum': '0x6b1f82', 'uniqueId': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84:log:40', 'hash': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 222.31045252252653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0d2d62b7cd893563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:02:02.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5:log:15', 'hash': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 55.871836449710855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030760a33ab5bcde19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5:log:19', 'hash': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 55.871836449710855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030760a33ab5bcde19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72:log:30', 'hash': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 368.744745496172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13fd5c8055db278c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72:log:34', 'hash': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 368.744745496172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13fd5c8055db278c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52:log:100', 'hash': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52', 'from': '0xba2be1cd1f00470c21385b7cbed6211aefac0172', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 395.3028272650143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x156dedc2fe4ec6b3d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52:log:104', 'hash': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 395.3028272650143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x156dedc2fe4ec6b3d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f94', 'uniqueId': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68:log:58', 'hash': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 117.83814448089979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0663553012773048a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:08:37.000Z'}}, {'blockNum': '0x6b1f94', 'uniqueId': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68:log:62', 'hash': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 117.83814448089979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0663553012773048a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:08:37.000Z'}}, {'blockNum': '0x6b1f9a', 'uniqueId': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8:log:60', 'hash': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 111.74258224484996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ebd66839d2744a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:10:03.000Z'}}, {'blockNum': '0x6b1f9a', 'uniqueId': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8:log:64', 'hash': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 111.74258224484996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ebd66839d2744a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:10:03.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f:log:40', 'hash': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 283.6400076580915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f604bbc2d059f3f58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f:log:44', 'hash': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 283.6400076580915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f604bbc2d059f3f58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772:log:58', 'hash': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 74.18588674970611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04058936f1f7975b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772:log:62', 'hash': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 74.18588674970611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04058936f1f7975b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9f', 'uniqueId': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac:log:80', 'hash': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 74.185227706818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040586df8c965a6c53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:51.000Z'}}, {'blockNum': '0x6b1f9f', 'uniqueId': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac:log:84', 'hash': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 74.185227706818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040586df8c965a6c53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:51.000Z'}}, {'blockNum': '0x6b1fa5', 'uniqueId': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84:log:75', 'hash': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.47890108764088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d648c7f4b7e220b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:12:48.000Z'}}, {'blockNum': '0x6b1fa5', 'uniqueId': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84:log:79', 'hash': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 223.47890108764088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d648c7f4b7e220b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:12:48.000Z'}}, {'blockNum': '0x6b1fb5', 'uniqueId': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4:log:19', 'hash': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.9398611300955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183a895bb57dc210bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:15:40.000Z'}}, {'blockNum': '0x6b1fb5', 'uniqueId': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4:log:23', 'hash': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 446.9398611300955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183a895bb57dc210bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:15:40.000Z'}}, {'blockNum': '0x6b1fc5', 'uniqueId': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0:log:30', 'hash': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 407.8121573771973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x161b87d474018b5bb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:18:00.000Z'}}, {'blockNum': '0x6b1fc5', 'uniqueId': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0:log:34', 'hash': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 407.8121573771973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x161b87d474018b5bb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:18:00.000Z'}}, {'blockNum': '0x6b1fc8', 'uniqueId': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec:log:79', 'hash': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 218.39972559054908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bd6e7b14b13778b33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:19:16.000Z'}}, {'blockNum': '0x6b1fc8', 'uniqueId': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec:log:84', 'hash': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 218.39972559054908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bd6e7b14b13778b33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:19:16.000Z'}}, {'blockNum': '0x6b1fd8', 'uniqueId': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e:log:7', 'hash': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 86.38360801756093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04aed039cfdf4e117e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:24:47.000Z'}}, {'blockNum': '0x6b1fd8', 'uniqueId': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e:log:11', 'hash': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 86.38360801756093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04aed039cfdf4e117e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:24:47.000Z'}}, {'blockNum': '0x6b1ff5', 'uniqueId': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8:log:28', 'hash': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 44.820893596994814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026e03cd415474c251', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:30:05.000Z'}}, {'blockNum': '0x6b1ff5', 'uniqueId': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8:log:32', 'hash': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 44.820893596994814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026e03cd415474c251', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:30:05.000Z'}}, {'blockNum': '0x6b1ffb', 'uniqueId': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847:log:84', 'hash': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 670.4012788777289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2457afcb337a9e2abd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:31:59.000Z'}}, {'blockNum': '0x6b1ffb', 'uniqueId': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847:log:88', 'hash': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 670.4012788777289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2457afcb337a9e2abd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:31:59.000Z'}}, {'blockNum': '0x6b2009', 'uniqueId': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113:log:23', 'hash': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e7fffc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:50.000Z'}}, {'blockNum': '0x6b2009', 'uniqueId': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113:log:26', 'hash': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e7fffc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:50.000Z'}}, {'blockNum': '0x6b200a', 'uniqueId': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b:log:17', 'hash': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 667.7236934889565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2432871979f9109dd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:56.000Z'}}, {'blockNum': '0x6b200a', 'uniqueId': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b:log:21', 'hash': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 667.7236934889565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2432871979f9109dd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:56.000Z'}}, {'blockNum': '0x6b200e', 'uniqueId': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6:log:43', 'hash': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 290.4725496388393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbf1dcce831097ab4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:36:31.000Z'}}, {'blockNum': '0x6b200e', 'uniqueId': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6:log:47', 'hash': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 290.4725496388393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbf1dcce831097ab4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:36:31.000Z'}}, {'blockNum': '0x6b2018', 'uniqueId': '0xc0bbf7d3d0b27ba763d0d08985529aa0f21acf74f0123a6fd858094d9fc08013:log:97', 'hash': '0xc0bbf7d3d0b27ba763d0d08985529aa0f21acf74f0123a6fd858094d9fc08013', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e7fffc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:39:27.000Z'}}, {'blockNum': '0x6b201f', 'uniqueId': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266:log:12', 'hash': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266', 'from': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:41:58.000Z'}}, {'blockNum': '0x6b201f', 'uniqueId': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266:log:15', 'hash': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:41:58.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76:log:51', 'hash': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 814.3864660422474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c25e1f00f9de19c52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76:log:55', 'hash': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 814.3864660422474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c25e1f00f9de19c52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540:log:104', 'hash': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 15.979266857118635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddc1c28b75ba9104', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540:log:108', 'hash': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15.979266857118635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddc1c28b75ba9104', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2043', 'uniqueId': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5:log:69', 'hash': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 158.62326840801745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0899570e31eb525b4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:50:24.000Z'}}, {'blockNum': '0x6b2043', 'uniqueId': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5:log:73', 'hash': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 158.62326840801745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0899570e31eb525b4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:50:24.000Z'}}, {'blockNum': '0x6b2044', 'uniqueId': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed:log:43', 'hash': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 61.912525113136226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035b35799053efa0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:22.000Z'}}, {'blockNum': '0x6b2044', 'uniqueId': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed:log:47', 'hash': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 61.912525113136226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035b35799053efa0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:22.000Z'}}, {'blockNum': '0x6b2046', 'uniqueId': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357:log:88', 'hash': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 0.14342526870171737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8c85a0c7e381', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:54.000Z'}}, {'blockNum': '0x6b2046', 'uniqueId': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357:log:90', 'hash': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x33b8287511ac7f003902e83d642be4603afcd876', 'value': 0.14342526870171737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8c85a0c7e381', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:54.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb:log:38', 'hash': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 311.5405336787728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e37e50c4b2df3ba0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb:log:42', 'hash': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 311.5405336787728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e37e50c4b2df3ba0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa:log:53', 'hash': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 191.23098716073633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a5ddcf1a332f97402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa:log:57', 'hash': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 191.23098716073633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a5ddcf1a332f97402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14:log:36', 'hash': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14:log:39', 'hash': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14:log:41', 'hash': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18:log:103', 'hash': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 122.5310299472405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a475aa8a30052e24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18:log:107', 'hash': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 122.5310299472405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a475aa8a30052e24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2085', 'uniqueId': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e:log:34', 'hash': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 680.9789276932363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ea7b26c189c47bad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:07:42.000Z'}}, {'blockNum': '0x6b2085', 'uniqueId': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e:log:38', 'hash': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 680.9789276932363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ea7b26c189c47bad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:07:42.000Z'}}, {'blockNum': '0x6b2087', 'uniqueId': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769:log:29', 'hash': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.032830415613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7d2ba24af6d2a73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:08:07.000Z'}}, {'blockNum': '0x6b2087', 'uniqueId': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769:log:33', 'hash': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 87.032830415613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7d2ba24af6d2a73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:08:07.000Z'}}, {'blockNum': '0x6b208e', 'uniqueId': '0x1b02c52df0a31dbe6a98994bcab24678ee0b0004780a77510a7373302bbe0386:log:1', 'hash': '0x1b02c52df0a31dbe6a98994bcab24678ee0b0004780a77510a7373302bbe0386', 'from': '0x80af4d533d298bf79280c2c9a6646cd99925009d', 'to': '0xe8561760826c16609d346f6cd4d6a741977dc7d8', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:10:21.000Z'}}, {'blockNum': '0x6b2098', 'uniqueId': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1:log:77', 'hash': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1', 'from': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 114.96299097908611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b6e973208dd4f4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:13:01.000Z'}}, {'blockNum': '0x6b2098', 'uniqueId': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1:log:81', 'hash': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.96299097908611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b6e973208dd4f4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:13:01.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0:log:64', 'hash': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 212.74416660495672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b886b1c5c3cf75877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0:log:68', 'hash': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 212.74416660495672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b886b1c5c3cf75877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9:log:79', 'hash': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 237.51752766953348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ce037c4fe5f8e7d83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9:log:83', 'hash': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 237.51752766953348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ce037c4fe5f8e7d83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f:log:90', 'hash': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f', 'from': '0xe8561760826c16609d346f6cd4d6a741977dc7d8', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f:log:93', 'hash': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f:log:94', 'hash': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5:log:116', 'hash': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 503.1950113408323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b473bccc5e6f7d434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5:log:120', 'hash': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 503.1950113408323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b473bccc5e6f7d434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209e', 'uniqueId': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4:log:19', 'hash': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.21939479693518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c358c064de7c7c84e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:15:03.000Z'}}, {'blockNum': '0x6b209e', 'uniqueId': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4:log:23', 'hash': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 225.21939479693518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c358c064de7c7c84e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:15:03.000Z'}}, {'blockNum': '0x6b20a2', 'uniqueId': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76:log:40', 'hash': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 292.77612486270874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fdf15be5e452a6a01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:10.000Z'}}, {'blockNum': '0x6b20a2', 'uniqueId': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76:log:44', 'hash': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 292.77612486270874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fdf15be5e452a6a01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:10.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac:log:37', 'hash': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.20541312235483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c355a5a0b9d0dfd0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac:log:41', 'hash': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 225.20541312235483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c355a5a0b9d0dfd0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588:log:58', 'hash': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6.668580485358401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c8b8e9ea9e3b6de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588:log:62', 'hash': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 6.668580485358401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c8b8e9ea9e3b6de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20ab', 'uniqueId': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d:log:126', 'hash': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 675.5792303210579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249f8b929ad6774d2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:19:02.000Z'}}, {'blockNum': '0x6b20ab', 'uniqueId': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d:log:130', 'hash': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 675.5792303210579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249f8b929ad6774d2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:19:02.000Z'}}, {'blockNum': '0x6b20ad', 'uniqueId': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68:log:66', 'hash': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 968.2348481867491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x347cf5307f6d72ad0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:20:20.000Z'}}, {'blockNum': '0x6b20ad', 'uniqueId': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68:log:69', 'hash': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 968.2348481867491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x347cf5307f6d72ad0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:20:20.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58:log:37', 'hash': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 204.2381685792557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b125fbc38fee1f740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58:log:41', 'hash': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'value': 204.2381685792557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b125fbc38fee1f740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76:log:52', 'hash': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 799.2524529036976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b53db1f4b8085a557', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76:log:56', 'hash': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'value': 799.2524529036976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b53db1f4b8085a557', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b5', 'uniqueId': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191:log:41', 'hash': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 217.54156045794124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bcafee0a6e3c08bd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:02.000Z'}}, {'blockNum': '0x6b20b5', 'uniqueId': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191:log:45', 'hash': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 217.54156045794124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bcafee0a6e3c08bd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:02.000Z'}}, {'blockNum': '0x6b20b7', 'uniqueId': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5:log:48', 'hash': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 301.6672099341672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105a7939223d3a1c73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:32.000Z'}}, {'blockNum': '0x6b20b7', 'uniqueId': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5:log:52', 'hash': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'value': 301.6672099341672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105a7939223d3a1c73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:32.000Z'}}, {'blockNum': '0x6b20bc', 'uniqueId': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1:log:27', 'hash': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 45.97285148460483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x027e0060d9c3a91994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:23:32.000Z'}}, {'blockNum': '0x6b20bc', 'uniqueId': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1:log:31', 'hash': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5142127a6703f5fc80bf11b7b57ff68998f218e4', 'value': 45.97285148460483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x027e0060d9c3a91994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:23:32.000Z'}}, {'blockNum': '0x6b20cb', 'uniqueId': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e:log:32', 'hash': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.512693944174604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386d27dd679d6e05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:26:58.000Z'}}, {'blockNum': '0x6b20cb', 'uniqueId': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e:log:36', 'hash': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 22.512693944174604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386d27dd679d6e05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:26:58.000Z'}}, {'blockNum': '0x6b20cc', 'uniqueId': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7:log:87', 'hash': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.50063481372257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04be50b3c3cd1caebf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:28:07.000Z'}}, {'blockNum': '0x6b20cc', 'uniqueId': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7:log:91', 'hash': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.50063481372257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04be50b3c3cd1caebf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:28:07.000Z'}}, {'blockNum': '0x6b20d3', 'uniqueId': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01:log:54', 'hash': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.512633203148575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386cf09f0855cd9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:10.000Z'}}, {'blockNum': '0x6b20d3', 'uniqueId': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01:log:58', 'hash': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 22.512633203148575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386cf09f0855cd9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:10.000Z'}}, {'blockNum': '0x6b20d4', 'uniqueId': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed:log:51', 'hash': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.99939564023086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c249db788fe24b2d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:56.000Z'}}, {'blockNum': '0x6b20d4', 'uniqueId': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed:log:54', 'hash': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 223.99939564023086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c249db788fe24b2d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:56.000Z'}}, {'blockNum': '0x6b20e1', 'uniqueId': '0x337a5b410415f602215bd58b01794ebbbdfb7ab8fd777f5bce0e686e7a8866ab:log:70', 'hash': '0x337a5b410415f602215bd58b01794ebbbdfb7ab8fd777f5bce0e686e7a8866ab', 'from': '0x1c0b76fb720d5885252bde0dc2227d39a71c4a74', 'to': '0xe0f2a13fb2058ad9ea9d32c3de2b9e4391d328b1', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:34:19.000Z'}}, {'blockNum': '0x6b20e7', 'uniqueId': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401:log:44', 'hash': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2430.9416883123404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x83c817c9d6c967a10e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:35:18.000Z'}}, {'blockNum': '0x6b20e7', 'uniqueId': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401:log:47', 'hash': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 2430.9416883123404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x83c817c9d6c967a10e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:35:18.000Z'}}, {'blockNum': '0x6b20ec', 'uniqueId': '0x47f1dc0711d4d94bb2589addc3260576b0e8934d909a0484bdafb6574c94a73f:log:1', 'hash': '0x47f1dc0711d4d94bb2589addc3260576b0e8934d909a0484bdafb6574c94a73f', 'from': '0xe0f2a13fb2058ad9ea9d32c3de2b9e4391d328b1', 'to': '0x2fa2bc2ce6a4f92952921a4caa46b3727d24a1ec', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:06.000Z'}}, {'blockNum': '0x6b20f0', 'uniqueId': '0xf895cfcd69f6f2e6b73104ac98d8c1a52ef5c177191e118636b209e82633bd47:log:45', 'hash': '0xf895cfcd69f6f2e6b73104ac98d8c1a52ef5c177191e118636b209e82633bd47', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'value': 3623.17593213932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc469aab1df34ff00eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:49.000Z'}}, {'blockNum': '0x6b20f0', 'uniqueId': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6:log:60', 'hash': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6', 'from': '0xc7151af2e9d1a702a61fcb655e2334bfee5b5faf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 100.88583067525013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057812787bac7dcb9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:49.000Z'}}, {'blockNum': '0x6b20f0', 'uniqueId': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6:log:64', 'hash': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 100.88583067525013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057812787bac7dcb9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:49.000Z'}}, {'blockNum': '0x6b20f3', 'uniqueId': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce:log:39', 'hash': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce', 'from': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc46739a885f83c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:38:30.000Z'}}, {'blockNum': '0x6b20f3', 'uniqueId': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce:log:42', 'hash': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 3623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc46739a885f83c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:38:30.000Z'}}, {'blockNum': '0x6b2101', 'uniqueId': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d:log:78', 'hash': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d', 'from': '0x6b431a7a99780819473722161ee9145e5649c5e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 758.9372279460495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29245eabcb8ff19c5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:41:44.000Z'}}, {'blockNum': '0x6b2101', 'uniqueId': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d:log:80', 'hash': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 758.9372279460495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29245eabcb8ff19c5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:41:44.000Z'}}, {'blockNum': '0x6b2105', 'uniqueId': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48:log:32', 'hash': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 363.5402720220456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13b5227f48fee82f05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:43:50.000Z'}}, {'blockNum': '0x6b2105', 'uniqueId': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48:log:36', 'hash': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 363.5402720220456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13b5227f48fee82f05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:43:50.000Z'}}, {'blockNum': '0x6b2124', 'uniqueId': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135:log:34', 'hash': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 675.3159367928558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249be42a893251780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:51:18.000Z'}}, {'blockNum': '0x6b2124', 'uniqueId': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135:log:37', 'hash': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 675.3159367928558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249be42a893251780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:51:18.000Z'}}, {'blockNum': '0x6b2127', 'uniqueId': '0x74bcc6f48aaa8834529223b6e3345b8a6e462a7bb3686eb39cb4b624464354c2:log:106', 'hash': '0x74bcc6f48aaa8834529223b6e3345b8a6e462a7bb3686eb39cb4b624464354c2', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 675.0280985191921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2497e58f26abd40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:51:58.000Z'}}, {'blockNum': '0x6b2129', 'uniqueId': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990:log:8', 'hash': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.0465452170869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3325f086f959345f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:52:35.000Z'}}, {'blockNum': '0x6b2129', 'uniqueId': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990:log:12', 'hash': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 225.0465452170869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3325f086f959345f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:52:35.000Z'}}, {'blockNum': '0x6b2131', 'uniqueId': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b:log:20', 'hash': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.01704366703925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c32bd2106166f4b8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:18.000Z'}}, {'blockNum': '0x6b2131', 'uniqueId': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b:log:24', 'hash': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'value': 225.01704366703925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c32bd2106166f4b8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:18.000Z'}}, {'blockNum': '0x6b2132', 'uniqueId': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333:log:26', 'hash': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5.629694425699801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e20b140b5d557ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:29.000Z'}}, {'blockNum': '0x6b2132', 'uniqueId': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333:log:30', 'hash': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5.629694425699801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e20b140b5d557ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:29.000Z'}}, {'blockNum': '0x6b214a', 'uniqueId': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583:log:18', 'hash': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13.066621208635326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb555f6c2634b3e26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:29.000Z'}}, {'blockNum': '0x6b214a', 'uniqueId': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583:log:22', 'hash': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 13.066621208635326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb555f6c2634b3e26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:29.000Z'}}, {'blockNum': '0x6b214b', 'uniqueId': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed:log:52', 'hash': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 443.5030042122533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x180ad7308d29edb9d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:50.000Z'}}, {'blockNum': '0x6b214b', 'uniqueId': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed:log:56', 'hash': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 443.5030042122533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x180ad7308d29edb9d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:50.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8:log:27', 'hash': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 248.63974774886333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7a91d53a4dbaeedc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8:log:31', 'hash': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 248.63974774886333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7a91d53a4dbaeedc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456:log:47', 'hash': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 639.0709469270865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22a4e418498581b903', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456:log:51', 'hash': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 639.0709469270865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22a4e418498581b903', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215e', 'uniqueId': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8:log:45', 'hash': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 251.54894650194086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da2f162147fecb6d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:46.000Z'}}, {'blockNum': '0x6b215e', 'uniqueId': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8:log:49', 'hash': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 251.54894650194086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da2f162147fecb6d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:46.000Z'}}, {'blockNum': '0x6b215f', 'uniqueId': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425:log:12', 'hash': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 366.33054442073137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13dbdb893f8d26107b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:50.000Z'}}, {'blockNum': '0x6b215f', 'uniqueId': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425:log:16', 'hash': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 366.33054442073137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13dbdb893f8d26107b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:50.000Z'}}, {'blockNum': '0x6b2165', 'uniqueId': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d:log:34', 'hash': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 956.2840671776211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d71b7c7ce7e349b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:07:58.000Z'}}, {'blockNum': '0x6b2165', 'uniqueId': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d:log:37', 'hash': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 956.2840671776211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d71b7c7ce7e349b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:07:58.000Z'}}, {'blockNum': '0x6b2168', 'uniqueId': '0x238fa317f910322a113bc15dfbb33a268df747fd6691dda213ac2134f471c364:log:21', 'hash': '0x238fa317f910322a113bc15dfbb33a268df747fd6691dda213ac2134f471c364', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 955.9719028190431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d2c674a85f500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:08:22.000Z'}}, {'blockNum': '0x6b2172', 'uniqueId': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc:log:37', 'hash': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.93219237446544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186410411f24bb9c41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:10:00.000Z'}}, {'blockNum': '0x6b2172', 'uniqueId': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc:log:41', 'hash': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 449.93219237446544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186410411f24bb9c41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:10:00.000Z'}}, {'blockNum': '0x6b2174', 'uniqueId': '0xeebc23a690facbfefd899ae2e07293c3c64efc690a6390a4ceb644216eb19575:log:8', 'hash': '0xeebc23a690facbfefd899ae2e07293c3c64efc690a6390a4ceb644216eb19575', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1631.000001338235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x586aac03cf0b240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:10:22.000Z'}}, {'blockNum': '0x6b2177', 'uniqueId': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804:log:51', 'hash': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.955927942861371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44c6fe34d6af36ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:19.000Z'}}, {'blockNum': '0x6b2177', 'uniqueId': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804:log:55', 'hash': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 4.955927942861371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44c6fe34d6af36ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:19.000Z'}}, {'blockNum': '0x6b2179', 'uniqueId': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f:log:45', 'hash': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5799.295050109141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013a6162da179c7dd3ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:57.000Z'}}, {'blockNum': '0x6b2179', 'uniqueId': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f:log:49', 'hash': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 5799.295050109141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013a6162da179c7dd3ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:57.000Z'}}, {'blockNum': '0x6b2184', 'uniqueId': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03:log:24', 'hash': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 448.334212364201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184de316c4cebec41f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:15:49.000Z'}}, {'blockNum': '0x6b2184', 'uniqueId': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03:log:28', 'hash': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 448.334212364201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184de316c4cebec41f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:15:49.000Z'}}, {'blockNum': '0x6b218c', 'uniqueId': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63:log:116', 'hash': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2317.9142532740357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7da785ac8445b79d0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:18:26.000Z'}}, {'blockNum': '0x6b218c', 'uniqueId': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63:log:120', 'hash': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2317.9142532740357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7da785ac8445b79d0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:18:26.000Z'}}, {'blockNum': '0x6b2194', 'uniqueId': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16:log:35', 'hash': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:22:28.000Z'}}, {'blockNum': '0x6b2194', 'uniqueId': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16:log:38', 'hash': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:22:28.000Z'}}, {'blockNum': '0x6b2194', 'uniqueId': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16:log:40', 'hash': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:22:28.000Z'}}, {'blockNum': '0x6b21a3', 'uniqueId': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34:log:13', 'hash': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.27528199371903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248a2820323537602', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:27:27.000Z'}}, {'blockNum': '0x6b21a3', 'uniqueId': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34:log:17', 'hash': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'value': 337.27528199371903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248a2820323537602', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:27:27.000Z'}}, {'blockNum': '0x6b21b6', 'uniqueId': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5:log:102', 'hash': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 220.3687680140115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf23b22f1e99e3de5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:32:03.000Z'}}, {'blockNum': '0x6b21b6', 'uniqueId': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5:log:106', 'hash': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 220.3687680140115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf23b22f1e99e3de5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:32:03.000Z'}}, {'blockNum': '0x6b21d0', 'uniqueId': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319:log:73', 'hash': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.28786489545746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cf36183fb00b92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:37:46.000Z'}}, {'blockNum': '0x6b21d0', 'uniqueId': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319:log:77', 'hash': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'value': 337.28786489545746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cf36183fb00b92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:37:46.000Z'}}, {'blockNum': '0x6b21d8', 'uniqueId': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388:log:84', 'hash': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388', 'from': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 162.40111236231851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cdc4a7416c4b7195', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:39:48.000Z'}}, {'blockNum': '0x6b21d8', 'uniqueId': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388:log:88', 'hash': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 162.40111236231851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cdc4a7416c4b7195', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:39:48.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a:log:56', 'hash': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1592.8932121170208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5659d580e915f7c80a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a:log:60', 'hash': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1592.8932121170208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5659d580e915f7c80a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767:log:89', 'hash': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.7905451707992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18621905bd8ac67dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767:log:93', 'hash': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 449.7905451707992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18621905bd8ac67dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e6', 'uniqueId': '0xe8bce40d13352ec8bb0e7c79cb8c12591c403994bfe40e933fa6e1c6dc0b7502:log:62', 'hash': '0xe8bce40d13352ec8bb0e7c79cb8c12591c403994bfe40e933fa6e1c6dc0b7502', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x31dfe0a93d0b67d77723ab7d3b3a5755cf20a59c', 'value': 3092.67100305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa7a76e9399ca442400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:44:42.000Z'}}, {'blockNum': '0x6b2219', 'uniqueId': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef:log:84', 'hash': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.34544373118786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18402a46ef8ef2a98b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:56:27.000Z'}}, {'blockNum': '0x6b2219', 'uniqueId': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef:log:88', 'hash': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.34544373118786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18402a46ef8ef2a98b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:56:27.000Z'}}, {'blockNum': '0x6b2226', 'uniqueId': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196:log:84', 'hash': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 618.455568277443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2186cb8ea15b54f189', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:02:17.000Z'}}, {'blockNum': '0x6b2226', 'uniqueId': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196:log:87', 'hash': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x33c89e7a1e860ddeb10847200975df2f92f099ad', 'value': 618.455568277443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2186cb8ea15b54f189', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:02:17.000Z'}}, {'blockNum': '0x6b222b', 'uniqueId': '0xc7c50202c628b60f4b3fe20c87433442e56be08d2b60cb9627c82fa82d972dfb:log:54', 'hash': '0xc7c50202c628b60f4b3fe20c87433442e56be08d2b60cb9627c82fa82d972dfb', 'from': '0x33c89e7a1e860ddeb10847200975df2f92f099ad', 'to': '0xa291acae6e80a0c6fd51b984eb7152986b28b666', 'value': 619.1876224039456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2190f455fad1e237a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:03:38.000Z'}}, {'blockNum': '0x6b2231', 'uniqueId': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6:log:102', 'hash': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.44154273566114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0618709b6093fcb0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:05:00.000Z'}}, {'blockNum': '0x6b2231', 'uniqueId': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6:log:105', 'hash': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'value': 112.44154273566114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0618709b6093fcb0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:05:00.000Z'}}, {'blockNum': '0x6b223a', 'uniqueId': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb:log:33', 'hash': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7.196207150608628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63de1046be273806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:06:36.000Z'}}, {'blockNum': '0x6b223a', 'uniqueId': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb:log:36', 'hash': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdc8d71fde487566538c780207d2a2b988be44b31', 'value': 7.196207150608628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63de1046be273806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:06:36.000Z'}}, {'blockNum': '0x6b223d', 'uniqueId': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364:log:38', 'hash': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 140.8442658952499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07a29b599b59089ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:07:16.000Z'}}, {'blockNum': '0x6b223d', 'uniqueId': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364:log:42', 'hash': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 140.8442658952499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07a29b599b59089ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:07:16.000Z'}}, {'blockNum': '0x6b2241', 'uniqueId': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231:log:68', 'hash': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.30871389938335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061698b44121b8758e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:09:54.000Z'}}, {'blockNum': '0x6b2241', 'uniqueId': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231:log:70', 'hash': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 112.30871389938335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061698b44121b8758e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:09:54.000Z'}}, {'blockNum': '0x6b2243', 'uniqueId': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6:log:18', 'hash': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6', 'from': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06124fee993bc00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:10:04.000Z'}}, {'blockNum': '0x6b2243', 'uniqueId': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6:log:21', 'hash': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06124fee993bc00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:10:04.000Z'}}, {'blockNum': '0x6b2248', 'uniqueId': '0x474ff7a8f45c8319fa99743759394cea619b59bdca5e4be9164d469c5379f141:log:89', 'hash': '0x474ff7a8f45c8319fa99743759394cea619b59bdca5e4be9164d469c5379f141', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:11:27.000Z'}}, {'blockNum': '0x6b224b', 'uniqueId': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260:log:36', 'hash': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 157.42025422284362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0888a5172adc47a2b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:12:15.000Z'}}, {'blockNum': '0x6b224b', 'uniqueId': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260:log:40', 'hash': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'value': 157.42025422284362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0888a5172adc47a2b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:12:15.000Z'}}, {'blockNum': '0x6b224d', 'uniqueId': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c:log:57', 'hash': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:13:00.000Z'}}, {'blockNum': '0x6b224d', 'uniqueId': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c:log:60', 'hash': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:13:00.000Z'}}, {'blockNum': '0x6b224d', 'uniqueId': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c:log:61', 'hash': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:13:00.000Z'}}, {'blockNum': '0x6b2256', 'uniqueId': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb:log:74', 'hash': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 649.366817124029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2333c65fae73cb3fbb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:15:08.000Z'}}, {'blockNum': '0x6b2256', 'uniqueId': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb:log:78', 'hash': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 649.366817124029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2333c65fae73cb3fbb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:15:08.000Z'}}, {'blockNum': '0x6b2260', 'uniqueId': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96:log:89', 'hash': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:30.000Z'}}, {'blockNum': '0x6b2260', 'uniqueId': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96:log:93', 'hash': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x303a839d243cba9dd65ca95b8db2837833e38791', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:30.000Z'}}, {'blockNum': '0x6b2261', 'uniqueId': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97:log:12', 'hash': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 570.8585444895023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ef240f5accd4f4673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:39.000Z'}}, {'blockNum': '0x6b2261', 'uniqueId': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97:log:15', 'hash': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 570.8585444895023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ef240f5accd4f4673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:39.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489:log:24', 'hash': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489', 'from': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.90985702325062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4d01c0be21873c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489:log:27', 'hash': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.90985702325062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4d01c0be21873c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017:log:45', 'hash': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 228.98463217018323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c69ccd5bf0741aef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017:log:48', 'hash': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 228.98463217018323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c69ccd5bf0741aef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2268', 'uniqueId': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080:log:4', 'hash': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080', 'from': '0xdc8d71fde487566538c780207d2a2b988be44b31', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f05b59d3b200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:18:23.000Z'}}, {'blockNum': '0x6b2268', 'uniqueId': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080:log:7', 'hash': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f05b59d3b200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:18:23.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948:log:41', 'hash': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 28.937239745665597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019195ba3b8cb67f2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948:log:45', 'hash': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 28.937239745665597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019195ba3b8cb67f2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb:log:72', 'hash': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 816.6806127954429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c45b86260ccb677f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb:log:75', 'hash': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 816.6806127954429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c45b86260ccb677f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535:log:40', 'hash': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 241.1526030763898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d12aa26d114fc42f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535:log:44', 'hash': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 241.1526030763898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d12aa26d114fc42f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885:log:55', 'hash': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.92952828066248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3186363e59113d12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885:log:59', 'hash': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 224.92952828066248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3186363e59113d12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x342ed1f6033c8aa76f33de3f0023b0360d9b0de40c46b5e3929fef7cc24b9fff:log:39', 'hash': '0x342ed1f6033c8aa76f33de3f0023b0360d9b0de40c46b5e3929fef7cc24b9fff', 'from': '0xa291acae6e80a0c6fd51b984eb7152986b28b666', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 619.1876224039456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2190f455fad1e237a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36:log:76', 'hash': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2248.9618907540917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79ea9dac214c7e1e14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36:log:80', 'hash': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 2248.9618907540917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79ea9dac214c7e1e14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837:log:108', 'hash': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 27.804421190283886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181dd25c228370464', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837:log:112', 'hash': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 27.804421190283886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181dd25c228370464', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x54473232103e29a9761fcd08bc4df901481d4d2ed948f719b797f22f476b2326:log:142', 'hash': '0x54473232103e29a9761fcd08bc4df901481d4d2ed948f719b797f22f476b2326', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 817.013897199324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a5872c713380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b2270', 'uniqueId': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014:log:75', 'hash': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 552.7127625516791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1df66e31249da86dc6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:49.000Z'}}, {'blockNum': '0x6b2270', 'uniqueId': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014:log:79', 'hash': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 552.7127625516791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1df66e31249da86dc6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:49.000Z'}}, {'blockNum': '0x6b2271', 'uniqueId': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f:log:52', 'hash': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 10.401407631376106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90593921b835bed4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:59.000Z'}}, {'blockNum': '0x6b2271', 'uniqueId': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f:log:56', 'hash': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 10.401407631376106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90593921b835bed4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:59.000Z'}}, {'blockNum': '0x6b2272', 'uniqueId': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c:log:19', 'hash': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7.591834554424923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x695b9d4dd2089621', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:21:23.000Z'}}, {'blockNum': '0x6b2272', 'uniqueId': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c:log:23', 'hash': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 7.591834554424923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x695b9d4dd2089621', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:21:23.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e:log:28', 'hash': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e:log:31', 'hash': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e:log:33', 'hash': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9:log:46', 'hash': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.31250296939635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x124926be4adcc384cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9:log:50', 'hash': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 337.31250296939635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x124926be4adcc384cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18:log:61', 'hash': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8674275077511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30a995eb6b683fe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18:log:65', 'hash': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 224.8674275077511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30a995eb6b683fe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d:log:21', 'hash': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 904.7759552885955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310c49e9a06371a8c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d:log:25', 'hash': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 904.7759552885955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310c49e9a06371a8c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c:log:97', 'hash': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.88574911693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30eaad537a3a35a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c:log:101', 'hash': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 224.88574911693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30eaad537a3a35a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b227a', 'uniqueId': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac:log:17', 'hash': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac', 'from': '0x51907923c3280c24b6b69b0d217ea34cabde684d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.0665398116891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18580cd6b3c58a7ca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:53.000Z'}}, {'blockNum': '0x6b227a', 'uniqueId': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac:log:19', 'hash': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 449.0665398116891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18580cd6b3c58a7ca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:53.000Z'}}, {'blockNum': '0x6b227e', 'uniqueId': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93:log:59', 'hash': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 367.99191348329043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f2e9e79bbbceba7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:24:20.000Z'}}, {'blockNum': '0x6b227e', 'uniqueId': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93:log:63', 'hash': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 367.99191348329043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f2e9e79bbbceba7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:24:20.000Z'}}, {'blockNum': '0x6b2284', 'uniqueId': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00:log:28', 'hash': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1304.3455407170193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b56e3e9032bedeff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:25:15.000Z'}}, {'blockNum': '0x6b2284', 'uniqueId': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00:log:31', 'hash': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'value': 1304.3455407170193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b56e3e9032bedeff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:25:15.000Z'}}, {'blockNum': '0x6b228b', 'uniqueId': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee:log:15', 'hash': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee', 'from': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:27:30.000Z'}}, {'blockNum': '0x6b228b', 'uniqueId': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee:log:18', 'hash': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:27:30.000Z'}}, {'blockNum': '0x6b228d', 'uniqueId': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1:log:38', 'hash': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 33.17961637446366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cc75ad4ca7a4091c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:06.000Z'}}, {'blockNum': '0x6b228d', 'uniqueId': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1:log:42', 'hash': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 33.17961637446366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cc75ad4ca7a4091c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:06.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8:log:90', 'hash': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 688.5143622022996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25530e64847eb3d764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8:log:94', 'hash': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 688.5143622022996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25530e64847eb3d764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424:log:102', 'hash': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424', 'from': '0x303a839d243cba9dd65ca95b8db2837833e38791', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424:log:105', 'hash': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424:log:107', 'hash': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4:log:120', 'hash': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.7659511608545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1861c1a59e606be3ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4:log:124', 'hash': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 449.7659511608545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1861c1a59e606be3ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7:log:135', 'hash': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9.365858930966844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81fa371344b2d5cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7:log:139', 'hash': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 9.365858930966844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81fa371344b2d5cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b2291', 'uniqueId': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb:log:143', 'hash': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 29.892263659247398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ed6a76c0dc269c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:29:54.000Z'}}, {'blockNum': '0x6b2291', 'uniqueId': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb:log:147', 'hash': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 29.892263659247398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ed6a76c0dc269c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:29:54.000Z'}}, {'blockNum': '0x6b2294', 'uniqueId': '0x0026ec0785e26c996fd329f67c2a11cb1dcee1c44c19f54c70cfa874cf362c3c:log:26', 'hash': '0x0026ec0785e26c996fd329f67c2a11cb1dcee1c44c19f54c70cfa874cf362c3c', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 817.013897199324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a5872c713380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:17.000Z'}}, {'blockNum': '0x6b2294', 'uniqueId': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb:log:51', 'hash': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19.872377230226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0113c8ddcd722e85d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:17.000Z'}}, {'blockNum': '0x6b2294', 'uniqueId': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb:log:55', 'hash': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 19.872377230226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0113c8ddcd722e85d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:17.000Z'}}, {'blockNum': '0x6b2296', 'uniqueId': '0xc48b0ccb01a634c17363c94056a799548384f4aca94e410ccdf78d75c8c7edc7:log:45', 'hash': '0xc48b0ccb01a634c17363c94056a799548384f4aca94e410ccdf78d75c8c7edc7', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:40.000Z'}}, {'blockNum': '0x6b2297', 'uniqueId': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666:log:10', 'hash': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 23.454764884074944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0145801064b597d273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:50.000Z'}}, {'blockNum': '0x6b2297', 'uniqueId': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666:log:14', 'hash': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 23.454764884074944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0145801064b597d273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:50.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1:log:31', 'hash': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 23.45469896133126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01457fd46fdfdf881f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1:log:35', 'hash': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 23.45469896133126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01457fd46fdfdf881f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f:log:55', 'hash': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 327.92234249636573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11c6d63117e9dc1972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f:log:59', 'hash': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 327.92234249636573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11c6d63117e9dc1972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b:log:74', 'hash': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 615.5640115376654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x215eaaaf1879006d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b:log:78', 'hash': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 615.5640115376654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x215eaaaf1879006d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b229b', 'uniqueId': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3:log:14', 'hash': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8.485973802055826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c43c365ccefaf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:31.000Z'}}, {'blockNum': '0x6b229b', 'uniqueId': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3:log:18', 'hash': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 8.485973802055826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c43c365ccefaf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:31.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367:log:55', 'hash': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.68469714059324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1860a0f9848a2d8b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367:log:59', 'hash': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 449.68469714059324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1860a0f9848a2d8b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e:log:75', 'hash': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.2476215662663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248403d0002aad897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e:log:79', 'hash': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 337.2476215662663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248403d0002aad897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7:log:91', 'hash': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19.58587004760048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010fcefd09b4308e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7:log:95', 'hash': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 19.58587004760048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010fcefd09b4308e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb:log:115', 'hash': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 665.0045661065257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x240ccad187583c47c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb:log:119', 'hash': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 665.0045661065257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x240ccad187583c47c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3:log:53', 'hash': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8415647634875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c304db3e406a85af2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3:log:57', 'hash': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 224.8415647634875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c304db3e406a85af2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155:log:73', 'hash': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 817.2036300346674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4cfa83c940178306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155:log:76', 'hash': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 817.2036300346674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4cfa83c940178306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7:log:24', 'hash': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.81349140342283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe9f751885a3e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7:log:28', 'hash': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 224.81349140342283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe9f751885a3e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96:log:47', 'hash': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.80743529579806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fd4735218a8003f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96:log:51', 'hash': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 224.80743529579806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fd4735218a8003f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b22a0', 'uniqueId': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5:log:79', 'hash': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 336.11685516493264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12388ef2f2f73a8120', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:31.000Z'}}, {'blockNum': '0x6b22a0', 'uniqueId': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5:log:83', 'hash': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 336.11685516493264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12388ef2f2f73a8120', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:31.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6:log:40', 'hash': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5.9241675066101545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5236def5ad68ec8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6:log:44', 'hash': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.9241675066101545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5236def5ad68ec8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c:log:51', 'hash': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c', 'from': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c:log:54', 'hash': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c:log:55', 'hash': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a5', 'uniqueId': '0xd0757137ecfe48a50ffebc8d7caa769356181a3713c974b6e24d817e904c6efd:log:26', 'hash': '0xd0757137ecfe48a50ffebc8d7caa769356181a3713c974b6e24d817e904c6efd', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 817.0000013990432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a27149ef39c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:26.000Z'}}, {'blockNum': '0x6b22a8', 'uniqueId': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422:log:44', 'hash': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 38.232628409349594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02129594f920ca55ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:57.000Z'}}, {'blockNum': '0x6b22a8', 'uniqueId': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422:log:48', 'hash': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 38.232628409349594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02129594f920ca55ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:57.000Z'}}, {'blockNum': '0x6b22ab', 'uniqueId': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff:log:101', 'hash': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19.16610126177903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109fbab8d1d815563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:35:34.000Z'}}, {'blockNum': '0x6b22ab', 'uniqueId': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff:log:105', 'hash': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 19.16610126177903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109fbab8d1d815563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:35:34.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59:log:58', 'hash': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3987.6350262137216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd82b8d80f20e5fb795', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59:log:62', 'hash': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3987.6350262137216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd82b8d80f20e5fb795', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94:log:73', 'hash': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 133.36413389141458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073acc952e47668825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94:log:77', 'hash': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 133.36413389141458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073acc952e47668825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a:log:33', 'hash': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 978.4239654989069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x350a5c34b57b66b216', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a:log:37', 'hash': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 978.4239654989069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x350a5c34b57b66b216', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86:log:50', 'hash': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.36097639215507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1249d2f49d1558c5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86:log:54', 'hash': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 337.36097639215507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1249d2f49d1558c5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b:log:65', 'hash': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.273151563410714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b4d48b4f0802ee7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b:log:69', 'hash': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 4.273151563410714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b4d48b4f0802ee7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:27', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:30', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa96dbfd3ef810dd8d13c330a3881e7e9c2aeb6dd', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:32', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0xa96dbfd3ef810dd8d13c330a3881e7e9c2aeb6dd', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:33', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816:log:44', 'hash': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7.231023111354909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6459c1354af2ff01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816:log:48', 'hash': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 7.231023111354909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6459c1354af2ff01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22bc', 'uniqueId': '0x7ccbfcaead905e3506d57dcaafd125f539cea0c666e0deb1b6e5d5ed07cbf9d6:log:4', 'hash': '0x7ccbfcaead905e3506d57dcaafd125f539cea0c666e0deb1b6e5d5ed07cbf9d6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 1686.456046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6c47769c23d4e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:53.000Z'}}, {'blockNum': '0x6b22bc', 'uniqueId': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5:log:84', 'hash': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.31166349514618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c44b48ae5f3ecda43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:53.000Z'}}, {'blockNum': '0x6b22bc', 'uniqueId': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5:log:88', 'hash': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.31166349514618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c44b48ae5f3ecda43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:53.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x8a08bf2e699f9fc8dcae503433e16d0fd3cdfeb28d2795f813a966d686e97ec6:log:15', 'hash': '0x8a08bf2e699f9fc8dcae503433e16d0fd3cdfeb28d2795f813a966d686e97ec6', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 817.0000013990432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a27149ef39c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826:log:57', 'hash': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.023767735985071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c15de089349632b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826:log:61', 'hash': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 2.023767735985071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c15de089349632b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882:log:79', 'hash': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.287765472856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cedbab9ed84f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882:log:83', 'hash': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 337.287765472856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cedbab9ed84f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22ce', 'uniqueId': '0x0823eabd78c08f457d1288d4685328aa49838e56a47ae0934d868691256a0056:log:23', 'hash': '0x0823eabd78c08f457d1288d4685328aa49838e56a47ae0934d868691256a0056', 'from': '0x7ae5771ed4766124bea19ddd10094fae8afa5ecc', 'to': '0x4a87112f921295447cbd3039bf7a3b7d74e21692', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0332ca1b67940c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:42:34.000Z'}}, {'blockNum': '0x6b22cf', 'uniqueId': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71:log:33', 'hash': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71', 'from': '0x0fec04a7526f601a1019edcd5d5b003101c46a0c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 18.931255148749784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0106b954417583ff7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:42:39.000Z'}}, {'blockNum': '0x6b22cf', 'uniqueId': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71:log:37', 'hash': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18.931255148749784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0106b954417583ff7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:42:39.000Z'}}, {'blockNum': '0x6b22d2', 'uniqueId': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a:log:93', 'hash': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 437.1622650188606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17b2d85bd9865c2be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:43:26.000Z'}}, {'blockNum': '0x6b22d2', 'uniqueId': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a:log:97', 'hash': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 437.1622650188606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17b2d85bd9865c2be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:43:26.000Z'}}, {'blockNum': '0x6b22d3', 'uniqueId': '0xf8f2550a82d1b7776668f4d3502078d014ec369b111e94e3a5071f05f6c91ef2:log:11', 'hash': '0xf8f2550a82d1b7776668f4d3502078d014ec369b111e94e3a5071f05f6c91ef2', 'from': '0x4a87112f921295447cbd3039bf7a3b7d74e21692', 'to': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0332ca1b67940c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:43:59.000Z'}}, {'blockNum': '0x6b22d7', 'uniqueId': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc:log:27', 'hash': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8632262600858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c309aa8e838b406ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:44:48.000Z'}}, {'blockNum': '0x6b22d7', 'uniqueId': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc:log:31', 'hash': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 224.8632262600858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c309aa8e838b406ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:44:48.000Z'}}, {'blockNum': '0x6b22e2', 'uniqueId': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3:log:66', 'hash': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.28347899218403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248bfa123910e343e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:46:36.000Z'}}, {'blockNum': '0x6b22e2', 'uniqueId': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3:log:70', 'hash': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4f138e1ceec7b33dfa4f3051594ec016a08c7513', 'value': 337.28347899218403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248bfa123910e343e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:46:36.000Z'}}, {'blockNum': '0x6b22e4', 'uniqueId': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045:log:80', 'hash': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045', 'from': '0xba2be1cd1f00470c21385b7cbed6211aefac0172', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 66.83644810252602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039f8ac36f3fe4e7a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:34.000Z'}}, {'blockNum': '0x6b22e4', 'uniqueId': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045:log:84', 'hash': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 66.83644810252602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039f8ac36f3fe4e7a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:34.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6:log:65', 'hash': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 27.20057259834356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01797bd8a9d37de353', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6:log:69', 'hash': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 27.20057259834356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01797bd8a9d37de353', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2:log:94', 'hash': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 677.1024429748314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b4af1c717004a9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2:log:97', 'hash': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 677.1024429748314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b4af1c717004a9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245:log:32', 'hash': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8309047953606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3027d4b4c922ea39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245:log:36', 'hash': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 224.8309047953606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3027d4b4c922ea39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3:log:52', 'hash': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.82484769741052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30124fcec5740315', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3:log:56', 'hash': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 224.82484769741052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30124fcec5740315', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7:log:74', 'hash': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 27.196811593940662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01796e7c0cc00efdee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7:log:78', 'hash': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 27.196811593940662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01796e7c0cc00efdee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9:log:85', 'hash': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 238.42374164573488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ceccb49cdbd88eaa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9:log:89', 'hash': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 238.42374164573488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ceccb49cdbd88eaa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63:log:100', 'hash': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.81163539286783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe35f4966855458', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63:log:104', 'hash': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 224.81163539286783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe35f4966855458', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06:log:119', 'hash': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.605103123899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185f86332e66df4f5a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06:log:123', 'hash': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 449.605103123899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185f86332e66df4f5a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22ea', 'uniqueId': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b:log:10', 'hash': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 241.62486342438797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d1937f519e0eb58cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:59.000Z'}}, {'blockNum': '0x6b22ea', 'uniqueId': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b:log:14', 'hash': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 241.62486342438797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d1937f519e0eb58cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:59.000Z'}}, {'blockNum': '0x6b22eb', 'uniqueId': '0x2934b2a7fbbafa5de43182ef5971b10f60ae054e36a80098ac599fff54009b32:log:55', 'hash': '0x2934b2a7fbbafa5de43182ef5971b10f60ae054e36a80098ac599fff54009b32', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 677.0140000091819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b374e608d1980000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:49:06.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0:log:31', 'hash': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 299.4838504595425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103c2c5f426f3ccc30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0:log:35', 'hash': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 299.4838504595425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103c2c5f426f3ccc30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc:log:52', 'hash': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 567.3703111210463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1d843e868d1e6e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc:log:56', 'hash': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 567.3703111210463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1d843e868d1e6e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2:log:68', 'hash': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2', 'from': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 170.32982151686636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093bcd163938818767', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2:log:72', 'hash': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 170.32982151686636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093bcd163938818767', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4:log:84', 'hash': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 44.95672747280974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fe6617210de890f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4:log:88', 'hash': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc31db08240a11df6a4c159ff4e6d69f484fc3828', 'value': 44.95672747280974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fe6617210de890f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca:log:103', 'hash': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 292.21282551234435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fd7448097f47cbfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca:log:107', 'hash': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 292.21282551234435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fd7448097f47cbfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538:log:29', 'hash': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1499.558460870627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514a8ddb291d375168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538:log:32', 'hash': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 1499.558460870627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514a8ddb291d375168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415:log:40', 'hash': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.53182993686548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0922d956685d68f049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415:log:44', 'hash': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 168.53182993686548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0922d956685d68f049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d:log:68', 'hash': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 409.2708462478362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x162fc62240a5c97332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d:log:72', 'hash': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 409.2708462478362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x162fc62240a5c97332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2306', 'uniqueId': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b:log:19', 'hash': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1235.864184653517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42ff0f980da4a39b9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:55.000Z'}}, {'blockNum': '0x6b2306', 'uniqueId': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b:log:22', 'hash': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'value': 1235.864184653517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42ff0f980da4a39b9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:55.000Z'}}, {'blockNum': '0x6b230a', 'uniqueId': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29:log:53', 'hash': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.2788487597403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb3cc286195cde45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:54:50.000Z'}}, {'blockNum': '0x6b230a', 'uniqueId': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29:log:57', 'hash': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.2788487597403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb3cc286195cde45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:54:50.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855:log:21', 'hash': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855', 'from': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855:log:24', 'hash': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309:log:49', 'hash': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309', 'from': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 858.0276728651355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e8386a672057956b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309:log:53', 'hash': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 858.0276728651355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e8386a672057956b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88:log:65', 'hash': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 179.76529890758604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09bebea2eb48950599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88:log:69', 'hash': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'value': 179.76529890758604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09bebea2eb48950599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2312', 'uniqueId': '0x2ae93424a7a1454565ec2f2bf43f615fa12a4071c193961d385a231951584bfc:log:52', 'hash': '0x2ae93424a7a1454565ec2f2bf43f615fa12a4071c193961d385a231951584bfc', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xb7f6a37b2f6869752659a33f3288455e46bc3902', 'value': 1499.55846087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514a8ddb28f7da3c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:29.000Z'}}, {'blockNum': '0x6b2316', 'uniqueId': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31:log:30', 'hash': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1220.9737021769345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x423069f9224dc5c6fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:55.000Z'}}, {'blockNum': '0x6b2316', 'uniqueId': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31:log:33', 'hash': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 1220.9737021769345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x423069f9224dc5c6fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:55.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01:log:73', 'hash': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.33056814225205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185bb6db11eb6214f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01:log:77', 'hash': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 449.33056814225205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185bb6db11eb6214f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd:log:89', 'hash': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 643.9447497190929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e887521aa05aa811', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd:log:93', 'hash': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 643.9447497190929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e887521aa05aa811', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2319', 'uniqueId': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda:log:39', 'hash': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 974.5161362679869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34d420ceba5b85b558', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:59:02.000Z'}}, {'blockNum': '0x6b2319', 'uniqueId': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda:log:43', 'hash': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 974.5161362679869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34d420ceba5b85b558', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:59:02.000Z'}}, {'blockNum': '0x6b231c', 'uniqueId': '0x76fe4a53cf1909320d879c2c6df5284756cc951692b2b8a45422588e40c566be:log:71', 'hash': '0x76fe4a53cf1909320d879c2c6df5284756cc951692b2b8a45422588e40c566be', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'value': 1220.9737021769345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x423069f9224dc5c6fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:59:53.000Z'}}, {'blockNum': '0x6b231f', 'uniqueId': '0x58cce4ce23017214ead66c1ea519b4c18bd424a2e1a1294f0aa3c17a399a2dc5:log:11', 'hash': '0x58cce4ce23017214ead66c1ea519b4c18bd424a2e1a1294f0aa3c17a399a2dc5', 'from': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 132.33431128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x072c81eaf8d05e6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:00:33.000Z'}}, {'blockNum': '0x6b231f', 'uniqueId': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970:log:27', 'hash': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 221.30550447514918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bff3b17cb17e3366c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:00:33.000Z'}}, {'blockNum': '0x6b231f', 'uniqueId': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970:log:31', 'hash': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 221.30550447514918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bff3b17cb17e3366c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:00:33.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb:log:66', 'hash': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 44.934697558665704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026f981d5af9e1b0dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb:log:70', 'hash': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 44.934697558665704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026f981d5af9e1b0dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2:log:77', 'hash': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2', 'from': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4230c766dd5ff40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2:log:80', 'hash': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4230c766dd5ff40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2323', 'uniqueId': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c:log:85', 'hash': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.66985887672485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debae4be453cf8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:02:39.000Z'}}, {'blockNum': '0x6b2323', 'uniqueId': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c:log:89', 'hash': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 224.66985887672485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debae4be453cf8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:02:39.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5:log:89', 'hash': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 126.27335474046538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06d865131c8e539fc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5:log:93', 'hash': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 126.27335474046538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06d865131c8e539fc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a:log:108', 'hash': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.33096186259063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616e7bea8b9aa8ee8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a:log:112', 'hash': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 112.33096186259063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616e7bea8b9aa8ee8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2333', 'uniqueId': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab:log:51', 'hash': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 81.90495366671198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0470a8d968a931fcab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:43.000Z'}}, {'blockNum': '0x6b2333', 'uniqueId': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab:log:55', 'hash': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 81.90495366671198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0470a8d968a931fcab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:43.000Z'}}, {'blockNum': '0x6b2334', 'uniqueId': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b:log:21', 'hash': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 134.79383570081757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ea3e766cb99253d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:46.000Z'}}, {'blockNum': '0x6b2334', 'uniqueId': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b:log:25', 'hash': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 134.79383570081757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ea3e766cb99253d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:46.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725:log:37', 'hash': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 110.94485840206211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0603ab50e7d6ec8efc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725:log:41', 'hash': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 110.94485840206211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0603ab50e7d6ec8efc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1:log:52', 'hash': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 682.3318552991844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fd41b73ed920a35e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1:log:56', 'hash': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 682.3318552991844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fd41b73ed920a35e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xe574b20d5810740072dc7cbbb2cc8b1197a1bb2e2373ecb690464cb7f84fd679:log:74', 'hash': '0xe574b20d5810740072dc7cbbb2cc8b1197a1bb2e2373ecb690464cb7f84fd679', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 677.0140000091819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b374e608d1980000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2339', 'uniqueId': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943:log:21', 'hash': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 450.00321498311763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18650c93ced477d7aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:10:38.000Z'}}, {'blockNum': '0x6b2339', 'uniqueId': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943:log:26', 'hash': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 450.00321498311763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18650c93ced477d7aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:10:38.000Z'}}, {'blockNum': '0x6b233a', 'uniqueId': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90:log:63', 'hash': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 23.967250193644336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014c9cc71133152f6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:11.000Z'}}, {'blockNum': '0x6b233a', 'uniqueId': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90:log:67', 'hash': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 23.967250193644336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014c9cc71133152f6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:11.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14:log:49', 'hash': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 719.0605391542651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26faf8369d62d52b39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14:log:54', 'hash': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 719.0605391542651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26faf8369d62d52b39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828:log:68', 'hash': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.33753313901074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616ff17333e68642d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828:log:72', 'hash': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 112.33753313901074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616ff17333e68642d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233c', 'uniqueId': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc:log:93', 'hash': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 542.3694314180254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d66e34c473dfee476', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:34.000Z'}}, {'blockNum': '0x6b233c', 'uniqueId': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc:log:97', 'hash': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 542.3694314180254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d66e34c473dfee476', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:34.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9:log:42', 'hash': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.468785310832722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137d129320ab2fcf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9:log:46', 'hash': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 22.468785310832722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137d129320ab2fcf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002:log:60', 'hash': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 253.49468124734184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbdf20585a6afa18e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002:log:64', 'hash': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 253.49468124734184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbdf20585a6afa18e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b2348', 'uniqueId': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1:log:68', 'hash': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 423.50091352384925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16f5417d0bc2754004', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:14:03.000Z'}}, {'blockNum': '0x6b2348', 'uniqueId': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1:log:72', 'hash': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 423.50091352384925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16f5417d0bc2754004', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:14:03.000Z'}}, {'blockNum': '0x6b2349', 'uniqueId': '0x626f6f5a11ae038f13f3dbfd073dd393fd054f91021d3ae1d66eebba7ec02b16:log:0', 'hash': '0x626f6f5a11ae038f13f3dbfd073dd393fd054f91021d3ae1d66eebba7ec02b16', 'from': '0xb5f4d354759a310314259c63268356a9fdcae1b7', 'to': '0x54c4bdcc5303911cc1ccd9ccd74ff722eb56c596', 'value': 1842.9608901571594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63e8385d2c3330bd1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:14:26.000Z'}}, {'blockNum': '0x6b234a', 'uniqueId': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51:log:24', 'hash': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 295.4340575675368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1003f89e14b955ec51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:01.000Z'}}, {'blockNum': '0x6b234a', 'uniqueId': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51:log:26', 'hash': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 295.4340575675368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1003f89e14b955ec51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:01.000Z'}}, {'blockNum': '0x6b234b', 'uniqueId': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207:log:83', 'hash': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.50581241729014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09227ce79c892f94f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:08.000Z'}}, {'blockNum': '0x6b234b', 'uniqueId': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207:log:87', 'hash': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'value': 168.50581241729014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09227ce79c892f94f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:08.000Z'}}, {'blockNum': '0x6b234c', 'uniqueId': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489:log:24', 'hash': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 706.276474171816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26498e173f0271459e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:01.000Z'}}, {'blockNum': '0x6b234c', 'uniqueId': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489:log:28', 'hash': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'value': 706.276474171816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26498e173f0271459e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:01.000Z'}}, {'blockNum': '0x6b2351', 'uniqueId': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b:log:9', 'hash': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 26.554916820858022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01708604279349a82b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:58.000Z'}}, {'blockNum': '0x6b2351', 'uniqueId': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b:log:12', 'hash': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 26.554916820858022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01708604279349a82b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:58.000Z'}}, {'blockNum': '0x6b235d', 'uniqueId': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e:log:67', 'hash': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 67.4026869689148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76672aef904597d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:18:23.000Z'}}, {'blockNum': '0x6b235d', 'uniqueId': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e:log:71', 'hash': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 67.4026869689148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76672aef904597d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:18:23.000Z'}}, {'blockNum': '0x6b2367', 'uniqueId': '0x96a53ff5ab3f2441c6c5e51aef1a308e7cc79627428a9aea1867bf4224efb948:log:47', 'hash': '0x96a53ff5ab3f2441c6c5e51aef1a308e7cc79627428a9aea1867bf4224efb948', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x173b58d0a312631fb8caf130bfb9dc3d67856565', 'value': 1232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42c96f409591400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:19:59.000Z'}}, {'blockNum': '0x6b237a', 'uniqueId': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb:log:41', 'hash': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 67.40214261379911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76483986bb71fee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:24:35.000Z'}}, {'blockNum': '0x6b237a', 'uniqueId': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb:log:45', 'hash': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 67.40214261379911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76483986bb71fee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:24:35.000Z'}}, {'blockNum': '0x6b237d', 'uniqueId': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f:log:17', 'hash': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:25:42.000Z'}}, {'blockNum': '0x6b237d', 'uniqueId': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f:log:20', 'hash': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:25:42.000Z'}}, {'blockNum': '0x6b237d', 'uniqueId': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f:log:22', 'hash': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:25:42.000Z'}}, {'blockNum': '0x6b238d', 'uniqueId': '0x59c440416c3dc6f3ed9ece4bec9f41da8a4bebef72285f837bbb6ad379b9d672:log:3', 'hash': '0x59c440416c3dc6f3ed9ece4bec9f41da8a4bebef72285f837bbb6ad379b9d672', 'from': '0x54c4bdcc5303911cc1ccd9ccd74ff722eb56c596', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1842.9608901571594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63e8385d2c3330bd1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:30:15.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c:log:44', 'hash': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.6698773782121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debbf1f9ae6dc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c:log:48', 'hash': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 224.6698773782121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debbf1f9ae6dc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580:log:59', 'hash': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 26.95997885681835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01762515ee20b311fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580:log:63', 'hash': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 26.95997885681835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01762515ee20b311fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2399', 'uniqueId': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847:log:15', 'hash': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 386.79881754135147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f7e97334b5629363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:37.000Z'}}, {'blockNum': '0x6b2399', 'uniqueId': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847:log:18', 'hash': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 386.79881754135147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f7e97334b5629363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:37.000Z'}}, {'blockNum': '0x6b239a', 'uniqueId': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9:log:55', 'hash': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9', 'from': '0x32d4fb837f41955b81556f74dadb2c5b8a0d0989', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.512427822442228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ddefcb087a28c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:42.000Z'}}, {'blockNum': '0x6b239a', 'uniqueId': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9:log:59', 'hash': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.512427822442228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ddefcb087a28c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:42.000Z'}}, {'blockNum': '0x6b239b', 'uniqueId': '0x3ba7b8435ac9c8ebd788f23e7ac90df0a25b029358fc5e267003003e892f2812:log:78', 'hash': '0x3ba7b8435ac9c8ebd788f23e7ac90df0a25b029358fc5e267003003e892f2812', 'from': '0x5c4c0b176825311452764a2e7327c6b0273b2db2', 'to': '0xd45f856e676e7c606ccf73c6130e497a96f795e9', 'value': 0.0993638726030607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016102ea6a0339dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:50.000Z'}}, {'blockNum': '0x6b23a7', 'uniqueId': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3:log:22', 'hash': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 674.0026071215254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2489aa48287db05ffb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:36:20.000Z'}}, {'blockNum': '0x6b23a7', 'uniqueId': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3:log:26', 'hash': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 674.0026071215254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2489aa48287db05ffb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:36:20.000Z'}}, {'blockNum': '0x6b23aa', 'uniqueId': '0xd01447b9aa0a96ec1604800366ae894cee3ca8764b90c6b62607e7d310f76f19:log:95', 'hash': '0xd01447b9aa0a96ec1604800366ae894cee3ca8764b90c6b62607e7d310f76f19', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x707457bda53e824c2fef1832d79783c8e7851f86', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:36:46.000Z'}}, {'blockNum': '0x6b23bb', 'uniqueId': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145:log:39', 'hash': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 746.7313272556684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x287afa99c97214168e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:41:26.000Z'}}, {'blockNum': '0x6b23bb', 'uniqueId': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145:log:43', 'hash': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 746.7313272556684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x287afa99c97214168e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:41:26.000Z'}}, {'blockNum': '0x6b23be', 'uniqueId': '0xc8b383f4c42288533139a2cad131639eb4b23a45007479cabc630cede1a3ade3:log:44', 'hash': '0xc8b383f4c42288533139a2cad131639eb4b23a45007479cabc630cede1a3ade3', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x707457bda53e824c2fef1832d79783c8e7851f86', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:42:22.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3:log:26', 'hash': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 893.3198852976733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306d4dc6aaa8838690', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3:log:30', 'hash': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 893.3198852976733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306d4dc6aaa8838690', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46:log:46', 'hash': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4999.465028986442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0583cb8fecdb67ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46:log:49', 'hash': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4999.465028986442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0583cb8fecdb67ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994:log:55', 'hash': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 91.07915747143707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04effa2b2986df2ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994:log:59', 'hash': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 91.07915747143707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04effa2b2986df2ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23da', 'uniqueId': '0x2663c6d0072d8f09f66f86fe3b78e000fcf8da1f1f2901d34c951b22829ff984:log:15', 'hash': '0x2663c6d0072d8f09f66f86fe3b78e000fcf8da1f1f2901d34c951b22829ff984', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0826c21016ba7a0d663ca520349bee75ec4e79df', 'value': 488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a745c467716a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:49:06.000Z'}}, {'blockNum': '0x6b23de', 'uniqueId': '0x1789c7a439dbb16a4476d1bd7b3f7a7dac5281585bd107705e53cb4caf13df90:log:69', 'hash': '0x1789c7a439dbb16a4476d1bd7b3f7a7dac5281585bd107705e53cb4caf13df90', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x77e987a77e75d8d73a65b1d4e041c6fe059bf0ef', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:49:38.000Z'}}, {'blockNum': '0x6b23ea', 'uniqueId': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd:log:22', 'hash': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 454.85557423247093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a8639ed618c06e81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:07.000Z'}}, {'blockNum': '0x6b23ea', 'uniqueId': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd:log:26', 'hash': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 454.85557423247093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a8639ed618c06e81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:07.000Z'}}, {'blockNum': '0x6b23eb', 'uniqueId': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135:log:25', 'hash': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135', 'from': '0x77e987a77e75d8d73a65b1d4e041c6fe059bf0ef', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:26.000Z'}}, {'blockNum': '0x6b23eb', 'uniqueId': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135:log:26', 'hash': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:26.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53:log:27', 'hash': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 220.91600894412633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf9d353abe7ab1aaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53:log:31', 'hash': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 220.91600894412633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf9d353abe7ab1aaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1:log:43', 'hash': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.48064072117745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b4b7162f1dea61a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1:log:47', 'hash': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.48064072117745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b4b7162f1dea61a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf:log:46', 'hash': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.188906513062324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0133eed4e9696e6f77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf:log:50', 'hash': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 22.188906513062324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0133eed4e9696e6f77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1:log:113', 'hash': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.47520026847718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b381d52d740b9ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1:log:117', 'hash': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.47520026847718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b381d52d740b9ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc:log:34', 'hash': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc', 'from': '0x707457bda53e824c2fef1832d79783c8e7851f86', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc:log:37', 'hash': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc:log:38', 'hash': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04:log:50', 'hash': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 213.26475527051605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b8fa49cfe51b968c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04:log:54', 'hash': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 213.26475527051605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b8fa49cfe51b968c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5:log:78', 'hash': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 448.70321917757104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853021082ad5d224a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5:log:82', 'hash': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 448.70321917757104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853021082ad5d224a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06:log:49', 'hash': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.0376018127681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7e3adb427f01ec4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06:log:53', 'hash': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.0376018127681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7e3adb427f01ec4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2:log:69', 'hash': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.23638555591972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061597be025e60f282', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2:log:73', 'hash': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'value': 112.23638555591972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061597be025e60f282', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b:log:17', 'hash': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4400.987490079801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee93f874cbe88920ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b:log:21', 'hash': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4400.987490079801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee93f874cbe88920ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd:log:33', 'hash': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.58663310343297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2cc400e5871b62ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd:log:37', 'hash': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 224.58663310343297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2cc400e5871b62ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f:log:55', 'hash': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 336.7028876363268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1240b0f4607b85cecc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f:log:59', 'hash': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 336.7028876363268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1240b0f4607b85cecc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717:log:69', 'hash': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 95.90706147981791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0532fa54474c1890bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717:log:73', 'hash': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.90706147981791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0532fa54474c1890bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de:log:46', 'hash': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 431.03411380930396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x175dcccacafedba0fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de:log:50', 'hash': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 431.03411380930396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x175dcccacafedba0fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5:log:68', 'hash': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 402.8726997702576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d6fb59ee14cd2112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5:log:72', 'hash': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 402.8726997702576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d6fb59ee14cd2112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240e', 'uniqueId': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9:log:13', 'hash': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 563.2609801412407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e88d0fd276501c3a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:45.000Z'}}, {'blockNum': '0x6b240e', 'uniqueId': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9:log:17', 'hash': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 563.2609801412407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e88d0fd276501c3a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:45.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d:log:41', 'hash': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 716.4837982888096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d735ca73271f3b47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d:log:46', 'hash': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 716.4837982888096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d735ca73271f3b47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789:log:69', 'hash': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 650.1276626238529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233e5570a1e5bfc7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789:log:73', 'hash': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 650.1276626238529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233e5570a1e5bfc7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b2417', 'uniqueId': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f:log:12', 'hash': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 520.415628931636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3637b93bafa9b59e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:26.000Z'}}, {'blockNum': '0x6b2417', 'uniqueId': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f:log:16', 'hash': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 520.415628931636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3637b93bafa9b59e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:26.000Z'}}, {'blockNum': '0x6b2418', 'uniqueId': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4:log:64', 'hash': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 523.7036055075274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c63d8f6822b7a444c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:52.000Z'}}, {'blockNum': '0x6b2418', 'uniqueId': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4:log:68', 'hash': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 523.7036055075274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c63d8f6822b7a444c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:52.000Z'}}, {'blockNum': '0x6b241e', 'uniqueId': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d:log:13', 'hash': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 323.99976056320594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x119066619ba181c5d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:06:23.000Z'}}, {'blockNum': '0x6b241e', 'uniqueId': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d:log:17', 'hash': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 323.99976056320594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x119066619ba181c5d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:06:23.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11:log:20', 'hash': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2245.790672545669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79be9b3df8aa35209c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11:log:24', 'hash': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 2245.790672545669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79be9b3df8aa35209c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58:log:66', 'hash': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 233.81629629010595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cacda5aa9fd3fe097', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58:log:69', 'hash': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 233.81629629010595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cacda5aa9fd3fe097', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2429', 'uniqueId': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012:log:35', 'hash': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 24.701029508972166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156cbaf777cba3d26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:09:22.000Z'}}, {'blockNum': '0x6b2429', 'uniqueId': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012:log:39', 'hash': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 24.701029508972166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156cbaf777cba3d26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:09:22.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d:log:38', 'hash': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.455417935411607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137a1aba36b24edd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d:log:42', 'hash': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'value': 22.455417935411607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137a1aba36b24edd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4:log:70', 'hash': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4', 'from': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 506.5885923159605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b765438b0a201de37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4:log:74', 'hash': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 506.5885923159605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b765438b0a201de37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2448', 'uniqueId': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22:log:13', 'hash': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 404.2117249192886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e9908635661b623d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:14.000Z'}}, {'blockNum': '0x6b2448', 'uniqueId': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22:log:17', 'hash': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 404.2117249192886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e9908635661b623d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:14.000Z'}}, {'blockNum': '0x6b2449', 'uniqueId': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4:log:39', 'hash': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 85.0032054492593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049ba80cfd64a632a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:23.000Z'}}, {'blockNum': '0x6b2449', 'uniqueId': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4:log:43', 'hash': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 85.0032054492593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049ba80cfd64a632a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:23.000Z'}}, {'blockNum': '0x6b244a', 'uniqueId': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3:log:58', 'hash': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.53251614579878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c03bdcf72ff1f27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:19:04.000Z'}}, {'blockNum': '0x6b244a', 'uniqueId': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3:log:62', 'hash': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'value': 224.53251614579878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c03bdcf72ff1f27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:19:04.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d:log:21', 'hash': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 384.21495046083163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d40db5c93c2ca516', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d:log:25', 'hash': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 384.21495046083163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d40db5c93c2ca516', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85:log:36', 'hash': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.454223884485234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01379d6da7c5d58a17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85:log:39', 'hash': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcf0f8246f32e74b47f3443d2544f7bc0d7d889e0', 'value': 22.454223884485234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01379d6da7c5d58a17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489:log:45', 'hash': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 452.4951819390165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1887a1d28d22d4b43e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489:log:49', 'hash': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 452.4951819390165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1887a1d28d22d4b43e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355:log:58', 'hash': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 386.90142779870195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f955feb0f91300d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355:log:62', 'hash': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 386.90142779870195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f955feb0f91300d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b245c', 'uniqueId': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf:log:41', 'hash': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 169.31303755468048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092db0be98d91a3663', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:38.000Z'}}, {'blockNum': '0x6b245c', 'uniqueId': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf:log:43', 'hash': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 169.31303755468048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092db0be98d91a3663', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:38.000Z'}}, {'blockNum': '0x6b245d', 'uniqueId': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559:log:20', 'hash': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559', 'from': '0x4f88dfc8e1d7ba696db158656457797cfbdfb844', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 110.60466187600453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fef2b1f7b5708407', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:51.000Z'}}, {'blockNum': '0x6b245d', 'uniqueId': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559:log:24', 'hash': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 110.60466187600453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fef2b1f7b5708407', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:51.000Z'}}, {'blockNum': '0x6b245f', 'uniqueId': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1:log:42', 'hash': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 45.500767128346695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02777332a13ce00fc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:24:15.000Z'}}, {'blockNum': '0x6b245f', 'uniqueId': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1:log:44', 'hash': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 45.500767128346695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02777332a13ce00fc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:24:15.000Z'}}, {'blockNum': '0x6b2469', 'uniqueId': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f:log:50', 'hash': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.52252573113418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2be03f94c5c0d8ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:43.000Z'}}, {'blockNum': '0x6b2469', 'uniqueId': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f:log:54', 'hash': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'value': 224.52252573113418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2be03f94c5c0d8ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:43.000Z'}}, {'blockNum': '0x6b246a', 'uniqueId': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb:log:43', 'hash': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.199940819256325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e87c284f2a7b303', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:56.000Z'}}, {'blockNum': '0x6b246a', 'uniqueId': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb:log:46', 'hash': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc202848358a295a846bbc33e33ee5730c11b468b', 'value': 2.199940819256325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e87c284f2a7b303', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:56.000Z'}}, {'blockNum': '0x6b246d', 'uniqueId': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f:log:44', 'hash': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd3fff3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:27:36.000Z'}}, {'blockNum': '0x6b246d', 'uniqueId': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f:log:47', 'hash': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd3fff3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:27:36.000Z'}}, {'blockNum': '0x6b2473', 'uniqueId': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997:log:32', 'hash': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:28:32.000Z'}}, {'blockNum': '0x6b2473', 'uniqueId': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997:log:35', 'hash': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:28:32.000Z'}}, {'blockNum': '0x6b2473', 'uniqueId': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997:log:37', 'hash': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:28:32.000Z'}}, {'blockNum': '0x6b2478', 'uniqueId': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea:log:154', 'hash': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea', 'from': '0xc202848358a295a846bbc33e33ee5730c11b468b', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:22.000Z'}}, {'blockNum': '0x6b2478', 'uniqueId': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea:log:157', 'hash': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:22.000Z'}}, {'blockNum': '0x6b2479', 'uniqueId': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1:log:37', 'hash': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 217.79641365864333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bce884c49a5787514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:39.000Z'}}, {'blockNum': '0x6b2479', 'uniqueId': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1:log:41', 'hash': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 217.79641365864333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bce884c49a5787514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:39.000Z'}}, {'blockNum': '0x6b2479', 'uniqueId': '0x6451503214b841b11f15d11e84ce926fff576848c7f9052e5d22115674ed9763:log:52', 'hash': '0x6451503214b841b11f15d11e84ce926fff576848c7f9052e5d22115674ed9763', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 219.9906080022021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0becfba46af5765ae7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:39.000Z'}}], 'pageKey': 'b4a861d7-7516-4279-a790-221740950624'}}
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Number of returned transfers:  1002
Answer is complete
 
symbol             POA
group              BPS
date        2019-05-26
hour             21:00
exchange       binance
Name: 309, dtype: object
HERE
 Symbol: POA, Contract: 
Datetime timestamps:  2019-05-26 21:00:00 2019-05-26 09:00:00 2019-05-27 09:00:00
Unix timestamps:  1558854000.0 1558940400.0
Hex Block Numbers:  0x7788c1 0x77a1ee
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SNM
group              BPS
date        2019-06-02
hour             21:00
exchange       binance
Name: 310, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-06-02 21:00:00 2019-06-02 09:00:00 2019-06-03 09:00:00
Unix timestamps:  1559458800.0 1559545200.0
Hex Block Numbers:  0x78381c 0x7850d1
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            NEBL
group              BPS
date        2019-06-16
hour             21:00
exchange       binance
Name: 311, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2019-06-16 21:00:00 2019-06-16 09:00:00 2019-06-17 09:00:00
Unix timestamps:  1560668400.0 1560754800.0
Hex Block Numbers:  0x799517 0x79ae68
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EDO
group              BPS
date        2019-12-08
hour             21:01
exchange       binance
Name: 312, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2019-12-08 21:01:00 2019-12-08 09:01:00 2019-12-09 09:01:00
Unix timestamps:  1575792060.0 1575878460.0
Hex Block Numbers:  0x8a689c 0x8a7e7f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             PNT
group              BPS
date        2020-12-04
hour             23:01
exchange       binance
Name: 313, dtype: object
HERE
 Symbol: PNT, Contract: 0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed
Datetime timestamps:  2020-12-04 23:01:00 2020-12-04 11:01:00 2020-12-05 11:01:00
Unix timestamps:  1607076060.0 1607162460.0
Hex Block Numbers:  0xadba73 0xadd3e2
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xadba7d', 'uniqueId': '0x55aea0aed4d0f03b68be285dadcb44b73071111a514eaf0cd972f5870a8b1f9e:log:187', 'hash': '0x55aea0aed4d0f03b68be285dadcb44b73071111a514eaf0cd972f5870a8b1f9e', 'from': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'to': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:03:18.000Z'}}, {'blockNum': '0xadba9f', 'uniqueId': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066:log:238', 'hash': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 10.010012176944546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8aeab50a241d3e7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:09:36.000Z'}}, {'blockNum': '0xadba9f', 'uniqueId': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066:log:242', 'hash': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x2a24a7a4beb9e6d0431c9bc1800045b8fc27a966', 'value': 0.010010012176944545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x23900d94010da1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:09:36.000Z'}}, {'blockNum': '0xadba9f', 'uniqueId': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066:log:245', 'hash': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x05589789fc4ed59dffb358830f1840c5d7cfdd8a', 'value': 10.0000021647676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac724fc901c30de', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:09:36.000Z'}}, {'blockNum': '0xadbaa9', 'uniqueId': '0xf4e2abd9478bda8cdb7bb8d52c6c1eac0cb716ba9df16163b70659854a55a4c6:log:138', 'hash': '0xf4e2abd9478bda8cdb7bb8d52c6c1eac0cb716ba9df16163b70659854a55a4c6', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb9d50e7dad77100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:11:52.000Z'}}, {'blockNum': '0xadbaae', 'uniqueId': '0xac640f65e4e55bd18cb7e40f100aa2a48ed47c03f0c125ab795ad0ec446678e9:log:112', 'hash': '0xac640f65e4e55bd18cb7e40f100aa2a48ed47c03f0c125ab795ad0ec446678e9', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x922786b796df041f9a91cdbd08bfeffd73227240', 'value': 13000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02c0bb3dd30c4e200000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:12:27.000Z'}}, {'blockNum': '0xadbac6', 'uniqueId': '0xfa6d91ae915447a8d221102afe3785317f07215bc35d3db3d008170130ab94de:log:355', 'hash': '0xfa6d91ae915447a8d221102afe3785317f07215bc35d3db3d008170130ab94de', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x7805db2add00f2565cc3be38d5ecd21687615988', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:16:38.000Z'}}, {'blockNum': '0xadbacd', 'uniqueId': '0x66941efef1cbb71506f7c2c705c4dfb11167b836aec21b63acc464a4bb93a9cc:log:39', 'hash': '0x66941efef1cbb71506f7c2c705c4dfb11167b836aec21b63acc464a4bb93a9cc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb92e85ed419e600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:17:43.000Z'}}, {'blockNum': '0xadbad0', 'uniqueId': '0x0afe107f2636ea0811ab9e5cdbe496b8e8d0405e89720a44ef4a99a45151e618:log:258', 'hash': '0x0afe107f2636ea0811ab9e5cdbe496b8e8d0405e89720a44ef4a99a45151e618', 'from': '0x7805db2add00f2565cc3be38d5ecd21687615988', 'to': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:18:02.000Z'}}, {'blockNum': '0xadbaf7', 'uniqueId': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5:log:228', 'hash': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 3850.4273548942706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd0bb69eed67feb1173', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:26:20.000Z'}}, {'blockNum': '0xadbaf7', 'uniqueId': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5:log:232', 'hash': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3850.4273548942706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd0bb69eed67feb1173', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:26:20.000Z'}}, {'blockNum': '0xadbb81', 'uniqueId': '0xa5122ceabe254bbcaafcd0576a81a44cf24e739579a88e9ff119724f1e9831e3:log:39', 'hash': '0xa5122ceabe254bbcaafcd0576a81a44cf24e739579a88e9ff119724f1e9831e3', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb92e85ed419e600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:58:33.000Z'}}, {'blockNum': '0xadbbc9', 'uniqueId': '0x79ae532899b28aa7da911cad5f3b4fc5196ded4bb539d12c49427f66764f4e5a:log:11', 'hash': '0x79ae532899b28aa7da911cad5f3b4fc5196ded4bb539d12c49427f66764f4e5a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x16109b23adf914cbaf1b68e86be0d67f711fb6d5', 'value': 3314.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb3b04973202c0b0000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T11:14:16.000Z'}}, {'blockNum': '0xadbc6c', 'uniqueId': '0x1188db1b81cf713900ccd6974968ad65a5bd42a718b4119e160d0cd1f85ec252:log:68', 'hash': '0x1188db1b81cf713900ccd6974968ad65a5bd42a718b4119e160d0cd1f85ec252', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x399129e800be4ec6c0c46d78fdb743bb038c7ad7', 'value': 61.954703130515576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x035bcb523f4329944d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T11:51:26.000Z'}}, {'blockNum': '0xadbcb2', 'uniqueId': '0x9346122d98ddf555942a820192be938fe19af2d015cdb238c22ac5ad56d53d80:log:139', 'hash': '0x9346122d98ddf555942a820192be938fe19af2d015cdb238c22ac5ad56d53d80', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xd1fd56c522ea55675c888a4d6858b0ad16d88366', 'value': 57.377049180327866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x031c443a3b9d8f79b4', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:07:20.000Z'}}, {'blockNum': '0xadbcd3', 'uniqueId': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737:log:45', 'hash': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 2353.4042185795533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x7f940b5bed9c0a76dc', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:13:41.000Z'}}, {'blockNum': '0xadbcd3', 'uniqueId': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737:log:49', 'hash': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2353.4042185795533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x7f940b5bed9c0a76dc', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:13:41.000Z'}}, {'blockNum': '0xadbd5a', 'uniqueId': '0x1a6c74c2c5ee86afc7aaf6b9f4c6cfe823bab87cbd869187271a1c1e7dc6b898:log:155', 'hash': '0x1a6c74c2c5ee86afc7aaf6b9f4c6cfe823bab87cbd869187271a1c1e7dc6b898', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xf08e2e3df499ea1d3086e0f04beda6aebce55949', 'value': 31.973862295081968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01bbb9fa5a439dde6d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:41:51.000Z'}}, {'blockNum': '0xadbe28', 'uniqueId': '0x2531b2217f9aecb5bc15d52fa59fb19fca211c346f4d9248f49471e258e314c1:log:41', 'hash': '0x2531b2217f9aecb5bc15d52fa59fb19fca211c346f4d9248f49471e258e314c1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab7a0c9238d4ef8c2d2b23e52a88e67cbafbf2cf', 'value': 1302.47423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x469b7603617a6d6000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T13:21:24.000Z'}}, {'blockNum': '0xadbf3f', 'uniqueId': '0xd50a9603b7bc97eefe5522002e249ca5aec5bc4573074d391f8967d7e714d0b7:log:180', 'hash': '0xd50a9603b7bc97eefe5522002e249ca5aec5bc4573074d391f8967d7e714d0b7', 'from': '0xaa298fa032ae863e0156f1e1b54a7ad1a27534a4', 'to': '0x55d2bdf6117e41d65ee2b828a04f67ae485a61d5', 'value': 56.62142024453181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0311c7b1b8216e174a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:27:33.000Z'}}, {'blockNum': '0xadbf4a', 'uniqueId': '0x1619a44b3f0769d885f80f969e421c4a22edc328ecd5c4d1892b785b469fc6f7:log:69', 'hash': '0x1619a44b3f0769d885f80f969e421c4a22edc328ecd5c4d1892b785b469fc6f7', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3112.316721665546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa8b8123098172999f6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:30:04.000Z'}}, {'blockNum': '0xadbf4c', 'uniqueId': '0xbf31622da0bd57e2388ed51905ad53dc6cb13f1698b0f95804241d51cea9fe22:log:46', 'hash': '0xbf31622da0bd57e2388ed51905ad53dc6cb13f1698b0f95804241d51cea9fe22', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3106.0920882222144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa861afd974f8600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:31:25.000Z'}}, {'blockNum': '0xadbf67', 'uniqueId': '0x887d8fdd448b63549202744bcd80cf0d8789118538b4b6dcb6d43366265aadad:log:289', 'hash': '0x887d8fdd448b63549202744bcd80cf0d8789118538b4b6dcb6d43366265aadad', 'from': '0x55d2bdf6117e41d65ee2b828a04f67ae485a61d5', 'to': '0xf6592340ecac4e51d5027eda4530f249d954d5e1', 'value': 76.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0429d069189e000000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:39:26.000Z'}}, {'blockNum': '0xadc030', 'uniqueId': '0x31830ed18d1721e500e905be105e91f8ca3b3087365104d19b947fb3c13be307:log:205', 'hash': '0x31830ed18d1721e500e905be105e91f8ca3b3087365104d19b947fb3c13be307', 'from': '0x14e942eab884e47a940768f4c7e5225089e51001', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 951.2119974204392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x3390b7dfeaaf0eb4ec', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:20:46.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:78', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 671.4981816329425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2466e8c6720045f8fd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:80', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:82', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 671.4981816329425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2466e8c6720045f8fd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:113', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 671.4981816329425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2466e8c6720045f8fd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc101', 'uniqueId': '0xdbdce24eac05c0218dea987bba9def5e683fa367f796c28ba3ba4a06f85c8be0:log:90', 'hash': '0xdbdce24eac05c0218dea987bba9def5e683fa367f796c28ba3ba4a06f85c8be0', 'from': '0x5cb53c4834b394e8894bb40253a1e984f87fe0dc', 'to': '0x22ab60db2853bbe799ddaa8bc11eeb5c944025ba', 'value': 50.15031331974153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7f9b441adbc1cac', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:04:46.000Z'}}, {'blockNum': '0xadc146', 'uniqueId': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df:log:325', 'hash': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 621.7115962048188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21b3fb4ac771514bed', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:22:48.000Z'}}, {'blockNum': '0xadc146', 'uniqueId': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df:log:329', 'hash': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 621.7115962048188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21b3fb4ac771514bed', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:22:48.000Z'}}, {'blockNum': '0xadc176', 'uniqueId': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77:log:144', 'hash': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77', 'from': '0xa3a39829c967e7391c18bfb17247ce88487632ad', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 14.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf6700370168000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:33:10.000Z'}}, {'blockNum': '0xadc176', 'uniqueId': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77:log:148', 'hash': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 14.551874999999994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xc9f2a5369ee31a3f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:33:10.000Z'}}, {'blockNum': '0xadc176', 'uniqueId': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77:log:156', 'hash': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0xa3a39829c967e7391c18bfb17247ce88487632ad', 'value': 0.07312500000000557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0103caccd13365c1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:33:10.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:138', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 367.5356060035717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec94c65f86d124f9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:140', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:142', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 367.5356060035717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec94c65f86d124f9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:173', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 367.5356060035717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec94c65f86d124f9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:127', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 603.9502151442456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd7e30ceed802640', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:129', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:131', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 603.9502151442456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd7e30ceed802640', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:162', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 603.9502151442456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd7e30ceed802640', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2ab', 'uniqueId': '0x12d3e6dd6788a3aa4001d350b06f266cf1d10ebee9be2df0c2aa6055f35ba746:log:164', 'hash': '0x12d3e6dd6788a3aa4001d350b06f266cf1d10ebee9be2df0c2aa6055f35ba746', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x5cb53c4834b394e8894bb40253a1e984f87fe0dc', 'value': 21.563094290189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x012b3f8002c10631b6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:50.000Z'}}, {'blockNum': '0xadc2bb', 'uniqueId': '0xc1c05a7c7705e97161e9a499583fe8016294f8c52becfed58f385bfd51fc3569:log:262', 'hash': '0xc1c05a7c7705e97161e9a499583fe8016294f8c52becfed58f385bfd51fc3569', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x369987decd26db2b72c1218ea6692b79fde04d24', 'value': 569.0740918843089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1ed97d4f7c2a3cc30f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:42:06.000Z'}}, {'blockNum': '0xadc2c7', 'uniqueId': '0xacb67c095b0ba29028347c5f8d4d5d0d181041a8058cac80f7a94bcf12d57753:log:39', 'hash': '0xacb67c095b0ba29028347c5f8d4d5d0d181041a8058cac80f7a94bcf12d57753', 'from': '0x369987decd26db2b72c1218ea6692b79fde04d24', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 569.674456152831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1ee1d23b9b3b551225', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:45:54.000Z'}}, {'blockNum': '0xadc494', 'uniqueId': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5:log:67', 'hash': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 608.9273534175942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21029089b2aa72bacd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:25:38.000Z'}}, {'blockNum': '0xadc494', 'uniqueId': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5:log:71', 'hash': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 608.9273534175942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21029089b2aa72bacd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:25:38.000Z'}}, {'blockNum': '0xadc4ba', 'uniqueId': '0xd951869b39360ee65b1b6e95cc70d223ef0d5f5756d02d2de37472bed268ed57:log:67', 'hash': '0xd951869b39360ee65b1b6e95cc70d223ef0d5f5756d02d2de37472bed268ed57', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x53fe88ceb39f23db1fcd4d6beb55965f6ac1764f', 'value': 526.8922360856963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1c901941200f2d84f3', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:34:21.000Z'}}, {'blockNum': '0xadc4ca', 'uniqueId': '0x50b20168443d1db9ddba2798082f6805f41403b9c2d50a739d74dea6f02db5de:log:295', 'hash': '0x50b20168443d1db9ddba2798082f6805f41403b9c2d50a739d74dea6f02db5de', 'from': '0x53fe88ceb39f23db1fcd4d6beb55965f6ac1764f', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 526.8922360856963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1c901941200f2d84f3', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:36:53.000Z'}}, {'blockNum': '0xadc4e1', 'uniqueId': '0x29143fbd90fa294e4023481797e8e60c82efb74746061b9405d769d94ba0fdaf:log:101', 'hash': '0x29143fbd90fa294e4023481797e8e60c82efb74746061b9405d769d94ba0fdaf', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0xbcb127e3e3977a152a5873ea707beff0ae88e66b', 'value': 46.9148287270636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x028b12f4296eeae40e', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:42:08.000Z'}}, {'blockNum': '0xadc4e5', 'uniqueId': '0x15efa0d0afae7f787e7cc97b8f3118a711b2ad887f04b8789d92701411d5a030:log:21', 'hash': '0x15efa0d0afae7f787e7cc97b8f3118a711b2ad887f04b8789d92701411d5a030', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0xbcb127e3e3977a152a5873ea707beff0ae88e66b', 'value': 127.83830002246144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x06ee1ce08dd8a036e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:42:49.000Z'}}, {'blockNum': '0xadc4fa', 'uniqueId': '0xd16bc0a11921ceee201547e234cb4ff57ccadfda1362e2ea65226727b1aa8583:log:167', 'hash': '0xd16bc0a11921ceee201547e234cb4ff57ccadfda1362e2ea65226727b1aa8583', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'value': 160.3717526487514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x08b19aeb591ba32728', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:47:51.000Z'}}, {'blockNum': '0xadc500', 'uniqueId': '0x7fdfe1cea216637622e313f737e3e5cd266bb3e2ef5af69bdd6eaa5ef789c4d7:log:126', 'hash': '0x7fdfe1cea216637622e313f737e3e5cd266bb3e2ef5af69bdd6eaa5ef789c4d7', 'from': '0xaa298fa032ae863e0156f1e1b54a7ad1a27534a4', 'to': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'value': 64.00429711227304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03783cf11d43980a10', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:48:46.000Z'}}, {'blockNum': '0xadc50b', 'uniqueId': '0xfd0155dac21b52a18a3217007029b607c48fed7836ff658442bc9dcb2748111b:log:28', 'hash': '0xfd0155dac21b52a18a3217007029b607c48fed7836ff658442bc9dcb2748111b', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'value': 77.09701650169806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x042defa007e2246da1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:51:42.000Z'}}, {'blockNum': '0xadc514', 'uniqueId': '0xbff8211a93c9b2ff561584b8e5ca5152672a2cd25526c57f8103977e8af69d59:log:3', 'hash': '0xbff8211a93c9b2ff561584b8e5ca5152672a2cd25526c57f8103977e8af69d59', 'from': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'to': '0xcda67a0135d5481cb4c92237b862a080c8bc39d4', 'value': 301.4730662627225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1057c77c7e415f9ed9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:52:45.000Z'}}, {'blockNum': '0xadc515', 'uniqueId': '0x759d6442a9445d1c8d1d9c3aacd323c188afe3d4650eede2080e8029299cde18:log:216', 'hash': '0x759d6442a9445d1c8d1d9c3aacd323c188afe3d4650eede2080e8029299cde18', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0xc2a3110379f2331842c1f5fb05a2a45ebe41ce0f', 'value': 110.77402916907609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x06014c689f918a2ad1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:52:48.000Z'}}, {'blockNum': '0xadc521', 'uniqueId': '0xf2b409ed52a25736bbb5bfb6cc0e7d2c4b5448b2c1546269e32bba20fba4ba28:log:211', 'hash': '0xf2b409ed52a25736bbb5bfb6cc0e7d2c4b5448b2c1546269e32bba20fba4ba28', 'from': '0xc2a3110379f2331842c1f5fb05a2a45ebe41ce0f', 'to': '0xcda67a0135d5481cb4c92237b862a080c8bc39d4', 'value': 110.77402916907609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x06014c689f918a2ad1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:54:59.000Z'}}, {'blockNum': '0xadc53a', 'uniqueId': '0x876094076e927cf48811e9e133c42d1484a2891a582102c769aae85a59db87f3:log:206', 'hash': '0x876094076e927cf48811e9e133c42d1484a2891a582102c769aae85a59db87f3', 'from': '0xbcb127e3e3977a152a5873ea707beff0ae88e66b', 'to': '0x3f91b71d1fee38acc7f8c160332fc4d6d2e42f62', 'value': 174.75312874952505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x09792fd4b7478b1af4', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:59:52.000Z'}}, {'blockNum': '0xadc545', 'uniqueId': '0x18e34254a09ea25d73b76a05ee0e1be69af626a5f99eb0bf52934652f5f273c4:log:206', 'hash': '0x18e34254a09ea25d73b76a05ee0e1be69af626a5f99eb0bf52934652f5f273c4', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xb0694e56742b6ee22921948c89622bac3f7ef2e9', 'value': 10.38295081967213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x9017a6c25ee8864c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:02:29.000Z'}}, {'blockNum': '0xadc549', 'uniqueId': '0xa572aa49713fb3f3ada5d9e1b79905cbb410e64e7ac2793824015785c84f6b20:log:77', 'hash': '0xa572aa49713fb3f3ada5d9e1b79905cbb410e64e7ac2793824015785c84f6b20', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0xb0694e56742b6ee22921948c89622bac3f7ef2e9', 'value': 131.44168176297143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x07201ea927d1d9f181', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:03:59.000Z'}}, {'blockNum': '0xadc550', 'uniqueId': '0x3f6eecb366035b5af724ac438ec76670a5501d3f72a59918a1295c6a8f58b87e:log:102', 'hash': '0x3f6eecb366035b5af724ac438ec76670a5501d3f72a59918a1295c6a8f58b87e', 'from': '0xb0694e56742b6ee22921948c89622bac3f7ef2e9', 'to': '0x18faa01efc7f2ee4ded961087c79f56eba8656ea', 'value': 141.82463258264355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x07b0364fea30c277cd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:05:15.000Z'}}, {'blockNum': '0xadc551', 'uniqueId': '0x550b314dcfcfb8ae819afa865ddfab4776e55c31330109ca1ed56f7d08700951:log:116', 'hash': '0x550b314dcfcfb8ae819afa865ddfab4776e55c31330109ca1ed56f7d08700951', 'from': '0x18faa01efc7f2ee4ded961087c79f56eba8656ea', 'to': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'value': 141.82463258264355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x07b0364fea30c277cd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:05:24.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:99', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 367.534668636074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec9171d7a6180ed5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:101', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:103', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 367.534668636074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec9171d7a6180ed5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:134', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 367.534668636074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec9171d7a6180ed5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5cc', 'uniqueId': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e:log:172', 'hash': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 792.3647048133639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2af444ece64dcee52e', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:33:59.000Z'}}, {'blockNum': '0xadc5cc', 'uniqueId': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e:log:176', 'hash': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 789.9052240116742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad2231824313327a9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:33:59.000Z'}}, {'blockNum': '0xadc5cc', 'uniqueId': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e:log:184', 'hash': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'value': 2.459480801689714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2221d4c21c9bbd85', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:33:59.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:51', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 266.21413483396526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0e6e76992b26718c7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:53', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:55', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 266.21413483396526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0e6e76992b26718c7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:86', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 266.21413483396526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0e6e76992b26718c7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc6ba', 'uniqueId': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888:log:126', 'hash': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 706.9920889963752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x26537c7723384c4319', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:27:53.000Z'}}, {'blockNum': '0xadc6ba', 'uniqueId': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888:log:130', 'hash': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 706.9920889963752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x26537c7723384c4319', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:27:53.000Z'}}, {'blockNum': '0xadc7b8', 'uniqueId': '0x6692c5302887f0fe7c23d0d1f3149dcbce23a7563734036d430571a69f943681:log:253', 'hash': '0x6692c5302887f0fe7c23d0d1f3149dcbce23a7563734036d430571a69f943681', 'from': '0x9a376c8e244cdbb07eb7856da3cac7f5794b58fa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:45.000Z'}}, {'blockNum': '0xadc7b9', 'uniqueId': '0x789db0c6a49404c57c28d4e888f525184fcab4b91549e1fe5dc0fe09d8d35451:log:2', 'hash': '0x789db0c6a49404c57c28d4e888f525184fcab4b91549e1fe5dc0fe09d8d35451', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'value': 1394.087866538311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4b92db086c2a33536b', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:50.000Z'}}, {'blockNum': '0xadc7b9', 'uniqueId': '0x9ce37b828c7dadf5c6c1500655e658d6784893d594e8041c44c567370acaf277:log:8', 'hash': '0x9ce37b828c7dadf5c6c1500655e658d6784893d594e8041c44c567370acaf277', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 12680.63920584683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02af6b385ccfcfd10809', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:50.000Z'}}, {'blockNum': '0xadc7b9', 'uniqueId': '0xd3a3f5a985a6e6a288faa9abecf6647d123c7706588339744ac6b2b4e9d43a7b:log:12', 'hash': '0xd3a3f5a985a6e6a288faa9abecf6647d123c7706588339744ac6b2b4e9d43a7b', 'from': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1394.087866538311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4b92db086c2a33536b', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:50.000Z'}}, {'blockNum': '0xadc7ba', 'uniqueId': '0xb184b71f85e48d65a3f571effbc4e8f8001f8084b4d0b9449cf07ea4521c67ba:log:15', 'hash': '0xb184b71f85e48d65a3f571effbc4e8f8001f8084b4d0b9449cf07ea4521c67ba', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xbb767a28ca7f6238e42be69619d8735d5970bc3d', 'value': 2652.401531753656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8fc977341ab6a6a174', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:59.000Z'}}, {'blockNum': '0xadc7bb', 'uniqueId': '0x368f053d8c7d8b21727dc5df33585953fcafedabfb1858687d6ba3d06dd41979:log:139', 'hash': '0x368f053d8c7d8b21727dc5df33585953fcafedabfb1858687d6ba3d06dd41979', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 12655.277927435136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02ae0b43007755000000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:30:14.000Z'}}, {'blockNum': '0xadc805', 'uniqueId': '0x2d923e33e511579099679f42939fbe722ef30a209feccda6719c61afbedc9cac:log:171', 'hash': '0x2d923e33e511579099679f42939fbe722ef30a209feccda6719c61afbedc9cac', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb92e85ed419e600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:46:43.000Z'}}, {'blockNum': '0xadc818', 'uniqueId': '0x1a86540af0e5f0aa62321255b2dd1b468c4c5b62890c074e0ad1daf69a69481d:log:91', 'hash': '0x1a86540af0e5f0aa62321255b2dd1b468c4c5b62890c074e0ad1daf69a69481d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 3404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb887fd5cd5c5b00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:51:29.000Z'}}, {'blockNum': '0xadc820', 'uniqueId': '0x46dbc4e25d4f0f85d35069394fed71cef15bc4076f27c820b5364b09fac14202:log:222', 'hash': '0x46dbc4e25d4f0f85d35069394fed71cef15bc4076f27c820b5364b09fac14202', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 3404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb887fd5cd5c5b00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:53:49.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x11e5442f6ad6dadb0a732672a6fe325674d820e48a9c868dc818f06ff3686cbe:log:2', 'hash': '0x11e5442f6ad6dadb0a732672a6fe325674d820e48a9c868dc818f06ff3686cbe', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x000000000000084e91743124a982076c59f10084', 'value': 28898.851601114035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x061e9c2162890a9d398c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x805a1d9ecffe6c3e7fe59701499a3d542c128b0f5bc32934893ac06013ba06c3:log:8', 'hash': '0x805a1d9ecffe6c3e7fe59701499a3d542c128b0f5bc32934893ac06013ba06c3', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 15473.955553150341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d8458f0f5d3fd97e', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x7a71d213c09971564b57e7a8bd2d5607296f1de8ded12908226eabbe99988d17:log:12', 'hash': '0x7a71d213c09971564b57e7a8bd2d5607296f1de8ded12908226eabbe99988d17', 'from': '0x000000000000084e91743124a982076c59f10084', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 28898.851601114035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x061e9c2162890a9d398c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x0c6e0404f7d9d2e2c7cae69c4445367d2cbc9a2e866c97b84e194278d4d25f1a:log:19', 'hash': '0x0c6e0404f7d9d2e2c7cae69c4445367d2cbc9a2e866c97b84e194278d4d25f1a', 'from': '0xbb767a28ca7f6238e42be69619d8735d5970bc3d', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2652.401531753656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8fc977341ab6a6a174', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0xf38bdaf909a642ce3efdd76d40a5f7dda9069f20974c557c3c1cf7e46776a633:log:2', 'hash': '0xf38bdaf909a642ce3efdd76d40a5f7dda9069f20974c557c3c1cf7e46776a633', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0000000071e801062eb0544403f66176bba42dc0', 'value': 3984.6140758657557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd801a0ee9c17c1c001', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0x6f102e43fb0bc0d389ccfaff2760571504fbe6a932bb12bfc0e813c84da8eb7e:log:10', 'hash': '0x6f102e43fb0bc0d389ccfaff2760571504fbe6a932bb12bfc0e813c84da8eb7e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xf0eaf0c77c1362ad4de668755be5559eb47cfb9f', 'value': 12146.26362095979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02927344e999a61e1380', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0x236ba357e4214e729c095ca411d61b5eea256dd8e2637662cf48ecae1b0c2e6f:log:14', 'hash': '0x236ba357e4214e729c095ca411d61b5eea256dd8e2637662cf48ecae1b0c2e6f', 'from': '0x0000000071e801062eb0544403f66176bba42dc0', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3984.6140758657557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd801a0ee9c17c1c001', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0x66ac01a8f355942384a469c1bf0dc346fcda503de97160ca5ceb70483812ea9a:log:51', 'hash': '0x66ac01a8f355942384a469c1bf0dc346fcda503de97160ca5ceb70483812ea9a', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 3902.6452798983332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd3901544f7770fed50', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83d', 'uniqueId': '0x42b5afd9178ce8cd5fa91c414a61d71c203271fd082354e34af141fa20a30d90:log:24', 'hash': '0x42b5afd9178ce8cd5fa91c414a61d71c203271fd082354e34af141fa20a30d90', 'from': '0xf0eaf0c77c1362ad4de668755be5559eb47cfb9f', 'to': '0x7e8eda0099a86709ef44c1f27a446c92620d6c71', 'value': 12146.26362095979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02927344e999a61e1380', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:59.000Z'}}, {'blockNum': '0xadc83e', 'uniqueId': '0xfdca9721560b9c72741788552dad5dd3401e82b926f582240bf4e2602e1d298d:log:16', 'hash': '0xfdca9721560b9c72741788552dad5dd3401e82b926f582240bf4e2602e1d298d', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0000000071e801062eb0544403f66176bba42dc0', 'value': 2787.583890514025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x971d7f6b2b89d95bb1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:13.000Z'}}, {'blockNum': '0xadc83e', 'uniqueId': '0x58bf57a7ba7234ff92f5cde99fb4e7c878ebe6fea6e892a9a8915b2137cdfaf5:log:22', 'hash': '0x58bf57a7ba7234ff92f5cde99fb4e7c878ebe6fea6e892a9a8915b2137cdfaf5', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 12792.461861400954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b57b123d939033c312', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:13.000Z'}}, {'blockNum': '0xadc83e', 'uniqueId': '0xac1af40f1d310488b0a72357df3e4675b7d57f0b3a620dcbb0e04bf528087395:log:26', 'hash': '0xac1af40f1d310488b0a72357df3e4675b7d57f0b3a620dcbb0e04bf528087395', 'from': '0x0000000071e801062eb0544403f66176bba42dc0', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2787.583890514025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x971d7f6b2b89d95bb1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:13.000Z'}}, {'blockNum': '0xadc841', 'uniqueId': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436:log:5', 'hash': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436', 'from': '0x6e352003c12f491f56c11459cd20596d3866b321', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 209.57105637627777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c61f56b4f660e12', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:33.000Z'}}, {'blockNum': '0xadc841', 'uniqueId': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436:log:7', 'hash': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 209.57085764132216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c6140abb8f70000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:33.000Z'}}, {'blockNum': '0xadc841', 'uniqueId': '0x6343badf931f554f714d3e1ca56076a9650a99878feae45dea33d14db62a27f5:log:186', 'hash': '0x6343badf931f554f714d3e1ca56076a9650a99878feae45dea33d14db62a27f5', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'value': 1252.1448477172103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43e10020d9dfe9626d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:33.000Z'}}, {'blockNum': '0xadc844', 'uniqueId': '0x7583c58a55deec361e67dafa1d41cd4dd20adde184161244f5847d0f9eaa3f74:log:281', 'hash': '0x7583c58a55deec361e67dafa1d41cd4dd20adde184161244f5847d0f9eaa3f74', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x7613486b70026dcf33dc9c7998c57eb0746111aa', 'value': 622.9081478932818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21c4964c333b8c04c6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:03:06.000Z'}}, {'blockNum': '0xadc845', 'uniqueId': '0xce57b456300cc38453060fc079fae9b5567c971caa36cd3c00b40e518af5c1bd:log:143', 'hash': '0xce57b456300cc38453060fc079fae9b5567c971caa36cd3c00b40e518af5c1bd', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0x82a2ee453f0435978488a9a35d7a923e0c2b3831', 'value': 12792.461861400954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b57b123d939033c312', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:03:34.000Z'}}, {'blockNum': '0xadc845', 'uniqueId': '0x323c62e0688d71d04b57e40ab0eb3f6bb13a51619f42d259d907001eb1326291:log:148', 'hash': '0x323c62e0688d71d04b57e40ab0eb3f6bb13a51619f42d259d907001eb1326291', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 6716.219561661776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016c16451b466befc751', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:03:34.000Z'}}, {'blockNum': '0xadc846', 'uniqueId': '0x761dcc7a8a4474536361e9eb623eef050fb84f47cee9e94658e7d1b683d0cf37:log:103', 'hash': '0x761dcc7a8a4474536361e9eb623eef050fb84f47cee9e94658e7d1b683d0cf37', 'from': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'to': '0x08bb919869aa4d40528c4c2c521096e35846b44e', 'value': 1252.1448477172103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43e10020d9dfe9626d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:03.000Z'}}, {'blockNum': '0xadc849', 'uniqueId': '0xcace13915a1198a15829ee4196745498f4070af9a3cdc5987f592e6eb251d1a6:log:9', 'hash': '0xcace13915a1198a15829ee4196745498f4070af9a3cdc5987f592e6eb251d1a6', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'value': 1633.0233133062934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x5886c04352e10d1e89', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:24.000Z'}}, {'blockNum': '0xadc849', 'uniqueId': '0xc868538b6172ecb1163477b1a3be07661489dd7ccda32bb143a7cd72dd569564:log:88', 'hash': '0xc868538b6172ecb1163477b1a3be07661489dd7ccda32bb143a7cd72dd569564', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x08bf8d6fa77f7bc937e62dcb7a5d1201890c48fa', 'value': 9261.426267874835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01f6101bc97e273fa362', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:24.000Z'}}, {'blockNum': '0xadc849', 'uniqueId': '0xc40e62d017b2255280bde3c6d4465dc025b408d6aa323ec5bf80a6f45df5e01f:log:93', 'hash': '0xc40e62d017b2255280bde3c6d4465dc025b408d6aa323ec5bf80a6f45df5e01f', 'from': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1633.0233133062934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x5886c04352e10d1e89', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:24.000Z'}}, {'blockNum': '0xadc84a', 'uniqueId': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1:log:200', 'hash': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1', 'from': '0x6e352003c12f491f56c11459cd20596d3866b321', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 226.30066976086863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0c448d7c27b98eaa93', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:05:12.000Z'}}, {'blockNum': '0xadc84a', 'uniqueId': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1:log:202', 'hash': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 226.30041375353835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0c448c93515f938000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:05:12.000Z'}}, {'blockNum': '0xadc84a', 'uniqueId': '0x974f6cb002c34cfee0a5ed83d037f9ff27371ec70f30fdc5f8badc09b383a127:log:273', 'hash': '0x974f6cb002c34cfee0a5ed83d037f9ff27371ec70f30fdc5f8badc09b383a127', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xe0f8d1c45b8f180000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:05:12.000Z'}}, {'blockNum': '0xadc84e', 'uniqueId': '0x14e1881c3aa8f0b57157951da42417d9d3b5999dab90634559f0d527aa4cc52d:log:219', 'hash': '0x14e1881c3aa8f0b57157951da42417d9d3b5999dab90634559f0d527aa4cc52d', 'from': '0x22ab60db2853bbe799ddaa8bc11eeb5c944025ba', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 105.40010658971966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x05b6b86682788c66e5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:03.000Z'}}, {'blockNum': '0xadc84e', 'uniqueId': '0x866f5efe3e2e3b54be7a0e3e1f616576c7c83d4f07993b1ea2ad0fabe5471060:log:338', 'hash': '0x866f5efe3e2e3b54be7a0e3e1f616576c7c83d4f07993b1ea2ad0fabe5471060', 'from': '0x7613486b70026dcf33dc9c7998c57eb0746111aa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 622.9081478932818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21c4964c333b8c04c6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:03.000Z'}}, {'blockNum': '0xadc850', 'uniqueId': '0x71037cce6121c5c54b85453417bc2dac0c8e4ddf3f9377be44c5db054b49614b:log:35', 'hash': '0x71037cce6121c5c54b85453417bc2dac0c8e4ddf3f9377be44c5db054b49614b', 'from': '0x08bf8d6fa77f7bc937e62dcb7a5d1201890c48fa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 9261.426267874835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01f6101bc97e273fa362', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:44.000Z'}}, {'blockNum': '0xadc850', 'uniqueId': '0xcd7ffd05f167f338573df041ded8e01071297b6e52f25e872c4d11ff1b8a0182:log:120', 'hash': '0xcd7ffd05f167f338573df041ded8e01071297b6e52f25e872c4d11ff1b8a0182', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x714870e30c5ab75645e1c13318f318860ed48692', 'value': 6898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0175f0faf4d464880000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:44.000Z'}}, {'blockNum': '0xadc850', 'uniqueId': '0xa8dad3e586bc984b62e2ebcea94a7a0d314c405f1b23fd3b76d62006bda6ccd3:log:122', 'hash': '0xa8dad3e586bc984b62e2ebcea94a7a0d314c405f1b23fd3b76d62006bda6ccd3', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x89fd69fb01792c6127ec440509f491a6c364150f', 'value': 6544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0162c03e5066ec400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:44.000Z'}}, {'blockNum': '0xadc85f', 'uniqueId': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5:log:266', 'hash': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5', 'from': '0x7354b71dfa14d0bbc66fd447c5fea71f63379e19', 'to': '0x4d4d05e1205e3a412ae1469c99e0d954113aa76f', 'value': 0.3379930908752916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x04b0caece62877d0', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:10:56.000Z'}}, {'blockNum': '0xadc85f', 'uniqueId': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5:log:270', 'hash': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5', 'from': '0x7354b71dfa14d0bbc66fd447c5fea71f63379e19', 'to': '0x7354b71dfa14d0bbc66fd447c5fea71f63379e19', 'value': 221.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0bff394cf9d1d28000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:10:56.000Z'}}, {'blockNum': '0xadc861', 'uniqueId': '0x0cabbe70908f952906acff1571249a719ad1cad2ef350ad6fcd0bdbe34051039:log:123', 'hash': '0x0cabbe70908f952906acff1571249a719ad1cad2ef350ad6fcd0bdbe34051039', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 5842.838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x013cbdaa7c5149cf0000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:11:34.000Z'}}, {'blockNum': '0xadc861', 'uniqueId': '0xe811a65cae3072596e6723ecba82bf5ac3f6e1f60fb1e35ec5cdad847d4c9141:log:141', 'hash': '0xe811a65cae3072596e6723ecba82bf5ac3f6e1f60fb1e35ec5cdad847d4c9141', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:11:34.000Z'}}, {'blockNum': '0xadc864', 'uniqueId': '0x7d6f4873799adebd251626e1efccc8ae06a5f2bb247716ea5032b6e90f8bec71:log:147', 'hash': '0x7d6f4873799adebd251626e1efccc8ae06a5f2bb247716ea5032b6e90f8bec71', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:12:35.000Z'}}, {'blockNum': '0xadc86a', 'uniqueId': '0x4591f257f59a42caa1a8a46fa0e5d52da8b7784508c6fe90f83b1ddb4fd6abe1:log:39', 'hash': '0x4591f257f59a42caa1a8a46fa0e5d52da8b7784508c6fe90f83b1ddb4fd6abe1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'value': 1241.78144771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43512def73c0dbac00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:14:36.000Z'}}, {'blockNum': '0xadc86a', 'uniqueId': '0xee7af7522004ea372c3cb69be96eb6f9be1b1989897cb095f708987a264b2974:log:42', 'hash': '0xee7af7522004ea372c3cb69be96eb6f9be1b1989897cb095f708987a264b2974', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 12786.7057354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b52b305f79cef31000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:14:36.000Z'}}, {'blockNum': '0xadc86b', 'uniqueId': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54:log:81', 'hash': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 5713.383611233288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0135b9201b9ceaa2d9e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:05.000Z'}}, {'blockNum': '0xadc86b', 'uniqueId': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54:log:85', 'hash': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x41d500e248616056995ab8176a9ede1945e90101', 'value': 5713.383611233288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0135b9201b9ceaa2d9e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:05.000Z'}}, {'blockNum': '0xadc86c', 'uniqueId': '0x1bc0704733a3947cf86c152acddc95b6c836f878cb54a410fe59e0f5fe9d9c16:log:130', 'hash': '0x1bc0704733a3947cf86c152acddc95b6c836f878cb54a410fe59e0f5fe9d9c16', 'from': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1241.78144771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43512def73c0dbac00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:19.000Z'}}, {'blockNum': '0xadc86d', 'uniqueId': '0x217dcdf405ddbec92176011ec78a5da99b821941ddc2e7cb56fc52e66ac9048e:log:292', 'hash': '0x217dcdf405ddbec92176011ec78a5da99b821941ddc2e7cb56fc52e66ac9048e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x613158bd6d63e35b991097f705a13b165d083e00', 'value': 120.23403667924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0684951b5521f53aa6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:31.000Z'}}, {'blockNum': '0xadc873', 'uniqueId': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0:log:246', 'hash': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:16:49.000Z'}}, {'blockNum': '0xadc873', 'uniqueId': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0:log:249', 'hash': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:16:49.000Z'}}, {'blockNum': '0xadc873', 'uniqueId': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0:log:251', 'hash': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:16:49.000Z'}}, {'blockNum': '0xadc874', 'uniqueId': '0xf3da35642a7c5eb2b5702e285e47a96ec746eefa149dfee29b91938e116e32c9:log:53', 'hash': '0xf3da35642a7c5eb2b5702e285e47a96ec746eefa149dfee29b91938e116e32c9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 19969.024539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x043a85e2a1cb4988b000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:02.000Z'}}, {'blockNum': '0xadc876', 'uniqueId': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f:log:312', 'hash': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:36.000Z'}}, {'blockNum': '0xadc876', 'uniqueId': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f:log:315', 'hash': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:36.000Z'}}, {'blockNum': '0xadc876', 'uniqueId': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f:log:317', 'hash': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:36.000Z'}}, {'blockNum': '0xadc877', 'uniqueId': '0x038e5de22f1497b2d9f968b981152770a42ccc2475151e433e1f936505bd8fc0:log:251', 'hash': '0x038e5de22f1497b2d9f968b981152770a42ccc2475151e433e1f936505bd8fc0', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0x82a2ee453f0435978488a9a35d7a923e0c2b3831', 'value': 12786.7057354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b52b305f79cef31000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:43.000Z'}}, {'blockNum': '0xadc87a', 'uniqueId': '0x8e27afee198a18150db05a7d5903c6773f34ba533bc882ff40f55fa9d61fc5f1:log:1', 'hash': '0x8e27afee198a18150db05a7d5903c6773f34ba533bc882ff40f55fa9d61fc5f1', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 19969.024539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x043a85e2a1cb4988b000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:18:33.000Z'}}, {'blockNum': '0xadc87a', 'uniqueId': '0x1c58639c1e47b48508311f240a5a623be1e6b586528fb176f0a2de9971876c9f:log:274', 'hash': '0x1c58639c1e47b48508311f240a5a623be1e6b586528fb176f0a2de9971876c9f', 'from': '0x41d500e248616056995ab8176a9ede1945e90101', 'to': '0xcd9ae85c8db98bd0298452fc7279b5ce5662e840', 'value': 5713.383611233288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0135b9201b9ceaa2d9e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:18:33.000Z'}}, {'blockNum': '0xadc87e', 'uniqueId': '0x88fa328125931b3da1d85eef3242dd97dea5c72a5123c6ae39dce3349a01bca1:log:81', 'hash': '0x88fa328125931b3da1d85eef3242dd97dea5c72a5123c6ae39dce3349a01bca1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'value': 1188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4066cfd9b4cc100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:19:10.000Z'}}, {'blockNum': '0xadc87f', 'uniqueId': '0xeba085ef685d6d28fa55d430ea599daff49418edb53cd73e03282894ff919aa3:log:162', 'hash': '0xeba085ef685d6d28fa55d430ea599daff49418edb53cd73e03282894ff919aa3', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 5293.963111717925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x011efc7f297d208856b7', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:19:30.000Z'}}, {'blockNum': '0xadc883', 'uniqueId': '0x49b241c0fe739025aef5c34d2d7701376c90ddb63619e9bad614a239785680ca:log:18', 'hash': '0x49b241c0fe739025aef5c34d2d7701376c90ddb63619e9bad614a239785680ca', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'value': 15820.92983866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0359a781d961eb69a800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:20:07.000Z'}}, {'blockNum': '0xadc883', 'uniqueId': '0xcdf446d4feafc9fc0b79cc419dbe522755b62bfb01647be286718136bd3b9512:log:20', 'hash': '0xcdf446d4feafc9fc0b79cc419dbe522755b62bfb01647be286718136bd3b9512', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'value': 3496.0621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xbd859ba504e62d4000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:20:07.000Z'}}, {'blockNum': '0xadc889', 'uniqueId': '0xd01569d41743dc71b357a42469cc10a9d402742943c8f23911a5187174faa097:log:191', 'hash': '0xd01569d41743dc71b357a42469cc10a9d402742943c8f23911a5187174faa097', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xf71a09ffad24f1a263fbc0a6def8f0766f327de4', 'value': 445.387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1824fc7cbd10e78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:22:07.000Z'}}, {'blockNum': '0xadc893', 'uniqueId': '0x3f18f6a51c91726723efc1450db4a009600549888de8871bf3c90b698ceab22a:log:4', 'hash': '0x3f18f6a51c91726723efc1450db4a009600549888de8871bf3c90b698ceab22a', 'from': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1188.513699197655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x406df0e067a1aeb18b', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:23:38.000Z'}}, {'blockNum': '0xadc89a', 'uniqueId': '0x33b2e04c9554d803223163c4b0978eb6cc3c9eac959b5fb17ce96381593af65c:log:50', 'hash': '0x33b2e04c9554d803223163c4b0978eb6cc3c9eac959b5fb17ce96381593af65c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x351e17de911fdb2c0fb4bd6950857e0d8e0a84be', 'value': 3961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd6b9eae1b8fa440000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:25:45.000Z'}}, {'blockNum': '0xadc8ac', 'uniqueId': '0x7533ff03b162af99abe07e7ca5b757a7f8f97157a40306cc1d3a80fe05df68c9:log:169', 'hash': '0x7533ff03b162af99abe07e7ca5b757a7f8f97157a40306cc1d3a80fe05df68c9', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xccb586177f8e2461a81cacdb8b793b2e265df169', 'value': 69.02163302460254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03bdde198b28cded5f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:29:10.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0xbb503edf995aa99ff85b82c01b4043a4b1863f5d62d9fb7e1a532fb8124d202a:log:112', 'hash': '0xbb503edf995aa99ff85b82c01b4043a4b1863f5d62d9fb7e1a532fb8124d202a', 'from': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18374.00662994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03e40e90b04565ed0800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0x51bc8ca970650e3547c169f890045db2d5b0f17ddfa3e4e476e9022934160121:log:115', 'hash': '0x51bc8ca970650e3547c169f890045db2d5b0f17ddfa3e4e476e9022934160121', 'from': '0x82a2ee453f0435978488a9a35d7a923e0c2b3831', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25579.167596800955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x056aa6429d0d5f26d312', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0x4654a40269ff3062debef3f804195105b0f5b968137479c7d3d6f949a04736aa:log:118', 'hash': '0x4654a40269ff3062debef3f804195105b0f5b968137479c7d3d6f949a04736aa', 'from': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19982.1726777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x043b3c5a3447a899a800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0x142bcb10a60d4c229fbe00a154ef2510d1d1af4e50337f6fbdd7f9d5de6da0dc:log:121', 'hash': '0x142bcb10a60d4c229fbe00a154ef2510d1d1af4e50337f6fbdd7f9d5de6da0dc', 'from': '0x714870e30c5ab75645e1c13318f318860ed48692', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0175f0faf4d464880000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8c9', 'uniqueId': '0xbe78d46364642024794a74157b1315ba755a89abd457b4f1e57f3c588e3ce561:log:134', 'hash': '0xbe78d46364642024794a74157b1315ba755a89abd457b4f1e57f3c588e3ce561', 'from': '0x351e17de911fdb2c0fb4bd6950857e0d8e0a84be', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd6b9eae1b8fa440000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:36:16.000Z'}}, {'blockNum': '0xadc8d3', 'uniqueId': '0x52048d7c4a181b4ba0e1492e627f52ad83c55432e7a1feb8ccbd91b249e16234:log:323', 'hash': '0x52048d7c4a181b4ba0e1492e627f52ad83c55432e7a1feb8ccbd91b249e16234', 'from': '0x613158bd6d63e35b991097f705a13b165d083e00', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 120.23403667924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0684951b5521f53aa6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:37:50.000Z'}}, {'blockNum': '0xadc8d4', 'uniqueId': '0xfeb86c9b070cedde2f90b56ab3e88e3e5c034241880f853e6af28d3c374cf51a:log:32', 'hash': '0xfeb86c9b070cedde2f90b56ab3e88e3e5c034241880f853e6af28d3c374cf51a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 13955.019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02f480cae3a3fae78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:38:14.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:233', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 13955.019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02f480cae3a3fae78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:236', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 13955.019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02f480cae3a3fae78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:238', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 13815.46881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02ecf025053442a2a000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:247', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x6e352003c12f491f56c11459cd20596d3866b321', 'value': 139.55019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0790a5de6fb844e000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8e1', 'uniqueId': '0xdf4983862263ab66de4b27d9134fae6e353f145b9d1123a04fc4949f098c8fd2:log:1', 'hash': '0xdf4983862263ab66de4b27d9134fae6e353f145b9d1123a04fc4949f098c8fd2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 14466.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03103b1d4da935e78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:40:34.000Z'}}, {'blockNum': '0xadc8ed', 'uniqueId': '0x2ba9335998dd7fc32e8f95527107f1487808bf67a7cd93501f6908cef1abaf24:log:34', 'hash': '0x2ba9335998dd7fc32e8f95527107f1487808bf67a7cd93501f6908cef1abaf24', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x444a7786ea391eac153dd6dd727c8b69d5168f88', 'value': 8320.04961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01c307e20ec86d4ea000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:42:26.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0xf6bdc0be8468ee3c25300f2d0618b8daab0d8e3f3d1f2c7650e1d19ca9ddda07:log:127', 'hash': '0xf6bdc0be8468ee3c25300f2d0618b8daab0d8e3f3d1f2c7650e1d19ca9ddda07', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 14466.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03103b1d4da935e78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755:log:254', 'hash': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755', 'from': '0xb710659faa700169f6eeef3645a1b369da6ea802', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 2966.9730652860117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa0d705cb2e3c95fe21', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755:log:257', 'hash': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x10908c875d865c66f271f5d3949848971c9595c9', 'value': 2966.9730652860117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa0d705cb2e3c95fe21', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755:log:260', 'hash': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755', 'from': '0x10908c875d865c66f271f5d3949848971c9595c9', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2966.9730652860117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa0d705cb2e3c95fe21', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8f9', 'uniqueId': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923:log:128', 'hash': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923', 'from': '0xb710659faa700169f6eeef3645a1b369da6ea802', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:20.000Z'}}, {'blockNum': '0xadc8f9', 'uniqueId': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923:log:131', 'hash': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x10908c875d865c66f271f5d3949848971c9595c9', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:20.000Z'}}, {'blockNum': '0xadc8f9', 'uniqueId': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923:log:134', 'hash': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923', 'from': '0x10908c875d865c66f271f5d3949848971c9595c9', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:20.000Z'}}, {'blockNum': '0xadc8fb', 'uniqueId': '0x5a0b8df205fabdd3c775d935c649aeb28a79d01a6a3b61d34a481ccdf818e494:log:6', 'hash': '0x5a0b8df205fabdd3c775d935c649aeb28a79d01a6a3b61d34a481ccdf818e494', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x94edc4a3065a7a42db6c57614e513992b2eb3ee4', 'value': 2590.882202259523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8c73b6a3df70a6b0a0', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:30.000Z'}}, {'blockNum': '0xadc8fb', 'uniqueId': '0x9b8aab86fba1497d2a180d21dfddbe312cf3d181d72e7e1a868b5d964975866b:log:62', 'hash': '0x9b8aab86fba1497d2a180d21dfddbe312cf3d181d72e7e1a868b5d964975866b', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 4097.257184042096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xde1cdda4aff66c5e0c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:30.000Z'}}, {'blockNum': '0xadc8fb', 'uniqueId': '0x45cf5103aec773128ad46320f65057497d0e6cec505253bcd102745af8db0821:log:66', 'hash': '0x45cf5103aec773128ad46320f65057497d0e6cec505253bcd102745af8db0821', 'from': '0x94edc4a3065a7a42db6c57614e513992b2eb3ee4', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2590.882202259523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8c73b6a3df70a6b0a0', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:30.000Z'}}, {'blockNum': '0xadc8ff', 'uniqueId': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649:log:169', 'hash': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649', 'from': '0xb710659faa700169f6eeef3645a1b369da6ea802', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:47:46.000Z'}}, {'blockNum': '0xadc8ff', 'uniqueId': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649:log:172', 'hash': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x10908c875d865c66f271f5d3949848971c9595c9', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:47:46.000Z'}}, {'blockNum': '0xadc8ff', 'uniqueId': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649:log:175', 'hash': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649', 'from': '0x10908c875d865c66f271f5d3949848971c9595c9', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:47:46.000Z'}}, {'blockNum': '0xadc906', 'uniqueId': '0x20b580c341ae2afb6f1e426133ac4352b37bf063436d35efe24f081003fb9fad:log:264', 'hash': '0x20b580c341ae2afb6f1e426133ac4352b37bf063436d35efe24f081003fb9fad', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x444a7786ea391eac153dd6dd727c8b69d5168f88', 'value': 2584.5013168989644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8c1b292e71dc0e9fc4', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:48:39.000Z'}}, {'blockNum': '0xadc90e', 'uniqueId': '0x354ef5f88e972fcd2fbc763d5093f8dda8bff24be655d1fbb74d1d058cb38bd6:log:236', 'hash': '0x354ef5f88e972fcd2fbc763d5093f8dda8bff24be655d1fbb74d1d058cb38bd6', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x22ab60db2853bbe799ddaa8bc11eeb5c944025ba', 'value': 79.55241369375157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x045002f2c488fbb5e9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:50:34.000Z'}}, {'blockNum': '0xadc911', 'uniqueId': '0x27502b0ea509076a2d273d016f8c81fa36270ae4e666c03d9d21984d37843c6c:log:18', 'hash': '0x27502b0ea509076a2d273d016f8c81fa36270ae4e666c03d9d21984d37843c6c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 79912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x10ec09c7801407a00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:50:54.000Z'}}, {'blockNum': '0xadc97f', 'uniqueId': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431:log:248', 'hash': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 1467.5329875470197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4f8e1c84d9dbdece7c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T00:19:36.000Z'}}, {'blockNum': '0xadc97f', 'uniqueId': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431:log:252', 'hash': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1467.5329875470197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4f8e1c84d9dbdece7c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T00:19:36.000Z'}}, {'blockNum': '0xadca52', 'uniqueId': '0x9f286c5e1675c8d6664674abf56cbb5d88195642604baffe57b6a57316d46855:log:43', 'hash': '0x9f286c5e1675c8d6664674abf56cbb5d88195642604baffe57b6a57316d46855', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xe0f8d1c45b8f180000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:01:32.000Z'}}, {'blockNum': '0xadca6f', 'uniqueId': '0xb3db3d78bd0afd54ec6a6afc30c763bc591a0c8d6fc59344be5117d45c5035c9:log:58', 'hash': '0xb3db3d78bd0afd54ec6a6afc30c763bc591a0c8d6fc59344be5117d45c5035c9', 'from': '0xccb586177f8e2461a81cacdb8b793b2e265df169', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 69.02163302460254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03bdde198b28cded5f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:06:03.000Z'}}, {'blockNum': '0xadca76', 'uniqueId': '0xdba1f1aad24d90d71bfdeb59369e8d6a80824c4fdf8303b851bdf4fca1ae2000:log:229', 'hash': '0xdba1f1aad24d90d71bfdeb59369e8d6a80824c4fdf8303b851bdf4fca1ae2000', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x17b77f7f76ccb8cc55f7db8f4560e45a830e92cf', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x57d20428df44d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:08:03.000Z'}}, {'blockNum': '0xadcafb', 'uniqueId': '0x051a23c488312fed753408799b6ada9800a057a2ecbbd91c956554c39857c790:log:104', 'hash': '0x051a23c488312fed753408799b6ada9800a057a2ecbbd91c956554c39857c790', 'from': '0x9a376c8e244cdbb07eb7856da3cac7f5794b58fa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:41:59.000Z'}}, {'blockNum': '0xadcafd', 'uniqueId': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e:log:107', 'hash': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 167.77163720140814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x09184c972477a48444', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:42:15.000Z'}}, {'blockNum': '0xadcafd', 'uniqueId': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e:log:114', 'hash': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0x6e352003c12f491f56c11459cd20596d3866b321', 'value': 167.77163652622173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x09184c968743658000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:42:15.000Z'}}, {'blockNum': '0xadcb4e', 'uniqueId': '0x375323b2efd21d5dfcd15f6eb18bd8e60a05eb258202bb34125608f06bc9ade9:log:52', 'hash': '0x375323b2efd21d5dfcd15f6eb18bd8e60a05eb258202bb34125608f06bc9ade9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x607e0591d76eb0ba42f3510e57a82cc7dada6763', 'value': 586.48192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1fcb1256ecf5100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:57:24.000Z'}}, {'blockNum': '0xadcb60', 'uniqueId': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be:log:270', 'hash': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xca9af520706a57cecde6f596852eabb5a0e6bb0e', 'value': 603.9461671500414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd6fcf2dd4e90c54', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:01:42.000Z'}}, {'blockNum': '0xadcb60', 'uniqueId': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be:log:304', 'hash': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be', 'from': '0xca9af520706a57cecde6f596852eabb5a0e6bb0e', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 603.9461671500414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd6fcf2dd4e90c54', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:01:42.000Z'}}, {'blockNum': '0xadcb60', 'uniqueId': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be:log:308', 'hash': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'value': 603.9461671500414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd6fcf2dd4e90c54', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:01:42.000Z'}}, {'blockNum': '0xadcba5', 'uniqueId': '0x0b5f65f3e8b6012a8a77422ce9f670f02b89271638c90a21464f25c8c13fa8f6:log:30', 'hash': '0x0b5f65f3e8b6012a8a77422ce9f670f02b89271638c90a21464f25c8c13fa8f6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x306d55cb0b6b115fb9e47e638e137b6b2c9f14f4', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:14:21.000Z'}}, {'blockNum': '0xadcbc3', 'uniqueId': '0x0831ea9bb4758cbf4a98a546b94bececc283ca8f87ea7b4c8f2a4eaf950bb670:log:121', 'hash': '0x0831ea9bb4758cbf4a98a546b94bececc283ca8f87ea7b4c8f2a4eaf950bb670', 'from': '0x306d55cb0b6b115fb9e47e638e137b6b2c9f14f4', 'to': '0x444a5e0d2515f322e7278f6ee95cb34d8de98f09', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:20:19.000Z'}}, {'blockNum': '0xadcbd2', 'uniqueId': '0xa279f408d243b29ff0e376c6ee8c611e0620d0435b6de7c52bc222156ea1ea6f:log:145', 'hash': '0xa279f408d243b29ff0e376c6ee8c611e0620d0435b6de7c52bc222156ea1ea6f', 'from': '0x444a5e0d2515f322e7278f6ee95cb34d8de98f09', 'to': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'value': 1376.76394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4aa2701505a3364000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:24:09.000Z'}}, {'blockNum': '0xadcc68', 'uniqueId': '0xe8b8768ed4df2772110527c717ccff75c9dff6a69df95f4f90d00d8982af39d2:log:168', 'hash': '0xe8b8768ed4df2772110527c717ccff75c9dff6a69df95f4f90d00d8982af39d2', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 15473.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d831d47fcbc30000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:58:19.000Z'}}, {'blockNum': '0xadcc6b', 'uniqueId': '0xdc2fd943fe1be2bcb0d6961b6e110a030a4f7eac95bcb4a16fb7e7dd6cc7c673:log:8', 'hash': '0xdc2fd943fe1be2bcb0d6961b6e110a030a4f7eac95bcb4a16fb7e7dd6cc7c673', 'from': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1376.76394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4aa2701505a3364000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:58:31.000Z'}}, {'blockNum': '0xadcff1', 'uniqueId': '0x1064dc9e3e4bde249db0d32ed26f842f7f6722137f2cd167a423bd12aca106ea:log:139', 'hash': '0x1064dc9e3e4bde249db0d32ed26f842f7f6722137f2cd167a423bd12aca106ea', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe6ebea9bb68b98196af4ad072bfb8436c566fe1a', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01bc16d674ec800000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:17:04.000Z'}}, {'blockNum': '0xadd055', 'uniqueId': '0x3a7e9c395873093953edaf5a350d93d740d0a47e1149188e2fd7e2271e06b905:log:98', 'hash': '0x3a7e9c395873093953edaf5a350d93d740d0a47e1149188e2fd7e2271e06b905', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0xf63a7b334cc687700d8bc5031ba52d26bd77411a', 'value': 821.675660071205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2c8b0a5b6918cb47ed', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:39:56.000Z'}}, {'blockNum': '0xadd057', 'uniqueId': '0x58a3c36793b8917dc4998e294d91168dc2f819120ef039751e133119f6f84914:log:118', 'hash': '0x58a3c36793b8917dc4998e294d91168dc2f819120ef039751e133119f6f84914', 'from': '0x607e0591d76eb0ba42f3510e57a82cc7dada6763', 'to': '0x137b4b67380f0f14321c413278fc2393c822cb55', 'value': 586.48192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1fcb1256ecf5100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:40:20.000Z'}}, {'blockNum': '0xadd05a', 'uniqueId': '0xcf48e56dbe0ed6222660febd82b6375e78da6de82aa4b773092bc8edbfffefc9:log:175', 'hash': '0xcf48e56dbe0ed6222660febd82b6375e78da6de82aa4b773092bc8edbfffefc9', 'from': '0xf63a7b334cc687700d8bc5031ba52d26bd77411a', 'to': '0x757f6a0e982969a69d99e38cdce55c2333b30654', 'value': 821.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2c8af63f9b13370000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:41:00.000Z'}}, {'blockNum': '0xadd05d', 'uniqueId': '0xd7c5c69175d21c5bc40e507c2917bdd4f11e666d67852609a4981075c3402c76:log:30', 'hash': '0xd7c5c69175d21c5bc40e507c2917bdd4f11e666d67852609a4981075c3402c76', 'from': '0x757f6a0e982969a69d99e38cdce55c2333b30654', 'to': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'value': 821.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2c8af63f9b13370000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:41:24.000Z'}}, {'blockNum': '0xadd07a', 'uniqueId': '0xf20db87fd893aecbc17ee704414b983d19f86cf6a969e4a511c38111b7d910d9:log:203', 'hash': '0xf20db87fd893aecbc17ee704414b983d19f86cf6a969e4a511c38111b7d910d9', 'from': '0xd495826cabb093e7dca498d1a98e4dc55e0c29db', 'to': '0xcbb3f70eaa5554df93c960a593a2b5fc42b69c7a', 'value': 95.08196721311475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x052787016a1b0b0432', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:46:53.000Z'}}, {'blockNum': '0xadd0bd', 'uniqueId': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c:log:77', 'hash': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0xd32b219fb28454484fb86d22a4c13a197195fc73', 'value': 2.1716087440667198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1e231aa5a53a9fb8', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:59:32.000Z'}}, {'blockNum': '0xadd0bd', 'uniqueId': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c:log:82', 'hash': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 1520.4461795407888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x526c6df09f8c82b9b2', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:59:32.000Z'}}, {'blockNum': '0xadd0bd', 'uniqueId': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c:log:88', 'hash': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0xd32b219fb28454484fb86d22a4c13a197195fc73', 'value': 1520.4461795407888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x526c6df09f8c82b9b2', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:59:32.000Z'}}, {'blockNum': '0xadd0ee', 'uniqueId': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090:log:158', 'hash': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 20.020028473701352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0115d56dd3802cc578', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:12:19.000Z'}}, {'blockNum': '0xadd0ee', 'uniqueId': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090:log:162', 'hash': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x2a24a7a4beb9e6d0431c9bc1800045b8fc27a966', 'value': 0.02002002847370135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x47201c1d9173e8', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:12:19.000Z'}}, {'blockNum': '0xadd0ee', 'uniqueId': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090:log:165', 'hash': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x4d2cc143027f42da5905bd106f3db8e0f5bc076f', 'value': 20.000008445227653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e4db7629b5190', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:12:19.000Z'}}, {'blockNum': '0xadd0f2', 'uniqueId': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691:log:34', 'hash': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691', 'from': '0x4d2cc143027f42da5905bd106f3db8e0f5bc076f', 'to': '0x99dec4a119f5e2b45808b04a3efa3f88cff62494', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:13:27.000Z'}}, {'blockNum': '0xadd0f2', 'uniqueId': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691:log:37', 'hash': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691', 'from': '0x99dec4a119f5e2b45808b04a3efa3f88cff62494', 'to': '0x0000000000000000000000000000000000000000', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:13:27.000Z'}}, {'blockNum': '0xadd16a', 'uniqueId': '0xa6283a572a13d57851ce83b8b618b9d616b26d91395a80e58d724d38548b998d:log:162', 'hash': '0xa6283a572a13d57851ce83b8b618b9d616b26d91395a80e58d724d38548b998d', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xe173e352cebd8c23e04a6fe7ba670bb22cc61add', 'value': 8.39344262295082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x747b7f985f9b4758', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:40:21.000Z'}}, {'blockNum': '0xadd1a5', 'uniqueId': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03:log:148', 'hash': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 1.0933046720471544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2c32ce80a5449a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:54:07.000Z'}}, {'blockNum': '0xadd1a5', 'uniqueId': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03:log:150', 'hash': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:54:07.000Z'}}, {'blockNum': '0xadd1a5', 'uniqueId': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03:log:152', 'hash': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0x75559167905e8a1471c42d22b8cd1892e8df5634', 'value': 1.0933046720471544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2c32ce80a5449a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:54:07.000Z'}}, {'blockNum': '0xadd1b6', 'uniqueId': '0x003ea04540e8e78a4bd604e8105e618469fb89d0d55faa2fab5f82431ad9f2a2:log:247', 'hash': '0x003ea04540e8e78a4bd604e8105e618469fb89d0d55faa2fab5f82431ad9f2a2', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0x841a465f81d2b77b6952a11c893404591976a93d', 'value': 45.90163934426229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x027d0361c94ad92e2a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:56:48.000Z'}}, {'blockNum': '0xadd21e', 'uniqueId': '0x850f214d9fc994af86a26942962c22f487e504a4bc9dd9ea68738d62d1ba7cce:log:6', 'hash': '0x850f214d9fc994af86a26942962c22f487e504a4bc9dd9ea68738d62d1ba7cce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x66774e6456b06e0f9c0ebc6647c3bd83ab41e991', 'value': 988.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x359d21d40b59481c00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T08:19:15.000Z'}}, {'blockNum': '0xadd26a', 'uniqueId': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e:log:95', 'hash': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 430.35206373961114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x175455a9de43c9865d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T08:35:59.000Z'}}, {'blockNum': '0xadd26a', 'uniqueId': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e:log:99', 'hash': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 430.35206373961114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x175455a9de43c9865d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T08:35:59.000Z'}}, {'blockNum': '0xadd379', 'uniqueId': '0xff5dfedb86562ea16090c3d7b894ce138b70208945dff578ae0f9ef28558b568:log:227', 'hash': '0xff5dfedb86562ea16090c3d7b894ce138b70208945dff578ae0f9ef28558b568', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x89fd69fb01792c6127ec440509f491a6c364150f', 'value': 6389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x015a592fb1a092b40000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T09:37:21.000Z'}}, {'blockNum': '0xadd3c7', 'uniqueId': '0x11b7c57a68ae8ce1a54d63668dbe2ef49d979199aed13535317b17ccbd8bcd5c:log:173', 'hash': '0x11b7c57a68ae8ce1a54d63668dbe2ef49d979199aed13535317b17ccbd8bcd5c', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x5c92f30bf7d3ae7051753600d4b1203f6b78efa7', 'value': 233.15705400710928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca3b4414cea50eb3d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T09:55:16.000Z'}}, {'blockNum': '0xadd3d0', 'uniqueId': '0x2b6f09a3f483a7c3c4fdcdd4886ed9592a81e838fca784383e520935aac235f5:log:7', 'hash': '0x2b6f09a3f483a7c3c4fdcdd4886ed9592a81e838fca784383e520935aac235f5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x919d8ce0dba4e3aede19dcd019cecff9e640f588', 'value': 997.9947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x3619f56c0c2688c000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T09:57:56.000Z'}}]}}
Number of returned transfers:  214
Answer is complete
 
symbol             DLT
group              BPS
date        2020-12-26
hour             21:00
exchange       binance
Name: 314, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2020-12-26 21:00:00 2020-12-26 09:00:00 2020-12-27 09:00:00
Unix timestamps:  1608969600.0 1609056000.0
Hex Block Numbers:  0xafe799 0xb00113
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xafebb4', 'uniqueId': '0x741b9990d1867021bbcc3c19240b5d60132f796bed66d68b984b4b464cd9b4e2:log:0', 'hash': '0x741b9990d1867021bbcc3c19240b5d60132f796bed66d68b984b4b464cd9b4e2', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x5ca51af7787d547b23328ca30eb4dae4e41bc4a6', 'value': 1820.53539418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x62b100ff6594a62800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T11:47:40.000Z'}}, {'blockNum': '0xaff418', 'uniqueId': '0xd48a3fc8005188276011e9f88f3a96c0a9f2b99f01747179971f53fc1121eaa2:log:52', 'hash': '0xd48a3fc8005188276011e9f88f3a96c0a9f2b99f01747179971f53fc1121eaa2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x39e1fc43f1f85dd5442d4a2d2f25ef6704cf96af', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T19:45:32.000Z'}}, {'blockNum': '0xaff43c', 'uniqueId': '0x76d7feeb0d1a14f247358f62d4ca57b740c6aae3faccd2b2e4d08ca101b175db:log:60', 'hash': '0x76d7feeb0d1a14f247358f62d4ca57b740c6aae3faccd2b2e4d08ca101b175db', 'from': '0x39e1fc43f1f85dd5442d4a2d2f25ef6704cf96af', 'to': '0x9ce7456ec06b1457c91bd4619a08dbe8adc926fd', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T19:53:55.000Z'}}, {'blockNum': '0xaff548', 'uniqueId': '0x046888b531880c0c9e8824a162337696a47b392f956fcebeeec563beb233815d:log:216', 'hash': '0x046888b531880c0c9e8824a162337696a47b392f956fcebeeec563beb233815d', 'from': '0xa5f09b4a58c8e84ee3250d3d5000747cac6589e2', 'to': '0x463f5d0c30cadc302ac8d6ce434f4a1c9dd27555', 'value': 4185.892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xe2eaebc431956a0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T20:54:35.000Z'}}, {'blockNum': '0xaff563', 'uniqueId': '0x8d583be9abe12e0fadc398caf325b0ff69a1853d3854580ef81dbb5f4664cc25:log:267', 'hash': '0x8d583be9abe12e0fadc398caf325b0ff69a1853d3854580ef81dbb5f4664cc25', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4694e135b556980000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:01:00.000Z'}}, {'blockNum': '0xaff569', 'uniqueId': '0x74f869ea56858c12e3cda06e6eadaaa2723186ca89e26a7e88eaf4182141797a:log:1', 'hash': '0x74f869ea56858c12e3cda06e6eadaaa2723186ca89e26a7e88eaf4182141797a', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 7648.83369837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x019ea4e41b68e52c1400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:02:54.000Z'}}, {'blockNum': '0xaff57c', 'uniqueId': '0xb6354259a92ffd86835c21ec919de0cf5974e5768ce0d2c08081d4f8c8ca96df:log:225', 'hash': '0xb6354259a92ffd86835c21ec919de0cf5974e5768ce0d2c08081d4f8c8ca96df', 'from': '0x2c529bfca95d8cce2c8fd87448115f0463c5d84c', 'to': '0xa9de49a9a3adb9d3964ef3e514d491fefb993873', 'value': 18010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x03d052f55aee31280000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:18.000Z'}}, {'blockNum': '0xaff57f', 'uniqueId': '0x2664195eb274f7f8cd8939b3928028c449e90d6ff6c078640805fa47c6b2542e:log:106', 'hash': '0x2664195eb274f7f8cd8939b3928028c449e90d6ff6c078640805fa47c6b2542e', 'from': '0x9ce7456ec06b1457c91bd4619a08dbe8adc926fd', 'to': '0x605e0ebb227fcacaa43b1480db3c0df8b044c10a', 'value': 12655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02ae07679aefb85c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:41.000Z'}}, {'blockNum': '0xaff580', 'uniqueId': '0x5aee95392cb6396a1f303a548cabd186b58c974831d98d0807cb64e18089bc06:log:8', 'hash': '0x5aee95392cb6396a1f303a548cabd186b58c974831d98d0807cb64e18089bc06', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x287e6d4dd4d57ede08b9353e13d51d9f7f1f95fa', 'value': 14380.459167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x030b90f5fd72ccc4f000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:58.000Z'}}, {'blockNum': '0xaff580', 'uniqueId': '0x4ef055bd7ee8548f9b09c7d3e73875e6299695ee4f4ffe5b3b436ffa9d6ab612:log:149', 'hash': '0x4ef055bd7ee8548f9b09c7d3e73875e6299695ee4f4ffe5b3b436ffa9d6ab612', 'from': '0x787c87ff468db69e29305a263f5315ef30a48cf7', 'to': '0xe431fda6e29b2d1b6ef5105dd01b8531a0b8c3fb', 'value': 1651.0324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5980ad644164a50000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:58.000Z'}}, {'blockNum': '0xaff589', 'uniqueId': '0xbdacda543704900db404424f997c0f8089b1139162b092dc20403c23f2c25a3e:log:244', 'hash': '0xbdacda543704900db404424f997c0f8089b1139162b092dc20403c23f2c25a3e', 'from': '0xdd701212f6fe99e550ae650a13990de34816ed7f', 'to': '0x1fc0fbafe0170a1afcbb546f7330e4c8fcc70dd5', 'value': 1310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4703e6eb5291b80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:09:05.000Z'}}, {'blockNum': '0xaff58a', 'uniqueId': '0xfd1c847b831e1a457620706997d6d795c7dabfc633b03075e1e0b4f4e9269d23:log:294', 'hash': '0xfd1c847b831e1a457620706997d6d795c7dabfc633b03075e1e0b4f4e9269d23', 'from': '0x1a19564d2358e6fe30ab78ead75c37b771973f2c', 'to': '0x7159ec883c7b9f5ee88241c4d5e203a2a9a38f4a', 'value': 2929.731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x9ed22f661eb1f38000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:09:26.000Z'}}, {'blockNum': '0xaff58c', 'uniqueId': '0x1971f858a1b1fca5136112906616fe4fa8cdee889aac21314fc95c91da280e06:log:198', 'hash': '0x1971f858a1b1fca5136112906616fe4fa8cdee889aac21314fc95c91da280e06', 'from': '0x1fc0fbafe0170a1afcbb546f7330e4c8fcc70dd5', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4703e6eb5291b80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:10:13.000Z'}}, {'blockNum': '0xaff58d', 'uniqueId': '0xa27740d08de8670cc7b58a4ca6c39795cc35b91137d5905badc900b45a3f49d0:log:305', 'hash': '0xa27740d08de8670cc7b58a4ca6c39795cc35b91137d5905badc900b45a3f49d0', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf7e68bef461390d8def9b9e6a093245c92466ea0', 'value': 1172.966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3f962c5a5c1ad70000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:10:35.000Z'}}, {'blockNum': '0xaff595', 'uniqueId': '0xf9044bc04c8859206dc83641ad258bb49427740aa5486278cb75c81575e7a76d:log:113', 'hash': '0xf9044bc04c8859206dc83641ad258bb49427740aa5486278cb75c81575e7a76d', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xfe2da586531d5ce345c9110bb65d423ec8827165', 'value': 772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x29d9a6f5c4c9900000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:11:46.000Z'}}, {'blockNum': '0xaff5b5', 'uniqueId': '0x450fe96ec083a0a24211c53ae6491201f438d3afa60da8f661160b6a4d70724f:log:15', 'hash': '0x450fe96ec083a0a24211c53ae6491201f438d3afa60da8f661160b6a4d70724f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 13959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02f4b80a3e0c5dbc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:18:23.000Z'}}, {'blockNum': '0xaff5b5', 'uniqueId': '0xa311167c65b147d51a99c7f0bfb079e815b827bb304bbc7ae085ffe9a3cc664d:log:17', 'hash': '0xa311167c65b147d51a99c7f0bfb079e815b827bb304bbc7ae085ffe9a3cc664d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8beb76d8c49016f8612ff9c7b1e0eafdcd25dad0', 'value': 2241.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x7984cbccdc9b028000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:18:23.000Z'}}, {'blockNum': '0xaff5cc', 'uniqueId': '0x21e2a392a92d851f892823791319d673cc5c7bc3f93486004af903f4722fafd3:log:184', 'hash': '0x21e2a392a92d851f892823791319d673cc5c7bc3f93486004af903f4722fafd3', 'from': '0x81c9b436543df12d5c59c2797ea74a2f4c6e77e1', 'to': '0x761d44af7d6dab2666e0b14d597d83e48b8eb18e', 'value': 1339.806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x48a18b1a6751030000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:23:14.000Z'}}, {'blockNum': '0xaff5d0', 'uniqueId': '0xd2a0c87360813f80f4cd8d3fec13a55fe807d1791aec54bb7b0cb2b72dc96985:log:18', 'hash': '0xd2a0c87360813f80f4cd8d3fec13a55fe807d1791aec54bb7b0cb2b72dc96985', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1931ed5d0e15450a31a5a922f742e5e59c92c8d1', 'value': 1263.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x44800737239ab20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:24:03.000Z'}}, {'blockNum': '0xaff5d1', 'uniqueId': '0xc1cb4d6e62d3104277614ab829b17d50e70928c0d020b275e209e4609db21061:log:21', 'hash': '0xc1cb4d6e62d3104277614ab829b17d50e70928c0d020b275e209e4609db21061', 'from': '0x54a6cf34c1733cf7483f96efd9bffce81eac2874', 'to': '0x1cd27e8beaf4029eaad08e77050a3fcc383078dc', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:24:24.000Z'}}, {'blockNum': '0xaff5d1', 'uniqueId': '0x363f7efda790fb32d7aa4768aa13be234a23fe4da3854bb5eb2fe00dadac2538:log:273', 'hash': '0x363f7efda790fb32d7aa4768aa13be234a23fe4da3854bb5eb2fe00dadac2538', 'from': '0xe5dbfeb3777df64bb6a4c54e1a4f2394eabf9409', 'to': '0x90735a8768a33d1a71f60c754921b77446e43faf', 'value': 2850, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x9a7fb1fc0d87480000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:24:24.000Z'}}, {'blockNum': '0xaff5f2', 'uniqueId': '0x6f97dcc4676c6706e1c5225f95eb7f85bcb5594a4a2d42b51e563f0343228b3d:log:13', 'hash': '0x6f97dcc4676c6706e1c5225f95eb7f85bcb5594a4a2d42b51e563f0343228b3d', 'from': '0x1d035c78958af98a7e2f9d86abeb175ab713e41a', 'to': '0xaa56ecc5122a1cd97b12287afc7c62c5fa1b6755', 'value': 551.421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1de480edf242ac8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:30:02.000Z'}}, {'blockNum': '0xaff613', 'uniqueId': '0x81836b53db5f9219c96a7fb62b07268478b6ebf487a2d63eab29b99eb5755d0a:log:326', 'hash': '0x81836b53db5f9219c96a7fb62b07268478b6ebf487a2d63eab29b99eb5755d0a', 'from': '0x9930eda98d5b95d3b3a48c3032460375a5a7b506', 'to': '0xfe8cebba2f585688d8a3571198f32ef5144ed317', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:38:05.000Z'}}, {'blockNum': '0xaff617', 'uniqueId': '0x5aa10e84c5d61ad16e910b41bce220912d0f8f20c5ed0c151ab5e2cd11a59d71:log:85', 'hash': '0x5aa10e84c5d61ad16e910b41bce220912d0f8f20c5ed0c151ab5e2cd11a59d71', 'from': '0x1b0fa0ee9a1c2f211c072b3cfd973cbc1bf0f8a9', 'to': '0xeca95e89f92e31749ca1d6eaecdc57dfb3eb1674', 'value': 5492.475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0129bf67101ec99f8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:38:50.000Z'}}, {'blockNum': '0xaff631', 'uniqueId': '0x84b7a468d2f12a8797e6cfbe4cb7af50cbc40c5b458a64bd9eedbcb803a9481f:log:39', 'hash': '0x84b7a468d2f12a8797e6cfbe4cb7af50cbc40c5b458a64bd9eedbcb803a9481f', 'from': '0x753328fbeaacd9ca88d64c6b587e0bc0d98da6be', 'to': '0xa5ba8159ac80b4a955c9fab0ab1fe1b7a8f3e903', 'value': 4900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0109a12906aff6100000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:42:14.000Z'}}, {'blockNum': '0xaff655', 'uniqueId': '0xc829a0df860aecdf9ea29defd65b637868ff3cd02cea4447b2a930ea1d63f65c:log:111', 'hash': '0xc829a0df860aecdf9ea29defd65b637868ff3cd02cea4447b2a930ea1d63f65c', 'from': '0x1c05602f5445b5ff22d1eb9c59d19f7553a82b4c', 'to': '0x92744df2f0b8d25a05836a2fe51d25702576e4ea', 'value': 1788.0788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x60ee9402f3d6bd0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:49:35.000Z'}}, {'blockNum': '0xaff65e', 'uniqueId': '0xe2a5cbe91df3da3f9b1913e66406f232eff39965f883b4ffbabe9f60b263b7b4:log:293', 'hash': '0xe2a5cbe91df3da3f9b1913e66406f232eff39965f883b4ffbabe9f60b263b7b4', 'from': '0x9930eda98d5b95d3b3a48c3032460375a5a7b506', 'to': '0x128dfab0ce72f8beb487e79f81e68287fb042270', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:52:15.000Z'}}, {'blockNum': '0xaff667', 'uniqueId': '0xb9ab7f26ab52b6cea9fd166098e167cdb87e966a4c7e26f62c8d6c3c8e5b9320:log:254', 'hash': '0xb9ab7f26ab52b6cea9fd166098e167cdb87e966a4c7e26f62c8d6c3c8e5b9320', 'from': '0x128dfab0ce72f8beb487e79f81e68287fb042270', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:55:07.000Z'}}, {'blockNum': '0xaff66f', 'uniqueId': '0x8f399890ccfd54742d4348e744f62fc40726bf13b22eee92954163585a52deb8:log:172', 'hash': '0x8f399890ccfd54742d4348e744f62fc40726bf13b22eee92954163585a52deb8', 'from': '0x9f158387d4265cd9e515b53c241ff0c7697bea6a', 'to': '0x3bbc15f8e5bb6c1a473ca987f9ae1abecb64660e', 'value': 3846.1538461538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xd0801b6147cba72200', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:56:30.000Z'}}, {'blockNum': '0xaff6bd', 'uniqueId': '0x11d3b960634025c13d04c094fd7920a9c82269863b30234d89e5a9d6ec7f736f:log:2', 'hash': '0x11d3b960634025c13d04c094fd7920a9c82269863b30234d89e5a9d6ec7f736f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 5818.045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x013b65980e2d2d8c8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:13:11.000Z'}}, {'blockNum': '0xaff6cb', 'uniqueId': '0x6737a8e368782eb93dc996815c3854e7217a7e323ecb9fca70a14555cc03c809:log:8', 'hash': '0x6737a8e368782eb93dc996815c3854e7217a7e323ecb9fca70a14555cc03c809', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe94c2c237076cfe280d84e28b8a4ac15acfdb35c', 'value': 412.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x165bfa12b6e6840000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:16:32.000Z'}}, {'blockNum': '0xaff6de', 'uniqueId': '0xfc68e02da95673e4dd7f9cea070590cb437bc69a4dfb028f5851ef35627e5b48:log:139', 'hash': '0xfc68e02da95673e4dd7f9cea070590cb437bc69a4dfb028f5851ef35627e5b48', 'from': '0xb5fecdf757d13d4ec3724a7b461c5b61c7a3b364', 'to': '0x2c8c81eeee09581bcbcf09dec3ce3b72e31b41e6', 'value': 6419.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x015bff8052e59a9d8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:20:23.000Z'}}, {'blockNum': '0xaff6fa', 'uniqueId': '0x7412f25a1a807beb73613016791649f4dc100873836c9c6da029e85bd396125e:log:20', 'hash': '0x7412f25a1a807beb73613016791649f4dc100873836c9c6da029e85bd396125e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5c02af0f4a2da2959941289038ee1cd10fc5ce15', 'value': 15352.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0340459c2a5cf1079c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:24:20.000Z'}}, {'blockNum': '0xaff6ff', 'uniqueId': '0x05544d653bf566544c687cd9ba071f2bf31234be220222ea0ef5fc5d8bb81f28:log:92', 'hash': '0x05544d653bf566544c687cd9ba071f2bf31234be220222ea0ef5fc5d8bb81f28', 'from': '0x149e0caaa66c66f36ed689f17623efc7b90779aa', 'to': '0x7b06f7d399084c73b4e31b40c21501745c846fd2', 'value': 10375.284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x023271fd6363b1f20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:25:24.000Z'}}, {'blockNum': '0xaff702', 'uniqueId': '0xf59cdd72c259eff081b38ee8aefc8081e34339af209071a48da4637478019fe6:log:128', 'hash': '0xf59cdd72c259eff081b38ee8aefc8081e34339af209071a48da4637478019fe6', 'from': '0xea075c1d004d56b5e7643e1b2a4656ef72af1af1', 'to': '0xd001286827be9f2b4321f3e34de2af60959b8344', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:26:10.000Z'}}, {'blockNum': '0xaff70c', 'uniqueId': '0xcb1bd28f6d0ce8304aec4c92594e4108f0aebfa7ae0c09056beaf0074f3d8ea4:log:166', 'hash': '0xcb1bd28f6d0ce8304aec4c92594e4108f0aebfa7ae0c09056beaf0074f3d8ea4', 'from': '0x7b06f7d399084c73b4e31b40c21501745c846fd2', 'to': '0x2fd44501a7193910af2f420a8f5ced77f9655d8b', 'value': 10375.284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x023271fd6363b1f20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:28:09.000Z'}}, {'blockNum': '0xaff734', 'uniqueId': '0x4f7600d21bb9a7d4b0b1582b59643a82c1c864d55ec908a9b68ee2b2d0b8e61d:log:79', 'hash': '0x4f7600d21bb9a7d4b0b1582b59643a82c1c864d55ec908a9b68ee2b2d0b8e61d', 'from': '0xea075c1d004d56b5e7643e1b2a4656ef72af1af1', 'to': '0xd001286827be9f2b4321f3e34de2af60959b8344', 'value': 9554.5403505292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0205f3e232ae95310c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:38:32.000Z'}}, {'blockNum': '0xaff754', 'uniqueId': '0x064bcaec36703118b15d6bde078266d57bf129efa223148446e589ace0ec830e:log:290', 'hash': '0x064bcaec36703118b15d6bde078266d57bf129efa223148446e589ace0ec830e', 'from': '0x4ffb72b66eba24521736924f87dfe10677d82286', 'to': '0xd1226edbaaa328b9122c7b2067e5c7cec792d8be', 'value': 1899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x66f1eb46aab2cc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:45:38.000Z'}}, {'blockNum': '0xaff763', 'uniqueId': '0xe85c6f0e20fb72b3f7b0847524b6c1da46c5336e2d1591c2b75ce9d1a1eeeb4f:log:50', 'hash': '0xe85c6f0e20fb72b3f7b0847524b6c1da46c5336e2d1591c2b75ce9d1a1eeeb4f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 7250.611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01890e70e11dd3cb8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:48:46.000Z'}}, {'blockNum': '0xaff768', 'uniqueId': '0x9cfbfae74e3dafe62435625c8af4d288fbd8c10c7fd3df6757907bd842bd2abc:log:17', 'hash': '0x9cfbfae74e3dafe62435625c8af4d288fbd8c10c7fd3df6757907bd842bd2abc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 190658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x285f9744929f79c80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:50:12.000Z'}}, {'blockNum': '0xaff781', 'uniqueId': '0x42e36af6b5acefa76b320cdaf391e56039f2e0b28ea7a51f0cacb4b1e977385b:log:4', 'hash': '0x42e36af6b5acefa76b320cdaf391e56039f2e0b28ea7a51f0cacb4b1e977385b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x85aa1e68eefe8171b0cb677599fe2dee2b4b7288', 'value': 2711.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x92f8d5742f682b8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:56:13.000Z'}}, {'blockNum': '0xaff7ac', 'uniqueId': '0x124cda6871e34bced7da8d6a09cc796960935e9225b55280aa9ddd2533985dec:log:53', 'hash': '0x124cda6871e34bced7da8d6a09cc796960935e9225b55280aa9ddd2533985dec', 'from': '0xbb9e54a8550f43609ccb42c3c14030d636a24025', 'to': '0xb1cb24eb8150c34e4766d7b493094365d3c3e85b', 'value': 227.80297090909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0c5966bb1706f42c80', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:07:23.000Z'}}, {'blockNum': '0xaff7db', 'uniqueId': '0x163b23237f3febe4577305fd415db2195ddce1c47f96ecc0afbc9b9d1a6912d1:log:233', 'hash': '0x163b23237f3febe4577305fd415db2195ddce1c47f96ecc0afbc9b9d1a6912d1', 'from': '0x85aa1e68eefe8171b0cb677599fe2dee2b4b7288', 'to': '0x55dd02d2965e3eb261b4a063a484de0a265de7a4', 'value': 2711.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x92f8d5742f682b8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:18:31.000Z'}}, {'blockNum': '0xaff821', 'uniqueId': '0x5b097be9e23ab8054190d3d539389582c8c7262862a48ee9adc815b17d04c562:log:2', 'hash': '0x5b097be9e23ab8054190d3d539389582c8c7262862a48ee9adc815b17d04c562', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x93c541f45db0b8edab35928b7f6f92f37086eaa4', 'value': 9249.755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01f56e231d32994f8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:30:33.000Z'}}, {'blockNum': '0xaff86f', 'uniqueId': '0x811c1ecf3e61708c9452365c744e062330e612045ca8dab8f93c7405e1a661a2:log:3', 'hash': '0x811c1ecf3e61708c9452365c744e062330e612045ca8dab8f93c7405e1a661a2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 9304.555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01f866a3d2dad4b78000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:48:01.000Z'}}, {'blockNum': '0xaff87d', 'uniqueId': '0x9d49ced48b98a746d60e9d42e28870111f8eb14c48321db32228b77f9b9aa5f3:log:260', 'hash': '0x9d49ced48b98a746d60e9d42e28870111f8eb14c48321db32228b77f9b9aa5f3', 'from': '0x6d7dd712c2b1d04aa8c636e7be92b3ac4cdc506b', 'to': '0xb4143cdc3bf6377c7cd2c629ceaa3ab30efb713a', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:50:48.000Z'}}, {'blockNum': '0xaff89d', 'uniqueId': '0x948f28df2f5c458c878392ab45fa77194cf4c3150b9ea03e1e91ff833e92b4e9:log:144', 'hash': '0x948f28df2f5c458c878392ab45fa77194cf4c3150b9ea03e1e91ff833e92b4e9', 'from': '0xa9edadfe5bce820650d86671261eeaccece2f80b', 'to': '0x91ee5c39b2df87f507107828ab0fc7b8af1b0d3f', 'value': 1186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x404b0e6c4d7d480000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:57:28.000Z'}}, {'blockNum': '0xaff911', 'uniqueId': '0xb7ab7388f19f78e412bf4184241082da165d9cb21ec2e0dfb4f1ddaeea8b0354:log:57', 'hash': '0xb7ab7388f19f78e412bf4184241082da165d9cb21ec2e0dfb4f1ddaeea8b0354', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 796.072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x2b27b7e23ad2c40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:19:47.000Z'}}, {'blockNum': '0xaff937', 'uniqueId': '0x2f411971fc0a58f45e8c667f04f15d7f4575fedef366630c78bb60d6dec724e5:log:198', 'hash': '0x2f411971fc0a58f45e8c667f04f15d7f4575fedef366630c78bb60d6dec724e5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 1767.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5fcb705780c0c60000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:28:32.000Z'}}, {'blockNum': '0xaff9bb', 'uniqueId': '0xe43863c4cce420a68ac77e5a771e1c48a572e8bf6e1ff1b6f84abaa56681f97e:log:195', 'hash': '0xe43863c4cce420a68ac77e5a771e1c48a572e8bf6e1ff1b6f84abaa56681f97e', 'from': '0xfccb8d2c00c329137236e76ae3c177cf2430701b', 'to': '0x37f763af58adc9636d9b2ff054df4c091f3d2ab6', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:56:53.000Z'}}, {'blockNum': '0xaff9bd', 'uniqueId': '0x182655d26634578af1ea9d0621a6fe343d22ca26ece466fc1f10c4b75414f8c7:log:256', 'hash': '0x182655d26634578af1ea9d0621a6fe343d22ca26ece466fc1f10c4b75414f8c7', 'from': '0x37f763af58adc9636d9b2ff054df4c091f3d2ab6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:57:27.000Z'}}, {'blockNum': '0xaffa1f', 'uniqueId': '0xd7a614c37e80798531c035fd01035bdeaa61ed19a2c5038ab445737a20a2dbfd:log:161', 'hash': '0xd7a614c37e80798531c035fd01035bdeaa61ed19a2c5038ab445737a20a2dbfd', 'from': '0x6d0bfa463e0e900817ab0334b9b460f454209d86', 'to': '0x032d074590d74b66ce6714b5eeaaadde67645c7f', 'value': 8168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01bac9c55414cea00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T01:18:17.000Z'}}, {'blockNum': '0xaffaab', 'uniqueId': '0x32c40346ec80caefd6109b08f198f97567c1b832d051f80ad9047b259c198902:log:188', 'hash': '0x32c40346ec80caefd6109b08f198f97567c1b832d051f80ad9047b259c198902', 'from': '0x6d7dd712c2b1d04aa8c636e7be92b3ac4cdc506b', 'to': '0xb4143cdc3bf6377c7cd2c629ceaa3ab30efb713a', 'value': 30294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x066a3db42f8253980000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T01:49:14.000Z'}}, {'blockNum': '0xaffaf2', 'uniqueId': '0x58ebd7eebf85d5443fde6bf84e94c070cbc13ce7f2fe032d45ba271f79a8bb5a:log:23', 'hash': '0x58ebd7eebf85d5443fde6bf84e94c070cbc13ce7f2fe032d45ba271f79a8bb5a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x54fc6bcf943bbe0dac876953aa7f4ac1f0bdbfc8', 'value': 18401.528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x03e58c803c86b44c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T02:07:02.000Z'}}, {'blockNum': '0xaffbf8', 'uniqueId': '0xd16d93935f0594fee03ff511a704e9379751382c654540257ec0c297f88a807f:log:0', 'hash': '0xd16d93935f0594fee03ff511a704e9379751382c654540257ec0c297f88a807f', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xc6ea8d76c140bf42d27f18762d417169ab183907', 'value': 24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014d1120d7b1600000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T03:05:54.000Z'}}, {'blockNum': '0xaffc51', 'uniqueId': '0xc3bb0a3dcb908f5f0cec9f5973adb7b837609210d5b20e398d5a65f301e3c7f9:log:293', 'hash': '0xc3bb0a3dcb908f5f0cec9f5973adb7b837609210d5b20e398d5a65f301e3c7f9', 'from': '0xb0db5e93533a6905cc640c440b7b0f0f420b8308', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 76657.2527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x103b99163f1e55e1c000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T03:23:53.000Z'}}, {'blockNum': '0xaffc78', 'uniqueId': '0xb1e745b2dcf6753358a2e220481ce6da142d23f4741f70be625d51626cc465a0:log:71', 'hash': '0xb1e745b2dcf6753358a2e220481ce6da142d23f4741f70be625d51626cc465a0', 'from': '0x57f41fd7f13f05984f7e82e55eb9db53219e3cbd', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 238942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3299125fd706eab80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T03:33:32.000Z'}}, {'blockNum': '0xafff41', 'uniqueId': '0x7323a6f5f2e3676101852511e7c7544e6124bd01168dbc50a0a0e958bfa06373:log:0', 'hash': '0x7323a6f5f2e3676101852511e7c7544e6124bd01168dbc50a0a0e958bfa06373', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 6650.291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01688353cdbf894b8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T06:16:28.000Z'}}, {'blockNum': '0xafff73', 'uniqueId': '0x5f45899f9440861357d4d9848bb9553d677bec50ef79f72b1607020bb09cc6da:log:298', 'hash': '0x5f45899f9440861357d4d9848bb9553d677bec50ef79f72b1607020bb09cc6da', 'from': '0xdb4bfbcf8485dc5cc3a3d929494acaa3d01887ca', 'to': '0x39773de84ed46ddb45b1d6c786199ff9e7576dd8', 'value': 536.38000769231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1d13c49722116db180', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T06:26:11.000Z'}}, {'blockNum': '0xb0006e', 'uniqueId': '0xc3dedac8c4bc018cabd001428eaf23c521460446d62e08b7be65170b6423f62b:log:159', 'hash': '0xc3dedac8c4bc018cabd001428eaf23c521460446d62e08b7be65170b6423f62b', 'from': '0x1aa6bbdb653b3ac6057a4aefa50bcc4077d55920', 'to': '0x76be5f4144e0e580b55895c55c7e9e5fc526e434', 'value': 547.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1dae5dcb1d5de00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T07:23:27.000Z'}}]}}
Number of returned transfers:  60
Answer is complete
 
symbol            NEBL
group              BPS
date        2021-01-02
hour             21:00
exchange       binance
Name: 315, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2021-01-02 21:00:00 2021-01-02 09:00:00 2021-01-03 09:00:00
Unix timestamps:  1609574400.0 1609660800.0
Hex Block Numbers:  0xb09a05 0xb0b35c
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EVX
group              BPS
date        2021-01-09
hour             21:00
exchange       binance
Name: 316, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2021-01-09 21:00:00 2021-01-09 09:00:00 2021-01-10 09:00:00
Unix timestamps:  1610179200.0 1610265600.0
Hex Block Numbers:  0xb14c3a 0xb16588
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb14d1c', 'uniqueId': '0xa4674af2a28f9550b1c57ecc1fdb0672e60e5b834ac0f2f5aaeb2103248a251f:log:6', 'hash': '0xa4674af2a28f9550b1c57ecc1fdb0672e60e5b834ac0f2f5aaeb2103248a251f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdd9e7f8f62d19c4838cac904473a1abd66d6ef4c', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0f1b30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T08:47:54.000Z'}}, {'blockNum': '0xb14e9e', 'uniqueId': '0x3c839f4be8bfc289d0a0036e1a67e02b62afe20d2e873a97689f3470019a3ce2:log:247', 'hash': '0x3c839f4be8bfc289d0a0036e1a67e02b62afe20d2e873a97689f3470019a3ce2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 30256.8269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1208d34d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:19:30.000Z'}}, {'blockNum': '0xb14ed7', 'uniqueId': '0xfe7d69f29b2ce597498f18d61bc829d3183d721ca455ed9d62d894711e220444:log:3', 'hash': '0xfe7d69f29b2ce597498f18d61bc829d3183d721ca455ed9d62d894711e220444', 'from': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30256.8269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1208d34d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:30:32.000Z'}}, {'blockNum': '0xb14f0e', 'uniqueId': '0x07339679c8f082ae64ed5ecd73f54baa25c2e29e63a2fb64263a8736b377664a:log:40', 'hash': '0x07339679c8f082ae64ed5ecd73f54baa25c2e29e63a2fb64263a8736b377664a', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 24032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e52fe00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:45:53.000Z'}}, {'blockNum': '0xb14f2f', 'uniqueId': '0x76b54247455a0a5ecb8744a8dcefa0ffb09049ca4f0b969c093080767d2a64c7:log:61', 'hash': '0x76b54247455a0a5ecb8744a8dcefa0ffb09049ca4f0b969c093080767d2a64c7', 'from': '0x00a44dac55183a0ba3ea487d1a796f94d71a76f9', 'to': '0xc0b7a17250862977e5e3eeede7989456ae9eb20f', 'value': 5750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x036d6160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:52:54.000Z'}}, {'blockNum': '0xb14f4a', 'uniqueId': '0x076b9a1969503d94ab00913d82dd4dea3e7d2127a047f53189dd2a6c7c1209d8:log:189', 'hash': '0x076b9a1969503d94ab00913d82dd4dea3e7d2127a047f53189dd2a6c7c1209d8', 'from': '0xc0b7a17250862977e5e3eeede7989456ae9eb20f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x036d6160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T11:00:08.000Z'}}, {'blockNum': '0xb14f53', 'uniqueId': '0xf906751f2be953d609bf019b88faed0d8c4199c3434410acbb66edbf79f17dd6:log:286', 'hash': '0xf906751f2be953d609bf019b88faed0d8c4199c3434410acbb66edbf79f17dd6', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 20636.0857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4cd119', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T11:02:55.000Z'}}, {'blockNum': '0xb1503e', 'uniqueId': '0x8d73e7c02bfefc0af131922810753641536de637151f3f4b6e8450ea3a03ed88:log:279', 'hash': '0x8d73e7c02bfefc0af131922810753641536de637151f3f4b6e8450ea3a03ed88', 'from': '0x09ac86553d401187849ca545fe4446ac4f455a89', 'to': '0x8a96c6bd8bb76140c1d438a4ea8841622dd3d766', 'value': 46.3789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0713ad', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T11:57:22.000Z'}}, {'blockNum': '0xb15060', 'uniqueId': '0x6a608c2d33d9a7cb8aad17de5c6940fea00105c1738890548286638643893699:log:257', 'hash': '0x6a608c2d33d9a7cb8aad17de5c6940fea00105c1738890548286638643893699', 'from': '0x8a96c6bd8bb76140c1d438a4ea8841622dd3d766', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 46.3789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0713ad', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T12:06:00.000Z'}}, {'blockNum': '0xb15074', 'uniqueId': '0x0973cf1a6e39246dadc191427544bf9b9eefe7b95ea84f5fd8ad406c6d435743:log:260', 'hash': '0x0973cf1a6e39246dadc191427544bf9b9eefe7b95ea84f5fd8ad406c6d435743', 'from': '0x6b11bda202802402f6e92a426e440ba6abb01ee6', 'to': '0xc42a1b69cf0e8f6a5bb35379f657a2426b17a3dc', 'value': 134.563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x14885e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T12:10:47.000Z'}}, {'blockNum': '0xb1526d', 'uniqueId': '0xe8f88534eb82fb3f624f3e39e3401d9d98b1818ba70858bf0ebda9cc16da008e:log:72', 'hash': '0xe8f88534eb82fb3f624f3e39e3401d9d98b1818ba70858bf0ebda9cc16da008e', 'from': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14096.5877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0866f7f5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:00:27.000Z'}}, {'blockNum': '0xb152f9', 'uniqueId': '0xb345db715fa5e6d1ddb7253a259ef16bb0aacb8c6172e9cb3c752e8f86b0a87f:log:45', 'hash': '0xb345db715fa5e6d1ddb7253a259ef16bb0aacb8c6172e9cb3c752e8f86b0a87f', 'from': '0x388711a9742bc1650c269da06e1136119e88976d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17860.472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0aa54ab0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:30:58.000Z'}}, {'blockNum': '0xb15325', 'uniqueId': '0xcaac821089c96703d9a9f0dcf6b34e1a6b056d13608b97225394e8ec9c6dddb5:log:229', 'hash': '0xcaac821089c96703d9a9f0dcf6b34e1a6b056d13608b97225394e8ec9c6dddb5', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x6c9494ddbcebf71e958faf7a741ce7e964bacdc8', 'value': 821.4265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7d56f9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:41:53.000Z'}}, {'blockNum': '0xb15365', 'uniqueId': '0x187a9fef0c89829d32ac1554a1de7b6d0b7d0ea6c01f1dfd901d969e43064332:log:281', 'hash': '0x187a9fef0c89829d32ac1554a1de7b6d0b7d0ea6c01f1dfd901d969e43064332', 'from': '0xa2d3aecb21f387d49009eaa0ff6e8c20e1518b6a', 'to': '0x5243f68d25ba1d7be4deb2938ab8fb720321a565', 'value': 327.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x31f510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:54:09.000Z'}}, {'blockNum': '0xb153b5', 'uniqueId': '0xa41a3652b33916a5d1b21c0c124cac877ff370e83d928987913a4918686400f6:log:182', 'hash': '0xa41a3652b33916a5d1b21c0c124cac877ff370e83d928987913a4918686400f6', 'from': '0x5243f68d25ba1d7be4deb2938ab8fb720321a565', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 327.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x31f510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T15:11:55.000Z'}}, {'blockNum': '0xb1542a', 'uniqueId': '0xc1e612e34248a8235e3affe551db063c168e9fabd15649e1478daf7e1185ded0:log:292', 'hash': '0xc1e612e34248a8235e3affe551db063c168e9fabd15649e1478daf7e1185ded0', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e4b5ce0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T15:43:08.000Z'}}, {'blockNum': '0xb1544c', 'uniqueId': '0xc638195b883fd2c8617fdf7206bdc868bc6321bcb3159e2d1cfb518d4491f90d:log:223', 'hash': '0xc638195b883fd2c8617fdf7206bdc868bc6321bcb3159e2d1cfb518d4491f90d', 'from': '0x413b16d28f0099bc30f59f78bf14b63bdad01101', 'to': '0x5fa9ced8772612eda6a64aa073ed59bec363674f', 'value': 1196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb67ec0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T15:50:56.000Z'}}, {'blockNum': '0xb1548c', 'uniqueId': '0x3f1fed8d6bd1701724041c88ca6c8a54fd9a686f7cf582ee636285ca5649e806:log:292', 'hash': '0x3f1fed8d6bd1701724041c88ca6c8a54fd9a686f7cf582ee636285ca5649e806', 'from': '0x5fa9ced8772612eda6a64aa073ed59bec363674f', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb67ec0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T16:02:52.000Z'}}, {'blockNum': '0xb154e1', 'uniqueId': '0x8371da92b697e5bb6d1f4c74a3ba3661bb7f86807955c70a74f61863c8e63035:log:145', 'hash': '0x8371da92b697e5bb6d1f4c74a3ba3661bb7f86807955c70a74f61863c8e63035', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e4b5ce0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T16:20:47.000Z'}}, {'blockNum': '0xb155bb', 'uniqueId': '0x5f21b8b145d42f19a6dbcb5faedb644ccab76899fc06e589e5167312671f6aad:log:216', 'hash': '0x5f21b8b145d42f19a6dbcb5faedb644ccab76899fc06e589e5167312671f6aad', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 24816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0eca9f00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:08:35.000Z'}}, {'blockNum': '0xb155d5', 'uniqueId': '0xac94c856b8912c7828fb67bfbdcbab8899f3ea6c570c5b029c1bbd9c6ea0343d:log:322', 'hash': '0xac94c856b8912c7828fb67bfbdcbab8899f3ea6c570c5b029c1bbd9c6ea0343d', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 30419.1619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12219883', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:14:52.000Z'}}, {'blockNum': '0xb15614', 'uniqueId': '0xc6b46f4574500516c52bde3b941bf2cf0863fc3afe249020918ebfde15e6d8fe:log:60', 'hash': '0xc6b46f4574500516c52bde3b941bf2cf0863fc3afe249020918ebfde15e6d8fe', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20680.5621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c539a75', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:29:33.000Z'}}, {'blockNum': '0xb1561e', 'uniqueId': '0x28f966b1db7026c6fbf4000e4ae9172c8f6a9e48d5e867fdc99047b8240436b9:log:83', 'hash': '0x28f966b1db7026c6fbf4000e4ae9172c8f6a9e48d5e867fdc99047b8240436b9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 723.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6e5de8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:31:50.000Z'}}, {'blockNum': '0xb15630', 'uniqueId': '0xbb4cd01582742dedd00644ff908617f4a7e502871c5cd673730d06aae65ce166:log:232', 'hash': '0xbb4cd01582742dedd00644ff908617f4a7e502871c5cd673730d06aae65ce166', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20680.5621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c539a75', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:37:00.000Z'}}, {'blockNum': '0xb15644', 'uniqueId': '0x8431c8eb155fc6713d9e0dacfa109dd6a796b05d980c53e7a6116413cf467d98:log:125', 'hash': '0x8431c8eb155fc6713d9e0dacfa109dd6a796b05d980c53e7a6116413cf467d98', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e2425d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:40:40.000Z'}}, {'blockNum': '0xb15648', 'uniqueId': '0x6a3ee601b30d00fdc33196fe8ac7a1083d3585219b78f2f53c69cd1cd15e0faf:log:145', 'hash': '0x6a3ee601b30d00fdc33196fe8ac7a1083d3585219b78f2f53c69cd1cd15e0faf', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 723.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6e5de8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:41:05.000Z'}}, {'blockNum': '0xb158e5', 'uniqueId': '0x9829fdfe798ee7c45e56c7bff7612037183b70cac9469e846bcc38b67669613b:log:223', 'hash': '0x9829fdfe798ee7c45e56c7bff7612037183b70cac9469e846bcc38b67669613b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 22768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d921f00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:06:35.000Z'}}, {'blockNum': '0xb15979', 'uniqueId': '0x56513875661a89640cbd9f4e5c96c3385a179307df76f44269a37f3571a27d79:log:302', 'hash': '0x56513875661a89640cbd9f4e5c96c3385a179307df76f44269a37f3571a27d79', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 14244.963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x087d9bde', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:36:32.000Z'}}, {'blockNum': '0xb159d7', 'uniqueId': '0x814806287051cbecb561bcc31b01e15466bf3e48314e813bb5dc330997829c62:log:125', 'hash': '0x814806287051cbecb561bcc31b01e15466bf3e48314e813bb5dc330997829c62', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x36f2b710c09ca5b4cb287e9bdcd357202993ab0f', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02bf20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:54:46.000Z'}}, {'blockNum': '0xb159dc', 'uniqueId': '0x7bb354998cf21f9da6017d724e95f6d88cf9034d6950504950f21b8e49d8d950:log:176', 'hash': '0x7bb354998cf21f9da6017d724e95f6d88cf9034d6950504950f21b8e49d8d950', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 2461.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01779db5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:56:52.000Z'}}, {'blockNum': '0xb159fa', 'uniqueId': '0x825c6e3c8732b41e12e9ef8dd75268af86e30bd46e98adedf15ab56be96792a5:log:288', 'hash': '0x825c6e3c8732b41e12e9ef8dd75268af86e30bd46e98adedf15ab56be96792a5', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 7161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0444ae90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:03:21.000Z'}}, {'blockNum': '0xb15a07', 'uniqueId': '0xebe5e56b443772ea91a68560534c4a220eff017ab7279e25f7a5efd3f3c49eda:log:90', 'hash': '0xebe5e56b443772ea91a68560534c4a220eff017ab7279e25f7a5efd3f3c49eda', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 2269.7799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015a5747', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:06:37.000Z'}}, {'blockNum': '0xb15a0a', 'uniqueId': '0xb4d8f0a0096c9aefef6f8b6212367a322231e65939feb92d46e5c249e59bae53:log:22', 'hash': '0xb4d8f0a0096c9aefef6f8b6212367a322231e65939feb92d46e5c249e59bae53', 'from': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'to': '0xb2a75fed542098dbeafcf6fe7d6d414480eea0ec', 'value': 107.0146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x105442', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:07:59.000Z'}}, {'blockNum': '0xb15a17', 'uniqueId': '0x5989cd38e7c320155133af449bd417d1eaa1729a43af6be07781c8e291cb1f8a:log:52', 'hash': '0x5989cd38e7c320155133af449bd417d1eaa1729a43af6be07781c8e291cb1f8a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 438.4802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x42e822', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:09:28.000Z'}}, {'blockNum': '0xb15a20', 'uniqueId': '0x7d7bba9c07f09cfbc698bb07e9ab8f6dd80d044436330ec6ce640e32a6cf574d:log:274', 'hash': '0x7d7bba9c07f09cfbc698bb07e9ab8f6dd80d044436330ec6ce640e32a6cf574d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbd47e5b28b273a41137a580c818bdb1cb6941fb6', 'value': 426.9802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4126ea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:11:57.000Z'}}, {'blockNum': '0xb15a42', 'uniqueId': '0x922550a8dcb9f2811792b19f66c4e6a975988e413d3b4bd9f48f5f1c545bdbae:log:187', 'hash': '0x922550a8dcb9f2811792b19f66c4e6a975988e413d3b4bd9f48f5f1c545bdbae', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcc1c5ae653c9ebc0974e45316839a33a90f821b2', 'value': 706.3402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6bc76a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:19:30.000Z'}}, {'blockNum': '0xb15a45', 'uniqueId': '0xb8e7ad1ea69f25da3c5857a88f88e3ba765a93d39cf92c5091df18a102b4e813:log:176', 'hash': '0xb8e7ad1ea69f25da3c5857a88f88e3ba765a93d39cf92c5091df18a102b4e813', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2386eb34987da185705f1d59a57d0fc9c8cebe6f', 'value': 60.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x092c0c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:21:10.000Z'}}, {'blockNum': '0xb15a60', 'uniqueId': '0xd40ef6a8d5a2545db2c0648f39cf771dc974c1f8df777b791ae9f6d3ffe7a87d:log:217', 'hash': '0xd40ef6a8d5a2545db2c0648f39cf771dc974c1f8df777b791ae9f6d3ffe7a87d', 'from': '0x14e8bd1cfd3605d663952dedb9b4fbfa4b510f22', 'to': '0xce2cc69cc301c799e314828eea7fc4cbbaf87c70', 'value': 1001.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x98d726', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:26:44.000Z'}}, {'blockNum': '0xb15a64', 'uniqueId': '0x4faddb42bf1bf8cf54e9df1688f3ba58dde75ac8b79249f84f391212f67c51dc:log:95', 'hash': '0x4faddb42bf1bf8cf54e9df1688f3ba58dde75ac8b79249f84f391212f67c51dc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x668877a76f7b9d74c9af8a9b7c204a186460bf92', 'value': 3779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0240a130', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:27:10.000Z'}}, {'blockNum': '0xb15a65', 'uniqueId': '0xcbb102bbe6bfaf1c858e392c51a2376d924feddcc1b33dff587e1954639e5a21:log:24', 'hash': '0xcbb102bbe6bfaf1c858e392c51a2376d924feddcc1b33dff587e1954639e5a21', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdffd616e83d9f3132da91f915c2863751dc31049', 'value': 2970.3983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01c53f2f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:27:37.000Z'}}, {'blockNum': '0xb15a71', 'uniqueId': '0xe0600054042c70ce413daa2e6915a37ae7c5d00ce62880c37e65d51607c9cf19:log:67', 'hash': '0xe0600054042c70ce413daa2e6915a37ae7c5d00ce62880c37e65d51607c9cf19', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0444ae90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:31:22.000Z'}}, {'blockNum': '0xb15a7e', 'uniqueId': '0xcbcb73d7e53f4af73f2f160a6c165fd41c24fe0bce515b62fe58978640c5e946:log:54', 'hash': '0xcbcb73d7e53f4af73f2f160a6c165fd41c24fe0bce515b62fe58978640c5e946', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3d3e4515af535072ad03f63a1a7b41e0607c98a2', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01285360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:34:26.000Z'}}, {'blockNum': '0xb15a7e', 'uniqueId': '0xe99a3f9c03c03a58410a667aba6399cdef61f5a5117f59293db9782f9608d851:log:55', 'hash': '0xe99a3f9c03c03a58410a667aba6399cdef61f5a5117f59293db9782f9608d851', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4483954b2cf526cc45b471c4141b2efe72b9068c', 'value': 460.516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4644e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:34:26.000Z'}}, {'blockNum': '0xb15a82', 'uniqueId': '0xb7c5ada3f9a8040c4790a6db7048a9b37cf4454f90ee40729deddfc3019626b6:log:80', 'hash': '0xb7c5ada3f9a8040c4790a6db7048a9b37cf4454f90ee40729deddfc3019626b6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x30a60a977758ae98d4bb143c8711d1bfb1f1e962', 'value': 5381.1653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033519c5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:35:22.000Z'}}, {'blockNum': '0xb15a82', 'uniqueId': '0x4673be76e774e57c0aa68d611010f1b41fcd89cfd71e774213a042085fb8329a:log:82', 'hash': '0x4673be76e774e57c0aa68d611010f1b41fcd89cfd71e774213a042085fb8329a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 4857.9674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e5445a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:35:22.000Z'}}, {'blockNum': '0xb15a82', 'uniqueId': '0xdd558b52288145d80d84874a7f97af862e8e465c532eb196302062f4a196882a:log:83', 'hash': '0xdd558b52288145d80d84874a7f97af862e8e465c532eb196302062f4a196882a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 5277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032534d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:35:22.000Z'}}, {'blockNum': '0xb15a8e', 'uniqueId': '0x899622ccc5563d9e16efbc343aea9582e3e39ae1c27ce6d1a4d0e8298431ed1f:log:55', 'hash': '0x899622ccc5563d9e16efbc343aea9582e3e39ae1c27ce6d1a4d0e8298431ed1f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdb697f324cabe355b878ec646c68b1b364ee50f4', 'value': 1074.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa40452', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:37:08.000Z'}}, {'blockNum': '0xb15a9f', 'uniqueId': '0x1721e96e279b95bdd63e1fcb60bf967a4e338692c8deddb4d83397d04ffacc2e:log:54', 'hash': '0x1721e96e279b95bdd63e1fcb60bf967a4e338692c8deddb4d83397d04ffacc2e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xef31edc28d9cc1cecd58e379cc5887072afb0b6e', 'value': 8273.673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ee765a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:40:10.000Z'}}, {'blockNum': '0xb15aa0', 'uniqueId': '0xc5107a4ff919302c2e40566ddb66f02e3bc9b92bcaf14b8d39010d509243f337:log:13', 'hash': '0xc5107a4ff919302c2e40566ddb66f02e3bc9b92bcaf14b8d39010d509243f337', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5672297d55d924a9043ff2b587c5cce73b2ffd44', 'value': 439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x42fc70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:40:40.000Z'}}, {'blockNum': '0xb15aa8', 'uniqueId': '0x6a9b02e6ea7b7aec1ba8f86b67cd576452c034acd415919362de5048bd0ad63f:log:143', 'hash': '0x6a9b02e6ea7b7aec1ba8f86b67cd576452c034acd415919362de5048bd0ad63f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b7da51869785987efb679d36e7dad1e406f397a', 'value': 2200.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fcfbc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:41:40.000Z'}}, {'blockNum': '0xb15aab', 'uniqueId': '0x2797c150e2f3472b25c457d5c212c96bf7294239fd397508dbf7b64ba4492e61:log:286', 'hash': '0x2797c150e2f3472b25c457d5c212c96bf7294239fd397508dbf7b64ba4492e61', 'from': '0x1d4051d87e326256b489ef99db4a238e88591e7c', 'to': '0x335757884399448f6505158ca824e1b280ca26f6', 'value': 1935.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x012757d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:17.000Z'}}, {'blockNum': '0xb15aaf', 'uniqueId': '0x842f3d49054a223cd715f51611020f58ff4333baa9bf4a888b6b740db4f0c912:log:94', 'hash': '0x842f3d49054a223cd715f51611020f58ff4333baa9bf4a888b6b740db4f0c912', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbd6f3546771f120ef90b49fa86b79da3efff2a7e', 'value': 1043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9f2630', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:45.000Z'}}, {'blockNum': '0xb15aaf', 'uniqueId': '0x5c6195b63b532bfc540a98b3579bb1768fee4c74df176d9d2c147f8a7655c340:log:95', 'hash': '0x5c6195b63b532bfc540a98b3579bb1768fee4c74df176d9d2c147f8a7655c340', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 5337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032e5c90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:45.000Z'}}, {'blockNum': '0xb15ab0', 'uniqueId': '0xfa3b210a159ad973dc876a4a0d163f3c3b004990de11c38cdceef48ff7411e2c:log:27', 'hash': '0xfa3b210a159ad973dc876a4a0d163f3c3b004990de11c38cdceef48ff7411e2c', 'from': '0x3d3e4515af535072ad03f63a1a7b41e0607c98a2', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01285360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:57.000Z'}}, {'blockNum': '0xb15ab3', 'uniqueId': '0xb8f462c8aa689908cff62aa9cfa76a4c22cb8e53338c2cf52258a3e0da3d215f:log:142', 'hash': '0xb8f462c8aa689908cff62aa9cfa76a4c22cb8e53338c2cf52258a3e0da3d215f', 'from': '0x30a60a977758ae98d4bb143c8711d1bfb1f1e962', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 5381.1653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033519c5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:43:09.000Z'}}, {'blockNum': '0xb15ab3', 'uniqueId': '0x298acf56c0898206e93ca593c13c467d91d2e8310f2c6541d91741ada90f1578:log:186', 'hash': '0x298acf56c0898206e93ca593c13c467d91d2e8310f2c6541d91741ada90f1578', 'from': '0xdb697f324cabe355b878ec646c68b1b364ee50f4', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 1074.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa40452', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:43:09.000Z'}}, {'blockNum': '0xb15ab6', 'uniqueId': '0xd1a8d9dc62102d6b48f68cb0c5a6b69e9411f1697c3915eaf70e23c06aafdd97:log:201', 'hash': '0xd1a8d9dc62102d6b48f68cb0c5a6b69e9411f1697c3915eaf70e23c06aafdd97', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 9977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f25e90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:43:36.000Z'}}, {'blockNum': '0xb15abb', 'uniqueId': '0xe75615199eca1ceae0ce22dfc77a7e6b5d4e0c714e381eeb2a676aa4e8501b2c:log:253', 'hash': '0xe75615199eca1ceae0ce22dfc77a7e6b5d4e0c714e381eeb2a676aa4e8501b2c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'value': 727.2131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6ef6c3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:45:14.000Z'}}, {'blockNum': '0xb15abe', 'uniqueId': '0xa3474ba1619bbb6ac3f12a0dccfdb7b9fed49c0cc917b8ad3c6048c55347dc1f:log:5', 'hash': '0xa3474ba1619bbb6ac3f12a0dccfdb7b9fed49c0cc917b8ad3c6048c55347dc1f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 4875.097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e7e17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:07.000Z'}}, {'blockNum': '0xb15abe', 'uniqueId': '0xbfc557b5bc4b92102f9d65a6fe9e45a9bd6e628410122f27d6c23ae9f89e12e5:log:167', 'hash': '0xbfc557b5bc4b92102f9d65a6fe9e45a9bd6e628410122f27d6c23ae9f89e12e5', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c45eff0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:07.000Z'}}, {'blockNum': '0xb15abe', 'uniqueId': '0xc1a2252c206854edc57db87b58b5a7fd12d197ff781549bf8d10f1967ec29c1a:log:168', 'hash': '0xc1a2252c206854edc57db87b58b5a7fd12d197ff781549bf8d10f1967ec29c1a', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4857.9674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e5445a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:07.000Z'}}, {'blockNum': '0xb15abf', 'uniqueId': '0x0361d7129244b8e4d172ccc12802bb6e734da20fbbf836dec8905ae20bcec063:log:63', 'hash': '0x0361d7129244b8e4d172ccc12802bb6e734da20fbbf836dec8905ae20bcec063', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:13.000Z'}}, {'blockNum': '0xb15ac2', 'uniqueId': '0xb1e8e3e9239360a8c9adc17589170f6a3f26b68f1f192eea91069f244dd057c6:log:137', 'hash': '0xb1e8e3e9239360a8c9adc17589170f6a3f26b68f1f192eea91069f244dd057c6', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x038dc8d5b540712a791f6b17df4e13298debbdcb', 'value': 10217.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0617068c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:25.000Z'}}, {'blockNum': '0xb15ac5', 'uniqueId': '0xdf22da59c77948675f48ffb69e97e2c079bf4479acba7c155384f52f095c82e3:log:62', 'hash': '0xdf22da59c77948675f48ffb69e97e2c079bf4479acba7c155384f52f095c82e3', 'from': '0xef31edc28d9cc1cecd58e379cc5887072afb0b6e', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 8273.673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ee765a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:47:14.000Z'}}, {'blockNum': '0xb15ad3', 'uniqueId': '0x63a22488bc575ab86adbaca9db7734c275652864ea56bc1144dd0aa4740e7895:log:176', 'hash': '0x63a22488bc575ab86adbaca9db7734c275652864ea56bc1144dd0aa4740e7895', 'from': '0xbd6f3546771f120ef90b49fa86b79da3efff2a7e', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9f2630', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:49:23.000Z'}}, {'blockNum': '0xb15ad8', 'uniqueId': '0x1cf39cf5ac2845f0e557b6d77ddb4d1ffa7957bc221fad75823250f937d416d6:log:259', 'hash': '0x1cf39cf5ac2845f0e557b6d77ddb4d1ffa7957bc221fad75823250f937d416d6', 'from': '0x6b7da51869785987efb679d36e7dad1e406f397a', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 2200.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fcfbc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:50:53.000Z'}}, {'blockNum': '0xb15adb', 'uniqueId': '0x91933f4b7444a3fd532faf1a3f65f023df97d1b71f5e3d2904c560ca0e55e9fc:log:114', 'hash': '0x91933f4b7444a3fd532faf1a3f65f023df97d1b71f5e3d2904c560ca0e55e9fc', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4875.097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e7e17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:51:40.000Z'}}, {'blockNum': '0xb15ae0', 'uniqueId': '0xcb4e256ff9c80c303289a1546a670405818561e03d36c5507e6351f1a622fdd2:log:250', 'hash': '0xcb4e256ff9c80c303289a1546a670405818561e03d36c5507e6351f1a622fdd2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 10194.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0613841c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:52:26.000Z'}}, {'blockNum': '0xb15ae5', 'uniqueId': '0xb9c49eedbcdff45a6da46312897f9dfffae6243fc9f38c7a6114ebec1bea12d8:log:154', 'hash': '0xb9c49eedbcdff45a6da46312897f9dfffae6243fc9f38c7a6114ebec1bea12d8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:53:58.000Z'}}, {'blockNum': '0xb15ae9', 'uniqueId': '0xbb2c376e357df8338e44f1f60aeba27348daeda8621300165ac73036e91b7508:log:202', 'hash': '0xbb2c376e357df8338e44f1f60aeba27348daeda8621300165ac73036e91b7508', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 14977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08ed4f10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:55:18.000Z'}}, {'blockNum': '0xb15aef', 'uniqueId': '0x474369c3b6f700629e8129e75d9fd5e7b84e83f140b11df0c83cdd6aaae09776:log:143', 'hash': '0x474369c3b6f700629e8129e75d9fd5e7b84e83f140b11df0c83cdd6aaae09776', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 14977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08ed4f10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:57:08.000Z'}}, {'blockNum': '0xb15af4', 'uniqueId': '0x30924f8262c3fe1a118bf321283a474359a501a3c529035741d64df7ed05c857:log:83', 'hash': '0x30924f8262c3fe1a118bf321283a474359a501a3c529035741d64df7ed05c857', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:58:00.000Z'}}, {'blockNum': '0xb15afe', 'uniqueId': '0xbe7eb7dc4572d4c2ffbebc3b43dee99c5f553249499c5c90d8bf9c84c53e97c4:log:125', 'hash': '0xbe7eb7dc4572d4c2ffbebc3b43dee99c5f553249499c5c90d8bf9c84c53e97c4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'value': 727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6eee70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:01:48.000Z'}}, {'blockNum': '0xb15afe', 'uniqueId': '0x1f62d674b734188eba47c20233fa523827ddbf7ec7975f6ae89e35d55ab82f21:log:126', 'hash': '0x1f62d674b734188eba47c20233fa523827ddbf7ec7975f6ae89e35d55ab82f21', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xcfe0d8f798ac82ce98bbf437e36546235d353912', 'value': 429.547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x418b2e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:01:48.000Z'}}, {'blockNum': '0xb15aff', 'uniqueId': '0x620346cdc5dfa9cefe7f543bc4cb7f89992a4807bcbb3da2f58c7c633b154d8f:log:169', 'hash': '0x620346cdc5dfa9cefe7f543bc4cb7f89992a4807bcbb3da2f58c7c633b154d8f', 'from': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:17.000Z'}}, {'blockNum': '0xb15aff', 'uniqueId': '0x7844e8faf79ed5badd874022a5e80accaef92aca3149a0417a221a2a7fa89114:log:173', 'hash': '0x7844e8faf79ed5badd874022a5e80accaef92aca3149a0417a221a2a7fa89114', 'from': '0x038dc8d5b540712a791f6b17df4e13298debbdcb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10217.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0617068c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:17.000Z'}}, {'blockNum': '0xb15aff', 'uniqueId': '0x0f1374cc9cde9e3ff81d4f8dc1eaa3dbfa95185734535ccc3f2ecbac710edc15:log:174', 'hash': '0x0f1374cc9cde9e3ff81d4f8dc1eaa3dbfa95185734535ccc3f2ecbac710edc15', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x88939c46b2f562102d5e1e4ec67c150c865e506a', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x124f80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:17.000Z'}}, {'blockNum': '0xb15b01', 'uniqueId': '0x369318e296c35b32c2257c9f69a55503cbe6148018d90dfeeb1042474a7b7a02:log:161', 'hash': '0x369318e296c35b32c2257c9f69a55503cbe6148018d90dfeeb1042474a7b7a02', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 14269.7988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08816604', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:40.000Z'}}, {'blockNum': '0xb15b06', 'uniqueId': '0x772a48769029dcde3727f8ef9655988d6339d8f34c6bb82fda27db98cb33bdc6:log:242', 'hash': '0x772a48769029dcde3727f8ef9655988d6339d8f34c6bb82fda27db98cb33bdc6', 'from': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 727.2131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6ef6c3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:03:41.000Z'}}, {'blockNum': '0xb15b13', 'uniqueId': '0x2006af6975b56a365965bfaa0fe59a0c80c61e25ce1c57d36c252641867822a9:log:286', 'hash': '0x2006af6975b56a365965bfaa0fe59a0c80c61e25ce1c57d36c252641867822a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 625100.3259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017496bd7b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:05:48.000Z'}}, {'blockNum': '0xb15b14', 'uniqueId': '0xe1d5eaa964bf439e9a0d1a8320b96fcd14651274c907cb94c37f59a7a6c38334:log:234', 'hash': '0xe1d5eaa964bf439e9a0d1a8320b96fcd14651274c907cb94c37f59a7a6c38334', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 29954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11da9e20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:06:09.000Z'}}, {'blockNum': '0xb15b14', 'uniqueId': '0x0694242544d6ab8461decb6f7e8f2024ecacb69a75d2fa2d46e0028d070aa30e:log:235', 'hash': '0x0694242544d6ab8461decb6f7e8f2024ecacb69a75d2fa2d46e0028d070aa30e', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10194.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0613841c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:06:09.000Z'}}, {'blockNum': '0xb15b17', 'uniqueId': '0x7564529681a6bb6e5b6b8e5136fcaf8bdb0bcece36a77f3ef367c70ef692288b:log:264', 'hash': '0x7564529681a6bb6e5b6b8e5136fcaf8bdb0bcece36a77f3ef367c70ef692288b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e116120', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:07:04.000Z'}}, {'blockNum': '0xb15b18', 'uniqueId': '0x95e8d759d891253124c5e3fe8d35112f76da7655c1c1f15bb922cd9f16141f92:log:64', 'hash': '0x95e8d759d891253124c5e3fe8d35112f76da7655c1c1f15bb922cd9f16141f92', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 7977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c13190', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:07:15.000Z'}}, {'blockNum': '0xb15b18', 'uniqueId': '0xdce9dc1edf6048370974bdf7fc85bb85af9ed65065d4b0a297876e99372c40cd:log:65', 'hash': '0xdce9dc1edf6048370974bdf7fc85bb85af9ed65065d4b0a297876e99372c40cd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:07:15.000Z'}}, {'blockNum': '0xb15b1c', 'uniqueId': '0xd30b550ec50b71cfdd373562c8329ac2255da74d3fbf433a9e572e357b6d4b49:log:41', 'hash': '0xd30b550ec50b71cfdd373562c8329ac2255da74d3fbf433a9e572e357b6d4b49', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 10768.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x066b18bc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:08:24.000Z'}}, {'blockNum': '0xb15b28', 'uniqueId': '0xcedf8433fa469f06d8e9ad198766792ce9bdff6bc6bdd9414027cb2f573ab219:log:16', 'hash': '0xcedf8433fa469f06d8e9ad198766792ce9bdff6bc6bdd9414027cb2f573ab219', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xa444bbd83293de79e5802daa8b81bd0277fe68fd', 'value': 1805.6404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011384d4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:10:20.000Z'}}, {'blockNum': '0xb15b2a', 'uniqueId': '0xf667a52d8b845493cd76bd81e89febd112410a9094b2ee947f3b253ca1ca9d5e:log:41', 'hash': '0xf667a52d8b845493cd76bd81e89febd112410a9094b2ee947f3b253ca1ca9d5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 22199.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d3b6555', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:10:29.000Z'}}, {'blockNum': '0xb15b2c', 'uniqueId': '0x0d41d5de8bb34f25ea8211eb0dbffae6cedcc8b62782c1a56d052c5bb2f63ede:log:54', 'hash': '0x0d41d5de8bb34f25ea8211eb0dbffae6cedcc8b62782c1a56d052c5bb2f63ede', 'from': '0x5d0ba857f0c51612f04e4d59d3d0edf2574fd476', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0165a0bc00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:10:41.000Z'}}, {'blockNum': '0xb15b30', 'uniqueId': '0x18b6d0c863eadc160714e3032b94f5e8b83a5384c4ff9485f7d9cb603fb2b995:log:269', 'hash': '0x18b6d0c863eadc160714e3032b94f5e8b83a5384c4ff9485f7d9cb603fb2b995', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30176.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11fc96e5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:11:34.000Z'}}, {'blockNum': '0xb15b30', 'uniqueId': '0x2f7f12fbd87f2084c1ca84839b7860db5e4e7195ba8ee74490ca7babe86adf6d:log:270', 'hash': '0x2f7f12fbd87f2084c1ca84839b7860db5e4e7195ba8ee74490ca7babe86adf6d', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10768.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x066b18bc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:11:34.000Z'}}, {'blockNum': '0xb15b30', 'uniqueId': '0x7c1af6cf1dee8c9a0293f62ace38b0bc0e04dde136fc77793c80110f3b26d09a:log:271', 'hash': '0x7c1af6cf1dee8c9a0293f62ace38b0bc0e04dde136fc77793c80110f3b26d09a', 'from': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6eee70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:11:34.000Z'}}, {'blockNum': '0xb15b3f', 'uniqueId': '0xcdd0bfc1b79ff895ef8e89d00d1e422c5055fec37bc2738b8450f01c1c64c810:log:229', 'hash': '0xcdd0bfc1b79ff895ef8e89d00d1e422c5055fec37bc2738b8450f01c1c64c810', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 31473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12c26610', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:13:31.000Z'}}, {'blockNum': '0xb15b49', 'uniqueId': '0x85c51b6beddc397a30bea59fd3024b69901f66709bc7f3742d626b3eadc8ce9a:log:21', 'hash': '0x85c51b6beddc397a30bea59fd3024b69901f66709bc7f3742d626b3eadc8ce9a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 1752.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x010b6cf0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:15:57.000Z'}}, {'blockNum': '0xb15b49', 'uniqueId': '0x17e3e13a5428a45148d454657c542e81fe0488731204729d467e6f47c1aad2e4:log:22', 'hash': '0x17e3e13a5428a45148d454657c542e81fe0488731204729d467e6f47c1aad2e4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:15:57.000Z'}}, {'blockNum': '0xb15b4a', 'uniqueId': '0x46b34b4b5f35fc04a8f0e1f280987cbcf44c0191eb068eaf1976c893280eb08d:log:286', 'hash': '0x46b34b4b5f35fc04a8f0e1f280987cbcf44c0191eb068eaf1976c893280eb08d', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:15:58.000Z'}}, {'blockNum': '0xb15b4e', 'uniqueId': '0x959a6ad5cc631051a67e4e10d14f5346e493750b0fdbb4e5a1f4c230e1e5ae0a:log:273', 'hash': '0x959a6ad5cc631051a67e4e10d14f5346e493750b0fdbb4e5a1f4c230e1e5ae0a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15088.1998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe46ce', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:16:48.000Z'}}, {'blockNum': '0xb15b54', 'uniqueId': '0xe13bc5f44fbd627590adbad353f84074ca21fcbc8377bed76c1023aad4f2e917:log:174', 'hash': '0xe13bc5f44fbd627590adbad353f84074ca21fcbc8377bed76c1023aad4f2e917', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 11660.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f338aa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:18:06.000Z'}}, {'blockNum': '0xb15b5b', 'uniqueId': '0xadde4577526f166d8ca190b693631afb298f960ce63f9956eca76364b112957f:log:75', 'hash': '0xadde4577526f166d8ca190b693631afb298f960ce63f9956eca76364b112957f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 18977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b4fa910', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:19:19.000Z'}}, {'blockNum': '0xb15b5b', 'uniqueId': '0x3c73540a04866cea131ae93aaf85c34c7a38fccbb266ddb3fafd921004a58762:log:76', 'hash': '0x3c73540a04866cea131ae93aaf85c34c7a38fccbb266ddb3fafd921004a58762', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa614221a6234c588876a278b2fa3f6371595dfb3', 'value': 50023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dd0e770', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:19:19.000Z'}}, {'blockNum': '0xb15b65', 'uniqueId': '0x75364ead34467abb6443bfa6e8ee16c4cc3bdb8371524a08b69ec7665918804a:log:205', 'hash': '0x75364ead34467abb6443bfa6e8ee16c4cc3bdb8371524a08b69ec7665918804a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12799d40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:22:13.000Z'}}, {'blockNum': '0xb15b82', 'uniqueId': '0x2ba8fd49f22683532464937ae82e8cb247049cf5d87567839534d19e163d507c:log:154', 'hash': '0x2ba8fd49f22683532464937ae82e8cb247049cf5d87567839534d19e163d507c', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 217381.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8191ce35', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:30:22.000Z'}}, {'blockNum': '0xb15ba1', 'uniqueId': '0xe58b462277e315ef3872d66461961bd9b1ef5d91d644e59c56a2cd0d0c6a1948:log:62', 'hash': '0xe58b462277e315ef3872d66461961bd9b1ef5d91d644e59c56a2cd0d0c6a1948', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x36f2b710c09ca5b4cb287e9bdcd357202993ab0f', 'value': 8793.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x053dd65a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:37:07.000Z'}}, {'blockNum': '0xb15ba2', 'uniqueId': '0x191fa53a9e249ff589464095c97ec4118593f4afb8317c47b19e2704f8ea1b98:log:71', 'hash': '0x191fa53a9e249ff589464095c97ec4118593f4afb8317c47b19e2704f8ea1b98', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15088.1998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe46ce', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:37:08.000Z'}}, {'blockNum': '0xb15ba2', 'uniqueId': '0x48ff7b6637cbb9b63d5f5179353716b0e1e4410b2138b480be57a8c5347e16ae:log:72', 'hash': '0x48ff7b6637cbb9b63d5f5179353716b0e1e4410b2138b480be57a8c5347e16ae', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:37:08.000Z'}}, {'blockNum': '0xb15bb4', 'uniqueId': '0xc2c2d5590a5c4b2351c1c46d5bfa2edd47c6e760cf7c9b2f01d25ef964602bbc:log:70', 'hash': '0xc2c2d5590a5c4b2351c1c46d5bfa2edd47c6e760cf7c9b2f01d25ef964602bbc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 113514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x43a8dca0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:40:36.000Z'}}, {'blockNum': '0xb15bb5', 'uniqueId': '0x28c9918e7666e82b0fe21006df2646aabf79ba07af0a61a4a83889d7505e19db:log:126', 'hash': '0x28c9918e7666e82b0fe21006df2646aabf79ba07af0a61a4a83889d7505e19db', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7928.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04b9cef0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:40:38.000Z'}}, {'blockNum': '0xb15bb9', 'uniqueId': '0x1a01ee71e0583d46cff04fe5db0ace96d5d1b2e25c21e633594d9324de6221b5:log:148', 'hash': '0x1a01ee71e0583d46cff04fe5db0ace96d5d1b2e25c21e633594d9324de6221b5', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 81446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x308bac60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:41:07.000Z'}}, {'blockNum': '0xb15bb9', 'uniqueId': '0x148a6e22a62d1bfb38ec9460e91d3c0133e3d260b74ac34237eaefd0ff42d201:log:149', 'hash': '0x148a6e22a62d1bfb38ec9460e91d3c0133e3d260b74ac34237eaefd0ff42d201', 'from': '0xa614221a6234c588876a278b2fa3f6371595dfb3', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 50023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dd0e770', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:41:07.000Z'}}, {'blockNum': '0xb15bb9', 'uniqueId': '0x5802c776e508640d8e5384fcc052fca1486293d3f299dec33aad62cae1ecd046:log:150', 'hash': '0x5802c776e508640d8e5384fcc052fca1486293d3f299dec33aad62cae1ecd046', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11660.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f338aa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:41:07.000Z'}}, {'blockNum': '0xb15bc0', 'uniqueId': '0x3b9b96f132f7f86ef341b7e0305a8bd7adb1562a1e24d68d1aaf89ec47af676a:log:186', 'hash': '0x3b9b96f132f7f86ef341b7e0305a8bd7adb1562a1e24d68d1aaf89ec47af676a', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'value': 29982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11dee3e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:42:29.000Z'}}, {'blockNum': '0xb15bd5', 'uniqueId': '0x97ea56db26934ada570149429d77144dd7d8c473956ae7ba73e6babbaeb11c6d:log:293', 'hash': '0x97ea56db26934ada570149429d77144dd7d8c473956ae7ba73e6babbaeb11c6d', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 9681.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05c53be0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:49:29.000Z'}}, {'blockNum': '0xb15bec', 'uniqueId': '0x94fc3ee7a220c210e85e72b5e05492e796c1e054dea08baee95db7d209932b45:log:80', 'hash': '0x94fc3ee7a220c210e85e72b5e05492e796c1e054dea08baee95db7d209932b45', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'value': 49982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dcaa5e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:54:34.000Z'}}, {'blockNum': '0xb15c09', 'uniqueId': '0x110ad3174559d586af6df207d0f559c6539883bf83ecbb2938dd075fc8ae3df9:log:166', 'hash': '0x110ad3174559d586af6df207d0f559c6539883bf83ecbb2938dd075fc8ae3df9', 'from': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 79964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2fa989c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:01:06.000Z'}}, {'blockNum': '0xb15c09', 'uniqueId': '0x6fc03d4e47c2afe192c2bab8da3a33b4df015f33f76ed60ffff6fa6aff0bfd68:log:167', 'hash': '0x6fc03d4e47c2afe192c2bab8da3a33b4df015f33f76ed60ffff6fa6aff0bfd68', 'from': '0x36f2b710c09ca5b4cb287e9bdcd357202993ab0f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8811.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0540957a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:01:06.000Z'}}, {'blockNum': '0xb15c1c', 'uniqueId': '0x45dba61e2a1b07f24708f657666f830e22c44ed3b162830e747094413f2b7892:log:396', 'hash': '0x45dba61e2a1b07f24708f657666f830e22c44ed3b162830e747094413f2b7892', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 11989.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07258666', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:05:13.000Z'}}, {'blockNum': '0xb15c2a', 'uniqueId': '0x17ae797f93eed5f7c3e414dd26aadf40872501f6da84a5bc128edd81dc72eab2:log:334', 'hash': '0x17ae797f93eed5f7c3e414dd26aadf40872501f6da84a5bc128edd81dc72eab2', 'from': '0x22b0ac0be4633f57fa4457268ad365c11227e172', 'to': '0x1cbc7f14a99efd6c0f72e029c60d4b7d48aa272a', 'value': 746.966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x71fa5c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:08:38.000Z'}}, {'blockNum': '0xb15c2e', 'uniqueId': '0x0e2fd9f56b0b5884248ea729bedbf611c7f7ff484c30d00bd9860d750e2649aa:log:111', 'hash': '0x0e2fd9f56b0b5884248ea729bedbf611c7f7ff484c30d00bd9860d750e2649aa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe2e0d798dbddb1c66d499ade2f065303e9f3a3ad', 'value': 503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4cc070', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:09:54.000Z'}}, {'blockNum': '0xb15c4d', 'uniqueId': '0xe44af12791e59938cdf6b23a22c607373beb0142e8580b012f6f7f82bfa991c8:log:196', 'hash': '0xe44af12791e59938cdf6b23a22c607373beb0142e8580b012f6f7f82bfa991c8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 41737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x18e08f90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:16:17.000Z'}}, {'blockNum': '0xb15c61', 'uniqueId': '0x77e7b9fdfb7111079d39ef86cbf8e1cfee2b23cd4a1322da0789f8375183f662:log:46', 'hash': '0x77e7b9fdfb7111079d39ef86cbf8e1cfee2b23cd4a1322da0789f8375183f662', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 119352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4723ab80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:20:41.000Z'}}, {'blockNum': '0xb15c63', 'uniqueId': '0xab032a768e9c28374a098a67792a19c74105d93017d257d762d379f22f23c6f7:log:352', 'hash': '0xab032a768e9c28374a098a67792a19c74105d93017d257d762d379f22f23c6f7', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11989.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07258666', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:21:25.000Z'}}, {'blockNum': '0xb15c73', 'uniqueId': '0x5865d12d05f0cf41b51fd76a5b4b987b0c80cecf317c544d339b682c031095a9:log:116', 'hash': '0x5865d12d05f0cf41b51fd76a5b4b987b0c80cecf317c544d339b682c031095a9', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 41737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x18e08f90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:25:53.000Z'}}, {'blockNum': '0xb15c79', 'uniqueId': '0xaa9fc428067ae72e2e595b2d282c9f78660321b4a12c50a9f13627c3079ce286:log:17', 'hash': '0xaa9fc428067ae72e2e595b2d282c9f78660321b4a12c50a9f13627c3079ce286', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 37977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x16a2d490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:28:01.000Z'}}, {'blockNum': '0xb15c87', 'uniqueId': '0x03d55e8da625d98bd3c7f4de2b474f46149fe89c9d54560ba8b3fdb080fc6122:log:307', 'hash': '0x03d55e8da625d98bd3c7f4de2b474f46149fe89c9d54560ba8b3fdb080fc6122', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 37977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x16a2d490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:31:24.000Z'}}, {'blockNum': '0xb15c95', 'uniqueId': '0xc2ffe2fd66ce0727ac595c42921d4d2da831eabd4fec3d06daa9d1317a344884:log:263', 'hash': '0xc2ffe2fd66ce0727ac595c42921d4d2da831eabd4fec3d06daa9d1317a344884', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fc4330', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:34:19.000Z'}}, {'blockNum': '0xb15cb1', 'uniqueId': '0xc699135fbeb4e5e9a7a34ca4aaebaf754b1de531869ca4db829e18faf123767c:log:163', 'hash': '0xc699135fbeb4e5e9a7a34ca4aaebaf754b1de531869ca4db829e18faf123767c', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fc4330', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:41:32.000Z'}}, {'blockNum': '0xb15cb7', 'uniqueId': '0x8ab9c16ba102d0fef09ee2cb57819bd6203950f8a79b16971e31cc67db51967a:log:229', 'hash': '0x8ab9c16ba102d0fef09ee2cb57819bd6203950f8a79b16971e31cc67db51967a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2357c44eba59ebbb3a4c079388206b52b347b0af', 'value': 77, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bbfd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:42:17.000Z'}}, {'blockNum': '0xb15d01', 'uniqueId': '0x860e77a18459c36594eb096fc07496d5c8d1ae6e3ecfdd7e50a5c37f6829a301:log:48', 'hash': '0x860e77a18459c36594eb096fc07496d5c8d1ae6e3ecfdd7e50a5c37f6829a301', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12259.705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x074eaeba', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:00:07.000Z'}}, {'blockNum': '0xb15d02', 'uniqueId': '0x398c7f0c0f5f5b077c6a0b443d9832de9f17516fb996ede870fc1b39028573a3:log:89', 'hash': '0x398c7f0c0f5f5b077c6a0b443d9832de9f17516fb996ede870fc1b39028573a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 8030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c947e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:00:09.000Z'}}, {'blockNum': '0xb15d1f', 'uniqueId': '0xd2c02254eeae23607f9f970585414f0c36a2be9d838fbac7e3cdd3eecac38919:log:125', 'hash': '0xd2c02254eeae23607f9f970585414f0c36a2be9d838fbac7e3cdd3eecac38919', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12259.705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x074eaeba', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:07:03.000Z'}}, {'blockNum': '0xb15d1f', 'uniqueId': '0xb0decef9c57033efe4afbe26868a36a4a27eb816e0a630c5f9a39a46e2d8b182:log:126', 'hash': '0xb0decef9c57033efe4afbe26868a36a4a27eb816e0a630c5f9a39a46e2d8b182', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 8030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c947e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:07:03.000Z'}}, {'blockNum': '0xb15d22', 'uniqueId': '0x266675c4308f6efbfada1aec8ffa0e4cd8a6d4ed4296a02af7538daa223d82c6:log:211', 'hash': '0x266675c4308f6efbfada1aec8ffa0e4cd8a6d4ed4296a02af7538daa223d82c6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc70c36336037ed70c55440453b8acc64225b22f6', 'value': 4747.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02d45e7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:08:02.000Z'}}, {'blockNum': '0xb15d2b', 'uniqueId': '0x99e314f072274c3d9569f597413988095f87511b54f3492b855b8a5ec8d0cc99:log:126', 'hash': '0x99e314f072274c3d9569f597413988095f87511b54f3492b855b8a5ec8d0cc99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1206b730', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:10:24.000Z'}}, {'blockNum': '0xb15d2f', 'uniqueId': '0x918d1e9e4e863880ca9eca4434d4e2d3cbfbf5c5b96080ccb4af8b957c976577:log:83', 'hash': '0x918d1e9e4e863880ca9eca4434d4e2d3cbfbf5c5b96080ccb4af8b957c976577', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x115120f2e6b2866c731d9f9186a7775707843e98', 'value': 1107.2439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa8f3b7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:11:05.000Z'}}, {'blockNum': '0xb15d38', 'uniqueId': '0xabf2a8e23f6abf6d9893a80c62031e47a8cdcdb50cc36f880c4811efd7bd17dc:log:159', 'hash': '0xabf2a8e23f6abf6d9893a80c62031e47a8cdcdb50cc36f880c4811efd7bd17dc', 'from': '0xc70c36336037ed70c55440453b8acc64225b22f6', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 4747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02d455b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:12:53.000Z'}}, {'blockNum': '0xb15d41', 'uniqueId': '0x9165cf5ecb9fddd36365d23b7fe6ee2c06c2426fba4a8bc921504e3240d1c5f8:log:153', 'hash': '0x9165cf5ecb9fddd36365d23b7fe6ee2c06c2426fba4a8bc921504e3240d1c5f8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fa4760', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:14:15.000Z'}}, {'blockNum': '0xb15d47', 'uniqueId': '0xd32a43a25e35bc763c214ac5bac021462e43c608607d87828b741a0420373dbf:log:112', 'hash': '0xd32a43a25e35bc763c214ac5bac021462e43c608607d87828b741a0420373dbf', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1206b730', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:16:02.000Z'}}, {'blockNum': '0xb15d59', 'uniqueId': '0xb8ce6e3f04ebfdacb0cb2bb327a1709222f1443b5f23acc476c61348c9e58982:log:297', 'hash': '0xb8ce6e3f04ebfdacb0cb2bb327a1709222f1443b5f23acc476c61348c9e58982', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf20f71e5e5862c6aa009ae4d65d9d1d330d0a7e4', 'value': 7224.9581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044e70ed', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:20:10.000Z'}}, {'blockNum': '0xb15d5a', 'uniqueId': '0x7e4cf56b503ff0926bf9de3104aeed24169356cf56ffca2acba107f345f57c9d:log:33', 'hash': '0x7e4cf56b503ff0926bf9de3104aeed24169356cf56ffca2acba107f345f57c9d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:21:03.000Z'}}, {'blockNum': '0xb15d6d', 'uniqueId': '0xe55c442232541da9d20376784b9f58be70686423ca9731709c6815a72abff9c6:log:179', 'hash': '0xe55c442232541da9d20376784b9f58be70686423ca9731709c6815a72abff9c6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e09190', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:25:42.000Z'}}, {'blockNum': '0xb15d6d', 'uniqueId': '0x5a1fc941b0de0a202a9180a8d4274a4aea287da2fd90bddc73d2aa5c5c1fd8e2:log:181', 'hash': '0x5a1fc941b0de0a202a9180a8d4274a4aea287da2fd90bddc73d2aa5c5c1fd8e2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x166b8f9de0fdee735a08704b9eec47cad599ef60', 'value': 985.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x96733c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:25:42.000Z'}}, {'blockNum': '0xb15d6e', 'uniqueId': '0x64611e8ab3193cc923b0f57f8bd3ea870e4edc540256fb5e93cfef36e7fa6930:log:137', 'hash': '0x64611e8ab3193cc923b0f57f8bd3ea870e4edc540256fb5e93cfef36e7fa6930', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fa4760', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:25:48.000Z'}}, {'blockNum': '0xb15d70', 'uniqueId': '0x963e3c42df5336376261e2637ac5db0f166d4e0bd1bb0101379f3113b23a0ecf:log:217', 'hash': '0x963e3c42df5336376261e2637ac5db0f166d4e0bd1bb0101379f3113b23a0ecf', 'from': '0x115120f2e6b2866c731d9f9186a7775707843e98', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1107.2439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa8f3b7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:26:16.000Z'}}, {'blockNum': '0xb15d7b', 'uniqueId': '0x1fca774e1dd9bb298876c88fa5011aef32124a2307f40960a25b13dbd09ab072:log:208', 'hash': '0x1fca774e1dd9bb298876c88fa5011aef32124a2307f40960a25b13dbd09ab072', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20612.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4948a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:28:43.000Z'}}, {'blockNum': '0xb15d8f', 'uniqueId': '0xaea210c5d57c4936311f84e2d3261fa1ba71a63c0a299bedcefdba92faea0b29:log:72', 'hash': '0xaea210c5d57c4936311f84e2d3261fa1ba71a63c0a299bedcefdba92faea0b29', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:32:05.000Z'}}, {'blockNum': '0xb15d8f', 'uniqueId': '0xdaa10214496f6efff275c9100384ab9e98472f5e328627f16121745cda97ce55:log:73', 'hash': '0xdaa10214496f6efff275c9100384ab9e98472f5e328627f16121745cda97ce55', 'from': '0xf20f71e5e5862c6aa009ae4d65d9d1d330d0a7e4', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7224.9581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044e70ed', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:32:05.000Z'}}, {'blockNum': '0xb15d92', 'uniqueId': '0xb12d4a68241a7279e8ed3852b5359d22737dcd5b1962d14a6f8a28ef28974760:log:21', 'hash': '0xb12d4a68241a7279e8ed3852b5359d22737dcd5b1962d14a6f8a28ef28974760', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:32:17.000Z'}}, {'blockNum': '0xb15d9e', 'uniqueId': '0x55686289a1c298f31df6ba170a4b3196acb69228408cb74d907bc5220abc8962:log:30', 'hash': '0x55686289a1c298f31df6ba170a4b3196acb69228408cb74d907bc5220abc8962', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f872a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:34:40.000Z'}}, {'blockNum': '0xb15da1', 'uniqueId': '0x9702ed37b4176b9c3af0884f3e6b801355d2be26fbae6ebc858f02916e4283f4:log:218', 'hash': '0x9702ed37b4176b9c3af0884f3e6b801355d2be26fbae6ebc858f02916e4283f4', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xa97776574b43f8aad31f6e11fe60346f790a0565', 'value': 1732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01084840', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:35:38.000Z'}}, {'blockNum': '0xb15da5', 'uniqueId': '0xd0bac325ad1f95bb20255d5c02bc2571ba00de75f172f3d1e3466ab6078f4848:log:6', 'hash': '0xd0bac325ad1f95bb20255d5c02bc2571ba00de75f172f3d1e3466ab6078f4848', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12442.528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x076a9440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:36:56.000Z'}}, {'blockNum': '0xb15dc3', 'uniqueId': '0x1b803d8eaed11e020127edca7600cc45731b82dfc03d82a33ec143e54e622b00:log:174', 'hash': '0x1b803d8eaed11e020127edca7600cc45731b82dfc03d82a33ec143e54e622b00', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e09190', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:41:36.000Z'}}, {'blockNum': '0xb15dc3', 'uniqueId': '0xa892385f12c83d087fe84b3c9b55398efb96b8ac9f928657e91740eba9d5eea2:log:176', 'hash': '0xa892385f12c83d087fe84b3c9b55398efb96b8ac9f928657e91740eba9d5eea2', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20612.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4948a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:41:36.000Z'}}, {'blockNum': '0xb15dc3', 'uniqueId': '0x15da1aa449f8a302f9d99df6d28e42e31c4e6d49ad39419dd56de922e3720455:log:178', 'hash': '0x15da1aa449f8a302f9d99df6d28e42e31c4e6d49ad39419dd56de922e3720455', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:41:36.000Z'}}, {'blockNum': '0xb15dda', 'uniqueId': '0xced4f3fbe7d7dee784c6e5702e48eafaa0f68f439d94c414612e20f613592ee6:log:241', 'hash': '0xced4f3fbe7d7dee784c6e5702e48eafaa0f68f439d94c414612e20f613592ee6', 'from': '0xa97776574b43f8aad31f6e11fe60346f790a0565', 'to': '0x3ee9b4c7598a2ab4e6237734b2944e6914b02c1c', 'value': 1732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01084840', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:46:21.000Z'}}, {'blockNum': '0xb15ddc', 'uniqueId': '0x70a13ae96a6263172b4cc2f6310658b0ecee70e33edf84b74e77ff2aaf1737d1:log:87', 'hash': '0x70a13ae96a6263172b4cc2f6310658b0ecee70e33edf84b74e77ff2aaf1737d1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 105415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3ed50d70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:46:42.000Z'}}, {'blockNum': '0xb15ddd', 'uniqueId': '0x97b243a28449b3268e245aeb63a9a73e80f5e3736b2486a4850b7df133d82ec3:log:136', 'hash': '0x97b243a28449b3268e245aeb63a9a73e80f5e3736b2486a4850b7df133d82ec3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 120803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x48011330', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:12.000Z'}}, {'blockNum': '0xb15ddd', 'uniqueId': '0x3e0c6ee4285ef01eec5d7fc417080f9661043e842f49d8e7108ff102345d36d7:log:137', 'hash': '0x3e0c6ee4285ef01eec5d7fc417080f9661043e842f49d8e7108ff102345d36d7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 115415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x44caee70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:12.000Z'}}, {'blockNum': '0xb15de2', 'uniqueId': '0xdd2b6eb948bd158e9a6b85a1e13965a2cfdd5036692077d3df20a149b638cd02:log:207', 'hash': '0xdd2b6eb948bd158e9a6b85a1e13965a2cfdd5036692077d3df20a149b638cd02', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f872a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:39.000Z'}}, {'blockNum': '0xb15de2', 'uniqueId': '0xeac26c6e3091d0039d41b013bb755eadfff7c21f0e47cd19ab53396d5269565a:log:210', 'hash': '0xeac26c6e3091d0039d41b013bb755eadfff7c21f0e47cd19ab53396d5269565a', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12442.528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x076a9440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:39.000Z'}}, {'blockNum': '0xb15df8', 'uniqueId': '0xf711a358126096ce8d673e3e4fb860df5d05216c7c1076f41146b2ae82bc4e70:log:362', 'hash': '0xf711a358126096ce8d673e3e4fb860df5d05216c7c1076f41146b2ae82bc4e70', 'from': '0x375f6832e2eff62823fa952706a2cae1230d8b09', 'to': '0x085a16f8d09daac0ee897dc62526e22e3185240d', 'value': 501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4c7250', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:53:19.000Z'}}, {'blockNum': '0xb15e08', 'uniqueId': '0x1bd7a7f872029017c48d602a3dcad00df59df5855405e60fc2479af27ed04c2a:log:15', 'hash': '0x1bd7a7f872029017c48d602a3dcad00df59df5855405e60fc2479af27ed04c2a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11fbe1c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:57:21.000Z'}}, {'blockNum': '0xb15e0e', 'uniqueId': '0x09453cb0996d5fc208fbc7f0a7f3f44bae5705a813acef470954ade3bf2caea6:log:18', 'hash': '0x09453cb0996d5fc208fbc7f0a7f3f44bae5705a813acef470954ade3bf2caea6', 'from': '0x3ee9b4c7598a2ab4e6237734b2944e6914b02c1c', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01084840', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:58:21.000Z'}}, {'blockNum': '0xb15e17', 'uniqueId': '0xfa58e140dbe2c38c4a879d6a2fa15e0f3214e1bfe6fdd49aa8a4eac3ede922b1:log:168', 'hash': '0xfa58e140dbe2c38c4a879d6a2fa15e0f3214e1bfe6fdd49aa8a4eac3ede922b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1645.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfb0f72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:59:52.000Z'}}, {'blockNum': '0xb15e19', 'uniqueId': '0xdbc97c9fd02593ba52eae3137808f6f5aca8a9924885dca63e14b474e1a9615f:log:61', 'hash': '0xdbc97c9fd02593ba52eae3137808f6f5aca8a9924885dca63e14b474e1a9615f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c5890', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:00:44.000Z'}}, {'blockNum': '0xb15e31', 'uniqueId': '0x2addca04f888bed6db9a7c8dde4cd61b62163c7ec48764d6eddd914915b79df6:log:56', 'hash': '0x2addca04f888bed6db9a7c8dde4cd61b62163c7ec48764d6eddd914915b79df6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 32493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x135e09d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:05:38.000Z'}}, {'blockNum': '0xb15e32', 'uniqueId': '0xbc983a5cd4a508b8092c22ad1bc6f8afe1b9bc5d35b1265ac3406cc0f611bad9:log:84', 'hash': '0xbc983a5cd4a508b8092c22ad1bc6f8afe1b9bc5d35b1265ac3406cc0f611bad9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12504.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0774075a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:05:56.000Z'}}, {'blockNum': '0xb15e40', 'uniqueId': '0xbcee3e381d252ce8a0f24860a1026b49ae93442e2a1a7ea883624283821620cb:log:105', 'hash': '0xbcee3e381d252ce8a0f24860a1026b49ae93442e2a1a7ea883624283821620cb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 28053.0374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10b88dc6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:08:48.000Z'}}, {'blockNum': '0xb15e40', 'uniqueId': '0x54cc3d12c1e3988d21932f46a3b24423858f8209abf8edaa78c19fb30215f224:log:106', 'hash': '0x54cc3d12c1e3988d21932f46a3b24423858f8209abf8edaa78c19fb30215f224', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:08:48.000Z'}}, {'blockNum': '0xb15e4c', 'uniqueId': '0x0b8770b9f85028b4360b938864f35020709c7aede257b79a224d0af2259ae2b9:log:72', 'hash': '0x0b8770b9f85028b4360b938864f35020709c7aede257b79a224d0af2259ae2b9', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 62665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2559eb90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:11:35.000Z'}}, {'blockNum': '0xb15e4c', 'uniqueId': '0xc3f93c570b2aecf509eb8cfd53c65bcadd6c373e88d15009346e893de40c686a:log:73', 'hash': '0xc3f93c570b2aecf509eb8cfd53c65bcadd6c373e88d15009346e893de40c686a', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c5890', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:11:35.000Z'}}, {'blockNum': '0xb15e4c', 'uniqueId': '0x0d13055cf54acdb21394ba29bd89181677611d18902af5d4904741281a17ac43:log:74', 'hash': '0x0d13055cf54acdb21394ba29bd89181677611d18902af5d4904741281a17ac43', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1645.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfb0f72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:11:35.000Z'}}, {'blockNum': '0xb15e66', 'uniqueId': '0x6d371b2a7fbffa8421a60b35870af09f372e253316a75d46d959145a5362f27e:log:294', 'hash': '0x6d371b2a7fbffa8421a60b35870af09f372e253316a75d46d959145a5362f27e', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12504.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0774075a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:16:30.000Z'}}, {'blockNum': '0xb15e7e', 'uniqueId': '0x245eedb5547599d84f370b491339fb5bbe5a580018a86e1529af54bfad7f3272:log:208', 'hash': '0x245eedb5547599d84f370b491339fb5bbe5a580018a86e1529af54bfad7f3272', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 28053.0374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10b88dc6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:21:32.000Z'}}, {'blockNum': '0xb15e7e', 'uniqueId': '0xd21f74e98cd151d6bd731994c953bf65c5436577f966820b0368d913267b2c99:log:209', 'hash': '0xd21f74e98cd151d6bd731994c953bf65c5436577f966820b0368d913267b2c99', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:21:32.000Z'}}, {'blockNum': '0xb15e99', 'uniqueId': '0xb5f3c53b7fe7662b32330bc1303f6b5e9765f9d1ff130e951720af65575e6cc5:log:150', 'hash': '0xb5f3c53b7fe7662b32330bc1303f6b5e9765f9d1ff130e951720af65575e6cc5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4be360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:27:20.000Z'}}, {'blockNum': '0xb15ea6', 'uniqueId': '0xe9832984a6244f51d943dca99aba9424777ab51232551e52017d63cee84c8d1a:log:152', 'hash': '0xe9832984a6244f51d943dca99aba9424777ab51232551e52017d63cee84c8d1a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 1238.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbcfed0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:31:16.000Z'}}, {'blockNum': '0xb15eb4', 'uniqueId': '0xd77e8271bbc20302d6de95794565a9626d9d12f953d325551274c09a04c6137f:log:169', 'hash': '0xd77e8271bbc20302d6de95794565a9626d9d12f953d325551274c09a04c6137f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1660.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfd58f4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:33:32.000Z'}}, {'blockNum': '0xb15ec1', 'uniqueId': '0xc21aa388cfe511f3ee75a24b0f4f65edb2024ddedb6aa871dbb957d53d07ad25:log:82', 'hash': '0xc21aa388cfe511f3ee75a24b0f4f65edb2024ddedb6aa871dbb957d53d07ad25', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 31585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12d37d10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:36:34.000Z'}}, {'blockNum': '0xb15eda', 'uniqueId': '0x6c0e03843a0f16f23f93cb2335035c07885c101cc36df93b84019bf767328142:log:93', 'hash': '0x6c0e03843a0f16f23f93cb2335035c07885c101cc36df93b84019bf767328142', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4be360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:41:26.000Z'}}, {'blockNum': '0xb15eda', 'uniqueId': '0x4c2ff4e60a300e2ee05b4b36d2e80c7129b8453745d15241586f9c4e5f82d4dc:log:94', 'hash': '0x4c2ff4e60a300e2ee05b4b36d2e80c7129b8453745d15241586f9c4e5f82d4dc', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1660.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfd58f4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:41:26.000Z'}}, {'blockNum': '0xb15eda', 'uniqueId': '0x20bd4014736cc33ae367f948011459c2a7c694ed6fdbccc1a654618ec1008853:log:95', 'hash': '0x20bd4014736cc33ae367f948011459c2a7c694ed6fdbccc1a654618ec1008853', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1238.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbcfed0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:41:26.000Z'}}, {'blockNum': '0xb15eee', 'uniqueId': '0x60ded14451e189237cbcdbad09fa2edfffa05400fe9f349eb1b71f8b0251caf7:log:171', 'hash': '0x60ded14451e189237cbcdbad09fa2edfffa05400fe9f349eb1b71f8b0251caf7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c3180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:44:18.000Z'}}, {'blockNum': '0xb15ef0', 'uniqueId': '0x3bc8d20bfff14715a3ee482f5150fc5a8ca2dde084bf425cbdc831278a9605b2:log:200', 'hash': '0x3bc8d20bfff14715a3ee482f5150fc5a8ca2dde084bf425cbdc831278a9605b2', 'from': '0x22734e9fcc8285b0e2f46e53c9fb3ee92a28d01f', 'to': '0x43d5648ba63ba5f3d546b1e8cd19e64ad39aab2e', 'value': 540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5265c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:45:01.000Z'}}, {'blockNum': '0xb15ef3', 'uniqueId': '0x2608458f77516bbfa1473a6a7e68581e1f7f42e8cbb42eeece0bf62507270c65:log:267', 'hash': '0x2608458f77516bbfa1473a6a7e68581e1f7f42e8cbb42eeece0bf62507270c65', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 31585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12d37d10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:45:57.000Z'}}, {'blockNum': '0xb15ef4', 'uniqueId': '0x0eb5255a27bc18de8efa0605d6ecc4cee0a81d259ff26dc8d4676bf7117bd018:log:43', 'hash': '0x0eb5255a27bc18de8efa0605d6ecc4cee0a81d259ff26dc8d4676bf7117bd018', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c3180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:46:17.000Z'}}, {'blockNum': '0xb15f54', 'uniqueId': '0xa3529b9e67e21f376d7eb26a5dca129111e0fd779fdc9bd7dd30eab11b50782f:log:118', 'hash': '0xa3529b9e67e21f376d7eb26a5dca129111e0fd779fdc9bd7dd30eab11b50782f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12050980', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:09:02.000Z'}}, {'blockNum': '0xb15f77', 'uniqueId': '0x4d72f1edff13c938e2f6621c6668503deeacc176ae1b6260e7ecacb47d0053d7:log:226', 'hash': '0x4d72f1edff13c938e2f6621c6668503deeacc176ae1b6260e7ecacb47d0053d7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4ca6b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:16:46.000Z'}}, {'blockNum': '0xb15f83', 'uniqueId': '0x959bdab2cdd8ea8716256323a78851744857a19fdc1641c0fda6ac8ce9eac79b:log:136', 'hash': '0x959bdab2cdd8ea8716256323a78851744857a19fdc1641c0fda6ac8ce9eac79b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 1017.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9b3660', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:19:35.000Z'}}, {'blockNum': '0xb15f87', 'uniqueId': '0x55af6e76472b1c552617709537050d5ca3e1366a1fdd9ea2c0f18178caebe5dd:log:176', 'hash': '0x55af6e76472b1c552617709537050d5ca3e1366a1fdd9ea2c0f18178caebe5dd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 118934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x46e3e360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:20:36.000Z'}}, {'blockNum': '0xb15f8c', 'uniqueId': '0x6f3f2d584214cbdb796a37c05016a9a1394ffd5bbbd3b51375c3dafb9d778a4d:log:147', 'hash': '0x6f3f2d584214cbdb796a37c05016a9a1394ffd5bbbd3b51375c3dafb9d778a4d', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12050980', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:21:39.000Z'}}, {'blockNum': '0xb15f9f', 'uniqueId': '0x45e7c7930b84a73f6dc492ec9a8f4f35ab6d6285081f9772266de92e766c3694:log:201', 'hash': '0x45e7c7930b84a73f6dc492ec9a8f4f35ab6d6285081f9772266de92e766c3694', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4ca6b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:26:16.000Z'}}, {'blockNum': '0xb15f9f', 'uniqueId': '0x74c77b1bd4c17cbfc217389ab1e4bf23ccdac90cd256032919f4385ab97068c8:log:202', 'hash': '0x74c77b1bd4c17cbfc217389ab1e4bf23ccdac90cd256032919f4385ab97068c8', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1017.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9b3660', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:26:16.000Z'}}, {'blockNum': '0xb15fc3', 'uniqueId': '0x4e905520cf804859bb057274266a857a828fe00000f3d29418f61a14364e23d9:log:158', 'hash': '0x4e905520cf804859bb057274266a857a828fe00000f3d29418f61a14364e23d9', 'from': '0x668877a76f7b9d74c9af8a9b7c204a186460bf92', 'to': '0xaf0f7108b52f05f8afd024fd8aeec7e0e7058a68', 'value': 3779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0240a130', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:35:20.000Z'}}, {'blockNum': '0xb15fd9', 'uniqueId': '0xe5a51fd5d80c1ba6abf1e2cd98aa55e571ec63e63a4dc945291dd0da6d8fa54d:log:111', 'hash': '0xe5a51fd5d80c1ba6abf1e2cd98aa55e571ec63e63a4dc945291dd0da6d8fa54d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4d1be0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:41:48.000Z'}}, {'blockNum': '0xb15fde', 'uniqueId': '0xfd3cc48527ae42c3b0a50ac844e6d792b83fc432591cdd644e94bbd960a5ab2f:log:65', 'hash': '0xfd3cc48527ae42c3b0a50ac844e6d792b83fc432591cdd644e94bbd960a5ab2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 35936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x156b6600', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:43:56.000Z'}}, {'blockNum': '0xb15fed', 'uniqueId': '0x1ff12208aeb0095af6c157eb456dece450629613d97428a70f1e6140859e65da:log:176', 'hash': '0x1ff12208aeb0095af6c157eb456dece450629613d97428a70f1e6140859e65da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:47:46.000Z'}}, {'blockNum': '0xb15ff1', 'uniqueId': '0x627e2e9241bf74f81cf34c2bb0cf1439d778385fa3e4080fb0c244427a148b7e:log:60', 'hash': '0x627e2e9241bf74f81cf34c2bb0cf1439d778385fa3e4080fb0c244427a148b7e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'value': 4674.9086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c9559e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:49:30.000Z'}}, {'blockNum': '0xb15ff8', 'uniqueId': '0x30eb8bdc0db5649ff10a78a282dde348f5da3a11dd77f0b15772b44c039d0ab1:log:99', 'hash': '0x30eb8bdc0db5649ff10a78a282dde348f5da3a11dd77f0b15772b44c039d0ab1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 948.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x90c298', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:50:37.000Z'}}, {'blockNum': '0xb15ffb', 'uniqueId': '0x2f93463e3ec5d9f0e6a13cae57c962afe76ca3b1162bf56ce13cc806d183369e:log:225', 'hash': '0x2f93463e3ec5d9f0e6a13cae57c962afe76ca3b1162bf56ce13cc806d183369e', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 35936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x156b6600', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:51:11.000Z'}}, {'blockNum': '0xb15ffb', 'uniqueId': '0x872090d24155a3c1cc9947a941f619ab7c027e0a712eb185d024b1c7984bfc81:log:226', 'hash': '0x872090d24155a3c1cc9947a941f619ab7c027e0a712eb185d024b1c7984bfc81', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4d1be0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:51:11.000Z'}}, {'blockNum': '0xb16012', 'uniqueId': '0xb19bde4897591e0b18e1fda0619ef9133c127e4de3b52bc1f67e6a4afbacafc0:log:10', 'hash': '0xb19bde4897591e0b18e1fda0619ef9133c127e4de3b52bc1f67e6a4afbacafc0', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:55:53.000Z'}}, {'blockNum': '0xb16013', 'uniqueId': '0xe964a6fffad0cc03700c82258bdcfe1055a27c4bac4f1d1ff748a397381274e4:log:125', 'hash': '0xe964a6fffad0cc03700c82258bdcfe1055a27c4bac4f1d1ff748a397381274e4', 'from': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4674.9086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c9559e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:55:55.000Z'}}, {'blockNum': '0xb1602e', 'uniqueId': '0x8f8c66db455645c6091c8fd01850c12a4f0aed4985f0f16c426d8597ff9c5bee:log:40', 'hash': '0x8f8c66db455645c6091c8fd01850c12a4f0aed4985f0f16c426d8597ff9c5bee', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 2526.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x018173c8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:01:38.000Z'}}, {'blockNum': '0xb16034', 'uniqueId': '0xdcd63e0a5899b4d7bab5c0beb6352d673d37ba292e99a9b7d025c553da94ad99:log:37', 'hash': '0xdcd63e0a5899b4d7bab5c0beb6352d673d37ba292e99a9b7d025c553da94ad99', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 31640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12dbe180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:03:01.000Z'}}, {'blockNum': '0xb16042', 'uniqueId': '0x4e426e2d0baf8c9e172b70df2ea25e15bb4e19cc3790e40c86f6168f76505a9d:log:72', 'hash': '0x4e426e2d0baf8c9e172b70df2ea25e15bb4e19cc3790e40c86f6168f76505a9d', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 3474.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02123660', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:05:55.000Z'}}, {'blockNum': '0xb1605d', 'uniqueId': '0xc0e1217930ad5d829610a4e132ed09e98611f8c7bc58405035e9887b6ccfcc83:log:300', 'hash': '0xc0e1217930ad5d829610a4e132ed09e98611f8c7bc58405035e9887b6ccfcc83', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 31640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12dbe180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:11:49.000Z'}}, {'blockNum': '0xb16063', 'uniqueId': '0x5075d7af39d1f2f86b19d4dd36bc5f60bd5d33b97d3f7aae9c707caa0996864e:log:137', 'hash': '0x5075d7af39d1f2f86b19d4dd36bc5f60bd5d33b97d3f7aae9c707caa0996864e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4bbc50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:12:40.000Z'}}, {'blockNum': '0xb16074', 'uniqueId': '0x2684baf748bcbba453a2167391e93dbe22827555281c3b48a8c6aadf829a4dec:log:102', 'hash': '0x2684baf748bcbba453a2167391e93dbe22827555281c3b48a8c6aadf829a4dec', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 32417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13527110', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:15:54.000Z'}}, {'blockNum': '0xb16083', 'uniqueId': '0x7f6c55cbf71bc3142fd20b6ce4c1ede6e4f6a997e5f47543f708469c98f221ff:log:112', 'hash': '0x7f6c55cbf71bc3142fd20b6ce4c1ede6e4f6a997e5f47543f708469c98f221ff', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7510.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047a06d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:19:23.000Z'}}, {'blockNum': '0xb1608c', 'uniqueId': '0x2ec34aedf11720b0557b0d46d0baa00392446193151ff3be8ea890e7184cb957:log:102', 'hash': '0x2ec34aedf11720b0557b0d46d0baa00392446193151ff3be8ea890e7184cb957', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 32417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13527110', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:22:10.000Z'}}, {'blockNum': '0xb1608c', 'uniqueId': '0xa686a924452fce17dcb8528f0737be02a74220ecb2c986c647a43c6ae6ca78d0:log:103', 'hash': '0xa686a924452fce17dcb8528f0737be02a74220ecb2c986c647a43c6ae6ca78d0', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4bbc50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:22:10.000Z'}}, {'blockNum': '0xb1608c', 'uniqueId': '0xa59aba2c319da86c103d6b766c7a44c3edd524d246fed3bc181d0a8a260b4560:log:104', 'hash': '0xa59aba2c319da86c103d6b766c7a44c3edd524d246fed3bc181d0a8a260b4560', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7510.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047a06d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:22:10.000Z'}}, {'blockNum': '0xb160b0', 'uniqueId': '0xbde9c275d5f7b2e04b8c661d5ee27c41d3c6d61e2372790daf431d93bd65831c:log:60', 'hash': '0xbde9c275d5f7b2e04b8c661d5ee27c41d3c6d61e2372790daf431d93bd65831c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20600.1634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4755e2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:31:25.000Z'}}, {'blockNum': '0xb160b8', 'uniqueId': '0xa9b45715b754ece85217f01284ec20cff0389d98fd1506edf4e0574221bf6f4e:log:26', 'hash': '0xa9b45715b754ece85217f01284ec20cff0389d98fd1506edf4e0574221bf6f4e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:32:53.000Z'}}, {'blockNum': '0xb160c8', 'uniqueId': '0x52c74d6fe4a3a1be58831814fd0c3a373ed40593b86fd5a66e69b533b945ebd4:log:133', 'hash': '0x52c74d6fe4a3a1be58831814fd0c3a373ed40593b86fd5a66e69b533b945ebd4', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20600.1634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4755e2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:37:34.000Z'}}, {'blockNum': '0xb160ca', 'uniqueId': '0xc0dc5d525fd02982c6eb6c31e76f16f670c3af19d57ab56e1286dd909a24f5a5:log:166', 'hash': '0xc0dc5d525fd02982c6eb6c31e76f16f670c3af19d57ab56e1286dd909a24f5a5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x123f2c50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:37:38.000Z'}}, {'blockNum': '0xb160df', 'uniqueId': '0xbbda20cf53faaffff353a48d6f551e4b93b69863017c7fafd9d0c7d5cdcee5fe:log:107', 'hash': '0xbbda20cf53faaffff353a48d6f551e4b93b69863017c7fafd9d0c7d5cdcee5fe', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:41:22.000Z'}}, {'blockNum': '0xb160e9', 'uniqueId': '0x1b24a7d09193a642afdd556c430e6b812568334acc8224beed8783fa99de2b86:log:28', 'hash': '0x1b24a7d09193a642afdd556c430e6b812568334acc8224beed8783fa99de2b86', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7520.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047b9928', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:42:46.000Z'}}, {'blockNum': '0xb160f9', 'uniqueId': '0x819ffd1a1a13bf0d18769244e1a202cbd4f493175304a11c49816f40133ff491:log:28', 'hash': '0x819ffd1a1a13bf0d18769244e1a202cbd4f493175304a11c49816f40133ff491', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x123f2c50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:45:59.000Z'}}, {'blockNum': '0xb16100', 'uniqueId': '0x976ec3ad8ef324a4973a821f2b4ecf1e3a3b1fc25dc5c06132b5b4099da12637:log:115', 'hash': '0x976ec3ad8ef324a4973a821f2b4ecf1e3a3b1fc25dc5c06132b5b4099da12637', 'from': '0x688ce0199ff85bc4288d38ee86a20a1cea4ae512', 'to': '0x3eccea963b453963d3e7a053515f337d7e35992f', 'value': 58.439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08eac6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:46:47.000Z'}}, {'blockNum': '0xb16114', 'uniqueId': '0x4517dbcf6004e96114d3c4c4d5e5f5edf718bd732a2df482f2e4b6f8d57f42e6:log:232', 'hash': '0x4517dbcf6004e96114d3c4c4d5e5f5edf718bd732a2df482f2e4b6f8d57f42e6', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7520.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047b9928', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:51:46.000Z'}}, {'blockNum': '0xb16146', 'uniqueId': '0x66484770613b92eaca1e3f079e5341adcc3ac6d527a6b70f2765f83aa1b6c04e:log:20', 'hash': '0x66484770613b92eaca1e3f079e5341adcc3ac6d527a6b70f2765f83aa1b6c04e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7492.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04773bf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:01:14.000Z'}}, {'blockNum': '0xb1614b', 'uniqueId': '0x7f76348cd4521fe84ab2385fdd2f13c559cd85762f05c69e004a2630b5378399:log:157', 'hash': '0x7f76348cd4521fe84ab2385fdd2f13c559cd85762f05c69e004a2630b5378399', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20651.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f385e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:02:34.000Z'}}, {'blockNum': '0xb16166', 'uniqueId': '0x56602af9c0aaca9a729999866f96af75f42b8e20419d787d524bd00357dfc611:log:207', 'hash': '0x56602af9c0aaca9a729999866f96af75f42b8e20419d787d524bd00357dfc611', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11f61560', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:08:45.000Z'}}, {'blockNum': '0xb16177', 'uniqueId': '0x1d6f6b7016fcb1f9b19c3443612c24db695f7eaa153a7dfd1d9f56730a8c152e:log:219', 'hash': '0x1d6f6b7016fcb1f9b19c3443612c24db695f7eaa153a7dfd1d9f56730a8c152e', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20651.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f385e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:12:20.000Z'}}, {'blockNum': '0xb16184', 'uniqueId': '0xdfd362de2b8ad0c27e7eaa175aea49b13e869a7ecf11cc8a296de628d6053bc7:log:181', 'hash': '0xdfd362de2b8ad0c27e7eaa175aea49b13e869a7ecf11cc8a296de628d6053bc7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0900fe20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:14:37.000Z'}}, {'blockNum': '0xb1619a', 'uniqueId': '0xef5d0c186a4eb65f35aa044d6b5f3d5b0b14534baf5c438af327447595582c21:log:67', 'hash': '0xef5d0c186a4eb65f35aa044d6b5f3d5b0b14534baf5c438af327447595582c21', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'value': 4708.261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ce6c72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:20:21.000Z'}}, {'blockNum': '0xb1619c', 'uniqueId': '0xc8154bd1e799aa0c229a79dd2ad8aa46d2fd2fd558ec5d9865c142948c8e5f17:log:192', 'hash': '0xc8154bd1e799aa0c229a79dd2ad8aa46d2fd2fd558ec5d9865c142948c8e5f17', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7492.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04773bf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:20:54.000Z'}}, {'blockNum': '0xb1619d', 'uniqueId': '0x497776a66b4cc28e0d4a977076e9ad8750b17c65d488876e44200f96c13ab54c:log:39', 'hash': '0x497776a66b4cc28e0d4a977076e9ad8750b17c65d488876e44200f96c13ab54c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7371.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0464c180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:21:15.000Z'}}, {'blockNum': '0xb1619f', 'uniqueId': '0x873ead121eca6ae03842096abb8b66bf1d97ad7423baef28e491d41c22fdc93f:log:300', 'hash': '0x873ead121eca6ae03842096abb8b66bf1d97ad7423baef28e491d41c22fdc93f', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11f61560', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:22:36.000Z'}}, {'blockNum': '0xb161a6', 'uniqueId': '0x1e1102656e7442cd69eb5b58f1ddcfbecee4102075f1d0f364f127b77309beaf:log:71', 'hash': '0x1e1102656e7442cd69eb5b58f1ddcfbecee4102075f1d0f364f127b77309beaf', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1242d5d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:23:15.000Z'}}, {'blockNum': '0xb161b5', 'uniqueId': '0x71f117ba11c017337b24ab999161fb7afa6dfc748b1687b4d7378909514edd75:log:265', 'hash': '0x71f117ba11c017337b24ab999161fb7afa6dfc748b1687b4d7378909514edd75', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1242d5d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:26:11.000Z'}}, {'blockNum': '0xb161b6', 'uniqueId': '0xa502c660598ee8ef63c54d535fbb00d84c06e77d01eaba15777ea729ff8b9e8e:log:43', 'hash': '0xa502c660598ee8ef63c54d535fbb00d84c06e77d01eaba15777ea729ff8b9e8e', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0900fe20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:26:37.000Z'}}, {'blockNum': '0xb161c7', 'uniqueId': '0x97467ca8b7278bd79d7fb848cbce2e7d5114943f56bff892cfa7153c4f8b30a8:log:70', 'hash': '0x97467ca8b7278bd79d7fb848cbce2e7d5114943f56bff892cfa7153c4f8b30a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c667040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:28:30.000Z'}}, {'blockNum': '0xb161d2', 'uniqueId': '0x9b2089474ed5dcfc100347f927a6ca17c25433b30c0b82750e5b3980946562a6:log:238', 'hash': '0x9b2089474ed5dcfc100347f927a6ca17c25433b30c0b82750e5b3980946562a6', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c667040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:02.000Z'}}, {'blockNum': '0xb161d2', 'uniqueId': '0x53bd63d3393580e5033818aad9bd79607cbe075b5736919abb7956720a82224c:log:240', 'hash': '0x53bd63d3393580e5033818aad9bd79607cbe075b5736919abb7956720a82224c', 'from': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4708.261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ce6c72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:02.000Z'}}, {'blockNum': '0xb161e7', 'uniqueId': '0xab9b01436f6964e8301464f357f5565a95c275651bee4dd6e66b6f8a80a14d32:log:40', 'hash': '0xab9b01436f6964e8301464f357f5565a95c275651bee4dd6e66b6f8a80a14d32', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 29997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e12dd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:35:50.000Z'}}, {'blockNum': '0xb16207', 'uniqueId': '0xf02c796e13c2c42e614c02dc6f42d910bae7499a06fa38286020bf4bb99a4f8d:log:41', 'hash': '0xf02c796e13c2c42e614c02dc6f42d910bae7499a06fa38286020bf4bb99a4f8d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1585.418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf1ea64', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:42:44.000Z'}}, {'blockNum': '0xb16214', 'uniqueId': '0xd0a40facf08652e2fc98b3ca5bc785585d7d45a873f3267226e7b667e34d7f3c:log:82', 'hash': '0xd0a40facf08652e2fc98b3ca5bc785585d7d45a873f3267226e7b667e34d7f3c', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 29997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e12dd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:46:11.000Z'}}, {'blockNum': '0xb1621b', 'uniqueId': '0x90d1c2e68f70710b2cfbdb8c2be4f4d5c544c2f2d4be2b9dd4576938a2821b88:log:51', 'hash': '0x90d1c2e68f70710b2cfbdb8c2be4f4d5c544c2f2d4be2b9dd4576938a2821b88', 'from': '0xe10941f8c4258ec4caed4e4bdbee0fcefa000823', 'to': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:47:28.000Z'}}, {'blockNum': '0xb1621d', 'uniqueId': '0x32232dbbf953f0252f149f0d3407765f75466bab3b7cd99702fd7f3c28d42175:log:28', 'hash': '0x32232dbbf953f0252f149f0d3407765f75466bab3b7cd99702fd7f3c28d42175', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8fe0d5ae54c3ededc340b215d874d3f23134248a', 'value': 103.4247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fc807', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:47:46.000Z'}}, {'blockNum': '0xb1622b', 'uniqueId': '0x518c100a73243a936b77e6cb9ade43aa2fde24e436512f3d6d196a0458e90516:log:101', 'hash': '0x518c100a73243a936b77e6cb9ade43aa2fde24e436512f3d6d196a0458e90516', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1585.418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf1ea64', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:51:22.000Z'}}, {'blockNum': '0xb16238', 'uniqueId': '0xa289ef9c8d04fa961154519bca6b8dafb2a5e042a16fdb1ae6e23058a409c945:log:190', 'hash': '0xa289ef9c8d04fa961154519bca6b8dafb2a5e042a16fdb1ae6e23058a409c945', 'from': '0x65b84795becff238d7864c23f6b13bedffa1a812', 'to': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'value': 693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x69be50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:53:58.000Z'}}, {'blockNum': '0xb1623a', 'uniqueId': '0xcdb50d068166aec3488ef5b2fd5518f7b7bf73cc03ea40f77107499170e8d17f:log:102', 'hash': '0xcdb50d068166aec3488ef5b2fd5518f7b7bf73cc03ea40f77107499170e8d17f', 'from': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'to': '0x136fdadd377fc44c7b0459bf031d9527578ec802', 'value': 375.5765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x394ef5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:54:05.000Z'}}, {'blockNum': '0xb16240', 'uniqueId': '0x337d358a8c4de2f4f59297eb55c0b08e586ca78a9bc09ca435256abadcfb5aed:log:148', 'hash': '0x337d358a8c4de2f4f59297eb55c0b08e586ca78a9bc09ca435256abadcfb5aed', 'from': '0x8fe0d5ae54c3ededc340b215d874d3f23134248a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 103.4247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fc807', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:56:17.000Z'}}, {'blockNum': '0xb16240', 'uniqueId': '0xcb7c21326936e2d7baa768640c420c07463760da25a6122714f92ec670a72c32:log:151', 'hash': '0xcb7c21326936e2d7baa768640c420c07463760da25a6122714f92ec670a72c32', 'from': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:56:17.000Z'}}, {'blockNum': '0xb16249', 'uniqueId': '0xdc447d7fa558cd63268dc939849f32528365db10fa8941222ce2569adb6e028b:log:19', 'hash': '0xdc447d7fa558cd63268dc939849f32528365db10fa8941222ce2569adb6e028b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 11648.1736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f15ec8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:57:51.000Z'}}, {'blockNum': '0xb16258', 'uniqueId': '0x0b9ccb20c1281749cc211d6717c5e98adf3d335a670925a03fe8ce274a3cb288:log:224', 'hash': '0x0b9ccb20c1281749cc211d6717c5e98adf3d335a670925a03fe8ce274a3cb288', 'from': '0x44269eee0305b110be271c0570ab2be5b7843215', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5193.927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031887c6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:22.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0x7650c06b391e2b4301daf4a72dadf188dc0bb9d0aecfb061e8d8522fbfed3e2e:log:41', 'hash': '0x7650c06b391e2b4301daf4a72dadf188dc0bb9d0aecfb061e8d8522fbfed3e2e', 'from': '0x1bc975bcda00d3ca908af56843b3bb1731d4bbcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0x659df72351cdc9d285aaf73d05b58f6cade7395b25492a37430b9f197de9151e:log:45', 'hash': '0x659df72351cdc9d285aaf73d05b58f6cade7395b25492a37430b9f197de9151e', 'from': '0xe60c68e1c5918dc0a284de7148b52b45a90654a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4812.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02de458e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0x82ebf1d2a47d343ba1dcf79025ca6001fe90e5b148902016df1458923bbfed9b:log:50', 'hash': '0x82ebf1d2a47d343ba1dcf79025ca6001fe90e5b148902016df1458923bbfed9b', 'from': '0x45ce011dab9bf83a5e22b987bfa279f10872e260', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x035ff3e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0xac3a365b217091fe38b7d0f71de07cb96d5b9b68d216ed039c9b190fefb801eb:log:61', 'hash': '0xac3a365b217091fe38b7d0f71de07cb96d5b9b68d216ed039c9b190fefb801eb', 'from': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5180.8452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031688c4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb1625b', 'uniqueId': '0x5475e3c42b7c197ed08193df87f9fddb8b5f2f19637d9b47c7a0c77cfd7939ed:log:13', 'hash': '0x5475e3c42b7c197ed08193df87f9fddb8b5f2f19637d9b47c7a0c77cfd7939ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 33001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13ab8d90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:58.000Z'}}, {'blockNum': '0xb1626f', 'uniqueId': '0x11ab0d4de25292ae9f8cc7dce579251c7b85a9be5bbc2bcd97312ffebfd59640:log:190', 'hash': '0x11ab0d4de25292ae9f8cc7dce579251c7b85a9be5bbc2bcd97312ffebfd59640', 'from': '0xe10941f8c4258ec4caed4e4bdbee0fcefa000823', 'to': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'value': 175.8479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1ad50f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:04:40.000Z'}}, {'blockNum': '0xb16271', 'uniqueId': '0x22ddf55d623f7443fe8c437be875a23a106c4e9a8572d0516d9c5ff6c3e3d473:log:177', 'hash': '0x22ddf55d623f7443fe8c437be875a23a106c4e9a8572d0516d9c5ff6c3e3d473', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:05:36.000Z'}}, {'blockNum': '0xb16272', 'uniqueId': '0xfa307587e7a7af8f48b16d3b86f1faf364d218a6274067e8078af521ed413128:log:319', 'hash': '0xfa307587e7a7af8f48b16d3b86f1faf364d218a6274067e8078af521ed413128', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11648.1736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f15ec8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:06:05.000Z'}}, {'blockNum': '0xb16284', 'uniqueId': '0x3ff23b965237742646c3e00d8a47a6db66fac1fbd53aa1f5bba294e7ac3f1188:log:100', 'hash': '0x3ff23b965237742646c3e00d8a47a6db66fac1fbd53aa1f5bba294e7ac3f1188', 'from': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'to': '0xf977814e90da44bfa03b6295a0616a897441acec', 'value': 4955201.3767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b8987b9c7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:10:33.000Z'}}, {'blockNum': '0xb16288', 'uniqueId': '0xb333730bee395b34e4267d51825b849da3391ef1a9118fa27ff53b06b3d00e47:log:170', 'hash': '0xb333730bee395b34e4267d51825b849da3391ef1a9118fa27ff53b06b3d00e47', 'from': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 175.8479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1ad50f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:11:30.000Z'}}, {'blockNum': '0xb1629a', 'uniqueId': '0xf947b20fb0ae493a3b59525d7ad140c440d969f97a2a6a3475ad2c91b55b0643:log:7', 'hash': '0xf947b20fb0ae493a3b59525d7ad140c440d969f97a2a6a3475ad2c91b55b0643', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 32395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x134f15b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:15:03.000Z'}}, {'blockNum': '0xb1629a', 'uniqueId': '0x9b78ddfb02bf6942ea9d1682bed9e3625fe49fe0ac4a6ae5d2ef81c2131db834:log:14', 'hash': '0x9b78ddfb02bf6942ea9d1682bed9e3625fe49fe0ac4a6ae5d2ef81c2131db834', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ca21ff780d37951892ad694867270daf311c603', 'value': 2140.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0146aa36', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:15:03.000Z'}}, {'blockNum': '0xb1629e', 'uniqueId': '0xdb51a0982b9228a15b0a636f464f1cf23a42cb4baf9b798920c1ff8b7cab6e6b:log:87', 'hash': '0xdb51a0982b9228a15b0a636f464f1cf23a42cb4baf9b798920c1ff8b7cab6e6b', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1255201.3767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ec2887c7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:16:19.000Z'}}, {'blockNum': '0xb1629e', 'uniqueId': '0xae686423a12fd0c209e4e9b698b35a0aa1d004a94e975ffc14537a321453371b:log:242', 'hash': '0xae686423a12fd0c209e4e9b698b35a0aa1d004a94e975ffc14537a321453371b', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 65396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x26faa340', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:16:19.000Z'}}, {'blockNum': '0xb162ad', 'uniqueId': '0x4879aa8208a6fc3c6bbe64b326701a798887c3473066dce4b9b848176cf6b52e:log:10', 'hash': '0x4879aa8208a6fc3c6bbe64b326701a798887c3473066dce4b9b848176cf6b52e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 248612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x942f2e40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:19:17.000Z'}}, {'blockNum': '0xb162ad', 'uniqueId': '0x1aa7f51851877b8827ff112b6cd926fc54f52c4c77b0c04a6d5c410d7208d9fe:log:11', 'hash': '0x1aa7f51851877b8827ff112b6cd926fc54f52c4c77b0c04a6d5c410d7208d9fe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 230363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x894e9ab0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:19:17.000Z'}}, {'blockNum': '0xb162ad', 'uniqueId': '0xdd9c4f145eec8f80165650c8c176ce530e4b344e0b46acb89ec5f73af3c6c3d4:log:12', 'hash': '0xdd9c4f145eec8f80165650c8c176ce530e4b344e0b46acb89ec5f73af3c6c3d4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 243528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x91276c80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:19:17.000Z'}}, {'blockNum': '0xb162ba', 'uniqueId': '0x9f17d06f36eb3704a138211a77928aa306ef8b66f0dacb820104fa85e5d6a4f9:log:15', 'hash': '0x9f17d06f36eb3704a138211a77928aa306ef8b66f0dacb820104fa85e5d6a4f9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa647bc744c8cf76c3e27bf9b9bca1af091385035', 'value': 3880.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02500e04', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:20:52.000Z'}}, {'blockNum': '0xb162bc', 'uniqueId': '0x10c803dd0582121103709423126bddad57f1200cc14bad214b9be319cd4fb2b8:log:44', 'hash': '0x10c803dd0582121103709423126bddad57f1200cc14bad214b9be319cd4fb2b8', 'from': '0x2ca21ff780d37951892ad694867270daf311c603', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2140.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0146aa36', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:21:26.000Z'}}, {'blockNum': '0xb162c2', 'uniqueId': '0x011c6e4993588d119674c8087372716d954a98822f2753bf4a8196c9917d3052:log:111', 'hash': '0x011c6e4993588d119674c8087372716d954a98822f2753bf4a8196c9917d3052', 'from': '0x1bb90f54ef1a1e2632bbce7f9347855e28bcae57', 'to': '0x47ebe1200e4442d38c3531e79c2a7ea1f7d82312', 'value': 852.964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8226e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:22:01.000Z'}}, {'blockNum': '0xb162de', 'uniqueId': '0x304e170c442d8791901f2db5b6aa49ad69b0cea56762b89244cc2f6ae31065f6:log:111', 'hash': '0x304e170c442d8791901f2db5b6aa49ad69b0cea56762b89244cc2f6ae31065f6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1607.463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf54786', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:26:16.000Z'}}, {'blockNum': '0xb162e8', 'uniqueId': '0x82e041f9ecb52bf2d91098687ca583df4656ca3526acd42ad780941175cbc1b0:log:57', 'hash': '0x82e041f9ecb52bf2d91098687ca583df4656ca3526acd42ad780941175cbc1b0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12001.2774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07273fe6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:07.000Z'}}, {'blockNum': '0xb162ea', 'uniqueId': '0xa0ce09dc278054ebac93881bb7e810a4c89515823a7a97a23fe0e3520b21ca4f:log:7', 'hash': '0xa0ce09dc278054ebac93881bb7e810a4c89515823a7a97a23fe0e3520b21ca4f', 'from': '0xa139913d52b99094a96d972c89fd2340d3e5a872', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4680.302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ca284c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:31.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x5742f20972ae3b9f27409a91b2e656ac88fef6b529cc5d6485198e1dae76126d:log:222', 'hash': '0x5742f20972ae3b9f27409a91b2e656ac88fef6b529cc5d6485198e1dae76126d', 'from': '0x85a4f76b227aa5d300fca5996ed9a598e9f99013', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4006.7918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0263634e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x4ba5d320d36febbf08a0686d667b083ec86c5939da8b005503cc13d7d0268b7f:log:223', 'hash': '0x4ba5d320d36febbf08a0686d667b083ec86c5939da8b005503cc13d7d0268b7f', 'from': '0xd5eb1561221ee2180d9f4d4652aca3e117888162', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02625a00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0xc12019f0e6f74274dd486f3a90dc246df7458214e60b2a787811865948946c00:log:224', 'hash': '0xc12019f0e6f74274dd486f3a90dc246df7458214e60b2a787811865948946c00', 'from': '0xbef53d1475912e99aa7ca804e940819fc5dc0e72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02aea540', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x29a1d97ebc64041de3870cef1795a5dd811811abbeb7e01312338451e08d684d:log:226', 'hash': '0x29a1d97ebc64041de3870cef1795a5dd811811abbeb7e01312338451e08d684d', 'from': '0xfc7c1aa14a1041035bdec339ca1b043f69f2c1a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4098.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x027167b6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x90bc9698d5acd8017cdbf42dfabf85f4dd246e4239cd98844d14341014c97f18:log:230', 'hash': '0x90bc9698d5acd8017cdbf42dfabf85f4dd246e4239cd98844d14341014c97f18', 'from': '0xf795b99220c119675d82e5ce37606a035121a5b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3971.7991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x025e0c67', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x81ef28512f05bccde07646413edae7286b39e98c0073d918a3b48cb1289b9a11:log:231', 'hash': '0x81ef28512f05bccde07646413edae7286b39e98c0073d918a3b48cb1289b9a11', 'from': '0x577b7fde2cde3ca178986845ad9641d66d10f59c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02625a00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb16303', 'uniqueId': '0x988ba4e1ca51596a6d5d51f056aeb01e0d5b8ea443f99080e5daaad2baa2ed4f:log:295', 'hash': '0x988ba4e1ca51596a6d5d51f056aeb01e0d5b8ea443f99080e5daaad2baa2ed4f', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12001.2774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07273fe6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:36:11.000Z'}}, {'blockNum': '0xb16303', 'uniqueId': '0x257745839b9ac2b4b4701f34dd506af8865081778d96f3b6cb763ac861828ac5:log:296', 'hash': '0x257745839b9ac2b4b4701f34dd506af8865081778d96f3b6cb763ac861828ac5', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1607.463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf54786', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:36:11.000Z'}}, {'blockNum': '0xb1635d', 'uniqueId': '0x117f3be9d660e013dff0910ce906712ea62c0c9ac72ff44eaa0c63f1016c8e41:log:39', 'hash': '0x117f3be9d660e013dff0910ce906712ea62c0c9ac72ff44eaa0c63f1016c8e41', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20636.0857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4cd119', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:00:32.000Z'}}, {'blockNum': '0xb1635d', 'uniqueId': '0x63d98f630b5c52bba529053f0707ecbe7f04b83de8bd65c74c6948de66a184eb:log:77', 'hash': '0x63d98f630b5c52bba529053f0707ecbe7f04b83de8bd65c74c6948de66a184eb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1212ec30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:00:32.000Z'}}, {'blockNum': '0xb1638c', 'uniqueId': '0x90fbdec9283d7360f3e4e35faaf0abd006aeba154ae10894abb6f4c9fcd42fbe:log:20', 'hash': '0x90fbdec9283d7360f3e4e35faaf0abd006aeba154ae10894abb6f4c9fcd42fbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12960.0009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07b98a09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:09:37.000Z'}}, {'blockNum': '0xb16390', 'uniqueId': '0x13af7190e12837a31f9c87f95ab23f4b7e770833566e8c59f46252dcbbaa4827:log:8', 'hash': '0x13af7190e12837a31f9c87f95ab23f4b7e770833566e8c59f46252dcbbaa4827', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe8d20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:10:13.000Z'}}, {'blockNum': '0xb16398', 'uniqueId': '0x363702e69ebc703d03cbf8195b8d71ab797a4b046209dfa82a290d72886fef4c:log:115', 'hash': '0x363702e69ebc703d03cbf8195b8d71ab797a4b046209dfa82a290d72886fef4c', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1212ec30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:11:21.000Z'}}, {'blockNum': '0xb163a9', 'uniqueId': '0x3215e83624c333944912fe61f0eb32e9d4aefdf29d346784d8eeddaac2430727:log:49', 'hash': '0x3215e83624c333944912fe61f0eb32e9d4aefdf29d346784d8eeddaac2430727', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe8d20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:15:57.000Z'}}, {'blockNum': '0xb163a9', 'uniqueId': '0x54c19dc495caa07bdc41a837a20545140b0b67c79f8a45d00af7971c13e82566:log:50', 'hash': '0x54c19dc495caa07bdc41a837a20545140b0b67c79f8a45d00af7971c13e82566', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12960.0009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07b98a09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:15:57.000Z'}}, {'blockNum': '0xb163cd', 'uniqueId': '0x00aeafcf538d0bd6e041e2fb13dfccfaf6d85d39db89cadd538d93be86cf86e2:log:121', 'hash': '0x00aeafcf538d0bd6e041e2fb13dfccfaf6d85d39db89cadd538d93be86cf86e2', 'from': '0x33ce729ec6d76a138ce3d550db1e6504d3c41c29', 'to': '0x8358d831ef282b8f485d627f3f6a517e799a6071', 'value': 377.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x399a18', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:23:12.000Z'}}, {'blockNum': '0xb163e8', 'uniqueId': '0x6be39aed1852a34e36aa08c18cbb2441415b2a3bdfde5661d74c7d690537b236:log:6', 'hash': '0x6be39aed1852a34e36aa08c18cbb2441415b2a3bdfde5661d74c7d690537b236', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7002.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x042c8ae0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:27:23.000Z'}}, {'blockNum': '0xb163eb', 'uniqueId': '0x498bb50964db0d58ae27b958eabe63556c83e048edbde315ffd731eef9484342:log:77', 'hash': '0x498bb50964db0d58ae27b958eabe63556c83e048edbde315ffd731eef9484342', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 13125.1434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07d2bcea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:27:57.000Z'}}, {'blockNum': '0xb16412', 'uniqueId': '0x6881d5b47926c747ab837f615681e99c93e02ab3c1e2fa1bed9edd780a7d87de:log:77', 'hash': '0x6881d5b47926c747ab837f615681e99c93e02ab3c1e2fa1bed9edd780a7d87de', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 14374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08914c60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:36:03.000Z'}}, {'blockNum': '0xb16412', 'uniqueId': '0x9d250371d72549da3327699bb752c6420239104fda57ab7f6a3d2cc456ac5b81:log:78', 'hash': '0x9d250371d72549da3327699bb752c6420239104fda57ab7f6a3d2cc456ac5b81', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13125.1434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07d2bcea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:36:03.000Z'}}, {'blockNum': '0xb1643c', 'uniqueId': '0xebb0c41bc27777285e9a4a12abaacfd9329b7b011954c8f135608ee6c50fbbd0:log:42', 'hash': '0xebb0c41bc27777285e9a4a12abaacfd9329b7b011954c8f135608ee6c50fbbd0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbc6b64e8760bb98b6e96d13377c816a1625ca66e', 'value': 590.4817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5a19b1', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:44:14.000Z'}}, {'blockNum': '0xb16459', 'uniqueId': '0x3983b93513def30a5c0f321b23d33669e96b611eb41b6d7afa9e04bd3c4fbad2:log:213', 'hash': '0x3983b93513def30a5c0f321b23d33669e96b611eb41b6d7afa9e04bd3c4fbad2', 'from': '0xbc6b64e8760bb98b6e96d13377c816a1625ca66e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 590.4817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5a19b1', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:51:48.000Z'}}, {'blockNum': '0xb16466', 'uniqueId': '0xd0bd3eb8680318395781c79602ff65aeb49e9ba93528ba699e1cb5aabe7bf5be:log:40', 'hash': '0xd0bd3eb8680318395781c79602ff65aeb49e9ba93528ba699e1cb5aabe7bf5be', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'value': 4701.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02cd5b48', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:54:14.000Z'}}, {'blockNum': '0xb16478', 'uniqueId': '0x995481f61e5dadf0b5f3b89b285155d5a5c94cbc440271fe848757e93fa48b76:log:6', 'hash': '0x995481f61e5dadf0b5f3b89b285155d5a5c94cbc440271fe848757e93fa48b76', 'from': '0x9f3fa770caea12bbe7ac34c3ede71708fa2a14d1', 'to': '0x6f53c92afa1315946fb969671c7e7a54932b8e85', 'value': 900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x895440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:57:37.000Z'}}, {'blockNum': '0xb1647c', 'uniqueId': '0x4c6876b9b989cebc318112ccdff606a1b1423e1927c1bf215542b0c2593d1ba9:log:76', 'hash': '0x4c6876b9b989cebc318112ccdff606a1b1423e1927c1bf215542b0c2593d1ba9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x122589d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:58:00.000Z'}}, {'blockNum': '0xb16484', 'uniqueId': '0x023f66d0fbe7a5e27cdcb979c9e802dd14863eee0587097c0be54e5b6d3317b0:log:158', 'hash': '0x023f66d0fbe7a5e27cdcb979c9e802dd14863eee0587097c0be54e5b6d3317b0', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4094.0299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0270b30b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:00:30.000Z'}}, {'blockNum': '0xb1648a', 'uniqueId': '0x374d7c611ec98d7e431bce3b839b0deee14132793d259693d85eaf54f94c189e:log:203', 'hash': '0x374d7c611ec98d7e431bce3b839b0deee14132793d259693d85eaf54f94c189e', 'from': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4701.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02cd5b48', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:02:42.000Z'}}, {'blockNum': '0xb16497', 'uniqueId': '0x8b4df978c92d4d53f6cebd3fdf92bd6a143297fdafa61758de125b8a339b4a8b:log:14', 'hash': '0x8b4df978c92d4d53f6cebd3fdf92bd6a143297fdafa61758de125b8a339b4a8b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 5469.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03429070', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:04:26.000Z'}}, {'blockNum': '0xb1649f', 'uniqueId': '0xcd9cc2a6de422f97ade9750b1ea8398aa870ed41c87b87d282bebaf57f3e99b0:log:194', 'hash': '0xcd9cc2a6de422f97ade9750b1ea8398aa870ed41c87b87d282bebaf57f3e99b0', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x122589d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:05:52.000Z'}}, {'blockNum': '0xb164b7', 'uniqueId': '0x533a7a485bd7e21a136b71d0c6fd6989a7b81bce9b716353da8422ad56fa19f4:log:260', 'hash': '0x533a7a485bd7e21a136b71d0c6fd6989a7b81bce9b716353da8422ad56fa19f4', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 5469.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03429070', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:11:19.000Z'}}, {'blockNum': '0xb164d6', 'uniqueId': '0xc210543977f073007ee87dc03d613caca2513935dc0df56e9c3814db402ea176:log:128', 'hash': '0xc210543977f073007ee87dc03d613caca2513935dc0df56e9c3814db402ea176', 'from': '0xaf0f7108b52f05f8afd024fd8aeec7e0e7058a68', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0240a130', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:19:42.000Z'}}, {'blockNum': '0xb16506', 'uniqueId': '0xad9576afe9775d435c707f9309040b661eda3e656433de3a8d3d0c70b510c9f6:log:14', 'hash': '0xad9576afe9775d435c707f9309040b661eda3e656433de3a8d3d0c70b510c9f6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x021ae57e099edd362922f57b399b8aac2d19cf35', 'value': 732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6fb1c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:29:43.000Z'}}, {'blockNum': '0xb16513', 'uniqueId': '0xf0603a425418a863a53a9853a31a901cd67f2b079b0b902d7050bcaa9c3d0fbb:log:34', 'hash': '0xf0603a425418a863a53a9853a31a901cd67f2b079b0b902d7050bcaa9c3d0fbb', 'from': '0x021ae57e099edd362922f57b399b8aac2d19cf35', 'to': '0x031565e3720ae669b360e8d13c7df047947a6537', 'value': 721.4248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6e14a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:33:02.000Z'}}, {'blockNum': '0xb1654f', 'uniqueId': '0x1cb41a5e2fa20aaf89ef8eb5c5f4238010b28af7e7a52e5f38935d20b558af7b:log:67', 'hash': '0x1cb41a5e2fa20aaf89ef8eb5c5f4238010b28af7e7a52e5f38935d20b558af7b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 6514.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e208a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:46:33.000Z'}}, {'blockNum': '0xb16573', 'uniqueId': '0xf3b23bef823b1624267fd2a5ff9fea3e799f1b903d78ef3c9758edfacace13db:log:262', 'hash': '0xf3b23bef823b1624267fd2a5ff9fea3e799f1b903d78ef3c9758edfacace13db', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6514.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e208a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:56:14.000Z'}}]}}
Number of returned transfers:  306
Answer is complete
 
symbol           YOYOW
group              C4P
date        2018-05-12
hour             18:02
exchange       binance
Name: 361, dtype: object
HERE
 Symbol: YOYOW, Contract: 
Datetime timestamps:  2018-05-12 18:02:00 2018-05-12 06:02:00 2018-05-13 06:02:00
Unix timestamps:  1526097720.0 1526184120.0
Hex Block Numbers:  0x556e00 0x55847b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIA
group              CCB
date        2018-09-30
hour             19:00
exchange       binance
Name: 362, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2018-09-30 19:00:00 2018-09-30 07:00:00 2018-10-01 07:00:00
Unix timestamps:  1538283600.0 1538370000.0
Hex Block Numbers:  0x620b95 0x622312
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           CLOAK
group              CCB
date        2018-10-01
hour             19:00
exchange       binance
Name: 363, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CLOAK, Contract: 0xb4622193ca7c7580ac0ecc09c3b7bd74aef0318d
Datetime timestamps:  2018-10-01 19:00:00 2018-10-01 07:00:00 2018-10-02 07:00:00
Unix timestamps:  1538370000.0 1538456400.0
Hex Block Numbers:  0x622313 0x623af8
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             QLC
group              CCB
date        2018-10-09
hour             17:00
exchange       binance
Name: 364, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: QLC, Contract: 
Datetime timestamps:  2018-10-09 17:00:00 2018-10-09 05:00:00 2018-10-10 05:00:00
Unix timestamps:  1539054000.0 1539140400.0
Hex Block Numbers:  0x62e1c0 0x62f9a7
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             REQ
group              CCB
date        2018-10-14
hour             19:00
exchange       binance
Name: 365, dtype: object
HERE
 Symbol: REQ, Contract: 0x8f8221afbb33998d8584a2b05749ba73c37a938a
Datetime timestamps:  2018-10-14 19:00:00 2018-10-14 07:00:00 2018-10-15 07:00:00
Unix timestamps:  1539493200.0 1539579600.0
Hex Block Numbers:  0x635bdc 0x637408
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x635c2a', 'uniqueId': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e:log:52', 'hash': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4341.4040139962635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeb59156cfc3e4418f7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:16:38.000Z'}}, {'blockNum': '0x635c2a', 'uniqueId': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e:log:56', 'hash': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4341.4040139962635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeb59156cfc3e4418f7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:16:38.000Z'}}, {'blockNum': '0x635c2a', 'uniqueId': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e:log:58', 'hash': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4341.4040139962635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeb59156cfc3e4418f7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:16:38.000Z'}}, {'blockNum': '0x635c2a', 'uniqueId': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e:log:59', 'hash': '0xebcabc39fd9dcb1477708359e92e85cec9f1154e662f3d38788a05e7793c177e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4341.4040139962635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeb59156cfc3e4418f7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:16:38.000Z'}}, {'blockNum': '0x635c2d', 'uniqueId': '0xaf3504ecfd8337c184fd17bf5320cd5bb7fc988afc0bb80b3019ec7ef5f5eaa7:log:0', 'hash': '0xaf3504ecfd8337c184fd17bf5320cd5bb7fc988afc0bb80b3019ec7ef5f5eaa7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 21991.684049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x04a82becbda135321000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T05:17:06.000Z'}}, {'blockNum': '0x635cf5', 'uniqueId': '0x5d15efb3f1bf9c70cf55157bbe9bf93831fbd5acae5940b6777cc03c6c814978:log:36', 'hash': '0x5d15efb3f1bf9c70cf55157bbe9bf93831fbd5acae5940b6777cc03c6c814978', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 7583.445363447951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x019b1972133d8a300baf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:05:16.000Z'}}, {'blockNum': '0x635cf5', 'uniqueId': '0x5d15efb3f1bf9c70cf55157bbe9bf93831fbd5acae5940b6777cc03c6c814978:log:38', 'hash': '0x5d15efb3f1bf9c70cf55157bbe9bf93831fbd5acae5940b6777cc03c6c814978', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x4fe95c36bb9b3a81f278569525162f91615e77d7', 'value': 7583.445363447951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x019b1972133d8a300baf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:05:16.000Z'}}, {'blockNum': '0x635d48', 'uniqueId': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091:log:44', 'hash': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4313.190554892302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe9d18b15695dab3cfb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:22:20.000Z'}}, {'blockNum': '0x635d48', 'uniqueId': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091:log:48', 'hash': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4313.190554892302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe9d18b15695dab3cfb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:22:20.000Z'}}, {'blockNum': '0x635d48', 'uniqueId': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091:log:49', 'hash': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4312.766624880919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe9cba8fb4ff3869377', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:22:20.000Z'}}, {'blockNum': '0x635d48', 'uniqueId': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091:log:50', 'hash': '0xed17422dfcae3ffbb47ce1d96e13cda3d3c56dfef80bb0143e3723ef54bc4091', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4312.766624880919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe9cba8fb4ff3869377', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T06:22:20.000Z'}}, {'blockNum': '0x635e5a', 'uniqueId': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6:log:42', 'hash': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4292.342285106527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe8b037268013057671', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:30:29.000Z'}}, {'blockNum': '0x635e5a', 'uniqueId': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6:log:46', 'hash': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4292.342285106527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe8b037268013057671', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:30:29.000Z'}}, {'blockNum': '0x635e5a', 'uniqueId': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6:log:47', 'hash': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4291.962160990665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe8aaf0ada18284d817', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:30:29.000Z'}}, {'blockNum': '0x635e5a', 'uniqueId': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6:log:48', 'hash': '0x4a60227e771fe1fccbe1ce5c9f186011c7b15a63d7ab9954dd531ce9b2e315a6', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 4291.962160990665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe8aaf0ada18284d817', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:30:29.000Z'}}, {'blockNum': '0x635e6c', 'uniqueId': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49:log:24', 'hash': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2133.843067048239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x73ad0573e5304f1724', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:36:40.000Z'}}, {'blockNum': '0x635e6c', 'uniqueId': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49:log:28', 'hash': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2133.843067048239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x73ad0573e5304f1724', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:36:40.000Z'}}, {'blockNum': '0x635e6c', 'uniqueId': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49:log:29', 'hash': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2133.631499374778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x73aa15d03799b4af11', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:36:40.000Z'}}, {'blockNum': '0x635e6c', 'uniqueId': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49:log:30', 'hash': '0x0878ae34367805bb082aef8096eec1f27945c6e04736280fef91349794916a49', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2133.631499374778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x73aa15d03799b4af11', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:36:40.000Z'}}, {'blockNum': '0x635e6d', 'uniqueId': '0xfd347b413d93fa16799d355c3f8815b904cc6ef325656918273e6ba2b3f0ef7b:log:0', 'hash': '0xfd347b413d93fa16799d355c3f8815b904cc6ef325656918273e6ba2b3f0ef7b', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 42334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x08f6ee44e0daeab80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:06.000Z'}}, {'blockNum': '0x635e6d', 'uniqueId': '0xa83d353342bf29c585c6f70a9c65eb1ee70e13f9bfc3dbb1276157b372078abe:log:67', 'hash': '0xa83d353342bf29c585c6f70a9c65eb1ee70e13f9bfc3dbb1276157b372078abe', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4282.802974654262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe82bd4b62f7591d6f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:06.000Z'}}, {'blockNum': '0x635e6d', 'uniqueId': '0xa83d353342bf29c585c6f70a9c65eb1ee70e13f9bfc3dbb1276157b372078abe:log:71', 'hash': '0xa83d353342bf29c585c6f70a9c65eb1ee70e13f9bfc3dbb1276157b372078abe', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 4282.802974654262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe82bd4b62f7591d6f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:06.000Z'}}, {'blockNum': '0x635e6f', 'uniqueId': '0x335ff38f9fa897b8d7c476bb5e0f0300afa9e7cb682269fc3a3f439fa6386cb8:log:14', 'hash': '0x335ff38f9fa897b8d7c476bb5e0f0300afa9e7cb682269fc3a3f439fa6386cb8', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12038.643097381351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028c9dbc019a83c1916e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:12.000Z'}}, {'blockNum': '0x635e6f', 'uniqueId': '0x335ff38f9fa897b8d7c476bb5e0f0300afa9e7cb682269fc3a3f439fa6386cb8:log:18', 'hash': '0x335ff38f9fa897b8d7c476bb5e0f0300afa9e7cb682269fc3a3f439fa6386cb8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 12038.643097381351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028c9dbc019a83c1916e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:12.000Z'}}, {'blockNum': '0x635e71', 'uniqueId': '0x43d2b2e9855fa73f2f87fe0bf912a25b853e2cebda7830eca56742a129bbdc61:log:1', 'hash': '0x43d2b2e9855fa73f2f87fe0bf912a25b853e2cebda7830eca56742a129bbdc61', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 4282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe820aff8fddea80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:37:19.000Z'}}, {'blockNum': '0x635e7d', 'uniqueId': '0xf80fa6e2edde19b23dd14d5a7781365948bdc393380c7b86f81356c28011ce13:log:85', 'hash': '0xf80fa6e2edde19b23dd14d5a7781365948bdc393380c7b86f81356c28011ce13', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 11165.428279176633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025d4771c6efd0400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:40:11.000Z'}}, {'blockNum': '0x635e95', 'uniqueId': '0xaebd09f789f4b66b55edafebc3b3200bc81b21e4ec01ba4d4fc878c43c3a9a55:log:27', 'hash': '0xaebd09f789f4b66b55edafebc3b3200bc81b21e4ec01ba4d4fc878c43c3a9a55', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4220.636494209314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4cd190197c431f921', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:44:38.000Z'}}, {'blockNum': '0x635e95', 'uniqueId': '0xaebd09f789f4b66b55edafebc3b3200bc81b21e4ec01ba4d4fc878c43c3a9a55:log:31', 'hash': '0xaebd09f789f4b66b55edafebc3b3200bc81b21e4ec01ba4d4fc878c43c3a9a55', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 4220.636494209314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4cd190197c431f921', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:44:38.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xdcabdeb442b1d7c181aebb2d72868645a72a8580bd04b881efbac20b1f81386e:log:13', 'hash': '0xdcabdeb442b1d7c181aebb2d72868645a72a8580bd04b881efbac20b1f81386e', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0825f365a5853fdc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xd7587afa7c7c6bae5ec37d681a2558f96eceac06eb20e8551b90b7b214a21e34:log:49', 'hash': '0xd7587afa7c7c6bae5ec37d681a2558f96eceac06eb20e8551b90b7b214a21e34', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 4220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4c443b97b54700000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5:log:95', 'hash': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2077.76593723828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x70a2cb77714641a045', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5:log:99', 'hash': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2077.76593723828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x70a2cb77714641a045', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5:log:100', 'hash': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2087.034705937968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x71236cbf7780691f68', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e97', 'uniqueId': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5:log:101', 'hash': '0xb241fc4d1ca70f3f5c36bb2609e4926b4a8f9af55242ab2af054c4d7b2f429f5', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2087.034705937968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x71236cbf7780691f68', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:45:18.000Z'}}, {'blockNum': '0x635e9d', 'uniqueId': '0x3d999f4690d2ca4017652a78b8eb7d65b52002fb9be1ebd5b6e7b8a678a5367d:log:56', 'hash': '0x3d999f4690d2ca4017652a78b8eb7d65b52002fb9be1ebd5b6e7b8a678a5367d', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0xf46b48e680b0ffca0570fdaab47f53ce4c724e1f', 'value': 4146.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe0c578b9f60a260000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:47:00.000Z'}}, {'blockNum': '0x635ea4', 'uniqueId': '0xed2e993a814d611fe00f1c41859302914f2e5ed4e876301ccd234908c9f65a96:log:4', 'hash': '0xed2e993a814d611fe00f1c41859302914f2e5ed4e876301ccd234908c9f65a96', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x86b1a7b0e0d8bf7691e9e40b67fc5affa52b2dab', 'value': 3483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd055be466d8c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:48:05.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xb66fbeee21c5c16f2fdafb55f44eadda06024d184ad8943e3fe27c79b880f4dd:log:18', 'hash': '0xb66fbeee21c5c16f2fdafb55f44eadda06024d184ad8943e3fe27c79b880f4dd', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xb66fbeee21c5c16f2fdafb55f44eadda06024d184ad8943e3fe27c79b880f4dd:log:22', 'hash': '0xb66fbeee21c5c16f2fdafb55f44eadda06024d184ad8943e3fe27c79b880f4dd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4:log:23', 'hash': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4:log:25', 'hash': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ea9', 'uniqueId': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4:log:26', 'hash': '0xed5182288cf357b11a620d342991b13718f8f29b33f5a07be97dde402c6f06f4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4159.824866248502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe1812ab42802c8e29d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:49:17.000Z'}}, {'blockNum': '0x635ece', 'uniqueId': '0x874eedb7384b44f9dd45295d6efa38a7563910a26c825de71b77ca4a0cf53fb3:log:19', 'hash': '0x874eedb7384b44f9dd45295d6efa38a7563910a26c825de71b77ca4a0cf53fb3', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0825f365a5853fdc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:56:21.000Z'}}, {'blockNum': '0x635ece', 'uniqueId': '0x4d93a9de4f08f04e79ca501877c3f2d2f68b7421f985399b3c1b77fd18fec1f5:log:20', 'hash': '0x4d93a9de4f08f04e79ca501877c3f2d2f68b7421f985399b3c1b77fd18fec1f5', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11165.428279176633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025d4771c6efd0400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:56:21.000Z'}}, {'blockNum': '0x635ece', 'uniqueId': '0x878938b79bbf056d70b860b77083b6cc685947f05c9c40b3e03286d7f3965f10:log:22', 'hash': '0x878938b79bbf056d70b860b77083b6cc685947f05c9c40b3e03286d7f3965f10', 'from': '0xf46b48e680b0ffca0570fdaab47f53ce4c724e1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4146.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe0c578b9f60a260000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:56:21.000Z'}}, {'blockNum': '0x635ece', 'uniqueId': '0x76fe9e2125c576f27196f04eacb9f1b225693407cdecb5987db8c44c52562e90:log:23', 'hash': '0x76fe9e2125c576f27196f04eacb9f1b225693407cdecb5987db8c44c52562e90', 'from': '0x86b1a7b0e0d8bf7691e9e40b67fc5affa52b2dab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd055be466d8c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:56:21.000Z'}}, {'blockNum': '0x635ed1', 'uniqueId': '0xf69166af737ce58ad561e54fc03c4bd0392e8c825ebd790d3c76cc843a3fcea9:log:9', 'hash': '0xf69166af737ce58ad561e54fc03c4bd0392e8c825ebd790d3c76cc843a3fcea9', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x08f6ee44e0daeab80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T07:57:00.000Z'}}, {'blockNum': '0x635f10', 'uniqueId': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b:log:32', 'hash': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5193.29135953519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011987654042a86c3be1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:09:41.000Z'}}, {'blockNum': '0x635f10', 'uniqueId': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b:log:36', 'hash': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 5193.29135953519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011987654042a86c3be1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:09:41.000Z'}}, {'blockNum': '0x635f10', 'uniqueId': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b:log:38', 'hash': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5193.29135953519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011987654042a86c3be1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:09:41.000Z'}}, {'blockNum': '0x635f10', 'uniqueId': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b:log:39', 'hash': '0xd41e5b11623a0132eb0050fe4ba6eb42aa70ee695c6f8f861e82805f4829bf1b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5193.29135953519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011987654042a86c3be1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:09:41.000Z'}}, {'blockNum': '0x635f2a', 'uniqueId': '0xe0220081a56b1e338153982e28459f1860d0f26b7a02206619d3fd35c1be210f:log:23', 'hash': '0xe0220081a56b1e338153982e28459f1860d0f26b7a02206619d3fd35c1be210f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 59664.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0ca26b4549ee4df20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:17:57.000Z'}}, {'blockNum': '0x635f85', 'uniqueId': '0xc8bf3ab53ef168a003cdc138afe248972dc6ecd5c51d13bd1f069cb4872066bc:log:9', 'hash': '0xc8bf3ab53ef168a003cdc138afe248972dc6ecd5c51d13bd1f069cb4872066bc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x20fd29d140b74de6424f87761e74c3368a307154', 'value': 351.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x130e0adbac55ce0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T08:41:13.000Z'}}, {'blockNum': '0x636046', 'uniqueId': '0x3348e3bd64804f642a6549452f8e21167050d6545695b3b9b4b90d9a7f3644d0:log:1', 'hash': '0x3348e3bd64804f642a6549452f8e21167050d6545695b3b9b4b90d9a7f3644d0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T09:24:51.000Z'}}, {'blockNum': '0x636090', 'uniqueId': '0xc76dd6ace93c9af49e779b81f046a2586d599964d4c48bf29b549d8372b4e92d:log:10', 'hash': '0xc76dd6ace93c9af49e779b81f046a2586d599964d4c48bf29b549d8372b4e92d', 'from': '0xe04f1fed3671f349a588a8d819151a5b314da209', 'to': '0x5aa05dcd9e99b3a98a8ab4e24e6505635780d4e4', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T09:43:41.000Z'}}, {'blockNum': '0x636099', 'uniqueId': '0x84ffea2de9c6bda52a4ee3c82c0631ba4eefc0698c432770407ec46f5a5ef1e4:log:12', 'hash': '0x84ffea2de9c6bda52a4ee3c82c0631ba4eefc0698c432770407ec46f5a5ef1e4', 'from': '0xe04f1fed3671f349a588a8d819151a5b314da209', 'to': '0x5aa05dcd9e99b3a98a8ab4e24e6505635780d4e4', 'value': 2002.835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6c92eb4d067f7b8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T09:46:42.000Z'}}, {'blockNum': '0x6360eb', 'uniqueId': '0x51c01a8ee76815472a322039be73b6f756a644ac69dbd9211090044104e58b7e:log:2', 'hash': '0x51c01a8ee76815472a322039be73b6f756a644ac69dbd9211090044104e58b7e', 'from': '0x5aa05dcd9e99b3a98a8ab4e24e6505635780d4e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2102.835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x71feb2ab33e28b8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:05.000Z'}}, {'blockNum': '0x6360eb', 'uniqueId': '0x35a7737e3bc79c1216c1ee8a2ef2089a291accfc2034c58aec06477e347920bf:log:34', 'hash': '0x35a7737e3bc79c1216c1ee8a2ef2089a291accfc2034c58aec06477e347920bf', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5240.849028235699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c1b6407f8dff498d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:05.000Z'}}, {'blockNum': '0x6360eb', 'uniqueId': '0x35a7737e3bc79c1216c1ee8a2ef2089a291accfc2034c58aec06477e347920bf:log:36', 'hash': '0x35a7737e3bc79c1216c1ee8a2ef2089a291accfc2034c58aec06477e347920bf', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5240.849028235699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c1b6407f8dff498d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:05.000Z'}}, {'blockNum': '0x6360ec', 'uniqueId': '0xa2ad0f122a125436de2ef9ce4ff520862237c0cf4d61a3d6ee54bcff1871196e:log:17', 'hash': '0xa2ad0f122a125436de2ef9ce4ff520862237c0cf4d61a3d6ee54bcff1871196e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5240.843787386671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c1b5169729f4e5723', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:16.000Z'}}, {'blockNum': '0x6360ec', 'uniqueId': '0xa2ad0f122a125436de2ef9ce4ff520862237c0cf4d61a3d6ee54bcff1871196e:log:19', 'hash': '0xa2ad0f122a125436de2ef9ce4ff520862237c0cf4d61a3d6ee54bcff1871196e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5240.843787386671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c1b5169729f4e5723', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:06:16.000Z'}}, {'blockNum': '0x63614a', 'uniqueId': '0xd9c646d9138fc054cdb0e70b97d5d19a99c1cda1ecf31dd0a22c66c58dffc09a:log:7', 'hash': '0xd9c646d9138fc054cdb0e70b97d5d19a99c1cda1ecf31dd0a22c66c58dffc09a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x20af568d0317a410840c5f112c05e7b2950050e7', 'value': 93.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x051192ba9da3060000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:28:53.000Z'}}, {'blockNum': '0x636164', 'uniqueId': '0x80fa5f55806427b81e16e569062423df533e3d84802bbd375611330bc4e188f2:log:56', 'hash': '0x80fa5f55806427b81e16e569062423df533e3d84802bbd375611330bc4e188f2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x42e19dd1559a4c36f87c31aab196fe825825099d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:34:06.000Z'}}, {'blockNum': '0x63618c', 'uniqueId': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125:log:24', 'hash': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4223.985129909286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4fb91c00527340cd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:43:37.000Z'}}, {'blockNum': '0x63618c', 'uniqueId': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125:log:26', 'hash': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 4223.985129909286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4fb91c00527340cd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:43:37.000Z'}}, {'blockNum': '0x63618c', 'uniqueId': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125:log:30', 'hash': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4223.985129909286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4fb91c00527340cd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:43:37.000Z'}}, {'blockNum': '0x63618c', 'uniqueId': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125:log:32', 'hash': '0xa55a86c60f82ec97e83a736d2b366354454ee46c4a0812e0c01f258df35bb125', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4223.985129909286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe4fb91c00527340cd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:43:37.000Z'}}, {'blockNum': '0x63619c', 'uniqueId': '0x7e178daae1d810aa0f3ae417f26d6daf268f9ddb6857c0b2cb566065b3fd9f7e:log:57', 'hash': '0x7e178daae1d810aa0f3ae417f26d6daf268f9ddb6857c0b2cb566065b3fd9f7e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5113.022174922876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01152d6fd223cd354498', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:46:47.000Z'}}, {'blockNum': '0x63619c', 'uniqueId': '0x7e178daae1d810aa0f3ae417f26d6daf268f9ddb6857c0b2cb566065b3fd9f7e:log:59', 'hash': '0x7e178daae1d810aa0f3ae417f26d6daf268f9ddb6857c0b2cb566065b3fd9f7e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5113.022174922876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01152d6fd223cd354498', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:46:47.000Z'}}, {'blockNum': '0x63619c', 'uniqueId': '0x615192d8a87c48227b4b098e4e2923389fe29150a2496de563edf97432069b4a:log:64', 'hash': '0x615192d8a87c48227b4b098e4e2923389fe29150a2496de563edf97432069b4a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5113.017061900701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01152d5da7df8ebe3c1c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:46:47.000Z'}}, {'blockNum': '0x63619c', 'uniqueId': '0x615192d8a87c48227b4b098e4e2923389fe29150a2496de563edf97432069b4a:log:66', 'hash': '0x615192d8a87c48227b4b098e4e2923389fe29150a2496de563edf97432069b4a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5113.017061900701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01152d5da7df8ebe3c1c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T10:46:47.000Z'}}, {'blockNum': '0x6361e3', 'uniqueId': '0x1758986d1af0baec5a8b58cbbc33d2c25bba60aca70ce24fdf9b216e83e5534e:log:4', 'hash': '0x1758986d1af0baec5a8b58cbbc33d2c25bba60aca70ce24fdf9b216e83e5534e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 5539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012c4511111ec8ac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:00:33.000Z'}}, {'blockNum': '0x636224', 'uniqueId': '0xe6f5c4ddad6215ec04653b0e7413a582dede170b92b25f4561ecd689f6a57d4c:log:5', 'hash': '0xe6f5c4ddad6215ec04653b0e7413a582dede170b92b25f4561ecd689f6a57d4c', 'from': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012c4511111ec8ac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:16:16.000Z'}}, {'blockNum': '0x63623b', 'uniqueId': '0x6021b89c6200a7dbb69a4d747c65cb41b12d1fac7976e417a72e855a5853b3f8:log:6', 'hash': '0x6021b89c6200a7dbb69a4d747c65cb41b12d1fac7976e417a72e855a5853b3f8', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc446501c4aea7b39836dc92b9c0e6019066ed322', 'value': 1114.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3c68d2e8e0d6bf0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:22:05.000Z'}}, {'blockNum': '0x63623b', 'uniqueId': '0x35746483b192586cc7bf682d7083d09e33bd7a8b440b14d908d7ad15ad44864b:log:7', 'hash': '0x35746483b192586cc7bf682d7083d09e33bd7a8b440b14d908d7ad15ad44864b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x557c6a82075f11522b96f6a7cff2673eba96b506', 'value': 1331.141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x48294ad6d00e408000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:22:05.000Z'}}, {'blockNum': '0x636251', 'uniqueId': '0xa9837a0510687c001a3a556890ea348f967b182be7b50ded086f36e638a1df79:log:2', 'hash': '0xa9837a0510687c001a3a556890ea348f967b182be7b50ded086f36e638a1df79', 'from': '0x4903fe8eddf319abad3d6926aed1ac51841217d8', 'to': '0x439dd9d7148658fd0c182be9cf4ffb05210f8f3f', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:26:01.000Z'}}, {'blockNum': '0x63629b', 'uniqueId': '0xa54a68bc3b0e4ee07826eb03fecfcdd1bc7dde6d683e9b7b1a7972d48362d8d0:log:54', 'hash': '0xa54a68bc3b0e4ee07826eb03fecfcdd1bc7dde6d683e9b7b1a7972d48362d8d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5178.554852009007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118bae2a8be2071d8cf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:41:53.000Z'}}, {'blockNum': '0x63629b', 'uniqueId': '0xa54a68bc3b0e4ee07826eb03fecfcdd1bc7dde6d683e9b7b1a7972d48362d8d0:log:56', 'hash': '0xa54a68bc3b0e4ee07826eb03fecfcdd1bc7dde6d683e9b7b1a7972d48362d8d0', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5178.554852009007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118bae2a8be2071d8cf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:41:53.000Z'}}, {'blockNum': '0x63629c', 'uniqueId': '0xf0a249c1e4d3c2790604454a3f096afab843d8309f2421fb23270616ab979baa:log:84', 'hash': '0xf0a249c1e4d3c2790604454a3f096afab843d8309f2421fb23270616ab979baa', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5178.549673454155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118bad042dfde0a74a0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:42:08.000Z'}}, {'blockNum': '0x63629c', 'uniqueId': '0xf0a249c1e4d3c2790604454a3f096afab843d8309f2421fb23270616ab979baa:log:86', 'hash': '0xf0a249c1e4d3c2790604454a3f096afab843d8309f2421fb23270616ab979baa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5178.549673454155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118bad042dfde0a74a0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:42:08.000Z'}}, {'blockNum': '0x6362b4', 'uniqueId': '0xcb0da83eee193ed20cbaf4e1f4ce00cd727456b6050b52b1077b1452e3b9a37e:log:59', 'hash': '0xcb0da83eee193ed20cbaf4e1f4ce00cd727456b6050b52b1077b1452e3b9a37e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 38460.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0824f2a87189a7220000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:46:27.000Z'}}, {'blockNum': '0x6362d3', 'uniqueId': '0xbdfdb3f4dbf49f328edb094a52d9bb348bb497503ab5e17bc90b8513573cd3fd:log:5', 'hash': '0xbdfdb3f4dbf49f328edb094a52d9bb348bb497503ab5e17bc90b8513573cd3fd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe9ad7bd9ef690fe56772961c4204310b81d66c97', 'value': 1430.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4d8c2ceae2dc4a0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:53:55.000Z'}}, {'blockNum': '0x6362dd', 'uniqueId': '0x1ff92573c4e4929e2777d628894a1842a34413e3246fcdf05b96af329ff9d021:log:5', 'hash': '0x1ff92573c4e4929e2777d628894a1842a34413e3246fcdf05b96af329ff9d021', 'from': '0x6739a4af1692b8f8e24d3785c51b278b72f9099d', 'to': '0xf7b4ec478010b3662e0ae0a260073ea552271679', 'value': 5617.27046155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013083499b348e4acc00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T11:56:01.000Z'}}, {'blockNum': '0x63635c', 'uniqueId': '0x1fe49034b1f7d4fa800920f18be53e7f4da6b05708ef44e50087d4bcb303beca:log:46', 'hash': '0x1fe49034b1f7d4fa800920f18be53e7f4da6b05708ef44e50087d4bcb303beca', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5344.516040927341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0121ba0f3ec38b3f05f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:25:31.000Z'}}, {'blockNum': '0x63635c', 'uniqueId': '0x1fe49034b1f7d4fa800920f18be53e7f4da6b05708ef44e50087d4bcb303beca:log:48', 'hash': '0x1fe49034b1f7d4fa800920f18be53e7f4da6b05708ef44e50087d4bcb303beca', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5344.516040927341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0121ba0f3ec38b3f05f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:25:31.000Z'}}, {'blockNum': '0x63635e', 'uniqueId': '0x7e932e24a21ae35b8494b43ffb446770b661561ef225aa0889fbf624d4bd611f:log:31', 'hash': '0x7e932e24a21ae35b8494b43ffb446770b661561ef225aa0889fbf624d4bd611f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5344.5106964113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0121b9fc41f46f215d85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:25:41.000Z'}}, {'blockNum': '0x63635e', 'uniqueId': '0x7e932e24a21ae35b8494b43ffb446770b661561ef225aa0889fbf624d4bd611f:log:33', 'hash': '0x7e932e24a21ae35b8494b43ffb446770b661561ef225aa0889fbf624d4bd611f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5344.5106964113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0121b9fc41f46f215d85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:25:41.000Z'}}, {'blockNum': '0x63638a', 'uniqueId': '0xa185684c3a86e546322949e6a006df98ab199bebb76589767c20abae3a3f563f:log:3', 'hash': '0xa185684c3a86e546322949e6a006df98ab199bebb76589767c20abae3a3f563f', 'from': '0x82f95509d2052b42c82ebaa862fb12c325266db9', 'to': '0xe03361695e30622be69ad6e3d291758e6d3fa224', 'value': 251960.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x355ace5ade0ed1920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:33:53.000Z'}}, {'blockNum': '0x636395', 'uniqueId': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9:log:172', 'hash': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 41.54862563704219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02409a5ee201967998', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:36:11.000Z'}}, {'blockNum': '0x636395', 'uniqueId': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9:log:176', 'hash': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xee52d73202bdd9d3a87c8ec001ad27c0d6502e33', 'value': 41.54862563704219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02409a5ee201967998', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:36:11.000Z'}}, {'blockNum': '0x636395', 'uniqueId': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9:log:227', 'hash': '0xbde875a1075e422c23a7e747ed407239d0209840d38f9608835b9eb18d0d6ae9', 'from': '0xee52d73202bdd9d3a87c8ec001ad27c0d6502e33', 'to': '0xcb0243843a1530a04dce2631d6db4850c0a46725', 'value': 40.961142476364046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x023873360f91d7e517', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:36:11.000Z'}}, {'blockNum': '0x6363b4', 'uniqueId': '0x4b172453c46cd805fbc2712e4d62c622f3afcb0be57a87577674bcae775c2852:log:21', 'hash': '0x4b172453c46cd805fbc2712e4d62c622f3afcb0be57a87577674bcae775c2852', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5140.952515285019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116b10c52b7ca844096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:43:25.000Z'}}, {'blockNum': '0x6363b4', 'uniqueId': '0x4b172453c46cd805fbc2712e4d62c622f3afcb0be57a87577674bcae775c2852:log:23', 'hash': '0x4b172453c46cd805fbc2712e4d62c622f3afcb0be57a87577674bcae775c2852', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5140.952515285019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116b10c52b7ca844096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:43:25.000Z'}}, {'blockNum': '0x6363b4', 'uniqueId': '0xaf78e252d7787fb56c16954d0df5104de67eeb20ff6cd670392b73d0e695dc84:log:28', 'hash': '0xaf78e252d7787fb56c16954d0df5104de67eeb20ff6cd670392b73d0e695dc84', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5140.947374332504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116b0fa0f0c82093079', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:43:25.000Z'}}, {'blockNum': '0x6363b4', 'uniqueId': '0xaf78e252d7787fb56c16954d0df5104de67eeb20ff6cd670392b73d0e695dc84:log:30', 'hash': '0xaf78e252d7787fb56c16954d0df5104de67eeb20ff6cd670392b73d0e695dc84', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5140.947374332504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116b0fa0f0c82093079', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:43:25.000Z'}}, {'blockNum': '0x6363bc', 'uniqueId': '0x84db911eb0be5704f25051e623484dd54bb52a79d0be08973998810b5ed2dc7d:log:7', 'hash': '0x84db911eb0be5704f25051e623484dd54bb52a79d0be08973998810b5ed2dc7d', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 125145.20892231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1a8022a7931b6cf83c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:45:58.000Z'}}, {'blockNum': '0x6363f0', 'uniqueId': '0xb3e6d7cc4a867561b0629c67f464dd3d5c465eddf617ae55e77297b4e4cfbbd2:log:6', 'hash': '0xb3e6d7cc4a867561b0629c67f464dd3d5c465eddf617ae55e77297b4e4cfbbd2', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 125145.20892231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1a8022a7931b6cf83c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T12:56:06.000Z'}}, {'blockNum': '0x63641b', 'uniqueId': '0xede07d585c30dac7d51878b664295d86e64ea96f9a7a17733564c058e8870316:log:21', 'hash': '0xede07d585c30dac7d51878b664295d86e64ea96f9a7a17733564c058e8870316', 'from': '0xe03361695e30622be69ad6e3d291758e6d3fa224', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 251960.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x355ace5ade0ed1920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:06:36.000Z'}}, {'blockNum': '0x636462', 'uniqueId': '0x42a6620a37743f6bfb39edbf0b43631d54d3416d61a514e1e9c023c50854a787:log:1', 'hash': '0x42a6620a37743f6bfb39edbf0b43631d54d3416d61a514e1e9c023c50854a787', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x20ab68f68a96d6d289c6ebb30d42023b67770093', 'value': 82961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1191532781c8ada40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:23:58.000Z'}}, {'blockNum': '0x63646f', 'uniqueId': '0x22eaa753f32e4116689989ae1ea9d87cd814a4d287d0b642834295f0b8358f40:log:1', 'hash': '0x22eaa753f32e4116689989ae1ea9d87cd814a4d287d0b642834295f0b8358f40', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe9856510d52a7c97086d7d322b6c7375140769e9', 'value': 4119.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdf4f7717bf915f0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:26:44.000Z'}}, {'blockNum': '0x636492', 'uniqueId': '0xc81bd108797ee9db7069bf7002aced6c8f3001b8cdc1e580be0d45cde34aacad:log:99', 'hash': '0xc81bd108797ee9db7069bf7002aced6c8f3001b8cdc1e580be0d45cde34aacad', 'from': '0x4e66b98ae75245f9293c8827354a69e180a71551', 'to': '0x20e31d452b8ea39b35e330552ec30269651215f4', 'value': 51590.68432627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0aecbc91e7950c296c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:35:41.000Z'}}, {'blockNum': '0x6364a7', 'uniqueId': '0x3bd90c950a872d2ef20a22a7d1b1517ceca1397f22e0f1e37bdb2006fe2691aa:log:6', 'hash': '0x3bd90c950a872d2ef20a22a7d1b1517ceca1397f22e0f1e37bdb2006fe2691aa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x11432ffbaa34530d90bc888350a936940a853602', 'value': 1035.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x38227303af94fe0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:41:22.000Z'}}, {'blockNum': '0x6364be', 'uniqueId': '0x51a6a2f6924951cd491d8efff70b2be23225744c2b1d3c79251bb2644458f526:log:20', 'hash': '0x51a6a2f6924951cd491d8efff70b2be23225744c2b1d3c79251bb2644458f526', 'from': '0x20ab68f68a96d6d289c6ebb30d42023b67770093', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1191532781c8ada40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:46:15.000Z'}}, {'blockNum': '0x6364ca', 'uniqueId': '0xaf18b7b4ac0e3609b0fcf0103f322813e579043539e6421c88fc5262ca9fc75b:log:2', 'hash': '0xaf18b7b4ac0e3609b0fcf0103f322813e579043539e6421c88fc5262ca9fc75b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4d704fa9cb8042caf0fd5ed38f0b5455ec72d8be', 'value': 1131.34099999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3d5482a563af289c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:48:37.000Z'}}, {'blockNum': '0x6364e6', 'uniqueId': '0xf38e668d787b6184d46ecb38c3b543196272e7a688af72e42212b57229f711ac:log:8', 'hash': '0xf38e668d787b6184d46ecb38c3b543196272e7a688af72e42212b57229f711ac', 'from': '0x20e31d452b8ea39b35e330552ec30269651215f4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51590.68432627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0aecbc91e7950c296c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T13:56:09.000Z'}}, {'blockNum': '0x63653f', 'uniqueId': '0xdb28debc61dd491e80f006ce11e415b5f8e6a2d1e1ad1f0b7b05f50517b28968:log:66', 'hash': '0xdb28debc61dd491e80f006ce11e415b5f8e6a2d1e1ad1f0b7b05f50517b28968', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4274.548319464779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe7b94649068d12c243', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:16:25.000Z'}}, {'blockNum': '0x63653f', 'uniqueId': '0xdb28debc61dd491e80f006ce11e415b5f8e6a2d1e1ad1f0b7b05f50517b28968:log:70', 'hash': '0xdb28debc61dd491e80f006ce11e415b5f8e6a2d1e1ad1f0b7b05f50517b28968', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 4274.548319464779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe7b94649068d12c243', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:16:25.000Z'}}, {'blockNum': '0x63653f', 'uniqueId': '0xf92aba71a5f054405c5ac2dd4c00ce9a6ed45a1fc62aef0a66cb2594218440cb:log:82', 'hash': '0xf92aba71a5f054405c5ac2dd4c00ce9a6ed45a1fc62aef0a66cb2594218440cb', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12026.79168503668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028bf94354de19010101', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:16:25.000Z'}}, {'blockNum': '0x63653f', 'uniqueId': '0xf92aba71a5f054405c5ac2dd4c00ce9a6ed45a1fc62aef0a66cb2594218440cb:log:86', 'hash': '0xf92aba71a5f054405c5ac2dd4c00ce9a6ed45a1fc62aef0a66cb2594218440cb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 12026.79168503668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028bf94354de19010101', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:16:25.000Z'}}, {'blockNum': '0x636542', 'uniqueId': '0x29dd7586b88680bb6a7f07beea619216643a0f49c5e12237cd21922a3148ad37:log:38', 'hash': '0x29dd7586b88680bb6a7f07beea619216643a0f49c5e12237cd21922a3148ad37', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 12026.91384283455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028bfaf552bccda00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:17:06.000Z'}}, {'blockNum': '0x636545', 'uniqueId': '0xeecd689b8a232d74a9b89f51ec15e210606a9ca21727c6517ee1d14d1b6b968e:log:19', 'hash': '0xeecd689b8a232d74a9b89f51ec15e210606a9ca21727c6517ee1d14d1b6b968e', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xe7b1aa4360a3880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:17:40.000Z'}}, {'blockNum': '0x636547', 'uniqueId': '0x011aca02e72753fd32ff759047fcfea414d9bc93e381f85cb0fdcae46a00f230:log:18', 'hash': '0x011aca02e72753fd32ff759047fcfea414d9bc93e381f85cb0fdcae46a00f230', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa837fd02db236f4b454cbaa89f6ae05b5b110563', 'value': 475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x19bff2ff57968c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:17:51.000Z'}}, {'blockNum': '0x63654e', 'uniqueId': '0xf65f3d48074e9dff04ae6c419c252db5cde3b9881950d843937047e4db15e4eb:log:10', 'hash': '0xf65f3d48074e9dff04ae6c419c252db5cde3b9881950d843937047e4db15e4eb', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 52520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0b1f1d6a691d3ba00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:20:32.000Z'}}, {'blockNum': '0x636567', 'uniqueId': '0x56bcf5b22898f493563fc0b41a79dfd7c223bf0179841e00691f8a6f38f89c24:log:47', 'hash': '0x56bcf5b22898f493563fc0b41a79dfd7c223bf0179841e00691f8a6f38f89c24', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12026.91384283455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x028bfaf552bccda00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:26:12.000Z'}}, {'blockNum': '0x636582', 'uniqueId': '0x8bb996ed36eb21b0eb64b1d64362891d9933b5832a766d618eefa8cce2143e8d:log:55', 'hash': '0x8bb996ed36eb21b0eb64b1d64362891d9933b5832a766d618eefa8cce2143e8d', 'from': '0x10ecd1d529f1d3c35c3dec91547e249a4b080e3f', 'to': '0x8ed9327950ace62571d8f88d1798f0c0fb44f0f1', 'value': 35411.7884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x077fad490a1aa2570000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:34:37.000Z'}}, {'blockNum': '0x636587', 'uniqueId': '0x4345784cffed41ba3a1f602226e122890ee7f88e34b8f2bc9e645564f97bdcc4:log:6', 'hash': '0x4345784cffed41ba3a1f602226e122890ee7f88e34b8f2bc9e645564f97bdcc4', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0b1f1d6a691d3ba00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:36:06.000Z'}}, {'blockNum': '0x63659c', 'uniqueId': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87:log:103', 'hash': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5242.044795676086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c2bfc401fae3fb6c3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:42:07.000Z'}}, {'blockNum': '0x63659c', 'uniqueId': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87:log:107', 'hash': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 5242.044795676086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c2bfc401fae3fb6c3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:42:07.000Z'}}, {'blockNum': '0x63659c', 'uniqueId': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87:log:109', 'hash': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5242.044795676086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c2bfc401fae3fb6c3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:42:07.000Z'}}, {'blockNum': '0x63659c', 'uniqueId': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87:log:110', 'hash': '0x660a9472d9471f2814009970760d9b4ae9cb4181a77201c674d6aa7bcc7f7a87', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5242.044795676086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c2bfc401fae3fb6c3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:42:07.000Z'}}, {'blockNum': '0x6365ac', 'uniqueId': '0x15ee08b095c67ffbc5f3215d0e3d57dc1e8e6abebca5d9918d2e6f0931be0a1d:log:91', 'hash': '0x15ee08b095c67ffbc5f3215d0e3d57dc1e8e6abebca5d9918d2e6f0931be0a1d', 'from': '0x57b0fb22a32272e9a580123b00a8cf037c6fdcab', 'to': '0xa186756c96e637b1c4de94f4b7bc7644c65b0a75', 'value': 20301.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044c8922351a4db20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:44:39.000Z'}}, {'blockNum': '0x6365b9', 'uniqueId': '0xaecf3aee034c6a9eec3596294ed04f10c6283c835fb1ec12e0d90a888944b89f:log:74', 'hash': '0xaecf3aee034c6a9eec3596294ed04f10c6283c835fb1ec12e0d90a888944b89f', 'from': '0x8ed9327950ace62571d8f88d1798f0c0fb44f0f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35411.7884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x077fad490a1aa2570000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:47:02.000Z'}}, {'blockNum': '0x6365c3', 'uniqueId': '0x082c04a2c85df873d1c71bfff90bc96d18288bb5112fb6e6aa50a2f4ad13da04:log:57', 'hash': '0x082c04a2c85df873d1c71bfff90bc96d18288bb5112fb6e6aa50a2f4ad13da04', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x049b6339a45ccc019aeae34b93ef1e80719129ff', 'value': 402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15cadee61cdb080000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:49:18.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x93a342c14ac42980a3aa1273cd25c7f072b7fabb2d92cce97af583500e613ba1:log:75', 'hash': '0x93a342c14ac42980a3aa1273cd25c7f072b7fabb2d92cce97af583500e613ba1', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x93a342c14ac42980a3aa1273cd25c7f072b7fabb2d92cce97af583500e613ba1:log:79', 'hash': '0x93a342c14ac42980a3aa1273cd25c7f072b7fabb2d92cce97af583500e613ba1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b:log:82', 'hash': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b:log:84', 'hash': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365cf', 'uniqueId': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b:log:85', 'hash': '0x7f567ce465c1d584c5dff161cd82c3ab9733b4b12d00d471372dfd71703ee05b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 15820.730961044324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0359a4bf4b3ea74cd492', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:51:30.000Z'}}, {'blockNum': '0x6365d4', 'uniqueId': '0x1536530c5a32e48b91f404d33fd5e9a86d1dad42d425cbc7b8407a1690180aad:log:7', 'hash': '0x1536530c5a32e48b91f404d33fd5e9a86d1dad42d425cbc7b8407a1690180aad', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 8313.641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c2aef219f1334a8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:52:28.000Z'}}, {'blockNum': '0x6365d4', 'uniqueId': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a:log:71', 'hash': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8145.311535568237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b98ee7b5e3a44ddd6a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:52:28.000Z'}}, {'blockNum': '0x6365d4', 'uniqueId': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a:log:75', 'hash': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 8145.311535568237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b98ee7b5e3a44ddd6a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:52:28.000Z'}}, {'blockNum': '0x6365d4', 'uniqueId': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a:log:78', 'hash': '0xcd2ed5d54b6f10703b71da5d89605fa9f5d5170b0aede262a6388f9eef04157a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 8144.703833282942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b98678b7e168131ca0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:52:28.000Z'}}, {'blockNum': '0x6365dd', 'uniqueId': '0x19c9f9097c1b88fe9d8716d2014d812288869194d3ac9eeb640e423d5c248ccf:log:4', 'hash': '0x19c9f9097c1b88fe9d8716d2014d812288869194d3ac9eeb640e423d5c248ccf', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b6c1ba81ebfe400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:55:02.000Z'}}, {'blockNum': '0x6365e1', 'uniqueId': '0x19e3abd41aaf3e5b5580cf47fddfc021a25c36993aa2a55cd2c3ed7b2d495c71:log:31', 'hash': '0x19e3abd41aaf3e5b5580cf47fddfc021a25c36993aa2a55cd2c3ed7b2d495c71', 'from': '0xa186756c96e637b1c4de94f4b7bc7644c65b0a75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20301.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044c8922351a4db20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:56:13.000Z'}}, {'blockNum': '0x6365e4', 'uniqueId': '0x1b523a1bf339adacb9d3453c752497e3546b2e4b776ff94bcb31241d66c5dadc:log:159', 'hash': '0x1b523a1bf339adacb9d3453c752497e3546b2e4b776ff94bcb31241d66c5dadc', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 13702.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02e6d1c6748383940000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:56:43.000Z'}}, {'blockNum': '0x6365e9', 'uniqueId': '0xc633ae42f5eded8213d33e46eab0217f7a30b3acf139cfe6ce27634e616369c1:log:1', 'hash': '0xc633ae42f5eded8213d33e46eab0217f7a30b3acf139cfe6ce27634e616369c1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x081ea1e54cc7fa200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T14:57:23.000Z'}}, {'blockNum': '0x636607', 'uniqueId': '0xa9cc39289e075fa7e149f3a230cecc3c10d57c6cc1247996d89170ee650d76bb:log:42', 'hash': '0xa9cc39289e075fa7e149f3a230cecc3c10d57c6cc1247996d89170ee650d76bb', 'from': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b6c1ba81ebfe400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T15:06:02.000Z'}}, {'blockNum': '0x636607', 'uniqueId': '0x1ce7f0d6fd20691e929443f08874117bf42f5c09f60e00ac17440122bf7ffedf:log:52', 'hash': '0x1ce7f0d6fd20691e929443f08874117bf42f5c09f60e00ac17440122bf7ffedf', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13702.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02e6d1c6748383940000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T15:06:02.000Z'}}, {'blockNum': '0x636607', 'uniqueId': '0xea83cafdb893f351fc732f1950222200334a55e1db994ae19982ddc6648509c0:log:53', 'hash': '0xea83cafdb893f351fc732f1950222200334a55e1db994ae19982ddc6648509c0', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8313.641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c2aef219f1334a8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T15:06:02.000Z'}}, {'blockNum': '0x636607', 'uniqueId': '0xdfa33a71880902dfcb238f20d2d59a61a4ace09aabf8de22d67fde0358ba9385:log:54', 'hash': '0xdfa33a71880902dfcb238f20d2d59a61a4ace09aabf8de22d67fde0358ba9385', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x081ea1e54cc7fa200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T15:06:02.000Z'}}, {'blockNum': '0x63670e', 'uniqueId': '0x21a9ee5875c21aa00e44ad69dd83e7405d04e8cd3d1d2cecb9dbfd012ab33822:log:6', 'hash': '0x21a9ee5875c21aa00e44ad69dd83e7405d04e8cd3d1d2cecb9dbfd012ab33822', 'from': '0x2b3c9956ab5f2fe8e804d8231496b9eedb443a53', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:04:05.000Z'}}, {'blockNum': '0x63670e', 'uniqueId': '0x21a9ee5875c21aa00e44ad69dd83e7405d04e8cd3d1d2cecb9dbfd012ab33822:log:7', 'hash': '0x21a9ee5875c21aa00e44ad69dd83e7405d04e8cd3d1d2cecb9dbfd012ab33822', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:04:05.000Z'}}, {'blockNum': '0x63671b', 'uniqueId': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03:log:78', 'hash': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2019.9603518064241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6d8094c5c262fb81fa', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:07:21.000Z'}}, {'blockNum': '0x63671b', 'uniqueId': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03:log:82', 'hash': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2019.9603518064241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6d8094c5c262fb81fa', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:07:21.000Z'}}, {'blockNum': '0x63671b', 'uniqueId': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03:log:83', 'hash': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2019.5505181328008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6d7ae4c0345dac652b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:07:21.000Z'}}, {'blockNum': '0x63671b', 'uniqueId': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03:log:84', 'hash': '0x3d681eea0b4788861c355f41fe05476f8464e30cffc231a01498102a7f54fb03', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2019.5505181328008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6d7ae4c0345dac652b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:07:21.000Z'}}, {'blockNum': '0x636721', 'uniqueId': '0xeaf675d5271905aa119ba804498f392b901b16d9e7fbeac6b984e4461ad404ea:log:0', 'hash': '0xeaf675d5271905aa119ba804498f392b901b16d9e7fbeac6b984e4461ad404ea', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x168ab6d1c39d3535580b0f0d2dc04199bfb46481', 'value': 972.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x34b8260d7963620000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:08:45.000Z'}}, {'blockNum': '0x636721', 'uniqueId': '0x993e431a5a8fb1b4f896c493026b2de8b224c87bf0cc38da16bf5e4868c3f971:log:4', 'hash': '0x993e431a5a8fb1b4f896c493026b2de8b224c87bf0cc38da16bf5e4868c3f971', 'from': '0x2b3c9956ab5f2fe8e804d8231496b9eedb443a53', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:08:45.000Z'}}, {'blockNum': '0x636721', 'uniqueId': '0x993e431a5a8fb1b4f896c493026b2de8b224c87bf0cc38da16bf5e4868c3f971:log:5', 'hash': '0x993e431a5a8fb1b4f896c493026b2de8b224c87bf0cc38da16bf5e4868c3f971', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:08:45.000Z'}}, {'blockNum': '0x636728', 'uniqueId': '0x66a8022cc6a456e6bfbabf74034102be60a363ba170f94e0fdddf384c886be86:log:26', 'hash': '0x66a8022cc6a456e6bfbabf74034102be60a363ba170f94e0fdddf384c886be86', 'from': '0x3b741b1799e3069b850bec7b20bcf5731971814c', 'to': '0x58d21abe3cfae1caac3d43b7cedcfde7044e6b13', 'value': 2600.0869068796474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8cf37451f4c98d9654', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:10:54.000Z'}}, {'blockNum': '0x63673a', 'uniqueId': '0x56534eec135798ecd4ad7301ed684eaaeec9bd5151e60ec677a255cdf9597470:log:0', 'hash': '0x56534eec135798ecd4ad7301ed684eaaeec9bd5151e60ec677a255cdf9597470', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9a2d77995e7ae1a134236c7e1222b3c585a7a969', 'value': 8623.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d37b1a68bd250e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:15:19.000Z'}}, {'blockNum': '0x63673d', 'uniqueId': '0xcb57a0fb282dc5f54e5e3380badffe35f8233f5bc202ac44e4dc9d5ae2feb443:log:6', 'hash': '0xcb57a0fb282dc5f54e5e3380badffe35f8233f5bc202ac44e4dc9d5ae2feb443', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x1b9cbc05718f26b6db7b9c606da09a0633572286', 'value': 456.312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x18bc99e25afc0c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:15:59.000Z'}}, {'blockNum': '0x63673d', 'uniqueId': '0xc5d6eb8dfd9a71f48b42703440eb454ae1cf0be0e76620e572e348c32a1dc4f8:log:61', 'hash': '0xc5d6eb8dfd9a71f48b42703440eb454ae1cf0be0e76620e572e348c32a1dc4f8', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4051.4357734317123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdba0f74a826b3188b3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:15:59.000Z'}}, {'blockNum': '0x63673d', 'uniqueId': '0xc5d6eb8dfd9a71f48b42703440eb454ae1cf0be0e76620e572e348c32a1dc4f8:log:64', 'hash': '0xc5d6eb8dfd9a71f48b42703440eb454ae1cf0be0e76620e572e348c32a1dc4f8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 4051.4357734317123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdba0f74a826b3188b3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:15:59.000Z'}}, {'blockNum': '0x63673f', 'uniqueId': '0x18517cf18e865f30e8dd2c94b57a52d1640891ad21647cefefb8f3b8f3dd1b45:log:15', 'hash': '0x18517cf18e865f30e8dd2c94b57a52d1640891ad21647cefefb8f3b8f3dd1b45', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 14036.337714159396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f8e950ff52d1283c0b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:16:10.000Z'}}, {'blockNum': '0x63673f', 'uniqueId': '0x18517cf18e865f30e8dd2c94b57a52d1640891ad21647cefefb8f3b8f3dd1b45:log:19', 'hash': '0x18517cf18e865f30e8dd2c94b57a52d1640891ad21647cefefb8f3b8f3dd1b45', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 14036.337714159396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f8e950ff52d1283c0b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:16:10.000Z'}}, {'blockNum': '0x636745', 'uniqueId': '0x49393e21c93f2deb1a9d910f3bd81c38811441c66e893672ddb43b798d64e366:log:34', 'hash': '0x49393e21c93f2deb1a9d910f3bd81c38811441c66e893672ddb43b798d64e366', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 14035.799091388832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f8e1d76cc475c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:18:07.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01:log:70', 'hash': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 3980.2603994082833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd7c53590f03d2376c2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01:log:72', 'hash': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3980.2603994082833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd7c53590f03d2376c2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01:log:73', 'hash': '0x15237b2f8948d190e864562a4483bb8f025c175564c41d685dae95364ebceb01', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 3980.2603994082833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd7c53590f03d2376c2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f:log:82', 'hash': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 991.9803980425294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x35c67e544843904b9a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f:log:84', 'hash': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 991.9803980425294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x35c67e544843904b9a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x63674c', 'uniqueId': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f:log:85', 'hash': '0x7a57446793e47f1c00cfa9c8af535f3843223fede9a418d875c0a70de9ebe99f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 991.9803980425294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x35c67e544843904b9a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:19:30.000Z'}}, {'blockNum': '0x636758', 'uniqueId': '0xfbf9e98623015f3a5ca46b12ee71fa56883a655166bbfd55ef1c14225ba3acec:log:3', 'hash': '0xfbf9e98623015f3a5ca46b12ee71fa56883a655166bbfd55ef1c14225ba3acec', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 36657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07c32e1152e3e6240000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:23:16.000Z'}}, {'blockNum': '0x636758', 'uniqueId': '0x85883dfe62e4a15f43cfa822e349143e13554f73f8ed14a88fd348377a4d7708:log:4', 'hash': '0x85883dfe62e4a15f43cfa822e349143e13554f73f8ed14a88fd348377a4d7708', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 60797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0cdfcfdd87b04fd40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:23:16.000Z'}}, {'blockNum': '0x636759', 'uniqueId': '0x42f53323e106d33f5bddd5bba2aa32b6bb9c3fcf244a78100cc727cff5ad4dfd:log:50', 'hash': '0x42f53323e106d33f5bddd5bba2aa32b6bb9c3fcf244a78100cc727cff5ad4dfd', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 6307.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0155ee25876ec85e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:23:27.000Z'}}, {'blockNum': '0x636761', 'uniqueId': '0x3c44cdf9a506e423e1248e600fe666a2416f1b7365ec79566dd419816ae727a9:log:7', 'hash': '0x3c44cdf9a506e423e1248e600fe666a2416f1b7365ec79566dd419816ae727a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2335951658665af2d0db9a8779eec57d4298896a', 'value': 995944.937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd2e648810312a32a8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:25:37.000Z'}}, {'blockNum': '0x636762', 'uniqueId': '0x71f3fae4515d7737435f0a42902d70fd974eca495b08351ca3085f654c88029d:log:10', 'hash': '0x71f3fae4515d7737435f0a42902d70fd974eca495b08351ca3085f654c88029d', 'from': '0x58d21abe3cfae1caac3d43b7cedcfde7044e6b13', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2600.0869068796474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8cf37451f4c98d9654', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:26:13.000Z'}}, {'blockNum': '0x636763', 'uniqueId': '0x17eb136e8734f98e3e15878a6c156c882d4bab3e39355478a9ebd8d4f55dc28e:log:112', 'hash': '0x17eb136e8734f98e3e15878a6c156c882d4bab3e39355478a9ebd8d4f55dc28e', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1266.0347754432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x44a1c310869f600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:26:57.000Z'}}, {'blockNum': '0x636763', 'uniqueId': '0x17eb136e8734f98e3e15878a6c156c882d4bab3e39355478a9ebd8d4f55dc28e:log:113', 'hash': '0x17eb136e8734f98e3e15878a6c156c882d4bab3e39355478a9ebd8d4f55dc28e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1266.0347754432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x44a1c310869f600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:26:57.000Z'}}, {'blockNum': '0x636766', 'uniqueId': '0xe6329289ce85d5bfb7b8be7ddccd0eeb96a19e278a176354f5f2659a8985ae20:log:9', 'hash': '0xe6329289ce85d5bfb7b8be7ddccd0eeb96a19e278a176354f5f2659a8985ae20', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 878.4731094912001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f9f436ebb73d20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:27:36.000Z'}}, {'blockNum': '0x636766', 'uniqueId': '0xe6329289ce85d5bfb7b8be7ddccd0eeb96a19e278a176354f5f2659a8985ae20:log:10', 'hash': '0xe6329289ce85d5bfb7b8be7ddccd0eeb96a19e278a176354f5f2659a8985ae20', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 878.4731094912001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f9f436ebb73d20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:27:36.000Z'}}, {'blockNum': '0x636767', 'uniqueId': '0xe5e53978b1fcbf1295c1f1c0b5b883e6c4e99de66c97acf44c9f2c04b8b1b9a6:log:35', 'hash': '0xe5e53978b1fcbf1295c1f1c0b5b883e6c4e99de66c97acf44c9f2c04b8b1b9a6', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4027.7262452452337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xda57ee203e0804c328', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:27:42.000Z'}}, {'blockNum': '0x636767', 'uniqueId': '0xe5e53978b1fcbf1295c1f1c0b5b883e6c4e99de66c97acf44c9f2c04b8b1b9a6:log:36', 'hash': '0xe5e53978b1fcbf1295c1f1c0b5b883e6c4e99de66c97acf44c9f2c04b8b1b9a6', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4027.7262452452337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xda57ee203e0804c328', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:27:42.000Z'}}, {'blockNum': '0x63676b', 'uniqueId': '0xfea25c047ea7e72800bdb06c5006e621a7bd25eca60b35fe869e35aa3a3e9290:log:0', 'hash': '0xfea25c047ea7e72800bdb06c5006e621a7bd25eca60b35fe869e35aa3a3e9290', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 21480.012927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x048c6f0fbf1ed9a2f000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:16.000Z'}}, {'blockNum': '0x63676b', 'uniqueId': '0x2dedc70b49c4c92683d69ec732fb6cd25bf23f239cae6aedc527c04448cf8a96:log:142', 'hash': '0x2dedc70b49c4c92683d69ec732fb6cd25bf23f239cae6aedc527c04448cf8a96', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4052.73927954435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdbb30e4669a185d14b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:16.000Z'}}, {'blockNum': '0x63676b', 'uniqueId': '0x2dedc70b49c4c92683d69ec732fb6cd25bf23f239cae6aedc527c04448cf8a96:log:144', 'hash': '0x2dedc70b49c4c92683d69ec732fb6cd25bf23f239cae6aedc527c04448cf8a96', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4052.73927954435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdbb30e4669a185d14b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:16.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0xfba31e1aa81dada3fe716bbdb287e71f6d47c30bcc8bae74f8b77dfc2354d7fe:log:0', 'hash': '0xfba31e1aa81dada3fe716bbdb287e71f6d47c30bcc8bae74f8b77dfc2354d7fe', 'from': '0x4903fe8eddf319abad3d6926aed1ac51841217d8', 'to': '0x439dd9d7148658fd0c182be9cf4ffb05210f8f3f', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6:log:28', 'hash': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5782.694568301987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01397b0217d77cc6a546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6:log:30', 'hash': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'value': 5782.694568301987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01397b0217d77cc6a546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6:log:34', 'hash': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6', 'from': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5782.694568301987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01397b0217d77cc6a546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63676c', 'uniqueId': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6:log:36', 'hash': '0x7424e80bd15e35f9957c8f660420ed6c1aafb16a567f00a01517050b77ba09d6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5782.694568301987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01397b0217d77cc6a546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:29:30.000Z'}}, {'blockNum': '0x63678a', 'uniqueId': '0x43ba835be01e55e790f562a33bdb3128fb95268e5cb13b0679bbe49be38b2c9d:log:4', 'hash': '0x43ba835be01e55e790f562a33bdb3128fb95268e5cb13b0679bbe49be38b2c9d', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14035.799091388832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f8e1d76cc475c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:36:10.000Z'}}, {'blockNum': '0x636799', 'uniqueId': '0x535273e668070dac3d79e7bd81e9005f61627798f59252e9d65ad391fbe4a814:log:2', 'hash': '0x535273e668070dac3d79e7bd81e9005f61627798f59252e9d65ad391fbe4a814', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 33440.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0714d029c6a33a320000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:39:44.000Z'}}, {'blockNum': '0x6367a9', 'uniqueId': '0x4253dc1efbf3c578c326a38eedd0a89a4e414895923675bb730a011ae443e7bb:log:2', 'hash': '0x4253dc1efbf3c578c326a38eedd0a89a4e414895923675bb730a011ae443e7bb', 'from': '0xb748955641fa963564d3ff5f303151ac5ca5f80b', 'to': '0x7ddbce6b026f69185fe8a5c944fb8fb596d325bb', 'value': 13365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d484a25131f7b40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:43:25.000Z'}}, {'blockNum': '0x6367af', 'uniqueId': '0xaca12201102b91f1362a5b90302186307d00349281698c5660e26c6b32ecc17c:log:16', 'hash': '0xaca12201102b91f1362a5b90302186307d00349281698c5660e26c6b32ecc17c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 38325.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x081da12818cc61660000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:44:59.000Z'}}, {'blockNum': '0x6367b1', 'uniqueId': '0xda85e677f624201ce8c7ece6fe15da9b2692e2ead59bbd86c5d4cbbe6040938c:log:13', 'hash': '0xda85e677f624201ce8c7ece6fe15da9b2692e2ead59bbd86c5d4cbbe6040938c', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07c32e1152e3e6240000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:45:57.000Z'}}, {'blockNum': '0x6367b1', 'uniqueId': '0xb95deb049fc2254c11ddd562be2add081412178ec11245564f4359e5b8d0812d:log:14', 'hash': '0xb95deb049fc2254c11ddd562be2add081412178ec11245564f4359e5b8d0812d', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0cdfcfdd87b04fd40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:45:57.000Z'}}, {'blockNum': '0x6367d1', 'uniqueId': '0xe198a5ce6ef4eb86e37fa5a02bb6fb038531ec1dbcb7a55ed8cffa696a079e26:log:54', 'hash': '0xe198a5ce6ef4eb86e37fa5a02bb6fb038531ec1dbcb7a55ed8cffa696a079e26', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4014.7424236036663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd9a3be5340235eec6a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:53:34.000Z'}}, {'blockNum': '0x6367d1', 'uniqueId': '0xe198a5ce6ef4eb86e37fa5a02bb6fb038531ec1dbcb7a55ed8cffa696a079e26:log:57', 'hash': '0xe198a5ce6ef4eb86e37fa5a02bb6fb038531ec1dbcb7a55ed8cffa696a079e26', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 4014.7424236036663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd9a3be5340235eec6a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:53:34.000Z'}}, {'blockNum': '0x6367d8', 'uniqueId': '0x7c6a09a623c3a83ce59301f4c9f56ecc504d0b7696146047fc70da1f84dad548:log:6', 'hash': '0x7c6a09a623c3a83ce59301f4c9f56ecc504d0b7696146047fc70da1f84dad548', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 28564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060c7521857121d00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:55:26.000Z'}}, {'blockNum': '0x6367db', 'uniqueId': '0xd16d24c944ebe76b801c3ea4539c66ba93015149f354652e15244d2d44e6741c:log:3', 'hash': '0xd16d24c944ebe76b801c3ea4539c66ba93015149f354652e15244d2d44e6741c', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6307.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0155ee25876ec85e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:56:15.000Z'}}, {'blockNum': '0x6367db', 'uniqueId': '0xb7cdf7827b6e6bc1fe7d411188b84f0dcccd45114d0eaa9a106a0b3be459ecf8:log:4', 'hash': '0xb7cdf7827b6e6bc1fe7d411188b84f0dcccd45114d0eaa9a106a0b3be459ecf8', 'from': '0x7ddbce6b026f69185fe8a5c944fb8fb596d325bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d484a25131f7b40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:56:15.000Z'}}, {'blockNum': '0x6367df', 'uniqueId': '0xf8a1931600d5372e580974be43911e54b09d3b074c1f6113f35533ef0e4cdc6e:log:3', 'hash': '0xf8a1931600d5372e580974be43911e54b09d3b074c1f6113f35533ef0e4cdc6e', 'from': '0x4903fe8eddf319abad3d6926aed1ac51841217d8', 'to': '0xc995e99188e122a07133d6d67795c20f7371568a', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:56:44.000Z'}}, {'blockNum': '0x6367e5', 'uniqueId': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f:log:35', 'hash': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8149.238895255553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b9c5687eb77ff293b0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:37.000Z'}}, {'blockNum': '0x6367e5', 'uniqueId': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f:log:39', 'hash': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 8149.238895255553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b9c5687eb77ff293b0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:37.000Z'}}, {'blockNum': '0x6367e5', 'uniqueId': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f:log:40', 'hash': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8148.451407059101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b9ba7ac65fd9aabcae', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:37.000Z'}}, {'blockNum': '0x6367e5', 'uniqueId': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f:log:41', 'hash': '0x28f1bf924e6667aef08e4b837885ac3756b17da8e14238d1f0758fde3c09c04f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 8148.451407059101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b9ba7ac65fd9aabcae', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:37.000Z'}}, {'blockNum': '0x6367e6', 'uniqueId': '0x65621c6905db7a978222976a8be5b3807b505f32219f27ee2aca3d29b9466257:log:20', 'hash': '0x65621c6905db7a978222976a8be5b3807b505f32219f27ee2aca3d29b9466257', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9356.713648388806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fb3a7c9137500cfb38', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:44.000Z'}}, {'blockNum': '0x6367e6', 'uniqueId': '0x65621c6905db7a978222976a8be5b3807b505f32219f27ee2aca3d29b9466257:log:24', 'hash': '0x65621c6905db7a978222976a8be5b3807b505f32219f27ee2aca3d29b9466257', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 9356.713648388806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fb3a7c9137500cfb38', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T16:57:44.000Z'}}, {'blockNum': '0x6367f5', 'uniqueId': '0xd33ed75568607f629e8022e2f18e805566387ff8cc4fd0dbb52e73aaa7fd3921:log:2', 'hash': '0xd33ed75568607f629e8022e2f18e805566387ff8cc4fd0dbb52e73aaa7fd3921', 'from': '0xbe052119c5bff6d84afacc025157eeaec54510da', 'to': '0x327d9da7da78426c5f11d82f8f31fcd82bf402fe', 'value': 84212.22871236567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x11d52770de62fb2a7cba', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:01:02.000Z'}}, {'blockNum': '0x636809', 'uniqueId': '0xd9c2271b51f2a5bc6221fbbeea590952b17a52ac6d8c0a6fd99903e70694fac7:log:78', 'hash': '0xd9c2271b51f2a5bc6221fbbeea590952b17a52ac6d8c0a6fd99903e70694fac7', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060c7521857121d00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:06:03.000Z'}}, {'blockNum': '0x636836', 'uniqueId': '0x9aafd20d4ff715f18fb57bd0a51c9c6e831ca92de2947a3c3a9d55ed1b605270:log:9', 'hash': '0x9aafd20d4ff715f18fb57bd0a51c9c6e831ca92de2947a3c3a9d55ed1b605270', 'from': '0xc995e99188e122a07133d6d67795c20f7371568a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:16:11.000Z'}}, {'blockNum': '0x636836', 'uniqueId': '0xa26f9df47adcd6a4c640365a900e13247f82a5f84fac8582a65bf9000a368156:log:11', 'hash': '0xa26f9df47adcd6a4c640365a900e13247f82a5f84fac8582a65bf9000a368156', 'from': '0x327d9da7da78426c5f11d82f8f31fcd82bf402fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84212.22871236567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x11d52770de62fb2a7cba', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:16:11.000Z'}}, {'blockNum': '0x636844', 'uniqueId': '0xa08ca721c416e977be00f2737402a8a22225615a8782aea880c701030ae2b6be:log:13', 'hash': '0xa08ca721c416e977be00f2737402a8a22225615a8782aea880c701030ae2b6be', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x46b87bbfe936a8a81e37f1958f30ba97f3a89aa8', 'value': 16365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x037725ff5a8393940000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:19:53.000Z'}}, {'blockNum': '0x63684c', 'uniqueId': '0xe21412812990c4dfbb2346994912a3c689026f251b34ce68002f6991da1555ff:log:67', 'hash': '0xe21412812990c4dfbb2346994912a3c689026f251b34ce68002f6991da1555ff', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3919.905634942562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd47f9e5e6e1b6e8b14', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:22:50.000Z'}}, {'blockNum': '0x63684c', 'uniqueId': '0xe21412812990c4dfbb2346994912a3c689026f251b34ce68002f6991da1555ff:log:70', 'hash': '0xe21412812990c4dfbb2346994912a3c689026f251b34ce68002f6991da1555ff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3919.905634942562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd47f9e5e6e1b6e8b14', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:22:50.000Z'}}, {'blockNum': '0x63684f', 'uniqueId': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47:log:16', 'hash': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1938.904350373923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x691bb401e8d936e870', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:23:15.000Z'}}, {'blockNum': '0x63684f', 'uniqueId': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47:log:20', 'hash': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1938.904350373923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x691bb401e8d936e870', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:23:15.000Z'}}, {'blockNum': '0x63684f', 'uniqueId': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47:log:21', 'hash': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1938.7120304517628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x691908bff5959d411c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:23:15.000Z'}}, {'blockNum': '0x63684f', 'uniqueId': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47:log:22', 'hash': '0x7cc63b30cd1fe699ebc3d270040267aff59d73f8cd742c3157180372ff753b47', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1938.7120304517628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x691908bff5959d411c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:23:15.000Z'}}, {'blockNum': '0x63687c', 'uniqueId': '0x2cbcdc00e4f19c5ffc69ac905722e56ff4affd7990857f05d22f9824465372e1:log:12', 'hash': '0x2cbcdc00e4f19c5ffc69ac905722e56ff4affd7990857f05d22f9824465372e1', 'from': '0x9dc33d9350d90d082af20be14bbf223d41f0aa9b', 'to': '0x97479e88c5ee2eccf1549bc37bac8742e4b30947', 'value': 75000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe1c215e8f838e00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:34:01.000Z'}}, {'blockNum': '0x636885', 'uniqueId': '0xd1d2998270d20d967355e891bc7f615d4cec32d46b582b8382ba42a0f820649f:log:5', 'hash': '0xd1d2998270d20d967355e891bc7f615d4cec32d46b582b8382ba42a0f820649f', 'from': '0x46b87bbfe936a8a81e37f1958f30ba97f3a89aa8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x037725ff5a8393940000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:36:09.000Z'}}, {'blockNum': '0x63689d', 'uniqueId': '0x91f4e881100a468382a840302367ecc753c0d814b55b3c49c5436b5c81f0253c:log:9', 'hash': '0x91f4e881100a468382a840302367ecc753c0d814b55b3c49c5436b5c81f0253c', 'from': '0x92bfb43f62aa5f03da3c9c284ee1a7924c475988', 'to': '0xc77b64621858db02165fb116b62edbb59f2f19ec', 'value': 373.729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x14428821661df68000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:42:31.000Z'}}, {'blockNum': '0x6368b3', 'uniqueId': '0x1858f344ab69d1043b78df88e8bb4e50b2f3a6fa748b4202966d748516620e33:log:9', 'hash': '0x1858f344ab69d1043b78df88e8bb4e50b2f3a6fa748b4202966d748516620e33', 'from': '0x97479e88c5ee2eccf1549bc37bac8742e4b30947', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe1c215e8f838e00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:46:35.000Z'}}, {'blockNum': '0x6368c8', 'uniqueId': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e:log:19', 'hash': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1936.9667850946798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6900d0648dc2c78431', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:13.000Z'}}, {'blockNum': '0x6368c8', 'uniqueId': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e:log:23', 'hash': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1936.9667850946798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6900d0648dc2c78431', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:13.000Z'}}, {'blockNum': '0x6368c8', 'uniqueId': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e:log:24', 'hash': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1936.8220508036707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x68fece317ba05e6399', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:13.000Z'}}, {'blockNum': '0x6368c8', 'uniqueId': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e:log:25', 'hash': '0x5f3a1c13650a2f3617393044f916d01c3a94a7532e95803b4b42596413b9359e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1936.8220508036707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x68fece317ba05e6399', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:13.000Z'}}, {'blockNum': '0x6368cb', 'uniqueId': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff:log:36', 'hash': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3870.900994692436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd1d78ae9c2a4e5f79b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:36.000Z'}}, {'blockNum': '0x6368cb', 'uniqueId': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff:log:40', 'hash': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 3870.900994692436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd1d78ae9c2a4e5f79b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:36.000Z'}}, {'blockNum': '0x6368cb', 'uniqueId': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff:log:41', 'hash': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3870.6053613861163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd1d3709cd5a5e94633', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:36.000Z'}}, {'blockNum': '0x6368cb', 'uniqueId': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff:log:42', 'hash': '0x820a7be160a2fcf09e4cfacd83a3794d229e07b3ff50cf6be8734a4b722d6bff', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3870.6053613861163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd1d3709cd5a5e94633', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:52:36.000Z'}}, {'blockNum': '0x6368cc', 'uniqueId': '0x3e0fdcb71f95638d6b1dd6c4ab9683bf86bdf8d4fc2c99143091ea8ac9cf0e46:log:9', 'hash': '0x3e0fdcb71f95638d6b1dd6c4ab9683bf86bdf8d4fc2c99143091ea8ac9cf0e46', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 11573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02735fa3679e3bb40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:53:01.000Z'}}, {'blockNum': '0x6368cd', 'uniqueId': '0x05b7fc3c6c272586a7e77c1eb281f9f492128607a990c33f7c04329f6681d6a7:log:11', 'hash': '0x05b7fc3c6c272586a7e77c1eb281f9f492128607a990c33f7c04329f6681d6a7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x65d6a0d19753f5a6410f5429cfb52a8cd68fbf1a', 'value': 1155.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3ea3c8a7e60bde0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:53:11.000Z'}}, {'blockNum': '0x6368cd', 'uniqueId': '0xec3a44c07802b9474a5c6816c5b47994b3d4ae973e5c6273768375d73f501d53:log:56', 'hash': '0xec3a44c07802b9474a5c6816c5b47994b3d4ae973e5c6273768375d73f501d53', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'value': 31483.25761557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06aab5f7fbe9c181b400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:53:11.000Z'}}, {'blockNum': '0x6368cd', 'uniqueId': '0xec3a44c07802b9474a5c6816c5b47994b3d4ae973e5c6273768375d73f501d53:log:57', 'hash': '0xec3a44c07802b9474a5c6816c5b47994b3d4ae973e5c6273768375d73f501d53', 'from': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 31483.25761557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06aab5f7fbe9c181b400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:53:11.000Z'}}, {'blockNum': '0x6368d0', 'uniqueId': '0x7fb3bf9a222bdb3bd3000205ab4be7dfe126b58171427381eb44315a9f4ebfd6:log:46', 'hash': '0x7fb3bf9a222bdb3bd3000205ab4be7dfe126b58171427381eb44315a9f4ebfd6', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5795.17261518502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a282d055ecea2ea41', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:22.000Z'}}, {'blockNum': '0x6368d0', 'uniqueId': '0x7fb3bf9a222bdb3bd3000205ab4be7dfe126b58171427381eb44315a9f4ebfd6:log:50', 'hash': '0x7fb3bf9a222bdb3bd3000205ab4be7dfe126b58171427381eb44315a9f4ebfd6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe708d227f6dfa0b8f2698bf543b949dfe4e28fb', 'value': 5795.17261518502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a282d055ecea2ea41', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:22.000Z'}}, {'blockNum': '0x6368d0', 'uniqueId': '0x47ceceed38e01bbcd47b5aba82901d8a8104ad8ce63f3c2a81911b532e26153e:log:67', 'hash': '0x47ceceed38e01bbcd47b5aba82901d8a8104ad8ce63f3c2a81911b532e26153e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19716.928747776736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x042cdb5a775657ea9c13', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:22.000Z'}}, {'blockNum': '0x6368d0', 'uniqueId': '0x47ceceed38e01bbcd47b5aba82901d8a8104ad8ce63f3c2a81911b532e26153e:log:71', 'hash': '0x47ceceed38e01bbcd47b5aba82901d8a8104ad8ce63f3c2a81911b532e26153e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 19716.928747776736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x042cdb5a775657ea9c13', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:22.000Z'}}, {'blockNum': '0x6368d2', 'uniqueId': '0x8014c8bb376233390081e7362a874b14085392915c5efd322017b52c44259569:log:21', 'hash': '0x8014c8bb376233390081e7362a874b14085392915c5efd322017b52c44259569', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b295238de2a52c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:54:46.000Z'}}, {'blockNum': '0x6368d3', 'uniqueId': '0xbf6030cdb7d3a5a85a1a8d4e41af3a7ac376cdfb9db5a6fa6a5c3ada9842651c:log:17', 'hash': '0xbf6030cdb7d3a5a85a1a8d4e41af3a7ac376cdfb9db5a6fa6a5c3ada9842651c', 'from': '0xbe708d227f6dfa0b8f2698bf543b949dfe4e28fb', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5795.172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a282ad5dce2000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:55:07.000Z'}}, {'blockNum': '0x6368d3', 'uniqueId': '0xbf6030cdb7d3a5a85a1a8d4e41af3a7ac376cdfb9db5a6fa6a5c3ada9842651c:log:19', 'hash': '0xbf6030cdb7d3a5a85a1a8d4e41af3a7ac376cdfb9db5a6fa6a5c3ada9842651c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5795.172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a282ad5dce2000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:55:07.000Z'}}, {'blockNum': '0x6368d5', 'uniqueId': '0x74530f6509d860d3617f30c93d4a69b72fa379075a7f65f31b5a0fc7bbfe3c4e:log:2', 'hash': '0x74530f6509d860d3617f30c93d4a69b72fa379075a7f65f31b5a0fc7bbfe3c4e', 'from': '0xeec05211c010be06fb8e587bfc3a5d8907a4def1', 'to': '0x1da5567d67949ab131a19028907a63dca76ce287', 'value': 20155.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0444a8664d8be1278000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:55:21.000Z'}}, {'blockNum': '0x6368d7', 'uniqueId': '0xa30b80692c4f5ae624052baddcaac881e819645bc15c6d9b140fb2a7006e900c:log:34', 'hash': '0xa30b80692c4f5ae624052baddcaac881e819645bc15c6d9b140fb2a7006e900c', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 26928.710579917966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05b3ceee6e0311c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:55:54.000Z'}}, {'blockNum': '0x6368dc', 'uniqueId': '0xb98dd465a05baacecc601fb4b395b40e25edd13fee8253b83c4c9303bcc724da:log:3', 'hash': '0xb98dd465a05baacecc601fb4b395b40e25edd13fee8253b83c4c9303bcc724da', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02baa8ede47312600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:57:12.000Z'}}, {'blockNum': '0x6368de', 'uniqueId': '0xdc03042a0ff83a2daf307f1d87786523bc3c8bc17aa0ca9a90bdf0680dd73e34:log:0', 'hash': '0xdc03042a0ff83a2daf307f1d87786523bc3c8bc17aa0ca9a90bdf0680dd73e34', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x082390c63ea47aac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:57:27.000Z'}}, {'blockNum': '0x6368df', 'uniqueId': '0xe4ce3e72571381634b68d202e337a27f6af76e8438f1bcdaf6a35115e54aa6e0:log:0', 'hash': '0xe4ce3e72571381634b68d202e337a27f6af76e8438f1bcdaf6a35115e54aa6e0', 'from': '0x65d6a0d19753f5a6410f5429cfb52a8cd68fbf1a', 'to': '0xad66ece9bf8c71870aecdaf01b06dcf4b3c2f579', 'value': 1155.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3ea3c8a7e60bde0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T17:57:52.000Z'}}, {'blockNum': '0x6368f2', 'uniqueId': '0x5029c4d4afc5f81bd1af64c06de25431361bebc03c49b8c4845e27d45de355c6:log:51', 'hash': '0x5029c4d4afc5f81bd1af64c06de25431361bebc03c49b8c4845e27d45de355c6', 'from': '0xd4355277db6d2cca7e556211ca7792a4fbf8f4ec', 'to': '0x0f957ffc48c09fca06dab8179a7b3c630c87cac7', 'value': 3257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb08ff473aca7440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:02:23.000Z'}}, {'blockNum': '0x6368fb', 'uniqueId': '0xc3b7d5dea01ec5a2736be82281e972550050517613417951a5f80c75601a16d9:log:3', 'hash': '0xc3b7d5dea01ec5a2736be82281e972550050517613417951a5f80c75601a16d9', 'from': '0x26c6af4554469a1745ec37e0f48d15728af14a19', 'to': '0x4fc679e93f9a5187b977ae33d2275b60edb9d1be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:04:05.000Z'}}, {'blockNum': '0x636908', 'uniqueId': '0x205b5428d2ee9a44f8219fc61dacfbcefe68e288b2fb9958f02784c4396c889c:log:3', 'hash': '0x205b5428d2ee9a44f8219fc61dacfbcefe68e288b2fb9958f02784c4396c889c', 'from': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07e09db4d9f3f3400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:06:11.000Z'}}, {'blockNum': '0x636908', 'uniqueId': '0x59340ad9829480e5c79544efc251f70300813430ae54958a54d8b1e50f075c9e:log:4', 'hash': '0x59340ad9829480e5c79544efc251f70300813430ae54958a54d8b1e50f075c9e', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26928.710579917966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05b3ceee6e0311c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:06:11.000Z'}}, {'blockNum': '0x636908', 'uniqueId': '0xd604ce77068e140fc1417c89838a4cef5fe1a78ebbf97e859559f455f63a544f:log:7', 'hash': '0xd604ce77068e140fc1417c89838a4cef5fe1a78ebbf97e859559f455f63a544f', 'from': '0x1da5567d67949ab131a19028907a63dca76ce287', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20155.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0444a8664d8be1278000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:06:11.000Z'}}, {'blockNum': '0x63691e', 'uniqueId': '0xb17af6b920cdb9e7bdd357fbe74ac80035b75dbe2568998ea62ae901845295b3:log:10', 'hash': '0xb17af6b920cdb9e7bdd357fbe74ac80035b75dbe2568998ea62ae901845295b3', 'from': '0x4b8c4610c373f4680f34267558aa366e9ce8a2f9', 'to': '0xa98bbdc7b6f9048784179d36bf971a7196959c3c', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:11:32.000Z'}}, {'blockNum': '0x63691f', 'uniqueId': '0xd0b653ab7f4ce89ad6c7355f9623f85eb59c095cbbf037992e41282ed389c417:log:25', 'hash': '0xd0b653ab7f4ce89ad6c7355f9623f85eb59c095cbbf037992e41282ed389c417', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6187.1088197989175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x014f676222e650c9eef9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:11:48.000Z'}}, {'blockNum': '0x63691f', 'uniqueId': '0xd0b653ab7f4ce89ad6c7355f9623f85eb59c095cbbf037992e41282ed389c417:log:27', 'hash': '0xd0b653ab7f4ce89ad6c7355f9623f85eb59c095cbbf037992e41282ed389c417', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 6187.1088197989175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x014f676222e650c9eef9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:11:48.000Z'}}, {'blockNum': '0x636926', 'uniqueId': '0xc7c418cfdfa1754487dfb5f9cadcc0c47d330df2784954f095539eea701d1b91:log:5', 'hash': '0xc7c418cfdfa1754487dfb5f9cadcc0c47d330df2784954f095539eea701d1b91', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5557a1d5a492169f5bf77c5484afa220ef6564fc', 'value': 423.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16eeff8595c5010000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:19.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x11482c6ea7ed6fb1d69f6c922248b873f9ed82c0e3dc24242262a11aea65a440:log:0', 'hash': '0x11482c6ea7ed6fb1d69f6c922248b873f9ed82c0e3dc24242262a11aea65a440', 'from': '0x96223967e98c758e1dbfed9f54dfdfd82916b819', 'to': '0x97feeef902d8dfcc2987ce82cab41b5389c6d12a', 'value': 1228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4291ec65c6f3b00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x4f1492e19e67233dd02b5011565cc4584cba8f1ec9e5f6e07db87c66afd75edc:log:27', 'hash': '0x4f1492e19e67233dd02b5011565cc4584cba8f1ec9e5f6e07db87c66afd75edc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5144.174035817157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116ddc17692d53fe35b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x4f1492e19e67233dd02b5011565cc4584cba8f1ec9e5f6e07db87c66afd75edc:log:29', 'hash': '0x4f1492e19e67233dd02b5011565cc4584cba8f1ec9e5f6e07db87c66afd75edc', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5144.174035817157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116ddc17692d53fe35b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x58d2575e9017fc846fba91f1e3cde25bfe16840ed03d769a80563d3aa1ca0985:log:34', 'hash': '0x58d2575e9017fc846fba91f1e3cde25bfe16840ed03d769a80563d3aa1ca0985', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5144.168891643122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116ddaf2ff97b2e9096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x636928', 'uniqueId': '0x58d2575e9017fc846fba91f1e3cde25bfe16840ed03d769a80563d3aa1ca0985:log:36', 'hash': '0x58d2575e9017fc846fba91f1e3cde25bfe16840ed03d769a80563d3aa1ca0985', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5144.168891643122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0116ddaf2ff97b2e9096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:13:42.000Z'}}, {'blockNum': '0x63692e', 'uniqueId': '0x14c6a1d497790b129f4eae1bf2a86c84a72b6057dc2af8faf900a12c0678bcda:log:51', 'hash': '0x14c6a1d497790b129f4eae1bf2a86c84a72b6057dc2af8faf900a12c0678bcda', 'from': '0x5557a1d5a492169f5bf77c5484afa220ef6564fc', 'to': '0xad66ece9bf8c71870aecdaf01b06dcf4b3c2f579', 'value': 423.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16eeff8595c5010000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:14:23.000Z'}}, {'blockNum': '0x636935', 'uniqueId': '0x14c346472bd11bab254a225c150781e55d515a930f4568317da7b641cc5d805d:log:8', 'hash': '0x14c346472bd11bab254a225c150781e55d515a930f4568317da7b641cc5d805d', 'from': '0x4fc679e93f9a5187b977ae33d2275b60edb9d1be', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:25.000Z'}}, {'blockNum': '0x636935', 'uniqueId': '0x22fc8eb271375c2f63ed59ffcb3b36dcbb171e96dcbcba3464ba48ef55da5850:log:9', 'hash': '0x22fc8eb271375c2f63ed59ffcb3b36dcbb171e96dcbcba3464ba48ef55da5850', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x082390c63ea47aac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:25.000Z'}}, {'blockNum': '0x636936', 'uniqueId': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f:log:19', 'hash': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 9754.285195605113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0210c7e670fc2660fba3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:33.000Z'}}, {'blockNum': '0x636936', 'uniqueId': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f:log:21', 'hash': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 9754.285195605113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0210c7e670fc2660fba3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:33.000Z'}}, {'blockNum': '0x636936', 'uniqueId': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f:log:25', 'hash': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9754.285195605113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0210c7e670fc2660fba3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:33.000Z'}}, {'blockNum': '0x636936', 'uniqueId': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f:log:27', 'hash': '0xa703410fc9bc269995d210e08aceb81ae54f2a9deaee3537f9d5f63c9394d16f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 9754.285195605113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0210c7e670fc2660fba3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:16:33.000Z'}}, {'blockNum': '0x63693c', 'uniqueId': '0xe76737a4b8c7315da470aa648cedf21e03aa44bdf1e4fe7e8be1442b2e0cada4:log:14', 'hash': '0xe76737a4b8c7315da470aa648cedf21e03aa44bdf1e4fe7e8be1442b2e0cada4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5841.302829688819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ca85c770d9e19beff', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:17:17.000Z'}}, {'blockNum': '0x63693c', 'uniqueId': '0xe76737a4b8c7315da470aa648cedf21e03aa44bdf1e4fe7e8be1442b2e0cada4:log:16', 'hash': '0xe76737a4b8c7315da470aa648cedf21e03aa44bdf1e4fe7e8be1442b2e0cada4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5841.302829688819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ca85c770d9e19beff', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:17:17.000Z'}}, {'blockNum': '0x63693e', 'uniqueId': '0x6ed2e70d667a4270fc6b23fb7d1d7fd15542dffa07ccd3d76f9e7d4299c31eb0:log:17', 'hash': '0x6ed2e70d667a4270fc6b23fb7d1d7fd15542dffa07ccd3d76f9e7d4299c31eb0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5841.296988385989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ca847b66b51e9570c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:17:30.000Z'}}, {'blockNum': '0x63693e', 'uniqueId': '0x6ed2e70d667a4270fc6b23fb7d1d7fd15542dffa07ccd3d76f9e7d4299c31eb0:log:19', 'hash': '0x6ed2e70d667a4270fc6b23fb7d1d7fd15542dffa07ccd3d76f9e7d4299c31eb0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5841.296988385989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ca847b66b51e9570c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:17:30.000Z'}}, {'blockNum': '0x636947', 'uniqueId': '0x6ff5dbd6b6b7a45ffc78a89478de6d0a233bf2bdd5137146e6380491e4935e54:log:2', 'hash': '0x6ff5dbd6b6b7a45ffc78a89478de6d0a233bf2bdd5137146e6380491e4935e54', 'from': '0xdc443d59e2dced15f9bd34d17a66a7a45889b5e2', 'to': '0x04b04a325bd9fbd8ac345b7761d6c8d3d0176185', 'value': 185000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x272cdebe93fde1a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:20:10.000Z'}}, {'blockNum': '0x636954', 'uniqueId': '0x45c849b6207f29ddd1bb85ff4f5079fe2a9a996a40743985d444fbe2d710b690:log:49', 'hash': '0x45c849b6207f29ddd1bb85ff4f5079fe2a9a996a40743985d444fbe2d710b690', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3899.5810444042536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3658eeb051250d107', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:23:29.000Z'}}, {'blockNum': '0x636954', 'uniqueId': '0x45c849b6207f29ddd1bb85ff4f5079fe2a9a996a40743985d444fbe2d710b690:log:52', 'hash': '0x45c849b6207f29ddd1bb85ff4f5079fe2a9a996a40743985d444fbe2d710b690', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3899.5810444042536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3658eeb051250d107', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:23:29.000Z'}}, {'blockNum': '0x636960', 'uniqueId': '0x1f0ae68a104a2df2290b163801431c1a661c8d629d69460b137a05b5292c4941:log:30', 'hash': '0x1f0ae68a104a2df2290b163801431c1a661c8d629d69460b137a05b5292c4941', 'from': '0x97feeef902d8dfcc2987ce82cab41b5389c6d12a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x584109de7c7ff00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:25:56.000Z'}}, {'blockNum': '0x636960', 'uniqueId': '0x2fe1448c7640d92b4775784132fa821a7bef830274f74b4bf510095a3af7cc53:log:31', 'hash': '0x2fe1448c7640d92b4775784132fa821a7bef830274f74b4bf510095a3af7cc53', 'from': '0xa98bbdc7b6f9048784179d36bf971a7196959c3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:25:56.000Z'}}, {'blockNum': '0x63696d', 'uniqueId': '0xb60f58e66330c650c875bdf1b3cd7b445b8591063744ffb7155033b331453408:log:12', 'hash': '0xb60f58e66330c650c875bdf1b3cd7b445b8591063744ffb7155033b331453408', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x50d96ae37788559441f12717efe1b9dd9aa076e5', 'value': 572.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1f0e95aaa54d4a0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:29:43.000Z'}}, {'blockNum': '0x636986', 'uniqueId': '0x8305585226e060d2093ba7e8435ec464ee5d5d0441b1fa1d6c4579170ea8992b:log:0', 'hash': '0x8305585226e060d2093ba7e8435ec464ee5d5d0441b1fa1d6c4579170ea8992b', 'from': '0xcc871936f6a902faf75742806c599b36d3e51d2e', 'to': '0x41c2fd5a92297de213892ec4f8cb500271e3d6f4', 'value': 11554.2605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02725b9353a77b454000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:36:03.000Z'}}, {'blockNum': '0x636987', 'uniqueId': '0x2d6fe2e3752931df8395fabe7c78b31ba50c7e6f24ebb3feeadc877605c7fbba:log:3', 'hash': '0x2d6fe2e3752931df8395fabe7c78b31ba50c7e6f24ebb3feeadc877605c7fbba', 'from': '0x04b04a325bd9fbd8ac345b7761d6c8d3d0176185', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 185000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x272cdebe93fde1a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:36:17.000Z'}}, {'blockNum': '0x6369da', 'uniqueId': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e:log:119', 'hash': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1927.7353879583625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6880b3e1c4b0076f04', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:53:27.000Z'}}, {'blockNum': '0x6369da', 'uniqueId': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e:log:123', 'hash': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1927.7353879583625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6880b3e1c4b0076f04', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:53:27.000Z'}}, {'blockNum': '0x6369da', 'uniqueId': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e:log:124', 'hash': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1927.544170831808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x687e0c8ace08c7cb0a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:53:27.000Z'}}, {'blockNum': '0x6369da', 'uniqueId': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e:log:125', 'hash': '0x609689492772020fd97bee80c6e7a223f7319cd7e391c6772d5c4d5a7e84937e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1927.544170831808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x687e0c8ace08c7cb0a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:53:27.000Z'}}, {'blockNum': '0x6369e2', 'uniqueId': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646:log:18', 'hash': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5804.328691472842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013aa73df03e3eac66a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:54:49.000Z'}}, {'blockNum': '0x6369e2', 'uniqueId': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646:log:22', 'hash': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 5804.328691472842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013aa73df03e3eac66a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:54:49.000Z'}}, {'blockNum': '0x6369e2', 'uniqueId': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646:log:24', 'hash': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5804.328691472842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013aa73df03e3eac66a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:54:49.000Z'}}, {'blockNum': '0x6369e2', 'uniqueId': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646:log:25', 'hash': '0x8d6f7267f189f3c63c47f713edc5b9b12aa0c896b3684ce26fad156b1809f646', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 5804.328691472842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013aa73df03e3eac66a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:54:49.000Z'}}, {'blockNum': '0x6369eb', 'uniqueId': '0x9d48dd8fc62891f7418eaaafa82689c2d22ba685baa8c94f1fe70d6826ed803e:log:7', 'hash': '0x9d48dd8fc62891f7418eaaafa82689c2d22ba685baa8c94f1fe70d6826ed803e', 'from': '0x41c2fd5a92297de213892ec4f8cb500271e3d6f4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11554.2605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02725b9353a77b454000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:56:24.000Z'}}, {'blockNum': '0x6369f2', 'uniqueId': '0xd6388f5da229e1b6f6fa3607b18cf19b11b2f4dee9b6893a9cee294f846fe700:log:127', 'hash': '0xd6388f5da229e1b6f6fa3607b18cf19b11b2f4dee9b6893a9cee294f846fe700', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x7b01a0d8e0d9dcd4154422b24f6284ae3cc5baaa', 'value': 10924.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02503947dafd107b4240', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T18:58:42.000Z'}}, {'blockNum': '0x6369fa', 'uniqueId': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386:log:18', 'hash': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4791.402129654994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0103be0fe2fc1806c332', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:00:36.000Z'}}, {'blockNum': '0x6369fa', 'uniqueId': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386:log:22', 'hash': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4791.402129654994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0103be0fe2fc1806c332', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:00:36.000Z'}}, {'blockNum': '0x6369fa', 'uniqueId': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386:log:23', 'hash': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4790.932649250666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0103b78bf50b5f13a9dd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:00:36.000Z'}}, {'blockNum': '0x6369fa', 'uniqueId': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386:log:24', 'hash': '0xaeb86dc7183e91c70b7965eace442fb8b3ec10b153461a00ffb0d06f07d30386', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4790.932649250666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0103b78bf50b5f13a9dd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:00:36.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xdadf3ee8ee395fc4e2d89de3b49af59792c16b6cbb7b8d4e0d7738f665def6e1:log:19', 'hash': '0xdadf3ee8ee395fc4e2d89de3b49af59792c16b6cbb7b8d4e0d7738f665def6e1', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19639.941654504353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0428aef15de6b19a22a3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xdadf3ee8ee395fc4e2d89de3b49af59792c16b6cbb7b8d4e0d7738f665def6e1:log:23', 'hash': '0xdadf3ee8ee395fc4e2d89de3b49af59792c16b6cbb7b8d4e0d7738f665def6e1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 19639.941654504353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0428aef15de6b19a22a3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0x8f3ad89caddbecbd05a51f5ade9363e8700f87ec9dce3cb3ba590139e90f7779:log:28', 'hash': '0x8f3ad89caddbecbd05a51f5ade9363e8700f87ec9dce3cb3ba590139e90f7779', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x167f482d3c5b1c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0x8f3ad89caddbecbd05a51f5ade9363e8700f87ec9dce3cb3ba590139e90f7779:log:33', 'hash': '0x8f3ad89caddbecbd05a51f5ade9363e8700f87ec9dce3cb3ba590139e90f7779', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x167f482d3c5b1c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0x40692b740541a9ba4fd3e752400a3303ba336e44579bb037396d9884daac1611:log:35', 'hash': '0x40692b740541a9ba4fd3e752400a3303ba336e44579bb037396d9884daac1611', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f6f10780d22cc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0x40692b740541a9ba4fd3e752400a3303ba336e44579bb037396d9884daac1611:log:40', 'hash': '0x40692b740541a9ba4fd3e752400a3303ba336e44579bb037396d9884daac1611', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f6f10780d22cc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xa6cc66f2e89109afb5701b7ea2ec7310acb19b0e95786213cdd12b91163e2da1:log:42', 'hash': '0xa6cc66f2e89109afb5701b7ea2ec7310acb19b0e95786213cdd12b91163e2da1', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 575.790368889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1f36b251d61ff97a00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xa6cc66f2e89109afb5701b7ea2ec7310acb19b0e95786213cdd12b91163e2da1:log:47', 'hash': '0xa6cc66f2e89109afb5701b7ea2ec7310acb19b0e95786213cdd12b91163e2da1', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 575.790368889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1f36b251d61ff97a00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xecddc584fb6e68b6b05e966f68a81a1974ed245c520c692b38bca87375ea06f3:log:60', 'hash': '0xecddc584fb6e68b6b05e966f68a81a1974ed245c520c692b38bca87375ea06f3', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6210.541365645348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0150ac93433230628310', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x6369ff', 'uniqueId': '0xecddc584fb6e68b6b05e966f68a81a1974ed245c520c692b38bca87375ea06f3:log:62', 'hash': '0xecddc584fb6e68b6b05e966f68a81a1974ed245c520c692b38bca87375ea06f3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 6210.541365645348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0150ac93433230628310', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:24.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975:log:64', 'hash': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9395.285928249383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fd51c8d56272a287e2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975:log:68', 'hash': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 9395.285928249383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fd51c8d56272a287e2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975:log:70', 'hash': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 9395.285928249383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fd51c8d56272a287e2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975:log:71', 'hash': '0xbf180f4f5ad3447f4cb705bfff3832e71e2b5904782c4d2fcbf5035d4e6d5975', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 9395.285928249383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01fd51c8d56272a287e2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xfb1b8f205f98dc047e2eac2e40bc05bb72f6183a46bcd9d01f90c9388ba0b87b:log:83', 'hash': '0xfb1b8f205f98dc047e2eac2e40bc05bb72f6183a46bcd9d01f90c9388ba0b87b', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a01', 'uniqueId': '0xfb1b8f205f98dc047e2eac2e40bc05bb72f6183a46bcd9d01f90c9388ba0b87b:log:88', 'hash': '0xfb1b8f205f98dc047e2eac2e40bc05bb72f6183a46bcd9d01f90c9388ba0b87b', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:01:40.000Z'}}, {'blockNum': '0x636a03', 'uniqueId': '0x57c177442fd38203e27969eb49bc71b7ac5247f2f08acec8cac7f39388533c68:log:67', 'hash': '0x57c177442fd38203e27969eb49bc71b7ac5247f2f08acec8cac7f39388533c68', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 6364.1059166916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158ffb624c0b48a4400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:27.000Z'}}, {'blockNum': '0x636a03', 'uniqueId': '0x57c177442fd38203e27969eb49bc71b7ac5247f2f08acec8cac7f39388533c68:log:72', 'hash': '0x57c177442fd38203e27969eb49bc71b7ac5247f2f08acec8cac7f39388533c68', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 6364.1059166916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158ffb624c0b48a4400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:27.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x6ec2df90fe1f9d534b879c605a4834d6cce46ab0232be6467d160d393e53ff39:log:64', 'hash': '0x6ec2df90fe1f9d534b879c605a4834d6cce46ab0232be6467d160d393e53ff39', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x6ec2df90fe1f9d534b879c605a4834d6cce46ab0232be6467d160d393e53ff39:log:68', 'hash': '0x6ec2df90fe1f9d534b879c605a4834d6cce46ab0232be6467d160d393e53ff39', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa:log:86', 'hash': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa:log:88', 'hash': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a04', 'uniqueId': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa:log:89', 'hash': '0x2bbf31d13f237e338f9c4c3c59375b7f27ef21a4432f46e34134c3c33b12cdfa', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1835.1821064898738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x637c4492a41a035b89', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:41.000Z'}}, {'blockNum': '0x636a05', 'uniqueId': '0x6cfda7a470a414d95dd783793b243b52c32bf05dad60ecc5d254db1c90b79b5b:log:28', 'hash': '0x6cfda7a470a414d95dd783793b243b52c32bf05dad60ecc5d254db1c90b79b5b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3722.100248232805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc9c684773c459870f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:56.000Z'}}, {'blockNum': '0x636a05', 'uniqueId': '0x6cfda7a470a414d95dd783793b243b52c32bf05dad60ecc5d254db1c90b79b5b:log:31', 'hash': '0x6cfda7a470a414d95dd783793b243b52c32bf05dad60ecc5d254db1c90b79b5b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3722.100248232805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc9c684773c459870f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:03:56.000Z'}}, {'blockNum': '0x636a07', 'uniqueId': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b:log:36', 'hash': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13451.255873328393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d931acbcfbf1af582d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:05.000Z'}}, {'blockNum': '0x636a07', 'uniqueId': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b:log:40', 'hash': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'value': 13451.255873328393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d931acbcfbf1af582d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:05.000Z'}}, {'blockNum': '0x636a07', 'uniqueId': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b:log:41', 'hash': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b', 'from': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 13451.255873328393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d931acbcfbf1af582d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:05.000Z'}}, {'blockNum': '0x636a07', 'uniqueId': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b:log:42', 'hash': '0x7eb219a57720b8548716504c1f3124507e61113fbcf70f7b170be2780f20c07b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 13451.255873328393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d931acbcfbf1af582d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:05.000Z'}}, {'blockNum': '0x636a08', 'uniqueId': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909:log:15', 'hash': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2095.831058483454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x719d7fab8079342dc5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:10.000Z'}}, {'blockNum': '0x636a08', 'uniqueId': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909:log:17', 'hash': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2095.831058483454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x719d7fab8079342dc5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:10.000Z'}}, {'blockNum': '0x636a08', 'uniqueId': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909:log:18', 'hash': '0x7be32e6ccc206518cc91b2e1f75da077964166d929353b46013b0e6d19f3a909', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2095.831058483454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x719d7fab8079342dc5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:10.000Z'}}, {'blockNum': '0x636a09', 'uniqueId': '0x9376fc6700f68216b7b5f07d15514608ebf0fb540a38ce23d59fafe432fb979d:log:76', 'hash': '0x9376fc6700f68216b7b5f07d15514608ebf0fb540a38ce23d59fafe432fb979d', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5831.6722240897725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c22b5ae493714cbfa', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:36.000Z'}}, {'blockNum': '0x636a09', 'uniqueId': '0x9376fc6700f68216b7b5f07d15514608ebf0fb540a38ce23d59fafe432fb979d:log:79', 'hash': '0x9376fc6700f68216b7b5f07d15514608ebf0fb540a38ce23d59fafe432fb979d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 5831.6722240897725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c22b5ae493714cbfa', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:04:36.000Z'}}, {'blockNum': '0x636a0a', 'uniqueId': '0x5ee2ba7bee271375677053fc15617f00be460a045230f17da64729632b2e154d:log:4', 'hash': '0x5ee2ba7bee271375677053fc15617f00be460a045230f17da64729632b2e154d', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 6947.543859649124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0178a08a1aaf985a6d90', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:01.000Z'}}, {'blockNum': '0x636a0a', 'uniqueId': '0xf5c6c68bb2063c629c3105f4975f624e04fe2a12f0a213b3d7f8b88c80e7f241:log:7', 'hash': '0xf5c6c68bb2063c629c3105f4975f624e04fe2a12f0a213b3d7f8b88c80e7f241', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'value': 25397.863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0560d2274adaccdd8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:01.000Z'}}, {'blockNum': '0x636a0b', 'uniqueId': '0x27f2435414f9b46136eae04fe50390ae4e0c454e2b60929864c17f3dab2f532b:log:33', 'hash': '0x27f2435414f9b46136eae04fe50390ae4e0c454e2b60929864c17f3dab2f532b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 17973.186614392904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ce5411efc436c178f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:07.000Z'}}, {'blockNum': '0x636a0b', 'uniqueId': '0x27f2435414f9b46136eae04fe50390ae4e0c454e2b60929864c17f3dab2f532b:log:37', 'hash': '0x27f2435414f9b46136eae04fe50390ae4e0c454e2b60929864c17f3dab2f532b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 17973.186614392904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ce5411efc436c178f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:07.000Z'}}, {'blockNum': '0x636a10', 'uniqueId': '0x00f1c7d3a6f7c2ef880907c7d6d14357828589bf941ae1d1fcc9cec397c343ee:log:3', 'hash': '0x00f1c7d3a6f7c2ef880907c7d6d14357828589bf941ae1d1fcc9cec397c343ee', 'from': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'to': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'value': 17973.186614392904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ce5411efc436c178f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:05:41.000Z'}}, {'blockNum': '0x636a14', 'uniqueId': '0x6c02dac0fc293af1f8a01f1025336a1c923f384505c603237a4cc1cc9902e186:log:23', 'hash': '0x6c02dac0fc293af1f8a01f1025336a1c923f384505c603237a4cc1cc9902e186', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3549.7760933150453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc06f0a1559a9254b78', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:14.000Z'}}, {'blockNum': '0x636a14', 'uniqueId': '0x6c02dac0fc293af1f8a01f1025336a1c923f384505c603237a4cc1cc9902e186:log:26', 'hash': '0x6c02dac0fc293af1f8a01f1025336a1c923f384505c603237a4cc1cc9902e186', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3549.7760933150453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc06f0a1559a9254b78', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:14.000Z'}}, {'blockNum': '0x636a17', 'uniqueId': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267:log:33', 'hash': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12309.525611332652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029b4cfc04d85fd33354', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:36.000Z'}}, {'blockNum': '0x636a17', 'uniqueId': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267:log:37', 'hash': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 12309.525611332652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029b4cfc04d85fd33354', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:36.000Z'}}, {'blockNum': '0x636a17', 'uniqueId': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267:log:39', 'hash': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 12309.525611332652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029b4cfc04d85fd33354', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:36.000Z'}}, {'blockNum': '0x636a17', 'uniqueId': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267:log:40', 'hash': '0xddf3710ebe3b4922fa350d4ccfdc1beb5892929e134a2c70f8f872941ab1a267', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 12309.525611332652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029b4cfc04d85fd33354', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:36.000Z'}}, {'blockNum': '0x636a18', 'uniqueId': '0xd90c18d8e1417efa648aad5e7fa85a83bfb71df8f17fe3ba3f648272da6b4601:log:45', 'hash': '0xd90c18d8e1417efa648aad5e7fa85a83bfb71df8f17fe3ba3f648272da6b4601', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'value': 9298.50517133684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01f812ae83bd311007cc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:06:48.000Z'}}, {'blockNum': '0x636a1a', 'uniqueId': '0xfc2b7271efd266aae840af74b221c88f6123f00c2685134ddd49ab5fbbbd0250:log:26', 'hash': '0xfc2b7271efd266aae840af74b221c88f6123f00c2685134ddd49ab5fbbbd0250', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 17358.957071065965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ad07ec3c702e200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:07:28.000Z'}}, {'blockNum': '0x636a23', 'uniqueId': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef:log:13', 'hash': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef', 'from': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'to': '0xe269e891a2ec8585a378882ffa531141205e92e9', 'value': 9298.50517133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01f812ae83bb99649400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:08:58.000Z'}}, {'blockNum': '0x636a23', 'uniqueId': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef:log:17', 'hash': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef', 'from': '0xe269e891a2ec8585a378882ffa531141205e92e9', 'to': '0x52f337325eb2ff7d957a75b28984742a4c5701e4', 'value': 3264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb0f11972963b000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:08:58.000Z'}}, {'blockNum': '0x636a23', 'uniqueId': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef:log:20', 'hash': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef', 'from': '0xe269e891a2ec8585a378882ffa531141205e92e9', 'to': '0x52f337325eb2ff7d957a75b28984742a4c5701e4', 'value': 5136.96628892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011679ba66f5793ef000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:08:58.000Z'}}, {'blockNum': '0x636a23', 'uniqueId': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef:log:23', 'hash': '0xdd0a696174d0ee6945fc6587cb9268c7ddec2ba14de8cd3c133593417784bdef', 'from': '0xe269e891a2ec8585a378882ffa531141205e92e9', 'to': '0x52f337325eb2ff7d957a75b28984742a4c5701e4', 'value': 897.53888241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x30a7daaa2fe525a400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:08:58.000Z'}}, {'blockNum': '0x636a26', 'uniqueId': '0x23d35be43fa7104ffaa6972f9e9d49f5c93beecf931e15a2e06c73eb20627a2f:log:0', 'hash': '0x23d35be43fa7104ffaa6972f9e9d49f5c93beecf931e15a2e06c73eb20627a2f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0835825278ede8f80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:09:35.000Z'}}, {'blockNum': '0x636a28', 'uniqueId': '0x609ca93e7f4b13bfcc1fbf97d628d9c1a3a7b59971e73b6a56d54a9ec9a0653a:log:1', 'hash': '0x609ca93e7f4b13bfcc1fbf97d628d9c1a3a7b59971e73b6a56d54a9ec9a0653a', 'from': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 1083.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3ac257a5ac15878000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:09:47.000Z'}}, {'blockNum': '0x636a28', 'uniqueId': '0x609ca93e7f4b13bfcc1fbf97d628d9c1a3a7b59971e73b6a56d54a9ec9a0653a:log:5', 'hash': '0x609ca93e7f4b13bfcc1fbf97d628d9c1a3a7b59971e73b6a56d54a9ec9a0653a', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 1083.915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3ac257a5ac15878000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:09:47.000Z'}}, {'blockNum': '0x636a2b', 'uniqueId': '0x3dd7d86e8c6963f7c3d3f056033d5838e668ebb1238fe9cf65df95d9db9f17e7:log:6', 'hash': '0x3dd7d86e8c6963f7c3d3f056033d5838e668ebb1238fe9cf65df95d9db9f17e7', 'from': '0x839a5e9568b758f97cb8fe66e13df05ff2a52c30', 'to': '0xb3a5c3368b76e2e7d43f4fd894e118afaa40db0b', 'value': 88831.4282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x12cf8fb612d2816e8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:01.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xf3d7ac86e7ffc2fa966d4e40d5551e8a9f8b1a7cbf88d388670ce2dd1849cf68:log:2', 'hash': '0xf3d7ac86e7ffc2fa966d4e40d5551e8a9f8b1a7cbf88d388670ce2dd1849cf68', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 43884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x094af4d7149a6a300000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xa9f287e082f557bdb735245338963d2add637a79ed67f91bc74f18cc10dbe391:log:3', 'hash': '0xa9f287e082f557bdb735245338963d2add637a79ed67f91bc74f18cc10dbe391', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 105977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1671065189ca24440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0x5a751f8a8e485c2ac0a8f983f1441f8e4c1faae2ebaf35cff3c870334efe7547:log:5', 'hash': '0x5a751f8a8e485c2ac0a8f983f1441f8e4c1faae2ebaf35cff3c870334efe7547', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 31749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06b91de29696b4f40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101:log:26', 'hash': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8909.92434674554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e3020a1a900c42233a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101:log:28', 'hash': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 8909.92434674554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e3020a1a900c42233a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101:log:32', 'hash': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8909.92434674554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e3020a1a900c42233a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2c', 'uniqueId': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101:log:34', 'hash': '0xff2c24b42eae2f95d8690911682d4c8674e8f21f1502276ac8d30334c82a9101', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 8909.92434674554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e3020a1a900c42233a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:19.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x136ff7f8ad5b9037641f014bc3f9542260651ee4a78f82040abb9aa2d05345d9:log:0', 'hash': '0x136ff7f8ad5b9037641f014bc3f9542260651ee4a78f82040abb9aa2d05345d9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 5217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ad06b43263ce40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a:log:15', 'hash': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3564.340878188998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1392a98068b182000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a:log:17', 'hash': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 3564.340878188998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1392a98068b182000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a:log:21', 'hash': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3564.340878188998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1392a98068b182000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a2d', 'uniqueId': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a:log:23', 'hash': '0x85937fda5c0a61c1bccd4484dd0b700459ac10dff31e8c6964263d08c443ec1a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3564.340878188998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1392a98068b182000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:10:26.000Z'}}, {'blockNum': '0x636a48', 'uniqueId': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb:log:50', 'hash': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2652.7596646797388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8fce6f8c1a682e4b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:15:58.000Z'}}, {'blockNum': '0x636a48', 'uniqueId': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb:log:54', 'hash': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 2652.7596646797388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8fce6f8c1a682e4b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:15:58.000Z'}}, {'blockNum': '0x636a48', 'uniqueId': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb:log:56', 'hash': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2652.7596646797388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8fce6f8c1a682e4b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:15:58.000Z'}}, {'blockNum': '0x636a48', 'uniqueId': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb:log:57', 'hash': '0x1dca4e49c120fd41d8c8839655edec921596bc98c48e894875f7f5c8360c14cb', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2652.7596646797388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8fce6f8c1a682e4b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:15:58.000Z'}}, {'blockNum': '0x636a49', 'uniqueId': '0xaa01a9f4e3a3c6ab76aea822283a6dbc931411ebf1e5ae3d91ed7a65d059eb60:log:5', 'hash': '0xaa01a9f4e3a3c6ab76aea822283a6dbc931411ebf1e5ae3d91ed7a65d059eb60', 'from': '0x7b01a0d8e0d9dcd4154422b24f6284ae3cc5baaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10924.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02503947dafd107b4240', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:16:07.000Z'}}, {'blockNum': '0x636a4d', 'uniqueId': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac:log:78', 'hash': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12211.206698066044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0295f8891225293ba289', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:12.000Z'}}, {'blockNum': '0x636a4d', 'uniqueId': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac:log:82', 'hash': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 12211.206698066044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0295f8891225293ba289', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:12.000Z'}}, {'blockNum': '0x636a4d', 'uniqueId': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac:log:83', 'hash': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 12210.815840023284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0295f31c76d37cf6504a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:12.000Z'}}, {'blockNum': '0x636a4d', 'uniqueId': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac:log:84', 'hash': '0x54c62bcaf42421a92b1cd855bf5580737eaa838dbb26efc3e29cb5ce470f9aac', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 12210.815840023284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0295f31c76d37cf6504a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:12.000Z'}}, {'blockNum': '0x636a51', 'uniqueId': '0xb50f611b64537c7ecf0c485a66188b8945da9f8a81479bfab19ddb549b52357c:log:1', 'hash': '0xb50f611b64537c7ecf0c485a66188b8945da9f8a81479bfab19ddb549b52357c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:34.000Z'}}, {'blockNum': '0x636a51', 'uniqueId': '0xb937905bc3900dbc9a67ef37ffe1a5a2f723ebac3be09b625252dbdea0a0aae2:log:3', 'hash': '0xb937905bc3900dbc9a67ef37ffe1a5a2f723ebac3be09b625252dbdea0a0aae2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x083d6c7aab6360000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:34.000Z'}}, {'blockNum': '0x636a51', 'uniqueId': '0x42a9322e859f43d1e308d7da1cc9a3663bdf1864646b851d252bbb361a9e6755:log:4', 'hash': '0x42a9322e859f43d1e308d7da1cc9a3663bdf1864646b851d252bbb361a9e6755', 'from': '0x9ca67b1344481fffc1fdfc04526ca42a5d80d228', 'to': '0xfcb1436eaa289ea182b4dcbddebc2b586c718951', 'value': 10957.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0251ff1597bc8bb20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:34.000Z'}}, {'blockNum': '0x636a52', 'uniqueId': '0xdca22c9854b774868cea942922c686c4aefdf03500c1878c951c5a44ea29cbb2:log:0', 'hash': '0xdca22c9854b774868cea942922c686c4aefdf03500c1878c951c5a44ea29cbb2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x7d6645feba93d57d817763350b33c19d9c2ced3c', 'value': 5311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011fe8ee591db39c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:52.000Z'}}, {'blockNum': '0x636a52', 'uniqueId': '0x320c3324e1c5f027ee95e25fa9b73f8a35db6909f890660728e2723018a824fc:log:1', 'hash': '0x320c3324e1c5f027ee95e25fa9b73f8a35db6909f890660728e2723018a824fc', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 3507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbe1d66df1e1eec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:17:52.000Z'}}, {'blockNum': '0x636a54', 'uniqueId': '0x18660ea3bfce693064a5b7ebde757d4c7232b3cc26df79116ef18421d2101f88:log:35', 'hash': '0x18660ea3bfce693064a5b7ebde757d4c7232b3cc26df79116ef18421d2101f88', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'value': 30671.25255821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x067eb122826e6e049400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:18:26.000Z'}}, {'blockNum': '0x636a54', 'uniqueId': '0x18660ea3bfce693064a5b7ebde757d4c7232b3cc26df79116ef18421d2101f88:log:36', 'hash': '0x18660ea3bfce693064a5b7ebde757d4c7232b3cc26df79116ef18421d2101f88', 'from': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 30671.25255821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x067eb122826e6e049400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:18:26.000Z'}}, {'blockNum': '0x636a58', 'uniqueId': '0xa4056c3d1e26677b5a4ec81b1edee45e2e0da032d40c8c4cd2dcb37c4c90b8fe:log:29', 'hash': '0xa4056c3d1e26677b5a4ec81b1edee45e2e0da032d40c8c4cd2dcb37c4c90b8fe', 'from': '0x7d6645feba93d57d817763350b33c19d9c2ced3c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011fe8ee591db39c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:19:40.000Z'}}, {'blockNum': '0x636a58', 'uniqueId': '0xa4056c3d1e26677b5a4ec81b1edee45e2e0da032d40c8c4cd2dcb37c4c90b8fe:log:31', 'hash': '0xa4056c3d1e26677b5a4ec81b1edee45e2e0da032d40c8c4cd2dcb37c4c90b8fe', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011fe8ee591db39c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:19:40.000Z'}}, {'blockNum': '0x636a5d', 'uniqueId': '0xe3303a806ca22548344f74e0c6f77f2b5e2e579cc06996a0bf3e15445a72aca4:log:3', 'hash': '0xe3303a806ca22548344f74e0c6f77f2b5e2e579cc06996a0bf3e15445a72aca4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 31968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06c4fd1ee246e7800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:20:54.000Z'}}, {'blockNum': '0x636a5d', 'uniqueId': '0xa133ba3ff3d6e587f69f8e9a4a434e56efcaceac4aef89b7dab3328b64194f7d:log:21', 'hash': '0xa133ba3ff3d6e587f69f8e9a4a434e56efcaceac4aef89b7dab3328b64194f7d', 'from': '0x0c76de67e73262ed7096e4043728575728f04e77', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e52e336cde22180000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:20:54.000Z'}}, {'blockNum': '0x636a5d', 'uniqueId': '0xa133ba3ff3d6e587f69f8e9a4a434e56efcaceac4aef89b7dab3328b64194f7d:log:22', 'hash': '0xa133ba3ff3d6e587f69f8e9a4a434e56efcaceac4aef89b7dab3328b64194f7d', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 8950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01e52e336cde22180000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:20:54.000Z'}}, {'blockNum': '0x636a60', 'uniqueId': '0x560bcf3d5601d496016e72f2e63a657e3fe69afc487a77cfaa27d2e3dfefca32:log:32', 'hash': '0x560bcf3d5601d496016e72f2e63a657e3fe69afc487a77cfaa27d2e3dfefca32', 'from': '0x9a2d77995e7ae1a134236c7e1222b3c585a7a969', 'to': '0x3717bc7c3bbdd6832bdd6020d084b3eb517d8340', 'value': 8623.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d37b1a68bd250e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:21:07.000Z'}}, {'blockNum': '0x636a6c', 'uniqueId': '0x86b0738e8ab4af6024b95c8f57da6648f1815abe6d90bb867dcc9118c16feaef:log:74', 'hash': '0x86b0738e8ab4af6024b95c8f57da6648f1815abe6d90bb867dcc9118c16feaef', 'from': '0xec0c666acd059e2bbf5dd055f1a282bf0ebf16fc', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:23:48.000Z'}}, {'blockNum': '0x636a6c', 'uniqueId': '0x86b0738e8ab4af6024b95c8f57da6648f1815abe6d90bb867dcc9118c16feaef:log:75', 'hash': '0x86b0738e8ab4af6024b95c8f57da6648f1815abe6d90bb867dcc9118c16feaef', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:23:48.000Z'}}, {'blockNum': '0x636a6f', 'uniqueId': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211:log:98', 'hash': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5317.567547959201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01204412f7304519b22c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:24:42.000Z'}}, {'blockNum': '0x636a6f', 'uniqueId': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211:log:100', 'hash': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5317.567547959201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01204412f7304519b22c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:24:42.000Z'}}, {'blockNum': '0x636a6f', 'uniqueId': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211:log:104', 'hash': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5317.567547959201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01204412f7304519b22c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:24:42.000Z'}}, {'blockNum': '0x636a6f', 'uniqueId': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211:log:106', 'hash': '0x1f7cf15d8eef9acb602d060563cbb7c699ae594fc589074f12b72bf195688211', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5317.567547959201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01204412f7304519b22c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:24:42.000Z'}}, {'blockNum': '0x636a71', 'uniqueId': '0x61920b54197240d197995a966c2506977c1296508ff6a542ef62bd6af375a930:log:3', 'hash': '0x61920b54197240d197995a966c2506977c1296508ff6a542ef62bd6af375a930', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'value': 75065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe548244c95b9440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:25:54.000Z'}}, {'blockNum': '0x636a71', 'uniqueId': '0xcddfc09bd53b6456445eaf1f4bdea15b5bde8a0043dc5966cbd08c74362b49d0:log:5', 'hash': '0xcddfc09bd53b6456445eaf1f4bdea15b5bde8a0043dc5966cbd08c74362b49d0', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 5955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0142d239f50ecb2c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:25:54.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x6c4b5dfb6ed9302d2144333ac477853dce7c6adb5f05f5b5b0b0c34c01420551:log:12', 'hash': '0x6c4b5dfb6ed9302d2144333ac477853dce7c6adb5f05f5b5b0b0c34c01420551', 'from': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17973.186614392904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ce5411efc436c178f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x496d987e86d1024eb0bdfad59cb3875a22659223ae46e413e209da1b807413c2:log:13', 'hash': '0x496d987e86d1024eb0bdfad59cb3875a22659223ae46e413e209da1b807413c2', 'from': '0xb3a5c3368b76e2e7d43f4fd894e118afaa40db0b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 88831.4282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x12cf8fb612d2816e8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x05a2ad531417cd09a2fd0948bdac6c8a49fd880ef5a203ebdcd81243658b4d30:log:14', 'hash': '0x05a2ad531417cd09a2fd0948bdac6c8a49fd880ef5a203ebdcd81243658b4d30', 'from': '0x4c3ecbba6b80c46ef6027690b726432c3d8dbe75', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25397.863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0560d2274adaccdd8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0xf565d013cdffa7b86d65ef693ff91a5bae61ab2a72d1a6d43c6bbd65e09eb98e:log:15', 'hash': '0xf565d013cdffa7b86d65ef693ff91a5bae61ab2a72d1a6d43c6bbd65e09eb98e', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44451.00804132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0969b1a84e0bdecc1000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0xf2b734676ea3f383488c14126af2c663ee29434fa9f55b840af04600b11db6d7:log:16', 'hash': '0xf2b734676ea3f383488c14126af2c663ee29434fa9f55b840af04600b11db6d7', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbe1d66df1e1eec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0xc495484daf83cd889dd54b9f221d2cd520b575db29ec93133354bef8f9d67954:log:17', 'hash': '0xc495484daf83cd889dd54b9f221d2cd520b575db29ec93133354bef8f9d67954', 'from': '0xfcb1436eaa289ea182b4dcbddebc2b586c718951', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10957.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0251ff1597bc8bb20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0xd2ea32c938f4400098e35240c528c16c676d9b5460cf541d212adace0ea54a12:log:18', 'hash': '0xd2ea32c938f4400098e35240c528c16c676d9b5460cf541d212adace0ea54a12', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17358.957071065965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03ad07ec3c702e200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x0cd350c0d349b7971be222c427ddc4c37f49a3c301ceb6ed2e58fd385ce977ab:log:20', 'hash': '0x0cd350c0d349b7971be222c427ddc4c37f49a3c301ceb6ed2e58fd385ce977ab', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x73592fc7644530c0bc86a3c4f3fd3b686542ed8df0276976e65837def03b32be:log:21', 'hash': '0x73592fc7644530c0bc86a3c4f3fd3b686542ed8df0276976e65837def03b32be', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0d7e1b0178dd9c740000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a73', 'uniqueId': '0x6406184e77fd21738c2dad7bffad8368637ed9bf0ddd860c5eb4801f87b2fcea:log:23', 'hash': '0x6406184e77fd21738c2dad7bffad8368637ed9bf0ddd860c5eb4801f87b2fcea', 'from': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025da2a5383508100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:26:17.000Z'}}, {'blockNum': '0x636a77', 'uniqueId': '0x57135893f8cfd1597f5548c1d301f4146189cf5c87112ec3d2ce645df467978b:log:9', 'hash': '0x57135893f8cfd1597f5548c1d301f4146189cf5c87112ec3d2ce645df467978b', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 105977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1671065189ca24440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:27:22.000Z'}}, {'blockNum': '0x636a78', 'uniqueId': '0xaee1097efaf5ac4b0b1f9b7a86e310a4aa12e348e7f163f29d8d81ceb860a901:log:107', 'hash': '0xaee1097efaf5ac4b0b1f9b7a86e310a4aa12e348e7f163f29d8d81ceb860a901', 'from': '0xec0c666acd059e2bbf5dd055f1a282bf0ebf16fc', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:27:29.000Z'}}, {'blockNum': '0x636a78', 'uniqueId': '0xaee1097efaf5ac4b0b1f9b7a86e310a4aa12e348e7f163f29d8d81ceb860a901:log:108', 'hash': '0xaee1097efaf5ac4b0b1f9b7a86e310a4aa12e348e7f163f29d8d81ceb860a901', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:27:29.000Z'}}, {'blockNum': '0x636a7b', 'uniqueId': '0x0fe118b91aeaebb9c363cd33171a9680e9cf41f52b8f3516cdb7d75b770ebab2:log:14', 'hash': '0x0fe118b91aeaebb9c363cd33171a9680e9cf41f52b8f3516cdb7d75b770ebab2', 'from': '0xbf105914c2867dffafd77b7dfb75884d22fa0fa1', 'to': '0x0d21e953e5820dc4a23e96d7f898cc0c086612c3', 'value': 6257.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01533df2752bfcbf0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:28:23.000Z'}}, {'blockNum': '0x636a80', 'uniqueId': '0x997d5609686af9fc2bb8e1fca6a17ccccbe038e663b401ad4864fc4520804609:log:11', 'hash': '0x997d5609686af9fc2bb8e1fca6a17ccccbe038e663b401ad4864fc4520804609', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x083f9797377587a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:30:09.000Z'}}, {'blockNum': '0x636a81', 'uniqueId': '0x1d6159592d23d0d3f4132cdacf12e66a590ce4fc6ba715c15e560ab3037b5eb2:log:15', 'hash': '0x1d6159592d23d0d3f4132cdacf12e66a590ce4fc6ba715c15e560ab3037b5eb2', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:30:33.000Z'}}, {'blockNum': '0x636a81', 'uniqueId': '0x1d6159592d23d0d3f4132cdacf12e66a590ce4fc6ba715c15e560ab3037b5eb2:log:16', 'hash': '0x1d6159592d23d0d3f4132cdacf12e66a590ce4fc6ba715c15e560ab3037b5eb2', 'from': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:30:33.000Z'}}, {'blockNum': '0x636a87', 'uniqueId': '0x648814b8347f067977d0bcc133d890050dac7375053403bfc3d4822025684bf1:log:2', 'hash': '0x648814b8347f067977d0bcc133d890050dac7375053403bfc3d4822025684bf1', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:31:29.000Z'}}, {'blockNum': '0x636a8e', 'uniqueId': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4:log:22', 'hash': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7812.732841997638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01a78772d62a094bb8cb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:03.000Z'}}, {'blockNum': '0x636a8e', 'uniqueId': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4:log:26', 'hash': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 7812.732841997638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01a78772d62a094bb8cb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:03.000Z'}}, {'blockNum': '0x636a8e', 'uniqueId': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4:log:27', 'hash': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 7811.978433741177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01a77cfaa3da1b3ea9df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:03.000Z'}}, {'blockNum': '0x636a8e', 'uniqueId': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4:log:28', 'hash': '0x93c09aaadf3ef068ed63625ca44228c5543ec7c5e8d720d17fcec49e84488ef4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 7811.978433741177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01a77cfaa3da1b3ea9df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:03.000Z'}}, {'blockNum': '0x636a92', 'uniqueId': '0x7512d066a6974a0ff4153b465e2f9c8d116402bac5c7b0eea7df027cf55bea07:log:32', 'hash': '0x7512d066a6974a0ff4153b465e2f9c8d116402bac5c7b0eea7df027cf55bea07', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8789.165791079946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dc762d87fdb750c674', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:58.000Z'}}, {'blockNum': '0x636a92', 'uniqueId': '0x7512d066a6974a0ff4153b465e2f9c8d116402bac5c7b0eea7df027cf55bea07:log:36', 'hash': '0x7512d066a6974a0ff4153b465e2f9c8d116402bac5c7b0eea7df027cf55bea07', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 8789.165791079946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dc762d87fdb750c674', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:33:58.000Z'}}, {'blockNum': '0x636a93', 'uniqueId': '0xa57c617b9693e7f59b0bd75767703ea656acb471746edbd0dc2ab475ce4d0aa4:log:0', 'hash': '0xa57c617b9693e7f59b0bd75767703ea656acb471746edbd0dc2ab475ce4d0aa4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 32189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06d0f81c9b5e68d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:34:13.000Z'}}, {'blockNum': '0x636a97', 'uniqueId': '0xe6a187063c5cd5c5bd28d91791adc841dc2016f04dfa93efb4e957be5b5640b1:log:17', 'hash': '0xe6a187063c5cd5c5bd28d91791adc841dc2016f04dfa93efb4e957be5b5640b1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 106428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16897933684a09700000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:34:26.000Z'}}, {'blockNum': '0x636a9b', 'uniqueId': '0x41d969d416bea7870b5054518c42d42bd3f1eb1443080ca320a1f78d286f0ad4:log:11', 'hash': '0x41d969d416bea7870b5054518c42d42bd3f1eb1443080ca320a1f78d286f0ad4', 'from': '0x3717bc7c3bbdd6832bdd6020d084b3eb517d8340', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8623.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d37b1a68bd250e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:36:05.000Z'}}, {'blockNum': '0x636a9b', 'uniqueId': '0xdc339b5316a48312bbdda9664b808215efd40d77c7b8c906b2cdad4af0bcf652:log:12', 'hash': '0xdc339b5316a48312bbdda9664b808215efd40d77c7b8c906b2cdad4af0bcf652', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:36:05.000Z'}}, {'blockNum': '0x636a9b', 'uniqueId': '0x307b0a4f28245bf9af68802d25a773875928ca9ad9d6f5e08273b4a17ff09a9b:log:13', 'hash': '0x307b0a4f28245bf9af68802d25a773875928ca9ad9d6f5e08273b4a17ff09a9b', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 116630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x18b286645bc6d0980000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:36:05.000Z'}}, {'blockNum': '0x636a9b', 'uniqueId': '0xda441604eb3d93bda483596b528ff9f4392d41c8d73436180934a61df8dd9d89:log:14', 'hash': '0xda441604eb3d93bda483596b528ff9f4392d41c8d73436180934a61df8dd9d89', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 106428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16897933684a09700000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:36:05.000Z'}}, {'blockNum': '0x636aa0', 'uniqueId': '0x2b37e5f7a939cc1c079118edec9ecfaa49160ea188fe2ee5a44b440811203194:log:58', 'hash': '0x2b37e5f7a939cc1c079118edec9ecfaa49160ea188fe2ee5a44b440811203194', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4918.902410400562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010aa77be0cc2238a0a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:37:37.000Z'}}, {'blockNum': '0x636aa0', 'uniqueId': '0x2b37e5f7a939cc1c079118edec9ecfaa49160ea188fe2ee5a44b440811203194:log:60', 'hash': '0x2b37e5f7a939cc1c079118edec9ecfaa49160ea188fe2ee5a44b440811203194', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4918.902410400562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010aa77be0cc2238a0a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:37:37.000Z'}}, {'blockNum': '0x636aa2', 'uniqueId': '0x48922c33ad529181d99fcfb859ed15fab7408b708311fb03f4cf5f65612a1996:log:4', 'hash': '0x48922c33ad529181d99fcfb859ed15fab7408b708311fb03f4cf5f65612a1996', 'from': '0x7467c531eb941ece24926f0cdc521fbe3212e77e', 'to': '0xa5b16782b9e1b52eef167f69d46c4702a9794028', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:38:00.000Z'}}, {'blockNum': '0x636aab', 'uniqueId': '0xc552efad7f5ca1f206ea9fc6825fe369236aa3970e70b6b0a4778044abb2538e:log:12', 'hash': '0xc552efad7f5ca1f206ea9fc6825fe369236aa3970e70b6b0a4778044abb2538e', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8452.841289500335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ca3abcdfba5e500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:40:58.000Z'}}, {'blockNum': '0x636aab', 'uniqueId': '0xc552efad7f5ca1f206ea9fc6825fe369236aa3970e70b6b0a4778044abb2538e:log:14', 'hash': '0xc552efad7f5ca1f206ea9fc6825fe369236aa3970e70b6b0a4778044abb2538e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 8452.841289500335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ca3abcdfba5e500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:40:58.000Z'}}, {'blockNum': '0x636aba', 'uniqueId': '0xc642aa629c33083718f6cd13e69cf0e7444fa7a2624ddca1f963b3ee78da01c0:log:6', 'hash': '0xc642aa629c33083718f6cd13e69cf0e7444fa7a2624ddca1f963b3ee78da01c0', 'from': '0x2b47023def4dae285f87e3b99d7ee538ace7f0fd', 'to': '0x3f6000b95af1e0edd5b1acca858a2bbbf4d305c0', 'value': 3609.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc3a7b635a38bd80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:43:18.000Z'}}, {'blockNum': '0x636abe', 'uniqueId': '0xeeaf7e6addafe8dd19d9cf963124ac9c5ec7eb21f4f655bdc4b4e8f8e73128e1:log:2', 'hash': '0xeeaf7e6addafe8dd19d9cf963124ac9c5ec7eb21f4f655bdc4b4e8f8e73128e1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x7d6645feba93d57d817763350b33c19d9c2ced3c', 'value': 5341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01218943c22b51540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:27.000Z'}}, {'blockNum': '0x636abe', 'uniqueId': '0x4698705c765bd99c4899a3b65e961ca7ae3d1f49fdaf9ca298da24c5c6cb92b7:log:23', 'hash': '0x4698705c765bd99c4899a3b65e961ca7ae3d1f49fdaf9ca298da24c5c6cb92b7', 'from': '0x79d4f6e6acc7ca51a3deaf2953ee2146b71ec957', 'to': '0x89a252dc5a40db1a1d1032bcfb7c2643e316aa57', 'value': 691.411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x257b41513f5d9b8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:27.000Z'}}, {'blockNum': '0x636abf', 'uniqueId': '0x867a155e41d3db7686db8d38de9107a39a6c900ad929aa40936af4bd8450526f:log:0', 'hash': '0x867a155e41d3db7686db8d38de9107a39a6c900ad929aa40936af4bd8450526f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'value': 6615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01669990fc3a58fc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:32.000Z'}}, {'blockNum': '0x636ac1', 'uniqueId': '0xd1daa924cff81a9f45b70f1219e957aefe36540de66424def04feb93915b7f23:log:0', 'hash': '0xd1daa924cff81a9f45b70f1219e957aefe36540de66424def04feb93915b7f23', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 36979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07d4a2b720dc71ec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:41.000Z'}}, {'blockNum': '0x636ac4', 'uniqueId': '0xb2dc51eabdeb09829ad53732a93771f8e4334995b5b15ecc2c4a3c9a00156048:log:0', 'hash': '0xb2dc51eabdeb09829ad53732a93771f8e4334995b5b15ecc2c4a3c9a00156048', 'from': '0x91e45b670297b1380267537c8b2b4cd691033b9b', 'to': '0x0eefa421593a312f2a851526d76346d60ad42fc6', 'value': 350, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x12f939c99edab80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:44:48.000Z'}}, {'blockNum': '0x636acb', 'uniqueId': '0x4ec568ccf18579f1b5a9f69cbc03a53ffe5c6a884b8ffe1b1324f1118127083f:log:11', 'hash': '0x4ec568ccf18579f1b5a9f69cbc03a53ffe5c6a884b8ffe1b1324f1118127083f', 'from': '0x7d6645feba93d57d817763350b33c19d9c2ced3c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01218943c22b51540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:45:30.000Z'}}, {'blockNum': '0x636acb', 'uniqueId': '0x4ec568ccf18579f1b5a9f69cbc03a53ffe5c6a884b8ffe1b1324f1118127083f:log:13', 'hash': '0x4ec568ccf18579f1b5a9f69cbc03a53ffe5c6a884b8ffe1b1324f1118127083f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01218943c22b51540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:45:30.000Z'}}, {'blockNum': '0x636acd', 'uniqueId': '0x2d2155ece49876c2cdf881219f2d300723de40cec4fc91f0683621773ba43059:log:7', 'hash': '0x2d2155ece49876c2cdf881219f2d300723de40cec4fc91f0683621773ba43059', 'from': '0x79e4377bf165c4b62b0316301f64ce695866bfeb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe548244c95b9440000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:46:21.000Z'}}, {'blockNum': '0x636acd', 'uniqueId': '0x6b4092105c3b7d7108c04d74dbd9ef9c45c2ff86745db51f5a243f6abee6867e:log:9', 'hash': '0x6b4092105c3b7d7108c04d74dbd9ef9c45c2ff86745db51f5a243f6abee6867e', 'from': '0x0d21e953e5820dc4a23e96d7f898cc0c086612c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6257.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01533df2752bfcbf0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:46:21.000Z'}}, {'blockNum': '0x636acd', 'uniqueId': '0x7a1c83102efed4400296187e22f34cdc9232fd85f6e92be890b4164541bd221f:log:10', 'hash': '0x7a1c83102efed4400296187e22f34cdc9232fd85f6e92be890b4164541bd221f', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06d0f81c9b5e68d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:46:21.000Z'}}, {'blockNum': '0x636ad8', 'uniqueId': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d:log:42', 'hash': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d', 'from': '0xa58f938ca61b57fc7564e91270e1b9619cc51392', 'to': '0x7fd65f765932e29f041113777c47ce77ecf4e24a', 'value': 12.591380952477357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xaebd9243a8084fe0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:49:38.000Z'}}, {'blockNum': '0x636ad8', 'uniqueId': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d:log:44', 'hash': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d', 'from': '0x7fd65f765932e29f041113777c47ce77ecf4e24a', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 12.591380952477357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xaebd9243a8084fe0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:49:38.000Z'}}, {'blockNum': '0x636ad8', 'uniqueId': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d:log:45', 'hash': '0x0f4285e78dd90ee80a63b7c541ff8e79cccba31c7dade9dc70fc96c9ef5e5b3d', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 12.591380952477357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xaebd9243a8084fe0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:49:38.000Z'}}, {'blockNum': '0x636adc', 'uniqueId': '0x19c7b53f168aa28125843f4830a32ee8771b1d057c6693543d28be61901133aa:log:13', 'hash': '0x19c7b53f168aa28125843f4830a32ee8771b1d057c6693543d28be61901133aa', 'from': '0x14c0e23b154935aaa27f791d4927152bcc155c38', 'to': '0xf62c66b080922285c4d27a8dd6ba5b8be419a6b8', 'value': 7000.576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017b80821d5bd5000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:50:07.000Z'}}, {'blockNum': '0x636aea', 'uniqueId': '0x66e06bc00ef8965bb4942b2a8dd755ee2570b16b934e7efa37874af765ec9a10:log:22', 'hash': '0x66e06bc00ef8965bb4942b2a8dd755ee2570b16b934e7efa37874af765ec9a10', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 28526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060a65c666c648f80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:53:41.000Z'}}, {'blockNum': '0x636af6', 'uniqueId': '0xaf44eb8e53379cfd64bae50ea80ee4dbd0c9ee6e8f8827717cd38f50908edaf2:log:11', 'hash': '0xaf44eb8e53379cfd64bae50ea80ee4dbd0c9ee6e8f8827717cd38f50908edaf2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6c9b379550aa7187c1385eab5ab3fd0cefe48525', 'value': 422.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x16e1aceaabdca10000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:55:05.000Z'}}, {'blockNum': '0x636afd', 'uniqueId': '0x38904186377968f865fa1b693dc413e115e34c3668a83ad4c9c145d9a2a7ff02:log:1', 'hash': '0x38904186377968f865fa1b693dc413e115e34c3668a83ad4c9c145d9a2a7ff02', 'from': '0xa5b16782b9e1b52eef167f69d46c4702a9794028', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:56:11.000Z'}}, {'blockNum': '0x636afd', 'uniqueId': '0xb75997c247ed962acb3548f3c116bca625c3c783b41b480d3a1af956e74a5e47:log:4', 'hash': '0xb75997c247ed962acb3548f3c116bca625c3c783b41b480d3a1af956e74a5e47', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07d4a2b720dc71ec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:56:11.000Z'}}, {'blockNum': '0x636afd', 'uniqueId': '0xc053f881cc6879a24834b6da5c4ffc43993facb32e21f4f5518de38ce6fed91d:log:5', 'hash': '0xc053f881cc6879a24834b6da5c4ffc43993facb32e21f4f5518de38ce6fed91d', 'from': '0x55f08cfc99a9da49f8d9db5aeb0f1a3e8ad0bf7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01669990fc3a58fc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:56:11.000Z'}}, {'blockNum': '0x636aff', 'uniqueId': '0x02428a6d21c76f00a18b47a4c43db5eca3eb910433012a964ddec8223026f9a5:log:23', 'hash': '0x02428a6d21c76f00a18b47a4c43db5eca3eb910433012a964ddec8223026f9a5', 'from': '0x3f6000b95af1e0edd5b1acca858a2bbbf4d305c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3609.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc3a7b635a38bd80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T19:57:05.000Z'}}, {'blockNum': '0x636b17', 'uniqueId': '0x21bcddcf530898f8ecc778f7f61641f5f16b1c0db59916d14ff7f117f03e359d:log:7', 'hash': '0x21bcddcf530898f8ecc778f7f61641f5f16b1c0db59916d14ff7f117f03e359d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d20c9299dc1f75057833f9d4616232c6e864cc1', 'value': 2776.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x9683ad8778f8120000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:02:57.000Z'}}, {'blockNum': '0x636b20', 'uniqueId': '0xcbf57864dfc8f512dc00db3d4596f16479b384ded27ecf323c8a4b13a87b0950:log:0', 'hash': '0xcbf57864dfc8f512dc00db3d4596f16479b384ded27ecf323c8a4b13a87b0950', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 38590, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x082bf7d4dd6ad4380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:04:59.000Z'}}, {'blockNum': '0x636b20', 'uniqueId': '0x952b0e804c1daaa604d88dd170cc28ebd860e09441f455abf240bc77334b32d0:log:2', 'hash': '0x952b0e804c1daaa604d88dd170cc28ebd860e09441f455abf240bc77334b32d0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7d649c4e97f28cbc6218959a50329850c0c194a9', 'value': 73.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03faa12f1c31ac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:04:59.000Z'}}, {'blockNum': '0x636b22', 'uniqueId': '0x0965d42ce18593db829c14ac82bb9f339c5e5964df99b7c78461aed2b2e79156:log:5', 'hash': '0x0965d42ce18593db829c14ac82bb9f339c5e5964df99b7c78461aed2b2e79156', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38590, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x082bf7d4dd6ad4380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:06:05.000Z'}}, {'blockNum': '0x636b22', 'uniqueId': '0xdc3e4e6d13b1a8d4a4344ca6c87f056e36cc5f8fd05e49316293016e8111c3b0:log:6', 'hash': '0xdc3e4e6d13b1a8d4a4344ca6c87f056e36cc5f8fd05e49316293016e8111c3b0', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060a65c666c648f80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:06:05.000Z'}}, {'blockNum': '0x636b22', 'uniqueId': '0xe78e68d479dfba72eca8608454f55e860c20e91ce04c1f4992ee47f061576d03:log:7', 'hash': '0xe78e68d479dfba72eca8608454f55e860c20e91ce04c1f4992ee47f061576d03', 'from': '0xf62c66b080922285c4d27a8dd6ba5b8be419a6b8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7000.576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017b80821d5bd5000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:06:05.000Z'}}, {'blockNum': '0x636b28', 'uniqueId': '0x17fa4093671a398af30e077d3c9c132ef03f68d8168aa9526772b0628885452c:log:38', 'hash': '0x17fa4093671a398af30e077d3c9c132ef03f68d8168aa9526772b0628885452c', 'from': '0x6e0da8713f1d497048b825d423a2e0d5f7ed4b53', 'to': '0x619c5bd91f8f7f9ce77bed1410eec7f73bed74f6', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:08:33.000Z'}}, {'blockNum': '0x636b30', 'uniqueId': '0x1ebea7fd8dda23e349e551f345dd574109055e944604e987ca8512f1cae44613:log:1', 'hash': '0x1ebea7fd8dda23e349e551f345dd574109055e944604e987ca8512f1cae44613', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 11362.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0267f40f6cc63f430000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:09:43.000Z'}}, {'blockNum': '0x636b35', 'uniqueId': '0x56583f5a0705fcdfcf2d8e287a01dd2bdfacd9051b507c1636f2241e8a8dbacf:log:29', 'hash': '0x56583f5a0705fcdfcf2d8e287a01dd2bdfacd9051b507c1636f2241e8a8dbacf', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3591.662011494253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc2b452c2035be7075b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:11:08.000Z'}}, {'blockNum': '0x636b35', 'uniqueId': '0x56583f5a0705fcdfcf2d8e287a01dd2bdfacd9051b507c1636f2241e8a8dbacf:log:31', 'hash': '0x56583f5a0705fcdfcf2d8e287a01dd2bdfacd9051b507c1636f2241e8a8dbacf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3591.662011494253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc2b452c2035be7075b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:11:08.000Z'}}, {'blockNum': '0x636b39', 'uniqueId': '0xb4eea81d6edaf3ddb75e91428b1d772f29a5c6cc6a86d92071208e301498f538:log:0', 'hash': '0xb4eea81d6edaf3ddb75e91428b1d772f29a5c6cc6a86d92071208e301498f538', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 102714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15c02318cde790a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:12:02.000Z'}}, {'blockNum': '0x636b41', 'uniqueId': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842:log:28', 'hash': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4479.7825694237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf2d978cffc4e4c23d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:13:48.000Z'}}, {'blockNum': '0x636b41', 'uniqueId': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842:log:30', 'hash': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4479.7825694237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf2d978cffc4e4c23d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:13:48.000Z'}}, {'blockNum': '0x636b41', 'uniqueId': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842:log:34', 'hash': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4479.7825694237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf2d978cffc4e4c23d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:13:48.000Z'}}, {'blockNum': '0x636b41', 'uniqueId': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842:log:36', 'hash': '0xb70cdb168eba1b15f353fea393ed577652e01c5322e2a28504d1eb1258f64842', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4479.7825694237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf2d978cffc4e4c23d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:13:48.000Z'}}, {'blockNum': '0x636b42', 'uniqueId': '0x5bab7006d2e57c824259fc33072ecc7c863c5de0902f662184e1225a64010950:log:19', 'hash': '0x5bab7006d2e57c824259fc33072ecc7c863c5de0902f662184e1225a64010950', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 41816.4131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x08dadf4ed1991b16c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:14:28.000Z'}}, {'blockNum': '0x636b45', 'uniqueId': '0x8b8712bd9d25608326dae9468225befc0c12a09de07eca9c97f86ebddf27195b:log:6', 'hash': '0x8b8712bd9d25608326dae9468225befc0c12a09de07eca9c97f86ebddf27195b', 'from': '0x2926d803ca0b8e8739538f1238e853532b088594', 'to': '0x00417941e3e41795e233bd636f502be28488e012', 'value': 99645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1519c42a8629d6d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:16:21.000Z'}}, {'blockNum': '0x636b46', 'uniqueId': '0xcd074e40d34ed58e5d103bf6cbead8a7245b6b597f6b93c6989470d10e40529e:log:17', 'hash': '0xcd074e40d34ed58e5d103bf6cbead8a7245b6b597f6b93c6989470d10e40529e', 'from': '0x619c5bd91f8f7f9ce77bed1410eec7f73bed74f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:16:31.000Z'}}, {'blockNum': '0x636b62', 'uniqueId': '0x4664f10d260f709901e6523aebb8b3ccc56420926a2eaa68d0dc6c2febf98558:log:50', 'hash': '0x4664f10d260f709901e6523aebb8b3ccc56420926a2eaa68d0dc6c2febf98558', 'from': '0xd2fcb079763f256b4c174b1bbfc68573e8de0484', 'to': '0xd2c19daaf3b586490ad912954af8c3d73321efc2', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:25:09.000Z'}}, {'blockNum': '0x636b69', 'uniqueId': '0xa8ab0ae50756d21920a52f1ca62282dd9d5ff5b22e24996cff6558ea9a872bc0:log:10', 'hash': '0xa8ab0ae50756d21920a52f1ca62282dd9d5ff5b22e24996cff6558ea9a872bc0', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41816.4131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x08dadf4ed1991b16c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:26:18.000Z'}}, {'blockNum': '0x636b69', 'uniqueId': '0xe4ba5a06f892dafc56aa5db0b9925783c259b5313e6c31728c1d5fe8c04cbff7:log:19', 'hash': '0xe4ba5a06f892dafc56aa5db0b9925783c259b5313e6c31728c1d5fe8c04cbff7', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15c02318cde790a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:26:18.000Z'}}, {'blockNum': '0x636b69', 'uniqueId': '0x9c5f858e1c9c94ea600e8f7608503df89cc6664fcec26bcb0783dcd4a9bb2e9a:log:20', 'hash': '0x9c5f858e1c9c94ea600e8f7608503df89cc6664fcec26bcb0783dcd4a9bb2e9a', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11362.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0267f40f6cc63f430000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:26:18.000Z'}}, {'blockNum': '0x636b81', 'uniqueId': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24:log:69', 'hash': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4857.771316978353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0107571e9b37603b2933', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:12.000Z'}}, {'blockNum': '0x636b81', 'uniqueId': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24:log:71', 'hash': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'value': 4857.771316978353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0107571e9b37603b2933', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:12.000Z'}}, {'blockNum': '0x636b81', 'uniqueId': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24:log:75', 'hash': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24', 'from': '0x5179bc7b6e90719b17cea1feb302d1c5208a1bfa', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4857.771316978353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0107571e9b37603b2933', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:12.000Z'}}, {'blockNum': '0x636b81', 'uniqueId': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24:log:77', 'hash': '0xd30d17be37a1615b73f055a58c9e6da61fb6d3ad8fdfbd291fb571eb2f838d24', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4857.771316978353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0107571e9b37603b2933', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:12.000Z'}}, {'blockNum': '0x636b85', 'uniqueId': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b:log:2', 'hash': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1812.627278094986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x624341b9b76ad69529', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:28.000Z'}}, {'blockNum': '0x636b85', 'uniqueId': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b:log:4', 'hash': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1812.627278094986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x624341b9b76ad69529', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:28.000Z'}}, {'blockNum': '0x636b85', 'uniqueId': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b:log:9', 'hash': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1812.625465467708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x62433b49243dd1329f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:28.000Z'}}, {'blockNum': '0x636b85', 'uniqueId': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b:log:11', 'hash': '0x4aed11c6c4bab23c3f4ef6200382ecff9561e35841392687219f29c8fbd4589b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 1812.625465467708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x62433b49243dd1329f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:28.000Z'}}, {'blockNum': '0x636b8a', 'uniqueId': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332:log:17', 'hash': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5448.2550100364915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012759ba198937558680', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:59.000Z'}}, {'blockNum': '0x636b8a', 'uniqueId': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332:log:19', 'hash': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5448.2550100364915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012759ba198937558680', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:59.000Z'}}, {'blockNum': '0x636b8a', 'uniqueId': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332:log:24', 'hash': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5448.249561781481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012759a6be607ed0ab74', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:59.000Z'}}, {'blockNum': '0x636b8a', 'uniqueId': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332:log:26', 'hash': '0xed3234af51503df258ce77c47747add1fd07de6839bb95ed00b50b6f1bb50332', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5448.249561781481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012759a6be607ed0ab74', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:32:59.000Z'}}, {'blockNum': '0x636b9e', 'uniqueId': '0xcca51ac45d779cd4ec853f91aa28e8b117fac60644f02535e0d08f0422dda1c4:log:1', 'hash': '0xcca51ac45d779cd4ec853f91aa28e8b117fac60644f02535e0d08f0422dda1c4', 'from': '0x00417941e3e41795e233bd636f502be28488e012', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1519c42a8629d6d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:36:06.000Z'}}, {'blockNum': '0x636b9e', 'uniqueId': '0xa2f9e608ce4ea57fb5647a339b02b52965a761ae1cad19c9a91a0f0c8bd8522a:log:2', 'hash': '0xa2f9e608ce4ea57fb5647a339b02b52965a761ae1cad19c9a91a0f0c8bd8522a', 'from': '0xd2c19daaf3b586490ad912954af8c3d73321efc2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:36:06.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0x17f712a179530358147b3836372ed8e70c056c28500ec2bb7c073feb7d846c87:log:75', 'hash': '0x17f712a179530358147b3836372ed8e70c056c28500ec2bb7c073feb7d846c87', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3687.3728171091448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7e493d89f4dfb9e34', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0x17f712a179530358147b3836372ed8e70c056c28500ec2bb7c073feb7d846c87:log:77', 'hash': '0x17f712a179530358147b3836372ed8e70c056c28500ec2bb7c073feb7d846c87', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3687.3728171091448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7e493d89f4dfb9e34', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc:log:114', 'hash': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2740.6755935059587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x949283ab927187f1c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc:log:116', 'hash': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2740.6755935059587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x949283ab927187f1c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc:log:121', 'hash': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2740.672852830365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x949279eef12e55e51e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bc5', 'uniqueId': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc:log:123', 'hash': '0xfd473f180996a7f4e61d71b3a29aa2bd1ecc78c627761ca2f58b4e5b9fe7bcdc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2740.672852830365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x949279eef12e55e51e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:44:12.000Z'}}, {'blockNum': '0x636bce', 'uniqueId': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4:log:29', 'hash': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5548.592430038614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012cca30396ae10f72af', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:45:57.000Z'}}, {'blockNum': '0x636bce', 'uniqueId': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4:log:31', 'hash': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 5548.592430038614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012cca30396ae10f72af', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:45:57.000Z'}}, {'blockNum': '0x636bce', 'uniqueId': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4:log:35', 'hash': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5548.592430038614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012cca30396ae10f72af', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:45:57.000Z'}}, {'blockNum': '0x636bce', 'uniqueId': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4:log:37', 'hash': '0x83cd933deef1e01d12e1bdfd0c2470edacda6c4811a799dbd69b1a5d2c9d9bf4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5548.592430038614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012cca30396ae10f72af', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:45:57.000Z'}}, {'blockNum': '0x636bd5', 'uniqueId': '0xe142bd65013f9c5be7763d4cbb71c9b53a8c982f5dfa54f64ac7a0faa8caa27d:log:14', 'hash': '0xe142bd65013f9c5be7763d4cbb71c9b53a8c982f5dfa54f64ac7a0faa8caa27d', 'from': '0x74db87efa4f6e4e4570bc66721530d13b3e83dff', 'to': '0xedff0da95f5bb5be580493d01fa7bc96fa2048f3', 'value': 33565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x071b8ff2a10222540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:47:47.000Z'}}, {'blockNum': '0x636bf6', 'uniqueId': '0x2bdc73cd33bf70430a2082e53123a6929cf82cdb413a623e5674011cf5fc8dfd:log:0', 'hash': '0x2bdc73cd33bf70430a2082e53123a6929cf82cdb413a623e5674011cf5fc8dfd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9856510d52a7c97086d7d322b6c7375140769e9', 'value': 2361.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x7ffefbcb4d968f0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:56:34.000Z'}}, {'blockNum': '0x636bfe', 'uniqueId': '0x9a2d9943ecae70c1077e5730e51646e5d37142d63178568654438f0936392247:log:106', 'hash': '0x9a2d9943ecae70c1077e5730e51646e5d37142d63178568654438f0936392247', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5465.786391522817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01284d06141cd1a58ac8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:58:56.000Z'}}, {'blockNum': '0x636bfe', 'uniqueId': '0x9a2d9943ecae70c1077e5730e51646e5d37142d63178568654438f0936392247:log:108', 'hash': '0x9a2d9943ecae70c1077e5730e51646e5d37142d63178568654438f0936392247', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5465.786391522817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01284d06141cd1a58ac8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:58:56.000Z'}}, {'blockNum': '0x636bfe', 'uniqueId': '0x5d12a3022c0b46d91124fbb395d185e8c92b65340a163f745b0fd7115a04d8d7:log:113', 'hash': '0x5d12a3022c0b46d91124fbb395d185e8c92b65340a163f745b0fd7115a04d8d7', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5373.628665660785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01234e1410b6af66617b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:58:56.000Z'}}, {'blockNum': '0x636bfe', 'uniqueId': '0x5d12a3022c0b46d91124fbb395d185e8c92b65340a163f745b0fd7115a04d8d7:log:115', 'hash': '0x5d12a3022c0b46d91124fbb395d185e8c92b65340a163f745b0fd7115a04d8d7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5373.628665660785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01234e1410b6af66617b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T20:58:56.000Z'}}, {'blockNum': '0x636c0e', 'uniqueId': '0xd4e55d3ddaac5f4c7e459c63089e00d0e8347b9f2d69435c81fd50accaa850d0:log:2', 'hash': '0xd4e55d3ddaac5f4c7e459c63089e00d0e8347b9f2d69435c81fd50accaa850d0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 25357.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x055ea2011c34ffc60000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:03:06.000Z'}}, {'blockNum': '0x636c18', 'uniqueId': '0xf7053699979725a1fc2d7fec41f3270b7db8ed664b047390e2e107be7a97146c:log:22', 'hash': '0xf7053699979725a1fc2d7fec41f3270b7db8ed664b047390e2e107be7a97146c', 'from': '0x4f266f295bad85436ecea51e0ae2afe82b11553b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1487.52029054455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x50a37daf07adc4c4ae', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:05:59.000Z'}}, {'blockNum': '0x636c18', 'uniqueId': '0xf7053699979725a1fc2d7fec41f3270b7db8ed664b047390e2e107be7a97146c:log:23', 'hash': '0xf7053699979725a1fc2d7fec41f3270b7db8ed664b047390e2e107be7a97146c', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1487.52029054455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x50a37daf07adc4c4ae', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:05:59.000Z'}}, {'blockNum': '0x636c19', 'uniqueId': '0x24469a5c866458feb7ec17137214da06acac0fdddc98eb620c67be3857fe28ff:log:18', 'hash': '0x24469a5c866458feb7ec17137214da06acac0fdddc98eb620c67be3857fe28ff', 'from': '0xedff0da95f5bb5be580493d01fa7bc96fa2048f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x071b8ff2a10222540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:06:28.000Z'}}, {'blockNum': '0x636c23', 'uniqueId': '0x1a468fe50b66f410054a624b91c66bf40ece368a5c212d475c09bf2d8a162d75:log:1', 'hash': '0x1a468fe50b66f410054a624b91c66bf40ece368a5c212d475c09bf2d8a162d75', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 28517.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0609efd055cf3a260000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:08:37.000Z'}}, {'blockNum': '0x636c29', 'uniqueId': '0x7c797a1b9afdd1ab56645ca9bf79f52180e497f3f1919eaf4583c4491d35366c:log:88', 'hash': '0x7c797a1b9afdd1ab56645ca9bf79f52180e497f3f1919eaf4583c4491d35366c', 'from': '0x5faf79b4d9e49b6ac951db213ca7cf8074a82338', 'to': '0xa839be841af1d8d876e8b943a6670b4e39bfc459', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:09:37.000Z'}}, {'blockNum': '0x636c3d', 'uniqueId': '0xdb267251b0ddbfc33cfe3fb14810c0cfe9de6f60546136181d110be1dbe7f687:log:47', 'hash': '0xdb267251b0ddbfc33cfe3fb14810c0cfe9de6f60546136181d110be1dbe7f687', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7333.44284938078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018d8bf6b94431d700f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:12:44.000Z'}}, {'blockNum': '0x636c3d', 'uniqueId': '0xdb267251b0ddbfc33cfe3fb14810c0cfe9de6f60546136181d110be1dbe7f687:log:51', 'hash': '0xdb267251b0ddbfc33cfe3fb14810c0cfe9de6f60546136181d110be1dbe7f687', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 7333.44284938078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018d8bf6b94431d700f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:12:44.000Z'}}, {'blockNum': '0x636c40', 'uniqueId': '0xe22b10f27285f5cc04e16e79994750985a3f0046cd6c972c11fabd9fb909911b:log:9', 'hash': '0xe22b10f27285f5cc04e16e79994750985a3f0046cd6c972c11fabd9fb909911b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5528.682662900445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bb5e285b119c161ef', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:13:19.000Z'}}, {'blockNum': '0x636c40', 'uniqueId': '0xe22b10f27285f5cc04e16e79994750985a3f0046cd6c972c11fabd9fb909911b:log:11', 'hash': '0xe22b10f27285f5cc04e16e79994750985a3f0046cd6c972c11fabd9fb909911b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5528.682662900445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bb5e285b119c161ef', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:13:19.000Z'}}, {'blockNum': '0x636c40', 'uniqueId': '0x57697d07813d58ac5a6da68e9c29d80572f6fbb1b762772c1b8c1217927ad180:log:16', 'hash': '0x57697d07813d58ac5a6da68e9c29d80572f6fbb1b762772c1b8c1217927ad180', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5528.677134217783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bb5cee1625b8eaf11', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:13:19.000Z'}}, {'blockNum': '0x636c40', 'uniqueId': '0x57697d07813d58ac5a6da68e9c29d80572f6fbb1b762772c1b8c1217927ad180:log:18', 'hash': '0x57697d07813d58ac5a6da68e9c29d80572f6fbb1b762772c1b8c1217927ad180', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5528.677134217783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bb5cee1625b8eaf11', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:13:19.000Z'}}, {'blockNum': '0x636c43', 'uniqueId': '0x314cd2843ef4e75b5bdb03fbaccb12abaa7270bdcd7185047e4331299afb5dd0:log:1', 'hash': '0x314cd2843ef4e75b5bdb03fbaccb12abaa7270bdcd7185047e4331299afb5dd0', 'from': '0x4903fe8eddf319abad3d6926aed1ac51841217d8', 'to': '0x439dd9d7148658fd0c182be9cf4ffb05210f8f3f', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:14:44.000Z'}}, {'blockNum': '0x636c4a', 'uniqueId': '0x2577d02951fa8ce61655f1db0612c735412bed907137a2eb50d1afdca2439444:log:5', 'hash': '0x2577d02951fa8ce61655f1db0612c735412bed907137a2eb50d1afdca2439444', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 33547.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x071a9d1623ba30fe0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:16:26.000Z'}}, {'blockNum': '0x636c61', 'uniqueId': '0x743214fb8aec2426ec5b1608d826a29540c2207fc9da8f35e0f5a110b14af542:log:4', 'hash': '0x743214fb8aec2426ec5b1608d826a29540c2207fc9da8f35e0f5a110b14af542', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7333.44284938078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018d8bf6b94431d700f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:21:49.000Z'}}, {'blockNum': '0x636c61', 'uniqueId': '0x743214fb8aec2426ec5b1608d826a29540c2207fc9da8f35e0f5a110b14af542:log:6', 'hash': '0x743214fb8aec2426ec5b1608d826a29540c2207fc9da8f35e0f5a110b14af542', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 7333.44284938078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018d8bf6b94431d700f0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:21:49.000Z'}}, {'blockNum': '0x636c65', 'uniqueId': '0xffa577ca52c0e8340dac46bd3edbca553382cfe58e23abc1043dbeb45c35b9a4:log:16', 'hash': '0xffa577ca52c0e8340dac46bd3edbca553382cfe58e23abc1043dbeb45c35b9a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 3725331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0314de9921c271cc6c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:22:21.000Z'}}, {'blockNum': '0x636c6c', 'uniqueId': '0x260d7dd6352f694ad977e75e42c4298fb64fa8a8a76e09ed83e5c6d72a3e1194:log:75', 'hash': '0x260d7dd6352f694ad977e75e42c4298fb64fa8a8a76e09ed83e5c6d72a3e1194', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x5dcacc7ba7a2abca17fe23ef06c6450eb3e58a3a', 'value': 74970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0fe021c07fea9b280000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:24:14.000Z'}}, {'blockNum': '0x636c8a', 'uniqueId': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018:log:38', 'hash': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5530.010444613603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bc84fc02001c9a38d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:29:15.000Z'}}, {'blockNum': '0x636c8a', 'uniqueId': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018:log:42', 'hash': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5530.010444613603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bc84fc02001c9a38d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:29:15.000Z'}}, {'blockNum': '0x636c8a', 'uniqueId': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018:log:43', 'hash': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5530.010444613603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bc84fc02001c9a38d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:29:15.000Z'}}, {'blockNum': '0x636c8a', 'uniqueId': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018:log:44', 'hash': '0xcbcec3a19d593d713372d86fad114edd2b2961f5d08be07d26b0f55e69f99018', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5530.010444613603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012bc84fc02001c9a38d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:29:15.000Z'}}, {'blockNum': '0x636ccc', 'uniqueId': '0xa7cf54498f0cecc0e614b9450f4c52cba35d73ce37b4beb6b9279729916e21b5:log:0', 'hash': '0xa7cf54498f0cecc0e614b9450f4c52cba35d73ce37b4beb6b9279729916e21b5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xb1feccccaad6429899a9401dcb19f58a19d1afe6', 'value': 7995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b168e9dcacb00c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:43:45.000Z'}}, {'blockNum': '0x636ce0', 'uniqueId': '0xbac8443c4d1ea7d46302287c863f7eb3c5ad27fa6de83eace4f3461878f504fa:log:94', 'hash': '0xbac8443c4d1ea7d46302287c863f7eb3c5ad27fa6de83eace4f3461878f504fa', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3671.5587215618984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7091ce4823c4bcc8c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:48:40.000Z'}}, {'blockNum': '0x636ce0', 'uniqueId': '0xbac8443c4d1ea7d46302287c863f7eb3c5ad27fa6de83eace4f3461878f504fa:log:98', 'hash': '0xbac8443c4d1ea7d46302287c863f7eb3c5ad27fa6de83eace4f3461878f504fa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3671.5587215618984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7091ce4823c4bcc8c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:48:40.000Z'}}, {'blockNum': '0x636ce2', 'uniqueId': '0xc4c0e9529d14c1f44a04c9ff395a9d1d131daced8d27e3cc5eee42deb71926f8:log:39', 'hash': '0xc4c0e9529d14c1f44a04c9ff395a9d1d131daced8d27e3cc5eee42deb71926f8', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13419.342455192727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d776c9804638d4757b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:49:02.000Z'}}, {'blockNum': '0x636ce2', 'uniqueId': '0xc4c0e9529d14c1f44a04c9ff395a9d1d131daced8d27e3cc5eee42deb71926f8:log:43', 'hash': '0xc4c0e9529d14c1f44a04c9ff395a9d1d131daced8d27e3cc5eee42deb71926f8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 13419.342455192727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02d776c9804638d4757b', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:49:02.000Z'}}, {'blockNum': '0x636ce2', 'uniqueId': '0x29ea1456061c33ac0406735f1b934eec1b0ab65d13f500ea8aa7a2b2153d0bad:log:56', 'hash': '0x29ea1456061c33ac0406735f1b934eec1b0ab65d13f500ea8aa7a2b2153d0bad', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc7015bea355afc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:49:02.000Z'}}, {'blockNum': '0x636cf0', 'uniqueId': '0x63806d76b81024d75662b1f3e0616150987e76ebff790d9d884c7537bc193247:log:50', 'hash': '0x63806d76b81024d75662b1f3e0616150987e76ebff790d9d884c7537bc193247', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 14864.249495713068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0325cae6822e94a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T21:52:18.000Z'}}, {'blockNum': '0x636d2a', 'uniqueId': '0x6e19a5fe2b25d2ac833ef46337b485135a6344ca69180cdb02c56208f43557ce:log:20', 'hash': '0x6e19a5fe2b25d2ac833ef46337b485135a6344ca69180cdb02c56208f43557ce', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14864.249495713068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0325cae6822e94a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:06:13.000Z'}}, {'blockNum': '0x636d36', 'uniqueId': '0x232a95ad309d67883a03475f695d79ab9acc5f03e1edbbd3c559215d29ab85f0:log:1', 'hash': '0x232a95ad309d67883a03475f695d79ab9acc5f03e1edbbd3c559215d29ab85f0', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 35105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x076f0bbdb1bd17e40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:08:25.000Z'}}, {'blockNum': '0x636d46', 'uniqueId': '0xe5105cfb4aa3da94ddd15617f212211a5c6e21a6b3dfaa34d2479ed0693ca7eb:log:7', 'hash': '0xe5105cfb4aa3da94ddd15617f212211a5c6e21a6b3dfaa34d2479ed0693ca7eb', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 82482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x11775bb1a7a279880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:13:02.000Z'}}, {'blockNum': '0x636d48', 'uniqueId': '0x65b13ce9b74ce8555d9c935569d1152adc532a0875870d9369cc567072aa3f18:log:81', 'hash': '0x65b13ce9b74ce8555d9c935569d1152adc532a0875870d9369cc567072aa3f18', 'from': '0xd4da6bb26cd1de48333ba22831794c1679cb6f9e', 'to': '0xc9c0d8fc0ee0cb828677cf3bff8c2df27e87345b', 'value': 416.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x168e68a275f0490000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:13:41.000Z'}}, {'blockNum': '0x636d4b', 'uniqueId': '0xe27c8c910e843a5f58885ed99f1e32ea0aa99b172c2566fec1a2a4a65b7436b2:log:0', 'hash': '0xe27c8c910e843a5f58885ed99f1e32ea0aa99b172c2566fec1a2a4a65b7436b2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc9d9f3fb43b1f84ebce44e1ae945e705a072f59c', 'value': 1402.07, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4c01a14483c7ef0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:14:12.000Z'}}, {'blockNum': '0x636d4d', 'uniqueId': '0x268cea236280baa13e65b58cec167e66c4393f8b0340676c613af7e7580ceec7:log:17', 'hash': '0x268cea236280baa13e65b58cec167e66c4393f8b0340676c613af7e7580ceec7', 'from': '0xf331eaf4825981f8f95e6cf8764e3bef44761502', 'to': '0xed4f15c14a9086c2d904f50d6ee1e75881313467', 'value': 2870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x9b954042169b180000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:15:11.000Z'}}, {'blockNum': '0x636d5c', 'uniqueId': '0x61468dc89779704dddf51333872abeea05add4b5dbe1b7cb43fa23aded0e0a82:log:22', 'hash': '0x61468dc89779704dddf51333872abeea05add4b5dbe1b7cb43fa23aded0e0a82', 'from': '0x82c5ed10f9f4c1f0e5e36fc0a89c56f4331bd104', 'to': '0x2fef97b013d5af8394428a6ffe16a8543be57dab', 'value': 4075.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdcf1b3240413920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:19:33.000Z'}}, {'blockNum': '0x636d78', 'uniqueId': '0xa412caa99fb09d354287f66214729403045430e280cfdb0d70a849c14caa6beb:log:8', 'hash': '0xa412caa99fb09d354287f66214729403045430e280cfdb0d70a849c14caa6beb', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x11775bb1a7a279880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:26:09.000Z'}}, {'blockNum': '0x636d78', 'uniqueId': '0xb6999b6f2bac647f7470ff91543568dcfcb2fd5d9bfedf6f3d0cb07676cae4d8:log:9', 'hash': '0xb6999b6f2bac647f7470ff91543568dcfcb2fd5d9bfedf6f3d0cb07676cae4d8', 'from': '0xed4f15c14a9086c2d904f50d6ee1e75881313467', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x9b954042169b180000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:26:09.000Z'}}, {'blockNum': '0x636d78', 'uniqueId': '0x940c57360800847ae1a33530ef7bc2ba50036b4d910e562c0549277ec4526132:log:10', 'hash': '0x940c57360800847ae1a33530ef7bc2ba50036b4d910e562c0549277ec4526132', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x076f0bbdb1bd17e40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:26:09.000Z'}}, {'blockNum': '0x636d97', 'uniqueId': '0x55da69a8c26e111a4e83ab7f68354b9284a5a09bed62c7608d2440a1c25a42e4:log:2', 'hash': '0x55da69a8c26e111a4e83ab7f68354b9284a5a09bed62c7608d2440a1c25a42e4', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x07878b8e03532ec7ef01388acb16677ca3928b43', 'value': 9210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01f3466cfb5423a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:35:14.000Z'}}, {'blockNum': '0x636d9b', 'uniqueId': '0x1889e2c8f9a0c7353a431cd1f19d70c0ab37357598fb481cf33b247d5d42cfaa:log:7', 'hash': '0x1889e2c8f9a0c7353a431cd1f19d70c0ab37357598fb481cf33b247d5d42cfaa', 'from': '0x2fef97b013d5af8394428a6ffe16a8543be57dab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4075.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xdcf1b3240413920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:36:12.000Z'}}, {'blockNum': '0x636dac', 'uniqueId': '0x61d77e5eb779773e2add230f401ee3afe636eacc00bbf8c6e29beb752ac7f3c0:log:46', 'hash': '0x61d77e5eb779773e2add230f401ee3afe636eacc00bbf8c6e29beb752ac7f3c0', 'from': '0xb9a775424234f6b267c942c0d5b936d9ef9eaf19', 'to': '0xc86e569ae931ad13c977c03a9d36b7ba645a3d9c', 'value': 305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1088b9ac0a6e240000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:39:15.000Z'}}, {'blockNum': '0x636dcd', 'uniqueId': '0xacc3d284e06a5840ca6c8e58626a93fae89a5c7069115e51bb4ee6f284b04196:log:5', 'hash': '0xacc3d284e06a5840ca6c8e58626a93fae89a5c7069115e51bb4ee6f284b04196', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9a2d77995e7ae1a134236c7e1222b3c585a7a969', 'value': 8597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d20b577f2451340000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:46:24.000Z'}}, {'blockNum': '0x636dcd', 'uniqueId': '0x60e7a766a33c48003f0d24f3022cb43625165c6a1cd99bf17615a6d293efd884:log:13', 'hash': '0x60e7a766a33c48003f0d24f3022cb43625165c6a1cd99bf17615a6d293efd884', 'from': '0x07878b8e03532ec7ef01388acb16677ca3928b43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01f3466cfb5423a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:46:24.000Z'}}, {'blockNum': '0x636df1', 'uniqueId': '0x2c848498215930032a64eafc1f94ebbef12986292fe28fbc58d5b0d76cda2abf:log:0', 'hash': '0x2c848498215930032a64eafc1f94ebbef12986292fe28fbc58d5b0d76cda2abf', 'from': '0xc86e569ae931ad13c977c03a9d36b7ba645a3d9c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3e8116df24e9640000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T22:56:02.000Z'}}, {'blockNum': '0x636e07', 'uniqueId': '0x4859d053a304334ad79ab7acb334d09e496697b00450e30d437e0bf01c0809f1:log:58', 'hash': '0x4859d053a304334ad79ab7acb334d09e496697b00450e30d437e0bf01c0809f1', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1830.0529300916526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x63351613e1e3b8ea5a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:01:57.000Z'}}, {'blockNum': '0x636e07', 'uniqueId': '0x4859d053a304334ad79ab7acb334d09e496697b00450e30d437e0bf01c0809f1:log:60', 'hash': '0x4859d053a304334ad79ab7acb334d09e496697b00450e30d437e0bf01c0809f1', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1830.0529300916526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x63351613e1e3b8ea5a', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:01:57.000Z'}}, {'blockNum': '0x636e09', 'uniqueId': '0x85b3fa77ef12f0cfaaa2fe8d8b5ec11a3732b07c8bbd982071cbeb56c4713f20:log:27', 'hash': '0x85b3fa77ef12f0cfaaa2fe8d8b5ec11a3732b07c8bbd982071cbeb56c4713f20', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1830.0511000387226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x63350f93757ce76fd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:02:31.000Z'}}, {'blockNum': '0x636e09', 'uniqueId': '0x85b3fa77ef12f0cfaaa2fe8d8b5ec11a3732b07c8bbd982071cbeb56c4713f20:log:29', 'hash': '0x85b3fa77ef12f0cfaaa2fe8d8b5ec11a3732b07c8bbd982071cbeb56c4713f20', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 1830.0511000387226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x63350f93757ce76fd5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:02:31.000Z'}}, {'blockNum': '0x636e18', 'uniqueId': '0x1721f7d4d4255fc6d49dfb642020fff47e68d3fd362751cff2ab742681b9e0b1:log:5', 'hash': '0x1721f7d4d4255fc6d49dfb642020fff47e68d3fd362751cff2ab742681b9e0b1', 'from': '0xb4ce1db7ae219e04e7ac7884416d005ce06791a7', 'to': '0xd05dba127ceffe7ecc04eacc9f2867fa15cf4152', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:07:19.000Z'}}, {'blockNum': '0x636e1c', 'uniqueId': '0xdc88fe803d0590b0506812d3584346e7d70062b425c15a396e34194801d1badf:log:10', 'hash': '0xdc88fe803d0590b0506812d3584346e7d70062b425c15a396e34194801d1badf', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 33661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0720c4372460e7d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:08:26.000Z'}}, {'blockNum': '0x636e20', 'uniqueId': '0x18b4fa72c452d6085ae731c22b40a3ec35bca039c2cfaad39d40d6849d16b9a3:log:37', 'hash': '0x18b4fa72c452d6085ae731c22b40a3ec35bca039c2cfaad39d40d6849d16b9a3', 'from': '0x2492a8400813764952c89a88232f1221858d9c10', 'to': '0xed20811012ab3010cdc78269d41f7176a2ed173b', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:08:55.000Z'}}, {'blockNum': '0x636e29', 'uniqueId': '0x186b2837c1f328f5e8b5c5b1bca2ae0a7ab2d4cabf8082cea56dc410315b2eb7:log:0', 'hash': '0x186b2837c1f328f5e8b5c5b1bca2ae0a7ab2d4cabf8082cea56dc410315b2eb7', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:10:06.000Z'}}, {'blockNum': '0x636e6a', 'uniqueId': '0x27bf30d9133eb1793b543c704c6345fd7c0a4cf35d2a84624b83ddc1f2a4758e:log:1', 'hash': '0x27bf30d9133eb1793b543c704c6345fd7c0a4cf35d2a84624b83ddc1f2a4758e', 'from': '0xed20811012ab3010cdc78269d41f7176a2ed173b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:26:15.000Z'}}, {'blockNum': '0x636e6a', 'uniqueId': '0x7a6e0ad3d0e764b6bdd769e84523cc5f01f5a5db6840c2c707a41f4c98d12700:log:2', 'hash': '0x7a6e0ad3d0e764b6bdd769e84523cc5f01f5a5db6840c2c707a41f4c98d12700', 'from': '0xd52d8617922d7d71fd464db788765a52b7fae90a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:26:15.000Z'}}, {'blockNum': '0x636e6a', 'uniqueId': '0x048f572092af2be8715df11f92d17353795ab891916c2277691c4ab3980e1c54:log:3', 'hash': '0x048f572092af2be8715df11f92d17353795ab891916c2277691c4ab3980e1c54', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0720c4372460e7d40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:26:15.000Z'}}, {'blockNum': '0x636e71', 'uniqueId': '0x03ab1c8c9f4f5c9f5e50e098d30ae673206a10a152b07c0298d02adaf58fb316:log:33', 'hash': '0x03ab1c8c9f4f5c9f5e50e098d30ae673206a10a152b07c0298d02adaf58fb316', 'from': '0x0d6b5a54f940bf3d52e438cab785981aaefdf40c', 'to': '0x3679b3fff2033d60684c51bc54ee1e371c62a77b', 'value': 11249.89473684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0261dba6eaa8bccbd000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:27:37.000Z'}}, {'blockNum': '0x636e78', 'uniqueId': '0x8449e0d61231ee964cfd77a4e068c6f12035043a9cca73329c17915f3236c9ef:log:130', 'hash': '0x8449e0d61231ee964cfd77a4e068c6f12035043a9cca73329c17915f3236c9ef', 'from': '0x3679b3fff2033d60684c51bc54ee1e371c62a77b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 11249.89473684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0261dba6eaa8bccbd000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:00.000Z'}}, {'blockNum': '0x636e78', 'uniqueId': '0x8449e0d61231ee964cfd77a4e068c6f12035043a9cca73329c17915f3236c9ef:log:132', 'hash': '0x8449e0d61231ee964cfd77a4e068c6f12035043a9cca73329c17915f3236c9ef', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 11249.89473684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0261dba6eaa8bccbd000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:00.000Z'}}, {'blockNum': '0x636e7a', 'uniqueId': '0x684eb2a55f4d98477d23d1b7340763cd6599ef0ff1f4707274a4c3475b0827dc:log:23', 'hash': '0x684eb2a55f4d98477d23d1b7340763cd6599ef0ff1f4707274a4c3475b0827dc', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3666.2175759683073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6befd54e3d4a93dac', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:04.000Z'}}, {'blockNum': '0x636e7a', 'uniqueId': '0x684eb2a55f4d98477d23d1b7340763cd6599ef0ff1f4707274a4c3475b0827dc:log:26', 'hash': '0x684eb2a55f4d98477d23d1b7340763cd6599ef0ff1f4707274a4c3475b0827dc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3666.2175759683073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6befd54e3d4a93dac', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:04.000Z'}}, {'blockNum': '0x636e7c', 'uniqueId': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7:log:72', 'hash': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5469.653096520406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012882af5fd23a270da1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:56.000Z'}}, {'blockNum': '0x636e7c', 'uniqueId': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7:log:76', 'hash': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5469.653096520406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012882af5fd23a270da1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:56.000Z'}}, {'blockNum': '0x636e7c', 'uniqueId': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7:log:77', 'hash': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5469.653096520406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012882af5fd23a270da1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:56.000Z'}}, {'blockNum': '0x636e7c', 'uniqueId': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7:log:78', 'hash': '0x49f88c24516cad9b02a1f3c4114a0476a02c54df6bf81914b70489ea50739fb7', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5469.653096520406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012882af5fd23a270da1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:29:56.000Z'}}, {'blockNum': '0x636e80', 'uniqueId': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5:log:49', 'hash': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1794.1681478058827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x614315b884ea2c5b18', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:46.000Z'}}, {'blockNum': '0x636e80', 'uniqueId': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5:log:53', 'hash': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1794.1681478058827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x614315b884ea2c5b18', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:46.000Z'}}, {'blockNum': '0x636e80', 'uniqueId': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5:log:54', 'hash': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 1805.452341762389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x61dfaf3b22ec5a9785', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:46.000Z'}}, {'blockNum': '0x636e80', 'uniqueId': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5:log:55', 'hash': '0x92c7e80c091312f413ee173ab991085e6671648cf35e0895c4eefc03e2f27cb5', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1805.452341762389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x61dfaf3b22ec5a9785', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:46.000Z'}}, {'blockNum': '0x636e81', 'uniqueId': '0xc6c1fddfa90bd5378fefa41e43771d2fa907116ab6bb00d3a97e99bcb1d29bc3:log:7', 'hash': '0xc6c1fddfa90bd5378fefa41e43771d2fa907116ab6bb00d3a97e99bcb1d29bc3', 'from': '0xa30ec0175bd809b0f50a2f75a8c385c190ca4802', 'to': '0x222b43114bdcfb162ce40eb9e7d22c4a138fe9ac', 'value': 1336.5478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x487453a6c429d58000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:30:57.000Z'}}, {'blockNum': '0x636e83', 'uniqueId': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f:log:17', 'hash': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5400.870909093174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0124c823f4c79fb3aba7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:31:19.000Z'}}, {'blockNum': '0x636e83', 'uniqueId': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f:log:21', 'hash': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5400.870909093174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0124c823f4c79fb3aba7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:31:19.000Z'}}, {'blockNum': '0x636e83', 'uniqueId': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f:log:22', 'hash': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5400.3434741339415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0124c0d2217a947c52eb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:31:19.000Z'}}, {'blockNum': '0x636e83', 'uniqueId': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f:log:23', 'hash': '0x611cd6f1bb3b6163a75cde6517ff1cf39a8e11f1a984ccd3f46b8a0d4f6ce15f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5400.3434741339415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0124c0d2217a947c52eb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:31:19.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0xb380abf21a4bf07f047ff25ad8638c41018282e8bb00c842ff64bd75d2d278da:log:14', 'hash': '0xb380abf21a4bf07f047ff25ad8638c41018282e8bb00c842ff64bd75d2d278da', 'from': '0x222b43114bdcfb162ce40eb9e7d22c4a138fe9ac', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 1336.5478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x487453a6c429d58000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60:log:63', 'hash': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5389.449440569976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012429a2bfabe523166c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60:log:67', 'hash': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5389.449440569976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012429a2bfabe523166c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60:log:68', 'hash': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5389.449440569976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012429a2bfabe523166c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e8c', 'uniqueId': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60:log:69', 'hash': '0x5d3cae3553f501535c9a8cea4b8ad0c4a24e349fe46ca6eb3d2677db4ee49b60', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 5389.449440569976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x012429a2bfabe523166c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:33:29.000Z'}}, {'blockNum': '0x636e90', 'uniqueId': '0x8b60f67f111467f23b4b589eee9a69a76d66eb6977c82a9126122dabeee6a2fc:log:91', 'hash': '0x8b60f67f111467f23b4b589eee9a69a76d66eb6977c82a9126122dabeee6a2fc', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3574.3588084966614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1c4316e9027fc4bd6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:34:13.000Z'}}, {'blockNum': '0x636e90', 'uniqueId': '0x8b60f67f111467f23b4b589eee9a69a76d66eb6977c82a9126122dabeee6a2fc:log:94', 'hash': '0x8b60f67f111467f23b4b589eee9a69a76d66eb6977c82a9126122dabeee6a2fc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3574.3588084966614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc1c4316e9027fc4bd6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:34:13.000Z'}}, {'blockNum': '0x636ea1', 'uniqueId': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda:log:21', 'hash': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2657.27788431957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x900d237ced51887a6c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:37:38.000Z'}}, {'blockNum': '0x636ea1', 'uniqueId': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda:log:25', 'hash': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2657.27788431957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x900d237ced51887a6c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:37:38.000Z'}}, {'blockNum': '0x636ea1', 'uniqueId': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda:log:26', 'hash': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2657.0713281041567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x900a45a724bba65433', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:37:38.000Z'}}, {'blockNum': '0x636ea1', 'uniqueId': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda:log:27', 'hash': '0xb84c18c22eb8e1fed45df2b934a644e99d6124d20fe805bfbd438edeb3dfcfda', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2657.0713281041567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x900a45a724bba65433', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:37:38.000Z'}}, {'blockNum': '0x636ea9', 'uniqueId': '0x0e94ca929c0f661b5b27a335db02b684f23df179495a58552f710b453b3a9848:log:3', 'hash': '0x0e94ca929c0f661b5b27a335db02b684f23df179495a58552f710b453b3a9848', 'from': '0x7b40d5c17aab371a6ed5ac622ea232b590f2a31b', 'to': '0x2aaa43ee77d45b128869b2e2a4ea71ddfbc45fd2', 'value': 10106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0223d8ec701e01a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:38:40.000Z'}}, {'blockNum': '0x636ebf', 'uniqueId': '0x9fffb3dfe0e3421a9e0c3793d2abaacd1e211d9ffe46935fc9e0062ad00ddf89:log:16', 'hash': '0x9fffb3dfe0e3421a9e0c3793d2abaacd1e211d9ffe46935fc9e0062ad00ddf89', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3615.1344974692697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc3fa11c7a5141e7b77', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:43:33.000Z'}}, {'blockNum': '0x636ebf', 'uniqueId': '0x9fffb3dfe0e3421a9e0c3793d2abaacd1e211d9ffe46935fc9e0062ad00ddf89:log:18', 'hash': '0x9fffb3dfe0e3421a9e0c3793d2abaacd1e211d9ffe46935fc9e0062ad00ddf89', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3615.1344974692697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc3fa11c7a5141e7b77', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:43:33.000Z'}}, {'blockNum': '0x636ecd', 'uniqueId': '0xf7579e45349973a5856dbebd7b125346021e95a50b5d313d481e8c4961aee17b:log:136', 'hash': '0xf7579e45349973a5856dbebd7b125346021e95a50b5d313d481e8c4961aee17b', 'from': '0xec0c666acd059e2bbf5dd055f1a282bf0ebf16fc', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:47:18.000Z'}}, {'blockNum': '0x636ecd', 'uniqueId': '0xf7579e45349973a5856dbebd7b125346021e95a50b5d313d481e8c4961aee17b:log:137', 'hash': '0xf7579e45349973a5856dbebd7b125346021e95a50b5d313d481e8c4961aee17b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:47:18.000Z'}}, {'blockNum': '0x636ed1', 'uniqueId': '0x23967705751f537ec7c254a82aafc9ae0c330c36b985eb62daa636cb2dedc5de:log:0', 'hash': '0x23967705751f537ec7c254a82aafc9ae0c330c36b985eb62daa636cb2dedc5de', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 30844.228125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x068811a72bf689d2d000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:48:02.000Z'}}, {'blockNum': '0x636ed1', 'uniqueId': '0x1c7684a7efd2c258e993cd955d48df19adeb9e6c764e7b8a0058ff062a05258e:log:18', 'hash': '0x1c7684a7efd2c258e993cd955d48df19adeb9e6c764e7b8a0058ff062a05258e', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3637.8782157148053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc535b3b2e344d8025f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:48:02.000Z'}}, {'blockNum': '0x636ed1', 'uniqueId': '0x1c7684a7efd2c258e993cd955d48df19adeb9e6c764e7b8a0058ff062a05258e:log:20', 'hash': '0x1c7684a7efd2c258e993cd955d48df19adeb9e6c764e7b8a0058ff062a05258e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3637.8782157148053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc535b3b2e344d8025f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:48:02.000Z'}}, {'blockNum': '0x636ed9', 'uniqueId': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4:log:19', 'hash': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 9110.049600627519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01eddb55d4a8c8889f85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:42.000Z'}}, {'blockNum': '0x636ed9', 'uniqueId': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4:log:21', 'hash': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 9110.049600627519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01eddb55d4a8c8889f85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:42.000Z'}}, {'blockNum': '0x636ed9', 'uniqueId': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4:log:25', 'hash': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9110.049600627519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01eddb55d4a8c8889f85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:42.000Z'}}, {'blockNum': '0x636ed9', 'uniqueId': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4:log:27', 'hash': '0x12fcceedc4e4962b7cd64962defbe9239060f8901e500e23112f0a1700322bb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 9110.049600627519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01eddb55d4a8c8889f85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:42.000Z'}}, {'blockNum': '0x636edb', 'uniqueId': '0x45a96d03b5290d683fd4467d6f508f8a5b52c1933b94754e6ef570a796b49463:log:55', 'hash': '0x45a96d03b5290d683fd4467d6f508f8a5b52c1933b94754e6ef570a796b49463', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5448.326392908896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01275ab7b3e1581a48ca', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:49.000Z'}}, {'blockNum': '0x636edb', 'uniqueId': '0x45a96d03b5290d683fd4467d6f508f8a5b52c1933b94754e6ef570a796b49463:log:57', 'hash': '0x45a96d03b5290d683fd4467d6f508f8a5b52c1933b94754e6ef570a796b49463', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5448.326392908896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01275ab7b3e1581a48ca', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:49.000Z'}}, {'blockNum': '0x636edb', 'uniqueId': '0x2c8b99d2b89efbc8166e2a2986df8c7afbc55777112f3ebca72955df93524765:log:62', 'hash': '0x2c8b99d2b89efbc8166e2a2986df8c7afbc55777112f3ebca72955df93524765', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5419.524322253843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0125cb02313829f634ca', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:49.000Z'}}, {'blockNum': '0x636edb', 'uniqueId': '0x2c8b99d2b89efbc8166e2a2986df8c7afbc55777112f3ebca72955df93524765:log:64', 'hash': '0x2c8b99d2b89efbc8166e2a2986df8c7afbc55777112f3ebca72955df93524765', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5419.524322253843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0125cb02313829f634ca', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-14T23:49:49.000Z'}}, {'blockNum': '0x636f27', 'uniqueId': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3:log:45', 'hash': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4599.819615764099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf95b5211a60ce5a3d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:06:30.000Z'}}, {'blockNum': '0x636f27', 'uniqueId': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3:log:47', 'hash': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4599.819615764099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf95b5211a60ce5a3d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:06:30.000Z'}}, {'blockNum': '0x636f27', 'uniqueId': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3:log:51', 'hash': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4599.819615764099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf95b5211a60ce5a3d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:06:30.000Z'}}, {'blockNum': '0x636f27', 'uniqueId': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3:log:53', 'hash': '0x64593d403027871631ec8b865c91745531cec9752b445f5e8ffe7f7e46bcace3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4599.819615764099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf95b5211a60ce5a3d6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:06:30.000Z'}}, {'blockNum': '0x636f2b', 'uniqueId': '0x4f036f6bb898d336ceef84402dcdd4184e7944637559c318a03f37b365d5aa59:log:8', 'hash': '0x4f036f6bb898d336ceef84402dcdd4184e7944637559c318a03f37b365d5aa59', 'from': '0x2aaa43ee77d45b128869b2e2a4ea71ddfbc45fd2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0223d8ec701e01a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:07:12.000Z'}}, {'blockNum': '0x636f31', 'uniqueId': '0xf2f3d67ef2ed6b55310f4e385a4f0221d728d487dd03ba819780905f99cecd86:log:8', 'hash': '0xf2f3d67ef2ed6b55310f4e385a4f0221d728d487dd03ba819780905f99cecd86', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9fdf2359732db724cb7aff0e3458b21e539c3cc4', 'value': 1720.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x5d42bc4b29cbea0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:07:43.000Z'}}, {'blockNum': '0x636f38', 'uniqueId': '0x6b56ff51dcb1317657156dcf6be3b3a6d213a457e845a7dc201378e15c68a26a:log:14', 'hash': '0x6b56ff51dcb1317657156dcf6be3b3a6d213a457e845a7dc201378e15c68a26a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 28488.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x060857ce8d93cdaa0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:10:49.000Z'}}, {'blockNum': '0x636f45', 'uniqueId': '0x4ba1a92f6477961abc66c1e18e4a1478dfc31e361a736286bfe16912ccc04eb7:log:11', 'hash': '0x4ba1a92f6477961abc66c1e18e4a1478dfc31e361a736286bfe16912ccc04eb7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x423d9a1d45a5204523c7bea0870452452bf7510e', 'value': 752.32500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x28c89b518539cc6400', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:14:55.000Z'}}, {'blockNum': '0x636f61', 'uniqueId': '0x778e522457fb02357214306e0941b75de16e9e4dd7c037d082c69819cd6918c9:log:0', 'hash': '0x778e522457fb02357214306e0941b75de16e9e4dd7c037d082c69819cd6918c9', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x8909e6e469cc262b5ead25266c0936c740af8aac', 'value': 4862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010791cde8051d380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:20:46.000Z'}}, {'blockNum': '0x636f72', 'uniqueId': '0xf5c4ab6df285e4f5f73e441f110deed0aff0538cbe82e68a77ed7338e8dabee7:log:9', 'hash': '0xf5c4ab6df285e4f5f73e441f110deed0aff0538cbe82e68a77ed7338e8dabee7', 'from': '0x9fdf2359732db724cb7aff0e3458b21e539c3cc4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1720.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x5d42bc4b29cbea0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:26:20.000Z'}}, {'blockNum': '0x636f74', 'uniqueId': '0x707b2d75f4e23c6bb32ac772956ff74c97c2cc3b20adbcb145d83ddf12e15895:log:38', 'hash': '0x707b2d75f4e23c6bb32ac772956ff74c97c2cc3b20adbcb145d83ddf12e15895', 'from': '0x0d6b5a54f940bf3d52e438cab785981aaefdf40c', 'to': '0x9c69fec55b146af4a29a0fbbc5827357a7d155f9', 'value': 1962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6a5c383ce0e4680000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:27:33.000Z'}}, {'blockNum': '0x636f77', 'uniqueId': '0xf37ac7c3bac9fd3c629bb81063e159c33dbf37442bc80abf911acec2666ae737:log:9', 'hash': '0xf37ac7c3bac9fd3c629bb81063e159c33dbf37442bc80abf911acec2666ae737', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb9ff9bfd964fc0735f27c0a546e5d787a25e6340', 'value': 2071.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x7046494cd787860000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:28:10.000Z'}}, {'blockNum': '0x636f77', 'uniqueId': '0x7fa8f2057d792dab06eab4b76d264c7e1ca19162aa394777151b3f4ea92f63f6:log:10', 'hash': '0x7fa8f2057d792dab06eab4b76d264c7e1ca19162aa394777151b3f4ea92f63f6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 68173.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0e6fabd0e56f9e9e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:28:10.000Z'}}, {'blockNum': '0x636f79', 'uniqueId': '0xb008f9bd4b08c7d6a48553a88b89bbab62bebe9e8ff7b6602b06bf4a5840e3a8:log:8', 'hash': '0xb008f9bd4b08c7d6a48553a88b89bbab62bebe9e8ff7b6602b06bf4a5840e3a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 44533.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x096e24e98786243e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:28:47.000Z'}}, {'blockNum': '0x636f7b', 'uniqueId': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3:log:26', 'hash': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4623.827025032178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xfaa87d852e66378a3c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:29:06.000Z'}}, {'blockNum': '0x636f7b', 'uniqueId': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3:log:28', 'hash': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4623.827025032178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xfaa87d852e66378a3c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:29:06.000Z'}}, {'blockNum': '0x636f7b', 'uniqueId': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3:log:32', 'hash': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4623.827025032178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xfaa87d852e66378a3c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:29:06.000Z'}}, {'blockNum': '0x636f7b', 'uniqueId': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3:log:34', 'hash': '0xb72a0967f391e69c9a31cce0d84e569e7a0eeda2a43a57d19a30279df026fba3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4623.827025032178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xfaa87d852e66378a3c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:29:06.000Z'}}, {'blockNum': '0x636f82', 'uniqueId': '0x404d6150b0805862f9042b5910b16570ebe9ebb6e5bee08dc6d13102a9225cda:log:3', 'hash': '0x404d6150b0805862f9042b5910b16570ebe9ebb6e5bee08dc6d13102a9225cda', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 3799280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03248761a997d9cdc00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:30:23.000Z'}}, {'blockNum': '0x636fa5', 'uniqueId': '0x0b8908f12fb3d1a65e8d450adeed6d3865ec4ab9bb4367d03d700323c4077c4a:log:2', 'hash': '0x0b8908f12fb3d1a65e8d450adeed6d3865ec4ab9bb4367d03d700323c4077c4a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb30d27c4839cecb084d225af17dab4a7fd35a12b', 'value': 99911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15282fa85cd5c4bc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:37:00.000Z'}}, {'blockNum': '0x636fd0', 'uniqueId': '0x35be39b034d88a4c8b047dc39ef0f68079f7f7e78c7d42d928d7e1912951fac8:log:18', 'hash': '0x35be39b034d88a4c8b047dc39ef0f68079f7f7e78c7d42d928d7e1912951fac8', 'from': '0x9c69fec55b146af4a29a0fbbc5827357a7d155f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x6a5c383ce0e4680000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T00:46:24.000Z'}}, {'blockNum': '0x63701c', 'uniqueId': '0xfd7ba0bd5403e19fe3ab60540c866ddfa84e32535e217e16957951b05ec3da32:log:33', 'hash': '0xfd7ba0bd5403e19fe3ab60540c866ddfa84e32535e217e16957951b05ec3da32', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3678.728277303512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc76c9c45784488c113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:05:18.000Z'}}, {'blockNum': '0x63701c', 'uniqueId': '0xfd7ba0bd5403e19fe3ab60540c866ddfa84e32535e217e16957951b05ec3da32:log:36', 'hash': '0xfd7ba0bd5403e19fe3ab60540c866ddfa84e32535e217e16957951b05ec3da32', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3678.728277303512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc76c9c45784488c113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:05:18.000Z'}}, {'blockNum': '0x637020', 'uniqueId': '0xdd88a095dfc78e29dec7770b7a7a2231b881610f91d17969a7b6eaecbfb3576c:log:4', 'hash': '0xdd88a095dfc78e29dec7770b7a7a2231b881610f91d17969a7b6eaecbfb3576c', 'from': '0xb30d27c4839cecb084d225af17dab4a7fd35a12b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x15282fa85cd5c4bc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:06:03.000Z'}}, {'blockNum': '0x637029', 'uniqueId': '0x8034b8f0ec85a1437ce46d9a1b9516a877a4d4a25ef07b96f13d7a43305e739e:log:1', 'hash': '0x8034b8f0ec85a1437ce46d9a1b9516a877a4d4a25ef07b96f13d7a43305e739e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 35072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x076d41c6249484000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:07:36.000Z'}}, {'blockNum': '0x637038', 'uniqueId': '0x20d0ead969e571ba65b6055f869c889832787e5249b4dd0c38a734546fc624e5:log:36', 'hash': '0x20d0ead969e571ba65b6055f869c889832787e5249b4dd0c38a734546fc624e5', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3666.613860284756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6c47d37604ca3315f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:08.000Z'}}, {'blockNum': '0x637038', 'uniqueId': '0x20d0ead969e571ba65b6055f869c889832787e5249b4dd0c38a734546fc624e5:log:40', 'hash': '0x20d0ead969e571ba65b6055f869c889832787e5249b4dd0c38a734546fc624e5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3666.613860284756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6c47d37604ca3315f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:08.000Z'}}, {'blockNum': '0x637038', 'uniqueId': '0x1ec2d0fc80197cfd1363079b02b74a6109cd8743c7e1d109d845d8d28491d72c:log:125', 'hash': '0x1ec2d0fc80197cfd1363079b02b74a6109cd8743c7e1d109d845d8d28491d72c', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 1345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x48e99fe5e274640000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:08.000Z'}}, {'blockNum': '0x637038', 'uniqueId': '0x1ec2d0fc80197cfd1363079b02b74a6109cd8743c7e1d109d845d8d28491d72c:log:130', 'hash': '0x1ec2d0fc80197cfd1363079b02b74a6109cd8743c7e1d109d845d8d28491d72c', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 1345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x48e99fe5e274640000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:08.000Z'}}, {'blockNum': '0x637039', 'uniqueId': '0x552d40437b749e23b9dece5fa743753ef4401d8faee2549fdfe86427590d7ac9:log:112', 'hash': '0x552d40437b749e23b9dece5fa743753ef4401d8faee2549fdfe86427590d7ac9', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc6bbf858b316080000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:11:45.000Z'}}, {'blockNum': '0x63703c', 'uniqueId': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362:log:63', 'hash': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12697.096933834593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b04f9df5384872a090', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:13:20.000Z'}}, {'blockNum': '0x63703c', 'uniqueId': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362:log:67', 'hash': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 12697.096933834593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b04f9df5384872a090', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:13:20.000Z'}}, {'blockNum': '0x63703c', 'uniqueId': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362:log:68', 'hash': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 12697.096933834593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b04f9df5384872a090', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:13:20.000Z'}}, {'blockNum': '0x63703c', 'uniqueId': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362:log:69', 'hash': '0x0b523aef795487f05d4d11c5ddef36ea464b215662f710c9623b68982e667362', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 12697.096933834593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02b04f9df5384872a090', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:13:20.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0x3314bd489b749e237513c8c29f7fa201fc3d2e82a7f09bb03a95eb2abfc28293:log:38', 'hash': '0x3314bd489b749e237513c8c29f7fa201fc3d2e82a7f09bb03a95eb2abfc28293', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13965.792624454027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f5164e7e0018a59fef', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0x3314bd489b749e237513c8c29f7fa201fc3d2e82a7f09bb03a95eb2abfc28293:log:42', 'hash': '0x3314bd489b749e237513c8c29f7fa201fc3d2e82a7f09bb03a95eb2abfc28293', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 13965.792624454027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02f5164e7e0018a59fef', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b:log:84', 'hash': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 10890.294250377654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x024e5d31597776fba342', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b:log:86', 'hash': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 10890.294250377654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x024e5d31597776fba342', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b:log:90', 'hash': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 10890.294250377654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x024e5d31597776fba342', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b:log:92', 'hash': '0xbae5f526562d2a023922965685668c70e0a73a259cdb99656ad3d2af83db040b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 10890.294250377654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x024e5d31597776fba342', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0x4fe7954086a8fc0b6cc5af1a2d9db34bd235c7a7fe8bf5941e4f014c7f1b6361:log:121', 'hash': '0x4fe7954086a8fc0b6cc5af1a2d9db34bd235c7a7fe8bf5941e4f014c7f1b6361', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 448.5170140167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x18506c87e7384d2700', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x63703f', 'uniqueId': '0x4fe7954086a8fc0b6cc5af1a2d9db34bd235c7a7fe8bf5941e4f014c7f1b6361:log:126', 'hash': '0x4fe7954086a8fc0b6cc5af1a2d9db34bd235c7a7fe8bf5941e4f014c7f1b6361', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 448.5170140167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x18506c87e7384d2700', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:14:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250:log:55', 'hash': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4528.081285805879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf577c052a3396abec4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250:log:57', 'hash': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4528.081285805879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf577c052a3396abec4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250:log:61', 'hash': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4528.081285805879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf577c052a3396abec4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250:log:63', 'hash': '0xb707f2e4ec5b2f322e76ed796fa9b979e42c96d04f47fc7eeccd18d89a0f2250', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4528.081285805879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf577c052a3396abec4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed:log:85', 'hash': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8079.381386057432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b5fbf0c438d85f6386', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed:log:89', 'hash': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 8079.381386057432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b5fbf0c438d85f6386', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed:log:91', 'hash': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8079.381386057432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b5fbf0c438d85f6386', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637043', 'uniqueId': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed:log:92', 'hash': '0x2d078f15ee7c290f9bcb55371e7e8fe42b08c088fc4c1af862aea3303fdc29ed', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 8079.381386057432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b5fbf0c438d85f6386', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:15:25.000Z'}}, {'blockNum': '0x637045', 'uniqueId': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651:log:123', 'hash': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8780.128867399413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dbf8c3edc886d29415', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:22.000Z'}}, {'blockNum': '0x637045', 'uniqueId': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651:log:127', 'hash': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 8780.128867399413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dbf8c3edc886d29415', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:22.000Z'}}, {'blockNum': '0x637045', 'uniqueId': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651:log:128', 'hash': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8815.350481953858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dde1903d9bc43bfea0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:22.000Z'}}, {'blockNum': '0x637045', 'uniqueId': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651:log:129', 'hash': '0x8ef3c0727dce4e7c1a075a25edb8330748e20dc8ee159cfc28012b6ee9e1f651', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 8815.350481953858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01dde1903d9bc43bfea0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:22.000Z'}}, {'blockNum': '0x637047', 'uniqueId': '0x606fd1e8b4498e6b3a503b8ecc3610720beacc63de02908c1b12d8fff7ee78cd:log:6', 'hash': '0x606fd1e8b4498e6b3a503b8ecc3610720beacc63de02908c1b12d8fff7ee78cd', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x076d41c6249484000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:39.000Z'}}, {'blockNum': '0x637047', 'uniqueId': '0xf6ae817a031ed0cf887a11799b4f3c4d4a33cd6930738194624e80687c04b15e:log:37', 'hash': '0xf6ae817a031ed0cf887a11799b4f3c4d4a33cd6930738194624e80687c04b15e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3530.2361814676688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbf5fde5f0d4bd63c96', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:39.000Z'}}, {'blockNum': '0x637047', 'uniqueId': '0xf6ae817a031ed0cf887a11799b4f3c4d4a33cd6930738194624e80687c04b15e:log:40', 'hash': '0xf6ae817a031ed0cf887a11799b4f3c4d4a33cd6930738194624e80687c04b15e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3530.2361814676688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbf5fde5f0d4bd63c96', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:39.000Z'}}, {'blockNum': '0x637047', 'uniqueId': '0x112b5d30f99fca04d2c4cd05ed03db120b516a4b7ba32d339bd0a17197e3cfcc:log:42', 'hash': '0x112b5d30f99fca04d2c4cd05ed03db120b516a4b7ba32d339bd0a17197e3cfcc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 28346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0600a3c5f07496a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:16:39.000Z'}}, {'blockNum': '0x637049', 'uniqueId': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20:log:94', 'hash': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8675.973556922227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d65351eebe27a14db0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:17:57.000Z'}}, {'blockNum': '0x637049', 'uniqueId': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20:log:98', 'hash': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 8675.973556922227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d65351eebe27a14db0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:17:57.000Z'}}, {'blockNum': '0x637049', 'uniqueId': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20:log:99', 'hash': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 8711.664281142512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d842a0db52d6295ef6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:17:57.000Z'}}, {'blockNum': '0x637049', 'uniqueId': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20:log:100', 'hash': '0xbc3d2edffe69729cc71e09d34268e12303f19bab491103c50788e2acfb4f9c20', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 8711.664281142512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01d842a0db52d6295ef6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:17:57.000Z'}}, {'blockNum': '0x63704b', 'uniqueId': '0xa12a9e3fe73b6150d26904a3f3842ba886e70abc62eaed97264070e006b641f7:log:96', 'hash': '0xa12a9e3fe73b6150d26904a3f3842ba886e70abc62eaed97264070e006b641f7', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 6834.829508620396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01728450499c8c5bf300', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:18:54.000Z'}}, {'blockNum': '0x63704e', 'uniqueId': '0x260b5d1b5612a272b035fec0cd62393a6c854fa20735e234a9080530c57bd802:log:122', 'hash': '0x260b5d1b5612a272b035fec0cd62393a6c854fa20735e234a9080530c57bd802', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3483.111581063729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd1e228a950c21007', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:19:46.000Z'}}, {'blockNum': '0x63704e', 'uniqueId': '0x260b5d1b5612a272b035fec0cd62393a6c854fa20735e234a9080530c57bd802:log:126', 'hash': '0x260b5d1b5612a272b035fec0cd62393a6c854fa20735e234a9080530c57bd802', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3483.111581063729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd1e228a950c21007', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:19:46.000Z'}}, {'blockNum': '0x637050', 'uniqueId': '0x1104ed8b2f1ece0f90c8278a0b43f21856e24e51f6a0627d64974a13ed3da5c9:log:31', 'hash': '0x1104ed8b2f1ece0f90c8278a0b43f21856e24e51f6a0627d64974a13ed3da5c9', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbcd055be466d8c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:20:03.000Z'}}, {'blockNum': '0x637054', 'uniqueId': '0xd74a0833a1c6efdffdd5677562dd355d12e97ea927e583799957a0bfa66f10f1:log:2', 'hash': '0xd74a0833a1c6efdffdd5677562dd355d12e97ea927e583799957a0bfa66f10f1', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 9908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02191d1f212a8a500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:00.000Z'}}, {'blockNum': '0x637057', 'uniqueId': '0xbdf8a705ab268b4e008d125f54c4bb0b122f60a36bbf55be1608de9245b9d012:log:68', 'hash': '0xbdf8a705ab268b4e008d125f54c4bb0b122f60a36bbf55be1608de9245b9d012', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3465.1039250361014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbbd7fa1ce9b49d4546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:30.000Z'}}, {'blockNum': '0x637057', 'uniqueId': '0xbdf8a705ab268b4e008d125f54c4bb0b122f60a36bbf55be1608de9245b9d012:log:71', 'hash': '0xbdf8a705ab268b4e008d125f54c4bb0b122f60a36bbf55be1608de9245b9d012', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3465.1039250361014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbbd7fa1ce9b49d4546', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:30.000Z'}}, {'blockNum': '0x637059', 'uniqueId': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb:log:63', 'hash': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6846.214962701544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017322518bc68db35979', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:59.000Z'}}, {'blockNum': '0x637059', 'uniqueId': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb:log:67', 'hash': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6846.214962701544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017322518bc68db35979', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:59.000Z'}}, {'blockNum': '0x637059', 'uniqueId': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb:log:70', 'hash': '0x07d2eb3a213465b912aba13bc1b499886403a3bfa4b30609baff61563708e4bb', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 6845.551162307213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0173191b40d57bdc0261', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:21:59.000Z'}}, {'blockNum': '0x63705c', 'uniqueId': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a:log:75', 'hash': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2560.411026699891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8accd7472500345d98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:23:16.000Z'}}, {'blockNum': '0x63705c', 'uniqueId': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a:log:77', 'hash': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2560.411026699891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8accd7472500345d98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:23:16.000Z'}}, {'blockNum': '0x63705c', 'uniqueId': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a:log:78', 'hash': '0xab0fad94d02cbdba6b91512202b22636eb37a836d5053aa9704e171536208b0a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2560.411026699891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8accd7472500345d98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:23:16.000Z'}}, {'blockNum': '0x637069', 'uniqueId': '0xf2761b5801d28ce1fa9d5612e4313791eca7c7cb2132ae8b5b358e2317d3dc4b:log:82', 'hash': '0xf2761b5801d28ce1fa9d5612e4313791eca7c7cb2132ae8b5b358e2317d3dc4b', 'from': '0xb1feccccaad6429899a9401dcb19f58a19d1afe6', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 7995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b168e9dcacb00c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:27:04.000Z'}}, {'blockNum': '0x637079', 'uniqueId': '0x0fe69da78b3632ca9dcdba0b0d7979ffb4ac41c245ee0b616343511afd49191e:log:155', 'hash': '0x0fe69da78b3632ca9dcdba0b0d7979ffb4ac41c245ee0b616343511afd49191e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5193.211750270041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0119864a6c0e366af6bb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:30:47.000Z'}}, {'blockNum': '0x637079', 'uniqueId': '0x0fe69da78b3632ca9dcdba0b0d7979ffb4ac41c245ee0b616343511afd49191e:log:157', 'hash': '0x0fe69da78b3632ca9dcdba0b0d7979ffb4ac41c245ee0b616343511afd49191e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5193.211750270041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0119864a6c0e366af6bb', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:30:47.000Z'}}, {'blockNum': '0x637079', 'uniqueId': '0xef763e20ef5af3803b8832a009c5d641be24b3fc18176627b1edb59950a23079:log:162', 'hash': '0xef763e20ef5af3803b8832a009c5d641be24b3fc18176627b1edb59950a23079', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5193.206557058291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01198637f8db60ccb260', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:30:47.000Z'}}, {'blockNum': '0x637079', 'uniqueId': '0xef763e20ef5af3803b8832a009c5d641be24b3fc18176627b1edb59950a23079:log:164', 'hash': '0xef763e20ef5af3803b8832a009c5d641be24b3fc18176627b1edb59950a23079', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5193.206557058291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01198637f8db60ccb260', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:30:47.000Z'}}, {'blockNum': '0x637083', 'uniqueId': '0x58a8601d45604aaffc2808a200b6b7fe5ad81a6450a379037e55ecc9a7649956:log:113', 'hash': '0x58a8601d45604aaffc2808a200b6b7fe5ad81a6450a379037e55ecc9a7649956', 'from': '0x205fd9bbb9d092b8e428108a0a9414801bfa196f', 'to': '0x841ec5e5e37a62af39ed225bd9fe9dbcb14148dc', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:32:22.000Z'}}, {'blockNum': '0x637084', 'uniqueId': '0xb625191f8f86da1a9525e46ee03117e762bcea814e96db36e166bc82280c3f2d:log:1', 'hash': '0xb625191f8f86da1a9525e46ee03117e762bcea814e96db36e166bc82280c3f2d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 28185.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05f7ead64ef0ae4e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:32:31.000Z'}}, {'blockNum': '0x637086', 'uniqueId': '0xff376d69791b486032a3ce24c224cf0eca1d411006ceb3994b15e2f590af76fb:log:41', 'hash': '0xff376d69791b486032a3ce24c224cf0eca1d411006ceb3994b15e2f590af76fb', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3506.540680224404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbe17070a372034b01c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:32:47.000Z'}}, {'blockNum': '0x637086', 'uniqueId': '0xff376d69791b486032a3ce24c224cf0eca1d411006ceb3994b15e2f590af76fb:log:43', 'hash': '0xff376d69791b486032a3ce24c224cf0eca1d411006ceb3994b15e2f590af76fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3506.540680224404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbe17070a372034b01c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:32:47.000Z'}}, {'blockNum': '0x637088', 'uniqueId': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61:log:14', 'hash': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2632.4709520627935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8eb4df8f78e52e1716', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:33:14.000Z'}}, {'blockNum': '0x637088', 'uniqueId': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61:log:16', 'hash': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2632.4709520627935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8eb4df8f78e52e1716', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:33:14.000Z'}}, {'blockNum': '0x637088', 'uniqueId': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61:log:21', 'hash': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2632.4683195918415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8eb4d63540fd3367cc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:33:14.000Z'}}, {'blockNum': '0x637088', 'uniqueId': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61:log:23', 'hash': '0x602f2393879f4ca95f041b59ee57370012c3d412f6f91b5fa83b7aab077a2d61', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2632.4683195918415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8eb4d63540fd3367cc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:33:14.000Z'}}, {'blockNum': '0x637090', 'uniqueId': '0x6fd7c8b3b0a59ceb82a172b7209f484e5bdbcf96e5be531dcf91421301d96b3e:log:178', 'hash': '0x6fd7c8b3b0a59ceb82a172b7209f484e5bdbcf96e5be531dcf91421301d96b3e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4404.902479890911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeeca4d4b498704d8ee', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:34:42.000Z'}}, {'blockNum': '0x637090', 'uniqueId': '0x6fd7c8b3b0a59ceb82a172b7209f484e5bdbcf96e5be531dcf91421301d96b3e:log:180', 'hash': '0x6fd7c8b3b0a59ceb82a172b7209f484e5bdbcf96e5be531dcf91421301d96b3e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4404.902479890911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeeca4d4b498704d8ee', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:34:42.000Z'}}, {'blockNum': '0x637091', 'uniqueId': '0x0cf68158903a0bbaa3cd85d57ada6a6f98600c3ae80d021d97a7ed4831619df0:log:26', 'hash': '0x0cf68158903a0bbaa3cd85d57ada6a6f98600c3ae80d021d97a7ed4831619df0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4404.898074988431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeeca3da50d3f6f4f0e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:34:54.000Z'}}, {'blockNum': '0x637091', 'uniqueId': '0x0cf68158903a0bbaa3cd85d57ada6a6f98600c3ae80d021d97a7ed4831619df0:log:28', 'hash': '0x0cf68158903a0bbaa3cd85d57ada6a6f98600c3ae80d021d97a7ed4831619df0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4404.898074988431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeeca3da50d3f6f4f0e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:34:54.000Z'}}, {'blockNum': '0x637092', 'uniqueId': '0xee5c3e2f52216f550330ccd20b4c8dc425d7f958b864bec227e74a542dc66e89:log:74', 'hash': '0xee5c3e2f52216f550330ccd20b4c8dc425d7f958b864bec227e74a542dc66e89', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3893.4428884867434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3105fcebbf3277418', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:35:03.000Z'}}, {'blockNum': '0x637092', 'uniqueId': '0xee5c3e2f52216f550330ccd20b4c8dc425d7f958b864bec227e74a542dc66e89:log:76', 'hash': '0xee5c3e2f52216f550330ccd20b4c8dc425d7f958b864bec227e74a542dc66e89', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3893.4428884867434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3105fcebbf3277418', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:35:03.000Z'}}, {'blockNum': '0x637096', 'uniqueId': '0xe7d529211ecc7c004aceeef88613745986776203ea5f37fc2121c208fda21847:log:10', 'hash': '0xe7d529211ecc7c004aceeef88613745986776203ea5f37fc2121c208fda21847', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02191d1f212a8a500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:35:58.000Z'}}, {'blockNum': '0x6370a5', 'uniqueId': '0x66f781bd9ac04164bc5f336338fc952f42241af3a51324c09a386dab02219b7d:log:12', 'hash': '0x66f781bd9ac04164bc5f336338fc952f42241af3a51324c09a386dab02219b7d', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0600a3c5f07496a80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:38:30.000Z'}}, {'blockNum': '0x6370b0', 'uniqueId': '0xe1261199f36fc0fbf3bd1bf2ea6ed14555371910b9ebac0204c8b06ea68eec0a:log:89', 'hash': '0xe1261199f36fc0fbf3bd1bf2ea6ed14555371910b9ebac0204c8b06ea68eec0a', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3500.88898388544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbdc8982e56c9e7c396', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:41:52.000Z'}}, {'blockNum': '0x6370b0', 'uniqueId': '0xe1261199f36fc0fbf3bd1bf2ea6ed14555371910b9ebac0204c8b06ea68eec0a:log:92', 'hash': '0xe1261199f36fc0fbf3bd1bf2ea6ed14555371910b9ebac0204c8b06ea68eec0a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3500.88898388544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbdc8982e56c9e7c396', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:41:52.000Z'}}, {'blockNum': '0x6370b7', 'uniqueId': '0x6c5dc33856c9286703c98f77963b9d638971251ca6de4a69e188da6e0f64d166:log:27', 'hash': '0x6c5dc33856c9286703c98f77963b9d638971251ca6de4a69e188da6e0f64d166', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3489.9475204391906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbd30c04b4e15449c7c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:44:02.000Z'}}, {'blockNum': '0x6370b7', 'uniqueId': '0x6c5dc33856c9286703c98f77963b9d638971251ca6de4a69e188da6e0f64d166:log:31', 'hash': '0x6c5dc33856c9286703c98f77963b9d638971251ca6de4a69e188da6e0f64d166', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3489.9475204391906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbd30c04b4e15449c7c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:44:02.000Z'}}, {'blockNum': '0x6370bc', 'uniqueId': '0xcf93da00d59d5d5e3156ef72ab7ba215b6636b1d92984eb08ad715e664bdcfaa:log:8', 'hash': '0xcf93da00d59d5d5e3156ef72ab7ba215b6636b1d92984eb08ad715e664bdcfaa', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbd239a067c59e40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:16.000Z'}}, {'blockNum': '0x6370bd', 'uniqueId': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889:log:109', 'hash': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2594.4117164383983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ca4b1fe517e33b1f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:31.000Z'}}, {'blockNum': '0x6370bd', 'uniqueId': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889:log:113', 'hash': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2594.4117164383983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ca4b1fe517e33b1f3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:31.000Z'}}, {'blockNum': '0x6370bd', 'uniqueId': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889:log:114', 'hash': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2594.3196102839393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ca36ac442440dcc1d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:31.000Z'}}, {'blockNum': '0x6370bd', 'uniqueId': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889:log:115', 'hash': '0x7bbaa49f4d93c60faa7541a9053570136f6bcdaf99af171033f2cfc26b7bc889', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2594.3196102839393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ca36ac442440dcc1d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:31.000Z'}}, {'blockNum': '0x6370c0', 'uniqueId': '0x7b459cd39cdee77ce004cc91d9a578f183a51247f4bd8a4c0139efd5260e53e1:log:3', 'hash': '0x7b459cd39cdee77ce004cc91d9a578f183a51247f4bd8a4c0139efd5260e53e1', 'from': '0xf11e06c949d94d65faafe6080f9d9ecf264373fa', 'to': '0x76ad99e7251b4e60895a432a595666dc6f1c387b', 'value': 20151.7983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x04446e61790bf4adc000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:45:58.000Z'}}, {'blockNum': '0x6370dd', 'uniqueId': '0x07e438310d99cb31dda743c2925d5f788c61bbde13f638f1cef2c3cbdf3ded3a:log:16', 'hash': '0x07e438310d99cb31dda743c2925d5f788c61bbde13f638f1cef2c3cbdf3ded3a', 'from': '0x54f101d098e3134640dc7bedb7e6bd54d442246d', 'to': '0xc307b623c97cd4e8f79992581b4cd506e07eaedf', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:52:27.000Z'}}, {'blockNum': '0x6370e2', 'uniqueId': '0xd1b91abe014bc6a3862c5cb4bc47ea2afeb8281f4b1d1ff1f036f739abcc9fdb:log:6', 'hash': '0xd1b91abe014bc6a3862c5cb4bc47ea2afeb8281f4b1d1ff1f036f739abcc9fdb', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xe8579fe3d462860e52fd411b9208f90a13e22806', 'value': 1590.1862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x56344443bb80458000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:53:26.000Z'}}, {'blockNum': '0x6370eb', 'uniqueId': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c:log:54', 'hash': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4374.818126178486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xed28cc32fac0aacccc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:55:23.000Z'}}, {'blockNum': '0x6370eb', 'uniqueId': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c:log:56', 'hash': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4374.818126178486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xed28cc32fac0aacccc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:55:23.000Z'}}, {'blockNum': '0x6370eb', 'uniqueId': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c:log:60', 'hash': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4374.818126178486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xed28cc32fac0aacccc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:55:23.000Z'}}, {'blockNum': '0x6370eb', 'uniqueId': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c:log:62', 'hash': '0x4dcec36ee371a4270c33d2b99d35312e55c8978ffc7524a3d07a40be3d6b934c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4374.818126178486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xed28cc32fac0aacccc', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:55:23.000Z'}}, {'blockNum': '0x6370ef', 'uniqueId': '0x950537ce1da994d1a116d07a2ae49b5e3b3b3891f19419631c3944ddd0637484:log:15', 'hash': '0x950537ce1da994d1a116d07a2ae49b5e3b3b3891f19419631c3944ddd0637484', 'from': '0x76ad99e7251b4e60895a432a595666dc6f1c387b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20151.7983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x04446e61790bf4adc000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:56:39.000Z'}}, {'blockNum': '0x6370ef', 'uniqueId': '0x5517303d5eaa012c184392a5abd51622558c32c8012aa90842c0fbfaea4ac467:log:17', 'hash': '0x5517303d5eaa012c184392a5abd51622558c32c8012aa90842c0fbfaea4ac467', 'from': '0x841ec5e5e37a62af39ed225bd9fe9dbcb14148dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T01:56:39.000Z'}}, {'blockNum': '0x63713a', 'uniqueId': '0xb8ff02ecd886f5ed92885ce2f62d9cab3236ce7cc99c1138e3d13b0e7bb3caea:log:20', 'hash': '0xb8ff02ecd886f5ed92885ce2f62d9cab3236ce7cc99c1138e3d13b0e7bb3caea', 'from': '0xffde1b4976d01029412c7791b40f07aab529005b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2b5e3af16b18800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:12:38.000Z'}}, {'blockNum': '0x63713a', 'uniqueId': '0xb8ff02ecd886f5ed92885ce2f62d9cab3236ce7cc99c1138e3d13b0e7bb3caea:log:21', 'hash': '0xb8ff02ecd886f5ed92885ce2f62d9cab3236ce7cc99c1138e3d13b0e7bb3caea', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2b5e3af16b18800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:12:38.000Z'}}, {'blockNum': '0x637148', 'uniqueId': '0x364a1fbe9cad57eeb2d89d3c83c582a3b68bd4e3d338209443be0d8e82ccb9e3:log:13', 'hash': '0x364a1fbe9cad57eeb2d89d3c83c582a3b68bd4e3d338209443be0d8e82ccb9e3', 'from': '0xc307b623c97cd4e8f79992581b4cd506e07eaedf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:16:33.000Z'}}, {'blockNum': '0x637150', 'uniqueId': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8:log:26', 'hash': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2599.6499732777024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ced640529032f281d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:18:03.000Z'}}, {'blockNum': '0x637150', 'uniqueId': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8:log:30', 'hash': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2599.6499732777024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ced640529032f281d', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:18:03.000Z'}}, {'blockNum': '0x637150', 'uniqueId': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8:log:31', 'hash': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2599.3929957038154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ce9d30d6b1465baee', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:18:03.000Z'}}, {'blockNum': '0x637150', 'uniqueId': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8:log:32', 'hash': '0x3a56698f491c1e6544d7f3d2fb9d81597cda498e0cc5886244e726842a9b11e8', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2599.3929957038154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ce9d30d6b1465baee', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:18:03.000Z'}}, {'blockNum': '0x637156', 'uniqueId': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e:log:31', 'hash': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4331.115024118396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeaca4b97346e671f5f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:19:56.000Z'}}, {'blockNum': '0x637156', 'uniqueId': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e:log:35', 'hash': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 4331.115024118396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeaca4b97346e671f5f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:19:56.000Z'}}, {'blockNum': '0x637156', 'uniqueId': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e:log:37', 'hash': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4331.115024118396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeaca4b97346e671f5f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:19:56.000Z'}}, {'blockNum': '0x637156', 'uniqueId': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e:log:38', 'hash': '0xe1b054c4c494f934b37c7a551871262d636c9d1837281428ad9285df0a9a322e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4331.115024118396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xeaca4b97346e671f5f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:19:56.000Z'}}, {'blockNum': '0x637157', 'uniqueId': '0xd91282839550e1b58753dc1cb2009c9b210b065df0b48a2350a75a4b9a3870da:log:73', 'hash': '0xd91282839550e1b58753dc1cb2009c9b210b065df0b48a2350a75a4b9a3870da', 'from': '0xcd9c46290895bd9781991caafef2a65f78639cad', 'to': '0xa0b98cfc741fbbf3a0478623d81e08ddcda50456', 'value': 1168.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3f5c5bbf6ea4900000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:20:15.000Z'}}, {'blockNum': '0x637159', 'uniqueId': '0x681f3320985fc2a481edfafbb60b833ece5bcf18c2d95bd7e05a3081502b394e:log:70', 'hash': '0x681f3320985fc2a481edfafbb60b833ece5bcf18c2d95bd7e05a3081502b394e', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 14498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0311f02aea4dcd480000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:20:42.000Z'}}, {'blockNum': '0x637160', 'uniqueId': '0x819278a4e07b2329cf958b5dc860a7d5ab0d04b320d554d7c98226d5cd8d266a:log:19', 'hash': '0x819278a4e07b2329cf958b5dc860a7d5ab0d04b320d554d7c98226d5cd8d266a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 28306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05fe78a964626f080000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:23:03.000Z'}}, {'blockNum': '0x637165', 'uniqueId': '0x2de46d59a40be559fde1885e6349776f927e0d49488364a2acafbca591141db3:log:60', 'hash': '0x2de46d59a40be559fde1885e6349776f927e0d49488364a2acafbca591141db3', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3451.112304164203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbb15cde3dc572928df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:24:20.000Z'}}, {'blockNum': '0x637165', 'uniqueId': '0x2de46d59a40be559fde1885e6349776f927e0d49488364a2acafbca591141db3:log:64', 'hash': '0x2de46d59a40be559fde1885e6349776f927e0d49488364a2acafbca591141db3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3451.112304164203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbb15cde3dc572928df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:24:20.000Z'}}, {'blockNum': '0x637165', 'uniqueId': '0xf6a585438752593cfc9cdc86acb28ad561e81bfafb30551c4d52d2baa9f56920:log:77', 'hash': '0xf6a585438752593cfc9cdc86acb28ad561e81bfafb30551c4d52d2baa9f56920', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 10479.376308714685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0238168f8ea9271b3ff3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:24:20.000Z'}}, {'blockNum': '0x637165', 'uniqueId': '0xf6a585438752593cfc9cdc86acb28ad561e81bfafb30551c4d52d2baa9f56920:log:81', 'hash': '0xf6a585438752593cfc9cdc86acb28ad561e81bfafb30551c4d52d2baa9f56920', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 10479.376308714685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0238168f8ea9271b3ff3', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:24:20.000Z'}}, {'blockNum': '0x637167', 'uniqueId': '0x9ed20da4cf87e2ac1e23df20c209c322e139135aa8bb60b561bebcb2b8532525:log:24', 'hash': '0x9ed20da4cf87e2ac1e23df20c209c322e139135aa8bb60b561bebcb2b8532525', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbb143ee7d1810c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:25:13.000Z'}}, {'blockNum': '0x637167', 'uniqueId': '0x24b0148f590d09976ba12a3059ffd432c5baf8b7845bad977c712a6e7902352a:log:57', 'hash': '0x24b0148f590d09976ba12a3059ffd432c5baf8b7845bad977c712a6e7902352a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6823.492927487523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0171e6fca9228c118153', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:25:13.000Z'}}, {'blockNum': '0x637167', 'uniqueId': '0x24b0148f590d09976ba12a3059ffd432c5baf8b7845bad977c712a6e7902352a:log:61', 'hash': '0x24b0148f590d09976ba12a3059ffd432c5baf8b7845bad977c712a6e7902352a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 6823.492927487523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0171e6fca9228c118153', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:25:13.000Z'}}, {'blockNum': '0x637174', 'uniqueId': '0x878fb5543366a0a6ec8ef8cf7175e707fc81c3d9e553fd930b5994c20b3a8c26:log:15', 'hash': '0x878fb5543366a0a6ec8ef8cf7175e707fc81c3d9e553fd930b5994c20b3a8c26', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 10067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0221bbb09abf816c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:28:01.000Z'}}, {'blockNum': '0x63717b', 'uniqueId': '0x823a1a752bddaa7b6f28196b980d769f8c699ca485c00ade256fbb8bdbde9f4e:log:37', 'hash': '0x823a1a752bddaa7b6f28196b980d769f8c699ca485c00ade256fbb8bdbde9f4e', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 8342.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c43cab5299ad360000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:29:09.000Z'}}, {'blockNum': '0x637199', 'uniqueId': '0x73bfbf1722eba696e7537112fc303bac84f56e7d791d6c8915bc67dc789b8c52:log:27', 'hash': '0x73bfbf1722eba696e7537112fc303bac84f56e7d791d6c8915bc67dc789b8c52', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32907.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06f7e886d7a6fbea0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:36:28.000Z'}}, {'blockNum': '0x637199', 'uniqueId': '0x9dafbbc526c61dcc9e50f4dff38e78be9cf68662208dc5f39c0b62656b081c5f:log:28', 'hash': '0x9dafbbc526c61dcc9e50f4dff38e78be9cf68662208dc5f39c0b62656b081c5f', 'from': '0xa0b98cfc741fbbf3a0478623d81e08ddcda50456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1168.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3f5c5bbf6ea4900000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:36:28.000Z'}}, {'blockNum': '0x63719f', 'uniqueId': '0xd9fb4dc07a0a0eeabf53226da3bdc03d1f93fc4d60ecfd7813883c61d3543a53:log:18', 'hash': '0xd9fb4dc07a0a0eeabf53226da3bdc03d1f93fc4d60ecfd7813883c61d3543a53', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa224450943185d7b94fc998ce4a18ad6379f2d1c', 'value': 26598.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05a1e2c9b339fd620000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:38:28.000Z'}}, {'blockNum': '0x6371ae', 'uniqueId': '0x5eb5e9c9e8562a4f71fd6d5064b97700607e7b5d6cf53e451d52fe5d313b7920:log:10', 'hash': '0x5eb5e9c9e8562a4f71fd6d5064b97700607e7b5d6cf53e451d52fe5d313b7920', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x0a879472989a28ad86caf37a2485582e2d0bfb60', 'value': 10947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02517024a44ee92c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:41:45.000Z'}}, {'blockNum': '0x6371ae', 'uniqueId': '0x52fc496c1d4e6faeba1c1390cab083b07573420713541506956e95094c703111:log:26', 'hash': '0x52fc496c1d4e6faeba1c1390cab083b07573420713541506956e95094c703111', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x2543903a1f88285e1ae6e0138677b3e4b8a5ab7d', 'value': 119989.819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1968a93f473150bf8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:41:45.000Z'}}, {'blockNum': '0x6371b3', 'uniqueId': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a:log:36', 'hash': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 876.4038481001903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f828bf075e53f23c9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:43:57.000Z'}}, {'blockNum': '0x6371b3', 'uniqueId': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a:log:38', 'hash': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x7b3c4d90e8af6030d66c07f8f815f9505e379d6f', 'value': 876.4038481001903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f828bf075e53f23c9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:43:57.000Z'}}, {'blockNum': '0x6371b3', 'uniqueId': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a:log:43', 'hash': '0x4286186c24d3e1c4552fbbb8ee6495d2fbfd0d6097d2f290d1d6f4878258ec3a', 'from': '0x7b3c4d90e8af6030d66c07f8f815f9505e379d6f', 'to': '0x0000000000000000000000000000000000000000', 'value': 876.4038481001903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2f828bf075e53f23c9', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:43:57.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0x434c4e3eae3195f3eab3d425b4b37e36bffa99cec9cc7e9055a2ff033c97f257:log:70', 'hash': '0x434c4e3eae3195f3eab3d425b4b37e36bffa99cec9cc7e9055a2ff033c97f257', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 12127.286984713972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02916bea5b7a265f3eb8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0x434c4e3eae3195f3eab3d425b4b37e36bffa99cec9cc7e9055a2ff033c97f257:log:74', 'hash': '0x434c4e3eae3195f3eab3d425b4b37e36bffa99cec9cc7e9055a2ff033c97f257', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 12127.286984713972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02916bea5b7a265f3eb8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e:log:108', 'hash': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 616.096045812586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x21660cd97325fa2113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e:log:110', 'hash': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 616.096045812586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x21660cd97325fa2113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371b6', 'uniqueId': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e:log:111', 'hash': '0xba8e3dcf387c11fa6cbf792ea3c3d507f3df298b36a348200a1bed2d5cc6849e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 616.096045812586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x21660cd97325fa2113', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:45:28.000Z'}}, {'blockNum': '0x6371bb', 'uniqueId': '0xb50e162cacaa8000ca207092f5da567762fe3923b6953bd1e7cee334a9609879:log:25', 'hash': '0xb50e162cacaa8000ca207092f5da567762fe3923b6953bd1e7cee334a9609879', 'from': '0x896e3f061ec207e51d72613859ad22d6891ab297', 'to': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'value': 996.84294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3609f98c6e0407c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:00.000Z'}}, {'blockNum': '0x6371bb', 'uniqueId': '0xb50e162cacaa8000ca207092f5da567762fe3923b6953bd1e7cee334a9609879:log:29', 'hash': '0xb50e162cacaa8000ca207092f5da567762fe3923b6953bd1e7cee334a9609879', 'from': '0x7219612be7036d1bfa933e16ca1246008f38c5fe', 'to': '0x34de029e67204e75ba9b108c81f518cf81211aaf', 'value': 996.84294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3609f98c6e0407c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:00.000Z'}}, {'blockNum': '0x6371bc', 'uniqueId': '0x44f499e18b77920497fb5e021e5be47bbc6fbecd02d33c1f69376256e15a1817:log:8', 'hash': '0x44f499e18b77920497fb5e021e5be47bbc6fbecd02d33c1f69376256e15a1817', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05fe78a964626f080000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:19.000Z'}}, {'blockNum': '0x6371bd', 'uniqueId': '0x044007df264c83811a33558dc2ad87c49b32d04ec21545a1c26e4f19d2e5ef04:log:49', 'hash': '0x044007df264c83811a33558dc2ad87c49b32d04ec21545a1c26e4f19d2e5ef04', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3345.297103420117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb55952c76abb450d85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:28.000Z'}}, {'blockNum': '0x6371bd', 'uniqueId': '0x044007df264c83811a33558dc2ad87c49b32d04ec21545a1c26e4f19d2e5ef04:log:53', 'hash': '0x044007df264c83811a33558dc2ad87c49b32d04ec21545a1c26e4f19d2e5ef04', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'value': 3345.297103420117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb55952c76abb450d85', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:46:28.000Z'}}, {'blockNum': '0x6371bf', 'uniqueId': '0xd66a4b49bdece346eba1b6b376800ea04b1611cf7a151fdb489a0dc9029d8cea:log:48', 'hash': '0xd66a4b49bdece346eba1b6b376800ea04b1611cf7a151fdb489a0dc9029d8cea', 'from': '0xc9fe8ccb4f7e28a39a3f4aa44fdf141469e3f77e', 'to': '0x1a7fe01f4195b183b37bdf3e4d3c9b1f31de34f9', 'value': 3345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xb55533416e31a40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:47:07.000Z'}}, {'blockNum': '0x6371c2', 'uniqueId': '0xed8d75413c634e928dff0c7c347cdc39d54f346c5cfe2d2934319fedc875f37f:log:110', 'hash': '0xed8d75413c634e928dff0c7c347cdc39d54f346c5cfe2d2934319fedc875f37f', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 28917.18011109719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x061f9a7d5541a2c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:48:02.000Z'}}, {'blockNum': '0x6371c6', 'uniqueId': '0x780c21719cc27ee2db91403ee963c0790773e805cb942eddc30dad76dafbc6b6:log:0', 'hash': '0x780c21719cc27ee2db91403ee963c0790773e805cb942eddc30dad76dafbc6b6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 39720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x086939bb526bb3a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:04.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0x19ea5ea23537abfd2b57327c3fe7199d55c11c0e8c5e9bf8e0726e279e2e2965:log:67', 'hash': '0x19ea5ea23537abfd2b57327c3fe7199d55c11c0e8c5e9bf8e0726e279e2e2965', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0x19ea5ea23537abfd2b57327c3fe7199d55c11c0e8c5e9bf8e0726e279e2e2965:log:71', 'hash': '0x19ea5ea23537abfd2b57327c3fe7199d55c11c0e8c5e9bf8e0726e279e2e2965', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f:log:75', 'hash': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f:log:77', 'hash': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371c7', 'uniqueId': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f:log:78', 'hash': '0xc3bcd7bad92a503b80d31bf1347792edb0ed299795cd2480af0ae75558887d2f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2478.5510474530265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x865cce35bb76007bb4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:49:41.000Z'}}, {'blockNum': '0x6371dd', 'uniqueId': '0x6c15668ac3850ed8362fdcc26eb10eaa7d8ed554db3245f3f6e16f77df5d904a:log:79', 'hash': '0x6c15668ac3850ed8362fdcc26eb10eaa7d8ed554db3245f3f6e16f77df5d904a', 'from': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'to': '0x47954b0e423ff1f1b545bc31287aa7e28f8b2d79', 'value': 36055.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07a292940bc618ae0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:53:09.000Z'}}, {'blockNum': '0x6371f2', 'uniqueId': '0xb6240cf7abba7c913c4142550b95789ee6a7189bf5728785df08702924b25e00:log:1', 'hash': '0xb6240cf7abba7c913c4142550b95789ee6a7189bf5728785df08702924b25e00', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28917.18011109719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x061f9a7d5541a2c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:09.000Z'}}, {'blockNum': '0x6371f2', 'uniqueId': '0xd5281d611f3b94dabd837a1888164020baca3fe3f0ce64db5bf13de2e8499c33:log:2', 'hash': '0xd5281d611f3b94dabd837a1888164020baca3fe3f0ce64db5bf13de2e8499c33', 'from': '0x2543903a1f88285e1ae6e0138677b3e4b8a5ab7d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 119989.819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1968a93f473150bf8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:09.000Z'}}, {'blockNum': '0x6371f3', 'uniqueId': '0xb309fc6ebf1cbea6437784b95ecf4aa658c900d2bbc55ad451d72422d659ccf8:log:7', 'hash': '0xb309fc6ebf1cbea6437784b95ecf4aa658c900d2bbc55ad451d72422d659ccf8', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x086939bb526bb3a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:22.000Z'}}, {'blockNum': '0x6371f3', 'uniqueId': '0x0f755f3c8f1f807aece68753c044ae9e37509621bbfcd201baefae5851fc992b:log:56', 'hash': '0x0f755f3c8f1f807aece68753c044ae9e37509621bbfcd201baefae5851fc992b', 'from': '0x0a879472989a28ad86caf37a2485582e2d0bfb60', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02517024a44ee92c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:22.000Z'}}, {'blockNum': '0x6371f3', 'uniqueId': '0x5f4e62e2034974e0a9d8d1808be294dce02eb281da67954d6838b869f29fb5e8:log:86', 'hash': '0x5f4e62e2034974e0a9d8d1808be294dce02eb281da67954d6838b869f29fb5e8', 'from': '0xa224450943185d7b94fc998ce4a18ad6379f2d1c', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 26598.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05a1e2c9b339fd620000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T02:56:22.000Z'}}, {'blockNum': '0x637203', 'uniqueId': '0xac6721bc553314c189c10c7c725b6cf42b1437f5f880ed355202653a759a3640:log:9', 'hash': '0xac6721bc553314c189c10c7c725b6cf42b1437f5f880ed355202653a759a3640', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 40640.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x089b1aaf2d85a08a0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:00:42.000Z'}}, {'blockNum': '0x63721a', 'uniqueId': '0x46a215f92c0ccd1d13927d26ae19b4677b50b886cb9c9285ff68aafdb1e8adc0:log:3', 'hash': '0x46a215f92c0ccd1d13927d26ae19b4677b50b886cb9c9285ff68aafdb1e8adc0', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0xdd55cd7a19ee860b513bc36a610e4f22625e2851', 'value': 6974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017a0fb1322a16380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:04:05.000Z'}}, {'blockNum': '0x637223', 'uniqueId': '0x8693f1dbc8c0422e73912b3d71d83eea4d49e3e04b3f3769a5b1c838c4418548:log:14', 'hash': '0x8693f1dbc8c0422e73912b3d71d83eea4d49e3e04b3f3769a5b1c838c4418548', 'from': '0x47954b0e423ff1f1b545bc31287aa7e28f8b2d79', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36055.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07a292940bc618ae0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:06:25.000Z'}}, {'blockNum': '0x637224', 'uniqueId': '0xc78e7a56d8a9de182d8c7b29e754cdef1dcb342827cbdd5f1d04bdaff73a7e0a:log:1', 'hash': '0xc78e7a56d8a9de182d8c7b29e754cdef1dcb342827cbdd5f1d04bdaff73a7e0a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 40649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x089b9632545e25840000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:06:49.000Z'}}, {'blockNum': '0x637228', 'uniqueId': '0x01eb23b65edc88dd8ddacbc4a146a67d2eea86dbbd7e93660d630ebb350f5f65:log:8', 'hash': '0x01eb23b65edc88dd8ddacbc4a146a67d2eea86dbbd7e93660d630ebb350f5f65', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x3b082eb9c6e0bebbd64434a984981adf2a9d9ab2', 'value': 8011.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b2509a6ab87d318000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:07:57.000Z'}}, {'blockNum': '0x637229', 'uniqueId': '0x9394bca2a6b2dd6b3325c1e380c66979f37d3a21e4576d65638afd282cc852e6:log:1', 'hash': '0x9394bca2a6b2dd6b3325c1e380c66979f37d3a21e4576d65638afd282cc852e6', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 63666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0d7b573d131343880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:08:03.000Z'}}, {'blockNum': '0x637244', 'uniqueId': '0x8deaa921980516aca4f26657712573f670be8dd6e22835fee984d965b875f6f9:log:16', 'hash': '0x8deaa921980516aca4f26657712573f670be8dd6e22835fee984d965b875f6f9', 'from': '0x3b082eb9c6e0bebbd64434a984981adf2a9d9ab2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8011.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01b2509a6ab87d318000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:16:28.000Z'}}, {'blockNum': '0x637244', 'uniqueId': '0x4717ced8125ff774f1fac85b5a2beb0a182e6a054062b1e69ca736cc7861e209:log:17', 'hash': '0x4717ced8125ff774f1fac85b5a2beb0a182e6a054062b1e69ca736cc7861e209', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x089b9632545e25840000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:16:28.000Z'}}, {'blockNum': '0x637244', 'uniqueId': '0xf43e794f658d9a060a100d7e7f2f05e871b7f652a767c2d84d9e35df0bcc561e:log:22', 'hash': '0xf43e794f658d9a060a100d7e7f2f05e871b7f652a767c2d84d9e35df0bcc561e', 'from': '0xdd55cd7a19ee860b513bc36a610e4f22625e2851', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x017a0fb1322a16380000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:16:28.000Z'}}, {'blockNum': '0x637247', 'uniqueId': '0x9cc9abefb60cfab902c040678c5d447a42b6610cc20655f4ce6a17eee8c13417:log:9', 'hash': '0x9cc9abefb60cfab902c040678c5d447a42b6610cc20655f4ce6a17eee8c13417', 'from': '0x2c6a39c214f556c30e86566c36f8c0ccf39d137a', 'to': '0x996167f658ee7ae6fe04eda61a80431e3fe5d40b', 'value': 309978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x41a3f0e8ba2b33280000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:16:47.000Z'}}, {'blockNum': '0x63724f', 'uniqueId': '0x29d467c1270f76ef7b55292984503d8fb46d2e1bd7bb2990eaf24b6e5b1f0543:log:50', 'hash': '0x29d467c1270f76ef7b55292984503d8fb46d2e1bd7bb2990eaf24b6e5b1f0543', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 10360.289567117145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0231a1e676205ae00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:18:57.000Z'}}, {'blockNum': '0x63724f', 'uniqueId': '0x29d467c1270f76ef7b55292984503d8fb46d2e1bd7bb2990eaf24b6e5b1f0543:log:52', 'hash': '0x29d467c1270f76ef7b55292984503d8fb46d2e1bd7bb2990eaf24b6e5b1f0543', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 10360.289567117145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0231a1e676205ae00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:18:57.000Z'}}, {'blockNum': '0x63725b', 'uniqueId': '0x3f101c5d19333ee774c3f3f19d006d416f79ca2c38caac4c0c56bf5e4b279fe8:log:72', 'hash': '0x3f101c5d19333ee774c3f3f19d006d416f79ca2c38caac4c0c56bf5e4b279fe8', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4461.339344200412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf1d985505c83b67596', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:21:46.000Z'}}, {'blockNum': '0x63725b', 'uniqueId': '0x3f101c5d19333ee774c3f3f19d006d416f79ca2c38caac4c0c56bf5e4b279fe8:log:74', 'hash': '0x3f101c5d19333ee774c3f3f19d006d416f79ca2c38caac4c0c56bf5e4b279fe8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4461.339344200412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf1d985505c83b67596', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:21:46.000Z'}}, {'blockNum': '0x637260', 'uniqueId': '0x0b7298457ca8b470e5e9886be66b97b184cf2bd4836d7a74e5afaefb1e1059f4:log:12', 'hash': '0x0b7298457ca8b470e5e9886be66b97b184cf2bd4836d7a74e5afaefb1e1059f4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 32978.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06fbbf12f889ad920000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:22:25.000Z'}}, {'blockNum': '0x637270', 'uniqueId': '0xeda4c6b61b661f6d077b2b46ac05f2e6b249cb29ffa279f00de98eb10be41f45:log:11', 'hash': '0xeda4c6b61b661f6d077b2b46ac05f2e6b249cb29ffa279f00de98eb10be41f45', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0d7b573d131343880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:20.000Z'}}, {'blockNum': '0x637270', 'uniqueId': '0x9312c790c353ed1d1cc1d73ed96ac750b7117e145a125f6271cb154ef7139dc7:log:12', 'hash': '0x9312c790c353ed1d1cc1d73ed96ac750b7117e145a125f6271cb154ef7139dc7', 'from': '0x996167f658ee7ae6fe04eda61a80431e3fe5d40b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 309978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x41a3f0e8ba2b33280000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:20.000Z'}}, {'blockNum': '0x637273', 'uniqueId': '0xf21bee40d24c44bc2e93b91bac63a66d220fbc530fc4ca36ad4ba08d8922537d:log:4', 'hash': '0xf21bee40d24c44bc2e93b91bac63a66d220fbc530fc4ca36ad4ba08d8922537d', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2567.16552667674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b2a9415162ba80b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:48.000Z'}}, {'blockNum': '0x637273', 'uniqueId': '0xf21bee40d24c44bc2e93b91bac63a66d220fbc530fc4ca36ad4ba08d8922537d:log:6', 'hash': '0xf21bee40d24c44bc2e93b91bac63a66d220fbc530fc4ca36ad4ba08d8922537d', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2567.16552667674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b2a9415162ba80b4c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:48.000Z'}}, {'blockNum': '0x637273', 'uniqueId': '0xb24504f7f751e4d40a9ef5b17102aab7a195f10ede78474f7d6fc59d84a20986:log:11', 'hash': '0xb24504f7f751e4d40a9ef5b17102aab7a195f10ede78474f7d6fc59d84a20986', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2567.162959511213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b2a8af6435e5bf648', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:48.000Z'}}, {'blockNum': '0x637273', 'uniqueId': '0xb24504f7f751e4d40a9ef5b17102aab7a195f10ede78474f7d6fc59d84a20986:log:13', 'hash': '0xb24504f7f751e4d40a9ef5b17102aab7a195f10ede78474f7d6fc59d84a20986', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2567.162959511213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b2a8af6435e5bf648', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:26:48.000Z'}}, {'blockNum': '0x637277', 'uniqueId': '0x2ac8cd8cb111617145bbcd96e2fc748d88c036738d67ce1fa3cafaa3c912e788:log:27', 'hash': '0x2ac8cd8cb111617145bbcd96e2fc748d88c036738d67ce1fa3cafaa3c912e788', 'from': '0x0d6b5a54f940bf3d52e438cab785981aaefdf40c', 'to': '0xf2b58791380de903b4aa18fb78e30878b05461b6', 'value': 14873.42362427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03264a378f7f74598c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:27:32.000Z'}}, {'blockNum': '0x63727d', 'uniqueId': '0x8789e0aef368103f318bf3f155ec3edc92ef4d4df13d6db9226329e2c16fc14c:log:90', 'hash': '0x8789e0aef368103f318bf3f155ec3edc92ef4d4df13d6db9226329e2c16fc14c', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 16829.625143150508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x039055f7748514a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:46.000Z'}}, {'blockNum': '0x63727d', 'uniqueId': '0x8789e0aef368103f318bf3f155ec3edc92ef4d4df13d6db9226329e2c16fc14c:log:92', 'hash': '0x8789e0aef368103f318bf3f155ec3edc92ef4d4df13d6db9226329e2c16fc14c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 16829.625143150508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x039055f7748514a00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:46.000Z'}}, {'blockNum': '0x63727e', 'uniqueId': '0xf44d7e0a44008bdf4b52ff8ec058b223e1b622778d13a8eeda816ab58dc4cd38:log:51', 'hash': '0xf44d7e0a44008bdf4b52ff8ec058b223e1b622778d13a8eeda816ab58dc4cd38', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5173.169934743543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118702797052f9bf6a8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:53.000Z'}}, {'blockNum': '0x63727e', 'uniqueId': '0xf44d7e0a44008bdf4b52ff8ec058b223e1b622778d13a8eeda816ab58dc4cd38:log:53', 'hash': '0xf44d7e0a44008bdf4b52ff8ec058b223e1b622778d13a8eeda816ab58dc4cd38', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5173.169934743543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0118702797052f9bf6a8', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:53.000Z'}}, {'blockNum': '0x63727e', 'uniqueId': '0xe4f0a68d78585ff65e8adb1f480910d4ca6e9aa8051fe6cd5569315206dffd49:log:58', 'hash': '0xe4f0a68d78585ff65e8adb1f480910d4ca6e9aa8051fe6cd5569315206dffd49', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5173.164761573608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01187015360cb3493eb0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:53.000Z'}}, {'blockNum': '0x63727e', 'uniqueId': '0xe4f0a68d78585ff65e8adb1f480910d4ca6e9aa8051fe6cd5569315206dffd49:log:60', 'hash': '0xe4f0a68d78585ff65e8adb1f480910d4ca6e9aa8051fe6cd5569315206dffd49', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5173.164761573608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01187015360cb3493eb0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:28:53.000Z'}}, {'blockNum': '0x637289', 'uniqueId': '0x2d6f769ec6521a4d4541abdc3a11155d4e650edf90dffd49a1c8cf6826429b0c:log:73', 'hash': '0x2d6f769ec6521a4d4541abdc3a11155d4e650edf90dffd49a1c8cf6826429b0c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 27162.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x05c07a06076fde500000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:32:47.000Z'}}, {'blockNum': '0x6372a2', 'uniqueId': '0x581a547f5064c14ba2709ab76ea9f2223e7d838cf9a1e8cf046d0378500c0bd9:log:38', 'hash': '0x581a547f5064c14ba2709ab76ea9f2223e7d838cf9a1e8cf046d0378500c0bd9', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5288.057108846351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011eaa88d32b1dec9656', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:38:16.000Z'}}, {'blockNum': '0x6372a2', 'uniqueId': '0x581a547f5064c14ba2709ab76ea9f2223e7d838cf9a1e8cf046d0378500c0bd9:log:40', 'hash': '0x581a547f5064c14ba2709ab76ea9f2223e7d838cf9a1e8cf046d0378500c0bd9', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5288.057108846351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011eaa88d32b1dec9656', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:38:16.000Z'}}, {'blockNum': '0x6372a5', 'uniqueId': '0xad7a5ff36eccdfc29bcea0ecbc146d26eb533bec6cff3b582b3b1a474f98bf65:log:11', 'hash': '0xad7a5ff36eccdfc29bcea0ecbc146d26eb533bec6cff3b582b3b1a474f98bf65', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x029028be5e4270200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:39:38.000Z'}}, {'blockNum': '0x6372a5', 'uniqueId': '0x496d0ca1e8a17490381dff3c57db12d55fe1590c5a1d6d7dc5d174059501e1ce:log:96', 'hash': '0x496d0ca1e8a17490381dff3c57db12d55fe1590c5a1d6d7dc5d174059501e1ce', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5288.051820789243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011eaa7609b560663f45', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:39:38.000Z'}}, {'blockNum': '0x6372a5', 'uniqueId': '0x496d0ca1e8a17490381dff3c57db12d55fe1590c5a1d6d7dc5d174059501e1ce:log:98', 'hash': '0x496d0ca1e8a17490381dff3c57db12d55fe1590c5a1d6d7dc5d174059501e1ce', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5288.051820789243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011eaa7609b560663f45', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:39:38.000Z'}}, {'blockNum': '0x6372bd', 'uniqueId': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba:log:31', 'hash': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5244.788584449205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c52102579c6b06527', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:44:47.000Z'}}, {'blockNum': '0x6372bd', 'uniqueId': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba:log:35', 'hash': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'value': 5244.788584449205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c52102579c6b06527', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:44:47.000Z'}}, {'blockNum': '0x6372bd', 'uniqueId': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba:log:36', 'hash': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba', 'from': '0x00000000007f6202ba718df41ec639b32dd7fbcf', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5244.788584449205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c52102579c6b06527', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:44:47.000Z'}}, {'blockNum': '0x6372bd', 'uniqueId': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba:log:37', 'hash': '0x53212634eb7c0f74ef5559938c4ee87ed356021ab86db008203cdd041c51d0ba', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5244.788584449205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011c52102579c6b06527', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:44:47.000Z'}}, {'blockNum': '0x6372c5', 'uniqueId': '0xa15b54296c4d6e551591b148405292c9ef0a57a1f492722ca5dfbfa0c5fb6659:log:16', 'hash': '0xa15b54296c4d6e551591b148405292c9ef0a57a1f492722ca5dfbfa0c5fb6659', 'from': '0xf2b58791380de903b4aa18fb78e30878b05461b6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14873.42362427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03264a378f7f74598c00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:46:03.000Z'}}, {'blockNum': '0x6372cb', 'uniqueId': '0x29866d21e2cae313a79b9719005d4b88de04fc79ec9ada6cf7d50995e3fadf51:log:6', 'hash': '0x29866d21e2cae313a79b9719005d4b88de04fc79ec9ada6cf7d50995e3fadf51', 'from': '0x0f3bcdb64698e3b6732f55a6390082a9241399ee', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:47:18.000Z'}}, {'blockNum': '0x6372cf', 'uniqueId': '0x1e1c284485054950985751a68f81bcb063e5e0fdff406ca0362764459aeac2ad:log:10', 'hash': '0x1e1c284485054950985751a68f81bcb063e5e0fdff406ca0362764459aeac2ad', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 8281.093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c0eb4060638de08000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:48:04.000Z'}}, {'blockNum': '0x6372d0', 'uniqueId': '0x78ae272d8ae0441042f52f0730510a1ee27985ca8ef652aa29ad5f95b7fd1664:log:8', 'hash': '0x78ae272d8ae0441042f52f0730510a1ee27985ca8ef652aa29ad5f95b7fd1664', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02bf604bfb80f55c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:48:26.000Z'}}, {'blockNum': '0x6372d0', 'uniqueId': '0x7d6803e4007c377882ec3dbedcd4c228b3ea5f6585208ba17891e5885c6da420:log:88', 'hash': '0x7d6803e4007c377882ec3dbedcd4c228b3ea5f6585208ba17891e5885c6da420', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'value': 12975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02bf604bfb80f55c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:48:26.000Z'}}, {'blockNum': '0x6372e1', 'uniqueId': '0x24b4945c2b89a7688b17b207a1e2725d9357e6a2ebaa8f981399264b3b82441c:log:25', 'hash': '0x24b4945c2b89a7688b17b207a1e2725d9357e6a2ebaa8f981399264b3b82441c', 'from': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 29336.804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x063659f0dcf36aca0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:52:38.000Z'}}, {'blockNum': '0x6372f2', 'uniqueId': '0xc682a6c8a7dcfec7d6acf7408abaa18d65ed54871a448bf6f728eb4f11a43236:log:14', 'hash': '0xc682a6c8a7dcfec7d6acf7408abaa18d65ed54871a448bf6f728eb4f11a43236', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 50754.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0abf62a15340dd520000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T03:56:43.000Z'}}, {'blockNum': '0x63730a', 'uniqueId': '0x818bad5510a922b3e91cd8070fdd4fc2e1f1359741c9ec9f6e11a5da55541349:log:1', 'hash': '0x818bad5510a922b3e91cd8070fdd4fc2e1f1359741c9ec9f6e11a5da55541349', 'from': '0xaa5d82241b97946ffde20507a732fcab13b781c3', 'to': '0xa26c6e03b3f1f64806f64494c641dd720c369217', 'value': 95000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x141df5d77c6d9d600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:02:50.000Z'}}, {'blockNum': '0x637317', 'uniqueId': '0x597d128a587e69c5939009fceaa332a3cf39b951e937833f684c6e4cfed9f1aa:log:7', 'hash': '0x597d128a587e69c5939009fceaa332a3cf39b951e937833f684c6e4cfed9f1aa', 'from': '0x66ad9e7eca40bf3a7308c3358d914ca2ad9a7ecd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x080ee95655445ad80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:06:04.000Z'}}, {'blockNum': '0x637317', 'uniqueId': '0x4cc37b343af8c287db431347026749bb1d07863c880deeff71909007d6a8a680:log:11', 'hash': '0x4cc37b343af8c287db431347026749bb1d07863c880deeff71909007d6a8a680', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8281.093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01c0eb4060638de08000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:06:04.000Z'}}, {'blockNum': '0x63731b', 'uniqueId': '0x71f9670d63785fdaf72749d1e7cc94e397c79cbbe39869f4429f768d9e531612:log:87', 'hash': '0x71f9670d63785fdaf72749d1e7cc94e397c79cbbe39869f4429f768d9e531612', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3479.28026684142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbc9cb698ace5263012', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:06:39.000Z'}}, {'blockNum': '0x63731b', 'uniqueId': '0x71f9670d63785fdaf72749d1e7cc94e397c79cbbe39869f4429f768d9e531612:log:90', 'hash': '0x71f9670d63785fdaf72749d1e7cc94e397c79cbbe39869f4429f768d9e531612', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 3479.28026684142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbc9cb698ace5263012', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:06:39.000Z'}}, {'blockNum': '0x637320', 'uniqueId': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b:log:45', 'hash': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5167.683524617287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01182403f21423f5e254', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:07:50.000Z'}}, {'blockNum': '0x637320', 'uniqueId': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b:log:49', 'hash': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5167.683524617287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01182403f21423f5e254', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:07:50.000Z'}}, {'blockNum': '0x637320', 'uniqueId': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b:log:50', 'hash': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5167.214975892764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01181d83537f06df52e7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:07:50.000Z'}}, {'blockNum': '0x637320', 'uniqueId': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b:log:51', 'hash': '0xbeb3bc918243040243d7318029ad0a257f29f13809e2ef5459d912d44f2b576b', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5167.214975892764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01181d83537f06df52e7', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:07:50.000Z'}}, {'blockNum': '0x637326', 'uniqueId': '0xea98c8cd899e94100b3dad0e84787e47c8e7b4db892afa194c81946f94896bec:log:7', 'hash': '0xea98c8cd899e94100b3dad0e84787e47c8e7b4db892afa194c81946f94896bec', 'from': '0x453227d4be3d8ab37f38e71a266acf7a71d76173', 'to': '0x076fb9ca37a4367aa1682f937ccbcc44164e3012', 'value': 1461.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4f3a630aa421660000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:24.000Z'}}, {'blockNum': '0x637329', 'uniqueId': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e:log:38', 'hash': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2575.367626381855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b9c67cb4fd3692307', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:39.000Z'}}, {'blockNum': '0x637329', 'uniqueId': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e:log:42', 'hash': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2575.367626381855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b9c67cb4fd3692307', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:39.000Z'}}, {'blockNum': '0x637329', 'uniqueId': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e:log:43', 'hash': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2575.113035354304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b98df4e1f033674de', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:39.000Z'}}, {'blockNum': '0x637329', 'uniqueId': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e:log:44', 'hash': '0x5cb2cb340728906a5957920c887c5e4e444d81eab56b5f5d503beaf651653c4e', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2575.113035354304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8b98df4e1f033674de', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:09:39.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494:log:50', 'hash': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2576.28832770982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ba92ec84aa0f59ce6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494:log:54', 'hash': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'value': 2576.28832770982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ba92ec84aa0f59ce6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494:log:56', 'hash': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494', 'from': '0x64c0372ebc1f812398bf3e475117fd48d5efb035', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2576.28832770982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ba92ec84aa0f59ce6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494:log:57', 'hash': '0x6514b19b705eda6265cc37bc877bc8ce7a46cf9adea3d00588e4ba03132d8494', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2576.28832770982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8ba92ec84aa0f59ce6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f:log:73', 'hash': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2549.664690985111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8a37b49fbf9ba95e38', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f:log:77', 'hash': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2549.664690985111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8a37b49fbf9ba95e38', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f:log:78', 'hash': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 2557.24049680554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8aa0d74b00f9a1c688', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x63732e', 'uniqueId': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f:log:79', 'hash': '0x7895bad46964a6acb52340272c4e859c7e0baa1fe25663e34656eb29b47b298f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 2557.24049680554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8aa0d74b00f9a1c688', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:11:13.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0xf336535aec178d5b3a1bcac4322ef82af417745343d2a0b1ee7b7fb544799bfb:log:46', 'hash': '0xf336535aec178d5b3a1bcac4322ef82af417745343d2a0b1ee7b7fb544799bfb', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0xf336535aec178d5b3a1bcac4322ef82af417745343d2a0b1ee7b7fb544799bfb:log:50', 'hash': '0xf336535aec178d5b3a1bcac4322ef82af417745343d2a0b1ee7b7fb544799bfb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03:log:51', 'hash': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03:log:53', 'hash': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637333', 'uniqueId': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03:log:54', 'hash': '0x162003c4836e912dcc17c2946da4d4a462c8649a5554293827197d2a19a0eb03', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5096.703910957371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01144af9b38566353206', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:25.000Z'}}, {'blockNum': '0x637336', 'uniqueId': '0x208f1150c0230b0db2bde72639f18587015510b6184b8468bcec5ab66840954c:log:7', 'hash': '0x208f1150c0230b0db2bde72639f18587015510b6184b8468bcec5ab66840954c', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'value': 34457.36667718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x074bf005edf137e85800', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:54.000Z'}}, {'blockNum': '0x637336', 'uniqueId': '0x208f1150c0230b0db2bde72639f18587015510b6184b8468bcec5ab66840954c:log:8', 'hash': '0x208f1150c0230b0db2bde72639f18587015510b6184b8468bcec5ab66840954c', 'from': '0x7203841a3d0f4e9ce2ed0a043c3b03a7ec972767', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 34457.36667718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x074bf005edf137e85800', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:12:54.000Z'}}, {'blockNum': '0x63733b', 'uniqueId': '0xecaf1e5f28514201f88b1a483b3a74452765d275a3bab68dedd1cb6c1f03cb0c:log:12', 'hash': '0xecaf1e5f28514201f88b1a483b3a74452765d275a3bab68dedd1cb6c1f03cb0c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe54c8a37fecb88dc9341199635d449577677ee28', 'value': 8262.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01bfe3abaf84a2e20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:14:20.000Z'}}, {'blockNum': '0x63733d', 'uniqueId': '0xfef3699936b1328c9df2e773084a6c4f3c455ab6c56dcdd9a040ba8350d27e5a:log:1', 'hash': '0xfef3699936b1328c9df2e773084a6c4f3c455ab6c56dcdd9a040ba8350d27e5a', 'from': '0x276738b6bf9dba63e4786dc7b05b3e6bd2accc89', 'to': '0x753bc96b3731ed245b0b421664ed8b08fa62f61f', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:14:45.000Z'}}, {'blockNum': '0x637340', 'uniqueId': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d:log:4', 'hash': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6357.687558856857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158a6a38e4ed758a096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:15:23.000Z'}}, {'blockNum': '0x637340', 'uniqueId': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d:log:6', 'hash': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6357.687558856857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158a6a38e4ed758a096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:15:23.000Z'}}, {'blockNum': '0x637340', 'uniqueId': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d:log:8', 'hash': '0x9bbf2ab3109abcbe3f9f73e949f75c9c96f3fafdb6a0958c12de6c026dbe940d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 6357.687558856857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0158a6a38e4ed758a096', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:15:23.000Z'}}, {'blockNum': '0x63734f', 'uniqueId': '0xab03c02d68f7b18de1d66ac85414e8ffbeb83fb105b550a96b9bdd8d1581199b:log:42', 'hash': '0xab03c02d68f7b18de1d66ac85414e8ffbeb83fb105b550a96b9bdd8d1581199b', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 74.99991591164053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0410d53a27b18047cf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:02.000Z'}}, {'blockNum': '0x63734f', 'uniqueId': '0xab03c02d68f7b18de1d66ac85414e8ffbeb83fb105b550a96b9bdd8d1581199b:log:46', 'hash': '0xab03c02d68f7b18de1d66ac85414e8ffbeb83fb105b550a96b9bdd8d1581199b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x23fc6a1fda27e1d6d6018c868ba4dfe265d1bdb6', 'value': 74.99991591164053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0410d53a27b18047cf', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:02.000Z'}}, {'blockNum': '0x637352', 'uniqueId': '0xd5ffe44b8b865048d012f962b936c881da6394932a3cbb515c61a5a2cbfe0a9f:log:45', 'hash': '0xd5ffe44b8b865048d012f962b936c881da6394932a3cbb515c61a5a2cbfe0a9f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5075.783451528406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011328a54c8304c1d47c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:44.000Z'}}, {'blockNum': '0x637352', 'uniqueId': '0xd5ffe44b8b865048d012f962b936c881da6394932a3cbb515c61a5a2cbfe0a9f:log:47', 'hash': '0xd5ffe44b8b865048d012f962b936c881da6394932a3cbb515c61a5a2cbfe0a9f', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5075.783451528406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011328a54c8304c1d47c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:44.000Z'}}, {'blockNum': '0x637352', 'uniqueId': '0xddfb818cfe295978a332f67685270f7ef7a9a584a4ad1cc7c85fcceb163c15ce:log:52', 'hash': '0xddfb818cfe295978a332f67685270f7ef7a9a584a4ad1cc7c85fcceb163c15ce', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5075.778375744953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01132893441d172c07a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:44.000Z'}}, {'blockNum': '0x637352', 'uniqueId': '0xddfb818cfe295978a332f67685270f7ef7a9a584a4ad1cc7c85fcceb163c15ce:log:54', 'hash': '0xddfb818cfe295978a332f67685270f7ef7a9a584a4ad1cc7c85fcceb163c15ce', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5075.778375744953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01132893441d172c07a6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:44.000Z'}}, {'blockNum': '0x637354', 'uniqueId': '0x812a677d433bbd217e5fe1b9bff80b5c7d3d32e6120017ca2ffcc2654f93388f:log:2', 'hash': '0x812a677d433bbd217e5fe1b9bff80b5c7d3d32e6120017ca2ffcc2654f93388f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 28385.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0602c2650b4b746e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:18:56.000Z'}}, {'blockNum': '0x637365', 'uniqueId': '0x8ba338c6418c9809328ac550e4a035f5b5557f9430c99cb55e2a7e2e126b5811:log:14', 'hash': '0x8ba338c6418c9809328ac550e4a035f5b5557f9430c99cb55e2a7e2e126b5811', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5253.026798801514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011cc46429c7fb926000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:22:42.000Z'}}, {'blockNum': '0x637365', 'uniqueId': '0x8ba338c6418c9809328ac550e4a035f5b5557f9430c99cb55e2a7e2e126b5811:log:16', 'hash': '0x8ba338c6418c9809328ac550e4a035f5b5557f9430c99cb55e2a7e2e126b5811', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5253.026798801514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011cc46429c7fb926000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:22:42.000Z'}}, {'blockNum': '0x637368', 'uniqueId': '0x8c721791569dcdb618587ae89e90e567428dc1961fb886142d9d8b7eced38fad:log:19', 'hash': '0x8c721791569dcdb618587ae89e90e567428dc1961fb886142d9d8b7eced38fad', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5253.0215457747145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011cc451802e5f3bcd96', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:22:59.000Z'}}, {'blockNum': '0x637368', 'uniqueId': '0x8c721791569dcdb618587ae89e90e567428dc1961fb886142d9d8b7eced38fad:log:21', 'hash': '0x8c721791569dcdb618587ae89e90e567428dc1961fb886142d9d8b7eced38fad', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5253.0215457747145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011cc451802e5f3bcd96', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:22:59.000Z'}}, {'blockNum': '0x63736b', 'uniqueId': '0x996b93d000c36b59b3d147ef132eb9cb0dff46547b753655b60073bc43d1fa54:log:8', 'hash': '0x996b93d000c36b59b3d147ef132eb9cb0dff46547b753655b60073bc43d1fa54', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3530.023519237557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbf5cead7e160e69449', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:23:30.000Z'}}, {'blockNum': '0x63736b', 'uniqueId': '0x996b93d000c36b59b3d147ef132eb9cb0dff46547b753655b60073bc43d1fa54:log:10', 'hash': '0x996b93d000c36b59b3d147ef132eb9cb0dff46547b753655b60073bc43d1fa54', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3530.023519237557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xbf5cead7e160e69449', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:23:30.000Z'}}, {'blockNum': '0x637379', 'uniqueId': '0xf7eef65a0aeee14908c66d5e624b6f2d1f93415d6e79f7d3016a9b2ddcf9fb17:log:6', 'hash': '0xf7eef65a0aeee14908c66d5e624b6f2d1f93415d6e79f7d3016a9b2ddcf9fb17', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7b0a1a62cc906d947212b9b94eb1a79c632a08a1', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:26:13.000Z'}}, {'blockNum': '0x637379', 'uniqueId': '0xf73f73638b6eccf9d748aa0897b0fb5829946a674a63a98d03ddbb892bfdc304:log:14', 'hash': '0xf73f73638b6eccf9d748aa0897b0fb5829946a674a63a98d03ddbb892bfdc304', 'from': '0x076fb9ca37a4367aa1682f937ccbcc44164e3012', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1461.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4f3a630aa421660000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:26:13.000Z'}}, {'blockNum': '0x637379', 'uniqueId': '0x261939209085a378ba3defac3679a032c73fef5526e49349a4ceda604cffdebc:log:15', 'hash': '0x261939209085a378ba3defac3679a032c73fef5526e49349a4ceda604cffdebc', 'from': '0xa26c6e03b3f1f64806f64494c641dd720c369217', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x141df5d77c6d9d600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:26:13.000Z'}}, {'blockNum': '0x637384', 'uniqueId': '0x36f0f50594e31c1cd6063c5503e87cf4c49deacda15ba23cc3ea8959f41d95a7:log:11', 'hash': '0x36f0f50594e31c1cd6063c5503e87cf4c49deacda15ba23cc3ea8959f41d95a7', 'from': '0xe54c8a37fecb88dc9341199635d449577677ee28', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 8262.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01bfe3abaf84a2e20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:29:27.000Z'}}, {'blockNum': '0x637398', 'uniqueId': '0xe25392d3c398ad0a7f0b433cae32ae9bdda3f842427cff1d3d2dbb977cf0bc15:log:8', 'hash': '0xe25392d3c398ad0a7f0b433cae32ae9bdda3f842427cff1d3d2dbb977cf0bc15', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x34faec67d181f7be107b156bf66a2a6b28113b05', 'value': 8237.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01be88b9d7f94a1e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:34:52.000Z'}}, {'blockNum': '0x6373ad', 'uniqueId': '0x48840c4dfa4266ea4a161259f0ddb4a090cb6d9420e66961af996f1babd9f8c3:log:13', 'hash': '0x48840c4dfa4266ea4a161259f0ddb4a090cb6d9420e66961af996f1babd9f8c3', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x0d20c9299dc1f75057833f9d4616232c6e864cc1', 'value': 1210.2051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x419af836823216c000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:39:24.000Z'}}, {'blockNum': '0x637401', 'uniqueId': '0xb4e5c17de9430e627cd70540f560a71d8c0b32685357bd60a9dfb778e1d82bb3:log:74', 'hash': '0xb4e5c17de9430e627cd70540f560a71d8c0b32685357bd60a9dfb778e1d82bb3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 5273.103461410477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ddb02cc0da63ddd8f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:58:01.000Z'}}, {'blockNum': '0x637401', 'uniqueId': '0xb4e5c17de9430e627cd70540f560a71d8c0b32685357bd60a9dfb778e1d82bb3:log:76', 'hash': '0xb4e5c17de9430e627cd70540f560a71d8c0b32685357bd60a9dfb778e1d82bb3', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5273.103461410477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ddb02cc0da63ddd8f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:58:01.000Z'}}, {'blockNum': '0x637401', 'uniqueId': '0x6cb36d13818bb0e733578f520538e9009ead7d6165c6ec5dcb0db9e39f60bdbb:log:81', 'hash': '0x6cb36d13818bb0e733578f520538e9009ead7d6165c6ec5dcb0db9e39f60bdbb', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5273.098188307016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ddaf01031938f76e1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:58:01.000Z'}}, {'blockNum': '0x637401', 'uniqueId': '0x6cb36d13818bb0e733578f520538e9009ead7d6165c6ec5dcb0db9e39f60bdbb:log:83', 'hash': '0x6cb36d13818bb0e733578f520538e9009ead7d6165c6ec5dcb0db9e39f60bdbb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5273.098188307016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x011ddaf01031938f76e1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-15T04:58:01.000Z'}}]}}
Number of returned transfers:  862
Answer is complete
 
symbol             CND
group              CCB
date        2018-10-20
hour             16:00
exchange       binance
Name: 366, dtype: object
HERE
 Symbol: CND, Contract: 0xec505c81d6a7567b5bde804870b1038832fe6da1
Datetime timestamps:  2018-10-20 16:00:00 2018-10-20 04:00:00 2018-10-21 04:00:00
Unix timestamps:  1540000800.0 1540087200.0
Hex Block Numbers:  0x63e874 0x64006a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             AST
group              CCB
date        2019-03-02
hour             14:00
exchange       binance
Name: 367, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
 Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps:  2019-03-02 14:00:00 2019-03-02 02:00:00 2019-03-03 02:00:00
Unix timestamps:  1551488400.0 1551574800.0
Hex Block Numbers:  0x6f3160 0x6f4a36
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6f3276', 'uniqueId': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8:log:4', 'hash': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xda64447d0db123635337da4c1400985bd5108537', 'value': 392.435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3be17e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:10:37.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:15', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:17', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb3b08089acd17805a3a538211f12694717deeef5', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a9', 'uniqueId': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd:log:3', 'hash': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:05.000Z'}}, {'blockNum': '0x6f32af', 'uniqueId': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86:log:34', 'hash': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:20:34.000Z'}}, {'blockNum': '0x6f32b2', 'uniqueId': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4:log:19', 'hash': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:21:18.000Z'}}, {'blockNum': '0x6f32b7', 'uniqueId': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e:log:26', 'hash': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:22:12.000Z'}}, {'blockNum': '0x6f32bf', 'uniqueId': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458:log:77', 'hash': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:24:06.000Z'}}, {'blockNum': '0x6f330b', 'uniqueId': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd:log:63', 'hash': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:27.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1:log:14', 'hash': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22:log:52', 'hash': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22', 'from': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f3314', 'uniqueId': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd:log:41', 'hash': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd', 'from': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:43:48.000Z'}}, {'blockNum': '0x6f3349', 'uniqueId': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a:log:10', 'hash': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:55:22.000Z'}}, {'blockNum': '0x6f33a4', 'uniqueId': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca:log:52', 'hash': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T03:14:51.000Z'}}, {'blockNum': '0x6f350c', 'uniqueId': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8:log:111', 'hash': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'value': 4892.142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02ea7b4c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:34:43.000Z'}}, {'blockNum': '0x6f3549', 'uniqueId': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba:log:51', 'hash': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba', 'from': '0x453e025f8e7518e66331044402a0ea1b97d6eaab', 'to': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:49:19.000Z'}}, {'blockNum': '0x6f35b9', 'uniqueId': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3:log:13', 'hash': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3', 'from': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:15:14.000Z'}}, {'blockNum': '0x6f3669', 'uniqueId': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61:log:53', 'hash': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:52:29.000Z'}}, {'blockNum': '0x6f36bc', 'uniqueId': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0:log:13', 'hash': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T06:10:27.000Z'}}, {'blockNum': '0x6f3974', 'uniqueId': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82:log:10', 'hash': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T08:45:58.000Z'}}, {'blockNum': '0x6f39fa', 'uniqueId': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11:log:35', 'hash': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:15:09.000Z'}}, {'blockNum': '0x6f3a17', 'uniqueId': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9:log:66', 'hash': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9', 'from': '0xb91e80a4d98023c4c431a12e376b3b0e4dc9de70', 'to': '0xac4682db6eb5083e64f9a05859da6eff0fd8ed91', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:21:57.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485:log:16', 'hash': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97:log:17', 'hash': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b10', 'uniqueId': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3:log:19', 'hash': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:16:04.000Z'}}, {'blockNum': '0x6f3b34', 'uniqueId': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956:log:83', 'hash': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:23:55.000Z'}}, {'blockNum': '0x6f3c12', 'uniqueId': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d:log:3', 'hash': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff9b53a7586d4d82d62cd7eb0b0acaa16d9215c3', 'value': 350.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x358338', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T11:16:13.000Z'}}, {'blockNum': '0x6f3d56', 'uniqueId': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a:log:51', 'hash': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:27:57.000Z'}}, {'blockNum': '0x6f3d5e', 'uniqueId': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4:log:33', 'hash': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4', 'from': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'to': '0x4b327ee88d48acc116643f80a4674a5c5b3b53f7', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:29:45.000Z'}}, {'blockNum': '0x6f3d86', 'uniqueId': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf:log:6', 'hash': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:38:08.000Z'}}, {'blockNum': '0x6f3d8e', 'uniqueId': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf:log:77', 'hash': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:39:54.000Z'}}, {'blockNum': '0x6f3e29', 'uniqueId': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64:log:5', 'hash': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:11:46.000Z'}}, {'blockNum': '0x6f3e2e', 'uniqueId': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74:log:12', 'hash': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:13:14.000Z'}}, {'blockNum': '0x6f3e43', 'uniqueId': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375:log:112', 'hash': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 6211.8675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3db13', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:17:23.000Z'}}, {'blockNum': '0x6f3e45', 'uniqueId': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e:log:41', 'hash': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:18:40.000Z'}}, {'blockNum': '0x6f3e63', 'uniqueId': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581:log:54', 'hash': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581', 'from': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:24:16.000Z'}}, {'blockNum': '0x6f3e75', 'uniqueId': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664:log:51', 'hash': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:14.000Z'}}, {'blockNum': '0x6f3e7a', 'uniqueId': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a:log:58', 'hash': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:52.000Z'}}, {'blockNum': '0x6f3e7d', 'uniqueId': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873:log:3', 'hash': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:46.000Z'}}, {'blockNum': '0x6f3e7e', 'uniqueId': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749:log:92', 'hash': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749', 'from': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:50.000Z'}}, {'blockNum': '0x6f3e81', 'uniqueId': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579:log:44', 'hash': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:31:15.000Z'}}, {'blockNum': '0x6f3e91', 'uniqueId': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75:log:57', 'hash': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75', 'from': '0xda42850bdd7353478edd2c05fa67d7a6c9175d56', 'to': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:35:33.000Z'}}, {'blockNum': '0x6f3ea1', 'uniqueId': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7:log:2', 'hash': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7', 'from': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'to': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:10.000Z'}}, {'blockNum': '0x6f3ea5', 'uniqueId': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba:log:47', 'hash': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba', 'from': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:26.000Z'}}, {'blockNum': '0x6f3ebf', 'uniqueId': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4:log:37', 'hash': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:43:48.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:11', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:12', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ecd', 'uniqueId': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de:log:90', 'hash': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de', 'from': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:46:24.000Z'}}, {'blockNum': '0x6f3eed', 'uniqueId': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1:log:74', 'hash': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1', 'from': '0xfc644ea1a3fe5e7854be5431078803d1cbee6bee', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:30.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1:log:23', 'hash': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0:log:38', 'hash': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0', 'from': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e:log:39', 'hash': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2157.2298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01492aca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3f0a', 'uniqueId': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8:log:45', 'hash': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:01:53.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:11', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:13', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0c', 'uniqueId': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea:log:32', 'hash': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:45.000Z'}}, {'blockNum': '0x6f3f11', 'uniqueId': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a:log:216', 'hash': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:03:22.000Z'}}, {'blockNum': '0x6f3f13', 'uniqueId': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3:log:5', 'hash': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3', 'from': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'to': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:32.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:47', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:49', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:54', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:55', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:217', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:218', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f1a', 'uniqueId': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf:log:73', 'hash': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:05:40.000Z'}}, {'blockNum': '0x6f3f1b', 'uniqueId': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0:log:9', 'hash': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0', 'from': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:06:21.000Z'}}, {'blockNum': '0x6f3f27', 'uniqueId': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99:log:9', 'hash': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd73325ba5dc21ec50e7607906a47114669ed2d68', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:09:10.000Z'}}, {'blockNum': '0x6f3f31', 'uniqueId': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d:log:16', 'hash': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:11:20.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:24', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:25', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b:log:13', 'hash': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8:log:47', 'hash': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51:log:50', 'hash': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51', 'from': '0xf5177ebddc0b0d68959d7f8d0c6c55d3fdb6a871', 'to': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:123', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:124', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f5f', 'uniqueId': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351:log:52', 'hash': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351', 'from': '0x0378ed3c26c6d33d056ff54f6c34d918160dc296', 'to': '0x0f43e914e155acbaf69cc32052eaf53e98f6302f', 'value': 213.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2090e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:23:31.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77:log:3', 'hash': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70:log:16', 'hash': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f72', 'uniqueId': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc:log:31', 'hash': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:28:27.000Z'}}, {'blockNum': '0x6f3f7b', 'uniqueId': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9:log:81', 'hash': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:29:45.000Z'}}, {'blockNum': '0x6f3f81', 'uniqueId': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b:log:81', 'hash': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:30:44.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:55', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x6cac5eeb01d56e889afac1f8d7f6666b344225e3', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:56', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592:log:6', 'hash': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc:log:15', 'hash': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483:log:16', 'hash': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483', 'from': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3fa0', 'uniqueId': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c:log:8', 'hash': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:39:13.000Z'}}, {'blockNum': '0x6f3fac', 'uniqueId': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27:log:40', 'hash': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27', 'from': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:42:18.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f:log:11', 'hash': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939:log:12', 'hash': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7dd14ea7767e0990a0bbed5f5bd4aa4bb55ed1b5', 'value': 4322.1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02938097', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb5', 'uniqueId': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5:log:36', 'hash': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23c34600', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:28.000Z'}}, {'blockNum': '0x6f3fb6', 'uniqueId': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac:log:41', 'hash': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:39.000Z'}}, {'blockNum': '0x6f3fbc', 'uniqueId': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617:log:57', 'hash': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617', 'from': '0xad12513975e2713a5f95871992624fc0fed9ffdb', 'to': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:47:56.000Z'}}, {'blockNum': '0x6f3fd3', 'uniqueId': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6:log:45', 'hash': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:53:11.000Z'}}, {'blockNum': '0x6f3fff', 'uniqueId': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34:log:13', 'hash': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:05:03.000Z'}}, {'blockNum': '0x6f4016', 'uniqueId': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f:log:10', 'hash': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:11:40.000Z'}}, {'blockNum': '0x6f4028', 'uniqueId': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1:log:4', 'hash': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1', 'from': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:15:03.000Z'}}, {'blockNum': '0x6f4039', 'uniqueId': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d:log:33', 'hash': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:18:47.000Z'}}, {'blockNum': '0x6f403f', 'uniqueId': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f:log:26', 'hash': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f', 'from': '0x79ef17f3a5ddf966c914b3de0dfc629faa820bfb', 'to': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:20:22.000Z'}}, {'blockNum': '0x6f404d', 'uniqueId': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f:log:43', 'hash': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f', 'from': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'to': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:24:02.000Z'}}, {'blockNum': '0x6f4053', 'uniqueId': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851:log:82', 'hash': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851', 'from': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:25:27.000Z'}}, {'blockNum': '0x6f4070', 'uniqueId': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d:log:8', 'hash': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:31:27.000Z'}}, {'blockNum': '0x6f4088', 'uniqueId': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488:log:8', 'hash': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 2371.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169e488', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:35:41.000Z'}}, {'blockNum': '0x6f408c', 'uniqueId': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6:log:72', 'hash': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 2372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169f040', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:36:51.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825:log:41', 'hash': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825', 'from': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45:log:43', 'hash': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40bd', 'uniqueId': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115:log:28', 'hash': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:49:46.000Z'}}, {'blockNum': '0x6f40ca', 'uniqueId': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555:log:31', 'hash': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:52:57.000Z'}}, {'blockNum': '0x6f40cb', 'uniqueId': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4:log:2', 'hash': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:43.000Z'}}, {'blockNum': '0x6f40cc', 'uniqueId': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6:log:90', 'hash': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:57.000Z'}}, {'blockNum': '0x6f410f', 'uniqueId': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27:log:21', 'hash': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27', 'from': '0x287f05e0e7847148adfbd4be181632d5e362e60b', 'to': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:08:34.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8:log:21', 'hash': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23:log:25', 'hash': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368:log:35', 'hash': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f417c', 'uniqueId': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8:log:74', 'hash': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8', 'from': '0x0b946efae53975b97a0d1d02f75fabf55d0d6a96', 'to': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:33:02.000Z'}}, {'blockNum': '0x6f4180', 'uniqueId': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82:log:48', 'hash': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82', 'from': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:47.000Z'}}, {'blockNum': '0x6f4181', 'uniqueId': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c:log:52', 'hash': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c', 'from': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:58.000Z'}}, {'blockNum': '0x6f41a1', 'uniqueId': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050:log:1', 'hash': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 77.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0bdb28', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:42:22.000Z'}}, {'blockNum': '0x6f41b6', 'uniqueId': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed:log:94', 'hash': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 20865.564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0c6fd518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:49:56.000Z'}}, {'blockNum': '0x6f42f5', 'uniqueId': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69:log:7', 'hash': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x952f68', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:03:48.000Z'}}, {'blockNum': '0x6f4305', 'uniqueId': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188:log:0', 'hash': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 77726.872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2e542df0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:10:57.000Z'}}, {'blockNum': '0x6f4331', 'uniqueId': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123:log:4', 'hash': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123', 'from': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb71b00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:21:19.000Z'}}, {'blockNum': '0x6f4349', 'uniqueId': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08:log:3', 'hash': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:26:18.000Z'}}, {'blockNum': '0x6f4363', 'uniqueId': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a:log:79', 'hash': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 209770.7957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb5', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:31:27.000Z'}}, {'blockNum': '0x6f4365', 'uniqueId': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b:log:78', 'hash': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 209770.7958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:32:09.000Z'}}, {'blockNum': '0x6f436a', 'uniqueId': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f:log:73', 'hash': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x719fbeead55ae2729c0263f3f31edf3e7780c18a', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:33:57.000Z'}}, {'blockNum': '0x6f4384', 'uniqueId': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81:log:6', 'hash': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:27.000Z'}}, {'blockNum': '0x6f4388', 'uniqueId': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd:log:113', 'hash': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd', 'from': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:58.000Z'}}, {'blockNum': '0x6f4389', 'uniqueId': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4:log:11', 'hash': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:41:19.000Z'}}, {'blockNum': '0x6f438c', 'uniqueId': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471:log:37', 'hash': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471', 'from': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:42:01.000Z'}}, {'blockNum': '0x6f4392', 'uniqueId': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80:log:2', 'hash': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:43:40.000Z'}}, {'blockNum': '0x6f439a', 'uniqueId': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53:log:29', 'hash': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 211682.6873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7e2c36f9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:45:20.000Z'}}, {'blockNum': '0x6f43b9', 'uniqueId': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f:log:18', 'hash': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x09957a6b7bdff098d7749016a7e61a31f5b99bdc', 'value': 2256.419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01584d5e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:51:35.000Z'}}, {'blockNum': '0x6f43f5', 'uniqueId': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8:log:58', 'hash': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:06:24.000Z'}}, {'blockNum': '0x6f4415', 'uniqueId': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5:log:68', 'hash': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:12:08.000Z'}}, {'blockNum': '0x6f4422', 'uniqueId': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73:log:38', 'hash': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:14:37.000Z'}}, {'blockNum': '0x6f4424', 'uniqueId': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85:log:4', 'hash': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:15:03.000Z'}}, {'blockNum': '0x6f442c', 'uniqueId': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c:log:0', 'hash': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:34.000Z'}}, {'blockNum': '0x6f442f', 'uniqueId': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474:log:3', 'hash': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:52.000Z'}}, {'blockNum': '0x6f4440', 'uniqueId': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28:log:74', 'hash': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:20:24.000Z'}}, {'blockNum': '0x6f4450', 'uniqueId': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2:log:52', 'hash': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:23:56.000Z'}}, {'blockNum': '0x6f4456', 'uniqueId': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94:log:17', 'hash': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:26:32.000Z'}}, {'blockNum': '0x6f446f', 'uniqueId': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7:log:57', 'hash': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7', 'from': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:31:53.000Z'}}, {'blockNum': '0x6f44a2', 'uniqueId': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7:log:19', 'hash': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:45:15.000Z'}}, {'blockNum': '0x6f44e5', 'uniqueId': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d:log:33', 'hash': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:57:29.000Z'}}, {'blockNum': '0x6f44ea', 'uniqueId': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107:log:73', 'hash': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:58:29.000Z'}}, {'blockNum': '0x6f44f2', 'uniqueId': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9:log:33', 'hash': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9', 'from': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:06.000Z'}}, {'blockNum': '0x6f44f6', 'uniqueId': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347:log:73', 'hash': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347', 'from': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:45.000Z'}}, {'blockNum': '0x6f4549', 'uniqueId': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e:log:5', 'hash': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:19:36.000Z'}}, {'blockNum': '0x6f454c', 'uniqueId': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825:log:85', 'hash': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xcae9000485f5e732717ad7366577d2b04d479795', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:20:01.000Z'}}, {'blockNum': '0x6f4769', 'uniqueId': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065:log:96', 'hash': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065', 'from': '0xf78b4770ea558a445f160ac4be425c4e6de0ccd7', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 3500.0417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02161061', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:18:28.000Z'}}, {'blockNum': '0x6f47a4', 'uniqueId': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6:log:3', 'hash': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:30:23.000Z'}}, {'blockNum': '0x6f47ae', 'uniqueId': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d:log:43', 'hash': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:32:39.000Z'}}, {'blockNum': '0x6f481c', 'uniqueId': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083:log:0', 'hash': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083', 'from': '0x60426cbccd32998755338c2ef77c589848138b4c', 'to': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:00:01.000Z'}}, {'blockNum': '0x6f48ca', 'uniqueId': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6:log:53', 'hash': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6', 'from': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:34:56.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:121', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:122', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:92', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:93', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f4947', 'uniqueId': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75:log:55', 'hash': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:59:49.000Z'}}, {'blockNum': '0x6f4948', 'uniqueId': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1:log:68', 'hash': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1132818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a3364f20', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:00:49.000Z'}}, {'blockNum': '0x6f498b', 'uniqueId': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849:log:6', 'hash': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:17:57.000Z'}}, {'blockNum': '0x6f4a07', 'uniqueId': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05:log:3', 'hash': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:46:36.000Z'}}, {'blockNum': '0x6f4a0b', 'uniqueId': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322:log:65', 'hash': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:48:22.000Z'}}, {'blockNum': '0x6f4a28', 'uniqueId': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484:log:54', 'hash': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:56:30.000Z'}}, {'blockNum': '0x6f4a2d', 'uniqueId': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c:log:31', 'hash': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:57:54.000Z'}}]}}
Number of returned transfers:  166
Answer is complete
 
symbol             POA
group              CCB
date        2019-05-10
hour             12:00
exchange       binance
Name: 368, dtype: object
HERE
 Symbol: POA, Contract: 
Datetime timestamps:  2019-05-10 12:00:00 2019-05-10 00:00:00 2019-05-11 00:00:00
Unix timestamps:  1557439200.0 1557525600.0
Hex Block Numbers:  0x75ef0e 0x76082b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             WPR
group              CCB
date        2019-05-15
hour             15:00
exchange       binance
Name: 369, dtype: object
HERE
 Symbol: WPR, Contract: 0x4cf488387f035ff08c371515562cba712f9015d4
Datetime timestamps:  2019-05-15 15:00:00 2019-05-15 03:00:00 2019-05-16 03:00:00
Unix timestamps:  1557882000.0 1557968400.0
Hex Block Numbers:  0x766fb5 0x7688ea
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x767176', 'uniqueId': '0x87818f00250d297e12ce8f3fd42a4099e197443326f7fa48e73a44f7e51cec1a:log:75', 'hash': '0x87818f00250d297e12ce8f3fd42a4099e197443326f7fa48e73a44f7e51cec1a', 'from': '0x4dc3bfb37494d48fd3c3bf7ec9a40a0a80179c9a', 'to': '0x339b145c66b9e9540abb6d2415ec9007204d8363', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T02:42:17.000Z'}}, {'blockNum': '0x767362', 'uniqueId': '0x233135b674f4aa36acd6eaa2c258c65585f78d968087998c1ae36721aa42f3c3:log:14', 'hash': '0x233135b674f4aa36acd6eaa2c258c65585f78d968087998c1ae36721aa42f3c3', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6cee575c9acabc195b7f03396a462aa78b5814c3', 'value': 21869.14402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04a187571a7fc6214000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:25:49.000Z'}}, {'blockNum': '0x767366', 'uniqueId': '0x8ed9ade6cc42a60b874d91068869087c96173b30f8c14114592942bd8bd77dfa:log:4', 'hash': '0x8ed9ade6cc42a60b874d91068869087c96173b30f8c14114592942bd8bd77dfa', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 21946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04a5b1ee651bd2a80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:26:43.000Z'}}, {'blockNum': '0x767368', 'uniqueId': '0xb5c5c17740fa1cbd9a088ac11eeb3ca7c735b1d61b418cc55b800b56c6b62b27:log:17', 'hash': '0xb5c5c17740fa1cbd9a088ac11eeb3ca7c735b1d61b418cc55b800b56c6b62b27', 'from': '0x6cee575c9acabc195b7f03396a462aa78b5814c3', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 21869.14402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04a187571a7fc6214000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:27:06.000Z'}}, {'blockNum': '0x767373', 'uniqueId': '0xe367b232573b11774ff154c76d802bada733225c4e2ea121d566f4d36f04a3b0:log:25', 'hash': '0xe367b232573b11774ff154c76d802bada733225c4e2ea121d566f4d36f04a3b0', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 21946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04a5b1ee651bd2a80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:29:27.000Z'}}, {'blockNum': '0x7673d6', 'uniqueId': '0xed41302a52f29251af83a30d20b542aabf39d624618d8951178bcc0c7f9e06e8:log:24', 'hash': '0xed41302a52f29251af83a30d20b542aabf39d624618d8951178bcc0c7f9e06e8', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 12645.614216710217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02ad85269ac329ff9fac', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T04:54:26.000Z'}}, {'blockNum': '0x7674ef', 'uniqueId': '0x0b4f8bd7ffe972e63ada46fe3201fd2f5958099ffac80c1b57bbb9eb2b822ea5:log:16', 'hash': '0x0b4f8bd7ffe972e63ada46fe3201fd2f5958099ffac80c1b57bbb9eb2b822ea5', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 12645.614216710217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02ad85269ac329ff9fac', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T05:51:38.000Z'}}, {'blockNum': '0x767605', 'uniqueId': '0xa7acb7fbf843056e530fac7d59d7be946305d0799d1c9dc2e254958f236e9ebc:log:74', 'hash': '0xa7acb7fbf843056e530fac7d59d7be946305d0799d1c9dc2e254958f236e9ebc', 'from': '0x0a9177455c8d6f6fedec033b2b77c34d8f8c6007', 'to': '0xff104944c1b1da327e8e3a1986fc2490aa3ec18c', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T06:56:55.000Z'}}, {'blockNum': '0x7677d1', 'uniqueId': '0x7e4764646230aa3ed1c15b03480d740af811347ae0c9e5bbc989317f53d9c9a7:log:28', 'hash': '0x7e4764646230aa3ed1c15b03480d740af811347ae0c9e5bbc989317f53d9c9a7', 'from': '0xff104944c1b1da327e8e3a1986fc2490aa3ec18c', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T08:43:58.000Z'}}, {'blockNum': '0x767c65', 'uniqueId': '0xc3e951244dbd53751ae07c7a96dd6454230748404c8aae64e717be83718d9978:log:21', 'hash': '0xc3e951244dbd53751ae07c7a96dd6454230748404c8aae64e717be83718d9978', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a9bc620cd884eb465c0421af3b4b4a4c4993fcd', 'value': 10442.09034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0236111d2faa0dea4000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:06:28.000Z'}}, {'blockNum': '0x767c97', 'uniqueId': '0x51aeaedeab7c32967e4681e6a2324e34444157c21ee206f7d7066d215bed1b8b:log:11', 'hash': '0x51aeaedeab7c32967e4681e6a2324e34444157c21ee206f7d7066d215bed1b8b', 'from': '0x12ed00fab638248653675742eae994e2e252bd98', 'to': '0x3efa5bc8550bbbb346eeb10c879dd9c200fc0205', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:17:02.000Z'}}, {'blockNum': '0x767cd8', 'uniqueId': '0xa234c9c4184ea7f7872bb393fa07fe9c132ea08ff12aefc690ab66bbf84c123e:log:44', 'hash': '0xa234c9c4184ea7f7872bb393fa07fe9c132ea08ff12aefc690ab66bbf84c123e', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x7c8d39329005c6e36f890fd74d8ab633eab57997', 'value': 165622.54996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x23126a9ac2bdfac48000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:34:27.000Z'}}, {'blockNum': '0x767cec', 'uniqueId': '0x8eefb06aeaa7457ea7b27fd47aa089dca7426c4be94c525edcdde6ad435135de:log:40', 'hash': '0x8eefb06aeaa7457ea7b27fd47aa089dca7426c4be94c525edcdde6ad435135de', 'from': '0x3efa5bc8550bbbb346eeb10c879dd9c200fc0205', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:39:10.000Z'}}, {'blockNum': '0x767d16', 'uniqueId': '0xc04daa7e85e4524c8993f70a1939f71e1c6e133fdd0802b98f3e47ebe4fb2aac:log:103', 'hash': '0xc04daa7e85e4524c8993f70a1939f71e1c6e133fdd0802b98f3e47ebe4fb2aac', 'from': '0x7c8d39329005c6e36f890fd74d8ab633eab57997', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 165622.54996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x23126a9ac2bdfac48000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T13:49:07.000Z'}}, {'blockNum': '0x767d54', 'uniqueId': '0x2d6146e0c9c1be72d25759565ac7779fe26abfa85af3a54967ce598e61b22bdf:log:40', 'hash': '0x2d6146e0c9c1be72d25759565ac7779fe26abfa85af3a54967ce598e61b22bdf', 'from': '0xb87b3fcdb1ed4ae143ff93b37972e5415ea338ab', 'to': '0xc724e10892d5e9c2bdf4690a436b059f8990d132', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T14:02:00.000Z'}}, {'blockNum': '0x767d91', 'uniqueId': '0x928e3537dbf69b9ee597542461b105f795415807f2f893aded9d86c5661a1278:log:10', 'hash': '0x928e3537dbf69b9ee597542461b105f795415807f2f893aded9d86c5661a1278', 'from': '0xa6c4477b6a4feda0fc25aab16d45df6fb2b9cf09', 'to': '0xd6f44acb79de8f8d2e619645b9995dd4f95ea3e7', 'value': 10144.79436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0225f34db0fef2478000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T14:16:34.000Z'}}, {'blockNum': '0x767e22', 'uniqueId': '0x3d154cca30369ef7673deead267bd519198297558e8298464f03a41d1e31be6e:log:1', 'hash': '0x3d154cca30369ef7673deead267bd519198297558e8298464f03a41d1e31be6e', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xe7d7bfc91531932eb57457b9e727d969931a4633', 'value': 30980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x068f6dddc4ece1900000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T14:52:44.000Z'}}, {'blockNum': '0x767e4a', 'uniqueId': '0xe13a8258d8912d198dec1dc46a3eb7787ffb41586b749cac22b34c9548b506c5:log:32', 'hash': '0xe13a8258d8912d198dec1dc46a3eb7787ffb41586b749cac22b34c9548b506c5', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 3743.9995214565083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xcaf66e50347fae7c34', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:01:24.000Z'}}, {'blockNum': '0x767e50', 'uniqueId': '0x5feaefba435bb750b1fc042288cd06f8d9e89455e0bf67c4f2749db0221e4e22:log:45', 'hash': '0x5feaefba435bb750b1fc042288cd06f8d9e89455e0bf67c4f2749db0221e4e22', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 3743.9995214565083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xcaf66e50347fae7c34', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:03:04.000Z'}}, {'blockNum': '0x767e5c', 'uniqueId': '0x4ca08a0705719c87646271f5cbd464413545d33b5716feda8934dce19168ddaa:log:29', 'hash': '0x4ca08a0705719c87646271f5cbd464413545d33b5716feda8934dce19168ddaa', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 124674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1a66975130d68ac80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:05:08.000Z'}}, {'blockNum': '0x767e72', 'uniqueId': '0x480eace50e937595e43a77357b7d91aaf6259fbeaf44fc41b88a156ef0c84ff4:log:44', 'hash': '0x480eace50e937595e43a77357b7d91aaf6259fbeaf44fc41b88a156ef0c84ff4', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x06e35f513834399f6a0b7f8b2f2383c17596a3b3', 'value': 8236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01be7975dbcd45300000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:08:44.000Z'}}, {'blockNum': '0x767e74', 'uniqueId': '0x042bb97be4e2c72c29150d08415b0b64c4fd14a99b729f9e8a357ae6cafded19:log:81', 'hash': '0x042bb97be4e2c72c29150d08415b0b64c4fd14a99b729f9e8a357ae6cafded19', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 124674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1a66975130d68ac80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:09:34.000Z'}}, {'blockNum': '0x767e76', 'uniqueId': '0xadcc8af624775910642c1cc32655f5d5fffb5637d7b3e7a53b7852af2437aff4:log:110', 'hash': '0xadcc8af624775910642c1cc32655f5d5fffb5637d7b3e7a53b7852af2437aff4', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3743.9995214565083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xcaf66e50347fae7c34', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:09:50.000Z'}}, {'blockNum': '0x767eac', 'uniqueId': '0x02d805e003e1ae46364b7b469a40964d20e230b865085d11c143ebd45a2a4840:log:30', 'hash': '0x02d805e003e1ae46364b7b469a40964d20e230b865085d11c143ebd45a2a4840', 'from': '0x50c976c78c7e03b463331f1b0ae5b6b92ecd57dd', 'to': '0xb9d70fe05c86d395bc18a633085e582f90a5fc83', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:22:49.000Z'}}, {'blockNum': '0x767eae', 'uniqueId': '0x3665595eb8e6c1afe053ccf244ce1d6323b2c09f7ec77dffa646ca1ef3b9279f:log:96', 'hash': '0x3665595eb8e6c1afe053ccf244ce1d6323b2c09f7ec77dffa646ca1ef3b9279f', 'from': '0x516fb76932affb766a09b096abe5a8c098fc2a3f', 'to': '0x631bb3d4f7976b33a9e5243414ab95c3a2a9f924', 'value': 1649.05263158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x596533d75de1021800', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:24:35.000Z'}}, {'blockNum': '0x767ec2', 'uniqueId': '0x63efad9c53da53222e2096789225e393c47e32be3abcf3be84faaf431fe8efbb:log:15', 'hash': '0x63efad9c53da53222e2096789225e393c47e32be3abcf3be84faaf431fe8efbb', 'from': '0xb9d70fe05c86d395bc18a633085e582f90a5fc83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:29:05.000Z'}}, {'blockNum': '0x767ec2', 'uniqueId': '0xd95fdefd6d0ebbeeb968ecd80207c58908dd53df6cf7c9bbf90927f52c6c4ebd:log:42', 'hash': '0xd95fdefd6d0ebbeeb968ecd80207c58908dd53df6cf7c9bbf90927f52c6c4ebd', 'from': '0x631bb3d4f7976b33a9e5243414ab95c3a2a9f924', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1649.05263158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x596533d75de1021800', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:29:05.000Z'}}, {'blockNum': '0x767ec2', 'uniqueId': '0x79f31982988009a33bd20dd619668b3425e01242ac08d550af2d99d4e09c4027:log:43', 'hash': '0x79f31982988009a33bd20dd619668b3425e01242ac08d550af2d99d4e09c4027', 'from': '0x06e35f513834399f6a0b7f8b2f2383c17596a3b3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01be7975dbcd45300000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:29:05.000Z'}}, {'blockNum': '0x767ed6', 'uniqueId': '0x35815251f7874c87d5ddea3602ddb25b32520b755ae8c8ffeedfc7f06f680202:log:33', 'hash': '0x35815251f7874c87d5ddea3602ddb25b32520b755ae8c8ffeedfc7f06f680202', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x33854c18d7052f22e2e488d99dbe01f118a13bd6', 'value': 44240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x095e4155266f31400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:34:28.000Z'}}, {'blockNum': '0x767f00', 'uniqueId': '0x5c43b6061734a1c3dfc47c37abf9d07566242aad05e7bc5ef465a27f6daf6721:log:33', 'hash': '0x5c43b6061734a1c3dfc47c37abf9d07566242aad05e7bc5ef465a27f6daf6721', 'from': '0x528753fd729d04449cf04133092dafac4ecf9f39', 'to': '0xf286864218bec2ef66cc8b65e401efdecc169f3b', 'value': 9377.587643793699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01fc5c2be5710fc18032', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:43:53.000Z'}}, {'blockNum': '0x767f1f', 'uniqueId': '0xc351958430dbd7503d8abff4184e2bc1415d6adaecf9b3fadb5f6344ea4e3347:log:43', 'hash': '0xc351958430dbd7503d8abff4184e2bc1415d6adaecf9b3fadb5f6344ea4e3347', 'from': '0x33854c18d7052f22e2e488d99dbe01f118a13bd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x095e4155266f31400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T15:49:13.000Z'}}, {'blockNum': '0x767fe0', 'uniqueId': '0xa29782433aef2196623b47bd427cbc4fd22cccb2035386157bd6215aff940fe5:log:1', 'hash': '0xa29782433aef2196623b47bd427cbc4fd22cccb2035386157bd6215aff940fe5', 'from': '0x47260490fdf33fd04cf1068e6c9b33f805595ddf', 'to': '0xf476489626956a2d1f9042a2b249aa2ba4a2a109', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:29:43.000Z'}}, {'blockNum': '0x767feb', 'uniqueId': '0x40144756ddf850762e1f99a7326a6dcd225c44d587be08e801ac052345cbd1eb:log:34', 'hash': '0x40144756ddf850762e1f99a7326a6dcd225c44d587be08e801ac052345cbd1eb', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x98927f892882eaa47af74991866b6face8f50683', 'value': 22905.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04d9b871b666710a0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:32:45.000Z'}}, {'blockNum': '0x76800d', 'uniqueId': '0x48cd95044681a1f202a07d5e266c9ee9002c24f2e4bd6e696e967452d2b51968:log:8', 'hash': '0x48cd95044681a1f202a07d5e266c9ee9002c24f2e4bd6e696e967452d2b51968', 'from': '0x98927f892882eaa47af74991866b6face8f50683', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22905.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04d9b871b666710a0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:39:09.000Z'}}, {'blockNum': '0x768061', 'uniqueId': '0xd07b402df920467002d3a876012460c0495e3a990d9b14ba7c3c559a83ea57f6:log:21', 'hash': '0xd07b402df920467002d3a876012460c0495e3a990d9b14ba7c3c559a83ea57f6', 'from': '0xb09f98cd0b716ed119564c5439eafe6b1447c967', 'to': '0x13ea36e080585aa707e3bdee20f062ff9acc79da', 'value': 21467.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x048bc168e64f723e0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:54:58.000Z'}}, {'blockNum': '0x768075', 'uniqueId': '0x44eae4e7bc2b888326160117cbffa9ee8593f0fd9a7b3ca227b97dccdcef93a8:log:32', 'hash': '0x44eae4e7bc2b888326160117cbffa9ee8593f0fd9a7b3ca227b97dccdcef93a8', 'from': '0x13ea36e080585aa707e3bdee20f062ff9acc79da', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21467.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x048bc168e64f723e0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T16:59:01.000Z'}}, {'blockNum': '0x76808f', 'uniqueId': '0xbba8cbbd8a1a1d9d90d4c75ecaa50101550f8417d24f3ba5ba5690f9058ad5a3:log:0', 'hash': '0xbba8cbbd8a1a1d9d90d4c75ecaa50101550f8417d24f3ba5ba5690f9058ad5a3', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcf6a16f108cf883ad7e9484a3d662afdb3bda026', 'value': 7242.70706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0188a0c0719039cb4000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:05:15.000Z'}}, {'blockNum': '0x7680d5', 'uniqueId': '0x9569ada92e6547c8ec2f0be68354e2bcd023ca5cff6650e4d9de6fa3c9a849b0:log:19', 'hash': '0x9569ada92e6547c8ec2f0be68354e2bcd023ca5cff6650e4d9de6fa3c9a849b0', 'from': '0xcf6a16f108cf883ad7e9484a3d662afdb3bda026', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7242.70706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0188a0c0719039cb4000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:19:13.000Z'}}, {'blockNum': '0x7680f4', 'uniqueId': '0x78c814d4cdf54c1f420dbba571fc39b97921d0bbc90c3585a76422f8a8970e40:log:129', 'hash': '0x78c814d4cdf54c1f420dbba571fc39b97921d0bbc90c3585a76422f8a8970e40', 'from': '0x38d43372751e46579c68a9b57f03ce64c6589c0f', 'to': '0x68cb0cd461f9deeb473c4fcfe8d0bd24b84a0a2f', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:25:26.000Z'}}, {'blockNum': '0x76811a', 'uniqueId': '0x05e5de9997cb33bccc3858c590c123e6c7b4adb16dd104a62e7a62fbb3dcd0f7:log:73', 'hash': '0x05e5de9997cb33bccc3858c590c123e6c7b4adb16dd104a62e7a62fbb3dcd0f7', 'from': '0x7717b631c819031f910393c989473cf123dd81a7', 'to': '0x5c750a7f0010da10f43f21a631353f5253671582', 'value': 5250.1955771491885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x011c9d19a4b05852aea5', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:34:38.000Z'}}, {'blockNum': '0x76812b', 'uniqueId': '0xca56569c40fe3e0229b5dbf0090e13966821dc05e39856767e7cb9ec239633c3:log:23', 'hash': '0xca56569c40fe3e0229b5dbf0090e13966821dc05e39856767e7cb9ec239633c3', 'from': '0x696359f1cf1d35f225a8f8f4f0baafc86a1f6cdc', 'to': '0xdcdf2fa907e2db74676f3fe9245c4d0db125f91b', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:39:47.000Z'}}, {'blockNum': '0x768181', 'uniqueId': '0xbda86c3055e9c8a5eb5d65dfd7ea2e4b02b138c01cbb8a654e306a29ab5d4131:log:6', 'hash': '0xbda86c3055e9c8a5eb5d65dfd7ea2e4b02b138c01cbb8a654e306a29ab5d4131', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x660c17e6ab0ce88b0f6d2dbaa6b907f26627bd61', 'value': 4680.41357555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xfdb9c955119da96c00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T17:58:24.000Z'}}, {'blockNum': '0x7681c3', 'uniqueId': '0x5da67bf5a36fd48669dacc80afabe5b3a6b7927448eb19c55f72506c0125ef0a:log:8', 'hash': '0x5da67bf5a36fd48669dacc80afabe5b3a6b7927448eb19c55f72506c0125ef0a', 'from': '0x3839c66c0903a848f095bf958d9faf4c24d3c6b6', 'to': '0x3efb3406b8b3f26b38b5639fbb0754b7fc0c9e95', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:15:36.000Z'}}, {'blockNum': '0x7681f5', 'uniqueId': '0x878af299b023f5f06ec01f270bced4e9f0068dabcf7db7bf67a62b91cfaa7971:log:36', 'hash': '0x878af299b023f5f06ec01f270bced4e9f0068dabcf7db7bf67a62b91cfaa7971', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x133d93566f9699b3af46fe150daa8a67a9563ed6', 'value': 153494.663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x2080f65cdcebcead8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:27:03.000Z'}}, {'blockNum': '0x76823d', 'uniqueId': '0xb8e6ab95d2c8849e8b66731e4ae9ab6b6dd84964e282d49ff745a65dbf465fff:log:4', 'hash': '0xb8e6ab95d2c8849e8b66731e4ae9ab6b6dd84964e282d49ff745a65dbf465fff', 'from': '0x2aab2950adc18cfc862770309acfdb4b4b2e0297', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:41:51.000Z'}}, {'blockNum': '0x768240', 'uniqueId': '0xeca733da6f6b5d7350ece2e22ec22cfd4c4f2e913db33e351e1bc4ecee425053:log:20', 'hash': '0xeca733da6f6b5d7350ece2e22ec22cfd4c4f2e913db33e351e1bc4ecee425053', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbfe4d6ad07ec0fe910d62f32e3f194ca8372efb4', 'value': 1393.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x4b894f3d734d4c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:42:21.000Z'}}, {'blockNum': '0x768270', 'uniqueId': '0x0e57fe7257d941a5308dd058cb84dc8e6e874e23374758c51bf5c1ebfc712008:log:13', 'hash': '0x0e57fe7257d941a5308dd058cb84dc8e6e874e23374758c51bf5c1ebfc712008', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad405b532f9a5a34cc3b15649aa37fe0f88b635c', 'value': 1548.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x53f05ddc39a6d80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T18:55:51.000Z'}}, {'blockNum': '0x7682a2', 'uniqueId': '0x8ea8306ca801ff091f15cd1cdfbb311430e947c600782a743d156d91345ef67d:log:133', 'hash': '0x8ea8306ca801ff091f15cd1cdfbb311430e947c600782a743d156d91345ef67d', 'from': '0x7341194087152657be2a9b73624673b5b8eaec3d', 'to': '0x0795d971281476936e28a0f1e40fbd532266fab3', 'value': 1954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x69ed328743a9480000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:06:44.000Z'}}, {'blockNum': '0x7682d3', 'uniqueId': '0x5009c38199685648ff2c97472d549e470113b0b7913ebe06b297760a53d5b31b:log:48', 'hash': '0x5009c38199685648ff2c97472d549e470113b0b7913ebe06b297760a53d5b31b', 'from': '0x7341194087152657be2a9b73624673b5b8eaec3d', 'to': '0x0795d971281476936e28a0f1e40fbd532266fab3', 'value': 680000.517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8ffee6e2565a1de08000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:17:31.000Z'}}, {'blockNum': '0x7682f6', 'uniqueId': '0x26128285935aac0ca5382a23bea6da9e9304037e4b624f609bc9d5799897a1cf:log:110', 'hash': '0x26128285935aac0ca5382a23bea6da9e9304037e4b624f609bc9d5799897a1cf', 'from': '0xabed001575e9e3256f1c688fd01cbcdac7d89ef8', 'to': '0x43559c48ce3784ba040e56e001e2641ded99f41b', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:23:57.000Z'}}, {'blockNum': '0x76830d', 'uniqueId': '0x98e23c80e91e78430a95e85c6fbcdc4e17244fb91aa62b54c24275c7e72600b8:log:12', 'hash': '0x98e23c80e91e78430a95e85c6fbcdc4e17244fb91aa62b54c24275c7e72600b8', 'from': '0x0795d971281476936e28a0f1e40fbd532266fab3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 681954.517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x9068d414dd9dc7288000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:29:01.000Z'}}, {'blockNum': '0x76830d', 'uniqueId': '0x93551cbfce4b04338b63180d048f8bba0c43d34e62a342c57401c413188be159:log:23', 'hash': '0x93551cbfce4b04338b63180d048f8bba0c43d34e62a342c57401c413188be159', 'from': '0x43559c48ce3784ba040e56e001e2641ded99f41b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:29:01.000Z'}}, {'blockNum': '0x768313', 'uniqueId': '0x825ab45feb7d3cd788225f8524ee6d50f14139509a1785bfdd21e6c408ee6e9d:log:39', 'hash': '0x825ab45feb7d3cd788225f8524ee6d50f14139509a1785bfdd21e6c408ee6e9d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xed12cb29ae8943ea3e8a5a0007fcf9539b28060e', 'value': 3219.046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xae813cc1c36a170000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:30:40.000Z'}}, {'blockNum': '0x768321', 'uniqueId': '0x3d67bd82e0a582a8ebc4dde5df3c17042249c0e2859f6edee4c063f06f7fba5c:log:6', 'hash': '0x3d67bd82e0a582a8ebc4dde5df3c17042249c0e2859f6edee4c063f06f7fba5c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 78002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x10847f345fb123880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:34:17.000Z'}}, {'blockNum': '0x76832a', 'uniqueId': '0xff4f98e5539e30e531286c42babff66da62e9b1b0046eded30b84713def04868:log:15', 'hash': '0xff4f98e5539e30e531286c42babff66da62e9b1b0046eded30b84713def04868', 'from': '0xfed42de3fc29f2863f339f2717404983f1de66ce', 'to': '0x6d600bdd810fa3c194ec126aa881e1a277623f49', 'value': 6714.6302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x016c00368f43b61b8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:35:38.000Z'}}, {'blockNum': '0x768366', 'uniqueId': '0xcf44a603bfd83e42d4999b06697a8fd52366d2a43018899fb46e7125add539c8:log:29', 'hash': '0xcf44a603bfd83e42d4999b06697a8fd52366d2a43018899fb46e7125add539c8', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 78002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x10847f345fb123880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:49:09.000Z'}}, {'blockNum': '0x768381', 'uniqueId': '0x7b633648f51dd348958919ae5e2e498779ad016692e9fec24abdaa41f2d79dda:log:46', 'hash': '0x7b633648f51dd348958919ae5e2e498779ad016692e9fec24abdaa41f2d79dda', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe806e2bb4ef1927e3bdb6fd70456612edcd035ec', 'value': 2319.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x7dc16695c8bae38000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:53:12.000Z'}}, {'blockNum': '0x768396', 'uniqueId': '0xf7c6e30714b53303347ff8f296d2abc2849a8412907db1e76d1e9d92b31c96c2:log:1', 'hash': '0xf7c6e30714b53303347ff8f296d2abc2849a8412907db1e76d1e9d92b31c96c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc1236689bfb4bb3c128fab93ed44c32dfdad9049', 'value': 12384.375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x029f5bba7744e4458000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T19:57:50.000Z'}}, {'blockNum': '0x76840a', 'uniqueId': '0xbcfa66d4c2eadb5ea0e2eb7898d243e176f4ba8ff6e935f7b20c6e78cd5881a1:log:5', 'hash': '0xbcfa66d4c2eadb5ea0e2eb7898d243e176f4ba8ff6e935f7b20c6e78cd5881a1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 120643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x198c11f459fdcb2c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:21:21.000Z'}}, {'blockNum': '0x768415', 'uniqueId': '0xbebbd40339fb85a7499488e2764430575e544182b689651ea9476239d0f9c3db:log:16', 'hash': '0xbebbd40339fb85a7499488e2764430575e544182b689651ea9476239d0f9c3db', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x282cb65c616e031e2922e238f51448dde45d0d60', 'value': 364225.8747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x4d20b9673842ab6cc000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:23:43.000Z'}}, {'blockNum': '0x76841d', 'uniqueId': '0xca00580f333a2196f1f76a7407cceddae42480f4af76d1f3f729e67fc5257472:log:69', 'hash': '0xca00580f333a2196f1f76a7407cceddae42480f4af76d1f3f729e67fc5257472', 'from': '0x6b239dcc62e60aeeb0fa233e1ed9512dd8e32173', 'to': '0xff42c1bcd6a7be554759afd8be0bcb1c769666f3', 'value': 1158.52311819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3ecdbcede010d6cc00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:26:39.000Z'}}, {'blockNum': '0x76842a', 'uniqueId': '0x4e5049bb256b8213868d8649981997c89267570bdbedfc18f550f8a2055d1f37:log:47', 'hash': '0x4e5049bb256b8213868d8649981997c89267570bdbedfc18f550f8a2055d1f37', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x198c11f459fdcb2c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:29:30.000Z'}}, {'blockNum': '0x768448', 'uniqueId': '0x7b840f5b4f4b85609d39c41201a9c642f6ec2a052da1446161b3278c2a72516e:log:38', 'hash': '0x7b840f5b4f4b85609d39c41201a9c642f6ec2a052da1446161b3278c2a72516e', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 7314.584392152784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x018c864006557b429ee8', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:34:52.000Z'}}, {'blockNum': '0x76844f', 'uniqueId': '0xeb9e2bcfedc455c7b3b35aece0cdcc449d11e52f4ae93e5884a0d6ffcf31865c:log:187', 'hash': '0xeb9e2bcfedc455c7b3b35aece0cdcc449d11e52f4ae93e5884a0d6ffcf31865c', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 7314.584392152784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x018c864006557b429ee8', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:37:34.000Z'}}, {'blockNum': '0x768454', 'uniqueId': '0x9e04fa222e66b65a5aae6068648cbb7fa748959a3fc406943830d0848b43b9d3:log:52', 'hash': '0x9e04fa222e66b65a5aae6068648cbb7fa748959a3fc406943830d0848b43b9d3', 'from': '0x282cb65c616e031e2922e238f51448dde45d0d60', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 364225.8747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x4d20b9673842ab6cc000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:39:08.000Z'}}, {'blockNum': '0x768454', 'uniqueId': '0x2b85a29b9d5ac5d1cfc1763e9034cbdae2d4995dd3c96f0bf24272c90d0c5d4d:log:69', 'hash': '0x2b85a29b9d5ac5d1cfc1763e9034cbdae2d4995dd3c96f0bf24272c90d0c5d4d', 'from': '0xff42c1bcd6a7be554759afd8be0bcb1c769666f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1158.52311819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3ecdbcede010d6cc00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:39:08.000Z'}}, {'blockNum': '0x76847f', 'uniqueId': '0x12c9e15a89054beafcc7ed7c4e92f9ac762d270d804474139d630a1a01c3a2bb:log:21', 'hash': '0x12c9e15a89054beafcc7ed7c4e92f9ac762d270d804474139d630a1a01c3a2bb', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7314.584392152784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x018c864006557b429ee8', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T20:49:05.000Z'}}, {'blockNum': '0x7684f0', 'uniqueId': '0x1739690ffb4e23cb52a22325b36c15a36aa854ea3679e7d281fcdadab785fc0e:log:12', 'hash': '0x1739690ffb4e23cb52a22325b36c15a36aa854ea3679e7d281fcdadab785fc0e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xd9538dc20a49d8fff0e74399bf4317f4d5a228ea', 'value': 5517.94196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x012b20d3e14f7eb48000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:11:40.000Z'}}, {'blockNum': '0x768510', 'uniqueId': '0x6b1eeac8acc9e70e50733a06a8a5f0423e1f898b6cf74e6e6922983479b9c929:log:21', 'hash': '0x6b1eeac8acc9e70e50733a06a8a5f0423e1f898b6cf74e6e6922983479b9c929', 'from': '0xa927e132f110d5112a3758934953e5862d9db909', 'to': '0x32ca777b451279b6fcd6665e92fe37ac2aa6c2f6', 'value': 1098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3b85cf9e8bf2e80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:16:55.000Z'}}, {'blockNum': '0x768542', 'uniqueId': '0x6998d5f51a74835b0554a4d6a63d9aa7120b6b489ee98363aa4bd2d08c3dd60e:log:32', 'hash': '0x6998d5f51a74835b0554a4d6a63d9aa7120b6b489ee98363aa4bd2d08c3dd60e', 'from': '0x32ca777b451279b6fcd6665e92fe37ac2aa6c2f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3b85cf9e8bf2e80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:29:06.000Z'}}, {'blockNum': '0x768592', 'uniqueId': '0x7d9c3ff96c8ebd4018ccef5fa8be9d29dfc6257d297cfce51ce48ee2fee5c5ff:log:15', 'hash': '0x7d9c3ff96c8ebd4018ccef5fa8be9d29dfc6257d297cfce51ce48ee2fee5c5ff', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 3499868.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02e5203f02ae7eda180000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:47:58.000Z'}}, {'blockNum': '0x768592', 'uniqueId': '0x0328b2de5b431955b08c07120550afae15cd7e3fd9e162fb4357c8a5badd6566:log:18', 'hash': '0x0328b2de5b431955b08c07120550afae15cd7e3fd9e162fb4357c8a5badd6566', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe4efe476f9f5742a539f509f62fc49941f375b1', 'value': 8320.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c30cbee4a1a8280000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:47:58.000Z'}}, {'blockNum': '0x7685a7', 'uniqueId': '0x252eb0460b995eb964c00728249eb5613dd99e0be88475122317beedae256491:log:18', 'hash': '0x252eb0460b995eb964c00728249eb5613dd99e0be88475122317beedae256491', 'from': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'to': '0x9399ba9474964d792d09523c2e8306deb9538c5a', 'value': 3131.42145911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xa9c133da141ef2fc00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:50:45.000Z'}}, {'blockNum': '0x7685c9', 'uniqueId': '0xda704f39f1e02a589ac8b39f0e80e4fc8737497cdb689c7cc3b1596fb42ac5e9:log:4', 'hash': '0xda704f39f1e02a589ac8b39f0e80e4fc8737497cdb689c7cc3b1596fb42ac5e9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe1281f43dada0b4ca919a2c2b2095e2b875a10cf', 'value': 9046.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01ea6805061e5dc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T21:59:07.000Z'}}, {'blockNum': '0x76868f', 'uniqueId': '0x3c403d3010f363f86affba21adeba6f57acd9de8b642c5ae0418507d01541c45:log:56', 'hash': '0x3c403d3010f363f86affba21adeba6f57acd9de8b642c5ae0418507d01541c45', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x2b616914ada8484ab9d70398dbe86b029b1a9a39', 'value': 3729.396201085554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xca2bc4e5b30bb79e9e', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T22:40:58.000Z'}}, {'blockNum': '0x768696', 'uniqueId': '0x3e717293c46c95c35605e0808ceb3cba61851214123d5b2de48606af10c4fd2c:log:111', 'hash': '0x3e717293c46c95c35605e0808ceb3cba61851214123d5b2de48606af10c4fd2c', 'from': '0x2b616914ada8484ab9d70398dbe86b029b1a9a39', 'to': '0xc72d1f7dfab2aa2a24d5d5f7afb0b2e1b34666b0', 'value': 3729.396201085554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xca2bc4e5b30bb79e9e', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T22:43:12.000Z'}}, {'blockNum': '0x768705', 'uniqueId': '0xa822a09ea3059db0dce4c1006500c44db2c622371f6bc85ba5d07301d0b24c54:log:49', 'hash': '0xa822a09ea3059db0dce4c1006500c44db2c622371f6bc85ba5d07301d0b24c54', 'from': '0x1c0ea763ad5182a99ec65dc8325959697dd77d04', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 2649.878596180769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8fa673ef91618166d5', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T23:09:00.000Z'}}, {'blockNum': '0x76870f', 'uniqueId': '0x37f884c1cbf7cd5caf9fb7136012658634bb05d5f7cd145e6a014f6785075bce:log:43', 'hash': '0x37f884c1cbf7cd5caf9fb7136012658634bb05d5f7cd145e6a014f6785075bce', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 2615.841188552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8dce16c5aaef352dd2', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T23:10:54.000Z'}}, {'blockNum': '0x768714', 'uniqueId': '0xc79595ef707362754d44a08e7076a032e3156ca5a07037242783e0c6d3668591:log:63', 'hash': '0xc79595ef707362754d44a08e7076a032e3156ca5a07037242783e0c6d3668591', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 2615.841188552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8dce16c5aaef352dd2', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T23:11:51.000Z'}}, {'blockNum': '0x768736', 'uniqueId': '0x80af01cf3ec4fdebd91d382f21d7183569af3dd7bb08a5dd940f7d567c9ffbae:log:16', 'hash': '0x80af01cf3ec4fdebd91d382f21d7183569af3dd7bb08a5dd940f7d567c9ffbae', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2615.841188552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8dce16c5aaef352dd2', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-15T23:18:59.000Z'}}, {'blockNum': '0x76880b', 'uniqueId': '0x94e5e259c008f89b18327753d6ff403a27777505fde65162aeeee344365b69d0:log:6', 'hash': '0x94e5e259c008f89b18327753d6ff403a27777505fde65162aeeee344365b69d0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc6a496824aa3ce61a956249fdbe7cab83a5b0b4b', 'value': 40006.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0878c744e05bff320000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:07:19.000Z'}}, {'blockNum': '0x768815', 'uniqueId': '0xd6e931c6c2596c0e3541166b90c9314679eaf7bf95c21cb14ab0eb438ec903c4:log:98', 'hash': '0xd6e931c6c2596c0e3541166b90c9314679eaf7bf95c21cb14ab0eb438ec903c4', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x32408178a9e86ed9aa766d33a637ebf14fd4f081', 'value': 2570.488260319503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8b58b0cdbae7c862db', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:09:54.000Z'}}, {'blockNum': '0x768829', 'uniqueId': '0x0a0d72215b9473b466488eb7c475e808c6d8058152b08847e2d097ebc7675e5f:log:42', 'hash': '0x0a0d72215b9473b466488eb7c475e808c6d8058152b08847e2d097ebc7675e5f', 'from': '0x88998da950e21f9c7962341c634621dde86774d1', 'to': '0x4da45cf50184b1d767f20e45e34fc0f3eb7ef3e2', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:14:40.000Z'}}, {'blockNum': '0x768829', 'uniqueId': '0xb963d7e5550f1aa8d5242d1311ddda06dfc49869339cb8ea237e46b88a40ffbb:log:136', 'hash': '0xb963d7e5550f1aa8d5242d1311ddda06dfc49869339cb8ea237e46b88a40ffbb', 'from': '0x32408178a9e86ed9aa766d33a637ebf14fd4f081', 'to': '0xf8bfbfd0c81e6583363a13c48a457aee44e74376', 'value': 2570.488260319503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8b58b0cdbae7c862db', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:14:40.000Z'}}, {'blockNum': '0x768855', 'uniqueId': '0x40157a70c9105a95ba329454049fea5558ff0f4a8af2f234d23c7740b36a1689:log:80', 'hash': '0x40157a70c9105a95ba329454049fea5558ff0f4a8af2f234d23c7740b36a1689', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x7f456453482d200781b70d7903dfb6e7a263330a', 'value': 3129.1711143500497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xa9a1f9057137f5e56c', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:25:25.000Z'}}, {'blockNum': '0x76885a', 'uniqueId': '0xd21e9c3e5409c2b8ee12e1fa5303de6e788839a76411be6e178e704e94715216:log:4', 'hash': '0xd21e9c3e5409c2b8ee12e1fa5303de6e788839a76411be6e178e704e94715216', 'from': '0x7f456453482d200781b70d7903dfb6e7a263330a', 'to': '0x5b2e31de1694d621f2ae51a9111db18963216977', 'value': 3129.1711143500497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xa9a1f9057137f5e56c', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:25:59.000Z'}}, {'blockNum': '0x768869', 'uniqueId': '0x3873546b88343c4267ad7860e29eaecbb141a2bc2f7896946627d89d8b36defb:log:39', 'hash': '0x3873546b88343c4267ad7860e29eaecbb141a2bc2f7896946627d89d8b36defb', 'from': '0x4da45cf50184b1d767f20e45e34fc0f3eb7ef3e2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:29:05.000Z'}}, {'blockNum': '0x76886a', 'uniqueId': '0xe3777cff7211b01590051900b47a68750ab6ac3f13d475b289dab8c8f5eb1703:log:27', 'hash': '0xe3777cff7211b01590051900b47a68750ab6ac3f13d475b289dab8c8f5eb1703', 'from': '0x5b2e31de1694d621f2ae51a9111db18963216977', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3129.1711143500497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xa9a1f9057137f5e56c', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:29:12.000Z'}}, {'blockNum': '0x76886a', 'uniqueId': '0xfe045a709d43bb1b41949b19e2e47d73046a9d7655dfa700c9e5cdd550e15440:log:29', 'hash': '0xfe045a709d43bb1b41949b19e2e47d73046a9d7655dfa700c9e5cdd550e15440', 'from': '0xf8bfbfd0c81e6583363a13c48a457aee44e74376', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2570.488260319503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x8b58b0cdbae7c862db', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:29:12.000Z'}}, {'blockNum': '0x76886f', 'uniqueId': '0x72a13d49f919137ae81fc2cd187aab07b82b8d266fbffdf807c70b78edbc3a3c:log:77', 'hash': '0x72a13d49f919137ae81fc2cd187aab07b82b8d266fbffdf807c70b78edbc3a3c', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 239961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x32d04fd7142235c40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:30:05.000Z'}}, {'blockNum': '0x768870', 'uniqueId': '0xcdc6f3a98f136d28957157f3be9f29e34a87de629275d806109ef028d0d6e3c6:log:35', 'hash': '0xcdc6f3a98f136d28957157f3be9f29e34a87de629275d806109ef028d0d6e3c6', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x6f972a7d531d542f328f4e2b58f9398ef401c8a8', 'value': 239961.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x32d0598dfa6cc48a0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:30:20.000Z'}}, {'blockNum': '0x768874', 'uniqueId': '0x98576182603e4f7c103318badd1454eff5644b0ad57f0b85f792963c9c947c2b:log:13', 'hash': '0x98576182603e4f7c103318badd1454eff5644b0ad57f0b85f792963c9c947c2b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc6a496824aa3ce61a956249fdbe7cab83a5b0b4b', 'value': 600000.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x7f0e1d2cb8fd10da0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:30:48.000Z'}}, {'blockNum': '0x768893', 'uniqueId': '0x1b5e77116065a283c1327bd3c52fb67da359c53349a8575213e9ab0779cc5927:log:48', 'hash': '0x1b5e77116065a283c1327bd3c52fb67da359c53349a8575213e9ab0779cc5927', 'from': '0x6f972a7d531d542f328f4e2b58f9398ef401c8a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 239961.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x32d0598dfa6cc48a0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-16T00:39:17.000Z'}}]}}
Number of returned transfers:  93
Answer is complete
 
symbol           STORJ
group              CCB
date        2019-06-11
hour             18:00
exchange       binance
Name: 370, dtype: object
HERE
 Symbol: STORJ, Contract: 0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac
Datetime timestamps:  2019-06-11 18:00:00 2019-06-11 06:00:00 2019-06-12 06:00:00
Unix timestamps:  1560225600.0 1560312000.0
Hex Block Numbers:  0x791556 0x792e3d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7915a7', 'uniqueId': '0x269adcbb05da652e5cc2a6c716f67ba67a113b1b34143e6866a2989af560690b:log:1', 'hash': '0x269adcbb05da652e5cc2a6c716f67ba67a113b1b34143e6866a2989af560690b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6db4bc90741aad34cc8d0d7b1fdba3071d93055f', 'value': 9995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe8b9d29b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:17:38.000Z'}}, {'blockNum': '0x7915e1', 'uniqueId': '0x79b640b342770018c46d879967e21bea1206a0b633cb8ae8504ae6de792eb886:log:7', 'hash': '0x79b640b342770018c46d879967e21bea1206a0b633cb8ae8504ae6de792eb886', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x56c36af368cd433d40677b845672dd6c13658bd4', 'value': 456.59908367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aa18ae90f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:33:33.000Z'}}, {'blockNum': '0x7915e1', 'uniqueId': '0xb5d43da96993953eed4a66b89daeb8302e08291ddc92158e6dae26fdfb2719b5:log:8', 'hash': '0xb5d43da96993953eed4a66b89daeb8302e08291ddc92158e6dae26fdfb2719b5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x04936bbe003b9111e39f30fa88fd7f71ea25b19e', 'value': 5163.89378238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x783b3498be', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:33:33.000Z'}}, {'blockNum': '0x79160b', 'uniqueId': '0x1b16fa60af9df73fe4816fac0803fc24953e3f2bc8e076bad2c49b3967a02519:log:1', 'hash': '0x1b16fa60af9df73fe4816fac0803fc24953e3f2bc8e076bad2c49b3967a02519', 'from': '0xf2f2b743ff56472b4e5bd6b1d1f565f24f616f4b', 'to': '0x6d574caffeb34fb15eae59133c1c88280c31d9f9', 'value': 1702.94495633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27a657c991', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:43:00.000Z'}}, {'blockNum': '0x791627', 'uniqueId': '0x77c2ef634837121f4d2585faddecd92fb4c69d86f9252654a30e070e724364e6:log:4', 'hash': '0x77c2ef634837121f4d2585faddecd92fb4c69d86f9252654a30e070e724364e6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'value': 27459.06494123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x027f54c7faab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:49:47.000Z'}}, {'blockNum': '0x791644', 'uniqueId': '0xb18ba1c2545d41a8d61e4912821de0fab5c2903f5ad689fb4a8aa193e583c5e9:log:4', 'hash': '0xb18ba1c2545d41a8d61e4912821de0fab5c2903f5ad689fb4a8aa193e583c5e9', 'from': '0x04936bbe003b9111e39f30fa88fd7f71ea25b19e', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 5163.89378238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x783b3498be', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:56:46.000Z'}}, {'blockNum': '0x791646', 'uniqueId': '0xa75f6f89fb025e7558b88d3ec68ea10f105a3d91b4d248cdb6350645d8677dbe:log:13', 'hash': '0xa75f6f89fb025e7558b88d3ec68ea10f105a3d91b4d248cdb6350645d8677dbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 205220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12aa26852400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:58:01.000Z'}}, {'blockNum': '0x79164d', 'uniqueId': '0xe4db89d2103751362ff9e35dbd111bf2eedb71b2cd7875079cd7508bc21881cf:log:1', 'hash': '0xe4db89d2103751362ff9e35dbd111bf2eedb71b2cd7875079cd7508bc21881cf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5f65dd4a87e706529a9e96eed9afe6bc0078b5c6', 'value': 14.16299955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x546b05b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T04:59:55.000Z'}}, {'blockNum': '0x791678', 'uniqueId': '0xc8eca394f3589db85ec507813ed3f057e7df7d82c2e5db57a31672d7290033a9:log:3', 'hash': '0xc8eca394f3589db85ec507813ed3f057e7df7d82c2e5db57a31672d7290033a9', 'from': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 27459.06494123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x027f54c7faab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T05:11:25.000Z'}}, {'blockNum': '0x7916ce', 'uniqueId': '0x78f61953e50a2b6ffef8e971f83129204ec93d9a1a48822d499ede13bb0b332c:log:36', 'hash': '0x78f61953e50a2b6ffef8e971f83129204ec93d9a1a48822d499ede13bb0b332c', 'from': '0xe55250157d0bbb7e7c7c9dc0611e976f49115700', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 922.84819053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x157c9a966d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T05:32:11.000Z'}}, {'blockNum': '0x791768', 'uniqueId': '0x6ab0c742789ac4f8115f21ee60c5e537707fa45c704a9e90b1547c76728cbeb3:log:22', 'hash': '0x6ab0c742789ac4f8115f21ee60c5e537707fa45c704a9e90b1547c76728cbeb3', 'from': '0x6db4bc90741aad34cc8d0d7b1fdba3071d93055f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe8b9d29b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T06:11:57.000Z'}}, {'blockNum': '0x79177c', 'uniqueId': '0xf7d5a1dd4a5299803d3928d6f039de12601de8fb44e81bad9ba6934b286f9e82:log:12', 'hash': '0xf7d5a1dd4a5299803d3928d6f039de12601de8fb44e81bad9ba6934b286f9e82', 'from': '0xb5a345492dd9a2596f850e69ce308f7638ac7b61', 'to': '0x32e0d040f4511d7c278e4f4883aeb2142177bf1a', 'value': 496.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b90900d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T06:16:21.000Z'}}, {'blockNum': '0x791782', 'uniqueId': '0xd09d4a1eedcd5b6d52449a6c1d5ab59e93dc13b57c43221653415da7d14729d5:log:6', 'hash': '0xd09d4a1eedcd5b6d52449a6c1d5ab59e93dc13b57c43221653415da7d14729d5', 'from': '0x32e0d040f4511d7c278e4f4883aeb2142177bf1a', 'to': '0x565369ec3ee45e1d0de717883a6a3d60c09d8b93', 'value': 496.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b90900d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T06:16:52.000Z'}}, {'blockNum': '0x7917e6', 'uniqueId': '0xfa508fac0cf1bf159ee41acae67699ddfd179b505b3b1ef6e1916c4a1385dd14:log:60', 'hash': '0xfa508fac0cf1bf159ee41acae67699ddfd179b505b3b1ef6e1916c4a1385dd14', 'from': '0x6d574caffeb34fb15eae59133c1c88280c31d9f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1702.94495633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27a657c991', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T06:41:47.000Z'}}, {'blockNum': '0x7918aa', 'uniqueId': '0xe1dd144423df427e7e4bf9728a4cfde67146827cc4fda1ccbdcf08ce152c152a:log:89', 'hash': '0xe1dd144423df427e7e4bf9728a4cfde67146827cc4fda1ccbdcf08ce152c152a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x0a24bde9d7618f9b745036fe0a7b57c7451ed724', 'value': 151.684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03881b6a80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:21:19.000Z'}}, {'blockNum': '0x7918b0', 'uniqueId': '0x1040ade5a10459b77d60dedecca0316497abdd2ce21bff2e7af1c83b0dc539ff:log:42', 'hash': '0x1040ade5a10459b77d60dedecca0316497abdd2ce21bff2e7af1c83b0dc539ff', 'from': '0x0a24bde9d7618f9b745036fe0a7b57c7451ed724', 'to': '0x5d9fba176e78e878405a280436c33e693225c942', 'value': 151.684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03881b6a80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:23:19.000Z'}}, {'blockNum': '0x791916', 'uniqueId': '0xf1af7aac3f6d249a8ad006ef2eee20fa7330168f2e3277af6ebdbc1b27876522:log:9', 'hash': '0xf1af7aac3f6d249a8ad006ef2eee20fa7330168f2e3277af6ebdbc1b27876522', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 6099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8e00df7300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:42:32.000Z'}}, {'blockNum': '0x79194b', 'uniqueId': '0x9435e2546af04f8713e6080b1dfc0b3d63ce6cae2324d708d858a4ca24e07ec7:log:73', 'hash': '0x9435e2546af04f8713e6080b1dfc0b3d63ce6cae2324d708d858a4ca24e07ec7', 'from': '0x0ccbb6146c923a247f9ca16104b5a964881a9512', 'to': '0x2b0f6d192d97c606e1ece03b1f7403f2a5ea8b78', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:55:26.000Z'}}, {'blockNum': '0x791950', 'uniqueId': '0x8493af6083fa7bb7736ee79d7f5d3f9ac4545c39227ecc62f68a547ba1e4bd90:log:77', 'hash': '0x8493af6083fa7bb7736ee79d7f5d3f9ac4545c39227ecc62f68a547ba1e4bd90', 'from': '0x0ccbb6146c923a247f9ca16104b5a964881a9512', 'to': '0x2b0f6d192d97c606e1ece03b1f7403f2a5ea8b78', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T07:56:13.000Z'}}, {'blockNum': '0x791a0b', 'uniqueId': '0x26abb32a2dabc202b2200a983b496abc50960543928bc316835c925731f353fb:log:12', 'hash': '0x26abb32a2dabc202b2200a983b496abc50960543928bc316835c925731f353fb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4a7a4382b0495bdba11d7eec3951b90d040edaff', 'value': 740.830595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x113fb1c72c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T08:33:01.000Z'}}, {'blockNum': '0x791a12', 'uniqueId': '0xf5f1c51c5182445a7d783b11d2be5fce525a118046dce7b87b14771321736602:log:11', 'hash': '0xf5f1c51c5182445a7d783b11d2be5fce525a118046dce7b87b14771321736602', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa12f58575dc318a3c87dcc693addc6328e0841e2', 'value': 190.1202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x046d346720', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T08:35:16.000Z'}}, {'blockNum': '0x791a5e', 'uniqueId': '0x6870992f6c230a6c5f37924b9ce22bfe6726f11ac59e46cbdc9f0d18c2bdae93:log:21', 'hash': '0x6870992f6c230a6c5f37924b9ce22bfe6726f11ac59e46cbdc9f0d18c2bdae93', 'from': '0xa12f58575dc318a3c87dcc693addc6328e0841e2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 190.1202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x046d346720', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T08:51:46.000Z'}}, {'blockNum': '0x791a5e', 'uniqueId': '0x4458d17e8a2021563b6e2b4cfee1fdd279b4bb7cc2716acdf94e8d3d0ae5510b:log:22', 'hash': '0x4458d17e8a2021563b6e2b4cfee1fdd279b4bb7cc2716acdf94e8d3d0ae5510b', 'from': '0x4a7a4382b0495bdba11d7eec3951b90d040edaff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 740.830595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x113fb1c72c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T08:51:46.000Z'}}, {'blockNum': '0x791b40', 'uniqueId': '0x7c9f9cc6b2590fecfccbd511b3d4ee55f12e1c4836f8ca42d5c990f05fa7add1:log:3', 'hash': '0x7c9f9cc6b2590fecfccbd511b3d4ee55f12e1c4836f8ca42d5c990f05fa7add1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe3f63cd9ad5281a2e9300cd98410b0ba0a4b11cc', 'value': 451.05136112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a8079c1f0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T09:50:23.000Z'}}, {'blockNum': '0x791b61', 'uniqueId': '0xa7f925fc2416064b3b759d21333b73c405605ac6eb1b5a84d56893b921bfc551:log:14', 'hash': '0xa7f925fc2416064b3b759d21333b73c405605ac6eb1b5a84d56893b921bfc551', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 3689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55e4274900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T09:58:23.000Z'}}, {'blockNum': '0x791b69', 'uniqueId': '0xdde2cf407f33d9d1d0cd7fd9682441346827a7e8ab99b5f96c5586173a68a1cf:log:15', 'hash': '0xdde2cf407f33d9d1d0cd7fd9682441346827a7e8ab99b5f96c5586173a68a1cf', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 7400.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac4cb05740', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:02:00.000Z'}}, {'blockNum': '0x791bb0', 'uniqueId': '0x7a412f7ad175b224cbb236bb7b72f56c982aa74dbbe0088b08e70b2a94b191a6:log:44', 'hash': '0x7a412f7ad175b224cbb236bb7b72f56c982aa74dbbe0088b08e70b2a94b191a6', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x4b106a8be7481dd89293891d3ea46f89437c9853', 'value': 17344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0193d24bc000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:17:42.000Z'}}, {'blockNum': '0x791bbc', 'uniqueId': '0x92cc19c4eb8d4f5cb93de2f8acefce031fb7a9da6756895ce340d72a684d7dae:log:26', 'hash': '0x92cc19c4eb8d4f5cb93de2f8acefce031fb7a9da6756895ce340d72a684d7dae', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7400.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac4cb05740', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:21:54.000Z'}}, {'blockNum': '0x791bc8', 'uniqueId': '0xf28dee1980becc200e6352ccc8ea457f1ee6a2ecafc827600d3eec1003f01cab:log:73', 'hash': '0xf28dee1980becc200e6352ccc8ea457f1ee6a2ecafc827600d3eec1003f01cab', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 3966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5c5733be00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:24:00.000Z'}}, {'blockNum': '0x791bc8', 'uniqueId': '0xa434ab9f2fdc5e6c216d8f10c959e254259c6cdf6580090ce6046c61be51c4a8:log:74', 'hash': '0xa434ab9f2fdc5e6c216d8f10c959e254259c6cdf6580090ce6046c61be51c4a8', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x3fd093f99367c80258ef66cad7727e7047dc94a3', 'value': 5259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a72152b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:24:00.000Z'}}, {'blockNum': '0x791bd5', 'uniqueId': '0xad3e87dadb5a7583a5f48d2ad133893283f1d6e7e06c60435ea83bcacba24ed6:log:6', 'hash': '0xad3e87dadb5a7583a5f48d2ad133893283f1d6e7e06c60435ea83bcacba24ed6', 'from': '0x3fd093f99367c80258ef66cad7727e7047dc94a3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a72152b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:27:35.000Z'}}, {'blockNum': '0x791be0', 'uniqueId': '0xab941de18e511be0ad6bea79bf95b68367df09604b9b17e7d3dd88c58bf263ce:log:48', 'hash': '0xab941de18e511be0ad6bea79bf95b68367df09604b9b17e7d3dd88c58bf263ce', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x1c0aff5fcb9a1d91979fdb6aa2d858506cb2d10f', 'value': 2913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43d2d54100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:29:50.000Z'}}, {'blockNum': '0x791c01', 'uniqueId': '0xe81a6969007e7e58325a87e90301f9f7fdfe14336c8f6fc80b9f2473f0f3233f:log:118', 'hash': '0xe81a6969007e7e58325a87e90301f9f7fdfe14336c8f6fc80b9f2473f0f3233f', 'from': '0x1c0aff5fcb9a1d91979fdb6aa2d858506cb2d10f', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 2913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43d2d54100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:38:53.000Z'}}, {'blockNum': '0x791c02', 'uniqueId': '0xc156be16dcd9fcfaac28bf66321f6bbc3659eeeebe700f01fecefa7c68448bed:log:0', 'hash': '0xc156be16dcd9fcfaac28bf66321f6bbc3659eeeebe700f01fecefa7c68448bed', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c0aff5fcb9a1d91979fdb6aa2d858506cb2d10f', 'value': 4500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68c6171400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:39:00.000Z'}}, {'blockNum': '0x791c21', 'uniqueId': '0xef264bdce4bc0ee9790867693d4d1893d579a73fa48232ed76050992fb817ca1:log:72', 'hash': '0xef264bdce4bc0ee9790867693d4d1893d579a73fa48232ed76050992fb817ca1', 'from': '0x1c0aff5fcb9a1d91979fdb6aa2d858506cb2d10f', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 4500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68c6171400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:48:10.000Z'}}, {'blockNum': '0x791c32', 'uniqueId': '0x86db9c65b653645ae798071562cec2376b9cc89fb261cb5990d600336013d2b6:log:14', 'hash': '0x86db9c65b653645ae798071562cec2376b9cc89fb261cb5990d600336013d2b6', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55e4274900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:51:05.000Z'}}, {'blockNum': '0x791c47', 'uniqueId': '0x7a27935bef5575a73cc822abf2a6653e220f45b12db45b298a5f3128b868f63a:log:1', 'hash': '0x7a27935bef5575a73cc822abf2a6653e220f45b12db45b298a5f3128b868f63a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbfe0ace9979aacce00cf237a385a62079981fe61', 'value': 371.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08a6500380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:55:13.000Z'}}, {'blockNum': '0x791c5d', 'uniqueId': '0x117e69b974417be5580e45d03b9696e2bd5e217c3ed5638e11d6a3799016a8ef:log:30', 'hash': '0x117e69b974417be5580e45d03b9696e2bd5e217c3ed5638e11d6a3799016a8ef', 'from': '0xbfe0ace9979aacce00cf237a385a62079981fe61', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 371.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08a6500380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T10:58:58.000Z'}}, {'blockNum': '0x791cfa', 'uniqueId': '0x25816f033162c934d2134860face3a2ca6624508b0354cff9ba5431a6c2541ec:log:75', 'hash': '0x25816f033162c934d2134860face3a2ca6624508b0354cff9ba5431a6c2541ec', 'from': '0x4e19fa79b60a15a97f6ad0b155574c32f887196a', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 341.378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07f2c57d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:30:39.000Z'}}, {'blockNum': '0x791d21', 'uniqueId': '0x45ecb973e3b43ccf1fe9e044676fef4a6e529f8c2164a0d83466df0f57911f2d:log:2', 'hash': '0x45ecb973e3b43ccf1fe9e044676fef4a6e529f8c2164a0d83466df0f57911f2d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4c364adc3b33f3435bc12f2b9a2d2f01ecce27e3', 'value': 3051.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x470c5b7b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:37:27.000Z'}}, {'blockNum': '0x791d2d', 'uniqueId': '0x794df581f4c830432f61aa9dc9eff022e2785b734443068fb384889b229cd0ef:log:0', 'hash': '0x794df581f4c830432f61aa9dc9eff022e2785b734443068fb384889b229cd0ef', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99993627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def171b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:40:10.000Z'}}, {'blockNum': '0x791d68', 'uniqueId': '0x10d7c7e8f6d96d58de01d2e821b63897cd83af880edeafdcf629263e6e0b8870:log:0', 'hash': '0x10d7c7e8f6d96d58de01d2e821b63897cd83af880edeafdcf629263e6e0b8870', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbaa2ecb4c308b1cb3e57888ed3774ef5465c91d0', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:53:36.000Z'}}, {'blockNum': '0x791d6f', 'uniqueId': '0x6ba338f98efc3e0f61942af7e2bb96579eca09921e864a53f26d24fe46148733:log:127', 'hash': '0x6ba338f98efc3e0f61942af7e2bb96579eca09921e864a53f26d24fe46148733', 'from': '0xcf4ae6947cde9ca25274876901b562cac1299466', 'to': '0x89ce2b4e41409f788efc2670f2dfb487b75669b4', 'value': 111.41823253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02981abb15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T11:56:50.000Z'}}, {'blockNum': '0x791d84', 'uniqueId': '0xcf7a08526fd967f69a14e9473aa45039e52ca5d05157ea14c1372f3fe240e87b:log:78', 'hash': '0xcf7a08526fd967f69a14e9473aa45039e52ca5d05157ea14c1372f3fe240e87b', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99993627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def171b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:02:35.000Z'}}, {'blockNum': '0x791db2', 'uniqueId': '0x5f0e9481906bfded8e565dea370b3ff2945e4357480f0701091720ef834659b2:log:179', 'hash': '0x5f0e9481906bfded8e565dea370b3ff2945e4357480f0701091720ef834659b2', 'from': '0xbaa2ecb4c308b1cb3e57888ed3774ef5465c91d0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:13:55.000Z'}}, {'blockNum': '0x791dc3', 'uniqueId': '0x31264d2089fd240b8a16a1033f8bad39eccdf28637983527974625a6e60a2982:log:53', 'hash': '0x31264d2089fd240b8a16a1033f8bad39eccdf28637983527974625a6e60a2982', 'from': '0x89ce2b4e41409f788efc2670f2dfb487b75669b4', 'to': '0x110327c7174f93252c92ed43edea694afd29433d', 'value': 111.41823253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02981abb15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:16:03.000Z'}}, {'blockNum': '0x791e25', 'uniqueId': '0xff8a61d6f714608acc4bc4a55dfd835288ae7fc97058d9e1bd10ee311fb6c7ef:log:1', 'hash': '0xff8a61d6f714608acc4bc4a55dfd835288ae7fc97058d9e1bd10ee311fb6c7ef', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1e4ffb26b446561b7b06a45426b304e00c26430c', 'value': 540.91065225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c98142789', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:36:01.000Z'}}, {'blockNum': '0x791e3a', 'uniqueId': '0x624bfd5fec53e109eee32965da2b084f8ae96df53790b636d4ade856892aa5eb:log:1', 'hash': '0x624bfd5fec53e109eee32965da2b084f8ae96df53790b636d4ade856892aa5eb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1e4ffb26b446561b7b06a45426b304e00c26430c', 'value': 4495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68ab449f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T12:39:46.000Z'}}, {'blockNum': '0x791ecc', 'uniqueId': '0x8fef66dfb7fef509bb1afea53b135935a5e8baa2107686f7b9dae8fc23c54389:log:63', 'hash': '0x8fef66dfb7fef509bb1afea53b135935a5e8baa2107686f7b9dae8fc23c54389', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x96af749d853db9d9965ff491636f92ce80112ac3', 'value': 15.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5c631f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T13:14:16.000Z'}}, {'blockNum': '0x791efc', 'uniqueId': '0x5f3c1ab3c2e598b2e42082e52e4457add418954c31fc3dadb64d90fefc0e43d9:log:1', 'hash': '0x5f3c1ab3c2e598b2e42082e52e4457add418954c31fc3dadb64d90fefc0e43d9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x96af749d853db9d9965ff491636f92ce80112ac3', 'value': 1094.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x197bba7680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T13:26:22.000Z'}}, {'blockNum': '0x791f0c', 'uniqueId': '0x58db495cd927fda3478066cab2e24c5e41975e621296e81a0171f6eccc9e2763:log:6', 'hash': '0x58db495cd927fda3478066cab2e24c5e41975e621296e81a0171f6eccc9e2763', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb3e45d3abf585978722763879974362a1bf36276', 'value': 1454.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21deb00b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T13:31:06.000Z'}}, {'blockNum': '0x791f15', 'uniqueId': '0xf040c3f5b97a7da5637891e373225fd07daf9eaa07f35114ae2da72ba2639423:log:85', 'hash': '0xf040c3f5b97a7da5637891e373225fd07daf9eaa07f35114ae2da72ba2639423', 'from': '0x96af749d853db9d9965ff491636f92ce80112ac3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19d81d9600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T13:33:01.000Z'}}, {'blockNum': '0x791fc9', 'uniqueId': '0x3d4b2d19ca7f942983ebe7ffc409c65b2a9a09466e1bc561fbf7ab30920dd4c1:log:27', 'hash': '0x3d4b2d19ca7f942983ebe7ffc409c65b2a9a09466e1bc561fbf7ab30920dd4c1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x17ff46a45d10d8b2ef5b14c73f859d116e10db4f', 'value': 65307.2111174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05f08d4fdebc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T14:11:51.000Z'}}, {'blockNum': '0x791fe8', 'uniqueId': '0x6260ab25a06813b2dfa6a360ae948a0c83ea6e42b2d174bbaed6937f25d4d4dc:log:12', 'hash': '0x6260ab25a06813b2dfa6a360ae948a0c83ea6e42b2d174bbaed6937f25d4d4dc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x72870b00a0ffa548763b85077b3e7ea93b35c76e', 'value': 510.30344183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0be1a541f7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T14:18:51.000Z'}}, {'blockNum': '0x792055', 'uniqueId': '0x2d45bee71c442cd395cedbb5131957c59b9fc0d1b9087f1d47269a85b78a3a7c:log:155', 'hash': '0x2d45bee71c442cd395cedbb5131957c59b9fc0d1b9087f1d47269a85b78a3a7c', 'from': '0x72870b00a0ffa548763b85077b3e7ea93b35c76e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 510.30344183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0be1a541f7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T14:43:52.000Z'}}, {'blockNum': '0x792095', 'uniqueId': '0xc4c317ecb990e6b0d38215f5a644562261b052671eb6a2acd9dcf65f116a0ca6:log:12', 'hash': '0xc4c317ecb990e6b0d38215f5a644562261b052671eb6a2acd9dcf65f116a0ca6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 27278.35238122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x027b1fa67eea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T14:58:07.000Z'}}, {'blockNum': '0x7920d8', 'uniqueId': '0x750839984cbe8e9dfaa1455016703acb16f2a33eaea857542ea7268b09ea9425:log:15', 'hash': '0x750839984cbe8e9dfaa1455016703acb16f2a33eaea857542ea7268b09ea9425', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 27278.35238122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x027b1fa67eea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:11:33.000Z'}}, {'blockNum': '0x7920dd', 'uniqueId': '0x2f06cc5555581455db5c90fc4aaf26d7316d88c5d0fbf8e1833db929ea081d10:log:0', 'hash': '0x2f06cc5555581455db5c90fc4aaf26d7316d88c5d0fbf8e1833db929ea081d10', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4fd9d6fd58c73ef32b3a48ffe014ce77d944a0e3', 'value': 12.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4a817c80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:13:19.000Z'}}, {'blockNum': '0x792155', 'uniqueId': '0xcd8b646b5d720eed0e41813f5b3b3d10c1e440902c9811f85deb1fcce1da9883:log:2', 'hash': '0xcd8b646b5d720eed0e41813f5b3b3d10c1e440902c9811f85deb1fcce1da9883', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x488ea5954fb949cde526f6bdf8d77e813aa82329', 'value': 1062.19804154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x18bb3195fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:37:03.000Z'}}, {'blockNum': '0x792162', 'uniqueId': '0xc10519a378102b76a827b8b0c3a49165bf92d96ee16802f86ad353d121e037e2:log:12', 'hash': '0xc10519a378102b76a827b8b0c3a49165bf92d96ee16802f86ad353d121e037e2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2f13ed157656b7c708b0db91442469dc0aa88b76', 'value': 379.42456219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08d58bef9b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:38:59.000Z'}}, {'blockNum': '0x792162', 'uniqueId': '0x9cc7abecbf92f253ceba028b108ed69d450a0407b5a97472cd2f5f3b0b0d48f5:log:13', 'hash': '0x9cc7abecbf92f253ceba028b108ed69d450a0407b5a97472cd2f5f3b0b0d48f5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e51f95dbcc805950430acb5106a61191f40bbe1', 'value': 2495.49696794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a1a522f1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:38:59.000Z'}}, {'blockNum': '0x792162', 'uniqueId': '0x7fdecf50b89844ee5054a87aeb4cfc36eb4002cc4658b7fe4ff62d96c85a7fc1:log:14', 'hash': '0x7fdecf50b89844ee5054a87aeb4cfc36eb4002cc4658b7fe4ff62d96c85a7fc1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x39021b41c91d80e9881e10fd7cf482cb398d8972', 'value': 2514.93052758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a8e277156', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:38:59.000Z'}}, {'blockNum': '0x792168', 'uniqueId': '0x27689f25afc59958498d50cb21b15ce0682fa37c19f872c6a3ef559c8d822a39:log:32', 'hash': '0x27689f25afc59958498d50cb21b15ce0682fa37c19f872c6a3ef559c8d822a39', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e586c5bbcc6589cd842cdaadae30b76b0e889fd', 'value': 28086.5059676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028df09f0198', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:41:23.000Z'}}, {'blockNum': '0x792175', 'uniqueId': '0xc4b8da96453355dcb7bd06a546b3accd057a1fa120b672b86fbaa7f606241778:log:3', 'hash': '0xc4b8da96453355dcb7bd06a546b3accd057a1fa120b672b86fbaa7f606241778', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x05978d3b42f5c419fca4f52928edb4b83c9bf143', 'value': 10995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010002498380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:43:32.000Z'}}, {'blockNum': '0x792181', 'uniqueId': '0xa700a998b828edf3a9d7e11818d26652ab857e488628ecf7daa30f6548a18840:log:3', 'hash': '0xa700a998b828edf3a9d7e11818d26652ab857e488628ecf7daa30f6548a18840', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e3bc50aa76102a79f9360a5c138079c5a9a7386', 'value': 517.9205998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c0f0c1e4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:45:12.000Z'}}, {'blockNum': '0x792181', 'uniqueId': '0xec4b4b248f884d7c71d50f30e2a85c88ae63000787442218c5bd973de87d5be8:log:15', 'hash': '0xec4b4b248f884d7c71d50f30e2a85c88ae63000787442218c5bd973de87d5be8', 'from': '0x2f13ed157656b7c708b0db91442469dc0aa88b76', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 379.42456219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08d58bef9b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:45:12.000Z'}}, {'blockNum': '0x792184', 'uniqueId': '0xc2d33cdd44d5fea517e8704adead573d4991b54150110ac3903a7af229c53fcc:log:20', 'hash': '0xc2d33cdd44d5fea517e8704adead573d4991b54150110ac3903a7af229c53fcc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3a14124784e6663a23a43d7778dacca5683b2abb', 'value': 7404.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac6501ed40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:46:02.000Z'}}, {'blockNum': '0x79218e', 'uniqueId': '0xda48822350f7a1705e8258c30a9eb958b30e8b4ee97e7d37f75bad671b0322d5:log:1', 'hash': '0xda48822350f7a1705e8258c30a9eb958b30e8b4ee97e7d37f75bad671b0322d5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e5d3da60a7ec5383e950dfe3b8b8d27350db581', 'value': 367.24548446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x088cf4235e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:49:25.000Z'}}, {'blockNum': '0x79218e', 'uniqueId': '0x89c5d662fca0463f1d36095555239030e674f442e7018ed6a1e67c2ffd3e1f08:log:2', 'hash': '0x89c5d662fca0463f1d36095555239030e674f442e7018ed6a1e67c2ffd3e1f08', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e52d7dac535a9a60d144c08a71b4bfc363dbf1d', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080b572980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:49:25.000Z'}}, {'blockNum': '0x79219a', 'uniqueId': '0xe2714dcc29b67f06b4074514503eebc09de8c2ea061a210760acc037f3731f45:log:84', 'hash': '0xe2714dcc29b67f06b4074514503eebc09de8c2ea061a210760acc037f3731f45', 'from': '0x39021b41c91d80e9881e10fd7cf482cb398d8972', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2514.93052758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a8e277156', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:52:03.000Z'}}, {'blockNum': '0x7921a0', 'uniqueId': '0xfbeb4915969e7d1a578bbe370a08b83012f808e9e3f0b7fbca41e34d0c42796a:log:122', 'hash': '0xfbeb4915969e7d1a578bbe370a08b83012f808e9e3f0b7fbca41e34d0c42796a', 'from': '0x05978d3b42f5c419fca4f52928edb4b83c9bf143', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010002498380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:53:13.000Z'}}, {'blockNum': '0x7921a1', 'uniqueId': '0xe1be8b3e54b53c61ce914c479eb229edc509ab682d29b40ba7edff5c7ce35884:log:2', 'hash': '0xe1be8b3e54b53c61ce914c479eb229edc509ab682d29b40ba7edff5c7ce35884', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4ed1b1ec63d29c6a26aabca98a4cff9da1d6a246', 'value': 495.66319197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b8a62025d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:53:25.000Z'}}, {'blockNum': '0x7921ac', 'uniqueId': '0x4cba762374032724ac3a37d1b0f65d0d161910f0a6b9264b2f6552ce9cf06f18:log:17', 'hash': '0x4cba762374032724ac3a37d1b0f65d0d161910f0a6b9264b2f6552ce9cf06f18', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e663fc21eced6453b59c202737752df820c7101', 'value': 618.9375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e6927acf0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:55:37.000Z'}}, {'blockNum': '0x7921ac', 'uniqueId': '0xdf20222d199c332d5274fdd397ba9bf61126ca8045aaa2ffc5e3aa9543c874f9:log:19', 'hash': '0xdf20222d199c332d5274fdd397ba9bf61126ca8045aaa2ffc5e3aa9543c874f9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb8553b4f9147433dc979bcf10172097e369a9ad', 'value': 91.06886228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x021ed00e54', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:55:37.000Z'}}, {'blockNum': '0x7921c1', 'uniqueId': '0x85f6749c3471101a32de0817dec509b9d26abcbb1e483450bc1dfe6060d3f5bd:log:1', 'hash': '0x85f6749c3471101a32de0817dec509b9d26abcbb1e483450bc1dfe6060d3f5bd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 15439.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01677a975f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T15:59:13.000Z'}}, {'blockNum': '0x7921ca', 'uniqueId': '0x1a6852c6041d993e53823f20e3c2d88afce41d28e38e2d9a7bab2bafcc3d0a57:log:130', 'hash': '0x1a6852c6041d993e53823f20e3c2d88afce41d28e38e2d9a7bab2bafcc3d0a57', 'from': '0x6e51f95dbcc805950430acb5106a61191f40bbe1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2495.49696794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a1a522f1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:02:11.000Z'}}, {'blockNum': '0x7921cb', 'uniqueId': '0x04c37dba95ed5e60b735cf3edd2a2613a78053390a88b2b1cf5d5935fc45f267:log:98', 'hash': '0x04c37dba95ed5e60b735cf3edd2a2613a78053390a88b2b1cf5d5935fc45f267', 'from': '0x6e3bc50aa76102a79f9360a5c138079c5a9a7386', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 517.9205998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c0f0c1e4c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:02:14.000Z'}}, {'blockNum': '0x7921cd', 'uniqueId': '0x43b0e7c91f87ae51c309c1733711d33753af4cf19583332ea5f19651faf990a1:log:32', 'hash': '0x43b0e7c91f87ae51c309c1733711d33753af4cf19583332ea5f19651faf990a1', 'from': '0x4ed1b1ec63d29c6a26aabca98a4cff9da1d6a246', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 495.66319197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b8a62025d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:02:30.000Z'}}, {'blockNum': '0x7921cd', 'uniqueId': '0x5508b0c19031269ad9eafc9313aaf307d86648228ac4fa8d308e239fe9ebadc4:log:66', 'hash': '0x5508b0c19031269ad9eafc9313aaf307d86648228ac4fa8d308e239fe9ebadc4', 'from': '0x6e586c5bbcc6589cd842cdaadae30b76b0e889fd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28086.5059676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028df09f0198', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:02:30.000Z'}}, {'blockNum': '0x7921d5', 'uniqueId': '0xba218eee2e599f43c15286f4541f0f5bcebcbfa1d2fb7a9eab3401ffc3fef3ce:log:2', 'hash': '0xba218eee2e599f43c15286f4541f0f5bcebcbfa1d2fb7a9eab3401ffc3fef3ce', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8ff04eb7c1dee52af72d4bb60138424364acb740', 'value': 193.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0481599180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:03:27.000Z'}}, {'blockNum': '0x7921d5', 'uniqueId': '0xdb99de59636675775709d2d8ebf5705b98b150301a96e2e51bacff88ada96c16:log:3', 'hash': '0xdb99de59636675775709d2d8ebf5705b98b150301a96e2e51bacff88ada96c16', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3af61ae0cbcef774fc153aa03da8b1a86986e2b5', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:03:27.000Z'}}, {'blockNum': '0x792205', 'uniqueId': '0x4abd75b9040187b3ef070dc6b80805ca61c3bfd3f0a1b5630fcf698c9f5daa93:log:135', 'hash': '0x4abd75b9040187b3ef070dc6b80805ca61c3bfd3f0a1b5630fcf698c9f5daa93', 'from': '0x6e5d3da60a7ec5383e950dfe3b8b8d27350db581', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 367.24548446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x088cf4235e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:12:17.000Z'}}, {'blockNum': '0x792207', 'uniqueId': '0x2b48b2523bfa9184e51383edcd8ab1e44a33a4a2d3b09bcde5db671c960630be:log:32', 'hash': '0x2b48b2523bfa9184e51383edcd8ab1e44a33a4a2d3b09bcde5db671c960630be', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15439.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01677a975f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:12:37.000Z'}}, {'blockNum': '0x792207', 'uniqueId': '0x064a05d89f36efae9e0e5056effcfb958293d1010b3e95054784b674865e779f:log:104', 'hash': '0x064a05d89f36efae9e0e5056effcfb958293d1010b3e95054784b674865e779f', 'from': '0x6e52d7dac535a9a60d144c08a71b4bfc363dbf1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080b572980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:12:37.000Z'}}, {'blockNum': '0x79220a', 'uniqueId': '0x1eaf33e06860abb2d74d1d935e50707a49e58aebdd9fe2461fae8620ba408f56:log:9', 'hash': '0x1eaf33e06860abb2d74d1d935e50707a49e58aebdd9fe2461fae8620ba408f56', 'from': '0x6e663fc21eced6453b59c202737752df820c7101', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 618.9375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e6927acf0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:12:55.000Z'}}, {'blockNum': '0x79220e', 'uniqueId': '0x5c72957c8a783b3f5f45f50762df3b2c6d4e0bc145aaf8881064929f07a0473c:log:2', 'hash': '0x5c72957c8a783b3f5f45f50762df3b2c6d4e0bc145aaf8881064929f07a0473c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xefe5fdb9885e70e066237a341d582c8d837e2476', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d1dfe780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:13:35.000Z'}}, {'blockNum': '0x79221c', 'uniqueId': '0xb6a5956bcc7902d4710df2d24dd00bad5b38ac7c87de47319acfa96c5c04365a:log:13', 'hash': '0xb6a5956bcc7902d4710df2d24dd00bad5b38ac7c87de47319acfa96c5c04365a', 'from': '0xefe5fdb9885e70e066237a341d582c8d837e2476', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d1dfe780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:16:48.000Z'}}, {'blockNum': '0x792228', 'uniqueId': '0x5d4d099f9db15bdcce4052916be6eb60273350ab258119d77fa0c38ba12c52e9:log:9', 'hash': '0x5d4d099f9db15bdcce4052916be6eb60273350ab258119d77fa0c38ba12c52e9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 32749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fa7f404d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:19:43.000Z'}}, {'blockNum': '0x792230', 'uniqueId': '0xa35a3280152b089d41fcaea6554d00ef3f03ee40ddd142679ab0360bcf6c8c2e:log:0', 'hash': '0xa35a3280152b089d41fcaea6554d00ef3f03ee40ddd142679ab0360bcf6c8c2e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c3bf620157a626ff2c740d84a8cdbb80461a05f', 'value': 95.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0239396f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:21:46.000Z'}}, {'blockNum': '0x792233', 'uniqueId': '0x033cb2a5f2583cda762e0314b2814cae0d240ddd69b413d67220556e88c27982:log:66', 'hash': '0x033cb2a5f2583cda762e0314b2814cae0d240ddd69b413d67220556e88c27982', 'from': '0x1b18e579d5a5dcf7a133ff6f8016eebae0433fc5', 'to': '0x0141db81dca16d472b5016124df5a184da902a04', 'value': 545.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cb23dc480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:22:43.000Z'}}, {'blockNum': '0x792233', 'uniqueId': '0x84305c4fa4adcfa6d67652ff159b4f5bf485479f9e49db0eb2b9bc693f07d43e:log:80', 'hash': '0x84305c4fa4adcfa6d67652ff159b4f5bf485479f9e49db0eb2b9bc693f07d43e', 'from': '0x3af61ae0cbcef774fc153aa03da8b1a86986e2b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:22:43.000Z'}}, {'blockNum': '0x79223b', 'uniqueId': '0x76058ecc1822d0b3190350d21cd089af23be5bf98bdb7e76a48281293198e0b5:log:1', 'hash': '0x76058ecc1822d0b3190350d21cd089af23be5bf98bdb7e76a48281293198e0b5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ec882812357881e9077cf59b57178d7d437b639', 'value': 496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f4f9e40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:23:59.000Z'}}, {'blockNum': '0x792252', 'uniqueId': '0xb6a0707a11e8f335a28585448f6a0c5da90703391661d332dc64f782a8198864:log:1', 'hash': '0xb6a0707a11e8f335a28585448f6a0c5da90703391661d332dc64f782a8198864', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4b997bad6967b9f874942e02387b38611cbf04d4', 'value': 2495.83021618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a1c4eae32', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:29:51.000Z'}}, {'blockNum': '0x792252', 'uniqueId': '0x856b0289d7fe3567f3b39c7c945c2dea41e32f9004603d3886fd57f8ee470c10:log:2', 'hash': '0x856b0289d7fe3567f3b39c7c945c2dea41e32f9004603d3886fd57f8ee470c10', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x713bf42eadc6efbf52d6a015d2255e0b24f39d92', 'value': 796.0563953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1288dda96a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:29:51.000Z'}}, {'blockNum': '0x79225c', 'uniqueId': '0x23cb78234ea387105c72ba510e8966f6a4abb909d84601d58e0136bd3a8cb56c:log:1', 'hash': '0x23cb78234ea387105c72ba510e8966f6a4abb909d84601d58e0136bd3a8cb56c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x678c8d1f88f751c8989e77528a114d9fabb89928', 'value': 295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e1513780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:31:43.000Z'}}, {'blockNum': '0x79225e', 'uniqueId': '0xca39e6299347f8d61bbda3c434ddd87addd5f3d9aedd73bc616f8aa6a64bb63d:log:67', 'hash': '0xca39e6299347f8d61bbda3c434ddd87addd5f3d9aedd73bc616f8aa6a64bb63d', 'from': '0x6ec882812357881e9077cf59b57178d7d437b639', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f4f9e40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:32:17.000Z'}}, {'blockNum': '0x79226b', 'uniqueId': '0x374cc202d437a3d7429de7792faae4d8da3ad971310126c70c5c5144c53d5866:log:6', 'hash': '0x374cc202d437a3d7429de7792faae4d8da3ad971310126c70c5c5144c53d5866', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x755d6c7b193275cef386afb21cf79c0917fd4c08', 'value': 1344.31272186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f4cba6cfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:35:47.000Z'}}, {'blockNum': '0x792278', 'uniqueId': '0x76086a5f3662b39cbc32488ac96ec9855980dbb0cf7d633ba35f3e3b82ce7471:log:16', 'hash': '0x76086a5f3662b39cbc32488ac96ec9855980dbb0cf7d633ba35f3e3b82ce7471', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeb3dc94506b4719b212fb46ed8b5383ed2d7a226', 'value': 252.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05e2359980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:38:25.000Z'}}, {'blockNum': '0x79228f', 'uniqueId': '0xe9289d50944ee993d6b46854fac5ab2be22d45b3b6183c83d9a6b32f07b12fb2:log:101', 'hash': '0xe9289d50944ee993d6b46854fac5ab2be22d45b3b6183c83d9a6b32f07b12fb2', 'from': '0x755d6c7b193275cef386afb21cf79c0917fd4c08', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1344.31272186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f4cba6cfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:42:23.000Z'}}, {'blockNum': '0x792297', 'uniqueId': '0x06c98959b6cce1d85f90b8af00045f5b6cc6cb84ba8db712d947c508314405a9:log:0', 'hash': '0x06c98959b6cce1d85f90b8af00045f5b6cc6cb84ba8db712d947c508314405a9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c80090be4151e2215be257fe4124e20f08d3d12', 'value': 456.39001447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aa04be567', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:43:50.000Z'}}, {'blockNum': '0x79229d', 'uniqueId': '0x3d8263254bdb498b2eb2bada86afa86485cb728b3f0c56fb67b38cd3fa90154d:log:0', 'hash': '0x3d8263254bdb498b2eb2bada86afa86485cb728b3f0c56fb67b38cd3fa90154d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x46c6f0250a956b085cf681329afe5a9c18b25550', 'value': 382.55622346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e83678ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:46:02.000Z'}}, {'blockNum': '0x7922ad', 'uniqueId': '0x49494214e196f26329a481a307825ada60fea255d2f44576783bcb4b208a66a5:log:1', 'hash': '0x49494214e196f26329a481a307825ada60fea255d2f44576783bcb4b208a66a5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c15866dec45723ef04963524a376997ac12ccc0', 'value': 256.8507089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05faf3142a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:49:57.000Z'}}, {'blockNum': '0x7922af', 'uniqueId': '0xb3089a8ff132a3d22da9f39760bf468a4157e24ab98bd9f2b9d7692c719e895e:log:76', 'hash': '0xb3089a8ff132a3d22da9f39760bf468a4157e24ab98bd9f2b9d7692c719e895e', 'from': '0x79b924aa1f1ff821bbab7774167e056cd82e78fa', 'to': '0x7a903507a973a2c1d915de6637dd7222f40545cc', 'value': 81.14769754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e3ad8f5a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:51:37.000Z'}}, {'blockNum': '0x7922b3', 'uniqueId': '0xb58b1e13c01df434818533259dcb579a34502dca3b50b30b7327ee3a8beb0ffc:log:2', 'hash': '0xb58b1e13c01df434818533259dcb579a34502dca3b50b30b7327ee3a8beb0ffc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf0a5dc2596badd5f3074afadb5bce48f1323e7d1', 'value': 1188.24350197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1baa7bb1f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:52:06.000Z'}}, {'blockNum': '0x7922b3', 'uniqueId': '0x1b0c24c01797ee498effd11b327812476cfcd1fc0247e8a904176c619324a276:log:151', 'hash': '0x1b0c24c01797ee498effd11b327812476cfcd1fc0247e8a904176c619324a276', 'from': '0x4b997bad6967b9f874942e02387b38611cbf04d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2495.83021618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a1c4eae32', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:52:06.000Z'}}, {'blockNum': '0x7922b7', 'uniqueId': '0xf6e2bf3ab80b6925b170cb0c1f3a213c68cb144c0e4aad99c12673a0346e2564:log:135', 'hash': '0xf6e2bf3ab80b6925b170cb0c1f3a213c68cb144c0e4aad99c12673a0346e2564', 'from': '0x6c80090be4151e2215be257fe4124e20f08d3d12', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 456.39001447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0aa04be567', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:53:13.000Z'}}, {'blockNum': '0x7922cf', 'uniqueId': '0x96dad1b7e9b130e67a3f10f9808524741ed4f54fef5f2e82dd74ce10264771da:log:1', 'hash': '0x96dad1b7e9b130e67a3f10f9808524741ed4f54fef5f2e82dd74ce10264771da', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4b94832f94955d5c870e3d44e005815e7e69887c', 'value': 205.41161616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04c8594090', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:58:06.000Z'}}, {'blockNum': '0x7922cf', 'uniqueId': '0x081352e7a2422583d7243746f5055bdca8fe6bf1f2518781c64436e726769e50:log:2', 'hash': '0x081352e7a2422583d7243746f5055bdca8fe6bf1f2518781c64436e726769e50', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x685da83c76c1b5288a7c93373d504191cb701f8b', 'value': 4000.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5d24d69080', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T16:58:06.000Z'}}, {'blockNum': '0x7922e5', 'uniqueId': '0x81c7bee793f52e95b538d46c80c4f1402307f046b8fd0e925e0f86ba7617379b:log:153', 'hash': '0x81c7bee793f52e95b538d46c80c4f1402307f046b8fd0e925e0f86ba7617379b', 'from': '0x46c6f0250a956b085cf681329afe5a9c18b25550', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 382.55622346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08e83678ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:02:24.000Z'}}, {'blockNum': '0x792309', 'uniqueId': '0x61944bc32ebfd73a4fa34bb8cbbfcb0928930e231e338aa6a6f55f9ac6f4f402:log:4', 'hash': '0x61944bc32ebfd73a4fa34bb8cbbfcb0928930e231e338aa6a6f55f9ac6f4f402', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xce0515bdadad6a26fdf8e5a4cf1ff75fd37e2c5a', 'value': 293.38589904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06d4b75ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:10:38.000Z'}}, {'blockNum': '0x792309', 'uniqueId': '0x884ef3450f5f2017618ecc9175b662512497c1cff26f73eb20ca5c5f1fc5847b:log:5', 'hash': '0x884ef3450f5f2017618ecc9175b662512497c1cff26f73eb20ca5c5f1fc5847b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7dcde0b3a83d35df6ada09a85857280e33d4397d', 'value': 695.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103180c780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:10:38.000Z'}}, {'blockNum': '0x792328', 'uniqueId': '0x6b93a910ba93eeb2aa7a7657faaf62067f0b07b05574fca29ce03921d8175959:log:5', 'hash': '0x6b93a910ba93eeb2aa7a7657faaf62067f0b07b05574fca29ce03921d8175959', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x08721cc30c20c0bacac1e77b35e567e2a655cf43', 'value': 265.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x062e80d980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:17:59.000Z'}}, {'blockNum': '0x792334', 'uniqueId': '0xd15859d1c83c1eef88115ba558d28c95fb0501a39b0479d2be2d36ac0be34071:log:1', 'hash': '0xd15859d1c83c1eef88115ba558d28c95fb0501a39b0479d2be2d36ac0be34071', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba54360900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:20:07.000Z'}}, {'blockNum': '0x792335', 'uniqueId': '0xdc4f3dcf893b5cad0598897e7131706ef7fcc3f702ba8db85775fc634a052bcf:log:0', 'hash': '0xdc4f3dcf893b5cad0598897e7131706ef7fcc3f702ba8db85775fc634a052bcf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27657.10378556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0283f12f463c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:20:51.000Z'}}, {'blockNum': '0x79233b', 'uniqueId': '0xce2498e24f8519beacacce5b20bd089f582719a955508d7c4244ef35234ce793:log:0', 'hash': '0xce2498e24f8519beacacce5b20bd089f582719a955508d7c4244ef35234ce793', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 32704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02f97307c000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:22:20.000Z'}}, {'blockNum': '0x79233b', 'uniqueId': '0x044eca086e26ef3e8fb5a0756f1e5b5585332f95ada66fabe6262bad233304c0:log:6', 'hash': '0x044eca086e26ef3e8fb5a0756f1e5b5585332f95ada66fabe6262bad233304c0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xae4b5285804f5a9b465eece03d381c28c7e01411', 'value': 20.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a308480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:22:20.000Z'}}, {'blockNum': '0x79235a', 'uniqueId': '0xaef65fffc011ba471d342bc9ad25e12fcc9b433a65fd8b6242b5bdb245eb803b:log:4', 'hash': '0xaef65fffc011ba471d342bc9ad25e12fcc9b433a65fd8b6242b5bdb245eb803b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e70235b459f620e8b0a9e6ec8c666cbae2acfa3', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:28:44.000Z'}}, {'blockNum': '0x792363', 'uniqueId': '0xb0e00fa745db62d961dd73f0690e16e724a58e595a36e5a9c60915783c31ec50:log:48', 'hash': '0xb0e00fa745db62d961dd73f0690e16e724a58e595a36e5a9c60915783c31ec50', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02f97307c000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:32:12.000Z'}}, {'blockNum': '0x792363', 'uniqueId': '0x7cd53d3d8454724afa3ff9cb95c7f6db6ff29b74e34d7edb54d3dec25f7ce138:log:93', 'hash': '0x7cd53d3d8454724afa3ff9cb95c7f6db6ff29b74e34d7edb54d3dec25f7ce138', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27657.10378556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0283f12f463c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:32:12.000Z'}}, {'blockNum': '0x792364', 'uniqueId': '0xc6961dc97229dddc930df2ce73703e4e0aa2b239ffaa1940c851139621986c68:log:73', 'hash': '0xc6961dc97229dddc930df2ce73703e4e0aa2b239ffaa1940c851139621986c68', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba54360900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:32:35.000Z'}}, {'blockNum': '0x792370', 'uniqueId': '0xce60f6b36069fc908aa68ff402c59534a860583208cdb5dc4eeff878bc1e07da:log:2', 'hash': '0xce60f6b36069fc908aa68ff402c59534a860583208cdb5dc4eeff878bc1e07da', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e7422304c1478b6f9a625f1dda9159fe82ad58f', 'value': 1291.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e11f09b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:34:16.000Z'}}, {'blockNum': '0x792370', 'uniqueId': '0xd647e2d9cf6f4004715f00c2761a4664a0fde63f2655dad1abedd7c2972ed745:log:3', 'hash': '0xd647e2d9cf6f4004715f00c2761a4664a0fde63f2655dad1abedd7c2972ed745', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e7737d2088267228ab3107841df7b45f7200088', 'value': 4295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64032cd780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:34:16.000Z'}}, {'blockNum': '0x792383', 'uniqueId': '0xbaf046a86dc3c1e642e0429d9feb850b09116292cc34f8762938ced871e1067e:log:2', 'hash': '0xbaf046a86dc3c1e642e0429d9feb850b09116292cc34f8762938ced871e1067e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e7a70226345852f5ebd7db671073b17c10aa612', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:38:21.000Z'}}, {'blockNum': '0x79238c', 'uniqueId': '0x8271dd4fd38cbde4df7edbefacf7220bca9f9cb88680d21f4a29e56b17c0122d:log:2', 'hash': '0x8271dd4fd38cbde4df7edbefacf7220bca9f9cb88680d21f4a29e56b17c0122d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8ff04eb7c1dee52af72d4bb60138424364acb740', 'value': 622.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e7f94cb80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:40:02.000Z'}}, {'blockNum': '0x792391', 'uniqueId': '0x47135fbba12e6fd1a4f4baf7409009b7967c13bf60c207888e09b1fe0b0b2cff:log:0', 'hash': '0x47135fbba12e6fd1a4f4baf7409009b7967c13bf60c207888e09b1fe0b0b2cff', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfa07a771f13f38e1b53aea2ffb7afbe3928bc168', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:40:27.000Z'}}, {'blockNum': '0x792391', 'uniqueId': '0x276bdf34c7155178dd6256abf65742b205ebaddd8e255bcfa46806aa69eb79d5:log:1', 'hash': '0x276bdf34c7155178dd6256abf65742b205ebaddd8e255bcfa46806aa69eb79d5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4e73ccaa20a51ed3bada2c0c22f293df26640383', 'value': 721.59866375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10cd102e07', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:40:27.000Z'}}, {'blockNum': '0x7923a2', 'uniqueId': '0xc00920fc587129c0fc6ab878ba46827dbc4325a1ad23c75d911642033cbf9616:log:26', 'hash': '0xc00920fc587129c0fc6ab878ba46827dbc4325a1ad23c75d911642033cbf9616', 'from': '0x833b21784f77dffb347fcc55b8b236392342a648', 'to': '0x753f064680a0bd80bcd61768b7a6edf41926b7a6', 'value': 95.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0239396f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:46:16.000Z'}}, {'blockNum': '0x7923a5', 'uniqueId': '0xeaf08046dac362dde1658845e2c5a69fb4c385722aeb55f6793776aedf5a5770:log:0', 'hash': '0xeaf08046dac362dde1658845e2c5a69fb4c385722aeb55f6793776aedf5a5770', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c6713d30eefa1c873af7d0a3d5f73fa7d3802d0', 'value': 170.30066591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03f712319f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:46:35.000Z'}}, {'blockNum': '0x7923bf', 'uniqueId': '0xa9a0dafef4ff11138bb9e2bc1d027b124fac7363bb6d057bd7be3ff9ff6e906d:log:51', 'hash': '0xa9a0dafef4ff11138bb9e2bc1d027b124fac7363bb6d057bd7be3ff9ff6e906d', 'from': '0xfa07a771f13f38e1b53aea2ffb7afbe3928bc168', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:52:02.000Z'}}, {'blockNum': '0x7923bf', 'uniqueId': '0x976d75d0d5bf0d9c11c00952542cbbb821a06e8037cfd486cf97dcf59d9faede:log:52', 'hash': '0x976d75d0d5bf0d9c11c00952542cbbb821a06e8037cfd486cf97dcf59d9faede', 'from': '0x6e7422304c1478b6f9a625f1dda9159fe82ad58f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1291.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e11f09b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:52:02.000Z'}}, {'blockNum': '0x7923bf', 'uniqueId': '0xdd82f34c6f76a115eba16f2c8e76bb69b1a35e1872c813b39f09b8c78b855aa2:log:53', 'hash': '0xdd82f34c6f76a115eba16f2c8e76bb69b1a35e1872c813b39f09b8c78b855aa2', 'from': '0x6e7737d2088267228ab3107841df7b45f7200088', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64032cd780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:52:02.000Z'}}, {'blockNum': '0x7923bf', 'uniqueId': '0x12667be9657902bfa57f87c8d47b7fedde1722fe4d6f69ce0c3f960be2489ee7:log:95', 'hash': '0x12667be9657902bfa57f87c8d47b7fedde1722fe4d6f69ce0c3f960be2489ee7', 'from': '0x6e70235b459f620e8b0a9e6ec8c666cbae2acfa3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:52:02.000Z'}}, {'blockNum': '0x7923cc', 'uniqueId': '0xdd5d4cc22ef953c2e25f00b9a9e6a510dff28f6462515dd519d70556656453c3:log:70', 'hash': '0xdd5d4cc22ef953c2e25f00b9a9e6a510dff28f6462515dd519d70556656453c3', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 101251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09356efd2300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:56:04.000Z'}}, {'blockNum': '0x7923d0', 'uniqueId': '0x9ea069c6ff9614707083e34ec387ca601f263300b40e11e774a6cd7ea9398a23:log:18', 'hash': '0x9ea069c6ff9614707083e34ec387ca601f263300b40e11e774a6cd7ea9398a23', 'from': '0xeff1b82f133871754e829bd8e48dbda158997e3b', 'to': '0x0eab49070fae30a5c20a83a4d058c7b1874948e9', 'value': 6518.769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x97c6e41ca0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T17:56:49.000Z'}}, {'blockNum': '0x7923e1', 'uniqueId': '0x918d598fe99fc8ed42513736df1e5a2b1d069d64c623d46b64084fa0a7ea9077:log:2', 'hash': '0x918d598fe99fc8ed42513736df1e5a2b1d069d64c623d46b64084fa0a7ea9077', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 11246.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0105db8e4b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:45.000Z'}}, {'blockNum': '0x7923e1', 'uniqueId': '0xc3e78ddf3f7af4d5a0d682ad83e4e063ce59d64e003d18bfbfda73041552207a:log:3', 'hash': '0xc3e78ddf3f7af4d5a0d682ad83e4e063ce59d64e003d18bfbfda73041552207a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x050d6bb900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:45.000Z'}}, {'blockNum': '0x7923e1', 'uniqueId': '0x83c1ab2f2efda68c86ad0bd7dace6e702ed58a8d1e661ac76632ab17b9fc0151:log:4', 'hash': '0x83c1ab2f2efda68c86ad0bd7dace6e702ed58a8d1e661ac76632ab17b9fc0151', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 15971.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0173dd8ef380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:45.000Z'}}, {'blockNum': '0x7923e1', 'uniqueId': '0x0595e9fc56ae0df4e67bdc961f4f13de226cc474722706296ccb7cc084e0c19f:log:5', 'hash': '0x0595e9fc56ae0df4e67bdc961f4f13de226cc474722706296ccb7cc084e0c19f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 11437.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010a4ccffd80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:45.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0x03db130d53ba175ad6fc324f6f1f0ef5b9803a3201919781922a1f1718075fcb:log:10', 'hash': '0x03db130d53ba175ad6fc324f6f1f0ef5b9803a3201919781922a1f1718075fcb', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 290.51590094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06c39c15ce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0xe6b7bb9107deb19cb0a924046900e7d84cfe1042da822392da92dd4e7588b0c7:log:12', 'hash': '0xe6b7bb9107deb19cb0a924046900e7d84cfe1042da822392da92dd4e7588b0c7', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 204.95836025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04c5a5a379', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0x829fcbf9189aee705b2cbbbaca3b9402c831077163bf4a73eaeea8c09966a3f7:log:14', 'hash': '0x829fcbf9189aee705b2cbbbaca3b9402c831077163bf4a73eaeea8c09966a3f7', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 138.92725151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x033c12299f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0x3aed49fbc76d4730c7332707f805b3c224c85dd7f0edea3911f1fe82bdef19e8:log:42', 'hash': '0x3aed49fbc76d4730c7332707f805b3c224c85dd7f0edea3911f1fe82bdef19e8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 1442.77653447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21979e47c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e5', 'uniqueId': '0x1d23d140fefe043d03ee6d4e5d2556853a5d1096ae2f24fe138395983bd6503d:log:76', 'hash': '0x1d23d140fefe043d03ee6d4e5d2556853a5d1096ae2f24fe138395983bd6503d', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 26823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02708589e700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:00:53.000Z'}}, {'blockNum': '0x7923e8', 'uniqueId': '0x19cbd2a8898372724d85e252df6c3a18778b8676846adf89996803c06fb1d111:log:73', 'hash': '0x19cbd2a8898372724d85e252df6c3a18778b8676846adf89996803c06fb1d111', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 634.4015127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ec553e2e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:01:31.000Z'}}, {'blockNum': '0x7923ec', 'uniqueId': '0xe268caae9ac81b6b45962823753be76aceea348036031bae4b9a61c7679e5fbd:log:11', 'hash': '0xe268caae9ac81b6b45962823753be76aceea348036031bae4b9a61c7679e5fbd', 'from': '0x6e7a70226345852f5ebd7db671073b17c10aa612', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:06.000Z'}}, {'blockNum': '0x7923ec', 'uniqueId': '0x039107639111076e97ce37d411af8b4b97cb0b2096ab6a6c18d16af43f5c1348:log:12', 'hash': '0x039107639111076e97ce37d411af8b4b97cb0b2096ab6a6c18d16af43f5c1348', 'from': '0x4e73ccaa20a51ed3bada2c0c22f293df26640383', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 721.59866375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10cd102e07', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:06.000Z'}}, {'blockNum': '0x7923ec', 'uniqueId': '0xe6d708a9c8ce75ca23691d01e6109447eb3cd688496291b8b6c13e73213ad5be:log:29', 'hash': '0xe6d708a9c8ce75ca23691d01e6109447eb3cd688496291b8b6c13e73213ad5be', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x206fa533745f133904480948283f3515dc625e7b', 'value': 9998.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe8ceaf2eff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:06.000Z'}}, {'blockNum': '0x7923ec', 'uniqueId': '0x16be31a1ff78efb93f11c6a35c6c4d9a0ba8c7a6dfe90aa3bf07ac6f946e369c:log:30', 'hash': '0x16be31a1ff78efb93f11c6a35c6c4d9a0ba8c7a6dfe90aa3bf07ac6f946e369c', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 18860.98372101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b724393605', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:06.000Z'}}, {'blockNum': '0x7923ed', 'uniqueId': '0xfe892ccac0ed0b03f4cb8fa985c50bdca1681f809e433b33d137bbfc8fd3f1c1:log:0', 'hash': '0xfe892ccac0ed0b03f4cb8fa985c50bdca1681f809e433b33d137bbfc8fd3f1c1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 7056.461509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa44bc9c4f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:16.000Z'}}, {'blockNum': '0x7923ed', 'uniqueId': '0xd78fa46a8f2308aa83a77d9ff65dd77ac0413ed3b36195ad81787917f6d1f0ee:log:1', 'hash': '0xd78fa46a8f2308aa83a77d9ff65dd77ac0413ed3b36195ad81787917f6d1f0ee', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 18722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b3e7d0e200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:16.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x5e0845b2aad742302a453fd24f17d4f51d890ead46bef2b596ace35d43e5930b:log:0', 'hash': '0x5e0845b2aad742302a453fd24f17d4f51d890ead46bef2b596ace35d43e5930b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8386.61399577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc3441d6419', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x2f95a0ddd03a33fce157000ecb7779799b91da6c802612fe110c019bfba3f615:log:1', 'hash': '0x2f95a0ddd03a33fce157000ecb7779799b91da6c802612fe110c019bfba3f615', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 16260.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017a9821f480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x2a1ec56db93c936359454f8da0f99494ea651336807c3edd56a89d18435ad9f5:log:2', 'hash': '0x2a1ec56db93c936359454f8da0f99494ea651336807c3edd56a89d18435ad9f5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 6662.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b1f983680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x332f0c4faa92df01a5404f1695ec942342e0397baa3891d04af502c177469abe:log:3', 'hash': '0x332f0c4faa92df01a5404f1695ec942342e0397baa3891d04af502c177469abe', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 3833.753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5942f2d5a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x320a2b635b845acc758eb80d0713fe8dc247a4e61776e3f498c7d2c1f6d00cb4:log:4', 'hash': '0x320a2b635b845acc758eb80d0713fe8dc247a4e61776e3f498c7d2c1f6d00cb4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 2580.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c14fa8480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xe765d24b0c7e5e0a73d2ced1fcd885fa91a335e0da8406bb007a8da6e8e40dd2:log:5', 'hash': '0xe765d24b0c7e5e0a73d2ced1fcd885fa91a335e0da8406bb007a8da6e8e40dd2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032a9f8800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xe0140d9b67cec0f4b21a9b418e08e05f4eecbcd0736f2af7ac237d49d5ec416b:log:6', 'hash': '0xe0140d9b67cec0f4b21a9b418e08e05f4eecbcd0736f2af7ac237d49d5ec416b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x682c1050fc44411283c2c3e85e7dd2ede5e90a97', 'value': 795.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12858cab80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x56f0c3b7945da6dcd668c07fed576b6a33b6757c7c0a08e365cda4ef5b4ac6a6:log:7', 'hash': '0x56f0c3b7945da6dcd668c07fed576b6a33b6757c7c0a08e365cda4ef5b4ac6a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 53456.55624939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04dca1e794eb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xc790cd3ff33dfe22ef430ab3cd6e83d27c1fc3a260a1d202adfea290f3301892:log:8', 'hash': '0xc790cd3ff33dfe22ef430ab3cd6e83d27c1fc3a260a1d202adfea290f3301892', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84720a2f005cb5481dcd12431cdf92574e839a55', 'value': 3858.18060244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x59d48c65d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xda59f54eea4c68f269821da9d66951e85d3db38eebf7ee610e27e27bc6937b0f:log:9', 'hash': '0xda59f54eea4c68f269821da9d66951e85d3db38eebf7ee610e27e27bc6937b0f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb2fd2f7d87b3cf9b1642c54a52f68503ce215791', 'value': 18.75189357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6fc51e6d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0xe751bf5485012a99a894109d36aac4123d12ca99c8058e1addfca5e398ddbbef:log:10', 'hash': '0xe751bf5485012a99a894109d36aac4123d12ca99c8058e1addfca5e398ddbbef', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 493.01243781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b7a954785', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f1', 'uniqueId': '0x1e045fed224bdb47b64d0c455a78171091e2e486162723c38fa9cfc2f0613158:log:118', 'hash': '0x1e045fed224bdb47b64d0c455a78171091e2e486162723c38fa9cfc2f0613158', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03cb8e4300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:02:50.000Z'}}, {'blockNum': '0x7923f3', 'uniqueId': '0x67c5b231104acdafe7597aeb2312e7b9919068b177271c7d1f6684c956fc4f0f:log:4', 'hash': '0x67c5b231104acdafe7597aeb2312e7b9919068b177271c7d1f6684c956fc4f0f', 'from': '0x8c240d98e179a9e283a2394e5969a2eea95ca810', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbebc2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:03:55.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0x34d348a7963ec5d74eddfe9fbcb9ff169d5e7a5926af6b1f95f252ab3b0f3a19:log:21', 'hash': '0x34d348a7963ec5d74eddfe9fbcb9ff169d5e7a5926af6b1f95f252ab3b0f3a19', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 2989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4597d40d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0x4fe224dbc1243f5542ce1ca32e216d975e8d99091c41740774d6ab576988627d:log:23', 'hash': '0x4fe224dbc1243f5542ce1ca32e216d975e8d99091c41740774d6ab576988627d', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 31518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ddd5eb5e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0xa0e4d52a0c9f2193b9a112c366ee498e80268c439cfbb16f551a8dba6c104809:log:24', 'hash': '0xa0e4d52a0c9f2193b9a112c366ee498e80268c439cfbb16f551a8dba6c104809', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 3611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x54133cbb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0xe5f6171c3b8a9fcc8a6bd8f24e5cd0638b320564a2ed0871552c6d9b8c1a38a4:log:90', 'hash': '0xe5f6171c3b8a9fcc8a6bd8f24e5cd0638b320564a2ed0871552c6d9b8c1a38a4', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x06458be2c1aeb1519a5ee1c2341062e269b100f8', 'value': 170.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03fad27b40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f4', 'uniqueId': '0xd193207e9b3cec67e89fe28c9c181db52209a794b1fb48948ee6b6dfd6507dfa:log:92', 'hash': '0xd193207e9b3cec67e89fe28c9c181db52209a794b1fb48948ee6b6dfd6507dfa', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'value': 20840.85144383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e53d279b3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:05.000Z'}}, {'blockNum': '0x7923f5', 'uniqueId': '0x39be49267bb51ed018ceb5e42e4e61da2658c968552fe6d02631ebab08fd6418:log:51', 'hash': '0x39be49267bb51ed018ceb5e42e4e61da2658c968552fe6d02631ebab08fd6418', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 7181.13382836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa732e4a1b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:18.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0xb80bcd56aa1985d13387d4daac6e6045385914f27a281480554dbc093591a673:log:1', 'hash': '0xb80bcd56aa1985d13387d4daac6e6045385914f27a281480554dbc093591a673', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb2fd2f7d87b3cf9b1642c54a52f68503ce215791', 'value': 2747.56366368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ff8c17020', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x39133b42f8dee4884680f6b5b1172bca0d40565e70b6f7e9f314308ed8509be4:log:2', 'hash': '0x39133b42f8dee4884680f6b5b1172bca0d40565e70b6f7e9f314308ed8509be4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x287e6d4dd4d57ede08b9353e13d51d9f7f1f95fa', 'value': 7120.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa5c97cc080', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x95d47b4c387a45f1f753e8db43f2ffb4ad9611ead76949cd3a3c922d51f09377:log:3', 'hash': '0x95d47b4c387a45f1f753e8db43f2ffb4ad9611ead76949cd3a3c922d51f09377', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x476ec61a27431dcf120f72b7a9f241ce61daa44c', 'value': 10552.77512459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf5b370f70b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x45e94483e31f6e7fb12f2da75d967eea0fa51457d86e091c3771de89de5683d4:log:4', 'hash': '0x45e94483e31f6e7fb12f2da75d967eea0fa51457d86e091c3771de89de5683d4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0bba108df4d8411494155fa913365012f88fd3dc', 'value': 45.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010f337d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x7b2d1d7e8b8e625a9c629dd8712afa40b835c5a83726b4069301d2b8f3eec588:log:5', 'hash': '0x7b2d1d7e8b8e625a9c629dd8712afa40b835c5a83726b4069301d2b8f3eec588', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x287e6d4dd4d57ede08b9353e13d51d9f7f1f95fa', 'value': 7627.4827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb19756f5b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0xb82f2db8f360a31059e0241703093c9162ceb317b3332f031cda7dc79db2351c:log:6', 'hash': '0xb82f2db8f360a31059e0241703093c9162ceb317b3332f031cda7dc79db2351c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x25403bf9d83adcafde40827072efeb3e13499943', 'value': 45679.6507625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04278fef8b1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x621cc408b859bb4bd952280a7a4a8c9af835efaa6c5dc302339e4d414148b96b:log:7', 'hash': '0x621cc408b859bb4bd952280a7a4a8c9af835efaa6c5dc302339e4d414148b96b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 1171.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b46af2380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923f8', 'uniqueId': '0x31595a84f89cc03b8b6621e472d84b49c3ef0762f90712eaac4d93b23e7a442f:log:8', 'hash': '0x31595a84f89cc03b8b6621e472d84b49c3ef0762f90712eaac4d93b23e7a442f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 8162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbe094fa200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:04:34.000Z'}}, {'blockNum': '0x7923fb', 'uniqueId': '0xacb540fea8a980ee5e60df762f3f2cd60a07c3c06cbfc39133eb2766f1ce9ac3:log:6', 'hash': '0xacb540fea8a980ee5e60df762f3f2cd60a07c3c06cbfc39133eb2766f1ce9ac3', 'from': '0x206fa533745f133904480948283f3515dc625e7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9998.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe8ceaf2eff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:05:28.000Z'}}, {'blockNum': '0x7923fb', 'uniqueId': '0x55aad49ab0c5b0f08f5d7d312c2765b2308e044258a31a7b3a8b19e1fa0e9d40:log:72', 'hash': '0x55aad49ab0c5b0f08f5d7d312c2765b2308e044258a31a7b3a8b19e1fa0e9d40', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x06458be2c1aeb1519a5ee1c2341062e269b100f8', 'value': 2139.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x31d2fa0c40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:05:28.000Z'}}, {'blockNum': '0x7923fb', 'uniqueId': '0xc010ae586621edeb70104d37460ce564181187421b2af640ab4df49edab38177:log:116', 'hash': '0xc010ae586621edeb70104d37460ce564181187421b2af640ab4df49edab38177', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 14703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x015654b58f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:05:28.000Z'}}, {'blockNum': '0x7923ff', 'uniqueId': '0x3c980d228a1218a319d939b7e889e5a9801b8e6fd0574ef699f64eafbef09133:log:0', 'hash': '0x3c980d228a1218a319d939b7e889e5a9801b8e6fd0574ef699f64eafbef09133', 'from': '0x8c240d98e179a9e283a2394e5969a2eea95ca810', 'to': '0x76e377e197da54a1d39f1acbc447fb3bd07bb971', 'value': 704.7490458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1068a1b404', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:18.000Z'}}, {'blockNum': '0x7923ff', 'uniqueId': '0x8c3d2acc1099f74c4ea4b402d1af8ea870d87e20623f0a6bb9565b413831c8c5:log:4', 'hash': '0x8c3d2acc1099f74c4ea4b402d1af8ea870d87e20623f0a6bb9565b413831c8c5', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 1545.6433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23fcc08210', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:18.000Z'}}, {'blockNum': '0x792401', 'uniqueId': '0x44bbb3f689c2fa6fd7eca0b2c88d507ba39634b669ee75c5c91e3dd5c7df7e70:log:3', 'hash': '0x44bbb3f689c2fa6fd7eca0b2c88d507ba39634b669ee75c5c91e3dd5c7df7e70', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 4747.30382791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6e8822c5c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:54.000Z'}}, {'blockNum': '0x792401', 'uniqueId': '0x917b15f2773d05484c2fa87b036756c7f1c46a2341174b12c8aee3708a89df13:log:4', 'hash': '0x917b15f2773d05484c2fa87b036756c7f1c46a2341174b12c8aee3708a89df13', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 1753.86086199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28d5d34b37', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:54.000Z'}}, {'blockNum': '0x792401', 'uniqueId': '0xc5730ab2f30de3f11952b90661733315a9cc74324f5e4c16f567318d249f71fb:log:5', 'hash': '0xc5730ab2f30de3f11952b90661733315a9cc74324f5e4c16f567318d249f71fb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf66c1e4a2be928b4bd6908c9421b507a3a5634fe', 'value': 2719.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f517baf80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:06:54.000Z'}}, {'blockNum': '0x792406', 'uniqueId': '0xb411b223b3b1a0654354467ab9e9490438beecf081940ba1b51555e688643546:log:62', 'hash': '0xb411b223b3b1a0654354467ab9e9490438beecf081940ba1b51555e688643546', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x5aba1b676d0109b10994459cd2c165ef73983463', 'value': 275.89199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x066c71c498', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:26.000Z'}}, {'blockNum': '0x792408', 'uniqueId': '0xe0b0d2a110b91b0201c5606181bfd675d88aa80cd08719029d8cf32654aba009:log:5', 'hash': '0xe0b0d2a110b91b0201c5606181bfd675d88aa80cd08719029d8cf32654aba009', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x2603a62d9232e387b53c3a166f3f21441fe5179e', 'value': 13257.80607892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0134aeaea394', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:48.000Z'}}, {'blockNum': '0x792408', 'uniqueId': '0x0477bbabeb82ac252c4fbf980d0113c803a093041b8c5f592e3657ac59751ad3:log:6', 'hash': '0x0477bbabeb82ac252c4fbf980d0113c803a093041b8c5f592e3657ac59751ad3', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 50482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0497602af200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:48.000Z'}}, {'blockNum': '0x792408', 'uniqueId': '0xa845417edbda138e449b9b6da8d50c78ad6ff63b9f046143f33fc5c295b2dff0:log:7', 'hash': '0xa845417edbda138e449b9b6da8d50c78ad6ff63b9f046143f33fc5c295b2dff0', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x2603a62d9232e387b53c3a166f3f21441fe5179e', 'value': 39038.449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x038cef49dca0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:48.000Z'}}, {'blockNum': '0x792408', 'uniqueId': '0xe0fb178c4b8ae7c4d4e2db655ebb3f50be8ca150da55deb583e5b0c4853363e5:log:18', 'hash': '0xe0fb178c4b8ae7c4d4e2db655ebb3f50be8ca150da55deb583e5b0c4853363e5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x30716256c590991775a48ab28dd4b899d6c95031', 'value': 97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02422a4100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:07:48.000Z'}}, {'blockNum': '0x79240d', 'uniqueId': '0xe4a04da59c1e6c423e26af7f6100739637ae05cc7acb744429aff097876b3293:log:1', 'hash': '0xe4a04da59c1e6c423e26af7f6100739637ae05cc7acb744429aff097876b3293', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14680.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0155cc4630c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:08:29.000Z'}}, {'blockNum': '0x79240d', 'uniqueId': '0xe23064feec2794a12f063b045283ee67376db3591ba5b4e7b7ce365984b3115f:log:2', 'hash': '0xe23064feec2794a12f063b045283ee67376db3591ba5b4e7b7ce365984b3115f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0bba108df4d8411494155fa913365012f88fd3dc', 'value': 445.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5f630d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:08:29.000Z'}}, {'blockNum': '0x79240d', 'uniqueId': '0xdc5192483fdc947d8a8f0e32751847b42d444bd2b1b7407b76ab4bd890736d59:log:3', 'hash': '0xdc5192483fdc947d8a8f0e32751847b42d444bd2b1b7407b76ab4bd890736d59', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 7604.31578132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb10d410c14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:08:29.000Z'}}, {'blockNum': '0x79240d', 'uniqueId': '0x2e1642dbc06ddcc6bc76e7a5cfded7b224463b6f3c5a9ba149bb6ff9397c1a65:log:4', 'hash': '0x2e1642dbc06ddcc6bc76e7a5cfded7b224463b6f3c5a9ba149bb6ff9397c1a65', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 7302.3537389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaa056b8942', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:08:29.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0xf0d8dea2fb632f207bb776c048209bb216b3d871e911f11c1da46f9779c0a50e:log:10', 'hash': '0xf0d8dea2fb632f207bb776c048209bb216b3d871e911f11c1da46f9779c0a50e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 407.682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x097df95d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0x5bbc795a145293f17ffa55b3559fc1fb6f2707e877c2e5650a9286daa73761b7:log:11', 'hash': '0x5bbc795a145293f17ffa55b3559fc1fb6f2707e877c2e5650a9286daa73761b7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 15031.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x015dfab8c780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0xcf16446faf365386b27d3e5a4b221c5774758c5519ac1b20f3ade12391467769:log:17', 'hash': '0xcf16446faf365386b27d3e5a4b221c5774758c5519ac1b20f3ade12391467769', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0x93512246e876db44f8de02cd0f88e9b71963f4f6fe61502246fd07a22a352a18:log:23', 'hash': '0x93512246e876db44f8de02cd0f88e9b71963f4f6fe61502246fd07a22a352a18', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x857564f9d3f1ef20538ca9c8c5ae59bd872e4b04', 'value': 3471.429292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x50d354bb30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0xbd1f38312a854a9c6027e1018f497f247fea8ce9055b0a4f22829dfaa5bf12c7:log:24', 'hash': '0xbd1f38312a854a9c6027e1018f497f247fea8ce9055b0a4f22829dfaa5bf12c7', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x83d8c8bcb823d7d5bd5894858ceebe79446f2ff9', 'value': 71282.72484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x067bae2636a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0x624f708e69977a9ffd93da76eb28bc38575d854a1e38cf3797c1fda9916184d9:log:25', 'hash': '0x624f708e69977a9ffd93da76eb28bc38575d854a1e38cf3797c1fda9916184d9', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3e76c551e52f3fbf414f10342cd4608288230c3a', 'value': 7395.50972485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac30ac4a45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792414', 'uniqueId': '0x679166d41f277d73f39d555a994416002608c6b4a6a5e7aff4c0cb9dd18fb8aa:log:26', 'hash': '0x679166d41f277d73f39d555a994416002608c6b4a6a5e7aff4c0cb9dd18fb8aa', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2603a62d9232e387b53c3a166f3f21441fe5179e', 'value': 4601.9074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b25816e20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:09.000Z'}}, {'blockNum': '0x792415', 'uniqueId': '0x8102af15fbf579f12a596430d211a662a7652574964c8995c59bd19815de2bdf:log:0', 'hash': '0x8102af15fbf579f12a596430d211a662a7652574964c8995c59bd19815de2bdf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 31379.545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02da9ca9cda0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:10:57.000Z'}}, {'blockNum': '0x792416', 'uniqueId': '0x728c782439eb25fb1aa4de898a9f1cf92edc0be0b2af00b85b2a1cd250480b75:log:4', 'hash': '0x728c782439eb25fb1aa4de898a9f1cf92edc0be0b2af00b85b2a1cd250480b75', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:17.000Z'}}, {'blockNum': '0x792416', 'uniqueId': '0xd42342c9ad8c281772405a6906ae5da23105741c56063c3d434effae8b7b8680:log:5', 'hash': '0xd42342c9ad8c281772405a6906ae5da23105741c56063c3d434effae8b7b8680', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd4b616b65eb6e3015af290c6ed13e66d46b7352c', 'value': 57116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0531d5e39c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:17.000Z'}}, {'blockNum': '0x792416', 'uniqueId': '0x9eda4face854acc73f3e520eee99af7dfa14272848ad91b7c245d2d399126594:log:82', 'hash': '0x9eda4face854acc73f3e520eee99af7dfa14272848ad91b7c245d2d399126594', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x30716256c590991775a48ab28dd4b899d6c95031', 'value': 10733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf9e5aa4d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:17.000Z'}}, {'blockNum': '0x792416', 'uniqueId': '0x61bb45d0095df56bc2f1f291b5cbed7923febf65bc9227a9f0e85ff2dbbddb28:log:84', 'hash': '0x61bb45d0095df56bc2f1f291b5cbed7923febf65bc9227a9f0e85ff2dbbddb28', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 17937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a1a0d9f100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:17.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x93fce90b069be3d3059fc7143298e70577a8113ec905ea31f7a70131f1fbca1e:log:11', 'hash': '0x93fce90b069be3d3059fc7143298e70577a8113ec905ea31f7a70131f1fbca1e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd3574b71005acfab4032ab701e22688fa2cbc2d7', 'value': 1759.82353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28f95d9a68', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xd96341905bcc5236de918366e8b1bd031d0451ba8cd19e8e2fc1e3e50ca88e91:log:12', 'hash': '0xd96341905bcc5236de918366e8b1bd031d0451ba8cd19e8e2fc1e3e50ca88e91', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 17999.51734309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a3157bd625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xba6be472bf1d41085e609de58c523cd20e28a68c9a1a3af5acddbc1b746ac726:log:13', 'hash': '0xba6be472bf1d41085e609de58c523cd20e28a68c9a1a3af5acddbc1b746ac726', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x83d8c8bcb823d7d5bd5894858ceebe79446f2ff9', 'value': 127527.97136829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b993df177bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xa4b2c7e6c4c42da6478c04c940304fda597d5b3ca5c416c6002e371a41edaada:log:14', 'hash': '0xa4b2c7e6c4c42da6478c04c940304fda597d5b3ca5c416c6002e371a41edaada', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x2b47a9c49d52f178acc22b0bb0191a3c0e98f940', 'value': 167146.52235703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f33aee8b7b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x0d04431eecd3f4370408b92f13fd1877bff301148b85948281d5c795d77fc3cb:log:16', 'hash': '0x0d04431eecd3f4370408b92f13fd1877bff301148b85948281d5c795d77fc3cb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcc050a9dd24f97c23410a8ade625a52d6232145a', 'value': 170398.64481111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f7f6711c557', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xeef157e959d9be65695a78275e74a76f023f84a8062e75f60841d8a2cce83858:log:17', 'hash': '0xeef157e959d9be65695a78275e74a76f023f84a8062e75f60841d8a2cce83858', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x847dd23ac1f74bdefcd7668b6aded7764aaedc52', 'value': 136440.15638931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c68beb49993', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x8e02eae727612adca8010219db3bdf1ebccac9026b627f59456ccbba34e88c66:log:18', 'hash': '0x8e02eae727612adca8010219db3bdf1ebccac9026b627f59456ccbba34e88c66', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'value': 21173.22692307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ecfa4456d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x48c6b1ec80a90ea4ae59cb3b5b4f4a04e96ea1633f8b356d712f8a9fe2e7372a:log:19', 'hash': '0x48c6b1ec80a90ea4ae59cb3b5b4f4a04e96ea1633f8b356d712f8a9fe2e7372a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x01f0d9e8b3b116f69e386000504875740052f5059c2ef372720e887d08f76b8d:log:22', 'hash': '0x01f0d9e8b3b116f69e386000504875740052f5059c2ef372720e887d08f76b8d', 'from': '0x5aba1b676d0109b10994459cd2c165ef73983463', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 275.89199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x066c71c498', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x12577432eab23e40f64d2897c31eeeafce8831784026fbf05d41451eed4c3e2a:log:29', 'hash': '0x12577432eab23e40f64d2897c31eeeafce8831784026fbf05d41451eed4c3e2a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14134.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014918a97880', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x2f6f87bed3c424003c7933a1026b6fc268ce703a6a051f5d465577083ee8e348:log:30', 'hash': '0x2f6f87bed3c424003c7933a1026b6fc268ce703a6a051f5d465577083ee8e348', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0407290d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xea1f3d678f11b2cf5b7612d21a3b04a343c81e370f91996c60fdae4b9adfd326:log:31', 'hash': '0xea1f3d678f11b2cf5b7612d21a3b04a343c81e370f91996c60fdae4b9adfd326', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8652.29207579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc973adf81b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x590e512c9636598ca8d9d9d96b5ab2762ce7d89d9e265dfc5999a0b99efd9000:log:32', 'hash': '0x590e512c9636598ca8d9d9d96b5ab2762ce7d89d9e265dfc5999a0b99efd9000', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 10785.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfb1e96f180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x5afda43ef8c2b18d0b496a04e6dfe3f6f29888976ea111e39c32fb00aa42952a:log:33', 'hash': '0x5afda43ef8c2b18d0b496a04e6dfe3f6f29888976ea111e39c32fb00aa42952a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 17271.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0192251535c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xb02661479385bf3775be898840ba624e3bf9e78175c2181751b7bdc93411dbcd:log:34', 'hash': '0xb02661479385bf3775be898840ba624e3bf9e78175c2181751b7bdc93411dbcd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 4815.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x701e9ddf80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x2780840a446ad7acd2858f4541a65d0fa3c99e5c1cfc4f734b88f3bcc099bf4f:log:47', 'hash': '0x2780840a446ad7acd2858f4541a65d0fa3c99e5c1cfc4f734b88f3bcc099bf4f', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x79a505f60d4689c0d302d1d2a250de677a75c10f08b6bd18c7af28df98999dfc:log:55', 'hash': '0x79a505f60d4689c0d302d1d2a250de677a75c10f08b6bd18c7af28df98999dfc', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5dc732b675e7c169d6572699c1893ee31bb7c732', 'value': 12757.2859886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01290759974c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xc2c777fed7c49c9da7abba809874be3e9ef62c4a1845c687c0671ab8d89770ec:log:75', 'hash': '0xc2c777fed7c49c9da7abba809874be3e9ef62c4a1845c687c0671ab8d89770ec', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6662.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b1f983680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x9bb7c8dec3ecbc7c9ec788c0fd9fc36182b5e799ad759a7bfbd6a7d1f73e5158:log:76', 'hash': '0x9bb7c8dec3ecbc7c9ec788c0fd9fc36182b5e799ad759a7bfbd6a7d1f73e5158', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0497602af200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x6eb85c7515ae7a78c997e2fc0d371bd859faba3c67694aef5cb09423daf37c86:log:77', 'hash': '0x6eb85c7515ae7a78c997e2fc0d371bd859faba3c67694aef5cb09423daf37c86', 'from': '0x84720a2f005cb5481dcd12431cdf92574e839a55', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3858.18060244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x59d48c65d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xdb1d8ff009aa625b10ac8e1e32826f3c6b4e827c011b3cb194b20145350d9c08:log:78', 'hash': '0xdb1d8ff009aa625b10ac8e1e32826f3c6b4e827c011b3cb194b20145350d9c08', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1171.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b46af2380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x62f6e7c20d6e22957343bae110a6725e429ce2c3207efc86f805410dab00a311:log:79', 'hash': '0x62f6e7c20d6e22957343bae110a6725e429ce2c3207efc86f805410dab00a311', 'from': '0xb2fd2f7d87b3cf9b1642c54a52f68503ce215791', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2766.31555725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4068868e8d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xcff90c806e399dbc212fede65e03a045acbe7930eaec5131474974c45d2ea8c5:log:80', 'hash': '0xcff90c806e399dbc212fede65e03a045acbe7930eaec5131474974c45d2ea8c5', 'from': '0x476ec61a27431dcf120f72b7a9f241ce61daa44c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10552.77512459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf5b370f70b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x85bf2b7ce2f725bd55d8e9d4eed3260db90faf488e473de9c738fcb89ba50a04:log:82', 'hash': '0x85bf2b7ce2f725bd55d8e9d4eed3260db90faf488e473de9c738fcb89ba50a04', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2580.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c14fa8480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x2c92bfffbfe86ecac2872f72313a08c0661343e8edc3561fec9aecc050b0724d:log:87', 'hash': '0x2c92bfffbfe86ecac2872f72313a08c0661343e8edc3561fec9aecc050b0724d', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1753.86086199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28d5d34b37', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x1b5235cdcd63ca63dda338711e0bc821d8ff6723e69de51e18838c7d0baa21bf:log:88', 'hash': '0x1b5235cdcd63ca63dda338711e0bc821d8ff6723e69de51e18838c7d0baa21bf', 'from': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02591ce340', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x204b7a627e734e38008e29c01e09ff190ea0e001e7975257a53ed40c436102d3:log:89', 'hash': '0x204b7a627e734e38008e29c01e09ff190ea0e001e7975257a53ed40c436102d3', 'from': '0x25403bf9d83adcafde40827072efeb3e13499943', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45679.6507625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04278fef8b1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x6c26e2bcc0b5b6e36ce05f77038df078c4979fe3d08b672cac06a35cc5cb521d:log:90', 'hash': '0x6c26e2bcc0b5b6e36ce05f77038df078c4979fe3d08b672cac06a35cc5cb521d', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4747.30382791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6e8822c5c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x9dd4eb3cd1b9c7c7d6c2ef810a2c5f66eb762a9872ca506f594ad4c15c38f8fb:log:91', 'hash': '0x9dd4eb3cd1b9c7c7d6c2ef810a2c5f66eb762a9872ca506f594ad4c15c38f8fb', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x54133cbb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x41561ea497e4056fbec76c2eee0795525e1ddccea3187245e90abb900b5657dc:log:92', 'hash': '0x41561ea497e4056fbec76c2eee0795525e1ddccea3187245e90abb900b5657dc', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7056.461509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa44bc9c4f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xbc229b73055f04c2c91246a4ab1150d2fe93a77ce4f10359215c0b5a1f2a3829:log:93', 'hash': '0xbc229b73055f04c2c91246a4ab1150d2fe93a77ce4f10359215c0b5a1f2a3829', 'from': '0x682c1050fc44411283c2c3e85e7dd2ede5e90a97', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 795.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12858cab80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x79df01a58cf7314b526244b3b852699dd7f0860dc6c5704c40865b71c4ef9c7e:log:95', 'hash': '0x79df01a58cf7314b526244b3b852699dd7f0860dc6c5704c40865b71c4ef9c7e', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1545.6433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23fcc08210', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x886c28fc1836144b4dd80547d1c6551eb475625670ad7b1fc71afe936aa91a79:log:97', 'hash': '0x886c28fc1836144b4dd80547d1c6551eb475625670ad7b1fc71afe936aa91a79', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08d8f9fc00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x50d4c3963110c72b972650905fe548ed3cbc5785429f885c4c0700f23f4fbb62:log:103', 'hash': '0x50d4c3963110c72b972650905fe548ed3cbc5785429f885c4c0700f23f4fbb62', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1442.77653447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21979e47c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x467a114387032d8917fc42148e8f8d0accad90c7e8a102977f5bd0f2ec06a5da:log:104', 'hash': '0x467a114387032d8917fc42148e8f8d0accad90c7e8a102977f5bd0f2ec06a5da', 'from': '0x2603a62d9232e387b53c3a166f3f21441fe5179e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56898.16247892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x052cc379ee54', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x5285b4dcefc9c01eb4706d31b35a8ed0bbdae22f8c0f3ed85bd6dc74fa6487a5:log:105', 'hash': '0x5285b4dcefc9c01eb4706d31b35a8ed0bbdae22f8c0f3ed85bd6dc74fa6487a5', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16260.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017a9821f480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xe60ffb8d9a525b93b3149c817a8591f3dfbcaf3140dac65cb918f14d35874241:log:106', 'hash': '0xe60ffb8d9a525b93b3149c817a8591f3dfbcaf3140dac65cb918f14d35874241', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x032a9f8800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x294cb7fa7d5bb62c311e20f97c4e4d45f7c85f19ff5c7ee6c2efe645cb5d7ee3:log:111', 'hash': '0x294cb7fa7d5bb62c311e20f97c4e4d45f7c85f19ff5c7ee6c2efe645cb5d7ee3', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 634.4015127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ec553e2e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x59366df8ca4784a37c1f85c2c07a6d3ef700f0596481e28f1911df5cb99d95c8:log:112', 'hash': '0x59366df8ca4784a37c1f85c2c07a6d3ef700f0596481e28f1911df5cb99d95c8', 'from': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20840.85144383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e53d279b3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x7bc2e099535a6f316312ba56582cac99ce9e3e7fc362c700d55185d59b9359f7:log:113', 'hash': '0x7bc2e099535a6f316312ba56582cac99ce9e3e7fc362c700d55185d59b9359f7', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 493.01243781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b7a954785', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xfc01972c6731afffed88fad0efb79e6f32fc92bd9fed13098936281730a97f4a:log:114', 'hash': '0xfc01972c6731afffed88fad0efb79e6f32fc92bd9fed13098936281730a97f4a', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b3e7d0e200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xe97979176d5236c7442b2dc21616158879e28a2a2cc47a01e3fc0b75448e277f:log:115', 'hash': '0xe97979176d5236c7442b2dc21616158879e28a2a2cc47a01e3fc0b75448e277f', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11246.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0105db8e4b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xb50e8257e6d455b382976e2388b48220e17bf6a267782471e6a079d03cb67496:log:117', 'hash': '0xb50e8257e6d455b382976e2388b48220e17bf6a267782471e6a079d03cb67496', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02684788c500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x11903d9176421c6095924539cb6ad2e3d8c6f2b9be4de65ce5af3f114bbeb0da:log:121', 'hash': '0x11903d9176421c6095924539cb6ad2e3d8c6f2b9be4de65ce5af3f114bbeb0da', 'from': '0x06458be2c1aeb1519a5ee1c2341062e269b100f8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2310.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35cdcc8780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0xa83165af55dc0fd94390207445fe173a93fdec82af4c4e66697886f6ee4ff9e8:log:122', 'hash': '0xa83165af55dc0fd94390207445fe173a93fdec82af4c4e66697886f6ee4ff9e8', 'from': '0x287e6d4dd4d57ede08b9353e13d51d9f7f1f95fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14747.9827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x015760d3b630', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792418', 'uniqueId': '0x94fcb535a928b305b5517f35d1a02896565093c1e27a59d0ee125e77e277b44c:log:123', 'hash': '0x94fcb535a928b305b5517f35d1a02896565093c1e27a59d0ee125e77e277b44c', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26042.11754937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025e571dd7b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:11:50.000Z'}}, {'blockNum': '0x792419', 'uniqueId': '0x065be499f633ae3e775a3abb43518b7684b9c1876b63b5cce4edd95ec31a522f:log:3', 'hash': '0x065be499f633ae3e775a3abb43518b7684b9c1876b63b5cce4edd95ec31a522f', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x68c1f5d13b6a33ae3d659d887c5b37f835e445d0', 'value': 8050.16730059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbb6ebc79cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:13:18.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0x1a2214cb64c7155a7addeb90113684d77012bc96ef237c31bf85c463f3c7c659:log:1', 'hash': '0x1a2214cb64c7155a7addeb90113684d77012bc96ef237c31bf85c463f3c7c659', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc634656de898f4206cf7a3928390209a8a3d2656', 'value': 24550.14583747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023b9a45adc3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0x92c2b66162c729c395280e98e33cc9fcdbd8b3c7d6a1024c7b9df296c2fd9b2c:log:2', 'hash': '0x92c2b66162c729c395280e98e33cc9fcdbd8b3c7d6a1024c7b9df296c2fd9b2c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x83d8c8bcb823d7d5bd5894858ceebe79446f2ff9', 'value': 116420.13466633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a969e13c009', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0xab1c5b388929a85cbcd8c77d3a496f1a8e5b73e60442622f5e728c3ed8b7093a:log:3', 'hash': '0xab1c5b388929a85cbcd8c77d3a496f1a8e5b73e60442622f5e728c3ed8b7093a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb1ab487c5784f5bdd34a93e02e598bc99fcc68af', 'value': 305787.25437281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bcfaa113f61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0xb358f900192f6aa3e38d70bbc763e73f12d94b4a3217c6a28cbb1d0d871391fa:log:4', 'hash': '0xb358f900192f6aa3e38d70bbc763e73f12d94b4a3217c6a28cbb1d0d871391fa', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x7588626145de9482f4ea53a042775fe00db61501', 'value': 12135.18894211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011a8b5cd483', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0xc554d70260ee84f819e6b829f0f8767f5fc23759b00dbaba8a201679ad1c7ed4:log:5', 'hash': '0xc554d70260ee84f819e6b829f0f8767f5fc23759b00dbaba8a201679ad1c7ed4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 18700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b364af8c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241c', 'uniqueId': '0x422465348c902518351094a0def56505f89510ec84f41432df3bfac504bf044a:log:11', 'hash': '0x422465348c902518351094a0def56505f89510ec84f41432df3bfac504bf044a', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:02.000Z'}}, {'blockNum': '0x79241d', 'uniqueId': '0xb41ec385e8c430268c78ee1d93817017cb3f052e5b063b652ec7970a560ad9b4:log:0', 'hash': '0xb41ec385e8c430268c78ee1d93817017cb3f052e5b063b652ec7970a560ad9b4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3ee8297bb15ad9c4652664583d57810912a57002', 'value': 4279.71813725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x63a51ba15d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:24.000Z'}}, {'blockNum': '0x79241d', 'uniqueId': '0x0f3b75d017d90d35cc24286b14769e0aed8f1cb84cbfec6f0eccadbda9b13a88:log:1', 'hash': '0x0f3b75d017d90d35cc24286b14769e0aed8f1cb84cbfec6f0eccadbda9b13a88', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:24.000Z'}}, {'blockNum': '0x79241d', 'uniqueId': '0xe4b0d0858cd261f59eee3be6325c6f9e29031b71a9fc1304f09394b96f5e6e45:log:2', 'hash': '0xe4b0d0858cd261f59eee3be6325c6f9e29031b71a9fc1304f09394b96f5e6e45', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x7aed63e07c660ecaba01d7f469240d2ecaaad31b', 'value': 8334.42440389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc20d0a64c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:24.000Z'}}, {'blockNum': '0x79241e', 'uniqueId': '0x27056ea83d758e5a151aa5ae96bd11a9d59972f6300ee29840a3bf0201cf0c29:log:11', 'hash': '0x27056ea83d758e5a151aa5ae96bd11a9d59972f6300ee29840a3bf0201cf0c29', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:14:42.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0x68f8ac4fc07119d8298636f6b8bdd4f73bde6196c653542fea79b50ee9f4fe77:log:1', 'hash': '0x68f8ac4fc07119d8298636f6b8bdd4f73bde6196c653542fea79b50ee9f4fe77', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xf23607172899cec3d52c03a0df9205d6fcc0da5b', 'value': 15874.12679026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0171992b3972', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0x7fe85898d90381e488fdda571087a3fd2349df2af94e04c209a36866b4ce0cb0:log:2', 'hash': '0x7fe85898d90381e488fdda571087a3fd2349df2af94e04c209a36866b4ce0cb0', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x36231b5a2b3750e27983df5560d89dd2418139d2', 'value': 21303.38569682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f00212ddd2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0x2ddd1a252a6f30e85e35a73d90e5f2839d5e7ef85dd0a2fb185dfe0dbcfb4920:log:3', 'hash': '0x2ddd1a252a6f30e85e35a73d90e5f2839d5e7ef85dd0a2fb185dfe0dbcfb4920', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xaa74aeae087e61f931fc950a450293f635ae651a', 'value': 29599.98085612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b12da269ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0xe429c0c074955e107f26a432dbbb9cbb8edbb788a28c335baf3a7da088b26ff6:log:4', 'hash': '0xe429c0c074955e107f26a432dbbb9cbb8edbb788a28c335baf3a7da088b26ff6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'value': 19900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cf553e3c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x79241f', 'uniqueId': '0xe84c30742d378fe5f030c6f9419af026a292dae4eab494a9e66479b7d338f4ab:log:5', 'hash': '0xe84c30742d378fe5f030c6f9419af026a292dae4eab494a9e66479b7d338f4ab', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xeffe6d3ebb6e3b7f7c5a8a34e5c936c340c0d766', 'value': 184889.87901897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10d0cd8e5fc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:07.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0xe65a5180d7832aed7492c6e9fc77e3f53795563b8b44bcd7005d1566f97f03e5:log:0', 'hash': '0xe65a5180d7832aed7492c6e9fc77e3f53795563b8b44bcd7005d1566f97f03e5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 449.71743309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a7886584d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0x1f3ef786fe71d1642b07b1ef363ec37f9489c081ef15ad6102baeb3c7f16292d:log:1', 'hash': '0x1f3ef786fe71d1642b07b1ef363ec37f9489c081ef15ad6102baeb3c7f16292d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 2851.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x426443b380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0xa9f82fea9bae9a25d010d42b664921dcd49a30b6cb567f71eacfacdaf87b17bb:log:2', 'hash': '0xa9f82fea9bae9a25d010d42b664921dcd49a30b6cb567f71eacfacdaf87b17bb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 5439.32771678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7ea4eb6d5e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0x9df90196913a83ea02aab705431f14cc323b5b9e67076df8e41d8b1ea3310250:log:3', 'hash': '0x9df90196913a83ea02aab705431f14cc323b5b9e67076df8e41d8b1ea3310250', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0147d35700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792420', 'uniqueId': '0x0f2178127b6172df42604edc43d6ec2807f56b92010123457be212d5d87dbfbb:log:9', 'hash': '0x0f2178127b6172df42604edc43d6ec2807f56b92010123457be212d5d87dbfbb', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 4329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64cad9c900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:09.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0x0feaafb5f7c19fcb103eae00abbd7a4478a8524ead372d9b5c66a389d9f205a9:log:3', 'hash': '0x0feaafb5f7c19fcb103eae00abbd7a4478a8524ead372d9b5c66a389d9f205a9', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x99915ddeb78a6f54cf651d5031f2572d0ba3337e', 'value': 136716.39943508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6f2d3e0954', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0x68da31688a44c5cd2b155e346c3affff82f87b9ebc540e580d7515b72bece3ad:log:14', 'hash': '0x68da31688a44c5cd2b155e346c3affff82f87b9ebc540e580d7515b72bece3ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 11450.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010a9b7d9780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0xee01fa14ec642651a17088cda26764e57b4ec13dbc25d2158c20774124f858e8:log:17', 'hash': '0xee01fa14ec642651a17088cda26764e57b4ec13dbc25d2158c20774124f858e8', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 2638.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d6ece0300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0x27220f3943cafdfe34583432a5b29f948cc73a98c243eaf153881cf3efb6a07e:log:20', 'hash': '0x27220f3943cafdfe34583432a5b29f948cc73a98c243eaf153881cf3efb6a07e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 3489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x513c0f8100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0xabf8f8994f1c9658131ed858176701493c71d704c8cab4089d56d866624ce80d:log:21', 'hash': '0xabf8f8994f1c9658131ed858176701493c71d704c8cab4089d56d866624ce80d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 2591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c53903f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792422', 'uniqueId': '0x9eca2c83d8ddf6945ccd35606e6bb7e0494d74cd04de1fa36a24c0cf078f3c8e:log:22', 'hash': '0x9eca2c83d8ddf6945ccd35606e6bb7e0494d74cd04de1fa36a24c0cf078f3c8e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6deb55852f25a4deab9e4a86b5ae2f1c8e1ab439', 'value': 3061.12148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4745b4b220', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:15:59.000Z'}}, {'blockNum': '0x792423', 'uniqueId': '0xcc1090933717babe5670c55d8f250ff738bbb431531b5b76126498dbeb5e5970:log:42', 'hash': '0xcc1090933717babe5670c55d8f250ff738bbb431531b5b76126498dbeb5e5970', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x7d6a9da41a3cf8f1acf365eaf8df009a2d591373', 'value': 159.71341312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b7f75400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:05.000Z'}}, {'blockNum': '0x792423', 'uniqueId': '0x075b6e52d258192e31f8e41717442a4c88afa5755a7e2b7d23acc2a417508321:log:43', 'hash': '0x075b6e52d258192e31f8e41717442a4c88afa5755a7e2b7d23acc2a417508321', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 4681.55038513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6d0036fb31', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:05.000Z'}}, {'blockNum': '0x792425', 'uniqueId': '0x935b9ff6254971e01449d033759f7f3705e140df5949b2760718ff847749a44f:log:1', 'hash': '0x935b9ff6254971e01449d033759f7f3705e140df5949b2760718ff847749a44f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xc03b848d72f90c7ec00479c05e50740a249a0834', 'value': 6660.6364232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b147c9ed0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:15.000Z'}}, {'blockNum': '0x792425', 'uniqueId': '0x9abc034fafd224a8a2bea0cb115795467023dc9f61c7d0a453f390d43f8f06c6:log:2', 'hash': '0x9abc034fafd224a8a2bea0cb115795467023dc9f61c7d0a453f390d43f8f06c6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 30031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02bb36b56f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:15.000Z'}}, {'blockNum': '0x792426', 'uniqueId': '0xad4e83dc99d14c7497942ea8edf3b1836b85320e27d44a83498488f221d10c59:log:1', 'hash': '0xad4e83dc99d14c7497942ea8edf3b1836b85320e27d44a83498488f221d10c59', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x115171c66f8cb2f49e1be20763ac85cafa240897', 'value': 38112.51110486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03776044c256', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:19.000Z'}}, {'blockNum': '0x792426', 'uniqueId': '0xe284c0d9c3c782a0518ffee2bd265bcee2bbdbc94ffe2d9563d2d670fa7f2da3:log:5', 'hash': '0xe284c0d9c3c782a0518ffee2bd265bcee2bbdbc94ffe2d9563d2d670fa7f2da3', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:19.000Z'}}, {'blockNum': '0x792426', 'uniqueId': '0x8a3f3638d41bb86b7a32174289fe3bbd94ad21327c205a10de01aa56859c6415:log:39', 'hash': '0x8a3f3638d41bb86b7a32174289fe3bbd94ad21327c205a10de01aa56859c6415', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 2868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42c69cb400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:16:19.000Z'}}, {'blockNum': '0x792428', 'uniqueId': '0xba7bb28fd55ec597f6ed0ce83494d770c5e1552933a8adcd533d7ca6f25b9e46:log:0', 'hash': '0xba7bb28fd55ec597f6ed0ce83494d770c5e1552933a8adcd533d7ca6f25b9e46', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x29705e79ebdf6622f71c8ba323613ba41e7745c1', 'value': 9435.41102843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xdbaf6ea8fb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:08.000Z'}}, {'blockNum': '0x792428', 'uniqueId': '0x674264f8c18dbaeb54589194a3bffd53859dc16e0cd63fbe4eda90b6a0681f63:log:1', 'hash': '0x674264f8c18dbaeb54589194a3bffd53859dc16e0cd63fbe4eda90b6a0681f63', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 7258.730755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa90168252c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:08.000Z'}}, {'blockNum': '0x792428', 'uniqueId': '0xdea9f6140d8e0d7c0c7d3093f1e57d184b4166e2cee9fc25635add800be10825:log:4', 'hash': '0xdea9f6140d8e0d7c0c7d3093f1e57d184b4166e2cee9fc25635add800be10825', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14193.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014a78821a40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:08.000Z'}}, {'blockNum': '0x792428', 'uniqueId': '0x5dacb823695d9e2eb7d1c92f7f7998700af21840202009f1383b4d674cb7016e:log:5', 'hash': '0x5dacb823695d9e2eb7d1c92f7f7998700af21840202009f1383b4d674cb7016e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2055.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2fdbbc1780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:08.000Z'}}, {'blockNum': '0x79242a', 'uniqueId': '0x1251fc2b5b146785af985e6fc9d53c011b584bb06e6bd27ab17a82b83a791661:log:5', 'hash': '0x1251fc2b5b146785af985e6fc9d53c011b584bb06e6bd27ab17a82b83a791661', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x3732fd22645bd2207c27a1aaee36f2dbd46822f7', 'value': 13451.6796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0139324227c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:17.000Z'}}, {'blockNum': '0x79242a', 'uniqueId': '0xe1002436d33a5aebaccf5a183a8e9f76f0cf6142f3ecb873d4d7578a68cff7fb:log:14', 'hash': '0xe1002436d33a5aebaccf5a183a8e9f76f0cf6142f3ecb873d4d7578a68cff7fb', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f9e4f8e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:17.000Z'}}, {'blockNum': '0x79242c', 'uniqueId': '0x9b65a5e64613f6598f7e648b156687d14e769daa61d12f1f163ade1495c8ef94:log:83', 'hash': '0x9b65a5e64613f6598f7e648b156687d14e769daa61d12f1f163ade1495c8ef94', 'from': '0x3dc34205a54a191bd267d86a7ed82477a632c9d9', 'to': '0xcc8c9472fb66333e0b84da918cc83bd5e2015aad', 'value': 1444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x219ee92400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:17:57.000Z'}}, {'blockNum': '0x79242e', 'uniqueId': '0x6507dd9394f9983c4593b2df30a102eda3ad53c629c0be0e5e34f6e3e3055a1b:log:2', 'hash': '0x6507dd9394f9983c4593b2df30a102eda3ad53c629c0be0e5e34f6e3e3055a1b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x95231512c6d2a006e23bfffa94ba39fb9d7fddbd', 'value': 696.13970978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103550e622', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:18:36.000Z'}}, {'blockNum': '0x79242e', 'uniqueId': '0x88f1b88ee28c0654376623ba43ca394bc68a0aa470ba21786bbdeaebeb87a80b:log:3', 'hash': '0x88f1b88ee28c0654376623ba43ca394bc68a0aa470ba21786bbdeaebeb87a80b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 15239.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0162d27f9780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:18:36.000Z'}}, {'blockNum': '0x79242e', 'uniqueId': '0x9a1c2cb915cbc5197b877a83b51d2110886280bd12b8252d43fcdae9451e1f54:log:4', 'hash': '0x9a1c2cb915cbc5197b877a83b51d2110886280bd12b8252d43fcdae9451e1f54', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14296.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014cdda94400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:18:36.000Z'}}, {'blockNum': '0x79242e', 'uniqueId': '0x2677c2cbb813cbc93f7e1a35489b72fd4f34e414693c154ad36c39999a763d0c:log:34', 'hash': '0x2677c2cbb813cbc93f7e1a35489b72fd4f34e414693c154ad36c39999a763d0c', 'from': '0x24537637c7f01aa921bf46eea7106ea49ab418f3', 'to': '0x7dbdd26c4a094ebca087c4e7f1c56db03a5fee70', 'value': 29.91325869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb24c02ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:18:36.000Z'}}, {'blockNum': '0x792434', 'uniqueId': '0x3c2dfe9c1a2cf928205ce51df920488ff8e4659007b72815bc22cc62444474fd:log:64', 'hash': '0x3c2dfe9c1a2cf928205ce51df920488ff8e4659007b72815bc22cc62444474fd', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x24de51a5afde94670e4b3c73c922eec4533822e8', 'value': 702.03874412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10587a1c6c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:01.000Z'}}, {'blockNum': '0x792434', 'uniqueId': '0xb946616ccb888ddcb7b3aeb1f3cd46e052a46afa9a3e97c8551c6fe37762544b:log:65', 'hash': '0xb946616ccb888ddcb7b3aeb1f3cd46e052a46afa9a3e97c8551c6fe37762544b', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'value': 2558.87700341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b94187175', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:01.000Z'}}, {'blockNum': '0x792437', 'uniqueId': '0x615926da6d3998bdff52692beba37b2515307acb2713d5a0a9c8ffe4aac668a0:log:2', 'hash': '0x615926da6d3998bdff52692beba37b2515307acb2713d5a0a9c8ffe4aac668a0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x087315576ca14d7d81aad0d12f638640d28848fa', 'value': 1274.83874671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1daea18d6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:33.000Z'}}, {'blockNum': '0x792437', 'uniqueId': '0xe5ff47cfacead71512d9d09cd6e76c90fc80807318c5b4bbe798f8d77aca025f:log:3', 'hash': '0xe5ff47cfacead71512d9d09cd6e76c90fc80807318c5b4bbe798f8d77aca025f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8400.38723319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc39635aef7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:33.000Z'}}, {'blockNum': '0x792437', 'uniqueId': '0x10ce4b9bbd274b5199e420f696a71416bbaa50fafadbd6f7baf2c8eaabe1623f:log:7', 'hash': '0x10ce4b9bbd274b5199e420f696a71416bbaa50fafadbd6f7baf2c8eaabe1623f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 1541.92596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23e6984c20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:20:33.000Z'}}, {'blockNum': '0x79243b', 'uniqueId': '0xc693559b9590434bb0a475c5bc766e8c4dcba8b1dc189314258a6d3184be6744:log:18', 'hash': '0xc693559b9590434bb0a475c5bc766e8c4dcba8b1dc189314258a6d3184be6744', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x8d26502984a208538530a75817020c68fee70bab', 'value': 2007.64266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ebe7b9610', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:21:14.000Z'}}, {'blockNum': '0x79243b', 'uniqueId': '0x3007e6bc76508ce27b1617de3c2f27b8e7c314f9990833cf28a69c71e0a6e89b:log:19', 'hash': '0x3007e6bc76508ce27b1617de3c2f27b8e7c314f9990833cf28a69c71e0a6e89b', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 53471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04dcf7feff00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:21:14.000Z'}}, {'blockNum': '0x79243b', 'uniqueId': '0xd3ebf9998d8ef1e1300cc95263f6cab577b3bbffbd2899a46404e413f1aed4cf:log:93', 'hash': '0xd3ebf9998d8ef1e1300cc95263f6cab577b3bbffbd2899a46404e413f1aed4cf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xce27dbcd10379c110d00c298ceebf0eb6237b7cd', 'value': 2299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35871b9b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:21:14.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xa2caf193ee999a2686b1bb89d5207e8f18ec4f48398bbd3ae758d2adc3b60f8b:log:2', 'hash': '0xa2caf193ee999a2686b1bb89d5207e8f18ec4f48398bbd3ae758d2adc3b60f8b', 'from': '0x29705e79ebdf6622f71c8ba323613ba41e7745c1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9435.41102843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xdbaf6ea8fb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xf1a86b6e01051cc93db87adae27d098abebb28d77a6680b09c13f72f3238e8c9:log:3', 'hash': '0xf1a86b6e01051cc93db87adae27d098abebb28d77a6680b09c13f72f3238e8c9', 'from': '0x30716256c590991775a48ab28dd4b899d6c95031', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10830, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfc27d48e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x2a6d24b56c63b814a0a8bbad2a06c0253a68afe82b2847fb1df4d5e1fbbf5e7b:log:5', 'hash': '0x2a6d24b56c63b814a0a8bbad2a06c0253a68afe82b2847fb1df4d5e1fbbf5e7b', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9144.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd4e977a880', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xed2ea8e0292d6e4500816b4a0829785a12c2edfd7291049dd6925791044950f3:log:6', 'hash': '0xed2ea8e0292d6e4500816b4a0829785a12c2edfd7291049dd6925791044950f3', 'from': '0x0bba108df4d8411494155fa913365012f88fd3dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b6e968b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x0fa9e52f545ce9abab9153ed15e3d5bd190143b923335b236c0d391788c2bdee:log:7', 'hash': '0x0fa9e52f545ce9abab9153ed15e3d5bd190143b923335b236c0d391788c2bdee', 'from': '0x115171c66f8cb2f49e1be20763ac85cafa240897', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38112.51110486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03776044c256', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x87f589fc465328c8a397cf1622c37bcf955f2a6af7cd91972cf4942c52c8968c:log:8', 'hash': '0x87f589fc465328c8a397cf1622c37bcf955f2a6af7cd91972cf4942c52c8968c', 'from': '0x847dd23ac1f74bdefcd7668b6aded7764aaedc52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136440.15638931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c68beb49993', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xca002176915d26c2a926af897e8eb84b5da22216a7dc7939d5c6bb2f19a649da:log:9', 'hash': '0xca002176915d26c2a926af897e8eb84b5da22216a7dc7939d5c6bb2f19a649da', 'from': '0x6deb55852f25a4deab9e4a86b5ae2f1c8e1ab439', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3061.12148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4745b4b220', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xddf7dc224b41a3acf1c5eb5fb85bb1121f20150f55a6f030147872f047a4b96d:log:10', 'hash': '0xddf7dc224b41a3acf1c5eb5fb85bb1121f20150f55a6f030147872f047a4b96d', 'from': '0x7d6a9da41a3cf8f1acf365eaf8df009a2d591373', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 159.71341312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b7f75400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xda2ae2316f0402b984c3857970cf29c3558344fcf4980533cb36fc0007669063:log:11', 'hash': '0xda2ae2316f0402b984c3857970cf29c3558344fcf4980533cb36fc0007669063', 'from': '0x3e76c551e52f3fbf414f10342cd4608288230c3a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7395.50972485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac30ac4a45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xd429134aed6b8169fed04496bd650b8a8c4f3ebd1855485f029461d64effa214:log:12', 'hash': '0xd429134aed6b8169fed04496bd650b8a8c4f3ebd1855485f029461d64effa214', 'from': '0xd4b616b65eb6e3015af290c6ed13e66d46b7352c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0531d5e39c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x6eb658e00ecbce1e6be6143285f01e97e13160db856df5b858cf04fdc28b96f7:log:13', 'hash': '0x6eb658e00ecbce1e6be6143285f01e97e13160db856df5b858cf04fdc28b96f7', 'from': '0xf23607172899cec3d52c03a0df9205d6fcc0da5b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15874.12679026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0171992b3972', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x964c72a5339ea783553e0bca365f1806e8e57b67386e2394bf123e64919fb1fb:log:14', 'hash': '0x964c72a5339ea783553e0bca365f1806e8e57b67386e2394bf123e64919fb1fb', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbe094fa200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xff7fb1748707b2a02741ec44babd695b17fa45044ee4707db9ada619a14f5394:log:15', 'hash': '0xff7fb1748707b2a02741ec44babd695b17fa45044ee4707db9ada619a14f5394', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01b364af8c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x0a878567be48724d5e0a1f285f9fb07e7e9360af7b15f1ebf67a37d19a2c6567:log:16', 'hash': '0x0a878567be48724d5e0a1f285f9fb07e7e9360af7b15f1ebf67a37d19a2c6567', 'from': '0x2b47a9c49d52f178acc22b0bb0191a3c0e98f940', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 167146.52235703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f33aee8b7b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xc44e3489721e28684693d1932e988cfb32ef1e959d308764e542761fc390d4db:log:17', 'hash': '0xc44e3489721e28684693d1932e988cfb32ef1e959d308764e542761fc390d4db', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31379.545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02da9ca9cda0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x545d342260d63ac03078d68dc5d7b7331007408073c31271d5dbaf4f1aba5fc5:log:18', 'hash': '0x545d342260d63ac03078d68dc5d7b7331007408073c31271d5dbaf4f1aba5fc5', 'from': '0x3732fd22645bd2207c27a1aaee36f2dbd46822f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13451.6796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0139324227c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x821a19d05a18db73a7ae88f87bd442eddfbc9b8cd68e80b37f6b8744f5cbbb60:log:19', 'hash': '0x821a19d05a18db73a7ae88f87bd442eddfbc9b8cd68e80b37f6b8744f5cbbb60', 'from': '0xb1ab487c5784f5bdd34a93e02e598bc99fcc68af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 305787.25437281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bcfaa113f61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x48b8adebdb50efa0e14b692ec83d379f49808a5ec321f4b0eb20e1dbfe26d574:log:20', 'hash': '0x48b8adebdb50efa0e14b692ec83d379f49808a5ec321f4b0eb20e1dbfe26d574', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 74576.77, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06c860303d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x3fa6c3de0aacdbeab51a719837c3866f1aea4e18e7485d4103498fa1a8d4dde3:log:21', 'hash': '0x3fa6c3de0aacdbeab51a719837c3866f1aea4e18e7485d4103498fa1a8d4dde3', 'from': '0xeffe6d3ebb6e3b7f7c5a8a34e5c936c340c0d766', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 184889.87901897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10d0cd8e5fc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xea57cd1cb63d3622a382e7757012388f4449e3cdbe97885b8be9d9566fcf7d1f:log:22', 'hash': '0xea57cd1cb63d3622a382e7757012388f4449e3cdbe97885b8be9d9566fcf7d1f', 'from': '0xaa74aeae087e61f931fc950a450293f635ae651a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29599.98085612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b12da269ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xb9f67da559cb61ae1a165eed345706d9b6e74364a28e02a4093ee390cb1aa662:log:23', 'hash': '0xb9f67da559cb61ae1a165eed345706d9b6e74364a28e02a4093ee390cb1aa662', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17999.51734309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a3157bd625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x3229f61584e3003c32a48d6291c34f691fa624dc295bb921e911e6ab22ecf41a:log:24', 'hash': '0x3229f61584e3003c32a48d6291c34f691fa624dc295bb921e911e6ab22ecf41a', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10120.87810191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xeba522688f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0x5c4ab2c158f9f6db618fe0cef1dfa7d6316343a35235efe0034453bf2e9da50a:log:25', 'hash': '0x5c4ab2c158f9f6db618fe0cef1dfa7d6316343a35235efe0034453bf2e9da50a', 'from': '0x83d8c8bcb823d7d5bd5894858ceebe79446f2ff9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 315230.83087462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cab8a2b6e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243d', 'uniqueId': '0xbd9788fbd80c156d1b81fbd0f14ff410d401ce878918009d3f16e09e0c76f97d:log:26', 'hash': '0xbd9788fbd80c156d1b81fbd0f14ff410d401ce878918009d3f16e09e0c76f97d', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7258.730755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa90168252c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:06.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xb37f068214c678433da2ed22dd850461bb40b1eb124e71e3ddb2a8e0634f380f:log:6', 'hash': '0xb37f068214c678433da2ed22dd850461bb40b1eb124e71e3ddb2a8e0634f380f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 205747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12b66baf5300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xa25bc63eb77ee67ef623e5ce06c47b05dd8d9421453a1f5b5d153162a888fc8e:log:9', 'hash': '0xa25bc63eb77ee67ef623e5ce06c47b05dd8d9421453a1f5b5d153162a888fc8e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 14163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0149c20ef300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x6d7cabd68e92b2c97f267a568c4ad07b39e68d3e304abe3a4f317613964ecae1:log:11', 'hash': '0x6d7cabd68e92b2c97f267a568c4ad07b39e68d3e304abe3a4f317613964ecae1', 'from': '0x7aed63e07c660ecaba01d7f469240d2ecaaad31b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8334.42440389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc20d0a64c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xef2f3b631d8b823418fa3b32b6b0b7a5f4f315ae584c9d2f128415866385476e:log:12', 'hash': '0xef2f3b631d8b823418fa3b32b6b0b7a5f4f315ae584c9d2f128415866385476e', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 449.71743309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a7886584d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x3e7a7c4e2aa8414f61a6a3002922698e319172595e5daaf277645eab2f2e1e15:log:13', 'hash': '0x3e7a7c4e2aa8414f61a6a3002922698e319172595e5daaf277645eab2f2e1e15', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0407290d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xc2d7380c74af1e1cb44c6744505565c9383d6db14d236bbf3a623e3e39fbde00:log:14', 'hash': '0xc2d7380c74af1e1cb44c6744505565c9383d6db14d236bbf3a623e3e39fbde00', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2851.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x426443b380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x57ed2df307a1224abf9a29953d491f5b4c37133e9203c14f572bf019ac050d88:log:16', 'hash': '0x57ed2df307a1224abf9a29953d491f5b4c37133e9203c14f572bf019ac050d88', 'from': '0x36231b5a2b3750e27983df5560d89dd2418139d2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21303.38569682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01f00212ddd2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x8b3adfa50e6e17eca3e5c3d7c81cf5046cdb6cc82b40bbe4aee5291ccb25ffaf:log:17', 'hash': '0x8b3adfa50e6e17eca3e5c3d7c81cf5046cdb6cc82b40bbe4aee5291ccb25ffaf', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x513c0f8100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x0d0cc764b62d3151f113730fa3e555c042b1186c79ec851a22110c8e7c16c58b:log:18', 'hash': '0x0d0cc764b62d3151f113730fa3e555c042b1186c79ec851a22110c8e7c16c58b', 'from': '0x68c1f5d13b6a33ae3d659d887c5b37f835e445d0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8050.16730059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbb6ebc79cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x72fa5050c5a88f9fe88ffff3ddee46d39b6f5f15841f2b28debb5e1fd722e14c:log:19', 'hash': '0x72fa5050c5a88f9fe88ffff3ddee46d39b6f5f15841f2b28debb5e1fd722e14c', 'from': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21173.22692307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ecfa4456d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x30d09ca64a818a20889369e7bc1ee1d1425889e3d052afb78e42bf40d057920a:log:20', 'hash': '0x30d09ca64a818a20889369e7bc1ee1d1425889e3d052afb78e42bf40d057920a', 'from': '0xc03b848d72f90c7ec00479c05e50740a249a0834', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6660.6364232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9b147c9ed0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0xcddb171532fa1acf3413fe81e9e6e204e8605ae0a85090a65e09a5a8456b7345:log:29', 'hash': '0xcddb171532fa1acf3413fe81e9e6e204e8605ae0a85090a65e09a5a8456b7345', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50ca540462d794927f4c642611f0da56231e2113', 'value': 4619.4837504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b8e44d000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x79243f', 'uniqueId': '0x10b7a85a577104db7d455289e4dd8e075edfbee2865e627b1bb734936099f77d:log:30', 'hash': '0x10b7a85a577104db7d455289e4dd8e075edfbee2865e627b1bb734936099f77d', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 9050.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd2b8967400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:22:17.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0x5444e02b6fc76021d40e477d590f745dceda8e011eb21a41b4a4ec12a677f28d:log:4', 'hash': '0x5444e02b6fc76021d40e477d590f745dceda8e011eb21a41b4a4ec12a677f28d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1005.208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x176781af00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0x670677f97f97f4df08cc0b8b0afbd452e8ee9bb5e2d3ad865d9228e24381729e:log:6', 'hash': '0x670677f97f97f4df08cc0b8b0afbd452e8ee9bb5e2d3ad865d9228e24381729e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x72248f253a859137b1fee18eb65329ee04eea067', 'value': 12499.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012306d36380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0x30b6ecd8d77025c8490328dc9a7777096717cf43192a619284870c4e1a6a7fae:log:7', 'hash': '0x30b6ecd8d77025c8490328dc9a7777096717cf43192a619284870c4e1a6a7fae', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8667.41192009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc9cdcd0549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0xfe8cc9b88d1bd663e8ec14ccd12c43b1d53d4108d197052144aa4502115b4d2c:log:8', 'hash': '0xfe8cc9b88d1bd663e8ec14ccd12c43b1d53d4108d197052144aa4502115b4d2c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 4217.60694828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6232e57a2c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792441', 'uniqueId': '0xec1195dd9cc59557b6ae95340c6015df5346f7da8e997319d385df185a427576:log:9', 'hash': '0xec1195dd9cc59557b6ae95340c6015df5346f7da8e997319d385df185a427576', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 13601.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013cb1a44b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:23:06.000Z'}}, {'blockNum': '0x792445', 'uniqueId': '0xb7bfd889d528161176ef7da442c806aa667b2c9738f5a648e3200f7d128fc365:log:44', 'hash': '0xb7bfd889d528161176ef7da442c806aa667b2c9738f5a648e3200f7d128fc365', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a012317b000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:24:04.000Z'}}, {'blockNum': '0x792447', 'uniqueId': '0x757f0c8748991b98ff19102eb0e033eb43f55d66e32cb78cf63c39738c46db65:log:2', 'hash': '0x757f0c8748991b98ff19102eb0e033eb43f55d66e32cb78cf63c39738c46db65', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7dd22200cbad4a8b237ee0f8c695c6922ea98197', 'value': 9865.31499731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe5b1dc0ed3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:25:04.000Z'}}, {'blockNum': '0x792447', 'uniqueId': '0x557aac5775de74011f2336f1f5d5e4d2a2fa78938b0f98e5b71efd3ace84f7a7:log:15', 'hash': '0x557aac5775de74011f2336f1f5d5e4d2a2fa78938b0f98e5b71efd3ace84f7a7', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 5342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c60cd1e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:25:04.000Z'}}, {'blockNum': '0x79244b', 'uniqueId': '0x882aa3bccec4b1b8ebb6338f5ecf99b33e3af830797d72d5c94f9c2ab2b5bba8:log:12', 'hash': '0x882aa3bccec4b1b8ebb6338f5ecf99b33e3af830797d72d5c94f9c2ab2b5bba8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x206fa533745f133904480948283f3515dc625e7b', 'value': 6549.1837504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x987c2d5680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:26:01.000Z'}}, {'blockNum': '0x79244b', 'uniqueId': '0x133e07279f072b1ed998a0383bb8202df2761d35417115992a50cbb6ccd11526:log:14', 'hash': '0x133e07279f072b1ed998a0383bb8202df2761d35417115992a50cbb6ccd11526', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 2589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c47a47d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:26:01.000Z'}}, {'blockNum': '0x79244c', 'uniqueId': '0x18b94f3a5d3603431a34b357b48b7b28db1d112bc988d1df140fc492bd00ee46:log:73', 'hash': '0x18b94f3a5d3603431a34b357b48b7b28db1d112bc988d1df140fc492bd00ee46', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 10458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf37e899a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:27:00.000Z'}}, {'blockNum': '0x79244d', 'uniqueId': '0x9f4aa8c27ea8d5315ca8e1e580ec9b8c507a49f55c682e68ca9d4a2a74f5f664:log:4', 'hash': '0x9f4aa8c27ea8d5315ca8e1e580ec9b8c507a49f55c682e68ca9d4a2a74f5f664', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 3534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5248480e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:27:04.000Z'}}, {'blockNum': '0x792457', 'uniqueId': '0x275be87ea442d7fafce490b0ff362a66e4e8c9fb27c210d8fc0714396d1bb74f:log:35', 'hash': '0x275be87ea442d7fafce490b0ff362a66e4e8c9fb27c210d8fc0714396d1bb74f', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 29200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02a7dd901000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:28:15.000Z'}}, {'blockNum': '0x792457', 'uniqueId': '0x87d2007e82125d9fbbcd40b185e59fcbad16e6f0ac1c9d4232ac2bfcc3c1659f:log:36', 'hash': '0x87d2007e82125d9fbbcd40b185e59fcbad16e6f0ac1c9d4232ac2bfcc3c1659f', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'value': 5458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7f14371200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:28:15.000Z'}}, {'blockNum': '0x792458', 'uniqueId': '0xc44ef8a051e0a55033906af85a6dec0e0b26f23375b19c38a2e09158b1ffa97c:log:1', 'hash': '0xc44ef8a051e0a55033906af85a6dec0e0b26f23375b19c38a2e09158b1ffa97c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe243413ddf74b39c16f07652bffb8a3756048b60', 'value': 483.25382671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0b406ad20f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:28:25.000Z'}}, {'blockNum': '0x792458', 'uniqueId': '0x704df04b49ebc26ea3eccdba142c717b3c85b39eafd85209ea5161aa0e131f11:log:9', 'hash': '0x704df04b49ebc26ea3eccdba142c717b3c85b39eafd85209ea5161aa0e131f11', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 13456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01394c029000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:28:25.000Z'}}, {'blockNum': '0x792464', 'uniqueId': '0x56025a877ccf9b502405511e9330512b58abe73d7509f4a016e6e8edd0aad863:log:3', 'hash': '0x56025a877ccf9b502405511e9330512b58abe73d7509f4a016e6e8edd0aad863', 'from': '0x206fa533745f133904480948283f3515dc625e7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6549.1837504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x987c2d5680', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:30:41.000Z'}}, {'blockNum': '0x792464', 'uniqueId': '0x0b654a7d37cd56a2feaf7e3afdfe8c38e0bdf9f77b5c0a84c756c418daf7f42d:log:22', 'hash': '0x0b654a7d37cd56a2feaf7e3afdfe8c38e0bdf9f77b5c0a84c756c418daf7f42d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 2084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x30859ba400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:30:41.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x906a998ea40cde32bf8016db4da89824abd5fd816bf03e8c380d596c713df802:log:3', 'hash': '0x906a998ea40cde32bf8016db4da89824abd5fd816bf03e8c380d596c713df802', 'from': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7f14371200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xb3a67d20fcb2d1924f335b0881812b12140dd506bd953db3749727a4f8c430cd:log:38', 'hash': '0xb3a67d20fcb2d1924f335b0881812b12140dd506bd953db3749727a4f8c430cd', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04dcf7feff00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x4cd2651999444c1a30c7904523de36eeac7cff134d587756e668407e4bd8ebec:log:39', 'hash': '0x4cd2651999444c1a30c7904523de36eeac7cff134d587756e668407e4bd8ebec', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1541.92596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23e6984c20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xb46bd55c2e3caa823a258e8ad1e5f154732855d721237fe43df0ae350769eef3:log:40', 'hash': '0xb46bd55c2e3caa823a258e8ad1e5f154732855d721237fe43df0ae350769eef3', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13601.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013cb1a44b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xee71b675f487774671f77623f94ec7f068e06bf9f746b017b727e9875cf04b7d:log:43', 'hash': '0xee71b675f487774671f77623f94ec7f068e06bf9f746b017b727e9875cf04b7d', 'from': '0x3ee8297bb15ad9c4652664583d57810912a57002', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4279.71813725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x63a51ba15d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x26a51539f298a48016afd2803d74d7f9944cc297b4d3aa1afcd3cb601b2b0f0f:log:45', 'hash': '0x26a51539f298a48016afd2803d74d7f9944cc297b4d3aa1afcd3cb601b2b0f0f', 'from': '0x7dd22200cbad4a8b237ee0f8c695c6922ea98197', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9865.31499731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe5b1dc0ed3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x730ddf9d321c8d0f02e0ed301e03529ebf59ced5082c06cfa5e861e8fbdb4547:log:46', 'hash': '0x730ddf9d321c8d0f02e0ed301e03529ebf59ced5082c06cfa5e861e8fbdb4547', 'from': '0x72248f253a859137b1fee18eb65329ee04eea067', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12499.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012306d36380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x735a6769475cb1ae0846546085019947696c47f14645933a40d70f26502d83ca:log:47', 'hash': '0x735a6769475cb1ae0846546085019947696c47f14645933a40d70f26502d83ca', 'from': '0x087315576ca14d7d81aad0d12f638640d28848fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1274.83874671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1daea18d6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x2fe67d35daf14b0ab41d6d5884acc67d6ae34f03214c0da9e73e920fde0da7b0:log:48', 'hash': '0x2fe67d35daf14b0ab41d6d5884acc67d6ae34f03214c0da9e73e920fde0da7b0', 'from': '0xc634656de898f4206cf7a3928390209a8a3d2656', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24550.14583747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023b9a45adc3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x6d658ea340e90c293fcb9cd6ef673c1476ed727808f1c91156af1e204f873ae2:log:49', 'hash': '0x6d658ea340e90c293fcb9cd6ef673c1476ed727808f1c91156af1e204f873ae2', 'from': '0xce27dbcd10379c110d00c298ceebf0eb6237b7cd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35871b9b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x5c8f1e5ac5b6d089ebcc05e01771794d476b15d9013892d20ae75b746267c5b8:log:50', 'hash': '0x5c8f1e5ac5b6d089ebcc05e01771794d476b15d9013892d20ae75b746267c5b8', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c60cd1e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x2c4d0354373fa15c1d9be2ad8019aea7f5e87ab764e36f66ae4f660b979dd7d9:log:51', 'hash': '0x2c4d0354373fa15c1d9be2ad8019aea7f5e87ab764e36f66ae4f660b979dd7d9', 'from': '0x857564f9d3f1ef20538ca9c8c5ae59bd872e4b04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3471.429292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x50d354bb30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x2ec9a21d8dba006f3a1f9238a3c90858ca9461ac0bd9f9ad1f08c1e2483394f7:log:52', 'hash': '0x2ec9a21d8dba006f3a1f9238a3c90858ca9461ac0bd9f9ad1f08c1e2483394f7', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0149c20ef300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xfdf44cf8faa5a4e22319baa3fc3065f7ec9974e2ac8bf0cd6d795138339223f6:log:53', 'hash': '0xfdf44cf8faa5a4e22319baa3fc3065f7ec9974e2ac8bf0cd6d795138339223f6', 'from': '0x7588626145de9482f4ea53a042775fe00db61501', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12135.18894211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011a8b5cd483', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x1b3be2846978675b8a2c1160445005168a6d6245dcc5200cc042ba8496d508cf:log:54', 'hash': '0x1b3be2846978675b8a2c1160445005168a6d6245dcc5200cc042ba8496d508cf', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf37e899a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xf0b77db63351631595ac6ed03f901a4a24809dfa437543c0982e57fe22a1dd33:log:57', 'hash': '0xf0b77db63351631595ac6ed03f901a4a24809dfa437543c0982e57fe22a1dd33', 'from': '0x95231512c6d2a006e23bfffa94ba39fb9d7fddbd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 696.13970978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103550e622', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x6d82b89a3c77c5982f2936d04a0a515138a36c8d5ef323d9cd068351eaad6c6c:log:58', 'hash': '0x6d82b89a3c77c5982f2936d04a0a515138a36c8d5ef323d9cd068351eaad6c6c', 'from': '0x8d26502984a208538530a75817020c68fee70bab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2007.64266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ebe7b9610', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0xbdc3de6d1d94e633f8f732e003a0683f45df7c8a88af2c93a049a9b1664571a2:log:59', 'hash': '0xbdc3de6d1d94e633f8f732e003a0683f45df7c8a88af2c93a049a9b1664571a2', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4217.60694828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6232e57a2c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x792468', 'uniqueId': '0x74a2b685937a070220bf4301110bda2a162fd3267ad8553404112f4b7ee59b53:log:60', 'hash': '0x74a2b685937a070220bf4301110bda2a162fd3267ad8553404112f4b7ee59b53', 'from': '0x5dc732b675e7c169d6572699c1893ee31bb7c732', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12757.2859886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01290759974c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:02.000Z'}}, {'blockNum': '0x79246a', 'uniqueId': '0x0f88a321de95b2b20b55ab368b55ab4616ad03ad7bfe5f498949c0b6e043aa5e:log:0', 'hash': '0x0f88a321de95b2b20b55ab368b55ab4616ad03ad7bfe5f498949c0b6e043aa5e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8354cfd898a0fb0fcab26170069929ce9fb19a0a', 'value': 1685.76885433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x273ff722b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:54.000Z'}}, {'blockNum': '0x79246a', 'uniqueId': '0xcf32646bcfcaf07a83236b2eb2f847d92126a9244b5f800e04d45c46943a3c06:log:1', 'hash': '0xcf32646bcfcaf07a83236b2eb2f847d92126a9244b5f800e04d45c46943a3c06', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 10501.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf481d15580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:54.000Z'}}, {'blockNum': '0x79246a', 'uniqueId': '0x6e326f776e73c8b51ca65c40a335a7af8bc15ca31a12c635ee5f1b927e3dbcc8:log:2', 'hash': '0x6e326f776e73c8b51ca65c40a335a7af8bc15ca31a12c635ee5f1b927e3dbcc8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e8a4fb3d086a12f8ca9a5a194a5017907def452', 'value': 233.21438888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056e10eaa8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:32:54.000Z'}}, {'blockNum': '0x79246c', 'uniqueId': '0x703cf1ba69ec0bce25068d4281f09deaad8be1fb620c054ca8d0a6535c5c88ab:log:7', 'hash': '0x703cf1ba69ec0bce25068d4281f09deaad8be1fb620c054ca8d0a6535c5c88ab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4e9ce36e442e55ecd9025b9a6e0d88485d628a67', 'value': 1892601.22002613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac218e5794b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:33:03.000Z'}}, {'blockNum': '0x79246c', 'uniqueId': '0x4f34a20fa2ff56f02490d6fd1f630181d5bd66e02ef56d86b0fac71b220d935a:log:71', 'hash': '0x4f34a20fa2ff56f02490d6fd1f630181d5bd66e02ef56d86b0fac71b220d935a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 5713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8504223100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:33:03.000Z'}}, {'blockNum': '0x79246d', 'uniqueId': '0xc90065affd6fa795ed0df0435e2469b261bab717fe3ba61f62ab17ca61dd622d:log:41', 'hash': '0xc90065affd6fa795ed0df0435e2469b261bab717fe3ba61f62ab17ca61dd622d', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 5482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7fa3442a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:33:28.000Z'}}, {'blockNum': '0x79246d', 'uniqueId': '0xc7f3cc1af027e9fdf50ee484907175a773e753822f2ccc726d29c5588c0dd4cc:log:42', 'hash': '0xc7f3cc1af027e9fdf50ee484907175a773e753822f2ccc726d29c5588c0dd4cc', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 11985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01170c2ab100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:33:28.000Z'}}, {'blockNum': '0x792473', 'uniqueId': '0xadfc0dd9ef0903cebc3095b8d68066fb46f5e6414521b36b0b6f877c1d8c1b2d:log:2', 'hash': '0xadfc0dd9ef0903cebc3095b8d68066fb46f5e6414521b36b0b6f877c1d8c1b2d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2e9d6ed086ecc8cc296226263b3b9249e08f2d7a', 'value': 179.42747388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x042d7898fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:34:46.000Z'}}, {'blockNum': '0x792473', 'uniqueId': '0xe2e36a5dc14011a9ae9b623a0be6e0b4d3416375ca8206815a8559e351cc582b:log:4', 'hash': '0xe2e36a5dc14011a9ae9b623a0be6e0b4d3416375ca8206815a8559e351cc582b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8378.04173539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc3110528e3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:34:46.000Z'}}, {'blockNum': '0x792473', 'uniqueId': '0x219749110b161e0f21f040fcf57da4961dabe96bcc4b66bb9b43f2066d2d0788:log:5', 'hash': '0x219749110b161e0f21f040fcf57da4961dabe96bcc4b66bb9b43f2066d2d0788', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x96654f591fc9a31a99eb45dd01a3f84fa8b3635e', 'value': 699.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1049584b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:34:46.000Z'}}, {'blockNum': '0x792474', 'uniqueId': '0x5faa0a3488cda9579554d86c011830c3231fe2d8d8e56bc9aae4a185a208f4d2:log:15', 'hash': '0x5faa0a3488cda9579554d86c011830c3231fe2d8d8e56bc9aae4a185a208f4d2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 15837.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0170c00c5a80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:35:13.000Z'}}, {'blockNum': '0x792474', 'uniqueId': '0x1c4b72f4ba55e606962c2e91900f28f498329c6e72bf5deb5e47831f192f24df:log:18', 'hash': '0x1c4b72f4ba55e606962c2e91900f28f498329c6e72bf5deb5e47831f192f24df', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 31429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02dbc3702500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:35:13.000Z'}}, {'blockNum': '0x79247a', 'uniqueId': '0xa1e456275f5298107e8840a1ad0a2836c193e9a3aa7d83a86785b4d58ec7e3ec:log:26', 'hash': '0xa1e456275f5298107e8840a1ad0a2836c193e9a3aa7d83a86785b4d58ec7e3ec', 'from': '0xcc8c9472fb66333e0b84da918cc83bd5e2015aad', 'to': '0x110327c7174f93252c92ed43edea694afd29433d', 'value': 1444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x219ee92400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:36:23.000Z'}}, {'blockNum': '0x79247c', 'uniqueId': '0xa6759a382ae0cf89a74e6801ebc771785ffc95c335e2ecd3a1d0a06c5e058392:log:1', 'hash': '0xa6759a382ae0cf89a74e6801ebc771785ffc95c335e2ecd3a1d0a06c5e058392', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1ff45741de650a22b888c00ad063a55fac869b41', 'value': 711.92330892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x109364c28c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:36:57.000Z'}}, {'blockNum': '0x792483', 'uniqueId': '0x19695306e9b02d9f07bd247e6554fb9bda738f426537c44bb23f3ceb289660a7:log:0', 'hash': '0x19695306e9b02d9f07bd247e6554fb9bda738f426537c44bb23f3ceb289660a7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xae4b5285804f5a9b465eece03d381c28c7e01411', 'value': 20.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a308480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:38:55.000Z'}}, {'blockNum': '0x792490', 'uniqueId': '0x554ec2989b1ad5816fd7764285f696874782f8f47c77482dc51025e046fbf085:log:0', 'hash': '0x554ec2989b1ad5816fd7764285f696874782f8f47c77482dc51025e046fbf085', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 4538.864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x69adbcd600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:35.000Z'}}, {'blockNum': '0x792490', 'uniqueId': '0xaaf5aaafefd1789c43b0e275a52ecc183b66361d6673c18ac4452cdf766b4997:log:1', 'hash': '0xaaf5aaafefd1789c43b0e275a52ecc183b66361d6673c18ac4452cdf766b4997', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f507586c23e63700e25780f95f7e7ee55003eeb', 'value': 1537.26926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23cad6bcb0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:35.000Z'}}, {'blockNum': '0x792491', 'uniqueId': '0xcfab0dee0879d9e43ac68a600b3156d2fe9d5715701fa844bb297bb74dca49a1:log:3', 'hash': '0xcfab0dee0879d9e43ac68a600b3156d2fe9d5715701fa844bb297bb74dca49a1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 70730, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x066ecfa70a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:38.000Z'}}, {'blockNum': '0x792492', 'uniqueId': '0x978ebbcad268e5196ac6ef80461ea63097124d4b0e67b9bf1c6e26961ad6c873:log:2', 'hash': '0x978ebbcad268e5196ac6ef80461ea63097124d4b0e67b9bf1c6e26961ad6c873', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e94f1916d8565606e0b9529d03c3e78c61d59e4', 'value': 1023.00309023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17d192d61f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:46.000Z'}}, {'blockNum': '0x792492', 'uniqueId': '0x242bba9ebe5f2e533d0f4699c288e50f4ff1ff420b5ae2bcd8019eb45692ea11:log:3', 'hash': '0x242bba9ebe5f2e533d0f4699c288e50f4ff1ff420b5ae2bcd8019eb45692ea11', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x21fd4303d875ec7ab0fb53db5e5e225ffab33252', 'value': 66.70288391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018d948607', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:46.000Z'}}, {'blockNum': '0x792492', 'uniqueId': '0x36a0453d1073b718cafa659e5b0b37b01bc2e37a36859c79e6febea8026dfa72:log:32', 'hash': '0x36a0453d1073b718cafa659e5b0b37b01bc2e37a36859c79e6febea8026dfa72', 'from': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 109698.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09fa1d6a9c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:40:46.000Z'}}, {'blockNum': '0x792496', 'uniqueId': '0xeafb1973fc62a97c40d35530b05d9bc2f514023a54232bf0c196799a1a367eea:log:23', 'hash': '0xeafb1973fc62a97c40d35530b05d9bc2f514023a54232bf0c196799a1a367eea', 'from': '0x1ff45741de650a22b888c00ad063a55fac869b41', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 711.92330892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x109364c28c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:08.000Z'}}, {'blockNum': '0x792496', 'uniqueId': '0xd834c9d56aa8ce6dde5dbf9e7ecbd0d55e29a30cb244d19c417cb2aec6780a9f:log:26', 'hash': '0xd834c9d56aa8ce6dde5dbf9e7ecbd0d55e29a30cb244d19c417cb2aec6780a9f', 'from': '0x8354cfd898a0fb0fcab26170069929ce9fb19a0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1685.76885433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x273ff722b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:08.000Z'}}, {'blockNum': '0x792496', 'uniqueId': '0x3c9ee56ed75f323bec1ee0a758f89289498ba5b70152b9e04d76de0d232cbf23:log:28', 'hash': '0x3c9ee56ed75f323bec1ee0a758f89289498ba5b70152b9e04d76de0d232cbf23', 'from': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2558.87700341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b94187175', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:08.000Z'}}, {'blockNum': '0x792496', 'uniqueId': '0xc0378dac24d6ba1de0abe7635b5e472daa51f10a6f9e59e6e2927bec21809979:log:31', 'hash': '0xc0378dac24d6ba1de0abe7635b5e472daa51f10a6f9e59e6e2927bec21809979', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02575450ed00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:08.000Z'}}, {'blockNum': '0x792498', 'uniqueId': '0x55896f8b75bfaf39e0df257ae15ac139966dbbe55a39e0da46d3385c101be99a:log:1', 'hash': '0x55896f8b75bfaf39e0df257ae15ac139966dbbe55a39e0da46d3385c101be99a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 3439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5012098f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:42:51.000Z'}}, {'blockNum': '0x79249a', 'uniqueId': '0xe32572ea148f76110ab9f6e3a1922c9ceda951d93134edfa8233ef611d05acae:log:20', 'hash': '0xe32572ea148f76110ab9f6e3a1922c9ceda951d93134edfa8233ef611d05acae', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 14777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01580dc89900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:44:19.000Z'}}, {'blockNum': '0x79249b', 'uniqueId': '0xef640a1f685074dff7b3169ab5bed015d7e168653b66c8dde33a3ae368fedbd8:log:8', 'hash': '0xef640a1f685074dff7b3169ab5bed015d7e168653b66c8dde33a3ae368fedbd8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 8108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcc7722c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:44:27.000Z'}}, {'blockNum': '0x79249b', 'uniqueId': '0x78121008c3829463bacfe49d50254eed3cafa3adfc3c56fc417e102657ad26c8:log:15', 'hash': '0x78121008c3829463bacfe49d50254eed3cafa3adfc3c56fc417e102657ad26c8', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 26491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0268caaa1b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:44:27.000Z'}}, {'blockNum': '0x79249d', 'uniqueId': '0xac97bada2bcd1203ad43e135500c3dcbd559aee57d7935d093ccd4b69c426fca:log:106', 'hash': '0xac97bada2bcd1203ad43e135500c3dcbd559aee57d7935d093ccd4b69c426fca', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 11888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0114ca007000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:45:29.000Z'}}, {'blockNum': '0x7924b0', 'uniqueId': '0x834c7771f8d377d8588ee400e76e955908d7d3f60b75403fce412a3f741c0c3b:log:22', 'hash': '0x834c7771f8d377d8588ee400e76e955908d7d3f60b75403fce412a3f741c0c3b', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 101043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x093097365300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:50:11.000Z'}}, {'blockNum': '0x7924b3', 'uniqueId': '0x25ae576d211664dacd4063974a6c5d73d8a23010b5cebcb58fcd9ded62d3e194:log:9', 'hash': '0x25ae576d211664dacd4063974a6c5d73d8a23010b5cebcb58fcd9ded62d3e194', 'from': '0x120b3d8bc249a2c82d890c228b7cfd5acfc423da', 'to': '0xaa3ac14fe41521e085047f4e3fc5daf618fd5acb', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:50:31.000Z'}}, {'blockNum': '0x7924b4', 'uniqueId': '0xed22b339da7836a21aed34002845dc167211322ac765fd966ec667b03181dc7a:log:25', 'hash': '0xed22b339da7836a21aed34002845dc167211322ac765fd966ec667b03181dc7a', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 89899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x082d1fcbcb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:50:53.000Z'}}, {'blockNum': '0x7924b6', 'uniqueId': '0xe46b607913fe2567051d00cc7d22e8d524e175531410c5619a8bf1888d9481f8:log:52', 'hash': '0xe46b607913fe2567051d00cc7d22e8d524e175531410c5619a8bf1888d9481f8', 'from': '0x405e94a57d6801e3e583d30776ffc047b0aad6a6', 'to': '0x15c4e2626e52538815787d17d61eec66d4784807', 'value': 22.05092577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x836f0ae1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:51:18.000Z'}}, {'blockNum': '0x7924bb', 'uniqueId': '0xace3490cf43ff588cc71c26d007560d3cd00a9aebc4d2445fa35506f19e62047:log:5', 'hash': '0xace3490cf43ff588cc71c26d007560d3cd00a9aebc4d2445fa35506f19e62047', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbcc7722c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:51:59.000Z'}}, {'blockNum': '0x7924bb', 'uniqueId': '0xb9a403e041592696027b0bb84b7c3e3b8f86bc21eb42a86a1b28ddac7b839701:log:6', 'hash': '0xb9a403e041592696027b0bb84b7c3e3b8f86bc21eb42a86a1b28ddac7b839701', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01580dc89900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:51:59.000Z'}}, {'blockNum': '0x7924be', 'uniqueId': '0x7cc851f07fe28bcc4aabf6a0929f8eec658de388491cb8387a4672238a7ca950:log:35', 'hash': '0x7cc851f07fe28bcc4aabf6a0929f8eec658de388491cb8387a4672238a7ca950', 'from': '0x6e8a4fb3d086a12f8ca9a5a194a5017907def452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 233.21438888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056e10eaa8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:52:59.000Z'}}, {'blockNum': '0x7924c0', 'uniqueId': '0xd4af45f95807a5ec3854ad1c6616630ed8512aa3f79299aaa1497802ec7828b4:log:26', 'hash': '0xd4af45f95807a5ec3854ad1c6616630ed8512aa3f79299aaa1497802ec7828b4', 'from': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 19900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cf553e3c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:53:17.000Z'}}, {'blockNum': '0x7924c4', 'uniqueId': '0x323801891d7d1924a263a8a54465442fcba592a03c585b7caac19e580249798c:log:2', 'hash': '0x323801891d7d1924a263a8a54465442fcba592a03c585b7caac19e580249798c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x947053c4e584de3e905499d756ee51a21d584b3a', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d1dfe780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:55:07.000Z'}}, {'blockNum': '0x7924ca', 'uniqueId': '0x9409ec71bb60a3407682e400d4953e8ed731d62de702ad6947f82e9ebf832e2e:log:3', 'hash': '0x9409ec71bb60a3407682e400d4953e8ed731d62de702ad6947f82e9ebf832e2e', 'from': '0x15c4e2626e52538815787d17d61eec66d4784807', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 22.05092577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x836f0ae1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:55:55.000Z'}}, {'blockNum': '0x7924ca', 'uniqueId': '0x6837192fc3b0aa9e996065b0bc6c62cfe2b8a9ab303162c3e3acb222560179be:log:13', 'hash': '0x6837192fc3b0aa9e996065b0bc6c62cfe2b8a9ab303162c3e3acb222560179be', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc27efb72186b94f5d67c0bb9dbffc014ff42b17a', 'value': 1693.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2771055760', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:55:55.000Z'}}, {'blockNum': '0x7924d4', 'uniqueId': '0x757f7db9c68da5fe4fbb703a129ba2d0b3b0a06bb4a7b1e03a6c7a9a11e66bc0:log:4', 'hash': '0x757f7db9c68da5fe4fbb703a129ba2d0b3b0a06bb4a7b1e03a6c7a9a11e66bc0', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 11470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010b0e870e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:57:30.000Z'}}, {'blockNum': '0x7924d5', 'uniqueId': '0x510de978f4679c10510ecd215fdb769c330d11108072a1f10fda9dd1c04948bf:log:22', 'hash': '0x510de978f4679c10510ecd215fdb769c330d11108072a1f10fda9dd1c04948bf', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 22122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x020311652a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T18:57:51.000Z'}}, {'blockNum': '0x7924ec', 'uniqueId': '0xaf64a72b10c9898561691a971a747d4070e24cc9abe744c49d2102cd67ccdfc8:log:8', 'hash': '0xaf64a72b10c9898561691a971a747d4070e24cc9abe744c49d2102cd67ccdfc8', 'from': '0xaa3ac14fe41521e085047f4e3fc5daf618fd5acb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:02:12.000Z'}}, {'blockNum': '0x7924ec', 'uniqueId': '0xc3882be09b64736bb321317dc3211c1d215b1e37184339d24395d60f09e0f2c1:log:9', 'hash': '0xc3882be09b64736bb321317dc3211c1d215b1e37184339d24395d60f09e0f2c1', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010b0e870e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:02:12.000Z'}}, {'blockNum': '0x7924ec', 'uniqueId': '0x2b26691d660b00246c45b18e4c39e89221e81afda22c28275c14043877f61c44:log:10', 'hash': '0x2b26691d660b00246c45b18e4c39e89221e81afda22c28275c14043877f61c44', 'from': '0x947053c4e584de3e905499d756ee51a21d584b3a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d1dfe780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:02:12.000Z'}}, {'blockNum': '0x7924fd', 'uniqueId': '0x533de909a83e5398812db20e4c42e986d7249ee33326490601f3e5aa37aa18e7:log:11', 'hash': '0x533de909a83e5398812db20e4c42e986d7249ee33326490601f3e5aa37aa18e7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6865c2e81b63f347eecb67f798755f91b163e1a0', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:05:03.000Z'}}, {'blockNum': '0x792506', 'uniqueId': '0x0b8d93fc09af3097300e563fa6df74f6656e2727e9b43bfc5b153123f03ae063:log:1', 'hash': '0x0b8d93fc09af3097300e563fa6df74f6656e2727e9b43bfc5b153123f03ae063', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x47ef98884dc6f1e3035632d373f2b30132c242c1', 'value': 971.19191127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x169cc14057', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:07:10.000Z'}}, {'blockNum': '0x792506', 'uniqueId': '0x12cae425d1da187df040b5078b67b588fd891cf51760185e043109392f8390e9:log:2', 'hash': '0x12cae425d1da187df040b5078b67b588fd891cf51760185e043109392f8390e9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ea2b34d475af9b9928ea31ef557b937df71a624', 'value': 45.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010f337d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:07:10.000Z'}}, {'blockNum': '0x792517', 'uniqueId': '0xb9e0a9d810d6488a08fe42191c073ddefdcdeb4023e12ac3293a4a4c7a4d04a8:log:1', 'hash': '0xb9e0a9d810d6488a08fe42191c073ddefdcdeb4023e12ac3293a4a4c7a4d04a8', 'from': '0xc27efb72186b94f5d67c0bb9dbffc014ff42b17a', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1693.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2771055760', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:11:40.000Z'}}, {'blockNum': '0x792526', 'uniqueId': '0x14636df9fb3c4e19706be4ec13d52535b07c955b83ff5252e554420b3cbfedf2:log:17', 'hash': '0x14636df9fb3c4e19706be4ec13d52535b07c955b83ff5252e554420b3cbfedf2', 'from': '0xf6fb864f185f14e8d7da00c0e4a55a09e4152ff6', 'to': '0xdd9b9a7b7814b718282967dde9489e68894bdf84', 'value': 4.21452757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191edbd5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:15:16.000Z'}}, {'blockNum': '0x79253b', 'uniqueId': '0x431ddb2640eb41351e02249f738368dd7b4b0383aed87e9a456522b9cc17541e:log:60', 'hash': '0x431ddb2640eb41351e02249f738368dd7b4b0383aed87e9a456522b9cc17541e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 3212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4ac9030c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:18:35.000Z'}}, {'blockNum': '0x792548', 'uniqueId': '0x5dfd52cb58a9bd144bd9bc1d6b40b78a7cefa0db35794ba7b0e2cef6d174b064:log:0', 'hash': '0x5dfd52cb58a9bd144bd9bc1d6b40b78a7cefa0db35794ba7b0e2cef6d174b064', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x69fa16edd5971385e804837e421d92fb754279b9', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:21:19.000Z'}}, {'blockNum': '0x792552', 'uniqueId': '0x10395e69ccf3a50f940f9e0d2bc52f0d531fa95b10195f8de4019acc128d71c7:log:39', 'hash': '0x10395e69ccf3a50f940f9e0d2bc52f0d531fa95b10195f8de4019acc128d71c7', 'from': '0x87b34963ee6305e6b1ab362b81694f26141a366e', 'to': '0x4fd4a868acce61eab50c6aa26073854cc66410c9', 'value': 226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054310a200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:22:48.000Z'}}, {'blockNum': '0x79257e', 'uniqueId': '0x07bbee0b332918ef757c86510636c64ccc2d4ceab9801f962567abbf4258cfbd:log:14', 'hash': '0x07bbee0b332918ef757c86510636c64ccc2d4ceab9801f962567abbf4258cfbd', 'from': '0x4fd4a868acce61eab50c6aa26073854cc66410c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054310a200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:31:51.000Z'}}, {'blockNum': '0x79257e', 'uniqueId': '0x58b6946c56e24268bdac132b829df815e26c3794cf1a2918dfe24ae731d771d4:log:42', 'hash': '0x58b6946c56e24268bdac132b829df815e26c3794cf1a2918dfe24ae731d771d4', 'from': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:31:51.000Z'}}, {'blockNum': '0x792593', 'uniqueId': '0xd4672b5466f8e079a98e07da98b598f3e5eddb0679d1b72b7a187279a6782b02:log:4', 'hash': '0xd4672b5466f8e079a98e07da98b598f3e5eddb0679d1b72b7a187279a6782b02', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 21910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01fe21c6d600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:36:58.000Z'}}, {'blockNum': '0x792596', 'uniqueId': '0x4c1dd15f275f3bc220bca0557b11a8b253d2f852e13921e6523d222799db26a2:log:0', 'hash': '0x4c1dd15f275f3bc220bca0557b11a8b253d2f852e13921e6523d222799db26a2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe6b8d58fa759d4ebe00f696487f83989d20b8568', 'value': 232.61609775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056a7fff2f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:37:14.000Z'}}, {'blockNum': '0x792598', 'uniqueId': '0x3952046115b5f350eb7d57aacce27cc067f524bfdbf96e23dbf2065ee0d1c7ff:log:9', 'hash': '0x3952046115b5f350eb7d57aacce27cc067f524bfdbf96e23dbf2065ee0d1c7ff', 'from': '0x3cf365742b9d78f452b8846e6765aa16ce33afbf', 'to': '0x4e841b51970345f16625a0a7f1d10827c1d6489a', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9502f900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:37:42.000Z'}}, {'blockNum': '0x7925a9', 'uniqueId': '0xcb0947a9b07e000ff485bea1847ffa25ee3d3df0ea70280df896e47e80b8e4ef:log:75', 'hash': '0xcb0947a9b07e000ff485bea1847ffa25ee3d3df0ea70280df896e47e80b8e4ef', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 25700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02565fefe400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:41:07.000Z'}}, {'blockNum': '0x7925aa', 'uniqueId': '0xd47e460f07be1c61d256e4c0b9594c3825bac6288ba3551e5a0623f2982d0cbb:log:0', 'hash': '0xd47e460f07be1c61d256e4c0b9594c3825bac6288ba3551e5a0623f2982d0cbb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc9922df08c72cef31e76e79b15ad3792fa89cda5', 'value': 1138.85207254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a84165ad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:41:32.000Z'}}, {'blockNum': '0x7925ad', 'uniqueId': '0x85747a7cd5faa4ca809af6db702c5a3ae44e701892df225f6fcd4948de5b5d18:log:25', 'hash': '0x85747a7cd5faa4ca809af6db702c5a3ae44e701892df225f6fcd4948de5b5d18', 'from': '0xe6b8d58fa759d4ebe00f696487f83989d20b8568', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 232.61609775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x056a7fff2f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:41:58.000Z'}}, {'blockNum': '0x7925ad', 'uniqueId': '0xd030970ddecb15e9573b026a6f29863188a382171411ffbf4d05474ac1a4d1dd:log:52', 'hash': '0xd030970ddecb15e9573b026a6f29863188a382171411ffbf4d05474ac1a4d1dd', 'from': '0xddc35d71a11b48f2bd318761a94196c12f4e1e72', 'to': '0xc63093088849d219ee70594e77ea5992f5734972', 'value': 2038.46097528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f762c9a78', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:41:58.000Z'}}, {'blockNum': '0x7925b3', 'uniqueId': '0x59a1c20309b8ec7f92f50ccbd10719d0efde35fe25e6812133e07d3706d63526:log:7', 'hash': '0x59a1c20309b8ec7f92f50ccbd10719d0efde35fe25e6812133e07d3706d63526', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x28648c4505d87493647113919c7327e90dd2ae61', 'value': 449.14475052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a751c802c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:45:38.000Z'}}, {'blockNum': '0x7925b3', 'uniqueId': '0x40d2a07ee2dba85a9be8d00c0377f73183786148c45f6aac696d4f6fb5e2187f:log:8', 'hash': '0x40d2a07ee2dba85a9be8d00c0377f73183786148c45f6aac696d4f6fb5e2187f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c5b074b485aa52d13fdf4ada943abbb6fc3a32c', 'value': 1996.34672209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7b275a51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:45:38.000Z'}}, {'blockNum': '0x7925b3', 'uniqueId': '0x947ab8ef1c6ee73e0ad7ad410b11c57a969128d9ab2b6d7ede7824395fff2638:log:125', 'hash': '0x947ab8ef1c6ee73e0ad7ad410b11c57a969128d9ab2b6d7ede7824395fff2638', 'from': '0xc63093088849d219ee70594e77ea5992f5734972', 'to': '0x110327c7174f93252c92ed43edea694afd29433d', 'value': 2038.46097528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f762c9a78', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:45:38.000Z'}}, {'blockNum': '0x7925b5', 'uniqueId': '0x4a4a8dab9b52c1bcfb84c2c38267ed2fe1b4e7fb6163015d0ae7ebd7868c81b4:log:15', 'hash': '0x4a4a8dab9b52c1bcfb84c2c38267ed2fe1b4e7fb6163015d0ae7ebd7868c81b4', 'from': '0x8276419fda13420e7960fe6d2f140a94eb61c48c', 'to': '0x2aa1577b0991b45d9d4e48e95c5f2a5f28ea5978', 'value': 396.096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0938ea8800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:46:02.000Z'}}, {'blockNum': '0x7925c1', 'uniqueId': '0x0dbfa474afd80d3989958d7b292d585b1fa04d29fda48cb5b88a99def294ad6f:log:1', 'hash': '0x0dbfa474afd80d3989958d7b292d585b1fa04d29fda48cb5b88a99def294ad6f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8085.27510842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbc3ffebd3a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:48:57.000Z'}}, {'blockNum': '0x7925c1', 'uniqueId': '0x6ad9f4b0a8426f769d71f164fca954a2becb836689de677edf9feb533f0f480c:log:2', 'hash': '0x6ad9f4b0a8426f769d71f164fca954a2becb836689de677edf9feb533f0f480c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 10542.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf576325e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:48:57.000Z'}}, {'blockNum': '0x7925c7', 'uniqueId': '0x7034d1552e3796d35099aff2612a13c199a57769cb6e8530f911968857a3f924:log:2', 'hash': '0x7034d1552e3796d35099aff2612a13c199a57769cb6e8530f911968857a3f924', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474d92b829e8d3e6fa857a2131c13f97f5c12308', 'value': 20.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a308480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:51:23.000Z'}}, {'blockNum': '0x7925c7', 'uniqueId': '0x2fa4afe4c31a7abd793a2d92c5a570609c1ae105608b549adc3cccaa9bd5b7a5:log:50', 'hash': '0x2fa4afe4c31a7abd793a2d92c5a570609c1ae105608b549adc3cccaa9bd5b7a5', 'from': '0xddf4cbea808ec6adc9eeb284b73ee1e01948407e', 'to': '0x8e810160981084d19d85043ec2b1db1c63a2cf79', 'value': 2018.65600004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f00209c04', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:51:23.000Z'}}, {'blockNum': '0x7925ca', 'uniqueId': '0xfeb19fefcbcba912609dd2cf4d924865cae35ddb6e3346d465790c7800003dd2:log:10', 'hash': '0xfeb19fefcbcba912609dd2cf4d924865cae35ddb6e3346d465790c7800003dd2', 'from': '0x0c5b074b485aa52d13fdf4ada943abbb6fc3a32c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1996.34672209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7b275a51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:52:17.000Z'}}, {'blockNum': '0x7925ca', 'uniqueId': '0xb39cec9ceaaaa1eb9c2caf19930664114f6d9225bc1b5e546dcf79ae8958891e:log:11', 'hash': '0xb39cec9ceaaaa1eb9c2caf19930664114f6d9225bc1b5e546dcf79ae8958891e', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02565fefe400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:52:17.000Z'}}, {'blockNum': '0x7925ca', 'uniqueId': '0x049292c8ccbb6766ac79f6ab0848e217c38544c4e86d34c8dc52761eb3788f64:log:12', 'hash': '0x049292c8ccbb6766ac79f6ab0848e217c38544c4e86d34c8dc52761eb3788f64', 'from': '0xc9922df08c72cef31e76e79b15ad3792fa89cda5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1138.85207254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a84165ad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:52:17.000Z'}}, {'blockNum': '0x7925cf', 'uniqueId': '0xdf118f414c9fde0e65feb1a6c638e21d8dd931f8e3b43af4e4a11c6e568c1425:log:10', 'hash': '0xdf118f414c9fde0e65feb1a6c638e21d8dd931f8e3b43af4e4a11c6e568c1425', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 20891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01e668103b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:52:54.000Z'}}, {'blockNum': '0x7925d4', 'uniqueId': '0x0bac2532d2db3e89e03a783fc484f1384efd85097fe664ff4f040a62b5dcb59a:log:1', 'hash': '0x0bac2532d2db3e89e03a783fc484f1384efd85097fe664ff4f040a62b5dcb59a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 14427.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014fe9968540', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:53:43.000Z'}}, {'blockNum': '0x7925d4', 'uniqueId': '0xe4a249edd0ec4daddbcb11cd0d51c9321175ec0f78b7594c57f84745b98aba56:log:2', 'hash': '0xe4a249edd0ec4daddbcb11cd0d51c9321175ec0f78b7594c57f84745b98aba56', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e932cc85b90bc57952b5de01fdb9c0a0698ca44', 'value': 1745.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28a3fda180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:53:43.000Z'}}, {'blockNum': '0x7925d4', 'uniqueId': '0xf67f6cd2d498f350a800f908ecfc351355c09d6d3ebe7566c3fefd936bd3bdfd:log:3', 'hash': '0xf67f6cd2d498f350a800f908ecfc351355c09d6d3ebe7566c3fefd936bd3bdfd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8150.97875021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbdc79e8a4d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:53:43.000Z'}}, {'blockNum': '0x7925d8', 'uniqueId': '0x3b1b659138f652ee8d7a2e94c9b6a89ed51db0c0ecfd636783dc3e4dc9cd66d6:log:17', 'hash': '0x3b1b659138f652ee8d7a2e94c9b6a89ed51db0c0ecfd636783dc3e4dc9cd66d6', 'from': '0x3cf365742b9d78f452b8846e6765aa16ce33afbf', 'to': '0x4e841b51970345f16625a0a7f1d10827c1d6489a', 'value': 500.26501217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ba5cfd461', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:54:16.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0xd8eca2fb1934186aab99bd9e725e6412eef1b74dae47e71ce60fb8c1cbe9a6c4:log:4', 'hash': '0xd8eca2fb1934186aab99bd9e725e6412eef1b74dae47e71ce60fb8c1cbe9a6c4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 12090.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011980feea80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0x3ed7801330a72574069b1b244f23cb2d01a13d627572ad92e0fa467005e12a38:log:5', 'hash': '0x3ed7801330a72574069b1b244f23cb2d01a13d627572ad92e0fa467005e12a38', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad678b8fb59f8705d151c4bf123ef9003b9fe5ed', 'value': 521.40244015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c23ccfc2f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0xc1c7095dbe213ea1a3d6548483769a192aa0d9df87deee82b2e80eb7e82edfd5:log:6', 'hash': '0xc1c7095dbe213ea1a3d6548483769a192aa0d9df87deee82b2e80eb7e82edfd5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf52b1f74246d5aa2e28826abd0e0dc19223a8839', 'value': 8037.6115424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbb23e5e8c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0x2fd8683f8534b028aba8d40d2af291ff01f4fafdc44f2a0955c64244a399f1e8:log:7', 'hash': '0x2fd8683f8534b028aba8d40d2af291ff01f4fafdc44f2a0955c64244a399f1e8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe4b9827b8cd1244dec8745b1851d110f3826024c', 'value': 195.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x048d455380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925dc', 'uniqueId': '0x763e311422c66ea9420c85945b69991418123b468f6fe8a39f9aac8b6b8aedc1:log:11', 'hash': '0x763e311422c66ea9420c85945b69991418123b468f6fe8a39f9aac8b6b8aedc1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 26616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x026bb3b8f800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:55:45.000Z'}}, {'blockNum': '0x7925e0', 'uniqueId': '0xecafc8b44586cbe18e9b6e958ee043161308f3609197b805264ac70f46dfd152:log:2', 'hash': '0xecafc8b44586cbe18e9b6e958ee043161308f3609197b805264ac70f46dfd152', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 2060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ff68e8c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:56:46.000Z'}}, {'blockNum': '0x7925e1', 'uniqueId': '0x1b72cda99d74ea1d4cfd27be0d699d9529b011e45a01655cc281f80113d6e8a1:log:7', 'hash': '0x1b72cda99d74ea1d4cfd27be0d699d9529b011e45a01655cc281f80113d6e8a1', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb3f4c49b553afb9dde8c0b5f0715539229469ff6', 'value': 58179.76871938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054a9a71dc02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:56:53.000Z'}}, {'blockNum': '0x7925e9', 'uniqueId': '0x24f49365d78b83fc132d2bc5163924a3d23570737b7380970cd0ccb59382c9fa:log:1', 'hash': '0x24f49365d78b83fc132d2bc5163924a3d23570737b7380970cd0ccb59382c9fa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 10783.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfb12ab2f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T19:59:38.000Z'}}, {'blockNum': '0x7925ef', 'uniqueId': '0xe8435accefdf679fd8cfb1ad2785dd92d96677f4155b3fc2de2fe8a9e44c093e:log:8', 'hash': '0xe8435accefdf679fd8cfb1ad2785dd92d96677f4155b3fc2de2fe8a9e44c093e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x018a04f0bb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:00:24.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x85cf1b6acae620f30ea0c810ee4cec518fd90a4d3aa6e4f25cd181321f64e0b2:log:1', 'hash': '0x85cf1b6acae620f30ea0c810ee4cec518fd90a4d3aa6e4f25cd181321f64e0b2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 19735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01cb7dc43700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x206fc063f16f45cc5ccbf600c99b7c762e20962e69f2e8fde4c64a698a11c8bb:log:2', 'hash': '0x206fc063f16f45cc5ccbf600c99b7c762e20962e69f2e8fde4c64a698a11c8bb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd0dd253cdff96772fb3a23978616b1d0bb548bc2', 'value': 10499.1750572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf473f5c0b8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0xb7edfcd975f8c282ab9cfd3931d6e12da34d47d5c70b7ac1dd8523d6cbcc754c:log:3', 'hash': '0xb7edfcd975f8c282ab9cfd3931d6e12da34d47d5c70b7ac1dd8523d6cbcc754c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9a32c5f1d20d5059111315de16a5884b12bd81dd', 'value': 7058.80772956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa459c5d15c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x9980f80d9aadc24a3f7ac602211dabcf94cc780718062bf67708db226b96cf80:log:4', 'hash': '0x9980f80d9aadc24a3f7ac602211dabcf94cc780718062bf67708db226b96cf80', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 17900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a0c4506c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x710e041bf80fc1f4a7e33bcabe9c61a02fc0988148e0320d986d08936e59b484:log:5', 'hash': '0x710e041bf80fc1f4a7e33bcabe9c61a02fc0988148e0320d986d08936e59b484', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe0492a9d434710a0336213e49f7cbf792d7e4937', 'value': 1342.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f41ec6e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f1', 'uniqueId': '0x6f76a034f72784dfed99a92de1e9010887ba41f6d08e08d73ace406dd3b2c6b8:log:29', 'hash': '0x6f76a034f72784dfed99a92de1e9010887ba41f6d08e08d73ace406dd3b2c6b8', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 69504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0652441f8000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:08.000Z'}}, {'blockNum': '0x7925f2', 'uniqueId': '0x2615fe45d456db84240a241b2b0e6c04067034e7f4f43f1a2bcb29df70a94d19:log:0', 'hash': '0x2615fe45d456db84240a241b2b0e6c04067034e7f4f43f1a2bcb29df70a94d19', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x85c13fd61ee65fb0e1b4dce2586033d80380fc3e', 'value': 13533.55100592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013b1a4001b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:01:44.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0x9f782f2275272dac13b164a01bd654716bb45e601b84ea69c3ede02eeb060289:log:0', 'hash': '0x9f782f2275272dac13b164a01bd654716bb45e601b84ea69c3ede02eeb060289', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x85c13fd61ee65fb0e1b4dce2586033d80380fc3e', 'value': 11107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01029ae10300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0xf8678475f866c8066f7f8b1790c7ababe92322bce0e1110b29e5a7f567d21be3:log:1', 'hash': '0xf8678475f866c8066f7f8b1790c7ababe92322bce0e1110b29e5a7f567d21be3', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'value': 3996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5d0a041c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0x5d010d4fbf36170d38e69fcd7c5defa896941330447d81ac0e3c51888f3917f1:log:25', 'hash': '0x5d010d4fbf36170d38e69fcd7c5defa896941330447d81ac0e3c51888f3917f1', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14427.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014fe9968540', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0x981e40046f4122427622a68575b853cdeef7d07c26fc8d8309311a62935811f2:log:26', 'hash': '0x981e40046f4122427622a68575b853cdeef7d07c26fc8d8309311a62935811f2', 'from': '0x4e841b51970345f16625a0a7f1d10827c1d6489a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 525.26501217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c3ad2cd61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0xe631792caf80a7a668f77e01c5961b42a9e0e598da0223a0b6103cf75429ccde:log:27', 'hash': '0xe631792caf80a7a668f77e01c5961b42a9e0e598da0223a0b6103cf75429ccde', 'from': '0xb3f4c49b553afb9dde8c0b5f0715539229469ff6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58179.76871938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x054a9a71dc02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f4', 'uniqueId': '0x4653d5d9c9371f0ef691942b2fe370fa40c42cdb1510e5b7ad6c06e00012a11f:log:28', 'hash': '0x4653d5d9c9371f0ef691942b2fe370fa40c42cdb1510e5b7ad6c06e00012a11f', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10542.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf576325e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:02.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0xb21b00f5e6c73021bea08c7d9cc44d2d2e450f1f3945f57b974f5664587589b6:log:1', 'hash': '0xb21b00f5e6c73021bea08c7d9cc44d2d2e450f1f3945f57b974f5664587589b6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x20488767f52656fda9ce7670d54f8a0544d6c89f', 'value': 11549.11391084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010ce6154d6c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0xacbac6ebacfa3153410dffd0672ac0e100d5e822323df7a44ec58dd06c4e0649:log:2', 'hash': '0xacbac6ebacfa3153410dffd0672ac0e100d5e822323df7a44ec58dd06c4e0649', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xef7f7d76cb8e2a989bedb27032255ef8f501c66e', 'value': 7402.45869104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac5a179230', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0xdb3ebe98928f93e483748ee53ec7ed6d8b49b17a51eadbdadd704d2aea6613b4:log:3', 'hash': '0xdb3ebe98928f93e483748ee53ec7ed6d8b49b17a51eadbdadd704d2aea6613b4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x870aad96120bcd5f049c8bcd65a641b665ed92b1', 'value': 5315.24756879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7bc158258f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0xb5a12d9c59d75b31186883937e5dd79e03b81b18d3bf0fa92a35828f52607416:log:4', 'hash': '0xb5a12d9c59d75b31186883937e5dd79e03b81b18d3bf0fa92a35828f52607416', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xac15f170f1954695c819fe40c92d1fd5289bf216', 'value': 27685.80493273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02849c41bfd9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925f6', 'uniqueId': '0x069c47610ed2834e00deb7f8ad04b7d2ff4e3917aa84bf11e1a3a4f13ca36094:log:5', 'hash': '0x069c47610ed2834e00deb7f8ad04b7d2ff4e3917aa84bf11e1a3a4f13ca36094', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 29000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02a335784800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:02:17.000Z'}}, {'blockNum': '0x7925fb', 'uniqueId': '0xc7979f1b37ae08f0a20803aa656bf2e8dd4e4585b7a11f771297f85dc67cf526:log:8', 'hash': '0xc7979f1b37ae08f0a20803aa656bf2e8dd4e4585b7a11f771297f85dc67cf526', 'from': '0xaf7866fd5cf0ff3bc3ef316090de12718c9a083d', 'to': '0x8f3ae04aae0e17bfbe5d531b2322c715d59146c3', 'value': 46.708619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011667b24c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:03:01.000Z'}}, {'blockNum': '0x79260a', 'uniqueId': '0x1994397323af8c0ef74c5cd6ede32d9b08b9a9f82bea9dc128d29f5131b92b2a:log:27', 'hash': '0x1994397323af8c0ef74c5cd6ede32d9b08b9a9f82bea9dc128d29f5131b92b2a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 7239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa88bcd6700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:04:31.000Z'}}, {'blockNum': '0x79260e', 'uniqueId': '0xfb0cea6c53a2e6ed3aca9c6d5d82946fa222e30b2b3f37bd586ac57948409f65:log:1', 'hash': '0xfb0cea6c53a2e6ed3aca9c6d5d82946fa222e30b2b3f37bd586ac57948409f65', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 12098.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0119b399a0c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:05:16.000Z'}}, {'blockNum': '0x79260e', 'uniqueId': '0xdd00840431c0f84072a202234988be3306247a8d4f6fa8f1c00fcc9359882f1e:log:6', 'hash': '0xdd00840431c0f84072a202234988be3306247a8d4f6fa8f1c00fcc9359882f1e', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 29270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02a97ecb9600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:05:16.000Z'}}, {'blockNum': '0x79260e', 'uniqueId': '0x0ba4b6f2985b168984b6432c64d08763f4b34bf23e62161b78fabd9ec4863da2:log:100', 'hash': '0x0ba4b6f2985b168984b6432c64d08763f4b34bf23e62161b78fabd9ec4863da2', 'from': '0xedd01c66758232674db49c9fd461dd61635b5219', 'to': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'value': 168.14011394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ea317402', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:05:16.000Z'}}, {'blockNum': '0x792612', 'uniqueId': '0xfbf1981d8e67b2f7f3347b481d5fa4de37cfd09294a445d71e0676d529b0d830:log:63', 'hash': '0xfbf1981d8e67b2f7f3347b481d5fa4de37cfd09294a445d71e0676d529b0d830', 'from': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 168.14011394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ea317402', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:06:17.000Z'}}, {'blockNum': '0x79261b', 'uniqueId': '0xf1adad452d496c8db41d2a12e0b36cb0175fb63364c335c7c000f2f1bdf7daf4:log:8', 'hash': '0xf1adad452d496c8db41d2a12e0b36cb0175fb63364c335c7c000f2f1bdf7daf4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 2806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4155103600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:08:56.000Z'}}, {'blockNum': '0x792621', 'uniqueId': '0x6c579cae870dbdf88a29000993d29068efc6bd85575830da63b44aec37ae37ad:log:5', 'hash': '0x6c579cae870dbdf88a29000993d29068efc6bd85575830da63b44aec37ae37ad', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 50483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04976620d300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:10:52.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0xec513746062d53ce266c8477cfc1eded91e51d2f809cf57b641c4242c5226cd8:log:25', 'hash': '0xec513746062d53ce266c8477cfc1eded91e51d2f809cf57b641c4242c5226cd8', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 168.14011394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03ea317402', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0xaf8e945b98d13ef6a74367dd05e9c0a4057c24eaaaae7a5655c392f0d657faf7:log:26', 'hash': '0xaf8e945b98d13ef6a74367dd05e9c0a4057c24eaaaae7a5655c392f0d657faf7', 'from': '0x8f3ae04aae0e17bfbe5d531b2322c715d59146c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 126.708619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02f33e024c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x71bf5573b50b4f582512c0a8b416e663e9fa2d1f0e7e2f55df0779d529fa4b9a:log:27', 'hash': '0x71bf5573b50b4f582512c0a8b416e663e9fa2d1f0e7e2f55df0779d529fa4b9a', 'from': '0x20488767f52656fda9ce7670d54f8a0544d6c89f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11549.11391084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010ce6154d6c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x0b30861970d3cb5b314d29f888cadbed22326804f7492aa9f5670ff39a567f37:log:29', 'hash': '0x0b30861970d3cb5b314d29f888cadbed22326804f7492aa9f5670ff39a567f37', 'from': '0x6e932cc85b90bc57952b5de01fdb9c0a0698ca44', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1745.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28a3fda180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x30e28eaa8eed533225b10bfd0d2387c05017fb9af835b640539e8e69ff6986f5:log:30', 'hash': '0x30e28eaa8eed533225b10bfd0d2387c05017fb9af835b640539e8e69ff6986f5', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10783.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xfb12ab2f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x6459219690e4a77307ecbab4d5230fd28cbd0b99b1dac951044572992bd69b7a:log:31', 'hash': '0x6459219690e4a77307ecbab4d5230fd28cbd0b99b1dac951044572992bd69b7a', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 74645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06c9f6def500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x16f53978c3387b65a5be610420daadcb9bcb5c2da000fb75952514d58f29674d:log:32', 'hash': '0x16f53978c3387b65a5be610420daadcb9bcb5c2da000fb75952514d58f29674d', 'from': '0x9a32c5f1d20d5059111315de16a5884b12bd81dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7058.80772956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa459c5d15c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x3b84926a52bcb436066461a78fafe6cb868c53765bc97f3d4052859dec90f3fa:log:33', 'hash': '0x3b84926a52bcb436066461a78fafe6cb868c53765bc97f3d4052859dec90f3fa', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x036c4214a300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0x42723fae169566369ba11289fbd182f0bb94c70dea19266dfddec978cdc0cb4c:log:34', 'hash': '0x42723fae169566369ba11289fbd182f0bb94c70dea19266dfddec978cdc0cb4c', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12098.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0119b399a0c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x792624', 'uniqueId': '0xb1459991c8f127f6e65dfa64042f64e92d9fe4ec375ec81e90cf00556418d24b:log:45', 'hash': '0xb1459991c8f127f6e65dfa64042f64e92d9fe4ec375ec81e90cf00556418d24b', 'from': '0xa308bcad1ca8e6c4a5e449464647c716929cb804', 'to': '0xc0b98ee3cfcad99d68c1b82c88878f34a4c0314e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:11:32.000Z'}}, {'blockNum': '0x79262d', 'uniqueId': '0x03bfaee316c6fd0c94549063f7ff44f7703ce1934644eb3af80e737287c128af:log:0', 'hash': '0x03bfaee316c6fd0c94549063f7ff44f7703ce1934644eb3af80e737287c128af', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfd1c37094ba9ccbebf1c146e869e7d0012fcd36a', 'value': 809.96303945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12dbc18449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:13:51.000Z'}}, {'blockNum': '0x792638', 'uniqueId': '0x1912ce7726cd5dd4b7a5b03eb69e2b49aec0417cb6861ef6920709811105f075:log:3', 'hash': '0x1912ce7726cd5dd4b7a5b03eb69e2b49aec0417cb6861ef6920709811105f075', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 4493.938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68a1f53340', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:17:21.000Z'}}, {'blockNum': '0x79263d', 'uniqueId': '0xa7d7fbd0ba4d170d4eb42e1abb414e5f7e926907f59ddd4dbf973a758fd0f00e:log:3', 'hash': '0xa7d7fbd0ba4d170d4eb42e1abb414e5f7e926907f59ddd4dbf973a758fd0f00e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 400.28050625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0951db94c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:18:31.000Z'}}, {'blockNum': '0x792642', 'uniqueId': '0x25d82910d1ff16f8538ac584fae6b692090942de2b19a3dbca31d7104be2457b:log:58', 'hash': '0x25d82910d1ff16f8538ac584fae6b692090942de2b19a3dbca31d7104be2457b', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x46c32b620eb4866404238c49691bfca14d7cfd05', 'value': 400.28050625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0951db94c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:19:07.000Z'}}, {'blockNum': '0x792643', 'uniqueId': '0xf33cc16c86a9a1de1d7298363a4e970ddff8055bd9b4e0f851518a86af5e3a2e:log:3', 'hash': '0xf33cc16c86a9a1de1d7298363a4e970ddff8055bd9b4e0f851518a86af5e3a2e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1699995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9a9d1aca2b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:19:39.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0x83a688ff06d2f9153158b622eb7fd8601689d5ae5e0d721002a09fde55cabc57:log:6', 'hash': '0x83a688ff06d2f9153158b622eb7fd8601689d5ae5e0d721002a09fde55cabc57', 'from': '0xac15f170f1954695c819fe40c92d1fd5289bf216', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27685.80493273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02849c41bfd9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0x658998873eeaf904c509b0d3928d7c284662209fd19a1e83a25d0602d3b30c86:log:7', 'hash': '0x658998873eeaf904c509b0d3928d7c284662209fd19a1e83a25d0602d3b30c86', 'from': '0xc0b98ee3cfcad99d68c1b82c88878f34a4c0314e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0x04494809210b8677e3a83ab9cb014f3f96fb8736c5456ba816cb2ff2a7d594f0:log:8', 'hash': '0x04494809210b8677e3a83ab9cb014f3f96fb8736c5456ba816cb2ff2a7d594f0', 'from': '0x870aad96120bcd5f049c8bcd65a641b665ed92b1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5315.24756879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7bc158258f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0x445cf5f1a4d1b9db8659f2db7b2668b0bb8493bdaabef17d326d833396b4e445:log:12', 'hash': '0x445cf5f1a4d1b9db8659f2db7b2668b0bb8493bdaabef17d326d833396b4e445', 'from': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5d0a041c00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792649', 'uniqueId': '0xffffd329ec8fb4528216dc8429f47d5de7a011f2f71cb3785ddaa292ce9d30f3:log:14', 'hash': '0xffffd329ec8fb4528216dc8429f47d5de7a011f2f71cb3785ddaa292ce9d30f3', 'from': '0xd0dd253cdff96772fb3a23978616b1d0bb548bc2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10499.1750572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf473f5c0b8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:22:06.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0x20275dad645f4a6a45e4ca372b4862b36d4a394410ea5c1b4de5bf23b81e2424:log:0', 'hash': '0x20275dad645f4a6a45e4ca372b4862b36d4a394410ea5c1b4de5bf23b81e2424', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27752.48043751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028629ac7ee7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0xd231e29e1ba22bdc80f67214abe4f227e1e2f5e5948d99cf9ec678414ee86f5b:log:1', 'hash': '0xd231e29e1ba22bdc80f67214abe4f227e1e2f5e5948d99cf9ec678414ee86f5b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 30548.7856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c744f38f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0x17278dcacaf9b0cd638f5220ca80212bb567bc4dafb28dabe3f85f7357f42cc8:log:2', 'hash': '0x17278dcacaf9b0cd638f5220ca80212bb567bc4dafb28dabe3f85f7357f42cc8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 6893.365377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa07fa8d264', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0x01742d1dc71edc42e32865ca71d41474ab8a01ef8168b03a8e651049bcfabc55:log:3', 'hash': '0x01742d1dc71edc42e32865ca71d41474ab8a01ef8168b03a8e651049bcfabc55', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3ee8297bb15ad9c4652664583d57810912a57002', 'value': 9971.0108173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe827db1482', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792650', 'uniqueId': '0xc413dd729eb76d1a80f11353501339d6a83aea480e90ee57a90bda496286b305:log:9', 'hash': '0xc413dd729eb76d1a80f11353501339d6a83aea480e90ee57a90bda496286b305', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4e9ce36e442e55ecd9025b9a6e0d88485d628a67', 'value': 565850.88733104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3376be1d0fb0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:17.000Z'}}, {'blockNum': '0x792651', 'uniqueId': '0x3415daa223a0139d86ede79facdfba2e2f3451913c5f5c6921bd01afeda1c658:log:0', 'hash': '0x3415daa223a0139d86ede79facdfba2e2f3451913c5f5c6921bd01afeda1c658', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:39.000Z'}}, {'blockNum': '0x792651', 'uniqueId': '0xfa07dad4fc00b807eb19da9e34256d821262879d043665491036f21df8e2a658:log:1', 'hash': '0xfa07dad4fc00b807eb19da9e34256d821262879d043665491036f21df8e2a658', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 19124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01bd43ec3400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:23:39.000Z'}}, {'blockNum': '0x792660', 'uniqueId': '0x4574c4db601c33f2f5bad6932559974ae7d8951036348a8414a4a468b12cc792:log:13', 'hash': '0x4574c4db601c33f2f5bad6932559974ae7d8951036348a8414a4a468b12cc792', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 23028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x021829937400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:27:19.000Z'}}, {'blockNum': '0x792661', 'uniqueId': '0x8c303b61adddad0da82217014c97015e9fed943f541cf37450a8a365bcd81958:log:9', 'hash': '0x8c303b61adddad0da82217014c97015e9fed943f541cf37450a8a365bcd81958', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ecb509197215e99aa5f680cebefd1a986acdefb', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:27:23.000Z'}}, {'blockNum': '0x79266b', 'uniqueId': '0x2501c884fd17fb6228f303f1f309137873e79dde2fe0548d1b3d5453fd880942:log:0', 'hash': '0x2501c884fd17fb6228f303f1f309137873e79dde2fe0548d1b3d5453fd880942', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6e9586b0818cfbaeda91d409823e2bf872139a55', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:29:49.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0xcb31c7e362a38b9127f32291d23bcee2bab11acc29a1387bb39c6405e4510586:log:0', 'hash': '0xcb31c7e362a38b9127f32291d23bcee2bab11acc29a1387bb39c6405e4510586', 'from': '0x3ee8297bb15ad9c4652664583d57810912a57002', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9971.0108173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe827db1482', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0xab67a05f45861c6ce876c4d0cc3628ac0aaa366609575b1d7fac6896b2ef4b14:log:1', 'hash': '0xab67a05f45861c6ce876c4d0cc3628ac0aaa366609575b1d7fac6896b2ef4b14', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30548.7856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c744f38f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0xb61b77e88eb52426b5806b4f445f0747f56cb4e322e6f520c39118adc297b620:log:3', 'hash': '0xb61b77e88eb52426b5806b4f445f0747f56cb4e322e6f520c39118adc297b620', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6893.365377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa07fa8d264', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0x0f25a9acec8297dd9835d0592e3707a4e5595103152b1438bd7350c3f76720eb:log:5', 'hash': '0x0f25a9acec8297dd9835d0592e3707a4e5595103152b1438bd7350c3f76720eb', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27752.48043751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028629ac7ee7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792673', 'uniqueId': '0x6ed5180184c270af9c2b9da313c54b492a49ba667d56de51a4bcb4ff6ada75ac:log:6', 'hash': '0x6ed5180184c270af9c2b9da313c54b492a49ba667d56de51a4bcb4ff6ada75ac', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01bd43ec3400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:32:02.000Z'}}, {'blockNum': '0x792687', 'uniqueId': '0x3bc8283b48b90062418ef29ab6f497a1b6a83e16eeffdd75e45e7b10ada1f5e4:log:30', 'hash': '0x3bc8283b48b90062418ef29ab6f497a1b6a83e16eeffdd75e45e7b10ada1f5e4', 'from': '0xa308bcad1ca8e6c4a5e449464647c716929cb804', 'to': '0xc0b98ee3cfcad99d68c1b82c88878f34a4c0314e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:35:56.000Z'}}, {'blockNum': '0x792691', 'uniqueId': '0xa28af41661ed328a0735d4decd26a786bf90d09aead9dde33063b21951b93975:log:0', 'hash': '0xa28af41661ed328a0735d4decd26a786bf90d09aead9dde33063b21951b93975', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe6ec4a8c4ff85458ad1c4f0015cf8c8fdb62c7ff', 'value': 2424.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x387587c280', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:37:59.000Z'}}, {'blockNum': '0x79269a', 'uniqueId': '0x2fee0858619559c08ac363c81bed80474f09f872defc96d95011a712f6e650d7:log:7', 'hash': '0x2fee0858619559c08ac363c81bed80474f09f872defc96d95011a712f6e650d7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa4f4c04bffdb11d9c0356dbd58ee1014bd8bc706', 'value': 513.84496292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0bf6c130a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:41:36.000Z'}}, {'blockNum': '0x79269a', 'uniqueId': '0x1027ed9931e4ca6e6b0517c5ed11d56b296a9319c7aa654d71a874c58a6349b7:log:15', 'hash': '0x1027ed9931e4ca6e6b0517c5ed11d56b296a9319c7aa654d71a874c58a6349b7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xffa92f04cc5b03e5bb275ad53c584535cf417d7c', 'value': 136711.09943508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6f0da6e0d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:41:36.000Z'}}, {'blockNum': '0x79269b', 'uniqueId': '0x14ba5b3a3841bd694de36223cf2a119c92a229c2e980ea56297c7f96a7d00dd4:log:10', 'hash': '0x14ba5b3a3841bd694de36223cf2a119c92a229c2e980ea56297c7f96a7d00dd4', 'from': '0xc0b98ee3cfcad99d68c1b82c88878f34a4c0314e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:42:01.000Z'}}, {'blockNum': '0x7926a3', 'uniqueId': '0x1e3e1c3f292c4f3f376b51f06ff27b9211ac63ef8d87c3f4fb05c5934ea76a42:log:0', 'hash': '0x1e3e1c3f292c4f3f376b51f06ff27b9211ac63ef8d87c3f4fb05c5934ea76a42', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x64894a3749be96feb0712e8ca9618a2736e7e64a', 'value': 7351.27303164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab290073fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:43:50.000Z'}}, {'blockNum': '0x7926aa', 'uniqueId': '0x70066e3c404f4a9e706d13b5493194a6eefb92843509836cc22cedbaef97279b:log:0', 'hash': '0x70066e3c404f4a9e706d13b5493194a6eefb92843509836cc22cedbaef97279b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x53d4f0f21de62931cf103f45556fa8e7ec3dcd1e', 'value': 695.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103180c780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:45:36.000Z'}}, {'blockNum': '0x7926b1', 'uniqueId': '0x90098d9c1114e16635cf84327fe8e4cb3c12351c9f66449c09ada9a9b249ce2d:log:0', 'hash': '0x90098d9c1114e16635cf84327fe8e4cb3c12351c9f66449c09ada9a9b249ce2d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 14366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e7c085e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:47:09.000Z'}}, {'blockNum': '0x7926c1', 'uniqueId': '0x6637e184e6b39af34014579293503e5757f461330f79fc206093511cf090a037:log:3', 'hash': '0x6637e184e6b39af34014579293503e5757f461330f79fc206093511cf090a037', 'from': '0x6e9586b0818cfbaeda91d409823e2bf872139a55', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:52:03.000Z'}}, {'blockNum': '0x7926c1', 'uniqueId': '0x20f4db7e2480f2e683eaeccae7a5c573803ce677f56027ff5da49303e70d6748:log:4', 'hash': '0x20f4db7e2480f2e683eaeccae7a5c573803ce677f56027ff5da49303e70d6748', 'from': '0x53d4f0f21de62931cf103f45556fa8e7ec3dcd1e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 695.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x103180c780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:52:03.000Z'}}, {'blockNum': '0x7926c7', 'uniqueId': '0x6a812ee60fa5d14c97a2cecdcea6cdccbb56cf513546c6c9ca31f9c9fb3e2cb4:log:9', 'hash': '0x6a812ee60fa5d14c97a2cecdcea6cdccbb56cf513546c6c9ca31f9c9fb3e2cb4', 'from': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:53:46.000Z'}}, {'blockNum': '0x7926d2', 'uniqueId': '0x25fa7667100dad3c4d617173180b1f498a2c272124a4c2dad1892660b25bdfdb:log:5', 'hash': '0x25fa7667100dad3c4d617173180b1f498a2c272124a4c2dad1892660b25bdfdb', 'from': '0xffa92f04cc5b03e5bb275ad53c584535cf417d7c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 136711.09943508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c6f0da6e0d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:56:52.000Z'}}, {'blockNum': '0x7926d9', 'uniqueId': '0xbd4aea4b82b6188cf51ab704ffaa3070010d59234a1899b7b6dd1f71ef1e6743:log:37', 'hash': '0xbd4aea4b82b6188cf51ab704ffaa3070010d59234a1899b7b6dd1f71ef1e6743', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 17551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0198a41caf00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:59:06.000Z'}}, {'blockNum': '0x7926dd', 'uniqueId': '0xe871b1de08ea900fbda96207c65e59f11d9e6b435aebc718353478f4a145c86c:log:5', 'hash': '0xe871b1de08ea900fbda96207c65e59f11d9e6b435aebc718353478f4a145c86c', 'from': '0x4b106a8be7481dd89293891d3ea46f89437c9853', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 55301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x050793a56500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T20:59:28.000Z'}}, {'blockNum': '0x7926e8', 'uniqueId': '0xa0dfce0cdacf81fba67980e27f2dc1af157d3046ab06967b85c6406021f76629:log:9', 'hash': '0xa0dfce0cdacf81fba67980e27f2dc1af157d3046ab06967b85c6406021f76629', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x014e7c085e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:02:26.000Z'}}, {'blockNum': '0x7926f8', 'uniqueId': '0xe3da9b0b18df5800d82c0b620e9c2eae3fb3a55ab79d23e154754dbd8d2d3bfb:log:71', 'hash': '0xe3da9b0b18df5800d82c0b620e9c2eae3fb3a55ab79d23e154754dbd8d2d3bfb', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 6840.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9f438b4240', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:05:34.000Z'}}, {'blockNum': '0x7926fd', 'uniqueId': '0x17763558ae46db4beaae37776cbc4af943210b7a33369a88cd4d28b669d0b811:log:78', 'hash': '0x17763558ae46db4beaae37776cbc4af943210b7a33369a88cd4d28b669d0b811', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 16301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017b89880d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:06:05.000Z'}}, {'blockNum': '0x79270a', 'uniqueId': '0x45d93db3739d856c068f967a90f6805d823f52530a2b7ecd7a630454e3483ddb:log:0', 'hash': '0x45d93db3739d856c068f967a90f6805d823f52530a2b7ecd7a630454e3483ddb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.9999031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def0a26', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:08:15.000Z'}}, {'blockNum': '0x79270b', 'uniqueId': '0x3fad617a75882b543cff41bb81990d88162f5f7403397184ab212f6d5000f2e8:log:1', 'hash': '0x3fad617a75882b543cff41bb81990d88162f5f7403397184ab212f6d5000f2e8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 16038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017569ede600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:08:31.000Z'}}, {'blockNum': '0x792718', 'uniqueId': '0x3e4febc707d59ac6b81d8c6ffbc7e0d9293a998f62cdffd6df3371b36dd726e5:log:3', 'hash': '0x3e4febc707d59ac6b81d8c6ffbc7e0d9293a998f62cdffd6df3371b36dd726e5', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03142da4bc00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:11:59.000Z'}}, {'blockNum': '0x792718', 'uniqueId': '0xafdda7d16dce9a50e45c0ea1878a2b0735db50cbea8f399596697eae56509cd6:log:89', 'hash': '0xafdda7d16dce9a50e45c0ea1878a2b0735db50cbea8f399596697eae56509cd6', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 7050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa425464a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:11:59.000Z'}}, {'blockNum': '0x792718', 'uniqueId': '0x2faa20f26b22d1f2d1d981107ff63591627fe8031b6f5bb3445d166f69e9febb:log:90', 'hash': '0x2faa20f26b22d1f2d1d981107ff63591627fe8031b6f5bb3445d166f69e9febb', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 5925.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x89f8f008c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:11:59.000Z'}}, {'blockNum': '0x792723', 'uniqueId': '0x4c33e1c7022474854e13236cc26319ebd56eb0e70c91ac885cca5353bca188af:log:48', 'hash': '0x4c33e1c7022474854e13236cc26319ebd56eb0e70c91ac885cca5353bca188af', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 4714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6dc1a12a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:13:27.000Z'}}, {'blockNum': '0x79272f', 'uniqueId': '0x9df3934da9fc099c24400a8719b09b8bf6865f2596e6a6a8777f3218cbc5286e:log:0', 'hash': '0x9df3934da9fc099c24400a8719b09b8bf6865f2596e6a6a8777f3218cbc5286e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eab0db85acfd00a0d4a617f70226261a3c3b56b', 'value': 900.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14f8695ac0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:15:48.000Z'}}, {'blockNum': '0x792734', 'uniqueId': '0x355d97fa70e5a966d7d6d00b5c47fb3fd072bb549cc88bd2f5130224e14f0286:log:213', 'hash': '0x355d97fa70e5a966d7d6d00b5c47fb3fd072bb549cc88bd2f5130224e14f0286', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50ca540462d794927f4c642611f0da56231e2113', 'value': 4999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x74645ca700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:18:18.000Z'}}, {'blockNum': '0x792734', 'uniqueId': '0x0fa29fc86307f527e1f6b7df65236814c6de1ab2458113fee8af644d46818c9c:log:214', 'hash': '0x0fa29fc86307f527e1f6b7df65236814c6de1ab2458113fee8af644d46818c9c', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 4610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b55bdc200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:18:18.000Z'}}, {'blockNum': '0x792739', 'uniqueId': '0x01b3b6bffbc8d49e2ac5b18d56ae5981d3b30c39163384e343f053f7a248a900:log:4', 'hash': '0x01b3b6bffbc8d49e2ac5b18d56ae5981d3b30c39163384e343f053f7a248a900', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x6ef5d49ec2a7a896522a90593f829a94b4d71098', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:19:24.000Z'}}, {'blockNum': '0x79274c', 'uniqueId': '0x3f5c3b4fd0aa061563ce49c601bafa93b15cc3ca53e5cb3728779bb3449399f3:log:9', 'hash': '0x3f5c3b4fd0aa061563ce49c601bafa93b15cc3ca53e5cb3728779bb3449399f3', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12975.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012e1e3652c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:22:03.000Z'}}, {'blockNum': '0x79274c', 'uniqueId': '0xa0fad39bca002491788cc203fbb9b5c95344f31ef42d6739cf8f8d76d6b45bad:log:12', 'hash': '0xa0fad39bca002491788cc203fbb9b5c95344f31ef42d6739cf8f8d76d6b45bad', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017569ede600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:22:03.000Z'}}, {'blockNum': '0x79274c', 'uniqueId': '0xcd1e33de6fca8446b660cdd758a41e5bda7599157d4335b7db7716b2948b4082:log:13', 'hash': '0xcd1e33de6fca8446b660cdd758a41e5bda7599157d4335b7db7716b2948b4082', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.9999031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def0a26', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:22:03.000Z'}}, {'blockNum': '0x79275c', 'uniqueId': '0x5d9695a8382daf97bd2241cf230047859957df4d9915263804099c5014f547b6:log:3', 'hash': '0x5d9695a8382daf97bd2241cf230047859957df4d9915263804099c5014f547b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9c132ab4ceffb3dd378900691b78b635a97c5745', 'value': 295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e1513780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:24:17.000Z'}}, {'blockNum': '0x792765', 'uniqueId': '0xe50d7f253c3eb228054b06b689e4c4f954e621aa164d11f8970ccfe4c375f4bc:log:1', 'hash': '0xe50d7f253c3eb228054b06b689e4c4f954e621aa164d11f8970ccfe4c375f4bc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2edc8d4d6f2389605ec5dce4512875dbb1b3b994', 'value': 356.92818463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084f75301f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:26:18.000Z'}}, {'blockNum': '0x792769', 'uniqueId': '0x70dd2b56cc41b4266c3e1ccc9e937fba0d59bf79ead6475aa18fc419ec6508cb:log:1', 'hash': '0x70dd2b56cc41b4266c3e1ccc9e937fba0d59bf79ead6475aa18fc419ec6508cb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016b969d0000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:27:45.000Z'}}, {'blockNum': '0x792770', 'uniqueId': '0xaf1df1752e153b48b3181e2afd8f22236ca315f37ffccf1d363b08ec926caa97:log:11', 'hash': '0xaf1df1752e153b48b3181e2afd8f22236ca315f37ffccf1d363b08ec926caa97', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x413d0fa4c7d6c4cfa8706b017c1de22a2570e1c5', 'value': 142.35414599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03507f3047', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:30:21.000Z'}}, {'blockNum': '0x792778', 'uniqueId': '0x1949c105b9394b40cf2197f5d1d4f44f2261f5dd22790446c4cc315938ec1e45:log:0', 'hash': '0x1949c105b9394b40cf2197f5d1d4f44f2261f5dd22790446c4cc315938ec1e45', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99996541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def227d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:32:33.000Z'}}, {'blockNum': '0x792778', 'uniqueId': '0x7d7d34d212346051f5ea1cdf9896f42eed4745523cc4641c61b8ff5d5beca40f:log:21', 'hash': '0x7d7d34d212346051f5ea1cdf9896f42eed4745523cc4641c61b8ff5d5beca40f', 'from': '0x6eab0db85acfd00a0d4a617f70226261a3c3b56b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 900.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14f8695ac0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:32:33.000Z'}}, {'blockNum': '0x792778', 'uniqueId': '0x94399dd3e05da953a3e4c90fc29058f3305a872626d3614e54c25994c614f66c:log:23', 'hash': '0x94399dd3e05da953a3e4c90fc29058f3305a872626d3614e54c25994c614f66c', 'from': '0x9c132ab4ceffb3dd378900691b78b635a97c5745', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e1513780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:32:33.000Z'}}, {'blockNum': '0x792778', 'uniqueId': '0x7af6a7711dcf8435e16bea90e64fbc5e38aa411977e8b142839ff6ad5e075afb:log:24', 'hash': '0x7af6a7711dcf8435e16bea90e64fbc5e38aa411977e8b142839ff6ad5e075afb', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b55bdc200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:32:33.000Z'}}, {'blockNum': '0x792783', 'uniqueId': '0xea5c97c72842e9bbe92869cc9a9d277166e20529712ffbae10e2b0e93fbe04a1:log:25', 'hash': '0xea5c97c72842e9bbe92869cc9a9d277166e20529712ffbae10e2b0e93fbe04a1', 'from': '0x110327c7174f93252c92ed43edea694afd29433d', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:35:43.000Z'}}, {'blockNum': '0x792786', 'uniqueId': '0x6467a8f854a98ca7175e8a2cde590a47b56e06d93ed5cbc9e3d9967b43d4be89:log:81', 'hash': '0x6467a8f854a98ca7175e8a2cde590a47b56e06d93ed5cbc9e3d9967b43d4be89', 'from': '0x2edc8d4d6f2389605ec5dce4512875dbb1b3b994', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 356.92818463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x084f75301f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:36:07.000Z'}}, {'blockNum': '0x792791', 'uniqueId': '0xf93c20b21b64578047d3b117f638f9a6614d1fec2a66760dc355cc48b2924aaf:log:0', 'hash': '0xf93c20b21b64578047d3b117f638f9a6614d1fec2a66760dc355cc48b2924aaf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 30380.9891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c35cce6b30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:37:42.000Z'}}, {'blockNum': '0x792794', 'uniqueId': '0xec468b9d95ff6f702d714bb4c523b2b41411e3bb21fb8519474046f04f6936c0:log:90', 'hash': '0xec468b9d95ff6f702d714bb4c523b2b41411e3bb21fb8519474046f04f6936c0', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 1149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ac092dd00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:38:21.000Z'}}, {'blockNum': '0x792799', 'uniqueId': '0x2a6a38ee79e540ed487946bdbdab6c20cf32b5a2607d694ee9dcb1b33986bd2c:log:4', 'hash': '0x2a6a38ee79e540ed487946bdbdab6c20cf32b5a2607d694ee9dcb1b33986bd2c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 16424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017e66ab2800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:38:59.000Z'}}, {'blockNum': '0x7927a9', 'uniqueId': '0xf4dba26dae520a3c6c19d2adc9f55526091b175caec51b10d96553809d17229f:log:4', 'hash': '0xf4dba26dae520a3c6c19d2adc9f55526091b175caec51b10d96553809d17229f', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32040, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e9fd482800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:42:01.000Z'}}, {'blockNum': '0x7927a9', 'uniqueId': '0x3b741c2a447d014d55120989759b1806c2c7dc8930798c6e00684c3da1b92fcb:log:6', 'hash': '0x3b741c2a447d014d55120989759b1806c2c7dc8930798c6e00684c3da1b92fcb', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ac092dd00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:42:01.000Z'}}, {'blockNum': '0x7927a9', 'uniqueId': '0xd51ab3ac6aa180664b33facfdfd14a84f429823dca1f3311acbdfae604a4d91b:log:7', 'hash': '0xd51ab3ac6aa180664b33facfdfd14a84f429823dca1f3311acbdfae604a4d91b', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30380.9891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c35cce6b30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:42:01.000Z'}}, {'blockNum': '0x7927a9', 'uniqueId': '0x55c62dd329fb84e2706a26dadbb479143ac31387a3e22b0dad9f19824eb3208a:log:8', 'hash': '0x55c62dd329fb84e2706a26dadbb479143ac31387a3e22b0dad9f19824eb3208a', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99996541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def227d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:42:01.000Z'}}, {'blockNum': '0x7927e5', 'uniqueId': '0x4fbe6559b4750b91b136a3e344a364bb83ebfc9bc108999d1f322a2a9e2988f5:log:9', 'hash': '0x4fbe6559b4750b91b136a3e344a364bb83ebfc9bc108999d1f322a2a9e2988f5', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:51:59.000Z'}}, {'blockNum': '0x7927e5', 'uniqueId': '0x7f1e1cfaf8ee517b75259481bc6db94b17081575b7fa93f12869ede9379b2881:log:12', 'hash': '0x7f1e1cfaf8ee517b75259481bc6db94b17081575b7fa93f12869ede9379b2881', 'from': '0x413d0fa4c7d6c4cfa8706b017c1de22a2570e1c5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 142.35414599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03507f3047', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T21:51:59.000Z'}}, {'blockNum': '0x792827', 'uniqueId': '0x62a31dd99af63ffdfd933d60725edf3311a1521245119922e02b570813451efc:log:1', 'hash': '0x62a31dd99af63ffdfd933d60725edf3311a1521245119922e02b570813451efc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7098728ef2dc38f49419118b9b4de6253e237679', 'value': 1987.50000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e466c5381', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:05:05.000Z'}}, {'blockNum': '0x792827', 'uniqueId': '0x71645e4a62379a07212031969ee9f063e49bcbed1c0062cec982b7f3a5cfd605:log:2', 'hash': '0x71645e4a62379a07212031969ee9f063e49bcbed1c0062cec982b7f3a5cfd605', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc51ab0df621e640aedc211d777b334634dbc3b7b', 'value': 807.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12cd133780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:05:05.000Z'}}, {'blockNum': '0x792836', 'uniqueId': '0x5c1993ad95c8ff0aedcdd1d863f81246892ae7e6e70f95570afa2308e934610b:log:9', 'hash': '0x5c1993ad95c8ff0aedcdd1d863f81246892ae7e6e70f95570afa2308e934610b', 'from': '0x6a3eb79e1c4023f1610ff046c5dc30f9790d326f', 'to': '0x263e7911bcb2188325d5ce2a8a000c296ae49ae8', 'value': 586.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0da7b17600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:08:03.000Z'}}, {'blockNum': '0x792843', 'uniqueId': '0x1ccc8583c9656d2d705b6aca2bb89e427ca5384d9ffebee7f9f935ed60c0e35e:log:10', 'hash': '0x1ccc8583c9656d2d705b6aca2bb89e427ca5384d9ffebee7f9f935ed60c0e35e', 'from': '0x432aba3d171dbf8344add74b0891b124e375c3d8', 'to': '0xea3e82675818ab2f417eb94bacfcebec6a26e55f', 'value': 17.97434173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6b22ab3d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:12:03.000Z'}}, {'blockNum': '0x79286c', 'uniqueId': '0x1cd98e73aad1e5ff00c3d5de5a118704f2dc3f46c2a225ac8a7561d236037be8:log:38', 'hash': '0x1cd98e73aad1e5ff00c3d5de5a118704f2dc3f46c2a225ac8a7561d236037be8', 'from': '0x94938c0f40d0ed66a51dd38c2370eb372edb1b9a', 'to': '0xba3ca2b1e9f927b473acbad3730bd45bee00820e', 'value': 9856.06427109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe57ab891e5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:20:58.000Z'}}, {'blockNum': '0x79286f', 'uniqueId': '0x29e2e01f2a219fe45aec454276cd7c5c07f3403d16b567f8a4bf70c6aeb37146:log:11', 'hash': '0x29e2e01f2a219fe45aec454276cd7c5c07f3403d16b567f8a4bf70c6aeb37146', 'from': '0xc51ab0df621e640aedc211d777b334634dbc3b7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 807.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12cd133780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:21:36.000Z'}}, {'blockNum': '0x79286f', 'uniqueId': '0xccc44e48643b5b1bb8ec2899d67ff94a5b11cbadd41ec3d592baf4b0cc7528ff:log:15', 'hash': '0xccc44e48643b5b1bb8ec2899d67ff94a5b11cbadd41ec3d592baf4b0cc7528ff', 'from': '0x7098728ef2dc38f49419118b9b4de6253e237679', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1987.50000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e466c5381', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:21:36.000Z'}}, {'blockNum': '0x792870', 'uniqueId': '0x3386c041877ede6e865e67b95d5a7d15060b0abec7e3f55a5f9cc9481ebbca2d:log:5', 'hash': '0x3386c041877ede6e865e67b95d5a7d15060b0abec7e3f55a5f9cc9481ebbca2d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa61bc2cf08f31aba1d437813c53395a150269061', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x011e1a3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:22:20.000Z'}}, {'blockNum': '0x792877', 'uniqueId': '0x8cec5a524f9460448f3690b6cb72712a20d08e720311637a8339136a9aa95e9b:log:6', 'hash': '0x8cec5a524f9460448f3690b6cb72712a20d08e720311637a8339136a9aa95e9b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27497.52723658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02803a08c8ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:23:32.000Z'}}, {'blockNum': '0x79287b', 'uniqueId': '0xe51581c27b497fb26eef1fcbf21c97daf2448dee7637fdec22253fafc29ade0d:log:1', 'hash': '0xe51581c27b497fb26eef1fcbf21c97daf2448dee7637fdec22253fafc29ade0d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd95372b9cef81d9015f3bcdd43a9e43c33eb9ffc', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:24:40.000Z'}}, {'blockNum': '0x79288a', 'uniqueId': '0xc43d95e464964e78d39ba28a30fbfb7cdb0e0307b811d7ed33382944710a97d3:log:7', 'hash': '0xc43d95e464964e78d39ba28a30fbfb7cdb0e0307b811d7ed33382944710a97d3', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xa61bc2cf08f31aba1d437813c53395a150269061', 'value': 863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1417e17f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:28:56.000Z'}}, {'blockNum': '0x792897', 'uniqueId': '0x3de3d53d0340b00ed6c3ec6c25e82f8896b957c7e82811eeeb9a8325ee198721:log:12', 'hash': '0x3de3d53d0340b00ed6c3ec6c25e82f8896b957c7e82811eeeb9a8325ee198721', 'from': '0xba3ca2b1e9f927b473acbad3730bd45bee00820e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9856.06427109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xe57ab891e5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:32:10.000Z'}}, {'blockNum': '0x792897', 'uniqueId': '0xa4b9aa34c21c6f032f4837f3cf714e3ff5e696cb836549b40b31eba7db257665:log:13', 'hash': '0xa4b9aa34c21c6f032f4837f3cf714e3ff5e696cb836549b40b31eba7db257665', 'from': '0xd95372b9cef81d9015f3bcdd43a9e43c33eb9ffc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:32:10.000Z'}}, {'blockNum': '0x792897', 'uniqueId': '0x0e3741a21c6967b729ce41122aacc102800209f868cb2cab4e4cb28952b00433:log:14', 'hash': '0x0e3741a21c6967b729ce41122aacc102800209f868cb2cab4e4cb28952b00433', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27497.52723658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02803a08c8ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:32:10.000Z'}}, {'blockNum': '0x7928bb', 'uniqueId': '0x236e34bc0400eb1ced4f649d4bb23681d42bb43743f8d4fe692c3e834edc10e9:log:1', 'hash': '0x236e34bc0400eb1ced4f649d4bb23681d42bb43743f8d4fe692c3e834edc10e9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcdf52a32f16b16b947cd29a66d1079a55e1089d8', 'value': 465.27005065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ad539c189', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:40:55.000Z'}}, {'blockNum': '0x7928bb', 'uniqueId': '0x3a6dd4afcc7542446eb9e1a0272535b7df6f1c73956f6b8919b0d4b48d098ea9:log:2', 'hash': '0x3a6dd4afcc7542446eb9e1a0272535b7df6f1c73956f6b8919b0d4b48d098ea9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8a080fc6ac910bdd9ed3eb94ad097d62f64913de', 'value': 792.6551272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x127497bd10', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:40:55.000Z'}}, {'blockNum': '0x7928d1', 'uniqueId': '0x3e8352a830697b3fd3a44959a853de0704c7f77b862ab3905ec8bd5a9d8dae35:log:1', 'hash': '0x3e8352a830697b3fd3a44959a853de0704c7f77b862ab3905ec8bd5a9d8dae35', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016a4ec9a900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:45:21.000Z'}}, {'blockNum': '0x7928d6', 'uniqueId': '0x641b379f9207c828e3f81c7db6a4e62930ccd04ae6748cc48527268736f7b722:log:0', 'hash': '0x641b379f9207c828e3f81c7db6a4e62930ccd04ae6748cc48527268736f7b722', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.9999372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def1778', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:46:00.000Z'}}, {'blockNum': '0x7928dd', 'uniqueId': '0xb7cb10520050df2fe3f43ee3b5dc3aae9a265f5836ca906b329f5b9fb6ba6e7b:log:11', 'hash': '0xb7cb10520050df2fe3f43ee3b5dc3aae9a265f5836ca906b329f5b9fb6ba6e7b', 'from': '0x110327c7174f93252c92ed43edea694afd29433d', 'to': '0xb0385bd9e29c6f37368e63f3f9ef54710ef1c04e', 'value': 1997.11206096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7fb72ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:48:01.000Z'}}, {'blockNum': '0x7928e8', 'uniqueId': '0x7263d80c660b05a0ca6c234f71e6982c986f8d8674b5cc97338816fa27f70134:log:1', 'hash': '0x7263d80c660b05a0ca6c234f71e6982c986f8d8674b5cc97338816fa27f70134', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ea91f3313bc8fa7b2b1249ccb2f2d0e4b097371', 'value': 716.67122545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10afb18171', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:50:40.000Z'}}, {'blockNum': '0x7928e8', 'uniqueId': '0x65b9cdd79e5d140ecee53048358193edc5373545393f989fc5242d38308e271b:log:2', 'hash': '0x65b9cdd79e5d140ecee53048358193edc5373545393f989fc5242d38308e271b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x24ac0cd6b11c0759df85ab73303dd1f92a7aec3c', 'value': 445.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5f630d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:50:40.000Z'}}, {'blockNum': '0x7928ee', 'uniqueId': '0x31637c532dd12e855c9f2d7c7e296d391c2f44a4518fa1ef7025bda0d120acde:log:12', 'hash': '0x31637c532dd12e855c9f2d7c7e296d391c2f44a4518fa1ef7025bda0d120acde', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.9999372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def1778', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:51:50.000Z'}}, {'blockNum': '0x7928ee', 'uniqueId': '0x9990a476b1eb4f95ddbd16b7b076fc4cb42cb606b61130c0b7183162172a39ab:log:13', 'hash': '0x9990a476b1eb4f95ddbd16b7b076fc4cb42cb606b61130c0b7183162172a39ab', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016a4ec9a900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:51:50.000Z'}}, {'blockNum': '0x7928f5', 'uniqueId': '0x4f4ecc3e6d595e9fec34bb73d394286bd47d179465af5b2a348d856b4ac43a98:log:19', 'hash': '0x4f4ecc3e6d595e9fec34bb73d394286bd47d179465af5b2a348d856b4ac43a98', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xecb301cf744fc0c7771f2a3211c82f752c6c29bb', 'value': 10493.8750572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf4545e9838', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:54:34.000Z'}}, {'blockNum': '0x7928fd', 'uniqueId': '0xdee5e635a1257b5125c2a03b85dd283089938df2a3f6a2b7ef2a47705b324c8b:log:0', 'hash': '0xdee5e635a1257b5125c2a03b85dd283089938df2a3f6a2b7ef2a47705b324c8b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 30000.5121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba80fc9710', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:55:35.000Z'}}, {'blockNum': '0x7928fe', 'uniqueId': '0x85237fced12a699d462ab1c3f983564a41b74b163bc3fe68716a882a16f1da31:log:20', 'hash': '0x85237fced12a699d462ab1c3f983564a41b74b163bc3fe68716a882a16f1da31', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 3534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5248480e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:55:57.000Z'}}, {'blockNum': '0x792906', 'uniqueId': '0x7d3c13c27d171213f25e00132f0059f3f058d2f7dc3d184bbb4ccd7190ef0e1e:log:11', 'hash': '0x7d3c13c27d171213f25e00132f0059f3f058d2f7dc3d184bbb4ccd7190ef0e1e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 7330.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaaae143440', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T22:57:16.000Z'}}, {'blockNum': '0x792914', 'uniqueId': '0x9c82f0743028ebdb49fe425c146eadd2742ed636fb3d8e153ead97be3603bc7f:log:6', 'hash': '0x9c82f0743028ebdb49fe425c146eadd2742ed636fb3d8e153ead97be3603bc7f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 39266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03923b992200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:00:52.000Z'}}, {'blockNum': '0x79291b', 'uniqueId': '0xcdcc08bcdbcd868d522babd2bf97b4a5a715058196491df3f729e8a881f66521:log:15', 'hash': '0xcdcc08bcdbcd868d522babd2bf97b4a5a715058196491df3f729e8a881f66521', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000.5121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba80fc9710', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:02:32.000Z'}}, {'blockNum': '0x79291b', 'uniqueId': '0x043b3be767daa4117520ae0db9f48b31049d7c5da83bf83b5b36835cf73cd119:log:16', 'hash': '0x043b3be767daa4117520ae0db9f48b31049d7c5da83bf83b5b36835cf73cd119', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5248480e00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:02:32.000Z'}}, {'blockNum': '0x79292d', 'uniqueId': '0xa5fd9eecd31f58ac72266e73bab8d02aa31c29dff576fa28d116acd2b735aab0:log:0', 'hash': '0xa5fd9eecd31f58ac72266e73bab8d02aa31c29dff576fa28d116acd2b735aab0', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 14834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01596187b200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:05:58.000Z'}}, {'blockNum': '0x792930', 'uniqueId': '0x97888f1629e166d06abe778ca4c09f214f21f3a730b7d01ac8e3d5afe4678497:log:1', 'hash': '0x97888f1629e166d06abe778ca4c09f214f21f3a730b7d01ac8e3d5afe4678497', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 12788.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0129bec70180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:06:50.000Z'}}, {'blockNum': '0x792938', 'uniqueId': '0x8a0a3569f857315e253c811e1e70c4d4e2652c04f894ac4649012cc18e32081a:log:22', 'hash': '0x8a0a3569f857315e253c811e1e70c4d4e2652c04f894ac4649012cc18e32081a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x023210693932ad66407fdb854c0481fcabdf8fea', 'value': 1264.789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d72badb20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:08:54.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0x670f39c83b19cfd0e102348018ac0bdf7e67a1bf88dc10a1e59f96ed71d19504:log:4', 'hash': '0x670f39c83b19cfd0e102348018ac0bdf7e67a1bf88dc10a1e59f96ed71d19504', 'from': '0xecb301cf744fc0c7771f2a3211c82f752c6c29bb', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 10493.8750572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf4545e9838', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0xb2d8bd74559bcae89232af2dd14e773ffc866915f840bb3b454c335966b580b3:log:27', 'hash': '0xb2d8bd74559bcae89232af2dd14e773ffc866915f840bb3b454c335966b580b3', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03923b992200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0xc8ca7e0e03e86f163941ad222f8fead6f2b832769f162fdaea396ff7f419b09e:log:29', 'hash': '0xc8ca7e0e03e86f163941ad222f8fead6f2b832769f162fdaea396ff7f419b09e', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7330.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaaae143440', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0xcbed010ed6c79fae2a1dfef0027688280a011b1ccf73ab7bb3ba21c7a60bca3e:log:30', 'hash': '0xcbed010ed6c79fae2a1dfef0027688280a011b1ccf73ab7bb3ba21c7a60bca3e', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01596187b200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792941', 'uniqueId': '0xa226a9b2673c4b01e670ff7ba41dc850d1b37d4174ec0d582bf5fdf1df47bd79:log:31', 'hash': '0xa226a9b2673c4b01e670ff7ba41dc850d1b37d4174ec0d582bf5fdf1df47bd79', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12788.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0129bec70180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:11:32.000Z'}}, {'blockNum': '0x792965', 'uniqueId': '0x4b729917bbbf56b952edc2301df39268b8ef2f1f84088f058e466aa261b1ca68:log:93', 'hash': '0x4b729917bbbf56b952edc2301df39268b8ef2f1f84088f058e466aa261b1ca68', 'from': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 42582.16, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03df7173ba00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:21:25.000Z'}}, {'blockNum': '0x792968', 'uniqueId': '0xd33e4fa1d9e32c7a6dca87eb2c1d7486f7fd3ae938f35ce32a65b2e2c609cfc6:log:2', 'hash': '0xd33e4fa1d9e32c7a6dca87eb2c1d7486f7fd3ae938f35ce32a65b2e2c609cfc6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99996541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def227d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:24:07.000Z'}}, {'blockNum': '0x79296c', 'uniqueId': '0x22d2930870fd522315fe477d62088e65bfbd496a2edce079ed8e083bd3608833:log:1', 'hash': '0x22d2930870fd522315fe477d62088e65bfbd496a2edce079ed8e083bd3608833', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3250a57d11f5e4dee04260124670f448c1ef2cb0', 'value': 309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0731c89500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:25:00.000Z'}}, {'blockNum': '0x79298c', 'uniqueId': '0x0f63311e03323196647d87fb7ab069c04867efb0f983aab87322c559a2d1b22c:log:16', 'hash': '0x0f63311e03323196647d87fb7ab069c04867efb0f983aab87322c559a2d1b22c', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99996541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def227d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:31:46.000Z'}}, {'blockNum': '0x79298c', 'uniqueId': '0x97b069f8c0d96aa2bec6da00f54d0b7ad630ece6290d4ec62e53b695bdda2115:log:18', 'hash': '0x97b069f8c0d96aa2bec6da00f54d0b7ad630ece6290d4ec62e53b695bdda2115', 'from': '0x3250a57d11f5e4dee04260124670f448c1ef2cb0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0731c89500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:31:46.000Z'}}, {'blockNum': '0x792992', 'uniqueId': '0x1045f3192d29efa322554a99effe5b0867aaafe531cc02a22fd2a766247c8abe:log:3', 'hash': '0x1045f3192d29efa322554a99effe5b0867aaafe531cc02a22fd2a766247c8abe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 29921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02b8a70ec100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:32:50.000Z'}}, {'blockNum': '0x7929a2', 'uniqueId': '0x26226fde87c0f566c88d934a78362e60010f5dca38f85ffc1a07f974810fb0ec:log:42', 'hash': '0x26226fde87c0f566c88d934a78362e60010f5dca38f85ffc1a07f974810fb0ec', 'from': '0xb0385bd9e29c6f37368e63f3f9ef54710ef1c04e', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 1997.11206096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7fb72ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:34:53.000Z'}}, {'blockNum': '0x7929a8', 'uniqueId': '0x0d81129bfba242022616408028fca06c4511906f0caa25f0b7abb1532b64c162:log:100', 'hash': '0x0d81129bfba242022616408028fca06c4511906f0caa25f0b7abb1532b64c162', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1997.11206096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7fb72ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:35:26.000Z'}}, {'blockNum': '0x7929b3', 'uniqueId': '0x6973d42460a0442bb67dea5276cbf727d9fce9a1928a9279c837fc87ce1a4306:log:16', 'hash': '0x6973d42460a0442bb67dea5276cbf727d9fce9a1928a9279c837fc87ce1a4306', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 56537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05245ac7b900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:38:57.000Z'}}, {'blockNum': '0x7929ca', 'uniqueId': '0x3aa58a23deb49b156714e307a21f7f2fbb55404a9e6eda123341454a5be149ed:log:7', 'hash': '0x3aa58a23deb49b156714e307a21f7f2fbb55404a9e6eda123341454a5be149ed', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1997.11206096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7fb72ad0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:42:03.000Z'}}, {'blockNum': '0x7929d6', 'uniqueId': '0x75be888db8bbd4e593f8b0ad3b418bcf30eff6c0a5ab095829ff73632119db39:log:1', 'hash': '0x75be888db8bbd4e593f8b0ad3b418bcf30eff6c0a5ab095829ff73632119db39', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x14f56565718358a77600efabcaede92da192e352', 'value': 663.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f72c4a780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:43:35.000Z'}}, {'blockNum': '0x7929e9', 'uniqueId': '0xdc16aa3c42bf44e380e100e5969213a16b189bdb352d709e59d445a0f8697100:log:14', 'hash': '0xdc16aa3c42bf44e380e100e5969213a16b189bdb352d709e59d445a0f8697100', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x48ff00065aef36f57933200bfc1c3054faac42eb', 'value': 7.11240954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a64acfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:47:49.000Z'}}, {'blockNum': '0x7929fa', 'uniqueId': '0x5a9712cfd8cd2c9443ba078ef5dd2bb01d13dcbcc79d2949a0a8a1549ab48f62:log:11', 'hash': '0x5a9712cfd8cd2c9443ba078ef5dd2bb01d13dcbcc79d2949a0a8a1549ab48f62', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 36753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0357b8f37100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:51:19.000Z'}}, {'blockNum': '0x792a0d', 'uniqueId': '0xa394434ffcbbea0d7b190127fc9ccd35f8181961e0621058cab14361b4925905:log:0', 'hash': '0xa394434ffcbbea0d7b190127fc9ccd35f8181961e0621058cab14361b4925905', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 24248.94580837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023496fae865', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:55:42.000Z'}}, {'blockNum': '0x792a1d', 'uniqueId': '0xe2d303f3b01913ab02a3d5b3d75f2f1a02e8222bcd1f7e5d14d5e526dce22e9d:log:4', 'hash': '0xe2d303f3b01913ab02a3d5b3d75f2f1a02e8222bcd1f7e5d14d5e526dce22e9d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 11540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010cafc29400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-11T23:59:27.000Z'}}, {'blockNum': '0x792a2c', 'uniqueId': '0x5c0ed33a96c552587cfd59f59489087700129ba41b877c4f3f8f6fc8afdbce8a:log:22', 'hash': '0x5c0ed33a96c552587cfd59f59489087700129ba41b877c4f3f8f6fc8afdbce8a', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24248.94580837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x023496fae865', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:01:47.000Z'}}, {'blockNum': '0x792a2e', 'uniqueId': '0x466429a0a830c3a1d0d150ad778a8187d6aeffebce46512ad1cab3cb574c3454:log:1', 'hash': '0x466429a0a830c3a1d0d150ad778a8187d6aeffebce46512ad1cab3cb574c3454', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 17753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x019d58203900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:02:22.000Z'}}, {'blockNum': '0x792a36', 'uniqueId': '0xe8db46da613fac6b0d97b9d2c5004f69745941cb9ce97c52f71493b3b11ae818:log:7', 'hash': '0xe8db46da613fac6b0d97b9d2c5004f69745941cb9ce97c52f71493b3b11ae818', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 9306.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd8af1f4cc0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:04:16.000Z'}}, {'blockNum': '0x792a3c', 'uniqueId': '0xbeccfec6441023384fb0b61da38f561c74b6561e0f48437babc3de291d0404b2:log:2', 'hash': '0xbeccfec6441023384fb0b61da38f561c74b6561e0f48437babc3de291d0404b2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x55874d1c2bafb114d6ffa15dc1d16047cc9dd352', 'value': 224.28440367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0538d6d72f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:05:14.000Z'}}, {'blockNum': '0x792a3f', 'uniqueId': '0xe4b90c040120696c7fa83149418404855e8d3b7b7e229d587b6a7cf01b17228d:log:2', 'hash': '0xe4b90c040120696c7fa83149418404855e8d3b7b7e229d587b6a7cf01b17228d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 30551.3008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c753f17300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:07:06.000Z'}}, {'blockNum': '0x792a45', 'uniqueId': '0xf992ad23a993ecccf940c112ef6ee3d1b8acc75f3ac0ca279ba9446249fbf3ab:log:14', 'hash': '0xf992ad23a993ecccf940c112ef6ee3d1b8acc75f3ac0ca279ba9446249fbf3ab', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01689bac8000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:08:36.000Z'}}, {'blockNum': '0x792a4f', 'uniqueId': '0xf158a297ee5e7692624167ab0930ca35222a8606ecd9d2e10e37364481074cfb:log:13', 'hash': '0xf158a297ee5e7692624167ab0930ca35222a8606ecd9d2e10e37364481074cfb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 8096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xbc7feba000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:11:23.000Z'}}, {'blockNum': '0x792a4f', 'uniqueId': '0x923d9e7ec73621486ee38383d43385ef9ab833dc2f5b4c456f103336ecfb48e2:log:32', 'hash': '0x923d9e7ec73621486ee38383d43385ef9ab833dc2f5b4c456f103336ecfb48e2', 'from': '0x55874d1c2bafb114d6ffa15dc1d16047cc9dd352', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 224.28440367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0538d6d72f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:11:23.000Z'}}, {'blockNum': '0x792a4f', 'uniqueId': '0x242c0b3ca9f790e5cfa24a8b287a4b2b8851edd7c0ffe270d368435fce59e219:log:33', 'hash': '0x242c0b3ca9f790e5cfa24a8b287a4b2b8851edd7c0ffe270d368435fce59e219', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0305f3ccb900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:11:23.000Z'}}, {'blockNum': '0x792a50', 'uniqueId': '0xa4fdebcca3cd6096a20c757e36c34c9b4468a459bbf3175a7704e2e7c46d5fcc:log:10', 'hash': '0xa4fdebcca3cd6096a20c757e36c34c9b4468a459bbf3175a7704e2e7c46d5fcc', 'from': '0x6ea91f3313bc8fa7b2b1249ccb2f2d0e4b097371', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 716.67122545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x10afb18171', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:12:04.000Z'}}, {'blockNum': '0x792a58', 'uniqueId': '0x659ad748c90fc9cdaa90afa1706671e7ce1099142e713d4df28608d11fe1de89:log:0', 'hash': '0x659ad748c90fc9cdaa90afa1706671e7ce1099142e713d4df28608d11fe1de89', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99998927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def2bcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:13:31.000Z'}}, {'blockNum': '0x792a71', 'uniqueId': '0x8f499c8c0ac47ce9c86b6f5c90c0cb4915180baf14187c00f9316cb18966a9ec:log:2', 'hash': '0x8f499c8c0ac47ce9c86b6f5c90c0cb4915180baf14187c00f9316cb18966a9ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x86e53942a3815a7f87c150384fac6008f82e729b', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:17:47.000Z'}}, {'blockNum': '0x792a7e', 'uniqueId': '0x0a1882f087f2114f0975e2d44acb19e95075d72b8423a544ffb5ef5c3c123138:log:6', 'hash': '0x0a1882f087f2114f0975e2d44acb19e95075d72b8423a544ffb5ef5c3c123138', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 40711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03b3e0782700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:19:40.000Z'}}, {'blockNum': '0x792a80', 'uniqueId': '0x909132797579d2c66ba30d2fdb50a8563ac4ee0b11468a8199a2a19d2ee955b1:log:0', 'hash': '0x909132797579d2c66ba30d2fdb50a8563ac4ee0b11468a8199a2a19d2ee955b1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016c378bbb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:21:33.000Z'}}, {'blockNum': '0x792a82', 'uniqueId': '0xbec0560bf23ad6b46bb4fbdc11d1019a7b6613d536a9a4069c19c568035b5edb:log:29', 'hash': '0xbec0560bf23ad6b46bb4fbdc11d1019a7b6613d536a9a4069c19c568035b5edb', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99998927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def2bcf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:22:04.000Z'}}, {'blockNum': '0x792a82', 'uniqueId': '0xf6f4a231ddf795dbd619082598968faeb8599e682e744d07c0b96898ad06aff3:log:34', 'hash': '0xf6f4a231ddf795dbd619082598968faeb8599e682e744d07c0b96898ad06aff3', 'from': '0x86e53942a3815a7f87c150384fac6008f82e729b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:22:04.000Z'}}, {'blockNum': '0x792a82', 'uniqueId': '0x94d83839b9a8dc3eebf02c65a15f11882e081ce04be849ae191bed7bcd6061c5:log:37', 'hash': '0x94d83839b9a8dc3eebf02c65a15f11882e081ce04be849ae191bed7bcd6061c5', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30551.3008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c753f17300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:22:04.000Z'}}, {'blockNum': '0x792a9a', 'uniqueId': '0xe1d5c62dd0a8add16ac75b2fcdbab7793bdc88f67224f81b8787ae4202f0e74e:log:19', 'hash': '0xe1d5c62dd0a8add16ac75b2fcdbab7793bdc88f67224f81b8787ae4202f0e74e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:27:35.000Z'}}, {'blockNum': '0x792aa1', 'uniqueId': '0x794691bf5d1e3a062f0bf3ce748e006bede3f2ce641161f04c82db9455ecea16:log:6', 'hash': '0x794691bf5d1e3a062f0bf3ce748e006bede3f2ce641161f04c82db9455ecea16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 30233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02bfeab8f900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:29:26.000Z'}}, {'blockNum': '0x792aa1', 'uniqueId': '0x2df2b9b96ae3292ec63f0237b2363550cfbfef48bfc712b0966df6b1b6455aab:log:7', 'hash': '0x2df2b9b96ae3292ec63f0237b2363550cfbfef48bfc712b0966df6b1b6455aab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 5263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a89ecaf00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:29:26.000Z'}}, {'blockNum': '0x792aa2', 'uniqueId': '0xb049787c8de3b273c73383555beff58abaf7d1f2a05dd25926949e642323870a:log:3', 'hash': '0xb049787c8de3b273c73383555beff58abaf7d1f2a05dd25926949e642323870a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd264ccbb098203cf78a355e5d459405dc2b148b1', 'value': 62713.86230198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05b42bbf9db6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:29:54.000Z'}}, {'blockNum': '0x792aad', 'uniqueId': '0x880581578a6958cd68e019f76fb5be1b9a5864e25f4ae2ac544efd19f2f7ff38:log:39', 'hash': '0x880581578a6958cd68e019f76fb5be1b9a5864e25f4ae2ac544efd19f2f7ff38', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x016c378bbb00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:31:47.000Z'}}, {'blockNum': '0x792ab2', 'uniqueId': '0xc1a999e988701ccaddd934b74c51c3dafc90333f769b33f361fe2406cb35197c:log:11', 'hash': '0xc1a999e988701ccaddd934b74c51c3dafc90333f769b33f361fe2406cb35197c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 29999.99992108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def112c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:33:03.000Z'}}, {'blockNum': '0x792ab6', 'uniqueId': '0x06536997df92099b1c1f5b10a9305a7006646391e9579d92c81f68d41f1bd993:log:20', 'hash': '0x06536997df92099b1c1f5b10a9305a7006646391e9579d92c81f68d41f1bd993', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 77464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x070b996b9800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:33:52.000Z'}}, {'blockNum': '0x792abf', 'uniqueId': '0xb2ff3ca117f9756ff03ae25d25a34433d79c1a61b317af8742f5e1954feb6662:log:14', 'hash': '0xb2ff3ca117f9756ff03ae25d25a34433d79c1a61b317af8742f5e1954feb6662', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 6605.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x99cab732c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:36:09.000Z'}}, {'blockNum': '0x792ac3', 'uniqueId': '0x6f7ccb55ca5cc1028f4aa36fd9c6de29e74bd4261ffc2f8687efe43c99a9eb5f:log:0', 'hash': '0x6f7ccb55ca5cc1028f4aa36fd9c6de29e74bd4261ffc2f8687efe43c99a9eb5f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x27e77608bdd0d9edfc04a8bc68a188e560395a3c', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:37:59.000Z'}}, {'blockNum': '0x792ac3', 'uniqueId': '0x62e0853fd9d0b9c199f689419afacdcb8365c283c7eb1e270050f57940a39c23:log:1', 'hash': '0x62e0853fd9d0b9c199f689419afacdcb8365c283c7eb1e270050f57940a39c23', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3a0b272f0d8740ae2426af32109904b3cb33148b', 'value': 131.63322637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0310985d0d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:37:59.000Z'}}, {'blockNum': '0x792ac7', 'uniqueId': '0xe6c2e9d84e254970efb34e53033b95e10950d8833b5188ccbfcd37e0d85f50ee:log:11', 'hash': '0xe6c2e9d84e254970efb34e53033b95e10950d8833b5188ccbfcd37e0d85f50ee', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01716eb09b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:39:21.000Z'}}, {'blockNum': '0x792ac7', 'uniqueId': '0xf2785af197b40024e67269e7059f8355a1fb9d61bb67c3b744a905b55fc48bed:log:75', 'hash': '0xf2785af197b40024e67269e7059f8355a1fb9d61bb67c3b744a905b55fc48bed', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:39:21.000Z'}}, {'blockNum': '0x792ac9', 'uniqueId': '0x569740de3be208e862c3d23546a90b8666e08d1bde0ddd89573101c209163fb4:log:0', 'hash': '0x569740de3be208e862c3d23546a90b8666e08d1bde0ddd89573101c209163fb4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 5672.544151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8412ff76fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:40:20.000Z'}}, {'blockNum': '0x792acf', 'uniqueId': '0x1d6e77a2976b25defdee58e12bb852066ee3520514069a6c36946a7acf1463a7:log:5', 'hash': '0x1d6e77a2976b25defdee58e12bb852066ee3520514069a6c36946a7acf1463a7', 'from': '0xd264ccbb098203cf78a355e5d459405dc2b148b1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62713.86230198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x05b42bbf9db6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:42:02.000Z'}}, {'blockNum': '0x792ad0', 'uniqueId': '0x1698aa5ea8bc6f539c7ac9d255c2ef7a1af825acb0756fc15f30756d163f2a9e:log:12', 'hash': '0x1698aa5ea8bc6f539c7ac9d255c2ef7a1af825acb0756fc15f30756d163f2a9e', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29999.99992108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def112c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:42:08.000Z'}}, {'blockNum': '0x792ae1', 'uniqueId': '0xa55552d143745e7d50fbc2cf85e1e43a53d345bdcba3e727e7d8a07f49c1c915:log:5', 'hash': '0xa55552d143745e7d50fbc2cf85e1e43a53d345bdcba3e727e7d8a07f49c1c915', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x6ea621245c2f33b62cd1542503e936c7229facab', 'value': 993.0888779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x171f455eee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:47:02.000Z'}}, {'blockNum': '0x792ae2', 'uniqueId': '0x3596058a4ffd6ddc56a2440af37785d4284d24b382c5d4b0dde7c994d6536d77:log:34', 'hash': '0x3596058a4ffd6ddc56a2440af37785d4284d24b382c5d4b0dde7c994d6536d77', 'from': '0x27e77608bdd0d9edfc04a8bc68a188e560395a3c', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:47:10.000Z'}}, {'blockNum': '0x792ae6', 'uniqueId': '0xcfdbf63a0d468989bd498d4f5313e5930cee8481c4c228f5e0dac84fb0535471:log:20', 'hash': '0xcfdbf63a0d468989bd498d4f5313e5930cee8481c4c228f5e0dac84fb0535471', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4e9ce36e442e55ecd9025b9a6e0d88485d628a67', 'value': 612716.4059323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x37b9ea5f534e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:48:16.000Z'}}, {'blockNum': '0x792af6', 'uniqueId': '0xcee1a37b2d88de22b94d0d9c0d9b0944f608a4caa4bd7bd85936978165292c53:log:7', 'hash': '0xcee1a37b2d88de22b94d0d9c0d9b0944f608a4caa4bd7bd85936978165292c53', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01716eb09b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:52:08.000Z'}}, {'blockNum': '0x792af6', 'uniqueId': '0x3536210993f17859cce113473cb3fa019b01cb2065d9334d6dc993fe9add1a88:log:17', 'hash': '0x3536210993f17859cce113473cb3fa019b01cb2065d9334d6dc993fe9add1a88', 'from': '0x3a0b272f0d8740ae2426af32109904b3cb33148b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 131.63322637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0310985d0d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:52:08.000Z'}}, {'blockNum': '0x792b01', 'uniqueId': '0x0fc46613baf813a5ad5608807df9e7a8cc7dc81b98510729c779c68453230e24:log:6', 'hash': '0x0fc46613baf813a5ad5608807df9e7a8cc7dc81b98510729c779c68453230e24', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1e8cf26e999325e2c2871903e695b5d0ada63c07', 'value': 706.59753993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1073a64809', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:54:54.000Z'}}, {'blockNum': '0x792b01', 'uniqueId': '0x8b4c5ba1cb5cac097417c9e41f66a3d89957ea3823df4c0c0914e6e5378365b7:log:17', 'hash': '0x8b4c5ba1cb5cac097417c9e41f66a3d89957ea3823df4c0c0914e6e5378365b7', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 11540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010cafc29400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:54:54.000Z'}}, {'blockNum': '0x792b11', 'uniqueId': '0x04256eeaa9bdab755124da82bd514268e557d5ec2c79c4c3edd31874766a435c:log:11', 'hash': '0x04256eeaa9bdab755124da82bd514268e557d5ec2c79c4c3edd31874766a435c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb39123f52a10f234cad126be2d73a5641cb60297', 'value': 1250005.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x71aff469f440', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T00:59:25.000Z'}}, {'blockNum': '0x792b1d', 'uniqueId': '0xb2ea68a555eeb63617359a7a26045e4c4ca1615bc13e78e58d1b5c345fadeb46:log:10', 'hash': '0xb2ea68a555eeb63617359a7a26045e4c4ca1615bc13e78e58d1b5c345fadeb46', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5672.544151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8412ff76fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:02:04.000Z'}}, {'blockNum': '0x792b1f', 'uniqueId': '0x60f6ed88b9e230ab9787471638827370acff42c1316b3f1b33b33c0b9ea9c349:log:2', 'hash': '0x60f6ed88b9e230ab9787471638827370acff42c1316b3f1b33b33c0b9ea9c349', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 6019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c24092300', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:02:40.000Z'}}, {'blockNum': '0x792b1f', 'uniqueId': '0xec811c90729b18176745d790e569f11c603aa9d1d7345618abca4beab1f1f342:log:3', 'hash': '0xec811c90729b18176745d790e569f11c603aa9d1d7345618abca4beab1f1f342', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 30325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02c20f15d500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:02:40.000Z'}}, {'blockNum': '0x792b22', 'uniqueId': '0x3646acff6afc40ea60ab12158a68ccf362b4c415092e24b43eae48d3e48d2205:log:12', 'hash': '0x3646acff6afc40ea60ab12158a68ccf362b4c415092e24b43eae48d3e48d2205', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 6689.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9bc01c21c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:03:32.000Z'}}, {'blockNum': '0x792b2b', 'uniqueId': '0x9c5083014e3be7d8ada330918519ec96c0e99b92c3539480f1bca6a58452fac0:log:34', 'hash': '0x9c5083014e3be7d8ada330918519ec96c0e99b92c3539480f1bca6a58452fac0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c8e233b3ac2932b21ee21652f4ca7be31bb4a0e', 'value': 127.94235192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fa988938', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:06:12.000Z'}}, {'blockNum': '0x792b49', 'uniqueId': '0x9db9e8df8f67d19bf64cb76c547eab1b5ffa8f39f10db440c501927118087708:log:11', 'hash': '0x9db9e8df8f67d19bf64cb76c547eab1b5ffa8f39f10db440c501927118087708', 'from': '0x6ea621245c2f33b62cd1542503e936c7229facab', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 993.0888779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x171f455eee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:12:00.000Z'}}, {'blockNum': '0x792b49', 'uniqueId': '0x18e307332ce17d1fa60b01d66f4a62999ad0d6c970f05c31de5433a6217f33bd:log:13', 'hash': '0x18e307332ce17d1fa60b01d66f4a62999ad0d6c970f05c31de5433a6217f33bd', 'from': '0x1e8cf26e999325e2c2871903e695b5d0ada63c07', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 706.59753993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1073a64809', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:12:00.000Z'}}, {'blockNum': '0x792b4b', 'uniqueId': '0xaea4d2f82f92ee82781fc493b9a07a5bec55d277472a84db31eed7bfd562ef68:log:3', 'hash': '0xaea4d2f82f92ee82781fc493b9a07a5bec55d277472a84db31eed7bfd562ef68', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ed2e79f37bd7f94cdac229da3ae1af978b3df79', 'value': 525.98059207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c3f16b0c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:12:10.000Z'}}, {'blockNum': '0x792b4f', 'uniqueId': '0x75dee20087c09b2cc299afde092aebe611c94ed7368faf457da0f2ef35da7230:log:59', 'hash': '0x75dee20087c09b2cc299afde092aebe611c94ed7368faf457da0f2ef35da7230', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 60558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0581f9cece00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:13:31.000Z'}}, {'blockNum': '0x792b59', 'uniqueId': '0xec95f2c783b323d14f15b4a9f089b9f995840dccdf3bebae8dc57ee061233b95:log:1', 'hash': '0xec95f2c783b323d14f15b4a9f089b9f995840dccdf3bebae8dc57ee061233b95', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc10a4fc05d5d9354bd426b036eb8591a1e97cc98', 'value': 5427.36060417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e5d971001', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:15:50.000Z'}}, {'blockNum': '0x792b74', 'uniqueId': '0x0fdfc5c331848b849cb2a1a0f1b807772e14febf7416a93cd7995e4187df6e37:log:8', 'hash': '0x0fdfc5c331848b849cb2a1a0f1b807772e14febf7416a93cd7995e4187df6e37', 'from': '0x0c8e233b3ac2932b21ee21652f4ca7be31bb4a0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 127.94235192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02fa988938', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:22:02.000Z'}}, {'blockNum': '0x792b75', 'uniqueId': '0xeadbde2a6b6c2baca73839bbeebaee4fa73447d4b3d33705a9aa14e2599f3643:log:1', 'hash': '0xeadbde2a6b6c2baca73839bbeebaee4fa73447d4b3d33705a9aa14e2599f3643', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc6c847e6efca4b90a506213f1651918bdd72207d', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080b572980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:22:25.000Z'}}, {'blockNum': '0x792b8c', 'uniqueId': '0xfa4357f37bf1d8be1179d13155e75248d943f780a3b552f96dc308554629c3dc:log:1', 'hash': '0xfa4357f37bf1d8be1179d13155e75248d943f780a3b552f96dc308554629c3dc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa063848e378b3e94dca8c7f6c6e49d1fd2daebb9', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:28:14.000Z'}}, {'blockNum': '0x792b8c', 'uniqueId': '0xa32eb92b979f6798c07dca348508ea6eb2e635b7fecdda0e5e5adca7da9d9218:log:2', 'hash': '0xa32eb92b979f6798c07dca348508ea6eb2e635b7fecdda0e5e5adca7da9d9218', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x92ac87d2ff094bec6408974e47bb668cc98e936c', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:28:14.000Z'}}, {'blockNum': '0x792b93', 'uniqueId': '0xacdd6024361d176d9768822e171e130204ad72f8e003a2c8998a312a3bc84215:log:77', 'hash': '0xacdd6024361d176d9768822e171e130204ad72f8e003a2c8998a312a3bc84215', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 38073.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03767a20e380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:30:16.000Z'}}, {'blockNum': '0x792b99', 'uniqueId': '0x3cfbf63ebb0706bc1d21bbad62d06bd4fc44497b79bd8e9b8d954274ab047456:log:30', 'hash': '0x3cfbf63ebb0706bc1d21bbad62d06bd4fc44497b79bd8e9b8d954274ab047456', 'from': '0xc6c847e6efca4b90a506213f1651918bdd72207d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x080b572980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:32:05.000Z'}}, {'blockNum': '0x792b99', 'uniqueId': '0xad7ecd79ecbcd7fd05e5159510ea362c0dfd66d36fbea4e6263776c7402bdefc:log:32', 'hash': '0xad7ecd79ecbcd7fd05e5159510ea362c0dfd66d36fbea4e6263776c7402bdefc', 'from': '0x6ed2e79f37bd7f94cdac229da3ae1af978b3df79', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 525.98059207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c3f16b0c7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:32:05.000Z'}}, {'blockNum': '0x792bab', 'uniqueId': '0x21f8e912f7d2ffa9a7c78ef0777b783399dfa7b14952e210669c2131e76d906b:log:39', 'hash': '0x21f8e912f7d2ffa9a7c78ef0777b783399dfa7b14952e210669c2131e76d906b', 'from': '0x92ac87d2ff094bec6408974e47bb668cc98e936c', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:35:50.000Z'}}, {'blockNum': '0x792bb2', 'uniqueId': '0xb406f9c66f5cb451c45e2760186f920f4b501f7f32c047029d7b98a919d62a41:log:82', 'hash': '0xb406f9c66f5cb451c45e2760186f920f4b501f7f32c047029d7b98a919d62a41', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1ba7938d9d7e5b4ffb87d03714e34352c2995a56', 'value': 365.08132642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08800de522', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:38:13.000Z'}}, {'blockNum': '0x792bbd', 'uniqueId': '0x5c3683bad1b4f8233b74adc667f0173f48d850efbf1b08e6b2f3868c7e7f3dcc:log:2', 'hash': '0x5c3683bad1b4f8233b74adc667f0173f48d850efbf1b08e6b2f3868c7e7f3dcc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x92ac87d2ff094bec6408974e47bb668cc98e936c', 'value': 30939.88057963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02d0600f236b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:42:22.000Z'}}, {'blockNum': '0x792bd1', 'uniqueId': '0x51e8757f298f354a20fb68638c7f4ecae5458231a1fe9384e636eb883936a24a:log:0', 'hash': '0x51e8757f298f354a20fb68638c7f4ecae5458231a1fe9384e636eb883936a24a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb712e8c735371550e257979be1ca1cfdf27b6dd8', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:46:29.000Z'}}, {'blockNum': '0x792bdc', 'uniqueId': '0x3d5898164f8c2e04c1579f818a490c7c38ce4580effa5632f13c3f0136c9ac70:log:31', 'hash': '0x3d5898164f8c2e04c1579f818a490c7c38ce4580effa5632f13c3f0136c9ac70', 'from': '0x92ac87d2ff094bec6408974e47bb668cc98e936c', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 30939.88057963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02d0600f236b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:48:36.000Z'}}, {'blockNum': '0x792bee', 'uniqueId': '0x387c7c725e62e46f6bc6839594eb14ec776380c0f90e9ed4720cd69cffef40be:log:36', 'hash': '0x387c7c725e62e46f6bc6839594eb14ec776380c0f90e9ed4720cd69cffef40be', 'from': '0xb712e8c735371550e257979be1ca1cfdf27b6dd8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:51:54.000Z'}}, {'blockNum': '0x792bee', 'uniqueId': '0xbafdea12dba260d633775299fb4ce3479fa01e20186ea7798ede0cd62896fecc:log:40', 'hash': '0xbafdea12dba260d633775299fb4ce3479fa01e20186ea7798ede0cd62896fecc', 'from': '0x1ba7938d9d7e5b4ffb87d03714e34352c2995a56', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 365.08132642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x08800de522', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:51:54.000Z'}}, {'blockNum': '0x792bf4', 'uniqueId': '0xc95eb9a6fb86dc3d75e7441c7caea6d194b6adc4d88ecb91a18a910e33508272:log:2', 'hash': '0xc95eb9a6fb86dc3d75e7441c7caea6d194b6adc4d88ecb91a18a910e33508272', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 27557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02819c850500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:53:22.000Z'}}, {'blockNum': '0x792c04', 'uniqueId': '0x06cbfbb9874a3a43c4ec5aadbb7466bab22a424788650cac26229e353c713254:log:6', 'hash': '0x06cbfbb9874a3a43c4ec5aadbb7466bab22a424788650cac26229e353c713254', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8b026d118d895cf20efa5a64da7c306b40f89de0', 'value': 125.40599966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02eb7a5e9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:56:05.000Z'}}, {'blockNum': '0x792c04', 'uniqueId': '0xebade0a0227b76ecd74a45c5d03b8973850b05b1d0a0f620de66505f97ed3b80:log:7', 'hash': '0xebade0a0227b76ecd74a45c5d03b8973850b05b1d0a0f620de66505f97ed3b80', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf2c7e3abd40b9a0b8bb7d72aa5617f0e0fbd2258', 'value': 434.45295868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a1d8a9afc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:56:05.000Z'}}, {'blockNum': '0x792c0b', 'uniqueId': '0x5f8feb3b3353dd3d6c4b7594ea497776b7f205bc0f223fb71cb727368fc3e652:log:1', 'hash': '0x5f8feb3b3353dd3d6c4b7594ea497776b7f205bc0f223fb71cb727368fc3e652', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 16642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01837a0cc200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:58:49.000Z'}}, {'blockNum': '0x792c10', 'uniqueId': '0xb94920a96d3f1242f8888e1a0d05d2b0e128bc364381a7b687d6852163c21e6f:log:4', 'hash': '0xb94920a96d3f1242f8888e1a0d05d2b0e128bc364381a7b687d6852163c21e6f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 26610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x026b8ff5b200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:59:40.000Z'}}, {'blockNum': '0x792c10', 'uniqueId': '0x3df35104b1179d49374fa4f0e0295aa3266f126291a0817ca1462cbd8d0cfcfc:log:5', 'hash': '0x3df35104b1179d49374fa4f0e0295aa3266f126291a0817ca1462cbd8d0cfcfc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 26059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x025ebbbe6b00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T01:59:40.000Z'}}, {'blockNum': '0x792c17', 'uniqueId': '0x04684620cc10997fd5d0bfe3388a1c662d6a2821b144ca68b7c35aa779e31515:log:6', 'hash': '0x04684620cc10997fd5d0bfe3388a1c662d6a2821b144ca68b7c35aa779e31515', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x67f20ed505b407fdc3ac156e1395d47548c69eaf', 'value': 195.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x048d455380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:02:37.000Z'}}, {'blockNum': '0x792c1d', 'uniqueId': '0x74df1d7829e95de71ec1022751353c95fc6e5f706d06a90fe54e9abf9014e358:log:102', 'hash': '0x74df1d7829e95de71ec1022751353c95fc6e5f706d06a90fe54e9abf9014e358', 'from': '0x9ca37e5508045476ee9a4972178c3e2dcc9829a1', 'to': '0xd6a9bcf1533dd37bbb5ebdda0509c654d6c7de11', 'value': 554.99999935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cec0ecabf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:04:08.000Z'}}, {'blockNum': '0x792c21', 'uniqueId': '0xa636fec4f8909a8cd7fe0f949d56bd0f8ee48ced4a3c37c8fb48dbca313d3e10:log:0', 'hash': '0xa636fec4f8909a8cd7fe0f949d56bd0f8ee48ced4a3c37c8fb48dbca313d3e10', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ee0f8f4836406c896f01b1968caa148af3553ca', 'value': 314.03558064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x074fcc44b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:04:36.000Z'}}, {'blockNum': '0x792c42', 'uniqueId': '0xcb0d7e831174cffc5248fe5654680c0557a6fa89d23280211b0ba69fb81b2174:log:23', 'hash': '0xcb0d7e831174cffc5248fe5654680c0557a6fa89d23280211b0ba69fb81b2174', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01837a0cc200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:12:12.000Z'}}, {'blockNum': '0x792c42', 'uniqueId': '0x303537ef3c01bbf1f04af1a439d507273d2dc0179fdaf4918dca34046e4e5dfe:log:29', 'hash': '0x303537ef3c01bbf1f04af1a439d507273d2dc0179fdaf4918dca34046e4e5dfe', 'from': '0x67f20ed505b407fdc3ac156e1395d47548c69eaf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 195.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x048d455380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:12:12.000Z'}}, {'blockNum': '0x792c49', 'uniqueId': '0xea2847403b0eefe1622c262fd0df3536599f29868120139005368e8de0b80532:log:21', 'hash': '0xea2847403b0eefe1622c262fd0df3536599f29868120139005368e8de0b80532', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 10668.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xf865371c80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:13:14.000Z'}}, {'blockNum': '0x792c4f', 'uniqueId': '0x22fe3e438ab87f2d4c99638e32b33e6bb66ae7d4eeb170d271c641279e3cb6c3:log:0', 'hash': '0x22fe3e438ab87f2d4c99638e32b33e6bb66ae7d4eeb170d271c641279e3cb6c3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7f7ad1713527e716395b380aec29c851990f4ff1', 'value': 795.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12858cab80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:14:42.000Z'}}, {'blockNum': '0x792c55', 'uniqueId': '0x7068cbd8e17d5ba92bf9866188c0f6a0593ddcb48324abc10bd766c4b249cacc:log:52', 'hash': '0x7068cbd8e17d5ba92bf9866188c0f6a0593ddcb48324abc10bd766c4b249cacc', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 54167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04ed2c7ab700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:15:52.000Z'}}, {'blockNum': '0x792c58', 'uniqueId': '0x0cd045943bf66cd549e5491aea60f7c72186c35c94ffe20918f7980c97502975:log:3', 'hash': '0x0cd045943bf66cd549e5491aea60f7c72186c35c94ffe20918f7980c97502975', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfdad6d327d37cd27f772b0817160a8a42062ba0a', 'value': 295.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x06e1513780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:16:43.000Z'}}, {'blockNum': '0x792c62', 'uniqueId': '0xbe7e8e7f894dc625fbbf04ebd4bb99ef5469c68965fa2e5602eb6c4ac17f034c:log:1', 'hash': '0xbe7e8e7f894dc625fbbf04ebd4bb99ef5469c68965fa2e5602eb6c4ac17f034c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4dfef98f8cd7d6c5fd4f75f955a7c3242fd8da0d', 'value': 53.09905191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x013c7eb927', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:18:39.000Z'}}, {'blockNum': '0x792c74', 'uniqueId': '0xca4146be34a0ccc8b303061e0207a6f5abd64f7e801b59f37fe0aaa76a3e1628:log:52', 'hash': '0xca4146be34a0ccc8b303061e0207a6f5abd64f7e801b59f37fe0aaa76a3e1628', 'from': '0x6ee0f8f4836406c896f01b1968caa148af3553ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 314.03558064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x074fcc44b0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:21:54.000Z'}}, {'blockNum': '0x792c74', 'uniqueId': '0x6f16eb686b594bad04e8c9d18fcc64dc11664ad1e0844a728c55bf4d91f2d24d:log:119', 'hash': '0x6f16eb686b594bad04e8c9d18fcc64dc11664ad1e0844a728c55bf4d91f2d24d', 'from': '0xd6a9bcf1533dd37bbb5ebdda0509c654d6c7de11', 'to': '0x110327c7174f93252c92ed43edea694afd29433d', 'value': 554.99999935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cec0ecabf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:21:54.000Z'}}, {'blockNum': '0x792c76', 'uniqueId': '0x73f101b74ea087d774cc14cc074968c176eecce37206b81f885d79d499ee85a7:log:4', 'hash': '0x73f101b74ea087d774cc14cc074968c176eecce37206b81f885d79d499ee85a7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 23489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0222e559a100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:22:46.000Z'}}, {'blockNum': '0x792c95', 'uniqueId': '0x4d910b9424e1677a37eb4a0fe8f85279aedd3e8cbd3753710910778a8c45bce2:log:1', 'hash': '0x4d910b9424e1677a37eb4a0fe8f85279aedd3e8cbd3753710910778a8c45bce2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8e2f3fa86f4ade18cfb311643f96cb3209783c27', 'value': 1730.05908694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2847f4aad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:28:53.000Z'}}, {'blockNum': '0x792c95', 'uniqueId': '0x636bdb9da0a88631852c44a7b5e744061e40d4d6d6d1f10d807383cced0ab1be:log:2', 'hash': '0x636bdb9da0a88631852c44a7b5e744061e40d4d6d6d1f10d807383cced0ab1be', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe12f0bd338750fdf8a94ea98483f5306d1aa32b4', 'value': 469.86335326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0af09a945e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:28:53.000Z'}}, {'blockNum': '0x792c99', 'uniqueId': '0xdc0dcc4b162025d9b286c14ddf595cd942bb0516b57bf389578b490a34aec210:log:2', 'hash': '0xdc0dcc4b162025d9b286c14ddf595cd942bb0516b57bf389578b490a34aec210', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 7351.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xab2a5ac780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:30:24.000Z'}}, {'blockNum': '0x792caa', 'uniqueId': '0x049b8ed9461f040f25a5bbe8b105da900c2c28542e97848c7e04c97d237bf63b:log:54', 'hash': '0x049b8ed9461f040f25a5bbe8b105da900c2c28542e97848c7e04c97d237bf63b', 'from': '0x25ef5af887f35451fab30fd8041508bd7b8925af', 'to': '0x719410f2f7c7b0653d16b120f6ee911a465b3380', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:32:54.000Z'}}, {'blockNum': '0x792cb0', 'uniqueId': '0x3618bdbe145d88a05462f538554ed49ed92a9336d73c97b9aaa4d17e6d4b6034:log:5', 'hash': '0x3618bdbe145d88a05462f538554ed49ed92a9336d73c97b9aaa4d17e6d4b6034', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc0f47de6b70e7ed4fead84ad9807433b1d7cac3b', 'value': 445.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a5f630d80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:34:58.000Z'}}, {'blockNum': '0x792cb0', 'uniqueId': '0xa1c54c8fac89d9f511084340da4817f2ef21ef679057ca617b997bfd0e88a648:log:8', 'hash': '0xa1c54c8fac89d9f511084340da4817f2ef21ef679057ca617b997bfd0e88a648', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:34:58.000Z'}}, {'blockNum': '0x792cc2', 'uniqueId': '0x83fc7c8c9189d5a61954efdaaa43b9cbe5cc085c8f87d071aaff52ea1776c54d:log:4', 'hash': '0x83fc7c8c9189d5a61954efdaaa43b9cbe5cc085c8f87d071aaff52ea1776c54d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7364afd6b7baf366f50a76c4726f5119f88175e9', 'value': 65.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0186691180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:38:58.000Z'}}, {'blockNum': '0x792cd2', 'uniqueId': '0x686480d83b68bf1a30e4bdb4efc5560281c983c201bf34033310bb9b6a876af0:log:15', 'hash': '0x686480d83b68bf1a30e4bdb4efc5560281c983c201bf34033310bb9b6a876af0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9929b131e15eb2fe6ce1aa1dbd4bcfb9b358e8fc', 'value': 15.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5c631f80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:42:33.000Z'}}, {'blockNum': '0x792cd8', 'uniqueId': '0x4ac0557a82ee5d9576d9c2b8dea7b967ddf6fa331c06275423bc1831750da358:log:6', 'hash': '0x4ac0557a82ee5d9576d9c2b8dea7b967ddf6fa331c06275423bc1831750da358', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 23256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x021d788fd800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:43:30.000Z'}}, {'blockNum': '0x792cde', 'uniqueId': '0xfba90f87e6174b7caa16823c3e2599c3e28dffdd00b1bacd332a0413ba6c84cc:log:3', 'hash': '0xfba90f87e6174b7caa16823c3e2599c3e28dffdd00b1bacd332a0413ba6c84cc', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 31639.1585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e0a8149110', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:45:12.000Z'}}, {'blockNum': '0x792cde', 'uniqueId': '0x9075f5c5906bd3ae5204c4e37ef71bc042d91c5c64cd69d4c3cfd9bc90cfe2d6:log:5', 'hash': '0x9075f5c5906bd3ae5204c4e37ef71bc042d91c5c64cd69d4c3cfd9bc90cfe2d6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe332ad0f7f8de2eab9f61d8b05fb4489bb34ba23', 'value': 2165.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x326b62c580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:45:12.000Z'}}, {'blockNum': '0x792cde', 'uniqueId': '0xa0a5053e6e3d69c732ebd5a1885a778b2df2df3e579f5ab1752f874fe7ebb9e3:log:6', 'hash': '0xa0a5053e6e3d69c732ebd5a1885a778b2df2df3e579f5ab1752f874fe7ebb9e3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9929b131e15eb2fe6ce1aa1dbd4bcfb9b358e8fc', 'value': 625.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0e90454180', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:45:12.000Z'}}, {'blockNum': '0x792ce1', 'uniqueId': '0x4b6cb1cda2205e10d43196dc9e5a98174f7e76f6bde91bce32f0c291ab8d5a10:log:10', 'hash': '0x4b6cb1cda2205e10d43196dc9e5a98174f7e76f6bde91bce32f0c291ab8d5a10', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27993.25697408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028bc4d05580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:45:31.000Z'}}, {'blockNum': '0x792d04', 'uniqueId': '0x4586252af445780f8bff53564068ea2ae119fc94832cc7db2e282cb70e9f00e0:log:21', 'hash': '0x4586252af445780f8bff53564068ea2ae119fc94832cc7db2e282cb70e9f00e0', 'from': '0x030e37ddd7df1b43db172b23916d523f1599c6cb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb5e620f48000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:51:55.000Z'}}, {'blockNum': '0x792d04', 'uniqueId': '0x055f2d2b825ecec955b244d66e2e7046eeab525b10b3eab7096b0acb33a7b414:log:71', 'hash': '0x055f2d2b825ecec955b244d66e2e7046eeab525b10b3eab7096b0acb33a7b414', 'from': '0xe332ad0f7f8de2eab9f61d8b05fb4489bb34ba23', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2165.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x326b62c580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:51:55.000Z'}}, {'blockNum': '0x792d04', 'uniqueId': '0x38b4160e496aeb54b1fe01ceee63fa1ae68c98198cb1a1161480e5e92a721fa7:log:78', 'hash': '0x38b4160e496aeb54b1fe01ceee63fa1ae68c98198cb1a1161480e5e92a721fa7', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27993.25697408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x028bc4d05580', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:51:55.000Z'}}, {'blockNum': '0x792d05', 'uniqueId': '0xcfa45142d3bbd206b069c69bf97ea75a8b08ca90062b4e068b1c14fbf2ef1768:log:35', 'hash': '0xcfa45142d3bbd206b069c69bf97ea75a8b08ca90062b4e068b1c14fbf2ef1768', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x72d7d9678bb0b2794fd035dbea7754ed536fc100', 'value': 305.49048761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x071cdd7db9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T02:52:56.000Z'}}, {'blockNum': '0x792d2a', 'uniqueId': '0xe0d26f124f134d86d042a275d0af6e9eddf2800035e5e1817b8373440b030034:log:17', 'hash': '0xe0d26f124f134d86d042a275d0af6e9eddf2800035e5e1817b8373440b030034', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 208809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12fdb6a08900', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:00:34.000Z'}}, {'blockNum': '0x792d35', 'uniqueId': '0xfdcb19f9d4506bf6b5df084c18ff1672a9701cc3d69ae0d24042fe92f854a064:log:12', 'hash': '0xfdcb19f9d4506bf6b5df084c18ff1672a9701cc3d69ae0d24042fe92f854a064', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31639.1585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e0a8149110', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:01:55.000Z'}}, {'blockNum': '0x792d3d', 'uniqueId': '0xf0eec8a62aa86c82ad01e1ae487f20d9549a630779a1d9adff01e0e569484c68:log:15', 'hash': '0xf0eec8a62aa86c82ad01e1ae487f20d9549a630779a1d9adff01e0e569484c68', 'from': '0x5f76e07ec6b2f57c20e95742e2d5d06cb4a379ff', 'to': '0x22fd399349fcee8e4473c25e114d9def64804421', 'value': 1897.19261651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c2c2631d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:03:31.000Z'}}, {'blockNum': '0x792d3d', 'uniqueId': '0x4d01afa9af64503a413cc2a88dfb6d30a0a381d194be72f5cfcc6e48a76e0952:log:26', 'hash': '0x4d01afa9af64503a413cc2a88dfb6d30a0a381d194be72f5cfcc6e48a76e0952', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x685e8f54da558c8f4fb3060d130b82820624f029', 'value': 17869.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01a00bdb0c20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:03:31.000Z'}}, {'blockNum': '0x792d41', 'uniqueId': '0xc3daf961cebfa98b75dc4b53648c14dc029318837a18246983a0855f6112b34f:log:1', 'hash': '0xc3daf961cebfa98b75dc4b53648c14dc029318837a18246983a0855f6112b34f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x10fe0dc466fc61f3077d4a2fff8c0d4c7a32cc63', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:05:08.000Z'}}, {'blockNum': '0x792d41', 'uniqueId': '0x1f2e8c2217f3fac1bb35bb53f3980cdf3d40dd8e9445b6e5bb2d80e8698cc390:log:2', 'hash': '0x1f2e8c2217f3fac1bb35bb53f3980cdf3d40dd8e9445b6e5bb2d80e8698cc390', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eed48485096393c2871ed8b0c6e242a699e25ee', 'value': 25.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x97fde980', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:05:08.000Z'}}, {'blockNum': '0x792d50', 'uniqueId': '0x869ab7bc1a04326023b09dacbb21162192c26af1652c6876a97abc0e77ab039e:log:2', 'hash': '0x869ab7bc1a04326023b09dacbb21162192c26af1652c6876a97abc0e77ab039e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12309ce54000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:08:13.000Z'}}, {'blockNum': '0x792d56', 'uniqueId': '0x9cd5b063be4263a83883181e36ffca4697f0d29915b2191ce0e2c2ae0e22e70e:log:3', 'hash': '0x9cd5b063be4263a83883181e36ffca4697f0d29915b2191ce0e2c2ae0e22e70e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eed48485096393c2871ed8b0c6e242a699e25ee', 'value': 659.84491592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f5cfb7048', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:08:54.000Z'}}, {'blockNum': '0x792d61', 'uniqueId': '0xa49f5090cb0ce67973fe8c53d68640c031c052bb6269b2cfb6b45d54991bc753:log:6', 'hash': '0xa49f5090cb0ce67973fe8c53d68640c031c052bb6269b2cfb6b45d54991bc753', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 6631.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9a66d1f780', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:12:36.000Z'}}, {'blockNum': '0x792d61', 'uniqueId': '0x54cf830bee00523a9dbb61560f009d31f274abe3b6ece2b3155ebfa56c78a7ec:log:47', 'hash': '0x54cf830bee00523a9dbb61560f009d31f274abe3b6ece2b3155ebfa56c78a7ec', 'from': '0x10fe0dc466fc61f3077d4a2fff8c0d4c7a32cc63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 395.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x09355d1b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:12:36.000Z'}}, {'blockNum': '0x792d61', 'uniqueId': '0xd506f647edea64538e0935b74eba36fadd35ef853baa937d5c9eaae1b20a87e9:log:50', 'hash': '0xd506f647edea64538e0935b74eba36fadd35ef853baa937d5c9eaae1b20a87e9', 'from': '0x72d7d9678bb0b2794fd035dbea7754ed536fc100', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 305.49048761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x071cdd7db9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:12:36.000Z'}}, {'blockNum': '0x792d67', 'uniqueId': '0xdbb8e5f1c42086d3a6b428b8203e3e0e3fbc70fa1c59bd8a2ed91f52b4216db5:log:108', 'hash': '0xdbb8e5f1c42086d3a6b428b8203e3e0e3fbc70fa1c59bd8a2ed91f52b4216db5', 'from': '0x22fd399349fcee8e4473c25e114d9def64804421', 'to': '0x6ed899ebd52824c0d5cff78b42a1f4dbec8efb79', 'value': 62.8178189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01766c6282', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:13:40.000Z'}}, {'blockNum': '0x792d6e', 'uniqueId': '0x97863eb61d0082c169fd6ab12aac5397261dce7712b1e0733e850ab605992e63:log:16', 'hash': '0x97863eb61d0082c169fd6ab12aac5397261dce7712b1e0733e850ab605992e63', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ee5ba9605514bbec30a9719cf4263746b644b28', 'value': 140.275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03441aa9e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:15:21.000Z'}}, {'blockNum': '0x792d8b', 'uniqueId': '0xf54806ce8b949e64bb1496c569fd9ee66bdc303883b985b2ec62ff6e9fc9bbe5:log:82', 'hash': '0xf54806ce8b949e64bb1496c569fd9ee66bdc303883b985b2ec62ff6e9fc9bbe5', 'from': '0x22fd399349fcee8e4473c25e114d9def64804421', 'to': '0x6ed899ebd52824c0d5cff78b42a1f4dbec8efb79', 'value': 50265.28095999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0492546beeff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:21:18.000Z'}}, {'blockNum': '0x792d8f', 'uniqueId': '0x4d8dfcd997ede98b4edd02cca3c1c6fd4bed91afdd4c536d43254bf8efb82455:log:2', 'hash': '0x4d8dfcd997ede98b4edd02cca3c1c6fd4bed91afdd4c536d43254bf8efb82455', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 24050.91322914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x022ffa9d2c22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:21:58.000Z'}}, {'blockNum': '0x792d95', 'uniqueId': '0xaa7e4e97b0b97493873ab25b2ade9bf747b00d7591d589fb37a7e2b6d847f6cb:log:6', 'hash': '0xaa7e4e97b0b97493873ab25b2ade9bf747b00d7591d589fb37a7e2b6d847f6cb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9929b131e15eb2fe6ce1aa1dbd4bcfb9b358e8fc', 'value': 1646.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2655e79e80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:23:08.000Z'}}, {'blockNum': '0x792d96', 'uniqueId': '0xedd79b967aa4049b4f2623df33b7b953757a973c1bd4b97216bc53fd1364f94e:log:1', 'hash': '0xedd79b967aa4049b4f2623df33b7b953757a973c1bd4b97216bc53fd1364f94e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x452a2b6ad78758b303b1d8da2758ad3cd220dcd3', 'value': 464.31008332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0acf80f64c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:23:18.000Z'}}, {'blockNum': '0x792d9f', 'uniqueId': '0xf7f9f09eb2e4f4283d089a7e285fcc3233b276970d6da20d0032c761cd121e5a:log:0', 'hash': '0xf7f9f09eb2e4f4283d089a7e285fcc3233b276970d6da20d0032c761cd121e5a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x001efe4d15849bfb406de0b98ded85a139974728', 'value': 209.69576417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e1e257e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:25:17.000Z'}}, {'blockNum': '0x792da6', 'uniqueId': '0x2df5381c57ec7a1e7ebba1b0eac3786434cf1c8f4c3aecf32a46a9318633c8f4:log:2', 'hash': '0x2df5381c57ec7a1e7ebba1b0eac3786434cf1c8f4c3aecf32a46a9318633c8f4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 15503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0168f514af00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:26:38.000Z'}}, {'blockNum': '0x792dab', 'uniqueId': '0xf4382684e08a6b7741b11245805a4b207f6abeacb30eb6300f6da2eabf62f912:log:3', 'hash': '0xf4382684e08a6b7741b11245805a4b207f6abeacb30eb6300f6da2eabf62f912', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 9248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd752602000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:27:38.000Z'}}, {'blockNum': '0x792dac', 'uniqueId': '0x60491c0b2369b0978145334dc1fedda097a1bb59423f3865212fe3273de3f329:log:25', 'hash': '0x60491c0b2369b0978145334dc1fedda097a1bb59423f3865212fe3273de3f329', 'from': '0x1f9522de481203fae4d50f5fe0f051ed37107336', 'to': '0x5895c97f5d1a9b514ddaa2e7d700fec077dc01d3', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:27:40.000Z'}}, {'blockNum': '0x792dad', 'uniqueId': '0x0eccee18d2af64221678be95938f6cf9f42a00d94bab0b9d75a6eb6b607789f4:log:13', 'hash': '0x0eccee18d2af64221678be95938f6cf9f42a00d94bab0b9d75a6eb6b607789f4', 'from': '0xded30c523adab7e658d3d321462a15088b52ca06', 'to': '0xc6210fff4db2d15e947cabe95d3e39bac3a54df9', 'value': 12997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x012e9c282500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:27:53.000Z'}}, {'blockNum': '0x792db7', 'uniqueId': '0xa3aee238f8635ceed0a7a53d33b7b6e0ea57870ec018bc9a8199c9ffb3e29c90:log:77', 'hash': '0xa3aee238f8635ceed0a7a53d33b7b6e0ea57870ec018bc9a8199c9ffb3e29c90', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 200010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1230d8800a00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:30:50.000Z'}}, {'blockNum': '0x792dbe', 'uniqueId': '0x72610d03d4aa9f745e5fafbeaef69913df62bccd0424f6367309100a5bb61929:log:1', 'hash': '0x72610d03d4aa9f745e5fafbeaef69913df62bccd0424f6367309100a5bb61929', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ee364fe67cb79e1323fbef50de704b61854f063', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:31:22.000Z'}}, {'blockNum': '0x792dc1', 'uniqueId': '0x5ba7d62071b12e3bb1432f7d1f64121ec397bf81147d1e899b7134a56d12cc2c:log:8', 'hash': '0x5ba7d62071b12e3bb1432f7d1f64121ec397bf81147d1e899b7134a56d12cc2c', 'from': '0x5895c97f5d1a9b514ddaa2e7d700fec077dc01d3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:31:42.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x1a3f6bed31aefff161444175db6b387bc938de19f0318658c3c38178baf60b51:log:18', 'hash': '0x1a3f6bed31aefff161444175db6b387bc938de19f0318658c3c38178baf60b51', 'from': '0x6ee5ba9605514bbec30a9719cf4263746b644b28', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140.275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x03441aa9e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x7e38f72355941b9b12a19925756c613540897f0c82a387f122fce7df5fca650c:log:32', 'hash': '0x7e38f72355941b9b12a19925756c613540897f0c82a387f122fce7df5fca650c', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24050.91322914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x022ffa9d2c22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x9cc5f1f998de69b07c167f1cc3f57edc90c886b06b19be4ba899f04ec59858e0:log:33', 'hash': '0x9cc5f1f998de69b07c167f1cc3f57edc90c886b06b19be4ba899f04ec59858e0', 'from': '0x001efe4d15849bfb406de0b98ded85a139974728', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 209.69576417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x04e1e257e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x8156fc1e64569d4f8032e23c4dd10add1e30965612569d32f7b0d5cd16044d98:log:34', 'hash': '0x8156fc1e64569d4f8032e23c4dd10add1e30965612569d32f7b0d5cd16044d98', 'from': '0x452a2b6ad78758b303b1d8da2758ad3cd220dcd3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 464.31008332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0acf80f64c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x53af09507189df4a149360f11368b98b7a6b42e2486f9f17f5568afb564c89c4:log:35', 'hash': '0x53af09507189df4a149360f11368b98b7a6b42e2486f9f17f5568afb564c89c4', 'from': '0x6eed48485096393c2871ed8b0c6e242a699e25ee', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 685.34491592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0ff4f959c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dc4', 'uniqueId': '0x7a9a78bcc3493f9a58c67195d592470e4d577010b9a8bc0550680fd935c5ce37:log:36', 'hash': '0x7a9a78bcc3493f9a58c67195d592470e4d577010b9a8bc0550680fd935c5ce37', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0168f514af00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:32:10.000Z'}}, {'blockNum': '0x792dce', 'uniqueId': '0x4bd597f2081f331dd68e0227be9e1e60ed2c25b87e3c04f92efdd1692acb29bd:log:39', 'hash': '0x4bd597f2081f331dd68e0227be9e1e60ed2c25b87e3c04f92efdd1692acb29bd', 'from': '0x1f9522de481203fae4d50f5fe0f051ed37107336', 'to': '0x5895c97f5d1a9b514ddaa2e7d700fec077dc01d3', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:34:31.000Z'}}, {'blockNum': '0x792dcf', 'uniqueId': '0x94ccabda12819ea9153edb2f927aa41047758d23ac6e905dfc13bab6a730ae92:log:113', 'hash': '0x94ccabda12819ea9153edb2f927aa41047758d23ac6e905dfc13bab6a730ae92', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x30859ba400', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:34:34.000Z'}}, {'blockNum': '0x792de3', 'uniqueId': '0xa7ec2981f3b8a72ba8aabbd45d55d9c24225152d950dba1db98f3a62da4c1441:log:2', 'hash': '0xa7ec2981f3b8a72ba8aabbd45d55d9c24225152d950dba1db98f3a62da4c1441', 'from': '0x5895c97f5d1a9b514ddaa2e7d700fec077dc01d3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:39:01.000Z'}}, {'blockNum': '0x792de5', 'uniqueId': '0x0b91a00a7aa0dda5d3f5596783b73480691cee1c1d01795e050d60058c42539f:log:9', 'hash': '0x0b91a00a7aa0dda5d3f5596783b73480691cee1c1d01795e050d60058c42539f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2f610fd9f56817a6150294d33048f476ed8446d5', 'value': 123.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02e01e0b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:39:42.000Z'}}, {'blockNum': '0x792ded', 'uniqueId': '0xafc9c66a93a6342f2ee4b13bc349cf75ffe29409c151af35f896d475f4c5355f:log:26', 'hash': '0xafc9c66a93a6342f2ee4b13bc349cf75ffe29409c151af35f896d475f4c5355f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eed315884320719570586d1343ff506f54ea8a1', 'value': 85.25000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01fc212d41', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:41:15.000Z'}}, {'blockNum': '0x792ded', 'uniqueId': '0x4738560572d6cb499e1d45f03c8ba047aa6144979e0d1b4a3fd4e8d928916619:log:85', 'hash': '0x4738560572d6cb499e1d45f03c8ba047aa6144979e0d1b4a3fd4e8d928916619', 'from': '0x6ed899ebd52824c0d5cff78b42a1f4dbec8efb79', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50328.09877889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0493cad85181', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:41:15.000Z'}}, {'blockNum': '0x792dee', 'uniqueId': '0xe949565b362a1b5587c10d013c5b07540e6780747fd0e6aabf02450490c110eb:log:32', 'hash': '0xe949565b362a1b5587c10d013c5b07540e6780747fd0e6aabf02450490c110eb', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd752602000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:42:10.000Z'}}, {'blockNum': '0x792df6', 'uniqueId': '0xbc06be3e0850647c15836fb752e5db5093842b146adbd4afdc209a503dcb56f9:log:85', 'hash': '0xbc06be3e0850647c15836fb752e5db5093842b146adbd4afdc209a503dcb56f9', 'from': '0x5b8a2980f00ee53c35298001a22c3c668b12d3be', 'to': '0xc6210fff4db2d15e947cabe95d3e39bac3a54df9', 'value': 7005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa3190dbd00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:44:41.000Z'}}, {'blockNum': '0x792df8', 'uniqueId': '0xfcf8f1c9618f04cf6da3daf0c255e6a5d5501eef056057a848f6f7d0b15e2d46:log:7', 'hash': '0xfcf8f1c9618f04cf6da3daf0c255e6a5d5501eef056057a848f6f7d0b15e2d46', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0246139ca800', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:45:08.000Z'}}, {'blockNum': '0x792e01', 'uniqueId': '0x0816b0c42b60b556d97e8044b68fe1cfd77865f4cc47676968db5ac15af5dae2:log:15', 'hash': '0x0816b0c42b60b556d97e8044b68fe1cfd77865f4cc47676968db5ac15af5dae2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 28368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x02947e74d000', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:48:25.000Z'}}, {'blockNum': '0x792e03', 'uniqueId': '0xaf8a80959735040240b25c1c1808926f51f5168025d92850ea152e58ad948464:log:3', 'hash': '0xaf8a80959735040240b25c1c1808926f51f5168025d92850ea152e58ad948464', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6eeb6d1f9f8d4b43b8e6b57f0ead6e505ea16ed2', 'value': 1995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e761b5b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:48:54.000Z'}}, {'blockNum': '0x792e12', 'uniqueId': '0xdbd7e55cc43e9a414ad8a1d744d62e715d0d08e9852c05ab64bbba0cd737968e:log:14', 'hash': '0xdbd7e55cc43e9a414ad8a1d744d62e715d0d08e9852c05ab64bbba0cd737968e', 'from': '0x6ee364fe67cb79e1323fbef50de704b61854f063', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x172da47380', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-06-12T03:52:02.000Z'}}]}}
Number of returned transfers:  773
Answer is complete
 
symbol             BLZ
group              CCB
date        2019-06-24
hour             18:30
exchange       binance
Name: 371, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-06-24 18:30:00 2019-06-24 06:30:00 2019-06-25 06:30:00
Unix timestamps:  1561350600.0 1561437000.0
Hex Block Numbers:  0x7a5a98 0x7a73ac
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7a5aa6', 'uniqueId': '0x67d1f1eda156a4487b3a5bffba4533c69ba8fb6a7d7e491116133837d754123b:log:14', 'hash': '0x67d1f1eda156a4487b3a5bffba4533c69ba8fb6a7d7e491116133837d754123b', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 15827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0359fbbf64f5cb6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:31:52.000Z'}}, {'blockNum': '0x7a5aba', 'uniqueId': '0xa5e32c5d1a0029fda79fac904f07c134aa9e639fdbe905a43a4997d823244ee6:log:42', 'hash': '0xa5e32c5d1a0029fda79fac904f07c134aa9e639fdbe905a43a4997d823244ee6', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 4142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe089cc0ebe53f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:36:47.000Z'}}, {'blockNum': '0x7a5abd', 'uniqueId': '0x9fcacb0ea99fa79844dfe20f5a022e086272318acbd915e2217bf3d95958aa41:log:37', 'hash': '0x9fcacb0ea99fa79844dfe20f5a022e086272318acbd915e2217bf3d95958aa41', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 11215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025ff763e86225dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:37:23.000Z'}}, {'blockNum': '0x7a5ac7', 'uniqueId': '0x9bb3e70207bc1752e798852132a96bedb8b7a636bf2f239b57f31752e6c07942:log:15', 'hash': '0x9bb3e70207bc1752e798852132a96bedb8b7a636bf2f239b57f31752e6c07942', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 2850, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x9a7fb1fc0d87480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:38:43.000Z'}}, {'blockNum': '0x7a5aca', 'uniqueId': '0xd5e571d59ed5af2b2c3eeac11fc730a8e5c84b4b4089a356d22cb54c9cd6e6e5:log:11', 'hash': '0xd5e571d59ed5af2b2c3eeac11fc730a8e5c84b4b4089a356d22cb54c9cd6e6e5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 30046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065ccc0331782ab80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:39:40.000Z'}}, {'blockNum': '0x7a5aca', 'uniqueId': '0xd230a14eece6e8e4ec0850bad57f6e609514323f36150c2753caf1e6c7be6095:log:12', 'hash': '0xd230a14eece6e8e4ec0850bad57f6e609514323f36150c2753caf1e6c7be6095', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 36569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07be68d285225bc40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:39:40.000Z'}}, {'blockNum': '0x7a5aca', 'uniqueId': '0x357a4a28ff1cb20feac192b8126d8597bb1e7a4ec08baaf51f6e566e83f4e5fe:log:13', 'hash': '0x357a4a28ff1cb20feac192b8126d8597bb1e7a4ec08baaf51f6e566e83f4e5fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 54620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b90f4c522d65bf00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:39:40.000Z'}}, {'blockNum': '0x7a5ad2', 'uniqueId': '0x897b4ab0c1ad4f28c8991b0b3fca9c9bfbc03743427278696901317bad0dac01:log:7', 'hash': '0x897b4ab0c1ad4f28c8991b0b3fca9c9bfbc03743427278696901317bad0dac01', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 143214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1e53a580cbb548f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:41:49.000Z'}}, {'blockNum': '0x7a5b03', 'uniqueId': '0x521b21733d46e322a39d9773700333a070037116b8d201f6e31a2f8929b37fdd:log:17', 'hash': '0x521b21733d46e322a39d9773700333a070037116b8d201f6e31a2f8929b37fdd', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 7694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01a117b30b70df780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:53:26.000Z'}}, {'blockNum': '0x7a5b04', 'uniqueId': '0x89a0756afeea5c36979f82dba0ec6b3ba9776f3c8887e5f31ff5e0e86f1b8830:log:34', 'hash': '0x89a0756afeea5c36979f82dba0ec6b3ba9776f3c8887e5f31ff5e0e86f1b8830', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 5658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0132b885fea198280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:53:35.000Z'}}, {'blockNum': '0x7a5b0d', 'uniqueId': '0x65fe42fc6ed19f6655447d828f1bfad1aab3763ce73114c80812fbf1b6403d95:log:11', 'hash': '0x65fe42fc6ed19f6655447d828f1bfad1aab3763ce73114c80812fbf1b6403d95', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 29014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0624da22ad3d5f980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T04:56:54.000Z'}}, {'blockNum': '0x7a5b60', 'uniqueId': '0x8e34e9d74deb421303a81acca6a32b983420833b2c30bfc7eb894a6527c2c01a:log:134', 'hash': '0x8e34e9d74deb421303a81acca6a32b983420833b2c30bfc7eb894a6527c2c01a', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 13796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ebe1f5e9a8c9100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:04.000Z'}}, {'blockNum': '0x7a5b60', 'uniqueId': '0x7c2d42e4a3da91233e5129b6f5bb262c6d25dd25f3645692f51ec3b8f78594c5:log:135', 'hash': '0x7c2d42e4a3da91233e5129b6f5bb262c6d25dd25f3645692f51ec3b8f78594c5', 'from': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 13185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02cac2a1dae045640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:04.000Z'}}, {'blockNum': '0x7a5b60', 'uniqueId': '0x9399ab872487fe9b827a697a888ff358d1e14fc570533c52c43ba540e937f602:log:136', 'hash': '0x9399ab872487fe9b827a697a888ff358d1e14fc570533c52c43ba540e937f602', 'from': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 24975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0549e5c020c764dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:04.000Z'}}, {'blockNum': '0x7a5b60', 'uniqueId': '0xc762f656c72f09e46b3d2479df33d4e304d0e6faf2754c234fc81ff610629c63:log:137', 'hash': '0xc762f656c72f09e46b3d2479df33d4e304d0e6faf2754c234fc81ff610629c63', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 48377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a3e85bda3ab40440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:04.000Z'}}, {'blockNum': '0x7a5b61', 'uniqueId': '0xcf46309392b3c3bf61bfbe30279a7bd2303708d182c4c733e5073945d9453236:log:103', 'hash': '0xcf46309392b3c3bf61bfbe30279a7bd2303708d182c4c733e5073945d9453236', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 33202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0707e24f9043c7880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:30.000Z'}}, {'blockNum': '0x7a5b61', 'uniqueId': '0x3fe92898e4259085b5c8f65d209a6b0f7f5a926aa4ff90d00e0d15f59a4c57f5:log:104', 'hash': '0x3fe92898e4259085b5c8f65d209a6b0f7f5a926aa4ff90d00e0d15f59a4c57f5', 'from': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x7db697056952dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:17:30.000Z'}}, {'blockNum': '0x7a5bcc', 'uniqueId': '0x27ff7fce87d7caa2e287fb8d40e10cd4e1aceec806967706be4077215e4892be:log:23', 'hash': '0x27ff7fce87d7caa2e287fb8d40e10cd4e1aceec806967706be4077215e4892be', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 35904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x079a5c17ec7489000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:43:31.000Z'}}, {'blockNum': '0x7a5be5', 'uniqueId': '0xdb972498947adeff081156faf60c6ce8d7b252700d7acc6edaa8418de34ee8b3:log:79', 'hash': '0xdb972498947adeff081156faf60c6ce8d7b252700d7acc6edaa8418de34ee8b3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 11205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025f6c9cc55d9bf40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:48:19.000Z'}}, {'blockNum': '0x7a5c15', 'uniqueId': '0x851571974abf819af35af9b442ee895268323a2a319f1c717261a42ae71e0d66:log:54', 'hash': '0x851571974abf819af35af9b442ee895268323a2a319f1c717261a42ae71e0d66', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025f6c9cc55d9bf40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T05:59:47.000Z'}}, {'blockNum': '0x7a5c18', 'uniqueId': '0x9bc5ca8445f27bb6006cd8c6c721d39b30edf8a873356218b914648e12eb3d2c:log:42', 'hash': '0x9bc5ca8445f27bb6006cd8c6c721d39b30edf8a873356218b914648e12eb3d2c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x697e376b5b02a6c7eef23f31b373577fdf6057cc', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:01:24.000Z'}}, {'blockNum': '0x7a5ca5', 'uniqueId': '0xa49c0e808566b480d4d4f97c0124e0ddcacc441c386c2ed72a9d8f5829e7f66f:log:95', 'hash': '0xa49c0e808566b480d4d4f97c0124e0ddcacc441c386c2ed72a9d8f5829e7f66f', 'from': '0x6c85927742738a6c2f87f3de3e37c83c0c160873', 'to': '0x0869e28542226743a5fa2aac2b554a39578f36f0', 'value': 438.18133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x17c0fcce0d02372000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:32:19.000Z'}}, {'blockNum': '0x7a5ce1', 'uniqueId': '0x1a36cdda9dec5de7de4ec0f083db65e2f46a42fede1c73089cac80ff36451cbe:log:22', 'hash': '0x1a36cdda9dec5de7de4ec0f083db65e2f46a42fede1c73089cac80ff36451cbe', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 30123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0660f89a258183cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:45:30.000Z'}}, {'blockNum': '0x7a5cf2', 'uniqueId': '0x07a01b8e486add63af45e57deff6bf2a0306ba4205acdb6d3f68aae47b4e169f:log:33', 'hash': '0x07a01b8e486add63af45e57deff6bf2a0306ba4205acdb6d3f68aae47b4e169f', 'from': '0x29585ea10ab4f66bb3c223177daae992db593428', 'to': '0x74d02596a08f77539cec9a4ed414eee67b8cdb86', 'value': 12842.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b83112d6ad82d70000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:48:17.000Z'}}, {'blockNum': '0x7a5d2a', 'uniqueId': '0x4cb3fa80e8be08aaeae7adc89701a75a74907a77a3ecd1aa89f9c2cfb48cacb3:log:15', 'hash': '0x4cb3fa80e8be08aaeae7adc89701a75a74907a77a3ecd1aa89f9c2cfb48cacb3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x528025fffd4d7493a2dd479372e2a82642f97157', 'value': 1618.46662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x57bcbc7fe2e71fc000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:59:00.000Z'}}, {'blockNum': '0x7a5d2a', 'uniqueId': '0xd656f1e8d49a3c4920e6ccef72a359b22dfd6d788a7635e3edf837a3c47279d2:log:49', 'hash': '0xd656f1e8d49a3c4920e6ccef72a359b22dfd6d788a7635e3edf837a3c47279d2', 'from': '0x74d02596a08f77539cec9a4ed414eee67b8cdb86', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12842.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b83112d6ad82d70000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T06:59:00.000Z'}}, {'blockNum': '0x7a5dcc', 'uniqueId': '0x24ca25f50818fa89db620db1c9f54b98e5db5ea081dc60782f5fbad51f231a39:log:84', 'hash': '0x24ca25f50818fa89db620db1c9f54b98e5db5ea081dc60782f5fbad51f231a39', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 6488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x015fb716591a4e600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T07:41:00.000Z'}}, {'blockNum': '0x7a5de6', 'uniqueId': '0x8f2fefd1103388f4af8bf744a3a0b93ce57308231538bfa251fd34414179db60:log:3', 'hash': '0x8f2fefd1103388f4af8bf744a3a0b93ce57308231538bfa251fd34414179db60', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 38846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0839d88b911238380000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T07:47:28.000Z'}}, {'blockNum': '0x7a5e70', 'uniqueId': '0x3ef7595484a4d72cee1143fa609dfaecc839ec664212dfad5ad531b2cd7a650d:log:48', 'hash': '0x3ef7595484a4d72cee1143fa609dfaecc839ec664212dfad5ad531b2cd7a650d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 3340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xb50fcfafebecb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T08:14:23.000Z'}}, {'blockNum': '0x7a6073', 'uniqueId': '0x8488a486cf025156e171e3b2c4db98149046eae79ceeebc3eda57f6977c8729e:log:13', 'hash': '0x8488a486cf025156e171e3b2c4db98149046eae79ceeebc3eda57f6977c8729e', 'from': '0x5c8fc58ba1e0fea5bde1a3d5f35e13de18ddc385', 'to': '0xbf99b3a57e38d72a83b9f2ac7017ea6566272ea8', 'value': 5104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0114b03a9dd959c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T09:59:25.000Z'}}, {'blockNum': '0x7a60a0', 'uniqueId': '0x4fa8717cfeea898bc3fd714eb6beb268dae18e00521ba1ae2854a85002b964c9:log:20', 'hash': '0x4fa8717cfeea898bc3fd714eb6beb268dae18e00521ba1ae2854a85002b964c9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0f2265f4c57f04bccd1b6400e95a7ee6edc20b26', 'value': 2101.366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x71ea4fbb7c5b7f0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:12:16.000Z'}}, {'blockNum': '0x7a6139', 'uniqueId': '0x98280ae2bc06692013f41f5efde4ad6a6b7d66c30335bea32f190db8db75331f:log:33', 'hash': '0x98280ae2bc06692013f41f5efde4ad6a6b7d66c30335bea32f190db8db75331f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 12971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02bf28c920b257cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:46:41.000Z'}}, {'blockNum': '0x7a613e', 'uniqueId': '0xc7a9bc3d05437089971e040e17da67fa6440c4747be03ef70ffed038d3ed2bca:log:76', 'hash': '0xc7a9bc3d05437089971e040e17da67fa6440c4747be03ef70ffed038d3ed2bca', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 31692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06b606d9e8966fb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:47:37.000Z'}}, {'blockNum': '0x7a614f', 'uniqueId': '0xdd9d405ebf4a03e4dcd7225a32a5e9a0b6024a60aacc93c7a57166a19bba572f:log:19', 'hash': '0xdd9d405ebf4a03e4dcd7225a32a5e9a0b6024a60aacc93c7a57166a19bba572f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 5975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0143e7c83b17defc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:51:40.000Z'}}, {'blockNum': '0x7a6172', 'uniqueId': '0x69384f54bc56853945e309f56a808cab29726644d60b3865e813fff737e03cb0:log:24', 'hash': '0x69384f54bc56853945e309f56a808cab29726644d60b3865e813fff737e03cb0', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0143e7c83b17defc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:59:09.000Z'}}, {'blockNum': '0x7a6172', 'uniqueId': '0x219d430db147edb9fb456e284b218a1d6e22b7ea43943125e84e7ebf617e3cad:log:26', 'hash': '0x219d430db147edb9fb456e284b218a1d6e22b7ea43943125e84e7ebf617e3cad', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06b606d9e8966fb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:59:09.000Z'}}, {'blockNum': '0x7a6172', 'uniqueId': '0x48184baddef0de694435bc6b2eb2ddd76b3a079bf69619277e30fa0d2be1f8ff:log:29', 'hash': '0x48184baddef0de694435bc6b2eb2ddd76b3a079bf69619277e30fa0d2be1f8ff', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02bf28c920b257cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T10:59:09.000Z'}}, {'blockNum': '0x7a617c', 'uniqueId': '0x01cea594b69ad6a64dab4c62a48e1a7b9cb7a7e85943de498f45b157f19c4b3d:log:14', 'hash': '0x01cea594b69ad6a64dab4c62a48e1a7b9cb7a7e85943de498f45b157f19c4b3d', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 3060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa5e207db6cd7500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:00:55.000Z'}}, {'blockNum': '0x7a617c', 'uniqueId': '0x44962bcc0d2de51631c10ed16366de6cd1afff4c8de886fadaa4beb8ff6af59e:log:130', 'hash': '0x44962bcc0d2de51631c10ed16366de6cd1afff4c8de886fadaa4beb8ff6af59e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 222200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2f0d7c736df1d4e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:00:55.000Z'}}, {'blockNum': '0x7a619b', 'uniqueId': '0x2a9c7c11840d2b8c479931e3c242a45e2829d931a06d608a87253ed18c472737:log:17', 'hash': '0x2a9c7c11840d2b8c479931e3c242a45e2829d931a06d608a87253ed18c472737', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa5e207db6cd7500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:08:54.000Z'}}, {'blockNum': '0x7a61c4', 'uniqueId': '0x38374b0f0e1d4cc7a1cd9cfb6a0ce7af51e3f5375078b06135dc8f8489fa79c3:log:41', 'hash': '0x38374b0f0e1d4cc7a1cd9cfb6a0ce7af51e3f5375078b06135dc8f8489fa79c3', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 222200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2f0d7c736df1d4e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:18:59.000Z'}}, {'blockNum': '0x7a61f4', 'uniqueId': '0xb7549f5831e956dfc01da0f6ebd58334ae6bf4e89fe7ac440133ea8513521d11:log:22', 'hash': '0xb7549f5831e956dfc01da0f6ebd58334ae6bf4e89fe7ac440133ea8513521d11', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 9460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0200d3df66c59b500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:29:18.000Z'}}, {'blockNum': '0x7a6221', 'uniqueId': '0x4e7cddb8b8ced2b522ef0b232c1dd9cfd451559194a510a6584b225645203a39:log:157', 'hash': '0x4e7cddb8b8ced2b522ef0b232c1dd9cfd451559194a510a6584b225645203a39', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0200d3df66c59b500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:39:10.000Z'}}, {'blockNum': '0x7a6247', 'uniqueId': '0x63af377b42d7632423be7516d6673ee3d7b8c023fc9789c1171cf5529f76921b:log:93', 'hash': '0x63af377b42d7632423be7516d6673ee3d7b8c023fc9789c1171cf5529f76921b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 4885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0108d0fe522927340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:47:00.000Z'}}, {'blockNum': '0x7a6273', 'uniqueId': '0xf20ffa3d9f46602483ac97f631cd730624c3bb66a829ebae2b8fdd3b779fc181:log:37', 'hash': '0xf20ffa3d9f46602483ac97f631cd730624c3bb66a829ebae2b8fdd3b779fc181', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x2ad603904851b49b85deaf1d9a2a6f08a900d556', 'value': 1370.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4a5132b59b86c30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T11:58:08.000Z'}}, {'blockNum': '0x7a62a6', 'uniqueId': '0x06ad286bfce85878249fdc68f458103e5d8cf2309c2d5d643956f35088212736:log:43', 'hash': '0x06ad286bfce85878249fdc68f458103e5d8cf2309c2d5d643956f35088212736', 'from': '0x2ad603904851b49b85deaf1d9a2a6f08a900d556', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1370.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4a5132b59b86c30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:09:34.000Z'}}, {'blockNum': '0x7a62ae', 'uniqueId': '0xbb900bf7eecb4352c872a569206220a11700c450a32ac82a5a1c7dbed201458b:log:150', 'hash': '0xbb900bf7eecb4352c872a569206220a11700c450a32ac82a5a1c7dbed201458b', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 3083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa721384590e14c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:11:37.000Z'}}, {'blockNum': '0x7a62cb', 'uniqueId': '0xe719edda8337878079b75f87fb4e9af6fba105f939ad8e3119c3b3eaf3437975:log:39', 'hash': '0xe719edda8337878079b75f87fb4e9af6fba105f939ad8e3119c3b3eaf3437975', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 20160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0444e033c3be03000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:18:39.000Z'}}, {'blockNum': '0x7a62ce', 'uniqueId': '0xbf1ac0a49b5e917c229e8a7446c5e8542659bcce5644bd5d634438dc34d10b95:log:32', 'hash': '0xbf1ac0a49b5e917c229e8a7446c5e8542659bcce5644bd5d634438dc34d10b95', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa721384590e14c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:19:08.000Z'}}, {'blockNum': '0x7a62da', 'uniqueId': '0x5fc9639fb5ad346590a4bbe266ad9cf705e37598e654e439b40bf7f8935f9ac8:log:23', 'hash': '0x5fc9639fb5ad346590a4bbe266ad9cf705e37598e654e439b40bf7f8935f9ac8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe00c0e7401a7a14a994e851b8c8be51bc33facd9', 'value': 8312.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01c29fd8bfb4e7aa8000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:22:51.000Z'}}, {'blockNum': '0x7a62e2', 'uniqueId': '0x8db33a81f0b313e39cd20e97fefc95135814e4654ea155d6f2f9521c6e38a89d:log:63', 'hash': '0x8db33a81f0b313e39cd20e97fefc95135814e4654ea155d6f2f9521c6e38a89d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 236700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x321f885fc5a6f0f00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:25:19.000Z'}}, {'blockNum': '0x7a62e2', 'uniqueId': '0x01e65c2e409ab1148ec7aab4de03c69f79fce96e98853f9c2390b086c93fc9fd:log:64', 'hash': '0x01e65c2e409ab1148ec7aab4de03c69f79fce96e98853f9c2390b086c93fc9fd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 10777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x024838eb5101c0c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:25:19.000Z'}}, {'blockNum': '0x7a62e3', 'uniqueId': '0x32b602cb80ce533fdbcc611a5616754b97c0b8b26b7f1c108d159abbd08f7bf9:log:2', 'hash': '0x32b602cb80ce533fdbcc611a5616754b97c0b8b26b7f1c108d159abbd08f7bf9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 15003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x032d507352b3018c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:25:48.000Z'}}, {'blockNum': '0x7a62e6', 'uniqueId': '0xf1f9b33a3ff014556185ebec33bdecebda9158bbd15de6d0f50e7a2afc0872d0:log:38', 'hash': '0xf1f9b33a3ff014556185ebec33bdecebda9158bbd15de6d0f50e7a2afc0872d0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 31058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0693a8556fa9e2080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:26:42.000Z'}}, {'blockNum': '0x7a62f7', 'uniqueId': '0x8cc5edde850858d9c932bab774d1fb858e8d79d24a8183fd8b6c86f92d54d69f:log:122', 'hash': '0x8cc5edde850858d9c932bab774d1fb858e8d79d24a8183fd8b6c86f92d54d69f', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0444e033c3be03000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:32:00.000Z'}}, {'blockNum': '0x7a62f8', 'uniqueId': '0xbd29fef38652406eaa6b267d89fc72feb80446b20ca41b252a62f422e7979469:log:47', 'hash': '0xbd29fef38652406eaa6b267d89fc72feb80446b20ca41b252a62f422e7979469', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 35798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07949d0c461139980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:32:19.000Z'}}, {'blockNum': '0x7a6313', 'uniqueId': '0x707d13883d9a34b4a546fa01a7ae1c2251c5f166e4094b99bf581effa48a626c:log:38', 'hash': '0x707d13883d9a34b4a546fa01a7ae1c2251c5f166e4094b99bf581effa48a626c', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 236700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x321f885fc5a6f0f00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:38:57.000Z'}}, {'blockNum': '0x7a6314', 'uniqueId': '0xa2d69fcd9334df4d2d29dd25c50212576a9b6bedb8e81d7a89547272188205ea:log:30', 'hash': '0xa2d69fcd9334df4d2d29dd25c50212576a9b6bedb8e81d7a89547272188205ea', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0693a8556fa9e2080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:39:19.000Z'}}, {'blockNum': '0x7a6314', 'uniqueId': '0xd19428f83af96be748696318bf46cce7ab476ff88dbc2b60b47389410d54b0c5:log:67', 'hash': '0xd19428f83af96be748696318bf46cce7ab476ff88dbc2b60b47389410d54b0c5', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07949d0c461139980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:39:19.000Z'}}, {'blockNum': '0x7a6314', 'uniqueId': '0x51aed50a74d1be71d53ac4ea7fe521ce45d67ad41493059ad5b97e0e91a2c0a1:log:138', 'hash': '0x51aed50a74d1be71d53ac4ea7fe521ce45d67ad41493059ad5b97e0e91a2c0a1', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x024838eb5101c0c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:39:19.000Z'}}, {'blockNum': '0x7a6317', 'uniqueId': '0x0dc94bad84bc778c9b41e394136e2449efba294e28d6894c7e721607e474ffab:log:12', 'hash': '0x0dc94bad84bc778c9b41e394136e2449efba294e28d6894c7e721607e474ffab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 119362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1946a08221052fc80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:39:58.000Z'}}, {'blockNum': '0x7a635c', 'uniqueId': '0xac9ac82595934f24e74d1af2fb4bf8b87c1e693c84e67564c434ca3a26d06bf2:log:46', 'hash': '0xac9ac82595934f24e74d1af2fb4bf8b87c1e693c84e67564c434ca3a26d06bf2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 118824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x192976422b7767a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T12:56:41.000Z'}}, {'blockNum': '0x7a63b4', 'uniqueId': '0xe972e3a7651eca14892cca401ad5ddd82560bb681d200e18f5f9ea7d2cec1c64:log:33', 'hash': '0xe972e3a7651eca14892cca401ad5ddd82560bb681d200e18f5f9ea7d2cec1c64', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 143790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1e72df1bdfede9f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:15:33.000Z'}}, {'blockNum': '0x7a63da', 'uniqueId': '0x4d6d1955268a9563fe0205f66876ed938a294bfe136310fcef5177a6d8491a6b:log:10', 'hash': '0x4d6d1955268a9563fe0205f66876ed938a294bfe136310fcef5177a6d8491a6b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 104907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x16370515e6e4804c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:25:04.000Z'}}, {'blockNum': '0x7a63eb', 'uniqueId': '0x2bb1af9ca236d8ea538d6491aa0ecb99a0781b973ee1bc98fd22f4b42b0a65c6:log:15', 'hash': '0x2bb1af9ca236d8ea538d6491aa0ecb99a0781b973ee1bc98fd22f4b42b0a65c6', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 143790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1e72df1bdfede9f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:29:05.000Z'}}, {'blockNum': '0x7a63ef', 'uniqueId': '0xf07b3644d8f9666aa132a085203197519fbf82746217a6ef56ce8e5fef8c7409:log:9', 'hash': '0xf07b3644d8f9666aa132a085203197519fbf82746217a6ef56ce8e5fef8c7409', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 158965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x21a98289f35562b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:29:39.000Z'}}, {'blockNum': '0x7a63f2', 'uniqueId': '0xed23c9645b1d9212cd46d3670b4c6ca46dfdfc9c4150b7818f9c7498d27c0bac:log:20', 'hash': '0xed23c9645b1d9212cd46d3670b4c6ca46dfdfc9c4150b7818f9c7498d27c0bac', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0xf4343d247267345d15d777af633c2c477ae6a43a', 'value': 1112.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3c5548b05692ff0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:30:19.000Z'}}, {'blockNum': '0x7a6404', 'uniqueId': '0xaa3b6379ed3f6a4068a435a0f05d530f4d349ab6699c92c9a8de7cc81db9b81c:log:18', 'hash': '0xaa3b6379ed3f6a4068a435a0f05d530f4d349ab6699c92c9a8de7cc81db9b81c', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'value': 1122.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3cd8915c378a3286a0', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:33:21.000Z'}}, {'blockNum': '0x7a6414', 'uniqueId': '0x0d3add977ca538fee6a678b68a3675bb9c5c663bf42b08e148862cc92b036d9a:log:49', 'hash': '0x0d3add977ca538fee6a678b68a3675bb9c5c663bf42b08e148862cc92b036d9a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 49866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a8f3dc44e9bdce80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:36:22.000Z'}}, {'blockNum': '0x7a6414', 'uniqueId': '0xd3c355406e9d30f9aee79dcc8395ac1fb483e8348099e60b8e6341216db01f19:log:102', 'hash': '0xd3c355406e9d30f9aee79dcc8395ac1fb483e8348099e60b8e6341216db01f19', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6839bec04ddc0ced9599f68cf461e3ab2cc9099a', 'value': 4473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xf27b584907c2440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:36:22.000Z'}}, {'blockNum': '0x7a6417', 'uniqueId': '0x2c5061eb5543abe62f8f0fa4cae67007407a2a785c344b7b6c9394a69d8f411b:log:23', 'hash': '0x2c5061eb5543abe62f8f0fa4cae67007407a2a785c344b7b6c9394a69d8f411b', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 18828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03fcaafd24fb0eb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:37:13.000Z'}}, {'blockNum': '0x7a641e', 'uniqueId': '0x1b7e644208b04e435ae23a90df24843b19e1c66c96ad2e41b363cdabd52f189e:log:91', 'hash': '0x1b7e644208b04e435ae23a90df24843b19e1c66c96ad2e41b363cdabd52f189e', 'from': '0x57ef2c2558d74ff2654e0587e8e17c2926ddd091', 'to': '0x10cdff110da4cb9a498539ff296c01306a08df43', 'value': 41185.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08b8b131db3e8d848000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:38:57.000Z'}}, {'blockNum': '0x7a6420', 'uniqueId': '0xaf6b717c7b5591df4b9c315301ecaf3fd8237f92e22045bbf963121e097666a2:log:23', 'hash': '0xaf6b717c7b5591df4b9c315301ecaf3fd8237f92e22045bbf963121e097666a2', 'from': '0xf4343d247267345d15d777af633c2c477ae6a43a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1112.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3c5548b05692ff0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:39:16.000Z'}}, {'blockNum': '0x7a642a', 'uniqueId': '0x2034dcdbe6ff4dba8b0d3dce52067edd38da55888574769800cf537d11bc04f4:log:59', 'hash': '0x2034dcdbe6ff4dba8b0d3dce52067edd38da55888574769800cf537d11bc04f4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 2508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x87f57de80be7b00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:41:03.000Z'}}, {'blockNum': '0x7a642d', 'uniqueId': '0xc2bf7ad303403c258cc47daaa928e0ce71923f0fc22a56d0f5973ac87a0130d6:log:22', 'hash': '0xc2bf7ad303403c258cc47daaa928e0ce71923f0fc22a56d0f5973ac87a0130d6', 'from': '0x270bc663ff2e51d7d22ad2a8c9d73e6260c82958', 'to': '0x2744f7ea2ac1cb7dbd097fd2bfe2e8ace6be17c0', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:42:43.000Z'}}, {'blockNum': '0x7a642e', 'uniqueId': '0x8406cf3d1db4f4a775ad84c488ea5df86775919dde6d173da9548d56b71d73b4:log:12', 'hash': '0x8406cf3d1db4f4a775ad84c488ea5df86775919dde6d173da9548d56b71d73b4', 'from': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1122.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3cd8915c378a3286a0', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:43:06.000Z'}}, {'blockNum': '0x7a6430', 'uniqueId': '0x494bd50c0e91eee40cb1d5ae933279fd1176b3c996587c4372b18c51d15d2a92:log:29', 'hash': '0x494bd50c0e91eee40cb1d5ae933279fd1176b3c996587c4372b18c51d15d2a92', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 38489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08267e2cc889c9c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:43:18.000Z'}}, {'blockNum': '0x7a6454', 'uniqueId': '0xf91758521d7672e196ed2e40bf36c4ab34458f4ffa2cab59586eba9295a2401f:log:37', 'hash': '0xf91758521d7672e196ed2e40bf36c4ab34458f4ffa2cab59586eba9295a2401f', 'from': '0x10cdff110da4cb9a498539ff296c01306a08df43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41185.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08b8b131db3e8d848000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:49:13.000Z'}}, {'blockNum': '0x7a6454', 'uniqueId': '0xd93dcabfe80b36e3a26d86670b716ab481c5ff61643d45cb1429755d8ac42a21:log:44', 'hash': '0xd93dcabfe80b36e3a26d86670b716ab481c5ff61643d45cb1429755d8ac42a21', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03fcaafd24fb0eb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:49:13.000Z'}}, {'blockNum': '0x7a6454', 'uniqueId': '0x59fdabd5668a0e0122a5f66c0cd54b5cda052fa28e60243c0399b7728fb3fceb:log:47', 'hash': '0x59fdabd5668a0e0122a5f66c0cd54b5cda052fa28e60243c0399b7728fb3fceb', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08267e2cc889c9c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:49:13.000Z'}}, {'blockNum': '0x7a6454', 'uniqueId': '0xe60ec30e01ad4b79519e26e7e79a86661f45a58cdaec2b955849affecf8dade8:log:49', 'hash': '0xe60ec30e01ad4b79519e26e7e79a86661f45a58cdaec2b955849affecf8dade8', 'from': '0x2744f7ea2ac1cb7dbd097fd2bfe2e8ace6be17c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:49:13.000Z'}}, {'blockNum': '0x7a6466', 'uniqueId': '0x3ac59bf0630e6aa1107a1bd2e9fe3d404d09da19bce721f5e8760bc151690bde:log:2', 'hash': '0x3ac59bf0630e6aa1107a1bd2e9fe3d404d09da19bce721f5e8760bc151690bde', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 32817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f3035ccc150a240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:53:33.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0xe7c63b4de880e918d480ddf23a90a6c74a3523d69147b4c2441d14177b35b213:log:57', 'hash': '0xe7c63b4de880e918d480ddf23a90a6c74a3523d69147b4c2441d14177b35b213', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 186588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2782f4abe66839f00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0xa031eef8dbaf443f3af5cbfc570c61bf17fd57a8193ab68e897ae51d504d2956:log:59', 'hash': '0xa031eef8dbaf443f3af5cbfc570c61bf17fd57a8193ab68e897ae51d504d2956', 'from': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 28675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06127990bd56b62c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x407def819e9dcd7f77b303953b8b4618544287f756461f18f0e9532c001b3377:log:60', 'hash': '0x407def819e9dcd7f77b303953b8b4618544287f756461f18f0e9532c001b3377', 'from': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 47072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09f7c73a49daf3800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0xdcbce35d1b9ca60db58f137f76540541d64798c01d37c0593a45bf35313edb7b:log:61', 'hash': '0xdcbce35d1b9ca60db58f137f76540541d64798c01d37c0593a45bf35313edb7b', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 54620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b90f4c522d65bf00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x6b36ab75f410fbbf3c29ce15e01cc77913fbe568f79acb244979bb7b185ec8ed:log:62', 'hash': '0x6b36ab75f410fbbf3c29ce15e01cc77913fbe568f79acb244979bb7b185ec8ed', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 30046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065ccc0331782ab80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x04171e02b15a24cca6f7ec32d998f6fc31ee7f85b1089cc35fa574a6d75d476d:log:63', 'hash': '0x04171e02b15a24cca6f7ec32d998f6fc31ee7f85b1089cc35fa574a6d75d476d', 'from': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 11215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025ff763e86225dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x5938653d722b6baf789a3f6858f0c234bdba5e10ec337c71f14052cefa0c54a9:log:64', 'hash': '0x5938653d722b6baf789a3f6858f0c234bdba5e10ec337c71f14052cefa0c54a9', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 66692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e1f616caaa3df900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0xe847fba355018a612d12b390e0ef6b7f1f5124d001cac49f4e89b684be5ad387:log:65', 'hash': '0xe847fba355018a612d12b390e0ef6b7f1f5124d001cac49f4e89b684be5ad387', 'from': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 34695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0758d1d9160301bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x22c8ad5ac32ab0a7debc8d7604601f5882d5725dd79a6b8381c1f3db7c8ec65d:log:66', 'hash': '0x22c8ad5ac32ab0a7debc8d7604601f5882d5725dd79a6b8381c1f3db7c8ec65d', 'from': '0xf358caa9bca436dd08608805e5316eae391ee054', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 35904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x079a5c17ec7489000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a6471', 'uniqueId': '0x13ad412c6950a658defa7c4bad43a9c5981da7ca66a2a923a87cabb00faf1d9c:log:67', 'hash': '0x13ad412c6950a658defa7c4bad43a9c5981da7ca66a2a923a87cabb00faf1d9c', 'from': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 207508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2bf107fe0f7f2dd00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T13:56:11.000Z'}}, {'blockNum': '0x7a648b', 'uniqueId': '0x3ba6acf9eef8b7eceb6e662afadf9ac539312c9b11d0c7563cfa05bd2774b5b7:log:123', 'hash': '0x3ba6acf9eef8b7eceb6e662afadf9ac539312c9b11d0c7563cfa05bd2774b5b7', 'from': '0xb138e925c53c9eb4999cd9c3406326ba16b5baa9', 'to': '0x7ccb3abf8aa1cdb55216543e13e2719132e9c788', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:01:29.000Z'}}, {'blockNum': '0x7a64ac', 'uniqueId': '0xa44e48807bf02b98eea481c5f741ed626f83d980104dad81fce23f05f1a9f16a:log:5', 'hash': '0xa44e48807bf02b98eea481c5f741ed626f83d980104dad81fce23f05f1a9f16a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2fb49c08688651e046ce7e263a416e476dc233be', 'value': 34166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x073c247f8cc61c180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:08:56.000Z'}}, {'blockNum': '0x7a64b0', 'uniqueId': '0xb1e186b012344f111fa4a6c6d437a3c53caaf74657c027dff1bf0cfa21404b87:log:15', 'hash': '0xb1e186b012344f111fa4a6c6d437a3c53caaf74657c027dff1bf0cfa21404b87', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 5004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f44733fabf6b00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:10:09.000Z'}}, {'blockNum': '0x7a64b0', 'uniqueId': '0x92db15f9373c2db75d84064339eba0a95078c3449a2dda0903e09ad3556b8815:log:20', 'hash': '0x92db15f9373c2db75d84064339eba0a95078c3449a2dda0903e09ad3556b8815', 'from': '0x7ccb3abf8aa1cdb55216543e13e2719132e9c788', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:10:09.000Z'}}, {'blockNum': '0x7a64b4', 'uniqueId': '0x38c26d4b776e9b600e776293b382d63ed4d87b8102e3893c568fde7b9f8f9d28:log:46', 'hash': '0x38c26d4b776e9b600e776293b382d63ed4d87b8102e3893c568fde7b9f8f9d28', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 2510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x88113f557336780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:11:16.000Z'}}, {'blockNum': '0x7a64dc', 'uniqueId': '0xd9a55c5450431e7b07ea15ddeb2f161071e22faf064bc077550d60587ca41fd9:log:11', 'hash': '0xd9a55c5450431e7b07ea15ddeb2f161071e22faf064bc077550d60587ca41fd9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 31317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a1b2ae476c3c340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:19:07.000Z'}}, {'blockNum': '0x7a64f9', 'uniqueId': '0x7e07eb90a881dd57cc82ba6af3083809358f807576d096bd20d6f01652abb369:log:41', 'hash': '0x7e07eb90a881dd57cc82ba6af3083809358f807576d096bd20d6f01652abb369', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 6133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014c7878fdf92eb40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:24:53.000Z'}}, {'blockNum': '0x7a6505', 'uniqueId': '0xfa3deabfadb6f900a4b741a9c2ece2f6895c797d845eb074145a1b906d8e361c:log:21', 'hash': '0xfa3deabfadb6f900a4b741a9c2ece2f6895c797d845eb074145a1b906d8e361c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 13680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02e598232040efc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:26:26.000Z'}}, {'blockNum': '0x7a656d', 'uniqueId': '0x0654f30dbce795cd0ab28ab30a97092a7e00acae4e500ecf8b19aabecaf6f1fb:log:69', 'hash': '0x0654f30dbce795cd0ab28ab30a97092a7e00acae4e500ecf8b19aabecaf6f1fb', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xc2b07655355ba1595a1f36dabc8ff2f2a0593b4a', 'value': 19251.14098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04139b3fe464c95b4000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:48:44.000Z'}}, {'blockNum': '0x7a656d', 'uniqueId': '0x86655b50ebff5fbff293e6db987ae1574dd8bbec8aa444e381dbbcf841fc2d10:log:96', 'hash': '0x86655b50ebff5fbff293e6db987ae1574dd8bbec8aa444e381dbbcf841fc2d10', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02e598232040efc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:48:44.000Z'}}, {'blockNum': '0x7a658e', 'uniqueId': '0x761c6dd8dd4e2510d4b5e780248af98bb69b075896c1c70120e37d320173e77c:log:75', 'hash': '0x761c6dd8dd4e2510d4b5e780248af98bb69b075896c1c70120e37d320173e77c', 'from': '0x0a6f3315446ece38ba8811d0457246cf6eacecee', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2932.999629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x9eff8be6e0a17dd000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:54:31.000Z'}}, {'blockNum': '0x7a658e', 'uniqueId': '0x761c6dd8dd4e2510d4b5e780248af98bb69b075896c1c70120e37d320173e77c:log:76', 'hash': '0x761c6dd8dd4e2510d4b5e780248af98bb69b075896c1c70120e37d320173e77c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2932.999629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x9eff8be6e0a17dd000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:54:31.000Z'}}, {'blockNum': '0x7a65a5', 'uniqueId': '0x5b498e10d29040e38560cc6c4591c884b672b7aa3ef6c8e876964350f4ae95aa:log:27', 'hash': '0x5b498e10d29040e38560cc6c4591c884b672b7aa3ef6c8e876964350f4ae95aa', 'from': '0xc2b07655355ba1595a1f36dabc8ff2f2a0593b4a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19251.14098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04139b3fe464c95b4000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T14:59:45.000Z'}}, {'blockNum': '0x7a65bf', 'uniqueId': '0x30900df6ff7c032c868fd7177f9ffdf68d12e44af401be6cb5ee3349e1017f94:log:9', 'hash': '0x30900df6ff7c032c868fd7177f9ffdf68d12e44af401be6cb5ee3349e1017f94', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 109286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x172467eb19f4cbd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:06:38.000Z'}}, {'blockNum': '0x7a65e2', 'uniqueId': '0x4f7465ca17e3238247b9ce9d13c9e64b56a1d6796c589449d13fa7efecef4c91:log:9', 'hash': '0x4f7465ca17e3238247b9ce9d13c9e64b56a1d6796c589449d13fa7efecef4c91', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 28315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05fef58fd0b3518c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:13:25.000Z'}}, {'blockNum': '0x7a65f5', 'uniqueId': '0xb2c7e13a92ec50dac6890d4f6d4ae5eb88b321266fc2d96f132a1935a727ba90:log:0', 'hash': '0xb2c7e13a92ec50dac6890d4f6d4ae5eb88b321266fc2d96f132a1935a727ba90', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 33617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x071e6197bd8022a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:17:42.000Z'}}, {'blockNum': '0x7a65fb', 'uniqueId': '0xe1db76f9a92c5ae7223dee779b0a7f9d724bc862b2ea21fce9786d5ef77b0c7d:log:97', 'hash': '0xe1db76f9a92c5ae7223dee779b0a7f9d724bc862b2ea21fce9786d5ef77b0c7d', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x82a131091e2e46b818bf42dfaac99c1d0eea9477', 'value': 1594.12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x566adbedfd81b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:19:16.000Z'}}, {'blockNum': '0x7a6617', 'uniqueId': '0xfe6e768853ee403e2a8f96856acd951d8243f7519145f2c4ffe76ce4424712ed:log:86', 'hash': '0xfe6e768853ee403e2a8f96856acd951d8243f7519145f2c4ffe76ce4424712ed', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xcc751fb5e7eab776fe1e202cc8dd7bf95221aec0', 'value': 1915.8349316483295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x67db8cf7ce3f759337', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:27:15.000Z'}}, {'blockNum': '0x7a6640', 'uniqueId': '0xa124b1e09712cbaa2054a43ecbc3ca3854582213075c78a1336627ceb5766a58:log:144', 'hash': '0xa124b1e09712cbaa2054a43ecbc3ca3854582213075c78a1336627ceb5766a58', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 1506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x51a3f2ccdeba480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:34:54.000Z'}}, {'blockNum': '0x7a6661', 'uniqueId': '0xacc591e812b89e9fc1437eddcd7e09681db5a8cea7e9b9ca36d26c7017dc0d04:log:44', 'hash': '0xacc591e812b89e9fc1437eddcd7e09681db5a8cea7e9b9ca36d26c7017dc0d04', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 36955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d355a60004c08c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:41:07.000Z'}}, {'blockNum': '0x7a6661', 'uniqueId': '0xcc9f0c59dd57ee616c7813ab2a506913043d7b1b5a0030ffe17215c25ecbf9f1:log:45', 'hash': '0xcc9f0c59dd57ee616c7813ab2a506913043d7b1b5a0030ffe17215c25ecbf9f1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 39494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x085cf95a07d1ed580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:41:07.000Z'}}, {'blockNum': '0x7a666b', 'uniqueId': '0x0a34cf903ee1cd1e4878b81066af9b86034fdc6e513c40a536f2b97bb6f3c221:log:29', 'hash': '0x0a34cf903ee1cd1e4878b81066af9b86034fdc6e513c40a536f2b97bb6f3c221', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 35281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0778963b4d402ca40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T15:43:32.000Z'}}, {'blockNum': '0x7a66c5', 'uniqueId': '0xc43c6d3f52809138c35d0e3d04c9a189d5d1868d70ba198fe860e7f366d5044e:log:56', 'hash': '0xc43c6d3f52809138c35d0e3d04c9a189d5d1868d70ba198fe860e7f366d5044e', 'from': '0xcc751fb5e7eab776fe1e202cc8dd7bf95221aec0', 'to': '0xc0679f97e589dc089131ceac4cc8bc42e19fad5d', 'value': 1915.8349316483295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x67db8cf7ce3f759337', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:07:44.000Z'}}, {'blockNum': '0x7a66dc', 'uniqueId': '0x93427fe50cadb81526296f12b5d8a1f511ed2474db066c0a43569b0f83194ff1:log:151', 'hash': '0x93427fe50cadb81526296f12b5d8a1f511ed2474db066c0a43569b0f83194ff1', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x6ae3e410106faebd48ae6b62c06610e886f47004', 'value': 310.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10d1dc791e7c730000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:12:36.000Z'}}, {'blockNum': '0x7a66e9', 'uniqueId': '0xc68b1d9db2cb0563ec6e6ee3055986419eaf636161207ad2224f9a08ae0c46d1:log:40', 'hash': '0xc68b1d9db2cb0563ec6e6ee3055986419eaf636161207ad2224f9a08ae0c46d1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 7107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x018145701d800d2c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:14:45.000Z'}}, {'blockNum': '0x7a6739', 'uniqueId': '0x0776ae87e6f24bdfb2978710bb5d5effba596ebec4eabbe0105b8c99525adeb1:log:11', 'hash': '0x0776ae87e6f24bdfb2978710bb5d5effba596ebec4eabbe0105b8c99525adeb1', 'from': '0xd3d33d91e13f24f1c62b905143509bad3179d7f4', 'to': '0xec1c99bf9dc31850858098c098f94a0bc15f02c0', 'value': 6153.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014d901c2c36ced30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:32:13.000Z'}}, {'blockNum': '0x7a6782', 'uniqueId': '0x868d6c25c95a441f0c61c67d39211f7ad057027cf8f7d62315acda1462d40965:log:49', 'hash': '0x868d6c25c95a441f0c61c67d39211f7ad057027cf8f7d62315acda1462d40965', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 34485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074d6f8336a3b1b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:49:14.000Z'}}, {'blockNum': '0x7a6782', 'uniqueId': '0x79706d1945627a75797721fed938bd48bbe8d394493add854f9681e691aa2b17:log:50', 'hash': '0x79706d1945627a75797721fed938bd48bbe8d394493add854f9681e691aa2b17', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 159714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x21d21d007ef622480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:49:14.000Z'}}, {'blockNum': '0x7a67b5', 'uniqueId': '0xc493f709914bafd819bf0988ee7e4c7935666f7211aa648509e176a93716c961:log:8', 'hash': '0xc493f709914bafd819bf0988ee7e4c7935666f7211aa648509e176a93716c961', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 159714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x21d21d007ef622480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:59:08.000Z'}}, {'blockNum': '0x7a67b5', 'uniqueId': '0x63e3392083fa9e3ac87c8121b33bbecbdb15556120886c2665ae7ca26ebd52b2:log:10', 'hash': '0x63e3392083fa9e3ac87c8121b33bbecbdb15556120886c2665ae7ca26ebd52b2', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074d6f8336a3b1b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T16:59:08.000Z'}}, {'blockNum': '0x7a67c5', 'uniqueId': '0x1c3e1a4920fceb7639fa9b34a2091123de371313fca1a64316e92ccad76c7fb9:log:7', 'hash': '0x1c3e1a4920fceb7639fa9b34a2091123de371313fca1a64316e92ccad76c7fb9', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 7631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019dad66153aaddc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T17:02:02.000Z'}}, {'blockNum': '0x7a6803', 'uniqueId': '0x74a5f7a01b2fcc8b743c9fcdec397b63a171bff686e12d94816ed3e5e6c345f4:log:67', 'hash': '0x74a5f7a01b2fcc8b743c9fcdec397b63a171bff686e12d94816ed3e5e6c345f4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 11184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025e492dc8a0e0c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T17:16:30.000Z'}}, {'blockNum': '0x7a6873', 'uniqueId': '0xea1723475ac00ce642afea6688dd2473ec38652a8735eaf69351daf3bccae6e0:log:4', 'hash': '0xea1723475ac00ce642afea6688dd2473ec38652a8735eaf69351daf3bccae6e0', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T17:42:29.000Z'}}, {'blockNum': '0x7a68a2', 'uniqueId': '0xe3405defcfc400324a396554b76bb5fede7377a9c8654ad8bbabcfa7dffdb91e:log:104', 'hash': '0xe3405defcfc400324a396554b76bb5fede7377a9c8654ad8bbabcfa7dffdb91e', 'from': '0xa49354a5e75bc4d7e90858d1b84f87f0e084d671', 'to': '0x0bcd90f6a55072ccbd5f1269a12549e0e335afe3', 'value': 768.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x29ac3045202d620000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T17:51:54.000Z'}}, {'blockNum': '0x7a68d2', 'uniqueId': '0x0ec2dfac4eaed6b1475962905fefb78e344ad03f58324e2682304e67e1dedfd2:log:87', 'hash': '0x0ec2dfac4eaed6b1475962905fefb78e344ad03f58324e2682304e67e1dedfd2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 18553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03edc298e1fe3e440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:01:20.000Z'}}, {'blockNum': '0x7a68da', 'uniqueId': '0xf0c8a8595b8467c908c448c1c0cd5d25580c9e1ea1d085789be19a12a9f5bed9:log:42', 'hash': '0xf0c8a8595b8467c908c448c1c0cd5d25580c9e1ea1d085789be19a12a9f5bed9', 'from': '0x0e88d68ddd2ae0465acc9552260569bcf4c33685', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 180.13060882883866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c3d07a5b61c5709a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:03:28.000Z'}}, {'blockNum': '0x7a68da', 'uniqueId': '0xf0c8a8595b8467c908c448c1c0cd5d25580c9e1ea1d085789be19a12a9f5bed9:log:43', 'hash': '0xf0c8a8595b8467c908c448c1c0cd5d25580c9e1ea1d085789be19a12a9f5bed9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 180.13060882883866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c3d07a5b61c5709a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:03:28.000Z'}}, {'blockNum': '0x7a68ee', 'uniqueId': '0x7bc9c915bd222d17c1edb0588ad562960cf354c637b37df18e3c182e88cc2e86:log:10', 'hash': '0x7bc9c915bd222d17c1edb0588ad562960cf354c637b37df18e3c182e88cc2e86', 'from': '0x0bcd90f6a55072ccbd5f1269a12549e0e335afe3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 768.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x29ac3045202d620000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:09:23.000Z'}}, {'blockNum': '0x7a690a', 'uniqueId': '0xb00e0dffb7963fc89895079eeeb3baae0b7c26310fe5588d43273d22eb9c0a21:log:39', 'hash': '0xb00e0dffb7963fc89895079eeeb3baae0b7c26310fe5588d43273d22eb9c0a21', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 13678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02e57c61b2d9a0f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:14:59.000Z'}}, {'blockNum': '0x7a690a', 'uniqueId': '0x6823e5e057868689bac7cfeb3071cbef1be6e4f9e48094a372f598fda06a86a6:log:40', 'hash': '0x6823e5e057868689bac7cfeb3071cbef1be6e4f9e48094a372f598fda06a86a6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 30488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0674c1fea3a72d600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:14:59.000Z'}}, {'blockNum': '0x7a6921', 'uniqueId': '0xb57e7a8d3c30784e74711b505f8beb771fb672f6e0b2b87661fab75f88144905:log:14', 'hash': '0xb57e7a8d3c30784e74711b505f8beb771fb672f6e0b2b87661fab75f88144905', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0674c1fea3a72d600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:19:06.000Z'}}, {'blockNum': '0x7a694e', 'uniqueId': '0x4d26a916a81f83c106939721a7a59c97ca3172824b950e4f92b309786a19fda3:log:78', 'hash': '0x4d26a916a81f83c106939721a7a59c97ca3172824b950e4f92b309786a19fda3', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3790bb855137640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:29:43.000Z'}}, {'blockNum': '0x7a694f', 'uniqueId': '0x0ffb5b3a1d0eaed51f5bf929b3016f566c1fea54781d39f7340ff81bbd50c2bd:log:36', 'hash': '0x0ffb5b3a1d0eaed51f5bf929b3016f566c1fea54781d39f7340ff81bbd50c2bd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 172367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x248008a6ac7e8bdc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:30:42.000Z'}}, {'blockNum': '0x7a694f', 'uniqueId': '0x512488cf32cb56df62bcce49af285ab29cb500105faf23ea2519f4ffa1a09610:log:37', 'hash': '0x512488cf32cb56df62bcce49af285ab29cb500105faf23ea2519f4ffa1a09610', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 10075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02222ab6505cbc8c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:30:42.000Z'}}, {'blockNum': '0x7a694f', 'uniqueId': '0x65ce4047f5dfa565e2643e9817b5c80f36bbc8c40be1412b04ad34996e9e8d67:log:38', 'hash': '0x65ce4047f5dfa565e2643e9817b5c80f36bbc8c40be1412b04ad34996e9e8d67', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 34428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074a587a88a36c700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:30:42.000Z'}}, {'blockNum': '0x7a6950', 'uniqueId': '0x9a9e1e2cfa46da7b16a21c497e0767bc0f3449ab0dff69d7f5514cbddc8bb3ff:log:40', 'hash': '0x9a9e1e2cfa46da7b16a21c497e0767bc0f3449ab0dff69d7f5514cbddc8bb3ff', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x73ce0a40a7b1571b12aaa44ebe05a64e2fcaa8d4', 'value': 52608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b23e2a936dec6000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:30:55.000Z'}}, {'blockNum': '0x7a6951', 'uniqueId': '0x18e2a0811950b21db539725058fe04d89f6b4e03982e5483e505e962eaa1a46e:log:34', 'hash': '0x18e2a0811950b21db539725058fe04d89f6b4e03982e5483e505e962eaa1a46e', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 1158.1524210230518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3ec897f2c415a7a38a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:06.000Z'}}, {'blockNum': '0x7a6951', 'uniqueId': '0xe06b8bcacdab368259a51061950bd7d49e36019228f344d6080511fc559d62e8:log:36', 'hash': '0xe06b8bcacdab368259a51061950bd7d49e36019228f344d6080511fc559d62e8', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xb33cc3147d70ce2af31b2b90411bd6333eea0ea7', 'value': 92143.29863788222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x138319257b08d8d73496', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:06.000Z'}}, {'blockNum': '0x7a6951', 'uniqueId': '0x9c803c6fb37d33a0c889070c16d8bd364623f4f5672ed059031123b54b4638b4:log:38', 'hash': '0x9c803c6fb37d33a0c889070c16d8bd364623f4f5672ed059031123b54b4638b4', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 9646.104524948038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020aea977e3027f733d8', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:06.000Z'}}, {'blockNum': '0x7a6952', 'uniqueId': '0x69d9ebc35d7f2630b93268f259771608019cdb098f7e768ba74e6abb81f309d6:log:73', 'hash': '0x69d9ebc35d7f2630b93268f259771608019cdb098f7e768ba74e6abb81f309d6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 54131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b76728825ab9dec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:12.000Z'}}, {'blockNum': '0x7a6952', 'uniqueId': '0xb3ef0665d8f31844f93cec402fd23c0ce302e1dd901dae9f4a72e540b09e8e78:log:75', 'hash': '0xb3ef0665d8f31844f93cec402fd23c0ce302e1dd901dae9f4a72e540b09e8e78', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 39981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08775fd597955c940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:12.000Z'}}, {'blockNum': '0x7a6954', 'uniqueId': '0xcd50dbca1d25ab1fe55345d134e78246d90a0ff3aa4e5dde7983d07c08105183:log:12', 'hash': '0xcd50dbca1d25ab1fe55345d134e78246d90a0ff3aa4e5dde7983d07c08105183', 'from': '0xb33cc3147d70ce2af31b2b90411bd6333eea0ea7', 'to': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'value': 92143.29863788222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x138319257b08d8d73496', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:31:49.000Z'}}, {'blockNum': '0x7a6955', 'uniqueId': '0x5d03e7d2e48a9d2bdc2a34fb7c5742eb5fe16ec50c3b0f0a4acb2095dfdb297f:log:63', 'hash': '0x5d03e7d2e48a9d2bdc2a34fb7c5742eb5fe16ec50c3b0f0a4acb2095dfdb297f', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 1158.1524210230518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3ec897f2c415a7a38a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:32:16.000Z'}}, {'blockNum': '0x7a6956', 'uniqueId': '0x162fe2c9225c36b510ea9e604b0d3fdd6f60d5517a4e2d1537b49b6d55d2a003:log:28', 'hash': '0x162fe2c9225c36b510ea9e604b0d3fdd6f60d5517a4e2d1537b49b6d55d2a003', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 9646.977032287388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020af6b342fd91e32261', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:32:21.000Z'}}, {'blockNum': '0x7a6958', 'uniqueId': '0x5463d4594763b3fbc8d670a2817fa9b8e04e9f742b3515ea7a3728cc31bffadc:log:11', 'hash': '0x5463d4594763b3fbc8d670a2817fa9b8e04e9f742b3515ea7a3728cc31bffadc', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 24192.22628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x051f769539c075c68000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:32:50.000Z'}}, {'blockNum': '0x7a6958', 'uniqueId': '0xbd7d95cf13e84c18cc0518d6c350e7cc1cd1e69604d1774eaec93862d474f32f:log:12', 'hash': '0xbd7d95cf13e84c18cc0518d6c350e7cc1cd1e69604d1774eaec93862d474f32f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:32:50.000Z'}}, {'blockNum': '0x7a6959', 'uniqueId': '0x8a9cadaf697b0b6ef6b076cdf51e56776c02f48dae8ce6ce0d828f633d43acff:log:8', 'hash': '0x8a9cadaf697b0b6ef6b076cdf51e56776c02f48dae8ce6ce0d828f633d43acff', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 16875.2296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0392cedb0866d53a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:06.000Z'}}, {'blockNum': '0x7a6959', 'uniqueId': '0x424540754fcd0cf3e995d407a1029419b07e6407f8b0d773f3b89d686eb92955:log:9', 'hash': '0x424540754fcd0cf3e995d407a1029419b07e6407f8b0d773f3b89d686eb92955', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 12799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b5d5ce5ffde09c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:06.000Z'}}, {'blockNum': '0x7a6959', 'uniqueId': '0x2487da9d28d41514a4503e56323d5170d2c14afec0259af6580392c1ff97c4b2:log:10', 'hash': '0x2487da9d28d41514a4503e56323d5170d2c14afec0259af6580392c1ff97c4b2', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 25455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0563eb16b1a1405c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:06.000Z'}}, {'blockNum': '0x7a695a', 'uniqueId': '0x5988fecf7ba96a81a9ee7b821b9e2977f0634c2eb179c7cf10060ed42892b98f:log:4', 'hash': '0x5988fecf7ba96a81a9ee7b821b9e2977f0634c2eb179c7cf10060ed42892b98f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 30469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0673ba511451c0f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:10.000Z'}}, {'blockNum': '0x7a695c', 'uniqueId': '0x5388892c4339f7a9d2d99e16921128f65acdf9dde455772c04c0011a612c73af:log:17', 'hash': '0x5388892c4339f7a9d2d99e16921128f65acdf9dde455772c04c0011a612c73af', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 31582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06b0104b676482b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:18.000Z'}}, {'blockNum': '0x7a695c', 'uniqueId': '0xd22cb04e72c46a5238bff9e3a338b486a5f83531522c1ad0182fb07e8cdefa1b:log:18', 'hash': '0xd22cb04e72c46a5238bff9e3a338b486a5f83531522c1ad0182fb07e8cdefa1b', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 14842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x032496206bb6bba80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:18.000Z'}}, {'blockNum': '0x7a695c', 'uniqueId': '0x59cd9ff999f634ffcd1bedf56146a989a2907ce9ef4396cd540809bb0f910182:log:42', 'hash': '0x59cd9ff999f634ffcd1bedf56146a989a2907ce9ef4396cd540809bb0f910182', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 79948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10edfd61315791b00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:33:18.000Z'}}, {'blockNum': '0x7a6961', 'uniqueId': '0xc97d73b4a6fa442ed741e0eec3ccb5357ddc3d1750928fccb7bf238642a0397c:log:21', 'hash': '0xc97d73b4a6fa442ed741e0eec3ccb5357ddc3d1750928fccb7bf238642a0397c', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0xf5954424c2b4489021c3666477c869b90ebef016', 'value': 7871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01aab0115da79b9c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:34:29.000Z'}}, {'blockNum': '0x7a6969', 'uniqueId': '0x405b8a26d0a47a3d6ffa1e861a932bacb7bc11a3f711fd9b0bd5422d5f29fbc7:log:3', 'hash': '0x405b8a26d0a47a3d6ffa1e861a932bacb7bc11a3f711fd9b0bd5422d5f29fbc7', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 58859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c76c0b66ba71ccc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:35:13.000Z'}}, {'blockNum': '0x7a696c', 'uniqueId': '0xf49e76b4fd3af69788f5fb88be50ad9b01173e6bb2e0fa49aabe16e4706eb5f9:log:1', 'hash': '0xf49e76b4fd3af69788f5fb88be50ad9b01173e6bb2e0fa49aabe16e4706eb5f9', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 21652.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0495cc2194dde39a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:35:28.000Z'}}, {'blockNum': '0x7a6973', 'uniqueId': '0x15e76e990531739fa066bf403f5a4aec1557a1eeb23b015b940557cb52e9216f:log:9', 'hash': '0x15e76e990531739fa066bf403f5a4aec1557a1eeb23b015b940557cb52e9216f', 'from': '0x0f2265f4c57f04bccd1b6400e95a7ee6edc20b26', 'to': '0x98be91c5dfe2149415c5b166da9eafb8f2a698ef', 'value': 621528.858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x839d259b95fa89a90000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:37:35.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x23c314ef2208ef29d816baf70e2f9154028410fd8a3c0f41adad0968b9a5f223:log:44', 'hash': '0x23c314ef2208ef29d816baf70e2f9154028410fd8a3c0f41adad0968b9a5f223', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b5d5ce5ffde09c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x2df81e8710e239e3e9c85556472bf9d2eb3561a57459ddb7c9761072cea2b7f8:log:48', 'hash': '0x2df81e8710e239e3e9c85556472bf9d2eb3561a57459ddb7c9761072cea2b7f8', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 79948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10edfd61315791b00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x82560cc3caad064561e853f85009c71464499212cf30581df9f72b0ae2fc8431:log:50', 'hash': '0x82560cc3caad064561e853f85009c71464499212cf30581df9f72b0ae2fc8431', 'from': '0x73ce0a40a7b1571b12aaa44ebe05a64e2fcaa8d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b23e2a936dec6000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0xf481d46fcd7d0d5e2619007c336f946576d43971d506045a4f8fd464556a1cf8:log:51', 'hash': '0xf481d46fcd7d0d5e2619007c336f946576d43971d506045a4f8fd464556a1cf8', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0bc939e9ef4713680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x8f0628ddc1acab07890806fb144581a427a4178dcfe213a192cfe8bb4e446273:log:52', 'hash': '0x8f0628ddc1acab07890806fb144581a427a4178dcfe213a192cfe8bb4e446273', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074a587a88a36c700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x73444c783d240d4956d5752c0d29776a3a9c5118822679c15190aaea0c9ad17b:log:53', 'hash': '0x73444c783d240d4956d5752c0d29776a3a9c5118822679c15190aaea0c9ad17b', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0563eb16b1a1405c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x60f51d5832334e5027f401239d92934e7705a442ae4fe6af4f8167d0c5cad824:log:54', 'hash': '0x60f51d5832334e5027f401239d92934e7705a442ae4fe6af4f8167d0c5cad824', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3790bb855137640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x9f7c95c3317ce61ac2ab782d3522efc316860fe7de457d4df86488f9a43b180a:log:55', 'hash': '0x9f7c95c3317ce61ac2ab782d3522efc316860fe7de457d4df86488f9a43b180a', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c76c0b66ba71ccc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0x1bc32273e28005e426a01a815246160a75e14ed7f6b32e91e48f3999426ade00:log:69', 'hash': '0x1bc32273e28005e426a01a815246160a75e14ed7f6b32e91e48f3999426ade00', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08775fd597955c940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0xc0e1c5f49f5219acf314b5ecfba6709b8003be3d52ccf8859d0f1da264d70714:log:73', 'hash': '0xc0e1c5f49f5219acf314b5ecfba6709b8003be3d52ccf8859d0f1da264d70714', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b76728825ab9dec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697a', 'uniqueId': '0xcf4763af05be98a1a62bf23bd9285208c00afe33702b65b681cb2ccf6d2c2d82:log:74', 'hash': '0xcf4763af05be98a1a62bf23bd9285208c00afe33702b65b681cb2ccf6d2c2d82', 'from': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92143.29863788222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x138319257b08d8d73496', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:38:53.000Z'}}, {'blockNum': '0x7a697c', 'uniqueId': '0x8cbf22e32b6edab96bd58f9af71f31e6977b1b0910a3201fb3315c4b5863f0c4:log:2', 'hash': '0x8cbf22e32b6edab96bd58f9af71f31e6977b1b0910a3201fb3315c4b5863f0c4', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:39:54.000Z'}}, {'blockNum': '0x7a6982', 'uniqueId': '0xda27779a8074a7c2763dec12f09e056a4f359197dfb2efb9757b1b8a68de5833:log:73', 'hash': '0xda27779a8074a7c2763dec12f09e056a4f359197dfb2efb9757b1b8a68de5833', 'from': '0xd1560b3984b7481cd9a8f40435a53c860187174d', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 11310.74413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0265281b635820ae2000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:41:28.000Z'}}, {'blockNum': '0x7a6984', 'uniqueId': '0x46aaa7950b8c5abb1742bbe1aa47ce7d2db5be137f22ebefb4e2fb8dde22492d:log:22', 'hash': '0x46aaa7950b8c5abb1742bbe1aa47ce7d2db5be137f22ebefb4e2fb8dde22492d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 7668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019faee07d31df500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:41:44.000Z'}}, {'blockNum': '0x7a6984', 'uniqueId': '0x313f7a2438a32a3c90497a869ad2948a526f2605669b5e51e109fbce126f322a:log:23', 'hash': '0x313f7a2438a32a3c90497a869ad2948a526f2605669b5e51e109fbce126f322a', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 38777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08361afa52a61a440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:41:44.000Z'}}, {'blockNum': '0x7a6984', 'uniqueId': '0xc6190e15b894d6a6cb42af256a6c4efbb36d827dccad30e2a1b63fc65e315add:log:24', 'hash': '0xc6190e15b894d6a6cb42af256a6c4efbb36d827dccad30e2a1b63fc65e315add', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 67264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e3e6384e40de3000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:41:44.000Z'}}, {'blockNum': '0x7a698b', 'uniqueId': '0x24186fba118ba3a10dbe73fb6f2e0656c68060a5d0dc821ff20657638f2c5f5b:log:9', 'hash': '0x24186fba118ba3a10dbe73fb6f2e0656c68060a5d0dc821ff20657638f2c5f5b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 21714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04991e48d24c20080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:06.000Z'}}, {'blockNum': '0x7a698b', 'uniqueId': '0xc387f30ea71e1a405440b81e64fd27cc199b95089b9fdca2663cc6a13e3ea81b:log:11', 'hash': '0xc387f30ea71e1a405440b81e64fd27cc199b95089b9fdca2663cc6a13e3ea81b', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1158.1524210230518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3ec897f2c415a7a38a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:06.000Z'}}, {'blockNum': '0x7a698d', 'uniqueId': '0x4c810127718903c553c15f2d64c98ca2f608a7087f8b8461a12c843208f1ee0f:log:16', 'hash': '0x4c810127718903c553c15f2d64c98ca2f608a7087f8b8461a12c843208f1ee0f', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0289c32a277348080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:48.000Z'}}, {'blockNum': '0x7a698d', 'uniqueId': '0xdcc5412a3ee8a7dc5821dbc7bd98232d81906d92fc3c70e7c635d5474b976348:log:37', 'hash': '0xdcc5412a3ee8a7dc5821dbc7bd98232d81906d92fc3c70e7c635d5474b976348', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 36003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x079fb9fe93ee44ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:48.000Z'}}, {'blockNum': '0x7a698d', 'uniqueId': '0x1a2b561c05063eb047e3c1eaf193fe1eb8068f43ef46ae066127c3e003e61ec3:log:38', 'hash': '0x1a2b561c05063eb047e3c1eaf193fe1eb8068f43ef46ae066127c3e003e61ec3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 17434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03b1195a46b590280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:43:48.000Z'}}, {'blockNum': '0x7a6993', 'uniqueId': '0xa9270d0d5531990cf83e074cfdd5831557087ef2d96b99e651e0319a9d6a3965:log:8', 'hash': '0xa9270d0d5531990cf83e074cfdd5831557087ef2d96b99e651e0319a9d6a3965', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 19758.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x042f21d24edc71d20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:44:55.000Z'}}, {'blockNum': '0x7a6994', 'uniqueId': '0x7bfe6ac2118f41891e767a1902ff7e334a1704acd7695621652d4aeffb82da81:log:5', 'hash': '0x7bfe6ac2118f41891e767a1902ff7e334a1704acd7695621652d4aeffb82da81', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:45:18.000Z'}}, {'blockNum': '0x7a6995', 'uniqueId': '0xb1e2bfcd4428f5c41cb8c6b87d8586faf25f01395e98f96f39fb562be9ef9a44:log:40', 'hash': '0xb1e2bfcd4428f5c41cb8c6b87d8586faf25f01395e98f96f39fb562be9ef9a44', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 29242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06313645653e74a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:45:50.000Z'}}, {'blockNum': '0x7a699c', 'uniqueId': '0xd70252bfbc796e16a5d43a58f2479fcb384081c69fe4573dca3b5dfcc3a52fc3:log:24', 'hash': '0xd70252bfbc796e16a5d43a58f2479fcb384081c69fe4573dca3b5dfcc3a52fc3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 259665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x36fc77c567de0ea40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:47:14.000Z'}}, {'blockNum': '0x7a699f', 'uniqueId': '0x935047a510d1652b6e22f807d6cca3bec75badb6e8203ee9019ceb196ea67f10:log:53', 'hash': '0x935047a510d1652b6e22f807d6cca3bec75badb6e8203ee9019ceb196ea67f10', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 26660, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05a53dd2ad442a100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:48:03.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0xcc1157d5a323309ad6e979785d6d473f5e708f0a33a99e8e6e16fe6bdb77d4b5:log:17', 'hash': '0xcc1157d5a323309ad6e979785d6d473f5e708f0a33a99e8e6e16fe6bdb77d4b5', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x079fb9fe93ee44ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0x7da4ee46a9c0b91a98da4e699e9e33102374fc1dbfe407663f38351a8a60dbff:log:19', 'hash': '0x7da4ee46a9c0b91a98da4e699e9e33102374fc1dbfe407663f38351a8a60dbff', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08361afa52a61a440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0xc9910cc98fc5d9c59e38e9f663314ca9008be0dcc48785923acb7ac5bbc54994:log:21', 'hash': '0xc9910cc98fc5d9c59e38e9f663314ca9008be0dcc48785923acb7ac5bbc54994', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04991e48d24c20080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0xc6db47dd4aba3e4ba104029ce93cea37646d11cdf72222d4d57b0484e1bbe604:log:23', 'hash': '0xc6db47dd4aba3e4ba104029ce93cea37646d11cdf72222d4d57b0484e1bbe604', 'from': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21652.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0495cc2194dde39a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a3', 'uniqueId': '0xebe10fa09789b7d647ca5a171186e1c8c9630abbd22539389e2dad9770208bea:log:24', 'hash': '0xebe10fa09789b7d647ca5a171186e1c8c9630abbd22539389e2dad9770208bea', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0289c32a277348080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:14.000Z'}}, {'blockNum': '0x7a69a5', 'uniqueId': '0x88168ca022ab446f8b47ca780816b6ec7a2cdebd11410b9fb11cb8d7bac14e69:log:27', 'hash': '0x88168ca022ab446f8b47ca780816b6ec7a2cdebd11410b9fb11cb8d7bac14e69', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:36.000Z'}}, {'blockNum': '0x7a69a5', 'uniqueId': '0x9d2078c5379ef1c74792bcca5f2ffb32abab05293b3da2d63e99806f6aba3550:log:28', 'hash': '0x9d2078c5379ef1c74792bcca5f2ffb32abab05293b3da2d63e99806f6aba3550', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11310.74413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0265281b635820ae2000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:36.000Z'}}, {'blockNum': '0x7a69a5', 'uniqueId': '0xf0e37337eabc531ab8e62ff0627097e39158ae7b6e4d2a5e3b4ae5a12e07fce2:log:70', 'hash': '0xf0e37337eabc531ab8e62ff0627097e39158ae7b6e4d2a5e3b4ae5a12e07fce2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 174314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x24e994b434d8a1680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:49:36.000Z'}}, {'blockNum': '0x7a69aa', 'uniqueId': '0x800f404ec29aaee8de47e4e4f0ab6abc64c1293cefe8f3ed05fe29bae897978e:log:16', 'hash': '0x800f404ec29aaee8de47e4e4f0ab6abc64c1293cefe8f3ed05fe29bae897978e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 3461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xbb9f060ad60af40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:50:46.000Z'}}, {'blockNum': '0x7a69b3', 'uniqueId': '0xac48e967c1fca77ed6d2c23e1b6552d01f1149efe2fbbe95d3e08f031079e88c:log:17', 'hash': '0xac48e967c1fca77ed6d2c23e1b6552d01f1149efe2fbbe95d3e08f031079e88c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 15278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033c38d795afd1f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:52:31.000Z'}}, {'blockNum': '0x7a69b4', 'uniqueId': '0x74b49d67251d4af24cee57681127669e402350260f5d1f1fbb64e44b490d8ef5:log:14', 'hash': '0x74b49d67251d4af24cee57681127669e402350260f5d1f1fbb64e44b490d8ef5', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 505.915915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b6cfe643c2fb7b000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:52:36.000Z'}}, {'blockNum': '0x7a69b6', 'uniqueId': '0x00d9477afb99ca0150e8bb8ed4babc9cf5fdfc69d5cd6873314f9639ad092c18:log:7', 'hash': '0x00d9477afb99ca0150e8bb8ed4babc9cf5fdfc69d5cd6873314f9639ad092c18', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 6624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01671677688b3b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:53:09.000Z'}}, {'blockNum': '0x7a69bc', 'uniqueId': '0x5085477a3c0db07b8461a1d28f5e02c6b3ef7a1241359da7ef2e4dbb5be9fb10:log:18', 'hash': '0x5085477a3c0db07b8461a1d28f5e02c6b3ef7a1241359da7ef2e4dbb5be9fb10', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 25273.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x055a19d23f23891e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:54:02.000Z'}}, {'blockNum': '0x7a69bc', 'uniqueId': '0x0f1e35b53229bd165cece7a2a8afb8ccef662676bea9f2d7635ff2ef57ec5080:log:21', 'hash': '0x0f1e35b53229bd165cece7a2a8afb8ccef662676bea9f2d7635ff2ef57ec5080', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 29409.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x063a505a05abf0be0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:54:02.000Z'}}, {'blockNum': '0x7a69cd', 'uniqueId': '0x3aefea4a742072afcc94a5977e3969e069d5817e62c88b125e2e2997c6a25bf0:log:64', 'hash': '0x3aefea4a742072afcc94a5977e3969e069d5817e62c88b125e2e2997c6a25bf0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 23014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04df97689a9a27d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:57:27.000Z'}}, {'blockNum': '0x7a69d2', 'uniqueId': '0x46b3ac024137e9edccc83faed1f9ebadc5e5e93cde42a1e5bf6dd1dd9ddca20f:log:9', 'hash': '0x46b3ac024137e9edccc83faed1f9ebadc5e5e93cde42a1e5bf6dd1dd9ddca20f', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26660, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05a53dd2ad442a100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:58:46.000Z'}}, {'blockNum': '0x7a69d2', 'uniqueId': '0xbbb242a5a2a25c98f3fefe8e317014b2266f401025e1abe25c14f29b30eaf91d:log:10', 'hash': '0xbbb242a5a2a25c98f3fefe8e317014b2266f401025e1abe25c14f29b30eaf91d', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033c38d795afd1f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:58:46.000Z'}}, {'blockNum': '0x7a69d2', 'uniqueId': '0xad09a64ef205a79f207e454ce1f279a85dc8de01b775845fdf666e8b7238996a:log:11', 'hash': '0xad09a64ef205a79f207e454ce1f279a85dc8de01b775845fdf666e8b7238996a', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 259665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x36fc77c567de0ea40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:58:46.000Z'}}, {'blockNum': '0x7a69d4', 'uniqueId': '0x8175471b19c06b842a709dd87b731fbf65a0868631c02462e177adf34d894117:log:100', 'hash': '0x8175471b19c06b842a709dd87b731fbf65a0868631c02462e177adf34d894117', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x8469b2a5e41250804cb8b7a097d42a3cce0c3f64', 'value': 505.915915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b6cfe643c2fb7b000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T18:59:26.000Z'}}, {'blockNum': '0x7a69d7', 'uniqueId': '0x6731e997ea75e6c655ebaba68b12fdad772c2382a3b9e4311b72d7ac4fd71f2b:log:19', 'hash': '0x6731e997ea75e6c655ebaba68b12fdad772c2382a3b9e4311b72d7ac4fd71f2b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f507586c23e63700e25780f95f7e7ee55003eeb', 'value': 10439.64412999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0235ef2a809ee9dc3c00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:00:49.000Z'}}, {'blockNum': '0x7a69d9', 'uniqueId': '0x19af7e28db0a07a9b51ec73064a5a808679a1ccf13136a607eea96b096685876:log:50', 'hash': '0x19af7e28db0a07a9b51ec73064a5a808679a1ccf13136a607eea96b096685876', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 18492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03ea740d592f5b700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:01:18.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0x8cc200b9e80453d7a70ecfb13c29a1dcd1d9b8f2376833524dbbd9746741d9c4:log:24', 'hash': '0x8cc200b9e80453d7a70ecfb13c29a1dcd1d9b8f2376833524dbbd9746741d9c4', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0xa558f9bc0658d4b489c4ce6ccb3a18ac0d0a73bd19355d06e0eb8192dd167590:log:25', 'hash': '0xa558f9bc0658d4b489c4ce6ccb3a18ac0d0a73bd19355d06e0eb8192dd167590', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0xaddc6b640f4d561e6588a24aa77acb85bcf23fde536c29f945b6dc8528a20106:log:26', 'hash': '0xaddc6b640f4d561e6588a24aa77acb85bcf23fde536c29f945b6dc8528a20106', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0x0503caaef436b77247eb761c993fc1272503fbbab3dd0253507f750e18aa00c9:log:27', 'hash': '0x0503caaef436b77247eb761c993fc1272503fbbab3dd0253507f750e18aa00c9', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0xe104336f4e5bf9d46765967429a65309f7c48d05b360fb9501e2516d48add02f:log:28', 'hash': '0xe104336f4e5bf9d46765967429a65309f7c48d05b360fb9501e2516d48add02f', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d82b88247134580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69dc', 'uniqueId': '0xaca04e4dbddbbecf0348858d7ebd50da15070d5c5c2e00891e2101c7c53c262f:log:58', 'hash': '0xaca04e4dbddbbecf0348858d7ebd50da15070d5c5c2e00891e2101c7c53c262f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 13051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02c37f0238d6a70c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:02:12.000Z'}}, {'blockNum': '0x7a69e8', 'uniqueId': '0x3680cff67f9cbbb17f2247b866d1c74f43b8a5542e4ff455647aa690742a6430:log:47', 'hash': '0x3680cff67f9cbbb17f2247b866d1c74f43b8a5542e4ff455647aa690742a6430', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x1c66ded10a7eca7772ce9dda33f326dd2c00083b', 'value': 576.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f45435bc54c540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:06:11.000Z'}}, {'blockNum': '0x7a69eb', 'uniqueId': '0xfb3cee5affb03aff08e353baafa006712e086641889b22b32e0bbf4da1de9b2b:log:6', 'hash': '0xfb3cee5affb03aff08e353baafa006712e086641889b22b32e0bbf4da1de9b2b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 43051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x091dcca49606bdcc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:07:07.000Z'}}, {'blockNum': '0x7a69eb', 'uniqueId': '0x7d17db2ae690d4cf38a49f82043f251cf43f5fc739a638eef0783b022c98e072:log:11', 'hash': '0x7d17db2ae690d4cf38a49f82043f251cf43f5fc739a638eef0783b022c98e072', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 35202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07744de2ebcf84c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:07:07.000Z'}}, {'blockNum': '0x7a69f6', 'uniqueId': '0x3076d0efcf244cd8eeba058f7bc31c7af0b9bfc2f074c8aca70837f8653aac30:log:9', 'hash': '0x3076d0efcf244cd8eeba058f7bc31c7af0b9bfc2f074c8aca70837f8653aac30', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf778dcf1cc68d5c2c4e6991c493f9a70e677aa05', 'value': 570.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ef2d43d3dfe820000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:09:34.000Z'}}, {'blockNum': '0x7a69f6', 'uniqueId': '0x9a948bf4cb18bb625a900411239fd430190639ad99c8be863e46ed2bd7ea90dd:log:12', 'hash': '0x9a948bf4cb18bb625a900411239fd430190639ad99c8be863e46ed2bd7ea90dd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 165.7455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08fc2e4e17bb81c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:09:34.000Z'}}, {'blockNum': '0x7a69fa', 'uniqueId': '0xcd967e75ce4669a5029b5a69de64f4a11d4f15798da7b7f81bcbb566aaadef36:log:69', 'hash': '0xcd967e75ce4669a5029b5a69de64f4a11d4f15798da7b7f81bcbb566aaadef36', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xc4bc751ea45b00a1818b50b1695d804a9829d3bb', 'value': 165.7455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08fc2e4e17bb81c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:11:11.000Z'}}, {'blockNum': '0x7a69fe', 'uniqueId': '0x1698a790bc2123cac1240cf86ed0222d57d16ddcb29e514f903a9e7d1b971c88:log:6', 'hash': '0x1698a790bc2123cac1240cf86ed0222d57d16ddcb29e514f903a9e7d1b971c88', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 121695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x19c519632441aa1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:11:40.000Z'}}, {'blockNum': '0x7a69ff', 'uniqueId': '0xf8e79e57d2033325b8fd530b31575d030e9467c2280c2e921686e121007da333:log:6', 'hash': '0xf8e79e57d2033325b8fd530b31575d030e9467c2280c2e921686e121007da333', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 239631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x32be6c2b908c6edc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:11:50.000Z'}}, {'blockNum': '0x7a6a1b', 'uniqueId': '0x310fee4319114033a497c4476b77463d0781fb338312ac0c04efbf5b4a82fc8a:log:12', 'hash': '0x310fee4319114033a497c4476b77463d0781fb338312ac0c04efbf5b4a82fc8a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x496d18d6207ed289f3004e049e89f2ddbe039421', 'value': 260.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e247a9a485a3b8000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:16:12.000Z'}}, {'blockNum': '0x7a6a1b', 'uniqueId': '0x017e4a80f3d2d3e397ee4aaad21f6814b61b543b4e2bfbfea68ea015850c5dbf:log:13', 'hash': '0x017e4a80f3d2d3e397ee4aaad21f6814b61b543b4e2bfbfea68ea015850c5dbf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 25812.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x057751f2eb64f8aa0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:16:12.000Z'}}, {'blockNum': '0x7a6a1b', 'uniqueId': '0xddca68a6c864d4223134ebe7f8a9d5002a0accdbfc92fd9127910e6bb795d244:log:15', 'hash': '0xddca68a6c864d4223134ebe7f8a9d5002a0accdbfc92fd9127910e6bb795d244', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 66202.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e04ddcc6800c4020000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:16:12.000Z'}}, {'blockNum': '0x7a6a1b', 'uniqueId': '0x361ce5e71ac7070cf63c5d21cf038c3a7ae442b0a587e26d6366d88996ca4168:log:35', 'hash': '0x361ce5e71ac7070cf63c5d21cf038c3a7ae442b0a587e26d6366d88996ca4168', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 7867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01aa788e82d8fe0c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:16:12.000Z'}}, {'blockNum': '0x7a6a23', 'uniqueId': '0x6f25afbb4247ed164942549cd8349cb22fc75188a02b7603b2fa5dcc270a2a0f:log:106', 'hash': '0x6f25afbb4247ed164942549cd8349cb22fc75188a02b7603b2fa5dcc270a2a0f', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0xf5954424c2b4489021c3666477c869b90ebef016', 'value': 567.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ec66b8e324d431170', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:19:01.000Z'}}, {'blockNum': '0x7a6a24', 'uniqueId': '0x7c3d155fcf398237740205893f3ab4d793dbafe568103e3150326a2bad1d215d:log:18', 'hash': '0x7c3d155fcf398237740205893f3ab4d793dbafe568103e3150326a2bad1d215d', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 174314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x24e994b434d8a1680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:19:25.000Z'}}, {'blockNum': '0x7a6a31', 'uniqueId': '0x8a236a8df3e16c6629c9ea12368e064d661a4ffdc78fc4160d9fa3d0e3b4bc05:log:96', 'hash': '0x8a236a8df3e16c6629c9ea12368e064d661a4ffdc78fc4160d9fa3d0e3b4bc05', 'from': '0x1c66ded10a7eca7772ce9dda33f326dd2c00083b', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 576.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f45435bc54c540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:22:14.000Z'}}, {'blockNum': '0x7a6a32', 'uniqueId': '0xdb03b332ef914dd666520bc517462a0460c8be6cbb9abfaae9690c4ea2ac25c1:log:16', 'hash': '0xdb03b332ef914dd666520bc517462a0460c8be6cbb9abfaae9690c4ea2ac25c1', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9646.977032287388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020af6b342fd91e32261', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:22:17.000Z'}}, {'blockNum': '0x7a6a33', 'uniqueId': '0x08bf6721dc72497d744420c0e9f082bf90a348ca1a81e54f6122fac6cbc7ec0c:log:77', 'hash': '0x08bf6721dc72497d744420c0e9f082bf90a348ca1a81e54f6122fac6cbc7ec0c', 'from': '0xf778dcf1cc68d5c2c4e6991c493f9a70e677aa05', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 570.899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ef2d43c5529dd0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:22:35.000Z'}}, {'blockNum': '0x7a6a42', 'uniqueId': '0xd0d7982751f3d032c052d0ad2c1075759ab0b3cb21e912178b1a4894071970d5:log:45', 'hash': '0xd0d7982751f3d032c052d0ad2c1075759ab0b3cb21e912178b1a4894071970d5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 181462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x266d1321951e7d980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:25:38.000Z'}}, {'blockNum': '0x7a6a6c', 'uniqueId': '0xd959fdf2b98b93f738a90b9c3808b6cc0376375e82ad4fc81cf21fc1cbc497f3:log:17', 'hash': '0xd959fdf2b98b93f738a90b9c3808b6cc0376375e82ad4fc81cf21fc1cbc497f3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 35061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076ca91e4adc52b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:34:21.000Z'}}, {'blockNum': '0x7a6a85', 'uniqueId': '0x155d01665baf24ceb7ee0e0950055b7d287bf96fb6d5b95c1e5c30c665a530b6:log:24', 'hash': '0x155d01665baf24ceb7ee0e0950055b7d287bf96fb6d5b95c1e5c30c665a530b6', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 181462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x266d1321951e7d980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:38:52.000Z'}}, {'blockNum': '0x7a6a91', 'uniqueId': '0xc0e0428d64e8ffbf9d786c9a068560c535f10391d55416742302e96f0fe6160e:log:5', 'hash': '0xc0e0428d64e8ffbf9d786c9a068560c535f10391d55416742302e96f0fe6160e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 37515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07f1b135a902eb4c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:41:40.000Z'}}, {'blockNum': '0x7a6ab6', 'uniqueId': '0x2666840ec6a567004296704d2d1ebbd9c80fa848046b4a22d05805ff8643e8ee:log:6', 'hash': '0x2666840ec6a567004296704d2d1ebbd9c80fa848046b4a22d05805ff8643e8ee', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 273288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x39def8dfda1eb9200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:48:26.000Z'}}, {'blockNum': '0x7a6ab6', 'uniqueId': '0x60900e66b0f875e764bc8df8d242130771ceea7a4805c6c9e1cbb153739056a8:log:8', 'hash': '0x60900e66b0f875e764bc8df8d242130771ceea7a4805c6c9e1cbb153739056a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2fb49c08688651e046ce7e263a416e476dc233be', 'value': 34745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x075b87bcc519b3440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:48:26.000Z'}}, {'blockNum': '0x7a6ab6', 'uniqueId': '0x2ccb135a950d5ad83e18d31330466dfb295566cf4c4c34facb3c2c0e1c70bcc4:log:11', 'hash': '0x2ccb135a950d5ad83e18d31330466dfb295566cf4c4c34facb3c2c0e1c70bcc4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 26400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x059725991ece28800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:48:26.000Z'}}, {'blockNum': '0x7a6abf', 'uniqueId': '0x3655e833c023c6aa6e94068d732079130bf83f7d0febbecb8428a2dd096dbaab:log:12', 'hash': '0x3655e833c023c6aa6e94068d732079130bf83f7d0febbecb8428a2dd096dbaab', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 36121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07a61f92cabd6cc40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:50:31.000Z'}}, {'blockNum': '0x7a6ac6', 'uniqueId': '0xbb9690f1366da65b52bb63df7ed837c456dd1b15ce858ccad12771da99ff7222:log:5', 'hash': '0xbb9690f1366da65b52bb63df7ed837c456dd1b15ce858ccad12771da99ff7222', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 60501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ccfc40a47f6c4340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:52:57.000Z'}}, {'blockNum': '0x7a6acb', 'uniqueId': '0x9bc560b621f6c2b071a6240d2e3629c23259056f924a26540ee85cb1e61043f3:log:2', 'hash': '0x9bc560b621f6c2b071a6240d2e3629c23259056f924a26540ee85cb1e61043f3', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 10236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x022ae509375902700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:54:45.000Z'}}, {'blockNum': '0x7a6acd', 'uniqueId': '0x0f08c0a183a0c080430430a303dcbb2f1cd8d1a465a9f182eafa59358a2903fe:log:7', 'hash': '0x0f08c0a183a0c080430430a303dcbb2f1cd8d1a465a9f182eafa59358a2903fe', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 27176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05c136c2ef618fa00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:55:02.000Z'}}, {'blockNum': '0x7a6acd', 'uniqueId': '0x773b187aec5fcedb74f5ca2749ec077198eff698ab30defe058526decc000cd5:log:8', 'hash': '0x773b187aec5fcedb74f5ca2749ec077198eff698ab30defe058526decc000cd5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x37f839310852a9631e6f74d25db6a5d13d882bdd', 'value': 10905.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x024f35c41c10bc9e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:55:02.000Z'}}, {'blockNum': '0x7a6ad6', 'uniqueId': '0x370237147ed53cfc18ff402d5f082743de238f45598ab27f56f3737d6fc842c7:log:30', 'hash': '0x370237147ed53cfc18ff402d5f082743de238f45598ab27f56f3737d6fc842c7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 36240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07ac9307b8403c400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:56:59.000Z'}}, {'blockNum': '0x7a6ad9', 'uniqueId': '0x80ab5707cc9b95d6b8ed23cdb555bdb9c922e486e143270cda844721aaf30e27:log:6', 'hash': '0x80ab5707cc9b95d6b8ed23cdb555bdb9c922e486e143270cda844721aaf30e27', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 24606.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0535f156390e67920000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T19:58:10.000Z'}}, {'blockNum': '0x7a6ae4', 'uniqueId': '0x6bc1c761888c514eeaa7e038b137259c41f312c9ffe6cfa518fe475812a58f25:log:10', 'hash': '0x6bc1c761888c514eeaa7e038b137259c41f312c9ffe6cfa518fe475812a58f25', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf815a50176c9337a4e7e735cd6e80ecb5d94a930', 'value': 9611.1696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020905c5b50a81340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:00:13.000Z'}}, {'blockNum': '0x7a6ae4', 'uniqueId': '0x1055f29258f8fc970e807b0603ec0ecb8ff312c0cc2ed9206e0f629c094ba6c7:log:14', 'hash': '0x1055f29258f8fc970e807b0603ec0ecb8ff312c0cc2ed9206e0f629c094ba6c7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 33774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0726e467c9adcaf80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:00:13.000Z'}}, {'blockNum': '0x7a6ae4', 'uniqueId': '0x379103d094ba08b228249237165e6b2eafcfd2a48c9d56d59387de9c7c7f58f0:log:15', 'hash': '0x379103d094ba08b228249237165e6b2eafcfd2a48c9d56d59387de9c7c7f58f0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 291163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3da7fa54dc4fa48c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:00:13.000Z'}}, {'blockNum': '0x7a6ae7', 'uniqueId': '0x61f3be0fbc4549fbd240f23ca91a3c5fceeb83826d3720671aebf63e17ff9308:log:108', 'hash': '0x61f3be0fbc4549fbd240f23ca91a3c5fceeb83826d3720671aebf63e17ff9308', 'from': '0x496d18d6207ed289f3004e049e89f2ddbe039421', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 260.882999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e247a995f85960000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:01:19.000Z'}}, {'blockNum': '0x7a6aed', 'uniqueId': '0xa24e2442189bc16f9fa261cc66f940e423dc5a1662e55c4478599c7fcaef66ff:log:11', 'hash': '0xa24e2442189bc16f9fa261cc66f940e423dc5a1662e55c4478599c7fcaef66ff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 38107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0811c8dc2876028c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:02:48.000Z'}}, {'blockNum': '0x7a6b0b', 'uniqueId': '0x696a6cec11598c142ca762061e1cdb1247802af3163a3ab2b36e288c9dfee8cf:log:4', 'hash': '0x696a6cec11598c142ca762061e1cdb1247802af3163a3ab2b36e288c9dfee8cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 188205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x27da9d0deb2c88940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:07:56.000Z'}}, {'blockNum': '0x7a6b15', 'uniqueId': '0xb870a23b9db74242512eb17d7d6683e36a27b1db0d04eab5c2fe31c68b7ba9ca:log:5', 'hash': '0xb870a23b9db74242512eb17d7d6683e36a27b1db0d04eab5c2fe31c68b7ba9ca', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 61554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d08d959c8ee4a880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:10:01.000Z'}}, {'blockNum': '0x7a6b1b', 'uniqueId': '0x39ed4971e662d1d74a6da723a900f5d2c1682bd08df65c2ae268db33ab40e836:log:52', 'hash': '0x39ed4971e662d1d74a6da723a900f5d2c1682bd08df65c2ae268db33ab40e836', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 179031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x25e94a3aa11beefc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:11:48.000Z'}}, {'blockNum': '0x7a6b27', 'uniqueId': '0x2cc5bf6da141a092184c0c0848e783f8e22ff58077b1e42d8c2adb7ee6749541:log:6', 'hash': '0x2cc5bf6da141a092184c0c0848e783f8e22ff58077b1e42d8c2adb7ee6749541', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 81088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x112bca0ec95cfb000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:15:18.000Z'}}, {'blockNum': '0x7a6b2a', 'uniqueId': '0x8601838a607beeaa49a7b0dbec14695ae1e00f952a4cfc96402b56551e950440:log:9', 'hash': '0x8601838a607beeaa49a7b0dbec14695ae1e00f952a4cfc96402b56551e950440', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 22597.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04c908dc7131c7ce0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:15:35.000Z'}}, {'blockNum': '0x7a6b2a', 'uniqueId': '0x950c0a4da7b68764c8e330d5388f4d6dbabd6c6b1cf864d328b6cf812d12fa1b:log:10', 'hash': '0x950c0a4da7b68764c8e330d5388f4d6dbabd6c6b1cf864d328b6cf812d12fa1b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 38894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x083c72add2c19af80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:15:35.000Z'}}, {'blockNum': '0x7a6b32', 'uniqueId': '0x2d9c6d8e98ae22bbb4eaad84885297a91e27ddb30105a0152b032c1468bf5ca1:log:22', 'hash': '0x2d9c6d8e98ae22bbb4eaad84885297a91e27ddb30105a0152b032c1468bf5ca1', 'from': '0xee9ac8783cc52ec29ef34d7633bba0f93906f664', 'to': '0x3e72a6bfd2ed779998a01b7028d83c30de55673f', 'value': 336.36281823419955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x123bf8c90eb2c00b40', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:17:36.000Z'}}, {'blockNum': '0x7a6b39', 'uniqueId': '0xfa50cc9229fe6e43bf43d43cb6ffd1c78051c23a03f36e49f8a4c7be86b176c6:log:1', 'hash': '0xfa50cc9229fe6e43bf43d43cb6ffd1c78051c23a03f36e49f8a4c7be86b176c6', 'from': '0xf815a50176c9337a4e7e735cd6e80ecb5d94a930', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9611.1696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020905c5b50a81340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:19:04.000Z'}}, {'blockNum': '0x7a6b39', 'uniqueId': '0x924623b9be7ff931cd8cb0ff10a2df827150f7d9187cd293f93a773d2511890f:log:2', 'hash': '0x924623b9be7ff931cd8cb0ff10a2df827150f7d9187cd293f93a773d2511890f', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 179031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x25e94a3aa11beefc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:19:04.000Z'}}, {'blockNum': '0x7a6b50', 'uniqueId': '0xa569e1c815ca8b2f2ffdbf456d4b03d2478de5426eb1e97912b52641ae01a5c0:log:8', 'hash': '0xa569e1c815ca8b2f2ffdbf456d4b03d2478de5426eb1e97912b52641ae01a5c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 37072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d9ad59802041400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:24:37.000Z'}}, {'blockNum': '0x7a6b69', 'uniqueId': '0xfc2fe77041b39f73664adf5e6be451afb0c60966570ccf414a035c9d584d387e:log:9', 'hash': '0xfc2fe77041b39f73664adf5e6be451afb0c60966570ccf414a035c9d584d387e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 42879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x091479a9d552469c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:31:18.000Z'}}, {'blockNum': '0x7a6b6a', 'uniqueId': '0xca3639d18267e3a9b306344f61c1c497224664d67ab0a19ac25e46c529d2661b:log:1', 'hash': '0xca3639d18267e3a9b306344f61c1c497224664d67ab0a19ac25e46c529d2661b', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x074d38005bd514240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:31:31.000Z'}}, {'blockNum': '0x7a6b6a', 'uniqueId': '0x63855e7ee9926952066f3e5f1fbf6870a7ee337799fb5f3ffb02430cb465ed80:log:2', 'hash': '0x63855e7ee9926952066f3e5f1fbf6870a7ee337799fb5f3ffb02430cb465ed80', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ef66e9bd492c62c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:31:31.000Z'}}, {'blockNum': '0x7a6b78', 'uniqueId': '0x7d90a4fa9f190ffa2104428f8846a739b1b2a44ebe241b4801ce473c5812c12f:log:4', 'hash': '0x7d90a4fa9f190ffa2104428f8846a739b1b2a44ebe241b4801ce473c5812c12f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 33104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x070292499f7db3400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:33:45.000Z'}}, {'blockNum': '0x7a6b7f', 'uniqueId': '0x483372ba9ac6bb6145c8a2bbd45884945ad7f7281d5df4d32dcb397fadeb5c5d:log:11', 'hash': '0x483372ba9ac6bb6145c8a2bbd45884945ad7f7281d5df4d32dcb397fadeb5c5d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 61696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d108bff209524000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:35:46.000Z'}}, {'blockNum': '0x7a6b7f', 'uniqueId': '0x647b029cb56b4e8c6169760d35e85dbfc5b1bdf281f4eb4d1d7d23e1e30d20d9:log:13', 'hash': '0x647b029cb56b4e8c6169760d35e85dbfc5b1bdf281f4eb4d1d7d23e1e30d20d9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 207092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2bda7ad52b8f2b500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:35:46.000Z'}}, {'blockNum': '0x7a6b90', 'uniqueId': '0x7e6e94d6c4d786475ca6428975bb18b72c8be3b992c64b5464325646ebb1ec52:log:4', 'hash': '0x7e6e94d6c4d786475ca6428975bb18b72c8be3b992c64b5464325646ebb1ec52', 'from': '0x6ae3e410106faebd48ae6b62c06610e886f47004', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 310.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10d1dc791e7c730000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:40:26.000Z'}}, {'blockNum': '0x7a6b93', 'uniqueId': '0x141e6120c81f3545b255071292421ad928d15aeb9644283b08e4030b46a3d863:log:9', 'hash': '0x141e6120c81f3545b255071292421ad928d15aeb9644283b08e4030b46a3d863', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1291505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01117ca057bd3ee5240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T20:41:03.000Z'}}, {'blockNum': '0x7a6c04', 'uniqueId': '0xe6aad8a4cd7af572f81a5335f77cf49e2c0ccf5c479852096ed20a9fbd32412d:log:31', 'hash': '0xe6aad8a4cd7af572f81a5335f77cf49e2c0ccf5c479852096ed20a9fbd32412d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x9d6b8c356d9c81a375d33a5279a9076fcaeaf2a1', 'value': 495.83584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ae11ac56ddb6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:03:45.000Z'}}, {'blockNum': '0x7a6c3d', 'uniqueId': '0xf01fe46c8996e27cf86e961c99af203929d9c019cfd7fa741df4e7f56f99bcaa:log:5', 'hash': '0xf01fe46c8996e27cf86e961c99af203929d9c019cfd7fa741df4e7f56f99bcaa', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 42810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0910bc1896e628a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:18:39.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x1625f10b8c99f047eaf4ff397709174dc6d56c8ad587196ec45c3c42cae1c281:log:9', 'hash': '0x1625f10b8c99f047eaf4ff397709174dc6d56c8ad587196ec45c3c42cae1c281', 'from': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02acf1d954e6a48c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x738ac8d0c1bc17186c9a945e46794e3c13bcbb2b78ddb356e3d684c2c6931fe7:log:10', 'hash': '0x738ac8d0c1bc17186c9a945e46794e3c13bcbb2b78ddb356e3d684c2c6931fe7', 'from': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 6133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014c7878fdf92eb40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x5289f7666716122648017e4b37d20cba28ab18d4664eb695a2bc1b9ac349be20:log:11', 'hash': '0x5289f7666716122648017e4b37d20cba28ab18d4664eb695a2bc1b9ac349be20', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 66598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e1a48e994ac68d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x2ac996d6e5878a8d6fa992cff04084329d58c0d093a593667a8d8ce2ebdcc868:log:12', 'hash': '0x2ac996d6e5878a8d6fa992cff04084329d58c0d093a593667a8d8ce2ebdcc868', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 72311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f4ffcb6d3e6f77c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x0e6fd37c8b0c02ca622cd5d1b84253cba4c883c53999c5bf5afbdca59925e854:log:13', 'hash': '0x0e6fd37c8b0c02ca622cd5d1b84253cba4c883c53999c5bf5afbdca59925e854', 'from': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 30825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x068706cf262688040000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0x9c9c47bd4c9456d777229ab4ffffd84191ebfb53cd8ada73fe704ea36e08775d:log:14', 'hash': '0x9c9c47bd4c9456d777229ab4ffffd84191ebfb53cd8ada73fe704ea36e08775d', 'from': '0xe00c0e7401a7a14a994e851b8c8be51bc33facd9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 8312.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01c29fd8bfb4e7aa8000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6c86', 'uniqueId': '0xbfcdb9ba7c03027d617f6d105a2dfa7e7646c8ffd4392a7fe8bbc5661cdd6863:log:15', 'hash': '0xbfcdb9ba7c03027d617f6d105a2dfa7e7646c8ffd4392a7fe8bbc5661cdd6863', 'from': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 109286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x172467eb19f4cbd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T21:36:34.000Z'}}, {'blockNum': '0x7a6d1b', 'uniqueId': '0x9ad24a2f837957d9d4bc90efa2c2cfbf4e298c6cf4df9f117ff0719781405213:log:26', 'hash': '0x9ad24a2f837957d9d4bc90efa2c2cfbf4e298c6cf4df9f117ff0719781405213', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 3369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xb6a2446245e3040000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:10:36.000Z'}}, {'blockNum': '0x7a6d21', 'uniqueId': '0x57b1167e8c8abcfd61ab5310d46e1febeceb94e755b613733e5677a183141a4e:log:5', 'hash': '0x57b1167e8c8abcfd61ab5310d46e1febeceb94e755b613733e5677a183141a4e', 'from': '0x3e72a6bfd2ed779998a01b7028d83c30de55673f', 'to': '0x13ae26e3b4816293abe71b09f2bf7a07a454c597', 'value': 336.36281823419955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x123bf8c90eb2c00b40', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:11:45.000Z'}}, {'blockNum': '0x7a6d46', 'uniqueId': '0x0254d021ca4110e69ac9dd3421c10e676687495f172468b279b187e9a636a05e:log:24', 'hash': '0x0254d021ca4110e69ac9dd3421c10e676687495f172468b279b187e9a636a05e', 'from': '0x13ae26e3b4816293abe71b09f2bf7a07a454c597', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 336.36281823419955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x123bf8c90eb2c00b40', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:19:36.000Z'}}, {'blockNum': '0x7a6d98', 'uniqueId': '0x97172657d171057a9bf7b179ed766ce5f2d393203f5d45ab978bffed5c0f216c:log:3', 'hash': '0x97172657d171057a9bf7b179ed766ce5f2d393203f5d45ab978bffed5c0f216c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2fb49c08688651e046ce7e263a416e476dc233be', 'value': 33134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0704329f088b50f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:37:46.000Z'}}, {'blockNum': '0x7a6de6', 'uniqueId': '0x906a10117f9e4fef438910542a57c9934811a1df2b2c261d1eac70d35659965b:log:0', 'hash': '0x906a10117f9e4fef438910542a57c9934811a1df2b2c261d1eac70d35659965b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 30179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x066401c21cce21ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T22:57:51.000Z'}}, {'blockNum': '0x7a6e03', 'uniqueId': '0x776f88c2f2ae1654cdd2c76b5d34ee0223ddeaa320677f7f2a94edcec771d913:log:0', 'hash': '0x776f88c2f2ae1654cdd2c76b5d34ee0223ddeaa320677f7f2a94edcec771d913', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 100519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1549255a4783523c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:04:23.000Z'}}, {'blockNum': '0x7a6e37', 'uniqueId': '0xdfa529af1fd5529d7e916abe3ef409bbb02c9e437fb47f5fe203690ee537eb25:log:3', 'hash': '0xdfa529af1fd5529d7e916abe3ef409bbb02c9e437fb47f5fe203690ee537eb25', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 30145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x066229e9d8f1e6640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:17:02.000Z'}}, {'blockNum': '0x7a6e37', 'uniqueId': '0x700bb670f5abeb7a7fa05da034393724814f650d587658aa9da9f1e5b14ae326:log:7', 'hash': '0x700bb670f5abeb7a7fa05da034393724814f650d587658aa9da9f1e5b14ae326', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 42700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x090ac58a15b43bb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:17:02.000Z'}}, {'blockNum': '0x7a6e43', 'uniqueId': '0x9ea7f39aaed79989c22cac4520d7c37b6915ea56ac802770471ae9873c2327b2:log:6', 'hash': '0x9ea7f39aaed79989c22cac4520d7c37b6915ea56ac802770471ae9873c2327b2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 36301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07afe193410f1f140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:19:18.000Z'}}, {'blockNum': '0x7a6e60', 'uniqueId': '0x9aacbc5625cacec76200df92dfde7934886f7ebe85feaf6d9d38c70b50d5259e:log:6', 'hash': '0x9aacbc5625cacec76200df92dfde7934886f7ebe85feaf6d9d38c70b50d5259e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xe431b362d6018e4d6fd3326eea39bd03dc226cdd', 'value': 6530.42896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x016203e84b6caba20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:24:00.000Z'}}, {'blockNum': '0x7a6e93', 'uniqueId': '0xa9454590be7cdd84b89f45b38d2de8beb0bea8c57ea3bfba452b719d68022e73:log:6', 'hash': '0xa9454590be7cdd84b89f45b38d2de8beb0bea8c57ea3bfba452b719d68022e73', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x82e54f77b0c48fd1ae99f206c55f5dad21aa3560', 'value': 4685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfdf96f95ce61140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:34:40.000Z'}}, {'blockNum': '0x7a6eb9', 'uniqueId': '0xb57bfdcc0580beb1de36823cb227263eb21c6fc0777bc9ac151321c49693096f:log:31', 'hash': '0xb57bfdcc0580beb1de36823cb227263eb21c6fc0777bc9ac151321c49693096f', 'from': '0xe431b362d6018e4d6fd3326eea39bd03dc226cdd', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 6530.428958999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x016203e84a83d6edadc0', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:43:04.000Z'}}, {'blockNum': '0x7a6ebb', 'uniqueId': '0x540307ca9762765740bf601331198b5bcb3365ac9852cfc39eb59d4efed9f35a:log:8', 'hash': '0x540307ca9762765740bf601331198b5bcb3365ac9852cfc39eb59d4efed9f35a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 11175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025dcc475c4ffe3c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:43:40.000Z'}}, {'blockNum': '0x7a6ee5', 'uniqueId': '0x3519344ec16b4e39e3623ea098ea71c78b3284a3c24569f7c565a6cfc5e90f61:log:1', 'hash': '0x3519344ec16b4e39e3623ea098ea71c78b3284a3c24569f7c565a6cfc5e90f61', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x263593777783fcf381568aa5bb30fe0318f327b3', 'value': 6819.048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0171a94d1b22a1e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-24T23:51:44.000Z'}}, {'blockNum': '0x7a7039', 'uniqueId': '0xb4ee6bd390c0f4601e919ebb48afdac8d5284c8c1769cca8d6388fb461374028:log:22', 'hash': '0xb4ee6bd390c0f4601e919ebb48afdac8d5284c8c1769cca8d6388fb461374028', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 22720.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04cfb10dae9279c60000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:07:00.000Z'}}, {'blockNum': '0x7a70a1', 'uniqueId': '0x93704e69910ac8aa295d3356ff175ab8cf9f1d20651171a058b67535746059b7:log:33', 'hash': '0x93704e69910ac8aa295d3356ff175ab8cf9f1d20651171a058b67535746059b7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 149010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f8dd929472f1d080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:28:22.000Z'}}, {'blockNum': '0x7a70ba', 'uniqueId': '0xbdc6085a67689cf4d1cd422dc6bddb83a2dadafd730759ea2a1426c351d26066:log:10', 'hash': '0xbdc6085a67689cf4d1cd422dc6bddb83a2dadafd730759ea2a1426c351d26066', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 190149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2843ff794f6ba7f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:35:41.000Z'}}, {'blockNum': '0x7a70ba', 'uniqueId': '0x05ba8ead5e568322d16b1425d8df6f160b951ae57219276aeeff2cf13de554f5:log:13', 'hash': '0x05ba8ead5e568322d16b1425d8df6f160b951ae57219276aeeff2cf13de554f5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 31573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06af9364fb13a0340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:35:41.000Z'}}, {'blockNum': '0x7a711c', 'uniqueId': '0x54135880cba1d77149e1d01233e5b9c3012ced55788abcc1f659a03cfa558ebe:log:21', 'hash': '0x54135880cba1d77149e1d01233e5b9c3012ced55788abcc1f659a03cfa558ebe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 30356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x066d9a206f04ddd00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T01:56:46.000Z'}}, {'blockNum': '0x7a7146', 'uniqueId': '0xb9b890b92f0573354baf929e86a509d779cdd37c4f304b2a77980b8d7cad46cd:log:1', 'hash': '0xb9b890b92f0573354baf929e86a509d779cdd37c4f304b2a77980b8d7cad46cd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb047c7338e434ca86664e3f3ff488fc6d8df27b1', 'value': 108773.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1708a253e23ceb3a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:05:35.000Z'}}, {'blockNum': '0x7a7159', 'uniqueId': '0xaf2113d388be963db141c9b0143508f18444f7194902f4019eb520336935692b:log:14', 'hash': '0xaf2113d388be963db141c9b0143508f18444f7194902f4019eb520336935692b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 58229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c5499b4cd892cb40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:09:21.000Z'}}, {'blockNum': '0x7a7159', 'uniqueId': '0x1d98010917efb6f62ac379b1eedd413f2adfe158370b80ca12b5068e0aed5df6:log:15', 'hash': '0x1d98010917efb6f62ac379b1eedd413f2adfe158370b80ca12b5068e0aed5df6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2e5ca6450d046bc7ab4b76df6a8cca60c3f34354', 'value': 28027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05ef58c24697010c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:09:21.000Z'}}, {'blockNum': '0x7a715e', 'uniqueId': '0x684089bed2e2f11da684b556fef53cab2eccc4e802a49661dd6df440079fab27:log:6', 'hash': '0x684089bed2e2f11da684b556fef53cab2eccc4e802a49661dd6df440079fab27', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1298940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01130fadb1f0ed6a700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:11:24.000Z'}}, {'blockNum': '0x7a715e', 'uniqueId': '0x423593a488167af4ae5a25ac50921a96e5ac20f089cd71d06f141dba54140aa4:log:7', 'hash': '0x423593a488167af4ae5a25ac50921a96e5ac20f089cd71d06f141dba54140aa4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 1283355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010fc2d05f41cbdb8c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:11:24.000Z'}}, {'blockNum': '0x7a717a', 'uniqueId': '0xde51a85348f0f6cb087001156f1b756e04197eb082044cb26fb3fbdc5267797c:log:20', 'hash': '0xde51a85348f0f6cb087001156f1b756e04197eb082044cb26fb3fbdc5267797c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 35598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0789c57d89b673780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:17:18.000Z'}}, {'blockNum': '0x7a7189', 'uniqueId': '0x07667619902c8bca33c4cc5df19bfa93b71c9c4a5861dd7fcacad6b6bddb0c00:log:9', 'hash': '0x07667619902c8bca33c4cc5df19bfa93b71c9c4a5861dd7fcacad6b6bddb0c00', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 45783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09b1e6c25b451cfc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:20:03.000Z'}}, {'blockNum': '0x7a7207', 'uniqueId': '0x87869e67dc9e7a374b58918155025f2acba971b768431c898de61da6f050b8cd:log:92', 'hash': '0x87869e67dc9e7a374b58918155025f2acba971b768431c898de61da6f050b8cd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 4259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe6e17f8ed9d4ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T02:50:27.000Z'}}, {'blockNum': '0x7a722e', 'uniqueId': '0x10d9dc2bfb8fe1e70fa51fc79326c80861ea1d0273b22762be14f89b7346cd9d:log:11', 'hash': '0x10d9dc2bfb8fe1e70fa51fc79326c80861ea1d0273b22762be14f89b7346cd9d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 31171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0699c88614f6c52c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:01:09.000Z'}}, {'blockNum': '0x7a7230', 'uniqueId': '0x6141aeaeba7ee34b7814c6b6e2c2b016014ddc13bb4e59079a537e74178cc4ec:log:61', 'hash': '0x6141aeaeba7ee34b7814c6b6e2c2b016014ddc13bb4e59079a537e74178cc4ec', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x38bfc2017bdcabf3aa65adfc324527675acf6c4c', 'value': 22446.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04c0ce3681771f820000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:01:30.000Z'}}, {'blockNum': '0x7a7241', 'uniqueId': '0x8e41f088bfb448cdb31f94598937fd44f22461a4a580723c8b6a7f4a6968b3dc:log:92', 'hash': '0x8e41f088bfb448cdb31f94598937fd44f22461a4a580723c8b6a7f4a6968b3dc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 107347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x16bb4ae34737f16c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:04:30.000Z'}}, {'blockNum': '0x7a726b', 'uniqueId': '0x21ff155ecc9126ff9ffa9ef89154eec068060f1903b0994a5edae07edd06d608:log:21', 'hash': '0x21ff155ecc9126ff9ffa9ef89154eec068060f1903b0994a5edae07edd06d608', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4b3a565a163162d7df39049dbed5ddf743c59d1e', 'value': 1092.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3b3a97e943584a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:15:26.000Z'}}, {'blockNum': '0x7a7292', 'uniqueId': '0xfadd4c29cb365668a159665be875f2e61b5600157c54adee14a3dc8c575a3b6d:log:62', 'hash': '0xfadd4c29cb365668a159665be875f2e61b5600157c54adee14a3dc8c575a3b6d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 129854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b7f66420c0596380000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:25:13.000Z'}}, {'blockNum': '0x7a72a0', 'uniqueId': '0x5091add1fe4462bf39aaf2e5ab542b5038ff5458a476bafcfd7f4e147117cb17:log:97', 'hash': '0x5091add1fe4462bf39aaf2e5ab542b5038ff5458a476bafcfd7f4e147117cb17', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2832.717412969518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x998fd9e6b737a0912c', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:28:46.000Z'}}, {'blockNum': '0x7a72a0', 'uniqueId': '0x5091add1fe4462bf39aaf2e5ab542b5038ff5458a476bafcfd7f4e147117cb17:log:99', 'hash': '0x5091add1fe4462bf39aaf2e5ab542b5038ff5458a476bafcfd7f4e147117cb17', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0a6f3315446ece38ba8811d0457246cf6eacecee', 'value': 2832.717412969518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x998fd9e6b737a0912c', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:28:46.000Z'}}, {'blockNum': '0x7a72a1', 'uniqueId': '0x3022ac3e07d7e6b22e7b6c59cdfc3221f9f7a6c88a4c36e92ebc20cbd64990ec:log:10', 'hash': '0x3022ac3e07d7e6b22e7b6c59cdfc3221f9f7a6c88a4c36e92ebc20cbd64990ec', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 50948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ac9e58881ed59900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:28:57.000Z'}}, {'blockNum': '0x7a72a1', 'uniqueId': '0x532b710b7ca01e88da2c35eeca87893b4e6b59288f50e37ee5774b8bdf9e7127:log:11', 'hash': '0x532b710b7ca01e88da2c35eeca87893b4e6b59288f50e37ee5774b8bdf9e7127', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2fb49c08688651e046ce7e263a416e476dc233be', 'value': 33881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x072cb15426c4c1c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:28:57.000Z'}}, {'blockNum': '0x7a72a4', 'uniqueId': '0x13727d83348e089ec8943e087a9ac9801904a76ab2eddee3cae35bc7fc5d624a:log:14', 'hash': '0x13727d83348e089ec8943e087a9ac9801904a76ab2eddee3cae35bc7fc5d624a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 46426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09d4c22d40828d280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:30:03.000Z'}}, {'blockNum': '0x7a72fa', 'uniqueId': '0x347b5f556671b54bc52a03ddc307ee5e3edac5b33a15ab3bbadaffe8ab95d039:log:30', 'hash': '0x347b5f556671b54bc52a03ddc307ee5e3edac5b33a15ab3bbadaffe8ab95d039', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 30118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0660b33693ff3ed80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T03:53:08.000Z'}}, {'blockNum': '0x7a7320', 'uniqueId': '0x1b5bae1183dd9a853d89af672c128e540dec7ed2cbdabbc60b79b21eb1705c53:log:8', 'hash': '0x1b5bae1183dd9a853d89af672c128e540dec7ed2cbdabbc60b79b21eb1705c53', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 32623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06e87f1257f0305c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:00:49.000Z'}}, {'blockNum': '0x7a732b', 'uniqueId': '0x9fdd76900ddb195f7a19637c624572d2aa13965cfedb175e325276effb674aa6:log:67', 'hash': '0x9fdd76900ddb195f7a19637c624572d2aa13965cfedb175e325276effb674aa6', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0xf4343d247267345d15d777af633c2c477ae6a43a', 'value': 1988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6bc50acb1fe4900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:03:05.000Z'}}, {'blockNum': '0x7a7346', 'uniqueId': '0x1e2d235b34b40550e0bc0b228da11a24b7d2b175493d9469af105a239e54b78a:log:29', 'hash': '0x1e2d235b34b40550e0bc0b228da11a24b7d2b175493d9469af105a239e54b78a', 'from': '0xf4343d247267345d15d777af633c2c477ae6a43a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6bc50acb1fe4900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:09:08.000Z'}}, {'blockNum': '0x7a738f', 'uniqueId': '0x5dba5e6d5f7fe0c09c0f9271bc54054dfe761c4437b884aa5b187275ff2cf352:log:9', 'hash': '0x5dba5e6d5f7fe0c09c0f9271bc54054dfe761c4437b884aa5b187275ff2cf352', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:24:08.000Z'}}, {'blockNum': '0x7a739e', 'uniqueId': '0x0706492c0147e97b562eedd4b945ce78b1a222b846f36077405f5e8cbf9ca7a5:log:19', 'hash': '0x0706492c0147e97b562eedd4b945ce78b1a222b846f36077405f5e8cbf9ca7a5', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 58423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c5f1dff41ae067c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-25T04:27:54.000Z'}}]}}
Number of returned transfers:  318
Answer is complete
 
symbol             CDT
group              CCB
date        2019-08-09
hour             14:59
exchange       binance
Name: 372, dtype: object
HERE
{'osmosis': 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt'}
No contract for ethereum specified
 Symbol: CDT, Contract: 0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc
Datetime timestamps:  2019-08-09 14:59:00 2019-08-09 02:59:00 2019-08-10 02:59:00
Unix timestamps:  1565312340.0 1565398740.0
Hex Block Numbers:  0x7ed9da 0x7ef2eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            FUEL
group              CCB
date        2020-03-27
hour             21:00
exchange       binance
Name: 373, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: FUEL, Contract: 0xea38eaa3c86c8f9b751533ba2e562deb9acded40
Datetime timestamps:  2020-03-27 21:00:00 2020-03-27 09:00:00 2020-03-28 09:00:00
Unix timestamps:  1585296000.0 1585382400.0
Hex Block Numbers:  0x94ceb9 0x94e824
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x94d118', 'uniqueId': '0xf8ca3b29e1f56735d75c593b64fbe0db0c4b961f8acb5323abf02a25bb07ed14:log:145', 'hash': '0xf8ca3b29e1f56735d75c593b64fbe0db0c4b961f8acb5323abf02a25bb07ed14', 'from': '0x3e01a44056a77939d181877cf10a43ea2ec36140', 'to': '0x2f847267b8af45670fe21a1acce9968814cd8e78', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T10:15:47.000Z'}}, {'blockNum': '0x94d18f', 'uniqueId': '0x8b27e682f487c74a280f43dd15a8ca4040749f367afed430211716eb26dc1eea:log:32', 'hash': '0x8b27e682f487c74a280f43dd15a8ca4040749f367afed430211716eb26dc1eea', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf076a62c375886733bea9a126942948b2e89845b', 'value': 2645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x8f62bfae307c340000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T10:42:53.000Z'}}, {'blockNum': '0x94d51b', 'uniqueId': '0x2548f9e39cd32a7586fd684f0fc442e5f73fdcc403eeea2c71393fcdf25024e3:log:10', 'hash': '0x2548f9e39cd32a7586fd684f0fc442e5f73fdcc403eeea2c71393fcdf25024e3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x547bde071bfae814251407c81f1350f2a51174a1', 'value': 2414.231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x82e02f7f5b20158000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T14:11:42.000Z'}}, {'blockNum': '0x94d926', 'uniqueId': '0x1c4d547ebd64f708209871fcf26aa25bd13262060fc84caf04e40cd517dd3e3e:log:0', 'hash': '0x1c4d547ebd64f708209871fcf26aa25bd13262060fc84caf04e40cd517dd3e3e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2b7c9ce7a411df6761b7cea57671d2065e5be957', 'value': 85767.794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x12297b3ef1c07f650000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T17:51:27.000Z'}}, {'blockNum': '0x94dc80', 'uniqueId': '0x304a83d7931adf4af921da144eb4cf8275fd7483d886e8b4570496ae973c9a63:log:4', 'hash': '0x304a83d7931adf4af921da144eb4cf8275fd7483d886e8b4570496ae973c9a63', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 54312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x0b80426952b0f7a00000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:00:41.000Z'}}, {'blockNum': '0x94dca7', 'uniqueId': '0x5a51bde78ac88ba830de28311b4c2e2cd0dc01420f668386c9d55cc8f61d044b:log:4', 'hash': '0x5a51bde78ac88ba830de28311b4c2e2cd0dc01420f668386c9d55cc8f61d044b', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x0b80426952b0f7a00000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:12:06.000Z'}}, {'blockNum': '0x94dd84', 'uniqueId': '0x38089541663640c7a0307411147e03068c685182209578cc5bb176d93e906231:log:10', 'hash': '0x38089541663640c7a0307411147e03068c685182209578cc5bb176d93e906231', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 164602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x22db17a0f53a3fa80000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:58:25.000Z'}}, {'blockNum': '0x94dd85', 'uniqueId': '0x5a84becf2c9d4da86a8f0cdd37092d11869faeea68b3928cc732bd3f194b004b:log:37', 'hash': '0x5a84becf2c9d4da86a8f0cdd37092d11869faeea68b3928cc732bd3f194b004b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 147321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x1f324993dfe3ba440000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:58:27.000Z'}}, {'blockNum': '0x94dd85', 'uniqueId': '0x1602c70713f2a72a6aeff7d5de9dbe6e619b1fb0e8b900e76fa07f53c124386d:log:38', 'hash': '0x1602c70713f2a72a6aeff7d5de9dbe6e619b1fb0e8b900e76fa07f53c124386d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 55833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x0bd2b686d41680c40000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T21:58:27.000Z'}}, {'blockNum': '0x94dd98', 'uniqueId': '0x7b68efd4bb508770fbe31142001607478c289023b2e5d47b50d77b6099ea4b9b:log:11', 'hash': '0x7b68efd4bb508770fbe31142001607478c289023b2e5d47b50d77b6099ea4b9b', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x0bd2b686d41680c40000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:02:08.000Z'}}, {'blockNum': '0x94dd98', 'uniqueId': '0x9d5a585e9d7823c3f9c9ac39b0a1ae873b23646afcbc2d5a14ac0360bd0124c5:log:13', 'hash': '0x9d5a585e9d7823c3f9c9ac39b0a1ae873b23646afcbc2d5a14ac0360bd0124c5', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 147321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x1f324993dfe3ba440000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:02:08.000Z'}}, {'blockNum': '0x94dd99', 'uniqueId': '0xd9bd5e5ffbc6ebc7552fcbba1395f3393d996e29023461bb92073a11b5501a7d:log:9', 'hash': '0xd9bd5e5ffbc6ebc7552fcbba1395f3393d996e29023461bb92073a11b5501a7d', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 164602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x22db17a0f53a3fa80000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:02:14.000Z'}}, {'blockNum': '0x94dd99', 'uniqueId': '0x93b37766cfb765dac2c2b48b5efb19c748ee7627d31f826abed0ee79436a04bc:log:302', 'hash': '0x93b37766cfb765dac2c2b48b5efb19c748ee7627d31f826abed0ee79436a04bc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 300270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x3f95ab58555b6ef80000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:02:14.000Z'}}, {'blockNum': '0x94ddc9', 'uniqueId': '0xd090f618f64bb05d259929d0146287d41e311321916ba2d82a432f87598f1f3b:log:14', 'hash': '0xd090f618f64bb05d259929d0146287d41e311321916ba2d82a432f87598f1f3b', 'from': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 300270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x3f95ab58555b6ef80000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-27T22:12:00.000Z'}}, {'blockNum': '0x94e565', 'uniqueId': '0x06a94e467b707651a4f80e161f281d2c77bf574d0f69888a5313943d9d9d9cbc:log:39', 'hash': '0x06a94e467b707651a4f80e161f281d2c77bf574d0f69888a5313943d9d9d9cbc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0e96a32fc8a91d01fa157fee31948c034f737c21', 'value': 338277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x47a2086d1fa40e740000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T05:21:56.000Z'}}, {'blockNum': '0x94e56c', 'uniqueId': '0x5aa925ebe0853cfb4738b797c95ec8b4be2ebaa59116a6fa7030d918692a0b6e:log:49', 'hash': '0x5aa925ebe0853cfb4738b797c95ec8b4be2ebaa59116a6fa7030d918692a0b6e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7fa4b25c3d29e8b9eed8da649fa5c13fb6bcc392', 'value': 475759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'FUEL', 'category': 'erc20', 'rawContract': {'value': '0x64bef2731cc95c5c0000', 'address': '0xea38eaa3c86c8f9b751533ba2e562deb9acded40', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T05:23:43.000Z'}}]}}
Number of returned transfers:  16
Answer is complete
 
symbol             LRC
group              CPS
date        2019-07-25
hour             20:00
exchange       binance
Name: 404, dtype: object
HERE
 Symbol: LRC, Contract: 0xbbbbca6a901c926f240b89eacb641d8aec7aeafd
Datetime timestamps:  2019-07-25 20:00:00 2019-07-25 08:00:00 2019-07-26 08:00:00
Unix timestamps:  1564034400.0 1564120800.0
Hex Block Numbers:  0x7d65dd 0x7d7eab
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7d6635', 'uniqueId': '0x1c4c45feb31c71b184f6ad8917d221d423d5d98e57aeb6d5c810fa34e926dee2:log:66', 'hash': '0x1c4c45feb31c71b184f6ad8917d221d423d5d98e57aeb6d5c810fa34e926dee2', 'from': '0x60f1a94254f9643d5a79ae66fa6b15147f484ac4', 'to': '0x73cd1f4ee6967fd2d16a7843c23c7892104466d5', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01ed4fde7a2236b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:18:06.000Z'}}, {'blockNum': '0x7d6699', 'uniqueId': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54:log:67', 'hash': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 997.2666847964633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x360fdafe13b8a51f4f', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:41:36.000Z'}}, {'blockNum': '0x7d6699', 'uniqueId': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54:log:69', 'hash': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 997.2666398816245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x360fdad53a2ba20000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:41:36.000Z'}}, {'blockNum': '0x7d6699', 'uniqueId': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54:log:70', 'hash': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 997.2666398816245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x360fdad53a2ba20000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:41:36.000Z'}}, {'blockNum': '0x7d67ac', 'uniqueId': '0xc5ec0ada345a5186fc877ba9e71fd0f9c4fde608600d232c113e90c7310e9aeb:log:20', 'hash': '0xc5ec0ada345a5186fc877ba9e71fd0f9c4fde608600d232c113e90c7310e9aeb', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x4a39f5e0a4499a78aba80bf35ba0d7556fdc98e9', 'value': 4991.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010e915b7a8b9c458000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T07:40:35.000Z'}}, {'blockNum': '0x7d67db', 'uniqueId': '0x21d8a53c3c5c800d17ffba9779a2caba207ce97961758a1831f87464a598a9b2:log:84', 'hash': '0x21d8a53c3c5c800d17ffba9779a2caba207ce97961758a1831f87464a598a9b2', 'from': '0x150dd89722249fced8f4a58d616030bd4bd3eee4', 'to': '0x88594f3109019e58f4cd71450061cc47edd26b66', 'value': 908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3139080535b6b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T07:52:00.000Z'}}, {'blockNum': '0x7d67e8', 'uniqueId': '0x3256de13610527f03decbf7fd256abc87a8ecb4cf18be3f248524d0652c2f262:log:2', 'hash': '0x3256de13610527f03decbf7fd256abc87a8ecb4cf18be3f248524d0652c2f262', 'from': '0x4a39f5e0a4499a78aba80bf35ba0d7556fdc98e9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9981.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021d1384bc646b7d8000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T07:54:01.000Z'}}, {'blockNum': '0x7d6871', 'uniqueId': '0x154812422ff33beed88af993b303604ffa600098f974ef222b14a450ec92420e:log:89', 'hash': '0x154812422ff33beed88af993b303604ffa600098f974ef222b14a450ec92420e', 'from': '0x7141965edc908d61feebe07367a871acb7b700bb', 'to': '0x2ce211114634b554680de3a245dd86027086b5f1', 'value': 3578.831664794245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xc2024435aae4d8635f', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T08:25:10.000Z'}}, {'blockNum': '0x7d691e', 'uniqueId': '0x826982a5e5546065bddcfba7bcd0a2e75495db91a064b21425ac43cffb85c5b3:log:9', 'hash': '0x826982a5e5546065bddcfba7bcd0a2e75495db91a064b21425ac43cffb85c5b3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9909ea65f0b6a87d7d026c8968329c8ad3200535', 'value': 4781.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010334d9bef2a1e78000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:05:10.000Z'}}, {'blockNum': '0x7d694b', 'uniqueId': '0xbdca8a467ad3e9c4cfe10f9644cd74f35cb427389d5985b7b20b7aeb697ad03d:log:28', 'hash': '0xbdca8a467ad3e9c4cfe10f9644cd74f35cb427389d5985b7b20b7aeb697ad03d', 'from': '0x9909ea65f0b6a87d7d026c8968329c8ad3200535', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4781.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010334d9bef2a1e78000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:14:04.000Z'}}, {'blockNum': '0x7d6973', 'uniqueId': '0xcbe4fdfc4575edb46d83db61777f246cdcf9a486435924820efa7d1088b0981b:log:34', 'hash': '0xcbe4fdfc4575edb46d83db61777f246cdcf9a486435924820efa7d1088b0981b', 'from': '0xf1589e8afb0a7628f50023b384e29bacb97fc647', 'to': '0xba2518ea34be9c265a53297d849e2e7bca917f74', 'value': 50.1602999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02b81d2eff968fd800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:25:31.000Z'}}, {'blockNum': '0x7d69be', 'uniqueId': '0x0be67d9c4365663b9b33537b7057a6279e4b31fc902220e8ddefd8ae37ce2c58:log:26', 'hash': '0x0be67d9c4365663b9b33537b7057a6279e4b31fc902220e8ddefd8ae37ce2c58', 'from': '0xba2518ea34be9c265a53297d849e2e7bca917f74', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50.1602999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02b81d2eff968fd800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:43:52.000Z'}}, {'blockNum': '0x7d6ac4', 'uniqueId': '0xc41187277fea64cdbb7dffa02d6304fa472e7b493ce6b1fdb7e0ab1cf07de4d6:log:9', 'hash': '0xc41187277fea64cdbb7dffa02d6304fa472e7b493ce6b1fdb7e0ab1cf07de4d6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x923bcc38cb1114d1dba11061c2ab0117e6501f05', 'value': 3999993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x034f080e1634ccf0440000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T10:42:36.000Z'}}, {'blockNum': '0x7d6b78', 'uniqueId': '0x88bd5d7c2dcc6f9610bc269919799b7d13e7fc247ead2f2cb9caf93e4c753af2:log:18', 'hash': '0x88bd5d7c2dcc6f9610bc269919799b7d13e7fc247ead2f2cb9caf93e4c753af2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025d5d41a6b2c31c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T11:26:09.000Z'}}, {'blockNum': '0x7d6c83', 'uniqueId': '0xf21c0285f6960a1f923564c68fa607951b8fa8f33faecc2fa092f771bc12d1cf:log:32', 'hash': '0xf21c0285f6960a1f923564c68fa607951b8fa8f33faecc2fa092f771bc12d1cf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0242503d86837b300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T12:25:34.000Z'}}, {'blockNum': '0x7d6cd6', 'uniqueId': '0x42588c4bb939802a7750101d962bf56b211b52046098b6bd5bee435c43420302:log:95', 'hash': '0x42588c4bb939802a7750101d962bf56b211b52046098b6bd5bee435c43420302', 'from': '0x87c574fb2df0eaa2daf5fc4a8a16dd3ce39011b1', 'to': '0xed8526bf1add770801e8d44a110421a9adb93501', 'value': 1059.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x397582ea3d55560000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T12:45:53.000Z'}}, {'blockNum': '0x7d6d4c', 'uniqueId': '0x75d9c50783096bcce6fe1fa294ada1c7577fdc79ebaba3754a959ec64faafed0:log:7', 'hash': '0x75d9c50783096bcce6fe1fa294ada1c7577fdc79ebaba3754a959ec64faafed0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 24795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054023bfaa75b28c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T13:14:46.000Z'}}, {'blockNum': '0x7d6d7b', 'uniqueId': '0xac69e2d0cb9204edd84950a1ece8062a75bc599fb8707b3f899f35206aa88244:log:23', 'hash': '0xac69e2d0cb9204edd84950a1ece8062a75bc599fb8707b3f899f35206aa88244', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054023bfaa75b28c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T13:25:37.000Z'}}, {'blockNum': '0x7d6e19', 'uniqueId': '0x60c1f6fbda9cb072c1e01c704cdb41853021087f8a24d5519407828af60ce874:log:9', 'hash': '0x60c1f6fbda9cb072c1e01c704cdb41853021087f8a24d5519407828af60ce874', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01e5b8fa8fe2ac0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T14:03:04.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0x973c4050af92255e3f58bd541cb7e5770ff7017154ed6f08f26883af300d125c:log:34', 'hash': '0x973c4050af92255e3f58bd541cb7e5770ff7017154ed6f08f26883af300d125c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02442815ca5fb6780000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a:log:40', 'hash': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2778.4368057045344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x969e8e71ffc9cbbb91', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a:log:42', 'hash': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2778.4368057045344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x969e8e71ffc9cbbb91', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a:log:43', 'hash': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2778.4368057045344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x969e8e71ffc9cbbb91', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d7007', 'uniqueId': '0x5cbd250190ff1f6c761e9714eba2780d8e5777ff66a0cb00808456ca0a61fd74:log:84', 'hash': '0x5cbd250190ff1f6c761e9714eba2780d8e5777ff66a0cb00808456ca0a61fd74', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06e3d594f795f4c40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:54:40.000Z'}}, {'blockNum': '0x7d7008', 'uniqueId': '0xbae0e79281489a3c11be26fac8f2f076941c46ef7cc46247f5678a114124597a:log:18', 'hash': '0xbae0e79281489a3c11be26fac8f2f076941c46ef7cc46247f5678a114124597a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025b934a198a2f380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:54:58.000Z'}}, {'blockNum': '0x7d7030', 'uniqueId': '0x308cbf035a02945a57203898c63e2a86d2e63330485606f8f9d7cc561d0bd92b:log:104', 'hash': '0x308cbf035a02945a57203898c63e2a86d2e63330485606f8f9d7cc561d0bd92b', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025b934a198a2f380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T16:04:47.000Z'}}, {'blockNum': '0x7d70f9', 'uniqueId': '0x773d1c3531d97a1f6e14bf5be16da149dc0d9eef4af87b3b225164863721d439:log:7', 'hash': '0x773d1c3531d97a1f6e14bf5be16da149dc0d9eef4af87b3b225164863721d439', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02722e53b42dd91c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T16:45:37.000Z'}}, {'blockNum': '0x7d711d', 'uniqueId': '0x2f847f59c9688949959a5a8accb719328920b26db3b2e9f1d64e202080f0a793:log:186', 'hash': '0x2f847f59c9688949959a5a8accb719328920b26db3b2e9f1d64e202080f0a793', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02722e53b42dd91c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T16:55:27.000Z'}}, {'blockNum': '0x7d744c', 'uniqueId': '0x70a804bb2fbbc3bd00aff74d8df24c56976b626dc89edea94e853722927275a7:log:0', 'hash': '0x70a804bb2fbbc3bd00aff74d8df24c56976b626dc89edea94e853722927275a7', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 9447.260976469257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x020023154c5d6c0d0fde', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:10.000Z'}}, {'blockNum': '0x7d744d', 'uniqueId': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357:log:0', 'hash': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7544.629608096764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0198fec4cf673634812e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:23.000Z'}}, {'blockNum': '0x7d744d', 'uniqueId': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357:log:2', 'hash': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 7544.629608096764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0198fec4cf673634812e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:23.000Z'}}, {'blockNum': '0x7d744d', 'uniqueId': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357:log:7', 'hash': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 7544.629608096765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0198fec4cf6736400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:23.000Z'}}, {'blockNum': '0x7d744f', 'uniqueId': '0x3f57c9d3f14250be041da13eccc561714b7bf73241fa82d6ba72db2d0e98d667:log:0', 'hash': '0x3f57c9d3f14250be041da13eccc561714b7bf73241fa82d6ba72db2d0e98d667', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 11723.074549263078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x027b82574f0b38440bf1', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:34.000Z'}}, {'blockNum': '0x7d744f', 'uniqueId': '0xfe1fbc981aa7afbd1f51d7988c4e722842cebe637617080de5f10d6d5daddd04:log:8', 'hash': '0xfe1fbc981aa7afbd1f51d7988c4e722842cebe637617080de5f10d6d5daddd04', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 33354.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x071023143f2849c68000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:34.000Z'}}, {'blockNum': '0x7d744f', 'uniqueId': '0x722a805d7255c25c9a6c50227bc8ee58b7c5f0b6ff734e483077a46272f7ee5c:log:9', 'hash': '0x722a805d7255c25c9a6c50227bc8ee58b7c5f0b6ff734e483077a46272f7ee5c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'value': 101535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1580392f6083a71c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:34.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xcd157ad617e74fb3256af21c1e74cc05f02b966e49aa0363d03427a0e6b057d6:log:19', 'hash': '0xcd157ad617e74fb3256af21c1e74cc05f02b966e49aa0363d03427a0e6b057d6', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1435.602642885778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4dd2fd258e4ac500f0', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553:log:21', 'hash': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5009.709154201566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f93ae3d2b6ef3f30d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553:log:23', 'hash': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 5009.709154201566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f93ae3d2b6ef3f30d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553:log:28', 'hash': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 5009.709154201566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f93ae3d2b6ef3f30d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0x4b300611fa96b3ff046a5448ac7bdba55dd08f8e1b545b8049caf4e1141d12f1:log:48', 'hash': '0x4b300611fa96b3ff046a5448ac7bdba55dd08f8e1b545b8049caf4e1141d12f1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a4b46cda3b412c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0x80158221eb0b1ebab510cc1b6fef061ca3b2486e8b13e36df1f5b49926dc7c5b:log:49', 'hash': '0x80158221eb0b1ebab510cc1b6fef061ca3b2486e8b13e36df1f5b49926dc7c5b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 6391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x015a74f11f07e17c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7452', 'uniqueId': '0x2f80917e6e561622cfa4460a33972a68902c11143d93e8995e3ab11a8b1bc1b0:log:8', 'hash': '0x2f80917e6e561622cfa4460a33972a68902c11143d93e8995e3ab11a8b1bc1b0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 5441.0537232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0126f5c9fd4ff0968000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:23.000Z'}}, {'blockNum': '0x7d7452', 'uniqueId': '0x87d547000dc9fcf0595f813a3c6834c85d4cc51971768a207e479f65f87e4947:log:9', 'hash': '0x87d547000dc9fcf0595f813a3c6834c85d4cc51971768a207e479f65f87e4947', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 74975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe06724116ce01c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:23.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0xbeb9169849a73c4b3375f012e7afb86e6577d47afd99f12cbe9a58ee216d448f:log:11', 'hash': '0xbeb9169849a73c4b3375f012e7afb86e6577d47afd99f12cbe9a58ee216d448f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 15746.10312049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03559913f1a7e44ba400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0xbd7a9d0a9b4694d82dde512da7e36346df9ddb8b541ec58a423ea4bd07877fb1:log:12', 'hash': '0xbd7a9d0a9b4694d82dde512da7e36346df9ddb8b541ec58a423ea4bd07877fb1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'value': 24985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054a708743cbeec40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0x55c137e969e5a84e59f2fea12fb752dffb5ec65dd79686df325143390d5217fa:log:13', 'hash': '0x55c137e969e5a84e59f2fea12fb752dffb5ec65dd79686df325143390d5217fa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1fb681808983840000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0x76c60fb1497c55553b189f1fce99cf1dfee449b2cee611a1e704b70aafeba17b:log:14', 'hash': '0x76c60fb1497c55553b189f1fce99cf1dfee449b2cee611a1e704b70aafeba17b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x012957aa873979940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0x4f72cb4116998e9004f60d3d0de2654eef9548466644cfe80415ad3ab69dacf8:log:60', 'hash': '0x4f72cb4116998e9004f60d3d0de2654eef9548466644cfe80415ad3ab69dacf8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9e5bbd1a9aabbc4e3f8be937077417c04697ce1f', 'value': 19990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x043ba8fa7070da980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d745a', 'uniqueId': '0xf5f9cd65f8721f342956b57e79c5ad954928e2b4cc885a7c977ff23f039c397e:log:6', 'hash': '0xf5f9cd65f8721f342956b57e79c5ad954928e2b4cc885a7c977ff23f039c397e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 16501.8783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x037e9190c326d2edc000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:02:17.000Z'}}, {'blockNum': '0x7d745c', 'uniqueId': '0xd0ab1e73b5fdca82921582bbe61a8285386996e75e9e2d1c5e59dc3aa8ab20a6:log:1', 'hash': '0xd0ab1e73b5fdca82921582bbe61a8285386996e75e9e2d1c5e59dc3aa8ab20a6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 10295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x022e17d352c0967c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:02:42.000Z'}}, {'blockNum': '0x7d745e', 'uniqueId': '0xdd9121126c596ec80bbe75b09d4b76826091d8d68c5cb436babae1d9c25c2329:log:7', 'hash': '0xdd9121126c596ec80bbe75b09d4b76826091d8d68c5cb436babae1d9c25c2329', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1976.6419998095503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6b276b1220edfb3f2d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:03:03.000Z'}}, {'blockNum': '0x7d7463', 'uniqueId': '0xcd21dbb11b9c57cc9ee1fbae00cb3ca1d910d672baac5d770525fab56560b582:log:21', 'hash': '0xcd21dbb11b9c57cc9ee1fbae00cb3ca1d910d672baac5d770525fab56560b582', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'value': 17503.62940706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03b4dfa79f8494884800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:04:12.000Z'}}, {'blockNum': '0x7d7465', 'uniqueId': '0x7d0a01b96263647bb8ac21ba8ea0180b130fbd614b4bfbe41b3954ed9908cb73:log:21', 'hash': '0x7d0a01b96263647bb8ac21ba8ea0180b130fbd614b4bfbe41b3954ed9908cb73', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 42114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08eb0127de7710c80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:05:09.000Z'}}, {'blockNum': '0x7d7465', 'uniqueId': '0xdf9c655177400fe820ef5cec1d402417485146c1f58f4dd838bfd0e9999bbd86:log:179', 'hash': '0xdf9c655177400fe820ef5cec1d402417485146c1f58f4dd838bfd0e9999bbd86', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5441.0537232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0126f5c9fd4ff0968000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:05:09.000Z'}}, {'blockNum': '0x7d7466', 'uniqueId': '0xd0124bb3c9383274f1716dfa6719d8c447571465db32b5e6cc75fd076891ef20:log:177', 'hash': '0xd0124bb3c9383274f1716dfa6719d8c447571465db32b5e6cc75fd076891ef20', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33354.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x071023143f2849c68000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:05:25.000Z'}}, {'blockNum': '0x7d746c', 'uniqueId': '0x90893e0fbc466e6bf10e08d936edf074e81799468e98b44db831543aa1f9e323:log:137', 'hash': '0x90893e0fbc466e6bf10e08d936edf074e81799468e98b44db831543aa1f9e323', 'from': '0x2bbfe5650e9876fb313d6b32352c6dc5966a7b68', 'to': '0x98bb8b25e7b4643ef61a989280ac402a94fc6acb', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:06:53.000Z'}}, {'blockNum': '0x7d746d', 'uniqueId': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791:log:15', 'hash': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2895.2995504517385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x9cf45a512e7007c968', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:06.000Z'}}, {'blockNum': '0x7d746d', 'uniqueId': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791:log:17', 'hash': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2895.2995504517385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x9cf45a512e7007c968', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:06.000Z'}}, {'blockNum': '0x7d746d', 'uniqueId': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791:log:18', 'hash': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2895.2995504517385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x9cf45a512e7007c968', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:06.000Z'}}, {'blockNum': '0x7d7470', 'uniqueId': '0xeaefc6af170751a3a3edd828da2d8b83f883454c9833ee3f64ac7d6ef585a4ef:log:24', 'hash': '0xeaefc6af170751a3a3edd828da2d8b83f883454c9833ee3f64ac7d6ef585a4ef', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'value': 37628.2753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07f7d5385e34011a4000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:35.000Z'}}, {'blockNum': '0x7d7471', 'uniqueId': '0x43acb08a97dde1b7c0854c3110c1e5d19935ce9dd912b282147eba536e19b6a1:log:29', 'hash': '0x43acb08a97dde1b7c0854c3110c1e5d19935ce9dd912b282147eba536e19b6a1', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 3424.1150442477874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xb99f245b011c5521fb', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:08:03.000Z'}}, {'blockNum': '0x7d7478', 'uniqueId': '0xa6349bde8a02067ad90b380ddb41cec10e80a257c7dde898697cb02c69fc93f3:log:6', 'hash': '0xa6349bde8a02067ad90b380ddb41cec10e80a257c7dde898697cb02c69fc93f3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 4982.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010e18b0a21d0a400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:10:44.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3:log:1', 'hash': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 4803.581851728919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01046716f3ae17536c42', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3:log:3', 'hash': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4803.581851728919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01046716f3ae17536c42', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3:log:4', 'hash': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4803.581851728919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01046716f3ae17536c42', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xf2f49c4474306b395367243b5eaa793b79504b4b54279a51f2759eb4cc9e2c88:log:11', 'hash': '0xf2f49c4474306b395367243b5eaa793b79504b4b54279a51f2759eb4cc9e2c88', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd1dbd6b9e3fabd2958bd8ffb0543c9515c45cbdb', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7484', 'uniqueId': '0xa6ca6153a0539ab0e97a08c38dd36b02c90f94a424176c1e169a24fa5c005326:log:25', 'hash': '0xa6ca6153a0539ab0e97a08c38dd36b02c90f94a424176c1e169a24fa5c005326', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2421.225382932166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x83414089932ee95911', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:46.000Z'}}, {'blockNum': '0x7d7484', 'uniqueId': '0xab987897ab3a2efc43557a4575c0faf5f4a82e9d9933db4db2c5a21cb004fd1f:log:40', 'hash': '0xab987897ab3a2efc43557a4575c0faf5f4a82e9d9933db4db2c5a21cb004fd1f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:46.000Z'}}, {'blockNum': '0x7d7487', 'uniqueId': '0x09ddda7705cbf570750c1e42e43e502eb7eb48d08b1b609e583fa9e9eb4f6a8b:log:0', 'hash': '0x09ddda7705cbf570750c1e42e43e502eb7eb48d08b1b609e583fa9e9eb4f6a8b', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 4016.326530612245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xd9b9ba342e8fe5e0a7', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:13:36.000Z'}}, {'blockNum': '0x7d7487', 'uniqueId': '0x20ea2f79909ab60183e099228f051934ea5842c23f8695b8b28c6b3624202bfa:log:4', 'hash': '0x20ea2f79909ab60183e099228f051934ea5842c23f8695b8b28c6b3624202bfa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 13929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f317b4d4fec0040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:13:36.000Z'}}, {'blockNum': '0x7d748a', 'uniqueId': '0xcb1724d93a93d5d27b4e4a4eaf0cfdccb0bec5c43c7e723cbff89255880ea80a:log:4', 'hash': '0xcb1724d93a93d5d27b4e4a4eaf0cfdccb0bec5c43c7e723cbff89255880ea80a', 'from': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'to': '0x8d3b2ade0160c8df0246003f3f152057b73b9894', 'value': 113038.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x17efcdeeeecbdc7c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:14:03.000Z'}}, {'blockNum': '0x7d748a', 'uniqueId': '0x6f89233897a4723c2ba3dd1d7e247f95c229ffd64ef27caea2cea9cfc62e85db:log:176', 'hash': '0x6f89233897a4723c2ba3dd1d7e247f95c229ffd64ef27caea2cea9cfc62e85db', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16501.8783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x037e9190c326d2edc000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:14:03.000Z'}}, {'blockNum': '0x7d748b', 'uniqueId': '0xc3022f73aea98a117ea130a6aec9bdaab04835876d89a6a0c47aecb5b9687fe9:log:180', 'hash': '0xc3022f73aea98a117ea130a6aec9bdaab04835876d89a6a0c47aecb5b9687fe9', 'from': '0x268737253715badc5016befa6113ecc68370b780', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15746.10312049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03559913f1a7e44ba400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:14:30.000Z'}}, {'blockNum': '0x7d748d', 'uniqueId': '0xd9d79f8413d41ff5334093713f47dc556e60d6784a4fab62c37f11630602a100:log:123', 'hash': '0xd9d79f8413d41ff5334093713f47dc556e60d6784a4fab62c37f11630602a100', 'from': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17503.62940706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03b4dfa79f8494884800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:15:04.000Z'}}, {'blockNum': '0x7d748e', 'uniqueId': '0x22593ae1e1b0c01512c0ff34074e528f25bf8b5017a18c564a7e3dd1c8fab2bf:log:36', 'hash': '0x22593ae1e1b0c01512c0ff34074e528f25bf8b5017a18c564a7e3dd1c8fab2bf', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08eb0127de7710c80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:15:32.000Z'}}, {'blockNum': '0x7d748f', 'uniqueId': '0xb1146e5534393c449822af5b989982646f736bbf008cabc2df709b55be178ba7:log:172', 'hash': '0xb1146e5534393c449822af5b989982646f736bbf008cabc2df709b55be178ba7', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x012957aa873979940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:15:35.000Z'}}, {'blockNum': '0x7d74b4', 'uniqueId': '0xdb105883d26a85b236f25b11cb8107a54f2cfc8a2f020cd028c9ae019313f392:log:8', 'hash': '0xdb105883d26a85b236f25b11cb8107a54f2cfc8a2f020cd028c9ae019313f392', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'value': 24965.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0549608613a4511c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:48.000Z'}}, {'blockNum': '0x7d74b4', 'uniqueId': '0xdf9fd911a5da0f9c612d80a00e044f81bc76441adc38bcff1787504f7da8e77b:log:12', 'hash': '0xdf9fd911a5da0f9c612d80a00e044f81bc76441adc38bcff1787504f7da8e77b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023b6dc2e36370940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:48.000Z'}}, {'blockNum': '0x7d74b5', 'uniqueId': '0xa08a33a443b658d46b46c1dd2fdb301fa091253f7393678ca62249b055fb6e74:log:22', 'hash': '0xa08a33a443b658d46b46c1dd2fdb301fa091253f7393678ca62249b055fb6e74', 'from': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37628.2753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07f7d5385e34011a4000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:52.000Z'}}, {'blockNum': '0x7d74b5', 'uniqueId': '0x2332d123923ad6d818a32ea478d3a5097f5d5194eee375152bea430d20a0521d:log:86', 'hash': '0x2332d123923ad6d818a32ea478d3a5097f5d5194eee375152bea430d20a0521d', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:52.000Z'}}, {'blockNum': '0x7d74b8', 'uniqueId': '0xc8e8b7b5eb3c482840d168c837b7521dba722169023b146249e15967c7b3c214:log:89', 'hash': '0xc8e8b7b5eb3c482840d168c837b7521dba722169023b146249e15967c7b3c214', 'from': '0x8d3b2ade0160c8df0246003f3f152057b73b9894', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113038.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x17efcdeeeecbdc7c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:24:50.000Z'}}, {'blockNum': '0x7d74b9', 'uniqueId': '0x245a68d308bbee5d9a7172846815e3e484fb90df9465a4e45b1e135773727446:log:38', 'hash': '0x245a68d308bbee5d9a7172846815e3e484fb90df9465a4e45b1e135773727446', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:24:53.000Z'}}, {'blockNum': '0x7d74c7', 'uniqueId': '0xbbc9af58b1859d1caad232a5bc69d170f75351e07983cefbc24d7524ea1fd8fd:log:94', 'hash': '0xbbc9af58b1859d1caad232a5bc69d170f75351e07983cefbc24d7524ea1fd8fd', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:27:53.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x36f27ba062f4eb3cb8f73f95d03a17e1a2cb77cf8766be6b46e36f46d215ddec:log:10', 'hash': '0x36f27ba062f4eb3cb8f73f95d03a17e1a2cb77cf8766be6b46e36f46d215ddec', 'from': '0x98bb8b25e7b4643ef61a989280ac402a94fc6acb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519bdfffff', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0xbd4742c0064bc89a12a22d2c3556a358ed61ee2e1da543d0f69bcc2a509c9ced:log:12', 'hash': '0xbd4742c0064bc89a12a22d2c3556a358ed61ee2e1da543d0f69bcc2a509c9ced', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 4982.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010e18b0a21d0a400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x668685b6e32db19fc1dffe430d56f1fcb7d82269a2815b2c2b6db416335c3c7b:log:14', 'hash': '0x668685b6e32db19fc1dffe430d56f1fcb7d82269a2815b2c2b6db416335c3c7b', 'from': '0x9e5bbd1a9aabbc4e3f8be937077417c04697ce1f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 19990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x043ba8fa7070da980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x98e70838c5e4a097fe2ddd25af8520b20273b2fc2af8abe27df7578f94bf17eb:log:15', 'hash': '0x98e70838c5e4a097fe2ddd25af8520b20273b2fc2af8abe27df7578f94bf17eb', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe06724116ce01c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0xbfe55f46e3d7d6a8cc7cca93b602d98e71846dd9015b64bffb9955aa778c8523:log:18', 'hash': '0xbfe55f46e3d7d6a8cc7cca93b602d98e71846dd9015b64bffb9955aa778c8523', 'from': '0xd1dbd6b9e3fabd2958bd8ffb0543c9515c45cbdb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x3a2a700b1536466a0478ec3063dc5cc114b72abb1e47a946cc8a3a7361bbc240:log:19', 'hash': '0x3a2a700b1536466a0478ec3063dc5cc114b72abb1e47a946cc8a3a7361bbc240', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f317b4d4fec0040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74cc', 'uniqueId': '0xf6d9dae9d8c4d1168ae7e132fc339daeebd6f7f014f8a6cfd885add429cdfcc1:log:13', 'hash': '0xf6d9dae9d8c4d1168ae7e132fc339daeebd6f7f014f8a6cfd885add429cdfcc1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 14762.38632993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03204543d898b0286400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:29:49.000Z'}}, {'blockNum': '0x7d74d5', 'uniqueId': '0x7189ed6ab9f7b057edfdbf4afdc880038abafd069518b81307f4f0889a5fd311:log:5', 'hash': '0x7189ed6ab9f7b057edfdbf4afdc880038abafd069518b81307f4f0889a5fd311', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2548.3870967741937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x8a25f9b29526d18c63', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:31:22.000Z'}}, {'blockNum': '0x7d74db', 'uniqueId': '0x4c063b65fb6ebaddca2906b3b017749344fb10a169f0d4feff1808513d5171b4:log:0', 'hash': '0x4c063b65fb6ebaddca2906b3b017749344fb10a169f0d4feff1808513d5171b4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9b310bcc5471b0b635b0e2e024106014b770fcea', 'value': 49990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a95f69ccda0f1580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:31:55.000Z'}}, {'blockNum': '0x7d74e2', 'uniqueId': '0x608ba2a7f7413995f216d2060a4a26e9dc0d61ecb65760bdfa01212ea0b72bed:log:4', 'hash': '0x608ba2a7f7413995f216d2060a4a26e9dc0d61ecb65760bdfa01212ea0b72bed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x042f353ba395767136cc069391052ba83f876105', 'value': 2990.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa21bbf8254826a0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:32:47.000Z'}}, {'blockNum': '0x7d74f2', 'uniqueId': '0x39ec9c231929cf4fb65d0c11d8701f65072368fff82b8ed13f87517a5babbb5a:log:8', 'hash': '0x39ec9c231929cf4fb65d0c11d8701f65072368fff82b8ed13f87517a5babbb5a', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:36:04.000Z'}}, {'blockNum': '0x7d74f5', 'uniqueId': '0xa62be7c1bd6b2a3900dce1467cda1da3280ca2fda3973c9a25842af89e681bc0:log:54', 'hash': '0xa62be7c1bd6b2a3900dce1467cda1da3280ca2fda3973c9a25842af89e681bc0', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:37:09.000Z'}}, {'blockNum': '0x7d74f9', 'uniqueId': '0xa155f268d18c9a15533717c784a363b7e2d24d50e40820a0864d226bac80ccee:log:23', 'hash': '0xa155f268d18c9a15533717c784a363b7e2d24d50e40820a0864d226bac80ccee', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04e0222fbd9eb1c00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:38:28.000Z'}}, {'blockNum': '0x7d7504', 'uniqueId': '0xf80a45740d5345135884bd3775f51bc47247357f897db89c4d866572419f43d2:log:5', 'hash': '0xf80a45740d5345135884bd3775f51bc47247357f897db89c4d866572419f43d2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f9be9c443ca740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:39:51.000Z'}}, {'blockNum': '0x7d751c', 'uniqueId': '0x0734351b2f1907babb8e1621897a43556d222b2767bf216c1105be86e161679d:log:182', 'hash': '0x0734351b2f1907babb8e1621897a43556d222b2767bf216c1105be86e161679d', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14762.38632993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03204543d898b0286400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:44:25.000Z'}}, {'blockNum': '0x7d7548', 'uniqueId': '0x4909f7fd562f9ce6f4f23b88d5208c57d15313ba557401c48c67b20533f38a7a:log:53', 'hash': '0x4909f7fd562f9ce6f4f23b88d5208c57d15313ba557401c48c67b20533f38a7a', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2591.334894613583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x8c79feed2b9cec8d7d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:54:29.000Z'}}, {'blockNum': '0x7d757c', 'uniqueId': '0xe49036b8437e0ae4f1eab14598927b3747c2ac2e956e68f81cc3fed50df3a96c:log:152', 'hash': '0xe49036b8437e0ae4f1eab14598927b3747c2ac2e956e68f81cc3fed50df3a96c', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:05:15.000Z'}}, {'blockNum': '0x7d757c', 'uniqueId': '0x66f3a3daac702a0b270d6fed049874a74d97f21be10d63224ffe1355e6eadf05:log:153', 'hash': '0x66f3a3daac702a0b270d6fed049874a74d97f21be10d63224ffe1355e6eadf05', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:05:15.000Z'}}, {'blockNum': '0x7d758d', 'uniqueId': '0x199409faa9ae9989f630e50e10126fe42ad5a65eee48c4913127531700b2e245:log:8', 'hash': '0x199409faa9ae9989f630e50e10126fe42ad5a65eee48c4913127531700b2e245', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 10393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023367d94386aac40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:09:57.000Z'}}, {'blockNum': '0x7d75d3', 'uniqueId': '0x0dd953e6b684eb5ffa4a109c364c30f48e3e477ee3c17a044f3499adbfd6c297:log:18', 'hash': '0x0dd953e6b684eb5ffa4a109c364c30f48e3e477ee3c17a044f3499adbfd6c297', 'from': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24965.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0549608613a4511c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:29:00.000Z'}}, {'blockNum': '0x7d75ea', 'uniqueId': '0x8364034eec697a11ca59ec61b9faebbdba3dffe1c8f3ef280b7d542ee67f68cf:log:66', 'hash': '0x8364034eec697a11ca59ec61b9faebbdba3dffe1c8f3ef280b7d542ee67f68cf', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f9be9c443ca740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:34:10.000Z'}}, {'blockNum': '0x7d7608', 'uniqueId': '0xe837d62008bafc58cfc7412d9143eab6c4f743dfaafa789fd4601663ce30eaa3:log:165', 'hash': '0xe837d62008bafc58cfc7412d9143eab6c4f743dfaafa789fd4601663ce30eaa3', 'from': '0x88594f3109019e58f4cd71450061cc47edd26b66', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3139080535b6b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:39:17.000Z'}}, {'blockNum': '0x7d76ae', 'uniqueId': '0xe7e8ab779423d930bea09b402c9e39dc3b6091ad5284547c5dd0c11f536165f7:log:198', 'hash': '0xe7e8ab779423d930bea09b402c9e39dc3b6091ad5284547c5dd0c11f536165f7', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f1f0357f2e7f00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:17:31.000Z'}}, {'blockNum': '0x7d76ae', 'uniqueId': '0x64cce2d38913420c29a53d3bac7c7d599669ca1f621cf250b2de4d8d043f8430:log:199', 'hash': '0x64cce2d38913420c29a53d3bac7c7d599669ca1f621cf250b2de4d8d043f8430', 'from': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 32010.296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06c74818762ee36c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:17:31.000Z'}}, {'blockNum': '0x7d76cd', 'uniqueId': '0x97561448da471b3714a5513e546dcac01931c38b8c8867f0dabccacec67b619c:log:135', 'hash': '0x97561448da471b3714a5513e546dcac01931c38b8c8867f0dabccacec67b619c', 'from': '0xe516a08a8588f26fd2bee405fc75191a3ef367bb', 'to': '0x0f040e9ae15247fcac52c142d0f3043d789cbe62', 'value': 350000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4a1d89bb94865ec00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:27:26.000Z'}}, {'blockNum': '0x7d76d1', 'uniqueId': '0x263cf1868b5cfaa5b457e6d2f692ad116c8969d865af6fa8f6a222b4efbac845:log:4', 'hash': '0x263cf1868b5cfaa5b457e6d2f692ad116c8969d865af6fa8f6a222b4efbac845', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfe2733522a88672412d8b9a4158d0ac9e012ab50', 'value': 2497.150849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x875eedfab17a1d1000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:27:49.000Z'}}, {'blockNum': '0x7d76d9', 'uniqueId': '0xe5776e958e74e8fbe9845203b40cedfaf8b0da4952d4c2e39b95d4aa39507e80:log:6', 'hash': '0xe5776e958e74e8fbe9845203b40cedfaf8b0da4952d4c2e39b95d4aa39507e80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 16785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x038deaab194233a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:29:11.000Z'}}, {'blockNum': '0x7d76f9', 'uniqueId': '0x05aedaa12b3fc5f5be9355895c41750bdc83ba623b4a64cc056ee0c2a3a96713:log:34', 'hash': '0x05aedaa12b3fc5f5be9355895c41750bdc83ba623b4a64cc056ee0c2a3a96713', 'from': '0x0f040e9ae15247fcac52c142d0f3043d789cbe62', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 350000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4a1d89bb94865ec00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:34:12.000Z'}}, {'blockNum': '0x7d778d', 'uniqueId': '0x290ded3e333c43930d1fb0eda588a9f93031ef7558ad2fe688907c3709032cc0:log:19', 'hash': '0x290ded3e333c43930d1fb0eda588a9f93031ef7558ad2fe688907c3709032cc0', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 524.0566037735849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1c68bf108faa2995bc', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:08:31.000Z'}}, {'blockNum': '0x7d779f', 'uniqueId': '0x73df88b9f42438da5407f63541c52ade4897db8e0ad0800681acfe46e963ef9c:log:13', 'hash': '0x73df88b9f42438da5407f63541c52ade4897db8e0ad0800681acfe46e963ef9c', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 526.7772511848341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1c8e80bef794c215d6', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:11:48.000Z'}}, {'blockNum': '0x7d77a7', 'uniqueId': '0x4981cc93db426515b1705cfa55b4a5d7f79eb17f9eae02e07d07d12323f3cecf:log:20', 'hash': '0x4981cc93db426515b1705cfa55b4a5d7f79eb17f9eae02e07d07d12323f3cecf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 15103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0332bc3ab0e0649c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:14:31.000Z'}}, {'blockNum': '0x7d77ab', 'uniqueId': '0xf4f8047d43ba0c0131737c65954715d9fd7a97da823b2d1f7e2e4f88c7eb7f03:log:0', 'hash': '0xf4f8047d43ba0c0131737c65954715d9fd7a97da823b2d1f7e2e4f88c7eb7f03', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 36357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07b2eabb385bbcf40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:15:56.000Z'}}, {'blockNum': '0x7d77ef', 'uniqueId': '0x946492c9355d577b5a49de4b41af4656d783a30832dbe3c22774cdc130b4b2f5:log:39', 'hash': '0x946492c9355d577b5a49de4b41af4656d783a30832dbe3c22774cdc130b4b2f5', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 36357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07b2eabb385bbcf40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:29:43.000Z'}}, {'blockNum': '0x7d77ef', 'uniqueId': '0x34135d9b941026042c698f97f6c0fbec90b97dad37f81a9f1ffe1f2749d9434a:log:53', 'hash': '0x34135d9b941026042c698f97f6c0fbec90b97dad37f81a9f1ffe1f2749d9434a', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 15103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0332bc3ab0e0649c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:29:43.000Z'}}, {'blockNum': '0x7d780e', 'uniqueId': '0x827f5195c7575e2716e5e6cc3812e71fff919e8752753733c96b1c09fb580ad2:log:74', 'hash': '0x827f5195c7575e2716e5e6cc3812e71fff919e8752753733c96b1c09fb580ad2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02268ed01f34b3300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:39:00.000Z'}}, {'blockNum': '0x7d7824', 'uniqueId': '0x9824a96bc4ea2644243eb2285e52f668481995746fc2e1dadce30f825a6b6690:log:10', 'hash': '0x9824a96bc4ea2644243eb2285e52f668481995746fc2e1dadce30f825a6b6690', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02268ed01f34b3300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:43:54.000Z'}}, {'blockNum': '0x7d7851', 'uniqueId': '0x47bd05bf53cf88c1e4a583ed3659c04b26559b3ab25968bfe93a3adab38ea252:log:11', 'hash': '0x47bd05bf53cf88c1e4a583ed3659c04b26559b3ab25968bfe93a3adab38ea252', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 36716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07c660db6e4b7a300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:54:17.000Z'}}, {'blockNum': '0x7d7853', 'uniqueId': '0xc65b2a66eeb412474605c4f6f31c4ad98f459765aa47668f15983c1fa7aa2fd9:log:17', 'hash': '0xc65b2a66eeb412474605c4f6f31c4ad98f459765aa47668f15983c1fa7aa2fd9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:54:30.000Z'}}, {'blockNum': '0x7d7888', 'uniqueId': '0x6f4337deac47ec113334f99cc54a8055e1f0c3e154c5c8148016e0a68a8a835c:log:31', 'hash': '0x6f4337deac47ec113334f99cc54a8055e1f0c3e154c5c8148016e0a68a8a835c', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07c660db6e4b7a300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:04:30.000Z'}}, {'blockNum': '0x7d78da', 'uniqueId': '0xf05647ccd07cdb838a6c37c97d702497f072b40ebcc728b8df773b0c7340a0ec:log:39', 'hash': '0xf05647ccd07cdb838a6c37c97d702497f072b40ebcc728b8df773b0c7340a0ec', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a104bc5282ca9c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:22:06.000Z'}}, {'blockNum': '0x7d78db', 'uniqueId': '0xc191bedc44f3d45e0c4fd07a528c2fbd45d30125c13d340f2ee37dd933ba5a2d:log:17', 'hash': '0xc191bedc44f3d45e0c4fd07a528c2fbd45d30125c13d340f2ee37dd933ba5a2d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'value': 24985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054a708743cbeec40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:22:12.000Z'}}, {'blockNum': '0x7d78e5', 'uniqueId': '0x2446a7de14cbfd035c69794cf61c9c6d22056dd4b01f3e626a06abca3248d26e:log:75', 'hash': '0x2446a7de14cbfd035c69794cf61c9c6d22056dd4b01f3e626a06abca3248d26e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 60291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cc461b46897742c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:25:41.000Z'}}, {'blockNum': '0x7d78f5', 'uniqueId': '0x219cd8b2c6e8d37b5d44ed07c07b2a9749363d000312c7550b41e92e28629d06:log:39', 'hash': '0x219cd8b2c6e8d37b5d44ed07c07b2a9749363d000312c7550b41e92e28629d06', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 28655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06116402774da25c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:28:25.000Z'}}, {'blockNum': '0x7d78fa', 'uniqueId': '0x91dbdc7e466d79eb44823efaa30683babb6a9c8d4f56f91e8ba966001f6b1b19:log:9', 'hash': '0x91dbdc7e466d79eb44823efaa30683babb6a9c8d4f56f91e8ba966001f6b1b19', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'value': 162518.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x226a2acf17f6df720000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:30:02.000Z'}}, {'blockNum': '0x7d78fa', 'uniqueId': '0x580a7a58309c6029ef844cd70546ff4abbed07066a44ce758291d8f058ffb8f9:log:15', 'hash': '0x580a7a58309c6029ef844cd70546ff4abbed07066a44ce758291d8f058ffb8f9', 'from': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:30:02.000Z'}}, {'blockNum': '0x7d78fa', 'uniqueId': '0x8b52f9ea7efbd48cd1ad71970767118461f16619fdf0fd27da6d874d96433d29:log:22', 'hash': '0x8b52f9ea7efbd48cd1ad71970767118461f16619fdf0fd27da6d874d96433d29', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 28655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06116402774da25c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:30:02.000Z'}}, {'blockNum': '0x7d790f', 'uniqueId': '0x3e1843c927d273042dae7781423746bb5e07d6d1ccc47c4a3cbfac9d59f82409:log:25', 'hash': '0x3e1843c927d273042dae7781423746bb5e07d6d1ccc47c4a3cbfac9d59f82409', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a104bc5282ca9c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:34:12.000Z'}}, {'blockNum': '0x7d790f', 'uniqueId': '0xb6ef40c1f3af7c78852f15d97e0ea7f87bee7fe53db44c082c50e3da7c50a9b1:log:26', 'hash': '0xb6ef40c1f3af7c78852f15d97e0ea7f87bee7fe53db44c082c50e3da7c50a9b1', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cc461b46897742c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:34:12.000Z'}}, {'blockNum': '0x7d790f', 'uniqueId': '0xd3a22a732906a329b73229312115624d97f69bd03ba0c8f33942f2a8dfb126dc:log:71', 'hash': '0xd3a22a732906a329b73229312115624d97f69bd03ba0c8f33942f2a8dfb126dc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f3ac4c55a36b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:34:12.000Z'}}, {'blockNum': '0x7d791a', 'uniqueId': '0x2cf22288a9b7afff8ff4b01a7a050f8cf30a6014361c3fbe8543691e3144e709:log:7', 'hash': '0x2cf22288a9b7afff8ff4b01a7a050f8cf30a6014361c3fbe8543691e3144e709', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 596842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7e62dea17b8edb680000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:36:50.000Z'}}, {'blockNum': '0x7d793e', 'uniqueId': '0x9111922aaa2b9f9544be407093e7e61ff254faad325eb6f20b98071194dacd6a:log:2', 'hash': '0x9111922aaa2b9f9544be407093e7e61ff254faad325eb6f20b98071194dacd6a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f3ac4c55a36b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:44:05.000Z'}}, {'blockNum': '0x7d795c', 'uniqueId': '0xbe48d877cfacb439f5e7e22057bbdddcc6912d907539b3a7267c51a4912ed28b:log:10', 'hash': '0xbe48d877cfacb439f5e7e22057bbdddcc6912d907539b3a7267c51a4912ed28b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 600093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7f131b51a70596540000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:48:55.000Z'}}, {'blockNum': '0x7d7975', 'uniqueId': '0xd19b254c5c1eda64e8153ae5f9727aaf6914a7f13d1e53a2a47a5ab5cfd57ac6:log:17', 'hash': '0xd19b254c5c1eda64e8153ae5f9727aaf6914a7f13d1e53a2a47a5ab5cfd57ac6', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7f131b51a70596540000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:53:57.000Z'}}, {'blockNum': '0x7d7978', 'uniqueId': '0xbd43aea538502c373ee1ad5aea5bf653f13a38096831bc553c5ee153f4a5329a:log:4', 'hash': '0xbd43aea538502c373ee1ad5aea5bf653f13a38096831bc553c5ee153f4a5329a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x54539e8a334d5c8aeeefba89120e5c8cf413aaf1', 'value': 184.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a003ad48fd72a0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:54:54.000Z'}}, {'blockNum': '0x7d7981', 'uniqueId': '0x053b6286c8652229837e3895353bc7ecc4a97bef89eac133da3e6313415da2d0:log:10', 'hash': '0x053b6286c8652229837e3895353bc7ecc4a97bef89eac133da3e6313415da2d0', 'from': '0x54539e8a334d5c8aeeefba89120e5c8cf413aaf1', 'to': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'value': 184.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a003ad48fd72a0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:57:14.000Z'}}, {'blockNum': '0x7d79bd', 'uniqueId': '0xd6c1c4742357f82ffe7841cc49d69a9a7928e1b0de248c1b10f24ebe418ee8c6:log:106', 'hash': '0xd6c1c4742357f82ffe7841cc49d69a9a7928e1b0de248c1b10f24ebe418ee8c6', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 4131.7375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xdffb60555dd485c000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:11:45.000Z'}}, {'blockNum': '0x7d79df', 'uniqueId': '0x8f6a4809c8f13a35ae85c1c21af75beecd338b7afa4cda9925ffaee9e18901f5:log:88', 'hash': '0x8f6a4809c8f13a35ae85c1c21af75beecd338b7afa4cda9925ffaee9e18901f5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 22925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04dac4491624f6140000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:18:55.000Z'}}, {'blockNum': '0x7d7a05', 'uniqueId': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702:log:159', 'hash': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 886.1774255329042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x300a2ea95a5aee8e61', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:27:29.000Z'}}, {'blockNum': '0x7d7a05', 'uniqueId': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702:log:161', 'hash': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 886.1773884860429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x300a2e87a8b5ec0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:27:29.000Z'}}, {'blockNum': '0x7d7a05', 'uniqueId': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702:log:162', 'hash': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 886.1773884860429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x300a2e87a8b5ec0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:27:29.000Z'}}, {'blockNum': '0x7d7a12', 'uniqueId': '0x6564b6e067e9256e8a8220982265de4ca8acfea53948b3e53996f825d10391f5:log:4', 'hash': '0x6564b6e067e9256e8a8220982265de4ca8acfea53948b3e53996f825d10391f5', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 22925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04dac4491624f6140000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:30:51.000Z'}}, {'blockNum': '0x7d7a4a', 'uniqueId': '0x127e18e0ff6fdba3c832ddf743a6061ce38eb2dee1cdbac602bcda6319131fc9:log:82', 'hash': '0x127e18e0ff6fdba3c832ddf743a6061ce38eb2dee1cdbac602bcda6319131fc9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:43:30.000Z'}}, {'blockNum': '0x7d7a7c', 'uniqueId': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07:log:93', 'hash': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 950.7458487731799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x338a3fc8311aa3dc8c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:54:01.000Z'}}, {'blockNum': '0x7d7a7c', 'uniqueId': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07:log:95', 'hash': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 950.7458059520508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x338a3fa13f08740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:54:01.000Z'}}, {'blockNum': '0x7d7a7c', 'uniqueId': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07:log:96', 'hash': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 950.7458059520508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x338a3fa13f08740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:54:01.000Z'}}, {'blockNum': '0x7d7a9c', 'uniqueId': '0x98d642f9be29a16e81fc41e82b8f50f2cf9f55a2ffab6357fef57f58ee2ec0fd:log:120', 'hash': '0x98d642f9be29a16e81fc41e82b8f50f2cf9f55a2ffab6357fef57f58ee2ec0fd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x026a898f133aa7080000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:00:29.000Z'}}, {'blockNum': '0x7d7aae', 'uniqueId': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9:log:33', 'hash': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1762.3378968770187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f8959f3f17bb1c5e6', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:05:27.000Z'}}, {'blockNum': '0x7d7aae', 'uniqueId': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9:log:35', 'hash': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1762.3377490792147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f89596d85a0180000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:05:27.000Z'}}, {'blockNum': '0x7d7aae', 'uniqueId': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9:log:36', 'hash': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1762.3377490792147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f89596d85a0180000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:05:27.000Z'}}, {'blockNum': '0x7d7ab2', 'uniqueId': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b:log:60', 'hash': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1316.5901779056671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x475f5bef3623a410a7', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:06:31.000Z'}}, {'blockNum': '0x7d7ab2', 'uniqueId': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b:log:62', 'hash': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1316.5900947199918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x475f5ba38df7040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:06:31.000Z'}}, {'blockNum': '0x7d7ab2', 'uniqueId': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b:log:63', 'hash': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1316.5900947199918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x475f5ba38df7040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:06:31.000Z'}}, {'blockNum': '0x7d7abb', 'uniqueId': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283:log:67', 'hash': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1685.9584455217544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5b655fa19c81ee1045', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:09:15.000Z'}}, {'blockNum': '0x7d7abb', 'uniqueId': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283:log:69', 'hash': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1685.9583082460836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5b655f24c286580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:09:15.000Z'}}, {'blockNum': '0x7d7abb', 'uniqueId': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283:log:70', 'hash': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1685.9583082460836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5b655f24c286580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:09:15.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b:log:104', 'hash': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 2411.024044769291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x82b3ae1a9097161ebe', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b:log:106', 'hash': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2411.024044769291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x82b3ae1a9097161ebe', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b:log:107', 'hash': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2411.024044769291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x82b3ae1a9097161ebe', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x4a6574fc1fb28fac11b230af28b1190dba65bdba1eba00f5eee651701eeb17a8:log:120', 'hash': '0x4a6574fc1fb28fac11b230af28b1190dba65bdba1eba00f5eee651701eeb17a8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029bd077cf24051c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7ad0', 'uniqueId': '0x4a197df79137852559e0bbca905a5e7442fdaf549fb9546e6bdfd1af863afabc:log:20', 'hash': '0x4a197df79137852559e0bbca905a5e7442fdaf549fb9546e6bdfd1af863afabc', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x05065a06e25eac240000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:13:57.000Z'}}, {'blockNum': '0x7d7ad9', 'uniqueId': '0x1da8f049f1e59121a5ab055dde0f71e4d5cda987b8982d9b6422926e1dce9a1c:log:107', 'hash': '0x1da8f049f1e59121a5ab055dde0f71e4d5cda987b8982d9b6422926e1dce9a1c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 16045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0365cd1af9f256940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:15:39.000Z'}}, {'blockNum': '0x7d7af0', 'uniqueId': '0x374c7e492ecacc6a4d4a286e1b5d9f03b3fb5f014b8d89355d7ebea650c3ca6a:log:57', 'hash': '0x374c7e492ecacc6a4d4a286e1b5d9f03b3fb5f014b8d89355d7ebea650c3ca6a', 'from': '0x73cd1f4ee6967fd2d16a7843c23c7892104466d5', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01ed4fde7a2236b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:20:37.000Z'}}, {'blockNum': '0x7d7af0', 'uniqueId': '0x76f04ea4144014c37147898bcaebc47025fe9050eb44850a0425919418d6e446:log:60', 'hash': '0x76f04ea4144014c37147898bcaebc47025fe9050eb44850a0425919418d6e446', 'from': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 16785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x038deaab194233a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:20:37.000Z'}}, {'blockNum': '0x7d7af0', 'uniqueId': '0xa77c96631aab8b651fa570b7c95a5b879a784cf855b052c19913088fedcaa8bf:log:61', 'hash': '0xa77c96631aab8b651fa570b7c95a5b879a784cf855b052c19913088fedcaa8bf', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 10393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023367d94386aac40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:20:37.000Z'}}, {'blockNum': '0x7d7afe', 'uniqueId': '0xb2907e5fc0084ed4104dabbb8fdc15c4a89ff58e57b2bb3d541a482ff9d22e0b:log:44', 'hash': '0xb2907e5fc0084ed4104dabbb8fdc15c4a89ff58e57b2bb3d541a482ff9d22e0b', 'from': '0xc8fcc48d1454a83589169294470549a2e1713dec', 'to': '0x9fbcb98947e81fa65d10db8638c390c2cb0a9306', 'value': 26041.943634601565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0583bc915f8a13377740', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:23:39.000Z'}}, {'blockNum': '0x7d7b07', 'uniqueId': '0xebfa32839cce919b9c8ff61233bb38230821d1a133c56302519fdb0f2109bbd3:log:131', 'hash': '0xebfa32839cce919b9c8ff61233bb38230821d1a133c56302519fdb0f2109bbd3', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 2078.555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x70adbec7d7f80f8000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:24:58.000Z'}}, {'blockNum': '0x7d7b19', 'uniqueId': '0x4e24333b0e0dd0e6b23d7dbf0865132bca1382f6aba5cde7374dda97cb01ecca:log:21', 'hash': '0x4e24333b0e0dd0e6b23d7dbf0865132bca1382f6aba5cde7374dda97cb01ecca', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3bbe28261801bb6b5b910a8fd1fb39e999215a6f', 'value': 10563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023c9f1296d3d32c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:30:23.000Z'}}, {'blockNum': '0x7d7b1a', 'uniqueId': '0x18950dd5f7c612407264db78fc6e9846c1b3b621c724b02aaea6dd7db63daf16:log:22', 'hash': '0x18950dd5f7c612407264db78fc6e9846c1b3b621c724b02aaea6dd7db63daf16', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 4656.8726954209715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xfc73175350fed97e9d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:30:47.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0x428849d6a49f063b46d9c5a4587dfd7cbb148d734a5b2d3c114be0dd5f8ca466:log:14', 'hash': '0x428849d6a49f063b46d9c5a4587dfd7cbb148d734a5b2d3c114be0dd5f8ca466', 'from': '0x3bbe28261801bb6b5b910a8fd1fb39e999215a6f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023c9f1296d3d32c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0x33d10eb723d2d20fa63c1dfcf5ca590d263bd83cda6eafb77e746763ea38f854:log:18', 'hash': '0x33d10eb723d2d20fa63c1dfcf5ca590d263bd83cda6eafb77e746763ea38f854', 'from': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0x5b2b14c94be4caad4a1046e4d7515b91d6a37d1bb8477722fe38cf3c46d21c0e:log:34', 'hash': '0x5b2b14c94be4caad4a1046e4d7515b91d6a37d1bb8477722fe38cf3c46d21c0e', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0365cd1af9f256940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0xcc79cd9f28403e7fe14ec211257c879afe6875afcc6a567358c5c09fb7be1203:log:37', 'hash': '0xcc79cd9f28403e7fe14ec211257c879afe6875afcc6a567358c5c09fb7be1203', 'from': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 6210.2925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0150a91f1d35cc954000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b25', 'uniqueId': '0xc7fe1206996435ae93dfab321af97e20fbed5837a3201adf7be897f65594b2d7:log:78', 'hash': '0xc7fe1206996435ae93dfab321af97e20fbed5837a3201adf7be897f65594b2d7', 'from': '0x9fbcb98947e81fa65d10db8638c390c2cb0a9306', 'to': '0x9e2bc683db85eebad77f386d703eecfa08c99826', 'value': 26041.9436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0583bc914011c5530000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:33:13.000Z'}}, {'blockNum': '0x7d7b2d', 'uniqueId': '0xe89eccb52b2e30262785e8d4ff0e8ed1d663181eec2018a97fe9ed0909c922e0:log:6', 'hash': '0xe89eccb52b2e30262785e8d4ff0e8ed1d663181eec2018a97fe9ed0909c922e0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 38184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0815f5731c7f5ba00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:34:54.000Z'}}, {'blockNum': '0x7d7b35', 'uniqueId': '0x115a0fa06fc430a3116af43bff290b607f1c43c798f976039f1d7719aadb2c0b:log:98', 'hash': '0x115a0fa06fc430a3116af43bff290b607f1c43c798f976039f1d7719aadb2c0b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 10943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025138a1c9804b9c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:36:01.000Z'}}, {'blockNum': '0x7d7b3b', 'uniqueId': '0xc1a9ebe7fa601568291296392ce5285f7c774c2279a750d37e7382062729e218:log:37', 'hash': '0xc1a9ebe7fa601568291296392ce5285f7c774c2279a750d37e7382062729e218', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1355.5832924498757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x497c7f4e4b894f3845', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:37:21.000Z'}}, {'blockNum': '0x7d7b48', 'uniqueId': '0xda07af41d142bc4e9acfb78c93a7f8a5e9b93cfaee9593f76f6281d1aa9901fe:log:75', 'hash': '0xda07af41d142bc4e9acfb78c93a7f8a5e9b93cfaee9593f76f6281d1aa9901fe', 'from': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'to': '0x851b494f4a4ce4de8aaaa8b77cbc57e72f7ab8cb', 'value': 1390.63757297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b62f920b3dc35a400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:39:12.000Z'}}, {'blockNum': '0x7d7b49', 'uniqueId': '0x09486ef6ab05fc9d7e23b0a6aacb2f070358b079c8a6efc404fe2bc2efcee7f4:log:4', 'hash': '0x09486ef6ab05fc9d7e23b0a6aacb2f070358b079c8a6efc404fe2bc2efcee7f4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 40854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08a6b324a23b30980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:39:18.000Z'}}, {'blockNum': '0x7d7b4b', 'uniqueId': '0xe3623d7da605411b3589824b9945ca340c7f2b947592dd822e068ab6233d1ec4:log:85', 'hash': '0xe3623d7da605411b3589824b9945ca340c7f2b947592dd822e068ab6233d1ec4', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1778.839935769615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x606e5cf8e272935654', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:39:40.000Z'}}, {'blockNum': '0x7d7b4c', 'uniqueId': '0x6de20f1608e81cafc5f384da844888cffa044f4cc8d75ae4e6fdc4f36db5ca01:log:75', 'hash': '0x6de20f1608e81cafc5f384da844888cffa044f4cc8d75ae4e6fdc4f36db5ca01', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a55af56aa719dc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:17.000Z'}}, {'blockNum': '0x7d7b4c', 'uniqueId': '0x2dfd91354cba03274963e9bef644cfc217b6f5d7dca29e85a73bb9d75c8560c0:log:115', 'hash': '0x2dfd91354cba03274963e9bef644cfc217b6f5d7dca29e85a73bb9d75c8560c0', 'from': '0xe1036ddd04175168a556d46bc5be5e5a5925f711', 'to': '0x8f5d6281a055575bda9848a8e1b12319c97e45ca', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:17.000Z'}}, {'blockNum': '0x7d7b4d', 'uniqueId': '0x6929d527ada73609467eedb546245b36ac8393e62177fd9fb41d266f42229740:log:132', 'hash': '0x6929d527ada73609467eedb546245b36ac8393e62177fd9fb41d266f42229740', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 10098.255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02236d70aba6e8418000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:24.000Z'}}, {'blockNum': '0x7d7b4e', 'uniqueId': '0xd3562ed40d6f1f559d4b227cb8f3f7a8751a8f3ea30544455fb2e75ec2b6ffde:log:30', 'hash': '0xd3562ed40d6f1f559d4b227cb8f3f7a8751a8f3ea30544455fb2e75ec2b6ffde', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'value': 15078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03316148d9550bd80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:33.000Z'}}, {'blockNum': '0x7d7b4e', 'uniqueId': '0x89527937c35fa89562b8c844de9fcd3bbc0579ac22eabd22e1d08af49e620673:log:46', 'hash': '0x89527937c35fa89562b8c844de9fcd3bbc0579ac22eabd22e1d08af49e620673', 'from': '0x37b779911ccb1421600dd1509df148464dbb07c2', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 2233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x790d19a50f17440000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:33.000Z'}}, {'blockNum': '0x7d7b54', 'uniqueId': '0x25bdedc0628f0a17ac2c257a36efbb0b9881aeb0d9fdfc9a2619aec90ae9749b:log:28', 'hash': '0x25bdedc0628f0a17ac2c257a36efbb0b9881aeb0d9fdfc9a2619aec90ae9749b', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 877.4008972212462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x2f90622b5a81667a1b', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:41:26.000Z'}}, {'blockNum': '0x7d7b55', 'uniqueId': '0xdcf05a2ee7f1390972ef0bdd31a5703f4186889d29c9f9fc68a137dbe4a8a609:log:39', 'hash': '0xdcf05a2ee7f1390972ef0bdd31a5703f4186889d29c9f9fc68a137dbe4a8a609', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 7623.56796326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x019d46422f30d881d800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:41:53.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x3ba5258b646c96098bdb3788c13760247a0bb710cf56a90367a24ad0369b8a6f:log:31', 'hash': '0x3ba5258b646c96098bdb3788c13760247a0bb710cf56a90367a24ad0369b8a6f', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x790d19a50f17440000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x2d0199b1bdf7c63b66eee68e55579aaa78a6715417c8901ec7bf20b146d35520:log:33', 'hash': '0x2d0199b1bdf7c63b66eee68e55579aaa78a6715417c8901ec7bf20b146d35520', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a55af56aa719dc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x785fbba736602b5510c2a3c93d5467c667839064467d025f86144c5eaf71e014:log:37', 'hash': '0x785fbba736602b5510c2a3c93d5467c667839064467d025f86144c5eaf71e014', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08a6b324a23b30980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x66c1a8e9bf95ef34bc0e0881686012e44c587e3b568bd4cbd7d2f6dbf7343f57:log:60', 'hash': '0x66c1a8e9bf95ef34bc0e0881686012e44c587e3b568bd4cbd7d2f6dbf7343f57', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 888.7550200803213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x302df41defe8b64c14', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5c', 'uniqueId': '0xb1ba95b545e86f8453df050a45b0488d30cf735813f63c19744aa61b588821ac:log:16', 'hash': '0xb1ba95b545e86f8453df050a45b0488d30cf735813f63c19744aa61b588821ac', 'from': '0x851b494f4a4ce4de8aaaa8b77cbc57e72f7ab8cb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1390.63757297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b62f920b3dc35a400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:44:05.000Z'}}, {'blockNum': '0x7d7b65', 'uniqueId': '0x520f08f1acf9de20f67a08e4119adf8b97c19bf0129f4c4512d8a93cc431e544:log:135', 'hash': '0x520f08f1acf9de20f67a08e4119adf8b97c19bf0129f4c4512d8a93cc431e544', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1810.2249488752557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6221eaf004eb443029', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:47:43.000Z'}}, {'blockNum': '0x7d7b66', 'uniqueId': '0x6b9709d9e44066ac6a78ba8f3286fd71cff499397affaa700b12f9869c11f6c0:log:50', 'hash': '0x6b9709d9e44066ac6a78ba8f3286fd71cff499397affaa700b12f9869c11f6c0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'value': 17806.4161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03c549aa0c83a0824000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:48:19.000Z'}}, {'blockNum': '0x7d7b79', 'uniqueId': '0xd9e32ff5bb99fcc4d14aac1f66d583fd8b773306cf216d7bcc09db175612a444:log:76', 'hash': '0xd9e32ff5bb99fcc4d14aac1f66d583fd8b773306cf216d7bcc09db175612a444', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 19416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x041c8b20c99f88600000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:52:48.000Z'}}, {'blockNum': '0x7d7b79', 'uniqueId': '0x9eb756147832b4bad512313ee064b94dd90b69ddfd2b1370cc08a5bf2fc858ea:log:90', 'hash': '0x9eb756147832b4bad512313ee064b94dd90b69ddfd2b1370cc08a5bf2fc858ea', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 2021.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6d9aaa9fd523c80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:52:48.000Z'}}, {'blockNum': '0x7d7b7e', 'uniqueId': '0x7a2178db4ea25b203190a8190e96956ca1d1c4af54a562cdcf035e5852fe5463:log:17', 'hash': '0x7a2178db4ea25b203190a8190e96956ca1d1c4af54a562cdcf035e5852fe5463', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7623.56796326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x019d46422f30d881d800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:54:02.000Z'}}, {'blockNum': '0x7d7b7e', 'uniqueId': '0x39c8466315890335dcc5496370fc06e5626d537e39d597c82892cd04d7b78ead:log:20', 'hash': '0x39c8466315890335dcc5496370fc06e5626d537e39d597c82892cd04d7b78ead', 'from': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17806.4161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03c549aa0c83a0824000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:54:02.000Z'}}, {'blockNum': '0x7d7b8c', 'uniqueId': '0x06c882ac58e8e7995a741c006763a7a3d9aaa20d245583539ad68495fd3bedb2:log:44', 'hash': '0x06c882ac58e8e7995a741c006763a7a3d9aaa20d245583539ad68495fd3bedb2', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1374.5341614906831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4a837e51481b95f675', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:56:58.000Z'}}, {'blockNum': '0x7d7b8d', 'uniqueId': '0xc244416d5f2736215ba66dd7266982ddd7eff1a9e145337511e5beec9a2261c0:log:50', 'hash': '0xc244416d5f2736215ba66dd7266982ddd7eff1a9e145337511e5beec9a2261c0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x40f738f99562cf5e7af8978da5cd3da311ab8340', 'value': 224990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x2fa4bb7a97e420b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:57:00.000Z'}}, {'blockNum': '0x7d7b9b', 'uniqueId': '0x243f30fccb4017379439e515fa2350043b88cc46089aae8f49d3c76a3f0a04c3:log:30', 'hash': '0x243f30fccb4017379439e515fa2350043b88cc46089aae8f49d3c76a3f0a04c3', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1394.1176470588234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b9344d5a5ec93c3c3', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:59:54.000Z'}}, {'blockNum': '0x7d7ba5', 'uniqueId': '0x9728f87006477dbb5cc509109face0c56f182c1fbccc203c1ba2327062c981d4:log:40', 'hash': '0x9728f87006477dbb5cc509109face0c56f182c1fbccc203c1ba2327062c981d4', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 38184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0815f5731c7f5ba00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:02:14.000Z'}}, {'blockNum': '0x7d7ba5', 'uniqueId': '0x1eaa404327eeb729041361a5b1fac832d6349cf0ef05fb038a6000930835c34b:log:44', 'hash': '0x1eaa404327eeb729041361a5b1fac832d6349cf0ef05fb038a6000930835c34b', 'from': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12120.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0291081b4b7c0c098000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:02:14.000Z'}}, {'blockNum': '0x7d7ba5', 'uniqueId': '0xe38ca13f273f6fb0bc635053d0fb25ca54b406ee6716ccadc7f63c7e81c699fa:log:98', 'hash': '0xe38ca13f273f6fb0bc635053d0fb25ca54b406ee6716ccadc7f63c7e81c699fa', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 30359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x066dc3c2931fd3fc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:02:14.000Z'}}, {'blockNum': '0x7d7bad', 'uniqueId': '0xfb4e461d11efc3c6a6f86a45116a178e615251d922b98271590d9df844a27d7f:log:37', 'hash': '0xfb4e461d11efc3c6a6f86a45116a178e615251d922b98271590d9df844a27d7f', 'from': '0x40f738f99562cf5e7af8978da5cd3da311ab8340', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 224990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x2fa4bb7a97e420b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:04:29.000Z'}}, {'blockNum': '0x7d7baf', 'uniqueId': '0xf145da40a4e59f86550d9bf221518867649a446d266894332f3b8708cf9e3915:log:4', 'hash': '0xf145da40a4e59f86550d9bf221518867649a446d266894332f3b8708cf9e3915', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 47296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a03ebda270d6b000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:04:34.000Z'}}, {'blockNum': '0x7d7bc5', 'uniqueId': '0x2ada8805d63247d816afa9243024ce4e2ad87fc4d4db1fc2d4340ae62223460d:log:47', 'hash': '0x2ada8805d63247d816afa9243024ce4e2ad87fc4d4db1fc2d4340ae62223460d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 36587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07bf629f5dc420cc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:08:19.000Z'}}, {'blockNum': '0x7d7bc8', 'uniqueId': '0x7cf4f9b75c3de9c719240bf7de624380e183fb5e62766d43910b70549dbbf136:log:56', 'hash': '0x7cf4f9b75c3de9c719240bf7de624380e183fb5e62766d43910b70549dbbf136', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 23138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04e65041199f3c480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:08:52.000Z'}}, {'blockNum': '0x7d7bdf', 'uniqueId': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9:log:53', 'hash': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1241.651331915331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x434f5fabd387f296d8', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:13:33.000Z'}}, {'blockNum': '0x7d7bdf', 'uniqueId': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9:log:55', 'hash': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1241.6512547393534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x434f5f65a299380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:13:33.000Z'}}, {'blockNum': '0x7d7bdf', 'uniqueId': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9:log:56', 'hash': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1241.6512547393534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x434f5f65a299380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:13:33.000Z'}}, {'blockNum': '0x7d7bf6', 'uniqueId': '0x75c0155f10a63f564d4ad28a7d03998e7912f2ffec1be7147a3f1cfc22898a15:log:99', 'hash': '0x75c0155f10a63f564d4ad28a7d03998e7912f2ffec1be7147a3f1cfc22898a15', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 930.2521008403361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x326dd75d0705181135', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:19:38.000Z'}}, {'blockNum': '0x7d7bfb', 'uniqueId': '0x89a6f11ae7ac2db8621390d5ef679857eab8c5adac9a2275c3b8499846463279:log:5', 'hash': '0x89a6f11ae7ac2db8621390d5ef679857eab8c5adac9a2275c3b8499846463279', 'from': '0x86ff4b153c06c2f75a88c16ddbd481d7daf27d8e', 'to': '0xc94727e72519c3b3434f5af6d3886615f82c2ec6', 'value': 505.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b6cc5d9a07e1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:20:43.000Z'}}, {'blockNum': '0x7d7c0e', 'uniqueId': '0x92d37bd16ecd752bcf15bb2860e0e58d626cb359a5a0c4fa58c68471e3e07366:log:24', 'hash': '0x92d37bd16ecd752bcf15bb2860e0e58d626cb359a5a0c4fa58c68471e3e07366', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a03ebda270d6b000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:23:59.000Z'}}, {'blockNum': '0x7d7c0e', 'uniqueId': '0xcbce0ca2c20100b9b122e222e2e823b13f26b9779b4c36525f3fcb6ea7086a4a:log:37', 'hash': '0xcbce0ca2c20100b9b122e222e2e823b13f26b9779b4c36525f3fcb6ea7086a4a', 'from': '0xc94727e72519c3b3434f5af6d3886615f82c2ec6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 505.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b6cc5d9a07e1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:23:59.000Z'}}, {'blockNum': '0x7d7c36', 'uniqueId': '0x5f6eb273f08e692cd7454574cb72e6f4af4606796387bcce4510e9cff09ba90a:log:8', 'hash': '0x5f6eb273f08e692cd7454574cb72e6f4af4606796387bcce4510e9cff09ba90a', 'from': '0xaeec6f5aca72f3a005af1b3420ab8c8c7009bac8', 'to': '0xdeb834d1d59d74a3532a7b353fc0c8ff748f74a5', 'value': 195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a922b2ad8812c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:34:14.000Z'}}, {'blockNum': '0x7d7c44', 'uniqueId': '0xc9643d67fecea4687eb0f312cfa3685ef2f95e1e73ecbf7f099dba66d2cbd046:log:95', 'hash': '0xc9643d67fecea4687eb0f312cfa3685ef2f95e1e73ecbf7f099dba66d2cbd046', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0274140caebdbbc80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:38:55.000Z'}}, {'blockNum': '0x7d7c47', 'uniqueId': '0xb4796c18ee520ccbc56529fb9496268c4b53b2010794200020a8d365cc0ca4d4:log:61', 'hash': '0xb4796c18ee520ccbc56529fb9496268c4b53b2010794200020a8d365cc0ca4d4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'value': 110525.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x17679bcbaae730570000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:39:53.000Z'}}, {'blockNum': '0x7d7c5a', 'uniqueId': '0xd58d8980018205873901a6ef026ef9f52b9f788ae062d282090af05bbc27734f:log:10', 'hash': '0xd58d8980018205873901a6ef026ef9f52b9f788ae062d282090af05bbc27734f', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0274140caebdbbc80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:44:06.000Z'}}, {'blockNum': '0x7d7c6a', 'uniqueId': '0xa22db8b294fe4bee3a142f62ed5bf61720fd573ad1094e849b20fa861123d004:log:32', 'hash': '0xa22db8b294fe4bee3a142f62ed5bf61720fd573ad1094e849b20fa861123d004', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 19440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x041dd831ea7739c00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:47:46.000Z'}}, {'blockNum': '0x7d7c6d', 'uniqueId': '0x94b2c30af26193f607bfe5678ca4eeff5a1ea3e83a9d5c3de54ee614a7d851dd:log:77', 'hash': '0x94b2c30af26193f607bfe5678ca4eeff5a1ea3e83a9d5c3de54ee614a7d851dd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 56098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0be11423f40ec7480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:48:45.000Z'}}, {'blockNum': '0x7d7c6f', 'uniqueId': '0x01fae415932032dc601fdeb3be12ef87cd79bfb31b43733befd4fc9ef470c9b2:log:26', 'hash': '0x01fae415932032dc601fdeb3be12ef87cd79bfb31b43733befd4fc9ef470c9b2', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1823.7933638557554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x62de37a18e3109f98e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:49:50.000Z'}}, {'blockNum': '0x7d7c7a', 'uniqueId': '0xb83dfbcb21abd3ca519b9f9ae0c82b801d94c11470cf1c2dd4163dc8fd566b7a:log:37', 'hash': '0xb83dfbcb21abd3ca519b9f9ae0c82b801d94c11470cf1c2dd4163dc8fd566b7a', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:54:05.000Z'}}, {'blockNum': '0x7d7c7d', 'uniqueId': '0x384274a1383c4fb4472f3031f57e11014fc8a2825c55bab75bb8debb29661d7e:log:51', 'hash': '0x384274a1383c4fb4472f3031f57e11014fc8a2825c55bab75bb8debb29661d7e', 'from': '0x0cbf107b335d045b3082c8fc1038261212acec09', 'to': '0xfc1e76d665d25fef21457081761b80f7f16e88b7', 'value': 10000.274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e1dae3b470eb50000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:54:39.000Z'}}, {'blockNum': '0x7d7c7e', 'uniqueId': '0xc6dee9422642b0cff182f39ee762b5f057c426c77e9f4a831a089069af831313:log:0', 'hash': '0xc6dee9422642b0cff182f39ee762b5f057c426c77e9f4a831a089069af831313', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:54:49.000Z'}}, {'blockNum': '0x7d7c82', 'uniqueId': '0x05a5d354792040680739fdfb4a19571b45baea2db64f54967c4740d3fd8c7816:log:22', 'hash': '0x05a5d354792040680739fdfb4a19571b45baea2db64f54967c4740d3fd8c7816', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:55:38.000Z'}}, {'blockNum': '0x7d7c88', 'uniqueId': '0x8fde8c82376145908a2108f64c1af57073df3c7e04367596a65162b6069618f1:log:23', 'hash': '0x8fde8c82376145908a2108f64c1af57073df3c7e04367596a65162b6069618f1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 47354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a0710c38bc157a80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:57:36.000Z'}}, {'blockNum': '0x7d7c91', 'uniqueId': '0x2c8a6f7877d44d0fb31a51318c9b77f1323eb501bef5fb717868e0a76dd07b03:log:89', 'hash': '0x2c8a6f7877d44d0fb31a51318c9b77f1323eb501bef5fb717868e0a76dd07b03', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:58:40.000Z'}}, {'blockNum': '0x7d7c96', 'uniqueId': '0x109585ed98124de767377c90af331602349cc42875f603574d80c1cc8237ee23:log:70', 'hash': '0x109585ed98124de767377c90af331602349cc42875f603574d80c1cc8237ee23', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1796.3488843813388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x61615940e16af0ae79', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:00:57.000Z'}}, {'blockNum': '0x7d7c9e', 'uniqueId': '0x8791336e83be74abb91b5fc389b22761ed523c108c426c4140bce1b88c66d4a7:log:2', 'hash': '0x8791336e83be74abb91b5fc389b22761ed523c108c426c4140bce1b88c66d4a7', 'from': '0xc8fcc48d1454a83589169294470549a2e1713dec', 'to': '0x5896d36acdbca971db78e8ebd23cc5315d91cfcf', 'value': 29462.933251621416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x063d3055fb0a03224789', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:02:12.000Z'}}, {'blockNum': '0x7d7ca6', 'uniqueId': '0xd3501cc3a8b2be9f44a25780aee484c0f7f414f5aae6fff50e0529d8c0e1d463:log:20', 'hash': '0xd3501cc3a8b2be9f44a25780aee484c0f7f414f5aae6fff50e0529d8c0e1d463', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 83941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x11c67362e98578740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:26.000Z'}}, {'blockNum': '0x7d7ca6', 'uniqueId': '0xbed2833fd9cbc5a366e5cdf36d488ca84dad10131b6407b746af3f17fad77a91:log:23', 'hash': '0xbed2833fd9cbc5a366e5cdf36d488ca84dad10131b6407b746af3f17fad77a91', 'from': '0xfc1e76d665d25fef21457081761b80f7f16e88b7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10000.274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e1dae3b470eb4ffff', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:26.000Z'}}, {'blockNum': '0x7d7ca6', 'uniqueId': '0xdaf049c7a2d6512449283dc68d6720153c4b1be680545d1f253c0edeb073efbf:log:32', 'hash': '0xdaf049c7a2d6512449283dc68d6720153c4b1be680545d1f253c0edeb073efbf', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 42578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x09042873041676080000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:26.000Z'}}, {'blockNum': '0x7d7ca7', 'uniqueId': '0xf31f77347cdf2b93ac2423c3ed2b9a969659a2a49835deaa36d24619bb747380:log:41', 'hash': '0xf31f77347cdf2b93ac2423c3ed2b9a969659a2a49835deaa36d24619bb747380', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:40.000Z'}}, {'blockNum': '0x7d7ca7', 'uniqueId': '0x5131f66f2db82f4e42ad40399f171ec0c33a9d5946291c910abb0b4fe43c7d74:log:46', 'hash': '0x5131f66f2db82f4e42ad40399f171ec0c33a9d5946291c910abb0b4fe43c7d74', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0240d98a4190d3a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:40.000Z'}}, {'blockNum': '0x7d7ca9', 'uniqueId': '0x11e6ac9e7b1b4fdc9fca14fc56610f62f69acc9b30fb1c30ef0e82d1366bf1ca:log:7', 'hash': '0x11e6ac9e7b1b4fdc9fca14fc56610f62f69acc9b30fb1c30ef0e82d1366bf1ca', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0be11423f40ec7480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:04:12.000Z'}}, {'blockNum': '0x7d7ca9', 'uniqueId': '0xc71ef5e08f3b291d1cd57f9c6df7f561092edff3850995d50245022128e52f4f:log:8', 'hash': '0xc71ef5e08f3b291d1cd57f9c6df7f561092edff3850995d50245022128e52f4f', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:04:12.000Z'}}, {'blockNum': '0x7d7cb7', 'uniqueId': '0x0bd879d3b48b1ce2792d0e11996848aafc269db4dd0e15e750a95d437f2807c3:log:0', 'hash': '0x0bd879d3b48b1ce2792d0e11996848aafc269db4dd0e15e750a95d437f2807c3', 'from': '0x5896d36acdbca971db78e8ebd23cc5315d91cfcf', 'to': '0xac63f8b7e5230db113d03827f826720b45f0be20', 'value': 29462.933251621416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x063d3055fb0a03224789', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:07:45.000Z'}}, {'blockNum': '0x7d7cbd', 'uniqueId': '0x58ffc3af05951fdb5c69df89c498d1e16ad38c6fd83c645bcfea305f19c785cc:log:11', 'hash': '0x58ffc3af05951fdb5c69df89c498d1e16ad38c6fd83c645bcfea305f19c785cc', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:02.000Z'}}, {'blockNum': '0x7d7cbf', 'uniqueId': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567:log:42', 'hash': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.9190516617144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3634aa17b029f49b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:19.000Z'}}, {'blockNum': '0x7d7cbf', 'uniqueId': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567:log:44', 'hash': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 999.9190516617144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3634aa17b029f49b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:19.000Z'}}, {'blockNum': '0x7d7cc2', 'uniqueId': '0x15eb8f4cd45623c217a963673a58c4725b179637de8580dad5c73905cc34cf0f:log:133', 'hash': '0x15eb8f4cd45623c217a963673a58c4725b179637de8580dad5c73905cc34cf0f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 11874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0283b0da38da0c480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:47.000Z'}}, {'blockNum': '0x7d7cd9', 'uniqueId': '0x6f54831c07e9d71975afe954927c5aa12b03045e887efc922c58606dd43125ea:log:29', 'hash': '0x6f54831c07e9d71975afe954927c5aa12b03045e887efc922c58606dd43125ea', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0240d98a4190d3a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:13:56.000Z'}}, {'blockNum': '0x7d7cd9', 'uniqueId': '0x6ce6a493675ac660458766d30d743d9d4bb1adbfe678e3bbf7d2c4782c11fe4a:log:33', 'hash': '0x6ce6a493675ac660458766d30d743d9d4bb1adbfe678e3bbf7d2c4782c11fe4a', 'from': '0xac63f8b7e5230db113d03827f826720b45f0be20', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29462.933251621416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x063d3055fb0a03224789', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:13:56.000Z'}}, {'blockNum': '0x7d7cea', 'uniqueId': '0xcc97a6b717554327e44d72c89a88061a65ab5b8d0e5922960e7bf599252acc67:log:37', 'hash': '0xcc97a6b717554327e44d72c89a88061a65ab5b8d0e5922960e7bf599252acc67', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025e64ef36082f880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:16:38.000Z'}}, {'blockNum': '0x7d7cf1', 'uniqueId': '0xd1520dd21ce38f1cc6cb368b645c951fb0b4b6d25d8b623cac86b547cb1c9f1d:log:0', 'hash': '0xd1520dd21ce38f1cc6cb368b645c951fb0b4b6d25d8b623cac86b547cb1c9f1d', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:18:00.000Z'}}, {'blockNum': '0x7d7cfd', 'uniqueId': '0x172584c7ac964ee8e7d42e160a028451fc62c7e47440e4843abaf220012d7b95:log:4', 'hash': '0x172584c7ac964ee8e7d42e160a028451fc62c7e47440e4843abaf220012d7b95', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1327.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x47f29998316a700000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:20:23.000Z'}}, {'blockNum': '0x7d7d02', 'uniqueId': '0x9faf435460ea934818d25686b8276e0238648294904b07d62fb53bef5f0b609f:log:85', 'hash': '0x9faf435460ea934818d25686b8276e0238648294904b07d62fb53bef5f0b609f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 14536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0313ff8608f8a6200000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:21:47.000Z'}}, {'blockNum': '0x7d7d0b', 'uniqueId': '0xe743a7e9fc51975b711a048b5176beccfa6c8bba5757da9bcfacb0236aee767e:log:19', 'hash': '0xe743a7e9fc51975b711a048b5176beccfa6c8bba5757da9bcfacb0236aee767e', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025e64ef36082f880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:23:58.000Z'}}, {'blockNum': '0x7d7d17', 'uniqueId': '0x096210658de3875a49081584d535855b70366da5932cac0a2647e073290c63e1:log:33', 'hash': '0x096210658de3875a49081584d535855b70366da5932cac0a2647e073290c63e1', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 3999.9190516617145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xd8d6072101c5d49b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:27:19.000Z'}}, {'blockNum': '0x7d7d17', 'uniqueId': '0xe5fb6963f2374854f654e200da7c5f933b1d47c5dcf0ec1e0205e062db6d031b:log:36', 'hash': '0xe5fb6963f2374854f654e200da7c5f933b1d47c5dcf0ec1e0205e062db6d031b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'value': 105287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x164b9ea51990f8bc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:27:19.000Z'}}, {'blockNum': '0x7d7d1c', 'uniqueId': '0xc464a842487c6b9f9055864f183e4d43fafe6ce76505a7394c6a3c186946a588:log:21', 'hash': '0xc464a842487c6b9f9055864f183e4d43fafe6ce76505a7394c6a3c186946a588', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 22836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04d5f12991afc4500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:28:32.000Z'}}, {'blockNum': '0x7d7d1c', 'uniqueId': '0x7b8738fb44d9e01250625ab6f48a4b240d52e11a787dc066432ad59f9c087406:log:22', 'hash': '0x7b8738fb44d9e01250625ab6f48a4b240d52e11a787dc066432ad59f9c087406', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 74984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe0e40a7dbdc2a00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:28:32.000Z'}}, {'blockNum': '0x7d7d1e', 'uniqueId': '0x3f0073f58aab7100112fe90fce336b1dff11bdc725b90b107278dd091ef5f604:log:48', 'hash': '0x3f0073f58aab7100112fe90fce336b1dff11bdc725b90b107278dd091ef5f604', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:29:02.000Z'}}, {'blockNum': '0x7d7d1e', 'uniqueId': '0xff483aab1845649c0b55ed122ef19970f056b06334b59b1ec77dce1793a9b6ac:log:50', 'hash': '0xff483aab1845649c0b55ed122ef19970f056b06334b59b1ec77dce1793a9b6ac', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:29:02.000Z'}}, {'blockNum': '0x7d7d25', 'uniqueId': '0xabd65c0a758536ebb6e9aabb3559db8566bdf4b9ee3134d305813395a3229b8a:log:40', 'hash': '0xabd65c0a758536ebb6e9aabb3559db8566bdf4b9ee3134d305813395a3229b8a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'value': 1167.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3f51335db125260000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:30:47.000Z'}}, {'blockNum': '0x7d7d2d', 'uniqueId': '0xd85a5759dd0c38174ff93f36c981c90d386d979a948638cf761037c858653b26:log:47', 'hash': '0xd85a5759dd0c38174ff93f36c981c90d386d979a948638cf761037c858653b26', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:32:14.000Z'}}, {'blockNum': '0x7d7d30', 'uniqueId': '0x977a3bd91e33b0df59cec6612bca4c8f09a50c4578c8851fb1a4981b5cc01d74:log:50', 'hash': '0x977a3bd91e33b0df59cec6612bca4c8f09a50c4578c8851fb1a4981b5cc01d74', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:33:05.000Z'}}, {'blockNum': '0x7d7d37', 'uniqueId': '0x83874c4a1c691d66659bb1b2fa39cae150d85bb8ec03e8ed6f69904700b099e7:log:42', 'hash': '0x83874c4a1c691d66659bb1b2fa39cae150d85bb8ec03e8ed6f69904700b099e7', 'from': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1167.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3f51335db125260000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:34:34.000Z'}}, {'blockNum': '0x7d7d37', 'uniqueId': '0xb4ccfc9cc531ff677e2b4d1c93f4a60b7154d8a16dd8e0b9a42c65507d6086b3:log:114', 'hash': '0xb4ccfc9cc531ff677e2b4d1c93f4a60b7154d8a16dd8e0b9a42c65507d6086b3', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:34:34.000Z'}}, {'blockNum': '0x7d7d66', 'uniqueId': '0xce41cd997607714207827d03e5829b65a02a0e02504b7263b0f3ee9471821f1f:log:4', 'hash': '0xce41cd997607714207827d03e5829b65a02a0e02504b7263b0f3ee9471821f1f', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:44:00.000Z'}}, {'blockNum': '0x7d7d66', 'uniqueId': '0x0b7018844057fa5c56ca2a8b2a2605d5b3fdfba575b92fb4fb9c6bfd3ce912ac:log:5', 'hash': '0x0b7018844057fa5c56ca2a8b2a2605d5b3fdfba575b92fb4fb9c6bfd3ce912ac', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4999.919051661715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f0bd0cec7a4749b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:44:00.000Z'}}, {'blockNum': '0x7d7d7f', 'uniqueId': '0x252ef8b6bcfc7e8dc005a7c76a99084dcc2398669e9304b43e3c71d323af7383:log:38', 'hash': '0x252ef8b6bcfc7e8dc005a7c76a99084dcc2398669e9304b43e3c71d323af7383', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 887.14859437751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3017a8f2458a973260', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:49:17.000Z'}}, {'blockNum': '0x7d7d82', 'uniqueId': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b:log:98', 'hash': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.7914381942751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632e4b7ea66ae3e92', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:49:46.000Z'}}, {'blockNum': '0x7d7d82', 'uniqueId': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b:log:100', 'hash': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 999.7914381942751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632e4b7ea66ae3e92', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:49:46.000Z'}}, {'blockNum': '0x7d7d85', 'uniqueId': '0x1462c300650c10b3c98effea6b2103175db5d7f865b8b4302ec0ccea6a9f3db2:log:99', 'hash': '0x1462c300650c10b3c98effea6b2103175db5d7f865b8b4302ec0ccea6a9f3db2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029cd8255e7971880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:50:37.000Z'}}, {'blockNum': '0x7d7d94', 'uniqueId': '0x8772ab71273b801fd5a7d527c006035ab56a3011ef9e0042cc66e0a484a6629a:log:11', 'hash': '0x8772ab71273b801fd5a7d527c006035ab56a3011ef9e0042cc66e0a484a6629a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029cd8255e7971880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:53:58.000Z'}}, {'blockNum': '0x7d7da3', 'uniqueId': '0x3cd024433b1fbdb4b5cbfbd339df7de2d08e44c41f4036e0ec403d9b55791520:log:13', 'hash': '0x3cd024433b1fbdb4b5cbfbd339df7de2d08e44c41f4036e0ec403d9b55791520', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1796.7479674796748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6166e314d8131f7acb', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:57:49.000Z'}}, {'blockNum': '0x7d7db0', 'uniqueId': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b:log:73', 'hash': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 891.7577176217364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x30579fd7712cb3986b', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:00.000Z'}}, {'blockNum': '0x7d7db0', 'uniqueId': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b:log:75', 'hash': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 891.7577176217364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x30579fd7712cb3986b', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:00.000Z'}}, {'blockNum': '0x7d7db0', 'uniqueId': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b:log:80', 'hash': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 891.7577176217366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x30579fd7712cb60000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:00.000Z'}}, {'blockNum': '0x7d7db4', 'uniqueId': '0x184cb06d1c32e3ff60959f224e20c239c670c0819a6941dafbaca3e451775010:log:38', 'hash': '0x184cb06d1c32e3ff60959f224e20c239c670c0819a6941dafbaca3e451775010', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 999.7914381942751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632e4b7ea66ae3e92', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:51.000Z'}}, {'blockNum': '0x7d7dbe', 'uniqueId': '0x4a6e6946c58522628197752cb353852b9411bb234ff9da9c9c76a9abb0a31f52:log:6', 'hash': '0x4a6e6946c58522628197752cb353852b9411bb234ff9da9c9c76a9abb0a31f52', 'from': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:07.000Z'}}, {'blockNum': '0x7d7dbe', 'uniqueId': '0x0a714fd392692a4a7c653f1b7db1b9b42b25c9d7d0d2126522884a47052594fc:log:12', 'hash': '0x0a714fd392692a4a7c653f1b7db1b9b42b25c9d7d0d2126522884a47052594fc', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe0e40a7dbdc2a00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:07.000Z'}}, {'blockNum': '0x7d7dbe', 'uniqueId': '0xb9fcae2060b37669f859ed4b01de8eba3f807352dceaf1d4926ae4b8b1a4aa45:log:19', 'hash': '0xb9fcae2060b37669f859ed4b01de8eba3f807352dceaf1d4926ae4b8b1a4aa45', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 49246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a6da189d38276b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:07.000Z'}}, {'blockNum': '0x7d7dc0', 'uniqueId': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e:log:23', 'hash': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.7839831119849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632ca3b8ecaff779c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:24.000Z'}}, {'blockNum': '0x7d7dc0', 'uniqueId': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e:log:25', 'hash': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 999.7839831119849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632ca3b8ecaff779c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:24.000Z'}}, {'blockNum': '0x7d7dcd', 'uniqueId': '0xaa9e2e3faa1fda7076cee056b410ca980937e7377479772c7291bb79896e5582:log:32', 'hash': '0xaa9e2e3faa1fda7076cee056b410ca980937e7377479772c7291bb79896e5582', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 999.7839831119849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632ca3b8ecaff779c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:08:43.000Z'}}, {'blockNum': '0x7d7ddb', 'uniqueId': '0x69cb10281165bc1847bea40bb6de2220cd0efab885bfd90b6ecf5619798ccfe4:log:4', 'hash': '0x69cb10281165bc1847bea40bb6de2220cd0efab885bfd90b6ecf5619798ccfe4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbb08e572938fbd418f7e858b4727945f5ebe6575', 'value': 77006.252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x104e846cd56415de0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:11:55.000Z'}}, {'blockNum': '0x7d7de4', 'uniqueId': '0xf479ca01536108faaf1eae64702adcea3a1890cb622efe45129d2c62f9d2c12d:log:17', 'hash': '0xf479ca01536108faaf1eae64702adcea3a1890cb622efe45129d2c62f9d2c12d', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1999.57542130626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6c65aef37931adb62e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:13:58.000Z'}}, {'blockNum': '0x7d7df6', 'uniqueId': '0xbb7389bd41d48e93301fc5e4adea885b4898083f965bc27cc4af4dce70cecd4f:log:199', 'hash': '0xbb7389bd41d48e93301fc5e4adea885b4898083f965bc27cc4af4dce70cecd4f', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x807edd9751b0f245c9990f4a9bc9b74ef5a116e6', 'value': 3283.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xb1ffb75d457b1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:19:57.000Z'}}, {'blockNum': '0x7d7df8', 'uniqueId': '0x948868effff2966feb0d2b502d725b4e3d8263fd1237ff71ae47e083c5cec154:log:3', 'hash': '0x948868effff2966feb0d2b502d725b4e3d8263fd1237ff71ae47e083c5cec154', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xebcada62ac4b67f84fe1bf31fc81d00b98286337', 'value': 2056.806896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6f7fedfe7b65cf0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:20:08.000Z'}}, {'blockNum': '0x7d7e01', 'uniqueId': '0xda9f2fd1a13048154ecc8df99e341f4cdf04146c3bdfadf0a2216539c27d84c1:log:21', 'hash': '0xda9f2fd1a13048154ecc8df99e341f4cdf04146c3bdfadf0a2216539c27d84c1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe987fa5b20167c6d7159324387e314f03fa4a8b0', 'value': 102239.016498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x15a663606b67ef9d2000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:22:34.000Z'}}, {'blockNum': '0x7d7e10', 'uniqueId': '0x4ee2a2d8e754da06710c67c4b27fbf36cd91c0a8f541af76e6a17d169d60a66e:log:17', 'hash': '0x4ee2a2d8e754da06710c67c4b27fbf36cd91c0a8f541af76e6a17d169d60a66e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeba579f59f375780ccb14b1a41236059a2ef6079', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:24:18.000Z'}}, {'blockNum': '0x7d7e26', 'uniqueId': '0x6617a59b6efd224a0adb696fcc43b31f7adc820c49bdb5a2479227ddea6cd12a:log:1', 'hash': '0x6617a59b6efd224a0adb696fcc43b31f7adc820c49bdb5a2479227ddea6cd12a', 'from': '0x859cdc3626614143526f20c4eada64a448198668', 'to': '0x3413b9768ce97d46bb274370cea03eaceedd37d1', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:29:58.000Z'}}, {'blockNum': '0x7d7e27', 'uniqueId': '0xb79dc129ea54b03f29c70991a79742bf539008a51ad552afd2c17a368f076b07:log:125', 'hash': '0xb79dc129ea54b03f29c70991a79742bf539008a51ad552afd2c17a368f076b07', 'from': '0xeba579f59f375780ccb14b1a41236059a2ef6079', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:30:11.000Z'}}, {'blockNum': '0x7d7e29', 'uniqueId': '0xa217b1d26302a087fb4295dead90f532cf366c304c30a39c9ae38547678af315:log:37', 'hash': '0xa217b1d26302a087fb4295dead90f532cf366c304c30a39c9ae38547678af315', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:30:57.000Z'}}, {'blockNum': '0x7d7e33', 'uniqueId': '0xc96d94b48e1fe00e1579642eade746aaa6e30bfba57f10723b24fe2a5de86b0f:log:29', 'hash': '0xc96d94b48e1fe00e1579642eade746aaa6e30bfba57f10723b24fe2a5de86b0f', 'from': '0x807edd9751b0f245c9990f4a9bc9b74ef5a116e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3283.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xb1ffb75d457b1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:34:02.000Z'}}, {'blockNum': '0x7d7e33', 'uniqueId': '0x5b4ba9de6d70721cf55103e6a43bed036062f9aa2c6741d1ba84fb43e35cb76b:log:36', 'hash': '0x5b4ba9de6d70721cf55103e6a43bed036062f9aa2c6741d1ba84fb43e35cb76b', 'from': '0xbb08e572938fbd418f7e858b4727945f5ebe6575', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77006.252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x104e846cd56415de0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:34:02.000Z'}}, {'blockNum': '0x7d7e5f', 'uniqueId': '0x25fb46bf278b2981f8a484012fdac743d73a4ca219bbe15557da60dd1c604e6f:log:46', 'hash': '0x25fb46bf278b2981f8a484012fdac743d73a4ca219bbe15557da60dd1c604e6f', 'from': '0x3413b9768ce97d46bb274370cea03eaceedd37d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:43:53.000Z'}}, {'blockNum': '0x7d7e5f', 'uniqueId': '0xae516cf0fb7ff9b783c84e34d6224c5f1ed83f74eec82f586b8867e9ed01f8d1:log:50', 'hash': '0xae516cf0fb7ff9b783c84e34d6224c5f1ed83f74eec82f586b8867e9ed01f8d1', 'from': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x152a4ce4323444f80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:43:53.000Z'}}]}}
Number of returned transfers:  293
Answer is complete
 
symbol             NAV
group              CPS
date        2019-08-01
hour             20:00
exchange       binance
Name: 405, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-08-01 20:00:00 2019-08-01 08:00:00 2019-08-02 08:00:00
Unix timestamps:  1564639200.0 1564725600.0
Hex Block Numbers:  0x7e15d5 0x7e2ec1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             CVC
group              CPS
date        2019-08-13
hour             20:00
exchange       binance
Name: 406, dtype: object
HERE
 Symbol: CVC, Contract: 0x41e5560054824ea6b0732e656e3ad64e20e94e45
Datetime timestamps:  2019-08-13 20:00:00 2019-08-13 08:00:00 2019-08-14 08:00:00
Unix timestamps:  1565676000.0 1565762400.0
Hex Block Numbers:  0x7f43ed 0x7f5d01
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7f43f1', 'uniqueId': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807:log:16', 'hash': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807', 'from': '0x3840feee6e82d07dea385b011b597a0ddce74aa7', 'to': '0x0e17fdee2528ee4b6c076fd5fe725b05a6d0566a', 'value': 512.34814767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bedd53b2f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:01:43.000Z'}}, {'blockNum': '0x7f43f5', 'uniqueId': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2:log:0', 'hash': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:02:02.000Z'}}, {'blockNum': '0x7f441b', 'uniqueId': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358:log:132', 'hash': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:10:04.000Z'}}, {'blockNum': '0x7f4420', 'uniqueId': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4:log:96', 'hash': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:12:05.000Z'}}, {'blockNum': '0x7f4472', 'uniqueId': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f:log:100', 'hash': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:32:46.000Z'}}, {'blockNum': '0x7f4477', 'uniqueId': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602:log:68', 'hash': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:33:47.000Z'}}, {'blockNum': '0x7f4487', 'uniqueId': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf:log:50', 'hash': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:36:43.000Z'}}, {'blockNum': '0x7f448b', 'uniqueId': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae:log:95', 'hash': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:37:03.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2:log:94', 'hash': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2:log:96', 'hash': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6:log:98', 'hash': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f452e', 'uniqueId': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0:log:30', 'hash': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:11:40.000Z'}}, {'blockNum': '0x7f454c', 'uniqueId': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f:log:101', 'hash': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:19:39.000Z'}}, {'blockNum': '0x7f4568', 'uniqueId': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181:log:27', 'hash': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:25:06.000Z'}}, {'blockNum': '0x7f4570', 'uniqueId': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b:log:57', 'hash': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:26:11.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d:log:77', 'hash': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc:log:79', 'hash': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f4581', 'uniqueId': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845:log:105', 'hash': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:30:17.000Z'}}, {'blockNum': '0x7f45b2', 'uniqueId': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848:log:211', 'hash': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:41:43.000Z'}}, {'blockNum': '0x7f462e', 'uniqueId': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093:log:103', 'hash': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:12:01.000Z'}}, {'blockNum': '0x7f4680', 'uniqueId': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84:log:119', 'hash': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:31:07.000Z'}}, {'blockNum': '0x7f46af', 'uniqueId': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06:log:84', 'hash': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:41:35.000Z'}}, {'blockNum': '0x7f4709', 'uniqueId': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341:log:23', 'hash': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:01:50.000Z'}}, {'blockNum': '0x7f470a', 'uniqueId': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec:log:44', 'hash': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec', 'from': '0xaf37117018271a4ab607001179ef389f11c3e580', 'to': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:02:14.000Z'}}, {'blockNum': '0x7f4710', 'uniqueId': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df:log:92', 'hash': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:03:01.000Z'}}, {'blockNum': '0x7f4715', 'uniqueId': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e:log:61', 'hash': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:04:37.000Z'}}, {'blockNum': '0x7f471e', 'uniqueId': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374:log:9', 'hash': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374', 'from': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'to': '0x842a499c04afab73af5b1940ee492cd3f7f3eb2e', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:06:51.000Z'}}, {'blockNum': '0x7f4739', 'uniqueId': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966:log:0', 'hash': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:14:48.000Z'}}, {'blockNum': '0x7f474a', 'uniqueId': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda:log:61', 'hash': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:17:53.000Z'}}, {'blockNum': '0x7f475c', 'uniqueId': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192:log:105', 'hash': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:20:00.000Z'}}, {'blockNum': '0x7f4764', 'uniqueId': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8:log:133', 'hash': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:21:21.000Z'}}, {'blockNum': '0x7f4777', 'uniqueId': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b:log:0', 'hash': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:25:07.000Z'}}, {'blockNum': '0x7f47cf', 'uniqueId': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30:log:3', 'hash': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:43:44.000Z'}}, {'blockNum': '0x7f482f', 'uniqueId': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302:log:0', 'hash': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302', 'from': '0x9ba2cb2df0d7d5b3fb1938ce5619339f723e4eb6', 'to': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:03:25.000Z'}}, {'blockNum': '0x7f4849', 'uniqueId': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f:log:14', 'hash': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f', 'from': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:07:13.000Z'}}, {'blockNum': '0x7f485c', 'uniqueId': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56:log:63', 'hash': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:11:46.000Z'}}, {'blockNum': '0x7f48b4', 'uniqueId': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b:log:41', 'hash': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:28:54.000Z'}}, {'blockNum': '0x7f48de', 'uniqueId': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0:log:33', 'hash': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:39:41.000Z'}}, {'blockNum': '0x7f48e7', 'uniqueId': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579:log:69', 'hash': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:41:09.000Z'}}, {'blockNum': '0x7f4910', 'uniqueId': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812:log:0', 'hash': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 195846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11cfe5204600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:50:46.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e:log:47', 'hash': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed:log:49', 'hash': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f492f', 'uniqueId': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6:log:12', 'hash': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:58:10.000Z'}}, {'blockNum': '0x7f4938', 'uniqueId': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80:log:100', 'hash': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 424709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x26a086e86500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:00:11.000Z'}}, {'blockNum': '0x7f4968', 'uniqueId': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6:log:2', 'hash': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:11:13.000Z'}}, {'blockNum': '0x7f4976', 'uniqueId': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231:log:33', 'hash': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:14:45.000Z'}}, {'blockNum': '0x7f4994', 'uniqueId': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e:log:26', 'hash': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:22:07.000Z'}}, {'blockNum': '0x7f49b0', 'uniqueId': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc:log:72', 'hash': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:30:06.000Z'}}, {'blockNum': '0x7f4a4a', 'uniqueId': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d:log:0', 'hash': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:28.000Z'}}, {'blockNum': '0x7f4a4b', 'uniqueId': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab:log:115', 'hash': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab', 'from': '0x6d367f8f9e9c647acf649de37306ff896d09f1f5', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 22303.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02074d9a8980', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:50.000Z'}}, {'blockNum': '0x7f4a5d', 'uniqueId': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc:log:82', 'hash': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:11.000Z'}}, {'blockNum': '0x7f4a61', 'uniqueId': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323:log:0', 'hash': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x69412cde74814fee9553e22a424a0b2889725c5e', 'value': 1034.934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1818aff5c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:36.000Z'}}, {'blockNum': '0x7f4a67', 'uniqueId': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf:log:31', 'hash': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:12:01.000Z'}}, {'blockNum': '0x7f4a87', 'uniqueId': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2:log:104', 'hash': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:28.000Z'}}, {'blockNum': '0x7f4a89', 'uniqueId': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197:log:105', 'hash': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:56.000Z'}}, {'blockNum': '0x7f4aa3', 'uniqueId': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90:log:1', 'hash': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:25:13.000Z'}}, {'blockNum': '0x7f4ab2', 'uniqueId': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588:log:80', 'hash': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:29:59.000Z'}}, {'blockNum': '0x7f4ac2', 'uniqueId': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e:log:94', 'hash': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:33:08.000Z'}}, {'blockNum': '0x7f4ac7', 'uniqueId': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8:log:103', 'hash': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:34:34.000Z'}}, {'blockNum': '0x7f4ad6', 'uniqueId': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4:log:52', 'hash': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:38:58.000Z'}}, {'blockNum': '0x7f4ad9', 'uniqueId': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea:log:18', 'hash': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:39:13.000Z'}}, {'blockNum': '0x7f4ae4', 'uniqueId': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e:log:3', 'hash': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:41:49.000Z'}}, {'blockNum': '0x7f4aec', 'uniqueId': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f:log:105', 'hash': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:44:26.000Z'}}, {'blockNum': '0x7f4aef', 'uniqueId': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f:log:2', 'hash': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:45:02.000Z'}}, {'blockNum': '0x7f4b02', 'uniqueId': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0:log:64', 'hash': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:49:50.000Z'}}, {'blockNum': '0x7f4b15', 'uniqueId': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2:log:124', 'hash': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:54:33.000Z'}}, {'blockNum': '0x7f4b26', 'uniqueId': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5:log:116', 'hash': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:59:31.000Z'}}, {'blockNum': '0x7f4b34', 'uniqueId': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4:log:106', 'hash': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:03:45.000Z'}}, {'blockNum': '0x7f4b3a', 'uniqueId': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8:log:83', 'hash': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8', 'from': '0x4003caeff9d6eb5af6927b0842c90f43f31d25d1', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:05:13.000Z'}}, {'blockNum': '0x7f4b51', 'uniqueId': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794:log:79', 'hash': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794', 'from': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:10:13.000Z'}}, {'blockNum': '0x7f4b55', 'uniqueId': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9:log:81', 'hash': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:11:44.000Z'}}, {'blockNum': '0x7f4b5b', 'uniqueId': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56:log:27', 'hash': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:12:40.000Z'}}, {'blockNum': '0x7f4b76', 'uniqueId': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072:log:25', 'hash': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:17:42.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f:log:158', 'hash': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52:log:160', 'hash': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4bce', 'uniqueId': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170:log:2', 'hash': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93234.62781364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x087ac9afe9b4', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:39:22.000Z'}}, {'blockNum': '0x7f4bd1', 'uniqueId': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517:log:3', 'hash': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 115000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0a758d6a3800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:40:20.000Z'}}, {'blockNum': '0x7f4bd3', 'uniqueId': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3:log:1', 'hash': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3', 'from': '0xc928a3ed8f5f723007b7b1e68d9f918d10dae923', 'to': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:41:44.000Z'}}, {'blockNum': '0x7f4bd7', 'uniqueId': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1:log:1', 'hash': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:43:02.000Z'}}, {'blockNum': '0x7f4bdd', 'uniqueId': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2:log:0', 'hash': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:44:30.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329:log:72', 'hash': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac:log:84', 'hash': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x164859cc0800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bf1', 'uniqueId': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52:log:37', 'hash': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52', 'from': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:10.000Z'}}, {'blockNum': '0x7f4bf2', 'uniqueId': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09:log:117', 'hash': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:14.000Z'}}, {'blockNum': '0x7f4bfc', 'uniqueId': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263:log:44', 'hash': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263', 'from': '0xd65e1f33a142d57b431b65d0774d514948a0e0bc', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 20081.3516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d38e2ed0c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:52:42.000Z'}}, {'blockNum': '0x7f4c01', 'uniqueId': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3:log:27', 'hash': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 20050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d2d3501200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:24.000Z'}}, {'blockNum': '0x7f4c06', 'uniqueId': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825:log:6', 'hash': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:59.000Z'}}, {'blockNum': '0x7f4c28', 'uniqueId': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257:log:13', 'hash': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257', 'from': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:00:09.000Z'}}, {'blockNum': '0x7f4c3e', 'uniqueId': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec:log:127', 'hash': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:05:57.000Z'}}, {'blockNum': '0x7f4c40', 'uniqueId': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e:log:117', 'hash': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:06:11.000Z'}}, {'blockNum': '0x7f4c50', 'uniqueId': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45:log:75', 'hash': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:09:34.000Z'}}, {'blockNum': '0x7f4c55', 'uniqueId': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c:log:134', 'hash': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:11:17.000Z'}}, {'blockNum': '0x7f4c59', 'uniqueId': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486:log:6', 'hash': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:13:44.000Z'}}, {'blockNum': '0x7f4c80', 'uniqueId': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a:log:6', 'hash': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe905e6691019605015334b20bdf2882f65de0153', 'value': 1241.769537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1ce985f164', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:20:55.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63:log:44', 'hash': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01747790', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876:log:89', 'hash': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c94', 'uniqueId': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7:log:95', 'hash': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:10.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f:log:18', 'hash': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01767360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef:log:70', 'hash': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8:log:72', 'hash': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c98', 'uniqueId': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416:log:120', 'hash': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:57.000Z'}}, {'blockNum': '0x7f4ca2', 'uniqueId': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b:log:107', 'hash': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:30:09.000Z'}}, {'blockNum': '0x7f4cc0', 'uniqueId': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06:log:22', 'hash': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:35:36.000Z'}}, {'blockNum': '0x7f4cf2', 'uniqueId': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70:log:86', 'hash': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70', 'from': '0xcc6648fe5eccd8772c9a19d704370d708af02466', 'to': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:46:36.000Z'}}, {'blockNum': '0x7f4d06', 'uniqueId': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991:log:65', 'hash': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:20.000Z'}}, {'blockNum': '0x7f4d08', 'uniqueId': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7:log:75', 'hash': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:31.000Z'}}, {'blockNum': '0x7f4d09', 'uniqueId': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32:log:67', 'hash': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:01.000Z'}}, {'blockNum': '0x7f4d0b', 'uniqueId': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d:log:34', 'hash': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:54.000Z'}}, {'blockNum': '0x7f4d0e', 'uniqueId': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f:log:19', 'hash': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:52:27.000Z'}}, {'blockNum': '0x7f4d13', 'uniqueId': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1:log:82', 'hash': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:22.000Z'}}, {'blockNum': '0x7f4d14', 'uniqueId': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922:log:7', 'hash': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:28.000Z'}}, {'blockNum': '0x7f4d15', 'uniqueId': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb:log:25', 'hash': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:38.000Z'}}, {'blockNum': '0x7f4d1c', 'uniqueId': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf:log:57', 'hash': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:55:36.000Z'}}, {'blockNum': '0x7f4d1f', 'uniqueId': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc:log:31', 'hash': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1740.287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2884eb3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:24.000Z'}}, {'blockNum': '0x7f4d21', 'uniqueId': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b:log:37', 'hash': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:29.000Z'}}, {'blockNum': '0x7f4d2a', 'uniqueId': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58:log:30', 'hash': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:59:01.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2:log:32', 'hash': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1:log:34', 'hash': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a:log:36', 'hash': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4db9', 'uniqueId': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f:log:71', 'hash': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:04.000Z'}}, {'blockNum': '0x7f4dba', 'uniqueId': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a:log:128', 'hash': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:15.000Z'}}, {'blockNum': '0x7f4dd8', 'uniqueId': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2:log:2', 'hash': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2', 'from': '0x1b9e3ca833bccc64ad46e016c6c8aebf7e27259d', 'to': '0x9aa22e4ee96e16e598e430eb0c5fff699522e510', 'value': 1980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e19b83c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:38:11.000Z'}}, {'blockNum': '0x7f4de9', 'uniqueId': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041:log:51', 'hash': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:41:33.000Z'}}, {'blockNum': '0x7f4dfd', 'uniqueId': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4:log:4', 'hash': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4', 'from': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:45:08.000Z'}}, {'blockNum': '0x7f4e91', 'uniqueId': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95:log:52', 'hash': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:21:59.000Z'}}, {'blockNum': '0x7f4e9e', 'uniqueId': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482:log:111', 'hash': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:23:12.000Z'}}, {'blockNum': '0x7f4eaf', 'uniqueId': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159:log:30', 'hash': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:17.000Z'}}, {'blockNum': '0x7f4eb1', 'uniqueId': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3:log:101', 'hash': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:56.000Z'}}, {'blockNum': '0x7f4eb3', 'uniqueId': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded:log:29', 'hash': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:48.000Z'}}, {'blockNum': '0x7f4eb5', 'uniqueId': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4:log:13', 'hash': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:55.000Z'}}, {'blockNum': '0x7f4eb6', 'uniqueId': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a:log:36', 'hash': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:03.000Z'}}, {'blockNum': '0x7f4eba', 'uniqueId': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b:log:70', 'hash': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:34.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf:log:79', 'hash': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0:log:81', 'hash': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebd', 'uniqueId': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84:log:56', 'hash': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:06.000Z'}}, {'blockNum': '0x7f4ebf', 'uniqueId': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f:log:47', 'hash': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:24.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62:log:153', 'hash': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58:log:156', 'hash': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce:log:158', 'hash': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec3', 'uniqueId': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7:log:108', 'hash': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:56.000Z'}}, {'blockNum': '0x7f4ec9', 'uniqueId': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5:log:109', 'hash': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176c180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:30:32.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2:log:55', 'hash': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e:log:57', 'hash': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4ecb', 'uniqueId': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a:log:93', 'hash': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:18.000Z'}}, {'blockNum': '0x7f4ecc', 'uniqueId': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71:log:18', 'hash': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:25.000Z'}}, {'blockNum': '0x7f4ece', 'uniqueId': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a:log:148', 'hash': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:56.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba:log:52', 'hash': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2:log:54', 'hash': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f:log:56', 'hash': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc:log:44', 'hash': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43:log:46', 'hash': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f26', 'uniqueId': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e:log:113', 'hash': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:51:05.000Z'}}, {'blockNum': '0x7f4f38', 'uniqueId': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71:log:49', 'hash': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:56:01.000Z'}}, {'blockNum': '0x7f4f49', 'uniqueId': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca:log:126', 'hash': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:09.000Z'}}, {'blockNum': '0x7f4f4a', 'uniqueId': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8:log:0', 'hash': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49866.00463223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0489088c9b77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:18.000Z'}}, {'blockNum': '0x7f4f5e', 'uniqueId': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230:log:21', 'hash': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc9f42134fb5f8703177352093111372dfafcb550', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:02:56.000Z'}}, {'blockNum': '0x7f4f6b', 'uniqueId': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41:log:154', 'hash': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:05:13.000Z'}}, {'blockNum': '0x7f4f7b', 'uniqueId': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1:log:151', 'hash': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:09:08.000Z'}}, {'blockNum': '0x7f4f7d', 'uniqueId': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03:log:118', 'hash': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03', 'from': '0xc9f42134fb5f8703177352093111372dfafcb550', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:12.000Z'}}, {'blockNum': '0x7f4f7e', 'uniqueId': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8:log:82', 'hash': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:22.000Z'}}, {'blockNum': '0x7f4f7f', 'uniqueId': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6:log:104', 'hash': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:28.000Z'}}, {'blockNum': '0x7f4f82', 'uniqueId': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5:log:77', 'hash': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:55.000Z'}}, {'blockNum': '0x7f4f84', 'uniqueId': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3:log:76', 'hash': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:11:00.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da:log:37', 'hash': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831:log:39', 'hash': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8c', 'uniqueId': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d:log:14', 'hash': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:21.000Z'}}, {'blockNum': '0x7f4f91', 'uniqueId': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796:log:50', 'hash': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:10.000Z'}}, {'blockNum': '0x7f4f93', 'uniqueId': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457:log:32', 'hash': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:19.000Z'}}, {'blockNum': '0x7f4f96', 'uniqueId': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571:log:29', 'hash': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:14:05.000Z'}}, {'blockNum': '0x7f4f9b', 'uniqueId': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9:log:14', 'hash': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:15:17.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c:log:90', 'hash': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4:log:92', 'hash': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa7', 'uniqueId': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4:log:51', 'hash': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:46.000Z'}}, {'blockNum': '0x7f4fac', 'uniqueId': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6:log:68', 'hash': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:19:40.000Z'}}, {'blockNum': '0x7f4fae', 'uniqueId': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71:log:99', 'hash': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:20:02.000Z'}}, {'blockNum': '0x7f4fb5', 'uniqueId': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e:log:115', 'hash': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:13.000Z'}}, {'blockNum': '0x7f4fb7', 'uniqueId': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707:log:6', 'hash': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:51.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0:log:44', 'hash': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74:log:69', 'hash': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fd0', 'uniqueId': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f:log:33', 'hash': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:28:40.000Z'}}, {'blockNum': '0x7f4fdf', 'uniqueId': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0:log:77', 'hash': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:31:37.000Z'}}, {'blockNum': '0x7f4fe2', 'uniqueId': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218:log:56', 'hash': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:06.000Z'}}, {'blockNum': '0x7f4fe6', 'uniqueId': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254:log:22', 'hash': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254', 'from': '0xc0fe06bb9847c2d38245e875edf8500da4a2d0c4', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 12904.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012c73652fc0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:52.000Z'}}, {'blockNum': '0x7f4fe9', 'uniqueId': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e:log:33', 'hash': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:35:20.000Z'}}, {'blockNum': '0x7f5007', 'uniqueId': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197:log:88', 'hash': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:15.000Z'}}, {'blockNum': '0x7f5009', 'uniqueId': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381:log:20', 'hash': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:40.000Z'}}, {'blockNum': '0x7f500d', 'uniqueId': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875:log:111', 'hash': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:51.000Z'}}, {'blockNum': '0x7f5018', 'uniqueId': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a:log:143', 'hash': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:45:07.000Z'}}, {'blockNum': '0x7f5027', 'uniqueId': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69:log:48', 'hash': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:20.000Z'}}, {'blockNum': '0x7f5028', 'uniqueId': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a:log:35', 'hash': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:31.000Z'}}, {'blockNum': '0x7f5038', 'uniqueId': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2:log:25', 'hash': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:50:46.000Z'}}, {'blockNum': '0x7f503a', 'uniqueId': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a:log:15', 'hash': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:51:08.000Z'}}, {'blockNum': '0x7f5059', 'uniqueId': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1:log:65', 'hash': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:33.000Z'}}, {'blockNum': '0x7f505c', 'uniqueId': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7:log:47', 'hash': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:51.000Z'}}, {'blockNum': '0x7f5084', 'uniqueId': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1:log:103', 'hash': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:10.000Z'}}, {'blockNum': '0x7f5086', 'uniqueId': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852:log:4', 'hash': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:41.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae:log:95', 'hash': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9:log:97', 'hash': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f50a1', 'uniqueId': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7:log:120', 'hash': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:27.000Z'}}, {'blockNum': '0x7f50a3', 'uniqueId': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9:log:53', 'hash': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:56.000Z'}}, {'blockNum': '0x7f50b3', 'uniqueId': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8:log:61', 'hash': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:16:44.000Z'}}, {'blockNum': '0x7f50b5', 'uniqueId': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d:log:22', 'hash': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:13.000Z'}}, {'blockNum': '0x7f50b7', 'uniqueId': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036:log:64', 'hash': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:29.000Z'}}, {'blockNum': '0x7f50bc', 'uniqueId': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283:log:79', 'hash': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:19:09.000Z'}}, {'blockNum': '0x7f50d2', 'uniqueId': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42:log:13', 'hash': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:24:21.000Z'}}, {'blockNum': '0x7f50d9', 'uniqueId': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba:log:58', 'hash': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:43.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44:log:53', 'hash': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642:log:55', 'hash': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50de', 'uniqueId': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f:log:30', 'hash': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 11006.8096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x010045b29800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:27:24.000Z'}}, {'blockNum': '0x7f50e2', 'uniqueId': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7:log:8', 'hash': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:28:07.000Z'}}, {'blockNum': '0x7f50fc', 'uniqueId': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d:log:9', 'hash': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:48.000Z'}}, {'blockNum': '0x7f50fd', 'uniqueId': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa:log:7', 'hash': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa', 'from': '0xcba419e954900a32b1a0f61d01a565c313924dae', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 10773.656486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xfad7ff2cd8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:50.000Z'}}, {'blockNum': '0x7f5100', 'uniqueId': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231:log:42', 'hash': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:34:02.000Z'}}, {'blockNum': '0x7f510b', 'uniqueId': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282:log:18', 'hash': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:26.000Z'}}, {'blockNum': '0x7f510d', 'uniqueId': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163:log:96', 'hash': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:48.000Z'}}, {'blockNum': '0x7f5110', 'uniqueId': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098:log:5', 'hash': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:06.000Z'}}, {'blockNum': '0x7f5111', 'uniqueId': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c:log:61', 'hash': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:17.000Z'}}, {'blockNum': '0x7f5146', 'uniqueId': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66:log:147', 'hash': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:50:58.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489:log:7', 'hash': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489', 'from': '0x3347e9a544546d8234306d92ac6ac707780147b3', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce:log:12', 'hash': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f515b', 'uniqueId': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668:log:63', 'hash': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:55:49.000Z'}}, {'blockNum': '0x7f516b', 'uniqueId': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460:log:63', 'hash': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460', 'from': '0xce39c69dbcc2d4425b8978d111b551b50da102eb', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 9938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe763189200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:58:48.000Z'}}, {'blockNum': '0x7f518c', 'uniqueId': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38:log:55', 'hash': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:07:45.000Z'}}, {'blockNum': '0x7f5190', 'uniqueId': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60:log:69', 'hash': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:18.000Z'}}, {'blockNum': '0x7f5193', 'uniqueId': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab:log:31', 'hash': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:29.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb:log:16', 'hash': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78:log:18', 'hash': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f51a4', 'uniqueId': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad:log:19', 'hash': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x194009c35583ed133832cedf0530d3e76761503e', 'value': 2881.1156034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4314c98694', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:12:46.000Z'}}, {'blockNum': '0x7f51aa', 'uniqueId': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93:log:81', 'hash': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:14:17.000Z'}}, {'blockNum': '0x7f51ac', 'uniqueId': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b:log:90', 'hash': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:15:32.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69:log:57', 'hash': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9:log:59', 'hash': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51c0', 'uniqueId': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05:log:54', 'hash': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:19:56.000Z'}}, {'blockNum': '0x7f51ed', 'uniqueId': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e:log:73', 'hash': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e', 'from': '0x7c963d491bda44c8cff7b35d290e45bdaec57381', 'to': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:31.000Z'}}, {'blockNum': '0x7f51ee', 'uniqueId': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db:log:45', 'hash': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:55.000Z'}}, {'blockNum': '0x7f51f0', 'uniqueId': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1:log:32', 'hash': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:32:50.000Z'}}, {'blockNum': '0x7f51f6', 'uniqueId': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184:log:28', 'hash': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184', 'from': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'to': '0x75599ecce86f8d1d90102a72762e0d898d823e73', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:34:43.000Z'}}, {'blockNum': '0x7f51fa', 'uniqueId': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2:log:90', 'hash': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:20.000Z'}}, {'blockNum': '0x7f5200', 'uniqueId': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f:log:25', 'hash': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:51.000Z'}}, {'blockNum': '0x7f521a', 'uniqueId': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7:log:27', 'hash': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:41:41.000Z'}}, {'blockNum': '0x7f521d', 'uniqueId': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88:log:0', 'hash': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:42:08.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f:log:130', 'hash': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62:log:154', 'hash': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62', 'from': '0x6d38eb10d3bd0702697776a10fc857dcbd2bb172', 'to': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f5236', 'uniqueId': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e:log:0', 'hash': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e', 'from': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'to': '0x2ad7cb7ce3b5cbaa02481e416d85f5954748d292', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:46:20.000Z'}}, {'blockNum': '0x7f5245', 'uniqueId': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be:log:64', 'hash': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:50:00.000Z'}}, {'blockNum': '0x7f524e', 'uniqueId': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8:log:0', 'hash': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:52:04.000Z'}}, {'blockNum': '0x7f525b', 'uniqueId': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32:log:0', 'hash': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32', 'from': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:54:33.000Z'}}, {'blockNum': '0x7f526c', 'uniqueId': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae:log:2', 'hash': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3771bb5030f0386a0dd80d3f3019ecb00d8c947f', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4526945a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:58:05.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4:log:56', 'hash': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 34428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x032196defc00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2:log:77', 'hash': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3173.93281631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x49e61d225f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7:log:126', 'hash': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f527d', 'uniqueId': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa:log:33', 'hash': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:23.000Z'}}, {'blockNum': '0x7f5281', 'uniqueId': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795:log:2', 'hash': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:43.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138:log:1', 'hash': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 7544.11222445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafa669b5ad', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33:log:2', 'hash': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a:log:3', 'hash': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40:log:4', 'hash': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 155695.96309408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e291441dfa0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952:log:5', 'hash': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486:log:6', 'hash': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5285', 'uniqueId': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e:log:14', 'hash': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 6664.8854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x9b2dd00b60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:30.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be:log:1', 'hash': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c:log:2', 'hash': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08:log:5', 'hash': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'value': 5066.18678391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e:log:6', 'hash': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3:log:8', 'hash': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3', 'from': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c:log:12', 'hash': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528f', 'uniqueId': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a:log:25', 'hash': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:53.000Z'}}, {'blockNum': '0x7f5290', 'uniqueId': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead:log:49', 'hash': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:01.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e:log:1', 'hash': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438:log:3', 'hash': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a:log:7', 'hash': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e:log:10', 'hash': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f529b', 'uniqueId': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163:log:2', 'hash': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 31887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02e66d54af00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:32.000Z'}}, {'blockNum': '0x7f529c', 'uniqueId': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53:log:2', 'hash': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:50.000Z'}}, {'blockNum': '0x7f529d', 'uniqueId': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355:log:4', 'hash': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:57.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0:log:0', 'hash': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 123058.71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0b312f11d1c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157:log:1', 'hash': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e:log:1', 'hash': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5:log:2', 'hash': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a1', 'uniqueId': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257:log:14', 'hash': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:43.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db:log:0', 'hash': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db', 'from': '0x41694ef21fd72e8e375b350e4c261c9edb5f6b52', 'to': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453:log:2', 'hash': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb:log:53', 'hash': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e:log:54', 'hash': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e:log:55', 'hash': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11803.4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0112d24fbc40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f:log:56', 'hash': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f', 'from': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd:log:57', 'hash': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da:log:59', 'hash': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06080433ab00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17:log:60', 'hash': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286:log:61', 'hash': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253:log:68', 'hash': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf:log:69', 'hash': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 166414.00813484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f22a0c8b7ac', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca:log:70', 'hash': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf:log:71', 'hash': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:110', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 191.91934267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477edad3b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:112', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:113', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1:log:65', 'hash': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715:log:69', 'hash': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92:log:3', 'hash': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3:log:33', 'hash': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955:log:0', 'hash': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 4820.048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7039b99200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0:log:11', 'hash': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d:log:13', 'hash': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52b2', 'uniqueId': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79:log:0', 'hash': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 7549.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafc9064c70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:58.000Z'}}, {'blockNum': '0x7f52b3', 'uniqueId': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33:log:31', 'hash': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:04.000Z'}}, {'blockNum': '0x7f52b4', 'uniqueId': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514:log:4', 'hash': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:19.000Z'}}, {'blockNum': '0x7f52b5', 'uniqueId': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c:log:36', 'hash': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:27.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0:log:84', 'hash': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:88', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:90', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:91', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6:log:1', 'hash': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a:log:2', 'hash': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bd', 'uniqueId': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139:log:116', 'hash': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:38.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb:log:0', 'hash': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d:log:3', 'hash': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c3', 'uniqueId': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f:log:2', 'hash': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 152799.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de5a19b9580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:16:15.000Z'}}, {'blockNum': '0x7f52c7', 'uniqueId': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7:log:11', 'hash': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:17:31.000Z'}}, {'blockNum': '0x7f52c8', 'uniqueId': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e:log:32', 'hash': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:03.000Z'}}, {'blockNum': '0x7f52ca', 'uniqueId': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08:log:50', 'hash': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:42.000Z'}}, {'blockNum': '0x7f52cf', 'uniqueId': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8:log:10', 'hash': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:06.000Z'}}, {'blockNum': '0x7f52d1', 'uniqueId': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326:log:44', 'hash': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:17.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378:log:50', 'hash': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b:log:51', 'hash': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021:log:52', 'hash': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9:log:53', 'hash': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093:log:54', 'hash': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd:log:55', 'hash': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139:log:56', 'hash': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139', 'from': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7:log:57', 'hash': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff:log:58', 'hash': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff', 'from': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c:log:59', 'hash': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 275857.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1916d0ad6740', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a:log:60', 'hash': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a', 'from': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87:log:61', 'hash': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12369.9671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012002bfde70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b:log:62', 'hash': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269:log:12', 'hash': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb:log:13', 'hash': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f:log:27', 'hash': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745:log:72', 'hash': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643:log:82', 'hash': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369:log:87', 'hash': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52dd', 'uniqueId': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30:log:1', 'hash': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:45.000Z'}}, {'blockNum': '0x7f52e1', 'uniqueId': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205:log:0', 'hash': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:09.000Z'}}, {'blockNum': '0x7f52e5', 'uniqueId': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5:log:14', 'hash': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5', 'from': '0xac26adcff2c83f7757b7894075516f2aac8a7482', 'to': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:33.000Z'}}, {'blockNum': '0x7f52fc', 'uniqueId': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69:log:59', 'hash': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:27:40.000Z'}}, {'blockNum': '0x7f52fe', 'uniqueId': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9:log:20', 'hash': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:28:11.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e:log:54', 'hash': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf:log:55', 'hash': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf', 'from': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af:log:59', 'hash': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb:log:66', 'hash': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5307', 'uniqueId': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44:log:21', 'hash': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:31:04.000Z'}}, {'blockNum': '0x7f5313', 'uniqueId': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce:log:1', 'hash': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:33:15.000Z'}}, {'blockNum': '0x7f5319', 'uniqueId': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55:log:2', 'hash': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:09.000Z'}}, {'blockNum': '0x7f531f', 'uniqueId': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b:log:0', 'hash': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:39.000Z'}}, {'blockNum': '0x7f5325', 'uniqueId': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213:log:2', 'hash': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:31.000Z'}}, {'blockNum': '0x7f5327', 'uniqueId': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963:log:14', 'hash': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:47.000Z'}}, {'blockNum': '0x7f532a', 'uniqueId': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4:log:102', 'hash': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:37:47.000Z'}}, {'blockNum': '0x7f5332', 'uniqueId': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2:log:26', 'hash': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2', 'from': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'to': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:39:42.000Z'}}, {'blockNum': '0x7f5335', 'uniqueId': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9:log:1', 'hash': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:13.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45:log:15', 'hash': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45', 'from': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5:log:16', 'hash': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5337', 'uniqueId': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9:log:20', 'hash': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:41:04.000Z'}}, {'blockNum': '0x7f5344', 'uniqueId': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb:log:51', 'hash': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb', 'from': '0x932ab43cbf53a7e48296e0b641f9620906ca5442', 'to': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:43:58.000Z'}}, {'blockNum': '0x7f534d', 'uniqueId': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53:log:121', 'hash': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53', 'from': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:45:11.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3:log:1', 'hash': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3', 'from': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5066.1867839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c76', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a:log:3', 'hash': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a', 'from': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2:log:6', 'hash': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5:log:54', 'hash': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71:log:55', 'hash': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f536b', 'uniqueId': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1:log:1', 'hash': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:34.000Z'}}, {'blockNum': '0x7f537c', 'uniqueId': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619:log:1', 'hash': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2621731.92038343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xee71f3fb27c7', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:53:26.000Z'}}, {'blockNum': '0x7f5380', 'uniqueId': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7:log:19', 'hash': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:54:06.000Z'}}, {'blockNum': '0x7f5387', 'uniqueId': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384:log:100', 'hash': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:55:54.000Z'}}, {'blockNum': '0x7f538c', 'uniqueId': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d:log:3', 'hash': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:56:40.000Z'}}, {'blockNum': '0x7f539a', 'uniqueId': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c:log:128', 'hash': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:00:15.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634:log:88', 'hash': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16:log:137', 'hash': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16', 'from': '0x4a544eced6941964488b2250b85cbdd731b5b0f3', 'to': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f53a1', 'uniqueId': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e:log:43', 'hash': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:29.000Z'}}, {'blockNum': '0x7f53a2', 'uniqueId': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a:log:52', 'hash': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:54.000Z'}}, {'blockNum': '0x7f53bb', 'uniqueId': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e:log:1', 'hash': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:08:08.000Z'}}, {'blockNum': '0x7f53c2', 'uniqueId': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55:log:56', 'hash': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55', 'from': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:09:59.000Z'}}, {'blockNum': '0x7f53c4', 'uniqueId': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915:log:8', 'hash': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 143100.63244587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0d03d23c852b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:10:44.000Z'}}, {'blockNum': '0x7f53c9', 'uniqueId': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72:log:42', 'hash': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:11:58.000Z'}}, {'blockNum': '0x7f53ce', 'uniqueId': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227:log:12', 'hash': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:11.000Z'}}, {'blockNum': '0x7f53cf', 'uniqueId': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf:log:69', 'hash': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:25.000Z'}}, {'blockNum': '0x7f53ea', 'uniqueId': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d:log:123', 'hash': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:17:49.000Z'}}, {'blockNum': '0x7f53ee', 'uniqueId': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721:log:14', 'hash': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:18:34.000Z'}}, {'blockNum': '0x7f53f2', 'uniqueId': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d:log:152', 'hash': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:16.000Z'}}, {'blockNum': '0x7f53f4', 'uniqueId': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d:log:63', 'hash': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:59.000Z'}}, {'blockNum': '0x7f53f6', 'uniqueId': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c:log:24', 'hash': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:20:35.000Z'}}, {'blockNum': '0x7f53f9', 'uniqueId': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420:log:76', 'hash': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:21:29.000Z'}}, {'blockNum': '0x7f53ff', 'uniqueId': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e:log:84', 'hash': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:23:13.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73:log:11', 'hash': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73', 'from': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 6078.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d848816e0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc:log:68', 'hash': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc', 'from': '0x3314df7c38a5bea1375dde468441718a7a9d58ca', 'to': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f541a', 'uniqueId': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73:log:38', 'hash': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73', 'from': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'to': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:28:08.000Z'}}, {'blockNum': '0x7f5444', 'uniqueId': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53:log:100', 'hash': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 794.02381337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x127cc03019', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:37:10.000Z'}}, {'blockNum': '0x7f5446', 'uniqueId': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573:log:13', 'hash': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:38:41.000Z'}}, {'blockNum': '0x7f544b', 'uniqueId': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c:log:0', 'hash': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:40:59.000Z'}}, {'blockNum': '0x7f545c', 'uniqueId': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58:log:88', 'hash': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58', 'from': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:44:20.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7:log:38', 'hash': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7', 'from': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790:log:50', 'hash': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790', 'from': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f5466', 'uniqueId': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43:log:2', 'hash': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:47:30.000Z'}}, {'blockNum': '0x7f5472', 'uniqueId': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2:log:55', 'hash': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:50:07.000Z'}}, {'blockNum': '0x7f5490', 'uniqueId': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c:log:67', 'hash': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c', 'from': '0xbd4c4bf61b48d9876f5bddd71328d678f55cf912', 'to': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:54:51.000Z'}}, {'blockNum': '0x7f5493', 'uniqueId': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7:log:90', 'hash': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:55:47.000Z'}}, {'blockNum': '0x7f5498', 'uniqueId': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff:log:3', 'hash': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:56:30.000Z'}}, {'blockNum': '0x7f549e', 'uniqueId': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d:log:4', 'hash': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d', 'from': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:57:55.000Z'}}, {'blockNum': '0x7f54ad', 'uniqueId': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf:log:53', 'hash': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:00:07.000Z'}}, {'blockNum': '0x7f54db', 'uniqueId': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938:log:15', 'hash': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938', 'from': '0x49847f0578bb43887d1d6832622572e86687702c', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 4992.084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x743b23ac80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:09:05.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e:log:76', 'hash': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f:log:78', 'hash': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668:log:80', 'hash': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447:log:59', 'hash': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x9e973080c3752dd5017f8242b70d3479587159c3', 'value': 588.67926574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db4cd462e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b:log:73', 'hash': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54ff', 'uniqueId': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea:log:73', 'hash': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:52.000Z'}}, {'blockNum': '0x7f5501', 'uniqueId': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11:log:1', 'hash': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:16:22.000Z'}}, {'blockNum': '0x7f5511', 'uniqueId': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1:log:57', 'hash': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 4691.10445333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6d39295515', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:20:31.000Z'}}, {'blockNum': '0x7f551a', 'uniqueId': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4:log:8', 'hash': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:23:40.000Z'}}, {'blockNum': '0x7f5531', 'uniqueId': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c:log:69', 'hash': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:30:54.000Z'}}, {'blockNum': '0x7f5535', 'uniqueId': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178:log:18', 'hash': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:31:31.000Z'}}, {'blockNum': '0x7f553d', 'uniqueId': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1:log:26', 'hash': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:32:32.000Z'}}, {'blockNum': '0x7f5546', 'uniqueId': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f:log:55', 'hash': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:08.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d:log:16', 'hash': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8:log:87', 'hash': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5555', 'uniqueId': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a:log:12', 'hash': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a', 'from': '0xcc60f38163459b9c2ce7852a8d95f5d09b088ac7', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 4410.177948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x66aeb580f0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:38:40.000Z'}}, {'blockNum': '0x7f5557', 'uniqueId': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788:log:1', 'hash': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:39.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc:log:77', 'hash': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc', 'from': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0:log:155', 'hash': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555e', 'uniqueId': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4:log:93', 'hash': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:41:52.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40:log:56', 'hash': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b:log:58', 'hash': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5593', 'uniqueId': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1:log:20', 'hash': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:53:45.000Z'}}, {'blockNum': '0x7f559c', 'uniqueId': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c:log:36', 'hash': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:55:53.000Z'}}, {'blockNum': '0x7f55c4', 'uniqueId': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca:log:34', 'hash': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:03:53.000Z'}}, {'blockNum': '0x7f55c6', 'uniqueId': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c:log:7', 'hash': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:04:30.000Z'}}, {'blockNum': '0x7f55d0', 'uniqueId': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3:log:64', 'hash': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:06:13.000Z'}}, {'blockNum': '0x7f5606', 'uniqueId': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919:log:30', 'hash': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'value': 1517.34660381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2354172d1d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:18:16.000Z'}}, {'blockNum': '0x7f560d', 'uniqueId': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1:log:0', 'hash': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:19:54.000Z'}}, {'blockNum': '0x7f561c', 'uniqueId': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337:log:0', 'hash': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:02.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47:log:0', 'hash': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1337.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1f26f9eee0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22:log:30', 'hash': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5627', 'uniqueId': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5:log:39', 'hash': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:24:35.000Z'}}, {'blockNum': '0x7f5641', 'uniqueId': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c:log:67', 'hash': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:30:01.000Z'}}, {'blockNum': '0x7f5661', 'uniqueId': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173:log:74', 'hash': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:37:04.000Z'}}, {'blockNum': '0x7f5666', 'uniqueId': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a:log:51', 'hash': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0x211c5addcc353255e48b4daec589780ca2d90718', 'value': 194.62217137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048809ddb1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:38:40.000Z'}}, {'blockNum': '0x7f566a', 'uniqueId': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9:log:30', 'hash': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:22.000Z'}}, {'blockNum': '0x7f566c', 'uniqueId': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11:log:15', 'hash': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:51.000Z'}}, {'blockNum': '0x7f5672', 'uniqueId': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a:log:104', 'hash': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:41:03.000Z'}}, {'blockNum': '0x7f569c', 'uniqueId': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904:log:62', 'hash': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:51:54.000Z'}}, {'blockNum': '0x7f56a7', 'uniqueId': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb:log:31', 'hash': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb', 'from': '0xb6467d542a8fc27a487c95366b7e52f20344d690', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 2906.984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x43aef99100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:53:55.000Z'}}, {'blockNum': '0x7f56d2', 'uniqueId': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff:log:49', 'hash': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:02:26.000Z'}}, {'blockNum': '0x7f5712', 'uniqueId': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8:log:5', 'hash': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1787.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x299e009f20', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:17.000Z'}}, {'blockNum': '0x7f5713', 'uniqueId': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c:log:71', 'hash': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c', 'from': '0x4f1a3226108ada7e32bc15bdec19a66fa23e7142', 'to': '0x47ca4d64d59435f4077f1890cdfbad9ba88fc18f', 'value': 608.0048605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e27fdcaa2', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:23.000Z'}}, {'blockNum': '0x7f5720', 'uniqueId': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29:log:6', 'hash': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc2574e3b4851923b91a6541831404fddc0205e87', 'value': 213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04f5943500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:20:33.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c:log:1', 'hash': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1:log:8', 'hash': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f5736', 'uniqueId': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed:log:5', 'hash': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 3125.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x48c4fa8e00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:25:22.000Z'}}, {'blockNum': '0x7f573f', 'uniqueId': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9:log:76', 'hash': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:01.000Z'}}, {'blockNum': '0x7f5742', 'uniqueId': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785:log:57', 'hash': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:29.000Z'}}, {'blockNum': '0x7f5758', 'uniqueId': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf:log:63', 'hash': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:32:46.000Z'}}, {'blockNum': '0x7f5759', 'uniqueId': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7:log:9', 'hash': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7', 'from': '0xc0fbdad8aab77e5bc53e7494732e95f486924bfb', 'to': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:33:04.000Z'}}, {'blockNum': '0x7f575e', 'uniqueId': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c:log:19', 'hash': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:23.000Z'}}, {'blockNum': '0x7f5761', 'uniqueId': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503:log:104', 'hash': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503', 'from': '0x1efa16b8ea27c61c92fe200e25628a6f047cedb2', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2263.039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x34b0c37960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:38.000Z'}}, {'blockNum': '0x7f5769', 'uniqueId': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66:log:15', 'hash': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:11.000Z'}}, {'blockNum': '0x7f576b', 'uniqueId': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f:log:107', 'hash': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:52.000Z'}}, {'blockNum': '0x7f5770', 'uniqueId': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456:log:50', 'hash': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:38:29.000Z'}}, {'blockNum': '0x7f5772', 'uniqueId': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674:log:12', 'hash': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:00.000Z'}}, {'blockNum': '0x7f5774', 'uniqueId': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60:log:11', 'hash': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:21.000Z'}}, {'blockNum': '0x7f5777', 'uniqueId': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f:log:99', 'hash': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f', 'from': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:46.000Z'}}, {'blockNum': '0x7f577d', 'uniqueId': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda:log:116', 'hash': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:42:01.000Z'}}, {'blockNum': '0x7f5799', 'uniqueId': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d:log:6', 'hash': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:47:01.000Z'}}, {'blockNum': '0x7f579f', 'uniqueId': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b:log:0', 'hash': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:48:49.000Z'}}, {'blockNum': '0x7f57a8', 'uniqueId': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a:log:10', 'hash': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:50:52.000Z'}}, {'blockNum': '0x7f57aa', 'uniqueId': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655:log:61', 'hash': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:51:02.000Z'}}, {'blockNum': '0x7f57cb', 'uniqueId': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136:log:80', 'hash': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:58:10.000Z'}}, {'blockNum': '0x7f57cf', 'uniqueId': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f:log:26', 'hash': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:00.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537:log:115', 'hash': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b:log:127', 'hash': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b', 'from': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d9', 'uniqueId': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4:log:11', 'hash': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4', 'from': '0x1c7ff422dfc0fbc97b44d4fa3a1fdf78d4f22ee2', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 1972.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2debd2f780', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:02:47.000Z'}}, {'blockNum': '0x7f57e6', 'uniqueId': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952:log:94', 'hash': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952', 'from': '0x4aacac980e59a270031b6c2903474c86aa66cc79', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:04:03.000Z'}}, {'blockNum': '0x7f5807', 'uniqueId': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5:log:100', 'hash': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:12:25.000Z'}}, {'blockNum': '0x7f5812', 'uniqueId': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979:log:9', 'hash': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:14:25.000Z'}}, {'blockNum': '0x7f5827', 'uniqueId': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256:log:3', 'hash': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:19:48.000Z'}}, {'blockNum': '0x7f5838', 'uniqueId': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0:log:24', 'hash': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0', 'from': '0x541b7e4992392c18253fb9f8232734e7e39bb471', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 1821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2a66017d00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:24:51.000Z'}}, {'blockNum': '0x7f5847', 'uniqueId': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f:log:8', 'hash': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:27:22.000Z'}}, {'blockNum': '0x7f584b', 'uniqueId': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91:log:93', 'hash': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:16.000Z'}}, {'blockNum': '0x7f584f', 'uniqueId': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2:log:11', 'hash': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 383242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x22db0c53ca00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:58.000Z'}}, {'blockNum': '0x7f5851', 'uniqueId': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3:log:106', 'hash': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 56630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0526851a7600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:29:49.000Z'}}, {'blockNum': '0x7f5860', 'uniqueId': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199:log:94', 'hash': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199', 'from': '0x64b8b7632fd1d57fec6630019082898f3a7f8d0d', 'to': '0xf96d8d1ee7ebf60dcc39aeb1427a2c7f712e1db0', 'value': 1627.24771183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x25e326f56f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:34:23.000Z'}}, {'blockNum': '0x7f586e', 'uniqueId': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59:log:2', 'hash': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:38:47.000Z'}}, {'blockNum': '0x7f586f', 'uniqueId': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640:log:2', 'hash': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:39:01.000Z'}}, {'blockNum': '0x7f5884', 'uniqueId': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762:log:10', 'hash': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:12.000Z'}}, {'blockNum': '0x7f5886', 'uniqueId': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f:log:33', 'hash': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f', 'from': '0x1ff9aeebc41b41af5df06123529a177f1a95827f', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1600.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2542880380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:43.000Z'}}, {'blockNum': '0x7f588b', 'uniqueId': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb:log:33', 'hash': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb', 'from': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:46:07.000Z'}}, {'blockNum': '0x7f5892', 'uniqueId': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c:log:101', 'hash': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd3e03a0c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:14.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe:log:61', 'hash': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4346e1a1b9bc181773878e1745d6b9aee8fb1320', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0:log:95', 'hash': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0', 'from': '0xa77cc27c89324245991576bef4be1d655a503ad4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1611.4326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2584e30360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5898', 'uniqueId': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd:log:0', 'hash': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:50:14.000Z'}}, {'blockNum': '0x7f58b5', 'uniqueId': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda:log:22', 'hash': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda', 'from': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:58:53.000Z'}}, {'blockNum': '0x7f58d5', 'uniqueId': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce:log:131', 'hash': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:07:46.000Z'}}, {'blockNum': '0x7f58fa', 'uniqueId': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763:log:129', 'hash': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:15:58.000Z'}}, {'blockNum': '0x7f58fc', 'uniqueId': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862:log:110', 'hash': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:16:21.000Z'}}, {'blockNum': '0x7f58ff', 'uniqueId': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765:log:82', 'hash': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:17:17.000Z'}}, {'blockNum': '0x7f591a', 'uniqueId': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da:log:79', 'hash': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da', 'from': '0x37d7be6ac2b154530f20fe465cba4cd44c6c3033', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1413.16040081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20e717a591', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:25:05.000Z'}}, {'blockNum': '0x7f594b', 'uniqueId': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883:log:8', 'hash': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:34:35.000Z'}}, {'blockNum': '0x7f5961', 'uniqueId': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797:log:15', 'hash': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'value': 29984.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba240b8f70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:38:18.000Z'}}, {'blockNum': '0x7f5974', 'uniqueId': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad:log:56', 'hash': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:41:51.000Z'}}, {'blockNum': '0x7f59ab', 'uniqueId': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829:log:44', 'hash': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:53:07.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:83', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:85', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:90', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59f5', 'uniqueId': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119:log:41', 'hash': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0xa5ad0e32ac5b7b4223c89dbb11054283c1d4efb2', 'value': 1402.04625002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20a4d8cc6a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:09.000Z'}}, {'blockNum': '0x7f59f7', 'uniqueId': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369:log:2', 'hash': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:38.000Z'}}, {'blockNum': '0x7f5a1b', 'uniqueId': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322:log:158', 'hash': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:19:54.000Z'}}, {'blockNum': '0x7f5a2d', 'uniqueId': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f:log:124', 'hash': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:22:10.000Z'}}, {'blockNum': '0x7f5a30', 'uniqueId': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd:log:32', 'hash': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:16.000Z'}}, {'blockNum': '0x7f5a33', 'uniqueId': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9:log:16', 'hash': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:58.000Z'}}, {'blockNum': '0x7f5a35', 'uniqueId': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710:log:60', 'hash': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:24:05.000Z'}}, {'blockNum': '0x7f5a5d', 'uniqueId': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a:log:13', 'hash': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:31:50.000Z'}}, {'blockNum': '0x7f5a73', 'uniqueId': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66:log:115', 'hash': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66', 'from': '0xcbb9e4ebdee8acf1004d2869b7329ae25733e884', 'to': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:36:42.000Z'}}, {'blockNum': '0x7f5a77', 'uniqueId': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40:log:22', 'hash': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:37:32.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7:log:17', 'hash': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669:log:18', 'hash': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669', 'from': '0xa18c51606d69f16efeafa8b88608aeca23a99295', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 1067.18000085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x18d8e373d5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a8a', 'uniqueId': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be:log:47', 'hash': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be', 'from': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:40:04.000Z'}}, {'blockNum': '0x7f5a90', 'uniqueId': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3:log:7', 'hash': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 270355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1896b15fb300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:06.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042:log:2', 'hash': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5:log:99', 'hash': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961:log:101', 'hash': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a9b', 'uniqueId': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e:log:95', 'hash': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:39.000Z'}}, {'blockNum': '0x7f5a9d', 'uniqueId': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e:log:8', 'hash': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:59.000Z'}}, {'blockNum': '0x7f5aa2', 'uniqueId': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7:log:114', 'hash': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:45:36.000Z'}}, {'blockNum': '0x7f5aae', 'uniqueId': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939:log:2', 'hash': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:48:38.000Z'}}, {'blockNum': '0x7f5acb', 'uniqueId': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322:log:116', 'hash': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:56:38.000Z'}}, {'blockNum': '0x7f5ad3', 'uniqueId': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57:log:52', 'hash': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:57:54.000Z'}}, {'blockNum': '0x7f5ad5', 'uniqueId': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7:log:38', 'hash': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:58:09.000Z'}}, {'blockNum': '0x7f5b04', 'uniqueId': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60:log:64', 'hash': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60', 'from': '0x4a6f0b865abdd8fc196d8b4e8b36a0c57ba72e40', 'to': '0xf050eb155416bdf5c34280e73a2a88a07efe3d25', 'value': 1750.85702986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x28c3ebcf4a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:09:35.000Z'}}, {'blockNum': '0x7f5b19', 'uniqueId': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21:log:77', 'hash': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x2036b75b900f5232de980fcb8d3aa1392e1be683', 'value': 3902.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5adf8b3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:14:12.000Z'}}, {'blockNum': '0x7f5bb2', 'uniqueId': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6:log:78', 'hash': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:48:40.000Z'}}, {'blockNum': '0x7f5bd7', 'uniqueId': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861:log:88', 'hash': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:57:00.000Z'}}, {'blockNum': '0x7f5bf6', 'uniqueId': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170:log:17', 'hash': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'value': 4807.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6fec8700d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:02:23.000Z'}}, {'blockNum': '0x7f5c01', 'uniqueId': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625:log:54', 'hash': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625', 'from': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'to': '0x81fa5e19f1d7535b9a82d37f601de49d3e4fbeb5', 'value': 5207.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x793cb690d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:03:52.000Z'}}, {'blockNum': '0x7f5c1d', 'uniqueId': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3:log:19', 'hash': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:10:49.000Z'}}, {'blockNum': '0x7f5c32', 'uniqueId': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a:log:38', 'hash': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a', 'from': '0x349808181eb8be943ccea6e780235e9c294c19fe', 'to': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:16:12.000Z'}}, {'blockNum': '0x7f5c40', 'uniqueId': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca:log:10', 'hash': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca', 'from': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:19:56.000Z'}}, {'blockNum': '0x7f5c75', 'uniqueId': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05:log:30', 'hash': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 16410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017e1338da00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:32.000Z'}}, {'blockNum': '0x7f5c76', 'uniqueId': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2:log:19', 'hash': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2', 'from': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:42.000Z'}}, {'blockNum': '0x7f5cb7', 'uniqueId': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3:log:2', 'hash': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:43:39.000Z'}}, {'blockNum': '0x7f5ced', 'uniqueId': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c:log:25', 'hash': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:53:50.000Z'}}, {'blockNum': '0x7f5cf7', 'uniqueId': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32:log:2', 'hash': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2341bc4817f1ca9ea7853541900aea1f9fe72e34', 'value': 761.256096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11b9709e80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:57:46.000Z'}}]}}
Number of returned transfers:  550
Answer is complete
 
symbol             SNT
group              CPS
date        2019-08-22
hour             20:00
exchange       binance
Name: 407, dtype: object
HERE
 Symbol: SNT, Contract: 0x744d70fdbe2ba4cf95131626614a1763df805b9e
Datetime timestamps:  2019-08-22 20:00:00 2019-08-22 08:00:00 2019-08-23 08:00:00
Unix timestamps:  1566453600.0 1566540000.0
Hex Block Numbers:  0x802612 0x803f44
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x80265b', 'uniqueId': '0x6ff0e40b3a236ed1efe9989bf4610b3c256c7d265a9e3f3383f9788069204c47:log:25', 'hash': '0x6ff0e40b3a236ed1efe9989bf4610b3c256c7d265a9e3f3383f9788069204c47', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x1958d9f482a95610012a4407d8f859962617f405', 'value': 59967.2696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb2d50afcfd210e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:14:08.000Z'}}, {'blockNum': '0x802675', 'uniqueId': '0xe43860ea4c7ff98126fd2f7077bc5b1be6f7f531f1fd769eb4ff86d72861e23e:log:48', 'hash': '0xe43860ea4c7ff98126fd2f7077bc5b1be6f7f531f1fd769eb4ff86d72861e23e', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x31d1afdeede7fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:19:28.000Z'}}, {'blockNum': '0x8026ae', 'uniqueId': '0xe534009a3e0afefe0b1f6c0e845ed59f7dbab7e5bc6e5a84c4a05737bb675c43:log:99', 'hash': '0xe534009a3e0afefe0b1f6c0e845ed59f7dbab7e5bc6e5a84c4a05737bb675c43', 'from': '0xa11618bba2eb61cf30c9bf360de802298dfdf2b8', 'to': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:34:17.000Z'}}, {'blockNum': '0x8026b3', 'uniqueId': '0x5fbef8efe7131b0f79f1f9a7a199fd0ae93d9966eacb2b9e427e93a6f9ee9c65:log:138', 'hash': '0x5fbef8efe7131b0f79f1f9a7a199fd0ae93d9966eacb2b9e427e93a6f9ee9c65', 'from': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'to': '0xbac772ca07b12475e31ef61bf296738da9c05bd0', 'value': 47.749462068089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0296a82ac3706f2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:35:56.000Z'}}, {'blockNum': '0x8026d9', 'uniqueId': '0xb42c57ee8e50454a14e9adfe4823841d2df21baa7599f89ec0e7c844672eceeb:log:39', 'hash': '0xb42c57ee8e50454a14e9adfe4823841d2df21baa7599f89ec0e7c844672eceeb', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 275.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ef5fdebcb984e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:43:19.000Z'}}, {'blockNum': '0x8026f5', 'uniqueId': '0x6353063062f24a43e5b96f6835c7b9841918d24796a8a40a388c79635421f470:log:48', 'hash': '0x6353063062f24a43e5b96f6835c7b9841918d24796a8a40a388c79635421f470', 'from': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:48:22.000Z'}}, {'blockNum': '0x80271c', 'uniqueId': '0x2f00e595cef718b48aaa355166d0166ffe745048f186578819309bdac9f3a792:log:35', 'hash': '0x2f00e595cef718b48aaa355166d0166ffe745048f186578819309bdac9f3a792', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'value': 589.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffa81cc936aee0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:59:11.000Z'}}, {'blockNum': '0x80271c', 'uniqueId': '0xad5f423a742099853b77137bed3982f8159ebdff14fd3abc1b46232bef4bcadc:log:53', 'hash': '0xad5f423a742099853b77137bed3982f8159ebdff14fd3abc1b46232bef4bcadc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd175e14675b048668a8ee7b471ccd8233f5ebc34', 'value': 1222.31292439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4242ffd8a42ad97c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:59:11.000Z'}}, {'blockNum': '0x802769', 'uniqueId': '0xe3ff401c7fcc834ddbd79319f177ee196c3eb876e206346eb57ba10cff8b85d3:log:2', 'hash': '0xe3ff401c7fcc834ddbd79319f177ee196c3eb876e206346eb57ba10cff8b85d3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 271726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x398a4bc515f360f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:16:57.000Z'}}, {'blockNum': '0x802797', 'uniqueId': '0x400c1fabc5d7c8af094a4a6293d210c6e0da73ff843e93081dc677a01128089c:log:1', 'hash': '0x400c1fabc5d7c8af094a4a6293d210c6e0da73ff843e93081dc677a01128089c', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'value': 593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2025873626bea40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:28:54.000Z'}}, {'blockNum': '0x8027b2', 'uniqueId': '0xa263f7abdd3edd3a286686872e9d59b560f80bea3c9c7d30df2fd6bdb0e1421d:log:2', 'hash': '0xa263f7abdd3edd3a286686872e9d59b560f80bea3c9c7d30df2fd6bdb0e1421d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1c7ac55f29ec70f9b76b502085bbcd87436afd1c', 'value': 3661001.67026328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03073f4c580e4b43e76000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:34:13.000Z'}}, {'blockNum': '0x8027d0', 'uniqueId': '0x14f30a896e972008d9a12bf75e27d34d16446b88bba449e7965dca6fd8b6b063:log:147', 'hash': '0x14f30a896e972008d9a12bf75e27d34d16446b88bba449e7965dca6fd8b6b063', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1182.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x40200902ba29920000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:39:48.000Z'}}, {'blockNum': '0x8027d1', 'uniqueId': '0xf86a209ed080df9fac4ecc9642ac8a9fb860f76bcfb83041183474374c3e2368:log:0', 'hash': '0xf86a209ed080df9fac4ecc9642ac8a9fb860f76bcfb83041183474374c3e2368', 'from': '0x1c7ac55f29ec70f9b76b502085bbcd87436afd1c', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 3661001.67026328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03073f4c580e4b43e76000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:40:03.000Z'}}, {'blockNum': '0x8027d3', 'uniqueId': '0xbf5248d64635f1e5c1f34d2e3133462c7def4c3a82b09fd9fb64f0a5f738a6a1:log:81', 'hash': '0xbf5248d64635f1e5c1f34d2e3133462c7def4c3a82b09fd9fb64f0a5f738a6a1', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 271726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x398a4bc515f360f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:40:15.000Z'}}, {'blockNum': '0x802878', 'uniqueId': '0xf0369c8ae1991e26f0debc8fbc0edfa3c2fa83fad915d93455cfb18aea0c310b:log:3', 'hash': '0xf0369c8ae1991e26f0debc8fbc0edfa3c2fa83fad915d93455cfb18aea0c310b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:14:38.000Z'}}, {'blockNum': '0x80288f', 'uniqueId': '0xaf8680944159df476fb8bbda63ca6f4c23ee0b0ffc279616463c03fd541b6d2d:log:1', 'hash': '0xaf8680944159df476fb8bbda63ca6f4c23ee0b0ffc279616463c03fd541b6d2d', 'from': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:20:05.000Z'}}, {'blockNum': '0x8028c5', 'uniqueId': '0xea69e73feee8683f9f0c1374c2f08f148898183670417a8394c81b1a890afdc3:log:68', 'hash': '0xea69e73feee8683f9f0c1374c2f08f148898183670417a8394c81b1a890afdc3', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xdba5803f0f8a536fada095c2cfc2ef4673006179', 'value': 330.21896659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11e6b57089dd88ec00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:30:27.000Z'}}, {'blockNum': '0x80294a', 'uniqueId': '0x62aed0b82823869552fc5a2d630dcaf6bcf75af88e8b8b1384c71455c0a208d3:log:113', 'hash': '0x62aed0b82823869552fc5a2d630dcaf6bcf75af88e8b8b1384c71455c0a208d3', 'from': '0xdba5803f0f8a536fada095c2cfc2ef4673006179', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 330.21896659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11e6b57089dd88ec00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:57:16.000Z'}}, {'blockNum': '0x802991', 'uniqueId': '0x9ce73f753d4b8130d5fb1024d0815295a6e0d475f5750d59fa121a217c4453eb:log:1', 'hash': '0x9ce73f753d4b8130d5fb1024d0815295a6e0d475f5750d59fa121a217c4453eb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0fea8a99e2ab08a0682e92eef13e9b321a9c9a0e', 'value': 69937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ecf4ad88de4ae240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:12:48.000Z'}}, {'blockNum': '0x802992', 'uniqueId': '0xe378471203737dee344ffe9f174b2204f2189114ea3c379db011b554689a53ae:log:0', 'hash': '0xe378471203737dee344ffe9f174b2204f2189114ea3c379db011b554689a53ae', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2e963951560b51800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:13:06.000Z'}}, {'blockNum': '0x80299d', 'uniqueId': '0x82abc6e28fd09465c761557ce56345bb7d2e391d4a0d5347f1c16891aa194f95:log:2', 'hash': '0x82abc6e28fd09465c761557ce56345bb7d2e391d4a0d5347f1c16891aa194f95', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x2f6355703674c89a94a9bc18d75a41356bc062dd', 'value': 3799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcdf1b744090cfc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:14:51.000Z'}}, {'blockNum': '0x80299d', 'uniqueId': '0x3eddacf8317cee22de57aad7dfcb5a8b768019cdb86b2995efedd264833e519b:log:3', 'hash': '0x3eddacf8317cee22de57aad7dfcb5a8b768019cdb86b2995efedd264833e519b', 'from': '0x0fea8a99e2ab08a0682e92eef13e9b321a9c9a0e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 69937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ecf4ad88de4ae240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:14:51.000Z'}}, {'blockNum': '0x8029a2', 'uniqueId': '0x5c35c4749b6945061fa843bd167b25accb5742d9c548e41a5bd72c4edc8807a4:log:3', 'hash': '0x5c35c4749b6945061fa843bd167b25accb5742d9c548e41a5bd72c4edc8807a4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0508a457516059a73956122252a1f22cba48298d', 'value': 40872.917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08a7b9ab518130a88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:16:19.000Z'}}, {'blockNum': '0x8029ab', 'uniqueId': '0xb5900a4108c51d55de31eced2c5af9d71391082a9222b43557222c8e148461f4:log:97', 'hash': '0xb5900a4108c51d55de31eced2c5af9d71391082a9222b43557222c8e148461f4', 'from': '0xe829f7947175fe6a338344e70aa770a8c134372c', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:18:36.000Z'}}, {'blockNum': '0x8029b2', 'uniqueId': '0x918e57b313492ddd3a28a37d0b3b75d12e8aa587e6cc3ec58570b7b617a7c294:log:4', 'hash': '0x918e57b313492ddd3a28a37d0b3b75d12e8aa587e6cc3ec58570b7b617a7c294', 'from': '0x0508a457516059a73956122252a1f22cba48298d', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 40872.917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08a7b9ab518130a88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:20:14.000Z'}}, {'blockNum': '0x8029b5', 'uniqueId': '0x6f050f4e7b8dac3bf959144e11ebb7db8ada0d8dd25db5e1e9bb5af038270140:log:2', 'hash': '0x6f050f4e7b8dac3bf959144e11ebb7db8ada0d8dd25db5e1e9bb5af038270140', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2e963951560b51800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:21:04.000Z'}}, {'blockNum': '0x8029bb', 'uniqueId': '0x9abe7cd8bd2a2474e5c655839e388b097dd99ac7b176a570ddefa519e077dcec:log:0', 'hash': '0x9abe7cd8bd2a2474e5c655839e388b097dd99ac7b176a570ddefa519e077dcec', 'from': '0x2f6355703674c89a94a9bc18d75a41356bc062dd', 'to': '0x2724a9fed47d947b33660ce0ee0d150c6ee18c90', 'value': 3799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcdf1b744090cfc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:21:41.000Z'}}, {'blockNum': '0x8029f8', 'uniqueId': '0xa6968ec8d0eb2d55398469d0b3d01f2de8a930deeaebcc76075b197942e37a54:log:4', 'hash': '0xa6968ec8d0eb2d55398469d0b3d01f2de8a930deeaebcc76075b197942e37a54', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfc573e8059e0cda91fa70866e34e94d77d0c78b0', 'value': 49937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a931716fa6f49a40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:33:01.000Z'}}, {'blockNum': '0x802a14', 'uniqueId': '0xfd66125831217802fead5da071824e2ef59ffe8e8cc92b5a88fc9b75e8a8b841:log:12', 'hash': '0xfd66125831217802fead5da071824e2ef59ffe8e8cc92b5a88fc9b75e8a8b841', 'from': '0xb8e7b196d974342125c1814a9eb6fb0c969f3feb', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:38:51.000Z'}}, {'blockNum': '0x802a20', 'uniqueId': '0xccf03d07e88fbb0b813932a3d2cf10ab7e9f63505b47c2c15d009191b6270b97:log:110', 'hash': '0xccf03d07e88fbb0b813932a3d2cf10ab7e9f63505b47c2c15d009191b6270b97', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x9bb09599c3d0e531a3671144baf4bedc380924f7', 'value': 6371.8932425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01596bc8485104742800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:42:27.000Z'}}, {'blockNum': '0x802a38', 'uniqueId': '0xc53672d00945213296030dbef1d01c946e48fe2367c6e485be195b711f1e04a6:log:1', 'hash': '0xc53672d00945213296030dbef1d01c946e48fe2367c6e485be195b711f1e04a6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 8151.698282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b9e789fdee3408a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:47:23.000Z'}}, {'blockNum': '0x802a59', 'uniqueId': '0x22989c6607d08ba62daa70988aa3252715b8d1006ba2f1d362a452df09349f63:log:19', 'hash': '0x22989c6607d08ba62daa70988aa3252715b8d1006ba2f1d362a452df09349f63', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x4b0552288ad7bdfc7ecd4b68e989c21b277367cc', 'value': 5718.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013601cb7f73e4560000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:57:31.000Z'}}, {'blockNum': '0x802b06', 'uniqueId': '0xd6163ad3cbcdb0211dffa89d5d49d6673f516bd705d7197956c2b8052c119e24:log:0', 'hash': '0xd6163ad3cbcdb0211dffa89d5d49d6673f516bd705d7197956c2b8052c119e24', 'from': '0x2e46956565cebdcbbb39ecd22af02e1916a2fe37', 'to': '0xce474a2582168e0ed0cbf780c179944e11442e8a', 'value': 1469.89436142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4faee1cde09cbdf800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:34:37.000Z'}}, {'blockNum': '0x802b09', 'uniqueId': '0xae9dab58504834cdeb77cca5217ca9f7e850879278d4d483e5e009329fc99975:log:0', 'hash': '0xae9dab58504834cdeb77cca5217ca9f7e850879278d4d483e5e009329fc99975', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 105991.9426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1671d5b0515201048000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:35:00.000Z'}}, {'blockNum': '0x802b14', 'uniqueId': '0x797c1c600e615794d98605848a90432e1ca29d161ae34cfb588a04e803234bbf:log:43', 'hash': '0x797c1c600e615794d98605848a90432e1ca29d161ae34cfb588a04e803234bbf', 'from': '0x5d0c10ebc713012f82f2859e2f47a9ee8d1318a3', 'to': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:37:28.000Z'}}, {'blockNum': '0x802b38', 'uniqueId': '0x94b0945a14385df451e19351f176783fae288b44d2f37900007ab7396badcb65:log:67', 'hash': '0x94b0945a14385df451e19351f176783fae288b44d2f37900007ab7396badcb65', 'from': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:43:35.000Z'}}, {'blockNum': '0x802b3d', 'uniqueId': '0x2786cfe8eea9e28ca64a3cdc44a37e06164645ac577ccaf531f7c9e701ca6475:log:9', 'hash': '0x2786cfe8eea9e28ca64a3cdc44a37e06164645ac577ccaf531f7c9e701ca6475', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 590.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffd48578426020000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:44:17.000Z'}}, {'blockNum': '0x802b48', 'uniqueId': '0xeef12fda5c729c6c16b5d89156ecb7508b799f3f19cf8ddffb3cc8b3ca9107cf:log:27', 'hash': '0xeef12fda5c729c6c16b5d89156ecb7508b799f3f19cf8ddffb3cc8b3ca9107cf', 'from': '0x2ae9a596883947605c654425e6cca6e0da44a9e0', 'to': '0x8e673532276aaad90e7ed82aeb7d832676671fd5', 'value': 6985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x017aa8590be247840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:46:16.000Z'}}, {'blockNum': '0x802b5b', 'uniqueId': '0xe0efa63024865416caa4e04a7c3b56b2e5ac791dc8d593cf66a382ecb832e268:log:11', 'hash': '0xe0efa63024865416caa4e04a7c3b56b2e5ac791dc8d593cf66a382ecb832e268', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:51:07.000Z'}}, {'blockNum': '0x802bad', 'uniqueId': '0x29699bc3b83f9ad3b74844e2fe877881108a3f06dcf35aec384fb95ecaab0d1c:log:42', 'hash': '0x29699bc3b83f9ad3b74844e2fe877881108a3f06dcf35aec384fb95ecaab0d1c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 18172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d91b28f89e1e700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:09:20.000Z'}}, {'blockNum': '0x802baf', 'uniqueId': '0x986dc332af65553ba1b9c6afce772b71c1c097aa41d82ed974e781a1db228942:log:111', 'hash': '0x986dc332af65553ba1b9c6afce772b71c1c097aa41d82ed974e781a1db228942', 'from': '0xcb7e9e305fa4afa4cf5b414120c560ad3ed75a53', 'to': '0x478a746989ce31623b0e8c919186993b6d2ccd1c', 'value': 66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0393ef1a5127c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:09:44.000Z'}}, {'blockNum': '0x802bb6', 'uniqueId': '0x94c4057a43066145dd57501105a145664d6246c201ff3dec8fafa38231e0068d:log:26', 'hash': '0x94c4057a43066145dd57501105a145664d6246c201ff3dec8fafa38231e0068d', 'from': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:11:09.000Z'}}, {'blockNum': '0x802bb6', 'uniqueId': '0x430e5ec6dfcbd7f60b5e6a8332576a99a97a3131fccdc972e0eb83b21fb8f632:log:32', 'hash': '0x430e5ec6dfcbd7f60b5e6a8332576a99a97a3131fccdc972e0eb83b21fb8f632', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 18172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d91b28f89e1e700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:11:09.000Z'}}, {'blockNum': '0x802be2', 'uniqueId': '0xc1c2a92531fc7eae18b106ecc14d989cce0c4377bba7be07abc74f0366012208:log:34', 'hash': '0xc1c2a92531fc7eae18b106ecc14d989cce0c4377bba7be07abc74f0366012208', 'from': '0x9bf947bab6453996d47bef43a1d9e5bbbe18d26a', 'to': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:21:03.000Z'}}, {'blockNum': '0x802c09', 'uniqueId': '0x1624e8722480fd49c12992634cc5752d43d82d95d17591c4b5fc200c99333d88:log:13', 'hash': '0x1624e8722480fd49c12992634cc5752d43d82d95d17591c4b5fc200c99333d88', 'from': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:28:08.000Z'}}, {'blockNum': '0x802c75', 'uniqueId': '0x09c2ecd1ccc0bc559c939d6078b90b4c8b7c747ab03e78ecedbcb3c043218bad:log:10', 'hash': '0x09c2ecd1ccc0bc559c939d6078b90b4c8b7c747ab03e78ecedbcb3c043218bad', 'from': '0xfc573e8059e0cda91fa70866e34e94d77d0c78b0', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 45217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x099337ee6a1105e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:53:36.000Z'}}, {'blockNum': '0x802cbc', 'uniqueId': '0xdadefb1cff892f283ccb6a06454914fae2db74615f7b5ef992aed110d3eaba7f:log:64', 'hash': '0xdadefb1cff892f283ccb6a06454914fae2db74615f7b5ef992aed110d3eaba7f', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x099337ee6a1105e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:11:03.000Z'}}, {'blockNum': '0x802cee', 'uniqueId': '0x1a5d76a41ad0f108941a7e5f5664db938b6dc8585805ca084c62c1ddd52f7c45:log:82', 'hash': '0x1a5d76a41ad0f108941a7e5f5664db938b6dc8585805ca084c62c1ddd52f7c45', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 694542.87007688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x93133e930915eb262000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:25:34.000Z'}}, {'blockNum': '0x802cf3', 'uniqueId': '0x3d7f08b225d37a32f586f425d8a6604f5bca91e81818be8ea76cc8735c6966ed:log:41', 'hash': '0x3d7f08b225d37a32f586f425d8a6604f5bca91e81818be8ea76cc8735c6966ed', 'from': '0xc834ab4df4dcb346268152860e5bfa73bde6bdda', 'to': '0xd493f4a19de6497c0458fef2d7e3b21fb91a800d', 'value': 2150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x748d3e68cfd1d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:26:02.000Z'}}, {'blockNum': '0x802d0e', 'uniqueId': '0x8ce2534196a5b3f399fb6f13c8952d7b2c872edce14d07600c2628fce595a4bd:log:2', 'hash': '0x8ce2534196a5b3f399fb6f13c8952d7b2c872edce14d07600c2628fce595a4bd', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 694542.87007688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x93133e930915eb262000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:31:12.000Z'}}, {'blockNum': '0x802d11', 'uniqueId': '0xa8d0eaf3da5edf81771a1b43901e4b62c20d6b80d5d6dcac55ab61ea096c477f:log:95', 'hash': '0xa8d0eaf3da5edf81771a1b43901e4b62c20d6b80d5d6dcac55ab61ea096c477f', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:31:53.000Z'}}, {'blockNum': '0x802d11', 'uniqueId': '0xdd307408e61169afb0b6deeeacf36d780cd1cde36dcad923460a9f91876c5f4e:log:103', 'hash': '0xdd307408e61169afb0b6deeeacf36d780cd1cde36dcad923460a9f91876c5f4e', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:31:53.000Z'}}, {'blockNum': '0x802d24', 'uniqueId': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc:log:122', 'hash': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7771.774303662996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a54f08e08e75b41709', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:37:15.000Z'}}, {'blockNum': '0x802d24', 'uniqueId': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc:log:124', 'hash': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 7771.774303662996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a54f08e08e75b41709', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:37:15.000Z'}}, {'blockNum': '0x802d24', 'uniqueId': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc:log:129', 'hash': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 7771.766531888692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a54eed442b3f0f2374', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:37:15.000Z'}}, {'blockNum': '0x802d89', 'uniqueId': '0xbac2cce4c1921d1bb896e34dfb98159323f433f818e2077dfa2aca7610c0d582:log:77', 'hash': '0xbac2cce4c1921d1bb896e34dfb98159323f433f818e2077dfa2aca7610c0d582', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 17487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3f8e019e737dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:00:51.000Z'}}, {'blockNum': '0x802da9', 'uniqueId': '0x4e03c616c451a6d14c521ec46e37c295e7e9872ebd41053b339a814c2f412fa9:log:58', 'hash': '0x4e03c616c451a6d14c521ec46e37c295e7e9872ebd41053b339a814c2f412fa9', 'from': '0xbac772ca07b12475e31ef61bf296738da9c05bd0', 'to': '0x080b406a7b163463cc312a73506582ac88bbb991', 'value': 47.749462068089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0296a82ac3706f2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:06:42.000Z'}}, {'blockNum': '0x802daa', 'uniqueId': '0xa7bc973a8ad36d1e8d14a3d5800660e96d1ebb5bf296adb3a8a5f022d16a224f:log:98', 'hash': '0xa7bc973a8ad36d1e8d14a3d5800660e96d1ebb5bf296adb3a8a5f022d16a224f', 'from': '0x79d35007e8879fbaf95011aab0c7311cf7287861', 'to': '0x61b9898c9b60a159fc91ae8026563cd226b7a0c1', 'value': 817000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xad01a8a3947b7ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:06:49.000Z'}}, {'blockNum': '0x802daf', 'uniqueId': '0x532cc218bb1d1b933078f3dcd2eb23fe7a0a9c4c2341ef019647db550a66ab75:log:7', 'hash': '0x532cc218bb1d1b933078f3dcd2eb23fe7a0a9c4c2341ef019647db550a66ab75', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe2f6e3565a96cd24d6ba985563a26fb3c93cad04', 'value': 436.617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17ab47303438ba8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:08:06.000Z'}}, {'blockNum': '0x802dbc', 'uniqueId': '0x964c3f69dae903643d845ccedf28b94aea6cc14c9e236f7839bdd4dd6fddbd66:log:20', 'hash': '0x964c3f69dae903643d845ccedf28b94aea6cc14c9e236f7839bdd4dd6fddbd66', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 451737.98505332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fa8c3e6bb92a22f5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:10:05.000Z'}}, {'blockNum': '0x802dcf', 'uniqueId': '0x1707df55c43e9ac6237c334beedd6b06cfbf3fda55a1c096b5653f11031cc570:log:0', 'hash': '0x1707df55c43e9ac6237c334beedd6b06cfbf3fda55a1c096b5653f11031cc570', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:14:46.000Z'}}, {'blockNum': '0x802dd3', 'uniqueId': '0xb2d35fe816af1cb01a001ccf7d237666f872de23dea35f8f8e8602cd79f38ec9:log:95', 'hash': '0xb2d35fe816af1cb01a001ccf7d237666f872de23dea35f8f8e8602cd79f38ec9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'value': 149970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc1e3d668e2d4080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:16:16.000Z'}}, {'blockNum': '0x802de7', 'uniqueId': '0xf2c74fe0ee8728a35531cf6031dddfa2296e71d15a157a226bfde6a6c8ca9fb7:log:3', 'hash': '0xf2c74fe0ee8728a35531cf6031dddfa2296e71d15a157a226bfde6a6c8ca9fb7', 'from': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:20:23.000Z'}}, {'blockNum': '0x802de7', 'uniqueId': '0xf3a31ba43f16393995d58aee9ba5559bab843d2655f6eef5cba9d93440f34eca:log:4', 'hash': '0xf3a31ba43f16393995d58aee9ba5559bab843d2655f6eef5cba9d93440f34eca', 'from': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 149970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc1e3d668e2d4080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:20:23.000Z'}}, {'blockNum': '0x802dec', 'uniqueId': '0x13429bf48d49472ae98f03f654f60c803ef7342eb917f300420f42b72a927535:log:12', 'hash': '0x13429bf48d49472ae98f03f654f60c803ef7342eb917f300420f42b72a927535', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x04c9f7e0055bf9fe9ab03255d8cdae2a78e824df', 'value': 79937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10ed64b9579f60640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:22:13.000Z'}}, {'blockNum': '0x802dfc', 'uniqueId': '0xac722394ef534f9a3503dc6359143ac7c621f37b3ba9086e682c131fcb21f51a:log:15', 'hash': '0xac722394ef534f9a3503dc6359143ac7c621f37b3ba9086e682c131fcb21f51a', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 451737.98505332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fa8c3e6bb92a22f5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:26:23.000Z'}}, {'blockNum': '0x802e0e', 'uniqueId': '0x3c951a72cb5d36d38be2bc2446746320edb300488771c5e4358ccb23bc732795:log:1', 'hash': '0x3c951a72cb5d36d38be2bc2446746320edb300488771c5e4358ccb23bc732795', 'from': '0x04c9f7e0055bf9fe9ab03255d8cdae2a78e824df', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 79937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10ed64b9579f60640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:29:55.000Z'}}, {'blockNum': '0x802e15', 'uniqueId': '0x71fa185b24592e66f36c22d401c28ade5ba995e7f454fb7428cf375234038576:log:63', 'hash': '0x71fa185b24592e66f36c22d401c28ade5ba995e7f454fb7428cf375234038576', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x2e074988d3f10177d32ed95cdc7097d7c44fdce4', 'value': 231285.5151295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x30fa034d4f1a49871800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:30:59.000Z'}}, {'blockNum': '0x802e17', 'uniqueId': '0x509f4f92bec008413c309467c7469f9a13bf51da98357b6723d2a080b7534678:log:62', 'hash': '0x509f4f92bec008413c309467c7469f9a13bf51da98357b6723d2a080b7534678', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 238250.35403534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x327393dbc2aa870a7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:31:16.000Z'}}, {'blockNum': '0x802e4a', 'uniqueId': '0xe40101573fbb8f777e79a06cbe6f7579f402ee3354985c3ab5a04c896c3ac490:log:12', 'hash': '0xe40101573fbb8f777e79a06cbe6f7579f402ee3354985c3ab5a04c896c3ac490', 'from': '0x2e074988d3f10177d32ed95cdc7097d7c44fdce4', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 231285.5151295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x30fa034d4f1a49871800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:42:16.000Z'}}, {'blockNum': '0x802e4a', 'uniqueId': '0x8620fc5e4ff2b780f208fa3e2b1c47dcaadafdfa74e5c514ce582086a3051497:log:14', 'hash': '0x8620fc5e4ff2b780f208fa3e2b1c47dcaadafdfa74e5c514ce582086a3051497', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 238250.35403534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x327393dbc2aa870a7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:42:16.000Z'}}, {'blockNum': '0x802e99', 'uniqueId': '0xcb111fd187d22f7b75a531ff38ea958661de6e50f707382f41560da393b38211:log:123', 'hash': '0xcb111fd187d22f7b75a531ff38ea958661de6e50f707382f41560da393b38211', 'from': '0x9932cb6c321c8373c3d8eb687e9371e833bee9b7', 'to': '0xb782c27f02b66b91968a695072c4f2300a303a6e', 'value': 3342.601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb533e84ba4117a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:00:02.000Z'}}, {'blockNum': '0x802eaf', 'uniqueId': '0xcf888ab966e67d3e6556755738ae1ceca02495471901f713635cc47ec11ba460:log:2', 'hash': '0xcf888ab966e67d3e6556755738ae1ceca02495471901f713635cc47ec11ba460', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 61054.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cedc13b7cfc164c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:05:36.000Z'}}, {'blockNum': '0x802eb2', 'uniqueId': '0xdcff0053e1ab09c4a41ac608898e094c632568a42ab84444a829246077ae7e5e:log:27', 'hash': '0xdcff0053e1ab09c4a41ac608898e094c632568a42ab84444a829246077ae7e5e', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xa0203891993c6e0bb7519676b0a66eb14ce79aa5', 'value': 3700.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc89e5cac887e9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:06:09.000Z'}}, {'blockNum': '0x802eb5', 'uniqueId': '0x4ac7376ddf5c155e3914c746c69f7c8d57b3cd448af72c304dc7fad8ce916861:log:17', 'hash': '0x4ac7376ddf5c155e3914c746c69f7c8d57b3cd448af72c304dc7fad8ce916861', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0152de0d34c856cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:06:19.000Z'}}, {'blockNum': '0x802ec5', 'uniqueId': '0x30a71497a98b48223cce27cf3a772dd0c90458e81bc94b144971e6bd496260cc:log:77', 'hash': '0x30a71497a98b48223cce27cf3a772dd0c90458e81bc94b144971e6bd496260cc', 'from': '0xb782c27f02b66b91968a695072c4f2300a303a6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3342.601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb533e84ba4117a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:10:59.000Z'}}, {'blockNum': '0x802ef1', 'uniqueId': '0xf19c9ca9638c58292e482eb2762d987543f828150ba83d6f776c177e7d2c7755:log:2', 'hash': '0xf19c9ca9638c58292e482eb2762d987543f828150ba83d6f776c177e7d2c7755', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 61054.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cedc13b7cfc164c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:26:13.000Z'}}, {'blockNum': '0x802f09', 'uniqueId': '0xbb436ec1a31d2ba13229647977b52a22fc60ab83df48ccaeb0f0c7ccfbbe591b:log:65', 'hash': '0xbb436ec1a31d2ba13229647977b52a22fc60ab83df48ccaeb0f0c7ccfbbe591b', 'from': '0xa0203891993c6e0bb7519676b0a66eb14ce79aa5', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 3700.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc89e5cac887e9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:33:34.000Z'}}, {'blockNum': '0x802f39', 'uniqueId': '0xe4afaaee34bb837703422537f66043efcde1490a61e755a6279d4dad1a6c1e88:log:20', 'hash': '0xe4afaaee34bb837703422537f66043efcde1490a61e755a6279d4dad1a6c1e88', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'value': 4196.181812344968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe379b88600f0aea68f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:44:53.000Z'}}, {'blockNum': '0x802f43', 'uniqueId': '0xf1f95a444d20d2c84289ad43f8fb359391610a8dcead5104b4e59e19cd008b55:log:102', 'hash': '0xf1f95a444d20d2c84289ad43f8fb359391610a8dcead5104b4e59e19cd008b55', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:46:23.000Z'}}, {'blockNum': '0x802f46', 'uniqueId': '0xf491bf18bb09955c50feb2f138c5e2e6e4184a503e6c4b103572aac469d441b3:log:52', 'hash': '0xf491bf18bb09955c50feb2f138c5e2e6e4184a503e6c4b103572aac469d441b3', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0152de0d34c856cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:46:57.000Z'}}, {'blockNum': '0x802f5f', 'uniqueId': '0xb614e2e3d3763937c43ad203bd07d921fa8289bbad24251baa45762401d56c5f:log:9', 'hash': '0xb614e2e3d3763937c43ad203bd07d921fa8289bbad24251baa45762401d56c5f', 'from': '0x56a7e72942a25d07ba05fa1a4f736cd11830e171', 'to': '0xd1eaa6f996998f2713a5d3773f17798c095331a6', 'value': 1429776.8913900275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x012ec45c4fac98ec4fa7d4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:53:01.000Z'}}, {'blockNum': '0x802f6c', 'uniqueId': '0x541800bd665298ccd8106dcf498a50dbd6758b20bbd4a6edf6aa6def3e23c2df:log:39', 'hash': '0x541800bd665298ccd8106dcf498a50dbd6758b20bbd4a6edf6aa6def3e23c2df', 'from': '0xd1eaa6f996998f2713a5d3773f17798c095331a6', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 1429776.8913900275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x012ec45c4fac98ec4fa7d4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:56:15.000Z'}}, {'blockNum': '0x802f9c', 'uniqueId': '0xa98ef812e5ac2f626866321d812f6b5c95fef8de32ef0c289db9e03dda351e58:log:11', 'hash': '0xa98ef812e5ac2f626866321d812f6b5c95fef8de32ef0c289db9e03dda351e58', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 61117.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cf12b88733247e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:08:13.000Z'}}, {'blockNum': '0x802fee', 'uniqueId': '0x17395798804991d53c5d6e7dcf6b8916e98565bcba29f7cdde85b7ef0d049c4e:log:49', 'hash': '0x17395798804991d53c5d6e7dcf6b8916e98565bcba29f7cdde85b7ef0d049c4e', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0xafb6b4965d5a36c23b6416030cc06413e2bc9f3e', 'value': 337.149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1246e4572037951000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:24:33.000Z'}}, {'blockNum': '0x802ff9', 'uniqueId': '0x583ec1a1b751f9cf9a530ae1b59f5eaa29aca513008ccfd6c30fd9700258b71a:log:23', 'hash': '0x583ec1a1b751f9cf9a530ae1b59f5eaa29aca513008ccfd6c30fd9700258b71a', 'from': '0xafb6b4965d5a36c23b6416030cc06413e2bc9f3e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 337.149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1246e4572037951000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:28:26.000Z'}}, {'blockNum': '0x80301d', 'uniqueId': '0xf472459110d1d180c08712fedb0eff10aeb286feb259d778d91cf91fac0cec38:log:6', 'hash': '0xf472459110d1d180c08712fedb0eff10aeb286feb259d778d91cf91fac0cec38', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 266558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3872235ccb302e380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:37:10.000Z'}}, {'blockNum': '0x803032', 'uniqueId': '0x0e13018268600c016b3710bdb93426a0c50af287c32031f91a7284b5b3a8d2a0:log:43', 'hash': '0x0e13018268600c016b3710bdb93426a0c50af287c32031f91a7284b5b3a8d2a0', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 266558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3872235ccb302e380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:41:09.000Z'}}, {'blockNum': '0x803059', 'uniqueId': '0x20cd4cc757163886e2fef4c2341c3e72727df39d7ac4e42b750f3d420f0dae1d:log:28', 'hash': '0x20cd4cc757163886e2fef4c2341c3e72727df39d7ac4e42b750f3d420f0dae1d', 'from': '0xdeeedf35c86a199fb1aa0b5d1f32d7ca4075aad5', 'to': '0xb32b9b08dde5a578ff6af6927af1fd5553d88e05', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:48:49.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:37', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 6360.61715670319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf4b94070cb9f9f7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:39', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6360.61715670319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf4b94070cb9f9f7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:44', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6360.610796086033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf34fb14768c8621', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:46', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 6360.610796086033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf34fb14768c8621', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x803080', 'uniqueId': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0:log:29', 'hash': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4254.288843355284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a01e2ad7e32f98dc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:55.000Z'}}, {'blockNum': '0x803080', 'uniqueId': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0:log:31', 'hash': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 4254.288843355284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a01e2ad7e32f98dc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:55.000Z'}}, {'blockNum': '0x803080', 'uniqueId': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0:log:36', 'hash': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 4254.288843355284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a01e2ad7e32f98dc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:55.000Z'}}, {'blockNum': '0x803086', 'uniqueId': '0x32599eff6f55dde9c4ee49df89db71369ba8ce2741aec9805679c2b4f046ef06:log:0', 'hash': '0x32599eff6f55dde9c4ee49df89db71369ba8ce2741aec9805679c2b4f046ef06', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:58:39.000Z'}}, {'blockNum': '0x803090', 'uniqueId': '0x2ab88bcb547bad17f59239dcdf86252123672d0654c648fccb0d3d3b030e28b3:log:68', 'hash': '0x2ab88bcb547bad17f59239dcdf86252123672d0654c648fccb0d3d3b030e28b3', 'from': '0xb32b9b08dde5a578ff6af6927af1fd5553d88e05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T16:00:37.000Z'}}, {'blockNum': '0x8030b9', 'uniqueId': '0xd707f8c8a239f1de5976a6d2ebcab030e42e947df4b6d6f7fb62cf38f7909d26:log:53', 'hash': '0xd707f8c8a239f1de5976a6d2ebcab030e42e947df4b6d6f7fb62cf38f7909d26', 'from': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T16:11:16.000Z'}}, {'blockNum': '0x803198', 'uniqueId': '0x547251a447d3df704f18d14bf96787779d62c9df1aab886ee458e7dcb69efc96:log:90', 'hash': '0x547251a447d3df704f18d14bf96787779d62c9df1aab886ee458e7dcb69efc96', 'from': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'to': '0x0b0334a135d8f037bd6121a53b1620f8e26f1786', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:03:33.000Z'}}, {'blockNum': '0x8031b5', 'uniqueId': '0xe8cb62e52f9b416ab8f4e72ae10fda0612da438675c86826ec0adbae12986a77:log:1', 'hash': '0xe8cb62e52f9b416ab8f4e72ae10fda0612da438675c86826ec0adbae12986a77', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf1df6526fa58bf7b411439e0843f6d9a5aa73526', 'value': 4937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010ba2a36ea727840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:09:23.000Z'}}, {'blockNum': '0x8031b8', 'uniqueId': '0x1b93c82bbfa54ed10b9110a4cacb109e4237f6d7c25104a898999f5a6337cffb:log:0', 'hash': '0x1b93c82bbfa54ed10b9110a4cacb109e4237f6d7c25104a898999f5a6337cffb', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1ef454fe3ecdbda61285754687d5f329b5221049', 'value': 9007.14926575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e8474e67470d3ddc00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:09:49.000Z'}}, {'blockNum': '0x8031cc', 'uniqueId': '0x014149330f05c48b0ab13e0b7349a1c7aaf6da8fdefa10445423d58e64aa09bd:log:9', 'hash': '0x014149330f05c48b0ab13e0b7349a1c7aaf6da8fdefa10445423d58e64aa09bd', 'from': '0xf1df6526fa58bf7b411439e0843f6d9a5aa73526', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010ba2a36ea727840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:13:32.000Z'}}, {'blockNum': '0x803213', 'uniqueId': '0x99703b3d6920849fbe442f3f0d4de6a110c60bc00dcafece2f8a6a5120b66999:log:6', 'hash': '0x99703b3d6920849fbe442f3f0d4de6a110c60bc00dcafece2f8a6a5120b66999', 'from': '0x1ef454fe3ecdbda61285754687d5f329b5221049', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 9007.14926575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e8474e67470d3ddc00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:26:19.000Z'}}, {'blockNum': '0x803254', 'uniqueId': '0x02dffd490885e48e4027847cc08687a88e087929a800236e5a25c3087aad994e:log:7', 'hash': '0x02dffd490885e48e4027847cc08687a88e087929a800236e5a25c3087aad994e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x9b350e05c4e60cfd5db3c0c87bbfd9205eb4b322', 'value': 28709.748759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06145bcd218adad47000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:41:13.000Z'}}, {'blockNum': '0x8032f6', 'uniqueId': '0x4c410cfce20ac8b70b1798f8409c9a91e17244288f22a056aa8f457a21dbcdb6:log:8', 'hash': '0x4c410cfce20ac8b70b1798f8409c9a91e17244288f22a056aa8f457a21dbcdb6', 'from': '0x4b0552288ad7bdfc7ecd4b68e989c21b277367cc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5718.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013601cb7f73e4560000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:21:11.000Z'}}, {'blockNum': '0x8032f6', 'uniqueId': '0x7b794ce84869c0e7d85ea6803eeab35af5e88110bb8fb9eebf4e7edb1ad30540:log:10', 'hash': '0x7b794ce84869c0e7d85ea6803eeab35af5e88110bb8fb9eebf4e7edb1ad30540', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0117661e4cf00b480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:21:11.000Z'}}, {'blockNum': '0x803312', 'uniqueId': '0xf59fe190e81178b7a709cc89c3daa6dad912a5f09b7664048e5f68a8b4562b34:log:29', 'hash': '0xf59fe190e81178b7a709cc89c3daa6dad912a5f09b7664048e5f68a8b4562b34', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 110817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x177766cfbe5edee40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:25:55.000Z'}}, {'blockNum': '0x803314', 'uniqueId': '0x7d97e5092532caaed28e5e708d86c3044a8175c75abeb6f9523e5bad4432c072:log:6', 'hash': '0x7d97e5092532caaed28e5e708d86c3044a8175c75abeb6f9523e5bad4432c072', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 60543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd20ae841703a9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:26:39.000Z'}}, {'blockNum': '0x803318', 'uniqueId': '0x0eb17c9b840a8523ef60ae75ced985a83aee6e34dffcf4c03132ef8cc189c428:log:86', 'hash': '0x0eb17c9b840a8523ef60ae75ced985a83aee6e34dffcf4c03132ef8cc189c428', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x7c9b4b635d3db87080d30d65806696d30bbe6dd8', 'value': 15.662312217351518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd95bb5faac7f764b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:27:45.000Z'}}, {'blockNum': '0x803328', 'uniqueId': '0x14c86b706cfa42d77cc5f4ce2f6cc1469cd78d782930d674ab07ccbe9255cfe6:log:1', 'hash': '0x14c86b706cfa42d77cc5f4ce2f6cc1469cd78d782930d674ab07ccbe9255cfe6', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 167109.1426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x23630138c48448ec8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:31:09.000Z'}}, {'blockNum': '0x803335', 'uniqueId': '0x03025ef5ba0437566e7e228d56ccd892c1c801be4f1710cdf09c85594406c6ca:log:5', 'hash': '0x03025ef5ba0437566e7e228d56ccd892c1c801be4f1710cdf09c85594406c6ca', 'from': '0x2e46956565cebdcbbb39ecd22af02e1916a2fe37', 'to': '0x87894d45701c7a31d662a357ab25ff9a1c988968', 'value': 1004.8811076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x367986db461f15a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:34:21.000Z'}}, {'blockNum': '0x803338', 'uniqueId': '0x85d08851dedd90abca6aa654bb1f50300e635663790cb2e8a2ee9afedaab52bf:log:67', 'hash': '0x85d08851dedd90abca6aa654bb1f50300e635663790cb2e8a2ee9afedaab52bf', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'value': 77526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106ab160a9a5e5980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:34:57.000Z'}}, {'blockNum': '0x80333e', 'uniqueId': '0x7d4eee9f29116a066ed614e558482e3549795f629a83e163d8d0bcc87b59b6ab:log:96', 'hash': '0x7d4eee9f29116a066ed614e558482e3549795f629a83e163d8d0bcc87b59b6ab', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 93834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13dec057562933e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:35:36.000Z'}}, {'blockNum': '0x803355', 'uniqueId': '0xc1944c7900e4ff4deef31f50cc7729bcd2c0a99c46eba6fae49ee456613d17cc:log:3', 'hash': '0xc1944c7900e4ff4deef31f50cc7729bcd2c0a99c46eba6fae49ee456613d17cc', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 93834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13dec057562933e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:39:46.000Z'}}, {'blockNum': '0x80335c', 'uniqueId': '0x1ebda6586637745b3cc89954f406b182e6e2ba1fac57ed554ba5e04f0834e085:log:15', 'hash': '0x1ebda6586637745b3cc89954f406b182e6e2ba1fac57ed554ba5e04f0834e085', 'from': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106ab160a9a5e5980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:41:07.000Z'}}, {'blockNum': '0x80335e', 'uniqueId': '0x8b5e6ce0bdaec07299c2cdfe99cd9d1b850da6ac24dbdcea049b16a1dbd8a7f5:log:106', 'hash': '0x8b5e6ce0bdaec07299c2cdfe99cd9d1b850da6ac24dbdcea049b16a1dbd8a7f5', 'from': '0x77c370b04cf2a97417f3329062fa57dfca9ba999', 'to': '0x3ec83e4903a1218f7642614a6cadd924bd7cc436', 'value': 303.02318762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106d4a9fa79ca56800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:41:58.000Z'}}, {'blockNum': '0x803391', 'uniqueId': '0xf545fa616052f854fec06aa1842844087f12a410ee5b80a2b35db5f34b0d7f2f:log:26', 'hash': '0xf545fa616052f854fec06aa1842844087f12a410ee5b80a2b35db5f34b0d7f2f', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 17487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3f8e019e737dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:53:45.000Z'}}, {'blockNum': '0x8033eb', 'uniqueId': '0xa03e2a1e58ae916155400bef98d869661b7002de21e00bdaef539b86566548fe:log:1', 'hash': '0xa03e2a1e58ae916155400bef98d869661b7002de21e00bdaef539b86566548fe', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x092c017c5949e43c8191d7545271d94212a0984e', 'value': 10968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0252a06a3e981616c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:13:06.000Z'}}, {'blockNum': '0x803449', 'uniqueId': '0x52e056f4d4e23c739a514178f4379eb80bae8d7c1a052860ea6355c8e7a40d61:log:4', 'hash': '0x52e056f4d4e23c739a514178f4379eb80bae8d7c1a052860ea6355c8e7a40d61', 'from': '0x7c9b4b635d3db87080d30d65806696d30bbe6dd8', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:34:47.000Z'}}, {'blockNum': '0x803459', 'uniqueId': '0x06633c521b4232b474ce0e6129f43b6a91f439a7518f580e15413bf636234d7c:log:51', 'hash': '0x06633c521b4232b474ce0e6129f43b6a91f439a7518f580e15413bf636234d7c', 'from': '0x4e1a6ebc1eef08a38d0f5fb0b6251d0266e940ca', 'to': '0x30a49f875e351f964b0f2016e2ed5daba42e708b', 'value': 8021.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b2dd88396acb490000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:38:02.000Z'}}, {'blockNum': '0x80346d', 'uniqueId': '0x787b7c864363e65c1a02a4c5494ffb3d371c1f811e3130aec9237e398456df50:log:3', 'hash': '0x787b7c864363e65c1a02a4c5494ffb3d371c1f811e3130aec9237e398456df50', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa550c651f807aeaa82662b43012732b85cac9e50', 'value': 2355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7faa30b6acdcec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:42:45.000Z'}}, {'blockNum': '0x80348b', 'uniqueId': '0x5c6e10dac178fa31a39392935099d5f79578b87ba5da3c0be648c9e84de7b9d9:log:0', 'hash': '0x5c6e10dac178fa31a39392935099d5f79578b87ba5da3c0be648c9e84de7b9d9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 357173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ba2631acc5793b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:48:51.000Z'}}, {'blockNum': '0x8034a8', 'uniqueId': '0x6fb14df444a189053fad11566ecc5478604ee875f3112b3596de4ff22d043077:log:1', 'hash': '0x6fb14df444a189053fad11566ecc5478604ee875f3112b3596de4ff22d043077', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 83889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11c3a1bdcd0778240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:55:41.000Z'}}, {'blockNum': '0x8034a8', 'uniqueId': '0x2cb898b300c9665f4dc9e9046fe70b2a9862c6d50387cda2e8880fcc1481f0f7:log:5', 'hash': '0x2cb898b300c9665f4dc9e9046fe70b2a9862c6d50387cda2e8880fcc1481f0f7', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:55:41.000Z'}}, {'blockNum': '0x8034be', 'uniqueId': '0xec3acf5434a554314e0fc02613a907426629b2ead5c42f4c254c843dc5e88973:log:2', 'hash': '0xec3acf5434a554314e0fc02613a907426629b2ead5c42f4c254c843dc5e88973', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 406449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5611a4fa08e7a8240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:08.000Z'}}, {'blockNum': '0x8034bf', 'uniqueId': '0x054f486d452dfb5acb2be20aebb56b9f51a7912147840e4cc0a42e81bfeee077:log:0', 'hash': '0x054f486d452dfb5acb2be20aebb56b9f51a7912147840e4cc0a42e81bfeee077', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 36445.60952590821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07b7b86f7eb2cf676911', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:19.000Z'}}, {'blockNum': '0x8034bf', 'uniqueId': '0xa3bea8e6ee3deed61ad594de74caa4338d42b3cbabc2e876c9fbf8c48e50d012:log:2', 'hash': '0xa3bea8e6ee3deed61ad594de74caa4338d42b3cbabc2e876c9fbf8c48e50d012', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8c2fd1f3ae6162fd3cb3157222dc3979b42e699e', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:19.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c:log:7', 'hash': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 30395.00911750311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x066fb77ca8b57c23f98d', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c:log:9', 'hash': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 30395.00911750311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x066fb77ca8b57c23f98d', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c:log:14', 'hash': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 30394.978722493994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x066fb710ac9bf2bf3b07', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7:log:18', 'hash': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7:log:20', 'hash': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230:log:99', 'hash': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 35904.33392502378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x079a60ba437ec09fdd99', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230:log:103', 'hash': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 35904.33392502378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x079a60ba437ec09fdd99', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430:log:11', 'hash': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33609.81815569577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x071dfdecb42828c84378', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430:log:15', 'hash': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 33609.81815569577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x071dfdecb42828c84378', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3:log:31', 'hash': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 20214.05125905593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0447ce50697a4e5a14cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3:log:33', 'hash': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20214.05125905593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0447ce50697a4e5a14cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3:log:35', 'hash': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 20214.05125905593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0447ce50697a4e5a14cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15:log:47', 'hash': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 19537.2684995676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04231e110b78cbbe7efb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15:log:49', 'hash': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 19537.2684995676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04231e110b78cbbe7efb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15:log:51', 'hash': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 19537.2684995676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04231e110b78cbbe7efb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891:log:3', 'hash': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 35796.84408683893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07948d01a52becc1953e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891:log:5', 'hash': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 35796.84408683893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07948d01a52becc1953e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed:log:27', 'hash': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33251.7549745391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070a94ccbdfeb34c0419', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed:log:31', 'hash': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 33251.7549745391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070a94ccbdfeb34c0419', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed:log:33', 'hash': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 33251.7549745391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070a94ccbdfeb34c0419', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c5', 'uniqueId': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209:log:7', 'hash': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 7575.952352094543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019ab1758d1d3859eeb7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:01.000Z'}}, {'blockNum': '0x8034c5', 'uniqueId': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209:log:9', 'hash': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7575.952352094543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019ab1758d1d3859eeb7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:01.000Z'}}, {'blockNum': '0x8034c5', 'uniqueId': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209:log:11', 'hash': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 7575.952352094543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019ab1758d1d3859eeb7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:01.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x362ad475c980309245c04c23de553e1523e9e7a825ec1aa48147f42595b60dec:log:4', 'hash': '0x362ad475c980309245c04c23de553e1523e9e7a825ec1aa48147f42595b60dec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 96147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x145c23aa135c9a6c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x64ab38cf7596b9a446477f8697941353f5c8799e357e69b220bcc30cda91a40e:log:5', 'hash': '0x64ab38cf7596b9a446477f8697941353f5c8799e357e69b220bcc30cda91a40e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 65326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd5545dc804aff80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x886acc6432533fc35e780c4df445403f367a3f709d599fbbd7f54dcf17782508:log:6', 'hash': '0x886acc6432533fc35e780c4df445403f367a3f709d599fbbd7f54dcf17782508', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 622355.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x83c9f4522eb7ee550000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x0a4626ac436b9eca9251aadae517c5616e7c456478531f2a4f544d75c471a69b:log:7', 'hash': '0x0a4626ac436b9eca9251aadae517c5616e7c456478531f2a4f544d75c471a69b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 224341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2f818ccb6a70c4340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0xde1e34d61fbc9160304f5ee6997aa7bea58b9bb1a520df1e8bcb26985110acf5:log:8', 'hash': '0xde1e34d61fbc9160304f5ee6997aa7bea58b9bb1a520df1e8bcb26985110acf5', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4:log:61', 'hash': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4:log:65', 'hash': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e:log:69', 'hash': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 6161.140714772089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014dff00e4f672a75e7f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e:log:71', 'hash': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6161.140391698783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014dfeffbf2115000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e:log:73', 'hash': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 6161.140391698783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014dfeffbf2115000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c9', 'uniqueId': '0x89ac51370c6f500a7d185116a520cc40f7816459852aa558f85f0f9717527ca0:log:0', 'hash': '0x89ac51370c6f500a7d185116a520cc40f7816459852aa558f85f0f9717527ca0', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11c3a1bdcd0778240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:21.000Z'}}, {'blockNum': '0x8034c9', 'uniqueId': '0xc49fe67128b9b5c71dbfb360420336bd29098cf832db4a7f8d273d89b2dbaa27:log:11', 'hash': '0xc49fe67128b9b5c71dbfb360420336bd29098cf832db4a7f8d273d89b2dbaa27', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 26642.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05a4461abcd6f1570000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:21.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0xb096138eda9af805830c6cdc4ea8fceb26b5a7f12c4d39321ec9f594cd6746ca:log:2', 'hash': '0xb096138eda9af805830c6cdc4ea8fceb26b5a7f12c4d39321ec9f594cd6746ca', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0x11f1f7fb608e64ae29349fd92fcbc7b2f76284d76eb7b41cf32597e20976a660:log:3', 'hash': '0x11f1f7fb608e64ae29349fd92fcbc7b2f76284d76eb7b41cf32597e20976a660', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 99054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14f9ba64bd6a66f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0xde9a8f6c3fc45e024f12cc61515837ede075b34775c5f3b5fa0222952ae01056:log:10', 'hash': '0xde9a8f6c3fc45e024f12cc61515837ede075b34775c5f3b5fa0222952ae01056', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0x14c4277ba527c9b668384c701e0daffa77cd3f360eb5f4ad847200862dd2cb6c:log:11', 'hash': '0x14c4277ba527c9b668384c701e0daffa77cd3f360eb5f4ad847200862dd2cb6c', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034cd', 'uniqueId': '0x86cb69803056bec9de0fcb18f72e228bcafef458db09b451e5c314e9a4c0a38c:log:4', 'hash': '0x86cb69803056bec9de0fcb18f72e228bcafef458db09b451e5c314e9a4c0a38c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 4290, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe88fb5ae9b19c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:13.000Z'}}, {'blockNum': '0x8034cd', 'uniqueId': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f:log:26', 'hash': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3995.767195767196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd89c68c6117e6f119b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:13.000Z'}}, {'blockNum': '0x8034cd', 'uniqueId': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f:log:28', 'hash': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 3995.767195767196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd89c68c6117e6f119b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:13.000Z'}}, {'blockNum': '0x8034cf', 'uniqueId': '0x5913ddc3413c5cd9845aebf27245843f4d74185142ae055a382780fbfe711693:log:0', 'hash': '0x5913ddc3413c5cd9845aebf27245843f4d74185142ae055a382780fbfe711693', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:28.000Z'}}, {'blockNum': '0x8034cf', 'uniqueId': '0x4e9788c1390510fa6d4c8539d3eddac6343b1911112ddea8a6dc4dcfdb344faa:log:2', 'hash': '0x4e9788c1390510fa6d4c8539d3eddac6343b1911112ddea8a6dc4dcfdb344faa', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 7665.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019f9290f400d1840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:28.000Z'}}, {'blockNum': '0x8034d0', 'uniqueId': '0x332fa7d995ff1cb968029a77d6bb2b26be212b0b4189c607c773e8e4c9028b7d:log:0', 'hash': '0x332fa7d995ff1cb968029a77d6bb2b26be212b0b4189c607c773e8e4c9028b7d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 153672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x208a936872d974200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:02.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0xdd786544ee1c6cf023adf017a4e3ff13cddce184955de869fcf8d81620b40d42:log:0', 'hash': '0xdd786544ee1c6cf023adf017a4e3ff13cddce184955de869fcf8d81620b40d42', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbed23a64127be8aedfc9eb0ef2db25fbc3178f43', 'value': 76510.853887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1033a9652e59620af000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0x93de0ba9c1e371cdb261ced88bc3453a262e0e3a2a1f9dd46adaceb5322d8bbf:log:1', 'hash': '0x93de0ba9c1e371cdb261ced88bc3453a262e0e3a2a1f9dd46adaceb5322d8bbf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'value': 100145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1534df0f5d0cc6240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0x3b92b302883471a53d9fb31066e2ef170e4bcad050eb35c3c034188996c1b279:log:2', 'hash': '0x3b92b302883471a53d9fb31066e2ef170e4bcad050eb35c3c034188996c1b279', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 197798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29e2a6ac3d481ad80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0xf40d1ac0a3471eb1108d52bdff06dc886e715df58a5a9bc28ebf96bebdcaf204:log:11', 'hash': '0xf40d1ac0a3471eb1108d52bdff06dc886e715df58a5a9bc28ebf96bebdcaf204', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 5018.617021276596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01100f4d57141880efa8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d4', 'uniqueId': '0xaec656e5931a28052479ce09bc004dae2ce6e3741dfa60a877f78c206f680aea:log:0', 'hash': '0xaec656e5931a28052479ce09bc004dae2ce6e3741dfa60a877f78c206f680aea', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x15640b199d20d80393712c0a656a73424a6bed97', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:48.000Z'}}, {'blockNum': '0x8034d4', 'uniqueId': '0xec1d757455731fb787db59f3d12b87a13f1991a19375775adf33a839fdc83514:log:3', 'hash': '0xec1d757455731fb787db59f3d12b87a13f1991a19375775adf33a839fdc83514', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:48.000Z'}}, {'blockNum': '0x8034d4', 'uniqueId': '0xc6c039f5d6f1855ed747e672aafc19729a35d931f7b5baff99b3dad6b7ba5fb9:log:4', 'hash': '0xc6c039f5d6f1855ed747e672aafc19729a35d931f7b5baff99b3dad6b7ba5fb9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 187303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x27a9b74a2e2cbe3c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:48.000Z'}}, {'blockNum': '0x8034d5', 'uniqueId': '0x0a23ed6fa1776a73d6a0b6c60dd3e41854c69b333d6c58d7e5b21fb9a69a97ef:log:2', 'hash': '0x0a23ed6fa1776a73d6a0b6c60dd3e41854c69b333d6c58d7e5b21fb9a69a97ef', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0fe0ded4fcadde5c9a260723a29f35890f1b577f', 'value': 100077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15312f5ed5544f940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:03.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0x50f5a486e2b6bffbfee74c4c5200121317eec7aa2e6abb44abb7373710d99418:log:2', 'hash': '0x50f5a486e2b6bffbfee74c4c5200121317eec7aa2e6abb44abb7373710d99418', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 85065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1203620516506b840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0x5cf0e955a659815725b19fdbf98ec80bcebc809b3108a3f8a6c856f4afcaf54c:log:3', 'hash': '0x5cf0e955a659815725b19fdbf98ec80bcebc809b3108a3f8a6c856f4afcaf54c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0xdab02c99515562f7e3c4dac24617f48d9b013e91c200d8df6f953df735e75533:log:27', 'hash': '0xdab02c99515562f7e3c4dac24617f48d9b013e91c200d8df6f953df735e75533', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 9135.483870967742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01ef3c4e82c6f6bdef7b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f:log:54', 'hash': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12180.645161290322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02945068ae5e9e5294a5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f:log:56', 'hash': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 12180.645161290322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02945068ae5e9e5294a5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034da', 'uniqueId': '0xa7141d7674e0e1d5917a3141e316044397a6de0e914e672de7d75c5e725c9ca8:log:0', 'hash': '0xa7141d7674e0e1d5917a3141e316044397a6de0e914e672de7d75c5e725c9ca8', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 347002.14566912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497b06257de70a000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:05:16.000Z'}}, {'blockNum': '0x8034da', 'uniqueId': '0xefb01d0433f0f1e0dee6640233598131f280d935d9133b0097f1dbd6d36868c4:log:3', 'hash': '0xefb01d0433f0f1e0dee6640233598131f280d935d9133b0097f1dbd6d36868c4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 123286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1b58f29ac6f8980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:05:16.000Z'}}, {'blockNum': '0x8034dd', 'uniqueId': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f:log:138', 'hash': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5093.61932469544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0114202b0ca8a0bfc271', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:06:05.000Z'}}, {'blockNum': '0x8034dd', 'uniqueId': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f:log:142', 'hash': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 5093.61932469544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0114202b0ca8a0bfc271', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:06:05.000Z'}}, {'blockNum': '0x8034e1', 'uniqueId': '0xdd4e12de6e9198222b00e3316b1d8de2d0656d526e01f1b390f5b52d37bab158:log:15', 'hash': '0xdd4e12de6e9198222b00e3316b1d8de2d0656d526e01f1b390f5b52d37bab158', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 406449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5611a4fa08e7a8240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:06:30.000Z'}}, {'blockNum': '0x8034e4', 'uniqueId': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526:log:34', 'hash': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a7da17', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:07:42.000Z'}}, {'blockNum': '0x8034e4', 'uniqueId': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526:log:36', 'hash': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x1f959dd88a9c469e16060eef0cb8d0778a256d42', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a7da17', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:07:42.000Z'}}, {'blockNum': '0x8034e5', 'uniqueId': '0x0de28170f14d4a5ef70bc839499ea4e5921c2f73d9d3b0c17751bee7ece181f0:log:122', 'hash': '0x0de28170f14d4a5ef70bc839499ea4e5921c2f73d9d3b0c17751bee7ece181f0', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01141792c42128740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:14.000Z'}}, {'blockNum': '0x8034e8', 'uniqueId': '0xdd2f432c785d3c0b419bb533a3c4b867cf022379331bddd24c27d4d46ea07a56:log:45', 'hash': '0xdd2f432c785d3c0b419bb533a3c4b867cf022379331bddd24c27d4d46ea07a56', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 5163.934426229508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0117effc78f56470c971', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:50.000Z'}}, {'blockNum': '0x8034e8', 'uniqueId': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5:log:75', 'hash': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7229.508196721312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0187e994a9578c9de6d1', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:50.000Z'}}, {'blockNum': '0x8034e8', 'uniqueId': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5:log:77', 'hash': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 7229.508196721312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0187e994a9578c9de6d1', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:50.000Z'}}, {'blockNum': '0x8034f2', 'uniqueId': '0xa487bf8c98c58aacaaf8f14ba7bfb2cff869449c33d39cc1d226318747f8ef33:log:2', 'hash': '0xa487bf8c98c58aacaaf8f14ba7bfb2cff869449c33d39cc1d226318747f8ef33', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 255006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x35ffe728604eadb80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:02.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0xa356e129ebe94a4621d35aba918aaa59e1e49b597920d097f2533dc595bac96d:log:1', 'hash': '0xa356e129ebe94a4621d35aba918aaa59e1e49b597920d097f2533dc595bac96d', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26642.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05a4461abcd6f1570000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0xb0aec820064a159035c2687dcf5e76c8007c7d5a4857c875aeebc33227d9de41:log:2', 'hash': '0xb0aec820064a159035c2687dcf5e76c8007c7d5a4857c875aeebc33227d9de41', 'from': '0x0fe0ded4fcadde5c9a260723a29f35890f1b577f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15312f5ed5544f940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x8942b5ea8225f316223228074f061874f5d8fe2cd41ec3ef2b228fb3ccff27a9:log:3', 'hash': '0x8942b5ea8225f316223228074f061874f5d8fe2cd41ec3ef2b228fb3ccff27a9', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x697c96525cc0d59baac305393424b77f7287b16298c46c8f31480938fdd32297:log:4', 'hash': '0x697c96525cc0d59baac305393424b77f7287b16298c46c8f31480938fdd32297', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 96147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x145c23aa135c9a6c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x189b81430d52415bf4284f0c5d92b57c00c786e8fd4b7ec0de787f81386bd640:log:5', 'hash': '0x189b81430d52415bf4284f0c5d92b57c00c786e8fd4b7ec0de787f81386bd640', 'from': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 153672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x208a936872d974200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x4527454b792bde8421600455f17fdfe0c1d0e888c09fd0920cf9bf74cb49451f:log:7', 'hash': '0x4527454b792bde8421600455f17fdfe0c1d0e888c09fd0920cf9bf74cb49451f', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0xcbc4d2e03dc158302d670ca3795b8dc1ac135d252fd576b6936a465416300e37:log:11', 'hash': '0xcbc4d2e03dc158302d670ca3795b8dc1ac135d252fd576b6936a465416300e37', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x0238db2f1fbd6371a48baa48b31947562e44fdd305de5ac563be9571a302fa2a:log:12', 'hash': '0x0238db2f1fbd6371a48baa48b31947562e44fdd305de5ac563be9571a302fa2a', 'from': '0xbed23a64127be8aedfc9eb0ef2db25fbc3178f43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 76510.853887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1033a9652e59620af000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x1290df3901e1866e4529ff11abd9fec10a7e302267f1a66c86182df1eae8e4b7:log:13', 'hash': '0x1290df3901e1866e4529ff11abd9fec10a7e302267f1a66c86182df1eae8e4b7', 'from': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1534df0f5d0cc6240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x08c81dbc67e4ea48d0ed99f75530515511b5d7d8c02baafaae9a35dfae35ecca:log:14', 'hash': '0x08c81dbc67e4ea48d0ed99f75530515511b5d7d8c02baafaae9a35dfae35ecca', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 622355.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x83c9f4522eb7ee550000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x1b6b684f08dfdf3b54702f3817482b551ba712c1554c6b91d49ce6d834949fa8:log:15', 'hash': '0x1b6b684f08dfdf3b54702f3817482b551ba712c1554c6b91d49ce6d834949fa8', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 836520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb123d70e971705a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x277684a32c886717581eeba5d48d0ffe970221b313147acae4fa30ecd211079d:log:16', 'hash': '0x277684a32c886717581eeba5d48d0ffe970221b313147acae4fa30ecd211079d', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x88b42dec987ccde65452fb8132d29e9c1beb2285623565098c4831d03f31c290:log:20', 'hash': '0x88b42dec987ccde65452fb8132d29e9c1beb2285623565098c4831d03f31c290', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0115c5c8e3e26d900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034fb', 'uniqueId': '0xbff49fdd2d63a2e7b9c4e4cc927c89e02fa4203c18a76b208c668b9efec09cdc:log:5', 'hash': '0xbff49fdd2d63a2e7b9c4e4cc927c89e02fa4203c18a76b208c668b9efec09cdc', 'from': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 85065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1203620516506b840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:12:23.000Z'}}, {'blockNum': '0x803502', 'uniqueId': '0x8ec906fdbec2a42a2464b8a05e7a93af01a1a763768d267ca100d8be596ad1a6:log:2', 'hash': '0x8ec906fdbec2a42a2464b8a05e7a93af01a1a763768d267ca100d8be596ad1a6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:14:04.000Z'}}, {'blockNum': '0x803503', 'uniqueId': '0xab0969b4922dcf8accb491436fc40f9feae7e4930a8ed856d4eadf503b2d35bf:log:2', 'hash': '0xab0969b4922dcf8accb491436fc40f9feae7e4930a8ed856d4eadf503b2d35bf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 347058.55028586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497e14eaf1fba9c06800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:14:19.000Z'}}, {'blockNum': '0x80350c', 'uniqueId': '0x7800bf78101aa0e1792846c5bbd6aaf69123dcc3de8cc90baa8f1da31c1d20b4:log:13', 'hash': '0x7800bf78101aa0e1792846c5bbd6aaf69123dcc3de8cc90baa8f1da31c1d20b4', 'from': '0x0b0334a135d8f037bd6121a53b1620f8e26f1786', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:16:07.000Z'}}, {'blockNum': '0x80350f', 'uniqueId': '0x19f7b6229a59dd2fc0e6a18c35f3a2db002d6779e0d966f80df60c0f928e564f:log:10', 'hash': '0x19f7b6229a59dd2fc0e6a18c35f3a2db002d6779e0d966f80df60c0f928e564f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 150825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff03d589ae6e3040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:16:52.000Z'}}, {'blockNum': '0x803516', 'uniqueId': '0xba258d74f3e723161b143d695ca4d756a338704444b0ee72c2de61f334f93d3e:log:0', 'hash': '0xba258d74f3e723161b143d695ca4d756a338704444b0ee72c2de61f334f93d3e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 57370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2608afc0b680280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:18:11.000Z'}}, {'blockNum': '0x80351f', 'uniqueId': '0x2cee01dcdaed5e7afc74ce50a69dd1b77fd2e6135197ec46f769d248efe4cca9:log:0', 'hash': '0x2cee01dcdaed5e7afc74ce50a69dd1b77fd2e6135197ec46f769d248efe4cca9', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 347058.55028586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497e14eaf1fba9c06800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:18.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x78676c988e74352a52411c4244fabbfa0d5b840300ec389b9034477c13c37ae6:log:4', 'hash': '0x78676c988e74352a52411c4244fabbfa0d5b840300ec389b9034477c13c37ae6', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7665.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019f9290f400d1840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xe72e5c1392d952e9747eeda1ac29bf5af8ae466d0bb5d39a3b848a3cb2108c3f:log:5', 'hash': '0xe72e5c1392d952e9747eeda1ac29bf5af8ae466d0bb5d39a3b848a3cb2108c3f', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd5545dc804aff80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xe5065606ef7cead7826a0924f69f635e9ae2566fde72a9e27e0f1e2d4dd6ed45:log:8', 'hash': '0xe5065606ef7cead7826a0924f69f635e9ae2566fde72a9e27e0f1e2d4dd6ed45', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 347002.14566912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497b06257de70a000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x91dbe23b646d1cf93b8fa99d1abd440363b495422a93c05a8619c1be394cacd8:log:9', 'hash': '0x91dbe23b646d1cf93b8fa99d1abd440363b495422a93c05a8619c1be394cacd8', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff03d589ae6e3040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xa65511b775a022ddefcbb36770f3e3a3ed823bb89f4005c6f10b66f0cb78f734:log:10', 'hash': '0xa65511b775a022ddefcbb36770f3e3a3ed823bb89f4005c6f10b66f0cb78f734', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01141792c42128740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x0d7b6c30486f3c141c2ca77c6f6e8e9dea712fe7d69dc3f2ad77ac0b646e5ba3:log:11', 'hash': '0x0d7b6c30486f3c141c2ca77c6f6e8e9dea712fe7d69dc3f2ad77ac0b646e5ba3', 'from': '0x15640b199d20d80393712c0a656a73424a6bed97', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xf5824058c0124d559d13208af561a4d0f50c54d359fc968e2acba8a01c5d1e7b:log:12', 'hash': '0xf5824058c0124d559d13208af561a4d0f50c54d359fc968e2acba8a01c5d1e7b', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 197798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29e2a6ac3d481ad80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x41fb96caf8f2041c64984517008d99b8270a0d4a7d4b3be58d2e540c35ac0a04:log:13', 'hash': '0x41fb96caf8f2041c64984517008d99b8270a0d4a7d4b3be58d2e540c35ac0a04', 'from': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x4d8563bbf5610fc7c77f386a047443b404fbe2c491984024e3303de702181d3a:log:14', 'hash': '0x4d8563bbf5610fc7c77f386a047443b404fbe2c491984024e3303de702181d3a', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14f9ba64bd6a66f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0:log:46', 'hash': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0', 'from': '0x4703d474871889fb4edf5e3910d03620497c328f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3121.83413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa93c26d10c84a32000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0:log:47', 'hash': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x4703d474871889fb4edf5e3910d03620497c328f', 'value': 121.2675993355972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0692ed0f17aaaac3e8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0:log:48', 'hash': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000.5665306644028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a939c1f4d9f85c18', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803547', 'uniqueId': '0x5fe32a64b10b70f487d2635804ec096905ff9cfd26f5723fcd90dfc7689c7756:log:8', 'hash': '0x5fe32a64b10b70f487d2635804ec096905ff9cfd26f5723fcd90dfc7689c7756', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 362014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ca8d179b79ff5b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:28:14.000Z'}}, {'blockNum': '0x803555', 'uniqueId': '0xee32aada831059969758a7903562842e5f11d3a444662d79b862af187402f8fe:log:7', 'hash': '0xee32aada831059969758a7903562842e5f11d3a444662d79b862af187402f8fe', 'from': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:30:58.000Z'}}, {'blockNum': '0x803555', 'uniqueId': '0x4551d8116477d87674c97c1e30611de78bdebc47c8f3c591cd934f0d03451432:log:27', 'hash': '0x4551d8116477d87674c97c1e30611de78bdebc47c8f3c591cd934f0d03451432', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 6258.563535911602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01534704489eefc1c498', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:30:58.000Z'}}, {'blockNum': '0x803567', 'uniqueId': '0x97f32c43016baa74946cba7ff38c45f52893b084671672d03b6fd6809b066c9b:log:0', 'hash': '0x97f32c43016baa74946cba7ff38c45f52893b084671672d03b6fd6809b066c9b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 232120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3127401b1f8837e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:34:34.000Z'}}, {'blockNum': '0x80356f', 'uniqueId': '0xcb97884b628236e13284b54cc2cd4816236873c3210a4d57c4d4393e34bf96d2:log:18', 'hash': '0xcb97884b628236e13284b54cc2cd4816236873c3210a4d57c4d4393e34bf96d2', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 362014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ca8d179b79ff5b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:35:17.000Z'}}, {'blockNum': '0x80356f', 'uniqueId': '0x058519c2d2bd5edf6c87fbd99efe2534db46ac17fc8e3f61688643d8d64fb30f:log:20', 'hash': '0x058519c2d2bd5edf6c87fbd99efe2534db46ac17fc8e3f61688643d8d64fb30f', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'value': 76810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1043e0e1ab2db9e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:35:17.000Z'}}, {'blockNum': '0x803572', 'uniqueId': '0xc39a5fae3a9bd67df87bc6ca98eb3d301bf913babc4f801a78d1281d076e3f03:log:8', 'hash': '0xc39a5fae3a9bd67df87bc6ca98eb3d301bf913babc4f801a78d1281d076e3f03', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'value': 50703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0abc9d79a7fe26dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:35:48.000Z'}}, {'blockNum': '0x803574', 'uniqueId': '0x6c36c02e1af5781c30d8a3ad87ad0d1312885cc0f6c6f90097b92337a6f3678a:log:63', 'hash': '0x6c36c02e1af5781c30d8a3ad87ad0d1312885cc0f6c6f90097b92337a6f3678a', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 103549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed670cb9e28bd40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:36:32.000Z'}}, {'blockNum': '0x803588', 'uniqueId': '0x50380d5009ce95a19d865f48ae5d60c4de5b2b1f582fdcad4239df4323b5d95e:log:37', 'hash': '0x50380d5009ce95a19d865f48ae5d60c4de5b2b1f582fdcad4239df4323b5d95e', 'from': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 50703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0abc9d79a7fe26dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:40:46.000Z'}}, {'blockNum': '0x803588', 'uniqueId': '0xece88e233c2932ee0cf6426b01fa9532e5894875bee5bfb5f13df07dd7f6d84c:log:61', 'hash': '0xece88e233c2932ee0cf6426b01fa9532e5894875bee5bfb5f13df07dd7f6d84c', 'from': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 76810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1043e0e1ab2db9e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:40:46.000Z'}}, {'blockNum': '0x803589', 'uniqueId': '0x3621631b1f44152fc5bc890591243162c13ee275e3134861445acd09da2c44e4:log:11', 'hash': '0x3621631b1f44152fc5bc890591243162c13ee275e3134861445acd09da2c44e4', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 103549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed670cb9e28bd40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:41:30.000Z'}}, {'blockNum': '0x80358a', 'uniqueId': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b:log:59', 'hash': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6281.767955801105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0154890af1916c93fa57', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:41:54.000Z'}}, {'blockNum': '0x80358a', 'uniqueId': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b:log:61', 'hash': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 6281.767955801105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0154890af1916c93fa57', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:41:54.000Z'}}, {'blockNum': '0x803596', 'uniqueId': '0x55b3ff4bcefcbf1a245e979e0dbb531c8559b4b465c85f12908f0c02635e5e84:log:55', 'hash': '0x55b3ff4bcefcbf1a245e979e0dbb531c8559b4b465c85f12908f0c02635e5e84', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'value': 345632.317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4930c3f471004e4c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:44:35.000Z'}}, {'blockNum': '0x8035a7', 'uniqueId': '0xd1ee2c222aa297d0cd77b916f08cd5eb4d85410b1ed8805b8e38e1a79d27fed7:log:3', 'hash': '0xd1ee2c222aa297d0cd77b916f08cd5eb4d85410b1ed8805b8e38e1a79d27fed7', 'from': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 345632.317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4930c3f471004e4c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:49:38.000Z'}}, {'blockNum': '0x8035c2', 'uniqueId': '0x9115fbcb54dc8ca5aa200262f7b8ab472beecb77fcd5fee559693e17e539e825:log:40', 'hash': '0x9115fbcb54dc8ca5aa200262f7b8ab472beecb77fcd5fee559693e17e539e825', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 8469.27374301676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01cb1ec8ad2368e9d518', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:54:45.000Z'}}, {'blockNum': '0x8035ca', 'uniqueId': '0xe94948e11bba1b5d5e1bd70e624063b7b2319be8b1da0779c27a2f39cb828e20:log:15', 'hash': '0xe94948e11bba1b5d5e1bd70e624063b7b2319be8b1da0779c27a2f39cb828e20', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x4f18343762b567f431ba8cda7b9f27735f365756', 'value': 18574.4001706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03eeeb958fc558061000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:55:59.000Z'}}, {'blockNum': '0x80361c', 'uniqueId': '0x1464a174f822a40353b2515197c7883814d59222a025674d7dc6605e7a403d0b:log:1', 'hash': '0x1464a174f822a40353b2515197c7883814d59222a025674d7dc6605e7a403d0b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 343637.70152975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x48c4a31ac6bc08525c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:14:51.000Z'}}, {'blockNum': '0x803649', 'uniqueId': '0x6d1db111e92c20dde9ce61e1a2bb5deabe8a857dff353f4c7019107f02377f00:log:12', 'hash': '0x6d1db111e92c20dde9ce61e1a2bb5deabe8a857dff353f4c7019107f02377f00', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 343637.70152975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x48c4a31ac6bc08525c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:25:50.000Z'}}, {'blockNum': '0x803670', 'uniqueId': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb:log:111', 'hash': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3520.223555708562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbed4ea60f923580f48', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:34:57.000Z'}}, {'blockNum': '0x803670', 'uniqueId': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb:log:113', 'hash': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3520.2234526861043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbed4ea03465a580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:34:57.000Z'}}, {'blockNum': '0x803670', 'uniqueId': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb:log:114', 'hash': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3520.2234526861043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbed4ea03465a580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:34:57.000Z'}}, {'blockNum': '0x803678', 'uniqueId': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8:log:19', 'hash': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3671.7940336387337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc70c60e3988b6a9c2f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:37:38.000Z'}}, {'blockNum': '0x803678', 'uniqueId': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8:log:21', 'hash': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3671.7939212245096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc70c607d5b11880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:37:38.000Z'}}, {'blockNum': '0x803678', 'uniqueId': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8:log:22', 'hash': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3671.7939212245096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc70c607d5b11880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:37:38.000Z'}}, {'blockNum': '0x80369a', 'uniqueId': '0xaf67d082e8f455ae8a812c9e32c71b7746e7c20c402c096fe37a843e8e2a6a3e:log:4', 'hash': '0xaf67d082e8f455ae8a812c9e32c71b7746e7c20c402c096fe37a843e8e2a6a3e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc40f65c5e9c146494eb61da2f012f6e5f7af8ab9', 'value': 9917.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02199a29146ddc950000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:45:20.000Z'}}, {'blockNum': '0x8036a8', 'uniqueId': '0x0c14dd6b6cb3f5c9a76e48302219efbe075c9008e332bbf871239ae614a27350:log:2', 'hash': '0x0c14dd6b6cb3f5c9a76e48302219efbe075c9008e332bbf871239ae614a27350', 'from': '0xc40f65c5e9c146494eb61da2f012f6e5f7af8ab9', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 9917.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02199a29146ddc950000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:48:42.000Z'}}, {'blockNum': '0x803799', 'uniqueId': '0x976c575ab2656118c45fa46809b59ef59acdc5ba6cb3de137fc8dd4eda7a91cf:log:9', 'hash': '0x976c575ab2656118c45fa46809b59ef59acdc5ba6cb3de137fc8dd4eda7a91cf', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'value': 238029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x326793f4404eef140000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:40:47.000Z'}}, {'blockNum': '0x80379a', 'uniqueId': '0xf94dd77eecea58c4a91d2175b77a2bc064d174c0c285fb80be07c92e1f04d770:log:40', 'hash': '0xf94dd77eecea58c4a91d2175b77a2bc064d174c0c285fb80be07c92e1f04d770', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 109985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x174a4c7df67ed9e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:41:12.000Z'}}, {'blockNum': '0x80379e', 'uniqueId': '0x6977af02f522d0bcd195f178163ff29b3d131e48a8f2e70cbb3de4d33786c9ae:log:22', 'hash': '0x6977af02f522d0bcd195f178163ff29b3d131e48a8f2e70cbb3de4d33786c9ae', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 63797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d82713a9101ebb40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:41:38.000Z'}}, {'blockNum': '0x8037a8', 'uniqueId': '0xf1914245d71022415110e8dcc6cee9f9320c6f94ab4b1372519c92514d151196:log:1', 'hash': '0xf1914245d71022415110e8dcc6cee9f9320c6f94ab4b1372519c92514d151196', 'from': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 238029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x326793f4404eef140000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:44:10.000Z'}}, {'blockNum': '0x8037a8', 'uniqueId': '0xca9bb065f6a000921f711f53dde60cbe611f2fac37b5e0514b9f7fa2f4f645a2:log:2', 'hash': '0xca9bb065f6a000921f711f53dde60cbe611f2fac37b5e0514b9f7fa2f4f645a2', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 63797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d82713a9101ebb40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:44:10.000Z'}}, {'blockNum': '0x8037aa', 'uniqueId': '0xcb1292570996a3a7ed5ee2c0997c5487d887c98a68ea23ac3ce356d881091be6:log:0', 'hash': '0xcb1292570996a3a7ed5ee2c0997c5487d887c98a68ea23ac3ce356d881091be6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdea6177f1df6ca2d96e998ea01b2b04c27740a8e', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:45:35.000Z'}}, {'blockNum': '0x8037c1', 'uniqueId': '0xc332b1132a38afb2c21c9342a4b49e8c09e3dd5cc92724d435c4c448e3d9bd83:log:3', 'hash': '0xc332b1132a38afb2c21c9342a4b49e8c09e3dd5cc92724d435c4c448e3d9bd83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1059779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe06abc15ce364d2c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:52:21.000Z'}}, {'blockNum': '0x8037d0', 'uniqueId': '0x3b47910f7e4e3f9fced8e46b036961e0a9fcb299b8469835ea5dcd8127e6643c:log:10', 'hash': '0x3b47910f7e4e3f9fced8e46b036961e0a9fcb299b8469835ea5dcd8127e6643c', 'from': '0xdea6177f1df6ca2d96e998ea01b2b04c27740a8e', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:55:58.000Z'}}, {'blockNum': '0x80386b', 'uniqueId': '0xe4c028f6c9e4d9e3aedd27324fea9fbce77e2a4aff756ae2d999476b709014cd:log:11', 'hash': '0xe4c028f6c9e4d9e3aedd27324fea9fbce77e2a4aff756ae2d999476b709014cd', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2b7c6615195babbdbac5665eae1954f36865166f', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T23:32:43.000Z'}}, {'blockNum': '0x8038d7', 'uniqueId': '0x2f83f0285acc1f169bc1dc4051d18fdc7556676ffa7a79a80e11d1090f7afcc7:log:3', 'hash': '0x2f83f0285acc1f169bc1dc4051d18fdc7556676ffa7a79a80e11d1090f7afcc7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbce49cd26220ddd885b38b6ae7cf3d5f7dde9aaf', 'value': 336.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x123f436c9de47c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T23:55:48.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:115', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4019.590022507743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e70474c5266b1e35', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:119', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4019.590022507743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e70474c5266b1e35', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:120', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4019.583980470733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e6eefd91c8b98daf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:121', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4019.583980470733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e6eefd91c8b98daf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x803901', 'uniqueId': '0xe70dea2e44a96012ad4e34033153795b0e3cc35e3425515548643c99b4be863b:log:5', 'hash': '0xe70dea2e44a96012ad4e34033153795b0e3cc35e3425515548643c99b4be863b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6b838d866e45449294c32dedd9fcf3326fa099d9', 'value': 10418.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0234cfa1b89e753ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:06:45.000Z'}}, {'blockNum': '0x803903', 'uniqueId': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba:log:83', 'hash': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4241.979330448937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe5f549fe12d64295c5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:07:09.000Z'}}, {'blockNum': '0x803903', 'uniqueId': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba:log:85', 'hash': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4241.979179949869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe5f54975320ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:07:09.000Z'}}, {'blockNum': '0x803903', 'uniqueId': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba:log:86', 'hash': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4241.979179949869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe5f54975320ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:07:09.000Z'}}, {'blockNum': '0x80390d', 'uniqueId': '0xcb01da6794f7fe769d366db503691e034af5b4a81c0c797c492a4df0220328d1:log:0', 'hash': '0xcb01da6794f7fe769d366db503691e034af5b4a81c0c797c492a4df0220328d1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 693737.65530867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92e797f9839bfb996c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:08:56.000Z'}}, {'blockNum': '0x803910', 'uniqueId': '0x8b9ad78810dd1605f82b78577b76f3f3d12e01a91dff94dcdec615cb9b1d8db6:log:1', 'hash': '0x8b9ad78810dd1605f82b78577b76f3f3d12e01a91dff94dcdec615cb9b1d8db6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 693738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92e79cc21a8c35680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:09:17.000Z'}}, {'blockNum': '0x803920', 'uniqueId': '0x4ca006c2d6fec6851de1e742fde1ea0d14e570f6f1a060a8e5c47eb616930477:log:6', 'hash': '0x4ca006c2d6fec6851de1e742fde1ea0d14e570f6f1a060a8e5c47eb616930477', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x924ba914a8a8e5b45b5d39984529eacd9fd61beb', 'value': 25971.69534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057fedad4bca680ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:11:35.000Z'}}, {'blockNum': '0x80392f', 'uniqueId': '0xef7e5a0125ef8086cd0bd26fd0a7d170f4bea61d3d6b2f90ed42fe0e45d8238b:log:9', 'hash': '0xef7e5a0125ef8086cd0bd26fd0a7d170f4bea61d3d6b2f90ed42fe0e45d8238b', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3986a7e0df57ead3abed03ba5ce4ef1a51180d31', 'value': 10418.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0234cfa1b89e753ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:15:06.000Z'}}, {'blockNum': '0x80393f', 'uniqueId': '0xa5a4034fa33134e49d0ed0289b3a08e97e0b527e053789532c691f18291dffac:log:2', 'hash': '0xa5a4034fa33134e49d0ed0289b3a08e97e0b527e053789532c691f18291dffac', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 273528.72225766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x39ec05911c0f837ad800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:18:41.000Z'}}, {'blockNum': '0x803940', 'uniqueId': '0xcf5577e639e6a1da64bcc5d3c2375263e25923e12a4edfd04a426bbe2adc2ffa:log:0', 'hash': '0xcf5577e639e6a1da64bcc5d3c2375263e25923e12a4edfd04a426bbe2adc2ffa', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 73314.78221023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f8666fd9dd71f1b9c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:18:47.000Z'}}, {'blockNum': '0x80396e', 'uniqueId': '0x0b10e125537770a2f2596d03a614e2ab5a33f5c54d6364e03f9fe6d5303bf2da:log:44', 'hash': '0x0b10e125537770a2f2596d03a614e2ab5a33f5c54d6364e03f9fe6d5303bf2da', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 693737.65530867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92e797f9839bfb996c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:26:18.000Z'}}, {'blockNum': '0x803986', 'uniqueId': '0x84ca8086b25d0d1290f513851c8a2c5ab9520575ce5e2fd7a89638a93b8a0a27:log:22', 'hash': '0x84ca8086b25d0d1290f513851c8a2c5ab9520575ce5e2fd7a89638a93b8a0a27', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 346843.50446789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49726c8eb9e6a2967400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:31:22.000Z'}}, {'blockNum': '0x8039b6', 'uniqueId': '0x5493e6804b7a1aec1ec5ccce7b5982ee7fd494dd21c840414487505aa4467318:log:34', 'hash': '0x5493e6804b7a1aec1ec5ccce7b5982ee7fd494dd21c840414487505aa4467318', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x4f18343762b567f431ba8cda7b9f27735f365756', 'value': 76209.2378022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10234fa1974109f27000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:42:14.000Z'}}, {'blockNum': '0x8039c4', 'uniqueId': '0xe030d236db4c4a9184ec7e7ca4a948d552a1d9e2919220245c5d411f23dd2f0d:log:28', 'hash': '0xe030d236db4c4a9184ec7e7ca4a948d552a1d9e2919220245c5d411f23dd2f0d', 'from': '0x90889616322936d77c9fa1e1441e23754fbba1f7', 'to': '0x331f06673a10408c5982b24776007c44d08cf7f5', 'value': 547893.012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x740556f6406951020000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:45:24.000Z'}}, {'blockNum': '0x8039fa', 'uniqueId': '0x3bc588aae8eda80b3fd7bb24abdaf8faeffe61ba3809d15f1535680112f50753:log:10', 'hash': '0x3bc588aae8eda80b3fd7bb24abdaf8faeffe61ba3809d15f1535680112f50753', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb6ff8c73b2239bcd735cd66ce971f21376a69286', 'value': 132479.6572306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1c0dbc9267ec9f205000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:59:52.000Z'}}, {'blockNum': '0x8039ff', 'uniqueId': '0x53f84c7cdb91a263002bd16fe0644e519a2a3fc2a4e631dd72178e7457cfbba2:log:57', 'hash': '0x53f84c7cdb91a263002bd16fe0644e519a2a3fc2a4e631dd72178e7457cfbba2', 'from': '0x331f06673a10408c5982b24776007c44d08cf7f5', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 547893.012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x740556f6406951020000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:01:31.000Z'}}, {'blockNum': '0x803a13', 'uniqueId': '0x52b58438d9a6733b157cdef89519382d4b8b8438991edc371781141a2683c134:log:1', 'hash': '0x52b58438d9a6733b157cdef89519382d4b8b8438991edc371781141a2683c134', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:05:45.000Z'}}, {'blockNum': '0x803a17', 'uniqueId': '0xf9cbd2648ceb02b1821a466da3070036850b5b10cc9f89c295f1c404c093bcbf:log:0', 'hash': '0xf9cbd2648ceb02b1821a466da3070036850b5b10cc9f89c295f1c404c093bcbf', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:06:20.000Z'}}, {'blockNum': '0x803a18', 'uniqueId': '0x824f866f7bc6489af88cd1a6c9658413983cad4ef18c2fdda5ac242d9a9c71e1:log:0', 'hash': '0x824f866f7bc6489af88cd1a6c9658413983cad4ef18c2fdda5ac242d9a9c71e1', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:06:36.000Z'}}, {'blockNum': '0x803a1b', 'uniqueId': '0x387c3e014048f497dbff65e5f40a708e1cbb347ec61f4dd6dfe1ae0dc13ba4e6:log:0', 'hash': '0x387c3e014048f497dbff65e5f40a708e1cbb347ec61f4dd6dfe1ae0dc13ba4e6', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 329900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45dbea32a2e397300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:07:15.000Z'}}, {'blockNum': '0x803a1d', 'uniqueId': '0x76c3ff789169311db8b3ac1fc7cc3901adadaffdba06db23d85954a3295900a3:log:0', 'hash': '0x76c3ff789169311db8b3ac1fc7cc3901adadaffdba06db23d85954a3295900a3', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:07:48.000Z'}}, {'blockNum': '0x803a1e', 'uniqueId': '0xe896c030ba86ed6372db56f03c497d0c462730e3081ef902e18965bf53366705:log:3', 'hash': '0xe896c030ba86ed6372db56f03c497d0c462730e3081ef902e18965bf53366705', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 83460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11ac602ba1f7f5900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:10.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:97', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5979.041082998097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01441fdd0aab60744ba0', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:101', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 5979.041082998097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01441fdd0aab60744ba0', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:102', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5979.2224047213285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0144226139d0e7b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:103', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5979.2224047213285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0144226139d0e7b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a23', 'uniqueId': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe:log:85', 'hash': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 6222.404439515491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015151355e07166ead52', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:17.000Z'}}, {'blockNum': '0x803a23', 'uniqueId': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe:log:87', 'hash': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 6222.4041145352485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015151343675ba800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:17.000Z'}}, {'blockNum': '0x803a23', 'uniqueId': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe:log:88', 'hash': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 6222.4041145352485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015151343675ba800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:17.000Z'}}, {'blockNum': '0x803a25', 'uniqueId': '0x0f66282451d06f51a886b242749021f3cf1dd416a35b1de155f876ef2f5aecc6:log:1', 'hash': '0x0f66282451d06f51a886b242749021f3cf1dd416a35b1de155f876ef2f5aecc6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:49.000Z'}}, {'blockNum': '0x803a2b', 'uniqueId': '0xdbb6ff8afd96e3b13da398b592758b28455be5c7b59501f5dd2c754902283a24:log:4', 'hash': '0xdbb6ff8afd96e3b13da398b592758b28455be5c7b59501f5dd2c754902283a24', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 302626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x40156369c2bbf3480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:12:01.000Z'}}, {'blockNum': '0x803a46', 'uniqueId': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051:log:35', 'hash': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 3309.767919176599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb36c41c296d0feef75', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:17:23.000Z'}}, {'blockNum': '0x803a46', 'uniqueId': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051:log:37', 'hash': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3309.767919176599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb36c41c296d0feef75', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:17:23.000Z'}}, {'blockNum': '0x803a46', 'uniqueId': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051:log:38', 'hash': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3309.767919176599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb36c41c296d0feef75', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:17:23.000Z'}}, {'blockNum': '0x803a55', 'uniqueId': '0xd7bfdff18f84397114ca6563136ed1097781eb5be1a015c31d2bb44d63660d3d:log:29', 'hash': '0xd7bfdff18f84397114ca6563136ed1097781eb5be1a015c31d2bb44d63660d3d', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'value': 589.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff7bb41a2afda0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:20:58.000Z'}}, {'blockNum': '0x803a55', 'uniqueId': '0x1c12c4c421e01bad22ac8556d5233218397c1f8f36af1703607249713b095bae:log:60', 'hash': '0x1c12c4c421e01bad22ac8556d5233218397c1f8f36af1703607249713b095bae', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11ac602ba1f7f5900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:20:58.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:89', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3830.6356716121613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa8bfbfc0eec3da27', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:93', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3830.6356716121613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa8bfbfc0eec3da27', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:94', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3830.4397528432646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa607b4abddd80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:95', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3830.4397528432646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa607b4abddd80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a5d', 'uniqueId': '0x4112f1390af6714fe310b569018c2ec37aca7358673379a254f0ac11d1b4220c:log:14', 'hash': '0x4112f1390af6714fe310b569018c2ec37aca7358673379a254f0ac11d1b4220c', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x3b0937e7fb99f677e8ce5866f04ed924b17b26e4', 'value': 53283.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b488701901d9462c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:52.000Z'}}, {'blockNum': '0x803a63', 'uniqueId': '0x8205f9f8d9993e021ab58b26038fd84716493a34aa421c189c2fb6599ecf19e2:log:19', 'hash': '0x8205f9f8d9993e021ab58b26038fd84716493a34aa421c189c2fb6599ecf19e2', 'from': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:23:54.000Z'}}, {'blockNum': '0x803a6e', 'uniqueId': '0x4f9e691087c5d4a08395f0fbd75175832948db2a21e5ea3ed9e307e8f6d1827b:log:51', 'hash': '0x4f9e691087c5d4a08395f0fbd75175832948db2a21e5ea3ed9e307e8f6d1827b', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 302626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x40156369c2bbf3480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:25:10.000Z'}}, {'blockNum': '0x803a70', 'uniqueId': '0xab1315cd5a50e4d4be1f5cc8613421c5b99eef130d1c654fb2074d6d9de28e42:log:88', 'hash': '0xab1315cd5a50e4d4be1f5cc8613421c5b99eef130d1c654fb2074d6d9de28e42', 'from': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1649900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015d61421aa72780300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:25:41.000Z'}}, {'blockNum': '0x803a71', 'uniqueId': '0xac4b0f32d920a398f05940f5c56b5389653ae0c3f138298131fee39732859539:log:75', 'hash': '0xac4b0f32d920a398f05940f5c56b5389653ae0c3f138298131fee39732859539', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x01c97e3a7f437ed0c315c03df2dc9ea4fc6c815d', 'value': 772.064657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29da8caaf7b6ce1000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:26:33.000Z'}}, {'blockNum': '0x803a7c', 'uniqueId': '0x87d6c6aea6f3056000518d3cf557bf5c97e0836d520c97d0ecbee4c3f0d55dc3:log:15', 'hash': '0x87d6c6aea6f3056000518d3cf557bf5c97e0836d520c97d0ecbee4c3f0d55dc3', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x03a182fb2ca5527d4ee4cdc6b8b87273a2cf846f', 'value': 39214.4867798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x084dd25396f8fecdf000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:28:36.000Z'}}, {'blockNum': '0x803a7d', 'uniqueId': '0xb34515681edd0ccf26ca1f7e9c6da0e9090a2d44c0dba7eebd7b9d548441fcea:log:104', 'hash': '0xb34515681edd0ccf26ca1f7e9c6da0e9090a2d44c0dba7eebd7b9d548441fcea', 'from': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'to': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'value': 414284.767468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x57ba6c184d6026228000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:29:09.000Z'}}, {'blockNum': '0x803a80', 'uniqueId': '0xd75e392ea5ac4840c085436771cd935f82be76151c0bfbcf1201966e9519c153:log:137', 'hash': '0xd75e392ea5ac4840c085436771cd935f82be76151c0bfbcf1201966e9519c153', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x03a182fb2ca5527d4ee4cdc6b8b87273a2cf846f', 'value': 20771.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x046602dc794100c40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:30:09.000Z'}}, {'blockNum': '0x803a80', 'uniqueId': '0x87544f074344c34171df705b4a4928fb9c6d246253b8c8560bf5e9d2c2b99a8c:log:138', 'hash': '0x87544f074344c34171df705b4a4928fb9c6d246253b8c8560bf5e9d2c2b99a8c', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x621c14a9ff6254ccee6156503cf0c1f56b482b9a', 'value': 495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad5814560aa5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:30:09.000Z'}}, {'blockNum': '0x803a82', 'uniqueId': '0x81f7082b23483c8929f3a45b9fe3d64d5c06627680d74040fb5f24f28e568845:log:13', 'hash': '0x81f7082b23483c8929f3a45b9fe3d64d5c06627680d74040fb5f24f28e568845', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 582.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1f97f9883179a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:30:26.000Z'}}, {'blockNum': '0x803a89', 'uniqueId': '0x99d4797fef1354dfb27a9415d551f49aecf9419858351df08346a647ac0b3f4d:log:3', 'hash': '0x99d4797fef1354dfb27a9415d551f49aecf9419858351df08346a647ac0b3f4d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 342100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x487147358484ccd00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:31:27.000Z'}}, {'blockNum': '0x803a99', 'uniqueId': '0x93a4d0999c1ba01e5e8742a3a296714fb0894be3f5fa9eed5fad5b740ded8abf:log:0', 'hash': '0x93a4d0999c1ba01e5e8742a3a296714fb0894be3f5fa9eed5fad5b740ded8abf', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x32a79ed3588693f111c4ec385da98f3761068b8e', 'value': 753.1484845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x28d408ec4d124ac800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:33:23.000Z'}}, {'blockNum': '0x803a9e', 'uniqueId': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83:log:26', 'hash': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4091.1102490221015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xddc78f57dac23d73d5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:34:09.000Z'}}, {'blockNum': '0x803a9e', 'uniqueId': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83:log:28', 'hash': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4091.1101074064404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xddc78ed70e4b100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:34:09.000Z'}}, {'blockNum': '0x803a9e', 'uniqueId': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83:log:29', 'hash': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4091.1101074064404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xddc78ed70e4b100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:34:09.000Z'}}, {'blockNum': '0x803aa5', 'uniqueId': '0x65eb1efd4108a9625ffebd533c3048567b45a1ffb249c82ac65d8ec729967837:log:23', 'hash': '0x65eb1efd4108a9625ffebd533c3048567b45a1ffb249c82ac65d8ec729967837', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xc97789232985136437ce72a8cfefb8cbe17d8c1f', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:35:38.000Z'}}, {'blockNum': '0x803ab4', 'uniqueId': '0x4c270dd48d1f4d7f99a2d143f72f223cab7c7aed69b798e11e7317e204de2198:log:56', 'hash': '0x4c270dd48d1f4d7f99a2d143f72f223cab7c7aed69b798e11e7317e204de2198', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 342100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x487147358484ccd00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:38:40.000Z'}}, {'blockNum': '0x803ab5', 'uniqueId': '0xfc1a154111fedb4f43e63ed97f37e4cef55cb6d8ba6067157ed0b21637b54d50:log:23', 'hash': '0xfc1a154111fedb4f43e63ed97f37e4cef55cb6d8ba6067157ed0b21637b54d50', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3a879221bbebdc04418e75d7cc31221550ffb67f', 'value': 8800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd0c885f9a0d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:38:50.000Z'}}, {'blockNum': '0x803ab6', 'uniqueId': '0xad10d9e210c7653db8a21edae678f8f378905d02965858949147246dd0977107:log:9', 'hash': '0xad10d9e210c7653db8a21edae678f8f378905d02965858949147246dd0977107', 'from': '0xc97789232985136437ce72a8cfefb8cbe17d8c1f', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:39:05.000Z'}}, {'blockNum': '0x803ac6', 'uniqueId': '0x34c7bf72d9586575e51636f29e3d3e4f879da376c582999324613956a8904b47:log:34', 'hash': '0x34c7bf72d9586575e51636f29e3d3e4f879da376c582999324613956a8904b47', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x284cb1ea7b4bcb6e0938c18d776c3011a614dc89', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:45:34.000Z'}}, {'blockNum': '0x803ac9', 'uniqueId': '0xc6d1a544d6f778f25871b7310c04e486cc34ccabcde490600979a0cd46634486:log:38', 'hash': '0xc6d1a544d6f778f25871b7310c04e486cc34ccabcde490600979a0cd46634486', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xe638b39cc4659b3dd397a8ef02abfb9ac8a3d48d', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:47:19.000Z'}}, {'blockNum': '0x803acc', 'uniqueId': '0x6ab456aeba1ba11366fc78c8efa903337c6856f55deaeaaeeeaeeb24f5a5c50a:log:34', 'hash': '0x6ab456aeba1ba11366fc78c8efa903337c6856f55deaeaaeeeaeeb24f5a5c50a', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x8cbee18999a05165711c9a655c2dc5d3dbb95474', 'value': 968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34868974dd63d6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:47:54.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0x1c383717e09d12bcae160866727578e854daf848f20c7da72dc119a7683fea0c:log:8', 'hash': '0x1c383717e09d12bcae160866727578e854daf848f20c7da72dc119a7683fea0c', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'value': 11424.8056034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x026b57072513f558d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:101', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:105', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:106', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:107', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803ada', 'uniqueId': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7:log:115', 'hash': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4054.2601802429476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdbc829998a380f8910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:25.000Z'}}, {'blockNum': '0x803ada', 'uniqueId': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7:log:117', 'hash': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4054.2600406838696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdbc8291a9c96c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:25.000Z'}}, {'blockNum': '0x803ada', 'uniqueId': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7:log:118', 'hash': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4054.2600406838696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdbc8291a9c96c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:25.000Z'}}, {'blockNum': '0x803ae0', 'uniqueId': '0x066e9ab2252289eec18f66f7f8d323e786728c9eb492cd4b5d901b00bb57316b:log:14', 'hash': '0x066e9ab2252289eec18f66f7f8d323e786728c9eb492cd4b5d901b00bb57316b', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x3a541ca30225350eed366dd071639d5ffbbf06ba', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:57.000Z'}}, {'blockNum': '0x803ae0', 'uniqueId': '0xa41a33802328f160159ccefb78cc1eabed323d8fe432d2e56d2b2612a0e1db72:log:17', 'hash': '0xa41a33802328f160159ccefb78cc1eabed323d8fe432d2e56d2b2612a0e1db72', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x12cff71edfc4e16eec6373f1fb37c5cf3ca71c19', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:57.000Z'}}, {'blockNum': '0x803ae2', 'uniqueId': '0xbfd9ea285a408a64e3cbca4e7c69d72441571f6b3d5237644518118970c4ddb6:log:30', 'hash': '0xbfd9ea285a408a64e3cbca4e7c69d72441571f6b3d5237644518118970c4ddb6', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x2895730bd3725084c91a07f25786baac644851a2', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:15.000Z'}}, {'blockNum': '0x803ae5', 'uniqueId': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3:log:160', 'hash': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2383.8659713849893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x813ac93eb61fcfa97e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:42.000Z'}}, {'blockNum': '0x803ae5', 'uniqueId': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3:log:164', 'hash': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xea161ab775be8374c9aed9e394d5b8711dcfc55f', 'value': 2383.8659713849893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x813ac93eb61fcfa97e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:42.000Z'}}, {'blockNum': '0x803ae5', 'uniqueId': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3:log:166', 'hash': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3', 'from': '0xea161ab775be8374c9aed9e394d5b8711dcfc55f', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 2383.8659713849893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x813ac93eb61fcfa97e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:42.000Z'}}, {'blockNum': '0x803ae7', 'uniqueId': '0xaf3bebd0a8e3edb6abeea8cbf90be270fe7bbd482f8a781fddb9aaaeb80e5961:log:101', 'hash': '0xaf3bebd0a8e3edb6abeea8cbf90be270fe7bbd482f8a781fddb9aaaeb80e5961', 'from': '0x2895730bd3725084c91a07f25786baac644851a2', 'to': '0x5bcf2767f86f14edd82053bfbfd5069f68c2c5f8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:53:30.000Z'}}, {'blockNum': '0x803aec', 'uniqueId': '0xc960694878b24925ded24c578cf90baacfb95cb2263af12d61dde53e2468e4ab:log:11', 'hash': '0xc960694878b24925ded24c578cf90baacfb95cb2263af12d61dde53e2468e4ab', 'from': '0x12cff71edfc4e16eec6373f1fb37c5cf3ca71c19', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:54:28.000Z'}}, {'blockNum': '0x803af3', 'uniqueId': '0x166706924760dbce32556e91afd29d4cac2c9b38c17efc6dc95d02c8f7d65c63:log:5', 'hash': '0x166706924760dbce32556e91afd29d4cac2c9b38c17efc6dc95d02c8f7d65c63', 'from': '0x32a79ed3588693f111c4ec385da98f3761068b8e', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 753.1484845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x28d408ec4d124ac800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:56:27.000Z'}}, {'blockNum': '0x803afa', 'uniqueId': '0x7a659e8e899b44020f800cb8c232720babd06bc3108c3303b79290211381c723:log:85', 'hash': '0x7a659e8e899b44020f800cb8c232720babd06bc3108c3303b79290211381c723', 'from': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'to': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'value': 3000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027b46536c66c8e3000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:59:14.000Z'}}, {'blockNum': '0x803afd', 'uniqueId': '0x1a18803d48fde9c6a55db1e71745557a8f46438981c09fef33249959f0738752:log:0', 'hash': '0x1a18803d48fde9c6a55db1e71745557a8f46438981c09fef33249959f0738752', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 91025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x134679a29ce17ba40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:59:57.000Z'}}, {'blockNum': '0x803b00', 'uniqueId': '0xebf4b28fb66aede1abcace5afe026fbb60c0a56c52b51c291f66aa46099f0011:log:46', 'hash': '0xebf4b28fb66aede1abcace5afe026fbb60c0a56c52b51c291f66aa46099f0011', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 54359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b82ceaaddacb2fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:00:55.000Z'}}, {'blockNum': '0x803b03', 'uniqueId': '0xd1f8f31f902d6bed50abc56b038c9775bfbe4f23d6b9881620ab16a7883d4b3c:log:88', 'hash': '0xd1f8f31f902d6bed50abc56b038c9775bfbe4f23d6b9881620ab16a7883d4b3c', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 74431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc2e99fd3a92b9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:01:25.000Z'}}, {'blockNum': '0x803b08', 'uniqueId': '0xf0e7dea0fd62e58fed595793481486c51766d05457a5c92d7a7c954a7c9ce6e9:log:42', 'hash': '0xf0e7dea0fd62e58fed595793481486c51766d05457a5c92d7a7c954a7c9ce6e9', 'from': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'to': '0xbad6143b8863bf0f84e1ad8f582d2aafb21913ee', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:02:39.000Z'}}, {'blockNum': '0x803b0c', 'uniqueId': '0xa960ad5b548b0c0a3c1ab0cd3f347844a0f8407c69ef58c95fdf96da71d8f654:log:27', 'hash': '0xa960ad5b548b0c0a3c1ab0cd3f347844a0f8407c69ef58c95fdf96da71d8f654', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xf27e8b11a505a09f4c790472040813475fa44eee', 'value': 4230.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe55be17a0c500ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:03:55.000Z'}}, {'blockNum': '0x803b16', 'uniqueId': '0xb7e3072f157acee15e092681e9464e212e4b213a9f5fe4a92f7d5ddbeecae14e:log:16', 'hash': '0xb7e3072f157acee15e092681e9464e212e4b213a9f5fe4a92f7d5ddbeecae14e', 'from': '0xf27e8b11a505a09f4c790472040813475fa44eee', 'to': '0x529dab7bad9ef1000c3c0d708878c83fc870f7ae', 'value': 4230.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe55be17a0c500ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:06:38.000Z'}}, {'blockNum': '0x803b18', 'uniqueId': '0x0e9388da03dc8457d395d73e31bb5a9f93708910ca8a381dfe3294bc66ca7368:log:19', 'hash': '0x0e9388da03dc8457d395d73e31bb5a9f93708910ca8a381dfe3294bc66ca7368', 'from': '0x3a541ca30225350eed366dd071639d5ffbbf06ba', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:06:44.000Z'}}, {'blockNum': '0x803b26', 'uniqueId': '0xc80b6f49e1c40c21e77a17e25d462f32a531da003daeaa8f5e566d607f5373ad:log:181', 'hash': '0xc80b6f49e1c40c21e77a17e25d462f32a531da003daeaa8f5e566d607f5373ad', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 54359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b82ceaaddacb2fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:10:15.000Z'}}, {'blockNum': '0x803b3f', 'uniqueId': '0xbf11b38a89f173beb42f37825bbc263169575138ae2b765d50e9eaa7232afe65:log:13', 'hash': '0xbf11b38a89f173beb42f37825bbc263169575138ae2b765d50e9eaa7232afe65', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x8d44ad4690ddb9f9e794bfad56b93a3dee9e5793', 'value': 576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1f399b1438a1000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:14:39.000Z'}}, {'blockNum': '0x803b6e', 'uniqueId': '0x3f34e0f0f84ca0313a87acd4ffb8a17ea7aaa0ec4f905679c8ded5ffc8d7da72:log:9', 'hash': '0x3f34e0f0f84ca0313a87acd4ffb8a17ea7aaa0ec4f905679c8ded5ffc8d7da72', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1c72a0b0171dd785a67dd70bf0e20a35a445daeb', 'value': 28299.332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05fe1c1fe5b68cba0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:26:10.000Z'}}, {'blockNum': '0x803b7d', 'uniqueId': '0xa0539d60c720c03fe27b708763eec049a379a3745efdf6a66fc8d9b00740a699:log:77', 'hash': '0xa0539d60c720c03fe27b708763eec049a379a3745efdf6a66fc8d9b00740a699', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 82472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1176d0ea849defa00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:29:24.000Z'}}, {'blockNum': '0x803b88', 'uniqueId': '0xa7d9eb47313ce6105a85e2425ec4e9fbc0ed080765c8c090b85d8b0f3240c740:log:21', 'hash': '0xa7d9eb47313ce6105a85e2425ec4e9fbc0ed080765c8c090b85d8b0f3240c740', 'from': '0x1c72a0b0171dd785a67dd70bf0e20a35a445daeb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28299.332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05fe1c1fe5b68cba0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:31:04.000Z'}}, {'blockNum': '0x803b9b', 'uniqueId': '0x58e33986f917efca69d4137a61de2a0ac3b12025c3eac1ff75651aac00ebace6:log:104', 'hash': '0x58e33986f917efca69d4137a61de2a0ac3b12025c3eac1ff75651aac00ebace6', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x24462c702ff5504cee8432a18e029873b6547e21', 'value': 210000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2c782c4729dd10f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:36:22.000Z'}}, {'blockNum': '0x803baf', 'uniqueId': '0x33edefc2c33023605402ec104512cb4920d429456131a683edab2eb64285e6a9:log:41', 'hash': '0x33edefc2c33023605402ec104512cb4920d429456131a683edab2eb64285e6a9', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd68a741029c2ffde775cdbc4e8878d874bb7ca96', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:41:18.000Z'}}, {'blockNum': '0x803baf', 'uniqueId': '0xbe6685747f88effe0082d9c3b0b796e36ac1944b942e23267fb61825d4ff48c1:log:47', 'hash': '0xbe6685747f88effe0082d9c3b0b796e36ac1944b942e23267fb61825d4ff48c1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3cac884cebcce149cc3f6bba39951294f23b484e', 'value': 23136.4688212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04e63b01429daeac2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:41:18.000Z'}}, {'blockNum': '0x803bb6', 'uniqueId': '0x13ef2df5beeb9653fcf42ff85b1eb2c545d30144131696efb194d7671775af22:log:118', 'hash': '0x13ef2df5beeb9653fcf42ff85b1eb2c545d30144131696efb194d7671775af22', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 82472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1176d0ea849defa00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:42:46.000Z'}}, {'blockNum': '0x803bcd', 'uniqueId': '0xdbbf470aa55bf72b8af23b4d753356ae28577a5d1cf409dfa725ad1f8d3f5385:log:20', 'hash': '0xdbbf470aa55bf72b8af23b4d753356ae28577a5d1cf409dfa725ad1f8d3f5385', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3c5bfac7c09e12b83ad2f93e02d7f43e02794ef1', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:48:15.000Z'}}, {'blockNum': '0x803bd4', 'uniqueId': '0xa1ed461e64c8a4edb9f224994098375a3797be7aef9efcc164d418d06224b0d4:log:98', 'hash': '0xa1ed461e64c8a4edb9f224994098375a3797be7aef9efcc164d418d06224b0d4', 'from': '0x3c5bfac7c09e12b83ad2f93e02d7f43e02794ef1', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 20001.4398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c47bcc5ee201b8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:49:37.000Z'}}, {'blockNum': '0x803be0', 'uniqueId': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0:log:153', 'hash': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4993.928564629898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010eb8ae5290396a0659', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:53:05.000Z'}}, {'blockNum': '0x803be0', 'uniqueId': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0:log:155', 'hash': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4993.928564629898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010eb8ae5290396a0659', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:53:05.000Z'}}, {'blockNum': '0x803be0', 'uniqueId': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0:log:160', 'hash': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 4993.923570701333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010eb89c949c9f4924cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:53:05.000Z'}}, {'blockNum': '0x803bef', 'uniqueId': '0x1eeeaee8cc7880d0fce363ccb902a2c113cb6e482256aa8c5442a2ab28fab54b:log:72', 'hash': '0x1eeeaee8cc7880d0fce363ccb902a2c113cb6e482256aa8c5442a2ab28fab54b', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x4934c415f52a55df925413c823e162034bce9f6c', 'value': 10300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022e5d36e442db700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:56:13.000Z'}}, {'blockNum': '0x803bf6', 'uniqueId': '0xfaf54634984af962a0b991783d1ccad5e7bdc31a894e2f2b1af484d9cb9d7d64:log:4', 'hash': '0xfaf54634984af962a0b991783d1ccad5e7bdc31a894e2f2b1af484d9cb9d7d64', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:56:55.000Z'}}, {'blockNum': '0x803bf9', 'uniqueId': '0x7b8fe9ced92d865ab1c7033f06abd7e4b005902454a86fcf7bc41eeb206d5e78:log:37', 'hash': '0x7b8fe9ced92d865ab1c7033f06abd7e4b005902454a86fcf7bc41eeb206d5e78', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb677cbce33c00576f03aaf6176ca0147e12426e3', 'value': 10085.5251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0222bcc6fb0c4202c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:57:07.000Z'}}, {'blockNum': '0x803c0b', 'uniqueId': '0x344e1dfc310690baabdaef3e0a507564ec6d3ac64158a6067795f7c9e19211bd:log:14', 'hash': '0x344e1dfc310690baabdaef3e0a507564ec6d3ac64158a6067795f7c9e19211bd', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 586.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc9ef4d1ea1100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:59:58.000Z'}}, {'blockNum': '0x803c0c', 'uniqueId': '0x4c80747f6a96ac9ea79f06a125cb85cb0bfb903f1a3386fb53881f3639159418:log:104', 'hash': '0x4c80747f6a96ac9ea79f06a125cb85cb0bfb903f1a3386fb53881f3639159418', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x590f1d569b3709d9a0b0014875f392b93a1b7a20', 'value': 59998.6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb488301a1c37d0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:00:17.000Z'}}, {'blockNum': '0x803c0e', 'uniqueId': '0x04d530f559e325b443995b71c16f5302105cf44d8266c7424897fe074a36226c:log:50', 'hash': '0x04d530f559e325b443995b71c16f5302105cf44d8266c7424897fe074a36226c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xfac37aea925b47348e2775fb9127871119eacace', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:00:27.000Z'}}, {'blockNum': '0x803c0f', 'uniqueId': '0x322487b9c397cef294d5b1d94152cffb65791e2be0a1185852292e92174906a8:log:3', 'hash': '0x322487b9c397cef294d5b1d94152cffb65791e2be0a1185852292e92174906a8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:00:35.000Z'}}, {'blockNum': '0x803c17', 'uniqueId': '0xdace5821a81e4f8751aff945243ba73f32da905e4ac4f978243049cae881a184:log:9', 'hash': '0xdace5821a81e4f8751aff945243ba73f32da905e4ac4f978243049cae881a184', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc2e99fd3a92b9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:02:29.000Z'}}, {'blockNum': '0x803c1d', 'uniqueId': '0xfd8a81c55ebd9380338298de4cac39addcc6d3196be9b74c5325bb061c85029c:log:86', 'hash': '0xfd8a81c55ebd9380338298de4cac39addcc6d3196be9b74c5325bb061c85029c', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:03:39.000Z'}}, {'blockNum': '0x803c1f', 'uniqueId': '0xc11146ebe5f47272ec6d17021662ea6d52e48fe7c7069a47b0bb57ba6032a67f:log:98', 'hash': '0xc11146ebe5f47272ec6d17021662ea6d52e48fe7c7069a47b0bb57ba6032a67f', 'from': '0x7ae7788322b9bf3b2ef657b6a6d55b3869177020', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 16984.214399646367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0398b752d240fc2e3c05', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:04:07.000Z'}}, {'blockNum': '0x803c2a', 'uniqueId': '0x33658004501c3697f32832405d3fe4efdca204fa2ca010accd79f13c307a3574:log:3', 'hash': '0x33658004501c3697f32832405d3fe4efdca204fa2ca010accd79f13c307a3574', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1112792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xeba493400f4ce4600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:05:29.000Z'}}, {'blockNum': '0x803c36', 'uniqueId': '0x85a9c10e618a3b92ba9251e727a43a8d999593de8d11aa94495dcad62672265c:log:28', 'hash': '0x85a9c10e618a3b92ba9251e727a43a8d999593de8d11aa94495dcad62672265c', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:07:36.000Z'}}, {'blockNum': '0x803c44', 'uniqueId': '0x4f70444892abd15ce7acbc28e26497db456b3d752e73fa31d0fc8035786ecc34:log:0', 'hash': '0x4f70444892abd15ce7acbc28e26497db456b3d752e73fa31d0fc8035786ecc34', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x5b662727aef339126d8687f9d863c448c2567774', 'value': 200230.79196494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a66887187e90c1b7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:10:35.000Z'}}, {'blockNum': '0x803c45', 'uniqueId': '0xc8fa925019acb25543a6b6a9dcf8e689cfddb4738cbebbd21bc1ef4451bc85f8:log:118', 'hash': '0xc8fa925019acb25543a6b6a9dcf8e689cfddb4738cbebbd21bc1ef4451bc85f8', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x3dee4a4e076e8d82859d241db0baf46f112cfa23', 'value': 16956.403834843863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397355fd8e9a3c75da5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:11:19.000Z'}}, {'blockNum': '0x803c49', 'uniqueId': '0x4b1fe8f4f64bd86f987a79d6731cee7bad1c6ce06e0cde25ac12f8a816dd3694:log:63', 'hash': '0x4b1fe8f4f64bd86f987a79d6731cee7bad1c6ce06e0cde25ac12f8a816dd3694', 'from': '0x3dee4a4e076e8d82859d241db0baf46f112cfa23', 'to': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'value': 16956.403834843863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397355fd8e9a3c75da5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:12:49.000Z'}}, {'blockNum': '0x803c58', 'uniqueId': '0xcae01f8defc83b0f028869227e4d842d927b2910cdf91a4f61d3f6da8b8c06de:log:26', 'hash': '0xcae01f8defc83b0f028869227e4d842d927b2910cdf91a4f61d3f6da8b8c06de', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x770105b2b710aacabaca2319299dedbfcdad954b', 'value': 200000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a126660225eb6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:15:23.000Z'}}, {'blockNum': '0x803c6e', 'uniqueId': '0xf45490af09782da1e3d022cf699a7d7be71751cd032ab21f01782624535bd9ab:log:30', 'hash': '0xf45490af09782da1e3d022cf699a7d7be71751cd032ab21f01782624535bd9ab', 'from': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16956.403834843863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397355fd8e9a3c75da5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:21:05.000Z'}}, {'blockNum': '0x803c70', 'uniqueId': '0x00913f6360d285448756b03324bdfbbef8167db93b37ceeca46c052f8f90c741:log:39', 'hash': '0x00913f6360d285448756b03324bdfbbef8167db93b37ceeca46c052f8f90c741', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 589.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff7bb41a2afda0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:21:08.000Z'}}, {'blockNum': '0x803c82', 'uniqueId': '0x0e5d13e34312d9056e7f9f31b064a5a3454e2ac88542262035163123eb2d5536:log:102', 'hash': '0x0e5d13e34312d9056e7f9f31b064a5a3454e2ac88542262035163123eb2d5536', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'value': 17857.39637385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c80d285d79c5e50400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:25:18.000Z'}}, {'blockNum': '0x803c85', 'uniqueId': '0x62d8cc6d2ce1047c4267b5cd953233b8cb6303643fa47fa41b8d031ce3e4658d:log:43', 'hash': '0x62d8cc6d2ce1047c4267b5cd953233b8cb6303643fa47fa41b8d031ce3e4658d', 'from': '0x5b662727aef339126d8687f9d863c448c2567774', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 200230.79196494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a66887187e90c1b7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:26:20.000Z'}}, {'blockNum': '0x803c85', 'uniqueId': '0x646b2c9f06afce5029cf5731a16e9802f60f1c61bdfd02c4c7d2919a371d824f:log:101', 'hash': '0x646b2c9f06afce5029cf5731a16e9802f60f1c61bdfd02c4c7d2919a371d824f', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xe97deda2e1526cd18a31c665aa4fce14215b36b3', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:26:20.000Z'}}, {'blockNum': '0x803c88', 'uniqueId': '0xb00f5e2e7abee4cab2a3d5567366118a1974c94987d51d9b81467a177aa8c8a8:log:1', 'hash': '0xb00f5e2e7abee4cab2a3d5567366118a1974c94987d51d9b81467a177aa8c8a8', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xce89f3eec9fd9592a2f7850c5ad01785555a842a', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:26:36.000Z'}}, {'blockNum': '0x803c8c', 'uniqueId': '0x19e1e623b82814a3948f3ef7163105aafd1d5ee10e8af94801a8949987c1c427:log:35', 'hash': '0x19e1e623b82814a3948f3ef7163105aafd1d5ee10e8af94801a8949987c1c427', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb30eec8730cf4ced5884956eff11932fb50105f6', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:27:08.000Z'}}, {'blockNum': '0x803c91', 'uniqueId': '0x140114835eb46115ef2b77fb01b096e4cc9d245fe16e1a088c027460d70953e7:log:0', 'hash': '0x140114835eb46115ef2b77fb01b096e4cc9d245fe16e1a088c027460d70953e7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2c0f30e6667fd08503c695dfe66251c9b1335732', 'value': 65037.000078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc5a9afce25825ee000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:28:06.000Z'}}, {'blockNum': '0x803ca3', 'uniqueId': '0xaf54f1ac8f07a8e49e667125ae252254833375f1fcff80b0286a252b967a8e6c:log:78', 'hash': '0xaf54f1ac8f07a8e49e667125ae252254833375f1fcff80b0286a252b967a8e6c', 'from': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17857.39637385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c80d285d79c5e50400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:30:48.000Z'}}, {'blockNum': '0x803cbc', 'uniqueId': '0x5af094c15e38ee59163adec9921799d9066ee6390ac4a1509b549cf2bc826522:log:117', 'hash': '0x5af094c15e38ee59163adec9921799d9066ee6390ac4a1509b549cf2bc826522', 'from': '0x2c0f30e6667fd08503c695dfe66251c9b1335732', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 65037.000078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc5a9afce25825ee000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:36:22.000Z'}}, {'blockNum': '0x803cbe', 'uniqueId': '0x57b424623f0dfbf7e713532a3934693ee95fa776d20b900386923bd7621467d5:log:29', 'hash': '0x57b424623f0dfbf7e713532a3934693ee95fa776d20b900386923bd7621467d5', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 588.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe9da8aef08760000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:36:35.000Z'}}, {'blockNum': '0x803cc1', 'uniqueId': '0xe65df53c06b7fae06a123a661e40cf6f0150e8213e4676aa9f3cfdfdb68d48db:log:15', 'hash': '0xe65df53c06b7fae06a123a661e40cf6f0150e8213e4676aa9f3cfdfdb68d48db', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xa40bc4cc83e6e71ad33cc3595dd9ed1fd5e8ff44', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:37:51.000Z'}}, {'blockNum': '0x803cc5', 'uniqueId': '0x9fd193d7f5c2efaffe950d1d8a79dce495fc44d6687e9b27ece62d2c388093ca:log:77', 'hash': '0x9fd193d7f5c2efaffe950d1d8a79dce495fc44d6687e9b27ece62d2c388093ca', 'from': '0xb30eec8730cf4ced5884956eff11932fb50105f6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:38:43.000Z'}}, {'blockNum': '0x803cc9', 'uniqueId': '0x76e76f79a1c21064d041fd55f56aef0af746ecbee5b22a2cb4b878e1102ef06e:log:67', 'hash': '0x76e76f79a1c21064d041fd55f56aef0af746ecbee5b22a2cb4b878e1102ef06e', 'from': '0x9b350e05c4e60cfd5db3c0c87bbfd9205eb4b322', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 28709.748759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06145bcd218adad47000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:39:53.000Z'}}, {'blockNum': '0x803cca', 'uniqueId': '0x446ae84fa75aae6b79c7248ed80e040cc7740c5e50492882b7b9c144dbdd46e4:log:62', 'hash': '0x446ae84fa75aae6b79c7248ed80e040cc7740c5e50492882b7b9c144dbdd46e4', 'from': '0xce89f3eec9fd9592a2f7850c5ad01785555a842a', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:39:57.000Z'}}, {'blockNum': '0x803cce', 'uniqueId': '0x487bfe153b0381d2b2eddfd04f980187609dad89097d06e005f27bac0044d069:log:32', 'hash': '0x487bfe153b0381d2b2eddfd04f980187609dad89097d06e005f27bac0044d069', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x47564a0e832fc93ab78c66c3ce80b8dd09bb5ae7', 'value': 59787.7352164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca91980ba518a56a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:40:58.000Z'}}, {'blockNum': '0x803ce3', 'uniqueId': '0xafb874b316bfbbda4f4d3f04f793ed776e27a18493471b809bb7791e00e968b5:log:78', 'hash': '0xafb874b316bfbbda4f4d3f04f793ed776e27a18493471b809bb7791e00e968b5', 'from': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'to': '0xe28541c7b8fb617114047f13133a695f19b41d29', 'value': 4196.181812344968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe379b88600f0aea68f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:46:29.000Z'}}, {'blockNum': '0x803cee', 'uniqueId': '0x539e092a93670a4b0f0dd5bf7f0c040062bb0aa60acc5fd05ac89762fc8fb611:log:60', 'hash': '0x539e092a93670a4b0f0dd5bf7f0c040062bb0aa60acc5fd05ac89762fc8fb611', 'from': '0xe97deda2e1526cd18a31c665aa4fce14215b36b3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:48:38.000Z'}}, {'blockNum': '0x803cf3', 'uniqueId': '0xbe44dc30419567235aef7b83f588145f904f3d3b9d7de4333011f157b5aadda5:log:42', 'hash': '0xbe44dc30419567235aef7b83f588145f904f3d3b9d7de4333011f157b5aadda5', 'from': '0x4934c415f52a55df925413c823e162034bce9f6c', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022e5d36e442db700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:49:30.000Z'}}, {'blockNum': '0x803cf4', 'uniqueId': '0xa0b9935d678ef9459ea5ed7bc6ce73df021b8f47911f5cc5d9efd2bd30da94cb:log:15', 'hash': '0xa0b9935d678ef9459ea5ed7bc6ce73df021b8f47911f5cc5d9efd2bd30da94cb', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3568d82a933590b2973b7089cef2892c0a27ca3d', 'value': 10048.7251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220be131e05cba2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:49:39.000Z'}}, {'blockNum': '0x803cf4', 'uniqueId': '0xda0dc33ea629da074c9928e2779cb443ec7d7b27ccea739161613a461cff4ca9:log:83', 'hash': '0xda0dc33ea629da074c9928e2779cb443ec7d7b27ccea739161613a461cff4ca9', 'from': '0xbd1421e158c21f804fa5d74e72133f7c1431b9d5', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10011.959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021ebfd7b0de27258000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:49:39.000Z'}}, {'blockNum': '0x803cf8', 'uniqueId': '0x2e211ce2e0cef35c1c1f9c0afab42ffc8810da660391bf5f46a180ef0bd46d2a:log:13', 'hash': '0x2e211ce2e0cef35c1c1f9c0afab42ffc8810da660391bf5f46a180ef0bd46d2a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xe2c49ea63f662128215cfe35540a1bd23337deb3', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:31.000Z'}}, {'blockNum': '0x803cfa', 'uniqueId': '0x99d981f6b2ad4211d93883d02e80b2e71d8ebd6611e829b9513c19fc48b1e37b:log:111', 'hash': '0x99d981f6b2ad4211d93883d02e80b2e71d8ebd6611e829b9513c19fc48b1e37b', 'from': '0x6b838d866e45449294c32dedd9fcf3326fa099d9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10418.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0234cfa1b89e753ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:43.000Z'}}, {'blockNum': '0x803cfb', 'uniqueId': '0x6ad96d6558ff49f3a25cb0e78aa7b4f7f53d1177ddc473bb6b8669455ba7f829:log:30', 'hash': '0x6ad96d6558ff49f3a25cb0e78aa7b4f7f53d1177ddc473bb6b8669455ba7f829', 'from': '0x2b7c6615195babbdbac5665eae1954f36865166f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:48.000Z'}}, {'blockNum': '0x803cfb', 'uniqueId': '0x9c8c6632c0e77103ef497bfc042efc9bc7909e441cd39b85a4000b0d5a7b9c9b:log:116', 'hash': '0x9c8c6632c0e77103ef497bfc042efc9bc7909e441cd39b85a4000b0d5a7b9c9b', 'from': '0x924ba914a8a8e5b45b5d39984529eacd9fd61beb', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 25971.69534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057fedad4bca680ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:48.000Z'}}, {'blockNum': '0x803cfb', 'uniqueId': '0x2492f2528a73c455a2e1c8b2c567aaaa45e27207cdd57eddbbe2ade29ecb1a0e:log:140', 'hash': '0x2492f2528a73c455a2e1c8b2c567aaaa45e27207cdd57eddbbe2ade29ecb1a0e', 'from': '0x3b0937e7fb99f677e8ce5866f04ed924b17b26e4', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 53283.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b488701901d9462c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:48.000Z'}}, {'blockNum': '0x803cfc', 'uniqueId': '0xf136492e42dd9575f2907d8de92d51643cd6ddd6292cc12768a7cc3cacb8ded9:log:73', 'hash': '0xf136492e42dd9575f2907d8de92d51643cd6ddd6292cc12768a7cc3cacb8ded9', 'from': '0x621c14a9ff6254ccee6156503cf0c1f56b482b9a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad5814560aa5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:51:00.000Z'}}, {'blockNum': '0x803d03', 'uniqueId': '0x8cc8fc57e2c15bf7f0b922c2bcd211c71c45b00d4bd3bcffe8d4a39679c64ab0:log:66', 'hash': '0x8cc8fc57e2c15bf7f0b922c2bcd211c71c45b00d4bd3bcffe8d4a39679c64ab0', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1f6e38dac16a5ec92f2624fbc7e424bd2313788b', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:52:16.000Z'}}, {'blockNum': '0x803d0b', 'uniqueId': '0x087b923a5d699193bab690f218d62116e7841f05fc1154067c992e1e205cd763:log:132', 'hash': '0x087b923a5d699193bab690f218d62116e7841f05fc1154067c992e1e205cd763', 'from': '0xfac37aea925b47348e2775fb9127871119eacace', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:55:01.000Z'}}, {'blockNum': '0x803d10', 'uniqueId': '0x4bb01f9f4c567933b73160b6b8e6e89cfef729c748598fee8bbb1bb4ddb60547:log:45', 'hash': '0x4bb01f9f4c567933b73160b6b8e6e89cfef729c748598fee8bbb1bb4ddb60547', 'from': '0x478a746989ce31623b0e8c919186993b6d2ccd1c', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:55:53.000Z'}}, {'blockNum': '0x803d10', 'uniqueId': '0x62f402879e300cd32353aa73aba399baf25d19bc21c6636d47a57e9db77e544b:log:54', 'hash': '0x62f402879e300cd32353aa73aba399baf25d19bc21c6636d47a57e9db77e544b', 'from': '0x478a746989ce31623b0e8c919186993b6d2ccd1c', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:55:53.000Z'}}, {'blockNum': '0x803d29', 'uniqueId': '0x6e06e5766a3a1f8d233f8f5ea21bbd39688f3d1777583941cc9c870f63c01140:log:168', 'hash': '0x6e06e5766a3a1f8d233f8f5ea21bbd39688f3d1777583941cc9c870f63c01140', 'from': '0x092c017c5949e43c8191d7545271d94212a0984e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0252a06a3e981616c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:01:09.000Z'}}, {'blockNum': '0x803d62', 'uniqueId': '0xeccb275e3eb9a2cd44110e647b38425a1b3a2bbb0398db5ffde87860d72357f4:log:30', 'hash': '0xeccb275e3eb9a2cd44110e647b38425a1b3a2bbb0398db5ffde87860d72357f4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd0e980ffac3e601dfc86521cea048d6b4f0ebda0', 'value': 20603.2207062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x045ce72007bf47c5f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:12:19.000Z'}}, {'blockNum': '0x803d72', 'uniqueId': '0x4561a7b3fea608329f2bebcefef626b0deef80480187d10fba28f1b37ad272eb:log:56', 'hash': '0x4561a7b3fea608329f2bebcefef626b0deef80480187d10fba28f1b37ad272eb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 17971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03ce35b9858fb0ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:17:32.000Z'}}, {'blockNum': '0x803d7d', 'uniqueId': '0x551cb04743f27c5caa30ff686321f24f1ce64f611e668dc564d584d4dd8c0500:log:6', 'hash': '0x551cb04743f27c5caa30ff686321f24f1ce64f611e668dc564d584d4dd8c0500', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x863edcba3503038bc790889ea0c2c902d6faeb6d', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:21:41.000Z'}}, {'blockNum': '0x803d82', 'uniqueId': '0x74ea7425c43d4ffed60b44ae42b6e4388590af440f09600b79317a5300145a17:log:34', 'hash': '0x74ea7425c43d4ffed60b44ae42b6e4388590af440f09600b79317a5300145a17', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xdf9d80fc59e61fbe176b449da06d65ba98e6c9f6', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:22:29.000Z'}}, {'blockNum': '0x803d88', 'uniqueId': '0xf25352500400374bb96c220a5cbe31443e4e58ca1b6fa1c2d01ee0c3fec47ac9:log:0', 'hash': '0xf25352500400374bb96c220a5cbe31443e4e58ca1b6fa1c2d01ee0c3fec47ac9', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x5b662727aef339126d8687f9d863c448c2567774', 'value': 346547.2376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49625d075f3e7d8e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:23:59.000Z'}}, {'blockNum': '0x803d94', 'uniqueId': '0x96a8513e3655692414e4bb40d05717189bcfa72a6b89142ede58df73260344e2:log:31', 'hash': '0x96a8513e3655692414e4bb40d05717189bcfa72a6b89142ede58df73260344e2', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xae8bdbe465e04c5e7a5f150efaccc9b669d4099e', 'value': 10234.5384286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022ad0c0abe733913000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:25:38.000Z'}}, {'blockNum': '0x803db5', 'uniqueId': '0x3cc8e66d623983fadd46b265fe73900536e2166512889461a2a33640fb1bb500:log:52', 'hash': '0x3cc8e66d623983fadd46b265fe73900536e2166512889461a2a33640fb1bb500', 'from': '0x3568d82a933590b2973b7089cef2892c0a27ca3d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10048.7251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220be131e05cba2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:33:54.000Z'}}, {'blockNum': '0x803db6', 'uniqueId': '0x2ce65038cdb773978d65fb50aaa78845a88f863be705051c28d796c33c3b04e8:log:11', 'hash': '0x2ce65038cdb773978d65fb50aaa78845a88f863be705051c28d796c33c3b04e8', 'from': '0x590f1d569b3709d9a0b0014875f392b93a1b7a20', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59998.6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb488301a1c37d0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:00.000Z'}}, {'blockNum': '0x803db6', 'uniqueId': '0x51f04ef0c772b49cd75eb29a3e4690e9b0753c72572f7d85277ac2b43d3742ea:log:14', 'hash': '0x51f04ef0c772b49cd75eb29a3e4690e9b0753c72572f7d85277ac2b43d3742ea', 'from': '0xb677cbce33c00576f03aaf6176ca0147e12426e3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10085.5251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0222bcc6fb0c4202c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:00.000Z'}}, {'blockNum': '0x803db8', 'uniqueId': '0xc446f7b0bf9f315ae07395a142b82c1c0c94a0955e6d5e927922fa331f43e0cf:log:39', 'hash': '0xc446f7b0bf9f315ae07395a142b82c1c0c94a0955e6d5e927922fa331f43e0cf', 'from': '0xe2c49ea63f662128215cfe35540a1bd23337deb3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:05.000Z'}}, {'blockNum': '0x803dbb', 'uniqueId': '0x75d4b659b72b91f6bd90c7678fd27a09e7b612dfb0fb2f3fa6c3a702653b5d41:log:76', 'hash': '0x75d4b659b72b91f6bd90c7678fd27a09e7b612dfb0fb2f3fa6c3a702653b5d41', 'from': '0x1f6e38dac16a5ec92f2624fbc7e424bd2313788b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:59.000Z'}}, {'blockNum': '0x803dbb', 'uniqueId': '0x906a8d3663b3284686ea1b66c77843924bcd63fd360c3b6fb5df226793e8b6bd:log:80', 'hash': '0x906a8d3663b3284686ea1b66c77843924bcd63fd360c3b6fb5df226793e8b6bd', 'from': '0xd0e980ffac3e601dfc86521cea048d6b4f0ebda0', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 20603.2207062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x045ce72007bf47c5f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:59.000Z'}}, {'blockNum': '0x803dbd', 'uniqueId': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c:log:89', 'hash': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3512.6498966935446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe6bcf5639db4ffe76', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:35:09.000Z'}}, {'blockNum': '0x803dbd', 'uniqueId': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c:log:91', 'hash': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 3512.6498966935446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe6bcf5639db4ffe76', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:35:09.000Z'}}, {'blockNum': '0x803dbd', 'uniqueId': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c:log:95', 'hash': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 3512.6498966935446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe6bcf5639db4ffe76', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:35:09.000Z'}}, {'blockNum': '0x803dd0', 'uniqueId': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7:log:30', 'hash': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7112.903225806452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0181975c961833a39ce7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:38:34.000Z'}}, {'blockNum': '0x803dd0', 'uniqueId': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7:log:32', 'hash': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 7112.903225806452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0181975c961833a39ce7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:38:34.000Z'}}, {'blockNum': '0x803dd2', 'uniqueId': '0x4f2c2caa952285ea16aaa5518594c768fe79be4b20c07a066d363c46d7ead242:log:12', 'hash': '0x4f2c2caa952285ea16aaa5518594c768fe79be4b20c07a066d363c46d7ead242', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'value': 1203.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4143d12bc80ca2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:39:19.000Z'}}, {'blockNum': '0x803dd3', 'uniqueId': '0xfa3103def493be93df4b16b1fc961929f3de3084ed7ff99128bf584a318d4501:log:92', 'hash': '0xfa3103def493be93df4b16b1fc961929f3de3084ed7ff99128bf584a318d4501', 'from': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 11424.8056034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x026b57072513f558d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:39:35.000Z'}}, {'blockNum': '0x803dd5', 'uniqueId': '0x86212e867218cffb16efc374434e53a57fd4aa7c29d66bc06a5cc97134a0523b:log:143', 'hash': '0x86212e867218cffb16efc374434e53a57fd4aa7c29d66bc06a5cc97134a0523b', 'from': '0xe638b39cc4659b3dd397a8ef02abfb9ac8a3d48d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:39:59.000Z'}}, {'blockNum': '0x803dd6', 'uniqueId': '0xe182de55c01cdc598d8ac31a322906845e398b65c391d416a67d2e886eb9130f:log:44', 'hash': '0xe182de55c01cdc598d8ac31a322906845e398b65c391d416a67d2e886eb9130f', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xb9fcf16e0cb34780b48797b1ee8aab3713091fdd', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:40:05.000Z'}}, {'blockNum': '0x803ddb', 'uniqueId': '0xbb234074dfa3374df3acbc5fb9cd925840696d4f7e957bfc93001d93c884a3f0:log:81', 'hash': '0xbb234074dfa3374df3acbc5fb9cd925840696d4f7e957bfc93001d93c884a3f0', 'from': '0x24462c702ff5504cee8432a18e029873b6547e21', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 210000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2c782c4729dd10f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:40:54.000Z'}}, {'blockNum': '0x803ddd', 'uniqueId': '0x45b95b857aeec59521e4089701c07db5f0ab21f82cdc4a7a3bfbafc4ad930b2a:log:5', 'hash': '0x45b95b857aeec59521e4089701c07db5f0ab21f82cdc4a7a3bfbafc4ad930b2a', 'from': '0xc2f95afb3492bf1eb0e241a90fef6286527ec588', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.5147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e21055ea6fc24c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:40:58.000Z'}}, {'blockNum': '0x803dde', 'uniqueId': '0x907f410a24593274ea766c4b3dc3af88534a47c16504abb92226b67be7516d7d:log:14', 'hash': '0x907f410a24593274ea766c4b3dc3af88534a47c16504abb92226b67be7516d7d', 'from': '0x5b662727aef339126d8687f9d863c448c2567774', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 346547.2376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49625d075f3e7d8e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:12.000Z'}}, {'blockNum': '0x803dde', 'uniqueId': '0x4c8d7c1bf830393fd384bcc68c4a1516bd86b69f9cfe429ad6758da60a0fb1d9:log:25', 'hash': '0x4c8d7c1bf830393fd384bcc68c4a1516bd86b69f9cfe429ad6758da60a0fb1d9', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03ce35b9858fb0ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:12.000Z'}}, {'blockNum': '0x803ddf', 'uniqueId': '0xcc08ca37be66e6ee0b02de56a1dd1f8d2ddf497b2984bf51439655be8cbed9ec:log:10', 'hash': '0xcc08ca37be66e6ee0b02de56a1dd1f8d2ddf497b2984bf51439655be8cbed9ec', 'from': '0xd68a741029c2ffde775cdbc4e8878d874bb7ca96', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:15.000Z'}}, {'blockNum': '0x803de2', 'uniqueId': '0x77c351692e6a4bb6b50d9e4902c960914199e7ba693ad577bccfd8fd6e93ef72:log:93', 'hash': '0x77c351692e6a4bb6b50d9e4902c960914199e7ba693ad577bccfd8fd6e93ef72', 'from': '0x770105b2b710aacabaca2319299dedbfcdad954b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 200000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a126660225eb6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:39.000Z'}}, {'blockNum': '0x803de3', 'uniqueId': '0x3c91d12b3de2072f79f7202d094692f114f92e58a27acbc53a6501b1232643f7:log:127', 'hash': '0x3c91d12b3de2072f79f7202d094692f114f92e58a27acbc53a6501b1232643f7', 'from': '0x47564a0e832fc93ab78c66c3ce80b8dd09bb5ae7', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59787.7352164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca91980ba518a56a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:43.000Z'}}, {'blockNum': '0x803de4', 'uniqueId': '0x2c5a8d7f24e73195d15af2983342ab203ab54e30bf1b937015d327da5a0a6b97:log:129', 'hash': '0x2c5a8d7f24e73195d15af2983342ab203ab54e30bf1b937015d327da5a0a6b97', 'from': '0xa40bc4cc83e6e71ad33cc3595dd9ed1fd5e8ff44', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:42:07.000Z'}}, {'blockNum': '0x803de4', 'uniqueId': '0x2c4175a086fc6e5ffa5e3534fa8e556216cf75f8285358644f7cbba55033fdbd:log:130', 'hash': '0x2c4175a086fc6e5ffa5e3534fa8e556216cf75f8285358644f7cbba55033fdbd', 'from': '0xdf9d80fc59e61fbe176b449da06d65ba98e6c9f6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:42:07.000Z'}}, {'blockNum': '0x803df2', 'uniqueId': '0x5e6b6387dab4a7d1ad38bbf7a190601da26a9db7ca54eee0a7108e711d9aa46d:log:115', 'hash': '0x5e6b6387dab4a7d1ad38bbf7a190601da26a9db7ca54eee0a7108e711d9aa46d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x76cdc449bcc480e57d1790e57cbf304053b2e307', 'value': 22158.4398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04b136202da785af8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:44:59.000Z'}}, {'blockNum': '0x803df4', 'uniqueId': '0xca44dd645aa87d023e4c58b966e7fc79c639018a76863ac038dd109480648c52:log:58', 'hash': '0xca44dd645aa87d023e4c58b966e7fc79c639018a76863ac038dd109480648c52', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'value': 8006.6655114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b20ace157c80511000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:45:59.000Z'}}, {'blockNum': '0x803dfd', 'uniqueId': '0x662986ed7ebe3f9ba637f2e3d83c2f48dcbbd2ed2f7719d2d48dbe06200135ff:log:14', 'hash': '0x662986ed7ebe3f9ba637f2e3d83c2f48dcbbd2ed2f7719d2d48dbe06200135ff', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'value': 9667.9648466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020c19f6f4e8dcea5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:47:25.000Z'}}, {'blockNum': '0x803dfd', 'uniqueId': '0xa71a88a0f71f6c6db1c0918c4ef0d151c161f4a81cba7d2c3344687002261524:log:104', 'hash': '0xa71a88a0f71f6c6db1c0918c4ef0d151c161f4a81cba7d2c3344687002261524', 'from': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 9210.5906114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01f34e9f41448cf3d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:47:25.000Z'}}, {'blockNum': '0x803e05', 'uniqueId': '0x9bd9a939b67606119a1e4329293fdfcfccc94b681a631ea5afd987cd63d20f05:log:151', 'hash': '0x9bd9a939b67606119a1e4329293fdfcfccc94b681a631ea5afd987cd63d20f05', 'from': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 9667.9648466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020c19f6f4e8dcea5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:48:24.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x09dee30ca3d5960afafb58d70e78d1435e950a463d16d63786fc1c03a5cae63c:log:0', 'hash': '0x09dee30ca3d5960afafb58d70e78d1435e950a463d16d63786fc1c03a5cae63c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 453000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fed2de07f22f1200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xe88eabb573fc0e41931c6901b54d1255507f02b798b0087903416a9627eafb64:log:99', 'hash': '0xe88eabb573fc0e41931c6901b54d1255507f02b798b0087903416a9627eafb64', 'from': '0x3a879221bbebdc04418e75d7cc31221550ffb67f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 8800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd0c885f9a0d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x438324a7e6e34bcc64583b689fc5f34d27c560cf4645723c46c3c9366ff16ba0:log:103', 'hash': '0x438324a7e6e34bcc64583b689fc5f34d27c560cf4645723c46c3c9366ff16ba0', 'from': '0x8cbee18999a05165711c9a655c2dc5d3dbb95474', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34868974dd63d6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xe9a3efd5871a5c03ed9efdf489e0847bb2714e6e21118e8af38c300e2e21763a:log:104', 'hash': '0xe9a3efd5871a5c03ed9efdf489e0847bb2714e6e21118e8af38c300e2e21763a', 'from': '0xb6ff8c73b2239bcd735cd66ce971f21376a69286', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 132479.6572306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1c0dbc9267ec9f205000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xbfcb83d1f1b27a139d54b9781269541f6048cc3b33208a8b8a31b6a376f7abfd:log:106', 'hash': '0xbfcb83d1f1b27a139d54b9781269541f6048cc3b33208a8b8a31b6a376f7abfd', 'from': '0x03a182fb2ca5527d4ee4cdc6b8b87273a2cf846f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59985.7267798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb3d5301039ff91f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x56a30db7f082396592caa1ca1f393e0d0ff1bb89d09834ce41a182b2ff3cc153:log:107', 'hash': '0x56a30db7f082396592caa1ca1f393e0d0ff1bb89d09834ce41a182b2ff3cc153', 'from': '0x3cac884cebcce149cc3f6bba39951294f23b484e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 23136.4688212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04e63b01429daeac2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x6f8d5a281c693f6ca3451bf69535d8b8c9de3a46baf89d3772578e48b0d87be2:log:110', 'hash': '0x6f8d5a281c693f6ca3451bf69535d8b8c9de3a46baf89d3772578e48b0d87be2', 'from': '0x378760b131447113a39a4995a64f6beee9f4f6b9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 46400.5147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09d3607f472fd6e4c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xfb2a78bbf06de6ab1dc5d3b274ffa96c5a4d8ba0170876feb6964306215908de:log:111', 'hash': '0xfb2a78bbf06de6ab1dc5d3b274ffa96c5a4d8ba0170876feb6964306215908de', 'from': '0xae8bdbe465e04c5e7a5f150efaccc9b669d4099e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10234.5384286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022ad0c0abe733913000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e09', 'uniqueId': '0xf0fa6870a37a224b170e6723a2fdf7d2a1aeeef2a8f8264efd2bb11f30bafe54:log:25', 'hash': '0xf0fa6870a37a224b170e6723a2fdf7d2a1aeeef2a8f8264efd2bb11f30bafe54', 'from': '0x284cb1ea7b4bcb6e0938c18d776c3011a614dc89', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:45.000Z'}}, {'blockNum': '0x803e10', 'uniqueId': '0xa1f1cffe15b340103ae3ffd7c502b10eb795803ad7cf937a750a93ec5b0a9621:log:43', 'hash': '0xa1f1cffe15b340103ae3ffd7c502b10eb795803ad7cf937a750a93ec5b0a9621', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'value': 1968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6abc5322a34276c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:51:47.000Z'}}, {'blockNum': '0x803e10', 'uniqueId': '0x647b04193acdb7b3f9e56888b86bafb2f12d4a8eb21a684feb51b252e90d0589:log:45', 'hash': '0x647b04193acdb7b3f9e56888b86bafb2f12d4a8eb21a684feb51b252e90d0589', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xe9a06fdba334ea394c2680adc35b0f5c46ce0632', 'value': 1908.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x677ba850880706c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:51:47.000Z'}}, {'blockNum': '0x803e11', 'uniqueId': '0x324356995dd602bd5fcbe35cfc3829f4d92bbdf5b1920f29da103a2b7de17216:log:19', 'hash': '0x324356995dd602bd5fcbe35cfc3829f4d92bbdf5b1920f29da103a2b7de17216', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd9cbfe4aa15eccf67c115a0bc7ed003f9da8a8ac', 'value': 9958.2365398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021bd64b2bf31e15f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:52:42.000Z'}}, {'blockNum': '0x803e14', 'uniqueId': '0xb0ea3dd0f01e5fdab0b09c358a7d24c53e8f577b6d65d0499a5170aa36cadbde:log:65', 'hash': '0xb0ea3dd0f01e5fdab0b09c358a7d24c53e8f577b6d65d0499a5170aa36cadbde', 'from': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 1968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6abc5322a34276c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:53:38.000Z'}}, {'blockNum': '0x803e14', 'uniqueId': '0x4ce72a2a479cff1c2434d995e9b68b56f755aad99eae7c36b68eeda2960a2733:log:80', 'hash': '0x4ce72a2a479cff1c2434d995e9b68b56f755aad99eae7c36b68eeda2960a2733', 'from': '0x76cdc449bcc480e57d1790e57cbf304053b2e307', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 22158.4398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04b136202da785af8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:53:38.000Z'}}, {'blockNum': '0x803e24', 'uniqueId': '0xea0e1869cac2c2db9dd8c24be9c7957c64ca78b551377e06b1b1cfc3937e3443:log:7', 'hash': '0xea0e1869cac2c2db9dd8c24be9c7957c64ca78b551377e06b1b1cfc3937e3443', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x98ae5bf7ba048587664cb407dbd7fc7ae9222c81', 'value': 1736.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5e2164082894480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:56:21.000Z'}}, {'blockNum': '0x803e29', 'uniqueId': '0x648881a33475aa6ba9c5eed9c0cc288a843e34b32cb7578ab91e0ae441da7a48:log:28', 'hash': '0x648881a33475aa6ba9c5eed9c0cc288a843e34b32cb7578ab91e0ae441da7a48', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xbb6131c8f5eca3979aeea5f8c723d0c530688c9e', 'value': 17749.1891892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c22f7b3857bd8b2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:09.000Z'}}, {'blockNum': '0x803e2f', 'uniqueId': '0x1a808b9f4a678f7b46ada7333c58204cbdeeca94b18e8e413f385ee7c5654ee1:log:9', 'hash': '0x1a808b9f4a678f7b46ada7333c58204cbdeeca94b18e8e413f385ee7c5654ee1', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x17fdf49eda93839700c76fd9317854f66911ce25', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:52.000Z'}}, {'blockNum': '0x803e2f', 'uniqueId': '0xdc1f8ddbc8895b07434cc6796fb6321b85ed52b3a380f80c0800ed173116e6dc:log:17', 'hash': '0xdc1f8ddbc8895b07434cc6796fb6321b85ed52b3a380f80c0800ed173116e6dc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6499577c648c9005fc57841bbde2c2402813c9ce', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:52.000Z'}}, {'blockNum': '0x803e2f', 'uniqueId': '0x0e6cdc3029f6b2ccc7850e57d7e9b476c77ce949eedca897ee46df51f2f47feb:log:32', 'hash': '0x0e6cdc3029f6b2ccc7850e57d7e9b476c77ce949eedca897ee46df51f2f47feb', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 453000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fed2de07f22f1200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:52.000Z'}}, {'blockNum': '0x803e30', 'uniqueId': '0x9dd5eaa62504eb599da60456620dc45f14c2d31a0289012edc83521c02288078:log:38', 'hash': '0x9dd5eaa62504eb599da60456620dc45f14c2d31a0289012edc83521c02288078', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x8bfc1e6b3db10ef4c447b903707812eaaa1de700', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:59:09.000Z'}}, {'blockNum': '0x803e32', 'uniqueId': '0x37472723aacc6fd5a222f7ab49555e27ccc0ea06598acc8926f3f68ff145f036:log:9', 'hash': '0x37472723aacc6fd5a222f7ab49555e27ccc0ea06598acc8926f3f68ff145f036', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd6b96b64014362749969238765220701b0c9eb8b', 'value': 10064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0221920e76a48b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:59:50.000Z'}}, {'blockNum': '0x803e43', 'uniqueId': '0xf976194aa597fbd0af3dea0b5fa7884f49ac21b0beaf7afbbbad5edc282e188f:log:6', 'hash': '0xf976194aa597fbd0af3dea0b5fa7884f49ac21b0beaf7afbbbad5edc282e188f', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 85131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1206f5f430a1934c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:03:00.000Z'}}, {'blockNum': '0x803e43', 'uniqueId': '0x8b61c9ddd644b166c1033b5cdf8acedb6a31d98ca66159238811905bace35a53:log:34', 'hash': '0x8b61c9ddd644b166c1033b5cdf8acedb6a31d98ca66159238811905bace35a53', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xaef0d20c06b1bf9c303e61912fb6fc8607c45c00', 'value': 38641.048854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x082ebc46d3a970ff6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:03:00.000Z'}}, {'blockNum': '0x803e4c', 'uniqueId': '0xc8c9664ee907230a3eb0c703f5fbd0d6469bb653609028d035c19781b31c17b5:log:29', 'hash': '0xc8c9664ee907230a3eb0c703f5fbd0d6469bb653609028d035c19781b31c17b5', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 94612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1408ed429423e9d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:04:25.000Z'}}, {'blockNum': '0x803e5e', 'uniqueId': '0xaaf8f99d58c16178159206ad09c4213d4b2c8d87c52ef1231a359ff7d0f784a0:log:28', 'hash': '0xaaf8f99d58c16178159206ad09c4213d4b2c8d87c52ef1231a359ff7d0f784a0', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x155d395b0b27349e41b7ca436a0a8d586f0041ed', 'value': 59848.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cac6aaedd413bd6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:07:15.000Z'}}, {'blockNum': '0x803e64', 'uniqueId': '0xd70467fcaac00814471d52fb9078c611f8f4a35d33f65feaae1d9b51d3ab8a4c:log:3', 'hash': '0xd70467fcaac00814471d52fb9078c611f8f4a35d33f65feaae1d9b51d3ab8a4c', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x73fde08d4cefe45f5ae6c2baf0d0b92c82f42c34', 'value': 117825.7030722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x18f3581b04d60cd7d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:08:53.000Z'}}, {'blockNum': '0x803e72', 'uniqueId': '0x4a2ac2e927c966f6d64d31855d14d2676a6c750be1b8af5bfe3e6458d2cb0ccc:log:96', 'hash': '0x4a2ac2e927c966f6d64d31855d14d2676a6c750be1b8af5bfe3e6458d2cb0ccc', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 94612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1408ed429423e9d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:10:56.000Z'}}, {'blockNum': '0x803e81', 'uniqueId': '0xeb5e026890033a19b7f63463430693d33316100db652a0b4f191a93203e1b462:log:0', 'hash': '0xeb5e026890033a19b7f63463430693d33316100db652a0b4f191a93203e1b462', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x5b662727aef339126d8687f9d863c448c2567774', 'value': 349760.5217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a108e4dbf7c3c524000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:14:08.000Z'}}, {'blockNum': '0x803e84', 'uniqueId': '0xd54f72c7ec453c1aec567cc6e767fe37a4ff4bc0577b3e4a3fc118d4c213c3f8:log:2', 'hash': '0xd54f72c7ec453c1aec567cc6e767fe37a4ff4bc0577b3e4a3fc118d4c213c3f8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 301277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3fcc4247020ae1540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:14:37.000Z'}}, {'blockNum': '0x803e89', 'uniqueId': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d:log:10', 'hash': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d', 'from': '0xb14232b0204b2f7bb6ba5aff59ef36030f7fe38b', 'to': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'value': 1011.0201193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x36ceb901e3a18d2800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:16:36.000Z'}}, {'blockNum': '0x803e89', 'uniqueId': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d:log:12', 'hash': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d', 'from': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'to': '0xfa29654a1d94fa8c5145798ffb71cfb08f29f821', 'value': 1007.9870589421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x36a4a16990429a4d00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:16:36.000Z'}}, {'blockNum': '0x803e8c', 'uniqueId': '0x32431068e473c93d79d223c5d0bdb107353b602446633d7075f38b1fdd89e1be:log:72', 'hash': '0x32431068e473c93d79d223c5d0bdb107353b602446633d7075f38b1fdd89e1be', 'from': '0x5f4161eb3a67f1f2096b31997d59b5386fa21ff3', 'to': '0xa1cf0c28748c5dd3324866c36b1bce966a8ba921', 'value': 413667.1509766994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5798f0f1becf64a7eac6', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:17:22.000Z'}}, {'blockNum': '0x803eac', 'uniqueId': '0x4be8f640f90c5be432621ad5bcddbd96e393f3e92c8196eb4edfff96f20cb1fd:log:123', 'hash': '0x4be8f640f90c5be432621ad5bcddbd96e393f3e92c8196eb4edfff96f20cb1fd', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 301277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3fcc4247020ae1540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:25:20.000Z'}}, {'blockNum': '0x803eb2', 'uniqueId': '0x8c751b3e306065945024a7cd0810f5808f12519184bc84d0c8d0d111e17dba35:log:22', 'hash': '0x8c751b3e306065945024a7cd0810f5808f12519184bc84d0c8d0d111e17dba35', 'from': '0x5b662727aef339126d8687f9d863c448c2567774', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 349760.5217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a108e4dbf7c3c524000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:26:23.000Z'}}, {'blockNum': '0x803ec9', 'uniqueId': '0xd32f0ce27bae362dda73528f3035537a268564dfe0b2fb7e54fdc57fc8412c95:log:1', 'hash': '0xd32f0ce27bae362dda73528f3035537a268564dfe0b2fb7e54fdc57fc8412c95', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:17.000Z'}}, {'blockNum': '0x803eca', 'uniqueId': '0xf7f75dd7929775bc161ae63e381505991479d2c8cc7a28737e2b6212d52d7707:log:68', 'hash': '0xf7f75dd7929775bc161ae63e381505991479d2c8cc7a28737e2b6212d52d7707', 'from': '0xaef0d20c06b1bf9c303e61912fb6fc8607c45c00', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 38641.048854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x082ebc46d3a970ff6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:38.000Z'}}, {'blockNum': '0x803ecc', 'uniqueId': '0xd5f3639b60a8d04a03570cf62f18de38b14c19518b31e0918969510633c85846:log:5', 'hash': '0xd5f3639b60a8d04a03570cf62f18de38b14c19518b31e0918969510633c85846', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x152b1bedd7313ac5613c93abad59ba6dab3736e7', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:55.000Z'}}, {'blockNum': '0x803ecc', 'uniqueId': '0x8490bc66f62ee92af9acbac1bf2d8826bc61665137d3a792290a7e50173a3c71:log:7', 'hash': '0x8490bc66f62ee92af9acbac1bf2d8826bc61665137d3a792290a7e50173a3c71', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 18217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03db8ba916328b040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:55.000Z'}}, {'blockNum': '0x803ecc', 'uniqueId': '0xfd113837f314436d65c949419bad5e9b115312129edbc18bc3e08eb09b74d50c:log:8', 'hash': '0xfd113837f314436d65c949419bad5e9b115312129edbc18bc3e08eb09b74d50c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x2d5ebdfca13265c97c53a30e21ca860ddabc3dac', 'value': 30968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x068ed42bd20d7a96c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:55.000Z'}}, {'blockNum': '0x803ed5', 'uniqueId': '0x2874a1d2efde623b4030a244659e8001f72f0c7ff8e40d066aef52f296e4fad1:log:14', 'hash': '0x2874a1d2efde623b4030a244659e8001f72f0c7ff8e40d066aef52f296e4fad1', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xaacd1e63da8b541344fcd0891a7161db215a25a2', 'value': 3068.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa65de42e968426c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:33:52.000Z'}}, {'blockNum': '0x803edc', 'uniqueId': '0xb5e412370508bdd72ab13678a88daa814a5dbe0947cc015363a304b24feddc25:log:12', 'hash': '0xb5e412370508bdd72ab13678a88daa814a5dbe0947cc015363a304b24feddc25', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xb58a14601d35131e8f6023791e872f4609f472a7', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:35:44.000Z'}}, {'blockNum': '0x803ee0', 'uniqueId': '0xd3139a4260ffab20f128529ec7d8c954053aec1612f8fd5c68473dd8c423c08c:log:68', 'hash': '0xd3139a4260ffab20f128529ec7d8c954053aec1612f8fd5c68473dd8c423c08c', 'from': '0x8bfc1e6b3db10ef4c447b903707812eaaa1de700', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:36:32.000Z'}}, {'blockNum': '0x803ee2', 'uniqueId': '0x04893a5227df00f4da7980e3fb84df293c1e4c8a053c2158706a040a83150ae4:log:23', 'hash': '0x04893a5227df00f4da7980e3fb84df293c1e4c8a053c2158706a040a83150ae4', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3a0514b6a2de27b87210ee377862963f6ae92ba0', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:37:00.000Z'}}, {'blockNum': '0x803ef2', 'uniqueId': '0x09d8c2ccf93e7557a4f9e2509b401efdac29112a6c10587fd320dfbe9f30fe14:log:161', 'hash': '0x09d8c2ccf93e7557a4f9e2509b401efdac29112a6c10587fd320dfbe9f30fe14', 'from': '0xe9a06fdba334ea394c2680adc35b0f5c46ce0632', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1908.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x677ba850880706c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:40:48.000Z'}}, {'blockNum': '0x803ef4', 'uniqueId': '0x518d8416aab858bbacbbfe9c43efbb9821b6d9d5b2f3f648898b0eecc78a2bd2:log:71', 'hash': '0x518d8416aab858bbacbbfe9c43efbb9821b6d9d5b2f3f648898b0eecc78a2bd2', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03db8ba916328b040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:41:07.000Z'}}, {'blockNum': '0x803ef6', 'uniqueId': '0x552275ea1ea69f0c0622c27e1fc07eaeb3d86d2d4e7842b91a2d20fdaff53534:log:90', 'hash': '0x552275ea1ea69f0c0622c27e1fc07eaeb3d86d2d4e7842b91a2d20fdaff53534', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:41:39.000Z'}}, {'blockNum': '0x803efc', 'uniqueId': '0x66a3d32148397969a87e5d058529137c1c53c25878ab06375afdefce85b5c0c5:log:65', 'hash': '0x66a3d32148397969a87e5d058529137c1c53c25878ab06375afdefce85b5c0c5', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x67ffb39872071159da34a322a07f770753995ba6', 'value': 60498.8089276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ccfa5a20739950a6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:43:22.000Z'}}, {'blockNum': '0x803f0a', 'uniqueId': '0xfcb604bef436966fab61776f928703ea05477687eca0693268eb8d3ff3cb9b5a:log:9', 'hash': '0xfcb604bef436966fab61776f928703ea05477687eca0693268eb8d3ff3cb9b5a', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 591.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2012196991a1180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:46:26.000Z'}}, {'blockNum': '0x803f11', 'uniqueId': '0x4d931b3b8932196bf358a098492cdd886f196bdbd1f79650a5ba78968a64ba34:log:16', 'hash': '0x4d931b3b8932196bf358a098492cdd886f196bdbd1f79650a5ba78968a64ba34', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xba50519a5e49ff8f359bd2c8bc79bb1e6d2d919a', 'value': 20028.7251568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043dc265d56031e58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:47:49.000Z'}}, {'blockNum': '0x803f15', 'uniqueId': '0x279f115ff80e3c21e5e363fc2f5d3dbff5b7d76696352c77f2a37f1c35e26fcd:log:0', 'hash': '0x279f115ff80e3c21e5e363fc2f5d3dbff5b7d76696352c77f2a37f1c35e26fcd', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 305000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4096154808be3ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:48:59.000Z'}}, {'blockNum': '0x803f1c', 'uniqueId': '0xa23c5f5ff3551e23202531e57f21aab6108ff2bb779e05c261cea2d1286e6631:log:26', 'hash': '0xa23c5f5ff3551e23202531e57f21aab6108ff2bb779e05c261cea2d1286e6631', 'from': '0x155d395b0b27349e41b7ca436a0a8d586f0041ed', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59848.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cac6aaedd413bd6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:49:57.000Z'}}, {'blockNum': '0x803f1c', 'uniqueId': '0x57d21853e2a70bcc21b6a93bf2f9f473702e3f9d97011ec38a8b6294f6f53ff8:log:35', 'hash': '0x57d21853e2a70bcc21b6a93bf2f9f473702e3f9d97011ec38a8b6294f6f53ff8', 'from': '0x73fde08d4cefe45f5ae6c2baf0d0b92c82f42c34', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 117825.7030722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x18f3581b04d60cd7d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:49:57.000Z'}}, {'blockNum': '0x803f2e', 'uniqueId': '0xc684a1b2b2f95be79352de0f6aa2210d2de2633294ed0d9cf91ce42c1db70b9e:log:14', 'hash': '0xc684a1b2b2f95be79352de0f6aa2210d2de2633294ed0d9cf91ce42c1db70b9e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:54:28.000Z'}}, {'blockNum': '0x803f2e', 'uniqueId': '0x0b2b302102887e57e2c697c5dff20de54e63e330bc4ea2791d5d150bbbace6cd:log:91', 'hash': '0x0b2b302102887e57e2c697c5dff20de54e63e330bc4ea2791d5d150bbbace6cd', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xe2075a864929278db933a5082e7189786d414ca9', 'value': 168.7251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x092587f8819042c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:54:28.000Z'}}, {'blockNum': '0x803f3a', 'uniqueId': '0x7b7a97011c73958a0fb9e5ed07580185a2f793b69f0500c973ee8a027f857b43:log:91', 'hash': '0x7b7a97011c73958a0fb9e5ed07580185a2f793b69f0500c973ee8a027f857b43', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 305000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4096154808be3ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:04.000Z'}}, {'blockNum': '0x803f3a', 'uniqueId': '0x1dc0cfaa355587d8e21b9c43b72e8c2b3e9bb02ccedec0debdb6b5d4abbd7704:log:110', 'hash': '0x1dc0cfaa355587d8e21b9c43b72e8c2b3e9bb02ccedec0debdb6b5d4abbd7704', 'from': '0xbb6131c8f5eca3979aeea5f8c723d0c530688c9e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 17749.1891892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c22f7b3857bd8b2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:04.000Z'}}, {'blockNum': '0x803f3b', 'uniqueId': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571:log:85', 'hash': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3542.399557685189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc008ab5d47068c6c14', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:20.000Z'}}, {'blockNum': '0x803f3b', 'uniqueId': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571:log:87', 'hash': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 3542.399557685189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc008ab5d47068c6c14', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:20.000Z'}}, {'blockNum': '0x803f3b', 'uniqueId': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571:log:92', 'hash': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 3542.396015285631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc0089ec77bdb429c4f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:20.000Z'}}, {'blockNum': '0x803f3c', 'uniqueId': '0xa20219bef9e1dc6b58dae6c347f4d8f77ec5faf605fca87e130d91a695223714:log:10', 'hash': '0xa20219bef9e1dc6b58dae6c347f4d8f77ec5faf605fca87e130d91a695223714', 'from': '0x17fdf49eda93839700c76fd9317854f66911ce25', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:27.000Z'}}, {'blockNum': '0x803f3d', 'uniqueId': '0x0ed6444090791d3a579bb492ff2ffe18597e9c21aea0c99b49f0c6c238482679:log:33', 'hash': '0x0ed6444090791d3a579bb492ff2ffe18597e9c21aea0c99b49f0c6c238482679', 'from': '0xaacd1e63da8b541344fcd0891a7161db215a25a2', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 3068.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa65de42e968426c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:29.000Z'}}, {'blockNum': '0x803f3f', 'uniqueId': '0x6e4c1d7eaa9d564ed1f6bb9cc76b6fef47802a4056a6f35c580a15ba4cad627c:log:33', 'hash': '0x6e4c1d7eaa9d564ed1f6bb9cc76b6fef47802a4056a6f35c580a15ba4cad627c', 'from': '0x67ffb39872071159da34a322a07f770753995ba6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60498.8089276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ccfa5a20739950a6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:42.000Z'}}, {'blockNum': '0x803f40', 'uniqueId': '0x77a7930016aaa2fe628a145a6409461a75f7d0f224ca942d8b50cf9427248593:log:6', 'hash': '0x77a7930016aaa2fe628a145a6409461a75f7d0f224ca942d8b50cf9427248593', 'from': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:48.000Z'}}, {'blockNum': '0x803f40', 'uniqueId': '0xac6f56df0c6ed94bf92861ea0e870151646fb3cfc758ee460968d56458fb97ae:log:82', 'hash': '0xac6f56df0c6ed94bf92861ea0e870151646fb3cfc758ee460968d56458fb97ae', 'from': '0xd6b96b64014362749969238765220701b0c9eb8b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0221920e76a48b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:48.000Z'}}]}}
Number of returned transfers:  519
Answer is complete
 
symbol             BNT
group              CPS
date        2019-09-09
hour             20:00
exchange       binance
Name: 408, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2019-09-09 20:00:00 2019-09-09 08:00:00 2019-09-10 08:00:00
Unix timestamps:  1568008800.0 1568095200.0
Hex Block Numbers:  0x81e999 0x8202cb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x81e99c', 'uniqueId': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62:log:115', 'hash': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.0694988291698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9ef553632dc49730', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:00:45.000Z'}}, {'blockNum': '0x81e99c', 'uniqueId': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62:log:119', 'hash': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 491.0694988291698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9ef553632dc49730', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:00:45.000Z'}}, {'blockNum': '0x81e9a2', 'uniqueId': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14:log:126', 'hash': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.93560066617425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f516a754aa33d2b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:03:06.000Z'}}, {'blockNum': '0x81e9a2', 'uniqueId': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14:log:130', 'hash': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1c29f12d94ad2e6b5321ce226b4550f83ce88fca', 'value': 441.93560066617425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f516a754aa33d2b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:03:06.000Z'}}, {'blockNum': '0x81e9c2', 'uniqueId': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659:log:48', 'hash': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.1185968032061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a83e25454c49caa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:09:55.000Z'}}, {'blockNum': '0x81e9c2', 'uniqueId': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659:log:52', 'hash': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 489.1185968032061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a83e25454c49caa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:09:55.000Z'}}, {'blockNum': '0x81e9d8', 'uniqueId': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5:log:64', 'hash': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.5496949588759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27edae2d28561e07e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:29.000Z'}}, {'blockNum': '0x81e9d8', 'uniqueId': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5:log:68', 'hash': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.5496949588759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27edae2d28561e07e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:29.000Z'}}, {'blockNum': '0x81e9da', 'uniqueId': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e:log:19', 'hash': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 158.68369132873448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a2db88570f3b7a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:44.000Z'}}, {'blockNum': '0x81e9da', 'uniqueId': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e:log:23', 'hash': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 158.68369132873448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a2db88570f3b7a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:44.000Z'}}, {'blockNum': '0x81e9f1', 'uniqueId': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d:log:70', 'hash': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.0039222144626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e0c59cdc4923e54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:19:29.000Z'}}, {'blockNum': '0x81e9f1', 'uniqueId': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d:log:74', 'hash': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 491.0039222144626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e0c59cdc4923e54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:19:29.000Z'}}, {'blockNum': '0x81e9f6', 'uniqueId': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471:log:132', 'hash': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 981.9133204092605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353ac8e2833248bc61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:21:26.000Z'}}, {'blockNum': '0x81e9f6', 'uniqueId': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471:log:136', 'hash': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 981.9133204092605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353ac8e2833248bc61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:21:26.000Z'}}, {'blockNum': '0x81ea0a', 'uniqueId': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc:log:30', 'hash': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc', 'from': '0xdb9272880400e0ae8e522994f6a959122d94c7b7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 364.5840694242839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c39ecf7e00cbf28d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:25:47.000Z'}}, {'blockNum': '0x81ea0a', 'uniqueId': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc:log:34', 'hash': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 364.5840694242839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c39ecf7e00cbf28d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:25:47.000Z'}}, {'blockNum': '0x81ea2d', 'uniqueId': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f:log:156', 'hash': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 972.6371818833696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ba0d6bab973f2ef0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:33:50.000Z'}}, {'blockNum': '0x81ea2d', 'uniqueId': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f:log:160', 'hash': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 972.6371818833696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ba0d6bab973f2ef0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:33:50.000Z'}}, {'blockNum': '0x81ea2f', 'uniqueId': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b:log:92', 'hash': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 77.98910020606719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043a50f16ef6faa261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:34:22.000Z'}}, {'blockNum': '0x81ea2f', 'uniqueId': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b:log:96', 'hash': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'value': 77.98910020606719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043a50f16ef6faa261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:34:22.000Z'}}, {'blockNum': '0x81ea3c', 'uniqueId': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8:log:73', 'hash': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.4734979280794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ec9f785c9c8ec736', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:39:20.000Z'}}, {'blockNum': '0x81ea3c', 'uniqueId': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8:log:77', 'hash': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.4734979280794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ec9f785c9c8ec736', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:39:20.000Z'}}, {'blockNum': '0x81ea42', 'uniqueId': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298:log:145', 'hash': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.03478118329419377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b914d4b1e4064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:40:55.000Z'}}, {'blockNum': '0x81ea42', 'uniqueId': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298:log:149', 'hash': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 0.03478118329419377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b914d4b1e4064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:40:55.000Z'}}, {'blockNum': '0x81ea49', 'uniqueId': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b:log:40', 'hash': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 494.00081952251605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a37806f76c9cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:41:43.000Z'}}, {'blockNum': '0x81ea49', 'uniqueId': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b:log:44', 'hash': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 494.00081952251605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a37806f76c9cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:41:43.000Z'}}, {'blockNum': '0x81ea58', 'uniqueId': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37:log:24', 'hash': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1352.9001681716124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495742eefad332710d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:45:29.000Z'}}, {'blockNum': '0x81ea58', 'uniqueId': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37:log:28', 'hash': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1352.9001681716124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495742eefad332710d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:45:29.000Z'}}, {'blockNum': '0x81ea61', 'uniqueId': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6:log:114', 'hash': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2700.4481366930668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x92643f08bc23c016ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:47:22.000Z'}}, {'blockNum': '0x81ea61', 'uniqueId': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6:log:117', 'hash': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x760f6df021517d001e43469eeaf2cd00c71f8f7a', 'value': 2700.4481366930668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x92643f08bc23c016ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:47:22.000Z'}}, {'blockNum': '0x81ea69', 'uniqueId': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139:log:111', 'hash': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1300.008379265213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46793d8d33be50a645', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:50:13.000Z'}}, {'blockNum': '0x81ea69', 'uniqueId': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139:log:115', 'hash': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1300.008379265213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46793d8d33be50a645', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:50:13.000Z'}}, {'blockNum': '0x81ea71', 'uniqueId': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8:log:49', 'hash': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8', 'from': '0x9300de97702dfbe25f4f71c764824670abac6331', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:52:21.000Z'}}, {'blockNum': '0x81ea71', 'uniqueId': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8:log:52', 'hash': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:52:21.000Z'}}, {'blockNum': '0x81ea99', 'uniqueId': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d:log:82', 'hash': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 785.5394309042101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a958cae70ebf42aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:00:57.000Z'}}, {'blockNum': '0x81ea99', 'uniqueId': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d:log:86', 'hash': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 785.5394309042101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a958cae70ebf42aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:00:57.000Z'}}, {'blockNum': '0x81ea9d', 'uniqueId': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3:log:108', 'hash': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.168884508743058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dada5f7d424164', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:01:41.000Z'}}, {'blockNum': '0x81ea9d', 'uniqueId': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3:log:112', 'hash': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.168884508743058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dada5f7d424164', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:01:41.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4:log:64', 'hash': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 842.3700391788294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2daa3b8f90be02b525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4:log:68', 'hash': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 842.3700391788294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2daa3b8f90be02b525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79:log:91', 'hash': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.2893072986367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ea1117f5cdab0e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79:log:95', 'hash': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.2893072986367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ea1117f5cdab0e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878:log:105', 'hash': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1534.574283231964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53307f0c1392e778fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878:log:109', 'hash': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1534.574283231964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53307f0c1392e778fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eacf', 'uniqueId': '0x8caa5ac349507a6e6e4a03831cf1296a5cd278d757e857a253a1b3e211211250:log:126', 'hash': '0x8caa5ac349507a6e6e4a03831cf1296a5cd278d757e857a253a1b3e211211250', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x3667d5c9e58b6d0a5a8fbe58f3862dcd2eafadfb', 'value': 475.5570555258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c7ae0e6436063a00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:13:33.000Z'}}, {'blockNum': '0x81eae2', 'uniqueId': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274:log:17', 'hash': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1205.6239339948668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415b64a44c8906066d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:19:21.000Z'}}, {'blockNum': '0x81eae2', 'uniqueId': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274:log:21', 'hash': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1205.6239339948668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415b64a44c8906066d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:19:21.000Z'}}, {'blockNum': '0x81eae7', 'uniqueId': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1:log:24', 'hash': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1', 'from': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 147.66779699993228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08014d66fe71751f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:20:21.000Z'}}, {'blockNum': '0x81eae7', 'uniqueId': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1:log:28', 'hash': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 147.66779699993228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08014d66fe71751f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:20:21.000Z'}}, {'blockNum': '0x81eafe', 'uniqueId': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828:log:119', 'hash': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 284.5828059063387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d613a2fff410e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:24:14.000Z'}}, {'blockNum': '0x81eafe', 'uniqueId': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828:log:123', 'hash': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 284.5828059063387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d613a2fff410e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:24:14.000Z'}}, {'blockNum': '0x81eb12', 'uniqueId': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9:log:32', 'hash': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 251.4792684694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da1f9d6475b92f108', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:29:23.000Z'}}, {'blockNum': '0x81eb12', 'uniqueId': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9:log:36', 'hash': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 251.4792684694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da1f9d6475b92f108', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:29:23.000Z'}}, {'blockNum': '0x81eb1b', 'uniqueId': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75:log:98', 'hash': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 638.3456891082857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229ad37624c14fadf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:31:59.000Z'}}, {'blockNum': '0x81eb1b', 'uniqueId': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75:log:102', 'hash': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 638.3456891082857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229ad37624c14fadf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:31:59.000Z'}}, {'blockNum': '0x81eb28', 'uniqueId': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde:log:103', 'hash': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 326.66697627910935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11b56a3c2b87449936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:35:32.000Z'}}, {'blockNum': '0x81eb28', 'uniqueId': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde:log:107', 'hash': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 326.66697627910935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11b56a3c2b87449936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:35:32.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25:log:108', 'hash': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.30219071752725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a788ddf525b424eb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25:log:112', 'hash': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 488.30219071752725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a788ddf525b424eb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1:log:133', 'hash': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 500.4159090923124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b20aa7200997288de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1:log:137', 'hash': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 500.4159090923124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b20aa7200997288de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8:log:51', 'hash': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.93545480278516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1afe3e19f7d09573b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8:log:55', 'hash': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.93545480278516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1afe3e19f7d09573b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5:log:135', 'hash': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 368.2912419554568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f71155449271c8f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5:log:139', 'hash': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 368.2912419554568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f71155449271c8f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132:log:14', 'hash': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2172.4042042247193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c42a21da038cda07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132:log:18', 'hash': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2172.4042042247193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c42a21da038cda07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107:log:52', 'hash': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.53803694888538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4f8657b0510d0d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107:log:56', 'hash': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 245.53803694888538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4f8657b0510d0d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758:log:92', 'hash': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 859.4937236469076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e97df1bdd2bafd7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758:log:96', 'hash': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 859.4937236469076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e97df1bdd2bafd7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3d', 'uniqueId': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4:log:108', 'hash': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 125.26535521166481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06ca67f0e176687247', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:15.000Z'}}, {'blockNum': '0x81eb3d', 'uniqueId': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4:log:112', 'hash': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 125.26535521166481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06ca67f0e176687247', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:15.000Z'}}, {'blockNum': '0x81eb44', 'uniqueId': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1:log:94', 'hash': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 92.04830027251134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04fd6d4167b187cbe5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:42:42.000Z'}}, {'blockNum': '0x81eb44', 'uniqueId': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1:log:98', 'hash': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 92.04830027251134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04fd6d4167b187cbe5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:42:42.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:29', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:33', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:36', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eba2', 'uniqueId': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf:log:29', 'hash': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 738.6624969450271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280b005b5eaf670beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:59:02.000Z'}}, {'blockNum': '0x81eba2', 'uniqueId': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf:log:33', 'hash': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 738.6624969450271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280b005b5eaf670beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:59:02.000Z'}}, {'blockNum': '0x81ebb0', 'uniqueId': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35:log:97', 'hash': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 996.0203909220442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35fe8f4466c225fca6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:01:49.000Z'}}, {'blockNum': '0x81ebb0', 'uniqueId': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35:log:101', 'hash': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 996.0203909220442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35fe8f4466c225fca6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:01:49.000Z'}}, {'blockNum': '0x81ebb4', 'uniqueId': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6:log:93', 'hash': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6', 'from': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 136.42750988523056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07654fe16aac42e56e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:02:26.000Z'}}, {'blockNum': '0x81ebb4', 'uniqueId': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6:log:97', 'hash': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 136.42750988523056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07654fe16aac42e56e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:02:26.000Z'}}, {'blockNum': '0x81ebb8', 'uniqueId': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788:log:41', 'hash': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.790485370715651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9cba8f86e3bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:03:20.000Z'}}, {'blockNum': '0x81ebb8', 'uniqueId': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788:log:45', 'hash': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.790485370715651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9cba8f86e3bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:03:20.000Z'}}, {'blockNum': '0x81ebbc', 'uniqueId': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a:log:97', 'hash': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.3736076293722583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131008dc797ff863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:05:31.000Z'}}, {'blockNum': '0x81ebbc', 'uniqueId': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a:log:100', 'hash': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.3736076293722583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131008dc797ff863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:05:31.000Z'}}, {'blockNum': '0x81ebd0', 'uniqueId': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243:log:71', 'hash': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 99.69631595627632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056790772604f55f86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:09:29.000Z'}}, {'blockNum': '0x81ebd0', 'uniqueId': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243:log:75', 'hash': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 99.69631595627632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056790772604f55f86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:09:29.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:97', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:100', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:103', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c:log:76', 'hash': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6067.535546795697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0148ebf888a12d085719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c:log:80', 'hash': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 6067.535546795697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0148ebf888a12d085719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360:log:96', 'hash': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6192.1770756091655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014fadb832b4d1781afa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360:log:100', 'hash': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 6192.1770756091655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014fadb832b4d1781afa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319:log:121', 'hash': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 368.42396666754195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f8e8ddb0b731f6c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319:log:125', 'hash': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 368.42396666754195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f8e8ddb0b731f6c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf8', 'uniqueId': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e:log:97', 'hash': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 252.271037108751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacf6c3a9427d3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:39.000Z'}}, {'blockNum': '0x81ebf8', 'uniqueId': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e:log:101', 'hash': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 252.271037108751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacf6c3a9427d3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:39.000Z'}}, {'blockNum': '0x81ec27', 'uniqueId': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9:log:71', 'hash': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 527.8889070629579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9dee241934cbc149', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:16.000Z'}}, {'blockNum': '0x81ec27', 'uniqueId': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9:log:75', 'hash': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 527.8889070629579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9dee241934cbc149', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:16.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe:log:70', 'hash': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 294.09339163776656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff15d9d855ee93b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe:log:74', 'hash': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.09339163776656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff15d9d855ee93b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca:log:102', 'hash': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.82129148889216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a87ce1dfc22003e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca:log:106', 'hash': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 122.82129148889216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a87ce1dfc22003e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec7b', 'uniqueId': '0x43c2308d999c9e430f15800d1b7f6aa23fc41339cfc47285939123e6aab84ee3:log:3', 'hash': '0x43c2308d999c9e430f15800d1b7f6aa23fc41339cfc47285939123e6aab84ee3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:43:35.000Z'}}, {'blockNum': '0x81ec7d', 'uniqueId': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9:log:29', 'hash': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:44:01.000Z'}}, {'blockNum': '0x81ec7d', 'uniqueId': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9:log:32', 'hash': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:44:01.000Z'}}, {'blockNum': '0x81ec83', 'uniqueId': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5:log:94', 'hash': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 579.0628002644288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f641c54d5943fc5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:45:54.000Z'}}, {'blockNum': '0x81ec83', 'uniqueId': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5:log:98', 'hash': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 579.0628002644288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f641c54d5943fc5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:45:54.000Z'}}, {'blockNum': '0x81ec85', 'uniqueId': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67:log:33', 'hash': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 528.0091730043429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9f996955bfa09c02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:46:14.000Z'}}, {'blockNum': '0x81ec85', 'uniqueId': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67:log:37', 'hash': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 528.0091730043429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9f996955bfa09c02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:46:14.000Z'}}, {'blockNum': '0x81ec8b', 'uniqueId': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb:log:30', 'hash': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 748.523561751946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d9e590cae833d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:47:41.000Z'}}, {'blockNum': '0x81ec8b', 'uniqueId': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb:log:34', 'hash': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.523561751946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d9e590cae833d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:47:41.000Z'}}, {'blockNum': '0x81ec9e', 'uniqueId': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68:log:43', 'hash': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3735.9257159445733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca866264de6b309b42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:54:13.000Z'}}, {'blockNum': '0x81ec9e', 'uniqueId': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68:log:47', 'hash': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3735.9257159445733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca866264de6b309b42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:54:13.000Z'}}, {'blockNum': '0x81eca8', 'uniqueId': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3:log:12', 'hash': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 405.447106265603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fab57aff6b525186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:52.000Z'}}, {'blockNum': '0x81eca8', 'uniqueId': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3:log:16', 'hash': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.447106265603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fab57aff6b525186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:52.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d:log:26', 'hash': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 938.2073340968713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc3e07868e3e185e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d:log:30', 'hash': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 938.2073340968713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc3e07868e3e185e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2:log:42', 'hash': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 956.370508616555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d84e9684c56b2fe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2:log:46', 'hash': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 956.370508616555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d84e9684c56b2fe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81ecaa', 'uniqueId': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90:log:51', 'hash': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.0759866941578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aaced16c49d1e6809', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:57:18.000Z'}}, {'blockNum': '0x81ecaa', 'uniqueId': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90:log:55', 'hash': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.0759866941578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aaced16c49d1e6809', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:57:18.000Z'}}, {'blockNum': '0x81ecb1', 'uniqueId': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27:log:55', 'hash': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 927.0574605108661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x324181b892dde678ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:59:20.000Z'}}, {'blockNum': '0x81ecb1', 'uniqueId': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27:log:59', 'hash': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 927.0574605108661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x324181b892dde678ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:59:20.000Z'}}, {'blockNum': '0x81ecc2', 'uniqueId': '0xe99734b70c03797950ad38da6324b848337a8765c99715cba5b3f3444a1275da:log:17', 'hash': '0xe99734b70c03797950ad38da6324b848337a8765c99715cba5b3f3444a1275da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:42.000Z'}}, {'blockNum': '0x81ecc2', 'uniqueId': '0x05e89167a888f76c4cffc3c021b9fcf22e9c7bf5b81477fc27b31d700b95c6a3:log:18', 'hash': '0x05e89167a888f76c4cffc3c021b9fcf22e9c7bf5b81477fc27b31d700b95c6a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xacda8e694f34fbc2e60465a0d1a034e6c3dcfa3d', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2241af62c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:42.000Z'}}, {'blockNum': '0x81ecc6', 'uniqueId': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6:log:18', 'hash': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:59.000Z'}}, {'blockNum': '0x81ecc6', 'uniqueId': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6:log:21', 'hash': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:59.000Z'}}, {'blockNum': '0x81eccf', 'uniqueId': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8:log:124', 'hash': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9831.270473938357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214f44917be5a0bf12e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:06:41.000Z'}}, {'blockNum': '0x81eccf', 'uniqueId': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8:log:127', 'hash': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9831.270473938357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214f44917be5a0bf12e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:06:41.000Z'}}, {'blockNum': '0x81ecd3', 'uniqueId': '0xf34d4df166c2a2dde63cc11cae94f24278f7d85f0dd3a7a6693dca017c08c8ed:log:152', 'hash': '0xf34d4df166c2a2dde63cc11cae94f24278f7d85f0dd3a7a6693dca017c08c8ed', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:09:30.000Z'}}, {'blockNum': '0x81ecd4', 'uniqueId': '0xc6fd3b15904009fffbdf507a6612f44715ca36ef032d92a9783dfbce329b885c:log:14', 'hash': '0xc6fd3b15904009fffbdf507a6612f44715ca36ef032d92a9783dfbce329b885c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xacda8e694f34fbc2e60465a0d1a034e6c3dcfa3d', 'value': 315.675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111cdee3fb6f6f8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:09:34.000Z'}}, {'blockNum': '0x81ecd5', 'uniqueId': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06:log:130', 'hash': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 936.7063226123735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32c7695d887cf7fd08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:24.000Z'}}, {'blockNum': '0x81ecd5', 'uniqueId': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06:log:134', 'hash': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 936.7063226123735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32c7695d887cf7fd08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:24.000Z'}}, {'blockNum': '0x81ecda', 'uniqueId': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9:log:59', 'hash': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.9264233728927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f2e895a774636834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:56.000Z'}}, {'blockNum': '0x81ecda', 'uniqueId': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9:log:63', 'hash': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.9264233728927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f2e895a774636834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:56.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:128', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:132', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:135', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf2', 'uniqueId': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1:log:20', 'hash': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1', 'from': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 391.0596300054491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15330ae591367bbf51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:57.000Z'}}, {'blockNum': '0x81ecf2', 'uniqueId': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1:log:24', 'hash': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 391.0596300054491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15330ae591367bbf51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:57.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a:log:33', 'hash': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9819.410416193594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02144fb1b40fddd13da0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a:log:36', 'hash': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9819.410416193594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02144fb1b40fddd13da0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea:log:63', 'hash': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea', 'from': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 737.691549957765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27fd86dc3aafe879c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea:log:67', 'hash': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 737.691549957765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27fd86dc3aafe879c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecfa', 'uniqueId': '0x99e64a271a19eb54786745029000746c35405090a580da5d7e45e695d0e78185:log:80', 'hash': '0x99e64a271a19eb54786745029000746c35405090a580da5d7e45e695d0e78185', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xa6822f11ea34866349e230a898ea2b340b083072', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:25.000Z'}}, {'blockNum': '0x81ecfb', 'uniqueId': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f:log:46', 'hash': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 477.92969873955326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e89b60d2d4879687', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:27.000Z'}}, {'blockNum': '0x81ecfb', 'uniqueId': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f:log:50', 'hash': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 477.92969873955326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e89b60d2d4879687', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:27.000Z'}}, {'blockNum': '0x81ecfc', 'uniqueId': '0x12fafb06540ffd40769cc20d95a0c8e163f805f8f842479203b007f9d6ed885c:log:24', 'hash': '0x12fafb06540ffd40769cc20d95a0c8e163f805f8f842479203b007f9d6ed885c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:55.000Z'}}, {'blockNum': '0x81ed01', 'uniqueId': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff:log:40', 'hash': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:06.000Z'}}, {'blockNum': '0x81ed01', 'uniqueId': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff:log:43', 'hash': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:06.000Z'}}, {'blockNum': '0x81ed03', 'uniqueId': '0x5ef8864dbbc3ba5b7f9b49323e5692bf0ccb1c3df2fb5377e065dcf71fbdbc02:log:35', 'hash': '0x5ef8864dbbc3ba5b7f9b49323e5692bf0ccb1c3df2fb5377e065dcf71fbdbc02', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:28.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:112', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0xa6822f11ea34866349e230a898ea2b340b083072', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:115', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:116', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:140', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:143', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:144', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed1d', 'uniqueId': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072:log:138', 'hash': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1636.6685539865766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58b956c268be22b8d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:26:29.000Z'}}, {'blockNum': '0x81ed1d', 'uniqueId': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072:log:142', 'hash': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1636.6685539865766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58b956c268be22b8d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:26:29.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb:log:56', 'hash': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 32.88291783211047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c857978c114d81fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb:log:60', 'hash': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 32.88291783211047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c857978c114d81fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7:log:79', 'hash': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14711.129415829846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031d7deeb4cb09c08a43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7:log:82', 'hash': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 14711.129415829846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031d7deeb4cb09c08a43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed24', 'uniqueId': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734:log:81', 'hash': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1449.5647854674376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e94c0a4425dedede3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:20.000Z'}}, {'blockNum': '0x81ed24', 'uniqueId': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734:log:85', 'hash': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1449.5647854674376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e94c0a4425dedede3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:20.000Z'}}, {'blockNum': '0x81ed26', 'uniqueId': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6:log:42', 'hash': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 348.58868193529906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e5a3c7517320ada1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:26.000Z'}}, {'blockNum': '0x81ed26', 'uniqueId': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6:log:46', 'hash': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 348.58868193529906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e5a3c7517320ada1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:26.000Z'}}, {'blockNum': '0x81ed27', 'uniqueId': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5:log:64', 'hash': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.03175409283572924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70d02ddfa36f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:29.000Z'}}, {'blockNum': '0x81ed27', 'uniqueId': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5:log:68', 'hash': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.03175409283572924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70d02ddfa36f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:29.000Z'}}, {'blockNum': '0x81ed2e', 'uniqueId': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5:log:82', 'hash': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 183.47907249292675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f2489c518b0b0cda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:41.000Z'}}, {'blockNum': '0x81ed2e', 'uniqueId': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5:log:86', 'hash': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 183.47907249292675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f2489c518b0b0cda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:41.000Z'}}, {'blockNum': '0x81ed2f', 'uniqueId': '0xd946c8a9cb6138f41cfc4710ea7812ec3787a74770c916ed6697c6925477191b:log:12', 'hash': '0xd946c8a9cb6138f41cfc4710ea7812ec3787a74770c916ed6697c6925477191b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:49.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf:log:25', 'hash': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf:log:28', 'hash': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b:log:107', 'hash': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.223298976447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af45c040462f8ea1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b:log:111', 'hash': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.223298976447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af45c040462f8ea1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e:log:30', 'hash': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 735.0526437332921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d8e794ffe6a34d1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e:log:34', 'hash': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 735.0526437332921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d8e794ffe6a34d1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c:log:63', 'hash': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 440.99769787922304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8128db7181f9659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c:log:67', 'hash': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 440.99769787922304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8128db7181f9659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed55', 'uniqueId': '0xc831303571c985d18f967fa05cfd1c23b53be539b428de3fff39f75543bb9213:log:52', 'hash': '0xc831303571c985d18f967fa05cfd1c23b53be539b428de3fff39f75543bb9213', 'from': '0xdfee8dc240c6cadc2c7f7f9c257c259914dea84e', 'to': '0xfee4ae2adfc648afde92a4087fd7b7c6980149ba', 'value': 13503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dbffc4ce0a339c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:36:29.000Z'}}, {'blockNum': '0x81ed56', 'uniqueId': '0x5ae0c2fbb25dc75c76a00b8d6267a52eb2d08f5818451286710d9d2a3b42f4f4:log:43', 'hash': '0x5ae0c2fbb25dc75c76a00b8d6267a52eb2d08f5818451286710d9d2a3b42f4f4', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xa6822f11ea34866349e230a898ea2b340b083072', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:37:09.000Z'}}, {'blockNum': '0x81ed97', 'uniqueId': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f:log:80', 'hash': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea0000d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:52:44.000Z'}}, {'blockNum': '0x81ed97', 'uniqueId': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f:log:83', 'hash': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea0000d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:52:44.000Z'}}, {'blockNum': '0x81ed9c', 'uniqueId': '0x729d6ebc68ec8da48e00652800b9431f59b6abf2884f096ab658aee36add5724:log:2', 'hash': '0x729d6ebc68ec8da48e00652800b9431f59b6abf2884f096ab658aee36add5724', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:53:26.000Z'}}, {'blockNum': '0x81ed9e', 'uniqueId': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224:log:69', 'hash': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:03.000Z'}}, {'blockNum': '0x81ed9e', 'uniqueId': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224:log:72', 'hash': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:03.000Z'}}, {'blockNum': '0x81eda2', 'uniqueId': '0x3a7e09cea9ebc23facf2084a55c41a839a2d8287802e81b3f0cb9e4f2528b541:log:5', 'hash': '0x3a7e09cea9ebc23facf2084a55c41a839a2d8287802e81b3f0cb9e4f2528b541', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x9b3d736cd160db8be8856e39f68fd0feaf1bde66', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:39.000Z'}}, {'blockNum': '0x81edaa', 'uniqueId': '0x99e73e760849a3257e56eef4da31d44f31d73ebc0045687ef1e4ac5ff339e19f:log:25', 'hash': '0x99e73e760849a3257e56eef4da31d44f31d73ebc0045687ef1e4ac5ff339e19f', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x9b3d736cd160db8be8856e39f68fd0feaf1bde66', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe664992288f2280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:56:17.000Z'}}, {'blockNum': '0x81edb2', 'uniqueId': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141:log:45', 'hash': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 947.3828872761264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x335b9424872973e431', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:06.000Z'}}, {'blockNum': '0x81edb2', 'uniqueId': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141:log:49', 'hash': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 947.3828872761264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x335b9424872973e431', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:06.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:82', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0xa6822f11ea34866349e230a898ea2b340b083072', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:85', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:87', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb7', 'uniqueId': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669:log:26', 'hash': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4b192ebd64f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:59.000Z'}}, {'blockNum': '0x81edb7', 'uniqueId': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669:log:29', 'hash': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4b192ebd64f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:59.000Z'}}, {'blockNum': '0x81edbf', 'uniqueId': '0x22f1e1e9cd70ae0f9bb026b1d66a61c9bb73154cbc6bba96276f0a1e04f6b20f:log:6', 'hash': '0x22f1e1e9cd70ae0f9bb026b1d66a61c9bb73154cbc6bba96276f0a1e04f6b20f', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x004cb6d46df49972ef099a578c1a8533564ed30e', 'value': 67.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a8c02c5ea2de0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:00:16.000Z'}}, {'blockNum': '0x81edc4', 'uniqueId': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40:log:33', 'hash': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 44.645253901784606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026b93cde20afe6673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:20.000Z'}}, {'blockNum': '0x81edc4', 'uniqueId': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40:log:38', 'hash': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 44.645253901784606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026b93cde20afe6673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:20.000Z'}}, {'blockNum': '0x81edc8', 'uniqueId': '0x5f07a9aff739022ddbece6bdf9d076b789425d849fd4f8f356e4e51b453546c7:log:44', 'hash': '0x5f07a9aff739022ddbece6bdf9d076b789425d849fd4f8f356e4e51b453546c7', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x001f7e88078e8fa2741422c6af6c5cd4465c0e5e', 'value': 62.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:51.000Z'}}, {'blockNum': '0x81edcb', 'uniqueId': '0xdbc404ba2c29a4b46687212d626b24e5aeb12fb8232cbc3572ecc7c5728142e1:log:2', 'hash': '0xdbc404ba2c29a4b46687212d626b24e5aeb12fb8232cbc3572ecc7c5728142e1', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0xb464ccaaddfb6a9a4345bd3b88c40a7633eaebed', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06c6b935b8bbd40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:02:54.000Z'}}, {'blockNum': '0x81edd3', 'uniqueId': '0x36ae0a59bd45bcd5d27a4d770fcdc4e8c80697b601f6fbbfb4190a53a6ecbef0:log:10', 'hash': '0x36ae0a59bd45bcd5d27a4d770fcdc4e8c80697b601f6fbbfb4190a53a6ecbef0', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0xce16cbe6722a90b015466cda8e55d540643b5ceb', 'value': 62.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:47.000Z'}}, {'blockNum': '0x81edd4', 'uniqueId': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10:log:7', 'hash': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.1647036954102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af38bd7eb63421b1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:49.000Z'}}, {'blockNum': '0x81edd4', 'uniqueId': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10:log:11', 'hash': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.1647036954102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af38bd7eb63421b1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:49.000Z'}}, {'blockNum': '0x81eddb', 'uniqueId': '0x93dc43792c38277458cc026c9c0085462a2ecf52f5548f265968af7166937afd:log:5', 'hash': '0x93dc43792c38277458cc026c9c0085462a2ecf52f5548f265968af7166937afd', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x008bc52f7ca763fdc7aa338506ffe9139c53988e', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:06:10.000Z'}}, {'blockNum': '0x81edde', 'uniqueId': '0xc1c570c66f69698a9e792260804bac66b3bd5e3c4b6e2f058762c9336673a639:log:40', 'hash': '0xc1c570c66f69698a9e792260804bac66b3bd5e3c4b6e2f058762c9336673a639', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x008bc52f7ca763fdc7aa338506ffe9139c53988e', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:07:10.000Z'}}, {'blockNum': '0x81ede1', 'uniqueId': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d:log:109', 'hash': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 734.9823858251938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d7edf9cdefc6722f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:08.000Z'}}, {'blockNum': '0x81ede1', 'uniqueId': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d:log:113', 'hash': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 734.9823858251938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d7edf9cdefc6722f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:08.000Z'}}, {'blockNum': '0x81ede5', 'uniqueId': '0x57e336b779f6b98628f8fa93bdb117ecad01ae7e3df27a5b91eff238f7fdacea:log:13', 'hash': '0x57e336b779f6b98628f8fa93bdb117ecad01ae7e3df27a5b91eff238f7fdacea', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x64d0f9deb341cc4fd242aeff362f43c8e4558bbb', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:53.000Z'}}, {'blockNum': '0x81edea', 'uniqueId': '0x623d99aa638bdf263773ad57f87012c0da7e9b81bb6e355e57b59705c99da366:log:30', 'hash': '0x623d99aa638bdf263773ad57f87012c0da7e9b81bb6e355e57b59705c99da366', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x00a3ecaf33491743183dc59e7ae02ae31ede3973', 'value': 57.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031df9095a18f60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:10:21.000Z'}}, {'blockNum': '0x81edf2', 'uniqueId': '0xd3c44e540e85c6563a87ead4398117926684844af998b32d83ea257723af5ce4:log:0', 'hash': '0xd3c44e540e85c6563a87ead4398117926684844af998b32d83ea257723af5ce4', 'from': '0x64d0f9deb341cc4fd242aeff362f43c8e4558bbb', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:11:52.000Z'}}, {'blockNum': '0x81ee1a', 'uniqueId': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5:log:164', 'hash': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.9490426675056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f68aa71df60661d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:07.000Z'}}, {'blockNum': '0x81ee1a', 'uniqueId': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5:log:168', 'hash': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.9490426675056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f68aa71df60661d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:07.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc:log:75', 'hash': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 434.07071084651045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1787f0f3b5af8d762c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc:log:79', 'hash': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 434.07071084651045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1787f0f3b5af8d762c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a:log:87', 'hash': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 506.93537573891496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b243e6035332651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a:log:91', 'hash': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 506.93537573891496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b243e6035332651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee:log:103', 'hash': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 48.993645524836275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a7ec65067f45ca80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee:log:107', 'hash': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 48.993645524836275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a7ec65067f45ca80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477:log:115', 'hash': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 507.609588876155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b847f87a6e94b79be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477:log:119', 'hash': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 507.609588876155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b847f87a6e94b79be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee20', 'uniqueId': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1:log:88', 'hash': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.95170163406084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f721cc2c45e908f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:31.000Z'}}, {'blockNum': '0x81ee20', 'uniqueId': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1:log:92', 'hash': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.95170163406084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f721cc2c45e908f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:31.000Z'}}, {'blockNum': '0x81ee23', 'uniqueId': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04:log:103', 'hash': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.9203345819562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f02ac97d6052937', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:20:21.000Z'}}, {'blockNum': '0x81ee23', 'uniqueId': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04:log:107', 'hash': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.9203345819562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f02ac97d6052937', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:20:21.000Z'}}, {'blockNum': '0x81ee2f', 'uniqueId': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd:log:29', 'hash': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 483.63161017710723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a37bca310e4ab1e49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:16.000Z'}}, {'blockNum': '0x81ee2f', 'uniqueId': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd:log:33', 'hash': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 483.63161017710723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a37bca310e4ab1e49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:16.000Z'}}, {'blockNum': '0x81ee31', 'uniqueId': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091:log:139', 'hash': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 903.8037693886702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30fecc03b38ec0d453', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:52.000Z'}}, {'blockNum': '0x81ee31', 'uniqueId': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091:log:143', 'hash': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 903.8037693886702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30fecc03b38ec0d453', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:52.000Z'}}, {'blockNum': '0x81ee32', 'uniqueId': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629:log:92', 'hash': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 253.99452209387957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc4e1d01faccc53db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:56.000Z'}}, {'blockNum': '0x81ee32', 'uniqueId': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629:log:96', 'hash': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.99452209387957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc4e1d01faccc53db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:56.000Z'}}, {'blockNum': '0x81ee42', 'uniqueId': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b:log:67', 'hash': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1481.708350154181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5052d58609b61114f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:26:30.000Z'}}, {'blockNum': '0x81ee42', 'uniqueId': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b:log:71', 'hash': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1481.708350154181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5052d58609b61114f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:26:30.000Z'}}, {'blockNum': '0x81ee48', 'uniqueId': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e:log:46', 'hash': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e', 'from': '0xbdc7310289dcd30d16e284d6f207a8e2f76a37ad', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 261.5974631351306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2e64e2b7f8ce30d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:17.000Z'}}, {'blockNum': '0x81ee48', 'uniqueId': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e:log:50', 'hash': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 261.5974631351306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2e64e2b7f8ce30d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:17.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:12', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:15', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:18', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4c', 'uniqueId': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd:log:47', 'hash': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2053.067362136741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4c08803f0cb6ef13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:07.000Z'}}, {'blockNum': '0x81ee4c', 'uniqueId': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd:log:50', 'hash': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 2053.067362136741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4c08803f0cb6ef13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:07.000Z'}}, {'blockNum': '0x81ee4d', 'uniqueId': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170:log:117', 'hash': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 138.03779534061343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077ba8c381b755a237', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:34.000Z'}}, {'blockNum': '0x81ee4d', 'uniqueId': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170:log:121', 'hash': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 138.03779534061343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077ba8c381b755a237', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:34.000Z'}}, {'blockNum': '0x81ee67', 'uniqueId': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe:log:81', 'hash': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 493.35985899750597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1abebe51d35f25e807', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:37:28.000Z'}}, {'blockNum': '0x81ee67', 'uniqueId': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe:log:85', 'hash': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 493.35985899750597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1abebe51d35f25e807', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:37:28.000Z'}}, {'blockNum': '0x81ee71', 'uniqueId': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb:log:37', 'hash': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20323.77853310784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044dc115ffde327db74f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:39:46.000Z'}}, {'blockNum': '0x81ee71', 'uniqueId': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb:log:40', 'hash': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 20323.77853310784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044dc115ffde327db74f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:39:46.000Z'}}, {'blockNum': '0x81ee7a', 'uniqueId': '0xef5942dcd9bc341238e8d459329d94ab185df11ae2b946a9731226f15957fe21:log:9', 'hash': '0xef5942dcd9bc341238e8d459329d94ab185df11ae2b946a9731226f15957fe21', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'value': 18000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfc82e37e9a7400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:41:08.000Z'}}, {'blockNum': '0x81ee82', 'uniqueId': '0xc24b4fa8d4b5eba2b7e92a84a51a790c4cb4ed80540fa19710976ea6bd128d96:log:94', 'hash': '0xc24b4fa8d4b5eba2b7e92a84a51a790c4cb4ed80540fa19710976ea6bd128d96', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xc884a85d8100c0705efd49d1639ef812620a0196', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:42:41.000Z'}}, {'blockNum': '0x81ee8a', 'uniqueId': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213:log:83', 'hash': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 38998.91747124235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084222b38ef97f4f6c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:34.000Z'}}, {'blockNum': '0x81ee8a', 'uniqueId': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213:log:86', 'hash': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 38998.91747124235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084222b38ef97f4f6c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:34.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9:log:150', 'hash': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1291.5194219423965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46036eb77e52634263', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9:log:154', 'hash': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1291.5194219423965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46036eb77e52634263', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc:log:168', 'hash': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1976.0918524094932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b1fc88dfbab7adaaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc:log:172', 'hash': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1976.0918524094932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b1fc88dfbab7adaaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7:log:190', 'hash': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 982.1276225808123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353dc23d33bc3a15ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7:log:194', 'hash': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.1276225808123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353dc23d33bc3a15ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d:log:211', 'hash': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1698.1385620928259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c0e681919877ea6d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d:log:215', 'hash': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1698.1385620928259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c0e681919877ea6d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8f', 'uniqueId': '0x4872db3f30dc576c8ea28742fdb3691a49213ade7a7343a5947b981d5f0b5f32:log:84', 'hash': '0x4872db3f30dc576c8ea28742fdb3691a49213ade7a7343a5947b981d5f0b5f32', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:24.000Z'}}, {'blockNum': '0x81ee94', 'uniqueId': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732:log:96', 'hash': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1380.1972811121757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad215c292ab31da54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:48.000Z'}}, {'blockNum': '0x81ee94', 'uniqueId': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732:log:101', 'hash': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1380.1972811121757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad215c292ab31da54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:48.000Z'}}, {'blockNum': '0x81ee97', 'uniqueId': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985:log:69', 'hash': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 522.5772596285237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c543760e62f3d762f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:14.000Z'}}, {'blockNum': '0x81ee97', 'uniqueId': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985:log:73', 'hash': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 522.5772596285237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c543760e62f3d762f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:14.000Z'}}, {'blockNum': '0x81ee99', 'uniqueId': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890:log:13', 'hash': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 495.1304499024967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad750b8df6da8dfd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:27.000Z'}}, {'blockNum': '0x81ee99', 'uniqueId': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890:log:17', 'hash': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 495.1304499024967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad750b8df6da8dfd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:27.000Z'}}, {'blockNum': '0x81ee9c', 'uniqueId': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42:log:51', 'hash': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 730.5116958242895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2799e2e4ef72fc87ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:54.000Z'}}, {'blockNum': '0x81ee9c', 'uniqueId': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42:log:55', 'hash': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 730.5116958242895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2799e2e4ef72fc87ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:54.000Z'}}, {'blockNum': '0x81ee9e', 'uniqueId': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a:log:35', 'hash': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.45508559572374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab22feb35dfb32574', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:04.000Z'}}, {'blockNum': '0x81ee9e', 'uniqueId': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a:log:39', 'hash': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.45508559572374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab22feb35dfb32574', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:04.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e:log:80', 'hash': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 111.95568203569857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0611b27ba5146505e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e:log:84', 'hash': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 111.95568203569857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0611b27ba5146505e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced:log:93', 'hash': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 475.9426495754124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19cd07f622f8ad8a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced:log:97', 'hash': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 475.9426495754124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19cd07f622f8ad8a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a:log:117', 'hash': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1119.8389520839369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb4e329c260bcb8d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a:log:121', 'hash': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1119.8389520839369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb4e329c260bcb8d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81eea1', 'uniqueId': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709:log:32', 'hash': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 904.6667699324896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310ac6021fa61512ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:30.000Z'}}, {'blockNum': '0x81eea1', 'uniqueId': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709:log:36', 'hash': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 904.6667699324896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310ac6021fa61512ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:30.000Z'}}, {'blockNum': '0x81eea3', 'uniqueId': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094:log:87', 'hash': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.943689258796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f325ece2c8630ba1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:58.000Z'}}, {'blockNum': '0x81eea3', 'uniqueId': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094:log:89', 'hash': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.943689258796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f325ece2c8630ba1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:58.000Z'}}, {'blockNum': '0x81eea4', 'uniqueId': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8:log:39', 'hash': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.5696245115934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52a1d8d5cd55a337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:13.000Z'}}, {'blockNum': '0x81eea4', 'uniqueId': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8:log:43', 'hash': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 485.5696245115934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52a1d8d5cd55a337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:13.000Z'}}, {'blockNum': '0x81eea5', 'uniqueId': '0x7612b5f5e33662b57b6505f688d3273d80dba7daf1d95a571c9c3890d00f4f8b:log:19', 'hash': '0x7612b5f5e33662b57b6505f688d3273d80dba7daf1d95a571c9c3890d00f4f8b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 2299.209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7ca3ef43c4c51a8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:17.000Z'}}, {'blockNum': '0x81eeaa', 'uniqueId': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2:log:19', 'hash': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.3644724783999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c41213490a9fef6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:53.000Z'}}, {'blockNum': '0x81eeaa', 'uniqueId': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2:log:23', 'hash': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.3644724783999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c41213490a9fef6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:53.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:37', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:40', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:41', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeaf', 'uniqueId': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197:log:24', 'hash': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.99123027889044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab9a0aff58c105b06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:36.000Z'}}, {'blockNum': '0x81eeaf', 'uniqueId': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197:log:28', 'hash': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.99123027889044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab9a0aff58c105b06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:36.000Z'}}, {'blockNum': '0x81eeb0', 'uniqueId': '0x94c6c77d093b66fca19a45cd0d2d559b73b31a760702581231071cfb7537fad7:log:5', 'hash': '0x94c6c77d093b66fca19a45cd0d2d559b73b31a760702581231071cfb7537fad7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:51.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:95', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:98', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:99', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c:log:112', 'hash': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.8925099380834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a64fdae1f21cec921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c:log:116', 'hash': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.8925099380834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a64fdae1f21cec921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb:log:177', 'hash': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.14772288956777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c3af46b0131be54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb:log:181', 'hash': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 244.14772288956777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c3af46b0131be54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb7', 'uniqueId': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e:log:21', 'hash': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.1399365463213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c1f4ac7b1e37bfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:45.000Z'}}, {'blockNum': '0x81eeb7', 'uniqueId': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e:log:25', 'hash': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 244.1399365463213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c1f4ac7b1e37bfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:45.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164:log:136', 'hash': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 763.8796959473787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2968f5d8418ce66e29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164:log:140', 'hash': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 763.8796959473787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2968f5d8418ce66e29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1:log:150', 'hash': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 394.811877149515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15671d8e76ea01807d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1:log:154', 'hash': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 394.811877149515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15671d8e76ea01807d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec2', 'uniqueId': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d:log:71', 'hash': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.43606708847295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa40ba346ef779049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:17.000Z'}}, {'blockNum': '0x81eec2', 'uniqueId': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d:log:75', 'hash': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.43606708847295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa40ba346ef779049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:17.000Z'}}, {'blockNum': '0x81eeca', 'uniqueId': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41:log:22', 'hash': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.8290568815831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2852b3aa4230966612', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:58:47.000Z'}}, {'blockNum': '0x81eeca', 'uniqueId': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41:log:26', 'hash': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.8290568815831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2852b3aa4230966612', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:58:47.000Z'}}, {'blockNum': '0x81eecb', 'uniqueId': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243:log:152', 'hash': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.61714087938356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a612b5f6bf3df07eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:02.000Z'}}, {'blockNum': '0x81eecb', 'uniqueId': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243:log:154', 'hash': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.61714087938356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a612b5f6bf3df07eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:02.000Z'}}, {'blockNum': '0x81eecf', 'uniqueId': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a:log:58', 'hash': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 293.12678653349315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fe3f38b4cc89d24e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:38.000Z'}}, {'blockNum': '0x81eecf', 'uniqueId': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a:log:62', 'hash': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 293.12678653349315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fe3f38b4cc89d24e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:38.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x5c336bffd1fde9f7368e55b7d2cac8f11ebc5987350b772e1b94fc0191bc73ad:log:3', 'hash': '0x5c336bffd1fde9f7368e55b7d2cac8f11ebc5987350b772e1b94fc0191bc73ad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 21100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0477d5529f68a6300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e:log:54', 'hash': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.44983918854217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17ee58e1d72a5f25d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e:log:58', 'hash': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 441.44983918854217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17ee58e1d72a5f25d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0x4156f46b97631505ebd2467e6549f37790127ba487150d11ab2f996cc84104fd:log:6', 'hash': '0x4156f46b97631505ebd2467e6549f37790127ba487150d11ab2f996cc84104fd', 'from': '0x0e17fdee2528ee4b6c076fd5fe725b05a6d0566a', 'to': '0x3ab23200bba977271f7ff0bc301c09671916b0aa', 'value': 134.8172234408092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ef6fe6d59e5c953', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64:log:34', 'hash': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 384.70177310071824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14dacf4065d33c8f93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64:log:38', 'hash': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 384.70177310071824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14dacf4065d33c8f93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7:log:121', 'hash': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.48234357272116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5f4c79fc4795010b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7:log:125', 'hash': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.48234357272116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5f4c79fc4795010b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b:log:136', 'hash': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.731196206868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a436ef1e0e2b781', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b:log:140', 'hash': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.731196206868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a436ef1e0e2b781', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eee0', 'uniqueId': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278:log:101', 'hash': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1270.3856059645502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44de2451d55660edfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:31.000Z'}}, {'blockNum': '0x81eee0', 'uniqueId': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278:log:105', 'hash': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 1270.3856059645502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44de2451d55660edfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:31.000Z'}}, {'blockNum': '0x81eee6', 'uniqueId': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6:log:89', 'hash': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.323224352254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a78d8994d117b346b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:04:25.000Z'}}, {'blockNum': '0x81eee6', 'uniqueId': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6:log:93', 'hash': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 488.323224352254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a78d8994d117b346b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:04:25.000Z'}}, {'blockNum': '0x81eef2', 'uniqueId': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf:log:63', 'hash': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 496.20794907736763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae644c4a9d99e4ff3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:06:52.000Z'}}, {'blockNum': '0x81eef2', 'uniqueId': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf:log:67', 'hash': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 496.20794907736763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae644c4a9d99e4ff3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:06:52.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c:log:54', 'hash': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.9005244640418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9c9d0218fc29f6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c:log:58', 'hash': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.9005244640418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9c9d0218fc29f6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e:log:70', 'hash': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9767.036235772322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021178db3c7589b61301', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e:log:73', 'hash': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9767.036235772322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021178db3c7589b61301', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefd', 'uniqueId': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15:log:73', 'hash': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 480.86758967215883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1160dd0fa753571b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:21.000Z'}}, {'blockNum': '0x81eefd', 'uniqueId': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15:log:77', 'hash': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 480.86758967215883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1160dd0fa753571b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:21.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5:log:73', 'hash': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1235.1249345028996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f4cd3ff540f28ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5:log:77', 'hash': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1235.1249345028996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f4cd3ff540f28ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c:log:87', 'hash': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 450.7146472716078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186eec17b479aaeb74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c:log:91', 'hash': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 450.7146472716078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186eec17b479aaeb74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d:log:103', 'hash': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 439.3480990942714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d12e005c392adc59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d:log:107', 'hash': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 439.3480990942714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d12e005c392adc59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef07', 'uniqueId': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f:log:121', 'hash': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 393.25048573759494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155172613f7b2a0e23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:11:42.000Z'}}, {'blockNum': '0x81ef07', 'uniqueId': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f:log:125', 'hash': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 393.25048573759494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155172613f7b2a0e23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:11:42.000Z'}}, {'blockNum': '0x81ef0c', 'uniqueId': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7:log:100', 'hash': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 185.50448920380168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a0e64561600e23c81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:42.000Z'}}, {'blockNum': '0x81ef0c', 'uniqueId': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7:log:104', 'hash': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 185.50448920380168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a0e64561600e23c81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:42.000Z'}}, {'blockNum': '0x81ef0d', 'uniqueId': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c:log:67', 'hash': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 732.2106743705912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27b176e0ebf04d36c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:50.000Z'}}, {'blockNum': '0x81ef0d', 'uniqueId': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c:log:71', 'hash': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 732.2106743705912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27b176e0ebf04d36c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:50.000Z'}}, {'blockNum': '0x81ef17', 'uniqueId': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8:log:149', 'hash': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8', 'from': '0x5142127a6703f5fc80bf11b7b57ff68998f218e4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 232.3813512926134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c98f067ca9d7bc76f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:16:24.000Z'}}, {'blockNum': '0x81ef17', 'uniqueId': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8:log:153', 'hash': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 232.3813512926134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c98f067ca9d7bc76f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:16:24.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f:log:132', 'hash': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 917.6330186337935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31beb7609e8caad579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f:log:136', 'hash': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 917.6330186337935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31beb7609e8caad579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b:log:146', 'hash': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.2301895173384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a4debee819c6cb830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b:log:150', 'hash': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 485.2301895173384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a4debee819c6cb830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37:log:163', 'hash': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1376.3305540134118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a9c6c62c36dfcc3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37:log:167', 'hash': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 1376.3305540134118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a9c6c62c36dfcc3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706:log:133', 'hash': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 938.2240520427426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc796c68a747f041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706:log:137', 'hash': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 938.2240520427426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc796c68a747f041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb:log:149', 'hash': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 585.6693043804041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fbfcb5953341e4d1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb:log:153', 'hash': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 585.6693043804041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fbfcb5953341e4d1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b:log:162', 'hash': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 114.33484541115729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0632b6f821253b26d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b:log:166', 'hash': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.33484541115729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0632b6f821253b26d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef33', 'uniqueId': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31:log:31', 'hash': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.7928253064561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa8ff18fc750deda5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:11.000Z'}}, {'blockNum': '0x81ef33', 'uniqueId': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31:log:35', 'hash': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.7928253064561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa8ff18fc750deda5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:11.000Z'}}, {'blockNum': '0x81ef35', 'uniqueId': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0:log:50', 'hash': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1226.0258483417433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x427686cd4db08b1e02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:29.000Z'}}, {'blockNum': '0x81ef35', 'uniqueId': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0:log:54', 'hash': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1226.0258483417433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x427686cd4db08b1e02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:29.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:70', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:73', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:76', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9:log:32', 'hash': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.09874860341566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb8705ca5bafd7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9:log:36', 'hash': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.09874860341566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb8705ca5bafd7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:46', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:49', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:50', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45:log:63', 'hash': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.52918318646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af89abc15e3b9f810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45:log:67', 'hash': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.52918318646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af89abc15e3b9f810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef41', 'uniqueId': '0xe180cfcb2766f5959548e5ed6a68f5020ceac6f4112cc3cbce6d5d42c02a32b6:log:5', 'hash': '0xe180cfcb2766f5959548e5ed6a68f5020ceac6f4112cc3cbce6d5d42c02a32b6', 'from': '0xc884a85d8100c0705efd49d1639ef812620a0196', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:59.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3:log:45', 'hash': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1159.5070945793111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3edb64b730211993e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3:log:49', 'hash': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1159.5070945793111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3edb64b730211993e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7:log:166', 'hash': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 475.1006099727449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c1586f944cde75c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7:log:170', 'hash': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 475.1006099727449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c1586f944cde75c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:151', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:154', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:157', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef48', 'uniqueId': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3:log:71', 'hash': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.787261895144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7f4930fcdbe29b62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:29.000Z'}}, {'blockNum': '0x81ef48', 'uniqueId': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3:log:74', 'hash': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x14bafc009cc698da196927871e2ce54dc23c25f3', 'value': 488.787261895144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7f4930fcdbe29b62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:29.000Z'}}, {'blockNum': '0x81ef4a', 'uniqueId': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e:log:40', 'hash': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.9981734426174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f3e77df65ef060ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:59.000Z'}}, {'blockNum': '0x81ef4a', 'uniqueId': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e:log:44', 'hash': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.9981734426174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f3e77df65ef060ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:59.000Z'}}, {'blockNum': '0x81ef4c', 'uniqueId': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b:log:150', 'hash': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.20370421358193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069feac584ef7532ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:29:33.000Z'}}, {'blockNum': '0x81ef4c', 'uniqueId': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b:log:154', 'hash': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 122.20370421358193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069feac584ef7532ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:29:33.000Z'}}, {'blockNum': '0x81ef55', 'uniqueId': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70:log:106', 'hash': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 426.0836021448373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1719190aa9bde4dc2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:30:31.000Z'}}, {'blockNum': '0x81ef55', 'uniqueId': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70:log:110', 'hash': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 426.0836021448373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1719190aa9bde4dc2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:30:31.000Z'}}, {'blockNum': '0x81ef59', 'uniqueId': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200:log:56', 'hash': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 793.1444928424017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2aff1749fb04b4bdd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:31:22.000Z'}}, {'blockNum': '0x81ef59', 'uniqueId': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200:log:60', 'hash': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 793.1444928424017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2aff1749fb04b4bdd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:31:22.000Z'}}, {'blockNum': '0x81ef5b', 'uniqueId': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783:log:140', 'hash': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 461.0082373649752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fdc6455b6c4ebf04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:32:39.000Z'}}, {'blockNum': '0x81ef5b', 'uniqueId': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783:log:144', 'hash': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 461.0082373649752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fdc6455b6c4ebf04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:32:39.000Z'}}, {'blockNum': '0x81ef5c', 'uniqueId': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba:log:64', 'hash': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.8496532869458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1febee37ce28566e40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:10.000Z'}}, {'blockNum': '0x81ef5c', 'uniqueId': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba:log:68', 'hash': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 588.8496532869458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1febee37ce28566e40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:10.000Z'}}, {'blockNum': '0x81ef5e', 'uniqueId': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801:log:26', 'hash': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 405.4023939379966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fa16a15f6742a6bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:32.000Z'}}, {'blockNum': '0x81ef5e', 'uniqueId': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801:log:30', 'hash': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.4023939379966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fa16a15f6742a6bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:32.000Z'}}, {'blockNum': '0x81ef9c', 'uniqueId': '0xb3cf5bdb9a13b9fa6874d0461e7bb0467a5532cbe028b4242c42b27ecdd0354e:log:7', 'hash': '0xb3cf5bdb9a13b9fa6874d0461e7bb0467a5532cbe028b4242c42b27ecdd0354e', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xdddeadf2f83ea85abd1807d396d06566a3dd2838', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:50:24.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e:log:137', 'hash': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 391.12827945415773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1533fec9e08ac91ad0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e:log:141', 'hash': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 391.12827945415773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1533fec9e08ac91ad0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17:log:151', 'hash': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 681.1644193011612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ed0e266400f1b551', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17:log:155', 'hash': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 681.1644193011612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ed0e266400f1b551', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3:log:170', 'hash': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 876.4579352317572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f834c186b8d36f207', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3:log:174', 'hash': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 876.4579352317572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f834c186b8d36f207', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa7', 'uniqueId': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef:log:28', 'hash': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 748.0510061449074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288d4b0abea4c1efb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:17.000Z'}}, {'blockNum': '0x81efa7', 'uniqueId': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef:log:32', 'hash': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.0510061449074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288d4b0abea4c1efb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:17.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:117', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0xdddeadf2f83ea85abd1807d396d06566a3dd2838', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:120', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:121', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efb7', 'uniqueId': '0xa4581c087ffd16f474bd5f95947b3606a3c4e4cd23de7a55c8eadb047b63afe1:log:8', 'hash': '0xa4581c087ffd16f474bd5f95947b3606a3c4e4cd23de7a55c8eadb047b63afe1', 'from': '0x57886276c3fb7fe85bc74798b2afaaa22d4eb1a3', 'to': '0x576768569cfc4b5d5423837a600f5ca689a7e554', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:55:28.000Z'}}, {'blockNum': '0x81efc6', 'uniqueId': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969:log:77', 'hash': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 133.21380416683778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0738b68117bed15316', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:11.000Z'}}, {'blockNum': '0x81efc6', 'uniqueId': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969:log:81', 'hash': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 133.21380416683778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0738b68117bed15316', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:11.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88:log:39', 'hash': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 900.2602523018567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cd9ee9af6fb42c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88:log:43', 'hash': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 900.2602523018567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cd9ee9af6fb42c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c:log:54', 'hash': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3412.5730496355036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8fef6f40e7baa3816', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c:log:58', 'hash': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 3412.5730496355036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8fef6f40e7baa3816', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c:log:163', 'hash': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 384.0756707644447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d21ee3a3e09bed5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c:log:167', 'hash': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 384.0756707644447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d21ee3a3e09bed5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efca', 'uniqueId': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861:log:72', 'hash': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 955.4721885873464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33cbd71d3629d336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:57.000Z'}}, {'blockNum': '0x81efca', 'uniqueId': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861:log:76', 'hash': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 955.4721885873464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33cbd71d3629d336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:57.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0:log:64', 'hash': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 684.7267521249931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x251e7e1938492a6cb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0:log:68', 'hash': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 684.7267521249931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x251e7e1938492a6cb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7:log:96', 'hash': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.45991059928932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4090117c66637d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7:log:100', 'hash': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 244.45991059928932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4090117c66637d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efd7', 'uniqueId': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1:log:17', 'hash': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.89640011795956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a80cced9f8638f076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:01:20.000Z'}}, {'blockNum': '0x81efd7', 'uniqueId': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1:log:21', 'hash': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 488.89640011795956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a80cced9f8638f076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:01:20.000Z'}}, {'blockNum': '0x81effb', 'uniqueId': '0x58d3ce1f16a3e17d9472d563dd15be704d62692833b8f3a7a7c94b59b61af073:log:52', 'hash': '0x58d3ce1f16a3e17d9472d563dd15be704d62692833b8f3a7a7c94b59b61af073', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 1059.169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396aec31c839b68000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:10:49.000Z'}}, {'blockNum': '0x81effc', 'uniqueId': '0xa7259f8ff191699f6e2a3e019496df8faf99c45c3aab8949f648ee186498ff98:log:121', 'hash': '0xa7259f8ff191699f6e2a3e019496df8faf99c45c3aab8949f648ee186498ff98', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 1059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396893c92d72ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:11:12.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:52', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:55', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:58', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f01b', 'uniqueId': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341:log:67', 'hash': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 797.2250785257891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b37b8710a2a8e23db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:17:14.000Z'}}, {'blockNum': '0x81f01b', 'uniqueId': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341:log:71', 'hash': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 797.2250785257891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b37b8710a2a8e23db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:17:14.000Z'}}, {'blockNum': '0x81f020', 'uniqueId': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac:log:51', 'hash': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1466.6527021226566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f81e51debe7bdb346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:18:31.000Z'}}, {'blockNum': '0x81f020', 'uniqueId': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac:log:55', 'hash': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 1466.6527021226566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f81e51debe7bdb346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:18:31.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:134', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:137', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:140', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0x9ec97a85797b8c24e1ec2a536974fbf73e19ace71b9552b38660c82cb4b12ea6:log:166', 'hash': '0x9ec97a85797b8c24e1ec2a536974fbf73e19ace71b9552b38660c82cb4b12ea6', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396893c92d72ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f02a', 'uniqueId': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9:log:25', 'hash': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24402.15618560535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052ad7f212a4bfef4d24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:32.000Z'}}, {'blockNum': '0x81f02a', 'uniqueId': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9:log:28', 'hash': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 24402.15618560535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052ad7f212a4bfef4d24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:32.000Z'}}, {'blockNum': '0x81f030', 'uniqueId': '0x82d38d91c5ba332ca0e33bc9210a6e7943d3c33ad215ee9d84896d1be81789f6:log:56', 'hash': '0x82d38d91c5ba332ca0e33bc9210a6e7943d3c33ad215ee9d84896d1be81789f6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa3248bf19f3ac2efb40dccbbd71404d2f5ae7a53', 'value': 116.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065701dd5f51ef0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:29.000Z'}}, {'blockNum': '0x81f031', 'uniqueId': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474:log:116', 'hash': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 447.19540726692753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183e153d91035a9c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:41.000Z'}}, {'blockNum': '0x81f031', 'uniqueId': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474:log:120', 'hash': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.19540726692753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183e153d91035a9c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:41.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:50', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:53', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:56', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6:log:66', 'hash': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 500.533061134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b224aa729e8d82ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6:log:70', 'hash': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500.533061134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b224aa729e8d82ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f03d', 'uniqueId': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033:log:64', 'hash': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 389.8500464133615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15224197b2e9f5ce3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:25:44.000Z'}}, {'blockNum': '0x81f03d', 'uniqueId': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033:log:68', 'hash': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 389.8500464133615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15224197b2e9f5ce3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:25:44.000Z'}}, {'blockNum': '0x81f03e', 'uniqueId': '0x2b85d94368ee6a1018c5483afc455c413309dc852ebd5d7acb3acecfcfe14162:log:15', 'hash': '0x2b85d94368ee6a1018c5483afc455c413309dc852ebd5d7acb3acecfcfe14162', 'from': '0xa3248bf19f3ac2efb40dccbbd71404d2f5ae7a53', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 116.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065701dd5f51ef0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:05.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:180', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:183', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:186', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f043', 'uniqueId': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85:log:145', 'hash': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85', 'from': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1080.5608352325194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a93cb429659b5ca7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:46.000Z'}}, {'blockNum': '0x81f043', 'uniqueId': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85:log:149', 'hash': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1080.5608352325194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a93cb429659b5ca7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:46.000Z'}}, {'blockNum': '0x81f04f', 'uniqueId': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30:log:102', 'hash': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 262.39527902062224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e39774c0a1bb25bd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:29:36.000Z'}}, {'blockNum': '0x81f04f', 'uniqueId': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30:log:106', 'hash': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 262.39527902062224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e39774c0a1bb25bd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:29:36.000Z'}}, {'blockNum': '0x81f053', 'uniqueId': '0x40841e9e3f7ac2df13d70ecdb79019458e87ce4c74e8e5c57ae1a6970f312d96:log:142', 'hash': '0x40841e9e3f7ac2df13d70ecdb79019458e87ce4c74e8e5c57ae1a6970f312d96', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x7fd8a3e656c90a0e3cd703e4ba46aa4c9d9e84fb', 'value': 341.5028015726495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12834dacabc27bcaf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:02.000Z'}}, {'blockNum': '0x81f054', 'uniqueId': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d:log:102', 'hash': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 609.2000445136018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21065954ce116421fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:11.000Z'}}, {'blockNum': '0x81f054', 'uniqueId': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d:log:106', 'hash': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 609.2000445136018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21065954ce116421fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:11.000Z'}}, {'blockNum': '0x81f061', 'uniqueId': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19:log:21', 'hash': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 254.85581796066703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0d5c026b72d146a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:31:48.000Z'}}, {'blockNum': '0x81f061', 'uniqueId': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19:log:25', 'hash': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 254.85581796066703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0d5c026b72d146a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:31:48.000Z'}}, {'blockNum': '0x81f063', 'uniqueId': '0x5cb4961bd16f6a04ce48016b8e3e464117da53a8d6fba548334268a72c1b7c12:log:10', 'hash': '0x5cb4961bd16f6a04ce48016b8e3e464117da53a8d6fba548334268a72c1b7c12', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdd4c592dd07d4e9f56a4f50f36771d23b9a6d04c', 'value': 11.88546544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4f1a7d88561c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:32:25.000Z'}}, {'blockNum': '0x81f071', 'uniqueId': '0xe40a6d8d1c74bc701d7c39566ab19e8c5dcda689a5a9cd16a411b8cce7fcea80:log:49', 'hash': '0xe40a6d8d1c74bc701d7c39566ab19e8c5dcda689a5a9cd16a411b8cce7fcea80', 'from': '0xdd4c592dd07d4e9f56a4f50f36771d23b9a6d04c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 11.88546544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4f1a7d88561c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:34:28.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:160', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:163', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:166', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f0b8', 'uniqueId': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e:log:6', 'hash': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 606.6913677442114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20e388b893219b1c7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:35.000Z'}}, {'blockNum': '0x81f0b8', 'uniqueId': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e:log:10', 'hash': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 606.6913677442114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20e388b893219b1c7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:35.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:86', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0xa523b5195ba2f859607785e34d9607558413e72b', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:89', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:91', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0c7', 'uniqueId': '0x64211088fb6e06457de677d2f96994ad70f3f92051c49e73bef5dcee2b5be097:log:99', 'hash': '0x64211088fb6e06457de677d2f96994ad70f3f92051c49e73bef5dcee2b5be097', 'from': '0x80bac595727e9bb690d2b2354450e176f44903eb', 'to': '0x466611822da9e4f52d6ddd7af277b58d8195d5f9', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:53:32.000Z'}}, {'blockNum': '0x81f0cf', 'uniqueId': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4:log:54', 'hash': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1351.7103732575401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4946bfeecf2a5ae899', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:56:31.000Z'}}, {'blockNum': '0x81f0cf', 'uniqueId': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4:log:58', 'hash': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1351.7103732575401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4946bfeecf2a5ae899', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:56:31.000Z'}}, {'blockNum': '0x81f0d7', 'uniqueId': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434:log:55', 'hash': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 469.7743436537185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19776dbc94f82c0c6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:06.000Z'}}, {'blockNum': '0x81f0d7', 'uniqueId': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434:log:59', 'hash': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 469.7743436537185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19776dbc94f82c0c6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:06.000Z'}}, {'blockNum': '0x81f0d9', 'uniqueId': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f:log:75', 'hash': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.3071829693401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6abee50be7cc7cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:27.000Z'}}, {'blockNum': '0x81f0d9', 'uniqueId': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f:log:79', 'hash': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 487.3071829693401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6abee50be7cc7cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:27.000Z'}}, {'blockNum': '0x81f0dd', 'uniqueId': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f:log:234', 'hash': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f', 'from': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 242.72416135686487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d287972bf1086c307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:22.000Z'}}, {'blockNum': '0x81f0dd', 'uniqueId': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f:log:238', 'hash': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 242.72416135686487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d287972bf1086c307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:22.000Z'}}, {'blockNum': '0x81f0e0', 'uniqueId': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f:log:38', 'hash': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 390.7022173109214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152e151c9d7ef212b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:47.000Z'}}, {'blockNum': '0x81f0e0', 'uniqueId': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f:log:42', 'hash': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 390.7022173109214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152e151c9d7ef212b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:47.000Z'}}, {'blockNum': '0x81f0e2', 'uniqueId': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa:log:47', 'hash': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa', 'from': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.2613156346276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27e9ada5b0a7bd098e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:00.000Z'}}, {'blockNum': '0x81f0e2', 'uniqueId': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa:log:51', 'hash': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.2613156346276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27e9ada5b0a7bd098e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:00.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445:log:33', 'hash': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445', 'from': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4349.390875443627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xebc7ec7527cea6f414', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445:log:37', 'hash': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4349.390875443627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xebc7ec7527cea6f414', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507:log:54', 'hash': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1219.287340947652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x421902d087db647655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507:log:58', 'hash': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'value': 1219.287340947652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x421902d087db647655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba:log:102', 'hash': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1046.5632184542094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38bbfb764128b0fbaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba:log:106', 'hash': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1046.5632184542094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38bbfb764128b0fbaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:158', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0x41f57a9c25d6f9607b85fac6fe778c265d8575f6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:161', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:162', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0f5', 'uniqueId': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b:log:113', 'hash': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14.145635756547637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc44f64c617160344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:07:51.000Z'}}, {'blockNum': '0x81f0f5', 'uniqueId': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b:log:117', 'hash': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 14.145635756547637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc44f64c617160344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:07:51.000Z'}}, {'blockNum': '0x81f0fb', 'uniqueId': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e:log:50', 'hash': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1930.7827775313965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68aafe627070f3da53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:08:30.000Z'}}, {'blockNum': '0x81f0fb', 'uniqueId': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e:log:55', 'hash': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 1930.7827775313965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68aafe627070f3da53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:08:30.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3:log:33', 'hash': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1480.0618854219433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x503bfc1b1659d4a336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3:log:37', 'hash': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1480.0618854219433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x503bfc1b1659d4a336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e:log:49', 'hash': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.85885346195505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7266d26fc92e2feb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e:log:53', 'hash': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 487.85885346195505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7266d26fc92e2feb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88:log:65', 'hash': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 253.6456807507306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc00a7ac5376f1b1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88:log:69', 'hash': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.6456807507306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc00a7ac5376f1b1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f10b', 'uniqueId': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf:log:166', 'hash': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 531.0166204283288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cc95602d53af93a59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:11:19.000Z'}}, {'blockNum': '0x81f10b', 'uniqueId': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf:log:170', 'hash': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 531.0166204283288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cc95602d53af93a59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:11:19.000Z'}}, {'blockNum': '0x81f117', 'uniqueId': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c:log:136', 'hash': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c', 'from': '0x466611822da9e4f52d6ddd7af277b58d8195d5f9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1f0a87470e840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:21.000Z'}}, {'blockNum': '0x81f117', 'uniqueId': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c:log:139', 'hash': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1f0a87470e840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:21.000Z'}}, {'blockNum': '0x81f11a', 'uniqueId': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f:log:35', 'hash': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:37.000Z'}}, {'blockNum': '0x81f11a', 'uniqueId': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f:log:38', 'hash': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:37.000Z'}}, {'blockNum': '0x81f11d', 'uniqueId': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0:log:80', 'hash': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.675411405449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a997d3ef6a8710070', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:14:23.000Z'}}, {'blockNum': '0x81f11d', 'uniqueId': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0:log:84', 'hash': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.675411405449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a997d3ef6a8710070', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:14:23.000Z'}}, {'blockNum': '0x81f11f', 'uniqueId': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59:log:91', 'hash': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 355.44611119427555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1344ce42e5a0ca8eef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:15:02.000Z'}}, {'blockNum': '0x81f11f', 'uniqueId': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59:log:95', 'hash': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 355.44611119427555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1344ce42e5a0ca8eef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:15:02.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba:log:13', 'hash': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 942.8684335334889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331ced94c4849d155a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba:log:17', 'hash': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 942.8684335334889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331ced94c4849d155a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1:log:28', 'hash': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 688.432827209895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2551ecb8dfbbaa1d1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1:log:32', 'hash': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 688.432827209895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2551ecb8dfbbaa1d1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13c', 'uniqueId': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05:log:98', 'hash': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1128.6318335956482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d2ee9c0e852644be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:37.000Z'}}, {'blockNum': '0x81f13c', 'uniqueId': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05:log:102', 'hash': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1128.6318335956482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d2ee9c0e852644be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:37.000Z'}}, {'blockNum': '0x81f13d', 'uniqueId': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4:log:48', 'hash': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 703.2884980511309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262016aacb9ba7b8f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:48.000Z'}}, {'blockNum': '0x81f13d', 'uniqueId': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4:log:52', 'hash': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 703.2884980511309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262016aacb9ba7b8f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:48.000Z'}}, {'blockNum': '0x81f148', 'uniqueId': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a:log:70', 'hash': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.56843490547163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12add8fdf1d8f187cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:24:06.000Z'}}, {'blockNum': '0x81f148', 'uniqueId': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a:log:74', 'hash': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 344.56843490547163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12add8fdf1d8f187cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:24:06.000Z'}}, {'blockNum': '0x81f154', 'uniqueId': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076:log:58', 'hash': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 152.8234229759484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0848d9dd80e0ac9c9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:27:15.000Z'}}, {'blockNum': '0x81f154', 'uniqueId': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076:log:63', 'hash': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'value': 152.8234229759484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0848d9dd80e0ac9c9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:27:15.000Z'}}, {'blockNum': '0x81f187', 'uniqueId': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447:log:47', 'hash': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.877216763220558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43af5ace385780b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:37:34.000Z'}}, {'blockNum': '0x81f187', 'uniqueId': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447:log:51', 'hash': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 4.877216763220558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43af5ace385780b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:37:34.000Z'}}, {'blockNum': '0x81f18f', 'uniqueId': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4:log:69', 'hash': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 987.8334598444121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x358cf171f66748cdea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:38:57.000Z'}}, {'blockNum': '0x81f18f', 'uniqueId': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4:log:73', 'hash': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 987.8334598444121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x358cf171f66748cdea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:38:57.000Z'}}, {'blockNum': '0x81f197', 'uniqueId': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6:log:24', 'hash': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 509.9673240823878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba537e3548b3b4c06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:40:11.000Z'}}, {'blockNum': '0x81f197', 'uniqueId': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6:log:28', 'hash': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 509.9673240823878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba537e3548b3b4c06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:40:11.000Z'}}, {'blockNum': '0x81f19d', 'uniqueId': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863:log:82', 'hash': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.326818890226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356a28114ba1939344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:41:36.000Z'}}, {'blockNum': '0x81f19d', 'uniqueId': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863:log:86', 'hash': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 985.326818890226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356a28114ba1939344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:41:36.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:107', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:110', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:111', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2:log:28', 'hash': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.880647972545573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bb8b78e54f3056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2:log:32', 'hash': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 4.880647972545573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bb8b78e54f3056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739:log:56', 'hash': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1342.5746007406688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48c7f7261bc974bf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739:log:60', 'hash': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1342.5746007406688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48c7f7261bc974bf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a8', 'uniqueId': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720:log:233', 'hash': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 118.63782262552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x066e6e371b9818af10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:09.000Z'}}, {'blockNum': '0x81f1a8', 'uniqueId': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720:log:235', 'hash': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x10b4a87cc41ab72ec0955786c7645e32dcf56049', 'value': 118.63782262552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x066e6e371b9818af10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:09.000Z'}}, {'blockNum': '0x81f1ac', 'uniqueId': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989:log:74', 'hash': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1361.4636767680593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ce1aa0ad4569bda2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:43.000Z'}}, {'blockNum': '0x81f1ac', 'uniqueId': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989:log:79', 'hash': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1361.4636767680593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ce1aa0ad4569bda2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:43.000Z'}}, {'blockNum': '0x81f1ba', 'uniqueId': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0:log:37', 'hash': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 976.2382344746645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ec06edec40e108fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:47:46.000Z'}}, {'blockNum': '0x81f1ba', 'uniqueId': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0:log:40', 'hash': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xefd0199657b444856e3259ed8e3c39ee43cf51dc', 'value': 976.2382344746645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ec06edec40e108fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:47:46.000Z'}}, {'blockNum': '0x81f1bc', 'uniqueId': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb:log:131', 'hash': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 116.16406189296919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064c19a6d3fceb4bf8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:48:13.000Z'}}, {'blockNum': '0x81f1bc', 'uniqueId': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb:log:135', 'hash': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 116.16406189296919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064c19a6d3fceb4bf8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:48:13.000Z'}}, {'blockNum': '0x81f1c2', 'uniqueId': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007:log:181', 'hash': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.4517991923932345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22068a601330385d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:08.000Z'}}, {'blockNum': '0x81f1c2', 'uniqueId': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007:log:185', 'hash': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.4517991923932345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22068a601330385d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:08.000Z'}}, {'blockNum': '0x81f1c3', 'uniqueId': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47:log:12', 'hash': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5020.100912229649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011023e52e09ceac07c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:11.000Z'}}, {'blockNum': '0x81f1c3', 'uniqueId': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47:log:15', 'hash': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3463a5a0ac21b0729fba76d3bc1123180f3d99fd', 'value': 5020.100912229649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011023e52e09ceac07c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:11.000Z'}}, {'blockNum': '0x81f1d4', 'uniqueId': '0x84f2346ce460d0315db083d287aeb684bc095ab3b10530d897a5498f603602e3:log:26', 'hash': '0x84f2346ce460d0315db083d287aeb684bc095ab3b10530d897a5498f603602e3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x10b4a87cc41ab72ec0955786c7645e32dcf56049', 'value': 128.868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fc671b3a630a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:54:44.000Z'}}, {'blockNum': '0x81f1de', 'uniqueId': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894:log:46', 'hash': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 61.945372904046465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035baa2c74a0cc0382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:37.000Z'}}, {'blockNum': '0x81f1de', 'uniqueId': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894:log:50', 'hash': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 61.945372904046465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035baa2c74a0cc0382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:37.000Z'}}, {'blockNum': '0x81f1e1', 'uniqueId': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6:log:14', 'hash': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.0439572089029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a593703e905d13e68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:54.000Z'}}, {'blockNum': '0x81f1e1', 'uniqueId': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6:log:18', 'hash': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.0439572089029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a593703e905d13e68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:54.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:26', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:29', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:32', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1f3', 'uniqueId': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95:log:19', 'hash': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 816.4955360909327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4326dc18902d0d98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:00:55.000Z'}}, {'blockNum': '0x81f1f3', 'uniqueId': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95:log:23', 'hash': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 816.4955360909327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4326dc18902d0d98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:00:55.000Z'}}, {'blockNum': '0x81f1f7', 'uniqueId': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d:log:27', 'hash': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:01:57.000Z'}}, {'blockNum': '0x81f1f7', 'uniqueId': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d:log:30', 'hash': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:01:57.000Z'}}, {'blockNum': '0x81f204', 'uniqueId': '0xf6d3b125652e5b241cbe243488dfb4bd5a4bb470c08a2990946af57f9125b48e:log:39', 'hash': '0xf6d3b125652e5b241cbe243488dfb4bd5a4bb470c08a2990946af57f9125b48e', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:07.000Z'}}, {'blockNum': '0x81f205', 'uniqueId': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d:log:96', 'hash': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 75.2971955012658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0414f5605de416ea71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:22.000Z'}}, {'blockNum': '0x81f205', 'uniqueId': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d:log:98', 'hash': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75.2971955012658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0414f5605de416ea71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:22.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c:log:97', 'hash': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 271.97293189713076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebe61f49609fc0c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c:log:101', 'hash': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 271.97293189713076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebe61f49609fc0c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04:log:132', 'hash': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 990.5276956815171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35b2554b2e830e1fba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04:log:136', 'hash': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 990.5276956815171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35b2554b2e830e1fba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f210', 'uniqueId': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c:log:69', 'hash': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 566.1109121429901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb05dfb35bb4af0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:31.000Z'}}, {'blockNum': '0x81f210', 'uniqueId': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c:log:71', 'hash': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 566.1109121429901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb05dfb35bb4af0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:31.000Z'}}, {'blockNum': '0x81f218', 'uniqueId': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443:log:84', 'hash': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1229.2253301640137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a2eda511ba4c1544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:39.000Z'}}, {'blockNum': '0x81f218', 'uniqueId': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443:log:88', 'hash': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1229.2253301640137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a2eda511ba4c1544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:39.000Z'}}, {'blockNum': '0x81f219', 'uniqueId': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e:log:20', 'hash': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.82274148083843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a71e686c7fa969b2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:50.000Z'}}, {'blockNum': '0x81f219', 'uniqueId': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e:log:24', 'hash': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 487.82274148083843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a71e686c7fa969b2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:50.000Z'}}, {'blockNum': '0x81f21a', 'uniqueId': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5:log:122', 'hash': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 161.48452121209996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08c10c4475f3403197', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:55.000Z'}}, {'blockNum': '0x81f21a', 'uniqueId': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5:log:126', 'hash': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 161.48452121209996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08c10c4475f3403197', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:55.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76:log:47', 'hash': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.89995675937547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a72f8d9aafb052a30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76:log:51', 'hash': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 487.89995675937547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a72f8d9aafb052a30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb:log:64', 'hash': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 478.11179368745275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19eb224f36c178d921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb:log:68', 'hash': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 478.11179368745275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19eb224f36c178d921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f224', 'uniqueId': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f:log:92', 'hash': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f', 'from': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20.867390302783864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012197dceb92dd003a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:12:31.000Z'}}, {'blockNum': '0x81f224', 'uniqueId': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f:log:96', 'hash': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 20.867390302783864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012197dceb92dd003a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:12:31.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208:log:78', 'hash': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 575.6475820031172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f34b709eb945924b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208:log:82', 'hash': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 575.6475820031172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f34b709eb945924b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315:log:92', 'hash': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 861.3287559960906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb156741028178b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315:log:96', 'hash': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 861.3287559960906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb156741028178b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22c', 'uniqueId': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231:log:139', 'hash': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 211.8323298273057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7bc39da463f09012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:31.000Z'}}, {'blockNum': '0x81f22c', 'uniqueId': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231:log:143', 'hash': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 211.8323298273057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7bc39da463f09012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:31.000Z'}}, {'blockNum': '0x81f230', 'uniqueId': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4:log:52', 'hash': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1224.0318038641803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425ada886a81154ae8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:58.000Z'}}, {'blockNum': '0x81f230', 'uniqueId': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4:log:56', 'hash': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1224.0318038641803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425ada886a81154ae8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:58.000Z'}}, {'blockNum': '0x81f235', 'uniqueId': '0x7f62712d37afeb4984c983a309ff184e64f1f0d06490088d85a7bffde3e535ce:log:1', 'hash': '0x7f62712d37afeb4984c983a309ff184e64f1f0d06490088d85a7bffde3e535ce', 'from': '0x2b704992676068e24ebccebe29e22a7883c9593a', 'to': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:15:47.000Z'}}, {'blockNum': '0x81f23e', 'uniqueId': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4:log:66', 'hash': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 268.37603821456327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8c7738d6c5b44069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:16:56.000Z'}}, {'blockNum': '0x81f23e', 'uniqueId': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4:log:69', 'hash': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc74a40e0de05127ec0686b95fe38014e5685b1b1', 'value': 268.37603821456327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8c7738d6c5b44069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:16:56.000Z'}}, {'blockNum': '0x81f23f', 'uniqueId': '0x1394afa16b4a3b05abc0db04e4be244c6236e71322c8341ee0b0285cb13b39ff:log:3', 'hash': '0x1394afa16b4a3b05abc0db04e4be244c6236e71322c8341ee0b0285cb13b39ff', 'from': '0x2b704992676068e24ebccebe29e22a7883c9593a', 'to': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'value': 1999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c5db2a4d815dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:17:06.000Z'}}, {'blockNum': '0x81f24c', 'uniqueId': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23:log:98', 'hash': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 390.34835325302976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15292bef2121887129', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:20:52.000Z'}}, {'blockNum': '0x81f24c', 'uniqueId': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23:log:102', 'hash': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 390.34835325302976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15292bef2121887129', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:20:52.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e:log:22', 'hash': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e', 'from': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e:log:25', 'hash': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0:log:31', 'hash': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 549.8681260388602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dcef4034e5ffba13c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0:log:35', 'hash': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 549.8681260388602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dcef4034e5ffba13c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab:log:42', 'hash': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab', 'from': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab:log:45', 'hash': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4:log:99', 'hash': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 542.4504528360167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d680324d4248ebc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4:log:103', 'hash': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 542.4504528360167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d680324d4248ebc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576:log:114', 'hash': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.58452613327336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9d3ca232bbc54698', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576:log:119', 'hash': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 269.58452613327336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9d3ca232bbc54698', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49:log:122', 'hash': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 688.5844548632133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255407696bd9d3509f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49:log:126', 'hash': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 688.5844548632133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255407696bd9d3509f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a:log:135', 'hash': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1081.4817629555005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3aa0930d78d9cfb931', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a:log:139', 'hash': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1081.4817629555005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3aa0930d78d9cfb931', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297:log:151', 'hash': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2439.6995664846004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8441a205a2ad18f061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297:log:155', 'hash': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 2439.6995664846004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8441a205a2ad18f061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac:log:166', 'hash': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 682.976584518309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x250634410deb5bc615', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac:log:170', 'hash': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 682.976584518309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x250634410deb5bc615', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1:log:181', 'hash': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 459.06940390350013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18e2de2698a672ad69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1:log:185', 'hash': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 459.06940390350013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18e2de2698a672ad69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f274', 'uniqueId': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb:log:81', 'hash': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 483.50053526928554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a35eaf721bcfd5e5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:58.000Z'}}, {'blockNum': '0x81f274', 'uniqueId': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb:log:83', 'hash': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 483.50053526928554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a35eaf721bcfd5e5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:58.000Z'}}, {'blockNum': '0x81f275', 'uniqueId': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba:log:48', 'hash': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 706.8564516822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26519a95b813baaa01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:32:07.000Z'}}, {'blockNum': '0x81f275', 'uniqueId': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba:log:52', 'hash': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 706.8564516822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26519a95b813baaa01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:32:07.000Z'}}, {'blockNum': '0x81f27d', 'uniqueId': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6:log:149', 'hash': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 111.85346063345409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06104751d2332ba4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:34:06.000Z'}}, {'blockNum': '0x81f27d', 'uniqueId': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6:log:154', 'hash': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 111.85346063345409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06104751d2332ba4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:34:06.000Z'}}, {'blockNum': '0x81f28b', 'uniqueId': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231:log:19', 'hash': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 44.1367901834085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02648560d33803040a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:37:36.000Z'}}, {'blockNum': '0x81f28b', 'uniqueId': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231:log:24', 'hash': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 44.1367901834085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02648560d33803040a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:37:36.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:144', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:147', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:150', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f2a3', 'uniqueId': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c:log:15', 'hash': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 141.49647622419326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07aba87772088b9330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:42:49.000Z'}}, {'blockNum': '0x81f2a3', 'uniqueId': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c:log:19', 'hash': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'value': 141.49647622419326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07aba87772088b9330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:42:49.000Z'}}, {'blockNum': '0x81f2a4', 'uniqueId': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a:log:119', 'hash': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.00010000000000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:43:00.000Z'}}, {'blockNum': '0x81f2a4', 'uniqueId': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a:log:122', 'hash': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x272ffb35833185a81660f4d62496d89bc38c7978', 'value': 0.00010000000000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:43:00.000Z'}}, {'blockNum': '0x81f2b3', 'uniqueId': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e:log:118', 'hash': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 186.20457652725605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a181b8bcc2322ae03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:46:22.000Z'}}, {'blockNum': '0x81f2b3', 'uniqueId': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e:log:122', 'hash': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 186.20457652725605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a181b8bcc2322ae03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:46:22.000Z'}}, {'blockNum': '0x81f2da', 'uniqueId': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00:log:109', 'hash': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 60.44406420924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d47426e5390d02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:55:18.000Z'}}, {'blockNum': '0x81f2da', 'uniqueId': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00:log:113', 'hash': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 60.44406420924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d47426e5390d02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:55:18.000Z'}}, {'blockNum': '0x81f2e5', 'uniqueId': '0xee07f84c0daa222001da9ddd14acc66ade83cc72d65592efb96c36e3a3bd3126:log:5', 'hash': '0xee07f84c0daa222001da9ddd14acc66ade83cc72d65592efb96c36e3a3bd3126', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 25366.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055f1e32d862ecea1000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:57:00.000Z'}}, {'blockNum': '0x81f2e8', 'uniqueId': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f:log:41', 'hash': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1898.3219062922733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x66e8823408455132bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:58:05.000Z'}}, {'blockNum': '0x81f2e8', 'uniqueId': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f:log:45', 'hash': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1898.3219062922733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x66e8823408455132bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:58:05.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xdf7e6566266f945122383ecdae27fbc56353a3e9480f6e52af90a43a4a087d5f:log:13', 'hash': '0xdf7e6566266f945122383ecdae27fbc56353a3e9480f6e52af90a43a4a087d5f', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 1423.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d290be23b3dac8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee:log:40', 'hash': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 319.9893279013035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1158be7659a12fed1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee:log:44', 'hash': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 319.9893279013035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1158be7659a12fed1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2fa', 'uniqueId': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d:log:99', 'hash': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.0000000000000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80113', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:01:35.000Z'}}, {'blockNum': '0x81f2fa', 'uniqueId': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d:log:102', 'hash': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x301166fae420d41984c00ac498a41eab26109cc5', 'value': 2.0000000000000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80113', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:01:35.000Z'}}, {'blockNum': '0x81f2fe', 'uniqueId': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2:log:47', 'hash': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.440113917888392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21dd06ae17396b70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:02:55.000Z'}}, {'blockNum': '0x81f2fe', 'uniqueId': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2:log:51', 'hash': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x71168843b49e305e4d53de158683903ef261b37f', 'value': 2.440113917888392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21dd06ae17396b70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:02:55.000Z'}}, {'blockNum': '0x81f306', 'uniqueId': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e:log:64', 'hash': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 361.1282849311923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1393a965ce25c45a52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:03:49.000Z'}}, {'blockNum': '0x81f306', 'uniqueId': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e:log:68', 'hash': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 361.1282849311923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1393a965ce25c45a52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:03:49.000Z'}}, {'blockNum': '0x81f310', 'uniqueId': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9:log:112', 'hash': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 136.4742868381317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0765f610ceb99b9d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:07.000Z'}}, {'blockNum': '0x81f310', 'uniqueId': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9:log:116', 'hash': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 136.4742868381317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0765f610ceb99b9d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:07.000Z'}}, {'blockNum': '0x81f312', 'uniqueId': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a:log:35', 'hash': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a', 'from': '0x301166fae420d41984c00ac498a41eab26109cc5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0979916524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3cd99727a56c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:55.000Z'}}, {'blockNum': '0x81f312', 'uniqueId': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a:log:38', 'hash': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1.0979916524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3cd99727a56c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:55.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7:log:65', 'hash': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 599.6613064995004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2081f8ed1e995c5cad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7:log:69', 'hash': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 599.6613064995004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2081f8ed1e995c5cad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107:log:145', 'hash': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 366.02620845485677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13d7a2514cbad1c99a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107:log:149', 'hash': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 366.02620845485677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13d7a2514cbad1c99a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f322', 'uniqueId': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32:log:134', 'hash': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 869.0174689357245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1c0a3fbec2ea44e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:13.000Z'}}, {'blockNum': '0x81f322', 'uniqueId': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32:log:139', 'hash': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 869.0174689357245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1c0a3fbec2ea44e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:13.000Z'}}, {'blockNum': '0x81f323', 'uniqueId': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1:log:119', 'hash': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 439.2083518030066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cf3d84f07301e826', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:15.000Z'}}, {'blockNum': '0x81f323', 'uniqueId': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1:log:123', 'hash': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 439.2083518030066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cf3d84f07301e826', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:15.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569:log:15', 'hash': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 341.589076710707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1284802f73af596a82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569:log:19', 'hash': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 341.589076710707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1284802f73af596a82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999:log:80', 'hash': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 128.82964806577158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbdeda58dae7a110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999:log:84', 'hash': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 128.82964806577158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbdeda58dae7a110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f333', 'uniqueId': '0x80997379c774f20fb0f2aa6f7ca7cce18455ef3325933d81ddf66805b72da1a8:log:11', 'hash': '0x80997379c774f20fb0f2aa6f7ca7cce18455ef3325933d81ddf66805b72da1a8', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:13:57.000Z'}}, {'blockNum': '0x81f334', 'uniqueId': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772:log:137', 'hash': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15.36668497813966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5416e9249587c4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:14:03.000Z'}}, {'blockNum': '0x81f334', 'uniqueId': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772:log:141', 'hash': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 15.36668497813966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5416e9249587c4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:14:03.000Z'}}, {'blockNum': '0x81f338', 'uniqueId': '0x85bdb1364f050b191ab7b92e4660be42128ef958d8ea337e039cedf6fd7dddbf:log:8', 'hash': '0x85bdb1364f050b191ab7b92e4660be42128ef958d8ea337e039cedf6fd7dddbf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:01.000Z'}}, {'blockNum': '0x81f339', 'uniqueId': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822:log:180', 'hash': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822', 'from': '0xb018af916ed0116404537d1238b18988d652733a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 317.5369837117481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1136b5fc4d83bf3369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:10.000Z'}}, {'blockNum': '0x81f339', 'uniqueId': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822:log:182', 'hash': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 317.5369837117481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1136b5fc4d83bf3369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:10.000Z'}}, {'blockNum': '0x81f343', 'uniqueId': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063:log:127', 'hash': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 127.03170886237224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e2eb4a2ae089e739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:18:18.000Z'}}, {'blockNum': '0x81f343', 'uniqueId': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063:log:131', 'hash': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 127.03170886237224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e2eb4a2ae089e739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:18:18.000Z'}}, {'blockNum': '0x81f34d', 'uniqueId': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632:log:78', 'hash': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.00129748929822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069d1badad0a606328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:33.000Z'}}, {'blockNum': '0x81f34d', 'uniqueId': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632:log:82', 'hash': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 122.00129748929822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069d1badad0a606328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:33.000Z'}}, {'blockNum': '0x81f34f', 'uniqueId': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632:log:53', 'hash': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3.0875881404807153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad9510e160fd942', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:55.000Z'}}, {'blockNum': '0x81f34f', 'uniqueId': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632:log:57', 'hash': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 3.0875881404807153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad9510e160fd942', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:55.000Z'}}, {'blockNum': '0x81f358', 'uniqueId': '0xf128d9f1f844a6cfb37be8bf963ac5480662c39550b6fd74aedb67f3292500bf:log:27', 'hash': '0xf128d9f1f844a6cfb37be8bf963ac5480662c39550b6fd74aedb67f3292500bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:23:00.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:85', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 107.47015159148717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d372ad789ff95649', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:90', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 107.47015159148717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d372ad789ff95649', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:102', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 105.970903149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05bea446f4ed0335ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:106', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 105.970903149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05bea446f4ed0335ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35e', 'uniqueId': '0xc5ce0aeadf73b25501367a01fe742fc62fd9fb1306f1c37b6ae5c4587b7667c8:log:6', 'hash': '0xc5ce0aeadf73b25501367a01fe742fc62fd9fb1306f1c37b6ae5c4587b7667c8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:47.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:34', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:37', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:40', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f367', 'uniqueId': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe:log:71', 'hash': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 144.53805616284816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d5de5448e006669b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:26:32.000Z'}}, {'blockNum': '0x81f367', 'uniqueId': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe:log:75', 'hash': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 144.53805616284816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d5de5448e006669b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:26:32.000Z'}}, {'blockNum': '0x81f36d', 'uniqueId': '0xc23ed0468e51280a2db9aaf72516912e9dd2077e6ba53b83067ba6f2147e6d43:log:0', 'hash': '0xc23ed0468e51280a2db9aaf72516912e9dd2077e6ba53b83067ba6f2147e6d43', 'from': '0xee1f918d9eae66add53254537660463363017946', 'to': '0xcba3dc8fd14ebd75c75323f710ac4928a9b6a6ba', 'value': 1794.586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6148e23ae039290000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:27:35.000Z'}}, {'blockNum': '0x81f378', 'uniqueId': '0x41680de72501be1b9f8aa0909d5edcf56d21a91a932c88df9ce6c4f98d186a6f:log:6', 'hash': '0x41680de72501be1b9f8aa0909d5edcf56d21a91a932c88df9ce6c4f98d186a6f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 9997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021df03ea59fbc140000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:29:56.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:35', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:38', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:39', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x6d264223a2910937b4d4fa49b2d3f4672a383e4bc271e85aec08bc70510bb517:log:48', 'hash': '0x6d264223a2910937b4d4fa49b2d3f4672a383e4bc271e85aec08bc70510bb517', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x301166fae420d41984c00ac498a41eab26109cc5', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc:log:57', 'hash': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 887.0395829427927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x301625a8f307ce7ab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc:log:61', 'hash': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 887.0395829427927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x301625a8f307ce7ab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2:log:74', 'hash': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.4788820582137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356c444df0e8e691b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2:log:78', 'hash': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 985.4788820582137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356c444df0e8e691b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a:log:89', 'hash': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.69182459920387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab578fc146e9cd9d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a:log:93', 'hash': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 492.69182459920387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab578fc146e9cd9d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f38a', 'uniqueId': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4:log:30', 'hash': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 689.7152346744799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2563b8bfab238ee53e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:48.000Z'}}, {'blockNum': '0x81f38a', 'uniqueId': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4:log:34', 'hash': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 689.7152346744799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2563b8bfab238ee53e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:48.000Z'}}, {'blockNum': '0x81f38c', 'uniqueId': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544:log:30', 'hash': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 541.8754801936001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d60086e41b9c0e5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:09.000Z'}}, {'blockNum': '0x81f38c', 'uniqueId': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544:log:34', 'hash': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 541.8754801936001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d60086e41b9c0e5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:09.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:50', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.28011438964336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e99032554873f474c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:53', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 269.28011438964336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e99032554873f474c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:54', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 269.37984611374947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9a6576ce0b6db1b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:132', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0x301166fae420d41984c00ac498a41eab26109cc5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:135', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:137', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f394', 'uniqueId': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2:log:35', 'hash': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.79772213045663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b107957605b64834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:09.000Z'}}, {'blockNum': '0x81f394', 'uniqueId': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2:log:39', 'hash': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 344.79772213045663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b107957605b64834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:09.000Z'}}, {'blockNum': '0x81f395', 'uniqueId': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508:log:94', 'hash': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1039.916504918531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x385fbd978276cb885d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:24.000Z'}}, {'blockNum': '0x81f395', 'uniqueId': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508:log:97', 'hash': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1039.916504918531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x385fbd978276cb885d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:24.000Z'}}, {'blockNum': '0x81f398', 'uniqueId': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff:log:78', 'hash': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.9652902889001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20094a78730f7d1cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:34.000Z'}}, {'blockNum': '0x81f398', 'uniqueId': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff:log:82', 'hash': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 590.9652902889001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20094a78730f7d1cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:34.000Z'}}, {'blockNum': '0x81f399', 'uniqueId': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c:log:22', 'hash': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c', 'from': '0x8bd7448162c296a5bb3f0b9ccdee383f5b899c93', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 124.43427656318754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06bedf5b40cf8210c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:52.000Z'}}, {'blockNum': '0x81f399', 'uniqueId': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c:log:26', 'hash': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 124.43427656318754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06bedf5b40cf8210c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:52.000Z'}}, {'blockNum': '0x81f39c', 'uniqueId': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405:log:64', 'hash': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:36:42.000Z'}}, {'blockNum': '0x81f39c', 'uniqueId': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405:log:67', 'hash': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:36:42.000Z'}}, {'blockNum': '0x81f3a2', 'uniqueId': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e:log:12', 'hash': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 246.22606720374804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5912b78f68dcc9c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:01.000Z'}}, {'blockNum': '0x81f3a2', 'uniqueId': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e:log:16', 'hash': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 246.22606720374804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5912b78f68dcc9c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:01.000Z'}}, {'blockNum': '0x81f3a6', 'uniqueId': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8:log:83', 'hash': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.42835468028454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab1d0f395a06c0b20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:30.000Z'}}, {'blockNum': '0x81f3a6', 'uniqueId': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8:log:87', 'hash': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 492.42835468028454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab1d0f395a06c0b20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:30.000Z'}}, {'blockNum': '0x81f3ae', 'uniqueId': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f:log:42', 'hash': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.883380505149718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b481b80d6144083', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:39:29.000Z'}}, {'blockNum': '0x81f3ae', 'uniqueId': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f:log:44', 'hash': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5b14706689e0427e4d19a46a4a5237cd19241641', 'value': 8.883380505149718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b481b80d6144083', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:39:29.000Z'}}, {'blockNum': '0x81f3b3', 'uniqueId': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887:log:68', 'hash': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 369.22627657812876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14040b3e4d9b7ed9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:40:27.000Z'}}, {'blockNum': '0x81f3b3', 'uniqueId': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887:log:72', 'hash': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 369.22627657812876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14040b3e4d9b7ed9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:40:27.000Z'}}, {'blockNum': '0x81f3bd', 'uniqueId': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145:log:107', 'hash': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.8436554865756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20079a563dbe9e25b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:42:29.000Z'}}, {'blockNum': '0x81f3bd', 'uniqueId': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145:log:111', 'hash': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 590.8436554865756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20079a563dbe9e25b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:42:29.000Z'}}, {'blockNum': '0x81f3d4', 'uniqueId': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e:log:15', 'hash': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.4116572309812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6c320fd57d1659db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:48:20.000Z'}}, {'blockNum': '0x81f3d4', 'uniqueId': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e:log:19', 'hash': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 487.4116572309812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6c320fd57d1659db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:48:20.000Z'}}, {'blockNum': '0x81f3e7', 'uniqueId': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32:log:122', 'hash': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 113.23260541314032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06236b06b0f233dd6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:52:22.000Z'}}, {'blockNum': '0x81f3e7', 'uniqueId': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32:log:126', 'hash': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 113.23260541314032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06236b06b0f233dd6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:52:22.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0x58ce18289851392d658e6bed29549dd17e089cb1cccfc1095b47d04804b9f92f:log:14', 'hash': '0x58ce18289851392d658e6bed29549dd17e089cb1cccfc1095b47d04804b9f92f', 'from': '0x6d1ceb4fd5595c9773eb7fc79b0c090a380514da', 'to': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'value': 89264.78831687754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e70dca7d1504ec2983', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1:log:73', 'hash': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 290.4585832104908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbeec2e83b08b5b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1:log:77', 'hash': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 290.4585832104908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbeec2e83b08b5b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c:log:88', 'hash': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.27749309438786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aafb8fbc57accf4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c:log:92', 'hash': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'value': 492.27749309438786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aafb8fbc57accf4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b:log:103', 'hash': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 290.42886010827664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbe829582ab724997', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b:log:107', 'hash': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 290.42886010827664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbe829582ab724997', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e:log:92', 'hash': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 438.08368774012445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17bfa1e8eecb4448bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e:log:96', 'hash': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 438.08368774012445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17bfa1e8eecb4448bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27:log:107', 'hash': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5825.603774423163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013bce7e37775b7b5565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27:log:111', 'hash': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 5825.603774423163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013bce7e37775b7b5565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733:log:122', 'hash': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.82421397614905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa96e9cd0a01281fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733:log:126', 'hash': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 491.82421397614905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa96e9cd0a01281fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f408', 'uniqueId': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb:log:52', 'hash': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 447.17798547238726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183dd75889606f176d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:07.000Z'}}, {'blockNum': '0x81f408', 'uniqueId': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb:log:56', 'hash': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.17798547238726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183dd75889606f176d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:07.000Z'}}, {'blockNum': '0x81f40b', 'uniqueId': '0xc7e5dda0a0c453ff10ecaaa4738374efa697c557d6e056615b3480e6dd757406:log:1', 'hash': '0xc7e5dda0a0c453ff10ecaaa4738374efa697c557d6e056615b3480e6dd757406', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:28.000Z'}}, {'blockNum': '0x81f40f', 'uniqueId': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56:log:41', 'hash': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:00:16.000Z'}}, {'blockNum': '0x81f40f', 'uniqueId': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56:log:44', 'hash': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:00:16.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b:log:27', 'hash': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.91462453230577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54c04019c1a5520e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b:log:31', 'hash': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 245.91462453230577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54c04019c1a5520e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b:log:42', 'hash': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.906718928326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54a429fee4b2ab3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b:log:46', 'hash': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 245.906718928326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54a429fee4b2ab3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41e', 'uniqueId': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793:log:74', 'hash': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1229.0722768820142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a0cde3eb9101936d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:28.000Z'}}, {'blockNum': '0x81f41e', 'uniqueId': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793:log:78', 'hash': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1229.0722768820142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a0cde3eb9101936d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:28.000Z'}}, {'blockNum': '0x81f425', 'uniqueId': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e:log:39', 'hash': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.71071332064696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa7db6091f318ccd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:04:10.000Z'}}, {'blockNum': '0x81f425', 'uniqueId': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e:log:43', 'hash': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 491.71071332064696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa7db6091f318ccd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:04:10.000Z'}}, {'blockNum': '0x81f42b', 'uniqueId': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338:log:66', 'hash': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.0111374232855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffc0ca379371c99e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:05:37.000Z'}}, {'blockNum': '0x81f42b', 'uniqueId': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338:log:70', 'hash': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 590.0111374232855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffc0ca379371c99e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:05:37.000Z'}}, {'blockNum': '0x81f42d', 'uniqueId': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19:log:95', 'hash': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 424.13431368654807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16fe0bc72354cb68c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:06:22.000Z'}}, {'blockNum': '0x81f42d', 'uniqueId': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19:log:99', 'hash': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 424.13431368654807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16fe0bc72354cb68c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:06:22.000Z'}}, {'blockNum': '0x81f432', 'uniqueId': '0x36f0d05b0eaf6a5b9111dd72873fe53236da23e5c258b896fecd1e45697e72ef:log:11', 'hash': '0x36f0d05b0eaf6a5b9111dd72873fe53236da23e5c258b896fecd1e45697e72ef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 12531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a74e8f1beaa3ec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:07:54.000Z'}}, {'blockNum': '0x81f433', 'uniqueId': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8:log:64', 'hash': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.1712308030159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12a855d6eb02bdbc84', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:08:53.000Z'}}, {'blockNum': '0x81f433', 'uniqueId': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8:log:68', 'hash': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 344.1712308030159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12a855d6eb02bdbc84', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:08:53.000Z'}}, {'blockNum': '0x81f43c', 'uniqueId': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048:log:113', 'hash': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.646326538971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa6f6a12221117cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:24.000Z'}}, {'blockNum': '0x81f43c', 'uniqueId': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048:log:117', 'hash': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 491.646326538971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa6f6a12221117cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:24.000Z'}}, {'blockNum': '0x81f43d', 'uniqueId': '0xa4a577981c8485c05726ed5c4292dd1dee8207d28cbfc63f8efed724258edc82:log:43', 'hash': '0xa4a577981c8485c05726ed5c4292dd1dee8207d28cbfc63f8efed724258edc82', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:31.000Z'}}, {'blockNum': '0x81f447', 'uniqueId': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8:log:21', 'hash': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 380.7682171545839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a438741b09c623b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:12:13.000Z'}}, {'blockNum': '0x81f447', 'uniqueId': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8:log:25', 'hash': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 380.7682171545839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a438741b09c623b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:12:13.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:162', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:165', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:166', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f47b', 'uniqueId': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff:log:76', 'hash': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7370.567914810686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018f8f2d7393ee81a755', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:19.000Z'}}, {'blockNum': '0x81f47b', 'uniqueId': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff:log:79', 'hash': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 7370.567914810686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018f8f2d7393ee81a755', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:19.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1:log:93', 'hash': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 148.17229737617734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084dbf69c49829e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1:log:97', 'hash': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 148.17229737617734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084dbf69c49829e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3:log:138', 'hash': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 815.2557278547167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c31f22d12eaec88ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3:log:142', 'hash': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 815.2557278547167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c31f22d12eaec88ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992:log:153', 'hash': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6381.53047531673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159f1869c80c7621f38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992:log:157', 'hash': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 6381.53047531673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159f1869c80c7621f38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec:log:168', 'hash': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 283.3147131609771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5bc80e8de1b9acfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec:log:172', 'hash': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 283.3147131609771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5bc80e8de1b9acfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47f', 'uniqueId': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7:log:36', 'hash': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 909.702190682914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3150a76a9e09c15eca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:54.000Z'}}, {'blockNum': '0x81f47f', 'uniqueId': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7:log:40', 'hash': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 909.702190682914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3150a76a9e09c15eca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:54.000Z'}}, {'blockNum': '0x81f492', 'uniqueId': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a:log:19', 'hash': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.7506627791152107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262c5139560d089a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:25:39.000Z'}}, {'blockNum': '0x81f492', 'uniqueId': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a:log:23', 'hash': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2.7506627791152107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262c5139560d089a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:25:39.000Z'}}, {'blockNum': '0x81f4ac', 'uniqueId': '0x78572503f963ea8d0d2234fd8404398f15aed42366414a1f07d172b5d2e08771:log:71', 'hash': '0x78572503f963ea8d0d2234fd8404398f15aed42366414a1f07d172b5d2e08771', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:31:20.000Z'}}, {'blockNum': '0x81f4bd', 'uniqueId': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed:log:109', 'hash': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 754.0349395030894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e0563e6e02cdad27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:21.000Z'}}, {'blockNum': '0x81f4bd', 'uniqueId': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed:log:113', 'hash': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 754.0349395030894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e0563e6e02cdad27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:21.000Z'}}, {'blockNum': '0x81f4be', 'uniqueId': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b:log:25', 'hash': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1289.0819236305415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e19afbb177a848fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:27.000Z'}}, {'blockNum': '0x81f4be', 'uniqueId': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b:log:29', 'hash': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1289.0819236305415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e19afbb177a848fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:27.000Z'}}, {'blockNum': '0x81f4bf', 'uniqueId': '0x89d950fba2cb340bad210130a2e9fb6594102fc4b5fad911588c6223aee24401:log:119', 'hash': '0x89d950fba2cb340bad210130a2e9fb6594102fc4b5fad911588c6223aee24401', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xe2859334be46db836da81bda171830a23d408832', 'value': 82.36571786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04770dd0005b58e800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:32.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6:log:32', 'hash': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1472.144314534179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fce1b3e5060aaf06a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6:log:36', 'hash': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1472.144314534179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fce1b3e5060aaf06a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x51063e933e41ee5deac7b18c475888e964fbdab58ede2a00332076fb45ced5c3:log:44', 'hash': '0x51063e933e41ee5deac7b18c475888e964fbdab58ede2a00332076fb45ced5c3', 'from': '0x760f6df021517d001e43469eeaf2cd00c71f8f7a', 'to': '0x5ec72e3aa23d42effc2d88b950ee95b7a752a24d', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c8', 'uniqueId': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3:log:14', 'hash': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1430.3752649678686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d8a71c5090b0b4dbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:23.000Z'}}, {'blockNum': '0x81f4c8', 'uniqueId': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3:log:18', 'hash': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1430.3752649678686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d8a71c5090b0b4dbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:23.000Z'}}, {'blockNum': '0x81f4cc', 'uniqueId': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9:log:60', 'hash': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 678.9611820702938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ce7aadcd6b2ef988', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:06.000Z'}}, {'blockNum': '0x81f4cc', 'uniqueId': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9:log:64', 'hash': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 678.9611820702938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ce7aadcd6b2ef988', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:06.000Z'}}, {'blockNum': '0x81f4ce', 'uniqueId': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c:log:11', 'hash': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 587.4223733207979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd81f803cf70f0aad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:14.000Z'}}, {'blockNum': '0x81f4ce', 'uniqueId': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c:log:16', 'hash': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5a9f1cd844ce91aaadaa03059677eebcf3cf00df', 'value': 587.4223733207979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd81f803cf70f0aad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:14.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0x76b464329daddd27e1e6b4979325018f0ff15b79fb23c49e1cb04a80a8d9fade:log:0', 'hash': '0x76b464329daddd27e1e6b4979325018f0ff15b79fb23c49e1cb04a80a8d9fade', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1423.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d290be23b3dac8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95:log:45', 'hash': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.96210106406494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f574cd4d5ce1f38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95:log:49', 'hash': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 441.96210106406494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f574cd4d5ce1f38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e4', 'uniqueId': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20:log:89', 'hash': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0803205217825669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0efe11ca706a1fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:43:10.000Z'}}, {'blockNum': '0x81f4e4', 'uniqueId': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20:log:93', 'hash': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 1.0803205217825669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0efe11ca706a1fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:43:10.000Z'}}, {'blockNum': '0x81f4ef', 'uniqueId': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23:log:69', 'hash': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.14731642296911188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020b5f8194a7b546', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:45:22.000Z'}}, {'blockNum': '0x81f4ef', 'uniqueId': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23:log:73', 'hash': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 0.14731642296911188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020b5f8194a7b546', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:45:22.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:26', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:29', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:32', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f500', 'uniqueId': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce:log:23', 'hash': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.22844295411016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5bc670b7d305949b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:48:15.000Z'}}, {'blockNum': '0x81f500', 'uniqueId': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce:log:27', 'hash': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 486.22844295411016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5bc670b7d305949b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:48:15.000Z'}}, {'blockNum': '0x81f507', 'uniqueId': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959:log:77', 'hash': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1963.8206305196218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a757c6ab0a1b23012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:04.000Z'}}, {'blockNum': '0x81f507', 'uniqueId': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959:log:80', 'hash': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1963.8206305196218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a757c6ab0a1b23012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:04.000Z'}}, {'blockNum': '0x81f50b', 'uniqueId': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5:log:96', 'hash': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 196.33546144594243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa4b3adf489ccb1a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:47.000Z'}}, {'blockNum': '0x81f50b', 'uniqueId': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5:log:101', 'hash': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'value': 196.33546144594243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa4b3adf489ccb1a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:47.000Z'}}, {'blockNum': '0x81f50e', 'uniqueId': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827:log:52', 'hash': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.58820026019885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52e3d7614e662150', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:51:14.000Z'}}, {'blockNum': '0x81f50e', 'uniqueId': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827:log:56', 'hash': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.58820026019885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52e3d7614e662150', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:51:14.000Z'}}, {'blockNum': '0x81f514', 'uniqueId': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec:log:20', 'hash': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.84857574915895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5680e181fe159521', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:53:13.000Z'}}, {'blockNum': '0x81f514', 'uniqueId': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec:log:24', 'hash': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.84857574915895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5680e181fe159521', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:53:13.000Z'}}, {'blockNum': '0x81f518', 'uniqueId': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f:log:78', 'hash': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2714.7183943324785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x932a492c736e317e0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:21.000Z'}}, {'blockNum': '0x81f518', 'uniqueId': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f:log:82', 'hash': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2714.7183943324785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x932a492c736e317e0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:21.000Z'}}, {'blockNum': '0x81f519', 'uniqueId': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395:log:19', 'hash': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2209.169867385794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77c26401b42b0fca23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:25.000Z'}}, {'blockNum': '0x81f519', 'uniqueId': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395:log:23', 'hash': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2209.169867385794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77c26401b42b0fca23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:25.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd:log:53', 'hash': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 543.4505439031907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d75e42e5b0682fcc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd:log:57', 'hash': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 543.4505439031907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d75e42e5b0682fcc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745:log:69', 'hash': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1267.4310504039197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44b523a13471d8686e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745:log:73', 'hash': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1267.4310504039197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44b523a13471d8686e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f52a', 'uniqueId': '0x4de9245566b54b927813956594f6640228dafbe4c0b8bd5a73f5a1673f93f495:log:25', 'hash': '0x4de9245566b54b927813956594f6640228dafbe4c0b8bd5a73f5a1673f93f495', 'from': '0xfee4ae2adfc648afde92a4087fd7b7c6980149ba', 'to': '0xfa12612a0c2ef2e88861794422d379f1c92f70b4', 'value': 13503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dbffc4ce0a339c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:22.000Z'}}, {'blockNum': '0x81f52c', 'uniqueId': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362:log:95', 'hash': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362', 'from': '0x1229e2a0711660be162521f5626c68e85ec99c7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 95.48728243395634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052d26f975db5d42f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:45.000Z'}}, {'blockNum': '0x81f52c', 'uniqueId': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362:log:99', 'hash': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.48728243395634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052d26f975db5d42f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:45.000Z'}}, {'blockNum': '0x81f542', 'uniqueId': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b:log:114', 'hash': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.2259181491161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3568c1989b2223af1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:01:54.000Z'}}, {'blockNum': '0x81f542', 'uniqueId': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b:log:118', 'hash': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 985.2259181491161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3568c1989b2223af1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:01:54.000Z'}}, {'blockNum': '0x81f544', 'uniqueId': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce:log:30', 'hash': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 981.7073144728154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3537ed01346adacb70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:02:23.000Z'}}, {'blockNum': '0x81f544', 'uniqueId': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce:log:34', 'hash': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 981.7073144728154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3537ed01346adacb70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:02:23.000Z'}}, {'blockNum': '0x81f547', 'uniqueId': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32:log:11', 'hash': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:03:28.000Z'}}, {'blockNum': '0x81f547', 'uniqueId': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32:log:14', 'hash': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:03:28.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:29', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:32', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:33', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f55a', 'uniqueId': '0xa19b97f718da672470d962af66cc3903bd3d6b123aac9e0189654ad9cd0a3493:log:21', 'hash': '0xa19b97f718da672470d962af66cc3903bd3d6b123aac9e0189654ad9cd0a3493', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:07:25.000Z'}}, {'blockNum': '0x81f55c', 'uniqueId': '0x00554db9a3fd60cada95eb1097bce7f4eda9bedddd37bcec0ab99b1f38fc73da:log:29', 'hash': '0x00554db9a3fd60cada95eb1097bce7f4eda9bedddd37bcec0ab99b1f38fc73da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:08:34.000Z'}}, {'blockNum': '0x81f55e', 'uniqueId': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933:log:30', 'hash': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:03.000Z'}}, {'blockNum': '0x81f55e', 'uniqueId': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933:log:33', 'hash': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:03.000Z'}}, {'blockNum': '0x81f562', 'uniqueId': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb:log:12', 'hash': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2159.59500639088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x751266b849abdafd26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:54.000Z'}}, {'blockNum': '0x81f562', 'uniqueId': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb:log:15', 'hash': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 2159.59500639088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x751266b849abdafd26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:54.000Z'}}, {'blockNum': '0x81f563', 'uniqueId': '0x51bfd3e6ec90436dc74474c83a326be89ec87eb0ff99c2b3323c52c2cfea6e30:log:43', 'hash': '0x51bfd3e6ec90436dc74474c83a326be89ec87eb0ff99c2b3323c52c2cfea6e30', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0xefa6570c0819de6733599439b45d407a430293cd', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:59.000Z'}}, {'blockNum': '0x81f577', 'uniqueId': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417:log:96', 'hash': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 100.70972159949602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0575a0ce363671fe43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:35.000Z'}}, {'blockNum': '0x81f577', 'uniqueId': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417:log:98', 'hash': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8bf2d64011443366ec19f04f2c81425559906089', 'value': 100.70972159949602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0575a0ce363671fe43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:35.000Z'}}, {'blockNum': '0x81f578', 'uniqueId': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41:log:40', 'hash': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 49.074621019912456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a90c13cf22ccc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:44.000Z'}}, {'blockNum': '0x81f578', 'uniqueId': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41:log:44', 'hash': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'value': 49.074621019912456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a90c13cf22ccc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:44.000Z'}}, {'blockNum': '0x81f57c', 'uniqueId': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f:log:28', 'hash': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 78.17658038339017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043ceb01a952be1162', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:13:16.000Z'}}, {'blockNum': '0x81f57c', 'uniqueId': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f:log:32', 'hash': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 78.17658038339017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043ceb01a952be1162', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:13:16.000Z'}}, {'blockNum': '0x81f587', 'uniqueId': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2:log:7', 'hash': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1472.1073240939256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcd97d3b45d473ead', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:15:00.000Z'}}, {'blockNum': '0x81f587', 'uniqueId': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2:log:11', 'hash': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1472.1073240939256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcd97d3b45d473ead', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:15:00.000Z'}}, {'blockNum': '0x81f591', 'uniqueId': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd:log:82', 'hash': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.2365355961362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e986852a5fc832b80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:47.000Z'}}, {'blockNum': '0x81f591', 'uniqueId': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd:log:87', 'hash': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 269.2365355961362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e986852a5fc832b80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:47.000Z'}}, {'blockNum': '0x81f592', 'uniqueId': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991:log:6', 'hash': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 682.204773379763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fb7e3ae9c0a1c262', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:54.000Z'}}, {'blockNum': '0x81f592', 'uniqueId': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991:log:11', 'hash': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 682.204773379763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fb7e3ae9c0a1c262', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:54.000Z'}}, {'blockNum': '0x81f596', 'uniqueId': '0x272f51e36d63826ba92b4cffe8ebfb67c6bd70d676f093f6768f4790e13f8389:log:5', 'hash': '0x272f51e36d63826ba92b4cffe8ebfb67c6bd70d676f093f6768f4790e13f8389', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x957fcf2c4c60e38b53341289e78d18b22b442d0b', 'value': 486.45006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5ed9c83f4374c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:17:57.000Z'}}, {'blockNum': '0x81f59b', 'uniqueId': '0x6e1e5fa9e48b794640536b2567e8c32cfa9fd9213bd021d7419674b38033f1d3:log:20', 'hash': '0x6e1e5fa9e48b794640536b2567e8c32cfa9fd9213bd021d7419674b38033f1d3', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0xefa6570c0819de6733599439b45d407a430293cd', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:19:11.000Z'}}, {'blockNum': '0x81f5a7', 'uniqueId': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0:log:45', 'hash': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1301.308922174307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x468b4a02165e0466b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:28.000Z'}}, {'blockNum': '0x81f5a7', 'uniqueId': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0:log:49', 'hash': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1301.308922174307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x468b4a02165e0466b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:28.000Z'}}, {'blockNum': '0x81f5a8', 'uniqueId': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5:log:29', 'hash': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5', 'from': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 38.35237974852081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02143f062e8177d68d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:34.000Z'}}, {'blockNum': '0x81f5a8', 'uniqueId': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5:log:33', 'hash': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 38.35237974852081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02143f062e8177d68d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:34.000Z'}}, {'blockNum': '0x81f5af', 'uniqueId': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408:log:31', 'hash': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.8162667010032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f57c28b2da4e8a66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:22:57.000Z'}}, {'blockNum': '0x81f5af', 'uniqueId': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408:log:35', 'hash': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.8162667010032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f57c28b2da4e8a66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:22:57.000Z'}}, {'blockNum': '0x81f5b2', 'uniqueId': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935:log:64', 'hash': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 157.03857154937705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08835914cc53627399', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:23:40.000Z'}}, {'blockNum': '0x81f5b2', 'uniqueId': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935:log:68', 'hash': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 157.03857154937705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08835914cc53627399', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:23:40.000Z'}}, {'blockNum': '0x81f5b5', 'uniqueId': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86:log:108', 'hash': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 149.87586275068438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ff207186bbe0a6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:24:30.000Z'}}, {'blockNum': '0x81f5b5', 'uniqueId': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86:log:112', 'hash': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 149.87586275068438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ff207186bbe0a6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:24:30.000Z'}}, {'blockNum': '0x81f5bf', 'uniqueId': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d:log:72', 'hash': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.37112191828115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d35575a4e367638', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:26:54.000Z'}}, {'blockNum': '0x81f5bf', 'uniqueId': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d:log:76', 'hash': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 245.37112191828115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d35575a4e367638', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:26:54.000Z'}}, {'blockNum': '0x81f5c1', 'uniqueId': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c:log:67', 'hash': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.7158253616876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f41751d52ba2f09f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:27:30.000Z'}}, {'blockNum': '0x81f5c1', 'uniqueId': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c:log:71', 'hash': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.7158253616876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f41751d52ba2f09f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:27:30.000Z'}}, {'blockNum': '0x81f5c8', 'uniqueId': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5:log:27', 'hash': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 143.65020145679733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c98c092231b4cb0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:28:56.000Z'}}, {'blockNum': '0x81f5c8', 'uniqueId': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5:log:31', 'hash': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 143.65020145679733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c98c092231b4cb0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:28:56.000Z'}}, {'blockNum': '0x81f5ce', 'uniqueId': '0x74ade19d1074318409a1f260ec4f351002b00ab187d95b8e6985023ae83e18de:log:22', 'hash': '0x74ade19d1074318409a1f260ec4f351002b00ab187d95b8e6985023ae83e18de', 'from': '0xefa6570c0819de6733599439b45d407a430293cd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:09.000Z'}}, {'blockNum': '0x81f5d2', 'uniqueId': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9:log:31', 'hash': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.37256488246973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d3a77b89618ba15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:38.000Z'}}, {'blockNum': '0x81f5d2', 'uniqueId': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9:log:35', 'hash': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 245.37256488246973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d3a77b89618ba15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:38.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a:log:107', 'hash': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.7215237132955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a2111dcf967cf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a:log:111', 'hash': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 490.7215237132955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a2111dcf967cf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909:log:122', 'hash': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4905.485024701416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109ed47bf97a62ca603', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909:log:125', 'hash': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4905.485024701416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109ed47bf97a62ca603', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5db', 'uniqueId': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4:log:23', 'hash': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 480.32227399342474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a09cf83572deddbd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:32:22.000Z'}}, {'blockNum': '0x81f5db', 'uniqueId': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4:log:27', 'hash': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 480.32227399342474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a09cf83572deddbd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:32:22.000Z'}}, {'blockNum': '0x81f5e1', 'uniqueId': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0:log:68', 'hash': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.4099831069155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe5d4321b254c1d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:35:17.000Z'}}, {'blockNum': '0x81f5e1', 'uniqueId': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0:log:72', 'hash': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.4099831069155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe5d4321b254c1d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:35:17.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:14', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:17', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:18', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f8', 'uniqueId': '0x635df707358efae36cb005de277c655b673c7bd2072583beda478d37d431da7c:log:44', 'hash': '0x635df707358efae36cb005de277c655b673c7bd2072583beda478d37d431da7c', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xe42db7fb76c7bfe974d3d8c2da56755b6255814b', 'value': 15.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdca825c218b60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:40:53.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76:log:51', 'hash': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.4008644766204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a95addbfc81703f54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76:log:55', 'hash': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 490.4008644766204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a95addbfc81703f54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c:log:75', 'hash': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 867.2862544253672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0403bd520312236e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c:log:79', 'hash': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 867.2862544253672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0403bd520312236e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f608', 'uniqueId': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab:log:123', 'hash': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.16085793564926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a4a555fe461470e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:44:48.000Z'}}, {'blockNum': '0x81f608', 'uniqueId': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab:log:127', 'hash': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 245.16085793564926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a4a555fe461470e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:44:48.000Z'}}, {'blockNum': '0x81f60c', 'uniqueId': '0x733c9d964be5de323355971efbb81458318ac863aa9eab53bbba1dc1ec7f629f:log:1', 'hash': '0x733c9d964be5de323355971efbb81458318ac863aa9eab53bbba1dc1ec7f629f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x513cd4e35338572a1d2785c5e6297996b5c5c2fd', 'value': 29619.348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0645ab06cbf7f4c20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:45:30.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:67', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:70', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:73', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62e', 'uniqueId': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e:log:96', 'hash': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.297838635337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a943fd687910d9d76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:16.000Z'}}, {'blockNum': '0x81f62e', 'uniqueId': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e:log:100', 'hash': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 490.297838635337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a943fd687910d9d76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:16.000Z'}}, {'blockNum': '0x81f62f', 'uniqueId': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a:log:176', 'hash': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 167.90793442474907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091a30d0beb4c05ee4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:21.000Z'}}, {'blockNum': '0x81f62f', 'uniqueId': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a:log:180', 'hash': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 167.90793442474907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091a30d0beb4c05ee4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:21.000Z'}}, {'blockNum': '0x81f634', 'uniqueId': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd:log:148', 'hash': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.50616508884843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a51c064d38ef7a8ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:55:44.000Z'}}, {'blockNum': '0x81f634', 'uniqueId': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd:log:152', 'hash': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.50616508884843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a51c064d38ef7a8ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:55:44.000Z'}}, {'blockNum': '0x81f63d', 'uniqueId': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91:log:175', 'hash': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.12696469971849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49d1eba7f46fed10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:57:38.000Z'}}, {'blockNum': '0x81f63d', 'uniqueId': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91:log:179', 'hash': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 245.12696469971849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49d1eba7f46fed10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:57:38.000Z'}}, {'blockNum': '0x81f64a', 'uniqueId': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f:log:119', 'hash': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 882.6291796227117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd8f0c27f3e2e12bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:01:07.000Z'}}, {'blockNum': '0x81f64a', 'uniqueId': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f:log:123', 'hash': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 882.6291796227117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd8f0c27f3e2e12bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:01:07.000Z'}}, {'blockNum': '0x81f653', 'uniqueId': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55:log:68', 'hash': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1294.1638101713922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4628217893bfe69b7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:03:45.000Z'}}, {'blockNum': '0x81f653', 'uniqueId': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55:log:72', 'hash': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1294.1638101713922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4628217893bfe69b7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:03:45.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d:log:77', 'hash': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 693.185654957691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2593e228876da9a4b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d:log:82', 'hash': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 693.185654957691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2593e228876da9a4b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e:log:93', 'hash': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.962523104220503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c6147471e4b5e78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e:log:97', 'hash': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 8.962523104220503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c6147471e4b5e78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f65e', 'uniqueId': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55:log:78', 'hash': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.963918226949083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c663c2270f3114b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:06:59.000Z'}}, {'blockNum': '0x81f65e', 'uniqueId': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55:log:82', 'hash': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 8.963918226949083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c663c2270f3114b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:06:59.000Z'}}, {'blockNum': '0x81f661', 'uniqueId': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3:log:73', 'hash': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.13172119011747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49e2d1a8ad0be0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:07:25.000Z'}}, {'blockNum': '0x81f661', 'uniqueId': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3:log:77', 'hash': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 245.13172119011747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49e2d1a8ad0be0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:07:25.000Z'}}, {'blockNum': '0x81f66b', 'uniqueId': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603:log:60', 'hash': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.23988521565616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9371f2338f753dde', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:11:04.000Z'}}, {'blockNum': '0x81f66b', 'uniqueId': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603:log:64', 'hash': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 490.23988521565616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9371f2338f753dde', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:11:04.000Z'}}, {'blockNum': '0x81f66f', 'uniqueId': '0xd2fbf05dab31e87cbf70374ac42a9c8f620ace7dfe5f4a50e93febe7adf4e564:log:6', 'hash': '0xd2fbf05dab31e87cbf70374ac42a9c8f620ace7dfe5f4a50e93febe7adf4e564', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x509659eb38d5b942c1872b691500252e4ca5a679', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:32.000Z'}}, {'blockNum': '0x81f672', 'uniqueId': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b:log:27', 'hash': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 539.2275999559091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d3b494535aa67a833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:53.000Z'}}, {'blockNum': '0x81f672', 'uniqueId': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b:log:31', 'hash': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 539.2275999559091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d3b494535aa67a833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:53.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163:log:11', 'hash': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 648.7417748387787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x232b19c708dddb31ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163:log:15', 'hash': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 648.7417748387787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x232b19c708dddb31ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613:log:26', 'hash': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1171.9781626631564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f8876d9892469283c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613:log:30', 'hash': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1171.9781626631564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f8876d9892469283c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f678', 'uniqueId': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d:log:86', 'hash': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2051.244810269985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f32bd7efad1fe5025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:33.000Z'}}, {'blockNum': '0x81f678', 'uniqueId': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d:log:90', 'hash': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2051.244810269985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f32bd7efad1fe5025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:33.000Z'}}, {'blockNum': '0x81f67e', 'uniqueId': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af:log:16', 'hash': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.17336636393216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a76c5b94ce186bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:19.000Z'}}, {'blockNum': '0x81f67e', 'uniqueId': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af:log:20', 'hash': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 245.17336636393216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a76c5b94ce186bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:19.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:2', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0x509659eb38d5b942c1872b691500252e4ca5a679', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:5', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:6', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468:log:18', 'hash': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 980.6358576735024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35290e6cec2fa0fa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468:log:22', 'hash': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 980.6358576735024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35290e6cec2fa0fa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f683', 'uniqueId': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802:log:45', 'hash': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 19.611435330899685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011029d08711d22787', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:46.000Z'}}, {'blockNum': '0x81f683', 'uniqueId': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802:log:49', 'hash': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 19.611435330899685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011029d08711d22787', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:46.000Z'}}, {'blockNum': '0x81f691', 'uniqueId': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd:log:57', 'hash': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 430.35413716152607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17545d07a26c7ee952', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:18:17.000Z'}}, {'blockNum': '0x81f691', 'uniqueId': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd:log:62', 'hash': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 430.35413716152607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17545d07a26c7ee952', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:18:17.000Z'}}, {'blockNum': '0x81f698', 'uniqueId': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db:log:62', 'hash': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 360.1869498688647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1386991a8db11c43cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:26.000Z'}}, {'blockNum': '0x81f698', 'uniqueId': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db:log:66', 'hash': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 360.1869498688647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1386991a8db11c43cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:26.000Z'}}, {'blockNum': '0x81f699', 'uniqueId': '0x4cbf913ce163c5b61d5c689376abe94076c7457e56374bd4e79e8a6ef8673522:log:46', 'hash': '0x4cbf913ce163c5b61d5c689376abe94076c7457e56374bd4e79e8a6ef8673522', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x5c57320c7207eb53aa684df67be2742fe8b48b83', 'value': 75.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041d52f7dd54260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:35.000Z'}}, {'blockNum': '0x81f6a0', 'uniqueId': '0xf5720fef9e8d208e5bad08da0e01b76ad435bc5e408f83e1c1c5d428ee9bf1ac:log:24', 'hash': '0xf5720fef9e8d208e5bad08da0e01b76ad435bc5e408f83e1c1c5d428ee9bf1ac', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xc69c97fae607cc7f8e319c4928b9e8e0d3983a64', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:21:34.000Z'}}, {'blockNum': '0x81f6aa', 'uniqueId': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa:log:25', 'hash': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.15023992116102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a249c58be9672bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:23:41.000Z'}}, {'blockNum': '0x81f6aa', 'uniqueId': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa:log:29', 'hash': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 245.15023992116102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a249c58be9672bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:23:41.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860:log:108', 'hash': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1279.4126454924112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455b6ace74e5f2d825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860:log:112', 'hash': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1279.4126454924112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455b6ace74e5f2d825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445:log:126', 'hash': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11.10566678774565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a1f411a656ed629', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445:log:130', 'hash': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 11.10566678774565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a1f411a656ed629', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6b1', 'uniqueId': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1:log:26', 'hash': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 289.3151311133188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faf0dd2e3eaedafca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:11.000Z'}}, {'blockNum': '0x81f6b1', 'uniqueId': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1:log:30', 'hash': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 289.3151311133188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faf0dd2e3eaedafca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:11.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:10', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0xc69c97fae607cc7f8e319c4928b9e8e0d3983a64', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:13', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:14', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea:log:24', 'hash': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.37931307262977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ef6bc9b04fca42ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea:log:28', 'hash': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.37931307262977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ef6bc9b04fca42ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0:log:40', 'hash': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 877.7090686120303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94a90399c705902f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0:log:44', 'hash': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 877.7090686120303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94a90399c705902f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f:log:55', 'hash': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.7950600113968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb61ba7962a4fb91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f:log:59', 'hash': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.7950600113968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb61ba7962a4fb91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604:log:70', 'hash': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.2388765678962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3744d9d884ef893', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604:log:74', 'hash': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.2388765678962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3744d9d884ef893', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b4', 'uniqueId': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641:log:70', 'hash': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641', 'from': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 892.9480716098165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306824d416652d9b2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:47.000Z'}}, {'blockNum': '0x81f6b4', 'uniqueId': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641:log:74', 'hash': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 892.9480716098165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306824d416652d9b2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:47.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3:log:32', 'hash': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.11478766821523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49a6a8b5df444984', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3:log:36', 'hash': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 245.11478766821523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49a6a8b5df444984', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f:log:50', 'hash': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1272.4469474364328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44fabfacfb06b7ae88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f:log:54', 'hash': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1272.4469474364328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44fabfacfb06b7ae88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6c4', 'uniqueId': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5:log:7', 'hash': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.76839277551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb02fcc3b077813a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:18.000Z'}}, {'blockNum': '0x81f6c4', 'uniqueId': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5:log:11', 'hash': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.76839277551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb02fcc3b077813a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:18.000Z'}}, {'blockNum': '0x81f6c6', 'uniqueId': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de:log:16', 'hash': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 49.02074484193221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a84cabb5f06e9962', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:59.000Z'}}, {'blockNum': '0x81f6c6', 'uniqueId': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de:log:20', 'hash': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 49.02074484193221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a84cabb5f06e9962', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:59.000Z'}}, {'blockNum': '0x81f6cc', 'uniqueId': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae:log:37', 'hash': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.5701538574771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f211ca5f154586ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:33:25.000Z'}}, {'blockNum': '0x81f6cc', 'uniqueId': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae:log:41', 'hash': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 146.5701538574771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f211ca5f154586ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:33:25.000Z'}}, {'blockNum': '0x81f6e2', 'uniqueId': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824:log:7', 'hash': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.3471502427332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c0396b94909568b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:38:26.000Z'}}, {'blockNum': '0x81f6e2', 'uniqueId': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824:log:11', 'hash': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.3471502427332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c0396b94909568b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:38:26.000Z'}}, {'blockNum': '0x81f6e4', 'uniqueId': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c:log:29', 'hash': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.2703196510619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3e402eed30a0972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:06.000Z'}}, {'blockNum': '0x81f6e4', 'uniqueId': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c:log:33', 'hash': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.2703196510619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3e402eed30a0972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:06.000Z'}}, {'blockNum': '0x81f6e6', 'uniqueId': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06:log:68', 'hash': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.4779724288667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb6fb34ff734045d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:29.000Z'}}, {'blockNum': '0x81f6e6', 'uniqueId': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06:log:72', 'hash': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.4779724288667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb6fb34ff734045d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:29.000Z'}}, {'blockNum': '0x81f6eb', 'uniqueId': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305:log:6', 'hash': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.1954545593612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb30f807e0cab4402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:40:27.000Z'}}, {'blockNum': '0x81f6eb', 'uniqueId': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305:log:10', 'hash': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.1954545593612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb30f807e0cab4402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:40:27.000Z'}}], 'pageKey': 'fb32df60-3c7e-42c9-aead-da2fb2779b6f'}}
Answer is paginated. Downloading more pages...
Number of returned transfers:  1001
Answer is complete
 
symbol             LUN
group              CPS
date        2020-03-18
hour             19:00
exchange       binance
Name: 413, dtype: object
HERE
 Symbol: LUN, Contract: 0xfa05a73ffe78ef8f1a739473e462c54bae6567d9
Datetime timestamps:  2020-03-18 19:00:00 2020-03-18 07:00:00 2020-03-19 07:00:00
Unix timestamps:  1584511200.0 1584597600.0
Hex Block Numbers:  0x93ea92 0x940421
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x93f405', 'uniqueId': '0x3d32cdcdc125d7fcb9d596680c7bf44161854aea7f6ec036e845dd95c3c35ef0:log:10', 'hash': '0x3d32cdcdc125d7fcb9d596680c7bf44161854aea7f6ec036e845dd95c3c35ef0', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0f0425b0641f340000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T15:00:40.000Z'}}, {'blockNum': '0x93f428', 'uniqueId': '0xc3a9a25d1bf4d1f40edf53d6fe4c559f76ce3e24d69c99f4b255120cccbcb5c8:log:90', 'hash': '0xc3a9a25d1bf4d1f40edf53d6fe4c559f76ce3e24d69c99f4b255120cccbcb5c8', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0f0425b0641f340000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T15:08:51.000Z'}}, {'blockNum': '0x93f48f', 'uniqueId': '0xc8b3692aa928857002912e08f27eb31118e846cb3c1f23fc4b5b40c8a4364552:log:109', 'hash': '0xc8b3692aa928857002912e08f27eb31118e846cb3c1f23fc4b5b40c8a4364552', 'from': '0x07c369a666e5c77cc0c5f290c9e5610305f1980d', 'to': '0xdaa6959ec75daf9a7f91a786e140458683b51e71', 'value': 2.21748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x1ec6124fb0888000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T15:32:27.000Z'}}, {'blockNum': '0x93f64d', 'uniqueId': '0xb11802c13c8ccacebdd667057a5cf0258ec6eb215affe01eada3e23cc32cfdb4:log:1', 'hash': '0xb11802c13c8ccacebdd667057a5cf0258ec6eb215affe01eada3e23cc32cfdb4', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd460097db6eaa32df588390bc1caafaef18c45bd', 'value': 0.0031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0b036efecdc000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T17:10:34.000Z'}}, {'blockNum': '0x93f854', 'uniqueId': '0x2400c3e25b5a72dda08539aeee9ed7fac2e76defbb884b3f602b730111bff076:log:1', 'hash': '0x2400c3e25b5a72dda08539aeee9ed7fac2e76defbb884b3f602b730111bff076', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:01:40.000Z'}}, {'blockNum': '0x93f861', 'uniqueId': '0x00f55215653957dbe2e2755964776719b7b69be1af9ecc2d44de0cec65ed811c:log:0', 'hash': '0x00f55215653957dbe2e2755964776719b7b69be1af9ecc2d44de0cec65ed811c', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 216.0440761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0bb636be8ff7f5a800', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:06:29.000Z'}}, {'blockNum': '0x93f86b', 'uniqueId': '0xd088e9f66b4f41caa3fe9a7d6f37dbfeaa5e655e70ded4b9c7cd4cd6176814f6:log:20', 'hash': '0xd088e9f66b4f41caa3fe9a7d6f37dbfeaa5e655e70ded4b9c7cd4cd6176814f6', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:09:10.000Z'}}, {'blockNum': '0x93f894', 'uniqueId': '0x4f4215012a1e88fddd7e9bf7bf44e4f362f5c82e759387ba4fb2a9d311e3de36:log:9', 'hash': '0x4f4215012a1e88fddd7e9bf7bf44e4f362f5c82e759387ba4fb2a9d311e3de36', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 216.0440761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0bb636be8ff7f5a800', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:19:04.000Z'}}]}}
Number of returned transfers:  8
Answer is complete
 
symbol             ARN
group              CPS
date        2020-04-07
hour             18:00
exchange       binance
Name: 414, dtype: object
HERE
 Symbol: ARN, Contract: 
Datetime timestamps:  2020-04-07 18:00:00 2020-04-07 06:00:00 2020-04-08 06:00:00
Unix timestamps:  1586232000.0 1586318400.0
Hex Block Numbers:  0x95e1e0 0x95fb66
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SYS
group              CPS
date        2020-07-16
hour             18:00
exchange       binance
Name: 419, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SYS, Contract: 
Datetime timestamps:  2020-07-16 18:00:00 2020-07-16 06:00:00 2020-07-17 06:00:00
Unix timestamps:  1594872000.0 1594958400.0
Hex Block Numbers:  0x9fbba3 0x9fd49b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIB
group              CPS
date        2020-07-30
hour             18:00
exchange       binance
Name: 420, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2020-07-30 18:00:00 2020-07-30 06:00:00 2020-07-31 06:00:00
Unix timestamps:  1596081600.0 1596168000.0
Hex Block Numbers:  0xa11d05 0xa135c0
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa11e2c', 'uniqueId': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059:log:16', 'hash': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 51995.428947153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b02ad87a7d8ad68aed0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T05:06:50.000Z'}}, {'blockNum': '0xa11e2c', 'uniqueId': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059:log:21', 'hash': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 51995.428947153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b02ad87a7d8ad68aed0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T05:06:50.000Z'}}, {'blockNum': '0xa11e2d', 'uniqueId': '0xd7e1367a9459dd35ed079788c1cb1a798357aede0ace035414eb357b8a5fba9f:log:4', 'hash': '0xd7e1367a9459dd35ed079788c1cb1a798357aede0ace035414eb357b8a5fba9f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 51891.43808925869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0afd0a5de98f07000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T05:06:58.000Z'}}, {'blockNum': '0xa1208f', 'uniqueId': '0x8e4a341baa3aa0380b9925afe29a180ecd31195030e49291876f74e9613866e1:log:14', 'hash': '0x8e4a341baa3aa0380b9925afe29a180ecd31195030e49291876f74e9613866e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'value': 874.44060897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2f674d1cdf911b6400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T07:27:22.000Z'}}, {'blockNum': '0xa12098', 'uniqueId': '0x9ed56f9f00fec76fb131b2985c6cffda6f1b197f312a510dd56f5c3f9dfc6cee:log:3', 'hash': '0x9ed56f9f00fec76fb131b2985c6cffda6f1b197f312a510dd56f5c3f9dfc6cee', 'from': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'to': '0x599b67eb4ca7eda16dd1fbc2d6bf4f06db2a381c', 'value': 1772.74214637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6019bd45bbab621400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T07:28:12.000Z'}}, {'blockNum': '0xa120c4', 'uniqueId': '0xa1bcbe91f1f030ecd4e03fd5bfd10bb16b3027bbb8b054a7b435b5379c9ca00f:log:36', 'hash': '0xa1bcbe91f1f030ecd4e03fd5bfd10bb16b3027bbb8b054a7b435b5379c9ca00f', 'from': '0x599b67eb4ca7eda16dd1fbc2d6bf4f06db2a381c', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1772.74214637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6019bd45bbab621400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T07:36:45.000Z'}}, {'blockNum': '0xa123a1', 'uniqueId': '0x73a1b0f2eb717bc20c92ebad242e37fc8028f8bcaba6dd58663691cf25b69da2:log:49', 'hash': '0x73a1b0f2eb717bc20c92ebad242e37fc8028f8bcaba6dd58663691cf25b69da2', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x7383ea966e36b0d58f80e804fde29fffc52507a8', 'value': 1344.1733994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x48de273904b6441000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T10:31:10.000Z'}}, {'blockNum': '0xa12592', 'uniqueId': '0x862695a575f3fbed53d9ce2db5a815226ead289ffcf91420c4abb85f0fb98ac3:log:194', 'hash': '0x862695a575f3fbed53d9ce2db5a815226ead289ffcf91420c4abb85f0fb98ac3', 'from': '0x7383ea966e36b0d58f80e804fde29fffc52507a8', 'to': '0xd3092c77aef5c384686dc0ccc8f3462035d0f6e6', 'value': 3170.3885614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xabddfacf27a0b5b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T12:27:19.000Z'}}, {'blockNum': '0xa12596', 'uniqueId': '0x59fbfeebc499b5014858cabb7e2a54a604239f9075333ff5c4166ef247e5481a:log:306', 'hash': '0x59fbfeebc499b5014858cabb7e2a54a604239f9075333ff5c4166ef247e5481a', 'from': '0xd3092c77aef5c384686dc0ccc8f3462035d0f6e6', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 3170.3885614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xabddfacf27a0b5b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T12:28:20.000Z'}}, {'blockNum': '0xa12658', 'uniqueId': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03:log:77', 'hash': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 47713.714808225144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a1a90cf43fc3b000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T13:09:28.000Z'}}, {'blockNum': '0xa12658', 'uniqueId': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03:log:79', 'hash': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 47713.714808225144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a1a90cf43fc3b000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T13:09:28.000Z'}}, {'blockNum': '0xa12666', 'uniqueId': '0xaad3fcea904e2c8795e9a1d99f0073a796985b42616c853030cdd210c4764018:log:72', 'hash': '0xaad3fcea904e2c8795e9a1d99f0073a796985b42616c853030cdd210c4764018', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 47850.96175894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a22017e627eb3a99800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T13:12:52.000Z'}}, {'blockNum': '0xa12870', 'uniqueId': '0x268e924c239a7190689b50cc728c5793ffff2873d45debf0ec9e55ea86c30896:log:25', 'hash': '0x268e924c239a7190689b50cc728c5793ffff2873d45debf0ec9e55ea86c30896', 'from': '0x776b38a4b6f92c1b28d465cbc5e248a3efffe87c', 'to': '0x13d25c62d041f62695bee4695d776e387766a726', 'value': 80.893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04629daae917ac8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:09:17.000Z'}}, {'blockNum': '0xa128c6', 'uniqueId': '0xde983a05c4b5512561f84a34b5d394d60da5e4fe3846444d6422add319db8e63:log:40', 'hash': '0xde983a05c4b5512561f84a34b5d394d60da5e4fe3846444d6422add319db8e63', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb24d403b659274cff5a2c00f4b51f2113d402b80', 'value': 1334.51945224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x48582d8339a6132000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:29:21.000Z'}}, {'blockNum': '0xa12929', 'uniqueId': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55:log:180', 'hash': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 47592.325558372766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a13fc32046471000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:51:25.000Z'}}, {'blockNum': '0xa12929', 'uniqueId': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55:log:182', 'hash': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 47592.325558372766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a13fc32046471000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:51:25.000Z'}}, {'blockNum': '0xa12934', 'uniqueId': '0xd8397914fa5b709ee5e9d1267e6e1073c56fda728ee4b0441ad520fc498202a9:log:7', 'hash': '0xd8397914fa5b709ee5e9d1267e6e1073c56fda728ee4b0441ad520fc498202a9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 47728.96129285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a1b6465a8f8e51f7400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:54:13.000Z'}}, {'blockNum': '0xa12b53', 'uniqueId': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7:log:38', 'hash': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 101548.37817363147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1580f2d8328d2ed2d4d6', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T17:59:54.000Z'}}, {'blockNum': '0xa12b53', 'uniqueId': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7:log:43', 'hash': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 101548.37817363147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1580f2d8328d2ed2d4d6', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T17:59:54.000Z'}}, {'blockNum': '0xa12b54', 'uniqueId': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708:log:39', 'hash': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 45806.6257272118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09b32ea1ccfea0866bef', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:12.000Z'}}, {'blockNum': '0xa12b54', 'uniqueId': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708:log:44', 'hash': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 45806.6257272118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09b32ea1ccfea0866bef', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:12.000Z'}}, {'blockNum': '0xa12b55', 'uniqueId': '0xda17d27172b3e6ffe2e1bcde23a6c122dda4e4ad6bef19fcb0b716f6a3233be8:log:179', 'hash': '0xda17d27172b3e6ffe2e1bcde23a6c122dda4e4ad6bef19fcb0b716f6a3233be8', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 3059.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa5db178013039e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:33.000Z'}}, {'blockNum': '0xa12b56', 'uniqueId': '0xa3d6fd35108f89f3f33b1352338f30950ec565141f66d040bc7ba233196355a6:log:268', 'hash': '0xa3d6fd35108f89f3f33b1352338f30950ec565141f66d040bc7ba233196355a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 1586.62959709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5602e8ac3abe99d400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:38.000Z'}}, {'blockNum': '0xa12b58', 'uniqueId': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad:log:28', 'hash': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 44732.30676412806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0978f176200e47f6ccf5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:14.000Z'}}, {'blockNum': '0xa12b58', 'uniqueId': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad:log:33', 'hash': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 44732.30676412806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0978f176200e47f6ccf5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:14.000Z'}}, {'blockNum': '0xa12b58', 'uniqueId': '0x26c353adf1158df0f7993708f40a9ad5b7c367ad164bea46cf5aefbc49a08155:log:179', 'hash': '0x26c353adf1158df0f7993708f40a9ad5b7c367ad164bea46cf5aefbc49a08155', 'from': '0xdc79bb9a038834ee96202e8dd0c4ba6d568dcea5', 'to': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'value': 53900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b69ecc3498f92b00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:14.000Z'}}, {'blockNum': '0xa12b5a', 'uniqueId': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1:log:22', 'hash': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 43695.35603575001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0940bae11698abd893df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:46.000Z'}}, {'blockNum': '0xa12b5a', 'uniqueId': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1:log:27', 'hash': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 43695.35603575001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0940bae11698abd893df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:46.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8:log:25', 'hash': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 138604.31619654296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1d59c14a179d90004a72', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8:log:30', 'hash': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xc640caba272414689b21ebcd60d97b912359504d', 'value': 138604.31619654296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1d59c14a179d90004a72', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x26a347c420b59d775e0fc3e94aec44864d48422b914b92123322e56870783839:log:118', 'hash': '0x26a347c420b59d775e0fc3e94aec44864d48422b914b92123322e56870783839', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 234935.39244669044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x31bfdf86613564f9b952', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180:log:134', 'hash': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180:log:139', 'hash': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5f', 'uniqueId': '0x90c164a849cc7752b0c6d6485983299872944a4e73c6d7c4e7764926f5d9e589:log:285', 'hash': '0x90c164a849cc7752b0c6d6485983299872944a4e73c6d7c4e7764926f5d9e589', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 11101.54716981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0259d0ea7c6ca8323400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:03:12.000Z'}}, {'blockNum': '0xa12b62', 'uniqueId': '0xc5e952f1df98ec9428fd5ba88a36d53a4d5a456ee45ef47b3db34a2d94254c83:log:54', 'hash': '0xc5e952f1df98ec9428fd5ba88a36d53a4d5a456ee45ef47b3db34a2d94254c83', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xaec886a56346d6c7b113c91cb6c03adcc29d18d3', 'value': 20950.12195428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x046fb558d6ea13d51000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:03:42.000Z'}}, {'blockNum': '0xa12b69', 'uniqueId': '0xf0bc427f8a929c36a08e5cf222dd5714fead570fc41a9f085f03bbf682a59dbb:log:25', 'hash': '0xf0bc427f8a929c36a08e5cf222dd5714fead570fc41a9f085f03bbf682a59dbb', 'from': '0xc640caba272414689b21ebcd60d97b912359504d', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:04:30.000Z'}}, {'blockNum': '0xa12b69', 'uniqueId': '0x092f7f151d6e99549eb93df3bd1bf6da801bcf8c34bc2cb991154100fc9ae3d4:log:54', 'hash': '0x092f7f151d6e99549eb93df3bd1bf6da801bcf8c34bc2cb991154100fc9ae3d4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 257150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3674212280e893380000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:04:30.000Z'}}, {'blockNum': '0xa12b79', 'uniqueId': '0x39d941c1b58bf3849d85750ff18fafdf6e8bd897462f9e5266fac648e283d4d6:log:279', 'hash': '0x39d941c1b58bf3849d85750ff18fafdf6e8bd897462f9e5266fac648e283d4d6', 'from': '0x43fd7a871b29f32ba8ab905c912c905a139e8c37', 'to': '0x134fa523f1037db8808712f08b874606695873ae', 'value': 583096.173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x7b79b4f5df921e048000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:07:51.000Z'}}, {'blockNum': '0xa12b81', 'uniqueId': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e:log:33', 'hash': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e', 'from': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:09:12.000Z'}}, {'blockNum': '0xa12b81', 'uniqueId': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e:log:35', 'hash': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:09:12.000Z'}}, {'blockNum': '0xa12b8d', 'uniqueId': '0xd31684165aeaedccd71f6fbbc295a85066947077539f690d2e345b2bc206a6f1:log:12', 'hash': '0xd31684165aeaedccd71f6fbbc295a85066947077539f690d2e345b2bc206a6f1', 'from': '0xc640caba272414689b21ebcd60d97b912359504d', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 138504.31619654296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1d545582b9702cf04a72', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:12:17.000Z'}}, {'blockNum': '0xa12b98', 'uniqueId': '0xcccbe3473a440d2323fab1c81e96ba1b05e5d15d7d3b36f9eaeeb872c270fb12:log:153', 'hash': '0xcccbe3473a440d2323fab1c81e96ba1b05e5d15d7d3b36f9eaeeb872c270fb12', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'value': 3411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb8e9225bbf596c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:14:58.000Z'}}, {'blockNum': '0xa12b99', 'uniqueId': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709:log:35', 'hash': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 65873.46461966219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0df301f6d3025b2d9ede', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:15:42.000Z'}}, {'blockNum': '0xa12b99', 'uniqueId': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709:log:40', 'hash': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 65873.46461966219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0df301f6d3025b2d9ede', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:15:42.000Z'}}, {'blockNum': '0xa12b9d', 'uniqueId': '0x208ae3fe5095e7ee3590a528168b592391c896b56f1c765168b3b6b6c883b98a:log:15', 'hash': '0x208ae3fe5095e7ee3590a528168b592391c896b56f1c765168b3b6b6c883b98a', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 65873.46461966219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0df301f6d3025b2d9ede', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:16:52.000Z'}}, {'blockNum': '0xa12bad', 'uniqueId': '0x5b3e605d5fcc95f23f6a51ae52e848417834f023cf2f5f267d01c03a0337a5f6:log:25', 'hash': '0x5b3e605d5fcc95f23f6a51ae52e848417834f023cf2f5f267d01c03a0337a5f6', 'from': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb8e9225bbf596c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:20:55.000Z'}}, {'blockNum': '0xa12bae', 'uniqueId': '0x2c17b3b67de7cb06017795517c6f779d88184c60f055c0b3e24fff2e25ba2dbf:log:192', 'hash': '0x2c17b3b67de7cb06017795517c6f779d88184c60f055c0b3e24fff2e25ba2dbf', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xec601f7395e98b14cc26a4c0412aabc0c9291ee4', 'value': 291.95686278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fd3b723d83b5d5800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:21:55.000Z'}}, {'blockNum': '0xa12bb3', 'uniqueId': '0x6086b207187d8bfe2449a8b45b5c23b92e940d5f412d446cb114f6542cb42bc1:log:193', 'hash': '0x6086b207187d8bfe2449a8b45b5c23b92e940d5f412d446cb114f6542cb42bc1', 'from': '0xce1bc88d09d47ba294135ed6d526cfaca21cc76b', 'to': '0x26d84508264b0d266c098ca2350c67f29fad704e', 'value': 56689.182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0c01207054d75c430000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:23:03.000Z'}}, {'blockNum': '0xa12bd4', 'uniqueId': '0x441ee5bd42b7e30d049fccce8610afa3f168407b7126c7b1f1412f9d5dd84c38:log:42', 'hash': '0x441ee5bd42b7e30d049fccce8610afa3f168407b7126c7b1f1412f9d5dd84c38', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 91032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1346dac79bcb0f600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:30:59.000Z'}}, {'blockNum': '0xa12be5', 'uniqueId': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23:log:10', 'hash': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 71441.07007190151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0f20d402df6208000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:33:51.000Z'}}, {'blockNum': '0xa12be5', 'uniqueId': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23:log:12', 'hash': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 71441.07007190151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0f20d402df6208000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:33:51.000Z'}}, {'blockNum': '0xa12be8', 'uniqueId': '0x583a82b3f7afab030e03149cba2137a0086973ccd13fc377338beacf8094586b:log:80', 'hash': '0x583a82b3f7afab030e03149cba2137a0086973ccd13fc377338beacf8094586b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 3405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb895de13896d140000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:34:20.000Z'}}, {'blockNum': '0xa12c04', 'uniqueId': '0x863ce71ef168c9211f4883f81833dd3a19f7808fb4b6ed288508e5e6a6b6c71e:log:38', 'hash': '0x863ce71ef168c9211f4883f81833dd3a19f7808fb4b6ed288508e5e6a6b6c71e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x73a379715459e794a1c4372df0f8a1772eb3c80a', 'value': 1194.2292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x40bd426a1a3eed0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:40:38.000Z'}}, {'blockNum': '0xa12c59', 'uniqueId': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a:log:26', 'hash': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 21410.233178640345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0488a6ac47b244468193', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:56:31.000Z'}}, {'blockNum': '0xa12c59', 'uniqueId': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a:log:31', 'hash': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 21410.233178640345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0488a6ac47b244468193', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:56:31.000Z'}}, {'blockNum': '0xa12c9b', 'uniqueId': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56:log:123', 'hash': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 41743.34301504236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08d6e941ba7893800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:09:11.000Z'}}, {'blockNum': '0xa12c9b', 'uniqueId': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56:log:125', 'hash': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 41743.34301504236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08d6e941ba7893800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:09:11.000Z'}}, {'blockNum': '0xa12cc3', 'uniqueId': '0xeb39f7b145b0f0588baa44ca4bd1429923e8a7cb5ecae5ddb72721ee1fc3ffbc:log:0', 'hash': '0xeb39f7b145b0f0588baa44ca4bd1429923e8a7cb5ecae5ddb72721ee1fc3ffbc', 'from': '0x4732d5923fc114fa73ed0f96c81502615a918688', 'to': '0x3b45b6faeed933e958655a89b75d7fe7465d8164', 'value': 2773.85874999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x965f05ec951705fc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:18:23.000Z'}}, {'blockNum': '0xa12ccc', 'uniqueId': '0x32e2d717d97d7f420a11602e44719138c4afa33b05d329bb25f572d2b1e56e21:log:38', 'hash': '0x32e2d717d97d7f420a11602e44719138c4afa33b05d329bb25f572d2b1e56e21', 'from': '0x3b45b6faeed933e958655a89b75d7fe7465d8164', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2773.85874999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x965f05ec951705fc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:20:45.000Z'}}, {'blockNum': '0xa12ce1', 'uniqueId': '0xf73ed081658026bf5e91d2c4d9e466efd5692b82c559406983203c7fcf6187ef:log:38', 'hash': '0xf73ed081658026bf5e91d2c4d9e466efd5692b82c559406983203c7fcf6187ef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb63150b1ece82008da567df900c21da3647d9620', 'value': 11371.845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0268780d48e20a008000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:25:24.000Z'}}, {'blockNum': '0xa12ce1', 'uniqueId': '0x0cbc41a174d090b5b1b8decfbabd86005f2bd5ea85c951ad2000a8d3c338f9c4:log:39', 'hash': '0x0cbc41a174d090b5b1b8decfbabd86005f2bd5ea85c951ad2000a8d3c338f9c4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x72962fc4d5d695f6d49bd885e0e635b0524ff554', 'value': 1256.0136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4416b0b28e03920000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:25:24.000Z'}}, {'blockNum': '0xa12ce5', 'uniqueId': '0xb71b16a3b854dc18c1241868cb83b90f3f27971ed8a671cc566fd8ded54b7d96:log:46', 'hash': '0xb71b16a3b854dc18c1241868cb83b90f3f27971ed8a671cc566fd8ded54b7d96', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x211f540ec883ac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:26:02.000Z'}}, {'blockNum': '0xa12ceb', 'uniqueId': '0x195b4bd708d0102d6d80cb1e60ef2ee045ec04e3729a1b5c6c501ad835a72d2d:log:125', 'hash': '0x195b4bd708d0102d6d80cb1e60ef2ee045ec04e3729a1b5c6c501ad835a72d2d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x21db968168db8c071b72d13afa0b4cd89e6b63c9', 'value': 1132.51717735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3d64d5447776d0bc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:28:01.000Z'}}, {'blockNum': '0xa12cf0', 'uniqueId': '0xdc496852ee18a4fe640303a9fd0d441705c865ddff4d4ba9fd4225e6aab73815:log:182', 'hash': '0xdc496852ee18a4fe640303a9fd0d441705c865ddff4d4ba9fd4225e6aab73815', 'from': '0x19ac1f3c91cfafefa8cf37397120c8633360f42b', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:28:37.000Z'}}, {'blockNum': '0xa12d4d', 'uniqueId': '0xdf0f4e94d373d7d279e5c967c3fe002ca5a51705e6972a5eb7995adacfd0638a:log:24', 'hash': '0xdf0f4e94d373d7d279e5c967c3fe002ca5a51705e6972a5eb7995adacfd0638a', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:49:08.000Z'}}, {'blockNum': '0xa12d4e', 'uniqueId': '0xeed799ffa17813675f16e4a7bbbc157c2ac36403e1b287292bc48ee72210e688:log:62', 'hash': '0xeed799ffa17813675f16e4a7bbbc157c2ac36403e1b287292bc48ee72210e688', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa1c3519e1725a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:49:24.000Z'}}, {'blockNum': '0xa12d9e', 'uniqueId': '0x9f31bf2506d844df7a8373e2b74b323f67c97ec0635a0858a392552d68042714:log:71', 'hash': '0x9f31bf2506d844df7a8373e2b74b323f67c97ec0635a0858a392552d68042714', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x84afecbe08de370d1687662ceb312c2abed5a593', 'value': 83.00000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x047fdb3c419977e400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T20:08:40.000Z'}}, {'blockNum': '0xa12ddc', 'uniqueId': '0x3727a4a290536a95873dd9dedfb28a5e6cc401898d34105d7b217dd888cdd6d6:log:32', 'hash': '0x3727a4a290536a95873dd9dedfb28a5e6cc401898d34105d7b217dd888cdd6d6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x15d9c7f547c3192ac0502202c175b132459e1fb6', 'value': 4480.375584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2e1b39f99cd520000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T20:21:36.000Z'}}, {'blockNum': '0xa12deb', 'uniqueId': '0x2ea285c6c2863391197ecf43ddb73469548a1460460b1a4026752837e06d974f:log:113', 'hash': '0x2ea285c6c2863391197ecf43ddb73469548a1460460b1a4026752837e06d974f', 'from': '0xa07def8a7ccbe1ba41fbf44022f10834d41b5e94', 'to': '0xc4086b1b7f80dcb778cb5e2a6f9f3c55e5088b62', 'value': 3823.217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xcf41cb553a6a9e8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T20:25:44.000Z'}}, {'blockNum': '0xa12ece', 'uniqueId': '0x6e98336a8c8db1e71cad55576e1e8b7f2531ad1587349b20815fedae7fd2a530:log:17', 'hash': '0x6e98336a8c8db1e71cad55576e1e8b7f2531ad1587349b20815fedae7fd2a530', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xaf1d587a74c39c67554c7b85d638256912e137ad', 'value': 25216.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0556ff6326ef91e18000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:16:42.000Z'}}, {'blockNum': '0xa12ee6', 'uniqueId': '0xba8b9fe4da95ab497ce282d162721339aeeda04c6f160e24157991472d58d5ec:log:42', 'hash': '0xba8b9fe4da95ab497ce282d162721339aeeda04c6f160e24157991472d58d5ec', 'from': '0x7728156d25f977a2c76f10628404085b1433cb0e', 'to': '0x0b69adc6abc3ec9531f789cb633f3e224a7ce2d8', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:23:11.000Z'}}, {'blockNum': '0xa12ee8', 'uniqueId': '0xa43b11be697609647873767c4545ce5bbf4f3adf3b4b39f24b27a4f8ef62b183:log:16', 'hash': '0xa43b11be697609647873767c4545ce5bbf4f3adf3b4b39f24b27a4f8ef62b183', 'from': '0x0b69adc6abc3ec9531f789cb633f3e224a7ce2d8', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:23:20.000Z'}}, {'blockNum': '0xa12f06', 'uniqueId': '0x72cccb75c547d7c07e078180af2c7346b7bd297e24ace7c4f71145721beabfc7:log:24', 'hash': '0x72cccb75c547d7c07e078180af2c7346b7bd297e24ace7c4f71145721beabfc7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 691.61159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x257e09f4ca2d1a6000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:31:08.000Z'}}, {'blockNum': '0xa12f08', 'uniqueId': '0xa9cb5107b1baffa971c7186eba96fb2cdfa019af11f1cc53bbacb6e59b100cf5:log:125', 'hash': '0xa9cb5107b1baffa971c7186eba96fb2cdfa019af11f1cc53bbacb6e59b100cf5', 'from': '0x29dc02525e01fc1460d2c2309dc63d716a1cc86f', 'to': '0x791e589ff47c30b30aad340949794aa1d4246448', 'value': 153555.6768904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x20844519bef9774b4000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:31:37.000Z'}}, {'blockNum': '0xa12fa1', 'uniqueId': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad:log:58', 'hash': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 39630.899742761045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x086465379e8907f299d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:08:41.000Z'}}, {'blockNum': '0xa12fa1', 'uniqueId': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad:log:63', 'hash': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 39630.899742761045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x086465379e8907f299d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:08:41.000Z'}}, {'blockNum': '0xa12fcc', 'uniqueId': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2:log:78', 'hash': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 30994.18247776134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x069032b00d4ea936d184', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:16:56.000Z'}}, {'blockNum': '0xa12fcc', 'uniqueId': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2:log:83', 'hash': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 30994.18247776134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x069032b00d4ea936d184', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:16:56.000Z'}}, {'blockNum': '0xa12fe8', 'uniqueId': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc:log:2', 'hash': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 48481.97818242231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a44369b106240000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:22:20.000Z'}}, {'blockNum': '0xa12fe8', 'uniqueId': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc:log:4', 'hash': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 48481.97818242231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a44369b106240000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:22:20.000Z'}}, {'blockNum': '0xa12fe8', 'uniqueId': '0x9a733b3ea74dcbe9505f0964e4908dba47d3da3e463b62d6fcee6f4f4f9dd140:log:29', 'hash': '0x9a733b3ea74dcbe9505f0964e4908dba47d3da3e463b62d6fcee6f4f4f9dd140', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1235.95664235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x43005811d6a0444c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:22:20.000Z'}}, {'blockNum': '0xa12ff3', 'uniqueId': '0x20305c4b960e6c38eee849018ad787bac876d8e5e1b57d95b266dca778082f07:log:132', 'hash': '0x20305c4b960e6c38eee849018ad787bac876d8e5e1b57d95b266dca778082f07', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 1235.95664235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x43005811d6a0444c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:23:43.000Z'}}, {'blockNum': '0xa12ff9', 'uniqueId': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84:log:39', 'hash': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 48423.22128010875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4107309d097a08292c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:25:19.000Z'}}, {'blockNum': '0xa12ff9', 'uniqueId': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84:log:44', 'hash': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 48423.22128010875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4107309d097a08292c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:25:19.000Z'}}, {'blockNum': '0xa13000', 'uniqueId': '0xba606507b59da5d661b81f1f52352ea0e64a8431d271cd935219d5c8289135b5:log:115', 'hash': '0xba606507b59da5d661b81f1f52352ea0e64a8431d271cd935219d5c8289135b5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2921.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9e5ff5033ac7b60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:27:08.000Z'}}, {'blockNum': '0xa13001', 'uniqueId': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25:log:89', 'hash': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 51708.31710276712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af31d0d7a8fa9ba92a4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:27:35.000Z'}}, {'blockNum': '0xa13001', 'uniqueId': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25:log:94', 'hash': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 51708.31710276712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af31d0d7a8fa9ba92a4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:27:35.000Z'}}, {'blockNum': '0xa13006', 'uniqueId': '0xc2f37c362425f3e54c3782f8a305b41a89147f645e463d62fb040425ea6564dd:log:5', 'hash': '0xc2f37c362425f3e54c3782f8a305b41a89147f645e463d62fb040425ea6564dd', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 51708.31710276712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af31d0d7a8fa9ba92a4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:28:31.000Z'}}, {'blockNum': '0xa13009', 'uniqueId': '0xe9f024477931cd5030c56b425ca53bd192c65a12ba6b6c00f8fa4f08d7e276c5:log:68', 'hash': '0xe9f024477931cd5030c56b425ca53bd192c65a12ba6b6c00f8fa4f08d7e276c5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1559.51493763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x548a9e0d1c379dac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:02.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:141', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:146', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:147', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:151', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x2bde5d7733a578c3ff1c79c25b990917b316d084', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300f', 'uniqueId': '0x22f3aedff19a7626937d6f74aefb5571bc5ecf8480109a64355faa694d0f816f:log:172', 'hash': '0x22f3aedff19a7626937d6f74aefb5571bc5ecf8480109a64355faa694d0f816f', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 1559.51493763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x548a9e0d1c379dac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:30:40.000Z'}}, {'blockNum': '0xa13017', 'uniqueId': '0x5f47983459a2df3f7924ee8360f3b81cd744353e97530457329165121bd64e3b:log:45', 'hash': '0x5f47983459a2df3f7924ee8360f3b81cd744353e97530457329165121bd64e3b', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'value': 6915.40386948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0176e281ebe97d319000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:32:12.000Z'}}, {'blockNum': '0xa13018', 'uniqueId': '0x32498a2febc3e4a50c925132931917dca5d1f051f35863ce93e10feacfc8db2e:log:25', 'hash': '0x32498a2febc3e4a50c925132931917dca5d1f051f35863ce93e10feacfc8db2e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 824.8943411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2cb7b568c0bf683800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:32:33.000Z'}}, {'blockNum': '0xa13018', 'uniqueId': '0xa94223ea81f22c7c50fe4a66d6b9d251dd134532eea835e51dc3e6e40a9a7e99:log:26', 'hash': '0xa94223ea81f22c7c50fe4a66d6b9d251dd134532eea835e51dc3e6e40a9a7e99', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 786.1308698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2a9dc1e4fbb5db9000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:32:33.000Z'}}, {'blockNum': '0xa13027', 'uniqueId': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd:log:6', 'hash': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 40372.12240378733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x088c93bf81929d800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:34:45.000Z'}}, {'blockNum': '0xa13027', 'uniqueId': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd:log:8', 'hash': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 40372.12240378733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x088c93bf81929d800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:34:45.000Z'}}, {'blockNum': '0xa1303d', 'uniqueId': '0x60aba2382c8c424ef7222735edf1b70736fae759214c98ee8464af822eee207b:log:7', 'hash': '0x60aba2382c8c424ef7222735edf1b70736fae759214c98ee8464af822eee207b', 'from': '0x2bde5d7733a578c3ff1c79c25b990917b316d084', 'to': '0xece4870ceb3571bc66720a3283d526fe3871f913', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:39:35.000Z'}}, {'blockNum': '0xa1305a', 'uniqueId': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d:log:53', 'hash': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 39968.401179749446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0876b0fd9751254aeae9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:46:07.000Z'}}, {'blockNum': '0xa1305a', 'uniqueId': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d:log:55', 'hash': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 39968.401179749446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0876b0fd9751254aeae9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:46:07.000Z'}}, {'blockNum': '0xa1306c', 'uniqueId': '0x627c6661dad47ec62160a0cc5bcfe8820a18e0c1ad4d344442cb01a717aa7768:log:77', 'hash': '0x627c6661dad47ec62160a0cc5bcfe8820a18e0c1ad4d344442cb01a717aa7768', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x47a542c63bd8cebd016aecf4d0a737cfa9067b3c', 'value': 1066.3165667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x39ce1d73d38b9fb800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:50:13.000Z'}}, {'blockNum': '0xa13075', 'uniqueId': '0x424a54c176ec1fd2efe95659896a7a589b4e4e260e72a19a7cf3940b61e88990:log:34', 'hash': '0x424a54c176ec1fd2efe95659896a7a589b4e4e260e72a19a7cf3940b61e88990', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd756f9b34d9a746b9029f06531e5123fe6b2779e', 'value': 5449.09664997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x012765683498a8eaf400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:52:44.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0xe9eb70894018ded72eb5e0de408a6c117f1f673099836e6228f0d630cb7b695b:log:211', 'hash': '0xe9eb70894018ded72eb5e0de408a6c117f1f673099836e6228f0d630cb7b695b', 'from': '0x53f3900b1f9764998f9df9d3c83d7c260f5444ea', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0201db8cf61b07bc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0x330539b5d92841b3bedcdb3dd0f18a3a556461b236b3316ba9c96be58ab38482:log:212', 'hash': '0x330539b5d92841b3bedcdb3dd0f18a3a556461b236b3316ba9c96be58ab38482', 'from': '0xe5592ba2dca5ae6793e17d5d190f8cd5c131ec01', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x020f239bd00a3a700000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0x0ea9e5db4bc06cd16790326865ef96d58bfced460004b4a9e9b70ca8fab0eff1:log:213', 'hash': '0x0ea9e5db4bc06cd16790326865ef96d58bfced460004b4a9e9b70ca8fab0eff1', 'from': '0xb12127552734c9d8ebe649332f98dba800fa2c16', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0xfc01a31d6f5261c209b396b802690aed249afca12388e96821b870c3dd5aa76e:log:214', 'hash': '0xfc01a31d6f5261c209b396b802690aed249afca12388e96821b870c3dd5aa76e', 'from': '0xc7eb2136e8904a94c044a4543b799f413f067754', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b8', 'uniqueId': '0x5cc77a189b17a34830bc914961f2a31d96bb2a913e1c914e754120f1b4a27525:log:96', 'hash': '0x5cc77a189b17a34830bc914961f2a31d96bb2a913e1c914e754120f1b4a27525', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01605d9ee98627100000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:09:09.000Z'}}, {'blockNum': '0xa130b9', 'uniqueId': '0xd533be0207ba5cd174b95ffb891bf594116f8011004d79c4cdb9d1ede05a960e:log:62', 'hash': '0xd533be0207ba5cd174b95ffb891bf594116f8011004d79c4cdb9d1ede05a960e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd756f9b34d9a746b9029f06531e5123fe6b2779e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:10:00.000Z'}}, {'blockNum': '0xa1314e', 'uniqueId': '0x50e2e9cda852072124b0199507ba1df9a4b604625aa566fb43ebae70ef4febe8:log:128', 'hash': '0x50e2e9cda852072124b0199507ba1df9a4b604625aa566fb43ebae70ef4febe8', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3732.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xca599e594ecc960000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:43:10.000Z'}}, {'blockNum': '0xa1314f', 'uniqueId': '0x0db7683214b26370aad7cba35c0c41d56512f241a63fb82dc0f70ec88cf8d14d:log:92', 'hash': '0x0db7683214b26370aad7cba35c0c41d56512f241a63fb82dc0f70ec88cf8d14d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2871.3805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9ba868c7862b854000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:43:39.000Z'}}, {'blockNum': '0xa131bf', 'uniqueId': '0x55141b9b9afc35e092b18035c1e419caed9dbcdc177ff507fb7314b75b84225c:log:75', 'hash': '0x55141b9b9afc35e092b18035c1e419caed9dbcdc177ff507fb7314b75b84225c', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x2b8f8806bd55425d25ede208337da00905f8f8ce', 'value': 3018.3657394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa3a03d3fff4a455000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:04:02.000Z'}}, {'blockNum': '0xa131c8', 'uniqueId': '0x3ecbd7ad182ac115f9e7e4afe07f293d82c7e122761de873e819d208f5dd11ca:log:31', 'hash': '0x3ecbd7ad182ac115f9e7e4afe07f293d82c7e122761de873e819d208f5dd11ca', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 3459.481661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xbb89f3d18f6354d000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:07:03.000Z'}}, {'blockNum': '0xa131ce', 'uniqueId': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b:log:29', 'hash': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 53554.383763457314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b57305fc1941c8f0507', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:08:38.000Z'}}, {'blockNum': '0xa131ce', 'uniqueId': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b:log:34', 'hash': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 53554.383763457314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b57305fc1941c8f0507', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:08:38.000Z'}}, {'blockNum': '0xa131da', 'uniqueId': '0x6452a82a557989b0e46cbc2e9063c18ccba7afe79c76d7d9d29ec0cc383f3751:log:74', 'hash': '0x6452a82a557989b0e46cbc2e9063c18ccba7afe79c76d7d9d29ec0cc383f3751', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x81d8d46d2e1343960ae282088343a255331743ce', 'value': 1402.2815918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4c0490fe22c451b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:11:54.000Z'}}, {'blockNum': '0xa13206', 'uniqueId': '0x517613ce5f2276487af2aead5c552098b0262181c3ef22ba2e7eb8dab30c7112:log:92', 'hash': '0x517613ce5f2276487af2aead5c552098b0262181c3ef22ba2e7eb8dab30c7112', 'from': '0x7728156d25f977a2c76f10628404085b1433cb0e', 'to': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:22:41.000Z'}}, {'blockNum': '0xa13207', 'uniqueId': '0xc98eb80e1d5ab09cf8e2c377fa982a89907a8b1be73458a1941ef9458d3afc0f:log:56', 'hash': '0xc98eb80e1d5ab09cf8e2c377fa982a89907a8b1be73458a1941ef9458d3afc0f', 'from': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:23:09.000Z'}}, {'blockNum': '0xa13216', 'uniqueId': '0x6867503b14a2a18572dacb69d1eaab4b899f4a55db2fb38bf634a2de9052b442:log:55', 'hash': '0x6867503b14a2a18572dacb69d1eaab4b899f4a55db2fb38bf634a2de9052b442', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:27:02.000Z'}}, {'blockNum': '0xa1321f', 'uniqueId': '0xb61138ce92cd45b29dd6be4c494151603af02bd82c3850eee9d207198ef82a71:log:259', 'hash': '0xb61138ce92cd45b29dd6be4c494151603af02bd82c3850eee9d207198ef82a71', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5fba47b0855d9863162aafbbafd08c1e770edb42', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:28:44.000Z'}}, {'blockNum': '0xa13257', 'uniqueId': '0x960827a11ca7563b36c49e84fbb8230320a48a4e854065ec17e440ca206ec0ff:log:29', 'hash': '0x960827a11ca7563b36c49e84fbb8230320a48a4e854065ec17e440ca206ec0ff', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:45:19.000Z'}}, {'blockNum': '0xa1325e', 'uniqueId': '0x0f77ae3763676c69a5b676bb8228bcf27cd30bde3569e66d04bc2668fe0ce84b:log:74', 'hash': '0x0f77ae3763676c69a5b676bb8228bcf27cd30bde3569e66d04bc2668fe0ce84b', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf057964df79946e3f65d054f1e1700d7085be1fe', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:46:55.000Z'}}, {'blockNum': '0xa13263', 'uniqueId': '0xf121e6c54bb331e2753403c7e30246312142ddee4f2e02bb5eafffed89f42203:log:79', 'hash': '0xf121e6c54bb331e2753403c7e30246312142ddee4f2e02bb5eafffed89f42203', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3768.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xcc4d380a9256a60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:47:37.000Z'}}, {'blockNum': '0xa13266', 'uniqueId': '0x39cd1efbd508df857d701eac80dbe54e7ba6edf8ca52dfece9b083798ddba65f:log:226', 'hash': '0x39cd1efbd508df857d701eac80dbe54e7ba6edf8ca52dfece9b083798ddba65f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9d27b4f470916c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:48:03.000Z'}}, {'blockNum': '0xa1326b', 'uniqueId': '0x51fc9a296270b6fe1cbf943b64c3a9f935012940f4a8044423972b0b5d133e25:log:30', 'hash': '0x51fc9a296270b6fe1cbf943b64c3a9f935012940f4a8044423972b0b5d133e25', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'value': 3898.4993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd3568bca3729024000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:49:47.000Z'}}, {'blockNum': '0xa13271', 'uniqueId': '0x7ee5a8f989186ad9d4a91e65a5a98cead999faf4aa8e0cd52eb6c0d5715f5ede:log:40', 'hash': '0x7ee5a8f989186ad9d4a91e65a5a98cead999faf4aa8e0cd52eb6c0d5715f5ede', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 206081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2ba3ac63a4111b640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:50:54.000Z'}}, {'blockNum': '0xa1327e', 'uniqueId': '0x913746da96bb663a455fe33861acdf53d3123c90822339187c45dce021ada1a2:log:32', 'hash': '0x913746da96bb663a455fe33861acdf53d3123c90822339187c45dce021ada1a2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3648.82167634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc5cd92ae586f0b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:53:13.000Z'}}, {'blockNum': '0xa13284', 'uniqueId': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435:log:26', 'hash': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 37676.45088886445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07fa71ca7107b7c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:54:34.000Z'}}, {'blockNum': '0xa13284', 'uniqueId': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435:log:28', 'hash': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 37676.45088886445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07fa71ca7107b7c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:54:34.000Z'}}, {'blockNum': '0xa13286', 'uniqueId': '0x01fa97fe8f03e54d74dea8eb41e8900dfe14071b082f2501f002b8a4222af0d3:log:44', 'hash': '0x01fa97fe8f03e54d74dea8eb41e8900dfe14071b082f2501f002b8a4222af0d3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x8fab7e51fd5b566450e725766fd1a3ad1fc97115', 'value': 3648.82167634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc5cd92ae586f0b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:54:51.000Z'}}, {'blockNum': '0xa13293', 'uniqueId': '0xaf7b70a36a56f48cb3c71e36cae55af517b39d5387e7fc19da7586f7b90a88e4:log:144', 'hash': '0xaf7b70a36a56f48cb3c71e36cae55af517b39d5387e7fc19da7586f7b90a88e4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 14403.55374821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x030cd1766cb2d73af400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:57:39.000Z'}}, {'blockNum': '0xa1329c', 'uniqueId': '0xab75642d0aa15bcfc1ee34df14d70c21ee3a18c217b2dd5a6e3e30d9644910b1:log:105', 'hash': '0xab75642d0aa15bcfc1ee34df14d70c21ee3a18c217b2dd5a6e3e30d9644910b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 804.70195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2b9f7ba0080625e000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:00:21.000Z'}}, {'blockNum': '0xa1329c', 'uniqueId': '0x71c0357c64c6662622bd20377072cb294820b90ff05760faae686e783bb2c328:log:202', 'hash': '0x71c0357c64c6662622bd20377072cb294820b90ff05760faae686e783bb2c328', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'value': 14403.55374821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x030cd1766cb2d73af400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:00:21.000Z'}}, {'blockNum': '0xa132ab', 'uniqueId': '0xc3d9e23d5748e29d301e738fcf45313615209a8985992437d0d6ed5416c3b423:log:35', 'hash': '0xc3d9e23d5748e29d301e738fcf45313615209a8985992437d0d6ed5416c3b423', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x47a542c63bd8cebd016aecf4d0a737cfa9067b3c', 'value': 979.5358988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3519ca9627acfae000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:04:17.000Z'}}, {'blockNum': '0xa132b2', 'uniqueId': '0x43641558161f1fb2991c5ea8670a1e0ac6bde37f5235ccf4f7c2d5521e7b8770:log:114', 'hash': '0x43641558161f1fb2991c5ea8670a1e0ac6bde37f5235ccf4f7c2d5521e7b8770', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 2160.581057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x752015e017ab011000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:06:09.000Z'}}, {'blockNum': '0xa132b4', 'uniqueId': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc:log:100', 'hash': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 37174.24832288791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07df3854840ec686deb3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:06:43.000Z'}}, {'blockNum': '0xa132b4', 'uniqueId': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc:log:105', 'hash': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 37174.24832288791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07df3854840ec686deb3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:06:43.000Z'}}, {'blockNum': '0xa132d7', 'uniqueId': '0xfe764b2d47cd4841db203fe821ac410daabd6a36ea71405566cd73838759d291:log:31', 'hash': '0xfe764b2d47cd4841db203fe821ac410daabd6a36ea71405566cd73838759d291', 'from': '0x1c8ff99d90eda11f7d88d4ff247c89edfb74f8a1', 'to': '0x8003740dd12b7d1eb0e531606ba04f2b0cfabcd5', 'value': 194915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x29465d02b411ffac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:16:26.000Z'}}, {'blockNum': '0xa132df', 'uniqueId': '0x43382de31abfa353d6eb7ddcac2f67e001aec906902a59902e4259a0e5f5c3e4:log:120', 'hash': '0x43382de31abfa353d6eb7ddcac2f67e001aec906902a59902e4259a0e5f5c3e4', 'from': '0x8003740dd12b7d1eb0e531606ba04f2b0cfabcd5', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 194915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x29465d02b411ffac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:17:45.000Z'}}, {'blockNum': '0xa132e4', 'uniqueId': '0xe3fabb3a1a111e86e5f40fe502dc2c0fa92a9be56e95175c343faf202950bb6b:log:35', 'hash': '0xe3fabb3a1a111e86e5f40fe502dc2c0fa92a9be56e95175c343faf202950bb6b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 615.78223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2161b1f3a183e36000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:18:50.000Z'}}, {'blockNum': '0xa132e6', 'uniqueId': '0xe86387786fa0f74200fcd9b608902e90bdce95aa019e7a5b4c1634d1427bf657:log:23', 'hash': '0xe86387786fa0f74200fcd9b608902e90bdce95aa019e7a5b4c1634d1427bf657', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x47a542c63bd8cebd016aecf4d0a737cfa9067b3c', 'value': 1026.186774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x37a133c9fb820f6000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:19:27.000Z'}}, {'blockNum': '0xa132f3', 'uniqueId': '0x1a730d2fe8c901e725e9aa5784538ed951df17b0c2223106d20386434f2ef44d:log:49', 'hash': '0x1a730d2fe8c901e725e9aa5784538ed951df17b0c2223106d20386434f2ef44d', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xcad2ce7031d6c4cf127b5266fbeda7d29ee7d037', 'value': 10705.11866091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0244535d7ff2b9ea4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:22:13.000Z'}}, {'blockNum': '0xa132f6', 'uniqueId': '0xb837934f67b1b368f928732072065b5f867c2efcd2c5a46d52dba9a93b52ae85:log:62', 'hash': '0xb837934f67b1b368f928732072065b5f867c2efcd2c5a46d52dba9a93b52ae85', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 601.59785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x209cd8e92c48bba000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:22:53.000Z'}}, {'blockNum': '0xa132f9', 'uniqueId': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9:log:32', 'hash': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 45320.95881191826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0998daa64eb571800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:23:43.000Z'}}, {'blockNum': '0xa132f9', 'uniqueId': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9:log:34', 'hash': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 45320.95881191826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0998daa64eb571800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:23:43.000Z'}}, {'blockNum': '0xa13308', 'uniqueId': '0x92c3b91cbab7e0a35d02c1aaae4c8f56787ffe8de37a9bb710b9d72014f10092:log:2', 'hash': '0x92c3b91cbab7e0a35d02c1aaae4c8f56787ffe8de37a9bb710b9d72014f10092', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x4c0c9ae0f86e213aec513187011a3573eeafa01c', 'value': 6401.52770884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015b070b0e714c6c9000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:26:24.000Z'}}, {'blockNum': '0xa1330e', 'uniqueId': '0x27d39e9e7bb172b0da4c388ad1bbd75a024a2bfa889fc5ccff82eff902d71d40:log:118', 'hash': '0x27d39e9e7bb172b0da4c388ad1bbd75a024a2bfa889fc5ccff82eff902d71d40', 'from': '0xcad2ce7031d6c4cf127b5266fbeda7d29ee7d037', 'to': '0xc94eb594e8c11c65b3f81bfdf61a5682084cb06a', 'value': 10705.11866091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0244535d7ff2b9ea4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:28:40.000Z'}}, {'blockNum': '0xa1332c', 'uniqueId': '0x49ce84b0d0aef44eb46aeb7418d9e6762157772afe3e21c01df1b2632d0bbce1:log:59', 'hash': '0x49ce84b0d0aef44eb46aeb7418d9e6762157772afe3e21c01df1b2632d0bbce1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 79925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10ecbe30c73387b40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:34:19.000Z'}}, {'blockNum': '0xa133b6', 'uniqueId': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e:log:52', 'hash': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 7731.222385562515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a31c4385e5b9d5e3ba', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:06:54.000Z'}}, {'blockNum': '0xa133b6', 'uniqueId': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e:log:54', 'hash': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7731.222385562515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a31c4385e5b9d5e3ba', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:06:54.000Z'}}, {'blockNum': '0xa13401', 'uniqueId': '0x5d22a24f5fe057e5080a0737936cebdd5ecb10e956260468533848f0695405b4:log:199', 'hash': '0x5d22a24f5fe057e5080a0737936cebdd5ecb10e956260468533848f0695405b4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 16276.01157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03725308f0e8eddd2000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:22:17.000Z'}}, {'blockNum': '0xa13402', 'uniqueId': '0xb195051e06f123fe76f6ccbfa3a51f58a368b6b5099f29f02115620604a41234:log:24', 'hash': '0xb195051e06f123fe76f6ccbfa3a51f58a368b6b5099f29f02115620604a41234', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xa51eea2f9ba9be60c960170012c8632ce7a76e62', 'value': 14578.4132661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03164c2039c62cbe0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:23:12.000Z'}}, {'blockNum': '0xa13435', 'uniqueId': '0x3f993ed75c817deef4fcd95fed50ec07ecfbf4aa565e449c9b766ec6a59a284d:log:253', 'hash': '0x3f993ed75c817deef4fcd95fed50ec07ecfbf4aa565e449c9b766ec6a59a284d', 'from': '0x2b8f8806bd55425d25ede208337da00905f8f8ce', 'to': '0xbd2c32cf60da2ec939ea674b80dc5cdd21852a2b', 'value': 3018.3657394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa3a03d3fff4a455000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:34:05.000Z'}}, {'blockNum': '0xa1343b', 'uniqueId': '0xa0aa0e956a43ff65267df8723c0d15d88dfbfc4dd4fc867ed2aefb0d74f12e04:log:42', 'hash': '0xa0aa0e956a43ff65267df8723c0d15d88dfbfc4dd4fc867ed2aefb0d74f12e04', 'from': '0xbd2c32cf60da2ec939ea674b80dc5cdd21852a2b', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 3018.3657394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa3a03d3fff4a455000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:35:34.000Z'}}, {'blockNum': '0xa13470', 'uniqueId': '0x0b6a00588c32f8557c147cebd3af188d625ce3c405ffa7c946ecaf84107ce950:log:12', 'hash': '0x0b6a00588c32f8557c147cebd3af188d625ce3c405ffa7c946ecaf84107ce950', 'from': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'to': '0x5821c4892521530d6d6f49c9fb5214ecd813aae6', 'value': 15002.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x032d434ee73777408000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:45:53.000Z'}}, {'blockNum': '0xa13471', 'uniqueId': '0x4871f1c6b9b0f8574973bbad78911b7c219dd530fcd3e87a1e284a3e5a791f89:log:80', 'hash': '0x4871f1c6b9b0f8574973bbad78911b7c219dd530fcd3e87a1e284a3e5a791f89', 'from': '0x5821c4892521530d6d6f49c9fb5214ecd813aae6', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 15002.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x032d434ee73777408000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:45:59.000Z'}}, {'blockNum': '0xa13471', 'uniqueId': '0xb7d33fd416a1b061977a2e5daf9ab2365f75181207d1ae8a44fa0278b6aaaa0d:log:189', 'hash': '0xb7d33fd416a1b061977a2e5daf9ab2365f75181207d1ae8a44fa0278b6aaaa0d', 'from': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'to': '0x415ad5489d25d61a7fad58406036951f6d929991', 'value': 3300.00004821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb2e4b34fb288fcb400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:45:59.000Z'}}, {'blockNum': '0xa13473', 'uniqueId': '0x0e8a27eb65392f4442d25f656969d7c6b9768623190757cb148ebd3603913ca8:log:7', 'hash': '0x0e8a27eb65392f4442d25f656969d7c6b9768623190757cb148ebd3603913ca8', 'from': '0x415ad5489d25d61a7fad58406036951f6d929991', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3300.00004821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb2e4b34fb288fcb400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:46:58.000Z'}}, {'blockNum': '0xa134b8', 'uniqueId': '0x43f8dd66276b49a979258a3ea776e25c9c2458daed1605aeba3eac88e6fd3d65:log:4', 'hash': '0x43f8dd66276b49a979258a3ea776e25c9c2458daed1605aeba3eac88e6fd3d65', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1fc534bd170174ef9e00dd790df8c99ee3c541c0', 'value': 639.08075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x22a506ec214c38e000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:02:50.000Z'}}, {'blockNum': '0xa134c6', 'uniqueId': '0x6bb2a1805238085a09282c8e944a7a95519c0bc614b647a3ffc0ed8c9dc9b038:log:33', 'hash': '0x6bb2a1805238085a09282c8e944a7a95519c0bc614b647a3ffc0ed8c9dc9b038', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 98160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x14c943a6b607d7c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:06:11.000Z'}}, {'blockNum': '0xa13551', 'uniqueId': '0xf0993ece0171051b0c4db06d97280b5e3baa279c1e7d9f320d3d35146f3b4767:log:124', 'hash': '0xf0993ece0171051b0c4db06d97280b5e3baa279c1e7d9f320d3d35146f3b4767', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1143.90905225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3e02ed5654db010400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:36:34.000Z'}}, {'blockNum': '0xa13557', 'uniqueId': '0xb1e6414f98e614fa49adf16f8a08a01f22fa99bd4aee718a85f840d565d7ad7a:log:57', 'hash': '0xb1e6414f98e614fa49adf16f8a08a01f22fa99bd4aee718a85f840d565d7ad7a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbdb090818dc1e8b77c8b7fe31e7343abc5db2d03', 'value': 1143.90905225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3e02ed5654db010400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:38:24.000Z'}}, {'blockNum': '0xa1357f', 'uniqueId': '0x7388220577bd5a18365b9da74146c090c315b924ce1e61a3149208cde9fc14d5:log:12', 'hash': '0x7388220577bd5a18365b9da74146c090c315b924ce1e61a3149208cde9fc14d5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1192.51155671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x40a56c1ea177a47c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:48:47.000Z'}}]}}
Number of returned transfers:  164
Answer is complete
 
symbol             PPT
group              CPS
date        2020-08-04
hour             18:00
exchange       binance
Name: 421, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-08-04 18:00:00 2020-08-04 06:00:00 2020-08-05 06:00:00
Unix timestamps:  1596513600.0 1596600000.0
Hex Block Numbers:  0xa19b32 0xa1b459
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa19b3b', 'uniqueId': '0x9632547eb752e61fd2845023430266e3d2fd4251041f716a6d906fe60c4ccf3c:log:113', 'hash': '0x9632547eb752e61fd2845023430266e3d2fd4251041f716a6d906fe60c4ccf3c', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0xcf30e8ffbfb50cf340f29af334a74eee9a878b83', 'value': 140.8040339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034741e7be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:02:09.000Z'}}, {'blockNum': '0xa19b3c', 'uniqueId': '0x25ceb90ebafe0389f1485228ef4018b53ad65fc94a67548a238c22ea90499223:log:146', 'hash': '0x25ceb90ebafe0389f1485228ef4018b53ad65fc94a67548a238c22ea90499223', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0xb9c26242912d05773b100dd54dc035239e2eb79d', 'value': 1054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x188a545e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:02:17.000Z'}}, {'blockNum': '0xa19b42', 'uniqueId': '0xb2881bc599f74625d7a8653d7648a265dd444dbd32161ec9efc3e0180fb61656:log:37', 'hash': '0xb2881bc599f74625d7a8653d7648a265dd444dbd32161ec9efc3e0180fb61656', 'from': '0xb9c26242912d05773b100dd54dc035239e2eb79d', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 1054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x188a545e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:03:31.000Z'}}, {'blockNum': '0xa19b43', 'uniqueId': '0x37bff7dd08cc4b1e122b9542642d08d220be486edb020570293f083c540d47ae:log:29', 'hash': '0x37bff7dd08cc4b1e122b9542642d08d220be486edb020570293f083c540d47ae', 'from': '0xcf30e8ffbfb50cf340f29af334a74eee9a878b83', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 140.8040339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034741e7be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:03:37.000Z'}}, {'blockNum': '0xa19c49', 'uniqueId': '0xe9fc8a8ac9981b446e1ffb8d363087d6f76593a1af6a8f5102d4b33fa0ebe533:log:9', 'hash': '0xe9fc8a8ac9981b446e1ffb8d363087d6f76593a1af6a8f5102d4b33fa0ebe533', 'from': '0x7e0d57959c438b7ca4f697f9719c32edbac57ee1', 'to': '0x1b4808b4ece681f043c74d41c32c32a3e0b7c060', 'value': 14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53724e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:05:57.000Z'}}, {'blockNum': '0xa19cad', 'uniqueId': '0x865ee03a269de534a5aec5835ea82be67cd924f0a96ce4ab87e35cc8429aa384:log:82', 'hash': '0x865ee03a269de534a5aec5835ea82be67cd924f0a96ce4ab87e35cc8429aa384', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2504.636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a50cb3d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:26:25.000Z'}}, {'blockNum': '0xa19d17', 'uniqueId': '0x637f0fb01ea2aa53726947e09beae4e57a8d1414633134945bf5f69b40cc543d:log:205', 'hash': '0x637f0fb01ea2aa53726947e09beae4e57a8d1414633134945bf5f69b40cc543d', 'from': '0x6ba29682abdf39ad6cf291e547cb59e82b0bbdc6', 'to': '0x91ed9ed1137951be5fc49fcb52639149ea528542', 'value': 33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc4b20100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:51:44.000Z'}}, {'blockNum': '0xa19de0', 'uniqueId': '0x9c145838a0facf085b57864b5180e831b56f5fab032777d1fa52c42764c541a3:log:149', 'hash': '0x9c145838a0facf085b57864b5180e831b56f5fab032777d1fa52c42764c541a3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x59c3106583946e7424c20598f169f6a9969db0bd', 'value': 208.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04d8d97880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T06:35:25.000Z'}}, {'blockNum': '0xa19e0d', 'uniqueId': '0xc8ce5e6a0ace8d741ff8efe7dc75a3d960ff52d7c0e3080ef457bfe6033677fb:log:94', 'hash': '0xc8ce5e6a0ace8d741ff8efe7dc75a3d960ff52d7c0e3080ef457bfe6033677fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab33ab33fbf77da6555d05c7d0f0874c7cb835ca', 'value': 5101.77316868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76c8f01004', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T06:47:38.000Z'}}, {'blockNum': '0xa19e78', 'uniqueId': '0x8430d7145033be43aa155d7ff997f30f4a4a512226c78c00db29f07063fb0f80:log:52', 'hash': '0x8430d7145033be43aa155d7ff997f30f4a4a512226c78c00db29f07063fb0f80', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1f1d77efdbbbc586174d8d9032d2b83c1ac192c6', 'value': 249.90766037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d190d3d5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T07:14:48.000Z'}}, {'blockNum': '0xa19fb0', 'uniqueId': '0x8efdf13f08fa0b00f6bf56014742cf7e6fc4adcb3cc74c86043a1cd8f21a7ec8:log:74', 'hash': '0x8efdf13f08fa0b00f6bf56014742cf7e6fc4adcb3cc74c86043a1cd8f21a7ec8', 'from': '0xfa839459188b6eeb856765e8f091f9c4dae843f8', 'to': '0x59f6c2698e7cb4dca3236a65d95f6a51c79b0e34', 'value': 5502.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x801ec46000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:27:34.000Z'}}, {'blockNum': '0xa19fb8', 'uniqueId': '0xb243e1cef7be7dc8465ec07dbd9d96e86609d96ddd55c98927a6905e62724cf4:log:83', 'hash': '0xb243e1cef7be7dc8465ec07dbd9d96e86609d96ddd55c98927a6905e62724cf4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb445ad9c7d2343acb6209a4997cdce4ad05933bc', 'value': 368.53461538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0894a33222', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:29:00.000Z'}}, {'blockNum': '0xa19ff5', 'uniqueId': '0xe4648b4f3445dd69d2a963696f4974c6a1821f1c23c99a6a73b0de2235c13b8b:log:59', 'hash': '0xe4648b4f3445dd69d2a963696f4974c6a1821f1c23c99a6a73b0de2235c13b8b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2312.791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x35d94f0060', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:40:40.000Z'}}, {'blockNum': '0xa19ffb', 'uniqueId': '0x4f6795376859cf0a4dd16c1c9db1dd38252572384a3961971506ca34bbd62d53:log:82', 'hash': '0x4f6795376859cf0a4dd16c1c9db1dd38252572384a3961971506ca34bbd62d53', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1328.565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1eeedd4f20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:42:00.000Z'}}, {'blockNum': '0xa1a011', 'uniqueId': '0xb2d3bf56347a92daf081b96a17370cee0b98bfe7eac717f720cb4761eec19252:log:76', 'hash': '0xb2d3bf56347a92daf081b96a17370cee0b98bfe7eac717f720cb4761eec19252', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3928.795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5b79716ae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:48:03.000Z'}}, {'blockNum': '0xa1a05a', 'uniqueId': '0xb395aa88f2515531e29d3e304c1245fd0e0062e5440ec8b4321636a345ad9165:log:38', 'hash': '0xb395aa88f2515531e29d3e304c1245fd0e0062e5440ec8b4321636a345ad9165', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 116.79014201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b81f9d39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:06:57.000Z'}}, {'blockNum': '0xa1a071', 'uniqueId': '0x2e0dabf648385dea43b347881d5c915ce715f42aa063b011e374ef86985ecd1c:log:105', 'hash': '0x2e0dabf648385dea43b347881d5c915ce715f42aa063b011e374ef86985ecd1c', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x6a4583839ea1e750407bb37e33ba276b3786ab2c', 'value': 116.79014201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b81f9d39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:12:55.000Z'}}, {'blockNum': '0xa1a0a8', 'uniqueId': '0x2805a88a4c067e6c1385ce3550375c8f80bca04877303275a36b01d7029f56f4:log:21', 'hash': '0x2805a88a4c067e6c1385ce3550375c8f80bca04877303275a36b01d7029f56f4', 'from': '0xd7a99b3d848be7ccb0ef3f97428b94556aa670bd', 'to': '0xf3874a84d9e45d8e0168d2e0d80e18719bf0f07f', 'value': 100.81065516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258e0da2c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:17.000Z'}}, {'blockNum': '0xa1a0ab', 'uniqueId': '0xc7ab64fe79a41efc7e0bb1b4956c431ae9b609ad5814f5fba51d0d37a9220545:log:52', 'hash': '0xc7ab64fe79a41efc7e0bb1b4956c431ae9b609ad5814f5fba51d0d37a9220545', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 106.20211471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027903910f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:49.000Z'}}, {'blockNum': '0xa1a0ac', 'uniqueId': '0x3d0983530ca36145261a6124c64d74720451d3b967a096f156caa8ec0a01871e:log:28', 'hash': '0x3d0983530ca36145261a6124c64d74720451d3b967a096f156caa8ec0a01871e', 'from': '0xf3874a84d9e45d8e0168d2e0d80e18719bf0f07f', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 100.81065516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258e0da2c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:54.000Z'}}, {'blockNum': '0xa1a0b2', 'uniqueId': '0xcfa6839010cfaa70faa8a2c49e550e46a22f326b4533f5291c6ef6610f9191a8:log:88', 'hash': '0xcfa6839010cfaa70faa8a2c49e550e46a22f326b4533f5291c6ef6610f9191a8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd010f5b0994119425652c224b81d4cc17971c835', 'value': 106.20211471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027903910f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:27:17.000Z'}}, {'blockNum': '0xa1a16e', 'uniqueId': '0x27341f7d18c76e20f72ff2ccbcacbd144d33dfa9d5b3b13030e23eb55234552a:log:174', 'hash': '0x27341f7d18c76e20f72ff2ccbcacbd144d33dfa9d5b3b13030e23eb55234552a', 'from': '0x9586dfb843b02de79dcffb5b4e7738eba721827a', 'to': '0xf849a4874d529166da7515e22efbf2f1a8bf116c', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:07:22.000Z'}}, {'blockNum': '0xa1a1c7', 'uniqueId': '0x4a346cc1d441c4facd5587f9648c52e7f26767e520562962be87c761199aa82d:log:37', 'hash': '0x4a346cc1d441c4facd5587f9648c52e7f26767e520562962be87c761199aa82d', 'from': '0x9586dfb843b02de79dcffb5b4e7738eba721827a', 'to': '0xf849a4874d529166da7515e22efbf2f1a8bf116c', 'value': 7.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a057240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:27:01.000Z'}}, {'blockNum': '0xa1a1f1', 'uniqueId': '0xebd18e07d07dd491ef695a8201dfbfb9cda1a2b84b30ad4304ca886613b64ea8:log:46', 'hash': '0xebd18e07d07dd491ef695a8201dfbfb9cda1a2b84b30ad4304ca886613b64ea8', 'from': '0x59f6c2698e7cb4dca3236a65d95f6a51c79b0e34', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 5502.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x801ec46000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:37:33.000Z'}}, {'blockNum': '0xa1a238', 'uniqueId': '0x486f523b5253dfe210b5aa78a07dfb1693ca13b3f1536aa556e2b5694bf55725:log:104', 'hash': '0x486f523b5253dfe210b5aa78a07dfb1693ca13b3f1536aa556e2b5694bf55725', 'from': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'to': '0x4eebe2a7a91fe38fcd22c8fb17e605243a26fc58', 'value': 69.43564357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019dde6245', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:52:49.000Z'}}, {'blockNum': '0xa1a2c8', 'uniqueId': '0xecee9d6ee332adae214b8533b3c86eb6e88d3848b2944993cd793f85aecd4c1b:log:41', 'hash': '0xecee9d6ee332adae214b8533b3c86eb6e88d3848b2944993cd793f85aecd4c1b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1355911d3327533471548423898ec3e05fdd7e2e', 'value': 1833.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aaf8a41a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:25:34.000Z'}}, {'blockNum': '0xa1a2f1', 'uniqueId': '0x80cc03f5ee335771afa2fe37de2ce8dc80ae315739332fb991702b4a980bf70c:log:92', 'hash': '0x80cc03f5ee335771afa2fe37de2ce8dc80ae315739332fb991702b4a980bf70c', 'from': '0x1355911d3327533471548423898ec3e05fdd7e2e', 'to': '0x3a6c03a03fee972766742eb7f891ff755f6335d1', 'value': 1833.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aaf8a41a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:32:37.000Z'}}, {'blockNum': '0xa1a357', 'uniqueId': '0x68c6d5f1433db0d116a5e7ea9b3a8006bb29eb9efdafea3a32d4294b0d4551fe:log:6', 'hash': '0x68c6d5f1433db0d116a5e7ea9b3a8006bb29eb9efdafea3a32d4294b0d4551fe', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xc19a2756366d18187ea039642f09bb7515253f45', 'value': 142.31753973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03504754f5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:57:47.000Z'}}, {'blockNum': '0xa1a36a', 'uniqueId': '0x5882cbc9fdc87e934038a92ba862ce78cb1a2920a1a30a484e5f80e685a27d85:log:27', 'hash': '0x5882cbc9fdc87e934038a92ba862ce78cb1a2920a1a30a484e5f80e685a27d85', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 142.317539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03504754ac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T12:02:17.000Z'}}, {'blockNum': '0xa1a3a5', 'uniqueId': '0x77ee8b3ab7059baad555211b0b2d5a783b8344fd254d3eb12c010b46801e3179:log:227', 'hash': '0x77ee8b3ab7059baad555211b0b2d5a783b8344fd254d3eb12c010b46801e3179', 'from': '0x2cd197c63040796000a6ae0b66ec65b94cea4d84', 'to': '0x4246af949ef88ebd605751fc0ffeaa2bebdcb60d', 'value': 37.27231999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xde290bff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T12:16:27.000Z'}}, {'blockNum': '0xa1a543', 'uniqueId': '0xf32c7864872f5a17266ec044f9683433efa5890de6442382a4b544a547ca8981:log:172', 'hash': '0xf32c7864872f5a17266ec044f9683433efa5890de6442382a4b544a547ca8981', 'from': '0x4eebe2a7a91fe38fcd22c8fb17e605243a26fc58', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 69.43564357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019dde6245', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T13:36:34.000Z'}}, {'blockNum': '0xa1a5d9', 'uniqueId': '0xc8f2e997b86d3913fbe82250ec3bf359403143e5a6d441c6e151028873c3a821:log:110', 'hash': '0xc8f2e997b86d3913fbe82250ec3bf359403143e5a6d441c6e151028873c3a821', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0x4e90d437329eea593529f84c3600cac76ccb3256', 'value': 948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1612853400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T14:05:55.000Z'}}, {'blockNum': '0xa1a5e5', 'uniqueId': '0x52c7d04c1705145b858ad2385d24aee8dbaacb2e3fd07aad060bcfd617583958:log:6', 'hash': '0x52c7d04c1705145b858ad2385d24aee8dbaacb2e3fd07aad060bcfd617583958', 'from': '0x4e90d437329eea593529f84c3600cac76ccb3256', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1612853400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T14:08:13.000Z'}}, {'blockNum': '0xa1a7ec', 'uniqueId': '0xf358f57dd362938b7d05bc7edb357539bc39cac92d82fad3cbc0c34775586f61:log:7', 'hash': '0xf358f57dd362938b7d05bc7edb357539bc39cac92d82fad3cbc0c34775586f61', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9a8b70704ab430f93272813a9fc3075af36b2de8', 'value': 3545.623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528d8f5860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:03:13.000Z'}}, {'blockNum': '0xa1a7f1', 'uniqueId': '0xc31c9903a68dc2706e8168c5c0408e1bcaededa00f99ccbe0c23381e56f382ab:log:127', 'hash': '0xc31c9903a68dc2706e8168c5c0408e1bcaededa00f99ccbe0c23381e56f382ab', 'from': '0x9a8b70704ab430f93272813a9fc3075af36b2de8', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 3545.623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528d8f5860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:04:13.000Z'}}, {'blockNum': '0xa1a81e', 'uniqueId': '0xdc7d6d878b7e1dfdc936152c912402734d24fd47b4e5ace6992ca7429806862b:log:55', 'hash': '0xdc7d6d878b7e1dfdc936152c912402734d24fd47b4e5ace6992ca7429806862b', 'from': '0x8da4a02499a4abd011a5b61af52150d99e92c068', 'to': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'value': 200.75900756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ac9def54', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:15:01.000Z'}}, {'blockNum': '0xa1a81f', 'uniqueId': '0xd758f8d1346c9c813a7950b6f2cf5a4e2c2f45b9a6877ff49d7be094d6174e5c:log:95', 'hash': '0xd758f8d1346c9c813a7950b6f2cf5a4e2c2f45b9a6877ff49d7be094d6174e5c', 'from': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 200.75900756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ac9def54', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:15:28.000Z'}}, {'blockNum': '0xa1a82e', 'uniqueId': '0xffb940effa905ba6f8791c4f97e4d6238af68bb44f87e996ae69d49e6625bee3:log:5', 'hash': '0xffb940effa905ba6f8791c4f97e4d6238af68bb44f87e996ae69d49e6625bee3', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x3f83fbff779590d8475e7ddf11c1af11731abbcf', 'value': 3546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528fce9a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:19:06.000Z'}}, {'blockNum': '0xa1a877', 'uniqueId': '0xe79596be32ec0d9919c60ee316524d11d606fe9831555ef14001e4c9a6bdebe9:log:157', 'hash': '0xe79596be32ec0d9919c60ee316524d11d606fe9831555ef14001e4c9a6bdebe9', 'from': '0x3f83fbff779590d8475e7ddf11c1af11731abbcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528fce9a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:36:05.000Z'}}, {'blockNum': '0xa1a8c4', 'uniqueId': '0x37d6b17169589a0b44bda4f01dfa0815ea677118513e1b394fce5e8237e9b108:log:27', 'hash': '0x37d6b17169589a0b44bda4f01dfa0815ea677118513e1b394fce5e8237e9b108', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x641704311dd7e7b6ff340e2fc2a98f2002bb8e6f', 'value': 4992.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x743bd19fc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:54:02.000Z'}}, {'blockNum': '0xa1a8eb', 'uniqueId': '0xd28d7ae9780a56c346b01f58aefe3176fca6ccb4c18e4f2035d28976b895c64e:log:101', 'hash': '0xd28d7ae9780a56c346b01f58aefe3176fca6ccb4c18e4f2035d28976b895c64e', 'from': '0xee155572635ae7d1f4e30ec3179ce65b5342cb17', 'to': '0x1ac963003b29fcdca2d5f509e46063eb88b55a27', 'value': 204447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12982714bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:00:34.000Z'}}, {'blockNum': '0xa1a95a', 'uniqueId': '0x8510a4ffb0774ea094cc24c62fdf8bd73141cf49c20c9d1b82dea002a8fbf81e:log:2', 'hash': '0x8510a4ffb0774ea094cc24c62fdf8bd73141cf49c20c9d1b82dea002a8fbf81e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9db81f3235c5e3823547178165a24f1d81fa5cb3', 'value': 797.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1290b82ac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:24:20.000Z'}}, {'blockNum': '0xa1a974', 'uniqueId': '0xbbf8223f803bf8a9af948f11a6dbcddd150162359613a0bf11fe2b4488a19388:log:273', 'hash': '0xbbf8223f803bf8a9af948f11a6dbcddd150162359613a0bf11fe2b4488a19388', 'from': '0x1ac963003b29fcdca2d5f509e46063eb88b55a27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 204447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12982714bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:30:54.000Z'}}, {'blockNum': '0xa1a9f0', 'uniqueId': '0xab8de5f3f2dc0b8abd0ab993587a814945a5fb881df4b3c0d2bcf1f151a43645:log:119', 'hash': '0xab8de5f3f2dc0b8abd0ab993587a814945a5fb881df4b3c0d2bcf1f151a43645', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 308.451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x072e82dfe0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:00:23.000Z'}}, {'blockNum': '0xa1a9f4', 'uniqueId': '0x2d6c032630f5edaef16095f4c410c42e4b44009dbefd0a434e9a27b5b05636e7:log:101', 'hash': '0x2d6c032630f5edaef16095f4c410c42e4b44009dbefd0a434e9a27b5b05636e7', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f0a75c600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:00:56.000Z'}}, {'blockNum': '0xa1a9f8', 'uniqueId': '0x01a9fdf504af5f2a79d1b059870339cfd183e04ca83d8ac3249374ed5c746a2c:log:123', 'hash': '0x01a9fdf504af5f2a79d1b059870339cfd183e04ca83d8ac3249374ed5c746a2c', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1042.60071783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1846627167', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:01:27.000Z'}}, {'blockNum': '0xa1a9fa', 'uniqueId': '0xee6f3be3f7f97429287219201b4486e72f68562c82181fcd2ef16b5fb0f9680d:log:8', 'hash': '0xee6f3be3f7f97429287219201b4486e72f68562c82181fcd2ef16b5fb0f9680d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1831.382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aa3e329c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:02:10.000Z'}}, {'blockNum': '0xa1a9fb', 'uniqueId': '0x457c42bca555ff764e6e4fc3750791775c509e8a29a85c628ec637f74967155d:log:42', 'hash': '0x457c42bca555ff764e6e4fc3750791775c509e8a29a85c628ec637f74967155d', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 15.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5a4d10c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:02:26.000Z'}}, {'blockNum': '0xa1aa01', 'uniqueId': '0x16df7e25844cabe32e4a02a85b503dee3f227d5b5c75241f02bee845bd351258:log:82', 'hash': '0x16df7e25844cabe32e4a02a85b503dee3f227d5b5c75241f02bee845bd351258', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 558.40524141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0d005ac76d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:03:56.000Z'}}, {'blockNum': '0xa1aa08', 'uniqueId': '0x51cc8a17c9d5bc30bb38e436d44d1fefb444c3e70d3ccc8835a1096a9ae4e765:log:15', 'hash': '0x51cc8a17c9d5bc30bb38e436d44d1fefb444c3e70d3ccc8835a1096a9ae4e765', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'value': 7569.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb04004cae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:05:48.000Z'}}, {'blockNum': '0xa1aa08', 'uniqueId': '0x72f9660a01661d724cd154dd7cf271bb666d5de4d0c473f1c6056894ea931916:log:16', 'hash': '0x72f9660a01661d724cd154dd7cf271bb666d5de4d0c473f1c6056894ea931916', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3ae203c100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:05:48.000Z'}}, {'blockNum': '0xa1aa16', 'uniqueId': '0x7799d24ab671b0bf6c96a3b99a592f2586f8ff337146c4c343f30661f0c57ff5:log:12', 'hash': '0x7799d24ab671b0bf6c96a3b99a592f2586f8ff337146c4c343f30661f0c57ff5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 1787.48203421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x299e39219d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:09:35.000Z'}}, {'blockNum': '0xa1aa28', 'uniqueId': '0x01c979045c770eccb6f59627bc468d9be98d680acec107f657c1e31f08e7cace:log:2', 'hash': '0x01c979045c770eccb6f59627bc468d9be98d680acec107f657c1e31f08e7cace', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 42.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xfb3bcbc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:13:41.000Z'}}, {'blockNum': '0xa1aa3a', 'uniqueId': '0x267ebb576f7d40e5c28675bf7e8b61cb2abca4ab71ed5fd42a12566f55372561:log:6', 'hash': '0x267ebb576f7d40e5c28675bf7e8b61cb2abca4ab71ed5fd42a12566f55372561', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:17:55.000Z'}}, {'blockNum': '0xa1aa3b', 'uniqueId': '0x35829d3bb1efdd81bfe0f8d04e47e58992e1ad474abbb156623f54fd0264c765:log:87', 'hash': '0x35829d3bb1efdd81bfe0f8d04e47e58992e1ad474abbb156623f54fd0264c765', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 616.506789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e5aaab474', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:17:59.000Z'}}, {'blockNum': '0xa1aa6f', 'uniqueId': '0x7948853b3d0a86ce0f1256831bc871abba4c9d089599cd2a807dab46a94bbf4b:log:183', 'hash': '0x7948853b3d0a86ce0f1256831bc871abba4c9d089599cd2a807dab46a94bbf4b', 'from': '0x31ab026b0d7cbe541bfe92f418636a7d69357aa7', 'to': '0xee458347b8bcb1335bd1cfc950a52f404c45b354', 'value': 203.717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04be3f7920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:27:53.000Z'}}, {'blockNum': '0xa1aa76', 'uniqueId': '0xe40f21a3c2bcc2c8a18d1ae6adae583cc1a7fd49c8763ca121ca973dbc8466a5:log:68', 'hash': '0xe40f21a3c2bcc2c8a18d1ae6adae583cc1a7fd49c8763ca121ca973dbc8466a5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'value': 344.97699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0808391cb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:29:35.000Z'}}, {'blockNum': '0xa1aa77', 'uniqueId': '0x923bc4b7dff2f3ad26a49371bc1a503c358760ba93e0418b3be4ab3ee475dc15:log:174', 'hash': '0x923bc4b7dff2f3ad26a49371bc1a503c358760ba93e0418b3be4ab3ee475dc15', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 17384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0194c0b6e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:30:14.000Z'}}, {'blockNum': '0xa1aa7e', 'uniqueId': '0xb1bf89c4506fe4a2eabca94cb2b0ae4129d05f0a504ce2981037205b3177cd90:log:15', 'hash': '0xb1bf89c4506fe4a2eabca94cb2b0ae4129d05f0a504ce2981037205b3177cd90', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 37607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036b9b300700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:31:49.000Z'}}, {'blockNum': '0xa1aa7f', 'uniqueId': '0xe2bf42d3a9c0e30cb5aa88c8faa1065c447b9c65f7874b8f367992c9908e8a05:log:210', 'hash': '0xe2bf42d3a9c0e30cb5aa88c8faa1065c447b9c65f7874b8f367992c9908e8a05', 'from': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7569.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb04004cae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:32:11.000Z'}}, {'blockNum': '0xa1aaa0', 'uniqueId': '0xaabb8d67c7f0021ab933aaa810ae160265820391fe6b26376e64f057cdad6cee:log:88', 'hash': '0xaabb8d67c7f0021ab933aaa810ae160265820391fe6b26376e64f057cdad6cee', 'from': '0x06450acadae3710f5d6d49993af84cda952ec72e', 'to': '0x399427f9bfe909a2602db7274e936bfeedb03c40', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1742810700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:40:35.000Z'}}, {'blockNum': '0xa1aaa4', 'uniqueId': '0x2273a872e2f755da3b619b66d8f883fa74453ae9193ca29be784b60c8fb51884:log:153', 'hash': '0x2273a872e2f755da3b619b66d8f883fa74453ae9193ca29be784b60c8fb51884', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x3e5f35f16b4c7e19e69a070fda32ecd405d495bf', 'value': 1398.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20903efac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:41:47.000Z'}}, {'blockNum': '0xa1aaa5', 'uniqueId': '0x4bd8921cc8eb780905cf6fbfa61a376c8b512dd888c1310b3ce3f469aafa7765:log:64', 'hash': '0x4bd8921cc8eb780905cf6fbfa61a376c8b512dd888c1310b3ce3f469aafa7765', 'from': '0x1446378b0e6de34eab5f7cb0203cef1365acb9ba', 'to': '0x962da0bab76747ba9927a08165e13f1e16da9fd6', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:41:58.000Z'}}, {'blockNum': '0xa1aaa7', 'uniqueId': '0x409f0d503113ef66f0a02ed0b3efd2a03be710b27da0a39a05affbd8f38f5ca0:log:20', 'hash': '0x409f0d503113ef66f0a02ed0b3efd2a03be710b27da0a39a05affbd8f38f5ca0', 'from': '0xbab72d80f70061fa92972d434bbb0aabb6a957de', 'to': '0x5b444b835243d4a2dc7793e3f78f93ae7004646c', 'value': 843.2508205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a22aa3c2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:42:46.000Z'}}, {'blockNum': '0xa1aaa8', 'uniqueId': '0x15b66ddfd795275b375e4f605221087f6b4add7a3b66ee8520030ef33fc3c589:log:36', 'hash': '0x15b66ddfd795275b375e4f605221087f6b4add7a3b66ee8520030ef33fc3c589', 'from': '0x5b444b835243d4a2dc7793e3f78f93ae7004646c', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 843.2508205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a22aa3c2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:43:00.000Z'}}, {'blockNum': '0xa1aab4', 'uniqueId': '0x9c037230c4c980c162431bb71e717b4ad3e2e1de9f97dbdf27e69e3a4c66bdc2:log:16', 'hash': '0x9c037230c4c980c162431bb71e717b4ad3e2e1de9f97dbdf27e69e3a4c66bdc2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5321bd1db60c1f705c2e5bb5d667df0b1ee90ff3', 'value': 667.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f8aa24600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:45:40.000Z'}}, {'blockNum': '0xa1aad0', 'uniqueId': '0xb455f9c4e2def29e86b178804d15673bd234461275547713d00f30dcc7e3fe16:log:122', 'hash': '0xb455f9c4e2def29e86b178804d15673bd234461275547713d00f30dcc7e3fe16', 'from': '0x3b63cc5790c8b06787c55aa2aaaa7a0af14ed7ac', 'to': '0x71025d59ab9def0146e8b4861ba594cad7d4ee1e', 'value': 1000.084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1748f71480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:53:23.000Z'}}, {'blockNum': '0xa1aad3', 'uniqueId': '0x1a0d8dc1cbfbb936ffd1b442a012639b855d5401d69e57ab4b3f1357e38f4193:log:153', 'hash': '0x1a0d8dc1cbfbb936ffd1b442a012639b855d5401d69e57ab4b3f1357e38f4193', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe992fe5238f6f57686c22a0628db5c793414aa68', 'value': 999.27334816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1744221fa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:54:32.000Z'}}, {'blockNum': '0xa1aad7', 'uniqueId': '0x7dc6f7d4367375dc3738eac24d814e4b3516ab5e7e0f10e88b63a95e25ace9f8:log:219', 'hash': '0x7dc6f7d4367375dc3738eac24d814e4b3516ab5e7e0f10e88b63a95e25ace9f8', 'from': '0xe992fe5238f6f57686c22a0628db5c793414aa68', 'to': '0x1cf1420df55d748f4ce161ee795f2c837dcf5819', 'value': 999.27334816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1744221fa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:55:08.000Z'}}, {'blockNum': '0xa1aae8', 'uniqueId': '0x1b71017bb127d0f06737d875427d3b1dfc75a3c82279ddaa9966c0b7e67170a2:log:163', 'hash': '0x1b71017bb127d0f06737d875427d3b1dfc75a3c82279ddaa9966c0b7e67170a2', 'from': '0x453cf3463ffae86f22d2cdfc2c5cf2fb858885f7', 'to': '0x63c29c12b5561a695f56eb2b22c24c7de6a28cd6', 'value': 990.7171763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17112270fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:59:00.000Z'}}, {'blockNum': '0xa1aaf5', 'uniqueId': '0x45cad63c6bce1496a13da52cfefd7954707e73201f1d1c04ca69ba97770a6486:log:1', 'hash': '0x45cad63c6bce1496a13da52cfefd7954707e73201f1d1c04ca69ba97770a6486', 'from': '0x63c29c12b5561a695f56eb2b22c24c7de6a28cd6', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 990.7171763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17112270fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:00:37.000Z'}}, {'blockNum': '0xa1aaf5', 'uniqueId': '0x69d2945cc81a5d21883103b839fb0f042b29abe424295618fd7b8e00c9aa898e:log:46', 'hash': '0x69d2945cc81a5d21883103b839fb0f042b29abe424295618fd7b8e00c9aa898e', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2506.68284172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a5cfe790c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:00:37.000Z'}}, {'blockNum': '0xa1aaf7', 'uniqueId': '0xb40693d6ee132a01c7a6db079e396113c0669dd6fdfa51a5778d629225ab99f1:log:101', 'hash': '0xb40693d6ee132a01c7a6db079e396113c0669dd6fdfa51a5778d629225ab99f1', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x57f9cb5d7f7813c3f96c0757147154850059b733', 'value': 189.7213706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x046ad3d664', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:05.000Z'}}, {'blockNum': '0xa1aaf7', 'uniqueId': '0x5b8524d0821991249ba17c99bbe3984ab15b49558b95575e131b7b01ddcca534:log:218', 'hash': '0x5b8524d0821991249ba17c99bbe3984ab15b49558b95575e131b7b01ddcca534', 'from': '0x3d83b7d658457b4e7cd59e116c42fc97b79d5a0e', 'to': '0x9c833b63a894529df923314c2ecb1e884f67f685', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:05.000Z'}}, {'blockNum': '0xa1aaf8', 'uniqueId': '0x4293608abba6e2198f22d40794b974c71e2dba06c2bb631adb5c72422399b4f9:log:44', 'hash': '0x4293608abba6e2198f22d40794b974c71e2dba06c2bb631adb5c72422399b4f9', 'from': '0x8e9269041d059d1651c99ecfb5c49dd1a62ba7d9', 'to': '0xef677ac98187c38a1c5295254d504c2509a17f06', 'value': 2511.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a7b7ea300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:38.000Z'}}, {'blockNum': '0xa1ab05', 'uniqueId': '0x398ad8982236c2c4c9d043b63bb3ce7ab443b8b2f3ac49e3605fcf8718e29ff5:log:33', 'hash': '0x398ad8982236c2c4c9d043b63bb3ce7ab443b8b2f3ac49e3605fcf8718e29ff5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x147523af2347f6e60b18ed985243bcec6e57d6fa', 'value': 2012.73480912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2edcd596d0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:04:23.000Z'}}, {'blockNum': '0xa1ab13', 'uniqueId': '0xacf1ea97a558efe2c2af05ff8a58e63104d1a3d37ef98e6547841a404ec74a9b:log:49', 'hash': '0xacf1ea97a558efe2c2af05ff8a58e63104d1a3d37ef98e6547841a404ec74a9b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbf097fe8ae6d6b2af43a065c04d65505066d6e26', 'value': 759.41561207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ae784377', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:08:05.000Z'}}, {'blockNum': '0xa1ab1d', 'uniqueId': '0xaf9679cd66fd48eb0299dc2ec9413ee6f6100fa1fb16cc6daae664f68a467be7:log:40', 'hash': '0xaf9679cd66fd48eb0299dc2ec9413ee6f6100fa1fb16cc6daae664f68a467be7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 1112.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19e51c0080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:10:59.000Z'}}, {'blockNum': '0xa1ab24', 'uniqueId': '0x711dd23b7e1343baa58a6b574436b9fd93852e5127ef4d7d46c40704a90a53e7:log:18', 'hash': '0x711dd23b7e1343baa58a6b574436b9fd93852e5127ef4d7d46c40704a90a53e7', 'from': '0x8e9269041d059d1651c99ecfb5c49dd1a62ba7d9', 'to': '0x415ad5489d25d61a7fad58406036951f6d929991', 'value': 93.58571818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022dd0792a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:11:54.000Z'}}, {'blockNum': '0xa1ab27', 'uniqueId': '0x8063c721ff98cb9647a92eae71b52de155980e201f364d3097c48d9bbaed8e3e:log:68', 'hash': '0x8063c721ff98cb9647a92eae71b52de155980e201f364d3097c48d9bbaed8e3e', 'from': '0x962da0bab76747ba9927a08165e13f1e16da9fd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:12:07.000Z'}}, {'blockNum': '0xa1ab29', 'uniqueId': '0xed77e7852b81c7ec6363563004010b9a62c4f80d4debd05a457e4e71ed0efa93:log:62', 'hash': '0xed77e7852b81c7ec6363563004010b9a62c4f80d4debd05a457e4e71ed0efa93', 'from': '0x415ad5489d25d61a7fad58406036951f6d929991', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 93.58571818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022dd0792a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:12:17.000Z'}}, {'blockNum': '0xa1ab2c', 'uniqueId': '0x7776eee081179e8179d1fc48fce623b93d7aebe83c295b9df6942f3e5e3f3308:log:10', 'hash': '0x7776eee081179e8179d1fc48fce623b93d7aebe83c295b9df6942f3e5e3f3308', 'from': '0xbf097fe8ae6d6b2af43a065c04d65505066d6e26', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 759.41561206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ae784376', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:13:14.000Z'}}, {'blockNum': '0xa1ab2c', 'uniqueId': '0xd2fd586b44b2f3dd367d1d6a6cf8480db59383b1d8d0468d0bcf30db625d9b1f:log:17', 'hash': '0xd2fd586b44b2f3dd367d1d6a6cf8480db59383b1d8d0468d0bcf30db625d9b1f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x15a5e61bbc3aa98c9d3bf7932855bfcec74bd6bb', 'value': 685.63676202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff6b6ac2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:13:14.000Z'}}, {'blockNum': '0xa1ab40', 'uniqueId': '0xae11e1f95d2ab2c463f5a1091bd193dd129b005f792b4bef00f097fa781f9ec7:log:35', 'hash': '0xae11e1f95d2ab2c463f5a1091bd193dd129b005f792b4bef00f097fa781f9ec7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 16552.17993658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae37ba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:17:10.000Z'}}, {'blockNum': '0xa1ab5d', 'uniqueId': '0xfbe3598c1d32d6d3da78fc4da38318ac8581e2c121f954ab4e08b984980d1c60:log:17', 'hash': '0xfbe3598c1d32d6d3da78fc4da38318ac8581e2c121f954ab4e08b984980d1c60', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16552.17993658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae37ba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:24:48.000Z'}}, {'blockNum': '0xa1ab93', 'uniqueId': '0x868bdd448fdad9ad069bf8f793afc5f3c231b2a9cbe503c180b73f744713612b:log:47', 'hash': '0x868bdd448fdad9ad069bf8f793afc5f3c231b2a9cbe503c180b73f744713612b', 'from': '0x8222c672525c00b41bba09cf4dd274e3cc1a3d3d', 'to': '0xc00eede43acce3bf33316e3b16c1887fc4cd2249', 'value': 250.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d6a56500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:35:43.000Z'}}, {'blockNum': '0xa1aba4', 'uniqueId': '0xee3fa180075d429ad20ee2890d79fc6a602be2eef4263ec706f3919257a2b923:log:143', 'hash': '0xee3fa180075d429ad20ee2890d79fc6a602be2eef4263ec706f3919257a2b923', 'from': '0x9c833b63a894529df923314c2ecb1e884f67f685', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:40:22.000Z'}}, {'blockNum': '0xa1abab', 'uniqueId': '0x64197711b2326bb25133a95fab9591246b4569b9bef13be4fa311a1d24a027f9:log:67', 'hash': '0x64197711b2326bb25133a95fab9591246b4569b9bef13be4fa311a1d24a027f9', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 1108.99276747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19d21cabcb', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:42:22.000Z'}}, {'blockNum': '0xa1abb7', 'uniqueId': '0xa6a77e2b281bacbdecc664e1156b1b188b4ce7960da9fb5d636d4603f59de07d:log:26', 'hash': '0xa6a77e2b281bacbdecc664e1156b1b188b4ce7960da9fb5d636d4603f59de07d', 'from': '0x15a5e61bbc3aa98c9d3bf7932855bfcec74bd6bb', 'to': '0x20c8d3e224375d2061a9969e790e8fad4fa32af1', 'value': 685.63676202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff6b6ac2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:45:34.000Z'}}, {'blockNum': '0xa1abd2', 'uniqueId': '0xc6bf715dbb485490b088dccad66335bd18937b85cea2c599543dfddd545e4dd6:log:44', 'hash': '0xc6bf715dbb485490b088dccad66335bd18937b85cea2c599543dfddd545e4dd6', 'from': '0xbeaa2b0d51398ef7191253710b4c80db8c4236c2', 'to': '0x28581879cad8c188f7687fadc1d35c10d9146e21', 'value': 170.27313444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f6e82f24', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:50:00.000Z'}}, {'blockNum': '0xa1abe1', 'uniqueId': '0xc4be7f5ac018aa3da8a9891f9ead26ea8725eb8b74a787fe148eb1f90dab14c9:log:124', 'hash': '0xc4be7f5ac018aa3da8a9891f9ead26ea8725eb8b74a787fe148eb1f90dab14c9', 'from': '0x28581879cad8c188f7687fadc1d35c10d9146e21', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 170.27313444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f6e82f24', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:52:49.000Z'}}, {'blockNum': '0xa1abed', 'uniqueId': '0xf13442df7876272bb35e24331bd2da3732f0a43e86ab9a0c55dd57d903656d39:log:13', 'hash': '0xf13442df7876272bb35e24331bd2da3732f0a43e86ab9a0c55dd57d903656d39', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9b37ff7ea63b8f58dc345c8bd9dd8cb20edb4f01', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:55:36.000Z'}}, {'blockNum': '0xa1ac00', 'uniqueId': '0xdbe8de02a8ca474fb4a1c8d6b3884c1092cacec2c14f12729eae8689ff37197b:log:72', 'hash': '0xdbe8de02a8ca474fb4a1c8d6b3884c1092cacec2c14f12729eae8689ff37197b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2064.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x300e755240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:00:31.000Z'}}, {'blockNum': '0xa1ac05', 'uniqueId': '0xc6586f21365eef81be1d98391c74b139e1333d0cfbb8bedad6be36ded3143b9e:log:33', 'hash': '0xc6586f21365eef81be1d98391c74b139e1333d0cfbb8bedad6be36ded3143b9e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:03:19.000Z'}}, {'blockNum': '0xa1ac05', 'uniqueId': '0x2359b90df14b0096ceee134ccf16ea4701d1c7d1bcc1fbea92ea93ad18729e01:log:92', 'hash': '0x2359b90df14b0096ceee134ccf16ea4701d1c7d1bcc1fbea92ea93ad18729e01', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 458.22961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aab42e568', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:03:19.000Z'}}, {'blockNum': '0xa1ac2d', 'uniqueId': '0x3779524b9bdd761a48e43ea8d3469fb2a74223dbe28545ff8e3fe4a4388ec602:log:69', 'hash': '0x3779524b9bdd761a48e43ea8d3469fb2a74223dbe28545ff8e3fe4a4388ec602', 'from': '0x0c86b0b5e07259f8ff70f03cb39c758ee03f0645', 'to': '0x87eb0d4a2e07e0685a8eb5ccd3610fc10d32c527', 'value': 9.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3af2f140', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:13:52.000Z'}}, {'blockNum': '0xa1ac3a', 'uniqueId': '0xfd3ead419a2c255ac916d486a3d736790842246b3e8373c4d60dafdbce3d31a9:log:172', 'hash': '0xfd3ead419a2c255ac916d486a3d736790842246b3e8373c4d60dafdbce3d31a9', 'from': '0x5d51295e28773c997d0472c6f8273d22c5e84c82', 'to': '0x146bc877c1b80ee73d8c5a06e982ac26762b1c00', 'value': 150.8584643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03832fbf9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:16:40.000Z'}}, {'blockNum': '0xa1ac41', 'uniqueId': '0xd525d35c634cb92a7dd7e27859b21bca647505cc47355fe72797eceed9b571e5:log:0', 'hash': '0xd525d35c634cb92a7dd7e27859b21bca647505cc47355fe72797eceed9b571e5', 'from': '0x146bc877c1b80ee73d8c5a06e982ac26762b1c00', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 150.8584643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03832fbf9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:17:48.000Z'}}, {'blockNum': '0xa1ac56', 'uniqueId': '0x3e61f04b8c31e5da816e6c7b54513bd45024391d00f3660b2a6cba5debedee94:log:119', 'hash': '0x3e61f04b8c31e5da816e6c7b54513bd45024391d00f3660b2a6cba5debedee94', 'from': '0x175e485af54c94ae8369528eec5e460cee661aa1', 'to': '0x136147be70d81e41b7c0fa59bc0e38d7cb0b1a1d', 'value': 1271.29584701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d9983843d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:21:33.000Z'}}, {'blockNum': '0xa1ac62', 'uniqueId': '0x5a200083f030cb35dbf83b79faa92030283e74d216cd303ad5f25afb162df712:log:99', 'hash': '0x5a200083f030cb35dbf83b79faa92030283e74d216cd303ad5f25afb162df712', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 826.016786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x133b719708', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:23:42.000Z'}}, {'blockNum': '0xa1ac6f', 'uniqueId': '0xb2b4de64e958b7b2d1eeeb0f496f99eccd7b5aa67ff99e5b32dffa5778c2e4fa:log:191', 'hash': '0xb2b4de64e958b7b2d1eeeb0f496f99eccd7b5aa67ff99e5b32dffa5778c2e4fa', 'from': '0x8cb7c49f98ae135fd403983ef791e41850d05b0e', 'to': '0x1c1f255543b2107b2d124a6ee12c77f86f2a9a85', 'value': 213.99692437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb856495', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:27:02.000Z'}}, {'blockNum': '0xa1ac70', 'uniqueId': '0x2a6c7a4fa422617d0bcf17f8c5063d8bcafa927d54502b8964ab1219b036467b:log:38', 'hash': '0x2a6c7a4fa422617d0bcf17f8c5063d8bcafa927d54502b8964ab1219b036467b', 'from': '0x1c1f255543b2107b2d124a6ee12c77f86f2a9a85', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 213.99692437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb856495', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:28:11.000Z'}}, {'blockNum': '0xa1ac70', 'uniqueId': '0x274ba6701eaac258652352dc7cad25e016b9d696ae709c1470f9f87fae189e21:log:48', 'hash': '0x274ba6701eaac258652352dc7cad25e016b9d696ae709c1470f9f87fae189e21', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0x1b7a57b4784412a7bbb9b42f356cd86b48c43ea8', 'value': 615.77341991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e564bac27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:28:11.000Z'}}, {'blockNum': '0xa1ac72', 'uniqueId': '0x348c63686131cb8b759d8eb80171812cc2da9a8b1319049bc703ffa75058288e:log:138', 'hash': '0x348c63686131cb8b759d8eb80171812cc2da9a8b1319049bc703ffa75058288e', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0xac8054e60353cc79cbc87d602abcb7ba80a780a7', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:30:08.000Z'}}, {'blockNum': '0xa1ac76', 'uniqueId': '0x90a86d0fba5e03c1e932cf10c88e89095b35005b80ccb8ce589eb58f88a3e6d3:log:3', 'hash': '0x90a86d0fba5e03c1e932cf10c88e89095b35005b80ccb8ce589eb58f88a3e6d3', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:31:05.000Z'}}, {'blockNum': '0xa1ac79', 'uniqueId': '0x61011111efb9e3c7df68d891aeecae393436f885862217059abf22cd4b546faa:log:223', 'hash': '0x61011111efb9e3c7df68d891aeecae393436f885862217059abf22cd4b546faa', 'from': '0xac8054e60353cc79cbc87d602abcb7ba80a780a7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:31:15.000Z'}}, {'blockNum': '0xa1ac8b', 'uniqueId': '0x5208b0bbe023497db0035c659f2fe3960c86cdf2acae4541a225c5a667caf8a8:log:128', 'hash': '0x5208b0bbe023497db0035c659f2fe3960c86cdf2acae4541a225c5a667caf8a8', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x8951d793d9866c5f100998da96dfaba2926ee492', 'value': 639.76468014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee54b6e2e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:34:05.000Z'}}, {'blockNum': '0xa1ac91', 'uniqueId': '0x7410edb552f76858c7d3b23d68c75804e1a894d380a27225589120a523b810ee:log:259', 'hash': '0x7410edb552f76858c7d3b23d68c75804e1a894d380a27225589120a523b810ee', 'from': '0x8951d793d9866c5f100998da96dfaba2926ee492', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 639.76468014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee54b6e2e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:35:34.000Z'}}, {'blockNum': '0xa1acb4', 'uniqueId': '0xcf51e9f8c35fea27f5f3e05f570b7a7471ed7211832049b24cc08339605d37b2:log:64', 'hash': '0xcf51e9f8c35fea27f5f3e05f570b7a7471ed7211832049b24cc08339605d37b2', 'from': '0x1583963e9060e93fe9076068e13c9d57a36a3a08', 'to': '0xcf0827f3ecd7855eb0cef14b17f1a5332f7dff6e', 'value': 198.65261596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a00fd61c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:42:18.000Z'}}, {'blockNum': '0xa1acb8', 'uniqueId': '0xf045cd66303f239cb8300cc2bf2f390ea4a3ada8fd3ad2e92ed838aa75f3699c:log:68', 'hash': '0xf045cd66303f239cb8300cc2bf2f390ea4a3ada8fd3ad2e92ed838aa75f3699c', 'from': '0xcf0827f3ecd7855eb0cef14b17f1a5332f7dff6e', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 198.65261596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a00fd61c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:43:35.000Z'}}, {'blockNum': '0xa1ad07', 'uniqueId': '0xac80a0c1c23d00d7b1b50717da37b225b0b2b1a8f966f6a2dcc92c4c7324a0da:log:149', 'hash': '0xac80a0c1c23d00d7b1b50717da37b225b0b2b1a8f966f6a2dcc92c4c7324a0da', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3564.07509263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52fb8b010f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:00:44.000Z'}}, {'blockNum': '0xa1ad0f', 'uniqueId': '0xb84fb8c03c1269d015e1b1baede332b22e775bddbed8f5334d7e41c756aabf21:log:35', 'hash': '0xb84fb8c03c1269d015e1b1baede332b22e775bddbed8f5334d7e41c756aabf21', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:02:40.000Z'}}, {'blockNum': '0xa1ad26', 'uniqueId': '0x6dd1f2dfb556dd92fd639abe1bbfe9ae403c7e1033b5c37de33c7efe44978b03:log:8', 'hash': '0x6dd1f2dfb556dd92fd639abe1bbfe9ae403c7e1033b5c37de33c7efe44978b03', 'from': '0x7e0d57959c438b7ca4f697f9719c32edbac57ee1', 'to': '0x357e29eac34fd2893b5df6c8cde3272fa7022d42', 'value': 6734.4223219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9ccc48f77e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:06:47.000Z'}}, {'blockNum': '0xa1ad2c', 'uniqueId': '0x5ca1cfd2f79bb8fe4121cc9129bba98dac3fa568c235431b6df1126f9454e1f9:log:28', 'hash': '0x5ca1cfd2f79bb8fe4121cc9129bba98dac3fa568c235431b6df1126f9454e1f9', 'from': '0x5321bd1db60c1f705c2e5bb5d667df0b1ee90ff3', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 667.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f8aa24600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:07:30.000Z'}}, {'blockNum': '0xa1ad30', 'uniqueId': '0xe9c1f1f6cc33112e677720b75770695a6c89cec5aceea4f2d5d5ba0dd15b8fd1:log:15', 'hash': '0xe9c1f1f6cc33112e677720b75770695a6c89cec5aceea4f2d5d5ba0dd15b8fd1', 'from': '0x80b5b304c0eac3041b4507bb1c879d8e5745dcac', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1664.24094282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26bfa6264a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:09:23.000Z'}}, {'blockNum': '0xa1ad43', 'uniqueId': '0x835717ab14db11c636a1931f32c7306fba14d7297b17df15f5971f4e596ab991:log:52', 'hash': '0x835717ab14db11c636a1931f32c7306fba14d7297b17df15f5971f4e596ab991', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 1092.261049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x196e621844', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:14:14.000Z'}}, {'blockNum': '0xa1ad48', 'uniqueId': '0xca553f3099c7b796923597e03ddf2be59d9ae59b827c4c8976d4b67fd8cf51a3:log:56', 'hash': '0xca553f3099c7b796923597e03ddf2be59d9ae59b827c4c8976d4b67fd8cf51a3', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1927.812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ce2a7aa80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:15:22.000Z'}}, {'blockNum': '0xa1ad54', 'uniqueId': '0xf2d92219ae0cb8c67ad168684857acee59a699ba2c083fccb10afd6a32317d58:log:17', 'hash': '0xf2d92219ae0cb8c67ad168684857acee59a699ba2c083fccb10afd6a32317d58', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 1477.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2265fd7f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:18:53.000Z'}}, {'blockNum': '0xa1ad64', 'uniqueId': '0xfaf1acbb3e9130678a97c7ac95b4c1add0b2b4259eb20d777edeadcd91b64908:log:66', 'hash': '0xfaf1acbb3e9130678a97c7ac95b4c1add0b2b4259eb20d777edeadcd91b64908', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xfe22dc8a10cd4055239d4c314df55278142a5471', 'value': 1262.207289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d63577a44', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:21:14.000Z'}}, {'blockNum': '0xa1ad6e', 'uniqueId': '0xcfa986da1224978ad87387e01d821530930791fa5d5f20be0dd8ea883ed566a5:log:5', 'hash': '0xcfa986da1224978ad87387e01d821530930791fa5d5f20be0dd8ea883ed566a5', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1477.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2265fd7f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:23:34.000Z'}}, {'blockNum': '0xa1ad8f', 'uniqueId': '0xbe12e0699809272b8f2d27655b2df7e5d982da1a9ff9e17a39952917437a7bbe:log:166', 'hash': '0xbe12e0699809272b8f2d27655b2df7e5d982da1a9ff9e17a39952917437a7bbe', 'from': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4801.22798668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fc98c824c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:30:52.000Z'}}, {'blockNum': '0xa1adaa', 'uniqueId': '0xaebb8bba471f8588265cd973b7776a55b4998aae1aa4016474f6115331a91189:log:35', 'hash': '0xaebb8bba471f8588265cd973b7776a55b4998aae1aa4016474f6115331a91189', 'from': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'to': '0x1e5eb041caccb99a9891cd27d5cb39bea1cdf027', 'value': 220.63488862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0523161f5e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:34:03.000Z'}}, {'blockNum': '0xa1adb6', 'uniqueId': '0xdd93777d8c13275e67183590cc6afb72d8c8543c6207cd7cc0c1f9512e3aa3cb:log:36', 'hash': '0xdd93777d8c13275e67183590cc6afb72d8c8543c6207cd7cc0c1f9512e3aa3cb', 'from': '0xb27334f24f94ff7bcedfd90e6bd14ba95b71f4e4', 'to': '0xf1b7e886ce565dabf18aebd90e0706e03605617f', 'value': 9437.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdbbeadd0a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:37:47.000Z'}}, {'blockNum': '0xa1add6', 'uniqueId': '0xcb44533eb4f4f84318deda0c4f0c392c4682f14ea541b8cfbfff8f21dce9b5df:log:50', 'hash': '0xcb44533eb4f4f84318deda0c4f0c392c4682f14ea541b8cfbfff8f21dce9b5df', 'from': '0x1203de80e5eef81899a99ec3fe9e7e5630ba9cc8', 'to': '0xb39c99249de77392aade86dd589223bd5d5cc09c', 'value': 789.63309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12629479c8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:45:37.000Z'}}, {'blockNum': '0xa1ae01', 'uniqueId': '0x620741bc9aecd4f7fd9f88bb36b235fd9b5eb25e76ba7b003e4f3742fd034c49:log:75', 'hash': '0x620741bc9aecd4f7fd9f88bb36b235fd9b5eb25e76ba7b003e4f3742fd034c49', 'from': '0x27f7a9a19b02a1b2db366d465a2966f925c53be5', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1848.20614296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2b082ac498', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:54:21.000Z'}}, {'blockNum': '0xa1ae4c', 'uniqueId': '0x7f2999fc41eb0c0ec1f484ec5970d8111d3b94cf298809a6ba74cd847ed0b86b:log:4', 'hash': '0x7f2999fc41eb0c0ec1f484ec5970d8111d3b94cf298809a6ba74cd847ed0b86b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 767.74488414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e01db95e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:13:28.000Z'}}, {'blockNum': '0xa1ae56', 'uniqueId': '0xcce2fa7681d059a9372666b3ba746e8a4f5cd54298708db1b86e925f4d236867:log:91', 'hash': '0xcce2fa7681d059a9372666b3ba746e8a4f5cd54298708db1b86e925f4d236867', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xaae374c03680420ccfec622ee6a8e0ecc5cce28d', 'value': 28.7940905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba04b9a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:07.000Z'}}, {'blockNum': '0xa1ae56', 'uniqueId': '0x23076c1fa64dfd133df1104471ad72bedaf0e3e367dfbd50c944203b3b48e8b6:log:166', 'hash': '0x23076c1fa64dfd133df1104471ad72bedaf0e3e367dfbd50c944203b3b48e8b6', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x34d52438bf89a0fa3cda628be00cb48cbca139d5', 'value': 767.74488414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e01db95e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:07.000Z'}}, {'blockNum': '0xa1ae57', 'uniqueId': '0xdc6be451a8729f48f5480b3d5ce8a2e29da5acc4b9ba662b3d786f4b438cd963:log:118', 'hash': '0xdc6be451a8729f48f5480b3d5ce8a2e29da5acc4b9ba662b3d786f4b438cd963', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 2352.21750592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x36c44f1340', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:36.000Z'}}, {'blockNum': '0xa1ae5e', 'uniqueId': '0x00ce56d6bb357c0104d906df475ff3d2a816fa572115866e9365b3c6c5da9a7e:log:48', 'hash': '0x00ce56d6bb357c0104d906df475ff3d2a816fa572115866e9365b3c6c5da9a7e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd236d0493e20407d6b9a4d8fc64cebf772d5cdb4', 'value': 20.6459829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7b0f4512', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:17:25.000Z'}}, {'blockNum': '0xa1ae62', 'uniqueId': '0xbf832a20e020a9a11aa6c25ff2a8167944d745e4c7f4bf9f56860dbdcc774340:log:47', 'hash': '0xbf832a20e020a9a11aa6c25ff2a8167944d745e4c7f4bf9f56860dbdcc774340', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 958.312363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x164ffc9ecc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:18:41.000Z'}}, {'blockNum': '0xa1ae70', 'uniqueId': '0x9df4504b9b0586db08b4870a9e1ac19068fcac0eab4a36ce667b03e35c43aaf9:log:1', 'hash': '0x9df4504b9b0586db08b4870a9e1ac19068fcac0eab4a36ce667b03e35c43aaf9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2121.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x31666fcb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:22:20.000Z'}}, {'blockNum': '0xa1ae8d', 'uniqueId': '0x6e586eb055b805b53b161c1e44db61b8d78c5223bf850ee79756378bd81ab333:log:82', 'hash': '0x6e586eb055b805b53b161c1e44db61b8d78c5223bf850ee79756378bd81ab333', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 16815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01878135cf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:30:02.000Z'}}, {'blockNum': '0xa1ae9a', 'uniqueId': '0xdbbaa7c46eae7edcb0823fd42a7b4b1bec5c3cf34e9e9ff043908fc3a9761550:log:39', 'hash': '0xdbbaa7c46eae7edcb0823fd42a7b4b1bec5c3cf34e9e9ff043908fc3a9761550', 'from': '0xf779f407e59bd00799e690cf73ebd8753bc91307', 'to': '0xa19b86b565edfb7476dbc604004514c616ee3f03', 'value': 1430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x214b76d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:33:56.000Z'}}, {'blockNum': '0xa1ae9c', 'uniqueId': '0x2fa85ee43a1f867836df9a7a42b708daaded98ac2b44e781a32c06a96eb1accb:log:11', 'hash': '0x2fa85ee43a1f867836df9a7a42b708daaded98ac2b44e781a32c06a96eb1accb', 'from': '0x2cd0cd7fac0c41f919e8337c35282a5eb671fa90', 'to': '0xaf5d8a6adb591d492aaa2a06d2632e635eff6801', 'value': 331.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07b812a240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:45.000Z'}}, {'blockNum': '0xa1ae9d', 'uniqueId': '0xa9ae44344e13d0628abb2156aae89b53ae0c4eacf910b6e3baa856436d3ef4a5:log:117', 'hash': '0xa9ae44344e13d0628abb2156aae89b53ae0c4eacf910b6e3baa856436d3ef4a5', 'from': '0x357e29eac34fd2893b5df6c8cde3272fa7022d42', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6734.4223219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9ccc48f77e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:58.000Z'}}, {'blockNum': '0xa1ae9d', 'uniqueId': '0xaaef74d03123c6faa7644d26e1dc6446fcaf9b2a3b46ef21b5772b99a78fe129:log:123', 'hash': '0xaaef74d03123c6faa7644d26e1dc6446fcaf9b2a3b46ef21b5772b99a78fe129', 'from': '0xf1b7e886ce565dabf18aebd90e0706e03605617f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9437.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdbbeadd0a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:58.000Z'}}, {'blockNum': '0xa1ae9e', 'uniqueId': '0x9ec916648fe56bdc49a0cca83657aa2d420210ffc158e76973f8570ea8fcbc4b:log:87', 'hash': '0x9ec916648fe56bdc49a0cca83657aa2d420210ffc158e76973f8570ea8fcbc4b', 'from': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2352.21750592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x36c44f1340', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:35:08.000Z'}}, {'blockNum': '0xa1aea3', 'uniqueId': '0xb0391ba87a6040ca310138199e950e0285cbfe245af681034eff53b607272395:log:57', 'hash': '0xb0391ba87a6040ca310138199e950e0285cbfe245af681034eff53b607272395', 'from': '0xaf5d8a6adb591d492aaa2a06d2632e635eff6801', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 331.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07b812a240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:35:57.000Z'}}, {'blockNum': '0xa1aed0', 'uniqueId': '0xee81568bf866932651d8eb5d427bb25a9aa0197b81effa88aed5d2cbba049ae3:log:10', 'hash': '0xee81568bf866932651d8eb5d427bb25a9aa0197b81effa88aed5d2cbba049ae3', 'from': '0x161da8b1cba591ebf11edd0aaa65e4568df395b4', 'to': '0xb406d97c3bc7dc2e9b1c0755ad1f110f0d43fff3', 'value': 423.02299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09d969df5f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:46:38.000Z'}}, {'blockNum': '0xa1aee4', 'uniqueId': '0x8fc93953e8b5997daefff49349e7d901fa57ee3ef9c69443c40a90800c9b9a75:log:3', 'hash': '0x8fc93953e8b5997daefff49349e7d901fa57ee3ef9c69443c40a90800c9b9a75', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:51:11.000Z'}}, {'blockNum': '0xa1af1c', 'uniqueId': '0x9630e0182963395f5b238c062eb49ca28dfc41e92e6eb7fd6ede01199080a61c:log:25', 'hash': '0x9630e0182963395f5b238c062eb49ca28dfc41e92e6eb7fd6ede01199080a61c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 136.15535641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032b8c9619', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:04:10.000Z'}}, {'blockNum': '0xa1af27', 'uniqueId': '0xe5237059ad9af74445343f3ef358ed778c370759601928fbe1ba6c399b8606f8:log:29', 'hash': '0xe5237059ad9af74445343f3ef358ed778c370759601928fbe1ba6c399b8606f8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x857059f0371b79d51bb22c5376af84358bc8ec0d', 'value': 136.15535641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032b8c9619', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:05:40.000Z'}}, {'blockNum': '0xa1af4c', 'uniqueId': '0xaf5e9212f73b8ccd8d0c1243bcc63cf2fdd97931712d6f00094454976c716244:log:16', 'hash': '0xaf5e9212f73b8ccd8d0c1243bcc63cf2fdd97931712d6f00094454976c716244', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 19617.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c8c0d6f580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:11:30.000Z'}}, {'blockNum': '0xa1af4c', 'uniqueId': '0x8e422438f51affc2f69b03f06a5bb7d2c73ab6c2586f34980ae6ddebf00451ce:log:17', 'hash': '0x8e422438f51affc2f69b03f06a5bb7d2c73ab6c2586f34980ae6ddebf00451ce', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2519.141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3aa7401d20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:11:30.000Z'}}, {'blockNum': '0xa1afa2', 'uniqueId': '0xceac27066b9e2b8229183b4e0ef6926bad15ecb437cadee82803a2fb16968813:log:209', 'hash': '0xceac27066b9e2b8229183b4e0ef6926bad15ecb437cadee82803a2fb16968813', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19617.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c8c0d6f580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:32:17.000Z'}}, {'blockNum': '0xa1afc8', 'uniqueId': '0xbb5082095328f57994397ccd6ad5ee243cdc0d08aa38ad31363bdfe7c3043d3e:log:12', 'hash': '0xbb5082095328f57994397ccd6ad5ee243cdc0d08aa38ad31363bdfe7c3043d3e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2507.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a61741260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:40:16.000Z'}}, {'blockNum': '0xa1afc8', 'uniqueId': '0xc72615f0b2bcc5cf04a202d3c241626392ba66705067671164bf9be8a3d4b316:log:15', 'hash': '0xc72615f0b2bcc5cf04a202d3c241626392ba66705067671164bf9be8a3d4b316', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 16552.1799155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae2f7e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:40:16.000Z'}}, {'blockNum': '0xa1afd5', 'uniqueId': '0x7f0d41b61348b0894ab8fd4bd9e04ef7a6222d7db424a0a5726a1902655db7e2:log:14', 'hash': '0x7f0d41b61348b0894ab8fd4bd9e04ef7a6222d7db424a0a5726a1902655db7e2', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd44f8a53c9650d3be610372b3df8243075735cdd', 'value': 145.66153577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036435dd69', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:42:29.000Z'}}, {'blockNum': '0xa1afd6', 'uniqueId': '0xb2026cecc4cf3d1fa9c4e34bfc03ed6fccf5d40875eb7287d225f09ad9335312:log:29', 'hash': '0xb2026cecc4cf3d1fa9c4e34bfc03ed6fccf5d40875eb7287d225f09ad9335312', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 15329.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164ed2e1e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:42:36.000Z'}}, {'blockNum': '0xa1afda', 'uniqueId': '0x0cbebb2024857b25842edc9c81db0aacb516676a041ac3160688df6c1d6162bb:log:1', 'hash': '0x0cbebb2024857b25842edc9c81db0aacb516676a041ac3160688df6c1d6162bb', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16552.1799155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae2f7e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:43:21.000Z'}}, {'blockNum': '0xa1afda', 'uniqueId': '0x12facbfa25bef0a494dbc4c9751908a9b3d76b461ca8383f6c580a063fa27de8:log:2', 'hash': '0x12facbfa25bef0a494dbc4c9751908a9b3d76b461ca8383f6c580a063fa27de8', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2507.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a61741260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:43:21.000Z'}}, {'blockNum': '0xa1afdf', 'uniqueId': '0xcc4393188ae325c70e62f8cb1ac7d96e4b4fe68c4b5ae28e9b7be2dd2a351101:log:3', 'hash': '0xcc4393188ae325c70e62f8cb1ac7d96e4b4fe68c4b5ae28e9b7be2dd2a351101', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 15329.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164ed2e1e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:45:48.000Z'}}, {'blockNum': '0xa1b001', 'uniqueId': '0x21d5cd7f3f560cb00c845eedf91131d4811f264cf1da9155923c61d36bfa6406:log:30', 'hash': '0x21d5cd7f3f560cb00c845eedf91131d4811f264cf1da9155923c61d36bfa6406', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'value': 3130.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x48e5d53300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:54:40.000Z'}}, {'blockNum': '0xa1b015', 'uniqueId': '0x8433666200ee7263b56d7af58f9eca2737bf25ffc140c7ccb3b2cacb37e0ab29:log:105', 'hash': '0x8433666200ee7263b56d7af58f9eca2737bf25ffc140c7ccb3b2cacb37e0ab29', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbf767800b7c5659cfe5f4c4eb79cdc62740da3cf', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:01:32.000Z'}}, {'blockNum': '0xa1b028', 'uniqueId': '0xe4c38d332d60e5ad09375ed80c7cc508e4d6716a6ae410577ebee3e5684ff064:log:46', 'hash': '0xe4c38d332d60e5ad09375ed80c7cc508e4d6716a6ae410577ebee3e5684ff064', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2503.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a4c990580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:08:17.000Z'}}, {'blockNum': '0xa1b030', 'uniqueId': '0xf81d819075101edf73d224813b858eedde0cd29a455fc6a938ace88edd2cf22d:log:133', 'hash': '0xf81d819075101edf73d224813b858eedde0cd29a455fc6a938ace88edd2cf22d', 'from': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3130.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x48e5d53300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:10:41.000Z'}}, {'blockNum': '0xa1b094', 'uniqueId': '0xb8a1b00e95a81e69baae7196801956c46e8e42b64900dad433bf51b32a3387e7:log:18', 'hash': '0xb8a1b00e95a81e69baae7196801956c46e8e42b64900dad433bf51b32a3387e7', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x3645250b59efbdd11561bfe25a8d2833b9a58868', 'value': 109.58522944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028d2dca40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:30:38.000Z'}}, {'blockNum': '0xa1b095', 'uniqueId': '0xc43ddc36a41e16dae82346f7aadfc09d7f4255d8071a2ac1f2bc9bf4706d658f:log:242', 'hash': '0xc43ddc36a41e16dae82346f7aadfc09d7f4255d8071a2ac1f2bc9bf4706d658f', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29958.782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b9884182c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:30:47.000Z'}}, {'blockNum': '0xa1b097', 'uniqueId': '0x31169283bd1cf62cf7e4ce8704604a2e44130a669867da6d72c8658d2979a498:log:192', 'hash': '0x31169283bd1cf62cf7e4ce8704604a2e44130a669867da6d72c8658d2979a498', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49679.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0484b3db7c20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:31:00.000Z'}}, {'blockNum': '0xa1b0a3', 'uniqueId': '0x9bc6b2b547b17c20c980d2c23a616386a8e51e0ca5a562f4a204aba3640a1b60:log:60', 'hash': '0x9bc6b2b547b17c20c980d2c23a616386a8e51e0ca5a562f4a204aba3640a1b60', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4c09984091d0dc4b86502d03727059528bdb4141', 'value': 986.18500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16f61ee3a1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:33:41.000Z'}}, {'blockNum': '0xa1b0d9', 'uniqueId': '0xd9ccdd7401dad344f6014f840791feb653282af6400b8dcf8be7d084ea15c9c6:log:22', 'hash': '0xd9ccdd7401dad344f6014f840791feb653282af6400b8dcf8be7d084ea15c9c6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd0072ee2bed1b15cc7c6e01efc7a9e40dad66d1c', 'value': 571.59282869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0d4ef570b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:44:35.000Z'}}, {'blockNum': '0xa1b15c', 'uniqueId': '0x4551901515939df6edede3b133c5aa3aeb429ec14f432f52763180aa5627dfe7:log:93', 'hash': '0x4551901515939df6edede3b133c5aa3aeb429ec14f432f52763180aa5627dfe7', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2050.573412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2fbe5eb710', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:09:45.000Z'}}, {'blockNum': '0xa1b194', 'uniqueId': '0x20532199e5407def7145d89e731f3b7ad9a4db1b3fd847434a50c52d4f82fd1b:log:44', 'hash': '0x20532199e5407def7145d89e731f3b7ad9a4db1b3fd847434a50c52d4f82fd1b', 'from': '0xa96b536eef496e21f5432fd258b6f78cf3673f74', 'to': '0x8b453d020ecec6433beb4a09589a3c90033b9104', 'value': 82.93640992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ee56eb20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:22:33.000Z'}}, {'blockNum': '0xa1b1b0', 'uniqueId': '0xb4b39d0172ff347701a60df1df049f7e47ecee702132d08c8e1918af2386f7f2:log:5', 'hash': '0xb4b39d0172ff347701a60df1df049f7e47ecee702132d08c8e1918af2386f7f2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8b453d020ecec6433beb4a09589a3c90033b9104', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:26:36.000Z'}}, {'blockNum': '0xa1b1b0', 'uniqueId': '0x8174bf1936ae8746801997a8a13b548224a244e5c818156e7a6aa00a11f41d44:log:8', 'hash': '0x8174bf1936ae8746801997a8a13b548224a244e5c818156e7a6aa00a11f41d44', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe23937a89f8d9f0a50bc655cee409258d632b3de', 'value': 193.78164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0483075120', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:26:36.000Z'}}, {'blockNum': '0xa1b21e', 'uniqueId': '0x20ada5c551fddb64342e44dbcb9deb3a76af47a00bc0e11872a77520c5af74b2:log:60', 'hash': '0x20ada5c551fddb64342e44dbcb9deb3a76af47a00bc0e11872a77520c5af74b2', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x04d5e5aa341773695ecab47bbd68175732766884', 'value': 319.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0771803a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:53:08.000Z'}}, {'blockNum': '0xa1b221', 'uniqueId': '0xb78e623a511273c0e077345d0c5a4c684c9310f6c4dd1e28920ef48a3e77ccc0:log:48', 'hash': '0xb78e623a511273c0e077345d0c5a4c684c9310f6c4dd1e28920ef48a3e77ccc0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x818fc66be24f3221fb13bae9109bfc05c7b9ddb4', 'value': 0.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0493e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:54:25.000Z'}}, {'blockNum': '0xa1b226', 'uniqueId': '0x69c6582f04c89b40d7d0e198242f3dd8196ea22cea2a8c907e11d35e72762169:log:101', 'hash': '0x69c6582f04c89b40d7d0e198242f3dd8196ea22cea2a8c907e11d35e72762169', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x992a93edfa32a04f838d6cd5b3287c7b947cccae', 'value': 58.372926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015bee0438', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:56:27.000Z'}}, {'blockNum': '0xa1b244', 'uniqueId': '0x3bfbabeea1c3f5a9a8a3edb0eed34ffdff8b69e4f32c27cb60cdf8473069bedf:log:168', 'hash': '0x3bfbabeea1c3f5a9a8a3edb0eed34ffdff8b69e4f32c27cb60cdf8473069bedf', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3512.44708578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x51c7d0eae2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:01:59.000Z'}}, {'blockNum': '0xa1b264', 'uniqueId': '0xc811cb3f77e6d838e4bc49360292b370b53c50c407ec1a7f78fd28c94f04f6c7:log:17', 'hash': '0xc811cb3f77e6d838e4bc49360292b370b53c50c407ec1a7f78fd28c94f04f6c7', 'from': '0x818fc66be24f3221fb13bae9109bfc05c7b9ddb4', 'to': '0xeb1584075e174c9998bd9cd672f812c05945089b', 'value': 188.447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04633b4d60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:09:19.000Z'}}, {'blockNum': '0xa1b2bc', 'uniqueId': '0xf11f959ce02d20fe90691f0fc79516724d4bb53a667c7f70c7bf198f2253c9eb:log:95', 'hash': '0xf11f959ce02d20fe90691f0fc79516724d4bb53a667c7f70c7bf198f2253c9eb', 'from': '0x18b2e69083d6f20337c62667998045252565af56', 'to': '0x5355be56a8b2b4d82894d0ecd48b3e22a6aa35b9', 'value': 510.08, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0be0505000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:29:57.000Z'}}, {'blockNum': '0xa1b2ea', 'uniqueId': '0x75ba2e34146d8eaaef7205e21858a571eb0176643dfb736d798c28c849044266:log:47', 'hash': '0x75ba2e34146d8eaaef7205e21858a571eb0176643dfb736d798c28c849044266', 'from': '0x38b706fc6b521996fdbd57d5808f9a8d6f2906e5', 'to': '0x845eb3acc1f315392ff405da89bad19c701e12db', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:40:14.000Z'}}, {'blockNum': '0xa1b2f2', 'uniqueId': '0x21c7428990bb06b64b060fad5fe71639f6a7e4ace04c998bb2511c9044b42696:log:17', 'hash': '0x21c7428990bb06b64b060fad5fe71639f6a7e4ace04c998bb2511c9044b42696', 'from': '0xbf767800b7c5659cfe5f4c4eb79cdc62740da3cf', 'to': '0xbd1b449e02510600095b7219c685cf9d42084d4a', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:41:38.000Z'}}, {'blockNum': '0xa1b2fc', 'uniqueId': '0xef8c2fc1e3e85249bf770834b1392041794d875c0aa0395a396f370b38cf5068:log:75', 'hash': '0xef8c2fc1e3e85249bf770834b1392041794d875c0aa0395a396f370b38cf5068', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe2065d6cece3157c9f100dce3568bffc1c05a16', 'value': 42.896386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xffaeb0c8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:43:02.000Z'}}, {'blockNum': '0xa1b2fd', 'uniqueId': '0x7d8715a06cee0db9d3b5b623b88b59e0bc6bf8808bad47d01133015d40cc6289:log:45', 'hash': '0x7d8715a06cee0db9d3b5b623b88b59e0bc6bf8808bad47d01133015d40cc6289', 'from': '0xbd1b449e02510600095b7219c685cf9d42084d4a', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:43:35.000Z'}}, {'blockNum': '0xa1b30b', 'uniqueId': '0x31f89b25dd3781ce81c8631a6bf63e7c54ab5c6d70e1123ae809985c222b5fdc:log:33', 'hash': '0x31f89b25dd3781ce81c8631a6bf63e7c54ab5c6d70e1123ae809985c222b5fdc', 'from': '0x38b706fc6b521996fdbd57d5808f9a8d6f2906e5', 'to': '0x845eb3acc1f315392ff405da89bad19c701e12db', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:46:36.000Z'}}, {'blockNum': '0xa1b313', 'uniqueId': '0xa1dc078dcda7074111fbaebfc96bfb8a1a7106df15eecb5e67d343e059580e70:log:22', 'hash': '0xa1dc078dcda7074111fbaebfc96bfb8a1a7106df15eecb5e67d343e059580e70', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:47:28.000Z'}}, {'blockNum': '0xa1b394', 'uniqueId': '0xe517080822db4631689e7ce1fc649445502cca7f4e5c9c3069ad96e8c9438b0e:log:164', 'hash': '0xe517080822db4631689e7ce1fc649445502cca7f4e5c9c3069ad96e8c9438b0e', 'from': '0xaae374c03680420ccfec622ee6a8e0ecc5cce28d', 'to': '0x7d9927449f7db9a8c107959300acc75ae6e14419', 'value': 28.7940905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba04b9a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:13:52.000Z'}}, {'blockNum': '0xa1b3d0', 'uniqueId': '0xc415b22abd15929b1d55d2f6215421de7f4606b9128c7de253f3c39276494ff3:log:130', 'hash': '0xc415b22abd15929b1d55d2f6215421de7f4606b9128c7de253f3c39276494ff3', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x0706ba9e814171830e0cd30b64bbaad0ebd5b0f4', 'value': 16.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6516e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:26:34.000Z'}}, {'blockNum': '0xa1b3d9', 'uniqueId': '0x28018df0700a55c73ea4b6a0e4fceb3f2938953a3ef06df64afca59a088d6b3d:log:118', 'hash': '0x28018df0700a55c73ea4b6a0e4fceb3f2938953a3ef06df64afca59a088d6b3d', 'from': '0x6f4f230d0d3be76929a9068163ac2f07e1ab419e', 'to': '0xc922a08d7caac245e2d5dc81671b7aa91cbdb30a', 'value': 16172.27386313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01788a438dc9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:29:13.000Z'}}, {'blockNum': '0xa1b3dd', 'uniqueId': '0x0eb7da6b7c63b1136b4806d728a56f2d9ef0f05aba87e2b54187642133a4f8e3:log:50', 'hash': '0x0eb7da6b7c63b1136b4806d728a56f2d9ef0f05aba87e2b54187642133a4f8e3', 'from': '0xc922a08d7caac245e2d5dc81671b7aa91cbdb30a', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 16172.2738631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01788a438dc6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:29:59.000Z'}}, {'blockNum': '0xa1b3e2', 'uniqueId': '0x126e4c79d7b592bd8b4aa0a1a15801d072d96d877f29bf6514864ef7edc3afec:log:189', 'hash': '0x126e4c79d7b592bd8b4aa0a1a15801d072d96d877f29bf6514864ef7edc3afec', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3ae203c100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:30:35.000Z'}}, {'blockNum': '0xa1b3ef', 'uniqueId': '0x67aa59e96606072f6cbf58d0245f615595d55ccfee858259a06ae15438ce61e4:log:12', 'hash': '0x67aa59e96606072f6cbf58d0245f615595d55ccfee858259a06ae15438ce61e4', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x0706ba9e814171830e0cd30b64bbaad0ebd5b0f4', 'value': 3045.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x46e8a777c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:32:59.000Z'}}]}}
Number of returned transfers:  184
Answer is complete
 
symbol             RDN
group              CPS
date        2020-08-25
hour             18:00
exchange       binance
Name: 422, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-08-25 18:00:00 2020-08-25 06:00:00 2020-08-26 06:00:00
Unix timestamps:  1598328000.0 1598414400.0
Hex Block Numbers:  0xa3af89 0xa3c8c1
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa3af92', 'uniqueId': '0x5b5f1766a2b18b3a6d710a79e614b187fe7e2a5768e0df12367630b6e5e29ba5:log:141', 'hash': '0x5b5f1766a2b18b3a6d710a79e614b187fe7e2a5768e0df12367630b6e5e29ba5', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12606.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02ab6a37c06abb060000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:02:18.000Z'}}, {'blockNum': '0xa3afb9', 'uniqueId': '0xa198d77ba72da8ee014c6b81591a71907d2afe0dfcfcdf750b87c060ca995d87:log:77', 'hash': '0xa198d77ba72da8ee014c6b81591a71907d2afe0dfcfcdf750b87c060ca995d87', 'from': '0xde056f077b0568cbc995dd44e2360b2d9bfd43bc', 'to': '0xccb1d9e0564cf24c8295d12a47445835561df253', 'value': 380.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x149dfc837bcbc98000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:10:28.000Z'}}, {'blockNum': '0xa3afc2', 'uniqueId': '0x806f79a7be4cb76ed6578988925cca3a8c54fe75bc4de8ae42c26a2c3ad96797:log:69', 'hash': '0x806f79a7be4cb76ed6578988925cca3a8c54fe75bc4de8ae42c26a2c3ad96797', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6278.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01545a2a08aa04bf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:12:34.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x08c50a20c1b324ee0901b92dd5f0763c5fae8646a0df8612089dbfc0a8513ae6:log:232', 'hash': '0x08c50a20c1b324ee0901b92dd5f0763c5fae8646a0df8612089dbfc0a8513ae6', 'from': '0x7ef08b22f03f0686ce8f38f0c56f2e6e9eefb1fb', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1841.5291041194982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x63d459a35b7a05fa0b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b:log:241', 'hash': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 750.1416094495095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28aa4e5b5fadd1e174', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b:log:247', 'hash': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 750.1416094495095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28aa4e5b5fadd1e174', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe3', 'uniqueId': '0xeae232ab680d756b2c5677218f305fa9832788d2a18cec3678342df42e712354:log:112', 'hash': '0xeae232ab680d756b2c5677218f305fa9832788d2a18cec3678342df42e712354', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xa085e5bf56ef8babd4bec8173dc07b144724023a', 'value': 1954.94495572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x69fa4faf7c2c5ad000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:54.000Z'}}, {'blockNum': '0xa3aff1', 'uniqueId': '0xeaae50060d7c2d1d0f837966f529eb3bf4db1209aa5238acef3a1b02acebd665:log:151', 'hash': '0xeaae50060d7c2d1d0f837966f529eb3bf4db1209aa5238acef3a1b02acebd665', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1186.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x404df87e30a81d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:20:39.000Z'}}, {'blockNum': '0xa3aff2', 'uniqueId': '0x3ca0bf4bbca895beea7aa84475bef8a8cf47d72e2a7574157e933d7bddcbf8b9:log:117', 'hash': '0x3ca0bf4bbca895beea7aa84475bef8a8cf47d72e2a7574157e933d7bddcbf8b9', 'from': '0x0f29ea2b1103ff6c491d0e262f54aaa0e810dd06', 'to': '0xf07e40317c1b6a0a668809805f1d6046a13f7517', 'value': 350.84769418999997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1304fd66febbd408b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:20:50.000Z'}}, {'blockNum': '0xa3b024', 'uniqueId': '0xf0dc24f2530ae990667aebad615b8831ef732f2ca659a7b87a590f28e898695b:log:58', 'hash': '0xf0dc24f2530ae990667aebad615b8831ef732f2ca659a7b87a590f28e898695b', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6278.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01545a2a08aa04bf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:32:35.000Z'}}, {'blockNum': '0xa3b038', 'uniqueId': '0xa070576e527ce7c4a9c84e0292da48a2eacff267dfde1c5754daaac79169eb10:log:48', 'hash': '0xa070576e527ce7c4a9c84e0292da48a2eacff267dfde1c5754daaac79169eb10', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1210.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x419a9461b51be68000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:37:10.000Z'}}, {'blockNum': '0xa3b04e', 'uniqueId': '0x569b45fdbdf0f8ee32ffa38284a7d1b4d015a489b2f84e6a96f4ee8d4ce0287a:log:227', 'hash': '0x569b45fdbdf0f8ee32ffa38284a7d1b4d015a489b2f84e6a96f4ee8d4ce0287a', 'from': '0x73e909dd03cc8119a193dae6175a09dea040f719', 'to': '0x81d252fc425340da5e3293e0c4f35de9673062ff', 'value': 2296.295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7c7b7ea835299d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:44:20.000Z'}}, {'blockNum': '0xa3b1cf', 'uniqueId': '0x8c594c7ea7fed2ebc4c397683d714bcaa26e957aa75493507c7561eb79bf1ee7:log:193', 'hash': '0x8c594c7ea7fed2ebc4c397683d714bcaa26e957aa75493507c7561eb79bf1ee7', 'from': '0xcfb7e61debdcbb20e45661ee6de51f4852978625', 'to': '0x11d2ddb2fe0cb09cd0430032bfeee28100739fe5', 'value': 270.69793740414815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0eacb043d9952d71b3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:09:19.000Z'}}, {'blockNum': '0xa3b1d3', 'uniqueId': '0x2b7290204b8fb8862371b01652a200d76afc60550065640913b9ca2896adad0a:log:224', 'hash': '0x2b7290204b8fb8862371b01652a200d76afc60550065640913b9ca2896adad0a', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xaa656d7e71434ef36e49ed935619414e8a95ac39', 'value': 19.435649755889123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010db94c7a7eadc0be', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:10:07.000Z'}}, {'blockNum': '0xa3b231', 'uniqueId': '0x488495722ecd93dee4967843a6cfd20db936e100ba6d8c15f56f009e1edec71c:log:83', 'hash': '0x488495722ecd93dee4967843a6cfd20db936e100ba6d8c15f56f009e1edec71c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6426.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c6013a886ca8f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:35:51.000Z'}}, {'blockNum': '0xa3b243', 'uniqueId': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c:log:50', 'hash': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c', 'from': '0xc1e42f862d202b4a0ed552c1145735ee088f6ccf', 'to': '0xce10c4d313052a9b85790ea129bd8604854fb637', 'value': 44085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0955da4687a8d7b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:39:39.000Z'}}, {'blockNum': '0xa3b243', 'uniqueId': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c:log:54', 'hash': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c', 'from': '0xce10c4d313052a9b85790ea129bd8604854fb637', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 44085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0955da4687a8d7b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:39:39.000Z'}}, {'blockNum': '0xa3b2f0', 'uniqueId': '0xc17e1904cae8f891a3119b8b7f3c125458b73d230858f88dafe57603b3552617:log:177', 'hash': '0xc17e1904cae8f891a3119b8b7f3c125458b73d230858f88dafe57603b3552617', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6426.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c6013a886ca8f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T07:16:42.000Z'}}, {'blockNum': '0xa3b2fa', 'uniqueId': '0xad5c4dc6d7f5f4320cd244ecbce1db119aca70660a4364f2b8561c0aad0c62fd:log:113', 'hash': '0xad5c4dc6d7f5f4320cd244ecbce1db119aca70660a4364f2b8561c0aad0c62fd', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6192.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014fb8b93b3d1ae10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T07:18:06.000Z'}}, {'blockNum': '0xa3b3b3', 'uniqueId': '0xa5f258f1751d0612dfab68a710f781d623f04af299c81412dbab4d15fa01bde9:log:144', 'hash': '0xa5f258f1751d0612dfab68a710f781d623f04af299c81412dbab4d15fa01bde9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 13389.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d5d71d00f8af7b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:00:20.000Z'}}, {'blockNum': '0xa3b3d9', 'uniqueId': '0x2a91a7d17c34b9e536fb8b19b4367de15f51a12f8d9d19213dcc06884dddae41:log:3', 'hash': '0x2a91a7d17c34b9e536fb8b19b4367de15f51a12f8d9d19213dcc06884dddae41', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 5590.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012f0e3f05d827ff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:10:49.000Z'}}, {'blockNum': '0xa3b400', 'uniqueId': '0x1c28888abc4831abc11ed39167cb16c273762ad798786579394befd52ed53d61:log:214', 'hash': '0x1c28888abc4831abc11ed39167cb16c273762ad798786579394befd52ed53d61', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 5590.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012f0e3f05d827ff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:16:49.000Z'}}, {'blockNum': '0xa3b486', 'uniqueId': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc:log:28', 'hash': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:44:30.000Z'}}, {'blockNum': '0xa3b486', 'uniqueId': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc:log:31', 'hash': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc', 'from': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'to': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:44:30.000Z'}}, {'blockNum': '0xa3b491', 'uniqueId': '0xace984b18c69f19a47e7536f8dd60a2865d9d03a82ab2f12d221e43d30c4408b:log:110', 'hash': '0xace984b18c69f19a47e7536f8dd60a2865d9d03a82ab2f12d221e43d30c4408b', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13389.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d5d71d00f8af7b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:47:19.000Z'}}, {'blockNum': '0xa3b5d5', 'uniqueId': '0x41b2df04ff05310e101ab2055991a94d0687e3b29814ff607738f300bcd22332:log:212', 'hash': '0x41b2df04ff05310e101ab2055991a94d0687e3b29814ff607738f300bcd22332', 'from': '0x9f479998c09f80346412894e7cdd46dec1c36a6e', 'to': '0x1c62ff66af8aad410065e02338f5bfbbe23e1f10', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T09:57:46.000Z'}}, {'blockNum': '0xa3b62b', 'uniqueId': '0xaeff2294ce962bbf8882c9701401455fb9b0c5a2180a28fc6e61db966edf2378:log:89', 'hash': '0xaeff2294ce962bbf8882c9701401455fb9b0c5a2180a28fc6e61db966edf2378', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'value': 727.1390274133923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x276b14c4e282477210', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:46.000Z'}}, {'blockNum': '0xa3b62b', 'uniqueId': '0x8bbccd87b93a85c0ffda9262820bafd17892ee67ba8307bd12cbd6f10a2e3e00:log:93', 'hash': '0x8bbccd87b93a85c0ffda9262820bafd17892ee67ba8307bd12cbd6f10a2e3e00', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 680.0358673752519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24dd64ba64b28a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:46.000Z'}}, {'blockNum': '0xa3b62d', 'uniqueId': '0x9940ef50c997e0dcf2e99227cc955c43e8213dac1a82aec97b2d5b29afa6bd5b:log:184', 'hash': '0x9940ef50c997e0dcf2e99227cc955c43e8213dac1a82aec97b2d5b29afa6bd5b', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x4900d62465100ec25e7480ca31da2f3f634ba58d', 'value': 519.2758435283765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c266664729e350d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:53.000Z'}}, {'blockNum': '0xa3b68b', 'uniqueId': '0xe4229f056c8fdc2a368682dbe56d80d1c58cbdaf21218a55bdcdfb72853f7d45:log:15', 'hash': '0xe4229f056c8fdc2a368682dbe56d80d1c58cbdaf21218a55bdcdfb72853f7d45', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6009.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0145c50a0de320ab0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:41:20.000Z'}}, {'blockNum': '0xa3b695', 'uniqueId': '0x30b5a10719e850bb04d64760450f2135b59d424e4bb021b67f8066036a54a858:log:18', 'hash': '0x30b5a10719e850bb04d64760450f2135b59d424e4bb021b67f8066036a54a858', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 105317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x164d3efa829e96740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:43:37.000Z'}}, {'blockNum': '0xa3b69a', 'uniqueId': '0x300542852e618b17f644199a323465e5af178ec5c009def9c781d76d55a1b994:log:106', 'hash': '0x300542852e618b17f644199a323465e5af178ec5c009def9c781d76d55a1b994', 'from': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'to': '0xd29a5c212723b0a51ded27623f48ce56ca2770f5', 'value': 1047.1390274133923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38c3f92573bf477210', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:44:10.000Z'}}, {'blockNum': '0xa3b6a7', 'uniqueId': '0x627ade68b7f174feb2ddc5814bfbf6a4d0a1a88bedb70e8c96c0300bec12747f:log:72', 'hash': '0x627ade68b7f174feb2ddc5814bfbf6a4d0a1a88bedb70e8c96c0300bec12747f', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6009.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0145c50a0de320ab0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:46:41.000Z'}}, {'blockNum': '0xa3b6df', 'uniqueId': '0xa7ba1b3bea2231c4020ee8215574c4d29d9a4f9b7175dde022c3907a2cc9817d:log:1', 'hash': '0xa7ba1b3bea2231c4020ee8215574c4d29d9a4f9b7175dde022c3907a2cc9817d', 'from': '0x67d484739466bca5e3d0d5eddb957746a5750561', 'to': '0x3ce4285cb7aa1617af7535f7a32ad7b2970c9b27', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04a89f54ef0121c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:57:44.000Z'}}, {'blockNum': '0xa3b76e', 'uniqueId': '0x540c6da8b5954d0377b4797f2bac7274b2d2234021cf5931ad39c79d84be532f:log:80', 'hash': '0x540c6da8b5954d0377b4797f2bac7274b2d2234021cf5931ad39c79d84be532f', 'from': '0x3ce4285cb7aa1617af7535f7a32ad7b2970c9b27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04a89f54ef0121c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:30:00.000Z'}}, {'blockNum': '0xa3b777', 'uniqueId': '0x854422f17e2657ad7f039e36bf383dda6acf123c8560a7cd7af26c361606461b:log:90', 'hash': '0x854422f17e2657ad7f039e36bf383dda6acf123c8560a7cd7af26c361606461b', 'from': '0x00c4e9a1a6fcf839f1f5c45c6bfbd96cf0d873b2', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 699.7577643709647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25ef16fb3848d8064f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:32:26.000Z'}}, {'blockNum': '0xa3b7e5', 'uniqueId': '0xeacd83159851d2c46a7ddd2812cbe56fca0db923e5aac1e2d92ab350a64eea45:log:84', 'hash': '0xeacd83159851d2c46a7ddd2812cbe56fca0db923e5aac1e2d92ab350a64eea45', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 3017.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa39b065b00f1270000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:57:14.000Z'}}, {'blockNum': '0xa3b837', 'uniqueId': '0xe03a5e0eb26350ee6fcccd0c0b888691010cca7819141529762b1420227729cc:log:162', 'hash': '0xe03a5e0eb26350ee6fcccd0c0b888691010cca7819141529762b1420227729cc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 11298.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02647ca8b39071af0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:16:54.000Z'}}, {'blockNum': '0xa3b84e', 'uniqueId': '0xd9c346a5fc92602f6bcc3aa8f34fc0320df11760174d1fd5b464870ff3e9c3a7:log:3', 'hash': '0xd9c346a5fc92602f6bcc3aa8f34fc0320df11760174d1fd5b464870ff3e9c3a7', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 945.6509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x33438ae346dc714000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:22:47.000Z'}}, {'blockNum': '0xa3b871', 'uniqueId': '0xda8693738124b7e753e517ea74623f5cd0045c3b6703f5f70ccada7c98ee8f1b:log:260', 'hash': '0xda8693738124b7e753e517ea74623f5cd0045c3b6703f5f70ccada7c98ee8f1b', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11298.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02647ca8b39071af0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:32:36.000Z'}}, {'blockNum': '0xa3b8eb', 'uniqueId': '0x97cf923152e32d8352e9a9c45b145f95fb46347f61abaad2ee8a6792988a8b0d:log:263', 'hash': '0x97cf923152e32d8352e9a9c45b145f95fb46347f61abaad2ee8a6792988a8b0d', 'from': '0x00c4e9a1a6fcf839f1f5c45c6bfbd96cf0d873b2', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:01:55.000Z'}}, {'blockNum': '0xa3b8ec', 'uniqueId': '0x5cb357feb055d79ffcd6ae54ef370cbdb496e9c82615bd4ef01af7ed9e46f5ff:log:57', 'hash': '0x5cb357feb055d79ffcd6ae54ef370cbdb496e9c82615bd4ef01af7ed9e46f5ff', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 848.4132190741533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2dfe193fa97c921edc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:02:18.000Z'}}, {'blockNum': '0xa3b9ae', 'uniqueId': '0x18fa6f62fa0ed357a803a9cbd36ffa70774801af9612ebe01b32f7c8d0e5e335:log:119', 'hash': '0x18fa6f62fa0ed357a803a9cbd36ffa70774801af9612ebe01b32f7c8d0e5e335', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 7374.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018fc43839cea8df0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:41:47.000Z'}}, {'blockNum': '0xa3b9d0', 'uniqueId': '0x77b662ffa32e8990dcd3e4d013911286fd68fdbda703a24b9af2fa73b5d0aed5:log:79', 'hash': '0x77b662ffa32e8990dcd3e4d013911286fd68fdbda703a24b9af2fa73b5d0aed5', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7374.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018fc43839cea8df0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:47:30.000Z'}}, {'blockNum': '0xa3b9d0', 'uniqueId': '0x767e3ba402f007d447d1284197d93f17575591a85e028625e297d7c842551dc7:log:80', 'hash': '0x767e3ba402f007d447d1284197d93f17575591a85e028625e297d7c842551dc7', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 945.6509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x33438ae346dc714000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:47:30.000Z'}}, {'blockNum': '0xa3ba3f', 'uniqueId': '0x959e8e30d138ae04b6f002f09498fd4ecce7a07fd24611e0c60ea79571f656e4:log:62', 'hash': '0x959e8e30d138ae04b6f002f09498fd4ecce7a07fd24611e0c60ea79571f656e4', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1862.8129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x64fbb8def1bb424000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:12:00.000Z'}}, {'blockNum': '0xa3ba94', 'uniqueId': '0xf18e4d82e2f8e58696d1a3cb82802ebcfd7ff3539212c722d8ae9dbadccfe64e:log:41', 'hash': '0xf18e4d82e2f8e58696d1a3cb82802ebcfd7ff3539212c722d8ae9dbadccfe64e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 449.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186013963aae0a4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:30:37.000Z'}}, {'blockNum': '0xa3bac5', 'uniqueId': '0x8a5694fca74970f43fe9457dfefd8540870f6bc4c5ad53b0bfef832708fd2c5b:log:40', 'hash': '0x8a5694fca74970f43fe9457dfefd8540870f6bc4c5ad53b0bfef832708fd2c5b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5778e79e8c30c1407cbd0332c8877c5258a21067', 'value': 3512.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbe6ed2a48870238000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:42:29.000Z'}}, {'blockNum': '0xa3bad9', 'uniqueId': '0x4c8a5688b37a299d57a971e5f0af7a05ab8f9580d9fbcca7b46c573e0333d353:log:123', 'hash': '0x4c8a5688b37a299d57a971e5f0af7a05ab8f9580d9fbcca7b46c573e0333d353', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2312.4578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7d5bcc752c694c8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:47:01.000Z'}}, {'blockNum': '0xa3bb27', 'uniqueId': '0xdf2238e899623ddc089fb08d58bd25309bf639a1da8ab7761c413920549dc35a:log:10', 'hash': '0xdf2238e899623ddc089fb08d58bd25309bf639a1da8ab7761c413920549dc35a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 322.8989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11811f56c220614000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:04:29.000Z'}}, {'blockNum': '0xa3bb58', 'uniqueId': '0x701a626aac5acd8d1a1ff8ad09460114c592b3be5171c7324f87a75dcae281e8:log:74', 'hash': '0x701a626aac5acd8d1a1ff8ad09460114c592b3be5171c7324f87a75dcae281e8', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1214.1129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x41d13381e7775c4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:14:11.000Z'}}, {'blockNum': '0xa3bbb7', 'uniqueId': '0xa1efb0a9e863d04d4c3e5272be457f86e1937813406be399ab48d1cccaf0aa62:log:130', 'hash': '0xa1efb0a9e863d04d4c3e5272be457f86e1937813406be399ab48d1cccaf0aa62', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15548.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034ae141d61963d70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:34:48.000Z'}}, {'blockNum': '0xa3bbe0', 'uniqueId': '0xb066b46d5423ec5ecc990f95dd654900192279155a7b11f049f1a6d6720debec:log:222', 'hash': '0xb066b46d5423ec5ecc990f95dd654900192279155a7b11f049f1a6d6720debec', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15548.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034ae141d61963d70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:47:08.000Z'}}, {'blockNum': '0xa3bbf1', 'uniqueId': '0xdddcb19f76835fb4c7ad650d7bb62ee9dbde49533cf7b635229ce8d03e83738f:log:272', 'hash': '0xdddcb19f76835fb4c7ad650d7bb62ee9dbde49533cf7b635229ce8d03e83738f', 'from': '0x808df01373f8629a87d07d778aa8c1dd1c6e46a1', 'to': '0xa82e07c32d1538e11a3002ab5a2c869202983020', 'value': 141.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07aa2e2fe2387b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:49:36.000Z'}}, {'blockNum': '0xa3bc0e', 'uniqueId': '0xcc60b80c4f583064790982964b3aa467d1c86a92ac03041265125f0d4a5cc687:log:217', 'hash': '0xcc60b80c4f583064790982964b3aa467d1c86a92ac03041265125f0d4a5cc687', 'from': '0xdedd6d6eb6056470d687c832c477b8770ac20ed5', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1273.9444928689836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x450f88069dfcec49de', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:58:53.000Z'}}, {'blockNum': '0xa3bc0e', 'uniqueId': '0x711fee7aba97238077b45efbffdde7c6079b1d909676a45e8c0be1a0033350f6:log:225', 'hash': '0x711fee7aba97238077b45efbffdde7c6079b1d909676a45e8c0be1a0033350f6', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 778.871482903924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2a39035f102a1ea7a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:58:53.000Z'}}, {'blockNum': '0xa3bc0f', 'uniqueId': '0xb6664b6f45f3f2c96bc89a9445ec5177e82fe1fb053b24e7ba7fb348a5b5f730:log:4', 'hash': '0xb6664b6f45f3f2c96bc89a9445ec5177e82fe1fb053b24e7ba7fb348a5b5f730', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'value': 460.1355907640875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18f1aa01e5a7f2cca0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:59:14.000Z'}}, {'blockNum': '0xa3bcef', 'uniqueId': '0x27ee417f5648ea2270dfcc3977cf34825d8d7a825c6a6a167df71d43cef397f9:log:149', 'hash': '0x27ee417f5648ea2270dfcc3977cf34825d8d7a825c6a6a167df71d43cef397f9', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1537.0118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x535252d8a997bd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:46:44.000Z'}}, {'blockNum': '0xa3bcfa', 'uniqueId': '0x49c0b0bc16a5c3e625207741099c6cba330d9339c17a6b948e7008cbd2aeeeaf:log:48', 'hash': '0x49c0b0bc16a5c3e625207741099c6cba330d9339c17a6b948e7008cbd2aeeeaf', 'from': '0x4a4f1c998b89c0dc000983ffd997420dad282ca1', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:48:47.000Z'}}, {'blockNum': '0xa3bd15', 'uniqueId': '0x186ddd9025f8511685a3abeae95b15785359982a1b93b5147b8cfd6fc5758544:log:128', 'hash': '0x186ddd9025f8511685a3abeae95b15785359982a1b93b5147b8cfd6fc5758544', 'from': '0x1d5b6d9658d958037672f3c0914b784426ac40c1', 'to': '0x3021026e4ff227571a5a563ad19ea657c7027e59', 'value': 27.829513029183406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0182364aa72894ff19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:54:15.000Z'}}, {'blockNum': '0xa3bd44', 'uniqueId': '0x69ce99ec44d041350e752266543287e1f063fe785ddd60307959fff9f6bea9e9:log:166', 'hash': '0x69ce99ec44d041350e752266543287e1f063fe785ddd60307959fff9f6bea9e9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 12279.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0299aac4d200e3e30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:03:08.000Z'}}, {'blockNum': '0xa3bd80', 'uniqueId': '0x86226588d38a8337a2f29a64a7bbe9a7d912ba134084a620ed1e0531a95fed6d:log:25', 'hash': '0x86226588d38a8337a2f29a64a7bbe9a7d912ba134084a620ed1e0531a95fed6d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 1997.743355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c4c4224dfe416b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:14:17.000Z'}}, {'blockNum': '0xa3bd95', 'uniqueId': '0xe3ac98e430783fb3c31ddffed201567b9259608d1534b676c3e53c407d6948e0:log:152', 'hash': '0xe3ac98e430783fb3c31ddffed201567b9259608d1534b676c3e53c407d6948e0', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x5f5ca0899ea0e4ffd3277c922f5d88bf548e7e33', 'value': 1999.0919649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c5ef95e6ef229e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:17:30.000Z'}}, {'blockNum': '0xa3bd9d', 'uniqueId': '0xfff5e03ae970714f85d9e2662d827bb7d8b4c5309e5c507918328dc733a54c75:log:149', 'hash': '0xfff5e03ae970714f85d9e2662d827bb7d8b4c5309e5c507918328dc733a54c75', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12279.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0299aac4d200e3e30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:19:45.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x80178ffce3ff91ac15732a2eafee1728aa43696b38161ee71f598869a1fb7339:log:4', 'hash': '0x80178ffce3ff91ac15732a2eafee1728aa43696b38161ee71f598869a1fb7339', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'value': 4341.597023541895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeb5bc32224fbf1ee8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0:log:15', 'hash': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xf443253607dbde5bda77c358c9b9f244d819e25c', 'value': 1590.4497191036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5637ec78f6029193e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0:log:16', 'hash': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0', 'from': '0xf443253607dbde5bda77c358c9b9f244d819e25c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1590.4497191036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5637ec78f6029193e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b:log:28', 'hash': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b', 'from': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 769.9791610885267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x29bd9b7f7c4ee91350', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b:log:31', 'hash': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 769.9791610885267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x29bd9b7f7c4ee91350', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be51', 'uniqueId': '0xec006ec654178bc863ea67b59e1b2845577fa141b229b0868dc9ba558f11cbb1:log:5', 'hash': '0xec006ec654178bc863ea67b59e1b2845577fa141b229b0868dc9ba558f11cbb1', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1174.457902785993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3faae0a80a095e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:25.000Z'}}, {'blockNum': '0xa3be51', 'uniqueId': '0xed08be20aee8a2a361d4ba49ea809895e99fa5ee917995fb75b3cf0a6525ffe4:log:95', 'hash': '0xed08be20aee8a2a361d4ba49ea809895e99fa5ee917995fb75b3cf0a6525ffe4', 'from': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 4341.597023541895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeb5bc32224fbf1ee8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:25.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0x19577533e5d6d3b41d1a47218caa1c45d7a8a7a58d8a87f50a322232f36ea386:log:2', 'hash': '0x19577533e5d6d3b41d1a47218caa1c45d7a8a7a58d8a87f50a322232f36ea386', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'value': 3192.7976726639913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad14f7f71eef1deb19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe:log:12', 'hash': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 1167.5473956730366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3f4af99a6ef3c93dc3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe:log:13', 'hash': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1167.5473956730366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3f4af99a6ef3c93dc3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be53', 'uniqueId': '0x132b1d35ebeb25c030e06e79c777cd0da320074b576dc8c4770701b664652b18:log:155', 'hash': '0x132b1d35ebeb25c030e06e79c777cd0da320074b576dc8c4770701b664652b18', 'from': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 3192.7976726639913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad14f7f71eef1deb19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:24.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0x0b256fba0b2e453c780f5cc39ba0fdc14754c280b09d1f466fdc627578e9d815:log:61', 'hash': '0x0b256fba0b2e453c780f5cc39ba0fdc14754c280b09d1f466fdc627578e9d815', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1236.8283391281877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x430c70f57090000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0x3958bcc9554fe99428b042b8af5243fd884ecabf5c6a53dc4430c1eb4d944b72:log:111', 'hash': '0x3958bcc9554fe99428b042b8af5243fd884ecabf5c6a53dc4430c1eb4d944b72', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 342.10713515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x128bb0b2db8e4d4c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0xa94813c4e2f56aceacae972a79d30f1cc8e451a0dd574ad4e4c6ba5f46eebbde:log:112', 'hash': '0xa94813c4e2f56aceacae972a79d30f1cc8e451a0dd574ad4e4c6ba5f46eebbde', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 302.5086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10662670f0d4bb8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be55', 'uniqueId': '0x6de6467183a651c80a57f7ebe15a0d6b62f045b51542a2f813e63925f91d2121:log:112', 'hash': '0x6de6467183a651c80a57f7ebe15a0d6b62f045b51542a2f813e63925f91d2121', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6293.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01552a54bd30d39b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:03:03.000Z'}}, {'blockNum': '0xa3be5d', 'uniqueId': '0x6d2747c39d8b6be1f462cd504c93c65cdf8cb3b03c93cd2b1f551f98494a095a:log:28', 'hash': '0x6d2747c39d8b6be1f462cd504c93c65cdf8cb3b03c93cd2b1f551f98494a095a', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:04:14.000Z'}}, {'blockNum': '0xa3be5d', 'uniqueId': '0xcc5aaa2c1bbd96406c5054eec33f7623d44430756ec641995a56a617ef780233:log:161', 'hash': '0xcc5aaa2c1bbd96406c5054eec33f7623d44430756ec641995a56a617ef780233', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6c14f95f0ca1afa9c0d525c4506f2ac5faadaf1f', 'value': 1056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x393ef1a5127c800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:04:14.000Z'}}, {'blockNum': '0xa3be6d', 'uniqueId': '0xa0d800a0c76998def6c8f0d6fc5319fd3ed51eca8c5b061abe2f81b926112705:log:171', 'hash': '0xa0d800a0c76998def6c8f0d6fc5319fd3ed51eca8c5b061abe2f81b926112705', 'from': '0x20aaad6c45ea50f5c1a690fb8a32a2e244abf371', 'to': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'value': 510.6943105412933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1baf4ea9a9b2d07606', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:09:09.000Z'}}, {'blockNum': '0xa3be8d', 'uniqueId': '0x17af0a080840168f8abbd0358af4361a8ff987f89111ae70751748abed4ebb74:log:29', 'hash': '0x17af0a080840168f8abbd0358af4361a8ff987f89111ae70751748abed4ebb74', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 756.518590743924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2902cdf21306b61198', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:15:56.000Z'}}, {'blockNum': '0xa3be90', 'uniqueId': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac:log:223', 'hash': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 693.9065243018865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x259de33360d3e81b32', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:16:33.000Z'}}, {'blockNum': '0xa3be90', 'uniqueId': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac:log:228', 'hash': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 693.9062911053323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x259de25f4986220000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:16:33.000Z'}}, {'blockNum': '0xa3bea8', 'uniqueId': '0x17859523f7c491e61af445091e959eac7f620dfbfb040c9cff26c4dd35bab9d4:log:177', 'hash': '0x17859523f7c491e61af445091e959eac7f620dfbfb040c9cff26c4dd35bab9d4', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 15804.30218338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0358c0c08d009f5d4800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:30.000Z'}}, {'blockNum': '0xa3bea8', 'uniqueId': '0x0cdfda221e1120c2b720ab6524d19a3079aab5af014228b55347d9fe7e808523:log:178', 'hash': '0x0cdfda221e1120c2b720ab6524d19a3079aab5af014228b55347d9fe7e808523', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 9766.95868271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021177c7b65c1eb3dc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:30.000Z'}}, {'blockNum': '0xa3bea9', 'uniqueId': '0x128707f98d508f527cebf4d40177717cb5115936d4fa7c260221e0787207e4d2:log:17', 'hash': '0x128707f98d508f527cebf4d40177717cb5115936d4fa7c260221e0787207e4d2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 1930.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68a44b36d510860000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:40.000Z'}}, {'blockNum': '0xa3beba', 'uniqueId': '0xb8f82894ab4f05b55019507c4c93363cb239e4b90f2059319260bfae53353102:log:101', 'hash': '0xb8f82894ab4f05b55019507c4c93363cb239e4b90f2059319260bfae53353102', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xfb2de6b9eba1c83cd249bad8fcc70a9d97592e04', 'value': 1643.2106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x591420c698dc7e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:25:07.000Z'}}, {'blockNum': '0xa3bed9', 'uniqueId': '0xfb55d191bd7b0db389b92cd9031f39c7cd0bc47087f2f26062ef637b9020634d:log:48', 'hash': '0xfb55d191bd7b0db389b92cd9031f39c7cd0bc47087f2f26062ef637b9020634d', 'from': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26341.1005180309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0593f434200469d24b85', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:30:18.000Z'}}, {'blockNum': '0xa3bf1a', 'uniqueId': '0x3898aebaaf5409778660edf4b6533d62dfa517a429aaf59e51702e486123ca66:log:145', 'hash': '0x3898aebaaf5409778660edf4b6533d62dfa517a429aaf59e51702e486123ca66', 'from': '0x63c410a066d5d12217b713ccac5f600a06ba45e6', 'to': '0xad13e2628410e99b87fc838a83e520a369cf8ed0', 'value': 4215.410378417814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe484921cf838cfdd78', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:45:09.000Z'}}, {'blockNum': '0xa3bf45', 'uniqueId': '0xb3de2d3d0b518a8d677b20bd276462f12997dc62cc81931d6dee9efcf0f5dab6:log:17', 'hash': '0xb3de2d3d0b518a8d677b20bd276462f12997dc62cc81931d6dee9efcf0f5dab6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:53:05.000Z'}}, {'blockNum': '0xa3bf46', 'uniqueId': '0x3cf29f6c4b9692ae76430bf186354b77bdd1ecf9166e1593762cf40e742010ad:log:90', 'hash': '0x3cf29f6c4b9692ae76430bf186354b77bdd1ecf9166e1593762cf40e742010ad', 'from': '0x7ee13b84900a0f0706fa639da8a14daf79ae12d1', 'to': '0x0257b51a38a9a58fab2b3878ca590eeb4529ad7b', 'value': 297.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1020a451c706b60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:53:31.000Z'}}, {'blockNum': '0xa3bf5b', 'uniqueId': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4:log:180', 'hash': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 396.14235619932043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1579945e1c72c1f3c7', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:58:08.000Z'}}, {'blockNum': '0xa3bf5b', 'uniqueId': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4:log:186', 'hash': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 396.14227755477896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x157994169596cc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:58:08.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:103', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:104', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:105', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x6cb2291a3c3794fca0f5b6e34a8e6ea7933ca667', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:107', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x6cb2291a3c3794fca0f5b6e34a8e6ea7933ca667', 'to': '0x480ea104ff7063ed0af41c98d8ef2457afe2a41c', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:108', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x480ea104ff7063ed0af41c98d8ef2457afe2a41c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:116', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 833.3366928430046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d2cdeaaef0618596b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:120', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 578.9604571569954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1f62b0bc5200798695', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf69', 'uniqueId': '0xb8a5dfd1bf04c35fcfa39a5a366d968fb4d45d700d9ba554c6d7464611eb7f13:log:295', 'hash': '0xb8a5dfd1bf04c35fcfa39a5a366d968fb4d45d700d9ba554c6d7464611eb7f13', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:46.000Z'}}, {'blockNum': '0xa3bf8c', 'uniqueId': '0x6cfe3d131ca655572ef089d60a4b8db0172dfd5b08767cb025dff1bf1208e824:log:170', 'hash': '0x6cfe3d131ca655572ef089d60a4b8db0172dfd5b08767cb025dff1bf1208e824', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x38d8a38ef107861320a4e04d5c892c3a559e4bbc', 'value': 24.823626215241642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01587f3c85848d749a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:08:29.000Z'}}, {'blockNum': '0xa3bfb3', 'uniqueId': '0x245214c0dbd06dcaac70f79436c0ed147999f7c84af123d345bcb6808ca0eff2:log:210', 'hash': '0x245214c0dbd06dcaac70f79436c0ed147999f7c84af123d345bcb6808ca0eff2', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6293.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01552a54bd30d39b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:16:34.000Z'}}, {'blockNum': '0xa3c024', 'uniqueId': '0x2cb6f14c9474a6cebe3aa167c75176f1c98bf48db6e34e2d93912ba3e15411ea:log:81', 'hash': '0x2cb6f14c9474a6cebe3aa167c75176f1c98bf48db6e34e2d93912ba3e15411ea', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x31e3d3084dba7065e1a873c7f01768801d3e19b3', 'value': 411.0120713126595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1647f035393c96ca43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:39:53.000Z'}}, {'blockNum': '0xa3c029', 'uniqueId': '0xa11ac4fc1cb0fdb842150048295e3a5647de6a9c99982d74d055e34d4446344d:log:45', 'hash': '0xa11ac4fc1cb0fdb842150048295e3a5647de6a9c99982d74d055e34d4446344d', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xccc9bde7524b71e93af6572559452f5dc69fe85a', 'value': 146.593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07f262f4d126d631e0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:41:32.000Z'}}, {'blockNum': '0xa3c2fd', 'uniqueId': '0x1afec71a73aa9b2f802855cbe902e640e06c6609ad8a6afd52065af34f73b399:log:234', 'hash': '0x1afec71a73aa9b2f802855cbe902e640e06c6609ad8a6afd52065af34f73b399', 'from': '0x02ec30889bd132f7cff78833cc6bad389646bb99', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T22:23:28.000Z'}}, {'blockNum': '0xa3c3ad', 'uniqueId': '0xed84e2cd8a1f474587426c67f96fca527a0eebdcf8cbccb30a52796deef28c21:log:69', 'hash': '0xed84e2cd8a1f474587426c67f96fca527a0eebdcf8cbccb30a52796deef28c21', 'from': '0xdac6008346a4718b59b1abdf6d7511395bdd1f56', 'to': '0xd9a0691574dc09d6cec1b1134524385d2ca63b4a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T23:04:49.000Z'}}, {'blockNum': '0xa3c3b6', 'uniqueId': '0x5b36e9fe4a981acee49a1fcf245736becce167cfbb8739b4c716e2cb190a5647:log:240', 'hash': '0x5b36e9fe4a981acee49a1fcf245736becce167cfbb8739b4c716e2cb190a5647', 'from': '0xd9a0691574dc09d6cec1b1134524385d2ca63b4a', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T23:06:32.000Z'}}, {'blockNum': '0xa3c4f7', 'uniqueId': '0x1595998200632dd841fe6ac5aea6800a21c02730e02bc700092cabd43dd7cf93:log:6', 'hash': '0x1595998200632dd841fe6ac5aea6800a21c02730e02bc700092cabd43dd7cf93', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x22a70b1619668d5fe45192b70aa2a89291166058', 'value': 1533.0077574300003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x531ac1a128cd5c2940', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:20:08.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:204', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'value': 213.34338032704113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b90bbf210d659094d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:207', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0x4b30796bf2cc2092ae7341e2999ad73d7d456013', 'value': 4.266867606540822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3b36f57b377ca924', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:208', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0xe3f5ea1e1212e02039ec2df87e567ba1c79f3a03', 'value': 1.0667169016352056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ecdbd5ecddf2a4a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:209', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0xf4f5a319fca9ca06c918b28b43f92e347fd8c091', 'value': 208.00979581886511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b46b73f36d0fd35df', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c5b1', 'uniqueId': '0xc068762faaebe54f6b80952585382bc466db8319f8c789a50114c816e9c52f50:log:200', 'hash': '0xc068762faaebe54f6b80952585382bc466db8319f8c789a50114c816e9c52f50', 'from': '0x7532001d3e8c79f64ca8725eb959dfeb88b57c90', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 548.0877969503358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1db63f036ec7304803', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T01:06:58.000Z'}}, {'blockNum': '0xa3c608', 'uniqueId': '0x94650cc837745dd8b63ec24b3ab659e70170a98848dbc0c7c45f5108ea293057:log:39', 'hash': '0x94650cc837745dd8b63ec24b3ab659e70170a98848dbc0c7c45f5108ea293057', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x79338fa41fce2ea394c5f273f4bcaf4936010b20', 'value': 737.77922115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27febe54b6ce1cac00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T01:25:52.000Z'}}, {'blockNum': '0xa3c6fd', 'uniqueId': '0x558a5e3dcff00ba08c0a7ccb4bf5e94b446c1a79027046cbfde6d18f8564a732:log:97', 'hash': '0x558a5e3dcff00ba08c0a7ccb4bf5e94b446c1a79027046cbfde6d18f8564a732', 'from': '0x5e1102507c1f9e1e2e7218f791a5ded8ab93ee90', 'to': '0x7909021779e05396aabf314fbb3639a44142147c', 'value': 145.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07e71a999fdc720000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T02:16:44.000Z'}}]}}
Number of returned transfers:  118
Answer is complete
 
symbol             QSP
group              CPS
date        2020-09-10
hour             18:00
exchange       binance
Name: 423, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2020-09-10 18:00:00 2020-09-10 06:00:00 2020-09-11 06:00:00
Unix timestamps:  1599710400.0 1599796800.0
Hex Block Numbers:  0xa54764 0xa56107
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa548ca', 'uniqueId': '0x7bf7adbf52072a133c6cc2f08fdb16bb48e4c110fa0b48839fbe77bc310e8677:log:79', 'hash': '0x7bf7adbf52072a133c6cc2f08fdb16bb48e4c110fa0b48839fbe77bc310e8677', 'from': '0x5e667d65d45cd511e7cdfbbc592196631c86c773', 'to': '0xea33e88bc886d9709a895f512781cdf0ff12efc5', 'value': 3074.98999864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa6b20f07c49019e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T05:19:26.000Z'}}, {'blockNum': '0xa54958', 'uniqueId': '0xc35a81542f0ec1974305f50d0f78bcd14e4f037bf627c622929479eb0a5dac2d:log:248', 'hash': '0xc35a81542f0ec1974305f50d0f78bcd14e4f037bf627c622929479eb0a5dac2d', 'from': '0x10bd28a045defee8e75f03a9f5d014dd6b0313fa', 'to': '0xdf10158541bb7b0ebbec23c424f5024e497dbc6a', 'value': 497.0330700640846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1af1b82fd4479a8465', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T05:49:04.000Z'}}, {'blockNum': '0xa54a16', 'uniqueId': '0x672dabb3e35a3f0b669421d3fabe9e92bb0c74bd13ae914b22b853756c07f3d3:log:168', 'hash': '0x672dabb3e35a3f0b669421d3fabe9e92bb0c74bd13ae914b22b853756c07f3d3', 'from': '0xf5490f4e055aacad9f0d51a16838788078686082', 'to': '0xd3a08888778ad7d5e61aaefaa0b91f84ecefafc1', 'value': 2600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8cf23f909c0fa00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T06:33:05.000Z'}}, {'blockNum': '0xa54a88', 'uniqueId': '0xbf66dc4e56424830ce129087f4a1c8fbc5ad1eaebd99ab32e0d299e9579fa4c3:log:4', 'hash': '0xbf66dc4e56424830ce129087f4a1c8fbc5ad1eaebd99ab32e0d299e9579fa4c3', 'from': '0xbc9dd9a2f7f48f4e895f5527a1e3880400faa2e3', 'to': '0xa90e24f3d4acc3fe642ae2e8fde06be03923dc4a', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T07:03:46.000Z'}}, {'blockNum': '0xa54bff', 'uniqueId': '0xdf4589ab31376a50c6a6f9c54d37914cdefa133778246d76488d3bbb8ad333d5:log:339', 'hash': '0xdf4589ab31376a50c6a6f9c54d37914cdefa133778246d76488d3bbb8ad333d5', 'from': '0xa163e2cef5095a49d9174b6c36a2ac9790def114', 'to': '0xa7792a7fe379c0603ddc7e2ac3cc3a479995fd29', 'value': 1692.973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5bc6b855be9f648000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T08:26:09.000Z'}}, {'blockNum': '0xa54cad', 'uniqueId': '0xcf7e3c6461f22b96218f2916c397c13a104469735278d4a5a1d1d5c2358db40d:log:52', 'hash': '0xcf7e3c6461f22b96218f2916c397c13a104469735278d4a5a1d1d5c2358db40d', 'from': '0x46e56e4c807257caa443895aa43113beb96f7c80', 'to': '0xfbd2b1430831265168761393f5ef652a3b3a467c', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T09:08:49.000Z'}}, {'blockNum': '0xa54caf', 'uniqueId': '0xb2b99afbdf33b6bb7d1d5714b66410aea6233cabaf8041b4e75401cbff39b660:log:69', 'hash': '0xb2b99afbdf33b6bb7d1d5714b66410aea6233cabaf8041b4e75401cbff39b660', 'from': '0xfbd2b1430831265168761393f5ef652a3b3a467c', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T09:09:46.000Z'}}, {'blockNum': '0xa54fcb', 'uniqueId': '0x63fb4129255985df8cd96aa96cb5c1a8f2fdd828b9df7b4f58e8d6462c610fdd:log:17', 'hash': '0x63fb4129255985df8cd96aa96cb5c1a8f2fdd828b9df7b4f58e8d6462c610fdd', 'from': '0xb809a8bb26205d0175159aa279100d73ccf88019', 'to': '0xf88db2e3c660a1c81ad2c931fab6018a2ef85d6e', 'value': 655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2381f375a948dc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T12:02:58.000Z'}}, {'blockNum': '0xa550d9', 'uniqueId': '0x68d8d17dc539936f58d947630f99789395422c1103de517e166b38924462992d:log:70', 'hash': '0x68d8d17dc539936f58d947630f99789395422c1103de517e166b38924462992d', 'from': '0x4aef5b44b4c2375c6fd9ef7fe93659be99855d15', 'to': '0x85bf95ed670ec5e28e05c4ce32a8e40e953d32eb', 'value': 291.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0fce11ac4d49230000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T12:58:31.000Z'}}, {'blockNum': '0xa551e2', 'uniqueId': '0x11f090bec9086f83b2d9b95af80e074f81dceffd44cb8ae53d86f8fa04aded6d:log:179', 'hash': '0x11f090bec9086f83b2d9b95af80e074f81dceffd44cb8ae53d86f8fa04aded6d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ba514533859993267bd02246b7151af5c5d4627', 'value': 67996.50864537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e66191e6005686f4400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T13:59:05.000Z'}}, {'blockNum': '0xa551fa', 'uniqueId': '0x85a1dbb2d3c72d2d5f9a93145871ff5aff317eef1b3cf83cde8b105dda412b14:log:222', 'hash': '0x85a1dbb2d3c72d2d5f9a93145871ff5aff317eef1b3cf83cde8b105dda412b14', 'from': '0x916ed5586bb328e0ec1a428af060dc3d10919d84', 'to': '0x965e69ea946bb17754896aece59776567ba083f5', 'value': 1400.00004522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4be4e74f9c04e96800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:03:14.000Z'}}, {'blockNum': '0xa55256', 'uniqueId': '0x35d8d404f42b97d30f16bfaf477b1b6b8f5cebfb0efaad985dc79c6bb68fd979:log:326', 'hash': '0x35d8d404f42b97d30f16bfaf477b1b6b8f5cebfb0efaad985dc79c6bb68fd979', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 19516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0421f6e827cceb700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:25:23.000Z'}}, {'blockNum': '0xa552a2', 'uniqueId': '0x017d223844b7b5394161faede3c9be2f3f01aff14d161d5cef1256eb7c3842e5:log:300', 'hash': '0x017d223844b7b5394161faede3c9be2f3f01aff14d161d5cef1256eb7c3842e5', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 19516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0421f6e827cceb700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:41:00.000Z'}}, {'blockNum': '0xa552e1', 'uniqueId': '0xa7fcf2c997aa9e1d8b72d282c2201a1bd4a045be21ba65f8145ad7c86b09d20c:log:117', 'hash': '0xa7fcf2c997aa9e1d8b72d282c2201a1bd4a045be21ba65f8145ad7c86b09d20c', 'from': '0x43238608111fe51641ad1aa6a29d5f19a74037e7', 'to': '0x52ca04c6d2b22028b10e1c9e3c50e66fbc4ff3ce', 'value': 1132.140284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3d5f9a45f631dbc000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:56:41.000Z'}}, {'blockNum': '0xa553a4', 'uniqueId': '0x9f0eced6b699d4967a61dcc77a23053c6e212608b570cf169d58d01d673f11ed:log:95', 'hash': '0x9f0eced6b699d4967a61dcc77a23053c6e212608b570cf169d58d01d673f11ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe2a90a2cdb4895f2b636c9554999c6f048104a76', 'value': 761.98016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x294e99566047500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T15:34:01.000Z'}}, {'blockNum': '0xa5543c', 'uniqueId': '0xe70ac19bbd08d0cff397b777a3a1f4aad99c531af052953b0de5b9a8ae9760a0:log:155', 'hash': '0xe70ac19bbd08d0cff397b777a3a1f4aad99c531af052953b0de5b9a8ae9760a0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xc767a51199c410028ca360313fb419b9f1755381', 'value': 63042.997167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d5991566345b085f000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:09:16.000Z'}}, {'blockNum': '0xa55476', 'uniqueId': '0xafe438ef7a0dead99046639e145fd8155418fba7ec1a157f837e8c3ff6a80e88:log:113', 'hash': '0xafe438ef7a0dead99046639e145fd8155418fba7ec1a157f837e8c3ff6a80e88', 'from': '0xc767a51199c410028ca360313fb419b9f1755381', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 63042.997167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d5991566345b085f000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:22:55.000Z'}}, {'blockNum': '0xa554b9', 'uniqueId': '0x2ee017b7f3af2cff24b3f5e76fcef52ec0309d12bd70c8335738d27250e7d01b:log:25', 'hash': '0x2ee017b7f3af2cff24b3f5e76fcef52ec0309d12bd70c8335738d27250e7d01b', 'from': '0x80b5b304c0eac3041b4507bb1c879d8e5745dcac', 'to': '0xab3f245f647844882f3734c5f18a56deb3ea5bf2', 'value': 8477.05308691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01cb8abe75314719ec00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:37:44.000Z'}}, {'blockNum': '0xa554bf', 'uniqueId': '0x886fb25b8c70e1c57630413dcf1cc5a8e5cd39e4a05ada7bf266aef76049d610:log:13', 'hash': '0x886fb25b8c70e1c57630413dcf1cc5a8e5cd39e4a05ada7bf266aef76049d610', 'from': '0xab3f245f647844882f3734c5f18a56deb3ea5bf2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 8477.05308691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01cb8abe75314719ec00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:39:03.000Z'}}, {'blockNum': '0xa554ec', 'uniqueId': '0x36295705d97cd3220ce798b8a6377143533c39f69bce69bc0c526657f1eb1e2e:log:226', 'hash': '0x36295705d97cd3220ce798b8a6377143533c39f69bce69bc0c526657f1eb1e2e', 'from': '0xbdde2c395cf206f061dfa9e0574dc2c535bdc866', 'to': '0xcf9d83b04f61e15f3d173a5bd857b25c49ed991b', 'value': 5129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01160b2c7564b2840000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:47:45.000Z'}}, {'blockNum': '0xa5554f', 'uniqueId': '0x581f7973256fc2a603932cccae4cd6d09f11bda8a43e30d10164b00c901347a4:log:86', 'hash': '0x581f7973256fc2a603932cccae4cd6d09f11bda8a43e30d10164b00c901347a4', 'from': '0x901b68e2099f83dcd6e443c86146969ef837ed37', 'to': '0xff152f5a5031f04879b1677dd0adac7100fd397c', 'value': 6977.432264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017a3f530c1665948000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T17:04:52.000Z'}}, {'blockNum': '0xa55567', 'uniqueId': '0xeb8a08261d1009f39cacded2d08247afd348adff068ff7cbf6b8f2a0991c94bc:log:11', 'hash': '0xeb8a08261d1009f39cacded2d08247afd348adff068ff7cbf6b8f2a0991c94bc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x615dc707447425d413ae52d88361fca08fcc4d8f', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d900000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T17:10:32.000Z'}}, {'blockNum': '0xa55729', 'uniqueId': '0xb63230b1c754e2d798fc278e33ba3ed207a2efe8004ab081f1aa1dcb1a9c07cb:log:321', 'hash': '0xb63230b1c754e2d798fc278e33ba3ed207a2efe8004ab081f1aa1dcb1a9c07cb', 'from': '0x42f8ceaa89716aa27641b3c7ac6ebbed438dc4d2', 'to': '0xf85ecef24e975f4ccb2d565e1c2c7217c09a9dce', 'value': 108624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x170084d2a561ef400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T18:48:14.000Z'}}, {'blockNum': '0xa557a5', 'uniqueId': '0xa3c9321bd75857077ab663065fea52bfd8d5eaae81b16ad0e071c361206e44db:log:178', 'hash': '0xa3c9321bd75857077ab663065fea52bfd8d5eaae81b16ad0e071c361206e44db', 'from': '0x51519e8e257bb13da00d049f5e83fb5c5f1e90a5', 'to': '0x1e2fe4656a727e378ab943d2f78d0f7de4a9a5e2', 'value': 19885.021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0435f81a1c24b6dc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T19:12:04.000Z'}}, {'blockNum': '0xa558cb', 'uniqueId': '0x53b59dbb3c20fef18ea44ce1c11d53193e4eeb2e82f933bffb18c6f9f0b0b3a5:log:16', 'hash': '0x53b59dbb3c20fef18ea44ce1c11d53193e4eeb2e82f933bffb18c6f9f0b0b3a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 4849.60825431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0106e5d594f81dca7c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:15:12.000Z'}}, {'blockNum': '0xa558d3', 'uniqueId': '0xa6fcc062cddec883747dabe33348d828036d29a9fae4c20adab290900f4d4b5d:log:235', 'hash': '0xa6fcc062cddec883747dabe33348d828036d29a9fae4c20adab290900f4d4b5d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1b56397606cf6c002f7448c0cdbcf0ff6a66caaa', 'value': 4801.10825431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010444c2f7eee7587c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:17:27.000Z'}}, {'blockNum': '0xa5592d', 'uniqueId': '0xd48a44f27db2dae4f47e5725e02299bfc48086888f365c7e182f1f772003d159:log:90', 'hash': '0xd48a44f27db2dae4f47e5725e02299bfc48086888f365c7e182f1f772003d159', 'from': '0x8a5c8e3c71dc4c17a8baecec1a964ee117626e7c', 'to': '0xe6d40c83026565bfe4cf8556ffd91adffc29ebf4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:36:36.000Z'}}, {'blockNum': '0xa55949', 'uniqueId': '0xcaf09be6608f5dcacf5a0bda799b1c5f68e703793f02f4625db189485dccde5f:log:96', 'hash': '0xcaf09be6608f5dcacf5a0bda799b1c5f68e703793f02f4625db189485dccde5f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5398e5e01484b1eb6c9c1af59eb2c58b640c4199', 'value': 4231.667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xe5662d3c2ad6eb8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:44:59.000Z'}}, {'blockNum': '0xa55be1', 'uniqueId': '0x36f41a7e2be66246375879edd8466674cbf2cb967eddb1a493c8fafe3ada4aab:log:26', 'hash': '0x36f41a7e2be66246375879edd8466674cbf2cb967eddb1a493c8fafe3ada4aab', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac254864d699b72bedb911ab3629b25beb31b693', 'value': 5494.403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0129da28b1e7c0938000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T23:18:19.000Z'}}, {'blockNum': '0xa55d1d', 'uniqueId': '0xbb739e9ed3f9e3f09f30403767e008c437c6c307133ad8b2d1449fbe7b0327ec:log:260', 'hash': '0xbb739e9ed3f9e3f09f30403767e008c437c6c307133ad8b2d1449fbe7b0327ec', 'from': '0x7fe3239b89a39212ca944118c2f2e3d8b513d369', 'to': '0x5ead215dac720e5127bd314374b68a4b6f38d0d9', 'value': 1345.44958279334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x48efdd230d9a8c881e', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T00:21:42.000Z'}}, {'blockNum': '0xa55e40', 'uniqueId': '0x4f541ecd74b6fc7087a348250ccadd115d3753be4ca9905c316a49af1f4ee52b:log:46', 'hash': '0x4f541ecd74b6fc7087a348250ccadd115d3753be4ca9905c316a49af1f4ee52b', 'from': '0x97ab7b00c9b1ddf0d8e11dafe81acb5bc06f909a', 'to': '0x769c8be7616097e7314899700ac85d60976f427c', 'value': 3589.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc293ceb579104d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T01:27:41.000Z'}}, {'blockNum': '0xa55efa', 'uniqueId': '0xa2e7257c3b3b7d7c9953446014ea47d721c6b11f4f3b15f6185d4a3b774f3e31:log:183', 'hash': '0xa2e7257c3b3b7d7c9953446014ea47d721c6b11f4f3b15f6185d4a3b774f3e31', 'from': '0x916ed5586bb328e0ec1a428af060dc3d10919d84', 'to': '0xed9510f826a20b07e427472c9faef10a8e19de6c', 'value': 20024.2791545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x043d84b275d6ffd3a800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:07:27.000Z'}}, {'blockNum': '0xa55f14', 'uniqueId': '0x578ba75a79ed4ff60cdc3d0ca53e42a004eebc0f7b8621dd5232338f9d83bfa5:log:85', 'hash': '0x578ba75a79ed4ff60cdc3d0ca53e42a004eebc0f7b8621dd5232338f9d83bfa5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 32481.398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06e0d1f2fb2d837f0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:13:00.000Z'}}, {'blockNum': '0xa55f16', 'uniqueId': '0xe6475e46bd3ceef5d644c37c2ee0c8bed60ed7b4c5acaca97b0e6f78c87e79a5:log:0', 'hash': '0xe6475e46bd3ceef5d644c37c2ee0c8bed60ed7b4c5acaca97b0e6f78c87e79a5', 'from': '0x016d574d8f9728f3b0073e37c3972e32683b31f1', 'to': '0x6dd4b492f020c6afb31e06c8564a7527aac8e8ed', 'value': 3957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd6826806ea5cb40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:13:42.000Z'}}, {'blockNum': '0xa55f1e', 'uniqueId': '0x0a82ad46b41fd55f0a136307ed64ab3c28f5d95953bc3c6ff34d7b0327d44180:log:136', 'hash': '0x0a82ad46b41fd55f0a136307ed64ab3c28f5d95953bc3c6ff34d7b0327d44180', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9a340d72007fe5a8076db602687fbed636363dd', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:14:59.000Z'}}, {'blockNum': '0xa55f88', 'uniqueId': '0x7e7d3e51a79453a118312bef5db6ff100ed949e01ae2b45c4ab68a40b4e87243:log:13', 'hash': '0x7e7d3e51a79453a118312bef5db6ff100ed949e01ae2b45c4ab68a40b4e87243', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5fafae3633d0d7e7a006629e16414b2985a904c8', 'value': 95405.413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1433f013cbf542d08000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:40:11.000Z'}}, {'blockNum': '0xa55fe8', 'uniqueId': '0x32df0a1f1819a005746c3d71d022efd95eaf8b35351d78eff88fa81f31ed3646:log:55', 'hash': '0x32df0a1f1819a005746c3d71d022efd95eaf8b35351d78eff88fa81f31ed3646', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5fafae3633d0d7e7a006629e16414b2985a904c8', 'value': 154914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x20cde79ed6738f480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:58:50.000Z'}}, {'blockNum': '0xa56047', 'uniqueId': '0xe03beee665f9fc5dc12aa98adf74105f52a5d80213631ea4dae5924b61e036a4:log:147', 'hash': '0xe03beee665f9fc5dc12aa98adf74105f52a5d80213631ea4dae5924b61e036a4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x86925ddeea557ee955aafc75e08450ab5d90229c', 'value': 3461.988266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xbbacbd1186ec8ca000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:18:41.000Z'}}, {'blockNum': '0xa56074', 'uniqueId': '0x76ef80f69084c87f7a1bbda1d589a15736dc0079cc4d3969c33227dc1a8b802d:log:115', 'hash': '0x76ef80f69084c87f7a1bbda1d589a15736dc0079cc4d3969c33227dc1a8b802d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 23241.649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04ebeeac51f750be8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:28:43.000Z'}}, {'blockNum': '0xa5609b', 'uniqueId': '0x47cc831f0c8460624b2564ce68c5bcfd69539a6f960b41a01300a2db4f3decc2:log:55', 'hash': '0x47cc831f0c8460624b2564ce68c5bcfd69539a6f960b41a01300a2db4f3decc2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2057.89244169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6f8efea0891db70400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:36:34.000Z'}}, {'blockNum': '0xa560a1', 'uniqueId': '0x4b6caed6747fbe878d2706055270ebe5a375a0eeefafe6045aeed42668a47fc4:log:145', 'hash': '0x4b6caed6747fbe878d2706055270ebe5a375a0eeefafe6045aeed42668a47fc4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4fcdcdc5ad5d26568de9cea8d8b566600695024a', 'value': 2014.89244169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6d3a3ff05bffeb0400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:38:40.000Z'}}, {'blockNum': '0xa560d8', 'uniqueId': '0xd841874260ee89d273de410d99906976a6331ef375ea4a83fb48e1730f1d02ff:log:108', 'hash': '0xd841874260ee89d273de410d99906976a6331ef375ea4a83fb48e1730f1d02ff', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 22891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04d8ec70d248bacc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:50:46.000Z'}}, {'blockNum': '0xa560e2', 'uniqueId': '0x5faaea6d5c51c0f7e0687b0ad6df5a9dd9c89e5c2d71caa6a8ceab40812820d0:log:151', 'hash': '0x5faaea6d5c51c0f7e0687b0ad6df5a9dd9c89e5c2d71caa6a8ceab40812820d0', 'from': '0xe28a24ce2f3bbbd0020cfcfbc1e011dd025d5d25', 'to': '0x0a05e2e9d6333387d4f634b08fff5210292f5561', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5de9ffb72', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:52:43.000Z'}}, {'blockNum': '0xa560e4', 'uniqueId': '0x08ece819af067efa0a3adf1a8ae8a828d3cbf5f0db44a57343da402fa38d87b8:log:145', 'hash': '0x08ece819af067efa0a3adf1a8ae8a828d3cbf5f0db44a57343da402fa38d87b8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6f9b3fcf1f2c006d2cb7594dc95ecf094f87111a', 'value': 16897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0393fcfb07db6f640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:52:59.000Z'}}]}}
Number of returned transfers:  44
Answer is complete
 
symbol             GVT
group              CPS
date        2020-09-17
hour             18:00
exchange       binance
Name: 424, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-09-17 18:00:00 2020-09-17 06:00:00 2020-09-18 06:00:00
Unix timestamps:  1600315200.0 1600401600.0
Hex Block Numbers:  0xa5f9af 0xa61337
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RDN
group              CPS
date        2020-10-17
hour             16:00
exchange       binance
Name: 425, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-10-17 16:00:00 2020-10-17 04:00:00 2020-10-18 04:00:00
Unix timestamps:  1602900000.0 1602986400.0
Hex Block Numbers:  0xa8ec89 0xa905eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa8ecb4', 'uniqueId': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755:log:224', 'hash': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T02:08:16.000Z'}}, {'blockNum': '0xa8f093', 'uniqueId': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4:log:185', 'hash': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4', 'from': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T05:43:33.000Z'}}, {'blockNum': '0xa8f1fe', 'uniqueId': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56:log:4', 'hash': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1920.9350643831335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68225447819cca98f3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:06:47.000Z'}}, {'blockNum': '0xa8f201', 'uniqueId': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f:log:56', 'hash': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:16.000Z'}}, {'blockNum': '0xa8f202', 'uniqueId': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b:log:151', 'hash': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:54.000Z'}}, {'blockNum': '0xa8f245', 'uniqueId': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187:log:214', 'hash': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187', 'from': '0x6d377c45cf8c9d19bb6cfdb0c93ccf979026d3f8', 'to': '0xf8622783483722aa2b8d3f689a18d3a79466cb8e', 'value': 1534.9389518395485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x53358e9c3e32b613c3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:23:04.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:181', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:182', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f449', 'uniqueId': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998:log:14', 'hash': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3751.993885394774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcb655fffd9d93247fd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:20:35.000Z'}}, {'blockNum': '0xa8f44b', 'uniqueId': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75:log:169', 'hash': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3744.4898976239847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcafd3c7abb34680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:21:04.000Z'}}, {'blockNum': '0xa8f458', 'uniqueId': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69:log:18', 'hash': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:24:29.000Z'}}, {'blockNum': '0xa8f46d', 'uniqueId': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3:log:45', 'hash': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3', 'from': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:30:03.000Z'}}, {'blockNum': '0xa8f595', 'uniqueId': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9:log:32', 'hash': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 17678.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03be5a78c54aef2a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:34:47.000Z'}}, {'blockNum': '0xa8f5cc', 'uniqueId': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e:log:137', 'hash': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e', 'from': '0x4569cd9d62f1db5b59fd504e7e80777274299329', 'to': '0x88793a5eaf644825d78f5730c2f482437e3aeb4d', 'value': 53187.0905255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4347280ba8cbc95800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:46:15.000Z'}}, {'blockNum': '0xa8f60b', 'uniqueId': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d:log:139', 'hash': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d', 'from': '0x2cedc44ec7fc775caa42acbfb3deae7ed4af24fa', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:59:37.000Z'}}, {'blockNum': '0xa8f60e', 'uniqueId': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460:log:60', 'hash': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20115.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0442727a311a51800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:00:16.000Z'}}, {'blockNum': '0xa8f63e', 'uniqueId': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548:log:11', 'hash': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3671.6538336414615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc70a6ecc70f081bc09', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:08:59.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:46', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 915.2487882567699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da0e3b93f7af2d3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:47', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 915.2486178129188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da048b4b2480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:96', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 802.7683055095091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a5f09cb48c2e26', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:97', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 802.7681757273997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a57a9374040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f644', 'uniqueId': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120:log:240', 'hash': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3664.3105259741783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc6a486210637b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:43.000Z'}}, {'blockNum': '0xa8f68c', 'uniqueId': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23:log:305', 'hash': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23', 'from': '0x21821de67396f6811e02350e8cdab0805e7dceee', 'to': '0xd44efb5e3e0056de640240943e0c65c9e8865c9f', 'value': 102.9988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0595653ee393810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:23.000Z'}}, {'blockNum': '0xa8f68d', 'uniqueId': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea:log:44', 'hash': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19127.96132155865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040cedc9d5acd2e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:25.000Z'}}, {'blockNum': '0xa8f6f6', 'uniqueId': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4:log:208', 'hash': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4', 'from': '0xafd3e0b651e9379971aaf34683553c7553a06e60', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:52:18.000Z'}}, {'blockNum': '0xa8f761', 'uniqueId': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f:log:77', 'hash': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2bec9497ff7851c94e105143865da680feb91d09', 'value': 3731.0985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xca4364ad8afccc4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:13:15.000Z'}}, {'blockNum': '0xa8f7f9', 'uniqueId': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1:log:325', 'hash': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1', 'from': '0xe0782ace187e676f08a32e96b32d77712ef0b073', 'to': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:43:05.000Z'}}, {'blockNum': '0xa8f81c', 'uniqueId': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920:log:220', 'hash': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920', 'from': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:50:42.000Z'}}, {'blockNum': '0xa8f8eb', 'uniqueId': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea:log:51', 'hash': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea', 'from': '0x7946632863fbb0a914b3c0e5f74e1c3c98ca64df', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bdd2ed4b616c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:34:04.000Z'}}, {'blockNum': '0xa8f908', 'uniqueId': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487:log:46', 'hash': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9221.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01f3e8cbbb56e3ba0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:41:42.000Z'}}, {'blockNum': '0xa8f978', 'uniqueId': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313:log:280', 'hash': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313', 'from': '0x20990b7688861fd6d8f45efc1ffb051bb030532c', 'to': '0xca499253c4928a5bd1ee59df395e8a5a59a2e78d', 'value': 1436.496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ddf62fd1e35880000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:05:42.000Z'}}, {'blockNum': '0xa8f980', 'uniqueId': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21:log:33', 'hash': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:07:44.000Z'}}, {'blockNum': '0xa8f987', 'uniqueId': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8:log:10', 'hash': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:08:59.000Z'}}, {'blockNum': '0xa8fa2f', 'uniqueId': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0:log:63', 'hash': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8210.20036828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01bd136b2771deaff000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:51:54.000Z'}}, {'blockNum': '0xa8fa3e', 'uniqueId': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01:log:97', 'hash': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 8425.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8bde9d451502c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:55:16.000Z'}}, {'blockNum': '0xa8fa42', 'uniqueId': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14:log:55', 'hash': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2687.8488746452704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x91b56576a7fcc638f2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:57:20.000Z'}}, {'blockNum': '0xa8fa45', 'uniqueId': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558:log:80', 'hash': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2682.4731768959796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x916acb2608ee700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:58:00.000Z'}}, {'blockNum': '0xa8fa51', 'uniqueId': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728:log:244', 'hash': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17647.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03bca6b58fa833e60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:00:21.000Z'}}, {'blockNum': '0xa8fa95', 'uniqueId': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e:log:35', 'hash': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9347.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01fac02c32b402060000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:12:35.000Z'}}, {'blockNum': '0xa8faca', 'uniqueId': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7:log:240', 'hash': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7', 'from': '0x365cc1f75cf0b70fe780880941d50d29913c0bd9', 'to': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'value': 460.3016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18f3f7ca6ae7f20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:25:24.000Z'}}, {'blockNum': '0xa8fad9', 'uniqueId': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048:log:8', 'hash': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 7894.37634788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01abf47ad632c8f71000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:28:16.000Z'}}, {'blockNum': '0xa8fae1', 'uniqueId': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd:log:190', 'hash': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd', 'from': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16104.57671616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x036907e5fda4a7a70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:12.000Z'}}, {'blockNum': '0xa8fae2', 'uniqueId': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437:log:191', 'hash': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2645.4825284988124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f6971f74d71e909dc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:36.000Z'}}, {'blockNum': '0xa8fae3', 'uniqueId': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc:log:25', 'hash': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 6379.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0159dae5ffd752a60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:31:33.000Z'}}, {'blockNum': '0xa8fae6', 'uniqueId': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f:log:116', 'hash': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2640.1915634418147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f2004ae9dac900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:32:33.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:270', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.1690587715337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1a68792eb236a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:271', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.1688955867392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1121d27340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:211', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.6411287288056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7ec7a7933d7b15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:212', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.640969434666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7e36c704a20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8fb53', 'uniqueId': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88:log:2', 'hash': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2631.747487065685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8eaad54be3f51a7746', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:58:56.000Z'}}, {'blockNum': '0xa8fb56', 'uniqueId': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85:log:86', 'hash': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2626.483992091554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8e61c99b1942f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:59:40.000Z'}}, {'blockNum': '0xa8fb58', 'uniqueId': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27:log:10', 'hash': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 4789.840710473679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0103a8649c83184dfaf0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:02.000Z'}}, {'blockNum': '0xa8fb59', 'uniqueId': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac:log:6', 'hash': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:09.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20:log:54', 'hash': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3201.3953312184785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad8c48fc0617700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:140', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 939.6958340005638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e63e4d360a9081', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:141', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 939.6956546240192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e59b28dad20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d:log:234', 'hash': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5b', 'uniqueId': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e:log:12', 'hash': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8354.3388098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c4e3bdc4543cb3d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:43.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:27', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:28', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962:log:229', 'hash': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:84', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:85', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5f', 'uniqueId': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db:log:27', 'hash': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 3693.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc83dc5c968a9e40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:06.000Z'}}, {'blockNum': '0xa8fb65', 'uniqueId': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a:log:141', 'hash': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:58.000Z'}}, {'blockNum': '0xa8fb6e', 'uniqueId': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310:log:155', 'hash': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3509.380443638334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbe3e6fe7fe9da893e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:04:54.000Z'}}, {'blockNum': '0xa8fb79', 'uniqueId': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f:log:110', 'hash': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f', 'from': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'to': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:06:51.000Z'}}, {'blockNum': '0xa8fb7b', 'uniqueId': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda:log:57', 'hash': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 1993.8410352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c161a51b11d1d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:23.000Z'}}, {'blockNum': '0xa8fb7c', 'uniqueId': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907:log:37', 'hash': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907', 'from': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:31.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b:log:80', 'hash': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b', 'from': '0xd11c25af01d25e5ff28a6a5760db795dafbb3d9d', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 11568.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x027322c1a65c86108000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:89', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:95', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:259', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 974.7458636748125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750f6965a899802', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:264', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 974.7458352341208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750dcb87d360000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbe3', 'uniqueId': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd:log:157', 'hash': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd', 'from': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20749.25970527027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0464d1d2c7a760d0bc82', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:12.000Z'}}, {'blockNum': '0xa8fbe4', 'uniqueId': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac:log:57', 'hash': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19421.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x041cd8d7fbf3fe900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:25.000Z'}}, {'blockNum': '0xa8fd1a', 'uniqueId': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900:log:69', 'hash': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:38:01.000Z'}}, {'blockNum': '0xa8fd23', 'uniqueId': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f:log:168', 'hash': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:41:08.000Z'}}, {'blockNum': '0xa8fd71', 'uniqueId': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab:log:64', 'hash': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'value': 12386.9501916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f776262a6d76000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:54:38.000Z'}}, {'blockNum': '0xa8fd9a', 'uniqueId': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87:log:42', 'hash': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:03:43.000Z'}}, {'blockNum': '0xa8fd9e', 'uniqueId': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744:log:118', 'hash': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:05:01.000Z'}}, {'blockNum': '0xa8fdd7', 'uniqueId': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901:log:72', 'hash': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 11686.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279813752637c620000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:18:22.000Z'}}, {'blockNum': '0xa8fddb', 'uniqueId': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2:log:50', 'hash': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:19:33.000Z'}}, {'blockNum': '0xa8fde5', 'uniqueId': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5:log:191', 'hash': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:21:35.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:118', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x175789024955c56b06a618806fc13df71d08a377', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:124', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x175789024955c56b06a618806fc13df71d08a377', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdfe', 'uniqueId': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed:log:33', 'hash': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:28:22.000Z'}}, {'blockNum': '0xa8fe07', 'uniqueId': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112:log:61', 'hash': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:30:17.000Z'}}, {'blockNum': '0xa8fe2e', 'uniqueId': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9:log:24', 'hash': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:40:49.000Z'}}, {'blockNum': '0xa8fe35', 'uniqueId': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1:log:260', 'hash': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:43:34.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:105', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:110', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe68', 'uniqueId': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14:log:5', 'hash': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:55:04.000Z'}}, {'blockNum': '0xa8fe6f', 'uniqueId': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b:log:209', 'hash': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:56:04.000Z'}}, {'blockNum': '0xa8fe96', 'uniqueId': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf:log:34', 'hash': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1883.10000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66154320eaee21e400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:04:02.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:355', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:359', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa900ab', 'uniqueId': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0:log:269', 'hash': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0', 'from': '0x6a12a09de38346d13f55879e31476b0c53cd2f08', 'to': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T21:07:05.000Z'}}, {'blockNum': '0xa901ad', 'uniqueId': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68:log:35', 'hash': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:02:46.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f:log:45', 'hash': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f', 'from': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:60', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 941.1110033730682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489ef59172daa71', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:65', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 941.1109779568085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489d83b680c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901ba', 'uniqueId': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5:log:0', 'hash': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xbd0e6a324df058e2581506101a50a7596fe623ed', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:04:38.000Z'}}, {'blockNum': '0xa901c3', 'uniqueId': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c:log:130', 'hash': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c', 'from': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:06:40.000Z'}}, {'blockNum': '0xa904bd', 'uniqueId': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54:log:264', 'hash': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x9198b2637af936766e85a888d6097492a50bf3e8', 'value': 267.26938943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e7d1b9da1f6b11c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T00:46:56.000Z'}}]}}
Number of returned transfers:  105
Answer is complete
 
symbol             OAX
group              CPS
date        2020-10-18
hour             18:00
exchange       binance
Name: 426, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-10-18 18:00:00 2020-10-18 06:00:00 2020-10-19 06:00:00
Unix timestamps:  1602993600.0 1603080000.0
Hex Block Numbers:  0xa907f1 0xa92179
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa908ed', 'uniqueId': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c:log:88', 'hash': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T04:56:29.000Z'}}, {'blockNum': '0xa909a8', 'uniqueId': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d:log:0', 'hash': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d', 'from': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'to': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T05:33:11.000Z'}}, {'blockNum': '0xa90b9a', 'uniqueId': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b:log:16', 'hash': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 2650.3261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8faca9c9eba6694000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:25:36.000Z'}}, {'blockNum': '0xa90bbd', 'uniqueId': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e:log:16', 'hash': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 189569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x28248e5b606469640000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:35:12.000Z'}}, {'blockNum': '0xa916d6', 'uniqueId': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd:log:2', 'hash': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:03.000Z'}}, {'blockNum': '0xa916d9', 'uniqueId': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384:log:0', 'hash': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:56.000Z'}}, {'blockNum': '0xa917f0', 'uniqueId': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb:log:59', 'hash': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:01:22.000Z'}}, {'blockNum': '0xa917f5', 'uniqueId': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9:log:6', 'hash': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9', 'from': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:02:47.000Z'}}, {'blockNum': '0xa91807', 'uniqueId': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4:log:32', 'hash': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:06:07.000Z'}}, {'blockNum': '0xa9180f', 'uniqueId': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a:log:16', 'hash': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:08:50.000Z'}}, {'blockNum': '0xa9182b', 'uniqueId': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c:log:23', 'hash': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c', 'from': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'to': '0xee61f5fb0db81d3a09392375ee96f723c0620e07', 'value': 6237.16825793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01521e18fca7539ee400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:16:33.000Z'}}, {'blockNum': '0xa91bd7', 'uniqueId': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084:log:134', 'hash': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T22:47:53.000Z'}}, {'blockNum': '0xa91c37', 'uniqueId': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532:log:248', 'hash': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 1109.7472995507262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3c28d6693f8a0c9a5a', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T23:10:16.000Z'}}]}}
Number of returned transfers:  13
Answer is complete
 
symbol             PPT
group              CPS
date        2020-10-21
hour             18:00
exchange       binance
Name: 427, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-10-21 18:00:00 2020-10-21 06:00:00 2020-10-22 06:00:00
Unix timestamps:  1603252800.0 1603339200.0
Hex Block Numbers:  0xa9547d 0xa96de5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa954fb', 'uniqueId': '0xf733f06449a7a4ddfa98ab56c953d355dce3e17ec33712a89e911d9292322c52:log:221', 'hash': '0xf733f06449a7a4ddfa98ab56c953d355dce3e17ec33712a89e911d9292322c52', 'from': '0x8e482bf2b636a34fe9626f82e88d409df362ec97', 'to': '0xc50efa7c786d83d6f010c802bf513d1183eb90aa', 'value': 642.444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef543bf80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T04:29:41.000Z'}}, {'blockNum': '0xa95783', 'uniqueId': '0x66909a438c4cafd96e4f8140bf527bc617b72264f91422975dcddaf591b45e00:log:14', 'hash': '0x66909a438c4cafd96e4f8140bf527bc617b72264f91422975dcddaf591b45e00', 'from': '0xd6c57c37e56aa4816d9cc1927a34bc1c771f8f59', 'to': '0xabce47738cbf51f78b517ddc7fe6b96534fc243c', 'value': 10006.772051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8fd02646c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T06:50:43.000Z'}}, {'blockNum': '0xa95915', 'uniqueId': '0xffed573350dbba26494b13f431b00092ef0709be6e0ac3a651fbe93c851000a3:log:51', 'hash': '0xffed573350dbba26494b13f431b00092ef0709be6e0ac3a651fbe93c851000a3', 'from': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'to': '0x0a1f9fe037dd61c687a68821d0c2843d1a17c105', 'value': 1776.4500043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x295c7796ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T08:19:05.000Z'}}, {'blockNum': '0xa95c75', 'uniqueId': '0x27fe2f8578660f3f5c18e705dff57e89ea007d2b1a10a6d6a062078ca4ea432f:log:20', 'hash': '0x27fe2f8578660f3f5c18e705dff57e89ea007d2b1a10a6d6a062078ca4ea432f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2217bf2502f2482b2ce1e39f9eebf4e649d46803', 'value': 96.03505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x023c69db68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:34:20.000Z'}}, {'blockNum': '0xa95c8e', 'uniqueId': '0x506da9d5ffded5a70f386eae807782dc6611297458d6a6e5b3946d54f51416a3:log:238', 'hash': '0x506da9d5ffded5a70f386eae807782dc6611297458d6a6e5b3946d54f51416a3', 'from': '0xc8c09eaa6d46fbd4277106a8c14178d45e90dbba', 'to': '0x65fc1551d002fb5b219d5374252d6642642040fa', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:40:25.000Z'}}, {'blockNum': '0xa95ca0', 'uniqueId': '0xa92518e2d547a8d1b26f45cdfe3204f904639855bfd12d5200c9005cd481d6f3:log:209', 'hash': '0xa92518e2d547a8d1b26f45cdfe3204f904639855bfd12d5200c9005cd481d6f3', 'from': '0x65fc1551d002fb5b219d5374252d6642642040fa', 'to': '0x24ba1542f8a0a20e8251d096213384cfb0ee3dbc', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:43:31.000Z'}}, {'blockNum': '0xa95cf8', 'uniqueId': '0x53d0425688cffaf05a7af60f2263961d25c45a7a2aa7fc7d17ac2078322afafa:log:52', 'hash': '0x53d0425688cffaf05a7af60f2263961d25c45a7a2aa7fc7d17ac2078322afafa', 'from': '0xabce47738cbf51f78b517ddc7fe6b96534fc243c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10006.772051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8fd02646c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:00:18.000Z'}}, {'blockNum': '0xa95d3b', 'uniqueId': '0x1a809e49d4dcfe1e8baed3dec04b4ece3948c90e45c1f4dbdf5d7f4181a7f0f8:log:104', 'hash': '0x1a809e49d4dcfe1e8baed3dec04b4ece3948c90e45c1f4dbdf5d7f4181a7f0f8', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x4490365c6750515b502850dfd30c58dcd5d807c9', 'value': 1604.66397831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x255c8aea87', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:13:21.000Z'}}, {'blockNum': '0xa95d46', 'uniqueId': '0xf53c80b13937a701f55e3253eaee29299ceeedef3c727e2cbac2b69d90a7169d:log:42', 'hash': '0xf53c80b13937a701f55e3253eaee29299ceeedef3c727e2cbac2b69d90a7169d', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 534.88799277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c742e4e2d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:15:07.000Z'}}, {'blockNum': '0xa95d4d', 'uniqueId': '0xf2c8798a8d7cb1cecade89145b9197e76afd57512d37e5e58a8cc45e8fa09734:log:123', 'hash': '0xf2c8798a8d7cb1cecade89145b9197e76afd57512d37e5e58a8cc45e8fa09734', 'from': '0x4490365c6750515b502850dfd30c58dcd5d807c9', 'to': '0x777634c1f8cb1a39c351ba19a3dd3643929ba5e4', 'value': 1604.66397831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x255c8aea87', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:16:32.000Z'}}, {'blockNum': '0xa95de2', 'uniqueId': '0x77f64369137098be2140aa4c8ab50a25cfeec117b584b41319907cca0b41715d:log:206', 'hash': '0x77f64369137098be2140aa4c8ab50a25cfeec117b584b41319907cca0b41715d', 'from': '0x4e6e194f41bf8b462105065cd5a99751392c3008', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 150.23865491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037f7dfe93', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:48:20.000Z'}}, {'blockNum': '0xa95f3e', 'uniqueId': '0x4e92c0355d18f88127ee6bca5fbd0de22014c3a73041246b5f5c06158ffc39d7:log:251', 'hash': '0x4e92c0355d18f88127ee6bca5fbd0de22014c3a73041246b5f5c06158ffc39d7', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xfbc2a1da2a8d36004bfe4105245eca89e656be75', 'value': 186.7403365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04590f23f2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T14:06:46.000Z'}}, {'blockNum': '0xa95fdd', 'uniqueId': '0x3fd06730d027a03d37cbccde5a42efaf8087ab76b6b70d385e6cc4f3347ca631:log:52', 'hash': '0x3fd06730d027a03d37cbccde5a42efaf8087ab76b6b70d385e6cc4f3347ca631', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4d3b19858b9b70d5c67a84e23589a3a9e2077765', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032a9f8800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T14:43:11.000Z'}}, {'blockNum': '0xa96046', 'uniqueId': '0x8a60a9f284235def94f7685927c8da6ab3834e691aeac1e2ba25b0b98e6bc429:log:201', 'hash': '0x8a60a9f284235def94f7685927c8da6ab3834e691aeac1e2ba25b0b98e6bc429', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d3b19858b9b70d5c67a84e23589a3a9e2077765', 'value': 78510.14986835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0723f4f59c53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T15:08:21.000Z'}}, {'blockNum': '0xa96111', 'uniqueId': '0x694249c72ffdc7f6d9e2513e338fc93391ccb1766ea061e00e4fa676fc388804:log:277', 'hash': '0x694249c72ffdc7f6d9e2513e338fc93391ccb1766ea061e00e4fa676fc388804', 'from': '0xf68ab127080d0784c25f4cbfe01d7c4ed64eaf68', 'to': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T15:50:14.000Z'}}, {'blockNum': '0xa9622e', 'uniqueId': '0x129674a5f1282e3c67ac94ac59b5e6d7afd49d4205677d25294e90f0d01d1261:log:265', 'hash': '0x129674a5f1282e3c67ac94ac59b5e6d7afd49d4205677d25294e90f0d01d1261', 'from': '0x75fd9c718302bf04e70db74d68fb43fe97854fc2', 'to': '0xb3612d04f0f3f25685dc0ffed3095e920f7fb350', 'value': 781.91464038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1234930e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T16:52:22.000Z'}}, {'blockNum': '0xa9623d', 'uniqueId': '0xc3fc737dcc9e99b6ff67a9d8b127dc19b10b9894987a89e4cbf9fc9dd5723b06:log:360', 'hash': '0xc3fc737dcc9e99b6ff67a9d8b127dc19b10b9894987a89e4cbf9fc9dd5723b06', 'from': '0xb3612d04f0f3f25685dc0ffed3095e920f7fb350', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 781.91464038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1234930e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T16:57:20.000Z'}}, {'blockNum': '0xa9631a', 'uniqueId': '0x3b67d4e3139c32e4f06bead1a749fbf656375f5bba812c54ed86243dceff2512:log:157', 'hash': '0x3b67d4e3139c32e4f06bead1a749fbf656375f5bba812c54ed86243dceff2512', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeed6d8684f0199cc447fefcdb343d85a05d24d32', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T17:45:08.000Z'}}, {'blockNum': '0xa96346', 'uniqueId': '0x316fad5dd9c77529c7121f17f78e7ca44da2ef6ec85d3c19adafaf51aee77081:log:35', 'hash': '0x316fad5dd9c77529c7121f17f78e7ca44da2ef6ec85d3c19adafaf51aee77081', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x1448be8f5fef7448ade238d5e0e6337e374b1a68', 'value': 58.244115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015b29776c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T17:56:20.000Z'}}, {'blockNum': '0xa96391', 'uniqueId': '0x3f2625fecbbd9dc84274ec22da6ff9c9cd03c9a8c85f8a20f8fcaf017478a5ca:log:174', 'hash': '0x3f2625fecbbd9dc84274ec22da6ff9c9cd03c9a8c85f8a20f8fcaf017478a5ca', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x2d0cb18f6c438ccce7debfdedb9018b2d08e5425', 'value': 772.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11faea57b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:13:20.000Z'}}, {'blockNum': '0xa963dc', 'uniqueId': '0x12ffc236a2ca8f9de597e732bdd45904d714be4a7f2c9240169df65a4d5eb6b4:log:190', 'hash': '0x12ffc236a2ca8f9de597e732bdd45904d714be4a7f2c9240169df65a4d5eb6b4', 'from': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:30:20.000Z'}}, {'blockNum': '0xa963e8', 'uniqueId': '0x19aa7811e4a516a5e45e858e12bb78ef7674ecaf4cbd896bb52409e2ce7252cb:log:307', 'hash': '0x19aa7811e4a516a5e45e858e12bb78ef7674ecaf4cbd896bb52409e2ce7252cb', 'from': '0x2d0cb18f6c438ccce7debfdedb9018b2d08e5425', 'to': '0x1eb0fd75d347a4faaaeed9653c3d148738b8ea50', 'value': 372.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aabac7b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:32:45.000Z'}}, {'blockNum': '0xa963f5', 'uniqueId': '0x919349ded6718e4f3f72f2f649128664f23cc847a93044a1ce7b39a0504bb435:log:247', 'hash': '0x919349ded6718e4f3f72f2f649128664f23cc847a93044a1ce7b39a0504bb435', 'from': '0x1eb0fd75d347a4faaaeed9653c3d148738b8ea50', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 372.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aabac7b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:35:39.000Z'}}, {'blockNum': '0xa963fe', 'uniqueId': '0xbd9e17d20d8e59e9b7f56aa1c07141746f11462e89ae2ee6ac0d6ce4ca17656a:log:277', 'hash': '0xbd9e17d20d8e59e9b7f56aa1c07141746f11462e89ae2ee6ac0d6ce4ca17656a', 'from': '0xc53fddeb3f7780e1249f13baf021cc18d3812f83', 'to': '0x16df71dd45af233d2265e57002908b8fcf5b13b3', 'value': 704.5168583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10673f69c6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:38:51.000Z'}}, {'blockNum': '0xa96406', 'uniqueId': '0x517102ef8edb6647c12ef3c2a7ffc4c85124e3c72cd61f6ead5267e844c23d0c:log:212', 'hash': '0x517102ef8edb6647c12ef3c2a7ffc4c85124e3c72cd61f6ead5267e844c23d0c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 1528.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x23964ec500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:40:32.000Z'}}, {'blockNum': '0xa96459', 'uniqueId': '0x0ce64017f435b0f9d97068a9d1dc4c425778ea654c6c1d5a8192736e1571b83e:log:55', 'hash': '0x0ce64017f435b0f9d97068a9d1dc4c425778ea654c6c1d5a8192736e1571b83e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc53fddeb3f7780e1249f13baf021cc18d3812f83', 'value': 666.1368583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f827c2e46', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:00:24.000Z'}}, {'blockNum': '0xa9650e', 'uniqueId': '0xbdce316c5ba13c0567ddc55250cfc841988f37a4932674e5e56409b00ccfd246:log:70', 'hash': '0xbdce316c5ba13c0567ddc55250cfc841988f37a4932674e5e56409b00ccfd246', 'from': '0x694bf88ebe333ec2f783fa02eb2674d132d603e5', 'to': '0xc397ffa9377a94a784795e1c5b9575cba2fd9b0f', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:44:28.000Z'}}, {'blockNum': '0xa96525', 'uniqueId': '0x955b8c6380ea2c84eb72535666f9bc92a5a4245d91524604607c15fb2a3a699c:log:207', 'hash': '0x955b8c6380ea2c84eb72535666f9bc92a5a4245d91524604607c15fb2a3a699c', 'from': '0x694bf88ebe333ec2f783fa02eb2674d132d603e5', 'to': '0xc397ffa9377a94a784795e1c5b9575cba2fd9b0f', 'value': 2845.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x423ee470c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:50:14.000Z'}}, {'blockNum': '0xa965c1', 'uniqueId': '0x3d0d2171cdbc1f5edc5de8cb8711bf9702434bc309109387b4282e0b91fdb0d9:log:319', 'hash': '0x3d0d2171cdbc1f5edc5de8cb8711bf9702434bc309109387b4282e0b91fdb0d9', 'from': '0x56aa3bb0668d3c0c54ccf108775eeda4399828d7', 'to': '0xf88e50fee72d1036306f6b6f09a8e74164c3a4d7', 'value': 83.17194501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01efbe5105', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:23:29.000Z'}}, {'blockNum': '0xa965d1', 'uniqueId': '0x4af6805da6b7a7e22d4913cad52669b70e97efc759cbc89f7df6cae64ef44705:log:84', 'hash': '0x4af6805da6b7a7e22d4913cad52669b70e97efc759cbc89f7df6cae64ef44705', 'from': '0xf88e50fee72d1036306f6b6f09a8e74164c3a4d7', 'to': '0x24ba1542f8a0a20e8251d096213384cfb0ee3dbc', 'value': 83.17194501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01efbe5105', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:26:24.000Z'}}, {'blockNum': '0xa96616', 'uniqueId': '0xfd139fe2710cc81371acd5bd023a42ca6ced4f4dc2868868aba2f4af20bff8b8:log:35', 'hash': '0xfd139fe2710cc81371acd5bd023a42ca6ced4f4dc2868868aba2f4af20bff8b8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7df0fb47bd6123a5106c915e512e857e15fd7b42', 'value': 107.0361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027dfc2090', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:40:52.000Z'}}, {'blockNum': '0xa966ab', 'uniqueId': '0xe54499f3db1b80187b3961693b4a8efd9722e24f260f6c0eeeffc586ab52827e:log:63', 'hash': '0xe54499f3db1b80187b3961693b4a8efd9722e24f260f6c0eeeffc586ab52827e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x96b70ed819ed2854c47878e4e5532e98ca8af7d5', 'value': 124.51311213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e627ee6d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:15:41.000Z'}}, {'blockNum': '0xa96708', 'uniqueId': '0x590c114e5a286588616754be2fbea84f1a57049e0fdbe7f5b558ff1a8b63b43e:log:171', 'hash': '0x590c114e5a286588616754be2fbea84f1a57049e0fdbe7f5b558ff1a8b63b43e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:35:28.000Z'}}, {'blockNum': '0xa96715', 'uniqueId': '0x12628af6d79560c024e57d05746885706188a12d275d3e5f1b119a31345f4e2d:log:32', 'hash': '0x12628af6d79560c024e57d05746885706188a12d275d3e5f1b119a31345f4e2d', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:38:42.000Z'}}, {'blockNum': '0xa96719', 'uniqueId': '0x975e5c0753470fde6135f7b9654959d798538609ae68c1dbb8bfc8b11ab8d7fc:log:84', 'hash': '0x975e5c0753470fde6135f7b9654959d798538609ae68c1dbb8bfc8b11ab8d7fc', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:39:18.000Z'}}, {'blockNum': '0xa9671b', 'uniqueId': '0xb74d1ee03871eeaa91a90bc56e9b78a5fb562abf4cdddcff684948614e557cc2:log:46', 'hash': '0xb74d1ee03871eeaa91a90bc56e9b78a5fb562abf4cdddcff684948614e557cc2', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:40:13.000Z'}}, {'blockNum': '0xa9671e', 'uniqueId': '0x3342f0bdaf45ea258e60ac632d18b9ff41821f0bd43aae429ae5fd23740225aa:log:60', 'hash': '0x3342f0bdaf45ea258e60ac632d18b9ff41821f0bd43aae429ae5fd23740225aa', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:41:28.000Z'}}, {'blockNum': '0xa96724', 'uniqueId': '0x174cae26f7600caab1dff91cb56cb23fad2f5cdbbd5375b80777530b441cc751:log:34', 'hash': '0x174cae26f7600caab1dff91cb56cb23fad2f5cdbbd5375b80777530b441cc751', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:42:50.000Z'}}, {'blockNum': '0xa96782', 'uniqueId': '0x81691373004f862b0bc28260f6e6376ccbba811932f490e622fa81f17bb1f1d5:log:64', 'hash': '0x81691373004f862b0bc28260f6e6376ccbba811932f490e622fa81f17bb1f1d5', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:01:49.000Z'}}, {'blockNum': '0xa96782', 'uniqueId': '0x152a82a1cf6137dd93c8b6e6630bd201a66d681cd885d2f3170276f5c9dd7c1e:log:67', 'hash': '0x152a82a1cf6137dd93c8b6e6630bd201a66d681cd885d2f3170276f5c9dd7c1e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:01:49.000Z'}}, {'blockNum': '0xa96786', 'uniqueId': '0x315c2b40be3f1e9de185187cb80608886b7ada576e47fd9cf2c8e6d9df3ba9a7:log:10', 'hash': '0x315c2b40be3f1e9de185187cb80608886b7ada576e47fd9cf2c8e6d9df3ba9a7', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:08.000Z'}}, {'blockNum': '0xa96786', 'uniqueId': '0x8b1f947409dec8d869b46409866bc47e4d211a4503f98949107f110cb2e4a991:log:11', 'hash': '0x8b1f947409dec8d869b46409866bc47e4d211a4503f98949107f110cb2e4a991', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:08.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0xd4c74d18aa02c825e349a15a4725b260509cde0da8e081c3e1f46962ec1f9b4e:log:20', 'hash': '0xd4c74d18aa02c825e349a15a4725b260509cde0da8e081c3e1f46962ec1f9b4e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0x8c2a17cab487474d14583c654bbd5c3372967b50a288f77868cd66ff25470f87:log:21', 'hash': '0x8c2a17cab487474d14583c654bbd5c3372967b50a288f77868cd66ff25470f87', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0xd6af298920ea4cae22c5ca80bd20117cb37d8b98743c94fa9900919834db5bff:log:22', 'hash': '0xd6af298920ea4cae22c5ca80bd20117cb37d8b98743c94fa9900919834db5bff', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa9678e', 'uniqueId': '0x90d4d72a13fd862cdc9a5486424ea3dd1e72de1d93f51873cda38fd6d6e83bb3:log:133', 'hash': '0x90d4d72a13fd862cdc9a5486424ea3dd1e72de1d93f51873cda38fd6d6e83bb3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:04:30.000Z'}}, {'blockNum': '0xa96805', 'uniqueId': '0x978df893658e0656ab9ae54474847682bd4b70a4325d7ffc24d2af896a3681a3:log:33', 'hash': '0x978df893658e0656ab9ae54474847682bd4b70a4325d7ffc24d2af896a3681a3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:31:24.000Z'}}, {'blockNum': '0xa9680d', 'uniqueId': '0x968953caef00a9d38cc023242bdb04f23be52cf3960f3d72084c408572cced6f:log:38', 'hash': '0x968953caef00a9d38cc023242bdb04f23be52cf3960f3d72084c408572cced6f', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:32:39.000Z'}}, {'blockNum': '0xa9682c', 'uniqueId': '0x2963a91ccb1fab54a846739f3b7088625b3eec6b5068f31615ec29aa853cce03:log:20', 'hash': '0x2963a91ccb1fab54a846739f3b7088625b3eec6b5068f31615ec29aa853cce03', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6fc7d7a73e712c234221e4b9e8aac42a65fefcfb', 'value': 958.69491675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16524459db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:39:00.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xc667f819810b17d52c8bff0f9f157ff78cb9451b3eebbb59565dce620b8880f9:log:66', 'hash': '0xc667f819810b17d52c8bff0f9f157ff78cb9451b3eebbb59565dce620b8880f9', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xbed009e199152531209dedc112d687d8c757f7c70784d87a44a6b85b34db1289:log:67', 'hash': '0xbed009e199152531209dedc112d687d8c757f7c70784d87a44a6b85b34db1289', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0x66f9b208c8255bf81d6cc7a14ec685f6b1373f74fa351d654c44c202cc70cf92:log:68', 'hash': '0x66f9b208c8255bf81d6cc7a14ec685f6b1373f74fa351d654c44c202cc70cf92', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0x202ed608005d2f929644271e80d524093fec3941097bfec2d155032f99489833:log:69', 'hash': '0x202ed608005d2f929644271e80d524093fec3941097bfec2d155032f99489833', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xc9270d9e4404c91070c6a2fab459efe4ff4aa32b2dc9c91723dc89ccc4fd7926:log:70', 'hash': '0xc9270d9e4404c91070c6a2fab459efe4ff4aa32b2dc9c91723dc89ccc4fd7926', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x49f5a9edd4cc328e59592792d98bef8b51d09e2f396a61626d9eaa7df5c523f3:log:20', 'hash': '0x49f5a9edd4cc328e59592792d98bef8b51d09e2f396a61626d9eaa7df5c523f3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x357849f43109af4b77766023b931aecf368ec7aee27f41112156f54971698464:log:21', 'hash': '0x357849f43109af4b77766023b931aecf368ec7aee27f41112156f54971698464', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0xdd2f82ef5c0deb5463d1cc34a99894c2bd8f3059b5e54a7657b60b29aba2580e:log:22', 'hash': '0xdd2f82ef5c0deb5463d1cc34a99894c2bd8f3059b5e54a7657b60b29aba2580e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x2b7951f49c491534e935e407c650a7b48fc6cc85d29de9ff345855b51d579d30:log:23', 'hash': '0x2b7951f49c491534e935e407c650a7b48fc6cc85d29de9ff345855b51d579d30', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x7bafb54c03fc4e057413b8a31c790a64412de912feafb95772bb193513d663dc:log:24', 'hash': '0x7bafb54c03fc4e057413b8a31c790a64412de912feafb95772bb193513d663dc', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa9688e', 'uniqueId': '0x43cd171b85a18953b49e560a25feb433d98f609aae42aa1e7e5c99a39ef9bad1:log:251', 'hash': '0x43cd171b85a18953b49e560a25feb433d98f609aae42aa1e7e5c99a39ef9bad1', 'from': '0xbc9990df22f469960b52dadfcfdac1ce13778d52', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 815.23529991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12fb2e5907', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:57:57.000Z'}}, {'blockNum': '0xa96936', 'uniqueId': '0x966c57e95fcda75d0a064ecefc8e49ad5f8aeca0a2ce9737c7ee04a702b944b1:log:96', 'hash': '0x966c57e95fcda75d0a064ecefc8e49ad5f8aeca0a2ce9737c7ee04a702b944b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee2f4168e281c039ba09222438b2f05c2c2ddcc4', 'value': 125.48958189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02ebf9e7ed', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T23:33:56.000Z'}}, {'blockNum': '0xa969c9', 'uniqueId': '0xeaefab198c413b17ec2e55467335690a83182b3d534f498c59bf93cdfcc5a7be:log:79', 'hash': '0xeaefab198c413b17ec2e55467335690a83182b3d534f498c59bf93cdfcc5a7be', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9d69b7378c222f3aaa5b86202ab3d151a9a8b54a', 'value': 3258.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4bdf823680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T00:04:56.000Z'}}, {'blockNum': '0xa96a12', 'uniqueId': '0x81e2868c42859c7c8db08414bb3be99a044acd7dcbadbb85bc04a25bb6994fc3:log:283', 'hash': '0x81e2868c42859c7c8db08414bb3be99a044acd7dcbadbb85bc04a25bb6994fc3', 'from': '0x6588be445e0e36a02f1ebaeca5219c5fc1a00e2c', 'to': '0xc5ab4a0b9fe13cfd09a043a30eb2be37bb4beed9', 'value': 203.809136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04becc0fc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T00:21:47.000Z'}}, {'blockNum': '0xa96ad5', 'uniqueId': '0x595619ba7f9ba6f9ae91d2d9a47dc895bd44d322a7c003ec2a8eef4bc91a9639:log:359', 'hash': '0x595619ba7f9ba6f9ae91d2d9a47dc895bd44d322a7c003ec2a8eef4bc91a9639', 'from': '0xe86e8f4134b158b4b14888d8660a013d6b93de58', 'to': '0xc151e91622711375eaeff148f2c13d88d377d7f7', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T01:05:11.000Z'}}, {'blockNum': '0xa96bb6', 'uniqueId': '0xda9297ca1d24f2be4a66611b0ae32aee3763a3a12eb437c1bd926dc8d06478b7:log:94', 'hash': '0xda9297ca1d24f2be4a66611b0ae32aee3763a3a12eb437c1bd926dc8d06478b7', 'from': '0x51cf7fdee1d03182679ea129cd0d5c2a5228bd5d', 'to': '0xbb5261898924a9890402e5d5b99c8b75b45a9e4a', 'value': 3553.9692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52bf4ea2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T01:55:15.000Z'}}, {'blockNum': '0xa96c73', 'uniqueId': '0x61e5eb953dfaf9b31d3d197c1993d5130bf192b6bf6f6ae33526ca0eafb5caa7:log:206', 'hash': '0x61e5eb953dfaf9b31d3d197c1993d5130bf192b6bf6f6ae33526ca0eafb5caa7', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8c633b628d1eb7e3c87c36614dbacf6f193bb3af', 'value': 1662.4396782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26b4e9a34c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:38:41.000Z'}}, {'blockNum': '0xa96c77', 'uniqueId': '0xe7d4a86b01d8bbea04f8da8d853ef0492a4cd98d1afc44af1e7bb067391d7428:log:154', 'hash': '0xe7d4a86b01d8bbea04f8da8d853ef0492a4cd98d1afc44af1e7bb067391d7428', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8c633b628d1eb7e3c87c36614dbacf6f193bb3af', 'value': 2086.2140991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3092ce1676', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:39:22.000Z'}}, {'blockNum': '0xa96c90', 'uniqueId': '0x2973682215d3b661a4d0e420dca40038860f2fe44da51465876baab68230af4e:log:94', 'hash': '0x2973682215d3b661a4d0e420dca40038860f2fe44da51465876baab68230af4e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 5841.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87ff9c0540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:45:44.000Z'}}, {'blockNum': '0xa96cab', 'uniqueId': '0x1cdaa42e188fc62e0b633d8fe3a2c442f188bdbdbfb780c65fa121364960eb4f:log:148', 'hash': '0x1cdaa42e188fc62e0b633d8fe3a2c442f188bdbdbfb780c65fa121364960eb4f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 40077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a51d88ed00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:51:13.000Z'}}]}}
Number of returned transfers:  69
Answer is complete
 
symbol           YOYOW
group              CPS
date        2020-11-01
hour             18:00
exchange       binance
Name: 428, dtype: object
HERE
 Symbol: YOYOW, Contract: 
Datetime timestamps:  2020-11-01 18:00:00 2020-11-01 06:00:00 2020-11-02 06:00:00
Unix timestamps:  1604206800.0 1604293200.0
Hex Block Numbers:  0xaa6d88 0xaa86bb
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            APPC
group              CPS
date        2020-11-04
hour             17:00
exchange       binance
Name: 429, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2020-11-04 17:00:00 2020-11-04 05:00:00 2020-11-05 05:00:00
Unix timestamps:  1604462400.0 1604548800.0
Hex Block Numbers:  0xaab8ab 0xaad22a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaab95d', 'uniqueId': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec:log:133', 'hash': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec', 'from': '0x330a72b49e06256bfe20a765f77d816a422b00a7', 'to': '0x47fef156fa29ae4ecb47e0c675eb4f9c55055d6a', 'value': 2758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x9582f0537d5f580000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T04:37:47.000Z'}}, {'blockNum': '0xaaba2a', 'uniqueId': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0:log:20', 'hash': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1375.65880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a9319d9778d99e000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:19:59.000Z'}}, {'blockNum': '0xaaba31', 'uniqueId': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc:log:90', 'hash': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x40abb42d126d918f6aa47e473fb8521d675529ca', 'value': 1329.15880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x480dc8a9d5a5efe000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:21:25.000Z'}}, {'blockNum': '0xaaba87', 'uniqueId': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653:log:3', 'hash': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653', 'from': '0xae5f5e76a6f539d69c1a3a8657b0d294fa59a883', 'to': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:38:41.000Z'}}, {'blockNum': '0xaaba8c', 'uniqueId': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3:log:133', 'hash': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3', 'from': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:40:40.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:98', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 128.9440879163896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06fd756cc8ef244638', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:99', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 15.169892696045837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xd2864908949adb15', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:100', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 7.5849463480229184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x694324844a4d6d8a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabc4d', 'uniqueId': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda:log:17', 'hash': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda', 'from': '0xbb9fb488edef50ec8ecc82b191703b5fb32393e2', 'to': '0x9553c0540ac0f923522849d6c603029b3d4e3cae', 'value': 640.58597771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x22b9ea90c1dcd8cc00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T07:28:10.000Z'}}, {'blockNum': '0xaac444', 'uniqueId': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0:log:37', 'hash': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x312b274e820f4c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:02:30.000Z'}}, {'blockNum': '0xaac463', 'uniqueId': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8:log:18', 'hash': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 58885.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0c7831392df6b2850000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:11:40.000Z'}}, {'blockNum': '0xaac49d', 'uniqueId': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39:log:84', 'hash': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39', 'from': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 59792.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ca95c607c78c1d10000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:24:24.000Z'}}, {'blockNum': '0xaac66c', 'uniqueId': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4:log:28', 'hash': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 127318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1af5ec3028535f980000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:01:47.000Z'}}, {'blockNum': '0xaac6ac', 'uniqueId': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a:log:47', 'hash': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 10442.71900933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x023619d6ab16cdbf7400', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:13:22.000Z'}}, {'blockNum': '0xaac6d0', 'uniqueId': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6:log:44', 'hash': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 34655.58244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0756aed1c808f1168000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:21:45.000Z'}}, {'blockNum': '0xaac6d3', 'uniqueId': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d:log:184', 'hash': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:22:49.000Z'}}, {'blockNum': '0xaac6ee', 'uniqueId': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20:log:44', 'hash': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:33.000Z'}}, {'blockNum': '0xaac6ef', 'uniqueId': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378:log:151', 'hash': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 349455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x49fffe56a00f02dc0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:35.000Z'}}, {'blockNum': '0xaac70b', 'uniqueId': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330:log:22', 'hash': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 124764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1a6b78516bff63f00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:34:24.000Z'}}, {'blockNum': '0xaac713', 'uniqueId': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a:log:106', 'hash': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:35:51.000Z'}}, {'blockNum': '0xaac734', 'uniqueId': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c:log:105', 'hash': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:42:34.000Z'}}, {'blockNum': '0xaac757', 'uniqueId': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4:log:297', 'hash': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:50:27.000Z'}}, {'blockNum': '0xaac764', 'uniqueId': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc:log:65', 'hash': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 298607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x3f3b84957c4f0c5c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:53:15.000Z'}}, {'blockNum': '0xaac78f', 'uniqueId': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd:log:125', 'hash': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:05:17.000Z'}}, {'blockNum': '0xaac7b3', 'uniqueId': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03:log:133', 'hash': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:13:18.000Z'}}, {'blockNum': '0xaac7d5', 'uniqueId': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80:log:98', 'hash': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80', 'from': '0x62d5f2ec17bd962f6c1a7939a672b69460c320f4', 'to': '0x3eab04cb1eedb641875e60c7f151c4188bbcf72e', 'value': 126.362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06d9a0018163e90000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:19:24.000Z'}}, {'blockNum': '0xaac7f7', 'uniqueId': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50:log:22', 'hash': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:26:37.000Z'}}, {'blockNum': '0xaac81b', 'uniqueId': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d:log:71', 'hash': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:34:25.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6:log:242', 'hash': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6', 'from': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 15903.8301648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x035e25faf8c836248000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c:log:243', 'hash': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c', 'from': '0x1df69368c49492c7aa0da26e14d95154f9998da6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 37725.9786619995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07fd212070497e84aa89', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac885', 'uniqueId': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7:log:72', 'hash': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 54279.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b7e7c9b95f17c5a0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:58:29.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec:log:97', 'hash': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 25033.519009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x054d11dd696ad9bf1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1:log:111', 'hash': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 27552.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x05d5a3e9730256d00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac8b4', 'uniqueId': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d:log:35', 'hash': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:08:37.000Z'}}, {'blockNum': '0xaac8c2', 'uniqueId': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec:log:221', 'hash': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 52586.319009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b22b5c6dc6d308f1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:12:08.000Z'}}, {'blockNum': '0xaac8d7', 'uniqueId': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15:log:201', 'hash': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:18:03.000Z'}}, {'blockNum': '0xaac91c', 'uniqueId': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82:log:6', 'hash': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2046.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6ef0e48b2da4ea0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:34:47.000Z'}}, {'blockNum': '0xaac996', 'uniqueId': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269:log:148', 'hash': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf9f7b61ac292e4899a3fae2164133fb02e82471e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:00:15.000Z'}}, {'blockNum': '0xaac99d', 'uniqueId': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff:log:34', 'hash': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 52468.707209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b1c5595cf75e6459000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:01:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:180', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:181', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:182', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:51', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:52', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:53', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:163', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:164', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:165', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:171', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:172', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:173', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaace35', 'uniqueId': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4:log:46', 'hash': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 2511.9109267687422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x882bc44f38c1200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T00:17:01.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf:log:117', 'hash': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf', 'from': '0x652807251031638120c9498a38c8773ee87bdf9b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 252082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x356164819452c3880000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0:log:166', 'hash': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0', 'from': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 349456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a000c3756c2aa400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}]}}
Number of returned transfers:  54
Answer is complete
 
symbol             OAX
group              CPS
date        2020-11-05
hour             16:00
exchange       binance
Name: 430, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-11-05 16:00:00 2020-11-05 04:00:00 2020-11-06 04:00:00
Unix timestamps:  1604545200.0 1604631600.0
Hex Block Numbers:  0xaad105 0xaaeaa5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaad3ae', 'uniqueId': '0xb35afbd7401147f5fbf8c40124299df23680421681248c9b6ebb6950bbee60da:log:266', 'hash': '0xb35afbd7401147f5fbf8c40124299df23680421681248c9b6ebb6950bbee60da', 'from': '0xf41301e41b133caa67377ac9aa8fef864575ecfa', 'to': '0xa454f742c357bdf5ccb2ea70b1fc0b9c533cb4b5', 'value': 862.67688216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2ec40bf5aaa0516000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T05:29:52.000Z'}}, {'blockNum': '0xaad663', 'uniqueId': '0x15b8e3aedfd8aeca20f64c252ac75c500f590bcbafc9bc36d3ee052c485a7b98:log:8', 'hash': '0x15b8e3aedfd8aeca20f64c252ac75c500f590bcbafc9bc36d3ee052c485a7b98', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 3927.8403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xd4edbbf6429bbec000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T08:11:04.000Z'}}, {'blockNum': '0xaade29', 'uniqueId': '0xf16460425c7dbbc9b2edcd0ce35f5d2c3082bb73e70ddec9985ea31649b2858a:log:167', 'hash': '0xf16460425c7dbbc9b2edcd0ce35f5d2c3082bb73e70ddec9985ea31649b2858a', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 8591.006725976658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d1b82b1c2bde598ef0', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T15:22:58.000Z'}}, {'blockNum': '0xaaded6', 'uniqueId': '0x0c69f95a48e3c26b886f7c445a016afba96edd0e8d0821f3fe55a875ef9a9c3c:log:56', 'hash': '0x0c69f95a48e3c26b886f7c445a016afba96edd0e8d0821f3fe55a875ef9a9c3c', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 13030.11651969649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02c25d313225da6f9dd4', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:00:03.000Z'}}, {'blockNum': '0xaadedf', 'uniqueId': '0x79b643352dfe5d63e002ee75f2ee9ffcdb6eb902f7116e94eba5e040e1c36ce7:log:287', 'hash': '0x79b643352dfe5d63e002ee75f2ee9ffcdb6eb902f7116e94eba5e040e1c36ce7', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x30ff6cedaff3e06a6649ea89147ab8eea2b4ad9d', 'value': 3040.8085791886388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa4d7b23be0b3171d02', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:02:35.000Z'}}, {'blockNum': '0xaadf35', 'uniqueId': '0x40e9143b342d4637a44f40ef44a529e741ea7181c79c42ced3a454f7ca60278c:log:34', 'hash': '0x40e9143b342d4637a44f40ef44a529e741ea7181c79c42ced3a454f7ca60278c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 602.25525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x20a5f876fd6c132000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:21:07.000Z'}}, {'blockNum': '0xaadf36', 'uniqueId': '0x75f83694b3bd625f4724065b0c146faf37339cec393be3b3c0eb47901e0180dd:log:166', 'hash': '0x75f83694b3bd625f4724065b0c146faf37339cec393be3b3c0eb47901e0180dd', 'from': '0x30ff6cedaff3e06a6649ea89147ab8eea2b4ad9d', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 3040.8085791886388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa4d7b23be0b3171d02', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:21:25.000Z'}}, {'blockNum': '0xaadf40', 'uniqueId': '0xa19f722dddb2709ae192df4cacbda497108dd2d23c1c83dfbc1e4f5cdb468805:log:140', 'hash': '0xa19f722dddb2709ae192df4cacbda497108dd2d23c1c83dfbc1e4f5cdb468805', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5b39ec5146317c0c45d39aadb06b8dfc2cb15df', 'value': 572.75525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1f0c936949a20d2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:22:55.000Z'}}, {'blockNum': '0xaadf44', 'uniqueId': '0x779a82ba3e71c6fcccb4879c9eb649e81b5cba916db21503fddd2b17f45d3bae:log:206', 'hash': '0x779a82ba3e71c6fcccb4879c9eb649e81b5cba916db21503fddd2b17f45d3bae', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0xe95e8ce71b549d1e2c576b54ea9a099510e4afb1', 'value': 3339.030394106752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb5025af47fb57e2d56', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:24:04.000Z'}}, {'blockNum': '0xaae0ac', 'uniqueId': '0x2bd7320082436f72421d061d0ba2037da8cb5a0bfd9b89104918cef164cd692f:log:199', 'hash': '0x2bd7320082436f72421d061d0ba2037da8cb5a0bfd9b89104918cef164cd692f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf5b9707e7c487853d8ba152665ea49a9e0c6c01d', 'value': 9968.962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021c6b23a92cf7ad0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T17:45:35.000Z'}}, {'blockNum': '0xaae0b1', 'uniqueId': '0x8050f09442fb38c06704e7bf9bdcf9652b05141426db16c797958cecad0ec079:log:44', 'hash': '0x8050f09442fb38c06704e7bf9bdcf9652b05141426db16c797958cecad0ec079', 'from': '0xf5b9707e7c487853d8ba152665ea49a9e0c6c01d', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 9968.962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021c6b23a92cf7ad0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T17:46:30.000Z'}}, {'blockNum': '0xaae2d9', 'uniqueId': '0x4826d1a8cb0783368930dc2802f12de8931068fc2ed3a0646bccc7823f9e3e7b:log:145', 'hash': '0x4826d1a8cb0783368930dc2802f12de8931068fc2ed3a0646bccc7823f9e3e7b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 7167.493591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01848cf4860183f07000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T19:45:17.000Z'}}, {'blockNum': '0xaae3dd', 'uniqueId': '0x3cb71f88e6072ff097ca2ece7cc13d40a7a00db1e7c4e16268e16366d0de07d9:log:43', 'hash': '0x3cb71f88e6072ff097ca2ece7cc13d40a7a00db1e7c4e16268e16366d0de07d9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 7337.60272597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x018dc5b192fbfbc4b400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T20:41:18.000Z'}}, {'blockNum': '0xaae3e0', 'uniqueId': '0xeccf03f1e17ffedc70f691b541b49d19c25f9e1acc1b77f028af3c9b873c1dff:log:10', 'hash': '0xeccf03f1e17ffedc70f691b541b49d19c25f9e1acc1b77f028af3c9b873c1dff', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 7337.60272597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x018dc5b192fbfbc4b400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T20:42:06.000Z'}}, {'blockNum': '0xaae510', 'uniqueId': '0x4dbda37ee872f0dd76ceb0cf63219350c5c7fe43f69d8b71ba7830e4da0ae54e:log:261', 'hash': '0x4dbda37ee872f0dd76ceb0cf63219350c5c7fe43f69d8b71ba7830e4da0ae54e', 'from': '0x03737b6a1fb7f5e4ceb19e3023a7f06ea75220b7', 'to': '0x8b08db00c4899b68f65fe0bd54759e5fa636727b', 'value': 698.39161807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x25dc217465b4a15c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T21:46:28.000Z'}}]}}
Number of returned transfers:  15
Answer is complete
 
symbol             NXS
group              CPS
date        2020-11-06
hour             20:00
exchange       binance
Name: 431, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-11-06 20:00:00 2020-11-06 08:00:00 2020-11-07 08:00:00
Unix timestamps:  1604646000.0 1604732400.0
Hex Block Numbers:  0xaaeeef 0xab0872
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           SNGLS
group              FCS
date        2018-03-26
hour             18:03
exchange       binance
Name: 439, dtype: object
HERE
 Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps:  2018-03-26 18:03:00 2018-03-26 06:03:00 2018-03-27 06:03:00
Unix timestamps:  1522036980.0 1522123380.0
Hex Block Numbers:  0x51394a 0x5150a4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x513aab', 'uniqueId': '0xc1351ae11104b2b0c0133a3a9a13189f72cdb3f4b8386b53d145db8943f6d111:log:68', 'hash': '0xc1351ae11104b2b0c0133a3a9a13189f72cdb3f4b8386b53d145db8943f6d111', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 39960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9c18', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:23:49.000Z'}}, {'blockNum': '0x513ab5', 'uniqueId': '0x471c07483d3712da5d53dfdd6b63c8fd39b597c580fd6ac2a2c9b688a0f21d8c:log:1', 'hash': '0x471c07483d3712da5d53dfdd6b63c8fd39b597c580fd6ac2a2c9b688a0f21d8c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x04af601a41fee16130b1016ae02794cee75bcbcd', 'value': 46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:26:06.000Z'}}, {'blockNum': '0x513ac3', 'uniqueId': '0x7aba628d843220c3680ad7273bd6d77f32442754eeb9c463c77438ee51d68a5c:log:6', 'hash': '0x7aba628d843220c3680ad7273bd6d77f32442754eeb9c463c77438ee51d68a5c', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x9c18', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:29:06.000Z'}}, {'blockNum': '0x513ac5', 'uniqueId': '0xce92d936fb35b3486baaf21128235d0cea486d3fa2e6865b575296359ddac52c:log:3', 'hash': '0xce92d936fb35b3486baaf21128235d0cea486d3fa2e6865b575296359ddac52c', 'from': '0xf4a14010acbe82428516415a117b157b59cc6bb3', 'to': '0x98aa60f08f8f2f9c30fddb73499f44a11f37e0dc', 'value': 16836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x41c4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:29:25.000Z'}}, {'blockNum': '0x513ad1', 'uniqueId': '0x8756d247df01cfbb6e78dd4bb76c9792783c35c7fbb5fc7cb297c42551610338:log:2', 'hash': '0x8756d247df01cfbb6e78dd4bb76c9792783c35c7fbb5fc7cb297c42551610338', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x04af601a41fee16130b1016ae02794cee75bcbcd', 'value': 8012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f4c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:32:13.000Z'}}, {'blockNum': '0x513af7', 'uniqueId': '0xd92130798168df681fd4df4b6ed1d6280be495ed397641045933667a157b7c82:log:34', 'hash': '0xd92130798168df681fd4df4b6ed1d6280be495ed397641045933667a157b7c82', 'from': '0x98aa60f08f8f2f9c30fddb73499f44a11f37e0dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x41c4', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:39:12.000Z'}}, {'blockNum': '0x513b24', 'uniqueId': '0xd0040abf317724356191e6ccd390dc7f82f7626e8efcea854c45a9a0a5fe883a:log:26', 'hash': '0xd0040abf317724356191e6ccd390dc7f82f7626e8efcea854c45a9a0a5fe883a', 'from': '0x04af601a41fee16130b1016ae02794cee75bcbcd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1f7a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T05:49:06.000Z'}}, {'blockNum': '0x513c5f', 'uniqueId': '0x79c83e0bd35eaf14d07588297e29be9b91764f64f1ee61e5629bcd9ee37224ad:log:3', 'hash': '0x79c83e0bd35eaf14d07588297e29be9b91764f64f1ee61e5629bcd9ee37224ad', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'value': 13328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3410', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T07:08:14.000Z'}}, {'blockNum': '0x513c8d', 'uniqueId': '0x215b79e6af880c4ba802e200d12060a15a5031579c94ccd92810084ee4c3e4a7:log:28', 'hash': '0x215b79e6af880c4ba802e200d12060a15a5031579c94ccd92810084ee4c3e4a7', 'from': '0xc18118a2976a9e362a0f8d15ca10761593242a85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x3410', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T07:19:38.000Z'}}, {'blockNum': '0x513cad', 'uniqueId': '0xc1b26e1bac4531215824efb4d0d3ee52408e42be8b1b9d3ce6d703c6cfda5af7:log:13', 'hash': '0xc1b26e1bac4531215824efb4d0d3ee52408e42be8b1b9d3ce6d703c6cfda5af7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xcb49c1ead14734eea096fdff618a1665d1ec25e0', 'value': 9063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2367', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T07:27:18.000Z'}}, {'blockNum': '0x513d26', 'uniqueId': '0x51c295b857ebc2ba7725941ceedd5a2724c4844ce852ed4beb60856a098e577a:log:1', 'hash': '0x51c295b857ebc2ba7725941ceedd5a2724c4844ce852ed4beb60856a098e577a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc1538905ac271cb2eaf711fd89570d57c9e85fad', 'value': 2802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0af2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T07:55:24.000Z'}}, {'blockNum': '0x513e7f', 'uniqueId': '0x0b4e105167dc998e0afd56954ca61be84e4df680378ebb72fedc9cb48edde21f:log:49', 'hash': '0x0b4e105167dc998e0afd56954ca61be84e4df680378ebb72fedc9cb48edde21f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'value': 14091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x370b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T09:22:42.000Z'}}, {'blockNum': '0x513e9d', 'uniqueId': '0xf700c472eb5812bb5c2b73b48a3995e82aeac30d94c23d83f49baaf065231a86:log:40', 'hash': '0xf700c472eb5812bb5c2b73b48a3995e82aeac30d94c23d83f49baaf065231a86', 'from': '0x0b2402d1b8ac3f16870eca8a7463cba693f9340b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x370b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T09:29:02.000Z'}}, {'blockNum': '0x513f4c', 'uniqueId': '0xd371cefbc02d31d586f973ebda297493c834b59e527509c590e42d209f2d6d4d:log:20', 'hash': '0xd371cefbc02d31d586f973ebda297493c834b59e527509c590e42d209f2d6d4d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24323539d064ef3d61c23a7ed092f03666af7ad3', 'value': 5639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1607', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T10:06:44.000Z'}}, {'blockNum': '0x513f7a', 'uniqueId': '0x1d15ff9c3fba0623d854ae3f861476047593deca029cd33f0c4e33de2c8268e1:log:37', 'hash': '0x1d15ff9c3fba0623d854ae3f861476047593deca029cd33f0c4e33de2c8268e1', 'from': '0x24323539d064ef3d61c23a7ed092f03666af7ad3', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 5639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1607', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T10:20:12.000Z'}}, {'blockNum': '0x514043', 'uniqueId': '0x7ebddea38dffb4bd8c1c87de70e0eec00b569080fa953c90bfc89714e5c2353a:log:19', 'hash': '0x7ebddea38dffb4bd8c1c87de70e0eec00b569080fa953c90bfc89714e5c2353a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 5339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x14db', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T11:07:46.000Z'}}, {'blockNum': '0x51404b', 'uniqueId': '0x872a420eb4b2160c923fb0ae644a644a76cf1506471246ff8e5451995d372108:log:11', 'hash': '0x872a420eb4b2160c923fb0ae644a644a76cf1506471246ff8e5451995d372108', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0218df84edc8aba574321636b0f7bdd5bec6c937', 'value': 216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xd8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T11:09:36.000Z'}}, {'blockNum': '0x51406f', 'uniqueId': '0x708d73fc09ff21bc36d25e8b85095d196854f4aa193f083fbe7702f227c090ae:log:32', 'hash': '0x708d73fc09ff21bc36d25e8b85095d196854f4aa193f083fbe7702f227c090ae', 'from': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x14db', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T11:19:59.000Z'}}, {'blockNum': '0x514101', 'uniqueId': '0x6221f870fcb240454bf8e040b0a7a49e556993800b1d7cea8e127ee214e69657:log:3', 'hash': '0x6221f870fcb240454bf8e040b0a7a49e556993800b1d7cea8e127ee214e69657', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6e378d40913326a9e5be781f7548f14ac4a348ea', 'value': 81227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x013d4b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T11:52:59.000Z'}}, {'blockNum': '0x514260', 'uniqueId': '0x958528b2a59ad15768d26bcfcf6d5f348e095ec425c0129b5205914a48e42a77:log:20', 'hash': '0x958528b2a59ad15768d26bcfcf6d5f348e095ec425c0129b5205914a48e42a77', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x732ef496fc9dc77d6f6439947205cc1c9f484e3a', 'value': 49514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc16a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T13:19:04.000Z'}}, {'blockNum': '0x51428e', 'uniqueId': '0xad0aa157628e31ecceb2e5b306e0c6fad5c9f4449c2969d4b7007e462da733c5:log:25', 'hash': '0xad0aa157628e31ecceb2e5b306e0c6fad5c9f4449c2969d4b7007e462da733c5', 'from': '0x732ef496fc9dc77d6f6439947205cc1c9f484e3a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xc16a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T13:29:04.000Z'}}, {'blockNum': '0x51441e', 'uniqueId': '0xcbd0e09a164ef53ba9a185503980cd7d2bc78c46647a027418228083c840811a:log:2', 'hash': '0xcbd0e09a164ef53ba9a185503980cd7d2bc78c46647a027418228083c840811a', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xd2c2862109d07bf0f875087cc9b4eb047da59ec9', 'value': 190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xbe', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:00:05.000Z'}}, {'blockNum': '0x51443a', 'uniqueId': '0x4847844c648ac32476520c850ab9e9f938cd547cbac0ec74959e1a11d3d0eb16:log:14', 'hash': '0x4847844c648ac32476520c850ab9e9f938cd547cbac0ec74959e1a11d3d0eb16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9069391ba93f844e2d3fc42888c1581b965b851b', 'value': 56957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xde7d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:07:42.000Z'}}, {'blockNum': '0x514446', 'uniqueId': '0x6199f7609f33b4947ff2ff0857fc7749500007099d006cb6b82e497ef61a81c8:log:0', 'hash': '0x6199f7609f33b4947ff2ff0857fc7749500007099d006cb6b82e497ef61a81c8', 'from': '0x9069391ba93f844e2d3fc42888c1581b965b851b', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 56957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xde7d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:10:49.000Z'}}, {'blockNum': '0x514458', 'uniqueId': '0x76ca15aa572ac429df357c0073170c7e5455c0dde4984411070e2cfb953dac1e:log:13', 'hash': '0x76ca15aa572ac429df357c0073170c7e5455c0dde4984411070e2cfb953dac1e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2291aa64b071b93cf8d81d86ad0b35e6739398f3', 'value': 18299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x477b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:17:06.000Z'}}, {'blockNum': '0x514461', 'uniqueId': '0x134930656e139aff97e597e54770521d9464bdb1168154d2beba0d2f8e8ceae3:log:1', 'hash': '0x134930656e139aff97e597e54770521d9464bdb1168154d2beba0d2f8e8ceae3', 'from': '0x2291aa64b071b93cf8d81d86ad0b35e6739398f3', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 18299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x477b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:19:53.000Z'}}, {'blockNum': '0x514464', 'uniqueId': '0xb3a5ad1ccd9beb48d0db3ff011e902627b98e6eadbc2590ee66baa50246f35d3:log:16', 'hash': '0xb3a5ad1ccd9beb48d0db3ff011e902627b98e6eadbc2590ee66baa50246f35d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x25ddb28a9bd7eac3a3817e36b04746975f549ad1', 'value': 23108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x5a44', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:21:00.000Z'}}, {'blockNum': '0x51446a', 'uniqueId': '0xb0a5a5820d4862b6a2a97b5798e076312f24e5e0d627a9d1d6ef6c8fa4402ebb:log:0', 'hash': '0xb0a5a5820d4862b6a2a97b5798e076312f24e5e0d627a9d1d6ef6c8fa4402ebb', 'from': '0x25ddb28a9bd7eac3a3817e36b04746975f549ad1', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 23108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x5a44', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:22:41.000Z'}}, {'blockNum': '0x5144ef', 'uniqueId': '0x21d4dcc7f667c88a52d9897b7e3777d40919340aa7b61a64682a0d2d18cc63e7:log:4', 'hash': '0x21d4dcc7f667c88a52d9897b7e3777d40919340aa7b61a64682a0d2d18cc63e7', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x6243cdbd7bd96613a209ad15264eae1c4602f5df', 'value': 23105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x5a41', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:55:52.000Z'}}, {'blockNum': '0x5144fa', 'uniqueId': '0x5ded0886ed42a725af53fedecdb676058b4d6298c738e5a40e129316c9f3a2bf:log:12', 'hash': '0x5ded0886ed42a725af53fedecdb676058b4d6298c738e5a40e129316c9f3a2bf', 'from': '0x6243cdbd7bd96613a209ad15264eae1c4602f5df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x5a41', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T15:59:09.000Z'}}, {'blockNum': '0x514503', 'uniqueId': '0xba234f770bf0b71c4b4603c89cfe4bdb35428f86fcbc92acea951189ea76927c:log:22', 'hash': '0xba234f770bf0b71c4b4603c89cfe4bdb35428f86fcbc92acea951189ea76927c', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 17191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4327', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:01:26.000Z'}}, {'blockNum': '0x514527', 'uniqueId': '0x969bd6b1b329551c0e3d1c4f5f70e3dd16c9b7711cc07a75842ff2d1ae5fd9fa:log:43', 'hash': '0x969bd6b1b329551c0e3d1c4f5f70e3dd16c9b7711cc07a75842ff2d1ae5fd9fa', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4327', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:09:26.000Z'}}, {'blockNum': '0x514563', 'uniqueId': '0xbe8dc8ee1c6b7ad8721892ca15826ebb3d011bdd8a40e93fc39eb25221b4a3d6:log:24', 'hash': '0xbe8dc8ee1c6b7ad8721892ca15826ebb3d011bdd8a40e93fc39eb25221b4a3d6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9069391ba93f844e2d3fc42888c1581b965b851b', 'value': 44957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xaf9d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:24:04.000Z'}}, {'blockNum': '0x51456e', 'uniqueId': '0xe04edcb3e9af0695fb6154c1f6f1a8c174fe0faf4875f0ddfd40b03edc5dec2d:log:4', 'hash': '0xe04edcb3e9af0695fb6154c1f6f1a8c174fe0faf4875f0ddfd40b03edc5dec2d', 'from': '0x9069391ba93f844e2d3fc42888c1581b965b851b', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 44957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xaf9d', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:27:13.000Z'}}, {'blockNum': '0x51456f', 'uniqueId': '0x2d0d75cb2ae6c9df3777f8291233e3cf148e72656fad84b483ae691d7a30e06b:log:133', 'hash': '0x2d0d75cb2ae6c9df3777f8291233e3cf148e72656fad84b483ae691d7a30e06b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2291aa64b071b93cf8d81d86ad0b35e6739398f3', 'value': 16971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x424b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:27:44.000Z'}}, {'blockNum': '0x514574', 'uniqueId': '0x0a33a54feaa16422dc3219fdaccc56555972ba620a57a02112bbb6f00e69c160:log:7', 'hash': '0x0a33a54feaa16422dc3219fdaccc56555972ba620a57a02112bbb6f00e69c160', 'from': '0x2291aa64b071b93cf8d81d86ad0b35e6739398f3', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 16971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x424b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:30:15.000Z'}}, {'blockNum': '0x514574', 'uniqueId': '0x7e0711b29f923e20aaa9ebad04e09a853b548b9bb6d6ef2de89a369e47801aa8:log:16', 'hash': '0x7e0711b29f923e20aaa9ebad04e09a853b548b9bb6d6ef2de89a369e47801aa8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe1a91789e241d1e33f0693c978222897ce3977b9', 'value': 33448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x82a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:30:15.000Z'}}, {'blockNum': '0x51457d', 'uniqueId': '0x73e6d94d354f7e970445e378043a77a90233e3a1bf6bbbe641e2622fd05b64b3:log:4', 'hash': '0x73e6d94d354f7e970445e378043a77a90233e3a1bf6bbbe641e2622fd05b64b3', 'from': '0xe1a91789e241d1e33f0693c978222897ce3977b9', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 33448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x82a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:32:45.000Z'}}, {'blockNum': '0x5145a3', 'uniqueId': '0x27d31b946cb8facfed893d46eb3e96977dcd58a5ae945d67975eb5650897b367:log:0', 'hash': '0x27d31b946cb8facfed893d46eb3e96977dcd58a5ae945d67975eb5650897b367', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'value': 16969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4249', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:41:59.000Z'}}, {'blockNum': '0x5145c6', 'uniqueId': '0x5a5db34bf4d0df264918363eeaaada44d8cc5ddde40aa30674a908f410eeb072:log:75', 'hash': '0x5a5db34bf4d0df264918363eeaaada44d8cc5ddde40aa30674a908f410eeb072', 'from': '0x3fc18c91c44a370f184aab40d7c2d1569e996150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4249', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T16:49:08.000Z'}}, {'blockNum': '0x514627', 'uniqueId': '0x18e05dd292269abe78b541ed4401804bfda11918a934eb911b8176dc7da73ddb:log:51', 'hash': '0x18e05dd292269abe78b541ed4401804bfda11918a934eb911b8176dc7da73ddb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x453a7bf516c9a02cacc5e934fbe435ca3170188d', 'value': 232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xe8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:14:04.000Z'}}, {'blockNum': '0x51469e', 'uniqueId': '0x124745c62b1e2d908f94fda492d2d8bb6a09d7b22f2c6f592e81921de53f6780:log:0', 'hash': '0x124745c62b1e2d908f94fda492d2d8bb6a09d7b22f2c6f592e81921de53f6780', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd51a175a461d494476415d54fe244b03d98e8f8e', 'value': 16, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x10', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:38:08.000Z'}}, {'blockNum': '0x5146a0', 'uniqueId': '0xc2855f26929b33788f3a5f4a00650320d16a5b8bc98a6824b0d83d301ea9e99e:log:6', 'hash': '0xc2855f26929b33788f3a5f4a00650320d16a5b8bc98a6824b0d83d301ea9e99e', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7033fdb2b2ec741b21397dfc533c0f66b773072c', 'value': 26954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x694a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:38:38.000Z'}}, {'blockNum': '0x5146d1', 'uniqueId': '0xd353a7f2e8f3d5a7cbb4e0d67126adca2cb226f97897bb01c77716adee38a865:log:7', 'hash': '0xd353a7f2e8f3d5a7cbb4e0d67126adca2cb226f97897bb01c77716adee38a865', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc8d5bd5814abd850fb84a2f2c44171ff11f458ed', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x64', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:50:27.000Z'}}, {'blockNum': '0x5146d1', 'uniqueId': '0xa015cea18c35dc63e5902e87a8ddf3e36c6a6f693f0abbe08cf3161a01739329:log:8', 'hash': '0xa015cea18c35dc63e5902e87a8ddf3e36c6a6f693f0abbe08cf3161a01739329', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd51a175a461d494476415d54fe244b03d98e8f8e', 'value': 6776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1a78', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:50:27.000Z'}}, {'blockNum': '0x5146f6', 'uniqueId': '0x03e03f719a409a5d9c324bedc5d7e13dbea02f229366ea4bfbc03184d552ccf4:log:35', 'hash': '0x03e03f719a409a5d9c324bedc5d7e13dbea02f229366ea4bfbc03184d552ccf4', 'from': '0xd51a175a461d494476415d54fe244b03d98e8f8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1a88', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T17:59:55.000Z'}}, {'blockNum': '0x5146f7', 'uniqueId': '0x4c9bf2f5d8010d7659094cab9042e4897b0eadb6beb7bd1a44b5756ea0b093d5:log:24', 'hash': '0x4c9bf2f5d8010d7659094cab9042e4897b0eadb6beb7bd1a44b5756ea0b093d5', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fcd', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:00:04.000Z'}}, {'blockNum': '0x5146ff', 'uniqueId': '0xeae89a8f65c713ab073fc970d22e6897208cd054244b401e87673eef144539e7:log:0', 'hash': '0xeae89a8f65c713ab073fc970d22e6897208cd054244b401e87673eef144539e7', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xdc1b614270a72b6f858cb2c10e0e4e7e8f8b4f2b', 'value': 26022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x65a6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:01:44.000Z'}}, {'blockNum': '0x514709', 'uniqueId': '0x27ffebdb45b6fabd6eac7b8e8aa5eb7a13cda30ef7c6bd0718c414119f346cde:log:87', 'hash': '0x27ffebdb45b6fabd6eac7b8e8aa5eb7a13cda30ef7c6bd0718c414119f346cde', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1333', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:04:56.000Z'}}, {'blockNum': '0x514718', 'uniqueId': '0xf9be527d96e5cea92bbcd2ac28650a0028a6763dde6e4c9a4cc910126a0b6d53:log:28', 'hash': '0xf9be527d96e5cea92bbcd2ac28650a0028a6763dde6e4c9a4cc910126a0b6d53', 'from': '0xdc1b614270a72b6f858cb2c10e0e4e7e8f8b4f2b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x65a6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:09:03.000Z'}}, {'blockNum': '0x514718', 'uniqueId': '0x0216b3923bd1f1f5e181c1008744a1ada7bdf3452dccf8cf915c518bcd0955db:log:31', 'hash': '0x0216b3923bd1f1f5e181c1008744a1ada7bdf3452dccf8cf915c518bcd0955db', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2300', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:09:03.000Z'}}, {'blockNum': '0x51479b', 'uniqueId': '0xe7c1494ecb461cd48398a2b429c0cd656b8fccfe9dae338041070656cf91e8e5:log:45', 'hash': '0xe7c1494ecb461cd48398a2b429c0cd656b8fccfe9dae338041070656cf91e8e5', 'from': '0x7838c6463ab5d131317e13d6c8007dad6b3763c8', 'to': '0x34b77b420ffc7979b3e67b01f43cdcba712425d7', 'value': 278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0116', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:42:13.000Z'}}, {'blockNum': '0x5147c7', 'uniqueId': '0x4e5f3cd3b07541b79a0ed6297eb9b3d6d49efe0fd58c1bd76a20beaae22079bb:log:18', 'hash': '0x4e5f3cd3b07541b79a0ed6297eb9b3d6d49efe0fd58c1bd76a20beaae22079bb', 'from': '0xc180714cab9b65dbf1e6baaf7471b39679fdca14', 'to': '0xec5f2854cd6272f821fa3024a40bb0f479e483e7', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:52:25.000Z'}}, {'blockNum': '0x5147ea', 'uniqueId': '0x64a2ecc5c71f9c3ab603b73745ddea135bb70eaefa57ddf2f5dd75a24cf95d4e:log:3', 'hash': '0x64a2ecc5c71f9c3ab603b73745ddea135bb70eaefa57ddf2f5dd75a24cf95d4e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x41473de0db4efa74e85842aec8f9e530b2d18564', 'value': 12706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x31a2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:58:47.000Z'}}, {'blockNum': '0x5147eb', 'uniqueId': '0x09b370b5bbb141dab0ec51c3e1cc099aefd5602f78d1cb78aea752e02989a302:log:41', 'hash': '0x09b370b5bbb141dab0ec51c3e1cc099aefd5602f78d1cb78aea752e02989a302', 'from': '0xec5f2854cd6272f821fa3024a40bb0f479e483e7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T18:59:19.000Z'}}, {'blockNum': '0x514847', 'uniqueId': '0xa3578505148004099b2273875c097e4105bb9e07bcc3aa750b3ff4a53f03d748:log:14', 'hash': '0xa3578505148004099b2273875c097e4105bb9e07bcc3aa750b3ff4a53f03d748', 'from': '0xc180714cab9b65dbf1e6baaf7471b39679fdca14', 'to': '0xec5f2854cd6272f821fa3024a40bb0f479e483e7', 'value': 24771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x60c3', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T19:22:08.000Z'}}, {'blockNum': '0x514862', 'uniqueId': '0xbab42899bf998707e374747cf7f1600c2606208cc1f707fb5db2701e3a3bd1b8:log:43', 'hash': '0xbab42899bf998707e374747cf7f1600c2606208cc1f707fb5db2701e3a3bd1b8', 'from': '0xec5f2854cd6272f821fa3024a40bb0f479e483e7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x60c3', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T19:29:06.000Z'}}, {'blockNum': '0x51488b', 'uniqueId': '0xf13c51b460dc85e17cf0d7c7302666c4ae92f2b056c7c866053776924c5122b2:log:23', 'hash': '0xf13c51b460dc85e17cf0d7c7302666c4ae92f2b056c7c866053776924c5122b2', 'from': '0xc5054fb28cb3ba351c6ad702bb0d014b81adfc58', 'to': '0xbd1b4257ea720d6b6ae8bf036eb829394b832d69', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x96', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T19:38:27.000Z'}}, {'blockNum': '0x51495a', 'uniqueId': '0x508c6dbeefdc26eddfced2009cc91be0405eaa95cc24318adc99a2efdbcb2f9b:log:38', 'hash': '0x508c6dbeefdc26eddfced2009cc91be0405eaa95cc24318adc99a2efdbcb2f9b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x994e18be43ac487dfc33fc5eed8d6b278bc239c1', 'value': 546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0222', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T20:29:23.000Z'}}, {'blockNum': '0x514a4c', 'uniqueId': '0x7c0ca6dbe5769ae816d9cff353765e9acaa40833bb756b697594c819330cc229:log:1', 'hash': '0x7c0ca6dbe5769ae816d9cff353765e9acaa40833bb756b697594c819330cc229', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbe5d26c75fdaa25694bdc532f071d6b2d58ed15f', 'value': 96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T21:28:03.000Z'}}, {'blockNum': '0x514ab9', 'uniqueId': '0x751aa8f35ee04f423dd5251a6f443e841ed1a238d9da038f18877a6aabad0f32:log:61', 'hash': '0x751aa8f35ee04f423dd5251a6f443e841ed1a238d9da038f18877a6aabad0f32', 'from': '0x0d347fe2942e4de0ef789d970660b4d982b8153f', 'to': '0x149f1a3d22715754baabba4b8ef9c7cddc2ca973', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4e20', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T21:57:15.000Z'}}, {'blockNum': '0x514af0', 'uniqueId': '0x6c8aacae2df9b485d95e719e1835df0a2748e79b49fd5f280dc262450512d59b:log:11', 'hash': '0x6c8aacae2df9b485d95e719e1835df0a2748e79b49fd5f280dc262450512d59b', 'from': '0x149f1a3d22715754baabba4b8ef9c7cddc2ca973', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x61a8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T22:09:03.000Z'}}, {'blockNum': '0x514b0d', 'uniqueId': '0xbc0475c0434bcd5b9675a3d9220f12b64d23f9a34b563dc6bb80568a8722a430:log:60', 'hash': '0xbc0475c0434bcd5b9675a3d9220f12b64d23f9a34b563dc6bb80568a8722a430', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe1ea8d35a121bc1da06054c72fa93ec0337cef22', 'value': 1046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0416', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T22:18:01.000Z'}}, {'blockNum': '0x514b0d', 'uniqueId': '0xc61b58b672f97ed138d1e955939739df7ed3bb835dcaaeec93811954279fbc84:log:63', 'hash': '0xc61b58b672f97ed138d1e955939739df7ed3bb835dcaaeec93811954279fbc84', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9198b31696ae620fb766977581c9c829b03921da', 'value': 8583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2187', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-26T22:18:01.000Z'}}, {'blockNum': '0x514d62', 'uniqueId': '0xaad050340d28ba60226a04473a73bcdf5b3ff7d021bbf64e3695bcd938510a0e:log:1', 'hash': '0xaad050340d28ba60226a04473a73bcdf5b3ff7d021bbf64e3695bcd938510a0e', 'from': '0x84980120fdfbef03b0b47e6b41671aadb263e80f', 'to': '0x1ef4fd208e0d38b927d0e2f786fbea298ca442f7', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01c2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T00:38:10.000Z'}}, {'blockNum': '0x514da6', 'uniqueId': '0x3430ca4cfc36d6d08ac030e3f6012e08183aafb17e0df775eb1bbd296eeb1e69:log:6', 'hash': '0x3430ca4cfc36d6d08ac030e3f6012e08183aafb17e0df775eb1bbd296eeb1e69', 'from': '0xfb3cdee1cbbf3526476b1d5958ff451e40cba9a7', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 12347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x303b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T00:57:00.000Z'}}, {'blockNum': '0x514db0', 'uniqueId': '0x4146a9d7ea47dbb5f4f56b6ce02519b17706142a6fb924c36895724e5f34a764:log:3', 'hash': '0x4146a9d7ea47dbb5f4f56b6ce02519b17706142a6fb924c36895724e5f34a764', 'from': '0x1ef4fd208e0d38b927d0e2f786fbea298ca442f7', 'to': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01c2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T00:58:57.000Z'}}, {'blockNum': '0x514dd0', 'uniqueId': '0x88dda8ff32a8487890b4ddd8a67fc0a61c2d09590e7eb1e58452e67952561279:log:10', 'hash': '0x88dda8ff32a8487890b4ddd8a67fc0a61c2d09590e7eb1e58452e67952561279', 'from': '0x930aa9a843266bdb02847168d571e7913907dd84', 'to': '0xbd1b4257ea720d6b6ae8bf036eb829394b832d69', 'value': 191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xbf', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T01:07:06.000Z'}}, {'blockNum': '0x514e65', 'uniqueId': '0x5f46f59d0544de332eca987de8bc98ce6482ef4a8b4eeb0e4dca3c3e7cb9e6d7:log:2', 'hash': '0x5f46f59d0544de332eca987de8bc98ce6482ef4a8b4eeb0e4dca3c3e7cb9e6d7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x086b284824cfbad8b8ddb736e03b453a50ed9bfe', 'value': 1189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x04a5', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T01:46:16.000Z'}}, {'blockNum': '0x514ee9', 'uniqueId': '0x63979d4b273ce061fbfa0f3fb0a5b847c768a2994f37423cd3729a78c046c3f2:log:10', 'hash': '0x63979d4b273ce061fbfa0f3fb0a5b847c768a2994f37423cd3729a78c046c3f2', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xd1a0bdc4a12480d66da6e2e5581f9588988298e6', 'value': 133000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x020788', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T02:16:45.000Z'}}, {'blockNum': '0x514ef1', 'uniqueId': '0x5ca6122367e6181804da09a254a36a43dc16761815788981d2ae1afee3d48b43:log:15', 'hash': '0x5ca6122367e6181804da09a254a36a43dc16761815788981d2ae1afee3d48b43', 'from': '0xd1a0bdc4a12480d66da6e2e5581f9588988298e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 133000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x020788', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T02:19:09.000Z'}}, {'blockNum': '0x515047', 'uniqueId': '0x28d5f49283dea5de8dc4151dab7b95463f9f6ec38aa6da4cd478688ff390ca4b:log:3', 'hash': '0x28d5f49283dea5de8dc4151dab7b95463f9f6ec38aa6da4cd478688ff390ca4b', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x084f76593ec6ce077108b90297512f30c7a6f831', 'value': 4074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fea', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T03:39:32.000Z'}}, {'blockNum': '0x515071', 'uniqueId': '0xf81461c87058bf7cf910d7b0672a21f832b4f8bdd1981f11fddebaa6e0715333:log:36', 'hash': '0xf81461c87058bf7cf910d7b0672a21f832b4f8bdd1981f11fddebaa6e0715333', 'from': '0x084f76593ec6ce077108b90297512f30c7a6f831', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0fea', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-03-27T03:49:26.000Z'}}]}}
Number of returned transfers:  73
Answer is complete
 
symbol             MTH
group              FCS
date        2018-03-30
hour             18:00
exchange       binance
Name: 441, dtype: object
HERE
 Symbol: MTH, Contract: 0xaf4dce16da2877f8c9e00544c93b62ac40631f16
Datetime timestamps:  2018-03-30 18:00:00 2018-03-30 06:00:00 2018-03-31 06:00:00
Unix timestamps:  1522382400.0 1522468800.0
Hex Block Numbers:  0x519613 0x51ace3
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x51980c', 'uniqueId': '0x769cc9d52e482a136ec78a30ce37c1032aab38144fbb91e24be5c455275a45c3:log:0', 'hash': '0x769cc9d52e482a136ec78a30ce37c1032aab38144fbb91e24be5c455275a45c3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc332fda4ecbb165aaad56520e8fe1393f422c84a', 'value': 951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05ab1c60', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T06:10:47.000Z'}}, {'blockNum': '0x519a52', 'uniqueId': '0x7597232a216f5125dcf6afe4deaa495a2fd6964f81207747f8a19064b9a1068d:log:4', 'hash': '0x7597232a216f5125dcf6afe4deaa495a2fd6964f81207747f8a19064b9a1068d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf223c63277c24d611d6c624dc009b8c9ee0e8f37', 'value': 13500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x50775d80', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T08:35:08.000Z'}}, {'blockNum': '0x519a88', 'uniqueId': '0x97373c0612ec1a369853c8f927efdbc612b15ab994566c73df94fb39d6a78374:log:17', 'hash': '0x97373c0612ec1a369853c8f927efdbc612b15ab994566c73df94fb39d6a78374', 'from': '0xf223c63277c24d611d6c624dc009b8c9ee0e8f37', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x50775d80', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T08:50:23.000Z'}}, {'blockNum': '0x519e1d', 'uniqueId': '0xea17ac9832c093b92cb902fd5c482e76b303cf32b86988cfff0de8d1bbb25fdf:log:55', 'hash': '0xea17ac9832c093b92cb902fd5c482e76b303cf32b86988cfff0de8d1bbb25fdf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x118d4031a818306fb053afb38490a497f06ce7c5', 'value': 476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x02d65180', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T12:32:33.000Z'}}, {'blockNum': '0x519e9c', 'uniqueId': '0xe6e5a275e89e73479e7df9e7ffa2e68aee3e835d70e1aa5bf686c76a1070950c:log:0', 'hash': '0xe6e5a275e89e73479e7df9e7ffa2e68aee3e835d70e1aa5bf686c76a1070950c', 'from': '0x59d4d5933d3c546b659443176e3349657c05dbe6', 'to': '0x938ad3ffbb08a7fc46f8e86a100f0508acd551f8', 'value': 26626.8159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x9eb54bf6', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T13:02:30.000Z'}}, {'blockNum': '0x519ecc', 'uniqueId': '0x89d40d8c889ff1780d2fd98d4a7bd001e671c5c859712ad344c3917df2048498:log:48', 'hash': '0x89d40d8c889ff1780d2fd98d4a7bd001e671c5c859712ad344c3917df2048498', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8227b780493a86c35a1ca35c5bdc83d64e51deaa', 'value': 1741.233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0a60e924', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T13:13:20.000Z'}}, {'blockNum': '0x519f24', 'uniqueId': '0x8a70c7a556545a5d623792d59815fd24e869c2db4b563ec45751c3c3e0869834:log:2', 'hash': '0x8a70c7a556545a5d623792d59815fd24e869c2db4b563ec45751c3c3e0869834', 'from': '0x8227b780493a86c35a1ca35c5bdc83d64e51deaa', 'to': '0x4b01721f0244e7c5b5f63c20942850e447f5a5ee', 'value': 1741.233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0a60e924', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T13:36:10.000Z'}}, {'blockNum': '0x519f67', 'uniqueId': '0x95efde022ead5868698aa9ef422756381903ddc0ec85a4ef45fc13624378bc75:log:14', 'hash': '0x95efde022ead5868698aa9ef422756381903ddc0ec85a4ef45fc13624378bc75', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb76861514af690d3a75fcf4318d1c699f94756a8', 'value': 1134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x06c258c0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T13:52:46.000Z'}}, {'blockNum': '0x51a022', 'uniqueId': '0x829220251832cf09d3f0733b6460f4a278c721c6bec38343b4e346793872452f:log:31', 'hash': '0x829220251832cf09d3f0733b6460f4a278c721c6bec38343b4e346793872452f', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x53c809cd373968cf1337d24179262934ab1050e1', 'value': 397.7551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x025eed16', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T14:41:14.000Z'}}, {'blockNum': '0x51a02c', 'uniqueId': '0x3dbddcd1f6454d87eb1a3eded425397bdd09c714ab8bf9aedea18829d398835d:log:16', 'hash': '0x3dbddcd1f6454d87eb1a3eded425397bdd09c714ab8bf9aedea18829d398835d', 'from': '0x179cd40b311b52a6a04f175bb3b7a43992777b6a', 'to': '0x45cf44d26a7ec415981a3e9362ac875c10842786', 'value': 2544.427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0f2a7ccc', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T14:45:15.000Z'}}, {'blockNum': '0x51a0d8', 'uniqueId': '0x1e6810a930853db22288f42d4e74f45afeb45ba2a2e28f2362824992e117d337:log:2', 'hash': '0x1e6810a930853db22288f42d4e74f45afeb45ba2a2e28f2362824992e117d337', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa6a53c3f278d94fe7c0a47c8cfcbafd0e083bf4f', 'value': 17983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x6b2fe160', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T15:23:02.000Z'}}, {'blockNum': '0x51a110', 'uniqueId': '0xc30b3c1fd111138553e4b9017a519239ddc49d2cc2342693ffeb3829472d8423:log:4', 'hash': '0xc30b3c1fd111138553e4b9017a519239ddc49d2cc2342693ffeb3829472d8423', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb76861514af690d3a75fcf4318d1c699f94756a8', 'value': 1509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x08fe8d20', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T15:38:04.000Z'}}, {'blockNum': '0x51a1ae', 'uniqueId': '0x71bffa7bb8582bf827f38dac06366a3de89f853be1634354023310ce05053207:log:6', 'hash': '0x71bffa7bb8582bf827f38dac06366a3de89f853be1634354023310ce05053207', 'from': '0xf2767913abfa2efb9f02e0c87b11e0b03d6e5d64', 'to': '0x021869428a1350e6d0529b1294c96a9e613462fa', 'value': 10080.5704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3c15bad0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T16:10:15.000Z'}}, {'blockNum': '0x51a26c', 'uniqueId': '0x46d197e9b242522afed44a4feffb7d0057e04b61cb881e5e1ab44d5adbc90b00:log:120', 'hash': '0x46d197e9b242522afed44a4feffb7d0057e04b61cb881e5e1ab44d5adbc90b00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x844eb88ab8f9971f654e9f4b145ced4f02802057', 'value': 973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05ccae20', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T16:54:36.000Z'}}, {'blockNum': '0x51a28d', 'uniqueId': '0xc87a41dd12047467be235fa0a70fcf672e822a122ebeacca4838b51c80050cc7:log:19', 'hash': '0xc87a41dd12047467be235fa0a70fcf672e822a122ebeacca4838b51c80050cc7', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf3559da87141c2ea75e05220e61924c97ae1d257', 'value': 3777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x16833ea0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:02:11.000Z'}}, {'blockNum': '0x51a2a8', 'uniqueId': '0x037b3a8629807619ffa601364f4bf7e7908042c8c8e052b49c796e9fd167ecf6:log:127', 'hash': '0x037b3a8629807619ffa601364f4bf7e7908042c8c8e052b49c796e9fd167ecf6', 'from': '0x9bdef5572593a3dca3771b1d2a1f25f677a67851', 'to': '0xf92e5dba58e6aa251fc028b03db3c41ce5738147', 'value': 9978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3b793840', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:08:59.000Z'}}, {'blockNum': '0x51a2af', 'uniqueId': '0x5ddf6f3922c292f9c03387411721991ef989e7c3bbd1159e28c43d823856d95d:log:5', 'hash': '0x5ddf6f3922c292f9c03387411721991ef989e7c3bbd1159e28c43d823856d95d', 'from': '0x844eb88ab8f9971f654e9f4b145ced4f02802057', 'to': '0x4b01721f0244e7c5b5f63c20942850e447f5a5ee', 'value': 973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05ccae20', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:11:04.000Z'}}, {'blockNum': '0x51a2d7', 'uniqueId': '0xa54dc686d83d4ccaff52eb2b7e5f0c7fecae273983aadaaf749dd5f05e42aa7e:log:33', 'hash': '0xa54dc686d83d4ccaff52eb2b7e5f0c7fecae273983aadaaf749dd5f05e42aa7e', 'from': '0xf92e5dba58e6aa251fc028b03db3c41ce5738147', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3b793840', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:20:03.000Z'}}, {'blockNum': '0x51a356', 'uniqueId': '0x43d7d3c1877721ed54daf3515a35c7173178f957892eba960402e4d94cd13620:log:1', 'hash': '0x43d7d3c1877721ed54daf3515a35c7173178f957892eba960402e4d94cd13620', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x89afafe7cf4b1d29c63562c1befe6c298aad6c09', 'value': 4083.443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x1856d6ec', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T17:54:22.000Z'}}, {'blockNum': '0x51a371', 'uniqueId': '0xbd6e63bba3f03ca6b3fd9f70227b1eea762f2fd8ca0214ed1e5757290b730bb0:log:17', 'hash': '0xbd6e63bba3f03ca6b3fd9f70227b1eea762f2fd8ca0214ed1e5757290b730bb0', 'from': '0x89afafe7cf4b1d29c63562c1befe6c298aad6c09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4083.443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x1856d6ec', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T18:00:06.000Z'}}, {'blockNum': '0x51a422', 'uniqueId': '0x7146fb9611739058f56b08c7c16f0d5a1ffe45931cff4a27eaf2688a50d74a4b:log:33', 'hash': '0x7146fb9611739058f56b08c7c16f0d5a1ffe45931cff4a27eaf2688a50d74a4b', 'from': '0x4b01721f0244e7c5b5f63c20942850e447f5a5ee', 'to': '0xfc23aa54b7928bb61e8fed9128845805334b9e8f', 'value': 1750.85023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0a6f95df', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T18:43:20.000Z'}}, {'blockNum': '0x51a53a', 'uniqueId': '0x242740c0ac74a54ee39c533885ac4fcfeddb56d483635795919b2339827771db:log:2', 'hash': '0x242740c0ac74a54ee39c533885ac4fcfeddb56d483635795919b2339827771db', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x95f90a80c98672a8529018753c0d1bbc0166c1a5', 'value': 6734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x282344c0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T19:49:08.000Z'}}, {'blockNum': '0x51a5d2', 'uniqueId': '0xcaa229f06b18c91cb9819a169b0b3b464889f2548e6b02b1f0a50f2df287ee4f:log:71', 'hash': '0xcaa229f06b18c91cb9819a169b0b3b464889f2548e6b02b1f0a50f2df287ee4f', 'from': '0x805ec0cfea0f8a86256dceedff36dc7c85012d01', 'to': '0x9539c69d11f66a3acb6a79774e030c408e9d4f60', 'value': 1704.2872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0a288930', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T20:31:26.000Z'}}, {'blockNum': '0x51a65f', 'uniqueId': '0xfda2c509e377782794e5cb8f4f5d68e68061581e4e1a8f362b1f1b1a9c22e484:log:4', 'hash': '0xfda2c509e377782794e5cb8f4f5d68e68061581e4e1a8f362b1f1b1a9c22e484', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb1c74167e9df09e7ac1e3db70973a42f2a4608c9', 'value': 3043.635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x122437ec', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T21:06:40.000Z'}}, {'blockNum': '0x51a719', 'uniqueId': '0xb7c9f6a98261fb51189d20849ffafe6835f4633f26929d88175753e6d4f58b53:log:56', 'hash': '0xb7c9f6a98261fb51189d20849ffafe6835f4633f26929d88175753e6d4f58b53', 'from': '0xb1c74167e9df09e7ac1e3db70973a42f2a4608c9', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3043.635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x122437ec', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T21:49:16.000Z'}}, {'blockNum': '0x51a73c', 'uniqueId': '0x3636460e92bb66e5771d3c1f0fff33a42d9dcc5e8948c7e14887e4b75efbda7d:log:2', 'hash': '0x3636460e92bb66e5771d3c1f0fff33a42d9dcc5e8948c7e14887e4b75efbda7d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x11da677aaae9d50b1bc23bddd89dd9542c8ec5d9', 'value': 756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x04819080', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T21:57:04.000Z'}}, {'blockNum': '0x51a73c', 'uniqueId': '0x9b3574edac567cf231f2fa51ae2b00be061227c425348092da8e40d7bdeb859f:log:111', 'hash': '0x9b3574edac567cf231f2fa51ae2b00be061227c425348092da8e40d7bdeb859f', 'from': '0xed300406de9c8e9ab09c12a8c39e4899be88c5b7', 'to': '0x725589bf5d87b1b15081fa4745db3dcc74d7e7ed', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T21:57:04.000Z'}}, {'blockNum': '0x51a74e', 'uniqueId': '0x4e4fe6f99f172f472f8dbcd902c96af19fcbf03aa295ac7d67e0bec9e780b0f1:log:3', 'hash': '0x4e4fe6f99f172f472f8dbcd902c96af19fcbf03aa295ac7d67e0bec9e780b0f1', 'from': '0xed300406de9c8e9ab09c12a8c39e4899be88c5b7', 'to': '0x037015d0f52b4a001f90220f9a362d0889b94cac', 'value': 500.70255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x02fc02ef', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T22:02:43.000Z'}}, {'blockNum': '0x51a752', 'uniqueId': '0x81eb4d3697c577d115a2d317feb6e73db0b037c74992dfb5a01677162a66eaa5:log:23', 'hash': '0x81eb4d3697c577d115a2d317feb6e73db0b037c74992dfb5a01677162a66eaa5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x28e3278d3a3cee67f69fbd163e9bacd7f779ebde', 'value': 111.864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0xaab0e0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T22:03:45.000Z'}}, {'blockNum': '0x51a794', 'uniqueId': '0xa8b7f53988352ae081304ce1bfb1205109de369fd7df9b12030116e822c75f65:log:2', 'hash': '0xa8b7f53988352ae081304ce1bfb1205109de369fd7df9b12030116e822c75f65', 'from': '0xb76861514af690d3a75fcf4318d1c699f94756a8', 'to': '0x7392ad419290804db10766c5b79e65c699d2431c', 'value': 2643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x0fc0e5e0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-30T22:20:48.000Z'}}, {'blockNum': '0x51a9f1', 'uniqueId': '0x211384ca7da72fd633d581236ebcc0c2a291989bcb50c2a59791b4bff48a3371:log:111', 'hash': '0x211384ca7da72fd633d581236ebcc0c2a291989bcb50c2a59791b4bff48a3371', 'from': '0xd8a467fdcdcd8e27391b8ad2ecb3b4a345b42610', 'to': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T00:46:04.000Z'}}, {'blockNum': '0x51aa01', 'uniqueId': '0xfc63c9f2f57e9e6be089dcd66e6360c00d9b57c32b189c94c0eb8f462b7bcf98:log:21', 'hash': '0xfc63c9f2f57e9e6be089dcd66e6360c00d9b57c32b189c94c0eb8f462b7bcf98', 'from': '0x2fe458ac181a6db3c0670c5c3c5b84e7beb4aea5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T00:50:17.000Z'}}, {'blockNum': '0x51aa85', 'uniqueId': '0xbc0de2933caa7a350083a77c65c2d55c901f6f8378c6880bc342d7fc0d9531b3:log:51', 'hash': '0xbc0de2933caa7a350083a77c65c2d55c901f6f8378c6880bc342d7fc0d9531b3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9b58528caa0f37e465220d0d57e88c92a6b00b5d', 'value': 774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x049d07c0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T01:24:39.000Z'}}, {'blockNum': '0x51aa8e', 'uniqueId': '0x98bf5cf2c79c00c5a442f4b67a7e6ba50728a0abc11e97be1f0b2b728d437d53:log:4', 'hash': '0x98bf5cf2c79c00c5a442f4b67a7e6ba50728a0abc11e97be1f0b2b728d437d53', 'from': '0x9b58528caa0f37e465220d0d57e88c92a6b00b5d', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x049d07c0', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T01:27:15.000Z'}}, {'blockNum': '0x51ab82', 'uniqueId': '0xe2d52c166cd0d6e7f4cb2c1540e93da5a6a8f42c3eddf8713edeaa8141152ee5:log:10', 'hash': '0xe2d52c166cd0d6e7f4cb2c1540e93da5a6a8f42c3eddf8713edeaa8141152ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8227b780493a86c35a1ca35c5bdc83d64e51deaa', 'value': 2876.094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x11249238', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T02:30:10.000Z'}}, {'blockNum': '0x51abb1', 'uniqueId': '0xd3be4db2d6df0af5b542038b1452fe9d5f7bebfb62b1679f0780b16a91a8e32b:log:69', 'hash': '0xd3be4db2d6df0af5b542038b1452fe9d5f7bebfb62b1679f0780b16a91a8e32b', 'from': '0xecd3f4884fc7cc5d1a7eb0b3a73c172545725086', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x042c1d80', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T02:43:25.000Z'}}, {'blockNum': '0x51abc5', 'uniqueId': '0xd89e2e928a3ef5676c7f15b8313dba7927e89dfceaa70663e6bf83398d2f0586:log:17', 'hash': '0xd89e2e928a3ef5676c7f15b8313dba7927e89dfceaa70663e6bf83398d2f0586', 'from': '0x8227b780493a86c35a1ca35c5bdc83d64e51deaa', 'to': '0x4b01721f0244e7c5b5f63c20942850e447f5a5ee', 'value': 2876.094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x11249238', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T02:51:15.000Z'}}, {'blockNum': '0x51ac8b', 'uniqueId': '0x9a2b488a458224271bff44950ca687cb122ca7449e1ba7ea16d0ece2584ed386:log:7', 'hash': '0x9a2b488a458224271bff44950ca687cb122ca7449e1ba7ea16d0ece2584ed386', 'from': '0x7a165983aae7e0f421d902e8879762fd5d02a267', 'to': '0xc42c7dcfb8208a3d46cd72cfab64c66b26773f1b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MTH', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xaf4dce16da2877f8c9e00544c93b62ac40631f16', 'decimal': '0x5'}, 'metadata': {'blockTimestamp': '2018-03-31T03:37:05.000Z'}}]}}
Number of returned transfers:  38
Answer is complete
 
symbol             MDA
group              FCS
date        2018-03-31
hour             16:59
exchange       binance
Name: 442, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2018-03-31 16:59:00 2018-03-31 04:59:00 2018-04-01 04:59:00
Unix timestamps:  1522465140.0 1522551540.0
Hex Block Numbers:  0x51abe3 0x51c3d4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x51adae', 'uniqueId': '0xb16c7e43d5bd434f519607d80552e8b9c9c15ed606830222e4ea4d9be8008ef1:log:10', 'hash': '0xb16c7e43d5bd434f519607d80552e8b9c9c15ed606830222e4ea4d9be8008ef1', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x2d939b793102685ec6a99e64c0c5a3e8f5623df7', 'value': 624.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x21d7c39f5eac9d0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T04:43:46.000Z'}}, {'blockNum': '0x51adb1', 'uniqueId': '0x3dbfd8407af35d30deaf5c898e47b273a2b7eeae6394f1accaa64c038a193cbd:log:29', 'hash': '0x3dbfd8407af35d30deaf5c898e47b273a2b7eeae6394f1accaa64c038a193cbd', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4780.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01032aed8e3c6b800000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T04:44:11.000Z'}}, {'blockNum': '0x51adb4', 'uniqueId': '0x0c9b0ed718b9dbe10b8ef69b67a8f047d50b0158dfeaca0ef4c4ceba4b217bfd:log:33', 'hash': '0x0c9b0ed718b9dbe10b8ef69b67a8f047d50b0158dfeaca0ef4c4ceba4b217bfd', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4775.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0102e589fcba268c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T04:44:27.000Z'}}, {'blockNum': '0x51aef2', 'uniqueId': '0x9fe1626acb467c95c446195070bbeb97c03069ff74c7025b103597d034fb6c5e:log:1', 'hash': '0x9fe1626acb467c95c446195070bbeb97c03069ff74c7025b103597d034fb6c5e', 'from': '0xfa84c343306643948d295f3d4853e8adc713a57d', 'to': '0x3aef392fa182b36cfdeab11ca6f7dab3a930cc9f', 'value': 1590.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x563a0260a3d8540000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T06:00:01.000Z'}}, {'blockNum': '0x51afe3', 'uniqueId': '0x2b3033c87f244216a996a1a835027dc8c6420ea51ed73738625b6aa1815a3c21:log:50', 'hash': '0x2b3033c87f244216a996a1a835027dc8c6420ea51ed73738625b6aa1815a3c21', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 1625.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x58211ea0ac188a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T06:57:29.000Z'}}, {'blockNum': '0x51b0e3', 'uniqueId': '0xb657109d5c2cd093a2cdd08822fce417b2f7e201d1327c22a1b1a04700210e79:log:1', 'hash': '0xb657109d5c2cd093a2cdd08822fce417b2f7e201d1327c22a1b1a04700210e79', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4773.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0102c86549da7a3a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T07:57:05.000Z'}}, {'blockNum': '0x51b293', 'uniqueId': '0x859a45bf01a64a95d9ff47d3ad72c3adf2ae987d44fad5302f107dcf0c17a5e3:log:14', 'hash': '0x859a45bf01a64a95d9ff47d3ad72c3adf2ae987d44fad5302f107dcf0c17a5e3', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 4751.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101944f0b795c8e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T09:44:53.000Z'}}, {'blockNum': '0x51b29f', 'uniqueId': '0x42c663b60cb6a5d564755934627756b43a4614ef08b73201cf740311247bffa8:log:18', 'hash': '0x42c663b60cb6a5d564755934627756b43a4614ef08b73201cf740311247bffa8', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4751.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101944f0b795c8e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T09:48:13.000Z'}}, {'blockNum': '0x51b2c2', 'uniqueId': '0x189529fdbf7345d1f65d58dee982ea6611e724448d62e09b7a8863a29514b044:log:59', 'hash': '0x189529fdbf7345d1f65d58dee982ea6611e724448d62e09b7a8863a29514b044', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb1b47c45f4d9ce2be5896df490099c444da50fba', 'value': 4996.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010edf2470594a560000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T09:56:17.000Z'}}, {'blockNum': '0x51b614', 'uniqueId': '0x63b8a2d5198d9f15a1b25c25b4c07e6be95d8e59137c90c958bf8d93266529a7:log:18', 'hash': '0x63b8a2d5198d9f15a1b25c25b4c07e6be95d8e59137c90c958bf8d93266529a7', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4773.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0102c86549da7a3a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T13:17:02.000Z'}}, {'blockNum': '0x51b65a', 'uniqueId': '0x18773f4e8bf64af1cffb835c6874dbc8ad8b3fb47cac5cc762f06c85828e0f1a:log:40', 'hash': '0x18773f4e8bf64af1cffb835c6874dbc8ad8b3fb47cac5cc762f06c85828e0f1a', 'from': '0xb8e083a4cb41ad764bd0c717f9b16b4765d0e00a', 'to': '0xfe555e7bfe886c3f19df6fb7e155b222b30ac53e', 'value': 20574.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x045b5f6dbaffcb020000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T13:31:40.000Z'}}, {'blockNum': '0x51b67c', 'uniqueId': '0x373f51a0b3defa423730c8ef0c07d0a3a55b9bd95f1066ed35b52933eb5ff5ea:log:6', 'hash': '0x373f51a0b3defa423730c8ef0c07d0a3a55b9bd95f1066ed35b52933eb5ff5ea', 'from': '0xfe555e7bfe886c3f19df6fb7e155b222b30ac53e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20574.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x045b5f6dbaffcb020000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T13:38:06.000Z'}}, {'blockNum': '0x51b839', 'uniqueId': '0x1d01849648791851c6e4525f251022b7e3c8a4ce2e7d573959ae5e350391525d:log:3', 'hash': '0x1d01849648791851c6e4525f251022b7e3c8a4ce2e7d573959ae5e350391525d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4756.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101dc7927ec5c960000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T15:15:54.000Z'}}, {'blockNum': '0x51b9a7', 'uniqueId': '0x9673b62c982f763b4772433f3bc8a78daa89bed987c12b14da6f2a662307095d:log:4', 'hash': '0x9673b62c982f763b4772433f3bc8a78daa89bed987c12b14da6f2a662307095d', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 2956.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa0446e3f44bc990000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:43:51.000Z'}}, {'blockNum': '0x51b9bf', 'uniqueId': '0xfb0ceea0c7224d8bc505697757fcec261da8e8804abf7eab680290769dc2b4d9:log:50', 'hash': '0xfb0ceea0c7224d8bc505697757fcec261da8e8804abf7eab680290769dc2b4d9', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2956.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa0446e3f44bc990000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:48:29.000Z'}}, {'blockNum': '0x51b9c6', 'uniqueId': '0xd7a8824df8270be3f4acec79db1ace87ddbc82e11dc56e9c4888b9b14077eb25:log:21', 'hash': '0xd7a8824df8270be3f4acec79db1ace87ddbc82e11dc56e9c4888b9b14077eb25', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 4748.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01016aace75e66620000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:50:34.000Z'}}, {'blockNum': '0x51b9e4', 'uniqueId': '0x03223e8246309e2bbf18702031560458b80c1aa8cc094b70a07f3ab20bad20ea:log:37', 'hash': '0x03223e8246309e2bbf18702031560458b80c1aa8cc094b70a07f3ab20bad20ea', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4748.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01016aace75e66620000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:58:41.000Z'}}, {'blockNum': '0x51b9e7', 'uniqueId': '0xca7aeea7777e8e72659b3c48dfe8ec589831c1b6934f3d259a14eb734986c870:log:54', 'hash': '0xca7aeea7777e8e72659b3c48dfe8ec589831c1b6934f3d259a14eb734986c870', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 335.7109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1232ecb4e09eaf4000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:59:20.000Z'}}, {'blockNum': '0x51b9e9', 'uniqueId': '0xf6797cfe597fbf721a4ef358328b5d509a1a15c9f0dd9e952fe6af701188f0b5:log:29', 'hash': '0xf6797cfe597fbf721a4ef358328b5d509a1a15c9f0dd9e952fe6af701188f0b5', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 200.1783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0ada082f428993c000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:59:55.000Z'}}, {'blockNum': '0x51b9f1', 'uniqueId': '0xc45898e6e1cb3dcc93734c992715e2b3878f021b7a99b524a3801e7a62ac8069:log:6', 'hash': '0xc45898e6e1cb3dcc93734c992715e2b3878f021b7a99b524a3801e7a62ac8069', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x582548711531280000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:01:03.000Z'}}, {'blockNum': '0x51b9f3', 'uniqueId': '0x17ada67df5669c4084bab9112c9c77cf34e58f253453cc1d1b8c46936834d596:log:70', 'hash': '0x17ada67df5669c4084bab9112c9c77cf34e58f253453cc1d1b8c46936834d596', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xd12a65a346063d7cb051fb06adc4e9a16b49bdcf', 'value': 1197.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x40eaa6a15f82460000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:01:35.000Z'}}, {'blockNum': '0x51b9f6', 'uniqueId': '0x1f5517683cac4c317d7f18b75c699977c8e3b972749b366909c21fe081b8b51b:log:44', 'hash': '0x1f5517683cac4c317d7f18b75c699977c8e3b972749b366909c21fe081b8b51b', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'value': 999.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x362ed9526c0aee0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:02:07.000Z'}}, {'blockNum': '0x51b9fd', 'uniqueId': '0x87417c2f390debe9a4026d0d3e993e5d20dbc07c1a71bcff511cfd2c4f4b4193:log:12', 'hash': '0x87417c2f390debe9a4026d0d3e993e5d20dbc07c1a71bcff511cfd2c4f4b4193', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 217.9858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0bd129222967588000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:03:22.000Z'}}, {'blockNum': '0x51ba01', 'uniqueId': '0xab7f3783d6f4d2d4ab52efb86f6a6c67f94eb3c73e39923ddc2be2bcb1716e4e:log:7', 'hash': '0xab7f3783d6f4d2d4ab52efb86f6a6c67f94eb3c73e39923ddc2be2bcb1716e4e', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 2991.805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa22fa28c3cdd8c8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:04:27.000Z'}}, {'blockNum': '0x51ba05', 'uniqueId': '0x4eeba6dbb6e80d78d6438352bfe3117373351d4c243c67bae6b3aba6055fc109:log:3', 'hash': '0x4eeba6dbb6e80d78d6438352bfe3117373351d4c243c67bae6b3aba6055fc109', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 744.017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x28554f5f876bce8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:05:07.000Z'}}, {'blockNum': '0x51ba0b', 'uniqueId': '0x3e0cc0a6470a10bc601dfc7fa5223a0404380715fc812194d2e8cd7d094d5c6e:log:0', 'hash': '0x3e0cc0a6470a10bc601dfc7fa5223a0404380715fc812194d2e8cd7d094d5c6e', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xf8cb4b002d49c1150e9cc8c2c141d7759c0ac42e', 'value': 1180.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3ffcbe75b359c08000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:06:23.000Z'}}, {'blockNum': '0x51ba12', 'uniqueId': '0x260b81af3f2aa5988d7822b9b7b7448df3846202c7484776e4be6e33099c050a:log:1', 'hash': '0x260b81af3f2aa5988d7822b9b7b7448df3846202c7484776e4be6e33099c050a', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 4345.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xeb8c07634e566b8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:07:49.000Z'}}, {'blockNum': '0x51ba15', 'uniqueId': '0xf999dfaf7b7f95dd01fb4ad3ac431d20fd46547fbdc6118a9aa047cc03d3a49a:log:2', 'hash': '0xf999dfaf7b7f95dd01fb4ad3ac431d20fd46547fbdc6118a9aa047cc03d3a49a', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 962.0028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x34267881b0d3270000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:08:10.000Z'}}, {'blockNum': '0x51ba15', 'uniqueId': '0xe42ce616bd1875bcfbb25fcacefc9991111d3230d9476ae46b0d9dc98c4d8d1a:log:3', 'hash': '0xe42ce616bd1875bcfbb25fcacefc9991111d3230d9476ae46b0d9dc98c4d8d1a', 'from': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 999.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x362ed9526c0aee0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:08:10.000Z'}}, {'blockNum': '0x51ba15', 'uniqueId': '0x0c15850ceb991b7224118b85fa2b48f394b81a7963f43874294a3029798a17af:log:5', 'hash': '0x0c15850ceb991b7224118b85fa2b48f394b81a7963f43874294a3029798a17af', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x582548711531280000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:08:10.000Z'}}, {'blockNum': '0x51ba21', 'uniqueId': '0x46e6fe96a8e6b1ea2ae634efbcf05b7d922731f9f2f9ad6426d340d21477c02b:log:1', 'hash': '0x46e6fe96a8e6b1ea2ae634efbcf05b7d922731f9f2f9ad6426d340d21477c02b', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 164.161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x08e63107bcdce68000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:10:20.000Z'}}, {'blockNum': '0x51ba47', 'uniqueId': '0x60a3553756f40da242b4b7603aeff8016830006ca94b73314ee32f5996e81e37:log:29', 'hash': '0x60a3553756f40da242b4b7603aeff8016830006ca94b73314ee32f5996e81e37', 'from': '0xf8cb4b002d49c1150e9cc8c2c141d7759c0ac42e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1180.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3ffcbe75b359c08000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:18:52.000Z'}}, {'blockNum': '0x51ba77', 'uniqueId': '0x13ec3a14795523f1805a8dc9343d7193b7fc24a52f5473925736a4b78f7f1018:log:35', 'hash': '0x13ec3a14795523f1805a8dc9343d7193b7fc24a52f5473925736a4b78f7f1018', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4345.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xeb8c07634e566b8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:28:31.000Z'}}, {'blockNum': '0x51ba78', 'uniqueId': '0x505e8d3c55b57ddadc610c2f14b9fa507ab2e241035115aeb302c96e8142219e:log:9', 'hash': '0x505e8d3c55b57ddadc610c2f14b9fa507ab2e241035115aeb302c96e8142219e', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0xc1520ec922a53464eaa0682b510ead8ed0ed9e52', 'value': 1717.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x5d20834d3a8bcd0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:29:01.000Z'}}, {'blockNum': '0x51ba97', 'uniqueId': '0xdd6af6423f34f81cc54a208b6455775018e4d848fda5b1b92dac0f4d45e84012:log:6', 'hash': '0xdd6af6423f34f81cc54a208b6455775018e4d848fda5b1b92dac0f4d45e84012', 'from': '0xc1520ec922a53464eaa0682b510ead8ed0ed9e52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1717.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x5d20834d3a8bcd0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:38:04.000Z'}}, {'blockNum': '0x51bc0b', 'uniqueId': '0xd3cbf9d7b3241f061e125d7cf0959ce9fe2ea630aee07bcb07e0585e62e6e2b3:log:30', 'hash': '0xd3cbf9d7b3241f061e125d7cf0959ce9fe2ea630aee07bcb07e0585e62e6e2b3', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4756.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101dc7927ec5c960000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T19:08:16.000Z'}}, {'blockNum': '0x51bc7e', 'uniqueId': '0x1c7bee6f6d8c152b877ff51aa0c5750b1fc0da33993b1a9af34a2233089abf4b:log:20', 'hash': '0x1c7bee6f6d8c152b877ff51aa0c5750b1fc0da33993b1a9af34a2233089abf4b', 'from': '0xae413bd3b3338000b1e801cc0129432a07f17197', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2743.736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x94bcfc6b104b2c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T19:38:16.000Z'}}, {'blockNum': '0x51bdd2', 'uniqueId': '0x8a17e266545d0b10bcb0db943ee74afcc1d48b85df3cd62c407273d870ebd668:log:0', 'hash': '0x8a17e266545d0b10bcb0db943ee74afcc1d48b85df3cd62c407273d870ebd668', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4766.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010267404af0e67e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T20:58:53.000Z'}}, {'blockNum': '0x51bdec', 'uniqueId': '0x88037f4f0127b25eb74faab1a7d23d1740df14a1dce28362f573b0cb7973bf65:log:23', 'hash': '0x88037f4f0127b25eb74faab1a7d23d1740df14a1dce28362f573b0cb7973bf65', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4756.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101dc7927ec5c960000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:05:36.000Z'}}, {'blockNum': '0x51be10', 'uniqueId': '0x8e1dfab3d27f0319243a54632ce5e439b15d7cc0c9094007d5c050c24f017b4e:log:0', 'hash': '0x8e1dfab3d27f0319243a54632ce5e439b15d7cc0c9094007d5c050c24f017b4e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4757.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101ea59dea003fa0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:14:05.000Z'}}, {'blockNum': '0x51be1f', 'uniqueId': '0x12b77ca856db4dfa0350c787e7f6fd778b591b3a7a349914c3e8504ac6ca0b96:log:18', 'hash': '0x12b77ca856db4dfa0350c787e7f6fd778b591b3a7a349914c3e8504ac6ca0b96', 'from': '0xd07a289f5b1258114c000bc2135db3019f3b666f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1994.799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6c2365b19a18718000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:18:22.000Z'}}, {'blockNum': '0x51be1f', 'uniqueId': '0xf14be20d964b03b2a435ff6cb48686e7309e0f1655df800a9d64100be142ec40:log:19', 'hash': '0xf14be20d964b03b2a435ff6cb48686e7309e0f1655df800a9d64100be142ec40', 'from': '0x5a5d9c95a3f328e903f3b4d47aa5556e1f286b27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1294.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x462ccbdb71ef2a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:18:22.000Z'}}, {'blockNum': '0x51be1f', 'uniqueId': '0x2f34098129b41a6d09a0f1995572b661cc4aed94126fc0af61daad1cf4447ccc:log:26', 'hash': '0x2f34098129b41a6d09a0f1995572b661cc4aed94126fc0af61daad1cf4447ccc', 'from': '0x2b2666b9d328620e2fac5f8260cfd162b4046b49', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x2227019e1df0180000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:18:22.000Z'}}, {'blockNum': '0x51bf1f', 'uniqueId': '0x6b5ca9cde920a69b67a0129551ce6a610fcc4c50cb2b1a2f1e0f0176b0c22b4c:log:126', 'hash': '0x6b5ca9cde920a69b67a0129551ce6a610fcc4c50cb2b1a2f1e0f0176b0c22b4c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4753.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101b2d703d1666a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:16:36.000Z'}}, {'blockNum': '0x51bf73', 'uniqueId': '0x4460a6cd3524400f202dff58d2faf7f5a8ca85cdee2b5aa8853896f391017e82:log:11', 'hash': '0x4460a6cd3524400f202dff58d2faf7f5a8ca85cdee2b5aa8853896f391017e82', 'from': '0xdcedef9d19a36b81151a65802f7301aaf4731469', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5415.663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0125956c051672518000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:38:16.000Z'}}, {'blockNum': '0x51bf73', 'uniqueId': '0x70976bac94895aa1083bd8723d47cdf751ef7cde293255f3ab1d051abd7f399f:log:15', 'hash': '0x70976bac94895aa1083bd8723d47cdf751ef7cde293255f3ab1d051abd7f399f', 'from': '0x3aef392fa182b36cfdeab11ca6f7dab3a930cc9f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1601.1915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x56ccfef1c61ae0c000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:38:16.000Z'}}, {'blockNum': '0x51bf75', 'uniqueId': '0x630eaa0b3ee1bb87e1dc181f9c04a560b52e0864678c8c87cd38d358fb71875e:log:9', 'hash': '0x630eaa0b3ee1bb87e1dc181f9c04a560b52e0864678c8c87cd38d358fb71875e', 'from': '0x6871822e5d98e39fc7651d269ce0a893be27a54c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 562.149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1e7962711b61108000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:38:40.000Z'}}, {'blockNum': '0x51bfb4', 'uniqueId': '0xc03a110f50f8834cba62224c1636321a86402dc3915823fc61badc11a80bea1b:log:20', 'hash': '0xc03a110f50f8834cba62224c1636321a86402dc3915823fc61badc11a80bea1b', 'from': '0x560db0c0543cc1ff72b574ee81efd16da1d28718', 'to': '0x4c6e60221ed09543e9d7dff33d664c6ac46df449', 'value': 54979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0ba46ae558c6192c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:56:00.000Z'}}, {'blockNum': '0x51c028', 'uniqueId': '0x53501956c9e4076ed2c87ce4977756ab3374c3adfd94b5980ac883c30818a65c:log:1', 'hash': '0x53501956c9e4076ed2c87ce4977756ab3374c3adfd94b5980ac883c30818a65c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 1622.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x57f77c7c91225e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T23:20:55.000Z'}}, {'blockNum': '0x51c0a1', 'uniqueId': '0xe595db3956c6e8007c19dc5546e342b4de6a8aaa4ee8a65ff8f7e9abf0847282:log:25', 'hash': '0xe595db3956c6e8007c19dc5546e342b4de6a8aaa4ee8a65ff8f7e9abf0847282', 'from': '0x28bc3360d1dd9a84dde69c8142d620dcc1cf7b65', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T23:48:43.000Z'}}, {'blockNum': '0x51c3b0', 'uniqueId': '0x5e9c4f255f450ca4e209c618e533e9e44a09ea5f3888ff3cb58e1b2e3e7689d3:log:5', 'hash': '0x5e9c4f255f450ca4e209c618e533e9e44a09ea5f3888ff3cb58e1b2e3e7689d3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4747.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01015f92bb9b7a120000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-01T02:49:34.000Z'}}]}}
Number of returned transfers:  51
Answer is complete
 
symbol             EVX
group              FCS
date        2018-04-02
hour             16:30
exchange       binance
Name: 445, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2018-04-02 16:30:00 2018-04-02 04:30:00 2018-04-03 04:30:00
Unix timestamps:  1522636200.0 1522722600.0
Hex Block Numbers:  0x51db00 0x51f2a5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x51db31', 'uniqueId': '0xeb305a0c6b4f48ad29bfae5cefe3c17259fac14396d785b87b2ac76524786d3d:log:1', 'hash': '0xeb305a0c6b4f48ad29bfae5cefe3c17259fac14396d785b87b2ac76524786d3d', 'from': '0x6caacb276bdfc51e7d9a0e2e42e713fd381e5080', 'to': '0xb38d3d1268b4e5365b887926ae1709b2748b0624', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T02:41:18.000Z'}}, {'blockNum': '0x51db36', 'uniqueId': '0x5d1d88c0c4e3a0c61923eebce73f43df28edf84e93db9aa301058d11d4ebc9b6:log:8', 'hash': '0x5d1d88c0c4e3a0c61923eebce73f43df28edf84e93db9aa301058d11d4ebc9b6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'value': 1728.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0107c758', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T02:42:48.000Z'}}, {'blockNum': '0x51dbcc', 'uniqueId': '0x1e94f6e37dfb154b9d8b66b34112809b83829b5179c1a4c44625a140a5d05041:log:6', 'hash': '0x1e94f6e37dfb154b9d8b66b34112809b83829b5179c1a4c44625a140a5d05041', 'from': '0x6caacb276bdfc51e7d9a0e2e42e713fd381e5080', 'to': '0xb38d3d1268b4e5365b887926ae1709b2748b0624', 'value': 3487.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x021435aa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T03:19:07.000Z'}}, {'blockNum': '0x51dbd4', 'uniqueId': '0x046cd550a7482ed4e42ae1d78a9fe34eebecd753e7c932d1f19d578af265154b:log:133', 'hash': '0x046cd550a7482ed4e42ae1d78a9fe34eebecd753e7c932d1f19d578af265154b', 'from': '0xb38d3d1268b4e5365b887926ae1709b2748b0624', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3497.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0215bc4a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T03:21:25.000Z'}}, {'blockNum': '0x51dc0f', 'uniqueId': '0x612e76d263872f3739a9ce00be1c2c9b734a3efd14be2185176eeaee8790c361:log:4', 'hash': '0x612e76d263872f3739a9ce00be1c2c9b734a3efd14be2185176eeaee8790c361', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd6b6b1b3ce1e7a5aea59292375c3dec5b829fc70', 'value': 19.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02f9b8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T03:35:21.000Z'}}, {'blockNum': '0x51dccb', 'uniqueId': '0xae6bcc85132ff99c2f0233290b89475f2058963a6902fd649b02a06d7f891d1f:log:2', 'hash': '0xae6bcc85132ff99c2f0233290b89475f2058963a6902fd649b02a06d7f891d1f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d4e669f156adfa39a5857033c0b0a422df5ce07', 'value': 58.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:18:02.000Z'}}, {'blockNum': '0x51dce2', 'uniqueId': '0x095225e7d5a1bd07ac5f75c22030ab797fcfc7d8705afdfc7752df22198b5181:log:80', 'hash': '0x095225e7d5a1bd07ac5f75c22030ab797fcfc7d8705afdfc7752df22198b5181', 'from': '0x7d4e669f156adfa39a5857033c0b0a422df5ce07', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 58.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:24:30.000Z'}}, {'blockNum': '0x51dcfb', 'uniqueId': '0xd851d81bbb4ad4da6d4ba18231eddb8132099c4dc03dac920ecb432e7eca0c1d:log:7', 'hash': '0xd851d81bbb4ad4da6d4ba18231eddb8132099c4dc03dac920ecb432e7eca0c1d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x9303463689045d5d68bd8e4712c02b0ea172d422', 'value': 182.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1bc5c4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:30:44.000Z'}}, {'blockNum': '0x51dd42', 'uniqueId': '0x4d1969da5379ca39d6f6912d54e4edaf5b68987acc688add250ec355eb81079c:log:2', 'hash': '0x4d1969da5379ca39d6f6912d54e4edaf5b68987acc688add250ec355eb81079c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe8b09c2c217bc2408207455afb89cb1079b58617', 'value': 92.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e2518', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:47:19.000Z'}}, {'blockNum': '0x51dd5d', 'uniqueId': '0x65b37f31f63949d2fbffaa7a4983f3920697096aac4a7734225f878ad0fa4df3:log:9', 'hash': '0x65b37f31f63949d2fbffaa7a4983f3920697096aac4a7734225f878ad0fa4df3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 3488.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02145558', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:53:39.000Z'}}, {'blockNum': '0x51dd6d', 'uniqueId': '0x1bc8669172f324db5eef2339436e7d2e641d7842e4c8062333973903ae11beff:log:0', 'hash': '0x1bc8669172f324db5eef2339436e7d2e641d7842e4c8062333973903ae11beff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 4602.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02be50f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T04:57:59.000Z'}}, {'blockNum': '0x51dda0', 'uniqueId': '0x0c932e1bad0d5faed288da48cd5f62382879898f4a8d5da1234ddda2aed6429a:log:10', 'hash': '0x0c932e1bad0d5faed288da48cd5f62382879898f4a8d5da1234ddda2aed6429a', 'from': '0x0d4bfbe9cb9ed107ba782af436f651d06bc6e7c8', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 110.6869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10e3b5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T05:11:01.000Z'}}, {'blockNum': '0x51dda0', 'uniqueId': '0xaa6ca3eef65bf6826cf070e3d7f765a6e47024db30fdd9092be3fd4948f4d765:log:11', 'hash': '0xaa6ca3eef65bf6826cf070e3d7f765a6e47024db30fdd9092be3fd4948f4d765', 'from': '0x999723cd29ae2880a524e5aa640899e4c938b44f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 916.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8bd8c8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T05:11:01.000Z'}}, {'blockNum': '0x51dda3', 'uniqueId': '0xea61be47b88536f4de6306dea9cd160af9f0283127bd88db0c235f46a0b97966:log:213', 'hash': '0xea61be47b88536f4de6306dea9cd160af9f0283127bd88db0c235f46a0b97966', 'from': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2018.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0133fbc0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T05:12:01.000Z'}}, {'blockNum': '0x51de59', 'uniqueId': '0xd882570964dd94bb9c529716a9cc66b37f3e09d7fe3a3116d50f6b8052fd5729:log:11', 'hash': '0xd882570964dd94bb9c529716a9cc66b37f3e09d7fe3a3116d50f6b8052fd5729', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xea23643d7b31408dba174e94c1dfbaccee4fb62c', 'value': 231.6647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x235967', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T05:53:55.000Z'}}, {'blockNum': '0x51ded7', 'uniqueId': '0xcebafdc657caeaac63207b8b8105b425d4de4527cb96da60639092e19d56e92a:log:5', 'hash': '0xcebafdc657caeaac63207b8b8105b425d4de4527cb96da60639092e19d56e92a', 'from': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'to': '0x5f122bef1ab6cb9883c1132b2bc9372f07163f90', 'value': 41.5801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x065839', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T06:19:13.000Z'}}, {'blockNum': '0x51df5b', 'uniqueId': '0xe1a29aa06d0df83c05540a2cb8d71f0e1875a4ef6963efb3dd427880dcb8d5ec:log:85', 'hash': '0xe1a29aa06d0df83c05540a2cb8d71f0e1875a4ef6963efb3dd427880dcb8d5ec', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa39dad2a6e57bd164450fff5f89e5e6756668d97', 'value': 710.9859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6c7ce3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T06:50:13.000Z'}}, {'blockNum': '0x51dfd1', 'uniqueId': '0xc1ff0ec084c3bb15695e8346274dede8d4d3bc2d49aa5d6566d71226a6e19f53:log:7', 'hash': '0xc1ff0ec084c3bb15695e8346274dede8d4d3bc2d49aa5d6566d71226a6e19f53', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbbcbc8b95e3e009f6a42244a665ea327add06dee', 'value': 127.6214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x137936', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T07:19:42.000Z'}}, {'blockNum': '0x51e07c', 'uniqueId': '0x87d1188102542ad91842b858f7831ab0e5fe90747c0deccb745efc013ca61c2c:log:3', 'hash': '0x87d1188102542ad91842b858f7831ab0e5fe90747c0deccb745efc013ca61c2c', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xf8ad26776a394ef4ca4e8b74dc5bf6224b8b774c', 'value': 47.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x073c80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T08:00:36.000Z'}}, {'blockNum': '0x51e0b1', 'uniqueId': '0xdec545955fb2159af6de033a488400434ada43b7e0a6e5fdc16b5f6dbde30079:log:1', 'hash': '0xdec545955fb2159af6de033a488400434ada43b7e0a6e5fdc16b5f6dbde30079', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6e290376424bdfc7377a4240c39ccda614597d95', 'value': 56.3214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08980e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T08:11:27.000Z'}}, {'blockNum': '0x51e1e9', 'uniqueId': '0xb6d7ac71825a56367ecbc7d4eb553963285bc03c79aef96d25963f41487df13b:log:41', 'hash': '0xb6d7ac71825a56367ecbc7d4eb553963285bc03c79aef96d25963f41487df13b', 'from': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'to': '0x1f75f9499103aafb0478fb1071f18531d2edfed3', 'value': 529.0492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x50b9fc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T09:29:01.000Z'}}, {'blockNum': '0x51e208', 'uniqueId': '0x05c3bf1c3621c98beed855957fec14387b6aadb218f203073c9e089bfb8d266e:log:54', 'hash': '0x05c3bf1c3621c98beed855957fec14387b6aadb218f203073c9e089bfb8d266e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 4229.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x028566a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T09:36:52.000Z'}}, {'blockNum': '0x51e245', 'uniqueId': '0xddfed5f5eae43a5fb9c4cc9a535ad39096ebdb1e0efb34225b6c9107b42b12fe:log:53', 'hash': '0xddfed5f5eae43a5fb9c4cc9a535ad39096ebdb1e0efb34225b6c9107b42b12fe', 'from': '0x2d939b793102685ec6a99e64c0c5a3e8f5623df7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 108.3817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1089a9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T09:50:17.000Z'}}, {'blockNum': '0x51e30b', 'uniqueId': '0x3ef6eb1cd28bda4a557d37f0172c378e2a400051b71383dc209097d498f83953:log:21', 'hash': '0x3ef6eb1cd28bda4a557d37f0172c378e2a400051b71383dc209097d498f83953', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xf02ed6d88a9219022312c12e4c27d3cdcc1d6e17', 'value': 189.12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1cdb80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T10:36:21.000Z'}}, {'blockNum': '0x51e442', 'uniqueId': '0xdd8eff01c12bc07cbe86b636dabeadc95313baa678a1f68e37fb6bbb1d181dd4:log:13', 'hash': '0xdd8eff01c12bc07cbe86b636dabeadc95313baa678a1f68e37fb6bbb1d181dd4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 4314.408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02925390', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T11:48:59.000Z'}}, {'blockNum': '0x51e620', 'uniqueId': '0x59a9468a29f9cff1ed3780a90d4bad30a58753b3befa437ae64e436f1f4f040f:log:12', 'hash': '0x59a9468a29f9cff1ed3780a90d4bad30a58753b3befa437ae64e436f1f4f040f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb6f1ba4c76bca2e5f11999626761c96fe4bd2b27', 'value': 99.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0f2eb8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T13:47:39.000Z'}}, {'blockNum': '0x51e75b', 'uniqueId': '0x5cd81b279e989d8ac91deb0be29a5315315a1141074214efb98e1f1dcf471f97:log:5', 'hash': '0x5cd81b279e989d8ac91deb0be29a5315315a1141074214efb98e1f1dcf471f97', 'from': '0x611f32d256597ee12c2ec2870da6db0b461e6f55', 'to': '0x6ebb901a89d91c1a3d7d25c86f22ad4d2cbde117', 'value': 72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0afc80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T15:04:01.000Z'}}, {'blockNum': '0x51e7a2', 'uniqueId': '0xbfd8f0c724e2a45930d7599a2fdd629d27db97bdadf1482109ff1e4e12cfea47:log:4', 'hash': '0xbfd8f0c724e2a45930d7599a2fdd629d27db97bdadf1482109ff1e4e12cfea47', 'from': '0x0a5dc26b0b7eef902f9c8ee1b7ed39a21707369e', 'to': '0xc368f7b232c9dc5e0ec2eae62dbdd2836d1c0d65', 'value': 29.468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047f18', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T15:20:54.000Z'}}, {'blockNum': '0x51e7ce', 'uniqueId': '0x72656a555acbc0e14dc85c72b1ad72edd84e5de92f3efeb170a9835ad161909f:log:8', 'hash': '0x72656a555acbc0e14dc85c72b1ad72edd84e5de92f3efeb170a9835ad161909f', 'from': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'to': '0xbef63da5b5771593935a4f97165273fc239aa94c', 'value': 32.1774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e8ee', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T15:31:18.000Z'}}, {'blockNum': '0x51e896', 'uniqueId': '0x95a96d5033a4e828586a700142791cf8bad07f441a4a5398f8f29efd4cd8e2f3:log:41', 'hash': '0x95a96d5033a4e828586a700142791cf8bad07f441a4a5398f8f29efd4cd8e2f3', 'from': '0x23f4a952f5281233840c13cfe6fa4677fc5fac03', 'to': '0x786ed59d1cdb6244720aaf7017013a91d536de86', 'value': 127.4641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x137311', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T16:19:08.000Z'}}, {'blockNum': '0x51e91b', 'uniqueId': '0x0e7957192c10ba9ec462e18b245d77c36547b9ef4bb80d0950c54df6e498b3e9:log:1', 'hash': '0x0e7957192c10ba9ec462e18b245d77c36547b9ef4bb80d0950c54df6e498b3e9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x857b49e46310653d6be5313e38f4492eefaca9bf', 'value': 4362.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0299b1f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T16:53:02.000Z'}}, {'blockNum': '0x51e949', 'uniqueId': '0x92046bd52766a10afb466b9626caa23cbb7d76e15837a87cafb9696f24b0025a:log:13', 'hash': '0x92046bd52766a10afb466b9626caa23cbb7d76e15837a87cafb9696f24b0025a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7b4c410e92946073af39e73d5cbe8f8ebb36027b', 'value': 33.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x051c98', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T17:04:30.000Z'}}, {'blockNum': '0x51e96c', 'uniqueId': '0x6c6fdbc0e2ae614e7425a0fec618ac3d9de339faa830eb0f65f0d96d8dd8631b:log:8', 'hash': '0x6c6fdbc0e2ae614e7425a0fec618ac3d9de339faa830eb0f65f0d96d8dd8631b', 'from': '0xf741ceab9a16c9eec83a6cf00884f279dc512668', 'to': '0x592db3614695308692ff91d71f8dcf3e9df2ad45', 'value': 246.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x25a6c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T17:12:44.000Z'}}, {'blockNum': '0x51e9b8', 'uniqueId': '0xb5ade578d14030c2b09f37ec6c61a9a5210074a5f4e32d5c1a9360bc22b6879f:log:17', 'hash': '0xb5ade578d14030c2b09f37ec6c61a9a5210074a5f4e32d5c1a9360bc22b6879f', 'from': '0x592db3614695308692ff91d71f8dcf3e9df2ad45', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 246.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x25a6c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T17:32:16.000Z'}}, {'blockNum': '0x51ea19', 'uniqueId': '0x2d6d06a37291063f9743a93e973e02d315712dc15bdfacebb663ffeb2d5e08f4:log:7', 'hash': '0x2d6d06a37291063f9743a93e973e02d315712dc15bdfacebb663ffeb2d5e08f4', 'from': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'to': '0x88a3ed45b66992fd901461d20aa440a7bf70cce6', 'value': 867.3988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x845ac4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T17:53:46.000Z'}}, {'blockNum': '0x51ea9c', 'uniqueId': '0x2a6e0bfd05e47d4c019b4999f680cd54878a87512f165da653b7a4a09d50a295:log:30', 'hash': '0x2a6e0bfd05e47d4c019b4999f680cd54878a87512f165da653b7a4a09d50a295', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x86a27046bfcf9b85799ae68ad2d856b09a8e9cc1', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T18:28:35.000Z'}}, {'blockNum': '0x51eab4', 'uniqueId': '0x061a4d090f039260601ac240b5cda50777b0df2bcd0a528e2f2e1c6ee1b4b4f4:log:21', 'hash': '0x061a4d090f039260601ac240b5cda50777b0df2bcd0a528e2f2e1c6ee1b4b4f4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'value': 9924.691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05ea633e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T18:33:49.000Z'}}, {'blockNum': '0x51eab5', 'uniqueId': '0x04e9f7b9af9e3bfd8ee28c65b2ecd942e524b85c11ab7fa4340606c6932ca8bb:log:32', 'hash': '0x04e9f7b9af9e3bfd8ee28c65b2ecd942e524b85c11ab7fa4340606c6932ca8bb', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x86a27046bfcf9b85799ae68ad2d856b09a8e9cc1', 'value': 463.2214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x46ae96', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T18:33:53.000Z'}}, {'blockNum': '0x51eeac', 'uniqueId': '0x40a0b02113f74d47db2a1ecd0fe70955e78357ad19032fad6a8dd86679add5f3:log:2', 'hash': '0x40a0b02113f74d47db2a1ecd0fe70955e78357ad19032fad6a8dd86679add5f3', 'from': '0x4e2bfa454bb605212096ad4d109bd810190eb3a4', 'to': '0x578e79f22eb014a561ad252a13a8ff48272644e1', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbebc20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T22:28:36.000Z'}}, {'blockNum': '0x51eeb7', 'uniqueId': '0xbfe535241430617f40864357207b0d45c211ac5179eeb7a3e16b7c2133062574:log:20', 'hash': '0xbfe535241430617f40864357207b0d45c211ac5179eeb7a3e16b7c2133062574', 'from': '0x578e79f22eb014a561ad252a13a8ff48272644e1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbebc20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T22:30:59.000Z'}}, {'blockNum': '0x51eeba', 'uniqueId': '0x9ac0de6b331d2c9212b1e433739836abeba281c8fca7cbd26cd5b15ef4c68194:log:12', 'hash': '0x9ac0de6b331d2c9212b1e433739836abeba281c8fca7cbd26cd5b15ef4c68194', 'from': '0x36990bac9098069894bd9d2188f492904fd45d4c', 'to': '0x7ae3348b8b5200219f22a5b64f28f5a7d37033a8', 'value': 1684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0100f540', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-02T22:31:44.000Z'}}, {'blockNum': '0x51f085', 'uniqueId': '0x8bb4b8c0d80be917dd2011da0eb54d0d4179e75e9dfca0e7a9132089a57f6f19:log:57', 'hash': '0x8bb4b8c0d80be917dd2011da0eb54d0d4179e75e9dfca0e7a9132089a57f6f19', 'from': '0x238d8fad50ee443f87a411295ed082d1e6220869', 'to': '0x0ddc0a6e9188b6cffd5eef36d6f9b8fd4a0d79d8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T00:17:18.000Z'}}, {'blockNum': '0x51f0bb', 'uniqueId': '0x7a0acbdec4f71aa2c1ba4d6af03d3a02c71afa1428ec853639cc74b5991e7455:log:6', 'hash': '0x7a0acbdec4f71aa2c1ba4d6af03d3a02c71afa1428ec853639cc74b5991e7455', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x3afd2c1a8140f4fc1a2eed7e39e5abf578ac2971', 'value': 15.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x025cd8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T00:28:42.000Z'}}, {'blockNum': '0x51f0c9', 'uniqueId': '0x461192f7eb2207d807475e67c70dedc79b2f7569a5a767f44c471426a09ae917:log:7', 'hash': '0x461192f7eb2207d807475e67c70dedc79b2f7569a5a767f44c471426a09ae917', 'from': '0x0ddc0a6e9188b6cffd5eef36d6f9b8fd4a0d79d8', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T00:32:40.000Z'}}, {'blockNum': '0x51f19e', 'uniqueId': '0x048e1bd46af9063499c208cad8a6071b2a6c46ceb11b554834eaac4be5e129ae:log:3', 'hash': '0x048e1bd46af9063499c208cad8a6071b2a6c46ceb11b554834eaac4be5e129ae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 4382.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x029cca00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T01:24:14.000Z'}}, {'blockNum': '0x51f25d', 'uniqueId': '0xe01239a13f4b9f29df15823cbd61dbb58d276085ef3650e7ea5e922472a53116:log:76', 'hash': '0xe01239a13f4b9f29df15823cbd61dbb58d276085ef3650e7ea5e922472a53116', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab33f16b1067c758b8e18aa4430235372c03f569', 'value': 1264.432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc0efe0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-04-03T02:15:20.000Z'}}]}}
Number of returned transfers:  46
Answer is complete
 
symbol             ICN
group              FCS
date        2018-04-02
hour             16:00
exchange       binance
Name: 446, dtype: object
HERE
 Symbol: ICN, Contract: 
Datetime timestamps:  2018-04-02 16:00:00 2018-04-02 04:00:00 2018-04-03 04:00:00
Unix timestamps:  1522634400.0 1522720800.0
Hex Block Numbers:  0x51da81 0x51f227
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            CHAT
group              FCS
date        2018-04-03
hour             16:00
exchange       binance
Name: 447, dtype: object
HERE
 Symbol: CHAT, Contract: 0x442bc47357919446eabc18c7211e57a13d983469
Datetime timestamps:  2018-04-03 16:00:00 2018-04-03 04:00:00 2018-04-04 04:00:00
Unix timestamps:  1522720800.0 1522807200.0
Hex Block Numbers:  0x51f227 0x52099d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x51f237', 'uniqueId': '0x48bca3f33ad0de9e8f64d01a9a83f15094d46ec97aeffb68908a0422ab8ad224:log:13', 'hash': '0x48bca3f33ad0de9e8f64d01a9a83f15094d46ec97aeffb68908a0422ab8ad224', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4acc8bf06a098465ca90974eaab656dab0868f96', 'value': 5143.022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0116cdc49c1a030b0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T02:04:59.000Z'}}, {'blockNum': '0x51f250', 'uniqueId': '0x6a8f4adead991142d2d079e850ea7c4509d1b2cb7c79be873bc0b7ceac4ae755:log:16', 'hash': '0x6a8f4adead991142d2d079e850ea7c4509d1b2cb7c79be873bc0b7ceac4ae755', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbbf003a9470defa253485c4de2b0ffc642ce9682', 'value': 25126.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x055218126fafdbec0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T02:10:38.000Z'}}, {'blockNum': '0x51f278', 'uniqueId': '0xf244eb49c9e9fd669e5518b937608d2aa1a565ac18aee26239ee647a6aa3c2ec:log:60', 'hash': '0xf244eb49c9e9fd669e5518b937608d2aa1a565ac18aee26239ee647a6aa3c2ec', 'from': '0x9aba62ea165bdb354cb8e5a622bfd55a852294e7', 'to': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'value': 5000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0422ca8b0a00a425000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T02:22:25.000Z'}}, {'blockNum': '0x51f2d3', 'uniqueId': '0xadc327c21664ba4bf526b0f61aec39a633c72e6eb5884cadf293ad81cbaaca4b:log:0', 'hash': '0xadc327c21664ba4bf526b0f61aec39a633c72e6eb5884cadf293ad81cbaaca4b', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x1aedbab0cdd00f7544aad6ddeed94139228eaef7', 'value': 1990.012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x6be0f6da76eca60000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T02:41:09.000Z'}}, {'blockNum': '0x51f331', 'uniqueId': '0xe9497a04b2ffaa06c8ca91cd74d855f1f4818ae4a94b1c50be6029630d171904:log:2', 'hash': '0xe9497a04b2ffaa06c8ca91cd74d855f1f4818ae4a94b1c50be6029630d171904', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdbe5b6bb03bfbad48d69e60e6a0bdf3e046f9d1d', 'value': 4612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xfa045b7c93a5900000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T03:03:44.000Z'}}, {'blockNum': '0x51f408', 'uniqueId': '0x767e0d730c5c435430b7c5a926193f1d43f2605ddd971f9008733f75774c5696:log:5', 'hash': '0x767e0d730c5c435430b7c5a926193f1d43f2605ddd971f9008733f75774c5696', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c77fdb7b851099f006bf77933dee283680c3b4a', 'value': 39520.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x085e64f32101a8940000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T03:51:33.000Z'}}, {'blockNum': '0x51f421', 'uniqueId': '0x7dc31bb67c4326cce358ed02b42a463b218f2f0488418a7db949b5d926c93abe:log:1', 'hash': '0x7dc31bb67c4326cce358ed02b42a463b218f2f0488418a7db949b5d926c93abe', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x87f6d25d1ae03d6ce8f31889e44be3ec5922b4da', 'value': 1966.885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x6aa0033e7f24308000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T03:59:20.000Z'}}, {'blockNum': '0x51f424', 'uniqueId': '0xc079dfc6f20e0f66efa5bc53cc75ad868abdd88ef567651f1c76d198e4d9af3d:log:0', 'hash': '0xc079dfc6f20e0f66efa5bc53cc75ad868abdd88ef567651f1c76d198e4d9af3d', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xa3de8621312f63d2617a40787d97c401d392307f', 'value': 1374.7929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4a87158a95c5204000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T04:00:00.000Z'}}, {'blockNum': '0x51f46b', 'uniqueId': '0x21ee8899484debb3880f932c0758cfc232b686fa6396304b5e8550762cbf6336:log:105', 'hash': '0x21ee8899484debb3880f932c0758cfc232b686fa6396304b5e8550762cbf6336', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0c77fdb7b851099f006bf77933dee283680c3b4a', 'value': 39650.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0865710fe83ca95c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T04:16:39.000Z'}}, {'blockNum': '0x51f61d', 'uniqueId': '0x90df443979ddf88e650d3e8962b8185a885b8d8e3f4c0a88b9f3d7afd1f9ba63:log:39', 'hash': '0x90df443979ddf88e650d3e8962b8185a885b8d8e3f4c0a88b9f3d7afd1f9ba63', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 44970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0985d6e4adab3f7c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T05:59:11.000Z'}}, {'blockNum': '0x51f667', 'uniqueId': '0x9011e0b5a731ff5dc5a27f3a7ec3e840b42cc437c52c1535e7e3ebbe7ab86764:log:17', 'hash': '0x9011e0b5a731ff5dc5a27f3a7ec3e840b42cc437c52c1535e7e3ebbe7ab86764', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'value': 69970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ed11796a5fdfd1c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T06:17:27.000Z'}}, {'blockNum': '0x51f8d0', 'uniqueId': '0xa0a4591a44c0b7a61f18d09b0fbf5f0bb9eaa0f86ae909ce42f07cd87813ea74:log:5', 'hash': '0xa0a4591a44c0b7a61f18d09b0fbf5f0bb9eaa0f86ae909ce42f07cd87813ea74', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x8699965c593315d06fd9dc54358687432a8a0ef7', 'value': 14998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x032d0b0fc130bc980000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:51:32.000Z'}}, {'blockNum': '0x51f8d2', 'uniqueId': '0xeb8b51ebef0b46c5ffb27e2afddd03472a7e917bb05f233c78e4f7bd8379e218:log:22', 'hash': '0xeb8b51ebef0b46c5ffb27e2afddd03472a7e917bb05f233c78e4f7bd8379e218', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x3b776e78df24df2f4124bef9cfa9fb29f710ed09', 'value': 6970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0179d82e575b78a80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:52:19.000Z'}}, {'blockNum': '0x51f8ef', 'uniqueId': '0x5bf300d16e527c228c6353f32797b0b2c34a0d5d4d1edb9f5536c87d8e49bfe9:log:20', 'hash': '0x5bf300d16e527c228c6353f32797b0b2c34a0d5d4d1edb9f5536c87d8e49bfe9', 'from': '0x3b776e78df24df2f4124bef9cfa9fb29f710ed09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x018ced298e61a2280000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:58:04.000Z'}}, {'blockNum': '0x51f8ef', 'uniqueId': '0x3b4c97b0c364c9a0b04919c72a57cc74429a52c193edd5bbb78fc716bf1bf6c0:log:22', 'hash': '0x3b4c97b0c364c9a0b04919c72a57cc74429a52c193edd5bbb78fc716bf1bf6c0', 'from': '0x8699965c593315d06fd9dc54358687432a8a0ef7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x032d0b0fc130bc980000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:58:04.000Z'}}, {'blockNum': '0x51f8f5', 'uniqueId': '0x133319f73bc36e219cc9ebf90755c4073b9754ab4035884a44a6af53f4ac2c91:log:111', 'hash': '0x133319f73bc36e219cc9ebf90755c4073b9754ab4035884a44a6af53f4ac2c91', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x3f16c9bf6e41b6d4910fa65387139d2d70309e62', 'value': 495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x1ad5814560aa5c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T08:59:27.000Z'}}, {'blockNum': '0x51f943', 'uniqueId': '0xf91dc112ecc2d6f6be29074c13d037de7f3707bb566a5671f55effadfd0945eb:log:46', 'hash': '0xf91dc112ecc2d6f6be29074c13d037de7f3707bb566a5671f55effadfd0945eb', 'from': '0x3f16c9bf6e41b6d4910fa65387139d2d70309e62', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3676.878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xc752eec410c0bb0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T09:18:07.000Z'}}, {'blockNum': '0x51f991', 'uniqueId': '0x1e4ad78923b2fe032eb0f7d59c49ea7a720413f680c924b3fdc6969f99e33f28:log:13', 'hash': '0x1e4ad78923b2fe032eb0f7d59c49ea7a720413f680c924b3fdc6969f99e33f28', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x35b0352c6b8891c9a4475a7d3900d01e011262ab', 'value': 2963.73852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xa0aa2261615df18000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T09:36:44.000Z'}}, {'blockNum': '0x51f9b5', 'uniqueId': '0xa5665905aa3696f6b3c74264e0ff59367601d467e6954a0d8039f221a61e1637:log:63', 'hash': '0xa5665905aa3696f6b3c74264e0ff59367601d467e6954a0d8039f221a61e1637', 'from': '0x4558faa601ab08a3dc733b39a4c755a101a19218', 'to': '0x86904e32b0d7a8e1ab4dc4a02bae7ff93e9a2d33', 'value': 3000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x027b46536c66c8e3000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T09:45:02.000Z'}}, {'blockNum': '0x51fa53', 'uniqueId': '0xa4fc94934951315caf440cf9d03183939df4d488b701d916db9209412c78fa79:log:71', 'hash': '0xa4fc94934951315caf440cf9d03183939df4d488b701d916db9209412c78fa79', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0760f72dd5fc12611043b1e1c8ce2ef970ac4d64', 'value': 20134.043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x044377f9f9c4b02f8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:21:48.000Z'}}, {'blockNum': '0x51fac5', 'uniqueId': '0xda991297bbb163c93bcb3d0043273cb549793344e8c24abcf558dc898391e6ba:log:0', 'hash': '0xda991297bbb163c93bcb3d0043273cb549793344e8c24abcf558dc898391e6ba', 'from': '0xb287a379e6caca6732e50b88d23c290aa990a892', 'to': '0xda315dbcc6f6f07d2dc77de974b9d14ef61b2bfd', 'value': 816.2123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x2c3f389a5f3490c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:47:59.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0x9218788c0ffa3c77f8c67270bb59e79a8dc9b3f3d44723be1357be05907ffc15:log:14', 'hash': '0x9218788c0ffa3c77f8c67270bb59e79a8dc9b3f3d44723be1357be05907ffc15', 'from': '0x089ce6ca335031fd914f74bb0db6d2f26e31f6bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250.37424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d92a3fcbd8c660000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0x99da65c8ab10754190416a3e837d763f8dc858d4cea65691d4e25a1ede26910b:log:15', 'hash': '0x99da65c8ab10754190416a3e837d763f8dc858d4cea65691d4e25a1ede26910b', 'from': '0x684f7f7286425ff9bd04f50d67062ee45d4a28b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 259.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e10de9e44de9b0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0xd7577b7cedb03b563aaf57fd36517183cb42d6580416640a0003da24e3d91f36:log:16', 'hash': '0xd7577b7cedb03b563aaf57fd36517183cb42d6580416640a0003da24e3d91f36', 'from': '0xa42d8e521702827a74b91fce309c847d010d3253', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 276.1044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ef7b7e0efaa5d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0x4db6f94f0fb9ac8b060ea07139ae1e07aee968593d974b945687e2fa01c6191f:log:17', 'hash': '0x4db6f94f0fb9ac8b060ea07139ae1e07aee968593d974b945687e2fa01c6191f', 'from': '0xda555e2e8c07cacdb6e0947164da442ffc7bc90c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 254.4453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0dcb234c3db3b34000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0xd0ef67d17158b0ad5d1be5b30efd7d63c75ca3c20dd666d919ee1c5e19ac1f08:log:18', 'hash': '0xd0ef67d17158b0ad5d1be5b30efd7d63c75ca3c20dd666d919ee1c5e19ac1f08', 'from': '0x06fa368e7fcc4dc5fef2160f821b0b6324d0a3c7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 270.28098337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ea6e6f25d701c6400', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0xa34f6384470c1166b0e23a159aace836f55c7e718371556b3fd58c84500526b4:log:19', 'hash': '0xa34f6384470c1166b0e23a159aace836f55c7e718371556b3fd58c84500526b4', 'from': '0x5e9dc0597865b58947fb3f7e60632032505b6469', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 253.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0dbe9306b0008a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac6', 'uniqueId': '0xac6b31abf21192a390ee7d55133363e69fb57add647bb7b5bad15de2339688e2:log:22', 'hash': '0xac6b31abf21192a390ee7d55133363e69fb57add647bb7b5bad15de2339688e2', 'from': '0xb864f826adac7aa5da962af744e73da7e92ccb84', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 254.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0dcf3a485463020000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:48:11.000Z'}}, {'blockNum': '0x51fac8', 'uniqueId': '0xcaf7086e403b585907b100d4e986feedfe0872cbbadc451985fec33f8ae51a45:log:63', 'hash': '0xcaf7086e403b585907b100d4e986feedfe0872cbbadc451985fec33f8ae51a45', 'from': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 69970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ed11796a5fdfd1c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:49:00.000Z'}}, {'blockNum': '0x51fac8', 'uniqueId': '0x6f82f212de1f46a365f28aa3dca937e6ed0b9658f268b559d2f978c1dda912a1:log:66', 'hash': '0x6f82f212de1f46a365f28aa3dca937e6ed0b9658f268b559d2f978c1dda912a1', 'from': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 44970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0985d6e4adab3f7c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:49:00.000Z'}}, {'blockNum': '0x51fac9', 'uniqueId': '0x96377ad0e86fc18f09a1fdc30ecc75e6edf01ffd51d3288a739199f6c741512d:log:32', 'hash': '0x96377ad0e86fc18f09a1fdc30ecc75e6edf01ffd51d3288a739199f6c741512d', 'from': '0xd28254478bc90f4f802d793e88a1db9e70a5e25d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 260.3382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e1ceb1591b0998000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:49:15.000Z'}}, {'blockNum': '0x51fac9', 'uniqueId': '0x8b34bd9fd496c2e0d2636c9be53923781cb6c893ae5868e2fcd39eee1a060c18:log:34', 'hash': '0x8b34bd9fd496c2e0d2636c9be53923781cb6c893ae5868e2fcd39eee1a060c18', 'from': '0x331059d32e36357ebfb2c89078f254fffe0d3a64', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 262.697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e3da739abf0ca8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:49:15.000Z'}}, {'blockNum': '0x51fad8', 'uniqueId': '0x13dd5e83261435f98292ad988c3217fe323c0c488bcd945864015a50b264ee67:log:226', 'hash': '0x13dd5e83261435f98292ad988c3217fe323c0c488bcd945864015a50b264ee67', 'from': '0x6eb445ddb88064df503700147d1ebfcac67f4f83', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 2538.1932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x899881b379e0030000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:54:50.000Z'}}, {'blockNum': '0x51fae2', 'uniqueId': '0xa39ac077eb8ea1a9551586ae052ed799d467cf9e9ae6cbd6b17c9a658988dc19:log:66', 'hash': '0xa39ac077eb8ea1a9551586ae052ed799d467cf9e9ae6cbd6b17c9a658988dc19', 'from': '0x51b0ef88c02fe244f21b2a1f252859e9b1cf616e', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 2201.796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x775c0ec46283f9ffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:57:28.000Z'}}, {'blockNum': '0x51fae4', 'uniqueId': '0x390685dff7f408fc0a0951f9e75f62fd96dde5b6e9535063398d7f060abcc59b:log:36', 'hash': '0x390685dff7f408fc0a0951f9e75f62fd96dde5b6e9535063398d7f060abcc59b', 'from': '0xe98b5f9308c1fcc616da79ebb20565b5b13432a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 284.73538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f7f47846ddd4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:58:23.000Z'}}, {'blockNum': '0x51fae4', 'uniqueId': '0x69ff05559a6642dcbb026befe0331a60beb63646d574bbde4f2970dc45db5246:log:37', 'hash': '0x69ff05559a6642dcbb026befe0331a60beb63646d574bbde4f2970dc45db5246', 'from': '0x87e84156ba06a5161ce7876caa2a37f164377e95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 258.9408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0e098685ac3f780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:58:23.000Z'}}, {'blockNum': '0x51fae4', 'uniqueId': '0x2f784e5c41c7df210a617fae5d7e0e4c77ac7a2a12dd7da94758d1a5d8af7eb9:log:40', 'hash': '0x2f784e5c41c7df210a617fae5d7e0e4c77ac7a2a12dd7da94758d1a5d8af7eb9', 'from': '0x1d51101099b9b53944cda862510e5dea91b61c2b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 276.7398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0f008945dea4a58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T10:58:23.000Z'}}, {'blockNum': '0x51fbf7', 'uniqueId': '0xbb42f45d29dc4c37323c21ed71396159f952f6c349663dffbd4cd5db3772307e:log:2', 'hash': '0xbb42f45d29dc4c37323c21ed71396159f952f6c349663dffbd4cd5db3772307e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T11:58:30.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x8797f1a0a22d2fe864b901053a9fe2f4683daeb1d89e46165619fd04c05cbded:log:6', 'hash': '0x8797f1a0a22d2fe864b901053a9fe2f4683daeb1d89e46165619fd04c05cbded', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x7e0839c8b6b9114f489cdf5d0c070ed248ec359eceec20bea450dc26bfbde05b:log:31', 'hash': '0x7e0839c8b6b9114f489cdf5d0c070ed248ec359eceec20bea450dc26bfbde05b', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x99ad8a12c2f010d2164c7edfc83a757cb7da5bd3a77a85a0b77eaa95aba5fa92:log:35', 'hash': '0x99ad8a12c2f010d2164c7edfc83a757cb7da5bd3a77a85a0b77eaa95aba5fa92', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x20b275b119f1d1832bc5d6b198aed06fee1b94bd685a9c60b195e4ce6bb1bb40:log:38', 'hash': '0x20b275b119f1d1832bc5d6b198aed06fee1b94bd685a9c60b195e4ce6bb1bb40', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc11', 'uniqueId': '0x7a4989b792baeba3f4613c35ce3b0ad5bcb920b5c6c0c73517005b65dce6095c:log:41', 'hash': '0x7a4989b792baeba3f4613c35ce3b0ad5bcb920b5c6c0c73517005b65dce6095c', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'value': 49980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a956bd5aa9c67700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:03:41.000Z'}}, {'blockNum': '0x51fc28', 'uniqueId': '0x49223c359c360b593d1a2c67bde3df0e77c58097271d2bca6907ffcdfac8a68e:log:50', 'hash': '0x49223c359c360b593d1a2c67bde3df0e77c58097271d2bca6907ffcdfac8a68e', 'from': '0x7534cc7de3cbd0aaf17bfc827954f7c495ed568b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 299880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3f808701ffaa6ca00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:08:33.000Z'}}, {'blockNum': '0x51fca0', 'uniqueId': '0x030b39aa6b2d6883dbfa328fa79d5985aea998682e8ab4cc30756e9eee2ced36:log:10', 'hash': '0x030b39aa6b2d6883dbfa328fa79d5985aea998682e8ab4cc30756e9eee2ced36', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x13e7ff7b91bb720f1da60955524fe9de8fb90264', 'value': 15900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x035df0d37e3086f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:38:36.000Z'}}, {'blockNum': '0x51fcc7', 'uniqueId': '0xc22a99afe35877dc772538a0d412fd9151b1ef4bdc4e2886027d965723f96995:log:18', 'hash': '0xc22a99afe35877dc772538a0d412fd9151b1ef4bdc4e2886027d965723f96995', 'from': '0x13e7ff7b91bb720f1da60955524fe9de8fb90264', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x035df0d37e3086f00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:48:08.000Z'}}, {'blockNum': '0x51fcee', 'uniqueId': '0x4c1cf3cdb9b937bf608c9037e1760dc7891ca7045fca5dfe76bd16ce3cb60921:log:59', 'hash': '0x4c1cf3cdb9b937bf608c9037e1760dc7891ca7045fca5dfe76bd16ce3cb60921', 'from': '0xb287a379e6caca6732e50b88d23c290aa990a892', 'to': '0xda315dbcc6f6f07d2dc77de974b9d14ef61b2bfd', 'value': 3581.6569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xc22979761e52c84000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:57:47.000Z'}}, {'blockNum': '0x51fcee', 'uniqueId': '0x36139bd247c7bf59a05f3a2ef2d95ae8cf02a5cf7795d85216e548e99487dad6:log:129', 'hash': '0x36139bd247c7bf59a05f3a2ef2d95ae8cf02a5cf7795d85216e548e99487dad6', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x02d04a2aa674f73c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T12:57:47.000Z'}}, {'blockNum': '0x51fd0b', 'uniqueId': '0x7b693168947ec6632fe235b0b266ccf6aa6645efaedce4255e289956ab143279:log:23', 'hash': '0x7b693168947ec6632fe235b0b266ccf6aa6645efaedce4255e289956ab143279', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'value': 37000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07d5c6261d992d200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:04:12.000Z'}}, {'blockNum': '0x51fd11', 'uniqueId': '0x49db7e73cd6322c079dbe4c02862eb5e7b9bfa3f19e08ac57f9bda28b0e6d7f0:log:8', 'hash': '0x49db7e73cd6322c079dbe4c02862eb5e7b9bfa3f19e08ac57f9bda28b0e6d7f0', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcde34e809e983e4813a060bec0c43c2112959db3', 'value': 20119.6523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0442b043f05d0ef8c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:06:12.000Z'}}, {'blockNum': '0x51fd15', 'uniqueId': '0x18deb132294ef2796ccd2b2b15efa108a8ff65902c28a50bfdf5e40369386693:log:0', 'hash': '0x18deb132294ef2796ccd2b2b15efa108a8ff65902c28a50bfdf5e40369386693', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 3569.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xc17d6ed34002be0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:06:54.000Z'}}, {'blockNum': '0x51fd16', 'uniqueId': '0xfd768cc80dfaebcf6c0c065d1f23d60cb94412b9e8992cde0abe50f212d3f485:log:5', 'hash': '0xfd768cc80dfaebcf6c0c065d1f23d60cb94412b9e8992cde0abe50f212d3f485', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 2602.015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8d0e36486f06098000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:07:30.000Z'}}, {'blockNum': '0x51fd1b', 'uniqueId': '0x84ec8cee2216018be8778933613c9f74e7562649b74fe5115a0fae953fb4cdc0:log:33', 'hash': '0x84ec8cee2216018be8778933613c9f74e7562649b74fe5115a0fae953fb4cdc0', 'from': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x07d5c6261d992d200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:08:29.000Z'}}, {'blockNum': '0x51fd1c', 'uniqueId': '0x302d22866cf867c2f8413c3f05ef5f9ac4dc45674ea13dda95036a183dedb550:log:9', 'hash': '0x302d22866cf867c2f8413c3f05ef5f9ac4dc45674ea13dda95036a183dedb550', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x13e7ff7b91bb720f1da60955524fe9de8fb90264', 'value': 3389.7867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xb7c2bd93ca53a0c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:08:58.000Z'}}, {'blockNum': '0x51fd41', 'uniqueId': '0xf01b4ca37e8fa1bc731c7f7aff8851394b9df317d61cf8f21755a6189611df85:log:39', 'hash': '0xf01b4ca37e8fa1bc731c7f7aff8851394b9df317d61cf8f21755a6189611df85', 'from': '0x13e7ff7b91bb720f1da60955524fe9de8fb90264', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3389.7867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xb7c2bd93ca53a0c000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:18:05.000Z'}}, {'blockNum': '0x51fd41', 'uniqueId': '0x774b284af6e0ff6c8dfb0c1fa830af80aa13705f4f33eb293a0c64815283c774:log:54', 'hash': '0x774b284af6e0ff6c8dfb0c1fa830af80aa13705f4f33eb293a0c64815283c774', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2602.015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8d0e36486f06098000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:18:05.000Z'}}, {'blockNum': '0x51fd4c', 'uniqueId': '0x4b24fd8db14fca9125801396a388524ae6ddb68a8052d2cdc67505e87889326e:log:3', 'hash': '0x4b24fd8db14fca9125801396a388524ae6ddb68a8052d2cdc67505e87889326e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x237f549f9db2df3fe5c2ccee3650d1c19d749423', 'value': 161.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x08ba72e07010de8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:22:05.000Z'}}, {'blockNum': '0x51fd7b', 'uniqueId': '0x5240ba0641154812291a7c2f44cc9c9e293595eb00d596625cbc19efc339eb70:log:2', 'hash': '0x5240ba0641154812291a7c2f44cc9c9e293595eb00d596625cbc19efc339eb70', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x60ac44b0a5e6f016fef8a9c142d49d1623f5b885', 'value': 980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x35203b67bccad00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:33:42.000Z'}}, {'blockNum': '0x51fd89', 'uniqueId': '0x0c491055c2f18f471c32d1f6c0ff96bb56ca971c973fff8ea7e5ea50f033b03d:log:0', 'hash': '0x0c491055c2f18f471c32d1f6c0ff96bb56ca971c973fff8ea7e5ea50f033b03d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x81ac104abc9d06043dd338b9cc6dcbd48caef1bf', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:36:10.000Z'}}, {'blockNum': '0x51fdd3', 'uniqueId': '0xcb00053ef08b738ea56aa2b37881606919dea85dbb242dd45a87b2be879fd0b2:log:42', 'hash': '0xcb00053ef08b738ea56aa2b37881606919dea85dbb242dd45a87b2be879fd0b2', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x23b36f6961f7d0d031cf92c957d2500226e8561d', 'value': 4389.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xedeeff9b8d32fe0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T13:56:31.000Z'}}, {'blockNum': '0x51fdf3', 'uniqueId': '0x6535d68b37f201a718fade86804ffb8214d5885a637325d43a6dbc61cb988f39:log:40', 'hash': '0x6535d68b37f201a718fade86804ffb8214d5885a637325d43a6dbc61cb988f39', 'from': '0x23b36f6961f7d0d031cf92c957d2500226e8561d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4389.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xedeeff9b8d32fe0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:07:49.000Z'}}, {'blockNum': '0x51fe1b', 'uniqueId': '0xdbbf6e31e3e8c9e352d568264c92fa397f3f7fb97b1e1441415b565f66f15aaa:log:30', 'hash': '0xdbbf6e31e3e8c9e352d568264c92fa397f3f7fb97b1e1441415b565f66f15aaa', 'from': '0xcfe0909dc95c2b22510ea81f648efb4b63c8021a', 'to': '0x7b2d7224bcd47a27b7f7485a2c8e9a0938b9330e', 'value': 2424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8367c1f518fae00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:18:02.000Z'}}, {'blockNum': '0x51fe49', 'uniqueId': '0xffc20c1799b4237b628700ae926256d5d65e9228d43868d9d3717b732bde94fc:log:6', 'hash': '0xffc20c1799b4237b628700ae926256d5d65e9228d43868d9d3717b732bde94fc', 'from': '0x7b2d7224bcd47a27b7f7485a2c8e9a0938b9330e', 'to': '0x60ac44b0a5e6f016fef8a9c142d49d1623f5b885', 'value': 2424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8367c1f518fae00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:29:36.000Z'}}, {'blockNum': '0x51fe81', 'uniqueId': '0x6d4111cc52aae08974d2da5fe7c243f58828a682791b09f17d19a5909b54db82:log:30', 'hash': '0x6d4111cc52aae08974d2da5fe7c243f58828a682791b09f17d19a5909b54db82', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 45000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x098774738bc822200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:42:56.000Z'}}, {'blockNum': '0x51fe9d', 'uniqueId': '0xc6c45fe6975c697906d49f2f63abfdc0e03760c4b510d5a38edc1f40d2cf2958:log:8', 'hash': '0xc6c45fe6975c697906d49f2f63abfdc0e03760c4b510d5a38edc1f40d2cf2958', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x098774738bc822200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T14:48:05.000Z'}}, {'blockNum': '0x51fed5', 'uniqueId': '0x6d2c5e8b5dec5a3c5a96e736747f0a6d599b9495647b252358b9b95e9a0a424d:log:0', 'hash': '0x6d2c5e8b5dec5a3c5a96e736747f0a6d599b9495647b252358b9b95e9a0a424d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:03:33.000Z'}}, {'blockNum': '0x51fed8', 'uniqueId': '0x67487ea16570a82b17d90e239a372213969f4f7aa3f46f8dedc1328709a798c6:log:0', 'hash': '0x67487ea16570a82b17d90e239a372213969f4f7aa3f46f8dedc1328709a798c6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'value': 62641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d43c6818dc20c240000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:04:26.000Z'}}, {'blockNum': '0x51feea', 'uniqueId': '0x07d577b78c6c6d044aad96372da7751a1f48413f60a577ba2f956202582026a4:log:13', 'hash': '0x07d577b78c6c6d044aad96372da7751a1f48413f60a577ba2f956202582026a4', 'from': '0x7d10bc73cc7bc1f67ff97280ee644b384ae92078', 'to': '0x15edbd168ddf304f0eef684f96ae85b0d9b03598', 'value': 23304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x04ef4ff7921dc7200000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:08:30.000Z'}}, {'blockNum': '0x51feea', 'uniqueId': '0xbc4d7e38b04cb9000896e71a111f31b84ba89dead3a4aaa81841366189f9db7e:log:72', 'hash': '0xbc4d7e38b04cb9000896e71a111f31b84ba89dead3a4aaa81841366189f9db7e', 'from': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d43c6818dc20c240000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:08:30.000Z'}}, {'blockNum': '0x51feea', 'uniqueId': '0xfcf39693499faa61759f1fe32c1663da263efd635008e9a6552d1c02ef8303af:log:73', 'hash': '0xfcf39693499faa61759f1fe32c1663da263efd635008e9a6552d1c02ef8303af', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:08:30.000Z'}}, {'blockNum': '0x51fef3', 'uniqueId': '0xd5ca85ed1a5d6d027c5ddacd4356b07574fc47f52c46b8ccded57d9b57a0ea9e:log:1', 'hash': '0xd5ca85ed1a5d6d027c5ddacd4356b07574fc47f52c46b8ccded57d9b57a0ea9e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xbcafad91cc7fc97b4f2611fb57c66a1e0897dfa0', 'value': 6460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x015e32825d73ff700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:11:45.000Z'}}, {'blockNum': '0x51fefe', 'uniqueId': '0xee2ff1080a9fb854c42a1cc852c4ee47ffad7af3e822a2142406db447dbfad47:log:0', 'hash': '0xee2ff1080a9fb854c42a1cc852c4ee47ffad7af3e822a2142406db447dbfad47', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x46f8016eeee6d7a7a6896be67d48d78a765f6af3', 'value': 119.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x067c56aa1ebfbc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:14:41.000Z'}}, {'blockNum': '0x51fefe', 'uniqueId': '0xe275e1715fdcec832f6e60cac4ff162ada1e27446d906e7888edc27b3c5f21f2:log:15', 'hash': '0xe275e1715fdcec832f6e60cac4ff162ada1e27446d906e7888edc27b3c5f21f2', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x3b7fe2aa641b3011d684376486cc6279f9f6556c', 'value': 10537.34906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x023b3b1824cd4c504000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:14:41.000Z'}}, {'blockNum': '0x51ff0d', 'uniqueId': '0xdc74e056aa1da4ce16a6dff5d0499b1319f65ea595318426f5825ed725174299:log:6', 'hash': '0xdc74e056aa1da4ce16a6dff5d0499b1319f65ea595318426f5825ed725174299', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3b61dac91de481624818dbb5993184d2733084fe', 'value': 9969.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021c6bb552755b778000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:17:21.000Z'}}, {'blockNum': '0x51ff11', 'uniqueId': '0xbdbc22e5bbdada1ccad6369904e987c7ccfac3904f0b87987f2947ae3d1ae7e0:log:13', 'hash': '0xbdbc22e5bbdada1ccad6369904e987c7ccfac3904f0b87987f2947ae3d1ae7e0', 'from': '0xbcafad91cc7fc97b4f2611fb57c66a1e0897dfa0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x015e32825d73ff700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:18:02.000Z'}}, {'blockNum': '0x51ff11', 'uniqueId': '0x379e0c0377348f9edeac1a7d99ff0223ba9c58f0fc2e59264a312ea3fd94e027:log:14', 'hash': '0x379e0c0377348f9edeac1a7d99ff0223ba9c58f0fc2e59264a312ea3fd94e027', 'from': '0x3b7fe2aa641b3011d684376486cc6279f9f6556c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10537.34906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x023b3b1824cd4c504000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:18:02.000Z'}}, {'blockNum': '0x51ff12', 'uniqueId': '0x46b3f886e207cc24046ac583e1731197a3bcbf19bd1d52fbab4845e8614201be:log:46', 'hash': '0x46b3f886e207cc24046ac583e1731197a3bcbf19bd1d52fbab4845e8614201be', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 57000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c11f9e7b10e91a00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:18:14.000Z'}}, {'blockNum': '0x51ff15', 'uniqueId': '0x2567a2f40f887d615c48d9b33d626186be59c4b30e99107373f5a818860ab204:log:0', 'hash': '0x2567a2f40f887d615c48d9b33d626186be59c4b30e99107373f5a818860ab204', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3b61dac91de481624818dbb5993184d2733084fe', 'value': 9950.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021b64d244529f3e0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:18:37.000Z'}}, {'blockNum': '0x51ff1b', 'uniqueId': '0x50392b2894828b18bb6b96fbd385399e4280096cb484948dba1d7db21b49aff0:log:0', 'hash': '0x50392b2894828b18bb6b96fbd385399e4280096cb484948dba1d7db21b49aff0', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3b61dac91de481624818dbb5993184d2733084fe', 'value': 9960.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x021bef2ed27fd9e30000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:19:50.000Z'}}, {'blockNum': '0x51ff23', 'uniqueId': '0xb23cd1b4ecc5269efd9dd1c74a2a3ce83e86ba0188185228a7a3c0ecf9b2a899:log:2', 'hash': '0xb23cd1b4ecc5269efd9dd1c74a2a3ce83e86ba0188185228a7a3c0ecf9b2a899', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0x3b61dac91de481624818dbb5993184d2733084fe', 'value': 1357.0518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4990e07e21a4718000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:21:07.000Z'}}, {'blockNum': '0x51ff48', 'uniqueId': '0x45edf0a22336d23986f02d12d80a5a7de8eae8ebab95fba9aaa620922c696d5b:log:13', 'hash': '0x45edf0a22336d23986f02d12d80a5a7de8eae8ebab95fba9aaa620922c696d5b', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c11f9e7b10e91a00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:28:06.000Z'}}, {'blockNum': '0x51ff48', 'uniqueId': '0x5b376167e99cc3a6c0284e24574c6337c947ba4fca0920b16c6a2eac5fcffc6b:log:14', 'hash': '0x5b376167e99cc3a6c0284e24574c6337c947ba4fca0920b16c6a2eac5fcffc6b', 'from': '0x3b61dac91de481624818dbb5993184d2733084fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31236.1448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x069d5096e769790a0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:28:06.000Z'}}, {'blockNum': '0x51ff4c', 'uniqueId': '0x856066126729281bcf827f1861c5b2465ff7f9ed58c050a5341a1a60b3e83155:log:8', 'hash': '0x856066126729281bcf827f1861c5b2465ff7f9ed58c050a5341a1a60b3e83155', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'value': 5415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01258c389219b43c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:29:18.000Z'}}, {'blockNum': '0x51ff52', 'uniqueId': '0x7bd690eca92c0d20608172ad383e4129136c0748e017fd46867c7f2ebdfb33c3:log:0', 'hash': '0x7bd690eca92c0d20608172ad383e4129136c0748e017fd46867c7f2ebdfb33c3', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'value': 48701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a501624df0b1ad40000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:30:09.000Z'}}, {'blockNum': '0x51ff56', 'uniqueId': '0xf62d22f83904d1e46d3894aba3b1462fb7b76a18342ace4afe90909558d1f76b:log:42', 'hash': '0xf62d22f83904d1e46d3894aba3b1462fb7b76a18342ace4afe90909558d1f76b', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:31:41.000Z'}}, {'blockNum': '0x51ff56', 'uniqueId': '0xe96d16c339c04f4c41125d77e922e02cc5051a391d38ba3ee5fdd485e8e3c4fc:log:52', 'hash': '0xe96d16c339c04f4c41125d77e922e02cc5051a391d38ba3ee5fdd485e8e3c4fc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x7a6169f118f3f0fc9231cff169f00939a10d5cbb', 'value': 48177.29686582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a33b24d95346d321800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:31:41.000Z'}}, {'blockNum': '0x51ff6f', 'uniqueId': '0x3868af629a594cfb8ed03c33513f8aba603e05fce233ceeefd0372dba80dc650:log:46', 'hash': '0x3868af629a594cfb8ed03c33513f8aba603e05fce233ceeefd0372dba80dc650', 'from': '0x305ee474226c52306cc97e26c8cd2e6ebcfbac39', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b75a25d7124cf100000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:38:04.000Z'}}, {'blockNum': '0x51ff6f', 'uniqueId': '0x3c6b713890624b2cb4fccce1f6660710b13a255bc982e193f5c80ea18d835713:log:48', 'hash': '0x3c6b713890624b2cb4fccce1f6660710b13a255bc982e193f5c80ea18d835713', 'from': '0x7a6169f118f3f0fc9231cff169f00939a10d5cbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48177.29686582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a33b24d95346d321800', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:38:04.000Z'}}, {'blockNum': '0x51ff6f', 'uniqueId': '0xdc22de12a7f904a6230f86d1a940aa4535425776286729b3f4276ad746026f67:log:49', 'hash': '0xdc22de12a7f904a6230f86d1a940aa4535425776286729b3f4276ad746026f67', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:38:04.000Z'}}, {'blockNum': '0x51ff90', 'uniqueId': '0x2378cf230a02d43008053d5b72d46d3bda9a013b33140aded807000805adacca:log:56', 'hash': '0x2378cf230a02d43008053d5b72d46d3bda9a013b33140aded807000805adacca', 'from': '0x4558faa601ab08a3dc733b39a4c755a101a19218', 'to': '0x86904e32b0d7a8e1ab4dc4a02bae7ff93e9a2d33', 'value': 312700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x4237803f5c6508700000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:46:47.000Z'}}, {'blockNum': '0x51ffa8', 'uniqueId': '0xb74e719fca2e2bd40fbcadb32576f0db884770dc9054058ff05430f7ecb378a1:log:13', 'hash': '0xb74e719fca2e2bd40fbcadb32576f0db884770dc9054058ff05430f7ecb378a1', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x8694da2db5fa2193d9d0d4e462e8d03ba13b28c0', 'value': 29993.432800000002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0659f27efb9516000000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:52:08.000Z'}}, {'blockNum': '0x51ffbf', 'uniqueId': '0x605a4a5707695a990a85e28bbe3a5d0017b10d06d80ddc17938128b3dbcbaa61:log:8', 'hash': '0x605a4a5707695a990a85e28bbe3a5d0017b10d06d80ddc17938128b3dbcbaa61', 'from': '0x4558faa601ab08a3dc733b39a4c755a101a19218', 'to': '0x86904e32b0d7a8e1ab4dc4a02bae7ff93e9a2d33', 'value': 2814300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0253f3823a3f8d4bf00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T15:56:33.000Z'}}, {'blockNum': '0x51ffda', 'uniqueId': '0xf4f6d0516d661402feff21bf27c1434cdd48a349e8baf5e85632cf43e41d9263:log:65', 'hash': '0xf4f6d0516d661402feff21bf27c1434cdd48a349e8baf5e85632cf43e41d9263', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:04:18.000Z'}}, {'blockNum': '0x51ffec', 'uniqueId': '0x5ba3e7b8d192e1b635bdbf92c3e12fb45c5a60432318cdb2613447a1c13df2f2:log:47', 'hash': '0x5ba3e7b8d192e1b635bdbf92c3e12fb45c5a60432318cdb2613447a1c13df2f2', 'from': '0xd20278bd5298fda34bb4af829151b3f8fdb1d62d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:08:37.000Z'}}, {'blockNum': '0x51fff8', 'uniqueId': '0x4fc864180c556ce92513e94dccafdfcfadaf1faf5f446a185c580b4e5d8dc323:log:57', 'hash': '0x4fc864180c556ce92513e94dccafdfcfadaf1faf5f446a185c580b4e5d8dc323', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf745e1c9e313ad4c37c8bf10be4533014aa77c00', 'value': 60558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cd2db12f5f709780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:12:35.000Z'}}, {'blockNum': '0x52000d', 'uniqueId': '0x1d8170e60951867f21043df2fb12127a085a3080b3da40a8551267b5725335ad:log:27', 'hash': '0x1d8170e60951867f21043df2fb12127a085a3080b3da40a8551267b5725335ad', 'from': '0xf745e1c9e313ad4c37c8bf10be4533014aa77c00', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cd2db12f5f709780000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:18:16.000Z'}}, {'blockNum': '0x520010', 'uniqueId': '0xa0083034826ea707ed3d5ebb662386659f07aa94019100f815112489bd9b95e8:log:0', 'hash': '0xa0083034826ea707ed3d5ebb662386659f07aa94019100f815112489bd9b95e8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 29970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0658b0137f13341c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:18:24.000Z'}}, {'blockNum': '0x52001e', 'uniqueId': '0x873f89a154243abcdc2d63dc328cdb0a7d157b1a5448facd3f038db0eed941db:log:2', 'hash': '0x873f89a154243abcdc2d63dc328cdb0a7d157b1a5448facd3f038db0eed941db', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x353f370c7658334db13539117638a90dea955b88', 'value': 18642.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x03f299beafea18e50000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:20:36.000Z'}}, {'blockNum': '0x520026', 'uniqueId': '0x70a5a1e002016adcc16917408138f362d6affb72125ff8d6ffa26e6237a77cd1:log:26', 'hash': '0x70a5a1e002016adcc16917408138f362d6affb72125ff8d6ffa26e6237a77cd1', 'from': '0xb7e285d4cb46050ad8ba957af9b6a6f6e28d540d', 'to': '0xd3d3b4e4e9a4c8d803bf23ad6740e596497a98e2', 'value': 186.7615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a1fd622bec31dc000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:24:04.000Z'}}, {'blockNum': '0x520048', 'uniqueId': '0x4bf67e1c9fe13203af34231e070e93dca08a8ef0c64d654ec5d662006efb5d3f:log:2', 'hash': '0x4bf67e1c9fe13203af34231e070e93dca08a8ef0c64d654ec5d662006efb5d3f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb378781eca3fc6c307bfa6b53ec022f9ccef3e81', 'value': 64049.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d901d34f4cb6d380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:30:17.000Z'}}, {'blockNum': '0x520067', 'uniqueId': '0xab6fff6a596b904963ce2335225c423e41500d3920532775a8866f3019bf5278:log:48', 'hash': '0xab6fff6a596b904963ce2335225c423e41500d3920532775a8866f3019bf5278', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 39970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0876c9f448cde65c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:38:04.000Z'}}, {'blockNum': '0x520078', 'uniqueId': '0xfb3c38c74ca880ae1a4ed066f2d89a1448ae9cbcf2bf72bd85d5c1cccf5f7f29:log:6', 'hash': '0xfb3c38c74ca880ae1a4ed066f2d89a1448ae9cbcf2bf72bd85d5c1cccf5f7f29', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb424c7e42ba869b1f1a5c3eb92b90aff8532c560', 'value': 1076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3a547feb1b90500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:42:27.000Z'}}, {'blockNum': '0x520082', 'uniqueId': '0x96f080c1073163daec61336bbec19a89aed46a1e743e0d8c272ed5afacbe952d:log:129', 'hash': '0x96f080c1073163daec61336bbec19a89aed46a1e743e0d8c272ed5afacbe952d', 'from': '0xb424c7e42ba869b1f1a5c3eb92b90aff8532c560', 'to': '0x9aa4b42c26f19244d4682684d3ab73a6d7f4d69a', 'value': 1076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x3a547feb1b90500000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:44:16.000Z'}}, {'blockNum': '0x520089', 'uniqueId': '0x73fabc99983503acec3c898311ab24b4bbcde686f110cf6aedd08081c53a29c8:log:9', 'hash': '0x73fabc99983503acec3c898311ab24b4bbcde686f110cf6aedd08081c53a29c8', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:47:59.000Z'}}, {'blockNum': '0x5200a3', 'uniqueId': '0xe09ea043f4a30c0ad6c3d0699675a9e828d6ce26c0586e4cc5b1919c30e09a27:log:159', 'hash': '0xe09ea043f4a30c0ad6c3d0699675a9e828d6ce26c0586e4cc5b1919c30e09a27', 'from': '0xb378781eca3fc6c307bfa6b53ec022f9ccef3e81', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 64049.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0d901d34f4cb6d380000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T16:54:16.000Z'}}, {'blockNum': '0x5200e1', 'uniqueId': '0xd4a0da0407927a5885cf95ada0f22da2c79d90036119268a5047936cfae91357:log:7', 'hash': '0xd4a0da0407927a5885cf95ada0f22da2c79d90036119268a5047936cfae91357', 'from': '0xb287a379e6caca6732e50b88d23c290aa990a892', 'to': '0xa7f3d3acf448f7d21ce9706224c4b8b6f48635a5', 'value': 5509.7105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x012aae97dc0d7bde4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:12:20.000Z'}}, {'blockNum': '0x5200fd', 'uniqueId': '0xa11d2478d7799c9f6f24b02248d514f21c6c4d1c22bfc2e92303d22137cf2f43:log:21', 'hash': '0xa11d2478d7799c9f6f24b02248d514f21c6c4d1c22bfc2e92303d22137cf2f43', 'from': '0xa7f3d3acf448f7d21ce9706224c4b8b6f48635a5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5509.7105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x012aae97dc0d7bde4000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:18:08.000Z'}}, {'blockNum': '0x520124', 'uniqueId': '0x03889eaa0496e3d8b4458922fed25fa60c859a5e145e5d6f7032cbcb89d89b45:log:44', 'hash': '0x03889eaa0496e3d8b4458922fed25fa60c859a5e145e5d6f7032cbcb89d89b45', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x31eed4a9d7e884f1d1a3713edf57cd5ea86d7a7a', 'value': 94957.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x141baa651db3bf170000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:29:13.000Z'}}, {'blockNum': '0x52012e', 'uniqueId': '0xad93ffaeaca637cab33f98e183ac07e18c2933185c10a946e46629e91848b122:log:0', 'hash': '0xad93ffaeaca637cab33f98e183ac07e18c2933185c10a946e46629e91848b122', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb98232c3e43aa16a9d28350ac279eed519aae213', 'value': 672826.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8e79ff427b79e0990000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:31:15.000Z'}}, {'blockNum': '0x520142', 'uniqueId': '0xa56cad132d5b5765884cd33b09b6fba15b2b92b01f4da77606f959e201c3852e:log:6', 'hash': '0xa56cad132d5b5765884cd33b09b6fba15b2b92b01f4da77606f959e201c3852e', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a2a0727b30610a8ef1d63aafb9159c91a0f5e60', 'value': 1765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x5fae4ba4a114740000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:35:30.000Z'}}, {'blockNum': '0x52014c', 'uniqueId': '0xe3081c7ca0574c6b6da4ac99851c5ce4e691b1d863ff8e4f1c9d38a5a96b2d03:log:1', 'hash': '0xe3081c7ca0574c6b6da4ac99851c5ce4e691b1d863ff8e4f1c9d38a5a96b2d03', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 849574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xb3e77fb2f408a2d80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:38:10.000Z'}}, {'blockNum': '0x52015f', 'uniqueId': '0x9302c0e0354323f551f6055367493d2c4c64e9f400a66d4d0c76e2b90f5eb7a7:log:2', 'hash': '0x9302c0e0354323f551f6055367493d2c4c64e9f400a66d4d0c76e2b90f5eb7a7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x31eed4a9d7e884f1d1a3713edf57cd5ea86d7a7a', 'value': 104618.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x16275d2e3105437c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:42:14.000Z'}}, {'blockNum': '0x52015f', 'uniqueId': '0xfb4d627fea079749a8ad6b9ca72f79a4dd47b9c41ab75bd926aaf65402ac3fe2:log:125', 'hash': '0xfb4d627fea079749a8ad6b9ca72f79a4dd47b9c41ab75bd926aaf65402ac3fe2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 24216.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0520c348fd12d6740000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:42:14.000Z'}}, {'blockNum': '0x520190', 'uniqueId': '0xe647428baeab6781938e170058ec111cfb239c7d02ed2414a62e44f2cd51dcc0:log:2', 'hash': '0xe647428baeab6781938e170058ec111cfb239c7d02ed2414a62e44f2cd51dcc0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd1f2f4baa2710e73016468840b83793eb2f7b6b1', 'value': 28813.49608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0619fb95a850a6410000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:53:10.000Z'}}, {'blockNum': '0x5201a4', 'uniqueId': '0xf0d05ad90dcc1e2b9d43548ec576f6d708588bb5172df72576dbefb204a51bd9:log:1', 'hash': '0xf0d05ad90dcc1e2b9d43548ec576f6d708588bb5172df72576dbefb204a51bd9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x31eed4a9d7e884f1d1a3713edf57cd5ea86d7a7a', 'value': 59473.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0c980c73297b51b80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T17:57:35.000Z'}}, {'blockNum': '0x5201dd', 'uniqueId': '0x1825e35519e7416de21160e1b48e4884f0613c5c9a25c664fc178f328348777f:log:3', 'hash': '0x1825e35519e7416de21160e1b48e4884f0613c5c9a25c664fc178f328348777f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 59970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0cb2fdb5dc434adc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T18:08:56.000Z'}}, {'blockNum': '0x5201f2', 'uniqueId': '0x7727d13d12a0760804dd6baa7257708855b24f89e41243e6eec8e785a8256cff:log:0', 'hash': '0x7727d13d12a0760804dd6baa7257708855b24f89e41243e6eec8e785a8256cff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c77fdb7b851099f006bf77933dee283680c3b4a', 'value': 39648.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0865554e7ad55a940000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T18:13:44.000Z'}}, {'blockNum': '0x52028f', 'uniqueId': '0x07dcd3e1261111753db2c052274d591fb8056d8da7091579bc0325cedb0bdd80:log:59', 'hash': '0x07dcd3e1261111753db2c052274d591fb8056d8da7091579bc0325cedb0bdd80', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c77fdb7b851099f006bf77933dee283680c3b4a', 'value': 39450.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x085a99812be1e33c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T18:54:23.000Z'}}, {'blockNum': '0x520311', 'uniqueId': '0x18df5f1303c0849054aa9dfa91574f9df865007c867d8217246e67b0101c1e8d:log:0', 'hash': '0x18df5f1303c0849054aa9dfa91574f9df865007c867d8217246e67b0101c1e8d', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x1d1a440ed1dcb583f7c24372bcd01169ca06d595', 'value': 2445.35548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x84901fdd02ead58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T19:25:24.000Z'}}, {'blockNum': '0x52031f', 'uniqueId': '0x2ccddd5ee204deb76a2a4a4179873c501afb16f4c26be699d13da35ff82586d3:log:11', 'hash': '0x2ccddd5ee204deb76a2a4a4179873c501afb16f4c26be699d13da35ff82586d3', 'from': '0x1d1a440ed1dcb583f7c24372bcd01169ca06d595', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2445.35548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x84901fdd02ead58000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T19:28:02.000Z'}}, {'blockNum': '0x52049d', 'uniqueId': '0xb497c45c71053002f39d5cecc328105d7de6d2bbce7bfd353033a9c3cd0878bc:log:84', 'hash': '0xb497c45c71053002f39d5cecc328105d7de6d2bbce7bfd353033a9c3cd0878bc', 'from': '0x0760f72dd5fc12611043b1e1c8ce2ef970ac4d64', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 20134.043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x044377f9f9c4b02f7fff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T21:00:57.000Z'}}, {'blockNum': '0x5204c4', 'uniqueId': '0xee4fb7dbf255cc56caf3aeff9d76cbceae765af3a8e5319484d6d763bb685491:log:14', 'hash': '0xee4fb7dbf255cc56caf3aeff9d76cbceae765af3a8e5319484d6d763bb685491', 'from': '0x1aedbab0cdd00f7544aad6ddeed94139228eaef7', 'to': '0xfe5854255eb1eb921525fa856a3947ed2412a1d7', 'value': 2965.078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xa0bcb92b57edaeffff', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T21:08:56.000Z'}}, {'blockNum': '0x5205b1', 'uniqueId': '0xf4b51487c25f57c019ec4c8962716388c43dee8fd751d6688e9c35a8ad439fd3:log:0', 'hash': '0xf4b51487c25f57c019ec4c8962716388c43dee8fd751d6688e9c35a8ad439fd3', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xb8b521343347018673c1678e44e970c16dcbfa42', 'value': 53243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0b464f0e667efb0c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:02:41.000Z'}}, {'blockNum': '0x520674', 'uniqueId': '0xc84c6b63d89ea42ce2de2afc65e1e9dcb5b956d365b3f4fcbeb1941bd45fe38e:log:4', 'hash': '0xc84c6b63d89ea42ce2de2afc65e1e9dcb5b956d365b3f4fcbeb1941bd45fe38e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 54970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ba3f0c57765f1bc0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:48:42.000Z'}}, {'blockNum': '0x52068a', 'uniqueId': '0x67961243333d75e98805c9b9ac6213170473a8475d1aefc96740c20ffc243960:log:45', 'hash': '0x67961243333d75e98805c9b9ac6213170473a8475d1aefc96740c20ffc243960', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x12d0a03c68241bef8e7c989ccb012bc757977f63', 'value': 3052.115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0xa5749ab5b3a15b8000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:52:36.000Z'}}, {'blockNum': '0x52068a', 'uniqueId': '0xdb767b36049f4e012ecf040846d3c459c921d6e542a04fd748a56584a6ba2ab5:log:46', 'hash': '0xdb767b36049f4e012ecf040846d3c459c921d6e542a04fd748a56584a6ba2ab5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb8b521343347018673c1678e44e970c16dcbfa42', 'value': 23850.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x050cec03c839857c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:52:36.000Z'}}, {'blockNum': '0x52069a', 'uniqueId': '0x00cbb76028f26412869f8d92f653c5fd5c312197f8881a6dbadb042aaaa49257:log:56', 'hash': '0x00cbb76028f26412869f8d92f653c5fd5c312197f8881a6dbadb042aaaa49257', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x81b915cdf8b27c8b63f5dd3a541f42f17e896915', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:56:34.000Z'}}, {'blockNum': '0x52069c', 'uniqueId': '0x589da99309a4f6544db9d260475abce571b1f0d9f3a1134bc9a2dedb0a071849:log:103', 'hash': '0x589da99309a4f6544db9d260475abce571b1f0d9f3a1134bc9a2dedb0a071849', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x81b915cdf8b27c8b63f5dd3a541f42f17e896915', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:57:56.000Z'}}, {'blockNum': '0x5206a5', 'uniqueId': '0x161ad714a15427ef050f90c2b00b0e590ba2b6f93da51b80f7abf041fd2386ea:log:17', 'hash': '0x161ad714a15427ef050f90c2b00b0e590ba2b6f93da51b80f7abf041fd2386ea', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x718678b3e8ba739fbb59f01bdb8e8d228cf208c3', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T22:59:15.000Z'}}, {'blockNum': '0x5206a7', 'uniqueId': '0x7fac8d273c7a85b8efd9f35bd56732ac33fa9831e7326cbd344bac03c53fe60c:log:68', 'hash': '0x7fac8d273c7a85b8efd9f35bd56732ac33fa9831e7326cbd344bac03c53fe60c', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x7358fe41236bfa7ae6295f2b0df0566e653c5fb1', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:00:25.000Z'}}, {'blockNum': '0x5206aa', 'uniqueId': '0xcd1e934b7d38407b74d18bf0042e00e0c856d7e67d607a5947e1b33ba2c3b2f9:log:72', 'hash': '0xcd1e934b7d38407b74d18bf0042e00e0c856d7e67d607a5947e1b33ba2c3b2f9', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x2b29b22c2948c24fd2d17485eee23cc8c732aaa5', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:01:04.000Z'}}, {'blockNum': '0x5206ac', 'uniqueId': '0x083d4381159ec8752a015c7a03cd53588f89bd36f9e0e095a0b40fb9dbacb9d8:log:54', 'hash': '0x083d4381159ec8752a015c7a03cd53588f89bd36f9e0e095a0b40fb9dbacb9d8', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x5c641239a61480fe6a1d897ad56c8c9b6cc7add8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:01:19.000Z'}}, {'blockNum': '0x5206af', 'uniqueId': '0xd9944c5252c01fec63b8359fa1ad4fdc6c0da1f4db44dd5b75623861f37a4488:log:2', 'hash': '0xd9944c5252c01fec63b8359fa1ad4fdc6c0da1f4db44dd5b75623861f37a4488', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 39970.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0876c9f448cde65c0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:01:48.000Z'}}, {'blockNum': '0x5206b6', 'uniqueId': '0x91bc8011f2b667a961008b4e67923fc5600899ce4aaab7f3dad05c496baafddd:log:20', 'hash': '0x91bc8011f2b667a961008b4e67923fc5600899ce4aaab7f3dad05c496baafddd', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xb067855c4b668bb5cdd9bef26eac8f30f1fa4c46', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:03:18.000Z'}}, {'blockNum': '0x5206b8', 'uniqueId': '0xceb4de7b72e16024e71bfda77d7aaf7cd8113a9f6f2cb2c6f15b6822e3188b5e:log:25', 'hash': '0xceb4de7b72e16024e71bfda77d7aaf7cd8113a9f6f2cb2c6f15b6822e3188b5e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xecb5ac987aa52b5564c32f6554cb639e0e5cfc02', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:04:08.000Z'}}, {'blockNum': '0x5206cb', 'uniqueId': '0xd3b6f4a9914d6c6235d710042b49aa3011ea568ff644438929e17027af16c613:log:73', 'hash': '0xd3b6f4a9914d6c6235d710042b49aa3011ea568ff644438929e17027af16c613', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x05dac7bcb6245207ecaea89e9f89ee3300a06c40', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:07:50.000Z'}}, {'blockNum': '0x5206ce', 'uniqueId': '0xcb76771d908b7fa74509d26331354c180d9ba431a568a4120a7a40c327b7528e:log:40', 'hash': '0xcb76771d908b7fa74509d26331354c180d9ba431a568a4120a7a40c327b7528e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xb050fc4e80622541586d6339489cae899ae9a62c', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:08:43.000Z'}}, {'blockNum': '0x5206d1', 'uniqueId': '0x318ea8850d2e68a5d2397d2ee6b87b37d587b87bff655712391e976780f25fa0:log:6', 'hash': '0x318ea8850d2e68a5d2397d2ee6b87b37d587b87bff655712391e976780f25fa0', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xa4b38dbf01806fc0e5480eeb95d3e2bebc838767', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:09:13.000Z'}}, {'blockNum': '0x5206d4', 'uniqueId': '0x516fe107095ec4186c1cbfc62db2e7d2c97757153d0f9ecf75e418169f86e16e:log:61', 'hash': '0x516fe107095ec4186c1cbfc62db2e7d2c97757153d0f9ecf75e418169f86e16e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x1c02708b6d1fd696a4a43faac9cb06de6ebe1a31', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:09:56.000Z'}}, {'blockNum': '0x5206d7', 'uniqueId': '0xab67d0e3bcd499227814aac241862cc4e088b1998367e98e69e427101b4ceea9:log:37', 'hash': '0xab67d0e3bcd499227814aac241862cc4e088b1998367e98e69e427101b4ceea9', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xbe4776508b7cff338881ea6eb3f2b1d68c3e396d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:11:05.000Z'}}, {'blockNum': '0x5206e6', 'uniqueId': '0x91c8a0580fa09b7c3eb3749f3275c31fbb85e109fb0414932aa498f636b4c183:log:11', 'hash': '0x91c8a0580fa09b7c3eb3749f3275c31fbb85e109fb0414932aa498f636b4c183', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x04dbd398690c2d308511084af5378bbc910ac2b8', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:15:53.000Z'}}, {'blockNum': '0x5206e9', 'uniqueId': '0x8732cbf6d376437ea8acf66ab754314213e5a79436bc83efb18eaf1b117ec037:log:63', 'hash': '0x8732cbf6d376437ea8acf66ab754314213e5a79436bc83efb18eaf1b117ec037', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x7a726440b67dc65293129648858cec5b6a32cd81', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:16:49.000Z'}}, {'blockNum': '0x5206ed', 'uniqueId': '0x2a48265855661f42898ed390490796e1e01ff5ef63f5123d65acdf6c910553b8:log:42', 'hash': '0x2a48265855661f42898ed390490796e1e01ff5ef63f5123d65acdf6c910553b8', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0e90774e65822878233e0823f90237815b370893', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:17:52.000Z'}}, {'blockNum': '0x5206ef', 'uniqueId': '0xf74e0408e91ede82748c4f372c441afd26de047264189a1885c44bf848cf56b4:log:15', 'hash': '0xf74e0408e91ede82748c4f372c441afd26de047264189a1885c44bf848cf56b4', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xdcfb8af3d43f124505dee5c539babac03dd390f1', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:18:17.000Z'}}, {'blockNum': '0x5206f3', 'uniqueId': '0xc40e83cec9cc396df13ab023bbcc872fb6b9d9d21ecca99c6e13022790a36d65:log:17', 'hash': '0xc40e83cec9cc396df13ab023bbcc872fb6b9d9d21ecca99c6e13022790a36d65', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x5cd4b8b25a52bc9e5df38afc14e23d3c14555910', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:18:45.000Z'}}, {'blockNum': '0x5206f6', 'uniqueId': '0x0aa327d70f1c9e3cb7e7d8212da71b8bec13d152e3f2b98fbb3d676706afa008:log:35', 'hash': '0x0aa327d70f1c9e3cb7e7d8212da71b8bec13d152e3f2b98fbb3d676706afa008', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x428602cc8fcc426879e6cc68c5027e11baeb8eb9', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:19:22.000Z'}}, {'blockNum': '0x5206ff', 'uniqueId': '0x27ad0267805121bfe92739d10c6479673d9351ae71276dcd62df805e8f757ee3:log:28', 'hash': '0x27ad0267805121bfe92739d10c6479673d9351ae71276dcd62df805e8f757ee3', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x414d8cf37a94ac02a79539e7ca3a2a066dd38a50', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:22:09.000Z'}}, {'blockNum': '0x520702', 'uniqueId': '0x0028fc49a3a62d00f997774fa475f61be19d8f31d4c8568ee9b7238951db534c:log:15', 'hash': '0x0028fc49a3a62d00f997774fa475f61be19d8f31d4c8568ee9b7238951db534c', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xde772aad3b5079d98e41dcd309ff1c1c3a992539', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:22:43.000Z'}}, {'blockNum': '0x520705', 'uniqueId': '0x5104ebb79e98627feadf37c4dc0cd956adb8a5a046acb379f42d88db6d83fcb1:log:17', 'hash': '0x5104ebb79e98627feadf37c4dc0cd956adb8a5a046acb379f42d88db6d83fcb1', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x81b915cdf8b27c8b63f5dd3a541f42f17e896915', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:23:23.000Z'}}, {'blockNum': '0x520706', 'uniqueId': '0xc61231c5de4d2feaeba1f0f2f61b545fff5ed1f1e7e77c445e005e9179b3f712:log:54', 'hash': '0xc61231c5de4d2feaeba1f0f2f61b545fff5ed1f1e7e77c445e005e9179b3f712', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0ceb35f7cf6a0c939bac47fab2f2c311157f14b1', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:23:55.000Z'}}, {'blockNum': '0x520712', 'uniqueId': '0x48896256e7109531029d89b99328737356bae8aa1855c3f797a7b9b160a4409d:log:80', 'hash': '0x48896256e7109531029d89b99328737356bae8aa1855c3f797a7b9b160a4409d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0b2670fb6f30a9867fa1fea5c8cdd46131f0588c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:26:19.000Z'}}, {'blockNum': '0x520716', 'uniqueId': '0xb7f4702dbd54a54edbf05943d42153532cab6030d1cd6452c9bb44f64ac05036:log:43', 'hash': '0xb7f4702dbd54a54edbf05943d42153532cab6030d1cd6452c9bb44f64ac05036', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x9c5977a63afaec1b7b0d2578acca340421755923', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:27:27.000Z'}}, {'blockNum': '0x520733', 'uniqueId': '0x5737d7a147ef0e23c6f09a244ca8bb96d335f0170a082a0f7aa52aeb22e84291:log:37', 'hash': '0x5737d7a147ef0e23c6f09a244ca8bb96d335f0170a082a0f7aa52aeb22e84291', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x32834b25ffbbd8cadade041be310f549438a477a', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:34:14.000Z'}}, {'blockNum': '0x520736', 'uniqueId': '0x28c19419aa30da4d2dc401872fad0deae6ee970ef73b978a58452f43b77c3260:log:31', 'hash': '0x28c19419aa30da4d2dc401872fad0deae6ee970ef73b978a58452f43b77c3260', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xb66c67810d8b3bd07ef2f41b30e2463b3cc816af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:35:28.000Z'}}, {'blockNum': '0x520738', 'uniqueId': '0x5e85d0ab1bc4d4595c1eb4c3b9ab74a8877264a6a86453d21b26b5f770d04c6b:log:22', 'hash': '0x5e85d0ab1bc4d4595c1eb4c3b9ab74a8877264a6a86453d21b26b5f770d04c6b', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xa88521f04e4a11b73f9d3001b868b916bd7573a2', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:36:39.000Z'}}, {'blockNum': '0x52073c', 'uniqueId': '0x26600f1ab6dd58dcaab390ff4f424d8071405f24a0a018213aaa15029e899cb9:log:18', 'hash': '0x26600f1ab6dd58dcaab390ff4f424d8071405f24a0a018213aaa15029e899cb9', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x5c81fddeca05c488157d9a83b8227cb826b08bc5', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:37:27.000Z'}}, {'blockNum': '0x52073f', 'uniqueId': '0x72a9c27751f5b9b45494b0b9bdb09ffda26e3de8ec01ba2bf5e1d830394eaefb:log:7', 'hash': '0x72a9c27751f5b9b45494b0b9bdb09ffda26e3de8ec01ba2bf5e1d830394eaefb', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xc05632482805dc8ace8f6362729aae7d7a5711a9', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:38:13.000Z'}}, {'blockNum': '0x520742', 'uniqueId': '0x3dedb1ac7a55da654dde81fe1613b25270018b6c93e6347d648f6d8c4edb67f9:log:18', 'hash': '0x3dedb1ac7a55da654dde81fe1613b25270018b6c93e6347d648f6d8c4edb67f9', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x80e5cb64cfb086dbe710b48be122b79baa13c0e9', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:38:57.000Z'}}, {'blockNum': '0x520744', 'uniqueId': '0x4994527fa5ebf5b9353d4809ba022fc4df04b06727fefd6afef1416aedbecd83:log:28', 'hash': '0x4994527fa5ebf5b9353d4809ba022fc4df04b06727fefd6afef1416aedbecd83', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xc2ba7d26d85314fb2692120a6ffbf76469243074', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:39:41.000Z'}}, {'blockNum': '0x520746', 'uniqueId': '0x79d04fb9206346624cd07a052f384eff94ab05a3595ac04c98f02a10fa911e0e:log:100', 'hash': '0x79d04fb9206346624cd07a052f384eff94ab05a3595ac04c98f02a10fa911e0e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x66c3f2f38d0daae37898d2ed3ba92f9980c42403', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:40:33.000Z'}}, {'blockNum': '0x52074a', 'uniqueId': '0xdb7edd6b54dca368015917765a6fc49448a65fac98603a2c7951a0adbf55b390:log:24', 'hash': '0xdb7edd6b54dca368015917765a6fc49448a65fac98603a2c7951a0adbf55b390', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xa8483d06444c57ed90a1b4f8215a426e7fe04b3c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:41:18.000Z'}}, {'blockNum': '0x52074d', 'uniqueId': '0x5d372a8a0bab64b377b895b77c17e85ecb70d47705a45110a1c1b7a6c01f1b87:log:12', 'hash': '0x5d372a8a0bab64b377b895b77c17e85ecb70d47705a45110a1c1b7a6c01f1b87', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x28dd7a594fe4ae1bffd5dc4e1c144a61bf938944', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:42:09.000Z'}}, {'blockNum': '0x52074f', 'uniqueId': '0xe8729be4660c03405534fda649c0296751ce630a3a42a5a8c16436c20c0fdc05:log:11', 'hash': '0xe8729be4660c03405534fda649c0296751ce630a3a42a5a8c16436c20c0fdc05', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xc85e47b55e94e0aaa6b7b560bf497d8caa9a17da', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:42:25.000Z'}}, {'blockNum': '0x520751', 'uniqueId': '0xe84ed906f8063691dc94a66e49c926074411c4b7571ee68770be5e19b19ee8be:log:85', 'hash': '0xe84ed906f8063691dc94a66e49c926074411c4b7571ee68770be5e19b19ee8be', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x05dac7bcb6245207ecaea89e9f89ee3300a06c40', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:42:57.000Z'}}, {'blockNum': '0x520757', 'uniqueId': '0x830e4f89dc1f26f0be1f1e9cdef3d02f165ff811e15de4d4fa983af23c241f5c:log:7', 'hash': '0x830e4f89dc1f26f0be1f1e9cdef3d02f165ff811e15de4d4fa983af23c241f5c', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0a2659eb6e07db4175ecebc26b6d5ad28100bcd1', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:43:36.000Z'}}, {'blockNum': '0x52075a', 'uniqueId': '0xb0fc88e8c8639312fbdae0646a943f3b74f9367650e0dbcdb636d61a5b702d7a:log:40', 'hash': '0xb0fc88e8c8639312fbdae0646a943f3b74f9367650e0dbcdb636d61a5b702d7a', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xcbfa8af7f71b15005137130ffdf6073a9a680c7d', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:44:14.000Z'}}, {'blockNum': '0x520761', 'uniqueId': '0x765cbd38acfc3bc0df95cc14709d527b4f96703bef0dbbf3d5856aa034b56b56:log:12', 'hash': '0x765cbd38acfc3bc0df95cc14709d527b4f96703bef0dbbf3d5856aa034b56b56', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xeb494f974a5b0ae22b5eb1691942d47b200ea805', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:45:52.000Z'}}, {'blockNum': '0x520764', 'uniqueId': '0x566c523985851820dc0a74961692af57d747f190e672ee93bf38eb0aa09b1fb7:log:18', 'hash': '0x566c523985851820dc0a74961692af57d747f190e672ee93bf38eb0aa09b1fb7', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x2894c0c7792646f948b56ed1208f2c0a2ef29552', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:46:15.000Z'}}, {'blockNum': '0x520766', 'uniqueId': '0x255a0f7008d314619b689e96daadfa8f4a4a35b586fcc813bdc73439b8659561:log:15', 'hash': '0x255a0f7008d314619b689e96daadfa8f4a4a35b586fcc813bdc73439b8659561', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x5999927be9b35f9723b13f04161776680d242e2d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:46:43.000Z'}}, {'blockNum': '0x520769', 'uniqueId': '0x21629073a46a82de3d6623938a20226b866bf32b56c9daafbc70c98fa7954a43:log:19', 'hash': '0x21629073a46a82de3d6623938a20226b866bf32b56c9daafbc70c98fa7954a43', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x3052936eaab7c5587503a9ec56a694149115706a', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:47:17.000Z'}}, {'blockNum': '0x52076e', 'uniqueId': '0xd27a1290d5cb7f033be3aedb582cb8ded617b6c4d8f8f850328a5f79ae35109d:log:21', 'hash': '0xd27a1290d5cb7f033be3aedb582cb8ded617b6c4d8f8f850328a5f79ae35109d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x085de2082a48adabd96ca9373dbc9aba1c1807ce', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:48:22.000Z'}}, {'blockNum': '0x520773', 'uniqueId': '0x529f720783ad48064e920f90511119260311d8f2b67387d226ac04d12e7917fc:log:22', 'hash': '0x529f720783ad48064e920f90511119260311d8f2b67387d226ac04d12e7917fc', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xa488e0b0724deb8a2422bafe43e3a62e1d02f6d5', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:49:25.000Z'}}, {'blockNum': '0x520776', 'uniqueId': '0x0ca948fdd2a7eff689cd8e8d98213925231b69232527899f73a8ef6461405ef5:log:15', 'hash': '0x0ca948fdd2a7eff689cd8e8d98213925231b69232527899f73a8ef6461405ef5', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xba9a4ad690f339680c3ea510d175e6088174500e', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:50:02.000Z'}}, {'blockNum': '0x52077b', 'uniqueId': '0xc870d0bbde2ebba313b9e8b052b9d51fc9a659de427451ea9d9c1678499ce41f:log:67', 'hash': '0xc870d0bbde2ebba313b9e8b052b9d51fc9a659de427451ea9d9c1678499ce41f', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xea398a14db6eb8a160b5b373e43aa29dd1d17796', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:50:38.000Z'}}, {'blockNum': '0x52077e', 'uniqueId': '0x5b0ef7f4fd30cb0de938f74acda7b474315db40d47543d7834e91dbbccfe69e1:log:12', 'hash': '0x5b0ef7f4fd30cb0de938f74acda7b474315db40d47543d7834e91dbbccfe69e1', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x460bf65eb2a6d5760f8062215297da4ab5000494', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:51:11.000Z'}}, {'blockNum': '0x520780', 'uniqueId': '0x771895ee0c4ad9e95f0eb5e3bd184ebe4000436d85f8c5262383c0634e603318:log:56', 'hash': '0x771895ee0c4ad9e95f0eb5e3bd184ebe4000436d85f8c5262383c0634e603318', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x0b9a2b9925b2a27968b80ec42bca9a86b89c09b7', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:52:04.000Z'}}, {'blockNum': '0x520782', 'uniqueId': '0x2a6084aee858737c7889b8bf2389e912ac9dbb9b5521984bc76084a817f86d59:log:41', 'hash': '0x2a6084aee858737c7889b8bf2389e912ac9dbb9b5521984bc76084a817f86d59', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x6ad50559b1b08f7a9af7e28924dd939396764cb7', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:53:10.000Z'}}, {'blockNum': '0x520785', 'uniqueId': '0x9080179c1f60b651c1e1e31159437f1eff2326fbd1ca8ce26f64eae71acd0575:log:62', 'hash': '0x9080179c1f60b651c1e1e31159437f1eff2326fbd1ca8ce26f64eae71acd0575', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x27504b14acfc15de75de0e078a22882212b87d3b', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:54:00.000Z'}}, {'blockNum': '0x520787', 'uniqueId': '0x31bb6ffd3f6276ba8f076434d47081eed67543e5efd82ea5737608f4741a2274:log:16', 'hash': '0x31bb6ffd3f6276ba8f076434d47081eed67543e5efd82ea5737608f4741a2274', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xba9a4ad690f339680c3ea510d175e6088174500e', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:54:20.000Z'}}, {'blockNum': '0x52078a', 'uniqueId': '0x73d50d8ba97aa24f88d547dc6cb8de44b5bff9088b78df9ff1f1bf3b45893e75:log:64', 'hash': '0x73d50d8ba97aa24f88d547dc6cb8de44b5bff9088b78df9ff1f1bf3b45893e75', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xbd1a4e78d036c276463696be378e009f6f1d2508', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-03T23:54:44.000Z'}}, {'blockNum': '0x5207a4', 'uniqueId': '0x7a261d4b0c7f74868bf23421a230a945cbe11b18ac9652cab03c4f6e18d5976f:log:14', 'hash': '0x7a261d4b0c7f74868bf23421a230a945cbe11b18ac9652cab03c4f6e18d5976f', 'from': '0xfe9e8709d3215310075d67e3ed32a380ccf451c8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0422faae83bfd0c7e00000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:01:57.000Z'}}, {'blockNum': '0x5207ac', 'uniqueId': '0x223f438cef0e64dbf96a54abda3b124ab0bc90ee017804495e4596f07692b0ea:log:30', 'hash': '0x223f438cef0e64dbf96a54abda3b124ab0bc90ee017804495e4596f07692b0ea', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xb0dba3cc6c6a331621a812ca4c256e092693beaa', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:03:39.000Z'}}, {'blockNum': '0x5207b1', 'uniqueId': '0x196c5fcf6277f49b44dc60e46faa4706239022a748697e28ade7f7753d4428c8:log:27', 'hash': '0x196c5fcf6277f49b44dc60e46faa4706239022a748697e28ade7f7753d4428c8', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x27504b14acfc15de75de0e078a22882212b87d3b', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:04:32.000Z'}}, {'blockNum': '0x5207b4', 'uniqueId': '0x36cca608498186d6e950788d57317b2c064ab243036d2aa7a69fa5774e9865a2:log:52', 'hash': '0x36cca608498186d6e950788d57317b2c064ab243036d2aa7a69fa5774e9865a2', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xfc8a48a262beb3fd6eeaf9efba5cc39c89d49507', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:05:05.000Z'}}, {'blockNum': '0x5207b5', 'uniqueId': '0x5b23c5f31e293c7aaa9c6040a50e3627272f31cf5dd86c3ac4eccfd087d46662:log:30', 'hash': '0x5b23c5f31e293c7aaa9c6040a50e3627272f31cf5dd86c3ac4eccfd087d46662', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x295de491eab941cbda82b77ddd654a3ef7019a7c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:05:11.000Z'}}, {'blockNum': '0x5207ba', 'uniqueId': '0xe293698974f6bc53acee658e24e2f57ab0c19e3057833eb4cf29137973dd840d:log:52', 'hash': '0xe293698974f6bc53acee658e24e2f57ab0c19e3057833eb4cf29137973dd840d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x01d9e8decd38b2d252333240b868752c72127700', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:06:12.000Z'}}, {'blockNum': '0x5207bf', 'uniqueId': '0x6b6869b313a4abc2a8736c95ccf9cb1b5955471266a8660aed0c404738230d40:log:70', 'hash': '0x6b6869b313a4abc2a8736c95ccf9cb1b5955471266a8660aed0c404738230d40', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x6ad50559b1b08f7a9af7e28924dd939396764cb7', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:06:57.000Z'}}, {'blockNum': '0x5207c2', 'uniqueId': '0xacc0c527491b267fd3adf7e1441172b42321df30ab28eb2a491b5391bb56ed79:log:28', 'hash': '0xacc0c527491b267fd3adf7e1441172b42321df30ab28eb2a491b5391bb56ed79', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x56f33c69182f85effa0b2a5cb5b584d04b5b716e', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:07:49.000Z'}}, {'blockNum': '0x5207ca', 'uniqueId': '0xa5a3e387af7181c407d72993125b2d5a1e43bac334f7d3ecba280a09818bfd6a:log:30', 'hash': '0xa5a3e387af7181c407d72993125b2d5a1e43bac334f7d3ecba280a09818bfd6a', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xcc6ad7496b569ef189758a25b986f3bc4d52ff5b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:09:40.000Z'}}, {'blockNum': '0x5207cd', 'uniqueId': '0x709e2085789409019dd8e202196aea1783d501718c1077d685ee31b7e6cf6a5d:log:15', 'hash': '0x709e2085789409019dd8e202196aea1783d501718c1077d685ee31b7e6cf6a5d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x2d320c5a543ba0f0ad507121932e5e59fc4a1daa', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:10:07.000Z'}}, {'blockNum': '0x5207d1', 'uniqueId': '0x66000118634f260478f38c85a70ae91494e8e3e7fa4784827ab3f98c965cebd6:log:7', 'hash': '0x66000118634f260478f38c85a70ae91494e8e3e7fa4784827ab3f98c965cebd6', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xe2a222618f30f908f639a743b0033024ab0c90cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:10:43.000Z'}}, {'blockNum': '0x5207d2', 'uniqueId': '0x683b1ef33cd6275d4ce235ffa556784f3bed7a7cf8be8ddf7c0652cb742e0f5c:log:0', 'hash': '0x683b1ef33cd6275d4ce235ffa556784f3bed7a7cf8be8ddf7c0652cb742e0f5c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x25bafce12fe8e9cbafd42a5dbe1821285664e54f', 'value': 32758.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06efd61fc68eec400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:11:12.000Z'}}, {'blockNum': '0x5207d7', 'uniqueId': '0xc41ce2516bf34cc0fd421709f9a4951cbf9f92e711697455ac5f3e418b271daf:log:12', 'hash': '0xc41ce2516bf34cc0fd421709f9a4951cbf9f92e711697455ac5f3e418b271daf', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x27504b14acfc15de75de0e078a22882212b87d3b', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:12:21.000Z'}}, {'blockNum': '0x5207d9', 'uniqueId': '0xf329c917f59f99472ab3a41071b591eabcf0d339767183cfef257bf06a1fcc2b:log:3', 'hash': '0xf329c917f59f99472ab3a41071b591eabcf0d339767183cfef257bf06a1fcc2b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x55df6e2378028cb6bb4984375ab21836f7774960', 'value': 69968.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0ed0fe9bc38769680000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:13:01.000Z'}}, {'blockNum': '0x5207d9', 'uniqueId': '0x959357c25925b81d3423bbfa89938a5afd4cbfa0bce25973bd2370586e2cb19d:log:36', 'hash': '0x959357c25925b81d3423bbfa89938a5afd4cbfa0bce25973bd2370586e2cb19d', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x2d925173b9d18fa37e8a2410211433e29cf9964b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:13:01.000Z'}}, {'blockNum': '0x5207dd', 'uniqueId': '0xc5e69bae48ed8703e7b1da29075ada676a67639a87413bdab5e25d69d37cbaf8:log:28', 'hash': '0xc5e69bae48ed8703e7b1da29075ada676a67639a87413bdab5e25d69d37cbaf8', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xfbd8fc8a7ec232a5ddd5524d482f546ce4690f1b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:13:50.000Z'}}, {'blockNum': '0x5207e0', 'uniqueId': '0xd02f633890f234e1cd44a6414e6c83b25356d63e23858e7786a8114d976335fb:log:18', 'hash': '0xd02f633890f234e1cd44a6414e6c83b25356d63e23858e7786a8114d976335fb', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x68d149a8d96032f61e9f107f9e5267500d9a0422', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:14:31.000Z'}}, {'blockNum': '0x5207e3', 'uniqueId': '0xa2283e3d7d6673424e614a130c38b5aa1e78d715b706ca26c7da12075914236e:log:25', 'hash': '0xa2283e3d7d6673424e614a130c38b5aa1e78d715b706ca26c7da12075914236e', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xfbd8fc8a7ec232a5ddd5524d482f546ce4690f1b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:14:59.000Z'}}, {'blockNum': '0x5207e7', 'uniqueId': '0x04d27291d0c16b7a0c37cebc3a40e58f54f33ba648212e9975f99c845aa67339:log:0', 'hash': '0x04d27291d0c16b7a0c37cebc3a40e58f54f33ba648212e9975f99c845aa67339', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xd2bb5e929634e135ce8690308f3f17903c92c7ee', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:15:27.000Z'}}, {'blockNum': '0x5207eb', 'uniqueId': '0xff1964d9edb7805a755af132d5c4a7ce98e35c8dd53de4d00c0413e1fbead413:log:0', 'hash': '0xff1964d9edb7805a755af132d5c4a7ce98e35c8dd53de4d00c0413e1fbead413', 'from': '0x4d468cf47eb6df39618dc9450be4b56a70a520c1', 'to': '0xc1e45262022d78e8fd16793b8ecdc64e9e0c6947', 'value': 2217.6033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x78376d93fbf2024000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:16:40.000Z'}}, {'blockNum': '0x52081d', 'uniqueId': '0x4498e7fabc44ab2b4f4b37c20182482f4a6527563c639c307e90755cbbd0ddb9:log:10', 'hash': '0x4498e7fabc44ab2b4f4b37c20182482f4a6527563c639c307e90755cbbd0ddb9', 'from': '0x25bafce12fe8e9cbafd42a5dbe1821285664e54f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32758.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x06efd61fc68eec400000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:28:16.000Z'}}, {'blockNum': '0x52081d', 'uniqueId': '0xc92d8f6352e5c803a51b794ef59642fe4aea0b8baa23b6a892f45120e019074d:log:11', 'hash': '0xc92d8f6352e5c803a51b794ef59642fe4aea0b8baa23b6a892f45120e019074d', 'from': '0xc1e45262022d78e8fd16793b8ecdc64e9e0c6947', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2217.6033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x78376d93fbf2024000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T00:28:16.000Z'}}, {'blockNum': '0x5208c1', 'uniqueId': '0x106c38bc1a1b4919b9914ae2837471a2e57cd986e3a875578dccb1d4288e0cb2:log:6', 'hash': '0x106c38bc1a1b4919b9914ae2837471a2e57cd986e3a875578dccb1d4288e0cb2', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd845a1ad59e8fd7bd358123ccd9eb4c464d0557d', 'value': 5850.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x013d2869f590461d0000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:06:23.000Z'}}, {'blockNum': '0x520943', 'uniqueId': '0xc3a0d7eff1988a09d3e4d29ba696ef56d886ddb65a02ea5954ffe21144c7f00e:log:6', 'hash': '0xc3a0d7eff1988a09d3e4d29ba696ef56d886ddb65a02ea5954ffe21144c7f00e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 49968.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x0a94cada301204e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:39:49.000Z'}}, {'blockNum': '0x520995', 'uniqueId': '0xd90ed504ded631617bb60abaf7f6b5236aa9e03743a3f5aff0d394e3d2ff2a9f:log:31', 'hash': '0xd90ed504ded631617bb60abaf7f6b5236aa9e03743a3f5aff0d394e3d2ff2a9f', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0xd2bb5e929634e135ce8690308f3f17903c92c7ee', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:58:25.000Z'}}, {'blockNum': '0x520998', 'uniqueId': '0x0bffb8f03d037811c4ea8159f170c1df9adf03ecd8c4da2dbf1bc5dfa4f19465:log:25', 'hash': '0x0bffb8f03d037811c4ea8159f170c1df9adf03ecd8c4da2dbf1bc5dfa4f19465', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x8cc7906c6a25f45a17c252e6f5b9c7e0a9495c4c', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:58:41.000Z'}}, {'blockNum': '0x52099a', 'uniqueId': '0xa4c1eff2a05574b793448eaa8464bc5af3f14db2939ad9fd6f7b17aa2a88d890:log:11', 'hash': '0xa4c1eff2a05574b793448eaa8464bc5af3f14db2939ad9fd6f7b17aa2a88d890', 'from': '0x75e795cc9d12f505fe84b6d6575edd5accf1ef72', 'to': '0x97bdd1b2d205d6a7a1ec916a1c61318a4c61a7fd', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CHAT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x442bc47357919446eabc18c7211e57a13d983469', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-04T01:59:41.000Z'}}]}}
Number of returned transfers:  207
Answer is complete
 
symbol             NAV
group              FCS
date        2018-04-09
hour             17:00
exchange       binance
Name: 452, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2018-04-09 17:00:00 2018-04-09 05:00:00 2018-04-10 05:00:00
Unix timestamps:  1523242800.0 1523329200.0
Hex Block Numbers:  0x52806d 0x529803
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RLC
group              FCS
date        2018-04-09
hour             15:00
exchange       binance
Name: 453, dtype: object
HERE
 Symbol: RLC, Contract: 0x607f4c5bb672230e8672085532f7e901544a7375
Datetime timestamps:  2018-04-09 15:00:00 2018-04-09 03:00:00 2018-04-10 03:00:00
Unix timestamps:  1523235600.0 1523322000.0
Hex Block Numbers:  0x527e8e 0x529610
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x527ea7', 'uniqueId': '0xcd8c90aed1f7ed74d278e5e1548b0d500a2fbf1558c79a3e49fce1512242bafd:log:5', 'hash': '0xcd8c90aed1f7ed74d278e5e1548b0d500a2fbf1558c79a3e49fce1512242bafd', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x9cec5c02a0991c41bed035c0f43efbf767ddad5d', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:06:29.000Z'}}, {'blockNum': '0x527eb3', 'uniqueId': '0xef08306926e9f2382be90a1582cf94cedc234903189a1fe8d8c43131d7a3453c:log:2', 'hash': '0xef08306926e9f2382be90a1582cf94cedc234903189a1fe8d8c43131d7a3453c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xebe860f99bbaf5254f60c39077c543662ba4b779', 'value': 18.92269746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0467e172f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:08:25.000Z'}}, {'blockNum': '0x527f3e', 'uniqueId': '0x6ad02ca37567b7afe2766920f4364b32a3fa25ff279d985a5b4292c8ac0bbc21:log:43', 'hash': '0x6ad02ca37567b7afe2766920f4364b32a3fa25ff279d985a5b4292c8ac0bbc21', 'from': '0x78bdb3419fedee4378a0ed9dc9fa6cf4b79aae3e', 'to': '0x158f81ba7f9a4524f7f641fcc622000ade72c859', 'value': 210.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31078bcd00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:38:24.000Z'}}, {'blockNum': '0x527f3f', 'uniqueId': '0xa0c3b066c3c94161458c0809c8a28c572c7dbc98573bad3b09fbc19551317710:log:42', 'hash': '0xa0c3b066c3c94161458c0809c8a28c572c7dbc98573bad3b09fbc19551317710', 'from': '0x4da9b0345d3ce291b43733fca01ef5d4e14baede', 'to': '0x5089c0744987b6af803a7f9b24fed99f3b0f626e', 'value': 1005.923905492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xea35bcafd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:39:02.000Z'}}, {'blockNum': '0x527f4d', 'uniqueId': '0xb9ca2ed0eb6623e032adfab6d646b64cccbe929f064818dd95b7ad284fa0e17f:log:6', 'hash': '0xb9ca2ed0eb6623e032adfab6d646b64cccbe929f064818dd95b7ad284fa0e17f', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xd17f8fed964c95349ff05ee5f956c32b8b61e3c7', 'value': 582.18723789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x878d104202', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:43:51.000Z'}}, {'blockNum': '0x527f64', 'uniqueId': '0xb948f8a8728fcda881d53a1aa47e9a4831574355441f594123f575e6a612e608:log:52', 'hash': '0xb948f8a8728fcda881d53a1aa47e9a4831574355441f594123f575e6a612e608', 'from': '0x158f81ba7f9a4524f7f641fcc622000ade72c859', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31078bcd00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:49:24.000Z'}}, {'blockNum': '0x527fe8', 'uniqueId': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb:log:70', 'hash': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.7063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb7d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:25:10.000Z'}}, {'blockNum': '0x527fe8', 'uniqueId': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb:log:72', 'hash': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 4.7063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb7d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:25:10.000Z'}}, {'blockNum': '0x528009', 'uniqueId': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860:log:18', 'hash': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:33:15.000Z'}}, {'blockNum': '0x528009', 'uniqueId': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860:log:20', 'hash': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:33:15.000Z'}}, {'blockNum': '0x528035', 'uniqueId': '0x4ccc0fbdd3ac2367c1fcf115188bc0d522e75430099957e44739d4ee1e0417ed:log:1', 'hash': '0x4ccc0fbdd3ac2367c1fcf115188bc0d522e75430099957e44739d4ee1e0417ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa63db76400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:44:22.000Z'}}, {'blockNum': '0x528082', 'uniqueId': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c:log:64', 'hash': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 376.076589163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x578fe9586b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:05:54.000Z'}}, {'blockNum': '0x528082', 'uniqueId': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c:log:66', 'hash': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 376.076589163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x578fe9586b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:05:54.000Z'}}, {'blockNum': '0x528085', 'uniqueId': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f:log:26', 'hash': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 372.238359927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x56ab229d77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:07:16.000Z'}}, {'blockNum': '0x528085', 'uniqueId': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f:log:28', 'hash': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 372.238359927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x56ab229d77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:07:16.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0xab596f1fd41ecd02095f1429364187b238aa8d931c77eea2e388de91a381ff38:log:28', 'hash': '0xab596f1fd41ecd02095f1429364187b238aa8d931c77eea2e388de91a381ff38', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0x059a62926ab1df24a6ffff082ccef1d5c6a3bc7e', 'value': 745.913446459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xadabe7f03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3:log:47', 'hash': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 695.66674086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa1f8f80e7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3:log:49', 'hash': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 695.66674086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa1f8f80e7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x528090', 'uniqueId': '0x35cc65f1d7870c3fe4082ede8007d48235657063cd1254ad75364fa832a757d2:log:6', 'hash': '0x35cc65f1d7870c3fe4082ede8007d48235657063cd1254ad75364fa832a757d2', 'from': '0x059a62926ab1df24a6ffff082ccef1d5c6a3bc7e', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 745.913446459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xadabe7f03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:30.000Z'}}, {'blockNum': '0x528095', 'uniqueId': '0x5d17c4f80f47d36a2bdb3e0db59eea96b6f2e0d8eebfe4d10a6daaebd64317dc:log:69', 'hash': '0x5d17c4f80f47d36a2bdb3e0db59eea96b6f2e0d8eebfe4d10a6daaebd64317dc', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 678.982095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9e167c9098', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:09:41.000Z'}}, {'blockNum': '0x528099', 'uniqueId': '0xf12ba1bc2a47c0249e39ccfe35269e2aa521636e2847dde25ba93e4e627a4a14:log:2', 'hash': '0xf12ba1bc2a47c0249e39ccfe35269e2aa521636e2847dde25ba93e4e627a4a14', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 19336.79816813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x119632fc6442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:11:20.000Z'}}, {'blockNum': '0x52809a', 'uniqueId': '0xfec1ae0aed92c731f581011967ea709c0b3460e7abcaaeb8870ae955f405fc3c:log:8', 'hash': '0xfec1ae0aed92c731f581011967ea709c0b3460e7abcaaeb8870ae955f405fc3c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 6497.96947226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05e8ed298304', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:11:23.000Z'}}, {'blockNum': '0x5280a1', 'uniqueId': '0x8abcd234a2bf857f814e8867c64cc53ff4aa9f10dcb14e4221addc9d86d99d70:log:121', 'hash': '0x8abcd234a2bf857f814e8867c64cc53ff4aa9f10dcb14e4221addc9d86d99d70', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 17900.20191412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1047b72d2f08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:12:26.000Z'}}, {'blockNum': '0x5280a3', 'uniqueId': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c:log:36', 'hash': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 447.208042601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x681fad3069', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:17.000Z'}}, {'blockNum': '0x5280a3', 'uniqueId': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c:log:38', 'hash': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 447.208042601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x681fad3069', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:17.000Z'}}, {'blockNum': '0x5280a5', 'uniqueId': '0x1463ec32fca6c1235652df89b0dc106cdc6945c14478f26407e8066736b1c75d:log:8', 'hash': '0x1463ec32fca6c1235652df89b0dc106cdc6945c14478f26407e8066736b1c75d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'value': 28047.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19823f649800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:32.000Z'}}, {'blockNum': '0x5280ae', 'uniqueId': '0xeffecae583941f7471cfa1bf11dc053f588ec98730d698123c999bb0d9733a92:log:6', 'hash': '0xeffecae583941f7471cfa1bf11dc053f588ec98730d698123c999bb0d9733a92', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'value': 1588.658466501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e36c6ec5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:14:41.000Z'}}, {'blockNum': '0x5280bf', 'uniqueId': '0x12d2641a26e8dcfc0eadc79ff37cbbb9c895db8c1fae01524b5b247e5378f587:log:14', 'hash': '0x12d2641a26e8dcfc0eadc79ff37cbbb9c895db8c1fae01524b5b247e5378f587', 'from': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1588.658466501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e36c6ec5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:04.000Z'}}, {'blockNum': '0x5280c0', 'uniqueId': '0x30f6d7097f70c392e092f0fd439294af40ccecd0546485351e2e980ba8f8e8bf:log:20', 'hash': '0x30f6d7097f70c392e092f0fd439294af40ccecd0546485351e2e980ba8f8e8bf', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 678.982095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9e167c9098', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:19.000Z'}}, {'blockNum': '0x5280c1', 'uniqueId': '0xfd86b02d192a2e76fded7570b1970b3a202199af9b94879c4a3ba187420baa32:log:2', 'hash': '0xfd86b02d192a2e76fded7570b1970b3a202199af9b94879c4a3ba187420baa32', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 37237.00008225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x21ddea29934a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:35.000Z'}}, {'blockNum': '0x5280c1', 'uniqueId': '0x9c201ae23b18bfc07d6d636dcabacaff8c643fdd4da137641c380a4cf0673914:log:57', 'hash': '0x9c201ae23b18bfc07d6d636dcabacaff8c643fdd4da137641c380a4cf0673914', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6497.96947226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05e8ed298304', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:35.000Z'}}, {'blockNum': '0x5280c6', 'uniqueId': '0x084f92094b90e783656b99677b39c4d10a558094773dce4c07220b5eaacecb00:log:2', 'hash': '0x084f92094b90e783656b99677b39c4d10a558094773dce4c07220b5eaacecb00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 60617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37217ec09a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:20:34.000Z'}}, {'blockNum': '0x5280ce', 'uniqueId': '0x06ad4220e6f362755b8946f7388e1bb1610c4da1880ad355cf536f1a97fbe8aa:log:42', 'hash': '0x06ad4220e6f362755b8946f7388e1bb1610c4da1880ad355cf536f1a97fbe8aa', 'from': '0x9cec5c02a0991c41bed035c0f43efbf767ddad5d', 'to': '0x69514f8df84c97fabff2d7807974341d4f41044d', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:22:39.000Z'}}, {'blockNum': '0x5280ce', 'uniqueId': '0xfcbca400e4e171d634a3c16627e0d10e41832c36c2aac392fd1b7fa683db3d9d:log:76', 'hash': '0xfcbca400e4e171d634a3c16627e0d10e41832c36c2aac392fd1b7fa683db3d9d', 'from': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 28047.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19823f649800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:22:39.000Z'}}, {'blockNum': '0x5280de', 'uniqueId': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013:log:6', 'hash': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 559.2070341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8233562cf4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:25:49.000Z'}}, {'blockNum': '0x5280de', 'uniqueId': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013:log:8', 'hash': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 559.2070341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8233562cf4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:25:49.000Z'}}, {'blockNum': '0x5280ec', 'uniqueId': '0x63c50a704f9f427247d7d6f9f6ad5425b455d4042361a71ea917032980ecc2f8:log:4', 'hash': '0x63c50a704f9f427247d7d6f9f6ad5425b455d4042361a71ea917032980ecc2f8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 542.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7e4f851100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:48.000Z'}}, {'blockNum': '0x5280ec', 'uniqueId': '0xd9768d037d5c1b3c50cb81527daf0796105aa4c38ca039a45b2d09edf078d4d2:log:5', 'hash': '0xd9768d037d5c1b3c50cb81527daf0796105aa4c38ca039a45b2d09edf078d4d2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x02f2753aa71db52d79f37229fcbad241c5aec57e', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:48.000Z'}}, {'blockNum': '0x5280ee', 'uniqueId': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b:log:24', 'hash': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b', 'from': '0x02f2753aa71db52d79f37229fcbad241c5aec57e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:58.000Z'}}, {'blockNum': '0x5280ee', 'uniqueId': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b:log:26', 'hash': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:58.000Z'}}, {'blockNum': '0x52810d', 'uniqueId': '0x7afcd44f10f877b9a122836c0162af04bc5efa1e262c5ca757034781169e4780:log:53', 'hash': '0x7afcd44f10f877b9a122836c0162af04bc5efa1e262c5ca757034781169e4780', 'from': '0x69514f8df84c97fabff2d7807974341d4f41044d', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:35:54.000Z'}}, {'blockNum': '0x52816b', 'uniqueId': '0x4ab401d9d2348940bb51e3b77299664665a8cb8dd200641ed1dad62a3b53db74:log:19', 'hash': '0x4ab401d9d2348940bb51e3b77299664665a8cb8dd200641ed1dad62a3b53db74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5869f882338ece01929e4b9581e01447a5bed343', 'value': 46.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ad39db100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:01:52.000Z'}}, {'blockNum': '0x528185', 'uniqueId': '0xf09dc3c3f21be63e167d2e77331ae35262c40e04f183715f144713bb964ef2d8:log:1', 'hash': '0xf09dc3c3f21be63e167d2e77331ae35262c40e04f183715f144713bb964ef2d8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 4804.7169356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x045eaf7239b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:10:00.000Z'}}, {'blockNum': '0x5281b7', 'uniqueId': '0x45368e0904dbb152ada961a59c7601b32b0788bc41201f15a900fb8f4d240454:log:132', 'hash': '0x45368e0904dbb152ada961a59c7601b32b0788bc41201f15a900fb8f4d240454', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4804.7169356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x045eaf7239b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:18:59.000Z'}}, {'blockNum': '0x5282f9', 'uniqueId': '0x48c4adb63b309046e1143d86f7b5aa7dd290b6e5afe146928a84b42dcd18b931:log:4', 'hash': '0x48c4adb63b309046e1143d86f7b5aa7dd290b6e5afe146928a84b42dcd18b931', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 1740.4276165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01953991e0f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:30:54.000Z'}}, {'blockNum': '0x5282fe', 'uniqueId': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe:log:105', 'hash': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.124401098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x571b8d51ca', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:32:55.000Z'}}, {'blockNum': '0x5282fe', 'uniqueId': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe:log:107', 'hash': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 374.124401098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x571b8d51ca', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:32:55.000Z'}}, {'blockNum': '0x52840e', 'uniqueId': '0xd05fe83dfc19e8bfbf5cd4379c4b3e59e71c2162888db9245dee10aec94c53f4:log:55', 'hash': '0xd05fe83dfc19e8bfbf5cd4379c4b3e59e71c2162888db9245dee10aec94c53f4', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xa06f8516027b85e62d7720606f939b9a36b994d2', 'value': 21.19027454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04ef09edec', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T06:35:01.000Z'}}, {'blockNum': '0x5284c2', 'uniqueId': '0x96d60f043956d33635cdaa1f5779a664e32c51c4d9e7a4f046b4b5a3d4e6a5ce:log:7', 'hash': '0x96d60f043956d33635cdaa1f5779a664e32c51c4d9e7a4f046b4b5a3d4e6a5ce', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xec81aa3dc98acaf4e246bbe29e2ac4e6a07de799', 'value': 170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2794ca2400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T07:21:17.000Z'}}, {'blockNum': '0x5285b6', 'uniqueId': '0x0607411bb624cacd10414f9ad5d03a32fc272c3026bd79048d0d27353ba34fb8:log:51', 'hash': '0x0607411bb624cacd10414f9ad5d03a32fc272c3026bd79048d0d27353ba34fb8', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x03a7d1cb0db35e65ce4d5449cac2b3aa3ea18913', 'value': 119.15860008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1bbe67f190', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:18:23.000Z'}}, {'blockNum': '0x5285d5', 'uniqueId': '0xc7ff91d4d28d4b7cf3a0326063df84bfa7e0083d10ff8fdb8a1f842d90a4c7d7:log:60', 'hash': '0xc7ff91d4d28d4b7cf3a0326063df84bfa7e0083d10ff8fdb8a1f842d90a4c7d7', 'from': '0x78a933f3cba15914beb4d5f902a7a6e2fd93879d', 'to': '0x877ae32b0ff7afa778adadabe441f3fe05fabbdf', 'value': 2563.89857368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0254f4438370', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:24:44.000Z'}}, {'blockNum': '0x528600', 'uniqueId': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3:log:26', 'hash': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 480.76923076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6ff01447a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:39:32.000Z'}}, {'blockNum': '0x528600', 'uniqueId': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3:log:28', 'hash': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 480.76923076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6ff01447a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:39:32.000Z'}}, {'blockNum': '0x528602', 'uniqueId': '0xb675d605d7faebd1db494e9559f50cc615455eb0514a03809e8565bba555dd74:log:0', 'hash': '0xb675d605d7faebd1db494e9559f50cc615455eb0514a03809e8565bba555dd74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9a78ecd77595ea305c6e5a0daed3669b17801d09', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ba7def30000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:40:01.000Z'}}, {'blockNum': '0x528613', 'uniqueId': '0xe0a2adac4113963478d05eb0e0dbd8589abef30dbe2f0e7e130b4cad164ce801:log:28', 'hash': '0xe0a2adac4113963478d05eb0e0dbd8589abef30dbe2f0e7e130b4cad164ce801', 'from': '0x877ae32b0ff7afa778adadabe441f3fe05fabbdf', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 2563.89857368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0254f4438370', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:45:05.000Z'}}, {'blockNum': '0x528695', 'uniqueId': '0x924a61d82e412728d3919103aa771eeda43d4ffe0b078582f1c0fdc02892c0a7:log:84', 'hash': '0x924a61d82e412728d3919103aa771eeda43d4ffe0b078582f1c0fdc02892c0a7', 'from': '0x9a78ecd77595ea305c6e5a0daed3669b17801d09', 'to': '0x1828559f010b86640cf3cdd7003e982cbeffa9d6', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T09:17:50.000Z'}}, {'blockNum': '0x528730', 'uniqueId': '0xc7b0fc915c96f3a0f4decf2cfda6d4e38b3040baa0f36e894965c18b9aea5214:log:6', 'hash': '0xc7b0fc915c96f3a0f4decf2cfda6d4e38b3040baa0f36e894965c18b9aea5214', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7e53be9f58d575d3dd00d2bf6638f0373d27904c', 'value': 532.69387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7c070765b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T09:55:46.000Z'}}, {'blockNum': '0x5287a1', 'uniqueId': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda:log:21', 'hash': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 699.698095847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e941a6e7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:21:30.000Z'}}, {'blockNum': '0x5287a1', 'uniqueId': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda:log:23', 'hash': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 699.698095847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e941a6e7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:21:30.000Z'}}, {'blockNum': '0x5287af', 'uniqueId': '0x2a0a55f85ee3cc3abd54476ca2313d771a5b546c2b82c46ae6f808e972fce0e1:log:85', 'hash': '0x2a0a55f85ee3cc3abd54476ca2313d771a5b546c2b82c46ae6f808e972fce0e1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 699.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e95eb500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:25:08.000Z'}}, {'blockNum': '0x5287c3', 'uniqueId': '0x284d53a1c39d0c4df8434babc1d5643f53902b894ad9833b02a313fa7738f644:log:26', 'hash': '0x284d53a1c39d0c4df8434babc1d5643f53902b894ad9833b02a313fa7738f644', 'from': '0xbd7041d30ca198e9ccf96646e2d78d835803af94', 'to': '0xaa46d43a2119b1dbf5b97f82a06092947bbef9fe', 'value': 296.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4508c6f500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:30:06.000Z'}}, {'blockNum': '0x5287e0', 'uniqueId': '0x181fac8515a92b19192ac859abe7db60027a12309b7066e5bdf47e2e87042b3d:log:52', 'hash': '0x181fac8515a92b19192ac859abe7db60027a12309b7066e5bdf47e2e87042b3d', 'from': '0xaa46d43a2119b1dbf5b97f82a06092947bbef9fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 296.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4508c6f500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:39:04.000Z'}}, {'blockNum': '0x528833', 'uniqueId': '0x31e9500b8ff99e1277842111c939dd3b16ef4d63dba753a3480967531bcf89b8:log:0', 'hash': '0x31e9500b8ff99e1277842111c939dd3b16ef4d63dba753a3480967531bcf89b8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9effe2d8016600c8e70d8d5abbb88ffa72dbe981', 'value': 4100.42352629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03bab449a792', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:57:10.000Z'}}, {'blockNum': '0x528850', 'uniqueId': '0xbb821ba3341e5928857be8a0ac0fbef69683cf63889ac04f1aa347869d2d8f11:log:13', 'hash': '0xbb821ba3341e5928857be8a0ac0fbef69683cf63889ac04f1aa347869d2d8f11', 'from': '0x9effe2d8016600c8e70d8d5abbb88ffa72dbe981', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 4100.42352629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03bab449a792', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:03:44.000Z'}}, {'blockNum': '0x52887d', 'uniqueId': '0x4918eed66244adc3d7e4a0cb2dc52b934e3525241c37f23fe6ae2f3918fcbbc3:log:8', 'hash': '0x4918eed66244adc3d7e4a0cb2dc52b934e3525241c37f23fe6ae2f3918fcbbc3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 3904.71826095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038d23584ad6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:13:31.000Z'}}, {'blockNum': '0x52889a', 'uniqueId': '0x5dd22ea15bf5710c5a4d395577b2e9aee297549fdf174430275812e04d97eb35:log:32', 'hash': '0x5dd22ea15bf5710c5a4d395577b2e9aee297549fdf174430275812e04d97eb35', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3904.71826095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038d23584ad6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:19:13.000Z'}}, {'blockNum': '0x528973', 'uniqueId': '0xb4a984f8531876c11f4d5c3ca851f36394f21e530f0724860ce26cb9d11cdc3f:log:14', 'hash': '0xb4a984f8531876c11f4d5c3ca851f36394f21e530f0724860ce26cb9d11cdc3f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6b09ce711aa0031a11186ee72b0c33ef605dbbd3', 'value': 30.119818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x070347f310', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:09:12.000Z'}}, {'blockNum': '0x5289dc', 'uniqueId': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1:log:126', 'hash': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 390.220050648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5adaed70d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:33:11.000Z'}}, {'blockNum': '0x5289dc', 'uniqueId': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1:log:128', 'hash': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 390.220050648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5adaed70d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:33:11.000Z'}}, {'blockNum': '0x5289f7', 'uniqueId': '0x2f89bfbe89b5a59da4fa678a23a1f86dcab08aeb851b0549b8902537bb53bc17:log:3', 'hash': '0x2f89bfbe89b5a59da4fa678a23a1f86dcab08aeb851b0549b8902537bb53bc17', 'from': '0x1828559f010b86640cf3cdd7003e982cbeffa9d6', 'to': '0x409fe261895aa4ba51bb9a6c6eb85882395df91b', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:40:34.000Z'}}, {'blockNum': '0x528a3b', 'uniqueId': '0x77b85c000811755f7666628d94987c09751c78a8a25d98bb8fc5cacbd0d3e32a:log:17', 'hash': '0x77b85c000811755f7666628d94987c09751c78a8a25d98bb8fc5cacbd0d3e32a', 'from': '0x409fe261895aa4ba51bb9a6c6eb85882395df91b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:59:07.000Z'}}, {'blockNum': '0x528a59', 'uniqueId': '0x414f4e46f3fc152c7a49e9242b1dfff3702c1561b6e3cf56ff6ad5717fc239ec:log:101', 'hash': '0x414f4e46f3fc152c7a49e9242b1dfff3702c1561b6e3cf56ff6ad5717fc239ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 12365.18856995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b3efeac1b5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:07:26.000Z'}}, {'blockNum': '0x528a62', 'uniqueId': '0x2bded4f5c7be99646482ac3c6ff93788fd67c25f6ff384b1b09f51f89eae8c93:log:30', 'hash': '0x2bded4f5c7be99646482ac3c6ff93788fd67c25f6ff384b1b09f51f89eae8c93', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12365.18856995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b3efeac1b5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:09:12.000Z'}}, {'blockNum': '0x528a72', 'uniqueId': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a:log:65', 'hash': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 479.515825908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fa55ed6f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:15:13.000Z'}}, {'blockNum': '0x528a72', 'uniqueId': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a:log:67', 'hash': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 479.515825908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fa55ed6f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:15:13.000Z'}}, {'blockNum': '0x528a98', 'uniqueId': '0x08a9266a803b3c4c426581e3f90215d141deb8fc5be75e4245e7d60181d83010:log:10', 'hash': '0x08a9266a803b3c4c426581e3f90215d141deb8fc5be75e4245e7d60181d83010', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'value': 1755.269861198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198ae3c8f4e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:23:03.000Z'}}, {'blockNum': '0x528a9e', 'uniqueId': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8:log:92', 'hash': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 495.750096277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x736d022595', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:25:01.000Z'}}, {'blockNum': '0x528a9e', 'uniqueId': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8:log:94', 'hash': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 495.750096277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x736d022595', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:25:01.000Z'}}, {'blockNum': '0x528aa9', 'uniqueId': '0x9e79608bd24dbb6453bf80c8290926f199f7b41a23da904e985fc5f1a95b7d28:log:48', 'hash': '0x9e79608bd24dbb6453bf80c8290926f199f7b41a23da904e985fc5f1a95b7d28', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 480.019898209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fc36a5f61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:27:14.000Z'}}, {'blockNum': '0x528ab0', 'uniqueId': '0x68959d5985fb5a373a96b0e752cc3dfc97ba48ae27e19a1a6e49fa611c7f40c1:log:57', 'hash': '0x68959d5985fb5a373a96b0e752cc3dfc97ba48ae27e19a1a6e49fa611c7f40c1', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 480.019898209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fc36a5f61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:29:06.000Z'}}, {'blockNum': '0x528ab0', 'uniqueId': '0xc275d90f45275f7f1536309d2674714ddc6fe3c45f9503f77825dddfc513628f:log:63', 'hash': '0xc275d90f45275f7f1536309d2674714ddc6fe3c45f9503f77825dddfc513628f', 'from': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1755.269861198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198ae3c8f4e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:29:06.000Z'}}, {'blockNum': '0x528ac0', 'uniqueId': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c:log:41', 'hash': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 465.745723305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c709bbfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:33:59.000Z'}}, {'blockNum': '0x528ac0', 'uniqueId': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c:log:43', 'hash': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 465.745723305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c709bbfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:33:59.000Z'}}, {'blockNum': '0x528adb', 'uniqueId': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6:log:37', 'hash': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 367.822877341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x55a3f3b29d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:40:58.000Z'}}, {'blockNum': '0x528adb', 'uniqueId': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6:log:39', 'hash': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 367.822877341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x55a3f3b29d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:40:58.000Z'}}, {'blockNum': '0x528b00', 'uniqueId': '0x6de1f93a8d1e82c2d276e5fffa078b6fc9e1d05c82e485051ec9c11b6532620a:log:0', 'hash': '0x6de1f93a8d1e82c2d276e5fffa078b6fc9e1d05c82e485051ec9c11b6532620a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 1496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015c6dc13e80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:49:08.000Z'}}, {'blockNum': '0x528b1e', 'uniqueId': '0x25f0b473bb9be1e76e0201b367249395bac5b17ea1e35f78012c1d1e9a1f77b2:log:2', 'hash': '0x25f0b473bb9be1e76e0201b367249395bac5b17ea1e35f78012c1d1e9a1f77b2', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015c6dc13e80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:59:02.000Z'}}, {'blockNum': '0x528b29', 'uniqueId': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f:log:74', 'hash': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 363.695653567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x54adf342bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:02:38.000Z'}}, {'blockNum': '0x528b29', 'uniqueId': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f:log:76', 'hash': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 363.695653567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x54adf342bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:02:38.000Z'}}, {'blockNum': '0x528b3d', 'uniqueId': '0xcc065ad597f97ca3e369c1bfbf78a8e714991de6d6fda56bca7ba03fa0e8c9aa:log:1', 'hash': '0xcc065ad597f97ca3e369c1bfbf78a8e714991de6d6fda56bca7ba03fa0e8c9aa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 16051.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e993c08e100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:07:23.000Z'}}, {'blockNum': '0x528b45', 'uniqueId': '0x57016ba558bc3908165bcff95077301aecf1e7607ae210e6725d1246c20a78b5:log:5', 'hash': '0x57016ba558bc3908165bcff95077301aecf1e7607ae210e6725d1246c20a78b5', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16051.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e993c08e100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:09:06.000Z'}}, {'blockNum': '0x528b6f', 'uniqueId': '0xdc47c490ff46d0e5b0b6ace0ec9742cb89778f5e5fef3c4b864bcf015a7b9d93:log:28', 'hash': '0xdc47c490ff46d0e5b0b6ace0ec9742cb89778f5e5fef3c4b864bcf015a7b9d93', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 15074.4325038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0db5ca31cff8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:21:10.000Z'}}, {'blockNum': '0x528b7d', 'uniqueId': '0x3e91229555b63750959d2688a766846c804e189693519c4af5377457191693b1:log:13', 'hash': '0x3e91229555b63750959d2688a766846c804e189693519c4af5377457191693b1', 'from': '0xfcc69c067347d980282ce56696bf2f055babb8bd', 'to': '0x7a66a95994c988c3daaceb6d52fbe3e0924c71c0', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:24:41.000Z'}}, {'blockNum': '0x528b88', 'uniqueId': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8:log:22', 'hash': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 700.674479468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa32374156c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:27:10.000Z'}}, {'blockNum': '0x528b88', 'uniqueId': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8:log:24', 'hash': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 700.674479468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa32374156c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:27:10.000Z'}}, {'blockNum': '0x528b8d', 'uniqueId': '0x909e4f4f9a399f006e52781ef1da311f358b6c39be858521e7ff83ebae35be9f:log:40', 'hash': '0x909e4f4f9a399f006e52781ef1da311f358b6c39be858521e7ff83ebae35be9f', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 697.978201999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa282be278f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:28:29.000Z'}}, {'blockNum': '0x528b90', 'uniqueId': '0x64bfc943bae68623ddcd00f1d9477b0a5ebcff6afdb620c97bb75485372644e8:log:54', 'hash': '0x64bfc943bae68623ddcd00f1d9477b0a5ebcff6afdb620c97bb75485372644e8', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15074.4325038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0db5ca31cff8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:29:05.000Z'}}, {'blockNum': '0x528b90', 'uniqueId': '0xdb94d2ba07a5a8b508e44899f7802dcc3d993fd9c6bc11e21ad9a6d84ec5812b:log:55', 'hash': '0xdb94d2ba07a5a8b508e44899f7802dcc3d993fd9c6bc11e21ad9a6d84ec5812b', 'from': '0x7a66a95994c988c3daaceb6d52fbe3e0924c71c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:29:05.000Z'}}, {'blockNum': '0x528bb2', 'uniqueId': '0x040c013a9cc685d00a780aa3b998042eb1a4516aa3bcae52550291c464094b1e:log:104', 'hash': '0x040c013a9cc685d00a780aa3b998042eb1a4516aa3bcae52550291c464094b1e', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x66ec6342f9d91676fcfc189fd769ae05fc6c579d', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:37:58.000Z'}}, {'blockNum': '0x528bb9', 'uniqueId': '0x2adb7c7675a5cbb4a499b188f16c35267e35311afb080023eec03568246770c5:log:19', 'hash': '0x2adb7c7675a5cbb4a499b188f16c35267e35311afb080023eec03568246770c5', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 697.978201999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa282be278f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:39:35.000Z'}}, {'blockNum': '0x528bd7', 'uniqueId': '0x0b0515a9580ad0bcff8436237a27ab4b2879379e4d8ff87a93e21dfb3edf6d70:log:59', 'hash': '0x0b0515a9580ad0bcff8436237a27ab4b2879379e4d8ff87a93e21dfb3edf6d70', 'from': '0x003c6df13f3c95f12e0f3e2c82e3980d9732558b', 'to': '0x53076af5ed9bd6a622f56d644fdfb4d619ac8148', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:45:54.000Z'}}, {'blockNum': '0x528bfe', 'uniqueId': '0x3264af94629855eadc7ba28217889f956a03dfeaee2482a53f2d04f8c43582d2:log:2', 'hash': '0x3264af94629855eadc7ba28217889f956a03dfeaee2482a53f2d04f8c43582d2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 3904.09897038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038cfe6eab0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:57:22.000Z'}}, {'blockNum': '0x528c0a', 'uniqueId': '0xd3d642a7a429c15651e18fad17da8a0a29294e8052cec8d5c1984f4b95b7e3e3:log:16', 'hash': '0xd3d642a7a429c15651e18fad17da8a0a29294e8052cec8d5c1984f4b95b7e3e3', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3904.09897038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038cfe6eab0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:59:11.000Z'}}, {'blockNum': '0x528c14', 'uniqueId': '0x7a640a84575bec4b54ad63cfaebddc8aab4f273c090118c419a53680a3832340:log:74', 'hash': '0x7a640a84575bec4b54ad63cfaebddc8aab4f273c090118c419a53680a3832340', 'from': '0xe9a8f8d1609fbb852c057523c66ff58a50e0d2a8', 'to': '0x2cd48733cc05c9cb029ceaf4b11d62a93f881b59', 'value': 52.72022865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c465ed92a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:00:55.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09:log:23', 'hash': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 702.591591286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa395b8e376', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09:log:25', 'hash': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 702.591591286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa395b8e376', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xbd124ec01587afd4f047c801a300231dc666fb57b6d027c48512993d3f70a314:log:89', 'hash': '0xbd124ec01587afd4f047c801a300231dc666fb57b6d027c48512993d3f70a314', 'from': '0x48f9ab8906bf0fb691033ce315c1da800044237c', 'to': '0x363f6b08c2b5ac0a9a020c9d6b8aeddc1bb2b022', 'value': 52.84054609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c4d8abf2a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c27', 'uniqueId': '0x0f9abf3f16d50a9cc7985e52901bd7a3c826327e32984a5ee36b4ff900a4d81b:log:29', 'hash': '0x0f9abf3f16d50a9cc7985e52901bd7a3c826327e32984a5ee36b4ff900a4d81b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 684.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9f4d7f7a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:06:33.000Z'}}, {'blockNum': '0x528c55', 'uniqueId': '0xe7c07a8492d341c75f8aa99aaaec9a1bb36a85eaf4a8df65f9384d61bb10b7d8:log:21', 'hash': '0xe7c07a8492d341c75f8aa99aaaec9a1bb36a85eaf4a8df65f9384d61bb10b7d8', 'from': '0x2cd48733cc05c9cb029ceaf4b11d62a93f881b59', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 52.72022865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c465ed92a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:17:49.000Z'}}, {'blockNum': '0x528c55', 'uniqueId': '0x8cd1df55eeb9ee1c8b35619149aa91870b7ce06626850b33669ffc7b5fcc0d60:log:22', 'hash': '0x8cd1df55eeb9ee1c8b35619149aa91870b7ce06626850b33669ffc7b5fcc0d60', 'from': '0x363f6b08c2b5ac0a9a020c9d6b8aeddc1bb2b022', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 52.84054609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c4d8abf2a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:17:49.000Z'}}, {'blockNum': '0x528c6e', 'uniqueId': '0xb5ab04361bc88357c6928311689e970da412b74089cc765ef81da20fd446756c:log:2', 'hash': '0xb5ab04361bc88357c6928311689e970da412b74089cc765ef81da20fd446756c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x441ebc643caf97cdcfa0ad2610f69275e255a4c5', 'value': 11.34861261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02a46e1602', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:22:51.000Z'}}, {'blockNum': '0x528c8c', 'uniqueId': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9:log:99', 'hash': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 556.931261037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81abb0a26d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:28:15.000Z'}}, {'blockNum': '0x528c8c', 'uniqueId': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9:log:101', 'hash': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 556.931261037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81abb0a26d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:28:15.000Z'}}, {'blockNum': '0x528ca4', 'uniqueId': '0x82f93273d9b9943c91c0b14165a559a7a8a77cbe1ea9900abb93553468c50f9b:log:87', 'hash': '0x82f93273d9b9943c91c0b14165a559a7a8a77cbe1ea9900abb93553468c50f9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 556.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81a9d3a100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:32:23.000Z'}}, {'blockNum': '0x528cd7', 'uniqueId': '0x14de7f6c0fcc1c6c3438d44abe995a7891266b87c7aa2b274f2b2bfdfafef6ca:log:20', 'hash': '0x14de7f6c0fcc1c6c3438d44abe995a7891266b87c7aa2b274f2b2bfdfafef6ca', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xaf9a2b5df6560588e8b1f11638e3f1e00a4a281a', 'value': 276.14047986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x404b415574', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:45:22.000Z'}}, {'blockNum': '0x528d1f', 'uniqueId': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444:log:14', 'hash': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 699.703512666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e9944e5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:06:56.000Z'}}, {'blockNum': '0x528d1f', 'uniqueId': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444:log:16', 'hash': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 699.703512666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e9944e5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:06:56.000Z'}}, {'blockNum': '0x528d35', 'uniqueId': '0xd1bf99e13a8b06a352e189afa9c3a7121a7d15368b6f8114c44f8127444469fd:log:3', 'hash': '0xd1bf99e13a8b06a352e189afa9c3a7121a7d15368b6f8114c44f8127444469fd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 699.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e95eb500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:11:42.000Z'}}, {'blockNum': '0x528d49', 'uniqueId': '0x6906a4d5109e0219d64c6341994fab7c54e3520cee5dc38545cb98fe93b5d2f1:log:7', 'hash': '0x6906a4d5109e0219d64c6341994fab7c54e3520cee5dc38545cb98fe93b5d2f1', 'from': '0xf0453fd8b04f0ce7a47770a962e9e1094f2dfd5b', 'to': '0x47be17067acaee8e70c04647e451c9b8ed251b03', 'value': 686.98709261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9ff39f2282', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:17:02.000Z'}}, {'blockNum': '0x528d7b', 'uniqueId': '0xce77c901edde52710ba2678505064df6a8c0df8b8372d945d6cbea64c8943f6c:log:130', 'hash': '0xce77c901edde52710ba2678505064df6a8c0df8b8372d945d6cbea64c8943f6c', 'from': '0x47be17067acaee8e70c04647e451c9b8ed251b03', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 686.98709261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9ff39f2282', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:28:12.000Z'}}, {'blockNum': '0x528daf', 'uniqueId': '0xa71cca8a3e7b2d14220021eb464e3e394647f6e2ab91cf3820bd708883ad42f7:log:86', 'hash': '0xa71cca8a3e7b2d14220021eb464e3e394647f6e2ab91cf3820bd708883ad42f7', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x678e56d45b6d7504fb67ae7c4093e8e366bb70f5', 'value': 19.08217521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x047162e2ea', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:41:55.000Z'}}, {'blockNum': '0x528ecb', 'uniqueId': '0x46fa3fa4fee325c6071caf3718d0b9e7e58809afb631981498474c11cbbbbe84:log:6', 'hash': '0x46fa3fa4fee325c6071caf3718d0b9e7e58809afb631981498474c11cbbbbe84', 'from': '0xac0c019e626cd28ecbffb160d184c47b2ffe82eb', 'to': '0xd0079694883541f7be13a049f48ee6b4ef43fcd2', 'value': 57.891487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0d7a99fd18', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:41:15.000Z'}}, {'blockNum': '0x528edd', 'uniqueId': '0x7116d0cd0c01e31ed8aade41b74e7bdf7e9bae7a062fb3032a830ac6497a8f37:log:15', 'hash': '0x7116d0cd0c01e31ed8aade41b74e7bdf7e9bae7a062fb3032a830ac6497a8f37', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x483350219364edfb27433641e1876e0907f91d6d', 'value': 25.46879475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05ee0ef77e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:44:25.000Z'}}, {'blockNum': '0x528ede', 'uniqueId': '0x4b13d4e3e2551d0d92be9c1f9743a3f8f0f40a7c9028ac2eade75030fbd78719:log:0', 'hash': '0x4b13d4e3e2551d0d92be9c1f9743a3f8f0f40a7c9028ac2eade75030fbd78719', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbf81c4babc8a4116c742d25be2657f986767080c', 'value': 290.18507256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x439060cfb0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:44:28.000Z'}}, {'blockNum': '0x528fa5', 'uniqueId': '0xa3a213b0a7709695eaa63f886e7173452dfd564d9d0be913a720cf7853d171de:log:65', 'hash': '0xa3a213b0a7709695eaa63f886e7173452dfd564d9d0be913a720cf7853d171de', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4c3e7832d861efb866d10405ab531f04aba40ebb', 'value': 1124.342868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0105c80ea820', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T18:32:35.000Z'}}, {'blockNum': '0x52908d', 'uniqueId': '0xc12b66ad27eb3677005a398eb795d22c0ecbfb8c479e10b2f3110a9bd2ef9bae:log:27', 'hash': '0xc12b66ad27eb3677005a398eb795d22c0ecbfb8c479e10b2f3110a9bd2ef9bae', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xcb343d2dc05b9de33f89100f6dfae41ab77e8154', 'value': 104.83783783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1868d27406', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T19:26:34.000Z'}}, {'blockNum': '0x529098', 'uniqueId': '0x84298351ae5d2cddfa447454cac6982ac499baf913fcf803fedd6c7b20207284:log:38', 'hash': '0x84298351ae5d2cddfa447454cac6982ac499baf913fcf803fedd6c7b20207284', 'from': '0xcb343d2dc05b9de33f89100f6dfae41ab77e8154', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 104.83783783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1868d27406', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T19:29:03.000Z'}}, {'blockNum': '0x5291a0', 'uniqueId': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289:log:50', 'hash': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.029621345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012bc9ee61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:35:22.000Z'}}, {'blockNum': '0x5291a0', 'uniqueId': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289:log:52', 'hash': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x8dc1cf14273acc17fe3ba8f5bdba16764167ba83', 'value': 5.029621345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012bc9ee61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:35:22.000Z'}}, {'blockNum': '0x52920b', 'uniqueId': '0xd7ca1e7e5af891f1ebf0b602720c6538b59c3d94aabc1ba6df349c95f4743f2f:log:12', 'hash': '0xd7ca1e7e5af891f1ebf0b602720c6538b59c3d94aabc1ba6df349c95f4743f2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 3158.45372138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02df62831924', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:59:14.000Z'}}, {'blockNum': '0x529230', 'uniqueId': '0x8cbf3ed86b6871960d7eae2ecd2659d7e50cd8d8ee02117238b581aa9b3beb83:log:6', 'hash': '0x8cbf3ed86b6871960d7eae2ecd2659d7e50cd8d8ee02117238b581aa9b3beb83', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3158.45372138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02df62831924', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:09:28.000Z'}}, {'blockNum': '0x5292bd', 'uniqueId': '0x8fa75d0eb8c6aa7b8d12702bf8cd52f79944d39df7f0911518b2c00618930ac5:log:9', 'hash': '0x8fa75d0eb8c6aa7b8d12702bf8cd52f79944d39df7f0911518b2c00618930ac5', 'from': '0x615b4d528b866fc4d3d9e6d82867b72a25c31a15', 'to': '0x9f708f66eb965d48d8596474406bf1d94ea61fe3', 'value': 199.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90553980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:41:28.000Z'}}, {'blockNum': '0x5292db', 'uniqueId': '0x8b4d66260d07e37fae1710d048689ae229a2e20dc3d5e62a2dcf1abb1a7562a0:log:17', 'hash': '0x8b4d66260d07e37fae1710d048689ae229a2e20dc3d5e62a2dcf1abb1a7562a0', 'from': '0x9f708f66eb965d48d8596474406bf1d94ea61fe3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 199.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90553980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:47:46.000Z'}}, {'blockNum': '0x529379', 'uniqueId': '0xc501cdc33e1c7e68a109c3e6580169209224d4ebf5cae56a9c6c3aeccf4c76f0:log:0', 'hash': '0xc501cdc33e1c7e68a109c3e6580169209224d4ebf5cae56a9c6c3aeccf4c76f0', 'from': '0x95a7414d0666a083039dc56695189dd1ad4d62a1', 'to': '0x6409f54b9c53825029ae57908c47f310ec6aaaf8', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T22:21:08.000Z'}}, {'blockNum': '0x529401', 'uniqueId': '0x52e0c934d72a2d1284324b2c41eeecc5309ec047ced804f61ffa1e3dee7e917c:log:2', 'hash': '0x52e0c934d72a2d1284324b2c41eeecc5309ec047ced804f61ffa1e3dee7e917c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x63c3305e1b88ec935750b67bbf8b385a4df5439e', 'value': 182.48486805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a7cf21bd2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T22:56:15.000Z'}}, {'blockNum': '0x529417', 'uniqueId': '0xa44b725480faf4756046ce79b2f48bf52f4e615d28181f5feb9676b9b3019f3a:log:1', 'hash': '0xa44b725480faf4756046ce79b2f48bf52f4e615d28181f5feb9676b9b3019f3a', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x3c737c87ce731d935eb1f52e9a01dc325c9fe9c1', 'value': 1489.74503725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015adbb947c2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T23:01:24.000Z'}}, {'blockNum': '0x529513', 'uniqueId': '0x8eed54d249912b3cb447aa66a93391636065cdf695a6996e1cd4717d3d0bb592:log:4', 'hash': '0x8eed54d249912b3cb447aa66a93391636065cdf695a6996e1cd4717d3d0bb592', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x008758bef331f49bd327ef2a499ca749740eb16c', 'value': 16097.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ea3e5ed6b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:00:25.000Z'}}, {'blockNum': '0x52952d', 'uniqueId': '0x7b86ca5374c1890bc7b381839e2e78afeede4d0ed575689803e7b3f41a722ff0:log:25', 'hash': '0x7b86ca5374c1890bc7b381839e2e78afeede4d0ed575689803e7b3f41a722ff0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 66385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3c607657ea00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:07:23.000Z'}}, {'blockNum': '0x529569', 'uniqueId': '0x3c62930baa3814e5a187a981f7eb049a85ff87473e28827c6f3465b31adbec87:log:10', 'hash': '0x3c62930baa3814e5a187a981f7eb049a85ff87473e28827c6f3465b31adbec87', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x289c88338243ac66306c2a46e57ba24794202426', 'value': 44.06800006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0a42a8513c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:19:11.000Z'}}, {'blockNum': '0x529569', 'uniqueId': '0x772117e18edee5e7564fd2d1ec5f1b6a5d6bae161816fea7dc9bfe2cb3833721:log:91', 'hash': '0x772117e18edee5e7564fd2d1ec5f1b6a5d6bae161816fea7dc9bfe2cb3833721', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x68d26a9153031cfb4486838a2d8f1562aecbb948', 'value': 7.67322446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c95c1d0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:19:11.000Z'}}, {'blockNum': '0x52958b', 'uniqueId': '0x84b2cbe61234bf44135d975fad010671d3fa7e7f10317096620479cfd84208f2:log:3', 'hash': '0x84b2cbe61234bf44135d975fad010671d3fa7e7f10317096620479cfd84208f2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 8209.06437431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0777525db026', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:26:17.000Z'}}, {'blockNum': '0x529590', 'uniqueId': '0xf0c83e456da41a82bcf2ae9562d6bddec3e9ce3ec05769dbaa17be356b98c7a9:log:2', 'hash': '0xf0c83e456da41a82bcf2ae9562d6bddec3e9ce3ec05769dbaa17be356b98c7a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 55477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3274bee0d200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:27:53.000Z'}}, {'blockNum': '0x5295b2', 'uniqueId': '0x8489f5bd4993b52d89b956b123e86c05e081958bb435fee1cd088c7be85d9032:log:4', 'hash': '0x8489f5bd4993b52d89b956b123e86c05e081958bb435fee1cd088c7be85d9032', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 8209.06437431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0777525db026', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:35:35.000Z'}}, {'blockNum': '0x5295ce', 'uniqueId': '0xe35c2de21834b3806ebd7def512a62008b41180ebd78cb4109f255f42e0bc641:log:1', 'hash': '0xe35c2de21834b3806ebd7def512a62008b41180ebd78cb4109f255f42e0bc641', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 4013.92510858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a690948b64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:41:44.000Z'}}, {'blockNum': '0x5295ed', 'uniqueId': '0x05aa7a5165f2cb4fddfd0d504f255556699437bbd94a4df4bdf5a6bf893feba4:log:72', 'hash': '0x05aa7a5165f2cb4fddfd0d504f255556699437bbd94a4df4bdf5a6bf893feba4', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4013.92510858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a690948b64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:50:59.000Z'}}]}}
Number of returned transfers:  145
Answer is complete
 
symbol             ARN
group              FCS
date        2018-04-10
hour             16:30
exchange       binance
Name: 454, dtype: object
HERE
 Symbol: ARN, Contract: 
Datetime timestamps:  2018-04-10 16:30:00 2018-04-10 04:30:00 2018-04-11 04:30:00
Unix timestamps:  1523327400.0 1523413800.0
Hex Block Numbers:  0x529786 0x52af54
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             MDA
group              FCS
date        2018-04-17
hour             16:30
exchange       binance
Name: 455, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2018-04-17 16:30:00 2018-04-17 04:30:00 2018-04-18 04:30:00
Unix timestamps:  1523932200.0 1524018600.0
Hex Block Numbers:  0x533a1e 0x5350fe
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x533bb4', 'uniqueId': '0x8c3bf2a76bc879e7f69a2369eff83affa522e06c92da39952e1b24bf8f5329db:log:11', 'hash': '0x8c3bf2a76bc879e7f69a2369eff83affa522e06c92da39952e1b24bf8f5329db', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x55fd7da565807b21f81b617b4e28f0a7cb48712f', 'value': 4514.2973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf4b875c493ed014000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T04:05:45.000Z'}}, {'blockNum': '0x533be2', 'uniqueId': '0x453870714943c5acc5e12ece311a5fd9af0676d1dce191727bc941d87130e506:log:28', 'hash': '0x453870714943c5acc5e12ece311a5fd9af0676d1dce191727bc941d87130e506', 'from': '0x55fd7da565807b21f81b617b4e28f0a7cb48712f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4514.2973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf4b875c493ed014000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T04:18:22.000Z'}}, {'blockNum': '0x533c2a', 'uniqueId': '0xceecd691d1366223abf705297f9c9a2eb3a9d28b6768f37ebfc80cd6e19e488b:log:21', 'hash': '0xceecd691d1366223abf705297f9c9a2eb3a9d28b6768f37ebfc80cd6e19e488b', 'from': '0x192ca4b1e94f7bd1ccb5d6d1ebc38ad320f9853b', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 296.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x10158a26041a65ffff', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T04:35:29.000Z'}}, {'blockNum': '0x533e60', 'uniqueId': '0xe3e459ff899db8fc0d06ac8d1b866ff924927c1d76ea2461a46d3edf17d0636f:log:64', 'hash': '0xe3e459ff899db8fc0d06ac8d1b866ff924927c1d76ea2461a46d3edf17d0636f', 'from': '0x60a716b46564cb5c41548226b50eb542c838ad32', 'to': '0xe883bbb78d5cb167ecb610fbbdeef817a7ecdf11', 'value': 10864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x024cf049680fa3c00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T06:52:25.000Z'}}, {'blockNum': '0x533e79', 'uniqueId': '0xb157f6ed6ce2ee586c73bcbe6b1b122ca31b06f72cec417508bbb6efc534497b:log:64', 'hash': '0xb157f6ed6ce2ee586c73bcbe6b1b122ca31b06f72cec417508bbb6efc534497b', 'from': '0x51c0be102eb8096f8c05e14619728def2fb1c996', 'to': '0x4023c2e123c0d9ede6dc9786200012c66fd0fb31', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x06c6b935b8bbd40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T06:58:02.000Z'}}, {'blockNum': '0x533ea5', 'uniqueId': '0xffc6533b65d0409e8421fbaff3bf5bddcfca0c9de54c9d2c1da022ade7bd9a06:log:50', 'hash': '0xffc6533b65d0409e8421fbaff3bf5bddcfca0c9de54c9d2c1da022ade7bd9a06', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 4478.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf2c7ac35e3daea0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T07:11:24.000Z'}}, {'blockNum': '0x533ebc', 'uniqueId': '0x917f07bd745e59f5fa81df273ca0fa0316e081d2bca4cd1b59469676df9476c3:log:79', 'hash': '0x917f07bd745e59f5fa81df273ca0fa0316e081d2bca4cd1b59469676df9476c3', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4478.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf2c7ac35e3daea0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T07:18:26.000Z'}}, {'blockNum': '0x533f16', 'uniqueId': '0x90f3555c425d3666e117655a5a4ee68a9801aeafd3ac869ac27a53218c790f99:log:65', 'hash': '0x90f3555c425d3666e117655a5a4ee68a9801aeafd3ac869ac27a53218c790f99', 'from': '0xb7317d390cfd775a1592f05e13da8100a87d17c5', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 1501.4999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x51657f969f008f1800', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T07:39:37.000Z'}}, {'blockNum': '0x53421e', 'uniqueId': '0xb2bbc1e1a0ac2e3de80c20aaa88a4d40a56ba2f8fb8cf5ed967c6bedc679baa0:log:47', 'hash': '0xb2bbc1e1a0ac2e3de80c20aaa88a4d40a56ba2f8fb8cf5ed967c6bedc679baa0', 'from': '0x8d99e55d61f47602bfb9548e9669419091049119', 'to': '0x59cc99e36ded749a1d8bb75e08f89cff36d81a2a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T10:55:53.000Z'}}, {'blockNum': '0x534381', 'uniqueId': '0xfef9c73266ab671648c81fd8cb8dfe265e481f4c4843624e0c077b97823edd8e:log:5', 'hash': '0xfef9c73266ab671648c81fd8cb8dfe265e481f4c4843624e0c077b97823edd8e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4469.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf24d8c5483b37a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T12:32:16.000Z'}}, {'blockNum': '0x534391', 'uniqueId': '0xaee718a952305fa56556edb1626d28467ee5f1131a07fc4cb73eed3b4e44998a:log:1', 'hash': '0xaee718a952305fa56556edb1626d28467ee5f1131a07fc4cb73eed3b4e44998a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7a855c1afb66df4f4dcba89bc4e64ac3b8a490f1', 'value': 8348.487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01c49287f651f68d8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T12:36:46.000Z'}}, {'blockNum': '0x5343a1', 'uniqueId': '0xb43010eaa5a050f33a92020248015e73d511805ee58f7fb50e39692c4dfff54f:log:1', 'hash': '0xb43010eaa5a050f33a92020248015e73d511805ee58f7fb50e39692c4dfff54f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0574f22b83b87ea19e200613e82fa9b0a5ae018b', 'value': 1222.811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x4249e95dc5082f8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T12:41:06.000Z'}}, {'blockNum': '0x53446e', 'uniqueId': '0xfe5224075bfd6628c28880a66611bedd8c62524cf9a8efa619b8849053c7c0e7:log:90', 'hash': '0xfe5224075bfd6628c28880a66611bedd8c62524cf9a8efa619b8849053c7c0e7', 'from': '0x0574f22b83b87ea19e200613e82fa9b0a5ae018b', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 2445.611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8493aba718fbd78000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T13:32:41.000Z'}}, {'blockNum': '0x53446e', 'uniqueId': '0x70885b0a52cae83178e0a3d1340d4c66e94ae22351a29f62d69a3b6c0e153c05:log:91', 'hash': '0x70885b0a52cae83178e0a3d1340d4c66e94ae22351a29f62d69a3b6c0e153c05', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 8942.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01e4c4bacd225d200000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T13:32:41.000Z'}}, {'blockNum': '0x534735', 'uniqueId': '0x9e6d8293feabceaec550feb217b7400f7d73e9cf1decdf9df63da6f7b89374c1:log:45', 'hash': '0x9e6d8293feabceaec550feb217b7400f7d73e9cf1decdf9df63da6f7b89374c1', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 2640.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8f244c78080af20000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:30:20.000Z'}}, {'blockNum': '0x534742', 'uniqueId': '0xb95b5de9b78c69e96c8be1b1c598b2e4d636f0533659efcfa92fb0f75fb9a6ec:log:17', 'hash': '0xb95b5de9b78c69e96c8be1b1c598b2e4d636f0533659efcfa92fb0f75fb9a6ec', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 1847.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6427368586862e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:32:49.000Z'}}, {'blockNum': '0x534743', 'uniqueId': '0xb8ddc195e88eba2e850dada33379003e92f8d1c24e8d979780089241b43c6b3b:log:4', 'hash': '0xb8ddc195e88eba2e850dada33379003e92f8d1c24e8d979780089241b43c6b3b', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1660, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x59fd20b4f16c700000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:33:02.000Z'}}, {'blockNum': '0x53474c', 'uniqueId': '0xc71d7ac812e44f7ebe62b96c9b8000829b53637539eedc637e254eaff4683be4:log:80', 'hash': '0xc71d7ac812e44f7ebe62b96c9b8000829b53637539eedc637e254eaff4683be4', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xeec3e3ab52572a51d93572e54fbb63824d1756bd', 'value': 2735.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x944ab044b3290e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:35:08.000Z'}}, {'blockNum': '0x53474f', 'uniqueId': '0x8bf14369a1d8893d0ef200319bccd6a33afa400652fdb9010cc24e7b242293db:log:9', 'hash': '0x8bf14369a1d8893d0ef200319bccd6a33afa400652fdb9010cc24e7b242293db', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 2719.207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x936893e7861b9d8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:36:04.000Z'}}, {'blockNum': '0x53474f', 'uniqueId': '0xfed07befa9befe6e6f8fd6821010327dad27d2254a97a91c3599e7d920e75f51:log:41', 'hash': '0xfed07befa9befe6e6f8fd6821010327dad27d2254a97a91c3599e7d920e75f51', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 20.977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01231d465bed5e8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:36:04.000Z'}}, {'blockNum': '0x53475a', 'uniqueId': '0xb40e22acdabe0661da3ffef9a2aa9a8c60aedd3c56528017a82b33029cb162bf:log:35', 'hash': '0xb40e22acdabe0661da3ffef9a2aa9a8c60aedd3c56528017a82b33029cb162bf', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2719.207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x936893e7861b9d8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:38:51.000Z'}}, {'blockNum': '0x53475a', 'uniqueId': '0x4b5551358f7b821bd994e8366561769c6ac34cd5f74f92ef15dc9527fd55f0e6:log:36', 'hash': '0x4b5551358f7b821bd994e8366561769c6ac34cd5f74f92ef15dc9527fd55f0e6', 'from': '0xeec3e3ab52572a51d93572e54fbb63824d1756bd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2735.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x944ab044b3290e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:38:51.000Z'}}, {'blockNum': '0x53475a', 'uniqueId': '0x9b358ef6a0b8bb520f861714be2c87a59f627f17fd78ca7ec38ff84346d68120:log:39', 'hash': '0x9b358ef6a0b8bb520f861714be2c87a59f627f17fd78ca7ec38ff84346d68120', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf34b82fd8e91200000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:38:51.000Z'}}, {'blockNum': '0x53475a', 'uniqueId': '0xf2aefd50c0d7f2cb7e7e6d88181238dbb4eca365b28d52e1ac56ddb700969079:log:40', 'hash': '0xf2aefd50c0d7f2cb7e7e6d88181238dbb4eca365b28d52e1ac56ddb700969079', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1660, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x59fd20b4f16c700000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:38:51.000Z'}}, {'blockNum': '0x534766', 'uniqueId': '0xd3978985d54d269cd42518e0c90836297cbbbd820df87f9bfcd6ee0742c4d5d8:log:5', 'hash': '0xd3978985d54d269cd42518e0c90836297cbbbd820df87f9bfcd6ee0742c4d5d8', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1379.763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x4acc0ee233cb4b8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:40:47.000Z'}}, {'blockNum': '0x534767', 'uniqueId': '0xcb47b3c9097d0ea4292aabb2ff85dc5ccc36f27e2a443e50c68324ab609eb3fe:log:23', 'hash': '0xcb47b3c9097d0ea4292aabb2ff85dc5ccc36f27e2a443e50c68324ab609eb3fe', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 699.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x25ebca45c8c1400000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:40:57.000Z'}}, {'blockNum': '0x534773', 'uniqueId': '0xf2a0cd2503ab7a431722d5aff1d71193d5dc835b21ef4559e34119547fa26454:log:19', 'hash': '0xf2a0cd2503ab7a431722d5aff1d71193d5dc835b21ef4559e34119547fa26454', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 250.032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0d8de41b4610780000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:44:16.000Z'}}, {'blockNum': '0x534784', 'uniqueId': '0xb2f0e26b5280fc6aa30194c7dc5ee3e36be2265b114fc3dbdc67844457ba6383:log:49', 'hash': '0xb2f0e26b5280fc6aa30194c7dc5ee3e36be2265b114fc3dbdc67844457ba6383', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2632.60763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8eb6c52354fcfee000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T16:48:40.000Z'}}, {'blockNum': '0x534913', 'uniqueId': '0x209f8133fcd4190cb1f3eaa27c4d143f03dda229fa6e7939159882f6c17f96f6:log:21', 'hash': '0x209f8133fcd4190cb1f3eaa27c4d143f03dda229fa6e7939159882f6c17f96f6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T18:26:45.000Z'}}, {'blockNum': '0x534c22', 'uniqueId': '0x284743d88c329d62c0a64060e4ae0b06bea1b011f8d5755ef3790b5f6e53bfd3:log:17', 'hash': '0x284743d88c329d62c0a64060e4ae0b06bea1b011f8d5755ef3790b5f6e53bfd3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x192ca4b1e94f7bd1ccb5d6d1ebc38ad320f9853b', 'value': 496.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1aed18e25ee0860000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T21:28:23.000Z'}}, {'blockNum': '0x534d8a', 'uniqueId': '0x50f797c95d5371aa1ccdb7b934dec772f6bbf863e02311ef6a3e72f7339ec15b:log:13', 'hash': '0x50f797c95d5371aa1ccdb7b934dec772f6bbf863e02311ef6a3e72f7339ec15b', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x570fba2b0c1d580000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T22:58:20.000Z'}}, {'blockNum': '0x534dbc', 'uniqueId': '0x56b2c6d828a848b8c0d3072fb4790e8082ce1a162c05d9c800042b35509b410f:log:25', 'hash': '0x56b2c6d828a848b8c0d3072fb4790e8082ce1a162c05d9c800042b35509b410f', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x570fba2b0c1d580000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:08:21.000Z'}}, {'blockNum': '0x534ded', 'uniqueId': '0x529656412645d72e8ac61ffb589fa00c03367909c57dd814dfc050387cf99b54:log:72', 'hash': '0x529656412645d72e8ac61ffb589fa00c03367909c57dd814dfc050387cf99b54', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 2712.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x930b7fda8f1f120000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:20:26.000Z'}}, {'blockNum': '0x534ded', 'uniqueId': '0xcda8395ed706338fa4ce0a86f3a57908f15ed5e387f561a04b4bf6880bd1c6a2:log:73', 'hash': '0xcda8395ed706338fa4ce0a86f3a57908f15ed5e387f561a04b4bf6880bd1c6a2', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 1773.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x602441b59823460000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:20:26.000Z'}}, {'blockNum': '0x534ded', 'uniqueId': '0xa1966c1a06d8c9c6b2cee5083d9d69cb52857db3e54680419545214ef616c513:log:74', 'hash': '0xa1966c1a06d8c9c6b2cee5083d9d69cb52857db3e54680419545214ef616c513', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xbaee053cefa62e332c1fc1235005b8bcc9d09a7c', 'value': 2558.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8ab251f27c6cea0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:20:26.000Z'}}, {'blockNum': '0x534ded', 'uniqueId': '0x091798c3544dcbf72bea20bd72aa84f3f820b4ffc2a54279b95a8da1ed9a9dc1:log:80', 'hash': '0x091798c3544dcbf72bea20bd72aa84f3f820b4ffc2a54279b95a8da1ed9a9dc1', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xb317b47a500189a7fa8e424da937706ef1832465', 'value': 1293.5466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x461f90b332464e8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:20:26.000Z'}}, {'blockNum': '0x534e0d', 'uniqueId': '0x4344f8166edda108c724f30bde585eb2fbfcb0355807e52a8da07f479a4a2dab:log:4', 'hash': '0x4344f8166edda108c724f30bde585eb2fbfcb0355807e52a8da07f479a4a2dab', 'from': '0xbaee053cefa62e332c1fc1235005b8bcc9d09a7c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2558.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8ab251f27c6cea0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:28:02.000Z'}}, {'blockNum': '0x534e0f', 'uniqueId': '0xd0c0858c5970efd30e22619c9a0153b4d412e5962483aec30ce5e20852047473:log:75', 'hash': '0xd0c0858c5970efd30e22619c9a0153b4d412e5962483aec30ce5e20852047473', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf32fc1902742580000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-17T23:28:39.000Z'}}, {'blockNum': '0x534ff9', 'uniqueId': '0x8982979575c6d7a1b368cfb77f55d2fa0881843d2ca7efbfdd39aad55f61a9d0:log:4', 'hash': '0x8982979575c6d7a1b368cfb77f55d2fa0881843d2ca7efbfdd39aad55f61a9d0', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 971.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x34a5d47877c3de0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-18T01:28:44.000Z'}}, {'blockNum': '0x535024', 'uniqueId': '0x3b0572c174fc3c88877c5299a65875fa4a9527a5ab7d125dc2d9c41b86b9e776:log:56', 'hash': '0x3b0572c174fc3c88877c5299a65875fa4a9527a5ab7d125dc2d9c41b86b9e776', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 971.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x34a5d47877c3de0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-18T01:38:21.000Z'}}, {'blockNum': '0x535084', 'uniqueId': '0xda6d72aba35bb9724bef9e6c01bd1b266789c2306c27084b1d735733ec677556:log:0', 'hash': '0xda6d72aba35bb9724bef9e6c01bd1b266789c2306c27084b1d735733ec677556', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 764.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x297597e4f80aff0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-18T01:58:51.000Z'}}, {'blockNum': '0x5350a2', 'uniqueId': '0xa6ca5c90cb4804424482476fd0536240e9becfe3989a5bb75d4b3970092a4ce7:log:15', 'hash': '0xa6ca5c90cb4804424482476fd0536240e9becfe3989a5bb75d4b3970092a4ce7', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 764.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x297597e4f80aff0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-18T02:08:09.000Z'}}]}}
Number of returned transfers:  42
Answer is complete
 
symbol             MOD
group              FCS
date        2018-05-18
hour             15:00
exchange       binance
Name: 460, dtype: object
HERE
{'arbitrum-one': '0x244ae62439c1ef3187f244d8604ac2c391ef2b53'}
No contract for ethereum specified
{'aptos': '0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD'}
No contract for ethereum specified
 Symbol: MOD, Contract: 0xea1ea0972fa092dd463f2968f9bb51cc4c981d71
Datetime timestamps:  2018-05-18 15:00:00 2018-05-18 03:00:00 2018-05-19 03:00:00
Unix timestamps:  1526605200.0 1526691600.0
Hex Block Numbers:  0x55f0d5 0x5606da
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             DLT
group              FCS
date        2018-06-06
hour             13:00
exchange       binance
Name: 462, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2018-06-06 13:00:00 2018-06-06 01:00:00 2018-06-07 01:00:00
Unix timestamps:  1528239600.0 1528326000.0
Hex Block Numbers:  0x579168 0x57a77d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x579297', 'uniqueId': '0x58bf991836634b73e5bb7a7d3bb97def1221cdd744ad8fdd34f96d5684a5c9bf:log:1', 'hash': '0x58bf991836634b73e5bb7a7d3bb97def1221cdd744ad8fdd34f96d5684a5c9bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe1b3a2adb7c27ab022b314735c28b3610f54e763', 'value': 6139.875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014cd7e1e60c4d838000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T00:16:45.000Z'}}, {'blockNum': '0x579969', 'uniqueId': '0x965b63ff9e8d24498379cfdc55bc8f4b5edfaef526323cfffcb432d91f7d5c0f:log:4', 'hash': '0x965b63ff9e8d24498379cfdc55bc8f4b5edfaef526323cfffcb432d91f7d5c0f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca8edb6ccbdbdb8b3d739feb96cfc06d633097c', 'value': 979.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x35194b0c62f71e0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T07:35:00.000Z'}}, {'blockNum': '0x57996f', 'uniqueId': '0x5b80b5861ea666d82301d762790055cd170ba254da7a3dc69e72b040d14c1ae5:log:19', 'hash': '0x5b80b5861ea666d82301d762790055cd170ba254da7a3dc69e72b040d14c1ae5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x220f628e708927c097e774f0e5ae33790a691afc', 'value': 479.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x19fe66358007ce0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T07:37:21.000Z'}}, {'blockNum': '0x579a4e', 'uniqueId': '0x419936553781c261c88057903efb772ba92750e60b93d8790cfc2ceff4f51bb2:log:3', 'hash': '0x419936553781c261c88057903efb772ba92750e60b93d8790cfc2ceff4f51bb2', 'from': '0xd2454ea208bda1aae77b5610c63cf1eabb98e352', 'to': '0x0201e9281a0f78a57feeb0d5abd995d808ee0add', 'value': 2478.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x866042aac136480000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T08:37:27.000Z'}}, {'blockNum': '0x579ac9', 'uniqueId': '0xd73a7fb1a15e6c694af2a13d16c1e83cfcf6af5fbd5127e2605af43ecb7edcd2:log:5', 'hash': '0xd73a7fb1a15e6c694af2a13d16c1e83cfcf6af5fbd5127e2605af43ecb7edcd2', 'from': '0xa1ff9c3273f89ae97ef4343b36eca9c64f0012b6', 'to': '0x18a9db8ced6c6cb8a8b03e4414f4b7f9dfd12eda', 'value': 541.15407692308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1d56057dcdea98c200', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T09:08:01.000Z'}}, {'blockNum': '0x579cc2', 'uniqueId': '0x6f191d3a806e5dd4949186ac37b59ebc68442625924d799c2f10c7127e327a49:log:30', 'hash': '0x6f191d3a806e5dd4949186ac37b59ebc68442625924d799c2f10c7127e327a49', 'from': '0x6c58dde6896c3c51462d8dda881c40372d07eed3', 'to': '0x222c92d48467e771878c1aa902cbb420fc388116', 'value': 27772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x05e185ec49a344700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T11:16:18.000Z'}}, {'blockNum': '0x579cec', 'uniqueId': '0xb0da20f5d3fc917a8766f35a58a975f321718ce33123d5def31d45fbe6e37cb7:log:15', 'hash': '0xb0da20f5d3fc917a8766f35a58a975f321718ce33123d5def31d45fbe6e37cb7', 'from': '0x222c92d48467e771878c1aa902cbb420fc388116', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x05e185ec49a344700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T11:23:11.000Z'}}, {'blockNum': '0x579dc4', 'uniqueId': '0x33baf564b11b8a7aa455388739a7fba1a513e602774f1cf1187feaab72ab8c42:log:37', 'hash': '0x33baf564b11b8a7aa455388739a7fba1a513e602774f1cf1187feaab72ab8c42', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'value': 1611.944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5762377f8dfe440000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T12:16:17.000Z'}}, {'blockNum': '0x579dfc', 'uniqueId': '0x3958a8e47b772f5b8806f58a0d36d62319b333678a20082ca196a285e706a2e3:log:21', 'hash': '0x3958a8e47b772f5b8806f58a0d36d62319b333678a20082ca196a285e706a2e3', 'from': '0xfb846568dde09cd34d24a5475945a241bdcdccc4', 'to': '0xdd43c23a826b1d1f34ef0c6ca1d878cf92b2b8cd', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T12:30:26.000Z'}}, {'blockNum': '0x579e3d', 'uniqueId': '0x1b32b6f5fd4eb87c0bc7d7242d1e195ea71fc024ed54ae5be42e7ea8bcb5a5e4:log:34', 'hash': '0x1b32b6f5fd4eb87c0bc7d7242d1e195ea71fc024ed54ae5be42e7ea8bcb5a5e4', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x727904d80c5bdd4a7d7341e22e4b756a81f8eb52', 'value': 588.9337903243025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1fed1921feb870405e', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T12:49:34.000Z'}}, {'blockNum': '0x579f0c', 'uniqueId': '0x40abc501f0c5a1c0c2c562808b70711c1bd1a5f115f24b03a48c45ea1e6c833f:log:30', 'hash': '0x40abc501f0c5a1c0c2c562808b70711c1bd1a5f115f24b03a48c45ea1e6c833f', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T13:42:01.000Z'}}, {'blockNum': '0x579f29', 'uniqueId': '0x427b7e9c9a0eedb7341a49fe02e3962fa0ccc361697030205aa823932d92ffb9:log:38', 'hash': '0x427b7e9c9a0eedb7341a49fe02e3962fa0ccc361697030205aa823932d92ffb9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 1157.496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3ebf7bdf52c78c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T13:50:27.000Z'}}, {'blockNum': '0x579f7a', 'uniqueId': '0xe5c094ac1c14e9a8008a0c907296c8e3883dae30e8f5fa47b065914e27e2ceb9:log:157', 'hash': '0xe5c094ac1c14e9a8008a0c907296c8e3883dae30e8f5fa47b065914e27e2ceb9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x30dfa271dafe619131c481d0f9265457ecc55649', 'value': 9643.826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x020acaf88bd1ec450000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T14:12:46.000Z'}}, {'blockNum': '0x579f9e', 'uniqueId': '0x6ab08cbddba9e7bfac635406cece28d9e7a7fa167f584b76a406137a8475ec82:log:10', 'hash': '0x6ab08cbddba9e7bfac635406cece28d9e7a7fa167f584b76a406137a8475ec82', 'from': '0x30dfa271dafe619131c481d0f9265457ecc55649', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9643.826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x020acaf88bd1ec450000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T14:23:02.000Z'}}, {'blockNum': '0x57a033', 'uniqueId': '0x296f520c50168da050659423c0c13ef6aa0a725e8bb621302ade9dedd8be6625:log:43', 'hash': '0x296f520c50168da050659423c0c13ef6aa0a725e8bb621302ade9dedd8be6625', 'from': '0xbb49ebe9ede41096d2df352d95253f083c7a0b93', 'to': '0x2636cc7b852cb8a16209ba9484279b61035b349a', 'value': 205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0b1cf24ddd0b140000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T15:01:46.000Z'}}, {'blockNum': '0x57a055', 'uniqueId': '0x8e12966f93431c3bf7170faf3719bbaa3288b7b5152b4eed7c1ae65817f9222e:log:0', 'hash': '0x8e12966f93431c3bf7170faf3719bbaa3288b7b5152b4eed7c1ae65817f9222e', 'from': '0x885859b341c57df0df87db7f70b17fe214250914', 'to': '0xd1ebc4b35a9315a99003433ac78ecf6b62dcb18d', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T15:09:46.000Z'}}, {'blockNum': '0x57a063', 'uniqueId': '0x73d907a23a59756936ac28f4fe862387f2d8ec3342f991aa7828497b60d8946a:log:23', 'hash': '0x73d907a23a59756936ac28f4fe862387f2d8ec3342f991aa7828497b60d8946a', 'from': '0xd1ebc4b35a9315a99003433ac78ecf6b62dcb18d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T15:13:24.000Z'}}, {'blockNum': '0x57a113', 'uniqueId': '0xc3df48a8c14c744acbb6a777e06be28c52a3571df2ced56cbf4ae4010c0872d1:log:7', 'hash': '0xc3df48a8c14c744acbb6a777e06be28c52a3571df2ced56cbf4ae4010c0872d1', 'from': '0x4dfb8bdea56250a0ed403fff7b20284a90f65554', 'to': '0xffadd98d55234c1e99daaa9b6491cc403a021905', 'value': 846.15384615385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x2ddebe57f632c21280', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T15:57:08.000Z'}}, {'blockNum': '0x57a177', 'uniqueId': '0xea3de4f985574a7d0c9aa98e34e2fee47c1983902f8a97dccd58c89f5d72def6:log:25', 'hash': '0xea3de4f985574a7d0c9aa98e34e2fee47c1983902f8a97dccd58c89f5d72def6', 'from': '0xe5b4cc423df8aeca47d250c7c5e1f015cf2d7e7b', 'to': '0x5bb60fd2de295b052c2e546743efd0d6a77870d6', 'value': 4823.529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01057be975591b2a8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T16:23:12.000Z'}}, {'blockNum': '0x57a521', 'uniqueId': '0x3711f9bb3d73ea0e5ded523d6a4e320a1823703cdc1819fdda2007e638db4a8a:log:49', 'hash': '0x3711f9bb3d73ea0e5ded523d6a4e320a1823703cdc1819fdda2007e638db4a8a', 'from': '0x530535c99bcdb480e3c53eeaf483c465269e1532', 'to': '0x78edda143e76cfcde95dadca71f402085b2a549c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T20:27:45.000Z'}}, {'blockNum': '0x57a611', 'uniqueId': '0xb615dd469660dbffe92baa3f193db2f6806ec0b3332a1c8fa2ba79498df9bd61:log:2', 'hash': '0xb615dd469660dbffe92baa3f193db2f6806ec0b3332a1c8fa2ba79498df9bd61', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4cbf35cc3ff8c8a04f5b6b1aa654d7deda0816bd', 'value': 1008.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x36ab5529e59e2f0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T21:29:25.000Z'}}, {'blockNum': '0x57a72d', 'uniqueId': '0x47daad377599a0dd095e9ef69274c9902b0e126f5149a85e4fce0727b4329c58:log:81', 'hash': '0x47daad377599a0dd095e9ef69274c9902b0e126f5149a85e4fce0727b4329c58', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x57988a29d9a5e74ef0eddf766387ae4207a6d509', 'value': 304.68079999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x10844ba552a5ca1c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-06T22:42:02.000Z'}}]}}
Number of returned transfers:  22
Answer is complete
 
symbol             AST
group              FCS
date        2018-06-21
hour             14:30
exchange       binance
Name: 463, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
 Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps:  2018-06-21 14:30:00 2018-06-21 02:30:00 2018-06-22 02:30:00
Unix timestamps:  1529541000.0 1529627400.0
Hex Block Numbers:  0x58e3b2 0x58faa4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x58e425', 'uniqueId': '0xb720b4089e7e318c85b7dfb55fc834adeb21534891d19d1a6e384c6115a8448c:log:14', 'hash': '0xb720b4089e7e318c85b7dfb55fc834adeb21534891d19d1a6e384c6115a8448c', 'from': '0x1967b199a80e44e4040ae16ff7c18ee68b70c6e6', 'to': '0xede4a45cb8a222c7d0f989fa12b4bfe17f34bcb4', 'value': 5022.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02fe644a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T00:57:29.000Z'}}, {'blockNum': '0x58e43d', 'uniqueId': '0xf07a6b5b716ef7ded093e3d6fb2cad05e4f22a9436e700ed053a55f862fecc0e:log:116', 'hash': '0xf07a6b5b716ef7ded093e3d6fb2cad05e4f22a9436e700ed053a55f862fecc0e', 'from': '0x188e70665ae83d305578467c8470dd2e5dfa3d51', 'to': '0x94689dfed4e4dcaaeb0175b55c4d8bdb4c46fa51', 'value': 3187.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01e67250', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:02:25.000Z'}}, {'blockNum': '0x58e445', 'uniqueId': '0x1fe06ea45ded096c588cc4b9ba07ca7963d4ef0a76e06f1fa6f36cca4653cef6:log:13', 'hash': '0x1fe06ea45ded096c588cc4b9ba07ca7963d4ef0a76e06f1fa6f36cca4653cef6', 'from': '0xede4a45cb8a222c7d0f989fa12b4bfe17f34bcb4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5022.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02fe644a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:05:11.000Z'}}, {'blockNum': '0x58e44a', 'uniqueId': '0x9758a0eafc461d550c22651bbbf907c169b78d488a49e66ef1f439224fac6fab:log:113', 'hash': '0x9758a0eafc461d550c22651bbbf907c169b78d488a49e66ef1f439224fac6fab', 'from': '0xb57f9609b90e86d46092d583ed40ccde1cb8a2c5', 'to': '0x034a211eafc44846c9f0148ef36dc8a4e2ab6ece', 'value': 403.986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3da4b4', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:06:16.000Z'}}, {'blockNum': '0x58e46b', 'uniqueId': '0x67b7aa9527b99b779916fc92cfa7eaba013fa6a5e9aa2b485a278a6131ddc6c7:log:3', 'hash': '0x67b7aa9527b99b779916fc92cfa7eaba013fa6a5e9aa2b485a278a6131ddc6c7', 'from': '0x94689dfed4e4dcaaeb0175b55c4d8bdb4c46fa51', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3187.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01e67250', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:15:09.000Z'}}, {'blockNum': '0x58e476', 'uniqueId': '0xf123977eefe1c86b489b8243751b46a71a209eb7c7bb971f6a789681164aea61:log:33', 'hash': '0xf123977eefe1c86b489b8243751b46a71a209eb7c7bb971f6a789681164aea61', 'from': '0x7ec542e0a758dbe15f6294b3793dd5590d591ce2', 'to': '0x5d0415fedfff6da94acbc18e2333ba673d942bde', 'value': 1236.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbcb880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:17:41.000Z'}}, {'blockNum': '0x58e479', 'uniqueId': '0xa6a43c4614adc0d23ebe540785e1b111a3181203098f28d4698295dc02d3c1a0:log:34', 'hash': '0xa6a43c4614adc0d23ebe540785e1b111a3181203098f28d4698295dc02d3c1a0', 'from': '0x76e6a066190219dd929d7d5d7031fc90c4516b65', 'to': '0xf904c33423cfd645a62ed4a332eaa669e26c61d3', 'value': 497.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4bd6d8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:18:20.000Z'}}, {'blockNum': '0x58e493', 'uniqueId': '0x16d30d5b25c54c8c4c2f7d7f06625c8c14bd94249a9188b531759c1adf6b263e:log:3', 'hash': '0x16d30d5b25c54c8c4c2f7d7f06625c8c14bd94249a9188b531759c1adf6b263e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeeb9233628f87d3ca253c174a62285363819cfe3', 'value': 8008.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c60bc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:25:21.000Z'}}, {'blockNum': '0x58e4a7', 'uniqueId': '0xcf33ced666974bdf86f123ceaeffdfbd5996299c5ca743f1dd22dd4a43183245:log:49', 'hash': '0xcf33ced666974bdf86f123ceaeffdfbd5996299c5ca743f1dd22dd4a43183245', 'from': '0xeeb9233628f87d3ca253c174a62285363819cfe3', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 8008.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c60bc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T01:31:18.000Z'}}, {'blockNum': '0x58e53a', 'uniqueId': '0x14c78978df89f28fa8c4a4df20ba61714dbcc377af5c8d872037bc33c42df10f:log:91', 'hash': '0x14c78978df89f28fa8c4a4df20ba61714dbcc377af5c8d872037bc33c42df10f', 'from': '0xfa4be64c1901d2a75f8af0e22a1adb8faf6414ff', 'to': '0x5d3ed56d2038c51317d8a86ac18d85440471cfbb', 'value': 2755.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a4816a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:02:34.000Z'}}, {'blockNum': '0x58e56e', 'uniqueId': '0xe8ad5618a0f48d993cdf0ca276103cd88c98ce8bbff5b18b86a839fa06049c88:log:14', 'hash': '0xe8ad5618a0f48d993cdf0ca276103cd88c98ce8bbff5b18b86a839fa06049c88', 'from': '0x5d3ed56d2038c51317d8a86ac18d85440471cfbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2755.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a4816a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:15:09.000Z'}}, {'blockNum': '0x58e582', 'uniqueId': '0x620dd4f155403c4920c8b1e1795f8cda476bd169f3ce5a14aec2a69ee5f2f802:log:3', 'hash': '0x620dd4f155403c4920c8b1e1795f8cda476bd169f3ce5a14aec2a69ee5f2f802', 'from': '0xdc9ad45b5e89a8fe0c35ca7310cd77dbe72a9671', 'to': '0x12cf944236b330cb438814b8961d0a1c352698d2', 'value': 18829.518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0b39280c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:18:35.000Z'}}, {'blockNum': '0x58e5ce', 'uniqueId': '0x4d30b4d6640c0ede2a2bbd4116a12c2046caf34863fe377e2cc411c25ff7b7df:log:5', 'hash': '0x4d30b4d6640c0ede2a2bbd4116a12c2046caf34863fe377e2cc411c25ff7b7df', 'from': '0x9486d9b0d673d6a32d5cb33a257ec3e0d05eb661', 'to': '0xfab28ec415fb7ea57134f2e739a5aa0dc3ffdb4a', 'value': 661.328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x64e920', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:33:20.000Z'}}, {'blockNum': '0x58e5e0', 'uniqueId': '0xa2db121ae5ed68fa62557ff14d727aa28e7d807e8d97437032de76f130835965:log:117', 'hash': '0xa2db121ae5ed68fa62557ff14d727aa28e7d807e8d97437032de76f130835965', 'from': '0x130a017eeeaa1572d27a563aef4d369abeafb25e', 'to': '0x7970067cf83426450dd1c7e2b414c41dd07895fc', 'value': 4838.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02e24be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:39:16.000Z'}}, {'blockNum': '0x58e5ed', 'uniqueId': '0xc6fd0a126e45be996c19a514f64b341a82037d90e79d6de2809bd9c73492c645:log:2', 'hash': '0xc6fd0a126e45be996c19a514f64b341a82037d90e79d6de2809bd9c73492c645', 'from': '0x2cb4bce44b957c80bcf568c947012fbd325910d0', 'to': '0x5d44284e65c34de937f494d816d34f2b0c4d372d', 'value': 1294.6173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc58afd', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:43:07.000Z'}}, {'blockNum': '0x58e5f6', 'uniqueId': '0xd12a1e113d22cf24dcbb52b8a67505e0f0615700217ab84951a395e00dc89738:log:0', 'hash': '0xd12a1e113d22cf24dcbb52b8a67505e0f0615700217ab84951a395e00dc89738', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x13c05020a096ea0e32c685601f162d9c6f7399d1', 'value': 228.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x22dfe4', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:45:33.000Z'}}, {'blockNum': '0x58e611', 'uniqueId': '0xe2fb9250a4ce8e7af6a226153c1b410567c57e60dc4f60b8215cc87b87aa8b05:log:6', 'hash': '0xe2fb9250a4ce8e7af6a226153c1b410567c57e60dc4f60b8215cc87b87aa8b05', 'from': '0x6d5e23afe7c80c2a37fc1f281305687c39a24c6c', 'to': '0x8efa329f926971d035c2e4c8f67dbaed368eb683', 'value': 1089.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa63e98', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:52:47.000Z'}}, {'blockNum': '0x58e631', 'uniqueId': '0xba412eb6ee41bbb1e8a602b39421d65bd0d95a75b9f692b01abfa4e00b6e77a6:log:25', 'hash': '0xba412eb6ee41bbb1e8a602b39421d65bd0d95a75b9f692b01abfa4e00b6e77a6', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x0cfd800dda45deab1e7a03f5b8b4c9e0c1b659bb', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01c9c380', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T02:59:30.000Z'}}, {'blockNum': '0x58e642', 'uniqueId': '0x3f859a430ee2942075c68d1fa5a2d84c4bb07cc543b5030ce4594a1c8cf6dde2:log:0', 'hash': '0x3f859a430ee2942075c68d1fa5a2d84c4bb07cc543b5030ce4594a1c8cf6dde2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x378c078dfb01845556b7fd65a685b93b4e41e820', 'value': 1980.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012e3f00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:03:06.000Z'}}, {'blockNum': '0x58e64d', 'uniqueId': '0x7ae9de1916c0f62595bc6401b1caafd4017c6ccd03d3c1c2c85cd9bbc41f6abf:log:3', 'hash': '0x7ae9de1916c0f62595bc6401b1caafd4017c6ccd03d3c1c2c85cd9bbc41f6abf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x699a2d50bfbc950ac016d424a9245bb80ad9d82b', 'value': 2857.922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01b41594', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:05:29.000Z'}}, {'blockNum': '0x58e650', 'uniqueId': '0x3356fb95c5c2098f7ef2ec4fa93ff5af50091f3518deb0f24bf8360c584049fb:log:5', 'hash': '0x3356fb95c5c2098f7ef2ec4fa93ff5af50091f3518deb0f24bf8360c584049fb', 'from': '0x17b3522b9f2e27b54450ddf215b2ad73caff36d0', 'to': '0x92fecfceba400c5737a6bdbf4f220058cb104b03', 'value': 667036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018d959dc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:06:59.000Z'}}, {'blockNum': '0x58e650', 'uniqueId': '0xd41fbd36c3298881dd8272904bbb5e99907f2024998231526d8150bb4b591c39:log:38', 'hash': '0xd41fbd36c3298881dd8272904bbb5e99907f2024998231526d8150bb4b591c39', 'from': '0x699a2d50bfbc950ac016d424a9245bb80ad9d82b', 'to': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:06:59.000Z'}}, {'blockNum': '0x58e653', 'uniqueId': '0xacbd4c58a57b1d4556bae47ddb3a19d3e32ea83ee2471b083ae3f215331f77dd:log:10', 'hash': '0xacbd4c58a57b1d4556bae47ddb3a19d3e32ea83ee2471b083ae3f215331f77dd', 'from': '0x699a2d50bfbc950ac016d424a9245bb80ad9d82b', 'to': '0x1d8515e9787406c5bcd521249f8a5df78801f294', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:07:42.000Z'}}, {'blockNum': '0x58e657', 'uniqueId': '0xf5a04da735cb00e31e562fdfcb44fc414572ef0fc8429bdec1f983401bed72f5:log:37', 'hash': '0xf5a04da735cb00e31e562fdfcb44fc414572ef0fc8429bdec1f983401bed72f5', 'from': '0x699a2d50bfbc950ac016d424a9245bb80ad9d82b', 'to': '0xfe5d0e7ead95e98fc8d8aff6654eea88c493b787', 'value': 1857.922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x011b7f14', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:08:40.000Z'}}, {'blockNum': '0x58e673', 'uniqueId': '0xe2fac53c8be9aa789052f3edcef05f8c0ede4b0733b17561bb3d5c5666deb38f:log:12', 'hash': '0xe2fac53c8be9aa789052f3edcef05f8c0ede4b0733b17561bb3d5c5666deb38f', 'from': '0x92fecfceba400c5737a6bdbf4f220058cb104b03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 667036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018d959dc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:15:03.000Z'}}, {'blockNum': '0x58e6b9', 'uniqueId': '0xbf09117ce590aaaf9d3a05c1309289f7a39322807d3f1273cd4c33f066faad41:log:6', 'hash': '0xbf09117ce590aaaf9d3a05c1309289f7a39322807d3f1273cd4c33f066faad41', 'from': '0xff5cfae443032255e510360773673ecbf8133d2b', 'to': '0xf86a8f87fa4ff11ffb94b05ca91d65d51722bb65', 'value': 2734.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a14838', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:32:45.000Z'}}, {'blockNum': '0x58e6c3', 'uniqueId': '0x42ca47fdf0f912d924be9f3253e3d39ea69ee01f8b553b0a20e4dfbd6673ebf8:log:14', 'hash': '0x42ca47fdf0f912d924be9f3253e3d39ea69ee01f8b553b0a20e4dfbd6673ebf8', 'from': '0xf86a8f87fa4ff11ffb94b05ca91d65d51722bb65', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2734.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a14838', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:35:10.000Z'}}, {'blockNum': '0x58e6cd', 'uniqueId': '0x59c368b0fb364a808c87cacc0653a192142f61e4ccb92aa1872f8e5ed5b83bec:log:8', 'hash': '0x59c368b0fb364a808c87cacc0653a192142f61e4ccb92aa1872f8e5ed5b83bec', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7b8a337d9e9ec1577641f1b7444fa79f042e8c7a', 'value': 1482.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe241e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:38:16.000Z'}}, {'blockNum': '0x58e6d0', 'uniqueId': '0x4bc62411ddcb9828b63ed743a1df39b92e7ebb9685a44c4dad29fdf0ed04bf52:log:53', 'hash': '0x4bc62411ddcb9828b63ed743a1df39b92e7ebb9685a44c4dad29fdf0ed04bf52', 'from': '0x81f77df9a898ae1b4e0fb1729ec4ac5a4cf959a2', 'to': '0xbd73d4881bf6ad7b423a50dfb8ecec40ce1823d7', 'value': 584.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x592068', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:39:10.000Z'}}, {'blockNum': '0x58e6e1', 'uniqueId': '0xbc4f3015e1b5ebf71f0c6d505b716664c3d04bd62308ebe755d53198e87f3d94:log:85', 'hash': '0xbc4f3015e1b5ebf71f0c6d505b716664c3d04bd62308ebe755d53198e87f3d94', 'from': '0xf710217fde88378f77aa4e56004648272ab761dd', 'to': '0xabddbb375aeb2c141a866d45bfceb480e272c757', 'value': 1486.4776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe2d188', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:44:28.000Z'}}, {'blockNum': '0x58e702', 'uniqueId': '0x31a3fe865c7d7b7731be9db579f0cd24b6aca3652a9b06455f361354a32c3143:log:8', 'hash': '0x31a3fe865c7d7b7731be9db579f0cd24b6aca3652a9b06455f361354a32c3143', 'from': '0xabddbb375aeb2c141a866d45bfceb480e272c757', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 1486.4776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe2d188', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:50:52.000Z'}}, {'blockNum': '0x58e705', 'uniqueId': '0x90e9b0f2107ba54ab71d57f5142032ee5d6cb8d5f8b7656277b45791c01fe26c:log:137', 'hash': '0x90e9b0f2107ba54ab71d57f5142032ee5d6cb8d5f8b7656277b45791c01fe26c', 'from': '0x1795a0362e538aff15d13fafe52f44f89d1839fb', 'to': '0xc266638bc5c202aaa38e7dcea2cf2f3ef8f936fc', 'value': 15770.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x096653b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:51:29.000Z'}}, {'blockNum': '0x58e715', 'uniqueId': '0xec498888a9a2235ec234c4c0e73fcb15debca9d7a4e2fe4b5fad1b39fad1c765:log:26', 'hash': '0xec498888a9a2235ec234c4c0e73fcb15debca9d7a4e2fe4b5fad1b39fad1c765', 'from': '0xc266638bc5c202aaa38e7dcea2cf2f3ef8f936fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15770.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x096653b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T03:55:20.000Z'}}, {'blockNum': '0x58e74c', 'uniqueId': '0xb9bc41d6a1bc34e5a3f4704d123cfcfd86e4f47b5ea4e8ae91c1f081e64c0828:log:48', 'hash': '0xb9bc41d6a1bc34e5a3f4704d123cfcfd86e4f47b5ea4e8ae91c1f081e64c0828', 'from': '0x0e92fc391a6a0c3e38a0555c40ad3af796cde44c', 'to': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'value': 0.0075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:09:27.000Z'}}, {'blockNum': '0x58e787', 'uniqueId': '0x8b4c2f28bf93c082c6652ef86a0df845255051450d225946d7991b6298e1b751:log:75', 'hash': '0x8b4c2f28bf93c082c6652ef86a0df845255051450d225946d7991b6298e1b751', 'from': '0x0e92fc391a6a0c3e38a0555c40ad3af796cde44c', 'to': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'value': 5082.8675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03079583', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:23:27.000Z'}}, {'blockNum': '0x58e7b8', 'uniqueId': '0x98ea99e5fb906484526a1b5a19b7d829bf3bfcd8fc654ae5ade9123cebe644ab:log:28', 'hash': '0x98ea99e5fb906484526a1b5a19b7d829bf3bfcd8fc654ae5ade9123cebe644ab', 'from': '0x272d767ac1c35361dd67b126fcc4631d630a217b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4147.3189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0278d4a5', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:35:06.000Z'}}, {'blockNum': '0x58e7b8', 'uniqueId': '0x8b46ec4d257d13d34af4e43faafc50be92a131f985b4a45d30a313b0f798b58e:log:29', 'hash': '0x8b46ec4d257d13d34af4e43faafc50be92a131f985b4a45d30a313b0f798b58e', 'from': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5082.875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x030795ce', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:35:06.000Z'}}, {'blockNum': '0x58e7b8', 'uniqueId': '0xbddf8c31ee851c69d794989fdb13a13549c64fd4fe62fff346bb2ec92480a8a4:log:31', 'hash': '0xbddf8c31ee851c69d794989fdb13a13549c64fd4fe62fff346bb2ec92480a8a4', 'from': '0xc4ff84f6a973475ae8b8c02c62c4c3e2cb227c98', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2818.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01ae1978', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:35:06.000Z'}}, {'blockNum': '0x58e7be', 'uniqueId': '0x15652b324e9010a9c557cfd7601507cd9d29c42aea4b5054ebc477caabfcf363:log:10', 'hash': '0x15652b324e9010a9c557cfd7601507cd9d29c42aea4b5054ebc477caabfcf363', 'from': '0x11447d4ef9ef7163afa71d0f15c054f1f217a186', 'to': '0x17b3522b9f2e27b54450ddf215b2ad73caff36d0', 'value': 299631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb2980ff0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:37:19.000Z'}}, {'blockNum': '0x58e800', 'uniqueId': '0xe60d6f6b0650b54c65367fc2403482952eeb3f638f6e29b1002f4e6caecc6c5a:log:11', 'hash': '0xe60d6f6b0650b54c65367fc2403482952eeb3f638f6e29b1002f4e6caecc6c5a', 'from': '0xb8cdf550387ad124532386960c40c3bd0ba5871b', 'to': '0x7e1ccfd322501116336f7195c2c3d6505be32fbc', 'value': 298.394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2d8804', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:51:52.000Z'}}, {'blockNum': '0x58e817', 'uniqueId': '0xc757c16e6cbd16cd526ba2111cbf783159b041671bd1c6a57115311814279b3c:log:26', 'hash': '0xc757c16e6cbd16cd526ba2111cbf783159b041671bd1c6a57115311814279b3c', 'from': '0x111ac1e3025a817752ba02829fede782cb0e90cf', 'to': '0x5d8b950dbd59380a380befd56aa691e42b99adfe', 'value': 44683.125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1aa21a92', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T04:57:58.000Z'}}, {'blockNum': '0x58e857', 'uniqueId': '0x95d1e280ad58ffe41906562e61f2dc0667d75008c2423892175b3d435b16542d:log:11', 'hash': '0x95d1e280ad58ffe41906562e61f2dc0667d75008c2423892175b3d435b16542d', 'from': '0x5d8b950dbd59380a380befd56aa691e42b99adfe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44683.125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1aa21a92', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:15:03.000Z'}}, {'blockNum': '0x58e85f', 'uniqueId': '0xd065840bd79644d4845337440166070a3dcd1fab640c2dbe922c88426d44c899:log:5', 'hash': '0xd065840bd79644d4845337440166070a3dcd1fab640c2dbe922c88426d44c899', 'from': '0xfbdc01b30b5918d336242ea464f36fe28e270bf4', 'to': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:17:34.000Z'}}, {'blockNum': '0x58e85f', 'uniqueId': '0xd065840bd79644d4845337440166070a3dcd1fab640c2dbe922c88426d44c899:log:6', 'hash': '0xd065840bd79644d4845337440166070a3dcd1fab640c2dbe922c88426d44c899', 'from': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'to': '0x2aab2b157a03915c8a73adae735d0cf51c872f31', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:17:34.000Z'}}, {'blockNum': '0x58e885', 'uniqueId': '0xbd2c3dbea29347ab41d029ff67db2c7b31edde7477ef7c5389038c7521f42648:log:32', 'hash': '0xbd2c3dbea29347ab41d029ff67db2c7b31edde7477ef7c5389038c7521f42648', 'from': '0x3fd6ead2f166fdf27fc31263bb07c20833d7136f', 'to': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'value': 12565.957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x077d69b2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:28:18.000Z'}}, {'blockNum': '0x58e8a3', 'uniqueId': '0xa491b1a29f9e1a80675a13c6d0674ea9104a2b98bb4ba5705678c678417b0abd:log:3', 'hash': '0xa491b1a29f9e1a80675a13c6d0674ea9104a2b98bb4ba5705678c678417b0abd', 'from': '0x5d68c58a08e01d577a8ccb3abd4dacadb6713552', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12565.957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x077d69b2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T05:35:06.000Z'}}, {'blockNum': '0x58e94c', 'uniqueId': '0x916b1220c614926d142bde4beea019c638d196a377404b29b8e9961288b2d0ae:log:19', 'hash': '0x916b1220c614926d142bde4beea019c638d196a377404b29b8e9961288b2d0ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1802498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04325f5e20', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:15:38.000Z'}}, {'blockNum': '0x58e979', 'uniqueId': '0x3096f7fa4cfa511855a7f6811a8c977e2b2eec9d85c38b6eac9f2379c22acac2:log:7', 'hash': '0x3096f7fa4cfa511855a7f6811a8c977e2b2eec9d85c38b6eac9f2379c22acac2', 'from': '0x953cfed17808f64d7233333145839e2f63eede03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4217.612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02838e78', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:25:09.000Z'}}, {'blockNum': '0x58e979', 'uniqueId': '0x171df9f300766ed4e984a63af8c294ab6e5ce07e6b6e523711903b3bbddc79b0:log:17', 'hash': '0x171df9f300766ed4e984a63af8c294ab6e5ce07e6b6e523711903b3bbddc79b0', 'from': '0xa5fc61458397af2215e521126fd10d2bbe60261c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2759.2291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01a50663', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:25:09.000Z'}}, {'blockNum': '0x58e98d', 'uniqueId': '0xbac1ffcf1bc3229bf37d6521fd1ae3494dd259a5098abaea31564370d7d4b091:log:124', 'hash': '0xbac1ffcf1bc3229bf37d6521fd1ae3494dd259a5098abaea31564370d7d4b091', 'from': '0x0f4b501d6518e687484bb35e2e67e64cd761fbe1', 'to': '0xa3866bfec8b4a464bd602a9ec4c9fd762fc49fb3', 'value': 680.4198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x67d2e6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:30:16.000Z'}}, {'blockNum': '0x58e98d', 'uniqueId': '0xf838fa24c35da499b6fb48cbdca9074eca19bd9690a0154bd641d4cebe5ca305:log:125', 'hash': '0xf838fa24c35da499b6fb48cbdca9074eca19bd9690a0154bd641d4cebe5ca305', 'from': '0xca086ef9a1f70bf1988ae8c53c235b284d588133', 'to': '0xba6a2128160b0a46b986cdcb304c9b19309a1239', 'value': 522.1953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4fae41', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:30:16.000Z'}}, {'blockNum': '0x58e9a7', 'uniqueId': '0x8078c5e31c4c95195c9871770644850de035992cc30e8abd268a4b344f024474:log:8', 'hash': '0x8078c5e31c4c95195c9871770644850de035992cc30e8abd268a4b344f024474', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x35ffb91d808e4005cd4e9d6b0328eea94949e120', 'value': 15697.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x095b4a88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:37:49.000Z'}}, {'blockNum': '0x58e9ae', 'uniqueId': '0xa2744148700de01e84b8a76d8e5872c7b7bafbbcf7f744baf5e33c15750a57cb:log:24', 'hash': '0xa2744148700de01e84b8a76d8e5872c7b7bafbbcf7f744baf5e33c15750a57cb', 'from': '0xe646e1c79c52bb1edbfd37762ca65bbc830846d8', 'to': '0x55f415aa29dd130f5bf5bc5ff71e0f2c5c124f12', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:40:01.000Z'}}, {'blockNum': '0x58e9bf', 'uniqueId': '0x45cb78e9a049229fa056fd147236e2ba7800b3456936107dfb2f4b6567ea9e36:log:65', 'hash': '0x45cb78e9a049229fa056fd147236e2ba7800b3456936107dfb2f4b6567ea9e36', 'from': '0x35ffb91d808e4005cd4e9d6b0328eea94949e120', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 15697.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x095b4a88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:44:38.000Z'}}, {'blockNum': '0x58e9c7', 'uniqueId': '0x531196eac02c909e92b3b54b854bf7630ccac0bd9b3822958534a4a6fb2a617c:log:23', 'hash': '0x531196eac02c909e92b3b54b854bf7630ccac0bd9b3822958534a4a6fb2a617c', 'from': '0xaed223ae548ab6485f38a5634f55d34f8fdf9461', 'to': '0x5d8a85c5a3769c74df8380013173fc15552a9ac7', 'value': 2527.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0181b450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T06:46:39.000Z'}}, {'blockNum': '0x58ea06', 'uniqueId': '0x224dffacf7f9438f36f628cd7b72b2220e9bef4866226506276bca932f2aa06b:log:20', 'hash': '0x224dffacf7f9438f36f628cd7b72b2220e9bef4866226506276bca932f2aa06b', 'from': '0x5d8a85c5a3769c74df8380013173fc15552a9ac7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2527.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0181b450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T07:05:03.000Z'}}, {'blockNum': '0x58ea31', 'uniqueId': '0xcb601abcd542c1c8159a11731d72dcd10e2b1381f3587e23e0c6e1a1606560a9:log:6', 'hash': '0xcb601abcd542c1c8159a11731d72dcd10e2b1381f3587e23e0c6e1a1606560a9', 'from': '0xa69591974f94c65ef5f91b95c43e92d74f4b5429', 'to': '0x5c976d840e399e642b68f48d3c062f9f77b53fe8', 'value': 330.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3266f8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T07:15:26.000Z'}}, {'blockNum': '0x58ea4f', 'uniqueId': '0x51beed1d3a0cb3a35406301b4da0479a1e0cd58ea289daf2aaaca51e377a1f6f:log:59', 'hash': '0x51beed1d3a0cb3a35406301b4da0479a1e0cd58ea289daf2aaaca51e377a1f6f', 'from': '0x35dcfafb4e2b0901b8788f3b0751eca218de4e02', 'to': '0x5da82f331c7d6afe6fbc0c67deb254622460acc1', 'value': 1473.913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe0e6ba', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T07:23:29.000Z'}}, {'blockNum': '0x58ead8', 'uniqueId': '0x78b9a993d2f8c52965eca0c438f21518f95a1669a4e487eee971a3378bb6cbc9:log:49', 'hash': '0x78b9a993d2f8c52965eca0c438f21518f95a1669a4e487eee971a3378bb6cbc9', 'from': '0xc8db230d340af670419c7dde08ff953a48f9fdc4', 'to': '0x4ce67eb2d03e1e0d6c4c1ed2c46eaa300d921a33', 'value': 699.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x6ab3a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T07:54:27.000Z'}}, {'blockNum': '0x58ebef', 'uniqueId': '0x96e241c9f5472914f9df1f79bce6a483e9cc1ad4cf0f7959763fc3fabb3af22f:log:85', 'hash': '0x96e241c9f5472914f9df1f79bce6a483e9cc1ad4cf0f7959763fc3fabb3af22f', 'from': '0x5e09a1a869d7de223b982756446bf4fecaa06961', 'to': '0xca086ef9a1f70bf1988ae8c53c235b284d588133', 'value': 181.626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1bb6c4', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:06:59.000Z'}}, {'blockNum': '0x58ebf4', 'uniqueId': '0xfacf1cdfbad70344d26fc1072a3b69e5bffd21b41caf92d458de6b98ba984c6b:log:3', 'hash': '0xfacf1cdfbad70344d26fc1072a3b69e5bffd21b41caf92d458de6b98ba984c6b', 'from': '0x552c830d8d044209d9c976f2a223c58e17d6fa49', 'to': '0x167da288689a679fc6595bf60d3a8529cf38d6a5', 'value': 279.498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2aa5e4', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:08:17.000Z'}}, {'blockNum': '0x58ec01', 'uniqueId': '0x8d01bac62054482974bf5feb11131b450550f24b5cc5d35679b1d6b5f51a7612:log:6', 'hash': '0x8d01bac62054482974bf5feb11131b450550f24b5cc5d35679b1d6b5f51a7612', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x047c32da63ee8d7a04e238e74991f9cb0bbcced3', 'value': 10976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ace00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:10:59.000Z'}}, {'blockNum': '0x58ec02', 'uniqueId': '0x62b3907fff6eaa345ffac1573f2efd1bed434708b5bbc92fcddc92a01241b6a7:log:26', 'hash': '0x62b3907fff6eaa345ffac1573f2efd1bed434708b5bbc92fcddc92a01241b6a7', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 576.7564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x58018c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:11:15.000Z'}}, {'blockNum': '0x58ec04', 'uniqueId': '0xd950c0275a119deac8bc7a4b29b40cacdbbf2f30f72603ba5532af1045c1d452:log:8', 'hash': '0xd950c0275a119deac8bc7a4b29b40cacdbbf2f30f72603ba5532af1045c1d452', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 46.0651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07076b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:11:33.000Z'}}, {'blockNum': '0x58ec09', 'uniqueId': '0xc6aa59c2ca7f9d96449ad33be87b22633b527f596c91e81a0a464d516299bcd9:log:6', 'hash': '0xc6aa59c2ca7f9d96449ad33be87b22633b527f596c91e81a0a464d516299bcd9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 3681.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0231cc50', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:12:11.000Z'}}, {'blockNum': '0x58ec0e', 'uniqueId': '0x28d92feaf86c8b179fddf4f4f9d3a8369215f866cb9615577f55b617bc1e4d32:log:8', 'hash': '0x28d92feaf86c8b179fddf4f4f9d3a8369215f866cb9615577f55b617bc1e4d32', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 1262.1326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0960e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:13:40.000Z'}}, {'blockNum': '0x58ec11', 'uniqueId': '0x1324c72133707d7c51b76e1152594cc4991ded37cd8f9cd03cf80fbd1870738b:log:21', 'hash': '0x1324c72133707d7c51b76e1152594cc4991ded37cd8f9cd03cf80fbd1870738b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 10815.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x06725294', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:14:33.000Z'}}, {'blockNum': '0x58ec11', 'uniqueId': '0xbd9781463e3305bffd121ba7c341fdf8c4bdc5394987397eac88a79c6d8a5901:log:98', 'hash': '0xbd9781463e3305bffd121ba7c341fdf8c4bdc5394987397eac88a79c6d8a5901', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3a97d83988efc37375716c2794d537c11e35e9e0', 'value': 3992.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x026140c0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:14:33.000Z'}}, {'blockNum': '0x58ec14', 'uniqueId': '0x5381892c5898faf2b13c333f5c811f3943d668bbfc32d7a06ed30c936e67730a:log:2', 'hash': '0x5381892c5898faf2b13c333f5c811f3943d668bbfc32d7a06ed30c936e67730a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 1876.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x011e6080', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:16:33.000Z'}}, {'blockNum': '0x58ec15', 'uniqueId': '0x2d1e9d983273d6491909afebe5c896005508ad2f3ca1ad2ec7d289de79b33a87:log:11', 'hash': '0x2d1e9d983273d6491909afebe5c896005508ad2f3ca1ad2ec7d289de79b33a87', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbc0b3e5ca6986ea3309d81a6e37672d149ff5b77', 'value': 797.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79bc10', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:16:46.000Z'}}, {'blockNum': '0x58ec1c', 'uniqueId': '0xc724b31410b1f5a2110d13d3cabc99f78eff8ae2028e1018b6242eaa95184e3b:log:16', 'hash': '0xc724b31410b1f5a2110d13d3cabc99f78eff8ae2028e1018b6242eaa95184e3b', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x209ff5f7cf3e2d36e7b3ba49ad7325ae8446adcb', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:18:11.000Z'}}, {'blockNum': '0x58ec1f', 'uniqueId': '0xd0bded4fc2dec229a95b345628cd35f9ffa185ca0e6298420267fadf6d9c5bbb:log:23', 'hash': '0xd0bded4fc2dec229a95b345628cd35f9ffa185ca0e6298420267fadf6d9c5bbb', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x24c6a0c2838065f516e508dcfc6510c1c694caf8', 'value': 1409.0616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xd70178', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:18:49.000Z'}}, {'blockNum': '0x58ec23', 'uniqueId': '0x55896179574bf3790c68ea4d4954a13fa3022f88aa0fbf825fc25737803d8ffb:log:5', 'hash': '0x55896179574bf3790c68ea4d4954a13fa3022f88aa0fbf825fc25737803d8ffb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc456f8cca211595be64efd1b19895c1e692143ff', 'value': 9821.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05dab010', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:20:13.000Z'}}, {'blockNum': '0x58ec6d', 'uniqueId': '0x0207b28c20c766bdd45079878b308ff97a97395e53dc4e019d0be1d326f2c618:log:315', 'hash': '0x0207b28c20c766bdd45079878b308ff97a97395e53dc4e019d0be1d326f2c618', 'from': '0xd061040c96b17c00587b79a1b4c45ceae5dc5768', 'to': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'value': 4438.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a546d0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:39:09.000Z'}}, {'blockNum': '0x58ec86', 'uniqueId': '0xe4b1c51c31169ea3a350989e77df84bd7fcfc112e81d22fa7c8febd5a3342515:log:10', 'hash': '0xe4b1c51c31169ea3a350989e77df84bd7fcfc112e81d22fa7c8febd5a3342515', 'from': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4438.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a546d0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:45:26.000Z'}}, {'blockNum': '0x58ec87', 'uniqueId': '0x7dccc897a42a2503d87c6293e019e62c96417c939089f0d8e2fee265352cc7b3:log:14', 'hash': '0x7dccc897a42a2503d87c6293e019e62c96417c939089f0d8e2fee265352cc7b3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 13169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07d96e10', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:45:42.000Z'}}, {'blockNum': '0x58eca9', 'uniqueId': '0x3034108139d44fa8b6bcce11e4ce81d4686a6c094ad6fe97e7d0d91dbd2556d4:log:30', 'hash': '0x3034108139d44fa8b6bcce11e4ce81d4686a6c094ad6fe97e7d0d91dbd2556d4', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 12289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07532710', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:53:07.000Z'}}, {'blockNum': '0x58ecb2', 'uniqueId': '0x1c11f89463d28ff8aaa12952854807fe01a683a3e034672d4d6db66b221c4a19:log:11', 'hash': '0x1c11f89463d28ff8aaa12952854807fe01a683a3e034672d4d6db66b221c4a19', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07532710', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:55:10.000Z'}}, {'blockNum': '0x58ecbd', 'uniqueId': '0xf4c2b320026ca781e7d14648de5f9ee9286217cc72c8f3dd9d663b2d4e124cf5:log:9', 'hash': '0xf4c2b320026ca781e7d14648de5f9ee9286217cc72c8f3dd9d663b2d4e124cf5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x35ffb91d808e4005cd4e9d6b0328eea94949e120', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05f4a880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T09:58:07.000Z'}}, {'blockNum': '0x58ecd3', 'uniqueId': '0x72179eedc90be7dce9152b44f443a1569b9c740ff0b2cd18f30cf222fe69d8e0:log:65', 'hash': '0x72179eedc90be7dce9152b44f443a1569b9c740ff0b2cd18f30cf222fe69d8e0', 'from': '0x46570df7bea0dc88b4f9c337a54edbb88e59d082', 'to': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'value': 4851.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02e43818', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:03:11.000Z'}}, {'blockNum': '0x58ecda', 'uniqueId': '0xdce3ebee4426a4e504d90db6cd4ae6d1d216f94038a1f4d1df4ad14bb4d34bcd:log:16', 'hash': '0xdce3ebee4426a4e504d90db6cd4ae6d1d216f94038a1f4d1df4ad14bb4d34bcd', 'from': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4851.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02e43818', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:05:17.000Z'}}, {'blockNum': '0x58ecf4', 'uniqueId': '0xa33c06253cf9854252f5d1b830cd6bc23390050a3349a8e073eeab3585857600:log:26', 'hash': '0xa33c06253cf9854252f5d1b830cd6bc23390050a3349a8e073eeab3585857600', 'from': '0x35ffb91d808e4005cd4e9d6b0328eea94949e120', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05f4a880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:10:11.000Z'}}, {'blockNum': '0x58ed01', 'uniqueId': '0x611a8b1786a727ff40797491c48ea268307654c431eff6aa470b5b48e54078cc:log:16', 'hash': '0x611a8b1786a727ff40797491c48ea268307654c431eff6aa470b5b48e54078cc', 'from': '0x47440171c78e048abbc7ce35661cca8645220d16', 'to': '0xa0ceff72003177c8755f0a929777c9729b61d519', 'value': 28197.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10cea8dc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:14:41.000Z'}}, {'blockNum': '0x58ed28', 'uniqueId': '0x13fa6f222e6e33cb8674488bbf896990cbf5ef47a4d804f284e6f3b99eae27b9:log:24', 'hash': '0x13fa6f222e6e33cb8674488bbf896990cbf5ef47a4d804f284e6f3b99eae27b9', 'from': '0x238b1c28c01db3a070e4ed1ca947c5de540bc981', 'to': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'value': 2301.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015f3df8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:24:21.000Z'}}, {'blockNum': '0x58ed2a', 'uniqueId': '0x72bd0d528e44ed6313767131f026bc2e15b12d70eb8c1fb2e17684e064a7fab8:log:40', 'hash': '0x72bd0d528e44ed6313767131f026bc2e15b12d70eb8c1fb2e17684e064a7fab8', 'from': '0xa0ceff72003177c8755f0a929777c9729b61d519', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28197.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10cea8dc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:25:21.000Z'}}, {'blockNum': '0x58ed54', 'uniqueId': '0x2368ff00f783e2f4d4c33582eb018cc52bb91eb9248d9bea1d0551695b3bf69e:log:7', 'hash': '0x2368ff00f783e2f4d4c33582eb018cc52bb91eb9248d9bea1d0551695b3bf69e', 'from': '0xd29eff0e0e4a786aee19924ce9160b8a1b909480', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2301.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015f3df8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:35:02.000Z'}}, {'blockNum': '0x58ed92', 'uniqueId': '0xf165f16e17838cfbac06a88f6f20697c7a8223d19f6f48789eb16a79fd471e3d:log:28', 'hash': '0xf165f16e17838cfbac06a88f6f20697c7a8223d19f6f48789eb16a79fd471e3d', 'from': '0xa2ee7ac2fe47b5eecc9ce1350ff33160cc52a797', 'to': '0xa2ec7b6337b82c8e0643cbbb37bd404ea3a1c32f', 'value': 405.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3deac8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:52:23.000Z'}}, {'blockNum': '0x58ed94', 'uniqueId': '0xec3adc1aeb4d904dcda5a129143c2b792200f48acfd70825a5a5fb8b2f8a05f0:log:5', 'hash': '0xec3adc1aeb4d904dcda5a129143c2b792200f48acfd70825a5a5fb8b2f8a05f0', 'from': '0x77042176acaf8d9d3ce21e93e78e5c468df79752', 'to': '0x60fe45993c488b7272f355fd83d10bc26193ad40', 'value': 20940.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0c7b3c78', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:52:44.000Z'}}, {'blockNum': '0x58ed99', 'uniqueId': '0x0cd93321f8fb67a292732f1a13506fd3e00d4f8e4dda3be839f1d1bc6d4e2a67:log:48', 'hash': '0x0cd93321f8fb67a292732f1a13506fd3e00d4f8e4dda3be839f1d1bc6d4e2a67', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0xe16789540c4db11a4cab31cc4096d614154cc9d6', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:53:51.000Z'}}, {'blockNum': '0x58ed9f', 'uniqueId': '0x6c18723f7556e1f509174664d40b74f2e1815eecb9a0a2c933fb46e2662c3f2a:log:11', 'hash': '0x6c18723f7556e1f509174664d40b74f2e1815eecb9a0a2c933fb46e2662c3f2a', 'from': '0x60fe45993c488b7272f355fd83d10bc26193ad40', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20940.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0c7b3c78', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T10:55:29.000Z'}}, {'blockNum': '0x58ee1f', 'uniqueId': '0xc66a0b3a317141d5944a5b89072f2de25556c837673755827fdef000059ca766:log:63', 'hash': '0xc66a0b3a317141d5944a5b89072f2de25556c837673755827fdef000059ca766', 'from': '0x60e0857404755a86167ff907977b1dd5b3411fc9', 'to': '0x5e515972e418c8625d6cc433db6165806d446878', 'value': 12300.367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0754e316', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:30:20.000Z'}}, {'blockNum': '0x58ee6c', 'uniqueId': '0xf1e2ccf9dbe2a9ba651185818dc7ab823dbe65d0e1159fe2b6987a7a14567e15:log:25', 'hash': '0xf1e2ccf9dbe2a9ba651185818dc7ab823dbe65d0e1159fe2b6987a7a14567e15', 'from': '0x58f5432a5d626cb08561db032e2aa77b36b632ce', 'to': '0x34ffcbe54fcb898816262032e6919f3be8cad552', 'value': 1800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112a880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:45:38.000Z'}}, {'blockNum': '0x58ee6c', 'uniqueId': '0x6301bec94b6769995c8bed874211d2cfc3146507275161d99f059cfda6221a94:log:43', 'hash': '0x6301bec94b6769995c8bed874211d2cfc3146507275161d99f059cfda6221a94', 'from': '0x5e515972e418c8625d6cc433db6165806d446878', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12300.367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0754e316', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:45:38.000Z'}}, {'blockNum': '0x58ee94', 'uniqueId': '0xb2dbd7dc346a3322c83f5ea4115a67d3a2b380f95ab17e2957f1c3e6a3672a5f:log:20', 'hash': '0xb2dbd7dc346a3322c83f5ea4115a67d3a2b380f95ab17e2957f1c3e6a3672a5f', 'from': '0x34ffcbe54fcb898816262032e6919f3be8cad552', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112a880', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:55:16.000Z'}}, {'blockNum': '0x58ee95', 'uniqueId': '0x9e87654138298492e3e9118d788a54e2cf94006670c30d2b935af093f680e36a:log:19', 'hash': '0x9e87654138298492e3e9118d788a54e2cf94006670c30d2b935af093f680e36a', 'from': '0x58f5432a5d626cb08561db032e2aa77b36b632ce', 'to': '0xb14ac50a02d7d9cfec7131884ba4247fa9d47556', 'value': 139.0518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1537b6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T11:55:34.000Z'}}, {'blockNum': '0x58eef1', 'uniqueId': '0x1a26a4b0e110c24e197145001c27b36223310bf398757699630c4a9a444b3280:log:17', 'hash': '0x1a26a4b0e110c24e197145001c27b36223310bf398757699630c4a9a444b3280', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:15:18.000Z'}}, {'blockNum': '0x58ef10', 'uniqueId': '0x1fafe38c9e7098067580ecbcdcd55f93802ba9f77bad637ed029b349b110c050:log:14', 'hash': '0x1fafe38c9e7098067580ecbcdcd55f93802ba9f77bad637ed029b349b110c050', 'from': '0x1d05d19b79507f73076eb264469810a308e8b07f', 'to': '0x1710e4fbb6c2ff02de77202cea8a0ddb132cca7e', 'value': 659.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x649b14', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:24:19.000Z'}}, {'blockNum': '0x58ef14', 'uniqueId': '0x401f1af8eeac607afd2fbe41d453d57ae7d1774da4db282419eefd4b033582e6:log:11', 'hash': '0x401f1af8eeac607afd2fbe41d453d57ae7d1774da4db282419eefd4b033582e6', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:25:21.000Z'}}, {'blockNum': '0x58ef32', 'uniqueId': '0x85020317907e05162485d5f170d8f93ee8f020cd1bfa018d81f073aac0f9a739:log:6', 'hash': '0x85020317907e05162485d5f170d8f93ee8f020cd1bfa018d81f073aac0f9a739', 'from': '0xa0ae3e6be5c42ededb6d0909f23402a67defcb6a', 'to': '0x5e72b175a57b74af6c740602b743cfacd1e3603b', 'value': 7910.441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04b7099a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:33:02.000Z'}}, {'blockNum': '0x58ef5f', 'uniqueId': '0xd74db9b295cef427565491211df43364bf02e50352abe83a7fa645d55793c329:log:58', 'hash': '0xd74db9b295cef427565491211df43364bf02e50352abe83a7fa645d55793c329', 'from': '0x5e72b175a57b74af6c740602b743cfacd1e3603b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7910.441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04b7099a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T12:44:51.000Z'}}, {'blockNum': '0x58f07b', 'uniqueId': '0xadac5b504406a70fe27c3766cbf7bf13355b72f34d8fcf23e0738610955feb1c:log:115', 'hash': '0xadac5b504406a70fe27c3766cbf7bf13355b72f34d8fcf23e0738610955feb1c', 'from': '0x5b68991ebb3e2ea58dffc72bcbda0f02bbf505ae', 'to': '0xc8ffd046c15a1d88c46fa8f3fb28088ea0d45ffd', 'value': 4534.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02b3f8e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:50:06.000Z'}}, {'blockNum': '0x58f080', 'uniqueId': '0xd028d388d103611f560893dbf93d04f105a2f75f58dd65483215a080de17bbd7:log:55', 'hash': '0xd028d388d103611f560893dbf93d04f105a2f75f58dd65483215a080de17bbd7', 'from': '0x6576a8a62c376b4807f226950e73d6b99cb5eab7', 'to': '0x8696493b25f9ba554fe44bc7bc403ac2b6276769', 'value': 17951.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0ab322c0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:50:58.000Z'}}, {'blockNum': '0x58f08e', 'uniqueId': '0xf24f864ec70aded51c480154e5220f9090526f1252064f207ded4c39da7ce375:log:15', 'hash': '0xf24f864ec70aded51c480154e5220f9090526f1252064f207ded4c39da7ce375', 'from': '0xb353c044589c50bcfc3e180f91c0acecbbe80f06', 'to': '0xe6f07cfbcb8ce39a977e91f304da0bdab6b12c50', 'value': 6112.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03a4bb60', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:54:23.000Z'}}, {'blockNum': '0x58f091', 'uniqueId': '0x03397650a67d54fb2e4a549e3c38372b95afe629a5396a24a437759e87301152:log:41', 'hash': '0x03397650a67d54fb2e4a549e3c38372b95afe629a5396a24a437759e87301152', 'from': '0xe6f07cfbcb8ce39a977e91f304da0bdab6b12c50', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6112.752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03a4bb60', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:55:14.000Z'}}, {'blockNum': '0x58f091', 'uniqueId': '0xfdef86dec1f93d4943557fd02562df3cbab295adb3258f5bc156d1bac7c06a13:log:42', 'hash': '0xfdef86dec1f93d4943557fd02562df3cbab295adb3258f5bc156d1bac7c06a13', 'from': '0x8696493b25f9ba554fe44bc7bc403ac2b6276769', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17951.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0ab322c0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:55:14.000Z'}}, {'blockNum': '0x58f091', 'uniqueId': '0x86097edce535959a5a1f1159d7ae38c195c5411cb9d540353532d75e5a71222a:log:43', 'hash': '0x86097edce535959a5a1f1159d7ae38c195c5411cb9d540353532d75e5a71222a', 'from': '0xc8ffd046c15a1d88c46fa8f3fb28088ea0d45ffd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4534.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02b3f8e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:55:14.000Z'}}, {'blockNum': '0x58f094', 'uniqueId': '0x7bbf6c3faa8f214b329879e59dc659bec5b4036775c2e3e11145f7dca29ba81c:log:49', 'hash': '0x7bbf6c3faa8f214b329879e59dc659bec5b4036775c2e3e11145f7dca29ba81c', 'from': '0x3d8f560bca91fad4de7f26ca79ddb3b5f5d645b1', 'to': '0x5e95670a9adeff948893b1f6d8b356c11c0530ab', 'value': 1232.0703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbbffbf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T13:56:42.000Z'}}, {'blockNum': '0x58f0b2', 'uniqueId': '0xd08738c052c807d42f1268594c513486b399b63c33acdec54242401f0c51b0c0:log:42', 'hash': '0xd08738c052c807d42f1268594c513486b399b63c33acdec54242401f0c51b0c0', 'from': '0x68c6eb2117b1aca8497a1ac2b554f02ff3b8a15c', 'to': '0x5e9b8284257b06dd24d278c0af2ca208b6e4caec', 'value': 523.2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4fd5b5', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:03:05.000Z'}}, {'blockNum': '0x58f0b6', 'uniqueId': '0x53e994c9d096a58291ead7fa6266841b6832ac9d81fb38d7c39add1bd313f694:log:0', 'hash': '0x53e994c9d096a58291ead7fa6266841b6832ac9d81fb38d7c39add1bd313f694', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 33983.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x14418430', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:03:38.000Z'}}, {'blockNum': '0x58f0d4', 'uniqueId': '0xf5ac12a59044ef602cef3d04a29d83368d0290d7dcc5759aeb76d78252c0850d:log:24', 'hash': '0xf5ac12a59044ef602cef3d04a29d83368d0290d7dcc5759aeb76d78252c0850d', 'from': '0xbb719823321cd1ba7f360653667d3e36fe6052f7', 'to': '0x4b8b9e86252c6bd49bcba15e589be263fb8b5edb', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:11:14.000Z'}}, {'blockNum': '0x58f0e3', 'uniqueId': '0xf1837fee2fb849ff3a7b22c80d29392b777e18ec8a6d19c0ed1b4e05ce1916aa:log:31', 'hash': '0xf1837fee2fb849ff3a7b22c80d29392b777e18ec8a6d19c0ed1b4e05ce1916aa', 'from': '0x4b8b9e86252c6bd49bcba15e589be263fb8b5edb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04c4b400', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:15:21.000Z'}}, {'blockNum': '0x58f0f1', 'uniqueId': '0x40648286bc298f2a9933fb82c986428d2f31efb394fb0749d71d250083d91411:log:77', 'hash': '0x40648286bc298f2a9933fb82c986428d2f31efb394fb0749d71d250083d91411', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x736576018f8afa9d5a22b43769804cd3efdb1129', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:18:00.000Z'}}, {'blockNum': '0x58f0f5', 'uniqueId': '0xc7d5464b8661f6be97e30022d21a1151de270aaf1e48381465988da255d1e4c0:log:2', 'hash': '0xc7d5464b8661f6be97e30022d21a1151de270aaf1e48381465988da255d1e4c0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 11150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x06a55ae0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:18:55.000Z'}}, {'blockNum': '0x58f0fc', 'uniqueId': '0x4d8c02ce2d6122e2ad30e1463b3801c569cb069e1f21dc27be259b4c7b692c9f:log:38', 'hash': '0x4d8c02ce2d6122e2ad30e1463b3801c569cb069e1f21dc27be259b4c7b692c9f', 'from': '0xcae999273065ef8e243d602949af96e9f9b5abd1', 'to': '0x5eb5e980b990771b58c6f61bbb4bfd1a533b050a', 'value': 4687.9994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02cb54fa', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:20:52.000Z'}}, {'blockNum': '0x58f121', 'uniqueId': '0x6bd5b7d83a44abc3dbd5ced2b224c6a843492905db089dff897d4bd555e4a3fb:log:18', 'hash': '0x6bd5b7d83a44abc3dbd5ced2b224c6a843492905db089dff897d4bd555e4a3fb', 'from': '0xa24a85128a15b134cde93776f2e5701fa8f2972e', 'to': '0x44aa2cce7ed479d19ab3fc5ffe8e5c2f1011bb54', 'value': 3867.4415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x024e1fef', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:27:23.000Z'}}, {'blockNum': '0x58f12d', 'uniqueId': '0xbd510c12a07399b9ba843a38b5fa1fc822bca0c8ed457ba574c02ca472775521:log:0', 'hash': '0xbd510c12a07399b9ba843a38b5fa1fc822bca0c8ed457ba574c02ca472775521', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x35e3b32061b28b98e8f4e90cf9da959f55fcb341', 'value': 17.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02b750', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:32:14.000Z'}}, {'blockNum': '0x58f12d', 'uniqueId': '0x1e40a3e0c44326200b4e8fe7237f77e43614cd4b0cab6a967d952183469600dc:log:12', 'hash': '0x1e40a3e0c44326200b4e8fe7237f77e43614cd4b0cab6a967d952183469600dc', 'from': '0xe24c4218cc192fbc10b9c9c5aa3ca01ea12b60d1', 'to': '0xb3967f64961eabd99e7fd1be22660f27d5a293a3', 'value': 238.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x247214', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:32:14.000Z'}}, {'blockNum': '0x58f12f', 'uniqueId': '0xe8128327aee7f057d36fcd90cc49e8dd79d4f7fb383ae1eda3b5ac0bc2ec26f2:log:33', 'hash': '0xe8128327aee7f057d36fcd90cc49e8dd79d4f7fb383ae1eda3b5ac0bc2ec26f2', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x164dafaa5846873ad57ed69c3393ca6013ddae03', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:32:41.000Z'}}, {'blockNum': '0x58f13a', 'uniqueId': '0x3790403264cce1c593b4ccc08794349fcc6e09ab7f4f17efc1ccbb82257af194:log:24', 'hash': '0x3790403264cce1c593b4ccc08794349fcc6e09ab7f4f17efc1ccbb82257af194', 'from': '0x5eb5e980b990771b58c6f61bbb4bfd1a533b050a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4687.9994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02cb54fa', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:35:26.000Z'}}, {'blockNum': '0x58f13c', 'uniqueId': '0xd8546da848f10980f58a886f9428fa4e613539c91cc8239addf6c28e76ac3a7b:log:87', 'hash': '0xd8546da848f10980f58a886f9428fa4e613539c91cc8239addf6c28e76ac3a7b', 'from': '0xa24a85128a15b134cde93776f2e5701fa8f2972e', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1e8480', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:36:07.000Z'}}, {'blockNum': '0x58f14a', 'uniqueId': '0x28a07251064063139ec5e4c4e46413d86cd1c74a9ef88d4f0cccf9ff0f80030e:log:12', 'hash': '0x28a07251064063139ec5e4c4e46413d86cd1c74a9ef88d4f0cccf9ff0f80030e', 'from': '0x9ed1b9fd44d09e8d8653ad22d71487c57870f60b', 'to': '0x440ea12c698cdaa4c7a6defd0660b9feff2328ec', 'value': 124.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1301e6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:39:20.000Z'}}, {'blockNum': '0x58f14c', 'uniqueId': '0x4a3377c924ce178890785ea28035dc1418aea92961a1776910f6a52fa78fba15:log:40', 'hash': '0x4a3377c924ce178890785ea28035dc1418aea92961a1776910f6a52fa78fba15', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x164dafaa5846873ad57ed69c3393ca6013ddae03', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4c4b40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:39:48.000Z'}}, {'blockNum': '0x58f159', 'uniqueId': '0x87c5f47369f2aab998af221a49bd46e4b7f9164eb21130b660f58d96c1773e13:log:27', 'hash': '0x87c5f47369f2aab998af221a49bd46e4b7f9164eb21130b660f58d96c1773e13', 'from': '0xba7c355fc6c8e85e62a669d1e46d5f06e41abecb', 'to': '0x4f2146d4bbab6d0de0036596eb9f31839bc4aed5', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:44:11.000Z'}}, {'blockNum': '0x58f15d', 'uniqueId': '0x96fae39d250044860acde26314a03220771f6689588d9cee4bbe3331acae5cb7:log:16', 'hash': '0x96fae39d250044860acde26314a03220771f6689588d9cee4bbe3331acae5cb7', 'from': '0x4f2146d4bbab6d0de0036596eb9f31839bc4aed5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:45:07.000Z'}}, {'blockNum': '0x58f174', 'uniqueId': '0xbc74706dd83b3b560bbdd41be84b2f142e7ddd354870214981664ffed49c1938:log:8', 'hash': '0xbc74706dd83b3b560bbdd41be84b2f142e7ddd354870214981664ffed49c1938', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 32070, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x131d7e60', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:52:52.000Z'}}, {'blockNum': '0x58f180', 'uniqueId': '0xbe47cfffd672b4785c265f49253bbbb601211391b343be6918720c8b035e3140:log:8', 'hash': '0xbe47cfffd672b4785c265f49253bbbb601211391b343be6918720c8b035e3140', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32070, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x131d7e60', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T14:55:03.000Z'}}, {'blockNum': '0x58f1d0', 'uniqueId': '0x74bec1d6771df56e9023128ac93390ac5c945b1ba418d32d928fff4789815894:log:6', 'hash': '0x74bec1d6771df56e9023128ac93390ac5c945b1ba418d32d928fff4789815894', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 35416.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x151c2cc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:11:46.000Z'}}, {'blockNum': '0x58f1e3', 'uniqueId': '0x1038d11b2870ede48228b7889425390b6b260c85712dd8a847796b69cabb3dad:log:70', 'hash': '0x1038d11b2870ede48228b7889425390b6b260c85712dd8a847796b69cabb3dad', 'from': '0x6cc47be912a07fbe9cebe68c9e103fdf123b7269', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:17:01.000Z'}}, {'blockNum': '0x58f1f4', 'uniqueId': '0x79c1bddb2d241f8ec39e2c7787bc28256791af3ad6dd08195d46abddb948a008:log:14', 'hash': '0x79c1bddb2d241f8ec39e2c7787bc28256791af3ad6dd08195d46abddb948a008', 'from': '0x526273ce314c1536474457d45aba0cdb42ef89c2', 'to': '0x6f7aa4fb43521eced84ecc27db54f8171fb3483f', 'value': 1040.8506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9ed23a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:21:07.000Z'}}, {'blockNum': '0x58f212', 'uniqueId': '0x1dba8155d4ee7a9e1aca0fc903ae92a0f293f1983ee959bc5dac0d005c4f932d:log:98', 'hash': '0x1dba8155d4ee7a9e1aca0fc903ae92a0f293f1983ee959bc5dac0d005c4f932d', 'from': '0x2aab2b157a03915c8a73adae735d0cf51c872f31', 'to': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'value': 1.0339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2863', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:26:59.000Z'}}, {'blockNum': '0x58f212', 'uniqueId': '0x1dba8155d4ee7a9e1aca0fc903ae92a0f293f1983ee959bc5dac0d005c4f932d:log:100', 'hash': '0x1dba8155d4ee7a9e1aca0fc903ae92a0f293f1983ee959bc5dac0d005c4f932d', 'from': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'to': '0xc96265c36f6d77747f9c259946a1ef55fce946b7', 'value': 1.0339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2863', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:26:59.000Z'}}, {'blockNum': '0x58f21e', 'uniqueId': '0xf9bf7a729023d8b834e2d631eea4fdd5562de91ee30fc121d1e6a0d2487b3c04:log:114', 'hash': '0xf9bf7a729023d8b834e2d631eea4fdd5562de91ee30fc121d1e6a0d2487b3c04', 'from': '0x6cc47be912a07fbe9cebe68c9e103fdf123b7269', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 43360.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x19d84d70', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:30:25.000Z'}}, {'blockNum': '0x58f248', 'uniqueId': '0xa67cb134eeb814d59cbedebd9380260ed8efeef72456fadd81d04023916a8b26:log:6', 'hash': '0xa67cb134eeb814d59cbedebd9380260ed8efeef72456fadd81d04023916a8b26', 'from': '0xe52f973d49eea27888092591bb5428c7086d7bbe', 'to': '0x604716e01dad83fe1b0f065be1957b014692e17c', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:40:39.000Z'}}, {'blockNum': '0x58f248', 'uniqueId': '0x2cdd7ce488de0b4897d21658c609d08b8e127d407724c4822ced0375096afc8c:log:26', 'hash': '0x2cdd7ce488de0b4897d21658c609d08b8e127d407724c4822ced0375096afc8c', 'from': '0x5d73dd185fcfc5171914147d9029d34b5e3d32ab', 'to': '0xe565ca087e48c2a6f9518e4e3cfce40e6294d16c', 'value': 1760.7258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x010caa5a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:40:39.000Z'}}, {'blockNum': '0x58f258', 'uniqueId': '0x096654ae2b9ef31733d91eb7051d49c0bbff9c7d4bf80dabd03583cb4c26a6d0:log:95', 'hash': '0x096654ae2b9ef31733d91eb7051d49c0bbff9c7d4bf80dabd03583cb4c26a6d0', 'from': '0x44aa2cce7ed479d19ab3fc5ffe8e5c2f1011bb54', 'to': '0xdbd6f75aedebdf1c3d2b7085229450200e410fbb', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2625a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:45:06.000Z'}}, {'blockNum': '0x58f25e', 'uniqueId': '0xb93220ccc35436a210005a54e93e83b062e4bb553ef8c96e040981551a2cd465:log:17', 'hash': '0xb93220ccc35436a210005a54e93e83b062e4bb553ef8c96e040981551a2cd465', 'from': '0xe565ca087e48c2a6f9518e4e3cfce40e6294d16c', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 1760.7258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x010caa5a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:46:45.000Z'}}, {'blockNum': '0x58f26a', 'uniqueId': '0x689edb05dacbe25ac96b1b2a05eb036d79f4eb09333a04297224919b8f458e1d:log:76', 'hash': '0x689edb05dacbe25ac96b1b2a05eb036d79f4eb09333a04297224919b8f458e1d', 'from': '0x149b392ead67c219c07573513bddc04a222f9983', 'to': '0xb1c81ce63b37f565960f401bc7bf3200267d7f53', 'value': 1216.173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb992c2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:50:00.000Z'}}, {'blockNum': '0x58f284', 'uniqueId': '0x4cf450a4320dc2f2d5baaebd42d5978333abc09aefb38caf3ae229426e966484:log:23', 'hash': '0x4cf450a4320dc2f2d5baaebd42d5978333abc09aefb38caf3ae229426e966484', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0xfe5d0e7ead95e98fc8d8aff6654eea88c493b787', 'value': 122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x129da0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T15:55:33.000Z'}}, {'blockNum': '0x58f2c6', 'uniqueId': '0x5d026c011a542b7c138b452b7a43382132b1c8a035f3ca070f1d261279143b1f:log:22', 'hash': '0x5d026c011a542b7c138b452b7a43382132b1c8a035f3ca070f1d261279143b1f', 'from': '0xfde7cd2c2b63bf7d58016982d0ee48707913f3e2', 'to': '0xf8e014085b876af7517f06f4db90fd379241a5c9', 'value': 382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3a49e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T16:10:56.000Z'}}, {'blockNum': '0x58f302', 'uniqueId': '0x516427f6e898996fa0ef775542687f17c1ad7719c247cd0f10a9f87bf562c64b:log:39', 'hash': '0x516427f6e898996fa0ef775542687f17c1ad7719c247cd0f10a9f87bf562c64b', 'from': '0x604716e01dad83fe1b0f065be1957b014692e17c', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0bebc200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T16:28:05.000Z'}}, {'blockNum': '0x58f317', 'uniqueId': '0xe113ace0abdf33d5775e1f9769c060d73ed4a6b1ed85803b83ba47d9d0ee981d:log:3', 'hash': '0xe113ace0abdf33d5775e1f9769c060d73ed4a6b1ed85803b83ba47d9d0ee981d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29982.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11df0320', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T16:35:00.000Z'}}, {'blockNum': '0x58f37d', 'uniqueId': '0x85d84767907c616d9cc62d98d71cc24198d164ac7a82409e9f61362142da5c2d:log:11', 'hash': '0x85d84767907c616d9cc62d98d71cc24198d164ac7a82409e9f61362142da5c2d', 'from': '0x70874601fb2caf319912649e2e015e3001377e9d', 'to': '0x3d18f09c3a2618f1024a826cce51059143a59f83', 'value': 549.9305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x53e9a9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:03:04.000Z'}}, {'blockNum': '0x58f38f', 'uniqueId': '0x0280d0893190ef230a72a356f1afa30cf8c11fb7208fec105df725263f91082b:log:38', 'hash': '0x0280d0893190ef230a72a356f1afa30cf8c11fb7208fec105df725263f91082b', 'from': '0x3d18f09c3a2618f1024a826cce51059143a59f83', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 549.9305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x53e9a9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:08:10.000Z'}}, {'blockNum': '0x58f3e4', 'uniqueId': '0x5c00f30f43bd197a50824eed2f476c975ee89e7d068223879cf1d2a58e011d67:log:37', 'hash': '0x5c00f30f43bd197a50824eed2f476c975ee89e7d068223879cf1d2a58e011d67', 'from': '0x24e536f626d72e36a771e83a40d880a3b1489531', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 1.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4650', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:28:43.000Z'}}, {'blockNum': '0x58f3f5', 'uniqueId': '0x87d9f0784fd2110bd375be93af3923c2924ff7e1c69a3c40682365869b37fe21:log:53', 'hash': '0x87d9f0784fd2110bd375be93af3923c2924ff7e1c69a3c40682365869b37fe21', 'from': '0xf8c1f6ceadae0d86380110cd14f5d680e7d4d770', 'to': '0x4bdab0124adc48b9fd2e4adb4ded25e107969bec', 'value': 7590.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x048643a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:31:46.000Z'}}, {'blockNum': '0x58f3f8', 'uniqueId': '0xec7ff4874a88c5140e008d2774dfc840ab27b1e6713def29f8486e59ac778ce9:log:23', 'hash': '0xec7ff4874a88c5140e008d2774dfc840ab27b1e6713def29f8486e59ac778ce9', 'from': '0xe009ce5e7a5c74508ffa805af3109ae406313ead', 'to': '0x55dfe279fe76bedf57ffafa12d45f6185c6e9698', 'value': 559.2841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x555709', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:32:10.000Z'}}, {'blockNum': '0x58f404', 'uniqueId': '0x7d50be8a24f0d8621a03e308e7ecdb58ba503585c123bc6900def351544d6f27:log:7', 'hash': '0x7d50be8a24f0d8621a03e308e7ecdb58ba503585c123bc6900def351544d6f27', 'from': '0x4bdab0124adc48b9fd2e4adb4ded25e107969bec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7590.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x048643a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T17:35:07.000Z'}}, {'blockNum': '0x58f46a', 'uniqueId': '0x098a68dec955b41a7196bbf8ad0d5c23e02bbe5f2987e6b03e1c82cb91627383:log:35', 'hash': '0x098a68dec955b41a7196bbf8ad0d5c23e02bbe5f2987e6b03e1c82cb91627383', 'from': '0x6cbebdbeae718ef80b4a02e76db0f250b5a6a7e4', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:02:37.000Z'}}, {'blockNum': '0x58f495', 'uniqueId': '0x7e08267c168c502a8cc77889f4c91c351eb5ae9772f6fe09355347f00a768458:log:26', 'hash': '0x7e08267c168c502a8cc77889f4c91c351eb5ae9772f6fe09355347f00a768458', 'from': '0xa4cc11f129569acb16e971985f66e85296e95979', 'to': '0x3e734d94f784b936aa5a5315584575a5986a1930', 'value': 5258.668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x032268b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:14:17.000Z'}}, {'blockNum': '0x58f4c1', 'uniqueId': '0x4b3cb6f1460b659f31189bebc8197a42345c365275e2f65952fe5f8f52b7da22:log:92', 'hash': '0x4b3cb6f1460b659f31189bebc8197a42345c365275e2f65952fe5f8f52b7da22', 'from': '0x3e734d94f784b936aa5a5315584575a5986a1930', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5258.668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x032268b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:24:55.000Z'}}, {'blockNum': '0x58f4c9', 'uniqueId': '0xc68ca87dae12b737d15c7eb5db44e8ecdcd375f3d501dc14778ac6fe393797cb:log:5', 'hash': '0xc68ca87dae12b737d15c7eb5db44e8ecdcd375f3d501dc14778ac6fe393797cb', 'from': '0x180620d521555b6f08cc7259e687ea3e1ae3a20f', 'to': '0x5f1886b36643a71d0be0f5d6c43fc46363998ca5', 'value': 2233.941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0154df52', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:26:43.000Z'}}, {'blockNum': '0x58f4d4', 'uniqueId': '0xf571aac7a0a17015a6eafa7eed8f1adc2c2c102e1f312b1cd47cef3b1c218850:log:47', 'hash': '0xf571aac7a0a17015a6eafa7eed8f1adc2c2c102e1f312b1cd47cef3b1c218850', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0xfef8b8e5a3152f8f96d5b4e9a6c03e50d40fbc47', 'value': 1450.116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xdd4528', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:30:10.000Z'}}, {'blockNum': '0x58f507', 'uniqueId': '0xb881ca5bba026562e74c7b7360e926900f80864b3b9af3f35d8497cf28bc307c:log:12', 'hash': '0xb881ca5bba026562e74c7b7360e926900f80864b3b9af3f35d8497cf28bc307c', 'from': '0xb1a09eee781974874c5cdf2a2ea6554bb38eef03', 'to': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'value': 7314.164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x045c0d88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:40:53.000Z'}}, {'blockNum': '0x58f507', 'uniqueId': '0xb881ca5bba026562e74c7b7360e926900f80864b3b9af3f35d8497cf28bc307c:log:13', 'hash': '0xb881ca5bba026562e74c7b7360e926900f80864b3b9af3f35d8497cf28bc307c', 'from': '0x964f35fae36d75b1e72770e244f6595b68508cf5', 'to': '0x2aab2b157a03915c8a73adae735d0cf51c872f31', 'value': 7314.164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x045c0d88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:40:53.000Z'}}, {'blockNum': '0x58f508', 'uniqueId': '0x67beb2a46d4181fe6206fb662cc83ddbb00d3f2f1345355584f4b5e5d83b1821:log:70', 'hash': '0x67beb2a46d4181fe6206fb662cc83ddbb00d3f2f1345355584f4b5e5d83b1821', 'from': '0xe009ce5e7a5c74508ffa805af3109ae406313ead', 'to': '0x55dfe279fe76bedf57ffafa12d45f6185c6e9698', 'value': 1803.4618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01132fba', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:40:57.000Z'}}, {'blockNum': '0x58f50a', 'uniqueId': '0xb3fbba7ff2a7574fce4c60d4671e330bcdcea971dc7a2e0538e5c186fa0f6b06:log:2', 'hash': '0xb3fbba7ff2a7574fce4c60d4671e330bcdcea971dc7a2e0538e5c186fa0f6b06', 'from': '0x2aab2b157a03915c8a73adae735d0cf51c872f31', 'to': '0xfc2b4d1ad1adc695092c1503eeb3f32a816e5651', 'value': 8829.5632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x054348d0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:41:28.000Z'}}, {'blockNum': '0x58f50d', 'uniqueId': '0xb9fdba1cd78f25c9adc63b9a080c4726f772f1035a8141dc55a7d0a657ddceab:log:158', 'hash': '0xb9fdba1cd78f25c9adc63b9a080c4726f772f1035a8141dc55a7d0a657ddceab', 'from': '0xd1bf177daca4da2a744b2660a4fad0c3677bfe7b', 'to': '0x9d76a2f9182a0865da8dad6ce1ffe0c7b79f7151', 'value': 521.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4f9dcc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:42:10.000Z'}}, {'blockNum': '0x58f51c', 'uniqueId': '0xf51f3fb52d273bba133fdfcc305158f080e10fff5c660cb11f734d1e1339e87d:log:100', 'hash': '0xf51f3fb52d273bba133fdfcc305158f080e10fff5c660cb11f734d1e1339e87d', 'from': '0x55dfe279fe76bedf57ffafa12d45f6185c6e9698', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2362.7459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016886c3', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:45:07.000Z'}}, {'blockNum': '0x58f51c', 'uniqueId': '0xcf5d6dc7fdbafcca7bd8220c3df4c9e287d5eefc4ce3cc7ed883c64530137891:log:101', 'hash': '0xcf5d6dc7fdbafcca7bd8220c3df4c9e287d5eefc4ce3cc7ed883c64530137891', 'from': '0x5f1886b36643a71d0be0f5d6c43fc46363998ca5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2233.941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0154df52', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:45:07.000Z'}}, {'blockNum': '0x58f52c', 'uniqueId': '0x4ce7adb0706e97be1779a7a9e18cce1f35cadb5c3cb93a0c4a0b9827f097a98a:log:26', 'hash': '0x4ce7adb0706e97be1779a7a9e18cce1f35cadb5c3cb93a0c4a0b9827f097a98a', 'from': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'to': '0x736576018f8afa9d5a22b43769804cd3efdb1129', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T18:47:24.000Z'}}, {'blockNum': '0x58f575', 'uniqueId': '0xd8a7f9fa410308b4585d1171846dbcfb54efba74c3eda1337688789a5b940795:log:22', 'hash': '0xd8a7f9fa410308b4585d1171846dbcfb54efba74c3eda1337688789a5b940795', 'from': '0xb14ac50a02d7d9cfec7131884ba4247fa9d47556', 'to': '0x34ffcbe54fcb898816262032e6919f3be8cad552', 'value': 139.0518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1537b6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:04:14.000Z'}}, {'blockNum': '0x58f5d7', 'uniqueId': '0xdd7b033c6268d048b911fdf90f4293693a701ae47439ded056c59f5058520435:log:44', 'hash': '0xdd7b033c6268d048b911fdf90f4293693a701ae47439ded056c59f5058520435', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfd422ac29012299e674ffd713989b38265f1363b', 'value': 1108.673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa92b8a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:29:20.000Z'}}, {'blockNum': '0x58f5e7', 'uniqueId': '0x11c79e2ea3393489c24d480336b33fc1a28c8a3d475d8e5d010b00f559dabb21:log:26', 'hash': '0x11c79e2ea3393489c24d480336b33fc1a28c8a3d475d8e5d010b00f559dabb21', 'from': '0x30cd3269ede00db90562f67ebfa727f993bb6454', 'to': '0xa3620deb7254f84be20bfb50d418cabda1d360c1', 'value': 122.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x12a570', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:33:35.000Z'}}, {'blockNum': '0x58f5fd', 'uniqueId': '0x51e39c92d558de1352c69c3380025d45741fe809261eff3a18e700c91492d8a8:log:0', 'hash': '0x51e39c92d558de1352c69c3380025d45741fe809261eff3a18e700c91492d8a8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x10119a1167f9a32a368af8c1c428545e22bcb78a', 'value': 32.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x050140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:39:28.000Z'}}, {'blockNum': '0x58f60c', 'uniqueId': '0x271f0426e60dacc04685f12aec80e8bebe94228d549f33e52264ae7b5002f05b:log:12', 'hash': '0x271f0426e60dacc04685f12aec80e8bebe94228d549f33e52264ae7b5002f05b', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 31953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x130ba410', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:42:39.000Z'}}, {'blockNum': '0x58f61b', 'uniqueId': '0x1b437f35f761da94e527b7918162606a16130afe25563f6c0c4a93a57fc620ff:log:43', 'hash': '0x1b437f35f761da94e527b7918162606a16130afe25563f6c0c4a93a57fc620ff', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x130ba410', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:44:59.000Z'}}, {'blockNum': '0x58f62f', 'uniqueId': '0x18ab0a0accc40de4ded81d83301d6415e922e92a94a264fdef4f38cdac63943b:log:59', 'hash': '0x18ab0a0accc40de4ded81d83301d6415e922e92a94a264fdef4f38cdac63943b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x10119a1167f9a32a368af8c1c428545e22bcb78a', 'value': 8632.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x052542c0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:51:09.000Z'}}, {'blockNum': '0x58f657', 'uniqueId': '0xca9151c3ab69042dcbbdf824ccb0612b7c449461828a339b4e46c4a281e09277:log:7', 'hash': '0xca9151c3ab69042dcbbdf824ccb0612b7c449461828a339b4e46c4a281e09277', 'from': '0x2e1a10028ff38e201979855b8469a1a4fb3de179', 'to': '0x4fb18b2d04a1824fa5464272cbf7bd38f4f9045f', 'value': 12863.683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07aad79e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T19:59:40.000Z'}}, {'blockNum': '0x58f680', 'uniqueId': '0x8baebaec7930ef563390416bcf98575648ba4beefbd405c0e07dbd7509fb8bab:log:49', 'hash': '0x8baebaec7930ef563390416bcf98575648ba4beefbd405c0e07dbd7509fb8bab', 'from': '0x0305d6aa020f922328546383742bbf4276e9dce6', 'to': '0x5e7508557e28570d73b9bd8dfa346df89278361a', 'value': 1983.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012eb19c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T20:08:19.000Z'}}, {'blockNum': '0x58f69d', 'uniqueId': '0x1447c5cd1e12b35e53b4b8b700c8e540864726a30cda062ea8daf0bc91ae73fa:log:10', 'hash': '0x1447c5cd1e12b35e53b4b8b700c8e540864726a30cda062ea8daf0bc91ae73fa', 'from': '0x5e7508557e28570d73b9bd8dfa346df89278361a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1983.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x012eb19c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T20:15:23.000Z'}}, {'blockNum': '0x58f717', 'uniqueId': '0xd8a258b07e4763c827a2a5c9b29db4c0e92058f20f14de46728f9ff7ccc3526a:log:2', 'hash': '0xd8a258b07e4763c827a2a5c9b29db4c0e92058f20f14de46728f9ff7ccc3526a', 'from': '0xba7e26c70d6c003ec059207007c193003bd95318', 'to': '0x730473054a736cdfc3c314e43538a4b055e4da9c', 'value': 4076.0935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x026df667', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T20:46:07.000Z'}}, {'blockNum': '0x58f73a', 'uniqueId': '0x6b879d4870e07a630bb129a655b9b1719b6b0dc545d3aeb860998db16e283a0d:log:6', 'hash': '0x6b879d4870e07a630bb129a655b9b1719b6b0dc545d3aeb860998db16e283a0d', 'from': '0x730473054a736cdfc3c314e43538a4b055e4da9c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4076.0935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x026df667', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T20:55:35.000Z'}}, {'blockNum': '0x58f7da', 'uniqueId': '0xe92f0a621962a107a09bfd57e7b3ada3cb95616a65ded0d64ece2dfb998a9a54:log:21', 'hash': '0xe92f0a621962a107a09bfd57e7b3ada3cb95616a65ded0d64ece2dfb998a9a54', 'from': '0x8181d7c3d6fcb9b5cf04bc25b177345f23a75bb7', 'to': '0xfc3be0a5816cf0bbc3a9c956a5975d2223d34e9d', 'value': 580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x588040', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T21:33:23.000Z'}}, {'blockNum': '0x58f867', 'uniqueId': '0x1351b44336fdc44cec1c12f8fe33a8f068e6c7fee5e8b60c4bec2f156c49b1ef:log:21', 'hash': '0x1351b44336fdc44cec1c12f8fe33a8f068e6c7fee5e8b60c4bec2f156c49b1ef', 'from': '0x0ad88f8753a695435998a5f18d77bb509a29513c', 'to': '0x3940fd53e5a76ac724e217a4113298920e51dbc8', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T22:09:34.000Z'}}, {'blockNum': '0x58f8e5', 'uniqueId': '0xb0728660ae3b148a2ee226d40398914e4f12903559b6540433238d44772b26a5:log:9', 'hash': '0xb0728660ae3b148a2ee226d40398914e4f12903559b6540433238d44772b26a5', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x24e536f626d72e36a771e83a40d880a3b1489531', 'value': 2.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x6748', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T22:42:12.000Z'}}, {'blockNum': '0x58f940', 'uniqueId': '0x7fe4275384e44b224943431be92bddf63d07d55841e439b2d8f86df69b45068a:log:17', 'hash': '0x7fe4275384e44b224943431be92bddf63d07d55841e439b2d8f86df69b45068a', 'from': '0x0f2e442093ebc72259fdb27c973d2e2968edd77f', 'to': '0xc6118cf056255eb8fd77f90a4ad5809c22f27e2d', 'value': 2966.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01c4aad0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:04:13.000Z'}}, {'blockNum': '0x58f945', 'uniqueId': '0x31f3bbb9bf4891906993a3a0b72add868bfe9ebb6456e87df01d2b15ad363d17:log:1', 'hash': '0x31f3bbb9bf4891906993a3a0b72add868bfe9ebb6456e87df01d2b15ad363d17', 'from': '0xc6118cf056255eb8fd77f90a4ad5809c22f27e2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2966.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01c4aad0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:05:05.000Z'}}, {'blockNum': '0x58f9ba', 'uniqueId': '0xba123dc5ed44f560dc4b25b546ac7138f505656cee86d9042df443ba30425fc7:log:0', 'hash': '0xba123dc5ed44f560dc4b25b546ac7138f505656cee86d9042df443ba30425fc7', 'from': '0x2c506ab4cbce71af4a1d7a2e7df77dba1b2a33fa', 'to': '0xebf99bac7b4ff26ae9872fde1641c902b14a5632', 'value': 1044.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x9f64b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:35:06.000Z'}}, {'blockNum': '0x58f9db', 'uniqueId': '0xd8ecb38d92f3985056ddbd2b28e2f0c691bfad45c7636d4089db31e5e0dba238:log:3', 'hash': '0xd8ecb38d92f3985056ddbd2b28e2f0c691bfad45c7636d4089db31e5e0dba238', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x036bb9e3f4e02efbf1c111293ab5883ecfff401f', 'value': 364.3633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3798f1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:40:21.000Z'}}, {'blockNum': '0x58f9e6', 'uniqueId': '0x268adc4eb14b3e40607a1925904af91612791a028b65e902ee257ddd28ae2116:log:1', 'hash': '0x268adc4eb14b3e40607a1925904af91612791a028b65e902ee257ddd28ae2116', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 32286.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x133e9320', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-21T23:43:02.000Z'}}]}}
Number of returned transfers:  180
Answer is complete
 
symbol             SUB
group              FCS
date        2018-12-27
hour             12:30
exchange       binance
Name: 466, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SUB, Contract: 0x8d75959f1e61ec2571aa72798237101f084de63a
Datetime timestamps:  2018-12-27 12:30:00 2018-12-27 00:30:00 2018-12-28 00:30:00
Unix timestamps:  1545867000.0 1545953400.0
Hex Block Numbers:  0x6a2f3f 0x6a464f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6a2f7d', 'uniqueId': '0x3bf98d149b60e908258803ad17cbe38428cf470f76a9eb94b0b6c0b458535919:log:13', 'hash': '0x3bf98d149b60e908258803ad17cbe38428cf470f76a9eb94b0b6c0b458535919', 'from': '0xa2e01883a00e07eea2883152d5cd19f48f092a20', 'to': '0xab959f743f4eaefa26474125d644c4bda856b314', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-26T23:45:25.000Z'}}, {'blockNum': '0x6a2f96', 'uniqueId': '0x8b438e42336903027205194cbd519fd12b1dd116618a11eec8bb1aa8959504eb:log:8', 'hash': '0x8b438e42336903027205194cbd519fd12b1dd116618a11eec8bb1aa8959504eb', 'from': '0xa2e01883a00e07eea2883152d5cd19f48f092a20', 'to': '0xab959f743f4eaefa26474125d644c4bda856b314', 'value': 2731.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x940e2e6fccd45a0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-26T23:50:35.000Z'}}, {'blockNum': '0x6a2fd6', 'uniqueId': '0x76ead13a48228af03c5547a4fcf3018f6998ba94fe4f5ee61a26f463d6c5b437:log:11', 'hash': '0x76ead13a48228af03c5547a4fcf3018f6998ba94fe4f5ee61a26f463d6c5b437', 'from': '0xab959f743f4eaefa26474125d644c4bda856b314', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2733.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x9429efdd3423220000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T00:04:06.000Z'}}, {'blockNum': '0x6a2ffa', 'uniqueId': '0x494159fab393c28ebe556969068bba0263f43ee245ada7a4418f056f60ab3a99:log:13', 'hash': '0x494159fab393c28ebe556969068bba0263f43ee245ada7a4418f056f60ab3a99', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x92dc9f3b997b4a9f5d42d4d2270b2f5e0e4b48f2', 'value': 983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x3549dd8bd7c0fc0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T00:14:02.000Z'}}, {'blockNum': '0x6a302e', 'uniqueId': '0xb75e746d37a7836d524bf0b89ae4e56eefd6918eafb2fdd4a22292156b35f435:log:126', 'hash': '0xb75e746d37a7836d524bf0b89ae4e56eefd6918eafb2fdd4a22292156b35f435', 'from': '0xa54badc85cbde1493228d6c68d497e41c0e154d1', 'to': '0x03c7cd29ed8d2ca11ac864d1e862ab3ae6e0ba17', 'value': 1.4680064e-11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xe00000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T00:28:35.000Z'}}, {'blockNum': '0x6a317a', 'uniqueId': '0x6c18aeaa3b7c2a0e110bb3c085e4c60e484567c5c24931280a0cf16db5a2a829:log:32', 'hash': '0x6c18aeaa3b7c2a0e110bb3c085e4c60e484567c5c24931280a0cf16db5a2a829', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbf6e86e2ebc86aa5e14f5835279f8eb146546102', 'value': 4127.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xdfc56d28b6a0310000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T01:49:09.000Z'}}, {'blockNum': '0x6a3289', 'uniqueId': '0xe18b58858f7578caa2a2316ea2e73ffbd15455993a6c4dd66f37270395cf9a7c:log:83', 'hash': '0xe18b58858f7578caa2a2316ea2e73ffbd15455993a6c4dd66f37270395cf9a7c', 'from': '0xa54badc85cbde1493228d6c68d497e41c0e154d1', 'to': '0x03c7cd29ed8d2ca11ac864d1e862ab3ae6e0ba17', 'value': 1.464467e-12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x165893', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T03:02:38.000Z'}}, {'blockNum': '0x6a32b9', 'uniqueId': '0x53fbac3eb79ef42d52455072310040bff614f030579f654678b20e0773962b6d:log:3', 'hash': '0x53fbac3eb79ef42d52455072310040bff614f030579f654678b20e0773962b6d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d36862d287fb1fec3a38b0a3f8788966722ad8c', 'value': 77, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x042c96f40959140000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T03:14:30.000Z'}}, {'blockNum': '0x6a3395', 'uniqueId': '0x964b8b0cf048dd2e113407a2f0f839dcfab5ee17efd16352b4ab199630dfa28f:log:7', 'hash': '0x964b8b0cf048dd2e113407a2f0f839dcfab5ee17efd16352b4ab199630dfa28f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7d36862d287fb1fec3a38b0a3f8788966722ad8c', 'value': 584.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x1faa040f4e39aa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T04:11:54.000Z'}}, {'blockNum': '0x6a34c0', 'uniqueId': '0xcdae0e65f4041c5f4aa721552f6a15c1bcb8ece95145a6d87da98ba903dbf03d:log:99', 'hash': '0xcdae0e65f4041c5f4aa721552f6a15c1bcb8ece95145a6d87da98ba903dbf03d', 'from': '0xd028f1a8847e1f05480b1aaa359c4ad25a62b3ea', 'to': '0x6f45c0d960042339dccdda2a4dada3e054300bbf', 'value': 5030.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0110b6fcb435859e0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T05:26:41.000Z'}}, {'blockNum': '0x6a3506', 'uniqueId': '0x6723663f4ce247a377961a53065127d5a8665dfb661d1e07def5d45f8a5e80e3:log:9', 'hash': '0x6723663f4ce247a377961a53065127d5a8665dfb661d1e07def5d45f8a5e80e3', 'from': '0x6f45c0d960042339dccdda2a4dada3e054300bbf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5030.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0110b6fcb435859e0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T05:44:21.000Z'}}, {'blockNum': '0x6a3705', 'uniqueId': '0x795a6bbe4985f1b57ca93baebf8a8a4d6c7ee548172083ed84590b4d8bafd1d2:log:5', 'hash': '0x795a6bbe4985f1b57ca93baebf8a8a4d6c7ee548172083ed84590b4d8bafd1d2', 'from': '0x5e56f5f909c12b99596fc5a2583d669a889f5b66', 'to': '0x07a05bad8570ab71d53b1500fd247a87693f6e8f', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T07:48:06.000Z'}}, {'blockNum': '0x6a374e', 'uniqueId': '0xb31b8b34f9df91654b14c430e260a17c16c690923c7ef1621298f9d3259eb1c1:log:12', 'hash': '0xb31b8b34f9df91654b14c430e260a17c16c690923c7ef1621298f9d3259eb1c1', 'from': '0x5e56f5f909c12b99596fc5a2583d669a889f5b66', 'to': '0x07a05bad8570ab71d53b1500fd247a87693f6e8f', 'value': 69829.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0ec97c41dd707a4c0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:04:55.000Z'}}, {'blockNum': '0x6a3771', 'uniqueId': '0x27220746af5406c4a2907aab6f6332d39e367c8277953f3feee6cfe9d1f34683:log:22', 'hash': '0x27220746af5406c4a2907aab6f6332d39e367c8277953f3feee6cfe9d1f34683', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd20be7d7fd5de701f52bbecba38dfd662df06f16', 'value': 17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xebec21ee1da40000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:13:39.000Z'}}, {'blockNum': '0x6a3790', 'uniqueId': '0xe7e7d92cd339b960e6eeb5914431301e6308120b50d86b73b95d5ad26cc85aca:log:7', 'hash': '0xe7e7d92cd339b960e6eeb5914431301e6308120b50d86b73b95d5ad26cc85aca', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd20be7d7fd5de701f52bbecba38dfd662df06f16', 'value': 17104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x039f35aec31fc9400000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:22:07.000Z'}}, {'blockNum': '0x6a379c', 'uniqueId': '0x0e0f65a4f047c9fbe90f5f86c959353ce89c0dafe87d9971f8fc14c43080cb2c:log:33', 'hash': '0x0e0f65a4f047c9fbe90f5f86c959353ce89c0dafe87d9971f8fc14c43080cb2c', 'from': '0x07a05bad8570ab71d53b1500fd247a87693f6e8f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69979.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0ed19deceab48ee40000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:24:42.000Z'}}, {'blockNum': '0x6a38b9', 'uniqueId': '0xf7c73fd07dcd7a023f42de06db1570b844d9ce505ffecb50127840bf91d5938c:log:3', 'hash': '0xf7c73fd07dcd7a023f42de06db1570b844d9ce505ffecb50127840bf91d5938c', 'from': '0x75b8d82b6c41ac1f83f61e8341c57bd429712fd5', 'to': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T09:40:20.000Z'}}, {'blockNum': '0x6a38bc', 'uniqueId': '0x5abc01e6457d4ac28e27acd7f5a6d5145c6b25b27cabcf91801a175cb75a9253:log:2', 'hash': '0x5abc01e6457d4ac28e27acd7f5a6d5145c6b25b27cabcf91801a175cb75a9253', 'from': '0x75b8d82b6c41ac1f83f61e8341c57bd429712fd5', 'to': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T09:41:40.000Z'}}, {'blockNum': '0x6a38e6', 'uniqueId': '0x49af2270cbd5ca1419cddcfa9d1bf249b076d596cf1354e50244815ce96c12cc:log:9', 'hash': '0x49af2270cbd5ca1419cddcfa9d1bf249b076d596cf1354e50244815ce96c12cc', 'from': '0x75b8d82b6c41ac1f83f61e8341c57bd429712fd5', 'to': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'value': 28934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x062083e9951910580000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T09:49:56.000Z'}}, {'blockNum': '0x6a392e', 'uniqueId': '0xe4eadc555170343011b2f875fa4f2302eb36b67f6dac520bc230549121338d4b:log:6', 'hash': '0xe4eadc555170343011b2f875fa4f2302eb36b67f6dac520bc230549121338d4b', 'from': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x06209fab02805f200000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T10:04:20.000Z'}}, {'blockNum': '0x6a3a30', 'uniqueId': '0xd20bc1fd7de5158a6ca482e639a7c70b06db4b0660dd0e359e5424dd912a05ea:log:5', 'hash': '0xd20bc1fd7de5158a6ca482e639a7c70b06db4b0660dd0e359e5424dd912a05ea', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8fd849b0b3a109c895c135d4ea0848fc06a5aee8', 'value': 137.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0778ea0db13fd80000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T11:07:33.000Z'}}, {'blockNum': '0x6a3be3', 'uniqueId': '0xb469909c672c165914c8e4ae2c218c16bd15e821818cfa1302d28e137080b156:log:14', 'hash': '0xb469909c672c165914c8e4ae2c218c16bd15e821818cfa1302d28e137080b156', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6057fb4f60f9242947fe3b2d6c1c8a95bf88a8e6', 'value': 3210.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xae0e3ef8aa19340000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T12:49:27.000Z'}}, {'blockNum': '0x6a3c49', 'uniqueId': '0x1dd0ab32333ec6681e3c04d2f4d392ce0b23855c05ffd46dfda17b5674e51891:log:0', 'hash': '0x1dd0ab32333ec6681e3c04d2f4d392ce0b23855c05ffd46dfda17b5674e51891', 'from': '0xc8f33a3833f532241e8d0598b2387355688d39c3', 'to': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:16:48.000Z'}}, {'blockNum': '0x6a3c4b', 'uniqueId': '0xb53b648ed0483a5da0fc6445424db856b95befd308188d3c2e02f3266d3d6659:log:20', 'hash': '0xb53b648ed0483a5da0fc6445424db856b95befd308188d3c2e02f3266d3d6659', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5bb5717c3e9170001c70770b7d724e97f8589fc3', 'value': 5.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x45838af60fee8000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:17:51.000Z'}}, {'blockNum': '0x6a3c74', 'uniqueId': '0x27baf974d44f7bd2515b6d8f55523c068216a5c8b8a84133f4884de988bb8f58:log:3', 'hash': '0x27baf974d44f7bd2515b6d8f55523c068216a5c8b8a84133f4884de988bb8f58', 'from': '0xc8f33a3833f532241e8d0598b2387355688d39c3', 'to': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'value': 34285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x074297f47a48eb940000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:26:04.000Z'}}, {'blockNum': '0x6a3c92', 'uniqueId': '0xcee2171942a5d804c33794a9cca534d16023d9b30c3bea0ee93f5a0a74247c88:log:18', 'hash': '0xcee2171942a5d804c33794a9cca534d16023d9b30c3bea0ee93f5a0a74247c88', 'from': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0748d3e68cfd1d800000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:34:08.000Z'}}, {'blockNum': '0x6a3cf2', 'uniqueId': '0xba6e81cfc36b5ba210120e7fa008da698102d818743aa008c957b84066cc9e97:log:6', 'hash': '0xba6e81cfc36b5ba210120e7fa008da698102d818743aa008c957b84066cc9e97', 'from': '0x48e61bc4c144936296b2f3747587ec2e2d4c2307', 'to': '0xb6973537713aa1b4a1ccbd847d99e3c0e100463a', 'value': 379.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x149425a3bd72090000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:56:30.000Z'}}, {'blockNum': '0x6a3d5d', 'uniqueId': '0x4e028d924fac75266ea7290067647481a1ea44ae81d5b5132a3093b96e438f67:log:3', 'hash': '0x4e028d924fac75266ea7290067647481a1ea44ae81d5b5132a3093b96e438f67', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6e02d5770e12c63582758668516eb05f05eacaea', 'value': 8752.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x01da7573b6c045560000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:19:47.000Z'}}, {'blockNum': '0x6a3de3', 'uniqueId': '0xd3bd49cf92bada03c470dc7b3e9b68bbfadc72ebfbc96ec9a449880bc5c99304:log:55', 'hash': '0xd3bd49cf92bada03c470dc7b3e9b68bbfadc72ebfbc96ec9a449880bc5c99304', 'from': '0xe81e8aa3af684e2940176afb096c813605966b38', 'to': '0x13f1620a7ba8a8a742513e812280e0ab1689e976', 'value': 1426.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x4d5271a0ed42aa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:53:01.000Z'}}, {'blockNum': '0x6a3de4', 'uniqueId': '0x5e6d03ff37a10248a9ec2782a21688f214c1e77ecea882c39fb13786c0daddaa:log:48', 'hash': '0x5e6d03ff37a10248a9ec2782a21688f214c1e77ecea882c39fb13786c0daddaa', 'from': '0xe81e8aa3af684e2940176afb096c813605966b38', 'to': '0x7ed0679b11c6b341210e1f66209952d726853ef3', 'value': 218.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0bdf18c4bdc2cb0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:53:12.000Z'}}, {'blockNum': '0x6a3df8', 'uniqueId': '0x69f48e53049a23cc8421c3751d5ca215ab0116c570e4a63b879f27c3ec44264f:log:18', 'hash': '0x69f48e53049a23cc8421c3751d5ca215ab0116c570e4a63b879f27c3ec44264f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa2f34db3ec5dd7f09b5972cc76bc44582d2b189b', 'value': 2930.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x9ed69cb6ee054d0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:59:51.000Z'}}, {'blockNum': '0x6a3e3a', 'uniqueId': '0x546868b082d7139e8c132b490fe9371e683c41e1a22b35ef6eb9d1d3a48a0af7:log:30', 'hash': '0x546868b082d7139e8c132b490fe9371e683c41e1a22b35ef6eb9d1d3a48a0af7', 'from': '0x13f1620a7ba8a8a742513e812280e0ab1689e976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1426.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x4d5271a0ed42aa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T15:14:29.000Z'}}, {'blockNum': '0x6a3f11', 'uniqueId': '0xa9a99560a2f40329ec29ade9843d3346cc1363987e87c9a8f61af867ebd31fdf:log:2', 'hash': '0xa9a99560a2f40329ec29ade9843d3346cc1363987e87c9a8f61af867ebd31fdf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x232015ce5fcf93373a4958bb2a1f258461f27e14', 'value': 15065.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0330b95d0370d59e0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T16:08:54.000Z'}}, {'blockNum': '0x6a3f70', 'uniqueId': '0x22e20eb4069eb45d62db0c6b0a8d301060c5574aabe68c622f65cf77786a918a:log:38', 'hash': '0x22e20eb4069eb45d62db0c6b0a8d301060c5574aabe68c622f65cf77786a918a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd028f1a8847e1f05480b1aaa359c4ad25a62b3ea', 'value': 5009.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x010f932322a17b270000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T16:29:57.000Z'}}, {'blockNum': '0x6a3fa7', 'uniqueId': '0xeebe8c56d7eb77855dbacbc849e9054588b1df3bb67978431ca78f196d98829c:log:20', 'hash': '0xeebe8c56d7eb77855dbacbc849e9054588b1df3bb67978431ca78f196d98829c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x233c2bc75e0a6320b705c9e1bd25e64b6dbedf79', 'value': 21730.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0499ff855d4ea09f0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T16:41:37.000Z'}}, {'blockNum': '0x6a404c', 'uniqueId': '0xd9613230e4019086d98b036fddbeaf25a2a3ecc37b872a20f3defcd00bf68b00:log:68', 'hash': '0xd9613230e4019086d98b036fddbeaf25a2a3ecc37b872a20f3defcd00bf68b00', 'from': '0xe81e8aa3af684e2940176afb096c813605966b38', 'to': '0x0945f63b9ff06bbb34146dd7f31a36d3a15294e3', 'value': 803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x2b87dd15860eac0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T17:24:26.000Z'}}, {'blockNum': '0x6a4165', 'uniqueId': '0x7efd4ce3671106ffde5e4a113eb408d53586da06b81509f240989f09ad75862d:log:4', 'hash': '0x7efd4ce3671106ffde5e4a113eb408d53586da06b81509f240989f09ad75862d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3f1713187d101ec36feae66179b26586e407a286', 'value': 4560.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xf735a071f8d0150000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T18:32:22.000Z'}}, {'blockNum': '0x6a41bd', 'uniqueId': '0xec84662e62feb16ba48fe9c29962e209266a422f0bbc1b169b17ab3ac1933677:log:4', 'hash': '0xec84662e62feb16ba48fe9c29962e209266a422f0bbc1b169b17ab3ac1933677', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x864bf5de2f20c879631ab8ce67a239aeba6d2dcf', 'value': 1536.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x5348fc94a08adb8000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T18:55:24.000Z'}}, {'blockNum': '0x6a41ef', 'uniqueId': '0xf3cfe0083c737672ec5e0deedccb9acac911f34b9856e981dc6f5adfe93cd933:log:10', 'hash': '0xf3cfe0083c737672ec5e0deedccb9acac911f34b9856e981dc6f5adfe93cd933', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x233c2bc75e0a6320b705c9e1bd25e64b6dbedf79', 'value': 40072.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x087c5ac965d5d7b70000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T19:07:45.000Z'}}, {'blockNum': '0x6a41f7', 'uniqueId': '0x02b7cbd279824fcc6c793fe62ca69dcc3c192e9c86aea36b0446f37bee0e2f70:log:3', 'hash': '0x02b7cbd279824fcc6c793fe62ca69dcc3c192e9c86aea36b0446f37bee0e2f70', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4c4e867210f1b0a2b0d52d7cde71cbb2c8c52d60', 'value': 1089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x3b08e9323b10640000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T19:09:43.000Z'}}, {'blockNum': '0x6a4208', 'uniqueId': '0x3162921893f365fb020b122625c4b28bdbeb37df63301e545f3ff8ebdc31098c:log:9', 'hash': '0x3162921893f365fb020b122625c4b28bdbeb37df63301e545f3ff8ebdc31098c', 'from': '0x864bf5de2f20c879631ab8ce67a239aeba6d2dcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1536.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x5348fc94a08adb8000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T19:14:18.000Z'}}, {'blockNum': '0x6a4302', 'uniqueId': '0xc1350ed16c6b7bd2222321e37dde0c50fd80928772c68cd1b243c8a64bef8ed0:log:146', 'hash': '0xc1350ed16c6b7bd2222321e37dde0c50fd80928772c68cd1b243c8a64bef8ed0', 'from': '0xbedf42770ff6a30c184c331b7961eaca6afe7f9e', 'to': '0x4cd13f456a66d0420856584d1d59564d57de0920', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T20:09:46.000Z'}}, {'blockNum': '0x6a4338', 'uniqueId': '0xdc0f93fcaafceb45e459d5d3e414201c961ac6ed3b0cd5fb4f2e1fa67f82ac73:log:1', 'hash': '0xdc0f93fcaafceb45e459d5d3e414201c961ac6ed3b0cd5fb4f2e1fa67f82ac73', 'from': '0xbedf42770ff6a30c184c331b7961eaca6afe7f9e', 'to': '0x4cd13f456a66d0420856584d1d59564d57de0920', 'value': 894.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x307f9fc3fe7f780000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T20:22:48.000Z'}}, {'blockNum': '0x6a438f', 'uniqueId': '0x1af2c32e4e96a7505dd2516f912d6934cd7d0c508cb2a49cdc9437f3207ecb85:log:8', 'hash': '0x1af2c32e4e96a7505dd2516f912d6934cd7d0c508cb2a49cdc9437f3207ecb85', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf39fef1c0eadb9403b85a1a36221bac5b130bee9', 'value': 318.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x11464bbdaabdfa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T20:46:53.000Z'}}, {'blockNum': '0x6a44b4', 'uniqueId': '0xffc226f409d48887123c377f8e1c3798e6d2fabc2a03303d5e26bbb2dae59ca4:log:6', 'hash': '0xffc226f409d48887123c377f8e1c3798e6d2fabc2a03303d5e26bbb2dae59ca4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac3e744bd9f449d45c6d10efeb94546868b7bdfe', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T21:51:24.000Z'}}, {'blockNum': '0x6a45c4', 'uniqueId': '0x7df6b846d9728b3d5768bcd30beb1aee671ebfa6742c617bcd0e1f6275c15a4b:log:2', 'hash': '0x7df6b846d9728b3d5768bcd30beb1aee671ebfa6742c617bcd0e1f6275c15a4b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x47ee340afe92d4b8caabd7abd0f6abc3d0927358', 'value': 1482.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x5062d1017893be0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T22:52:42.000Z'}}]}}
Number of returned transfers:  46
Answer is complete
 
symbol             BQX
group              FCS
date        2018-12-30
hour             12:29
exchange       binance
Name: 467, dtype: object
HERE
 Symbol: BQX, Contract: 
Datetime timestamps:  2018-12-30 12:29:00 2018-12-30 00:29:00 2018-12-31 00:29:00
Unix timestamps:  1546126140.0 1546212540.0
Hex Block Numbers:  0x6a749b 0x6a8ba0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RLC
group              LUX
date        2018-04-09
hour             15:00
exchange       binance
Name: 468, dtype: object
HERE
 Symbol: RLC, Contract: 0x607f4c5bb672230e8672085532f7e901544a7375
Datetime timestamps:  2018-04-09 15:00:00 2018-04-09 03:00:00 2018-04-10 03:00:00
Unix timestamps:  1523235600.0 1523322000.0
Hex Block Numbers:  0x527e8e 0x529610
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x527ea7', 'uniqueId': '0xcd8c90aed1f7ed74d278e5e1548b0d500a2fbf1558c79a3e49fce1512242bafd:log:5', 'hash': '0xcd8c90aed1f7ed74d278e5e1548b0d500a2fbf1558c79a3e49fce1512242bafd', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x9cec5c02a0991c41bed035c0f43efbf767ddad5d', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:06:29.000Z'}}, {'blockNum': '0x527eb3', 'uniqueId': '0xef08306926e9f2382be90a1582cf94cedc234903189a1fe8d8c43131d7a3453c:log:2', 'hash': '0xef08306926e9f2382be90a1582cf94cedc234903189a1fe8d8c43131d7a3453c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xebe860f99bbaf5254f60c39077c543662ba4b779', 'value': 18.92269746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0467e172f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:08:25.000Z'}}, {'blockNum': '0x527f3e', 'uniqueId': '0x6ad02ca37567b7afe2766920f4364b32a3fa25ff279d985a5b4292c8ac0bbc21:log:43', 'hash': '0x6ad02ca37567b7afe2766920f4364b32a3fa25ff279d985a5b4292c8ac0bbc21', 'from': '0x78bdb3419fedee4378a0ed9dc9fa6cf4b79aae3e', 'to': '0x158f81ba7f9a4524f7f641fcc622000ade72c859', 'value': 210.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31078bcd00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:38:24.000Z'}}, {'blockNum': '0x527f3f', 'uniqueId': '0xa0c3b066c3c94161458c0809c8a28c572c7dbc98573bad3b09fbc19551317710:log:42', 'hash': '0xa0c3b066c3c94161458c0809c8a28c572c7dbc98573bad3b09fbc19551317710', 'from': '0x4da9b0345d3ce291b43733fca01ef5d4e14baede', 'to': '0x5089c0744987b6af803a7f9b24fed99f3b0f626e', 'value': 1005.923905492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xea35bcafd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:39:02.000Z'}}, {'blockNum': '0x527f4d', 'uniqueId': '0xb9ca2ed0eb6623e032adfab6d646b64cccbe929f064818dd95b7ad284fa0e17f:log:6', 'hash': '0xb9ca2ed0eb6623e032adfab6d646b64cccbe929f064818dd95b7ad284fa0e17f', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xd17f8fed964c95349ff05ee5f956c32b8b61e3c7', 'value': 582.18723789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x878d104202', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:43:51.000Z'}}, {'blockNum': '0x527f64', 'uniqueId': '0xb948f8a8728fcda881d53a1aa47e9a4831574355441f594123f575e6a612e608:log:52', 'hash': '0xb948f8a8728fcda881d53a1aa47e9a4831574355441f594123f575e6a612e608', 'from': '0x158f81ba7f9a4524f7f641fcc622000ade72c859', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31078bcd00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T01:49:24.000Z'}}, {'blockNum': '0x527fe8', 'uniqueId': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb:log:70', 'hash': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 4.7063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb7d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:25:10.000Z'}}, {'blockNum': '0x527fe8', 'uniqueId': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb:log:72', 'hash': '0x695699d0a62cfa2a9aed6a308a18d8c3b4413eeeebc91065b9946a8441d666eb', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 4.7063e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb7d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:25:10.000Z'}}, {'blockNum': '0x528009', 'uniqueId': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860:log:18', 'hash': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:33:15.000Z'}}, {'blockNum': '0x528009', 'uniqueId': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860:log:20', 'hash': '0x6679ebf5b15315075bc74b42587d60fc1913d2ef405ecacff624cdf1b5ee2860', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:33:15.000Z'}}, {'blockNum': '0x528035', 'uniqueId': '0x4ccc0fbdd3ac2367c1fcf115188bc0d522e75430099957e44739d4ee1e0417ed:log:1', 'hash': '0x4ccc0fbdd3ac2367c1fcf115188bc0d522e75430099957e44739d4ee1e0417ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa63db76400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T02:44:22.000Z'}}, {'blockNum': '0x528082', 'uniqueId': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c:log:64', 'hash': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 376.076589163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x578fe9586b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:05:54.000Z'}}, {'blockNum': '0x528082', 'uniqueId': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c:log:66', 'hash': '0xe9c692ecd3a5422739fd6ed0be1777d30dd6dcf9c80effe28902cc27f843008c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 376.076589163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x578fe9586b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:05:54.000Z'}}, {'blockNum': '0x528085', 'uniqueId': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f:log:26', 'hash': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 372.238359927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x56ab229d77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:07:16.000Z'}}, {'blockNum': '0x528085', 'uniqueId': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f:log:28', 'hash': '0x210128e28d9538032c38fade2baa32119de1c43169361e0badcaf6d2e7a2885f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 372.238359927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x56ab229d77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:07:16.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0xab596f1fd41ecd02095f1429364187b238aa8d931c77eea2e388de91a381ff38:log:28', 'hash': '0xab596f1fd41ecd02095f1429364187b238aa8d931c77eea2e388de91a381ff38', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0x059a62926ab1df24a6ffff082ccef1d5c6a3bc7e', 'value': 745.913446459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xadabe7f03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3:log:47', 'hash': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 695.66674086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa1f8f80e7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x52808e', 'uniqueId': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3:log:49', 'hash': '0x49d226a403b390f43a3570a378d889e146efc20c2a6a82cf6b0752613eda91e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 695.66674086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa1f8f80e7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:19.000Z'}}, {'blockNum': '0x528090', 'uniqueId': '0x35cc65f1d7870c3fe4082ede8007d48235657063cd1254ad75364fa832a757d2:log:6', 'hash': '0x35cc65f1d7870c3fe4082ede8007d48235657063cd1254ad75364fa832a757d2', 'from': '0x059a62926ab1df24a6ffff082ccef1d5c6a3bc7e', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 745.913446459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xadabe7f03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:08:30.000Z'}}, {'blockNum': '0x528095', 'uniqueId': '0x5d17c4f80f47d36a2bdb3e0db59eea96b6f2e0d8eebfe4d10a6daaebd64317dc:log:69', 'hash': '0x5d17c4f80f47d36a2bdb3e0db59eea96b6f2e0d8eebfe4d10a6daaebd64317dc', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 678.982095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9e167c9098', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:09:41.000Z'}}, {'blockNum': '0x528099', 'uniqueId': '0xf12ba1bc2a47c0249e39ccfe35269e2aa521636e2847dde25ba93e4e627a4a14:log:2', 'hash': '0xf12ba1bc2a47c0249e39ccfe35269e2aa521636e2847dde25ba93e4e627a4a14', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 19336.79816813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x119632fc6442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:11:20.000Z'}}, {'blockNum': '0x52809a', 'uniqueId': '0xfec1ae0aed92c731f581011967ea709c0b3460e7abcaaeb8870ae955f405fc3c:log:8', 'hash': '0xfec1ae0aed92c731f581011967ea709c0b3460e7abcaaeb8870ae955f405fc3c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 6497.96947226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05e8ed298304', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:11:23.000Z'}}, {'blockNum': '0x5280a1', 'uniqueId': '0x8abcd234a2bf857f814e8867c64cc53ff4aa9f10dcb14e4221addc9d86d99d70:log:121', 'hash': '0x8abcd234a2bf857f814e8867c64cc53ff4aa9f10dcb14e4221addc9d86d99d70', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'value': 17900.20191412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1047b72d2f08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:12:26.000Z'}}, {'blockNum': '0x5280a3', 'uniqueId': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c:log:36', 'hash': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 447.208042601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x681fad3069', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:17.000Z'}}, {'blockNum': '0x5280a3', 'uniqueId': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c:log:38', 'hash': '0xaad95295d07ea45085fd39cbe3d9a8cc7c927c2178c19f687527f94999af4a6c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 447.208042601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x681fad3069', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:17.000Z'}}, {'blockNum': '0x5280a5', 'uniqueId': '0x1463ec32fca6c1235652df89b0dc106cdc6945c14478f26407e8066736b1c75d:log:8', 'hash': '0x1463ec32fca6c1235652df89b0dc106cdc6945c14478f26407e8066736b1c75d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'value': 28047.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19823f649800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:13:32.000Z'}}, {'blockNum': '0x5280ae', 'uniqueId': '0xeffecae583941f7471cfa1bf11dc053f588ec98730d698123c999bb0d9733a92:log:6', 'hash': '0xeffecae583941f7471cfa1bf11dc053f588ec98730d698123c999bb0d9733a92', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'value': 1588.658466501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e36c6ec5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:14:41.000Z'}}, {'blockNum': '0x5280bf', 'uniqueId': '0x12d2641a26e8dcfc0eadc79ff37cbbb9c895db8c1fae01524b5b247e5378f587:log:14', 'hash': '0x12d2641a26e8dcfc0eadc79ff37cbbb9c895db8c1fae01524b5b247e5378f587', 'from': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1588.658466501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e36c6ec5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:04.000Z'}}, {'blockNum': '0x5280c0', 'uniqueId': '0x30f6d7097f70c392e092f0fd439294af40ccecd0546485351e2e980ba8f8e8bf:log:20', 'hash': '0x30f6d7097f70c392e092f0fd439294af40ccecd0546485351e2e980ba8f8e8bf', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 678.982095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9e167c9098', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:19.000Z'}}, {'blockNum': '0x5280c1', 'uniqueId': '0xfd86b02d192a2e76fded7570b1970b3a202199af9b94879c4a3ba187420baa32:log:2', 'hash': '0xfd86b02d192a2e76fded7570b1970b3a202199af9b94879c4a3ba187420baa32', 'from': '0x444a26b5ab3edb28be8cd462c48b922594f8e175', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 37237.00008225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x21ddea29934a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:35.000Z'}}, {'blockNum': '0x5280c1', 'uniqueId': '0x9c201ae23b18bfc07d6d636dcabacaff8c643fdd4da137641c380a4cf0673914:log:57', 'hash': '0x9c201ae23b18bfc07d6d636dcabacaff8c643fdd4da137641c380a4cf0673914', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6497.96947226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05e8ed298304', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:19:35.000Z'}}, {'blockNum': '0x5280c6', 'uniqueId': '0x084f92094b90e783656b99677b39c4d10a558094773dce4c07220b5eaacecb00:log:2', 'hash': '0x084f92094b90e783656b99677b39c4d10a558094773dce4c07220b5eaacecb00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 60617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37217ec09a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:20:34.000Z'}}, {'blockNum': '0x5280ce', 'uniqueId': '0x06ad4220e6f362755b8946f7388e1bb1610c4da1880ad355cf536f1a97fbe8aa:log:42', 'hash': '0x06ad4220e6f362755b8946f7388e1bb1610c4da1880ad355cf536f1a97fbe8aa', 'from': '0x9cec5c02a0991c41bed035c0f43efbf767ddad5d', 'to': '0x69514f8df84c97fabff2d7807974341d4f41044d', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:22:39.000Z'}}, {'blockNum': '0x5280ce', 'uniqueId': '0xfcbca400e4e171d634a3c16627e0d10e41832c36c2aac392fd1b7fa683db3d9d:log:76', 'hash': '0xfcbca400e4e171d634a3c16627e0d10e41832c36c2aac392fd1b7fa683db3d9d', 'from': '0x0f155f84f44e5fd47b53f74f31256a2d8f955591', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 28047.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19823f649800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:22:39.000Z'}}, {'blockNum': '0x5280de', 'uniqueId': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013:log:6', 'hash': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 559.2070341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8233562cf4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:25:49.000Z'}}, {'blockNum': '0x5280de', 'uniqueId': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013:log:8', 'hash': '0xefabfaa15756dff404a2d3432ce07043e89dc3ee8d710ed37f04a68b0a2d1013', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 559.2070341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8233562cf4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:25:49.000Z'}}, {'blockNum': '0x5280ec', 'uniqueId': '0x63c50a704f9f427247d7d6f9f6ad5425b455d4042361a71ea917032980ecc2f8:log:4', 'hash': '0x63c50a704f9f427247d7d6f9f6ad5425b455d4042361a71ea917032980ecc2f8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 542.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7e4f851100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:48.000Z'}}, {'blockNum': '0x5280ec', 'uniqueId': '0xd9768d037d5c1b3c50cb81527daf0796105aa4c38ca039a45b2d09edf078d4d2:log:5', 'hash': '0xd9768d037d5c1b3c50cb81527daf0796105aa4c38ca039a45b2d09edf078d4d2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x02f2753aa71db52d79f37229fcbad241c5aec57e', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:48.000Z'}}, {'blockNum': '0x5280ee', 'uniqueId': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b:log:24', 'hash': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b', 'from': '0x02f2753aa71db52d79f37229fcbad241c5aec57e', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:58.000Z'}}, {'blockNum': '0x5280ee', 'uniqueId': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b:log:26', 'hash': '0xe55f4e410017aab5e8ea9341238b078aace94fbc0bc4b8777b17f5a86fa8921b', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 848.0482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc5739c9940', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:28:58.000Z'}}, {'blockNum': '0x52810d', 'uniqueId': '0x7afcd44f10f877b9a122836c0162af04bc5efa1e262c5ca757034781169e4780:log:53', 'hash': '0x7afcd44f10f877b9a122836c0162af04bc5efa1e262c5ca757034781169e4780', 'from': '0x69514f8df84c97fabff2d7807974341d4f41044d', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 74.77743375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1169151696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T03:35:54.000Z'}}, {'blockNum': '0x52816b', 'uniqueId': '0x4ab401d9d2348940bb51e3b77299664665a8cb8dd200641ed1dad62a3b53db74:log:19', 'hash': '0x4ab401d9d2348940bb51e3b77299664665a8cb8dd200641ed1dad62a3b53db74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5869f882338ece01929e4b9581e01447a5bed343', 'value': 46.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ad39db100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:01:52.000Z'}}, {'blockNum': '0x528185', 'uniqueId': '0xf09dc3c3f21be63e167d2e77331ae35262c40e04f183715f144713bb964ef2d8:log:1', 'hash': '0xf09dc3c3f21be63e167d2e77331ae35262c40e04f183715f144713bb964ef2d8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 4804.7169356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x045eaf7239b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:10:00.000Z'}}, {'blockNum': '0x5281b7', 'uniqueId': '0x45368e0904dbb152ada961a59c7601b32b0788bc41201f15a900fb8f4d240454:log:132', 'hash': '0x45368e0904dbb152ada961a59c7601b32b0788bc41201f15a900fb8f4d240454', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4804.7169356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x045eaf7239b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T04:18:59.000Z'}}, {'blockNum': '0x5282f9', 'uniqueId': '0x48c4adb63b309046e1143d86f7b5aa7dd290b6e5afe146928a84b42dcd18b931:log:4', 'hash': '0x48c4adb63b309046e1143d86f7b5aa7dd290b6e5afe146928a84b42dcd18b931', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 1740.4276165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01953991e0f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:30:54.000Z'}}, {'blockNum': '0x5282fe', 'uniqueId': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe:log:105', 'hash': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 374.124401098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x571b8d51ca', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:32:55.000Z'}}, {'blockNum': '0x5282fe', 'uniqueId': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe:log:107', 'hash': '0xb7a36109696c11cb5ddb7bb54dd67f40719ed2bdd4c22d4b9e80423d01971fbe', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 374.124401098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x571b8d51ca', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T05:32:55.000Z'}}, {'blockNum': '0x52840e', 'uniqueId': '0xd05fe83dfc19e8bfbf5cd4379c4b3e59e71c2162888db9245dee10aec94c53f4:log:55', 'hash': '0xd05fe83dfc19e8bfbf5cd4379c4b3e59e71c2162888db9245dee10aec94c53f4', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xa06f8516027b85e62d7720606f939b9a36b994d2', 'value': 21.19027454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04ef09edec', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T06:35:01.000Z'}}, {'blockNum': '0x5284c2', 'uniqueId': '0x96d60f043956d33635cdaa1f5779a664e32c51c4d9e7a4f046b4b5a3d4e6a5ce:log:7', 'hash': '0x96d60f043956d33635cdaa1f5779a664e32c51c4d9e7a4f046b4b5a3d4e6a5ce', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xec81aa3dc98acaf4e246bbe29e2ac4e6a07de799', 'value': 170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2794ca2400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T07:21:17.000Z'}}, {'blockNum': '0x5285b6', 'uniqueId': '0x0607411bb624cacd10414f9ad5d03a32fc272c3026bd79048d0d27353ba34fb8:log:51', 'hash': '0x0607411bb624cacd10414f9ad5d03a32fc272c3026bd79048d0d27353ba34fb8', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x03a7d1cb0db35e65ce4d5449cac2b3aa3ea18913', 'value': 119.15860008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1bbe67f190', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:18:23.000Z'}}, {'blockNum': '0x5285d5', 'uniqueId': '0xc7ff91d4d28d4b7cf3a0326063df84bfa7e0083d10ff8fdb8a1f842d90a4c7d7:log:60', 'hash': '0xc7ff91d4d28d4b7cf3a0326063df84bfa7e0083d10ff8fdb8a1f842d90a4c7d7', 'from': '0x78a933f3cba15914beb4d5f902a7a6e2fd93879d', 'to': '0x877ae32b0ff7afa778adadabe441f3fe05fabbdf', 'value': 2563.89857368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0254f4438370', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:24:44.000Z'}}, {'blockNum': '0x528600', 'uniqueId': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3:log:26', 'hash': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 480.76923076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6ff01447a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:39:32.000Z'}}, {'blockNum': '0x528600', 'uniqueId': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3:log:28', 'hash': '0xc1827bfffdc2156c72ee45593e69b412bea730df045dc4e8badf1f301b6cf2e3', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 480.76923076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6ff01447a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:39:32.000Z'}}, {'blockNum': '0x528602', 'uniqueId': '0xb675d605d7faebd1db494e9559f50cc615455eb0514a03809e8565bba555dd74:log:0', 'hash': '0xb675d605d7faebd1db494e9559f50cc615455eb0514a03809e8565bba555dd74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9a78ecd77595ea305c6e5a0daed3669b17801d09', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ba7def30000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:40:01.000Z'}}, {'blockNum': '0x528613', 'uniqueId': '0xe0a2adac4113963478d05eb0e0dbd8589abef30dbe2f0e7e130b4cad164ce801:log:28', 'hash': '0xe0a2adac4113963478d05eb0e0dbd8589abef30dbe2f0e7e130b4cad164ce801', 'from': '0x877ae32b0ff7afa778adadabe441f3fe05fabbdf', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 2563.89857368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0254f4438370', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T08:45:05.000Z'}}, {'blockNum': '0x528695', 'uniqueId': '0x924a61d82e412728d3919103aa771eeda43d4ffe0b078582f1c0fdc02892c0a7:log:84', 'hash': '0x924a61d82e412728d3919103aa771eeda43d4ffe0b078582f1c0fdc02892c0a7', 'from': '0x9a78ecd77595ea305c6e5a0daed3669b17801d09', 'to': '0x1828559f010b86640cf3cdd7003e982cbeffa9d6', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T09:17:50.000Z'}}, {'blockNum': '0x528730', 'uniqueId': '0xc7b0fc915c96f3a0f4decf2cfda6d4e38b3040baa0f36e894965c18b9aea5214:log:6', 'hash': '0xc7b0fc915c96f3a0f4decf2cfda6d4e38b3040baa0f36e894965c18b9aea5214', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7e53be9f58d575d3dd00d2bf6638f0373d27904c', 'value': 532.69387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7c070765b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T09:55:46.000Z'}}, {'blockNum': '0x5287a1', 'uniqueId': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda:log:21', 'hash': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 699.698095847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e941a6e7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:21:30.000Z'}}, {'blockNum': '0x5287a1', 'uniqueId': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda:log:23', 'hash': '0xe950e2f397042cc82042e50db5ced6470df8a9b454e3e720d9e7defb8153ffda', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 699.698095847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e941a6e7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:21:30.000Z'}}, {'blockNum': '0x5287af', 'uniqueId': '0x2a0a55f85ee3cc3abd54476ca2313d771a5b546c2b82c46ae6f808e972fce0e1:log:85', 'hash': '0x2a0a55f85ee3cc3abd54476ca2313d771a5b546c2b82c46ae6f808e972fce0e1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 699.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e95eb500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:25:08.000Z'}}, {'blockNum': '0x5287c3', 'uniqueId': '0x284d53a1c39d0c4df8434babc1d5643f53902b894ad9833b02a313fa7738f644:log:26', 'hash': '0x284d53a1c39d0c4df8434babc1d5643f53902b894ad9833b02a313fa7738f644', 'from': '0xbd7041d30ca198e9ccf96646e2d78d835803af94', 'to': '0xaa46d43a2119b1dbf5b97f82a06092947bbef9fe', 'value': 296.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4508c6f500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:30:06.000Z'}}, {'blockNum': '0x5287e0', 'uniqueId': '0x181fac8515a92b19192ac859abe7db60027a12309b7066e5bdf47e2e87042b3d:log:52', 'hash': '0x181fac8515a92b19192ac859abe7db60027a12309b7066e5bdf47e2e87042b3d', 'from': '0xaa46d43a2119b1dbf5b97f82a06092947bbef9fe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 296.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4508c6f500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:39:04.000Z'}}, {'blockNum': '0x528833', 'uniqueId': '0x31e9500b8ff99e1277842111c939dd3b16ef4d63dba753a3480967531bcf89b8:log:0', 'hash': '0x31e9500b8ff99e1277842111c939dd3b16ef4d63dba753a3480967531bcf89b8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9effe2d8016600c8e70d8d5abbb88ffa72dbe981', 'value': 4100.42352629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03bab449a792', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T10:57:10.000Z'}}, {'blockNum': '0x528850', 'uniqueId': '0xbb821ba3341e5928857be8a0ac0fbef69683cf63889ac04f1aa347869d2d8f11:log:13', 'hash': '0xbb821ba3341e5928857be8a0ac0fbef69683cf63889ac04f1aa347869d2d8f11', 'from': '0x9effe2d8016600c8e70d8d5abbb88ffa72dbe981', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 4100.42352629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03bab449a792', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:03:44.000Z'}}, {'blockNum': '0x52887d', 'uniqueId': '0x4918eed66244adc3d7e4a0cb2dc52b934e3525241c37f23fe6ae2f3918fcbbc3:log:8', 'hash': '0x4918eed66244adc3d7e4a0cb2dc52b934e3525241c37f23fe6ae2f3918fcbbc3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 3904.71826095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038d23584ad6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:13:31.000Z'}}, {'blockNum': '0x52889a', 'uniqueId': '0x5dd22ea15bf5710c5a4d395577b2e9aee297549fdf174430275812e04d97eb35:log:32', 'hash': '0x5dd22ea15bf5710c5a4d395577b2e9aee297549fdf174430275812e04d97eb35', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3904.71826095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038d23584ad6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T11:19:13.000Z'}}, {'blockNum': '0x528973', 'uniqueId': '0xb4a984f8531876c11f4d5c3ca851f36394f21e530f0724860ce26cb9d11cdc3f:log:14', 'hash': '0xb4a984f8531876c11f4d5c3ca851f36394f21e530f0724860ce26cb9d11cdc3f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6b09ce711aa0031a11186ee72b0c33ef605dbbd3', 'value': 30.119818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x070347f310', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:09:12.000Z'}}, {'blockNum': '0x5289dc', 'uniqueId': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1:log:126', 'hash': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 390.220050648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5adaed70d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:33:11.000Z'}}, {'blockNum': '0x5289dc', 'uniqueId': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1:log:128', 'hash': '0x5085667d54993d39c5d480e43b97370cda9ea8583675da519a2240871d582aa1', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 390.220050648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5adaed70d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:33:11.000Z'}}, {'blockNum': '0x5289f7', 'uniqueId': '0x2f89bfbe89b5a59da4fa678a23a1f86dcab08aeb851b0549b8902537bb53bc17:log:3', 'hash': '0x2f89bfbe89b5a59da4fa678a23a1f86dcab08aeb851b0549b8902537bb53bc17', 'from': '0x1828559f010b86640cf3cdd7003e982cbeffa9d6', 'to': '0x409fe261895aa4ba51bb9a6c6eb85882395df91b', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:40:34.000Z'}}, {'blockNum': '0x528a3b', 'uniqueId': '0x77b85c000811755f7666628d94987c09751c78a8a25d98bb8fc5cacbd0d3e32a:log:17', 'hash': '0x77b85c000811755f7666628d94987c09751c78a8a25d98bb8fc5cacbd0d3e32a', 'from': '0x409fe261895aa4ba51bb9a6c6eb85882395df91b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30215.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b7b2a068e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T12:59:07.000Z'}}, {'blockNum': '0x528a59', 'uniqueId': '0x414f4e46f3fc152c7a49e9242b1dfff3702c1561b6e3cf56ff6ad5717fc239ec:log:101', 'hash': '0x414f4e46f3fc152c7a49e9242b1dfff3702c1561b6e3cf56ff6ad5717fc239ec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 12365.18856995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b3efeac1b5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:07:26.000Z'}}, {'blockNum': '0x528a62', 'uniqueId': '0x2bded4f5c7be99646482ac3c6ff93788fd67c25f6ff384b1b09f51f89eae8c93:log:30', 'hash': '0x2bded4f5c7be99646482ac3c6ff93788fd67c25f6ff384b1b09f51f89eae8c93', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12365.18856995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b3efeac1b5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:09:12.000Z'}}, {'blockNum': '0x528a72', 'uniqueId': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a:log:65', 'hash': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 479.515825908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fa55ed6f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:15:13.000Z'}}, {'blockNum': '0x528a72', 'uniqueId': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a:log:67', 'hash': '0x2349322da7859f9556787b9e6f8917bc149c4363c8ebbafe62b9bc109b26614a', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 479.515825908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fa55ed6f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:15:13.000Z'}}, {'blockNum': '0x528a98', 'uniqueId': '0x08a9266a803b3c4c426581e3f90215d141deb8fc5be75e4245e7d60181d83010:log:10', 'hash': '0x08a9266a803b3c4c426581e3f90215d141deb8fc5be75e4245e7d60181d83010', 'from': '0xf946001634c5a8f864812b1887a64566d79e1306', 'to': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'value': 1755.269861198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198ae3c8f4e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:23:03.000Z'}}, {'blockNum': '0x528a9e', 'uniqueId': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8:log:92', 'hash': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 495.750096277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x736d022595', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:25:01.000Z'}}, {'blockNum': '0x528a9e', 'uniqueId': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8:log:94', 'hash': '0xa6a0a8e7890a58dae422064739c0d56164968102fdfb8864d1f14bc1ad5d7ed8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 495.750096277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x736d022595', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:25:01.000Z'}}, {'blockNum': '0x528aa9', 'uniqueId': '0x9e79608bd24dbb6453bf80c8290926f199f7b41a23da904e985fc5f1a95b7d28:log:48', 'hash': '0x9e79608bd24dbb6453bf80c8290926f199f7b41a23da904e985fc5f1a95b7d28', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 480.019898209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fc36a5f61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:27:14.000Z'}}, {'blockNum': '0x528ab0', 'uniqueId': '0x68959d5985fb5a373a96b0e752cc3dfc97ba48ae27e19a1a6e49fa611c7f40c1:log:57', 'hash': '0x68959d5985fb5a373a96b0e752cc3dfc97ba48ae27e19a1a6e49fa611c7f40c1', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 480.019898209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6fc36a5f61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:29:06.000Z'}}, {'blockNum': '0x528ab0', 'uniqueId': '0xc275d90f45275f7f1536309d2674714ddc6fe3c45f9503f77825dddfc513628f:log:63', 'hash': '0xc275d90f45275f7f1536309d2674714ddc6fe3c45f9503f77825dddfc513628f', 'from': '0x237cd16ad77ed39e18dd2a958be24ef238750e6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1755.269861198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198ae3c8f4e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:29:06.000Z'}}, {'blockNum': '0x528ac0', 'uniqueId': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c:log:41', 'hash': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 465.745723305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c709bbfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:33:59.000Z'}}, {'blockNum': '0x528ac0', 'uniqueId': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c:log:43', 'hash': '0x9080094101032beee99fcce8003f8c98514000282c104542c0cb5bc756ffbd9c', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 465.745723305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c709bbfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:33:59.000Z'}}, {'blockNum': '0x528adb', 'uniqueId': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6:log:37', 'hash': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 367.822877341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x55a3f3b29d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:40:58.000Z'}}, {'blockNum': '0x528adb', 'uniqueId': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6:log:39', 'hash': '0x204986360a07a0d59c37b7586c6a33ceb25b043c72b066a823524c5b6433d2d6', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 367.822877341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x55a3f3b29d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:40:58.000Z'}}, {'blockNum': '0x528b00', 'uniqueId': '0x6de1f93a8d1e82c2d276e5fffa078b6fc9e1d05c82e485051ec9c11b6532620a:log:0', 'hash': '0x6de1f93a8d1e82c2d276e5fffa078b6fc9e1d05c82e485051ec9c11b6532620a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 1496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015c6dc13e80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:49:08.000Z'}}, {'blockNum': '0x528b1e', 'uniqueId': '0x25f0b473bb9be1e76e0201b367249395bac5b17ea1e35f78012c1d1e9a1f77b2:log:2', 'hash': '0x25f0b473bb9be1e76e0201b367249395bac5b17ea1e35f78012c1d1e9a1f77b2', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1496.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015c6dc13e80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T13:59:02.000Z'}}, {'blockNum': '0x528b29', 'uniqueId': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f:log:74', 'hash': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 363.695653567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x54adf342bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:02:38.000Z'}}, {'blockNum': '0x528b29', 'uniqueId': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f:log:76', 'hash': '0x62b50999f1c948f27b116e2a1b14a60ab8d0ae2dc1a654827bfcbcff951a756f', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xf946001634c5a8f864812b1887a64566d79e1306', 'value': 363.695653567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x54adf342bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:02:38.000Z'}}, {'blockNum': '0x528b3d', 'uniqueId': '0xcc065ad597f97ca3e369c1bfbf78a8e714991de6d6fda56bca7ba03fa0e8c9aa:log:1', 'hash': '0xcc065ad597f97ca3e369c1bfbf78a8e714991de6d6fda56bca7ba03fa0e8c9aa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 16051.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e993c08e100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:07:23.000Z'}}, {'blockNum': '0x528b45', 'uniqueId': '0x57016ba558bc3908165bcff95077301aecf1e7607ae210e6725d1246c20a78b5:log:5', 'hash': '0x57016ba558bc3908165bcff95077301aecf1e7607ae210e6725d1246c20a78b5', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16051.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e993c08e100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:09:06.000Z'}}, {'blockNum': '0x528b6f', 'uniqueId': '0xdc47c490ff46d0e5b0b6ace0ec9742cb89778f5e5fef3c4b864bcf015a7b9d93:log:28', 'hash': '0xdc47c490ff46d0e5b0b6ace0ec9742cb89778f5e5fef3c4b864bcf015a7b9d93', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 15074.4325038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0db5ca31cff8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:21:10.000Z'}}, {'blockNum': '0x528b7d', 'uniqueId': '0x3e91229555b63750959d2688a766846c804e189693519c4af5377457191693b1:log:13', 'hash': '0x3e91229555b63750959d2688a766846c804e189693519c4af5377457191693b1', 'from': '0xfcc69c067347d980282ce56696bf2f055babb8bd', 'to': '0x7a66a95994c988c3daaceb6d52fbe3e0924c71c0', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:24:41.000Z'}}, {'blockNum': '0x528b88', 'uniqueId': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8:log:22', 'hash': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 700.674479468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa32374156c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:27:10.000Z'}}, {'blockNum': '0x528b88', 'uniqueId': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8:log:24', 'hash': '0x4dd1d770a249adf66872100bc1fb9ac7daaf9408a6311bf50b9efaa40b37cbd8', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 700.674479468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa32374156c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:27:10.000Z'}}, {'blockNum': '0x528b8d', 'uniqueId': '0x909e4f4f9a399f006e52781ef1da311f358b6c39be858521e7ff83ebae35be9f:log:40', 'hash': '0x909e4f4f9a399f006e52781ef1da311f358b6c39be858521e7ff83ebae35be9f', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 697.978201999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa282be278f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:28:29.000Z'}}, {'blockNum': '0x528b90', 'uniqueId': '0x64bfc943bae68623ddcd00f1d9477b0a5ebcff6afdb620c97bb75485372644e8:log:54', 'hash': '0x64bfc943bae68623ddcd00f1d9477b0a5ebcff6afdb620c97bb75485372644e8', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15074.4325038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0db5ca31cff8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:29:05.000Z'}}, {'blockNum': '0x528b90', 'uniqueId': '0xdb94d2ba07a5a8b508e44899f7802dcc3d993fd9c6bc11e21ad9a6d84ec5812b:log:55', 'hash': '0xdb94d2ba07a5a8b508e44899f7802dcc3d993fd9c6bc11e21ad9a6d84ec5812b', 'from': '0x7a66a95994c988c3daaceb6d52fbe3e0924c71c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:29:05.000Z'}}, {'blockNum': '0x528bb2', 'uniqueId': '0x040c013a9cc685d00a780aa3b998042eb1a4516aa3bcae52550291c464094b1e:log:104', 'hash': '0x040c013a9cc685d00a780aa3b998042eb1a4516aa3bcae52550291c464094b1e', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x66ec6342f9d91676fcfc189fd769ae05fc6c579d', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:37:58.000Z'}}, {'blockNum': '0x528bb9', 'uniqueId': '0x2adb7c7675a5cbb4a499b188f16c35267e35311afb080023eec03568246770c5:log:19', 'hash': '0x2adb7c7675a5cbb4a499b188f16c35267e35311afb080023eec03568246770c5', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 697.978201999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa282be278f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:39:35.000Z'}}, {'blockNum': '0x528bd7', 'uniqueId': '0x0b0515a9580ad0bcff8436237a27ab4b2879379e4d8ff87a93e21dfb3edf6d70:log:59', 'hash': '0x0b0515a9580ad0bcff8436237a27ab4b2879379e4d8ff87a93e21dfb3edf6d70', 'from': '0x003c6df13f3c95f12e0f3e2c82e3980d9732558b', 'to': '0x53076af5ed9bd6a622f56d644fdfb4d619ac8148', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:45:54.000Z'}}, {'blockNum': '0x528bfe', 'uniqueId': '0x3264af94629855eadc7ba28217889f956a03dfeaee2482a53f2d04f8c43582d2:log:2', 'hash': '0x3264af94629855eadc7ba28217889f956a03dfeaee2482a53f2d04f8c43582d2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'value': 3904.09897038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038cfe6eab0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:57:22.000Z'}}, {'blockNum': '0x528c0a', 'uniqueId': '0xd3d642a7a429c15651e18fad17da8a0a29294e8052cec8d5c1984f4b95b7e3e3:log:16', 'hash': '0xd3d642a7a429c15651e18fad17da8a0a29294e8052cec8d5c1984f4b95b7e3e3', 'from': '0x6a49fa9ad6908ce62a721815fbb3acc147009779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3904.09897038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x038cfe6eab0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T14:59:11.000Z'}}, {'blockNum': '0x528c14', 'uniqueId': '0x7a640a84575bec4b54ad63cfaebddc8aab4f273c090118c419a53680a3832340:log:74', 'hash': '0x7a640a84575bec4b54ad63cfaebddc8aab4f273c090118c419a53680a3832340', 'from': '0xe9a8f8d1609fbb852c057523c66ff58a50e0d2a8', 'to': '0x2cd48733cc05c9cb029ceaf4b11d62a93f881b59', 'value': 52.72022865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c465ed92a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:00:55.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09:log:23', 'hash': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 702.591591286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa395b8e376', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09:log:25', 'hash': '0xfa3aed186add900333328aef089e8d221aeca016ae37f5cf8160aa4cb2c15f09', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 702.591591286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa395b8e376', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c18', 'uniqueId': '0xbd124ec01587afd4f047c801a300231dc666fb57b6d027c48512993d3f70a314:log:89', 'hash': '0xbd124ec01587afd4f047c801a300231dc666fb57b6d027c48512993d3f70a314', 'from': '0x48f9ab8906bf0fb691033ce315c1da800044237c', 'to': '0x363f6b08c2b5ac0a9a020c9d6b8aeddc1bb2b022', 'value': 52.84054609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c4d8abf2a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:02:01.000Z'}}, {'blockNum': '0x528c27', 'uniqueId': '0x0f9abf3f16d50a9cc7985e52901bd7a3c826327e32984a5ee36b4ff900a4d81b:log:29', 'hash': '0x0f9abf3f16d50a9cc7985e52901bd7a3c826327e32984a5ee36b4ff900a4d81b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 684.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9f4d7f7a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:06:33.000Z'}}, {'blockNum': '0x528c55', 'uniqueId': '0xe7c07a8492d341c75f8aa99aaaec9a1bb36a85eaf4a8df65f9384d61bb10b7d8:log:21', 'hash': '0xe7c07a8492d341c75f8aa99aaaec9a1bb36a85eaf4a8df65f9384d61bb10b7d8', 'from': '0x2cd48733cc05c9cb029ceaf4b11d62a93f881b59', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 52.72022865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c465ed92a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:17:49.000Z'}}, {'blockNum': '0x528c55', 'uniqueId': '0x8cd1df55eeb9ee1c8b35619149aa91870b7ce06626850b33669ffc7b5fcc0d60:log:22', 'hash': '0x8cd1df55eeb9ee1c8b35619149aa91870b7ce06626850b33669ffc7b5fcc0d60', 'from': '0x363f6b08c2b5ac0a9a020c9d6b8aeddc1bb2b022', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 52.84054609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0c4d8abf2a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:17:49.000Z'}}, {'blockNum': '0x528c6e', 'uniqueId': '0xb5ab04361bc88357c6928311689e970da412b74089cc765ef81da20fd446756c:log:2', 'hash': '0xb5ab04361bc88357c6928311689e970da412b74089cc765ef81da20fd446756c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x441ebc643caf97cdcfa0ad2610f69275e255a4c5', 'value': 11.34861261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02a46e1602', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:22:51.000Z'}}, {'blockNum': '0x528c8c', 'uniqueId': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9:log:99', 'hash': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 556.931261037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81abb0a26d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:28:15.000Z'}}, {'blockNum': '0x528c8c', 'uniqueId': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9:log:101', 'hash': '0xbaf6d10817fd402a92634bd392a56a6772d24202c798305d1b53dffc4a690ae9', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 556.931261037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81abb0a26d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:28:15.000Z'}}, {'blockNum': '0x528ca4', 'uniqueId': '0x82f93273d9b9943c91c0b14165a559a7a8a77cbe1ea9900abb93553468c50f9b:log:87', 'hash': '0x82f93273d9b9943c91c0b14165a559a7a8a77cbe1ea9900abb93553468c50f9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 556.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81a9d3a100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:32:23.000Z'}}, {'blockNum': '0x528cd7', 'uniqueId': '0x14de7f6c0fcc1c6c3438d44abe995a7891266b87c7aa2b274f2b2bfdfafef6ca:log:20', 'hash': '0x14de7f6c0fcc1c6c3438d44abe995a7891266b87c7aa2b274f2b2bfdfafef6ca', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xaf9a2b5df6560588e8b1f11638e3f1e00a4a281a', 'value': 276.14047986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x404b415574', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T15:45:22.000Z'}}, {'blockNum': '0x528d1f', 'uniqueId': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444:log:14', 'hash': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444', 'from': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 699.703512666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e9944e5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:06:56.000Z'}}, {'blockNum': '0x528d1f', 'uniqueId': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444:log:16', 'hash': '0xe9ee9091d158f472f8da74fa6920ee286b65df1fecfb72ab97fad9441eec8444', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'value': 699.703512666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e9944e5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:06:56.000Z'}}, {'blockNum': '0x528d35', 'uniqueId': '0xd1bf99e13a8b06a352e189afa9c3a7121a7d15368b6f8114c44f8127444469fd:log:3', 'hash': '0xd1bf99e13a8b06a352e189afa9c3a7121a7d15368b6f8114c44f8127444469fd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfe4513a618882974ccda9b109f9b8af514dcae86', 'value': 699.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e95eb500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:11:42.000Z'}}, {'blockNum': '0x528d49', 'uniqueId': '0x6906a4d5109e0219d64c6341994fab7c54e3520cee5dc38545cb98fe93b5d2f1:log:7', 'hash': '0x6906a4d5109e0219d64c6341994fab7c54e3520cee5dc38545cb98fe93b5d2f1', 'from': '0xf0453fd8b04f0ce7a47770a962e9e1094f2dfd5b', 'to': '0x47be17067acaee8e70c04647e451c9b8ed251b03', 'value': 686.98709261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9ff39f2282', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:17:02.000Z'}}, {'blockNum': '0x528d7b', 'uniqueId': '0xce77c901edde52710ba2678505064df6a8c0df8b8372d945d6cbea64c8943f6c:log:130', 'hash': '0xce77c901edde52710ba2678505064df6a8c0df8b8372d945d6cbea64c8943f6c', 'from': '0x47be17067acaee8e70c04647e451c9b8ed251b03', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 686.98709261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9ff39f2282', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:28:12.000Z'}}, {'blockNum': '0x528daf', 'uniqueId': '0xa71cca8a3e7b2d14220021eb464e3e394647f6e2ab91cf3820bd708883ad42f7:log:86', 'hash': '0xa71cca8a3e7b2d14220021eb464e3e394647f6e2ab91cf3820bd708883ad42f7', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x678e56d45b6d7504fb67ae7c4093e8e366bb70f5', 'value': 19.08217521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x047162e2ea', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T16:41:55.000Z'}}, {'blockNum': '0x528ecb', 'uniqueId': '0x46fa3fa4fee325c6071caf3718d0b9e7e58809afb631981498474c11cbbbbe84:log:6', 'hash': '0x46fa3fa4fee325c6071caf3718d0b9e7e58809afb631981498474c11cbbbbe84', 'from': '0xac0c019e626cd28ecbffb160d184c47b2ffe82eb', 'to': '0xd0079694883541f7be13a049f48ee6b4ef43fcd2', 'value': 57.891487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0d7a99fd18', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:41:15.000Z'}}, {'blockNum': '0x528edd', 'uniqueId': '0x7116d0cd0c01e31ed8aade41b74e7bdf7e9bae7a062fb3032a830ac6497a8f37:log:15', 'hash': '0x7116d0cd0c01e31ed8aade41b74e7bdf7e9bae7a062fb3032a830ac6497a8f37', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x483350219364edfb27433641e1876e0907f91d6d', 'value': 25.46879475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05ee0ef77e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:44:25.000Z'}}, {'blockNum': '0x528ede', 'uniqueId': '0x4b13d4e3e2551d0d92be9c1f9743a3f8f0f40a7c9028ac2eade75030fbd78719:log:0', 'hash': '0x4b13d4e3e2551d0d92be9c1f9743a3f8f0f40a7c9028ac2eade75030fbd78719', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbf81c4babc8a4116c742d25be2657f986767080c', 'value': 290.18507256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x439060cfb0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T17:44:28.000Z'}}, {'blockNum': '0x528fa5', 'uniqueId': '0xa3a213b0a7709695eaa63f886e7173452dfd564d9d0be913a720cf7853d171de:log:65', 'hash': '0xa3a213b0a7709695eaa63f886e7173452dfd564d9d0be913a720cf7853d171de', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4c3e7832d861efb866d10405ab531f04aba40ebb', 'value': 1124.342868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0105c80ea820', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T18:32:35.000Z'}}, {'blockNum': '0x52908d', 'uniqueId': '0xc12b66ad27eb3677005a398eb795d22c0ecbfb8c479e10b2f3110a9bd2ef9bae:log:27', 'hash': '0xc12b66ad27eb3677005a398eb795d22c0ecbfb8c479e10b2f3110a9bd2ef9bae', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xcb343d2dc05b9de33f89100f6dfae41ab77e8154', 'value': 104.83783783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1868d27406', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T19:26:34.000Z'}}, {'blockNum': '0x529098', 'uniqueId': '0x84298351ae5d2cddfa447454cac6982ac499baf913fcf803fedd6c7b20207284:log:38', 'hash': '0x84298351ae5d2cddfa447454cac6982ac499baf913fcf803fedd6c7b20207284', 'from': '0xcb343d2dc05b9de33f89100f6dfae41ab77e8154', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 104.83783783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1868d27406', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T19:29:03.000Z'}}, {'blockNum': '0x5291a0', 'uniqueId': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289:log:50', 'hash': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289', 'from': '0x4d0e06c099dcb0ee61d0f937844376b9ab1edcc7', 'to': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'value': 5.029621345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012bc9ee61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:35:22.000Z'}}, {'blockNum': '0x5291a0', 'uniqueId': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289:log:52', 'hash': '0x9c5a6bd3d0f91335ea62942c112d697a244623d8bb6462948cd682fced479289', 'from': '0xf87a7ec94884f44d9de33d36b73f42c7c0dd38b1', 'to': '0x8dc1cf14273acc17fe3ba8f5bdba16764167ba83', 'value': 5.029621345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012bc9ee61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:35:22.000Z'}}, {'blockNum': '0x52920b', 'uniqueId': '0xd7ca1e7e5af891f1ebf0b602720c6538b59c3d94aabc1ba6df349c95f4743f2f:log:12', 'hash': '0xd7ca1e7e5af891f1ebf0b602720c6538b59c3d94aabc1ba6df349c95f4743f2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 3158.45372138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02df62831924', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T20:59:14.000Z'}}, {'blockNum': '0x529230', 'uniqueId': '0x8cbf3ed86b6871960d7eae2ecd2659d7e50cd8d8ee02117238b581aa9b3beb83:log:6', 'hash': '0x8cbf3ed86b6871960d7eae2ecd2659d7e50cd8d8ee02117238b581aa9b3beb83', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3158.45372138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02df62831924', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:09:28.000Z'}}, {'blockNum': '0x5292bd', 'uniqueId': '0x8fa75d0eb8c6aa7b8d12702bf8cd52f79944d39df7f0911518b2c00618930ac5:log:9', 'hash': '0x8fa75d0eb8c6aa7b8d12702bf8cd52f79944d39df7f0911518b2c00618930ac5', 'from': '0x615b4d528b866fc4d3d9e6d82867b72a25c31a15', 'to': '0x9f708f66eb965d48d8596474406bf1d94ea61fe3', 'value': 199.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90553980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:41:28.000Z'}}, {'blockNum': '0x5292db', 'uniqueId': '0x8b4d66260d07e37fae1710d048689ae229a2e20dc3d5e62a2dcf1abb1a7562a0:log:17', 'hash': '0x8b4d66260d07e37fae1710d048689ae229a2e20dc3d5e62a2dcf1abb1a7562a0', 'from': '0x9f708f66eb965d48d8596474406bf1d94ea61fe3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 199.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90553980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T21:47:46.000Z'}}, {'blockNum': '0x529379', 'uniqueId': '0xc501cdc33e1c7e68a109c3e6580169209224d4ebf5cae56a9c6c3aeccf4c76f0:log:0', 'hash': '0xc501cdc33e1c7e68a109c3e6580169209224d4ebf5cae56a9c6c3aeccf4c76f0', 'from': '0x95a7414d0666a083039dc56695189dd1ad4d62a1', 'to': '0x6409f54b9c53825029ae57908c47f310ec6aaaf8', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T22:21:08.000Z'}}, {'blockNum': '0x529401', 'uniqueId': '0x52e0c934d72a2d1284324b2c41eeecc5309ec047ced804f61ffa1e3dee7e917c:log:2', 'hash': '0x52e0c934d72a2d1284324b2c41eeecc5309ec047ced804f61ffa1e3dee7e917c', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x63c3305e1b88ec935750b67bbf8b385a4df5439e', 'value': 182.48486805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a7cf21bd2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T22:56:15.000Z'}}, {'blockNum': '0x529417', 'uniqueId': '0xa44b725480faf4756046ce79b2f48bf52f4e615d28181f5feb9676b9b3019f3a:log:1', 'hash': '0xa44b725480faf4756046ce79b2f48bf52f4e615d28181f5feb9676b9b3019f3a', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x3c737c87ce731d935eb1f52e9a01dc325c9fe9c1', 'value': 1489.74503725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015adbb947c2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-09T23:01:24.000Z'}}, {'blockNum': '0x529513', 'uniqueId': '0x8eed54d249912b3cb447aa66a93391636065cdf695a6996e1cd4717d3d0bb592:log:4', 'hash': '0x8eed54d249912b3cb447aa66a93391636065cdf695a6996e1cd4717d3d0bb592', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x008758bef331f49bd327ef2a499ca749740eb16c', 'value': 16097.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ea3e5ed6b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:00:25.000Z'}}, {'blockNum': '0x52952d', 'uniqueId': '0x7b86ca5374c1890bc7b381839e2e78afeede4d0ed575689803e7b3f41a722ff0:log:25', 'hash': '0x7b86ca5374c1890bc7b381839e2e78afeede4d0ed575689803e7b3f41a722ff0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 66385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3c607657ea00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:07:23.000Z'}}, {'blockNum': '0x529569', 'uniqueId': '0x3c62930baa3814e5a187a981f7eb049a85ff87473e28827c6f3465b31adbec87:log:10', 'hash': '0x3c62930baa3814e5a187a981f7eb049a85ff87473e28827c6f3465b31adbec87', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x289c88338243ac66306c2a46e57ba24794202426', 'value': 44.06800006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0a42a8513c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:19:11.000Z'}}, {'blockNum': '0x529569', 'uniqueId': '0x772117e18edee5e7564fd2d1ec5f1b6a5d6bae161816fea7dc9bfe2cb3833721:log:91', 'hash': '0x772117e18edee5e7564fd2d1ec5f1b6a5d6bae161816fea7dc9bfe2cb3833721', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x68d26a9153031cfb4486838a2d8f1562aecbb948', 'value': 7.67322446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c95c1d0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:19:11.000Z'}}, {'blockNum': '0x52958b', 'uniqueId': '0x84b2cbe61234bf44135d975fad010671d3fa7e7f10317096620479cfd84208f2:log:3', 'hash': '0x84b2cbe61234bf44135d975fad010671d3fa7e7f10317096620479cfd84208f2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'value': 8209.06437431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0777525db026', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:26:17.000Z'}}, {'blockNum': '0x529590', 'uniqueId': '0xf0c83e456da41a82bcf2ae9562d6bddec3e9ce3ec05769dbaa17be356b98c7a9:log:2', 'hash': '0xf0c83e456da41a82bcf2ae9562d6bddec3e9ce3ec05769dbaa17be356b98c7a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 55477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3274bee0d200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:27:53.000Z'}}, {'blockNum': '0x5295b2', 'uniqueId': '0x8489f5bd4993b52d89b956b123e86c05e081958bb435fee1cd088c7be85d9032:log:4', 'hash': '0x8489f5bd4993b52d89b956b123e86c05e081958bb435fee1cd088c7be85d9032', 'from': '0x8bbb73bcb5d553b5a556358d27625323fd781d37', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 8209.06437431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0777525db026', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:35:35.000Z'}}, {'blockNum': '0x5295ce', 'uniqueId': '0xe35c2de21834b3806ebd7def512a62008b41180ebd78cb4109f255f42e0bc641:log:1', 'hash': '0xe35c2de21834b3806ebd7def512a62008b41180ebd78cb4109f255f42e0bc641', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'value': 4013.92510858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a690948b64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:41:44.000Z'}}, {'blockNum': '0x5295ed', 'uniqueId': '0x05aa7a5165f2cb4fddfd0d504f255556699437bbd94a4df4bdf5a6bf893feba4:log:72', 'hash': '0x05aa7a5165f2cb4fddfd0d504f255556699437bbd94a4df4bdf5a6bf893feba4', 'from': '0x7095ec0fda0a28620e67730195be222c12a147f4', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4013.92510858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a690948b64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2018-04-10T00:50:59.000Z'}}]}}
Number of returned transfers:  145
Answer is complete
 
symbol             RDN
group              MPG
date        2018-10-28
hour             17:00
exchange       binance
Name: 485, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2018-10-28 17:00:00 2018-10-28 05:00:00 2018-10-29 05:00:00
Unix timestamps:  1540699200.0 1540785600.0
Hex Block Numbers:  0x64a9bb 0x64c195
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x64a9bc', 'uniqueId': '0xeb2db39b252224778c851642e1c5e35ecc7ac15941e49fa281381d9279eb9e75:log:1', 'hash': '0xeb2db39b252224778c851642e1c5e35ecc7ac15941e49fa281381d9279eb9e75', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 35079.82189372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x076dae531779ef757000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:00:28.000Z'}}, {'blockNum': '0x64a9ee', 'uniqueId': '0xe087ee3fecb7d3522d6092de1acc793f5d9713ba86c6f706e45de14a4cc21a78:log:6', 'hash': '0xe087ee3fecb7d3522d6092de1acc793f5d9713ba86c6f706e45de14a4cc21a78', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'value': 3997.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8b89ebebf70a40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:11:03.000Z'}}, {'blockNum': '0x64a9f6', 'uniqueId': '0x8055315e2cbdc5e7239862d3c4dfe75b1642ae08a7fe7c9a994f43d9eee7b9e6:log:13', 'hash': '0x8055315e2cbdc5e7239862d3c4dfe75b1642ae08a7fe7c9a994f43d9eee7b9e6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 2103.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x720c17099702cc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:13:26.000Z'}}, {'blockNum': '0x64a9fb', 'uniqueId': '0x477ce583e39af196059032570f866f7c8dc26141e338b71284a1bfd755638489:log:14', 'hash': '0x477ce583e39af196059032570f866f7c8dc26141e338b71284a1bfd755638489', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 34299.10164682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07435ba7975a99b1e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:15:28.000Z'}}, {'blockNum': '0x64aa1d', 'uniqueId': '0x5bffe26bece2cfdf424fc8a8f698568abb14278de49f358c6ea3e6d9013a4011:log:101', 'hash': '0x5bffe26bece2cfdf424fc8a8f698568abb14278de49f358c6ea3e6d9013a4011', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xf6cc99895f729785dc75decf22352898b73e354b', 'value': 9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e0c0013070adc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:23:55.000Z'}}, {'blockNum': '0x64aa34', 'uniqueId': '0xcfa0a4d8712ca3f1a0529830a4989ba9731786b9c6f3c019b4acd3cdea80953e:log:104', 'hash': '0xcfa0a4d8712ca3f1a0529830a4989ba9731786b9c6f3c019b4acd3cdea80953e', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 34299.10164682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07435ba7975a99b1e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:29:50.000Z'}}, {'blockNum': '0x64aa34', 'uniqueId': '0x63701a7c832d13914f8a4bac2aee2ec596bce03f10590e2d506245bdfa5fd4d6:log:105', 'hash': '0x63701a7c832d13914f8a4bac2aee2ec596bce03f10590e2d506245bdfa5fd4d6', 'from': '0xf6cc99895f729785dc75decf22352898b73e354b', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e0c0013070adc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:29:50.000Z'}}, {'blockNum': '0x64aa34', 'uniqueId': '0x3d6d78a87df17d509a1166c550e3eabdbefdef15ad43c63b256a56071b3432f1:log:106', 'hash': '0x3d6d78a87df17d509a1166c550e3eabdbefdef15ad43c63b256a56071b3432f1', 'from': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 2103.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x720c17099702cc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:29:50.000Z'}}, {'blockNum': '0x64aa3a', 'uniqueId': '0x324e5b12588ab722baeeb3bd99a1de58ae34e350ba4bde7b7bbfe75a104c8f3c:log:57', 'hash': '0x324e5b12588ab722baeeb3bd99a1de58ae34e350ba4bde7b7bbfe75a104c8f3c', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xf241cac6e0db55e16e94869a3188a11083a9b50b', 'value': 1846.2115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x641554d99a2d16c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:31:22.000Z'}}, {'blockNum': '0x64aa3a', 'uniqueId': '0xedcc46a3ba0c63acb095236f915111a4e6b2da1cd5758e0e4139dc79bf84ad4a:log:61', 'hash': '0xedcc46a3ba0c63acb095236f915111a4e6b2da1cd5758e0e4139dc79bf84ad4a', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x3c393088336d83acc8718b2dd1725f7f279ccda1', 'value': 409.01335415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x162c33568dc5cafc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:31:22.000Z'}}, {'blockNum': '0x64aa5d', 'uniqueId': '0x2013c8f041b721f1e904921677a5442533211f3e5f01c9423c8c605e6ce1e818:log:6', 'hash': '0x2013c8f041b721f1e904921677a5442533211f3e5f01c9423c8c605e6ce1e818', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 31841.09762061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x06be1bff109452b29400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:38:40.000Z'}}, {'blockNum': '0x64aa6d', 'uniqueId': '0x2f5797a7795dccb8dd05fcf9fb2479f7ffda04335516c41c627208a6807fbc5a:log:14', 'hash': '0x2f5797a7795dccb8dd05fcf9fb2479f7ffda04335516c41c627208a6807fbc5a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'value': 3997.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8b89ebebf70a40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:43:49.000Z'}}, {'blockNum': '0x64aa76', 'uniqueId': '0x2c79239cfff3cad49ac750bfa64713ef64a525a59e556cbfa9d32b55ac2d756f:log:6', 'hash': '0x2c79239cfff3cad49ac750bfa64713ef64a525a59e556cbfa9d32b55ac2d756f', 'from': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 7995.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1713d7d7ee1480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:45:23.000Z'}}, {'blockNum': '0x64aa76', 'uniqueId': '0xd13b2335753140406f0267e8cea4b23e95b45d02fd1334e6e9180a69ce1bf00a:log:10', 'hash': '0xd13b2335753140406f0267e8cea4b23e95b45d02fd1334e6e9180a69ce1bf00a', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 31841.09762061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x06be1bff109452b29400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:45:23.000Z'}}, {'blockNum': '0x64aa86', 'uniqueId': '0xf8c1274280688289cbfeb5d533931c9125eb2035eac43595d16ebcd3a45798f9:log:4', 'hash': '0xf8c1274280688289cbfeb5d533931c9125eb2035eac43595d16ebcd3a45798f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 203799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b27f747069ef9fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:48:17.000Z'}}, {'blockNum': '0x64aab6', 'uniqueId': '0xca27313425af06396b6dd46351922d9814ab71835fa79cd24d3052dd6ea0659e:log:4', 'hash': '0xca27313425af06396b6dd46351922d9814ab71835fa79cd24d3052dd6ea0659e', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 19084.84229279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040a97644576e3829c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T04:58:02.000Z'}}, {'blockNum': '0x64aaee', 'uniqueId': '0x3b59952b3481439d8845909a7d96d0652f319db12b2a23ce5e8db15c7da1ec12:log:4', 'hash': '0x3b59952b3481439d8845909a7d96d0652f319db12b2a23ce5e8db15c7da1ec12', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 610.0115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21119c33454332c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:12:15.000Z'}}, {'blockNum': '0x64aaf1', 'uniqueId': '0xa010af01d3a0e1a3efeff9b9a33d5f97bd105be919918ba265ed195824dca63f:log:6', 'hash': '0xa010af01d3a0e1a3efeff9b9a33d5f97bd105be919918ba265ed195824dca63f', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 610.0115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21119c33454332c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:12:50.000Z'}}, {'blockNum': '0x64aaf6', 'uniqueId': '0x4e6bf298ca105c3a07ba08a633328e159e554ac3476c17bf7752b5839c8ae713:log:8', 'hash': '0x4e6bf298ca105c3a07ba08a633328e159e554ac3476c17bf7752b5839c8ae713', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19084.84229279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040a97644576e3829c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:13:47.000Z'}}, {'blockNum': '0x64ab30', 'uniqueId': '0x962bf042c32437812110723a404808179d9c092c5f8f42eb4f861e3275f659b8:log:83', 'hash': '0x962bf042c32437812110723a404808179d9c092c5f8f42eb4f861e3275f659b8', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'value': 610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2111735814dc480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:27:04.000Z'}}, {'blockNum': '0x64ab33', 'uniqueId': '0x6881895f26d3485563644e1c8f6b111e8475136c8874e9893e3e823933f0d402:log:49', 'hash': '0x6881895f26d3485563644e1c8f6b111e8475136c8874e9893e3e823933f0d402', 'from': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2111735814dc480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:27:48.000Z'}}, {'blockNum': '0x64ab71', 'uniqueId': '0xaecba45aba97f159a5702b9084b5f4798749b2e32dc3460d63eb84f69e288fcc:log:145', 'hash': '0xaecba45aba97f159a5702b9084b5f4798749b2e32dc3460d63eb84f69e288fcc', 'from': '0x271244831b4017c9955ed638f5e4791d2c0ca06c', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6930.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0177b98f3c849ae20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:40:47.000Z'}}, {'blockNum': '0x64ab93', 'uniqueId': '0x176c9fd401c36c0b273820daa50ea0551902e6633db17c3ffb29b3b13a20ded4:log:0', 'hash': '0x176c9fd401c36c0b273820daa50ea0551902e6633db17c3ffb29b3b13a20ded4', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 34703.94533217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07594dfd4a39d8756400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:50:30.000Z'}}, {'blockNum': '0x64ab93', 'uniqueId': '0xcf66990cd86b3fc2057e41ec4d83f412cb0571b275fb03d610d1ab68ce8f08f0:log:87', 'hash': '0xcf66990cd86b3fc2057e41ec4d83f412cb0571b275fb03d610d1ab68ce8f08f0', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T05:50:30.000Z'}}, {'blockNum': '0x64abbd', 'uniqueId': '0xd88c589bcac3a8f9466c4f6577fd681c2b4b30a112fc376fccf0d89732844751:log:37', 'hash': '0xd88c589bcac3a8f9466c4f6577fd681c2b4b30a112fc376fccf0d89732844751', 'from': '0xedb369f898a433b628bb36c748e2e635e2bb2acb', 'to': '0xbefaf19ef3da9262af2f313256f5500308b31bee', 'value': 108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05dacd13ca9e300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T06:02:30.000Z'}}, {'blockNum': '0x64abc4', 'uniqueId': '0x6299829e7a035f1f0902f83f16c7c571efd489035e1802baa53310453e2f6743:log:20', 'hash': '0x6299829e7a035f1f0902f83f16c7c571efd489035e1802baa53310453e2f6743', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34703.94533217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07594dfd4a39d8756400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T06:04:30.000Z'}}, {'blockNum': '0x64abc4', 'uniqueId': '0x739dd19b1b21e508d4c6df35f9345466184a2dc341f99323a88ff2f10979e340:log:22', 'hash': '0x739dd19b1b21e508d4c6df35f9345466184a2dc341f99323a88ff2f10979e340', 'from': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T06:04:30.000Z'}}, {'blockNum': '0x64abf1', 'uniqueId': '0x4653a0eb8483040e029ae8182fc8eb98011f65126bd3f72892844fdab901081d:log:12', 'hash': '0x4653a0eb8483040e029ae8182fc8eb98011f65126bd3f72892844fdab901081d', 'from': '0xbefaf19ef3da9262af2f313256f5500308b31bee', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef644f9b077d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T06:14:30.000Z'}}, {'blockNum': '0x64b074', 'uniqueId': '0xc6e876ddd01cfe808fdfa5e0b7b762e31f06e2e801e039dc98f5dcb9d36e9301:log:0', 'hash': '0xc6e876ddd01cfe808fdfa5e0b7b762e31f06e2e801e039dc98f5dcb9d36e9301', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 34685.14440558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07584912fb1a9b4ff800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T10:45:09.000Z'}}, {'blockNum': '0x64b0a3', 'uniqueId': '0x355e80dcaa45781d1ebe1e11d8b098cf8693aef19587a67899385fe595eed05f:log:13', 'hash': '0x355e80dcaa45781d1ebe1e11d8b098cf8693aef19587a67899385fe595eed05f', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34685.14440558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07584912fb1a9b4ff800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T10:54:16.000Z'}}, {'blockNum': '0x64b184', 'uniqueId': '0x1b1b538b513b2b69a536b8a5d0d022a9a07cc0be28d4561b5cc909eb05c76bd7:log:0', 'hash': '0x1b1b538b513b2b69a536b8a5d0d022a9a07cc0be28d4561b5cc909eb05c76bd7', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27577.8233762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05d6ff2e571560c6d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T11:42:12.000Z'}}, {'blockNum': '0x64b1b3', 'uniqueId': '0xf76981fedf94d0a23221ccffbad8f3dda8e50a56219a475c5b466396c63988f0:log:4', 'hash': '0xf76981fedf94d0a23221ccffbad8f3dda8e50a56219a475c5b466396c63988f0', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27577.8233762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05d6ff2e571560c6d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T11:54:06.000Z'}}, {'blockNum': '0x64b1fa', 'uniqueId': '0x311731c7511f9a46a19d2d071a8cfe5f45e613caea59753f1a59c2f83844ecc0:log:72', 'hash': '0x311731c7511f9a46a19d2d071a8cfe5f45e613caea59753f1a59c2f83844ecc0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe24ee0e64091b9283bf0706643f2977901c344f6', 'value': 314.4391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x110bb8177af187c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T12:11:30.000Z'}}, {'blockNum': '0x64b236', 'uniqueId': '0x2f6522f45434187fd4d351483f0c8ed97aed3cae03e1fc9edb381fde78bec333:log:23', 'hash': '0x2f6522f45434187fd4d351483f0c8ed97aed3cae03e1fc9edb381fde78bec333', 'from': '0xe24ee0e64091b9283bf0706643f2977901c344f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 314.4391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x110bb8177af187c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T12:24:17.000Z'}}, {'blockNum': '0x64b2f8', 'uniqueId': '0x063f794563995087145a4f7eb40fe347dbf5ef3ee3fb4077381b099a322d06de:log:10', 'hash': '0x063f794563995087145a4f7eb40fe347dbf5ef3ee3fb4077381b099a322d06de', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7ee13b84900a0f0706fa639da8a14daf79ae12d1', 'value': 297.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1020a451c706b60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:07:51.000Z'}}, {'blockNum': '0x64b308', 'uniqueId': '0xa9c2cd64e75814a3074c6a83e03bd405589983ee7d7a061cbad8d05be92fe5f8:log:42', 'hash': '0xa9c2cd64e75814a3074c6a83e03bd405589983ee7d7a061cbad8d05be92fe5f8', 'from': '0x885ee38f4b9981d1d3ab23312e687820e18e0b9f', 'to': '0xbd8aa3c1f4d35eb7725498fd0753eae57806a84f', 'value': 2860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9b0a791f1211300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:11:51.000Z'}}, {'blockNum': '0x64b320', 'uniqueId': '0x5251e3a42245a24a0b714b3ce202d7e8e9b5b801b66a1955459f67be6559fdc2:log:1', 'hash': '0x5251e3a42245a24a0b714b3ce202d7e8e9b5b801b66a1955459f67be6559fdc2', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x02b54b6132d56a99b8eace746190df437012d9d2', 'value': 1456.4106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ef3c1dc4e51868000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:21:19.000Z'}}, {'blockNum': '0x64b329', 'uniqueId': '0xcba19f8e8e4104f1ab10dcf61181af49e3abbae1321c37edf57c99b2afacda9d:log:46', 'hash': '0xcba19f8e8e4104f1ab10dcf61181af49e3abbae1321c37edf57c99b2afacda9d', 'from': '0xbd8aa3c1f4d35eb7725498fd0753eae57806a84f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9b0a791f1211300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:24:34.000Z'}}, {'blockNum': '0x64b341', 'uniqueId': '0xd461241df9040f8a12323177f5730ee389a672cbf735230a0edd357077a6745c:log:2', 'hash': '0xd461241df9040f8a12323177f5730ee389a672cbf735230a0edd357077a6745c', 'from': '0x02b54b6132d56a99b8eace746190df437012d9d2', 'to': '0xa03ca3d0a0a4205067feef0c0e1b93077421e4ea', 'value': 1456.4106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ef3c1dc4e51868000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:28:55.000Z'}}, {'blockNum': '0x64b360', 'uniqueId': '0xb21ad477a329e3ddb32ba38002d6d4006d17c97d472d8088ba1676f46e9c3055:log:16', 'hash': '0xb21ad477a329e3ddb32ba38002d6d4006d17c97d472d8088ba1676f46e9c3055', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x44f771cbd868ff3f6e3a74f6844eb171276e465b', 'value': 1560.80000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x549c73828949bbe400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:37:09.000Z'}}, {'blockNum': '0x64b37a', 'uniqueId': '0x57fbba2a4108b0defdd09ab1304b6776c3aa82bf5178b3611e65399b24208d72:log:90', 'hash': '0x57fbba2a4108b0defdd09ab1304b6776c3aa82bf5178b3611e65399b24208d72', 'from': '0xa03ca3d0a0a4205067feef0c0e1b93077421e4ea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1561.35953335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x54a4375f24fc6bfc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T13:43:59.000Z'}}, {'blockNum': '0x64b3d4', 'uniqueId': '0xcc6055149fbf86e22d5a8aab8c9968e6d4387eb1670577736957defb4ce33c66:log:5', 'hash': '0xcc6055149fbf86e22d5a8aab8c9968e6d4387eb1670577736957defb4ce33c66', 'from': '0xa532168d0a0d537bd5f3aa925b829754f906267f', 'to': '0x31101cab87112fee56bc38084d85c0c4eaa629fd', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T14:04:23.000Z'}}, {'blockNum': '0x64b4c5', 'uniqueId': '0xd662891a84f478710bb7fa1a5e6669f854296914ed29d94547124f005e729c59:log:32', 'hash': '0xd662891a84f478710bb7fa1a5e6669f854296914ed29d94547124f005e729c59', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45e2a34714195795aa0d3cc0b3f28dd3a75b84a', 'value': 6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017b6aa309b56efc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:02:38.000Z'}}, {'blockNum': '0x64b50a', 'uniqueId': '0x558bd4b6ff16479354241b52187c0887f4f5b9d55da818c0f283f2d51144074a:log:15', 'hash': '0x558bd4b6ff16479354241b52187c0887f4f5b9d55da818c0f283f2d51144074a', 'from': '0xb45e2a34714195795aa0d3cc0b3f28dd3a75b84a', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017b6aa309b56efc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:17:06.000Z'}}, {'blockNum': '0x64b545', 'uniqueId': '0x92f1d4bb844aac0149268a7d3b078f593317b3cc2a214080b209ce23c514e911:log:0', 'hash': '0x92f1d4bb844aac0149268a7d3b078f593317b3cc2a214080b209ce23c514e911', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 21452.55544496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048af2032cae5cc4c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:31:20.000Z'}}, {'blockNum': '0x64b550', 'uniqueId': '0xce91aefd9068506ee27b629d1ab57f410649f6fa14f0c90ce29e40e8aa99fb01:log:135', 'hash': '0xce91aefd9068506ee27b629d1ab57f410649f6fa14f0c90ce29e40e8aa99fb01', 'from': '0x44f771cbd868ff3f6e3a74f6844eb171276e465b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1560.80000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x549c73828949bbe400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:35:11.000Z'}}, {'blockNum': '0x64b558', 'uniqueId': '0x89facd86549d2bf0c5c3484550341e2d28a55b01882c73150daa4fb0efa205c9:log:51', 'hash': '0x89facd86549d2bf0c5c3484550341e2d28a55b01882c73150daa4fb0efa205c9', 'from': '0x31101cab87112fee56bc38084d85c0c4eaa629fd', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:37:46.000Z'}}, {'blockNum': '0x64b579', 'uniqueId': '0x7ac0d04556d05c6f18ed27c804ed1f4235d6e19a41222ec0ba728197a0f0b873:log:9', 'hash': '0x7ac0d04556d05c6f18ed27c804ed1f4235d6e19a41222ec0ba728197a0f0b873', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21452.55544496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048af2032cae5cc4c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T15:44:07.000Z'}}, {'blockNum': '0x64b5c1', 'uniqueId': '0x3df54d2349b4e805c4e1836b254600332ec1b9214274775d3a30908100142a38:log:40', 'hash': '0x3df54d2349b4e805c4e1836b254600332ec1b9214274775d3a30908100142a38', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf723a33e80b4d4a9d95cb72de6a268bd8a48558c', 'value': 245.828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d538c7f8c24ba0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T16:01:51.000Z'}}, {'blockNum': '0x64b5cb', 'uniqueId': '0x5b67c4e0e185e45da4b0fbc71235859af0552592410205cb7014354d686d6415:log:75', 'hash': '0x5b67c4e0e185e45da4b0fbc71235859af0552592410205cb7014354d686d6415', 'from': '0x48aaee674e40fa434dd6482421c1aef278fb2fae', 'to': '0x0a9ff31ecdaf489e5f64311599b2f22af4c66b00', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T16:05:26.000Z'}}, {'blockNum': '0x64b6b3', 'uniqueId': '0x49b8e34f27c3364b5bfafc00a868f4f3b6070ef3965448b087bd2e85a7612b97:log:59', 'hash': '0x49b8e34f27c3364b5bfafc00a868f4f3b6070ef3965448b087bd2e85a7612b97', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 379.18894387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148e4dbf6baee26c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:01:18.000Z'}}, {'blockNum': '0x64b6b5', 'uniqueId': '0x3a6339a77e735efb3dd8d41f0d7a998f2c392096874f1ed6bea1753237d3374d:log:82', 'hash': '0x3a6339a77e735efb3dd8d41f0d7a998f2c392096874f1ed6bea1753237d3374d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:02:00.000Z'}}, {'blockNum': '0x64b6b7', 'uniqueId': '0x56c3278f936a36c15a1a9a1dad373e18355019f2764b19ecbac890007b67e73d:log:0', 'hash': '0x56c3278f936a36c15a1a9a1dad373e18355019f2764b19ecbac890007b67e73d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 5734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0136d73c3bf749d80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:02:35.000Z'}}, {'blockNum': '0x64b6bd', 'uniqueId': '0xfd556c3b2eee8dd487742dc60064ab86816a5526dce609c867b165788c2c696c:log:1', 'hash': '0xfd556c3b2eee8dd487742dc60064ab86816a5526dce609c867b165788c2c696c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 1025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3790bb855137640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:03:52.000Z'}}, {'blockNum': '0x64b6cb', 'uniqueId': '0x874bad3ac8e4194a13ac0d4c8e15b829ed667b92d59fb3f0c0139b89026df7b2:log:2', 'hash': '0x874bad3ac8e4194a13ac0d4c8e15b829ed667b92d59fb3f0c0139b89026df7b2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 18999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0405f0172efbde7c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:07:12.000Z'}}, {'blockNum': '0x64b6cd', 'uniqueId': '0x7b67be22852645f73fbff99264e0e2698bd92f02f7b7ee6c768ebd4fe706484f:log:17', 'hash': '0x7b67be22852645f73fbff99264e0e2698bd92f02f7b7ee6c768ebd4fe706484f', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x0975f870eec9edea725d01637f93d228b529a5ec', 'value': 3979.10998875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd7b53e7c8a34560c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:07:51.000Z'}}, {'blockNum': '0x64b6eb', 'uniqueId': '0xdeeeed9ab58c8b20dd6138a01de7c6f8a42055b90244d371f03b18c3f136bd35:log:13', 'hash': '0xdeeeed9ab58c8b20dd6138a01de7c6f8a42055b90244d371f03b18c3f136bd35', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 379.18894387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148e4dbf6baee26c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:14:08.000Z'}}, {'blockNum': '0x64b6eb', 'uniqueId': '0x2b6c0c3e8de6e47eb9d36da4e6cc26557ef2e08f1f4411a828a6455acaef2442:log:14', 'hash': '0x2b6c0c3e8de6e47eb9d36da4e6cc26557ef2e08f1f4411a828a6455acaef2442', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0136d73c3bf749d80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:14:08.000Z'}}, {'blockNum': '0x64b6eb', 'uniqueId': '0x1154129830533994a37b4500a28c2435f0c1be1bb7a6615abe40a15db8dc4191:log:17', 'hash': '0x1154129830533994a37b4500a28c2435f0c1be1bb7a6615abe40a15db8dc4191', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3790bb855137640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:14:08.000Z'}}, {'blockNum': '0x64b6eb', 'uniqueId': '0x37aef96925ae043b2f29d62feac5b9d5e6568aca54c1c9b32d564998091e6fba:log:18', 'hash': '0x37aef96925ae043b2f29d62feac5b9d5e6568aca54c1c9b32d564998091e6fba', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0405f0172efbde7c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:14:08.000Z'}}, {'blockNum': '0x64b761', 'uniqueId': '0x2b29dfd89d82ffb8e563ea726a58b568dafe9f6630e1b5c8384b0ca2edbbe2b6:log:7', 'hash': '0x2b29dfd89d82ffb8e563ea726a58b568dafe9f6630e1b5c8384b0ca2edbbe2b6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 5260.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x011d30441f1647000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:40:20.000Z'}}, {'blockNum': '0x64b786', 'uniqueId': '0x95e13c2c841116606283931678d3b872745917e8f55524f558279fab03669d1b:log:38', 'hash': '0x95e13c2c841116606283931678d3b872745917e8f55524f558279fab03669d1b', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 5260.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x011d30441f1647000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T17:47:23.000Z'}}, {'blockNum': '0x64b7c8', 'uniqueId': '0xaede353ddfd0be0ecfb6b801d6b5eb4daa772afccf7f89184fb8ddca119c78a4:log:19', 'hash': '0xaede353ddfd0be0ecfb6b801d6b5eb4daa772afccf7f89184fb8ddca119c78a4', 'from': '0xa4ef0f342fe85820dc120bd16f9b45cda7db95b2', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T18:04:11.000Z'}}, {'blockNum': '0x64b7c8', 'uniqueId': '0xaede353ddfd0be0ecfb6b801d6b5eb4daa772afccf7f89184fb8ddca119c78a4:log:20', 'hash': '0xaede353ddfd0be0ecfb6b801d6b5eb4daa772afccf7f89184fb8ddca119c78a4', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T18:04:11.000Z'}}, {'blockNum': '0x64b7cc', 'uniqueId': '0x51eb4d5b58ae55fe5b2774982fcfff804f724640cc269d609f6fb6a62bf0ce8e:log:0', 'hash': '0x51eb4d5b58ae55fe5b2774982fcfff804f724640cc269d609f6fb6a62bf0ce8e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 3588.271645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc28545c1a64792d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T18:04:35.000Z'}}, {'blockNum': '0x64b8f1', 'uniqueId': '0xd0ba250551f87ad4ce6461528706d391f3898dc9ce21a8880dd3742f1260c452:log:100', 'hash': '0xd0ba250551f87ad4ce6461528706d391f3898dc9ce21a8880dd3742f1260c452', 'from': '0x4c16e333fb4f0f1417152674a5f501a0a15cdbc9', 'to': '0x409ec483c145431a8366a0edff2fe42400ccde9f', 'value': 6591.773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0165573a1aca32fc8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T19:14:05.000Z'}}, {'blockNum': '0x64b93e', 'uniqueId': '0xce89401433fc429c78602d59f42b35365e6e1b678ec1cf3e9b0a63a7eafdf517:log:7', 'hash': '0xce89401433fc429c78602d59f42b35365e6e1b678ec1cf3e9b0a63a7eafdf517', 'from': '0x409ec483c145431a8366a0edff2fe42400ccde9f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6591.773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0165573a1aca32fc8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T19:33:58.000Z'}}, {'blockNum': '0x64bc13', 'uniqueId': '0x9ae083e3cd353c35002949111e7da596e4d5257b25725c5df9faafa8478966fc:log:3', 'hash': '0x9ae083e3cd353c35002949111e7da596e4d5257b25725c5df9faafa8478966fc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe469ae93534e5002fe1986ca38bcc46124a2867c', 'value': 1096.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3b75285ce790700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-28T22:21:05.000Z'}}, {'blockNum': '0x64bdea', 'uniqueId': '0x2804506fc1fff888866a8bfe7e88e708970afcc41a3aa36a4a5f90364d2d244a:log:0', 'hash': '0x2804506fc1fff888866a8bfe7e88e708970afcc41a3aa36a4a5f90364d2d244a', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0xb5d2c71365eccb354cbcc7214394f38e6b26520f', 'value': 9984.00001739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021d3bd56e5128c5cc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:13:21.000Z'}}, {'blockNum': '0x64bdf4', 'uniqueId': '0x47be8818ea5ce27b7a99e70e1679b7f5363c2a079b60ff1ce4c2f78536352f9a:log:9', 'hash': '0x47be8818ea5ce27b7a99e70e1679b7f5363c2a079b60ff1ce4c2f78536352f9a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 13895.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02f14c5a025dce960000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:16:06.000Z'}}, {'blockNum': '0x64be15', 'uniqueId': '0x56ab433aa19715c0e4d74b5fb32558611898584b19a7bddcc73ec7e2856495fb:log:9', 'hash': '0x56ab433aa19715c0e4d74b5fb32558611898584b19a7bddcc73ec7e2856495fb', 'from': '0xf4846c28e900633e92320114513223e673248099', 'to': '0x3c3ae1990b7d5fcfcccda254c916f68320fc19b4', 'value': 2384.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x813e08ae7f30ca0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:24:48.000Z'}}, {'blockNum': '0x64be1d', 'uniqueId': '0x7603e5ee656f20213a523652c1239ba15cd5bab1946504f7cbf8bede2ab4f46c:log:17', 'hash': '0x7603e5ee656f20213a523652c1239ba15cd5bab1946504f7cbf8bede2ab4f46c', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 13895.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02f14c5a025dce960000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:26:52.000Z'}}, {'blockNum': '0x64be39', 'uniqueId': '0xf45eb98bbce5b754c109554f0cf06deda252eff94a77c0f1a4f7a7e36eab333f:log:16', 'hash': '0xf45eb98bbce5b754c109554f0cf06deda252eff94a77c0f1a4f7a7e36eab333f', 'from': '0xb5d2c71365eccb354cbcc7214394f38e6b26520f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9984.00001739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021d3bd56e5128c5cc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:33:52.000Z'}}, {'blockNum': '0x64be56', 'uniqueId': '0x466db752d272d8f3d00d09f32c4144043b4bc9ff23f3ed300841e56edef70ab1:log:15', 'hash': '0x466db752d272d8f3d00d09f32c4144043b4bc9ff23f3ed300841e56edef70ab1', 'from': '0x3c3ae1990b7d5fcfcccda254c916f68320fc19b4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2384.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x813e08ae7f30ca0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T00:43:36.000Z'}}, {'blockNum': '0x64bf1d', 'uniqueId': '0x912fd2a1004072b5849afabe037499a6baa762ae9cc768e6b6f7c6a5fd418ca8:log:2', 'hash': '0x912fd2a1004072b5849afabe037499a6baa762ae9cc768e6b6f7c6a5fd418ca8', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x33adcf5dbec0d96c8dbc87dcd4ecb7b7cc80f0f6', 'value': 6744.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x016d9e765a36a6900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T01:30:21.000Z'}}, {'blockNum': '0x64bf53', 'uniqueId': '0xd2cc727adf1668a4869218b2f6e64ac958e511faa2865efca0d9bd59de177d03:log:41', 'hash': '0xd2cc727adf1668a4869218b2f6e64ac958e511faa2865efca0d9bd59de177d03', 'from': '0x33adcf5dbec0d96c8dbc87dcd4ecb7b7cc80f0f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6744.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x016d9e765a36a6900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T01:44:03.000Z'}}, {'blockNum': '0x64c07a', 'uniqueId': '0xff9ce0034605f25c2d6fc62ab44434daf626f9b71e46eab9cd5e2d326d9fee8b:log:50', 'hash': '0xff9ce0034605f25c2d6fc62ab44434daf626f9b71e46eab9cd5e2d326d9fee8b', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0xb73dc25f987a42e7d92c9e448a03fcff428dec51', 'value': 167.573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09158ae3a902888000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T02:54:19.000Z'}}, {'blockNum': '0x64c0cc', 'uniqueId': '0x0e54ca83d772323b0bdc8307bdb46d7b729961de111e1825d7e76074eb245423:log:23', 'hash': '0x0e54ca83d772323b0bdc8307bdb46d7b729961de111e1825d7e76074eb245423', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x74e48ef73931588aa9dd592d091eaf1df3e4aee2', 'value': 57.805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0322349d3c69748000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-29T03:12:10.000Z'}}]}}
Number of returned transfers:  78
Answer is complete
 
symbol           STORJ
group              MPG
date        2018-12-08
hour             18:45
exchange       binance
Name: 486, dtype: object
HERE
 Symbol: STORJ, Contract: 0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac
Datetime timestamps:  2018-12-08 18:45:00 2018-12-08 06:45:00 2018-12-09 06:45:00
Unix timestamps:  1544247900.0 1544334300.0
Hex Block Numbers:  0x6879da 0x68916b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6879df', 'uniqueId': '0x600a31c20ba0e1ff8a4be4ebaa364a6d00ae5d76cb426536a279679aa617135a:log:106', 'hash': '0x600a31c20ba0e1ff8a4be4ebaa364a6d00ae5d76cb426536a279679aa617135a', 'from': '0x0480d186c5f2a031738561e74ebb22fe363a68ff', 'to': '0x298d6b0fcad8ab28ecdbec00d9b965ea1888d6d4', 'value': 5.19741425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1efa9ff1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0xb2e95ecb0fb181b3867c7173ab238697c4d8cc971592220f6e11c7e3603ad29d:log:107', 'hash': '0xb2e95ecb0fb181b3867c7173ab238697c4d8cc971592220f6e11c7e3603ad29d', 'from': '0x77cfe1ae5e6ac41538ad41422a89bcacd842a662', 'to': '0x53dc110615dda7cdfcda8089234661097675d0cf', 'value': 22.11103697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x83cac3d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0x8a75dd3d6792e2dcb8efddc53577656eb4018d3ff3ea7f44f2118148a7dc8d68:log:108', 'hash': '0x8a75dd3d6792e2dcb8efddc53577656eb4018d3ff3ea7f44f2118148a7dc8d68', 'from': '0x4663a8b35b073e5d913d52a173246bf3c0081c2e', 'to': '0xe973e25df955e2a3258ebad61cab5342415da749', 'value': 4.21280972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191c3ccc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0xcd56a0f6c04be4ea00a9bae0d245d417de5ce7b8f40374a54c392f9f7c10a133:log:110', 'hash': '0xcd56a0f6c04be4ea00a9bae0d245d417de5ce7b8f40374a54c392f9f7c10a133', 'from': '0x20e53253a8f2e8d2a7465e143b7bbda23241a19f', 'to': '0x07b7f6063c04f901fcdd39bbb1a5b1e7d0c7a3ea', 'value': 10.27614033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d402551', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0x019686d61ce89e0e1cb82b2e553fdd116c07ee1c440bb51811f74a06f585b90e:log:111', 'hash': '0x019686d61ce89e0e1cb82b2e553fdd116c07ee1c440bb51811f74a06f585b90e', 'from': '0x53cd2c820b91e2bbea6b5bbbd36632f3d62b618d', 'to': '0xf7349b43a12ec8d06064c5556e51f09cf9a8f8af', 'value': 19.04016674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x717cfd22', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879df', 'uniqueId': '0xe97a39e87dd9ffc86ffde18cc60abc80c65fc3f39a53e5575a78ca08c8addabc:log:112', 'hash': '0xe97a39e87dd9ffc86ffde18cc60abc80c65fc3f39a53e5575a78ca08c8addabc', 'from': '0x670d3d4247d732df68a59260d3d3681c8a399bdd', 'to': '0x2caef82a9264dc90bd899e912d9557bd1d87789f', 'value': 7.11322098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a65e9f2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:46:15.000Z'}}, {'blockNum': '0x6879e4', 'uniqueId': '0x37c2ecb1af09ad96c6cca58e8b329a374f4d17dcec10094ffab0dd0765ab5d36:log:87', 'hash': '0x37c2ecb1af09ad96c6cca58e8b329a374f4d17dcec10094ffab0dd0765ab5d36', 'from': '0x1cb1bca5a71cd9f1f98584b0fc44492452d051e8', 'to': '0xb1c5177f9b4d5e518275dfc38f5c2465f3f60c0e', 'value': 5.83538707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22c81813', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:47:34.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xcda8f75803efb2b0fa22618782d5d9c354b8bc9a1a040ec67b082d2695692f83:log:204', 'hash': '0xcda8f75803efb2b0fa22618782d5d9c354b8bc9a1a040ec67b082d2695692f83', 'from': '0xdf66de7107764a493b9371a5595599fe731d8530', 'to': '0xdecd590220f6745320bbaef16943bd5517803a6c', 'value': 5.15493863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1eb9cfe7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0x5e9b0a5129fb43d0743cf19692d24ef7760b9f117bdc1c7fb67c5e1c8df19683:log:205', 'hash': '0x5e9b0a5129fb43d0743cf19692d24ef7760b9f117bdc1c7fb67c5e1c8df19683', 'from': '0xbc0a2ee76e4f4b5b7667f205c1f749486379391b', 'to': '0xc96e665357ee7856d41a2d1ac721b0619c2e35e4', 'value': 33.04224041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc4f27529', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0x8ceb5e4d4926477a6b7c16a3586b7b5b8722db53eef470b46dac4e859bc1c896:log:206', 'hash': '0x8ceb5e4d4926477a6b7c16a3586b7b5b8722db53eef470b46dac4e859bc1c896', 'from': '0x9673142070383adc807e2110869155fab85ecbd7', 'to': '0xc59009d8d1b7afde6dc200f3e0fa50b35db2178f', 'value': 16.00886099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5f6b9553', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xcba9c2f8a6d0af6e62e55aef9a60e61a8d21b6cc1cf97dd17edfaaf119e21a51:log:207', 'hash': '0xcba9c2f8a6d0af6e62e55aef9a60e61a8d21b6cc1cf97dd17edfaaf119e21a51', 'from': '0xa60197ca15346d45984e04fc0953d442b204140b', 'to': '0xe7c4c82723678cf7546e1aa64d81d7df406fdecb', 'value': 11.55696694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44e28836', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0x9f111d2d7e055d3432c6bd7eb21a3317c7587823fafa015fee51e8e27ae0e37d:log:208', 'hash': '0x9f111d2d7e055d3432c6bd7eb21a3317c7587823fafa015fee51e8e27ae0e37d', 'from': '0xc76c965d030644b5d15b0207914f7ffcfa50b03e', 'to': '0xa98c7a32a0491ff7574dee5f40cbb1fcfbb69837', 'value': 9.78592037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a542125', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xa831842c8361060fb70e3538e1287b641d39af7aae7c99172bbb7787eedf157b:log:209', 'hash': '0xa831842c8361060fb70e3538e1287b641d39af7aae7c99172bbb7787eedf157b', 'from': '0x755e72160cdbeade8d01943fb8a4216ee61f4184', 'to': '0x09122d5dd30a310714a9677213e3eac76b983efc', 'value': 5.78279663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2277d8ef', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xd1dd1d48c5350c6d850cc8e183a43c95910dc3c08fa506148d50561172a53890:log:210', 'hash': '0xd1dd1d48c5350c6d850cc8e183a43c95910dc3c08fa506148d50561172a53890', 'from': '0x499160e9d6d710b1395eeda22843c001dbd8c794', 'to': '0x9c52a8b1c08d3377085a659373b4bc76d23782db', 'value': 5.33126933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fc6df15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879ef', 'uniqueId': '0xd00fb4e55e518baf1bcee1f1cc3de811a091e1e36236e3cc7f8f2cd2430d8ed5:log:211', 'hash': '0xd00fb4e55e518baf1bcee1f1cc3de811a091e1e36236e3cc7f8f2cd2430d8ed5', 'from': '0xbafd496867cf7e03da109990e4f0bfe5794d64a4', 'to': '0xd3212e57796b0c317432541176f8511b72ef7077', 'value': 24.17941302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x901edb36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:04.000Z'}}, {'blockNum': '0x6879f1', 'uniqueId': '0xde10f0ce50a90fa5d61b0a2dd9461822667a449c78a631ace2162bfa9a96889d:log:201', 'hash': '0xde10f0ce50a90fa5d61b0a2dd9461822667a449c78a631ace2162bfa9a96889d', 'from': '0xdcbe68073a3c1431e715e506966f273842ee2dbb', 'to': '0xc725c3634beca7d3c9c20c89a5807b402c815aa0', 'value': 3.41290664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1457aea8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:32.000Z'}}, {'blockNum': '0x6879f1', 'uniqueId': '0xc5db5376f4c944be5b2aa45bbf99c62ffb647350ae851ccc442b1f71f156f391:log:202', 'hash': '0xc5db5376f4c944be5b2aa45bbf99c62ffb647350ae851ccc442b1f71f156f391', 'from': '0xb233453eb9fad1f8ed67b0aa255f795a1c378fc7', 'to': '0x20708f457a64e0857889fa65d6ea9e325a38ce94', 'value': 3.40227471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1447758f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:32.000Z'}}, {'blockNum': '0x6879f1', 'uniqueId': '0x9cbb27911fd31ef455200fe69dd5878322065952e3892fd5880439930c182e24:log:203', 'hash': '0x9cbb27911fd31ef455200fe69dd5878322065952e3892fd5880439930c182e24', 'from': '0x2526a3a3c0b68d2db0cb8c641013513ed9a96e2c', 'to': '0x078e16a26dd218ac5a60a66dabc0578701132ce6', 'value': 5.52746264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20f23d18', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:32.000Z'}}, {'blockNum': '0x6879f2', 'uniqueId': '0xf1ca4ca1dabe47744b1bdc82136659f4e8681dca1d8cc2d5a067b0940bccf0b8:log:100', 'hash': '0xf1ca4ca1dabe47744b1bdc82136659f4e8681dca1d8cc2d5a067b0940bccf0b8', 'from': '0xab41a932781880769fd6f1313705296102567679', 'to': '0x357d0ae7d50548851899a3d88ba5ecbe28948f5e', 'value': 11.37584601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43ce29d9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:50:41.000Z'}}, {'blockNum': '0x6879f9', 'uniqueId': '0x00225c2c53f9366d3e37f23be0a819bb635446e89e4b4722493479bdb59ac558:log:116', 'hash': '0x00225c2c53f9366d3e37f23be0a819bb635446e89e4b4722493479bdb59ac558', 'from': '0xbaed268740140dccc294bf115978b910b02ba203', 'to': '0xca3026d3869adbe89af050594febc8dce66d9c11', 'value': 11.82417149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x467a40fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:52:15.000Z'}}, {'blockNum': '0x6879f9', 'uniqueId': '0x47404127500b085a68158b2797f687b71f0d905ff1acbd15f0ab6abcd7803427:log:117', 'hash': '0x47404127500b085a68158b2797f687b71f0d905ff1acbd15f0ab6abcd7803427', 'from': '0x6fd42fc7d0c808bb2697122edf892980b0cd64c7', 'to': '0x5f46bc0f8cb4840d41bb07c18c31337eeb168625', 'value': 3.41101413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1454cb65', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:52:15.000Z'}}, {'blockNum': '0x6879f9', 'uniqueId': '0xfd660b72fde0d6b74f68bea3fe200de5a3271c9fe6d27a140a1345cce9854508:log:118', 'hash': '0xfd660b72fde0d6b74f68bea3fe200de5a3271c9fe6d27a140a1345cce9854508', 'from': '0xb089b9bad4d9e99691658b5ba057aabbaf53661a', 'to': '0x79660c507fe791729eaa87c4704dd7b60e945b1c', 'value': 10.56822345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3efdd449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:52:15.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x815049e3c50d98d3b0c974a967af989e7475406ffb6aa2fd948687e9cafc7f51:log:118', 'hash': '0x815049e3c50d98d3b0c974a967af989e7475406ffb6aa2fd948687e9cafc7f51', 'from': '0x2412d66f2f2378475f48cbe7e742e5a042624932', 'to': '0x22c8eeb919366a39d4d0f0b6fc749859ddc91de1', 'value': 9.77380585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a41a4e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x95c146cc089f399e78bc3a315752301ffe7c94febd64b57f68207f9f70009d07:log:119', 'hash': '0x95c146cc089f399e78bc3a315752301ffe7c94febd64b57f68207f9f70009d07', 'from': '0x85e259ef7070502f6fb17ec72ee2d672380b4868', 'to': '0x2d38a53e69ef353dc30846a36f2972a7c7d5c35a', 'value': 5.61792883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x217c4773', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x21f644786346280a3d6ce44fe72baddd45b5ca4545b3d92cc28dc0c8b37577b4:log:120', 'hash': '0x21f644786346280a3d6ce44fe72baddd45b5ca4545b3d92cc28dc0c8b37577b4', 'from': '0x71e8a50dbf13bb0c47660b623885101d89f889a6', 'to': '0xe93febdbc39eff574bec68f47e42f2b8df370730', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xc8bd9ae1e2f90a4aa852f3e44b070e251fe5b6f5d80532941408b1ad2c9bbd27:log:121', 'hash': '0xc8bd9ae1e2f90a4aa852f3e44b070e251fe5b6f5d80532941408b1ad2c9bbd27', 'from': '0x4910a5674eda16c74066cd2360ec42d92716183e', 'to': '0xd5edb8e0acbab1c2d721459bf2c9c36f03e430b3', 'value': 5.04682632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e14d888', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x5bb3b048bd170476b8f06ef68eefbccdd15110bb31eb8d7aa4276c407f0bc100:log:122', 'hash': '0x5bb3b048bd170476b8f06ef68eefbccdd15110bb31eb8d7aa4276c407f0bc100', 'from': '0x89eeaa02b9521a115faf0fa6bf7ebb187217f0cf', 'to': '0x2d74cbfa01c37fae37463993b4ace45262351ad6', 'value': 3.40192086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446eb56', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xda0fb83d529fd6c426f10aa6eb7d16d6a80ed880cd7b9e4e339b6b54419d0020:log:123', 'hash': '0xda0fb83d529fd6c426f10aa6eb7d16d6a80ed880cd7b9e4e339b6b54419d0020', 'from': '0x2d0ec798a704ff483508588df4913d61bf5b9866', 'to': '0xd4bcc1b47772158aea3f3ef77ce0da04af0e15b2', 'value': 7.44626103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c6217b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x71b5d31d0cb95ff6d40ce88607cbab1821813bf10fa81deac5f5388e2e565250:log:124', 'hash': '0x71b5d31d0cb95ff6d40ce88607cbab1821813bf10fa81deac5f5388e2e565250', 'from': '0xfdb09380f822c7bd73aac3c94f4aa78ea9d3a57a', 'to': '0xbcec84982ac504e2447aa00ca62441595325cd63', 'value': 7.79750353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e7a0bd1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xc88c0488fea44d3acb396d8c58e98226533fa030cb84633bd7e4af6650829f2a:log:125', 'hash': '0xc88c0488fea44d3acb396d8c58e98226533fa030cb84633bd7e4af6650829f2a', 'from': '0x748de2629e2e80de73701d0989fcbe8ec73eb88c', 'to': '0x303ed6717f74196474ec2d286b68268aacf56b5e', 'value': 5.79845814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x228fbeb6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x17f1cacf174d7d5057030a604ac7a98dc230b8c6692b6834fbc33bdecca82179:log:126', 'hash': '0x17f1cacf174d7d5057030a604ac7a98dc230b8c6692b6834fbc33bdecca82179', 'from': '0x489eefb3150ff39484f7a1ab4a9a2c737382d800', 'to': '0x42c87af85584643971274114073f942129db819c', 'value': 10.31329854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d78d83e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x48441b8074086d67b1d60543ba4b973f31f7bef55c8d33900a45ca1723b6aafb:log:127', 'hash': '0x48441b8074086d67b1d60543ba4b973f31f7bef55c8d33900a45ca1723b6aafb', 'from': '0xe84ef61a2289266227294ab51d7c148cc1b2c207', 'to': '0x5e6c93e3232294ccfb71bf3568453af827998a5b', 'value': 3.40131593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff09', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x35e0342361f3876180c190a2dbcbe5d2bb509947495ae37cace2fb8888fd4ba6:log:128', 'hash': '0x35e0342361f3876180c190a2dbcbe5d2bb509947495ae37cace2fb8888fd4ba6', 'from': '0x8d8577a94d0e0970b33fdbd76875112205490f15', 'to': '0x15cbdb97a850307d46966e97ba89c7c896871f85', 'value': 5.1316811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e9652ee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x1b565d5c90a21586f3f032a3608a5d9c3d46b6942b786fc2ce37d1fee0077aae:log:129', 'hash': '0x1b565d5c90a21586f3f032a3608a5d9c3d46b6942b786fc2ce37d1fee0077aae', 'from': '0x61bc05a0ab1dffd47d507d617daca3adc41fb742', 'to': '0xb56ca59dfaa4ecea19f345b6038e285ba61ef9c3', 'value': 8.40705863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x321c2747', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xa83d63d22974ce42f26e1097fa91021a76590d3ecdc9f0e591cb25855fbc56c4:log:130', 'hash': '0xa83d63d22974ce42f26e1097fa91021a76590d3ecdc9f0e591cb25855fbc56c4', 'from': '0x8813fde06db8fbb2568562af30735175557fac58', 'to': '0x2cf008e9f47036f67bd93e0bb23fbd073ee72213', 'value': 18.41099245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6dbcf1ed', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xfeb19c5d36601e9ffe01f6afb0af5aaab586704fce46e7698510c24c7b278902:log:131', 'hash': '0xfeb19c5d36601e9ffe01f6afb0af5aaab586704fce46e7698510c24c7b278902', 'from': '0x8053da7c94fbeaf3cc8420fee58d1b8602ceb0dd', 'to': '0x24e96931498424d08e974edcc4d49c18ae7ba4ce', 'value': 6.85046775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28d4fbf7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x4ee05e8e4dbd2cf08186dc9eecc51f720eb9f0bb7dae95897530a61e0a1c3287:log:132', 'hash': '0x4ee05e8e4dbd2cf08186dc9eecc51f720eb9f0bb7dae95897530a61e0a1c3287', 'from': '0xbeda98b23bb98885e23dba5adea35b59ab2cdacb', 'to': '0x565f5c860eb9a2ee2d0d125b2ab5a9141ee65085', 'value': 13.4265494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x500749dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x8a48f1bbeca427c0878a2dc667436642e18ca1890572ad6ee583af71fc3081a6:log:133', 'hash': '0x8a48f1bbeca427c0878a2dc667436642e18ca1890572ad6ee583af71fc3081a6', 'from': '0xc3a745c9bc784fe3559029ca58bacaf372ec36a5', 'to': '0xac463312f5ad3453fb1f437953fbba437aa22dc9', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x82736b6461840e79d67dcf7d148459aa9197165c21124a9daf65e3a2f0718979:log:134', 'hash': '0x82736b6461840e79d67dcf7d148459aa9197165c21124a9daf65e3a2f0718979', 'from': '0x48821a1a23453b4afeb37e8fba28fe9e8469b3b1', 'to': '0x7957e037365bac37fd8ac6f1360652644dba4a69', 'value': 4.95479312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d886a10', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xef83ed5d7dd9eebeea50b5ab13cff3683511f796807cc64824607559270469e2:log:135', 'hash': '0xef83ed5d7dd9eebeea50b5ab13cff3683511f796807cc64824607559270469e2', 'from': '0x2dca4e70e83b969bfcac537d04fa8b8a71a223db', 'to': '0xb045c6b88f44cf0d30becbd40a1ca0be7c91bda6', 'value': 9.2109519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x36e6cc16', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x3694af7fd7530854d25c9da998fc613d538bad022171d617a83e01c1fbe59e6f:log:136', 'hash': '0x3694af7fd7530854d25c9da998fc613d538bad022171d617a83e01c1fbe59e6f', 'from': '0x4594d09a81ffdee2738bdb3e9d3dd9f1e222d452', 'to': '0x22c4fbccf42c54456f9ad0519e5cbcfcfb00ff8f', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xf8a6241b03ac50ea0afbc1ab3e743e97ef6fd9712e1bb9dba25b006cfd205295:log:137', 'hash': '0xf8a6241b03ac50ea0afbc1ab3e743e97ef6fd9712e1bb9dba25b006cfd205295', 'from': '0xbd69d5a47c253a5029d87196032f11cde90f7462', 'to': '0xdf75f54bcc64f4ccabd3404f6038f82ac8c93c44', 'value': 16.47572579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6233f663', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xac7af2b02f025173198e56f01ba4c3b22dfb6ff4bbebf1d1e4393e5c036cd424:log:138', 'hash': '0xac7af2b02f025173198e56f01ba4c3b22dfb6ff4bbebf1d1e4393e5c036cd424', 'from': '0xb5c74efcaf78363b171062c5177dbb7accc7b17b', 'to': '0xd793e31ed7b732f2f5f80503a726867378176ae5', 'value': 3.55844853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1535c2f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x7af92724301d886876498baad28ae754e5e48015643bfe3127a7007a3e2dc94f:log:139', 'hash': '0x7af92724301d886876498baad28ae754e5e48015643bfe3127a7007a3e2dc94f', 'from': '0x0875e9ac1146a9b865934f3ddd9cea54f41c62fc', 'to': '0x8f4e78eaf36146adcaed00a2f092f981dd99e982', 'value': 31.12255264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb9813f20', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x9461feb8599343584d9be9b3e7daa578faa1b0c3fb74b954f3cd1f87014f4c19:log:140', 'hash': '0x9461feb8599343584d9be9b3e7daa578faa1b0c3fb74b954f3cd1f87014f4c19', 'from': '0x50c60a87eaace91c08072741ff9b681c0c7ca35a', 'to': '0xffe1e18cf32f9af15b4c3ad0d9fc2061f5518856', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0x161da34d0f7eb2502f059c2d8a973104a60bbbcfb4331ca294e77be1a16bb75e:log:141', 'hash': '0x161da34d0f7eb2502f059c2d8a973104a60bbbcfb4331ca294e77be1a16bb75e', 'from': '0xebf88d5987fe84a96e3a4427f9400425e9b5f57d', 'to': '0xd0b4f3e6541fe02a06f3bd0361186c87cdd408a5', 'value': 3.40803962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1450417a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xeaaf37b84d43e592aacdcc6dd08edc305e0c99b7922aae7d41f183bb250905d4:log:142', 'hash': '0xeaaf37b84d43e592aacdcc6dd08edc305e0c99b7922aae7d41f183bb250905d4', 'from': '0x42cb88c7b225aa24e60cc3a9ad2e27b2a5de0e8e', 'to': '0x19d4173e76c589c92033b4c690d95fe07e612eab', 'value': 5.09746647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e621dd7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a07', 'uniqueId': '0xb7d45ffc4c91018d8538e404acd19b5d8642d46a8cd73a0d32e79a6f9f8bb1f6:log:143', 'hash': '0xb7d45ffc4c91018d8538e404acd19b5d8642d46a8cd73a0d32e79a6f9f8bb1f6', 'from': '0xeaac8ab23e2d10dc53eb187b14ef6db459e0d2dc', 'to': '0x920b8409dea95310c453a18c6d909da5dfee3b83', 'value': 23.78534273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8dc58d81', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:01.000Z'}}, {'blockNum': '0x687a0a', 'uniqueId': '0x2ee5c4c5be6fa12b129be48cf826965ea256e078515f96c2009e5e651bc7ab2d:log:147', 'hash': '0x2ee5c4c5be6fa12b129be48cf826965ea256e078515f96c2009e5e651bc7ab2d', 'from': '0xdd9fc17c8407fb399c5dd8e2cd38880da45a8288', 'to': '0x1d3be10075d24fa0cbae7d7c07b4ec097e5902da', 'value': 5.14470628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1eaa32e4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:37.000Z'}}, {'blockNum': '0x687a0a', 'uniqueId': '0x05a9832a5ecf3af9bc3e82ecb16c52d44dc42dc84f7bc24f773c388328ab583e:log:148', 'hash': '0x05a9832a5ecf3af9bc3e82ecb16c52d44dc42dc84f7bc24f773c388328ab583e', 'from': '0x8e70b0bfbe45c8618b62c7ce30f699327153083f', 'to': '0x61c180fb1aa99c8fd62f9495326b1b44a85d865c', 'value': 7.8127836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e915c98', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:37.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x4fa4e5142b7b683f78e5a75ca0f56fc21199f92fcd5d58b00f4d381f20bea9e7:log:207', 'hash': '0x4fa4e5142b7b683f78e5a75ca0f56fc21199f92fcd5d58b00f4d381f20bea9e7', 'from': '0x064050c07ee81f6d53499b9bb21030c9fd94f784', 'to': '0x84607785d0b0dfd0cd4ae79fc701d4b30fa8a77c', 'value': 5.03727525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e0645a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xba71d6c6afd9c34795ddfee7e0a7eb9e4961ca1a57e1ad5cb39e903040d2c207:log:208', 'hash': '0xba71d6c6afd9c34795ddfee7e0a7eb9e4961ca1a57e1ad5cb39e903040d2c207', 'from': '0x1f61db92180d06dc425819160ede919c71a67ecf', 'to': '0x2722d35b5a1bfe86fceec0d5cfe76ee5e532905d', 'value': 7.97812413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f8da6bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x451d53c90c0520a6b7079336b1e35b08a2a05a078bca715c1f489faa1627c06f:log:209', 'hash': '0x451d53c90c0520a6b7079336b1e35b08a2a05a078bca715c1f489faa1627c06f', 'from': '0x0efd386750abfbedecdcfc17bfaa6feb49bb0402', 'to': '0xf5b77f7908f6a929965826b9d45e399a05469752', 'value': 3.40206486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14472396', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x1234001c217f5ba1474b20004faae9dc0642442d6b38c58a8ddbc10dbb03c527:log:210', 'hash': '0x1234001c217f5ba1474b20004faae9dc0642442d6b38c58a8ddbc10dbb03c527', 'from': '0x2f0ceed2373a2fb5683437875bcbd3d6c6831d8e', 'to': '0x51032f565d113860ebb75181a8fcdaf60975b8a6', 'value': 4.54874623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b1cd5ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x854c4a6692b583bb6b7bb78934ad2ff4f187da44c47b6936a108b7545430834f:log:211', 'hash': '0x854c4a6692b583bb6b7bb78934ad2ff4f187da44c47b6936a108b7545430834f', 'from': '0x21c48ae666d03b5c41c2eb678bd3fcfefbe5af94', 'to': '0x23b38fe5c98e40cefebeaf86fc2b767119152855', 'value': 13.64889861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x515a9105', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x209e8156b51154c2d37a06a084ca77f3ed970d91a0184b58463fdd69e67e9af7:log:212', 'hash': '0x209e8156b51154c2d37a06a084ca77f3ed970d91a0184b58463fdd69e67e9af7', 'from': '0x903839033348268e57648700c402490d7c497ab6', 'to': '0x77070acef4fac1119993a3781160f6fd387a5391', 'value': 6.41173967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x263789cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x68ccbc7e2a0d183d4a896148b139667fefac224dd22c120ffa9b6797746f3f2f:log:213', 'hash': '0x68ccbc7e2a0d183d4a896148b139667fefac224dd22c120ffa9b6797746f3f2f', 'from': '0xc01c61531e6981bad2345c6d852874f24ad70b68', 'to': '0x5adc33d8008361bbbdbd33702cb334baba025028', 'value': 5.45247143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x207fcfa7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xd844002f623aec7a06c04a6783d1da3e544a648b86a2211a330c5ca42ccbb8e5:log:214', 'hash': '0xd844002f623aec7a06c04a6783d1da3e544a648b86a2211a330c5ca42ccbb8e5', 'from': '0x33e59c92fb323ef953508eee069701f4535e92a1', 'to': '0x85a972e5e5fde6514fc24e4a14a29f30d26ced0d', 'value': 6.03593246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23fa1a1e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xd581ee83f6ab01a0d837fcf5ad07de8545c8bd2923f79f214a936a6cd575af21:log:215', 'hash': '0xd581ee83f6ab01a0d837fcf5ad07de8545c8bd2923f79f214a936a6cd575af21', 'from': '0x53e95b83ca79009b9594082fd633f1567995e0b4', 'to': '0xbddf669846dfeaa8ed1f7760a7b45f881500cc75', 'value': 6.3569803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25e3fb6e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xf8bc7653a8e36fa61146ca07d05e901eb0f407db2ab91339e9687ca282adc885:log:216', 'hash': '0xf8bc7653a8e36fa61146ca07d05e901eb0f407db2ab91339e9687ca282adc885', 'from': '0xcf5bf5ab6b5858774f0bb951423a916964081894', 'to': '0xf14bae569552ef0a6dea048b0d2422617558697b', 'value': 6.32839167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25b85bff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xc682df07f4ed63f7b98019b00e8f6c0b194cc1f76d320c2a76c1bdc5266100bf:log:219', 'hash': '0xc682df07f4ed63f7b98019b00e8f6c0b194cc1f76d320c2a76c1bdc5266100bf', 'from': '0x40ddc6b2b6863789276acfa17d9cfd25ac849ad4', 'to': '0xaafbf3084e1f071a7ff029ea0b2dd9756b3eedc8', 'value': 5.20323742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f03829e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xef1aca61c792418b7acff684c38d7b1289b31d24a1f73d7c28af13d65fead15f:log:220', 'hash': '0xef1aca61c792418b7acff684c38d7b1289b31d24a1f73d7c28af13d65fead15f', 'from': '0xd5ca96c98dc43c646c6905f0719484743030c7c7', 'to': '0xe006fcd354fc870c25d5967adc747e4d7afa53ec', 'value': 2.10641817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e2399', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xcfa7610df447e55d6bf1c9357b02bd35b168710c0091f6aa164cab69b31d348b:log:221', 'hash': '0xcfa7610df447e55d6bf1c9357b02bd35b168710c0091f6aa164cab69b31d348b', 'from': '0x8c961b9e25a6f9ab3984611b603b01e48867fec0', 'to': '0xede10b59669cf3b4f4b3a1e742b794642b59d2a0', 'value': 22.53108714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x864bb5ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x9292107595cefd32a1eb9a7d358031f65843ea563ab1f262d9add0e27bf0ba62:log:222', 'hash': '0x9292107595cefd32a1eb9a7d358031f65843ea563ab1f262d9add0e27bf0ba62', 'from': '0xe5006d41e85f9e6f56ecafb82f5fe9d431750be1', 'to': '0xbdda08b34a8eba9ac4cc3c1e380f27852061e2fd', 'value': 9.61698065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x39525911', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xa04153724aaa1eda4e1a533766490ca76f94f4093c4a0beaf2ed9953562c16ae:log:223', 'hash': '0xa04153724aaa1eda4e1a533766490ca76f94f4093c4a0beaf2ed9953562c16ae', 'from': '0x19b880b03479a711f55cf9e33654bf1931a2b271', 'to': '0x2e126e6f833d05834baa4a854ee05c3eb0827865', 'value': 8.16438346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x30a9dc4a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x087d8afcebaafb5fbfa85cceb7ba96e54e24dc10dcf39603df1e0b6bb86e80a9:log:224', 'hash': '0x087d8afcebaafb5fbfa85cceb7ba96e54e24dc10dcf39603df1e0b6bb86e80a9', 'from': '0x7c9b5281ef37e8fa391c10afa6b7b39b54265a27', 'to': '0xad3f47dd4929f4c1d1ff49501bad7e4b5fa617b7', 'value': 7.79079129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e6fcdd9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0xb470fb726a2f7fa9e44d58a9bdda045158c9d40477d19480a0338106b195936c:log:225', 'hash': '0xb470fb726a2f7fa9e44d58a9bdda045158c9d40477d19480a0338106b195936c', 'from': '0x75ef36090d98a9ea58352e5ba255596b8514abbb', 'to': '0x2d28a64c145ca4e836ef688120ee3716e318367d', 'value': 4.55994219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b2deb6b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x6597b4748c21665057746c720b796e02ad60cc539424099166b5605c5bfd3d7a:log:226', 'hash': '0x6597b4748c21665057746c720b796e02ad60cc539424099166b5605c5bfd3d7a', 'from': '0x8f053eca4f262301d77abb6a7d0a018f29817257', 'to': '0xfa26a8ce3a01df0e9e5addecbd320e8d5ae7acff', 'value': 3.86537897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x170a19a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0b', 'uniqueId': '0x036d814a3a0d7e23a0bbffee93df8dedeebecd61b3bc2589a4d3c3d945b6e3d6:log:227', 'hash': '0x036d814a3a0d7e23a0bbffee93df8dedeebecd61b3bc2589a4d3c3d945b6e3d6', 'from': '0x7efe410530773211540d6171f4a96a7455730055', 'to': '0x5105a81eedce8ecb95f8ae5df560bf36fd9c0782', 'value': 5.3366106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fcf0584', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:43.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0x5307fa39af452c8f86ca896623cfc5f5840053d34270b1983e39210321f2d77a:log:64', 'hash': '0x5307fa39af452c8f86ca896623cfc5f5840053d34270b1983e39210321f2d77a', 'from': '0x504ee318cd428a07e32adf4f4d7d3af8a21c4359', 'to': '0x0f48078a7884881f77a5dbcc6a309443091ccd0f', 'value': 17.44727838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x67fe6f1e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0xfd255e4c9dede7c85122eb6ab74626bd88d6d471885c74a298217764c1fc6236:log:65', 'hash': '0xfd255e4c9dede7c85122eb6ab74626bd88d6d471885c74a298217764c1fc6236', 'from': '0x39d006bfb4523479f79d026c247aa13ded2471d1', 'to': '0xcd1a031eb15987ee4a233514d75b0e4546a3e286', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0x0e34cf9e329d516cc7a162f2c6e18aa660ab2e2e9d72f758fb847bef43baabb5:log:66', 'hash': '0x0e34cf9e329d516cc7a162f2c6e18aa660ab2e2e9d72f758fb847bef43baabb5', 'from': '0x9607acaf63410118262cffdee419c12d113adfc3', 'to': '0x14d77fe78cc7d3d5235ae7c2f6071c622a95fde8', 'value': 5.25562772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f537394', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0xb40ae7e31c073122d95fd089cabb9c91acca218d878a945acd74b81b6fdb14b0:log:67', 'hash': '0xb40ae7e31c073122d95fd089cabb9c91acca218d878a945acd74b81b6fdb14b0', 'from': '0xd040bea902a78e1707def46e9b4e1bdc2badfeac', 'to': '0x57fb1b1c7916deac62438c887362344059803e7b', 'value': 28.95411755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xac947a2b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0xd0ab1327eda5d463c54ac6d06b660bf3478aeef5713b3b6e94e93b8951dcb8ac:log:68', 'hash': '0xd0ab1327eda5d463c54ac6d06b660bf3478aeef5713b3b6e94e93b8951dcb8ac', 'from': '0xdd8467b072a7041b756df1947fbe9bb42e5f079b', 'to': '0xb46bfaeb18c0d825eb9462b62864258a81ba7abd', 'value': 16.74198522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x63ca3dfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0x484485b213abd4b8cb1423298ca0ea67819ff1be760c2dd5ad890641c6b43dbf:log:69', 'hash': '0x484485b213abd4b8cb1423298ca0ea67819ff1be760c2dd5ad890641c6b43dbf', 'from': '0xbb558b60e7b9551b425575548e61b2811b990c51', 'to': '0x1204077952626c2e1dcafac1b45059c1593908c4', 'value': 11.57415493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44fcc245', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a0c', 'uniqueId': '0x47cecf08e3ecd16ec55b9b5d3ed2b9576aa9563e8dd1bf23fca95d958df8209a:log:70', 'hash': '0x47cecf08e3ecd16ec55b9b5d3ed2b9576aa9563e8dd1bf23fca95d958df8209a', 'from': '0x958302005b8030c33939ae01bf15b1dba489c8c6', 'to': '0xeb714c20d2769f6b022da18c5ff01ae6b118d977', 'value': 6.4754189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2698b482', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:55:56.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x6d35fc6eb9d5ccf5187218946d000f8cab7c47c132222a0393c6ba085cc78f46:log:150', 'hash': '0x6d35fc6eb9d5ccf5187218946d000f8cab7c47c132222a0393c6ba085cc78f46', 'from': '0x66fddc337195de02ee782a705dd0dc70b1652061', 'to': '0x9d79f6bdf5e3cd330bdda462ec0861d5d5bea594', 'value': 12.3308887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x497f7166', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x24752c662e3836720680f68f69e0b583586b436d5451bfcb88f6842f4b565f66:log:151', 'hash': '0x24752c662e3836720680f68f69e0b583586b436d5451bfcb88f6842f4b565f66', 'from': '0x926dd1813baa71c5842ae5a801536fc572574317', 'to': '0xc4e968592c02308ce891f6a0320dfc461acd4af2', 'value': 2.10884326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c91d6e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x7c95b9e5f79634cdf028e829d62e7a738ed0265ebb00b349864ff75ad491dacd:log:152', 'hash': '0x7c95b9e5f79634cdf028e829d62e7a738ed0265ebb00b349864ff75ad491dacd', 'from': '0x3da231fce1df56b368c8ce14d382934fd2a62907', 'to': '0x85d5511da83071c570a51c626e7bbe91259394c3', 'value': 6.29727893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2588e295', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x1155099ff4019208d4421515630170e291696034b2410391cbf7cdbdcbae1729:log:153', 'hash': '0x1155099ff4019208d4421515630170e291696034b2410391cbf7cdbdcbae1729', 'from': '0x61a6b9cb0cc7f283c6c9bd9e506da388b88e7388', 'to': '0x16af6c0481b79159222a8cb50525ede81d46fee8', 'value': 7.11433774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a679e2e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x5cec47a93a70ee36c8040580e9e31b83f7392793d617c9caf7b37e207cb861c9:log:154', 'hash': '0x5cec47a93a70ee36c8040580e9e31b83f7392793d617c9caf7b37e207cb861c9', 'from': '0x73ca9aec4c11774821353df0f8eaf902d0bd05fb', 'to': '0xc935553cbf225cb7e0787e1f30a0324535bc3393', 'value': 5.83791366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22cbf306', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xbcb9b77ff649a877297ffa65d22159e4587815f0a2a2120d214771d5365f507b:log:155', 'hash': '0xbcb9b77ff649a877297ffa65d22159e4587815f0a2a2120d214771d5365f507b', 'from': '0xe6e4dd69b6d8e68117f2eb5732c5b1359e0c458c', 'to': '0x465ac7506f1b263b78d4c488c82ebd860ed3f478', 'value': 12.62675048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b42e468', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xb2e7b6b6a69881e5b0491ed1b333d26b788d9a3dc727a119a568aa0c9c346f34:log:156', 'hash': '0xb2e7b6b6a69881e5b0491ed1b333d26b788d9a3dc727a119a568aa0c9c346f34', 'from': '0xd0ad58110149e62646bc9742cae5d527b8ddd95b', 'to': '0x874bfad06da2d5132c38b2eac4791c228678ead6', 'value': 3.13539051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12b039eb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xebb943aef0473ff2281fb61890d41e2cfb76727d009185cf0234c94511717337:log:157', 'hash': '0xebb943aef0473ff2281fb61890d41e2cfb76727d009185cf0234c94511717337', 'from': '0xfcd24a2bdbc9e395c3214be5528b884aa42cc446', 'to': '0x2cfe4648cbc6d1e5964987ec0118f1e9021a07ea', 'value': 9.84620573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ab01e1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x55f677d1aa99a7781a96e5d744a861bf13d78b348a9eb2022c1dae9f77d03adf:log:158', 'hash': '0x55f677d1aa99a7781a96e5d744a861bf13d78b348a9eb2022c1dae9f77d03adf', 'from': '0x895f64ba3170d757d1d438b002bbae6173876ad2', 'to': '0xe3ed86d39139eed5ddfde57418e10496697e7257', 'value': 3.41441185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1459faa1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xaaa9033aecf7c50341665e272b7b1fa07c1c38272226b6128de8a88d60d4eefd:log:159', 'hash': '0xaaa9033aecf7c50341665e272b7b1fa07c1c38272226b6128de8a88d60d4eefd', 'from': '0x726bc3c633108871beabf3de3343496c6b629705', 'to': '0x0aef42db4d44a13abe0967f212655fb6645efc80', 'value': 12.40873158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x49f638c6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x962b45dd8f63f429c93e5be1764112c9080d939ed724d697f24bd54e8b6c40fd:log:160', 'hash': '0x962b45dd8f63f429c93e5be1764112c9080d939ed724d697f24bd54e8b6c40fd', 'from': '0x7f4687eb93d215c3e0f80f357b3d22b709de9e53', 'to': '0x2a114b8ee99cae8917d51012d614df374f6d7656', 'value': 5.41440917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2045bb95', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x17a09094d0f1c7d8aa650ac733569f90f923f15391f548410634a77e589dbacc:log:161', 'hash': '0x17a09094d0f1c7d8aa650ac733569f90f923f15391f548410634a77e589dbacc', 'from': '0x674bf27fd4a61cbf958b613d9cd28e05ace2f8c3', 'to': '0x7344d1f5997d11d54a3c88303baa39bbcaa5fc29', 'value': 5.8400738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22cf3ed4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0xdc9950ab44e519a7cf7706f5cd4c7d6948c16f3576bb42370f268d203de462f0:log:162', 'hash': '0xdc9950ab44e519a7cf7706f5cd4c7d6948c16f3576bb42370f268d203de462f0', 'from': '0xc9a14cbd3e1e64b6d8ebfd9b54c03df71c02282b', 'to': '0xb7f34bc9a3f7fe664abcbc9d4d324ad99f66191b', 'value': 10.42261623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e1fa677', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x8b8a31aea1145f06a2ed5eb7f73a192e19053700dfa07d1ae381a3b3f4d41769:log:163', 'hash': '0x8b8a31aea1145f06a2ed5eb7f73a192e19053700dfa07d1ae381a3b3f4d41769', 'from': '0xaeea481c4f13c5f21b56f4ca74cc2f4326b73a52', 'to': '0x2f52cf6a5453c06c0a1d49488169ddaa3b427b88', 'value': 15.82342148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5e50a004', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x0894a0a0670e6712f46deb106d2f74dd787ed903b3ca377eb933e4ae1e2be09e:log:164', 'hash': '0x0894a0a0670e6712f46deb106d2f74dd787ed903b3ca377eb933e4ae1e2be09e', 'from': '0xe5f44d6a375dc9e3712ab5ae1bca90edf2ae8426', 'to': '0xa586e81b9e5f21e304b01038c05db31aaaab1928', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a14', 'uniqueId': '0x9e3874ed24aee77928973897454162b5cbfa32a7d6fe481a56e499842acb4a76:log:165', 'hash': '0x9e3874ed24aee77928973897454162b5cbfa32a7d6fe481a56e499842acb4a76', 'from': '0x7388d5ef264c4e4fb4d592838fba65082c262303', 'to': '0x4e794209c3c9ade08225f99d80b64115b8b66d4f', 'value': 3.41788758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x145f4856', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:15.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xbe033a63d8a0aa2c85f6a8879c102baf8efb9d30049cc5d08778461f03b3304b:log:110', 'hash': '0xbe033a63d8a0aa2c85f6a8879c102baf8efb9d30049cc5d08778461f03b3304b', 'from': '0xad23f720dd2e14bca81f09b66c552c73168a4020', 'to': '0xf5130110191a1f40a6de9558e801eb8c2cfeeac5', 'value': 10.46327981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e5db2ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xb2018a72fb1ffe554bf16fb507901191f7178e87ba44afe1710e72cb3f775396:log:111', 'hash': '0xb2018a72fb1ffe554bf16fb507901191f7178e87ba44afe1710e72cb3f775396', 'from': '0x3b0ed05b194bde1016ad5db3cf27a2552183feac', 'to': '0xfae86aa1e0b15109269778b790d5918be92f1895', 'value': 11.49250934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44802d76', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x2b490fdf890253f8cb8382494ac0cff3f38fb705c9acf5d8209bdba5852dd88e:log:112', 'hash': '0x2b490fdf890253f8cb8382494ac0cff3f38fb705c9acf5d8209bdba5852dd88e', 'from': '0x9ea819c2f32012b5488041da1be670b26f8c39b0', 'to': '0xd0871262fb0544913c66049c3348392743605a26', 'value': 12.42797766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4a1396c6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xcf06e776372597b8e219c6b6004e1415c99c0ecce126c906c2fbafad16b2ed2e:log:113', 'hash': '0xcf06e776372597b8e219c6b6004e1415c99c0ecce126c906c2fbafad16b2ed2e', 'from': '0xcdce8e0f0c9133379287fe1bf31797f5ee7ac61b', 'to': '0xfea2ccce9b116da548160ea8e4c6d2999b1a104e', 'value': 6.37675957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x260229b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x04e93fda5608702d2c62d0ef824db447adc889048a88909829cfe84f47c5eb6b:log:114', 'hash': '0x04e93fda5608702d2c62d0ef824db447adc889048a88909829cfe84f47c5eb6b', 'from': '0xcc4f57549d2eb215725f0cb8b97ad41e63bfbb3f', 'to': '0x2488b3e3445895a489b05e3c059bbc72d8ebef75', 'value': 3.56150278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x153a6c06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x83be2ab128743e1ba9e3aa5c1db32a04c4474890fdc410eafa7da441d4664903:log:115', 'hash': '0x83be2ab128743e1ba9e3aa5c1db32a04c4474890fdc410eafa7da441d4664903', 'from': '0x618b02b15cdfa7238a68e6c007f2f1d35a0fc1ec', 'to': '0x3f399ca3e00ce410e7d51b809323ae31fb5ea27e', 'value': 9.65450766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x398b9c0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x9ef9de5f7f6527d6f45043cbaebf6a6acf97016a095ee1d20f59a3f3157d4ae1:log:116', 'hash': '0x9ef9de5f7f6527d6f45043cbaebf6a6acf97016a095ee1d20f59a3f3157d4ae1', 'from': '0xd31164b4f9508ddb67ce6f0a4eb89637201fd8ff', 'to': '0xe04309f3dbb45bb87d9d50cde95f4b932e93c113', 'value': 6.31021873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x259ca131', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xd3fadfb204c040422279d2214a5d2385771220b80aa0c9d0e7c3377a9aef2136:log:117', 'hash': '0xd3fadfb204c040422279d2214a5d2385771220b80aa0c9d0e7c3377a9aef2136', 'from': '0xd456349f5ad070615d5ae406a426f6c426ec4e45', 'to': '0xb4b784a151e6023e5ef5aec12d242991ef3f9d27', 'value': 10.16203489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c9208e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x2968ad67a5b21d84e5c8a57fd5c411c0badf3ab1349b34fc5dd935adfc6e78a4:log:118', 'hash': '0x2968ad67a5b21d84e5c8a57fd5c411c0badf3ab1349b34fc5dd935adfc6e78a4', 'from': '0x4d0d226750e02353f8c5af1c1ff5d7864ab182eb', 'to': '0xc68ad9f28292b5e1c4dfd67c77559105adaea668', 'value': 4.9726185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1da39d1a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x4965b669ba884465bb3ca76058eddf7836c61972800183ae89a75af63e61bc8a:log:119', 'hash': '0x4965b669ba884465bb3ca76058eddf7836c61972800183ae89a75af63e61bc8a', 'from': '0x05a6a947d369ff9bda38b60fad76b79aa29ad3fe', 'to': '0x6aa51547499409164c3dbd69974e0b54abe354a4', 'value': 6.30873645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x259a5e2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x0783ec68c9eb59bf988c4ab8182522c90ef300497e0348d6ba8b104f9a942a8b:log:120', 'hash': '0x0783ec68c9eb59bf988c4ab8182522c90ef300497e0348d6ba8b104f9a942a8b', 'from': '0x62a2bf0369aeb66576cc6b667375ab387c4c305f', 'to': '0xc426558d19558a0e6f8618513854efecc50ae06a', 'value': 14.30871047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55495c07', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xb9c11bac62ee7f41d389d411c13be17c0ed00a41741667a44990216eba4b3568:log:121', 'hash': '0xb9c11bac62ee7f41d389d411c13be17c0ed00a41741667a44990216eba4b3568', 'from': '0xc3451fbef616e65570fd659c22bc48bd9c097a0a', 'to': '0xd675e9d8340dabed8370fd6dd2f1de25ac3b498b', 'value': 5.21560887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f166337', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x7fafb82c69fba6541ee7412141fee620354b120133edb57ef4194a0853ec14bf:log:122', 'hash': '0x7fafb82c69fba6541ee7412141fee620354b120133edb57ef4194a0853ec14bf', 'from': '0x46fbd3e74eb6706d3e36f3587c7372679fb595e3', 'to': '0x86a1ddc07a49019515235b08041f8a88747f49c7', 'value': 3.41004214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14534fb6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xe523f835db866f1c550a858e2d0f55c4fd5446156d33d073d258d09be2514472:log:123', 'hash': '0xe523f835db866f1c550a858e2d0f55c4fd5446156d33d073d258d09be2514472', 'from': '0xd02d2af9a863bc6b98355395bde4b3d16b5a4e43', 'to': '0xaa59bbded2aaa5d6365094d4e47d23456d470e4d', 'value': 23.1555706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8a0498c4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xeb44b45ab93d9bb16674b3e3b522cb21e0b55e742d68c62d94b068813153f697:log:124', 'hash': '0xeb44b45ab93d9bb16674b3e3b522cb21e0b55e742d68c62d94b068813153f697', 'from': '0x82f60b3927aa52c774f321a3dcd9e78f857e2d61', 'to': '0x81b9a52432249b635e37a105e53de82380f5144f', 'value': 6.81566381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x289fe0ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xc671a78cbd05568a6868f72b52795df4202742029dd1ddde58a0e32ca5ab0414:log:125', 'hash': '0xc671a78cbd05568a6868f72b52795df4202742029dd1ddde58a0e32ca5ab0414', 'from': '0x1faa6c8e5b39697828322b4c6cfc633133be5faa', 'to': '0xe29da0ec27c57040ebd42ffc08adbb318ba1096e', 'value': 7.02752149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x29e32595', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x8a1d314b1d4f2be14410d77fdd7826ddcb90d9fa5e850fecda6d622c13a8035d:log:126', 'hash': '0x8a1d314b1d4f2be14410d77fdd7826ddcb90d9fa5e850fecda6d622c13a8035d', 'from': '0xeeedf1374ffd184408a77c7f3d6fe2480b9c3a2b', 'to': '0x013e76025303feaf75e7632ae3800e5349b90c2f', 'value': 20.81206343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c0cb047', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xae349cb81a658e2229799a8fdd0d6fa75e494082cc6fc80f40a29bec6b714028:log:127', 'hash': '0xae349cb81a658e2229799a8fdd0d6fa75e494082cc6fc80f40a29bec6b714028', 'from': '0x3f0255c8a9e5b758dc2a225b6364428ce2d7f523', 'to': '0xfa139a49edcb48e801f6852d20bf58ba606972bd', 'value': 3.55086921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x152a3249', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xd9d8c5b986e4bc10bdb11e5de1de8c8b2f0c811ac8806ca14a335cfc89a67b1c:log:128', 'hash': '0xd9d8c5b986e4bc10bdb11e5de1de8c8b2f0c811ac8806ca14a335cfc89a67b1c', 'from': '0xd146b6dea9528a426160ded4261a491db25f6f2f', 'to': '0x4f02be6109f54dd7e86bbf6315715a25a889d31c', 'value': 5.02714233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1df6cf79', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x15b95474cb5b12209354147886826830d6ff9b6f19ec40600eef3249c1b2de22:log:129', 'hash': '0x15b95474cb5b12209354147886826830d6ff9b6f19ec40600eef3249c1b2de22', 'from': '0x227389d22785dcb6a4aa1630fe0e572013509757', 'to': '0x6c56c85ed3210773673345f1e56e0e041a17afaf', 'value': 10.88110593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40db4001', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x73889ffafe96aae00960bcce6a75a8ca421b1bda88580ab8c5c0594bb7d778ff:log:130', 'hash': '0x73889ffafe96aae00960bcce6a75a8ca421b1bda88580ab8c5c0594bb7d778ff', 'from': '0xd4122e016aa350bc2789def540022d4d9d548e91', 'to': '0xd07332d5d8ec8ea5a9ff58c3769d72396163d018', 'value': 6.80311472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x288cbab0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x0da0108305eb1522d5053791e8617984c11b28604c2c06f9d44b203a6e52ddd4:log:131', 'hash': '0x0da0108305eb1522d5053791e8617984c11b28604c2c06f9d44b203a6e52ddd4', 'from': '0xee28e9fb7dbdbbc33edb821a1731952a4c588c91', 'to': '0x131496333aba1f9a19d85666cd49e25c354c2411', 'value': 11.54224085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44cc0fd5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x37261405ab9ac34b366e233faf086ac3dc25d336138202301ddb7dda4609894b:log:132', 'hash': '0x37261405ab9ac34b366e233faf086ac3dc25d336138202301ddb7dda4609894b', 'from': '0xe4c32645a81f5266edc5fec9bf794916aba4b3e6', 'to': '0x97b6d749076e832a66d407cea67c6f64c0fb1554', 'value': 5.05798397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e25defd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x9caef6f68f3875a32b7799f6fb95f824e78d575cabf68df9e1bc261df0747bf3:log:133', 'hash': '0x9caef6f68f3875a32b7799f6fb95f824e78d575cabf68df9e1bc261df0747bf3', 'from': '0xfbe65ee51f7e9ee05d555f936eb190f50354c8c6', 'to': '0xeab57b5ceca5e30ef678cf52e514123d2c7c5614', 'value': 16.05684307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5fb4cc53', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xb991c806c1305e2f475e054279e7ec6dd0b845f70f9a4b2e3d2c939275f379ce:log:134', 'hash': '0xb991c806c1305e2f475e054279e7ec6dd0b845f70f9a4b2e3d2c939275f379ce', 'from': '0xfb4b41d57d7d5d9183d98ad5bdb327e8ffb61760', 'to': '0x12eabcf749500ffddb4d34c1c2222e713c609fba', 'value': 13.85650687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x529759ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0xadad971a9d82d9802a0f0b964c80b44c486d4d512ffc3836066802d1edd57120:log:135', 'hash': '0xadad971a9d82d9802a0f0b964c80b44c486d4d512ffc3836066802d1edd57120', 'from': '0x6406659254f536a2884cfb7feb142fe6aaa818c5', 'to': '0x0ba894600919a02b1136aaa89163e73e9e5ad20d', 'value': 4.00498161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x17df1df1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a15', 'uniqueId': '0x2cb6939ef37e58439489918619bfda00bf94318deb56e1a0cc89313315ec505f:log:136', 'hash': '0x2cb6939ef37e58439489918619bfda00bf94318deb56e1a0cc89313315ec505f', 'from': '0x48c07068357cb9b489dd2e3c4d3e99523cc4dd12', 'to': '0x9108582f6d3dd2ceb2e941ea25fb152074aaf18d', 'value': 7.14319903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a93a81f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T05:58:30.000Z'}}, {'blockNum': '0x687a1c', 'uniqueId': '0xa58fd30a2ea7e49cf33efc6f3c32f7bdf6a53cc74d20822368b1ce09680507d5:log:95', 'hash': '0xa58fd30a2ea7e49cf33efc6f3c32f7bdf6a53cc74d20822368b1ce09680507d5', 'from': '0xc04dcae4ad01cbbcbc5b5a177950866b5963b89b', 'to': '0xa23956f86fef0e95b72e6cb0180b41ee983ce147', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:00:10.000Z'}}, {'blockNum': '0x687a1c', 'uniqueId': '0x43c55b0e1051807cdb8a92c52a446eca9939ac295de47e776100047eed5ce3a3:log:96', 'hash': '0x43c55b0e1051807cdb8a92c52a446eca9939ac295de47e776100047eed5ce3a3', 'from': '0xb99f58b76f848e539cb39e40ecfd6dd164e8acf3', 'to': '0xf2e78e661167a306e697c6fd37a077979c41da96', 'value': 10.92580711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x411f7567', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:00:10.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xc2891a4ba78acc9feef94a0e8ba40ddd146e6ceaa419e833766ad948c18f217f:log:120', 'hash': '0xc2891a4ba78acc9feef94a0e8ba40ddd146e6ceaa419e833766ad948c18f217f', 'from': '0x26b62103fd29311959bcb1d9164aeedb4fed7b3e', 'to': '0x3efd0f03f35121a447a23da38a3e6bf53aea492f', 'value': 13.94903843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x53248b23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x78147b1688bef6a20334f1a2fa7fdd71d182c01b65665efdc54bdba27fe64484:log:121', 'hash': '0x78147b1688bef6a20334f1a2fa7fdd71d182c01b65665efdc54bdba27fe64484', 'from': '0xb02493089ae4925ab168377a7a58f08703ca9760', 'to': '0x97358425d619f00432efcec753302739166e4443', 'value': 10.64007225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f6b7639', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x45e5beb5260752bf98304406371ecefee60ec7ec1ba3c7a1a82db203b2c54755:log:122', 'hash': '0x45e5beb5260752bf98304406371ecefee60ec7ec1ba3c7a1a82db203b2c54755', 'from': '0x4fde4f52a39a0908a5fe8f040fc34f773e196d02', 'to': '0x93e42b030cf290ad600b2831c42481d47bfdffd1', 'value': 17.59216876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68db84ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x384bd8c776da3921ab8fedb7d3a5e154502234a2a11b43c09fb1091e702b1421:log:123', 'hash': '0x384bd8c776da3921ab8fedb7d3a5e154502234a2a11b43c09fb1091e702b1421', 'from': '0x806bcc9fdcab688125c62669e2fd97f3777c89dc', 'to': '0x3e3491e2c95a40c19fab96121debf68c37b17c5f', 'value': 13.36993354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4fb0e64a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x2780f1f205f84c8f9ec224f64f0b9b8544d59a0dacfd7b20eb0139b7681a2f9b:log:124', 'hash': '0x2780f1f205f84c8f9ec224f64f0b9b8544d59a0dacfd7b20eb0139b7681a2f9b', 'from': '0xa30d9e116fd91a02cb5b7a96e9386dcc4517419b', 'to': '0xecaaf58b7e605ec666b62d981b97800e25e4a6da', 'value': 7.72542983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e0c1207', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xe22841c77b8431df591e657a42488cec64a7ea69c40cb1f27fb5ebd529dfb2b5:log:125', 'hash': '0xe22841c77b8431df591e657a42488cec64a7ea69c40cb1f27fb5ebd529dfb2b5', 'from': '0x10e3b70833e0cda4145775a2ca350cde43aff342', 'to': '0x88b998fa974c87400ecb662574d87a0ae4e8865b', 'value': 4.97371566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1da549ae', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xc94d657a62c527ff587694aa6100d4d3e3e91fb1a4e9fb8c7025da2c669bc878:log:126', 'hash': '0xc94d657a62c527ff587694aa6100d4d3e3e91fb1a4e9fb8c7025da2c669bc878', 'from': '0xa69a4e128e5c44660f8ddab5d95f4302d83d6679', 'to': '0xaade4dda371503fadc02bc5a171787e3316e7ca8', 'value': 12.78176901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c2f6e85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x61ec2d84d1d2d21940515d776dde291ad85e2afc6716953798e49777da55f6ee:log:127', 'hash': '0x61ec2d84d1d2d21940515d776dde291ad85e2afc6716953798e49777da55f6ee', 'from': '0x6f3637b32ba7a0e1fe18c23a197142fd525feabb', 'to': '0xaef8e5349d5ab51451fe3ba2242218d7bed41f39', 'value': 4.24076041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1946e309', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x9e4d2fe773cc389b4124118db67f09c211cfbe30e8187b539f5e7fc7163b28a6:log:128', 'hash': '0x9e4d2fe773cc389b4124118db67f09c211cfbe30e8187b539f5e7fc7163b28a6', 'from': '0xdffc62101c10465619654809ce3fdf26c551527e', 'to': '0xbfa92891726ed7a58d9ab38bce5be0578cc57868', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x42fd50235a0e639e052796f13de916d118e82d920ff2285a8233cc42f85d19ac:log:129', 'hash': '0x42fd50235a0e639e052796f13de916d118e82d920ff2285a8233cc42f85d19ac', 'from': '0xc0574659dadacd09a36ec3ffc3eb667e49b4b816', 'to': '0xdd50635e1e0a9888dc94306467d52115626503e5', 'value': 11.83441301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4689e195', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x1c7e41970fe6b8957d787000e733f6635956cc9b4af5859ad5e1f8f84a65bfa3:log:130', 'hash': '0x1c7e41970fe6b8957d787000e733f6635956cc9b4af5859ad5e1f8f84a65bfa3', 'from': '0xec184a5630786fcf8604cf43c2931cd2f0191abb', 'to': '0x51e7920e7b6669e9d892048c6035cca658a2b56d', 'value': 5.12627889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e8e14b1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x162446956c51ebb5e20c58f8526390cac46e8b0b39113663429fccd46ed55b15:log:131', 'hash': '0x162446956c51ebb5e20c58f8526390cac46e8b0b39113663429fccd46ed55b15', 'from': '0x5bc6aaa14e003de6751b9e2dad71e0f21c82d78d', 'to': '0x1ad60916342e3316b7e13b2fbcdcee66a77273c5', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xc83d7ef76b155904f088b2e57ddf134d4ef175fcaca785f53290e20e7ead48c6:log:132', 'hash': '0xc83d7ef76b155904f088b2e57ddf134d4ef175fcaca785f53290e20e7ead48c6', 'from': '0xf468fe8856cc3cbd174652492d11550f2e8bfcaa', 'to': '0x5edc47cf01f9140ae310d3602b832f21264a4fb7', 'value': 7.23131133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b1a1afd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x3a2ab97d1c610e920ea1e8ae241204cdbd692e5f68913e9ec26b1d46d5b84c6e:log:133', 'hash': '0x3a2ab97d1c610e920ea1e8ae241204cdbd692e5f68913e9ec26b1d46d5b84c6e', 'from': '0x2865130a87a033b3b7b4bef1cfe4339313d09246', 'to': '0x2ae27fcf7c800c7ec9e22aaf85a2fef90bfb0816', 'value': 4.2130092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191c8ab8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x27e06a620986436ac55f623a7622c885a8aa22c11449080483104c6914d3ca84:log:134', 'hash': '0x27e06a620986436ac55f623a7622c885a8aa22c11449080483104c6914d3ca84', 'from': '0x868beb5133a6ab83ed1b1ff3239b38329c80037e', 'to': '0x03eb5d0da3c7547be6a8816d90238eb454c2e3e2', 'value': 16.95371367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x650d5067', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0xe716544bf699a23a5c6e86cc15b98393f28bf8580ca65251024058220b1ea6de:log:135', 'hash': '0xe716544bf699a23a5c6e86cc15b98393f28bf8580ca65251024058220b1ea6de', 'from': '0xac2b92cb8d800ac17ae0c7e9753d7df3a92fb6f7', 'to': '0x5adef96a36f823cfded2f3c9d387ca56ce219ee5', 'value': 10.32687617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d8d9001', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x4137a5d3561a771e65ac3d055f82e160764542be005ccbbd17669e2d2dae380c:log:136', 'hash': '0x4137a5d3561a771e65ac3d055f82e160764542be005ccbbd17669e2d2dae380c', 'from': '0xd44ccb40f71a8351d04e6295639546b25f9b817f', 'to': '0x280d35fe41a13d024d19ceb1dcb3e94b0f4b26c7', 'value': 5.0061877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd6d612', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2b', 'uniqueId': '0x2fbaec5868d602b1be1660df5f20bda2c83119b31d27dfdd6f820643b7ab0317:log:137', 'hash': '0x2fbaec5868d602b1be1660df5f20bda2c83119b31d27dfdd6f820643b7ab0317', 'from': '0xf83f544015bd64a2957615e9cce15cbdec536d9e', 'to': '0x9f5554a0d0dffee8fbff139e4f20e0f5d7879837', 'value': 14.02421652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x53974194', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:48.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0x9b3f03c9cd1c2a54c92401bce84806978251ab4ef366dd0a7d3ededfbb892907:log:59', 'hash': '0x9b3f03c9cd1c2a54c92401bce84806978251ab4ef366dd0a7d3ededfbb892907', 'from': '0x62dac0b2b509dd5b96804173827dc19bf4ac9f36', 'to': '0x7771768d77d7920a71d171c9a81b8c2e218bb7f7', 'value': 3.41189683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14562433', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0xcf7eb191bab3b1d38d840cf3b571d07a256095e2f90054120bf8ef08c64019cd:log:60', 'hash': '0xcf7eb191bab3b1d38d840cf3b571d07a256095e2f90054120bf8ef08c64019cd', 'from': '0xc544328161f0b81643594611713afb990629bf04', 'to': '0x2e06850fb59c794cf30cb03f8e57844590512180', 'value': 11.68633516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x45a7eeac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0x755fc4f6c6d31fc7e2469b8916b5a24783e29fc750f68c0883f2e0d1943dac4e:log:62', 'hash': '0x755fc4f6c6d31fc7e2469b8916b5a24783e29fc750f68c0883f2e0d1943dac4e', 'from': '0xc5bdb203a2f7c1866b1ecc0605dc87c5b6499b37', 'to': '0x1298865bb36a314c9d7e07316159ccdad5aabebd', 'value': 8.09805272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3044a5d8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0xd722bf0215e3972f5c8cef78850adfbcf803b97aeb7410711945567bf986fd03:log:63', 'hash': '0xd722bf0215e3972f5c8cef78850adfbcf803b97aeb7410711945567bf986fd03', 'from': '0x2c9890ac63aef3f4a8fd65154157d0a17770d32b', 'to': '0x38bc0942da332c6875809bed6c519692bd00a0f8', 'value': 4.2158741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1920e9d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0x2048c4a7cf33026725f09a9f85639e748170890c2292b44ceeb2994701c6817d:log:64', 'hash': '0x2048c4a7cf33026725f09a9f85639e748170890c2292b44ceeb2994701c6817d', 'from': '0x0b353383d3005a7d81cd3162e6035e2eaf8f58ae', 'to': '0xb8da55abbaab31283f8157a9f35de597a976164e', 'value': 5.03343569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e0069d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a2d', 'uniqueId': '0xbd63b57155462a0cbbc04f8ac09ef72e27405496a76d18d110b21c3453db506b:log:65', 'hash': '0xbd63b57155462a0cbbc04f8ac09ef72e27405496a76d18d110b21c3453db506b', 'from': '0x6c0b4dac08151b25503546ea94c65efd19cb6f77', 'to': '0xa6ef7e59048cfe0764ee71cf3e695c8f1abf63b3', 'value': 3.42049696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x146343a0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:05:58.000Z'}}, {'blockNum': '0x687a49', 'uniqueId': '0xb5b06719463a882653617113448554a461aa6f619ed1ac600842cd1f2cec0af7:log:49', 'hash': '0xb5b06719463a882653617113448554a461aa6f619ed1ac600842cd1f2cec0af7', 'from': '0x0bab084b077bd4fd5a1d9fd95237520877dc9498', 'to': '0x6cd5bbd88d38a450ca473d3122fe6dd8c8864eb4', 'value': 22.56328826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x867cd87a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:12:59.000Z'}}, {'blockNum': '0x687a49', 'uniqueId': '0xf4e2dccc18523e85ffe4df1d8befd892c048023e66c840ed46f6ed1b6eb65cd1:log:50', 'hash': '0xf4e2dccc18523e85ffe4df1d8befd892c048023e66c840ed46f6ed1b6eb65cd1', 'from': '0xe81d794ec4fcc8c8007dbdff02ceaec001e081f8', 'to': '0xa67f47495b8cb2b13d945ca1253e7171c8968cf6', 'value': 6.50315808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26c30820', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:12:59.000Z'}}, {'blockNum': '0x687a4c', 'uniqueId': '0x03420a4707a29e14e0a2f763aaad9efc46f3e5ea6667a8819bcf01868ec957a1:log:167', 'hash': '0x03420a4707a29e14e0a2f763aaad9efc46f3e5ea6667a8819bcf01868ec957a1', 'from': '0x59a82b944ba0178ee9da6811a702af7f6954a281', 'to': '0xf1f1a7a52edad2753e1a514667797958a1a0958d', 'value': 6.58190034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x273b2ed2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:13:31.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0x41b3eceabf47b83d8aee6ee781f7bec4aa6ede48601b3b99fbee5f3b334c318b:log:79', 'hash': '0x41b3eceabf47b83d8aee6ee781f7bec4aa6ede48601b3b99fbee5f3b334c318b', 'from': '0x83736c67de6b9e4c24e72560ee37d956c65921c3', 'to': '0x88d67a7c4c1a58f1b67408036eaf19a90a032119', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0x7da70b37eaeb32acb3c05a74b71eea1cd671fb043d0b09b26a76444edb39722b:log:80', 'hash': '0x7da70b37eaeb32acb3c05a74b71eea1cd671fb043d0b09b26a76444edb39722b', 'from': '0x160dade820d301d17138fdf1d2b8cbe667ab9d2e', 'to': '0xf53b53e5f681659965c41f310bd978a08b62cae6', 'value': 4.98599896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1db807d8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0x2a185c1ba07c072f336a81551d3ff973d255b91aa2a601509f9ba6c12eea2794:log:81', 'hash': '0x2a185c1ba07c072f336a81551d3ff973d255b91aa2a601509f9ba6c12eea2794', 'from': '0xaa3a5ca5ed9788eafa43af49dd61d156483be5f3', 'to': '0x2ad4088c39416fa04a151c7e46f58fb2660ff10c', 'value': 10.42853757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e28af7d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0xe3bf3e35bc4a0c152405e8006339c16d8d0c05852a4f51f21793fbd1318e3194:log:82', 'hash': '0xe3bf3e35bc4a0c152405e8006339c16d8d0c05852a4f51f21793fbd1318e3194', 'from': '0xb2dfe9bb99b5f8144a4f0977fee6c0a1df35cbe5', 'to': '0xa535a92e1c9dd77731ecbc901d0725039d0ff644', 'value': 10.40504722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e04d792', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4e', 'uniqueId': '0x0bcafd57a5019ef0c9c3d9e99e6d5bd19657e3ef9322f5c5a05a794151bacb3b:log:83', 'hash': '0x0bcafd57a5019ef0c9c3d9e99e6d5bd19657e3ef9322f5c5a05a794151bacb3b', 'from': '0x5ffafd908d00893a1598cee525ce6a6c2f6ca510', 'to': '0x9bbbaef183f59e8d445a16645001abc65c9baf12', 'value': 7.74962886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e30fec6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:01.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x1ac5ef30703c214307d9ab0580db5dc896402edc2c48f8e5543d33affac5766b:log:49', 'hash': '0x1ac5ef30703c214307d9ab0580db5dc896402edc2c48f8e5543d33affac5766b', 'from': '0x10f28d641f572c071bae7bd02b13e51befc12fcf', 'to': '0x7bff84339eb1fe5608a04d29c764613efe874597', 'value': 6.37429298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25fe6632', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x3d673034bcff00ec8d1245ae91b58018aa96a02fa0def8792d77b652217fccc8:log:50', 'hash': '0x3d673034bcff00ec8d1245ae91b58018aa96a02fa0def8792d77b652217fccc8', 'from': '0x4e32a4399ddb5c1fccb21b2ef25cb54ef3872354', 'to': '0xba1f290221d9e633ca33649088a3a19b3bcea86d', 'value': 5.02363112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1df173e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xd4bb4b27910faf0093a9ffa31b39b984545ba16d754a6576ce4df53842d31b0c:log:51', 'hash': '0xd4bb4b27910faf0093a9ffa31b39b984545ba16d754a6576ce4df53842d31b0c', 'from': '0x6d221e875404e27e6bdd66f088ad1aa1cce9fea6', 'to': '0x9c6506fc32b78f5244c671f99708a4defc8fc38e', 'value': 5.77841975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22712b37', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x05428498972ec8c50d8b47511e99bcd9bc62dfc84266571fa38af3470b30b066:log:52', 'hash': '0x05428498972ec8c50d8b47511e99bcd9bc62dfc84266571fa38af3470b30b066', 'from': '0x9ee3d2234f8180917366cd98b3c29110e2e92503', 'to': '0xb3111986cc59501176bc98fad7e932c51adc47a0', 'value': 6.2977221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25898fb2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xb098bcadc909541fcee79f0ae1b95f6e72d2975d530cc7a2810061a6ecef100d:log:53', 'hash': '0xb098bcadc909541fcee79f0ae1b95f6e72d2975d530cc7a2810061a6ecef100d', 'from': '0xc2db642868ace8400a4e793d2702ba01d7b2d01c', 'to': '0xd726cec388664e8cf21f85d36331526c508641a9', 'value': 5.22020628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f1d6714', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x21d8ba90456706a9d7ddc596ec7b0b465a571bed0e9aa4ea602c209fb927bdcf:log:54', 'hash': '0x21d8ba90456706a9d7ddc596ec7b0b465a571bed0e9aa4ea602c209fb927bdcf', 'from': '0xc4067b3b7e3fce49c7fecdf52ed1d7fca87aa1fd', 'to': '0x3996fb79f34d10e1ac0efa5c8abd1f25b3160c8d', 'value': 16.84869907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x646d1313', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x454f3ee4eb0a92c8e384f580b696ab9e1187e9601205e0818d5ef331f0180843:log:56', 'hash': '0x454f3ee4eb0a92c8e384f580b696ab9e1187e9601205e0818d5ef331f0180843', 'from': '0xfe561ea3653ad9a64bfb331508487453c857baba', 'to': '0x928bac6d9996f4940cb4526281dff731b98500ed', 'value': 8.96931649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x35761741', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xd3be05da7c61d48b8f6f4f5e96e1f8b6a8bbd6fb6cf653f70aff5a8cbc4f7436:log:57', 'hash': '0xd3be05da7c61d48b8f6f4f5e96e1f8b6a8bbd6fb6cf653f70aff5a8cbc4f7436', 'from': '0x8c46bf40712da49b25ebf036092933382bdfcdc4', 'to': '0xe0bce4c5cea77e81652fcda1ed5da73051996f85', 'value': 5.50774284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20d4260c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xbc7033c9d68bcaae24167ed07073c52fb71b174f389ec5c004db95dddfd0b299:log:58', 'hash': '0xbc7033c9d68bcaae24167ed07073c52fb71b174f389ec5c004db95dddfd0b299', 'from': '0x6c0cd756d9f22209295217bbaafe658d580d990f', 'to': '0xf3bd53b4e2321deefdfe942eb218527c7562c2c2', 'value': 5.73319644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x222c29dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x114c9aed0add4f28f1be6dbfba5df26c3c3d216a7f239f223c71b1c2be053277:log:59', 'hash': '0x114c9aed0add4f28f1be6dbfba5df26c3c3d216a7f239f223c71b1c2be053277', 'from': '0x48a67be7fc3673e3e6f32a041e8acdda77ebb5ed', 'to': '0xc8051da6d4e4ced69a4e0e8aef4297138a5cd9c6', 'value': 6.81555892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x289fb7b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xb17a29577d3d222612a03196c1b63606f47f5e97bb5ed407518dfe77a521ea82:log:60', 'hash': '0xb17a29577d3d222612a03196c1b63606f47f5e97bb5ed407518dfe77a521ea82', 'from': '0x7c06e3d477de7641ecbeac1a91def5e39ab29310', 'to': '0xe3d09435cfcf03cb777b463949478ed8f58d1d25', 'value': 3.41689782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x145dc5b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x98dbade7d4f672d484a1aaaa4b880b8ab77749f9626acc834ef8d16976bdbda9:log:61', 'hash': '0x98dbade7d4f672d484a1aaaa4b880b8ab77749f9626acc834ef8d16976bdbda9', 'from': '0x4af13624ce504aa74fef7c559ba62cbe6d5d0f48', 'to': '0xbf2b673bc2b50310a22f2b48ace89ea2389981ad', 'value': 6.24597063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x253a9847', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x58c09f292b8ef60f386f994232ba0409bba1255eb38b930bf86ce69e48e571ae:log:62', 'hash': '0x58c09f292b8ef60f386f994232ba0409bba1255eb38b930bf86ce69e48e571ae', 'from': '0xe7cfb8129fafd47872e1d8decdec408e55501b68', 'to': '0xb36dfccbb8325c4a8f05b5a3eac0f7cce3aee8a4', 'value': 5.06422316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e2f642c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xc33502453db4eee2b41167badcb27da05a4b4dd45e77995ae1ddd172780eeca7:log:63', 'hash': '0xc33502453db4eee2b41167badcb27da05a4b4dd45e77995ae1ddd172780eeca7', 'from': '0x2ff51f31c55d7c6ee9edf975fe71ee25d82d0007', 'to': '0xcc372df5b2c8a4eeb5852c5b15a15ddac7add162', 'value': 12.7702969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c1ded3a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x286b6a4db6fa1d2615583085a430091c0dde471a017843fd6ef0b3f4cd7d7e45:log:64', 'hash': '0x286b6a4db6fa1d2615583085a430091c0dde471a017843fd6ef0b3f4cd7d7e45', 'from': '0x8b937abf3ed94271915350aacc747603ac2f3159', 'to': '0xf551d8b8a3822c5778ac2a083812a86ffceedec3', 'value': 6.37337735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25fd0087', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x034c4fb840227f4fd26824ef204c37407bf24a090335cdbe1ea21f300ba9ef00:log:65', 'hash': '0x034c4fb840227f4fd26824ef204c37407bf24a090335cdbe1ea21f300ba9ef00', 'from': '0x1172d8eccb4fba2303408fa6243af5083bd7f9e4', 'to': '0xb60db934db1b8233b79e0cdf7f50fa140a7c4d98', 'value': 4.97468779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1da6c56b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x0f8542bfc6dfe7bf26a65d4b72600048ed0f278e3d5e50f29a25e35e45aff0dc:log:66', 'hash': '0x0f8542bfc6dfe7bf26a65d4b72600048ed0f278e3d5e50f29a25e35e45aff0dc', 'from': '0x95cf6d3c3ec66bc036aef828889140c1a51383d0', 'to': '0xaadcb2a59303003f621ba51911ee63a538379108', 'value': 6.43616161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x265ccda1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x506ffd811ecd0702f5279781365af49c35bdf313ead36b1446c39306a7710ac5:log:67', 'hash': '0x506ffd811ecd0702f5279781365af49c35bdf313ead36b1446c39306a7710ac5', 'from': '0x6a259e99fa1fc330aef62ca9617a50fd47031ec7', 'to': '0x80b36c85225eda7de157adab49503685a59abc9c', 'value': 7.16979572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2abc3d74', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xfec5cc9e178d61aa7d3c2a465b395235366f493ed1c1371dda863e7a26e1791c:log:68', 'hash': '0xfec5cc9e178d61aa7d3c2a465b395235366f493ed1c1371dda863e7a26e1791c', 'from': '0x0db674b4f60eb99bb307707659536df408a4af12', 'to': '0x7b779a50beeb27014c375360e4b5ae4a271d19b5', 'value': 14.83420737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x586b3441', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x434e75827a4c4001f14468c0a64a0eb158a5d69a48818538bb920ee0af257bc9:log:69', 'hash': '0x434e75827a4c4001f14468c0a64a0eb158a5d69a48818538bb920ee0af257bc9', 'from': '0x5f5207c7d746faa6e55581a4f0614446fa490cbb', 'to': '0x8847b8a40731674efc8fc4636a370e9564335eac', 'value': 6.00984056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23d249f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xfb2dfdd43dc0c8ff0ee13b1cb0ddda1c26d32fc39645df66c05b01b740cae528:log:70', 'hash': '0xfb2dfdd43dc0c8ff0ee13b1cb0ddda1c26d32fc39645df66c05b01b740cae528', 'from': '0xd28ac4702be000ce91daada78c500712739a7e1e', 'to': '0xd07cf88b537b389bcacea7b172b42818ce55c236', 'value': 5.02632641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1df590c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xd80d396cc6b45ec993f98989db7a169713fc785b770d35cdf329b6a6addd1f75:log:71', 'hash': '0xd80d396cc6b45ec993f98989db7a169713fc785b770d35cdf329b6a6addd1f75', 'from': '0x7cd92cfee3a3c328f8838fdd60a13d8557591f7f', 'to': '0x63ef3a89642e3b89240c977345ba53d72008f6e7', 'value': 3.40877281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14515fe1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xa3995cd14222c11f54ecbe8e58e84bead6b6c23a9c8140b8b88cd0455a357f57:log:72', 'hash': '0xa3995cd14222c11f54ecbe8e58e84bead6b6c23a9c8140b8b88cd0455a357f57', 'from': '0xfb14f5447d09c4fbae8feeefcb730f6d65eae9b0', 'to': '0xcda359a56d097dc3ef23ea2bb106c29164a168d7', 'value': 7.50199734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2cb723b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xd3af4b3b06de5f2eb9e628b781d2555d44f6ffad9695357b6aae2ef3fc405c77:log:73', 'hash': '0xd3af4b3b06de5f2eb9e628b781d2555d44f6ffad9695357b6aae2ef3fc405c77', 'from': '0x53319a3bb049e353d8d45701068f42925cce1e23', 'to': '0xec04f3ecc9f9b8bca37bb7af0de7e00de4953967', 'value': 5.17156258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ed32da2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0x49efb8e9a1771648678211ab1c5d7073884181633ac74bf06dd03f1ecccc5230:log:74', 'hash': '0x49efb8e9a1771648678211ab1c5d7073884181633ac74bf06dd03f1ecccc5230', 'from': '0x4242bdb9a762c38ff4dddc0caebd0c2322d0bc73', 'to': '0xa9b02dd56c423847b01452c15dabd8f77eacf626', 'value': 10.20803742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3cd83a9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xc8616f7545cbf80a348d307995959a4ae31e03f3d04c39f93a3496945fb6aeac:log:75', 'hash': '0xc8616f7545cbf80a348d307995959a4ae31e03f3d04c39f93a3496945fb6aeac', 'from': '0x145df097db3a08da0acdbb8d40e3c01abf2afef3', 'to': '0xa0ad5c4186892bdad332d4781025ac9c132dd4f8', 'value': 10.00022249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b9b20e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a4f', 'uniqueId': '0xe0aded15223048f0f53dc728db36f1ec88adb14a2aa897b76cf384c52101feae:log:76', 'hash': '0xe0aded15223048f0f53dc728db36f1ec88adb14a2aa897b76cf384c52101feae', 'from': '0x6b5c9c2f9649b8ebcfab00e8291df3c664d393ae', 'to': '0x9b34500dbf18576e6a3f0c3272120e78193ff130', 'value': 5.86478392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22f4f338', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:12.000Z'}}, {'blockNum': '0x687a53', 'uniqueId': '0xee59696c93ef31f66619ddd6e9048bfbc9df050be247441a4936f09193314a47:log:113', 'hash': '0xee59696c93ef31f66619ddd6e9048bfbc9df050be247441a4936f09193314a47', 'from': '0xea6c38fde1748cc0f811ecaab3bfbe2f44bb5deb', 'to': '0x5238749ddf7377c9d162ced25d9daae2e090968f', 'value': 25.24088789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x967289d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:56.000Z'}}, {'blockNum': '0x687a53', 'uniqueId': '0x9604a7149bd7f6a789ef8d842937e21bbcaa2bbc3b357e74c5511791a6a52c49:log:114', 'hash': '0x9604a7149bd7f6a789ef8d842937e21bbcaa2bbc3b357e74c5511791a6a52c49', 'from': '0xa28a71af8131264c80d7f1f71e3dbc78b06edb85', 'to': '0x6d714e4254651739c9a8e7c37ef4cd7246452e87', 'value': 6.73312469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2821eed5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:56.000Z'}}, {'blockNum': '0x687a53', 'uniqueId': '0x2b10d3c5fb12c79b3b1b5ac9f342be314439dce8e5534750d0a6231d1ec45eb0:log:115', 'hash': '0x2b10d3c5fb12c79b3b1b5ac9f342be314439dce8e5534750d0a6231d1ec45eb0', 'from': '0x5462bc6d3404875dcc46b432ec852e16f52e466a', 'to': '0x3131df74ee56c78e395114e1aba7e3a44a8e1335', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:56.000Z'}}, {'blockNum': '0x687a53', 'uniqueId': '0xb2dd3f1d2c06c200997036b554e8aa3eaf71924dbd63319556292ed84f21486e:log:116', 'hash': '0xb2dd3f1d2c06c200997036b554e8aa3eaf71924dbd63319556292ed84f21486e', 'from': '0x0e33fe78c608c4f3d49c57c88187da0acb4fe472', 'to': '0x39c9a316faaa1fd99dbea2dd576d248c0ba30ac0', 'value': 22.6985974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x874b4f9c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:56.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x481a56f42a7685a25c7356fc39416cb2438e85354dac5ef258328acef54691dc:log:135', 'hash': '0x481a56f42a7685a25c7356fc39416cb2438e85354dac5ef258328acef54691dc', 'from': '0x7919dd20860d8ec9877bcf5494ba91443a7977f8', 'to': '0x9b98d87dc8d5297ed52edfd0a1aaf5ae876590c2', 'value': 7.90469412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f1d9b24', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xe62a2bf1014b6dd39d485fce52783b064daaa09447e17b93067f40cefe3032b5:log:136', 'hash': '0xe62a2bf1014b6dd39d485fce52783b064daaa09447e17b93067f40cefe3032b5', 'from': '0x1735be83252f0f1073fbcccfa98ff784ca3182d9', 'to': '0xa272f7e08b4a85c31720ba6309517b9761d5cbc9', 'value': 6.5098162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26cd30f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x1d439356317d099cd6b6d89175d816da171df69d8bfc497d914abafb14ef699f:log:137', 'hash': '0x1d439356317d099cd6b6d89175d816da171df69d8bfc497d914abafb14ef699f', 'from': '0x435aeaacb159607b25ddc2f0f103a32a7e24afc8', 'to': '0x185a157268009382a972464af28804e7eb214853', 'value': 21.71130947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8168d443', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xa28fa4ab7dbf24843d88be4c08d85001810eda68b6b45564744d8b228b445dc1:log:138', 'hash': '0xa28fa4ab7dbf24843d88be4c08d85001810eda68b6b45564744d8b228b445dc1', 'from': '0x0f46aba99582345336f0789d0e9a2e2ef15f528a', 'to': '0x76a35502cf2f724bbe4bbe1f30b2dd91dd8e960d', 'value': 16.73706185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x63c2bac9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x0c748992eb32ef3adeda0a1eae73881c3e52db4f077a8adcca650bf6347a409c:log:139', 'hash': '0x0c748992eb32ef3adeda0a1eae73881c3e52db4f077a8adcca650bf6347a409c', 'from': '0x3f47067fe75f5512ccc01df0ba43fa3bd4c26f33', 'to': '0x8362412a076d0503d0b40a59624eac22c707b4b6', 'value': 11.74173026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x45fc7562', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x33446e5268710e9a43fec743ca31a49c69194fdedec93441156433d18449794f:log:140', 'hash': '0x33446e5268710e9a43fec743ca31a49c69194fdedec93441156433d18449794f', 'from': '0x8215ff8bbd0a48e6be706c13821e096391b780e7', 'to': '0xaa70eb768dcc6bd23e1192ffa24f5ca5977220f0', 'value': 3.40174486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446a696', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x7ab7c32c9443115456837298f757e723727d6161a3d67ff39214d6617f17ad4e:log:141', 'hash': '0x7ab7c32c9443115456837298f757e723727d6161a3d67ff39214d6617f17ad4e', 'from': '0x15a6b8aae41219f501aef3393a976ad3c02db370', 'to': '0x54cbbc774ea8adb5b015ecf2506cdab6d2da4913', 'value': 9.87799669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ae0a075', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xd0873fc9d5c8c7e06fdd120ffd02ca99ab971250639d3127d3c3f201612e36db:log:142', 'hash': '0xd0873fc9d5c8c7e06fdd120ffd02ca99ab971250639d3127d3c3f201612e36db', 'from': '0xbff9845c0a4cd326bb812fcd05417f6652e36d8a', 'to': '0x9c999f4cc1518a665757c467b9d082df666a1e2e', 'value': 5.31272363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1faa92ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x194e942de3d95dc5790ab854dc710c72fdf0dd3dd34cadafd4823d475f86e402:log:143', 'hash': '0x194e942de3d95dc5790ab854dc710c72fdf0dd3dd34cadafd4823d475f86e402', 'from': '0x396ce61a01efdf3cfcb883b76780f27ed8e02e2c', 'to': '0x157904e01db63cf75ad9b317fc848066a949a460', 'value': 5.99496167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23bb95e7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x3381e9b3382336c9ee2c4e181cecd5c455c168d3e0b5dd5bc8d01239348da6bd:log:144', 'hash': '0x3381e9b3382336c9ee2c4e181cecd5c455c168d3e0b5dd5bc8d01239348da6bd', 'from': '0x67d6c872b85a07140f869fdfae8c78482e8e227d', 'to': '0x99a4c06eea29a796c9e9a4dd94bffd5028d60121', 'value': 34.08953108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xcb307f14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0x6c7460072caf656400864b0232563003f95e757524ceab72a8b194933773dc2b:log:148', 'hash': '0x6c7460072caf656400864b0232563003f95e757524ceab72a8b194933773dc2b', 'from': '0x1e7662f385b8208f25fe2036b7f5bc9db43f5752', 'to': '0x3acfdd816866f6822b287f4676cbb699e428e9aa', 'value': 13.0283358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4da7a9ac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xd6d31fa2afc28cefb79253ba15f1263085b05ae9f89934ccac90722051f40667:log:149', 'hash': '0xd6d31fa2afc28cefb79253ba15f1263085b05ae9f89934ccac90722051f40667', 'from': '0xe470c465262ad11ae4f293bb360fc16faf6a0204', 'to': '0x5c5527c6a90fb93db1ae3b7c1814201f8c342f45', 'value': 7.24547107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b2fb623', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xe33989512a1e0b755efa63ea4d80abbfddb7f2a19bac17032477fc6eb4507b67:log:150', 'hash': '0xe33989512a1e0b755efa63ea4d80abbfddb7f2a19bac17032477fc6eb4507b67', 'from': '0xb7db23d0816917bf9ff7ec34aaf9875b85c7384a', 'to': '0x5f4bb80c5bf607e67246b51cb5a939602ce05d30', 'value': 6.45893373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x267f8cfd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a54', 'uniqueId': '0xd1a6fc4e9fb3118879c06fdc62a5994754c1bcf1aa1e4f52a0e76103e6f3e84e:log:151', 'hash': '0xd1a6fc4e9fb3118879c06fdc62a5994754c1bcf1aa1e4f52a0e76103e6f3e84e', 'from': '0x9d7dc2c263bfc38f8db1367c320520d1fac98dd5', 'to': '0x7f516ea00797663574af79922549e6769e58cf8c', 'value': 4.3609886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19fe572c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:14:59.000Z'}}, {'blockNum': '0x687a58', 'uniqueId': '0x8d6e29e176900136532b75f62bdd48feddd54c55741a58e588ec3db08e26f0a4:log:154', 'hash': '0x8d6e29e176900136532b75f62bdd48feddd54c55741a58e588ec3db08e26f0a4', 'from': '0x7873fa008a1658e5a035c49966040a6e16df6b63', 'to': '0x04a45fa4ac8a25f49198b96ee4454eb9ea1a8754', 'value': 6.6344536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x278b5f70', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:15:53.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xf3d5f6805b605e5abbb4d97c182cdb15b87808c330b1f4f20651bdda69cd4cc3:log:79', 'hash': '0xf3d5f6805b605e5abbb4d97c182cdb15b87808c330b1f4f20651bdda69cd4cc3', 'from': '0xd3cca207d2c8ff5231f2f32ba0e4ef9908b90ec9', 'to': '0x43fdd0bc0d9692bdeb136fc926c8d4b06d1f8f3f', 'value': 5.31719409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fb164f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x3e691b59877785f83d70e295e7156b99a7dd4827c0c56f3737f02bb3b8798787:log:80', 'hash': '0x3e691b59877785f83d70e295e7156b99a7dd4827c0c56f3737f02bb3b8798787', 'from': '0xc66a57982b931465ab6c774469daccd00be7836d', 'to': '0x3a8cab54b72fa013c6bb1a70f3150805e6a95db7', 'value': 11.21494199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42d8a4b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xac7d41863e5b625043422fcbb2eb0179f10ba70aaeabcf2feb4d267da6d54504:log:81', 'hash': '0xac7d41863e5b625043422fcbb2eb0179f10ba70aaeabcf2feb4d267da6d54504', 'from': '0xbbae72842c96fc873d83da501d97f13e854b1f14', 'to': '0x4b83010aed138586367e9846f8e38b6fca25f598', 'value': 3.41150921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14558cc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x1a32d4c77ddd6d36a703bf2d74578209c998653dd4bf6e04135a399f85390fc4:log:82', 'hash': '0x1a32d4c77ddd6d36a703bf2d74578209c998653dd4bf6e04135a399f85390fc4', 'from': '0x35f84a8f5bda039fdf193a4025d5bf2286fa6886', 'to': '0x30fc371761e14a7ec1edcb34398b38ba8d33e796', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xe546a6d2c68612675ded3a4c3a91ac2edda2dc713ea6337440e337f2c561d757:log:83', 'hash': '0xe546a6d2c68612675ded3a4c3a91ac2edda2dc713ea6337440e337f2c561d757', 'from': '0x91cad59c3f786def78fc164f77e142502ba144ec', 'to': '0x0bada4ac567a20f4f992b10a982f8407cdc6ebde', 'value': 13.97973906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x53536392', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x9934a132c2911239d3a40796189f7a1b7ddacac8f5d054e69abba3374cb1333e:log:84', 'hash': '0x9934a132c2911239d3a40796189f7a1b7ddacac8f5d054e69abba3374cb1333e', 'from': '0xc9ff7cec10cee58e870b7fb1c9bf3a261839e892', 'to': '0xc2a2f80e4846f4dda0d98b788a840580e96a2d55', 'value': 5.40577698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20388fa2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x95ef2f1ecf34c0e8b3b468a3390531d4b8a2d1c002671e89aa812c9e5a13e661:log:85', 'hash': '0x95ef2f1ecf34c0e8b3b468a3390531d4b8a2d1c002671e89aa812c9e5a13e661', 'from': '0xa44d495b07ae37e62de1e0c0bc436c8b078a2804', 'to': '0xd426198a75c857276a2d82cc26b1c6b848bcadbf', 'value': 7.81865213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e9a50fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x6f7fd84bc1479e99e9474fccd4081c3aaf81e2034f44ebafb73f7d10f62b22b9:log:86', 'hash': '0x6f7fd84bc1479e99e9474fccd4081c3aaf81e2034f44ebafb73f7d10f62b22b9', 'from': '0x6a4f6e58109c009a9b8406ef27b88cce138c2b4c', 'to': '0xe4c492ce6763f5ec715e4da567461cc70451b058', 'value': 3.41615943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x145ca547', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xd170945eb58d534dd2aa5f33a945a4e049a7ba77ee34efa9d3bddab86a4fc547:log:87', 'hash': '0xd170945eb58d534dd2aa5f33a945a4e049a7ba77ee34efa9d3bddab86a4fc547', 'from': '0xf2f731535d46d18bda62df7f0409e7bb1467aa71', 'to': '0x56417a9a961d23d1383aa3f59bd757e19723578f', 'value': 20.84352205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7c3cb0cd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x3c4c85be7390ef54f0de63c19c64e848f429cf12f198f0540045e78daf5eb3cb:log:88', 'hash': '0x3c4c85be7390ef54f0de63c19c64e848f429cf12f198f0540045e78daf5eb3cb', 'from': '0xe983e3fe5ff68800b79c10be9bb68ea4f7667f20', 'to': '0xbac757fd3ca39f7b731c061cb6c6c205015b4222', 'value': 10.09972813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c32f64d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x73968fc8e3f2ec6866350b4c6a5f5939ffdf4d4c58cfd505f586c8cbfc0166fa:log:89', 'hash': '0x73968fc8e3f2ec6866350b4c6a5f5939ffdf4d4c58cfd505f586c8cbfc0166fa', 'from': '0xacff4bff72bc1eb91d1056341c5b6e82206cefdd', 'to': '0x34339d0db7605ebbe246376482f2c68fb8d2b7a6', 'value': 3.40891906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14519902', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x81216a3e979eecc823c16b60d20cbd9ba8a524fbe40a6da4e1597e97f1486f62:log:90', 'hash': '0x81216a3e979eecc823c16b60d20cbd9ba8a524fbe40a6da4e1597e97f1486f62', 'from': '0x843f4751c4032b19ea91695e1666c267827e77ca', 'to': '0x8e30389c62eb036bb434f3af17e7f3e21223f376', 'value': 5.04285434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e0ec8fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xd98ce7f7fd448846c0bafc203391a454b7a82e3d76147b6d1aa138c5a5b19d0e:log:91', 'hash': '0xd98ce7f7fd448846c0bafc203391a454b7a82e3d76147b6d1aa138c5a5b19d0e', 'from': '0x42df4763195e29b310e279db8f76adeba871531e', 'to': '0x10baa3c807bc52cf001299e91daec22928675d4f', 'value': 3.40177386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446b1ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x826f308b3b0e38aede13a6bc5eb04530a8cdd05f4446bdb15913a9c9f1f82561:log:92', 'hash': '0x826f308b3b0e38aede13a6bc5eb04530a8cdd05f4446bdb15913a9c9f1f82561', 'from': '0xa05f593a53c35697323a2c2b4e2e17016857bfc1', 'to': '0x160990831774e0190f223958e471eee25836aa7b', 'value': 6.34814011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25d67e3b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xa195184c6368b90aa49039527e45b2d074f198b59b5bc0ea2f2aadd8e92ce718:log:93', 'hash': '0xa195184c6368b90aa49039527e45b2d074f198b59b5bc0ea2f2aadd8e92ce718', 'from': '0x5849f11779d379de798e205b857118bdf4fc92e7', 'to': '0x2dde0b9de43c34391211b330e9ac49c13496fadc', 'value': 13.08375039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4dfc37ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xd73cb30619233ddb417e4a68bd92b648f7702ab0860c58672f9f594b3edd21f0:log:94', 'hash': '0xd73cb30619233ddb417e4a68bd92b648f7702ab0860c58672f9f594b3edd21f0', 'from': '0x37ae05d15f3ff9e55a9794e2cdc6fd82cbfca6b0', 'to': '0x14a8f168e8e64cd18642f71f154e1aa15a6f8b71', 'value': 5.91644315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2343c69b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0x6eb62171e5a521714a12a5345679388d05ab045ad1595a076190932ec356914b:log:95', 'hash': '0x6eb62171e5a521714a12a5345679388d05ab045ad1595a076190932ec356914b', 'from': '0xa354bfd51b7a2fe092084788c9a3aa89c63e783f', 'to': '0xecc0035b4086ff544299c205e3b89de067ff6be6', 'value': 8.92237842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x352e7812', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aa6', 'uniqueId': '0xf1ebafee39f3dcd914c02cadefc5e5916bd86554033a62dd8ebac296fed1f233:log:96', 'hash': '0xf1ebafee39f3dcd914c02cadefc5e5916bd86554033a62dd8ebac296fed1f233', 'from': '0xdabe10b4be14a49abf612359c66ad75392bdf216', 'to': '0xc5833e12a09c9b390aedef93839f411e886be107', 'value': 12.9639271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d456206', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:35:11.000Z'}}, {'blockNum': '0x687aac', 'uniqueId': '0x48a2674f65fe7fd25fc681feeb83f61b72fc9f22eeee3301a7de1c44665cb0e9:log:25', 'hash': '0x48a2674f65fe7fd25fc681feeb83f61b72fc9f22eeee3301a7de1c44665cb0e9', 'from': '0x8f1c4f1ba09bd5972a408159a4db8d0d136605e2', 'to': '0xcb1ce783f98afdd460cb36b99d94d3b6f225aa5c', 'value': 5.16507631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ec947ef', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:01.000Z'}}, {'blockNum': '0x687aaf', 'uniqueId': '0x0c8e50d9ee1fc30d43bbc42c15b8e5a6e48fcf0beb89b1e6ddc78943b4fbff3d:log:56', 'hash': '0x0c8e50d9ee1fc30d43bbc42c15b8e5a6e48fcf0beb89b1e6ddc78943b4fbff3d', 'from': '0x915028f272a2dbc83ef9ba1580a7a3d0f78f3c5b', 'to': '0xd7c82c2c5d308d74e4a45569151006964684222d', 'value': 19.22041024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x729004c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:20.000Z'}}, {'blockNum': '0x687aaf', 'uniqueId': '0x6f1d369d956c556d33756efa165b9b4f99abc1d3fb56b5d5b987fa074fda32c3:log:57', 'hash': '0x6f1d369d956c556d33756efa165b9b4f99abc1d3fb56b5d5b987fa074fda32c3', 'from': '0xefaea7dc13bbc1cb0b12bd0df2050d16603a0d75', 'to': '0x5e049371b866e33f7f3a96d261903cd629608c30', 'value': 18.09957457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6be1c251', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:20.000Z'}}, {'blockNum': '0x687aaf', 'uniqueId': '0xe60e923e6426b9cfd6a49c70e1b0815ca43faeb791e171a72ad99194497ebfbe:log:58', 'hash': '0xe60e923e6426b9cfd6a49c70e1b0815ca43faeb791e171a72ad99194497ebfbe', 'from': '0x11e2884baaceea12ed90a7273562a406ced72162', 'to': '0xc1595735c4567fdad0ab4a6cf85154234efcdb4d', 'value': 6.34237575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25cdb287', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:20.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x306ea7fbf29ddee10a7009b9d9f49f1a2bb2d49b0bc7eda0be612a0d6fc4a3da:log:76', 'hash': '0x306ea7fbf29ddee10a7009b9d9f49f1a2bb2d49b0bc7eda0be612a0d6fc4a3da', 'from': '0x708cb06188162939556e013714e73d743107d050', 'to': '0x4899e9f024c77b2d9e3609eda3fa56bc0723e9f0', 'value': 5.90133849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x232cba59', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x070081630cbbda223fd39632e6a57cca22ff844c541c1552cb7f847eafb3d57a:log:77', 'hash': '0x070081630cbbda223fd39632e6a57cca22ff844c541c1552cb7f847eafb3d57a', 'from': '0x911de02be4b2a46fb81e8c3eb73da3124656f889', 'to': '0xc14f618177e03c7cc4ee91f89948a3e4266e1c30', 'value': 5.11154501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e779945', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x28f8e5d2e2971de0542d5d3f470170d14c7fb3f95f3ac548cff58c48e5704047:log:78', 'hash': '0x28f8e5d2e2971de0542d5d3f470170d14c7fb3f95f3ac548cff58c48e5704047', 'from': '0x3a23ea73678e50a8969768768dbb5465b2687fb5', 'to': '0x0e5d588cf1b15865b76b94efff3bbce60ded58e5', 'value': 9.67756476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x39aecabc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xa0714a55dff3c52e9a9bbe75d9c465a77ae9b63b052bc211298b7f0c4aac17b7:log:79', 'hash': '0xa0714a55dff3c52e9a9bbe75d9c465a77ae9b63b052bc211298b7f0c4aac17b7', 'from': '0xf8dedad4ea103636ed919e3b8454ba96bea771cb', 'to': '0xb898f1fac269d3962995354fc906ce57cf79974a', 'value': 11.02333482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41b4462a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xb01cffeba140512331c9be3f5d41a6b1c3f063decf8e2c3a0a1b44375d13944a:log:80', 'hash': '0xb01cffeba140512331c9be3f5d41a6b1c3f063decf8e2c3a0a1b44375d13944a', 'from': '0x4dbc159dfcfa762d2fe46f775bf66a8c820c532e', 'to': '0x74b32a58bb5161450da4944207b9e11c69be4c0b', 'value': 4.94032286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d72559e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xdfb845c45c686805ef5227e735683379a3021a8020c12ad38aefb22b7e7dfd6b:log:81', 'hash': '0xdfb845c45c686805ef5227e735683379a3021a8020c12ad38aefb22b7e7dfd6b', 'from': '0x4f447156a15a691a5c47f4d6a8fa9001ca46ac2b', 'to': '0xf1e4ab4fb57229f4894f1e6cc43ec281702f964e', 'value': 4.95869248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d8e5d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x8c28acb31e1f2403bec0cbc2076a7236874b45cd7177ed520aa508ff201c7898:log:82', 'hash': '0x8c28acb31e1f2403bec0cbc2076a7236874b45cd7177ed520aa508ff201c7898', 'from': '0x770e10818e0f47e1b6c037fd059d0d9a7bc9630a', 'to': '0xf1099e9a3b29a438a32e6fbcc04ed2aa2e6e3de0', 'value': 6.64097826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27955422', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xd956d92e16746c4f4283fe0d1ff52a0ece6739d04d8f5471ec2e76bb097d78d5:log:83', 'hash': '0xd956d92e16746c4f4283fe0d1ff52a0ece6739d04d8f5471ec2e76bb097d78d5', 'from': '0xa06659106ca0d8c69ffa670e0af91554681505dd', 'to': '0x11f69aac841fc6e55a372d1f095db481230bb154', 'value': 6.21762413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x250f576d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x8b692cdb27d01147898e94226c109ceec3912e4306b57e970f0b926a15ae33e5:log:84', 'hash': '0x8b692cdb27d01147898e94226c109ceec3912e4306b57e970f0b926a15ae33e5', 'from': '0x9fac28ef5fc1a6273b1f37392da13bb99fde8122', 'to': '0x7155b1744cfb3c7a5b8dee8184f7c80fb1d2db6b', 'value': 6.26326475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2554fbcb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x01892318b52972e9fdcd29d0a5559797583342d2b77a96bff1a996f7f3418d52:log:85', 'hash': '0x01892318b52972e9fdcd29d0a5559797583342d2b77a96bff1a996f7f3418d52', 'from': '0xc182fefa97c74e1b64f2d6a17a8b3840255658f3', 'to': '0x3c2536cd8d679121343940ddae0e0572cef7adc9', 'value': 3.40309286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1448b526', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xb102adf77e5678cb1524f92b727db18ced0e655881e0cfb1f51e740fa4cba574:log:86', 'hash': '0xb102adf77e5678cb1524f92b727db18ced0e655881e0cfb1f51e740fa4cba574', 'from': '0xb9542b4eeacf5745ff2a402d6074edba71d0aad8', 'to': '0x810ae5e74ce5bf023d2f499179cb450b0b420beb', 'value': 16.63831617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x632c0e41', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0xc7c2c361757be1a15c767dcefb925b750d7cbbe6f4adac3b6cc8a57c97d6e6dc:log:87', 'hash': '0xc7c2c361757be1a15c767dcefb925b750d7cbbe6f4adac3b6cc8a57c97d6e6dc', 'from': '0xb06474509410561ae244140fe6c39d3c692103d1', 'to': '0x0d50275b5c02f7a0ee71459424f53bc73078fcd3', 'value': 10.33772288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d9e1d00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab0', 'uniqueId': '0x4e84eb0d15f16a9bdb1639eb94d4e518371019d05f07f7e131b45b55435c8c2b:log:88', 'hash': '0x4e84eb0d15f16a9bdb1639eb94d4e518371019d05f07f7e131b45b55435c8c2b', 'from': '0x26bf8078dc1383b0485e01ad7b26988334d21f89', 'to': '0x99b71f8da3f21da9d8e78a6a2279e5b991a2b1ae', 'value': 5.8925188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x231f4528', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:36:38.000Z'}}, {'blockNum': '0x687ab1', 'uniqueId': '0x3ce77b5e24b59662dbc2b73dc3f23492910d1f3fb649e32c0ede2001d826ddf0:log:141', 'hash': '0x3ce77b5e24b59662dbc2b73dc3f23492910d1f3fb649e32c0ede2001d826ddf0', 'from': '0xdcadd8f2f8f6d2b309e0c884ca2ab7dea09b9082', 'to': '0xf89c775db4a997271180ed1edca77b155034ee66', 'value': 11.02969527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41bdfab7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:00.000Z'}}, {'blockNum': '0x687ab1', 'uniqueId': '0x6e565cebd5cf1023857bcd5684b3e8f502cb0b87363ed99f09b3126789271872:log:142', 'hash': '0x6e565cebd5cf1023857bcd5684b3e8f502cb0b87363ed99f09b3126789271872', 'from': '0x13722a20c2804133d16f71949e27339449ac7ab2', 'to': '0xa6cd8a48d32cb327b8e97656a05f4d7c7477e859', 'value': 18.21774821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6c9613e5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:00.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x4a559fc03099b40f8fe78fd90e80537419b2f1db99d1a4f539804a8210b17933:log:99', 'hash': '0x4a559fc03099b40f8fe78fd90e80537419b2f1db99d1a4f539804a8210b17933', 'from': '0xf1b2a23a76963add4858bb53f430cbf2cbbbbc16', 'to': '0xe74c78371b9538aa1a7985866dfffc92ad5341f7', 'value': 12.58202185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4afea449', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x4cb1962b1106aebcd858a73312b68b86dbd108065738bde9458ee157df8f3e16:log:100', 'hash': '0x4cb1962b1106aebcd858a73312b68b86dbd108065738bde9458ee157df8f3e16', 'from': '0x37050bcd781e42328f2a3e1ca37b342961e7bc36', 'to': '0x32ede9999ff8ee86256a84c8e0c4e5bd9bc85b4e', 'value': 11.15146378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4277c88a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x014765b6ef4169c91d82b453b88efb3933e887a8b049db90eafe486f5e7f49e1:log:101', 'hash': '0x014765b6ef4169c91d82b453b88efb3933e887a8b049db90eafe486f5e7f49e1', 'from': '0xbd15a703cf929e39020487b2d1a09ada1cdaccd4', 'to': '0x277eb7d01910e06e4842597b9fdfc9aced65d847', 'value': 16.88705238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64a798d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x2cdcb47ff044b2e8a65dfc24675be987c09664ecf74d6238ce29c9e665e037ac:log:102', 'hash': '0x2cdcb47ff044b2e8a65dfc24675be987c09664ecf74d6238ce29c9e665e037ac', 'from': '0xd78a05f0a61b19963c0b7c14013fa55a9c9dbf4f', 'to': '0x9274bb5e23422457e127b4f7c9e821f056cb1042', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x48fe76665f1f470eeb611c8dc866ecd9e3111d990a156d5bce90a282f85cb456:log:103', 'hash': '0x48fe76665f1f470eeb611c8dc866ecd9e3111d990a156d5bce90a282f85cb456', 'from': '0x5279f6e5c574b1f9529d0d5155c44637b7748876', 'to': '0x86ff9e653d07702c901875e03ca2a749e4f2165e', 'value': 1.295374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b89578', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xe8012cf1094c9019b8d2c2c152fcb3ee694ff5e03f5fa532e79630b5427c8b42:log:104', 'hash': '0xe8012cf1094c9019b8d2c2c152fcb3ee694ff5e03f5fa532e79630b5427c8b42', 'from': '0x5e43e6503051a9a0b7dbb12b9427a31021447c64', 'to': '0x7b0e9cebdfcc21cb6b04170a13d8a01ca5e19477', 'value': 8.926069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x353419b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x9e05bf8db397c98e2d1fafbf0d3892cf70219f92ac9cae23651f3278d4fa95f1:log:105', 'hash': '0x9e05bf8db397c98e2d1fafbf0d3892cf70219f92ac9cae23651f3278d4fa95f1', 'from': '0xa40c351ab4a4872dc59de144ef295ed090907776', 'to': '0x1db30eb1a63f13aebd99b228293a947bbf4764fa', 'value': 11.64373634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4566ee82', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x08ae0bd5f087798c734ece1d2eebd48d04bb909a96e504d0170e1f5621d89dcb:log:106', 'hash': '0x08ae0bd5f087798c734ece1d2eebd48d04bb909a96e504d0170e1f5621d89dcb', 'from': '0xeba815cad364b969caf906f5bbe12e91f3621d60', 'to': '0x9f8442055beb1167f6b620416e5f1cde66e91df6', 'value': 3.40258958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1447f08e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x414744ef292fea10a543fee412de05a63b1ed1b5025de37002156e9d015cc474:log:107', 'hash': '0x414744ef292fea10a543fee412de05a63b1ed1b5025de37002156e9d015cc474', 'from': '0xe680356075780800363d69a7fe9012ea2cc0f642', 'to': '0x7f6df1a9944e0b0fef7cd1ffc03d04b414c36d33', 'value': 10.54971362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ee195e2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xba4009934849ec41ca7da2a350c614f8c7e2a12af6dce6dab66239b6b7b60a33:log:108', 'hash': '0xba4009934849ec41ca7da2a350c614f8c7e2a12af6dce6dab66239b6b7b60a33', 'from': '0x32f6e11a4a0f98c18589ad4a028e86cda06fc974', 'to': '0x2ddeac8354fc3f94f56fc2ec7928ee9e52ea40a9', 'value': 8.2874661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3165ab72', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x06704e233437507ff35d052b63a4b7db1322f1199b40130d2f6c30c8f870dbd1:log:109', 'hash': '0x06704e233437507ff35d052b63a4b7db1322f1199b40130d2f6c30c8f870dbd1', 'from': '0xcaa18a7e12ee5686709238f2d9eb25311c0f3642', 'to': '0xcc422434ae26f4b1576877e3cfee4da1dc0d813d', 'value': 6.80410331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x288e3cdb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xd0caf8d90779f81cbf0a826f10993b655e66d692977604c93feca4dc4f978928:log:110', 'hash': '0xd0caf8d90779f81cbf0a826f10993b655e66d692977604c93feca4dc4f978928', 'from': '0x411705f992800db204f520f1d26b288b948d0d4c', 'to': '0x02284a442b08b1053a8b4ce90bfd3a5821ec8fa1', 'value': 15.90490698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5eccf64a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x12e7068f409068fd137a0b9072038d162f2837922c5e7f39d0e063beb35f1dcf:log:111', 'hash': '0x12e7068f409068fd137a0b9072038d162f2837922c5e7f39d0e063beb35f1dcf', 'from': '0x8c6219dd7934d77de76a5ded88c93992b805ba4b', 'to': '0x2c7ad16e17cb70717d0f18ece7eaf14e24e47c79', 'value': 5.11302213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e79da45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x686ae16d28ac3016b441a211432284ff63cb12b93b313fa0c7f23de0ec8c1d7d:log:112', 'hash': '0x686ae16d28ac3016b441a211432284ff63cb12b93b313fa0c7f23de0ec8c1d7d', 'from': '0xaa43cc568f009e4b1d9b2bcd27761bd0fbe1d004', 'to': '0x68c8feaf26103afcd7571c94eab2fed940381341', 'value': 3.40276739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14483603', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x6dab295597cb3ba594936b3d509b4d7e9274114a321e9b9a8c07376c127dfdf9:log:113', 'hash': '0x6dab295597cb3ba594936b3d509b4d7e9274114a321e9b9a8c07376c127dfdf9', 'from': '0x27a42f1495310e66b146e11e5b2571b96f18d78a', 'to': '0x4a8660d746cae4b92ce23ef3e3e0752507e59eae', 'value': 29.76778503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb16e0907', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xe52121c0db8f480b7f71a30c6d89da512a44ddb5e2995ad2c19da81e6a67be00:log:114', 'hash': '0xe52121c0db8f480b7f71a30c6d89da512a44ddb5e2995ad2c19da81e6a67be00', 'from': '0xb7503965aa736740d65ac7ea8773983fc15b0429', 'to': '0xd6058533fd346c62befc4040a8b2fdf3443dc9f8', 'value': 9.95583697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b5766d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xc5c2727463c8cf0d55a357c8e306857d62b1c95dcd3903b843b15d795ab7a86c:log:115', 'hash': '0xc5c2727463c8cf0d55a357c8e306857d62b1c95dcd3903b843b15d795ab7a86c', 'from': '0xbd490fd759c282ac018b972ff401c2ab9323f301', 'to': '0x901bdd91814af727e450bf11113dd2a872251d40', 'value': 12.39187076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x49dc7e84', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x5ee7057b2af6eb20d998ed8318e17efccae1b621c7b7275100fb49f28e4d9f17:log:116', 'hash': '0x5ee7057b2af6eb20d998ed8318e17efccae1b621c7b7275100fb49f28e4d9f17', 'from': '0x5cffd6dc484f37830956041d46d5e36eb05cba59', 'to': '0x7f41a8a4c5e7b50fc91e956a1a3c05619e72915f', 'value': 4.21321623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191cdb97', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x81071865855156636706a69732fefee283c47d229592e9608e8a374ff6f846f2:log:117', 'hash': '0x81071865855156636706a69732fefee283c47d229592e9608e8a374ff6f846f2', 'from': '0x417146518a3fff0ddedb16cc60e7003c4cde373d', 'to': '0xbefe60ce02c8ee702fa1514a9217a6afe881e5b2', 'value': 2.60201773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0f825d2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0xf96e67979adc736fad5b6a979ededb4b7108092ced6d3253efeb9060df999fda:log:118', 'hash': '0xf96e67979adc736fad5b6a979ededb4b7108092ced6d3253efeb9060df999fda', 'from': '0xa125a44a2b1791542c0951833a6eff681d0075ac', 'to': '0x217fd90112b4a99fda6e52a2caab79b9409384b5', 'value': 12.22897306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x48e3ee9a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x870458a6d110db550c9f3d3b3c8d3f625a13f29d074d005de54dd019b3d2f6af:log:119', 'hash': '0x870458a6d110db550c9f3d3b3c8d3f625a13f29d074d005de54dd019b3d2f6af', 'from': '0x6018a3fd883416b8272cdc7869494f54c116aa0d', 'to': '0x394a09fa2236efbb990c510915208e7fa23f11e7', 'value': 6.50277592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26c272d8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab2', 'uniqueId': '0x33e17328d0408ce2d7cc132e1e19fc3d12c22578e2d5977a43a6e63d7d73eda4:log:120', 'hash': '0x33e17328d0408ce2d7cc132e1e19fc3d12c22578e2d5977a43a6e63d7d73eda4', 'from': '0xc735c59ea7cc5c04af87e0212eb9556103f2ca58', 'to': '0x110c132a5325b0c342e8e1f8a34caf779b9c8362', 'value': 11.77482752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x462ef600', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:07.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x6b9e2ab4176400d48c45830f00b462499d35456525ce49d6903eb71b35529970:log:107', 'hash': '0x6b9e2ab4176400d48c45830f00b462499d35456525ce49d6903eb71b35529970', 'from': '0x4767a0ce935d0ce71d67201616197b6be77a70dd', 'to': '0xb9200e697bd21414d0b0987ed875392829e7ec6a', 'value': 22.81578626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x87fe2082', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x917e81cd8d7e7f37d4deaa55ab99cf2561083078c5c093d76857d1f545852e01:log:108', 'hash': '0x917e81cd8d7e7f37d4deaa55ab99cf2561083078c5c093d76857d1f545852e01', 'from': '0x8ae0c364c1d7b0a2878441460db04ea8f2d7f68f', 'to': '0xd31046cf1f147e6e383c6870fac65ee1f40e003d', 'value': 5.15104158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1eb3dd9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xbfe282c3558e65ff47239af1c5bae7bbd4a123dc138c24aaaf6c439785752259:log:109', 'hash': '0xbfe282c3558e65ff47239af1c5bae7bbd4a123dc138c24aaaf6c439785752259', 'from': '0x18f9ddfd1099a1d92085e37a69090159d37f7040', 'to': '0x78b8f3864d4ceb0901b37f3d7ed4ceb5c1d2dbe4', 'value': 5.52600921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20f00559', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x966b1b70235d9483bd1fbbf273f7d5c7fa8f9d81372a72c7e70d333cbe1cf7ca:log:110', 'hash': '0x966b1b70235d9483bd1fbbf273f7d5c7fa8f9d81372a72c7e70d333cbe1cf7ca', 'from': '0x8043b53c13e4af1b4a43d31a424fc6dff708a9dc', 'to': '0xa14d58096a5bd8f630bde4a28237e56be795b5a7', 'value': 10.39514049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3df5b9c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xff4f8226e2aaa0448cfbfd2fffa1e34857dfe62b2fa70f68bba7498872749322:log:111', 'hash': '0xff4f8226e2aaa0448cfbfd2fffa1e34857dfe62b2fa70f68bba7498872749322', 'from': '0x5f534c21f1d626959ae290de20f78797759f8245', 'to': '0xaf733db7d9531a72f9b7f4347481b99c27ed7d7b', 'value': 17.62023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x69065890', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x4d9c865e404f1238bb1d2b2c14914de680e2ce1a814be5ed5178bbf088051eb5:log:112', 'hash': '0x4d9c865e404f1238bb1d2b2c14914de680e2ce1a814be5ed5178bbf088051eb5', 'from': '0x2a18dae7b4e22c2e829f37ff651d71b5e9dd340b', 'to': '0xdd5a87f3c4d8dc46a68e32f5f1241b7f94fb08ad', 'value': 17.38698932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x67a270b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x02c7c48e2662cfaf2c73cfe4809248e528e0f878a6bb40e7c69aab540319c755:log:113', 'hash': '0x02c7c48e2662cfaf2c73cfe4809248e528e0f878a6bb40e7c69aab540319c755', 'from': '0x13dd45250d237ac9e60cb4926be53fbd1855e577', 'to': '0x5408d67c499b89ee2510fb28078a457fc1c6ab27', 'value': 16.42274968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x61e32098', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x8831dd082a7b80d9f08d50185e09e524fa8f58301edf6e770309907cea40ca50:log:114', 'hash': '0x8831dd082a7b80d9f08d50185e09e524fa8f58301edf6e770309907cea40ca50', 'from': '0x66d95eecb873429342cf37bea215b59c5dcbbeea', 'to': '0xeb02904680e4fe578fe5a080d73dd80d59074bfa', 'value': 7.10549828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a5a2144', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x56e3e416b3cf109a082172f332c0631e30b1887a2fb8cf6c1f1ead7ae5c047f2:log:115', 'hash': '0x56e3e416b3cf109a082172f332c0631e30b1887a2fb8cf6c1f1ead7ae5c047f2', 'from': '0x94c089e9a118d01412d543d474d06ad6ee870b76', 'to': '0xfd234b7c0f5297303bf24662893f02343e9d619c', 'value': 6.57493265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27308d11', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x19d83743da4f84708c1713a8b580d7563f54af1184b13f952a81fed04fcd2a17:log:116', 'hash': '0x19d83743da4f84708c1713a8b580d7563f54af1184b13f952a81fed04fcd2a17', 'from': '0x3f0ae328a897bf33f8fc7fe44740f15cecbd9e38', 'to': '0x592673424d5698995355a2009ec69c82e32032e7', 'value': 10.65869032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f87dee8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x31f7ad214060bc778e98f0504b4e705432bf236e20328451385b7d9458ef756f:log:117', 'hash': '0x31f7ad214060bc778e98f0504b4e705432bf236e20328451385b7d9458ef756f', 'from': '0xab0bc2866f9a45eb9f2effd487fa4ce939a1d98f', 'to': '0xe1abe78af852fa8d84c553850c697d113d8b2f3f', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x39bbd3cef0da5fb76c0958a0b069d38f73f53cf70088f1c5e900700ac523d06a:log:118', 'hash': '0x39bbd3cef0da5fb76c0958a0b069d38f73f53cf70088f1c5e900700ac523d06a', 'from': '0xbf1b7a45d81472b3bbe82b3b680d187965d96884', 'to': '0xa2e37f5aed7923b4e8a1fe7a8d9fd3535bed352b', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x7bc97fb2c69dd69d3fa2eb2c53f8f6030e0171769e710101557a50390189766e:log:119', 'hash': '0x7bc97fb2c69dd69d3fa2eb2c53f8f6030e0171769e710101557a50390189766e', 'from': '0x20b1ee5ce16db50f01809b94a266d1010e3facd4', 'to': '0x7cb051789b118007dd66e95a85db62070976858d', 'value': 7.06570886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a1d6a86', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xc737e1853640edc5411c9d56826b3b88dabd0631a1ad6df7b34b9477d5af7e99:log:120', 'hash': '0xc737e1853640edc5411c9d56826b3b88dabd0631a1ad6df7b34b9477d5af7e99', 'from': '0x8fc2d72071353e5ac1ae53e0070320af98321ade', 'to': '0x3e22cda4b0c59c86e798fe26ffeba180ac92155a', 'value': 16.26430319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x60f15b6f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xc46d333560af19efff76e4082a4a9449bac37e85218655038acb5ecd9ccb5bf0:log:121', 'hash': '0xc46d333560af19efff76e4082a4a9449bac37e85218655038acb5ecd9ccb5bf0', 'from': '0xa4d526f642060618b46e1553e380cdf4c45684b0', 'to': '0x380b444cb77ffbf3475f025e039d398faead7731', 'value': 13.1142339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4e2abb9e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xf61105fe16a8190b276195b6e11589564505600b022ca9faf40cdbb7da17c733:log:122', 'hash': '0xf61105fe16a8190b276195b6e11589564505600b022ca9faf40cdbb7da17c733', 'from': '0xb29433d80c339cafd67ea6eaf0f59e83ce9e562d', 'to': '0xa9892b30b3376480dcc109c6c535f6d37d6512e4', 'value': 16.97932617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x65346549', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x1467b4271e0d73bd2182c6582f7c2d112e18b93433275669fd4aae86baabc3f0:log:123', 'hash': '0x1467b4271e0d73bd2182c6582f7c2d112e18b93433275669fd4aae86baabc3f0', 'from': '0xa5f528ff175e9f67ef8a02575f2ee9c6e68b9667', 'to': '0x8c1a949fa6a7e359d444c02544c4b44e336a48a9', 'value': 19.67698417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7548b1f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x03bafaa0440149ad3a7934f0cc78fb8e266576c7c0d3bb0316a789d69887f076:log:124', 'hash': '0x03bafaa0440149ad3a7934f0cc78fb8e266576c7c0d3bb0316a789d69887f076', 'from': '0xfc3253b8b5ec49ca67fe68e57dc97fd2e0db848d', 'to': '0x1851e36121c776246e06dfab39f6279660460b25', 'value': 7.78569937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e6808d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x34dc2c706bbc8d35dda7314c094ceaaba0adf3f93b630b607b24fb7130d02d15:log:125', 'hash': '0x34dc2c706bbc8d35dda7314c094ceaaba0adf3f93b630b607b24fb7130d02d15', 'from': '0xc3fba466ddcef473598408609c3159379b002348', 'to': '0xb0ff76eecbfbcb823258d6569c65dcb7b71784c6', 'value': 5.2487798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f49009c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xe043afa758ab50ff77fe0c656f7b8089640d6e511660abbf4c450297d2feaa77:log:126', 'hash': '0xe043afa758ab50ff77fe0c656f7b8089640d6e511660abbf4c450297d2feaa77', 'from': '0x8b5cba7e9c4ddf22b24ead5d9ff0d17f5754a2a3', 'to': '0x47dd30fd759fbb17b3cd013f66cd5ccb623f1ee1', 'value': 3.82278461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x16c91b3d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0x3003df00e924b4af916ade2684dc15e050508f9c9443c491b363eb8144e7562f:log:127', 'hash': '0x3003df00e924b4af916ade2684dc15e050508f9c9443c491b363eb8144e7562f', 'from': '0xb11a197f25ead7a9baada41e908fa4ad3ca7d97c', 'to': '0xa39d20cd602ad8310bbe3f70fc1149f634a5b485', 'value': 10.58099714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f115202', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab4', 'uniqueId': '0xc3b048620745656830c6a6b21ddc8c2cb0c5131957873ad492cb497a35c6af4a:log:128', 'hash': '0xc3b048620745656830c6a6b21ddc8c2cb0c5131957873ad492cb497a35c6af4a', 'from': '0xe40b5b5dd63635f9e9585024f8e157a6a1e4c02b', 'to': '0xacd7fbc1615dd3ba0568d3d159e4ce8be3b0d889', 'value': 5.08280545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e4bbee1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:29.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xb2b042d832b260802ebe189afb2b077f060883c45c797fff50156ec16f2eb42f:log:74', 'hash': '0xb2b042d832b260802ebe189afb2b077f060883c45c797fff50156ec16f2eb42f', 'from': '0x44cb8abaac4298e91c71c854c0a7262ecab31004', 'to': '0x4a4dcf491a85e7dd485b7f69aba506f4e5227cc4', 'value': 5.1413348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ea50de8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xf47572c6efa46a6657368faf6a40b1ae0dd1e59b2c931ffc1dd05dc22fd736e5:log:75', 'hash': '0xf47572c6efa46a6657368faf6a40b1ae0dd1e59b2c931ffc1dd05dc22fd736e5', 'from': '0x0f67d5d94a33c36b793ff3b6120cdf8c1b379411', 'to': '0xea8ef31cd03b6166f92b426b3b1dbe7d2e9ee0dc', 'value': 4.53694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b0ad60d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x043fd7f97f8833e42f757a191dd349f27a220b62424e19a014bd1052441f858b:log:77', 'hash': '0x043fd7f97f8833e42f757a191dd349f27a220b62424e19a014bd1052441f858b', 'from': '0x71389460ee748de2a4573e3d6f556860f54a2f10', 'to': '0xb35b90de78d1b451665fe79a0c24945aa9da61d9', 'value': 5.85068401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22df6f71', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x680a62ca30b30ac50ca3da6ae923a1df8aaa0eaa8665e4baf404fdacd7bad3db:log:78', 'hash': '0x680a62ca30b30ac50ca3da6ae923a1df8aaa0eaa8665e4baf404fdacd7bad3db', 'from': '0x350a65f3c23cbc61f4caae7dea665d45dd8d356d', 'to': '0x6512fa42e38877b3c77c89853a2dd797220a4438', 'value': 11.56044804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44e7d804', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xd7dd1c1057bc3c1b0a00efc79bb9d660bc23699da68bc0e46b85dbcaf7cb140c:log:79', 'hash': '0xd7dd1c1057bc3c1b0a00efc79bb9d660bc23699da68bc0e46b85dbcaf7cb140c', 'from': '0x7802158aafccc20d243725966d768189fc6f3f4b', 'to': '0xddfe4e8480c4d458c551ef96f7c565fbf3cea691', 'value': 6.4880696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26ac0230', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xd9744263d968a45addfff4d7b685295177559e7de8d5f70c8e494327956daa84:log:80', 'hash': '0xd9744263d968a45addfff4d7b685295177559e7de8d5f70c8e494327956daa84', 'from': '0x3f082bd60e36aec19d3268f0ab4a4e9fa0e1f914', 'to': '0xb8dcabcee321abe3ec35c794cb970827928bbc79', 'value': 11.84380964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x46983824', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xdf9d3c8baeb567ab05edcfc5e9a25b290e0c7503340ca8cc11743d79f364d69e:log:81', 'hash': '0xdf9d3c8baeb567ab05edcfc5e9a25b290e0c7503340ca8cc11743d79f364d69e', 'from': '0xed9943921c85a92ab29680eef6295cfd07ff2652', 'to': '0xd585d37e7f600312ff1126e584e66dd2381db13f', 'value': 19.37699024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x737ef0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x2899eedad1d74b2c3c392144167c4aa50ef616a9132da1b1e9a6f3599fee6d68:log:82', 'hash': '0x2899eedad1d74b2c3c392144167c4aa50ef616a9132da1b1e9a6f3599fee6d68', 'from': '0x54ebc647e85dd2c810ee78ce273a25ef1b97e1fe', 'to': '0xad301275ec49a1eb463ee891ebf706019756637f', 'value': 6.44183754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x266576ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xc5c94c9ba4ec5fbbe7d042b51ba380a45536a5e810c524ed59bee7df32aaba97:log:83', 'hash': '0xc5c94c9ba4ec5fbbe7d042b51ba380a45536a5e810c524ed59bee7df32aaba97', 'from': '0x2c6bbe64fa0820aebaaebbee4f00c8d6d64272db', 'to': '0x7933a799715f89665c085e6a45c1a41b6e1a4481', 'value': 6.01891124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23e02134', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x4efb7852d160f616a540536300ebd985a20ac834e7b5439f4918a8b85c95346a:log:84', 'hash': '0x4efb7852d160f616a540536300ebd985a20ac834e7b5439f4918a8b85c95346a', 'from': '0xe2c5e7a59bb7a8e1ab367336d5e5704fa95eb03c', 'to': '0x9555df01c7e111c8fbc6ad8e7236313a9785215c', 'value': 11.27673018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4336ecba', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xb48e620788fb2c732f3b0e1a1eb9a460f73255175e874ed7cde03ae8b4d20ac6:log:85', 'hash': '0xb48e620788fb2c732f3b0e1a1eb9a460f73255175e874ed7cde03ae8b4d20ac6', 'from': '0x1c558636463e5c7df667fca93b1d2d7a917c5565', 'to': '0xa21a5ab81feff619c8930a9a046743e3679efb1c', 'value': 5.93288137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x235cdbc9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x985d83693eab86439b34024a571289b14e983bdd2cf1b91a7d143038dcdbe90a:log:86', 'hash': '0x985d83693eab86439b34024a571289b14e983bdd2cf1b91a7d143038dcdbe90a', 'from': '0x5bc8ce010bdb58c9c73fcfc490da0bb2205e76a4', 'to': '0x9fff35dc1b9fc0c4680476773c3191a557f65d61', 'value': 3.40193086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446ef3e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x8adf19038381042496cd60eb4f0b2a078b1f0631bbdc1ca5ef00101930d2baba:log:87', 'hash': '0x8adf19038381042496cd60eb4f0b2a078b1f0631bbdc1ca5ef00101930d2baba', 'from': '0xf3c75fcee63a78b6557c848b73427c8e9a0f4425', 'to': '0xd377b24a241e8c86a469e03444b2861ebeb1da28', 'value': 13.73551123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x51deba13', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x3c043c8e8f9dfdc60258b70e34a6986d3dcb1eca6d4203c8512cb3ac67fb36c4:log:88', 'hash': '0x3c043c8e8f9dfdc60258b70e34a6986d3dcb1eca6d4203c8512cb3ac67fb36c4', 'from': '0x5fc348a067f8b1fe27e13571d19b238d19a53ec9', 'to': '0xbc66f032789b102253c70de8dce2d5bd4d13b83c', 'value': 12.94763645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d2c867d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0x96f4aa693b30987a5d7047275b885c2e8fd326b7a3bf84021cd930b646b49c65:log:89', 'hash': '0x96f4aa693b30987a5d7047275b885c2e8fd326b7a3bf84021cd930b646b49c65', 'from': '0xf1db45374160ea7971f7e3a299e6fda874af724d', 'to': '0x449d6b197896a26cfbf111395e410ba4c966a482', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab5', 'uniqueId': '0xb33cac4eeb7d078c91e91561bbf78ca68318a4d41ee13cacb53e3ff9beca7537:log:90', 'hash': '0xb33cac4eeb7d078c91e91561bbf78ca68318a4d41ee13cacb53e3ff9beca7537', 'from': '0x46d1caeaa082fc33a795ea0d527c1b36a6e0b64f', 'to': '0xa62b64b25392a3607fb1a5b5ec8c50953c917e5e', 'value': 11.52509659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44b1e6db', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:37:58.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xc6c8865561c7da4ef7df1672e4e492e73da81f4dce9f884ce9948a7ef9abb57b:log:91', 'hash': '0xc6c8865561c7da4ef7df1672e4e492e73da81f4dce9f884ce9948a7ef9abb57b', 'from': '0x1180614c5929575e32ec1e1da762109254fbd01d', 'to': '0x442581b1e821228e68fe1b576146afef3fd9d9fb', 'value': 3.54998052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1528d724', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x1900962a38e6c02265316ff8400f107bbf8998e776cb193d4e4b98e5443e7982:log:92', 'hash': '0x1900962a38e6c02265316ff8400f107bbf8998e776cb193d4e4b98e5443e7982', 'from': '0x6202766cdaabcb7e4a8d425d63010a8ac1028815', 'to': '0x687b556374017d09e057777e9d8bd9b376a8bd25', 'value': 3.40830038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1450a756', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x21f4ecb986f91c850ff136dfeb79ae0ac378c2e050f3fa3a551ffa0769a21300:log:93', 'hash': '0x21f4ecb986f91c850ff136dfeb79ae0ac378c2e050f3fa3a551ffa0769a21300', 'from': '0x42db7ffe08051bdd9751480800d12ef963ec67c9', 'to': '0x2caffa585cdca912fe72cc23bdf83c254cf6d795', 'value': 5.15192669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1eb5375d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x4b48838faf8e54824e773275e2eec60efed5154a3fd401644685f0edd7dd040e:log:94', 'hash': '0x4b48838faf8e54824e773275e2eec60efed5154a3fd401644685f0edd7dd040e', 'from': '0xcca38911fa537acce47c8725786f1e0472abacb2', 'to': '0x1a784edb743f9e604d0c2031848ab48fc774d39f', 'value': 5.46704851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20960dd3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x5d5c4c8a64746d4a07cb2655cdfe5a1ead841dcedd7ddf77c7848771dcfffac2:log:95', 'hash': '0x5d5c4c8a64746d4a07cb2655cdfe5a1ead841dcedd7ddf77c7848771dcfffac2', 'from': '0xeab3b518e09e1d67650283d89cc738692d04f10b', 'to': '0xf9c7d324f047f8dda13f6068d9b4c754ce8bd731', 'value': 26.74669276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9f6c36dc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x1ef2aa4f69fd83302060d6c21dc1dcc48de9bdb3ea58e465f38968263938d266:log:96', 'hash': '0x1ef2aa4f69fd83302060d6c21dc1dcc48de9bdb3ea58e465f38968263938d266', 'from': '0xab07f941f507cd63660db77f41056cdd5e9e9fcc', 'to': '0x5bd75eb80b8a6257c63be6fe0d21acf782d4ead8', 'value': 20.3319455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x79301636', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x3decbcd64026163220bd98970c948b94e7fab5a4dc14148db4909a95e749feca:log:97', 'hash': '0x3decbcd64026163220bd98970c948b94e7fab5a4dc14148db4909a95e749feca', 'from': '0xdcf5c3f698fc0cafc4f0d7f7d0a7598282514c6c', 'to': '0xce56725713401743de5bb927ded3b441d764745c', 'value': 10.32716595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d8e0133', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x14b4f9d059feb8d01a637e75e02fd68787a622bccb7ad497525093a8a5fbfe05:log:98', 'hash': '0x14b4f9d059feb8d01a637e75e02fd68787a622bccb7ad497525093a8a5fbfe05', 'from': '0x5761f5f19612d1c2793c21eb052c55c690fc083e', 'to': '0xcf58ed76f832f5246f29e2cb2fa51f87ce905a8f', 'value': 6.3754694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x260031bc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xf2fb90a8f1518cb9c55bd75bc239fda4ec0c3106f8d06857d3c5f776da01712b:log:99', 'hash': '0xf2fb90a8f1518cb9c55bd75bc239fda4ec0c3106f8d06857d3c5f776da01712b', 'from': '0xfd862969202e5a23d946885a158f790e0af27dc2', 'to': '0xeb8ca412bfd27b9ca70b1b71ed9b1f4be84beeb8', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xc7b336d18ef54361502f7a134471231b9eae75e6c422695fdd6f693ff6386253:log:100', 'hash': '0xc7b336d18ef54361502f7a134471231b9eae75e6c422695fdd6f693ff6386253', 'from': '0xf27f9d43a4c7c13bf993d5116ba63bc0f5813bff', 'to': '0xca06972a6dcb402397bc92e4db4d6eec639328e0', 'value': 16.66228692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6350a1d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x785c712a1f29ed2ee1a51a90e9dd2a3e0713ab14239e6481aa7d28dfce49360e:log:101', 'hash': '0x785c712a1f29ed2ee1a51a90e9dd2a3e0713ab14239e6481aa7d28dfce49360e', 'from': '0x0a388e45db327408b2ff36ffdfc51d887e0e42e0', 'to': '0x7ed52c64e5c5f87031dec8d7115352e52b57a98d', 'value': 13.30686171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4f50a8db', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x3c4bbea3266f6a81bc22d092be10821b4723766b0447769997406c4338a3ea9b:log:102', 'hash': '0x3c4bbea3266f6a81bc22d092be10821b4723766b0447769997406c4338a3ea9b', 'from': '0x6b1fe413672e476e0e3d83541aafd5a36335d211', 'to': '0xd6dfde3417741a8b698fe79d175847e2b5310d1a', 'value': 5.89907744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23294720', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x7d428c3e14f8199acc499f59405dc6feeba179bc853eb19397ad3f4269b91e17:log:103', 'hash': '0x7d428c3e14f8199acc499f59405dc6feeba179bc853eb19397ad3f4269b91e17', 'from': '0xcbe353de2a5e697092e453aaa044ed445b8b22de', 'to': '0xf6bc18bf98cc8356cc2b86e6f79bad8335097b87', 'value': 5.74283141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x223add85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x40c1d1ad10156ba39e0f066576713355ed25a11e24ae6881de4aadf20a0e859e:log:104', 'hash': '0x40c1d1ad10156ba39e0f066576713355ed25a11e24ae6881de4aadf20a0e859e', 'from': '0xd732b0a5267be302ebb56ce7c5aa07e01c4705e9', 'to': '0x3645950a8080b18cab69aca11774e1538d8046af', 'value': 11.06166603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41eec34b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x1243f5172480e347d2a79155112e86bac8fb88c03340953106ea0c6a5e1646e1:log:105', 'hash': '0x1243f5172480e347d2a79155112e86bac8fb88c03340953106ea0c6a5e1646e1', 'from': '0x24553c78c46c92c1834440a84328d8a4bab9e1fb', 'to': '0x6be7afb0f0bb845f1125cdce88e2691f9f848593', 'value': 10.97489512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x416a5c68', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x518d3027cfdaa96b63ee1351ea6ff861f13a01f123d5858e044e62e88b7ed052:log:106', 'hash': '0x518d3027cfdaa96b63ee1351ea6ff861f13a01f123d5858e044e62e88b7ed052', 'from': '0x2359be6cbe76e5aaa18050983b7526915fb8ec83', 'to': '0x86593cf1ff3e8d91ee2146def0805e77eb8a7aa4', 'value': 5.8478846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22db29ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xb34b0f7f745d3644670da3b6d1528f6f536018cfbb8ef03b69f83e970ca362e3:log:107', 'hash': '0xb34b0f7f745d3644670da3b6d1528f6f536018cfbb8ef03b69f83e970ca362e3', 'from': '0xcc1c45be7e0892d526296e124ea39833df746f90', 'to': '0xb44505ab7d0bbe86787665b5ab370c7e5d0448be', 'value': 5.47128443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x209c847b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x128817c9414d2043205df32bbf0df7c20db5870e48daf0caa96c5dbc2bc75029:log:108', 'hash': '0x128817c9414d2043205df32bbf0df7c20db5870e48daf0caa96c5dbc2bc75029', 'from': '0xb06c85260d863f3fbfbbfa138ea9f7804f13ba43', 'to': '0x014dd570c6eb7d12d9186dff423787c890096449', 'value': 21.77385727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x81c844ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x158be7f048083546840debea6fa09fb3f55014e49439e6667632f1af3eba0048:log:109', 'hash': '0x158be7f048083546840debea6fa09fb3f55014e49439e6667632f1af3eba0048', 'from': '0xa62b87fd5f15cb574a577b4902b43bae37765291', 'to': '0xace709796a2ca555ef46ee08307cfe2c9683727a', 'value': 5.50915533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20d64dcd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xa742f6c1c618b77dda0731f77938a35ad6e71a3387aeb0807656fe0f38580ab2:log:110', 'hash': '0xa742f6c1c618b77dda0731f77938a35ad6e71a3387aeb0807656fe0f38580ab2', 'from': '0x28d7262e3321af8a6347e33cd7384877e9d76ec9', 'to': '0x4584ec1f5fb34fcc062155eb6aa5b59a6acf41ad', 'value': 7.15709459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2aa8dc13', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0x37511176ab0bd0d55430e1662625f8eba32a021d62ecb35bad84ed63f0e55f70:log:111', 'hash': '0x37511176ab0bd0d55430e1662625f8eba32a021d62ecb35bad84ed63f0e55f70', 'from': '0xd6494896e8102cf6c6c92dbe43738d0d8052c323', 'to': '0xb085de01a42dc7f0f2ccbbe60c97ab5013e8c11e', 'value': 10.81648486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4078a566', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab6', 'uniqueId': '0xbab396b23d963ab38d0f04047716f0449264ade415f570dd157ebaa31cf1b6f8:log:112', 'hash': '0xbab396b23d963ab38d0f04047716f0449264ade415f570dd157ebaa31cf1b6f8', 'from': '0x41de2667d4b74ff5f6f7b59368fb2cdd70038907', 'to': '0x510ab8ff454d20a724c4b9e6988a1a7db6daa58f', 'value': 5.00277946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd1a2ba', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:14.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xdb4bbfb716afd10204cd81b02b5afa7d78ad3d7c4ce335420f6cbea566154ad9:log:160', 'hash': '0xdb4bbfb716afd10204cd81b02b5afa7d78ad3d7c4ce335420f6cbea566154ad9', 'from': '0xa1e4f61ac3896b1ae672c9c66140a0fc03fa7b15', 'to': '0x95e189820eed2180a887a8557abb83295b8e89a0', 'value': 24.6296159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x92cdcfb6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xaff5db06e3c197ade826b095a63bc89f81850564c2dd1ad0469a863daf12d640:log:161', 'hash': '0xaff5db06e3c197ade826b095a63bc89f81850564c2dd1ad0469a863daf12d640', 'from': '0x3d33e67f0ef451dc138e97140b710d0711a79e1f', 'to': '0x0cbaada787269aaa3d0f2a188a96eed38d3f3a26', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x2fbe5b9106e3a5ca9320eb0b4f8942feb1902571a3eab824ee9fe9e1ff8185ad:log:162', 'hash': '0x2fbe5b9106e3a5ca9320eb0b4f8942feb1902571a3eab824ee9fe9e1ff8185ad', 'from': '0x9e655ef59e1c5c106df646abf0068eb0e4b16822', 'to': '0xd614846f23066c27821745283e6826e628e8f67c', 'value': 5.20740583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f09dee7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x647c51f870ceb68245a65d131b6d833f6fd2223886ce58172305d72a4cfb6d64:log:163', 'hash': '0x647c51f870ceb68245a65d131b6d833f6fd2223886ce58172305d72a4cfb6d64', 'from': '0xf1fd1fb9e913f495c1c7c0130b165debdf81c0e3', 'to': '0xb5b660a3529014f1a795b2178a9d44832a543b57', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xf96afd0af57cef55c3aba11541821caebfae21ef4bee5ffcdeb9134548a59572:log:164', 'hash': '0xf96afd0af57cef55c3aba11541821caebfae21ef4bee5ffcdeb9134548a59572', 'from': '0x35db1283a28241dc861c6fb2654f51e9fa51754a', 'to': '0x1878735e2130c52dd857286c36f378f78108056e', 'value': 7.55644789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d0a3975', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xd8cb88f7ca35b2a07de8030f75109420627c8e220e998d81c3de20b223eb03ce:log:165', 'hash': '0xd8cb88f7ca35b2a07de8030f75109420627c8e220e998d81c3de20b223eb03ce', 'from': '0x0af161d250a555c10cc45ea693f72a61f17a3fc6', 'to': '0xbdbd52ab04af7802f64f600f2afad27f2f8224ec', 'value': 13.89825525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x52d70df5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x2a352fc5e70aa9b03f509a3f2b67150945988887090e3a5573e70f3f8c9d2e99:log:166', 'hash': '0x2a352fc5e70aa9b03f509a3f2b67150945988887090e3a5573e70f3f8c9d2e99', 'from': '0x40f7409da30a68fc20610142a5193ed7cb5fce8f', 'to': '0xd290cabcd9e4dd15c43ccf684c1dd8ed513ba9f5', 'value': 4.95954916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d8fabe4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x9dd55a76d0825cef255d49f8e42b81c6261a189eee394a2cbd9385dc895a67dd:log:167', 'hash': '0x9dd55a76d0825cef255d49f8e42b81c6261a189eee394a2cbd9385dc895a67dd', 'from': '0x85cd54e42dff3c3c3532ba46811dd80145815116', 'to': '0x978e984548e3a3f9c99c122448934674ce37c6c3', 'value': 3.40131586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x1aee49ac6320085944f8ae44f8c66bd5a37c201cf706a7b51406519e54653478:log:168', 'hash': '0x1aee49ac6320085944f8ae44f8c66bd5a37c201cf706a7b51406519e54653478', 'from': '0xbcc650c27aeb1116c64d58b5c9a363887c08b267', 'to': '0x0ddd2cb5abf9a05a9b9201f49063e79cafa6de2f', 'value': 11.18116689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42a51b51', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x6545c7e76e0e6de335fadfe58e8278e4091b4404df40df1c2d305ffc896ef9a7:log:169', 'hash': '0x6545c7e76e0e6de335fadfe58e8278e4091b4404df40df1c2d305ffc896ef9a7', 'from': '0x096a306189e7b364b7bc9d5854812196be22c241', 'to': '0x2c63d2376068503b575a512bcbcc9ee5d2278785', 'value': 4.21575076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1920b9a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x1198dd0e725645fa2e26b643d78a005de3ef105d6bc3b5e4ff9be787c672858a:log:170', 'hash': '0x1198dd0e725645fa2e26b643d78a005de3ef105d6bc3b5e4ff9be787c672858a', 'from': '0xf1f3deb3f00ed8f310302e3e9b4b25983b2c32eb', 'to': '0x0aafd359134827b89a33b74d3dee3771d09c82ed', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xfe47510cda5c7167aa474983089a868934d295648ae2540e56d913f617474aa3:log:171', 'hash': '0xfe47510cda5c7167aa474983089a868934d295648ae2540e56d913f617474aa3', 'from': '0x961687e4caecd7f9cc66f93d510e75d6d44e662a', 'to': '0x78112d6bf90d832b253381ae1c1ea3e6047f8f66', 'value': 3.30294916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13afe684', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0x8e7d9c4b0c3a443e31b75e1fbddbcd738f625afd8445efc0fa40c2d3cedcacb6:log:172', 'hash': '0x8e7d9c4b0c3a443e31b75e1fbddbcd738f625afd8445efc0fa40c2d3cedcacb6', 'from': '0xa3aa12f333e0d227f535aafc4a1d50ff2dae2cff', 'to': '0x11b75648f48b500f66ddc8e20a14de6bbe7006a6', 'value': 7.79315288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e736858', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab8', 'uniqueId': '0xde4eee520e764a9e6056fc58944b9a454a44a2cc721f68b5b376024f95d2879a:log:173', 'hash': '0xde4eee520e764a9e6056fc58944b9a454a44a2cc721f68b5b376024f95d2879a', 'from': '0x44338e570ac6ac56e79cbbbe9ca94f3963463c85', 'to': '0x94045741ce63a3389204df0b789b6a7eed17b3d1', 'value': 6.47683092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x269adc14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:19.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x535d5c86ce137323c3dbfb2f97e4d88f79090b3280e62ae6bae1abafd09adcf8:log:67', 'hash': '0x535d5c86ce137323c3dbfb2f97e4d88f79090b3280e62ae6bae1abafd09adcf8', 'from': '0x43b5f733665b3f0927a2723a051dfd113cda2c55', 'to': '0x38e9621a7864f2aaf4840e4c60e24b0d149c988a', 'value': 5.09093639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e582707', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x1cb760a33672b14ee250365bfd06bd011875750a3889e41611b638d1e1fd295e:log:68', 'hash': '0x1cb760a33672b14ee250365bfd06bd011875750a3889e41611b638d1e1fd295e', 'from': '0x5134c98502aaeca9711bf175bef1c1f958458d97', 'to': '0x87c1e431b6eabf6421d5824adf38f6b13c2d16ef', 'value': 4.58553756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b54f99c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xf966619798c1128762220800b6823d6834388fe450388a4dd8372e36f888dd91:log:69', 'hash': '0xf966619798c1128762220800b6823d6834388fe450388a4dd8372e36f888dd91', 'from': '0x6c0c241966cbd3267e3dcb961f6cc7b909b3edd0', 'to': '0xae24b06d9a84df8f664be1cff450f9e28d80768f', 'value': 5.84372315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d4d05b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x68506881cc6d171497f0249f2b9b6f1760f24678565522649846e6f0760e12d4:log:70', 'hash': '0x68506881cc6d171497f0249f2b9b6f1760f24678565522649846e6f0760e12d4', 'from': '0xc38eb2451bc651fc9fd418be30dbb41b49442d8d', 'to': '0x406bb3afc3907977a339cf83cbc32e90e7e07e3a', 'value': 23.53615154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c495132', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x8e1618ad9ce31626ebc1691e84441bcd46bda1e5cb003642e072484fb5d85e4e:log:71', 'hash': '0x8e1618ad9ce31626ebc1691e84441bcd46bda1e5cb003642e072484fb5d85e4e', 'from': '0xc1f073d9741e63124e17bc9ccf289e0c79518a18', 'to': '0x0f62b0dba897ecc96e07460c004b9679b4c2d0e5', 'value': 8.43501557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3246cff5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x6873a5a51c6664895ea586534f0a12bf43f6999277337e4505cd64bea4108eb8:log:72', 'hash': '0x6873a5a51c6664895ea586534f0a12bf43f6999277337e4505cd64bea4108eb8', 'from': '0xf390093d85cfbff0d10938d8e470fb0f267ca255', 'to': '0x78b150569552799c0a54f85569f93aabb71d0e59', 'value': 7.19588678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ae40d46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x6c7bf9a09954718c682b30e8f1bedfb3d5a96575256daee8aeacde1b6ddf8a00:log:73', 'hash': '0x6c7bf9a09954718c682b30e8f1bedfb3d5a96575256daee8aeacde1b6ddf8a00', 'from': '0xb0b66ec1191b580bd0d698fb6dedade1edb0abc0', 'to': '0xe798db060b628569ca1f84d9a16a9b70a53965bd', 'value': 10.56649483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3efb310b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xcd6ce24f1882251bc8896dcfacaab941feb61d2b4b3b2057151a4fe96e80aaaa:log:74', 'hash': '0xcd6ce24f1882251bc8896dcfacaab941feb61d2b4b3b2057151a4fe96e80aaaa', 'from': '0xdc92dfbd0f8202c9b7d14b4cf4b0420d0b378026', 'to': '0xa6755889ae51c895a1a0e55ebac85568a7ca6e24', 'value': 3.40131586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x76e452acc24c016b226f9d132135a4f8bc32a681ef4a5c78f8ade79f5a6c6926:log:75', 'hash': '0x76e452acc24c016b226f9d132135a4f8bc32a681ef4a5c78f8ade79f5a6c6926', 'from': '0x5cc237e885072172e45125128595badf22265b46', 'to': '0x5bbc7f5b55a059160b25bbfb46ce3b1a4fd84a04', 'value': 6.4401244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2662d998', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x59e9d450c1190e4baf94434a78cbd5a06fa0e02329a26bf329036a9d30cb6fb7:log:76', 'hash': '0x59e9d450c1190e4baf94434a78cbd5a06fa0e02329a26bf329036a9d30cb6fb7', 'from': '0x77c45fc54981d480d55c4868d5e722c49d5e720c', 'to': '0x7d5b77e58cef5708690a586f8d510aa92b8b00cd', 'value': 5.17653782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1edac516', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xcddfb6a2fb81b62606f339e75bc77634c097ce109fab686f76535188fc0ca6c7:log:77', 'hash': '0xcddfb6a2fb81b62606f339e75bc77634c097ce109fab686f76535188fc0ca6c7', 'from': '0xf4d31071cdeeb60047680292d46e9d0bc46883be', 'to': '0x2885b267095f4d2878167b2a38b864587961e525', 'value': 13.46363108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x503fdee4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x4d2f0629fc2d6f720d20825e9ac36a28c8fd85a6778c7679fbd3c4c1e8591345:log:78', 'hash': '0x4d2f0629fc2d6f720d20825e9ac36a28c8fd85a6778c7679fbd3c4c1e8591345', 'from': '0xbac6bdf1a48cfbb0f4de7689e052f483da0310a3', 'to': '0xaea7d4323fce274e31ac3585ab5edbd59a29310f', 'value': 16.27453876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6100f9b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x5aec89669a6cd510592081f489d8daf9e8da4ba2d26eeae667b0132bd08f98bb:log:79', 'hash': '0x5aec89669a6cd510592081f489d8daf9e8da4ba2d26eeae667b0132bd08f98bb', 'from': '0x1bc09a1b2885479783759f79b3245ed8b9671b1d', 'to': '0x38f17667c207a8083eff074aebd6cd55a552843c', 'value': 4.15873625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x18c9ba59', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x8aa453e23e22badcf2caabf62e991cfcefe243d831dba4450d1c9b399a52aabd:log:80', 'hash': '0x8aa453e23e22badcf2caabf62e991cfcefe243d831dba4450d1c9b399a52aabd', 'from': '0x8c98814271e13f061a5aca3d1c4b62485f97e03d', 'to': '0x261464cfc5d03bcf0e9c75be12a3f6bb337af14c', 'value': 5.20414045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f04e35d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xefc53fe602084501c22956c1b2cfaeb704ea816920f6f79b0b1181a52ef0548f:log:81', 'hash': '0xefc53fe602084501c22956c1b2cfaeb704ea816920f6f79b0b1181a52ef0548f', 'from': '0x361f7771f45a861dcb618a413da7b172b305c42f', 'to': '0x420f7d2b77303adf7c3c4054b986bc123a87d475', 'value': 5.93370917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x235e1f25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xba99ffe387df7c536fcc458182c3632c709712bed97555cadcc1dbe6916c4543:log:82', 'hash': '0xba99ffe387df7c536fcc458182c3632c709712bed97555cadcc1dbe6916c4543', 'from': '0x891cd1b216dfbfbce75c1282ea8027096b5bfa37', 'to': '0x29cd3f946c4d6f665ea7a3ae1c882faa5ce3c6cc', 'value': 6.3852708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x260f2668', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x96f6a341731c519c55244b6b63cc5f747d599c4f943e1e4516183ab0dd153477:log:83', 'hash': '0x96f6a341731c519c55244b6b63cc5f747d599c4f943e1e4516183ab0dd153477', 'from': '0x5e1260f1ce71c6b5cbf83d753ff1c8cd4895d122', 'to': '0x7993b4bf4a2089697fbcab8f9da46d57e56ecd1f', 'value': 6.42372284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2649d2bc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x24f23053b1f33ff32fdf8b55879192a3abc838bd5b434f00d8cc8fb682437a66:log:84', 'hash': '0x24f23053b1f33ff32fdf8b55879192a3abc838bd5b434f00d8cc8fb682437a66', 'from': '0xee01ff4f1ccee5afb3499ff2be71d3a40608a2b5', 'to': '0x3ca2e1cff8971d62d688d3efa1b3353b53fb3555', 'value': 11.48580222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4475f17e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x31261b65fe3ef171ce3b354e8932758a0b650343b04dae04fc6bac62c1e26944:log:85', 'hash': '0x31261b65fe3ef171ce3b354e8932758a0b650343b04dae04fc6bac62c1e26944', 'from': '0x20dfc577e9af2a10b74e40a9bf9a60c3e996e424', 'to': '0x1da39f09a46dfc1037208eeffdfacaa33611bf5a', 'value': 10.88683258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40e3fcfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xedf5f530ffd339307cb1a82b094970ff1b142f5afc8c011b44dc6016b48c4c74:log:86', 'hash': '0xedf5f530ffd339307cb1a82b094970ff1b142f5afc8c011b44dc6016b48c4c74', 'from': '0x60426b1e71ccd6d820252b8115e379f329a976e0', 'to': '0x2f103167b69b46fb24bc2a04d663be058880eaa9', 'value': 7.13689858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a8a0b02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x863bc1af09ee00b64a370948a2057f6ab5a5eac9ae01560cd280da11a5fa2d35:log:87', 'hash': '0x863bc1af09ee00b64a370948a2057f6ab5a5eac9ae01560cd280da11a5fa2d35', 'from': '0x502a27bc764c174c2bc7c91b6e4c656413c5bc08', 'to': '0x13a284afe997106d7c80d776db9863a9428d48ad', 'value': 5.10451716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e6ce004', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xe30884e4772afcc74bead128f0ebcfabeee757e911e41f1191e8e2be4f93846e:log:88', 'hash': '0xe30884e4772afcc74bead128f0ebcfabeee757e911e41f1191e8e2be4f93846e', 'from': '0x11089cc309d81f105d5a50d7bec5c63760f44f21', 'to': '0xa12b47560aaa0259b67933539e27974de0543177', 'value': 5.07543343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e407f2f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xd4ea5435fa0158b86c468a36ac5d6145076a18fbc3e9a30954fc3ad5717d49de:log:89', 'hash': '0xd4ea5435fa0158b86c468a36ac5d6145076a18fbc3e9a30954fc3ad5717d49de', 'from': '0x48774cd5a15168724a23ccd551b5c7d80c7f7f7d', 'to': '0x2cc60120dce96b11da9f2412782a4251012e4046', 'value': 3.06364411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1242bffb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x5961c837a1a89aa35904d04030d927a0c73379f7ade50a0e002c94d8f3ccd203:log:90', 'hash': '0x5961c837a1a89aa35904d04030d927a0c73379f7ade50a0e002c94d8f3ccd203', 'from': '0xb0286aa9901fbbce402b2170823c54752712c4e6', 'to': '0x37dd19b1312204fbf9eb5890b22d2591c8bcaad7', 'value': 11.58265608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4509bb08', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x83076070919cb62c9508c491e9b896ff4bbf1b5db081d3e88866a6057fe5de38:log:91', 'hash': '0x83076070919cb62c9508c491e9b896ff4bbf1b5db081d3e88866a6057fe5de38', 'from': '0x9e85896040bdaeb521fc31cbdffd62562739c03d', 'to': '0xf12f15f5abab21c32aef2ecca3b6b1e7798fed86', 'value': 3.4507524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14916e28', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x30b152a45ccfcbb0eca4dcca3099c7c82d4d6509daa100df5542fd216e187a40:log:92', 'hash': '0x30b152a45ccfcbb0eca4dcca3099c7c82d4d6509daa100df5542fd216e187a40', 'from': '0xf23a331a594715354363067252bba4768ad31130', 'to': '0x489ecdf9255b7f4535e76b7c30e228296283c108', 'value': 7.56844029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d1c85fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x7c063c7c7e8cfd9286efc37df4e8386bd01a08bdd8ef9e8e58416de0dc4938dc:log:95', 'hash': '0x7c063c7c7e8cfd9286efc37df4e8386bd01a08bdd8ef9e8e58416de0dc4938dc', 'from': '0x4599ec1164eb2813eb2194ae5891c6097c9c9dc5', 'to': '0xa7104cac3b43117b7e2ded1896ff4cbeaf634643', 'value': 6.24402668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2537a0ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xb8eeff237fdd13608b5e2604c4b64039af5418cfb326d4c60a2c506aff414889:log:96', 'hash': '0xb8eeff237fdd13608b5e2604c4b64039af5418cfb326d4c60a2c506aff414889', 'from': '0x79f3529d33243cad509d9b62c3d478863a5d66f5', 'to': '0xc9191d4deb787823d8537cee6936c151e1d8bd65', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x822424f10b41960852caa13dd3b683f1108ee1119f1ca74ac0377c628520f2d8:log:97', 'hash': '0x822424f10b41960852caa13dd3b683f1108ee1119f1ca74ac0377c628520f2d8', 'from': '0x0072b78da7e24dd64836a5da03dffb376a2ae872', 'to': '0x2babaacc2de1c3a0af16409910cfbf6abf404832', 'value': 5.36269041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ff6d0f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x15a4ec3a4c067742a60b27dc5845763d3e3239b6cfd97a88a9eb09505c9cdd0b:log:98', 'hash': '0x15a4ec3a4c067742a60b27dc5845763d3e3239b6cfd97a88a9eb09505c9cdd0b', 'from': '0x963ae8a282a98da9cf0e6ac55d8ed2765972190e', 'to': '0xb1c7733081cfc7ad69b4df5d6e7bc650e2bd381c', 'value': 4.40659718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a43ef06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xca23991302a0636e1dc5a9c195f0356306807f47059e4f41f69aea53665bffa8:log:99', 'hash': '0xca23991302a0636e1dc5a9c195f0356306807f47059e4f41f69aea53665bffa8', 'from': '0xedf8db43cb502e48b98e44c5d3eb482bb65b4d47', 'to': '0xffc2cac0dddb7e83c27a08be563a3a58dd2bc421', 'value': 8.48611397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3294c845', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xfd502842b05503d4b7a8da359054cc0ff3bdb8b0273a4ced1e755b578006a867:log:100', 'hash': '0xfd502842b05503d4b7a8da359054cc0ff3bdb8b0273a4ced1e755b578006a867', 'from': '0x07c8ef77fea9ecc015ea03b1c22b0446851b0211', 'to': '0xb34fcfd2c4a610cdf8bef239c5b6ec0ba4d7514a', 'value': 17.48619956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6839d2b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x4c4c667219b9eea0f585030b8836578f83ec9ec00f882acdfff70553c2f334b3:log:101', 'hash': '0x4c4c667219b9eea0f585030b8836578f83ec9ec00f882acdfff70553c2f334b3', 'from': '0x72a59ba6d0688fe541d4221dfcf694c397431177', 'to': '0x204aa8466da33cd1912b5cbc927e488811d111c3', 'value': 5.78664916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x227db9d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x379184e8ae09c5e0cc057d6d4e674e7cb3c696ae5a589cb3286a820f84cc7d68:log:102', 'hash': '0x379184e8ae09c5e0cc057d6d4e674e7cb3c696ae5a589cb3286a820f84cc7d68', 'from': '0x047ba30acb08acd642c697f55530b163200a2900', 'to': '0x04f039e884c2808ea455970f1dd2de8c49d7f63f', 'value': 9.81938963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a873313', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0x1b782dcd34abc1706231a5a4d480cf8e7986ebbd300176a09b8b04d0fe20345b:log:103', 'hash': '0x1b782dcd34abc1706231a5a4d480cf8e7986ebbd300176a09b8b04d0fe20345b', 'from': '0x7950402fd10113680ccb8661fd1685866829a0e2', 'to': '0x74f77fe7967fbb5b62ef3727a3ab3c8cf0911161', 'value': 10.01307861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3baebed5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xf6976aa2d6c875535322664a20cd6d77b0650c887d645248a9d9227cc77a4a62:log:104', 'hash': '0xf6976aa2d6c875535322664a20cd6d77b0650c887d645248a9d9227cc77a4a62', 'from': '0x001db23626d12ceba337d3fd1dc3a6a7f5a10776', 'to': '0x4631d3d98ab8c40e224baf190e2af87df7a99a46', 'value': 12.16091548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x487c159c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xbfb0badd15d692348d9be1f7e7277326e4b00f54a5b86cf101db9a87531d9892:log:105', 'hash': '0xbfb0badd15d692348d9be1f7e7277326e4b00f54a5b86cf101db9a87531d9892', 'from': '0x1f33ba6c80dac2deb08b314ad26e4b4268f8f5a4', 'to': '0x7a709edd5d45511f75fd83fb729f05b7bdd5a877', 'value': 3.40250883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1447d103', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687ab9', 'uniqueId': '0xa98ff37796fa697b6bc3aca42833cf84fc1b5e2bcd3da4ee4673bdb44b19ef74:log:106', 'hash': '0xa98ff37796fa697b6bc3aca42833cf84fc1b5e2bcd3da4ee4673bdb44b19ef74', 'from': '0x526cd73b84e8ad8bb70de42304a40e0b03393e7c', 'to': '0xcb26a6fc602b1dacde20e44193b41fd5bd9bbcf2', 'value': 4.99169806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dc0ba0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:43.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x9490fa3606cac236c92ed8f5a808dec0db318b3728124881c2346e11b3e660cc:log:38', 'hash': '0x9490fa3606cac236c92ed8f5a808dec0db318b3728124881c2346e11b3e660cc', 'from': '0x6df0325f8889cd0f2a1ecfd34d4f5244a656fa6b', 'to': '0x8e255df2b79af7fb3b1f0c429f0f4ec5b4b76fe8', 'value': 10.84593435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40a5951b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xf9cdfe4e662e272b2c1a04e3e6f1e5e7c55f0393db061fcd72a566fdb800221b:log:39', 'hash': '0xf9cdfe4e662e272b2c1a04e3e6f1e5e7c55f0393db061fcd72a566fdb800221b', 'from': '0xd22ca4c123f00c8290f7819c97ed84022c0b5dc4', 'to': '0xbde4c85dfe5df13d66a25115ae39abdedead3105', 'value': 5.37642752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x200bc700', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xe5cba08c77e6c8bd262083763db8fae756e1096132b27da9af96225693339af2:log:40', 'hash': '0xe5cba08c77e6c8bd262083763db8fae756e1096132b27da9af96225693339af2', 'from': '0x587073e3f7cbf3c534833e65e6be854931618248', 'to': '0x2f16ba1b52b65aff1a0a9d0234c27ce404006d66', 'value': 20.58372981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7ab04775', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x142484bd497aa45b8019d6dd94ce79e3f5fb732027fb74e5f14a06a845626215:log:41', 'hash': '0x142484bd497aa45b8019d6dd94ce79e3f5fb732027fb74e5f14a06a845626215', 'from': '0x0a6f8bcd9a26ec130053fcb12b1d1fec399ec194', 'to': '0xc5678e69034c3a913a8949aebcc354bc81db1b55', 'value': 4.97577866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1da86f8a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x729da6e024c46b62595c924665a288865dcb8a7823a78541a2ea4291f500886c:log:42', 'hash': '0x729da6e024c46b62595c924665a288865dcb8a7823a78541a2ea4291f500886c', 'from': '0xc160b52828a98c3d3b4608016e4fb75000667965', 'to': '0x7d88107cbe1d103f411dcc179502a4ebc432847f', 'value': 5.26141884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f5c49bc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x5da0e4055f160c51f31f767e6833a746b0da8211eddd91fa0654d1968cec8658:log:43', 'hash': '0x5da0e4055f160c51f31f767e6833a746b0da8211eddd91fa0654d1968cec8658', 'from': '0xade19583f06961aa27f60c0ff4343c0c3bc99f97', 'to': '0x9a4254d338a81bcae34bcce8ee66ade24877e949', 'value': 35.07042245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xd10937c5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xbf33a8ce73f598b9b793ef86843d4558331fb37fff9b0f5d03dc3277641edd59:log:44', 'hash': '0xbf33a8ce73f598b9b793ef86843d4558331fb37fff9b0f5d03dc3277641edd59', 'from': '0x06dc4d9d88899fb468c1d3c356ab9c83faf894cd', 'to': '0xa478a0dd432f083f6af9cc2ae8f97d3a2ff19c5c', 'value': 17.8143532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6a2e8bb8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x294c3406db23e7e09c40ad003ac4ecc9d75e6c52b777f3074a08564258f6cdf0:log:45', 'hash': '0x294c3406db23e7e09c40ad003ac4ecc9d75e6c52b777f3074a08564258f6cdf0', 'from': '0xa1461ae6530dcf431628f60c2ce2e88905f10bf8', 'to': '0xe8b61308c048af8f3f20101fb45ff8b7f7c23e19', 'value': 13.63515755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5145996b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x36ca369331e977caa435dd2ac6f9570731419deb340570e922f3375dae2efd39:log:48', 'hash': '0x36ca369331e977caa435dd2ac6f9570731419deb340570e922f3375dae2efd39', 'from': '0xaab173d3443e828b6827aa8873a5f28356f0728f', 'to': '0x76a4ed046eba05f2148cfede2e1e5247c565b05a', 'value': 6.32519171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25b37a03', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x3dc46673ad7a4f47fda64cc2796206e36a831ef8874ecf588d7896f1b0304f69:log:49', 'hash': '0x3dc46673ad7a4f47fda64cc2796206e36a831ef8874ecf588d7896f1b0304f69', 'from': '0x613eee4054d987388aebd79f40137f584bec6548', 'to': '0x2a1b59bde34d423456d58dcc6087247b7b244bb6', 'value': 15.94674455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5f0ccd17', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xc539aff3bfccf0ea312d3e40e68435780edadfae5e2710b26b8b3151a8911a1b:log:50', 'hash': '0xc539aff3bfccf0ea312d3e40e68435780edadfae5e2710b26b8b3151a8911a1b', 'from': '0x08efdf8114a6adbca814ebaf0684abc3404e8135', 'to': '0xeea511ba8d79feb1e053010175db00d1b63696ca', 'value': 15.38813684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5bb86ef4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x3a89090a0c1b6c2688ffb9a39a16908fb8a4929d040fb05983c95005a8b7f312:log:51', 'hash': '0x3a89090a0c1b6c2688ffb9a39a16908fb8a4929d040fb05983c95005a8b7f312', 'from': '0x81c8029428cdb344925929336df13fae7b344cf6', 'to': '0x15f03a6c33f43edb08ec02660d99696cddfb9d2e', 'value': 1.294912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e100', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x2d889693cd89c0002f46a406fc230d714416e97c6ba6c32fb22250d00aef746b:log:52', 'hash': '0x2d889693cd89c0002f46a406fc230d714416e97c6ba6c32fb22250d00aef746b', 'from': '0x800e4ea093b94caf29c4e2de801918c73665cb49', 'to': '0xe8a55ec403b590179a8e234dc5a2939d7ded5d47', 'value': 10.72279443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3fe9af93', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x695c50994c3ebdd52c7682a06bdb2f605ed14bb0376e72120315580469681232:log:53', 'hash': '0x695c50994c3ebdd52c7682a06bdb2f605ed14bb0376e72120315580469681232', 'from': '0x520c0a7ff300f81efa04fb2278583e92d24c820b', 'to': '0xb2712e18ecfcb00e93d1fbf5351d569e5576e53d', 'value': 24.17956504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x901f1698', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x85e2925d0c93de5c202c6c5d6698f27f533a165d099b12b97f48a786301f5f0b:log:54', 'hash': '0x85e2925d0c93de5c202c6c5d6698f27f533a165d099b12b97f48a786301f5f0b', 'from': '0x5bd41fad13a7d6fd344db2f77adf0d9b31e2956b', 'to': '0x34146f622ffcd97230af63e6510b368a06b9bd5d', 'value': 7.72640127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e0d8d7f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x9d330fd122fbce41e5be356711cfca68e6199b0b7555a705d07f22705666dc55:log:55', 'hash': '0x9d330fd122fbce41e5be356711cfca68e6199b0b7555a705d07f22705666dc55', 'from': '0x49998b8c9f0f4d4421770182d4ef4a54aa4228df', 'to': '0x7529779c7b809fe51dc0d5923e3b4a0ad2ac7ece', 'value': 6.21890315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25114b0b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xd1fab08616879ca8f9bb8192e182ae2cdabb3616dd6f6a6df49cbf730940a5b7:log:56', 'hash': '0xd1fab08616879ca8f9bb8192e182ae2cdabb3616dd6f6a6df49cbf730940a5b7', 'from': '0xfea0a6eaa7d3875dd785b2b21292ff4789c89453', 'to': '0x6f07e45cc9e9549d99d4f4078e4d71c7e90b935f', 'value': 7.30463512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b89fd18', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x5eb119789482b6f4174c9467d3c57dccd216630131c5e436d88d2d4e446ffe31:log:57', 'hash': '0x5eb119789482b6f4174c9467d3c57dccd216630131c5e436d88d2d4e446ffe31', 'from': '0x1b867bae90f9d03f3a014993157f285af100ddf2', 'to': '0x867ea1a19cf19ad63b521d91a0d79fda65cf26c2', 'value': 21.99723789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x831d1f0d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x35e7d6307766bae7abe7138f023cc8352b66897f60c198de2902c2576549ec17:log:58', 'hash': '0x35e7d6307766bae7abe7138f023cc8352b66897f60c198de2902c2576549ec17', 'from': '0x1ced897aac1735b0002e320b19e319c013e4f209', 'to': '0x191f11fb40d0a9701568c4c387135b3f2a5d117f', 'value': 6.2802862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x256ef4cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0xecf4274606f80b9ccec8b5f68edfa6e2b40e306a566b4a617fa0d22921a5847b:log:59', 'hash': '0xecf4274606f80b9ccec8b5f68edfa6e2b40e306a566b4a617fa0d22921a5847b', 'from': '0xdc12d295a0bec22ba116f083618033dd177091cd', 'to': '0x17a9862ffa5f39de6b138b8f80c45f9ca4cb36e8', 'value': 11.86592889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x46b9f879', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x21be50cbc9e6037dbb39d92e2d2807279d48e5a8af643b155907a59f2cb32fe9:log:60', 'hash': '0x21be50cbc9e6037dbb39d92e2d2807279d48e5a8af643b155907a59f2cb32fe9', 'from': '0x759cad84148ac1507fce17158a38f5a5c1364a88', 'to': '0xfa86a22f0b04aeb1f07960f1386f7f8d42d539b9', 'value': 23.5348763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8c475f0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687aba', 'uniqueId': '0x8fa81e519e8e607129ae06118099ccf8154ae76a75ff2008833080b5d4992f50:log:62', 'hash': '0x8fa81e519e8e607129ae06118099ccf8154ae76a75ff2008833080b5d4992f50', 'from': '0xe7b4d857d9ada583756d4a882f76044d0e6f5622', 'to': '0x6d4e75678496ecb95ee8174041a9bef2e82abb82', 'value': 4.99305294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dc2cb4e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:38:47.000Z'}}, {'blockNum': '0x687abd', 'uniqueId': '0x423a6ddc678ba00d96741a9abe6830d860da1df28a3bae5552052d9f2b85dccc:log:158', 'hash': '0x423a6ddc678ba00d96741a9abe6830d860da1df28a3bae5552052d9f2b85dccc', 'from': '0xdb8a31ed40a7c0a1c02a720f354c52cc0abed552', 'to': '0x5e63d9a464b5dc11211b0729764080f53f00ac22', 'value': 5.18360929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ee58f61', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:13.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x8893428d41e63493b7099a60996910462aa7169d08c0997ba188824d2201ff3d:log:137', 'hash': '0x8893428d41e63493b7099a60996910462aa7169d08c0997ba188824d2201ff3d', 'from': '0x8fc4488c8c9349af95a56eb0c9453ecc5bca816f', 'to': '0x3d314ec231c1c2ea56b5880d3ab084e1d4bfe87e', 'value': 6.55992352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2719a620', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x501da32f2451fbf2390d8e268fa20a21ab099eb37e9b71205dbefc97dc4f1447:log:138', 'hash': '0x501da32f2451fbf2390d8e268fa20a21ab099eb37e9b71205dbefc97dc4f1447', 'from': '0x4f20f684c9a2cd023e8efde497cff47436a1f8b3', 'to': '0x02b7c0723c4d23df0180c9910ed98810e66f811e', 'value': 11.56189617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44ea0db1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xf85b964cb7ad4176708138009457f432ab2be578d1d88d8450bd5db458e09eb0:log:139', 'hash': '0xf85b964cb7ad4176708138009457f432ab2be578d1d88d8450bd5db458e09eb0', 'from': '0x1b53af706bfaa8acbf745b9074f0f68e92378016', 'to': '0x3c4ec1a09c520b70045156b37f863c7e745ef801', 'value': 5.23396814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f3266ce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xcdb6e4ac4ecd89bbf8a674e05d7fec82fa8d1398a15b8fccebcc102109b72413:log:140', 'hash': '0xcdb6e4ac4ecd89bbf8a674e05d7fec82fa8d1398a15b8fccebcc102109b72413', 'from': '0x7bbfd2d44b8c0b4f0d6e6ec07000fe23e2443928', 'to': '0xff487100bdeae697d5888bffb569d6b2ad6cc0be', 'value': 7.90137838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f188bee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xc0e6595a71e987af21b8f76a85cec09aef5acb4bc6fe24d664b75469168479a3:log:141', 'hash': '0xc0e6595a71e987af21b8f76a85cec09aef5acb4bc6fe24d664b75469168479a3', 'from': '0xbaaaec82829eae7207630a88c66fc8bef19b06a9', 'to': '0xab65398c2928e3946261327537767809ed440cf2', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x8b5db7991137a72f58607a4c2c4c6ab24a7cac14943c591a4408f46aebfb1bdc:log:142', 'hash': '0x8b5db7991137a72f58607a4c2c4c6ab24a7cac14943c591a4408f46aebfb1bdc', 'from': '0xd1be8d24c0d3ac90692348813837227bda570763', 'to': '0x4aa2c454c27ac594173ba4f004e802c89548c0d2', 'value': 15.57710854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5cd8c806', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x4458e01f389c3a72c39cb0a29f96631a5f11110644a07b771bd4b4d677f56589:log:143', 'hash': '0x4458e01f389c3a72c39cb0a29f96631a5f11110644a07b771bd4b4d677f56589', 'from': '0x9c80c5c7ab36fe9a5f79081b0c6091e2e6995b0c', 'to': '0xfd884e863de2937687fac0f0ffbb36a7650d2731', 'value': 5.336067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fce312c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x766a260b9137131bd145cfc16f981b8b4f49ba1678c8e4b7db8fda1c230375cb:log:144', 'hash': '0x766a260b9137131bd145cfc16f981b8b4f49ba1678c8e4b7db8fda1c230375cb', 'from': '0x2b66676e4acac7374d5908f535769c74b5d01fcb', 'to': '0x6f38f7288702a023cc8ba6a0ad46700c91d8b992', 'value': 6.05619553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24190561', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x38251451ff4972d7906beaf2ea5ae2320f73d0a04d30dae29fafe502cbfdee9a:log:145', 'hash': '0x38251451ff4972d7906beaf2ea5ae2320f73d0a04d30dae29fafe502cbfdee9a', 'from': '0xac429bb4b94c1930802ef74d9b501cdec675de47', 'to': '0x3dc6170e83719b853cd153b9091a915dc9bacce0', 'value': 13.89802985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x52d6b5e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x5c4f9e08aac134f86d282aba113c71b72978fd47562473ec3ef3bf22a43ec37a:log:146', 'hash': '0x5c4f9e08aac134f86d282aba113c71b72978fd47562473ec3ef3bf22a43ec37a', 'from': '0xc6aa901575dd20483f16d23bdc0dc34c98b95eba', 'to': '0xd0a7fadfc266df8e37e347ed0cb7b39415b923dd', 'value': 6.42458483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x264b2373', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x7059247c52c35523003f3d0393c3849f4a3c64a8f74eac713f685762d641efc1:log:147', 'hash': '0x7059247c52c35523003f3d0393c3849f4a3c64a8f74eac713f685762d641efc1', 'from': '0x96c8673f78f16b5fef22bf6baa4e1fae2c67086e', 'to': '0xbec77fcf6fab3f55350da7095fc69232c576d12e', 'value': 5.26641557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f63e995', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x4323207cfdf55d8c2f921e687547751fff96b3f9e1f13628d36ef52a91491f6c:log:148', 'hash': '0x4323207cfdf55d8c2f921e687547751fff96b3f9e1f13628d36ef52a91491f6c', 'from': '0x3371df8ef69e9c955b9aeef4574682fbfc779153', 'to': '0xa9fb1b59dfa40307aad80513475f1747f9416972', 'value': 11.02629963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41b8cc4b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x45e12ee230ad5a3b060b43ba9420b930576c7f013513e7e843c685d2e6400e40:log:149', 'hash': '0x45e12ee230ad5a3b060b43ba9420b930576c7f013513e7e843c685d2e6400e40', 'from': '0xf32eb7391a6781d6bbfbb2a85ec925958f35b9e0', 'to': '0x3ea1de92cfdfdfaff8f461acbb8ef811f5517a8f', 'value': 10.11333422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c47b92e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xad9aded75ddb3f4dc3329539bfe8d6f67627bb463d5ce0b87f31ce6970378d2c:log:150', 'hash': '0xad9aded75ddb3f4dc3329539bfe8d6f67627bb463d5ce0b87f31ce6970378d2c', 'from': '0xa3fd36ae7754a8db374fe4a46d8ce65f93dfd0d5', 'to': '0xa63bca44e93aafc0c014f4f2afd1b723e9eb7180', 'value': 10.19941922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ccb1422', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xdd3197613090ef72c80770c22a12f244dc56a9c0476197e8f15a7bed0bcf0761:log:151', 'hash': '0xdd3197613090ef72c80770c22a12f244dc56a9c0476197e8f15a7bed0bcf0761', 'from': '0xac46916e389e16e6e5e7dfd23068820e790b7af8', 'to': '0xdc653767dbe60bb5298995b501dbee942f0b6c77', 'value': 10.55028158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ee273be', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xc8819cfe69da924ab30285dcba57b157b4a6a7e6638a34419065ff46fe858e74:log:152', 'hash': '0xc8819cfe69da924ab30285dcba57b157b4a6a7e6638a34419065ff46fe858e74', 'from': '0x3b5e2931fba79749edbafae637e25cf4a385b6db', 'to': '0xca760e435a5e1981a7b9848ce2a48b3d09fca944', 'value': 16.42746881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x61ea5401', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x7caca73b6483fe3cff8379ef115b2418d6ef4eb2f1d482d0b2384559e3a257de:log:153', 'hash': '0x7caca73b6483fe3cff8379ef115b2418d6ef4eb2f1d482d0b2384559e3a257de', 'from': '0x64ace2f2500c7eb41dc1b3c4a17b9dac885e5b2a', 'to': '0x8feaf830d6cacc4a5b7a7deb20e989dea5458cc4', 'value': 6.9659951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x298543d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x5ae3617a2b5697158b35aa3bc0e9a887dc95a6d0aa2c2ebc2e827626e2f29147:log:154', 'hash': '0x5ae3617a2b5697158b35aa3bc0e9a887dc95a6d0aa2c2ebc2e827626e2f29147', 'from': '0x5266685111e830efae827ef0a15337baa36fd267', 'to': '0xd3fcab6426f7e4666f1a860b90ead6a4e3c8f637', 'value': 6.40213124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2628e084', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x889ebc11ce03f8a782c780e4eac4bfadf533098f590b2f955d09d00c298521f1:log:155', 'hash': '0x889ebc11ce03f8a782c780e4eac4bfadf533098f590b2f955d09d00c298521f1', 'from': '0xbd47d928fb6675ffdb2047349df689a117d534b4', 'to': '0x35a2378fdb18265930e96172a842666db564f4ed', 'value': 25.03320051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9535a1f3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x448050bf9b44b7ee324e18f1ae0f02fc6b1da15ef089682ff94ce8021ec10716:log:156', 'hash': '0x448050bf9b44b7ee324e18f1ae0f02fc6b1da15ef089682ff94ce8021ec10716', 'from': '0x385941d0fdd977bd1645d4d621b74b4dc06bf3aa', 'to': '0xaa8d4c45f9619e0db7aa10abfcb5e5110d5dfe29', 'value': 5.9228693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x234d94d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x53063939b9a073537ad38e4d6fc8f1422961df0276547b854be65dded199c91c:log:157', 'hash': '0x53063939b9a073537ad38e4d6fc8f1422961df0276547b854be65dded199c91c', 'from': '0x013c0d3a7ed61f9d69a08eb368afe0c434140825', 'to': '0xe0f285893fa2f85dd521e6221b121a20237f1fce', 'value': 13.00595177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d8581e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xba8a39b363d9fa4333c906ba5c073b6e2c488c8b336cdcfe057bc9c16673d6d8:log:158', 'hash': '0xba8a39b363d9fa4333c906ba5c073b6e2c488c8b336cdcfe057bc9c16673d6d8', 'from': '0x91c8f4863cc79a3eda43de129afd4a4408ac2c53', 'to': '0x96014f44dd26f634430d8567fedceeae7fce53b1', 'value': 11.66614257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x45891ef1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xf051798785bd6f7bf75dcbeb8304b629bcc87d8e313fb022588a834a8ca28d6b:log:159', 'hash': '0xf051798785bd6f7bf75dcbeb8304b629bcc87d8e313fb022588a834a8ca28d6b', 'from': '0x4423e3b007aebf606f426e085f5148fe84be0a46', 'to': '0x6e1f7e45ab8831d71f0cd9b58755da21e7b67286', 'value': 9.47729439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x387d341f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x41d6ba31f4aef84fb6c070e4e49f9a084d9b50c780cc756c42a7678b98f52b19:log:160', 'hash': '0x41d6ba31f4aef84fb6c070e4e49f9a084d9b50c780cc756c42a7678b98f52b19', 'from': '0x4cf4e033bf79a2f84173ab6145db78f368cfc2c1', 'to': '0xbc7c2df81e39b8aeb4998a5e9d243b09a983c83c', 'value': 3.4126106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14573b04', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0x086c5c4c4a40c2c5fa45a64edcbab66cb6f39fa53f2a79c0f28f30016358d619:log:161', 'hash': '0x086c5c4c4a40c2c5fa45a64edcbab66cb6f39fa53f2a79c0f28f30016358d619', 'from': '0x5aa0e7623082370075e8a686848260e5eb4d70c6', 'to': '0xbd538e3cc49f9e6111c3c111d03f3005ec93924b', 'value': 7.81423368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e939308', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xeac72a2f362cc2ad3c78a936da188b3f5d199e1c583c4203b8f028319f36ed3d:log:162', 'hash': '0xeac72a2f362cc2ad3c78a936da188b3f5d199e1c583c4203b8f028319f36ed3d', 'from': '0x22e876d42c3aec029c9a334d6d24a3c79f230dff', 'to': '0xc8d8d8e91089dfcc9fa6d710eb13fa2945e3ea2e', 'value': 5.91715646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2344dd3e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xfd8a732b3b92b19b15b4d1f156e7f46ea3e30e5c91b0291ba5cb6363d00e2458:log:163', 'hash': '0xfd8a732b3b92b19b15b4d1f156e7f46ea3e30e5c91b0291ba5cb6363d00e2458', 'from': '0x32223bc835595dbe0fe9548564b2f286f85177b1', 'to': '0x9114a4f32738509681138583f45adb23516f20c6', 'value': 8.0148028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2fc59e58', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xa911b72670816503dd56f30e010bd352395e215ccea8c3ab2396ac2148c74240:log:164', 'hash': '0xa911b72670816503dd56f30e010bd352395e215ccea8c3ab2396ac2148c74240', 'from': '0xe3928ddd207384c01399de96ffcbb41675f0a62a', 'to': '0xb8e7f2f67448a73ef028fc6daa172f2cce12e2fe', 'value': 4.66024452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1bc6f804', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xe8367cfcfe70067135ab41475b038dd042114eb0ceb4e52407a5ad1e6f2b0950:log:165', 'hash': '0xe8367cfcfe70067135ab41475b038dd042114eb0ceb4e52407a5ad1e6f2b0950', 'from': '0xe944a9846a1c251b3386989114c62f834e1e282e', 'to': '0xbd00ac7a5c53c01c25ed004de378571fe3a2b580', 'value': 5.00681419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd7cacb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abe', 'uniqueId': '0xd86168ac0c06bd02785dc524a1b55f09de37df01e309b009e433a2f22b05dcd3:log:166', 'hash': '0xd86168ac0c06bd02785dc524a1b55f09de37df01e309b009e433a2f22b05dcd3', 'from': '0xc3a15c498e641b04ef692484ab15a3b91dffd6f4', 'to': '0x11d3a8ab600c3c20adade13b16225c0d0127b6bd', 'value': 7.80991191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e8cfad7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:16.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x6f17be23df342397dc4b5856f15ac29885e47c40ea8400df5872181b0bc530cd:log:205', 'hash': '0x6f17be23df342397dc4b5856f15ac29885e47c40ea8400df5872181b0bc530cd', 'from': '0x30592f1361c86326cc7d83b93faa08d002c4604b', 'to': '0x31c3655b115227c735adc53be705faed10994d92', 'value': 5.97499498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x239d1e6a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0xeece0697e21e545014b34a4c975a038c5774d3e2b67c331b50840c976a5621a3:log:206', 'hash': '0xeece0697e21e545014b34a4c975a038c5774d3e2b67c331b50840c976a5621a3', 'from': '0xd148ed767dbded027ca1cdb4131ff877f2714157', 'to': '0x2b714ec81bf8cb1ff06d19139b63395a13c67591', 'value': 12.85510693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c9f5625', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0xbfe1c694c8f8b561b7a0da9f378c7a97539f30d661eba20c447a5a64c5eda30f:log:207', 'hash': '0xbfe1c694c8f8b561b7a0da9f378c7a97539f30d661eba20c447a5a64c5eda30f', 'from': '0x23282cb0e83d2262b87d0c13d3f325dc9ea29694', 'to': '0x5d19606658a5e5ef5c9539326ad9275f6f696e9f', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x76e28cd3aa36697684b6c1be0c257a7e1038175a7e41af4a6a4a0ce9d17a7afd:log:208', 'hash': '0x76e28cd3aa36697684b6c1be0c257a7e1038175a7e41af4a6a4a0ce9d17a7afd', 'from': '0x7f78d7cded74362ae4694e749c40310b94a56a57', 'to': '0xfb91c8a87cc307bfba1f13b8cf7a5ef4f8545d48', 'value': 3.5935976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x156b6510', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x072187b2994ca5b8df9e22f410a6d25ac7675dfdd7efdd8330a64f7f9ab18899:log:209', 'hash': '0x072187b2994ca5b8df9e22f410a6d25ac7675dfdd7efdd8330a64f7f9ab18899', 'from': '0x41d481d7d677bdb2183db6f0edd79c49df00a189', 'to': '0x364c30055af202555c86f3b44e6380728c2274d5', 'value': 28.50634153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa9e939a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x5976f9f31fa1efdb9f6ca1c7e14fddb1082c7b5b8767b06a0e61c613aa1b0c8c:log:210', 'hash': '0x5976f9f31fa1efdb9f6ca1c7e14fddb1082c7b5b8767b06a0e61c613aa1b0c8c', 'from': '0x26fae5945fd2623b1cfd3567eb4c4770837bcaa6', 'to': '0x0d75ba1959ea7f9413e43e98f2f4224e26aceb07', 'value': 6.02991506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23f0eb92', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x8023350c1bd44a6b0aa7b76093d4224c41ce3d1b83b13dd6d69c4d914f7b070c:log:211', 'hash': '0x8023350c1bd44a6b0aa7b76093d4224c41ce3d1b83b13dd6d69c4d914f7b070c', 'from': '0x881fad600971e3289533a16f41302f9e46ef8646', 'to': '0x35091b919a8389e907b15cc6da1c7f731a2f7a30', 'value': 4.83705779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cd4c3b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x2b66c7e7d01a5da0222de252437422eb58f2d25b40c10e0ae71a6e2b43978eb6:log:212', 'hash': '0x2b66c7e7d01a5da0222de252437422eb58f2d25b40c10e0ae71a6e2b43978eb6', 'from': '0x8595e942c1fee31e38488191a37d4305ff633358', 'to': '0xe709a4af7eb9e8315046016dd1d3e3088168d95c', 'value': 6.2355828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x252abe88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x26770e1151232438f917f29f873e8112ae190318c1e692302905b117a4f904c6:log:214', 'hash': '0x26770e1151232438f917f29f873e8112ae190318c1e692302905b117a4f904c6', 'from': '0xaab6c2a0448aaab53aa17055cb8d492a4579c0f3', 'to': '0x37927410e10c8283cfd686c5505d8223ba83043d', 'value': 10.20723757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3cd7022d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x2966938de057bd82121d705cf48b2527710151a78074483cc3cde5d49ef2d2b8:log:215', 'hash': '0x2966938de057bd82121d705cf48b2527710151a78074483cc3cde5d49ef2d2b8', 'from': '0xe91ffea7a25599d2cf7763173f1b20a9291725f7', 'to': '0x297e27c45600478470904c5fdf6616e304f53acf', 'value': 3.10004538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x127a4b3a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x70529deea8d0ba076eaafc5ecc0ed7df5630eef09c4275058bd4e3125a424f8a:log:216', 'hash': '0x70529deea8d0ba076eaafc5ecc0ed7df5630eef09c4275058bd4e3125a424f8a', 'from': '0xc948ffe78422ae3a6b6220de0eca946f7fd980ca', 'to': '0x0a3179087f181bab4f6db57ca76dba4bdd83060c', 'value': 5.35102351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fe5038f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x9e1ddfe7422d504aedf726805abf164335728429297b1b4fe9aeb05e295371d4:log:217', 'hash': '0x9e1ddfe7422d504aedf726805abf164335728429297b1b4fe9aeb05e295371d4', 'from': '0x1a0004e42c68f49c2bf8830828b9777f2a36df79', 'to': '0x96f9d782267ded30ccaa4338b57ec07f0afae681', 'value': 45.56458464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010f9609e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x3a45144405dd4dffb33610d3d0752bfa1913f9f7a452d279b2411fe47d6836c9:log:218', 'hash': '0x3a45144405dd4dffb33610d3d0752bfa1913f9f7a452d279b2411fe47d6836c9', 'from': '0x259ca447a14cb608351e041b00f573463ae3ccae', 'to': '0xff8ca1e93239bdf889e84e3f596e5d78a3e2ac47', 'value': 6.04881355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x240dc1cb', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x4a78408233f2c16a6d0b5e77b7441981dc1b52d52a696ea8d20c8eb4219c0e8f:log:219', 'hash': '0x4a78408233f2c16a6d0b5e77b7441981dc1b52d52a696ea8d20c8eb4219c0e8f', 'from': '0x3d3633b966041abfe86c3caf69ffa554e7d7277e', 'to': '0x2eb9c92fdec6431489e38e35d10fc88c035b0801', 'value': 13.92989672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x530755e8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687abf', 'uniqueId': '0x2a8304d2dfab72f5f5ebd36cdac7b46567ea47bb3e9afde4d9705184a1c880fd:log:220', 'hash': '0x2a8304d2dfab72f5f5ebd36cdac7b46567ea47bb3e9afde4d9705184a1c880fd', 'from': '0x368e5f8d715693a8ccd1af98e8c4e6468bd32728', 'to': '0x2140de820e6d80143dcb4d70d73db58be992ddb0', 'value': 4.84033268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1cd9c2f4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:39:20.000Z'}}, {'blockNum': '0x687ac2', 'uniqueId': '0x567561b8a051da2908702eade1a620ac272aff6f6816126623757bfa8ea7d4ba:log:79', 'hash': '0x567561b8a051da2908702eade1a620ac272aff6f6816126623757bfa8ea7d4ba', 'from': '0x3c21a6b86ed5425af19fd0283c349b65d2968538', 'to': '0x67ec2f3554442d632bb29182aa8c7c73eea12ccd', 'value': 19.4915718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x742dc73c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:02.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x1b4188c0fc2e7454ba0e232032f2d59e57ca753e766684b9582b1337cf37796c:log:118', 'hash': '0x1b4188c0fc2e7454ba0e232032f2d59e57ca753e766684b9582b1337cf37796c', 'from': '0x2889d633a689915ebc5fa81f65b955c87b0e2b8d', 'to': '0x8de76bc2a82ff3b88947baa8aba915162853f86c', 'value': 14.67888106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x577e31ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x690d5b3f58fb92796db44ff464d440373674d1928066fb13c1190d1b62308b0a:log:119', 'hash': '0x690d5b3f58fb92796db44ff464d440373674d1928066fb13c1190d1b62308b0a', 'from': '0x1f2b324323ce1f0b95b1039c680a63a058acc2b4', 'to': '0x5ed222d6c87febf8374a146e9f369f2c937e08cc', 'value': 5.86530463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22f5be9f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x616cf07e45d80be4108e9343b15c43bf7d6d28c83e6dbe2b7cd89338458a5e8f:log:120', 'hash': '0x616cf07e45d80be4108e9343b15c43bf7d6d28c83e6dbe2b7cd89338458a5e8f', 'from': '0xfd2cdd60f1d4037c0afaa44fac9c44149560565d', 'to': '0xc041504b327c0edbed293b02e2af5513ab9a0c19', 'value': 11.96148882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x474bc892', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xaed242fa05626a740272672aeabc8654b562ab492170a37a160e94092dc17eda:log:121', 'hash': '0xaed242fa05626a740272672aeabc8654b562ab492170a37a160e94092dc17eda', 'from': '0x46bf7331351fc4d6fb84453df87880ee6e0d3e55', 'to': '0x63402435b9013fba6faeed8543cb5ab7d85f203a', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x086aae5e85b8955c39abdd4dfd535b16439a2766a6019084a7282a92b8ddfaeb:log:124', 'hash': '0x086aae5e85b8955c39abdd4dfd535b16439a2766a6019084a7282a92b8ddfaeb', 'from': '0x8e33f7fe228854df5eee97f0e2f44c147378b8d0', 'to': '0xe7f8998a85a754b86cabf967eb902ffaf73118c6', 'value': 3.37500725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x141dda35', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x5d6ff657378af08664a08b9b32ea82e68222af6862c55443138c9b6fa0758442:log:125', 'hash': '0x5d6ff657378af08664a08b9b32ea82e68222af6862c55443138c9b6fa0758442', 'from': '0xae7539ed912c5d74ce4936b0c814bb2a0bb67404', 'to': '0xce2033122e5ab0b4299b87aadf2b782a41286002', 'value': 3.5697396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1546fd88', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x90b9d49772adf5e23d2707457d19cc1a6d79757b197f1b1c72db48d7a0e5a8c5:log:131', 'hash': '0x90b9d49772adf5e23d2707457d19cc1a6d79757b197f1b1c72db48d7a0e5a8c5', 'from': '0x6f717b5f58ec9411cf2adc54d0f19848198f09db', 'to': '0x16e22c15f547264a34f5fa7ecabb2605f0cbff81', 'value': 12.85842076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4ca4649c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x22369fe6e691e441282005c0b3a7e7f1094cf668b4c6d8d93e145c7b4116d62a:log:132', 'hash': '0x22369fe6e691e441282005c0b3a7e7f1094cf668b4c6d8d93e145c7b4116d62a', 'from': '0x3a0fefd98ced05242b9ba37ea13e7c615f5aadd9', 'to': '0x7dcbf7d0160a563189ac6e777728d654b1bd59bf', 'value': 6.44089017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x266404b9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x345b26770ef87d3e7af884b318b36506a5ddebce6797411218f011f41e07a9b1:log:133', 'hash': '0x345b26770ef87d3e7af884b318b36506a5ddebce6797411218f011f41e07a9b1', 'from': '0xca85e8df7828c6406c64ac976a4af3cde73dd9a2', 'to': '0x81bc173de842eb942812e3166be82e7e1faaf20d', 'value': 10.78378906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4046c19a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xdf2f782bba956ea82b9b2d2864023cebf01df395178e79180c90942ddcc396c8:log:134', 'hash': '0xdf2f782bba956ea82b9b2d2864023cebf01df395178e79180c90942ddcc396c8', 'from': '0xc7a7f167e2584aa55dd83c9b8e936cca78a1360c', 'to': '0x5236300268c310fdbd0b71946d6b474cfdd0dff9', 'value': 6.52010495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26dce3ff', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xd6faf13ebb2f7e205b1c6bd0221d6b458c819bbe4de5394155d4348070099948:log:135', 'hash': '0xd6faf13ebb2f7e205b1c6bd0221d6b458c819bbe4de5394155d4348070099948', 'from': '0x27f98c073ec8a776a0e0a560aa5202adfff5a8a4', 'to': '0xe72f41acf1187da04473a9d10b4ee26af23e06ea', 'value': 8.38424925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x31f9595d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x2431d9e66d8cf93b7dafb713177e85e88eb66ff81e687b0fd1f3341e58b528b5:log:136', 'hash': '0x2431d9e66d8cf93b7dafb713177e85e88eb66ff81e687b0fd1f3341e58b528b5', 'from': '0x9b6d3b2917c3508d5f6ab3084fa2e0411152e137', 'to': '0x15c3a5fe1bc3bc7bb26bc2dbf1132a9c32551f4e', 'value': 5.16514996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ec964b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xf70651e28a267589b0b3ede2929c7b2b09be615306a890e3d39bf10b46b8ff55:log:137', 'hash': '0xf70651e28a267589b0b3ede2929c7b2b09be615306a890e3d39bf10b46b8ff55', 'from': '0x3d9713794b846648c78d71375ae1b1b4478a9cc2', 'to': '0x951f34e99a427ea014b314158617fcdfd57df97b', 'value': 6.54924195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x270959a3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xbb946a4a989d621b4ccbf89233c21933181548566a20604648a58f2cb781980b:log:138', 'hash': '0xbb946a4a989d621b4ccbf89233c21933181548566a20604648a58f2cb781980b', 'from': '0x579985c19069ebfae4ea22b358397bfb71725854', 'to': '0x0e2ad4babcb5a89e621439e28e11ed8d355663ab', 'value': 5.08726856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e528e48', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x1fc18e333c3c885c61715b5d16226384bfb52b7687776b3a2dbe95823399b980:log:139', 'hash': '0x1fc18e333c3c885c61715b5d16226384bfb52b7687776b3a2dbe95823399b980', 'from': '0x70e042ba1e472124547d43e8e8387670ce751420', 'to': '0xc582230335fcaec62d52935bd0474dd50d3735e4', 'value': 14.31299967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x554fe77f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x66745968ce92df52aaf53afa8ce4b748022a0d1c56a09848bca0f29db846c5e6:log:140', 'hash': '0x66745968ce92df52aaf53afa8ce4b748022a0d1c56a09848bca0f29db846c5e6', 'from': '0x0bae2bb9484794fee2e8748600cae2a3fbc9e889', 'to': '0x4db5c215735400da54046c847af6245f20458445', 'value': 9.94333824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b445480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x9993459ba48baedaf2a8a6caa57e031ee5590d62caf47a7fd528cbbe37d37355:log:141', 'hash': '0x9993459ba48baedaf2a8a6caa57e031ee5590d62caf47a7fd528cbbe37d37355', 'from': '0x1f3b0e24e1a9acea8758eb7e5d6bc3baa9549f1e', 'to': '0x913c5ac337784021efde37876e80c8fd36971b07', 'value': 16.91844724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64d78074', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x3352a38c6e1c5a9dc429bbb48979bd993432af97777f35b3e7eb2d540f09217e:log:142', 'hash': '0x3352a38c6e1c5a9dc429bbb48979bd993432af97777f35b3e7eb2d540f09217e', 'from': '0xb132a68e3fc859a5ca26788eea53b74be6c8b975', 'to': '0xdc4a76469f7a5dd2250c659ee1c37554c41ec036', 'value': 10.73265281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ff8ba81', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x19fa4618827e6ede9865a594e38757862af21646a7d6fa9842137e3302eb34df:log:143', 'hash': '0x19fa4618827e6ede9865a594e38757862af21646a7d6fa9842137e3302eb34df', 'from': '0x740cd832dd20ae19e9856e5fb67c155999244cd0', 'to': '0x08a89bb063d092aaa84428eac0817851d7452942', 'value': 10.97735088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x416e1bb0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0x989744a5af2077f307b43396e055a860df87134f10ecbc17364868eba8bd574e:log:144', 'hash': '0x989744a5af2077f307b43396e055a860df87134f10ecbc17364868eba8bd574e', 'from': '0x7b56bc8772ebf895cddc0827512faab641a69850', 'to': '0x2253db577e1457223432a4a527e70d0e3dedaf51', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ac4', 'uniqueId': '0xb33aee56a902bafccc86c91449cddcce80c40ed208a3c06e14aa8c7d379e7c19:log:145', 'hash': '0xb33aee56a902bafccc86c91449cddcce80c40ed208a3c06e14aa8c7d379e7c19', 'from': '0xd314ece92a89bb0d8508819562793939b7415dfa', 'to': '0x60b6a25907b4567f481e0ae1f5732396c70f92b2', 'value': 10.99785334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x418d6476', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:41:51.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xf7df9e98defc8937cc8fb65a6f16e6afd47f5f3a98b357ba673aa72797b47801:log:138', 'hash': '0xf7df9e98defc8937cc8fb65a6f16e6afd47f5f3a98b357ba673aa72797b47801', 'from': '0x6ee688cc60d912598c26b9f2521740c6e9f62871', 'to': '0x531c873663e42aae9ea06c7bcc743d1717d0d5b6', 'value': 17.13526615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x66225757', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xd1dca73383a32af7289c5093d1a5abcefeec0cb197f263c2afc1de293b514e6b:log:139', 'hash': '0xd1dca73383a32af7289c5093d1a5abcefeec0cb197f263c2afc1de293b514e6b', 'from': '0x5df8fffeae430235d3922d541870b02275ac95e7', 'to': '0xae6a04c3e89cbbf0b986842643fcca117955e9bc', 'value': 6.48333909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26a4ca55', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0x9cc0bee2206de1dbc57b46808c3c4bffb0dce985b5195bec7ace7214330f6b20:log:140', 'hash': '0x9cc0bee2206de1dbc57b46808c3c4bffb0dce985b5195bec7ace7214330f6b20', 'from': '0xc57983613fe66db3c90b12eb46ad231333dbf34b', 'to': '0xc6a5b96ab8852c9d457a45f92237d6ca46d389fd', 'value': 17.01719402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x656e2d6a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xc47ebe232f657350dfde29d1774064f717c5b47a91c8c54087c40a7cee3da01f:log:141', 'hash': '0xc47ebe232f657350dfde29d1774064f717c5b47a91c8c54087c40a7cee3da01f', 'from': '0xf1cba760476bf80d72f12c5f714a57f73b0ca918', 'to': '0x03bce07a2dcb1cd5681011c6aa7aeadd2eaee36a', 'value': 12.93612068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d1af424', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0x0ca77d2acc942f37b2182892dbfcf0a589c1da0edb6be3f8cac4627f584f4697:log:142', 'hash': '0x0ca77d2acc942f37b2182892dbfcf0a589c1da0edb6be3f8cac4627f584f4697', 'from': '0x0330f1a7d4e178b9974abb25c0334a4b372c7c5d', 'to': '0x1b1d86e56c2a997e5cea7fa365bc8e64a69c487a', 'value': 6.48048016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26a06d90', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xa7085f3e84c09dd56f9f54c63fbab94ef4f8480aec4fadc98210d6fecc919794:log:143', 'hash': '0xa7085f3e84c09dd56f9f54c63fbab94ef4f8480aec4fadc98210d6fecc919794', 'from': '0xe4ffc780f61c756f6de77769c4d31c47b198f7bf', 'to': '0x2a124b1e477146ea57e0f9234843bb442b793982', 'value': 5.05292668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e1e277c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xcadc1e498f1d1416261602ab67633f816b3f50e140c156f7bddbc83bb7f01040:log:144', 'hash': '0xcadc1e498f1d1416261602ab67633f816b3f50e140c156f7bddbc83bb7f01040', 'from': '0xbdea062924cc84135b32704598de62465a41185c', 'to': '0xbf01c97965be71dd599eee2669e846ec77235ce2', 'value': 16.87522386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64958c52', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687ad1', 'uniqueId': '0xfb2a1ed0c2c64c7ebddb92d2b6dde653ceebcc62f7b804dc60350fbac885bfe1:log:145', 'hash': '0xfb2a1ed0c2c64c7ebddb92d2b6dde653ceebcc62f7b804dc60350fbac885bfe1', 'from': '0xa352b21e95c97022fabeb594d83794417b22d72e', 'to': '0x72fd513cb642c930e3b713c16a09e2b4659b6f87', 'value': 7.9134862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f2b058c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:45:55.000Z'}}, {'blockNum': '0x687adf', 'uniqueId': '0xbbc216cca23acf4a8c18e0cf32538fe1705183e60f51bf8b1298c360d53259a0:log:166', 'hash': '0xbbc216cca23acf4a8c18e0cf32538fe1705183e60f51bf8b1298c360d53259a0', 'from': '0x4034e228edf9c4ad4ba5c71302307a9ee13aa7af', 'to': '0x5d5dc857b519c8e58d039055653f374caff240eb', 'value': 3.41996896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14627560', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:36.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x8a1470507aef38a4f90e1e31bba5d962dc7a217bd893941a81f1b77915c9ad3e:log:165', 'hash': '0x8a1470507aef38a4f90e1e31bba5d962dc7a217bd893941a81f1b77915c9ad3e', 'from': '0x9e6254aa7e76676b7749bffe323c0e54815d529f', 'to': '0xc0f90ec4d10cf0fa06c598b94e1f262a22d21744', 'value': 20.7305629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7b905422', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x4e7a12d9d1ba9e2d3abea39797a9ffcbcf8d2f3d524ca5dfad556fd9503b325b:log:166', 'hash': '0x4e7a12d9d1ba9e2d3abea39797a9ffcbcf8d2f3d524ca5dfad556fd9503b325b', 'from': '0xe1b66394e2651465a11a9032fc3943b3977937c9', 'to': '0xae1ca356e66819afc5cd50196af9a848a3b41353', 'value': 5.09848278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e63aad6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0xb3404bc87cf5cd97621edf4c6db5945f2698002c4e92a9542e239d653ea4c3ca:log:167', 'hash': '0xb3404bc87cf5cd97621edf4c6db5945f2698002c4e92a9542e239d653ea4c3ca', 'from': '0x2d8f467cb65da6401907baafda3e975853efb4f9', 'to': '0x74ee567938af86cdf26d6fe38adea55a5409bf98', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x707019aa2da0ed5e7d7a4d024b41558f4072360bddc93f92b4c3dd693a1924fd:log:168', 'hash': '0x707019aa2da0ed5e7d7a4d024b41558f4072360bddc93f92b4c3dd693a1924fd', 'from': '0x55ce915e2c885d6ab380179bd17cf12e13f89eec', 'to': '0xeac338cde4e8e3b70f10c2ef2e53b3091cb955b6', 'value': 21.23257868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e8e580c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0xa6283f05fa89dcd1856a935e4e37143a9d71480778861acd5b7a5897ba820c9d:log:169', 'hash': '0xa6283f05fa89dcd1856a935e4e37143a9d71480778861acd5b7a5897ba820c9d', 'from': '0x9628b6a505ebee93ad2c6007d6aa113d16696ae0', 'to': '0xf508201228d4dab23090604fcceb4dedbdb8076f', 'value': 5.15852466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ebf48b2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x011df57b5d806465e6378c9ac6e4fa6b66d962e5d48aa2782ba388480e08e05c:log:170', 'hash': '0x011df57b5d806465e6378c9ac6e4fa6b66d962e5d48aa2782ba388480e08e05c', 'from': '0x96b88b12e8f3ea4fb04e5a4597d7a8f80bb703e3', 'to': '0xab3ad2967ff39d827191c902ca32813d12efcf8c', 'value': 29.58118309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb0514da5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x28edad4fc169a5f2be6dbcd42afe3f5961d96525f3e5cab39907214e722c4097:log:171', 'hash': '0x28edad4fc169a5f2be6dbcd42afe3f5961d96525f3e5cab39907214e722c4097', 'from': '0xbb173fc85d3f0eb7c23a1719324d6108414007a8', 'to': '0x193df884f13a358fc66d35608eff40e991d44ae7', 'value': 16.4206326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x61dfe59c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x89f58222e1dc1355070bad63cfa991a8e632dd8083521100ec82978ba38bb858:log:172', 'hash': '0x89f58222e1dc1355070bad63cfa991a8e632dd8083521100ec82978ba38bb858', 'from': '0x095e18fdb045c88e37c7dfa60b7e07592f169cdb', 'to': '0x3e1bcad7b63c64ea482f4ca32ca5bedf69d8a29e', 'value': 10.88177719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40dc4637', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0xced74339013603541452bd099c6bdc78131864238e2e4c7e8fa74e1ab12b25d7:log:173', 'hash': '0xced74339013603541452bd099c6bdc78131864238e2e4c7e8fa74e1ab12b25d7', 'from': '0xd0ead735d1b6f18cf0a986e30efb5146f443501a', 'to': '0x6a69151bd899b0a7b8a67f81c9666fdc1342b929', 'value': 6.31765568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25a7fa40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x12bdec5879cbc39a7ab5df7685d6321300271540b4b7b062a1e0fdce330ba639:log:174', 'hash': '0x12bdec5879cbc39a7ab5df7685d6321300271540b4b7b062a1e0fdce330ba639', 'from': '0xaa6dce746ff5e137508a988d0f1b46617770effc', 'to': '0x3be863975dd68648ac39b19366db351d8ea29e6e', 'value': 10.33901734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3da016a6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x0511a77d825e16da72b461f3fddc280aa06e366bf43c22168967b561368b29ad:log:176', 'hash': '0x0511a77d825e16da72b461f3fddc280aa06e366bf43c22168967b561368b29ad', 'from': '0x74a694519d082342421091394be95cffd3b267a2', 'to': '0x4e0c36b889e99ead10442feaa94ee79fb1a71c30', 'value': 5.91662356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23440d14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae0', 'uniqueId': '0x8b4fa136a6aafe4f2ebf46cd7c89601929860c9c37b94293508219cad70c07b2:log:177', 'hash': '0x8b4fa136a6aafe4f2ebf46cd7c89601929860c9c37b94293508219cad70c07b2', 'from': '0x53976021e0d7c5dba697288c31f360020a81c465', 'to': '0xb26fde83eb40e8604d19824d8b2b3891c752b2bc', 'value': 6.30843012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2599e684', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:49:42.000Z'}}, {'blockNum': '0x687ae3', 'uniqueId': '0x01be4013c82b3c36d02a3ffdd66da763a8f6aa03d58107e1d0c5fe23080b318b:log:76', 'hash': '0x01be4013c82b3c36d02a3ffdd66da763a8f6aa03d58107e1d0c5fe23080b318b', 'from': '0x3b59afff57b69c6323f096d9d074e0d09fbb3349', 'to': '0x9ce85118311596a57e6a04c59bdf26eb51eee69c', 'value': 6.24769963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x253d3bab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:10.000Z'}}, {'blockNum': '0x687ae3', 'uniqueId': '0x85036eaf030ca58006701ab7eecb0f2e6194cb03f45cffc2075ba00e95045d60:log:77', 'hash': '0x85036eaf030ca58006701ab7eecb0f2e6194cb03f45cffc2075ba00e95045d60', 'from': '0x44f4086fb721c00888b07a592351f789c6c848db', 'to': '0x3a041c774e9874516d0b540bf2de384cfba5aaba', 'value': 3.58605974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x155fe496', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:10.000Z'}}, {'blockNum': '0x687ae3', 'uniqueId': '0x6a29f2113a8db054715825bbb51a1934b72f57484d3c07e45f8e6347704d9ed3:log:78', 'hash': '0x6a29f2113a8db054715825bbb51a1934b72f57484d3c07e45f8e6347704d9ed3', 'from': '0x1c28e6b91b32926001c0c4db5dc58c201ad05279', 'to': '0xc876a7abcb95f26b8936c630f8f3a0d3ca9530bf', 'value': 11.12222509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x424b2b2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:10.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x6f7159c98a85fe18d9ac9d4abd394ff425d981ec42b7ba54212e1a530d32df91:log:174', 'hash': '0x6f7159c98a85fe18d9ac9d4abd394ff425d981ec42b7ba54212e1a530d32df91', 'from': '0x91bc5db43463a0b8d5e24aafa6ae9aaa5b88c1cf', 'to': '0x8e6f97bfadc63012a890433948775f7208536bed', 'value': 18.89011782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x70980846', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0xa0775e861ddec534eec20bc2c9e3d78bb08bef2ea132116e84dcc67431948bac:log:175', 'hash': '0xa0775e861ddec534eec20bc2c9e3d78bb08bef2ea132116e84dcc67431948bac', 'from': '0x0289238b6f38c485fc2ce4dace04ec81c2589973', 'to': '0x642968718c9298972274a05cac0aaf81c02c6356', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x30c16e46c08d4595cda2af52332a04dcc3cbee1babcf4e879c682edb7246c2a4:log:176', 'hash': '0x30c16e46c08d4595cda2af52332a04dcc3cbee1babcf4e879c682edb7246c2a4', 'from': '0x969e6517df94300cff1ee20fc905873ee1988ecc', 'to': '0x6cbb6977f9607a18efa028513fb0847486b50d78', 'value': 5.28389846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f7e96d6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x585876964a4424c20956a18c814d9afbc8b64b254caca95871d1747f9f425934:log:177', 'hash': '0x585876964a4424c20956a18c814d9afbc8b64b254caca95871d1747f9f425934', 'from': '0x4dd21b36e1693be6b2b01ed6be6864ee2a0e07e8', 'to': '0xc9e9436752e9b3b6b5d8ccb4bb3148e37bafd555', 'value': 29.0655459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xad3e80de', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0xb6e4e0f4e5e7ce5dec5b55370db3bc85f61a8cc2ad900787ef5974fd846200d0:log:178', 'hash': '0xb6e4e0f4e5e7ce5dec5b55370db3bc85f61a8cc2ad900787ef5974fd846200d0', 'from': '0xecd43a55fa4e0a553c5ee2ed0b88805263e55a6e', 'to': '0x75efc59ea93ac6a163a8943e8d19626fbfce5ecb', 'value': 14.57108982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x56d9b7f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x33f159ccc12aad597e81f9419b87b94a6bbc64468936fd16b2b98f9f921aa42b:log:179', 'hash': '0x33f159ccc12aad597e81f9419b87b94a6bbc64468936fd16b2b98f9f921aa42b', 'from': '0xed1edeba843032985620488eebde68b37dc72861', 'to': '0xe7f2e87b7cbc471073ba47e5d167b4ba8cf3a5d4', 'value': 14.14690483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x545276b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0xd157468a1cb9a8169c260e2af39a8abc4936c76757ab43f2ccfee3cc3c78180e:log:180', 'hash': '0xd157468a1cb9a8169c260e2af39a8abc4936c76757ab43f2ccfee3cc3c78180e', 'from': '0x5e58c7fb801f81464c421096ff3fa7c6a5d85e6d', 'to': '0xa6fdba7e10223ad80b5cd46884b22ee6f4543b49', 'value': 7.0579555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a1195de', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x21e282fbe000a65e29aba220bc1f3daafc1fdd1ed094b20873b22ef1ed8292ed:log:181', 'hash': '0x21e282fbe000a65e29aba220bc1f3daafc1fdd1ed094b20873b22ef1ed8292ed', 'from': '0xe41c7a99f732c2efd9fe44564701bf7391eca02c', 'to': '0x193d093b9c011929128ea8c0e778296881fff64c', 'value': 5.12153808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e86d8d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae4', 'uniqueId': '0x87dff0a1f359038999a6c6b1cdd7deb84ff06579b7e5a48841d5bd653db247ad:log:182', 'hash': '0x87dff0a1f359038999a6c6b1cdd7deb84ff06579b7e5a48841d5bd653db247ad', 'from': '0xd215bef5fcfd294833ce4abf1f1a3667dbf528f7', 'to': '0x7c2032e8a8524d37cf21f7233b6447ae2d0ae2d4', 'value': 5.0266839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1df61c66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:16.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xa69fdc34d4be7e4cc6a7b3323b303cbe2fbe54d41b3511c3ea314e9224568efe:log:181', 'hash': '0xa69fdc34d4be7e4cc6a7b3323b303cbe2fbe54d41b3511c3ea314e9224568efe', 'from': '0xbc9456b9fbef90907b6f1029773bdbbba5ad8bc7', 'to': '0x5c1ceae518e1f827d83c3e87fd12189b8d27f3d2', 'value': 11.40705045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43fdc715', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xe0ad37f7b9cf54be28da4341b00d7b2e6d919f053583126b3ab87a9dd62064b0:log:182', 'hash': '0xe0ad37f7b9cf54be28da4341b00d7b2e6d919f053583126b3ab87a9dd62064b0', 'from': '0x37ad70b84a65cee09a2a85aa4550fc28e5c1d2c8', 'to': '0x42f4d5c8c5bdb6150312677d02e53b743f3cb21a', 'value': 4.2128298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191c44a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x4215d0ff0336bfbabf0d77413120988360d91c78e6308626ef32b3755a80f36a:log:183', 'hash': '0x4215d0ff0336bfbabf0d77413120988360d91c78e6308626ef32b3755a80f36a', 'from': '0x685017827af7274170c03391ad21f97ee24ffd30', 'to': '0xa2a645965b685a6517176f6f637111eddb8a6d45', 'value': 11.58985046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4514b556', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x17521042fea4359756f2158b70110f2a7080887726e1974f2ecf41514c8473d5:log:184', 'hash': '0x17521042fea4359756f2158b70110f2a7080887726e1974f2ecf41514c8473d5', 'from': '0xf4bc508d16f27e4e0ca6552bb6ac7b120664d4e5', 'to': '0x5d88db4f7b4c6ec042e782a161b58858d88f8a62', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x78e042127ad937e86185dc18bfc0a61bed7bc819713dca217265f02758d4a098:log:185', 'hash': '0x78e042127ad937e86185dc18bfc0a61bed7bc819713dca217265f02758d4a098', 'from': '0x3a34351063eae9a54312efaf9519facb75b4c9b0', 'to': '0x40d4f1c636cc4d034cc340bc9617f2424ceb4f3a', 'value': 13.05855489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4dd5c601', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xc15dbba54c971de6f43709577d7153f1b0abda96933305c2af8659a0e20a85af:log:186', 'hash': '0xc15dbba54c971de6f43709577d7153f1b0abda96933305c2af8659a0e20a85af', 'from': '0x379e98698e92bd0aac03381c06383ef9e0ebe8c9', 'to': '0xadca6d5294750536e146daa2a5dc6cf075ac9e2a', 'value': 12.76462685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c15465d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xe470a6299c1707ff539d7813a68f4d5eeec01a97a511314a4378ffef8aecdb98:log:187', 'hash': '0xe470a6299c1707ff539d7813a68f4d5eeec01a97a511314a4378ffef8aecdb98', 'from': '0x3ceea72565fee1df7d02723077fece732de28f95', 'to': '0x3bd0071e0a25b503a35e9c201ce7d03398ff7e78', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x8d0f5d1900bb36087329ce1212ed91c51ec8a663418123355f845366683a76a5:log:188', 'hash': '0x8d0f5d1900bb36087329ce1212ed91c51ec8a663418123355f845366683a76a5', 'from': '0x404efd5e9ac4d4e833533d4ddf3084f40ad90808', 'to': '0xa140b24761beeb0f03484d8f293bd0fc4aea9778', 'value': 9.75322494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a223d7e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xdb6488c2f860934dcaf5ce79fb36345e24838861d2a683111e5239c84b52d4a2:log:189', 'hash': '0xdb6488c2f860934dcaf5ce79fb36345e24838861d2a683111e5239c84b52d4a2', 'from': '0xfabc13ef92ec96b717818be35dab3fb6661c1830', 'to': '0x931de46a332dbebad1cd41e373db23ef80bb0a36', 'value': 7.63456533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d816c15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xae29b62eb91862727171681e7f682d39f54020c0880de855c20518cda1cf89c5:log:190', 'hash': '0xae29b62eb91862727171681e7f682d39f54020c0880de855c20518cda1cf89c5', 'from': '0x416b12b7e9e72a8f831238f0b2c915452858952d', 'to': '0x30734d40b174dbed0e9f1b685906284869ee65c7', 'value': 5.00310391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd22177', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x8ae7769744a93ce7c3392ff5e188dfd2a76a9a48234e64ab16dd29a64d68c7fe:log:191', 'hash': '0x8ae7769744a93ce7c3392ff5e188dfd2a76a9a48234e64ab16dd29a64d68c7fe', 'from': '0x8ac997330bbd70c098cb87b97ce7c8cab60d013c', 'to': '0xd4d63bc9b9aee73f8073ddef4cc15c48a9815614', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x9ff2ca49af938dfdbac0040e251ab856b7af136b2f2f7c6590b1cf0a831c764b:log:192', 'hash': '0x9ff2ca49af938dfdbac0040e251ab856b7af136b2f2f7c6590b1cf0a831c764b', 'from': '0xa7d6343c163fcb07e2f78a5540268d38ba598429', 'to': '0xcfda7b58437415ad74c9930fde5bfc4065ff4c63', 'value': 22.01270057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8334b729', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x7f52fc7fe72701af294780020a9b67a7e7ec6b42c0ed1cacf46b62e7c0a19ea2:log:193', 'hash': '0x7f52fc7fe72701af294780020a9b67a7e7ec6b42c0ed1cacf46b62e7c0a19ea2', 'from': '0x056b442ccbccb9b01fb41ff9bd9e29e8a86086fb', 'to': '0x45291b3eb9a5f2d9083d050d6d894a1a45de88a1', 'value': 6.24348371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2536ccd3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xb39bc663573a60b79264eb78048baf2617909278e37e9aed18352a689c1881c7:log:194', 'hash': '0xb39bc663573a60b79264eb78048baf2617909278e37e9aed18352a689c1881c7', 'from': '0x3d6134ff9b39c05e581b78d944fafd0d0a99b693', 'to': '0x9b004436574a6fa525ac4603f3daed9b1c82b5c6', 'value': 12.40184741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x49ebb7a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xa2547e4033c0d4859a0d6b56f1e18c9cbc28af832b61a79daecf2cfd4d699052:log:195', 'hash': '0xa2547e4033c0d4859a0d6b56f1e18c9cbc28af832b61a79daecf2cfd4d699052', 'from': '0x815d9f449ea62d2eeaad00a18ad107781ed66564', 'to': '0xbb91e527398edef109dab65ee026c69fac225be3', 'value': 7.85170981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2eccc225', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0xe5540060b3dc7078920e86dff0a391b5f0e0e669fd72294821c539b52a52f30b:log:196', 'hash': '0xe5540060b3dc7078920e86dff0a391b5f0e0e669fd72294821c539b52a52f30b', 'from': '0x9f4bc90ebf413aff3f71e8ab27974408b85f33a8', 'to': '0xbb9e7535be20419383e0a465a5394220449c6976', 'value': 6.22822774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x251f8576', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae6', 'uniqueId': '0x5ebbf205d25162dcab1a7593ebb97c1e8868c1f3885225e313f9bb39cad0d24f:log:197', 'hash': '0x5ebbf205d25162dcab1a7593ebb97c1e8868c1f3885225e313f9bb39cad0d24f', 'from': '0x994a59d2db60faa62e4b29ea71f9c905f21646c0', 'to': '0x83bb2ed6369dfc645aabbd377bf66d11242abb88', 'value': 5.21864263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f1b0447', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:50:28.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0xe766dad553ae4df8023704b346b33d718378825107f57ec1ad53337cef436d5a:log:112', 'hash': '0xe766dad553ae4df8023704b346b33d718378825107f57ec1ad53337cef436d5a', 'from': '0xc72036d5f3bf76ce414ed79e02ebda28eb2041b5', 'to': '0xabb7ff58f560cd0cea64597c4ceb61f044209666', 'value': 8.04805593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ff85bd9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0xd72856c1f7f95bb2a7f5a8a60a0bb053aea7a829da2a8ba1a5ff8050f682717c:log:113', 'hash': '0xd72856c1f7f95bb2a7f5a8a60a0bb053aea7a829da2a8ba1a5ff8050f682717c', 'from': '0x281d51daa28bbc12932a9151a5745f55163ba587', 'to': '0x18c7abca4e543a16c879762546e72f9561abc2b7', 'value': 2.11144692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c95cff4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0x5f995a8839ef6a6ce0b2b1516f9050e6ed6df6458a79276fac19261b8ba7a569:log:114', 'hash': '0x5f995a8839ef6a6ce0b2b1516f9050e6ed6df6458a79276fac19261b8ba7a569', 'from': '0x6210be1a9ed6ffee4785602a5cd10c06e5bb09b8', 'to': '0x7ffe1b30fd3a7b44edd7f38819107e0c81a74ffc', 'value': 7.2082997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2af6fe12', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0xa9c4a28443018df5d5631bf652419da4ded6e76a306459a385a8331ef34a2492:log:115', 'hash': '0xa9c4a28443018df5d5631bf652419da4ded6e76a306459a385a8331ef34a2492', 'from': '0xff68f7837d8ef8fe1e273c05208127ffa4fd021f', 'to': '0x11130c37a7ca21dd928a4e5dfc2195db051f1045', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687ae8', 'uniqueId': '0x99fec82a58c584ef0921bed601e9345c9bd1b3991cabd65cbf047e0f8369d46d:log:116', 'hash': '0x99fec82a58c584ef0921bed601e9345c9bd1b3991cabd65cbf047e0f8369d46d', 'from': '0x03591474e64723544c42983793a22b68ef6f66c7', 'to': '0xc285b9af3f3457417499cda005d386b0e4451a93', 'value': 16.47351278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x623095ee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:05.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0xb08c0d6e1a8e2991028b834f540a95239a4f51f5814a37883b5ec6938d0c4fbe:log:142', 'hash': '0xb08c0d6e1a8e2991028b834f540a95239a4f51f5814a37883b5ec6938d0c4fbe', 'from': '0x10de8e66bd7f6c326536daaf0ab1b59fbff83a86', 'to': '0x8e0e4d848060928b2daa5a26d988de84aa27b95b', 'value': 11.56702587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44f1e17b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0x7b7d29808de03a1830e44c5021d9d6e96d1e63266da7f4088b843fae4a598e61:log:143', 'hash': '0x7b7d29808de03a1830e44c5021d9d6e96d1e63266da7f4088b843fae4a598e61', 'from': '0x572d5d2be88972968f20f7d4856c569cb63773f4', 'to': '0x846b95fd6fedbce8e301ddead71a5af8f22a94c7', 'value': 6.4458658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x266b9c54', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0xa78bae5b50019ef60d25f7466f3687f4a6cc6c4dfe7d63c2d4b767228c279f73:log:144', 'hash': '0xa78bae5b50019ef60d25f7466f3687f4a6cc6c4dfe7d63c2d4b767228c279f73', 'from': '0xa68c176968b5ef3ae6affdd7ef1752b5b8e0b804', 'to': '0x0c4d292441ab363b1c8e49c88d505ea9874c2a6a', 'value': 8.91988486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x352aaa06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0x8edf1abce7b222e4a67850c1922e7e327db1b38a3a381cc2d63f1cc8da11ad6a:log:145', 'hash': '0x8edf1abce7b222e4a67850c1922e7e327db1b38a3a381cc2d63f1cc8da11ad6a', 'from': '0xd6a97a4ed9aa4f3070bc52d5aeb927690961e65e', 'to': '0x25523dc7f3871e654cd22142a7425faea76fecd2', 'value': 5.0791372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e4625f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0xd890a5a864ab115b1b10005cabca51aeaef32dde796639647a2ed61392a37d71:log:154', 'hash': '0xd890a5a864ab115b1b10005cabca51aeaef32dde796639647a2ed61392a37d71', 'from': '0xc82675c376fb1a678b9fbd345a8dfee629013ab3', 'to': '0xab5ccebbc9fa2350b4b360687652921a738c6e53', 'value': 3.40397891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144a0f43', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687aea', 'uniqueId': '0xc1705b717f03f1d09b79f2ed563b28c447664b5e3b552fb5089ede19893da36c:log:155', 'hash': '0xc1705b717f03f1d09b79f2ed563b28c447664b5e3b552fb5089ede19893da36c', 'from': '0x44ce46abdb6a3addbad54c22928c4a5031dff7fb', 'to': '0x496965d2b3f30fadfde52da4be5b3e04e0dd10c8', 'value': 11.02681034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41b993ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:51:41.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x1777ee580a01d2380aa4a36a1952b7e4008eda74a64235a710972a29a64f73c7:log:126', 'hash': '0x1777ee580a01d2380aa4a36a1952b7e4008eda74a64235a710972a29a64f73c7', 'from': '0x5d194fb4ba5b48cfb1fe91738d4e8122bfbe801f', 'to': '0x1e4d2adc6a1780a9b8e3f356cbf8cf3514bebdba', 'value': 12.83427653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c7f8d45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0xbef48a8680ea951613c478b4b5188f0565f68687d83b631edf54ae3ed25393f5:log:127', 'hash': '0xbef48a8680ea951613c478b4b5188f0565f68687d83b631edf54ae3ed25393f5', 'from': '0xdef19b49c000ebc0e27959b09074670b438f3ba2', 'to': '0xf8aa1eec2a5152f25a287b2bfba0d9ee79666e91', 'value': 5.11185591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e7812b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x00910a42865af638ae78a2da18de07df5538e668a6f8ead66fd2f66222281f11:log:128', 'hash': '0x00910a42865af638ae78a2da18de07df5538e668a6f8ead66fd2f66222281f11', 'from': '0x0a6fdd3a1fa1add1565b371c989b5a18b1847d8f', 'to': '0xb4b20e77d655446195c622f8150346fda7ac2916', 'value': 5.07879607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e45a0b7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x01c161ca66c3f15668199730cd7eddb47a86cbae0319403d223e487925b59b49:log:129', 'hash': '0x01c161ca66c3f15668199730cd7eddb47a86cbae0319403d223e487925b59b49', 'from': '0x0cf640ded9f949416e7e66ac47fe41bbb1a89100', 'to': '0xf38b1b2c326dac1287d34349934d41853a0a39c1', 'value': 5.03117306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dfcf5fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0xeacd4578ccbcca14222f637a5887dbf51a22069474c36b30ac9a20dd6bc34f45:log:130', 'hash': '0xeacd4578ccbcca14222f637a5887dbf51a22069474c36b30ac9a20dd6bc34f45', 'from': '0x3333260eeb0eb27d14a7f1b3a79c112fa9de7a58', 'to': '0xf1f3caa21e4122d82b3cf695f011a38129142b3a', 'value': 5.9955895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23bc8b26', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0xe3e4f0f6fa7b8a59f9e59178d6551bd398791593b593f49725cc9bba1d975c45:log:131', 'hash': '0xe3e4f0f6fa7b8a59f9e59178d6551bd398791593b593f49725cc9bba1d975c45', 'from': '0xeb298b0864ff2796d53ced5df40dbcfb3eb1dc6c', 'to': '0x43070ed6a08cb0b0988404bd1487ac0b09fb1b12', 'value': 3.40452088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144ae2f8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x9bccb24a3e33a25b380744961f8062102ae3827ee887bd0cbf526add8e8b6546:log:132', 'hash': '0x9bccb24a3e33a25b380744961f8062102ae3827ee887bd0cbf526add8e8b6546', 'from': '0x4b2c3ac37f09b5a7a84148db73f2b5ffbff3527a', 'to': '0xf62030aa6388619ac05bd8e41cd4501e323fcae6', 'value': 5.32299359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fba3e5f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afd', 'uniqueId': '0x1d30a79f2ad87d729d48e78718432914100692494ca736b6650a63383672e38b:log:133', 'hash': '0x1d30a79f2ad87d729d48e78718432914100692494ca736b6650a63383672e38b', 'from': '0xfb0657817b74504fb58753175e945c707b83cf21', 'to': '0x124705743af0d0d38ccade43e93a6ae1904f2446', 'value': 13.61175915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5121e56b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:29.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xa98173f4b126f7458759daef96b63c223f5310987cb2bbcecb901fa56b10753f:log:77', 'hash': '0xa98173f4b126f7458759daef96b63c223f5310987cb2bbcecb901fa56b10753f', 'from': '0x33879b2cda473191a2d93425756db8e97bd833cc', 'to': '0x9607f40a64113109b0848a46b35e9260363b2c6b', 'value': 4.61957166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b88e82e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x8830ca5a65501cad69eb67b31113aa0d64f96d79bff811ea36b9079539d9dae0:log:78', 'hash': '0x8830ca5a65501cad69eb67b31113aa0d64f96d79bff811ea36b9079539d9dae0', 'from': '0x16f7356048c9f529b5e3a984860c848b81f9bfae', 'to': '0xe65e84b86bef1595ec3010d7a600559a30ee7e67', 'value': 10.598264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f2baae0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x3a490590b7193a6a469fc01790c6e19c30e2ba793bb023f51d5fc119e389f752:log:79', 'hash': '0x3a490590b7193a6a469fc01790c6e19c30e2ba793bb023f51d5fc119e389f752', 'from': '0x802f1fab7314b9097d1d433a75e6a340dcefce2a', 'to': '0xf8b4ce8b906101b47e2a683938893f354241a21c', 'value': 5.40520857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2037b199', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x35014a2c8b4df9c7fe297601cc5c8a670e4411fb2fc37b417ee1457af645cc61:log:80', 'hash': '0x35014a2c8b4df9c7fe297601cc5c8a670e4411fb2fc37b417ee1457af645cc61', 'from': '0xa6d0f34f27524c8e031076d63a426d26e2629839', 'to': '0x4ee415423328468d479948c844b9d7f8aad0d77b', 'value': 7.23136075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b1a2e4b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xc67c3f38cf35af3f009f21fc8b8b1b5aaf25ce99dd4629b3b2b662d416751cd1:log:81', 'hash': '0xc67c3f38cf35af3f009f21fc8b8b1b5aaf25ce99dd4629b3b2b662d416751cd1', 'from': '0xd00e39809119ceb69a2c8ac8644d586ed2b27dd8', 'to': '0xe46f19abe1899023055c9de811bb56d3969f597a', 'value': 3.40131593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff09', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x090160fa8a7f90563d073c52279c34c0ec757773047688f35f7095f8fa840e93:log:82', 'hash': '0x090160fa8a7f90563d073c52279c34c0ec757773047688f35f7095f8fa840e93', 'from': '0xf59222e6b85ec3548bcf6cb7ace15b98a25383be', 'to': '0xbb12c96b1174ede6970d5bd9bcb3b2ecc7512b46', 'value': 3.40192545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446ed21', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xde57fc1fcd18dc7f9690569ab7ffe75e76ed9f151b29eba4a731d1c3af0f8ea8:log:83', 'hash': '0xde57fc1fcd18dc7f9690569ab7ffe75e76ed9f151b29eba4a731d1c3af0f8ea8', 'from': '0xf8629e106ccc4cc2e08bfda669691e7d161bd917', 'to': '0xcde9fae7bc699bbb371664506d206b51198393d4', 'value': 3.40229267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14477c93', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x78973259ba19fd5ba3d385309c2a5b6a38abef5fb847cfc6cc0d89067884a9c1:log:84', 'hash': '0x78973259ba19fd5ba3d385309c2a5b6a38abef5fb847cfc6cc0d89067884a9c1', 'from': '0x0c1002d3ea94cee69f47017150eb299fca840949', 'to': '0xc575d71c7e7076e40f16b7eb4ba6cb971948f891', 'value': 6.36840309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25f56975', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xf27615a72559318218fffc7fb70023c87dee595bfb4af7144694aa311ce5178d:log:85', 'hash': '0xf27615a72559318218fffc7fb70023c87dee595bfb4af7144694aa311ce5178d', 'from': '0x1c3779dc744e3b93e295bf20ce8049dd30f55daa', 'to': '0x0fda150fd3390bc599440d3e7f1b6e112d9128b4', 'value': 5.95267586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x237b1002', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x130cd6407c301b5e92e2928b21f0ee04dd97cfe7af6149685b7eb72af11a2158:log:86', 'hash': '0x130cd6407c301b5e92e2928b21f0ee04dd97cfe7af6149685b7eb72af11a2158', 'from': '0x11e1672387d2a9da9b91261bfbcf90d4be25e630', 'to': '0x4478d8ca29d7b57bdcb724b60d244c1bd29134eb', 'value': 3.40432295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144a95a7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xbee9bd1c0969caf2641b02e492b96d414cb39c6f24182cf01aad64c4f32f297e:log:87', 'hash': '0xbee9bd1c0969caf2641b02e492b96d414cb39c6f24182cf01aad64c4f32f297e', 'from': '0xf2f3e7e754758454ea3b0a7169c052ce774ac023', 'to': '0x40787d44bff2a58636a921479aa866bc84ffc0d3', 'value': 16.55909674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x62b32d2a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x183137fdf6fb27831dc9259a38378f5d0d03933dadfa721bf07e518dd668659e:log:88', 'hash': '0x183137fdf6fb27831dc9259a38378f5d0d03933dadfa721bf07e518dd668659e', 'from': '0x7461c33da0f58482b2a7111231c1a6141e097267', 'to': '0x7c11130133c1a7ee17dcbb609fb26956090de0db', 'value': 12.31000258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x495f92c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xffe156100a56005af0aae25149adc0fd445f2276986f9ad575a536bf9b56372a:log:89', 'hash': '0xffe156100a56005af0aae25149adc0fd445f2276986f9ad575a536bf9b56372a', 'from': '0x0f7fe8672b43a9de7a1f005ace2b841c271b51bc', 'to': '0x67d6f1c6e427911506ada19c9c816cb8217407db', 'value': 6.3243808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25b23d40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x6999d4ff4f4d6fa67938db7d4ab8c4a7c2d57b90f598fc6ad907384925f690a1:log:91', 'hash': '0x6999d4ff4f4d6fa67938db7d4ab8c4a7c2d57b90f598fc6ad907384925f690a1', 'from': '0x816e63201e92c941fc82805411a30f9afd9e9912', 'to': '0x4696e8553c3d7359ad755ab5166606bfe61610b6', 'value': 3.37581379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x141f1543', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0xba4585d9c947f9ce5db4802f3f6600cd792c0d0381b10520cdda515db6ea7d0f:log:92', 'hash': '0xba4585d9c947f9ce5db4802f3f6600cd792c0d0381b10520cdda515db6ea7d0f', 'from': '0xfd8ef4d0058ca6f5a3660596ede447a92c9b71d0', 'to': '0xc150ab247dfd631166cfe24a4ea26f660b512ab7', 'value': 1.2963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b9ff30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687afe', 'uniqueId': '0x9a214c2c8d468fe2af4bc07d9fb868e7dfd177f55afb427fe5f70587d7b20636:log:93', 'hash': '0x9a214c2c8d468fe2af4bc07d9fb868e7dfd177f55afb427fe5f70587d7b20636', 'from': '0x4107b67d07d85611ffa111f562008ca3ccb54b4b', 'to': '0x0e3f2dafe7dbfc0d1acf3ebefcc06107c819bb73', 'value': 6.2236055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x251877e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:55:41.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0xc74eb1996a046cd43324570a9f0af38cf7c44287a014d5d3f1c6f328f1421778:log:37', 'hash': '0xc74eb1996a046cd43324570a9f0af38cf7c44287a014d5d3f1c6f328f1421778', 'from': '0xd61c0dbb8bc60365bca5a57a59d48df9a395dcc8', 'to': '0x45efdbdbd47fc9640aee02ee9b66d4747cdfd036', 'value': 12.10574792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4827e7c8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0x1bf8ef33a1a04a900dd59d7726c0b21fb859d826c8e0b5ae4bd1173ae1252005:log:38', 'hash': '0x1bf8ef33a1a04a900dd59d7726c0b21fb859d826c8e0b5ae4bd1173ae1252005', 'from': '0x6e509712645694573cd1ac661f281dbd6d54ae36', 'to': '0xc09868b653586288415ade7679c3113b47e27172', 'value': 3.40131605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0x1afba39728e8f7feb838ac42c3202d4ded06c517cb17ea70ce6548e724f64948:log:39', 'hash': '0x1afba39728e8f7feb838ac42c3202d4ded06c517cb17ea70ce6548e724f64948', 'from': '0x9afd45cb35e72c4e4998846f412b6291a0169806', 'to': '0xfca243f52d59184d7c4440bef19a8dbf06963f05', 'value': 2.10641556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e2294', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0xd121d06b9b78c81c84e664437cdab4c613e2558bfce8b250a4f0c7b5dc2f795b:log:40', 'hash': '0xd121d06b9b78c81c84e664437cdab4c613e2558bfce8b250a4f0c7b5dc2f795b', 'from': '0xe8d53021b9f7446c22e99c7341beb9e3a9a84ab1', 'to': '0x8ef64b4bdc096d864257cf3026ad9b17d866173b', 'value': 4.97803954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dabe2b2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0xc35fb081475362610bc3657dc3dd0395558c9dc800612391b46f4ae2da5a60ac:log:42', 'hash': '0xc35fb081475362610bc3657dc3dd0395558c9dc800612391b46f4ae2da5a60ac', 'from': '0x0bc283126f28e13a1b30f7dafd8045b17eacad3c', 'to': '0x9120baa73f54f6c16c156d1a96b9e204b1e147ef', 'value': 8.2731263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x314fc9f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b03', 'uniqueId': '0x7d9b593d4e09d65252ad5e1f4e16db4fcc7d72e2854901689e6324e9be98350a:log:48', 'hash': '0x7d9b593d4e09d65252ad5e1f4e16db4fcc7d72e2854901689e6324e9be98350a', 'from': '0xd66e10858a91ae465e9f32767f18ad50545e0f92', 'to': '0x080c382d597c7e9806bab765fa1530c7672873e7', 'value': 5.17789003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1edcd54b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:45.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xc64b9bad705f744defbabfb5bcaad7b51e6bf8c95231da785bcc16b2e36b2b32:log:152', 'hash': '0xc64b9bad705f744defbabfb5bcaad7b51e6bf8c95231da785bcc16b2e36b2b32', 'from': '0x22dd0149712d77d8d642ef4c8d8ec868d47dff9f', 'to': '0xb22dbd545d03f27b11e2aa0841bdcf14ec6a5ea9', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xfdaeafdd48989adda4f6d65c58ffb42b0fa30e37cbd7128e91694e6f102cee63:log:153', 'hash': '0xfdaeafdd48989adda4f6d65c58ffb42b0fa30e37cbd7128e91694e6f102cee63', 'from': '0x5519e80c6ec89a82ed107ae361312271799fbf73', 'to': '0xea32109a3179fb457c36a6ba9fde40cddf7fbe95', 'value': 12.99365881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d72bff9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x405f156c57f84ac3732a4986c528a13767f9c738f3ac13cd42dccfe9cf0957e4:log:154', 'hash': '0x405f156c57f84ac3732a4986c528a13767f9c738f3ac13cd42dccfe9cf0957e4', 'from': '0xd9794d58ea8c9054385ba5266c81c3257a2f9dec', 'to': '0x22cd8848d73d9c8d1323ec6b788c1157957bbbb6', 'value': 5.0604772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e29ace8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x2e69fdb0da8984752ede32e5a16b7bcc3fd96dcd406e82fe2d8bad6b06e0d42d:log:155', 'hash': '0x2e69fdb0da8984752ede32e5a16b7bcc3fd96dcd406e82fe2d8bad6b06e0d42d', 'from': '0xc24a1280624fdc57f3ef8e92d66900983ea72a44', 'to': '0x7a4e76e9e5f3e384f123aa97c7e8e2f2c57faad6', 'value': 5.22968192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f2bdc80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xfc1fee839a50babbb3234e8c48e462114cb89bcfee7a46a4c9f677fb92dd5ff6:log:156', 'hash': '0xfc1fee839a50babbb3234e8c48e462114cb89bcfee7a46a4c9f677fb92dd5ff6', 'from': '0x845d825929830a99daf619dfe5b9534772679ea0', 'to': '0xad556e04890db48bea95c3923030f65ddbed4910', 'value': 5.18277075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ee447d3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x0b41d8f7f2138f96ac2668ae18a9a1f581d8b666b7bd1e2975dd8da3a220146e:log:157', 'hash': '0x0b41d8f7f2138f96ac2668ae18a9a1f581d8b666b7bd1e2975dd8da3a220146e', 'from': '0xef1d614a13d8e04aaa6e1023646079a87042e30c', 'to': '0x602d8fbbbb5319ef29df56e2117ef46628ca0bdf', 'value': 18.34423419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6d57147b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x830230cdbadc62ab85e3e9aef8153cd8a5e3d1fd17a4b71d37d607ddbe3afbc6:log:158', 'hash': '0x830230cdbadc62ab85e3e9aef8153cd8a5e3d1fd17a4b71d37d607ddbe3afbc6', 'from': '0x3bec65296127a53711aafeeed2e40c7ed8227029', 'to': '0xc3cd4e5313516652f43f0dbed8599a3644a44320', 'value': 6.36911126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25f67e16', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x3a279ad16fc12b23549a472786b6633bdffec4da4e06764390c79eba46e78306:log:159', 'hash': '0x3a279ad16fc12b23549a472786b6633bdffec4da4e06764390c79eba46e78306', 'from': '0xe9467184c4a5d6963a0e5765c6d16d74a08f2030', 'to': '0x25e1d70fe2896160d8b8a3f22b7635add158a426', 'value': 3.4110466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1454d814', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x1bc173f15d17c2c4171546190c41d45b9e903af129cc35d11bf348347b420ca5:log:160', 'hash': '0x1bc173f15d17c2c4171546190c41d45b9e903af129cc35d11bf348347b420ca5', 'from': '0x53fad920202c489653b3050f1f6cc245e1eaedf2', 'to': '0x8e795d7bc3966bf2e7f8ae9fd1568f1d63d07b4f', 'value': 6.48887672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26ad3d78', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x47d22715093994a960682ddd2d8f32226cc603ecc9bc4a068d28fab75e0da4f3:log:161', 'hash': '0x47d22715093994a960682ddd2d8f32226cc603ecc9bc4a068d28fab75e0da4f3', 'from': '0xa7d254795b082824aa28e6cd3684ae2cb0ca7228', 'to': '0x2a70a54d7ed35fd991b84ebb73b002a77334f7ce', 'value': 18.14720016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6c2a6e10', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x76114c9f7732fa970b0ca85e050fda7b64214538e1198df3cd8d685637e3c659:log:162', 'hash': '0x76114c9f7732fa970b0ca85e050fda7b64214538e1198df3cd8d685637e3c659', 'from': '0x9ef2c25b3b02b0fe6afcddf988f4dfad882e3aff', 'to': '0xc4ae405e36977e61491ad96ea59e14b9a30f91ee', 'value': 6.36302517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25ed34b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x42ed1c3a11cc711edef15be21d74dc5c22a485213195423dab6f0590a2b04543:log:163', 'hash': '0x42ed1c3a11cc711edef15be21d74dc5c22a485213195423dab6f0590a2b04543', 'from': '0x5b56d032112afadb70273e6321d09b32a6380872', 'to': '0xbb8fe5bdfc0e764d95a3384ddd8432354376ebcf', 'value': 6.49150756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x26b14124', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x7beb3b3e6874d34bf3d0f768cb21571ea6e0de772e5897778c3f53a6559145f7:log:164', 'hash': '0x7beb3b3e6874d34bf3d0f768cb21571ea6e0de772e5897778c3f53a6559145f7', 'from': '0x288fdf259ace3fc06c1fde8288a6a002ef210591', 'to': '0x4ec886edb4160e5e2e86d5d68e37cc29e4adf908', 'value': 12.06427281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x47e89e91', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x314023d568b9b679ab00d61c2dab0fdb927cbe01068619b68c8b38b41687ec22:log:165', 'hash': '0x314023d568b9b679ab00d61c2dab0fdb927cbe01068619b68c8b38b41687ec22', 'from': '0x6e8e8bbeb3c504ac63be408d30fb172ec9ec1f5e', 'to': '0x21ccfa1750fab1608f01a9253d43b14580e295cb', 'value': 5.73400455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x222d6587', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xe886e52ba96a243bcd7bc949ebf1d698b5a1c3dedd8e3f8e0e80bdeee2c815e0:log:166', 'hash': '0xe886e52ba96a243bcd7bc949ebf1d698b5a1c3dedd8e3f8e0e80bdeee2c815e0', 'from': '0xc4030785a3a149f75c661431dec4073c791ab7f9', 'to': '0x0af4147844789b7c974d6a108354a4518a3818ba', 'value': 3.56879207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x15458b67', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x406bbefce671f2255c11eb4600d56c8eecac2573b99bf9dc7d2325a1243143da:log:167', 'hash': '0x406bbefce671f2255c11eb4600d56c8eecac2573b99bf9dc7d2325a1243143da', 'from': '0x203b7484b5531eb6904af96c72b43a380d5c2c0f', 'to': '0x63255a40fa766a922a0265cd9520e132c8ef109a', 'value': 4.5001642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ad2b4a4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x9caffb8c5fabbf6c6fbf214ab73393cdaf570cc7df3d9f7a9a23cfe2f1a52946:log:168', 'hash': '0x9caffb8c5fabbf6c6fbf214ab73393cdaf570cc7df3d9f7a9a23cfe2f1a52946', 'from': '0x4bd26d73a3d1794819c4619c33103e99ffef78ad', 'to': '0xd20bfb449bfec4b33aafdfa348cb853a64c09aa6', 'value': 3.40310093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1448b84d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xe71a5a26748dbe0065234117c5e2d3d671f5d2cb1a57e9eecee016da154c535d:log:169', 'hash': '0xe71a5a26748dbe0065234117c5e2d3d671f5d2cb1a57e9eecee016da154c535d', 'from': '0x53be893d81aa0def6ac7c4a85144d45f7b738396', 'to': '0x853f6a6c3997903d21a800fec66dcac6998337a9', 'value': 17.61344722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68fbfcd2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x0fa8d7addc4e9f435bb91cb404141ff3584983b75997284c1bbb1bbf941a39d2:log:170', 'hash': '0x0fa8d7addc4e9f435bb91cb404141ff3584983b75997284c1bbb1bbf941a39d2', 'from': '0x6d685bc9845533d33ae4ccbb5a7c1ab6425000ab', 'to': '0x8589555a017eded3d819b955f5cc37363224ddd9', 'value': 5.32973386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fc4874a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xcefd397e5c6cf13c4c195925f4296f7f436bcd7eac5be1c9e85379a0883c9749:log:171', 'hash': '0xcefd397e5c6cf13c4c195925f4296f7f436bcd7eac5be1c9e85379a0883c9749', 'from': '0x0747ed3f05908b3a3b09b821b7d745bcc39abe12', 'to': '0x7cbcdb761882ad34902d86fa7f3ef8f2814c45ec', 'value': 14.42495472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55fabbf0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0xb25fce2b18ac3ceb608b68366a35e1a6420d213ffd9179b7d797591224f5586b:log:172', 'hash': '0xb25fce2b18ac3ceb608b68366a35e1a6420d213ffd9179b7d797591224f5586b', 'from': '0x922ec0d4ebd55764118557b9afb1d8d09f4d1774', 'to': '0x773d678ac136c1eb49f41cac9faf71af57877e4e', 'value': 16.38358395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x61a75d7b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b04', 'uniqueId': '0x2aac6bd8fe0c929bc33c5f350743dfcf0e897b0396ce635b25f497bb91b8cda4:log:173', 'hash': '0x2aac6bd8fe0c929bc33c5f350743dfcf0e897b0396ce635b25f497bb91b8cda4', 'from': '0x3702e2ecee420be1eba13669eb3383dbc158b3c6', 'to': '0x93b7eee1b5c033d8bfe583bf6b968d465c12e0ad', 'value': 11.09093484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x421b6c6c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:56:49.000Z'}}, {'blockNum': '0x687b05', 'uniqueId': '0xc665296b6aadd6b44f5f155daaa763fc5d32f8ebe37d638d3920ade9bbc80b70:log:68', 'hash': '0xc665296b6aadd6b44f5f155daaa763fc5d32f8ebe37d638d3920ade9bbc80b70', 'from': '0xa66a00df4fe69b0011216adae9f5bfecdd6e8710', 'to': '0x95fe395089317bc253491f38f3ee7de547f29c54', 'value': 7.94292087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f57ef77', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:02.000Z'}}, {'blockNum': '0x687b05', 'uniqueId': '0xb03fdfea5afe1dd4e8982dad3977bbac2e89d5e7bd314df9d2aa632476adf5df:log:69', 'hash': '0xb03fdfea5afe1dd4e8982dad3977bbac2e89d5e7bd314df9d2aa632476adf5df', 'from': '0x6d0777945ffb31a1f7832f5a3930824035fef80c', 'to': '0x5541ee9431c9e7dc92db38616d601686761a3f28', 'value': 5.76844359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2261f247', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:02.000Z'}}, {'blockNum': '0x687b05', 'uniqueId': '0x510ae999ef8c4cfedbd9c8f122bd690ef346c1e893a8fadb363952bea5e8663a:log:70', 'hash': '0x510ae999ef8c4cfedbd9c8f122bd690ef346c1e893a8fadb363952bea5e8663a', 'from': '0x9fdf9479ca7ab871990c0a214154866228dac62b', 'to': '0xbece4298924796d2ea35e11ddaf043bd57b1a2f5', 'value': 6.20680784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24fed650', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:02.000Z'}}, {'blockNum': '0x687b05', 'uniqueId': '0x32610e609a6ac5fd13eeed30ad4fdf7414bc6bd8f0f93480bb1aa9c63a743d0c:log:71', 'hash': '0x32610e609a6ac5fd13eeed30ad4fdf7414bc6bd8f0f93480bb1aa9c63a743d0c', 'from': '0xfafbec38cf8037447f4cee9a5a415db79fb93cd0', 'to': '0xf6e576635be84d169078ec7c175a8d7bc4f03e0c', 'value': 8.6062485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x334c17d2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:02.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0xc7a807d645edf80a2dfd40b2556e7f4810e7fc8b612fc39bc52e9640af023302:log:125', 'hash': '0xc7a807d645edf80a2dfd40b2556e7f4810e7fc8b612fc39bc52e9640af023302', 'from': '0x79f1f45b4e5f019c021b1ae69a42e90ed0c228ac', 'to': '0x46d74ab879aca3b521f00f0434f4993ce43fbd4c', 'value': 17.40512927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x67be1e9f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0x74e297739c4fc70aaca379e62fcb9fe9aa74dcfc118ff2fcf6d154308e566080:log:126', 'hash': '0x74e297739c4fc70aaca379e62fcb9fe9aa74dcfc118ff2fcf6d154308e566080', 'from': '0x2b7cbbfbce4b824d8c1bfecbd14adf6f59b1f39e', 'to': '0x47a4279e7035991de29a9a07bf326de0579f006c', 'value': 5.8487807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22dc87f6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0x019317beb05e5688444a651f4236389252570cb9621d41df8b0caf1b4d111c7d:log:127', 'hash': '0x019317beb05e5688444a651f4236389252570cb9621d41df8b0caf1b4d111c7d', 'from': '0xd297c86d93befb177c7e3dd2e29091306287d853', 'to': '0xeadbf485b126265d59d863bb050742a125b3d23c', 'value': 4.45392877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a8c27ed', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0x40cc58f300d92c94460bae87a80192df7b020d86c6e7661d509c6b86c89cd54a:log:128', 'hash': '0x40cc58f300d92c94460bae87a80192df7b020d86c6e7661d509c6b86c89cd54a', 'from': '0x952ee4e99a630443ed5889ccfa0e5a20a75d9387', 'to': '0x4acb6827a740736d870f8f07a18227efa515e795', 'value': 13.31159904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4f57e360', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0xf0f54056fb08e14997c0ce37cb98db9a1d4f1838308107ca3447ba538b243f8b:log:129', 'hash': '0xf0f54056fb08e14997c0ce37cb98db9a1d4f1838308107ca3447ba538b243f8b', 'from': '0xc891f3e52c35a40a85ea83085200035ba8fab097', 'to': '0x4824b3a452ba49e7c22fc75d9c341b00a7a4227c', 'value': 5.29856181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f94f6b5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0xdde6aedc76a0228699f3d45c99ac7a0e32e5aef1943553b0785b6577604847f7:log:130', 'hash': '0xdde6aedc76a0228699f3d45c99ac7a0e32e5aef1943553b0785b6577604847f7', 'from': '0xd9c923f227a245d0dd850b2671a1f0d216421eca', 'to': '0x3c4309eb1a254e8d0dfcde67276d3a33bd25b55e', 'value': 3.40194088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446f328', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0x46a220ff374e7f56ef69807a43d0e26f7ea1993b3b103dc9e75b7e9e524cafd2:log:132', 'hash': '0x46a220ff374e7f56ef69807a43d0e26f7ea1993b3b103dc9e75b7e9e524cafd2', 'from': '0x3ed8c6c4fa51a7e4b0951fb018cdfbcaa6575a9a', 'to': '0xcf25f92a13977689af0c791e57d3e7b2ea452340', 'value': 10.49429471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e8d05df', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0x041139bb072912fc60e5688bd0aaec80b739c784120a670c82be262afcfb2079:log:133', 'hash': '0x041139bb072912fc60e5688bd0aaec80b739c784120a670c82be262afcfb2079', 'from': '0xcdda4c910bb7323d36d80a5a0a93e4cbe7331406', 'to': '0x5de8740b24487b3beaf6aa5e93ae0da4eb10a0fc', 'value': 13.26550465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4f118dc1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0x9f4fc3bcd73ae32b447c711f792dd45a29597a2e000e67f46966da2b0b7dfaf0:log:134', 'hash': '0x9f4fc3bcd73ae32b447c711f792dd45a29597a2e000e67f46966da2b0b7dfaf0', 'from': '0xeb1e24226962366384d080f2791f8202810e4528', 'to': '0x616f622424e84789c328c288bc94113bf266a9ef', 'value': 6.60846934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2763b956', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0xb36cc7466b3fe3aae59e5e5a280e7e13569c2c62628d431c427aff5fc74c8698:log:135', 'hash': '0xb36cc7466b3fe3aae59e5e5a280e7e13569c2c62628d431c427aff5fc74c8698', 'from': '0x329c9d51a78e4b32b54edf233a956cb67142a18a', 'to': '0xd8f962adbdd8c65a98809111a2a3aa5f1ab234fb', 'value': 4.55892269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b2c5d2d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0x4511f8fb292e7e9bf8157f62b9221aa6b1930655de3afc3d48c62033b320c50b:log:136', 'hash': '0x4511f8fb292e7e9bf8157f62b9221aa6b1930655de3afc3d48c62033b320c50b', 'from': '0x640cfcd231c10016cb98c5a579bb98d10fea576b', 'to': '0xea285e3e6cb1ff4c3511e4d14e7277c07d2eb506', 'value': 5.74258998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x223a7f36', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0xfc2e2fda823dcc6dd7c7f7f850a555194cf388bf7e4fd734497bc0638402101a:log:137', 'hash': '0xfc2e2fda823dcc6dd7c7f7f850a555194cf388bf7e4fd734497bc0638402101a', 'from': '0x4f7c29f002f34b2eb391536561e997db07dfc401', 'to': '0x42c5eab8f13560d64fa3f949b4329e489878f4d9', 'value': 6.36635629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25f249ed', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0xf63a8eab2870f62491f39217ff3bfb572c2620eb1520c64927f91f914b974003:log:138', 'hash': '0xf63a8eab2870f62491f39217ff3bfb572c2620eb1520c64927f91f914b974003', 'from': '0x220ba0ce603558da256bde0af07bdccf2a838774', 'to': '0x450b6941a7fb3b00ae81c01d19ad4f6ce277f5a2', 'value': 3.40131586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0x2b10ba7d42905d6d55c5bd5b6896301771b88f6c6c2d9440fd31ace5179c70a3:log:139', 'hash': '0x2b10ba7d42905d6d55c5bd5b6896301771b88f6c6c2d9440fd31ace5179c70a3', 'from': '0xbdc3cf35358a29e8e2c45f073b2f37c4fcda2f47', 'to': '0xe3a2f5e349fbb931abe785428f88423a863e8973', 'value': 11.54496541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44d0381d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0xd41d205ab80d99766d435660730dfd072cc9e2670aa049394e965996ff04fe79:log:140', 'hash': '0xd41d205ab80d99766d435660730dfd072cc9e2670aa049394e965996ff04fe79', 'from': '0xa1265a71da54b7989838053cece1a5757efe048d', 'to': '0x4390b2c0803040918ba44cc9172fc01806d147d5', 'value': 7.67126022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2db96a06', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b06', 'uniqueId': '0xae3af6e64566dc8cd5487aa33787ff5d7a5f1ca7c432f1f47bb30cb2fe5b1955:log:141', 'hash': '0xae3af6e64566dc8cd5487aa33787ff5d7a5f1ca7c432f1f47bb30cb2fe5b1955', 'from': '0x7821b30f3208b37ceda3143ccadf909301734670', 'to': '0x4bbbff183f9741c5c4d316201dfa0d281df5fc1f', 'value': 13.66564332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x51741dec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:11.000Z'}}, {'blockNum': '0x687b07', 'uniqueId': '0x766a26862cc67cbe639455277076f3d5ba310655c43ea9b1a05317ee8b14794b:log:254', 'hash': '0x766a26862cc67cbe639455277076f3d5ba310655c43ea9b1a05317ee8b14794b', 'from': '0x860e3d185710481dcdf81e7d45e1aef8ef04ad12', 'to': '0xb0c07f84ddfe04dfdc4eec4ab77362c788eab8f1', 'value': 6.22339529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x251825c9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:18.000Z'}}, {'blockNum': '0x687b07', 'uniqueId': '0x60383e713c8ddd1fa91e830cb370c6f485c0bbf2efd1077c9187a88afa3fc7ba:log:255', 'hash': '0x60383e713c8ddd1fa91e830cb370c6f485c0bbf2efd1077c9187a88afa3fc7ba', 'from': '0x83b8e6d48e53fd1368f235d4610bb013531632b8', 'to': '0xb0765c38970bb15e686c36e15c38578c1573b592', 'value': 11.35749466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43b2295a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:57:18.000Z'}}, {'blockNum': '0x687b09', 'uniqueId': '0x4aa0ce16a0b47d32363f422f318246426d03977d77049d2fc71cc5ae3ac03573:log:109', 'hash': '0x4aa0ce16a0b47d32363f422f318246426d03977d77049d2fc71cc5ae3ac03573', 'from': '0x025405c7afe2416b4d590adcf523682dbea7949c', 'to': '0x1096f975c73aaf2d5a8ee3421ef02e41d687562f', 'value': 5.04368142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e100c0e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:58:01.000Z'}}, {'blockNum': '0x687b09', 'uniqueId': '0xe80ed70195b15099b0f8658421a225dfdc7369a9a6bc974628e980fd0decdc95:log:110', 'hash': '0xe80ed70195b15099b0f8658421a225dfdc7369a9a6bc974628e980fd0decdc95', 'from': '0x95b21bfcddf36d94a7edc64879de4b62a0a29bec', 'to': '0x3b688e338da197b4aa21ad615d764c33a70b3d8e', 'value': 10.34694919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3dac3107', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:58:01.000Z'}}, {'blockNum': '0x687b09', 'uniqueId': '0x66db7ca45bfd698f4c89fe6f60f021a2ce65469dbe4342f9b0a767e8b188ab0b:log:111', 'hash': '0x66db7ca45bfd698f4c89fe6f60f021a2ce65469dbe4342f9b0a767e8b188ab0b', 'from': '0xfab056920f5a5a76c8df7b1b81ec5be2c35f6497', 'to': '0xcb443dc049dc887a7e654b5b95bd3a135714b44a', 'value': 7.44020658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c58dab2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:58:01.000Z'}}, {'blockNum': '0x687b09', 'uniqueId': '0xcc715cc7ffcd9ab4a11c02e72b703e713db705e4a468ea649e3472d46dddc56e:log:112', 'hash': '0xcc715cc7ffcd9ab4a11c02e72b703e713db705e4a468ea649e3472d46dddc56e', 'from': '0xd25892b2fe1438f0aa8f048d0eca1ad8cc9cfe43', 'to': '0xa859113cce32460e5bf828ef98013419759ebd04', 'value': 5.05951247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e28340f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:58:01.000Z'}}, {'blockNum': '0x687b09', 'uniqueId': '0x14adfe63cd735793f94d1635099d85d5411386f67074a214f2fa9fee4ae2c6cd:log:113', 'hash': '0x14adfe63cd735793f94d1635099d85d5411386f67074a214f2fa9fee4ae2c6cd', 'from': '0xd4cac5e24e40e851297bde00f4e7f9131f1562b7', 'to': '0x33b8d033edc99d067f888d4320e62c40edabe586', 'value': 3.42650035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x146c6cb3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:58:01.000Z'}}, {'blockNum': '0x687b09', 'uniqueId': '0x959594c2375eb40e6a7ffb7f886643e2f0d4e2d68568f5e6152b4e4a001ff92e:log:114', 'hash': '0x959594c2375eb40e6a7ffb7f886643e2f0d4e2d68568f5e6152b4e4a001ff92e', 'from': '0x0ce61fb81903bc662c0ea5976622eeb344752426', 'to': '0x1e8d1cb740a8a14a3104e0c48f67c1ecf6247e77', 'value': 6.36166188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25eb202c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:58:01.000Z'}}, {'blockNum': '0x687b09', 'uniqueId': '0x0292c9aeacd3bd7b2af068006a2709b055c181b55c65b066d5ceacede9babd11:log:115', 'hash': '0x0292c9aeacd3bd7b2af068006a2709b055c181b55c65b066d5ceacede9babd11', 'from': '0x23a783c71a6dea5f38985bc927aabdfc29cabc12', 'to': '0xff529e5dfb768c2bcb562f93cf6acf93a094760d', 'value': 4.55656774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b28c546', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T06:58:01.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x1bab6a1dec2ad1cfcd94acbf20e599bf345defb11a4e449cf6745ebcb26f107a:log:171', 'hash': '0x1bab6a1dec2ad1cfcd94acbf20e599bf345defb11a4e449cf6745ebcb26f107a', 'from': '0xe6ebd503568c7fa0716ac83b99275cf9070e1b03', 'to': '0x77949305c3a82fadb1be020a1feb86314f6bbaa7', 'value': 9.49078437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3891c9a5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x917542b4faf776514efad3eece2c97e06ea7d197def0d0c2f2e4787c34af231a:log:172', 'hash': '0x917542b4faf776514efad3eece2c97e06ea7d197def0d0c2f2e4787c34af231a', 'from': '0xde125506e5c056a466dfd8f146680821dea17294', 'to': '0x4bbc7582d3d6b386bec147a4963e658f63e8797a', 'value': 5.11535353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e7d68f9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x1cdd3c606be5152088b75a7da11c5371bc70936fdf2b67fd7bd31c7b2d95a15d:log:173', 'hash': '0x1cdd3c606be5152088b75a7da11c5371bc70936fdf2b67fd7bd31c7b2d95a15d', 'from': '0x4fe1af3fcd4c0083b466709a7566bf4a8b05af36', 'to': '0x1d45cd1a0a37123e2772ebb1931c0450e069e550', 'value': 4.96693603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d9af163', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0xab1bea965dcfc25370f9284dd7b083cc40ffd6c98a0f7777e224be2020375b42:log:174', 'hash': '0xab1bea965dcfc25370f9284dd7b083cc40ffd6c98a0f7777e224be2020375b42', 'from': '0x77bc77842508aed85025cbae1b4d30f739d655c1', 'to': '0x2b816e00b3489727482e8f41f76e50571b928d2c', 'value': 3.40131586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x7c6942126b5eece77fa0b63a77858711107f9717dfce1cf3ea96205bd7961b91:log:175', 'hash': '0x7c6942126b5eece77fa0b63a77858711107f9717dfce1cf3ea96205bd7961b91', 'from': '0xfd241ae04ae85a68cbce483bdb133ddb63bae85e', 'to': '0x91ba6ba22e6b437931d91fb1718d731a0139030c', 'value': 19.68038835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x754de3b3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0xb05053a62bf5efbf62f9d73428da46e53e37a72680fb5cf37283cda08c52df0c:log:176', 'hash': '0xb05053a62bf5efbf62f9d73428da46e53e37a72680fb5cf37283cda08c52df0c', 'from': '0xaad0e10e0aa2c89305526db13a2a612d5be3c664', 'to': '0x6a93b2e801a72cbb2c421a64cc5339f3cf168559', 'value': 17.60077274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68e8a5da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0xc24011373412e395fb779477a87ddfb95a70605a30dbb47f8e829001bac9c781:log:177', 'hash': '0xc24011373412e395fb779477a87ddfb95a70605a30dbb47f8e829001bac9c781', 'from': '0x9e6ef8b99b56d5c4dcfe60607c526622852db17b', 'to': '0x7233f8cace9b97b6ab1dd7c0d61c930692da9140', 'value': 10.3591164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3dbec1d8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x61d173d694f10c4b39ac1da1f1d98e7f5607852e8b92fc507d9d9cb8ba426869:log:178', 'hash': '0x61d173d694f10c4b39ac1da1f1d98e7f5607852e8b92fc507d9d9cb8ba426869', 'from': '0x44668129fe179511ee9cb322ed2f27f77e16f957', 'to': '0x8084191f188435f41edecf3abd9de80ab00d8273', 'value': 5.12020209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e84cef1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x0b8e50ccec92d108559a2f6c308fa60e34a2bf262fdd1aa8c6b2f6805c2ee525:log:179', 'hash': '0x0b8e50ccec92d108559a2f6c308fa60e34a2bf262fdd1aa8c6b2f6805c2ee525', 'from': '0xeecceb8e1d0eecab247de0c700e77edd4b92ff8e', 'to': '0x5aa214a07b78963519dd99cd9614ee692b874763', 'value': 12.2823119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x49355216', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x0499da69ae77399eeb132df6f544c2dfe67b4616bc5c76a35fdcb82e290d35f3:log:180', 'hash': '0x0499da69ae77399eeb132df6f544c2dfe67b4616bc5c76a35fdcb82e290d35f3', 'from': '0xdd152b7f50c67cf335a382c9e3342f86dad0592d', 'to': '0x9f220890eeb310be7c14655e289b4c9c38a58c95', 'value': 11.71037788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x45cc9e5c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0xbd02651365b276d2b79e943e85503d346a2966554d51f26dd9796d6fb247513c:log:181', 'hash': '0xbd02651365b276d2b79e943e85503d346a2966554d51f26dd9796d6fb247513c', 'from': '0x75300479f33ae355142b10a56e9e2af5b4554497', 'to': '0xa4bc09e1c37848ea331acfb33e2b2395ce3b1774', 'value': 5.72730028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22232aac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x9b1732c3546a5f3e6c0fda1f5a2b790bc2028091c5c3c32e8c09e3ec9149a639:log:182', 'hash': '0x9b1732c3546a5f3e6c0fda1f5a2b790bc2028091c5c3c32e8c09e3ec9149a639', 'from': '0xa03d3da514622200385a1f9d48afc7bb46bb2390', 'to': '0x8c39e1ad59eb09a8e2f2296640bd7209e2517a05', 'value': 6.38898855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2614d2a7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0xd89a5d5ed80284774789f173b75807cf955fe0733f7beb565b6ddfca8889cee9:log:183', 'hash': '0xd89a5d5ed80284774789f173b75807cf955fe0733f7beb565b6ddfca8889cee9', 'from': '0xa58a9e8009dfe2761cd89234882c7cf00c662c96', 'to': '0xdb41b173da5e7422aad9486dc5ba66b3616b8a77', 'value': 9.44204633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x38476b59', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x666984e690d64dc41d2a2ab85eb502514acc7252528f9e079bcdc8b667c4a33d:log:184', 'hash': '0x666984e690d64dc41d2a2ab85eb502514acc7252528f9e079bcdc8b667c4a33d', 'from': '0x109de738f6623291a1dc80987f31070b67de346a', 'to': '0xe28a6ed927ff265be2a7257fcbce60c9f41912cd', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x3e2ab08a165ac8ba6c78facdce0fcb4317dad815fa5cfd6695dc9a5376c4406f:log:185', 'hash': '0x3e2ab08a165ac8ba6c78facdce0fcb4317dad815fa5cfd6695dc9a5376c4406f', 'from': '0xff9b3fc4abb284d24d2438e7dc3a83f4a80f10a7', 'to': '0xb66649a473bb51a6193657534e0f9ad1bd88c747', 'value': 8.39043523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3202c9c3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x69777ac77da7969a699f6aa383fe44149a43b169b4deac42b4049ba7e07aa023:log:186', 'hash': '0x69777ac77da7969a699f6aa383fe44149a43b169b4deac42b4049ba7e07aa023', 'from': '0x9ebaa0b59e346a94ccc611832ef31eb2fb668620', 'to': '0x1f44d6a93e56e2c9d279c4fe418d09af6036fe14', 'value': 3.30892611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x13b90543', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x71647788a8c9d9d4ec8615138c369ee72f959dd8d2c7382d7f9dc5e11c87b8df:log:187', 'hash': '0x71647788a8c9d9d4ec8615138c369ee72f959dd8d2c7382d7f9dc5e11c87b8df', 'from': '0xa9f07709eab1b8daed6197617c16566948679b2b', 'to': '0x2841ca782ba084c9a9476c72652bd8f7157fb273', 'value': 11.38277774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43d8bd8e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x9105d11bbdbaef3b58e00cfaaa8e249486767d503001330f8b86d9f06ee70788:log:188', 'hash': '0x9105d11bbdbaef3b58e00cfaaa8e249486767d503001330f8b86d9f06ee70788', 'from': '0x917cf62244538dab8d29675d1abe20efc8ec36b0', 'to': '0x54569c4918dbebcf2d6bcad71475e55dc5dab126', 'value': 14.31942819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5559b6a3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0xd26b75ab0df0f029dce1b69de088266b45269f6573e68252fd12e737082de8ee:log:189', 'hash': '0xd26b75ab0df0f029dce1b69de088266b45269f6573e68252fd12e737082de8ee', 'from': '0x76ae1ee5b6bee07cb87f50a54c0ebfc3ba067bc7', 'to': '0x9cbde44f637260b6419d354da98914145b35a22f', 'value': 5.82901595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22be5f5b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x4352ec170aa8e2386fcd6f7853c23c6b19cd7ca2286b298b761e237feb4a1f97:log:190', 'hash': '0x4352ec170aa8e2386fcd6f7853c23c6b19cd7ca2286b298b761e237feb4a1f97', 'from': '0xf297fcbd22a6e46530ee809452742cd4e395bcf9', 'to': '0x8ee5f2b49985ca44df269c768a1ae1cd25ef57aa', 'value': 3.40139386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14461d7a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x1320c3328259461e0b6a2deb2471192839002ec5ee7d896450f4b0309223d8b7:log:191', 'hash': '0x1320c3328259461e0b6a2deb2471192839002ec5ee7d896450f4b0309223d8b7', 'from': '0x9a72adf7b93573809ec848ac33844f4c504633c2', 'to': '0xf083987beaf25216789737192a893707981eac5a', 'value': 3.41319634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14581fd2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x0eb3bee31891216715a13003afbbaa8683f5f7de93a20af6dc6f447592961179:log:192', 'hash': '0x0eb3bee31891216715a13003afbbaa8683f5f7de93a20af6dc6f447592961179', 'from': '0x62d767f1675b32820dbd74519a752614e698a244', 'to': '0xdebd0e529e833e304f52b27ea0d1093bbe7304d0', 'value': 14.27218407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x55119fe7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0xb3da7d4c1914a737835d7f72299a8ba0a3a8e1a2f75b16ac885b10264a164270:log:193', 'hash': '0xb3da7d4c1914a737835d7f72299a8ba0a3a8e1a2f75b16ac885b10264a164270', 'from': '0x5daacc3df7287eb9c5f1865ce78b91395d14ce23', 'to': '0x6bfbee13936f6a833d1b2cfab300eb8ee13caedb', 'value': 4.52867499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1afe35ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b16', 'uniqueId': '0x7a1b7c0926d4bb9670cec730ca6b8db1ede869cd2d88d77fac8b0112e6db7ca6:log:194', 'hash': '0x7a1b7c0926d4bb9670cec730ca6b8db1ede869cd2d88d77fac8b0112e6db7ca6', 'from': '0xe12a7dbfb61b4d5af3aebdaf269148d2685c53d7', 'to': '0xb23fec87e4e9e89861d64393e2938e67b8408fab', 'value': 5.11556987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e7dbd7b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:00:41.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0x6458321b615172a50b47fe93919918560cdba9e06b8b27c8e7b0c5a6059dd1ac:log:192', 'hash': '0x6458321b615172a50b47fe93919918560cdba9e06b8b27c8e7b0c5a6059dd1ac', 'from': '0x097b16a7dbeb54f1f700f96b3833c37b59591450', 'to': '0x522aa5619bbe9d8ee8e01e498ca3cf8ef335ff70', 'value': 4.99304033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dc2c661', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0x94dc0d2fe35b0ab439d18eceed877ac591fea71b5fdac5bfee877fc4a92a4f3d:log:193', 'hash': '0x94dc0d2fe35b0ab439d18eceed877ac591fea71b5fdac5bfee877fc4a92a4f3d', 'from': '0x5adf4378fca2dc0acf62a3dfa66a3a4ec0165991', 'to': '0x07bd2603e20527dd84611c15e95a7ccbe808b932', 'value': 6.56345779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x271f0ab3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0x2241b8f50686b8811293978bde62a31460d3a0b1b64ba512c30dafbb98f8adfd:log:194', 'hash': '0x2241b8f50686b8811293978bde62a31460d3a0b1b64ba512c30dafbb98f8adfd', 'from': '0x5887b8dbe2c913ac66ce7acaa5d7005a30e8bbed', 'to': '0xfb7d36ccef166495c3e49b21b7d87938e1b3e299', 'value': 13.76450956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x520af98c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0x7231e4a7a2a73214b01038929ba0e7ffbb26ca006d455e4cc0ad1da31d5a2c86:log:195', 'hash': '0x7231e4a7a2a73214b01038929ba0e7ffbb26ca006d455e4cc0ad1da31d5a2c86', 'from': '0x7dbbaff3d9b047d58549d961ae2b89e77621fea0', 'to': '0x47fc44154b2122f74cc41509ebedce5cff552325', 'value': 6.64605403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x279d12db', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0x1f01bc1cd48f1fd618aa13c198e812a2c87bee5f131377d96a93443561f2de58:log:196', 'hash': '0x1f01bc1cd48f1fd618aa13c198e812a2c87bee5f131377d96a93443561f2de58', 'from': '0x26fb61120271be554d26d7b278975669ee98a577', 'to': '0x9e06dbd5526b5e435d693779986fe7042e2b2eb1', 'value': 25.0634175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9563bd76', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0x196afe99e46d545b46146ca3e2082ab496848d31183336b7852c774dd6247532:log:197', 'hash': '0x196afe99e46d545b46146ca3e2082ab496848d31183336b7852c774dd6247532', 'from': '0x60ead3131bb4261a786d04208b9983761fc176e1', 'to': '0x19d5129d9ad65fe87e1227a04523f7c6d003ee37', 'value': 9.70030324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x39d17cf4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0xe446f43b1c450d9bb10dbdac119e9258d4ed359b124516343492f8567054b310:log:198', 'hash': '0xe446f43b1c450d9bb10dbdac119e9258d4ed359b124516343492f8567054b310', 'from': '0xa7f447c9d9740c8670b1aeec6574046074916f27', 'to': '0x15e8f581e83754e61480aa04761404769c7dd735', 'value': 18.14177678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6c22278e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0x00243e70a47a776a9b1c5e8598dc106a42562d64e9719284cb0cc8f287490ba2:log:199', 'hash': '0x00243e70a47a776a9b1c5e8598dc106a42562d64e9719284cb0cc8f287490ba2', 'from': '0x817bf528fa6b2d80f9d9775f50006de6db45707e', 'to': '0x4331c0a11c9396f5a2c927657082cd971a103a36', 'value': 5.04345033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e0fb1c9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0xdcde8ae797173968c2fbcefd2bde8359c58cb69bee63ba38c1a917f25be587ef:log:200', 'hash': '0xdcde8ae797173968c2fbcefd2bde8359c58cb69bee63ba38c1a917f25be587ef', 'from': '0x9fb36dc3009ce28ae022f4c40f9e5961a1178342', 'to': '0x79b76a649c08ed50a715de3c18d1b6d70368159f', 'value': 3.4125348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14571d68', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0x04b23541337ad47f015bba7a8f7a32e126c0015f9fff423b7e4d17d9979fe5c8:log:201', 'hash': '0x04b23541337ad47f015bba7a8f7a32e126c0015f9fff423b7e4d17d9979fe5c8', 'from': '0x1a5613079e5592569c08eec869f39ff6a8f02db4', 'to': '0x9b6b9cc0b964d3708a7fc0857c7e891a568aed5c', 'value': 30.53495049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb600a309', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b19', 'uniqueId': '0xc9b72e0fad0c6563161765e9ab0328073dfa498f0d5ae8907f08be5c79b88beb:log:202', 'hash': '0xc9b72e0fad0c6563161765e9ab0328073dfa498f0d5ae8907f08be5c79b88beb', 'from': '0xf92429e6cfd06697f10039ee95fa5f50be91f684', 'to': '0xa99aeadd74ac472abd9d1bd3f6479bf816c8e74d', 'value': 12.61763433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b34fb69', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:01:12.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0xc34b6cf8e0b6c79541c249ab23b4b3d4a3178b9a4062574676e5ae08eadd7f68:log:50', 'hash': '0xc34b6cf8e0b6c79541c249ab23b4b3d4a3178b9a4062574676e5ae08eadd7f68', 'from': '0x46682c7c1903e078696001acbf076599585b6989', 'to': '0xcd1e04cffd2e68351e48c85c6bd6d35d37dd7aea', 'value': 5.00478594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dd4b282', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0xb19bda3fbc58dcf6ab920dddc68acb3a76b6ea74a99894042c329d1e97bb046d:log:51', 'hash': '0xb19bda3fbc58dcf6ab920dddc68acb3a76b6ea74a99894042c329d1e97bb046d', 'from': '0x3a8d2fa063072482dedf9a1c318a29fa5996f4a1', 'to': '0x6514ec057f14277ed8826e5b0897245a459e6b9c', 'value': 16.89741916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x64b76a5c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x306135d77abbaa2ec775df67e03aad0da42e208e23bb5fd703bc684ff39a0673:log:52', 'hash': '0x306135d77abbaa2ec775df67e03aad0da42e208e23bb5fd703bc684ff39a0673', 'from': '0xae560ae13c7551e9588c45f6db4a4862b0cca813', 'to': '0x8138fda8d820d0061e13387dd4bb5f780e00d109', 'value': 11.41146355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x440482f3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x1608ec2194c2b9b20e802ef8cce7d81c51af0d0690cd38cf22e4f23a435168b2:log:53', 'hash': '0x1608ec2194c2b9b20e802ef8cce7d81c51af0d0690cd38cf22e4f23a435168b2', 'from': '0x0aca94e268e8e075a841a39e12de934bc95dcc3d', 'to': '0x221e3c4064ae1dec1f60e7a8d6039f751dc6a853', 'value': 8.10458742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x304e9e76', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x26c33666f4f96165ff3d75f62e7002924e501219395e0a0264bc5bb4f78d42a2:log:55', 'hash': '0x26c33666f4f96165ff3d75f62e7002924e501219395e0a0264bc5bb4f78d42a2', 'from': '0x63cc64c58337d1d342704ba111c77be94b7d9e68', 'to': '0x16dbf58d71de13b7afaf2df1f6fe7f814604faa5', 'value': 10.43209524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e2e1d34', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x2c077717881506efbd2ccdb8b229f158a29f3f921ac3c9fc35d5c885ea29f677:log:56', 'hash': '0x2c077717881506efbd2ccdb8b229f158a29f3f921ac3c9fc35d5c885ea29f677', 'from': '0x9e2225ab0de0778144cbde832b63338ceff8e222', 'to': '0x2f89e048bf23aefaa888f23f956a717a7a14abec', 'value': 5.21019304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f0e1fa8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0xe5232eb49cc884173727c49b96c2516795eb78a2c5b82360f1079b2406114477:log:57', 'hash': '0xe5232eb49cc884173727c49b96c2516795eb78a2c5b82360f1079b2406114477', 'from': '0xcb0f1f26f330958801e30892f140d4fcd805c1cd', 'to': '0x1170f414599f53f5aa0ea06bfbb1b410c6c0196e', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x3c49cb10dfdb27ce91cde31d1bff6113275bf68b4dcaac91632a2031665d9ecb:log:58', 'hash': '0x3c49cb10dfdb27ce91cde31d1bff6113275bf68b4dcaac91632a2031665d9ecb', 'from': '0xee7cb024ee24274496bb4cd193c2712fbbcd0b3e', 'to': '0xc9c46be432c11e8fda8975aa1f8d2ba7e77ef9cb', 'value': 15.41096063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5bdb427f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x3fd66cda0bbf2fbd41b1a44f8bd9b1973b86c71cd76eeaa640aa99297de92ad3:log:59', 'hash': '0x3fd66cda0bbf2fbd41b1a44f8bd9b1973b86c71cd76eeaa640aa99297de92ad3', 'from': '0x1fcdb598eb9dbef0a5f51bb566b9090c3b24faa3', 'to': '0xc7d4229b35bd6f9ae5b7496e13c254657e1a8fa6', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x15b8d6f933094714fa90c7d08e9dbd8a226a43ac145b03c360b4b31d7bf3f3d2:log:60', 'hash': '0x15b8d6f933094714fa90c7d08e9dbd8a226a43ac145b03c360b4b31d7bf3f3d2', 'from': '0x414637eebfe8d240dbb2a964f2ba52cebf07a818', 'to': '0x472239779d37bfb17094611bec12906e672f8ff4', 'value': 8.2230613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x31036552', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0xf5438126efa455bfcaf77ec13598069b43eb1ea1d4673dc6c64f90c884bd21c6:log:61', 'hash': '0xf5438126efa455bfcaf77ec13598069b43eb1ea1d4673dc6c64f90c884bd21c6', 'from': '0xbd8a7143f74c5e36bb5e4a439e67c317723c352e', 'to': '0x6a62b99bfefca33b01e1d19af888f770c930c297', 'value': 3.40925176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14521af8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0xb89833f128af5a863da6d0ef3d328268c90679a17ce2244f047ebbb245aa200b:log:62', 'hash': '0xb89833f128af5a863da6d0ef3d328268c90679a17ce2244f047ebbb245aa200b', 'from': '0x07b7b35808b1a0537e526408bdca11f30fdc7107', 'to': '0x9bb0bde15a43de13ad583cbb754855875ad8f4e5', 'value': 3.40675794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144e4cd2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x4eb7831d6267feb74807da356cc66f1af9a31472ad5e417a17c9629ca18c9461:log:63', 'hash': '0x4eb7831d6267feb74807da356cc66f1af9a31472ad5e417a17c9629ca18c9461', 'from': '0xc51fd5a7e6ad0c7156c658c64fa167f7badc9d2f', 'to': '0x19c45a2b99ff0bbd5ff3f7095d6abafc0eff8abc', 'value': 3.37599444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x141f5bd4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x1fb395bb5a4d9869c3dd6da1b964f9bcbbd7e8ac89125b4e87dadb9aa1f9256a:log:64', 'hash': '0x1fb395bb5a4d9869c3dd6da1b964f9bcbbd7e8ac89125b4e87dadb9aa1f9256a', 'from': '0x435c3f49bbc3880ec618d5e850d2731bcb0ec847', 'to': '0x60d25c0fb5eb8e77e9b75b77e22e99da875373de', 'value': 4.4168082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a5383b4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x00e2d8698c30aab6b202f816e995f20395e64d07d44d95dd260833ba7bea5a58:log:65', 'hash': '0x00e2d8698c30aab6b202f816e995f20395e64d07d44d95dd260833ba7bea5a58', 'from': '0x06a42fcf2fa38e102dcad931ac2ccaf036ded2e6', 'to': '0x55e4e4b7b9d3b3abf6b6a526d92f175752c79d7d', 'value': 11.75916694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x46171096', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0xd9e2f2652c963f3400f1d42c7c33c9fdf5a1c9c045dff50252250cccc4d18d53:log:66', 'hash': '0xd9e2f2652c963f3400f1d42c7c33c9fdf5a1c9c045dff50252250cccc4d18d53', 'from': '0xbe592f24ce650c9abb6536afe8269ba699c36760', 'to': '0xe748ef1773da581075a2305ff21aaf3f61f871ea', 'value': 11.24937387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x430d2eab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0xfe705f707efcfab3459559b5dc6844fb3f62d327f5a3b5e95f404899b9458b4f:log:67', 'hash': '0xfe705f707efcfab3459559b5dc6844fb3f62d327f5a3b5e95f404899b9458b4f', 'from': '0xe7470a035a2a6493b79adf0c5a586930492ff026', 'to': '0xe92d8a98c96bd62aa5ebcbc3b6b60c956b8f61a5', 'value': 6.33280153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25bf1699', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x1d372e1ce24cd1cb708a21f3348127bc590f2665b2708ca51aef15e5b92ac67d:log:68', 'hash': '0x1d372e1ce24cd1cb708a21f3348127bc590f2665b2708ca51aef15e5b92ac67d', 'from': '0xfaf4f08031a6a994edc1163bce632caef7cfd295', 'to': '0x7ffd742cf93ef45df62644c20dd119c92ac2472b', 'value': 3.4137402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1458f444', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0x9205e1116c6b8a9189fe3f2df47279e855e4b95ec6b5b091ab2915f71ed8d07d:log:69', 'hash': '0x9205e1116c6b8a9189fe3f2df47279e855e4b95ec6b5b091ab2915f71ed8d07d', 'from': '0xe5d3bacc77517d7a3e73bc7444960b63b9a7eeed', 'to': '0xa4f8e9d461206c17661eb9b2563d022aebcbefe1', 'value': 11.38968547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43e347e3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0xd2e40a51d6535737a196193127997f88c4e567e3792133c60ab7b2cfe8bd69f6:log:70', 'hash': '0xd2e40a51d6535737a196193127997f88c4e567e3792133c60ab7b2cfe8bd69f6', 'from': '0x4e92db33f338501981974b587f0d528f7a1f6f98', 'to': '0x57d11f671c953c4754fd91b44a9d1b793c86c3da', 'value': 5.13189417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e96a629', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b28', 'uniqueId': '0xf91b8fb05530397ab58ad0ebfa38d79de0c71f5217aae284f5ffba00fc8f780b:log:71', 'hash': '0xf91b8fb05530397ab58ad0ebfa38d79de0c71f5217aae284f5ffba00fc8f780b', 'from': '0x043e353e7c280df5532e9bbff2eb3021534da3f8', 'to': '0xdffe51ada81b9c9341088fff6c8e6ae1df5bb968', 'value': 10.2978357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d614012', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:05:34.000Z'}}, {'blockNum': '0x687b32', 'uniqueId': '0x8fa9c89155f0b9a21ee739a63da3b3730c46f0ab06ba9011b6f064e60e1209a2:log:124', 'hash': '0x8fa9c89155f0b9a21ee739a63da3b3730c46f0ab06ba9011b6f064e60e1209a2', 'from': '0xb9bdfad2474e4345d293f54ced65c90cd55d5e2d', 'to': '0x2f8fd154395ff11a8424c9a5512b649051c8b575', 'value': 16.59961022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x62f0febe', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:07:54.000Z'}}, {'blockNum': '0x687b32', 'uniqueId': '0x1c8d532663cd66913289041a8ecbe1d0eabcc40595e0e8862e1625fed7bc4e74:log:125', 'hash': '0x1c8d532663cd66913289041a8ecbe1d0eabcc40595e0e8862e1625fed7bc4e74', 'from': '0x681d9f6cced50ac617be9a5d5bd5d5c33b6706d9', 'to': '0x94b7782829d58f33020f649131508a2cc84b6e48', 'value': 17.13713141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x66252ff5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:07:54.000Z'}}, {'blockNum': '0x687b32', 'uniqueId': '0x30abc0a1c0cf113694f6015c533a7ca4c4eed75cbf5d85bb1815c6f6d4df96c3:log:126', 'hash': '0x30abc0a1c0cf113694f6015c533a7ca4c4eed75cbf5d85bb1815c6f6d4df96c3', 'from': '0x6442049e00c02a6c80df4dc50833de564be42211', 'to': '0xecc5e5eef2544883a0da180e841f5b8ceada9e63', 'value': 3.40979215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1452ee0f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:07:54.000Z'}}, {'blockNum': '0x687b37', 'uniqueId': '0x420226d43b7c7facd833a272a27114ef5cc5cd433a13164b5d3372507e6049fd:log:173', 'hash': '0x420226d43b7c7facd833a272a27114ef5cc5cd433a13164b5d3372507e6049fd', 'from': '0xb88cbb57e2fa70d3fed7106b4f6271a4b98ba382', 'to': '0x14cbaa9066d9f403ccfcf3b50b3a5c209812ee45', 'value': 17.2662851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x66ea429e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:08:50.000Z'}}, {'blockNum': '0x687b3c', 'uniqueId': '0x0adc54d4172b847883b7233891f8bb99c8bce53699779be4d5471419f297981c:log:48', 'hash': '0x0adc54d4172b847883b7233891f8bb99c8bce53699779be4d5471419f297981c', 'from': '0x580d3cdae1057050f1d030e0fc2bf00248fdc5af', 'to': '0x6766c027d82b3c76904568501a144c898c044040', 'value': 12.80097116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c4cbb5c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:09:25.000Z'}}, {'blockNum': '0x687b41', 'uniqueId': '0x51e3687918c86a187490aada2f078425d85fb67ef7aa9facb2599bc565591c8d:log:308', 'hash': '0x51e3687918c86a187490aada2f078425d85fb67ef7aa9facb2599bc565591c8d', 'from': '0x71af4af637f0cfbf402a8a32b4ce7334fccc0b77', 'to': '0xbf281a9b6989d4654f40bd9769f5db42fc6bdce6', 'value': 7.13918183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a8d86e7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:10:53.000Z'}}, {'blockNum': '0x687b70', 'uniqueId': '0x8f1beb7596e0123378e6c4e99fe17004223c83c535956258d2839f8746bf253b:log:87', 'hash': '0x8f1beb7596e0123378e6c4e99fe17004223c83c535956258d2839f8746bf253b', 'from': '0x263feed93921509cb9f797eab779ec816dd325b9', 'to': '0x1f41d13058a6597591b328962b53785c40886e8f', 'value': 5.88703839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2316e85f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:21:03.000Z'}}, {'blockNum': '0x687b82', 'uniqueId': '0x7fcddb6a8e95fc4cf7f3f7c2ee1c239adf113af1323d5e1386d997ba6f21cd10:log:4', 'hash': '0x7fcddb6a8e95fc4cf7f3f7c2ee1c239adf113af1323d5e1386d997ba6f21cd10', 'from': '0x8d94260687f93198ea7c480d41bf95115acaa746', 'to': '0xbd729b9fac8e939b9275915d19d31509b1e69902', 'value': 17.61516383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68fe9b5f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:25:22.000Z'}}, {'blockNum': '0x687b9e', 'uniqueId': '0xa072cae1020d1855c0da9d98970ac4848f5b9636585dced0406f52c5162120b8:log:106', 'hash': '0xa072cae1020d1855c0da9d98970ac4848f5b9636585dced0406f52c5162120b8', 'from': '0x1d1f32ef133790f2f7e6a54f0e789c43d0bc53c3', 'to': '0x18a2c867b851516cff0fe3ecc8ca0e2c4323367a', 'value': 11.04152572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x41d007fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:32:31.000Z'}}, {'blockNum': '0x687b9f', 'uniqueId': '0x258fc29abeebb5863a7e38a459358ae7b3902f5d888ffa931de0a803570cb0d1:log:57', 'hash': '0x258fc29abeebb5863a7e38a459358ae7b3902f5d888ffa931de0a803570cb0d1', 'from': '0xe430a48cb6d9afee61736c6f179624502d68d0e4', 'to': '0xca67c05cc884472c4a95b96380f515808e951187', 'value': 8.68229164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x33c0202c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:32:34.000Z'}}, {'blockNum': '0x687ba3', 'uniqueId': '0x27efb742e2f779fea7c3664f8971339619f441eab32e4d39cd681faaa514bc06:log:97', 'hash': '0x27efb742e2f779fea7c3664f8971339619f441eab32e4d39cd681faaa514bc06', 'from': '0x97e9b87e12404a8328f310d215b2f0873e5bfc99', 'to': '0x70e2d61efb11b501b8c1ae3e3db1ea8223f72132', 'value': 5.25774496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f56aea0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:33:27.000Z'}}, {'blockNum': '0x687ba6', 'uniqueId': '0x08a08f56a50638901d2125dae6e5c314836af393c36b2b480cdcb0b89945a6c8:log:54', 'hash': '0x08a08f56a50638901d2125dae6e5c314836af393c36b2b480cdcb0b89945a6c8', 'from': '0xe12c1a4d75ccc90e5668b783215f5877c575647d', 'to': '0x5b569436319c4b42539cd5c261dde41fb610fceb', 'value': 3.41084166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14548806', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:19.000Z'}}, {'blockNum': '0x687ba6', 'uniqueId': '0xaff8984db3f79b387aad80696ed989a595037de5c0bc24207743c8e7ef09e3f2:log:55', 'hash': '0xaff8984db3f79b387aad80696ed989a595037de5c0bc24207743c8e7ef09e3f2', 'from': '0x9050c6c926b8c368983d0ade35fea915514bc551', 'to': '0x7103b483414a62b9e60ef95e5940d2355e97cb58', 'value': 5.11141395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e776613', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:19.000Z'}}, {'blockNum': '0x687ba6', 'uniqueId': '0x451f38c3e13beb536cdefab297ae79dd535126e6e32f798c7d144b6f11b542f8:log:56', 'hash': '0x451f38c3e13beb536cdefab297ae79dd535126e6e32f798c7d144b6f11b542f8', 'from': '0xf97a47d7e14c1619a24f88419977146f3ced11c1', 'to': '0x6edcbbcb547445969e8b0a0851b8c8034cdbe3bf', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:19.000Z'}}, {'blockNum': '0x687ba6', 'uniqueId': '0x2243a3735fce06864321f1ece2f1b74e9aa4943079013c233cec9ef1435a01ef:log:57', 'hash': '0x2243a3735fce06864321f1ece2f1b74e9aa4943079013c233cec9ef1435a01ef', 'from': '0x33869a48e5fa4d33ea050d649c07f4165d2fa9f0', 'to': '0x13829c9ffe38b9b4e2e5d7ecf7ba384f89d71abf', 'value': 7.15973476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2aace364', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:19.000Z'}}, {'blockNum': '0x687ba8', 'uniqueId': '0x1107f2dc30cf06ef6c1e4d0d605b67c45e6489953218deffbb04b1eae6f0a737:log:227', 'hash': '0x1107f2dc30cf06ef6c1e4d0d605b67c45e6489953218deffbb04b1eae6f0a737', 'from': '0x2cbc84d54aeb37a523330f3a9fadafd9918befa0', 'to': '0xa9754188274bb6ef673048429407e437ca970e90', 'value': 1.295397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b89e74', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:50.000Z'}}, {'blockNum': '0x687ba8', 'uniqueId': '0x91ae2d96ebd5b29753684e421c6b01fb4c8cf718c70cf62ad41699df5213bfd5:log:228', 'hash': '0x91ae2d96ebd5b29753684e421c6b01fb4c8cf718c70cf62ad41699df5213bfd5', 'from': '0xf6e02f1658c87497b67bda3c325debf77e946b06', 'to': '0xc2b8b0b241adefb0c6806f7e0b2259c02cddb116', 'value': 11.97529526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4760d9b6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:50.000Z'}}, {'blockNum': '0x687ba8', 'uniqueId': '0x609d785170254aab3eb571bbd751971a46f065daa38f197913d72f5dc0b35db4:log:229', 'hash': '0x609d785170254aab3eb571bbd751971a46f065daa38f197913d72f5dc0b35db4', 'from': '0x6b87ed40850c3fb9d38d7a8554154c3a235101be', 'to': '0x1acb6f25ae8566ce70aea5755d21284d0646e89f', 'value': 7.03636247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x29f0a317', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:50.000Z'}}, {'blockNum': '0x687ba8', 'uniqueId': '0x4bbbfe3e7efa6fa02ca7013d02684b381c74cc3ef0b008119363e3210fcd0139:log:230', 'hash': '0x4bbbfe3e7efa6fa02ca7013d02684b381c74cc3ef0b008119363e3210fcd0139', 'from': '0x3f2e85aee871a161990d716dcba9aa2e3a152db3', 'to': '0xd601f286872fd47790cf893fd25b112ff71a25fc', 'value': 3.58385434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x155c871a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:50.000Z'}}, {'blockNum': '0x687ba8', 'uniqueId': '0xe0f450d5c7813531881a193401ec8f6cf97148490064af07ca47d64ffb600781:log:231', 'hash': '0xe0f450d5c7813531881a193401ec8f6cf97148490064af07ca47d64ffb600781', 'from': '0x47ffc2b88b451265d69b5e13fe48558d961861bf', 'to': '0xb5fdc8d63f7747f0f79584f1a71f6370662282a9', 'value': 15.35390616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5b843398', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:50.000Z'}}, {'blockNum': '0x687ba8', 'uniqueId': '0x03923d3b9e9a8605370024b22a96876f74270ccdb6db88830653463a63d93891:log:232', 'hash': '0x03923d3b9e9a8605370024b22a96876f74270ccdb6db88830653463a63d93891', 'from': '0x9eb9a079811880a3b8d9fdcb23eba62c5e268bc5', 'to': '0x688c1bb85c680e45a41b8206f68b87e7384de985', 'value': 23.70289141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8d47bdf5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:50.000Z'}}, {'blockNum': '0x687ba8', 'uniqueId': '0x0666fd1c061617ddac3d6a4df0002402cfb69ef8c7bac568f91c5194a20ac870:log:233', 'hash': '0x0666fd1c061617ddac3d6a4df0002402cfb69ef8c7bac568f91c5194a20ac870', 'from': '0x09fc56f475791b25b3404f58e0ce1face3c22f86', 'to': '0xf8346ba468fa49bc91d1276d4c4a2883a999cb41', 'value': 16.38142771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x61a41333', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:34:50.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0x9b5853beb92e979c262425be475708828d5d5fe955851dae60b6aec9be1e1289:log:169', 'hash': '0x9b5853beb92e979c262425be475708828d5d5fe955851dae60b6aec9be1e1289', 'from': '0x7a6e2c9f7863378530ea4cd5c142a1df65c897be', 'to': '0x3693152b1507b79b91344070a9f6dddbda166d25', 'value': 6.63256851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x27887f13', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0xd7837a7939c56b2ac382cd16fba77261cedf069932a317749618ffb6bf46a47e:log:170', 'hash': '0xd7837a7939c56b2ac382cd16fba77261cedf069932a317749618ffb6bf46a47e', 'from': '0xebcc3ea28a714d66d8b5ac307b71f8bfe9b392b0', 'to': '0x77affbb619a701054f58907e04c348fde117c9d1', 'value': 24.29228479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x90cb15bf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0x4b0dde0ce2b3313a490969e311797e497063602354ac025677f9ae45d10c74e3:log:171', 'hash': '0x4b0dde0ce2b3313a490969e311797e497063602354ac025677f9ae45d10c74e3', 'from': '0x6f1f50512ac7397f9f353b735593bd75c325377a', 'to': '0x8187ef22a00d627fed230182bc6b6730285fbaad', 'value': 18.51295839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6e58885f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0xf1fee9907e367c4ad2e5f5a9018dc24cf65f9e12b166e6b26b89520d7bf21598:log:172', 'hash': '0xf1fee9907e367c4ad2e5f5a9018dc24cf65f9e12b166e6b26b89520d7bf21598', 'from': '0x761034ef4bc1250d139ce4be9535f74d9a5fb0ae', 'to': '0x66715785f63e918745a3435744c3d70dd8e67ed6', 'value': 5.84563112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22d7b9a8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0x8357cf46f1a954ddbedb325ef0e7f2f4f13301ca32f929d2a2ea720cf86d9762:log:173', 'hash': '0x8357cf46f1a954ddbedb325ef0e7f2f4f13301ca32f929d2a2ea720cf86d9762', 'from': '0xa187167010ca8630a33695fe7d10d470eef13771', 'to': '0xe83b3db383ac423232357af4e124075360eda1b1', 'value': 12.67921043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b92f093', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0x91341f29ba0776c63feab5ce28338cad0d20c9039ae84e40b15708062ee27a7a:log:174', 'hash': '0x91341f29ba0776c63feab5ce28338cad0d20c9039ae84e40b15708062ee27a7a', 'from': '0x89f2ca3984aa2bc4b04a5fadb02c43a2daee7ea0', 'to': '0x8ae63642f323b4c3e93a2bf2ad0951e0e5c73c02', 'value': 5.2668713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f649b9a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0xa7a196ebb3f7b6d3c778bf125f438196da80b8476561c630a0b0fc5f5b53dfe2:log:175', 'hash': '0xa7a196ebb3f7b6d3c778bf125f438196da80b8476561c630a0b0fc5f5b53dfe2', 'from': '0x63046e414848d1c7e8546cbb75703eb5be662053', 'to': '0xb8791854ee60904b0398f22c15f0f525b4d668c0', 'value': 5.98347719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23aa0fc7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0x38f91bda7663b0517bb53cdd5cd94772be1b58e19fcb6a91ed8e134592546ab1:log:176', 'hash': '0x38f91bda7663b0517bb53cdd5cd94772be1b58e19fcb6a91ed8e134592546ab1', 'from': '0xa5bef1317772a9bb284025951e21caee2acf7b44', 'to': '0xf9056608a75455334b4ddaee1a34dc45a2024a12', 'value': 23.86312229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8e3c3c25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0xb59c0a993bb272f1a1d4797867088a25e86ca0680400dc314d04f4f59bc378f1:log:177', 'hash': '0xb59c0a993bb272f1a1d4797867088a25e86ca0680400dc314d04f4f59bc378f1', 'from': '0x461f6f23de67dd3449954cf635a6aa591edbfd2b', 'to': '0x77657ad42545e8d91fd1e3882296c1d860911730', 'value': 12.19762144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x48b417e0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0x6ef43008705050a6ea48e9eec3a79bf632fd0a78841ddbf42e75edf8d0782e7a:log:178', 'hash': '0x6ef43008705050a6ea48e9eec3a79bf632fd0a78841ddbf42e75edf8d0782e7a', 'from': '0x27783d8a7eb8a412551c61ee79bd5e2861884db8', 'to': '0xc5b4cd9fcbd4a57902f5d0c05833a8edc8ec7689', 'value': 5.67845008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21d8a090', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0x650418d3e5201f67f7220f39089d93b6be1e9ddbbd3bda583c4b0f51c3e3795c:log:179', 'hash': '0x650418d3e5201f67f7220f39089d93b6be1e9ddbbd3bda583c4b0f51c3e3795c', 'from': '0xaeb5f5244f1808be89f775f630235b4e0735f6de', 'to': '0x34ce8b9cbcc1166c0d65494ded87716885035d08', 'value': 11.73983165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x45f98fbd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0xfa82ed9c4a652fccf2232a64fc2ecfe4a145c649bdcf3a874029b4ab930ad562:log:180', 'hash': '0xfa82ed9c4a652fccf2232a64fc2ecfe4a145c649bdcf3a874029b4ab930ad562', 'from': '0xc16c46cb9888fd1dbe5ea14c2cc6532ba585f561', 'to': '0x8173dd207b3395d6ec291c3276579ab948df6c65', 'value': 5.21926833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f1bf8b1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0xc5c87e3be5c9a3f6b93175910b71141bdfd24812f76f8361651158e3817e92dd:log:181', 'hash': '0xc5c87e3be5c9a3f6b93175910b71141bdfd24812f76f8361651158e3817e92dd', 'from': '0x3853894b7498ef8e2cccf2ee21d47322d9b072bf', 'to': '0x122700391d710f90a84710fd3aa3ad28ea173b42', 'value': 3.40192086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446eb56', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0xa3d566129f03fbd6bd44866f61124442820c026a48c9a3297294c3e765572279:log:182', 'hash': '0xa3d566129f03fbd6bd44866f61124442820c026a48c9a3297294c3e765572279', 'from': '0x4b83e87f02d885802ede83542c1334c800c66deb', 'to': '0xfc36b1d63ec237796b9698497f21e7f4734d197e', 'value': 4.91455119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d4b028f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687baa', 'uniqueId': '0x9381a9021d71a7ff4d9892d14e49a9c391d9fb0390f673b19cbb56beb2a41f1b:log:183', 'hash': '0x9381a9021d71a7ff4d9892d14e49a9c391d9fb0390f673b19cbb56beb2a41f1b', 'from': '0x64954ad32989ed47d094335a9e8a7ee39939b64e', 'to': '0x83617f43a95619df795f37265d60b51a467c020f', 'value': 10.81010114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x406ee7c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:35:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x7be2e738d9c3e5580530f1000d2a8a5da7f1ca193d6bec10a95239a84b890671:log:117', 'hash': '0x7be2e738d9c3e5580530f1000d2a8a5da7f1ca193d6bec10a95239a84b890671', 'from': '0x5a3e9b73f9e8549b59dccf7d24791817440c31ac', 'to': '0x1d1c1753286b9da7cb9b38d8453dff1dcf477f16', 'value': 12.83120447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c7add3f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x9cff55cfeff98e0bd3c404eaa0b89ca237a5cab1e40fe288eefa1cde87a768a6:log:118', 'hash': '0x9cff55cfeff98e0bd3c404eaa0b89ca237a5cab1e40fe288eefa1cde87a768a6', 'from': '0x8315c53905b1d8a5d4b66675195c421e2bb4ec82', 'to': '0xf55365659e4b8c82a4acc7e1a15fd8d91ffc1443', 'value': 5.1667752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ecbdf90', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x7c02c803d33c697ba651f7dfcc2ef9e9d3a9880c352fbf22dee5166b107f4daf:log:119', 'hash': '0x7c02c803d33c697ba651f7dfcc2ef9e9d3a9880c352fbf22dee5166b107f4daf', 'from': '0x203036c366c43bb8646a4f591b4252f3e85d107f', 'to': '0x55ec31eba428ad1424cf890433f3720248ebc504', 'value': 7.10152115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a540fb3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x249834bef6006b738631fd537599d538d6d679f9542128dfa1320653c91721b7:log:120', 'hash': '0x249834bef6006b738631fd537599d538d6d679f9542128dfa1320653c91721b7', 'from': '0xfd70a64a12889fbc15f095b187d9b52eed63d79c', 'to': '0x4a37cac38dd164f47cd1b8bd80d31cb2634d313e', 'value': 3.40173186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446a182', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x58bd9fd0469c42e479ec005169fc234131081a94785aa31325ccb56ae67252be:log:121', 'hash': '0x58bd9fd0469c42e479ec005169fc234131081a94785aa31325ccb56ae67252be', 'from': '0xba679eb2662105018a31a2ef567674ec3f761225', 'to': '0x12a7c444bcab716a8bdfd0f43f7ac2ebe9cd7239', 'value': 11.28186348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x433ec1ec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xe6d6b25b26a2877ddbc7588dc44e819944532b4b8d09de311cceaa0e33255b62:log:122', 'hash': '0xe6d6b25b26a2877ddbc7588dc44e819944532b4b8d09de311cceaa0e33255b62', 'from': '0x2a7fb1c0a64e629d46060a237e4204512345cc2e', 'to': '0x4c783d14e04c58fcd5bd9438f94cf6666337701a', 'value': 4.32788428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19cbd3cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x7f1a852dd0b446e0b4ea178b9f78656ccc577c277a1867ef39dd789deebee4a5:log:123', 'hash': '0x7f1a852dd0b446e0b4ea178b9f78656ccc577c277a1867ef39dd789deebee4a5', 'from': '0x2c9fecb02018d6f964dfd8041d06536cde099e8a', 'to': '0x962cad97e5e91c5623bfba72f3338ecbf3400aa1', 'value': 13.15088626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4e62a8f2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x9e459c0392d0b2b32b83d227740a69535487ceafe08feff2b48484e2932b90d9:log:124', 'hash': '0x9e459c0392d0b2b32b83d227740a69535487ceafe08feff2b48484e2932b90d9', 'from': '0x3e91a3faf9bc31954bba2250ff3066385a9f33d6', 'to': '0x121d459b11c79cfe0b447e93716304393da7f78b', 'value': 16.46345989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x62213f05', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xfd17863a4970c368e6a2de04d2032cbfb6e40b75627312155b78b172c9460e18:log:125', 'hash': '0xfd17863a4970c368e6a2de04d2032cbfb6e40b75627312155b78b172c9460e18', 'from': '0x83400f0375ce12764cd83d219aa00b6ef7b1ae3a', 'to': '0x4393020346ae7d5ea64f6d4a443759d551c755ed', 'value': 5.09501185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e5e5f01', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x0b2e5e130e6ae2ca83affe200ef0c099d1793cb43c74a34a402941ea126b1ad0:log:126', 'hash': '0x0b2e5e130e6ae2ca83affe200ef0c099d1793cb43c74a34a402941ea126b1ad0', 'from': '0xbc5a51c62d2a59cc9ffa08ff3bedb4fa37d8cee9', 'to': '0xf5e39850146f1c3deb71544cbc499a7582e0b30b', 'value': 24.73898442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9374b1ca', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x8beb946681c20a029c5851cda44e1457b467dfca3b02c87c316be628200ed65d:log:127', 'hash': '0x8beb946681c20a029c5851cda44e1457b467dfca3b02c87c316be628200ed65d', 'from': '0x4b40a404938aa350fe8159e80b40fcb3bdca950b', 'to': '0x2ff7a393e3332f1e2c13d054f37eff59193a21f5', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x0fa93f946defc864a21154444eacccdf56d7113671b45d29081f1672557c1895:log:128', 'hash': '0x0fa93f946defc864a21154444eacccdf56d7113671b45d29081f1672557c1895', 'from': '0xd3dae0a6792ed244227f8d3982df900a1860d389', 'to': '0x377890d4343642e05884f91fc53863badbe6c92c', 'value': 6.43818853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x265fe565', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x5ea1d7f2e60fda85108fce1900bb1662d659b4688cd5f1c8f06d140f37944f43:log:129', 'hash': '0x5ea1d7f2e60fda85108fce1900bb1662d659b4688cd5f1c8f06d140f37944f43', 'from': '0x308a1713373a835f58ba4cf6c117784564d63663', 'to': '0x07da633032175897cb626f0939aee1f333a824cb', 'value': 6.08409789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x244398bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xf95d00f5346686b3f27f43217ede8d40dd3bb0b86bec005ef62c70973c094b94:log:130', 'hash': '0xf95d00f5346686b3f27f43217ede8d40dd3bb0b86bec005ef62c70973c094b94', 'from': '0xb40e3c4862520ad5fb9def44ed97db630243bafa', 'to': '0x0d8fd4a7072dbb8ff01c47ac378ea1336f88e301', 'value': 10.7000864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3fc70940', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xecebf53a628e60745c4c96d661be2b5890d1a79d43a479700a66871a243a1f15:log:131', 'hash': '0xecebf53a628e60745c4c96d661be2b5890d1a79d43a479700a66871a243a1f15', 'from': '0x512df0f5f64c13c08edc705bd716a1cfbca43308', 'to': '0xb6c85a656417df20c30dee7bda213a270b1609d4', 'value': 24.42605574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x91973406', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x53cbb953c38ec5bb2d854e24371602915e6919736b69e891a41968ca679779c9:log:132', 'hash': '0x53cbb953c38ec5bb2d854e24371602915e6919736b69e891a41968ca679779c9', 'from': '0x1e649a5623c2dca925be909daa57f7e97c4bcd34', 'to': '0x23838035ea25acecb7b71fcc4410710667cb94ff', 'value': 7.06710955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a1f8dab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x6fa179a0f2dbd76145fbebbf2a01cd6652e55219af7d6774bff1c2ba4e51a6ab:log:133', 'hash': '0x6fa179a0f2dbd76145fbebbf2a01cd6652e55219af7d6774bff1c2ba4e51a6ab', 'from': '0x866ad2fe60499853a7d8245ae6e2b47f32d46e18', 'to': '0xf81283a8340b444b72e84947e8498a850eecbe7b', 'value': 5.25621749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f5459f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x4177b46b757a67a6e54a98bda277a561c3f62a681d6d92765c59c5c939c45d88:log:134', 'hash': '0x4177b46b757a67a6e54a98bda277a561c3f62a681d6d92765c59c5c939c45d88', 'from': '0x68455154eefe7737eb31bd24becc8da95bd2fac9', 'to': '0xe4f54d46fba931153552fbf9f058d555342bdc63', 'value': 7.01631393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x29d20ba1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x8e9d0afa77581ca3ce45500aac2e68c19da1b8a12abb7a03d6d070ba7ce03449:log:135', 'hash': '0x8e9d0afa77581ca3ce45500aac2e68c19da1b8a12abb7a03d6d070ba7ce03449', 'from': '0x7d3eb987bb00813ae0214268868f063ffaba8a85', 'to': '0x734a09f1c8dbd094bf77185fa3545a781a8898ea', 'value': 21.19387963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7e534b3b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xf61556c20cf199c27cf47b8819b0a2797ae0d16892c5227a8d1b38bbfade365c:log:136', 'hash': '0xf61556c20cf199c27cf47b8819b0a2797ae0d16892c5227a8d1b38bbfade365c', 'from': '0x0548f9f37c13cf61ccde86e40afdd0f2cb8702e2', 'to': '0xa221ff4519a0e6e3e6e27f23378b9b925166041e', 'value': 4.60526103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b731217', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x4582221844494f6985a2f6ac1196a1869437239ec63bfcc388d5c8ba007cfecd:log:137', 'hash': '0x4582221844494f6985a2f6ac1196a1869437239ec63bfcc388d5c8ba007cfecd', 'from': '0x7aba6beedd9a257e0c513c189101acb7e2c6e50f', 'to': '0x89ed4a85a522deb1fbea817f649b33089e53f941', 'value': 8.05071933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ffc6c3d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x4271f62eb121cd4230d5cccc78a38048150cc5dcea406bba58bb35d0cc33faab:log:138', 'hash': '0x4271f62eb121cd4230d5cccc78a38048150cc5dcea406bba58bb35d0cc33faab', 'from': '0x214c3f85bf606335be4d757b94ecdec709218050', 'to': '0xb8c2c7d1fc7f0ec4643e8b8843188ae743e2f1d7', 'value': 7.1433921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a93f38a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xddc292b4940567f3ce6b1c71695f2c0acb4be509255dc673ff38a00af6c71c91:log:139', 'hash': '0xddc292b4940567f3ce6b1c71695f2c0acb4be509255dc673ff38a00af6c71c91', 'from': '0x66309d5ae8a5811c4b18a12144299915d50eb0a6', 'to': '0x8a1f249db6f0970a7ee273b7bc77389caaa2a86e', 'value': 5.93915967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2366703f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x70a48e3b952708b59be86202dcad0f6ba81a1125feced003fdd75720dd306ef5:log:140', 'hash': '0x70a48e3b952708b59be86202dcad0f6ba81a1125feced003fdd75720dd306ef5', 'from': '0x4aa79a9b16bb8e87781148a96eb9f670ce90d406', 'to': '0xbcb5bf7be5244f88cbfa141961942ef2a6a65142', 'value': 4.98723128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1db9e938', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xe54bfa7285ee33c2e1eb4b50cf7b5712b92d6669e45bf34fb4d05e6abb165dce:log:141', 'hash': '0xe54bfa7285ee33c2e1eb4b50cf7b5712b92d6669e45bf34fb4d05e6abb165dce', 'from': '0x4589818105e1b920167d2c28698fc63ea99d6d23', 'to': '0xefce080d55ed57af6289d9f9e1bff0d2be3d4c46', 'value': 3.40789367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14500877', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xe4a0fa76733bffe857b4c6f01e0fe74b338176decd38a5ec03d5cf78a4029295:log:142', 'hash': '0xe4a0fa76733bffe857b4c6f01e0fe74b338176decd38a5ec03d5cf78a4029295', 'from': '0x7d19334a7eb9d5ddd32359a540d43df36fa6448f', 'to': '0xe5315ca5f8b99a4167acdefcf313fb56c6048a21', 'value': 3.40131586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xf6032e25901d2abfcef9bfa3c255cde6425055ce5577007e29c3e5180bfdbc88:log:143', 'hash': '0xf6032e25901d2abfcef9bfa3c255cde6425055ce5577007e29c3e5180bfdbc88', 'from': '0xd65a0c39f5a181d851514f40f577998ce8759450', 'to': '0x991dca850940a2db240df0f07b11c97a6450b819', 'value': 26.42766475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x9d856a8b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xf338d641ffcbfbcbf27210ef92dae35d92df3ebf6924bc13e3437841c48fc0a0:log:144', 'hash': '0xf338d641ffcbfbcbf27210ef92dae35d92df3ebf6924bc13e3437841c48fc0a0', 'from': '0x82b71322269d3d87b782502f30a88d011915c0e0', 'to': '0x13138d53c679ec358a12d39f5b94288e29272a12', 'value': 7.18253445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2acfad85', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x5e48d96111ff1a87ea79c3ddc4e6402a21cb11a77eeca17000f70f562711d9bc:log:145', 'hash': '0x5e48d96111ff1a87ea79c3ddc4e6402a21cb11a77eeca17000f70f562711d9bc', 'from': '0x05a53fc1b58e1b60f2947e9d237954f5c861f90e', 'to': '0x6476c8facb502018f7bac42f52e08edd75a4557c', 'value': 10.79296015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4054c00f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x2823134ff08517e8281b52a8f65dfdd44efeb6e65d2f3cbfaba8d768dcb206f7:log:146', 'hash': '0x2823134ff08517e8281b52a8f65dfdd44efeb6e65d2f3cbfaba8d768dcb206f7', 'from': '0x2f76f0b4c7163129a9e739138b762e4602633eaf', 'to': '0x01d9d7ca3326728fa62f3ca71f22ed53e0387382', 'value': 5.88093943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x230d99f7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xc4f4d0f038db13bc1f928c626df6ad8ad44a3639cdfe12e72de04925693fe935:log:147', 'hash': '0xc4f4d0f038db13bc1f928c626df6ad8ad44a3639cdfe12e72de04925693fe935', 'from': '0x62942993f6993cbb66c36f6f4e9a0104809d27e4', 'to': '0x3c356024598f220f34283e18a3a063f3929815b5', 'value': 14.61627825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x571eabb1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x6470b0b16d6914aa537c3286d4f39398a82570a4727df51228506a6d5c1cbd2f:log:148', 'hash': '0x6470b0b16d6914aa537c3286d4f39398a82570a4727df51228506a6d5c1cbd2f', 'from': '0xa0b8ee7a725158a9d0c8cc5ce375cb8370459b3f', 'to': '0xe5be708e67a163a422c44c1481f20fb2b88b5a3f', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xceb8e66e20110debf01793e85c22f5ab4f87d01502f5090cadec8687ef7d8acb:log:149', 'hash': '0xceb8e66e20110debf01793e85c22f5ab4f87d01502f5090cadec8687ef7d8acb', 'from': '0x326534ff0ee15f3c7171313650300eae2264cc63', 'to': '0x6309d34ef9f37401bcdcc81924a5ffa740507c7b', 'value': 3.40996055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14532fd7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xf44fadec939acb2dcfbde3d74f5423d3fb3d2c0abc9e14d8981a59084ec70ba6:log:150', 'hash': '0xf44fadec939acb2dcfbde3d74f5423d3fb3d2c0abc9e14d8981a59084ec70ba6', 'from': '0x5b05f1d06714ed21c32a1cf1ae6eb7368ef6ed0d', 'to': '0xed8c235682b1ad09209fd738abcd5b083396f142', 'value': 6.91333993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2934eb69', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x7ab8caa6d5910d36bb3b3eb119d213ee0fd5a5f27becf74992e82597d5101b27:log:151', 'hash': '0x7ab8caa6d5910d36bb3b3eb119d213ee0fd5a5f27becf74992e82597d5101b27', 'from': '0xaa670cd9e5f00c9ecb48507fe96b0c5ffd56db52', 'to': '0x0396ba6296d835e283b24a8593d00ed8fe11e857', 'value': 9.15960677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x36987365', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0xf75eb934981d8f2dbf5d5249a208a1044a2ce5f8c552252c0f7fd1f324d16a08:log:152', 'hash': '0xf75eb934981d8f2dbf5d5249a208a1044a2ce5f8c552252c0f7fd1f324d16a08', 'from': '0x8c801ff4cef3ca2c5ceedce1ee606bf1cf33310a', 'to': '0xcb0758ff16e16414c414abc13184d39f8ec3cffb', 'value': 9.23849578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3710d36a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x97343957e9f1d05820dcb362470bf8b6d85d8c413a156359bed91035365d6e10:log:153', 'hash': '0x97343957e9f1d05820dcb362470bf8b6d85d8c413a156359bed91035365d6e10', 'from': '0x0d5cdfd6ca58f944053987c0547042571a2ec58d', 'to': '0x0fcaa76cc3145368909bf8308a93969d37c4345c', 'value': 14.34547394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x558174c2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x8f088d15fbd76c62a24668e5aa6032fada49b4d38ac1ded89d7111bcd789b247:log:154', 'hash': '0x8f088d15fbd76c62a24668e5aa6032fada49b4d38ac1ded89d7111bcd789b247', 'from': '0xf5b995767b0135caed151fc907b21166a1248ab3', 'to': '0xc52a848191be31f970e1626b10265e1bd7186260', 'value': 7.28161776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b66ddf0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bae', 'uniqueId': '0x541aed07edbd64fbbf546ffa8d637dd1e5cdecd929b263b4c90a27d9b8126f05:log:155', 'hash': '0x541aed07edbd64fbbf546ffa8d637dd1e5cdecd929b263b4c90a27d9b8126f05', 'from': '0x4712b2a45dc7bf3019b181c15de678ec032a5bdd', 'to': '0x942a8ca7195f82a484719a54fea0e6fd356c8451', 'value': 17.55549488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x68a38f30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:36:03.000Z'}}, {'blockNum': '0x687bb5', 'uniqueId': '0x0e93a3d07d10ef7c47d05fb8ec5d365258ddd24219add521f1bf7b52856eb33b:log:115', 'hash': '0x0e93a3d07d10ef7c47d05fb8ec5d365258ddd24219add521f1bf7b52856eb33b', 'from': '0xf7744e0f70265158f2ec46b4931d703293db2467', 'to': '0xf233c4b88610acb7a1f82652712d7838837e1db5', 'value': 18.15778516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6c3a94d4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:37:52.000Z'}}, {'blockNum': '0x687bb5', 'uniqueId': '0x90034e88215abb5913c509c5392548c8d47c54add88ec2ab08ee5b6ca9937397:log:116', 'hash': '0x90034e88215abb5913c509c5392548c8d47c54add88ec2ab08ee5b6ca9937397', 'from': '0xef7ea1d961c7d12ff45818aa17da2587ec82d32a', 'to': '0xe57f182af9d8b13d09f8defa33caab5cfffad47a', 'value': 15.91400465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5edad811', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:37:52.000Z'}}, {'blockNum': '0x687bb5', 'uniqueId': '0x48e719964415a4700bf1e4f48485b61bb8a89cae226ed806df66818f19b8d5f0:log:117', 'hash': '0x48e719964415a4700bf1e4f48485b61bb8a89cae226ed806df66818f19b8d5f0', 'from': '0x86d4bd968b069bd1af5a01924e56f7d497910317', 'to': '0x4a1ad00e9e04a883f418cb10929a833d75928a30', 'value': 6.97147092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x298d9ed4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:37:52.000Z'}}, {'blockNum': '0x687bb5', 'uniqueId': '0x435f50ac378813f70dbe8f1bfe95d507c95d5c38a25e49811c2c58b36dcb774f:log:118', 'hash': '0x435f50ac378813f70dbe8f1bfe95d507c95d5c38a25e49811c2c58b36dcb774f', 'from': '0x8904a1c1c267aaca212a1234d5ab652b8175346c', 'to': '0xff2909d8520354dd0f9ed16a5d5ab8a5b2ba6400', 'value': 5.13327407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e98c12f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:37:52.000Z'}}, {'blockNum': '0x687bb5', 'uniqueId': '0x96784571db588189160cd1aac9612f7eba1a508905ba650b648591e4f13d4558:log:119', 'hash': '0x96784571db588189160cd1aac9612f7eba1a508905ba650b648591e4f13d4558', 'from': '0xb39421e3a4ddac4158bcd883de620150d17edc9a', 'to': '0xd6fb065ba8f0cff2f02d845824d05d25c17e002d', 'value': 10.66822914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f966d02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:37:52.000Z'}}, {'blockNum': '0x687bb5', 'uniqueId': '0xd19cba9fc1e01ef2b468faa8ccfa1cff472f319aadf3ddc20f2210840a923092:log:120', 'hash': '0xd19cba9fc1e01ef2b468faa8ccfa1cff472f319aadf3ddc20f2210840a923092', 'from': '0x97a532b2010cb06cd0ac8d47b8dc18a933835011', 'to': '0x0dcdd9668c2d2878cf276aeb06810d4789048197', 'value': 5.29452262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f8ecce6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:37:52.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x679318f737ec2dc35ba7a0207192fa86305507653c3fa42e815de61a542ce838:log:172', 'hash': '0x679318f737ec2dc35ba7a0207192fa86305507653c3fa42e815de61a542ce838', 'from': '0xc66da5a6a7a4dc31488fd4b398a8bc699339e2a7', 'to': '0xd361575b0524308f31452fb067fdae7fcc3cf18d', 'value': 12.2093593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x48c600fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xd0edec781a0535f11be5eeb5054bb0b32392b4018874c4a3426866c5fe36895d:log:173', 'hash': '0xd0edec781a0535f11be5eeb5054bb0b32392b4018874c4a3426866c5fe36895d', 'from': '0x2496c40741ed7c2d5d0e4c40933ffa6f3f5f124d', 'to': '0x41ab4f2e381f043a725e91862e13b1a2f48085bc', 'value': 6.0063812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23cd02a8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xdb67427639c906c9f77c3d5263c2a7f62d53e04c308264534acb4c7480587bac:log:174', 'hash': '0xdb67427639c906c9f77c3d5263c2a7f62d53e04c308264534acb4c7480587bac', 'from': '0xfd4cd0e64cf5285b17317e5249c0ee9ebfbbae44', 'to': '0x79ad555410229cd77949fe8d55c60536b83fd514', 'value': 14.27780387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x551a3323', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xccbfb880336d1fbd0ffeb775e0db4f1c81eb6848a0f2b3dbfe084bb2103cffd8:log:175', 'hash': '0xccbfb880336d1fbd0ffeb775e0db4f1c81eb6848a0f2b3dbfe084bb2103cffd8', 'from': '0xc6d529c8af6ac4861360373d2d5e96627b55b450', 'to': '0xa88d2401516f7a193a570bc458e4902ef884822c', 'value': 6.42369586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2649c832', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x477238f3ff30abc5da98bad547a35583573253bd522339f2fb6501861de2db87:log:176', 'hash': '0x477238f3ff30abc5da98bad547a35583573253bd522339f2fb6501861de2db87', 'from': '0xe69d9b961abcf00e371a1678eeaeabc18f66e7e7', 'to': '0xb2742fb5082f95bd64c9fa4c9e5a813596651b18', 'value': 5.00831741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dda15fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x5899b387d91fcafa525af9152df960f87aac91f4f6acc0d0c0b8f2e8e0a6f854:log:177', 'hash': '0x5899b387d91fcafa525af9152df960f87aac91f4f6acc0d0c0b8f2e8e0a6f854', 'from': '0xf24c2f09cf5a5ae356439fbc172533939c311926', 'to': '0x35669a43d7362210a5132827f70ec4f3b77fa494', 'value': 5.69602016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21f36fe0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xc5e0cda0b90ca7ddeb45640c1c08899494d1abf6ffd61f48a90f81b931db2ba5:log:178', 'hash': '0xc5e0cda0b90ca7ddeb45640c1c08899494d1abf6ffd61f48a90f81b931db2ba5', 'from': '0x34ab3c8f52b1e86cd6671886561176be9cb5a668', 'to': '0x99c07c888eb6990d01deee5b53bf0f954b120b2b', 'value': 6.21549231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x250c16af', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x1f2cc38f222e40f31cc8d447e0f1b17008ace31bda83bd08ec83d224692b9ccf:log:179', 'hash': '0x1f2cc38f222e40f31cc8d447e0f1b17008ace31bda83bd08ec83d224692b9ccf', 'from': '0x068250649748b76d0bc1f6ce5f63cb9bedfc87dc', 'to': '0xfcd02b05453e24470a110516c38729f203ca86ee', 'value': 10.79203205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x40535585', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x1ed675ec326548c860089016d1df5a2537e1fea35c2499682bf34843a7cfd065:log:180', 'hash': '0x1ed675ec326548c860089016d1df5a2537e1fea35c2499682bf34843a7cfd065', 'from': '0xd9be034df9097bc18f70ad038bb2f5dbd0d8a9ff', 'to': '0xf603b0b78ee583cb4bfc8aebe1727e8df59cc03e', 'value': 12.66724567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4b80aed7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x25ddc9aba4febba329f27a087dd08131314b39f8b9274bc11f120e42fec6cc90:log:181', 'hash': '0x25ddc9aba4febba329f27a087dd08131314b39f8b9274bc11f120e42fec6cc90', 'from': '0x981765a05d7d7984ac5b735cf9adb12b41003f8a', 'to': '0xfcc99521b1bbe52aa6fc8e178e0ecbb1c90bcbe2', 'value': 22.32205598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x850cc11e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x43dee276c9be982864da2bbf9d7953cd65addc051a52f705719604c2321aa0ce:log:182', 'hash': '0x43dee276c9be982864da2bbf9d7953cd65addc051a52f705719604c2321aa0ce', 'from': '0xa0717486b923b33161846d92da01249cd98445ab', 'to': '0xd2701670a8984976dd7333a227d2807562ea032c', 'value': 12.78658523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c36c7db', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x976127b85d509b34e8c16266a3bf6d048a5caf14d0602c97d50f9357f8756301:log:183', 'hash': '0x976127b85d509b34e8c16266a3bf6d048a5caf14d0602c97d50f9357f8756301', 'from': '0xabe02478cda89bdff9e45421c5649dededd8239d', 'to': '0x41fa016ed06083bbdf8f0a1f91da60259d2ac948', 'value': 15.36242426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5b9132fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x3362081c4e50030f90d2f45cb0593cc0dcfbe0a5df5d8c987737388023a1984b:log:184', 'hash': '0x3362081c4e50030f90d2f45cb0593cc0dcfbe0a5df5d8c987737388023a1984b', 'from': '0xcc44a0f9badaa09ce4fa87f76146df4e6ed9ffb8', 'to': '0xff4b80ca24da9e8ff634acb8235f4221b6ce7d3b', 'value': 5.55457989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x211b9dc5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x91901791f561fdc8c601d048494e5e3f94dbc9b7e27481e29b54ccdfaff3cc3e:log:185', 'hash': '0x91901791f561fdc8c601d048494e5e3f94dbc9b7e27481e29b54ccdfaff3cc3e', 'from': '0xba0a3f7b48c52d84b8ce52455261d6d4effc125c', 'to': '0xd348e2e340866651426ca7def514abf01b656a2b', 'value': 17.66734041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x694e38d9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xa41cb357d174070343765b456c001127eafc87984ca49fba88df3fa568e12ab2:log:186', 'hash': '0xa41cb357d174070343765b456c001127eafc87984ca49fba88df3fa568e12ab2', 'from': '0x6ee59583eb1cd05dacd22edfb8ef36c0b53b9391', 'to': '0xdbf295c02e482d6920130e5ab5603c9e56a2c5d7', 'value': 18.67413915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6f4e799b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x39f1850092bbc23fd7c07901217022edabda65baaaa8af8d749ecc46254199c8:log:187', 'hash': '0x39f1850092bbc23fd7c07901217022edabda65baaaa8af8d749ecc46254199c8', 'from': '0x3a9ab395e607419cf9bf12474559963a7453a130', 'to': '0x8397cc024215a563672bc8e876115cc1603f7439', 'value': 4.53716051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b0b2853', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xeef7813c062ff446b50252bc79f1229372de63c1d5d858b3c4c826626b844f03:log:188', 'hash': '0xeef7813c062ff446b50252bc79f1229372de63c1d5d858b3c4c826626b844f03', 'from': '0xcc054b0ae143855e455e57f4cd7f72410311de2b', 'to': '0x3f643ad7c7b4eff12b94004142c950815c127aee', 'value': 5.63983601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x219db4f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x0610623996f80a1dcacd6602395907959cf438866d9431c1ac231b59d4f73a73:log:189', 'hash': '0x0610623996f80a1dcacd6602395907959cf438866d9431c1ac231b59d4f73a73', 'from': '0xbb77af86985954792ed2b28182bf34f30721dd9b', 'to': '0xb290f3dbd9ec8f32a7a9eb0c9d80f92105c66909', 'value': 9.96378505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b638789', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xb3ea27393c08e2a978cbf8880c9a2d9607eaca521d271982129b2bdcd0fba255:log:190', 'hash': '0xb3ea27393c08e2a978cbf8880c9a2d9607eaca521d271982129b2bdcd0fba255', 'from': '0x82b1eeec9476c6dc2c232753bf8e973730c333e6', 'to': '0x8aa2e82b90e80b6fd2c3196d2bf8bc5430853b21', 'value': 4.21594451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x19210553', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xa7c70c8d60c3aae7694d7826008a7698d09e0308b276e7fe1cf8a4e5c43ef7aa:log:191', 'hash': '0xa7c70c8d60c3aae7694d7826008a7698d09e0308b276e7fe1cf8a4e5c43ef7aa', 'from': '0xaacf4de5f21890fa6656d316cd00d64064cbe77e', 'to': '0x9e987a098a38cc16db9f8947671468697b273dc4', 'value': 15.72734635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5dbe06ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xc93eb41cd195a9793ef4dcd7905e27dcc9876cc0ed291451f542c7002c4a9227:log:192', 'hash': '0xc93eb41cd195a9793ef4dcd7905e27dcc9876cc0ed291451f542c7002c4a9227', 'from': '0xab1deaa1ed9fac1f00eb8f4fc3a559ae17cb6a8f', 'to': '0x72c5651f960649f9d0dbf0d1ce1cd8f90196764b', 'value': 10.18091112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3caed668', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x944a048b78cd6b68ee3dc7755805fa198d0f50febc01dc25a6c0fed96c04db0b:log:193', 'hash': '0x944a048b78cd6b68ee3dc7755805fa198d0f50febc01dc25a6c0fed96c04db0b', 'from': '0x3cad63cd5b5cf1bf012293ddf955b16082462ae6', 'to': '0x50902bf78a3dc0f24f622f7619067ae793b8cdfd', 'value': 13.97006898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5344a232', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xd65e4ff484994f83cf2db082e4f5f6fdfa2013cf09ad0d8569c695a5f8f2a618:log:194', 'hash': '0xd65e4ff484994f83cf2db082e4f5f6fdfa2013cf09ad0d8569c695a5f8f2a618', 'from': '0x2696ebc59639f73dad5f0ea347c44aceb13beac3', 'to': '0x41169a6b69155061ad3d7b7cc2cc74c6a09d73aa', 'value': 5.47228666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x209e0bfa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xc5ca50604aceb79f9a23cfe25c25d3c14d13716280e896d0adc385ec705dc48c:log:195', 'hash': '0xc5ca50604aceb79f9a23cfe25c25d3c14d13716280e896d0adc385ec705dc48c', 'from': '0xb960947ee3d62229b020bf82119dddd0079175ba', 'to': '0x69ff081d9f3dbbf6913042bc0a30b3957a16e495', 'value': 12.45786076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4a412fdc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x60276e748855f7d614a0da1294ef090a7dcd7eab5e0c73e97224fa4d09d07bec:log:196', 'hash': '0x60276e748855f7d614a0da1294ef090a7dcd7eab5e0c73e97224fa4d09d07bec', 'from': '0x0b1d6c2627458d8da6c2bd7cac98588206b558a6', 'to': '0xf0f6d3e72e3bb2643d473e5e5fcf709a07790129', 'value': 6.20960639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25031b7f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x921b43044015093a1b039a164e10ef00d5d9771653e34c167f16076fcfa82b07:log:197', 'hash': '0x921b43044015093a1b039a164e10ef00d5d9771653e34c167f16076fcfa82b07', 'from': '0x2eeb10e09f4ee91f0d3e6a061daae89b7869b86c', 'to': '0x5a55cf6cd8b48ae6bf4dc83124873d869c746ae7', 'value': 6.10237232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x245f7b30', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x65f2cc450436beac06890e4dcbdeedc42657652c0653e718bf2c2ff09f3e0a86:log:198', 'hash': '0x65f2cc450436beac06890e4dcbdeedc42657652c0653e718bf2c2ff09f3e0a86', 'from': '0xb2e700cb37abc855f62e1c7fba051f89e5b40c49', 'to': '0x5fcea6d37fe5a2dcef36d526cc167ee38a67f6e9', 'value': 28.60772206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xaa83eb6e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0xa5c6fa3c8b836556cce492d4a12d9ee82fa9e3775630cb8622466690278a452b:log:199', 'hash': '0xa5c6fa3c8b836556cce492d4a12d9ee82fa9e3775630cb8622466690278a452b', 'from': '0xe2f0ccd1be50e7a809ce2ff3f416d491bed838ce', 'to': '0x75b508c1ddc379a61720ddca936ccadd8f53e474', 'value': 12.82821711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c764e4f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb6', 'uniqueId': '0x37a4415317de2fe8557c7669554da1fd878fbf5bf4b3c5ab02c1a9db861c051a:log:200', 'hash': '0x37a4415317de2fe8557c7669554da1fd878fbf5bf4b3c5ab02c1a9db861c051a', 'from': '0xc71a4063b0a7c1ca17ff6842f5b7e63f68dbf6af', 'to': '0x3d9387605ed3790bc572f25ab6590b4644f55c15', 'value': 5.30075866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f9850da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:02.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xf07dfeebb185b82cbb3ab45a542954d83204d5596fc94e8e35e92ce0607af7c7:log:61', 'hash': '0xf07dfeebb185b82cbb3ab45a542954d83204d5596fc94e8e35e92ce0607af7c7', 'from': '0xa31c0bd1db99f0dc3a49654d182cb04e054d9e4d', 'to': '0x1fc95353474845771dee84e10d073d1cfd3cb38b', 'value': 3.40709901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144ed20d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xdefc215a4f5525fa039af348bb1ca0fba962651f1ac2ab21a2b90e49598a4c0f:log:62', 'hash': '0xdefc215a4f5525fa039af348bb1ca0fba962651f1ac2ab21a2b90e49598a4c0f', 'from': '0x9f8c0d7c96a15b636cc1e55d81d1c1340317dbb6', 'to': '0xc3c94de22562e355acd195020e489b2834b9ffd5', 'value': 6.20708394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24ff422a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0x5594ffde4a57738a191dd9b7d4f1df1d0709c408c05fe6371bec4b30b6ad9277:log:63', 'hash': '0x5594ffde4a57738a191dd9b7d4f1df1d0709c408c05fe6371bec4b30b6ad9277', 'from': '0x90683ea69f5003036232adb78e376f0815f3fa00', 'to': '0x720e73ceea36abef7c1d497edaa13e4f4be70256', 'value': 5.08743683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e52d003', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0x36897b9b0cbb8117a506e397b8acc3a52f822850beb21320f7c5c7f3af547b79:log:64', 'hash': '0x36897b9b0cbb8117a506e397b8acc3a52f822850beb21320f7c5c7f3af547b79', 'from': '0x4d96d82b39039f679d6ffec0b4ed39bbc9436bbb', 'to': '0x44208e1606ad6466bd3a2809437628ac4d9e38f1', 'value': 3.40200686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14470cee', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0x74ff6d3f1ffb7fe5191e0e6ddbcf5397a383fb8da1d3099b47baaf9ff6d1247f:log:65', 'hash': '0x74ff6d3f1ffb7fe5191e0e6ddbcf5397a383fb8da1d3099b47baaf9ff6d1247f', 'from': '0xafa85ee80dcd5083a140575d29f5590d186719fa', 'to': '0xe779c4c03157e8e1908362e19bbd375a648f39d7', 'value': 11.79595369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x464f3269', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xe6e8682b916b41548d1cb708e729a14137399426c3775c52d000dc4aacae94c0:log:66', 'hash': '0xe6e8682b916b41548d1cb708e729a14137399426c3775c52d000dc4aacae94c0', 'from': '0xc6c7169d8765ed746422bf3c0aa4cc5c43c8b4dd', 'to': '0xefe06b1f6b7ae38f0d39299582da7335276c7c88', 'value': 13.57029106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x50e29ef2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xf34e3c1bb3f802c09557beb0ca3d1aa4311525287d6c1a70ef48e0c35a0c3cdf:log:67', 'hash': '0xf34e3c1bb3f802c09557beb0ca3d1aa4311525287d6c1a70ef48e0c35a0c3cdf', 'from': '0x254ec25b92432bdf88de7024fc19d7fd574c2c6a', 'to': '0x6f648f574f3a872ce0fe1afa764162b7a682969f', 'value': 5.99252843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x23b7df6b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0x3c2486bca131df9241f13914e5f22d746982231733fdb340c6f20996023a8232:log:68', 'hash': '0x3c2486bca131df9241f13914e5f22d746982231733fdb340c6f20996023a8232', 'from': '0x2b8903ab1abb5313f9b967fad449b7040fec657f', 'to': '0x65f6e06e90ee7089384f0fffd408df77be0483b7', 'value': 7.31805351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2b9e76a7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xb36e99594495505af977dd4f6f0f3dc7a1b7864489a81a92a2f74d64749dd4fe:log:72', 'hash': '0xb36e99594495505af977dd4f6f0f3dc7a1b7864489a81a92a2f74d64749dd4fe', 'from': '0x88f903513bf4ef4ef73e7a54eb4992df91d4d749', 'to': '0x101f61391a2c128bedc87f89fad780c6814bb948', 'value': 12.70614716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4bbc0abc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xbbc7551e0562452bf56237a5e1a150dbf7031e6f803f2b1866b5c2b1bdde91b4:log:73', 'hash': '0xbbc7551e0562452bf56237a5e1a150dbf7031e6f803f2b1866b5c2b1bdde91b4', 'from': '0x8192b04b347084f453a3a419bf5b1fd0490a9a87', 'to': '0x1e0e0e79a060d4891df2896cf0ecc5b55bbfd7dc', 'value': 4.46498586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a9d071a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xcd0bf394c5ead3bd2dbfb2eb23dd8fee6a8c757968d16d80d21545bc8153e93b:log:74', 'hash': '0xcd0bf394c5ead3bd2dbfb2eb23dd8fee6a8c757968d16d80d21545bc8153e93b', 'from': '0x9938bc693b3dbdfae9f528c728f9134b78785b41', 'to': '0xda05a7d32bb444bc3e6843d29a01dfbc96196151', 'value': 6.80437158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x288ea5a6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xd8e691322c7b42b4c9685430f8be343b0bf9de848aaddb5a6306218fbca7be85:log:75', 'hash': '0xd8e691322c7b42b4c9685430f8be343b0bf9de848aaddb5a6306218fbca7be85', 'from': '0x1affb843f3125a934fb4308a36f698ac6fc9385f', 'to': '0x568cbc4f190ac03c3c72db7cb5bcef09ceb1fd4d', 'value': 10.36200717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3dc32b0d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0x74c13c46fbe0f276936bb135acb1bb2fe445d61fe5ac34430ccf5facbac84a5c:log:76', 'hash': '0x74c13c46fbe0f276936bb135acb1bb2fe445d61fe5ac34430ccf5facbac84a5c', 'from': '0xbe532cdf9ed65c9f6c5398a9946f89e0595af053', 'to': '0x1ed24ee46c86de5e49ca3cb91a2a769c83346576', 'value': 11.23614493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42f8ff1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0x2ebffd0f06810f0740fa618ff6d73d4019e613760f8bc5edcec95b94016c735a:log:77', 'hash': '0x2ebffd0f06810f0740fa618ff6d73d4019e613760f8bc5edcec95b94016c735a', 'from': '0xee85c1b48194390c984b0a1e5b1090f282c29a20', 'to': '0x699ed9c230160194ed95a6745c73c2e69e99d087', 'value': 10.42698482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e2650f2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0x6b08450e1f7297fe3398fe8df3e311b3eb776be1f8d4ef39a2c3365e8e2a29bd:log:78', 'hash': '0x6b08450e1f7297fe3398fe8df3e311b3eb776be1f8d4ef39a2c3365e8e2a29bd', 'from': '0x92e4e301a2f9cee13c741fe8d2ecd07b123507bc', 'to': '0x7602d9159a65cfacb98b0a2b68bca2588f3b5a32', 'value': 5.22970691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f2be643', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xc9cb62d0254b8c4d07b40f6ddcf8c3a65df26f66f5f8af863e2726949f2c7e3b:log:79', 'hash': '0xc9cb62d0254b8c4d07b40f6ddcf8c3a65df26f66f5f8af863e2726949f2c7e3b', 'from': '0x506bdfe07fc0766be0c05bc647db1dfef61ea7a7', 'to': '0xdb66e406b7e9bbf3299a66b28d52bff11a4a7d2f', 'value': 6.21605982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x250cf45e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bb7', 'uniqueId': '0xf97cdbdfc23b88ad7b22af15e55bc19068d3fdcafec08560cb08bbc62054fc82:log:80', 'hash': '0xf97cdbdfc23b88ad7b22af15e55bc19068d3fdcafec08560cb08bbc62054fc82', 'from': '0x9d34047e5a9c10ce27e5bcc4d167b21ca84e7218', 'to': '0x6819c07467be45a9b77afd162622d117f246d27f', 'value': 5.17506293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ed884f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:38:10.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0xd3840d90a5526fd87782992f6cd43aee8b9918b84df469d10ce41a845e10e805:log:199', 'hash': '0xd3840d90a5526fd87782992f6cd43aee8b9918b84df469d10ce41a845e10e805', 'from': '0x1778d6c6ab07afaddb043b629977355b83880950', 'to': '0xe8639b09bbfaf03ed983f50f186906426e8ca358', 'value': 3.40945447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14526a27', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x0f2aa7548281d44d1d91f2caa12dac18acc72b63f9ced649c125253fa5e2cd90:log:200', 'hash': '0x0f2aa7548281d44d1d91f2caa12dac18acc72b63f9ced649c125253fa5e2cd90', 'from': '0xf3bd96a0b9c8e3bffa70ca9401502a65fd85196e', 'to': '0xd1ac1a870fe51b0474b652d88eb7cf985fa11f6e', 'value': 7.37720694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2bf8b976', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0xebaf237d999cf79d21e000337143c88ca601888171d31cd1fac7a28d9dc42103:log:201', 'hash': '0xebaf237d999cf79d21e000337143c88ca601888171d31cd1fac7a28d9dc42103', 'from': '0xd563db325a02d9e113685237207ef8c1518cd831', 'to': '0xd7ccdd93c2d3a8cb01f92090d959c13e07492709', 'value': 11.2298351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42ef5e56', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x7741db4f8a232da868df00c70c465fb013b29c034bafa6f72c4493a9b647e9eb:log:202', 'hash': '0x7741db4f8a232da868df00c70c465fb013b29c034bafa6f72c4493a9b647e9eb', 'from': '0xa482793c75a01ad6cec4e9d18abc1dea45a043b6', 'to': '0x0fee7f8b983d28fa9e19d89760be652cd56d003b', 'value': 7.78289798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e63c286', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x42214b54a1ae6b6ea51ebf41ebeb4b2c47fbc762103545768b3d86a6a445ef54:log:203', 'hash': '0x42214b54a1ae6b6ea51ebf41ebeb4b2c47fbc762103545768b3d86a6a445ef54', 'from': '0x5336f518ffee1566962cc3f4eacbac77b56bc3ed', 'to': '0x07a8aa9d5cd1334c2b1f218a04658b98f95859fe', 'value': 6.22380847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2518c72f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0xcc4ab7dbebcada31f8ea643ef778907e48958da2b255123ffb3eddd200b72595:log:204', 'hash': '0xcc4ab7dbebcada31f8ea643ef778907e48958da2b255123ffb3eddd200b72595', 'from': '0xd5125c03c98a310984a7fbea3b826648e3efaf3d', 'to': '0xe63dc48204e7fc29b646fb661c79c792098fa09e', 'value': 5.01897944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1dea5ad8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0xbff70dfabdd4eb67413be8204fb588680956893434b68e8e94ba670ec6dfc27f:log:205', 'hash': '0xbff70dfabdd4eb67413be8204fb588680956893434b68e8e94ba670ec6dfc27f', 'from': '0x33cabaaa194ee33a02cf7a1fd6638f281025e4da', 'to': '0x3bccb2cae27a0cb5fd6ca9231582226c68a1a5d2', 'value': 22.27213994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x84c096aa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0xee83b05e2414ef031aa972f1148596f4ef6ede4c5cedf358212fcbb650fabc23:log:206', 'hash': '0xee83b05e2414ef031aa972f1148596f4ef6ede4c5cedf358212fcbb650fabc23', 'from': '0xad9fd0e4dcce9d0d6a097ff71e5b0e5fd8d3be07', 'to': '0xbc347b4fb4879152c915f5e5386023b27602131b', 'value': 11.41235823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4405e06f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x494eed734ae2b6b18f4a7cabb98fbe4f0854c97aa8000ae916243d80ec3226da:log:207', 'hash': '0x494eed734ae2b6b18f4a7cabb98fbe4f0854c97aa8000ae916243d80ec3226da', 'from': '0x7182d97af124b209278ad741a04877f1f4b918f1', 'to': '0x21f48c2161fc308c99702fa8a1718b22937252bc', 'value': 19.82836213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x762fadf5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x2a9574751ca20737d5552dede2a1eb777e17fd427d796efbc75b1d89dcf5b941:log:208', 'hash': '0x2a9574751ca20737d5552dede2a1eb777e17fd427d796efbc75b1d89dcf5b941', 'from': '0x7862af79b1740ebb732b1e4cd6f2249cba3185de', 'to': '0xea6e02aa69265a348287020d73bf062a999fb9a0', 'value': 3.40846126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1450e62e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x5e5507cf9b80dd61a4f60713e31af22d01bdecd87715b1642f1ff1a6fd650c98:log:209', 'hash': '0x5e5507cf9b80dd61a4f60713e31af22d01bdecd87715b1642f1ff1a6fd650c98', 'from': '0x61947f26e44e65b6d065b1c8e6239d6ebeb135e3', 'to': '0x26b68a5a663c2f866ecd3fc8409262dab6a0f845', 'value': 3.40131586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff02', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0xeda0057cfbab0728fdc0cd6e688011014f5f70ebd7b705760e88b6d96083579d:log:210', 'hash': '0xeda0057cfbab0728fdc0cd6e688011014f5f70ebd7b705760e88b6d96083579d', 'from': '0x94e87b067595624dd65634edbb73ad5d1e04f3be', 'to': '0xfc4d4960025db309821fc17a3369173dda11f415', 'value': 3.40308417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1448b1c1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x21733e6e5c1ec072b04688f91ddd5e0992f55f3072a1e2d8f932f8df4d93f7e3:log:211', 'hash': '0x21733e6e5c1ec072b04688f91ddd5e0992f55f3072a1e2d8f932f8df4d93f7e3', 'from': '0xdca1ed7a4b593005be095e907ca9e0f7ccf4e456', 'to': '0x2407b88a1ee81d33854ac5beb335f90d1281bb9d', 'value': 6.55131882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x270c84ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0xbd7436dc5ab79c1ba7a1a204b9e8b5257a1a10f84faf5ebaa1e8e0ee8181a665:log:212', 'hash': '0xbd7436dc5ab79c1ba7a1a204b9e8b5257a1a10f84faf5ebaa1e8e0ee8181a665', 'from': '0x6f13a1c53ba889bd60f75bf1d60ef8abf9704ee3', 'to': '0x087ea06382d145793e93de17a3f87de9802cba34', 'value': 4.42557969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a60e611', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0xa6965bcbe90962b0048eae71581474e7860bff48507145ac196083e594ea9854:log:213', 'hash': '0xa6965bcbe90962b0048eae71581474e7860bff48507145ac196083e594ea9854', 'from': '0xfda29686511de7c666b8e21d7e0a8bc3ae2c530f', 'to': '0xc3ab6a35eac1dae5e9794d203ef531fd1cf808be', 'value': 2.10664133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e7ac5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0xd1dafe0c57ce642046aa9af2843e2a2e242602fb7e5e21e39578b8aa1bd57a22:log:214', 'hash': '0xd1dafe0c57ce642046aa9af2843e2a2e242602fb7e5e21e39578b8aa1bd57a22', 'from': '0x5d117ca16e413b0193ca0ca1399fec7c369b503d', 'to': '0xd694e6fda1f9617c4b5006484980e06a807e6c18', 'value': 3.40131603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1445ff13', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x68ebf64b1ae5ac6fe3c9608651121a708f7b9980651e6d6e860f667b79f2bd5c:log:215', 'hash': '0x68ebf64b1ae5ac6fe3c9608651121a708f7b9980651e6d6e860f667b79f2bd5c', 'from': '0xd63b4de416797b643ee0ffb5f7eed3ad9d4247ac', 'to': '0xa4ecfe0e13e42f75726cdbd4fe1abec84108a0ab', 'value': 11.22007638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42e07a56', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x0fe45ab788133ab70eb749a29db4d0f8abacc9df1cb1b8a19721dd8b7a5d2e19:log:216', 'hash': '0x0fe45ab788133ab70eb749a29db4d0f8abacc9df1cb1b8a19721dd8b7a5d2e19', 'from': '0x2b935405de909fe20a308d0a37bb6497784f0c19', 'to': '0x074b559eddf99a2ebf3e19ae629fa6148d19b8c3', 'value': 3.40172286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14469dfe', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc2', 'uniqueId': '0x3d78b9e8dfeee4ba7cc648cbbda5c7699e1df22702c3b566c15c2baeefeffe8f:log:217', 'hash': '0x3d78b9e8dfeee4ba7cc648cbbda5c7699e1df22702c3b566c15c2baeefeffe8f', 'from': '0xf26859c36833e0c1cb13502899429dc251fbc27b', 'to': '0x00ab1e895ae2c400f45bb6c4313bd6f7de7f3480', 'value': 33.159339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xc5a522cc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:41:41.000Z'}}, {'blockNum': '0x687bc9', 'uniqueId': '0xf992b13315ef4dcb6e175ebd8d76bad1d2e590d179bb4510735136fd8575632d:log:0', 'hash': '0xf992b13315ef4dcb6e175ebd8d76bad1d2e590d179bb4510735136fd8575632d', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 7231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa85c1e5f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:43:58.000Z'}}, {'blockNum': '0x687bce', 'uniqueId': '0xffa5264951b8931e731dfb7e07ecc914fdd060580fd4ec623c822a4761ec0014:log:0', 'hash': '0xffa5264951b8931e731dfb7e07ecc914fdd060580fd4ec623c822a4761ec0014', 'from': '0x1e86c265b2a639f135da887cac756e9d1e5a1943', 'to': '0xf4ef53ce92945331dd4135092447fdf9a8ff28f5', 'value': 5.89238189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x231f0fad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:45:17.000Z'}}, {'blockNum': '0x687bce', 'uniqueId': '0xbe6b815f577c228dc6a9ed30bff68a5b396995135e1dd58a93c7dc5972d8ff52:log:1', 'hash': '0xbe6b815f577c228dc6a9ed30bff68a5b396995135e1dd58a93c7dc5972d8ff52', 'from': '0x28c38d0e70342e87782d84712dc012a0301628e3', 'to': '0xd53738b415ffbc288856e2c13dffb8fcbdc054cc', 'value': 3.40935887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x145244cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:45:17.000Z'}}, {'blockNum': '0x687bce', 'uniqueId': '0x475a885561d507d08c96c8d67ae51997c3ba24a3e1a47b17ad2fa70dfdf78744:log:2', 'hash': '0x475a885561d507d08c96c8d67ae51997c3ba24a3e1a47b17ad2fa70dfdf78744', 'from': '0xf321071357716f2d3011c3fb380bd5f722836dd0', 'to': '0xd599adbb1273addcad0c6dc62834a78e98e9669c', 'value': 8.391162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3203e5a8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:45:17.000Z'}}, {'blockNum': '0x687bd7', 'uniqueId': '0xed5c41ac5d810f4b8649beb9105e3048d42b744148057289394de51aa1cce660:log:123', 'hash': '0xed5c41ac5d810f4b8649beb9105e3048d42b744148057289394de51aa1cce660', 'from': '0x92409eb6025a74d67254c0f5205a1e1212864baf', 'to': '0x2ccec91cb2da57dbb75a4ffd2131199d9bab8dd3', 'value': 11.31128003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x436ba4c3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:47:09.000Z'}}, {'blockNum': '0x687bda', 'uniqueId': '0x60e8bb5d4ecde2b536907d45904470ddb9b652d65120bc89d186c26640259a91:log:99', 'hash': '0x60e8bb5d4ecde2b536907d45904470ddb9b652d65120bc89d186c26640259a91', 'from': '0x2f72bfd5a41776806ffc11606d20a8276d7b98b3', 'to': '0x5689f1f7b5feddf0395e711d4c1097009f3eab37', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:47:46.000Z'}}, {'blockNum': '0x687bda', 'uniqueId': '0x1fae5d1b8920cbe9d419b80fe96dbc0aa6e02e6c6e7710a59a56b802cec79712:log:100', 'hash': '0x1fae5d1b8920cbe9d419b80fe96dbc0aa6e02e6c6e7710a59a56b802cec79712', 'from': '0x2fd8f16108866a9ee332bef88c8b6034febb5796', 'to': '0xc73b9cfa85ee357769e89e1722c976db2d66ceae', 'value': 5.43727911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2068a127', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:47:46.000Z'}}, {'blockNum': '0x687bda', 'uniqueId': '0x811974edd5264b398285ae7ccfd4fc44ce82e3ebfaa5974940154ee370c443fc:log:101', 'hash': '0x811974edd5264b398285ae7ccfd4fc44ce82e3ebfaa5974940154ee370c443fc', 'from': '0xd576f7fd02a83bfbe93c6aeae05e9875c7f0db10', 'to': '0xc42eb6e967065f57203ad45ef83eab57330526b4', 'value': 10.20787866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3cd7fc9a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:47:46.000Z'}}, {'blockNum': '0x687be6', 'uniqueId': '0xc326879176aa80a90605bb8e42f1a12866ac5e6d0c102a703208ef0cf540a105:log:129', 'hash': '0xc326879176aa80a90605bb8e42f1a12866ac5e6d0c102a703208ef0cf540a105', 'from': '0x1f4c2f41c9d0c4177729b604f6ef2d7c1a7bf2e2', 'to': '0xaa7fd78ed90a69d202b51b7f064a3cfc1effd9c9', 'value': 5.86830624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22fa5320', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:49:19.000Z'}}, {'blockNum': '0x687be6', 'uniqueId': '0x1b554c727ac0b7e8b9b6bc14c4c5c0a72a04e72d5c103272e169f1c8c276c236:log:130', 'hash': '0x1b554c727ac0b7e8b9b6bc14c4c5c0a72a04e72d5c103272e169f1c8c276c236', 'from': '0x374f24936931c9aa9ebe2b41109ead93226597f7', 'to': '0x59687b37672b8d2158e89c935543bee6230f92aa', 'value': 5.97033084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2396007c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:49:19.000Z'}}, {'blockNum': '0x687bec', 'uniqueId': '0xca9ad347aa48fa4cbbf936bd4adb8a64b180ba0a9592f9eaa0a5ee37b846430d:log:135', 'hash': '0xca9ad347aa48fa4cbbf936bd4adb8a64b180ba0a9592f9eaa0a5ee37b846430d', 'from': '0xc3de61b0826876ea2e36c2bc27ae82f11e3ba7e8', 'to': '0x68567a888227a6532038c7b0df7a803b9eefbf29', 'value': 11.15726898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4280a432', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:03.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0xab05f2bba2aa0b3415cfc0f562985585ee710c40c92dea2b8fb2bcffe277885a:log:77', 'hash': '0xab05f2bba2aa0b3415cfc0f562985585ee710c40c92dea2b8fb2bcffe277885a', 'from': '0x6ae594c1900818735d7c5745df779bd49b346686', 'to': '0x18f1d0621199121673c0da687b168d7d86ecdfa3', 'value': 6.07206949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24313e25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0x36c533c7c4cee8ed635d6ccf84941feea96e547ab72c02a77197bebebde00d50:log:78', 'hash': '0x36c533c7c4cee8ed635d6ccf84941feea96e547ab72c02a77197bebebde00d50', 'from': '0xd09f9a0ce18dfe5e8a61342061e954ab4070657d', 'to': '0x37c6344ed7d57642aca736578d540f4cd4994e89', 'value': 5.08241946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e4b281a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0x982d728adc7b60eb4aef994a460698732daadc51cad4fc8ed50529eba7fd5d8b:log:79', 'hash': '0x982d728adc7b60eb4aef994a460698732daadc51cad4fc8ed50529eba7fd5d8b', 'from': '0xe0f5a9329996de205992cf0a50ddb62a4a949547', 'to': '0xcef6e3c9bfcc8866cdbe945835ff98bccfbd848b', 'value': 18.21564861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6c92dfbd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0xc3783d2dcdaa91018c69fb0c7bc53a6aae1234f089de079aa9cd217274e75d71:log:80', 'hash': '0xc3783d2dcdaa91018c69fb0c7bc53a6aae1234f089de079aa9cd217274e75d71', 'from': '0x4071376c1d1be750307d586e7984f1faa3d9977b', 'to': '0xd5b22df5188e92a249c787000b7c47923c21fe77', 'value': 20.56382726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7a91e906', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0xa7b2fa8d967829a88b2ea3609dfe4672a7b1fad32951a88d7c25199c3d6e9e30:log:81', 'hash': '0xa7b2fa8d967829a88b2ea3609dfe4672a7b1fad32951a88d7c25199c3d6e9e30', 'from': '0xfea92374ad8053e2ac40202b4ec153ff1e3f7e54', 'to': '0xbdfb26532187d88a278b56d7bc6bb83b239c3bf0', 'value': 13.79682114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x523c4742', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0xa45bf452b0ff636cfc320014362ca8b16e6e4b3986b3a4b7969a6307d99218de:log:82', 'hash': '0xa45bf452b0ff636cfc320014362ca8b16e6e4b3986b3a4b7969a6307d99218de', 'from': '0x7f07eef3adcf731afb856e5b170488f98cf8a81c', 'to': '0xfab9ea62848a345344028435c7de4a823e24607a', 'value': 11.27514538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x433481aa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0xd89c980753ed5be63e3c53446e873430670c5e3f89ee01a7d50d66998ef8ed3c:log:83', 'hash': '0xd89c980753ed5be63e3c53446e873430670c5e3f89ee01a7d50d66998ef8ed3c', 'from': '0x0c310119d7906fee28d70d91b60549116e2619b3', 'to': '0x56810bf87bc20498496b0a1514c2776159be453f', 'value': 15.40992942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5bd9afae', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0x8f99c7fada4cfc1f260b175deb5fb00356cba704d0960e9b2796df9e3bb00068:log:84', 'hash': '0x8f99c7fada4cfc1f260b175deb5fb00356cba704d0960e9b2796df9e3bb00068', 'from': '0x4dcbdd7c0bb35fbed5b6f84ed8ef7d7f2ffcfc0f', 'to': '0x19dc1ff8277a8bce427c59f6d11b756bd24ad899', 'value': 10.15525703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c87b147', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0x7c16223836d9aaf561260c2301ae9a98520737acfbb89517c260d3cbc04cab95:log:85', 'hash': '0x7c16223836d9aaf561260c2301ae9a98520737acfbb89517c260d3cbc04cab95', 'from': '0xbd2f57e774121fef9870cc8ec12110ef93d059fe', 'to': '0x7552fe17e2863fa80e6f9ab6e46fedada2a9d027', 'value': 11.39374657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x43e97a41', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0x74b606df10463d85557a657b7df4507f159afbafa6dc1bb1e116727c7569f43e:log:86', 'hash': '0x74b606df10463d85557a657b7df4507f159afbafa6dc1bb1e116727c7569f43e', 'from': '0xdf63aa38692876aac408f0b10aa3655f770910fa', 'to': '0x235a5500845b4074fea349af25cbba5eb66561cc', 'value': 3.40999828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14533e94', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bed', 'uniqueId': '0x98538abc65c425ef704b4c4ff935601af5fc65d7328da41517f699dc9b683937:log:87', 'hash': '0x98538abc65c425ef704b4c4ff935601af5fc65d7328da41517f699dc9b683937', 'from': '0xd0edae4981dc9dec66e37b4c5ccd3a15f9421596', 'to': '0x84207075ad9db537cb91700dc8698a4a6228bfdf', 'value': 11.79231438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4649a4ce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:14.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x05ecd4cf39c0e19afcf052aa044c17bc7b78f07ff12c0b9b5bfd1e7a8bc243a1:log:139', 'hash': '0x05ecd4cf39c0e19afcf052aa044c17bc7b78f07ff12c0b9b5bfd1e7a8bc243a1', 'from': '0xea1dc1d13cd5d484b340c79aaf2179ba27df1dd0', 'to': '0x9af9434161ca1541f780c56c926d724b125355f1', 'value': 18.50834412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6e517dec', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x52710193e5252f1af25faa213095915cd60f28d8eeef7c15a7b4a1c275b53f5b:log:140', 'hash': '0x52710193e5252f1af25faa213095915cd60f28d8eeef7c15a7b4a1c275b53f5b', 'from': '0x6c599f361712c07454be33246b6904c23b68de78', 'to': '0xd0c8edf6fd4848febeade8df383771ec868d501a', 'value': 23.23271694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8a7a500e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x7f12ad13696903ce81ca247816c84d49945d948a45b06083e4fd277dda61d52c:log:141', 'hash': '0x7f12ad13696903ce81ca247816c84d49945d948a45b06083e4fd277dda61d52c', 'from': '0x102260522bb3559f5faa60840dcaa67aa0d4dd82', 'to': '0x4d2c8f91acc53c5ba5036e6282afeda3a387aab2', 'value': 4.40711831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1a44ba97', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0xd6ff22e7118389d663480924bba0c21d850d71f5f1949f3530d599c97c968fa0:log:142', 'hash': '0xd6ff22e7118389d663480924bba0c21d850d71f5f1949f3530d599c97c968fa0', 'from': '0x68f23bf57cc55a975be736ef376b0018ea54f937', 'to': '0xb62d34348844bd083408109720f80ae57b08c41a', 'value': 17.78395948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6a002b2c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x2dfda36dc64ab76d51ea2a71a65ac5a95bc2a36f7e94c0c123aa641538f3c480:log:143', 'hash': '0x2dfda36dc64ab76d51ea2a71a65ac5a95bc2a36f7e94c0c123aa641538f3c480', 'from': '0x0357d35378d6dd19d8a31c031c4a77f85d905733', 'to': '0x8e7277895f101341dda5ef63c2af7172d3ac0ac4', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x95afb14a200e794b6672be73741546f5b214d4003ea9c00badf12cb75e986cdc:log:144', 'hash': '0x95afb14a200e794b6672be73741546f5b214d4003ea9c00badf12cb75e986cdc', 'from': '0x1da8edef44fe49af0427ef8e5381194ff8716bd0', 'to': '0xcb7142f71a9b8176670195ef72337d1f32bae4a6', 'value': 5.82204197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22b3bb25', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x9fc8dbaf34e71370f8a820b182dafe94841de06527b9cbf48fa478310332e633:log:145', 'hash': '0x9fc8dbaf34e71370f8a820b182dafe94841de06527b9cbf48fa478310332e633', 'from': '0xef763a7da1df10d590aadc84f946432f2c60428f', 'to': '0xb45eff82484a50fbc486fadca2873308cae516b2', 'value': 16.57347656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x62c91e48', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x7633447b4b584182c1752ddb1b38663de0bb47a8e5ecb357013ec0bd5cbfab9a:log:146', 'hash': '0x7633447b4b584182c1752ddb1b38663de0bb47a8e5ecb357013ec0bd5cbfab9a', 'from': '0x9cd7c5a9a75803a8ef2f76c7470fccc77610576a', 'to': '0x6883dc9709c8c8098738cd5ccaebee90e688752c', 'value': 10.38437628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3de54cfc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x60e9379b316391e78ca3dafd4af368b3662b86583372fff31921960dad299874:log:147', 'hash': '0x60e9379b316391e78ca3dafd4af368b3662b86583372fff31921960dad299874', 'from': '0xca1f879e2586a3004bdb241af16ea1dd27af7895', 'to': '0x844271010cf2f4de35baf0c6d8aeae9f22f62c1c', 'value': 12.79508017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c43be31', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0xfd0731a1c36d7a1a477e3189230da35ef4cdd3c1978adaf94805c1d315c124fb:log:148', 'hash': '0xfd0731a1c36d7a1a477e3189230da35ef4cdd3c1978adaf94805c1d315c124fb', 'from': '0x5c7ce8ea086193003e44aef1700caec48abb5b5b', 'to': '0x6274425468265dcb6da9820e9808fd603a20c30e', 'value': 12.93213904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d14e0d0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x7b60229b2faa3e6da70e07148863a20a04bb89858bd71af0090448677ce2f1b7:log:149', 'hash': '0x7b60229b2faa3e6da70e07148863a20a04bb89858bd71af0090448677ce2f1b7', 'from': '0x2043caa69e9e2a9710d8d195a60816f4c2f35607', 'to': '0xa012964c8e324f710869f93c37784c6eb7de3be5', 'value': 12.97607075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d57e9a3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x9ea83217b9846bc0465a8b4cbb7c94e452e4a07e6632a1d65a6335914e649891:log:150', 'hash': '0x9ea83217b9846bc0465a8b4cbb7c94e452e4a07e6632a1d65a6335914e649891', 'from': '0xc7c9f91f9a935befb372ac2a7280677b233a2ac9', 'to': '0x477dd468702046dde3ae04f949a13ae76f5ef2ce', 'value': 14.61640968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x571edf08', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0xed6af95b971c15857126891ed3fda2415a61ef1ec92ddb7b128580f30d1eacf7:log:151', 'hash': '0xed6af95b971c15857126891ed3fda2415a61ef1ec92ddb7b128580f30d1eacf7', 'from': '0x247e3618abb189346a90beb6af974a992e465ab8', 'to': '0x4acfcb61c5dbd8f9859bfed386e95facef42907f', 'value': 23.70171502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x8d45f26e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x5d149deec30e51f711187316ba9e30ba82b34ea547e5c5677faa022eea14bbef:log:152', 'hash': '0x5d149deec30e51f711187316ba9e30ba82b34ea547e5c5677faa022eea14bbef', 'from': '0x21219aff487177f19fe2f626902bfc33a1b16d4a', 'to': '0xbf88e340228cfdea16e830421ae182fa7cbea488', 'value': 5.85771865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22ea2b59', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x9f620387c9215f24ad7f5278c75ab65707fbdffbe73dac842691f114b623feea:log:153', 'hash': '0x9f620387c9215f24ad7f5278c75ab65707fbdffbe73dac842691f114b623feea', 'from': '0x757eaaf833ab780c7e5eec3099a8582ed7fda7aa', 'to': '0xb91f92ebd3499e0da8784af20d2215264c38787e', 'value': 5.91644433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2343c711', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0xe5f3ad80eb4fc5639d5075ea54345b0537ae76f5b3eeedc1aaa45bf197955610:log:154', 'hash': '0xe5f3ad80eb4fc5639d5075ea54345b0537ae76f5b3eeedc1aaa45bf197955610', 'from': '0x39fb45dd4b55befd0d9c818ccb15a05e9f0c4766', 'to': '0x84b0f488461e05472de3a3685dfb917fd1146bb9', 'value': 7.46708727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2c81def7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0xe7f739fe46f11e7c36a4be11376e1397c2b08aba0afe6c13926083a9bf9dfa1d:log:155', 'hash': '0xe7f739fe46f11e7c36a4be11376e1397c2b08aba0afe6c13926083a9bf9dfa1d', 'from': '0x7f81eb199604ad1227d8f97c6c567bad1d6f3180', 'to': '0xe416dc6bf4f567d5005eb47bbc3feb40db43206e', 'value': 5.39265556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20248a14', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bee', 'uniqueId': '0x99f6efb7d4ea78e22ffeb4ac121032c4f5cd0a79da22d55974476cec74f59dea:log:156', 'hash': '0x99f6efb7d4ea78e22ffeb4ac121032c4f5cd0a79da22d55974476cec74f59dea', 'from': '0x84ce7d25fc7a878003117877d9170df5458def07', 'to': '0x2a50670c32b7921d046622a9b14f17d791f6ce2e', 'value': 5.35777196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1fef4fac', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:23.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x3d02b5e1f1f8e15483c03bdb30a6466665ec2508692b5cc9ba08351d887bc2f9:log:41', 'hash': '0x3d02b5e1f1f8e15483c03bdb30a6466665ec2508692b5cc9ba08351d887bc2f9', 'from': '0xa3f0435f58931826019d3d5528415abb800d4e50', 'to': '0xde080343d20c3a10307aa1b286261de87f78c773', 'value': 3.42983138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x147181e2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x6eafcdf1296410b5056e7ecba29460bdf8742ad49eba5ad4c44cb9a263bdee95:log:42', 'hash': '0x6eafcdf1296410b5056e7ecba29460bdf8742ad49eba5ad4c44cb9a263bdee95', 'from': '0xe25e9c766996b505b438152502503b01434e4171', 'to': '0xd5030c7ae189bc6215fa3e77caa16aca7484c91a', 'value': 4.63384284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b9eaedc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x7383a49a7757e061a1288955ac04526956b9219e4774e0893a6da876ca4b435c:log:43', 'hash': '0x7383a49a7757e061a1288955ac04526956b9219e4774e0893a6da876ca4b435c', 'from': '0x7a6dc6a9b5965b97da826ca436f0bbdc0f1b21f3', 'to': '0xa10822bf31b9a84eaa140882e366c7da6f90a155', 'value': 10.96747946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x415f0baa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x05934ef83b442d97e74bf463c2bd004b26d4cf1a51ff4c307daf68c2ccaa93ee:log:44', 'hash': '0x05934ef83b442d97e74bf463c2bd004b26d4cf1a51ff4c307daf68c2ccaa93ee', 'from': '0x8d81bc4095ad9609188efef308fff402fe7d506d', 'to': '0x136d46dccdbe45a25ed61b12faa07d67f817fa06', 'value': 5.20684589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f09042d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xb1438f39834e8c3005f59414e1e7f2abea2461b0f1d0068308e8ccd15ad8cb9a:log:45', 'hash': '0xb1438f39834e8c3005f59414e1e7f2abea2461b0f1d0068308e8ccd15ad8cb9a', 'from': '0xc5ce4e0ad76c6d55e7798f603f15e69c8a29a15d', 'to': '0x1be4a8359e871d3ded17067d336d6d44027261e7', 'value': 5.16471446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1ec8ba96', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x67536e455c9473b0abc21bba22b962fe4847545a1a51c02449c3d6a4735fc80a:log:46', 'hash': '0x67536e455c9473b0abc21bba22b962fe4847545a1a51c02449c3d6a4735fc80a', 'from': '0xd0d9e2cc8b7f92977e195b35a250baf22622d065', 'to': '0x6ba05e12d21e2eb11a4e03882550cb83eb3f31a3', 'value': 3.41417798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14599f46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x8760a495c7081a1af41cad5bf9c2679bb56808d19974f9a04030fcc29c3196b6:log:47', 'hash': '0x8760a495c7081a1af41cad5bf9c2679bb56808d19974f9a04030fcc29c3196b6', 'from': '0xf328204c28bfabe395dc72660a8ca7f648abe0fb', 'to': '0x0fe82495055508a424448658a56b1c5320bb168a', 'value': 10.09865586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3c315372', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xd1fa28ed09b63716c82a22b756c52a76c72c0c8d7d7b334242a3715fed6cdd71:log:48', 'hash': '0xd1fa28ed09b63716c82a22b756c52a76c72c0c8d7d7b334242a3715fed6cdd71', 'from': '0xdac5407afbd29fa0fb09813cef3d51398d3ce8ee', 'to': '0xa42329ea1b05aa68dde6434d3c3f5c692271f0e3', 'value': 6.34639078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25d3d2e6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x44ee47cb73aa4dd10ca14cb4e493a1f4e50076dcf5eff5f99f26e197546696e3:log:49', 'hash': '0x44ee47cb73aa4dd10ca14cb4e493a1f4e50076dcf5eff5f99f26e197546696e3', 'from': '0x49a2453723a0bce9e49b72e56ffe46f4a21636cb', 'to': '0x832b5e97461ea05693133e2abb4b02e0c3bcf18e', 'value': 6.17731223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24d1d497', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xa2396efb9e78587e6ff0bf97513a5a6a011c3ec9d1e92ec943350f2e01797912:log:50', 'hash': '0xa2396efb9e78587e6ff0bf97513a5a6a011c3ec9d1e92ec943350f2e01797912', 'from': '0x34112a026050606b2911203b546b3c09fa6a9ff0', 'to': '0x8b640bec6d97f52cc6882ac80250800538950520', 'value': 6.08972627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x244c2f53', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xc188732cc5f1cccb2b25749cd8d7622d75df82d2c9048ac2fdf9b899e162f006:log:51', 'hash': '0xc188732cc5f1cccb2b25749cd8d7622d75df82d2c9048ac2fdf9b899e162f006', 'from': '0xf3ddf61d46cf21838ac9f1e0517b4b0a8dd4aa96', 'to': '0xc8a8b7c22c5518e31ceba0e6dd85d7e61ba478fc', 'value': 7.06871075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a21ff23', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xe08958bca54658a4f6936d4a158c3095013348b5a596605b83728e6e08cdefb8:log:52', 'hash': '0xe08958bca54658a4f6936d4a158c3095013348b5a596605b83728e6e08cdefb8', 'from': '0xf17a923297abd1d56344c43746359baf480d3282', 'to': '0x7da9fcfab0edaf995404c9c7f4ae7fc9ce3574b0', 'value': 10.54143065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ed4f259', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x66c11bfe315d16cb920db481ca98bc0ab1feb1eaf9cde5fa21dfb994c478fd4c:log:53', 'hash': '0x66c11bfe315d16cb920db481ca98bc0ab1feb1eaf9cde5fa21dfb994c478fd4c', 'from': '0x6be23e542fcce1025cd3dd666252ffdb1486be30', 'to': '0xe5e67826acf49c35ed22a3086d1426591af8c711', 'value': 30.12023548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb387d4fc', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xd151aa84f4a04c4d9162be768f66e0971a741c7407a2cb51ffef2f8491fb8248:log:54', 'hash': '0xd151aa84f4a04c4d9162be768f66e0971a741c7407a2cb51ffef2f8491fb8248', 'from': '0xf0d9a0777342a5faf28efe485ffe9925da6f12a0', 'to': '0x6ac326e5f5061bafd0a9197be8df6409f54d4278', 'value': 16.46060898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x621ce562', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xd2cba383ca985758953c32a83772eb7b610c1597cdd131fe607e46e6b996f16a:log:55', 'hash': '0xd2cba383ca985758953c32a83772eb7b610c1597cdd131fe607e46e6b996f16a', 'from': '0x43e9f3ec3aedd5f72deaa4574a56a9a9084f213a', 'to': '0x307b0d427d0142a727d8f95497dcf348413e4296', 'value': 12.33764097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4989bf01', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xd1ba0f3dc437ad52c637260ea566aa7bdf70e4e477ddf1219956d7275b112889:log:64', 'hash': '0xd1ba0f3dc437ad52c637260ea566aa7bdf70e4e477ddf1219956d7275b112889', 'from': '0x60c683a230e9e4a04a870d0bafd4ce36d6631c0a', 'to': '0xb9198465403e30757d04b6464df97dc02f0b27c9', 'value': 8.589564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3332a270', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x0e38d9059242b9c04c51b970827fdbe0fade52864da4ebfcbcf0959ca2cb3e97:log:65', 'hash': '0x0e38d9059242b9c04c51b970827fdbe0fade52864da4ebfcbcf0959ca2cb3e97', 'from': '0xfb55dfdb9bd7dbc0723cd7e99ccadd848d2cd83e', 'to': '0x4f6478a35a3024279977fe4cdbceebd792be54c6', 'value': 7.5233571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2cd7bb5e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x0a620b6182c35683fa8df39ba4a337be250ee10f7a530deb7cef5f6e922d2ac8:log:66', 'hash': '0x0a620b6182c35683fa8df39ba4a337be250ee10f7a530deb7cef5f6e922d2ac8', 'from': '0x773090595d2ef02d739e0d3bc669380a98fc6d8f', 'to': '0x59c424514be5f114bb0613e0f75e569589d9f1f7', 'value': 9.81063575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3a79d797', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xa6c2d233c90b3c19e4defdff7c08aefd4e742062b07a59961ec3e63da9248263:log:67', 'hash': '0xa6c2d233c90b3c19e4defdff7c08aefd4e742062b07a59961ec3e63da9248263', 'from': '0xd53efb90e14cf212b26a00f024d6a7c9b6c5e76d', 'to': '0x754508d20d192e31ae5337d01651e9c04071a2a4', 'value': 16.47617166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6234a48e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0xf7b93d1877e4f403964880b01868e00a37168e4ae407c50dc9eac58f1daa959e:log:68', 'hash': '0xf7b93d1877e4f403964880b01868e00a37168e4ae407c50dc9eac58f1daa959e', 'from': '0xee7405d01902e004ece0f1431bcb90a57dec1c64', 'to': '0x719e381ade6c8718a72a43c6d2cf460e63563648', 'value': 10.34601905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3daac5b1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x30abd7527db893e833d0e5ef9899c6cb67894b87e05c6f0feb3eb06456b74f2d:log:69', 'hash': '0x30abd7527db893e833d0e5ef9899c6cb67894b87e05c6f0feb3eb06456b74f2d', 'from': '0x72eb5bed45af7bc368f52138d4dfd91f5ce25db5', 'to': '0x1167547b9c4090c7addba9a589dc3db61b32489c', 'value': 5.81786298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22ad5aba', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x9d124a0f0e257ff737c27f27cef82f48b28880cd82656e91b70bb0334d7031b8:log:70', 'hash': '0x9d124a0f0e257ff737c27f27cef82f48b28880cd82656e91b70bb0334d7031b8', 'from': '0xafa06034a95c033b46132b4906363ab331c75c44', 'to': '0xb8ffd5f7f1961d733b9f0b21e60d7b7da996543d', 'value': 21.88979599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x82792d8f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x20e43fe26ece82ffd50cf3709fbc4f966656b26ab5f2f0bc42027e93a004eb19:log:71', 'hash': '0x20e43fe26ece82ffd50cf3709fbc4f966656b26ab5f2f0bc42027e93a004eb19', 'from': '0x2a03ea43b6037612295b62dd2981b1346109feba', 'to': '0xe8fcf0eef82ad35b516de25d54f2b1b73aff629d', 'value': 18.34605902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6d59dd4e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x000985b4350390d646abfe1375148629fb82689e24a68b5244cca0f1d28a3f27:log:72', 'hash': '0x000985b4350390d646abfe1375148629fb82689e24a68b5244cca0f1d28a3f27', 'from': '0x7a151ca0676f9e693367299c6d15928205ea4b54', 'to': '0xc112edffcf0d5315888a50c620da477e8d020d1a', 'value': 30.31285011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb4adbd13', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x7ef9ce38197861d74a926dd4e2d79d6a469988e45db23f6a5a4acf69d7305456:log:73', 'hash': '0x7ef9ce38197861d74a926dd4e2d79d6a469988e45db23f6a5a4acf69d7305456', 'from': '0x7a62c8f967bbd615f9addffb30a6f6cf806d12a3', 'to': '0xed997ce63f038b7d3c3d90e8a05e93cbafd8fe26', 'value': 12.99040613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4d6dc965', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bef', 'uniqueId': '0x47ab0d1e95b3177b1671d31f976f22d7d908403e69e6c1235430be5f1843d449:log:74', 'hash': '0x47ab0d1e95b3177b1671d31f976f22d7d908403e69e6c1235430be5f1843d449', 'from': '0x7588641b84f00e1af1eaf382144d7fd799344b87', 'to': '0xca070bd026b91568480023cde3489dc623cda5d9', 'value': 5.93264373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x235c7ef5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:50:32.000Z'}}, {'blockNum': '0x687bf2', 'uniqueId': '0x471f34b5dedd56f3ac5f1de662cc060ff4c228a806f615b4587115e9a48f670e:log:250', 'hash': '0x471f34b5dedd56f3ac5f1de662cc060ff4c228a806f615b4587115e9a48f670e', 'from': '0x1ced52707895fd2eafd0d84835c337129e4f604a', 'to': '0x9c63350a43b53a6e3ce6d650f10f011c5cb01c08', 'value': 7.08776492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2a3f122c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:51:45.000Z'}}, {'blockNum': '0x687bf4', 'uniqueId': '0x61a8a848e794f33da091bb6cf0d06875142986fd8fd67fdda2baded526c06fb9:log:112', 'hash': '0x61a8a848e794f33da091bb6cf0d06875142986fd8fd67fdda2baded526c06fb9', 'from': '0x9fb87328615d2fb33c5d98ddacff6f6b04102180', 'to': '0xd10b6346cf52513ac152ef4a0d24e82b7e688393', 'value': 13.49131101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x506a1b5d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:28.000Z'}}, {'blockNum': '0x687bf5', 'uniqueId': '0xa7a2eb2d8724cf377ab654e5daa4e8ad6517202f945f1060bd9a73f2a95098b4:log:169', 'hash': '0xa7a2eb2d8724cf377ab654e5daa4e8ad6517202f945f1060bd9a73f2a95098b4', 'from': '0xe85b0aec405e29b4bb216ccd7333daa90f94b154', 'to': '0xdc04894108dfbe66288ce31786fc2e1b40e19ab1', 'value': 5.04332102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e0f7f46', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:43.000Z'}}, {'blockNum': '0x687bf5', 'uniqueId': '0xdba95320772fd3a334238585f03812a3efac067c9fe74a86bbca47cb26ad6d3a:log:170', 'hash': '0xdba95320772fd3a334238585f03812a3efac067c9fe74a86bbca47cb26ad6d3a', 'from': '0x688977d5b6082ece9f624b76f91fbce2eb1c767b', 'to': '0x3d8f94e2c2199f9a8cd898212ee4194d11b656b9', 'value': 2.10640486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0c8e1e66', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:43.000Z'}}, {'blockNum': '0x687bf5', 'uniqueId': '0xa0abda15cb19c6be9c16eea282b80813c9857ce3dc10ff7a1bf1f4d2b6b760ff:log:171', 'hash': '0xa0abda15cb19c6be9c16eea282b80813c9857ce3dc10ff7a1bf1f4d2b6b760ff', 'from': '0xcae6a20b454f1cf5304bfdd348f838f6ff441acf', 'to': '0x39e15de90cbd90ac4d7090f39f87938841a760f7', 'value': 6.62691195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x277fdd7b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:43.000Z'}}, {'blockNum': '0x687bf5', 'uniqueId': '0x836e0974e63e4780baef6a3669e31a051ca4d4537b7a266ec81712790d6a0d46:log:172', 'hash': '0x836e0974e63e4780baef6a3669e31a051ca4d4537b7a266ec81712790d6a0d46', 'from': '0x48e855a82a0091da49b84d2e29578c7159e81454', 'to': '0x862bd7f608defa301dd28a2b744bc1d276d0a906', 'value': 10.03801885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3bd4cd1d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:43.000Z'}}, {'blockNum': '0x687bf5', 'uniqueId': '0xcb5bb2c347dc755b85c7cd4ddf70ea200eb9f9cfea6d86aadeff8ebd58046686:log:173', 'hash': '0xcb5bb2c347dc755b85c7cd4ddf70ea200eb9f9cfea6d86aadeff8ebd58046686', 'from': '0x5a304036121a91e2f58647366ce2ce302395f7bc', 'to': '0x2892a3aaa9f3e6e2e83815d2e4fa35d54c91b196', 'value': 7.8589356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ed7c8b8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:43.000Z'}}, {'blockNum': '0x687bf6', 'uniqueId': '0x96e5350ad5d9bc34cb489fb32eef6c5a154c102f5fa570d5f6d069cb18325a49:log:116', 'hash': '0x96e5350ad5d9bc34cb489fb32eef6c5a154c102f5fa570d5f6d069cb18325a49', 'from': '0x07ff36554d23d5f64c31834a144a03d56ca083ce', 'to': '0x5f4d39be2841ecb62115a5a667a318d201ff4b1f', 'value': 5.27633633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f730ce1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:46.000Z'}}, {'blockNum': '0x687bf6', 'uniqueId': '0xf5eac356416dfe18942d65aa35b9648d2848d70b89fbe1b9c83412ea577ef3f3:log:117', 'hash': '0xf5eac356416dfe18942d65aa35b9648d2848d70b89fbe1b9c83412ea577ef3f3', 'from': '0x7e5017c33488b2e979f8f9287f2fcb71f72a43e4', 'to': '0xc999232ee99760bdacb8ee5d42ad0533808e0038', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:46.000Z'}}, {'blockNum': '0x687bf6', 'uniqueId': '0x7da91fdb951ae4ed7c0f65293bed84513718a9e29e6b26d08c81f02f4d18c518:log:118', 'hash': '0x7da91fdb951ae4ed7c0f65293bed84513718a9e29e6b26d08c81f02f4d18c518', 'from': '0xfa3664b449ccbd84d596af9390da4d0697afa671', 'to': '0x62d55252cb224a243a314d8b510e92c85582d5e6', 'value': 18.40280554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6db073ea', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:46.000Z'}}, {'blockNum': '0x687bf6', 'uniqueId': '0xdada3d745b19102cbc6a5f7a4d63d7bd5361adfc3257ee8da10dd5ad8be35fac:log:119', 'hash': '0xdada3d745b19102cbc6a5f7a4d63d7bd5361adfc3257ee8da10dd5ad8be35fac', 'from': '0xf289accd63aab9a91270f0a0b9800e6a8d5b3663', 'to': '0x6bb5561d8c1b39253be70fe7c63ff4c756674d7d', 'value': 14.72140173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x57bf138d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:46.000Z'}}, {'blockNum': '0x687bf6', 'uniqueId': '0x336262fd7a12c921626f2a37e3b1a7bf3699d725eb88eac234db822e0e9951cb:log:120', 'hash': '0x336262fd7a12c921626f2a37e3b1a7bf3699d725eb88eac234db822e0e9951cb', 'from': '0xadca7b17ee13122525bcdc742092c66416f98d0c', 'to': '0x85a0bb4b892f138eccc27d4a94511213a5f81205', 'value': 10.54495321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3eda5259', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:46.000Z'}}, {'blockNum': '0x687bf6', 'uniqueId': '0x06f447afe88b58981a40b5443e43ca9b1103fd52a2a30b8c49aa6a819578215c:log:121', 'hash': '0x06f447afe88b58981a40b5443e43ca9b1103fd52a2a30b8c49aa6a819578215c', 'from': '0xa24657077a1c9cf58b90be259d17130119e88c9b', 'to': '0xf595c0141187d7f9d5d42e29e467a85131779423', 'value': 6.18206992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24d91710', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:46.000Z'}}, {'blockNum': '0x687bf6', 'uniqueId': '0xb594f9f6ce41923448cdecbe4225239148b01e4c64b68420ef912b1849bc7f59:log:122', 'hash': '0xb594f9f6ce41923448cdecbe4225239148b01e4c64b68420ef912b1849bc7f59', 'from': '0xa0c467860c0fe34abd5117db141405be423e9ea6', 'to': '0x5221a9ebfae0b0faf179443055db3cd586e2b91e', 'value': 15.43130971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5bfa4f5b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:46.000Z'}}, {'blockNum': '0x687bf6', 'uniqueId': '0x2297edb57fc7b4e899690e10df9b1464d4de1b8e5e10d9a492d038932b946076:log:123', 'hash': '0x2297edb57fc7b4e899690e10df9b1464d4de1b8e5e10d9a492d038932b946076', 'from': '0xa4e2bae5808646d21e4f329251e1c42284fd4788', 'to': '0x25128a1e42950a367db0b04361a236a98df883ab', 'value': 11.32854789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4385fe05', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:46.000Z'}}, {'blockNum': '0x687bf6', 'uniqueId': '0x1c39f2d2272eac5e2300e0ba6e0c28be54ff1e4e53d0976cca4f5bed13c31b29:log:124', 'hash': '0x1c39f2d2272eac5e2300e0ba6e0c28be54ff1e4e53d0976cca4f5bed13c31b29', 'from': '0x4096e44d2cc30ef0b46568ed769c46f1b8dc5316', 'to': '0xad5c7faa9f26f77c67ef44c42fdf2bfa2a73f31d', 'value': 6.26113859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2551bd43', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T07:52:46.000Z'}}, {'blockNum': '0x687c18', 'uniqueId': '0xd3eca3789631206e01c8a9554ddfb38685fec9c9c50e1b7c40759496622e7109:log:3', 'hash': '0xd3eca3789631206e01c8a9554ddfb38685fec9c9c50e1b7c40759496622e7109', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa85c1e5f00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:02:12.000Z'}}, {'blockNum': '0x687c2f', 'uniqueId': '0x483fe098ff3cd2e34f1d6a127d2003dbbf258afc8c76c85c0091036bad694edb:log:86', 'hash': '0x483fe098ff3cd2e34f1d6a127d2003dbbf258afc8c76c85c0091036bad694edb', 'from': '0x30350b582e4278f2bb1e782a94f1580b2d144f6a', 'to': '0x4e27dc4bc1054d2d2f3c666511e123e9e58b7bea', 'value': 6.32072523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25aca94b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:07:50.000Z'}}, {'blockNum': '0x687c2f', 'uniqueId': '0x4099b59486f7735c2c17eca873bf1fefe404b84f4b50250715aa7907e7fa9433:log:87', 'hash': '0x4099b59486f7735c2c17eca873bf1fefe404b84f4b50250715aa7907e7fa9433', 'from': '0x675c265f03004e83f7cb736e064d827c51450e99', 'to': '0xe3dcae3fbc57fb457a5c4a8bbe4b9b0f75ff9842', 'value': 5.82374869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22b655d5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:07:50.000Z'}}, {'blockNum': '0x687c2f', 'uniqueId': '0x43b0c1e927bd4ea61cc32cb4d05f58d6cb4b109263502f207851562b34422325:log:88', 'hash': '0x43b0c1e927bd4ea61cc32cb4d05f58d6cb4b109263502f207851562b34422325', 'from': '0xd6d27d883d81dff1ae58ad70fa6fdc0acabef9cd', 'to': '0xf097378941210c6c344f7f059fd2f8dfff527119', 'value': 5.1324403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e977b7e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:07:50.000Z'}}, {'blockNum': '0x687c2f', 'uniqueId': '0x033be06ba76bef8503b5be6c23dbd674831c3395aac070669b61c0873b265ee6:log:89', 'hash': '0x033be06ba76bef8503b5be6c23dbd674831c3395aac070669b61c0873b265ee6', 'from': '0x1bd8b45b8994e064c484a4a4e7e6da063ec9e6ca', 'to': '0xf3389979fc457ea4d2402ee7b4b5a08bf66a2927', 'value': 3.41608733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x145c891d', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:07:50.000Z'}}, {'blockNum': '0x687c2f', 'uniqueId': '0x2385a45f8fc7e1f90cb312542b6e577d20a3ad555d0f8f44e9861655a9932bb8:log:90', 'hash': '0x2385a45f8fc7e1f90cb312542b6e577d20a3ad555d0f8f44e9861655a9932bb8', 'from': '0x6150266f6cf806bd4f973d734c80b81eea3d035d', 'to': '0xbc344952b5255903e0865567b97717096c4c6943', 'value': 3.402374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14479c58', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:07:50.000Z'}}, {'blockNum': '0x687c41', 'uniqueId': '0xd787da2650ae4035103656daf7d4e7f5fc25a1811026bde413844ea17b39bd0d:log:1', 'hash': '0xd787da2650ae4035103656daf7d4e7f5fc25a1811026bde413844ea17b39bd0d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc777f61dd2f2e01f347fc6938dd807d3d8fea80b', 'value': 3495.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5163fee480', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:14:39.000Z'}}, {'blockNum': '0x687c86', 'uniqueId': '0x46d49182bd2fbe2df074ded8c3f6d9fc038e40e6c4e9dcd103506f6b1ff824e8:log:1', 'hash': '0x46d49182bd2fbe2df074ded8c3f6d9fc038e40e6c4e9dcd103506f6b1ff824e8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xde786cd29bc520835394cf2003f79d1bde58ec84', 'value': 183.3764347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0445023bce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:31:05.000Z'}}, {'blockNum': '0x687cab', 'uniqueId': '0x2b26e746e81079c8a12e44d4a72b05aa7fb3559f214f20c7360d0980130875e8:log:2', 'hash': '0x2b26e746e81079c8a12e44d4a72b05aa7fb3559f214f20c7360d0980130875e8', 'from': '0xc7b193c092c7b7afacba6d8ffe6c6adebaf838c0', 'to': '0x7a582bcf950a30c0ca783b99026be55a6ad6efb6', 'value': 434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0a1ad77200', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:40:15.000Z'}}, {'blockNum': '0x687cd9', 'uniqueId': '0x04b3c49afdb2b2e8ae80c02073c042f677b7546d9431c197edcf047c2f48eacc:log:8', 'hash': '0x04b3c49afdb2b2e8ae80c02073c042f677b7546d9431c197edcf047c2f48eacc', 'from': '0xde786cd29bc520835394cf2003f79d1bde58ec84', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 183.3764347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0445023bce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T08:49:57.000Z'}}, {'blockNum': '0x687d91', 'uniqueId': '0x318a219c038633b68fdadcefa88de14663cb66ed44a02451df754934892df509:log:6', 'hash': '0x318a219c038633b68fdadcefa88de14663cb66ed44a02451df754934892df509', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'value': 21261.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ef07f04b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T09:37:26.000Z'}}, {'blockNum': '0x687d92', 'uniqueId': '0x1a425a62d14144a9db93b7c4a7800b5a24f40314cc0a044d41482ffaf41451b2:log:1', 'hash': '0x1a425a62d14144a9db93b7c4a7800b5a24f40314cc0a044d41482ffaf41451b2', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4031002500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T09:37:45.000Z'}}, {'blockNum': '0x687df0', 'uniqueId': '0xf76cf5b7f1a1851508f73e1d8069e565f07c2ee68fd57ae338324d57be5d498b:log:0', 'hash': '0xf76cf5b7f1a1851508f73e1d8069e565f07c2ee68fd57ae338324d57be5d498b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x182a3ccc19f6837a8a8ad43df79db51285dc82e0', 'value': 2012.22628521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2ed9cda4a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T09:59:28.000Z'}}, {'blockNum': '0x687df7', 'uniqueId': '0x7a8c8149bf22b0757f14c90272b45f2ccd1525a82d0825e3e24d88b5d0c66641:log:0', 'hash': '0x7a8c8149bf22b0757f14c90272b45f2ccd1525a82d0825e3e24d88b5d0c66641', 'from': '0x40120b5a5994f7e3afe3c0a3dc56d1ccb0b75262', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21261.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x01ef07f04b80', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T10:02:11.000Z'}}, {'blockNum': '0x687df7', 'uniqueId': '0x9ea2b149dc6329d72ee6d91137a3cf21c55ff4fb0921a67a8b4e8bdd5fdb861a:log:1', 'hash': '0x9ea2b149dc6329d72ee6d91137a3cf21c55ff4fb0921a67a8b4e8bdd5fdb861a', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4031002500', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T10:02:11.000Z'}}, {'blockNum': '0x687e04', 'uniqueId': '0x51c33c7b11cae8d5394ec2f6a36076ce86566fd5be9c2cc2945470a4df269110:log:95', 'hash': '0x51c33c7b11cae8d5394ec2f6a36076ce86566fd5be9c2cc2945470a4df269110', 'from': '0x382fc13ca048f7a55ac18685560e903d4aa954c5', 'to': '0xff4c935b271fcd4aa8d73b6f321761b508fd2536', 'value': 545.878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0cb5afb9c0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T10:04:31.000Z'}}, {'blockNum': '0x687f2b', 'uniqueId': '0x73f4ea5b795a2a79eb3388b44699789bc5fea91372c96196ced0b0bd8b7552c8:log:1', 'hash': '0x73f4ea5b795a2a79eb3388b44699789bc5fea91372c96196ced0b0bd8b7552c8', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x16e856a1f5ab12f899846e416310b2f661634301', 'value': 102.66190442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x0263e9a26a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T11:13:24.000Z'}}, {'blockNum': '0x687f42', 'uniqueId': '0xa5b4a5b1dcd4a278732f219b99ee2a3e056b0c75488d7a35d310e1bd4f804734:log:11', 'hash': '0xa5b4a5b1dcd4a278732f219b99ee2a3e056b0c75488d7a35d310e1bd4f804734', 'from': '0x0047c8f1504526c37f6f9db4e3c9d22810845d63', 'to': '0x167a9333bf582556f35bd4d16a7e80e191aa6476', 'value': 8.53242857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x32db73e9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T11:20:15.000Z'}}, {'blockNum': '0x687f47', 'uniqueId': '0xd812a30cf3b702815e46c71f59d57d43c50d68ce1ac4919437a7dcd96c611be1:log:4', 'hash': '0xd812a30cf3b702815e46c71f59d57d43c50d68ce1ac4919437a7dcd96c611be1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xcf5fc40fce4bda66d39420cfc5a97f05ff3a8cae', 'value': 27.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xa51ad880', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T11:21:22.000Z'}}, {'blockNum': '0x687fb3', 'uniqueId': '0x1bf108c58307a8fb12dbd78bd928ff02121fc98a0ba856c9e4c808c59904379f:log:11', 'hash': '0x1bf108c58307a8fb12dbd78bd928ff02121fc98a0ba856c9e4c808c59904379f', 'from': '0x6ba63c115223158d36bece7c6442e27a39df1018', 'to': '0xb81a1bd9b09fe94203a15be3ad0af59b9d5e8b64', 'value': 2560.55735124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b9e1c7354', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T11:45:14.000Z'}}, {'blockNum': '0x687ffb', 'uniqueId': '0xeecbc363b20bceab2a9b985eb3da780c47451d68a39171ce87e1126b549eb7f5:log:4', 'hash': '0xeecbc363b20bceab2a9b985eb3da780c47451d68a39171ce87e1126b549eb7f5', 'from': '0xb81a1bd9b09fe94203a15be3ad0af59b9d5e8b64', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2560.55735124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3b9e1c7354', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T12:02:13.000Z'}}, {'blockNum': '0x688030', 'uniqueId': '0xd222f1910ce7220d56548649b712efdb6ca961004fdcf9d6200a580ecc0faa69:log:39', 'hash': '0xd222f1910ce7220d56548649b712efdb6ca961004fdcf9d6200a580ecc0faa69', 'from': '0x110327c7174f93252c92ed43edea694afd29433d', 'to': '0x2b078285955ea6d8b3e2581a41241930ad05be68', 'value': 11613.384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x010e6529ad00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T12:17:03.000Z'}}, {'blockNum': '0x68809e', 'uniqueId': '0x4bb832c68eb0f385388c53edb9c20ecd0f8443c05ff07a8c8d88520ad0396d90:log:0', 'hash': '0x4bb832c68eb0f385388c53edb9c20ecd0f8443c05ff07a8c8d88520ad0396d90', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xe99a295329fef495276ece35455ed5afe3933fd2', 'value': 16441.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017ed0c3cd00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T12:44:01.000Z'}}, {'blockNum': '0x6880d9', 'uniqueId': '0xf39a514b843aa8cedc9f58a02dc76df4bc6f0fc27efff81a327632ad064cbe18:log:0', 'hash': '0xf39a514b843aa8cedc9f58a02dc76df4bc6f0fc27efff81a327632ad064cbe18', 'from': '0xe99a295329fef495276ece35455ed5afe3933fd2', 'to': '0xfbf2173154f7625713be22e0504404ebfe021eae', 'value': 16441.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x017ed0c3cd00', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T12:56:08.000Z'}}, {'blockNum': '0x688121', 'uniqueId': '0x3e08925400be6599f7f4edb41c9a5e1b2c441721553c9031c9b734c9bf1b17c6:log:4', 'hash': '0x3e08925400be6599f7f4edb41c9a5e1b2c441721553c9031c9b734c9bf1b17c6', 'from': '0x40094874bb8c893f52769511b607c1ceabc08689', 'to': '0x79c51fed065d41dcf1361e0cdd87128681ecb3f4', 'value': 29.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xadbf5ec0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T13:14:14.000Z'}}, {'blockNum': '0x688172', 'uniqueId': '0x27badebf4e5b7daf1aefdca3068cb30b509c372fc371d635c22e674cd5706ffb:log:27', 'hash': '0x27badebf4e5b7daf1aefdca3068cb30b509c372fc371d635c22e674cd5706ffb', 'from': '0x178e3b0c2af30d7026c87be71a627687f9f88a1c', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 990.61192479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x171081d71f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T13:34:41.000Z'}}, {'blockNum': '0x688201', 'uniqueId': '0xf8994a23e8d121d7ca0b0ead08819eac877ca1ea29abe849124dba1b70eb9b84:log:0', 'hash': '0xf8994a23e8d121d7ca0b0ead08819eac877ca1ea29abe849124dba1b70eb9b84', 'from': '0x8c240d98e179a9e283a2394e5969a2eea95ca810', 'to': '0x242ae52d31b9e2256cba9b9666a555b8657fb221', 'value': 5.69053182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x21eb0ffe', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:09:49.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xb942f98ceb7d8a217205a65b87b01bc2c3c5f57a3b3cb3e0f2c04f758fb45ec0:log:106', 'hash': '0xb942f98ceb7d8a217205a65b87b01bc2c3c5f57a3b3cb3e0f2c04f758fb45ec0', 'from': '0xb05fb177fa466f154bfd3261f19777bb3c32f617', 'to': '0xf4ce6f30bec66568e90742636a961b430bf7ec44', 'value': 14.97363445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x593ff3f5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x363ffb3d7c28badb3c78018a41e6c58cea3057cc4043b8654a51cc2f992fcbc2:log:107', 'hash': '0x363ffb3d7c28badb3c78018a41e6c58cea3057cc4043b8654a51cc2f992fcbc2', 'from': '0x3f1da82187ef81211722cbd49261c33137362d0e', 'to': '0x625fd8474452508436cf04c07ddb72fb2df00c11', 'value': 30.5883197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0xb6521262', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xd6127a08a8304e21eb384ddf8749333bacce57d38a80adb34ee8eedcf8f34269:log:108', 'hash': '0xd6127a08a8304e21eb384ddf8749333bacce57d38a80adb34ee8eedcf8f34269', 'from': '0x3413c6a402efab3fa767e06162edb546e1e9d4fb', 'to': '0xd80e67c887d0ef4228f82546600422b1609c9fd1', 'value': 3.40994535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x145329e7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x6045470d21918ca82ace661bea816cf939df1e588aacabb4ed10297ada114214:log:109', 'hash': '0x6045470d21918ca82ace661bea816cf939df1e588aacabb4ed10297ada114214', 'from': '0xa5fc1407257bc81968b6c66d4e9f8ea576c2a93f', 'to': '0xea7bac3961c8e4d96360db809b4fe971a3a5336d', 'value': 4.21280981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x191c3cd5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xc23953403c12d913217aac700d7eac6015a3de2f4dfaf8b78d834a2f9163bda8:log:110', 'hash': '0xc23953403c12d913217aac700d7eac6015a3de2f4dfaf8b78d834a2f9163bda8', 'from': '0xf2f809f8c8eb588db19d24c0803eabcdc739de47', 'to': '0xc8db47b1401a279501f6e1d3b776c8dc366210c8', 'value': 11.41843599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x440f268f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xc2e7df2180fd541425c91048b4e46f6ae1c9fb43f4a12b99c31e4e44142b95ae:log:111', 'hash': '0xc2e7df2180fd541425c91048b4e46f6ae1c9fb43f4a12b99c31e4e44142b95ae', 'from': '0x0172730c91323101ad84f5ba94cc8b18dd41c5dc', 'to': '0xcef6675c56576b926d9a9d0a0d119879dfef66ce', 'value': 5.0473059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e1593de', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xa7cfdf08ffd7ddb6fc1afd4cbbeaed4c7f4408befbfe08d240ee4fbbfa7373ad:log:112', 'hash': '0xa7cfdf08ffd7ddb6fc1afd4cbbeaed4c7f4408befbfe08d240ee4fbbfa7373ad', 'from': '0xfb1623cfb12f35d9d888ac4ccb465952684f5031', 'to': '0x23ebe123132ed0741e007876dc6387aea744b783', 'value': 8.71002833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x33ea72d1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xb6a66d4de1d439c31fe53dfe4220e7c9be38031adbf59fa5dad3dd71e8e1ce8e:log:113', 'hash': '0xb6a66d4de1d439c31fe53dfe4220e7c9be38031adbf59fa5dad3dd71e8e1ce8e', 'from': '0xcd81d9bde7589f50e7b3f51de0a0bd363e98e128', 'to': '0xd8bc972d13da9626623cdd7102efe09ee63d5eb3', 'value': 11.73372311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x45f03d97', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x3964abc61dca11c88e694d4b4013869f674cf42f6805214eed5455633d3ec19d:log:114', 'hash': '0x3964abc61dca11c88e694d4b4013869f674cf42f6805214eed5455633d3ec19d', 'from': '0xfe7e2947e0d5fd8dcfddc94bece11bfdb3b73468', 'to': '0x4490b4b472645628dd5dccba5c3016fa10584964', 'value': 22.53179999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x864ccc5f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xf0edcbd7cd90f9052f8688f4ccc8044cae91305e18173a02e300e24413d60c28:log:115', 'hash': '0xf0edcbd7cd90f9052f8688f4ccc8044cae91305e18173a02e300e24413d60c28', 'from': '0xa63dc4b2a801485463c8ec8287d28f739e78b10a', 'to': '0x066de9d6ff4bee487c03ff63d6ad125bae4a8a3b', 'value': 7.71838371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e0151a3', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xf063fbb1e1353bc06f28d5318bb8fc73bd0aa0af340214213aa7d107ff9a0317:log:116', 'hash': '0xf063fbb1e1353bc06f28d5318bb8fc73bd0aa0af340214213aa7d107ff9a0317', 'from': '0xaf5acc4eabae89439685912bef1ae0d82d332dc8', 'to': '0x9743accc9a5721872b611c06bd783255c4141bd5', 'value': 10.36539069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3dc854bd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xd269d21af6e5c630f4563d2bafa8c7f04a0253c54c87a9cc7b8048575601e404:log:117', 'hash': '0xd269d21af6e5c630f4563d2bafa8c7f04a0253c54c87a9cc7b8048575601e404', 'from': '0xc3924e1e16f7134d6c9995e28f7544d9b2d499f7', 'to': '0xef723c51a87c72ab3788635df99c13a912c82946', 'value': 5.27283965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f6db6fd', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x47777117834f4b14e380817069e14edf325f79e0e83a598844a17e9f760166be:log:118', 'hash': '0x47777117834f4b14e380817069e14edf325f79e0e83a598844a17e9f760166be', 'from': '0x0941043ca8c4da3cb2715e223b27ded8545d57cc', 'to': '0x6e45ffda2ffa08907c1003f6cae6bfbac56f2630', 'value': 6.18669349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x24e02525', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x5ecfec845c333ba1fdb9f2efdba36d0358cb78cc645c2d6a1ba8a71bff7a55b7:log:119', 'hash': '0x5ecfec845c333ba1fdb9f2efdba36d0358cb78cc645c2d6a1ba8a71bff7a55b7', 'from': '0x67ca957b28c33e8441b1e4ee22d31414961e007f', 'to': '0xc3e331c87364a5f29fb4a2095de64f133a831c19', 'value': 5.84900712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22dce068', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xd49fab40f846f7b4f4799f48cf12e46e51be61c7a46f5ab03b80fe16a633ded5:log:120', 'hash': '0xd49fab40f846f7b4f4799f48cf12e46e51be61c7a46f5ab03b80fe16a633ded5', 'from': '0x0fc4ed2f05b605b26d46b3ad4d8fabd4075e5e1f', 'to': '0x5657b6c93db05d81563e154bc1d8faef99c69e0b', 'value': 5.0976586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e6268e4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x83fd45dd9b1d19ff3d9287ced072118ea60265f7b9dce6d408e596f9bb805c5f:log:121', 'hash': '0x83fd45dd9b1d19ff3d9287ced072118ea60265f7b9dce6d408e596f9bb805c5f', 'from': '0x1cb6e5867e63108528df25eea27594b8aa2c438b', 'to': '0x398deebca4698a562db5b1cc660612731f430621', 'value': 5.8672037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x22f8a472', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xe83cc8ac481bfc6a6008f00f395aac2ab96cd8209491ccc642ca4cf00d820e71:log:122', 'hash': '0xe83cc8ac481bfc6a6008f00f395aac2ab96cd8209491ccc642ca4cf00d820e71', 'from': '0x58262273fe1d9efd27945213cf94d62ef8388ef5', 'to': '0x211f71a5f5adeeedf3b27a253a8342d9963b9d3e', 'value': 6.3213722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x25ada604', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xa3175ab3e6cec39636ee18c6ae3d79ee4352e05dc9ce2d7f66a35480b37628ef:log:123', 'hash': '0xa3175ab3e6cec39636ee18c6ae3d79ee4352e05dc9ce2d7f66a35480b37628ef', 'from': '0x8b1fbfc59b4c868682d3c4716cf9d52b1ec9912e', 'to': '0xe298bc63f9b2ed3beae77cc47941086cbeb8e5de', 'value': 3.1381317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x12b468b2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xdd4c6b841d4968aef09f8132f2d8bab7537876c24b4c5640838ebefed4faa073:log:124', 'hash': '0xdd4c6b841d4968aef09f8132f2d8bab7537876c24b4c5640838ebefed4faa073', 'from': '0x0276d6f5ad55e18eba9c0f111e4af4e6c535fd3a', 'to': '0x1210d348c4b6879fb65608007b9f58207bc84de2', 'value': 6.61280343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x276a5657', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x007bba802ddba7f595f6ec01f8280e3b0570d25a9845bf34be945ae34b7a4cc7:log:125', 'hash': '0x007bba802ddba7f595f6ec01f8280e3b0570d25a9845bf34be945ae34b7a4cc7', 'from': '0xc5b17b017acc1d210a41e5005009336e4d077b34', 'to': '0x96acc286bcf5441ed153d627509ae019bab9103c', 'value': 5.29411372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f8e2d2c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xe82d838991548e23467daeaafbff256dea3dccd10e091084c7d5306a116b3c78:log:126', 'hash': '0xe82d838991548e23467daeaafbff256dea3dccd10e091084c7d5306a116b3c78', 'from': '0xe8929ba8636f168fc6edb39498a4f44bf2f2a039', 'to': '0x10bfd00c4043866c6070f6aefc3391ebfa3a2449', 'value': 11.09464136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42211448', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x04ff5bba3e2e8f0af79e6334fd0bfc8ddeb447af8744a5302e745dca1a9bbde8:log:127', 'hash': '0x04ff5bba3e2e8f0af79e6334fd0bfc8ddeb447af8744a5302e745dca1a9bbde8', 'from': '0x8bb55e92e38867c7a0b53478409e8f8d7b03d942', 'to': '0xabb8a33747884e71a18fab36cf6ce41f2cb2005a', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xd4daf12508ac2d1ffa7d73746d0cdbc9ab7e76a553f7ac3900d49f9e3fc555a3:log:128', 'hash': '0xd4daf12508ac2d1ffa7d73746d0cdbc9ab7e76a553f7ac3900d49f9e3fc555a3', 'from': '0xe9b3aaf921119ea7fc766786384948eb98bd980f', 'to': '0x7ce2bae635a2b8327bbc8a660f56811db072f2cd', 'value': 11.22855684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42ed6b04', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x94d5e39f5aba6c262e4cfbee8999e01804df2ce991a3c8e57c8ae465a8862df7:log:129', 'hash': '0x94d5e39f5aba6c262e4cfbee8999e01804df2ce991a3c8e57c8ae465a8862df7', 'from': '0x2d3119fb077d242019e1c22ca31335480c8953f7', 'to': '0x8b70f1cbab560290f065c9e0748ee9ffcccccd4b', 'value': 4.56193709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1b30f6ad', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x3395914b0c2b34dbd05fdd9ec4c213058687ef70f94b2f581ae4a1c21a272f6f:log:130', 'hash': '0x3395914b0c2b34dbd05fdd9ec4c213058687ef70f94b2f581ae4a1c21a272f6f', 'from': '0xcf602fc7b1b2a6c02e45bfea027aa21ffbae6378', 'to': '0xdf2bc89071ecaf2c849dab4c6ae565963f249ec9', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x8c0e00a2e10281212f070fe1f7a7067a133310e69bed87b63340dc4e923c4af3:log:131', 'hash': '0x8c0e00a2e10281212f070fe1f7a7067a133310e69bed87b63340dc4e923c4af3', 'from': '0x82c65945dd8d3d7709c99b19ac832d077ab5c6b4', 'to': '0x62abc5f6ee704013130989b72dd5735a59e1123f', 'value': 6.24146394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2533b7da', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0xb3e4ac581687324d5eb769b2c44790f171ba8f1953d1cdd49425c3cdefb3fbb0:log:132', 'hash': '0xb3e4ac581687324d5eb769b2c44790f171ba8f1953d1cdd49425c3cdefb3fbb0', 'from': '0x430262b0b4abe49a1100071d3a912d6be952ea05', 'to': '0xa12c43847645d34aab8b8f7b5c815967e698719a', 'value': 3.40565824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144c9f40', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x0ebe40d7e41256b29233a0461073d08edb80a8c416d1e4a431f6fe142cb60d2a:log:133', 'hash': '0x0ebe40d7e41256b29233a0461073d08edb80a8c416d1e4a431f6fe142cb60d2a', 'from': '0xbc2bf7ef81b9a1f9ac1f992b4a942ac2f5dfec8c', 'to': '0xfc2d9959be38d7a366c6ec7a5aba7e066d227456', 'value': 17.34082014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x675bfdde', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68820b', 'uniqueId': '0x5cfb130517c4bed48398938fba61d4c9a30d8b46ef0a9d4bff307daf822a687d:log:134', 'hash': '0x5cfb130517c4bed48398938fba61d4c9a30d8b46ef0a9d4bff307daf822a687d', 'from': '0xd4d2966a1625ad373cfbd3a30254dd88f752f18a', 'to': '0x555210acf328d3a712bfe299cf4ffa87d2ef22eb', 'value': 6.80882769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x28957251', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:11:34.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x4e6b6a12c14fd23e70447e79d6c97d39f6762998600d23732ee3728fcbf58eee:log:90', 'hash': '0x4e6b6a12c14fd23e70447e79d6c97d39f6762998600d23732ee3728fcbf58eee', 'from': '0x6ba4dbfcf8c56390c3d4098bf0f40670f875976f', 'to': '0x739b6cbad4e10ab4ed8ccc5b239f4f1d48c117c8', 'value': 8.71927536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x33f88ef0', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x7ead353130cb4b19f443d8ecca49d116416ac992d60345f341e52294f4dd44f0:log:91', 'hash': '0x7ead353130cb4b19f443d8ecca49d116416ac992d60345f341e52294f4dd44f0', 'from': '0x8d2b4696098733f29b19bb451de34d4d05339cb3', 'to': '0xa29a58c0e3f57d9781e029a2442da2ff6ff48cc6', 'value': 11.62721841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x454dba31', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x06f0fb950d9d5a9635efe9acba6022743237e5a5ae94bd78a771a70c4fc9a356:log:92', 'hash': '0x06f0fb950d9d5a9635efe9acba6022743237e5a5ae94bd78a771a70c4fc9a356', 'from': '0x6e660c694447e697209f3dcee7df10495be245d3', 'to': '0x3b58f09e2a2bc256a44182a8e58e8bd5bbba0e89', 'value': 5.87908993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x230ac781', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x48430db2e38a3cfbedbef1b563472fab83f46f6b0c926320d7cf13ebe3e6ec71:log:93', 'hash': '0x48430db2e38a3cfbedbef1b563472fab83f46f6b0c926320d7cf13ebe3e6ec71', 'from': '0xfc22b1b04e6642f4e94c4fcf6cc8201d5f7aa215', 'to': '0xefcb60b366024637eba6db271012a948f1ec0232', 'value': 8.83740005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x34accd65', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x1e612a7dd60bd64fbacacd619c9d7d73e1e6f660352b0c13b123cb4e8db9d8cd:log:94', 'hash': '0x1e612a7dd60bd64fbacacd619c9d7d73e1e6f660352b0c13b123cb4e8db9d8cd', 'from': '0x00e52b20d40baf238b1c5d7b371937f9a86a9fa3', 'to': '0x171d07db2d1084f3d15c3d5d41a02cae88f99334', 'value': 5.50165305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x20cadb39', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x8c73d5eb2b5d3824e2b1fad5cfd5c1c8bc72901fe088e03d0d9955a1c54f8ba7:log:95', 'hash': '0x8c73d5eb2b5d3824e2b1fad5cfd5c1c8bc72901fe088e03d0d9955a1c54f8ba7', 'from': '0xd5db251e755c6d4945c2c638e6ecda4d549bca48', 'to': '0x1f1a80f33199e8aafdc523834ad81cb28a877918', 'value': 5.05306574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e1e5dce', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0xbf54d435cfd2b9159c8897bb697db5b55853540f425a8fe63739a2be842a7b09:log:96', 'hash': '0xbf54d435cfd2b9159c8897bb697db5b55853540f425a8fe63739a2be842a7b09', 'from': '0x875e5eac2aac02544395daeff6bcd175b495eb9a', 'to': '0x993f26b377e7437256ac456fcbf3b6e311427191', 'value': 5.10719913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e70f7a9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x47caf5eed0818a112bd48f66ce13e4dc5a2aa8a3c52023c49cd3e37d36c0142a:log:97', 'hash': '0x47caf5eed0818a112bd48f66ce13e4dc5a2aa8a3c52023c49cd3e37d36c0142a', 'from': '0x8f5db872e9f89272b7f8e28c724ce929b76df71e', 'to': '0xaa39dbc60ccf00ffa62325bc313c5af55ab35167', 'value': 5.12952521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e9308c9', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x310741958c99f513967f744e0a134935b026bf8721194ec680e09630e22e8bee:log:98', 'hash': '0x310741958c99f513967f744e0a134935b026bf8721194ec680e09630e22e8bee', 'from': '0xa687d02aaf5a6d9f67f3c9ca3c402a059791fa14', 'to': '0xc0a06db4b6395e84eb3b688584f0e7a4eb535c8e', 'value': 7.74414495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2e28a09f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0xfeab87f0a2a73bacb9d66492a02af9552bd9811edd811568f95aa3e74494a08a:log:99', 'hash': '0xfeab87f0a2a73bacb9d66492a02af9552bd9811edd811568f95aa3e74494a08a', 'from': '0x73eb301fd7172f41edc2d1476c58c99e9cdaea51', 'to': '0xf24b0dadb98060fb80ecd28d6a0f8346935f3a2d', 'value': 13.15020174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4e619d8e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x9757f399ff49da5bf9e2f4869140701cac5d7024e2b6037d34f13b994ec747de:log:100', 'hash': '0x9757f399ff49da5bf9e2f4869140701cac5d7024e2b6037d34f13b994ec747de', 'from': '0x032023b1bfdb82b8e21864f41e6f2d1bd0f76237', 'to': '0x6c3205cf439e585cda21a7af84f4e2e3ebe949e3', 'value': 5.12753477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e8fff45', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x32fef1e3aa9e0ce797d0b74bc2f309f77a3530e7a125de3cf635776268cd2c78:log:101', 'hash': '0x32fef1e3aa9e0ce797d0b74bc2f309f77a3530e7a125de3cf635776268cd2c78', 'from': '0x023da5f3f11875237b3b180d4b676669bb37ecb0', 'to': '0x3722fbb764289bed2bf6fc9134c278a2e7138cc7', 'value': 15.83907812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5e6883e4', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x4787a9407870bcf7a8ebbca4438b7ab8c8c99804c0af1994ac925df9e0fd428d:log:102', 'hash': '0x4787a9407870bcf7a8ebbca4438b7ab8c8c99804c0af1994ac925df9e0fd428d', 'from': '0x9401806a88746c6b262734e6e98dfe0721e87165', 'to': '0x1ad92ba95fc9b9d84ac16ed651e8c620564e05ce', 'value': 5.27141937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f6b8c31', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x37572f6170a28b97e174c0599cf2cd1723abda965fb245968a9c24519b963c41:log:103', 'hash': '0x37572f6170a28b97e174c0599cf2cd1723abda965fb245968a9c24519b963c41', 'from': '0x3a7cbf12ceb955162fb588a2de93dbfaa19903e7', 'to': '0x45acdac8f04deb03f85dbead58c20edb9d44bce0', 'value': 7.59101006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d3ef64e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0xf253733b45ad5cc25d7221d96e37c4d762843283fd4f4d30471d216911681165:log:104', 'hash': '0xf253733b45ad5cc25d7221d96e37c4d762843283fd4f4d30471d216911681165', 'from': '0xe7ba389e97189503f2ee1759a89526e003014ce2', 'to': '0xb786ae32db519036054147d14972f150ebce4f97', 'value': 11.56375263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x44ece2df', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0xe0707590b9c55979cfecfb965529307464143e9a57dd84d68c2dc71627732e8c:log:105', 'hash': '0xe0707590b9c55979cfecfb965529307464143e9a57dd84d68c2dc71627732e8c', 'from': '0x7819dfacd265d2a1bcf421d3cfb811c53fa84709', 'to': '0xec713dd86bf6e4d93213aa617025da3dfcc2d041', 'value': 6.57081384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x272a4428', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x0f8f4548dba9d5aaa471130a330bbe7a070916d3170b34c53475b3ced219a6ca:log:106', 'hash': '0x0f8f4548dba9d5aaa471130a330bbe7a070916d3170b34c53475b3ced219a6ca', 'from': '0x2b953ae0d65614177a09c188ea7be6866cbe802d', 'to': '0x11800232d38c65c574d55ae2cc0ff03b8e8e95f3', 'value': 3.40140486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x144621c6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0xfd933c68ef6c2cab5ae1649352e1a03c333191c5a3dfcb488ce778fd9164b050:log:107', 'hash': '0xfd933c68ef6c2cab5ae1649352e1a03c333191c5a3dfcb488ce778fd9164b050', 'from': '0xd9bf085c280ecaaa562febd1090d1be5694b20b2', 'to': '0x148de5627f6d265774773c01f502f3c8d9a5bd08', 'value': 5.06170046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e2b8abe', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x05b843c99d12b357e38230578370320875151cdfea86d24963f4f2239e52b31e:log:108', 'hash': '0x05b843c99d12b357e38230578370320875151cdfea86d24963f4f2239e52b31e', 'from': '0x8b5d5aabf95f30b09244f112247be70a0de232e4', 'to': '0xb0aa587953c6903769bba1be45a5665332bc530b', 'value': 3.40182786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446c702', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x2eb8e770ffb729941b23b7bb43721283aa458db88faddb3f9e42cefba47a1759:log:109', 'hash': '0x2eb8e770ffb729941b23b7bb43721283aa458db88faddb3f9e42cefba47a1759', 'from': '0x179b014aa96ad404c8273300553660b6ad115358', 'to': '0xfde9e5feda1c24c268c583c8ee2c343942fd8cc7', 'value': 11.30138486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x435c8b76', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x5eedad11b2597f597377cada4078eb5794f2e7f21539454c7140dba189a6fcca:log:110', 'hash': '0x5eedad11b2597f597377cada4078eb5794f2e7f21539454c7140dba189a6fcca', 'from': '0x05a837c8b339ae1691f1bf511b3d57c5fcf56091', 'to': '0x314f7dcb410c3ee41394dad92f11cd034bfa9b64', 'value': 5.1132467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e7a31fe', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x56f730071cc638e8d1e77eb16cdd237759738f9b9629ccf3003729976a6056f3:log:111', 'hash': '0x56f730071cc638e8d1e77eb16cdd237759738f9b9629ccf3003729976a6056f3', 'from': '0x04dafbdececf8cdb2d1be8de83a81528afe377ce', 'to': '0xcf46b055a17503e724312fe9a2087d0cc8cebf01', 'value': 13.66673579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x5175c8ab', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0xfd0282516ab0f8a8bfebc71c62580f84564056e4efb108b34a1ba9cfebedb6dc:log:112', 'hash': '0xfd0282516ab0f8a8bfebc71c62580f84564056e4efb108b34a1ba9cfebedb6dc', 'from': '0xfb352c30479fa8d8bc2e4d985f219a27d15fd6b1', 'to': '0x1ee61e9fbe0c11ff895629b3ea4c3f814a38915a', 'value': 7.62751201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2d76a8e1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0x15bbe0d33b692d3e6f9b81738ac4304478cc9016238514c61d005ff7e70185f1:log:113', 'hash': '0x15bbe0d33b692d3e6f9b81738ac4304478cc9016238514c61d005ff7e70185f1', 'from': '0x9a9d563dc90b9e26b273dd39eba34a2b58eb1681', 'to': '0x19698e774a63279b74d65be33e17b86ae3833e6e', 'value': 21.48384712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x800dbfc8', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x68826c', 'uniqueId': '0xa2b4d756dea59cf9c20e98b866ca4f04189336c974410b130d1202f1892749b9:log:114', 'hash': '0xa2b4d756dea59cf9c20e98b866ca4f04189336c974410b130d1202f1892749b9', 'from': '0xe6caeff3c2cd5f3eca66a3cc5e0ccb188c128c72', 'to': '0x733100b527e51bf7de724581cd5082b9d138355c', 'value': 10.31294543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3d784e4f', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:39:28.000Z'}}, {'blockNum': '0x688270', 'uniqueId': '0x939f3dcf50d9bbd23c303071ca81db0e6e218618cd7b2d7d68363c9cbea7ab33:log:146', 'hash': '0x939f3dcf50d9bbd23c303071ca81db0e6e218618cd7b2d7d68363c9cbea7ab33', 'from': '0xeaeb8fd9419cc49fde860cfd9c12f4e8b3a8f4af', 'to': '0x00a7b22527b891407a3f0de01a638923a2b120e7', 'value': 12.82292965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4c6e3ce5', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:40:35.000Z'}}, {'blockNum': '0x688270', 'uniqueId': '0xa2348f7e4be9b387d87d4743808f0b36f4541b412c395be1cdf2afa1aa72c7be:log:147', 'hash': '0xa2348f7e4be9b387d87d4743808f0b36f4541b412c395be1cdf2afa1aa72c7be', 'from': '0x2e575180d08787cbaf433234a68a65aebb47b65d', 'to': '0xa2deffa03ec729406f76e51082cc94dd1e0f9569', 'value': 3.40184386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1446cd42', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:40:35.000Z'}}, {'blockNum': '0x688270', 'uniqueId': '0x7e679b61de9744281165f4ec418ded99074d403059a453f8717ab12ae6d43333:log:148', 'hash': '0x7e679b61de9744281165f4ec418ded99074d403059a453f8717ab12ae6d43333', 'from': '0xe1ceaef9553323c3f4bfda132638fe51450166b9', 'to': '0xda10d47eb7b991a2ba8ac75d22b4fedd51cea55f', 'value': 5.22381102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1f22e72e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:40:35.000Z'}}, {'blockNum': '0x688270', 'uniqueId': '0x6898a1dc4db9ede35a1c79c66c5c4adf3bb337964b4e684c807450ef7057acf8:log:149', 'hash': '0x6898a1dc4db9ede35a1c79c66c5c4adf3bb337964b4e684c807450ef7057acf8', 'from': '0xd75cd92ee63dae12e1dd20d364a29586d01d2a59', 'to': '0x00ec238784801e1b560e3bb02937b6d951d104b2', 'value': 13.50337402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x507c837a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:40:35.000Z'}}, {'blockNum': '0x688270', 'uniqueId': '0xe3d25d3b52fd3d9ca2379fc18c6733df7869dce5b229ff9075d58d8351ac3e54:log:150', 'hash': '0xe3d25d3b52fd3d9ca2379fc18c6733df7869dce5b229ff9075d58d8351ac3e54', 'from': '0x6b92b08aae4ef11c19e8ba2342f218c10c855572', 'to': '0x6f107045d1150f8f0509b28f95bf795ccb64fb03', 'value': 12.13955605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x485b7e15', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:40:35.000Z'}}, {'blockNum': '0x688270', 'uniqueId': '0x1c1de88c668f4362214e501791afff7b48064e48c9300d87ea84f4d82c022724:log:151', 'hash': '0x1c1de88c668f4362214e501791afff7b48064e48c9300d87ea84f4d82c022724', 'from': '0x08435fec697d16f1cde5a9e8af2fe163d7251a2a', 'to': '0xe93e0d054cd302fcd190d68ebf9cddb9525a7ca1', 'value': 17.89855896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6aaf0898', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:40:35.000Z'}}, {'blockNum': '0x688270', 'uniqueId': '0x00873b2c0428a3dd93e82d7f0ebae2559ca0ae2d74c43e8551d4a7b726f9443c:log:152', 'hash': '0x00873b2c0428a3dd93e82d7f0ebae2559ca0ae2d74c43e8551d4a7b726f9443c', 'from': '0xa45d9245518667cf89022b2f3095ce2af91233b2', 'to': '0x99a92f63a79cb27c5e2ce41549ec36096b4115c0', 'value': 7.96480878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2f79556e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:40:35.000Z'}}, {'blockNum': '0x688270', 'uniqueId': '0x6d7d81a1e1331d26c3a809365fca66fccd844463a68ce7cd6bb57969759c15de:log:153', 'hash': '0x6d7d81a1e1331d26c3a809365fca66fccd844463a68ce7cd6bb57969759c15de', 'from': '0xfa2627494b11195c67b0f1f9e3cd1a7e5a1ce446', 'to': '0x70f6a168e511d78364cd6e9b73b343e574a3fcab', 'value': 21.4397949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x7fca87e2', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:40:35.000Z'}}, {'blockNum': '0x688270', 'uniqueId': '0x3ea4d907f3d9bbeab5f353f0dc541d7530949e393e44726aab39cc439e69b260:log:154', 'hash': '0x3ea4d907f3d9bbeab5f353f0dc541d7530949e393e44726aab39cc439e69b260', 'from': '0x3b0a46b589d940141b8b6b19ef74325079f43449', 'to': '0x1d481dc4322da54c1fa0c2a76399ec812249c96f', 'value': 4.9228368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1d57a720', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:40:35.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x2e622ac8b08dafd961f1aa64bf3bdf4c0bde63d690070c190ffa90ad82fe5639:log:169', 'hash': '0x2e622ac8b08dafd961f1aa64bf3bdf4c0bde63d690070c190ffa90ad82fe5639', 'from': '0x7f054acefa9ea2580a07fd93dd0c17a83a69f399', 'to': '0x674dfab5034d1843e58cfb32ab1bde92b5c38f0c', 'value': 6.72982747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x281ce6db', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x815cb218fdf7a2b79fcd1f649b59fff0fe030a6fa140fe9b661c389d927fde62:log:170', 'hash': '0x815cb218fdf7a2b79fcd1f649b59fff0fe030a6fa140fe9b661c389d927fde62', 'from': '0xeece43b1772f5ecb0c83ceebd75380317d4cbb1f', 'to': '0x7204bc69fa5789aaf894aa406f019920b270fbb7', 'value': 10.63903482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3f69e0fa', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x540c26fbd0d1a572cb1217c6fa6c54765b89ea0a6c3cb918d3a40ce360fcd839:log:171', 'hash': '0x540c26fbd0d1a572cb1217c6fa6c54765b89ea0a6c3cb918d3a40ce360fcd839', 'from': '0xfdd7f12599f4576bb74c59030461a87b50e5c8d1', 'to': '0x708a44ee30cfdc8a5bcb4696cc1b35d0c9ed80c3', 'value': 18.33328186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x6d465e3a', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0xd7fd60a534747a3d89ef17221b30786aa734b15c5ca2c5e3c6bad4283c38b92c:log:172', 'hash': '0xd7fd60a534747a3d89ef17221b30786aa734b15c5ca2c5e3c6bad4283c38b92c', 'from': '0xf60580b7cc4da6bf6f0d6493539ae2174d20cec3', 'to': '0x7815bea10507849c3cb2feb861de7e96082d7c58', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x968746a1ab4e8b0c0ef2c446280d0a0ae29ad3dec3da087a5d8ee9fab35b4d0b:log:173', 'hash': '0x968746a1ab4e8b0c0ef2c446280d0a0ae29ad3dec3da087a5d8ee9fab35b4d0b', 'from': '0xcb7aa61728fb71ace4b1500140ade69fed802bdf', 'to': '0x1516f15b266d4acec6728613978aaa0a3a9371fb', 'value': 10.47463475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e6f0633', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x9c4369f31a08fc8174761ec7841588189f1cd6d20f7dbe5d2940ff8d1f09e6c4:log:174', 'hash': '0x9c4369f31a08fc8174761ec7841588189f1cd6d20f7dbe5d2940ff8d1f09e6c4', 'from': '0x9ddfee46c671f45ec4d027e1198b507d6388376d', 'to': '0xb2dc906067a7db4bf143303db72f655451928058', 'value': 13.25152792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4efc3a18', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0xc115d6a854df4ed06fb63fee56c63b54ce5f60e294b270113ec0e9932563f106:log:175', 'hash': '0xc115d6a854df4ed06fb63fee56c63b54ce5f60e294b270113ec0e9932563f106', 'from': '0x7573bef9df856105d916d75bb85f2de36866ec63', 'to': '0x193cdb1f36b3cd769f447e82f528a15a6553b86c', 'value': 11.22938664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x42eeaf28', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x8f3c8966b77fe5c24eb53bc8f31efc937aedb8b39714f01f06aeb2749d6e8bc6:log:176', 'hash': '0x8f3c8966b77fe5c24eb53bc8f31efc937aedb8b39714f01f06aeb2749d6e8bc6', 'from': '0xafdcddc57daf6b198586aee9e354e6032a24533a', 'to': '0xd34119fde0df472aa3b2f7d47dec4eb826f6def3', 'value': 10.49576433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3e8f43f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0xff5076f158e85e4301195af39eb9b506c2edbd593f37d756a57cbf576ea0993b:log:177', 'hash': '0xff5076f158e85e4301195af39eb9b506c2edbd593f37d756a57cbf576ea0993b', 'from': '0x133c18093abc709e4f3930f25ebdad48404bfa98', 'to': '0xff975210527abc30b58648f8dee11b481c4e96d4', 'value': 5.05505033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e216509', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x51ba66917e79c17a97fdf226ce0364f6e0ba2904b61b12b9bb44b88970b38bbb:log:178', 'hash': '0x51ba66917e79c17a97fdf226ce0364f6e0ba2904b61b12b9bb44b88970b38bbb', 'from': '0x9584a06ab02e2b2f1445376c49624ede5b184035', 'to': '0x4cde21b5eaab9604ca1daffde9f8e8cba23cc03a', 'value': 1.29491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e038', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0xc0e6c7c4142272de9883f01539277a4709308a06a0f4f29ae583e3c845868bba:log:179', 'hash': '0xc0e6c7c4142272de9883f01539277a4709308a06a0f4f29ae583e3c845868bba', 'from': '0x5d69e0396a942b13ecebf6294c5057e0fdbbec56', 'to': '0x84cd7f79834af74958fd43b0a60939bf3bdb82c7', 'value': 6.39221239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2619bdf7', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0xdd321f6fb803410f1769cf64a6d41b0b93d0dbfbcb83b6f64d4d2a1924019ba7:log:180', 'hash': '0xdd321f6fb803410f1769cf64a6d41b0b93d0dbfbcb83b6f64d4d2a1924019ba7', 'from': '0xa50446fc763f70ef64425a610f470be154c8f258', 'to': '0x91999afcc8c5f8053897794d04df0c2545092e6b', 'value': 10.53625249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3ecd0ba1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x0ed97cef5390f0ccc54d5d32325e3bc3f6839a4a8faae632bf16907c8252f6bd:log:181', 'hash': '0x0ed97cef5390f0ccc54d5d32325e3bc3f6839a4a8faae632bf16907c8252f6bd', 'from': '0x71d4e0d770c5b974f21bc0cdb5d745103f9dd698', 'to': '0xe8beb3de474fec079fdff2cf620506b873519ec6', 'value': 10.83303366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4091e5c6', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x0c25b47bf9e0698aa2844bac4206ee70ba0b1fce159f848c93f7077ea78fa36b:log:182', 'hash': '0x0c25b47bf9e0698aa2844bac4206ee70ba0b1fce159f848c93f7077ea78fa36b', 'from': '0x5698d2cd3893d7232e1ab500b4012090c4f8645b', 'to': '0xf61e2e780207a4b67d6b9c7b3f5352c8c101aee4', 'value': 6.62234097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x2778e3f1', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x27113f941a0c3bb6778f25c0e2f58984cfc0c3146a6dbf2af169c5aab2edf78a:log:183', 'hash': '0x27113f941a0c3bb6778f25c0e2f58984cfc0c3146a6dbf2af169c5aab2edf78a', 'from': '0xe375329cb06d6f9243cf9abdd274d66526830e51', 'to': '0xbf1bf27822257d0351f565b4be8e8764a71976cb', 'value': 5.08027035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e47e09b', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0xdd7147121b5daa212344cb4b4d06d6ed91adac1de1c7126b0692200ee563625d:log:184', 'hash': '0xdd7147121b5daa212344cb4b4d06d6ed91adac1de1c7126b0692200ee563625d', 'from': '0x7b2205c51b525e2a4140f9414ecebcf133203e1d', 'to': '0x7c8f827bc13a0eda3db4b62f39b38121a5406326', 'value': 3.40142886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x14462b26', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x171b1ef39924feb7eef2a8618b6f643233c2661b150fa3ffb25bb8ff6fda5c2a:log:185', 'hash': '0x171b1ef39924feb7eef2a8618b6f643233c2661b150fa3ffb25bb8ff6fda5c2a', 'from': '0xd138ef5f11ebb0818a46b23be312b57144685e9a', 'to': '0x91f9632d9a896ddbf8223a01d3a6be28945b128a', 'value': 5.05400917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e1fce55', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x2f2d131bb71eb4b2426b89e0d2f13547b6d0a27e8f7438bc792ed39688093616:log:186', 'hash': '0x2f2d131bb71eb4b2426b89e0d2f13547b6d0a27e8f7438bc792ed39688093616', 'from': '0xe841d2de325b3418ed40090b69450fe8eb45ebf7', 'to': '0xa1244daf4c53c33ba909c0bc399a0bda3175b228', 'value': 5.0392688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x1e095060', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x3ebfeecb1d41e8e2bb87e53788e19654a8b4a95bd23d938f8938cae216f97ba0:log:187', 'hash': '0x3ebfeecb1d41e8e2bb87e53788e19654a8b4a95bd23d938f8938cae216f97ba0', 'from': '0x50ef86776194aa61293b999f2af6bc17e666a4ca', 'to': '0xb0ad56d2679e1473c995f1c38cd365c6e61aa45c', 'value': 1.294911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x07b7e09c', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0xfff232caf28acd88bd5f16d95b6a21d75709c7ca67870b3b8347f471a569ca1c:log:188', 'hash': '0xfff232caf28acd88bd5f16d95b6a21d75709c7ca67870b3b8347f471a569ca1c', 'from': '0x63151a406a3509a594600dfb55016db6d7e44369', 'to': '0x03ae92592e8fd9ef5f611ba78c697cd93a174f49', 'value': 6.04647887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x240a31cf', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0x6fa1843e53bd5f5011ca8022377c24ddc1e593f4acc1fd55e108c93b76075280:log:189', 'hash': '0x6fa1843e53bd5f5011ca8022377c24ddc1e593f4acc1fd55e108c93b76075280', 'from': '0x05df4a7c49c2811f8e2744c84dd7b3458a18e768', 'to': '0x2814dcdda60488fe9c1f57029debb844ec033781', 'value': 16.76355715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x63eb2883', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0xd4830ec0e1d603f177ec06efbf377c3507dcb354487e138dbe4c4d7d2adce030:log:190', 'hash': '0xd4830ec0e1d603f177ec06efbf377c3507dcb354487e138dbe4c4d7d2adce030', 'from': '0x789296c07c8bf4cfa1d0ea42bad6543b3d9eeac8', 'to': '0xd24202af7da232558c6bf7a8711252078be544ea', 'value': 12.5015051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x4a83c86e', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}, {'blockNum': '0x688272', 'uniqueId': '0xcb829823b203022651f3f311b992d5874515fef10f33b037470897447251d099:log:191', 'hash': '0xcb829823b203022651f3f311b992d5874515fef10f33b037470897447251d099', 'from': '0x1872cdf6ec317503187c4f710089ff9ca4dd87bf', 'to': '0xb8d5931e444e9fb4516a39306db5b013e238977b', 'value': 10.2295021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STORJ', 'category': 'erc20', 'rawContract': {'value': '0x3cf8fb42', 'address': '0xb64ef51c888972c908cfacf59b47c1afbc0ab8ac', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-12-08T14:41:14.000Z'}}], 'pageKey': '080d0c3f-d0cd-448b-9834-8387c458ccb1'}}
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Number of returned transfers:  1018
Answer is complete
 
symbol            WABI
group              MPG
date        2018-12-16
hour             17:00
exchange       binance
Name: 487, dtype: object
HERE
 Symbol: WABI, Contract: 
Datetime timestamps:  2018-12-16 17:00:00 2018-12-16 05:00:00 2018-12-17 05:00:00
Unix timestamps:  1544932800.0 1545019200.0
Hex Block Numbers:  0x6935e6 0x694d74
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            NEBL
group              MPG
date        2018-12-23
hour             16:59
exchange       binance
Name: 488, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2018-12-23 16:59:00 2018-12-23 04:59:00 2018-12-24 04:59:00
Unix timestamps:  1545537540.0 1545623940.0
Hex Block Numbers:  0x69d6b9 0x69edf7
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GXS
group              MPG
date        2019-01-20
hour             17:59
exchange       binance
Name: 489, dtype: object
HERE
 Symbol: GXS, Contract: 
Datetime timestamps:  2019-01-20 17:59:00 2019-01-20 05:59:00 2019-01-21 05:59:00
Unix timestamps:  1547960340.0 1548046740.0
Hex Block Numbers:  0x6c4946 0x6c5ebf
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol              HC
group              MPG
date        2019-01-25
hour             17:59
exchange       binance
Name: 490, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
 Symbol: HC, Contract: 
Datetime timestamps:  2019-01-25 17:59:00 2019-01-25 05:59:00 2019-01-26 05:59:00
Unix timestamps:  1548392340.0 1548478740.0
Hex Block Numbers:  0x6cadee 0x6cc1ac
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           WINGS
group              MPG
date        2019-01-27
hour             17:59
exchange       binance
Name: 491, dtype: object
HERE
 Symbol: WINGS, Contract: 
Datetime timestamps:  2019-01-27 17:59:00 2019-01-27 05:59:00 2019-01-28 05:59:00
Unix timestamps:  1548565140.0 1548651540.0
Hex Block Numbers:  0x6cd574 0x6ce915
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GXS
group              MPG
date        2019-02-10
hour             17:59
exchange       binance
Name: 492, dtype: object
HERE
 Symbol: GXS, Contract: 
Datetime timestamps:  2019-02-10 17:59:00 2019-02-10 05:59:00 2019-02-11 05:59:00
Unix timestamps:  1549774740.0 1549861140.0
Hex Block Numbers:  0x6de1ad 0x6df218
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             AST
group              MPG
date        2019-03-02
hour             14:00
exchange       binance
Name: 493, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
 Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps:  2019-03-02 14:00:00 2019-03-02 02:00:00 2019-03-03 02:00:00
Unix timestamps:  1551488400.0 1551574800.0
Hex Block Numbers:  0x6f3161 0x6f4a36
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6f3276', 'uniqueId': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8:log:4', 'hash': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xda64447d0db123635337da4c1400985bd5108537', 'value': 392.435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3be17e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:10:37.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:15', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:17', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb3b08089acd17805a3a538211f12694717deeef5', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a9', 'uniqueId': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd:log:3', 'hash': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:05.000Z'}}, {'blockNum': '0x6f32af', 'uniqueId': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86:log:34', 'hash': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:20:34.000Z'}}, {'blockNum': '0x6f32b2', 'uniqueId': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4:log:19', 'hash': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:21:18.000Z'}}, {'blockNum': '0x6f32b7', 'uniqueId': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e:log:26', 'hash': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:22:12.000Z'}}, {'blockNum': '0x6f32bf', 'uniqueId': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458:log:77', 'hash': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:24:06.000Z'}}, {'blockNum': '0x6f330b', 'uniqueId': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd:log:63', 'hash': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:27.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1:log:14', 'hash': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22:log:52', 'hash': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22', 'from': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f3314', 'uniqueId': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd:log:41', 'hash': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd', 'from': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:43:48.000Z'}}, {'blockNum': '0x6f3349', 'uniqueId': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a:log:10', 'hash': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:55:22.000Z'}}, {'blockNum': '0x6f33a4', 'uniqueId': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca:log:52', 'hash': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T03:14:51.000Z'}}, {'blockNum': '0x6f350c', 'uniqueId': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8:log:111', 'hash': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'value': 4892.142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02ea7b4c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:34:43.000Z'}}, {'blockNum': '0x6f3549', 'uniqueId': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba:log:51', 'hash': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba', 'from': '0x453e025f8e7518e66331044402a0ea1b97d6eaab', 'to': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:49:19.000Z'}}, {'blockNum': '0x6f35b9', 'uniqueId': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3:log:13', 'hash': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3', 'from': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:15:14.000Z'}}, {'blockNum': '0x6f3669', 'uniqueId': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61:log:53', 'hash': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:52:29.000Z'}}, {'blockNum': '0x6f36bc', 'uniqueId': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0:log:13', 'hash': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T06:10:27.000Z'}}, {'blockNum': '0x6f3974', 'uniqueId': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82:log:10', 'hash': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T08:45:58.000Z'}}, {'blockNum': '0x6f39fa', 'uniqueId': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11:log:35', 'hash': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:15:09.000Z'}}, {'blockNum': '0x6f3a17', 'uniqueId': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9:log:66', 'hash': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9', 'from': '0xb91e80a4d98023c4c431a12e376b3b0e4dc9de70', 'to': '0xac4682db6eb5083e64f9a05859da6eff0fd8ed91', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:21:57.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485:log:16', 'hash': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97:log:17', 'hash': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b10', 'uniqueId': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3:log:19', 'hash': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:16:04.000Z'}}, {'blockNum': '0x6f3b34', 'uniqueId': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956:log:83', 'hash': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:23:55.000Z'}}, {'blockNum': '0x6f3c12', 'uniqueId': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d:log:3', 'hash': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff9b53a7586d4d82d62cd7eb0b0acaa16d9215c3', 'value': 350.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x358338', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T11:16:13.000Z'}}, {'blockNum': '0x6f3d56', 'uniqueId': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a:log:51', 'hash': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:27:57.000Z'}}, {'blockNum': '0x6f3d5e', 'uniqueId': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4:log:33', 'hash': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4', 'from': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'to': '0x4b327ee88d48acc116643f80a4674a5c5b3b53f7', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:29:45.000Z'}}, {'blockNum': '0x6f3d86', 'uniqueId': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf:log:6', 'hash': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:38:08.000Z'}}, {'blockNum': '0x6f3d8e', 'uniqueId': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf:log:77', 'hash': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:39:54.000Z'}}, {'blockNum': '0x6f3e29', 'uniqueId': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64:log:5', 'hash': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:11:46.000Z'}}, {'blockNum': '0x6f3e2e', 'uniqueId': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74:log:12', 'hash': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:13:14.000Z'}}, {'blockNum': '0x6f3e43', 'uniqueId': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375:log:112', 'hash': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 6211.8675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3db13', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:17:23.000Z'}}, {'blockNum': '0x6f3e45', 'uniqueId': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e:log:41', 'hash': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:18:40.000Z'}}, {'blockNum': '0x6f3e63', 'uniqueId': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581:log:54', 'hash': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581', 'from': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:24:16.000Z'}}, {'blockNum': '0x6f3e75', 'uniqueId': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664:log:51', 'hash': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:14.000Z'}}, {'blockNum': '0x6f3e7a', 'uniqueId': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a:log:58', 'hash': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:52.000Z'}}, {'blockNum': '0x6f3e7d', 'uniqueId': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873:log:3', 'hash': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:46.000Z'}}, {'blockNum': '0x6f3e7e', 'uniqueId': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749:log:92', 'hash': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749', 'from': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:50.000Z'}}, {'blockNum': '0x6f3e81', 'uniqueId': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579:log:44', 'hash': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:31:15.000Z'}}, {'blockNum': '0x6f3e91', 'uniqueId': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75:log:57', 'hash': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75', 'from': '0xda42850bdd7353478edd2c05fa67d7a6c9175d56', 'to': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:35:33.000Z'}}, {'blockNum': '0x6f3ea1', 'uniqueId': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7:log:2', 'hash': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7', 'from': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'to': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:10.000Z'}}, {'blockNum': '0x6f3ea5', 'uniqueId': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba:log:47', 'hash': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba', 'from': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:26.000Z'}}, {'blockNum': '0x6f3ebf', 'uniqueId': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4:log:37', 'hash': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:43:48.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:11', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:12', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ecd', 'uniqueId': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de:log:90', 'hash': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de', 'from': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:46:24.000Z'}}, {'blockNum': '0x6f3eed', 'uniqueId': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1:log:74', 'hash': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1', 'from': '0xfc644ea1a3fe5e7854be5431078803d1cbee6bee', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:30.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1:log:23', 'hash': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0:log:38', 'hash': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0', 'from': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e:log:39', 'hash': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2157.2298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01492aca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3f0a', 'uniqueId': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8:log:45', 'hash': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:01:53.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:11', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:13', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0c', 'uniqueId': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea:log:32', 'hash': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:45.000Z'}}, {'blockNum': '0x6f3f11', 'uniqueId': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a:log:216', 'hash': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:03:22.000Z'}}, {'blockNum': '0x6f3f13', 'uniqueId': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3:log:5', 'hash': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3', 'from': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'to': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:32.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:47', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:49', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:54', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:55', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:217', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:218', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f1a', 'uniqueId': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf:log:73', 'hash': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:05:40.000Z'}}, {'blockNum': '0x6f3f1b', 'uniqueId': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0:log:9', 'hash': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0', 'from': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:06:21.000Z'}}, {'blockNum': '0x6f3f27', 'uniqueId': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99:log:9', 'hash': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd73325ba5dc21ec50e7607906a47114669ed2d68', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:09:10.000Z'}}, {'blockNum': '0x6f3f31', 'uniqueId': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d:log:16', 'hash': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:11:20.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:24', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:25', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b:log:13', 'hash': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8:log:47', 'hash': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51:log:50', 'hash': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51', 'from': '0xf5177ebddc0b0d68959d7f8d0c6c55d3fdb6a871', 'to': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:123', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:124', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f5f', 'uniqueId': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351:log:52', 'hash': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351', 'from': '0x0378ed3c26c6d33d056ff54f6c34d918160dc296', 'to': '0x0f43e914e155acbaf69cc32052eaf53e98f6302f', 'value': 213.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2090e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:23:31.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77:log:3', 'hash': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70:log:16', 'hash': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f72', 'uniqueId': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc:log:31', 'hash': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:28:27.000Z'}}, {'blockNum': '0x6f3f7b', 'uniqueId': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9:log:81', 'hash': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:29:45.000Z'}}, {'blockNum': '0x6f3f81', 'uniqueId': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b:log:81', 'hash': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:30:44.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:55', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x6cac5eeb01d56e889afac1f8d7f6666b344225e3', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:56', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592:log:6', 'hash': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc:log:15', 'hash': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483:log:16', 'hash': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483', 'from': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3fa0', 'uniqueId': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c:log:8', 'hash': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:39:13.000Z'}}, {'blockNum': '0x6f3fac', 'uniqueId': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27:log:40', 'hash': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27', 'from': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:42:18.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f:log:11', 'hash': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939:log:12', 'hash': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7dd14ea7767e0990a0bbed5f5bd4aa4bb55ed1b5', 'value': 4322.1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02938097', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb5', 'uniqueId': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5:log:36', 'hash': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23c34600', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:28.000Z'}}, {'blockNum': '0x6f3fb6', 'uniqueId': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac:log:41', 'hash': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:39.000Z'}}, {'blockNum': '0x6f3fbc', 'uniqueId': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617:log:57', 'hash': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617', 'from': '0xad12513975e2713a5f95871992624fc0fed9ffdb', 'to': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:47:56.000Z'}}, {'blockNum': '0x6f3fd3', 'uniqueId': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6:log:45', 'hash': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:53:11.000Z'}}, {'blockNum': '0x6f3fff', 'uniqueId': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34:log:13', 'hash': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:05:03.000Z'}}, {'blockNum': '0x6f4016', 'uniqueId': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f:log:10', 'hash': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:11:40.000Z'}}, {'blockNum': '0x6f4028', 'uniqueId': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1:log:4', 'hash': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1', 'from': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:15:03.000Z'}}, {'blockNum': '0x6f4039', 'uniqueId': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d:log:33', 'hash': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:18:47.000Z'}}, {'blockNum': '0x6f403f', 'uniqueId': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f:log:26', 'hash': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f', 'from': '0x79ef17f3a5ddf966c914b3de0dfc629faa820bfb', 'to': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:20:22.000Z'}}, {'blockNum': '0x6f404d', 'uniqueId': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f:log:43', 'hash': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f', 'from': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'to': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:24:02.000Z'}}, {'blockNum': '0x6f4053', 'uniqueId': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851:log:82', 'hash': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851', 'from': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:25:27.000Z'}}, {'blockNum': '0x6f4070', 'uniqueId': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d:log:8', 'hash': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:31:27.000Z'}}, {'blockNum': '0x6f4088', 'uniqueId': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488:log:8', 'hash': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 2371.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169e488', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:35:41.000Z'}}, {'blockNum': '0x6f408c', 'uniqueId': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6:log:72', 'hash': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 2372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169f040', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:36:51.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825:log:41', 'hash': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825', 'from': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45:log:43', 'hash': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40bd', 'uniqueId': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115:log:28', 'hash': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:49:46.000Z'}}, {'blockNum': '0x6f40ca', 'uniqueId': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555:log:31', 'hash': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:52:57.000Z'}}, {'blockNum': '0x6f40cb', 'uniqueId': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4:log:2', 'hash': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:43.000Z'}}, {'blockNum': '0x6f40cc', 'uniqueId': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6:log:90', 'hash': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:57.000Z'}}, {'blockNum': '0x6f410f', 'uniqueId': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27:log:21', 'hash': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27', 'from': '0x287f05e0e7847148adfbd4be181632d5e362e60b', 'to': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:08:34.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8:log:21', 'hash': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23:log:25', 'hash': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368:log:35', 'hash': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f417c', 'uniqueId': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8:log:74', 'hash': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8', 'from': '0x0b946efae53975b97a0d1d02f75fabf55d0d6a96', 'to': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:33:02.000Z'}}, {'blockNum': '0x6f4180', 'uniqueId': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82:log:48', 'hash': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82', 'from': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:47.000Z'}}, {'blockNum': '0x6f4181', 'uniqueId': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c:log:52', 'hash': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c', 'from': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:58.000Z'}}, {'blockNum': '0x6f41a1', 'uniqueId': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050:log:1', 'hash': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 77.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0bdb28', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:42:22.000Z'}}, {'blockNum': '0x6f41b6', 'uniqueId': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed:log:94', 'hash': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 20865.564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0c6fd518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:49:56.000Z'}}, {'blockNum': '0x6f42f5', 'uniqueId': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69:log:7', 'hash': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x952f68', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:03:48.000Z'}}, {'blockNum': '0x6f4305', 'uniqueId': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188:log:0', 'hash': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 77726.872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2e542df0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:10:57.000Z'}}, {'blockNum': '0x6f4331', 'uniqueId': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123:log:4', 'hash': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123', 'from': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb71b00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:21:19.000Z'}}, {'blockNum': '0x6f4349', 'uniqueId': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08:log:3', 'hash': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:26:18.000Z'}}, {'blockNum': '0x6f4363', 'uniqueId': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a:log:79', 'hash': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 209770.7957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb5', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:31:27.000Z'}}, {'blockNum': '0x6f4365', 'uniqueId': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b:log:78', 'hash': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 209770.7958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:32:09.000Z'}}, {'blockNum': '0x6f436a', 'uniqueId': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f:log:73', 'hash': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x719fbeead55ae2729c0263f3f31edf3e7780c18a', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:33:57.000Z'}}, {'blockNum': '0x6f4384', 'uniqueId': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81:log:6', 'hash': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:27.000Z'}}, {'blockNum': '0x6f4388', 'uniqueId': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd:log:113', 'hash': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd', 'from': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:58.000Z'}}, {'blockNum': '0x6f4389', 'uniqueId': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4:log:11', 'hash': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:41:19.000Z'}}, {'blockNum': '0x6f438c', 'uniqueId': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471:log:37', 'hash': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471', 'from': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:42:01.000Z'}}, {'blockNum': '0x6f4392', 'uniqueId': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80:log:2', 'hash': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:43:40.000Z'}}, {'blockNum': '0x6f439a', 'uniqueId': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53:log:29', 'hash': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 211682.6873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7e2c36f9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:45:20.000Z'}}, {'blockNum': '0x6f43b9', 'uniqueId': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f:log:18', 'hash': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x09957a6b7bdff098d7749016a7e61a31f5b99bdc', 'value': 2256.419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01584d5e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:51:35.000Z'}}, {'blockNum': '0x6f43f5', 'uniqueId': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8:log:58', 'hash': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:06:24.000Z'}}, {'blockNum': '0x6f4415', 'uniqueId': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5:log:68', 'hash': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:12:08.000Z'}}, {'blockNum': '0x6f4422', 'uniqueId': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73:log:38', 'hash': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:14:37.000Z'}}, {'blockNum': '0x6f4424', 'uniqueId': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85:log:4', 'hash': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:15:03.000Z'}}, {'blockNum': '0x6f442c', 'uniqueId': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c:log:0', 'hash': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:34.000Z'}}, {'blockNum': '0x6f442f', 'uniqueId': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474:log:3', 'hash': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:52.000Z'}}, {'blockNum': '0x6f4440', 'uniqueId': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28:log:74', 'hash': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:20:24.000Z'}}, {'blockNum': '0x6f4450', 'uniqueId': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2:log:52', 'hash': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:23:56.000Z'}}, {'blockNum': '0x6f4456', 'uniqueId': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94:log:17', 'hash': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:26:32.000Z'}}, {'blockNum': '0x6f446f', 'uniqueId': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7:log:57', 'hash': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7', 'from': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:31:53.000Z'}}, {'blockNum': '0x6f44a2', 'uniqueId': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7:log:19', 'hash': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:45:15.000Z'}}, {'blockNum': '0x6f44e5', 'uniqueId': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d:log:33', 'hash': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:57:29.000Z'}}, {'blockNum': '0x6f44ea', 'uniqueId': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107:log:73', 'hash': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:58:29.000Z'}}, {'blockNum': '0x6f44f2', 'uniqueId': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9:log:33', 'hash': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9', 'from': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:06.000Z'}}, {'blockNum': '0x6f44f6', 'uniqueId': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347:log:73', 'hash': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347', 'from': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:45.000Z'}}, {'blockNum': '0x6f4549', 'uniqueId': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e:log:5', 'hash': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:19:36.000Z'}}, {'blockNum': '0x6f454c', 'uniqueId': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825:log:85', 'hash': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xcae9000485f5e732717ad7366577d2b04d479795', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:20:01.000Z'}}, {'blockNum': '0x6f4769', 'uniqueId': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065:log:96', 'hash': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065', 'from': '0xf78b4770ea558a445f160ac4be425c4e6de0ccd7', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 3500.0417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02161061', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:18:28.000Z'}}, {'blockNum': '0x6f47a4', 'uniqueId': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6:log:3', 'hash': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:30:23.000Z'}}, {'blockNum': '0x6f47ae', 'uniqueId': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d:log:43', 'hash': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:32:39.000Z'}}, {'blockNum': '0x6f481c', 'uniqueId': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083:log:0', 'hash': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083', 'from': '0x60426cbccd32998755338c2ef77c589848138b4c', 'to': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:00:01.000Z'}}, {'blockNum': '0x6f48ca', 'uniqueId': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6:log:53', 'hash': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6', 'from': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:34:56.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:121', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:122', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:92', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:93', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f4947', 'uniqueId': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75:log:55', 'hash': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:59:49.000Z'}}, {'blockNum': '0x6f4948', 'uniqueId': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1:log:68', 'hash': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1132818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a3364f20', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:00:49.000Z'}}, {'blockNum': '0x6f498b', 'uniqueId': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849:log:6', 'hash': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:17:57.000Z'}}, {'blockNum': '0x6f4a07', 'uniqueId': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05:log:3', 'hash': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:46:36.000Z'}}, {'blockNum': '0x6f4a0b', 'uniqueId': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322:log:65', 'hash': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:48:22.000Z'}}, {'blockNum': '0x6f4a28', 'uniqueId': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484:log:54', 'hash': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:56:30.000Z'}}, {'blockNum': '0x6f4a2d', 'uniqueId': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c:log:31', 'hash': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:57:54.000Z'}}]}}
Number of returned transfers:  166
Answer is complete
 
symbol             GRS
group              MPG
date        2019-03-05
hour             16:30
exchange       binance
Name: 494, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: GRS, Contract: 
Datetime timestamps:  2019-03-05 16:30:00 2019-03-05 04:30:00 2019-03-06 04:30:00
Unix timestamps:  1551756600.0 1551843000.0
Hex Block Numbers:  0x6f7ed5 0x6f97cb
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BLZ
group              MPG
date        2019-04-13
hour             16:59
exchange       binance
Name: 495, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-04-13 16:59:00 2019-04-13 04:59:00 2019-04-14 04:59:00
Unix timestamps:  1555124340.0 1555210740.0
Hex Block Numbers:  0x734fc2 0x736918
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7350ab', 'uniqueId': '0xc622dfde86c2f77bf95dfbe142e9683194b0dbb1bbd1862ccae55e695268e3d3:log:2', 'hash': '0xc622dfde86c2f77bf95dfbe142e9683194b0dbb1bbd1862ccae55e695268e3d3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 185200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2737b64d5058a7c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T03:44:30.000Z'}}, {'blockNum': '0x7350b9', 'uniqueId': '0x40fe3ce83de8f95467cfc8bc7abd4bed2c629892c431cb33a207322203ba42a3:log:6', 'hash': '0x40fe3ce83de8f95467cfc8bc7abd4bed2c629892c431cb33a207322203ba42a3', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 80065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10f45514b17312640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T03:46:39.000Z'}}, {'blockNum': '0x7350d7', 'uniqueId': '0x6332ed2d1f51c64ee7b602d1ff7e7aac2dc92457bafc66b95567c2605e06b2e3:log:2', 'hash': '0x6332ed2d1f51c64ee7b602d1ff7e7aac2dc92457bafc66b95567c2605e06b2e3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T03:54:15.000Z'}}, {'blockNum': '0x735105', 'uniqueId': '0x372cd66aac45c0b612060574fe49fd367a070fe9391edb5a98787807ee5277fd:log:52', 'hash': '0x372cd66aac45c0b612060574fe49fd367a070fe9391edb5a98787807ee5277fd', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xdde1c7ad4cca5672a5c6db767b7ed79794bf7ca8', 'value': 10032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021fd5f7a02f9ec00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:03:40.000Z'}}, {'blockNum': '0x73510d', 'uniqueId': '0xdc1dd0f65cf6ed922cc5273baedbcc48fb66cc2ddc0225ce23215bbad0385d42:log:6', 'hash': '0xdc1dd0f65cf6ed922cc5273baedbcc48fb66cc2ddc0225ce23215bbad0385d42', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:05:51.000Z'}}, {'blockNum': '0x735183', 'uniqueId': '0x12a33fe82dd1a15452d37fa38d0d8b3a1ae90ef9435ab62375d564427baa11d5:log:5', 'hash': '0x12a33fe82dd1a15452d37fa38d0d8b3a1ae90ef9435ab62375d564427baa11d5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 69.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03c9e79b3653468000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:33:14.000Z'}}, {'blockNum': '0x7351c7', 'uniqueId': '0x6411af7f42b85d6a0884cfca948cee3ecf2a05b2d9c6a770f08a0fd36b757395:log:7', 'hash': '0x6411af7f42b85d6a0884cfca948cee3ecf2a05b2d9c6a770f08a0fd36b757395', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 36982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d4cc5944f768180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:45:57.000Z'}}, {'blockNum': '0x7351d9', 'uniqueId': '0x38922b1505028d4d1d0505467f62a930c22b8dce7d459831aeaac3aa316f04d4:log:4', 'hash': '0x38922b1505028d4d1d0505467f62a930c22b8dce7d459831aeaac3aa316f04d4', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d4cc5944f768180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:49:03.000Z'}}, {'blockNum': '0x73521f', 'uniqueId': '0xf556e605d09994c3a1c1feb2926592c4695bb7e9e5ad948a4f17245fc5c5215d:log:79', 'hash': '0xf556e605d09994c3a1c1feb2926592c4695bb7e9e5ad948a4f17245fc5c5215d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 32058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06c9de1f1d6fc0a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:03:37.000Z'}}, {'blockNum': '0x735237', 'uniqueId': '0x76a11b813e4884998dcb34fe487e139dc28644063c248a458dae32f6ebf1a859:log:16', 'hash': '0x76a11b813e4884998dcb34fe487e139dc28644063c248a458dae32f6ebf1a859', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06c9de1f1d6fc0a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:08:59.000Z'}}, {'blockNum': '0x735265', 'uniqueId': '0x8a2c44af91e9678c6dd41c01316b6564e7fe107431d8865aac1f76b474c01057:log:43', 'hash': '0x8a2c44af91e9678c6dd41c01316b6564e7fe107431d8865aac1f76b474c01057', 'from': '0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c', 'to': '0x58251fb558105e823a17eef3b6fc281a2d5cbd32', 'value': 0.15021936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0215afb6472fc000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:20:49.000Z'}}, {'blockNum': '0x7352ae', 'uniqueId': '0x549c0be1231059f32da19f563e627749b8a5c501b8c7069579aef726e88fe340:log:17', 'hash': '0x549c0be1231059f32da19f563e627749b8a5c501b8c7069579aef726e88fe340', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 10282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x022d636a0ba116680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:38:34.000Z'}}, {'blockNum': '0x7352d8', 'uniqueId': '0xd276c72d96de1144f7dac7ca2bfb9d3d3f99aeebce7966a70275b7f224c6aa19:log:67', 'hash': '0xd276c72d96de1144f7dac7ca2bfb9d3d3f99aeebce7966a70275b7f224c6aa19', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x022d636a0ba116680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:49:51.000Z'}}, {'blockNum': '0x735318', 'uniqueId': '0xbba35d46eae288bf46526aee3c68e759a8e3a1d91d2e7d00e3cdcd21f5053452:log:9', 'hash': '0xbba35d46eae288bf46526aee3c68e759a8e3a1d91d2e7d00e3cdcd21f5053452', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 67315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e41274949d83bec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T06:01:21.000Z'}}, {'blockNum': '0x735364', 'uniqueId': '0xeb9b02abf4f8db7a3f2ba3b100d80ad4333a7ad7403ce3834c9a1a99682e8a4e:log:1', 'hash': '0xeb9b02abf4f8db7a3f2ba3b100d80ad4333a7ad7403ce3834c9a1a99682e8a4e', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e41274949d83bec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T06:19:02.000Z'}}, {'blockNum': '0x7353c4', 'uniqueId': '0xc927ea70e83d7f8edfbffbbda5849dd08faf533dc957b8acd9eb69b54d616ea2:log:6', 'hash': '0xc927ea70e83d7f8edfbffbbda5849dd08faf533dc957b8acd9eb69b54d616ea2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcb972f1c6d0af7e841dfcf4bf49f12d87be969b0', 'value': 285.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f7ce24c4be91a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T06:42:31.000Z'}}, {'blockNum': '0x73540e', 'uniqueId': '0x2dde975f41fc7b95d98bacacd45e08e0caa7d3a19c1bd07a2464e84fbe05ec22:log:68', 'hash': '0x2dde975f41fc7b95d98bacacd45e08e0caa7d3a19c1bd07a2464e84fbe05ec22', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:01:57.000Z'}}, {'blockNum': '0x73540e', 'uniqueId': '0x870329ed7c1905840a72cbbe7fffbf91a863de67b4787019c17d95856f06c807:log:70', 'hash': '0x870329ed7c1905840a72cbbe7fffbf91a863de67b4787019c17d95856f06c807', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:01:57.000Z'}}, {'blockNum': '0x73540e', 'uniqueId': '0xe3c8003e837ceb4dc7e5744adacec1633f8f4f0e1596be9a770c7d6a68d8622b:log:73', 'hash': '0xe3c8003e837ceb4dc7e5744adacec1633f8f4f0e1596be9a770c7d6a68d8622b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 103408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5c24818ef59c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:01:57.000Z'}}, {'blockNum': '0x73542d', 'uniqueId': '0x11688c696c01aacccec7837090744f103dec8aa72b49813278e71c52a4095f9e:log:28', 'hash': '0x11688c696c01aacccec7837090744f103dec8aa72b49813278e71c52a4095f9e', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:08:47.000Z'}}, {'blockNum': '0x73542e', 'uniqueId': '0x678aecce24353f98029a45ebf7f7f55d59f9c6a3f8c3243b37ea6237ccf4d72e:log:7', 'hash': '0x678aecce24353f98029a45ebf7f7f55d59f9c6a3f8c3243b37ea6237ccf4d72e', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 103408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5c24818ef59c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:09:07.000Z'}}, {'blockNum': '0x73543a', 'uniqueId': '0x220c9ab64cb9ee1f1145bdecdf1a784efecc562a3d95167300b7a586ec193fde:log:24', 'hash': '0x220c9ab64cb9ee1f1145bdecdf1a784efecc562a3d95167300b7a586ec193fde', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:11:16.000Z'}}, {'blockNum': '0x735473', 'uniqueId': '0x68508aa4d84a0051e40a641a79dad8a243a28bc17a9bc48c64a79414e5a045f2:log:74', 'hash': '0x68508aa4d84a0051e40a641a79dad8a243a28bc17a9bc48c64a79414e5a045f2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 26998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05b79083e6772c180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:23:54.000Z'}}, {'blockNum': '0x73548c', 'uniqueId': '0x8403f9cf146010cdccaf37e9ab882d2816c0e0503a6656a66daa3e5b536ccb3f:log:14', 'hash': '0x8403f9cf146010cdccaf37e9ab882d2816c0e0503a6656a66daa3e5b536ccb3f', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05b79083e6772c180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:29:17.000Z'}}, {'blockNum': '0x7354a3', 'uniqueId': '0x5225e3cc8beb9287b9d00d1325b03257c507187ee828cedf5b1697d6223ae3a5:log:7', 'hash': '0x5225e3cc8beb9287b9d00d1325b03257c507187ee828cedf5b1697d6223ae3a5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:36:30.000Z'}}, {'blockNum': '0x7354b0', 'uniqueId': '0xfea7e9aa5e519e054eadce20b813d9286a1960e4abc5116dea559bfca68df199:log:14', 'hash': '0xfea7e9aa5e519e054eadce20b813d9286a1960e4abc5116dea559bfca68df199', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:38:52.000Z'}}, {'blockNum': '0x735546', 'uniqueId': '0xf27e7fd2f417bb87181a9b0024f1ecad4aa91525d65eba7179d04b037112f63e:log:30', 'hash': '0xf27e7fd2f417bb87181a9b0024f1ecad4aa91525d65eba7179d04b037112f63e', 'from': '0x426d0a5e194dcc628ad8467b398c2ce7cf828f1e', 'to': '0x9ea66a773e14ee249ab7f9ebb427e5995372193d', 'value': 570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ee656cc02b4a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T08:14:33.000Z'}}, {'blockNum': '0x7355b6', 'uniqueId': '0xbff24fce7f03b1e651db4842fb393940c4107cca5417369b2398dba142ed368a:log:21', 'hash': '0xbff24fce7f03b1e651db4842fb393940c4107cca5417369b2398dba142ed368a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 171.164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x094760af225ef60000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T08:42:49.000Z'}}, {'blockNum': '0x7355d3', 'uniqueId': '0xdf02f2a715156d895e175bf4f86a339acbb6a5c59aedba2bd62ca0e574a21c9c:log:2', 'hash': '0xdf02f2a715156d895e175bf4f86a339acbb6a5c59aedba2bd62ca0e574a21c9c', 'from': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'to': '0x1cf78337f278a12c203e570921446d3438539e7c', 'value': 491.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1a9ebab5ca29e48000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T08:49:03.000Z'}}, {'blockNum': '0x73560e', 'uniqueId': '0x9d56daac5fa80a97f6d76008f587e6bb9fd4df2c1a5946fa51d933bd99687826:log:1', 'hash': '0x9d56daac5fa80a97f6d76008f587e6bb9fd4df2c1a5946fa51d933bd99687826', 'from': '0x1cf78337f278a12c203e570921446d3438539e7c', 'to': '0x24f738a0ac7b2564dc8ead7dfab8cf1533687fd7', 'value': 400.00011629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15af1de2796c641400', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T09:02:13.000Z'}}, {'blockNum': '0x735716', 'uniqueId': '0x0d8c25ba514dc4b63d5d8bfb72f17a3e3689e4682a0ccf93dc42fc4fca2b9579:log:4', 'hash': '0x0d8c25ba514dc4b63d5d8bfb72f17a3e3689e4682a0ccf93dc42fc4fca2b9579', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 15082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033198cbb423a9680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:03:43.000Z'}}, {'blockNum': '0x735731', 'uniqueId': '0xb3f5607990eb18ed24ea455363842d92561507caceff4d87fc7a78d0089690ea:log:82', 'hash': '0xb3f5607990eb18ed24ea455363842d92561507caceff4d87fc7a78d0089690ea', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033198cbb423a9680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:09:06.000Z'}}, {'blockNum': '0x73577f', 'uniqueId': '0x11c3664a59f78ce830d1fbabec51bd3d66b5e4475b1e6a930ad354fc79894aa8:log:63', 'hash': '0x11c3664a59f78ce830d1fbabec51bd3d66b5e4475b1e6a930ad354fc79894aa8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 30054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065d3b08e71565d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:26:57.000Z'}}, {'blockNum': '0x7357a9', 'uniqueId': '0xa3147b558873486e5e3c1d3b59ffdcaaead11007969c045b11995d30fa5c852a:log:76', 'hash': '0xa3147b558873486e5e3c1d3b59ffdcaaead11007969c045b11995d30fa5c852a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x98525cb4894100899fa84dcbb96e57972df09ca2', 'value': 19998.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x043c18dff838a2918000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:36:08.000Z'}}, {'blockNum': '0x7357b9', 'uniqueId': '0xcd1e4a9714881a662699c3c73e2769baae214fc85b3cc6d05eeca8bce6fa1800:log:26', 'hash': '0xcd1e4a9714881a662699c3c73e2769baae214fc85b3cc6d05eeca8bce6fa1800', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065d3b08e71565d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:39:05.000Z'}}, {'blockNum': '0x7357e3', 'uniqueId': '0xa2361acf4aa1cef3f7376ede3a7c41a071034d2e403e10809f17f524d6e5b876:log:4', 'hash': '0xa2361acf4aa1cef3f7376ede3a7c41a071034d2e403e10809f17f524d6e5b876', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xaf64fa82f409d3b5abb69e0be8f2215a84bd86ff', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:49:54.000Z'}}, {'blockNum': '0x735811', 'uniqueId': '0x1b5fb263f3dc3399a369d03006451974e10fff259697fe2bc7254d7ee4ec5a5e:log:73', 'hash': '0x1b5fb263f3dc3399a369d03006451974e10fff259697fe2bc7254d7ee4ec5a5e', 'from': '0xaf64fa82f409d3b5abb69e0be8f2215a84bd86ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:58:53.000Z'}}, {'blockNum': '0x735879', 'uniqueId': '0x76f83e12d92698b00c248eb992969c9e44d9ac66243bf1dbc8c39eebf296dbb9:log:91', 'hash': '0x76f83e12d92698b00c248eb992969c9e44d9ac66243bf1dbc8c39eebf296dbb9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 62277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d300afdc65009f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:21:13.000Z'}}, {'blockNum': '0x735887', 'uniqueId': '0x8a784ae7f7bb6d0249a1357176eca2fa48f8f32aa85ba6f8219c4d1841b28e7e:log:42', 'hash': '0x8a784ae7f7bb6d0249a1357176eca2fa48f8f32aa85ba6f8219c4d1841b28e7e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 36425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07b69a6bc01433840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:24:55.000Z'}}, {'blockNum': '0x73589a', 'uniqueId': '0xa6d5d6d526e0c2a2d755a9dbba3398754112996e80f1c1e7b861ae22ac5f5a7c:log:21', 'hash': '0xa6d5d6d526e0c2a2d755a9dbba3398754112996e80f1c1e7b861ae22ac5f5a7c', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07b69a6bc01433840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:29:30.000Z'}}, {'blockNum': '0x73589a', 'uniqueId': '0x65711e151081aed9af4b74c68c8132ead1715efdda43c30b5ab5ca5e471514ee:log:27', 'hash': '0x65711e151081aed9af4b74c68c8132ead1715efdda43c30b5ab5ca5e471514ee', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d300afdc65009f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:29:30.000Z'}}, {'blockNum': '0x7358c3', 'uniqueId': '0xf8df4f97b5fd73b3e692aa22cdc7d6e1321443bdde44347fd3f746f647468e60:log:95', 'hash': '0xf8df4f97b5fd73b3e692aa22cdc7d6e1321443bdde44347fd3f746f647468e60', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 265265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x382c0b6201cbba240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:37:05.000Z'}}, {'blockNum': '0x7358c3', 'uniqueId': '0x135ff771c63f04a4519c45ca2b8ea1079934da06a5c1b50ca6ed699b6d9ca5a3:log:97', 'hash': '0x135ff771c63f04a4519c45ca2b8ea1079934da06a5c1b50ca6ed699b6d9ca5a3', 'from': '0xdde1c7ad4cca5672a5c6db767b7ed79794bf7ca8', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 10032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021fd5f7a02f9ec00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:37:05.000Z'}}, {'blockNum': '0x73593a', 'uniqueId': '0x909c63600b431ac653e43b3a2b3a5f3eab4fee90179c83a67cde0e798574f74d:log:8', 'hash': '0x909c63600b431ac653e43b3a2b3a5f3eab4fee90179c83a67cde0e798574f74d', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'value': 963.9642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3441b0cc99499a8000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:01:54.000Z'}}, {'blockNum': '0x735946', 'uniqueId': '0x30a92090030b8f9ec7234d2fbf1ad290936580a8a9773cb2cb8ad6b97c91ef87:log:0', 'hash': '0x30a92090030b8f9ec7234d2fbf1ad290936580a8a9773cb2cb8ad6b97c91ef87', 'from': '0xcb972f1c6d0af7e841dfcf4bf49f12d87be969b0', 'to': '0x1cf78337f278a12c203e570921446d3438539e7c', 'value': 285.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f7ce24c4be91a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:04:40.000Z'}}, {'blockNum': '0x73597f', 'uniqueId': '0x82e9157b8474697caee33962d404032c250ec2daea0bc51bad5b585d64f4bdd7:log:0', 'hash': '0x82e9157b8474697caee33962d404032c250ec2daea0bc51bad5b585d64f4bdd7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x16fb6a3c8e7c63aeaa75de6b13e456acbe58fad6', 'value': 964.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x344c2df0b1c2d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:17:57.000Z'}}, {'blockNum': '0x735995', 'uniqueId': '0xb7720690eecd83f547437b857bbe4709e8172c40c0b2d6c36552d0b1e1ace55a:log:37', 'hash': '0xb7720690eecd83f547437b857bbe4709e8172c40c0b2d6c36552d0b1e1ace55a', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'value': 1444.9004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4e54056a63bbd30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:21:55.000Z'}}, {'blockNum': '0x73599b', 'uniqueId': '0x09226ad8a040fadc965665095c5de3efe648b01e7144c8ea71bbfa96daecc159:log:88', 'hash': '0x09226ad8a040fadc965665095c5de3efe648b01e7144c8ea71bbfa96daecc159', 'from': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 2408.8645999999994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x8295b636fd05676580', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:23:17.000Z'}}, {'blockNum': '0x7359cc', 'uniqueId': '0x3f0d4caf66e33f90421994b9cb3380c17e4f0b1dd6d374e207de75fdeed87f45:log:5', 'hash': '0x3f0d4caf66e33f90421994b9cb3380c17e4f0b1dd6d374e207de75fdeed87f45', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 14628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0318fc47b188ce100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:33:36.000Z'}}, {'blockNum': '0x7359ea', 'uniqueId': '0xb385b35dbfdb32937e8306555ce0964a1a46964e7c5cf51ea81a05bf3ea6a56e:log:32', 'hash': '0xb385b35dbfdb32937e8306555ce0964a1a46964e7c5cf51ea81a05bf3ea6a56e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc5b426c2f0b0e80a12815a7e8f9c134cbae6e7de', 'value': 1386.298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4b26bfde1412790000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:40:06.000Z'}}, {'blockNum': '0x735a11', 'uniqueId': '0x796e79b874300ddae261cfe996131e94a107f7603e119207954e801b8d615500:log:9', 'hash': '0x796e79b874300ddae261cfe996131e94a107f7603e119207954e801b8d615500', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0318fc47b188ce100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:48:19.000Z'}}, {'blockNum': '0x735a2d', 'uniqueId': '0xb9a84946d47baf6856244c4eea0468846ec6239d6647dfe60c498e9b893d32f1:log:48', 'hash': '0xb9a84946d47baf6856244c4eea0468846ec6239d6647dfe60c498e9b893d32f1', 'from': '0xc5b426c2f0b0e80a12815a7e8f9c134cbae6e7de', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 1386.2979989999997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4b26bfdd2b3dcf5c20', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:55:31.000Z'}}, {'blockNum': '0x735a76', 'uniqueId': '0xeca8a246909f5b412a11d6e7f56041f99ba058ef3597888b6882e5a2936e7d72:log:50', 'hash': '0xeca8a246909f5b412a11d6e7f56041f99ba058ef3597888b6882e5a2936e7d72', 'from': '0x65b7a521bbbcd884f36578099f259e88fca9cead', 'to': '0xf609a55e8804330f4e0f1f372110b44b91bd90e2', 'value': 178.94022273985553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09b34b6084165d5bca', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T13:11:44.000Z'}}, {'blockNum': '0x735b33', 'uniqueId': '0x66f27839872d3819cbccac90b6b6c315c855d67ebf3447d557e78e1a618aa6d9:log:14', 'hash': '0x66f27839872d3819cbccac90b6b6c315c855d67ebf3447d557e78e1a618aa6d9', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 10058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02213eca2e6e9ee80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T13:53:56.000Z'}}, {'blockNum': '0x735b49', 'uniqueId': '0x80d4f24ef1ce328f689dfc9770b2731108283ac5e637b59750cd39fbf6f2e9fc:log:16', 'hash': '0x80d4f24ef1ce328f689dfc9770b2731108283ac5e637b59750cd39fbf6f2e9fc', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02213eca2e6e9ee80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T13:59:08.000Z'}}, {'blockNum': '0x735bd7', 'uniqueId': '0x3435b53f0710be98abff6263137798013642b8ea9aa4660d7c21a246a98580f6:log:48', 'hash': '0x3435b53f0710be98abff6263137798013642b8ea9aa4660d7c21a246a98580f6', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 10981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025347fce82b24740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T14:31:26.000Z'}}, {'blockNum': '0x735bf0', 'uniqueId': '0x69503cf66c4cefa8f159e303f6baaf087fb96cf65cdf4d011b23fc19dc470b97:log:45', 'hash': '0x69503cf66c4cefa8f159e303f6baaf087fb96cf65cdf4d011b23fc19dc470b97', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025347fce82b24740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T14:38:58.000Z'}}, {'blockNum': '0x735d66', 'uniqueId': '0xfa3d51d2a70d0f6a01a42ca974e3d06ded7ec4a0d9c189b9143c9b6e6664aa3f:log:6', 'hash': '0xfa3d51d2a70d0f6a01a42ca974e3d06ded7ec4a0d9c189b9143c9b6e6664aa3f', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:04:09.000Z'}}, {'blockNum': '0x735da6', 'uniqueId': '0x47f528bf8f507b0b6986b30dd9d5f88a0b37b2c7bceaf554da4db703a7155ca5:log:28', 'hash': '0x47f528bf8f507b0b6986b30dd9d5f88a0b37b2c7bceaf554da4db703a7155ca5', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:18:32.000Z'}}, {'blockNum': '0x735db5', 'uniqueId': '0xb453f808d59ee5a80463aa3dcb3422bf353a7c4f55bb2efe997523017415ee14:log:4', 'hash': '0xb453f808d59ee5a80463aa3dcb3422bf353a7c4f55bb2efe997523017415ee14', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x8d7d296ecac771217394e7dd22a8748f735a01f9', 'value': 675.2428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x249ae05502a4230000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:21:47.000Z'}}, {'blockNum': '0x735dda', 'uniqueId': '0x7451c64cf52ffebdbb1529e4905f86578064dd773595dceb76b9227d5eb07d16:log:7', 'hash': '0x7451c64cf52ffebdbb1529e4905f86578064dd773595dceb76b9227d5eb07d16', 'from': '0x8d7d296ecac771217394e7dd22a8748f735a01f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 675.2428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x249ae05502a4230000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:29:24.000Z'}}, {'blockNum': '0x735e24', 'uniqueId': '0xfe0da20756aa9618f7afeebe415b1a2fb0267bd69976127990ad5e0dbb5ed244:log:10', 'hash': '0xfe0da20756aa9618f7afeebe415b1a2fb0267bd69976127990ad5e0dbb5ed244', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 19137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x040d6b39abd41a640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:43:08.000Z'}}, {'blockNum': '0x735e41', 'uniqueId': '0xc0c44dddbdc973b4dd46a4b3cf9167099d2a108c025008c36a085614dd8b4578:log:7', 'hash': '0xc0c44dddbdc973b4dd46a4b3cf9167099d2a108c025008c36a085614dd8b4578', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x040d6b39abd41a640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:48:51.000Z'}}, {'blockNum': '0x735e71', 'uniqueId': '0x3969eab046b76d1dc2441505cb43e20d86f5db8ad2fa618d08dc1cf78e541a0f:log:10', 'hash': '0x3969eab046b76d1dc2441505cb43e20d86f5db8ad2fa618d08dc1cf78e541a0f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 42482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08fef42e80b7b0880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:00:58.000Z'}}, {'blockNum': '0x735e73', 'uniqueId': '0x366007b8f1ef818d69fc62623d03cc8c060024949a7860031b15dfc1033129f8:log:27', 'hash': '0x366007b8f1ef818d69fc62623d03cc8c060024949a7860031b15dfc1033129f8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 130143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b8f10f04cd58e1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:01:36.000Z'}}, {'blockNum': '0x735e73', 'uniqueId': '0x29548d82a10a77fdd313eb6a9293b711b457a2845368b74e3412d692361172d5:log:28', 'hash': '0x29548d82a10a77fdd313eb6a9293b711b457a2845368b74e3412d692361172d5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0282b70d603847400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:01:36.000Z'}}, {'blockNum': '0x735e73', 'uniqueId': '0xaae6af0285bcfc5bd0d53ecc0ace215f6bf597c7b9062757c871e8c76757e726:log:60', 'hash': '0xaae6af0285bcfc5bd0d53ecc0ace215f6bf597c7b9062757c871e8c76757e726', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 11110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025a4638f8b27dd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:01:36.000Z'}}, {'blockNum': '0x735e79', 'uniqueId': '0x4610d1199958e1a1e34564c1482bc347b11096b4e27ba3d57161cb1247cd8123:log:6', 'hash': '0x4610d1199958e1a1e34564c1482bc347b11096b4e27ba3d57161cb1247cd8123', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 22110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04ae95e370330eb80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:02:38.000Z'}}, {'blockNum': '0x735e79', 'uniqueId': '0x09bf3c5ee20d3de7dabfee4a476f066a2367c7cfb9c3fff1a7f9f72ed83f462c:log:7', 'hash': '0x09bf3c5ee20d3de7dabfee4a476f066a2367c7cfb9c3fff1a7f9f72ed83f462c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:02:38.000Z'}}, {'blockNum': '0x735e79', 'uniqueId': '0xcf30fcb72d959db474ccce26c9c845cb08328d895f40299c24dc3d509ccd90ae:log:9', 'hash': '0xcf30fcb72d959db474ccce26c9c845cb08328d895f40299c24dc3d509ccd90ae', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 902.95182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x30f2f9483f0874c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:02:38.000Z'}}, {'blockNum': '0x735e7b', 'uniqueId': '0x068579a2de2e8e29e02fbeb5727c2b28c34c381d1e42c8d9fde3d9fa6f4a643c:log:5', 'hash': '0x068579a2de2e8e29e02fbeb5727c2b28c34c381d1e42c8d9fde3d9fa6f4a643c', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 30930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x068cb7fa15d630080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:03:04.000Z'}}, {'blockNum': '0x735e82', 'uniqueId': '0x43f2bbc8aac134acd08f074274b4c2f7a8c587f340b336ac137a83c51292c86f:log:1', 'hash': '0x43f2bbc8aac134acd08f074274b4c2f7a8c587f340b336ac137a83c51292c86f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 16147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x036b54a3c587086c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:17.000Z'}}, {'blockNum': '0x735e84', 'uniqueId': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c:log:13', 'hash': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c', 'from': '0xa285552a045b81ef343ad503bc163780a3cf5583', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:23.000Z'}}, {'blockNum': '0x735e84', 'uniqueId': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c:log:14', 'hash': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:23.000Z'}}, {'blockNum': '0x735e85', 'uniqueId': '0xbac88d8ffcb40e239f6defd583d5fe3e0d945b491fc3ae004fa54db758990219:log:23', 'hash': '0xbac88d8ffcb40e239f6defd583d5fe3e0d945b491fc3ae004fa54db758990219', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 1503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x517a50a8c3c41c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:29.000Z'}}, {'blockNum': '0x735e89', 'uniqueId': '0xba6da1481cf062551f4fcea581348a1431045474e3c8a9ef2677add6b508b6ea:log:2', 'hash': '0xba6da1481cf062551f4fcea581348a1431045474e3c8a9ef2677add6b508b6ea', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 99960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x152ad7ab5538cee00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:02.000Z'}}, {'blockNum': '0x735e89', 'uniqueId': '0xd1fd6d7a014c4f9ac6ef8cdeb0d9d3a36d0fedfe3bca25f2b6fa4f60ca673cf2:log:3', 'hash': '0xd1fd6d7a014c4f9ac6ef8cdeb0d9d3a36d0fedfe3bca25f2b6fa4f60ca673cf2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 65545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0de1339a13b4e2840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:02.000Z'}}, {'blockNum': '0x735e8a', 'uniqueId': '0xaf5661a11100adbe8e70c187bb895d05214da66fe79cc0a0c4019a5560304b91:log:10', 'hash': '0xaf5661a11100adbe8e70c187bb895d05214da66fe79cc0a0c4019a5560304b91', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'value': 53816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b655f07569ca5e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:12.000Z'}}, {'blockNum': '0x735e8a', 'uniqueId': '0x421d0ae1b04b1ad93e29f05069cef646c73cb7f065c69672dddff1262eb66f1a:log:12', 'hash': '0x421d0ae1b04b1ad93e29f05069cef646c73cb7f065c69672dddff1262eb66f1a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 46560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09dc05cce28c2b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:12.000Z'}}, {'blockNum': '0x735e8a', 'uniqueId': '0x6a3b8b393d318644163ed4e54a16689f749dac46a104b140dadb68753addd556:log:13', 'hash': '0x6a3b8b393d318644163ed4e54a16689f749dac46a104b140dadb68753addd556', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 10564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x023cacf34d877a900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:12.000Z'}}, {'blockNum': '0x735e8b', 'uniqueId': '0xc8632de21d666f9507de281eafe182e115fc347447062d196252c5ddd63fae89:log:48', 'hash': '0xc8632de21d666f9507de281eafe182e115fc347447062d196252c5ddd63fae89', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b87506a3e7b0d400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:45.000Z'}}, {'blockNum': '0x735e8e', 'uniqueId': '0xd1df98811b0f81ad8aeec3c214a06a75f48341f259f6ec9409f2ab69e6353645:log:53', 'hash': '0xd1df98811b0f81ad8aeec3c214a06a75f48341f259f6ec9409f2ab69e6353645', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'value': 11429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x026b913ca29013740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:07:01.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0xc2c09b7decf1f2397253397d7f704c9b10849af0e9ba4a45a7f6293749405fad:log:11', 'hash': '0xc2c09b7decf1f2397253397d7f704c9b10849af0e9ba4a45a7f6293749405fad', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 260143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3716615a8b509b5c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x9ffc083d2e79cee8715ec061fbd7a33a4276f5a9f132762446535c38e5f22a65:log:12', 'hash': '0x9ffc083d2e79cee8715ec061fbd7a33a4276f5a9f132762446535c38e5f22a65', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0de1339a13b4e2840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x1c06676d606d8163ebf18d461f3edf36f77d71c41bdeb2e742b8a707715104b9:log:13', 'hash': '0x1c06676d606d8163ebf18d461f3edf36f77d71c41bdeb2e742b8a707715104b9', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x023cacf34d877a900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x8a1a573cae4b31848ca80be85e082e7301f28313027291b812e59a87501c52cf:log:14', 'hash': '0x8a1a573cae4b31848ca80be85e082e7301f28313027291b812e59a87501c52cf', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x152ad7ab5538cee00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0xb1943fa7966260c4ab36176a162f48a94f83f31a7ab56105825929f8f7640346:log:15', 'hash': '0xb1943fa7966260c4ab36176a162f48a94f83f31a7ab56105825929f8f7640346', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09dc05cce28c2b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x5ebdc02f8b9142a1844e6955b93b5389e25be19d9bdebc5c6c562ce3aae5ce37:log:16', 'hash': '0x5ebdc02f8b9142a1844e6955b93b5389e25be19d9bdebc5c6c562ce3aae5ce37', 'from': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b655f07569ca5e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e9a', 'uniqueId': '0x45043433648bb47f2af367d49dcc36183112e44266fc75c109a429c34fde2873:log:0', 'hash': '0x45043433648bb47f2af367d49dcc36183112e44266fc75c109a429c34fde2873', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:09.000Z'}}, {'blockNum': '0x735e9a', 'uniqueId': '0x69f1a170964aea484c86803e746fb6717f03f436e0288d7ae27902fa2a857cf5:log:7', 'hash': '0x69f1a170964aea484c86803e746fb6717f03f436e0288d7ae27902fa2a857cf5', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 902.95182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x30f2f9483f0874c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:09.000Z'}}, {'blockNum': '0x735e9b', 'uniqueId': '0xc8e90f7eb4194b75b5633b389823bf9c2d0a0d37b95c1db2cabf80d23a7e9f0b:log:1', 'hash': '0xc8e90f7eb4194b75b5633b389823bf9c2d0a0d37b95c1db2cabf80d23a7e9f0b', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x068cb7fa15d630080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:13.000Z'}}, {'blockNum': '0x735e9b', 'uniqueId': '0xc6e060ac1c59685d9fc5bf75226328da65e1b541d3902d2c3b3241e22a2af1be:log:2', 'hash': '0xc6e060ac1c59685d9fc5bf75226328da65e1b541d3902d2c3b3241e22a2af1be', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x036b54a3c587086c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:13.000Z'}}, {'blockNum': '0x735e9c', 'uniqueId': '0x17946e2adef5fae347f5a022bc013e906ef9c8c58f979c70e99d2269042d158f:log:0', 'hash': '0x17946e2adef5fae347f5a022bc013e906ef9c8c58f979c70e99d2269042d158f', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04ae95e370330eb80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:21.000Z'}}, {'blockNum': '0x735e9d', 'uniqueId': '0xaec336597069de7b15f1fa059eee6ab6e3a0906ffd8eecde42d62d3648843850:log:15', 'hash': '0xaec336597069de7b15f1fa059eee6ab6e3a0906ffd8eecde42d62d3648843850', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025a4638f8b27dd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:23.000Z'}}, {'blockNum': '0x735ea0', 'uniqueId': '0x249c18b65776a0a579c36b1e51ae64284917da063037bc4bfaa10940ba8f09e2:log:2', 'hash': '0x249c18b65776a0a579c36b1e51ae64284917da063037bc4bfaa10940ba8f09e2', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 4645.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfbd6ca3180da710000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:57.000Z'}}, {'blockNum': '0x735ea5', 'uniqueId': '0xe051fbc7910ce2fe80c76c25499dbf85230d0db365654f8336afd3a65f4be543:log:42', 'hash': '0xe051fbc7910ce2fe80c76c25499dbf85230d0db365654f8336afd3a65f4be543', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 122222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x19e1aafb401740f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:11:04.000Z'}}, {'blockNum': '0x735ea8', 'uniqueId': '0x081143ee2e4480156efd8cd2fb787821bb85efdbc97bc3dcad7266674f677f1e:log:12', 'hash': '0x081143ee2e4480156efd8cd2fb787821bb85efdbc97bc3dcad7266674f677f1e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 20771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0465ff87d28686ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:12:33.000Z'}}, {'blockNum': '0x735ea8', 'uniqueId': '0xc18476e4721e405b78c0eac7df69e87bfc91cca962f4a242edd7372470d842c4:log:13', 'hash': '0xc18476e4721e405b78c0eac7df69e87bfc91cca962f4a242edd7372470d842c4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:12:33.000Z'}}, {'blockNum': '0x735eab', 'uniqueId': '0xce2d279927f2e3c23304fff31908e625e15e841cb39f8a596612ea4243c9d628:log:0', 'hash': '0xce2d279927f2e3c23304fff31908e625e15e841cb39f8a596612ea4243c9d628', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 30026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065bb674eb6f16e80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:13:44.000Z'}}, {'blockNum': '0x735eb4', 'uniqueId': '0x4364bb3cd68815a26b1268c1137198aaf1063b35ead44f416d98d7220851bc65:log:6', 'hash': '0x4364bb3cd68815a26b1268c1137198aaf1063b35ead44f416d98d7220851bc65', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 52715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b29af9593f5bccc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:15:30.000Z'}}, {'blockNum': '0x735eb4', 'uniqueId': '0xa6e5f344984f3fc844b2146e0e4c0c06658df78e20e3d33aa94864595e2cf2e8:log:11', 'hash': '0xa6e5f344984f3fc844b2146e0e4c0c06658df78e20e3d33aa94864595e2cf2e8', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 11171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025d94c4818160ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:15:30.000Z'}}, {'blockNum': '0x735eb8', 'uniqueId': '0x1af1e8b197d503279b73de6ea399494cf5077318d89d84cc102d8f95fa0c9476:log:6', 'hash': '0x1af1e8b197d503279b73de6ea399494cf5077318d89d84cc102d8f95fa0c9476', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x027343e1fa36ecec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:16:24.000Z'}}, {'blockNum': '0x735ebd', 'uniqueId': '0x273c5d59d09f2e9a4b79e54e261322964b126e0040699204256e9a54b40d79a2:log:19', 'hash': '0x273c5d59d09f2e9a4b79e54e261322964b126e0040699204256e9a54b40d79a2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 21168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047b850327211cc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:17:10.000Z'}}, {'blockNum': '0x735ec0', 'uniqueId': '0x613a9fda29eaa8947a5756c00ec24b0e89c701a8f5a7c1771ee68a14b800bbf1:log:2', 'hash': '0x613a9fda29eaa8947a5756c00ec24b0e89c701a8f5a7c1771ee68a14b800bbf1', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 44790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x097c121dac68d2180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:04.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x342529cbe40f51588c844e9c4f939facc3e26917b23cc86ce9aa3a99a4aecea5:log:3', 'hash': '0x342529cbe40f51588c844e9c4f939facc3e26917b23cc86ce9aa3a99a4aecea5', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065bb674eb6f16e80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x1e142d58d4adadabf7a3821994ed0383d35566e7ea20f5569c6df3b3e7ddf888:log:4', 'hash': '0x1e142d58d4adadabf7a3821994ed0383d35566e7ea20f5569c6df3b3e7ddf888', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0760e5a36c936ef00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x5d7483a5efffcfad32d37fbdaa277a73658af0c0c75bd015780e21998aaefb84:log:6', 'hash': '0x5d7483a5efffcfad32d37fbdaa277a73658af0c0c75bd015780e21998aaefb84', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x517a50a8c3c41c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0xf96c413430d1874bf59ae17afc300b7b551c96ee0adae15d3e56994796074db7:log:7', 'hash': '0xf96c413430d1874bf59ae17afc300b7b551c96ee0adae15d3e56994796074db7', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1428a3c414ad6d540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0xad3898f9cada63fff8a3d43970110da4132b1a5fdfa3e31baaa44fcc5d4b0982:log:9', 'hash': '0xad3898f9cada63fff8a3d43970110da4132b1a5fdfa3e31baaa44fcc5d4b0982', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x61b47fec9f8c4ec619ecb0e18dbb216be643dd97dddadc57b2248158d3e22035:log:18', 'hash': '0x61b47fec9f8c4ec619ecb0e18dbb216be643dd97dddadc57b2248158d3e22035', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4645.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfbd6ca3180da710000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0xffecad9e0344b0db2e9dfd59886f39ac513e2e292c31ce445c12f7fa5bf04ac9:log:29', 'hash': '0xffecad9e0344b0db2e9dfd59886f39ac513e2e292c31ce445c12f7fa5bf04ac9', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 122222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x19e1aafb401740f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec5', 'uniqueId': '0x54962196fa5892ba23b06741f5cc9ca1d273a58c081317b05d8c6155d0649f29:log:8', 'hash': '0x54962196fa5892ba23b06741f5cc9ca1d273a58c081317b05d8c6155d0649f29', 'from': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04e704aa60bebc5c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:19:21.000Z'}}, {'blockNum': '0x735ec5', 'uniqueId': '0xc0bd5c1646f7648103b82724fc8f85fc96363b854ee9ec81d6ac2f9c51d81678:log:10', 'hash': '0xc0bd5c1646f7648103b82724fc8f85fc96363b854ee9ec81d6ac2f9c51d81678', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0465ff87d28686ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:19:21.000Z'}}, {'blockNum': '0x735ec5', 'uniqueId': '0x9d1d09700d33e523380d5f15cc3ed71fed65f944e6f23743417300cd7b528f16:log:11', 'hash': '0x9d1d09700d33e523380d5f15cc3ed71fed65f944e6f23743417300cd7b528f16', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025d94c4818160ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:19:21.000Z'}}, {'blockNum': '0x735ed4', 'uniqueId': '0x498728d4507320791f77aa93ec6a8e676e77091ea9021bf11d4925baed6752a6:log:11', 'hash': '0x498728d4507320791f77aa93ec6a8e676e77091ea9021bf11d4925baed6752a6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1cf0adbfa07fbf280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:23:09.000Z'}}, {'blockNum': '0x735ed4', 'uniqueId': '0xd11400463e90b2939cd0eeedacf9d8fc821d2d8026d86ba149f26dc9d258cc12:log:12', 'hash': '0xd11400463e90b2939cd0eeedacf9d8fc821d2d8026d86ba149f26dc9d258cc12', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 35679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x078e2997588e6a1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:23:09.000Z'}}, {'blockNum': '0x735ed7', 'uniqueId': '0xf166553a611568c4a111fc90346fde44fdf85e65e0d09528abce086093f22227:log:187', 'hash': '0xf166553a611568c4a111fc90346fde44fdf85e65e0d09528abce086093f22227', 'from': '0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c', 'to': '0xcdae8875cf6c8e54a107b9218faa5432e6dfb15f', 'value': 0.0037303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d40b02667d800', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:24:20.000Z'}}, {'blockNum': '0x735ed9', 'uniqueId': '0xe0e2a94178addea76fc8049eb0ad4435977084019be17753acb107a93e9a18ad:log:1', 'hash': '0xe0e2a94178addea76fc8049eb0ad4435977084019be17753acb107a93e9a18ad', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 5875.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x013e85b7c3350ab20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:24:36.000Z'}}, {'blockNum': '0x735ee1', 'uniqueId': '0x328c3825f50747ed06827127cda1afb0ac3875ecb41e0777c072dc27410c2dfe:log:11', 'hash': '0x328c3825f50747ed06827127cda1afb0ac3875ecb41e0777c072dc27410c2dfe', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x07062055d62d402c2fab73e74ea436969ed60572', 'value': 103406.4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5ac75199123f88000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:26:50.000Z'}}, {'blockNum': '0x735eec', 'uniqueId': '0x4e1600b91309956da9655097dca2be88ded569474883dc666168e30db8c16e97:log:13', 'hash': '0x4e1600b91309956da9655097dca2be88ded569474883dc666168e30db8c16e97', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1cf0adbfa07fbf280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:28:55.000Z'}}, {'blockNum': '0x735eec', 'uniqueId': '0x474a87fe9ab702c1c81f3088fe5303f1e0fd2aa362e3bd0c8bf556a4e89a0bde:log:17', 'hash': '0x474a87fe9ab702c1c81f3088fe5303f1e0fd2aa362e3bd0c8bf556a4e89a0bde', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047b850327211cc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:28:55.000Z'}}, {'blockNum': '0x735ef3', 'uniqueId': '0x8f018ed895b5664eb9b123bae89b0d3e61773e1d0c0f29792d114ca7e8676fd4:log:33', 'hash': '0x8f018ed895b5664eb9b123bae89b0d3e61773e1d0c0f29792d114ca7e8676fd4', 'from': '0x07062055d62d402c2fab73e74ea436969ed60572', 'to': '0x44b0c40da6ce8883deb28650199bc0235837445c', 'value': 406.4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1608502ef491988000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:30:33.000Z'}}, {'blockNum': '0x735efc', 'uniqueId': '0x0e0b461a04519ba4c61714c2da9d19ac2c80f576d9eaa1f7766e448de0c702ea:log:101', 'hash': '0x0e0b461a04519ba4c61714c2da9d19ac2c80f576d9eaa1f7766e448de0c702ea', 'from': '0x07062055d62d402c2fab73e74ea436969ed60572', 'to': '0x44b0c40da6ce8883deb28650199bc0235837445c', 'value': 103000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15cfa424ea9c92600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:32:52.000Z'}}, {'blockNum': '0x735f10', 'uniqueId': '0x7b67ea61c7bf324b1d5a7b2b132805b90feff20d1008c2c86591b1efbeceed44:log:7', 'hash': '0x7b67ea61c7bf324b1d5a7b2b132805b90feff20d1008c2c86591b1efbeceed44', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x097c121dac68d2180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:39:05.000Z'}}, {'blockNum': '0x735f33', 'uniqueId': '0x6e37739efd4bc76e87263bc885ce0b833a217ac754d7cf5af7b80300fa939dc5:log:4', 'hash': '0x6e37739efd4bc76e87263bc885ce0b833a217ac754d7cf5af7b80300fa939dc5', 'from': '0x44b0c40da6ce8883deb28650199bc0235837445c', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 103406.4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5ac75199123f88000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:46:09.000Z'}}, {'blockNum': '0x735f60', 'uniqueId': '0x0a48bb11f93a9ec490dfa43dbe4081fd006b7681066334efe3afb813ac69d5e8:log:0', 'hash': '0x0a48bb11f93a9ec490dfa43dbe4081fd006b7681066334efe3afb813ac69d5e8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 29996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065a161f826179300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:55:20.000Z'}}, {'blockNum': '0x735f66', 'uniqueId': '0xa5c41830fe42f97d07f9be3031ac1275d92b5b82a0b07f97cab240cea6e60b70:log:2', 'hash': '0xa5c41830fe42f97d07f9be3031ac1275d92b5b82a0b07f97cab240cea6e60b70', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 82312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x116e2478545551200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:56:39.000Z'}}, {'blockNum': '0x735f6e', 'uniqueId': '0xc4e38df3c7adc144bcffde0406be586ea53923c17c01a9eef211095af6c3f616:log:2', 'hash': '0xc4e38df3c7adc144bcffde0406be586ea53923c17c01a9eef211095af6c3f616', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 147181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f2ab2aff5a42f940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:58:36.000Z'}}, {'blockNum': '0x735f88', 'uniqueId': '0x3aa6b8f8108c22b6b6c393b132cd7105e1e97affac7ad1bd45e94a26cc6e173f:log:8', 'hash': '0x3aa6b8f8108c22b6b6c393b132cd7105e1e97affac7ad1bd45e94a26cc6e173f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1220932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01028adb3949065a900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:04:22.000Z'}}, {'blockNum': '0x735f8a', 'uniqueId': '0x7ab91302fd925dcda7a4afd4f8cd0274c86ffd7cb3304ee08574d277ece83dfb:log:1', 'hash': '0x7ab91302fd925dcda7a4afd4f8cd0274c86ffd7cb3304ee08574d277ece83dfb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 35076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076d7948ff6321900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:05:36.000Z'}}, {'blockNum': '0x735f95', 'uniqueId': '0xa0b6e0f49ff9f2096cbc5fa527fbeb987475f17fc6da5094a69fd840843ea664:log:15', 'hash': '0xa0b6e0f49ff9f2096cbc5fa527fbeb987475f17fc6da5094a69fd840843ea664', 'from': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 29996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065a161f826179300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:07:27.000Z'}}, {'blockNum': '0x735fc6', 'uniqueId': '0x0c60c97ab13028deed9882cbf7e91e69c77df7feb87c4619928ddc4094db1044:log:180', 'hash': '0x0c60c97ab13028deed9882cbf7e91e69c77df7feb87c4619928ddc4094db1044', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fb14be48890a54659c321aa499a6f89c7786854', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:19:36.000Z'}}, {'blockNum': '0x735ff4', 'uniqueId': '0xa3c6d00ac23504deb4a3372b5877e96a9330d3d8ead5d58d1beb2f3fe5f83929:log:0', 'hash': '0xa3c6d00ac23504deb4a3372b5877e96a9330d3d8ead5d58d1beb2f3fe5f83929', 'from': '0x6fb14be48890a54659c321aa499a6f89c7786854', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:29:08.000Z'}}, {'blockNum': '0x736041', 'uniqueId': '0x822d6ca9255fe5bdabef29ff33872062365297de1d254a313b04603136a1426e:log:0', 'hash': '0x822d6ca9255fe5bdabef29ff33872062365297de1d254a313b04603136a1426e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 19235.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0412c4f682e4bd720000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:43:02.000Z'}}, {'blockNum': '0x73607e', 'uniqueId': '0x60b99bcb9ffa803c5a66f86bd260546db071d1749308b04d1e10b27719651d0e:log:190', 'hash': '0x60b99bcb9ffa803c5a66f86bd260546db071d1749308b04d1e10b27719651d0e', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 31642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06b350f6397fbe280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:56:48.000Z'}}, {'blockNum': '0x73607f', 'uniqueId': '0xaf8b1db9dd3f42bcd36c4205d5dfb6a0c740ba8a693f0c294aa390da66b7c5ef:log:16', 'hash': '0xaf8b1db9dd3f42bcd36c4205d5dfb6a0c740ba8a693f0c294aa390da66b7c5ef', 'from': '0xf358caa9bca436dd08608805e5316eae391ee054', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 35041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076b939004d33ee40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:57:18.000Z'}}, {'blockNum': '0x736084', 'uniqueId': '0x3980398cd938c13965d5bbbeb8341c126b0a40db89b15b1b21db46a3376da599:log:10', 'hash': '0x3980398cd938c13965d5bbbeb8341c126b0a40db89b15b1b21db46a3376da599', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 20583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045bce81a697993c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:58:31.000Z'}}, {'blockNum': '0x736087', 'uniqueId': '0x6eca47acae7618531c74174fab5e920c072bd6bf28355ee745bc34323787a2a7:log:0', 'hash': '0x6eca47acae7618531c74174fab5e920c072bd6bf28355ee745bc34323787a2a7', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 20228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04488fe44b7679900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:59:05.000Z'}}, {'blockNum': '0x7360b9', 'uniqueId': '0xd9de904ed8e3bc33d8fba30bc2383e96389edd535bbfccd34a753cc4b5f3b532:log:66', 'hash': '0xd9de904ed8e3bc33d8fba30bc2383e96389edd535bbfccd34a753cc4b5f3b532', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04488fe44b7679900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T19:09:09.000Z'}}, {'blockNum': '0x7360e4', 'uniqueId': '0xf769ced2056687266f385b36fb5fcf9fd00a40fa21bc702bc2e44f13a728c21c:log:2', 'hash': '0xf769ced2056687266f385b36fb5fcf9fd00a40fa21bc702bc2e44f13a728c21c', 'from': '0x9d72f97d08ccf3843efa0f2b2ca4033f100cf929', 'to': '0x91ad70eb631ac0543230fcbe7ed76e3e5f51821e', 'value': 40318.199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0889a7691786cd858000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T19:17:02.000Z'}}, {'blockNum': '0x73611e', 'uniqueId': '0x562109aa91f2271663056aba000bf3fa7228567153c972ebb90d001e63a4eed7:log:12', 'hash': '0x562109aa91f2271663056aba000bf3fa7228567153c972ebb90d001e63a4eed7', 'from': '0x91ad70eb631ac0543230fcbe7ed76e3e5f51821e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40318.199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0889a7691786cd858000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T19:28:55.000Z'}}, {'blockNum': '0x736255', 'uniqueId': '0xa15aa694d7bb35270de2c8a365c70acd0539852929351f556f5df62f85d41a94:log:51', 'hash': '0xa15aa694d7bb35270de2c8a365c70acd0539852929351f556f5df62f85d41a94', 'from': '0x3ad4e5b89eccd7c610187e244c89836acffd48eb', 'to': '0x940d808ecc9472e86e794d2cddf6f6df3ea1f3f2', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T20:35:48.000Z'}}, {'blockNum': '0x73626b', 'uniqueId': '0xcc02fea7a6fb02371fb0f6acad8d300c65e46e22c415c938d4e4de98e14bc338:log:3', 'hash': '0xcc02fea7a6fb02371fb0f6acad8d300c65e46e22c415c938d4e4de98e14bc338', 'from': '0x940d808ecc9472e86e794d2cddf6f6df3ea1f3f2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T20:41:12.000Z'}}, {'blockNum': '0x73629e', 'uniqueId': '0x77e28207fe90fbd332cdccb41b5483fa9df01309dbb5daa593c2684c6946d430:log:3', 'hash': '0x77e28207fe90fbd332cdccb41b5483fa9df01309dbb5daa593c2684c6946d430', 'from': '0x37730c5685e0ba378b35c43f3a7cf0834b167926', 'to': '0xf97585f9b3ce8b82f6797b5aa8642d34dad17441', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T20:52:57.000Z'}}, {'blockNum': '0x736410', 'uniqueId': '0xf260cd4692bc03d716ab3ebdf3ab6ad56618b235763c64a06e16ef5c07cfe8a8:log:34', 'hash': '0xf260cd4692bc03d716ab3ebdf3ab6ad56618b235763c64a06e16ef5c07cfe8a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'value': 41985.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e40ca2b43a462a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:12:19.000Z'}}, {'blockNum': '0x736433', 'uniqueId': '0x9578b34fdfdabdf4158d000622e765b48aa61388d431aa4492eab7202fd26328:log:8', 'hash': '0x9578b34fdfdabdf4158d000622e765b48aa61388d431aa4492eab7202fd26328', 'from': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 41985.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e40ca2b43a462a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:21:00.000Z'}}, {'blockNum': '0x736436', 'uniqueId': '0x43c67ac1b9de4a5effa30d3d78ffc6b77ff19c82b728aebe15edb2ad3d5581f9:log:0', 'hash': '0x43c67ac1b9de4a5effa30d3d78ffc6b77ff19c82b728aebe15edb2ad3d5581f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 20560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045a8f513c738f400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:22:42.000Z'}}, {'blockNum': '0x736459', 'uniqueId': '0x2e3ba47a3cae3d8406e91cd4ca0e728c6f5cad77e4dd0f75496239eb98c0eaae:log:38', 'hash': '0x2e3ba47a3cae3d8406e91cd4ca0e728c6f5cad77e4dd0f75496239eb98c0eaae', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 20560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045a8f513c738f400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:28:59.000Z'}}, {'blockNum': '0x736601', 'uniqueId': '0xa8cbd88b506898211e4c4466f67994ec1c5e34df32efe16517e44d6235edbc26:log:1', 'hash': '0xa8cbd88b506898211e4c4466f67994ec1c5e34df32efe16517e44d6235edbc26', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 69804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ec81519a28eb7300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:01:36.000Z'}}, {'blockNum': '0x736620', 'uniqueId': '0x065c342954bfc3d75ded27f137a4929a1cd4de6646f9012924264fa4910b14d2:log:28', 'hash': '0x065c342954bfc3d75ded27f137a4929a1cd4de6646f9012924264fa4910b14d2', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 69804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ec81519a28eb7300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:07:14.000Z'}}, {'blockNum': '0x73663a', 'uniqueId': '0x4a894262e9dbe585c66699c91a5b7aeb2781eecded5e574ae724754a64d401fa:log:29', 'hash': '0x4a894262e9dbe585c66699c91a5b7aeb2781eecded5e574ae724754a64d401fa', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 21928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04a4b8218c7a0da00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:13:27.000Z'}}, {'blockNum': '0x736659', 'uniqueId': '0x0829be6eabf7725b62bedecab400814b373dc929abeef59d40e78d8a720f55c2:log:54', 'hash': '0x0829be6eabf7725b62bedecab400814b373dc929abeef59d40e78d8a720f55c2', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 21928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04a4b8218c7a0da00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:20:54.000Z'}}, {'blockNum': '0x736700', 'uniqueId': '0x6f62ce233ba399c52c1e65617718117673bc086a88a3c7217b832bdd0e1e4e98:log:12', 'hash': '0x6f62ce233ba399c52c1e65617718117673bc086a88a3c7217b832bdd0e1e4e98', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 21218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047e3ae6d637ce480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:54:38.000Z'}}, {'blockNum': '0x736735', 'uniqueId': '0x119dcd02592c6515fa4e0cdbeb574775d7537108320ea37e8c18a9cedd794132:log:25', 'hash': '0x119dcd02592c6515fa4e0cdbeb574775d7537108320ea37e8c18a9cedd794132', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 21218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047e3ae6d637ce480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:05:23.000Z'}}, {'blockNum': '0x7367e7', 'uniqueId': '0xe77e150da0d75c16d54dbe4babeba4dda5c90e2dfae1a729a103a7f67f9642b2:log:120', 'hash': '0xe77e150da0d75c16d54dbe4babeba4dda5c90e2dfae1a729a103a7f67f9642b2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 60340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cc709b760fa7e500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:43:58.000Z'}}, {'blockNum': '0x7367ee', 'uniqueId': '0x26e4fb25b01c6b183c4d498a62bb90dba09ab947bd449788fe3206504e77dc6f:log:6', 'hash': '0x26e4fb25b01c6b183c4d498a62bb90dba09ab947bd449788fe3206504e77dc6f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 39609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0863354c1a861f440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:46:35.000Z'}}, {'blockNum': '0x7367f8', 'uniqueId': '0xbf546370846bfe5985f6342af3976e69d95c50abc3ae50ececc1c09d6e990e0e:log:3', 'hash': '0xbf546370846bfe5985f6342af3976e69d95c50abc3ae50ececc1c09d6e990e0e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'value': 41986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e410cc84a35ec80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:48:41.000Z'}}, {'blockNum': '0x736819', 'uniqueId': '0xaec57a88387599edf6ea75261d8e5d442b72efc40c416824f5d0282916a8a587:log:19', 'hash': '0xaec57a88387599edf6ea75261d8e5d442b72efc40c416824f5d0282916a8a587', 'from': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 41986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e410cc84a35ec80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:57:35.000Z'}}, {'blockNum': '0x736827', 'uniqueId': '0x6d32c9226c9cf9a93ef56c08c2f869459e47e694a0244bd34001e52214b752c3:log:131', 'hash': '0x6d32c9226c9cf9a93ef56c08c2f869459e47e694a0244bd34001e52214b752c3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xc79ef9ddde225f7866b6ddf4ff524d68f19705b5', 'value': 39993.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08780ed54fc5d6410000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:01:35.000Z'}}, {'blockNum': '0x736839', 'uniqueId': '0xeaf0c17952bdd2083ca3fe8e79ef35201819001b6db7b746088433c2fb980f46:log:31', 'hash': '0xeaf0c17952bdd2083ca3fe8e79ef35201819001b6db7b746088433c2fb980f46', 'from': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 39609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0863354c1a861f440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:05:59.000Z'}}, {'blockNum': '0x736856', 'uniqueId': '0xe74d440fd0eaba46dc378b4092ee1de1b68d331f65b27a826624886103f80fee:log:0', 'hash': '0xe74d440fd0eaba46dc378b4092ee1de1b68d331f65b27a826624886103f80fee', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 32762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f008158b7c13a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:11:05.000Z'}}, {'blockNum': '0x73685a', 'uniqueId': '0x74551c90df95a955446aa49f9f37118a70e096cb837bf888a9ce389060745bd9:log:1', 'hash': '0x74551c90df95a955446aa49f9f37118a70e096cb837bf888a9ce389060745bd9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 20164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x044517b69e8ca0900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:12:01.000Z'}}, {'blockNum': '0x736891', 'uniqueId': '0xe0e0345f57152af9e8f2f3272803f829b4291a1ba234a0c53a11575dbd79da31:log:10', 'hash': '0xe0e0345f57152af9e8f2f3272803f829b4291a1ba234a0c53a11575dbd79da31', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 20164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x044517b69e8ca0900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:26:16.000Z'}}, {'blockNum': '0x7368ec', 'uniqueId': '0xc1025ff2bc48972c78d85823a225be6ec302f16b39c34d811ef9bd6d924e3630:log:105', 'hash': '0xc1025ff2bc48972c78d85823a225be6ec302f16b39c34d811ef9bd6d924e3630', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 35679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x078e2997588e6a1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:45:33.000Z'}}, {'blockNum': '0x7368ec', 'uniqueId': '0x50344425c388ddf5b68d4d51ebf1c8ccc9803d3f2f3ba947857c645f18467a2f:log:106', 'hash': '0x50344425c388ddf5b68d4d51ebf1c8ccc9803d3f2f3ba947857c645f18467a2f', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 20583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045bce81a697993c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:45:33.000Z'}}, {'blockNum': '0x7368ec', 'uniqueId': '0x70a4cfcaa641ab6759da68b9deab8937f2c0e1653942d2ef9e008654251bf55e:log:117', 'hash': '0x70a4cfcaa641ab6759da68b9deab8937f2c0e1653942d2ef9e008654251bf55e', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 5875.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x013e85b7c3350ab20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:45:33.000Z'}}, {'blockNum': '0x7368ed', 'uniqueId': '0x836d7da0c5e244d6933dab7de47828367b4a6dd461a7da1530726ad5a8921d90:log:10', 'hash': '0x836d7da0c5e244d6933dab7de47828367b4a6dd461a7da1530726ad5a8921d90', 'from': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 147181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f2ab2aff5a42f940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:46:03.000Z'}}, {'blockNum': '0x7368ee', 'uniqueId': '0xa2df06d596ea48be86a9db269b1dd8801e7db3314949fecb68f7def4842832d5:log:5', 'hash': '0xa2df06d596ea48be86a9db269b1dd8801e7db3314949fecb68f7def4842832d5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 35528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0785fa0b9496ae200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:46:12.000Z'}}, {'blockNum': '0x7368fd', 'uniqueId': '0x0f5ea9a3c85ad66f413efe8d4a62b323be94f85fbc51fdc818b8cd69c6f8ea1d:log:14', 'hash': '0x0f5ea9a3c85ad66f413efe8d4a62b323be94f85fbc51fdc818b8cd69c6f8ea1d', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x10b0d69b692a5d719d3340905f6a83b7fac290c0', 'value': 7629.5563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019d995d07ba6fa0c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:51:37.000Z'}}, {'blockNum': '0x736918', 'uniqueId': '0x8b6900308b67aff78b51345745cfeb6fea83ba424980ed5949fbc3a90ca19fda:log:21', 'hash': '0x8b6900308b67aff78b51345745cfeb6fea83ba424980ed5949fbc3a90ca19fda', 'from': '0x10b0d69b692a5d719d3340905f6a83b7fac290c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7629.5563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019d995d07ba6fa0c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:59:05.000Z'}}]}}
Number of returned transfers:  170
Answer is complete
 
symbol            ARDR
group              MPG
date        2019-04-17
hour             17:00
exchange       binance
Name: 496, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: ARDR, Contract: 
Datetime timestamps:  2019-04-17 17:00:00 2019-04-17 05:00:00 2019-04-18 05:00:00
Unix timestamps:  1555470000.0 1555556400.0
Hex Block Numbers:  0x73b453 0x73cd62
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RDN
group              MPG
date        2019-04-24
hour             17:00
exchange       binance
Name: 497, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2019-04-24 17:00:00 2019-04-24 05:00:00 2019-04-25 05:00:00
Unix timestamps:  1556074800.0 1556161200.0
Hex Block Numbers:  0x74636b 0x747c91
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7463af', 'uniqueId': '0x842408e6ffa6ba3191c529952c05ee53128e574547c23f08f678fae8c7b653f5:log:9', 'hash': '0x842408e6ffa6ba3191c529952c05ee53128e574547c23f08f678fae8c7b653f5', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 1464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f5d14d36543e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:15:03.000Z'}}, {'blockNum': '0x7463da', 'uniqueId': '0x5e17fc9b5043ec5fc63bbe1c909182a44005cafdecf4d235f2030196088af4f2:log:26', 'hash': '0x5e17fc9b5043ec5fc63bbe1c909182a44005cafdecf4d235f2030196088af4f2', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f5d14d36543e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:23:52.000Z'}}, {'blockNum': '0x7463e9', 'uniqueId': '0xc5d0cfa7a548e8d0e2f93efc0b2ffb29286253676f5101dc3ca1f20aff127a04:log:55', 'hash': '0xc5d0cfa7a548e8d0e2f93efc0b2ffb29286253676f5101dc3ca1f20aff127a04', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7b53f79e888dac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:26:57.000Z'}}, {'blockNum': '0x74640e', 'uniqueId': '0xf29cc9982de8b4ef624568382f2e8fd1eb96aafb1f6c6c7f97bb25d0d0dd2d38:log:3', 'hash': '0xf29cc9982de8b4ef624568382f2e8fd1eb96aafb1f6c6c7f97bb25d0d0dd2d38', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7b53f79e888dac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:34:02.000Z'}}, {'blockNum': '0x74647f', 'uniqueId': '0x9a17ae72f6b389e7af22b954eb3f214ee2e63905e2935e3c30ccf0d4fd0a1817:log:40', 'hash': '0x9a17ae72f6b389e7af22b954eb3f214ee2e63905e2935e3c30ccf0d4fd0a1817', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x72fac9b675db840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:59:28.000Z'}}, {'blockNum': '0x746491', 'uniqueId': '0x3d92d3395dfd7f53db2d905bb63171b60f8d10ffa01df46bc2e134f95c6fe9fd:log:38', 'hash': '0x3d92d3395dfd7f53db2d905bb63171b60f8d10ffa01df46bc2e134f95c6fe9fd', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x72fac9b675db840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T04:04:30.000Z'}}, {'blockNum': '0x7465d1', 'uniqueId': '0xc474c07436694d47430862de918ed0130e51339aafa06281758a3b0d90365d5a:log:1', 'hash': '0xc474c07436694d47430862de918ed0130e51339aafa06281758a3b0d90365d5a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7ccdc83813055c285b2cb84ec09e055f6c0581d1', 'value': 2038.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6e7fdf3e53ba220000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T05:12:04.000Z'}}, {'blockNum': '0x746619', 'uniqueId': '0xb10710a7010f5ec4a64e4da3a72cd1df77a543043862adc52650fcbab12710c8:log:48', 'hash': '0xb10710a7010f5ec4a64e4da3a72cd1df77a543043862adc52650fcbab12710c8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af6ed8d9331780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T05:26:03.000Z'}}, {'blockNum': '0x746667', 'uniqueId': '0x30c867d85842a32f2eb69c8b81de88294e04da659df978dd38bea32c988a3cd7:log:20', 'hash': '0x30c867d85842a32f2eb69c8b81de88294e04da659df978dd38bea32c988a3cd7', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af6ed8d9331780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T05:43:37.000Z'}}, {'blockNum': '0x746733', 'uniqueId': '0x647779904aa984d90f1cd9ae779bafb62c211cef60d3d15109e9b2d8f003890f:log:29', 'hash': '0x647779904aa984d90f1cd9ae779bafb62c211cef60d3d15109e9b2d8f003890f', 'from': '0x588b28d0cd30527fa600d18648e6ecf808ca7968', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T06:33:00.000Z'}}, {'blockNum': '0x746733', 'uniqueId': '0x647779904aa984d90f1cd9ae779bafb62c211cef60d3d15109e9b2d8f003890f:log:30', 'hash': '0x647779904aa984d90f1cd9ae779bafb62c211cef60d3d15109e9b2d8f003890f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T06:33:00.000Z'}}, {'blockNum': '0x746734', 'uniqueId': '0x41ecd1e79b0baab3c5ac321d923d55c64ed1b8fa174321ba69dd7fd7c0d64285:log:12', 'hash': '0x41ecd1e79b0baab3c5ac321d923d55c64ed1b8fa174321ba69dd7fd7c0d64285', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T06:33:23.000Z'}}, {'blockNum': '0x746762', 'uniqueId': '0x36c5e24b5d0f9e5dd849feb8df0da3029c91362f646055093a3d5073d09c244c:log:27', 'hash': '0x36c5e24b5d0f9e5dd849feb8df0da3029c91362f646055093a3d5073d09c244c', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T06:44:05.000Z'}}, {'blockNum': '0x746872', 'uniqueId': '0x8a7819db4ad441e2ec380a28fed67ba180cdeb07659d6bb5d7f635bc04adb185:log:1', 'hash': '0x8a7819db4ad441e2ec380a28fed67ba180cdeb07659d6bb5d7f635bc04adb185', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 521.2407195831541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c41ab08cf26e6a885', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T07:48:24.000Z'}}, {'blockNum': '0x74687d', 'uniqueId': '0xe3af0b41e45a5cada3db13118bb2c225b87fb66caf6b58bf2e5982b69209c38a:log:73', 'hash': '0xe3af0b41e45a5cada3db13118bb2c225b87fb66caf6b58bf2e5982b69209c38a', 'from': '0x7213640f292d9821ef4dca61e17025d3bddb3dc6', 'to': '0xea9a359abde5a78dec7076ed49c472de47ae4654', 'value': 144.302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07d297b0748a6b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T07:50:59.000Z'}}, {'blockNum': '0x746913', 'uniqueId': '0xa62e89098a7ad0729d5911b1b873eae449cdbe999c3b428053b19792ee344300:log:94', 'hash': '0xa62e89098a7ad0729d5911b1b873eae449cdbe999c3b428053b19792ee344300', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 531.3085547865625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1ccd632b95c3399830', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:25:49.000Z'}}, {'blockNum': '0x746913', 'uniqueId': '0xa62e89098a7ad0729d5911b1b873eae449cdbe999c3b428053b19792ee344300:log:96', 'hash': '0xa62e89098a7ad0729d5911b1b873eae449cdbe999c3b428053b19792ee344300', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 531.3085547865625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1ccd632b95c3399830', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:25:49.000Z'}}, {'blockNum': '0x746914', 'uniqueId': '0x84c11226d00c16bd1adeae7945f464bef8e59093414c73b05ca4ec0796539f27:log:47', 'hash': '0x84c11226d00c16bd1adeae7945f464bef8e59093414c73b05ca4ec0796539f27', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 419.0331885148608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16b740f0d23f92e0f4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:08.000Z'}}, {'blockNum': '0x746916', 'uniqueId': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99:log:13', 'hash': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 524.9260341508149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c74cfe6e201e409b5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:36.000Z'}}, {'blockNum': '0x746916', 'uniqueId': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99:log:15', 'hash': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 524.9260341508149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c74cfe6e201e409b5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:36.000Z'}}, {'blockNum': '0x746916', 'uniqueId': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99:log:19', 'hash': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 524.9260341508149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c74cfe6e201e409b5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:36.000Z'}}, {'blockNum': '0x746916', 'uniqueId': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99:log:21', 'hash': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 524.9260341508149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c74cfe6e201e409b5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:36.000Z'}}, {'blockNum': '0x74692b', 'uniqueId': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0:log:92', 'hash': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 239.578742624344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfcd2ad1302c272fa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:31:30.000Z'}}, {'blockNum': '0x74692b', 'uniqueId': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0:log:94', 'hash': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 239.578742624344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfcd2ad1302c272fa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:31:30.000Z'}}, {'blockNum': '0x74692b', 'uniqueId': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0:log:99', 'hash': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 239.57850304560137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfcd1d32dbce8e2a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:31:30.000Z'}}, {'blockNum': '0x74693a', 'uniqueId': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45:log:56', 'hash': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 365.1235045528536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13cb1b44e2328f1f55', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:34:56.000Z'}}, {'blockNum': '0x74693a', 'uniqueId': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45:log:58', 'hash': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 365.1235045528536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13cb1b44e2328f1f55', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:34:56.000Z'}}, {'blockNum': '0x74693a', 'uniqueId': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45:log:63', 'hash': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 365.1235045528536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13cb1b44e2328f1f55', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:34:56.000Z'}}, {'blockNum': '0x74693a', 'uniqueId': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45:log:65', 'hash': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 365.1235045528536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13cb1b44e2328f1f55', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:34:56.000Z'}}, {'blockNum': '0x746942', 'uniqueId': '0x9c9d03646e7f9651dc3864b6d9382cba5a9592af87f17403bc9695aeb5953385:log:37', 'hash': '0x9c9d03646e7f9651dc3864b6d9382cba5a9592af87f17403bc9695aeb5953385', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 3014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa363a70724c3580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:36:55.000Z'}}, {'blockNum': '0x74695d', 'uniqueId': '0x0e7e8f73812b7d66378a992512d7dabccb5a589ff84dca29d371d1e6f535be9e:log:37', 'hash': '0x0e7e8f73812b7d66378a992512d7dabccb5a589ff84dca29d371d1e6f535be9e', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa363a70724c3580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:43:42.000Z'}}, {'blockNum': '0x746a54', 'uniqueId': '0x34b5133a37bae26438ccb346a45e06b22ac61b5c30e51ab97d7012898f3889c7:log:40', 'hash': '0x34b5133a37bae26438ccb346a45e06b22ac61b5c30e51ab97d7012898f3889c7', 'from': '0x0040ff6b8bfe8263bce10664165a0136f135b1f1', 'to': '0x6e6d86425ca6eb3aeb709fd133615e38048f47e0', 'value': 17.682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf563155116750000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T09:42:47.000Z'}}, {'blockNum': '0x746ae6', 'uniqueId': '0xeb027164aa2d4f56b9d24f8056fc2fc79cfb712fff8904f052601a49f49d3dce:log:1', 'hash': '0xeb027164aa2d4f56b9d24f8056fc2fc79cfb712fff8904f052601a49f49d3dce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4569cd9d62f1db5b59fd504e7e80777274299329', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:16:11.000Z'}}, {'blockNum': '0x746b48', 'uniqueId': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451:log:11', 'hash': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 404.17512884615695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15e90e824622ec3abd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:43:19.000Z'}}, {'blockNum': '0x746b48', 'uniqueId': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451:log:13', 'hash': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 404.17512884615695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15e90e824622ec3abd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:43:19.000Z'}}, {'blockNum': '0x746b48', 'uniqueId': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451:log:18', 'hash': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 404.1747246710281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15e90d12adc7f0db6f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:43:19.000Z'}}, {'blockNum': '0x746b48', 'uniqueId': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451:log:20', 'hash': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 404.1747246710281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15e90d12adc7f0db6f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:43:19.000Z'}}, {'blockNum': '0x746b51', 'uniqueId': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab:log:95', 'hash': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 208.20730703942633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4974f29f6db193f4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:45:16.000Z'}}, {'blockNum': '0x746b51', 'uniqueId': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab:log:97', 'hash': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 208.20730703942633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4974f29f6db193f4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:45:16.000Z'}}, {'blockNum': '0x746b51', 'uniqueId': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab:log:103', 'hash': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 208.20730703942627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4974f29f6db10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:45:16.000Z'}}, {'blockNum': '0x746b54', 'uniqueId': '0x4bd7a8b1793b9e954707af29a3b58f8e21c1419de74d098ef8e2ab15bc0d6ebc:log:4', 'hash': '0x4bd7a8b1793b9e954707af29a3b58f8e21c1419de74d098ef8e2ab15bc0d6ebc', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x19d4a80b8e47129e16b3895e48818b82cbddae69', 'value': 17844.03500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03c753bb3ac2817f6400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:45:39.000Z'}}, {'blockNum': '0x746b9d', 'uniqueId': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8:log:55', 'hash': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 419.4063717015987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16bc6ec0f3d13b3f6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:02:26.000Z'}}, {'blockNum': '0x746b9d', 'uniqueId': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8:log:57', 'hash': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 419.4063717015987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16bc6ec0f3d13b3f6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:02:26.000Z'}}, {'blockNum': '0x746b9d', 'uniqueId': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8:log:62', 'hash': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 419.4063717015987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16bc6ec0f3d13b3f6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:02:26.000Z'}}, {'blockNum': '0x746b9d', 'uniqueId': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8:log:64', 'hash': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 419.4063717015987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16bc6ec0f3d13b3f6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:02:26.000Z'}}, {'blockNum': '0x746ba3', 'uniqueId': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884:log:143', 'hash': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 197.0686524213974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaee07f434650b667', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:03:40.000Z'}}, {'blockNum': '0x746ba3', 'uniqueId': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884:log:145', 'hash': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 197.0686524213974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaee07f434650b667', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:03:40.000Z'}}, {'blockNum': '0x746ba3', 'uniqueId': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884:log:151', 'hash': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 197.06865242139742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaee07f4346510000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:03:40.000Z'}}, {'blockNum': '0x746bb8', 'uniqueId': '0xea707d8b4e47a496160aa045ff7cdc905af34a90b1c43b87a4cd8fe703487729:log:0', 'hash': '0xea707d8b4e47a496160aa045ff7cdc905af34a90b1c43b87a4cd8fe703487729', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2157.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x74fae0d8f4af6e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:07:29.000Z'}}, {'blockNum': '0x746ca1', 'uniqueId': '0xde95176650d90e5998aa0cc13f646c175d3158bcd318207774494e21fe82df32:log:71', 'hash': '0xde95176650d90e5998aa0cc13f646c175d3158bcd318207774494e21fe82df32', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4ced9896eef9822d7f388fd017213aa356533d30', 'value': 101.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058625861c544e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:00:01.000Z'}}, {'blockNum': '0x746cb5', 'uniqueId': '0x0ded217fb2c7bda39be06a71aed879c176d08469895499d93e5eeb4460f9694f:log:105', 'hash': '0x0ded217fb2c7bda39be06a71aed879c176d08469895499d93e5eeb4460f9694f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 419.75848250255376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16c151b3dc3dbcb86b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:04:38.000Z'}}, {'blockNum': '0x746cb5', 'uniqueId': '0x0ded217fb2c7bda39be06a71aed879c176d08469895499d93e5eeb4460f9694f:log:107', 'hash': '0x0ded217fb2c7bda39be06a71aed879c176d08469895499d93e5eeb4460f9694f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x289743b373fa21c0ba8fb2fb1727d07597e7c277', 'value': 419.75848250255376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16c151b3dc3dbcb86b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:04:38.000Z'}}, {'blockNum': '0x746d91', 'uniqueId': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57:log:3', 'hash': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1451.3406410861137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ead65bf8919828351', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:57:43.000Z'}}, {'blockNum': '0x746d91', 'uniqueId': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57:log:5', 'hash': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'value': 1451.3406410861137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ead65bf8919828351', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:57:43.000Z'}}, {'blockNum': '0x746d91', 'uniqueId': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57:log:9', 'hash': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57', 'from': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 1451.3406410861137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ead65bf8919828351', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:57:43.000Z'}}, {'blockNum': '0x746d91', 'uniqueId': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57:log:17', 'hash': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57', 'from': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'to': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'value': 4.661211476835391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40aff3245bbf58c8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:57:43.000Z'}}, {'blockNum': '0x746dba', 'uniqueId': '0xbcb212c0fb08229f1085643ef4c29880627cb29dc1de9d501d80a06f36362f71:log:77', 'hash': '0xbcb212c0fb08229f1085643ef4c29880627cb29dc1de9d501d80a06f36362f71', 'from': '0x7ccdc83813055c285b2cb84ec09e055f6c0581d1', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 2038.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6e7fdf3e53ba220000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T13:06:33.000Z'}}, {'blockNum': '0x746ef1', 'uniqueId': '0x30958dc513fbb683283fcbc9132652c31ea09e4bd3f3932569815953229fa4a5:log:82', 'hash': '0x30958dc513fbb683283fcbc9132652c31ea09e4bd3f3932569815953229fa4a5', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 534.4136584155966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cf87ab6e25294a805', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T14:22:39.000Z'}}, {'blockNum': '0x746f05', 'uniqueId': '0x66c9112880233acd8cf41fb42dfd0cdd4507fc53875f6d4ac29d93fbc564e8a1:log:13', 'hash': '0x66c9112880233acd8cf41fb42dfd0cdd4507fc53875f6d4ac29d93fbc564e8a1', 'from': '0xdd89e3ca1ba765782c271694c4044b25dc702d4d', 'to': '0x2a979e54be9fa9c7d9725a985d7dbadf9c5e7ace', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T14:26:41.000Z'}}, {'blockNum': '0x746f55', 'uniqueId': '0x4663284c16439bf746e17d4a2de2f4c749135b24293fe3253638c75fbed39b97:log:58', 'hash': '0x4663284c16439bf746e17d4a2de2f4c749135b24293fe3253638c75fbed39b97', 'from': '0x2a979e54be9fa9c7d9725a985d7dbadf9c5e7ace', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T14:43:37.000Z'}}, {'blockNum': '0x747044', 'uniqueId': '0xee3b7f33885c15ad3ff916a1d538605902c2ad218e2da74274ff1b98efe868d6:log:8', 'hash': '0xee3b7f33885c15ad3ff916a1d538605902c2ad218e2da74274ff1b98efe868d6', 'from': '0xaae630c90f1e6fcc7ff4e8f88beefd88e8ea4e26', 'to': '0x6aa437b89527f7a3f57a678e23a29cb8e0a2f643', 'value': 169.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x092f8591bdee108000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T15:31:55.000Z'}}, {'blockNum': '0x747119', 'uniqueId': '0xc43e437a79c27b02699818033eb9171933de3ddbc290bb3eede03b857294c17a:log:110', 'hash': '0xc43e437a79c27b02699818033eb9171933de3ddbc290bb3eede03b857294c17a', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 531.6442852084089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cd20bec9ff9ac6d73', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:21:22.000Z'}}, {'blockNum': '0x747119', 'uniqueId': '0xc43e437a79c27b02699818033eb9171933de3ddbc290bb3eede03b857294c17a:log:114', 'hash': '0xc43e437a79c27b02699818033eb9171933de3ddbc290bb3eede03b857294c17a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 531.6442852084089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cd20bec9ff9ac6d73', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:21:22.000Z'}}, {'blockNum': '0x7471c3', 'uniqueId': '0xf4268497cd8e786f8403f99b46c0cde272c85775b1e0e269544a749c84b22f55:log:44', 'hash': '0xf4268497cd8e786f8403f99b46c0cde272c85775b1e0e269544a749c84b22f55', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 678.7657988291566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24cbc489c7a0217977', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:59:58.000Z'}}, {'blockNum': '0x7471c3', 'uniqueId': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6:log:46', 'hash': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 509.05269253584413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b988676c8db21edfd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:59:58.000Z'}}, {'blockNum': '0x7471c3', 'uniqueId': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6:log:48', 'hash': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8e5272cec02272e232c4c8bdd1d64d3a4aa532e5', 'value': 509.05269253584413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b988676c8db21edfd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:59:58.000Z'}}, {'blockNum': '0x7471c3', 'uniqueId': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6:log:53', 'hash': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6', 'from': '0x8e5272cec02272e232c4c8bdd1d64d3a4aa532e5', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 509.05269253584413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b988676c8db21edfd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:59:58.000Z'}}, {'blockNum': '0x7471c4', 'uniqueId': '0x1035694835644829fdf756887df393ff28dd0c8cfbadc67035f041b445b87692:log:22', 'hash': '0x1035694835644829fdf756887df393ff28dd0c8cfbadc67035f041b445b87692', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1100.7901648530294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3bac8846b29482798a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:17.000Z'}}, {'blockNum': '0x7471c4', 'uniqueId': '0x1035694835644829fdf756887df393ff28dd0c8cfbadc67035f041b445b87692:log:26', 'hash': '0x1035694835644829fdf756887df393ff28dd0c8cfbadc67035f041b445b87692', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1100.7901648530294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3bac8846b29482798a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:17.000Z'}}, {'blockNum': '0x7471c5', 'uniqueId': '0x007bf467104e6ea719b39809b84ecfe283af18da6439511e10aa40e3b81dcc52:log:23', 'hash': '0x007bf467104e6ea719b39809b84ecfe283af18da6439511e10aa40e3b81dcc52', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 520.2845808355966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c346625af22bd98ef', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:21.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2:log:21', 'hash': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 399.5366886995346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15a8af75893f95cba3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2:log:23', 'hash': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 399.5366886995346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15a8af75893f95cba3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2:log:29', 'hash': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 399.5366886995345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15a8af75893f950000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0x14ddcf7b04b8e71eeeeb76fe4ab3ed413d84e7e50906752950f13e5950935b8a:log:51', 'hash': '0x14ddcf7b04b8e71eeeeb76fe4ab3ed413d84e7e50906752950f13e5950935b8a', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 516.9944768663436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c06bd598e49500527', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0x14ddcf7b04b8e71eeeeb76fe4ab3ed413d84e7e50906752950f13e5950935b8a:log:55', 'hash': '0x14ddcf7b04b8e71eeeeb76fe4ab3ed413d84e7e50906752950f13e5950935b8a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 516.9944768663436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c06bd598e49500527', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c8', 'uniqueId': '0x178ce6cff2cf20711c43ca6896ba44b76e76c2c1fbca9cfd63ab78d05aab2ff2:log:27', 'hash': '0x178ce6cff2cf20711c43ca6896ba44b76e76c2c1fbca9cfd63ab78d05aab2ff2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'value': 515.2984174287722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bef33bc7bc2eb5594', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:58.000Z'}}, {'blockNum': '0x7471c8', 'uniqueId': '0x5b1e509f8594aedddf8cf230a592d43fd908e262bfe3f803eaa171dd161da9e4:log:29', 'hash': '0x5b1e509f8594aedddf8cf230a592d43fd908e262bfe3f803eaa171dd161da9e4', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 507.687073595761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b8592cf980cee85f7', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:58.000Z'}}, {'blockNum': '0x7471c8', 'uniqueId': '0xdf680597158f90fe79c7fca7db48c10b3c1c9c482665e43ee840c50adb137f22:log:32', 'hash': '0xdf680597158f90fe79c7fca7db48c10b3c1c9c482665e43ee840c50adb137f22', 'from': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 515.2984174287722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bef33bc7bc2eb5594', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:58.000Z'}}, {'blockNum': '0x7471c8', 'uniqueId': '0x438346aedf72afa457882fb2979356c6139ae4a3f28de62b9c14ae295cd3e486:log:43', 'hash': '0x438346aedf72afa457882fb2979356c6139ae4a3f28de62b9c14ae295cd3e486', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 380.75559424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14a40b9ba1b5f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:58.000Z'}}, {'blockNum': '0x7471ca', 'uniqueId': '0xa7559819c9496d39a18ae6fc4ca4f57328718faa7c51c13fb3386a57f8338eb6:log:12', 'hash': '0xa7559819c9496d39a18ae6fc4ca4f57328718faa7c51c13fb3386a57f8338eb6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x713eb2e000ef040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:02.000Z'}}, {'blockNum': '0x7471cc', 'uniqueId': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb:log:114', 'hash': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 505.9325532492354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b6d3980a27714345d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:34.000Z'}}, {'blockNum': '0x7471cc', 'uniqueId': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb:log:118', 'hash': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 505.9325532492354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b6d3980a27714345d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:34.000Z'}}, {'blockNum': '0x7471cc', 'uniqueId': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb:log:119', 'hash': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 505.9564140672169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b6d8e45ec12ea8ad2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:34.000Z'}}, {'blockNum': '0x7471cc', 'uniqueId': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb:log:120', 'hash': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 505.9564140672169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b6d8e45ec12ea8ad2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:34.000Z'}}, {'blockNum': '0x7471ce', 'uniqueId': '0x463e82d43bee52d3b76ead5b5da1479b4888d74e9724752a438331007bc7ec4e:log:145', 'hash': '0x463e82d43bee52d3b76ead5b5da1479b4888d74e9724752a438331007bc7ec4e', 'from': '0x5f0cc257cac8892405267bab6504b170245be3c6', 'to': '0x6bbbad0fef8180b73bd1b01a14316e4cc7c13aa1', 'value': 698.3892998495737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25dc1937fcf39c6513', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:02:03.000Z'}}, {'blockNum': '0x7471d0', 'uniqueId': '0xa96a3cbd5218d1a7a8bff312c844ff40836c1693318f9525404bd5644df84112:log:16', 'hash': '0xa96a3cbd5218d1a7a8bff312c844ff40836c1693318f9525404bd5644df84112', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010afc1ade3b4ed40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:02:31.000Z'}}, {'blockNum': '0x7471d3', 'uniqueId': '0xda4dca5adb213f0c15a3df25f28c334f908b10856d0312080efcba0fb68c222a:log:1', 'hash': '0xda4dca5adb213f0c15a3df25f28c334f908b10856d0312080efcba0fb68c222a', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 454.5154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18a3ab142c98948000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:03:14.000Z'}}, {'blockNum': '0x7471d5', 'uniqueId': '0xd6deedffa0a9c8dd653e3d3a8b318191ba9b1ff86ad639c6f061c7127ab16f8b:log:26', 'hash': '0xd6deedffa0a9c8dd653e3d3a8b318191ba9b1ff86ad639c6f061c7127ab16f8b', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 626.9496238244515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21fcac812599349ae2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:03:52.000Z'}}, {'blockNum': '0x7471d7', 'uniqueId': '0x40551912e0dc958b8637520910d6d0d4cd2bd5da7a35db97a72764a71a1aa4d7:log:72', 'hash': '0x40551912e0dc958b8637520910d6d0d4cd2bd5da7a35db97a72764a71a1aa4d7', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 999.2084155788641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x362acd67ef97170ee9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:04:25.000Z'}}, {'blockNum': '0x7471d7', 'uniqueId': '0x40551912e0dc958b8637520910d6d0d4cd2bd5da7a35db97a72764a71a1aa4d7:log:74', 'hash': '0x40551912e0dc958b8637520910d6d0d4cd2bd5da7a35db97a72764a71a1aa4d7', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 999.2084155788641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x362acd67ef97170ee9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:04:25.000Z'}}, {'blockNum': '0x7471d8', 'uniqueId': '0x7322e41aa2edff6644fd11a6f720b0fe9aa58b4455ddaf74e174cf0b1c855080:log:6', 'hash': '0x7322e41aa2edff6644fd11a6f720b0fe9aa58b4455ddaf74e174cf0b1c855080', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2576.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8bb1abe0ffa81a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:04:44.000Z'}}, {'blockNum': '0x7471e4', 'uniqueId': '0x46341435de4927c6e3b090abb51d1e6f59bc3109cddce493197985c28f11f445:log:20', 'hash': '0x46341435de4927c6e3b090abb51d1e6f59bc3109cddce493197985c28f11f445', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 1200.61782634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4115eb5fe90d546800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:06:48.000Z'}}, {'blockNum': '0x7471e7', 'uniqueId': '0x202dca938dc86405470c774eec9b144e9c797e987407275130534a202d7a8319:log:58', 'hash': '0x202dca938dc86405470c774eec9b144e9c797e987407275130534a202d7a8319', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 535.1077394328518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d021c95e4516ae212', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:07:47.000Z'}}, {'blockNum': '0x7471e7', 'uniqueId': '0x202dca938dc86405470c774eec9b144e9c797e987407275130534a202d7a8319:log:60', 'hash': '0x202dca938dc86405470c774eec9b144e9c797e987407275130534a202d7a8319', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 535.1077394328518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d021c95e4516ae212', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:07:47.000Z'}}, {'blockNum': '0x7471e9', 'uniqueId': '0x6d1466566c5dc6d8a82e62e8a74811bf0da832ae82bb5ac4a76974ebad723312:log:31', 'hash': '0x6d1466566c5dc6d8a82e62e8a74811bf0da832ae82bb5ac4a76974ebad723312', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 537.9868074233459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d2a1116f9ab03fed4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:08:38.000Z'}}, {'blockNum': '0x7471ea', 'uniqueId': '0x20848864cad04a4ecebf5e79faefb53a6b3cfd9ffcb447503aad01941a7de65f:log:0', 'hash': '0x20848864cad04a4ecebf5e79faefb53a6b3cfd9ffcb447503aad01941a7de65f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 1140.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd92b0940b32a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:08:57.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0x2a2023fe6455ba0514b6eb21bc62e405fc6cbb399428c4cb3c9a92645473a092:log:12', 'hash': '0x2a2023fe6455ba0514b6eb21bc62e405fc6cbb399428c4cb3c9a92645473a092', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x713eb2e000ef040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0x6e88c8a164f7592bf3934b5a6340b04ef10d711ae321384abc7ee32b16ed2d12:log:13', 'hash': '0x6e88c8a164f7592bf3934b5a6340b04ef10d711ae321384abc7ee32b16ed2d12', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 380.75559424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14a40b9ba1b5f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0x2755c0ffba09976c55d5ca989cabda64982ad3a83f1d53d11ba691d8eeb8818c:log:14', 'hash': '0x2755c0ffba09976c55d5ca989cabda64982ad3a83f1d53d11ba691d8eeb8818c', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010afc1ade3b4ed40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0x35d77fe2fbbfa9b6be38bdc8262fd1f13b073594baef320920caa4286f752a91:log:15', 'hash': '0x35d77fe2fbbfa9b6be38bdc8262fd1f13b073594baef320920caa4286f752a91', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 454.5154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18a3ab142c98948000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0xe9893b0779ca69f7e2ae05d37fe69cb431e1593c6444d51eb2d0f10c5f9ad480:log:16', 'hash': '0xe9893b0779ca69f7e2ae05d37fe69cb431e1593c6444d51eb2d0f10c5f9ad480', 'from': '0x268737253715badc5016befa6113ecc68370b780', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1200.61782634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4115eb5fe90d546800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0xe095b2ad198d4b68d8d74688ef286e8c85e4fea48e8f7face149cf296ea48f8c:log:21', 'hash': '0xe095b2ad198d4b68d8d74688ef286e8c85e4fea48e8f7face149cf296ea48f8c', 'from': '0x6bbbad0fef8180b73bd1b01a14316e4cc7c13aa1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 698.3892998495737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25dc1937fcf39c6513', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747241', 'uniqueId': '0xc2ed80da6cd4b3761f100f8f19dd5316de0a821b483ec677911dc418cf2cd656:log:43', 'hash': '0xc2ed80da6cd4b3761f100f8f19dd5316de0a821b483ec677911dc418cf2cd656', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa8efe11704720c4baa75fb199f9ee6a309d24e2b', 'value': 14230.671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0303723b852c74e18000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:30:25.000Z'}}, {'blockNum': '0x747244', 'uniqueId': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac:log:38', 'hash': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 419.59045163162125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16befcbcac6881b9d4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:31:10.000Z'}}, {'blockNum': '0x747244', 'uniqueId': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac:log:40', 'hash': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 419.59045163162125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16befcbcac6881b9d4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:31:10.000Z'}}, {'blockNum': '0x747244', 'uniqueId': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac:log:44', 'hash': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 419.59045163162125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16befcbcac6881b9d4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:31:10.000Z'}}, {'blockNum': '0x747244', 'uniqueId': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac:log:46', 'hash': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 419.59045163162125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16befcbcac6881b9d4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:31:10.000Z'}}, {'blockNum': '0x747252', 'uniqueId': '0xc011a1439e7d4c6267cb10dac78877bac7973cbb6cd8d03ac58c62dede270bdd:log:3', 'hash': '0xc011a1439e7d4c6267cb10dac78877bac7973cbb6cd8d03ac58c62dede270bdd', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 547.3926874657909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1dac997d0a14e33e12', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:19.000Z'}}, {'blockNum': '0x747252', 'uniqueId': '0xc011a1439e7d4c6267cb10dac78877bac7973cbb6cd8d03ac58c62dede270bdd:log:5', 'hash': '0xc011a1439e7d4c6267cb10dac78877bac7973cbb6cd8d03ac58c62dede270bdd', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 547.3926874657909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1dac997d0a14e33e12', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:19.000Z'}}, {'blockNum': '0x747254', 'uniqueId': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038:log:31', 'hash': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 243.90562627373433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d38dedad41d1dcd59', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:36.000Z'}}, {'blockNum': '0x747254', 'uniqueId': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038:log:33', 'hash': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 243.90562627373433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d38dedad41d1dcd59', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:36.000Z'}}, {'blockNum': '0x747254', 'uniqueId': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038:log:38', 'hash': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 243.90538236810804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d38ddfcff68e75592', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:36.000Z'}}, {'blockNum': '0x74725e', 'uniqueId': '0xab5aa0336970eaa54293e18d37fb48a34a98a5d18ff7e3224c098a9dd0a20bb4:log:80', 'hash': '0xab5aa0336970eaa54293e18d37fb48a34a98a5d18ff7e3224c098a9dd0a20bb4', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 553.4217155506365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e0044e623aef513f9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:36:25.000Z'}}, {'blockNum': '0x74725e', 'uniqueId': '0xab5aa0336970eaa54293e18d37fb48a34a98a5d18ff7e3224c098a9dd0a20bb4:log:82', 'hash': '0xab5aa0336970eaa54293e18d37fb48a34a98a5d18ff7e3224c098a9dd0a20bb4', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 553.4217155506365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e0044e623aef513f9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:36:25.000Z'}}, {'blockNum': '0x74726c', 'uniqueId': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc:log:44', 'hash': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 273.66507297098843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ed5dda5ed6b1e45e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:39:05.000Z'}}, {'blockNum': '0x74726c', 'uniqueId': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc:log:46', 'hash': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 273.66507297098843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ed5dda5ed6b1e45e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:39:05.000Z'}}, {'blockNum': '0x74726c', 'uniqueId': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc:log:51', 'hash': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 273.66479930591544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ed5dcad07cda808fc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:39:05.000Z'}}, {'blockNum': '0x747285', 'uniqueId': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133:log:135', 'hash': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 308.7422766087459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10bca8e8c9f9b1b919', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:44:59.000Z'}}, {'blockNum': '0x747285', 'uniqueId': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133:log:137', 'hash': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 308.7422766087459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10bca8e8c9f9b1b919', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:44:59.000Z'}}, {'blockNum': '0x747285', 'uniqueId': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133:log:142', 'hash': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 308.7422766087459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10bca8e8c9f9b1b919', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:44:59.000Z'}}, {'blockNum': '0x747285', 'uniqueId': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133:log:144', 'hash': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 308.7422766087459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10bca8e8c9f9b1b919', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:44:59.000Z'}}, {'blockNum': '0x7472a9', 'uniqueId': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626:log:92', 'hash': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 196.78657295655074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaaf6597be9b2ec33', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:53:18.000Z'}}, {'blockNum': '0x7472a9', 'uniqueId': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626:log:94', 'hash': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 196.78657295655074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaaf6597be9b2ec33', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:53:18.000Z'}}, {'blockNum': '0x7472a9', 'uniqueId': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626:log:100', 'hash': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 196.78657295655077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaaf6597be9b30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:53:18.000Z'}}, {'blockNum': '0x7472cb', 'uniqueId': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e:log:39', 'hash': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 416.9883879675409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x169ae0598eac0b9ba5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:28.000Z'}}, {'blockNum': '0x7472cb', 'uniqueId': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e:log:41', 'hash': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 416.9883879675409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x169ae0598eac0b9ba5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:28.000Z'}}, {'blockNum': '0x7472cb', 'uniqueId': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e:log:46', 'hash': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 416.9879709791529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x169adede4eff4e1970', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:28.000Z'}}, {'blockNum': '0x7472cb', 'uniqueId': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e:log:48', 'hash': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 416.9879709791529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x169adede4eff4e1970', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:28.000Z'}}, {'blockNum': '0x7472cc', 'uniqueId': '0xccf2cf31b7406961e011c604a554e8919a200c7c112e8eca9f7ecba3577d795b:log:44', 'hash': '0xccf2cf31b7406961e011c604a554e8919a200c7c112e8eca9f7ecba3577d795b', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 563.0315315315315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e85a1d2dbe915350b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:45.000Z'}}, {'blockNum': '0x7472cc', 'uniqueId': '0xccf2cf31b7406961e011c604a554e8919a200c7c112e8eca9f7ecba3577d795b:log:46', 'hash': '0xccf2cf31b7406961e011c604a554e8919a200c7c112e8eca9f7ecba3577d795b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 563.0315315315315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e85a1d2dbe915350b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:45.000Z'}}, {'blockNum': '0x7472d4', 'uniqueId': '0xddfa5f4d42e9ecc76319f1dc636c6931d462655e6460badf40aaef14a92ecde6:log:30', 'hash': '0xddfa5f4d42e9ecc76319f1dc636c6931d462655e6460badf40aaef14a92ecde6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3479b2d750f2200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:02:46.000Z'}}, {'blockNum': '0x7472d7', 'uniqueId': '0x925dbb5285a0332430b9e6aeeaaf8a5d0377640a4de875022c0441c012e81aa0:log:10', 'hash': '0x925dbb5285a0332430b9e6aeeaaf8a5d0377640a4de875022c0441c012e81aa0', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3479b2d750f2200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:03:42.000Z'}}, {'blockNum': '0x7472d7', 'uniqueId': '0x925dbb5285a0332430b9e6aeeaaf8a5d0377640a4de875022c0441c012e81aa0:log:12', 'hash': '0x925dbb5285a0332430b9e6aeeaaf8a5d0377640a4de875022c0441c012e81aa0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3479b2d750f2200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:03:42.000Z'}}, {'blockNum': '0x7472e1', 'uniqueId': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5:log:108', 'hash': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 218.70462881436356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0bdb22ed28edcd26e2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:06:17.000Z'}}, {'blockNum': '0x7472e1', 'uniqueId': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5:log:110', 'hash': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 218.70462881436356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0bdb22ed28edcd26e2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:06:17.000Z'}}, {'blockNum': '0x7472e1', 'uniqueId': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5:log:116', 'hash': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 218.70462881436356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0bdb22ed28edcd0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:06:17.000Z'}}, {'blockNum': '0x7472e2', 'uniqueId': '0x6155f190a03ac76d4e7fca54693404672bf10ac51063f9d31c9680f01f1c7ef9:log:78', 'hash': '0x6155f190a03ac76d4e7fca54693404672bf10ac51063f9d31c9680f01f1c7ef9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2801ceb1e88e480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:06:30.000Z'}}, {'blockNum': '0x7472e7', 'uniqueId': '0xa0e9989f0a8ced1479630b32ed8814c917405b2a75a9a911ae03460991866d78:log:6', 'hash': '0xa0e9989f0a8ced1479630b32ed8814c917405b2a75a9a911ae03460991866d78', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 3479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbc98d2e377cffc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:07:39.000Z'}}, {'blockNum': '0x7472f3', 'uniqueId': '0xba26b5be5dd3491c16807d6e3f6eb3d7a2f67bf67f9b7cbd207df44699d6597c:log:17', 'hash': '0xba26b5be5dd3491c16807d6e3f6eb3d7a2f67bf67f9b7cbd207df44699d6597c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 1118.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ca7db55d050920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:10:24.000Z'}}, {'blockNum': '0x74731d', 'uniqueId': '0x8d67d87a30bb00d1af538f15c335736766d4e216b84095b0a0da9dde6b05a52e:log:11', 'hash': '0x8d67d87a30bb00d1af538f15c335736766d4e216b84095b0a0da9dde6b05a52e', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 1118.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ca7db55d050920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:21:48.000Z'}}, {'blockNum': '0x74733c', 'uniqueId': '0xad6f4e029c84336ce7be825dbb857cc4cf3e08f87a6d47c2b6556783f2436b5a:log:8', 'hash': '0xad6f4e029c84336ce7be825dbb857cc4cf3e08f87a6d47c2b6556783f2436b5a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x91471bcfe99718f13116ae9e723846136bf62e04', 'value': 333.563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12151dd5351d9f8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:29:42.000Z'}}, {'blockNum': '0x747350', 'uniqueId': '0xbd66da9e10ceb77ca5d6178f9fbde47d185b4421e9b67c392f26fd47d15b8972:log:9', 'hash': '0xbd66da9e10ceb77ca5d6178f9fbde47d185b4421e9b67c392f26fd47d15b8972', 'from': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1118.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ca7db55d050920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:34:24.000Z'}}, {'blockNum': '0x7474d1', 'uniqueId': '0x5b94f1844f06768fda8065d5cf607546a5827e777cba0a3e84c492e768797009:log:18', 'hash': '0x5b94f1844f06768fda8065d5cf607546a5827e777cba0a3e84c492e768797009', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 1140.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd92b0940b32a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T19:57:10.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:86', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:90', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:92', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:93', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:94', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:32', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 275.6534653895575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef175d64c12019920', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:36', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 275.6534653895575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef175d64c12019920', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:37', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 275.6282658625367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef11c4f75f96d6551', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:38', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 275.6282658625367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef11c4f75f96d6551', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:39', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 275.6282658625367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef11c4f75f96d6551', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7475a0', 'uniqueId': '0xe520689569066896f558545cc933664850033a1336e0288c971823e856036869:log:7', 'hash': '0xe520689569066896f558545cc933664850033a1336e0288c971823e856036869', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4b771b02981ef44e52c7b561e9a614fa9b11def6', 'value': 105.798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05bc3e00754ac70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:41:57.000Z'}}, {'blockNum': '0x7475dc', 'uniqueId': '0xa23d3a0dfb7e103811f854dda92b2d47b61f15d016d8698c4212dae5478ac4ec:log:79', 'hash': '0xa23d3a0dfb7e103811f854dda92b2d47b61f15d016d8698c4212dae5478ac4ec', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 1548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x53ead0c65830b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:55:27.000Z'}}, {'blockNum': '0x747976', 'uniqueId': '0xd3493c714f647c56d129ec27480b7180ed44ed69193d5165b85285fbed256650:log:25', 'hash': '0xd3493c714f647c56d129ec27480b7180ed44ed69193d5165b85285fbed256650', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2801ceb1e88e480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-25T00:15:43.000Z'}}, {'blockNum': '0x747976', 'uniqueId': '0xd3493c714f647c56d129ec27480b7180ed44ed69193d5165b85285fbed256650:log:27', 'hash': '0xd3493c714f647c56d129ec27480b7180ed44ed69193d5165b85285fbed256650', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2801ceb1e88e480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-25T00:15:43.000Z'}}, {'blockNum': '0x747976', 'uniqueId': '0xe3cbcbcc70676b9638c30d38746a034573c4e9bf5d0cfc1e30daa0bbff152521:log:57', 'hash': '0xe3cbcbcc70676b9638c30d38746a034573c4e9bf5d0cfc1e30daa0bbff152521', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 560.396988633912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e61120c0d52f0b1bb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-25T00:15:43.000Z'}}, {'blockNum': '0x747976', 'uniqueId': '0xe3cbcbcc70676b9638c30d38746a034573c4e9bf5d0cfc1e30daa0bbff152521:log:61', 'hash': '0xe3cbcbcc70676b9638c30d38746a034573c4e9bf5d0cfc1e30daa0bbff152521', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 560.396988633912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e61120c0d52f0b1bb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-25T00:15:43.000Z'}}]}}
Number of returned transfers:  159
Answer is complete
 
symbol             NAV
group              MPG
date        2019-05-18
hour             17:00
exchange       binance
Name: 498, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-05-18 17:00:00 2019-05-18 05:00:00 2019-05-19 05:00:00
Unix timestamps:  1558148400.0 1558234800.0
Hex Block Numbers:  0x76bcf2 0x76d5dc
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ADX
group              MPG
date        2019-07-05
hour             17:00
exchange       binance
Name: 499, dtype: object
HERE
 Symbol: ADX, Contract: 0xade00c28244d5ce17d72e40330b1c318cd12b7c3
Datetime timestamps:  2019-07-05 17:00:00 2019-07-05 05:00:00 2019-07-06 05:00:00
Unix timestamps:  1562295600.0 1562382000.0
Hex Block Numbers:  0x7b6c8b 0x7b85ae
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             NAV
group              MPG
date        2019-07-13
hour             16:57
exchange       binance
Name: 500, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-07-13 16:57:00 2019-07-13 04:57:00 2019-07-14 04:57:00
Unix timestamps:  1562986620.0 1563073020.0
Hex Block Numbers:  0x7c3558 0x7c4eaf
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BLZ
group              MPG
date        2019-07-28
hour             17:00
exchange       binance
Name: 501, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-07-28 17:00:00 2019-07-28 05:00:00 2019-07-29 05:00:00
Unix timestamps:  1564282800.0 1564369200.0
Hex Block Numbers:  0x7dae25 0x7dc73b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7dafc6', 'uniqueId': '0xfcf379dc8ddb119fe401cd038186f028e0ee69c311b721b738e7ffa92562edb4:log:96', 'hash': '0xfcf379dc8ddb119fe401cd038186f028e0ee69c311b721b738e7ffa92562edb4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 8898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01e25c8e506021c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T04:35:43.000Z'}}, {'blockNum': '0x7db177', 'uniqueId': '0x7d9d797973d27e96a0a991fa1b0643f08655a252e67e3cc3126629f8f3b51d4b:log:2', 'hash': '0x7d9d797973d27e96a0a991fa1b0643f08655a252e67e3cc3126629f8f3b51d4b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 24390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x052a2f3ea03de1580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:13:27.000Z'}}, {'blockNum': '0x7db193', 'uniqueId': '0x2f7561f67663c4da4d004b198df0c1c937a9d554fc48a8bf2803994243905112:log:80', 'hash': '0x2f7561f67663c4da4d004b198df0c1c937a9d554fc48a8bf2803994243905112', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x052a2f3ea03de1580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:19:05.000Z'}}, {'blockNum': '0x7db194', 'uniqueId': '0xd0a09d869a1b6f7030adcd7035b9f6b5cab1844474fd55f0f83bd942c0a0be6f:log:10', 'hash': '0xd0a09d869a1b6f7030adcd7035b9f6b5cab1844474fd55f0f83bd942c0a0be6f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 17316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03aab3c60fe668100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:20:14.000Z'}}, {'blockNum': '0x7db1b9', 'uniqueId': '0x072e028462e4d0d1cc912237a5625d8328a2a879dd5d3f3693df69c57238cd87:log:14', 'hash': '0x072e028462e4d0d1cc912237a5625d8328a2a879dd5d3f3693df69c57238cd87', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03aab3c60fe668100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:28:56.000Z'}}, {'blockNum': '0x7db1d9', 'uniqueId': '0x3dc727f78d6f80a8bc2679c0997e1d1933f74422d36d25ace8ca3cef4f896aa9:log:38', 'hash': '0x3dc727f78d6f80a8bc2679c0997e1d1933f74422d36d25ace8ca3cef4f896aa9', 'from': '0x60cc81440e70c44a5e51c90e76e23c4368065a1a', 'to': '0xaa89331dc7a30596cd492c771760af93a6104dec', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:37:56.000Z'}}, {'blockNum': '0x7db2d0', 'uniqueId': '0x1f84b6ad945014e5b45c102624998a391d26a897c6b49a0b570dcb7e932e5b8d:log:1', 'hash': '0x1f84b6ad945014e5b45c102624998a391d26a897c6b49a0b570dcb7e932e5b8d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 27797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05e2e0de212e9d340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:30:42.000Z'}}, {'blockNum': '0x7db2de', 'uniqueId': '0x41a3f18c9158bc590fff35df7c7745de4c03f45e4d07a2b4ae8e16907a17d858:log:10', 'hash': '0x41a3f18c9158bc590fff35df7c7745de4c03f45e4d07a2b4ae8e16907a17d858', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 52039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b050a33218fb8bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:34:47.000Z'}}, {'blockNum': '0x7db2e2', 'uniqueId': '0x5d8f64a6739d330224506b70060e89b0c2b176ec7973fd8d77ee3a3bc99208b8:log:3', 'hash': '0x5d8f64a6739d330224506b70060e89b0c2b176ec7973fd8d77ee3a3bc99208b8', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 31407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a693ae8295155c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:35:29.000Z'}}, {'blockNum': '0x7db2f9', 'uniqueId': '0x98a515287ef1c5e06e9e2f6b44e06f5b7785fb95a558284c7a8757f9bce8017e:log:27', 'hash': '0x98a515287ef1c5e06e9e2f6b44e06f5b7785fb95a558284c7a8757f9bce8017e', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b050a33218fb8bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:39:10.000Z'}}, {'blockNum': '0x7db317', 'uniqueId': '0x49817af857361bb2aae1b0bbe93c7bfce6a3e1871850050a8b84596966012bd8:log:17', 'hash': '0x49817af857361bb2aae1b0bbe93c7bfce6a3e1871850050a8b84596966012bd8', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 28257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05fbd0a66bff64e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:46:49.000Z'}}, {'blockNum': '0x7db31f', 'uniqueId': '0x6441123dc5ef7eed07e6969b68a46b7031a01c5ae7baae5c528a8191d8fa73ae:log:50', 'hash': '0x6441123dc5ef7eed07e6969b68a46b7031a01c5ae7baae5c528a8191d8fa73ae', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a693ae8295155c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:48:53.000Z'}}, {'blockNum': '0x7db349', 'uniqueId': '0xa954dd08b3b744198e5df3189ac32b4e4cbb8da1d2b42ed636eeb2e78049fca6:log:10', 'hash': '0xa954dd08b3b744198e5df3189ac32b4e4cbb8da1d2b42ed636eeb2e78049fca6', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05fbd0a66bff64e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:59:02.000Z'}}, {'blockNum': '0x7db5ff', 'uniqueId': '0xf308a9ef39d5840c9867f3f42aa3a5347febe06eead8aa321fbe79d9529d7d85:log:27', 'hash': '0xf308a9ef39d5840c9867f3f42aa3a5347febe06eead8aa321fbe79d9529d7d85', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7a3a9ec9a7a8fe1b32c25a69fc7ab891504ba29d', 'value': 8017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01b29a39901d12a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T10:34:37.000Z'}}, {'blockNum': '0x7db721', 'uniqueId': '0x55bd6a6075ab44325859a53b8a1007fafb4d6b2bf31a032dd50d444ea1595406:log:53', 'hash': '0x55bd6a6075ab44325859a53b8a1007fafb4d6b2bf31a032dd50d444ea1595406', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 35226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07759af40ca736280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T11:38:07.000Z'}}, {'blockNum': '0x7db75b', 'uniqueId': '0x1c475aaab3f532f899743a48415d516dd85fa981cb48dcd0df29e318f088e50f:log:2', 'hash': '0x1c475aaab3f532f899743a48415d516dd85fa981cb48dcd0df29e318f088e50f', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07759af40ca736280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T11:49:09.000Z'}}, {'blockNum': '0x7db943', 'uniqueId': '0x711c556c94e3fbdc576da7cf5845c836f565445002bad73a391cd4fc922e3136:log:50', 'hash': '0x711c556c94e3fbdc576da7cf5845c836f565445002bad73a391cd4fc922e3136', 'from': '0xef4004bf10f8ef2ee1c82c6cc289b83c3ab719d4', 'to': '0xd5240c700c11074187ec1ff453400d00a415101b', 'value': 1209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x418a3ed67187440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T13:40:08.000Z'}}, {'blockNum': '0x7db96c', 'uniqueId': '0x0ebf35a6b80eff8ec3712c55fc64f61adafbc26dc7c2d165a9afdd4d8391c4a5:log:1', 'hash': '0x0ebf35a6b80eff8ec3712c55fc64f61adafbc26dc7c2d165a9afdd4d8391c4a5', 'from': '0xd5240c700c11074187ec1ff453400d00a415101b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x418a3ed67187440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T13:49:03.000Z'}}, {'blockNum': '0x7dba9c', 'uniqueId': '0x3ea7e6944e15dcf54f3fc08014d142f43757f726131c5d75f56064cb6a82894f:log:0', 'hash': '0x3ea7e6944e15dcf54f3fc08014d142f43757f726131c5d75f56064cb6a82894f', 'from': '0x672bda15798909c738a5aa1cdd6e1470bb0b122c', 'to': '0x93227d218a55ac1fbcebd47b99e760819cdb7fdc', 'value': 6371.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x015964efeee043d40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T14:58:12.000Z'}}, {'blockNum': '0x7dbac3', 'uniqueId': '0x96efcad235566a249901759bca0e64f9e4c6f549d2e29c236e510342713b67da:log:27', 'hash': '0x96efcad235566a249901759bca0e64f9e4c6f549d2e29c236e510342713b67da', 'from': '0x93227d218a55ac1fbcebd47b99e760819cdb7fdc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6371.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x015964efeee043d40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:08:54.000Z'}}, {'blockNum': '0x7dbaf0', 'uniqueId': '0x0ee9368a12f77f9517fe628f9d17f4f5a2d06691d2bd33d5e49ffbd32dd0dafc:log:22', 'hash': '0x0ee9368a12f77f9517fe628f9d17f4f5a2d06691d2bd33d5e49ffbd32dd0dafc', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 46911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ef0ce762dead9c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:19:20.000Z'}}, {'blockNum': '0x7dbaf7', 'uniqueId': '0x8c909a12eae24704283c5cfb41abec8202135aa0811649507b43babf117cac6f:log:1', 'hash': '0x8c909a12eae24704283c5cfb41abec8202135aa0811649507b43babf117cac6f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0367b2d3f48239400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:21:51.000Z'}}, {'blockNum': '0x7dbb02', 'uniqueId': '0x3f074311ef9a7df59a01df97d43b7093026a54376efbb435409877700d67004a:log:3', 'hash': '0x3f074311ef9a7df59a01df97d43b7093026a54376efbb435409877700d67004a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 34128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x073a15246e1b43400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:25:17.000Z'}}, {'blockNum': '0x7dbb09', 'uniqueId': '0x13f10d7662b2517998ca60fd9acc9f7850f39ae391c2720e08bede6df7dbed0e:log:23', 'hash': '0x13f10d7662b2517998ca60fd9acc9f7850f39ae391c2720e08bede6df7dbed0e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 16004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0363941db72c87900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:26:31.000Z'}}, {'blockNum': '0x7dbb09', 'uniqueId': '0x7d8c6bc8af4496ebe49d9f90c7319ecc111a880e4172adbd342bbd3d0ba67bc2:log:24', 'hash': '0x7d8c6bc8af4496ebe49d9f90c7319ecc111a880e4172adbd342bbd3d0ba67bc2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 32921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f8a6a705110ac40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:26:31.000Z'}}, {'blockNum': '0x7dbb09', 'uniqueId': '0x88bd2df519c863192e73f542278910b0b453e5521d9542ec53de92ae4bd02594:log:26', 'hash': '0x88bd2df519c863192e73f542278910b0b453e5521d9542ec53de92ae4bd02594', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 46622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09df6239220eb5b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:26:31.000Z'}}, {'blockNum': '0x7dbb0f', 'uniqueId': '0xde404d630bb97d05e9470c58d33d22c5654251ffd9c2828958c873d579834940:log:24', 'hash': '0xde404d630bb97d05e9470c58d33d22c5654251ffd9c2828958c873d579834940', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0367b2d3f48239400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:29:09.000Z'}}, {'blockNum': '0x7dbb0f', 'uniqueId': '0x685ae0fec3882bea548749cb4b72bd596e4306eea52888c87c82bc61a9dac1b3:log:25', 'hash': '0x685ae0fec3882bea548749cb4b72bd596e4306eea52888c87c82bc61a9dac1b3', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ef0ce762dead9c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:29:09.000Z'}}, {'blockNum': '0x7dbb3c', 'uniqueId': '0xcb3598acb3769e43b4b1310e528b3dc6d586a7d2999f47a4a5877cf1f9d09b4f:log:8', 'hash': '0xcb3598acb3769e43b4b1310e528b3dc6d586a7d2999f47a4a5877cf1f9d09b4f', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f8a6a705110ac40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:06.000Z'}}, {'blockNum': '0x7dbb3c', 'uniqueId': '0xc022ecad14bffcbce6052f00cdacbedd7c3f56662a6e678179e67d70b2a174f7:log:9', 'hash': '0xc022ecad14bffcbce6052f00cdacbedd7c3f56662a6e678179e67d70b2a174f7', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0363941db72c87900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:06.000Z'}}, {'blockNum': '0x7dbb3d', 'uniqueId': '0x969038bad93f2577e0c330b29d5fe179a7f075f600d66c36939e288177e8b07b:log:82', 'hash': '0x969038bad93f2577e0c330b29d5fe179a7f075f600d66c36939e288177e8b07b', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x073a15246e1b43400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:09.000Z'}}, {'blockNum': '0x7dbb3d', 'uniqueId': '0xf5b2b8cffdd421d0a14538832b17fe9bcf047b61f495a5376d4eb3b505113c8b:log:89', 'hash': '0xf5b2b8cffdd421d0a14538832b17fe9bcf047b61f495a5376d4eb3b505113c8b', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09df6239220eb5b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:09.000Z'}}, {'blockNum': '0x7dbb4c', 'uniqueId': '0x95e3d6b78c1efc8959ae21dc1ce1902d03fb3e887a9049d529c46940d021d370:log:4', 'hash': '0x95e3d6b78c1efc8959ae21dc1ce1902d03fb3e887a9049d529c46940d021d370', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 569594.5937329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x789dc8e886937b9e6800', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:42:03.000Z'}}, {'blockNum': '0x7dbb53', 'uniqueId': '0x3a5fa2ac1684b61092cf8ac056718763022c13615df7d4bc9c063f5a46b504ed:log:0', 'hash': '0x3a5fa2ac1684b61092cf8ac056718763022c13615df7d4bc9c063f5a46b504ed', 'from': '0x0788fcb44e325c0fdc598bad557ec7c4442f0cb8', 'to': '0x6d5a1fc7e155b8aac63fb44aff3e427c62f2ea8e', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:43:09.000Z'}}, {'blockNum': '0x7dbb67', 'uniqueId': '0xa4f1c15b33e2360e23b42dc135c1138664c88303b0ba8f73343b8f96b035d9fd:log:6', 'hash': '0xa4f1c15b33e2360e23b42dc135c1138664c88303b0ba8f73343b8f96b035d9fd', 'from': '0x6d5a1fc7e155b8aac63fb44aff3e427c62f2ea8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:48:56.000Z'}}, {'blockNum': '0x7dbbb5', 'uniqueId': '0xad953f7502f61f58cfd19fb0e6d8cc6066d64a69d46964a6ec20e3c7a3d52691:log:2', 'hash': '0xad953f7502f61f58cfd19fb0e6d8cc6066d64a69d46964a6ec20e3c7a3d52691', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 29715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x064ada76f72ebc6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:05:53.000Z'}}, {'blockNum': '0x7dbbf1', 'uniqueId': '0x224ec24bfbd690b99412def62749425712ed200826a22fc1279f6c50ced43ba9:log:22', 'hash': '0x224ec24bfbd690b99412def62749425712ed200826a22fc1279f6c50ced43ba9', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x064ada76f72ebc6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:18:52.000Z'}}, {'blockNum': '0x7dbbf7', 'uniqueId': '0xb611829ae052d6d1c89a723967a0c5e17375cbb3b428be171cbc576764eb4739:log:61', 'hash': '0xb611829ae052d6d1c89a723967a0c5e17375cbb3b428be171cbc576764eb4739', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 46312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ce941be48202a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:20:09.000Z'}}, {'blockNum': '0x7dbbfb', 'uniqueId': '0x52e9d5851340a0909b3f2a64a65d9d17d97e28f8e8bca072e74d897b3136fa44:log:16', 'hash': '0x52e9d5851340a0909b3f2a64a65d9d17d97e28f8e8bca072e74d897b3136fa44', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0372f968667a3a800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:21:13.000Z'}}, {'blockNum': '0x7dbc1d', 'uniqueId': '0xbc1739014e004edd8c0722c4cd395053e0df411fdbd50e8002e8cce5865a1f13:log:12', 'hash': '0xbc1739014e004edd8c0722c4cd395053e0df411fdbd50e8002e8cce5865a1f13', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0372f968667a3a800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:29:04.000Z'}}, {'blockNum': '0x7dbc1e', 'uniqueId': '0x39078f9f1541d47198732174e55e985c80d06b91a9ae6a3fa74ccb8bd27ff736:log:3', 'hash': '0x39078f9f1541d47198732174e55e985c80d06b91a9ae6a3fa74ccb8bd27ff736', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ce941be48202a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:29:14.000Z'}}, {'blockNum': '0x7dbc36', 'uniqueId': '0xf3d6a6a62403e92aa2d7bbf9ff5beb28bd3546fe969445293b9824ee3dfa84f2:log:66', 'hash': '0xf3d6a6a62403e92aa2d7bbf9ff5beb28bd3546fe969445293b9824ee3dfa84f2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 5724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01364c7518f2bff00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:34:04.000Z'}}, {'blockNum': '0x7dbc4e', 'uniqueId': '0x965785cd363a75542e972e5260ea936f01a24c9736037f47e95df25cb9764c05:log:5', 'hash': '0x965785cd363a75542e972e5260ea936f01a24c9736037f47e95df25cb9764c05', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01364c7518f2bff00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:39:01.000Z'}}, {'blockNum': '0x7dbcab', 'uniqueId': '0x561043a1d5f77eedc408c3623559002454451960a79e183d3c09bbe686481ad1:log:2', 'hash': '0x561043a1d5f77eedc408c3623559002454451960a79e183d3c09bbe686481ad1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 4671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfd372597fb399c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:23.000Z'}}, {'blockNum': '0x7dbcac', 'uniqueId': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a:log:7', 'hash': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5378.957487675679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01239807d81a546d4fdf', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:28.000Z'}}, {'blockNum': '0x7dbcac', 'uniqueId': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a:log:9', 'hash': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 5378.957487675679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01239807d81a546d4fdf', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:28.000Z'}}, {'blockNum': '0x7dbcb0', 'uniqueId': '0xb21d62ad51706b8aecad8b6202d94a3863445d0ecd99f2f976705bce0afb8ffe:log:15', 'hash': '0xb21d62ad51706b8aecad8b6202d94a3863445d0ecd99f2f976705bce0afb8ffe', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 63289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d66e7500481c1440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:55.000Z'}}, {'blockNum': '0x7dbcb1', 'uniqueId': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4:log:6', 'hash': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 10678.306404533758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0242df453ad4d5465e8e', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:04.000Z'}}, {'blockNum': '0x7dbcb1', 'uniqueId': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4:log:8', 'hash': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 10678.306404533758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0242df453ad4d5465e8e', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:04.000Z'}}, {'blockNum': '0x7dbcb2', 'uniqueId': '0x6c2e7dcc41e6366e3d4a9a68622e5b9c00e58cb4276e986d6e5c83b8c6795919:log:1', 'hash': '0x6c2e7dcc41e6366e3d4a9a68622e5b9c00e58cb4276e986d6e5c83b8c6795919', 'from': '0x1cf78337f278a12c203e570921446d3438539e7c', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:16.000Z'}}, {'blockNum': '0x7dbcb2', 'uniqueId': '0xa463a3c6a461a7b8250e9357bdc62640a77c413b10c146f2efefed3e3ba3cf28:log:109', 'hash': '0xa463a3c6a461a7b8250e9357bdc62640a77c413b10c146f2efefed3e3ba3cf28', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 35225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07758d1355f38ec40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:16.000Z'}}, {'blockNum': '0x7dbcb5', 'uniqueId': '0x2979909552a542461d8d4584ef2142060727586aeac2b949a96eae3b49091ed5:log:3', 'hash': '0x2979909552a542461d8d4584ef2142060727586aeac2b949a96eae3b49091ed5', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 16057.263892209436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0366774d12ef29b3ae6d', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:11.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0x13b81b0ca8c2cd28546ecf905612555028c592878328354d7d8e7c13c04905f0:log:14', 'hash': '0x13b81b0ca8c2cd28546ecf905612555028c592878328354d7d8e7c13c04905f0', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 46180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c76c3dafdfb3100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0xc5a4f233b022fabe5027b5a670f08060c4135955fcf1638a184c51517d203058:log:15', 'hash': '0xc5a4f233b022fabe5027b5a670f08060c4135955fcf1638a184c51517d203058', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0x79c0b5a4a4798c4dc255cbd6e5e771b9d40b19fd3a7eac77410f588a2395c54f:log:16', 'hash': '0x79c0b5a4a4798c4dc255cbd6e5e771b9d40b19fd3a7eac77410f588a2395c54f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x027ca4bd719f0b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0x0329420e93b0905b7b94a88840ec5b37fd60b9ea02ec0e2e927da82d34084079:log:17', 'hash': '0x0329420e93b0905b7b94a88840ec5b37fd60b9ea02ec0e2e927da82d34084079', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 47131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fafa046542878c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcbb', 'uniqueId': '0x18aba9c295eab3f1e16b6698161329f4d733aabe9c425736c73d5b7e41f34dc1:log:13', 'hash': '0x18aba9c295eab3f1e16b6698161329f4d733aabe9c425736c73d5b7e41f34dc1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 37240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07e2c8d166061ae00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:03:39.000Z'}}, {'blockNum': '0x7dbcbb', 'uniqueId': '0x897a2eb6cdf66340f2ec6c3281eeb2f14e1bca7f40c81cce4ebbfc6cc4151e71:log:14', 'hash': '0x897a2eb6cdf66340f2ec6c3281eeb2f14e1bca7f40c81cce4ebbfc6cc4151e71', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 48932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a5c9be9bb2726100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:03:39.000Z'}}, {'blockNum': '0x7dbcbd', 'uniqueId': '0xc6ce3241b53ad56a9f365fab8914e6cad7550aba2e5473e75b0e69ea2d7689dd:log:9', 'hash': '0xc6ce3241b53ad56a9f365fab8914e6cad7550aba2e5473e75b0e69ea2d7689dd', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 32194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06d13d802ce0adc80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:02.000Z'}}, {'blockNum': '0x7dbcbd', 'uniqueId': '0x5d631abef6bd5055a48858ce4d6d8f46226b3d48d032a2fff906ba2320e4e0cf:log:10', 'hash': '0x5d631abef6bd5055a48858ce4d6d8f46226b3d48d032a2fff906ba2320e4e0cf', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 26765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05aaeefd9cf3d2140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:02.000Z'}}, {'blockNum': '0x7dbcbd', 'uniqueId': '0xfca3eef869297bae54b32a66e1c7ab9e356627ee085bcf722d252e1c8a5bc7f6:log:11', 'hash': '0xfca3eef869297bae54b32a66e1c7ab9e356627ee085bcf722d252e1c8a5bc7f6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 24954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0548c251240aa9a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:02.000Z'}}, {'blockNum': '0x7dbcbf', 'uniqueId': '0x97e0f712c2cd46184f745c555e7461478f802b7c511510caedb2f451d415bb34:log:1', 'hash': '0x97e0f712c2cd46184f745c555e7461478f802b7c511510caedb2f451d415bb34', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 185197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x27378cab2c3db1940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:23.000Z'}}, {'blockNum': '0x7dbcc0', 'uniqueId': '0x5a92cced75a4706b1d72980274f63a2d81eb21d2d30c954ced6c60607e680167:log:1', 'hash': '0x5a92cced75a4706b1d72980274f63a2d81eb21d2d30c954ced6c60607e680167', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:30.000Z'}}, {'blockNum': '0x7dbcc1', 'uniqueId': '0x48a46119532af1cb3caa8199b6eb6af81901eabe3adbde61d4e7b4b27f9f19ae:log:5', 'hash': '0x48a46119532af1cb3caa8199b6eb6af81901eabe3adbde61d4e7b4b27f9f19ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 6279.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01546dbb5c31920c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:32.000Z'}}, {'blockNum': '0x7dbcc1', 'uniqueId': '0x806dd103cd1f8061ab9ac9233f4c376eb97d77a4e26540f82ac5f2d35bf28a4f:log:19', 'hash': '0x806dd103cd1f8061ab9ac9233f4c376eb97d77a4e26540f82ac5f2d35bf28a4f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 80930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1123395e067bab480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:32.000Z'}}, {'blockNum': '0x7dbcc1', 'uniqueId': '0xfb44269b9e6282489d0cb7c81fbf210e4e0ee779ded7ae41600146586d88f247:log:21', 'hash': '0xfb44269b9e6282489d0cb7c81fbf210e4e0ee779ded7ae41600146586d88f247', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 71587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f28bd321fd190ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:32.000Z'}}, {'blockNum': '0x7dbcc5', 'uniqueId': '0x7c2772cfb18c40385d32400e39410771ec4f6b0110b005f9bfc2d0314fcb5dec:log:116', 'hash': '0x7c2772cfb18c40385d32400e39410771ec4f6b0110b005f9bfc2d0314fcb5dec', 'from': '0xd1560b3984b7481cd9a8f40435a53c860187174d', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 8808.05749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01dd7c5a5410fcc32000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:05:32.000Z'}}, {'blockNum': '0x7dbcc6', 'uniqueId': '0x8932db95b907b988ebaf433cf5e78f7c8e536c1ec1754e461c40273c995e40d1:log:3', 'hash': '0x8932db95b907b988ebaf433cf5e78f7c8e536c1ec1754e461c40273c995e40d1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 49983.2924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a9599869ef791ef0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:05:49.000Z'}}, {'blockNum': '0x7dbcca', 'uniqueId': '0xf20a7e3ce134f864da8584efec1c172d114fbbb4d8067024cab84fa29f0aae7f:log:51', 'hash': '0xf20a7e3ce134f864da8584efec1c172d114fbbb4d8067024cab84fa29f0aae7f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 37328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07e78e1033c7a5400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:06:46.000Z'}}, {'blockNum': '0x7dbcce', 'uniqueId': '0x1829879185f0a6ad63103791c72a1004fc65dd1aa3f7ab4f7abb643da8a85939:log:5', 'hash': '0x1829879185f0a6ad63103791c72a1004fc65dd1aa3f7ab4f7abb643da8a85939', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 37180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07df882693eadf700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:07:51.000Z'}}, {'blockNum': '0x7dbcce', 'uniqueId': '0x8cbc3da29d9609f31dd5c4542a7806bfbea3902c143731ef51bd0014adc6a00a:log:61', 'hash': '0x8cbc3da29d9609f31dd5c4542a7806bfbea3902c143731ef51bd0014adc6a00a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 20746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0464a495fafb2de80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:07:51.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x73d506298571d3ebbbb2c87a5c3677a058a7733a1413e42dc70edd9666f6dc54:log:40', 'hash': '0x73d506298571d3ebbbb2c87a5c3677a058a7733a1413e42dc70edd9666f6dc54', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 107637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x16cb03723ebb90b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xc4b0a47cbfca6fae7a9420b5ad40b02db65a56ee786d5bddc2929c130779d174:log:41', 'hash': '0xc4b0a47cbfca6fae7a9420b5ad40b02db65a56ee786d5bddc2929c130779d174', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x027ca4bd719f0b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xa9b5602f84c0c0f764839504768d5b94b9f8b286bb9d8b61ad5814eb5f0f9140:log:43', 'hash': '0xa9b5602f84c0c0f764839504768d5b94b9f8b286bb9d8b61ad5814eb5f0f9140', 'from': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x4d2e27e7afd372a6a705a6775bc1e2a85ff82fa163d98db3d62edbde2af2e2de:log:64', 'hash': '0x4d2e27e7afd372a6a705a6775bc1e2a85ff82fa163d98db3d62edbde2af2e2de', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c76c3dafdfb3100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x8d96c5f515272bd8675eeba76e6f9d2bfc9249cef2a59bf0b555de86387b812c:log:67', 'hash': '0x8d96c5f515272bd8675eeba76e6f9d2bfc9249cef2a59bf0b555de86387b812c', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a5c9be9bb2726100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x045267a20fc4a164a22965c6fe636fd20625ec212b1bf759b6667d1a9ceed274:log:68', 'hash': '0x045267a20fc4a164a22965c6fe636fd20625ec212b1bf759b6667d1a9ceed274', 'from': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16057.263892209436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0366774d12ef29b3ae6d', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xb15599c3c3668d9620be0a6e5d2f09ed168c6a74b99f152a4f1dfcb5c5602f17:log:69', 'hash': '0xb15599c3c3668d9620be0a6e5d2f09ed168c6a74b99f152a4f1dfcb5c5602f17', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 185197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x27378cab2c3db1940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x45f9f7b61cf62e031d8209ab92c5105fab5c0a5b4c8c9d82631aae1b740fabe9:log:70', 'hash': '0x45f9f7b61cf62e031d8209ab92c5105fab5c0a5b4c8c9d82631aae1b740fabe9', 'from': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xb0a3e32ec78151093b8770b15b7c46b48a8c7dd6249548b72a4022a93ea6e82e:log:71', 'hash': '0xb0a3e32ec78151093b8770b15b7c46b48a8c7dd6249548b72a4022a93ea6e82e', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06d13d802ce0adc80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xa78c729803c35a39a7e10e38df296245a97a80821b896816e254d2620b505840:log:72', 'hash': '0xa78c729803c35a39a7e10e38df296245a97a80821b896816e254d2620b505840', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x154e7560384966840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xb3480dd4a11e1286b5833a6de868ddb941bcf6f5aad4a71b95702735221836cf:log:73', 'hash': '0xb3480dd4a11e1286b5833a6de868ddb941bcf6f5aad4a71b95702735221836cf', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07758d1355f38ec40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x143320ffa92c9f97b6e28d85630015df98cd54f596c1cd493147141dea54a4a6:log:76', 'hash': '0x143320ffa92c9f97b6e28d85630015df98cd54f596c1cd493147141dea54a4a6', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fafa046542878c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x53d724be9d15952356fb6488b0b10ac5ef97b7008509d70b96d7b27010c8b01c:log:78', 'hash': '0x53d724be9d15952356fb6488b0b10ac5ef97b7008509d70b96d7b27010c8b01c', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05aaeefd9cf3d2140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd6', 'uniqueId': '0x1724c018727776c779caa0db4d07f99530803826a577b51c94590a683f083e09:log:27', 'hash': '0x1724c018727776c779caa0db4d07f99530803826a577b51c94590a683f083e09', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08dcbf4c2be6190c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:32.000Z'}}, {'blockNum': '0x7dbcd6', 'uniqueId': '0xca21a267d1c371e4a2162f2b78def32444e476d9aec2a322209417ffde454a96:log:28', 'hash': '0xca21a267d1c371e4a2162f2b78def32444e476d9aec2a322209417ffde454a96', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0548c251240aa9a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:32.000Z'}}, {'blockNum': '0x7dbce6', 'uniqueId': '0x8c555649de5e8d1d5e8f39ec9736b4f9a0221d51627874b779b5c964253353c7:log:16', 'hash': '0x8c555649de5e8d1d5e8f39ec9736b4f9a0221d51627874b779b5c964253353c7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 4299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe90c9c1aebfc4c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:12:13.000Z'}}, {'blockNum': '0x7dbce8', 'uniqueId': '0xfb05ca291fe9df564e143dbd6fd9b2688ed1da7fb9badc36f99239afe86bfbf3:log:16', 'hash': '0xfb05ca291fe9df564e143dbd6fd9b2688ed1da7fb9badc36f99239afe86bfbf3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb07c49b35d8476d1f02ec9aae6ee031c08219a58', 'value': 3867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xd1a167cbc1838c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:12:26.000Z'}}, {'blockNum': '0x7dbcf6', 'uniqueId': '0x3f66fb5dd8e38973e2c2a2f9770b5182aa643e229c0aa53d68c07f9e94e6f1f4:log:0', 'hash': '0x3f66fb5dd8e38973e2c2a2f9770b5182aa643e229c0aa53d68c07f9e94e6f1f4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 16058.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03668c9e6cd4c2f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:15:44.000Z'}}, {'blockNum': '0x7dbcfa', 'uniqueId': '0xdd9731a78f29adfcf2f5a36448f1c5d1728531108e368440e1553411cd099fa0:log:0', 'hash': '0xdd9731a78f29adfcf2f5a36448f1c5d1728531108e368440e1553411cd099fa0', 'from': '0x1cf78337f278a12c203e570921446d3438539e7c', 'to': '0x76e377e197da54a1d39f1acbc447fb3bd07bb971', 'value': 54588.62799579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f416563396ed40c00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:16:57.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0x4e02db4c6ce0b5022bfc47af3b27c22c7e74840ae4edef4105165cc7d86a0429:log:10', 'hash': '0x4e02db4c6ce0b5022bfc47af3b27c22c7e74840ae4edef4105165cc7d86a0429', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1123395e067bab480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0x4aabefbc461ca9c361baf739b3ef976e735579fd8e4dfb8eb9050ae85c08ea61:log:11', 'hash': '0x4aabefbc461ca9c361baf739b3ef976e735579fd8e4dfb8eb9050ae85c08ea61', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 71587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f28bd321fd190ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0xc57b9e0b63205ce057aa664fd2ff102c7366a65211114da1a8632d9b834f69ec:log:13', 'hash': '0xc57b9e0b63205ce057aa664fd2ff102c7366a65211114da1a8632d9b834f69ec', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0xce0fa320955037d9caafef6dde2656464d08193e69a737ab19205df23bfdae3a:log:14', 'hash': '0xce0fa320955037d9caafef6dde2656464d08193e69a737ab19205df23bfdae3a', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8808.05749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01dd7c5a5410fcc32000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0x0a2d98af5b4d286b81e663db3d133a0cc06986a0ae13ab44924b8e76b5efce31:log:15', 'hash': '0x0a2d98af5b4d286b81e663db3d133a0cc06986a0ae13ab44924b8e76b5efce31', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49983.2924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a9599869ef791ef0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd0b', 'uniqueId': '0x745d92e2ef0028fea0a85b424950824baa720a0677bb4fe94ff0d519eee00f8d:log:1', 'hash': '0x745d92e2ef0028fea0a85b424950824baa720a0677bb4fe94ff0d519eee00f8d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 1093809.8137822095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe79f8c7f6e271a1dce6d', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:21:06.000Z'}}, {'blockNum': '0x7dbd1c', 'uniqueId': '0xff2b522ec061d2300da832eae7ac50a0b4227b25271361f34576b63bb666dd92:log:63', 'hash': '0xff2b522ec061d2300da832eae7ac50a0b4227b25271361f34576b63bb666dd92', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 3090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa7825d447a75080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:25:04.000Z'}}, {'blockNum': '0x7dbd2f', 'uniqueId': '0x4be8e9de017765b8ff5a5a2b42b73329d4b8b1812101b6ec16933bb7b57b8f41:log:17', 'hash': '0x4be8e9de017765b8ff5a5a2b42b73329d4b8b1812101b6ec16933bb7b57b8f41', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 54128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b7648e60190a7c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:28:50.000Z'}}, {'blockNum': '0x7dbd31', 'uniqueId': '0x57d93a0e9876c000ff2e538199b0d5acd521b38037eda7f6c1bc46ac0ae689e1:log:4', 'hash': '0x57d93a0e9876c000ff2e538199b0d5acd521b38037eda7f6c1bc46ac0ae689e1', 'from': '0x76e377e197da54a1d39f1acbc447fb3bd07bb971', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54588.62799579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f416563396ed40c00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:29:14.000Z'}}, {'blockNum': '0x7dbd59', 'uniqueId': '0x959b3c5a495b1c3457dda04918b433dca3e8dde1d0101d6497267cb68591a42d:log:44', 'hash': '0x959b3c5a495b1c3457dda04918b433dca3e8dde1d0101d6497267cb68591a42d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 17542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03b6f4275a802e580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:36:28.000Z'}}, {'blockNum': '0x7dbd59', 'uniqueId': '0xee2e5c6247211ed54296341e58912e74f36064055a4033f9e3833c2e19c45162:log:45', 'hash': '0xee2e5c6247211ed54296341e58912e74f36064055a4033f9e3833c2e19c45162', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 23197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04e9830b3506d0540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:36:28.000Z'}}, {'blockNum': '0x7dbd5b', 'uniqueId': '0xa0ed6f6c71b78c8d331020641c6d252b864b8e4c18f95ee54730a4d4a194e652:log:66', 'hash': '0xa0ed6f6c71b78c8d331020641c6d252b864b8e4c18f95ee54730a4d4a194e652', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 10920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x024ff9715f5c41a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:37:13.000Z'}}, {'blockNum': '0x7dbd8e', 'uniqueId': '0xa0e93620f94859ca7344312b940e90799ff7d0cbb3ec741f3468fed44537d3f3:log:46', 'hash': '0xa0e93620f94859ca7344312b940e90799ff7d0cbb3ec741f3468fed44537d3f3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 5986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0144807014d010480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:48:11.000Z'}}, {'blockNum': '0x7dbd90', 'uniqueId': '0xc0f650fdeae350bbe747a82b8c6ba28a7afd9a471452967138f9697107f7e66d:log:0', 'hash': '0xc0f650fdeae350bbe747a82b8c6ba28a7afd9a471452967138f9697107f7e66d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 16333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x037569e8840ea7140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:48:51.000Z'}}, {'blockNum': '0x7dbd9c', 'uniqueId': '0x98aa27cf5706188a57261e35d0e290201d02759a8678bbe1f22998e65fdf37a7:log:2', 'hash': '0x98aa27cf5706188a57261e35d0e290201d02759a8678bbe1f22998e65fdf37a7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 42877.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0914690293ade4240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:50:18.000Z'}}, {'blockNum': '0x7dbdad', 'uniqueId': '0xda6d3648be68d339c7c00f79a3fe0803ddb5eaa54bf28181fe8b3e862a1c2ba2:log:5', 'hash': '0xda6d3648be68d339c7c00f79a3fe0803ddb5eaa54bf28181fe8b3e862a1c2ba2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 86734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x125ddc0c3792ba780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:54:17.000Z'}}, {'blockNum': '0x7dbdbf', 'uniqueId': '0x31b71b2d9854bf816e74a3346953795116728e13e47dc7f61071c3601298c5a8:log:0', 'hash': '0x31b71b2d9854bf816e74a3346953795116728e13e47dc7f61071c3601298c5a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 18463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03e8e198a6d5651c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:59:31.000Z'}}, {'blockNum': '0x7dbde6', 'uniqueId': '0x99f91712d73f8bb3ee414dd063ff12bd1bd36c6aeb4b75a5faa8b6d9c1fe2c20:log:6', 'hash': '0x99f91712d73f8bb3ee414dd063ff12bd1bd36c6aeb4b75a5faa8b6d9c1fe2c20', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 17822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03c621ef2eff43b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:09:02.000Z'}}, {'blockNum': '0x7dbe07', 'uniqueId': '0xad81eb821de7fda3969b39370294297e9eecdb3547565d18b10cf07cb0581aaa:log:2', 'hash': '0xad81eb821de7fda3969b39370294297e9eecdb3547565d18b10cf07cb0581aaa', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 57767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c3b8e2b1551163c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:16:12.000Z'}}, {'blockNum': '0x7dbe37', 'uniqueId': '0x9a38c25a58da9adc327f4002eaf1ed7053d5e9020ae9b02707609ca122da6876:log:3', 'hash': '0x9a38c25a58da9adc327f4002eaf1ed7053d5e9020ae9b02707609ca122da6876', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 106692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1697c8efd18ea8900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:27:12.000Z'}}, {'blockNum': '0x7dbe40', 'uniqueId': '0xeed75d84f7c183236d6767f01142985e3290c1c75ac2786766783c887ba376b2:log:82', 'hash': '0xeed75d84f7c183236d6767f01142985e3290c1c75ac2786766783c887ba376b2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 63844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d84fd7c1bfda7100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:28:47.000Z'}}, {'blockNum': '0x7dbe5a', 'uniqueId': '0x509507a40639c30340a1b2e2301e8ce5c17f23c6d2b3f91a20ad2ac1374befc0:log:29', 'hash': '0x509507a40639c30340a1b2e2301e8ce5c17f23c6d2b3f91a20ad2ac1374befc0', 'from': '0xab312aace174297b048fd7b8395932ea595eb20b', 'to': '0x848086b7c0f312ee5bebc3a8ab67c9b226c4921d', 'value': 1778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6062b4ebc094880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:34:41.000Z'}}, {'blockNum': '0x7dbe5d', 'uniqueId': '0x340fe405248732d9e1307310d2df0fa7a8387ef2567474b29143119071f1b670:log:105', 'hash': '0x340fe405248732d9e1307310d2df0fa7a8387ef2567474b29143119071f1b670', 'from': '0x2fbc87c6f0afd69ebbad520b9e5e28b181cacb6e', 'to': '0x76d25a4bfc5f81b7e6f1a46e11f3873a180bc1ec', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:35:05.000Z'}}, {'blockNum': '0x7dbe9d', 'uniqueId': '0xfef33bdf6a189b3f6060eff656e6f7715daff8836ab09f8b9db0d464d86d7606:log:8', 'hash': '0xfef33bdf6a189b3f6060eff656e6f7715daff8836ab09f8b9db0d464d86d7606', 'from': '0x76d25a4bfc5f81b7e6f1a46e11f3873a180bc1ec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:49:15.000Z'}}, {'blockNum': '0x7dbe9d', 'uniqueId': '0xcb947366197b4f8b69f97c43df830b7365eff77b93998f687829c09718e64cdd:log:10', 'hash': '0xcb947366197b4f8b69f97c43df830b7365eff77b93998f687829c09718e64cdd', 'from': '0x848086b7c0f312ee5bebc3a8ab67c9b226c4921d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6062b4ebc094880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:49:15.000Z'}}, {'blockNum': '0x7dbe9e', 'uniqueId': '0xa25f2f90d0e160fa0ce547d5b6cf7c07e5aea6d1bd6ea85d8cc4c11db351317c:log:6', 'hash': '0xa25f2f90d0e160fa0ce547d5b6cf7c07e5aea6d1bd6ea85d8cc4c11db351317c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 17288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03a92f32144019200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:49:27.000Z'}}, {'blockNum': '0x7dbeb6', 'uniqueId': '0x8fded7d7eb5355e0ab6c503b66d9f9e34d9a1e50369b55f43ddf733a2c14bc57:log:6', 'hash': '0x8fded7d7eb5355e0ab6c503b66d9f9e34d9a1e50369b55f43ddf733a2c14bc57', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 37935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x080875e167c18b5c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:54:30.000Z'}}, {'blockNum': '0x7dbf2d', 'uniqueId': '0x376445d7d4e2d38b20e2eb8a612fd49c33f9d415923dc7ab6a136b4dad85de03:log:4', 'hash': '0x376445d7d4e2d38b20e2eb8a612fd49c33f9d415923dc7ab6a136b4dad85de03', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 12529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02a732cdae8355240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:26:26.000Z'}}, {'blockNum': '0x7dbf32', 'uniqueId': '0xea29f56f949f74572d67a48d238540ea67033116e68f786560d6fac43aaaba33:log:0', 'hash': '0xea29f56f949f74572d67a48d238540ea67033116e68f786560d6fac43aaaba33', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 59283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c8dbce505345a6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:28:18.000Z'}}, {'blockNum': '0x7dbf6a', 'uniqueId': '0xabe3a123a57caf634de484cf8ff11e2da8d6c1989801fc5eed06be7762c20cac:log:15', 'hash': '0xabe3a123a57caf634de484cf8ff11e2da8d6c1989801fc5eed06be7762c20cac', 'from': '0xee37122340b4fc9c37896f32c5a2e5a63a843036', 'to': '0x3a3b4fbc13358232aac62f36d167f7ee2ba73d12', 'value': 427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1725d0bda833cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:40:59.000Z'}}, {'blockNum': '0x7dbf91', 'uniqueId': '0x442ff35805406d712e973fcd9dbb67b7e9a8200b2aad167368fa6ac83f50a555:log:9', 'hash': '0x442ff35805406d712e973fcd9dbb67b7e9a8200b2aad167368fa6ac83f50a555', 'from': '0x3a3b4fbc13358232aac62f36d167f7ee2ba73d12', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1725d0bda833cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:49:15.000Z'}}, {'blockNum': '0x7dbf91', 'uniqueId': '0xe8ef1389b01ab0e11c487617d3e147846cd59e95c57f5207781790c9bab186f5:log:10', 'hash': '0xe8ef1389b01ab0e11c487617d3e147846cd59e95c57f5207781790c9bab186f5', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02a732cdae8355240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:49:15.000Z'}}, {'blockNum': '0x7dbfb3', 'uniqueId': '0x5fdb708cd4df3a145cb235f0f4363ebe3f27e4e945b65d4d7a3c40d1e61568bf:log:2', 'hash': '0x5fdb708cd4df3a145cb235f0f4363ebe3f27e4e945b65d4d7a3c40d1e61568bf', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0384368b59a428b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:56:57.000Z'}}, {'blockNum': '0x7dbfe1', 'uniqueId': '0x14d6a9e9f5bd95ff42620ab9cbd1bfc8fdb3812d1facfa2635fee97acf623f29:log:4', 'hash': '0x14d6a9e9f5bd95ff42620ab9cbd1bfc8fdb3812d1facfa2635fee97acf623f29', 'from': '0x1cb5b2bb4030220ad5417229a7a1e3c373cdd2f6', 'to': '0x84443f61efc60d10da9f9a2398980cd5748394bb', 'value': 57681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c36e4adb4f6daa40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:06:59.000Z'}}, {'blockNum': '0x7dbfe9', 'uniqueId': '0xab24a96ea16be9c5641293ba0b6f7f1e98b55fcfb75f3de2ecf1ba1fa6d4f9ca:log:6', 'hash': '0xab24a96ea16be9c5641293ba0b6f7f1e98b55fcfb75f3de2ecf1ba1fa6d4f9ca', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0384368b59a428b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:08:58.000Z'}}, {'blockNum': '0x7dc035', 'uniqueId': '0x2d33f04f5bd202ab81a742f886bcd119eb26a12e8c5329cb2a0205a038dd50e6:log:0', 'hash': '0x2d33f04f5bd202ab81a742f886bcd119eb26a12e8c5329cb2a0205a038dd50e6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x69bf9617593249db92f7c6ddb1721095fc171947', 'value': 5755.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0137fac089abe1b30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:23:08.000Z'}}, {'blockNum': '0x7dc049', 'uniqueId': '0xebf38eb105dbbbcd6939eeecf59997eb128020b301ab55ab2003ba16d0689b20:log:18', 'hash': '0xebf38eb105dbbbcd6939eeecf59997eb128020b301ab55ab2003ba16d0689b20', 'from': '0x69bf9617593249db92f7c6ddb1721095fc171947', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5755.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0137fac089abe1b30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:27:59.000Z'}}, {'blockNum': '0x7dc107', 'uniqueId': '0x61804d189f585ed9635859c0e9f7797454fa07e7ecfb285a0a9ec8de5da2ad26:log:18', 'hash': '0x61804d189f585ed9635859c0e9f7797454fa07e7ecfb285a0a9ec8de5da2ad26', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 14908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03282a0f8607e3700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:11:13.000Z'}}, {'blockNum': '0x7dc122', 'uniqueId': '0x3f2ea852e3cdc013507b2b9b20e2cf13d9a0122c0053ecadf9a38b857ab3ff33:log:0', 'hash': '0x3f2ea852e3cdc013507b2b9b20e2cf13d9a0122c0053ecadf9a38b857ab3ff33', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 59966.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb2ce86a246de880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:16:01.000Z'}}, {'blockNum': '0x7dc122', 'uniqueId': '0x741cbd07a2ee90a6a2d40ed2287218c26e29e0d4b1fbd83cb691eb804443de0e:log:1', 'hash': '0x741cbd07a2ee90a6a2d40ed2287218c26e29e0d4b1fbd83cb691eb804443de0e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 63825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d83f5ce8ca83aa40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:16:01.000Z'}}, {'blockNum': '0x7dc129', 'uniqueId': '0xac165297d22699ec1151223cb22fecc267cddcc311f51aafc0981e978042d513:log:3', 'hash': '0xac165297d22699ec1151223cb22fecc267cddcc311f51aafc0981e978042d513', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 48918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a5bd99fbd53fe980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:17:08.000Z'}}, {'blockNum': '0x7dc137', 'uniqueId': '0x48e6c6d0ae1687408f3021a801052c2c237816aa2bd4d33ce681c65c6b54d40a:log:4', 'hash': '0x48e6c6d0ae1687408f3021a801052c2c237816aa2bd4d33ce681c65c6b54d40a', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03282a0f8607e3700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:19:13.000Z'}}, {'blockNum': '0x7dc14a', 'uniqueId': '0xafd2b94407691f2082f7fa35e93cd81b330a7b09315fd80cd79d8593dc60e850:log:3', 'hash': '0xafd2b94407691f2082f7fa35e93cd81b330a7b09315fd80cd79d8593dc60e850', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 81113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x112d2500a0e853c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:23:12.000Z'}}, {'blockNum': '0x7dc14a', 'uniqueId': '0x604edd00dda0bdb65aa77c1bb7abfc3a9538db5a56ee1579a99e178538eac09c:log:4', 'hash': '0x604edd00dda0bdb65aa77c1bb7abfc3a9538db5a56ee1579a99e178538eac09c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 78034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10863b4b362610080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:23:12.000Z'}}, {'blockNum': '0x7dc18e', 'uniqueId': '0xfbee578afbdb4c6f1d0468c8c3537c3664344ea7615544bab14fc1b62427a439:log:5', 'hash': '0xfbee578afbdb4c6f1d0468c8c3537c3664344ea7615544bab14fc1b62427a439', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 12643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ad60df0a83dfac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:35:59.000Z'}}, {'blockNum': '0x7dc1b6', 'uniqueId': '0xa6cc0db39d1ce3146c82369b9e2c6eefed7148282287f844fd8f6c166304ae31:log:1', 'hash': '0xa6cc0db39d1ce3146c82369b9e2c6eefed7148282287f844fd8f6c166304ae31', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 215328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2d98f44b075c70800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:42:15.000Z'}}, {'blockNum': '0x7dc1d9', 'uniqueId': '0xb8dfb0754c24fe34dae6ce5007918d2e7d6662df9d4b209c6b2223fb12b01bd5:log:6', 'hash': '0xb8dfb0754c24fe34dae6ce5007918d2e7d6662df9d4b209c6b2223fb12b01bd5', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ad60df0a83dfac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:49:37.000Z'}}, {'blockNum': '0x7dc20b', 'uniqueId': '0xcbf9d99a0529382df237846143224c036a626da979e4ce94602f56ab0647ea92:log:10', 'hash': '0xcbf9d99a0529382df237846143224c036a626da979e4ce94602f56ab0647ea92', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 228567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3066a4536c2204fc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:59:16.000Z'}}, {'blockNum': '0x7dc2a2', 'uniqueId': '0xbecba322ec38133ed5d88cff93d9607922a74bf0b36f4ce661d66c629dee725e:log:0', 'hash': '0xbecba322ec38133ed5d88cff93d9607922a74bf0b36f4ce661d66c629dee725e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 35062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076cb6ff018ffa180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:33:31.000Z'}}, {'blockNum': '0x7dc2ae', 'uniqueId': '0x73f1631702130cf3abce20b61f212ccc79bbdd7d3bd386c72756dac9ea3265c1:log:0', 'hash': '0x73f1631702130cf3abce20b61f212ccc79bbdd7d3bd386c72756dac9ea3265c1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 73287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f84e56f60d524bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:35:55.000Z'}}, {'blockNum': '0x7dc2ae', 'uniqueId': '0x412ea0027c8ab3bc311f106a317211ca372ffd074411f6abf011db210dee8419:log:1', 'hash': '0x412ea0027c8ab3bc311f106a317211ca372ffd074411f6abf011db210dee8419', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 24433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x052c83fd506aff240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:35:55.000Z'}}, {'blockNum': '0x7dc2ae', 'uniqueId': '0x1cd9d2035469fe35ac5c018a78e4f99aa5403a32c80040100da288936358d46b:log:2', 'hash': '0x1cd9d2035469fe35ac5c018a78e4f99aa5403a32c80040100da288936358d46b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 41010.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08af332e23781dd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:35:55.000Z'}}, {'blockNum': '0x7dc2b5', 'uniqueId': '0x03a85e6616f25fae2a1f41ee8fb4c1826dd0a8ca4e4dfdd10b49b8d436013ae9:log:1', 'hash': '0x03a85e6616f25fae2a1f41ee8fb4c1826dd0a8ca4e4dfdd10b49b8d436013ae9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 7035.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x017d6956e6bbe55c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:36:58.000Z'}}, {'blockNum': '0x7dc2b5', 'uniqueId': '0x562a1db612ad6fcfc0eccd489ab4c2f5e7d0c819989ebd72c263877bd01498cd:log:2', 'hash': '0x562a1db612ad6fcfc0eccd489ab4c2f5e7d0c819989ebd72c263877bd01498cd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 86788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1260c972c17809900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:36:58.000Z'}}, {'blockNum': '0x7dc2b9', 'uniqueId': '0x296b4ef8b6365225a57816d4151773a5ab72b467f0dae30b495b958f4a634595:log:13', 'hash': '0x296b4ef8b6365225a57816d4151773a5ab72b467f0dae30b495b958f4a634595', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 40979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08ad79ddd7f3ec6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:37:47.000Z'}}, {'blockNum': '0x7dc2d4', 'uniqueId': '0xee51c99876d8666c18a17d1abde162fc1e15bfd8bad919bb7c53f2d3203feddb:log:1', 'hash': '0xee51c99876d8666c18a17d1abde162fc1e15bfd8bad919bb7c53f2d3203feddb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 64809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0db94d8ccf33a3040000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:43:22.000Z'}}, {'blockNum': '0x7dc342', 'uniqueId': '0x6febacbb2f7526a697e42113126bc016bd14b97a381fcca4d2a5ec9b0f67d504:log:11', 'hash': '0x6febacbb2f7526a697e42113126bc016bd14b97a381fcca4d2a5ec9b0f67d504', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021daadb141d77200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:07:30.000Z'}}, {'blockNum': '0x7dc374', 'uniqueId': '0xd8ca2eb2f3664bb2f35ab125ddc920e1cdb90b452c5bbba9bb022429824e341f:log:12', 'hash': '0xd8ca2eb2f3664bb2f35ab125ddc920e1cdb90b452c5bbba9bb022429824e341f', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021daadb141d77200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:18:57.000Z'}}, {'blockNum': '0x7dc3b6', 'uniqueId': '0xbfdecffde8e047ae40749d72195c420748685966d21022d9ff564d633763dabb:log:12', 'hash': '0xbfdecffde8e047ae40749d72195c420748685966d21022d9ff564d633763dabb', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 13981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02f5e959f17cc0540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:34:09.000Z'}}, {'blockNum': '0x7dc3bb', 'uniqueId': '0x9fab65740a1f2b83b63c54db3c11f1ecb1d0ec18ffb285e3d28a8e595505845b:log:77', 'hash': '0x9fab65740a1f2b83b63c54db3c11f1ecb1d0ec18ffb285e3d28a8e595505845b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 28027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05ef58c24697010c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:35:37.000Z'}}, {'blockNum': '0x7dc3d2', 'uniqueId': '0xe92ddd97164356bdd16ef038d669981ec09f99742403bc469df0f833597c773d:log:26', 'hash': '0xe92ddd97164356bdd16ef038d669981ec09f99742403bc469df0f833597c773d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 11432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x026bbadec6ab09a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:41:08.000Z'}}, {'blockNum': '0x7dc3fe', 'uniqueId': '0xd581c712817d37a82ca062c7f295185b3629bc4848221d038525b93285b4545e:log:38', 'hash': '0xd581c712817d37a82ca062c7f295185b3629bc4848221d038525b93285b4545e', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e5421c3813c1600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:48:16.000Z'}}, {'blockNum': '0x7dc4b8', 'uniqueId': '0x785f5a6354dcc624cbe5effed7cb8ace66827dc248aebf3282fc9ff24f1a2dc3:log:1', 'hash': '0x785f5a6354dcc624cbe5effed7cb8ace66827dc248aebf3282fc9ff24f1a2dc3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 37306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07e65cc0805742a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:26:43.000Z'}}, {'blockNum': '0x7dc50b', 'uniqueId': '0x1de1c58387fbac429e4077189b93b3582ad69ebc89bfb47421a93a12ce01c3c7:log:4', 'hash': '0x1de1c58387fbac429e4077189b93b3582ad69ebc89bfb47421a93a12ce01c3c7', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 15065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0330acdf92358bc40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:46:57.000Z'}}, {'blockNum': '0x7dc52b', 'uniqueId': '0x0b672dd2c02702f0ef047983578dadcac46ac89cad3705a12d8e451f80d5bb9b:log:8', 'hash': '0x0b672dd2c02702f0ef047983578dadcac46ac89cad3705a12d8e451f80d5bb9b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 23880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x050e8992a65668200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:55:13.000Z'}}, {'blockNum': '0x7dc538', 'uniqueId': '0x0fb5ed1c8af65cd22c354aa964dcb3025b6fe70026826a2b0ba18f83dfaf8ee4:log:17', 'hash': '0x0fb5ed1c8af65cd22c354aa964dcb3025b6fe70026826a2b0ba18f83dfaf8ee4', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x083f3672388bf3e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:59:20.000Z'}}, {'blockNum': '0x7dc5a9', 'uniqueId': '0x2f0369f8579c8300285d3d73ae61a04636eb6f02483e760f30fc46b7d393684e:log:63', 'hash': '0x2f0369f8579c8300285d3d73ae61a04636eb6f02483e760f30fc46b7d393684e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x74fea37cd3157054d8b7400d51d735a65ff29656', 'value': 1841.335014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x63d1a8176c06ec6000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T01:22:13.000Z'}}, {'blockNum': '0x7dc64b', 'uniqueId': '0x2467c64d8eafda9802a3977db1c787f83988acdaa18514a5d95bf582920d2f7c:log:22', 'hash': '0x2467c64d8eafda9802a3977db1c787f83988acdaa18514a5d95bf582920d2f7c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:02:38.000Z'}}, {'blockNum': '0x7dc66a', 'uniqueId': '0x8a22ca4a8c70f55034e3e824630b5cc77f24711813b83b0bff7eed26b965cf1c:log:58', 'hash': '0x8a22ca4a8c70f55034e3e824630b5cc77f24711813b83b0bff7eed26b965cf1c', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x0e354d772fecad34198d909f2e9663671ac2050a', 'value': 5.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x46a3500832bd0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:10:39.000Z'}}, {'blockNum': '0x7dc695', 'uniqueId': '0x69c8b14afe24eb2f99f91f7705a13dcaccd3ff8623706accd111fe7d70d97845:log:70', 'hash': '0x69c8b14afe24eb2f99f91f7705a13dcaccd3ff8623706accd111fe7d70d97845', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb07c49b35d8476d1f02ec9aae6ee031c08219a58', 'value': 5594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x012f405851b7bf280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:20:59.000Z'}}, {'blockNum': '0x7dc6c2', 'uniqueId': '0x4b74c8404f450a87de0144f23f1fc30e507d72f447392c8975629674d0a0cafa:log:72', 'hash': '0x4b74c8404f450a87de0144f23f1fc30e507d72f447392c8975629674d0a0cafa', 'from': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'to': '0xf977814e90da44bfa03b6295a0616a897441acec', 'value': 27861641.952037353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x170beea2fcd8518413495f', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:30:57.000Z'}}, {'blockNum': '0x7dc6dc', 'uniqueId': '0x51788ef44d01f3389bcf8d15580b2019153150fa05c08f4b18b920329e4c7a12:log:73', 'hash': '0x51788ef44d01f3389bcf8d15580b2019153150fa05c08f4b18b920329e4c7a12', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 8720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d8b64f4775be400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:37:09.000Z'}}, {'blockNum': '0x7dc6f9', 'uniqueId': '0x6fe5ff6ca97c11366385484a4d378839f778c25f51b49b18b7f506feb7515bbe:log:5', 'hash': '0x6fe5ff6ca97c11366385484a4d378839f778c25f51b49b18b7f506feb7515bbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 43239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0927fdaac1f5ab3c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:43:59.000Z'}}, {'blockNum': '0x7dc70d', 'uniqueId': '0xf208e82f2f70f77b073eb247015e367e9dcf5e9709e10babb5a19d32ff7313d8:log:8', 'hash': '0xf208e82f2f70f77b073eb247015e367e9dcf5e9709e10babb5a19d32ff7313d8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 64720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0db47a6d4abe71400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:48:09.000Z'}}]}}
Number of returned transfers:  164
Answer is complete
 
symbol             SNM
group              MPG
date        2019-08-07
hour             16:59
exchange       binance
Name: 502, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-08-07 16:59:00 2019-08-07 04:59:00 2019-08-08 04:59:00
Unix timestamps:  1565146740.0 1565233140.0
Hex Block Numbers:  0x7ea9a3 0x7ec2d2
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            DATA
group              MPG
date        2019-08-15
hour             20:00
exchange       binance
Name: 503, dtype: object
HERE
 Symbol: DATA, Contract: 0x8f693ca8d21b157107184d29d398a8d082b38b76
Datetime timestamps:  2019-08-15 20:00:00 2019-08-15 08:00:00 2019-08-16 08:00:00
Unix timestamps:  1565848800.0 1565935200.0
Hex Block Numbers:  0x7f7666 0x7f8f41
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             VIB
group              MPG
date        2019-08-21
hour             17:59
exchange       binance
Name: 504, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2019-08-21 17:59:00 2019-08-21 05:59:00 2019-08-22 05:59:00
Unix timestamps:  1566359940.0 1566446340.0
Hex Block Numbers:  0x800ae8 0x8023f4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x801136', 'uniqueId': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc:log:72', 'hash': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15450.667732554415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03459516999cb8078c63', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T10:01:06.000Z'}}, {'blockNum': '0x801136', 'uniqueId': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc:log:76', 'hash': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 15450.667732554415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03459516999cb8078c63', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T10:01:06.000Z'}}, {'blockNum': '0x8013fa', 'uniqueId': '0xeb52eda3b7bf3dc6906d79f04b3d7308ace9ff3901a6edf6104a3175c4f36e48:log:27', 'hash': '0xeb52eda3b7bf3dc6906d79f04b3d7308ace9ff3901a6edf6104a3175c4f36e48', 'from': '0x4fdfc48853f2be633e649d0d6e68847583c7021c', 'to': '0xeae051d6b2fbee50e1b530cb46faa9b9f1ccd629', 'value': 12321.254485100213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x029befc1596502be855e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T12:44:18.000Z'}}, {'blockNum': '0x801467', 'uniqueId': '0x32796b686dd768d909f34e483688bef138fc680c00e26c452070a7711730f2ad:log:74', 'hash': '0x32796b686dd768d909f34e483688bef138fc680c00e26c452070a7711730f2ad', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:04:14.000Z'}}, {'blockNum': '0x80146b', 'uniqueId': '0xebd8e56010fab780cd2bb3012f8d83b6abddfdd12d31926d34c22bb50123bfa0:log:111', 'hash': '0xebd8e56010fab780cd2bb3012f8d83b6abddfdd12d31926d34c22bb50123bfa0', 'from': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'to': '0x7d7ee7e4bb24a05c6da953dd51ca9625fae49ed1', 'value': 20118.90768765859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0442a5ee8b6255d769e5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:05:25.000Z'}}, {'blockNum': '0x801477', 'uniqueId': '0xf71a915a9fa976cf2a476a25c6505a42e33c90da8fb5836fd745f982b6a28486:log:7', 'hash': '0xf71a915a9fa976cf2a476a25c6505a42e33c90da8fb5836fd745f982b6a28486', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'value': 19928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04384c8e30ee50600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:08:15.000Z'}}, {'blockNum': '0x801648', 'uniqueId': '0x8e4178fdaebb3b2ad6e9cbbc057d3e87a7c63b558c8c58f02338f7c43c154a8d:log:1', 'hash': '0x8e4178fdaebb3b2ad6e9cbbc057d3e87a7c63b558c8c58f02338f7c43c154a8d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1876630571b6aca916b03854e1068baca4ca4dde', 'value': 6484.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f81a866803d1f0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T14:58:44.000Z'}}, {'blockNum': '0x8017eb', 'uniqueId': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f:log:87', 'hash': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:30:43.000Z'}}, {'blockNum': '0x8017eb', 'uniqueId': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f:log:91', 'hash': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:30:43.000Z'}}, {'blockNum': '0x8017ed', 'uniqueId': '0x2751b73aef3672359525af49cabba1cce0cdaa8d6a66348cd2fafcf5f3bcf3f0:log:27', 'hash': '0x2751b73aef3672359525af49cabba1cce0cdaa8d6a66348cd2fafcf5f3bcf3f0', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:31:21.000Z'}}, {'blockNum': '0x8017f1', 'uniqueId': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7:log:146', 'hash': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5733.27142830672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136cd1fd3defe740b28', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:32:55.000Z'}}, {'blockNum': '0x8017f1', 'uniqueId': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7:log:150', 'hash': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 5733.27142830672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136cd1fd3defe740b28', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:32:55.000Z'}}, {'blockNum': '0x8017f4', 'uniqueId': '0x539bff25bfb56e2daa9fcd11a62fc9bf9368b2fd5efe5de15056b6650e805823:log:93', 'hash': '0x539bff25bfb56e2daa9fcd11a62fc9bf9368b2fd5efe5de15056b6650e805823', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136c95b8543a2740000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:33:23.000Z'}}, {'blockNum': '0x801800', 'uniqueId': '0xd3b4079803364df17c394bf0a462eaac84a80ac1a36dd42ef47d310eb0f5d156:log:14', 'hash': '0xd3b4079803364df17c394bf0a462eaac84a80ac1a36dd42ef47d310eb0f5d156', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:36:36.000Z'}}, {'blockNum': '0x80181b', 'uniqueId': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250:log:79', 'hash': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11370.810185051509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026869b0e22b84f4bb54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:08.000Z'}}, {'blockNum': '0x80181b', 'uniqueId': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250:log:83', 'hash': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 11370.810185051509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026869b0e22b84f4bb54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:08.000Z'}}, {'blockNum': '0x80181f', 'uniqueId': '0x3e08c5cb3695bc5bcfbcc3e589a811257c739cdec278feda38e6f8b55651c660:log:106', 'hash': '0x3e08c5cb3695bc5bcfbcc3e589a811257c739cdec278feda38e6f8b55651c660', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02685e7287287f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:50.000Z'}}, {'blockNum': '0x801833', 'uniqueId': '0x53afefebdc731e6d88e473897f1415e3f19a9b6a1ad4df0bda35825b2635add6:log:24', 'hash': '0x53afefebdc731e6d88e473897f1415e3f19a9b6a1ad4df0bda35825b2635add6', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x039f27ce0c6c21dc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:47:23.000Z'}}, {'blockNum': '0x80185a', 'uniqueId': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb:log:88', 'hash': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11262.53923172772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02628b212fc41f8ded8a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:56:37.000Z'}}, {'blockNum': '0x80185a', 'uniqueId': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb:log:92', 'hash': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 11262.53923172772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02628b212fc41f8ded8a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:56:37.000Z'}}, {'blockNum': '0x80185d', 'uniqueId': '0xfa4ba4c86059525ebe71d9e5933acf647707d2a11b5515e13743a534e419ca2e:log:117', 'hash': '0xfa4ba4c86059525ebe71d9e5933acf647707d2a11b5515e13743a534e419ca2e', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026283a5735de1380000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:57:18.000Z'}}, {'blockNum': '0x801915', 'uniqueId': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1:log:14', 'hash': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11136.192841754739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025bb1b8a37f5f16a7fa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:37:50.000Z'}}, {'blockNum': '0x801915', 'uniqueId': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1:log:18', 'hash': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 11136.192841754739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025bb1b8a37f5f16a7fa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:37:50.000Z'}}, {'blockNum': '0x80191a', 'uniqueId': '0x281f5bd01f3588c2881635f15a36dbce1e9a454776c6db7afe78da8b36166437:log:4', 'hash': '0x281f5bd01f3588c2881635f15a36dbce1e9a454776c6db7afe78da8b36166437', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025baf0b86f17e000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:38:08.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0x81853b630d2abbc784dc233d103a0535353a956f93212f84d311f5002ae1fe19:log:5', 'hash': '0x81853b630d2abbc784dc233d103a0535353a956f93212f84d311f5002ae1fe19', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 20586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045bf823cab28f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8:log:41', 'hash': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8:log:45', 'hash': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355:log:56', 'hash': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355:log:60', 'hash': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c:log:87', 'hash': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33870.74030911024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x072c22f2684334360117', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c:log:91', 'hash': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 33870.74030911024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x072c22f2684334360117', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x58233ca3fea49b11b95e71fb35adfe763895899ba3e081c86306db6d5f7abebb:log:1', 'hash': '0x58233ca3fea49b11b95e71fb35adfe763895899ba3e081c86306db6d5f7abebb', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca:log:62', 'hash': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca:log:64', 'hash': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801984', 'uniqueId': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e:log:111', 'hash': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6251.3567305123715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0152e300914b2538c57a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:08.000Z'}}, {'blockNum': '0x801984', 'uniqueId': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e:log:115', 'hash': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 6251.3567305123715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0152e300914b2538c57a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:08.000Z'}}, {'blockNum': '0x801985', 'uniqueId': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91:log:21', 'hash': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:29.000Z'}}, {'blockNum': '0x801985', 'uniqueId': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91:log:25', 'hash': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:29.000Z'}}, {'blockNum': '0x801989', 'uniqueId': '0x034de49815fa919bc66ac1e6e2a43a2371be63571b52fce9935d701ea8350f31:log:5', 'hash': '0x034de49815fa919bc66ac1e6e2a43a2371be63571b52fce9935d701ea8350f31', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:02:13.000Z'}}, {'blockNum': '0x80198a', 'uniqueId': '0x59be7b9280a3484668323f1d477f188bd03a5960bc69ffd37270436ba24bbae1:log:0', 'hash': '0x59be7b9280a3484668323f1d477f188bd03a5960bc69ffd37270436ba24bbae1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'value': 5930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x014177481d8372680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:02:17.000Z'}}, {'blockNum': '0x801990', 'uniqueId': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175:log:11', 'hash': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1023.926950635287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3781d7489af5358fc5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:03:22.000Z'}}, {'blockNum': '0x801990', 'uniqueId': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175:log:15', 'hash': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 1023.926950635287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3781d7489af5358fc5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:03:22.000Z'}}, {'blockNum': '0x801993', 'uniqueId': '0x8aac85ba992630ef6e9d8e4a076063e9cf81fe01e4af76dcf15a8a29e1a4abfc:log:18', 'hash': '0x8aac85ba992630ef6e9d8e4a076063e9cf81fe01e4af76dcf15a8a29e1a4abfc', 'from': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 21865.37386922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d656fe916800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:04:23.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5:log:61', 'hash': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5:log:65', 'hash': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93:log:76', 'hash': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 29830.81939708991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065121c81f32c856c085', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93:log:80', 'hash': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 29830.81939708991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065121c81f32c856c085', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8:log:83', 'hash': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8:log:85', 'hash': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0x70d638344a7a1f4d66a78eac4d0df0d2d0bedec3d130b4683f4a0479e72f8d3c:log:116', 'hash': '0x70d638344a7a1f4d66a78eac4d0df0d2d0bedec3d130b4683f4a0479e72f8d3c', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 29830, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0651166909e2ee580000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x8019a0', 'uniqueId': '0x672e673884ee989a996995bb2220f57f0dc5e38a5f15eca1843e942e8a6b2ef6:log:5', 'hash': '0x672e673884ee989a996995bb2220f57f0dc5e38a5f15eca1843e942e8a6b2ef6', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045bf823cab28f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:07:02.000Z'}}, {'blockNum': '0x8019a0', 'uniqueId': '0xc475fb3d654c5da8737e98197c93448eaeac11f7ade9a6c6a417ebfa847f4f2c:log:6', 'hash': '0xc475fb3d654c5da8737e98197c93448eaeac11f7ade9a6c6a417ebfa847f4f2c', 'from': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x014177481d8372680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:07:02.000Z'}}, {'blockNum': '0x8019a8', 'uniqueId': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27:log:78', 'hash': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10021.857923497268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021f4937bb57808f09ca', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:10.000Z'}}, {'blockNum': '0x8019a8', 'uniqueId': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27:log:80', 'hash': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 10021.857923497268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021f4937bb57808f09ca', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:10.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0x06553aa38fa6d529d9f94dde985efbd5461dd47d9fa4610d2577b9adea2989d8:log:10', 'hash': '0x06553aa38fa6d529d9f94dde985efbd5461dd47d9fa4610d2577b9adea2989d8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 3890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd2e09835e58d880000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d:log:85', 'hash': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 29028.248587570622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06259fdfd424998850fe', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d:log:87', 'hash': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 29028.248587570622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06259fdfd424998850fe', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019cc', 'uniqueId': '0x025c22125137e56e29ad301c98edd26db95efe429b001164ee1b237ba0e5b351:log:1', 'hash': '0x025c22125137e56e29ad301c98edd26db95efe429b001164ee1b237ba0e5b351', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 12570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a96bcaf14924280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:37.000Z'}}, {'blockNum': '0x8019ce', 'uniqueId': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3:log:124', 'hash': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3', 'from': '0xda7ea1e36b2de20afb5a0457e8204d4db19a0fc6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5878.359064379703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013eaa9ea82c15cb4fab', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:59.000Z'}}, {'blockNum': '0x8019ce', 'uniqueId': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3:log:126', 'hash': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5878.359064379703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013eaa9ea82c15cb4fab', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:59.000Z'}}, {'blockNum': '0x8019d6', 'uniqueId': '0x4bcc5a5dda2e351949e5fb353fbc066779b02b70ac2bcf8564d76fabadac6ee8:log:6', 'hash': '0x4bcc5a5dda2e351949e5fb353fbc066779b02b70ac2bcf8564d76fabadac6ee8', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd2e09835e58d880000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:03.000Z'}}, {'blockNum': '0x8019d6', 'uniqueId': '0xc888e454ffdc2b2804fcc99d83c0c9dbaad1973f51d03691966cba2b34397b38:log:7', 'hash': '0xc888e454ffdc2b2804fcc99d83c0c9dbaad1973f51d03691966cba2b34397b38', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:03.000Z'}}, {'blockNum': '0x8019dd', 'uniqueId': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b:log:126', 'hash': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13796.531791907515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ebe9573794e6e383b3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:59.000Z'}}, {'blockNum': '0x8019dd', 'uniqueId': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b:log:128', 'hash': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 13796.531791907515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ebe9573794e6e383b3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:59.000Z'}}, {'blockNum': '0x8019e3', 'uniqueId': '0x4182b592fdf5e7e58f550423c6acd55a1350b1f73f371fc1e3c02d9f542e7599:log:5', 'hash': '0x4182b592fdf5e7e58f550423c6acd55a1350b1f73f371fc1e3c02d9f542e7599', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xccf499e50baa6f2e67b47b979c96214d4da09a17', 'value': 1766.044433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5fbcca36e8b9261000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:20:04.000Z'}}, {'blockNum': '0x8019ee', 'uniqueId': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313:log:88', 'hash': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4294.736842105263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe8d17253675b1af286', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:23:51.000Z'}}, {'blockNum': '0x8019ee', 'uniqueId': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313:log:90', 'hash': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4294.736842105263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe8d17253675b1af286', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:23:51.000Z'}}, {'blockNum': '0x8019fc', 'uniqueId': '0xbc124efddc26fb0c4ca0365590438e9878bdfe6c029f6e736c26b3c257ca957a:log:96', 'hash': '0xbc124efddc26fb0c4ca0365590438e9878bdfe6c029f6e736c26b3c257ca957a', 'from': '0xd285e34998278c899379c63f20ad1a094749319f', 'to': '0x66abd916b01aa58a966015f595f476d2059d89c2', 'value': 14466.766401532586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03103eb6e1fb01defd00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:26:55.000Z'}}, {'blockNum': '0x801a10', 'uniqueId': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c:log:115', 'hash': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5397.058823529412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0124933cb5282639e1e1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:30:46.000Z'}}, {'blockNum': '0x801a10', 'uniqueId': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c:log:117', 'hash': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5397.058823529412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0124933cb5282639e1e1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:30:46.000Z'}}, {'blockNum': '0x801a23', 'uniqueId': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1:log:53', 'hash': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4478.2217956814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2c3cfd48949c448bb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:35:11.000Z'}}, {'blockNum': '0x801a23', 'uniqueId': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1:log:55', 'hash': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4478.2217956814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2c3cfd48949c448bb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:35:11.000Z'}}, {'blockNum': '0x801a2e', 'uniqueId': '0x3e9ff58e6ccfcc4df08de4af207a29967675029c4a26cf836363db5bdb016605:log:5', 'hash': '0x3e9ff58e6ccfcc4df08de4af207a29967675029c4a26cf836363db5bdb016605', 'from': '0x66abd916b01aa58a966015f595f476d2059d89c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14466.766401532586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03103eb6e1fb01defd00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:36:59.000Z'}}, {'blockNum': '0x801a6b', 'uniqueId': '0x43455dd81ce5917111457a8e6732b48bc9d717f1e91e1d2ec5d5f4ab9783a620:log:11', 'hash': '0x43455dd81ce5917111457a8e6732b48bc9d717f1e91e1d2ec5d5f4ab9783a620', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a96bcaf14924280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:47:51.000Z'}}, {'blockNum': '0x801b58', 'uniqueId': '0x7f358cc20454203411f69501bed378fafd98fdbb4aca66efdd5d8e6edb393e77:log:38', 'hash': '0x7f358cc20454203411f69501bed378fafd98fdbb4aca66efdd5d8e6edb393e77', 'from': '0x7ef832d6e1d1ad4c3fd5f20d2bc234d2e5718264', 'to': '0x0a2c144387b2592a80a79e2239e2c89096340d37', 'value': 21.91428434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01301f2d80189b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T19:43:27.000Z'}}, {'blockNum': '0x801be9', 'uniqueId': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b:log:72', 'hash': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11698.994024001135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027a342818e6f55a7f54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:14:12.000Z'}}, {'blockNum': '0x801be9', 'uniqueId': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b:log:76', 'hash': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 11698.994024001135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027a342818e6f55a7f54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:14:12.000Z'}}, {'blockNum': '0x801bf2', 'uniqueId': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a:log:52', 'hash': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4308.235294117647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe98cc675fdbae78787', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:16:56.000Z'}}, {'blockNum': '0x801bf2', 'uniqueId': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a:log:54', 'hash': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4308.235294117647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe98cc675fdbae78787', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:16:56.000Z'}}, {'blockNum': '0x801bf5', 'uniqueId': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87:log:48', 'hash': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7390.758729883487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0190a761a2e93a72f7cd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:17:24.000Z'}}, {'blockNum': '0x801bf5', 'uniqueId': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87:log:50', 'hash': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7390.758729883487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0190a761a2e93a72f7cd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:17:24.000Z'}}, {'blockNum': '0x801e4c', 'uniqueId': '0xaa940ea0fe8f0565a61fe6b6ea8d104ff0a3df65385c26d028bb997594d7b10d:log:3', 'hash': '0xaa940ea0fe8f0565a61fe6b6ea8d104ff0a3df65385c26d028bb997594d7b10d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb5d47502a7334d7d42a4380ab97b3b0dc05d8cff', 'value': 690.5756742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x256fa9a4dbb0e37000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T22:30:44.000Z'}}, {'blockNum': '0x801ef3', 'uniqueId': '0xb02b286106e33f526aef0cc9d3dd236206f6eb256bf8af594753ef52dd02bd4d:log:1', 'hash': '0xb02b286106e33f526aef0cc9d3dd236206f6eb256bf8af594753ef52dd02bd4d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xab9b3cf6ca4d61cd31b37a0bfac5d24017331511', 'value': 427.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x172cc11902077e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:07:39.000Z'}}, {'blockNum': '0x801f99', 'uniqueId': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45:log:113', 'hash': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:42:34.000Z'}}, {'blockNum': '0x801f99', 'uniqueId': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45:log:117', 'hash': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:42:34.000Z'}}, {'blockNum': '0x801ffe', 'uniqueId': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f:log:58', 'hash': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:05:16.000Z'}}, {'blockNum': '0x801ffe', 'uniqueId': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f:log:60', 'hash': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:05:16.000Z'}}, {'blockNum': '0x80208f', 'uniqueId': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4:log:37', 'hash': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10636.338596417807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024098d99fb4744f7bf9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:39:13.000Z'}}, {'blockNum': '0x80208f', 'uniqueId': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4:log:41', 'hash': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 10636.338596417807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024098d99fb4744f7bf9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:39:13.000Z'}}, {'blockNum': '0x802094', 'uniqueId': '0xa443462860b1ffe4f086f62b9bd8ad363b25c91dd80f1b165e619b652ec77148:log:81', 'hash': '0xa443462860b1ffe4f086f62b9bd8ad363b25c91dd80f1b165e619b652ec77148', 'from': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'to': '0x4b0bd28395fa9bd4cb9a110a06ac4af6161a9446', 'value': 20118.909272016324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0442a5f42c595dd1d955', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:40:48.000Z'}}]}}
Number of returned transfers:  90
Answer is complete
 
symbol             QSP
group              MPG
date        2019-08-29
hour             18:00
exchange       binance
Name: 505, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2019-08-29 18:00:00 2019-08-29 06:00:00 2019-08-30 06:00:00
Unix timestamps:  1567051200.0 1567137600.0
Hex Block Numbers:  0x80d3a5 0x80ecfc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x80d3a6', 'uniqueId': '0x514b473654fc8e8b7857be6403b717c1a2fd0cf66d79717cad7e2f1b0015a167:log:9', 'hash': '0x514b473654fc8e8b7857be6403b717c1a2fd0cf66d79717cad7e2f1b0015a167', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa64b6689d9392e9d8ef575cb44a499e5b7d1bb08', 'value': 917.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x31c38f3552aaa30000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T04:00:20.000Z'}}, {'blockNum': '0x80d3c4', 'uniqueId': '0x594b998a453f5d423fadcc645bc424744da6fc9bee367442eb652523d6bacf1b:log:93', 'hash': '0x594b998a453f5d423fadcc645bc424744da6fc9bee367442eb652523d6bacf1b', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 36368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07b383631213ee400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T04:09:38.000Z'}}, {'blockNum': '0x80d4c8', 'uniqueId': '0x20b68017b08860bb57fe6f1a5c8c97c9f3559424e0b9f5358e53d51ba2dd6c79:log:2', 'hash': '0x20b68017b08860bb57fe6f1a5c8c97c9f3559424e0b9f5358e53d51ba2dd6c79', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x55b85bd29c089c592fcd4f3424d2d0ca46c9a23a', 'value': 2098.024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71bbee903144240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:05:00.000Z'}}, {'blockNum': '0x80d4ff', 'uniqueId': '0x7729d8dd8e249b0b3b8b1ae60d03120c448b54bd0a75580ef75aabc20700eb5f:log:15', 'hash': '0x7729d8dd8e249b0b3b8b1ae60d03120c448b54bd0a75580ef75aabc20700eb5f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ed2968e68d9fc21e805903d378ccbcadfa608fe', 'value': 2102.79599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71fe281ce674421c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:16:44.000Z'}}, {'blockNum': '0x80d565', 'uniqueId': '0xadc5201e608d20ebca9e56bef5b43e2309ad91fb826cd0dfcd3861af8acca407:log:14', 'hash': '0xadc5201e608d20ebca9e56bef5b43e2309ad91fb826cd0dfcd3861af8acca407', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd88afb3593ae07e9cb5969f97339e3ecb487946d', 'value': 6687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x016a80c45ec16d1c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:40:17.000Z'}}, {'blockNum': '0x80d7cc', 'uniqueId': '0xe17beb762f6c704f3c81673272c1e2b03e040a6ca82d305a24802a2675ac5d47:log:30', 'hash': '0xe17beb762f6c704f3c81673272c1e2b03e040a6ca82d305a24802a2675ac5d47', 'from': '0x4495a4eb51cc2ce89a7b0bd61b4ac2e22a54894a', 'to': '0xea92d72a913e41fe29ab075991d5e41eb53f69ca', 'value': 2790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x973f0729f24bd80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T07:58:48.000Z'}}, {'blockNum': '0x80d810', 'uniqueId': '0xf0f83a0ba08ac8c991ed36cbd1db2d95a7211c1affed43bea43a5531ef804fbe:log:32', 'hash': '0xf0f83a0ba08ac8c991ed36cbd1db2d95a7211c1affed43bea43a5531ef804fbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5144.4681089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0116e1d6387bfe12e800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:15:02.000Z'}}, {'blockNum': '0x80d813', 'uniqueId': '0x26dc926fc4de0f679922c4a25aaa8d403d869d9d5501d877d90cbf9d0425cfcb:log:90', 'hash': '0x26dc926fc4de0f679922c4a25aaa8d403d869d9d5501d877d90cbf9d0425cfcb', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x11f64d9b7f2c762beb7334df2c07d92894eb5f31', 'value': 5144.4681089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0116e1d6387bfe12e800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:16:01.000Z'}}, {'blockNum': '0x80d853', 'uniqueId': '0x5c76c348936c4baa7069bdc06c8c31ff432cd16a74cf119852d99794c91aff15:log:8', 'hash': '0x5c76c348936c4baa7069bdc06c8c31ff432cd16a74cf119852d99794c91aff15', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x00ac1b8d981d577ee2b3d345b2658279a03b0128', 'value': 9940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021ad935f79f76d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:29:03.000Z'}}, {'blockNum': '0x80d8dc', 'uniqueId': '0x776857ae415c3695605e3749b345cecd650897028cb49a668928d8c9bcc32571:log:8', 'hash': '0x776857ae415c3695605e3749b345cecd650897028cb49a668928d8c9bcc32571', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf6c1ef77e3f8e514e28da2dc11ced5bb4af41e59', 'value': 1583.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x55d4ec693b78620000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T09:00:14.000Z'}}, {'blockNum': '0x80dc77', 'uniqueId': '0xe479bcb17de8402c692bad5f6890cab814dd7c483dcda9171554ba0e0c72e88c:log:4', 'hash': '0xe479bcb17de8402c692bad5f6890cab814dd7c483dcda9171554ba0e0c72e88c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8cfdf2dbd3e5ff1c72741e89394fe4068c860392', 'value': 17448.0544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b1dc65890bbb680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:20:18.000Z'}}, {'blockNum': '0x80dcb1', 'uniqueId': '0xeb192fa1c9a1502ca2df8b05d64dd405b34822b4c92e5771f71d209d3c24b78a:log:34', 'hash': '0xeb192fa1c9a1502ca2df8b05d64dd405b34822b4c92e5771f71d209d3c24b78a', 'from': '0x8cfdf2dbd3e5ff1c72741e89394fe4068c860392', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17448.0544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b1dc65890bbb680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:32:27.000Z'}}, {'blockNum': '0x80dcda', 'uniqueId': '0x02f5b9d5c68fa9c122b135d020344fcb24bfa5131a1c3cab3137296986f26904:log:3', 'hash': '0x02f5b9d5c68fa9c122b135d020344fcb24bfa5131a1c3cab3137296986f26904', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2db99de600731a23e3639e5d1ee1ec152e54414d', 'value': 105867.927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x166b1ca0662ee2158000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:41:12.000Z'}}, {'blockNum': '0x80dce6', 'uniqueId': '0xb66afdf3c9bd7850bfec28304c339426907631baac5268991a14af33f3f04df6:log:20', 'hash': '0xb66afdf3c9bd7850bfec28304c339426907631baac5268991a14af33f3f04df6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da900bafe10e600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:43:16.000Z'}}, {'blockNum': '0x80dd0e', 'uniqueId': '0x1a912752e1f1819d1df5e5b465e1053cb7e8e715a6dcaa4524ae69945b748877:log:15', 'hash': '0x1a912752e1f1819d1df5e5b465e1053cb7e8e715a6dcaa4524ae69945b748877', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da900bafe10e600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:52:04.000Z'}}, {'blockNum': '0x80dd66', 'uniqueId': '0xfa4c221e21a61b063991f914b3f1f6c408fb79e1cdeac64aaaf2b5837a462091:log:35', 'hash': '0xfa4c221e21a61b063991f914b3f1f6c408fb79e1cdeac64aaaf2b5837a462091', 'from': '0xa1d45bae46ed9051bcfb0eb4ebc1eee949d7a264', 'to': '0xedeb12f1b9ce972d3f03d398c4135e52c39f61f4', 'value': 26751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05aa2cb39f20aa9c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:13:07.000Z'}}, {'blockNum': '0x80ddc2', 'uniqueId': '0x6f24512a1eaf25f876bc6f2fb1081d163ffcefdcfdfe9f10c1c0b1b80d6e619b:log:33', 'hash': '0x6f24512a1eaf25f876bc6f2fb1081d163ffcefdcfdfe9f10c1c0b1b80d6e619b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfca551dc2ec3b1caa96f48142c073e17efdf2fab', 'value': 1806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x61e748e766e3780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:35:56.000Z'}}, {'blockNum': '0x80ddee', 'uniqueId': '0x8f3236d2c3a2184eff561776c3310930fae260f5c0d81367b4477a060baefb10:log:16', 'hash': '0x8f3236d2c3a2184eff561776c3310930fae260f5c0d81367b4477a060baefb10', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x25c5d50a79fec2dc36d0030f1c3ebfadaff1fa3e', 'value': 4962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010cfd95463280480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:46:16.000Z'}}, {'blockNum': '0x80de3d', 'uniqueId': '0x63e785379f1223494c7b03a1a70ec004f430690a47e2fe2f525485fbb97686fb:log:39', 'hash': '0x63e785379f1223494c7b03a1a70ec004f430690a47e2fe2f525485fbb97686fb', 'from': '0x98571ac60f03f64a7cbd05dace6c3e0f6c2a51dc', 'to': '0xedeb12f1b9ce972d3f03d398c4135e52c39f61f4', 'value': 4072.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xdccadea5d722070000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:03:02.000Z'}}, {'blockNum': '0x80de41', 'uniqueId': '0xbfbc3eaf9f9296b41cf4e469669b76aab683fcc538886ed60a964d165abf3e7d:log:0', 'hash': '0xbfbc3eaf9f9296b41cf4e469669b76aab683fcc538886ed60a964d165abf3e7d', 'from': '0x24d337fd8f6506978834f6418d3d7ed4d02d9d06', 'to': '0xaed319f7416564fb209d8ac4ba76595006b3292e', 'value': 11057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x025766b32580d6240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:04:05.000Z'}}, {'blockNum': '0x80ded9', 'uniqueId': '0x0fecde5ce6c154388117d929008f90efb89c3d89eae7d4279d625a82d205d9a6:log:6', 'hash': '0x0fecde5ce6c154388117d929008f90efb89c3d89eae7d4279d625a82d205d9a6', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 88111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12a881c2f3ea1b5c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:34:24.000Z'}}, {'blockNum': '0x80def8', 'uniqueId': '0x77625e18db5c7d576bd51b5178d3c8729a8ebc27efb44501d0e4a7d461bbc8c1:log:51', 'hash': '0x77625e18db5c7d576bd51b5178d3c8729a8ebc27efb44501d0e4a7d461bbc8c1', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 88111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12a881c2f3ea1b5c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:42:11.000Z'}}, {'blockNum': '0x80e022', 'uniqueId': '0xb97b96e2816fc0b4fcea4b7ce3f8454e472a5a52cef0ec9fe56e7f98d3e2da20:log:7', 'hash': '0xb97b96e2816fc0b4fcea4b7ce3f8454e472a5a52cef0ec9fe56e7f98d3e2da20', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc613e9c7ba85f38ee8618c4452c598dc8c02103e', 'value': 50352.3282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aa99aed27d4e4088000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T15:47:09.000Z'}}, {'blockNum': '0x80e062', 'uniqueId': '0x7ef02ba61cf48daebbac9255632914585fbe2120c7fee97e634c6d3a1fcb7713:log:2', 'hash': '0x7ef02ba61cf48daebbac9255632914585fbe2120c7fee97e634c6d3a1fcb7713', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x150f5ba17f6c4bd40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:02:41.000Z'}}, {'blockNum': '0x80e096', 'uniqueId': '0xeb4232eef99e912d6926e102c33acc489ae27786afb04705d2e97c4f4422290f:log:35', 'hash': '0xeb4232eef99e912d6926e102c33acc489ae27786afb04705d2e97c4f4422290f', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x150f5ba17f6c4bd40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:12:26.000Z'}}, {'blockNum': '0x80e10e', 'uniqueId': '0xa3b276172a491b44e0ea8f9d538b20d74b427884b595c56a492ff3a2b5606193:log:11', 'hash': '0xa3b276172a491b44e0ea8f9d538b20d74b427884b595c56a492ff3a2b5606193', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6cd7b903e5f90d121a232d1acc10daa62e8e3fa9', 'value': 24901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0545e2cb50d901f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:37:09.000Z'}}, {'blockNum': '0x80e196', 'uniqueId': '0x4d530f79831385a413b2f190c2e79524ece6195af7fa5d9ed552c45e483fb667:log:10', 'hash': '0x4d530f79831385a413b2f190c2e79524ece6195af7fa5d9ed552c45e483fb667', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x07a0628bc69881689a86b694d139a631c231a882', 'value': 4381.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xed89b0cc3a86a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:06:40.000Z'}}, {'blockNum': '0x80e1a9', 'uniqueId': '0xb29179927a834c772f95e6b550d1df0d306bc56fc482f56acf10e5fcec13a4fc:log:72', 'hash': '0xb29179927a834c772f95e6b550d1df0d306bc56fc482f56acf10e5fcec13a4fc', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14cbcfe84103931c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:09:51.000Z'}}, {'blockNum': '0x80e1ee', 'uniqueId': '0x13dd23bc805e11bc4e79b5f7f191c773131237d35ff786c9cd0b4fa9e36d2703:log:19', 'hash': '0x13dd23bc805e11bc4e79b5f7f191c773131237d35ff786c9cd0b4fa9e36d2703', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14cbcfe84103931c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:22:02.000Z'}}, {'blockNum': '0x80e2b1', 'uniqueId': '0x4be77895e0f49502357e4019c0c71ebee3c63d4f12da2f78c3f15cfab377a06a:log:119', 'hash': '0x4be77895e0f49502357e4019c0c71ebee3c63d4f12da2f78c3f15cfab377a06a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 2412.43881099649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x82c7505cf3e38017c1', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:01:44.000Z'}}, {'blockNum': '0x80e2b4', 'uniqueId': '0x16a209cdf37d78e95c9de6464bfdb8b835ec1937f500e1147518efd2a72b313d:log:12', 'hash': '0x16a209cdf37d78e95c9de6464bfdb8b835ec1937f500e1147518efd2a72b313d', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 36645.364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07c28c95f28a57b20000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:27.000Z'}}, {'blockNum': '0x80e2b4', 'uniqueId': '0xc0e8bb88c9ddfbf4378b19ac771855a86315a37ff9c969bec8f0fb179004d261:log:62', 'hash': '0xc0e8bb88c9ddfbf4378b19ac771855a86315a37ff9c969bec8f0fb179004d261', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 2412.43881099649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x82c7505cf3e38017c1', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:27.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0xf2dcc89826386190d23336ef8a31f0db7c6772cafcc477586d3a0e7875868bb9:log:7', 'hash': '0xf2dcc89826386190d23336ef8a31f0db7c6772cafcc477586d3a0e7875868bb9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c329d2cc427a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0x8d4043ea16f6d249978f306eb1cdc7863a6efb6750261bdece1ec3cf7dc0d5eb:log:8', 'hash': '0x8d4043ea16f6d249978f306eb1cdc7863a6efb6750261bdece1ec3cf7dc0d5eb', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 50336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aa8b853bc712e800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0x740f0f8aeb93c8be5ac124a4a32e1845da802a6ce09bc6e59f20461f16d8bf84:log:9', 'hash': '0x740f0f8aeb93c8be5ac124a4a32e1845da802a6ce09bc6e59f20461f16d8bf84', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 59614.471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c9fb4fa937ef1ed8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b8', 'uniqueId': '0x5c2a6d3540b6a537d36e455d8ab12e05557862b76ec56c83f8e84c1c9dda0458:log:18', 'hash': '0x5c2a6d3540b6a537d36e455d8ab12e05557862b76ec56c83f8e84c1c9dda0458', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 147616.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1f425511dbbdd3480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:03:30.000Z'}}, {'blockNum': '0x80e2b8', 'uniqueId': '0xa223bb9aea1890728eb405e9fcebdf9ad89d59af63380105c70713dd2ebdbc2a:log:20', 'hash': '0xa223bb9aea1890728eb405e9fcebdf9ad89d59af63380105c70713dd2ebdbc2a', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 82701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11833aedf352ac140000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:03:30.000Z'}}, {'blockNum': '0x80e2d2', 'uniqueId': '0x83bca3ad9f285699d68cdcd04a8fa545fe4fb77bb4f1474804af81e13164abd6:log:3', 'hash': '0x83bca3ad9f285699d68cdcd04a8fa545fe4fb77bb4f1474804af81e13164abd6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb3a3fa926a2b3b8aca4d698b0a1eaa350ffe0276', 'value': 8071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01b587a01a0261bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:08:51.000Z'}}, {'blockNum': '0x80e2d2', 'uniqueId': '0x3169ad437e5d28b879d465a09cdc1ff924cea3256ccc82e90fbed1d9ecc1c13d:log:20', 'hash': '0x3169ad437e5d28b879d465a09cdc1ff924cea3256ccc82e90fbed1d9ecc1c13d', 'from': '0xe81bb573d3ac91bd7e7e15eee28a5a77c07481ac', 'to': '0x7234481e013dcab884fad86ffab011939010d78d', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:08:51.000Z'}}, {'blockNum': '0x80e2d3', 'uniqueId': '0x3cff55bc240c5294eadfa3c60b23ca1bc7d689f441d8c959704b7c9dacd69691:log:2', 'hash': '0x3cff55bc240c5294eadfa3c60b23ca1bc7d689f441d8c959704b7c9dacd69691', 'from': '0x8116ce6d7a783fb86c2659e992e748765760e3fe', 'to': '0xf9f508544165e2cc8993ec4defe62e2d461f281a', 'value': 7529.205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x019828b5980feef88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:09:15.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0xe1405cca9a96031ed508c1f608250b53251c97ea86b33451fede5e1c0c9e81ec:log:20', 'hash': '0xe1405cca9a96031ed508c1f608250b53251c97ea86b33451fede5e1c0c9e81ec', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 184262.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2704e1a7ce482afa0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x475b85e87c40041fce4075142a017d4c376990f910f44cc6f1b8779085deb3b7:log:21', 'hash': '0x475b85e87c40041fce4075142a017d4c376990f910f44cc6f1b8779085deb3b7', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c329d2cc427a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x109f37ea4491843b0278748a8367a6e753e830b80d388d42898bc92a42c7b7a9:log:22', 'hash': '0x109f37ea4491843b0278748a8367a6e753e830b80d388d42898bc92a42c7b7a9', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11833aedf352ac140000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x208a7608631e1077c90977b4310e4d4fc16f3f1985cd3a2b30f0473adcb861a9:log:33', 'hash': '0x208a7608631e1077c90977b4310e4d4fc16f3f1985cd3a2b30f0473adcb861a9', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13ff7e86660823d80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2e5', 'uniqueId': '0xdf9197a69355830d86a01ed061d06ed425919c83dc3de0884a6e4fc0a0b1c6f1:log:5', 'hash': '0xdf9197a69355830d86a01ed061d06ed425919c83dc3de0884a6e4fc0a0b1c6f1', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 59162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c872daeaa4a3c280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:13:40.000Z'}}, {'blockNum': '0x80e2ec', 'uniqueId': '0x0dee99a869c8938093861ceafd166b3047df54ca3f1bda0416faa76adf5ad696:log:14', 'hash': '0x0dee99a869c8938093861ceafd166b3047df54ca3f1bda0416faa76adf5ad696', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 92077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x137f811167255a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:15:37.000Z'}}, {'blockNum': '0x80e2fb', 'uniqueId': '0x17968c69d6fac49c5ab97fb47f9efff4901ced956e8d770682f4e0ad85acaf94:log:14', 'hash': '0x17968c69d6fac49c5ab97fb47f9efff4901ced956e8d770682f4e0ad85acaf94', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 44482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x096b5fc1dc436dc80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:19:09.000Z'}}, {'blockNum': '0x80e310', 'uniqueId': '0x9a8d0a0466ab629064bcd69b617c99b93090e3d55a35ccb752ad06eebb04ad5b:log:5', 'hash': '0x9a8d0a0466ab629064bcd69b617c99b93090e3d55a35ccb752ad06eebb04ad5b', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x137f811167255a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:21:47.000Z'}}, {'blockNum': '0x80e311', 'uniqueId': '0x901747e6005d8b22b7229c57c381bc6e70cea36df71efb248cba58da5d09a7a5:log:2', 'hash': '0x901747e6005d8b22b7229c57c381bc6e70cea36df71efb248cba58da5d09a7a5', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c872daeaa4a3c280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:22:06.000Z'}}, {'blockNum': '0x80e318', 'uniqueId': '0x67c5e6761f1d6af4d68f4ac926337d9a529e7ef100212361906e0ba7acb60766:log:60', 'hash': '0x67c5e6761f1d6af4d68f4ac926337d9a529e7ef100212361906e0ba7acb60766', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 79000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10ba993ca00fb3600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:23:58.000Z'}}, {'blockNum': '0x80e326', 'uniqueId': '0x14f0158ba00b7684228c9974f2810a6de54331d9964f5f047f674f5a2aabed70:log:4', 'hash': '0x14f0158ba00b7684228c9974f2810a6de54331d9964f5f047f674f5a2aabed70', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9bddad1f150ff5d5911b4afd0e67b81b5a2e720d', 'value': 4901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0109af09bd639d740000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:26:53.000Z'}}, {'blockNum': '0x80e33f', 'uniqueId': '0xaeb8fa3083282f95edfbfe5647e101531dd5edf725b261895f89e9c0e17c4c9e:log:14', 'hash': '0xaeb8fa3083282f95edfbfe5647e101531dd5edf725b261895f89e9c0e17c4c9e', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x096b5fc1dc436dc80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:32:09.000Z'}}, {'blockNum': '0x80e351', 'uniqueId': '0xd795ea8935caace057dd4d3920cd67d487cd30f3f9de90fb6576c539bfd25d56:log:48', 'hash': '0xd795ea8935caace057dd4d3920cd67d487cd30f3f9de90fb6576c539bfd25d56', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 79000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10ba993ca00fb3600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:35:41.000Z'}}, {'blockNum': '0x80e360', 'uniqueId': '0x96332c91e29eb62832122746e24814eb9edda1bebf045a4bb317b4f03cf9da37:log:43', 'hash': '0x96332c91e29eb62832122746e24814eb9edda1bebf045a4bb317b4f03cf9da37', 'from': '0xe81bb573d3ac91bd7e7e15eee28a5a77c07481ac', 'to': '0x7234481e013dcab884fad86ffab011939010d78d', 'value': 159681.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x21d054bdeda6b9c38000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:39:12.000Z'}}, {'blockNum': '0x80e39d', 'uniqueId': '0x6a463c7ff6ebe6a2400dd9d9b00008e5a05ab82c4bacbfe2a3f1f806b449ea99:log:10', 'hash': '0x6a463c7ff6ebe6a2400dd9d9b00008e5a05ab82c4bacbfe2a3f1f806b449ea99', 'from': '0x7234481e013dcab884fad86ffab011939010d78d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 160681.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x22068a879b6c98638000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:51:49.000Z'}}, {'blockNum': '0x80e402', 'uniqueId': '0xde1d99b3b7a7b5777d3379f2d52d9359f2e94091b5e59ca44366602a0952c106:log:1', 'hash': '0xde1d99b3b7a7b5777d3379f2d52d9359f2e94091b5e59ca44366602a0952c106', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x84321c7b6dd9e35e1c714571fe398edd98e9344f', 'value': 733.167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x27bebc6e03c6d18000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:15:02.000Z'}}, {'blockNum': '0x80e439', 'uniqueId': '0xfb1f826e1f74997f7e4268030329c436edd19d9aee76b095c8299a4b317626d6:log:95', 'hash': '0xfb1f826e1f74997f7e4268030329c436edd19d9aee76b095c8299a4b317626d6', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xf18e46d5dfab23959e70242dd7ec258f94fb3ff8', 'value': 19865.865834554697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0434ee454aa8c9de4878', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:26:34.000Z'}}, {'blockNum': '0x80e446', 'uniqueId': '0x715bf32582959cdc3cbdc5aab6190c330754a69e840232931e12708c72ba34dc:log:0', 'hash': '0x715bf32582959cdc3cbdc5aab6190c330754a69e840232931e12708c72ba34dc', 'from': '0xf18e46d5dfab23959e70242dd7ec258f94fb3ff8', 'to': '0x4e2f6edad3e8b29aed837fb0f7d3f4504ed8389b', 'value': 19865.865834554697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0434ee454aa8c9de4878', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:29:33.000Z'}}, {'blockNum': '0x80e46e', 'uniqueId': '0x0254ecfff645099ac53f5cdc655a80106dcff927fe04ce57b8ca35282c58cdb9:log:0', 'hash': '0x0254ecfff645099ac53f5cdc655a80106dcff927fe04ce57b8ca35282c58cdb9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5d8512fe175509b85fc68930014879975f2ad28e', 'value': 1524.375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52a2f3ea03de158000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:40:27.000Z'}}, {'blockNum': '0x80e4b0', 'uniqueId': '0x19ce5526d70531a53773500c534fada3a835494c1e52d3d97c26cffd3a998591:log:29', 'hash': '0x19ce5526d70531a53773500c534fada3a835494c1e52d3d97c26cffd3a998591', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xaef3bb2cdc8aab67cac498e98b9666e463f4ca02', 'value': 33768.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07269c84bb1faa720000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:58:02.000Z'}}, {'blockNum': '0x80e4e7', 'uniqueId': '0x230c6a47d886c421d647303f5cd992c46e1f583495960c86461f16be7cea4750:log:30', 'hash': '0x230c6a47d886c421d647303f5cd992c46e1f583495960c86461f16be7cea4750', 'from': '0xaef3bb2cdc8aab67cac498e98b9666e463f4ca02', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 33768.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07269c84bb1faa720000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:12:18.000Z'}}, {'blockNum': '0x80e54b', 'uniqueId': '0xa042af5d1d045ac76bda23dc991f1687e05264a79719ed5c554f211676782997:log:7', 'hash': '0xa042af5d1d045ac76bda23dc991f1687e05264a79719ed5c554f211676782997', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x26f78afdc096e4b2c57d61e9b52bd08ba4581987', 'value': 501.755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b333fda168c1f8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:36:48.000Z'}}, {'blockNum': '0x80e565', 'uniqueId': '0xfe48ac91bd5f1fddad8baa65c5a0a60447a46d41fa04f75f03c2727868ae6f46:log:1', 'hash': '0xfe48ac91bd5f1fddad8baa65c5a0a60447a46d41fa04f75f03c2727868ae6f46', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 57180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbbe8276043f00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:43:02.000Z'}}, {'blockNum': '0x80e577', 'uniqueId': '0xb58c4c3fb81a4e46266d256d00069d036017d9e2c3275d65ff5582d7545fda4d:log:2', 'hash': '0xb58c4c3fb81a4e46266d256d00069d036017d9e2c3275d65ff5582d7545fda4d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8fbb649462c0c88e0b0895b12b10d21faf358e6f', 'value': 9901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0218bbfa2240f6940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:46:32.000Z'}}, {'blockNum': '0x80e58f', 'uniqueId': '0x2f64c591fddb5f143aa2d413adea77f079096148b6201a368fcc009a4eb050c6:log:1', 'hash': '0x2f64c591fddb5f143aa2d413adea77f079096148b6201a368fcc009a4eb050c6', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbbe8276043f00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:52:02.000Z'}}, {'blockNum': '0x80e596', 'uniqueId': '0x6ea608f5d34d07a06efe21fad6d15d88e7d0be1d440cf1b4cafeb0866129ba11:log:0', 'hash': '0x6ea608f5d34d07a06efe21fad6d15d88e7d0be1d440cf1b4cafeb0866129ba11', 'from': '0xa2dd64ab784c0d24b93003b345e5fad633d4bf56', 'to': '0x99f849b1aa652b5a80e78e8ca63ecb8338ad7031', 'value': 874.103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2f629daf4dc7458000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:54:28.000Z'}}, {'blockNum': '0x80e5a8', 'uniqueId': '0xba11058506029dfae9ae15c0a634cb86ee234a66789a6518534311476a02ea09:log:0', 'hash': '0xba11058506029dfae9ae15c0a634cb86ee234a66789a6518534311476a02ea09', 'from': '0xac42907ebf4ea6d472deea118474eca9b877dedc', 'to': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:58:59.000Z'}}, {'blockNum': '0x80e5b3', 'uniqueId': '0xec7f9a6882c488c9313bccd3e5fec37768000dc4b5dcf47d3ac3dd8b0c9013e1:log:1', 'hash': '0xec7f9a6882c488c9313bccd3e5fec37768000dc4b5dcf47d3ac3dd8b0c9013e1', 'from': '0xac42907ebf4ea6d472deea118474eca9b877dedc', 'to': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'value': 4903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0109cacb2acaec3c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:02:00.000Z'}}, {'blockNum': '0x80e5db', 'uniqueId': '0xa1784f9e94d043f1d559d5a34379054c548bbcf4abf1b7a0b718d08663e9d95f:log:56', 'hash': '0xa1784f9e94d043f1d559d5a34379054c548bbcf4abf1b7a0b718d08663e9d95f', 'from': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f369288f84f4c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:11:47.000Z'}}, {'blockNum': '0x80e611', 'uniqueId': '0x9c9a674f7f2fee4666ea64c65ffe1baefaa14646d01b749c80660c17657f43f1:log:6', 'hash': '0x9c9a674f7f2fee4666ea64c65ffe1baefaa14646d01b749c80660c17657f43f1', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11e870c2638872600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:25:45.000Z'}}, {'blockNum': '0x80e635', 'uniqueId': '0x391a41489bbf80940ffd9f8434243391ef81e10ed3671084e5f35c51b9dbab67:log:4', 'hash': '0x391a41489bbf80940ffd9f8434243391ef81e10ed3671084e5f35c51b9dbab67', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11e870c2638872600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:32:08.000Z'}}, {'blockNum': '0x80e662', 'uniqueId': '0x02979fb9b0592c150b4d0af817f9a1a6be1b01864c2eac8f7e73c379fcc89881:log:0', 'hash': '0x02979fb9b0592c150b4d0af817f9a1a6be1b01864c2eac8f7e73c379fcc89881', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x77b6bedb35c3712878f516da8e410c58881f5618', 'value': 4051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xdb9aeb1ce1d36c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:40:33.000Z'}}, {'blockNum': '0x80e67a', 'uniqueId': '0x7f14e48ce28f89e613c024384c2aea1ae9264d32a323144b3b574cceae57c991:log:0', 'hash': '0x7f14e48ce28f89e613c024384c2aea1ae9264d32a323144b3b574cceae57c991', 'from': '0xe567f9e9d6d0f9c9bdd1f14b838d8a6a05c0c80c', 'to': '0x046744a209929cddedab376c4a4167d506199db2', 'value': 1733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5df234ce2c27f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:46:14.000Z'}}, {'blockNum': '0x80e687', 'uniqueId': '0x3bf9f7fe30e3fa38bf43521660589bab0d03b310f56bf86ae24e63c96dd01be4:log:33', 'hash': '0x3bf9f7fe30e3fa38bf43521660589bab0d03b310f56bf86ae24e63c96dd01be4', 'from': '0xbe4b4d98914957ea3226a714f0fe17958f4f1268', 'to': '0x40bbc730b54068d27846fa085f54b1ba332bec7a', 'value': 6965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017992cac5d933b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:48:33.000Z'}}, {'blockNum': '0x80e6d6', 'uniqueId': '0x834958c1c8b5f0e6ab9274dde030367b0e0892289a89eecb6a21bda138141441:log:15', 'hash': '0x834958c1c8b5f0e6ab9274dde030367b0e0892289a89eecb6a21bda138141441', 'from': '0x40bbc730b54068d27846fa085f54b1ba332bec7a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017992cac5d933b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:01:52.000Z'}}, {'blockNum': '0x80e6f5', 'uniqueId': '0x538e3c43f8085d1b9bc92bba9c8176b077dce167ad9c20ba65e170ab1f404a7d:log:100', 'hash': '0x538e3c43f8085d1b9bc92bba9c8176b077dce167ad9c20ba65e170ab1f404a7d', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x22b3df1c89088d6b5936f5d30c60d4c54f8b31b7', 'value': 58349.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c5b21facd1977460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:08:18.000Z'}}, {'blockNum': '0x80e726', 'uniqueId': '0xf81d62dd537812ecc26d901070ca048bc8946ad7767f2f5a921064aea2862fdd:log:1', 'hash': '0xf81d62dd537812ecc26d901070ca048bc8946ad7767f2f5a921064aea2862fdd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x14acd610d1d2f15c06b123e61cb4e9ce596e572f', 'value': 401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x15bcfe2f6933a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:21:05.000Z'}}, {'blockNum': '0x80e731', 'uniqueId': '0x3b665c488bba45dd4bffa7a4d66f84d25b9bdc5b753893ea2a36b0599c838a9c:log:4', 'hash': '0x3b665c488bba45dd4bffa7a4d66f84d25b9bdc5b753893ea2a36b0599c838a9c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfa190caf921888a53781364748f4f37a67181e32', 'value': 118598.184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x191d386e93e410040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:23:00.000Z'}}, {'blockNum': '0x80e737', 'uniqueId': '0xa677c5b4d0181e6bf576398ac77e7350d24c2a8beb561dec7b8b439c51b9497a:log:48', 'hash': '0xa677c5b4d0181e6bf576398ac77e7350d24c2a8beb561dec7b8b439c51b9497a', 'from': '0x22b3df1c89088d6b5936f5d30c60d4c54f8b31b7', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 58349.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c5b21facd1977460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:23:45.000Z'}}, {'blockNum': '0x80e74a', 'uniqueId': '0x18a5c93c44c7816b58b5738015e5d840f456c6cf1928ad1ec0337d3f590b950b:log:0', 'hash': '0x18a5c93c44c7816b58b5738015e5d840f456c6cf1928ad1ec0337d3f590b950b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x14acd610d1d2f15c06b123e61cb4e9ce596e572f', 'value': 4401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xee9424e680ae240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:27:39.000Z'}}, {'blockNum': '0x80e74f', 'uniqueId': '0x7ce5889ec98ec936b0765c860098b2e68e70841a8a26526249741d34fa7449b5:log:0', 'hash': '0x7ce5889ec98ec936b0765c860098b2e68e70841a8a26526249741d34fa7449b5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2347.54136744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7f42ae53e123f5a000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:28:56.000Z'}}, {'blockNum': '0x80e750', 'uniqueId': '0x76a1bb72aec439e3798bd932a6133cfc69755488f4791fac2d0f07d4841874ee:log:80', 'hash': '0x76a1bb72aec439e3798bd932a6133cfc69755488f4791fac2d0f07d4841874ee', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x242f62a2dbfaeb1b350b4531fb02d363bb976638', 'value': 2347.54136744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7f42ae53e123f5a000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:28:59.000Z'}}, {'blockNum': '0x80e759', 'uniqueId': '0x02d75847b9f6f0f467bb38b06245ead16f547f88837dbe580b12ab42c5ac73e2:log:2', 'hash': '0x02d75847b9f6f0f467bb38b06245ead16f547f88837dbe580b12ab42c5ac73e2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6fbbb3878ab27bfa0c174832b9d89ecc0bc93f3a', 'value': 19881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0435c04ca5f295040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:30:50.000Z'}}, {'blockNum': '0x80e779', 'uniqueId': '0x68c848dd42382cbc8f3ff727d1cdac7da69042b3fdd6ec093c87b775452cb343:log:5', 'hash': '0x68c848dd42382cbc8f3ff727d1cdac7da69042b3fdd6ec093c87b775452cb343', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4ef59167a212404fe6bb64930437e1d6432f6554', 'value': 212341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2cf70757452a54b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:39:45.000Z'}}, {'blockNum': '0x80e7b4', 'uniqueId': '0xe487208cb2dee95f647acb58aa385eaa18960e4cff484fe356178ad210f8d5d2:log:36', 'hash': '0xe487208cb2dee95f647acb58aa385eaa18960e4cff484fe356178ad210f8d5d2', 'from': '0x4ef59167a212404fe6bb64930437e1d6432f6554', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 212341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2cf70757452a54b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:53:00.000Z'}}, {'blockNum': '0x80e7f7', 'uniqueId': '0xe9dc776fff1f0cbcc101ee55fb0fc482a5d66b05e9854b8fcd2c905989e2a761:log:105', 'hash': '0xe9dc776fff1f0cbcc101ee55fb0fc482a5d66b05e9854b8fcd2c905989e2a761', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x98b08fd35f2324e7b284770d33ee9fcde21cb00a', 'value': 108600.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16ff443ef5c587ba0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:09:10.000Z'}}, {'blockNum': '0x80e815', 'uniqueId': '0x1b6c0cb48e8aecbe8ae9525995f7a59809f028970f40d471d07341f080bb4e9d:log:28', 'hash': '0x1b6c0cb48e8aecbe8ae9525995f7a59809f028970f40d471d07341f080bb4e9d', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 51990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b026230292cae980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:17:40.000Z'}}, {'blockNum': '0x80e82b', 'uniqueId': '0xfb0481df5de8fe804e2ec64a522d08891185494fd79142c6f888cf4cfb5e9588:log:29', 'hash': '0xfb0481df5de8fe804e2ec64a522d08891185494fd79142c6f888cf4cfb5e9588', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b026230292cae980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:22:25.000Z'}}, {'blockNum': '0x80e831', 'uniqueId': '0x5e08cc3034a8ee4be93c20e48947630e6cb70531187e46d86a42eef2f576395e:log:91', 'hash': '0x5e08cc3034a8ee4be93c20e48947630e6cb70531187e46d86a42eef2f576395e', 'from': '0x98b08fd35f2324e7b284770d33ee9fcde21cb00a', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 108600.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16ff443ef5c587ba0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:23:39.000Z'}}, {'blockNum': '0x80e8fc', 'uniqueId': '0x8ef28e6e4dcdc4f813cf78daaa22ed5526b898cce62ed9477898705f8fb2424f:log:0', 'hash': '0x8ef28e6e4dcdc4f813cf78daaa22ed5526b898cce62ed9477898705f8fb2424f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0e4335f6edc4c4633c384a29d6ffd2d917fa5d1b', 'value': 7212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0186f69b0d2fb5300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:10:48.000Z'}}, {'blockNum': '0x80e91d', 'uniqueId': '0x01a36e4f0b725fa423acafef30b1a8f3e45e66a54aec09beb79849f3d1c79069:log:2', 'hash': '0x01a36e4f0b725fa423acafef30b1a8f3e45e66a54aec09beb79849f3d1c79069', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 55530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bc2498e957361680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:18:53.000Z'}}, {'blockNum': '0x80e961', 'uniqueId': '0xceabb5ab8fd4001f998ade0e112d52bf71db12042b3c14983942d91cd0388937:log:8', 'hash': '0xceabb5ab8fd4001f998ade0e112d52bf71db12042b3c14983942d91cd0388937', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bc2498e957361680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:32:02.000Z'}}, {'blockNum': '0x80e965', 'uniqueId': '0xf0bac80df4a24a6df2e0b8d67c853a14c6947db46cb41070f917ad9485dea60f:log:119', 'hash': '0xf0bac80df4a24a6df2e0b8d67c853a14c6947db46cb41070f917ad9485dea60f', 'from': '0x3fb83b3ec48a0a0a21a793960892422ca39e4cc9', 'to': '0x02bd432d0c1516d846822355d03de6e81e83f8b7', 'value': 56961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c0fdcabdbb011640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:33:00.000Z'}}, {'blockNum': '0x80e980', 'uniqueId': '0x631ae09ca228c86fd123725628714e2c9fbae043d25d2d98bb54c26cfaa8e117:log:3', 'hash': '0x631ae09ca228c86fd123725628714e2c9fbae043d25d2d98bb54c26cfaa8e117', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18dc9b4077b973421998b173673bfd5defb9e62b', 'value': 4149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xe0eaf10da7e7b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:41:18.000Z'}}, {'blockNum': '0x80e988', 'uniqueId': '0xf6a5f4fa2c6bf37731d4f06a2cfe72935418a6c57fee29d9e93d3ee16722fc11:log:4', 'hash': '0xf6a5f4fa2c6bf37731d4f06a2cfe72935418a6c57fee29d9e93d3ee16722fc11', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3ec82921c72584c440bf459d6754f764828d4e2b', 'value': 102588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x15b94e7ee17b2d700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:43:05.000Z'}}, {'blockNum': '0x80e9b7', 'uniqueId': '0x227860af4e7e3447f59b0c713f61f0ebd311d9211374de87820a27a4b7baa1a9:log:8', 'hash': '0x227860af4e7e3447f59b0c713f61f0ebd311d9211374de87820a27a4b7baa1a9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14d8c4b2d2bcd9780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:54:09.000Z'}}, {'blockNum': '0x80e9ba', 'uniqueId': '0x5783cace9ffded909a50ca08ce71c3657e4501a382fa21df174e8bb6f3b936e5:log:68', 'hash': '0x5783cace9ffded909a50ca08ce71c3657e4501a382fa21df174e8bb6f3b936e5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 55687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bcacc5ea1a109bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:54:57.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0xf69e91328a94832af12b2fc7abe9e458d90293a814ed453d15137c2c4b72d932:log:12', 'hash': '0xf69e91328a94832af12b2fc7abe9e458d90293a814ed453d15137c2c4b72d932', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bcacc5ea1a109bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0xfc2524bf12d05767c3c8b8b7332fe517f6b9254ffe361e24c41b41fbb30a52fd:log:14', 'hash': '0xfc2524bf12d05767c3c8b8b7332fe517f6b9254ffe361e24c41b41fbb30a52fd', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14d8c4b2d2bcd9780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0x406966530263e63cc85cce999f6308fca02e3fdc9dc1668012b9b569b30dad44:log:68', 'hash': '0x406966530263e63cc85cce999f6308fca02e3fdc9dc1668012b9b569b30dad44', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 20246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x044989b124183e980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9e9', 'uniqueId': '0xa8bd4bf4d3c0696f33290178b727f0da5422bfed8c90d97a50b5805a3933ec0b:log:17', 'hash': '0xa8bd4bf4d3c0696f33290178b727f0da5422bfed8c90d97a50b5805a3933ec0b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x519cb0540e1c4e8a0c1ae9f981e0934e3bba89c1', 'value': 7778.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01a5a72ea2b8e5fb0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:04:25.000Z'}}, {'blockNum': '0x80e9fe', 'uniqueId': '0x9a98c96e7e7e8cf6681bd2a84e9cba28666e6af1d7dc2769a2733cac0797e6ca:log:40', 'hash': '0x9a98c96e7e7e8cf6681bd2a84e9cba28666e6af1d7dc2769a2733cac0797e6ca', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b5910c5554f38340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:10:22.000Z'}}, {'blockNum': '0x80e9ff', 'uniqueId': '0x5ee5dfa5f0781c7bc4d840460ef5f8ccfd0c8068b179a9b2620f8cd4d60dd185:log:31', 'hash': '0x5ee5dfa5f0781c7bc4d840460ef5f8ccfd0c8068b179a9b2620f8cd4d60dd185', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 20246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x044989b124183e980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:11:03.000Z'}}, {'blockNum': '0x80ea33', 'uniqueId': '0x39b1638f93dde69d02efb202dac6a87aea057061ffeb0649b9ff1430ba3c240d:log:32', 'hash': '0x39b1638f93dde69d02efb202dac6a87aea057061ffeb0649b9ff1430ba3c240d', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14eb4ee6e6be79100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:21:59.000Z'}}, {'blockNum': '0x80ea34', 'uniqueId': '0x36eec5fa3d8db7b5acb888a182d9198aae992041e2c74649b5f5129b9954905a:log:17', 'hash': '0x36eec5fa3d8db7b5acb888a182d9198aae992041e2c74649b5f5129b9954905a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b5910c5554f38340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:22:17.000Z'}}, {'blockNum': '0x80ea6b', 'uniqueId': '0x54ebf58af0108346a242e5948075a12222d507ba929e2e565ea44a557aefcd56:log:9', 'hash': '0x54ebf58af0108346a242e5948075a12222d507ba929e2e565ea44a557aefcd56', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b63e85411a9fe540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:30:21.000Z'}}, {'blockNum': '0x80ea7a', 'uniqueId': '0x86e392464f6a882e5d7401634181b39ca36973b42121c7b80eefdc588f2a8a5b:log:11', 'hash': '0x86e392464f6a882e5d7401634181b39ca36973b42121c7b80eefdc588f2a8a5b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd0aed7b3544dfb4624f64963fee9dd53911b620c', 'value': 16812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x038f615e5e34db300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:32:17.000Z'}}, {'blockNum': '0x80ea7a', 'uniqueId': '0x91a768e38f118cda5c40987bc3a9fd9e504f919f9b6300e2a2f082fb66b20352:log:36', 'hash': '0x91a768e38f118cda5c40987bc3a9fd9e504f919f9b6300e2a2f082fb66b20352', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14eb4ee6e6be79100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:32:17.000Z'}}, {'blockNum': '0x80ea8b', 'uniqueId': '0x06158cac5dfc81bf5164d53185a10900ed9aa02f2a5387dd274489722e0b9301:log:43', 'hash': '0x06158cac5dfc81bf5164d53185a10900ed9aa02f2a5387dd274489722e0b9301', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x4bb1b4cd34c9345c47289b59078802233217c5e6', 'value': 150063.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1fc6f522159b978c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:36:19.000Z'}}, {'blockNum': '0x80eaa9', 'uniqueId': '0xf7542dcfdb5db593ffd53da5d0894969caeb8b7a8cca2428244030b724db959a:log:40', 'hash': '0xf7542dcfdb5db593ffd53da5d0894969caeb8b7a8cca2428244030b724db959a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da2ee6b0f77aa40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:42:25.000Z'}}, {'blockNum': '0x80eaa9', 'uniqueId': '0xbd16bfe5b77d5e69fec273859bb4e9124530fbdb3357a24e1e8a83f02870637a:log:63', 'hash': '0xbd16bfe5b77d5e69fec273859bb4e9124530fbdb3357a24e1e8a83f02870637a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b63e85411a9fe540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:42:25.000Z'}}, {'blockNum': '0x80eab0', 'uniqueId': '0xe19437ad30aef6bab93264c6472da5a2081fa3625ce26050282af3cd463b9e06:log:12', 'hash': '0xe19437ad30aef6bab93264c6472da5a2081fa3625ce26050282af3cd463b9e06', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x54b6e9b833e62c22b290a97c6e561f42f6bdb20d', 'value': 72176.9521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0f48b86d051184664000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:43:27.000Z'}}, {'blockNum': '0x80eab6', 'uniqueId': '0x9be6a86d67ec266ccb0b865dc584f0b1eb2559782d860f16e591e77619095169:log:119', 'hash': '0x9be6a86d67ec266ccb0b865dc584f0b1eb2559782d860f16e591e77619095169', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 16700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03894f0e6f9b9f700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:45:03.000Z'}}, {'blockNum': '0x80eac1', 'uniqueId': '0x9a11aa8c4d50f51400a120b38f8c8ca060f842f62b4220b5ea013d4eefebd665:log:8', 'hash': '0x9a11aa8c4d50f51400a120b38f8c8ca060f842f62b4220b5ea013d4eefebd665', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x519cb0540e1c4e8a0c1ae9f981e0934e3bba89c1', 'value': 9872.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021729f004be4f830000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:47:56.000Z'}}, {'blockNum': '0x80eac8', 'uniqueId': '0x78cc1720dfb03cc70b461e4454744637c8ae121c955e6328775d99f9ccc9fdc8:log:118', 'hash': '0x78cc1720dfb03cc70b461e4454744637c8ae121c955e6328775d99f9ccc9fdc8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 94651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x140b0a7e69826a0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:49:59.000Z'}}, {'blockNum': '0x80ead3', 'uniqueId': '0x0eeff1ebddf72f16382a08f2cbb16f68e91c3f32acfbbce446e3745b367e112e:log:110', 'hash': '0x0eeff1ebddf72f16382a08f2cbb16f68e91c3f32acfbbce446e3745b367e112e', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 178956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x25e539651a79e4b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:52:04.000Z'}}, {'blockNum': '0x80ead7', 'uniqueId': '0x528996869a1bbbf1dbd229005748c4c8083ccd934ac2a6c7736f5e8bb4e1592f:log:37', 'hash': '0x528996869a1bbbf1dbd229005748c4c8083ccd934ac2a6c7736f5e8bb4e1592f', 'from': '0x54b6e9b833e62c22b290a97c6e561f42f6bdb20d', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 72176.9521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0f48b86d051184664000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:53:05.000Z'}}, {'blockNum': '0x80eade', 'uniqueId': '0xd1ae4a0c36ccde99bec15acf8c7659bbb7a61024306e1ec28c9c7f32a720b1ac:log:7', 'hash': '0xd1ae4a0c36ccde99bec15acf8c7659bbb7a61024306e1ec28c9c7f32a720b1ac', 'from': '0x3c0ee32b03816b787ce85d2e594ae4f3a7e062ad', 'to': '0x185aa96c350c9bca88b98670264642d167dd6f60', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:55:08.000Z'}}, {'blockNum': '0x80eae3', 'uniqueId': '0x23e91a20eae28bb11ce655a3037297db64afb281707dcf6a66e5bf37ac180c3a:log:94', 'hash': '0x23e91a20eae28bb11ce655a3037297db64afb281707dcf6a66e5bf37ac180c3a', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 16700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03894f0e6f9b9f700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:56:26.000Z'}}, {'blockNum': '0x80eaea', 'uniqueId': '0xa792573bfeefc106e77ca19a4fe8ca3c22957f9eabccea157e0f1926ddc895c1:log:19', 'hash': '0xa792573bfeefc106e77ca19a4fe8ca3c22957f9eabccea157e0f1926ddc895c1', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 122852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1a03d1fcde3531100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:57:32.000Z'}}, {'blockNum': '0x80eaf8', 'uniqueId': '0xb7d002bf0f9aa770c8d8c878e1d501ea2690e6c646873fdd8b380b839e4edffb:log:15', 'hash': '0xb7d002bf0f9aa770c8d8c878e1d501ea2690e6c646873fdd8b380b839e4edffb', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x95e3181243425ee70e68575456ef2f1c0a7ce9dc', 'value': 68879.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e95f43ef42705828000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:01:10.000Z'}}, {'blockNum': '0x80eafc', 'uniqueId': '0xd96e9ec0d44c39f86ef89ecfc990adf5a545d32572cf9d8491cbd833503b0368:log:30', 'hash': '0xd96e9ec0d44c39f86ef89ecfc990adf5a545d32572cf9d8491cbd833503b0368', 'from': '0x185aa96c350c9bca88b98670264642d167dd6f60', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:02:01.000Z'}}, {'blockNum': '0x80eb14', 'uniqueId': '0x90a567f7b6d5c8ba92b05876978032e27a66786b0b99cc23a12871dca1094214:log:10', 'hash': '0x90a567f7b6d5c8ba92b05876978032e27a66786b0b99cc23a12871dca1094214', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1978e53ef0faf74c811b53767551f8e549423157', 'value': 14193.704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030171365a8881040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:08:05.000Z'}}, {'blockNum': '0x80eb16', 'uniqueId': '0x248d467db3aff926e9eac036e792bbde0af21dcc55646c55150bfa7f27cd675d:log:17', 'hash': '0x248d467db3aff926e9eac036e792bbde0af21dcc55646c55150bfa7f27cd675d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b6a400791c57f080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:08:42.000Z'}}, {'blockNum': '0x80eb25', 'uniqueId': '0x70fa478e1fc107d924d9bbeb92b9b467eea13319846241bb4cdab62460a20e8a:log:72', 'hash': '0x70fa478e1fc107d924d9bbeb92b9b467eea13319846241bb4cdab62460a20e8a', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 122852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1a03d1fcde3531100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:12:11.000Z'}}, {'blockNum': '0x80eb36', 'uniqueId': '0x5eba7630aa6df42a3ead54d02ca1a43cf9db94d2b37ac3a9a2c903bc34bfef86:log:29', 'hash': '0x5eba7630aa6df42a3ead54d02ca1a43cf9db94d2b37ac3a9a2c903bc34bfef86', 'from': '0x95e3181243425ee70e68575456ef2f1c0a7ce9dc', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 68879.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e95f43ef42705828000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:16:42.000Z'}}, {'blockNum': '0x80eb52', 'uniqueId': '0x395a3a7c70c3d8590c4d8890dc245e179a0280f655810ed06eb671a96ee3d899:log:15', 'hash': '0x395a3a7c70c3d8590c4d8890dc245e179a0280f655810ed06eb671a96ee3d899', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b6a400791c57f080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:22:02.000Z'}}, {'blockNum': '0x80eb7c', 'uniqueId': '0xf847c95633907cc2ee28b0b17854cc6397c86326233aaffd6190187cd0168802:log:26', 'hash': '0xf847c95633907cc2ee28b0b17854cc6397c86326233aaffd6190187cd0168802', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 52600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b2373a381418ae00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:30:50.000Z'}}, {'blockNum': '0x80eba0', 'uniqueId': '0xc4d81865ef6b526f72b9c530d5c45148a897e4d52bcb46bacf8364fbb5a42db6:log:20', 'hash': '0xc4d81865ef6b526f72b9c530d5c45148a897e4d52bcb46bacf8364fbb5a42db6', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 61423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d01bf5c4affa25c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:38:53.000Z'}}, {'blockNum': '0x80ebb2', 'uniqueId': '0x61750ede45dce43fb6d5faecbfb6104c326d2c226be1d1b4ee7f14b5ed9c1cd9:log:10', 'hash': '0x61750ede45dce43fb6d5faecbfb6104c326d2c226be1d1b4ee7f14b5ed9c1cd9', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x182532ffcc412d3c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:42:08.000Z'}}, {'blockNum': '0x80ebbf', 'uniqueId': '0x4e3a7b4bccd792457b38c9f0df05d71abd03255f03d12f8ba46284660cd7de6e:log:66', 'hash': '0x4e3a7b4bccd792457b38c9f0df05d71abd03255f03d12f8ba46284660cd7de6e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c407de377cf080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:46:24.000Z'}}, {'blockNum': '0x80ebd0', 'uniqueId': '0xfd84a55d8e0d2bf36221dd5bc7155784246ad3c2bea2787cd5a67110969e1fb4:log:75', 'hash': '0xfd84a55d8e0d2bf36221dd5bc7155784246ad3c2bea2787cd5a67110969e1fb4', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 54860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b9df7706b4349b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:49:09.000Z'}}, {'blockNum': '0x80ebeb', 'uniqueId': '0x4920edd61962a643f840aa25ffc4f4168ae60904974edebe9b86972070b2c095:log:20', 'hash': '0x4920edd61962a643f840aa25ffc4f4168ae60904974edebe9b86972070b2c095', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14e1d24a01ef0bb40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:55:36.000Z'}}, {'blockNum': '0x80ebee', 'uniqueId': '0x83907d2352ce5993f955bbb6ad0eddebfd5e00f0d48649c8364e9814a21f10d8:log:23', 'hash': '0x83907d2352ce5993f955bbb6ad0eddebfd5e00f0d48649c8364e9814a21f10d8', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c0d18e775e5b8780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:56:30.000Z'}}, {'blockNum': '0x80ebee', 'uniqueId': '0x4b585de0a9e7160807910f03939dc1ac9a2a417f353769b1efeb09821baabffc:log:24', 'hash': '0x4b585de0a9e7160807910f03939dc1ac9a2a417f353769b1efeb09821baabffc', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 113797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1818f29e81a766f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:56:30.000Z'}}, {'blockNum': '0x80ec00', 'uniqueId': '0xbda7e7ff4404bea68c6c83161daa6279177c25b7607238eb30702a802b51b17d:log:99', 'hash': '0xbda7e7ff4404bea68c6c83161daa6279177c25b7607238eb30702a802b51b17d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 51731.406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0af45d79b843a73b0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:00:13.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xa1c76940e9751349b02e2f7aa772baa4fe0c90e1a9c8ad4f7078907540fcf7d4:log:52', 'hash': '0xa1c76940e9751349b02e2f7aa772baa4fe0c90e1a9c8ad4f7078907540fcf7d4', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1818f29e81a766f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xc183cc85d9e952f4ab68bf10d8b67bb233253a9bb487179dfd66f46bcf8bd7a7:log:75', 'hash': '0xc183cc85d9e952f4ab68bf10d8b67bb233253a9bb487179dfd66f46bcf8bd7a7', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 111770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x17ab1057e12902280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xd32c35b5d62736c86b69661b8ec10290e24a1bfb1f4ee5b7514db30b440041d1:log:76', 'hash': '0xd32c35b5d62736c86b69661b8ec10290e24a1bfb1f4ee5b7514db30b440041d1', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a0e12c7e566dabc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec0b', 'uniqueId': '0xbc773a7a581e6180aee7e139f43a19259c92313eb88f12fd2fa10109d16a3b43:log:70', 'hash': '0xbc773a7a581e6180aee7e139f43a19259c92313eb88f12fd2fa10109d16a3b43', 'from': '0x560a5a98b65bf6f564b25d0b1359508411a3ec74', 'to': '0xc2e5a9fa08845c253f42f889a137f848b970690e', 'value': 3863.34966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd16ebf2eddc225c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:03:24.000Z'}}, {'blockNum': '0x80ec2e', 'uniqueId': '0x1e7c753bbd42e2000f256b4a27655264389312a54b994b4caaa606afcce7a5bd:log:21', 'hash': '0x1e7c753bbd42e2000f256b4a27655264389312a54b994b4caaa606afcce7a5bd', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 114235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1830b1171907cc0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:12:02.000Z'}}, {'blockNum': '0x80ec39', 'uniqueId': '0xe419cc4fbf45f066ff15bccf957e677d7d08b62725ed77538d2a17179742fb6c:log:4', 'hash': '0xe419cc4fbf45f066ff15bccf957e677d7d08b62725ed77538d2a17179742fb6c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'value': 214619.1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2d7287973e57b82b4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:13:59.000Z'}}, {'blockNum': '0x80ec41', 'uniqueId': '0xac0c3a48fbea57b6a50ccd145cdb619ec91dcdde28f346bb73f4ee75f23981f9:log:22', 'hash': '0xac0c3a48fbea57b6a50ccd145cdb619ec91dcdde28f346bb73f4ee75f23981f9', 'from': '0x4cf5b6035eb8e71262da447456e585e1b9b43eac', 'to': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:15:32.000Z'}}, {'blockNum': '0x80ec41', 'uniqueId': '0xd3419ba15b7ca6936db3d82ebcaa3223bddac1188d97039c56c0ec40dde56593:log:26', 'hash': '0xd3419ba15b7ca6936db3d82ebcaa3223bddac1188d97039c56c0ec40dde56593', 'from': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'to': '0x4cf5b6035eb8e71262da447456e585e1b9b43eac', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:15:32.000Z'}}, {'blockNum': '0x80ec49', 'uniqueId': '0x255b3d5610b166b1d1a700ee5b29faa77fbd6c52e6f908ec727f12a8fb3ae227:log:67', 'hash': '0x255b3d5610b166b1d1a700ee5b29faa77fbd6c52e6f908ec727f12a8fb3ae227', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0becf3603fbef9d40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:18:53.000Z'}}, {'blockNum': '0x80ec4f', 'uniqueId': '0xbec336e7a239014be36bdb99c518a033241bdc4bfe66d1a123a27095c0db0ee5:log:1', 'hash': '0xbec336e7a239014be36bdb99c518a033241bdc4bfe66d1a123a27095c0db0ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5e9679a877aaefee7a0077ce89804034bd85ca71', 'value': 23612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0500025362432b700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:20:24.000Z'}}, {'blockNum': '0x80ec57', 'uniqueId': '0xc0f673c11369bbd5261d4792801f18bf3ffc8cc1c5760e5fadcd5a3b23017d49:log:95', 'hash': '0xc0f673c11369bbd5261d4792801f18bf3ffc8cc1c5760e5fadcd5a3b23017d49', 'from': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 214619.1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2d7287973e57b82b4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:22:54.000Z'}}, {'blockNum': '0x80ec5b', 'uniqueId': '0x16ba4b4c6736fbd564d6fefad02cbba2c49ef065bcbb8158ca445dfcedbcc011:log:22', 'hash': '0x16ba4b4c6736fbd564d6fefad02cbba2c49ef065bcbb8158ca445dfcedbcc011', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 93615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13d2e11b0a79015c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:24:59.000Z'}}, {'blockNum': '0x80ec72', 'uniqueId': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09:log:93', 'hash': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09', 'from': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'to': '0x59523b19e6614f9e6acede42100619458ee01eab', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:29:51.000Z'}}, {'blockNum': '0x80ec72', 'uniqueId': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09:log:94', 'hash': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09', 'from': '0x59523b19e6614f9e6acede42100619458ee01eab', 'to': '0x66013071e12cf90df02f1b3c8149e00a16936f80', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:29:51.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x9cb10db6ccaf8b0a739c01dc0d97043e6f75b683446b9ca3ad89bcddd93a189d:log:92', 'hash': '0x9cb10db6ccaf8b0a739c01dc0d97043e6f75b683446b9ca3ad89bcddd93a189d', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13d2e11b0a79015c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x6f51d8f9d835a49179fd48b8730bd8321cc10dfbb0bcce10387bc83bd2625125:log:110', 'hash': '0x6f51d8f9d835a49179fd48b8730bd8321cc10dfbb0bcce10387bc83bd2625125', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0becf3603fbef9d40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x1de467c16c632f3043046fbba2c34f5069ce833ad70fcef563daf534d3340fba:log:116', 'hash': '0x1de467c16c632f3043046fbba2c34f5069ce833ad70fcef563daf534d3340fba', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1830b1171907cc0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec91', 'uniqueId': '0x3045bdeff466c877cc88d856c72b3b173955f0dc8f9180ae0641d785207e9d54:log:50', 'hash': '0x3045bdeff466c877cc88d856c72b3b173955f0dc8f9180ae0641d785207e9d54', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:36:48.000Z'}}, {'blockNum': '0x80ec93', 'uniqueId': '0x04b2991812aa302c2a37294a5556561d4bd9566f8596d2f990438530f57abb31:log:49', 'hash': '0x04b2991812aa302c2a37294a5556561d4bd9566f8596d2f990438530f57abb31', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0be989134988c8380000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:37:48.000Z'}}, {'blockNum': '0x80ecaa', 'uniqueId': '0x6f17d55bc279e064951a1fe263066bae92efaedeeae6131894350cd46de3ecd8:log:20', 'hash': '0x6f17d55bc279e064951a1fe263066bae92efaedeeae6131894350cd46de3ecd8', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:42:01.000Z'}}, {'blockNum': '0x80ecb2', 'uniqueId': '0x79e1e71dd207946a88e65a6e68f4ca0405791b6ffb7154407c95973151f8a4ef:log:1', 'hash': '0x79e1e71dd207946a88e65a6e68f4ca0405791b6ffb7154407c95973151f8a4ef', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8164980bf4a83e54992a2733938b5d8401fb3912', 'value': 19912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04376e82c5b3da200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:43:26.000Z'}}, {'blockNum': '0x80ecd0', 'uniqueId': '0x67ec7f71367185e6ffb2daa482d454d8df95df665833d7aaeaaaee53d31f2a57:log:155', 'hash': '0x67ec7f71367185e6ffb2daa482d454d8df95df665833d7aaeaaaee53d31f2a57', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 52072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b06d42aaeb84ca00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:50:49.000Z'}}, {'blockNum': '0x80ecd2', 'uniqueId': '0xde0fe8ca7ee563f64fb96be4198d41760ceef73ca7972014613c49535ace4212:log:87', 'hash': '0xde0fe8ca7ee563f64fb96be4198d41760ceef73ca7972014613c49535ace4212', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16f05d3df84114d80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:51:50.000Z'}}, {'blockNum': '0x80ece7', 'uniqueId': '0x8811d79136c1090aa214b12575be9ca66e7e7aadb51221f7b96e5833e1cdb3fb:log:20', 'hash': '0x8811d79136c1090aa214b12575be9ca66e7e7aadb51221f7b96e5833e1cdb3fb', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 97754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14b34144f51c5f280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:56:42.000Z'}}]}}
Number of returned transfers:  160
Answer is complete
 
symbol            DATA
group              MPG
date        2019-09-08
hour             18:00
exchange       binance
Name: 506, dtype: object
HERE
 Symbol: DATA, Contract: 0x8f693ca8d21b157107184d29d398a8d082b38b76
Datetime timestamps:  2019-09-08 18:00:00 2019-09-08 06:00:00 2019-09-09 06:00:00
Unix timestamps:  1567915200.0 1568001600.0
Hex Block Numbers:  0x81ce7b 0x81e776
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             NXS
group              MPG
date        2019-10-02
hour             18:00
exchange       binance
Name: 507, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2019-10-02 18:00:00 2019-10-02 06:00:00 2019-10-03 06:00:00
Unix timestamps:  1569988800.0 1570075200.0
Hex Block Numbers:  0x84268a 0x843f83
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             OST
group              MPG
date        2019-10-22
hour             18:00
exchange       binance
Name: 508, dtype: object
HERE
 Symbol: OST, Contract: 0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca
Datetime timestamps:  2019-10-22 18:00:00 2019-10-22 06:00:00 2019-10-23 06:00:00
Unix timestamps:  1571716800.0 1571803200.0
Hex Block Numbers:  0x861831 0x863158
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x861bde', 'uniqueId': '0x1d95a09a36b4a8ec474fbedaacdd0306d69f07fe3b1f4b8297a9c866c44102e6:log:23', 'hash': '0x1d95a09a36b4a8ec474fbedaacdd0306d69f07fe3b1f4b8297a9c866c44102e6', 'from': '0x492728e73a4cfacfa017b7eb444703b2d960d09a', 'to': '0x8b7cf173a4bc994a573615f534fcde698eb0ba18', 'value': 11141.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x025bffe21594c6a68000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:28:43.000Z'}}, {'blockNum': '0x861c15', 'uniqueId': '0xa076cf76f4a712b2432a192f11d394ea0b9e0d52d0e751af0855ba90f086e5f4:log:74', 'hash': '0xa076cf76f4a712b2432a192f11d394ea0b9e0d52d0e751af0855ba90f086e5f4', 'from': '0x8b7cf173a4bc994a573615f534fcde698eb0ba18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11141.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x025bffe21594c6a68000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:42:14.000Z'}}, {'blockNum': '0x861c17', 'uniqueId': '0xf98223262f7f00ba63ee568daf30b3438b800e8252f52dc6291d4235c4c1c7dd:log:15', 'hash': '0xf98223262f7f00ba63ee568daf30b3438b800e8252f52dc6291d4235c4c1c7dd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeb2408175a07be9c0604468db599a28e8dfc9e25', 'value': 552.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1df9a743df305e8000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:42:43.000Z'}}, {'blockNum': '0x861c2d', 'uniqueId': '0x1b6cf7e687e0bf0590cebd90fd5bd803171f95af9f16e562a3521c5b9e7490a9:log:47', 'hash': '0x1b6cf7e687e0bf0590cebd90fd5bd803171f95af9f16e562a3521c5b9e7490a9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeb2408175a07be9c0604468db599a28e8dfc9e25', 'value': 512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec8000000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:46:38.000Z'}}, {'blockNum': '0x861d33', 'uniqueId': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff:log:140', 'hash': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff', 'from': '0x8fa07f46353a2b17e92645592a94a0fc1ceb783f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 14.992838046130872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd01142c47a979e3f', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T08:42:16.000Z'}}, {'blockNum': '0x861d33', 'uniqueId': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff:log:141', 'hash': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 14.992838046130872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd01142c47a979e3f', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T08:42:16.000Z'}}, {'blockNum': '0x861f34', 'uniqueId': '0xd698880ee7511031d4da38f4fb691cad0410cf1d99954b8a417b36f22e3562e3:log:0', 'hash': '0xd698880ee7511031d4da38f4fb691cad0410cf1d99954b8a417b36f22e3562e3', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 700005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x943b58daba8f02740000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T10:32:54.000Z'}}, {'blockNum': '0x861f57', 'uniqueId': '0x2f69c39685f5382891fa64a10f0b53e8f4ea50a8c32188e50962ad5ec71a865c:log:49', 'hash': '0x2f69c39685f5382891fa64a10f0b53e8f4ea50a8c32188e50962ad5ec71a865c', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 700005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x943b58daba8f02740000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T10:42:02.000Z'}}, {'blockNum': '0x862429', 'uniqueId': '0x90a80db78f6e7f3c1d513485230b84019ebab72ead97995dca3bdf6f5d950b52:log:0', 'hash': '0x90a80db78f6e7f3c1d513485230b84019ebab72ead97995dca3bdf6f5d950b52', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 503000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6a83af446fc86c600000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:35:16.000Z'}}, {'blockNum': '0x86243d', 'uniqueId': '0x6bc603544e03bb26a06845bb5540c97cb0547d7d2dedacfd7644e3635c7cc343:log:0', 'hash': '0x6bc603544e03bb26a06845bb5540c97cb0547d7d2dedacfd7644e3635c7cc343', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 506000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6b2650a1791a08400000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:37:59.000Z'}}, {'blockNum': '0x86244b', 'uniqueId': '0x95bbd8dd73e5340ff3b4d5c865c2586547795312a6d229d3a56283cf70c621f6:log:24', 'hash': '0x95bbd8dd73e5340ff3b4d5c865c2586547795312a6d229d3a56283cf70c621f6', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1009000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd5a9ffe5e8e274a00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:42:16.000Z'}}, {'blockNum': '0x862474', 'uniqueId': '0x63ce5167216ca6e23ac7d303d26d6c3d4c7058e5b4566319fe9b15b2857c6a2f:log:3', 'hash': '0x63ce5167216ca6e23ac7d303d26d6c3d4c7058e5b4566319fe9b15b2857c6a2f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2434888.077162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02039b8c1214e97048a000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:51:55.000Z'}}, {'blockNum': '0x8626c1', 'uniqueId': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4:log:0', 'hash': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:00:40.000Z'}}, {'blockNum': '0x8626c1', 'uniqueId': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4:log:2', 'hash': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:00:40.000Z'}}, {'blockNum': '0x8626c4', 'uniqueId': '0xb271e49c1acb781e57efc0bc8c178e3dcb56e953f28ca0ba34087a01ec8e7eaa:log:15', 'hash': '0xb271e49c1acb781e57efc0bc8c178e3dcb56e953f28ca0ba34087a01ec8e7eaa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 1531.20195855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x5301b224a543265c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:01:10.000Z'}}, {'blockNum': '0x8626c6', 'uniqueId': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292:log:2', 'hash': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:01:45.000Z'}}, {'blockNum': '0x8626c6', 'uniqueId': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292:log:3', 'hash': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:01:45.000Z'}}, {'blockNum': '0x8626c8', 'uniqueId': '0xc5ac8ab9a7177279f8a4246eb3cf49f3cfe818507d58072253c4332a47675190:log:3', 'hash': '0xc5ac8ab9a7177279f8a4246eb3cf49f3cfe818507d58072253c4332a47675190', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 139292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1d7f08d1bf5acef00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:02:06.000Z'}}, {'blockNum': '0x8626c8', 'uniqueId': '0xf28d82e799e210d86bf2decc9ad8d9a32bdc4edd3082a450a1a8410709c58e9c:log:4', 'hash': '0xf28d82e799e210d86bf2decc9ad8d9a32bdc4edd3082a450a1a8410709c58e9c', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 47903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a24d3ab5b07511c0000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:02:06.000Z'}}, {'blockNum': '0x8626d4', 'uniqueId': '0x6054fa4d861823770e563413b9e5231653c4c53fd8a35beec32f1dd111473d83:log:2', 'hash': '0x6054fa4d861823770e563413b9e5231653c4c53fd8a35beec32f1dd111473d83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9a01f038be36b3d4dbf545251a591ab91ec28e33', 'value': 22101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x04ae18fd03e22c340000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:04:43.000Z'}}, {'blockNum': '0x8626e4', 'uniqueId': '0x6ff3b5cd015a5fe2a48ded2048fd14463e6f48a241b43ac5b66cd6f6fe09c1ee:log:0', 'hash': '0x6ff3b5cd015a5fe2a48ded2048fd14463e6f48a241b43ac5b66cd6f6fe09c1ee', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 504000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6ab9e50e1d8e4b000000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:09:05.000Z'}}, {'blockNum': '0x8626e5', 'uniqueId': '0x86465cb8a576f6aeddd8d6f1e8ba4ffe5c3e9cffc66ab10023696d8738d9bd42:log:0', 'hash': '0x86465cb8a576f6aeddd8d6f1e8ba4ffe5c3e9cffc66ab10023696d8738d9bd42', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 49460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a793b628db064500000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:09:21.000Z'}}, {'blockNum': '0x8626e5', 'uniqueId': '0xe98ee7d0c887ef17b2fb9b38d6bbfd7f402a7726cd6d20a61b255fc32159217b:log:28', 'hash': '0xe98ee7d0c887ef17b2fb9b38d6bbfd7f402a7726cd6d20a61b255fc32159217b', 'from': '0x9a01f038be36b3d4dbf545251a591ab91ec28e33', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 22101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x04ae18fd03e22c340000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:09:21.000Z'}}, {'blockNum': '0x8626f2', 'uniqueId': '0xf1ac0715c001748d367e86d134804b71c8c844a28bc935f53a03063dc73cdf4b:log:0', 'hash': '0xf1ac0715c001748d367e86d134804b71c8c844a28bc935f53a03063dc73cdf4b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 506000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6b2650a1791a08400000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:11:21.000Z'}}, {'blockNum': '0x8626f4', 'uniqueId': '0x3f82413140f5507b273553638c1d0eb97c59fcf99c62478103ecc1afecd607ee:log:123', 'hash': '0x3f82413140f5507b273553638c1d0eb97c59fcf99c62478103ecc1afecd607ee', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1531.20195855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x5301b224a543265c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:12:04.000Z'}}, {'blockNum': '0x8626f4', 'uniqueId': '0xc7f7970ed9b9eb7d4153b9107c4a1a44ea49053c41a78e8e8955d13e698c5add:log:128', 'hash': '0xc7f7970ed9b9eb7d4153b9107c4a1a44ea49053c41a78e8e8955d13e698c5add', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a24d3ab5b07511c0000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:12:04.000Z'}}, {'blockNum': '0x86271f', 'uniqueId': '0x7434c34ebbacadf1f91098310d0a9a82f3cc42ec9b28ba3650a7aaeebb68408f:log:76', 'hash': '0x7434c34ebbacadf1f91098310d0a9a82f3cc42ec9b28ba3650a7aaeebb68408f', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1010000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd5e035af96a853400000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:22:00.000Z'}}, {'blockNum': '0x86271f', 'uniqueId': '0xc86f3ed017159d2fe2996b4214d53dbdb2afac43c2c8ed85685da9e7828d980b:log:77', 'hash': '0xc86f3ed017159d2fe2996b4214d53dbdb2afac43c2c8ed85685da9e7828d980b', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 139292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1d7f08d1bf5acef00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:22:00.000Z'}}, {'blockNum': '0x86271f', 'uniqueId': '0x5049c7b0b2b2af9574626ba21f04be7fd952a4d54ab3ab96a052d01122507553:log:81', 'hash': '0x5049c7b0b2b2af9574626ba21f04be7fd952a4d54ab3ab96a052d01122507553', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a793b628db064500000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:22:00.000Z'}}, {'blockNum': '0x862c74', 'uniqueId': '0x1096fc9069e9c09b21787766fc38e0c10a64b5da57ea1d8a679f19198f83f821:log:5', 'hash': '0x1096fc9069e9c09b21787766fc38e0c10a64b5da57ea1d8a679f19198f83f821', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 221284.9541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x2edbe1a35803ff434000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:28:15.000Z'}}, {'blockNum': '0x862c92', 'uniqueId': '0xbe7163de5d14a23171f632f009351a3cb19e01b3322549afb7f67b36676eb406:log:7', 'hash': '0xbe7163de5d14a23171f632f009351a3cb19e01b3322549afb7f67b36676eb406', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4937e685e4581e9155e671658caf5c5ea9184192', 'value': 89912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x130a23a849ceb9e00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:34:39.000Z'}}, {'blockNum': '0x862cb8', 'uniqueId': '0x66390bc48df5ecfae489003b1303b49d143b7735f91732c6c9e7eb29bb7c420e:log:4', 'hash': '0x66390bc48df5ecfae489003b1303b49d143b7735f91732c6c9e7eb29bb7c420e', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 221284.9541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x2edbe1a35803ff434000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:43:31.000Z'}}, {'blockNum': '0x862cb8', 'uniqueId': '0x1748953625b6e8d7ee91e0294325ff1349c80ceec004f778c9843175782d2643:log:10', 'hash': '0x1748953625b6e8d7ee91e0294325ff1349c80ceec004f778c9843175782d2643', 'from': '0x4937e685e4581e9155e671658caf5c5ea9184192', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 89912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x130a23a849ceb9e00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:43:31.000Z'}}, {'blockNum': '0x862d22', 'uniqueId': '0x3a56f306db8fcf3d0b553a1404316d251c2d08248e2f5e213073ef2dab0420bd:log:6', 'hash': '0x3a56f306db8fcf3d0b553a1404316d251c2d08248e2f5e213073ef2dab0420bd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 774450.27333875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xa3ff088fa4306ea16c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:05:58.000Z'}}, {'blockNum': '0x862d22', 'uniqueId': '0x198e4a0406fbfaa721cc1f8d5dbef504b543d9264db269e89e6d5253a56ff797:log:9', 'hash': '0x198e4a0406fbfaa721cc1f8d5dbef504b543d9264db269e89e6d5253a56ff797', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 238915.7473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x3297a60b837843d24000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:05:58.000Z'}}, {'blockNum': '0x862d29', 'uniqueId': '0x2c9dee7a50ac323adbbe645877231a845d15cac1c1dc0f495d47c003e70a7978:log:3', 'hash': '0x2c9dee7a50ac323adbbe645877231a845d15cac1c1dc0f495d47c003e70a7978', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1358975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x011fc62eafa5dd7a9c0000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:07:55.000Z'}}, {'blockNum': '0x862d2e', 'uniqueId': '0x781779db5b7fb324137a5cf6f6d53034193de2de437c3ecdcdafbb8b40eb8b78:log:2', 'hash': '0x781779db5b7fb324137a5cf6f6d53034193de2de437c3ecdcdafbb8b40eb8b78', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'value': 1000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c261325e6fe5f40000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:09:12.000Z'}}, {'blockNum': '0x862d5b', 'uniqueId': '0x3289f871c73957cba879fc98fe53a754420033769aea8ac8c68568c0ed305dce:log:5', 'hash': '0x3289f871c73957cba879fc98fe53a754420033769aea8ac8c68568c0ed305dce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c261325e6fe5f40000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:19:10.000Z'}}, {'blockNum': '0x862d83', 'uniqueId': '0xa8136deb40bddb48b3db09b2d11d4b11d1503d5aab4acb55a6c333d6f1789c3b:log:13', 'hash': '0xa8136deb40bddb48b3db09b2d11d4b11d1503d5aab4acb55a6c333d6f1789c3b', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 774450.27333875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xa3ff088fa4306ea16c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:29:06.000Z'}}, {'blockNum': '0x862d83', 'uniqueId': '0xea4cf1c6f61c414be6f5e41272f77324d1a1eaaca1b724dc11809eac263fa614:log:15', 'hash': '0xea4cf1c6f61c414be6f5e41272f77324d1a1eaaca1b724dc11809eac263fa614', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 238915.7473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x3297a60b837843d24000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:29:06.000Z'}}, {'blockNum': '0x862d83', 'uniqueId': '0x1863cc30c56db14946dbff39888f770f8538fdc6d6379685318299ef623c17aa:log:19', 'hash': '0x1863cc30c56db14946dbff39888f770f8538fdc6d6379685318299ef623c17aa', 'from': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c261325e6fe5f40000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:29:06.000Z'}}, {'blockNum': '0x862de9', 'uniqueId': '0xd27a2e07b96f47a0686bff22c53240c4f112ebd6bce61ab348bf2aedb7ceb510:log:3', 'hash': '0xd27a2e07b96f47a0686bff22c53240c4f112ebd6bce61ab348bf2aedb7ceb510', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 153042.3218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x206870de1820a4c08000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:50:15.000Z'}}, {'blockNum': '0x862e18', 'uniqueId': '0xdeeccefcc84814b2cd0aa911fc9fb076cfdbe580504d904f4c8a9ad162ff7a7c:log:94', 'hash': '0xdeeccefcc84814b2cd0aa911fc9fb076cfdbe580504d904f4c8a9ad162ff7a7c', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 153042.3218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x206870de1820a4c08000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T01:02:14.000Z'}}, {'blockNum': '0x8630c0', 'uniqueId': '0x73ca417b71f70d161be3f10d474fca4b88c02145533ce178957753e202997b1f:log:2', 'hash': '0x73ca417b71f70d161be3f10d474fca4b88c02145533ce178957753e202997b1f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'value': 1000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c25351a7bc3e900000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:29:23.000Z'}}, {'blockNum': '0x8630eb', 'uniqueId': '0xb1c224ab48f869605cf32b71775479a92b8c162a1c7eeeba53031713d3f323f5:log:59', 'hash': '0xb1c224ab48f869605cf32b71775479a92b8c162a1c7eeeba53031713d3f323f5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1484376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x013a542f27aee462600000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:37:03.000Z'}}, {'blockNum': '0x86310c', 'uniqueId': '0xccc1a9b5a303790c44d6269388e3d385c856f9957edad8d3839fca0711f0d5af:log:0', 'hash': '0xccc1a9b5a303790c44d6269388e3d385c856f9957edad8d3839fca0711f0d5af', 'from': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c25351a7bc3e900000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:43:37.000Z'}}, {'blockNum': '0x863143', 'uniqueId': '0x9828ab8a4be0bd2acb814938023f0cd6d0d7e6233a48828d5866b56731b51415:log:14', 'hash': '0x9828ab8a4be0bd2acb814938023f0cd6d0d7e6233a48828d5866b56731b51415', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 776113.00005859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xa4592b879a6144472c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:54:11.000Z'}}, {'blockNum': '0x863143', 'uniqueId': '0x483a1ffca1057b1fba15a05281d8d4a86147f5b0281b7bc504b353310223b5b1:log:15', 'hash': '0x483a1ffca1057b1fba15a05281d8d4a86147f5b0281b7bc504b353310223b5b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 152953.3218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x20639dbe93ab72fc8000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:54:11.000Z'}}]}}
Number of returned transfers:  48
Answer is complete
 
symbol             NAV
group              MPG
date        2020-01-16
hour             19:00
exchange       binance
Name: 509, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2020-01-16 19:00:00 2020-01-16 07:00:00 2020-01-17 07:00:00
Unix timestamps:  1579154400.0 1579240800.0
Hex Block Numbers:  0x8dc2cc 0x8ddc4f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           SNGLS
group              MPG
date        2020-03-08
hour             18:59
exchange       binance
Name: 510, dtype: object
HERE
 Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps:  2020-03-08 18:59:00 2020-03-08 06:59:00 2020-03-09 06:59:00
Unix timestamps:  1583647140.0 1583733540.0
Hex Block Numbers:  0x92ed76 0x9306ca
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x92fb6a', 'uniqueId': '0x9c9c89914d37383994eb348c182ed8a4033376e669f07f3f345097aba978e620:log:10', 'hash': '0x9c9c89914d37383994eb348c182ed8a4033376e669f07f3f345097aba978e620', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 94961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0172f1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-03-08T19:16:30.000Z'}}, {'blockNum': '0x92fb9f', 'uniqueId': '0x989d08025983a63b5c17f4f5f9f6d3e837b2ac92c647ec0b0c1dbbba2f61be05:log:1', 'hash': '0x989d08025983a63b5c17f4f5f9f6d3e837b2ac92c647ec0b0c1dbbba2f61be05', 'from': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0172f1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-03-08T19:29:11.000Z'}}, {'blockNum': '0x9304ea', 'uniqueId': '0x1fafd90a33530d41c22af7233704b1031dbb0d76ce1718d5036ef5976c373edd:log:9', 'hash': '0x1fafd90a33530d41c22af7233704b1031dbb0d76ce1718d5036ef5976c373edd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x896bafa0d6d455fa1b7ca5c080da601638759d31', 'value': 113029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01b985', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-03-09T04:15:09.000Z'}}]}}
Number of returned transfers:  3
Answer is complete
 
symbol             VIA
group              MPG
date        2020-05-29
hour             15:59
exchange       binance
Name: 511, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2020-05-29 15:59:00 2020-05-29 03:59:00 2020-05-30 03:59:00
Unix timestamps:  1590717540.0 1590803940.0
Hex Block Numbers:  0x9aff28 0x9b1859
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            CTXC
group              MPG
date        2020-06-03
hour             16:00
exchange       binance
Name: 512, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CTXC, Contract: 
Datetime timestamps:  2020-06-03 16:00:00 2020-06-03 04:00:00 2020-06-04 04:00:00
Unix timestamps:  1591149600.0 1591236000.0
Hex Block Numbers:  0x9b7cf3 0x9b960d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIA
group              MPG
date        2020-06-10
hour             15:59
exchange       binance
Name: 513, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2020-06-10 15:59:00 2020-06-10 03:59:00 2020-06-11 03:59:00
Unix timestamps:  1591754340.0 1591840740.0
Hex Block Numbers:  0x9c2d1b 0x9c4622
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GXS
group              MPG
date        2020-06-15
hour             16:00
exchange       binance
Name: 514, dtype: object
HERE
 Symbol: GXS, Contract: 
Datetime timestamps:  2020-06-15 16:00:00 2020-06-15 04:00:00 2020-06-16 04:00:00
Unix timestamps:  1592186400.0 1592272800.0
Hex Block Numbers:  0x9cab7f 0x9cc4e9
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            APPC
group              MPG
date        2020-11-04
hour             17:00
exchange       binance
Name: 515, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2020-11-04 17:00:00 2020-11-04 05:00:00 2020-11-05 05:00:00
Unix timestamps:  1604462400.0 1604548800.0
Hex Block Numbers:  0xaab8ab 0xaad22a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaab95d', 'uniqueId': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec:log:133', 'hash': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec', 'from': '0x330a72b49e06256bfe20a765f77d816a422b00a7', 'to': '0x47fef156fa29ae4ecb47e0c675eb4f9c55055d6a', 'value': 2758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x9582f0537d5f580000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T04:37:47.000Z'}}, {'blockNum': '0xaaba2a', 'uniqueId': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0:log:20', 'hash': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1375.65880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a9319d9778d99e000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:19:59.000Z'}}, {'blockNum': '0xaaba31', 'uniqueId': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc:log:90', 'hash': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x40abb42d126d918f6aa47e473fb8521d675529ca', 'value': 1329.15880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x480dc8a9d5a5efe000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:21:25.000Z'}}, {'blockNum': '0xaaba87', 'uniqueId': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653:log:3', 'hash': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653', 'from': '0xae5f5e76a6f539d69c1a3a8657b0d294fa59a883', 'to': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:38:41.000Z'}}, {'blockNum': '0xaaba8c', 'uniqueId': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3:log:133', 'hash': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3', 'from': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:40:40.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:98', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 128.9440879163896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06fd756cc8ef244638', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:99', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 15.169892696045837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xd2864908949adb15', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:100', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 7.5849463480229184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x694324844a4d6d8a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabc4d', 'uniqueId': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda:log:17', 'hash': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda', 'from': '0xbb9fb488edef50ec8ecc82b191703b5fb32393e2', 'to': '0x9553c0540ac0f923522849d6c603029b3d4e3cae', 'value': 640.58597771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x22b9ea90c1dcd8cc00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T07:28:10.000Z'}}, {'blockNum': '0xaac444', 'uniqueId': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0:log:37', 'hash': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x312b274e820f4c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:02:30.000Z'}}, {'blockNum': '0xaac463', 'uniqueId': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8:log:18', 'hash': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 58885.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0c7831392df6b2850000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:11:40.000Z'}}, {'blockNum': '0xaac49d', 'uniqueId': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39:log:84', 'hash': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39', 'from': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 59792.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ca95c607c78c1d10000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:24:24.000Z'}}, {'blockNum': '0xaac66c', 'uniqueId': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4:log:28', 'hash': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 127318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1af5ec3028535f980000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:01:47.000Z'}}, {'blockNum': '0xaac6ac', 'uniqueId': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a:log:47', 'hash': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 10442.71900933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x023619d6ab16cdbf7400', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:13:22.000Z'}}, {'blockNum': '0xaac6d0', 'uniqueId': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6:log:44', 'hash': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 34655.58244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0756aed1c808f1168000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:21:45.000Z'}}, {'blockNum': '0xaac6d3', 'uniqueId': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d:log:184', 'hash': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:22:49.000Z'}}, {'blockNum': '0xaac6ee', 'uniqueId': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20:log:44', 'hash': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:33.000Z'}}, {'blockNum': '0xaac6ef', 'uniqueId': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378:log:151', 'hash': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 349455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x49fffe56a00f02dc0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:35.000Z'}}, {'blockNum': '0xaac70b', 'uniqueId': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330:log:22', 'hash': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 124764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1a6b78516bff63f00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:34:24.000Z'}}, {'blockNum': '0xaac713', 'uniqueId': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a:log:106', 'hash': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:35:51.000Z'}}, {'blockNum': '0xaac734', 'uniqueId': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c:log:105', 'hash': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:42:34.000Z'}}, {'blockNum': '0xaac757', 'uniqueId': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4:log:297', 'hash': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:50:27.000Z'}}, {'blockNum': '0xaac764', 'uniqueId': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc:log:65', 'hash': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 298607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x3f3b84957c4f0c5c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:53:15.000Z'}}, {'blockNum': '0xaac78f', 'uniqueId': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd:log:125', 'hash': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:05:17.000Z'}}, {'blockNum': '0xaac7b3', 'uniqueId': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03:log:133', 'hash': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:13:18.000Z'}}, {'blockNum': '0xaac7d5', 'uniqueId': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80:log:98', 'hash': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80', 'from': '0x62d5f2ec17bd962f6c1a7939a672b69460c320f4', 'to': '0x3eab04cb1eedb641875e60c7f151c4188bbcf72e', 'value': 126.362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06d9a0018163e90000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:19:24.000Z'}}, {'blockNum': '0xaac7f7', 'uniqueId': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50:log:22', 'hash': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:26:37.000Z'}}, {'blockNum': '0xaac81b', 'uniqueId': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d:log:71', 'hash': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:34:25.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6:log:242', 'hash': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6', 'from': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 15903.8301648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x035e25faf8c836248000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c:log:243', 'hash': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c', 'from': '0x1df69368c49492c7aa0da26e14d95154f9998da6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 37725.9786619995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07fd212070497e84aa89', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac885', 'uniqueId': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7:log:72', 'hash': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 54279.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b7e7c9b95f17c5a0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:58:29.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec:log:97', 'hash': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 25033.519009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x054d11dd696ad9bf1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1:log:111', 'hash': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 27552.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x05d5a3e9730256d00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac8b4', 'uniqueId': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d:log:35', 'hash': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:08:37.000Z'}}, {'blockNum': '0xaac8c2', 'uniqueId': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec:log:221', 'hash': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 52586.319009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b22b5c6dc6d308f1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:12:08.000Z'}}, {'blockNum': '0xaac8d7', 'uniqueId': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15:log:201', 'hash': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:18:03.000Z'}}, {'blockNum': '0xaac91c', 'uniqueId': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82:log:6', 'hash': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2046.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6ef0e48b2da4ea0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:34:47.000Z'}}, {'blockNum': '0xaac996', 'uniqueId': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269:log:148', 'hash': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf9f7b61ac292e4899a3fae2164133fb02e82471e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:00:15.000Z'}}, {'blockNum': '0xaac99d', 'uniqueId': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff:log:34', 'hash': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 52468.707209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b1c5595cf75e6459000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:01:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:180', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:181', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:182', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:51', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:52', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:53', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:163', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:164', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:165', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:171', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:172', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:173', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaace35', 'uniqueId': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4:log:46', 'hash': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 2511.9109267687422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x882bc44f38c1200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T00:17:01.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf:log:117', 'hash': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf', 'from': '0x652807251031638120c9498a38c8773ee87bdf9b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 252082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x356164819452c3880000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0:log:166', 'hash': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0', 'from': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 349456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a000c3756c2aa400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}]}}
Number of returned transfers:  54
Answer is complete
 
symbol            IDEX
group              MPG
date        2020-12-31
hour             17:00
exchange       binance
Name: 516, dtype: object
HERE
 Symbol: IDEX, Contract: 0xb705268213d593b8fd88d3fdeff93aff5cbdcfae
Datetime timestamps:  2020-12-31 17:00:00 2020-12-31 05:00:00 2021-01-01 05:00:00
Unix timestamps:  1609387200.0 1609473600.0
Hex Block Numbers:  0xb062b6 0xb07c45
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb064be', 'uniqueId': '0xf6f88ecc5db86d5cc957b546aa2d11c8ed8319c0f466890231b5861e3b7e4477:log:153', 'hash': '0xf6f88ecc5db86d5cc957b546aa2d11c8ed8319c0f466890231b5861e3b7e4477', 'from': '0x8645fb015e160c3f9c085c2f2a57065d7321afc3', 'to': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'value': 197119.9880523943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x29bde55deb320e427f0f', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T05:55:11.000Z'}}, {'blockNum': '0xb06500', 'uniqueId': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6:log:228', 'hash': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T06:14:04.000Z'}}, {'blockNum': '0xb06500', 'uniqueId': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6:log:233', 'hash': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T06:14:04.000Z'}}, {'blockNum': '0xb06670', 'uniqueId': '0x716b0f3533b84222302943eab7cccf09c99dd2db2933e2a0197866328b1d0802:log:89', 'hash': '0x716b0f3533b84222302943eab7cccf09c99dd2db2933e2a0197866328b1d0802', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 69831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ec98bcce7815ebc0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T07:35:28.000Z'}}, {'blockNum': '0xb0674e', 'uniqueId': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc:log:62', 'hash': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 32150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06cedae0c5ffe8980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:25:30.000Z'}}, {'blockNum': '0xb0674e', 'uniqueId': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc:log:67', 'hash': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 32150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06cedae0c5ffe8980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:25:30.000Z'}}, {'blockNum': '0xb06773', 'uniqueId': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883:log:252', 'hash': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:32:44.000Z'}}, {'blockNum': '0xb06773', 'uniqueId': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883:log:253', 'hash': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x6632eda2685eabfb7b3b45669cfa5441349485d3', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:32:44.000Z'}}, {'blockNum': '0xb0677d', 'uniqueId': '0xbacb5695f9be72ac8c2c8cfd048fec0b6d5f02f43b3ef98f406e622880494b3f:log:319', 'hash': '0xbacb5695f9be72ac8c2c8cfd048fec0b6d5f02f43b3ef98f406e622880494b3f', 'from': '0x6632eda2685eabfb7b3b45669cfa5441349485d3', 'to': '0xdd4c4ad3dff94841bd8b9020a2238e2864fc1a22', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:35:02.000Z'}}, {'blockNum': '0xb06806', 'uniqueId': '0x061b54e2c575b5e2d839dbcc6dd46053e0a53886ca6732213d534af8217ac4aa:log:49', 'hash': '0x061b54e2c575b5e2d839dbcc6dd46053e0a53886ca6732213d534af8217ac4aa', 'from': '0xdd4c4ad3dff94841bd8b9020a2238e2864fc1a22', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T09:00:32.000Z'}}, {'blockNum': '0xb06a70', 'uniqueId': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71:log:90', 'hash': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71', 'from': '0x8b91c0dd24c4fd4f973e49ed8568921e31cf38b7', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T11:13:54.000Z'}}, {'blockNum': '0xb06a70', 'uniqueId': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71:log:95', 'hash': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T11:13:54.000Z'}}, {'blockNum': '0xb06bd3', 'uniqueId': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a:log:208', 'hash': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:28:09.000Z'}}, {'blockNum': '0xb06bd3', 'uniqueId': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a:log:209', 'hash': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xccc18ec56dcefec8c39ea8022a099798e31e5264', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:28:09.000Z'}}, {'blockNum': '0xb06bd9', 'uniqueId': '0xcb49191614cc10f05cea4d85da79ae734f291c33036bceeb0463b680fa4d5cf0:log:175', 'hash': '0xcb49191614cc10f05cea4d85da79ae734f291c33036bceeb0463b680fa4d5cf0', 'from': '0xccc18ec56dcefec8c39ea8022a099798e31e5264', 'to': '0x9ea39651739f6c025d0770695a822b7187605f42', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:29:37.000Z'}}, {'blockNum': '0xb06c72', 'uniqueId': '0xc5cc9e8ee1a15fdd662718843b23419e8a9fcdbb7e28cb766431a25a10d7b4fe:log:46', 'hash': '0xc5cc9e8ee1a15fdd662718843b23419e8a9fcdbb7e28cb766431a25a10d7b4fe', 'from': '0x9ea39651739f6c025d0770695a822b7187605f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:01:19.000Z'}}, {'blockNum': '0xb06c76', 'uniqueId': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97:log:144', 'hash': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:02:03.000Z'}}, {'blockNum': '0xb06c76', 'uniqueId': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97:log:145', 'hash': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x6521a235cb318948a40c27c60f4e5d637998fe08', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:02:03.000Z'}}, {'blockNum': '0xb06c80', 'uniqueId': '0xbc952c6ccc2728f471560576958bab591891284e872d685e98cb2d282c6b9322:log:198', 'hash': '0xbc952c6ccc2728f471560576958bab591891284e872d685e98cb2d282c6b9322', 'from': '0x6521a235cb318948a40c27c60f4e5d637998fe08', 'to': '0x7594530b7d298c28de863010f0ff25e15aef9ccf', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:04:08.000Z'}}, {'blockNum': '0xb06cf4', 'uniqueId': '0xa849f6e941a05933f6991b1b3fe817e9c74ce49c92201fc9482c0eeb64d89e1a:log:32', 'hash': '0xa849f6e941a05933f6991b1b3fe817e9c74ce49c92201fc9482c0eeb64d89e1a', 'from': '0x7594530b7d298c28de863010f0ff25e15aef9ccf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:30:30.000Z'}}, {'blockNum': '0xb06d17', 'uniqueId': '0x8bd9f421ea52c659ab3bd69ffe01f7734b58b50e29c2eea44962988dbc4cd8eb:log:29', 'hash': '0x8bd9f421ea52c659ab3bd69ffe01f7734b58b50e29c2eea44962988dbc4cd8eb', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 41984.80376968497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08e40032a7812a1770eb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:40:42.000Z'}}, {'blockNum': '0xb06d95', 'uniqueId': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc:log:179', 'hash': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 20954.836775318676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x046ff6c73fab39b7ca10', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T14:07:48.000Z'}}, {'blockNum': '0xb06d95', 'uniqueId': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc:log:180', 'hash': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 20954.8359520322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x046ff6c452e4e7c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T14:07:48.000Z'}}, {'blockNum': '0xb06f67', 'uniqueId': '0x0d3d3f167e21dfcb07398c592d58bbc9dcef6a642703c29e30facedd43313cd8:log:233', 'hash': '0x0d3d3f167e21dfcb07398c592d58bbc9dcef6a642703c29e30facedd43313cd8', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T15:51:03.000Z'}}, {'blockNum': '0xb06f83', 'uniqueId': '0xe35a04ecfe7d87e1168f8d110b781d3f701dd3b655ecdbefd62ddf1bbd5376e0:log:60', 'hash': '0xe35a04ecfe7d87e1168f8d110b781d3f701dd3b655ecdbefd62ddf1bbd5376e0', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:00:38.000Z'}}, {'blockNum': '0xb07076', 'uniqueId': '0x7fc1b3ecd48c0ba53f47197ff0d4eb89b8885d650c8b7eb3e74c88da066ead1e:log:88', 'hash': '0x7fc1b3ecd48c0ba53f47197ff0d4eb89b8885d650c8b7eb3e74c88da066ead1e', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 32843.69407889556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06f475d137680a7d8339', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:30.000Z'}}, {'blockNum': '0xb07078', 'uniqueId': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc:log:94', 'hash': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 25732.384259344133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0572f4918bdbcc3dad48', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:59.000Z'}}, {'blockNum': '0xb07078', 'uniqueId': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc:log:95', 'hash': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 25732.383010734346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0572f48d1c412d800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:59.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0xde064d44427b04772fbc6242f25c0d690dc91d8f356c7fc97607b4b563f7b1fd:log:7', 'hash': '0xde064d44427b04772fbc6242f25c0d690dc91d8f356c7fc97607b4b563f7b1fd', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 45336.95216870385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0999b89a1ff80484e7ac', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa:log:14', 'hash': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 35552.304501192295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07874b5683a6f815d8f1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa:log:15', 'hash': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 35552.304501192295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07874b5683a6f815d8f1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb07083', 'uniqueId': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d:log:309', 'hash': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:25.000Z'}}, {'blockNum': '0xb07083', 'uniqueId': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d:log:310', 'hash': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:25.000Z'}}, {'blockNum': '0xb07085', 'uniqueId': '0xb7b24216f8194d799b442930e5d157a9e50bef165c9641c4d1f84595a182983b:log:143', 'hash': '0xb7b24216f8194d799b442930e5d157a9e50bef165c9641c4d1f84595a182983b', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:35.000Z'}}, {'blockNum': '0xb07088', 'uniqueId': '0x2eb8e3627eddd10d74f1f4da15d9d9c0ae14d03552a3f37b4d27ee7c6b44dce4:log:61', 'hash': '0x2eb8e3627eddd10d74f1f4da15d9d9c0ae14d03552a3f37b4d27ee7c6b44dce4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 12499.909064288897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a59f15ea9d39290f9d', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:56:20.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081:log:7', 'hash': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 374743.80349516025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcb91564dc0a4c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081:log:8', 'hash': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 374743.80349516025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcb91564dc0a4c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210:log:11', 'hash': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xfe7f0897239ce9cc6645d9323e6fe428591b821c', 'value': 78979.55866239427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x10b97d8e67cfcf57e8fd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210:log:17', 'hash': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210', 'from': '0xfe7f0897239ce9cc6645d9323e6fe428591b821c', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 78979.55866239427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x10b97d8e67cfcf57e8fd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xdfbd384ad1e0c29b856f35f18e7891887488e9d84bccbb8b22a25ae7db398a22:log:72', 'hash': '0xdfbd384ad1e0c29b856f35f18e7891887488e9d84bccbb8b22a25ae7db398a22', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 11179.942543947493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x025e10decdd89344a4bd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xaa89b82a4783e661e56df4ceaf1f9ef6d90e9d9b538e53d3eb3c465fdbd50dc1:log:185', 'hash': '0xaa89b82a4783e661e56df4ceaf1f9ef6d90e9d9b538e53d3eb3c465fdbd50dc1', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 27790.868296863675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05e28bc5f1aab04ac588', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xf01029d76553f7294f294c02ee8aa8c7693b9356681d1ead15f845ab381eeae4:log:16', 'hash': '0xf01029d76553f7294f294c02ee8aa8c7693b9356681d1ead15f845ab381eeae4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x97f0b8d84194f1b1c57655e0dcc8ee6af1d6248d', 'value': 18207.23707430216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03db042c35005ea598a4', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09:log:23', 'hash': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 26178.254195504018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x058b2041c479d0481c04', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09:log:24', 'hash': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 26178.25286121645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x058b203d06f2c7c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0x2acd2f5eacfe3edd1cd924fe44a5b1edd08807e86eb24bd79854e563a07267f4:log:84', 'hash': '0x2acd2f5eacfe3edd1cd924fe44a5b1edd08807e86eb24bd79854e563a07267f4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 88444.99698166132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x12ba9ce69924c2542f8e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b:log:91', 'hash': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'value': 101702.17356914104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1589492f33ecace102dc', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b:log:92', 'hash': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b', 'from': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 101702.17356914104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1589492f33ecace102dc', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0x78a18ccccee32349fa5453e5e4113813e9ffdaadffdb99395b4079ec41d3291e:log:335', 'hash': '0x78a18ccccee32349fa5453e5e4113813e9ffdaadffdb99395b4079ec41d3291e', 'from': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07098', 'uniqueId': '0x48583e3f53f32a87c8462e2bddedd9939e2c96821671c3f2865432c7a1bc3401:log:142', 'hash': '0x48583e3f53f32a87c8462e2bddedd9939e2c96821671c3f2865432c7a1bc3401', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x639fc46a3cd1c1deff7f123f651350712e8e2b5a', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:51.000Z'}}, {'blockNum': '0xb07099', 'uniqueId': '0x5902cb2c417688c449b2c9312b5405f2945148c848199ab506c15bae905a69e3:log:0', 'hash': '0x5902cb2c417688c449b2c9312b5405f2945148c848199ab506c15bae905a69e3', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 374743.8035042302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcc1552afcd64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:17.000Z'}}, {'blockNum': '0xb0709b', 'uniqueId': '0x535754ca07b45c5a28e5852ba3f3971698d3cc9ad021655d39b0675d528fb616:log:1', 'hash': '0x535754ca07b45c5a28e5852ba3f3971698d3cc9ad021655d39b0675d528fb616', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:40.000Z'}}, {'blockNum': '0xb0709b', 'uniqueId': '0xab3acf638f62a5166e4c4f294ad8da3292a1371dbb943654f2409c855d0d4f4b:log:56', 'hash': '0xab3acf638f62a5166e4c4f294ad8da3292a1371dbb943654f2409c855d0d4f4b', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 11830.020825450492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02814e84ce9c51ff432d', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:40.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x746ef6db20e3e1e4ef660e790053757afb1a7e5d7e2e71e489ab6bc0403bd1f3:log:11', 'hash': '0x746ef6db20e3e1e4ef660e790053757afb1a7e5d7e2e71e489ab6bc0403bd1f3', 'from': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c:log:305', 'hash': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 21507.8676843016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x048df19fb94e342f2641', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c:log:306', 'hash': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 21507.866779279437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x048df19c82314fc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709d', 'uniqueId': '0xe5b6e409159c9a547c63bf05ff540769de7122be00fb63802ec6d9b3d5977392:log:17', 'hash': '0xe5b6e409159c9a547c63bf05ff540769de7122be00fb63802ec6d9b3d5977392', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x61fd0d043d519f5a2bd05785000f30db96809429', 'value': 16638.047790046825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e471f3a1f7', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:00.000Z'}}, {'blockNum': '0xb0709d', 'uniqueId': '0x50b7ab79dd533e1d7c0fa5af577b83cbaecbd7704d5a7402342ab09b8972dc9b:log:264', 'hash': '0x50b7ab79dd533e1d7c0fa5af577b83cbaecbd7704d5a7402342ab09b8972dc9b', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xb4fee33a0edef5a7fb0da42a9b8fe3b4f73dfb8b', 'value': 22863.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d773f85871ae58a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:00.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x70f520061e1187cfb90a9efa3fb4ff0423d747460fc7376351aab05a69a33a46:log:43', 'hash': '0x70f520061e1187cfb90a9efa3fb4ff0423d747460fc7376351aab05a69a33a46', 'from': '0x639fc46a3cd1c1deff7f123f651350712e8e2b5a', 'to': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880:log:160', 'hash': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880:log:161', 'hash': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x78b566c3611eb6de644439ad72f1755b859499fb', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3:log:164', 'hash': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 38478.786317350125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0825f06e7e48573c4117', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3:log:170', 'hash': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 38478.786317350125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0825f06e7e48573c4117', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb070a1', 'uniqueId': '0x6d1d097e7747a19c77855d4463ec4012328ce1554958086d96366f0f59af38b6:log:19', 'hash': '0x6d1d097e7747a19c77855d4463ec4012328ce1554958086d96366f0f59af38b6', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 59036.44045169382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c805f318a5937d6d141', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:04.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:242', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 47331.97522324073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a05df1bd1fc266ccf54', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:249', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 96595.32833061428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1474717844b5cab574e8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:250', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:252', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0xfe744aef67324ccb15819206c3d91f2e58d53e4e', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598:log:265', 'hash': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'value': 41615.53925688159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cffb9f918e9ec99265', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598:log:266', 'hash': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598', 'from': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 41615.53925688159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cffb9f918e9ec99265', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x3c82755756bb035bcdc3f6ab445f79153beee4b0017d0257d539f75943f1af80:log:22', 'hash': '0x3c82755756bb035bcdc3f6ab445f79153beee4b0017d0257d539f75943f1af80', 'from': '0x61fd0d043d519f5a2bd05785000f30db96809429', 'to': '0x94b521f9ee971ac9b8f158ce6e25ff06d6b6c7df', 'value': 16638.0477900468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e470883400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29:log:239', 'hash': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29', 'from': '0xf81521e83369fd9b661b804ba342993b2bcef430', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 2333.156600233402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x7e7b0d5e519dfe3780', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29:log:241', 'hash': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 2333.1523688657467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x7e7afe55e98ffc0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a7', 'uniqueId': '0xf57e370cf999fdc57dd35f6e0a1b62802e08084bf2a0032794d686a277042f5b:log:34', 'hash': '0xf57e370cf999fdc57dd35f6e0a1b62802e08084bf2a0032794d686a277042f5b', 'from': '0x78b566c3611eb6de644439ad72f1755b859499fb', 'to': '0x2e4ba6698b2c6549ca554785adb6e58186aff6c6', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:11.000Z'}}, {'blockNum': '0xb070a7', 'uniqueId': '0x6e10470cf2c38062ae9eaea6d12612db91d162a236584540f066c25bcbc67c8b:log:38', 'hash': '0x6e10470cf2c38062ae9eaea6d12612db91d162a236584540f066c25bcbc67c8b', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 59036.44045169382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c805f318a5937d6d141', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:11.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x4a0cd84d82083dd03e26c398b233d4b0a2637342880dbb43e9121d66875d5125:log:61', 'hash': '0x4a0cd84d82083dd03e26c398b233d4b0a2637342880dbb43e9121d66875d5125', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 21978.707620276513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04a777d73475309e8ac1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67:log:68', 'hash': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 26286.437447768243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0590fd99e33b0fd9e109', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67:log:69', 'hash': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 26286.437447768243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0590fd99e33b0fd9e109', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0xb385af39dd61b0e1d3c3abea8ab107bb6ac1ce98a4468ad8a2e432ab9d1dcd05:log:95', 'hash': '0xb385af39dd61b0e1d3c3abea8ab107bb6ac1ce98a4468ad8a2e432ab9d1dcd05', 'from': '0xfe744aef67324ccb15819206c3d91f2e58d53e4e', 'to': '0xf6e8eb93a97aaaf8b16c82f50223045def46d196', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0xb33dcefaa82b528a18bf08836317b19e4c8c07c6371c95ac1c6d295b2eb9ca90:log:39', 'hash': '0xb33dcefaa82b528a18bf08836317b19e4c8c07c6371c95ac1c6d295b2eb9ca90', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 44125.16523853139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x095807ae1f4c9df105a5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e:log:46', 'hash': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 35447.41641643528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07819bb92e495eadec9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e:log:47', 'hash': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 35447.41641643528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07819bb92e495eadec9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0xca2cabd7bc5c07ae8316f92ff384f007adfeae874c659caa77aac6930489a9a9:log:132', 'hash': '0xca2cabd7bc5c07ae8316f92ff384f007adfeae874c659caa77aac6930489a9a9', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x6faa5a80097158dbe98ef3f0136586b3f2857052', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xa385162b082da58de8c72757f56931bceaa77d116d2b52058cba87da05d10caf:log:27', 'hash': '0xa385162b082da58de8c72757f56931bceaa77d116d2b52058cba87da05d10caf', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3:log:35', 'hash': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 32243.752777417754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06d3eff58c566c21cef5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3:log:36', 'hash': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 32243.752777417754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06d3eff58c566c21cef5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070b0', 'uniqueId': '0xe6781c705556ada8299e5e9494d935608a6a8050a6cdf9e2be1a7ae232b744fc:log:120', 'hash': '0xe6781c705556ada8299e5e9494d935608a6a8050a6cdf9e2be1a7ae232b744fc', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:09.000Z'}}, {'blockNum': '0xb070b1', 'uniqueId': '0x0bbd25e0aa999cd6b65e8fc0dc983714db103a097226f7cae3a6233059b724be:log:35', 'hash': '0x0bbd25e0aa999cd6b65e8fc0dc983714db103a097226f7cae3a6233059b724be', 'from': '0x6faa5a80097158dbe98ef3f0136586b3f2857052', 'to': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:43.000Z'}}, {'blockNum': '0xb070b1', 'uniqueId': '0x816479eba873edbe7180415bfda935d7cf0f05fcd5ed8b10f01b779708d99cc8:log:192', 'hash': '0x816479eba873edbe7180415bfda935d7cf0f05fcd5ed8b10f01b779708d99cc8', 'from': '0x94b521f9ee971ac9b8f158ce6e25ff06d6b6c7df', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 16638.0477900468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e470883400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:43.000Z'}}, {'blockNum': '0xb070b2', 'uniqueId': '0x1c1cc36598e967a0e2cc2a7c8bdb337e917c75060fd205aab72c61e36e511949:log:25', 'hash': '0x1c1cc36598e967a0e2cc2a7c8bdb337e917c75060fd205aab72c61e36e511949', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:56.000Z'}}, {'blockNum': '0xb070bc', 'uniqueId': '0x5edd02b6e35e9d33c65b5929e14da80dc574d71fecd59889d22d21bdbb424642:log:151', 'hash': '0x5edd02b6e35e9d33c65b5929e14da80dc574d71fecd59889d22d21bdbb424642', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0xd5d21b9232ab1e6c7622bf2375f0365bc3a6b10d', 'value': 45817.84679395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b3ca5b09bdc3f72c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:10:14.000Z'}}, {'blockNum': '0xb070bd', 'uniqueId': '0xf132bfabeb777ea76a0ce1d5ee118deb2ab06a0ac845ed8ef5ffb6a954fa1ff8:log:283', 'hash': '0xf132bfabeb777ea76a0ce1d5ee118deb2ab06a0ac845ed8ef5ffb6a954fa1ff8', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:10:51.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x94f032c67307de4061954fdd45dedb35030be7ce988acd11510c79e804539a53:log:316', 'hash': '0x94f032c67307de4061954fdd45dedb35030be7ce988acd11510c79e804539a53', 'from': '0xd5d21b9232ab1e6c7622bf2375f0365bc3a6b10d', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 45817.84679395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b3ca5b09bdc3f72c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2:log:324', 'hash': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'value': 41604.26901791843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cf5f37a2eeb19d19e6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2:log:330', 'hash': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2', 'from': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 41604.26901791843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cf5f37a2eeb19d19e6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c1', 'uniqueId': '0x8484dc69cd8f52aa2e32a589b492daf9eb2e15dfe93410142e0eed2689be4e9b:log:181', 'hash': '0x8484dc69cd8f52aa2e32a589b492daf9eb2e15dfe93410142e0eed2689be4e9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:19.000Z'}}, {'blockNum': '0xb070c1', 'uniqueId': '0xef2b2ee229e0daead0b206647728614dd8867678380887c5441b65147afad96a:log:187', 'hash': '0xef2b2ee229e0daead0b206647728614dd8867678380887c5441b65147afad96a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:19.000Z'}}, {'blockNum': '0xb070c2', 'uniqueId': '0x7d7dbeec8b707dbf5316e9ebbfa179b98125c7dc27a1bcaf97022ccb269c188d:log:230', 'hash': '0x7d7dbeec8b707dbf5316e9ebbfa179b98125c7dc27a1bcaf97022ccb269c188d', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:54.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51:log:6', 'hash': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51:log:11', 'hash': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04:log:22', 'hash': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 45212.07594751183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0992f398aa6ad1452c19', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04:log:23', 'hash': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 45212.071874338406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0992f38a31e33a000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x9ba48c941388f27f70887109e596c09de6d895c8788aae21095a7afd62f1caad:log:118', 'hash': '0x9ba48c941388f27f70887109e596c09de6d895c8788aae21095a7afd62f1caad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 24770.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x053ed4e954b99c44a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x5881d0d427b23db168727a3430d4566d857c1cee62871ec89821a4236119544c:log:119', 'hash': '0x5881d0d427b23db168727a3430d4566d857c1cee62871ec89821a4236119544c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 58867.44045169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c7735d8edbed317a400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c8', 'uniqueId': '0x098af8b5f794660179c8662f20bf03f3518110c015d60a2875ee97c8f9d89fa4:log:146', 'hash': '0x098af8b5f794660179c8662f20bf03f3518110c015d60a2875ee97c8f9d89fa4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 65006.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dc40601e9edfb7d8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:14:23.000Z'}}, {'blockNum': '0xb070cc', 'uniqueId': '0x3ba52a8956772a550b21332389ec8d23867be96fa597d08f2da2c6e71245c86f:log:69', 'hash': '0x3ba52a8956772a550b21332389ec8d23867be96fa597d08f2da2c6e71245c86f', 'from': '0xf05f2aa4a4f883b2458ead1d082808ec8b371045', 'to': '0x11e0205ce7e4c6dceabf3019a38de4344c69ec06', 'value': 12522.210342336253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a6d493f8d74af59ef8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:35.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xaec9441f8a5c9ffa38bd09a136d5d8317724f10f26887b82baf859642a43bcab:log:101', 'hash': '0xaec9441f8a5c9ffa38bd09a136d5d8317724f10f26887b82baf859642a43bcab', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 58867.44045169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c7735d8edbed317a400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37:log:109', 'hash': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'value': 40718.85917455671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x089f5faff97f501330a2', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37:log:115', 'hash': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37', 'from': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 40718.85917455671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x089f5faff97f501330a2', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:187', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:189', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:193', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cf', 'uniqueId': '0xb7f02a1e51e83e308b607b294d7a3cc818adaed69ba5378f280dc23bc3ccd5fc:log:221', 'hash': '0xb7f02a1e51e83e308b607b294d7a3cc818adaed69ba5378f280dc23bc3ccd5fc', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x92818156fb6f4d496ac7d2c97496d6daaee88c21', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:03.000Z'}}, {'blockNum': '0xb070d0', 'uniqueId': '0x8ace6e7e55bc1bdf2c6aac385d38215120aab498f88172437b4b572f26edd0c1:log:226', 'hash': '0x8ace6e7e55bc1bdf2c6aac385d38215120aab498f88172437b4b572f26edd0c1', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xd859ecc3db5bd54d6e670100606f62d03c095436', 'value': 3960.072549134777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xd6ad0bea131207d4ea', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:12.000Z'}}, {'blockNum': '0xb070d1', 'uniqueId': '0x2d820a43cfd52e533aa9f5c0f88d6284b9990d089616d35f1683de6966e21164:log:59', 'hash': '0x2d820a43cfd52e533aa9f5c0f88d6284b9990d089616d35f1683de6966e21164', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:18.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:1', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65006.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dc40601e9edfb7d8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:3', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 22752.36565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d16880ab79b19f2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:10', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 42254.39335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08f29d813e7449de6000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d7', 'uniqueId': '0x24bec413f41fa5b9d06d7f6979eb9ea14db853c7b5bba66e202c3dd5fc61838d:log:137', 'hash': '0x24bec413f41fa5b9d06d7f6979eb9ea14db853c7b5bba66e202c3dd5fc61838d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x597cb045431f8da34e0ba935d0083e24710e5d62', 'value': 173487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x24bcc28c896b9c700000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:33.000Z'}}, {'blockNum': '0xb070d7', 'uniqueId': '0xbcdd861946ecfa86e19036916830f98fe5e360f49f0b26f2b17385435055730c:log:145', 'hash': '0xbcdd861946ecfa86e19036916830f98fe5e360f49f0b26f2b17385435055730c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:33.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972:log:0', 'hash': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972:log:5', 'hash': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764:log:13', 'hash': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'value': 63950.222731398106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d8abf9f0f67beaad9de', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764:log:14', 'hash': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764', 'from': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 63950.222731398106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d8abf9f0f67beaad9de', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070dc', 'uniqueId': '0xbe4bdfed166a5dbd31bcb2bac441e20a4baa71268c26d48626fc173f9580fc4e:log:48', 'hash': '0xbe4bdfed166a5dbd31bcb2bac441e20a4baa71268c26d48626fc173f9580fc4e', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 28191.09682218131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05f83e0f4cf10876b0ad', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:50.000Z'}}, {'blockNum': '0xb070dd', 'uniqueId': '0x5b6d5d054d5033f7f6c92ed668dafb755eb82a8bb01078ad79efceeb36e80978:log:19', 'hash': '0x5b6d5d054d5033f7f6c92ed668dafb755eb82a8bb01078ad79efceeb36e80978', 'from': '0x92818156fb6f4d496ac7d2c97496d6daaee88c21', 'to': '0x672c890388d818c77b407606faa7b5abbe8c7313', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:01.000Z'}}, {'blockNum': '0xb070de', 'uniqueId': '0x17a31ccb257257331e6dec79f83216e0b41579edddd063dfc5f4bd7c7be6e82d:log:52', 'hash': '0x17a31ccb257257331e6dec79f83216e0b41579edddd063dfc5f4bd7c7be6e82d', 'from': '0x597cb045431f8da34e0ba935d0083e24710e5d62', 'to': '0x5655fc94e524636d846bf64e287f24830666b603', 'value': 173487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x24bcc28c896b9c700000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:09.000Z'}}, {'blockNum': '0xb070de', 'uniqueId': '0xe7ad7eb476328dbc058cf9488e6f5775ef63bd81b86a4c61f8c82621d6f5e949:log:230', 'hash': '0xe7ad7eb476328dbc058cf9488e6f5775ef63bd81b86a4c61f8c82621d6f5e949', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 24770.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x053ed4e954b99c44a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:09.000Z'}}, {'blockNum': '0xb070df', 'uniqueId': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005:log:41', 'hash': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65419.64483571896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dda67f311f3fe6f24b1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:54.000Z'}}, {'blockNum': '0xb070df', 'uniqueId': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005:log:42', 'hash': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 65419.64483571896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dda67f311f3fe6f24b1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:54.000Z'}}, {'blockNum': '0xb070e6', 'uniqueId': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d:log:182', 'hash': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 63894.824060845305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d87becf720d5e3e0599', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:21:55.000Z'}}, {'blockNum': '0xb070e6', 'uniqueId': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d:log:183', 'hash': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 63894.824060845305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d87becf720d5e3e0599', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:21:55.000Z'}}, {'blockNum': '0xb07100', 'uniqueId': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf:log:88', 'hash': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf', 'from': '0x2ce5c5197b4605faf0cf1d1c3f9cf58fbd5db77d', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 45753.70145139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b05029008a1f6b6c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:27:53.000Z'}}, {'blockNum': '0xb07100', 'uniqueId': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf:log:90', 'hash': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 45753.70145139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b05029008a1f6b6c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:27:53.000Z'}}, {'blockNum': '0xb07108', 'uniqueId': '0x3907760f75742b122c224680ec3256fdeeda9248ba14eef8274a0c5ae6b91524:log:81', 'hash': '0x3907760f75742b122c224680ec3256fdeeda9248ba14eef8274a0c5ae6b91524', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 33649.52020544156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x072024e6b80cd97d04f5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:28:47.000Z'}}, {'blockNum': '0xb0710a', 'uniqueId': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351:log:200', 'hash': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 19178.027247771606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x040fa497bc4e1cd11db0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:29:05.000Z'}}, {'blockNum': '0xb0710a', 'uniqueId': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351:log:201', 'hash': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 19178.026527283888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x040fa4952d067e800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:29:05.000Z'}}, {'blockNum': '0xb0710f', 'uniqueId': '0xea8231350efacd7ae535ac23dd1f57c2e9a75bf802c8739658f28ca511e11456:log:128', 'hash': '0xea8231350efacd7ae535ac23dd1f57c2e9a75bf802c8739658f28ca511e11456', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 26478.493994819706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x059b66ebcf36fe7d194e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:08.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xbd3212208c096fd18bc1604f1e74381cb26db2296afc9f0eb00972854e6b58d8:log:124', 'hash': '0xbd3212208c096fd18bc1604f1e74381cb26db2296afc9f0eb00972854e6b58d8', 'from': '0x11e0205ce7e4c6dceabf3019a38de4344c69ec06', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12522.210342336253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a6d493f8d74af59ef8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xb81e4d1f5432e2b7c1b4699358d64f97a874ab4f52544a030454a1d6856c9fa4:log:125', 'hash': '0xb81e4d1f5432e2b7c1b4699358d64f97a874ab4f52544a030454a1d6856c9fa4', 'from': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xfd52af0604358a430ce2eeb0600d664520691f372fd5fa25d0d64ba545ba4caf:log:127', 'hash': '0xfd52af0604358a430ce2eeb0600d664520691f372fd5fa25d0d64ba545ba4caf', 'from': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 374743.8035042302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcc1552afcd64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x182c07a719870fcfb997ff2294d777b356a780363f92df0076a9e2b1b4ca0d69:log:129', 'hash': '0x182c07a719870fcfb997ff2294d777b356a780363f92df0076a9e2b1b4ca0d69', 'from': '0x672c890388d818c77b407606faa7b5abbe8c7313', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xd6f3727c5f7083e2218d0b58402054d360394b0c45b9ae79b30746cd56205751:log:131', 'hash': '0xd6f3727c5f7083e2218d0b58402054d360394b0c45b9ae79b30746cd56205751', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x5af9247d670f382fee5c3f00c5e54a900341abb2af889921f8f19b47ab8c3c71:log:135', 'hash': '0x5af9247d670f382fee5c3f00c5e54a900341abb2af889921f8f19b47ab8c3c71', 'from': '0x2e4ba6698b2c6549ca554785adb6e58186aff6c6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x5335adfd68da59fba3e5f89921184aeafe7a99bd0101a32d926358daf4a7e8a8:log:136', 'hash': '0x5335adfd68da59fba3e5f89921184aeafe7a99bd0101a32d926358daf4a7e8a8', 'from': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xaee7eea28fe7b4c9bf8dcf614cde2c47d7b83ce3eb8264d9ba17fdcb0c5c14f8:log:138', 'hash': '0xaee7eea28fe7b4c9bf8dcf614cde2c47d7b83ce3eb8264d9ba17fdcb0c5c14f8', 'from': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07112', 'uniqueId': '0x200183da79ae67572a75d5a9a942fe7ea3a26ed6de62bc21716667a47f588ce7:log:162', 'hash': '0x200183da79ae67572a75d5a9a942fe7ea3a26ed6de62bc21716667a47f588ce7', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:06.000Z'}}, {'blockNum': '0xb07113', 'uniqueId': '0xdfae12e1c25aac5fa4f56b96242f812fa46ae33166b2528abdc48e0440756b71:log:54', 'hash': '0xdfae12e1c25aac5fa4f56b96242f812fa46ae33166b2528abdc48e0440756b71', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:13.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3:log:60', 'hash': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3', 'from': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3:log:62', 'hash': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6:log:116', 'hash': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 21028.194797765216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0473f0d34c6aa0e97896', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6:log:117', 'hash': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 21028.193931490907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0473f0d0388b6c400000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07115', 'uniqueId': '0x49003ef73afbb2762b674bfbee7c7fb1d5edecdc6c966838637c46533fa4b147:log:65', 'hash': '0x49003ef73afbb2762b674bfbee7c7fb1d5edecdc6c966838637c46533fa4b147', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 12499.841773292255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a59e26d9cf29accd6a', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:47.000Z'}}, {'blockNum': '0xb07119', 'uniqueId': '0xad77eb98320b1428d8b8cc80a7635980dbb8adacd738de0f73484b6b7dcf141c:log:304', 'hash': '0xad77eb98320b1428d8b8cc80a7635980dbb8adacd738de0f73484b6b7dcf141c', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:06.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:10', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 129314.46889656427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b6226c284015cad2a4a', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:12', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 38794.34066896928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08370ba0c1339bcd8caf', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:19', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 90520.12822759499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x132b1b21c2cdc0df9d9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb07120', 'uniqueId': '0x96b79000261b5a8235ecfe6a60658ac5a2b73ec4770509905787e03712b884e2:log:224', 'hash': '0x96b79000261b5a8235ecfe6a60658ac5a2b73ec4770509905787e03712b884e2', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x50490a0beb4fa6505025d08cd51f6e1bedb7f3a7', 'value': 17510.051400537875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03b538c7208f931d9a1c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:33:16.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x98fd72652d7da886769bb4fe89e2a6f6dd585ade334cd2eca796350fcbc15080:log:254', 'hash': '0x98fd72652d7da886769bb4fe89e2a6f6dd585ade334cd2eca796350fcbc15080', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeaebc5aa6dc6309a91cb8aebb434668b2412b6de', 'value': 25691.540293606475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0570bdbea16bb8ccdb14', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942:log:261', 'hash': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xb8db34f834e9df42f2002ceb7b829dad89d08e14', 'value': 22467.90133903241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04c1fcc46bce8e1d0943', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942:log:263', 'hash': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942', 'from': '0xb8db34f834e9df42f2002ceb7b829dad89d08e14', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 22467.90133903241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04c1fcc46bce8e1d0943', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb0715d', 'uniqueId': '0x6e4a8bbf08de75320a78654cf112432c6500c9aedfef1e008d1e8d1b5631b350:log:293', 'hash': '0x6e4a8bbf08de75320a78654cf112432c6500c9aedfef1e008d1e8d1b5631b350', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:46:03.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x1a74605f5105b7c510d3c5aec91ade539b05cbd297c8840e65463b12974583aa:log:119', 'hash': '0x1a74605f5105b7c510d3c5aec91ade539b05cbd297c8840e65463b12974583aa', 'from': '0x50490a0beb4fa6505025d08cd51f6e1bedb7f3a7', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 17510.051400537875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03b538c7208f931d9a1c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35:log:128', 'hash': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'value': 17358.283368010663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03acfe92c3142ebef7c0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35:log:132', 'hash': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35', 'from': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 17358.283368010663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03acfe92c3142ebef7c0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb0716e', 'uniqueId': '0x68faa4d2bc0632a10f6e01c9a4c3a39bec8dca121ca3ee45c8ff6ad8cbd3098e:log:13', 'hash': '0x68faa4d2bc0632a10f6e01c9a4c3a39bec8dca121ca3ee45c8ff6ad8cbd3098e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:48:56.000Z'}}, {'blockNum': '0xb07171', 'uniqueId': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01:log:24', 'hash': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:50:08.000Z'}}, {'blockNum': '0xb07171', 'uniqueId': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01:log:29', 'hash': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:50:08.000Z'}}, {'blockNum': '0xb0717a', 'uniqueId': '0x1114f74a81757b9b51532ecd3e442a101ae4fa5928a4149e4966fad75b8d4b86:log:126', 'hash': '0x1114f74a81757b9b51532ecd3e442a101ae4fa5928a4149e4966fad75b8d4b86', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:51:24.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0xcf6dc6b2381cd1a970d5d2da7114fe5651776c43cbb3850a055ae044c68b2bc7:log:24', 'hash': '0xcf6dc6b2381cd1a970d5d2da7114fe5651776c43cbb3850a055ae044c68b2bc7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0x2d3fd09426a96b354c9a5396b0230deeca2424065fc0d88ac49567278e0c46ae:log:25', 'hash': '0x2d3fd09426a96b354c9a5396b0230deeca2424065fc0d88ac49567278e0c46ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 36703.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07c5b1ff3d0d70440000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0x2499ab99ed39169fc932073f01030a29f92a3e462fe616898fbb2fce86a3b848:log:26', 'hash': '0x2499ab99ed39169fc932073f01030a29f92a3e462fe616898fbb2fce86a3b848', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 24832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce4000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07184', 'uniqueId': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900:log:106', 'hash': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:54:06.000Z'}}, {'blockNum': '0xb07184', 'uniqueId': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900:log:111', 'hash': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:54:06.000Z'}}, {'blockNum': '0xb07187', 'uniqueId': '0x98544ee0f200eea4e9ed6ded50041b2ad2e2b0d4686c8d0230c23d4014c76e68:log:58', 'hash': '0x98544ee0f200eea4e9ed6ded50041b2ad2e2b0d4686c8d0230c23d4014c76e68', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 24832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce4000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:55:25.000Z'}}, {'blockNum': '0xb0718b', 'uniqueId': '0x63f98776d808a02d3c68e7c1fd3643db205a48be5739b254f3e4aa1669f52a37:log:100', 'hash': '0x63f98776d808a02d3c68e7c1fd3643db205a48be5739b254f3e4aa1669f52a37', 'from': '0x541e0950fad1688bfc02897d7bb66066f5333100', 'to': '0x233c09204a9bd98d2a80c3bf91a0fb37e9a96b16', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:03.000Z'}}, {'blockNum': '0xb07191', 'uniqueId': '0x88dcf35ca8575863106cce7e2dc5b11e167687f347de2acd3f979aeff1a95f6d:log:6', 'hash': '0x88dcf35ca8575863106cce7e2dc5b11e167687f347de2acd3f979aeff1a95f6d', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 36703.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07c5b1ff3d0d70440000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:44.000Z'}}, {'blockNum': '0xb07193', 'uniqueId': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784:log:15', 'hash': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'value': 14858.682853402133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03257da5d27e55b42bbb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:56.000Z'}}, {'blockNum': '0xb07193', 'uniqueId': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784:log:21', 'hash': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784', 'from': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 14858.682853402133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03257da5d27e55b42bbb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:56.000Z'}}, {'blockNum': '0xb07198', 'uniqueId': '0xf8af9784d3705c35bb98caa2233c9b895a39ed55d1ce50740cc846f27798b629:log:24', 'hash': '0xf8af9784d3705c35bb98caa2233c9b895a39ed55d1ce50740cc846f27798b629', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:57:38.000Z'}}, {'blockNum': '0xb0719b', 'uniqueId': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa:log:18', 'hash': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:58:00.000Z'}}, {'blockNum': '0xb0719b', 'uniqueId': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa:log:23', 'hash': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:58:00.000Z'}}, {'blockNum': '0xb071a0', 'uniqueId': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c:log:178', 'hash': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c', 'from': '0x233c09204a9bd98d2a80c3bf91a0fb37e9a96b16', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:59:29.000Z'}}, {'blockNum': '0xb071a0', 'uniqueId': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c:log:183', 'hash': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:59:29.000Z'}}, {'blockNum': '0xb071a5', 'uniqueId': '0x93f635e6a7e2fc17cd98a585accd70be02c2cd2e193bd679fd66cf124a54bd8e:log:230', 'hash': '0x93f635e6a7e2fc17cd98a585accd70be02c2cd2e193bd679fd66cf124a54bd8e', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:00:59.000Z'}}, {'blockNum': '0xb071aa', 'uniqueId': '0x4cb9a09cec9ff17841d7d536c610bbbd60d2874313694d46a649d1dc7dc970a2:log:74', 'hash': '0x4cb9a09cec9ff17841d7d536c610bbbd60d2874313694d46a649d1dc7dc970a2', 'from': '0xeaebc5aa6dc6309a91cb8aebb434668b2412b6de', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 25691.540293606475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0570bdbea16bb8ccdb14', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:02:15.000Z'}}, {'blockNum': '0xb071ee', 'uniqueId': '0xd49d98e356bac6e9afea08bf2f507dd4d4945da8543d779a7ec803131b5c7341:log:90', 'hash': '0xd49d98e356bac6e9afea08bf2f507dd4d4945da8543d779a7ec803131b5c7341', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xb038c7996493d4818a6df1c9db2b3f835a7f14c5', 'value': 28091.404705658024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05f2d68dc127b31d0f8f', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:18:42.000Z'}}, {'blockNum': '0xb071f2', 'uniqueId': '0x4442fbf3729f45deca8058432a8acf32e8cc7d8e5205464950f043496557029f:log:19', 'hash': '0x4442fbf3729f45deca8058432a8acf32e8cc7d8e5205464950f043496557029f', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:19:26.000Z'}}, {'blockNum': '0xb071f7', 'uniqueId': '0x29d9177a4ba781737dd6b4629fccdc2347c53fdceb814b7886e8b1ec048788da:log:14', 'hash': '0x29d9177a4ba781737dd6b4629fccdc2347c53fdceb814b7886e8b1ec048788da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 69366.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0eb0580450a6afa20000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:20:43.000Z'}}, {'blockNum': '0xb071f7', 'uniqueId': '0x0a842e7c14245472bd028e853e3634424882fc68162125a33833a2d92adb5588:log:22', 'hash': '0x0a842e7c14245472bd028e853e3634424882fc68162125a33833a2d92adb5588', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 798658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xa91f5641489035c80000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:20:43.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:25', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 69366.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0eb0580450a6afa20000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:27', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 24278.135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05241ece4f6d8a458000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:34', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 45087.965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x098c39360139255c8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb07202', 'uniqueId': '0x74600e4010d71114761714f1910e8bed013117cdd03fc2a30bee1dcd992391c0:log:1', 'hash': '0x74600e4010d71114761714f1910e8bed013117cdd03fc2a30bee1dcd992391c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:23:23.000Z'}}, {'blockNum': '0xb07206', 'uniqueId': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0:log:69', 'hash': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:24:03.000Z'}}, {'blockNum': '0xb07206', 'uniqueId': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0:log:74', 'hash': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:24:03.000Z'}}, {'blockNum': '0xb0720a', 'uniqueId': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66:log:262', 'hash': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 1938.7009858124068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x6918e182eb1820f7b5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:25:10.000Z'}}, {'blockNum': '0xb0720a', 'uniqueId': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66:log:263', 'hash': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xf81521e83369fd9b661b804ba342993b2bcef430', 'value': 1938.7009786893623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x6918e17c70a1980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:25:10.000Z'}}, {'blockNum': '0xb0722e', 'uniqueId': '0xabd8e07a1199f6562562f7ae4e0704885e43712fade8af3bf3df51577f75ca8b:log:0', 'hash': '0xabd8e07a1199f6562562f7ae4e0704885e43712fade8af3bf3df51577f75ca8b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8541390869ce254d4470ec3c8a1506d7c38b54e5', 'value': 14803.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03227a6447c5bf2a0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:34:28.000Z'}}, {'blockNum': '0xb0723a', 'uniqueId': '0x142d7a635881d3ea46fe0f319cf5698e1d834d4a3d6e3f2f4cc7ce3659839d05:log:258', 'hash': '0x142d7a635881d3ea46fe0f319cf5698e1d834d4a3d6e3f2f4cc7ce3659839d05', 'from': '0x8541390869ce254d4470ec3c8a1506d7c38b54e5', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 14803.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03227a6447c5bf2a0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:36:28.000Z'}}, {'blockNum': '0xb07259', 'uniqueId': '0x343e972e5f789cf612b3dff3c108327e005341e89ef426edef985993ec03c4c7:log:1', 'hash': '0x343e972e5f789cf612b3dff3c108327e005341e89ef426edef985993ec03c4c7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 83976.0842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x11c85a4707898d368000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:43:10.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:28', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 83976.0842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x11c85a4707898d368000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:30', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 20994.02105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04721691c1e2634da000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:37', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 62982.06315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5643b545a729e8e000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb072c5', 'uniqueId': '0x10904e8533f6dc42eab3961cc88a9f0d70392e88127719138bdb05ffaa122697:log:15', 'hash': '0x10904e8533f6dc42eab3961cc88a9f0d70392e88127719138bdb05ffaa122697', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 397794.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x543c78bbe1076e5e8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:06:30.000Z'}}, {'blockNum': '0xb07336', 'uniqueId': '0x5fda6100732dc6638f1b22be81ee258e554de76d10de97514e3f1dd3ff547720:log:18', 'hash': '0x5fda6100732dc6638f1b22be81ee258e554de76d10de97514e3f1dd3ff547720', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 884160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xbb3a68de3f8d5f000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:33:28.000Z'}}, {'blockNum': '0xb07336', 'uniqueId': '0xa832e459a97ff90401e67b9c7adf6adceb25e31380d28e72bce4ebba91ebd8f4:log:19', 'hash': '0xa832e459a97ff90401e67b9c7adf6adceb25e31380d28e72bce4ebba91ebd8f4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 884160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xbb3a68de3f8d5f000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:33:28.000Z'}}, {'blockNum': '0xb0735b', 'uniqueId': '0xcf7654001053893082cfcbc8e673a8d2494a274798c095a9f9012f531933617c:log:10', 'hash': '0xcf7654001053893082cfcbc8e673a8d2494a274798c095a9f9012f531933617c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa4f59c5fea4f76a09a91e8aa2afc49c328cd8230', 'value': 4709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xff4680b6a612740000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:42:17.000Z'}}, {'blockNum': '0xb0750d', 'uniqueId': '0x40cb2bb42ed0b0c4a4c3054258551e0d8d7650edf87658caa3b7a7869a1641c1:log:48', 'hash': '0x40cb2bb42ed0b0c4a4c3054258551e0d8d7650edf87658caa3b7a7869a1641c1', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x13edf543ea6e777c51b55b09c2a1d63f118f6dee', 'value': 10669.26445413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x024261c9c4d8709cf400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:20:47.000Z'}}, {'blockNum': '0xb07521', 'uniqueId': '0xa05230501dc76af3bc371bf85be59d53005c5d4d5f890abd0e51e7b1764787d8:log:1', 'hash': '0xa05230501dc76af3bc371bf85be59d53005c5d4d5f890abd0e51e7b1764787d8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:25:47.000Z'}}, {'blockNum': '0xb07523', 'uniqueId': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e:log:198', 'hash': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:26:13.000Z'}}, {'blockNum': '0xb07523', 'uniqueId': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e:log:203', 'hash': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:26:13.000Z'}}, {'blockNum': '0xb0754c', 'uniqueId': '0xa3d383ec169ee4e0ae4ff62c91d2b44c7a3bad29738fbb0e5d34f3991653d58e:log:7', 'hash': '0xa3d383ec169ee4e0ae4ff62c91d2b44c7a3bad29738fbb0e5d34f3991653d58e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 390350.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x52a8ebb84395f0410000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:34:43.000Z'}}, {'blockNum': '0xb07563', 'uniqueId': '0x8dbaf47b5af8c1ca4dc9be3db5331f9ec81e8403f28342c57f013e5ed6914339:log:25', 'hash': '0x8dbaf47b5af8c1ca4dc9be3db5331f9ec81e8403f28342c57f013e5ed6914339', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:38:58.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:97', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:99', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:100', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 28938.8061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0620c69c479587594000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:107', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 35369.6519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x077d64861e9a5017c000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb0757f', 'uniqueId': '0x3f99ed5a27a7e0d7d6b652dfa7aa69a02cc93162d9f66e72f7aa19df8e7eec0b:log:5', 'hash': '0x3f99ed5a27a7e0d7d6b652dfa7aa69a02cc93162d9f66e72f7aa19df8e7eec0b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:46:45.000Z'}}, {'blockNum': '0xb07585', 'uniqueId': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe:log:179', 'hash': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:47:26.000Z'}}, {'blockNum': '0xb07585', 'uniqueId': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe:log:184', 'hash': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:47:26.000Z'}}, {'blockNum': '0xb07588', 'uniqueId': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639:log:252', 'hash': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 837.5136115324192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2d66d61059f85704ec', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:48:03.000Z'}}, {'blockNum': '0xb07588', 'uniqueId': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639:log:255', 'hash': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x63945320845eb2d8208d848c5b528d9a5e4ec33d', 'value': 837.5136115324192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2d66d61059f85704ec', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:48:03.000Z'}}, {'blockNum': '0xb07599', 'uniqueId': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46:log:136', 'hash': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46', 'from': '0x93972cb878afe60e66d14ad98c779ce9fdc1f356', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:51:56.000Z'}}, {'blockNum': '0xb07599', 'uniqueId': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46:log:138', 'hash': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:51:56.000Z'}}, {'blockNum': '0xb075a0', 'uniqueId': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003:log:131', 'hash': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:00.000Z'}}, {'blockNum': '0xb075a0', 'uniqueId': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003:log:132', 'hash': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:00.000Z'}}, {'blockNum': '0xb075a3', 'uniqueId': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6:log:17', 'hash': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:29.000Z'}}, {'blockNum': '0xb075a3', 'uniqueId': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6:log:19', 'hash': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:29.000Z'}}, {'blockNum': '0xb075c4', 'uniqueId': '0xee120afc7beea5fe015e66152bcbe6633f7f4eacac65211a096cffec31df01b4:log:184', 'hash': '0xee120afc7beea5fe015e66152bcbe6633f7f4eacac65211a096cffec31df01b4', 'from': '0xb4fee33a0edef5a7fb0da42a9b8fe3b4f73dfb8b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22863.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d773f85871ae58a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T22:00:22.000Z'}}, {'blockNum': '0xb076f0', 'uniqueId': '0x2c75e5d81215ce25312ad865d60c3697e8d6815b8deb8c64c0056a2ebeec4630:log:15', 'hash': '0x2c75e5d81215ce25312ad865d60c3697e8d6815b8deb8c64c0056a2ebeec4630', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:11:29.000Z'}}, {'blockNum': '0xb076f6', 'uniqueId': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9:log:236', 'hash': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:13:02.000Z'}}, {'blockNum': '0xb076f6', 'uniqueId': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9:log:241', 'hash': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:13:02.000Z'}}, {'blockNum': '0xb0770b', 'uniqueId': '0x484f7eddcdc67ff80f81c0d71eba63a312296c9edfb89dcebe7900fdbcef3ee5:log:0', 'hash': '0x484f7eddcdc67ff80f81c0d71eba63a312296c9edfb89dcebe7900fdbcef3ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:24.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:212', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:214', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:218', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 72375.7918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0f537fe18ab875a38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:221', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 38971.5802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0840a7520f9e66ba8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:87', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x8a2b589bfd3db6659deda06006e6d65951103360', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 17186.281028565863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03a3ab8fb2a9476509b3', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:89', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x11ededebf63bef0ea2d2d071bdf88f71543ec6fb', 'value': 150.37995899995133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0826f0eff699e79aa5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:90', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 17035.901069565913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x039b849ec2b2ad7d6f0e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea:log:235', 'hash': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea:log:236', 'hash': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x0489076a0d17394835af93cd62acff703b6814a9', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79:log:240', 'hash': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 33353.990790631324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07101f9b530fee5c4187', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79:log:246', 'hash': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 33353.990790631324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07101f9b530fee5c4187', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb07819', 'uniqueId': '0xa029bfd55bdef7b354c0a6e9826be2f36eb8a3b7e63561ac92f08caf166d8838:log:23', 'hash': '0xa029bfd55bdef7b354c0a6e9826be2f36eb8a3b7e63561ac92f08caf166d8838', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xae20a4f057acdd672bb51071d52321d8a7565d1b', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:13:24.000Z'}}, {'blockNum': '0xb07828', 'uniqueId': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4:log:241', 'hash': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4', 'from': '0xae20a4f057acdd672bb51071d52321d8a7565d1b', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:16:33.000Z'}}, {'blockNum': '0xb07828', 'uniqueId': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4:log:243', 'hash': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:16:33.000Z'}}, {'blockNum': '0xb079ca', 'uniqueId': '0xdb2d54f076de629c3d9eb0c1a79cc7c8db814293b868495ff806668669abeacb:log:8', 'hash': '0xdb2d54f076de629c3d9eb0c1a79cc7c8db814293b868495ff806668669abeacb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x44742ce969585e16640cc4bf81308618ed4fec1b', 'value': 7214.977391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x01871fecde86a5a1f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T01:48:13.000Z'}}, {'blockNum': '0xb07af2', 'uniqueId': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5:log:161', 'hash': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 36500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07baab4146b63dd00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T02:47:14.000Z'}}, {'blockNum': '0xb07af2', 'uniqueId': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5:log:166', 'hash': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 36500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07baab4146b63dd00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T02:47:14.000Z'}}]}}
Number of returned transfers:  250
Answer is complete
 
symbol             EVX
group              TCC
date        2018-06-19
hour             15:30
exchange       binance
Name: 549, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2018-06-19 15:30:00 2018-06-19 03:30:00 2018-06-20 03:30:00
Unix timestamps:  1529371800.0 1529458200.0
Hex Block Numbers:  0x58b73a 0x58cdf5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x58b7dd', 'uniqueId': '0xeca503235352f5ed152d208101154fa0560f6de14a882116e2b265995e53c291:log:32', 'hash': '0xeca503235352f5ed152d208101154fa0560f6de14a882116e2b265995e53c291', 'from': '0x8bccd24f0785650da3d2c4c2c581c40b8e9f4894', 'to': '0xa974b704a840878ef60997699d768767e6498865', 'value': 672.0888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x668d78', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T02:12:13.000Z'}}, {'blockNum': '0x58ba2f', 'uniqueId': '0x357954eeeec178dc139837eedc46fbd3109623dd15b461de7dfbe1f776d56e44:log:42', 'hash': '0x357954eeeec178dc139837eedc46fbd3109623dd15b461de7dfbe1f776d56e44', 'from': '0x78f1e988044f91533c53f1693f422b78af2b6c14', 'to': '0x55f125357c1e99a990bdd29ce35420d90d64436b', 'value': 180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1b7740', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T04:34:25.000Z'}}, {'blockNum': '0x58ba31', 'uniqueId': '0xbb14cd12c31136fb45c89f9bbfaa2a2ba9cc0392e62882c4412de1d904b01602:log:59', 'hash': '0xbb14cd12c31136fb45c89f9bbfaa2a2ba9cc0392e62882c4412de1d904b01602', 'from': '0xb640fe1af45e0c6b6109555478242295b55a8aa2', 'to': '0x0004e4debb078b4b79c38f7abe766e3d1fd0e91f', 'value': 1489.3195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xe3408b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T04:35:09.000Z'}}, {'blockNum': '0x58ba6d', 'uniqueId': '0xdf6f78c4cf46f401b33fb0ae980c6e9e386eb2d3b0d1d788381b95037bd7239f:log:18', 'hash': '0xdf6f78c4cf46f401b33fb0ae980c6e9e386eb2d3b0d1d788381b95037bd7239f', 'from': '0x55f125357c1e99a990bdd29ce35420d90d64436b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1b7740', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T04:51:35.000Z'}}, {'blockNum': '0x58bf25', 'uniqueId': '0x37a967b2e651a2e6a131aa5473ae228ba946e3e8584482a9e27b7bf48cb022bb:log:36', 'hash': '0x37a967b2e651a2e6a131aa5473ae228ba946e3e8584482a9e27b7bf48cb022bb', 'from': '0x60f7a3ab2643906d55687224449c7aa9ae714bb4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07270e00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T10:01:11.000Z'}}, {'blockNum': '0x58c085', 'uniqueId': '0xbed99445f1a069ad90a361a5650fa492ccf42052fc66fd779b98368df1adbe8a:log:1', 'hash': '0xbed99445f1a069ad90a361a5650fa492ccf42052fc66fd779b98368df1adbe8a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9ad0a89830ce84bace7a8513fbf1b7f6efbbde6e', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030d40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T11:21:25.000Z'}}, {'blockNum': '0x58c268', 'uniqueId': '0x6374e5a42337c837280e4246a61c77de1ea789d083d0ca895c4095ae68af0dd1:log:4', 'hash': '0x6374e5a42337c837280e4246a61c77de1ea789d083d0ca895c4095ae68af0dd1', 'from': '0x1d22620ad928df83c54c2a1c24ebbe6fc275416f', 'to': '0x36b551fe9ef59ec43f0748a593125656c9a0e24b', 'value': 1221.158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xba557c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T13:20:49.000Z'}}, {'blockNum': '0x58c2e9', 'uniqueId': '0x5767599a4bdc124b7e234d0e272a58f779ae2265c57990b53d71ed99f765c07f:log:2', 'hash': '0x5767599a4bdc124b7e234d0e272a58f779ae2265c57990b53d71ed99f765c07f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdff13c1cd58b5e6e9dacae19246dba54decc077d', 'value': 4176.615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x027d4d06', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T13:53:29.000Z'}}, {'blockNum': '0x58c349', 'uniqueId': '0x90fe1b7b7ef898c1644ad26eb1c8ab9bad2fbbf6539762b2b7e35381ea120837:log:66', 'hash': '0x90fe1b7b7ef898c1644ad26eb1c8ab9bad2fbbf6539762b2b7e35381ea120837', 'from': '0x456b68268dd7863fe7f0cc84a034239a70ad38f8', 'to': '0x572034a1eeb70b59f8f23c50b22db92eb559261b', 'value': 22.3292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03683c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T14:19:14.000Z'}}, {'blockNum': '0x58c3b9', 'uniqueId': '0x53a5b2c89b5795c4535935cc5e7e7f82bca07e3285b306e1b68e6132c182f5bd:log:72', 'hash': '0x53a5b2c89b5795c4535935cc5e7e7f82bca07e3285b306e1b68e6132c182f5bd', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x572af0ec3ff498aeb227d1be67efbb2114d86c99', 'value': 169.5661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x19dfad', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T14:43:42.000Z'}}, {'blockNum': '0x58c40c', 'uniqueId': '0x66fb50c86a6e0feeb1674a615d99605a197ce25b987cff921d5682acbcb0163e:log:25', 'hash': '0x66fb50c86a6e0feeb1674a615d99605a197ce25b987cff921d5682acbcb0163e', 'from': '0x572af0ec3ff498aeb227d1be67efbb2114d86c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 169.5661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x19dfad', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:01:09.000Z'}}, {'blockNum': '0x58c46b', 'uniqueId': '0x63034d96ab8903fbf5ad9fe1a469a84c707ec1a5ed44b555ac38b86e2e407299:log:31', 'hash': '0x63034d96ab8903fbf5ad9fe1a469a84c707ec1a5ed44b555ac38b86e2e407299', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x29b92700', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:24:06.000Z'}}, {'blockNum': '0x58c471', 'uniqueId': '0x1611e961f14ffc4e1a894129444ca2dcfb44badfead340b5fbf9020b4eb37005:log:35', 'hash': '0x1611e961f14ffc4e1a894129444ca2dcfb44badfead340b5fbf9020b4eb37005', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x16da0ae1af95929d17eeb9ad01cd95b378f3b47a', 'value': 49989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dcbb750', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:25:28.000Z'}}, {'blockNum': '0x58c492', 'uniqueId': '0xc9513898d713b5d90f90440ff5aef72eb67698668e4b33f7f781ef409f348e16:log:27', 'hash': '0xc9513898d713b5d90f90440ff5aef72eb67698668e4b33f7f781ef409f348e16', 'from': '0x63e1165b703fdaf8e6a2068fd81d295e24dca680', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3719.0148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02377a04', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:34:13.000Z'}}, {'blockNum': '0x58c492', 'uniqueId': '0xcf773109cc5efc5118b8056a89b3e5de2e7115fc4c82ec752d8e46c8356e0970:log:28', 'hash': '0xcf773109cc5efc5118b8056a89b3e5de2e7115fc4c82ec752d8e46c8356e0970', 'from': '0x46bc8bc6b1c336264249503e8c67fd83cab39a29', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 3201.326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01e87bcc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:34:13.000Z'}}, {'blockNum': '0x58c492', 'uniqueId': '0xec566fa8c09427fdeb233059f2032a8ea4b157bdb40bae0d72b6b56ace092011:log:30', 'hash': '0xec566fa8c09427fdeb233059f2032a8ea4b157bdb40bae0d72b6b56ace092011', 'from': '0x3dcf3a02b6e00f4687ed949c2097742bdbec8198', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 5153.0215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031249e7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:34:13.000Z'}}, {'blockNum': '0x58c498', 'uniqueId': '0x81f0950f464e459d935b32c8a4b5be2401101483bf22aa6a7b2d0608fe8c239e:log:8', 'hash': '0x81f0950f464e459d935b32c8a4b5be2401101483bf22aa6a7b2d0608fe8c239e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 4046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02695ee0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:35:41.000Z'}}, {'blockNum': '0x58c498', 'uniqueId': '0x4258b751aaeb67e2cb6ff3cf800bde188e3c7fbf25b9136db080db196753063e:log:136', 'hash': '0x4258b751aaeb67e2cb6ff3cf800bde188e3c7fbf25b9136db080db196753063e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc458e951c58b62dd25806972be9bacf2759fb033', 'value': 4595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02bd2430', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:35:41.000Z'}}, {'blockNum': '0x58c49b', 'uniqueId': '0xa3e44bc4c42ef5422e57dbbe860c5723f5d448eda71e8ab6d7d10518dd282e47:log:1', 'hash': '0xa3e44bc4c42ef5422e57dbbe860c5723f5d448eda71e8ab6d7d10518dd282e47', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 402.7518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3d747e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:36:13.000Z'}}, {'blockNum': '0x58c4ac', 'uniqueId': '0x1cbaa1024e10de6a3aa56ccf1aa168c611ade64c4aa0137fcad010fe8a56cc54:log:30', 'hash': '0x1cbaa1024e10de6a3aa56ccf1aa168c611ade64c4aa0137fcad010fe8a56cc54', 'from': '0xc458e951c58b62dd25806972be9bacf2759fb033', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02bd2430', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:41:05.000Z'}}, {'blockNum': '0x58c4ac', 'uniqueId': '0x68b90a63a0be93b0ddf758a6314b720740a3b77a8bbed9885ed47148b298df10:log:38', 'hash': '0x68b90a63a0be93b0ddf758a6314b720740a3b77a8bbed9885ed47148b298df10', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 402.7518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3d747e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:41:05.000Z'}}, {'blockNum': '0x58c4c0', 'uniqueId': '0x36f163bb434a23ddac102552c6e72242a306119e32f3084a4d580aa92e7f36fc:log:27', 'hash': '0x36f163bb434a23ddac102552c6e72242a306119e32f3084a4d580aa92e7f36fc', 'from': '0x3a2df871714451ba1bfecbcc55f1604f5335a227', 'to': '0x362f81f367e1eddbe485a46cd6aa3a685f2d0a9c', 'value': 7278.9583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0456ae4f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:45:59.000Z'}}, {'blockNum': '0x58c4d4', 'uniqueId': '0x236386a16dac3aec0c5b26716053d2ea8111eb3ddb3672c80ee7aebe904c4c97:log:3', 'hash': '0x236386a16dac3aec0c5b26716053d2ea8111eb3ddb3672c80ee7aebe904c4c97', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1de507af534a90a854957840b259ef2ae0d6f8f8', 'value': 4844.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e34200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:50:16.000Z'}}, {'blockNum': '0x58c4ea', 'uniqueId': '0x8c3979122a044c9c004a6d0f0fb67797d150aa265b69b3d1219b22b6162ba4e7:log:1', 'hash': '0x8c3979122a044c9c004a6d0f0fb67797d150aa265b69b3d1219b22b6162ba4e7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 72031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2aef0ef0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T15:54:05.000Z'}}, {'blockNum': '0x58c515', 'uniqueId': '0x10734e8f212a482b777bafc7bf7dc550a8c220094293b26b8ea447a5c393a646:log:87', 'hash': '0x10734e8f212a482b777bafc7bf7dc550a8c220094293b26b8ea447a5c393a646', 'from': '0x2e77d19d276d8d289147aa6fa24f82f94a20606d', 'to': '0x1a2c0d13a95f5f7f27caf8d9a0cfbc24e4c5718e', 'value': 151.4333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x171b5d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T16:03:29.000Z'}}, {'blockNum': '0x58c536', 'uniqueId': '0x4447fca07d085f2b313984b14a80723f6720f179a6b9f265f3381157778d8a57:log:32', 'hash': '0x4447fca07d085f2b313984b14a80723f6720f179a6b9f265f3381157778d8a57', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1de507af534a90a854957840b259ef2ae0d6f8f8', 'value': 4810.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02de11e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T16:10:07.000Z'}}, {'blockNum': '0x58c577', 'uniqueId': '0x28f70e9e091a38195a346707cf625f73367016f284f234dee3e06b7a5b74717d:log:7', 'hash': '0x28f70e9e091a38195a346707cf625f73367016f284f234dee3e06b7a5b74717d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc458e951c58b62dd25806972be9bacf2759fb033', 'value': 4621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c11bd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T16:26:53.000Z'}}, {'blockNum': '0x58c583', 'uniqueId': '0xb3caae88a10ebe291cb7b87a0a26652f08b49a7f94b6f20cfcd4adf09eb55bf3:log:29', 'hash': '0xb3caae88a10ebe291cb7b87a0a26652f08b49a7f94b6f20cfcd4adf09eb55bf3', 'from': '0xc458e951c58b62dd25806972be9bacf2759fb033', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c11bd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T16:31:18.000Z'}}, {'blockNum': '0x58c5c4', 'uniqueId': '0xc19bf6b62c94905c6159ae088af7fe768a5cf288e5bf02d7b14d2a5dd47f50ce:log:18', 'hash': '0xc19bf6b62c94905c6159ae088af7fe768a5cf288e5bf02d7b14d2a5dd47f50ce', 'from': '0xaaf9f429bf2c1c12200ea6112761b85ddc9587d9', 'to': '0x8e020bd8e1e7b9b5e5723c3b73b89fc4b55dd057', 'value': 55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x086470', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T16:46:29.000Z'}}, {'blockNum': '0x58c6c4', 'uniqueId': '0xa78e96fbdbfd5e87f50d52e89e508d025393f6102fe373b62fe2c49100405fb7:log:0', 'hash': '0xa78e96fbdbfd5e87f50d52e89e508d025393f6102fe373b62fe2c49100405fb7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'value': 4222.8215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x028459f7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T17:51:59.000Z'}}, {'blockNum': '0x58c756', 'uniqueId': '0xeac80546696a2c26f7a63ff59ac7c82b581e97e1353b0fbdcc16d0dd29090d70:log:7', 'hash': '0xeac80546696a2c26f7a63ff59ac7c82b581e97e1353b0fbdcc16d0dd29090d70', 'from': '0x36b551fe9ef59ec43f0748a593125656c9a0e24b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1221.158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xba557c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T18:31:36.000Z'}}, {'blockNum': '0x58c760', 'uniqueId': '0x98c0656a4160f1b6e78c3e17fc515cda7b3a43d43424df50fe625f6ab819d1ec:log:2', 'hash': '0x98c0656a4160f1b6e78c3e17fc515cda7b3a43d43424df50fe625f6ab819d1ec', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6c771f2c6b3153f8af6523de85c1e43f994033ee', 'value': 2775.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01a78db0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T18:33:51.000Z'}}, {'blockNum': '0x58c77b', 'uniqueId': '0xea9c01e243b61d504e5fec082fc8a6e90e1b9550e9edda7fc68baee59d12a19b:log:1', 'hash': '0xea9c01e243b61d504e5fec082fc8a6e90e1b9550e9edda7fc68baee59d12a19b', 'from': '0xcd93073695a049097f6e13daed6c4259c2eea16f', 'to': '0x700495674fd271271fc7e1ebe95146e3d806465d', 'value': 955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x91b8b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T18:40:21.000Z'}}, {'blockNum': '0x58c7a9', 'uniqueId': '0xd75716d4df1a799a789e2b9d6502541bf50bb0a96555c5d0ab3cd40c7216fccd:log:32', 'hash': '0xd75716d4df1a799a789e2b9d6502541bf50bb0a96555c5d0ab3cd40c7216fccd', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02695ee0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T18:51:38.000Z'}}, {'blockNum': '0x58c7a9', 'uniqueId': '0x2475b9998b790f9dff9db3442e7b932552eba0bd6a2c44b9143c9ba68610b740:log:43', 'hash': '0x2475b9998b790f9dff9db3442e7b932552eba0bd6a2c44b9143c9ba68610b740', 'from': '0x700495674fd271271fc7e1ebe95146e3d806465d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x91b8b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T18:51:38.000Z'}}, {'blockNum': '0x58c838', 'uniqueId': '0xade4cdf7fdb76c28d1d622609391d281fb89cf5489792472ff0ccce5571e13be:log:5', 'hash': '0xade4cdf7fdb76c28d1d622609391d281fb89cf5489792472ff0ccce5571e13be', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xed33a3e55531efc3f49d060bf646d752a3af3d2d', 'value': 3107.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01da31f2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T19:29:34.000Z'}}, {'blockNum': '0x58c938', 'uniqueId': '0x763b9035eb870d270526e7b68e9005c3a5a1ed4e456048a0ed6c236025c035f6:log:5', 'hash': '0x763b9035eb870d270526e7b68e9005c3a5a1ed4e456048a0ed6c236025c035f6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x57081aa8c3887efaa4181c61aefcfada6b3aef7b', 'value': 10.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01a5e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T20:37:06.000Z'}}, {'blockNum': '0x58c98f', 'uniqueId': '0x8c5c5402d4818293e949a025b02081e0aaefe029a269f654a3d12f155dd823c4:log:3', 'hash': '0x8c5c5402d4818293e949a025b02081e0aaefe029a269f654a3d12f155dd823c4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdff13c1cd58b5e6e9dacae19246dba54decc077d', 'value': 5107.683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030b5ede', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T20:59:02.000Z'}}, {'blockNum': '0x58cc67', 'uniqueId': '0x8ea8bc0ae8e0bb90d4859a7b0a68679a3413938bb29f777a978e93af6c39e683:log:1', 'hash': '0x8ea8bc0ae8e0bb90d4859a7b0a68679a3413938bb29f777a978e93af6c39e683', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 5325.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032c9504', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-19T23:55:48.000Z'}}, {'blockNum': '0x58cd87', 'uniqueId': '0x7acc3a0f4ad4464fe3fa84cb17d3d61dbacf65c582eb5208b31191cb77c18638:log:3', 'hash': '0x7acc3a0f4ad4464fe3fa84cb17d3d61dbacf65c582eb5208b31191cb77c18638', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe5d51bdf3c537d625a56c4c3737b30bd30bd312d', 'value': 8835.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x054434a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-20T01:06:58.000Z'}}, {'blockNum': '0x58cdc0', 'uniqueId': '0xbb7a1d78b68383876d185e9448ffdf4741f57cc6b3c52ad402eebf0e2b85ce03:log:5', 'hash': '0xbb7a1d78b68383876d185e9448ffdf4741f57cc6b3c52ad402eebf0e2b85ce03', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'value': 1995.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01308120', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-06-20T01:18:54.000Z'}}]}}
Number of returned transfers:  41
Answer is complete
 
symbol            CTXC
group              TCC
date        2021-01-07
hour             15:59
exchange       binance
Name: 550, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CTXC, Contract: 
Datetime timestamps:  2021-01-07 15:59:00 2021-01-07 03:59:00 2021-01-08 03:59:00
Unix timestamps:  1609988340.0 1610074740.0
Hex Block Numbers:  0xb113fc 0xb12d39
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ONG
group              TCC
date        2021-01-11
hour             16:00
exchange       binance
Name: 551, dtype: object
HERE
{'ontology': ''}
No contract for ethereum specified
 Symbol: ONG, Contract: 
Datetime timestamps:  2021-01-11 16:00:00 2021-01-11 04:00:00 2021-01-12 04:00:00
Unix timestamps:  1610334000.0 1610420400.0
Hex Block Numbers:  0xb179b6 0xb19351
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           STEEM
group              TCC
date        2021-01-18
hour             17:00
exchange       binance
Name: 552, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: STEEM, Contract: 
Datetime timestamps:  2021-01-18 17:00:00 2021-01-18 05:00:00 2021-01-19 05:00:00
Unix timestamps:  1610942400.0 1611028800.0
Hex Block Numbers:  0xb22d1d 0xb24669
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             DLT
group              TCG
date        2018-03-22
hour             16:00
exchange       binance
Name: 557, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2018-03-22 16:00:00 2018-03-22 04:00:00 2018-03-23 04:00:00
Unix timestamps:  1521687600.0 1521774000.0
Hex Block Numbers:  0x50da3c 0x50f1bc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x50dafb', 'uniqueId': '0xb73c287b6f48b662141668f057d8601411dcd81eafbe35e70c5bfade04f177d4:log:72', 'hash': '0xb73c287b6f48b662141668f057d8601411dcd81eafbe35e70c5bfade04f177d4', 'from': '0xe629f5ed94561a2e8a2572b46eef3bfb4419162a', 'to': '0x4a7e781cadb1e4d240113411ecf5383a654ba389', 'value': 10229.8448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x022a8f9d8d8f30f40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T03:44:23.000Z'}}, {'blockNum': '0x50dbf9', 'uniqueId': '0xca99d8681c3f8e0853a5a13c8a2b43c96283b3c86da0dc2798ad15fa6ed4a5e6:log:4', 'hash': '0xca99d8681c3f8e0853a5a13c8a2b43c96283b3c86da0dc2798ad15fa6ed4a5e6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdb85a939171be6da743b6ff9f1067bca8258446a', 'value': 17515.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x03b5819de5f69f6a0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T04:42:52.000Z'}}, {'blockNum': '0x50dc19', 'uniqueId': '0x98ee6c5aa0e57b8cf7936bb36e49ccd856494c3b9d5ba19723f7a8832d5235a2:log:1', 'hash': '0x98ee6c5aa0e57b8cf7936bb36e49ccd856494c3b9d5ba19723f7a8832d5235a2', 'from': '0x53b4cb1831dbfaffb0774a933950930f7c0328db', 'to': '0xae5cf27f3930d8c9f87e5aa7d35de64987cf2589', 'value': 2603.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x8d200b85201e6a0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T04:51:39.000Z'}}, {'blockNum': '0x50dceb', 'uniqueId': '0xce9002af1f54d390c47ec920ddb45d65c3f89b889cc5adc349cbbe2db7602450:log:0', 'hash': '0xce9002af1f54d390c47ec920ddb45d65c3f89b889cc5adc349cbbe2db7602450', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x5ca51af7787d547b23328ca30eb4dae4e41bc4a6', 'value': 130.86058393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x07180e2fc157d74400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T05:36:11.000Z'}}, {'blockNum': '0x50df50', 'uniqueId': '0x98178bf577e2788f03f9d816e148357598927c9a00e1bcf5003a611e439fac79:log:12', 'hash': '0x98178bf577e2788f03f9d816e148357598927c9a00e1bcf5003a611e439fac79', 'from': '0x4a08bfa6f70a5a2f663d4ee3dbdbac71956a9d48', 'to': '0x2146dbe5142c8e068627e88cffb810b2d71f0b3c', 'value': 4142.169216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xe08c253bcc86480000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T08:03:38.000Z'}}, {'blockNum': '0x50dfd0', 'uniqueId': '0x71c675bbb6faad134b14e750dc572e7e04c6607db405d0585f930ed70d2c46b8:log:20', 'hash': '0x71c675bbb6faad134b14e750dc572e7e04c6607db405d0585f930ed70d2c46b8', 'from': '0xd14f4e23ad10d0de1f173e00277859e2192697e5', 'to': '0x5f1356f7f4208b82177b5ceaefe6036d281eccff', 'value': 2239.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x796b781907efec0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T08:36:41.000Z'}}, {'blockNum': '0x50e018', 'uniqueId': '0x5321e04701603a1a407f94fcbb966deababb019a239751e528a89e4fb212492c:log:10', 'hash': '0x5321e04701603a1a407f94fcbb966deababb019a239751e528a89e4fb212492c', 'from': '0xd800182ea6c4a6b29a090b5b646bf73924d4a9e2', 'to': '0x5f1356f7f4208b82177b5ceaefe6036d281eccff', 'value': 1790.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x610f9185c1eecc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T08:53:43.000Z'}}, {'blockNum': '0x50e03d', 'uniqueId': '0x8fcf3f853e308bb940c7eba3a72d019ee4460e934e0ca110f4b9e2bc9a8dbcba:log:44', 'hash': '0x8fcf3f853e308bb940c7eba3a72d019ee4460e934e0ca110f4b9e2bc9a8dbcba', 'from': '0x5f1356f7f4208b82177b5ceaefe6036d281eccff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4030.256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xda7b099ec9deb80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T09:03:20.000Z'}}, {'blockNum': '0x50e0bb', 'uniqueId': '0x854d417076eb106e41e520d8dcd20d5ab21cd68e356e867e669869beb3bf5401:log:12', 'hash': '0x854d417076eb106e41e520d8dcd20d5ab21cd68e356e867e669869beb3bf5401', 'from': '0xc20a284647a161d9832fc4e7b3129671fa2d0c79', 'to': '0xc78f14500c962b17e47c2e56542a746bf9a2d095', 'value': 1554.24388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5441777e1f7cda8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T09:34:25.000Z'}}, {'blockNum': '0x50e156', 'uniqueId': '0xf273cd7f38f208aa367c55af06fed2a694d8251dea61eaf60b078523f724f1d0:log:11', 'hash': '0xf273cd7f38f208aa367c55af06fed2a694d8251dea61eaf60b078523f724f1d0', 'from': '0x78805795dc090222db3f7b00f1c1325eec40a44d', 'to': '0xceceb9d581b900f37d23d6239802db9d02760691', 'value': 1250.62438096983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x43cbe658666d832580', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T10:12:19.000Z'}}, {'blockNum': '0x50e16a', 'uniqueId': '0x78a0306fdf42ced37672c57c0f9354ce421e4d80617b13f8d4a7fe47b781a022:log:7', 'hash': '0x78a0306fdf42ced37672c57c0f9354ce421e4d80617b13f8d4a7fe47b781a022', 'from': '0x78805795dc090222db3f7b00f1c1325eec40a44d', 'to': '0x430ea3580f04c56ae65de4d66d206e0be089a982', 'value': 6171.18321688229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014e8a5f076ca94c0080', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T10:17:05.000Z'}}, {'blockNum': '0x50e174', 'uniqueId': '0x478d4bcc1f89e3b8c1d92e8ceae4b1550ba29d960a51e4ac25de1233cab99149:log:53', 'hash': '0x478d4bcc1f89e3b8c1d92e8ceae4b1550ba29d960a51e4ac25de1233cab99149', 'from': '0x78805795dc090222db3f7b00f1c1325eec40a44d', 'to': '0x8e4c17cbfeb8854a69361adee1914ef40130031a', 'value': 5875.1973543892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x013e7ebe01aff30d5400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T10:20:03.000Z'}}, {'blockNum': '0x50e1c1', 'uniqueId': '0xd333e0d7d36728bb1bad22d11f46ab6622e198a8ec49c680314bcae211da8a8c:log:61', 'hash': '0xd333e0d7d36728bb1bad22d11f46ab6622e198a8ec49c680314bcae211da8a8c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6fc4dd71ef127fd1eed14981692bbbf1a6ca5a1d', 'value': 15916.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x035ed3ba5c9044930000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T10:39:40.000Z'}}, {'blockNum': '0x50e28e', 'uniqueId': '0x7894f7cf62bf0f7b19146e6d3fcb01478ebed22b9c2ea8e96336d7d2b202f554:log:44', 'hash': '0x7894f7cf62bf0f7b19146e6d3fcb01478ebed22b9c2ea8e96336d7d2b202f554', 'from': '0x15ca7443397581b5e0e92e34b06e3a6e833f9921', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 1639.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x58e6af0f3f27000000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T11:33:57.000Z'}}, {'blockNum': '0x50e29a', 'uniqueId': '0x6213cdc93baa49ed180e4531973708b83b8364eb81ca34d4d871e9cdd1ce4aaf:log:6', 'hash': '0x6213cdc93baa49ed180e4531973708b83b8364eb81ca34d4d871e9cdd1ce4aaf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe8c56a43d29a97ea5d5e285d049f269352b7290c', 'value': 17322.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x03ab0b3428856d060000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T11:36:25.000Z'}}, {'blockNum': '0x50e2a2', 'uniqueId': '0x3dcaff4a340bcb006f00fa4503def6978f471351a9e9a20c8c770a68b3c7a4b7:log:53', 'hash': '0x3dcaff4a340bcb006f00fa4503def6978f471351a9e9a20c8c770a68b3c7a4b7', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x15ca7443397581b5e0e92e34b06e3a6e833f9921', 'value': 1639.8045899261037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x58e4dc327b10815e46', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T11:39:43.000Z'}}, {'blockNum': '0x50e2b3', 'uniqueId': '0x99f729131189b1fd0601ffaaca8fef03c9287a3fcdae566d137ecf397a3304c7:log:2', 'hash': '0x99f729131189b1fd0601ffaaca8fef03c9287a3fcdae566d137ecf397a3304c7', 'from': '0x15ca7443397581b5e0e92e34b06e3a6e833f9921', 'to': '0x7d3402feb5cf00dab45f5fda1e6e6c09b0e7eba6', 'value': 1639.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x58e3689e7f40020000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T11:43:17.000Z'}}, {'blockNum': '0x50e2ef', 'uniqueId': '0x5341418abd9f94cb0c39da11621d645a4c0686fd0bc06e0642af79bee74b0480:log:7', 'hash': '0x5341418abd9f94cb0c39da11621d645a4c0686fd0bc06e0642af79bee74b0480', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x0929d2fb1dd5e5d831db5b95c4e14a3547ff42c2', 'value': 1004.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x367a7b9c8bf4cf0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T11:56:03.000Z'}}, {'blockNum': '0x50e3b3', 'uniqueId': '0xc9e6f238d3a2aaf363484ffcfec5450cc91cde2a5c02c0e7572225e3fdb3dcd8:log:31', 'hash': '0xc9e6f238d3a2aaf363484ffcfec5450cc91cde2a5c02c0e7572225e3fdb3dcd8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1d54e8385bd5849c046c11329e5dd18dface3a9c', 'value': 82.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x04762455f4b6a60000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T12:39:27.000Z'}}, {'blockNum': '0x50e3cf', 'uniqueId': '0x004878ea04538cdbd47a387c969eee1913b2b5245832170ac51cc156f9c8dc53:log:28', 'hash': '0x004878ea04538cdbd47a387c969eee1913b2b5245832170ac51cc156f9c8dc53', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1d54e8385bd5849c046c11329e5dd18dface3a9c', 'value': 24846.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0542f401817b55520000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T12:45:59.000Z'}}, {'blockNum': '0x50e40a', 'uniqueId': '0xa8483ba8786b0828dd9373be2a926cae653d0e770410134be27be09d366743c6:log:2', 'hash': '0xa8483ba8786b0828dd9373be2a926cae653d0e770410134be27be09d366743c6', 'from': '0x573442828c569afb707909dc2f5b9be3649fc960', 'to': '0xb90f7d90d8b910e52a23f5793858c4a5aa58097e', 'value': 6600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0165c96647b38a200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T13:00:48.000Z'}}, {'blockNum': '0x50e410', 'uniqueId': '0x95a7c67ecbdfc00a8373ba213ba54984246688f214a1cdf5b3d76b8500edda77:log:61', 'hash': '0x95a7c67ecbdfc00a8373ba213ba54984246688f214a1cdf5b3d76b8500edda77', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x561f6057f3634c087e865ddc95545e43cb2764cd', 'value': 82.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x04762455f4b6a60000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T13:02:33.000Z'}}, {'blockNum': '0x50e424', 'uniqueId': '0xea86c6c24b3121ca96791be34a66dfc6b6859e55a0a9e365a0a6faebc72935c3:log:46', 'hash': '0xea86c6c24b3121ca96791be34a66dfc6b6859e55a0a9e365a0a6faebc72935c3', 'from': '0x83a09f6f13c457c05d2bc5f4622b82b0022ea2bc', 'to': '0xed65f2831a8bb4cfea0ecf2cd4f974f2e0f5b302', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x79f905c6fd34e80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T13:07:29.000Z'}}, {'blockNum': '0x50e43f', 'uniqueId': '0xb715e32dd0bfae73222f3099dc8a7a5a5e77fc527d5c0ecda258aa2cbf49e80a:log:80', 'hash': '0xb715e32dd0bfae73222f3099dc8a7a5a5e77fc527d5c0ecda258aa2cbf49e80a', 'from': '0xb90f7d90d8b910e52a23f5793858c4a5aa58097e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0165c96647b38a200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T13:13:09.000Z'}}, {'blockNum': '0x50e44a', 'uniqueId': '0x7f04fadb0fe66d3ed71d0db591257c26fc097f8dc66c3d8f3698fe143a94579d:log:43', 'hash': '0x7f04fadb0fe66d3ed71d0db591257c26fc097f8dc66c3d8f3698fe143a94579d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x561f6057f3634c087e865ddc95545e43cb2764cd', 'value': 39864.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x08711075b84c0d1c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T13:16:04.000Z'}}, {'blockNum': '0x50e454', 'uniqueId': '0xa6fcf52f9a4a51722e434661c9d70c59bdf48a9b3038d99f2d9da3c05ccbd87c:log:9', 'hash': '0xa6fcf52f9a4a51722e434661c9d70c59bdf48a9b3038d99f2d9da3c05ccbd87c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x46b102b9342b63b0de87578262948ed8b24886e8', 'value': 4982.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010e174d5ca4acb60000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T13:18:10.000Z'}}, {'blockNum': '0x50e49c', 'uniqueId': '0x9d4cdafe39b39ab5f8c19481d0bfcc8094e79f4e843dae53d2eb881bc1276449:log:10', 'hash': '0x9d4cdafe39b39ab5f8c19481d0bfcc8094e79f4e843dae53d2eb881bc1276449', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xed65f2831a8bb4cfea0ecf2cd4f974f2e0f5b302', 'value': 3370.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xb6b44ee962a3060000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T13:36:54.000Z'}}, {'blockNum': '0x50e4e3', 'uniqueId': '0xef0f2c1cc92ccb87cf43ddff1a362b30a066c7b4b836ab5ef782af5e60973dfa:log:42', 'hash': '0xef0f2c1cc92ccb87cf43ddff1a362b30a066c7b4b836ab5ef782af5e60973dfa', 'from': '0xed65f2831a8bb4cfea0ecf2cd4f974f2e0f5b302', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5620.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0130ad54b05fd7ee0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T13:53:11.000Z'}}, {'blockNum': '0x50e55b', 'uniqueId': '0x0d53a3715e44e963f5321a53cdc782f265c4340aa33bc52b176ba0172653a875:log:30', 'hash': '0x0d53a3715e44e963f5321a53cdc782f265c4340aa33bc52b176ba0172653a875', 'from': '0x7d3402feb5cf00dab45f5fda1e6e6c09b0e7eba6', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 1639.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x58e3689e7f40020000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T14:20:16.000Z'}}, {'blockNum': '0x50e65e', 'uniqueId': '0x23cc4cad9059992933c2ff8e3688c8d48990651ffdb7025dc20f4080ec7ff345:log:136', 'hash': '0x23cc4cad9059992933c2ff8e3688c8d48990651ffdb7025dc20f4080ec7ff345', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x6803b1c4bc678ba789a10a5b2240180dbce59563', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:19:33.000Z'}}, {'blockNum': '0x50e66e', 'uniqueId': '0xa417f29026f233f6f0ceb37d9c70c90d34ca8a53abce0eca7f68e0cee7a81404:log:22', 'hash': '0xa417f29026f233f6f0ceb37d9c70c90d34ca8a53abce0eca7f68e0cee7a81404', 'from': '0x6803b1c4bc678ba789a10a5b2240180dbce59563', 'to': '0xcfef1fe54ef33bbc52ec79c84ae62e3b8f7ea5fd', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:23:12.000Z'}}, {'blockNum': '0x50e677', 'uniqueId': '0x2e296f71a7ac97dd62b37c9d54e2e32e618446972fc349b2e5a66c4cbbb871d2:log:13', 'hash': '0x2e296f71a7ac97dd62b37c9d54e2e32e618446972fc349b2e5a66c4cbbb871d2', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xcf8b0404c019fd7105f60b58b66897c669dcc156', 'value': 428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1733b1745bdb300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:26:08.000Z'}}, {'blockNum': '0x50e69f', 'uniqueId': '0x5ea646de654f29ddf93a4903c27e9ffacbce78bbf59750fa71d917804b1eac66:log:3', 'hash': '0x5ea646de654f29ddf93a4903c27e9ffacbce78bbf59750fa71d917804b1eac66', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1080.77287816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3a96bc9681a3552000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:37:28.000Z'}}, {'blockNum': '0x50e6aa', 'uniqueId': '0x7623546454aab60d40824dd28a6a737d4b69aeedaad8c63bf1ee55db3c0908e8:log:48', 'hash': '0x7623546454aab60d40824dd28a6a737d4b69aeedaad8c63bf1ee55db3c0908e8', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x6803b1c4bc678ba789a10a5b2240180dbce59563', 'value': 198.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0ac1e8809eac840000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:40:17.000Z'}}, {'blockNum': '0x50e6b8', 'uniqueId': '0x113b320ce6d2469d970269f9294bd20a6cfc985217b85ffc19fdd3d710837bcf:log:4', 'hash': '0x113b320ce6d2469d970269f9294bd20a6cfc985217b85ffc19fdd3d710837bcf', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xa9135c3fb7dbfa2559a9551bb8920be679c5d748', 'value': 87.00193585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x04b764f7b31692a400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:42:34.000Z'}}, {'blockNum': '0x50e6ba', 'uniqueId': '0xe8de22a10bdf300ba92601cdee454081a2c51421af6aff2170ba43c75d307b81:log:62', 'hash': '0xe8de22a10bdf300ba92601cdee454081a2c51421af6aff2170ba43c75d307b81', 'from': '0x6803b1c4bc678ba789a10a5b2240180dbce59563', 'to': '0xcfef1fe54ef33bbc52ec79c84ae62e3b8f7ea5fd', 'value': 198.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0ac1e8809eac840000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:42:53.000Z'}}, {'blockNum': '0x50e6bd', 'uniqueId': '0xbd3e4766df2a1f9c1c0ae718bfd5a4356ed0624acd8b677ba2cb7f64cdcc8da6:log:8', 'hash': '0xbd3e4766df2a1f9c1c0ae718bfd5a4356ed0624acd8b677ba2cb7f64cdcc8da6', 'from': '0x91a2ae759570eccf74ab9e7379c389ca2c68488c', 'to': '0xe19263632a11416bd28fc3919213fe987bc4837b', 'value': 5177.034896558412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0118a5cab1503d490ca0', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:43:42.000Z'}}, {'blockNum': '0x50e6c1', 'uniqueId': '0xdaafa006167fcf935467eaf597c2d5208d53db2ae7b01e4826c901c65d2dd506:log:3', 'hash': '0xdaafa006167fcf935467eaf597c2d5208d53db2ae7b01e4826c901c65d2dd506', 'from': '0xcc92e4f0eff7b3b713543fd0ef89961b78e6102e', 'to': '0x60193db7ad4f93e6c47fa292ae0ca317d686cc32', 'value': 983.843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3555907be05aa38000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:44:38.000Z'}}, {'blockNum': '0x50e6d3', 'uniqueId': '0xc787bdcd5315b54fa39c79cdac73fea3bd69ec013c535ea2ecb72d2e902122e5:log:84', 'hash': '0xc787bdcd5315b54fa39c79cdac73fea3bd69ec013c535ea2ecb72d2e902122e5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x38ed935bf7c114eab89dc02a49c5e53a8f8b4201', 'value': 140462.67899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1dbe7f410b528c699c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:50:03.000Z'}}, {'blockNum': '0x50e6e3', 'uniqueId': '0xdc9a49d1b1a3e32cd698f1ff9225fc5017439ee903e7b264af066de0a7ac4431:log:0', 'hash': '0xdc9a49d1b1a3e32cd698f1ff9225fc5017439ee903e7b264af066de0a7ac4431', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 349205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x49f270e4349d8b340000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:53:13.000Z'}}, {'blockNum': '0x50e6e3', 'uniqueId': '0x1c681ad8404da505617fba80e1ba909a9a43f8348d71c001fe67942f5fa108ec:log:8', 'hash': '0x1c681ad8404da505617fba80e1ba909a9a43f8348d71c001fe67942f5fa108ec', 'from': '0xe19263632a11416bd28fc3919213fe987bc4837b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5177.034896558412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0118a5cab1503d490ca0', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:53:13.000Z'}}, {'blockNum': '0x50e6f3', 'uniqueId': '0x870e99eb93097200452cbb28ece131af88a099a2677ae50c13a8f931dbb5ccf0:log:19', 'hash': '0x870e99eb93097200452cbb28ece131af88a099a2677ae50c13a8f931dbb5ccf0', 'from': '0x38eec8cd0f1ea8461df0561c7462794b7b7ec8ff', 'to': '0xc3353cbe91235733958f0d9606d3ca56afa26dca', 'value': 6049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0147eabd0b0641e40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:55:17.000Z'}}, {'blockNum': '0x50e6f5', 'uniqueId': '0xd80efbcea849ab9c366874d1499f6cea8b7a0fd39030ba815e9cba128fdaab6a:log:6', 'hash': '0xd80efbcea849ab9c366874d1499f6cea8b7a0fd39030ba815e9cba128fdaab6a', 'from': '0x51b6710ab29e79396cc97b1a2dbb0f4791147fab', 'to': '0x685be119ef821b785d0928c41cef196c8f021e19', 'value': 2001.8613983462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x6c85685f7ac8002600', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:55:36.000Z'}}, {'blockNum': '0x50e6ff', 'uniqueId': '0xf8e8e49c4f3294b44eee8546344fb263134d0af72eedaf623d911fcfa7a8cf0d:log:4', 'hash': '0xf8e8e49c4f3294b44eee8546344fb263134d0af72eedaf623d911fcfa7a8cf0d', 'from': '0xa012282dd10ac74b830c4d7fb9293e8e08217ec7', 'to': '0xde4ec92edae28f2b359e74e35fc60a68c39b6b06', 'value': 115.32730769231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x06407ce750de4ff180', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T15:58:17.000Z'}}, {'blockNum': '0x50e710', 'uniqueId': '0xbdb943a019004b26124cdfc681178b6ff3f93a9da6b08e36daddcf558de74851:log:28', 'hash': '0xbdb943a019004b26124cdfc681178b6ff3f93a9da6b08e36daddcf558de74851', 'from': '0xc3353cbe91235733958f0d9606d3ca56afa26dca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0147eabd0b0641e40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T16:03:03.000Z'}}, {'blockNum': '0x50e717', 'uniqueId': '0x8b6df174c6392d6892f68afb269507b9af74e283a88da8514b91dd67bb90bb29:log:13', 'hash': '0x8b6df174c6392d6892f68afb269507b9af74e283a88da8514b91dd67bb90bb29', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xd9dbd02bd82555c5a203d0b621876c36af08681c', 'value': 31.11315527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01afc821df9dec3c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T16:06:07.000Z'}}, {'blockNum': '0x50e76c', 'uniqueId': '0x899e1a3f908c082d577af02e16abe2e9c6cd1f8d470bf9f79d1d00501e6adc48:log:63', 'hash': '0x899e1a3f908c082d577af02e16abe2e9c6cd1f8d470bf9f79d1d00501e6adc48', 'from': '0xdb85a939171be6da743b6ff9f1067bca8258446a', 'to': '0x568087d6476ffc20c87f42c0cee9c482eee85d4b', 'value': 21724.02963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0499a97939a4a2a1e000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T16:27:03.000Z'}}, {'blockNum': '0x50e782', 'uniqueId': '0x728155158aaa75a9a899c911cc18879f2c60de323466a1a28e058d555ae1ee73:log:39', 'hash': '0x728155158aaa75a9a899c911cc18879f2c60de323466a1a28e058d555ae1ee73', 'from': '0x568087d6476ffc20c87f42c0cee9c482eee85d4b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21724.02963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0499a97939a4a2a1e000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T16:34:16.000Z'}}, {'blockNum': '0x50e793', 'uniqueId': '0x5137f54e9d4213ca842240a79551fa1b682d1ef35fbcd9df64878bea553c226e:log:1', 'hash': '0x5137f54e9d4213ca842240a79551fa1b682d1ef35fbcd9df64878bea553c226e', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xcf8b0404c019fd7105f60b58b66897c669dcc156', 'value': 301.08351983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x10525f8a13976ddc00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T16:38:26.000Z'}}, {'blockNum': '0x50e794', 'uniqueId': '0x6d9e4530d3b7aa5ff913517b805f3387e9bb6543cf90bee4d8b2f0a73dea90b3:log:25', 'hash': '0x6d9e4530d3b7aa5ff913517b805f3387e9bb6543cf90bee4d8b2f0a73dea90b3', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x606bb2bd83194d4a7f57d4911c517b7e708a114a', 'value': 949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x33720547fb85b40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T16:38:46.000Z'}}, {'blockNum': '0x50e794', 'uniqueId': '0x970c373e854d0be17c5b2b06aef5feb47c54af1a28f1f8a7f3c4b86738e90e91:log:31', 'hash': '0x970c373e854d0be17c5b2b06aef5feb47c54af1a28f1f8a7f3c4b86738e90e91', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 1363.01694456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x49e3a8f1810918e000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T16:38:46.000Z'}}, {'blockNum': '0x50e7a8', 'uniqueId': '0xb39008cd62e17b7bb1fbbe4d1d82045e586af084019e7d4f2cf8b60453fb12a9:log:10', 'hash': '0xb39008cd62e17b7bb1fbbe4d1d82045e586af084019e7d4f2cf8b60453fb12a9', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3568.17694456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xc16e670a10cd7ce000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T16:43:03.000Z'}}, {'blockNum': '0x50e8af', 'uniqueId': '0x29befc6766170656cab521279cc65f7533dbdd29d78f4a9fe1be83919368f22d:log:17', 'hash': '0x29befc6766170656cab521279cc65f7533dbdd29d78f4a9fe1be83919368f22d', 'from': '0x09fa845897632f71dce16ddd6de0b10b100d3e5a', 'to': '0x99624fe2276da8e4eb441410ed1e13a31577cfde', 'value': 1650.3579151068436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x59775123d195b07fa3', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T17:43:47.000Z'}}, {'blockNum': '0x50e8b0', 'uniqueId': '0xb1c4e1dec17a1ec75d11375cf0647bde90c9cb039d8b23c57479d912b019a5a5:log:83', 'hash': '0xb1c4e1dec17a1ec75d11375cf0647bde90c9cb039d8b23c57479d912b019a5a5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c05976dada06c59daf248da8edb103a7bc7d86d', 'value': 497.935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1afe3c7c53ca218000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T17:43:51.000Z'}}, {'blockNum': '0x50e8b4', 'uniqueId': '0x706d4e96134e34910ee67a092dcb12e34832461a2adc2071c2b4079a431f6ce0:log:39', 'hash': '0x706d4e96134e34910ee67a092dcb12e34832461a2adc2071c2b4079a431f6ce0', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x606bb2bd83194d4a7f57d4911c517b7e708a114a', 'value': 345.27445208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x12b7a544d306086000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T17:44:52.000Z'}}, {'blockNum': '0x50e8fe', 'uniqueId': '0x33fb322951a97bc8b7672c02ccb70d22f8f52c3c42933719c07774b3f3567a14:log:5', 'hash': '0x33fb322951a97bc8b7672c02ccb70d22f8f52c3c42933719c07774b3f3567a14', 'from': '0xc93dd80f5e03cb935f4f9557ede434b2afd1fb94', 'to': '0xeee6421335238e14a202d21f57ccf772298245f6', 'value': 337.499765625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x124bc008af7fb77a00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T18:02:15.000Z'}}, {'blockNum': '0x50e905', 'uniqueId': '0xbd72293934e1959b3a812e8fa5709f11454cbd4e2d2aec3d935d55323bbd5806:log:7', 'hash': '0xbd72293934e1959b3a812e8fa5709f11454cbd4e2d2aec3d935d55323bbd5806', 'from': '0x7b60b7de456be02b03965b33efe0cd6655ebe658', 'to': '0xeee6421335238e14a202d21f57ccf772298245f6', 'value': 678.9126231917455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x24cdce29c2789dc7a0', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T18:03:35.000Z'}}, {'blockNum': '0x50e921', 'uniqueId': '0x5582d2501d5e922e2fdf77bf5af492814e59e3dee1ad652fe70b5dce5f9374e1:log:29', 'hash': '0x5582d2501d5e922e2fdf77bf5af492814e59e3dee1ad652fe70b5dce5f9374e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x3d697c0910fb6ccd4411163336503dc62d24a1ff', 'value': 2415.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x82f5208adc66260000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T18:09:49.000Z'}}, {'blockNum': '0x50eb38', 'uniqueId': '0x46fb76cd0caf1454ac6539500c4bb4021c1aea304999268f1aeae89cf5551978:log:2', 'hash': '0x46fb76cd0caf1454ac6539500c4bb4021c1aea304999268f1aeae89cf5551978', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x75ec342ec1500202919ecd92ab19d580cea07c4e', 'value': 282.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0f4db3124f7cc60000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T20:17:55.000Z'}}, {'blockNum': '0x50ec27', 'uniqueId': '0x98ae30f2ebd4b20811b01a6d80251ec9fd2ff383eed80f31972f483f7b4fc4a5:log:0', 'hash': '0x98ae30f2ebd4b20811b01a6d80251ec9fd2ff383eed80f31972f483f7b4fc4a5', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x0929d2fb1dd5e5d831db5b95c4e14a3547ff42c2', 'value': 261.97420121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0e339f54006ec24400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T21:15:01.000Z'}}, {'blockNum': '0x50ee21', 'uniqueId': '0x1e6fc5a4e10e377f8444048612a6da7723b9772d400b1bb4c197a5e7c7f402ff:log:58', 'hash': '0x1e6fc5a4e10e377f8444048612a6da7723b9772d400b1bb4c197a5e7c7f402ff', 'from': '0x5039183a8e583e03d79e46a614766bd670465436', 'to': '0x95aabf1c4a76304d3395309d6315bcba78abc409', 'value': 9477.9573211851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0201cd149f3f6ecb6b00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T23:15:33.000Z'}}, {'blockNum': '0x50ee4e', 'uniqueId': '0x4678312ca130bb10151499fe5d2858c54c70a62bb710449765e5eaeaebe5ef71:log:0', 'hash': '0x4678312ca130bb10151499fe5d2858c54c70a62bb710449765e5eaeaebe5ef71', 'from': '0x13b7aaca38e4e982a3a8c3a40854f7bd4ffe8338', 'to': '0xf2e9ffac46088d5fc55a4fcb45bd68bdfa868cd5', 'value': 309.78214923077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x10cb17476de1181080', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T23:28:12.000Z'}}, {'blockNum': '0x50ee5f', 'uniqueId': '0x85782e2ff70f8c03e015a644dbb65bc3ea617c09b86b93fbfde021804e35b1e5:log:5', 'hash': '0x85782e2ff70f8c03e015a644dbb65bc3ea617c09b86b93fbfde021804e35b1e5', 'from': '0x95aabf1c4a76304d3395309d6315bcba78abc409', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9477.9573211851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0201cd149f3f6ecb6b00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-22T23:33:07.000Z'}}, {'blockNum': '0x50ef18', 'uniqueId': '0x4584d1fb3c67bc8b1276ce7de8afb13335884d0f8b798a42acbc002fc877100d:log:12', 'hash': '0x4584d1fb3c67bc8b1276ce7de8afb13335884d0f8b798a42acbc002fc877100d', 'from': '0x0d8571cf484de9f090edb7e51882d60402212d83', 'to': '0x8cce75bb965ab541fa5e5bc31e30d35a4d75c0cf', 'value': 48484.6247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0a445b5562194e3fc000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T00:15:21.000Z'}}, {'blockNum': '0x50ef3b', 'uniqueId': '0x9aa22648161d59616b28e5c67fecda54998aea9c7e2abfd2ffdd514ca9656e0a:log:12', 'hash': '0x9aa22648161d59616b28e5c67fecda54998aea9c7e2abfd2ffdd514ca9656e0a', 'from': '0x8cce75bb965ab541fa5e5bc31e30d35a4d75c0cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48484.6247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0a445b5562194e3fc000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T00:23:20.000Z'}}, {'blockNum': '0x50efb5', 'uniqueId': '0x4b4ff27cef8818a0fbe1c5eca70f208c744346de48ba89db100b5453af879ae3:log:2', 'hash': '0x4b4ff27cef8818a0fbe1c5eca70f208c744346de48ba89db100b5453af879ae3', 'from': '0x82d9ce043744bdf10febd5af84d9dbdeb79db2e0', 'to': '0xa6c7a786e1a4e10790ff8050094c16cda0ce52bf', 'value': 12433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02a1fe892b248fa40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T00:50:34.000Z'}}, {'blockNum': '0x50efbe', 'uniqueId': '0x79327017b80c4db4721c1a5ab2924f34f3e527d3c0db0d0f126d949bb51c987b:log:5', 'hash': '0x79327017b80c4db4721c1a5ab2924f34f3e527d3c0db0d0f126d949bb51c987b', 'from': '0xa6c7a786e1a4e10790ff8050094c16cda0ce52bf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02a1fe892b248fa40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T00:53:07.000Z'}}, {'blockNum': '0x50effe', 'uniqueId': '0x118a19c47f61a97a7e0ca7770de7245ad2a4b6e65f5d7fafbc5dbaacc7eecda2:log:77', 'hash': '0x118a19c47f61a97a7e0ca7770de7245ad2a4b6e65f5d7fafbc5dbaacc7eecda2', 'from': '0x82d9ce043744bdf10febd5af84d9dbdeb79db2e0', 'to': '0xaa2069f9c7dfb59dc81855400c762bc130b41aae', 'value': 10716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0244ea5fc832ddf00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T01:05:55.000Z'}}, {'blockNum': '0x50f046', 'uniqueId': '0xa0a2c96b9fe745b86c8f4afc3bda7e7962e723333977c7efdc3f92ab4733b17a:log:15', 'hash': '0xa0a2c96b9fe745b86c8f4afc3bda7e7962e723333977c7efdc3f92ab4733b17a', 'from': '0xaa2069f9c7dfb59dc81855400c762bc130b41aae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0244ea5fc832ddf00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T01:23:02.000Z'}}, {'blockNum': '0x50f09f', 'uniqueId': '0x0578bcde3d8c5297c9d20bc182ce6321b14235d6fb719a0a9acc3004317aff38:log:9', 'hash': '0x0578bcde3d8c5297c9d20bc182ce6321b14235d6fb719a0a9acc3004317aff38', 'from': '0x4a08bfa6f70a5a2f663d4ee3dbdbac71956a9d48', 'to': '0x4a40b168b6799a0e60b44b6c483171e022a42c51', 'value': 5145.364537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0116ee46f91781409000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T01:47:18.000Z'}}, {'blockNum': '0x50f0c3', 'uniqueId': '0xdd09ec591617c4c38e7b9c3ce2dcb830cc1807765ef4a4a07052c3adf2152151:log:5', 'hash': '0xdd09ec591617c4c38e7b9c3ce2dcb830cc1807765ef4a4a07052c3adf2152151', 'from': '0x4a08bfa6f70a5a2f663d4ee3dbdbac71956a9d48', 'to': '0x602e703463aa62b078f042aaaf94c33e0f9c7d00', 'value': 3906.360756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xd3c3a54acbb25f4000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T01:57:05.000Z'}}, {'blockNum': '0x50f0f2', 'uniqueId': '0xf2e22694c6d18525ef923d3200cdf82324ef02bb497b011e2bfa72b55fb383c1:log:13', 'hash': '0xf2e22694c6d18525ef923d3200cdf82324ef02bb497b011e2bfa72b55fb383c1', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xd3802dce7f7a54d59e7a64329d287624ff3f495a', 'value': 350, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x12f939c99edab80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T02:08:30.000Z'}}, {'blockNum': '0x50f104', 'uniqueId': '0x678eea8c737122fa8d73c2d3b97ae6389d30c080def59be427543102aa3d2f8e:log:5', 'hash': '0x678eea8c737122fa8d73c2d3b97ae6389d30c080def59be427543102aa3d2f8e', 'from': '0xd3802dce7f7a54d59e7a64329d287624ff3f495a', 'to': '0xc711f622ba7c673c1c5fa275966b2168ec5e4d58', 'value': 766.0135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x298692a3bc8dafc000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T02:13:15.000Z'}}, {'blockNum': '0x50f109', 'uniqueId': '0x645e5b69de6367fe310e1d116af2e29188a56fe21ed4b4eea9ebb3b299ad385f:log:11', 'hash': '0x645e5b69de6367fe310e1d116af2e29188a56fe21ed4b4eea9ebb3b299ad385f', 'from': '0xb668159856ff7cc17a7eb6f0d8254ad3c4b760bf', 'to': '0x8753f77bf886e1fef878c1833a0923832f5ea95a', 'value': 2557.4612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x8aa3e76363cc3d0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T02:14:22.000Z'}}, {'blockNum': '0x50f10f', 'uniqueId': '0x171d457f1cf5bdc78cdaebe980cd4c290f1d47dc011f114ad95767e260fd849b:log:12', 'hash': '0x171d457f1cf5bdc78cdaebe980cd4c290f1d47dc011f114ad95767e260fd849b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc180714cab9b65dbf1e6baaf7471b39679fdca14', 'value': 3088.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa767ed59124be98000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T02:15:46.000Z'}}, {'blockNum': '0x50f125', 'uniqueId': '0xfabd89559fe81813384cec937f3f9b1c07a25e69a9fd78f88cf8145771e4df36:log:20', 'hash': '0xfabd89559fe81813384cec937f3f9b1c07a25e69a9fd78f88cf8145771e4df36', 'from': '0xb668159856ff7cc17a7eb6f0d8254ad3c4b760bf', 'to': '0x777bf9e63968283e94a00ec63dd7c774a4490ed3', 'value': 6060.97673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014890f2ef8106a7a000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T02:21:10.000Z'}}, {'blockNum': '0x50f13c', 'uniqueId': '0xa2ae973b7aa0239cc2af55f3ff835e3a0fed5073dda909fed668ff89180b00d1:log:16', 'hash': '0xa2ae973b7aa0239cc2af55f3ff835e3a0fed5073dda909fed668ff89180b00d1', 'from': '0xb668159856ff7cc17a7eb6f0d8254ad3c4b760bf', 'to': '0x7aee4a1009b4c730c7575197f0eab36b5087d8fe', 'value': 3463.41528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbbc08ad7330c0f0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T02:26:58.000Z'}}, {'blockNum': '0x50f175', 'uniqueId': '0x1ab952dab71fbd607cd6dac234ae7b4f1f504a08889ab1049f2f629fb2399c54:log:76', 'hash': '0x1ab952dab71fbd607cd6dac234ae7b4f1f504a08889ab1049f2f629fb2399c54', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x37ef3b4894d55e3a04b09d59f703c8db6259405d', 'value': 54.341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02f2220396cb808000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-23T02:41:08.000Z'}}]}}
Number of returned transfers:  78
Answer is complete
 
symbol             MDA
group              TCG
date        2018-03-25
hour             16:30
exchange       binance
Name: 558, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2018-03-25 16:30:00 2018-03-25 04:30:00 2018-03-26 04:30:00
Unix timestamps:  1521945000.0 1522031400.0
Hex Block Numbers:  0x512043 0x5137c3
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x512246', 'uniqueId': '0x5ee88a7567c8057c66af424607a8b82c0e2d6ca46d37ede44646a9c62a942b21:log:8', 'hash': '0x5ee88a7567c8057c66af424607a8b82c0e2d6ca46d37ede44646a9c62a942b21', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf0e5a5d4c886543f1d6b790b7e8631bd9788798a', 'value': 249.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0d851eca9f466c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T04:30:07.000Z'}}, {'blockNum': '0x5123fb', 'uniqueId': '0x13552151477769e7c9bda0e151bdf08a926e69573802bf5462f37e9221840083:log:5', 'hash': '0x13552151477769e7c9bda0e151bdf08a926e69573802bf5462f37e9221840083', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7424a7bcfc93c3adf3ae3ba3444c188dae195a98', 'value': 760.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x2938ab7b3a67080000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T06:15:31.000Z'}}, {'blockNum': '0x512407', 'uniqueId': '0xca56563f38ad03011f99698399bcb292f16caa5b9c0c119af6b8c4342f1db927:log:13', 'hash': '0xca56563f38ad03011f99698399bcb292f16caa5b9c0c119af6b8c4342f1db927', 'from': '0x7424a7bcfc93c3adf3ae3ba3444c188dae195a98', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 760.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x2938ab7b3a67080000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T06:18:12.000Z'}}, {'blockNum': '0x5126ba', 'uniqueId': '0x89f05472d266f8e91b5cccc33f9b0240f0a2fe0dc6e3ac55a203c91941f6fb82:log:12', 'hash': '0x89f05472d266f8e91b5cccc33f9b0240f0a2fe0dc6e3ac55a203c91941f6fb82', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x364b51764b5b7b8690bf04bf641ab16eb2078f77', 'value': 1201.434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x41213f0187a4a90000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T09:11:33.000Z'}}, {'blockNum': '0x512daa', 'uniqueId': '0xcedbe4ef1e3bbc4313cde3ad9c1c755e6ce7f6d245d4aa82d7fd590865a0edbc:log:20', 'hash': '0xcedbe4ef1e3bbc4313cde3ad9c1c755e6ce7f6d245d4aa82d7fd590865a0edbc', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 4655.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xfc600a881a970e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:31:12.000Z'}}, {'blockNum': '0x512daf', 'uniqueId': '0x6607937b7090a674c3a164b44e76fe1e47fd42dbfad847ad356f9b4d47f462cc:log:14', 'hash': '0x6607937b7090a674c3a164b44e76fe1e47fd42dbfad847ad356f9b4d47f462cc', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x57b642bb77f6080000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:32:31.000Z'}}, {'blockNum': '0x512daf', 'uniqueId': '0x6f51bef166f7bc35457b11c4e9f7890140313277e1461443ada15ca7a736cfa6:log:42', 'hash': '0x6f51bef166f7bc35457b11c4e9f7890140313277e1461443ada15ca7a736cfa6', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 6934.0157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0177e4cc6d2909914000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:32:31.000Z'}}, {'blockNum': '0x512db3', 'uniqueId': '0x8f86a91fec0f6d5d36c66148d21a383ca11ac77b92b55feb1f852fe22ca58f95:log:51', 'hash': '0x8f86a91fec0f6d5d36c66148d21a383ca11ac77b92b55feb1f852fe22ca58f95', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x5a5d9c95a3f328e903f3b4d47aa5556e1f286b27', 'value': 1294.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x462ccbdb71ef2a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:33:41.000Z'}}, {'blockNum': '0x512dbc', 'uniqueId': '0xec93a9c4ae2c45fd84df65db6dbc6c145488d1a0866338149c2c98b845460e77:log:30', 'hash': '0xec93a9c4ae2c45fd84df65db6dbc6c145488d1a0866338149c2c98b845460e77', 'from': '0x5ef52addae0120144daf733ca640042a0b76d368', 'to': '0xf6a517ed5e77a23ee7a617fdf8df2599939caef6', 'value': 198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0abbcd4ef377580000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:35:58.000Z'}}, {'blockNum': '0x512dc2', 'uniqueId': '0x3e968748ada4b3015b4dff7743464f7e0776bca1f37c6f2e606bc96f64904aee:log:84', 'hash': '0x3e968748ada4b3015b4dff7743464f7e0776bca1f37c6f2e606bc96f64904aee', 'from': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6934.0157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0177e4cc6d2909914000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:38:25.000Z'}}, {'blockNum': '0x512dc2', 'uniqueId': '0xa9cb9c577d3c3f3b95a5df778b5e4241b81ac3f0a63093107b79d4a80a5bda4a:log:85', 'hash': '0xa9cb9c577d3c3f3b95a5df778b5e4241b81ac3f0a63093107b79d4a80a5bda4a', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4655.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xfc600a881a970e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:38:25.000Z'}}, {'blockNum': '0x512dc2', 'uniqueId': '0x229c95a60c3af0f1a9bc12cb41bc924899042e4559db25becfdbd458725ecedc:log:86', 'hash': '0x229c95a60c3af0f1a9bc12cb41bc924899042e4559db25becfdbd458725ecedc', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x57b642bb77f6080000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:38:25.000Z'}}, {'blockNum': '0x512dc3', 'uniqueId': '0x3ef6a3aa85bc818dccfcdcfe2954624ad5ea200bf43f3419262be608be53df74:log:17', 'hash': '0x3ef6a3aa85bc818dccfcdcfe2954624ad5ea200bf43f3419262be608be53df74', 'from': '0xcc509818388d3b17737ddc62436738ffb0358230', 'to': '0xc0542a54afc447087e6295b68268f195a4b4f72c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:38:56.000Z'}}, {'blockNum': '0x512dc5', 'uniqueId': '0xff2a40a07ee563d4b5eb00157b6660ef2436a2383d5461a008219d40ee3aa970:log:26', 'hash': '0xff2a40a07ee563d4b5eb00157b6660ef2436a2383d5461a008219d40ee3aa970', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xb2b878a0e1e45f227cbc11b5d588acccc029f11b', 'value': 1510.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x51e149cb73ad820000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:39:42.000Z'}}, {'blockNum': '0x512dd4', 'uniqueId': '0x89b936e1de853c8aae6d3e321cbc509dd92d624a2b324c49f77252acc9b483e5:log:56', 'hash': '0x89b936e1de853c8aae6d3e321cbc509dd92d624a2b324c49f77252acc9b483e5', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 3071.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa67c12fa9d66260000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:42:45.000Z'}}, {'blockNum': '0x512dd5', 'uniqueId': '0x3ab069a862ec5a28af5e7166b8ef939dad6e3a4ad7c8dca3558beb21d5f52441:log:32', 'hash': '0x3ab069a862ec5a28af5e7166b8ef939dad6e3a4ad7c8dca3558beb21d5f52441', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x2b2666b9d328620e2fac5f8260cfd162b4046b49', 'value': 630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x2227019e1df0180000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:43:46.000Z'}}, {'blockNum': '0x512dd8', 'uniqueId': '0xcade7e43f9a4adf7d849309b0055be31fecf19959179ff23849fb6d9c2425f95:log:14', 'hash': '0xcade7e43f9a4adf7d849309b0055be31fecf19959179ff23849fb6d9c2425f95', 'from': '0x3f859287c664eba0869df592be9d3ffb3f64827f', 'to': '0xb97a65af62f61c27e743d68926eb606e302956d8', 'value': 2903.3908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x9d64a435c6b9350000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:44:47.000Z'}}, {'blockNum': '0x512dd9', 'uniqueId': '0xdd1296f32931f38ca55dbb66dad42a54154eebb61aa18001b4b9aca236475dd2:log:4', 'hash': '0xdd1296f32931f38ca55dbb66dad42a54154eebb61aa18001b4b9aca236475dd2', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x78847b6e6ff39e0ec3f9d59540a7325c1d95227e', 'value': 1133.064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3d6c6bf8c507340000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:45:25.000Z'}}, {'blockNum': '0x512dd9', 'uniqueId': '0x5a836fbbc8883f3ba2e85746f4c4874a6b52ff0732292bfea6c423f43ce96a16:log:72', 'hash': '0x5a836fbbc8883f3ba2e85746f4c4874a6b52ff0732292bfea6c423f43ce96a16', 'from': '0xdefbb153bcd56354e3908a94e03a1b60a9dd5b3c', 'to': '0x820b7987dceceed393a3e253d38cfecd65031df1', 'value': 1040, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3860e639d806400000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:45:25.000Z'}}, {'blockNum': '0x512de0', 'uniqueId': '0xe9846091ff22b751f0e07dc2ee174073634afd0a274ed41baa0c97609383a9d5:log:0', 'hash': '0xe9846091ff22b751f0e07dc2ee174073634afd0a274ed41baa0c97609383a9d5', 'from': '0xaf4ffbb3057356a9b6a25129211426daa2863d4f', 'to': '0x8d8a25d4fd12b0c0d66c46e72e303e60e1d59a4e', 'value': 116.379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x064f1543e5cb2f8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:46:00.000Z'}}, {'blockNum': '0x512dea', 'uniqueId': '0x830a74ea3a07bd4715104ffd88c0f4128e4a10a5a41fbe140a7fbbd399a26351:log:41', 'hash': '0x830a74ea3a07bd4715104ffd88c0f4128e4a10a5a41fbe140a7fbbd399a26351', 'from': '0xc0542a54afc447087e6295b68268f195a4b4f72c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:48:05.000Z'}}, {'blockNum': '0x512dea', 'uniqueId': '0x63affb378a89d29e8aa36c468e672977df1a3fe0432129e022136ecec9a2479a:log:42', 'hash': '0x63affb378a89d29e8aa36c468e672977df1a3fe0432129e022136ecec9a2479a', 'from': '0x820b7987dceceed393a3e253d38cfecd65031df1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1040, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3860e639d806400000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:48:05.000Z'}}, {'blockNum': '0x512dea', 'uniqueId': '0xbdae9ffec5d0827d197e306f4ee93f2f1c184d00fd7e9ab739f34e784148ca85:log:43', 'hash': '0xbdae9ffec5d0827d197e306f4ee93f2f1c184d00fd7e9ab739f34e784148ca85', 'from': '0xb97a65af62f61c27e743d68926eb606e302956d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2903.3908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x9d64a435c6b9350000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:48:05.000Z'}}, {'blockNum': '0x512dea', 'uniqueId': '0xe3b35ccfca308ce496afe25484ca5dc6923b8a9359ecdc3eba045317a2414402:log:44', 'hash': '0xe3b35ccfca308ce496afe25484ca5dc6923b8a9359ecdc3eba045317a2414402', 'from': '0x78847b6e6ff39e0ec3f9d59540a7325c1d95227e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1133.064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3d6c6bf8c507340000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:48:05.000Z'}}, {'blockNum': '0x512dea', 'uniqueId': '0x23e75747c522081e1a77dca3be38dfe1dc6bb702e545159ca6222da0a635f558:log:45', 'hash': '0x23e75747c522081e1a77dca3be38dfe1dc6bb702e545159ca6222da0a635f558', 'from': '0xb2b878a0e1e45f227cbc11b5d588acccc029f11b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1510.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x51e149cb73ad820000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:48:05.000Z'}}, {'blockNum': '0x512deb', 'uniqueId': '0xc24f4cf560b1955f59890a03c8f4d9c6fe8a497d63d3f14306410569e4f94153:log:11', 'hash': '0xc24f4cf560b1955f59890a03c8f4d9c6fe8a497d63d3f14306410569e4f94153', 'from': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3071.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa67c12fa9d66260000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:48:10.000Z'}}, {'blockNum': '0x512e1b', 'uniqueId': '0x111ca90053a3f93f42a8aad1ec16e8c114150be07fb5ec6a3f14b1548dd89001:log:12', 'hash': '0x111ca90053a3f93f42a8aad1ec16e8c114150be07fb5ec6a3f14b1548dd89001', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xd07a289f5b1258114c000bc2135db3019f3b666f', 'value': 1994.799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6c2365b19a18718000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T16:59:37.000Z'}}, {'blockNum': '0x512ea7', 'uniqueId': '0xf469403475a09513f959d6fb2c953cb76e038fe4a81f6f1586d8ff8128b7a00d:log:15', 'hash': '0xf469403475a09513f959d6fb2c953cb76e038fe4a81f6f1586d8ff8128b7a00d', 'from': '0x24ee66e431d986dc7db14c6cb5ff0f70d3ce5003', 'to': '0x002285b2825fa7453144fd68f2986e53177d1ec2', 'value': 10224.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x022a45710246fd720000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T17:30:13.000Z'}}, {'blockNum': '0x512eca', 'uniqueId': '0x35e22240a6e9456cf8dea02d86a6d2bc04b083b800ac890a775c1e4f77cbe74b:log:9', 'hash': '0x35e22240a6e9456cf8dea02d86a6d2bc04b083b800ac890a775c1e4f77cbe74b', 'from': '0x002285b2825fa7453144fd68f2986e53177d1ec2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10224.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x022a45710246fd720000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T17:38:28.000Z'}}, {'blockNum': '0x513058', 'uniqueId': '0x744fbbce3c2bf05701915e5578f4b24293287e708d9a3ca5b445d409dba914c0:log:7', 'hash': '0x744fbbce3c2bf05701915e5578f4b24293287e708d9a3ca5b445d409dba914c0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5228d54a0675695da982f2ccadcd2077d58ed775', 'value': 15.32040309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xd49d01707b3f3400', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T19:04:21.000Z'}}, {'blockNum': '0x513493', 'uniqueId': '0x4b68ce836cc72948ecf975cfbf6c8b205d03a3bef9eb36372cf389b52ce054e9:log:5', 'hash': '0x4b68ce836cc72948ecf975cfbf6c8b205d03a3bef9eb36372cf389b52ce054e9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9499cb72ace15337adb803b1651a5be7ba2c3b7c', 'value': 1971.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6ae00f048b9a9e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T23:17:52.000Z'}}, {'blockNum': '0x5134c6', 'uniqueId': '0xb12ed235ea892bb4490f8d6df36ac9a521d5341c40b915e7787122c7f2c0db72:log:0', 'hash': '0xb12ed235ea892bb4490f8d6df36ac9a521d5341c40b915e7787122c7f2c0db72', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4811.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0104d396981c3a740000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-25T23:28:20.000Z'}}, {'blockNum': '0x5136cc', 'uniqueId': '0x9db97c3e5c1a42e1c4fa3519895111d64efa8310bad7b19e5a91f4b3cdb337b8:log:36', 'hash': '0x9db97c3e5c1a42e1c4fa3519895111d64efa8310bad7b19e5a91f4b3cdb337b8', 'from': '0x9499cb72ace15337adb803b1651a5be7ba2c3b7c', 'to': '0x194a0d4139bd1ea6f471dd6b7c3a241479292ac6', 'value': 1971.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6ae00f048b9a9e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-26T01:26:25.000Z'}}, {'blockNum': '0x513720', 'uniqueId': '0xecf533c680e22519b1a1c6ca610cdba53805d23f7b9b4c55168d2e785b372dca:log:85', 'hash': '0xecf533c680e22519b1a1c6ca610cdba53805d23f7b9b4c55168d2e785b372dca', 'from': '0xc6223d6477f79c85bc219835ea71eb027bd759e9', 'to': '0xdcedef9d19a36b81151a65802f7301aaf4731469', 'value': 5415.663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0125956c051672518000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-26T01:46:48.000Z'}}]}}
Number of returned transfers:  34
Answer is complete
 
symbol             MDA
group              TCG
date        2018-03-31
hour             17:00
exchange       binance
Name: 559, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2018-03-31 17:00:00 2018-03-31 05:00:00 2018-04-01 05:00:00
Unix timestamps:  1522465200.0 1522551600.0
Hex Block Numbers:  0x51abe5 0x51c3d7
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x51adae', 'uniqueId': '0xb16c7e43d5bd434f519607d80552e8b9c9c15ed606830222e4ea4d9be8008ef1:log:10', 'hash': '0xb16c7e43d5bd434f519607d80552e8b9c9c15ed606830222e4ea4d9be8008ef1', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x2d939b793102685ec6a99e64c0c5a3e8f5623df7', 'value': 624.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x21d7c39f5eac9d0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T04:43:46.000Z'}}, {'blockNum': '0x51adb1', 'uniqueId': '0x3dbfd8407af35d30deaf5c898e47b273a2b7eeae6394f1accaa64c038a193cbd:log:29', 'hash': '0x3dbfd8407af35d30deaf5c898e47b273a2b7eeae6394f1accaa64c038a193cbd', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4780.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01032aed8e3c6b800000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T04:44:11.000Z'}}, {'blockNum': '0x51adb4', 'uniqueId': '0x0c9b0ed718b9dbe10b8ef69b67a8f047d50b0158dfeaca0ef4c4ceba4b217bfd:log:33', 'hash': '0x0c9b0ed718b9dbe10b8ef69b67a8f047d50b0158dfeaca0ef4c4ceba4b217bfd', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4775.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0102e589fcba268c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T04:44:27.000Z'}}, {'blockNum': '0x51aef2', 'uniqueId': '0x9fe1626acb467c95c446195070bbeb97c03069ff74c7025b103597d034fb6c5e:log:1', 'hash': '0x9fe1626acb467c95c446195070bbeb97c03069ff74c7025b103597d034fb6c5e', 'from': '0xfa84c343306643948d295f3d4853e8adc713a57d', 'to': '0x3aef392fa182b36cfdeab11ca6f7dab3a930cc9f', 'value': 1590.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x563a0260a3d8540000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T06:00:01.000Z'}}, {'blockNum': '0x51afe3', 'uniqueId': '0x2b3033c87f244216a996a1a835027dc8c6420ea51ed73738625b6aa1815a3c21:log:50', 'hash': '0x2b3033c87f244216a996a1a835027dc8c6420ea51ed73738625b6aa1815a3c21', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 1625.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x58211ea0ac188a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T06:57:29.000Z'}}, {'blockNum': '0x51b0e3', 'uniqueId': '0xb657109d5c2cd093a2cdd08822fce417b2f7e201d1327c22a1b1a04700210e79:log:1', 'hash': '0xb657109d5c2cd093a2cdd08822fce417b2f7e201d1327c22a1b1a04700210e79', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4773.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0102c86549da7a3a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T07:57:05.000Z'}}, {'blockNum': '0x51b293', 'uniqueId': '0x859a45bf01a64a95d9ff47d3ad72c3adf2ae987d44fad5302f107dcf0c17a5e3:log:14', 'hash': '0x859a45bf01a64a95d9ff47d3ad72c3adf2ae987d44fad5302f107dcf0c17a5e3', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 4751.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101944f0b795c8e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T09:44:53.000Z'}}, {'blockNum': '0x51b29f', 'uniqueId': '0x42c663b60cb6a5d564755934627756b43a4614ef08b73201cf740311247bffa8:log:18', 'hash': '0x42c663b60cb6a5d564755934627756b43a4614ef08b73201cf740311247bffa8', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4751.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101944f0b795c8e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T09:48:13.000Z'}}, {'blockNum': '0x51b2c2', 'uniqueId': '0x189529fdbf7345d1f65d58dee982ea6611e724448d62e09b7a8863a29514b044:log:59', 'hash': '0x189529fdbf7345d1f65d58dee982ea6611e724448d62e09b7a8863a29514b044', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb1b47c45f4d9ce2be5896df490099c444da50fba', 'value': 4996.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010edf2470594a560000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T09:56:17.000Z'}}, {'blockNum': '0x51b614', 'uniqueId': '0x63b8a2d5198d9f15a1b25c25b4c07e6be95d8e59137c90c958bf8d93266529a7:log:18', 'hash': '0x63b8a2d5198d9f15a1b25c25b4c07e6be95d8e59137c90c958bf8d93266529a7', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4773.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0102c86549da7a3a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T13:17:02.000Z'}}, {'blockNum': '0x51b65a', 'uniqueId': '0x18773f4e8bf64af1cffb835c6874dbc8ad8b3fb47cac5cc762f06c85828e0f1a:log:40', 'hash': '0x18773f4e8bf64af1cffb835c6874dbc8ad8b3fb47cac5cc762f06c85828e0f1a', 'from': '0xb8e083a4cb41ad764bd0c717f9b16b4765d0e00a', 'to': '0xfe555e7bfe886c3f19df6fb7e155b222b30ac53e', 'value': 20574.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x045b5f6dbaffcb020000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T13:31:40.000Z'}}, {'blockNum': '0x51b67c', 'uniqueId': '0x373f51a0b3defa423730c8ef0c07d0a3a55b9bd95f1066ed35b52933eb5ff5ea:log:6', 'hash': '0x373f51a0b3defa423730c8ef0c07d0a3a55b9bd95f1066ed35b52933eb5ff5ea', 'from': '0xfe555e7bfe886c3f19df6fb7e155b222b30ac53e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20574.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x045b5f6dbaffcb020000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T13:38:06.000Z'}}, {'blockNum': '0x51b839', 'uniqueId': '0x1d01849648791851c6e4525f251022b7e3c8a4ce2e7d573959ae5e350391525d:log:3', 'hash': '0x1d01849648791851c6e4525f251022b7e3c8a4ce2e7d573959ae5e350391525d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4756.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101dc7927ec5c960000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T15:15:54.000Z'}}, {'blockNum': '0x51b9a7', 'uniqueId': '0x9673b62c982f763b4772433f3bc8a78daa89bed987c12b14da6f2a662307095d:log:4', 'hash': '0x9673b62c982f763b4772433f3bc8a78daa89bed987c12b14da6f2a662307095d', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 2956.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa0446e3f44bc990000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:43:51.000Z'}}, {'blockNum': '0x51b9bf', 'uniqueId': '0xfb0ceea0c7224d8bc505697757fcec261da8e8804abf7eab680290769dc2b4d9:log:50', 'hash': '0xfb0ceea0c7224d8bc505697757fcec261da8e8804abf7eab680290769dc2b4d9', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2956.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa0446e3f44bc990000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:48:29.000Z'}}, {'blockNum': '0x51b9c6', 'uniqueId': '0xd7a8824df8270be3f4acec79db1ace87ddbc82e11dc56e9c4888b9b14077eb25:log:21', 'hash': '0xd7a8824df8270be3f4acec79db1ace87ddbc82e11dc56e9c4888b9b14077eb25', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 4748.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01016aace75e66620000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:50:34.000Z'}}, {'blockNum': '0x51b9e4', 'uniqueId': '0x03223e8246309e2bbf18702031560458b80c1aa8cc094b70a07f3ab20bad20ea:log:37', 'hash': '0x03223e8246309e2bbf18702031560458b80c1aa8cc094b70a07f3ab20bad20ea', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4748.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01016aace75e66620000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:58:41.000Z'}}, {'blockNum': '0x51b9e7', 'uniqueId': '0xca7aeea7777e8e72659b3c48dfe8ec589831c1b6934f3d259a14eb734986c870:log:54', 'hash': '0xca7aeea7777e8e72659b3c48dfe8ec589831c1b6934f3d259a14eb734986c870', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 335.7109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1232ecb4e09eaf4000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:59:20.000Z'}}, {'blockNum': '0x51b9e9', 'uniqueId': '0xf6797cfe597fbf721a4ef358328b5d509a1a15c9f0dd9e952fe6af701188f0b5:log:29', 'hash': '0xf6797cfe597fbf721a4ef358328b5d509a1a15c9f0dd9e952fe6af701188f0b5', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x703793b99b17d85cbcdc59ec14cb19b07285c24f', 'value': 200.1783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0ada082f428993c000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T16:59:55.000Z'}}, {'blockNum': '0x51b9f1', 'uniqueId': '0xc45898e6e1cb3dcc93734c992715e2b3878f021b7a99b524a3801e7a62ac8069:log:6', 'hash': '0xc45898e6e1cb3dcc93734c992715e2b3878f021b7a99b524a3801e7a62ac8069', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x582548711531280000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:01:03.000Z'}}, {'blockNum': '0x51b9f3', 'uniqueId': '0x17ada67df5669c4084bab9112c9c77cf34e58f253453cc1d1b8c46936834d596:log:70', 'hash': '0x17ada67df5669c4084bab9112c9c77cf34e58f253453cc1d1b8c46936834d596', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0xd12a65a346063d7cb051fb06adc4e9a16b49bdcf', 'value': 1197.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x40eaa6a15f82460000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:01:35.000Z'}}, {'blockNum': '0x51b9f6', 'uniqueId': '0x1f5517683cac4c317d7f18b75c699977c8e3b972749b366909c21fe081b8b51b:log:44', 'hash': '0x1f5517683cac4c317d7f18b75c699977c8e3b972749b366909c21fe081b8b51b', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'value': 999.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x362ed9526c0aee0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:02:07.000Z'}}, {'blockNum': '0x51b9fd', 'uniqueId': '0x87417c2f390debe9a4026d0d3e993e5d20dbc07c1a71bcff511cfd2c4f4b4193:log:12', 'hash': '0x87417c2f390debe9a4026d0d3e993e5d20dbc07c1a71bcff511cfd2c4f4b4193', 'from': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 217.9858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0bd129222967588000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:03:22.000Z'}}, {'blockNum': '0x51ba01', 'uniqueId': '0xab7f3783d6f4d2d4ab52efb86f6a6c67f94eb3c73e39923ddc2be2bcb1716e4e:log:7', 'hash': '0xab7f3783d6f4d2d4ab52efb86f6a6c67f94eb3c73e39923ddc2be2bcb1716e4e', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x60bcb1252268d830347f3d981e6776bfc28f0c0a', 'value': 2991.805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa22fa28c3cdd8c8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:04:27.000Z'}}, {'blockNum': '0x51ba05', 'uniqueId': '0x4eeba6dbb6e80d78d6438352bfe3117373351d4c243c67bae6b3aba6055fc109:log:3', 'hash': '0x4eeba6dbb6e80d78d6438352bfe3117373351d4c243c67bae6b3aba6055fc109', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 744.017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x28554f5f876bce8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:05:07.000Z'}}, {'blockNum': '0x51ba0b', 'uniqueId': '0x3e0cc0a6470a10bc601dfc7fa5223a0404380715fc812194d2e8cd7d094d5c6e:log:0', 'hash': '0x3e0cc0a6470a10bc601dfc7fa5223a0404380715fc812194d2e8cd7d094d5c6e', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xf8cb4b002d49c1150e9cc8c2c141d7759c0ac42e', 'value': 1180.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3ffcbe75b359c08000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:06:23.000Z'}}, {'blockNum': '0x51ba12', 'uniqueId': '0x260b81af3f2aa5988d7822b9b7b7448df3846202c7484776e4be6e33099c050a:log:1', 'hash': '0x260b81af3f2aa5988d7822b9b7b7448df3846202c7484776e4be6e33099c050a', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 4345.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xeb8c07634e566b8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:07:49.000Z'}}, {'blockNum': '0x51ba15', 'uniqueId': '0xf999dfaf7b7f95dd01fb4ad3ac431d20fd46547fbdc6118a9aa047cc03d3a49a:log:2', 'hash': '0xf999dfaf7b7f95dd01fb4ad3ac431d20fd46547fbdc6118a9aa047cc03d3a49a', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 962.0028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x34267881b0d3270000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:08:10.000Z'}}, {'blockNum': '0x51ba15', 'uniqueId': '0xe42ce616bd1875bcfbb25fcacefc9991111d3230d9476ae46b0d9dc98c4d8d1a:log:3', 'hash': '0xe42ce616bd1875bcfbb25fcacefc9991111d3230d9476ae46b0d9dc98c4d8d1a', 'from': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 999.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x362ed9526c0aee0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:08:10.000Z'}}, {'blockNum': '0x51ba15', 'uniqueId': '0x0c15850ceb991b7224118b85fa2b48f394b81a7963f43874294a3029798a17af:log:5', 'hash': '0x0c15850ceb991b7224118b85fa2b48f394b81a7963f43874294a3029798a17af', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x582548711531280000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:08:10.000Z'}}, {'blockNum': '0x51ba21', 'uniqueId': '0x46e6fe96a8e6b1ea2ae634efbcf05b7d922731f9f2f9ad6426d340d21477c02b:log:1', 'hash': '0x46e6fe96a8e6b1ea2ae634efbcf05b7d922731f9f2f9ad6426d340d21477c02b', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 164.161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x08e63107bcdce68000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:10:20.000Z'}}, {'blockNum': '0x51ba47', 'uniqueId': '0x60a3553756f40da242b4b7603aeff8016830006ca94b73314ee32f5996e81e37:log:29', 'hash': '0x60a3553756f40da242b4b7603aeff8016830006ca94b73314ee32f5996e81e37', 'from': '0xf8cb4b002d49c1150e9cc8c2c141d7759c0ac42e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1180.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3ffcbe75b359c08000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:18:52.000Z'}}, {'blockNum': '0x51ba77', 'uniqueId': '0x13ec3a14795523f1805a8dc9343d7193b7fc24a52f5473925736a4b78f7f1018:log:35', 'hash': '0x13ec3a14795523f1805a8dc9343d7193b7fc24a52f5473925736a4b78f7f1018', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4345.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xeb8c07634e566b8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:28:31.000Z'}}, {'blockNum': '0x51ba78', 'uniqueId': '0x505e8d3c55b57ddadc610c2f14b9fa507ab2e241035115aeb302c96e8142219e:log:9', 'hash': '0x505e8d3c55b57ddadc610c2f14b9fa507ab2e241035115aeb302c96e8142219e', 'from': '0x9539e0b14021a43cde41d9d45dc34969be9c7cb0', 'to': '0xc1520ec922a53464eaa0682b510ead8ed0ed9e52', 'value': 1717.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x5d20834d3a8bcd0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:29:01.000Z'}}, {'blockNum': '0x51ba97', 'uniqueId': '0xdd6af6423f34f81cc54a208b6455775018e4d848fda5b1b92dac0f4d45e84012:log:6', 'hash': '0xdd6af6423f34f81cc54a208b6455775018e4d848fda5b1b92dac0f4d45e84012', 'from': '0xc1520ec922a53464eaa0682b510ead8ed0ed9e52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1717.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x5d20834d3a8bcd0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T17:38:04.000Z'}}, {'blockNum': '0x51bc0b', 'uniqueId': '0xd3cbf9d7b3241f061e125d7cf0959ce9fe2ea630aee07bcb07e0585e62e6e2b3:log:30', 'hash': '0xd3cbf9d7b3241f061e125d7cf0959ce9fe2ea630aee07bcb07e0585e62e6e2b3', 'from': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'to': '0x05ee546c1a62f90d7acbffd6d846c9c54c7cf94c', 'value': 4756.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101dc7927ec5c960000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T19:08:16.000Z'}}, {'blockNum': '0x51bc7e', 'uniqueId': '0x1c7bee6f6d8c152b877ff51aa0c5750b1fc0da33993b1a9af34a2233089abf4b:log:20', 'hash': '0x1c7bee6f6d8c152b877ff51aa0c5750b1fc0da33993b1a9af34a2233089abf4b', 'from': '0xae413bd3b3338000b1e801cc0129432a07f17197', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2743.736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x94bcfc6b104b2c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T19:38:16.000Z'}}, {'blockNum': '0x51bdd2', 'uniqueId': '0x8a17e266545d0b10bcb0db943ee74afcc1d48b85df3cd62c407273d870ebd668:log:0', 'hash': '0x8a17e266545d0b10bcb0db943ee74afcc1d48b85df3cd62c407273d870ebd668', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4766.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010267404af0e67e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T20:58:53.000Z'}}, {'blockNum': '0x51bdec', 'uniqueId': '0x88037f4f0127b25eb74faab1a7d23d1740df14a1dce28362f573b0cb7973bf65:log:23', 'hash': '0x88037f4f0127b25eb74faab1a7d23d1740df14a1dce28362f573b0cb7973bf65', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4756.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101dc7927ec5c960000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:05:36.000Z'}}, {'blockNum': '0x51be10', 'uniqueId': '0x8e1dfab3d27f0319243a54632ce5e439b15d7cc0c9094007d5c050c24f017b4e:log:0', 'hash': '0x8e1dfab3d27f0319243a54632ce5e439b15d7cc0c9094007d5c050c24f017b4e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4757.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101ea59dea003fa0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:14:05.000Z'}}, {'blockNum': '0x51be1f', 'uniqueId': '0x12b77ca856db4dfa0350c787e7f6fd778b591b3a7a349914c3e8504ac6ca0b96:log:18', 'hash': '0x12b77ca856db4dfa0350c787e7f6fd778b591b3a7a349914c3e8504ac6ca0b96', 'from': '0xd07a289f5b1258114c000bc2135db3019f3b666f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1994.799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6c2365b19a18718000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:18:22.000Z'}}, {'blockNum': '0x51be1f', 'uniqueId': '0xf14be20d964b03b2a435ff6cb48686e7309e0f1655df800a9d64100be142ec40:log:19', 'hash': '0xf14be20d964b03b2a435ff6cb48686e7309e0f1655df800a9d64100be142ec40', 'from': '0x5a5d9c95a3f328e903f3b4d47aa5556e1f286b27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1294.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x462ccbdb71ef2a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:18:22.000Z'}}, {'blockNum': '0x51be1f', 'uniqueId': '0x2f34098129b41a6d09a0f1995572b661cc4aed94126fc0af61daad1cf4447ccc:log:26', 'hash': '0x2f34098129b41a6d09a0f1995572b661cc4aed94126fc0af61daad1cf4447ccc', 'from': '0x2b2666b9d328620e2fac5f8260cfd162b4046b49', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x2227019e1df0180000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T21:18:22.000Z'}}, {'blockNum': '0x51bf1f', 'uniqueId': '0x6b5ca9cde920a69b67a0129551ce6a610fcc4c50cb2b1a2f1e0f0176b0c22b4c:log:126', 'hash': '0x6b5ca9cde920a69b67a0129551ce6a610fcc4c50cb2b1a2f1e0f0176b0c22b4c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4753.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0101b2d703d1666a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:16:36.000Z'}}, {'blockNum': '0x51bf73', 'uniqueId': '0x4460a6cd3524400f202dff58d2faf7f5a8ca85cdee2b5aa8853896f391017e82:log:11', 'hash': '0x4460a6cd3524400f202dff58d2faf7f5a8ca85cdee2b5aa8853896f391017e82', 'from': '0xdcedef9d19a36b81151a65802f7301aaf4731469', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5415.663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0125956c051672518000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:38:16.000Z'}}, {'blockNum': '0x51bf73', 'uniqueId': '0x70976bac94895aa1083bd8723d47cdf751ef7cde293255f3ab1d051abd7f399f:log:15', 'hash': '0x70976bac94895aa1083bd8723d47cdf751ef7cde293255f3ab1d051abd7f399f', 'from': '0x3aef392fa182b36cfdeab11ca6f7dab3a930cc9f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1601.1915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x56ccfef1c61ae0c000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:38:16.000Z'}}, {'blockNum': '0x51bf75', 'uniqueId': '0x630eaa0b3ee1bb87e1dc181f9c04a560b52e0864678c8c87cd38d358fb71875e:log:9', 'hash': '0x630eaa0b3ee1bb87e1dc181f9c04a560b52e0864678c8c87cd38d358fb71875e', 'from': '0x6871822e5d98e39fc7651d269ce0a893be27a54c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 562.149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1e7962711b61108000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:38:40.000Z'}}, {'blockNum': '0x51bfb4', 'uniqueId': '0xc03a110f50f8834cba62224c1636321a86402dc3915823fc61badc11a80bea1b:log:20', 'hash': '0xc03a110f50f8834cba62224c1636321a86402dc3915823fc61badc11a80bea1b', 'from': '0x560db0c0543cc1ff72b574ee81efd16da1d28718', 'to': '0x4c6e60221ed09543e9d7dff33d664c6ac46df449', 'value': 54979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0ba46ae558c6192c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T22:56:00.000Z'}}, {'blockNum': '0x51c028', 'uniqueId': '0x53501956c9e4076ed2c87ce4977756ab3374c3adfd94b5980ac883c30818a65c:log:1', 'hash': '0x53501956c9e4076ed2c87ce4977756ab3374c3adfd94b5980ac883c30818a65c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 1622.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x57f77c7c91225e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T23:20:55.000Z'}}, {'blockNum': '0x51c0a1', 'uniqueId': '0xe595db3956c6e8007c19dc5546e342b4de6a8aaa4ee8a65ff8f7e9abf0847282:log:25', 'hash': '0xe595db3956c6e8007c19dc5546e342b4de6a8aaa4ee8a65ff8f7e9abf0847282', 'from': '0x28bc3360d1dd9a84dde69c8142d620dcc1cf7b65', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-03-31T23:48:43.000Z'}}, {'blockNum': '0x51c3b0', 'uniqueId': '0x5e9c4f255f450ca4e209c618e533e9e44a09ea5f3888ff3cb58e1b2e3e7689d3:log:5', 'hash': '0x5e9c4f255f450ca4e209c618e533e9e44a09ea5f3888ff3cb58e1b2e3e7689d3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ca4887f22f38a78228b74bac2d4f87f89c36a67', 'value': 4747.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01015f92bb9b7a120000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-01T02:49:34.000Z'}}]}}
Number of returned transfers:  51
Answer is complete
 
symbol             OAX
group              TCG
date        2018-04-15
hour             14:57
exchange       binance
Name: 561, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2018-04-15 14:57:00 2018-04-15 02:57:00 2018-04-16 02:57:00
Unix timestamps:  1523753820.0 1523840220.0
Hex Block Numbers:  0x530a4c 0x532170
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x530c7c', 'uniqueId': '0xdb26d0587d6839e2526f15e6a7885caad933d8ad1ca840c5f648e774cc6d9151:log:65', 'hash': '0xdb26d0587d6839e2526f15e6a7885caad933d8ad1ca840c5f648e774cc6d9151', 'from': '0xd63c5d4de6bd64555e54bb193038119eb0600e0b', 'to': '0x1fc867f254fcb8655973505b8f9641c53de22dc6', 'value': 1914.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x67cc13ef60eff00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T03:05:46.000Z'}}, {'blockNum': '0x530cca', 'uniqueId': '0x7ccd1c6f1a8ff98c6e02e3b472b4b336833e0eeab6c97475c53186f781a95321:log:16', 'hash': '0x7ccd1c6f1a8ff98c6e02e3b472b4b336833e0eeab6c97475c53186f781a95321', 'from': '0x1fc867f254fcb8655973505b8f9641c53de22dc6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1914.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x67cc13ef60eff00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T03:23:06.000Z'}}, {'blockNum': '0x530d75', 'uniqueId': '0xe039e3bf84a582b3b1b04987a500c438b68fa34e16f414aa2c36de3582350b3f:log:2', 'hash': '0xe039e3bf84a582b3b1b04987a500c438b68fa34e16f414aa2c36de3582350b3f', 'from': '0x236f9f97e0e62388479bf9e5ba4889e46b0273c3', 'to': '0x717ee9c75bb86b1459f24c134595717d4cfb45cf', 'value': 13012.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02c16649053f56d08000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T04:05:29.000Z'}}, {'blockNum': '0x530d9a', 'uniqueId': '0x876c5b74e00fca939234c047c131f0843ef6e3d6f1a83df83fe9e34fb484f4b4:log:9', 'hash': '0x876c5b74e00fca939234c047c131f0843ef6e3d6f1a83df83fe9e34fb484f4b4', 'from': '0x717ee9c75bb86b1459f24c134595717d4cfb45cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13012.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02c16649053f56d08000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T04:13:13.000Z'}}, {'blockNum': '0x5311c0', 'uniqueId': '0x452704ce2b388439519ab4d2a057951bdc2e6ba8eec3099878165e8d23632d9c:log:90', 'hash': '0x452704ce2b388439519ab4d2a057951bdc2e6ba8eec3099878165e8d23632d9c', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x573b0214da18837621d5d613021d634f3bedc1e2', 'value': 89.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x04df9cf5b07b9e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T08:36:14.000Z'}}, {'blockNum': '0x531430', 'uniqueId': '0x6c7f77cf788a58a2bafb367c3a497b8a783f19620c7b5236b41197c2ae2fbe66:log:6', 'hash': '0x6c7f77cf788a58a2bafb367c3a497b8a783f19620c7b5236b41197c2ae2fbe66', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x29e2027012ca12cd87122859259b78874d4c4446', 'value': 22935.556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x04db56c788375f1a0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T11:05:17.000Z'}}, {'blockNum': '0x53143f', 'uniqueId': '0x127ae41a50a22af20a002b5d164dc31d66f6a863f5c868a139a6162f3e8f1c99:log:38', 'hash': '0x127ae41a50a22af20a002b5d164dc31d66f6a863f5c868a139a6162f3e8f1c99', 'from': '0x29e2027012ca12cd87122859259b78874d4c4446', 'to': '0x5e575279bf9f4acf0a130c186861454247394c06', 'value': 22935.556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x04db56c788375f1a0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T11:09:02.000Z'}}, {'blockNum': '0x531512', 'uniqueId': '0xed55ebca1bcd4f8276d7b6f5f53cdafefbe39fcb9fa0b5fcf7f08e9b111b5471:log:14', 'hash': '0xed55ebca1bcd4f8276d7b6f5f53cdafefbe39fcb9fa0b5fcf7f08e9b111b5471', 'from': '0xb16a1d53ea76fb2bf822ce586b114e241eb95742', 'to': '0x2adf15801b868256786be363a6fb014efdc9b4ab', 'value': 16.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe0cadb2de7c70000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T12:03:02.000Z'}}, {'blockNum': '0x53164b', 'uniqueId': '0x7609baae205b66c67b1577cfc469d9a3dda430ef6c98e36e89955370ab2b90e8:log:13', 'hash': '0x7609baae205b66c67b1577cfc469d9a3dda430ef6c98e36e89955370ab2b90e8', 'from': '0xa2ab82999742ce4e1482c817cd7ed31b9d22c163', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 8.3908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x74721c24c5590000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T13:21:52.000Z'}}, {'blockNum': '0x53173c', 'uniqueId': '0x57f32a9f3d03ebc686ee8691503fa059d7c45d1669ac3525e9bfd5e2a8165cdc:log:10', 'hash': '0x57f32a9f3d03ebc686ee8691503fa059d7c45d1669ac3525e9bfd5e2a8165cdc', 'from': '0x2adf15801b868256786be363a6fb014efdc9b4ab', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe0cadb2de7c6ffff', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T14:24:06.000Z'}}, {'blockNum': '0x5318c6', 'uniqueId': '0xe54a567ba86949cf71522ef8c9ff78906750527e70400874b1d30120fc07f366:log:15', 'hash': '0xe54a567ba86949cf71522ef8c9ff78906750527e70400874b1d30120fc07f366', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'value': 3051.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa5703b9adee11c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T15:59:35.000Z'}}, {'blockNum': '0x53199b', 'uniqueId': '0x3d55a91beb2d1af160f4eb0c0b2eca02c9b9b87d0433af4fa195f0ff30856c46:log:9', 'hash': '0x3d55a91beb2d1af160f4eb0c0b2eca02c9b9b87d0433af4fa195f0ff30856c46', 'from': '0x98fa0aaceffa848f56786856d279019266ba9928', 'to': '0x5097e79509c3554c6e53f0d64c08aae3e8a9c6a1', 'value': 256.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0dee294805175a8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T16:48:11.000Z'}}, {'blockNum': '0x5319e7', 'uniqueId': '0x8090c9189737ca22b131dd9f6a9d849fc4304cd41202811d84893bacdee1e11a:log:4', 'hash': '0x8090c9189737ca22b131dd9f6a9d849fc4304cd41202811d84893bacdee1e11a', 'from': '0xc6c3633a71d6039468bfbf742d15bc5b9ca19dc0', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3051.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa5703b9adee11bffff', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T17:05:25.000Z'}}, {'blockNum': '0x531b1b', 'uniqueId': '0xd0d1c824dbf9601f16fe9b74b65d8cc15f22210175a2b5311dd66e2bdad52588:log:35', 'hash': '0xd0d1c824dbf9601f16fe9b74b65d8cc15f22210175a2b5311dd66e2bdad52588', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x1cc9f33bf026936648cf749a51dea65c623a7952', 'value': 221.824684400824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0c066f972f5c3f73ae', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T18:22:15.000Z'}}, {'blockNum': '0x531b60', 'uniqueId': '0x72c0b011fef060e1dcd4e627224c4bf41cadfb32b2bc6523062934430d71aa48:log:71', 'hash': '0x72c0b011fef060e1dcd4e627224c4bf41cadfb32b2bc6523062934430d71aa48', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x1cc9f33bf026936648cf749a51dea65c623a7952', 'value': 274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0eda838c4929080000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-04-15T18:38:14.000Z'}}]}}
Number of returned transfers:  15
Answer is complete
 
symbol             TNT
group              TCG
date        2018-06-23
hour             15:59
exchange       binance
Name: 564, dtype: object
HERE
 Symbol: TNT, Contract: 0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8
Datetime timestamps:  2018-06-23 15:59:00 2018-06-23 03:59:00 2018-06-24 03:59:00
Unix timestamps:  1529719140.0 1529805540.0
Hex Block Numbers:  0x5912ad 0x5929fe
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5912b2', 'uniqueId': '0xcd681e1acdb18fb0b9abe404290fd8171dce474e85d393d1395917b045703b6e:log:23', 'hash': '0xcd681e1acdb18fb0b9abe404290fd8171dce474e85d393d1395917b045703b6e', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xc564cf299def9c78cd16902499f985f9de1e2e97', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T02:00:09.000Z'}}, {'blockNum': '0x5912c6', 'uniqueId': '0x387897c78dd56894a3a5eebde81cb26dc730fc2ebe74987168856b1545bf97d5:log:77', 'hash': '0x387897c78dd56894a3a5eebde81cb26dc730fc2ebe74987168856b1545bf97d5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x84f6da769b1dd3ae3cbc3582d498ac7876495286', 'value': 15738.67647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x016e71d27018', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T02:06:18.000Z'}}, {'blockNum': '0x591327', 'uniqueId': '0xc7403ae39407e7ae20fbed5933a9536c8dcd7f09459a6bbdcd66576f817e8092:log:19', 'hash': '0xc7403ae39407e7ae20fbed5933a9536c8dcd7f09459a6bbdcd66576f817e8092', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x614e26792ea855772bfe3eee4985c14178e4f4d8', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T02:30:23.000Z'}}, {'blockNum': '0x59134f', 'uniqueId': '0x8f05e518b7f600682f01311ed376ba7b5174a1c90b2cab1921386c471e579639:log:42', 'hash': '0x8f05e518b7f600682f01311ed376ba7b5174a1c90b2cab1921386c471e579639', 'from': '0x3b564f1eaed7968c86433ad155b9b2e1cca0e9cd', 'to': '0x2002d3d52edf19974e8ee6c5d174b77c7397c54f', 'value': 930.8291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x15ac2c7d30', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T02:41:36.000Z'}}, {'blockNum': '0x591397', 'uniqueId': '0x5644eab70c8c475fecb1c35bfdbdce021553edad0e4409b8ac43867e69a96e01:log:29', 'hash': '0x5644eab70c8c475fecb1c35bfdbdce021553edad0e4409b8ac43867e69a96e01', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xa1ca99dd27d0e7f102d0ab9adda1002e6369e4da', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T03:00:02.000Z'}}, {'blockNum': '0x59140e', 'uniqueId': '0x97f5ba525eed5debdc5623e94a95936401061bce1c98c1e222ab34d0c65c8fae:log:39', 'hash': '0x97f5ba525eed5debdc5623e94a95936401061bce1c98c1e222ab34d0c65c8fae', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x87a8086c29e7f0f71dfd30e69e85709eb13007b4', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T03:31:23.000Z'}}, {'blockNum': '0x591483', 'uniqueId': '0xdfd7681f1e60b6f617a93f0785a1008d06d23faa38533e13c29fbc97555498e0:log:15', 'hash': '0xdfd7681f1e60b6f617a93f0785a1008d06d23faa38533e13c29fbc97555498e0', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x9591fa6da5b90ee24921ada74731eced0193cbc5', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:00:11.000Z'}}, {'blockNum': '0x591487', 'uniqueId': '0xfb448deaa6ddea7db9517caf4eed6cb3070fe3ccc2b66cbe3c2fcbcc9d57f7f0:log:1', 'hash': '0xfb448deaa6ddea7db9517caf4eed6cb3070fe3ccc2b66cbe3c2fcbcc9d57f7f0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3f100e05733b3c9b5d6a445d476f75b07e8f5ca1', 'value': 16440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x017ec6093800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:01:28.000Z'}}, {'blockNum': '0x5914df', 'uniqueId': '0x15252ceba391aade86bd3ffaf178a3f202539fa8e7f79d9f6720cde121d739fe:log:12', 'hash': '0x15252ceba391aade86bd3ffaf178a3f202539fa8e7f79d9f6720cde121d739fe', 'from': '0x41bc0f5cdd40d43efc10992254c03819518e5de8', 'to': '0x6282b6e382a17e339b8d8acd76473409841355de', 'value': 36200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x034ad8d06800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:26:34.000Z'}}, {'blockNum': '0x5914eb', 'uniqueId': '0xe9abbbfd064788235be7a7efd9d2b48c98761e77b865d26de30e5eca90ea6f71:log:23', 'hash': '0xe9abbbfd064788235be7a7efd9d2b48c98761e77b865d26de30e5eca90ea6f71', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xe6a3295501bfffba5c80224f3d42b3ae134cb935', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:30:10.000Z'}}, {'blockNum': '0x591501', 'uniqueId': '0x05d3dbf3bbe2b29282b0c5a32b586a5e7a3995279586435a60aef92fcd3a8c76:log:4', 'hash': '0x05d3dbf3bbe2b29282b0c5a32b586a5e7a3995279586435a60aef92fcd3a8c76', 'from': '0x6282b6e382a17e339b8d8acd76473409841355de', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x034ad8d06800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:35:09.000Z'}}, {'blockNum': '0x59150f', 'uniqueId': '0x1a6e5be8d052df4d29bb73f1f1e51cf1c82b656d0d6ce290871a60075d89e974:log:1', 'hash': '0x1a6e5be8d052df4d29bb73f1f1e51cf1c82b656d0d6ce290871a60075d89e974', 'from': '0xfc549b405d59acf81cf9245625133453168220da', 'to': '0x276b3aaf9e610cb1c3f3992d4fd50437dbba92f7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:37:41.000Z'}}, {'blockNum': '0x591520', 'uniqueId': '0x85104557b2b6baea6ad5208f0ca66ac85267ceb1a381eda8659645a72abf600b:log:1', 'hash': '0x85104557b2b6baea6ad5208f0ca66ac85267ceb1a381eda8659645a72abf600b', 'from': '0x1d0a0192a9393a7715694cbbcfef1a97e26b6373', 'to': '0x276b3aaf9e610cb1c3f3992d4fd50437dbba92f7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:41:23.000Z'}}, {'blockNum': '0x59152d', 'uniqueId': '0xe627150475c9e82102f393b9d74f1401fb23d312773618e17f79b09b149b4fd6:log:0', 'hash': '0xe627150475c9e82102f393b9d74f1401fb23d312773618e17f79b09b149b4fd6', 'from': '0x949790f987471159b390bd1450cef34e64dd1f56', 'to': '0x276b3aaf9e610cb1c3f3992d4fd50437dbba92f7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:44:42.000Z'}}, {'blockNum': '0x59153c', 'uniqueId': '0x5bfbd4445b67ec145e63322b67b934da3f7386a1643fd9c317e263a7193851cb:log:9', 'hash': '0x5bfbd4445b67ec145e63322b67b934da3f7386a1643fd9c317e263a7193851cb', 'from': '0x3f100e05733b3c9b5d6a445d476f75b07e8f5ca1', 'to': '0x276b3aaf9e610cb1c3f3992d4fd50437dbba92f7', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:48:09.000Z'}}, {'blockNum': '0x591546', 'uniqueId': '0x13605da80c44326298d298e43db401454137f5626185563dbada9a6d0c1328d9:log:3', 'hash': '0x13605da80c44326298d298e43db401454137f5626185563dbada9a6d0c1328d9', 'from': '0x3f100e05733b3c9b5d6a445d476f75b07e8f5ca1', 'to': '0xcbc859a7cafc64b97740ba2831985ce15d28ecb2', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:50:25.000Z'}}, {'blockNum': '0x59154b', 'uniqueId': '0x309b178f1adf7eb2a188cee015ac3f8e8e1fd57d7c739191b67f0d2f868194af:log:5', 'hash': '0x309b178f1adf7eb2a188cee015ac3f8e8e1fd57d7c739191b67f0d2f868194af', 'from': '0x3f100e05733b3c9b5d6a445d476f75b07e8f5ca1', 'to': '0xb165b079677a3ce6db277b7e69d27ee5d4989ef7', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:52:34.000Z'}}, {'blockNum': '0x591553', 'uniqueId': '0x635b00d7cc74839d6de5cb75c37460c706d6c4ba32191c2f89d5a33b95dc1135:log:20', 'hash': '0x635b00d7cc74839d6de5cb75c37460c706d6c4ba32191c2f89d5a33b95dc1135', 'from': '0x3f100e05733b3c9b5d6a445d476f75b07e8f5ca1', 'to': '0x3de230fac9a91cddaf624310c96aa2f917c1cbb8', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:54:37.000Z'}}, {'blockNum': '0x591562', 'uniqueId': '0xd61b0cc72cdea2bb88ed31fb4feaf3e60faff8a9efe2a90da7c11f57acce746a:log:0', 'hash': '0xd61b0cc72cdea2bb88ed31fb4feaf3e60faff8a9efe2a90da7c11f57acce746a', 'from': '0x3f100e05733b3c9b5d6a445d476f75b07e8f5ca1', 'to': '0xf1ce6d4fe037589746cc06ac64de92f4adc28e00', 'value': 940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x15e2d62c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T04:57:27.000Z'}}, {'blockNum': '0x591567', 'uniqueId': '0xb55ff8c1c9f02312560bc2a83d7eca5cf282cecffe87c2dc4ab97aa62afe2061:log:42', 'hash': '0xb55ff8c1c9f02312560bc2a83d7eca5cf282cecffe87c2dc4ab97aa62afe2061', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2992882815f08155e1ee45505be74953875dbd79', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T05:00:10.000Z'}}, {'blockNum': '0x5915f5', 'uniqueId': '0x89f6deeeb94e0e633031e5589fa99afaa024cf685a60947f84b416113f6aca45:log:33', 'hash': '0x89f6deeeb94e0e633031e5589fa99afaa024cf685a60947f84b416113f6aca45', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xff161ee307ce699df441f21c3862e982ab2b8601', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T05:30:34.000Z'}}, {'blockNum': '0x59165a', 'uniqueId': '0x45c53dea4c678a9474fdf177befb270fa5421425764c4ab7b75782cd0ab44bb2:log:29', 'hash': '0x45c53dea4c678a9474fdf177befb270fa5421425764c4ab7b75782cd0ab44bb2', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xc5a4efa08619a47c12b1850a41d3e93be2c25515', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T06:00:20.000Z'}}, {'blockNum': '0x5916e5', 'uniqueId': '0x2a0fa04e6fa86a0fc51d65e3c5a6ba7a3f23196684a552292ead5a437017f8d6:log:17', 'hash': '0x2a0fa04e6fa86a0fc51d65e3c5a6ba7a3f23196684a552292ead5a437017f8d6', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xa1ac33f38bf51fd0a751737173025e46811498ca', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T06:30:01.000Z'}}, {'blockNum': '0x59171e', 'uniqueId': '0x7d580e7b09b938d11a4e6dfc65b7f5db4438cea47a276ab66d9d3fe3db3685a2:log:0', 'hash': '0x7d580e7b09b938d11a4e6dfc65b7f5db4438cea47a276ab66d9d3fe3db3685a2', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x225a400c62a8aaa56660da01fac5e5c1ac9d4938', 'value': 1534.9812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x23bd336f40', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T06:43:16.000Z'}}, {'blockNum': '0x591756', 'uniqueId': '0xc96686e8107b29919989c48383aef7567c17602abb9dcd154ce1f8a1a85f78ce:log:48', 'hash': '0xc96686e8107b29919989c48383aef7567c17602abb9dcd154ce1f8a1a85f78ce', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xc87d0915793d8c706c9174d08e081b75ca757fe8', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:00:06.000Z'}}, {'blockNum': '0x59178a', 'uniqueId': '0xf3f7d5bc1c693e2d1f051d1b7444c1f4c7fc924b311a23b08a77ca2a7f5b006b:log:48', 'hash': '0xf3f7d5bc1c693e2d1f051d1b7444c1f4c7fc924b311a23b08a77ca2a7f5b006b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa97f7dd4adbbe6159da8b1250098309ca31bf5f9', 'value': 9980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe85d6f7c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:13:50.000Z'}}, {'blockNum': '0x5917d1', 'uniqueId': '0x44fbd86a0a656451b25d62658c671e57ac40f1f9cc6cd619eb20ab683401ec49:log:6', 'hash': '0x44fbd86a0a656451b25d62658c671e57ac40f1f9cc6cd619eb20ab683401ec49', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x4bd51b1a1949a5765305e55e7d4bca96e52e17de', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:30:04.000Z'}}, {'blockNum': '0x5917f0', 'uniqueId': '0xdc15ec0aa0bb0bc01da9ca40f2b465e6ab5662be21ee9daee8111a7d7e3b3c6a:log:2', 'hash': '0xdc15ec0aa0bb0bc01da9ca40f2b465e6ab5662be21ee9daee8111a7d7e3b3c6a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xbffa49c68bf39c91deb2031cd6dbb54ba02ccb48', 'value': 67867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x062c26d7bb00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:37:14.000Z'}}, {'blockNum': '0x5917f0', 'uniqueId': '0xaf267052ea7b34b1c7a368d8251369e46bc0a287b4feeb3ec0e11b12660e10b4:log:3', 'hash': '0xaf267052ea7b34b1c7a368d8251369e46bc0a287b4feeb3ec0e11b12660e10b4', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:37:14.000Z'}}, {'blockNum': '0x5917fc', 'uniqueId': '0xa1b64c737830dad2dec9b9739824d05d08479c87fb5ad7618f56962c517a0ef2:log:20', 'hash': '0xa1b64c737830dad2dec9b9739824d05d08479c87fb5ad7618f56962c517a0ef2', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x1f0ffc6a01b15472f1f00195bb1d487698fb30ba', 'value': 739.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x1135f9b000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:39:20.000Z'}}, {'blockNum': '0x591804', 'uniqueId': '0x2f65fd32ecbbd6cbd8fd3209ba90e6ec97f90d3472a11e4890a71c31fcf23253:log:3', 'hash': '0x2f65fd32ecbbd6cbd8fd3209ba90e6ec97f90d3472a11e4890a71c31fcf23253', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:41:23.000Z'}}, {'blockNum': '0x591809', 'uniqueId': '0x96cde3c0dc8f96791e8acf8f41cef788553ea3773ca19364ee96270226b56613:log:44', 'hash': '0x96cde3c0dc8f96791e8acf8f41cef788553ea3773ca19364ee96270226b56613', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x82748cf18a7f142a8da4d4274349087141ac8732', 'value': 12639.047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x012646973660', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:42:49.000Z'}}, {'blockNum': '0x591815', 'uniqueId': '0x89bbc118b1d60abe892dbdbd76866dfa7a61fa85dc56e3fecdd9022266cc4d67:log:6', 'hash': '0x89bbc118b1d60abe892dbdbd76866dfa7a61fa85dc56e3fecdd9022266cc4d67', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:45:01.000Z'}}, {'blockNum': '0x591816', 'uniqueId': '0xe7daf28ad83c6abba4f4d811a62d6ef8a5a030bdce76bdf641490c7aa33f6a55:log:12', 'hash': '0xe7daf28ad83c6abba4f4d811a62d6ef8a5a030bdce76bdf641490c7aa33f6a55', 'from': '0xbffa49c68bf39c91deb2031cd6dbb54ba02ccb48', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x062c26d7bb00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T07:45:16.000Z'}}, {'blockNum': '0x591852', 'uniqueId': '0x94506c350cd7828c16b43c93faa68af96e546f1f740685a74be58edbd579a3ea:log:47', 'hash': '0x94506c350cd7828c16b43c93faa68af96e546f1f740685a74be58edbd579a3ea', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x4a8f79f03988ccc8893245c54d0de915e602ea6f', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T08:00:10.000Z'}}, {'blockNum': '0x5918cc', 'uniqueId': '0x1215e7c39cde4d2b892762dbb798d86f3e80e3897327c8a453287979847d1ce4:log:59', 'hash': '0x1215e7c39cde4d2b892762dbb798d86f3e80e3897327c8a453287979847d1ce4', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xab5ba69182797ec876ecf34e761888b826df75dd', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T08:30:38.000Z'}}, {'blockNum': '0x591948', 'uniqueId': '0xa812a7e778e356599f44353adc0f9d1737cdc364b3144f0ceda34a234c6b3549:log:29', 'hash': '0xa812a7e778e356599f44353adc0f9d1737cdc364b3144f0ceda34a234c6b3549', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x1720adb3931912d7c8367515eae1d9c22862f7f0', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T09:00:13.000Z'}}, {'blockNum': '0x5919cd', 'uniqueId': '0x4146d4c2657d9862285ec61cb8d2e61207c01c76ff9cba2f428928f3efb1a8d4:log:11', 'hash': '0x4146d4c2657d9862285ec61cb8d2e61207c01c76ff9cba2f428928f3efb1a8d4', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xf06148f12732b0a951588c46aa11584723f284d1', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T09:30:02.000Z'}}, {'blockNum': '0x591a46', 'uniqueId': '0xd4ee888a9f24f128a092653bc9473db23ad090ee87c33006ed3b2c2c3fd89f94:log:16', 'hash': '0xd4ee888a9f24f128a092653bc9473db23ad090ee87c33006ed3b2c2c3fd89f94', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xf9ff93faa6f1cbf739d5ca15fc54e9db7dd50b6e', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T09:59:57.000Z'}}, {'blockNum': '0x591a75', 'uniqueId': '0x089ff03662865223cb1e78cb7bab4dfe2c30c58c3f1bb54e205ec270e0ba6c52:log:10', 'hash': '0x089ff03662865223cb1e78cb7bab4dfe2c30c58c3f1bb54e205ec270e0ba6c52', 'from': '0x8e27e934cf8819e1607db6608df6292f8b06006d', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T10:14:08.000Z'}}, {'blockNum': '0x591ab9', 'uniqueId': '0x47d0fbf3e796cf1265244fe3db94c1ea6c6934b039a1a20a5ea285fef6d8d625:log:78', 'hash': '0x47d0fbf3e796cf1265244fe3db94c1ea6c6934b039a1a20a5ea285fef6d8d625', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x10b2ee6f9530dc4dd45c4be5a43dd406a369e00d', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T10:30:25.000Z'}}, {'blockNum': '0x591b3b', 'uniqueId': '0xaedff78990b8fd6d1936f1b52d9c82b8b91ea3b5feba4c79db683c4669f6deea:log:210', 'hash': '0xaedff78990b8fd6d1936f1b52d9c82b8b91ea3b5feba4c79db683c4669f6deea', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x8b9c5557b4eb05f716f1a0f849ecc37d6abd8519', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T10:59:57.000Z'}}, {'blockNum': '0x591b82', 'uniqueId': '0xbab9f645fb7874cd9c91031e33e7f39483e773cf34279850288234d9c8ee0750:log:7', 'hash': '0xbab9f645fb7874cd9c91031e33e7f39483e773cf34279850288234d9c8ee0750', 'from': '0x0a8966d44be0272295814e876791431791440256', 'to': '0x631e963daf1493ba7096941e53438e00df1dc925', 'value': 41384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03c38bdca800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T11:16:43.000Z'}}, {'blockNum': '0x591b89', 'uniqueId': '0x72895b23ee4375098c7bcdc70d114c1ddc754ad94216a3b0a0b0d138b0329a17:log:181', 'hash': '0x72895b23ee4375098c7bcdc70d114c1ddc754ad94216a3b0a0b0d138b0329a17', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb6e41688d40eff755840a14a9cfabbb770607e58', 'value': 69940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x065c6ae2b400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T11:17:41.000Z'}}, {'blockNum': '0x591bb8', 'uniqueId': '0x7ae15853e6da210fbeda83e9b9c890ccf99550c6c3f439c9c19e3218853d1070:log:85', 'hash': '0x7ae15853e6da210fbeda83e9b9c890ccf99550c6c3f439c9c19e3218853d1070', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x5f43589ceca88d48bff459ab38f91c2867181f77', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T11:29:58.000Z'}}, {'blockNum': '0x591bd3', 'uniqueId': '0xf8bcf696d0b8fa8823d657150820dc552b02b41061161dec8430c89f4c9753fd:log:22', 'hash': '0xf8bcf696d0b8fa8823d657150820dc552b02b41061161dec8430c89f4c9753fd', 'from': '0x631e963daf1493ba7096941e53438e00df1dc925', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x03c38bdca800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T11:35:23.000Z'}}, {'blockNum': '0x591bd8', 'uniqueId': '0x8789207cb4cb8d65a38b9906ae1833830fdf9874793550ada359fcdf2ec7c572:log:72', 'hash': '0x8789207cb4cb8d65a38b9906ae1833830fdf9874793550ada359fcdf2ec7c572', 'from': '0xa6dcad67f828c927661d85be140d43795d2bc94e', 'to': '0x107a239cac9086ffb6a0e9ac4789fd9aa15015f5', 'value': 5022.629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74f133a520', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T11:36:23.000Z'}}, {'blockNum': '0x591bfe', 'uniqueId': '0x59e8baff13123686fef3c81ce4df18ceeeef146e04a588644fd35c7a4c1cd3cf:log:33', 'hash': '0x59e8baff13123686fef3c81ce4df18ceeeef146e04a588644fd35c7a4c1cd3cf', 'from': '0x2173c8abce6be4a4eb164288ca9209e4a1a43de3', 'to': '0x24b8fa21078becfd2c2dbcb42c2a179d2b004fa0', 'value': 2502.9555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3a46c70030', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T11:46:46.000Z'}}, {'blockNum': '0x591c34', 'uniqueId': '0x5c864f4dbbd532545bbf6a7683e2c4ee5a6995e31f5e4bd8db0f0082ff1cb1d2:log:16', 'hash': '0x5c864f4dbbd532545bbf6a7683e2c4ee5a6995e31f5e4bd8db0f0082ff1cb1d2', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xa532abf7f8d0004ab0409088891dcd4f6a695734', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T12:00:09.000Z'}}, {'blockNum': '0x591c88', 'uniqueId': '0x15950f299d0dcbcde057addf0c3e08852f8b1f31df35330e61acc6c6950e89a2:log:112', 'hash': '0x15950f299d0dcbcde057addf0c3e08852f8b1f31df35330e61acc6c6950e89a2', 'from': '0xde2873fa595d69f21ce6f2d4d98521a8848754a8', 'to': '0x8477a25aeb4d89b2ec359f878f29cedff0c26473', 'value': 2746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x3fef6f7a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T12:20:27.000Z'}}, {'blockNum': '0x591cbe', 'uniqueId': '0x30f5f04235963d12b47d7bc059b020e85779c42c1e1ba992353eeb773e263544:log:19', 'hash': '0x30f5f04235963d12b47d7bc059b020e85779c42c1e1ba992353eeb773e263544', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xf188ea8a119539b52240aaf93cb1aa222f0f9bc4', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T12:30:15.000Z'}}, {'blockNum': '0x591d4a', 'uniqueId': '0x4ef6b7ca69289cd2fdb92abf616576acf50f9165a5ef8fcacef5960b10a532bd:log:51', 'hash': '0x4ef6b7ca69289cd2fdb92abf616576acf50f9165a5ef8fcacef5960b10a532bd', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x669ddf5b17cf6f8405808c3cdfd077c8a9c0ab6a', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T13:00:06.000Z'}}, {'blockNum': '0x591d6a', 'uniqueId': '0xad6798cf0a0167cc24433b33300286c4c9321c062ed51c54f9295103a331a0c3:log:107', 'hash': '0xad6798cf0a0167cc24433b33300286c4c9321c062ed51c54f9295103a331a0c3', 'from': '0x4781b3622298a8b2a88b2834dbf9cab46a1891e5', 'to': '0x4975d42b3cd4d7d7e0f12b07dca8c395c22e85e0', 'value': 20910.4751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01e6dc24dff0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T13:09:06.000Z'}}, {'blockNum': '0x591dac', 'uniqueId': '0x96cd4c8e66d41a6dfeeadb9d6e42644e693bb1ef2e3c48273fe56ea07cb9856a:log:6', 'hash': '0x96cd4c8e66d41a6dfeeadb9d6e42644e693bb1ef2e3c48273fe56ea07cb9856a', 'from': '0x65ee6e6f85dc472af3fde5c8fcf1cbd2e4ac8d2d', 'to': '0x107a239cac9086ffb6a0e9ac4789fd9aa15015f5', 'value': 6234.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x912b41f200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T13:25:32.000Z'}}, {'blockNum': '0x591db8', 'uniqueId': '0xa6f2b2ae7961fe160a17541640119432773081f0f6fa22cc8f1205937dda2bc2:log:19', 'hash': '0xa6f2b2ae7961fe160a17541640119432773081f0f6fa22cc8f1205937dda2bc2', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xdda55bce215f07089a00e015f0e30f39e5666fea', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T13:30:08.000Z'}}, {'blockNum': '0x591df6', 'uniqueId': '0xbd758c328feceb122c7b288f2b8f6b3144a18bb788b78c9121c2d21434a0abd6:log:8', 'hash': '0xbd758c328feceb122c7b288f2b8f6b3144a18bb788b78c9121c2d21434a0abd6', 'from': '0x107a239cac9086ffb6a0e9ac4789fd9aa15015f5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11257.589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x01061c759720', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T13:45:22.000Z'}}, {'blockNum': '0x591e3b', 'uniqueId': '0x4995521588d90cf7e529cb1bd34261b71a2b60472ab9b2e481e8a3ebd88f4fe3:log:49', 'hash': '0x4995521588d90cf7e529cb1bd34261b71a2b60472ab9b2e481e8a3ebd88f4fe3', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xf743d2393df84fa8121580e9380d64923b2fc265', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T14:00:03.000Z'}}, {'blockNum': '0x591e43', 'uniqueId': '0xcc65c764341c917a3dfcd42c75bf7ffb1aea7f378680093bed56c39497e0b3b8:log:123', 'hash': '0xcc65c764341c917a3dfcd42c75bf7ffb1aea7f378680093bed56c39497e0b3b8', 'from': '0x5711140ca330bdbea1273fcb70e402c07701e61f', 'to': '0x0736ec3b18fb01a15e61983aa1e9708fbca18f97', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T14:02:28.000Z'}}, {'blockNum': '0x591e44', 'uniqueId': '0xf814e0f84abd4da8ff98fab3577e39966753cc493b7b8c2ae53b8d69304638fe:log:101', 'hash': '0xf814e0f84abd4da8ff98fab3577e39966753cc493b7b8c2ae53b8d69304638fe', 'from': '0xadc9b6cc64df4c3fbdb5b068d41c8b0c288172f6', 'to': '0x0736ec3b18fb01a15e61983aa1e9708fbca18f97', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T14:02:55.000Z'}}, {'blockNum': '0x591e46', 'uniqueId': '0x5e02518442dcfa7e95abc4b997059e78729caa9307fd687ef628981b50869416:log:117', 'hash': '0x5e02518442dcfa7e95abc4b997059e78729caa9307fd687ef628981b50869416', 'from': '0xf06148f12732b0a951588c46aa11584723f284d1', 'to': '0x0736ec3b18fb01a15e61983aa1e9708fbca18f97', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T14:03:26.000Z'}}, {'blockNum': '0x591eb2', 'uniqueId': '0x41967231ef432d6bc8d2bc00b838d9bc9d37c0b49fc12dabd2663ce97967c668:log:24', 'hash': '0x41967231ef432d6bc8d2bc00b838d9bc9d37c0b49fc12dabd2663ce97967c668', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x1b36ea6ecf317af94da905dca88ee25207364187', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T14:30:10.000Z'}}, {'blockNum': '0x591f23', 'uniqueId': '0x2d27b2deb0785c7a605e9e3e7b87ba7d982c06c3aaca8575f876e82c6392b518:log:8', 'hash': '0x2d27b2deb0785c7a605e9e3e7b87ba7d982c06c3aaca8575f876e82c6392b518', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xe1340bbd7d74bc789523cff0bf50236e2a31206c', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T15:00:02.000Z'}}, {'blockNum': '0x591f5a', 'uniqueId': '0x4c7214f40083376efbe5a33190f53f3c549553b273dc24a4214fceb481fd8998:log:9', 'hash': '0x4c7214f40083376efbe5a33190f53f3c549553b273dc24a4214fceb481fd8998', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 77683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0710b2c31300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T15:19:21.000Z'}}, {'blockNum': '0x591f5b', 'uniqueId': '0xab9ac0b16014d15ebc3021491f8516b904e27bacb9d6d667018b056661eef91e:log:6', 'hash': '0xab9ac0b16014d15ebc3021491f8516b904e27bacb9d6d667018b056661eef91e', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T15:19:42.000Z'}}, {'blockNum': '0x591f6f', 'uniqueId': '0xb0505e6c65f840dec5b56fb31a6c06b184f6463ca3637390a38fc545d1bed1b1:log:2', 'hash': '0xb0505e6c65f840dec5b56fb31a6c06b184f6463ca3637390a38fc545d1bed1b1', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T15:25:07.000Z'}}, {'blockNum': '0x591f6f', 'uniqueId': '0x9fef9337a5e264a06fa0a734de5cdf366a64ada7411996335f030b86316de938:log:3', 'hash': '0x9fef9337a5e264a06fa0a734de5cdf366a64ada7411996335f030b86316de938', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0710b2c31300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T15:25:07.000Z'}}, {'blockNum': '0x591f81', 'uniqueId': '0x6cfddb5d9d98be6876eb119c56cc70b10474b92f7f9f79585980acfd55052abd:log:26', 'hash': '0x6cfddb5d9d98be6876eb119c56cc70b10474b92f7f9f79585980acfd55052abd', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x5c406987eb0fce6da69b9cb75e183f53132fbc0f', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T15:30:11.000Z'}}, {'blockNum': '0x59200f', 'uniqueId': '0x13996045b270806c2f941ba505c09f81fbce4dd847c78896ed5f405a7d0c0658:log:9', 'hash': '0x13996045b270806c2f941ba505c09f81fbce4dd847c78896ed5f405a7d0c0658', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xba5a619135ae1367ef3e16d23b18d05af2f6441a', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:00:04.000Z'}}, {'blockNum': '0x592017', 'uniqueId': '0xa13a448b6ca69b9a00f86894eb54c46e6ca7c092a03b2901b98d04b82350f5de:log:16', 'hash': '0xa13a448b6ca69b9a00f86894eb54c46e6ca7c092a03b2901b98d04b82350f5de', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 66402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x060a0ac32200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:01:11.000Z'}}, {'blockNum': '0x59201d', 'uniqueId': '0xfce75d59d2bbbc401db60302065849066ef29eb5e23b9a81c728660ac5a3b604:log:1', 'hash': '0xfce75d59d2bbbc401db60302065849066ef29eb5e23b9a81c728660ac5a3b604', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xbffa49c68bf39c91deb2031cd6dbb54ba02ccb48', 'value': 54012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04e9909b7c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:02:10.000Z'}}, {'blockNum': '0x59201d', 'uniqueId': '0xe033487f355fb74f083d514b63b8b998b6101395c72fb26a3442da475a655a18:log:2', 'hash': '0xe033487f355fb74f083d514b63b8b998b6101395c72fb26a3442da475a655a18', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 8997.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd17fab5620', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:02:10.000Z'}}, {'blockNum': '0x59201f', 'uniqueId': '0x545357a4f2af1b8064f78e53db1c1ba2b0a299ddd68af5ea9cf40e0fae9c6ee1:log:13', 'hash': '0x545357a4f2af1b8064f78e53db1c1ba2b0a299ddd68af5ea9cf40e0fae9c6ee1', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x3b54639abfc11e86cc2f63924457b73545369bdb', 'value': 12502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x012315ba1600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:02:51.000Z'}}, {'blockNum': '0x592027', 'uniqueId': '0x6a632fad7071706bc4c572a0587b166d9284da3f69cd6e8aace1344c454aee4c:log:14', 'hash': '0x6a632fad7071706bc4c572a0587b166d9284da3f69cd6e8aace1344c454aee4c', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8997.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xd17fab5620', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:05:19.000Z'}}, {'blockNum': '0x592027', 'uniqueId': '0xb49ada49b9e90b71232958fd4c4cd953a26fa27b49d9a3fb0477517315bf86db:log:15', 'hash': '0xb49ada49b9e90b71232958fd4c4cd953a26fa27b49d9a3fb0477517315bf86db', 'from': '0xbffa49c68bf39c91deb2031cd6dbb54ba02ccb48', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04e9909b7c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:05:19.000Z'}}, {'blockNum': '0x592027', 'uniqueId': '0xa1b2bc05dd40d8eea8b34f415ca9c3317a4f7ad351e977c3f32b4710df54536b:log:16', 'hash': '0xa1b2bc05dd40d8eea8b34f415ca9c3317a4f7ad351e977c3f32b4710df54536b', 'from': '0x3b54639abfc11e86cc2f63924457b73545369bdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x012315ba1600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:05:19.000Z'}}, {'blockNum': '0x592027', 'uniqueId': '0x834b2bd0bfe43b2e868ee9be39977fd5050855c939220ac49cfc8ef335218d71:log:17', 'hash': '0x834b2bd0bfe43b2e868ee9be39977fd5050855c939220ac49cfc8ef335218d71', 'from': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x060a0ac32200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:05:19.000Z'}}, {'blockNum': '0x59202a', 'uniqueId': '0xd11b85abcd502a4be543a77df7cd67ef3a12afd1c2ff50343ec4366f9b89db8e:log:0', 'hash': '0xd11b85abcd502a4be543a77df7cd67ef3a12afd1c2ff50343ec4366f9b89db8e', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xc86d9b6148561e33fdd392820d00dd6106f15b10', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:05:37.000Z'}}, {'blockNum': '0x59202b', 'uniqueId': '0x629367a7730a703772f43d713417aa5b075052b0b24ec892f10fe8fb21366bf8:log:24', 'hash': '0x629367a7730a703772f43d713417aa5b075052b0b24ec892f10fe8fb21366bf8', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 11283.00502089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0106b3f35c49', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:06:08.000Z'}}, {'blockNum': '0x59202b', 'uniqueId': '0xfa82c49895b8e0165b1f356f2a67afaead8d121c9d672ff424aa3817a8d6e9d1:log:25', 'hash': '0xfa82c49895b8e0165b1f356f2a67afaead8d121c9d672ff424aa3817a8d6e9d1', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4144.96642336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6081ecd520', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:06:08.000Z'}}, {'blockNum': '0x59202c', 'uniqueId': '0xfdb7fea96a2cfb303b6d63794ae1275830d69cdd810186d17205851350d4be20:log:4', 'hash': '0xfdb7fea96a2cfb303b6d63794ae1275830d69cdd810186d17205851350d4be20', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x3b54639abfc11e86cc2f63924457b73545369bdb', 'value': 10000.446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d74d9ac0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:06:32.000Z'}}, {'blockNum': '0x59202d', 'uniqueId': '0x48db541495d9011411ed95bc7d1bd5966feccbc3f07a5a910a1911f27222be25:log:0', 'hash': '0x48db541495d9011411ed95bc7d1bd5966feccbc3f07a5a910a1911f27222be25', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0x63b5d921e347c068610cc339654ff1990a3dbab6', 'value': 147.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x036eded840', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:06:37.000Z'}}, {'blockNum': '0x59202d', 'uniqueId': '0xf06010c1203b9ccd915f41385a2d4d7a3336ccdd909444319e011f016b24527e:log:1', 'hash': '0xf06010c1203b9ccd915f41385a2d4d7a3336ccdd909444319e011f016b24527e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:06:37.000Z'}}, {'blockNum': '0x59202d', 'uniqueId': '0x63bc7bfcff97ae371e91c21d95dc449158fe4fc536a7ee28fb78b7aee9a65516:log:2', 'hash': '0x63bc7bfcff97ae371e91c21d95dc449158fe4fc536a7ee28fb78b7aee9a65516', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 64750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x05e394132e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:06:37.000Z'}}, {'blockNum': '0x59202f', 'uniqueId': '0xb10029106960afc385f5fd3c4904af75ab97c3428a1ecde5912472a3bda1e115:log:4', 'hash': '0xb10029106960afc385f5fd3c4904af75ab97c3428a1ecde5912472a3bda1e115', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xc86d9b6148561e33fdd392820d00dd6106f15b10', 'value': 8351.4702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xc272a436e0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:07:11.000Z'}}, {'blockNum': '0x59203d', 'uniqueId': '0x6973fb819ab02c363efc095625a741da6939ee329cc8b5cb8331b7b0d8491667:log:4', 'hash': '0x6973fb819ab02c363efc095625a741da6939ee329cc8b5cb8331b7b0d8491667', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe821d4b200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:10:40.000Z'}}, {'blockNum': '0x592050', 'uniqueId': '0x7155998a40910bd7c3f5b77c7fd405202b264614a2b9d5da3c2440e568d944dc:log:10', 'hash': '0x7155998a40910bd7c3f5b77c7fd405202b264614a2b9d5da3c2440e568d944dc', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:15:06.000Z'}}, {'blockNum': '0x592050', 'uniqueId': '0x67f9b5ea90623c2c6ee8de1fa26baf20be88ee7e649ed2de2a150eb46ad4b81a:log:11', 'hash': '0x67f9b5ea90623c2c6ee8de1fa26baf20be88ee7e649ed2de2a150eb46ad4b81a', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16152.93284625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x017816fb8111', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:15:06.000Z'}}, {'blockNum': '0x592050', 'uniqueId': '0xa6eb7f2fe8b5a500ad0c3e30ede7016de0e3b61630bc56beae375c31b243499b:log:12', 'hash': '0xa6eb7f2fe8b5a500ad0c3e30ede7016de0e3b61630bc56beae375c31b243499b', 'from': '0x3b54639abfc11e86cc2f63924457b73545369bdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000.446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d74d9ac0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:15:06.000Z'}}, {'blockNum': '0x592082', 'uniqueId': '0x46d77ab151ec86d70ef24f817cabec2a0f7758797895f1fd94ff572c21602f1c:log:8', 'hash': '0x46d77ab151ec86d70ef24f817cabec2a0f7758797895f1fd94ff572c21602f1c', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 64750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x05e394132e00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:25:01.000Z'}}, {'blockNum': '0x592097', 'uniqueId': '0x8d7e8e8b7d9cfcc77d79df881734115dc4608e154024f3f07be354e53781aeb2:log:9', 'hash': '0x8d7e8e8b7d9cfcc77d79df881734115dc4608e154024f3f07be354e53781aeb2', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x925ea81e41a8908693a4e22939ce3cf329778cc4', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:30:03.000Z'}}, {'blockNum': '0x5920ab', 'uniqueId': '0x4cfb15b60d83a70d2b95e65cbe1f958034dce3384f394765749d47c636920190:log:5', 'hash': '0x4cfb15b60d83a70d2b95e65cbe1f958034dce3384f394765749d47c636920190', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1de507af534a90a854957840b259ef2ae0d6f8f8', 'value': 67612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x062636ec9c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:33:58.000Z'}}, {'blockNum': '0x5920ab', 'uniqueId': '0x42b9756d6c8bafa960bc4de4a39159b3f246e527598640fd256c966d76080c0f:log:9', 'hash': '0x42b9756d6c8bafa960bc4de4a39159b3f246e527598640fd256c966d76080c0f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 58246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x054c2536c600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:33:58.000Z'}}, {'blockNum': '0x5920ab', 'uniqueId': '0xb3054f1146d9f0edc72772e33f7f2d326fda27e56d00eeca7e51086d55ed1d7b:log:15', 'hash': '0xb3054f1146d9f0edc72772e33f7f2d326fda27e56d00eeca7e51086d55ed1d7b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb6e41688d40eff755840a14a9cfabbb770607e58', 'value': 84274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x07aa282ef200', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:33:58.000Z'}}, {'blockNum': '0x5920cb', 'uniqueId': '0xe51b0e4165cdbd1a8c6fce6253ffab5325bd020fbe874e1596f4ca7f3b630a99:log:2', 'hash': '0xe51b0e4165cdbd1a8c6fce6253ffab5325bd020fbe874e1596f4ca7f3b630a99', 'from': '0xbf3845a066965348a8f5161e678dd85dd945b859', 'to': '0x632beaa87fa70e285e56c75c90edecc9b6ec095d', 'value': 648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0f16618800', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:41:56.000Z'}}, {'blockNum': '0x5920ec', 'uniqueId': '0x28f0ea3f72ffa1166c1d68aca75371412f8d885c5396306e9e698927095deb33:log:88', 'hash': '0x28f0ea3f72ffa1166c1d68aca75371412f8d885c5396306e9e698927095deb33', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'value': 12489.234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0122c9a2b740', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:49:54.000Z'}}, {'blockNum': '0x5920fa', 'uniqueId': '0x97e744d87ed425296de4cf35b02a4308e7c9c621f3f41f98131e352ada0c05b8:log:1', 'hash': '0x97e744d87ed425296de4cf35b02a4308e7c9c621f3f41f98131e352ada0c05b8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x322333b2d001e438fd6dbd29c2707f53262ab6b2', 'value': 24940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0244adfbec00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:53:13.000Z'}}, {'blockNum': '0x5920fb', 'uniqueId': '0x4f6b70b8089134a83b085803672fec35deb1b767404b52f2df626f3450877232:log:7', 'hash': '0x4f6b70b8089134a83b085803672fec35deb1b767404b52f2df626f3450877232', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 88356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x080932cca400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:53:42.000Z'}}, {'blockNum': '0x592100', 'uniqueId': '0x48d54b67063f7d2b1049f2c98239139ed17a0e90275bb0234b49ed809e0330c4:log:32', 'hash': '0x48d54b67063f7d2b1049f2c98239139ed17a0e90275bb0234b49ed809e0330c4', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 88356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x080932cca400', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:55:36.000Z'}}, {'blockNum': '0x592100', 'uniqueId': '0x57e9aed2869664bf98d9cdace5e57fb14e1e85ffd4e1c2e5f10f44c9679eec3c:log:33', 'hash': '0x57e9aed2869664bf98d9cdace5e57fb14e1e85ffd4e1c2e5f10f44c9679eec3c', 'from': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12489.234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0122c9a2b740', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T16:55:36.000Z'}}, {'blockNum': '0x592114', 'uniqueId': '0x8d06ef10057d92a04b667f345686dff6a57f52037af560250ec9648638464ae2:log:20', 'hash': '0x8d06ef10057d92a04b667f345686dff6a57f52037af560250ec9648638464ae2', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x204834582da170308ac17ca01fa03bed418b45e1', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T17:00:20.000Z'}}, {'blockNum': '0x592153', 'uniqueId': '0x0c40852a26c5128edcfbcfe6c904a679ab81a20d4ca67d90216478fb3aa4388a:log:2', 'hash': '0x0c40852a26c5128edcfbcfe6c904a679ab81a20d4ca67d90216478fb3aa4388a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb6e41688d40eff755840a14a9cfabbb770607e58', 'value': 83802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x079f2ad81a00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T17:14:47.000Z'}}, {'blockNum': '0x592198', 'uniqueId': '0xfefae3cd1bfa62d8632f5aee71047290a30d87f51adf1262c2b35b45450e1a65:log:9', 'hash': '0xfefae3cd1bfa62d8632f5aee71047290a30d87f51adf1262c2b35b45450e1a65', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x901ece05248108deb3c7f824fbc9fdaed3a9fca7', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T17:30:03.000Z'}}, {'blockNum': '0x592212', 'uniqueId': '0x0bda13f03a883f13fecb3e632b6a13a4a20e46aa5bebc174bb02079c369e0a07:log:20', 'hash': '0x0bda13f03a883f13fecb3e632b6a13a4a20e46aa5bebc174bb02079c369e0a07', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xc8f1e614511f304d12819737f83520763aa096ba', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T18:00:18.000Z'}}, {'blockNum': '0x59222d', 'uniqueId': '0x9211edc0c7ffb8fe961999bc504d1c5dc07439518cab9eab75fe2aef91f049c6:log:1', 'hash': '0x9211edc0c7ffb8fe961999bc504d1c5dc07439518cab9eab75fe2aef91f049c6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xae36d65ab98c25970528c3542897b7061df8c912', 'value': 201014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x124838ce7600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T18:06:07.000Z'}}, {'blockNum': '0x59224a', 'uniqueId': '0xcc9f7a45f316abf9c44354f1764fcdff2b691d06a0d7af2c88b749694ccd998e:log:1', 'hash': '0xcc9f7a45f316abf9c44354f1764fcdff2b691d06a0d7af2c88b749694ccd998e', 'from': '0x793f27474bf1b08c4266fdd399596f4b99153d1d', 'to': '0xbb85dc11956d91d1e376b8f4683e60f35269fbb8', 'value': 0.49682322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02f61792', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T18:13:16.000Z'}}, {'blockNum': '0x592267', 'uniqueId': '0xb9b24835972bfa2972ba38fa666bbd4ea699bed9d9f5b35b42bd27ebf7e074f1:log:21', 'hash': '0xb9b24835972bfa2972ba38fa666bbd4ea699bed9d9f5b35b42bd27ebf7e074f1', 'from': '0xd68d6a5ac8c04b3732fc763efb458e8aa063b899', 'to': '0xdde616b3e7461cfa4ae80686b4c35fef01211e69', 'value': 3541.58975484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x52758519fc', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T18:19:57.000Z'}}, {'blockNum': '0x59226c', 'uniqueId': '0x0b2e5db21ee6127ba4fad821ae5fcb6a4b68aaac559af7f420b154ee02d0b173:log:6', 'hash': '0x0b2e5db21ee6127ba4fad821ae5fcb6a4b68aaac559af7f420b154ee02d0b173', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1de507af534a90a854957840b259ef2ae0d6f8f8', 'value': 54071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04eaf0465700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T18:21:39.000Z'}}, {'blockNum': '0x592278', 'uniqueId': '0x1f570c9ad5cde611ac3b4d1184ef7052f0044feb4168fc2692239dec514aeecf:log:8', 'hash': '0x1f570c9ad5cde611ac3b4d1184ef7052f0044feb4168fc2692239dec514aeecf', 'from': '0xdde616b3e7461cfa4ae80686b4c35fef01211e69', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7041.53975484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xa3f2d8fabc', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T18:25:18.000Z'}}, {'blockNum': '0x59228b', 'uniqueId': '0x277f3cd89942dc19c87335b4006208f6667f3d51d3825c68fbb822bf683a43f5:log:5', 'hash': '0x277f3cd89942dc19c87335b4006208f6667f3d51d3825c68fbb822bf683a43f5', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xa3beb32bcfdb3f7515b7fc4a8cb83e734de42a05', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T18:30:03.000Z'}}, {'blockNum': '0x592293', 'uniqueId': '0xc34e18cdaa392118fa684d6e12683bb35b875a1a985c296052f7fd1b6f964db4:log:6', 'hash': '0xc34e18cdaa392118fa684d6e12683bb35b875a1a985c296052f7fd1b6f964db4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x322333b2d001e438fd6dbd29c2707f53262ab6b2', 'value': 24940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0244adfbec00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T18:32:22.000Z'}}, {'blockNum': '0x59229f', 'uniqueId': '0xf1598fb62a74bc531fb5afa134289717caaeb68c34a95d8d1086a27c179802eb:log:83', 'hash': '0xf1598fb62a74bc531fb5afa134289717caaeb68c34a95d8d1086a27c179802eb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1de507af534a90a854957840b259ef2ae0d6f8f8', 'value': 52615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x04c909d6a700', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T18:35:24.000Z'}}, {'blockNum': '0x592310', 'uniqueId': '0xee2bf953c5a725f5de4b182012e707bea379ce9aaf8691e44ec1bfdfcebaa4f6:log:48', 'hash': '0xee2bf953c5a725f5de4b182012e707bea379ce9aaf8691e44ec1bfdfcebaa4f6', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xd0dcb18147240a8e6d40a84540401f318454304b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T19:00:45.000Z'}}, {'blockNum': '0x592368', 'uniqueId': '0x5e383cb1c5be18d6841675a1c14c1374e9411b9cad3122920a4f5fb372747843:log:0', 'hash': '0x5e383cb1c5be18d6841675a1c14c1374e9411b9cad3122920a4f5fb372747843', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 55227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x0505da925b00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T19:20:59.000Z'}}, {'blockNum': '0x59238f', 'uniqueId': '0x7e061a14fe132a5490d583fe226b8027d247b5d17463ecae328d05bbadcfb22b:log:23', 'hash': '0x7e061a14fe132a5490d583fe226b8027d247b5d17463ecae328d05bbadcfb22b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x7bfde04e36ae83b551c39819b2d46dd079b66b5c', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T19:29:59.000Z'}}, {'blockNum': '0x59240a', 'uniqueId': '0x85c5ac061097100aca09acc557c0f060dd84d82fa1f7e10af7d0c13bc845c203:log:134', 'hash': '0x85c5ac061097100aca09acc557c0f060dd84d82fa1f7e10af7d0c13bc845c203', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x3d9c50fe8c74aafbf316c48c8ddb03f5d68c94af', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T20:00:28.000Z'}}, {'blockNum': '0x59247b', 'uniqueId': '0xccdab8366788e6549542cf77e862003d2d2dc55f9bf69174b03fd505e294ad65:log:5', 'hash': '0xccdab8366788e6549542cf77e862003d2d2dc55f9bf69174b03fd505e294ad65', 'from': '0x58880d683caf5cd7d92af73fa564dbf1a2653ceb', 'to': '0xeb17020a2f24bf048354dc42879321cec9fff407', 'value': 3044.854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x46e4be7dc0', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T20:28:01.000Z'}}, {'blockNum': '0x592485', 'uniqueId': '0x6b5ef42419c2985cd81b86599e86894b1d633aedcda3cd6aeb8ee196c0a5556b:log:5', 'hash': '0x6b5ef42419c2985cd81b86599e86894b1d633aedcda3cd6aeb8ee196c0a5556b', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x46b5529475e9c768729c6ee34f4d570a6d435b32', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T20:30:03.000Z'}}, {'blockNum': '0x592506', 'uniqueId': '0xaac9c8e2a7b3c31843484f4f1ac8502c2d9867bc27ec569add9ea906fdd8f3bb:log:4', 'hash': '0xaac9c8e2a7b3c31843484f4f1ac8502c2d9867bc27ec569add9ea906fdd8f3bb', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x4492cbc969d291f49907bd75f74e457a4f8f039b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T21:00:04.000Z'}}, {'blockNum': '0x59250e', 'uniqueId': '0x66dbd6f9b9908606a42f5f8c0bff583537b16ec70e3ef89be1a2c031fcfa293e:log:1', 'hash': '0x66dbd6f9b9908606a42f5f8c0bff583537b16ec70e3ef89be1a2c031fcfa293e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x21d4264731c54819e6e8e6777bc2329a2473ab09', 'value': 4653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x6c560a8d00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T21:01:59.000Z'}}, {'blockNum': '0x592591', 'uniqueId': '0x6dc21f31104563c9a3875080f52bd9d591c1683ce3c38880282fc01fdb813a02:log:114', 'hash': '0x6dc21f31104563c9a3875080f52bd9d591c1683ce3c38880282fc01fdb813a02', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x2bd8f2f7c76e5873d8ece2011b54c3b4b4c87091', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T21:30:16.000Z'}}, {'blockNum': '0x5925d5', 'uniqueId': '0xe31f3c30ef5d97b3b59ae264bc8de3f4b03676dff9c7d730078338b9c447287c:log:0', 'hash': '0xe31f3c30ef5d97b3b59ae264bc8de3f4b03676dff9c7d730078338b9c447287c', 'from': '0x7808484c0be1d80e51bccc74c0049e209cd2220b', 'to': '0xc25aad90a3802e56de0fee14f7e159f31a2b2bdb', 'value': 50742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x049d6de37600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T21:44:44.000Z'}}, {'blockNum': '0x5925d8', 'uniqueId': '0xf152c42561bd6b32a805d50d90a3f9ebbec7205b1ce54c0fe58a1f92bb29a4b6:log:7', 'hash': '0xf152c42561bd6b32a805d50d90a3f9ebbec7205b1ce54c0fe58a1f92bb29a4b6', 'from': '0xc25aad90a3802e56de0fee14f7e159f31a2b2bdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x049d6de37600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T21:45:36.000Z'}}, {'blockNum': '0x59260a', 'uniqueId': '0x3febb6f04bbba6ef3d390e83c0e00b1da5893ed7b70071ebfa9019d3de46f5bb:log:0', 'hash': '0x3febb6f04bbba6ef3d390e83c0e00b1da5893ed7b70071ebfa9019d3de46f5bb', 'from': '0x02abe9fe6ef2eb7752059d2a368e195df6685876', 'to': '0xd8ead2bf44a8fc6e356892356b0d74c4292b6157', 'value': 5066.12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x75f46da500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T21:55:18.000Z'}}, {'blockNum': '0x592614', 'uniqueId': '0x00c60fd96d19aa2d056e0e7be97a27ed17a08611290f52a49a062b964a712781:log:0', 'hash': '0x00c60fd96d19aa2d056e0e7be97a27ed17a08611290f52a49a062b964a712781', 'from': '0xbd4e1e40be935506f2399f677e12f73f3d60a17f', 'to': '0xd8ead2bf44a8fc6e356892356b0d74c4292b6157', 'value': 5011.08, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x74ac5d4500', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T21:57:09.000Z'}}, {'blockNum': '0x592624', 'uniqueId': '0x8ab7cc51665d254f2886243c894c0ef3ffac87f1606e30d91b2d520993b20985:log:7', 'hash': '0x8ab7cc51665d254f2886243c894c0ef3ffac87f1606e30d91b2d520993b20985', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xea956b7ca29b106d667501d6e6d109211e28cadd', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T22:00:20.000Z'}}, {'blockNum': '0x592632', 'uniqueId': '0x077d98e0b2a1e9ac2539233d31d1c5c37ffa52bee74e763c25307e819a1ed0e8:log:7', 'hash': '0x077d98e0b2a1e9ac2539233d31d1c5c37ffa52bee74e763c25307e819a1ed0e8', 'from': '0xd8ead2bf44a8fc6e356892356b0d74c4292b6157', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10077.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xeaa0caea00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T22:05:07.000Z'}}, {'blockNum': '0x5926a2', 'uniqueId': '0x6505e13d269aee0c32fbba8ce0dbcdcf7021facb48ea8f262d21b6eccc67c834:log:16', 'hash': '0x6505e13d269aee0c32fbba8ce0dbcdcf7021facb48ea8f262d21b6eccc67c834', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xa6702067d0a5b0af9951ecb3f00c12d08d4ebe15', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T22:30:20.000Z'}}, {'blockNum': '0x5926e4', 'uniqueId': '0x23133201bc03e7844d157f9edb6786eb69f3125716ee2aafdb9bf916fc51c143:log:10', 'hash': '0x23133201bc03e7844d157f9edb6786eb69f3125716ee2aafdb9bf916fc51c143', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9a8afa12e5f35fe67638548e98e22dfea56f5af3', 'value': 28934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x02a1ac144600', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T22:48:42.000Z'}}, {'blockNum': '0x592708', 'uniqueId': '0x54c26af3db262948117f9e413b05b22d29baf04f23d0990a45b79f2d07ff2b2a:log:9', 'hash': '0x54c26af3db262948117f9e413b05b22d29baf04f23d0990a45b79f2d07ff2b2a', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xf80ea3795d0224144099696d8e3d73c430e41c8b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T23:00:08.000Z'}}, {'blockNum': '0x592710', 'uniqueId': '0xd78539d35b33467a54d8d4835c76fb0411d3b56058a6cbbf3b9bc8bbdab14a8b:log:1', 'hash': '0xd78539d35b33467a54d8d4835c76fb0411d3b56058a6cbbf3b9bc8bbdab14a8b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3ac74da425c30ae201597f24bd92bb67be4cd57b', 'value': 2937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x4461e25900', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T23:02:25.000Z'}}, {'blockNum': '0x59278b', 'uniqueId': '0x82b530ad9f0b332809987e137612895d4fa19afde1858997a59cd73481971e21:log:13', 'hash': '0x82b530ad9f0b332809987e137612895d4fa19afde1858997a59cd73481971e21', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x0b01b71468de904171fc68ee7e7be8dcc0a798df', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-23T23:30:08.000Z'}}, {'blockNum': '0x592809', 'uniqueId': '0x28295364852011a4c5ce00bbdf11c25514e7e5ba8c61213d9d33ad1992f4a6f4:log:107', 'hash': '0x28295364852011a4c5ce00bbdf11c25514e7e5ba8c61213d9d33ad1992f4a6f4', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x22d6897c3a29b4b2a2e961172edee49fb87caf52', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-24T00:00:19.000Z'}}, {'blockNum': '0x59287a', 'uniqueId': '0xef24427868dc37311eb6fd4dc13dab3164a1638322f749b3533e5e92422d266a:log:18', 'hash': '0xef24427868dc37311eb6fd4dc13dab3164a1638322f749b3533e5e92422d266a', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xd4ca96047d806662f0fcb78d5550ba239ee07fa1', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-24T00:30:06.000Z'}}, {'blockNum': '0x5928ce', 'uniqueId': '0x2c1985eddf7b6be222e28d9993df985f8c20f4339412337c59388964c89963cf:log:65', 'hash': '0x2c1985eddf7b6be222e28d9993df985f8c20f4339412337c59388964c89963cf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb6e41688d40eff755840a14a9cfabbb770607e58', 'value': 83075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x078e3d962300', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-24T00:47:29.000Z'}}, {'blockNum': '0x592908', 'uniqueId': '0x3319061297c055c429bd6dabf3eb184efaa6666c80d6acd9ffa79be79b6db509:log:43', 'hash': '0x3319061297c055c429bd6dabf3eb184efaa6666c80d6acd9ffa79be79b6db509', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0xcf21183cb6a4fb7db7d7b6974c74f8acd14357a1', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-24T01:00:35.000Z'}}, {'blockNum': '0x592985', 'uniqueId': '0xec42ca411769c7cd1f80f54fb64da967978b3478447ada072584177be37b1b90:log:30', 'hash': '0xec42ca411769c7cd1f80f54fb64da967978b3478447ada072584177be37b1b90', 'from': '0x6e64a22172b2979f30b63cebae058c93e47a6631', 'to': '0x9b12fd2d499aec3932e7ea89824072d779d895ca', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-24T01:28:46.000Z'}}, {'blockNum': '0x59298d', 'uniqueId': '0x6a69221dc8fc23d0df98cbc653a8e8fe7312b392f2309ab9188d9a3a36c58c2c:log:47', 'hash': '0x6a69221dc8fc23d0df98cbc653a8e8fe7312b392f2309ab9188d9a3a36c58c2c', 'from': '0xddfff2b78463ab1ca781e853bb888fdfd06083d3', 'to': '0x9ad0d6398263f41de4094b1706c90b4dee23022d', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TNT', 'category': 'erc20', 'rawContract': {'value': '0x22ecb25c00', 'address': '0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2018-06-24T01:30:05.000Z'}}]}}
Number of returned transfers:  137
Answer is complete
 
symbol             ICN
group              TCG
date        2018-06-27
hour             17:00
exchange       binance
Name: 565, dtype: object
HERE
 Symbol: ICN, Contract: 
Datetime timestamps:  2018-06-27 17:00:00 2018-06-27 05:00:00 2018-06-28 05:00:00
Unix timestamps:  1530068400.0 1530154800.0
Hex Block Numbers:  0x596e44 0x598509
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            WABI
group              TCG
date        2018-07-06
hour             16:00
exchange       binance
Name: 566, dtype: object
HERE
 Symbol: WABI, Contract: 
Datetime timestamps:  2018-07-06 16:00:00 2018-07-06 04:00:00 2018-07-07 04:00:00
Unix timestamps:  1530842400.0 1530928800.0
Hex Block Numbers:  0x5a3a67 0x5a513f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            VIBE
group              TCG
date        2018-07-14
hour             17:00
exchange       binance
Name: 567, dtype: object
HERE
 Symbol: VIBE, Contract: 0xe8ff5c9c75deb346acac493c463c8950be03dfba
Datetime timestamps:  2018-07-14 17:00:00 2018-07-14 05:00:00 2018-07-15 05:00:00
Unix timestamps:  1531537200.0 1531623600.0
Hex Block Numbers:  0x5af2a8 0x5b0a0a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5af448', 'uniqueId': '0x8c22fd895d6af311fa2444558c84e85bcc185dbd82186a66822d48c062e9aeee:log:37', 'hash': '0x8c22fd895d6af311fa2444558c84e85bcc185dbd82186a66822d48c062e9aeee', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd3355b2ba2e455bbaf8df87969b23ffb2a26314b', 'value': 6367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x015927dffe30301c0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T04:42:47.000Z'}}, {'blockNum': '0x5aff1c', 'uniqueId': '0xda050dbecc0893ae6331cf2d3107bc6f810629a4e8e4e4b9e4bcfda864e66ee7:log:61', 'hash': '0xda050dbecc0893ae6331cf2d3107bc6f810629a4e8e4e4b9e4bcfda864e66ee7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xaf129fddc5686b2cbe1fb90977d925b2d662f2b5', 'value': 1282111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x010f7f606770ca719c0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T15:37:23.000Z'}}, {'blockNum': '0x5aff4e', 'uniqueId': '0xbb9d22587ba87c4fba5da0231e803c51b97f8efd46cea9abaddc9efe5e86621e:log:122', 'hash': '0xbb9d22587ba87c4fba5da0231e803c51b97f8efd46cea9abaddc9efe5e86621e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 1530128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x01440467b3ea683a400000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T15:46:22.000Z'}}, {'blockNum': '0x5aff5c', 'uniqueId': '0xfd0cafd6ff34b4a9a3536cc3277bbb5a9005d075e5407466917fe765357ab04e:log:0', 'hash': '0xfd0cafd6ff34b4a9a3536cc3277bbb5a9005d075e5407466917fe765357ab04e', 'from': '0xaf129fddc5686b2cbe1fb90977d925b2d662f2b5', 'to': '0x66a3a6c0d32384011724c0be9d9928c512a243e8', 'value': 1282000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x010f795bf838e4dd400000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T15:48:37.000Z'}}, {'blockNum': '0x5b0004', 'uniqueId': '0x9e6031caedca55ec5b09828f490fd1eb4b4f4c87d64028358c535c937a1ec43c:log:44', 'hash': '0x9e6031caedca55ec5b09828f490fd1eb4b4f4c87d64028358c535c937a1ec43c', 'from': '0xa329b580c46ccf7a46dc06960c5a0bb2f7d90430', 'to': '0x67237851323929d9375acb233c18b08ac4e97074', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T16:29:30.000Z'}}, {'blockNum': '0x5b0028', 'uniqueId': '0x215cd0702ad382c70912771f8ca6f84e2d9ceac014084dc2e71eac97d437a275:log:71', 'hash': '0x215cd0702ad382c70912771f8ca6f84e2d9ceac014084dc2e71eac97d437a275', 'from': '0x66a3a6c0d32384011724c0be9d9928c512a243e8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1282000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x010f795bf838e4dd400000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T16:39:19.000Z'}}, {'blockNum': '0x5b007d', 'uniqueId': '0xa344e4142adcf8af6691fa6dd2167c56388b4d5e9c7eec4cefb422d95f1071a4:log:21', 'hash': '0xa344e4142adcf8af6691fa6dd2167c56388b4d5e9c7eec4cefb422d95f1071a4', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'value': 3830.488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0xcfa6b31d346c7c0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T17:01:04.000Z'}}, {'blockNum': '0x5b009d', 'uniqueId': '0x303c6665930207ebb360877c3913f1a1d67e0d49e1d4eaffea7a6b1860054bad:log:31', 'hash': '0x303c6665930207ebb360877c3913f1a1d67e0d49e1d4eaffea7a6b1860054bad', 'from': '0x73b6e91d4d2d743ef43f2089a4ee5bfdc402bd7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3830.488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0xcfa6b31d346c7c0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T17:09:48.000Z'}}, {'blockNum': '0x5b00af', 'uniqueId': '0x59c438192f25b4c68884b748bbfb01221f26dfe8f766139ab619792654250c8e:log:178', 'hash': '0x59c438192f25b4c68884b748bbfb01221f26dfe8f766139ab619792654250c8e', 'from': '0x40d0b2abd063e13a76fedd037f1d269f9d2531f4', 'to': '0x853f9f72161cc9d1b8332a57e47c338577dcd4ff', 'value': 1015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x3705f4624cad7c0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T17:14:00.000Z'}}, {'blockNum': '0x5b00c9', 'uniqueId': '0x8aa3bf18431267e05986e9baccba401ac51860451055cb169689326f2a825a91:log:158', 'hash': '0x8aa3bf18431267e05986e9baccba401ac51860451055cb169689326f2a825a91', 'from': '0x853f9f72161cc9d1b8332a57e47c338577dcd4ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x3705f4624cad7c0000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T17:20:03.000Z'}}, {'blockNum': '0x5b03fc', 'uniqueId': '0xaf6966ebe1c44dc178a49af8b24b44d87cea3cfbd98dff7f638ff92ec8887019:log:96', 'hash': '0xaf6966ebe1c44dc178a49af8b24b44d87cea3cfbd98dff7f638ff92ec8887019', 'from': '0xc99097fce130ce6369d1eb7453817b007831c2d2', 'to': '0xad581db3083187440aa35fa7238f1ef86223f2bb', 'value': 24297.747252747253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x05252efb07642f772740', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T20:46:23.000Z'}}, {'blockNum': '0x5b040e', 'uniqueId': '0x4530440ad50f4e178fce0475b8ab996ecc3252f0180d63f19514ef4e04a83e8f:log:144', 'hash': '0x4530440ad50f4e178fce0475b8ab996ecc3252f0180d63f19514ef4e04a83e8f', 'from': '0xad581db3083187440aa35fa7238f1ef86223f2bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24297.747252747253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x05252efb07642f772740', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T20:50:27.000Z'}}, {'blockNum': '0x5b04ac', 'uniqueId': '0xb51e35d2736c32f85beb961ab163adddb5943cfd120a47031a59b7755e9842e7:log:128', 'hash': '0xb51e35d2736c32f85beb961ab163adddb5943cfd120a47031a59b7755e9842e7', 'from': '0x87196c110798c73c1c677aa08665f775bff2fa8d', 'to': '0xdf20a269105e9c499ec844d4fd42d66458821503', 'value': 7216.061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x01872ef69f2b960c8000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T21:25:25.000Z'}}, {'blockNum': '0x5b04bd', 'uniqueId': '0xecee1012b98402feb225f8add7455be2b698741cd5d9a1a8b9873f940fd61601:log:229', 'hash': '0xecee1012b98402feb225f8add7455be2b698741cd5d9a1a8b9873f940fd61601', 'from': '0xdf20a269105e9c499ec844d4fd42d66458821503', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7216.061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x01872ef69f2b960c8000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T21:29:24.000Z'}}, {'blockNum': '0x5b06f4', 'uniqueId': '0xd4c63dd09585523e251ebd560d7c62a7c122537177c44965189786ee326f3f06:log:0', 'hash': '0xd4c63dd09585523e251ebd560d7c62a7c122537177c44965189786ee326f3f06', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9b26c815387c26c4dccca308464bb57c47744764', 'value': 2132.827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x739eeba84c5a0f8000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-14T23:49:35.000Z'}}, {'blockNum': '0x5b07e4', 'uniqueId': '0x6a3f0b101d8fc8d98a0f933d70419120d994594d06a79a447b6626877dedeeb5:log:109', 'hash': '0x6a3f0b101d8fc8d98a0f933d70419120d994594d06a79a447b6626877dedeeb5', 'from': '0xbb3d74a438dd479717bf75d691d0f3270a02d6bb', 'to': '0x369b23af23a799248b4c73b8a6b13bf782da731d', 'value': 9157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x01f066e728227bf40000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-15T00:50:00.000Z'}}, {'blockNum': '0x5b080d', 'uniqueId': '0x1cea40581c0fab84cc22d822962dc3b667af64ddaa36d5807227e3a373441f46:log:306', 'hash': '0x1cea40581c0fab84cc22d822962dc3b667af64ddaa36d5807227e3a373441f46', 'from': '0x369b23af23a799248b4c73b8a6b13bf782da731d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0x01f066e728227bf40000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-15T00:59:14.000Z'}}, {'blockNum': '0x5b083f', 'uniqueId': '0xfa5e39bf3bf20206ccc8446248b94de5f611f6af00ce19c901cafdfa6439ec5c:log:1', 'hash': '0xfa5e39bf3bf20206ccc8446248b94de5f611f6af00ce19c901cafdfa6439ec5c', 'from': '0x1bb6bc2a2a7817d2817acf485fe828bfb0731b88', 'to': '0xf4e585c24ebb5187db3f875b0f8509ace4186f5d', 'value': 3996.711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIBE', 'category': 'erc20', 'rawContract': {'value': '0xd8a981d704803d8000', 'address': '0xe8ff5c9c75deb346acac493c463c8950be03dfba', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-07-15T01:11:24.000Z'}}]}}
Number of returned transfers:  18
Answer is complete
 
symbol            PIVX
group              TCG
date        2019-06-02
hour             16:00
exchange       binance
Name: 568, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: PIVX, Contract: 
Datetime timestamps:  2019-06-02 16:00:00 2019-06-02 04:00:00 2019-06-03 04:00:00
Unix timestamps:  1559440800.0 1559527200.0
Hex Block Numbers:  0x7832d8 0x784bb0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             CVC
group              TCG
date        2019-08-13
hour             20:00
exchange       binance
Name: 571, dtype: object
HERE
 Symbol: CVC, Contract: 0x41e5560054824ea6b0732e656e3ad64e20e94e45
Datetime timestamps:  2019-08-13 20:00:00 2019-08-13 08:00:00 2019-08-14 08:00:00
Unix timestamps:  1565676000.0 1565762400.0
Hex Block Numbers:  0x7f43ed 0x7f5d01
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7f43f1', 'uniqueId': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807:log:16', 'hash': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807', 'from': '0x3840feee6e82d07dea385b011b597a0ddce74aa7', 'to': '0x0e17fdee2528ee4b6c076fd5fe725b05a6d0566a', 'value': 512.34814767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bedd53b2f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:01:43.000Z'}}, {'blockNum': '0x7f43f5', 'uniqueId': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2:log:0', 'hash': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:02:02.000Z'}}, {'blockNum': '0x7f441b', 'uniqueId': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358:log:132', 'hash': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:10:04.000Z'}}, {'blockNum': '0x7f4420', 'uniqueId': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4:log:96', 'hash': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:12:05.000Z'}}, {'blockNum': '0x7f4472', 'uniqueId': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f:log:100', 'hash': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:32:46.000Z'}}, {'blockNum': '0x7f4477', 'uniqueId': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602:log:68', 'hash': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:33:47.000Z'}}, {'blockNum': '0x7f4487', 'uniqueId': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf:log:50', 'hash': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:36:43.000Z'}}, {'blockNum': '0x7f448b', 'uniqueId': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae:log:95', 'hash': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:37:03.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2:log:94', 'hash': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2:log:96', 'hash': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6:log:98', 'hash': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f452e', 'uniqueId': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0:log:30', 'hash': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:11:40.000Z'}}, {'blockNum': '0x7f454c', 'uniqueId': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f:log:101', 'hash': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:19:39.000Z'}}, {'blockNum': '0x7f4568', 'uniqueId': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181:log:27', 'hash': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:25:06.000Z'}}, {'blockNum': '0x7f4570', 'uniqueId': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b:log:57', 'hash': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:26:11.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d:log:77', 'hash': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc:log:79', 'hash': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f4581', 'uniqueId': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845:log:105', 'hash': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:30:17.000Z'}}, {'blockNum': '0x7f45b2', 'uniqueId': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848:log:211', 'hash': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:41:43.000Z'}}, {'blockNum': '0x7f462e', 'uniqueId': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093:log:103', 'hash': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:12:01.000Z'}}, {'blockNum': '0x7f4680', 'uniqueId': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84:log:119', 'hash': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:31:07.000Z'}}, {'blockNum': '0x7f46af', 'uniqueId': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06:log:84', 'hash': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:41:35.000Z'}}, {'blockNum': '0x7f4709', 'uniqueId': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341:log:23', 'hash': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:01:50.000Z'}}, {'blockNum': '0x7f470a', 'uniqueId': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec:log:44', 'hash': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec', 'from': '0xaf37117018271a4ab607001179ef389f11c3e580', 'to': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:02:14.000Z'}}, {'blockNum': '0x7f4710', 'uniqueId': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df:log:92', 'hash': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:03:01.000Z'}}, {'blockNum': '0x7f4715', 'uniqueId': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e:log:61', 'hash': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:04:37.000Z'}}, {'blockNum': '0x7f471e', 'uniqueId': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374:log:9', 'hash': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374', 'from': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'to': '0x842a499c04afab73af5b1940ee492cd3f7f3eb2e', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:06:51.000Z'}}, {'blockNum': '0x7f4739', 'uniqueId': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966:log:0', 'hash': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:14:48.000Z'}}, {'blockNum': '0x7f474a', 'uniqueId': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda:log:61', 'hash': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:17:53.000Z'}}, {'blockNum': '0x7f475c', 'uniqueId': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192:log:105', 'hash': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:20:00.000Z'}}, {'blockNum': '0x7f4764', 'uniqueId': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8:log:133', 'hash': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:21:21.000Z'}}, {'blockNum': '0x7f4777', 'uniqueId': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b:log:0', 'hash': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:25:07.000Z'}}, {'blockNum': '0x7f47cf', 'uniqueId': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30:log:3', 'hash': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:43:44.000Z'}}, {'blockNum': '0x7f482f', 'uniqueId': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302:log:0', 'hash': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302', 'from': '0x9ba2cb2df0d7d5b3fb1938ce5619339f723e4eb6', 'to': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:03:25.000Z'}}, {'blockNum': '0x7f4849', 'uniqueId': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f:log:14', 'hash': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f', 'from': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:07:13.000Z'}}, {'blockNum': '0x7f485c', 'uniqueId': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56:log:63', 'hash': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:11:46.000Z'}}, {'blockNum': '0x7f48b4', 'uniqueId': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b:log:41', 'hash': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:28:54.000Z'}}, {'blockNum': '0x7f48de', 'uniqueId': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0:log:33', 'hash': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:39:41.000Z'}}, {'blockNum': '0x7f48e7', 'uniqueId': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579:log:69', 'hash': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:41:09.000Z'}}, {'blockNum': '0x7f4910', 'uniqueId': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812:log:0', 'hash': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 195846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11cfe5204600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:50:46.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e:log:47', 'hash': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed:log:49', 'hash': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f492f', 'uniqueId': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6:log:12', 'hash': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:58:10.000Z'}}, {'blockNum': '0x7f4938', 'uniqueId': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80:log:100', 'hash': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 424709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x26a086e86500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:00:11.000Z'}}, {'blockNum': '0x7f4968', 'uniqueId': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6:log:2', 'hash': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:11:13.000Z'}}, {'blockNum': '0x7f4976', 'uniqueId': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231:log:33', 'hash': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:14:45.000Z'}}, {'blockNum': '0x7f4994', 'uniqueId': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e:log:26', 'hash': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:22:07.000Z'}}, {'blockNum': '0x7f49b0', 'uniqueId': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc:log:72', 'hash': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:30:06.000Z'}}, {'blockNum': '0x7f4a4a', 'uniqueId': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d:log:0', 'hash': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:28.000Z'}}, {'blockNum': '0x7f4a4b', 'uniqueId': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab:log:115', 'hash': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab', 'from': '0x6d367f8f9e9c647acf649de37306ff896d09f1f5', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 22303.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02074d9a8980', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:50.000Z'}}, {'blockNum': '0x7f4a5d', 'uniqueId': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc:log:82', 'hash': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:11.000Z'}}, {'blockNum': '0x7f4a61', 'uniqueId': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323:log:0', 'hash': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x69412cde74814fee9553e22a424a0b2889725c5e', 'value': 1034.934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1818aff5c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:36.000Z'}}, {'blockNum': '0x7f4a67', 'uniqueId': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf:log:31', 'hash': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:12:01.000Z'}}, {'blockNum': '0x7f4a87', 'uniqueId': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2:log:104', 'hash': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:28.000Z'}}, {'blockNum': '0x7f4a89', 'uniqueId': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197:log:105', 'hash': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:56.000Z'}}, {'blockNum': '0x7f4aa3', 'uniqueId': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90:log:1', 'hash': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:25:13.000Z'}}, {'blockNum': '0x7f4ab2', 'uniqueId': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588:log:80', 'hash': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:29:59.000Z'}}, {'blockNum': '0x7f4ac2', 'uniqueId': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e:log:94', 'hash': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:33:08.000Z'}}, {'blockNum': '0x7f4ac7', 'uniqueId': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8:log:103', 'hash': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:34:34.000Z'}}, {'blockNum': '0x7f4ad6', 'uniqueId': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4:log:52', 'hash': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:38:58.000Z'}}, {'blockNum': '0x7f4ad9', 'uniqueId': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea:log:18', 'hash': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:39:13.000Z'}}, {'blockNum': '0x7f4ae4', 'uniqueId': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e:log:3', 'hash': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:41:49.000Z'}}, {'blockNum': '0x7f4aec', 'uniqueId': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f:log:105', 'hash': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:44:26.000Z'}}, {'blockNum': '0x7f4aef', 'uniqueId': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f:log:2', 'hash': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:45:02.000Z'}}, {'blockNum': '0x7f4b02', 'uniqueId': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0:log:64', 'hash': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:49:50.000Z'}}, {'blockNum': '0x7f4b15', 'uniqueId': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2:log:124', 'hash': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:54:33.000Z'}}, {'blockNum': '0x7f4b26', 'uniqueId': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5:log:116', 'hash': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:59:31.000Z'}}, {'blockNum': '0x7f4b34', 'uniqueId': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4:log:106', 'hash': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:03:45.000Z'}}, {'blockNum': '0x7f4b3a', 'uniqueId': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8:log:83', 'hash': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8', 'from': '0x4003caeff9d6eb5af6927b0842c90f43f31d25d1', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:05:13.000Z'}}, {'blockNum': '0x7f4b51', 'uniqueId': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794:log:79', 'hash': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794', 'from': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:10:13.000Z'}}, {'blockNum': '0x7f4b55', 'uniqueId': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9:log:81', 'hash': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:11:44.000Z'}}, {'blockNum': '0x7f4b5b', 'uniqueId': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56:log:27', 'hash': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:12:40.000Z'}}, {'blockNum': '0x7f4b76', 'uniqueId': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072:log:25', 'hash': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:17:42.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f:log:158', 'hash': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52:log:160', 'hash': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4bce', 'uniqueId': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170:log:2', 'hash': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93234.62781364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x087ac9afe9b4', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:39:22.000Z'}}, {'blockNum': '0x7f4bd1', 'uniqueId': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517:log:3', 'hash': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 115000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0a758d6a3800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:40:20.000Z'}}, {'blockNum': '0x7f4bd3', 'uniqueId': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3:log:1', 'hash': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3', 'from': '0xc928a3ed8f5f723007b7b1e68d9f918d10dae923', 'to': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:41:44.000Z'}}, {'blockNum': '0x7f4bd7', 'uniqueId': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1:log:1', 'hash': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:43:02.000Z'}}, {'blockNum': '0x7f4bdd', 'uniqueId': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2:log:0', 'hash': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:44:30.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329:log:72', 'hash': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac:log:84', 'hash': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x164859cc0800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bf1', 'uniqueId': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52:log:37', 'hash': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52', 'from': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:10.000Z'}}, {'blockNum': '0x7f4bf2', 'uniqueId': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09:log:117', 'hash': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:14.000Z'}}, {'blockNum': '0x7f4bfc', 'uniqueId': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263:log:44', 'hash': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263', 'from': '0xd65e1f33a142d57b431b65d0774d514948a0e0bc', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 20081.3516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d38e2ed0c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:52:42.000Z'}}, {'blockNum': '0x7f4c01', 'uniqueId': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3:log:27', 'hash': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 20050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d2d3501200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:24.000Z'}}, {'blockNum': '0x7f4c06', 'uniqueId': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825:log:6', 'hash': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:59.000Z'}}, {'blockNum': '0x7f4c28', 'uniqueId': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257:log:13', 'hash': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257', 'from': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:00:09.000Z'}}, {'blockNum': '0x7f4c3e', 'uniqueId': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec:log:127', 'hash': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:05:57.000Z'}}, {'blockNum': '0x7f4c40', 'uniqueId': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e:log:117', 'hash': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:06:11.000Z'}}, {'blockNum': '0x7f4c50', 'uniqueId': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45:log:75', 'hash': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:09:34.000Z'}}, {'blockNum': '0x7f4c55', 'uniqueId': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c:log:134', 'hash': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:11:17.000Z'}}, {'blockNum': '0x7f4c59', 'uniqueId': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486:log:6', 'hash': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:13:44.000Z'}}, {'blockNum': '0x7f4c80', 'uniqueId': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a:log:6', 'hash': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe905e6691019605015334b20bdf2882f65de0153', 'value': 1241.769537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1ce985f164', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:20:55.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63:log:44', 'hash': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01747790', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876:log:89', 'hash': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c94', 'uniqueId': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7:log:95', 'hash': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:10.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f:log:18', 'hash': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01767360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef:log:70', 'hash': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8:log:72', 'hash': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c98', 'uniqueId': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416:log:120', 'hash': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:57.000Z'}}, {'blockNum': '0x7f4ca2', 'uniqueId': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b:log:107', 'hash': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:30:09.000Z'}}, {'blockNum': '0x7f4cc0', 'uniqueId': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06:log:22', 'hash': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:35:36.000Z'}}, {'blockNum': '0x7f4cf2', 'uniqueId': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70:log:86', 'hash': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70', 'from': '0xcc6648fe5eccd8772c9a19d704370d708af02466', 'to': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:46:36.000Z'}}, {'blockNum': '0x7f4d06', 'uniqueId': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991:log:65', 'hash': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:20.000Z'}}, {'blockNum': '0x7f4d08', 'uniqueId': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7:log:75', 'hash': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:31.000Z'}}, {'blockNum': '0x7f4d09', 'uniqueId': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32:log:67', 'hash': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:01.000Z'}}, {'blockNum': '0x7f4d0b', 'uniqueId': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d:log:34', 'hash': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:54.000Z'}}, {'blockNum': '0x7f4d0e', 'uniqueId': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f:log:19', 'hash': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:52:27.000Z'}}, {'blockNum': '0x7f4d13', 'uniqueId': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1:log:82', 'hash': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:22.000Z'}}, {'blockNum': '0x7f4d14', 'uniqueId': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922:log:7', 'hash': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:28.000Z'}}, {'blockNum': '0x7f4d15', 'uniqueId': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb:log:25', 'hash': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:38.000Z'}}, {'blockNum': '0x7f4d1c', 'uniqueId': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf:log:57', 'hash': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:55:36.000Z'}}, {'blockNum': '0x7f4d1f', 'uniqueId': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc:log:31', 'hash': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1740.287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2884eb3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:24.000Z'}}, {'blockNum': '0x7f4d21', 'uniqueId': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b:log:37', 'hash': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:29.000Z'}}, {'blockNum': '0x7f4d2a', 'uniqueId': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58:log:30', 'hash': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:59:01.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2:log:32', 'hash': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1:log:34', 'hash': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a:log:36', 'hash': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4db9', 'uniqueId': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f:log:71', 'hash': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:04.000Z'}}, {'blockNum': '0x7f4dba', 'uniqueId': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a:log:128', 'hash': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:15.000Z'}}, {'blockNum': '0x7f4dd8', 'uniqueId': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2:log:2', 'hash': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2', 'from': '0x1b9e3ca833bccc64ad46e016c6c8aebf7e27259d', 'to': '0x9aa22e4ee96e16e598e430eb0c5fff699522e510', 'value': 1980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e19b83c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:38:11.000Z'}}, {'blockNum': '0x7f4de9', 'uniqueId': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041:log:51', 'hash': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:41:33.000Z'}}, {'blockNum': '0x7f4dfd', 'uniqueId': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4:log:4', 'hash': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4', 'from': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:45:08.000Z'}}, {'blockNum': '0x7f4e91', 'uniqueId': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95:log:52', 'hash': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:21:59.000Z'}}, {'blockNum': '0x7f4e9e', 'uniqueId': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482:log:111', 'hash': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:23:12.000Z'}}, {'blockNum': '0x7f4eaf', 'uniqueId': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159:log:30', 'hash': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:17.000Z'}}, {'blockNum': '0x7f4eb1', 'uniqueId': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3:log:101', 'hash': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:56.000Z'}}, {'blockNum': '0x7f4eb3', 'uniqueId': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded:log:29', 'hash': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:48.000Z'}}, {'blockNum': '0x7f4eb5', 'uniqueId': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4:log:13', 'hash': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:55.000Z'}}, {'blockNum': '0x7f4eb6', 'uniqueId': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a:log:36', 'hash': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:03.000Z'}}, {'blockNum': '0x7f4eba', 'uniqueId': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b:log:70', 'hash': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:34.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf:log:79', 'hash': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0:log:81', 'hash': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebd', 'uniqueId': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84:log:56', 'hash': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:06.000Z'}}, {'blockNum': '0x7f4ebf', 'uniqueId': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f:log:47', 'hash': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:24.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62:log:153', 'hash': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58:log:156', 'hash': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce:log:158', 'hash': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec3', 'uniqueId': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7:log:108', 'hash': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:56.000Z'}}, {'blockNum': '0x7f4ec9', 'uniqueId': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5:log:109', 'hash': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176c180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:30:32.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2:log:55', 'hash': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e:log:57', 'hash': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4ecb', 'uniqueId': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a:log:93', 'hash': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:18.000Z'}}, {'blockNum': '0x7f4ecc', 'uniqueId': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71:log:18', 'hash': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:25.000Z'}}, {'blockNum': '0x7f4ece', 'uniqueId': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a:log:148', 'hash': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:56.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba:log:52', 'hash': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2:log:54', 'hash': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f:log:56', 'hash': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc:log:44', 'hash': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43:log:46', 'hash': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f26', 'uniqueId': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e:log:113', 'hash': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:51:05.000Z'}}, {'blockNum': '0x7f4f38', 'uniqueId': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71:log:49', 'hash': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:56:01.000Z'}}, {'blockNum': '0x7f4f49', 'uniqueId': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca:log:126', 'hash': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:09.000Z'}}, {'blockNum': '0x7f4f4a', 'uniqueId': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8:log:0', 'hash': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49866.00463223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0489088c9b77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:18.000Z'}}, {'blockNum': '0x7f4f5e', 'uniqueId': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230:log:21', 'hash': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc9f42134fb5f8703177352093111372dfafcb550', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:02:56.000Z'}}, {'blockNum': '0x7f4f6b', 'uniqueId': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41:log:154', 'hash': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:05:13.000Z'}}, {'blockNum': '0x7f4f7b', 'uniqueId': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1:log:151', 'hash': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:09:08.000Z'}}, {'blockNum': '0x7f4f7d', 'uniqueId': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03:log:118', 'hash': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03', 'from': '0xc9f42134fb5f8703177352093111372dfafcb550', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:12.000Z'}}, {'blockNum': '0x7f4f7e', 'uniqueId': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8:log:82', 'hash': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:22.000Z'}}, {'blockNum': '0x7f4f7f', 'uniqueId': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6:log:104', 'hash': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:28.000Z'}}, {'blockNum': '0x7f4f82', 'uniqueId': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5:log:77', 'hash': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:55.000Z'}}, {'blockNum': '0x7f4f84', 'uniqueId': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3:log:76', 'hash': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:11:00.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da:log:37', 'hash': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831:log:39', 'hash': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8c', 'uniqueId': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d:log:14', 'hash': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:21.000Z'}}, {'blockNum': '0x7f4f91', 'uniqueId': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796:log:50', 'hash': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:10.000Z'}}, {'blockNum': '0x7f4f93', 'uniqueId': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457:log:32', 'hash': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:19.000Z'}}, {'blockNum': '0x7f4f96', 'uniqueId': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571:log:29', 'hash': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:14:05.000Z'}}, {'blockNum': '0x7f4f9b', 'uniqueId': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9:log:14', 'hash': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:15:17.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c:log:90', 'hash': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4:log:92', 'hash': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa7', 'uniqueId': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4:log:51', 'hash': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:46.000Z'}}, {'blockNum': '0x7f4fac', 'uniqueId': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6:log:68', 'hash': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:19:40.000Z'}}, {'blockNum': '0x7f4fae', 'uniqueId': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71:log:99', 'hash': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:20:02.000Z'}}, {'blockNum': '0x7f4fb5', 'uniqueId': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e:log:115', 'hash': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:13.000Z'}}, {'blockNum': '0x7f4fb7', 'uniqueId': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707:log:6', 'hash': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:51.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0:log:44', 'hash': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74:log:69', 'hash': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fd0', 'uniqueId': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f:log:33', 'hash': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:28:40.000Z'}}, {'blockNum': '0x7f4fdf', 'uniqueId': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0:log:77', 'hash': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:31:37.000Z'}}, {'blockNum': '0x7f4fe2', 'uniqueId': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218:log:56', 'hash': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:06.000Z'}}, {'blockNum': '0x7f4fe6', 'uniqueId': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254:log:22', 'hash': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254', 'from': '0xc0fe06bb9847c2d38245e875edf8500da4a2d0c4', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 12904.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012c73652fc0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:52.000Z'}}, {'blockNum': '0x7f4fe9', 'uniqueId': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e:log:33', 'hash': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:35:20.000Z'}}, {'blockNum': '0x7f5007', 'uniqueId': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197:log:88', 'hash': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:15.000Z'}}, {'blockNum': '0x7f5009', 'uniqueId': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381:log:20', 'hash': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:40.000Z'}}, {'blockNum': '0x7f500d', 'uniqueId': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875:log:111', 'hash': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:51.000Z'}}, {'blockNum': '0x7f5018', 'uniqueId': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a:log:143', 'hash': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:45:07.000Z'}}, {'blockNum': '0x7f5027', 'uniqueId': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69:log:48', 'hash': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:20.000Z'}}, {'blockNum': '0x7f5028', 'uniqueId': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a:log:35', 'hash': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:31.000Z'}}, {'blockNum': '0x7f5038', 'uniqueId': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2:log:25', 'hash': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:50:46.000Z'}}, {'blockNum': '0x7f503a', 'uniqueId': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a:log:15', 'hash': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:51:08.000Z'}}, {'blockNum': '0x7f5059', 'uniqueId': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1:log:65', 'hash': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:33.000Z'}}, {'blockNum': '0x7f505c', 'uniqueId': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7:log:47', 'hash': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:51.000Z'}}, {'blockNum': '0x7f5084', 'uniqueId': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1:log:103', 'hash': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:10.000Z'}}, {'blockNum': '0x7f5086', 'uniqueId': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852:log:4', 'hash': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:41.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae:log:95', 'hash': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9:log:97', 'hash': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f50a1', 'uniqueId': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7:log:120', 'hash': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:27.000Z'}}, {'blockNum': '0x7f50a3', 'uniqueId': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9:log:53', 'hash': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:56.000Z'}}, {'blockNum': '0x7f50b3', 'uniqueId': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8:log:61', 'hash': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:16:44.000Z'}}, {'blockNum': '0x7f50b5', 'uniqueId': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d:log:22', 'hash': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:13.000Z'}}, {'blockNum': '0x7f50b7', 'uniqueId': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036:log:64', 'hash': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:29.000Z'}}, {'blockNum': '0x7f50bc', 'uniqueId': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283:log:79', 'hash': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:19:09.000Z'}}, {'blockNum': '0x7f50d2', 'uniqueId': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42:log:13', 'hash': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:24:21.000Z'}}, {'blockNum': '0x7f50d9', 'uniqueId': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba:log:58', 'hash': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:43.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44:log:53', 'hash': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642:log:55', 'hash': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50de', 'uniqueId': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f:log:30', 'hash': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 11006.8096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x010045b29800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:27:24.000Z'}}, {'blockNum': '0x7f50e2', 'uniqueId': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7:log:8', 'hash': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:28:07.000Z'}}, {'blockNum': '0x7f50fc', 'uniqueId': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d:log:9', 'hash': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:48.000Z'}}, {'blockNum': '0x7f50fd', 'uniqueId': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa:log:7', 'hash': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa', 'from': '0xcba419e954900a32b1a0f61d01a565c313924dae', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 10773.656486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xfad7ff2cd8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:50.000Z'}}, {'blockNum': '0x7f5100', 'uniqueId': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231:log:42', 'hash': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:34:02.000Z'}}, {'blockNum': '0x7f510b', 'uniqueId': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282:log:18', 'hash': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:26.000Z'}}, {'blockNum': '0x7f510d', 'uniqueId': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163:log:96', 'hash': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:48.000Z'}}, {'blockNum': '0x7f5110', 'uniqueId': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098:log:5', 'hash': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:06.000Z'}}, {'blockNum': '0x7f5111', 'uniqueId': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c:log:61', 'hash': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:17.000Z'}}, {'blockNum': '0x7f5146', 'uniqueId': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66:log:147', 'hash': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:50:58.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489:log:7', 'hash': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489', 'from': '0x3347e9a544546d8234306d92ac6ac707780147b3', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce:log:12', 'hash': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f515b', 'uniqueId': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668:log:63', 'hash': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:55:49.000Z'}}, {'blockNum': '0x7f516b', 'uniqueId': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460:log:63', 'hash': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460', 'from': '0xce39c69dbcc2d4425b8978d111b551b50da102eb', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 9938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe763189200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:58:48.000Z'}}, {'blockNum': '0x7f518c', 'uniqueId': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38:log:55', 'hash': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:07:45.000Z'}}, {'blockNum': '0x7f5190', 'uniqueId': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60:log:69', 'hash': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:18.000Z'}}, {'blockNum': '0x7f5193', 'uniqueId': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab:log:31', 'hash': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:29.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb:log:16', 'hash': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78:log:18', 'hash': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f51a4', 'uniqueId': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad:log:19', 'hash': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x194009c35583ed133832cedf0530d3e76761503e', 'value': 2881.1156034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4314c98694', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:12:46.000Z'}}, {'blockNum': '0x7f51aa', 'uniqueId': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93:log:81', 'hash': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:14:17.000Z'}}, {'blockNum': '0x7f51ac', 'uniqueId': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b:log:90', 'hash': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:15:32.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69:log:57', 'hash': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9:log:59', 'hash': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51c0', 'uniqueId': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05:log:54', 'hash': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:19:56.000Z'}}, {'blockNum': '0x7f51ed', 'uniqueId': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e:log:73', 'hash': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e', 'from': '0x7c963d491bda44c8cff7b35d290e45bdaec57381', 'to': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:31.000Z'}}, {'blockNum': '0x7f51ee', 'uniqueId': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db:log:45', 'hash': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:55.000Z'}}, {'blockNum': '0x7f51f0', 'uniqueId': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1:log:32', 'hash': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:32:50.000Z'}}, {'blockNum': '0x7f51f6', 'uniqueId': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184:log:28', 'hash': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184', 'from': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'to': '0x75599ecce86f8d1d90102a72762e0d898d823e73', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:34:43.000Z'}}, {'blockNum': '0x7f51fa', 'uniqueId': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2:log:90', 'hash': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:20.000Z'}}, {'blockNum': '0x7f5200', 'uniqueId': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f:log:25', 'hash': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:51.000Z'}}, {'blockNum': '0x7f521a', 'uniqueId': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7:log:27', 'hash': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:41:41.000Z'}}, {'blockNum': '0x7f521d', 'uniqueId': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88:log:0', 'hash': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:42:08.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f:log:130', 'hash': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62:log:154', 'hash': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62', 'from': '0x6d38eb10d3bd0702697776a10fc857dcbd2bb172', 'to': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f5236', 'uniqueId': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e:log:0', 'hash': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e', 'from': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'to': '0x2ad7cb7ce3b5cbaa02481e416d85f5954748d292', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:46:20.000Z'}}, {'blockNum': '0x7f5245', 'uniqueId': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be:log:64', 'hash': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:50:00.000Z'}}, {'blockNum': '0x7f524e', 'uniqueId': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8:log:0', 'hash': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:52:04.000Z'}}, {'blockNum': '0x7f525b', 'uniqueId': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32:log:0', 'hash': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32', 'from': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:54:33.000Z'}}, {'blockNum': '0x7f526c', 'uniqueId': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae:log:2', 'hash': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3771bb5030f0386a0dd80d3f3019ecb00d8c947f', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4526945a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:58:05.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4:log:56', 'hash': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 34428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x032196defc00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2:log:77', 'hash': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3173.93281631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x49e61d225f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7:log:126', 'hash': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f527d', 'uniqueId': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa:log:33', 'hash': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:23.000Z'}}, {'blockNum': '0x7f5281', 'uniqueId': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795:log:2', 'hash': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:43.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138:log:1', 'hash': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 7544.11222445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafa669b5ad', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33:log:2', 'hash': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a:log:3', 'hash': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40:log:4', 'hash': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 155695.96309408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e291441dfa0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952:log:5', 'hash': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486:log:6', 'hash': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5285', 'uniqueId': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e:log:14', 'hash': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 6664.8854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x9b2dd00b60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:30.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be:log:1', 'hash': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c:log:2', 'hash': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08:log:5', 'hash': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'value': 5066.18678391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e:log:6', 'hash': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3:log:8', 'hash': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3', 'from': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c:log:12', 'hash': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528f', 'uniqueId': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a:log:25', 'hash': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:53.000Z'}}, {'blockNum': '0x7f5290', 'uniqueId': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead:log:49', 'hash': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:01.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e:log:1', 'hash': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438:log:3', 'hash': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a:log:7', 'hash': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e:log:10', 'hash': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f529b', 'uniqueId': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163:log:2', 'hash': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 31887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02e66d54af00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:32.000Z'}}, {'blockNum': '0x7f529c', 'uniqueId': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53:log:2', 'hash': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:50.000Z'}}, {'blockNum': '0x7f529d', 'uniqueId': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355:log:4', 'hash': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:57.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0:log:0', 'hash': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 123058.71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0b312f11d1c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157:log:1', 'hash': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e:log:1', 'hash': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5:log:2', 'hash': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a1', 'uniqueId': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257:log:14', 'hash': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:43.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db:log:0', 'hash': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db', 'from': '0x41694ef21fd72e8e375b350e4c261c9edb5f6b52', 'to': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453:log:2', 'hash': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb:log:53', 'hash': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e:log:54', 'hash': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e:log:55', 'hash': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11803.4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0112d24fbc40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f:log:56', 'hash': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f', 'from': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd:log:57', 'hash': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da:log:59', 'hash': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06080433ab00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17:log:60', 'hash': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286:log:61', 'hash': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253:log:68', 'hash': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf:log:69', 'hash': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 166414.00813484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f22a0c8b7ac', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca:log:70', 'hash': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf:log:71', 'hash': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:110', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 191.91934267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477edad3b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:112', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:113', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1:log:65', 'hash': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715:log:69', 'hash': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92:log:3', 'hash': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3:log:33', 'hash': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955:log:0', 'hash': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 4820.048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7039b99200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0:log:11', 'hash': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d:log:13', 'hash': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52b2', 'uniqueId': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79:log:0', 'hash': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 7549.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafc9064c70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:58.000Z'}}, {'blockNum': '0x7f52b3', 'uniqueId': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33:log:31', 'hash': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:04.000Z'}}, {'blockNum': '0x7f52b4', 'uniqueId': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514:log:4', 'hash': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:19.000Z'}}, {'blockNum': '0x7f52b5', 'uniqueId': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c:log:36', 'hash': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:27.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0:log:84', 'hash': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:88', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:90', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:91', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6:log:1', 'hash': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a:log:2', 'hash': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bd', 'uniqueId': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139:log:116', 'hash': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:38.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb:log:0', 'hash': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d:log:3', 'hash': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c3', 'uniqueId': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f:log:2', 'hash': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 152799.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de5a19b9580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:16:15.000Z'}}, {'blockNum': '0x7f52c7', 'uniqueId': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7:log:11', 'hash': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:17:31.000Z'}}, {'blockNum': '0x7f52c8', 'uniqueId': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e:log:32', 'hash': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:03.000Z'}}, {'blockNum': '0x7f52ca', 'uniqueId': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08:log:50', 'hash': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:42.000Z'}}, {'blockNum': '0x7f52cf', 'uniqueId': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8:log:10', 'hash': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:06.000Z'}}, {'blockNum': '0x7f52d1', 'uniqueId': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326:log:44', 'hash': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:17.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378:log:50', 'hash': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b:log:51', 'hash': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021:log:52', 'hash': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9:log:53', 'hash': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093:log:54', 'hash': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd:log:55', 'hash': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139:log:56', 'hash': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139', 'from': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7:log:57', 'hash': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff:log:58', 'hash': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff', 'from': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c:log:59', 'hash': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 275857.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1916d0ad6740', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a:log:60', 'hash': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a', 'from': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87:log:61', 'hash': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12369.9671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012002bfde70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b:log:62', 'hash': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269:log:12', 'hash': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb:log:13', 'hash': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f:log:27', 'hash': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745:log:72', 'hash': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643:log:82', 'hash': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369:log:87', 'hash': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52dd', 'uniqueId': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30:log:1', 'hash': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:45.000Z'}}, {'blockNum': '0x7f52e1', 'uniqueId': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205:log:0', 'hash': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:09.000Z'}}, {'blockNum': '0x7f52e5', 'uniqueId': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5:log:14', 'hash': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5', 'from': '0xac26adcff2c83f7757b7894075516f2aac8a7482', 'to': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:33.000Z'}}, {'blockNum': '0x7f52fc', 'uniqueId': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69:log:59', 'hash': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:27:40.000Z'}}, {'blockNum': '0x7f52fe', 'uniqueId': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9:log:20', 'hash': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:28:11.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e:log:54', 'hash': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf:log:55', 'hash': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf', 'from': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af:log:59', 'hash': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb:log:66', 'hash': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5307', 'uniqueId': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44:log:21', 'hash': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:31:04.000Z'}}, {'blockNum': '0x7f5313', 'uniqueId': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce:log:1', 'hash': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:33:15.000Z'}}, {'blockNum': '0x7f5319', 'uniqueId': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55:log:2', 'hash': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:09.000Z'}}, {'blockNum': '0x7f531f', 'uniqueId': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b:log:0', 'hash': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:39.000Z'}}, {'blockNum': '0x7f5325', 'uniqueId': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213:log:2', 'hash': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:31.000Z'}}, {'blockNum': '0x7f5327', 'uniqueId': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963:log:14', 'hash': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:47.000Z'}}, {'blockNum': '0x7f532a', 'uniqueId': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4:log:102', 'hash': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:37:47.000Z'}}, {'blockNum': '0x7f5332', 'uniqueId': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2:log:26', 'hash': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2', 'from': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'to': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:39:42.000Z'}}, {'blockNum': '0x7f5335', 'uniqueId': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9:log:1', 'hash': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:13.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45:log:15', 'hash': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45', 'from': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5:log:16', 'hash': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5337', 'uniqueId': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9:log:20', 'hash': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:41:04.000Z'}}, {'blockNum': '0x7f5344', 'uniqueId': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb:log:51', 'hash': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb', 'from': '0x932ab43cbf53a7e48296e0b641f9620906ca5442', 'to': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:43:58.000Z'}}, {'blockNum': '0x7f534d', 'uniqueId': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53:log:121', 'hash': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53', 'from': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:45:11.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3:log:1', 'hash': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3', 'from': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5066.1867839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c76', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a:log:3', 'hash': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a', 'from': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2:log:6', 'hash': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5:log:54', 'hash': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71:log:55', 'hash': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f536b', 'uniqueId': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1:log:1', 'hash': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:34.000Z'}}, {'blockNum': '0x7f537c', 'uniqueId': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619:log:1', 'hash': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2621731.92038343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xee71f3fb27c7', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:53:26.000Z'}}, {'blockNum': '0x7f5380', 'uniqueId': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7:log:19', 'hash': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:54:06.000Z'}}, {'blockNum': '0x7f5387', 'uniqueId': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384:log:100', 'hash': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:55:54.000Z'}}, {'blockNum': '0x7f538c', 'uniqueId': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d:log:3', 'hash': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:56:40.000Z'}}, {'blockNum': '0x7f539a', 'uniqueId': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c:log:128', 'hash': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:00:15.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634:log:88', 'hash': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16:log:137', 'hash': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16', 'from': '0x4a544eced6941964488b2250b85cbdd731b5b0f3', 'to': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f53a1', 'uniqueId': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e:log:43', 'hash': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:29.000Z'}}, {'blockNum': '0x7f53a2', 'uniqueId': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a:log:52', 'hash': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:54.000Z'}}, {'blockNum': '0x7f53bb', 'uniqueId': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e:log:1', 'hash': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:08:08.000Z'}}, {'blockNum': '0x7f53c2', 'uniqueId': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55:log:56', 'hash': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55', 'from': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:09:59.000Z'}}, {'blockNum': '0x7f53c4', 'uniqueId': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915:log:8', 'hash': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 143100.63244587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0d03d23c852b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:10:44.000Z'}}, {'blockNum': '0x7f53c9', 'uniqueId': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72:log:42', 'hash': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:11:58.000Z'}}, {'blockNum': '0x7f53ce', 'uniqueId': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227:log:12', 'hash': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:11.000Z'}}, {'blockNum': '0x7f53cf', 'uniqueId': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf:log:69', 'hash': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:25.000Z'}}, {'blockNum': '0x7f53ea', 'uniqueId': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d:log:123', 'hash': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:17:49.000Z'}}, {'blockNum': '0x7f53ee', 'uniqueId': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721:log:14', 'hash': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:18:34.000Z'}}, {'blockNum': '0x7f53f2', 'uniqueId': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d:log:152', 'hash': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:16.000Z'}}, {'blockNum': '0x7f53f4', 'uniqueId': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d:log:63', 'hash': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:59.000Z'}}, {'blockNum': '0x7f53f6', 'uniqueId': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c:log:24', 'hash': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:20:35.000Z'}}, {'blockNum': '0x7f53f9', 'uniqueId': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420:log:76', 'hash': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:21:29.000Z'}}, {'blockNum': '0x7f53ff', 'uniqueId': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e:log:84', 'hash': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:23:13.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73:log:11', 'hash': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73', 'from': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 6078.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d848816e0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc:log:68', 'hash': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc', 'from': '0x3314df7c38a5bea1375dde468441718a7a9d58ca', 'to': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f541a', 'uniqueId': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73:log:38', 'hash': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73', 'from': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'to': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:28:08.000Z'}}, {'blockNum': '0x7f5444', 'uniqueId': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53:log:100', 'hash': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 794.02381337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x127cc03019', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:37:10.000Z'}}, {'blockNum': '0x7f5446', 'uniqueId': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573:log:13', 'hash': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:38:41.000Z'}}, {'blockNum': '0x7f544b', 'uniqueId': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c:log:0', 'hash': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:40:59.000Z'}}, {'blockNum': '0x7f545c', 'uniqueId': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58:log:88', 'hash': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58', 'from': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:44:20.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7:log:38', 'hash': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7', 'from': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790:log:50', 'hash': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790', 'from': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f5466', 'uniqueId': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43:log:2', 'hash': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:47:30.000Z'}}, {'blockNum': '0x7f5472', 'uniqueId': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2:log:55', 'hash': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:50:07.000Z'}}, {'blockNum': '0x7f5490', 'uniqueId': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c:log:67', 'hash': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c', 'from': '0xbd4c4bf61b48d9876f5bddd71328d678f55cf912', 'to': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:54:51.000Z'}}, {'blockNum': '0x7f5493', 'uniqueId': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7:log:90', 'hash': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:55:47.000Z'}}, {'blockNum': '0x7f5498', 'uniqueId': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff:log:3', 'hash': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:56:30.000Z'}}, {'blockNum': '0x7f549e', 'uniqueId': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d:log:4', 'hash': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d', 'from': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:57:55.000Z'}}, {'blockNum': '0x7f54ad', 'uniqueId': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf:log:53', 'hash': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:00:07.000Z'}}, {'blockNum': '0x7f54db', 'uniqueId': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938:log:15', 'hash': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938', 'from': '0x49847f0578bb43887d1d6832622572e86687702c', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 4992.084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x743b23ac80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:09:05.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e:log:76', 'hash': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f:log:78', 'hash': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668:log:80', 'hash': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447:log:59', 'hash': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x9e973080c3752dd5017f8242b70d3479587159c3', 'value': 588.67926574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db4cd462e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b:log:73', 'hash': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54ff', 'uniqueId': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea:log:73', 'hash': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:52.000Z'}}, {'blockNum': '0x7f5501', 'uniqueId': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11:log:1', 'hash': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:16:22.000Z'}}, {'blockNum': '0x7f5511', 'uniqueId': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1:log:57', 'hash': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 4691.10445333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6d39295515', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:20:31.000Z'}}, {'blockNum': '0x7f551a', 'uniqueId': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4:log:8', 'hash': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:23:40.000Z'}}, {'blockNum': '0x7f5531', 'uniqueId': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c:log:69', 'hash': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:30:54.000Z'}}, {'blockNum': '0x7f5535', 'uniqueId': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178:log:18', 'hash': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:31:31.000Z'}}, {'blockNum': '0x7f553d', 'uniqueId': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1:log:26', 'hash': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:32:32.000Z'}}, {'blockNum': '0x7f5546', 'uniqueId': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f:log:55', 'hash': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:08.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d:log:16', 'hash': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8:log:87', 'hash': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5555', 'uniqueId': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a:log:12', 'hash': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a', 'from': '0xcc60f38163459b9c2ce7852a8d95f5d09b088ac7', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 4410.177948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x66aeb580f0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:38:40.000Z'}}, {'blockNum': '0x7f5557', 'uniqueId': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788:log:1', 'hash': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:39.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc:log:77', 'hash': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc', 'from': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0:log:155', 'hash': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555e', 'uniqueId': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4:log:93', 'hash': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:41:52.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40:log:56', 'hash': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b:log:58', 'hash': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5593', 'uniqueId': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1:log:20', 'hash': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:53:45.000Z'}}, {'blockNum': '0x7f559c', 'uniqueId': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c:log:36', 'hash': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:55:53.000Z'}}, {'blockNum': '0x7f55c4', 'uniqueId': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca:log:34', 'hash': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:03:53.000Z'}}, {'blockNum': '0x7f55c6', 'uniqueId': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c:log:7', 'hash': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:04:30.000Z'}}, {'blockNum': '0x7f55d0', 'uniqueId': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3:log:64', 'hash': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:06:13.000Z'}}, {'blockNum': '0x7f5606', 'uniqueId': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919:log:30', 'hash': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'value': 1517.34660381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2354172d1d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:18:16.000Z'}}, {'blockNum': '0x7f560d', 'uniqueId': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1:log:0', 'hash': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:19:54.000Z'}}, {'blockNum': '0x7f561c', 'uniqueId': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337:log:0', 'hash': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:02.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47:log:0', 'hash': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1337.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1f26f9eee0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22:log:30', 'hash': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5627', 'uniqueId': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5:log:39', 'hash': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:24:35.000Z'}}, {'blockNum': '0x7f5641', 'uniqueId': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c:log:67', 'hash': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:30:01.000Z'}}, {'blockNum': '0x7f5661', 'uniqueId': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173:log:74', 'hash': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:37:04.000Z'}}, {'blockNum': '0x7f5666', 'uniqueId': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a:log:51', 'hash': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0x211c5addcc353255e48b4daec589780ca2d90718', 'value': 194.62217137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048809ddb1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:38:40.000Z'}}, {'blockNum': '0x7f566a', 'uniqueId': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9:log:30', 'hash': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:22.000Z'}}, {'blockNum': '0x7f566c', 'uniqueId': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11:log:15', 'hash': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:51.000Z'}}, {'blockNum': '0x7f5672', 'uniqueId': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a:log:104', 'hash': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:41:03.000Z'}}, {'blockNum': '0x7f569c', 'uniqueId': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904:log:62', 'hash': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:51:54.000Z'}}, {'blockNum': '0x7f56a7', 'uniqueId': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb:log:31', 'hash': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb', 'from': '0xb6467d542a8fc27a487c95366b7e52f20344d690', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 2906.984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x43aef99100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:53:55.000Z'}}, {'blockNum': '0x7f56d2', 'uniqueId': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff:log:49', 'hash': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:02:26.000Z'}}, {'blockNum': '0x7f5712', 'uniqueId': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8:log:5', 'hash': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1787.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x299e009f20', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:17.000Z'}}, {'blockNum': '0x7f5713', 'uniqueId': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c:log:71', 'hash': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c', 'from': '0x4f1a3226108ada7e32bc15bdec19a66fa23e7142', 'to': '0x47ca4d64d59435f4077f1890cdfbad9ba88fc18f', 'value': 608.0048605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e27fdcaa2', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:23.000Z'}}, {'blockNum': '0x7f5720', 'uniqueId': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29:log:6', 'hash': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc2574e3b4851923b91a6541831404fddc0205e87', 'value': 213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04f5943500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:20:33.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c:log:1', 'hash': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1:log:8', 'hash': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f5736', 'uniqueId': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed:log:5', 'hash': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 3125.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x48c4fa8e00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:25:22.000Z'}}, {'blockNum': '0x7f573f', 'uniqueId': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9:log:76', 'hash': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:01.000Z'}}, {'blockNum': '0x7f5742', 'uniqueId': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785:log:57', 'hash': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:29.000Z'}}, {'blockNum': '0x7f5758', 'uniqueId': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf:log:63', 'hash': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:32:46.000Z'}}, {'blockNum': '0x7f5759', 'uniqueId': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7:log:9', 'hash': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7', 'from': '0xc0fbdad8aab77e5bc53e7494732e95f486924bfb', 'to': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:33:04.000Z'}}, {'blockNum': '0x7f575e', 'uniqueId': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c:log:19', 'hash': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:23.000Z'}}, {'blockNum': '0x7f5761', 'uniqueId': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503:log:104', 'hash': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503', 'from': '0x1efa16b8ea27c61c92fe200e25628a6f047cedb2', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2263.039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x34b0c37960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:38.000Z'}}, {'blockNum': '0x7f5769', 'uniqueId': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66:log:15', 'hash': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:11.000Z'}}, {'blockNum': '0x7f576b', 'uniqueId': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f:log:107', 'hash': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:52.000Z'}}, {'blockNum': '0x7f5770', 'uniqueId': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456:log:50', 'hash': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:38:29.000Z'}}, {'blockNum': '0x7f5772', 'uniqueId': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674:log:12', 'hash': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:00.000Z'}}, {'blockNum': '0x7f5774', 'uniqueId': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60:log:11', 'hash': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:21.000Z'}}, {'blockNum': '0x7f5777', 'uniqueId': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f:log:99', 'hash': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f', 'from': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:46.000Z'}}, {'blockNum': '0x7f577d', 'uniqueId': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda:log:116', 'hash': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:42:01.000Z'}}, {'blockNum': '0x7f5799', 'uniqueId': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d:log:6', 'hash': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:47:01.000Z'}}, {'blockNum': '0x7f579f', 'uniqueId': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b:log:0', 'hash': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:48:49.000Z'}}, {'blockNum': '0x7f57a8', 'uniqueId': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a:log:10', 'hash': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:50:52.000Z'}}, {'blockNum': '0x7f57aa', 'uniqueId': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655:log:61', 'hash': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:51:02.000Z'}}, {'blockNum': '0x7f57cb', 'uniqueId': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136:log:80', 'hash': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:58:10.000Z'}}, {'blockNum': '0x7f57cf', 'uniqueId': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f:log:26', 'hash': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:00.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537:log:115', 'hash': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b:log:127', 'hash': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b', 'from': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d9', 'uniqueId': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4:log:11', 'hash': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4', 'from': '0x1c7ff422dfc0fbc97b44d4fa3a1fdf78d4f22ee2', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 1972.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2debd2f780', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:02:47.000Z'}}, {'blockNum': '0x7f57e6', 'uniqueId': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952:log:94', 'hash': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952', 'from': '0x4aacac980e59a270031b6c2903474c86aa66cc79', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:04:03.000Z'}}, {'blockNum': '0x7f5807', 'uniqueId': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5:log:100', 'hash': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:12:25.000Z'}}, {'blockNum': '0x7f5812', 'uniqueId': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979:log:9', 'hash': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:14:25.000Z'}}, {'blockNum': '0x7f5827', 'uniqueId': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256:log:3', 'hash': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:19:48.000Z'}}, {'blockNum': '0x7f5838', 'uniqueId': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0:log:24', 'hash': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0', 'from': '0x541b7e4992392c18253fb9f8232734e7e39bb471', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 1821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2a66017d00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:24:51.000Z'}}, {'blockNum': '0x7f5847', 'uniqueId': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f:log:8', 'hash': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:27:22.000Z'}}, {'blockNum': '0x7f584b', 'uniqueId': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91:log:93', 'hash': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:16.000Z'}}, {'blockNum': '0x7f584f', 'uniqueId': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2:log:11', 'hash': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 383242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x22db0c53ca00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:58.000Z'}}, {'blockNum': '0x7f5851', 'uniqueId': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3:log:106', 'hash': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 56630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0526851a7600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:29:49.000Z'}}, {'blockNum': '0x7f5860', 'uniqueId': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199:log:94', 'hash': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199', 'from': '0x64b8b7632fd1d57fec6630019082898f3a7f8d0d', 'to': '0xf96d8d1ee7ebf60dcc39aeb1427a2c7f712e1db0', 'value': 1627.24771183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x25e326f56f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:34:23.000Z'}}, {'blockNum': '0x7f586e', 'uniqueId': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59:log:2', 'hash': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:38:47.000Z'}}, {'blockNum': '0x7f586f', 'uniqueId': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640:log:2', 'hash': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:39:01.000Z'}}, {'blockNum': '0x7f5884', 'uniqueId': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762:log:10', 'hash': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:12.000Z'}}, {'blockNum': '0x7f5886', 'uniqueId': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f:log:33', 'hash': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f', 'from': '0x1ff9aeebc41b41af5df06123529a177f1a95827f', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1600.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2542880380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:43.000Z'}}, {'blockNum': '0x7f588b', 'uniqueId': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb:log:33', 'hash': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb', 'from': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:46:07.000Z'}}, {'blockNum': '0x7f5892', 'uniqueId': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c:log:101', 'hash': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd3e03a0c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:14.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe:log:61', 'hash': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4346e1a1b9bc181773878e1745d6b9aee8fb1320', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0:log:95', 'hash': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0', 'from': '0xa77cc27c89324245991576bef4be1d655a503ad4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1611.4326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2584e30360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5898', 'uniqueId': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd:log:0', 'hash': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:50:14.000Z'}}, {'blockNum': '0x7f58b5', 'uniqueId': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda:log:22', 'hash': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda', 'from': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:58:53.000Z'}}, {'blockNum': '0x7f58d5', 'uniqueId': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce:log:131', 'hash': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:07:46.000Z'}}, {'blockNum': '0x7f58fa', 'uniqueId': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763:log:129', 'hash': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:15:58.000Z'}}, {'blockNum': '0x7f58fc', 'uniqueId': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862:log:110', 'hash': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:16:21.000Z'}}, {'blockNum': '0x7f58ff', 'uniqueId': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765:log:82', 'hash': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:17:17.000Z'}}, {'blockNum': '0x7f591a', 'uniqueId': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da:log:79', 'hash': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da', 'from': '0x37d7be6ac2b154530f20fe465cba4cd44c6c3033', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1413.16040081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20e717a591', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:25:05.000Z'}}, {'blockNum': '0x7f594b', 'uniqueId': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883:log:8', 'hash': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:34:35.000Z'}}, {'blockNum': '0x7f5961', 'uniqueId': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797:log:15', 'hash': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'value': 29984.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba240b8f70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:38:18.000Z'}}, {'blockNum': '0x7f5974', 'uniqueId': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad:log:56', 'hash': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:41:51.000Z'}}, {'blockNum': '0x7f59ab', 'uniqueId': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829:log:44', 'hash': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:53:07.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:83', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:85', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:90', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59f5', 'uniqueId': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119:log:41', 'hash': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0xa5ad0e32ac5b7b4223c89dbb11054283c1d4efb2', 'value': 1402.04625002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20a4d8cc6a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:09.000Z'}}, {'blockNum': '0x7f59f7', 'uniqueId': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369:log:2', 'hash': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:38.000Z'}}, {'blockNum': '0x7f5a1b', 'uniqueId': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322:log:158', 'hash': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:19:54.000Z'}}, {'blockNum': '0x7f5a2d', 'uniqueId': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f:log:124', 'hash': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:22:10.000Z'}}, {'blockNum': '0x7f5a30', 'uniqueId': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd:log:32', 'hash': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:16.000Z'}}, {'blockNum': '0x7f5a33', 'uniqueId': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9:log:16', 'hash': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:58.000Z'}}, {'blockNum': '0x7f5a35', 'uniqueId': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710:log:60', 'hash': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:24:05.000Z'}}, {'blockNum': '0x7f5a5d', 'uniqueId': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a:log:13', 'hash': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:31:50.000Z'}}, {'blockNum': '0x7f5a73', 'uniqueId': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66:log:115', 'hash': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66', 'from': '0xcbb9e4ebdee8acf1004d2869b7329ae25733e884', 'to': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:36:42.000Z'}}, {'blockNum': '0x7f5a77', 'uniqueId': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40:log:22', 'hash': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:37:32.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7:log:17', 'hash': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669:log:18', 'hash': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669', 'from': '0xa18c51606d69f16efeafa8b88608aeca23a99295', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 1067.18000085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x18d8e373d5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a8a', 'uniqueId': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be:log:47', 'hash': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be', 'from': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:40:04.000Z'}}, {'blockNum': '0x7f5a90', 'uniqueId': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3:log:7', 'hash': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 270355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1896b15fb300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:06.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042:log:2', 'hash': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5:log:99', 'hash': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961:log:101', 'hash': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a9b', 'uniqueId': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e:log:95', 'hash': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:39.000Z'}}, {'blockNum': '0x7f5a9d', 'uniqueId': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e:log:8', 'hash': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:59.000Z'}}, {'blockNum': '0x7f5aa2', 'uniqueId': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7:log:114', 'hash': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:45:36.000Z'}}, {'blockNum': '0x7f5aae', 'uniqueId': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939:log:2', 'hash': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:48:38.000Z'}}, {'blockNum': '0x7f5acb', 'uniqueId': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322:log:116', 'hash': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:56:38.000Z'}}, {'blockNum': '0x7f5ad3', 'uniqueId': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57:log:52', 'hash': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:57:54.000Z'}}, {'blockNum': '0x7f5ad5', 'uniqueId': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7:log:38', 'hash': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:58:09.000Z'}}, {'blockNum': '0x7f5b04', 'uniqueId': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60:log:64', 'hash': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60', 'from': '0x4a6f0b865abdd8fc196d8b4e8b36a0c57ba72e40', 'to': '0xf050eb155416bdf5c34280e73a2a88a07efe3d25', 'value': 1750.85702986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x28c3ebcf4a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:09:35.000Z'}}, {'blockNum': '0x7f5b19', 'uniqueId': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21:log:77', 'hash': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x2036b75b900f5232de980fcb8d3aa1392e1be683', 'value': 3902.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5adf8b3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:14:12.000Z'}}, {'blockNum': '0x7f5bb2', 'uniqueId': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6:log:78', 'hash': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:48:40.000Z'}}, {'blockNum': '0x7f5bd7', 'uniqueId': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861:log:88', 'hash': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:57:00.000Z'}}, {'blockNum': '0x7f5bf6', 'uniqueId': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170:log:17', 'hash': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'value': 4807.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6fec8700d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:02:23.000Z'}}, {'blockNum': '0x7f5c01', 'uniqueId': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625:log:54', 'hash': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625', 'from': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'to': '0x81fa5e19f1d7535b9a82d37f601de49d3e4fbeb5', 'value': 5207.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x793cb690d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:03:52.000Z'}}, {'blockNum': '0x7f5c1d', 'uniqueId': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3:log:19', 'hash': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:10:49.000Z'}}, {'blockNum': '0x7f5c32', 'uniqueId': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a:log:38', 'hash': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a', 'from': '0x349808181eb8be943ccea6e780235e9c294c19fe', 'to': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:16:12.000Z'}}, {'blockNum': '0x7f5c40', 'uniqueId': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca:log:10', 'hash': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca', 'from': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:19:56.000Z'}}, {'blockNum': '0x7f5c75', 'uniqueId': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05:log:30', 'hash': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 16410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017e1338da00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:32.000Z'}}, {'blockNum': '0x7f5c76', 'uniqueId': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2:log:19', 'hash': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2', 'from': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:42.000Z'}}, {'blockNum': '0x7f5cb7', 'uniqueId': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3:log:2', 'hash': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:43:39.000Z'}}, {'blockNum': '0x7f5ced', 'uniqueId': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c:log:25', 'hash': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:53:50.000Z'}}, {'blockNum': '0x7f5cf7', 'uniqueId': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32:log:2', 'hash': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2341bc4817f1ca9ea7853541900aea1f9fe72e34', 'value': 761.256096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11b9709e80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:57:46.000Z'}}]}}
Number of returned transfers:  550
Answer is complete
 
symbol             SNT
group              TCG
date        2019-08-16
hour             16:59
exchange       binance
Name: 572, dtype: object
HERE
 Symbol: SNT, Contract: 0x744d70fdbe2ba4cf95131626614a1763df805b9e
Datetime timestamps:  2019-08-16 16:59:00 2019-08-16 04:59:00 2019-08-17 04:59:00
Unix timestamps:  1565924340.0 1566010740.0
Hex Block Numbers:  0x7f8c2b 0x7fa554
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7f8c31', 'uniqueId': '0xc279a6351a8d38f1b38f6c7c979cff884cdb60cedfe6aaf6b1c7a4a5530f97b6:log:86', 'hash': '0xc279a6351a8d38f1b38f6c7c979cff884cdb60cedfe6aaf6b1c7a4a5530f97b6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 19351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04190512660207fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:01:13.000Z'}}, {'blockNum': '0x7f8c31', 'uniqueId': '0x7835791e2cb448d465fb7afc1fb715cf5c77dc38f8dad3c7d47d92314d5374c2:log:96', 'hash': '0x7835791e2cb448d465fb7afc1fb715cf5c77dc38f8dad3c7d47d92314d5374c2', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x6998f53cdf8f4b87c2d9efdaea28cdda44d5e916', 'value': 12132.419364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0291b3243b3ecaa64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:01:13.000Z'}}, {'blockNum': '0x7f8c31', 'uniqueId': '0xbd60b3d2df9dab889f0200a5c32db6e4d2c09c55dd4cdb2b3aad7080c8ea946e:log:101', 'hash': '0xbd60b3d2df9dab889f0200a5c32db6e4d2c09c55dd4cdb2b3aad7080c8ea946e', 'from': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'to': '0x238cf42be96ba40e7ea94ae1717e4c4246ca8222', 'value': 1588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5615ed526a58500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:01:13.000Z'}}, {'blockNum': '0x7f8c34', 'uniqueId': '0x888d973085098c1b948c19d2cef54f2d0735d3077477d9a08c3b38a4927ebe31:log:63', 'hash': '0x888d973085098c1b948c19d2cef54f2d0735d3077477d9a08c3b38a4927ebe31', 'from': '0xf771d7a29e777b3b648424def5f48fe85f788184', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 18077.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d3fbb5874cd4060000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:01:38.000Z'}}, {'blockNum': '0x7f8c34', 'uniqueId': '0xaeea80a32a414165a5093fcfb41421befabe7255fac2366f18c7d57992e0c7cc:log:146', 'hash': '0xaeea80a32a414165a5093fcfb41421befabe7255fac2366f18c7d57992e0c7cc', 'from': '0xd9c4a05b3799326ded76f906aedd77e59cd97987', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 1465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4f6af58a18eb440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:01:38.000Z'}}, {'blockNum': '0x7f8c37', 'uniqueId': '0xad0ce388c130ff24d1d6dfaa0e86476d274f217b7a33b8f7af65c7f88d439039:log:68', 'hash': '0xad0ce388c130ff24d1d6dfaa0e86476d274f217b7a33b8f7af65c7f88d439039', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x02e7dd5f8027974b3f3a51f0bdf7b48ac1c86878', 'value': 7170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0184afbd13b63ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:01:56.000Z'}}, {'blockNum': '0x7f8c37', 'uniqueId': '0xc76e8e37f82760a263da7f8404dfa3326e43d02bd120126de79bdf405fc408e9:log:72', 'hash': '0xc76e8e37f82760a263da7f8404dfa3326e43d02bd120126de79bdf405fc408e9', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xe795a343ea08a6b2e39adc1fa81e924a2af86b0e', 'value': 2141.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7418ab9d5120900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:01:56.000Z'}}, {'blockNum': '0x7f8c39', 'uniqueId': '0x4cdaca89f48ae17c1d58ee1fc87b603d8a6bb19dcb98bd38a59209f198172718:log:23', 'hash': '0x4cdaca89f48ae17c1d58ee1fc87b603d8a6bb19dcb98bd38a59209f198172718', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0x8520f355b0cf208440cc0de8749cee82a9624b00', 'value': 3210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xae03b2e8b0ebe80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:02:22.000Z'}}, {'blockNum': '0x7f8c39', 'uniqueId': '0xf53a8f4ad9c7f71d54dc404ace30e63e177e6c968ec381b7d2a0733b93051bcc:log:28', 'hash': '0xf53a8f4ad9c7f71d54dc404ace30e63e177e6c968ec381b7d2a0733b93051bcc', 'from': '0x16b9017974befb66a7544354887a964c8bad61f8', 'to': '0xbf69bf9b5ea7326963df3088aca96569ee0a9b07', 'value': 2515.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x885accb75e940a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:02:22.000Z'}}, {'blockNum': '0x7f8c39', 'uniqueId': '0xd24aa685c52b934978519b70a3b60161c6a537a2e806ce24cba5427fe5328ebf:log:29', 'hash': '0xd24aa685c52b934978519b70a3b60161c6a537a2e806ce24cba5427fe5328ebf', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x9e889f06737345246d74257b8f95a7f58eb99e17', 'value': 570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ee656cc02b4a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:02:22.000Z'}}, {'blockNum': '0x7f8c39', 'uniqueId': '0x0ede508ecc6fc12d72973332cc42aa52627247808d03a57fc89380b92020ceb3:log:34', 'hash': '0x0ede508ecc6fc12d72973332cc42aa52627247808d03a57fc89380b92020ceb3', 'from': '0xcdd81108d35af84f569af1fc6eb6f0d18b3db7e0', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 55464.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0bbebdf31bf46adc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:02:22.000Z'}}, {'blockNum': '0x7f8c3d', 'uniqueId': '0xdf65e58a7ad76b1dfdd8bdf750360afbda1440035f20f1c2c4bcefe2b125ffad:log:20', 'hash': '0xdf65e58a7ad76b1dfdd8bdf750360afbda1440035f20f1c2c4bcefe2b125ffad', 'from': '0x97cb1388ed1e8d12051199df2751c0047f492a91', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:02:43.000Z'}}, {'blockNum': '0x7f8c41', 'uniqueId': '0x4e198f8b5ff511c1f0153aab02475b98e940e3fb362ca8ddf371bfe7392cf358:log:63', 'hash': '0x4e198f8b5ff511c1f0153aab02475b98e940e3fb362ca8ddf371bfe7392cf358', 'from': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'to': '0xfe93aa6ddcb5a89e0ba075b56f54cd75db23f244', 'value': 1412.1562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4c8d9aa5f9cd780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:03:47.000Z'}}, {'blockNum': '0x7f8c42', 'uniqueId': '0xf372d79aee30e908bea523c49ad99c28c8bf5419e8cd6faac8261f154c8ea0de:log:73', 'hash': '0xf372d79aee30e908bea523c49ad99c28c8bf5419e8cd6faac8261f154c8ea0de', 'from': '0x659e07fdb86c44bed18732395190c502ea08f318', 'to': '0x7a5e5b05756f3628ab2b029c9d6a9ddb55b35743', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:03:58.000Z'}}, {'blockNum': '0x7f8c44', 'uniqueId': '0x2b4cdaadfbfb0635d6d5a10825c558269094b967483e87a3d2a00c58476f6351:log:7', 'hash': '0x2b4cdaadfbfb0635d6d5a10825c558269094b967483e87a3d2a00c58476f6351', 'from': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'to': '0x26f61ab41d65db4bea75013ebd36bec50bc22257', 'value': 1970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6acb3df27e1f880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:04:17.000Z'}}, {'blockNum': '0x7f8c46', 'uniqueId': '0xf0ab03c2cab6eb6a841959ae0880e022e14d4965194fe1fbe90261a6a5d6a6b4:log:6', 'hash': '0xf0ab03c2cab6eb6a841959ae0880e022e14d4965194fe1fbe90261a6a5d6a6b4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:04:42.000Z'}}, {'blockNum': '0x7f8c47', 'uniqueId': '0x11dcfda51ade3f8d2161ed25b864f492f696048191924487ac5bd881a8bc65c8:log:16', 'hash': '0x11dcfda51ade3f8d2161ed25b864f492f696048191924487ac5bd881a8bc65c8', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0x984b3da3c9b89ded2716d31327aecc8fc5e1eda1', 'value': 13270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02cf5e3e8486d9980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:05:07.000Z'}}, {'blockNum': '0x7f8c47', 'uniqueId': '0x563d276661aa33dde52ea11b066ae11c6cc033383954f0090b4beb8dc30fc79a:log:28', 'hash': '0x563d276661aa33dde52ea11b066ae11c6cc033383954f0090b4beb8dc30fc79a', 'from': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'to': '0xa8085281ef09851be9be06cb38aa854ae6a6fe49', 'value': 27131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05bec642d1cd230c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:05:07.000Z'}}, {'blockNum': '0x7f8c47', 'uniqueId': '0xf4a91ced457889db6c7ec63f6df9cd558d6eb7dc61e45a7945b6f0c90ba8ff6d:log:36', 'hash': '0xf4a91ced457889db6c7ec63f6df9cd558d6eb7dc61e45a7945b6f0c90ba8ff6d', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0x26a053c5dbb9fbc5c5fbef20ab860c668228de3e', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:05:07.000Z'}}, {'blockNum': '0x7f8c47', 'uniqueId': '0x39efc5b8f6d59e3e233c3b75c46ebcae323901005353a6678b670e9d8e1e4caa:log:55', 'hash': '0x39efc5b8f6d59e3e233c3b75c46ebcae323901005353a6678b670e9d8e1e4caa', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x64089ac655ffeb8051319951096a895e33eeb7ad', 'value': 12770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b44359ada3ea480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:05:07.000Z'}}, {'blockNum': '0x7f8c47', 'uniqueId': '0xb6b48084c23c50b22a6213a46fab8c49a1ee6af3b5fcb4ba3ba0b1638871ee02:log:75', 'hash': '0xb6b48084c23c50b22a6213a46fab8c49a1ee6af3b5fcb4ba3ba0b1638871ee02', 'from': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'to': '0xceeae61df76dd5267562e0eaace3d74415e4b1cc', 'value': 15935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x035fd68c78c0699c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:05:07.000Z'}}, {'blockNum': '0x7f8c4c', 'uniqueId': '0x9243b36cbff4a51cf34a6973911d64e444e9ca5941a9b3b6470b5d2c0cc0650b:log:23', 'hash': '0x9243b36cbff4a51cf34a6973911d64e444e9ca5941a9b3b6470b5d2c0cc0650b', 'from': '0x8520f355b0cf208440cc0de8749cee82a9624b00', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 3210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xae03b2e8b0ebe80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:06:01.000Z'}}, {'blockNum': '0x7f8c4e', 'uniqueId': '0xb62799afb6006a4b42c846d965e63e7a8fe1e2bc0e8d14ff2520b55c5fb69584:log:78', 'hash': '0xb62799afb6006a4b42c846d965e63e7a8fe1e2bc0e8d14ff2520b55c5fb69584', 'from': '0x9f37dca57e8216ac4c40ffa2d151a8ce17555920', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 27219.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05c397ff10c9f7460000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:06:49.000Z'}}, {'blockNum': '0x7f8c4e', 'uniqueId': '0x19e3a19ed1ba3815874e783974ec83b6caa9ab8e4edca0d3cb9f27d623be9749:log:79', 'hash': '0x19e3a19ed1ba3815874e783974ec83b6caa9ab8e4edca0d3cb9f27d623be9749', 'from': '0xbc1a7955c342cf86d588ae81f7a60ace4740bc10', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 113872.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x181d0a6463a344f20000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:06:49.000Z'}}, {'blockNum': '0x7f8c50', 'uniqueId': '0x9bd5068ad1ef550f5fdc012d1645030eb7d4c5f67a7ec64eab55b9c641d50a56:log:69', 'hash': '0x9bd5068ad1ef550f5fdc012d1645030eb7d4c5f67a7ec64eab55b9c641d50a56', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xedf93875802ef943530e4f2dd287a77490f47bfb', 'value': 1139.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3dc5bd3cab959e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:07:05.000Z'}}, {'blockNum': '0x7f8c50', 'uniqueId': '0x6ea0d3c1c42b5ba3175077e7e9f55fd42ff23e5aed613d5ebb67534e8cfa3c48:log:70', 'hash': '0x6ea0d3c1c42b5ba3175077e7e9f55fd42ff23e5aed613d5ebb67534e8cfa3c48', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x2289e76b39e063c37484524307c7412823aefcd2', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:07:05.000Z'}}, {'blockNum': '0x7f8c50', 'uniqueId': '0x560759b343642f6d8dba9b0b7742818d7a281699c55e30807478c000f9a01df7:log:71', 'hash': '0x560759b343642f6d8dba9b0b7742818d7a281699c55e30807478c000f9a01df7', 'from': '0x16b9017974befb66a7544354887a964c8bad61f8', 'to': '0xe965106c0865ef6fa9025f90ade7d4e01f1cd509', 'value': 1051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x38f98e1390378c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:07:05.000Z'}}, {'blockNum': '0x7f8c51', 'uniqueId': '0xf5da98e859c8e83f74e88ede89bce1bffcb7d8536eb2818136692e3901eb2e73:log:13', 'hash': '0xf5da98e859c8e83f74e88ede89bce1bffcb7d8536eb2818136692e3901eb2e73', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x29253b9fdb46592fd54cfc59b775ab792eabcaee', 'value': 60468.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cce07965cbefa968000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:07:19.000Z'}}, {'blockNum': '0x7f8c59', 'uniqueId': '0x6b1a36862cf2436bb0022ca4b1dd77ee69f9a247a9d5e7bc5d03509250909e13:log:64', 'hash': '0x6b1a36862cf2436bb0022ca4b1dd77ee69f9a247a9d5e7bc5d03509250909e13', 'from': '0xaadcaa65c3aac30e4783d7d68f85f864b5bdb582', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 11743.973861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027ca4609456d9b75000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:08:04.000Z'}}, {'blockNum': '0x7f8c5a', 'uniqueId': '0x309a7936518c73cb9284d8331a7f6773df5249a31d22daa54e7ca1947ecaf518:log:37', 'hash': '0x309a7936518c73cb9284d8331a7f6773df5249a31d22daa54e7ca1947ecaf518', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 19351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04190512660207fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:08:17.000Z'}}, {'blockNum': '0x7f8c5a', 'uniqueId': '0xc7f66266743ef2b528c78b49dfbaa2b8ffe25b38f6853536e1b399d7e57ed180:log:44', 'hash': '0xc7f66266743ef2b528c78b49dfbaa2b8ffe25b38f6853536e1b399d7e57ed180', 'from': '0x70410f1bc4db98d02c4e82812d7e0d69455f35e3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 15629.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x034f46e2715c27c60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:08:17.000Z'}}, {'blockNum': '0x7f8c5b', 'uniqueId': '0x9a5a1636e516f880f8a4f4fede0d55597599ae3f183ce86bd1b1d2e4992127db:log:26', 'hash': '0x9a5a1636e516f880f8a4f4fede0d55597599ae3f183ce86bd1b1d2e4992127db', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xabb25edbcbcfe7566a127eab8ccbdc17c230077e', 'value': 6054.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01483a659e9cd4a20000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:08:23.000Z'}}, {'blockNum': '0x7f8c5d', 'uniqueId': '0x3797743e9d25425b984fb9bd9e6cc011f7912b05bfbf66b09f66489686f987d2:log:11', 'hash': '0x3797743e9d25425b984fb9bd9e6cc011f7912b05bfbf66b09f66489686f987d2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x55fbb8720148d52157355a349b10acd8accd31f1', 'value': 39968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0876b8eff266a6c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:08:38.000Z'}}, {'blockNum': '0x7f8c5e', 'uniqueId': '0x961e091cf1c998877cdf62856745e8e258c1978d9a1cebd5b530c9cac0adf90e:log:3', 'hash': '0x961e091cf1c998877cdf62856745e8e258c1978d9a1cebd5b530c9cac0adf90e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb06da2af59084a4bd5b3631f9e47df76462fc0fb', 'value': 6794.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01705b345dc92e2e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:08:49.000Z'}}, {'blockNum': '0x7f8c5f', 'uniqueId': '0x5877ce88302124c28552b742873290434780d5702b086d0a2a5344092f55acb2:log:16', 'hash': '0x5877ce88302124c28552b742873290434780d5702b086d0a2a5344092f55acb2', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xdda342e4793ccd5a04c91267ca7f3b1ea4b5bb8f', 'value': 11716.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027b2dad17e986d68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:08:51.000Z'}}, {'blockNum': '0x7f8c65', 'uniqueId': '0x564212254a9e5334dc2711fdf5e190d745475135a342bdc408059e7cb999691f:log:161', 'hash': '0x564212254a9e5334dc2711fdf5e190d745475135a342bdc408059e7cb999691f', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x6f0bd0f44c0b4e406dbdb4b1df7871924e1bc950', 'value': 15300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x033d6a27492034900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:09:59.000Z'}}, {'blockNum': '0x7f8c66', 'uniqueId': '0x9c7dfa98b296c9582ac65410dcc81130ee879c0c99af67535efb607a9bdcf125:log:11', 'hash': '0x9c7dfa98b296c9582ac65410dcc81130ee879c0c99af67535efb607a9bdcf125', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x5945ea6d94addf4b33cde55664242f309f2342ee', 'value': 9618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0209649029a6eb080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:10:13.000Z'}}, {'blockNum': '0x7f8c66', 'uniqueId': '0x082d512931f4bfd8f605d3ad2e723b26264e6e38e9c7455b834ba9866d468256:log:12', 'hash': '0x082d512931f4bfd8f605d3ad2e723b26264e6e38e9c7455b834ba9866d468256', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xd9c09919c4136068cd5803d58639c5b40de6de4e', 'value': 9484.3062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020225305ee462e98000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:10:13.000Z'}}, {'blockNum': '0x7f8c68', 'uniqueId': '0x5dc743f74596aa2511127f93b972188e49707bbed1327cac9734941185091d18:log:58', 'hash': '0x5dc743f74596aa2511127f93b972188e49707bbed1327cac9734941185091d18', 'from': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'to': '0x768e5fe7f7d685fbb282bb9724866d58b295bda4', 'value': 610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2111735814dc480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:10:22.000Z'}}, {'blockNum': '0x7f8c69', 'uniqueId': '0x1af4390c74fb89d22dffd6e7c8de5b42015b0a99c804435d665eef56aa500186:log:21', 'hash': '0x1af4390c74fb89d22dffd6e7c8de5b42015b0a99c804435d665eef56aa500186', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x7f497cc39f96fbb644c7999a19477a1c1fdb16af', 'value': 27678.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05dc7aecd59c97fe8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:10:47.000Z'}}, {'blockNum': '0x7f8c6b', 'uniqueId': '0xde45061935dd9957ed3dca6d65496475edcc9c56a8111f4ed15ad683026a836e:log:33', 'hash': '0xde45061935dd9957ed3dca6d65496475edcc9c56a8111f4ed15ad683026a836e', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x191d0495af521b3e72ad755a158696d48ef6d4a7', 'value': 11712.947661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027af5cd5fd2b77dd000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:11:14.000Z'}}, {'blockNum': '0x7f8c6b', 'uniqueId': '0xcaea1cda6d27023ab6ff04f18252fe7b959252a3a53c5bfbc9d1455c7f0b4f24:log:34', 'hash': '0xcaea1cda6d27023ab6ff04f18252fe7b959252a3a53c5bfbc9d1455c7f0b4f24', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x82b1309b3883e0f4c60892f92520089327a6837b', 'value': 10018.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021f2131444d418e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:11:14.000Z'}}, {'blockNum': '0x7f8c6c', 'uniqueId': '0x8eeda7f08314a31a5e471df05e73f8329c2f5c0c0eed4b719d0b3a2c190d8372:log:18', 'hash': '0x8eeda7f08314a31a5e471df05e73f8329c2f5c0c0eed4b719d0b3a2c190d8372', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x3652f4ef39ceb62b8c153d5a31aee8f45918cd47', 'value': 112047.56355394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17ba1c4fb6dfb6d4c800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:11:33.000Z'}}, {'blockNum': '0x7f8c6c', 'uniqueId': '0x0f792b0361c0479bcb2eb42134beea1cee30f8599726d33fdf9be1fdf1c53f24:log:81', 'hash': '0x0f792b0361c0479bcb2eb42134beea1cee30f8599726d33fdf9be1fdf1c53f24', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:11:33.000Z'}}, {'blockNum': '0x7f8c6c', 'uniqueId': '0x3a42945ae0a7c4039b8ff51ae592091cd03837176d26420874747385eb320220:log:87', 'hash': '0x3a42945ae0a7c4039b8ff51ae592091cd03837176d26420874747385eb320220', 'from': '0x984b3da3c9b89ded2716d31327aecc8fc5e1eda1', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 13270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02cf5e3e8486d9980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:11:33.000Z'}}, {'blockNum': '0x7f8c6f', 'uniqueId': '0x9423ad927dea7a5663cec158ebc3bb9548d6ed97969c9007617e03e0416d3875:log:35', 'hash': '0x9423ad927dea7a5663cec158ebc3bb9548d6ed97969c9007617e03e0416d3875', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x99ab4b37832fdff853c68720329439506563bf61', 'value': 25889.831194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057b7d956cbd0d53a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:13:09.000Z'}}, {'blockNum': '0x7f8c6f', 'uniqueId': '0x233d2c6903c33d8f254edeb9d104b805874eddbf431aa964e252019d2cb54beb:log:46', 'hash': '0x233d2c6903c33d8f254edeb9d104b805874eddbf431aa964e252019d2cb54beb', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xf1a9eef4e2182d68163c4748c30ca952a62f3f2d', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:13:09.000Z'}}, {'blockNum': '0x7f8c71', 'uniqueId': '0xad3553ed0f37d9db36537017bcd374a888a7ad0cf21ea85f9a7a9de1a334724f:log:132', 'hash': '0xad3553ed0f37d9db36537017bcd374a888a7ad0cf21ea85f9a7a9de1a334724f', 'from': '0x6998f53cdf8f4b87c2d9efdaea28cdda44d5e916', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 12132.419364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0291b3243b3ecaa64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:13.000Z'}}, {'blockNum': '0x7f8c73', 'uniqueId': '0xd9c3301d8a8e25b8e2d12547f89a50bdc820df1a48bca62ea51d1b52b62b2949:log:35', 'hash': '0xd9c3301d8a8e25b8e2d12547f89a50bdc820df1a48bca62ea51d1b52b62b2949', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4108.514968698018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdeb919542f847dc1f9', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:30.000Z'}}, {'blockNum': '0x7f8c73', 'uniqueId': '0xd9c3301d8a8e25b8e2d12547f89a50bdc820df1a48bca62ea51d1b52b62b2949:log:37', 'hash': '0xd9c3301d8a8e25b8e2d12547f89a50bdc820df1a48bca62ea51d1b52b62b2949', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4108.514968698018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdeb919542f847dc1f9', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:30.000Z'}}, {'blockNum': '0x7f8c73', 'uniqueId': '0xd9c3301d8a8e25b8e2d12547f89a50bdc820df1a48bca62ea51d1b52b62b2949:log:38', 'hash': '0xd9c3301d8a8e25b8e2d12547f89a50bdc820df1a48bca62ea51d1b52b62b2949', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4108.514968698018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdeb919542f847dc1f9', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:30.000Z'}}, {'blockNum': '0x7f8c73', 'uniqueId': '0x48a5468799002ada3ae94cda1a97be2a65ce5331cc920e1f68ed5f080e1e9e30:log:73', 'hash': '0x48a5468799002ada3ae94cda1a97be2a65ce5331cc920e1f68ed5f080e1e9e30', 'from': '0x16b9017974befb66a7544354887a964c8bad61f8', 'to': '0x98d4cd6d32c9638e7b0e7e9e5e340363c1004d46', 'value': 3510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe4709033915180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:30.000Z'}}, {'blockNum': '0x7f8c73', 'uniqueId': '0x858ae50af69a1b5507457991462fc157b2b38baa549d107b319fa681a288eed2:log:74', 'hash': '0x858ae50af69a1b5507457991462fc157b2b38baa549d107b319fa681a288eed2', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xe53755119d1ae683f5f3492b1699c0343a4e63dc', 'value': 53970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b6db8353eaf58080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:30.000Z'}}, {'blockNum': '0x7f8c73', 'uniqueId': '0x895c76c76c92011f3829d70e9d347b2cbcd51f5c5b5a7d9ed1ecacf151904d35:log:76', 'hash': '0x895c76c76c92011f3829d70e9d347b2cbcd51f5c5b5a7d9ed1ecacf151904d35', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0x7a52e2bbe1cc1b18b2cdcd7be41c3f54f9a297ba', 'value': 10570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023d003795bd66e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:30.000Z'}}, {'blockNum': '0x7f8c73', 'uniqueId': '0xff6c49a50e39b7007a183e9964e04b600f69b2734bae01417ecee45e0cf98600:log:87', 'hash': '0xff6c49a50e39b7007a183e9964e04b600f69b2734bae01417ecee45e0cf98600', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0x9fbb99bc6fe8c471efb811e251d51544293110f8', 'value': 8901.091936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2877713c926060000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:30.000Z'}}, {'blockNum': '0x7f8c73', 'uniqueId': '0x02881dc9967c2d76150bebd2eae9b48bb6fd2cbe3b06a910b22fb2f4d3c06fe6:log:156', 'hash': '0x02881dc9967c2d76150bebd2eae9b48bb6fd2cbe3b06a910b22fb2f4d3c06fe6', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x3a2973d2af5d99b6aede4bd6c321d40425a353e9', 'value': 4430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xf0269998daa4780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:30.000Z'}}, {'blockNum': '0x7f8c73', 'uniqueId': '0xf3235d75b1a002859deb1e4df329da4841cd36ef082afe0c0a58b217f1033c6a:log:157', 'hash': '0xf3235d75b1a002859deb1e4df329da4841cd36ef082afe0c0a58b217f1033c6a', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xa1957d4f54690b5b6ed5dccd6d043b00258c5e01', 'value': 3874.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd20819e08c8d700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:14:30.000Z'}}, {'blockNum': '0x7f8c78', 'uniqueId': '0x2d412cccf316060a5907f8a712ecd19d2d66fd5154eb6dc1af2fe6e53b8ee1e6:log:3', 'hash': '0x2d412cccf316060a5907f8a712ecd19d2d66fd5154eb6dc1af2fe6e53b8ee1e6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 65308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd45a90ef62eaf00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:15:55.000Z'}}, {'blockNum': '0x7f8c78', 'uniqueId': '0xde552c143eca5c91319f14f11fd900f5cd473f674fadad8947ce63d590d6dff8:log:5', 'hash': '0xde552c143eca5c91319f14f11fd900f5cd473f674fadad8947ce63d590d6dff8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 318779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x43810b51d078e80c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:15:55.000Z'}}, {'blockNum': '0x7f8c7b', 'uniqueId': '0x656db54cb61afa09e7ab196086d780e5ddac71282db40e4d9197ec3a8df34640:log:92', 'hash': '0x656db54cb61afa09e7ab196086d780e5ddac71282db40e4d9197ec3a8df34640', 'from': '0x659e07fdb86c44bed18732395190c502ea08f318', 'to': '0x220b13782f20795685a7b2421057e078d87a64e5', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:16:41.000Z'}}, {'blockNum': '0x7f8c80', 'uniqueId': '0x5fd871dc956e5e09dc0b91eff0f01652a15b815451eb0086b197435579846bd1:log:43', 'hash': '0x5fd871dc956e5e09dc0b91eff0f01652a15b815451eb0086b197435579846bd1', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x55347c983323279e212d9d30c216b6876251ced4', 'value': 11687.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027994a51ef899ee0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:18:19.000Z'}}, {'blockNum': '0x7f8c80', 'uniqueId': '0xfab014c9f4ea7631227f7b87fcb5f3b55c30d96b6848b62a3ec57a37304a3d04:log:50', 'hash': '0xfab014c9f4ea7631227f7b87fcb5f3b55c30d96b6848b62a3ec57a37304a3d04', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x59c4b350ddb68f9fa4ea67b157c2cbbffc7a19e9', 'value': 941.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3309efedb81e460000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:18:19.000Z'}}, {'blockNum': '0x7f8c80', 'uniqueId': '0x506cb3e095308570355ddc165657139fdaec13eae830fc62f62d10e94bb4aaed:log:52', 'hash': '0x506cb3e095308570355ddc165657139fdaec13eae830fc62f62d10e94bb4aaed', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x9a1982619164459d012b71c9db1f169eabfad372', 'value': 17288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03a92f32144019200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:18:19.000Z'}}, {'blockNum': '0x7f8c81', 'uniqueId': '0x22bb42c542ded06f905b658187509a50a79e924deba598bca83ea20385c53820:log:2', 'hash': '0x22bb42c542ded06f905b658187509a50a79e924deba598bca83ea20385c53820', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0x6593be891aa716edb573f07ba7bd77dbc337a39a', 'value': 18355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03e306cb930ac6ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:18:22.000Z'}}, {'blockNum': '0x7f8c85', 'uniqueId': '0x999162ba7618a532131c9a6461092ae72e94333edf5dd1dc262df187c4bb307b:log:6', 'hash': '0x999162ba7618a532131c9a6461092ae72e94333edf5dd1dc262df187c4bb307b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x7ab76e420af219ce991a3a68ee4a70bfe6f9e2a1', 'value': 122386.6295366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x19ea97acdb6245237000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:19:23.000Z'}}, {'blockNum': '0x7f8c86', 'uniqueId': '0x3e5d3ceaf9a1d191a82c160e64e9fdfc90f3b22108bdbbc003dfbd52d9746e24:log:31', 'hash': '0x3e5d3ceaf9a1d191a82c160e64e9fdfc90f3b22108bdbbc003dfbd52d9746e24', 'from': '0xceeae61df76dd5267562e0eaace3d74415e4b1cc', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 15935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x035fd68c78c0699c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:19:27.000Z'}}, {'blockNum': '0x7f8c86', 'uniqueId': '0xcc0899e390d6bbd7ff161f242f3d5cd168a5a684ef06c0aee85eb07bc0f068d3:log:32', 'hash': '0xcc0899e390d6bbd7ff161f242f3d5cd168a5a684ef06c0aee85eb07bc0f068d3', 'from': '0xa8085281ef09851be9be06cb38aa854ae6a6fe49', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 27131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05bec642d1cd230c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:19:27.000Z'}}, {'blockNum': '0x7f8c8e', 'uniqueId': '0x2334fca42168d522e3373ef5f0810e41758551dbd8746515c11ed155066fc72d:log:27', 'hash': '0x2334fca42168d522e3373ef5f0810e41758551dbd8746515c11ed155066fc72d', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0xfe0f8a5a5e74406e5264cd20ed3be2b23df092ea', 'value': 48170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a334d09e866e6680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:20:25.000Z'}}, {'blockNum': '0x7f8c90', 'uniqueId': '0x55fd54fdbfdfb3494fbd379f216f8de28d2ae62cde86aae61b248d19428a144f:log:23', 'hash': '0x55fd54fdbfdfb3494fbd379f216f8de28d2ae62cde86aae61b248d19428a144f', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0x853bb87689f30b28f7ac0cb99d666c0ac398de46', 'value': 12668.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02aec4f9ac9008320000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:20:34.000Z'}}, {'blockNum': '0x7f8c94', 'uniqueId': '0x847b16be0afc3d1ce3279cb4ba711236c36ac21925a3835e08e2213fa5525ca3:log:15', 'hash': '0x847b16be0afc3d1ce3279cb4ba711236c36ac21925a3835e08e2213fa5525ca3', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x3ab315c730b723311dc88ecc2b2840f22177c199', 'value': 1557.7898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5472ad21936ece8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:21:12.000Z'}}, {'blockNum': '0x7f8c94', 'uniqueId': '0x9b7ca336278b91d384f123a112fb9fddb9a4b655716e79c1440052ce374a2336:log:16', 'hash': '0x9b7ca336278b91d384f123a112fb9fddb9a4b655716e79c1440052ce374a2336', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xa3a6b9c59a45357aa38f7ce6f89294fe838d80a1', 'value': 46415.5179368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09d430b57b90dff64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:21:12.000Z'}}, {'blockNum': '0x7f8c94', 'uniqueId': '0x4aa84ffff227b6208a5c2486a80935cb4a7d9fe3d53974994b11e953468f474f:log:24', 'hash': '0x4aa84ffff227b6208a5c2486a80935cb4a7d9fe3d53974994b11e953468f474f', 'from': '0x3652f4ef39ceb62b8c153d5a31aee8f45918cd47', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 112047.56355394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17ba1c4fb6dfb6d4c800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:21:12.000Z'}}, {'blockNum': '0x7f8c98', 'uniqueId': '0xdd61a421749bd0afee42793cf2107a85c054370c72aa6e9b5cc226fe9040a258:log:34', 'hash': '0xdd61a421749bd0afee42793cf2107a85c054370c72aa6e9b5cc226fe9040a258', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 420000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x58f03ee118a13e800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:21:52.000Z'}}, {'blockNum': '0x7f8c98', 'uniqueId': '0x60e0141c373f23cd385d2930949e0c0c1b6df26f61da5dcb1cd3ad3c5e97d72f:log:52', 'hash': '0x60e0141c373f23cd385d2930949e0c0c1b6df26f61da5dcb1cd3ad3c5e97d72f', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xc9f7a2492d63bfb73989feaad5744b2bd7d06d2b', 'value': 8216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01bd63e795c431600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:21:52.000Z'}}, {'blockNum': '0x7f8c99', 'uniqueId': '0xea8a6e38f458d23af2b92f4700ed823781cd72a1a4934c53bfefa1b081b6c198:log:44', 'hash': '0xea8a6e38f458d23af2b92f4700ed823781cd72a1a4934c53bfefa1b081b6c198', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xf06c69c7687e1325d20f65772b4ee0fd5b9b04bd', 'value': 18352.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03e2e8439ab2bd100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:22:06.000Z'}}, {'blockNum': '0x7f8c99', 'uniqueId': '0x6e75dd852396e8cc61120540d74dbbfc72a6eef14d0574f23b1a126c00766aec:log:45', 'hash': '0x6e75dd852396e8cc61120540d74dbbfc72a6eef14d0574f23b1a126c00766aec', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x283ba2e6657f61cd65fc6b320c7ebff6d239ca0d', 'value': 1365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49ff2e2beb88340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:22:06.000Z'}}, {'blockNum': '0x7f8ca0', 'uniqueId': '0xbcb88d738fdd91cdd444bea326db9665c5470d0fc8866764855d20f007ed7a89:log:5', 'hash': '0xbcb88d738fdd91cdd444bea326db9665c5470d0fc8866764855d20f007ed7a89', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 54767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b98ecce0bff7a5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:23:30.000Z'}}, {'blockNum': '0x7f8ca2', 'uniqueId': '0xa077447a03c52d19bbd588760235ce45bb4afa36a4f80ba4f1f769faeae3ac1b:log:73', 'hash': '0xa077447a03c52d19bbd588760235ce45bb4afa36a4f80ba4f1f769faeae3ac1b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xe23d7d3840363d253ab5eab6ba1ff0712b68f781', 'value': 55433.5738554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0bbd0f6019d319f49000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:23:57.000Z'}}, {'blockNum': '0x7f8ca4', 'uniqueId': '0xf6af61d4938aa018a70e0d033285a1b06f4cabc2000aada4aaf52ce9d99cc1be:log:58', 'hash': '0xf6af61d4938aa018a70e0d033285a1b06f4cabc2000aada4aaf52ce9d99cc1be', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x3baff32627224bd55b37581173c25a7bdb1f804d', 'value': 40218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x088438debbe754280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:25:11.000Z'}}, {'blockNum': '0x7f8ca4', 'uniqueId': '0x69725b22ce5378a57b2ae536eb839f1962636a60406ca51e8b0917b5aeac6b69:log:59', 'hash': '0x69725b22ce5378a57b2ae536eb839f1962636a60406ca51e8b0917b5aeac6b69', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0x542db1a574716e503f14e9736581a626fbc6755e', 'value': 15935.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x035fdee019929ad80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:25:11.000Z'}}, {'blockNum': '0x7f8ca4', 'uniqueId': '0x3181aea23f7a525810af1806e129097695c45ee06c9e017b13fd9eaa835ce0d7:log:60', 'hash': '0x3181aea23f7a525810af1806e129097695c45ee06c9e017b13fd9eaa835ce0d7', 'from': '0x16b9017974befb66a7544354887a964c8bad61f8', 'to': '0x6d5eff82f90a6bb2f0272020a3714c9902e0fc19', 'value': 4400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xee86442fcd06c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:25:11.000Z'}}, {'blockNum': '0x7f8ca8', 'uniqueId': '0xcdd782d178bdd940722ef261467f864b4f6b62807a8d82db08aa4f36eeee74fc:log:0', 'hash': '0xcdd782d178bdd940722ef261467f864b4f6b62807a8d82db08aa4f36eeee74fc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'value': 57659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c35b35e0186780c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:25:56.000Z'}}, {'blockNum': '0x7f8ca8', 'uniqueId': '0xc172c44b66bcce3310a23cc888a02da3302b884deb89aadcd9128978280693c8:log:51', 'hash': '0xc172c44b66bcce3310a23cc888a02da3302b884deb89aadcd9128978280693c8', 'from': '0x7a52e2bbe1cc1b18b2cdcd7be41c3f54f9a297ba', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 20366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04500b06c84eb5780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:25:56.000Z'}}, {'blockNum': '0x7f8ca9', 'uniqueId': '0xf05f5379eea5251dd096f46788deba1cf1870b33377ee880195b8f7856d3cf41:log:19', 'hash': '0xf05f5379eea5251dd096f46788deba1cf1870b33377ee880195b8f7856d3cf41', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 318779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x43810b51d078e80c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:25:58.000Z'}}, {'blockNum': '0x7f8cab', 'uniqueId': '0xe354f3444a35049877b628794bf81e873400c51704a0f1d873600fdbf3a33ebf:log:3', 'hash': '0xe354f3444a35049877b628794bf81e873400c51704a0f1d873600fdbf3a33ebf', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb86d1911e383a182d07c6d1250f84d9b9506d29e', 'value': 3200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xad78ebc5ac62000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:26:18.000Z'}}, {'blockNum': '0x7f8cab', 'uniqueId': '0x09997040402329394707b5d660856e6856bd6a2c1eafd553b4f6bfd1f6d82ba3:log:40', 'hash': '0x09997040402329394707b5d660856e6856bd6a2c1eafd553b4f6bfd1f6d82ba3', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x052152e225afee6e7257cdfb10ec44f3247697c5', 'value': 18963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0403fc7d7db8546c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:26:18.000Z'}}, {'blockNum': '0x7f8cab', 'uniqueId': '0xfa900c7f2e5808648bce9ea1ea12b2a4e281a836138b65f52b8f5496462a7ad1:log:42', 'hash': '0xfa900c7f2e5808648bce9ea1ea12b2a4e281a836138b65f52b8f5496462a7ad1', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x72c57ef74122e4f33003dcf27078bcc088e25027', 'value': 3773.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc8fd51123e0860000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:26:18.000Z'}}, {'blockNum': '0x7f8cab', 'uniqueId': '0x62d56ff4f5a9ea247c622d01b8a1aaa894a22e4416ab163dc4094e82613d3996:log:44', 'hash': '0x62d56ff4f5a9ea247c622d01b8a1aaa894a22e4416ab163dc4094e82613d3996', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xcede2719636574f870235e37d470aef010594654', 'value': 21662.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04965230cbaf95e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:26:18.000Z'}}, {'blockNum': '0x7f8caf', 'uniqueId': '0x845340f472cb5e1d3c36fc85fc1defbcc9be53681007482c6048bc9e66044bc3:log:42', 'hash': '0x845340f472cb5e1d3c36fc85fc1defbcc9be53681007482c6048bc9e66044bc3', 'from': '0x7a5b20b9efc8fe8c8a74330fb2fe3550502bd744', 'to': '0x0c29c2b80167ce17f32e5d1513ce6fd95f73b196', 'value': 2670.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x90ca44fdd51c6d8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:26:46.000Z'}}, {'blockNum': '0x7f8cb0', 'uniqueId': '0x77f59796741b74c65aba08efed0edf67fbbf5a0e3ff52540835de44003e2596a:log:12', 'hash': '0x77f59796741b74c65aba08efed0edf67fbbf5a0e3ff52540835de44003e2596a', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x9020d962a7a933decf39181fdf32938308c867e2', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:27:03.000Z'}}, {'blockNum': '0x7f8cb3', 'uniqueId': '0xfc1b8b2f4fcf69d2c6796ff06e556553d8cb5319f7467fea94923f2d7b941338:log:7', 'hash': '0xfc1b8b2f4fcf69d2c6796ff06e556553d8cb5319f7467fea94923f2d7b941338', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x38c5f88aa68d03e45c6777d21f6f67a931d394b4', 'value': 8870.065736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e0d8e3df4503cc8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:27:17.000Z'}}, {'blockNum': '0x7f8cb6', 'uniqueId': '0xf48ff3dd2a1b658ce255ddca19a7b7158ab6a8b6689d41c9915193f9efbfa905:log:28', 'hash': '0xf48ff3dd2a1b658ce255ddca19a7b7158ab6a8b6689d41c9915193f9efbfa905', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x30b39b3d57ce0f0e986e134fa61c1c70270a097e', 'value': 63770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d80fa874c0f44280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:28:16.000Z'}}, {'blockNum': '0x7f8cb7', 'uniqueId': '0x599d6d80ff991b85474f4e6f123d5c8730520ffe6bbd4254d51edc992b90be8e:log:30', 'hash': '0x599d6d80ff991b85474f4e6f123d5c8730520ffe6bbd4254d51edc992b90be8e', 'from': '0x16b9017974befb66a7544354887a964c8bad61f8', 'to': '0xb545e6d3b8922a80652c96186f681ea42b8a2645', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:28:38.000Z'}}, {'blockNum': '0x7f8cb7', 'uniqueId': '0xe6632cba4b82a81f914b99f92a3ef922f9ccf5e6862e4d08232ab6ee16d2a9d5:log:33', 'hash': '0xe6632cba4b82a81f914b99f92a3ef922f9ccf5e6862e4d08232ab6ee16d2a9d5', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xc64db95d4b553f12786556c8ba0802bc47aebe6b', 'value': 7639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019e1c6bcad7e8fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:28:38.000Z'}}, {'blockNum': '0x7f8cba', 'uniqueId': '0x129499972366295cc0a7c001ddf7dd9c1e175403a80e91b590722e860641260f:log:52', 'hash': '0x129499972366295cc0a7c001ddf7dd9c1e175403a80e91b590722e860641260f', 'from': '0xe53755119d1ae683f5f3492b1699c0343a4e63dc', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 53970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b6db8353eaf58080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:29:13.000Z'}}, {'blockNum': '0x7f8cbc', 'uniqueId': '0xaa04b9331341e639354d324b66e1d5fcdc6727fe26b733e9a7e8280a5f429fa2:log:14', 'hash': '0xaa04b9331341e639354d324b66e1d5fcdc6727fe26b733e9a7e8280a5f429fa2', 'from': '0x9fbb99bc6fe8c471efb811e251d51544293110f8', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 13695.091936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02e669947415ccae0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:29:42.000Z'}}, {'blockNum': '0x7f8cbe', 'uniqueId': '0xafaf4ebe4a25e8de5323b4b3e4175118c7721147323c449cbdc3135f10de3247:log:38', 'hash': '0xafaf4ebe4a25e8de5323b4b3e4175118c7721147323c449cbdc3135f10de3247', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x8c85d0518603a56414c573aa12dd5d0bce827c79', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:30:25.000Z'}}, {'blockNum': '0x7f8cbe', 'uniqueId': '0xf4d86fcd2256f575c20c8f5dc77d6bee0de3ffb4c9de2f918583a6af30820f2e:log:41', 'hash': '0xf4d86fcd2256f575c20c8f5dc77d6bee0de3ffb4c9de2f918583a6af30820f2e', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x6b060d1a52bc70fef66bf370e7ae8d8fd91e35a2', 'value': 3930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd50bb4c1f7b5280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:30:25.000Z'}}, {'blockNum': '0x7f8cbe', 'uniqueId': '0xbe833d2e0a5eb572c3df13e4e01067d7c187e07085f8f047ff478d72564e42db:log:55', 'hash': '0xbe833d2e0a5eb572c3df13e4e01067d7c187e07085f8f047ff478d72564e42db', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x27ab371e3c49fa914f28e11e876788788b7096e4', 'value': 1627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x58332927c8d88c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:30:25.000Z'}}, {'blockNum': '0x7f8cc2', 'uniqueId': '0xa659a4345ba0c511457715436b17fa567008c20fd53ef191311c847042a69608:log:36', 'hash': '0xa659a4345ba0c511457715436b17fa567008c20fd53ef191311c847042a69608', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x29253b9fdb46592fd54cfc59b775ab792eabcaee', 'value': 125232.0777088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1a84d833802b52ac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:31:09.000Z'}}, {'blockNum': '0x7f8cc3', 'uniqueId': '0x9ab6226065c10abacbdfdc08c006864dadefe571f79a860cdd350c2e567b7e14:log:32', 'hash': '0x9ab6226065c10abacbdfdc08c006864dadefe571f79a860cdd350c2e567b7e14', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6c8e9a191a99e3334a3707a9fe4b9b745db85f7c', 'value': 120000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1969440d16b125468000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:31:43.000Z'}}, {'blockNum': '0x7f8cc3', 'uniqueId': '0xaa44d88641f32586d1c4b61e2144afad7b75d807bf0057537c6d722c088121c2:log:66', 'hash': '0xaa44d88641f32586d1c4b61e2144afad7b75d807bf0057537c6d722c088121c2', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x9f6f49e7e1d8460eb1e4bd396d50aa6243281b0e', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:31:43.000Z'}}, {'blockNum': '0x7f8cc4', 'uniqueId': '0xd099903bc924367e5b23ca30a2cc2552ffe0c45ba220991dc88325a0c91bc583:log:50', 'hash': '0xd099903bc924367e5b23ca30a2cc2552ffe0c45ba220991dc88325a0c91bc583', 'from': '0x1958d9f482a95610012a4407d8f859962617f405', 'to': '0x0c29c2b80167ce17f32e5d1513ce6fd95f73b196', 'value': 4100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xde42ee1544dd900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:32:22.000Z'}}, {'blockNum': '0x7f8cc5', 'uniqueId': '0x0b328b7f5dd81cbe31f78de85f5cedc61becbde48aab10116eded45d5d1d0ca8:log:81', 'hash': '0x0b328b7f5dd81cbe31f78de85f5cedc61becbde48aab10116eded45d5d1d0ca8', 'from': '0x9a1982619164459d012b71c9db1f169eabfad372', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 17288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03a92f32144019200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:32:34.000Z'}}, {'blockNum': '0x7f8cc8', 'uniqueId': '0x8a79190c29f902ec41df4cc4feefd7b2f91334065ba7230990b99232b97fb43c:log:6', 'hash': '0x8a79190c29f902ec41df4cc4feefd7b2f91334065ba7230990b99232b97fb43c', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4062406cf089bd8dd29e8113c55c9cd899f2e636', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:33:03.000Z'}}, {'blockNum': '0x7f8cc8', 'uniqueId': '0xd6e75f828053faa4e946ddb2b4a4969c2afe70fb353ef567d50ec3437560b4d3:log:36', 'hash': '0xd6e75f828053faa4e946ddb2b4a4969c2afe70fb353ef567d50ec3437560b4d3', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x9bb149ea64ede9ef9919ceac4e3d446557a94bf7', 'value': 60004.2182888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d5cf19b099824000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:33:03.000Z'}}, {'blockNum': '0x7f8ccb', 'uniqueId': '0x06c6ef260ed8803ea7172088636b273b5b36a9a304c604bd8899172c6c6d0a71:log:23', 'hash': '0x06c6ef260ed8803ea7172088636b273b5b36a9a304c604bd8899172c6c6d0a71', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xe5b5dc2b9f4def040a58fc21cb8296777d833e29', 'value': 19149.3542638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x040e16acd54c86dbb000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:35:16.000Z'}}, {'blockNum': '0x7f8ccb', 'uniqueId': '0x01c1b2d25a53b5e22d1dab3a3eebe61dfd111735b71293f3c6e6fe976dda1abd:log:76', 'hash': '0x01c1b2d25a53b5e22d1dab3a3eebe61dfd111735b71293f3c6e6fe976dda1abd', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xf05ed32ca782017a9772506d8996f86cf0fc77a1', 'value': 1170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f6d03011307080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:35:16.000Z'}}, {'blockNum': '0x7f8cce', 'uniqueId': '0x80aaeaebf99b7f1ad05e8cf510612e19585872196de8ebe34c65646fff58d4bd:log:25', 'hash': '0x80aaeaebf99b7f1ad05e8cf510612e19585872196de8ebe34c65646fff58d4bd', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x9c26a9807a35c5b01efa587d6cd2f65d2f6e56fe', 'value': 60000.0008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b4791f8b1520000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:35:48.000Z'}}, {'blockNum': '0x7f8ccf', 'uniqueId': '0xb11fd7b911be93334045fefa45bc4fccee24d6197d8074ce232308f17ef05ee8:log:4', 'hash': '0xb11fd7b911be93334045fefa45bc4fccee24d6197d8074ce232308f17ef05ee8', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x1476c5fb67ab3a3783eeed3a67a9d53b4a433b6c', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:36:11.000Z'}}, {'blockNum': '0x7f8cd0', 'uniqueId': '0x554c9fddf72b7215b5121ca54b3e19b7de72f12ceab1088ef37bb4ddced3158e:log:85', 'hash': '0x554c9fddf72b7215b5121ca54b3e19b7de72f12ceab1088ef37bb4ddced3158e', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 420000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x58f03ee118a13e800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:36:14.000Z'}}, {'blockNum': '0x7f8cd4', 'uniqueId': '0xbb9911cc1e5d1f073c613d33b8cdd4889582f207e297b58b69fb9732ee630c6b:log:14', 'hash': '0xbb9911cc1e5d1f073c613d33b8cdd4889582f207e297b58b69fb9732ee630c6b', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x3be004d8d504aaecb5ac69846cd4dcdac0d5996b', 'value': 1068.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x39f2fdd76f1f768000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:37:02.000Z'}}, {'blockNum': '0x7f8cd5', 'uniqueId': '0xeabc59ce4378c35e70cd4c21bc039819fed2ab159885c77448b101491ccd8b50:log:28', 'hash': '0xeabc59ce4378c35e70cd4c21bc039819fed2ab159885c77448b101491ccd8b50', 'from': '0xf06c69c7687e1325d20f65772b4ee0fd5b9b04bd', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 25866.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057a3df62fd1ea380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:37:12.000Z'}}, {'blockNum': '0x7f8cd7', 'uniqueId': '0xfdc33688e26955181bfdf8bf9d8c7a530d8b11f679a95953cab6f7f90649aa79:log:99', 'hash': '0xfdc33688e26955181bfdf8bf9d8c7a530d8b11f679a95953cab6f7f90649aa79', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x4f170c2aab982b5359f2dc4d928974c952bdc1db', 'value': 3890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd2e09835e58d880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:37:58.000Z'}}, {'blockNum': '0x7f8cdf', 'uniqueId': '0x93d8d4801423005330d912d369c306d9cba5d96b1b9fb7abaaa6fc79897a6a03:log:136', 'hash': '0x93d8d4801423005330d912d369c306d9cba5d96b1b9fb7abaaa6fc79897a6a03', 'from': '0x6f0bd0f44c0b4e406dbdb4b1df7871924e1bc950', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 15300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x033d6a27492034900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:39:42.000Z'}}, {'blockNum': '0x7f8ce1', 'uniqueId': '0xa974ac55f6130e4002cc35b6ba3038a506ef562a4935d5673d3a8a102081e5c1:log:67', 'hash': '0xa974ac55f6130e4002cc35b6ba3038a506ef562a4935d5673d3a8a102081e5c1', 'from': '0x542db1a574716e503f14e9736581a626fbc6755e', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 15935.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x035fdee019929ad80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:39:57.000Z'}}, {'blockNum': '0x7f8ce3', 'uniqueId': '0xce742d0a87bceed6fca9eb8adf274084ff7b6f1b826c20f023cf383612245c59:log:50', 'hash': '0xce742d0a87bceed6fca9eb8adf274084ff7b6f1b826c20f023cf383612245c59', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xce34e897fc2c0277d878f5aff358449bae8de751', 'value': 8240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01beb0f8b69be2c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:40:12.000Z'}}, {'blockNum': '0x7f8ce3', 'uniqueId': '0x46d7ab2938b09e6ed895a680bd2b3d30b8a32b5eddbf2d4d76ecc1626ab11a0d:log:69', 'hash': '0x46d7ab2938b09e6ed895a680bd2b3d30b8a32b5eddbf2d4d76ecc1626ab11a0d', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x65706dda23149164e10f88f162f2d431c1d8a124', 'value': 17564.8371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03b8311507f45e6ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:40:12.000Z'}}, {'blockNum': '0x7f8ce3', 'uniqueId': '0xb3363b1e469a5acaf93e8b58f23557a87b6f8031d2a9db78cd2ae057aac6f07c:log:98', 'hash': '0xb3363b1e469a5acaf93e8b58f23557a87b6f8031d2a9db78cd2ae057aac6f07c', 'from': '0xcede2719636574f870235e37d470aef010594654', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 21662.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04965230cbaf95e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:40:12.000Z'}}, {'blockNum': '0x7f8ce7', 'uniqueId': '0x7ffdfe89c307db2f75697d56d17b7ca112a669be880d5a34bef3f028f18c3e9d:log:91', 'hash': '0x7ffdfe89c307db2f75697d56d17b7ca112a669be880d5a34bef3f028f18c3e9d', 'from': '0x27ab371e3c49fa914f28e11e876788788b7096e4', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 1627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x58332927c8d88c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:40:56.000Z'}}, {'blockNum': '0x7f8cf0', 'uniqueId': '0xc1148ceb46ab7c4f413c397886b28a6a01978ed00414cba30a927d3a571d999a:log:26', 'hash': '0xc1148ceb46ab7c4f413c397886b28a6a01978ed00414cba30a927d3a571d999a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x3490a94c9f0e8291ca3395bbc0fa34d36d30bee2', 'value': 10644.8665254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02410f32e9ee69aa7000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:43:33.000Z'}}, {'blockNum': '0x7f8cf0', 'uniqueId': '0xec5e64fb800981ab8afbb19e24e7a6aabe3ecd24b16cb740752f44943a121cd7:log:92', 'hash': '0xec5e64fb800981ab8afbb19e24e7a6aabe3ecd24b16cb740752f44943a121cd7', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x7f497cc39f96fbb644c7999a19477a1c1fdb16af', 'value': 2930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9ed5eb1431d6880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:43:33.000Z'}}, {'blockNum': '0x7f8cf2', 'uniqueId': '0xe37a97c2258022ef38874286cf9703c359127f2117c40c9b5605f685b2cef24a:log:49', 'hash': '0xe37a97c2258022ef38874286cf9703c359127f2117c40c9b5605f685b2cef24a', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x35c433a21484a3a7376d00be04af122355d6d535', 'value': 49848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a8e43f775fa17e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:44:39.000Z'}}, {'blockNum': '0x7f8cf2', 'uniqueId': '0xb0680ab2b506304591e61bd679f6e98fa0c5c87548023d386dcb807ea37adeb8:log:56', 'hash': '0xb0680ab2b506304591e61bd679f6e98fa0c5c87548023d386dcb807ea37adeb8', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x2b1c002274d8fbb4c1f5d8c0b7d9bfdd562cfaea', 'value': 5912.5824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014085905e988a900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:44:39.000Z'}}, {'blockNum': '0x7f8cf3', 'uniqueId': '0x7bc833c583d54e32960c047e87dc11033360a82ab609c1557fc5c7d865e608d8:log:61', 'hash': '0x7bc833c583d54e32960c047e87dc11033360a82ab609c1557fc5c7d865e608d8', 'from': '0x3c02154acfc145fb0e07c53c671a515c5ab7cd4e', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 88623.5444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x12c44abe74234b150000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:44:48.000Z'}}, {'blockNum': '0x7f8cf7', 'uniqueId': '0xba75025ee2423de236b771440ae2f6f108a3849b6ec2bd339b3a5353c0c49e6a:log:30', 'hash': '0xba75025ee2423de236b771440ae2f6f108a3849b6ec2bd339b3a5353c0c49e6a', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xa2bcf5c4be4e05e16309c3ce04a364e8be0dc95e', 'value': 60000.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b4515533dfa4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:45:51.000Z'}}, {'blockNum': '0x7f8cfa', 'uniqueId': '0xdc7ab161c469d47c5dd70f34e70ceee25a32aec4fd33906b27f6a30252c83310:log:130', 'hash': '0xdc7ab161c469d47c5dd70f34e70ceee25a32aec4fd33906b27f6a30252c83310', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 120075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x196d475efb62654c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:46:51.000Z'}}, {'blockNum': '0x7f8d01', 'uniqueId': '0x43f18266c7b242c53aa574c453b49f7bf07dbaf725004bf3336e4eba442fc8e2:log:59', 'hash': '0x43f18266c7b242c53aa574c453b49f7bf07dbaf725004bf3336e4eba442fc8e2', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x07ce8cff7b1423a6054a9490f50297c889ba915f', 'value': 3311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb37d5afd91f65c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:48:01.000Z'}}, {'blockNum': '0x7f8d01', 'uniqueId': '0x89c28e859a1b94ca598a60a54894b0ca604bb4763b26e5691cfe03bbe4263d14:log:60', 'hash': '0x89c28e859a1b94ca598a60a54894b0ca604bb4763b26e5691cfe03bbe4263d14', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x8a41b856720f173e601a0ee6bc4e053761a26f87', 'value': 13027.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02c238e17358c95e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:48:01.000Z'}}, {'blockNum': '0x7f8d09', 'uniqueId': '0x5a353037d768d63c1fb45c3473ea49e6bb8d77b034f1416655ec37fa409508d3:log:47', 'hash': '0x5a353037d768d63c1fb45c3473ea49e6bb8d77b034f1416655ec37fa409508d3', 'from': '0x65706dda23149164e10f88f162f2d431c1d8a124', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 17564.8371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03b8311507f45e6ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:49:32.000Z'}}, {'blockNum': '0x7f8d18', 'uniqueId': '0x69592b44b92acc2891f2ebd16e6257e1b98fa660d6e228c641861f8118dc4ee5:log:86', 'hash': '0x69592b44b92acc2891f2ebd16e6257e1b98fa660d6e228c641861f8118dc4ee5', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x27b1672aded502278e88abfaa6b16ec7eec2ae88', 'value': 2134.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x73b1f9888616ac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:53:22.000Z'}}, {'blockNum': '0x7f8d18', 'uniqueId': '0x1b3459517e61fa04ee7651bb67284fbdaa384a9fafa7b7206cca08783bd5e4a9:log:88', 'hash': '0x1b3459517e61fa04ee7651bb67284fbdaa384a9fafa7b7206cca08783bd5e4a9', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x218e54a86b2e92a064c7846371b430f8acb14159', 'value': 2807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x982af34be0697c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:53:22.000Z'}}, {'blockNum': '0x7f8d1d', 'uniqueId': '0xb5486da2715daa7492e52a7fd9094141f3caa61880538c6c690e3c5455d2113f:log:156', 'hash': '0xb5486da2715daa7492e52a7fd9094141f3caa61880538c6c690e3c5455d2113f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x99da98c83dfbbaf9e650b7a72ac3de063029ee32', 'value': 60003.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d26a806bedf28000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:54:29.000Z'}}, {'blockNum': '0x7f8d1e', 'uniqueId': '0xb414c28db54a40fed61b5239c76ef319e1ca32e391f3240e931ad653310677d8:log:45', 'hash': '0xb414c28db54a40fed61b5239c76ef319e1ca32e391f3240e931ad653310677d8', 'from': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'to': '0xf3b8cf8e26973cfcf62d823aac46526489002226', 'value': 4229.39586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe546a8865ecfb80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:55:29.000Z'}}, {'blockNum': '0x7f8d1f', 'uniqueId': '0x4555f77319cc53e2d88b0b9e2ae7936c98e53abb6ba0b9952150d9d76d85f0f4:log:13', 'hash': '0x4555f77319cc53e2d88b0b9e2ae7936c98e53abb6ba0b9952150d9d76d85f0f4', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xfbde0b2089f02b141b860d5729a8c99f5a79f5c7', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:55:40.000Z'}}, {'blockNum': '0x7f8d24', 'uniqueId': '0xa4be762d70ddbf53de1214f67cf117c098118a5714b2bde074aef9b1086a9f7b:log:15', 'hash': '0xa4be762d70ddbf53de1214f67cf117c098118a5714b2bde074aef9b1086a9f7b', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xd1f4d2ed1f71330b44923c85c8723dab17e0d613', 'value': 207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b38b3bb4459dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:56:07.000Z'}}, {'blockNum': '0x7f8d24', 'uniqueId': '0x7ae2b613430714834d5fa3763a2fe6685e4d19e73fa94e3adb802a0f78489d81:log:65', 'hash': '0x7ae2b613430714834d5fa3763a2fe6685e4d19e73fa94e3adb802a0f78489d81', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0xddf2021c978675012fb6f0d2305a5f9767501738', 'value': 13292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02d08f8e37f73c300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:56:07.000Z'}}, {'blockNum': '0x7f8d24', 'uniqueId': '0xc573976247262d4e604d863643e194b55f95c7e08af4e6bfb7be81365c48867f:log:66', 'hash': '0xc573976247262d4e604d863643e194b55f95c7e08af4e6bfb7be81365c48867f', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xd4e1bc22dcf43cc234a52830e0a015c8d69e46ef', 'value': 1211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x41a60043d8d60c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:56:07.000Z'}}, {'blockNum': '0x7f8d25', 'uniqueId': '0xadb58962b7e3bb00995afa3984822e641e440db5b67e54c54bc3df16b1ecbbd8:log:57', 'hash': '0xadb58962b7e3bb00995afa3984822e641e440db5b67e54c54bc3df16b1ecbbd8', 'from': '0x16b9017974befb66a7544354887a964c8bad61f8', 'to': '0x11b0bf410191ffbcd974b77591531b7aaf3ffaf3', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:56:23.000Z'}}, {'blockNum': '0x7f8d2d', 'uniqueId': '0x560bd14cf6deb0057e97ba28b219a80061304af7de4310e4e731842682d51357:log:29', 'hash': '0x560bd14cf6deb0057e97ba28b219a80061304af7de4310e4e731842682d51357', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xbcf6391584a0fd834d3af57e0cd0bf6aa40ffe92', 'value': 11075.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02586e03a01365728000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:57:35.000Z'}}, {'blockNum': '0x7f8d2e', 'uniqueId': '0xabb73ab35873d46c6af4b1a920357f36d658ee482d68dce7abc3d00c8e66dcf3:log:15', 'hash': '0xabb73ab35873d46c6af4b1a920357f36d658ee482d68dce7abc3d00c8e66dcf3', 'from': '0xf3b8cf8e26973cfcf62d823aac46526489002226', 'to': '0x64c3914f039c57baf2cb006fbadc8f3af84ac0f7', 'value': 4616.737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xfa4618b0faa2968000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:58:26.000Z'}}, {'blockNum': '0x7f8d2e', 'uniqueId': '0xbfacb209420c293f5498ca533627f5e8739e76c3099b535fe1dfb75456628ea2:log:64', 'hash': '0xbfacb209420c293f5498ca533627f5e8739e76c3099b535fe1dfb75456628ea2', 'from': '0x35c433a21484a3a7376d00be04af122355d6d535', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 49848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a8e43f775fa17e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:58:26.000Z'}}, {'blockNum': '0x7f8d2e', 'uniqueId': '0x6487efeacc3602c0c91d762f68a1d81d53e78d69680a1d8f112dbea650c0a3a8:log:66', 'hash': '0x6487efeacc3602c0c91d762f68a1d81d53e78d69680a1d8f112dbea650c0a3a8', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xd8982eb490a3881688e9b27c227545667ec16b2e', 'value': 7750.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a427cb5e17510a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:58:26.000Z'}}, {'blockNum': '0x7f8d2e', 'uniqueId': '0x74b08999dd1cc34f772615365ec8dbdd06d289f4eb78bf3475db216724005309:log:80', 'hash': '0x74b08999dd1cc34f772615365ec8dbdd06d289f4eb78bf3475db216724005309', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x30400f425f84c1415c608d56c12848c90aa97d03', 'value': 645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x22f72c52a4bef40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:58:26.000Z'}}, {'blockNum': '0x7f8d2e', 'uniqueId': '0xf30673012330e85e6d73546a96b481db23a6890e6922837aa4f5cf3bcb717e27:log:92', 'hash': '0xf30673012330e85e6d73546a96b481db23a6890e6922837aa4f5cf3bcb717e27', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xb64bb4e861880fd5a711abaac9f17cac52a153ef', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:58:26.000Z'}}, {'blockNum': '0x7f8d2f', 'uniqueId': '0xfa30320cd01dd673f77f647c76c6aac55da54d0f7b9180f2a97726e82fdaa770:log:117', 'hash': '0xfa30320cd01dd673f77f647c76c6aac55da54d0f7b9180f2a97726e82fdaa770', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0x33998226f6b3c66722a8176049963a1ff1348d5f', 'value': 112505.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17d2f3107eefc7900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T03:59:00.000Z'}}, {'blockNum': '0x7f8d32', 'uniqueId': '0x2206d2372590bda635f5b46a2e3d2c299a1ef9020377200b470cc6b2ff39d851:log:104', 'hash': '0x2206d2372590bda635f5b46a2e3d2c299a1ef9020377200b470cc6b2ff39d851', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xb3eb0a21984e03dea6e342584d334d51e03b27b5', 'value': 3570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc187b3d55450880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:00:14.000Z'}}, {'blockNum': '0x7f8d32', 'uniqueId': '0xee467792a43e2a7271b642007d915f2012a57939fdb465739d420d02c4e469ba:log:110', 'hash': '0xee467792a43e2a7271b642007d915f2012a57939fdb465739d420d02c4e469ba', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x7c99e17b316a9cf3ff9715015e6f8d3cd67fa250', 'value': 21576.795947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0491ae321b083729b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:00:14.000Z'}}, {'blockNum': '0x7f8d34', 'uniqueId': '0xa32dee22f2df53dffeb00460fbdaaee3290497240494ca4b0d29dc40c46be3fc:log:61', 'hash': '0xa32dee22f2df53dffeb00460fbdaaee3290497240494ca4b0d29dc40c46be3fc', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0x5a61c48df0777a66f7f1b06cd4c914f9314d268c', 'value': 63770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d80fa874c0f44280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:00:41.000Z'}}, {'blockNum': '0x7f8d39', 'uniqueId': '0xc41142537b82b7428d820ad0718ee924eb076a2b312799d9c61d1fc94e963356:log:29', 'hash': '0xc41142537b82b7428d820ad0718ee924eb076a2b312799d9c61d1fc94e963356', 'from': '0x07ce8cff7b1423a6054a9490f50297c889ba915f', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 11881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x028411ff37c3a0040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:01:51.000Z'}}, {'blockNum': '0x7f8d3a', 'uniqueId': '0x426b5d1e1379079beb309201380ee61943acd812eef7f8ba34a2f32f5577daf2:log:45', 'hash': '0x426b5d1e1379079beb309201380ee61943acd812eef7f8ba34a2f32f5577daf2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 16811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x038f537da78133cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:01:55.000Z'}}, {'blockNum': '0x7f8d3d', 'uniqueId': '0xb0d1d4b313e6e5e68ab3b73fd3e95ae92afc9db7b7f911c5c2ac5b9c328506de:log:21', 'hash': '0xb0d1d4b313e6e5e68ab3b73fd3e95ae92afc9db7b7f911c5c2ac5b9c328506de', 'from': '0x8a41b856720f173e601a0ee6bc4e053761a26f87', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 13027.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02c238e17358c95e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:03:11.000Z'}}, {'blockNum': '0x7f8d3e', 'uniqueId': '0x31b86b71db27644295deda3012c5b3099fe9c97e4118aa8c60f4b42b61fef61f:log:147', 'hash': '0x31b86b71db27644295deda3012c5b3099fe9c97e4118aa8c60f4b42b61fef61f', 'from': '0x218e54a86b2e92a064c7846371b430f8acb14159', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 2807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x982af34be0697c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:03:18.000Z'}}, {'blockNum': '0x7f8d3e', 'uniqueId': '0xb5f42ab7b37887bbb8a85a4bc95d080f70b31b3210b6bab40fa80f04e6a03141:log:151', 'hash': '0xb5f42ab7b37887bbb8a85a4bc95d080f70b31b3210b6bab40fa80f04e6a03141', 'from': '0x27b1672aded502278e88abfaa6b16ec7eec2ae88', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 2134.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x73b1f9888616ac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:03:18.000Z'}}, {'blockNum': '0x7f8d46', 'uniqueId': '0x7a5990afdcc23b574440852740873e3c5af52ca22ee694940d063104d4a48692:log:80', 'hash': '0x7a5990afdcc23b574440852740873e3c5af52ca22ee694940d063104d4a48692', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xcc1f03dc2403d10a37c0c0bda5eae202615906ff', 'value': 920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x31df9095a18f600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:05:11.000Z'}}, {'blockNum': '0x7f8d46', 'uniqueId': '0xf52a090c97a982aa249ef5c55c4504f82235962ee23b97ee51f8ab9dd825bd98:log:81', 'hash': '0xf52a090c97a982aa249ef5c55c4504f82235962ee23b97ee51f8ab9dd825bd98', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x086fd425019704b6caca8e069e020fcce24705ea', 'value': 15270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x033bc9d1e01296d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:05:11.000Z'}}, {'blockNum': '0x7f8d46', 'uniqueId': '0xa1ca5a8d613f509954ca3698e8fceed5de40c9bfd4a238989af087f82488a049:log:94', 'hash': '0xa1ca5a8d613f509954ca3698e8fceed5de40c9bfd4a238989af087f82488a049', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xd5607e71e3f1ac675ccf996d56b0100a8a55a740', 'value': 25876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057abda3271387d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:05:11.000Z'}}, {'blockNum': '0x7f8d46', 'uniqueId': '0xa058348bbe34fc494a94635d2730366f2b02b4eda6f3c4e90e213144c94d949e:log:108', 'hash': '0xa058348bbe34fc494a94635d2730366f2b02b4eda6f3c4e90e213144c94d949e', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x732e5fc57b44a884f4b2dc60da4b20b28bff4bdf', 'value': 921.255706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x31f0fdbf95c7b3a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:05:11.000Z'}}, {'blockNum': '0x7f8d4a', 'uniqueId': '0x7711c7dcc25e57afaffb4f7f5dcdca260118533874f9d556dbefa00e0a9a9915:log:77', 'hash': '0x7711c7dcc25e57afaffb4f7f5dcdca260118533874f9d556dbefa00e0a9a9915', 'from': '0x16b9017974befb66a7544354887a964c8bad61f8', 'to': '0xa7f775cdc765f93baa56055a822a8f964138c15a', 'value': 894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3076be07628f380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:06:00.000Z'}}, {'blockNum': '0x7f8d4a', 'uniqueId': '0x93f301fc9028cfe239b050bd932c3b51bee2cb045e2602c369b11d6438572dda:log:78', 'hash': '0x93f301fc9028cfe239b050bd932c3b51bee2cb045e2602c369b11d6438572dda', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xa1047f84d3e60c86285fda9600395b6535648499', 'value': 21568.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x049139adb5b81f280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:06:00.000Z'}}, {'blockNum': '0x7f8d4b', 'uniqueId': '0x28ed3e5feedf26d271e52ddff2c1538eee69d01bde9d1fb7a227d99956155798:log:3', 'hash': '0x28ed3e5feedf26d271e52ddff2c1538eee69d01bde9d1fb7a227d99956155798', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0xc3794a35830d2f8171cca0ea9ad4d63fe9c8aabf', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2b5e3af16b18800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:06:26.000Z'}}, {'blockNum': '0x7f8d4b', 'uniqueId': '0xfe6af44cfc340b51f1b30bfc97a3172952933306d5b55d6bb0dd2d80b1991214:log:118', 'hash': '0xfe6af44cfc340b51f1b30bfc97a3172952933306d5b55d6bb0dd2d80b1991214', 'from': '0xddf2021c978675012fb6f0d2305a5f9767501738', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 13292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02d08f8e37f73c300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:06:26.000Z'}}, {'blockNum': '0x7f8d4c', 'uniqueId': '0xa17b2f39b92fccc8d9a8d77acd71e1dff70c227754825e957a700d719cfd8f76:log:49', 'hash': '0xa17b2f39b92fccc8d9a8d77acd71e1dff70c227754825e957a700d719cfd8f76', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0xabba9a5a9bca09ad02195a04c0d2309191449748', 'value': 20090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x044114c1ce9e3da80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:06:37.000Z'}}, {'blockNum': '0x7f8d4c', 'uniqueId': '0x9bded0fa8fc2ba527b3fcf7bbdb0849017c4119f622a3c92a6083e804dc9006e:log:50', 'hash': '0x9bded0fa8fc2ba527b3fcf7bbdb0849017c4119f622a3c92a6083e804dc9006e', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0xa38104fa98c23ff497a9f4d467d5184469f7697f', 'value': 41955.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08e26aea05b44ae80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:06:37.000Z'}}, {'blockNum': '0x7f8d4f', 'uniqueId': '0xe674111759eb9cc840cc6eb448b5804d1bd5a2b61027ab769088313627e121d6:log:60', 'hash': '0xe674111759eb9cc840cc6eb448b5804d1bd5a2b61027ab769088313627e121d6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x945862ca3f50745de7e6b375a638adc10a07683c', 'value': 10522.5664158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023a6df1a4394e533000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:07:38.000Z'}}, {'blockNum': '0x7f8d51', 'uniqueId': '0xb8e72ccb6cbacc4e46d9f95c4b668dbde76d3cbf25d753d48fa31e7be78cc319:log:105', 'hash': '0xb8e72ccb6cbacc4e46d9f95c4b668dbde76d3cbf25d753d48fa31e7be78cc319', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 16811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x038f537da78133cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:08:56.000Z'}}, {'blockNum': '0x7f8d52', 'uniqueId': '0xa89d5571a91524f5b81f74c4dbc2d4a0c302d245693400845d5d39f72aa983e0:log:66', 'hash': '0xa89d5571a91524f5b81f74c4dbc2d4a0c302d245693400845d5d39f72aa983e0', 'from': '0x853bb87689f30b28f7ac0cb99d666c0ac398de46', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 12668.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02aec4f9ac9008320000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:09:03.000Z'}}, {'blockNum': '0x7f8d5a', 'uniqueId': '0x112474e9fc4921ff765fbff824ca2d1ede03b40b520a48c19f79ad9b96c00c62:log:73', 'hash': '0x112474e9fc4921ff765fbff824ca2d1ede03b40b520a48c19f79ad9b96c00c62', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x56733823ef8f31da3c60af0933e886edd64bffea', 'value': 1020, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x374b57f3cef2700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:10:11.000Z'}}, {'blockNum': '0x7f8d5b', 'uniqueId': '0xa25fa149f3088d4924a9d313ae91d4146e5526b486fa83e646bd9820e990ee07:log:29', 'hash': '0xa25fa149f3088d4924a9d313ae91d4146e5526b486fa83e646bd9820e990ee07', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x8d1a12031c9974081f99759a3a0874a6a04f5006', 'value': 21176.8965528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x047c007a0ec3d641c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:10:47.000Z'}}, {'blockNum': '0x7f8d60', 'uniqueId': '0x2488a38b190cdaaeb63a787e78d52368bc3d2fc75feceeeb5f7ed50c44ba381b:log:95', 'hash': '0x2488a38b190cdaaeb63a787e78d52368bc3d2fc75feceeeb5f7ed50c44ba381b', 'from': '0x086fd425019704b6caca8e069e020fcce24705ea', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 15270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x033bc9d1e01296d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:12:24.000Z'}}, {'blockNum': '0x7f8d65', 'uniqueId': '0x46212b8b72253b24991271993921effc0fef359aff4285ae9584abedc9f5dcf6:log:10', 'hash': '0x46212b8b72253b24991271993921effc0fef359aff4285ae9584abedc9f5dcf6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1f218671111d1f4fea7a7fe59a9d84081cd0cfa1', 'value': 6028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0146c74e0e4986b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:14:17.000Z'}}, {'blockNum': '0x7f8d65', 'uniqueId': '0x4911482fc8722fabf670151c23991bce406fc2a6642c4531ee45befad56c573e:log:11', 'hash': '0x4911482fc8722fabf670151c23991bce406fc2a6642c4531ee45befad56c573e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe709598112f93ea7ac60c818954bf855a8513373', 'value': 2160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7518058bd45bc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:14:17.000Z'}}, {'blockNum': '0x7f8d66', 'uniqueId': '0x8681c6702c958b4b4ae8a38be7d976e1d7f15a5485c163cb8f1252d427989d37:log:22', 'hash': '0x8681c6702c958b4b4ae8a38be7d976e1d7f15a5485c163cb8f1252d427989d37', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xbf21eec90653ddb75de4480f80648418e4877b0d', 'value': 18588.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03efb36c08510d400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:14:18.000Z'}}, {'blockNum': '0x7f8d69', 'uniqueId': '0x69f741bc77ff08697ca54d862c47210f14171e3938aa18978f25312707c7d8c4:log:92', 'hash': '0x69f741bc77ff08697ca54d862c47210f14171e3938aa18978f25312707c7d8c4', 'from': '0x64c3914f039c57baf2cb006fbadc8f3af84ac0f7', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 14222.93844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x030306ebf2d2907c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:15:18.000Z'}}, {'blockNum': '0x7f8d69', 'uniqueId': '0xd4cebd227fffe3032762d8e9a28c55caeede452329002bfbdfa364726f8be8ff:log:101', 'hash': '0xd4cebd227fffe3032762d8e9a28c55caeede452329002bfbdfa364726f8be8ff', 'from': '0x33998226f6b3c66722a8176049963a1ff1348d5f', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 112505.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17d2f3107eefc7900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:15:18.000Z'}}, {'blockNum': '0x7f8d6c', 'uniqueId': '0x8b6ce17fde9f4536170072d464b035289b8eaf584ca9bc96d3053ddce1157a4a:log:13', 'hash': '0x8b6ce17fde9f4536170072d464b035289b8eaf584ca9bc96d3053ddce1157a4a', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x58eefc45b780a23672cf3bc59c5b1a5ba58b927e', 'value': 4802.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01045ea6b7daac0e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:16:17.000Z'}}, {'blockNum': '0x7f8d71', 'uniqueId': '0xbb5136642de4c4c7297b2a811ab94ac7bae0dc309811d6c0e8979aea3d38d253:log:67', 'hash': '0xbb5136642de4c4c7297b2a811ab94ac7bae0dc309811d6c0e8979aea3d38d253', 'from': '0x7c99e17b316a9cf3ff9715015e6f8d3cd67fa250', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 21576.795947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0491ae321b083729b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:17:42.000Z'}}, {'blockNum': '0x7f8d71', 'uniqueId': '0xc6b693b871e3cf5c3893bc74796b8655d01d7e0c15e18189aeb761381251fa5b:log:68', 'hash': '0xc6b693b871e3cf5c3893bc74796b8655d01d7e0c15e18189aeb761381251fa5b', 'from': '0x5a61c48df0777a66f7f1b06cd4c914f9314d268c', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 63770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d80fa874c0f44280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:17:42.000Z'}}, {'blockNum': '0x7f8d72', 'uniqueId': '0xa1dd29059bc839f47180d40190b2965712a05d65290d73728816405bc742ebc4:log:98', 'hash': '0xa1dd29059bc839f47180d40190b2965712a05d65290d73728816405bc742ebc4', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xd830032b6b8a2a03a9e7914e2dc79f263502c499', 'value': 6391.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015a816e90432b560000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:17:47.000Z'}}, {'blockNum': '0x7f8d72', 'uniqueId': '0xd95690be861967c3cd28ef1401d6dfc76194e016c2010ae4080b45a33f43f467:log:102', 'hash': '0xd95690be861967c3cd28ef1401d6dfc76194e016c2010ae4080b45a33f43f467', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x48ce0ee8cc82ae400ef33fe38ba6e5481924a854', 'value': 12237.413317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02976439af378bb55000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:17:47.000Z'}}, {'blockNum': '0x7f8d72', 'uniqueId': '0x48b52c7c83b5220d9fe82027dfee429c4a6354a129b12ee252c3ae3877d9ef27:log:103', 'hash': '0x48b52c7c83b5220d9fe82027dfee429c4a6354a129b12ee252c3ae3877d9ef27', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x2f4a13dfd24b3ccec2609df965524899c087c7d5', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:17:47.000Z'}}, {'blockNum': '0x7f8d74', 'uniqueId': '0x514a1c561211d4d646982e0bec763e08bab6998e1ec744eee8a96ac16ffc7c79:log:38', 'hash': '0x514a1c561211d4d646982e0bec763e08bab6998e1ec744eee8a96ac16ffc7c79', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xfd320b1121efb8464710f1b192cc1810df47d65f', 'value': 49087.7393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a650d3adf5c5a0e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:18:24.000Z'}}, {'blockNum': '0x7f8d74', 'uniqueId': '0x05b970299ff1c5dd0f10612377c107380bcd175f275dbaebbb2339e50b40859b:log:121', 'hash': '0x05b970299ff1c5dd0f10612377c107380bcd175f275dbaebbb2339e50b40859b', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xec1b3dbe95320bf49310961e03467bfdb6c95994', 'value': 8622.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d37163827296480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:18:24.000Z'}}, {'blockNum': '0x7f8d7c', 'uniqueId': '0x781b80bb12bac56afb7b9ddba1f35b1563dd93d6dbca75c10323f427bd95b422:log:25', 'hash': '0x781b80bb12bac56afb7b9ddba1f35b1563dd93d6dbca75c10323f427bd95b422', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x4e0d0702402619f9b39193e453906c2b8bff1447', 'value': 43868.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x094a244f4b50be368000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:20:29.000Z'}}, {'blockNum': '0x7f8d7d', 'uniqueId': '0x0be9e19d71e9b9b2ee971b4de30611e310d1434db396bf34e012afeccf4c34c1:log:64', 'hash': '0x0be9e19d71e9b9b2ee971b4de30611e310d1434db396bf34e012afeccf4c34c1', 'from': '0xd5607e71e3f1ac675ccf996d56b0100a8a55a740', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 25876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057abda3271387d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:20:35.000Z'}}, {'blockNum': '0x7f8d82', 'uniqueId': '0x21acd93f2eaa9cb542155bea5ad3d21140f94f59a49a444f398c480fe615e998:log:34', 'hash': '0x21acd93f2eaa9cb542155bea5ad3d21140f94f59a49a444f398c480fe615e998', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3b577b699171a3e4d282b33678d9107216c11d5d', 'value': 60053.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb7884e2f829f7a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:21:43.000Z'}}, {'blockNum': '0x7f8d83', 'uniqueId': '0x08356de13929659c9f4005b7b2b0124fae1e76223a339a4a4530b2651aaa2805:log:6', 'hash': '0x08356de13929659c9f4005b7b2b0124fae1e76223a339a4a4530b2651aaa2805', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x873db02e2baeb1f97b258908255683e37f183213', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:21:59.000Z'}}, {'blockNum': '0x7f8d85', 'uniqueId': '0x67056e94c55533bc1357c0bc5007179e3fd69acebaf0e45a1a6799b43d8d4f49:log:94', 'hash': '0x67056e94c55533bc1357c0bc5007179e3fd69acebaf0e45a1a6799b43d8d4f49', 'from': '0xa38104fa98c23ff497a9f4d467d5184469f7697f', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 41955.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08e26aea05b44ae80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:22:09.000Z'}}, {'blockNum': '0x7f8d85', 'uniqueId': '0x3570666d56a8e7fd84d30a9ae392738d3ee6761c2d444e98f41b5e96854b4630:log:106', 'hash': '0x3570666d56a8e7fd84d30a9ae392738d3ee6761c2d444e98f41b5e96854b4630', 'from': '0xa1047f84d3e60c86285fda9600395b6535648499', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 21568.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x049139adb5b81f280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:22:09.000Z'}}, {'blockNum': '0x7f8d89', 'uniqueId': '0xfd61ac7133d94765523d9f682e8665dc26aeece340e637ba7a101bf0cfa08f60:log:86', 'hash': '0xfd61ac7133d94765523d9f682e8665dc26aeece340e637ba7a101bf0cfa08f60', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xb9437b822aab93d8e42c8ac2f6a53f3ba3288aa5', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:23:45.000Z'}}, {'blockNum': '0x7f8d89', 'uniqueId': '0x5739f722b090fc879ac35fefa96f2d68d0808943a01ebbd29f241aca210ff870:log:98', 'hash': '0x5739f722b090fc879ac35fefa96f2d68d0808943a01ebbd29f241aca210ff870', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xe0a21cdafdb51632f1dda0cb65369e579ce4764f', 'value': 15988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0362b6124bf211500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:23:45.000Z'}}, {'blockNum': '0x7f8d89', 'uniqueId': '0xd3495910d1a86fd7eaf1a8c03807c22c112a5ae36ac6cf64e7a48743dc684c6b:log:103', 'hash': '0xd3495910d1a86fd7eaf1a8c03807c22c112a5ae36ac6cf64e7a48743dc684c6b', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xf7f5b2b1f623c571acceaf587a901f3849fae84f', 'value': 10655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02419bd43f63fb1c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:23:45.000Z'}}, {'blockNum': '0x7f8d97', 'uniqueId': '0xe814ee57e29b344ef67fa047d1c3745b2d021b4d74947c61b24d29f9a799c0e4:log:20', 'hash': '0xe814ee57e29b344ef67fa047d1c3745b2d021b4d74947c61b24d29f9a799c0e4', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x42b7895e9f12ba51b3f900307e97bbf14ffb061c', 'value': 52668.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2730d7aaeacbb68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:26:08.000Z'}}, {'blockNum': '0x7f8d98', 'uniqueId': '0xb09da9dd83ea6db8f2a330ccca626f39ae7e8cad3123cd69dde6088ba5323664:log:104', 'hash': '0xb09da9dd83ea6db8f2a330ccca626f39ae7e8cad3123cd69dde6088ba5323664', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0xe5378bd113a9cb284fe0201d7c591d7a852de0aa', 'value': 24496.9354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x052ffb457bf943a68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:26:14.000Z'}}, {'blockNum': '0x7f8dac', 'uniqueId': '0x2cad01d61c896b6b5105eae8fed57c6125d4c24597cf6eb405f1025cee5b7367:log:44', 'hash': '0x2cad01d61c896b6b5105eae8fed57c6125d4c24597cf6eb405f1025cee5b7367', 'from': '0x48ce0ee8cc82ae400ef33fe38ba6e5481924a854', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 12237.413317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02976439af378bb55000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:30:24.000Z'}}, {'blockNum': '0x7f8dac', 'uniqueId': '0x7d81f3ce26d7825ca38c94466d779a8fd567530cc7aec3be4b40e8d5b734323a:log:72', 'hash': '0x7d81f3ce26d7825ca38c94466d779a8fd567530cc7aec3be4b40e8d5b734323a', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0xf7562f5a8329e3cb32d80609d532cd8a69ad53c6', 'value': 41240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08bb9ff81d1d95600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:30:24.000Z'}}, {'blockNum': '0x7f8dac', 'uniqueId': '0xd8c6f389446a6d853c6e491274f07147954550b7b374b7a398a2eef0cdd9a66a:log:127', 'hash': '0xd8c6f389446a6d853c6e491274f07147954550b7b374b7a398a2eef0cdd9a66a', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xf0544e575ec3f80ce458d49102b348f3d263d187', 'value': 870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2f29ace68addd80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:30:24.000Z'}}, {'blockNum': '0x7f8dac', 'uniqueId': '0xd24e79b8ff632b72d4cbc956cd4ab92a87d8ad6448350a2a06ada393f0af1125:log:130', 'hash': '0xd24e79b8ff632b72d4cbc956cd4ab92a87d8ad6448350a2a06ada393f0af1125', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x0613d8b7a545574ac194ef09c80e491de4f18c43', 'value': 77448.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106679687bf4c0b20000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:30:24.000Z'}}, {'blockNum': '0x7f8daf', 'uniqueId': '0xc0b7b09df4c3da1739ea2a2c327d087601e52b3b92c94f194f0385be7e628d04:log:4', 'hash': '0xc0b7b09df4c3da1739ea2a2c327d087601e52b3b92c94f194f0385be7e628d04', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6aa48cb820259265edfffdc0f24249aa2c0540df', 'value': 1074.6256756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3a416d5658ec292000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:30:49.000Z'}}, {'blockNum': '0x7f8db5', 'uniqueId': '0x3ef10b5985004a0dc80ce6acd8a72f61235892d3537d3cd9313c7084469f980b:log:33', 'hash': '0x3ef10b5985004a0dc80ce6acd8a72f61235892d3537d3cd9313c7084469f980b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x924201062aae4150d2fc0802363217bb6fbc690d', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:31:57.000Z'}}, {'blockNum': '0x7f8db7', 'uniqueId': '0xa93e98d3806a30f25ebfb6382331a0781fea613055958adc4895d561e52ad87d:log:25', 'hash': '0xa93e98d3806a30f25ebfb6382331a0781fea613055958adc4895d561e52ad87d', 'from': '0xec1b3dbe95320bf49310961e03467bfdb6c95994', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 12270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02992874d6c0faf80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:32:23.000Z'}}, {'blockNum': '0x7f8db7', 'uniqueId': '0x56eceb7dbba3ce1d65324eea93b26d11be89a100c61e7d37b2174a075be38952:log:42', 'hash': '0x56eceb7dbba3ce1d65324eea93b26d11be89a100c61e7d37b2174a075be38952', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0x661e235bd66c607081a1b98400e1f6da29691813', 'value': 6621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0166ecd5447045540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:32:23.000Z'}}, {'blockNum': '0x7f8db8', 'uniqueId': '0x8fe38d2bb497ad2670ab8b5c57872ff9a8b0dec45688d71ade29c63759a2f73e:log:46', 'hash': '0x8fe38d2bb497ad2670ab8b5c57872ff9a8b0dec45688d71ade29c63759a2f73e', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x92f7d495a8c22f6bbe0bde42e5c64e5dcf9502de', 'value': 1370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a4491bd6dcd280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:32:25.000Z'}}, {'blockNum': '0x7f8db8', 'uniqueId': '0x52dbae5119738129415e2beecdd2f3605abed9ecf216e78799977a460fd56e7f:log:52', 'hash': '0x52dbae5119738129415e2beecdd2f3605abed9ecf216e78799977a460fd56e7f', 'from': '0x42b7895e9f12ba51b3f900307e97bbf14ffb061c', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 52668.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2730d7aaeacbb68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:32:25.000Z'}}, {'blockNum': '0x7f8db8', 'uniqueId': '0x0662da039761ec5edb448314241f4f2a15ba524455fc2ef300af40ff664b941e:log:54', 'hash': '0x0662da039761ec5edb448314241f4f2a15ba524455fc2ef300af40ff664b941e', 'from': '0xe5378bd113a9cb284fe0201d7c591d7a852de0aa', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 24496.9354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x052ffb457bf943a68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:32:25.000Z'}}, {'blockNum': '0x7f8dba', 'uniqueId': '0xa3e96de1a79f8667a64b4b2b1fccc3e50c00dd9c5f8b0b43b70ff305e6443bdb:log:95', 'hash': '0xa3e96de1a79f8667a64b4b2b1fccc3e50c00dd9c5f8b0b43b70ff305e6443bdb', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0x15ace5e521546a084ede3e2e42c7d41e0f6a1e73', 'value': 84517.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11e5b28b139f8f9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:32:54.000Z'}}, {'blockNum': '0x7f8dc4', 'uniqueId': '0x66da48ee23420ffbac8d0ac59ec6483cbf4e2148403bb2073c3125cf66bdf28c:log:35', 'hash': '0x66da48ee23420ffbac8d0ac59ec6483cbf4e2148403bb2073c3125cf66bdf28c', 'from': '0xe0a21cdafdb51632f1dda0cb65369e579ce4764f', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 15988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0362b6124bf211500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:34:47.000Z'}}, {'blockNum': '0x7f8dc4', 'uniqueId': '0x593ba135f9faf70ba52d1005451be2b21bd374f0ba59281fccfb7faa467e82cc:log:36', 'hash': '0x593ba135f9faf70ba52d1005451be2b21bd374f0ba59281fccfb7faa467e82cc', 'from': '0xf7f5b2b1f623c571acceaf587a901f3849fae84f', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 10655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02419bd43f63fb1c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:34:47.000Z'}}, {'blockNum': '0x7f8dc4', 'uniqueId': '0xabc806422e9724761a5df3212df5ebf751f7ff60b14f26679898b286e502607c:log:61', 'hash': '0xabc806422e9724761a5df3212df5ebf751f7ff60b14f26679898b286e502607c', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x70ca9152d1d80edeb9d71ab336615326cc743bff', 'value': 3520.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbedcea52008b500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:34:47.000Z'}}, {'blockNum': '0x7f8dcd', 'uniqueId': '0x588721a8189f6a191dbffd114ecc39f9b480d386115ac85eeae5813cadec9f57:log:63', 'hash': '0x588721a8189f6a191dbffd114ecc39f9b480d386115ac85eeae5813cadec9f57', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x57a7c70a67aa1c40d67c63df395c2b7133cf8c7b', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:37:54.000Z'}}, {'blockNum': '0x7f8dd2', 'uniqueId': '0xc0797886c7a1c96e0e529202e9836caa44fc2019d3f73b3224157da648b1ec74:log:103', 'hash': '0xc0797886c7a1c96e0e529202e9836caa44fc2019d3f73b3224157da648b1ec74', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x677d4e3d82d64717b01dfdcc6a5ee899aff91ae7', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc413f560500be40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:40:29.000Z'}}, {'blockNum': '0x7f8dd2', 'uniqueId': '0x22e6d0d03e36d7d40217ab7d3aa14485ff665251759c20b67358d1251c7b99e2:log:104', 'hash': '0x22e6d0d03e36d7d40217ab7d3aa14485ff665251759c20b67358d1251c7b99e2', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xf7041ff2760d73e259ac9c8a8eb2e622a77bfc6c', 'value': 720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x270801d946c9400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:40:29.000Z'}}, {'blockNum': '0x7f8dd4', 'uniqueId': '0x6b4c72ca55d2a844de0789b4033750ee5a0839010f18b9483b1883fbd68168d9:log:39', 'hash': '0x6b4c72ca55d2a844de0789b4033750ee5a0839010f18b9483b1883fbd68168d9', 'from': '0x3be004d8d504aaecb5ac69846cd4dcdac0d5996b', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1068.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x39f2fdd76f1f768000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:41:06.000Z'}}, {'blockNum': '0x7f8dd5', 'uniqueId': '0x03788687aa63398d77573e39d133f45a8d30a3d7677ba9ae0dadcdf75b80f08b:log:20', 'hash': '0x03788687aa63398d77573e39d133f45a8d30a3d7677ba9ae0dadcdf75b80f08b', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x12ebd70c72b791925e50cbc136615aa644889870', 'value': 8971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e651a2699add4c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:41:10.000Z'}}, {'blockNum': '0x7f8ddc', 'uniqueId': '0xbcbf275b92195e474fed6015dc9ffc9a6441f052d729c89062457df3b85745f7:log:137', 'hash': '0xbcbf275b92195e474fed6015dc9ffc9a6441f052d729c89062457df3b85745f7', 'from': '0x0cb65a411a6965a3c76e1a0734fe89ebcf103359', 'to': '0xb5385af4db3aa8899e229976f7ee0b2e49a2476c', 'value': 2836.85001495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x99c933da524c557c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:42:09.000Z'}}, {'blockNum': '0x7f8deb', 'uniqueId': '0x135cdddc0c8346b5a1bece9ed6da4b0470af66c7016739e50b4f0293d09a8ea1:log:145', 'hash': '0x135cdddc0c8346b5a1bece9ed6da4b0470af66c7016739e50b4f0293d09a8ea1', 'from': '0x0613d8b7a545574ac194ef09c80e491de4f18c43', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 77448.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106679687bf4c0b20000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:45:07.000Z'}}, {'blockNum': '0x7f8ded', 'uniqueId': '0x71fa8c38ed2e74f584b3aa9d0a3c7acc0c1e619e3630db412c24902f79fbdf8d:log:68', 'hash': '0x71fa8c38ed2e74f584b3aa9d0a3c7acc0c1e619e3630db412c24902f79fbdf8d', 'from': '0x677d4e3d82d64717b01dfdcc6a5ee899aff91ae7', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc413f560500be40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:45:38.000Z'}}, {'blockNum': '0x7f8df1', 'uniqueId': '0xd6881d56cc0dd3c27ef054a4fcd41e9f1f85cec5a72f273cacae5b2e94d34ccb:log:103', 'hash': '0xd6881d56cc0dd3c27ef054a4fcd41e9f1f85cec5a72f273cacae5b2e94d34ccb', 'from': '0x661e235bd66c607081a1b98400e1f6da29691813', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 15725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03547436996119940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:46:04.000Z'}}, {'blockNum': '0x7f8df3', 'uniqueId': '0x5f856bf48754173e0a15f4fb74262dcd359ae1146eb82a787b2a17341e03042a:log:99', 'hash': '0x5f856bf48754173e0a15f4fb74262dcd359ae1146eb82a787b2a17341e03042a', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x71eeb67e38da2f4da2bcd89136618016dc8ac52f', 'value': 5389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0124236603dab4140000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:47:00.000Z'}}, {'blockNum': '0x7f8df3', 'uniqueId': '0x99f8dab885ce6eee075afbac9d0de6892f3bd3bc19648433d105f08564d08d0c:log:100', 'hash': '0x99f8dab885ce6eee075afbac9d0de6892f3bd3bc19648433d105f08564d08d0c', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xb076e382b49fdbef953131e7145978b0f0a672dd', 'value': 9732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020f92a185a775900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:47:00.000Z'}}, {'blockNum': '0x7f8df3', 'uniqueId': '0xda8d1c94bead3d64696727d8bd4a98d5fbc47bbff75b974c6ce1f532865f05e9:log:141', 'hash': '0xda8d1c94bead3d64696727d8bd4a98d5fbc47bbff75b974c6ce1f532865f05e9', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x291bd623ac5f79cfabcb1f8ad11a7d5417265f6d', 'value': 3190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xacee24a2a7d8180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:47:00.000Z'}}, {'blockNum': '0x7f8df4', 'uniqueId': '0x2e5a96d1e4eb40a9ca32c216340a485881654a5a3b138afdc19e12dcbe628833:log:49', 'hash': '0x2e5a96d1e4eb40a9ca32c216340a485881654a5a3b138afdc19e12dcbe628833', 'from': '0x15ace5e521546a084ede3e2e42c7d41e0f6a1e73', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 84517.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11e5b28b139f8f9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:47:09.000Z'}}, {'blockNum': '0x7f8dfc', 'uniqueId': '0x5e9d062e93bd1ce52e0fbce0496de2dab412aba4c53d92179cf0f81b4b7609c7:log:112', 'hash': '0x5e9d062e93bd1ce52e0fbce0496de2dab412aba4c53d92179cf0f81b4b7609c7', 'from': '0xf05ed32ca782017a9772506d8996f86cf0fc77a1', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 1170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f6d03011307080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:49:06.000Z'}}, {'blockNum': '0x7f8dfc', 'uniqueId': '0xdec32ba12f6c543bdb077968d18f269a8a359ae16108a5b9f46c7686a27ed0c2:log:113', 'hash': '0xdec32ba12f6c543bdb077968d18f269a8a359ae16108a5b9f46c7686a27ed0c2', 'from': '0x59c4b350ddb68f9fa4ea67b157c2cbbffc7a19e9', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 941.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3309efedb81e460000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:49:06.000Z'}}, {'blockNum': '0x7f8dfc', 'uniqueId': '0x98bec40676e42b756eaea184bd52ac5f1e56051e8882132fd151e273aeaffb5e:log:122', 'hash': '0x98bec40676e42b756eaea184bd52ac5f1e56051e8882132fd151e273aeaffb5e', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xd5e795a2e3f74dc2e076c6c169bec80ae7cecb06', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:49:06.000Z'}}, {'blockNum': '0x7f8dfd', 'uniqueId': '0x6a6562a67be7b43410f6cc9bbf9a633e32937b6904451baeedde4b06ebd718c5:log:118', 'hash': '0x6a6562a67be7b43410f6cc9bbf9a633e32937b6904451baeedde4b06ebd718c5', 'from': '0x6aa48cb820259265edfffdc0f24249aa2c0540df', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1074.6256756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3a416d5658ec292000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:49:24.000Z'}}, {'blockNum': '0x7f8dfe', 'uniqueId': '0xc9dd6a2a4a59e7584307b9849752a3de39850f18636265a388b6673745ad0af3:log:101', 'hash': '0xc9dd6a2a4a59e7584307b9849752a3de39850f18636265a388b6673745ad0af3', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x102a93ac53f98cf48ef2ede60cc95b616adbb056', 'value': 11825.1648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02810b20bd3115200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:49:27.000Z'}}, {'blockNum': '0x7f8e07', 'uniqueId': '0x39f52013186cbbe0dd26085e00f3770962ea601bd954a787de817b0d8ff4b0cd:log:19', 'hash': '0x39f52013186cbbe0dd26085e00f3770962ea601bd954a787de817b0d8ff4b0cd', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xc413d7d9df4f718f883f69a45881d396fd1817b1', 'value': 49965.860139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a94a79ac9f29909b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:51:01.000Z'}}, {'blockNum': '0x7f8e0d', 'uniqueId': '0x020780dda32e014330f8de64d06eb51ddeec5b96d608bb7ff203fd196fcb5322:log:11', 'hash': '0x020780dda32e014330f8de64d06eb51ddeec5b96d608bb7ff203fd196fcb5322', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xc9344393bb0cbfbf9da0cae75125cce203804c38', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:51:36.000Z'}}, {'blockNum': '0x7f8e23', 'uniqueId': '0x9187abc92ae657086fa762eb5cb5e385da7389853f6aba3dd8d37302a3437ff4:log:12', 'hash': '0x9187abc92ae657086fa762eb5cb5e385da7389853f6aba3dd8d37302a3437ff4', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb7d3d2d5ee9fdbc2c577fd210b5cf11030d72786', 'value': 49668.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a848f7aa1992fd68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:56:05.000Z'}}, {'blockNum': '0x7f8e24', 'uniqueId': '0xf2e80662e726bd1348fb4f45b91ac1ae097048ffad5c7271cfe778c4c05650ff:log:64', 'hash': '0xf2e80662e726bd1348fb4f45b91ac1ae097048ffad5c7271cfe778c4c05650ff', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x465a85e9ee6d900d58bc91f497af42c56db412b6', 'value': 13492.7186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02db7115ef3689e88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:56:29.000Z'}}, {'blockNum': '0x7f8e30', 'uniqueId': '0x8606fa43ac54e48d4d718454322922f9a88eb7a769ebc4277a5f587aaf0bff6f:log:81', 'hash': '0x8606fa43ac54e48d4d718454322922f9a88eb7a769ebc4277a5f587aaf0bff6f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6941017b4315ba28f049777356de2dd65d9f5c4c', 'value': 41500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08c9b831ab9396f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:58:38.000Z'}}, {'blockNum': '0x7f8e31', 'uniqueId': '0x04b8567f73bc577a75b1af7307a80e4af15e9c16bf716cb0f0edfc57e151fb7e:log:70', 'hash': '0x04b8567f73bc577a75b1af7307a80e4af15e9c16bf716cb0f0edfc57e151fb7e', 'from': '0x71eeb67e38da2f4da2bcd89136618016dc8ac52f', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 11989.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0289ee2f91069bbe0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:58:54.000Z'}}, {'blockNum': '0x7f8e31', 'uniqueId': '0xf81ef602ad0857c674579d276f8f4ace0d69d69428451dd88fdb8b3cb5e752d2:log:122', 'hash': '0xf81ef602ad0857c674579d276f8f4ace0d69d69428451dd88fdb8b3cb5e752d2', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xaba518b4bf510b3dbf96dcf59030c025d9005d93', 'value': 6300.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01558d00888534a20000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:58:54.000Z'}}, {'blockNum': '0x7f8e32', 'uniqueId': '0xb6bc382c90b31477d37e96b558fdb94defcfbc3e6db73297648debb8cb0ad9a8:log:17', 'hash': '0xb6bc382c90b31477d37e96b558fdb94defcfbc3e6db73297648debb8cb0ad9a8', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xa6a59907a180d77c65334e54a2b0f6dc06845561', 'value': 10048.7738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220bec0226a24328000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:59:07.000Z'}}, {'blockNum': '0x7f8e34', 'uniqueId': '0xd07d527900ab9776df0ab50aea8a83fb715ca92c20a9a63fbdfd31a99d183894:log:9', 'hash': '0xd07d527900ab9776df0ab50aea8a83fb715ca92c20a9a63fbdfd31a99d183894', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x9db30342fdb544b850c2527d0f100663b2c654aa', 'value': 1998.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6c5d55901538be8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T04:59:54.000Z'}}, {'blockNum': '0x7f8e36', 'uniqueId': '0x4ea76f66debf11ebea0298f7f76f9253130d4ef753857ed177462050e75ec28f:log:7', 'hash': '0x4ea76f66debf11ebea0298f7f76f9253130d4ef753857ed177462050e75ec28f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xc46b8f5df5af755565686ef1dd01b511a10de48b', 'value': 10738.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x024629331d940ace8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:01:30.000Z'}}, {'blockNum': '0x7f8e39', 'uniqueId': '0x4338010e4ba2f3cf0a91ab02749b05a2e6531b9ff749e223c7def4f33f713140:log:63', 'hash': '0x4338010e4ba2f3cf0a91ab02749b05a2e6531b9ff749e223c7def4f33f713140', 'from': '0x102a93ac53f98cf48ef2ede60cc95b616adbb056', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 11825.1648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02810b20bd3115200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:01:42.000Z'}}, {'blockNum': '0x7f8e40', 'uniqueId': '0xfec2eab89caae2c0941bb62c77408892095759e50b7692b7d70a42971eeb1637:log:20', 'hash': '0xfec2eab89caae2c0941bb62c77408892095759e50b7692b7d70a42971eeb1637', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xc03d276a7dc8223256966e0bc3d7cc637ff311c0', 'value': 9901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0218bbfa2240f6940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:02:18.000Z'}}, {'blockNum': '0x7f8e48', 'uniqueId': '0x8dc21e43a39d33eca53b449b7592c5bf25cfa0776fc4f8175afbd35382bc96db:log:36', 'hash': '0x8dc21e43a39d33eca53b449b7592c5bf25cfa0776fc4f8175afbd35382bc96db', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x6941017b4315ba28f049777356de2dd65d9f5c4c', 'value': 21245.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x047fb460a61b30e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:03:13.000Z'}}, {'blockNum': '0x7f8e4e', 'uniqueId': '0xdd44916e21ac893f5cb03ccf6db7ab418013c9883a154a797f2685cf7d62e2b3:log:176', 'hash': '0xdd44916e21ac893f5cb03ccf6db7ab418013c9883a154a797f2685cf7d62e2b3', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x44db41f4160a7624a02e3786ab862a5e0753c583', 'value': 15436.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0344d605c9cc6b8a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:05:13.000Z'}}, {'blockNum': '0x7f8e4e', 'uniqueId': '0x413274f9e52fb0ec036a92db88ff31f3c285e237d4534d7880c6fcde2ebac41a:log:178', 'hash': '0x413274f9e52fb0ec036a92db88ff31f3c285e237d4534d7880c6fcde2ebac41a', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0xbc453633c72341864bfedcf8fce3ffd00b526e35', 'value': 1720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5d3dcb870ca7e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:05:13.000Z'}}, {'blockNum': '0x7f8e53', 'uniqueId': '0x377050deeb2fbd868a81d495478b2c1df4162c1c84b0e8063146d11d25422deb:log:36', 'hash': '0x377050deeb2fbd868a81d495478b2c1df4162c1c84b0e8063146d11d25422deb', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xad218d93af468d55750fa4a53b9e35174324e90b', 'value': 5633.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013167921b45adac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:06:14.000Z'}}, {'blockNum': '0x7f8e54', 'uniqueId': '0xb80466fdcf2101c04b8c61dd1f81fe93ae96a3ad6a5581bf2e181a47759a96c3:log:33', 'hash': '0xb80466fdcf2101c04b8c61dd1f81fe93ae96a3ad6a5581bf2e181a47759a96c3', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xe3b0cad30e3abc0076571bd853933cc2e8db89ba', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:06:22.000Z'}}, {'blockNum': '0x7f8e60', 'uniqueId': '0xfd0085821b02d9aab88d98e561377a2ab0ffe2955e52e9f8d14d5e4dd272ecd5:log:55', 'hash': '0xfd0085821b02d9aab88d98e561377a2ab0ffe2955e52e9f8d14d5e4dd272ecd5', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x4de28e5191da70cda00aba5434c682e10ea65344', 'value': 50570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ab567babca82fe80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:08:03.000Z'}}, {'blockNum': '0x7f8e63', 'uniqueId': '0x4f19472761043f2046ae0a3a99c6c837de05295840dd80d5f29d6ee7557d6621:log:41', 'hash': '0x4f19472761043f2046ae0a3a99c6c837de05295840dd80d5f29d6ee7557d6621', 'from': '0x465a85e9ee6d900d58bc91f497af42c56db412b6', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 13492.7186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02db7115ef3689e88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:08:27.000Z'}}, {'blockNum': '0x7f8e64', 'uniqueId': '0x72052d4f10267409a14b06e1d518488e5bcf50b3446eab6c6b8e80bbacd0f0b5:log:36', 'hash': '0x72052d4f10267409a14b06e1d518488e5bcf50b3446eab6c6b8e80bbacd0f0b5', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x90889616322936d77c9fa1e1441e23754fbba1f7', 'value': 124266.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1a507ebb186539900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:08:35.000Z'}}, {'blockNum': '0x7f8e6a', 'uniqueId': '0xcd073a8d951f50ec6d9c37e6438cfbddfa4bbdcac41b29248d4c861a46cff79d:log:133', 'hash': '0xcd073a8d951f50ec6d9c37e6438cfbddfa4bbdcac41b29248d4c861a46cff79d', 'from': '0xad218d93af468d55750fa4a53b9e35174324e90b', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 5633.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013167921b45adac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:09:24.000Z'}}, {'blockNum': '0x7f8e6d', 'uniqueId': '0x446367817c81de54c6b6c503303ddda4050cad65d4ece774aabd4a0e2c5b976d:log:112', 'hash': '0x446367817c81de54c6b6c503303ddda4050cad65d4ece774aabd4a0e2c5b976d', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x39739969b3a319411f86ee3c3d2e574ca3cd06d3', 'value': 63720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7e44a39cf892a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:10:18.000Z'}}, {'blockNum': '0x7f8e75', 'uniqueId': '0xc0da84df4709f0303878f500555ce5b779d6694d1760476b9908d058496aead8:log:9', 'hash': '0xc0da84df4709f0303878f500555ce5b779d6694d1760476b9908d058496aead8', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x0d8f450c1c8c4bb9a1256cc33b52835cb75cab1f', 'value': 9981.8336486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021d1dc4f16164547000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:12:37.000Z'}}, {'blockNum': '0x7f8e76', 'uniqueId': '0x210da5d301d2cd9e66193beb5ef787e046dd8e5daada759b8c0f2d4c3ea55e6c:log:6', 'hash': '0x210da5d301d2cd9e66193beb5ef787e046dd8e5daada759b8c0f2d4c3ea55e6c', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x495393ade845112906c0fae8f913336937ce4d7c', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01bc85dc2a89bb200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:12:58.000Z'}}, {'blockNum': '0x7f8e76', 'uniqueId': '0x8021ef42f254e4ce560bced7cda9f548ad691289fbf8e65de6cad215d05d5b0b:log:96', 'hash': '0x8021ef42f254e4ce560bced7cda9f548ad691289fbf8e65de6cad215d05d5b0b', 'from': '0x90889616322936d77c9fa1e1441e23754fbba1f7', 'to': '0xa11618bba2eb61cf30c9bf360de802298dfdf2b8', 'value': 74559.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc9e5a3750988f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:12:58.000Z'}}, {'blockNum': '0x7f8e76', 'uniqueId': '0x76ff75c4d94387e98e7bdaa6e238e3ee2cebccdde47db7d185c455f3e9fc0f7a:log:126', 'hash': '0x76ff75c4d94387e98e7bdaa6e238e3ee2cebccdde47db7d185c455f3e9fc0f7a', 'from': '0xc830e9c43ad588410b7de69a41ffe4277935c4b7', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:12:58.000Z'}}, {'blockNum': '0x7f8e7c', 'uniqueId': '0xca31ea1bf9fe11d9c07e8199dac38549994bb10d0bfdaec28d7651e80c892218:log:0', 'hash': '0xca31ea1bf9fe11d9c07e8199dac38549994bb10d0bfdaec28d7651e80c892218', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x025d7ead8bb598d97db6279495e72e8984bc803c', 'value': 2184.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x766f7f35b2caab0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:13:42.000Z'}}, {'blockNum': '0x7f8e7e', 'uniqueId': '0xc9927cd74fa2b55baef8b2b2395a13b7e94cda83e019530ae2713e167ceac338:log:38', 'hash': '0xc9927cd74fa2b55baef8b2b2395a13b7e94cda83e019530ae2713e167ceac338', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xf33aceca27249d63f0ea21fb1065b33b3a138ea9', 'value': 13292.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02d09c52b717658c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:14:04.000Z'}}, {'blockNum': '0x7f8e7f', 'uniqueId': '0x8bea1ef3c130745139b534ab87d3ad062e15b3ea84b3abfed0e18d552d92d5c3:log:37', 'hash': '0x8bea1ef3c130745139b534ab87d3ad062e15b3ea84b3abfed0e18d552d92d5c3', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xa93ba4aab70e1052e0a2fe02a0c813e16dac9237', 'value': 10590, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023e15c5dbc67ab80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:14:13.000Z'}}, {'blockNum': '0x7f8e82', 'uniqueId': '0x5688f69f937b09e968b9e1a165e61c078d599167d9d2d9efd2d5d702b06a3dac:log:109', 'hash': '0x5688f69f937b09e968b9e1a165e61c078d599167d9d2d9efd2d5d702b06a3dac', 'from': '0xc03d276a7dc8223256966e0bc3d7cc637ff311c0', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 18178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d96e6d40d40ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:15:21.000Z'}}, {'blockNum': '0x7f8e87', 'uniqueId': '0xa616f740f7a81b337d098ecc9d92bc521fc2d369b366be81cf30d60a1e4d5b6e:log:64', 'hash': '0xa616f740f7a81b337d098ecc9d92bc521fc2d369b366be81cf30d60a1e4d5b6e', 'from': '0x44db41f4160a7624a02e3786ab862a5e0753c583', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 15436.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0344d605c9cc6b8a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:16:01.000Z'}}, {'blockNum': '0x7f8e87', 'uniqueId': '0xcc28d0305a458f57fbdf2aa955e292f1da7428c75e535614bb7c1311428283d9:log:114', 'hash': '0xcc28d0305a458f57fbdf2aa955e292f1da7428c75e535614bb7c1311428283d9', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3221.4367959586816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xaea26a920551c1d346', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:16:01.000Z'}}, {'blockNum': '0x7f8e87', 'uniqueId': '0xcc28d0305a458f57fbdf2aa955e292f1da7428c75e535614bb7c1311428283d9:log:118', 'hash': '0xcc28d0305a458f57fbdf2aa955e292f1da7428c75e535614bb7c1311428283d9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3221.4367959586816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xaea26a920551c1d346', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:16:01.000Z'}}, {'blockNum': '0x7f8e87', 'uniqueId': '0xcc28d0305a458f57fbdf2aa955e292f1da7428c75e535614bb7c1311428283d9:log:119', 'hash': '0xcc28d0305a458f57fbdf2aa955e292f1da7428c75e535614bb7c1311428283d9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3221.486870289162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xaea31c785bea680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:16:01.000Z'}}, {'blockNum': '0x7f8e87', 'uniqueId': '0xcc28d0305a458f57fbdf2aa955e292f1da7428c75e535614bb7c1311428283d9:log:120', 'hash': '0xcc28d0305a458f57fbdf2aa955e292f1da7428c75e535614bb7c1311428283d9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3221.486870289162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xaea31c785bea680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:16:01.000Z'}}, {'blockNum': '0x7f8e89', 'uniqueId': '0x77c9e9d73b9295a32b7b8a2faae5abdf1ef33045b8692697efe70b936c1754ab:log:23', 'hash': '0x77c9e9d73b9295a32b7b8a2faae5abdf1ef33045b8692697efe70b936c1754ab', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x29040d1b2c83cf5d55c8c6150a6d7b41fc4c2eff', 'value': 770.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29c79c6ea8098e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:16:14.000Z'}}, {'blockNum': '0x7f8e8c', 'uniqueId': '0x806a78e27f8817f23e1e99e5e4c9a0ea8fee1e38cba8b72cf3e5b790605eba33:log:105', 'hash': '0x806a78e27f8817f23e1e99e5e4c9a0ea8fee1e38cba8b72cf3e5b790605eba33', 'from': '0x39739969b3a319411f86ee3c3d2e574ca3cd06d3', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 63740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7f5a31e301a6700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:16:43.000Z'}}, {'blockNum': '0x7f8e90', 'uniqueId': '0x69213b3c367b51bc220d3571dc286b581ab798fb53490607f11101c15146bafe:log:71', 'hash': '0x69213b3c367b51bc220d3571dc286b581ab798fb53490607f11101c15146bafe', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x90177fbfce55064213a4876d720e9b81e4e0fb82', 'value': 28008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05ee5114b74194a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:18:10.000Z'}}, {'blockNum': '0x7f8e9e', 'uniqueId': '0xdc9d568eb04af78383e898cae2fe8c4154d7494165d1f904646e478b2a1163c3:log:1', 'hash': '0xdc9d568eb04af78383e898cae2fe8c4154d7494165d1f904646e478b2a1163c3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb4c70ef7839e357b5db9fc89b891af807a39cb34', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:20:43.000Z'}}, {'blockNum': '0x7f8e9e', 'uniqueId': '0x060a224ec6d87821e6a04e2ed8ecd0f74b6d0d6b214d1304d9de042b9edea9a9:log:55', 'hash': '0x060a224ec6d87821e6a04e2ed8ecd0f74b6d0d6b214d1304d9de042b9edea9a9', 'from': '0x4de28e5191da70cda00aba5434c682e10ea65344', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 50570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ab567babca82fe80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:20:43.000Z'}}, {'blockNum': '0x7f8e9e', 'uniqueId': '0xb686918b804584e074973da792fc7ca6d19d9a889bf787cd6e555e53c4bcc9bf:log:154', 'hash': '0xb686918b804584e074973da792fc7ca6d19d9a889bf787cd6e555e53c4bcc9bf', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x43921736504d0387284701c9bfde41a69b1438b7', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:20:43.000Z'}}, {'blockNum': '0x7f8ea7', 'uniqueId': '0x14b2f757103d7ea93df532300de1a712988013ce868a2bba7fb95a6d0736eb3c:log:18', 'hash': '0x14b2f757103d7ea93df532300de1a712988013ce868a2bba7fb95a6d0736eb3c', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0xeac1566ee3ee0684eb72b2e2b52d693db7475c27', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:22:32.000Z'}}, {'blockNum': '0x7f8ea7', 'uniqueId': '0x29f79e5c2af0a8157215345fc9aef7dd6cf130d2ef2c20ada3f7866c4be237fa:log:21', 'hash': '0x29f79e5c2af0a8157215345fc9aef7dd6cf130d2ef2c20ada3f7866c4be237fa', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xcb57c543235c242ae481bb7858a26a2f4dc48a63', 'value': 7941.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01ae869d7e8a4d440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:22:32.000Z'}}, {'blockNum': '0x7f8ea7', 'uniqueId': '0xf8de2888b7dcb520d9036fff6328e49f30bf976008c98a3cee1cd7fc42b83267:log:22', 'hash': '0xf8de2888b7dcb520d9036fff6328e49f30bf976008c98a3cee1cd7fc42b83267', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x2c1f165a2b1f13f69e5d9c0857b5d43115f53f90', 'value': 37304.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07e647ef6e49c7920000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:22:32.000Z'}}, {'blockNum': '0x7f8ead', 'uniqueId': '0xd89a489502204ee066fdfcc93c6d7396cb2fc90e2b9cc6045705b3eb0701adda:log:100', 'hash': '0xd89a489502204ee066fdfcc93c6d7396cb2fc90e2b9cc6045705b3eb0701adda', 'from': '0x90889616322936d77c9fa1e1441e23754fbba1f7', 'to': '0x244aa45418f87737f336be24db5b5147a1a9b0c1', 'value': 24853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x054348a90f299f340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:23:41.000Z'}}, {'blockNum': '0x7f8eb1', 'uniqueId': '0x29456dfbf9d3098673ff443561d4aceb884a70a981ddf25627ff203cb8953c6d:log:0', 'hash': '0x29456dfbf9d3098673ff443561d4aceb884a70a981ddf25627ff203cb8953c6d', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xc98491302f3419be8ad5f8ab2d96a6ed84136399', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021c798b60ad14880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:24:24.000Z'}}, {'blockNum': '0x7f8eb8', 'uniqueId': '0x96e7d41cc4d799a56a95ba253c1d75fa27ab16bad20512fd15385a4cbac5861c:log:154', 'hash': '0x96e7d41cc4d799a56a95ba253c1d75fa27ab16bad20512fd15385a4cbac5861c', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xe7b10b39f95723465ea407bfb95b201d086197d6', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:26:31.000Z'}}, {'blockNum': '0x7f8eb9', 'uniqueId': '0x1a47d5cd42916d49c778e5f0d516e4e586ad7f35549b9bf7dff7605d8df1c137:log:24', 'hash': '0x1a47d5cd42916d49c778e5f0d516e4e586ad7f35549b9bf7dff7605d8df1c137', 'from': '0xf33aceca27249d63f0ea21fb1065b33b3a138ea9', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 13292.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02d09c52b717658c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:26:48.000Z'}}, {'blockNum': '0x7f8eb9', 'uniqueId': '0xf571abec9556a69fdaa484a7b3d96ee65ffc9336027e2ca6ff3fd05a4decc71d:log:44', 'hash': '0xf571abec9556a69fdaa484a7b3d96ee65ffc9336027e2ca6ff3fd05a4decc71d', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x8b13dfd272bddd839958de8fe8c6f0ccd5083b4a', 'value': 3347.921118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb57dbd26c652a3e000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:26:48.000Z'}}, {'blockNum': '0x7f8eb9', 'uniqueId': '0x5706136a6551d9c51149bc41c58ea9dc222fb4d6310491ea3f4c97408b6cea92:log:45', 'hash': '0x5706136a6551d9c51149bc41c58ea9dc222fb4d6310491ea3f4c97408b6cea92', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x38c5f88aa68d03e45c6777d21f6f67a931d394b4', 'value': 2070, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x70370550ab82980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:26:48.000Z'}}, {'blockNum': '0x7f8eb9', 'uniqueId': '0xfc49697b49f724fe34e1e683ba19a4ca8e2f0d4226d03131b6a4c22cf96dbfe4:log:46', 'hash': '0xfc49697b49f724fe34e1e683ba19a4ca8e2f0d4226d03131b6a4c22cf96dbfe4', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0xde64c418836541665213a8d653a03be2ecbbcde4', 'value': 19184.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x041003f8a80b1f9a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:26:48.000Z'}}, {'blockNum': '0x7f8ec5', 'uniqueId': '0xdc19d4b448d4f1256c3d2caeb34787516b3758f47736d3f1d681410df4feec41:log:141', 'hash': '0xdc19d4b448d4f1256c3d2caeb34787516b3758f47736d3f1d681410df4feec41', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x8c6f1b513fe727e2a44e36899e96e3e81952a987', 'value': 810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2be902146fa2680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:29:58.000Z'}}, {'blockNum': '0x7f8ecc', 'uniqueId': '0x69be5155a2f4e072c43f0b87bf58dc03f7f438ac4779020f6330c3eb4a57d464:log:39', 'hash': '0x69be5155a2f4e072c43f0b87bf58dc03f7f438ac4779020f6330c3eb4a57d464', 'from': '0x90177fbfce55064213a4876d720e9b81e4e0fb82', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 28008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05ee5114b74194a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:31:14.000Z'}}, {'blockNum': '0x7f8ed0', 'uniqueId': '0x18e3266a1e3af9973c610608e82be47591492587c8fa5b83b2728fc1879b1034:log:103', 'hash': '0x18e3266a1e3af9973c610608e82be47591492587c8fa5b83b2728fc1879b1034', 'from': '0xcb57c543235c242ae481bb7858a26a2f4dc48a63', 'to': '0x29040d1b2c83cf5d55c8c6150a6d7b41fc4c2eff', 'value': 10034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021ff1b90d96ed880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:32:48.000Z'}}, {'blockNum': '0x7f8ed6', 'uniqueId': '0xcdb11ee8e31b9ff02f958e444660b860501fc2abdf0d4d9cf0ea3a4b348dc29b:log:40', 'hash': '0xcdb11ee8e31b9ff02f958e444660b860501fc2abdf0d4d9cf0ea3a4b348dc29b', 'from': '0x244aa45418f87737f336be24db5b5147a1a9b0c1', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 24853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x054348a90f299f340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:34:06.000Z'}}, {'blockNum': '0x7f8ed6', 'uniqueId': '0x44f1e84ff90f7a262377378e3a277eb6dd8d3c6da09edbf79d79678e0baae298:log:76', 'hash': '0x44f1e84ff90f7a262377378e3a277eb6dd8d3c6da09edbf79d79678e0baae298', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x200f7e8c628d18b096da6b803bfd65fc41c0acbe', 'value': 1800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6194049f30f7200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:34:06.000Z'}}, {'blockNum': '0x7f8ed7', 'uniqueId': '0x11b774b55c84c1138038a1f26ca99ffb34b474a27471a63ff6c4566c914d51d9:log:33', 'hash': '0x11b774b55c84c1138038a1f26ca99ffb34b474a27471a63ff6c4566c914d51d9', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x8cd9f39e60dadd174f5cdfe67f539e15f913b877', 'value': 167093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x23622132bb5809b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:34:09.000Z'}}, {'blockNum': '0x7f8ed8', 'uniqueId': '0xb092d1c19a0368675d8dcf8e981e0f648abe1a2d6e04f7422e36777ef962c0b8:log:78', 'hash': '0xb092d1c19a0368675d8dcf8e981e0f648abe1a2d6e04f7422e36777ef962c0b8', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xea96882b097ff307de8b303763f94db54a37a2ac', 'value': 2490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x86fbb10f6a22a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:34:54.000Z'}}, {'blockNum': '0x7f8eda', 'uniqueId': '0x53c2b667aaea64e3ddff0c78cf1e1bc53238705c37c2c2c87d73fc845ce7f78f:log:51', 'hash': '0x53c2b667aaea64e3ddff0c78cf1e1bc53238705c37c2c2c87d73fc845ce7f78f', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xe0660b2e4b8a89b7123f86c3e2fd34ba1e1354b4', 'value': 10055.12767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022116ed9d83ef356000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:35:14.000Z'}}, {'blockNum': '0x7f8edc', 'uniqueId': '0xae2dd53108b55d1cb4571ede9269ca3eda118f2f4877c2043ce375c8d0942d66:log:149', 'hash': '0xae2dd53108b55d1cb4571ede9269ca3eda118f2f4877c2043ce375c8d0942d66', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x68c4bd22edf70c875b213fa53a9d641474daf440', 'value': 18690.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03f532a133138ddc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:36:11.000Z'}}, {'blockNum': '0x7f8edd', 'uniqueId': '0xf8f5463757772c9998aa1448960e97154a51368cab0c906c0777e7d95cea6948:log:43', 'hash': '0xf8f5463757772c9998aa1448960e97154a51368cab0c906c0777e7d95cea6948', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x3c40f19ba92d812ae356ffc39ea41be73f05522b', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:36:14.000Z'}}, {'blockNum': '0x7f8edf', 'uniqueId': '0xff96dacb50da79a5354c6609c2a21b33c75f2bdfeb2db35b3b1e8679f9f89500:log:66', 'hash': '0xff96dacb50da79a5354c6609c2a21b33c75f2bdfeb2db35b3b1e8679f9f89500', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb4879f697d3885064153ab52c5ce066f645568b9', 'value': 64545.7495908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dab08377acb74caa000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:37:00.000Z'}}, {'blockNum': '0x7f8ee1', 'uniqueId': '0x23099f850eb023611df7c8531ee85046b59cf4b6bc64016ce6d7ded627bc26d2:log:32', 'hash': '0x23099f850eb023611df7c8531ee85046b59cf4b6bc64016ce6d7ded627bc26d2', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x447e62712adde849353f67595e106cd9df4846a1', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:37:57.000Z'}}, {'blockNum': '0x7f8ee1', 'uniqueId': '0x690bee1445cafd216be3831e075679ea24f53bdc2b8fcaff70828a4bf61161a4:log:34', 'hash': '0x690bee1445cafd216be3831e075679ea24f53bdc2b8fcaff70828a4bf61161a4', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x8d1a12031c9974081f99759a3a0874a6a04f5006', 'value': 10153.1972346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022667eab2ec9b6e9000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:37:57.000Z'}}, {'blockNum': '0x7f8ee1', 'uniqueId': '0x9ee72c16e01c054a7bf7d647cca9d29448adba7495a03325525e48341b10a76c:log:107', 'hash': '0x9ee72c16e01c054a7bf7d647cca9d29448adba7495a03325525e48341b10a76c', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x6558669224133ab7254ca16b44ba065048c6d7e7', 'value': 6101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014abc62278442340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:37:57.000Z'}}, {'blockNum': '0x7f8ee1', 'uniqueId': '0xcda9c5ef4b6dd3532a29070df973fb34a97d907a70e081fe578630755924ed1a:log:108', 'hash': '0xcda9c5ef4b6dd3532a29070df973fb34a97d907a70e081fe578630755924ed1a', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xab0c9a5108d2611b204ee4faee6454f5afb7acae', 'value': 46455.9064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09d6613620dbebe60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:37:57.000Z'}}, {'blockNum': '0x7f8ee1', 'uniqueId': '0x0b3cedd445d781c91a800f5973209ca7ea1887c437987144a07e27d9a8223f87:log:125', 'hash': '0x0b3cedd445d781c91a800f5973209ca7ea1887c437987144a07e27d9a8223f87', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 51220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad8a44aa0cf33d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:37:57.000Z'}}, {'blockNum': '0x7f8ee3', 'uniqueId': '0x4d06dc877e8ea2ced19bd847a1c5d6afddd2bc62166b9aabe79c2bcf2ca580e4:log:2', 'hash': '0x4d06dc877e8ea2ced19bd847a1c5d6afddd2bc62166b9aabe79c2bcf2ca580e4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 63055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5a37e9044abfdc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:38:51.000Z'}}, {'blockNum': '0x7f8ee3', 'uniqueId': '0x1d5b02f4e9d7ff039642b3eddea5413f6c250d50021467a1138f579cea6c5aa3:log:92', 'hash': '0x1d5b02f4e9d7ff039642b3eddea5413f6c250d50021467a1138f579cea6c5aa3', 'from': '0xde64c418836541665213a8d653a03be2ecbbcde4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 19184.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x041003f8a80b1f9a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:38:51.000Z'}}, {'blockNum': '0x7f8ee3', 'uniqueId': '0x978c7c1c679b80a6bd9c8060221951ba8ecab9fb56eef67956dc4e4684ce5f0f:log:95', 'hash': '0x978c7c1c679b80a6bd9c8060221951ba8ecab9fb56eef67956dc4e4684ce5f0f', 'from': '0x2c1f165a2b1f13f69e5d9c0857b5d43115f53f90', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 37304.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07e647ef6e49c7920000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:38:51.000Z'}}, {'blockNum': '0x7f8ee6', 'uniqueId': '0xe75d12f5f8a7cfd8e358ad7dedaa9be53a1ce50a29465783c5b3be11c8030f88:log:8', 'hash': '0xe75d12f5f8a7cfd8e358ad7dedaa9be53a1ce50a29465783c5b3be11c8030f88', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xffb6679a4d8f4379d4935dc7d4fc65dbe384959d', 'value': 10164.015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0226fe0b1f3d95f18000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:39:24.000Z'}}, {'blockNum': '0x7f8ee9', 'uniqueId': '0xbf3912fa68788889a90567aabed1394440f9621395b105e71e9c491078c15e94:log:87', 'hash': '0xbf3912fa68788889a90567aabed1394440f9621395b105e71e9c491078c15e94', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x3c4da4d56a485b5073aac3ea2525a7d3bb50953a', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:40:18.000Z'}}, {'blockNum': '0x7f8ee9', 'uniqueId': '0xa51f69bcc43213eecb25159a2928cec5de61a272122aeaac8be44fae94825467:log:90', 'hash': '0xa51f69bcc43213eecb25159a2928cec5de61a272122aeaac8be44fae94825467', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xa6660b55c30e12a713583399b622e3313b79dd34', 'value': 170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x093739534d28680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:40:18.000Z'}}, {'blockNum': '0x7f8eee', 'uniqueId': '0xa58f406c1ae83f4161797be40e6baeeaac2888666dcff295e1157379e9846ff2:log:21', 'hash': '0xa58f406c1ae83f4161797be40e6baeeaac2888666dcff295e1157379e9846ff2', 'from': '0x29040d1b2c83cf5d55c8c6150a6d7b41fc4c2eff', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 10804.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0249b9557c3ef7160000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:41:01.000Z'}}, {'blockNum': '0x7f8ef0', 'uniqueId': '0xaee11c14e14a1797e6523ff1b9c6885421779322e8577b2e9bca03d03cb9e31f:log:1', 'hash': '0xaee11c14e14a1797e6523ff1b9c6885421779322e8577b2e9bca03d03cb9e31f', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb22ab566a9c4066e9a5156d1c5f64583c68b0b6d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:41:14.000Z'}}, {'blockNum': '0x7f8ef2', 'uniqueId': '0xba396902f237bfb65d30a9fec8ab0cf1d663aba8235317ff5699ea7532fdfe9b:log:141', 'hash': '0xba396902f237bfb65d30a9fec8ab0cf1d663aba8235317ff5699ea7532fdfe9b', 'from': '0x8cd9f39e60dadd174f5cdfe67f539e15f913b877', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 167093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x23622132bb5809b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:41:49.000Z'}}, {'blockNum': '0x7f8ef3', 'uniqueId': '0xb5c62dac7004583f5cb67e99a6975691b259e6fd8d2063f42509cc2deb4d11b1:log:36', 'hash': '0xb5c62dac7004583f5cb67e99a6975691b259e6fd8d2063f42509cc2deb4d11b1', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x564539cabe5e79c7e636400b17ee558b5025e32c', 'value': 1949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69a7cef5c164540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:41:55.000Z'}}, {'blockNum': '0x7f8ef4', 'uniqueId': '0x3efd3def53349dea3eea2e380608b0b204af186c84c967ce109bda1c63334188:log:29', 'hash': '0x3efd3def53349dea3eea2e380608b0b204af186c84c967ce109bda1c63334188', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x4acfbadded1081120299988e3e38c8be24201c90', 'value': 7517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01977f54b93a23540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:42:09.000Z'}}, {'blockNum': '0x7f8ef6', 'uniqueId': '0xed24cb5767a7710ec19ba4dd932e14d1a1bc0c5bc3e3a9624dba334b8aed51a8:log:2', 'hash': '0xed24cb5767a7710ec19ba4dd932e14d1a1bc0c5bc3e3a9624dba334b8aed51a8', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0x1b36013692f472a3743f9e6bf099fe2061042526', 'value': 7196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0186188fa1f53ef00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:42:24.000Z'}}, {'blockNum': '0x7f8ef7', 'uniqueId': '0x13e2de574046088c0b728816273dbc475469443a2056cd94f24eedd0201096f6:log:37', 'hash': '0x13e2de574046088c0b728816273dbc475469443a2056cd94f24eedd0201096f6', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0xa7ad5e74025c0278e03ff42d50007c58f4ac4a60', 'value': 9585.9282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0207a77a3d79c7a88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:42:26.000Z'}}, {'blockNum': '0x7f8ef9', 'uniqueId': '0xf2e2423743ed85d3dd27acec78f6dfe28819eabe1f7c7af6fdf501b42fddacd6:log:125', 'hash': '0xf2e2423743ed85d3dd27acec78f6dfe28819eabe1f7c7af6fdf501b42fddacd6', 'from': '0xea96882b097ff307de8b303763f94db54a37a2ac', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 2490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x86fbb10f6a22a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:42:49.000Z'}}, {'blockNum': '0x7f8f02', 'uniqueId': '0x1ce4a16ae0ece8fe2bd21a581c116e5a9e03929682d4de8def584d6366dce730:log:103', 'hash': '0x1ce4a16ae0ece8fe2bd21a581c116e5a9e03929682d4de8def584d6366dce730', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x051e2e63fcbb9a29991b3e9dcd6dc052e23e5877', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:44:33.000Z'}}, {'blockNum': '0x7f8f08', 'uniqueId': '0x7f5e0bfdf3644754b6b9cdaf0a08beffdb173f6a6b5007a7620e7b47c60840cc:log:78', 'hash': '0x7f5e0bfdf3644754b6b9cdaf0a08beffdb173f6a6b5007a7620e7b47c60840cc', 'from': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 51220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad8a44aa0cf33d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:46:07.000Z'}}, {'blockNum': '0x7f8f0b', 'uniqueId': '0xf86e74b617f637d6547c95eca39555d901f52f4445028b4b7af6d9e2e62dfd69:log:61', 'hash': '0xf86e74b617f637d6547c95eca39555d901f52f4445028b4b7af6d9e2e62dfd69', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 63055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5a37e9044abfdc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:47:01.000Z'}}, {'blockNum': '0x7f8f0b', 'uniqueId': '0x79062309ff50da767c4cfe015848d5badb96b6e8e486ca43263d7a0a740a16bf:log:99', 'hash': '0x79062309ff50da767c4cfe015848d5badb96b6e8e486ca43263d7a0a740a16bf', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xeec4af6136f293f4972c860514c48b136b6735f3', 'value': 19765.981789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x042f8419e06f8916d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:47:01.000Z'}}, {'blockNum': '0x7f8f0b', 'uniqueId': '0xd7346cb9557787a7be40232aa12537ff2532fbb22fe80ea071caebeb3e8b29d8:log:100', 'hash': '0xd7346cb9557787a7be40232aa12537ff2532fbb22fe80ea071caebeb3e8b29d8', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x496dc132edc545cf7c35e14275aebb5c2a576058', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x79f905c6fd34e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:47:01.000Z'}}, {'blockNum': '0x7f8f10', 'uniqueId': '0x5dee966ccd94f4dd7f9f7fd7effda797d1860b13a6034e6eb7b19766b2e71ea7:log:211', 'hash': '0x5dee966ccd94f4dd7f9f7fd7effda797d1860b13a6034e6eb7b19766b2e71ea7', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xd0903d2a30df5d26f27eadef17f446eb80eb6ee1', 'value': 7030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x017d18d92976b4180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:48:28.000Z'}}, {'blockNum': '0x7f8f11', 'uniqueId': '0x74b61f4763cf051efd8d542f3fde65ccdcf75e7ffcbbdb94bf3db6b792e327fc:log:39', 'hash': '0x74b61f4763cf051efd8d542f3fde65ccdcf75e7ffcbbdb94bf3db6b792e327fc', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x1072fb90daee344f79622604cb43e3630b79256b', 'value': 66449.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0e123a1e3833b2c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:48:38.000Z'}}, {'blockNum': '0x7f8f13', 'uniqueId': '0xe9a7501b21b3483ded49848119d228ca5e7e6e9e6bfc91a10b21040519178abc:log:125', 'hash': '0xe9a7501b21b3483ded49848119d228ca5e7e6e9e6bfc91a10b21040519178abc', 'from': '0xa11618bba2eb61cf30c9bf360de802298dfdf2b8', 'to': '0x0183d57b4f600029127325d5c7d864845ce6d5bf', 'value': 48856.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a58834eaf7ca98c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:49:31.000Z'}}, {'blockNum': '0x7f8f15', 'uniqueId': '0xbe9bbb18063d976abeebdd36fc262cf3a24c8881ac091ae8fca0406efecb64f2:log:39', 'hash': '0xbe9bbb18063d976abeebdd36fc262cf3a24c8881ac091ae8fca0406efecb64f2', 'from': '0x68c4bd22edf70c875b213fa53a9d641474daf440', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 18690.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03f532a133138ddc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:49:53.000Z'}}, {'blockNum': '0x7f8f16', 'uniqueId': '0x6848a9fac5d813378d838fe10da9e0fadfb3d68f31ea71958236f683a472da6d:log:212', 'hash': '0x6848a9fac5d813378d838fe10da9e0fadfb3d68f31ea71958236f683a472da6d', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xda26afcf76d5dc69a85b1c246ce4a68c6f7ac493', 'value': 2757.578471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x957d16c118fbd17000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:49:55.000Z'}}, {'blockNum': '0x7f8f17', 'uniqueId': '0xbc54ea37e799a76b8749f0f280360e67e8993325d72a572f68450ac3e6344c27:log:21', 'hash': '0xbc54ea37e799a76b8749f0f280360e67e8993325d72a572f68450ac3e6344c27', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 50294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa67175c2f7b8180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:50:34.000Z'}}, {'blockNum': '0x7f8f1c', 'uniqueId': '0xb4eee30a58156e9ba12878904b5d794b6e17e9bf1e94334a57791edd54bdbbc3:log:88', 'hash': '0xb4eee30a58156e9ba12878904b5d794b6e17e9bf1e94334a57791edd54bdbbc3', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x8a467600cd4fa52cf19c1f02194496928b3f6869', 'value': 2490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x86fbb10f6a22a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:52:14.000Z'}}, {'blockNum': '0x7f8f1c', 'uniqueId': '0x0f3eda827e5584101d730ecb1309013f55013bd715365cf75d9a26535719bda5:log:89', 'hash': '0x0f3eda827e5584101d730ecb1309013f55013bd715365cf75d9a26535719bda5', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x52546c08232d8916da6058cf307e67d35542326d', 'value': 5090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0113edf0a00632480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:52:14.000Z'}}, {'blockNum': '0x7f8f1c', 'uniqueId': '0xeee70baa50a12195f69c58c67c74235c0270b99a29095623d2f4db4c2b6ea3de:log:152', 'hash': '0xeee70baa50a12195f69c58c67c74235c0270b99a29095623d2f4db4c2b6ea3de', 'from': '0xab0c9a5108d2611b204ee4faee6454f5afb7acae', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 46455.9064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09d6613620dbebe60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:52:14.000Z'}}, {'blockNum': '0x7f8f22', 'uniqueId': '0xabba932938df18a884c2b158f057b432958cf698ecae894141383f661495603d:log:77', 'hash': '0xabba932938df18a884c2b158f057b432958cf698ecae894141383f661495603d', 'from': '0xfd9785b1148c6550e065a189d702560c67950d54', 'to': '0xdd45837ce5a48627d4d8cd3c39a666bc06ec5342', 'value': 990.48730963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x35b1c5d048247eec00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:53:38.000Z'}}, {'blockNum': '0x7f8f25', 'uniqueId': '0xe389294eb4e1883ecbb70be438c69861260f558be99abb4d07551d009e817e47:log:79', 'hash': '0xe389294eb4e1883ecbb70be438c69861260f558be99abb4d07551d009e817e47', 'from': '0x8a467600cd4fa52cf19c1f02194496928b3f6869', 'to': '0x529dab7bad9ef1000c3c0d708878c83fc870f7ae', 'value': 3180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xac635d7fa34e300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:54:58.000Z'}}, {'blockNum': '0x7f8f25', 'uniqueId': '0xef14cacef40b353022d962c86c97b662169ab70d8440228b3bb14c3c545a5a14:log:137', 'hash': '0xef14cacef40b353022d962c86c97b662169ab70d8440228b3bb14c3c545a5a14', 'from': '0x3c4da4d56a485b5073aac3ea2525a7d3bb50953a', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 11940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x028744c9532b34100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:54:58.000Z'}}, {'blockNum': '0x7f8f28', 'uniqueId': '0xfc63b23c64ea1cc15abd91a30bc531f63849a301759d7a69eb1d481b16dc37ab:log:97', 'hash': '0xfc63b23c64ea1cc15abd91a30bc531f63849a301759d7a69eb1d481b16dc37ab', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x785a7a2ef239754c83068a8c79aebe0f49d99861', 'value': 3170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xabd8965c9ec4480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:55:44.000Z'}}, {'blockNum': '0x7f8f29', 'uniqueId': '0x0de42efc1f74ed9d7ee78c33fc404db747085a83d7e6eb4e2231541c468a1d92:log:10', 'hash': '0x0de42efc1f74ed9d7ee78c33fc404db747085a83d7e6eb4e2231541c468a1d92', 'from': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'to': '0x1253f302c4fed2ef94384f15c3cb20d1525e4456', 'value': 1517.03944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x523d26c50f81840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:56:26.000Z'}}, {'blockNum': '0x7f8f35', 'uniqueId': '0xa31027d13c4afddfa8ab722ddbbfed52e453ef78e05a33d4b545f6f5264a8c6e:log:116', 'hash': '0xa31027d13c4afddfa8ab722ddbbfed52e453ef78e05a33d4b545f6f5264a8c6e', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x5ca09cfc38388a47fb9408de4a64b9d23387927f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:58:02.000Z'}}, {'blockNum': '0x7f8f35', 'uniqueId': '0x90eb1fefdb1ba0febbc7a87ed962cddf32385a1e168a55471e649fd93674e35e:log:128', 'hash': '0x90eb1fefdb1ba0febbc7a87ed962cddf32385a1e168a55471e649fd93674e35e', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x3b5bd6d582664dd4b114a88905d461af85cbe4e2', 'value': 12789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b54b073cf956b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:58:02.000Z'}}, {'blockNum': '0x7f8f36', 'uniqueId': '0x797eacb405ef6ca0b6ea3a24acbaaee744099f007246511359548727d5795459:log:30', 'hash': '0x797eacb405ef6ca0b6ea3a24acbaaee744099f007246511359548727d5795459', 'from': '0xa7ad5e74025c0278e03ff42d50007c58f4ac4a60', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 15555.9282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x034b49dee70f61b08000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:58:28.000Z'}}, {'blockNum': '0x7f8f3d', 'uniqueId': '0x18b640bf16b9b96dd102fba476c4a85c7af67842a4a9cd7230a0825e7c2f6a86:log:238', 'hash': '0x18b640bf16b9b96dd102fba476c4a85c7af67842a4a9cd7230a0825e7c2f6a86', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 50294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa67175c2f7b8180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T05:59:36.000Z'}}, {'blockNum': '0x7f8f44', 'uniqueId': '0xacf05b89e2bccebe52a036967d2dcad6c118e209b23732321831d0db85d03a87:log:104', 'hash': '0xacf05b89e2bccebe52a036967d2dcad6c118e209b23732321831d0db85d03a87', 'from': '0xeec4af6136f293f4972c860514c48b136b6735f3', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 19765.981789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x042f8419e06f8916d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:00:12.000Z'}}, {'blockNum': '0x7f8f4a', 'uniqueId': '0x86f7298f9bfc42783335eb7ce00c663a1f083df4dfe85e381b5f4f22f8141c1b:log:143', 'hash': '0x86f7298f9bfc42783335eb7ce00c663a1f083df4dfe85e381b5f4f22f8141c1b', 'from': '0x1072fb90daee344f79622604cb43e3630b79256b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 66449.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0e123a1e3833b2c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:02:22.000Z'}}, {'blockNum': '0x7f8f4c', 'uniqueId': '0x8f75178ca7b4285a46bbea2f0e07aec85288db7a2ee8621e4cab1c3fbf976296:log:163', 'hash': '0x8f75178ca7b4285a46bbea2f0e07aec85288db7a2ee8621e4cab1c3fbf976296', 'from': '0x785a7a2ef239754c83068a8c79aebe0f49d99861', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 3940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd5967be4fc3f100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:02:42.000Z'}}, {'blockNum': '0x7f8f66', 'uniqueId': '0x21264e509d33f65053adb6ad736fc5e6b8116a7e229f093ab38803a99e865eb5:log:21', 'hash': '0x21264e509d33f65053adb6ad736fc5e6b8116a7e229f093ab38803a99e865eb5', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x88b31a360bb27ee242bbe7fc3bd46446b6ea574b', 'value': 770.1135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bf78c40388c9c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:08:20.000Z'}}, {'blockNum': '0x7f8f6e', 'uniqueId': '0x380fde0c509ef36f4aea8e930dd7992a30db388a096ed139954cc91a30f13cf1:log:6', 'hash': '0x380fde0c509ef36f4aea8e930dd7992a30db388a096ed139954cc91a30f13cf1', 'from': '0xdd45837ce5a48627d4d8cd3c39a666bc06ec5342', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 990.48730963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x35b1c5d048247eec00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:09:21.000Z'}}, {'blockNum': '0x7f8f6e', 'uniqueId': '0xebbf3ae3bb15f0212d2b3ddb864b86ba8aa207e8445b5aa4b044c65c75d07e89:log:77', 'hash': '0xebbf3ae3bb15f0212d2b3ddb864b86ba8aa207e8445b5aa4b044c65c75d07e89', 'from': '0x3b5bd6d582664dd4b114a88905d461af85cbe4e2', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 12789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b54b073cf956b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:09:21.000Z'}}, {'blockNum': '0x7f8f75', 'uniqueId': '0x37914f17f86cb7b56182212010a4b90600258c1fc5ba036dd10d44036d2b11ab:log:3', 'hash': '0x37914f17f86cb7b56182212010a4b90600258c1fc5ba036dd10d44036d2b11ab', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 32082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06cb2b303e4772080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:10:43.000Z'}}, {'blockNum': '0x7f8f76', 'uniqueId': '0xe77064b0c384110b102905f57fc49482cb9d770b532335cf2a5b6a729dada3e1:log:12', 'hash': '0xe77064b0c384110b102905f57fc49482cb9d770b532335cf2a5b6a729dada3e1', 'from': '0x814e058b2021edc4e8c6c372bb945bd21bd6548f', 'to': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'value': 97280.2688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x149992eda4a573a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:10:47.000Z'}}, {'blockNum': '0x7f8f76', 'uniqueId': '0xe77064b0c384110b102905f57fc49482cb9d770b532335cf2a5b6a729dada3e1:log:15', 'hash': '0xe77064b0c384110b102905f57fc49482cb9d770b532335cf2a5b6a729dada3e1', 'from': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'to': '0xb14232b0204b2f7bb6ba5aff59ef36030f7fe38b', 'value': 97280.2688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x149992eda4a573a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:10:47.000Z'}}, {'blockNum': '0x7f8f7d', 'uniqueId': '0x3ef7dc66e62b7cce2fcd966f6955d257841fa77caa540df843c7f2cc25840b8f:log:5', 'hash': '0x3ef7dc66e62b7cce2fcd966f6955d257841fa77caa540df843c7f2cc25840b8f', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x611c3554cc8423ba3c61183117064dabc1e94e39', 'value': 15968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0361ae07a7d9c7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:12:01.000Z'}}, {'blockNum': '0x7f8f7d', 'uniqueId': '0x9671a5becf61779dafe1e85a4c5964ce21d5ae32de988a8290f99d2ff2c6ccb4:log:129', 'hash': '0x9671a5becf61779dafe1e85a4c5964ce21d5ae32de988a8290f99d2ff2c6ccb4', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x53bae00fb2bb97d96705c139cdddcc7ad6a16131', 'value': 2310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7d39b0991870580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:12:01.000Z'}}, {'blockNum': '0x7f8f7e', 'uniqueId': '0x72e7e44a49d915a7050c44a18184dd92004a4350e1365a7a4072fc2d1332e932:log:56', 'hash': '0x72e7e44a49d915a7050c44a18184dd92004a4350e1365a7a4072fc2d1332e932', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xd7609720c2e9e8df6f7942823674cda1411bfa6f', 'value': 9751.1436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02109c4d406d4fbb0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:12:10.000Z'}}, {'blockNum': '0x7f8f8f', 'uniqueId': '0x959e3e9b411f3e7fe0b881a3bb59cb092a6e8113448e71abaabfac84cdb7e77e:log:44', 'hash': '0x959e3e9b411f3e7fe0b881a3bb59cb092a6e8113448e71abaabfac84cdb7e77e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xeaf79a436ff25ed35e20e723bac05925373e4780', 'value': 60028.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb62d5c57f746b68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:14:03.000Z'}}, {'blockNum': '0x7f8f91', 'uniqueId': '0xa2d3911b7a793cc958da2c2d1ae8aec3f20624e6b40e2664ae7109efa26d6d0a:log:107', 'hash': '0xa2d3911b7a793cc958da2c2d1ae8aec3f20624e6b40e2664ae7109efa26d6d0a', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x59e9b0f7b2bead05702cda98df3af057b358cb53', 'value': 10816.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x024a5d1781ba14b20000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:15:05.000Z'}}, {'blockNum': '0x7f8f91', 'uniqueId': '0xd9ce8a6b33f608b7c3e90e97907f2d8551422f33dbf9d7e075aa03f2793a9431:log:115', 'hash': '0xd9ce8a6b33f608b7c3e90e97907f2d8551422f33dbf9d7e075aa03f2793a9431', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x4f1479f4f7d3460bf0991d122647ab5bc368ed22', 'value': 72812.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6b276dc2bfaabe0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:15:05.000Z'}}, {'blockNum': '0x7f8f95', 'uniqueId': '0xfee318adb88885fb88279c144efb69c4b4da01e9324f813a994e0ee6bdec2e81:log:14', 'hash': '0xfee318adb88885fb88279c144efb69c4b4da01e9324f813a994e0ee6bdec2e81', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xe9a7c41550e68585272dc96649858846dafc9731', 'value': 1080.7458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3a965c6310375c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:15:53.000Z'}}, {'blockNum': '0x7f8f97', 'uniqueId': '0x57a02067d9966ab2b1ce699baffc5c908f4297906f53ab6320155a6a6f17ae1e:log:61', 'hash': '0x57a02067d9966ab2b1ce699baffc5c908f4297906f53ab6320155a6a6f17ae1e', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x4db0a9ea09ed27920c46d66dca984b730c15b57c', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:16:23.000Z'}}, {'blockNum': '0x7f8f99', 'uniqueId': '0xde02e52ccfcb1d64c156a5ab2bed8b45e43c2356a66901251e9e9e54f1f7279b:log:44', 'hash': '0xde02e52ccfcb1d64c156a5ab2bed8b45e43c2356a66901251e9e9e54f1f7279b', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 32082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06cb2b303e4772080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:16:57.000Z'}}, {'blockNum': '0x7f8fa0', 'uniqueId': '0x046e564ce1c6d2712df8d1ebaeeb4468b4b4344eb7f80b73df6b273eddfa9992:log:149', 'hash': '0x046e564ce1c6d2712df8d1ebaeeb4468b4b4344eb7f80b73df6b273eddfa9992', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0xcb8e85b34485a4dc33415760805f6464740c075b', 'value': 12570.0738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02a96cd121fea4948000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:18:46.000Z'}}, {'blockNum': '0x7f8fa4', 'uniqueId': '0x7e7040667407c1dd8ab15a932c750c4a668e4e4393662849958dd84febe767ea:log:49', 'hash': '0x7e7040667407c1dd8ab15a932c750c4a668e4e4393662849958dd84febe767ea', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x0df281702a3dca92f37eeb1b733ee83a8bea0542', 'value': 50000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968ee7929645868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:20:09.000Z'}}, {'blockNum': '0x7f8fa4', 'uniqueId': '0x2ba2257aabb182968ef19ea1dac41632352e5a6112bc3125b348659cb67152d3:log:64', 'hash': '0x2ba2257aabb182968ef19ea1dac41632352e5a6112bc3125b348659cb67152d3', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x37d0b89d28336b8ebb242394bc291d31d4da55b6', 'value': 8769.6978784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01db68019c8dd8cf0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:20:09.000Z'}}, {'blockNum': '0x7f8fa7', 'uniqueId': '0xedc3e9dacb78384838e659504ff2af2817d37072046156b1038da73c35f67c08:log:20', 'hash': '0xedc3e9dacb78384838e659504ff2af2817d37072046156b1038da73c35f67c08', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x180c8aea4285bd4b1cafdc9cd09fa7f1ccac7cbf', 'value': 10018.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021f2131444d418e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:22:13.000Z'}}, {'blockNum': '0x7f8fab', 'uniqueId': '0x83ea808954cb8ab23d8c777075932cd98b672b3eb3ccc3e690a99ea127019822:log:25', 'hash': '0x83ea808954cb8ab23d8c777075932cd98b672b3eb3ccc3e690a99ea127019822', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xb0ef87927da46a18cce11c330989a26b77ecb9c2', 'value': 4925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010afc1ade3b4ed40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:24:12.000Z'}}, {'blockNum': '0x7f8fb5', 'uniqueId': '0xaa40c0f2560635c93e41ab7a4442401d8947229b70e770d80084267a54c320e9:log:52', 'hash': '0xaa40c0f2560635c93e41ab7a4442401d8947229b70e770d80084267a54c320e9', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xa35efcf6b07476e9c806ee9b066579e6986b8070', 'value': 770.2163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29c0e5fc11b3b2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:25:32.000Z'}}, {'blockNum': '0x7f8fbc', 'uniqueId': '0x4a0681161e209bac72538bfb9d88796852b1ba3334f58127d3ab62c3a4d49169:log:66', 'hash': '0x4a0681161e209bac72538bfb9d88796852b1ba3334f58127d3ab62c3a4d49169', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xa4ae9c8a4d2aea0aef4be215490de4bed2ba6455', 'value': 24406.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x052b1864373b43e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:26:25.000Z'}}, {'blockNum': '0x7f8fc2', 'uniqueId': '0x5549c1f0adae129f02d73a2ca2c088b0c6e1420ba23ee1a87e04b151d43aa092:log:33', 'hash': '0x5549c1f0adae129f02d73a2ca2c088b0c6e1420ba23ee1a87e04b151d43aa092', 'from': '0xd7609720c2e9e8df6f7942823674cda1411bfa6f', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 15279.7985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x033c51cd23e86e824000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:27:42.000Z'}}, {'blockNum': '0x7f8fc4', 'uniqueId': '0x57dff0dafe94f6433f0492db6591b2de2c85339d4ed0dbd01a38d698017008d2:log:84', 'hash': '0x57dff0dafe94f6433f0492db6591b2de2c85339d4ed0dbd01a38d698017008d2', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xb3702a774d2f8a386c14bdbaeebecb259c7a7bca', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:28:13.000Z'}}, {'blockNum': '0x7f8fcd', 'uniqueId': '0xf18f08484b44545ecda8c3d3fde6257075aa9c22240d862b8739c75ec4371ac4:log:182', 'hash': '0xf18f08484b44545ecda8c3d3fde6257075aa9c22240d862b8739c75ec4371ac4', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x1bd1f945ddc7bda2ea942a0998c7cc828e9ecade', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:30:29.000Z'}}, {'blockNum': '0x7f8fcd', 'uniqueId': '0xaee4416e362613b4399d5e31099183b94e0b5dbcfd653fdaaf672a511225ee24:log:186', 'hash': '0xaee4416e362613b4399d5e31099183b94e0b5dbcfd653fdaaf672a511225ee24', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0x8f3c7b538a7f23efcb6054f969c2a5db320212db', 'value': 17404.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03af7ff53901c6220000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:30:29.000Z'}}, {'blockNum': '0x7f8fd3', 'uniqueId': '0x02fe0eb6efd3adc79070c9ac883b3b49b960f6b68eb1cf59d41183c676b5ecfb:log:128', 'hash': '0x02fe0eb6efd3adc79070c9ac883b3b49b960f6b68eb1cf59d41183c676b5ecfb', 'from': '0x59e9b0f7b2bead05702cda98df3af057b358cb53', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 16769.404255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x038d123be1cf9710f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:31:36.000Z'}}, {'blockNum': '0x7f8fd5', 'uniqueId': '0xa2a62db16651004605cceb8431804e8b3ce6e02aa7a7e1b204a5710f24dfaa10:log:91', 'hash': '0xa2a62db16651004605cceb8431804e8b3ce6e02aa7a7e1b204a5710f24dfaa10', 'from': '0xa4ae9c8a4d2aea0aef4be215490de4bed2ba6455', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 24406.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x052b1864373b43e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:31:48.000Z'}}, {'blockNum': '0x7f8fd6', 'uniqueId': '0x0d6cb2cd78eb6256fc95fe261588c44f115d318761c308ebb5600a9935d268aa:log:30', 'hash': '0x0d6cb2cd78eb6256fc95fe261588c44f115d318761c308ebb5600a9935d268aa', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb9432e44a716fba8f6407379d92cb442971cabf5', 'value': 730.4478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2798ffe4058d938000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:31:55.000Z'}}, {'blockNum': '0x7f8fd7', 'uniqueId': '0x875a46c4cecdae4be4a1885ae4fa3c137cb4ac9b9ac52a3d641cb061adbd880a:log:111', 'hash': '0x875a46c4cecdae4be4a1885ae4fa3c137cb4ac9b9ac52a3d641cb061adbd880a', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0xccc0dc7b29ab0a855abc9434cbd1ef7e939af2a2', 'value': 74110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fb182dabc6447380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:32:20.000Z'}}, {'blockNum': '0x7f8fd7', 'uniqueId': '0xc81d65bd10a677b17a371885f527b2e88f03e04894448a14a010601b82d8167e:log:114', 'hash': '0xc81d65bd10a677b17a371885f527b2e88f03e04894448a14a010601b82d8167e', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x6487125bfe0813a38cd9be578baf12cb64c5d1ca', 'value': 27858.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05e6365a055753ba0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:32:20.000Z'}}, {'blockNum': '0x7f8fdc', 'uniqueId': '0x4fdb7d26f29479192991abc26fcafa1169d51d64e24fa208beec897d5d1ef464:log:68', 'hash': '0x4fdb7d26f29479192991abc26fcafa1169d51d64e24fa208beec897d5d1ef464', 'from': '0xcb8e85b34485a4dc33415760805f6464740c075b', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 12570.0738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02a96cd121fea4948000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:33:41.000Z'}}, {'blockNum': '0x7f8fe0', 'uniqueId': '0x2b2fe17a4bcf28401940cc6473c25417b813287d0f22e4402351993cee802fec:log:66', 'hash': '0x2b2fe17a4bcf28401940cc6473c25417b813287d0f22e4402351993cee802fec', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0xcb03a8f71ddbdd3d8a3c0ddbf233c676116fda11', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:34:21.000Z'}}, {'blockNum': '0x7f8fe1', 'uniqueId': '0x6cb6e5320b19bc411db2ed651bac2bded5b60f82c00f6ceb7279bfd25546d4aa:log:75', 'hash': '0x6cb6e5320b19bc411db2ed651bac2bded5b60f82c00f6ceb7279bfd25546d4aa', 'from': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'to': '0xf1bd433c599e185457defbe555e720a6d104609e', 'value': 50989.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0acc1f13e07ce7980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:34:46.000Z'}}, {'blockNum': '0x7f8feb', 'uniqueId': '0x8be63c1d0569b67ea85a58ba33d3fed6727b2c23481ce9db206d0560b89b110d:log:17', 'hash': '0x8be63c1d0569b67ea85a58ba33d3fed6727b2c23481ce9db206d0560b89b110d', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xc3f438c6a17f4ee77ef3177365e76feb95f230d8', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:36:46.000Z'}}, {'blockNum': '0x7f8ffa', 'uniqueId': '0xb756fcc0de84f7ab3398efaecda5f98a5fe12a38ba8a300fe1685c70bd68567c:log:70', 'hash': '0xb756fcc0de84f7ab3398efaecda5f98a5fe12a38ba8a300fe1685c70bd68567c', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xd17c6fffb02cb42d716d10ecf391094bc0757ad9', 'value': 11215.330331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x025ffbf97aad7f28b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:39:50.000Z'}}, {'blockNum': '0x7f8ffa', 'uniqueId': '0x9d4a9904be89435774dca9ab779db2d1174e97394240b942af4839d6d012d410:log:101', 'hash': '0x9d4a9904be89435774dca9ab779db2d1174e97394240b942af4839d6d012d410', 'from': '0x6487125bfe0813a38cd9be578baf12cb64c5d1ca', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 27858.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05e6365a055753ba0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:39:50.000Z'}}, {'blockNum': '0x7f8fff', 'uniqueId': '0x88d9e5f634c8e72c9ebab94645957f7b8276aeec738bb0a3aa271c249741661d:log:146', 'hash': '0x88d9e5f634c8e72c9ebab94645957f7b8276aeec738bb0a3aa271c249741661d', 'from': '0xe9a7c41550e68585272dc96649858846dafc9731', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1080.7458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3a965c6310375c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:40:46.000Z'}}, {'blockNum': '0x7f9004', 'uniqueId': '0x74a93e62797d5308663cd703fc12b4d983426ba75094a83f88e04aaac81f8850:log:123', 'hash': '0x74a93e62797d5308663cd703fc12b4d983426ba75094a83f88e04aaac81f8850', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0x6f38b1935fc505717caeb3b50e6f47b3d74daa0b', 'value': 3416.701266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb9384152f7c56f2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:42:32.000Z'}}, {'blockNum': '0x7f9004', 'uniqueId': '0xd2543c51262975471e7ec8ae7d27ec02c9c13ad0253f7bd974da7667055a0ae7:log:124', 'hash': '0xd2543c51262975471e7ec8ae7d27ec02c9c13ad0253f7bd974da7667055a0ae7', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x9efaef6e8e7ada7bc56453a26352768138e71c8d', 'value': 1234.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x42f28348e6c8680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:42:32.000Z'}}, {'blockNum': '0x7f9006', 'uniqueId': '0x08aa8b9e2958780562b13df2552bdf54b614110f87a158cc8bb1e3282460e1cb:log:67', 'hash': '0x08aa8b9e2958780562b13df2552bdf54b614110f87a158cc8bb1e3282460e1cb', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x96b94a796ab26467c067b823b328300df95d10e7', 'value': 60098.333638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb9efebfd248b5a6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:43:14.000Z'}}, {'blockNum': '0x7f9009', 'uniqueId': '0x2ae1eab0f90eea29bc0eea30fd3d40221e83276f9fd3f9f01992f81a917aa9a1:log:22', 'hash': '0x2ae1eab0f90eea29bc0eea30fd3d40221e83276f9fd3f9f01992f81a917aa9a1', 'from': '0x8f3c7b538a7f23efcb6054f969c2a5db320212db', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 17404.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03af7ff53901c6220000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:43:47.000Z'}}, {'blockNum': '0x7f9014', 'uniqueId': '0xd2186a06634247022181f8213aa872e605db15879fb357180c2fdc364da039c4:log:85', 'hash': '0xd2186a06634247022181f8213aa872e605db15879fb357180c2fdc364da039c4', 'from': '0xccc0dc7b29ab0a855abc9434cbd1ef7e939af2a2', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 74110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fb182dabc6447380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:45:04.000Z'}}, {'blockNum': '0x7f9019', 'uniqueId': '0x4e044d17ee6705c1922f9b60d1cc35f43d09fbc0ec6f4b7906661d26d432f7e7:log:48', 'hash': '0x4e044d17ee6705c1922f9b60d1cc35f43d09fbc0ec6f4b7906661d26d432f7e7', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x9821785d4d68e60a5d5922ed0eee1ec083a79f29', 'value': 13837.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02ee24aa12b926da0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:46:16.000Z'}}, {'blockNum': '0x7f901c', 'uniqueId': '0xf4a7d19ff056d6d429f7e23cfa66dd4c042f205b6e69e3a7fdc4d91cfc694ad7:log:113', 'hash': '0xf4a7d19ff056d6d429f7e23cfa66dd4c042f205b6e69e3a7fdc4d91cfc694ad7', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0x7ec2e8a1db16666063e7d607f044e531b98d6e86', 'value': 9422.598733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01feccd3689886c5d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:47:22.000Z'}}, {'blockNum': '0x7f9027', 'uniqueId': '0x1883918771fad1807c5ffc766bc02c9fbcea16de2f6a6df49fc134e8cef5b1ce:log:91', 'hash': '0x1883918771fad1807c5ffc766bc02c9fbcea16de2f6a6df49fc134e8cef5b1ce', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xbd18817b6824a999719c7b475e47607270f16227', 'value': 6003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01456c5c36be2dec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:50:08.000Z'}}, {'blockNum': '0x7f9029', 'uniqueId': '0xee4cddb83118d01e65fffcc64ed332c6cba7b88cc06f813126002405e4229307:log:60', 'hash': '0xee4cddb83118d01e65fffcc64ed332c6cba7b88cc06f813126002405e4229307', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xb86dc8a7ec69121e34ba30fd2f435552f5e4fdb9', 'value': 2912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9ddc1e3b9011800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:50:48.000Z'}}, {'blockNum': '0x7f902d', 'uniqueId': '0xb06718b7eb6093ecf29184537ad1c613737f9ce0b9550d9f2cc35283ff1c7c3f:log:53', 'hash': '0xb06718b7eb6093ecf29184537ad1c613737f9ce0b9550d9f2cc35283ff1c7c3f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x079b2c0b485327cf61421dafd397b1fdc7209511', 'value': 60000.4738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a1d800f724148000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:51:43.000Z'}}, {'blockNum': '0x7f902f', 'uniqueId': '0xc20234572c332110420aa90e70b990186f8e154473db1661ffb72db14569c113:log:55', 'hash': '0xc20234572c332110420aa90e70b990186f8e154473db1661ffb72db14569c113', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0xec79c2e858a440295274361400010d06a44a5c0e', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:52:24.000Z'}}, {'blockNum': '0x7f9034', 'uniqueId': '0x6fee930de36ceaaf252df703cd5c2cb6f504566f7796e8200ac66db9a45cb272:log:223', 'hash': '0x6fee930de36ceaaf252df703cd5c2cb6f504566f7796e8200ac66db9a45cb272', 'from': '0xd17c6fffb02cb42d716d10ecf391094bc0757ad9', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 11215.330331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x025ffbf97aad7f28b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:53:15.000Z'}}, {'blockNum': '0x7f903d', 'uniqueId': '0xfcefccb7bb55e3dffbed742b4ba933e71dad981fd6472776085ca09cb6d05e98:log:27', 'hash': '0xfcefccb7bb55e3dffbed742b4ba933e71dad981fd6472776085ca09cb6d05e98', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x54715f263ad5e1de283950ba856bcfa2fca78756', 'value': 60468.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cce07965cbefa968000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T06:56:12.000Z'}}, {'blockNum': '0x7f9052', 'uniqueId': '0xf301cc19ad482173ba16086a77abcac4a46f7cfb838b577b3e3ec9baa88bf683:log:36', 'hash': '0xf301cc19ad482173ba16086a77abcac4a46f7cfb838b577b3e3ec9baa88bf683', 'from': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:01:05.000Z'}}, {'blockNum': '0x7f9067', 'uniqueId': '0x70dd8f8e418bc57e173010742f4a566b9904fca6960927b773a80b65bac0c438:log:49', 'hash': '0x70dd8f8e418bc57e173010742f4a566b9904fca6960927b773a80b65bac0c438', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xc191c8929c19ed8ca202d0c5f9038124d0a57fb4', 'value': 10515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023a04f05524706c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:06:14.000Z'}}, {'blockNum': '0x7f906d', 'uniqueId': '0x23d4bf2e353f877d53f6bbbbbe9df82c44654b7e38b8e1c793ef03bc1b4347ea:log:12', 'hash': '0x23d4bf2e353f877d53f6bbbbbe9df82c44654b7e38b8e1c793ef03bc1b4347ea', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x552568edfc5a1e35d6f787da0bbd2aad68cc4842', 'value': 168.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0928fb87d6a3e68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:07:52.000Z'}}, {'blockNum': '0x7f9074', 'uniqueId': '0xff8f0dfa60742c17381534f3ca36f89fd64c9dbc4830823ed163e9e0c4710aa0:log:98', 'hash': '0xff8f0dfa60742c17381534f3ca36f89fd64c9dbc4830823ed163e9e0c4710aa0', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x454f0b0ceffd499b9f3d694dcd9fb6f41b40e4eb', 'value': 14168.500743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0300137265d305237000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:08:41.000Z'}}, {'blockNum': '0x7f9074', 'uniqueId': '0xe3852f126bf78d7b705a21824b1ad3282a35c9bdbae82e00d18a4a929e85d231:log:109', 'hash': '0xe3852f126bf78d7b705a21824b1ad3282a35c9bdbae82e00d18a4a929e85d231', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0x651653e87444e1df34f1aa4b272d550fa7dc2d9a', 'value': 5358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0122752fe4196ef80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:08:41.000Z'}}, {'blockNum': '0x7f9078', 'uniqueId': '0xcf3ed8d88a2652a2a6dbf04120db2dfb9e759a7a104f60cee4d3cefcfa0905ee:log:99', 'hash': '0xcf3ed8d88a2652a2a6dbf04120db2dfb9e759a7a104f60cee4d3cefcfa0905ee', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x844af488988a20eac966d63099c9f4dafee7a51a', 'value': 18457.088223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03e88f8dccf958c8f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:09:58.000Z'}}, {'blockNum': '0x7f9078', 'uniqueId': '0xe13ba4b554d4b40421fd600568e5c73bae6b6b69f668094886179e5058641032:log:108', 'hash': '0xe13ba4b554d4b40421fd600568e5c73bae6b6b69f668094886179e5058641032', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x52d6247c52eee9f29290788839eef8a8feb5a384', 'value': 368.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14008a44316a068000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:09:58.000Z'}}, {'blockNum': '0x7f907c', 'uniqueId': '0x0b624595a6b00a401a3d7cc76a16e8bc15adce3fe3c0b5062b4f99ab4cc17d78:log:96', 'hash': '0x0b624595a6b00a401a3d7cc76a16e8bc15adce3fe3c0b5062b4f99ab4cc17d78', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x70d6154e20b1b66806540220e5ea4ad8bbd02bde', 'value': 74820.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fd804cd5ed95e320000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:12:09.000Z'}}, {'blockNum': '0x7f9080', 'uniqueId': '0xdb42e04ba3d927cecb558f0f52640f2b31a5dcb58cfc00fd6ec468c24587fd6b:log:33', 'hash': '0xdb42e04ba3d927cecb558f0f52640f2b31a5dcb58cfc00fd6ec468c24587fd6b', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x92bf806dcb29cd2dc22d0311382b4efb302f3675', 'value': 13596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02e10a672d4e02f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:12:31.000Z'}}, {'blockNum': '0x7f908d', 'uniqueId': '0x4939713193e8d9aa2ec232cb6b0a397e1a077305385fc55c18a6c15550e6600e:log:96', 'hash': '0x4939713193e8d9aa2ec232cb6b0a397e1a077305385fc55c18a6c15550e6600e', 'from': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'to': '0x5a2dc597edd038cbdaeff9c6110b38dcba2198e1', 'value': 8050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b464311d45a6880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:14:21.000Z'}}, {'blockNum': '0x7f908d', 'uniqueId': '0x39980e5b5b5cf67daab9ed40d299b261d27331e7f4aff824778660b96e34e8d7:log:101', 'hash': '0x39980e5b5b5cf67daab9ed40d299b261d27331e7f4aff824778660b96e34e8d7', 'from': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'to': '0xf5e85e0fbdc086060528c4a043f520faa5393687', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa10107a043fe280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:14:21.000Z'}}, {'blockNum': '0x7f9095', 'uniqueId': '0x1a47a90cd9f5bc2e81aaea64f8d4324b0bc3b3f91b0b4ac60ed18f44284cfefa:log:152', 'hash': '0x1a47a90cd9f5bc2e81aaea64f8d4324b0bc3b3f91b0b4ac60ed18f44284cfefa', 'from': '0x70d6154e20b1b66806540220e5ea4ad8bbd02bde', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 74820.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fd804cd5ed95e320000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:16:17.000Z'}}, {'blockNum': '0x7f9097', 'uniqueId': '0x29214c4430f9231c86a75cda2712eb804ab86bfda50b1edc6d5ba26feeb4a830:log:20', 'hash': '0x29214c4430f9231c86a75cda2712eb804ab86bfda50b1edc6d5ba26feeb4a830', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xce226e03ca291bbced7ca0103566d90202510dc2', 'value': 8084.46875625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b6428abc75494e8400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:16:33.000Z'}}, {'blockNum': '0x7f90a1', 'uniqueId': '0x70ef900ab91afa7ff25dc69b2b1ceef7ee6643aa2c0ce6f1df6e21990b930d2e:log:35', 'hash': '0x70ef900ab91afa7ff25dc69b2b1ceef7ee6643aa2c0ce6f1df6e21990b930d2e', 'from': '0xc191c8929c19ed8ca202d0c5f9038124d0a57fb4', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 10515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023a04f05524706c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:18:04.000Z'}}, {'blockNum': '0x7f90a2', 'uniqueId': '0xf3c75ab605f4537aab68df636da8063ecfb7150c8e29f58fccaeada367b5f29f:log:13', 'hash': '0xf3c75ab605f4537aab68df636da8063ecfb7150c8e29f58fccaeada367b5f29f', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x43898c31591f0b797dc972eb235cf9d319c061fe', 'value': 22170.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04b1dee1e3207b640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:18:12.000Z'}}, {'blockNum': '0x7f90a2', 'uniqueId': '0xcbf3013fc8ad0dbe6e1a1b2c033439fed3405e2744f64330339bfa558ab1c9b1:log:14', 'hash': '0xcbf3013fc8ad0dbe6e1a1b2c033439fed3405e2744f64330339bfa558ab1c9b1', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x922572ae58a74d3af9ecc9364b467a09b3b3095b', 'value': 1233.5824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x42df65110015d40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:18:12.000Z'}}, {'blockNum': '0x7f90a8', 'uniqueId': '0x746542fcd84a0f97b47e47cadceb5badab45ef71375bc4935e5fb6f440af2c9c:log:83', 'hash': '0x746542fcd84a0f97b47e47cadceb5badab45ef71375bc4935e5fb6f440af2c9c', 'from': '0x9efaef6e8e7ada7bc56453a26352768138e71c8d', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1234.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x42f28348e6c8680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:19:01.000Z'}}, {'blockNum': '0x7f90ad', 'uniqueId': '0x1470e996f705c5c31c700b4de2cf18e8432f89d04f2623a326d980ab696e841a:log:43', 'hash': '0x1470e996f705c5c31c700b4de2cf18e8432f89d04f2623a326d980ab696e841a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x814c2760704423a1566ad17b7db7a7cec010546d', 'value': 435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1794d673456eec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:21:13.000Z'}}, {'blockNum': '0x7f90b0', 'uniqueId': '0x54a0c1548e0d5c0ff7016f3bbe8a6a5334b324fc2eaae7424cea8b1e55a4e731:log:151', 'hash': '0x54a0c1548e0d5c0ff7016f3bbe8a6a5334b324fc2eaae7424cea8b1e55a4e731', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x50789633254128b794020ee86226ebcccbda76ef', 'value': 2446.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x84a42bd44c49c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:21:30.000Z'}}, {'blockNum': '0x7f90b5', 'uniqueId': '0xa207151d4537a5f04a1f4dc8ea752d4c0d14a9c4f904dea25048907ec1378ac7:log:154', 'hash': '0xa207151d4537a5f04a1f4dc8ea752d4c0d14a9c4f904dea25048907ec1378ac7', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x99dde741594f75c1c6a0ac167ee76383048a2777', 'value': 70, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03cb71f51fc5580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:22:21.000Z'}}, {'blockNum': '0x7f90b8', 'uniqueId': '0xbaf39a82fe013d615355a9d5f006ce1dc1e4438e33fedd4023f15af7922fc0aa:log:73', 'hash': '0xbaf39a82fe013d615355a9d5f006ce1dc1e4438e33fedd4023f15af7922fc0aa', 'from': '0x454f0b0ceffd499b9f3d694dcd9fb6f41b40e4eb', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 14168.500743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0300137265d305237000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:23:29.000Z'}}, {'blockNum': '0x7f90bc', 'uniqueId': '0x68e440a763a25e8c08512bd3fadae0f5258c9d8176f01f7b573116bd0430f625:log:55', 'hash': '0x68e440a763a25e8c08512bd3fadae0f5258c9d8176f01f7b573116bd0430f625', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0xb0a6e4b16f8e9d6532b76bcfedab07809dcffaa0', 'value': 10698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0243f092ef9118e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:24:36.000Z'}}, {'blockNum': '0x7f90bc', 'uniqueId': '0x920a56b62eb07e1c967d9739416e9a9fe8de5b39f35afea33b56f1fac4a299e5:log:70', 'hash': '0x920a56b62eb07e1c967d9739416e9a9fe8de5b39f35afea33b56f1fac4a299e5', 'from': '0x659e07fdb86c44bed18732395190c502ea08f318', 'to': '0x43898c31591f0b797dc972eb235cf9d319c061fe', 'value': 37497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07f0b768d06126440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:24:36.000Z'}}, {'blockNum': '0x7f90bd', 'uniqueId': '0x07825f4edd1cdcdee29925ee97af7d4dfed7d38ced2ce69f082ba633fedf6f2f:log:6', 'hash': '0x07825f4edd1cdcdee29925ee97af7d4dfed7d38ced2ce69f082ba633fedf6f2f', 'from': '0xce226e03ca291bbced7ca0103566d90202510dc2', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 8084.46875625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b6428abc75494e8400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:25:44.000Z'}}, {'blockNum': '0x7f90c1', 'uniqueId': '0xd7cf649b1deaba233c4139fba934adbade1a0ae25eef3fa023f6eba90699f48f:log:111', 'hash': '0xd7cf649b1deaba233c4139fba934adbade1a0ae25eef3fa023f6eba90699f48f', 'from': '0x92bf806dcb29cd2dc22d0311382b4efb302f3675', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 13596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02e10a672d4e02f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:26:11.000Z'}}, {'blockNum': '0x7f90db', 'uniqueId': '0x9d1b16fabaa0a4bd167150dd64cd148e48c0508fde24973c0f10aa2154250e4c:log:54', 'hash': '0x9d1b16fabaa0a4bd167150dd64cd148e48c0508fde24973c0f10aa2154250e4c', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xf87ff1cf4ea016b6e41261df567d01973fe3349a', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:30:11.000Z'}}, {'blockNum': '0x7f90ef', 'uniqueId': '0x11b64d58143c24bdd6427375b9f9b4947cf0d649ac09074019b9d95907716584:log:116', 'hash': '0x11b64d58143c24bdd6427375b9f9b4947cf0d649ac09074019b9d95907716584', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0xb235687b8dc124d08c2bfe440b2328e94d24ed45', 'value': 8356.202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01c4fd9925f1c0b10000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:33:52.000Z'}}, {'blockNum': '0x7f90ef', 'uniqueId': '0x2b762f7f61e914b4eb6cfd26fa1bc2618e5324ab1fb410c3159b377579ab0539:log:131', 'hash': '0x2b762f7f61e914b4eb6cfd26fa1bc2618e5324ab1fb410c3159b377579ab0539', 'from': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'to': '0x5ea6c690a00fb6a97d5a0a39d9912f340ad94e89', 'value': 10360, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02319de1b65e16e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:33:52.000Z'}}, {'blockNum': '0x7f9106', 'uniqueId': '0xf4351b7ffd84fbfcb78e5002786e2df2d59f5d286f035418f191fe64ddce414f:log:59', 'hash': '0xf4351b7ffd84fbfcb78e5002786e2df2d59f5d286f035418f191fe64ddce414f', 'from': '0xb0a6e4b16f8e9d6532b76bcfedab07809dcffaa0', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 10698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0243f092ef9118e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:38:18.000Z'}}, {'blockNum': '0x7f9106', 'uniqueId': '0x530a38ed214fb45c9c2f4ddd5ad6f5242c44c1017f59da40cb48e1043b017704:log:61', 'hash': '0x530a38ed214fb45c9c2f4ddd5ad6f5242c44c1017f59da40cb48e1043b017704', 'from': '0x43898c31591f0b797dc972eb235cf9d319c061fe', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 59667.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca2964ab381a1a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:38:18.000Z'}}, {'blockNum': '0x7f9108', 'uniqueId': '0xae34270ff387b0d601b325c8f955afed3c288cb18edd236ac9deef65803173b9:log:48', 'hash': '0xae34270ff387b0d601b325c8f955afed3c288cb18edd236ac9deef65803173b9', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x20e6160cad5163000fadf4d0a1600db94c297746', 'value': 8280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01c0dc1542ae0a600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:38:54.000Z'}}, {'blockNum': '0x7f9111', 'uniqueId': '0x80a494a5482d3ed0ed0db99092ef19f3013f576696651a4c83c1f80e64fff098:log:4', 'hash': '0x80a494a5482d3ed0ed0db99092ef19f3013f576696651a4c83c1f80e64fff098', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x3c4f2ba0e291975f99696ce767eeccd073241d3e', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:40:56.000Z'}}, {'blockNum': '0x7f9111', 'uniqueId': '0x84c83e4f28f249c3c4193b2c485954be3f6fb86fef93ff5482dce5db827c93ed:log:36', 'hash': '0x84c83e4f28f249c3c4193b2c485954be3f6fb86fef93ff5482dce5db827c93ed', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0x756cd52548a1918d02367cf10616d11988dbf9dc', 'value': 1932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x68bbe2d3d346b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:40:56.000Z'}}, {'blockNum': '0x7f9115', 'uniqueId': '0xfce31b2685d532eaa4711a0a8c5673454c8c2a7bd9d9e44e60801562f315c167:log:33', 'hash': '0xfce31b2685d532eaa4711a0a8c5673454c8c2a7bd9d9e44e60801562f315c167', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xe9ce932871b98da0f6e8c1734eb1f3b1777a5637', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:41:44.000Z'}}, {'blockNum': '0x7f9116', 'uniqueId': '0x4b9f044b271dc3f9a35b3c5f38d3959e356c9e03b439b4bc28212174621b5b4a:log:59', 'hash': '0x4b9f044b271dc3f9a35b3c5f38d3959e356c9e03b439b4bc28212174621b5b4a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd519a03834a814358132602202579f6808a98229', 'value': 59983.2610872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb3b2f829dee342c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:42:25.000Z'}}, {'blockNum': '0x7f911c', 'uniqueId': '0xa16d3081af8a0c5da22cb34db3e81b7f759e29cd0dd89a462c60b2b5bc81d2a1:log:35', 'hash': '0xa16d3081af8a0c5da22cb34db3e81b7f759e29cd0dd89a462c60b2b5bc81d2a1', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x0a7f127d117a33d5bdc4dcdbe2072325216b7a45', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:44:01.000Z'}}, {'blockNum': '0x7f9126', 'uniqueId': '0xe7a8fb7d182a320d27ac080a8637b4b2b354bb2b6d81bc8fa65f3c8b04e986cf:log:10', 'hash': '0xe7a8fb7d182a320d27ac080a8637b4b2b354bb2b6d81bc8fa65f3c8b04e986cf', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 37237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07e29f2f41eb24b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:46:41.000Z'}}, {'blockNum': '0x7f9129', 'uniqueId': '0x5f2ca72a458aae0c9edf3b9785700dcb40505f2a456a29315b44c7728662872a:log:87', 'hash': '0x5f2ca72a458aae0c9edf3b9785700dcb40505f2a456a29315b44c7728662872a', 'from': '0x5ea6c690a00fb6a97d5a0a39d9912f340ad94e89', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 10360, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02319de1b65e16e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:47:12.000Z'}}, {'blockNum': '0x7f912e', 'uniqueId': '0x88bb54e5216b374f2297a27bbe1e42635b4025c68fe84f4a69953f6a2bf3d825:log:46', 'hash': '0x88bb54e5216b374f2297a27bbe1e42635b4025c68fe84f4a69953f6a2bf3d825', 'from': '0x0a7f127d117a33d5bdc4dcdbe2072325216b7a45', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:48:47.000Z'}}, {'blockNum': '0x7f912f', 'uniqueId': '0xa9cf8dbba55d506f45fb5587d533bc92d038c6121d06ad3f71dd2a5dcb6bf110:log:6', 'hash': '0xa9cf8dbba55d506f45fb5587d533bc92d038c6121d06ad3f71dd2a5dcb6bf110', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 50127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a9d63de93c585dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:48:57.000Z'}}, {'blockNum': '0x7f912f', 'uniqueId': '0x3038863669fe05094b5dcf0b43c7b15309e18e7f8c1fb764f82f2181db1be9f1:log:13', 'hash': '0x3038863669fe05094b5dcf0b43c7b15309e18e7f8c1fb764f82f2181db1be9f1', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xf97306f506a1e4c8ed9810a24d9a6777bc8fd85f', 'value': 10349.1805834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023107bb6c4b26e91000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:48:57.000Z'}}, {'blockNum': '0x7f9134', 'uniqueId': '0x0c776b0ee0b6904f24e16ecdee6267ebc4f93496432fcfea2f631b8f43a0c021:log:89', 'hash': '0x0c776b0ee0b6904f24e16ecdee6267ebc4f93496432fcfea2f631b8f43a0c021', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x95e3227ff8afdd573886dc6e08e0e2c131fee344', 'value': 22770.9527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04d26a7322f8d20bc000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:50:32.000Z'}}, {'blockNum': '0x7f913e', 'uniqueId': '0xc1ee651818b0bb45292c592c0c28d27fdfda48151821684be12c2dafea8bddfd:log:54', 'hash': '0xc1ee651818b0bb45292c592c0c28d27fdfda48151821684be12c2dafea8bddfd', 'from': '0xe05e391c437fd065d2b288947a74d8df9dcfc300', 'to': '0x2c8bd5396ea1f11ac3d7da5365b3bc58ba2b7128', 'value': 989.6813726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x35a6968cd2b4033000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:52:39.000Z'}}, {'blockNum': '0x7f913e', 'uniqueId': '0xdb1cd6ed625111353930dbd544b859b5cd9445006e31cd627b86e683f012c277:log:69', 'hash': '0xdb1cd6ed625111353930dbd544b859b5cd9445006e31cd627b86e683f012c277', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x3e5c96f769e29912bdb32d522ea7a5d7e4021283', 'value': 24170.2662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x051e45d359575e9d8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:52:39.000Z'}}, {'blockNum': '0x7f9141', 'uniqueId': '0x71e6257ac9fc644a00ead6ab95cc5dba80206154e31906446a628844a917b484:log:34', 'hash': '0x71e6257ac9fc644a00ead6ab95cc5dba80206154e31906446a628844a917b484', 'from': '0x20e6160cad5163000fadf4d0a1600db94c297746', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 18088.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d492fa1b8ca7c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:53:18.000Z'}}, {'blockNum': '0x7f9156', 'uniqueId': '0x1e037abec54cbd8f024c4b74b9c8fb5e871feff88b4c579c413fff76cd85cbc3:log:85', 'hash': '0x1e037abec54cbd8f024c4b74b9c8fb5e871feff88b4c579c413fff76cd85cbc3', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x636d112a427f5f54297e82be1d0f31ee08c828fd', 'value': 76623.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1039bf1f7b6ad1660000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:56:37.000Z'}}, {'blockNum': '0x7f9160', 'uniqueId': '0x12bbb36bbf6dbf42f9e31b3fea6131ed2a1caa14c13122cf8cb2a882c4ab0de5:log:62', 'hash': '0x12bbb36bbf6dbf42f9e31b3fea6131ed2a1caa14c13122cf8cb2a882c4ab0de5', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x641e99d0e71db229be374546834defcca9f1209e', 'value': 3945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd5dbdf767e84040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:59:13.000Z'}}, {'blockNum': '0x7f9165', 'uniqueId': '0x91b5a45509a78ccb3fb5151b447b7a274d56b6cad1848e51b84bbc397fdb4479:log:44', 'hash': '0x91b5a45509a78ccb3fb5151b447b7a274d56b6cad1848e51b84bbc397fdb4479', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 37237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07e29f2f41eb24b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T07:59:48.000Z'}}, {'blockNum': '0x7f916b', 'uniqueId': '0x283cd8e0a8a22b43b5dc28457aa8245b79c6cbd64aa77b32eb0e07eb47f9bd67:log:10', 'hash': '0x283cd8e0a8a22b43b5dc28457aa8245b79c6cbd64aa77b32eb0e07eb47f9bd67', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0xd1dde985eba4780f539425cae26cb106e46fe8df', 'value': 7983.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b0c3c491b934e60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:00:41.000Z'}}, {'blockNum': '0x7f916e', 'uniqueId': '0x7d55e63807b0df175f85c1522be5e02faece1474947db15254bc56847d9e7700:log:40', 'hash': '0x7d55e63807b0df175f85c1522be5e02faece1474947db15254bc56847d9e7700', 'from': '0x95e3227ff8afdd573886dc6e08e0e2c131fee344', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 22770.9527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04d26a7322f8d20bc000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:01:02.000Z'}}, {'blockNum': '0x7f9175', 'uniqueId': '0x5cbb8ddbf20d710491f499a2ad858e11981e640283fdb5b4cdaeeca4092a1191:log:58', 'hash': '0x5cbb8ddbf20d710491f499a2ad858e11981e640283fdb5b4cdaeeca4092a1191', 'from': '0x0e8abb458274f00d418863d783f861f4025da724', 'to': '0x4f39e77a4b78a32bbca5a303569f63132606ba7b', 'value': 16843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03910f947df6204c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:02:37.000Z'}}, {'blockNum': '0x7f9176', 'uniqueId': '0x9a5da7569e6b9dfc6018c5ef33a2e328dfc3ad1f3183bf217863475de8c8c0a7:log:62', 'hash': '0x9a5da7569e6b9dfc6018c5ef33a2e328dfc3ad1f3183bf217863475de8c8c0a7', 'from': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'to': '0xc8c15c86a258b83f65bd254c362baf0ee64b9389', 'value': 10570.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023d08996c8a2b3e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:02:44.000Z'}}, {'blockNum': '0x7f917a', 'uniqueId': '0xc9c7574b2c4ec9ef2de1cbe766f7d67fa89d878c97ad3054f765269d13d9deea:log:15', 'hash': '0xc9c7574b2c4ec9ef2de1cbe766f7d67fa89d878c97ad3054f765269d13d9deea', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x0440d05da5d867d41b0a0a4a497729ca2fbf3f0f', 'value': 8668.6426938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d5ed957992de489000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:04:28.000Z'}}, {'blockNum': '0x7f917c', 'uniqueId': '0x73106a47c7f8ce3046111361b6a25d08c690861b25c3637c9f50378fea37a260:log:124', 'hash': '0x73106a47c7f8ce3046111361b6a25d08c690861b25c3637c9f50378fea37a260', 'from': '0x3e5c96f769e29912bdb32d522ea7a5d7e4021283', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 24170.2662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x051e45d359575e9d8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:04:56.000Z'}}, {'blockNum': '0x7f917c', 'uniqueId': '0xf75b6736004c511bad7c6d429f6c7bd9fd2494822d19596293e56b56dbb254af:log:144', 'hash': '0xf75b6736004c511bad7c6d429f6c7bd9fd2494822d19596293e56b56dbb254af', 'from': '0x636d112a427f5f54297e82be1d0f31ee08c828fd', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 76623.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1039bf1f7b6ad1660000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:04:56.000Z'}}, {'blockNum': '0x7f917c', 'uniqueId': '0x11698b6d7ed81e74989644303741b40e72b180e1a701ce2304405b00838a0295:log:148', 'hash': '0x11698b6d7ed81e74989644303741b40e72b180e1a701ce2304405b00838a0295', 'from': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'to': '0x3aeca609505f6fb893e92767e954d86edaea649d', 'value': 25647.6117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x056e5c1cea4784774000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:04:56.000Z'}}, {'blockNum': '0x7f9180', 'uniqueId': '0x6e0eb6ba57cf51140f700b899ffff750d45947b35391ab7bd550cee8eef80ac2:log:73', 'hash': '0x6e0eb6ba57cf51140f700b899ffff750d45947b35391ab7bd550cee8eef80ac2', 'from': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'to': '0x16b72273c7710ebc121fb1f70e4988392b7cf47a', 'value': 22495.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04c3751d4246ab9e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:06:52.000Z'}}, {'blockNum': '0x7f9183', 'uniqueId': '0x2f8ec63e4a03872504da83548acf07765874b1c59a16c5df7761c83c607db5e4:log:92', 'hash': '0x2f8ec63e4a03872504da83548acf07765874b1c59a16c5df7761c83c607db5e4', 'from': '0xc3794a35830d2f8171cca0ea9ad4d63fe9c8aabf', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2b5e3af16b18800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:07:30.000Z'}}, {'blockNum': '0x7f9183', 'uniqueId': '0x3c73301d183e86bf294d996ef79508dcfc97006dd74bc06d4007677e61fff4fd:log:161', 'hash': '0x3c73301d183e86bf294d996ef79508dcfc97006dd74bc06d4007677e61fff4fd', 'from': '0x3c40f19ba92d812ae356ffc39ea41be73f05522b', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:07:30.000Z'}}, {'blockNum': '0x7f9188', 'uniqueId': '0xd66c74bdccd8f26a8d96fd6719d134f78b24048ed06351ffc43f2c00cce402de:log:51', 'hash': '0xd66c74bdccd8f26a8d96fd6719d134f78b24048ed06351ffc43f2c00cce402de', 'from': '0xd830032b6b8a2a03a9e7914e2dc79f263502c499', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 6391.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015a816e90432b560000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:08:05.000Z'}}, {'blockNum': '0x7f9188', 'uniqueId': '0xfb22f273a075714026cbe141a7634e6471ce033aa07b4e4dddff2a4d66b61efb:log:55', 'hash': '0xfb22f273a075714026cbe141a7634e6471ce033aa07b4e4dddff2a4d66b61efb', 'from': '0xbc453633c72341864bfedcf8fce3ffd00b526e35', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 1720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5d3dcb870ca7e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:08:05.000Z'}}, {'blockNum': '0x7f9188', 'uniqueId': '0x09134c7bf206873fc39f8930812815cb32caf4bfbe893944c01f20746628ae1a:log:66', 'hash': '0x09134c7bf206873fc39f8930812815cb32caf4bfbe893944c01f20746628ae1a', 'from': '0x70ca9152d1d80edeb9d71ab336615326cc743bff', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 3520.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbedcea52008b500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:08:05.000Z'}}, {'blockNum': '0x7f9189', 'uniqueId': '0x3e0b736484370da6c3c87241627cea6b3d0fbd3778a7cc94275c3761e08fcf9a:log:14', 'hash': '0x3e0b736484370da6c3c87241627cea6b3d0fbd3778a7cc94275c3761e08fcf9a', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x518e6adc847575bf4f3fe737f1e279bbb2d6de09', 'value': 1478.6484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x50285e6595c3b50000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:08:15.000Z'}}, {'blockNum': '0x7f9189', 'uniqueId': '0xf6bd281d51af0a2cd9e007aa9dfd13fbf463f3fa1d5bf0188f6a5b5dc03c64b4:log:25', 'hash': '0xf6bd281d51af0a2cd9e007aa9dfd13fbf463f3fa1d5bf0188f6a5b5dc03c64b4', 'from': '0xb86dc8a7ec69121e34ba30fd2f435552f5e4fdb9', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 2912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9ddc1e3b9011800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:08:15.000Z'}}, {'blockNum': '0x7f9199', 'uniqueId': '0xf2c805863f203393d80e551f7975206397cf7900df1c230139b14aa2655febd2:log:41', 'hash': '0xf2c805863f203393d80e551f7975206397cf7900df1c230139b14aa2655febd2', 'from': '0x7b5a8d2844d5bdfd51d36732b2cdd852c87f73b1', 'to': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:10:53.000Z'}}, {'blockNum': '0x7f919c', 'uniqueId': '0x2cce1ec3d9014894c6b871842fbae4cbfa22e6905fe5cb5a48b8c07b8d87415a:log:85', 'hash': '0x2cce1ec3d9014894c6b871842fbae4cbfa22e6905fe5cb5a48b8c07b8d87415a', 'from': '0x16b72273c7710ebc121fb1f70e4988392b7cf47a', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 22495.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04c3751d4246ab9e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:11:23.000Z'}}, {'blockNum': '0x7f91a4', 'uniqueId': '0x64e40379ed1580b7f4c07a21edae0cea08b8d5304d57c7734b41896fb6dc9100:log:48', 'hash': '0x64e40379ed1580b7f4c07a21edae0cea08b8d5304d57c7734b41896fb6dc9100', 'from': '0x4f39e77a4b78a32bbca5a303569f63132606ba7b', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 16843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03910f947df6204c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:12:50.000Z'}}, {'blockNum': '0x7f91a8', 'uniqueId': '0x90a9a8d715e2fbc6226403edba7c15461bb3e2b5741a9cb747c315b6b6c21a21:log:123', 'hash': '0x90a9a8d715e2fbc6226403edba7c15461bb3e2b5741a9cb747c315b6b6c21a21', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xdd9cb9361ca6751afef5cc28424e840ccd972d08', 'value': 1578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x558b262f65ce680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:13:54.000Z'}}, {'blockNum': '0x7f91a9', 'uniqueId': '0xb22bd1690f5ca6e029bfcac38868075ea7b2f8f37ccabd2069f7a77b7bf91f27:log:74', 'hash': '0xb22bd1690f5ca6e029bfcac38868075ea7b2f8f37ccabd2069f7a77b7bf91f27', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x4f3ca42aef852b9c8cbfcb6ef83e20b9faa9a216', 'value': 1370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a4491bd6dcd280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:14:00.000Z'}}, {'blockNum': '0x7f91b6', 'uniqueId': '0xddccb5f202ed3de15f4ba6c97a7abdeabf98141303826c9af17277b5055caff0:log:6', 'hash': '0xddccb5f202ed3de15f4ba6c97a7abdeabf98141303826c9af17277b5055caff0', 'from': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'to': '0xb764a703433d5e4c9e2dc3a4899b9a70c7c860d5', 'value': 14730, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x031e83d07d1d7fe80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:16:37.000Z'}}, {'blockNum': '0x7f91b9', 'uniqueId': '0xfe80187e8e7e013276da0e51114a3065d1d7540bd9afb0f73dd331575edc9cf7:log:43', 'hash': '0xfe80187e8e7e013276da0e51114a3065d1d7540bd9afb0f73dd331575edc9cf7', 'from': '0x7b5a8d2844d5bdfd51d36732b2cdd852c87f73b1', 'to': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a784379d99db42000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:17:06.000Z'}}, {'blockNum': '0x7f91bb', 'uniqueId': '0x2170ef7ad6025e0041c538107e6cee3b6bd7abea13cd4090ef987dd969b96b0b:log:131', 'hash': '0x2170ef7ad6025e0041c538107e6cee3b6bd7abea13cd4090ef987dd969b96b0b', 'from': '0x3aeca609505f6fb893e92767e954d86edaea649d', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 25647.6117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x056e5c1cea4784774000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:17:41.000Z'}}, {'blockNum': '0x7f91bb', 'uniqueId': '0xa3bc25c7d0c66708c2fe7e8bc5288f30a581c23f26646225d6d3dce25e46536a:log:140', 'hash': '0xa3bc25c7d0c66708c2fe7e8bc5288f30a581c23f26646225d6d3dce25e46536a', 'from': '0xc8c15c86a258b83f65bd254c362baf0ee64b9389', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 10570.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023d08996c8a2b3e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:17:41.000Z'}}, {'blockNum': '0x7f91bc', 'uniqueId': '0x366733ce5e78f9a6eed8bb5b16d6ee7bfc790beaa281c27d41d7c52675681828:log:23', 'hash': '0x366733ce5e78f9a6eed8bb5b16d6ee7bfc790beaa281c27d41d7c52675681828', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 97199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14952b18dda0795c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:18:30.000Z'}}, {'blockNum': '0x7f91c3', 'uniqueId': '0x15a3c442472acf6da0dccad8a32360479711de241ce9dbee51841cab7185f012:log:38', 'hash': '0x15a3c442472acf6da0dccad8a32360479711de241ce9dbee51841cab7185f012', 'from': '0x5f3371793285920351344a1eaaaa48d45e600652', 'to': '0x5bcf2767f86f14edd82053bfbfd5069f68c2c5f8', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:19:50.000Z'}}, {'blockNum': '0x7f91c4', 'uniqueId': '0x7d0cf729503629e92c96fdb33357b5576a37fba4bf57e78ce346da12e236058e:log:111', 'hash': '0x7d0cf729503629e92c96fdb33357b5576a37fba4bf57e78ce346da12e236058e', 'from': '0x529dab7bad9ef1000c3c0d708878c83fc870f7ae', 'to': '0x80e1fa3dfb3eef72c89d909137489c6ce328f5a6', 'value': 3213.4456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xae338423a2b1fe0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:20:07.000Z'}}, {'blockNum': '0x7f91df', 'uniqueId': '0x76d789e93d72b04d0d5f5578209e2331806a9892a39e0b3e8dfc882e3d58e6d8:log:128', 'hash': '0x76d789e93d72b04d0d5f5578209e2331806a9892a39e0b3e8dfc882e3d58e6d8', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 8132.4032608833495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b8dbc44e744c64de26', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:27:40.000Z'}}, {'blockNum': '0x7f91e3', 'uniqueId': '0xab03cfbea636a3ece07c67d002e13c5b89d6b2963e3f324d8af629deca85f3d4:log:93', 'hash': '0xab03cfbea636a3ece07c67d002e13c5b89d6b2963e3f324d8af629deca85f3d4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 43382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x092fbe30d0502c180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:28:51.000Z'}}, {'blockNum': '0x7f91f2', 'uniqueId': '0xde70e9186bee893927c312a3b9f3cd916fb6fe10d15e8197fd25f170ab059d04:log:7', 'hash': '0xde70e9186bee893927c312a3b9f3cd916fb6fe10d15e8197fd25f170ab059d04', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xfae822fcede880a4e7f84ff60b74299ab5b6402c', 'value': 1139.3379808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3dc37da110f6d30000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:31:54.000Z'}}, {'blockNum': '0x7f91f7', 'uniqueId': '0x59d72ab479e7fd0809b5f9103f0017b6015852cd116956e86b2e4799d07b72c0:log:18', 'hash': '0x59d72ab479e7fd0809b5f9103f0017b6015852cd116956e86b2e4799d07b72c0', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x4cdb435f2c5ed6d1c9a7c29037c2199206476c18', 'value': 60028.6138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb6285d5ddf8f928000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:32:31.000Z'}}, {'blockNum': '0x7f91ff', 'uniqueId': '0x8dc09625cadbd6483adf996209c9c551b0972d230e4b7a2827feec2ea57e9c81:log:2', 'hash': '0x8dc09625cadbd6483adf996209c9c551b0972d230e4b7a2827feec2ea57e9c81', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x2d6e1b47a905a28b24a2e123e52c849ccb5efc07', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:34:04.000Z'}}, {'blockNum': '0x7f9200', 'uniqueId': '0xdcc1d3c9eb4226b3ce1cff84aed77b70e196c271c0e5151348b63256f929dd76:log:42', 'hash': '0xdcc1d3c9eb4226b3ce1cff84aed77b70e196c271c0e5151348b63256f929dd76', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x56733823ef8f31da3c60af0933e886edd64bffea', 'value': 1858.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x64c671a5d5ae0e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:34:27.000Z'}}, {'blockNum': '0x7f9201', 'uniqueId': '0xfa05d9d3f5678a70c3e671c5e00d96841d11f7c802b747fecd072f885686cc18:log:32', 'hash': '0xfa05d9d3f5678a70c3e671c5e00d96841d11f7c802b747fecd072f885686cc18', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb846978a6d1e537862f82af1ea0d6ff7cf3fc4e2', 'value': 1001.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x36512e066a504a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:34:41.000Z'}}, {'blockNum': '0x7f9205', 'uniqueId': '0x97127b99cd85a8e2db2f3ce0d99bee8ca9683d8a8a6854727a5ef9cfecc8dfa3:log:15', 'hash': '0x97127b99cd85a8e2db2f3ce0d99bee8ca9683d8a8a6854727a5ef9cfecc8dfa3', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xa2dcb36758cbf0bc1fee1d807685e31dceb83108', 'value': 10110.2861288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02241467d38d4b3a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:35:30.000Z'}}, {'blockNum': '0x7f920c', 'uniqueId': '0x405b0522f1e694a279687f125017a7836c5c6224911d646dcde6cc0fe5ee407f:log:15', 'hash': '0x405b0522f1e694a279687f125017a7836c5c6224911d646dcde6cc0fe5ee407f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb846978a6d1e537862f82af1ea0d6ff7cf3fc4e2', 'value': 9015.7738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e8befee77bb1ae8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:37:28.000Z'}}, {'blockNum': '0x7f9213', 'uniqueId': '0x96270e476c1ae6a30785762e0fad899d71fe0da39d3bf420b5a6d062935dbba6:log:10', 'hash': '0x96270e476c1ae6a30785762e0fad899d71fe0da39d3bf420b5a6d062935dbba6', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x54ebcfa97e83899cdc76baab66f5b348424b9913', 'value': 35392.1938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x077e9d5b09387e788000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:39:10.000Z'}}, {'blockNum': '0x7f9219', 'uniqueId': '0x3e903b742a91cab37dbc97cee69229a3b2b2ce51cbb1819efd80394b8867e664:log:147', 'hash': '0x3e903b742a91cab37dbc97cee69229a3b2b2ce51cbb1819efd80394b8867e664', 'from': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'to': '0x8ca7584528249452c8ed8726abb2b7875c527414', 'value': 1910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x678a932062e4180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:40:21.000Z'}}, {'blockNum': '0x7f921b', 'uniqueId': '0x4988d9f2172ef7b2605c7e057d0e741b348e1e2da73783bb4df0d81c36e7411e:log:0', 'hash': '0x4988d9f2172ef7b2605c7e057d0e741b348e1e2da73783bb4df0d81c36e7411e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1b7568c5dbd5565b8e92156fd81d4402c693a095', 'value': 232.8099793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c9ee332b1768b6800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:41:01.000Z'}}, {'blockNum': '0x7f9221', 'uniqueId': '0xf2d6357de67c5d9be887ad85d4c6c9653ae1c1da393f4a385b2a4f4ce374de7c:log:108', 'hash': '0xf2d6357de67c5d9be887ad85d4c6c9653ae1c1da393f4a385b2a4f4ce374de7c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x3b577b699171a3e4d282b33678d9107216c11d5d', 'value': 60613.0832826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd5d78217a55cec9000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:43:47.000Z'}}, {'blockNum': '0x7f9224', 'uniqueId': '0x57da8e35cc8c8d8b629ac6405a31d60a21465eef7c5dc1e8fc0c220554dcf9a4:log:144', 'hash': '0x57da8e35cc8c8d8b629ac6405a31d60a21465eef7c5dc1e8fc0c220554dcf9a4', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x6d7d915a9ed74a077aea755170f7e159507cf4ad', 'value': 13987.2143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02f63f9792699c09c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:44:15.000Z'}}, {'blockNum': '0x7f922b', 'uniqueId': '0x8782a8d1008b2e1bf341481597a81683ba8f4695e4f1a1248d53ddb279bb459f:log:23', 'hash': '0x8782a8d1008b2e1bf341481597a81683ba8f4695e4f1a1248d53ddb279bb459f', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xcb34cd92261dc71d1c706f567fdf50506027afde', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:46:26.000Z'}}, {'blockNum': '0x7f922c', 'uniqueId': '0x8649059af4cc8038987702d5876d49e984e1d5d62470d56b35ca88d1058c9a03:log:20', 'hash': '0x8649059af4cc8038987702d5876d49e984e1d5d62470d56b35ca88d1058c9a03', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xf0b23cbf4454d384bfa94358b18e24b1eaef0ede', 'value': 968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3487367941bc668000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:46:38.000Z'}}, {'blockNum': '0x7f922d', 'uniqueId': '0x9d25f36ee547fb30ff5284db1728166698dfb16bb4162efbb3024ca51879ebfe:log:117', 'hash': '0x9d25f36ee547fb30ff5284db1728166698dfb16bb4162efbb3024ca51879ebfe', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xdccde70c60f64ce203b30cd68950432e77c9687a', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:46:47.000Z'}}, {'blockNum': '0x7f922d', 'uniqueId': '0x1b8f070fc00325a6e33c50fe9f8fd3bebe9fb004b7a8081e766c95322f1d5771:log:119', 'hash': '0x1b8f070fc00325a6e33c50fe9f8fd3bebe9fb004b7a8081e766c95322f1d5771', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x7a453d220a3523a50797a5a458ce4bc45a99cf64', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:46:47.000Z'}}, {'blockNum': '0x7f9230', 'uniqueId': '0xcc1c614b545b9e5978eadf39443f45f8dfe6e7289c11c4d6b044e2dc5f3e096c:log:13', 'hash': '0xcc1c614b545b9e5978eadf39443f45f8dfe6e7289c11c4d6b044e2dc5f3e096c', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x2377fb799d3cdfb63057f3cffb2c0edee84d43b6', 'value': 26206.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x058ca415359a09cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:48:01.000Z'}}, {'blockNum': '0x7f9231', 'uniqueId': '0xcb024e86d22615bc266f2f0f9b180be559d0f93ad9245d3043fc73d647d55c4d:log:4', 'hash': '0xcb024e86d22615bc266f2f0f9b180be559d0f93ad9245d3043fc73d647d55c4d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 33316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070e1060ec4452100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:48:19.000Z'}}, {'blockNum': '0x7f9233', 'uniqueId': '0xdde13edb43864cb540b3cd359537468430043aef7d478d39d8c5f6f7f06b3699:log:18', 'hash': '0xdde13edb43864cb540b3cd359537468430043aef7d478d39d8c5f6f7f06b3699', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x8cd9f39e60dadd174f5cdfe67f539e15f913b877', 'value': 250624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x35125ab109236c000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:48:56.000Z'}}, {'blockNum': '0x7f9236', 'uniqueId': '0x7bf7e6cdc794d8276442a6f94e4a4fff468493854cc0759d86b1888d44b75e28:log:0', 'hash': '0x7bf7e6cdc794d8276442a6f94e4a4fff468493854cc0759d86b1888d44b75e28', 'from': '0x1b7568c5dbd5565b8e92156fd81d4402c693a095', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 232.8099793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c9ee332b1768b6800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:50:05.000Z'}}, {'blockNum': '0x7f9237', 'uniqueId': '0x11eb53992753ef71f89c3047cb8bd788b31b95502ae9284ce5bed2525a062346:log:11', 'hash': '0x11eb53992753ef71f89c3047cb8bd788b31b95502ae9284ce5bed2525a062346', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x3bed81dd2fe4df759b4d60a9c46e19039fd2af93', 'value': 7316.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x018ca4ff71eea2200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:50:10.000Z'}}, {'blockNum': '0x7f923e', 'uniqueId': '0x92f99e3a41d93f00e0fde9b583363d73e4acf02e16302a57366bebbbf20f51b0:log:95', 'hash': '0x92f99e3a41d93f00e0fde9b583363d73e4acf02e16302a57366bebbbf20f51b0', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x190dc6d427d6370ef5c68af5e52e4ae334384546', 'value': 49376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a74ada69abd77800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:52:09.000Z'}}, {'blockNum': '0x7f923f', 'uniqueId': '0x2a42b8a4f6b9530e7bd9ce0a0af012ccc81b4956c859080ade64fc77354fecee:log:118', 'hash': '0x2a42b8a4f6b9530e7bd9ce0a0af012ccc81b4956c859080ade64fc77354fecee', 'from': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'to': '0x73c2a022b271b53d5d2d1a431cb7dc5a596d0b53', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:52:21.000Z'}}, {'blockNum': '0x7f9244', 'uniqueId': '0xd05682f46230d50eb54db8fb5dc8adebf688e0c66853a429d671625798d8c874:log:41', 'hash': '0xd05682f46230d50eb54db8fb5dc8adebf688e0c66853a429d671625798d8c874', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x122dcee368fb9385508aae456e5e153d783baef0', 'value': 22218.2643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04b4745b7f70cb0ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:53:41.000Z'}}, {'blockNum': '0x7f9248', 'uniqueId': '0xf96b673d6cbf8ff8298bb33560da6e5184cee8f5c37c496c65e15d42ee397e1c:log:68', 'hash': '0xf96b673d6cbf8ff8298bb33560da6e5184cee8f5c37c496c65e15d42ee397e1c', 'from': '0x495393ade845112906c0fae8f913336937ce4d7c', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01bc85dc2a89bb200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:54:29.000Z'}}, {'blockNum': '0x7f924b', 'uniqueId': '0x81f61b19a10f2ebe63a4d4016e3ee2fb3b038409194e07d6db41865cfdb4b535:log:72', 'hash': '0x81f61b19a10f2ebe63a4d4016e3ee2fb3b038409194e07d6db41865cfdb4b535', 'from': '0x38c5f88aa68d03e45c6777d21f6f67a931d394b4', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 70879.039536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f025c454cbef3f30000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:54:59.000Z'}}, {'blockNum': '0x7f924e', 'uniqueId': '0xdd8a6aa3f4622cf24fc874026577a2f1344e78e1945db18cb0d07cdf9b69ff82:log:56', 'hash': '0xdd8a6aa3f4622cf24fc874026577a2f1344e78e1945db18cb0d07cdf9b69ff82', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xb249b86786c88a97f0ac8f9759c24d315a5dee80', 'value': 19483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04202cf09aa4578c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:56:00.000Z'}}, {'blockNum': '0x7f9250', 'uniqueId': '0x8d42240df1077a0b6245e3a26514be42da962964faa94008f1ee1e7859ae1af3:log:42', 'hash': '0x8d42240df1077a0b6245e3a26514be42da962964faa94008f1ee1e7859ae1af3', 'from': '0x8cd9f39e60dadd174f5cdfe67f539e15f913b877', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 250624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x35125ab109236c000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:56:32.000Z'}}, {'blockNum': '0x7f9251', 'uniqueId': '0x147ed8e874446bb01e9f5912639b664a73c84b689ba6590171ce9aa24df926ca:log:103', 'hash': '0x147ed8e874446bb01e9f5912639b664a73c84b689ba6590171ce9aa24df926ca', 'from': '0x447bfb6302c9cd36ae27aae652b9be94c4dbd37e', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 109537.8590988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17320f2a5de87bdae000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:56:34.000Z'}}, {'blockNum': '0x7f9251', 'uniqueId': '0x84ba34045387f7aacea6609678d8c327e9b8c9749cc67d355e4a72f7dfc229bf:log:104', 'hash': '0x84ba34045387f7aacea6609678d8c327e9b8c9749cc67d355e4a72f7dfc229bf', 'from': '0xcb03a8f71ddbdd3d8a3c0ddbf233c676116fda11', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:56:34.000Z'}}, {'blockNum': '0x7f9251', 'uniqueId': '0x6e135ad585cdf932d7691f0ef1c33c7ac71ca5ccc2e7a5cbc920fc463829ebdc:log:107', 'hash': '0x6e135ad585cdf932d7691f0ef1c33c7ac71ca5ccc2e7a5cbc920fc463829ebdc', 'from': '0x13f6747dd28045ce6e2d48ad9a1855c4221c6930', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 1160.2254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3ee55ca629917f8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:56:34.000Z'}}, {'blockNum': '0x7f9251', 'uniqueId': '0x807f9b8afcc7f2d1fc8ec9f55f69a29a31230095015ade3d707bedfde84df780:log:111', 'hash': '0x807f9b8afcc7f2d1fc8ec9f55f69a29a31230095015ade3d707bedfde84df780', 'from': '0xe5b5dc2b9f4def040a58fc21cb8296777d833e29', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 63119.3542638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5db5014a412ca3b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:56:34.000Z'}}, {'blockNum': '0x7f9251', 'uniqueId': '0x40161b7c93f3aa7b3058357959787ac78ded047509a8f0f3d6331989c6be2ae6:log:114', 'hash': '0x40161b7c93f3aa7b3058357959787ac78ded047509a8f0f3d6331989c6be2ae6', 'from': '0xd1454f87c747d6c587d7606327d47643c08b6525', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 50699.4393404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0abc6c0fa6f3a6c66000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:56:34.000Z'}}, {'blockNum': '0x7f9251', 'uniqueId': '0x964932c6aef9ec2c94eef1b261aa85e97206c8464de2451cb96ec9257e4f3216:log:128', 'hash': '0x964932c6aef9ec2c94eef1b261aa85e97206c8464de2451cb96ec9257e4f3216', 'from': '0x9d8b8593b5010f10d68ccc5b8ab0710e039a72dc', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 39304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0852ac926e7bb1200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:56:34.000Z'}}, {'blockNum': '0x7f9252', 'uniqueId': '0xbe57110cd7b800cbf42494e71f17a9f93df45f913299f20744598349ed0df997:log:62', 'hash': '0xbe57110cd7b800cbf42494e71f17a9f93df45f913299f20744598349ed0df997', 'from': '0x70e7721af97e6f9050ceb020c3288c5cce88e5fe', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 10000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e267441d3f9b58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:56:43.000Z'}}, {'blockNum': '0x7f9254', 'uniqueId': '0x67861754533a158dab66a8270b1c3374f98586cfbf4a1ecb04b6a176153ef5eb:log:134', 'hash': '0x67861754533a158dab66a8270b1c3374f98586cfbf4a1ecb04b6a176153ef5eb', 'from': '0x691cbe594ebe4bb2e318c37b06a88d207f61a813', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 37684.6419824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07fae3770d33d45d8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:57:04.000Z'}}, {'blockNum': '0x7f9257', 'uniqueId': '0xfa5e649c1149d36b57b18c4656c2e8f5bc2826cee0343aed37918b1d25529103:log:28', 'hash': '0xfa5e649c1149d36b57b18c4656c2e8f5bc2826cee0343aed37918b1d25529103', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x5cb7e6097df8c88d625d49853a4f8f3fba8c9c9e', 'value': 60138.6875114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cbc1ff1bf3231701000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:57:29.000Z'}}, {'blockNum': '0x7f9257', 'uniqueId': '0xf47de00b9b91bdc66b46ef1f0d23b2a8ae655265d57844f1cfe4e6c53f159a01:log:119', 'hash': '0xf47de00b9b91bdc66b46ef1f0d23b2a8ae655265d57844f1cfe4e6c53f159a01', 'from': '0xeef03c2f0f67e6a9d03e9dc134b72a13e4a6239a', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:57:29.000Z'}}, {'blockNum': '0x7f9257', 'uniqueId': '0x1a281d20a56caae64faf1a97ff2618e954325e0479c70f70cd2d8120f23caa28:log:127', 'hash': '0x1a281d20a56caae64faf1a97ff2618e954325e0479c70f70cd2d8120f23caa28', 'from': '0xe7b10b39f95723465ea407bfb95b201d086197d6', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:57:29.000Z'}}, {'blockNum': '0x7f9259', 'uniqueId': '0x2b90dd4a90dd2049463ce6099dbd34a3251b8fa53145ddbd2457d76ad1e2c06d:log:52', 'hash': '0x2b90dd4a90dd2049463ce6099dbd34a3251b8fa53145ddbd2457d76ad1e2c06d', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x6e0419bf5f2025cf7e25348ceeb4f15a826ab9f7', 'value': 6002.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0145656bdb645a3a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:58:12.000Z'}}, {'blockNum': '0x7f925a', 'uniqueId': '0x8533733ebf8045f348c592e26d88e094cf51cd1c7bf7c7a9b96c6483d3dc9fa8:log:33', 'hash': '0x8533733ebf8045f348c592e26d88e094cf51cd1c7bf7c7a9b96c6483d3dc9fa8', 'from': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'to': '0x2ae3b6daef16755ea996ccc38be8e8285dc57c69', 'value': 4470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xf251b624eccc180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:58:31.000Z'}}, {'blockNum': '0x7f925a', 'uniqueId': '0xcfde9c67b000d938fc9afab3a43049dbf75ae095876fc2a76f907d3f629275e5:log:34', 'hash': '0xcfde9c67b000d938fc9afab3a43049dbf75ae095876fc2a76f907d3f629275e5', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0x6dc70fdca8a6777809df64036e1f5bf231f2192d', 'value': 19970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043a936c2a67c6c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:58:31.000Z'}}, {'blockNum': '0x7f925a', 'uniqueId': '0xba23e4f6274f593e72cd176e831e55f370d977bec38274ab66726d73f33302fc:log:61', 'hash': '0xba23e4f6274f593e72cd176e831e55f370d977bec38274ab66726d73f33302fc', 'from': '0x3b577b699171a3e4d282b33678d9107216c11d5d', 'to': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'value': 120667.0570826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x198d5fd04727fc671000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:58:31.000Z'}}, {'blockNum': '0x7f925a', 'uniqueId': '0xe7486b02e3f6912d0d719b48f4b4e155137efbf916699e382f263633ad215424:log:63', 'hash': '0xe7486b02e3f6912d0d719b48f4b4e155137efbf916699e382f263633ad215424', 'from': '0x200f7e8c628d18b096da6b803bfd65fc41c0acbe', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 118248.1244484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x190a3e613867d97da000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:58:31.000Z'}}, {'blockNum': '0x7f925a', 'uniqueId': '0x1f389e112dd4448a1fb0e633b1949d876487f7d5068f156e41ae0e0cf6186ed4:log:77', 'hash': '0x1f389e112dd4448a1fb0e633b1949d876487f7d5068f156e41ae0e0cf6186ed4', 'from': '0x5ca09cfc38388a47fb9408de4a64b9d23387927f', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:58:31.000Z'}}, {'blockNum': '0x7f925a', 'uniqueId': '0x4644bcc9e431d0ce53d1ff859a8542417677e370a75b5f511f964ee92c65b1a9:log:85', 'hash': '0x4644bcc9e431d0ce53d1ff859a8542417677e370a75b5f511f964ee92c65b1a9', 'from': '0x611c3554cc8423ba3c61183117064dabc1e94e39', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 29678.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0648e6803128553e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:58:31.000Z'}}, {'blockNum': '0x7f925b', 'uniqueId': '0x187a526521d7f41b3243fb7c60e40f320ca7b63402e78fb2668661cbaecbf110:log:71', 'hash': '0x187a526521d7f41b3243fb7c60e40f320ca7b63402e78fb2668661cbaecbf110', 'from': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'to': '0x19b0d7aef95cf4ec00a6881dc0fd40cee28af29a', 'value': 11350, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x026748e4411f6b980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:58:41.000Z'}}, {'blockNum': '0x7f925c', 'uniqueId': '0xf2bff7cb81b1abce01e4d14afa7ea143fa74bbebe07ffba687f7293c74408d08:log:150', 'hash': '0xf2bff7cb81b1abce01e4d14afa7ea143fa74bbebe07ffba687f7293c74408d08', 'from': '0x289350f57a69bb3b53303c2076dc75837fe7a59b', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa10107a043fe280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:58:49.000Z'}}, {'blockNum': '0x7f925e', 'uniqueId': '0xf4a02f4f91984ddbe4d62353bd44eaac441319b02e0bb609b0a905b6aa1ad64f:log:23', 'hash': '0xf4a02f4f91984ddbe4d62353bd44eaac441319b02e0bb609b0a905b6aa1ad64f', 'from': '0x0df281702a3dca92f37eeb1b733ee83a8bea0542', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 50000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968ee7929645868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T08:59:39.000Z'}}, {'blockNum': '0x7f9260', 'uniqueId': '0xed3137f9919261f6a8f411010b53528b0abe04643df9005d55448f6d8d7480cb:log:11', 'hash': '0xed3137f9919261f6a8f411010b53528b0abe04643df9005d55448f6d8d7480cb', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 386794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x51e8250ead8ed9680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:00:02.000Z'}}, {'blockNum': '0x7f9261', 'uniqueId': '0xa9c49c5436379d6a4ee84f65582b59d9156bb5c3f15fe40d28e0bbbe07765c68:log:140', 'hash': '0xa9c49c5436379d6a4ee84f65582b59d9156bb5c3f15fe40d28e0bbbe07765c68', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xb1caa0d3c60a91ccd9e06b3aee5ef718c2f2876e', 'value': 5200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0119e47f21381f400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:00:28.000Z'}}, {'blockNum': '0x7f9263', 'uniqueId': '0xb0480e6be4ffdc06011107a22c1b134baa65cc76598c202d9860f980c45583bb:log:76', 'hash': '0xb0480e6be4ffdc06011107a22c1b134baa65cc76598c202d9860f980c45583bb', 'from': '0xb9432e44a716fba8f6407379d92cb442971cabf5', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 730.4478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2798ffe4058d938000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:00:36.000Z'}}, {'blockNum': '0x7f9263', 'uniqueId': '0x13fd00f4a59219b0716a37d7b783b5afeb0a8e11a09fe1d4d67955405cbdfbb9:log:78', 'hash': '0x13fd00f4a59219b0716a37d7b783b5afeb0a8e11a09fe1d4d67955405cbdfbb9', 'from': '0x541b53f11d07bc39e5bab34802a6f4ce8db166b4', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 59847.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cac5c8b011a6a318000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:00:36.000Z'}}, {'blockNum': '0x7f9264', 'uniqueId': '0x690266a32fcd808c792ac601b1929b77cc952355f3d7e95617495b930b8e3aa9:log:57', 'hash': '0x690266a32fcd808c792ac601b1929b77cc952355f3d7e95617495b930b8e3aa9', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x904b0760f3b71b85f29da8c0f8dc15345df6e655', 'value': 2332.7770194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7e75c8d38fdb865000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:01:24.000Z'}}, {'blockNum': '0x7f9268', 'uniqueId': '0xf419407f273e44ff0323a1a7658a726a90fb2623983a98b540c719233e2eec0a:log:136', 'hash': '0xf419407f273e44ff0323a1a7658a726a90fb2623983a98b540c719233e2eec0a', 'from': '0xb64bb4e861880fd5a711abaac9f17cac52a153ef', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:02:25.000Z'}}, {'blockNum': '0x7f9268', 'uniqueId': '0x8d157f9eb4581545548765a74713605206510cae99142fed456ac81ee30aebde:log:137', 'hash': '0x8d157f9eb4581545548765a74713605206510cae99142fed456ac81ee30aebde', 'from': '0xc749345666dbe97a0c971817676c526657336180', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 58183.4012956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c5220e5a979f0a96000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:02:25.000Z'}}, {'blockNum': '0x7f9268', 'uniqueId': '0x9a699925240f2657d937ef5371eb9284cff4db28cf525d562aea22e92aba0fe7:log:139', 'hash': '0x9a699925240f2657d937ef5371eb9284cff4db28cf525d562aea22e92aba0fe7', 'from': '0xe392c9b431eeefcd1e0bef47cc8931f822f42173', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 57968.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c467fd0ebb5ee180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:02:25.000Z'}}, {'blockNum': '0x7f9268', 'uniqueId': '0x8f8c7c645076fdaafa65eb7f333cced3d56c0786e38ec0d727d75568e96fdb23:log:140', 'hash': '0x8f8c7c645076fdaafa65eb7f333cced3d56c0786e38ec0d727d75568e96fdb23', 'from': '0x69ccadf7816fca57cda9d60ff67141dd4b7193f1', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:02:25.000Z'}}, {'blockNum': '0x7f9269', 'uniqueId': '0x17f8886242ad54e1ee592085dbcc479934592573e315a81febf221e466471602:log:48', 'hash': '0x17f8886242ad54e1ee592085dbcc479934592573e315a81febf221e466471602', 'from': '0x529dab7bad9ef1000c3c0d708878c83fc870f7ae', 'to': '0xdc0ca0763ef0b004f0503afc8b5d647bb887b6e0', 'value': 295.6674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1007359dc977548000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:02:43.000Z'}}, {'blockNum': '0x7f926a', 'uniqueId': '0x9d28cfe3e36977e9b6788365b08e35a6e9d7429aab1ac2f2a7d91d94ea56b8a4:log:99', 'hash': '0x9d28cfe3e36977e9b6788365b08e35a6e9d7429aab1ac2f2a7d91d94ea56b8a4', 'from': '0x3706f8d6d603becd3974c61b0d7da10f9bf2a8d1', 'to': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'value': 674576.4901386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ed8dd63e9a279f51000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:12.000Z'}}, {'blockNum': '0x7f926a', 'uniqueId': '0xabb9a8d20e116a76a16c5c1b5834dfdd3667a1ac3111c26beb40f337168e5e74:log:100', 'hash': '0xabb9a8d20e116a76a16c5c1b5834dfdd3667a1ac3111c26beb40f337168e5e74', 'from': '0x399cf182cbaa2d12d398191a2c6c26a189e40543', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 23330.5836072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04f0c0e38404cba44000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:12.000Z'}}, {'blockNum': '0x7f926a', 'uniqueId': '0x061c11b141cd35f984005001ba075307ec095cc03442500254e4bde86bc7b549:log:106', 'hash': '0x061c11b141cd35f984005001ba075307ec095cc03442500254e4bde86bc7b549', 'from': '0xb3af6a9c8cdce7c75b83dd8bdcf658f52d7c9934', 'to': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'value': 60000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a7d8327974f58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:12.000Z'}}, {'blockNum': '0x7f926a', 'uniqueId': '0xf313b73679e0672655c90514e489d2c66f000ca2583b2fa4902135b0edc051ae:log:109', 'hash': '0xf313b73679e0672655c90514e489d2c66f000ca2583b2fa4902135b0edc051ae', 'from': '0xe5798dfc60cc7a96a927856178171af1f5522f3b', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 59970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb2faef51528fc80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:12.000Z'}}, {'blockNum': '0x7f926a', 'uniqueId': '0x14473c46f64c4476a9d1a5ae4d48addbeb111130d3708c48098f8042433eeb8d:log:111', 'hash': '0x14473c46f64c4476a9d1a5ae4d48addbeb111130d3708c48098f8042433eeb8d', 'from': '0x317420a1ae57c0f064b6e33d25982c95e04637e7', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 50000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968df768bec2b58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:12.000Z'}}, {'blockNum': '0x7f926b', 'uniqueId': '0x4b6fc36b024085684fd2d0b49d28fc9d3b5e9e8299eff8867b451282cde0598a:log:99', 'hash': '0x4b6fc36b024085684fd2d0b49d28fc9d3b5e9e8299eff8867b451282cde0598a', 'from': '0xcc16e1c09dc2843deaa8c087a8f6cb69537a71bd', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 29465.6371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x063d55dbfad0572ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:31.000Z'}}, {'blockNum': '0x7f926b', 'uniqueId': '0x5b5f7d2ce3b541527ced448e0172b4a092bb136677932467c2007689d76617ec:log:100', 'hash': '0x5b5f7d2ce3b541527ced448e0172b4a092bb136677932467c2007689d76617ec', 'from': '0x8b07f0aeb7a18c5d7cd06d49e798dfd132f17ded', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 10000.6371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e22b838cdc4a6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:31.000Z'}}, {'blockNum': '0x7f926b', 'uniqueId': '0xa08e6f29cc5ab96920acf72d518ffd22911b7174ee4cf860f12fade24b3dd1e7:log:104', 'hash': '0xa08e6f29cc5ab96920acf72d518ffd22911b7174ee4cf860f12fade24b3dd1e7', 'from': '0x1c4c95ef0555587e7d52bc2ab5301389ec1e53df', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa10107a043fe280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:31.000Z'}}, {'blockNum': '0x7f926b', 'uniqueId': '0x3eb4c869b1a897236c2c3e698383a75c2dbaada0ea9289945e6fca386b13679d:log:106', 'hash': '0x3eb4c869b1a897236c2c3e698383a75c2dbaada0ea9289945e6fca386b13679d', 'from': '0x406abd306b633b6460666b4092784a3330370c7b', 'to': '0x5bcf2767f86f14edd82053bfbfd5069f68c2c5f8', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:31.000Z'}}, {'blockNum': '0x7f926b', 'uniqueId': '0xf5992953531b436b50044e246519b311c71a114bdaf44c13d52c5bcd6516e139:log:108', 'hash': '0xf5992953531b436b50044e246519b311c71a114bdaf44c13d52c5bcd6516e139', 'from': '0x9f6f49e7e1d8460eb1e4bd396d50aa6243281b0e', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 1940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x692ae8897081d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:31.000Z'}}, {'blockNum': '0x7f926b', 'uniqueId': '0x18286ff94443c7aa0529aa5ec8375b025d75d9081aa81a5dab18d66a00f956bc:log:109', 'hash': '0x18286ff94443c7aa0529aa5ec8375b025d75d9081aa81a5dab18d66a00f956bc', 'from': '0x3be42eabe9b9b97d77f470bc60b749f2324cabc3', 'to': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'value': 42000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08e4dfa9fa8fcdb58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:31.000Z'}}, {'blockNum': '0x7f926c', 'uniqueId': '0x59f8a24b47c0bed7d2e6c1290a69773e523ce6677dd11de1c8be387a3425fd23:log:100', 'hash': '0x59f8a24b47c0bed7d2e6c1290a69773e523ce6677dd11de1c8be387a3425fd23', 'from': '0x75ccdf5e80e6c8616ddbe011c3b9c313e50e791d', 'to': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:03:55.000Z'}}, {'blockNum': '0x7f926e', 'uniqueId': '0xa4c71302bafcbe3470bb451dea31f330e6152b081e8969f37d551ce57a4d9cd5:log:59', 'hash': '0xa4c71302bafcbe3470bb451dea31f330e6152b081e8969f37d551ce57a4d9cd5', 'from': '0x52546c08232d8916da6058cf307e67d35542326d', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 5090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0113edf0a00632480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:04:22.000Z'}}, {'blockNum': '0x7f926e', 'uniqueId': '0xb2c5f5580d4df0eeead006f0773e7a1a49b21e20623d9dad3e4825a5ceb03624:log:110', 'hash': '0xb2c5f5580d4df0eeead006f0773e7a1a49b21e20623d9dad3e4825a5ceb03624', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 33316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070e1060ec4452100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:04:22.000Z'}}, {'blockNum': '0x7f9270', 'uniqueId': '0x99b7edb26173cbaa2e2e9884a1bbcccbf583c6cd96441870f7baa1fb0d140e26:log:41', 'hash': '0x99b7edb26173cbaa2e2e9884a1bbcccbf583c6cd96441870f7baa1fb0d140e26', 'from': '0x5017a991a41d3b521dd8c89bf0c96b37c1562a1b', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 4221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe4d224702efbd40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:04:37.000Z'}}, {'blockNum': '0x7f9272', 'uniqueId': '0x7bc3a45f085be68505afa994d425aaa041dc8bd1613c4d269f5f2cc9e8ca0171:log:99', 'hash': '0x7bc3a45f085be68505afa994d425aaa041dc8bd1613c4d269f5f2cc9e8ca0171', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x0c092f95aeede58ffe89184b5b924866063486f9', 'value': 10900.0739876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x024ee4e9f4a7b598a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:06:03.000Z'}}, {'blockNum': '0x7f9274', 'uniqueId': '0x27e1146be9c4c60198671a313d3b588e1e105180e04983d44f43cd1ab4358f75:log:10', 'hash': '0x27e1146be9c4c60198671a313d3b588e1e105180e04983d44f43cd1ab4358f75', 'from': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'to': '0x52b603b278d95cba2209d66ddf97cfbd899e7fc3', 'value': 16659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x038716112cd5d06c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:06:43.000Z'}}, {'blockNum': '0x7f9274', 'uniqueId': '0xc173197250653b0ba1be20196cde3aa75048c57ae2fbc8d8ef9e04fd9be65c91:log:11', 'hash': '0xc173197250653b0ba1be20196cde3aa75048c57ae2fbc8d8ef9e04fd9be65c91', 'from': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'to': '0x99b3df2ac2225cff7b0061ac48dfc9fb2d5878db', 'value': 28440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0605bc49066c0d600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:06:43.000Z'}}, {'blockNum': '0x7f9274', 'uniqueId': '0x2579ce5f792315c4da4c11be1c92576acfea2cbbc58cab200c928e61fb9f0efd:log:12', 'hash': '0x2579ce5f792315c4da4c11be1c92576acfea2cbbc58cab200c928e61fb9f0efd', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0x6f71c6581b4677d690892bdbe106cd45f6c7665c', 'value': 6950.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0178caf3b22496140000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:06:43.000Z'}}, {'blockNum': '0x7f9274', 'uniqueId': '0xaf5b26dd509e0429935397bd8ba1fea82abea9693e94aaa4ca72559f152c8e9a:log:13', 'hash': '0xaf5b26dd509e0429935397bd8ba1fea82abea9693e94aaa4ca72559f152c8e9a', 'from': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'to': '0x1c7466bd5831a013c979c0643296fbee05446157', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:06:43.000Z'}}, {'blockNum': '0x7f9274', 'uniqueId': '0x2ec22927c31e7314a98a463008057de11294538994418d406576220ff3e48fea:log:14', 'hash': '0x2ec22927c31e7314a98a463008057de11294538994418d406576220ff3e48fea', 'from': '0x16b9017974befb66a7544354887a964c8bad61f8', 'to': '0xa02a3dc8031a7b223ba5eb2047860361071b9f7c', 'value': 610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2111735814dc480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:06:43.000Z'}}, {'blockNum': '0x7f9274', 'uniqueId': '0x59b012aa869bafae39e9b3c5dbd13ce2894e41d7efc789f8d67991adb0be232c:log:29', 'hash': '0x59b012aa869bafae39e9b3c5dbd13ce2894e41d7efc789f8d67991adb0be232c', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xa73df9041af7cf3dd3d31ee203030a76e5282f09', 'value': 47881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a23a25ba796ee840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:06:43.000Z'}}, {'blockNum': '0x7f9277', 'uniqueId': '0xd8c9af3193f0426feee245d8fbcb768f0c89406e5b0da8bcfc598816765678e5:log:112', 'hash': '0xd8c9af3193f0426feee245d8fbcb768f0c89406e5b0da8bcfc598816765678e5', 'from': '0x1c9d2db31e230427d7e099d200bb276b119851a0', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 12129.2342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x029186f0417687498000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:07:01.000Z'}}, {'blockNum': '0x7f9277', 'uniqueId': '0x97351e9a0466aa02510d2c491094c0c551011b73056e31b56e8863778b7c921d:log:113', 'hash': '0x97351e9a0466aa02510d2c491094c0c551011b73056e31b56e8863778b7c921d', 'from': '0xa93ba4aab70e1052e0a2fe02a0c813e16dac9237', 'to': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'value': 10590, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023e15c5dbc67ab80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:07:01.000Z'}}, {'blockNum': '0x7f9278', 'uniqueId': '0xbe7420c653ed363550fde32ec67adfedd0caa13bc871da81564ad30052e61fff:log:4', 'hash': '0xbe7420c653ed363550fde32ec67adfedd0caa13bc871da81564ad30052e61fff', 'from': '0x7ab76e420af219ce991a3a68ee4a70bfe6f9e2a1', 'to': '0x2808e677d2d3f82ecd55e135cc6e606214f62908', 'value': 122386.6295366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x19ea97acdb6245237000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:07:21.000Z'}}, {'blockNum': '0x7f927a', 'uniqueId': '0xa2eab0d407dfddb7d0c14f17cdd724398fce1604bdbcbfc860cf5d33eb1b38e9:log:90', 'hash': '0xa2eab0d407dfddb7d0c14f17cdd724398fce1604bdbcbfc860cf5d33eb1b38e9', 'from': '0x2377fb799d3cdfb63057f3cffb2c0edee84d43b6', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 26206.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x058ca415359a09cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:07:44.000Z'}}, {'blockNum': '0x7f927a', 'uniqueId': '0x36a897a84a95dca5cad68039f3b73debeec83ad269ebb280badb23cdd10db3f3:log:112', 'hash': '0x36a897a84a95dca5cad68039f3b73debeec83ad269ebb280badb23cdd10db3f3', 'from': '0x6d7d915a9ed74a077aea755170f7e159507cf4ad', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 13987.2143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02f63f9792699c09c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:07:44.000Z'}}, {'blockNum': '0x7f927c', 'uniqueId': '0x7606b5037f6c23e222701d4ae8a52b10e1bc5a54550821afe6cf42c660718aa0:log:57', 'hash': '0x7606b5037f6c23e222701d4ae8a52b10e1bc5a54550821afe6cf42c660718aa0', 'from': '0x6e0419bf5f2025cf7e25348ceeb4f15a826ab9f7', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 6002.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0145656bdb645a3a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:08:01.000Z'}}, {'blockNum': '0x7f927e', 'uniqueId': '0xb2838d0da3db9946b6e08098ef1757b8f0a4afbd03904a3a021720e61355beea:log:24', 'hash': '0xb2838d0da3db9946b6e08098ef1757b8f0a4afbd03904a3a021720e61355beea', 'from': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'to': '0x1afb870c13a95431004c6efc4af80c9f1dcd68e2', 'value': 5032.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0110cff796ac19520000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:08:17.000Z'}}, {'blockNum': '0x7f927f', 'uniqueId': '0x98e0209251934cfc3fc9e65716f036a5f78b9f0115bd956f7e6ef6d5e3e826b5:log:57', 'hash': '0x98e0209251934cfc3fc9e65716f036a5f78b9f0115bd956f7e6ef6d5e3e826b5', 'from': '0xc6e8c6279f19506a05d0e94ed0fa7d26583f7157', 'to': '0x000031cc22fc77c6efb6ccb659d567ad8b8890ba', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x016345785d8a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:08:42.000Z'}}, {'blockNum': '0x7f9286', 'uniqueId': '0xdcf799c5cf7db28bac8307ae0b8bb399e5674ffbbd7e2c51a0d6c6232bb23a69:log:15', 'hash': '0xdcf799c5cf7db28bac8307ae0b8bb399e5674ffbbd7e2c51a0d6c6232bb23a69', 'from': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'to': '0xf3b8cf8e26973cfcf62d823aac46526489002226', 'value': 1743.222735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5e8013417e1be80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:10:12.000Z'}}, {'blockNum': '0x7f9286', 'uniqueId': '0xa24aa7e6e06687d01c328e6f8bab59c237a5381a377fb00ad70ad37485f247bb:log:44', 'hash': '0xa24aa7e6e06687d01c328e6f8bab59c237a5381a377fb00ad70ad37485f247bb', 'from': '0xe3b0cad30e3abc0076571bd853933cc2e8db89ba', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:10:12.000Z'}}, {'blockNum': '0x7f9286', 'uniqueId': '0xc1d78550b3bca10d00b5a7e6eb4abde4c789d21d5f57adf19b1e1a23282ad709:log:61', 'hash': '0xc1d78550b3bca10d00b5a7e6eb4abde4c789d21d5f57adf19b1e1a23282ad709', 'from': '0x19b0d7aef95cf4ec00a6881dc0fd40cee28af29a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 12340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x029cf3e6cbe0c0500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:10:12.000Z'}}, {'blockNum': '0x7f9286', 'uniqueId': '0xcc4d688965d7071a2ede6563daa9963d8c697e92fe43251ca98a744bb9fc4627:log:121', 'hash': '0xcc4d688965d7071a2ede6563daa9963d8c697e92fe43251ca98a744bb9fc4627', 'from': '0x190dc6d427d6370ef5c68af5e52e4ae334384546', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 49376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a74ada69abd77800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:10:12.000Z'}}, {'blockNum': '0x7f928a', 'uniqueId': '0x946942a4327c1f50ae90dfbca764c19e9d0589ffaa237b8daa0a53c02c0e3bb4:log:111', 'hash': '0x946942a4327c1f50ae90dfbca764c19e9d0589ffaa237b8daa0a53c02c0e3bb4', 'from': '0x173333cf9fd14011281b87e3c7287b1b654c4d6c', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 3480.7278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbcb0cd4469eae78000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:11:45.000Z'}}, {'blockNum': '0x7f928b', 'uniqueId': '0xcccd46835ef35a17c79dc89fb917d10bbfd23772fa50f94a32d16a19bfe8ba33:log:94', 'hash': '0xcccd46835ef35a17c79dc89fb917d10bbfd23772fa50f94a32d16a19bfe8ba33', 'from': '0x1958d9f482a95610012a4407d8f859962617f405', 'to': '0x0c29c2b80167ce17f32e5d1513ce6fd95f73b196', 'value': 2700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x925e06eec972b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:11:51.000Z'}}, {'blockNum': '0x7f928c', 'uniqueId': '0xf8067ddddf10a369b9b600dee3629234ff5b8ec4ca3646b849ce87699a9dc325:log:4', 'hash': '0xf8067ddddf10a369b9b600dee3629234ff5b8ec4ca3646b849ce87699a9dc325', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x25f8f0bece78e17e360bf85cdc0a5c12254add8b', 'value': 9935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021a93d2661d31dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:12:26.000Z'}}, {'blockNum': '0x7f928c', 'uniqueId': '0x9107072664335de2ea862978e0a51add91501e604a600ce76533e844cc97cb01:log:95', 'hash': '0x9107072664335de2ea862978e0a51add91501e604a600ce76533e844cc97cb01', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 386794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x51e8250ead8ed9680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:12:26.000Z'}}, {'blockNum': '0x7f928c', 'uniqueId': '0xe4dbf29fb8392cbe171d2051d856b99186ad99358206e273610b6b233bc12f0d:log:125', 'hash': '0xe4dbf29fb8392cbe171d2051d856b99186ad99358206e273610b6b233bc12f0d', 'from': '0x122dcee368fb9385508aae456e5e153d783baef0', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 22218.2643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04b4745b7f70cb0ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:12:26.000Z'}}, {'blockNum': '0x7f928d', 'uniqueId': '0x06763b9c15c511ac5863b7de88d814cfac6812e460555c3df99536a47e8917ec:log:86', 'hash': '0x06763b9c15c511ac5863b7de88d814cfac6812e460555c3df99536a47e8917ec', 'from': '0xb249b86786c88a97f0ac8f9759c24d315a5dee80', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 19483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04202cf09aa4578c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:12:45.000Z'}}, {'blockNum': '0x7f9294', 'uniqueId': '0x46d613cd6b5fdb053f764cdd0b2b5d53d2a0b91e55d5b6e240211cf2220abd3b:log:45', 'hash': '0x46d613cd6b5fdb053f764cdd0b2b5d53d2a0b91e55d5b6e240211cf2220abd3b', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x5eef2c2bde0ac7f78750efae40f90dbbb023dd11', 'value': 10554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023c222c2a82f0a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:13:58.000Z'}}, {'blockNum': '0x7f9295', 'uniqueId': '0x6f97d36080263524f6d228d98252e9ef86f9165e811bf0312f7deb87664e40af:log:3', 'hash': '0x6f97d36080263524f6d228d98252e9ef86f9165e811bf0312f7deb87664e40af', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xeb48d07f1872353178c493122f716e54edca8e0d', 'value': 13800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02ec1978c47766a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:14:15.000Z'}}, {'blockNum': '0x7f9295', 'uniqueId': '0xc03bede9c7e228cabd87557ddd9d8b3ab3e01e069a1338c1ec6d857c0680b4d5:log:62', 'hash': '0xc03bede9c7e228cabd87557ddd9d8b3ab3e01e069a1338c1ec6d857c0680b4d5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 6125.461615199796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014c0fdb44f00a5c1a50', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:14:15.000Z'}}, {'blockNum': '0x7f9295', 'uniqueId': '0xc03bede9c7e228cabd87557ddd9d8b3ab3e01e069a1338c1ec6d857c0680b4d5:log:64', 'hash': '0xc03bede9c7e228cabd87557ddd9d8b3ab3e01e069a1338c1ec6d857c0680b4d5', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6125.461615199796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014c0fdb44f00a5c1a50', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:14:15.000Z'}}, {'blockNum': '0x7f9295', 'uniqueId': '0xc03bede9c7e228cabd87557ddd9d8b3ab3e01e069a1338c1ec6d857c0680b4d5:log:69', 'hash': '0xc03bede9c7e228cabd87557ddd9d8b3ab3e01e069a1338c1ec6d857c0680b4d5', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 6125.455489738181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014c0fc581dcdeb3541b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:14:15.000Z'}}, {'blockNum': '0x7f9297', 'uniqueId': '0x6d107a1be4a3ebbca6b3622cf222524ecdbba29c89b55a2543cead5b62c24358:log:111', 'hash': '0x6d107a1be4a3ebbca6b3622cf222524ecdbba29c89b55a2543cead5b62c24358', 'from': '0x1d355cc0989d4615dc9feb6aec8f42fa7662752b', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2f29ace68addd80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:14:32.000Z'}}, {'blockNum': '0x7f9298', 'uniqueId': '0x0163fbdb853eb2f08899a8902cf36fc576cadab3bdea98eda32a011f2071e663:log:107', 'hash': '0x0163fbdb853eb2f08899a8902cf36fc576cadab3bdea98eda32a011f2071e663', 'from': '0xa73df9041af7cf3dd3d31ee203030a76e5282f09', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 47881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a23a25ba796ee840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:15:01.000Z'}}, {'blockNum': '0x7f929d', 'uniqueId': '0x5046748c573d1a808d3fabaec68ec4b6ac10b7f1152f43d0ece0a1a31964a4c2:log:38', 'hash': '0x5046748c573d1a808d3fabaec68ec4b6ac10b7f1152f43d0ece0a1a31964a4c2', 'from': '0x52b603b278d95cba2209d66ddf97cfbd899e7fc3', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 16659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x038716112cd5d06c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:15:38.000Z'}}, {'blockNum': '0x7f92a1', 'uniqueId': '0x9c7f3616b61e411d2704d1bbb7cc68a1ce180a1310c1ef40abc9a606462cee66:log:111', 'hash': '0x9c7f3616b61e411d2704d1bbb7cc68a1ce180a1310c1ef40abc9a606462cee66', 'from': '0x16b9017974befb66a7544354887a964c8bad61f8', 'to': '0x118a622a350e2cd0d9f9a6fff6f51b9dab7d077f', 'value': 39446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x085a5f37c6228a980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:16:43.000Z'}}, {'blockNum': '0x7f92a7', 'uniqueId': '0x2da19ad58ded864ce8083e2bfeb6ed3246b6c485e1055218fdb1e371e457cbb5:log:44', 'hash': '0x2da19ad58ded864ce8083e2bfeb6ed3246b6c485e1055218fdb1e371e457cbb5', 'from': '0x9e06055cf712cd3fe883684bf2f1b748d3b450e3', 'to': '0x731794b14892f16bec982808ad9f661ecb4445cc', 'value': 54731.37261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b96fe60218e120e2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:18:58.000Z'}}, {'blockNum': '0x7f92ac', 'uniqueId': '0x3df149258a76ea88599507925fbbd48c9af6559da4d3eed156d202a5b37bc69f:log:86', 'hash': '0x3df149258a76ea88599507925fbbd48c9af6559da4d3eed156d202a5b37bc69f', 'from': '0x99b3df2ac2225cff7b0061ac48dfc9fb2d5878db', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 28440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0605bc49066c0d600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:20:25.000Z'}}, {'blockNum': '0x7f92ac', 'uniqueId': '0x83faad8e5c886b81aa00e8f187c7376e1a3acf1bcbd09229115a24e359609252:log:89', 'hash': '0x83faad8e5c886b81aa00e8f187c7376e1a3acf1bcbd09229115a24e359609252', 'from': '0x1c7466bd5831a013c979c0643296fbee05446157', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:20:25.000Z'}}, {'blockNum': '0x7f92ad', 'uniqueId': '0x9939f8bf324e9a49c2c057057826b9f83e26db5af98756ae2c3f0eb4e70c89f9:log:126', 'hash': '0x9939f8bf324e9a49c2c057057826b9f83e26db5af98756ae2c3f0eb4e70c89f9', 'from': '0xfae822fcede880a4e7f84ff60b74299ab5b6402c', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1139.3379808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3dc37da110f6d30000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:20:47.000Z'}}, {'blockNum': '0x7f92b0', 'uniqueId': '0x5dea730fd2c81f673c59e90d1680599c71b212e599f6397bf13a473ae1abdcb1:log:140', 'hash': '0x5dea730fd2c81f673c59e90d1680599c71b212e599f6397bf13a473ae1abdcb1', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x2223ebb841d840852bb9e3ffdf61b6d5f166895c', 'value': 70, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03cb71f51fc5580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:21:34.000Z'}}, {'blockNum': '0x7f92b3', 'uniqueId': '0x18bfd9b4a57b25176a83748de5bbc6a41af7e6d2e1c85ad33ccb6349fa92dc2e:log:113', 'hash': '0x18bfd9b4a57b25176a83748de5bbc6a41af7e6d2e1c85ad33ccb6349fa92dc2e', 'from': '0x1afb870c13a95431004c6efc4af80c9f1dcd68e2', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 5032.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0110cff796ac19520000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:22:14.000Z'}}, {'blockNum': '0x7f92c6', 'uniqueId': '0x0c3bad5ec6d007174bc952434f43925c9ce878a61614d29ab6eca643bdcfc3ae:log:70', 'hash': '0x0c3bad5ec6d007174bc952434f43925c9ce878a61614d29ab6eca643bdcfc3ae', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x43988d2837f48e2116c69be92f3c61cadd73d49f', 'value': 3643.8729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc588e5187be47c4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:26:12.000Z'}}, {'blockNum': '0x7f92cb', 'uniqueId': '0xcbb6f8db5244b85956952cca5e2c335a8d09ca7a90e255d4f00df9051a1af93e:log:90', 'hash': '0xcbb6f8db5244b85956952cca5e2c335a8d09ca7a90e255d4f00df9051a1af93e', 'from': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'to': '0xd15674e90a30be21dc0f1179a4fc5f70fe2f3811', 'value': 1830.85208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x63402d3a7d6d0c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:28:47.000Z'}}, {'blockNum': '0x7f92cc', 'uniqueId': '0x8a212e00fc164205e40c0b13bb87376ba9f2f0ad4c2dc2be3101757281c45a01:log:0', 'hash': '0x8a212e00fc164205e40c0b13bb87376ba9f2f0ad4c2dc2be3101757281c45a01', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x017b7883c06916600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:28:56.000Z'}}, {'blockNum': '0x7f92cf', 'uniqueId': '0x0a75a9935738b1f3f41658d569d6365cbdbe4feea42ee147380536a45b74938f:log:117', 'hash': '0x0a75a9935738b1f3f41658d569d6365cbdbe4feea42ee147380536a45b74938f', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0x22eda281bc99ec4ec3b5f07366ff8bdea8448821', 'value': 920.5997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x31e7e3259a8f2d4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:29:17.000Z'}}, {'blockNum': '0x7f92d1', 'uniqueId': '0xe2bd6c02e44e81ad261c8716d495f202a76e87650b1076bdf7bbade69a64ee57:log:54', 'hash': '0xe2bd6c02e44e81ad261c8716d495f202a76e87650b1076bdf7bbade69a64ee57', 'from': '0x5eef2c2bde0ac7f78750efae40f90dbbb023dd11', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 10554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023c222c2a82f0a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:29:29.000Z'}}, {'blockNum': '0x7f92db', 'uniqueId': '0x9b2177ff48b66b578c5f420c2e6ba729ffa6eeb8005d7e3f6be4c6ae9635cc04:log:11', 'hash': '0x9b2177ff48b66b578c5f420c2e6ba729ffa6eeb8005d7e3f6be4c6ae9635cc04', 'from': '0xd15674e90a30be21dc0f1179a4fc5f70fe2f3811', 'to': '0x529dab7bad9ef1000c3c0d708878c83fc870f7ae', 'value': 1830.85208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x63402d3a7d6d0c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:31:33.000Z'}}, {'blockNum': '0x7f92de', 'uniqueId': '0x591310d2e76d5cb479f5c31d4ac2a00ab2ea73405e1d243ea1c9ed2f8c94efc8:log:99', 'hash': '0x591310d2e76d5cb479f5c31d4ac2a00ab2ea73405e1d243ea1c9ed2f8c94efc8', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x584bd340bfd8df2dc128f0afb254089ef3d40ceb', 'value': 3770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc5f4291af16a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:32:16.000Z'}}, {'blockNum': '0x7f92de', 'uniqueId': '0xe83705eec30718a58d285bea4b31efb5f691e39b8040feee69799aee8d63e38d:log:109', 'hash': '0xe83705eec30718a58d285bea4b31efb5f691e39b8040feee69799aee8d63e38d', 'from': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'to': '0x858047c9f380e8c52de72bcd5c329f4f8d136ac7', 'value': 2652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8fc3e4ad1a0ff00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:32:16.000Z'}}, {'blockNum': '0x7f92e8', 'uniqueId': '0x2c28b2fb3562200121d7119a7bf746ea1be619578718e27ae88c60dd79f2b7ba:log:71', 'hash': '0x2c28b2fb3562200121d7119a7bf746ea1be619578718e27ae88c60dd79f2b7ba', 'from': '0x118a622a350e2cd0d9f9a6fff6f51b9dab7d077f', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 43096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09203d24b39b2a600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:33:48.000Z'}}, {'blockNum': '0x7f92ed', 'uniqueId': '0xb42e7fb42b2e86b6a77bb06efbe0c2a9bec81e0cf55a70ce9ce001fa884758d1:log:47', 'hash': '0xb42e7fb42b2e86b6a77bb06efbe0c2a9bec81e0cf55a70ce9ce001fa884758d1', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xa248e47b25f267e34bcb99156b047601bc6a44b0', 'value': 3895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd325fbc767d27c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:34:15.000Z'}}, {'blockNum': '0x7f92f4', 'uniqueId': '0x2531d07bfe8490c1975327dd63dc4c7b7159b93012050e075d9a425ad218c2ce:log:106', 'hash': '0x2531d07bfe8490c1975327dd63dc4c7b7159b93012050e075d9a425ad218c2ce', 'from': '0xf4c0c2b76172e732e790df9b2ebd238c42fc1fb2', 'to': '0xcef9955b736ffcd27eb24f3dfc8e29c8e09986d1', 'value': 5417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0125a7f9ff8103040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:36:08.000Z'}}, {'blockNum': '0x7f92fc', 'uniqueId': '0x0a95da59ed14a02ff0807baf525dbdc5ec7d782b26af37a7134df191cff7356e:log:11', 'hash': '0x0a95da59ed14a02ff0807baf525dbdc5ec7d782b26af37a7134df191cff7356e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 49180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a6a0d9ab9314ef00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:37:48.000Z'}}, {'blockNum': '0x7f92ff', 'uniqueId': '0x9d568ea0adb87118cdff0d3797844a3a560e70c4a1088c09d9ed161ae9b67d90:log:6', 'hash': '0x9d568ea0adb87118cdff0d3797844a3a560e70c4a1088c09d9ed161ae9b67d90', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x763a96cbd3e6c958d6e35f24d571a94069c20b1a', 'value': 10917.9348942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x024fdcc8a493a106b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:38:13.000Z'}}, {'blockNum': '0x7f9302', 'uniqueId': '0xb652391939517479f82017db304e4946401630e151e1375c3f45d78b6ff004e6:log:1', 'hash': '0xb652391939517479f82017db304e4946401630e151e1375c3f45d78b6ff004e6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xade37a762ba51e668375b19c31711f3451e6576d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:39:02.000Z'}}, {'blockNum': '0x7f9302', 'uniqueId': '0xa25ce8620671f363a63009f916258336a0eaf9d198404d95278c598caa821801:log:2', 'hash': '0xa25ce8620671f363a63009f916258336a0eaf9d198404d95278c598caa821801', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 507000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6b5c866b26dfe6e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:39:02.000Z'}}, {'blockNum': '0x7f9303', 'uniqueId': '0xf5bbc7963dbe31d83eeb6a8884241dcf86fadb1b0c82070962017c540754ce34:log:6', 'hash': '0xf5bbc7963dbe31d83eeb6a8884241dcf86fadb1b0c82070962017c540754ce34', 'from': '0x731794b14892f16bec982808ad9f661ecb4445cc', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 54731.37261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b96fe60218e120e2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:39:31.000Z'}}, {'blockNum': '0x7f9304', 'uniqueId': '0x245289d7c46f1557293c5a2c5337d5b3a0cb7ad5aa768bce809c4f1d87de557d:log:130', 'hash': '0x245289d7c46f1557293c5a2c5337d5b3a0cb7ad5aa768bce809c4f1d87de557d', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x99d69db1c06df507242eb6cc349e1dceb2add091', 'value': 11278.12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0263635b31f594840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:39:36.000Z'}}, {'blockNum': '0x7f9304', 'uniqueId': '0x49dfc1616d79480d9418b6ebf32a84b837806f89d80a1840664e27b215279730:log:131', 'hash': '0x49dfc1616d79480d9418b6ebf32a84b837806f89d80a1840664e27b215279730', 'from': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'to': '0x5e7bc8a20aed5d140add4dc780e85c434a81f82d', 'value': 2798.5259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x97b5593ed30658c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:39:36.000Z'}}, {'blockNum': '0x7f9307', 'uniqueId': '0x95f63ba5690b33d17ce7f578e29b5bdb4768d1e460c617cc14c640401c8207fa:log:2', 'hash': '0x95f63ba5690b33d17ce7f578e29b5bdb4768d1e460c617cc14c640401c8207fa', 'from': '0x000031cc22fc77c6efb6ccb659d567ad8b8890ba', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x016345785d8a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:40:05.000Z'}}, {'blockNum': '0x7f930a', 'uniqueId': '0x2abefc6d3f0fcb3ab6e5daf6f25f32de2106e189fbb66c786c21159e1b90ea82:log:11', 'hash': '0x2abefc6d3f0fcb3ab6e5daf6f25f32de2106e189fbb66c786c21159e1b90ea82', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6d297fa714a72654a90d42b6683cbdc4c0d1c82b', 'value': 10047.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220b3a5f6a737e28000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:40:40.000Z'}}, {'blockNum': '0x7f9313', 'uniqueId': '0xcdc5dba7a8791d7ddb5dffda85b45f17fdcd8cadf15e827fc96b90bd079dec7e:log:53', 'hash': '0xcdc5dba7a8791d7ddb5dffda85b45f17fdcd8cadf15e827fc96b90bd079dec7e', 'from': '0xdc0ca0763ef0b004f0503afc8b5d647bb887b6e0', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 295.6674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1007359dc977548000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:42:23.000Z'}}, {'blockNum': '0x7f9315', 'uniqueId': '0xfa3a10f68ac8b73be7566b34987ceb43df4ce390b88219ff56044978f2e383be:log:117', 'hash': '0xfa3a10f68ac8b73be7566b34987ceb43df4ce390b88219ff56044978f2e383be', 'from': '0x25f8f0bece78e17e360bf85cdc0a5c12254add8b', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 9935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021a93d2661d31dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:43:22.000Z'}}, {'blockNum': '0x7f931a', 'uniqueId': '0x07b34a39ff50eba0516ac41c516b63824807cad0c2bb9fdc6cfe972cd6cbd796:log:94', 'hash': '0x07b34a39ff50eba0516ac41c516b63824807cad0c2bb9fdc6cfe972cd6cbd796', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x7a0418936c20f851dc8631691c2a6d42b0f4cfe5', 'value': 26382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05962bcc462c63780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:43:58.000Z'}}, {'blockNum': '0x7f931b', 'uniqueId': '0xe3c81102195dabe1fd38a3489e02b6fd4bed8d17babb384612b9a2a3010c87e5:log:10', 'hash': '0xe3c81102195dabe1fd38a3489e02b6fd4bed8d17babb384612b9a2a3010c87e5', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x4df49898be757fd9528dc0f6eacd6150912a33fb', 'value': 2770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x962978e3e938080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:44:13.000Z'}}, {'blockNum': '0x7f931b', 'uniqueId': '0x8ce4071b27fc78287c933d94b0d09b45e423e7cd0c1ca2d9deaf43844c33bea0:log:15', 'hash': '0x8ce4071b27fc78287c933d94b0d09b45e423e7cd0c1ca2d9deaf43844c33bea0', 'from': '0x858047c9f380e8c52de72bcd5c329f4f8d136ac7', 'to': '0x43988d2837f48e2116c69be92f3c61cadd73d49f', 'value': 2652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8fc3e4ad1a0ff00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:44:13.000Z'}}, {'blockNum': '0x7f931b', 'uniqueId': '0x1a3039997884902c4220d8fd94f2cc313ca54d5974928b74fc3716f941f7112f:log:16', 'hash': '0x1a3039997884902c4220d8fd94f2cc313ca54d5974928b74fc3716f941f7112f', 'from': '0x08a1d94f9baa873f46ce0cb2be48235704155558', 'to': '0x43988d2837f48e2116c69be92f3c61cadd73d49f', 'value': 1570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x551c2079c893480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:44:13.000Z'}}, {'blockNum': '0x7f931b', 'uniqueId': '0x9202dcff630d8d67e81155f91b6c5c9e36611cd00e479744121edbdf53ad4f41:log:17', 'hash': '0x9202dcff630d8d67e81155f91b6c5c9e36611cd00e479744121edbdf53ad4f41', 'from': '0x22eda281bc99ec4ec3b5f07366ff8bdea8448821', 'to': '0x43988d2837f48e2116c69be92f3c61cadd73d49f', 'value': 920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x31df9095a18f600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:44:13.000Z'}}, {'blockNum': '0x7f9320', 'uniqueId': '0xb99216e61e2c7cf8090c4b6277f7864a9c038f83ea4f7cf992c80f1737e0f3b3:log:40', 'hash': '0xb99216e61e2c7cf8090c4b6277f7864a9c038f83ea4f7cf992c80f1737e0f3b3', 'from': '0xa248e47b25f267e34bcb99156b047601bc6a44b0', 'to': '0x43988d2837f48e2116c69be92f3c61cadd73d49f', 'value': 2895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9cf03219a1f3dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:44:41.000Z'}}, {'blockNum': '0x7f9321', 'uniqueId': '0xeb9416fbd50bb974b8d7ac39dcaecbb97a2b59ce3fbd8061aa2b51a3c7802ca3:log:55', 'hash': '0xeb9416fbd50bb974b8d7ac39dcaecbb97a2b59ce3fbd8061aa2b51a3c7802ca3', 'from': '0x5e7bc8a20aed5d140add4dc780e85c434a81f82d', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 2798.5259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x97b5593ed30658c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:44:43.000Z'}}, {'blockNum': '0x7f9328', 'uniqueId': '0x131ad273e9faf59c6ef0ac4221824208f428bb5a1be959b259ddb93845f51bae:log:16', 'hash': '0x131ad273e9faf59c6ef0ac4221824208f428bb5a1be959b259ddb93845f51bae', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 514000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6cd7feeee748fd400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:45:43.000Z'}}, {'blockNum': '0x7f932e', 'uniqueId': '0xb176543b9a43e4768ffcc894f15a846fd8bf41d734bdf7e936de687bfcad2fc2:log:107', 'hash': '0xb176543b9a43e4768ffcc894f15a846fd8bf41d734bdf7e936de687bfcad2fc2', 'from': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'to': '0xfede420aa6c80dbb58c0a9b4c78f2d5a8dd23d23', 'value': 70, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03cb71f51fc5580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:46:49.000Z'}}, {'blockNum': '0x7f9334', 'uniqueId': '0x393bfa60ea75ed879d23c227431088131963ad812a74c3734e66f9d0910e2d9e:log:38', 'hash': '0x393bfa60ea75ed879d23c227431088131963ad812a74c3734e66f9d0910e2d9e', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd85afa2baa930c39b92619914479d756fe2dbcbd', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:47:24.000Z'}}, {'blockNum': '0x7f9338', 'uniqueId': '0x0d712d34a2971c21cf231842e0779124573eb5622a5725c91ba205bc65685439:log:12', 'hash': '0x0d712d34a2971c21cf231842e0779124573eb5622a5725c91ba205bc65685439', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xacdbc00cf161ccabc87415528c286055eda4616d', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:48:43.000Z'}}, {'blockNum': '0x7f9339', 'uniqueId': '0x7f2fb06f4429eb624e62bb7b715a5ca4d79712a146bf2812759e6ce7f14473f9:log:81', 'hash': '0x7f2fb06f4429eb624e62bb7b715a5ca4d79712a146bf2812759e6ce7f14473f9', 'from': '0xf0b23cbf4454d384bfa94358b18e24b1eaef0ede', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3487367941bc668000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:49:01.000Z'}}, {'blockNum': '0x7f9339', 'uniqueId': '0x22aa749f3aa4263f835669ae5ce141a6a0e0dce08136f684c191b7cfe06e931d:log:90', 'hash': '0x22aa749f3aa4263f835669ae5ce141a6a0e0dce08136f684c191b7cfe06e931d', 'from': '0xcef9955b736ffcd27eb24f3dfc8e29c8e09986d1', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 5417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0125a7f9ff8103040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:49:01.000Z'}}, {'blockNum': '0x7f933c', 'uniqueId': '0x742e92ecccafd98c84147da4328c287ebcbb27633e351a749ec1b443b98a6b0b:log:16', 'hash': '0x742e92ecccafd98c84147da4328c287ebcbb27633e351a749ec1b443b98a6b0b', 'from': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'to': '0xf3b8cf8e26973cfcf62d823aac46526489002226', 'value': 2977.365341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa1673e92e1c0c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:49:23.000Z'}}, {'blockNum': '0x7f933e', 'uniqueId': '0x1402d9d56f40feb666d58d8d3c39a9069f6bba743a6cb0a5d50913f006fbd5d0:log:9', 'hash': '0x1402d9d56f40feb666d58d8d3c39a9069f6bba743a6cb0a5d50913f006fbd5d0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 38100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x081167b7298c6ed00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:49:49.000Z'}}, {'blockNum': '0x7f933e', 'uniqueId': '0xb66a366e5003d00d2d436b26b81025c16036bbfc49e7c0f8c7ea9f87e43bb96d:log:19', 'hash': '0xb66a366e5003d00d2d436b26b81025c16036bbfc49e7c0f8c7ea9f87e43bb96d', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x8cd9f39e60dadd174f5cdfe67f539e15f913b877', 'value': 273265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x39ddb9af6ffaaf240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:49:49.000Z'}}, {'blockNum': '0x7f933f', 'uniqueId': '0x441c820a11832c10e6feae5d0981cb89eaaad3141bfcc89bbae67fffa0b074f0:log:83', 'hash': '0x441c820a11832c10e6feae5d0981cb89eaaad3141bfcc89bbae67fffa0b074f0', 'from': '0x99d69db1c06df507242eb6cc349e1dceb2add091', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 11278.12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0263635b31f594840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:50:03.000Z'}}, {'blockNum': '0x7f9345', 'uniqueId': '0x1e30581d80cd81c842cba2c0d82e4171ade782e903a0807064ab56c76e1d1c00:log:1', 'hash': '0x1e30581d80cd81c842cba2c0d82e4171ade782e903a0807064ab56c76e1d1c00', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xa58c619439bc26205d8800ec8d2010af7d89bc51', 'value': 10124.1584286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0224d4ec22b8aff33000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:50:43.000Z'}}, {'blockNum': '0x7f934e', 'uniqueId': '0xa3ac5111d0a11b98cfaa3e9d11b0610bcbe8d378ea88941494e33581f74dc571:log:24', 'hash': '0xa3ac5111d0a11b98cfaa3e9d11b0610bcbe8d378ea88941494e33581f74dc571', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0c092f95aeede58ffe89184b5b924866063486f9', 'value': 4660.5685066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xfca6617c00a1c71000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:52:22.000Z'}}, {'blockNum': '0x7f9354', 'uniqueId': '0x0c500e0cc3906bfa8ae045f4d853b5234d800482f1ce0bcfc2606628cdd28dde:log:31', 'hash': '0x0c500e0cc3906bfa8ae045f4d853b5234d800482f1ce0bcfc2606628cdd28dde', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x09d2e6763331c3519476ae5f87fa74ba4e56cdb6', 'value': 6430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015c922cf46661b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:53:55.000Z'}}, {'blockNum': '0x7f9354', 'uniqueId': '0x51f67b1b086da6a96b17798a787f431974ba143314dae0ea5880a2bb782e9a2e:log:61', 'hash': '0x51f67b1b086da6a96b17798a787f431974ba143314dae0ea5880a2bb782e9a2e', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xecc8a448f605bcd2ea92543d5670e1bb47488e44', 'value': 11270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0262f2ab28fb1c580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:53:55.000Z'}}, {'blockNum': '0x7f9356', 'uniqueId': '0x496339c159566ba4f18105b541b9a6f0ab2b44b30c911f7f3d5b4ad1d52bbe6e:log:29', 'hash': '0x496339c159566ba4f18105b541b9a6f0ab2b44b30c911f7f3d5b4ad1d52bbe6e', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xdd5e39193ff0d2141af67951460bb3a414709ce4', 'value': 10770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0247d7c652182d080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:54:14.000Z'}}, {'blockNum': '0x7f9357', 'uniqueId': '0xd1454b5b20401ba19e2d9dcb4d7a261a459328dd7a309c29ebf779fe18164cae:log:0', 'hash': '0xd1454b5b20401ba19e2d9dcb4d7a261a459328dd7a309c29ebf779fe18164cae', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x8112851003c7047161a2d5b0723e2a7ea10396b4', 'value': 7842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a91d9cab4da5480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:54:16.000Z'}}, {'blockNum': '0x7f935d', 'uniqueId': '0x789368636d300515f8a63e55d5cd9b5dfd8f8c5f55c4bada0e9b01dfd30ddf98:log:22', 'hash': '0x789368636d300515f8a63e55d5cd9b5dfd8f8c5f55c4bada0e9b01dfd30ddf98', 'from': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'to': '0xeccab99f2771999525c34ef98e6d05cfe1facc1a', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:55:09.000Z'}}, {'blockNum': '0x7f935d', 'uniqueId': '0xb62b279f750d946c4f9ed079629767d572a25039d7626d68e8acec4db2846f8c:log:58', 'hash': '0xb62b279f750d946c4f9ed079629767d572a25039d7626d68e8acec4db2846f8c', 'from': '0x43988d2837f48e2116c69be92f3c61cadd73d49f', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 17081.8729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x039e029b82e897b44000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:55:09.000Z'}}, {'blockNum': '0x7f9363', 'uniqueId': '0xb55d79bfac8124b4fd18daea2301e04df2a73da07dcf47d25fde75f299a3f683:log:17', 'hash': '0xb55d79bfac8124b4fd18daea2301e04df2a73da07dcf47d25fde75f299a3f683', 'from': '0x8cd9f39e60dadd174f5cdfe67f539e15f913b877', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 273265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x39ddb9af6ffaaf240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:56:02.000Z'}}, {'blockNum': '0x7f9364', 'uniqueId': '0x3a77d136b2943d8adf2ce4f3fe3c2fa2dfa27709f75bf3ac80131fd3826786e1:log:55', 'hash': '0x3a77d136b2943d8adf2ce4f3fe3c2fa2dfa27709f75bf3ac80131fd3826786e1', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 38100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x081167b7298c6ed00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:56:11.000Z'}}, {'blockNum': '0x7f9367', 'uniqueId': '0xde6c5b85ded0a02b895dab22554a6e765f8793a8ddda768050ce8a0f48aa9367:log:8', 'hash': '0xde6c5b85ded0a02b895dab22554a6e765f8793a8ddda768050ce8a0f48aa9367', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x0e64aa57b0f886f76c02621ddc8371b3db148929', 'value': 11560.2811272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0272af20e431a8534000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:57:23.000Z'}}, {'blockNum': '0x7f936d', 'uniqueId': '0x74aee29326af962ee434c5f980588f3c63c8e9a07a0253e4e9e96aaeea175dda:log:91', 'hash': '0x74aee29326af962ee434c5f980588f3c63c8e9a07a0253e4e9e96aaeea175dda', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xd932f68c97733bce7c6cc77a26f7938cbfa6f81c', 'value': 5248.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x011c8b1ed422cbda0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:58:05.000Z'}}, {'blockNum': '0x7f9372', 'uniqueId': '0x6bc810ef58f6b6229670223c03d5c6d4a54a15357b4b2bb83735beab9c0b4b26:log:101', 'hash': '0x6bc810ef58f6b6229670223c03d5c6d4a54a15357b4b2bb83735beab9c0b4b26', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xad9c27006023a6eea2a9b4eedc7bf9a802926e49', 'value': 10531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023ae2fbc05ee6ac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T09:59:29.000Z'}}, {'blockNum': '0x7f9375', 'uniqueId': '0xaa826121610a9a0e6cd7af772f7c375c2b93556631f9e7a0946cba74ae09f43c:log:83', 'hash': '0xaa826121610a9a0e6cd7af772f7c375c2b93556631f9e7a0946cba74ae09f43c', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb53205a2a37d53eea86ab31d989f5d0713c7ed09', 'value': 23500.3245844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04f9f4849b74b5522000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:00:07.000Z'}}, {'blockNum': '0x7f9381', 'uniqueId': '0xe1a41353784d90353eecefced26a25c32c362ea22ed96a610b2d1311b715c3d1:log:46', 'hash': '0xe1a41353784d90353eecefced26a25c32c362ea22ed96a610b2d1311b715c3d1', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x9441a14aaaf8dac2e28f1b6404803f590835e1c7', 'value': 8370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01c5bd157dd6e3880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:04:10.000Z'}}, {'blockNum': '0x7f9382', 'uniqueId': '0x063e9efcc19f716b50e74a84643c7d2d866ed7c3813b20c737b023c3fbab2680:log:21', 'hash': '0x063e9efcc19f716b50e74a84643c7d2d866ed7c3813b20c737b023c3fbab2680', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x3e4ebc2f7b218817139f48016c441bc3df6e2a1c', 'value': 23446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04f7029ce9c4a0980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:04:12.000Z'}}, {'blockNum': '0x7f9382', 'uniqueId': '0x39176e3803a713878eb00eeeea320b8ae53ebb0f2de93975a94b6647566bacb4:log:24', 'hash': '0x39176e3803a713878eb00eeeea320b8ae53ebb0f2de93975a94b6647566bacb4', 'from': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'to': '0x0f47c3095db8eee476f575ac256a68416c002e04', 'value': 5659.6484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0132cf6649b297e90000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:04:12.000Z'}}, {'blockNum': '0x7f9383', 'uniqueId': '0x37ce42e9a84fd8292d9731cb21e69cd929adfaec45ceed840687d2fcb47ec49f:log:56', 'hash': '0x37ce42e9a84fd8292d9731cb21e69cd929adfaec45ceed840687d2fcb47ec49f', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0x6e5b54c65a7510492eaad725d4af363f1808284f', 'value': 40661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x089c3cbae4c9fe340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:04:30.000Z'}}, {'blockNum': '0x7f938b', 'uniqueId': '0x33898d9d13e287ecf97f35ddc8b8f51e4c711df4b71f0f1eccd1cb28ecaa08e6:log:38', 'hash': '0x33898d9d13e287ecf97f35ddc8b8f51e4c711df4b71f0f1eccd1cb28ecaa08e6', 'from': '0xecc8a448f605bcd2ea92543d5670e1bb47488e44', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 11270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0262f2ab28fb1c580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:06:22.000Z'}}, {'blockNum': '0x7f9391', 'uniqueId': '0x0746e7e937b051eddacdd2d46fc4bf0caa814be3d994057eea3e891b784f4162:log:78', 'hash': '0x0746e7e937b051eddacdd2d46fc4bf0caa814be3d994057eea3e891b784f4162', 'from': '0xa248e47b25f267e34bcb99156b047601bc6a44b0', 'to': '0x43988d2837f48e2116c69be92f3c61cadd73d49f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:07:07.000Z'}}, {'blockNum': '0x7f9394', 'uniqueId': '0xa926418f7f7a4c728891d7d491c498fa632ae90930877fa88ff23b0f0b01fe3d:log:47', 'hash': '0xa926418f7f7a4c728891d7d491c498fa632ae90930877fa88ff23b0f0b01fe3d', 'from': '0xdd5e39193ff0d2141af67951460bb3a414709ce4', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 10770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0247d7c652182d080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:07:20.000Z'}}, {'blockNum': '0x7f939e', 'uniqueId': '0x0d8956efa871330ca47764acdd813dde8ab4659ba6dd54a93352b55ff2247965:log:6', 'hash': '0x0d8956efa871330ca47764acdd813dde8ab4659ba6dd54a93352b55ff2247965', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 20436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0453d678bd6e7ad00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:08:48.000Z'}}, {'blockNum': '0x7f93aa', 'uniqueId': '0x49e55d63f6c8145eb4145e2e9a53e24397690d740a956fe38ea4de1e536d2e34:log:98', 'hash': '0x49e55d63f6c8145eb4145e2e9a53e24397690d740a956fe38ea4de1e536d2e34', 'from': '0x3e4ebc2f7b218817139f48016c441bc3df6e2a1c', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 23446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04f7029ce9c4a0980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:11:14.000Z'}}, {'blockNum': '0x7f93b7', 'uniqueId': '0x159c754070bf7b11fd04e38d2fca5e978b1554308c1fbbd1c5fde0b0befe7716:log:122', 'hash': '0x159c754070bf7b11fd04e38d2fca5e978b1554308c1fbbd1c5fde0b0befe7716', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x94d348d1a7182f08459e4779f86f3f680a720e58', 'value': 1970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6acb3df27e1f880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:14:05.000Z'}}, {'blockNum': '0x7f93bf', 'uniqueId': '0xd7a98a7b3faa6b105e33fa5ff2d5da4c58bb5d5fed5999b5bef3c369f0ba478f:log:121', 'hash': '0xd7a98a7b3faa6b105e33fa5ff2d5da4c58bb5d5fed5999b5bef3c369f0ba478f', 'from': '0x6e5b54c65a7510492eaad725d4af363f1808284f', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 40661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x089c3cbae4c9fe340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:15:12.000Z'}}, {'blockNum': '0x7f93bf', 'uniqueId': '0xbf9f39f8e540d11bce9e42e73854867a63a880310e0b17f66a4416a0f5fc36f3:log:125', 'hash': '0xbf9f39f8e540d11bce9e42e73854867a63a880310e0b17f66a4416a0f5fc36f3', 'from': '0x9441a14aaaf8dac2e28f1b6404803f590835e1c7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 10535.493833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023b21590dacc3999000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:15:12.000Z'}}, {'blockNum': '0x7f93c9', 'uniqueId': '0x6fb8bafc360cb10c6ca65e75ef5a1bd723354bab527d33f0d44ef5e7e1cf9115:log:21', 'hash': '0x6fb8bafc360cb10c6ca65e75ef5a1bd723354bab527d33f0d44ef5e7e1cf9115', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x00f53271d8cc8928ac0ce7ab70367bf8e30a3fa0', 'value': 971.6530228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34ac64fc32c0872000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:18:01.000Z'}}, {'blockNum': '0x7f93cb', 'uniqueId': '0x7f656a888d5873dcf227e6be47b9e0b30802d7251b6b94e6df807f726861b25a:log:66', 'hash': '0x7f656a888d5873dcf227e6be47b9e0b30802d7251b6b94e6df807f726861b25a', 'from': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'to': '0x9a8f936f3426564d33d8c7d2a827676587e73561', 'value': 21908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04a3a2934670f9d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:18:11.000Z'}}, {'blockNum': '0x7f93cf', 'uniqueId': '0xc4ef9ddf1bc4aa6aa30633c2c7cb865e9b868339dc96ced8b6b7aefaa8923739:log:48', 'hash': '0xc4ef9ddf1bc4aa6aa30633c2c7cb865e9b868339dc96ced8b6b7aefaa8923739', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 55.91414103595253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0307f6ef06c10aedae', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:18:47.000Z'}}, {'blockNum': '0x7f93cf', 'uniqueId': '0xc4ef9ddf1bc4aa6aa30633c2c7cb865e9b868339dc96ced8b6b7aefaa8923739:log:50', 'hash': '0xc4ef9ddf1bc4aa6aa30633c2c7cb865e9b868339dc96ced8b6b7aefaa8923739', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x46015322832a58fa12e669a1abffa4b63251eee6', 'value': 55.91414103595253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0307f6ef06c10aedae', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:18:47.000Z'}}, {'blockNum': '0x7f93d1', 'uniqueId': '0x00eb42a4b346113a6532e2da1fea71198424b989703e84fa3223673716d7c5f8:log:82', 'hash': '0x00eb42a4b346113a6532e2da1fea71198424b989703e84fa3223673716d7c5f8', 'from': '0x6dc70fdca8a6777809df64036e1f5bf231f2192d', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 19970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043a936c2a67c6c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:19:30.000Z'}}, {'blockNum': '0x7f93d3', 'uniqueId': '0x98d780436be63c29f0d013e83be608d906b5fab27a3023ddeec337ae0186b8d6:log:53', 'hash': '0x98d780436be63c29f0d013e83be608d906b5fab27a3023ddeec337ae0186b8d6', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xa3ebf1d44ea33cbb9bb4bf47fb61c248796cd3c3', 'value': 1370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a4491bd6dcd280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:20:04.000Z'}}, {'blockNum': '0x7f93d5', 'uniqueId': '0xdf5778c735111c6ce57a2d0a8a64fc96ce99d646e088a227599973e02e80e028:log:50', 'hash': '0xdf5778c735111c6ce57a2d0a8a64fc96ce99d646e088a227599973e02e80e028', 'from': '0xf3b8cf8e26973cfcf62d823aac46526489002226', 'to': '0x64c3914f039c57baf2cb006fbadc8f3af84ac0f7', 'value': 3620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc43d97846b02100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:20:44.000Z'}}, {'blockNum': '0x7f93d5', 'uniqueId': '0x1efbc40304b41cb05aec62301a7dd7c04147f3b77b5191a89d7eeefc48cd88e3:log:106', 'hash': '0x1efbc40304b41cb05aec62301a7dd7c04147f3b77b5191a89d7eeefc48cd88e3', 'from': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'to': '0xe55b54581f48ff65e1d999725a582f9d0d810a96', 'value': 11179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x025e03ca371e9bcc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:20:44.000Z'}}, {'blockNum': '0x7f93d7', 'uniqueId': '0x6d0e8c6f44e8974abf8bb2120f831816178013b9f833966d09939296a74993cd:log:8', 'hash': '0x6d0e8c6f44e8974abf8bb2120f831816178013b9f833966d09939296a74993cd', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x25f8f0bece78e17e360bf85cdc0a5c12254add8b', 'value': 18290.218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03df83c3ad4597910000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:21:02.000Z'}}, {'blockNum': '0x7f93dd', 'uniqueId': '0x216674b7c4a94bd604cda41f5a830c0863891babae3f89f95bb1a3ac134cea26:log:11', 'hash': '0x216674b7c4a94bd604cda41f5a830c0863891babae3f89f95bb1a3ac134cea26', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xfd0001f1ca0a833097640704c1c0da930ad1d35d', 'value': 10148.0660446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022620b50cce32653000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:22:10.000Z'}}, {'blockNum': '0x7f93df', 'uniqueId': '0xbb53c74fcb58808eb0a837f9fc2803e0c999fc2f857a3b0d155dc7d0e3ca893f:log:40', 'hash': '0xbb53c74fcb58808eb0a837f9fc2803e0c999fc2f857a3b0d155dc7d0e3ca893f', 'from': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'to': '0x779968df0ea95eb1869861279c9e854c882ca86d', 'value': 45410.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x099db281f7eb50e60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:22:26.000Z'}}, {'blockNum': '0x7f93ee', 'uniqueId': '0xc95be9f6903e1df9c1eed212814cc135dd8487add3aa5e181325b848a6285ddf:log:4', 'hash': '0xc95be9f6903e1df9c1eed212814cc135dd8487add3aa5e181325b848a6285ddf', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xac2623c6a4bec59f7fedcabc33a9da0ce555631c', 'value': 10166.663049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022722cae1c6aec59000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:26:00.000Z'}}, {'blockNum': '0x7f93ef', 'uniqueId': '0xbc5337a182baa7bcf1e11781e58abc08830a22cfc495f3c97b71d077321d0829:log:90', 'hash': '0xbc5337a182baa7bcf1e11781e58abc08830a22cfc495f3c97b71d077321d0829', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x443acc78d48279722e26354053d67f25a5715a8d', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:26:03.000Z'}}, {'blockNum': '0x7f93f5', 'uniqueId': '0xb9145bedb833fd3075f8e03081da5d848762c8c710f604509a6b70d1509336c2:log:177', 'hash': '0xb9145bedb833fd3075f8e03081da5d848762c8c710f604509a6b70d1509336c2', 'from': '0xe55b54581f48ff65e1d999725a582f9d0d810a96', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 11179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x025e03ca371e9bcc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:27:32.000Z'}}, {'blockNum': '0x7f9405', 'uniqueId': '0x4034fe66cefbc5c65f433faaba4ab8148af39ab68748260f9ef253a9edb57a44:log:104', 'hash': '0x4034fe66cefbc5c65f433faaba4ab8148af39ab68748260f9ef253a9edb57a44', 'from': '0x9a8f936f3426564d33d8c7d2a827676587e73561', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 21908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04a3a2934670f9d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:31:21.000Z'}}, {'blockNum': '0x7f9409', 'uniqueId': '0xe99f0a52b53e98916fbdf7862809c643adb68383efd7c0cfb72032605aa65802:log:26', 'hash': '0xe99f0a52b53e98916fbdf7862809c643adb68383efd7c0cfb72032605aa65802', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xe05af6f8915e5278a92c4f18b4e7cd2b833c8096', 'value': 10003.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e51068fc672b28000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:32:46.000Z'}}, {'blockNum': '0x7f9419', 'uniqueId': '0xdd6ce4775118fcc1e0c2878a2cced806bb357814cd380c5476219e49d63d288e:log:10', 'hash': '0xdd6ce4775118fcc1e0c2878a2cced806bb357814cd380c5476219e49d63d288e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7d87d87399422d091c9c64317df1c5f44bba07c3', 'value': 47968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a28673d60959bc68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:36:01.000Z'}}, {'blockNum': '0x7f9419', 'uniqueId': '0x7310d97cffe59fe8f62756f98fde31516ffb2dc82ef4ccd2e1ac44682a26e0c4:log:72', 'hash': '0x7310d97cffe59fe8f62756f98fde31516ffb2dc82ef4ccd2e1ac44682a26e0c4', 'from': '0x779968df0ea95eb1869861279c9e854c882ca86d', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 45410.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x099db281f7eb50e60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:36:01.000Z'}}, {'blockNum': '0x7f941a', 'uniqueId': '0x0c6fad41ffcf7727c2fbfd2ac5d6933d9e33933ec2b33e171fef58556498c079:log:115', 'hash': '0x0c6fad41ffcf7727c2fbfd2ac5d6933d9e33933ec2b33e171fef58556498c079', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x8ec37f1d50f3651fcf077320d2ae1e305b105b3f', 'value': 2632.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8eb11cf201b7340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:36:11.000Z'}}, {'blockNum': '0x7f943b', 'uniqueId': '0x57f772e60c331e453df374d6fd5211c0f088cf630d22bf7a12981383985a318b:log:92', 'hash': '0x57f772e60c331e453df374d6fd5211c0f088cf630d22bf7a12981383985a318b', 'from': '0x25f8f0bece78e17e360bf85cdc0a5c12254add8b', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 18290.218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03df83c3ad4597910000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:43:37.000Z'}}, {'blockNum': '0x7f9441', 'uniqueId': '0x071cb07926cbfd84a166d1e4cef3c649f035c38702a8641c249e8fd781fb5a41:log:73', 'hash': '0x071cb07926cbfd84a166d1e4cef3c649f035c38702a8641c249e8fd781fb5a41', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xec6b73dcf63ca0a7404aa75040cce9efb402df65', 'value': 10125.6800792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0224ea0a1fe14d35c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:44:49.000Z'}}, {'blockNum': '0x7f9450', 'uniqueId': '0x51248a7a24326fc0cb1f91cf42351cbd862809f3516f7dcbc7f27a8cca4f670a:log:57', 'hash': '0x51248a7a24326fc0cb1f91cf42351cbd862809f3516f7dcbc7f27a8cca4f670a', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x432452ec7c094b90cd0cd963c1f46fcb246f4e49', 'value': 13903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02f1aee246bfbfdc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:48:13.000Z'}}, {'blockNum': '0x7f9451', 'uniqueId': '0x9080900fe5804dd0b58a31ab3c8264aed688cb6dd2a8b56cc63a6f4cdac31ba4:log:17', 'hash': '0x9080900fe5804dd0b58a31ab3c8264aed688cb6dd2a8b56cc63a6f4cdac31ba4', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb853a49b76297d863178086a555ae5a9d6e58605', 'value': 20028.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043dc5d9310c7db68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:48:23.000Z'}}, {'blockNum': '0x7f9456', 'uniqueId': '0x959be625f64c7cb00ad9236f566721dedb0d25bc509d9b9eddcd90a1fa89ea91:log:15', 'hash': '0x959be625f64c7cb00ad9236f566721dedb0d25bc509d9b9eddcd90a1fa89ea91', 'from': '0x00f53271d8cc8928ac0ce7ab70367bf8e30a3fa0', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 971.6530228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34ac64fc32c0872000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:49:23.000Z'}}, {'blockNum': '0x7f9456', 'uniqueId': '0x2c35f4423ece8aec1e9e74ebac62413d0f8173dc72ef81dc8529162e3f746029:log:17', 'hash': '0x2c35f4423ece8aec1e9e74ebac62413d0f8173dc72ef81dc8529162e3f746029', 'from': '0x09d2e6763331c3519476ae5f87fa74ba4e56cdb6', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 6430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015c922cf46661b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:49:23.000Z'}}, {'blockNum': '0x7f9468', 'uniqueId': '0x060424ea9c61faa580042e93d5754625b147adb8b9567052dfee446e87b92403:log:45', 'hash': '0x060424ea9c61faa580042e93d5754625b147adb8b9567052dfee446e87b92403', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xa31233c0280cbde31125bce3beccd3c0129fdb37', 'value': 20028.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043dc5d9310c7db68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:51:49.000Z'}}, {'blockNum': '0x7f9479', 'uniqueId': '0x2ad18905cb5c23474d5ced3651969fd314de152847a06440ab39b35368704134:log:53', 'hash': '0x2ad18905cb5c23474d5ced3651969fd314de152847a06440ab39b35368704134', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb5c90eb263e4dc7a595c96180f05aa3426b21e6b', 'value': 18537.46066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03eceaf20e98163f4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:57:00.000Z'}}, {'blockNum': '0x7f9487', 'uniqueId': '0xa331cafee5615a06c03b737c730f248e30b2a59a3205fa93e77c264bf8810d6a:log:19', 'hash': '0xa331cafee5615a06c03b737c730f248e30b2a59a3205fa93e77c264bf8810d6a', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 69616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebde413769fc9c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T10:59:18.000Z'}}, {'blockNum': '0x7f9489', 'uniqueId': '0x07872f74ac49787b5cad01fdc70503ee78edcf073726a0ad86ef134cd8572630:log:69', 'hash': '0x07872f74ac49787b5cad01fdc70503ee78edcf073726a0ad86ef134cd8572630', 'from': '0x432452ec7c094b90cd0cd963c1f46fcb246f4e49', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 13903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02f1aee246bfbfdc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:00:06.000Z'}}, {'blockNum': '0x7f9489', 'uniqueId': '0x89c55410d036e426a2ee82abc4625280196f3a595edd05fa703649dbed339445:log:94', 'hash': '0x89c55410d036e426a2ee82abc4625280196f3a595edd05fa703649dbed339445', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xf82ac3c995a85d5444c0807d55910ef0f1134d92', 'value': 9169.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01f10ed2fe06b22e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:00:06.000Z'}}, {'blockNum': '0x7f948b', 'uniqueId': '0x1fe7477c41aafbe6c0169c3b10bc75b1cf25980d6badc08d7bdc05057b69bf15:log:80', 'hash': '0x1fe7477c41aafbe6c0169c3b10bc75b1cf25980d6badc08d7bdc05057b69bf15', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 170731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x242758971864d0cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:00:51.000Z'}}, {'blockNum': '0x7f94a0', 'uniqueId': '0x53704c1f23c8be6147d5c1aaeeb8070797dd51f0aa2b7f4ca768371ed0e4a607:log:8', 'hash': '0x53704c1f23c8be6147d5c1aaeeb8070797dd51f0aa2b7f4ca768371ed0e4a607', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x41e30a015cf553be84c868cc308e71562d5f77a8', 'value': 60136.3093772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cbbfef0eabdb63ae000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:06:14.000Z'}}, {'blockNum': '0x7f94a6', 'uniqueId': '0xc1840066854075c8d0ccd0d39028ef6ef57707777685fe3c8c4f5a9057e85aa3:log:50', 'hash': '0xc1840066854075c8d0ccd0d39028ef6ef57707777685fe3c8c4f5a9057e85aa3', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x8d60f76f102b3053b4c15dbd2699d7dfba6fd432', 'value': 7625.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019d5dbd81a41b1e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:08:18.000Z'}}, {'blockNum': '0x7f94af', 'uniqueId': '0x82c89664335fcfe3fed5a7aab6d2138f2ba47496dc08ccb40ce997000a4c16dc:log:4', 'hash': '0x82c89664335fcfe3fed5a7aab6d2138f2ba47496dc08ccb40ce997000a4c16dc', 'from': '0x07d4246e5cf025b90c9a74ac297aed3c16bf93b1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 51270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0adb5a2e4fe5e557ffff', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:10:48.000Z'}}, {'blockNum': '0x7f94af', 'uniqueId': '0xebc5d2d280b7be7c3d4cb0caa2ad0dc68e06a061b010473189254dbc545bfab7:log:5', 'hash': '0xebc5d2d280b7be7c3d4cb0caa2ad0dc68e06a061b010473189254dbc545bfab7', 'from': '0xc98491302f3419be8ad5f8ab2d96a6ed84136399', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 9970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021c798b60ad14880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:10:48.000Z'}}, {'blockNum': '0x7f94af', 'uniqueId': '0x1c48071820f292637d997ca00dcc6b3920ea74bb086d9fba312b10c3dddfe38a:log:6', 'hash': '0x1c48071820f292637d997ca00dcc6b3920ea74bb086d9fba312b10c3dddfe38a', 'from': '0x26a053c5dbb9fbc5c5fbef20ab860c668228de3e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:10:48.000Z'}}, {'blockNum': '0x7f94af', 'uniqueId': '0x235d7d273fc9c675662df9c1c3e66e8170e535cc71423c91c829d66d0d21fd31:log:7', 'hash': '0x235d7d273fc9c675662df9c1c3e66e8170e535cc71423c91c829d66d0d21fd31', 'from': '0xeac1566ee3ee0684eb72b2e2b52d693db7475c27', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:10:48.000Z'}}, {'blockNum': '0x7f94af', 'uniqueId': '0xd4d4ee01f7d7687513256087f72734a652871a714e9b92787ad6de9d8fdd7c53:log:8', 'hash': '0xd4d4ee01f7d7687513256087f72734a652871a714e9b92787ad6de9d8fdd7c53', 'from': '0x98d4cd6d32c9638e7b0e7e9e5e340363c1004d46', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe4709033915180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:10:48.000Z'}}, {'blockNum': '0x7f94af', 'uniqueId': '0x3eee13151a268e21171ea4e2740bb16358fdecfa3b65853c969aac910c1d2dd7:log:9', 'hash': '0x3eee13151a268e21171ea4e2740bb16358fdecfa3b65853c969aac910c1d2dd7', 'from': '0x19d80672ef992ce864513577e5aeb1202c359491', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3459.42136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbb891d961ebeb7ffff', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:10:48.000Z'}}, {'blockNum': '0x7f94b0', 'uniqueId': '0xf106a98ba6637262a49f8c5c158744746581dcf42c21b6f592f6deb248351153:log:2', 'hash': '0xf106a98ba6637262a49f8c5c158744746581dcf42c21b6f592f6deb248351153', 'from': '0xa3ebf1d44ea33cbb9bb4bf47fb61c248796cd3c3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a4491bd6dcd280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:11:23.000Z'}}, {'blockNum': '0x7f94b0', 'uniqueId': '0x1105d4c6abf968df55ad2c610531eadeb96bc79200d7e303403e12dea82322bd:log:4', 'hash': '0x1105d4c6abf968df55ad2c610531eadeb96bc79200d7e303403e12dea82322bd', 'from': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4703e6eb5291b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:11:23.000Z'}}, {'blockNum': '0x7f94b0', 'uniqueId': '0x8e7e7f693f929a55f4fb331afed9f2c0bc799d30f6dbbd5e6f7839677430a2f7:log:135', 'hash': '0x8e7e7f693f929a55f4fb331afed9f2c0bc799d30f6dbbd5e6f7839677430a2f7', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 170731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x242758971864d0cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:11:23.000Z'}}, {'blockNum': '0x7f94b5', 'uniqueId': '0x39fd8600bf16e4a3660da98a258bafa997d11258d5dcc31a0d0a76e3725a4539:log:132', 'hash': '0x39fd8600bf16e4a3660da98a258bafa997d11258d5dcc31a0d0a76e3725a4539', 'from': '0xc64db95d4b553f12786556c8ba0802bc47aebe6b', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 7639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019e1c6bcad7e8fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:12:44.000Z'}}, {'blockNum': '0x7f94b7', 'uniqueId': '0xf935cd62193663dd17b03c86b16c5983fafdbfd3ce73ec76fdf211b0629910a2:log:26', 'hash': '0xf935cd62193663dd17b03c86b16c5983fafdbfd3ce73ec76fdf211b0629910a2', 'from': '0xd933662bc4787aa3aab1f8bbd6fa127eacbe4bbc', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 3761.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcbe522b04eef380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:13:18.000Z'}}, {'blockNum': '0x7f94b7', 'uniqueId': '0x608543ee63dc5c25392407b9eadf877e5db94e04f0fa314a74aa3a1616958f83:log:27', 'hash': '0x608543ee63dc5c25392407b9eadf877e5db94e04f0fa314a74aa3a1616958f83', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 120953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x199ce011978a7e440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:13:18.000Z'}}, {'blockNum': '0x7f94b7', 'uniqueId': '0xdd9638e3833824dbcfc008b93ba9e5746fd3b0560341c4ec687c9d9e73ca30b7:log:28', 'hash': '0xdd9638e3833824dbcfc008b93ba9e5746fd3b0560341c4ec687c9d9e73ca30b7', 'from': '0x4f1479f4f7d3460bf0991d122647ab5bc368ed22', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 72812.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6b276dc2bfaabe0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:13:18.000Z'}}, {'blockNum': '0x7f94b9', 'uniqueId': '0xf6477076b7c0c2ddcb35acd366e7fb0021dfdd85f8b26b748893118bb46e444d:log:20', 'hash': '0xf6477076b7c0c2ddcb35acd366e7fb0021dfdd85f8b26b748893118bb46e444d', 'from': '0xf3b8cf8e26973cfcf62d823aac46526489002226', 'to': '0x7c2fb68f8e0f0e8ff69e6cebd75aecb7b838e21e', 'value': 1100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3ba1910bf341b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:13:33.000Z'}}, {'blockNum': '0x7f94bc', 'uniqueId': '0xd28a8a474d92aa4e89ff035ccbd927a5ee44de551753f7b3b2b77d86c9b9a272:log:23', 'hash': '0xd28a8a474d92aa4e89ff035ccbd927a5ee44de551753f7b3b2b77d86c9b9a272', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xebcf1e2f856e43ac8801aab14766322ad5786ee7', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:14:07.000Z'}}, {'blockNum': '0x7f94df', 'uniqueId': '0x8a653ad96e2ef626b71f82cbb86408dd21aeab5b193fd97e27d40a09a52747b7:log:158', 'hash': '0x8a653ad96e2ef626b71f82cbb86408dd21aeab5b193fd97e27d40a09a52747b7', 'from': '0x8d60f76f102b3053b4c15dbd2699d7dfba6fd432', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 15294.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x033d1c7016cbbe600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:19:49.000Z'}}, {'blockNum': '0x7f9503', 'uniqueId': '0x9d27ff2d42ffa39a7c86a88e3f3ea065c5d889b2ba945d973e32dc8e3c491d7f:log:23', 'hash': '0x9d27ff2d42ffa39a7c86a88e3f3ea065c5d889b2ba945d973e32dc8e3c491d7f', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x9fc124d82712346f864762841a2de0caa93e5b1a', 'value': 5023.938111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01105925a5fd55fef000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:26:00.000Z'}}, {'blockNum': '0x7f9504', 'uniqueId': '0xdd2def9b2b2e904074243df6f523daf6a2abab5de90477ffb7536fe2459a3211:log:16', 'hash': '0xdd2def9b2b2e904074243df6f523daf6a2abab5de90477ffb7536fe2459a3211', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x48ba336d26308d5c0e749c481ffe794ece385617', 'value': 10397.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0233a4e93436be7c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:26:20.000Z'}}, {'blockNum': '0x7f950f', 'uniqueId': '0x9b2e22049ad4d510f2c012b57f52a3741b6c8cbe8c4848498dc9b6581ad9a834:log:44', 'hash': '0x9b2e22049ad4d510f2c012b57f52a3741b6c8cbe8c4848498dc9b6581ad9a834', 'from': '0x5a2dc597edd038cbdaeff9c6110b38dcba2198e1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 8050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b464311d45a6880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:28:41.000Z'}}, {'blockNum': '0x7f950f', 'uniqueId': '0x3d5cee9cc82a9c3bc0b90e1e40dbc79921e3ee8de16c6aa5dedb38f58434fa1c:log:47', 'hash': '0x3d5cee9cc82a9c3bc0b90e1e40dbc79921e3ee8de16c6aa5dedb38f58434fa1c', 'from': '0x55c7491f4e2213dcb092d6b330260ca41dc0ea93', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1910.404797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x679031411cf33ccfff', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:28:41.000Z'}}, {'blockNum': '0x7f950f', 'uniqueId': '0xd3894ab72b55689ea4e0f394948d611c923f134932f79c3587b946542f1ba32b:log:70', 'hash': '0xd3894ab72b55689ea4e0f394948d611c923f134932f79c3587b946542f1ba32b', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x4561b830740dcfef1d2da9ef8b048dfcb5092f87', 'value': 60018.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb5a29534f2bcce8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:28:41.000Z'}}, {'blockNum': '0x7f9517', 'uniqueId': '0x2194c3b1cf5be7435974bd136ea6ff7637a97f9329ffa31466a7e7c8b980829a:log:29', 'hash': '0x2194c3b1cf5be7435974bd136ea6ff7637a97f9329ffa31466a7e7c8b980829a', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0x6bfa77a79bb04b32b6fe6137860f555bc26b9920', 'value': 4262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe70b21b2f4cad80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:29:49.000Z'}}, {'blockNum': '0x7f953c', 'uniqueId': '0x248e66064c152a0cbc0b146171c738d78f21c38f5db9f21c0c3804f7caa044fc:log:61', 'hash': '0x248e66064c152a0cbc0b146171c738d78f21c38f5db9f21c0c3804f7caa044fc', 'from': '0x48ba336d26308d5c0e749c481ffe794ece385617', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 10397.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0233a4e93436be7c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:36:45.000Z'}}, {'blockNum': '0x7f9540', 'uniqueId': '0x4d29ae5cd4597716aa53a05fee70d630015e5f41b5ef51cbaea04f226635c806:log:6', 'hash': '0x4d29ae5cd4597716aa53a05fee70d630015e5f41b5ef51cbaea04f226635c806', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x031a0d665cdaaf6cd125c53819c5960023fe8c5c', 'value': 49225.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a6c8b9e78b685ca8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:37:47.000Z'}}, {'blockNum': '0x7f9542', 'uniqueId': '0x67a1f80ff0bde27fa7a11ed64d39bd5af07c68cb70eaf5b399ab762fa38a0a70:log:23', 'hash': '0x67a1f80ff0bde27fa7a11ed64d39bd5af07c68cb70eaf5b399ab762fa38a0a70', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xf291e0f6831b2380e70c744c32cd77a70fd53dd1', 'value': 4997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010ee34e40c262f40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:38:04.000Z'}}, {'blockNum': '0x7f9560', 'uniqueId': '0x4d432aa97e22198f337f2aca456e14175b776f09f86f6b723e2fc807a2fd5972:log:51', 'hash': '0x4d432aa97e22198f337f2aca456e14175b776f09f86f6b723e2fc807a2fd5972', 'from': '0x7c2fb68f8e0f0e8ff69e6cebd75aecb7b838e21e', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3ba1910bf341b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:42:22.000Z'}}, {'blockNum': '0x7f9570', 'uniqueId': '0x6eadcdcb5be6484476bc77c2b82e1183a0b26cfe602c3239f6f3a6ad2e1fea3c:log:13', 'hash': '0x6eadcdcb5be6484476bc77c2b82e1183a0b26cfe602c3239f6f3a6ad2e1fea3c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x678a368d9811f5210e564cb2b7fc46a0532c47d8', 'value': 168.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0928fb87d6a3e68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:45:42.000Z'}}, {'blockNum': '0x7f9584', 'uniqueId': '0xc50e6268418abc4070b8ea2f1fed3ab66740c0a1c9d8497c696f6309f572e269:log:0', 'hash': '0xc50e6268418abc4070b8ea2f1fed3ab66740c0a1c9d8497c696f6309f572e269', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:48:47.000Z'}}, {'blockNum': '0x7f9584', 'uniqueId': '0xe44831478d797d81d79b98481e471db57b756def5d475ca85f35dd8e644f207d:log:47', 'hash': '0xe44831478d797d81d79b98481e471db57b756def5d475ca85f35dd8e644f207d', 'from': '0xebcf1e2f856e43ac8801aab14766322ad5786ee7', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:48:47.000Z'}}, {'blockNum': '0x7f958b', 'uniqueId': '0x4a238bbb4aed5633ab53a56998e5436ff1d4baa5c7282596bf2d36aae83a46b2:log:0', 'hash': '0x4a238bbb4aed5633ab53a56998e5436ff1d4baa5c7282596bf2d36aae83a46b2', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 304267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x406e58dce857f34c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:49:42.000Z'}}, {'blockNum': '0x7f9594', 'uniqueId': '0x9ea04008aefe4229095aac158ef70fa80d1565c4bc1b12a4a12daa4d766a3db3:log:4', 'hash': '0x9ea04008aefe4229095aac158ef70fa80d1565c4bc1b12a4a12daa4d766a3db3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb3a3fa926a2b3b8aca4d698b0a1eaa350ffe0276', 'value': 8437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01c95ee54edbb2b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:51:22.000Z'}}, {'blockNum': '0x7f959b', 'uniqueId': '0xdc0ab66be70d6092e044f27efd9f6380689e77d952dee7cbffef22706067be6f:log:85', 'hash': '0xdc0ab66be70d6092e044f27efd9f6380689e77d952dee7cbffef22706067be6f', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x678a368d9811f5210e564cb2b7fc46a0532c47d8', 'value': 10020.8311956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021f3af80fc252ee2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:53:44.000Z'}}, {'blockNum': '0x7f95a0', 'uniqueId': '0xc5efc431614c654ab77a27683a1e3a4b539b9c8654614512c4aa2b78d9c80e60:log:24', 'hash': '0xc5efc431614c654ab77a27683a1e3a4b539b9c8654614512c4aa2b78d9c80e60', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 50.44965104685942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02bc212a555a782f41', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:55:30.000Z'}}, {'blockNum': '0x7f95a0', 'uniqueId': '0xc5efc431614c654ab77a27683a1e3a4b539b9c8654614512c4aa2b78d9c80e60:log:26', 'hash': '0xc5efc431614c654ab77a27683a1e3a4b539b9c8654614512c4aa2b78d9c80e60', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x46015322832a58fa12e669a1abffa4b63251eee6', 'value': 50.44965104685942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02bc212a555a782f41', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:55:30.000Z'}}, {'blockNum': '0x7f95a2', 'uniqueId': '0xc42e83a5c67fecd5ba07e58923c52d02347ae9951ab5fc178387e529e6a33cf5:log:64', 'hash': '0xc42e83a5c67fecd5ba07e58923c52d02347ae9951ab5fc178387e529e6a33cf5', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0xf3981de6826fe65d2f1a5697c6d6f8587aea6035', 'value': 610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2111735814dc480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:56:02.000Z'}}, {'blockNum': '0x7f95a5', 'uniqueId': '0x4f3b90ea6d01ad6397455d0cfbf0e8f8ba58bb86de7946f278c6525fb67ec343:log:20', 'hash': '0x4f3b90ea6d01ad6397455d0cfbf0e8f8ba58bb86de7946f278c6525fb67ec343', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xac1cfa423e673439348b59363520e42b59d1c083', 'value': 62478.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3afdf0db4f41be8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:56:35.000Z'}}, {'blockNum': '0x7f95a8', 'uniqueId': '0xafa2fd9d1c3bd4b60dd9a508142d8e77d621f6a695ec55c0c0de873fa0190b55:log:22', 'hash': '0xafa2fd9d1c3bd4b60dd9a508142d8e77d621f6a695ec55c0c0de873fa0190b55', 'from': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:57:41.000Z'}}, {'blockNum': '0x7f95aa', 'uniqueId': '0x9a7f1d81602f4fe1ffe0b1112c9f707eeed05b018b1c9a6c6183bf6c553c1068:log:46', 'hash': '0x9a7f1d81602f4fe1ffe0b1112c9f707eeed05b018b1c9a6c6183bf6c553c1068', 'from': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'to': '0xe88a17ba0129f316c7bcdf82d61a6b586d2465b2', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T11:57:57.000Z'}}, {'blockNum': '0x7f95c3', 'uniqueId': '0x35957ef40e1f2937a52cb21dacabc72f604428a3c6eac6153775165dde18996b:log:114', 'hash': '0x35957ef40e1f2937a52cb21dacabc72f604428a3c6eac6153775165dde18996b', 'from': '0x47d533585be999bab83858286eb5acac104c9af2', 'to': '0x06c12989d100df79eea92c2a4a17e05778779668', 'value': 860.2613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2ea286167d83bf4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:03:41.000Z'}}, {'blockNum': '0x7f95c6', 'uniqueId': '0xd2a3df04fc4d4f5231684bfcdd687233306d4c970e2c82805140a5fdfb7907d4:log:11', 'hash': '0xd2a3df04fc4d4f5231684bfcdd687233306d4c970e2c82805140a5fdfb7907d4', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 304267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x406e58dce857f34c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:03:54.000Z'}}, {'blockNum': '0x7f95cb', 'uniqueId': '0xc6cc9df2ca1d9635a357e92b25ca3da8958907ffc3459ae188ba369eca2628db:log:60', 'hash': '0xc6cc9df2ca1d9635a357e92b25ca3da8958907ffc3459ae188ba369eca2628db', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x117fbb6981851457dbca2d94232cf6b8e522015b', 'value': 10011.4567836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021eb8df75b67cc56000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:04:37.000Z'}}, {'blockNum': '0x7f95d4', 'uniqueId': '0xe8026f4828f4ecb0f86b77c82c62048453345a43eb51ad21484eb2b651fdb2d2:log:0', 'hash': '0xe8026f4828f4ecb0f86b77c82c62048453345a43eb51ad21484eb2b651fdb2d2', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 35373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x077d92fcf5d054940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:06:33.000Z'}}, {'blockNum': '0x7f95f7', 'uniqueId': '0xbc4e9685d8c7dd35b1d826fbc9c91907317ae54d4d4e5d431f4c73cd086b84e0:log:81', 'hash': '0xbc4e9685d8c7dd35b1d826fbc9c91907317ae54d4d4e5d431f4c73cd086b84e0', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 35373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x077d92fcf5d054940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:13:42.000Z'}}, {'blockNum': '0x7f9607', 'uniqueId': '0x3bcfbda684cf3bc6108e36e5dab0b4b3325e5df00ecf3c5093f63d3366c4d645:log:63', 'hash': '0x3bcfbda684cf3bc6108e36e5dab0b4b3325e5df00ecf3c5093f63d3366c4d645', 'from': '0x29253b9fdb46592fd54cfc59b775ab792eabcaee', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 185701.0515088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2752dfc9dcea4d428000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:16:18.000Z'}}, {'blockNum': '0x7f9609', 'uniqueId': '0x546c7e99b560d2bcab3fced56eb85e942daa7ccacbad3a1f5d1bf8e179db7bc2:log:58', 'hash': '0x546c7e99b560d2bcab3fced56eb85e942daa7ccacbad3a1f5d1bf8e179db7bc2', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x09d2e6763331c3519476ae5f87fa74ba4e56cdb6', 'value': 9430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01ff3389fdb7fd980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:16:46.000Z'}}, {'blockNum': '0x7f9615', 'uniqueId': '0x02a68e0785fa5844f174c99b3b3121da43454ddab996ba7656e816fa5e5db758:log:47', 'hash': '0x02a68e0785fa5844f174c99b3b3121da43454ddab996ba7656e816fa5e5db758', 'from': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 2485.1500000000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x86b862661c6a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:21:06.000Z'}}, {'blockNum': '0x7f9619', 'uniqueId': '0x08eceba73237a3396614b341596034f5b5fadf2d065f291d5af32704af2441d9:log:76', 'hash': '0x08eceba73237a3396614b341596034f5b5fadf2d065f291d5af32704af2441d9', 'from': '0x64089ac655ffeb8051319951096a895e33eeb7ad', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 12770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b44359ada3ea480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:21:57.000Z'}}, {'blockNum': '0x7f9619', 'uniqueId': '0x19dbfd7ab042c4bb992481a2f7c7773409d1ac711daf8962d691ed2a1fd28875:log:135', 'hash': '0x19dbfd7ab042c4bb992481a2f7c7773409d1ac711daf8962d691ed2a1fd28875', 'from': '0x55fbb8720148d52157355a349b10acd8accd31f1', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 39968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0876b8eff266a6c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:21:57.000Z'}}, {'blockNum': '0x7f961f', 'uniqueId': '0x9419f99d7a0b97bf9fa995ebf2ff6387914c6817ecc564a7024a424c78da9626:log:165', 'hash': '0x9419f99d7a0b97bf9fa995ebf2ff6387914c6817ecc564a7024a424c78da9626', 'from': '0xfecc62e9249aae7fa15e26a634598ea28d9b9bf6', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 31125.74303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x069754750687d8a96000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:23:07.000Z'}}, {'blockNum': '0x7f9620', 'uniqueId': '0x680553d01687e03e36f6ef5fe5f7aee0b9e08f9629ccf25c02831d0e127cf7f1:log:102', 'hash': '0x680553d01687e03e36f6ef5fe5f7aee0b9e08f9629ccf25c02831d0e127cf7f1', 'from': '0x30b442eb71a98cc0b5d02d7d1d23713042422178', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 52197.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b0da8678661d2ba8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:23:16.000Z'}}, {'blockNum': '0x7f9625', 'uniqueId': '0x089465f81f764073f490c01cf0b0245b2e9981b519caf01e7654bce1d4e83254:log:91', 'hash': '0x089465f81f764073f490c01cf0b0245b2e9981b519caf01e7654bce1d4e83254', 'from': '0xaa15d4f8af3d7d4dbd799421ef8a9a0337930634', 'to': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'value': 1503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x517a50a8c3c41c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:24:15.000Z'}}, {'blockNum': '0x7f9625', 'uniqueId': '0x089465f81f764073f490c01cf0b0245b2e9981b519caf01e7654bce1d4e83254:log:94', 'hash': '0x089465f81f764073f490c01cf0b0245b2e9981b519caf01e7654bce1d4e83254', 'from': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'to': '0xb14232b0204b2f7bb6ba5aff59ef36030f7fe38b', 'value': 1503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x517a50a8c3c41c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:24:15.000Z'}}, {'blockNum': '0x7f962e', 'uniqueId': '0x513222e2bb1dab042fbbffa49ebb7ae6d2626603b90c553f741e84cb602eb482:log:104', 'hash': '0x513222e2bb1dab042fbbffa49ebb7ae6d2626603b90c553f741e84cb602eb482', 'from': '0x7dcc17695ceebd5133fc7d7cdd81a8b573621685', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 2797.576869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x97a82d9c2872835000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:26:01.000Z'}}, {'blockNum': '0x7f9635', 'uniqueId': '0xe6115b1db7cbc2000b0a279f4ab0ebe253afc1c64ab4a93ebec661725e3ac6c2:log:63', 'hash': '0xe6115b1db7cbc2000b0a279f4ab0ebe253afc1c64ab4a93ebec661725e3ac6c2', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x321bfd916b2642896018d68e5ad5f9b7d7af41bf', 'value': 10916.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x024fc4fc1d633ea60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:26:59.000Z'}}, {'blockNum': '0x7f9635', 'uniqueId': '0x9f052b61e093aa96a47aab02acc4a18d3bdfa6ea9dd8cc09907ea264241a6b2e:log:102', 'hash': '0x9f052b61e093aa96a47aab02acc4a18d3bdfa6ea9dd8cc09907ea264241a6b2e', 'from': '0x65f64c24ef1748388661c191accb0e85393d5f26', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 5120.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01159bc9ab049a468000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:26:59.000Z'}}, {'blockNum': '0x7f9638', 'uniqueId': '0xe1a14b0ee0908968c2a9e850a6313bcecc39fb4b74e5bb1bfc85230def013e9b:log:89', 'hash': '0xe1a14b0ee0908968c2a9e850a6313bcecc39fb4b74e5bb1bfc85230def013e9b', 'from': '0x19525fb70ae1d9013231af4ffdd3d8f5985851c4', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 12596.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02aaddc64a08f4120000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:27:41.000Z'}}, {'blockNum': '0x7f9647', 'uniqueId': '0xa0e3c4b3729676ac6a938965fae2835d58f7c02b2b87fb88352b1b733d1ecdd0:log:119', 'hash': '0xa0e3c4b3729676ac6a938965fae2835d58f7c02b2b87fb88352b1b733d1ecdd0', 'from': '0xdcd13ffa8f2df428b7eca4069822bf5ef52c652f', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 36751.74443276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07c850e92a8207d2b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:31:15.000Z'}}, {'blockNum': '0x7f9655', 'uniqueId': '0x8e7a258c2fe056c061c9c8d45dc8a5a6a2e493a1ef3364cf315057a461966f5f:log:13', 'hash': '0x8e7a258c2fe056c061c9c8d45dc8a5a6a2e493a1ef3364cf315057a461966f5f', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x4baa02f799bd13799736eb8c7fa12f4a068c406b', 'value': 4012.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd98b32e9741d768000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:34:36.000Z'}}, {'blockNum': '0x7f9655', 'uniqueId': '0x537c39fc2ffe99b1fbf68d1d6d64f963c686ce45a8a0e8e235c3dd39f0f46f89:log:154', 'hash': '0x537c39fc2ffe99b1fbf68d1d6d64f963c686ce45a8a0e8e235c3dd39f0f46f89', 'from': '0x90a2fef000d4b81318a46d22b1809dd759bab85d', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 6772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x016f1c61086801500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:34:36.000Z'}}, {'blockNum': '0x7f966b', 'uniqueId': '0x391cef2cda333c0920f7fe450cd2905b0aaa5cf9182811a4adb746320c852d72:log:127', 'hash': '0x391cef2cda333c0920f7fe450cd2905b0aaa5cf9182811a4adb746320c852d72', 'from': '0xc16ef7732653f07e55cb3f745e48a97d2dbe013e', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:38:43.000Z'}}, {'blockNum': '0x7f966c', 'uniqueId': '0xa995758f405981948064f3c902e48b5fa95e3afd5d038fecf9f151ab1edade41:log:77', 'hash': '0xa995758f405981948064f3c902e48b5fa95e3afd5d038fecf9f151ab1edade41', 'from': '0x4c6bbb5e818a20e9db49425d05bd1d25d9e752c5', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 9648.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020b126934a553068000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:38:48.000Z'}}, {'blockNum': '0x7f966d', 'uniqueId': '0xfeb2226efbbd6c68f01b859f1b299e455606aef01d4d77929c5b605c5bd41b27:log:108', 'hash': '0xfeb2226efbbd6c68f01b859f1b299e455606aef01d4d77929c5b605c5bd41b27', 'from': '0x243cbd76a0cb38ce90a0676e8acb068e8fc4e4ce', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 1417.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4cdd66c082cff98000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:38:59.000Z'}}, {'blockNum': '0x7f9678', 'uniqueId': '0xc15ea479626b649867efa9eff3cdd05c119ad1b6270e455abdf54669241d6b66:log:3', 'hash': '0xc15ea479626b649867efa9eff3cdd05c119ad1b6270e455abdf54669241d6b66', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 25987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0580c2125ef91c2c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:41:48.000Z'}}, {'blockNum': '0x7f967b', 'uniqueId': '0x3fda97c1a25a36a25bb11688043527d75f571d564201dbae33b88719a6030428:log:5', 'hash': '0x3fda97c1a25a36a25bb11688043527d75f571d564201dbae33b88719a6030428', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x700af1da7ceaad86a2335fe1b8da9294ee0893e1', 'value': 2331.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7e6aa337c5f5d28000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:42:30.000Z'}}, {'blockNum': '0x7f967c', 'uniqueId': '0x2b4a4ad1c9a53c23d3c59d17dcce5fefb97f275fb0fe6f16dd3159f0413265b7:log:80', 'hash': '0x2b4a4ad1c9a53c23d3c59d17dcce5fefb97f275fb0fe6f16dd3159f0413265b7', 'from': '0x09d2e6763331c3519476ae5f87fa74ba4e56cdb6', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 9430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01ff3389fdb7fd980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:43:07.000Z'}}, {'blockNum': '0x7f9681', 'uniqueId': '0xafda3f05f7145612896cdf6a9a3b1cf704d22174a207b2c5defd8afc2eaf24f9:log:44', 'hash': '0xafda3f05f7145612896cdf6a9a3b1cf704d22174a207b2c5defd8afc2eaf24f9', 'from': '0xeccab99f2771999525c34ef98e6d05cfe1facc1a', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:44:27.000Z'}}, {'blockNum': '0x7f9686', 'uniqueId': '0xe07e5155a32197c4afdf1b46c0ed7cbbb502dd3b5383ba9df7640747fd6283fa:log:17', 'hash': '0xe07e5155a32197c4afdf1b46c0ed7cbbb502dd3b5383ba9df7640747fd6283fa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x82334283a7f5452f6918878d3838effee2ee610a', 'value': 865.46116195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2eeaafb5623e912c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:46:35.000Z'}}, {'blockNum': '0x7f968a', 'uniqueId': '0x78e65e96cb089341082c9ebfea30a46e4b45d38bd964dcedb996acf58fad6778:log:1', 'hash': '0x78e65e96cb089341082c9ebfea30a46e4b45d38bd964dcedb996acf58fad6778', 'from': '0x82334283a7f5452f6918878d3838effee2ee610a', 'to': '0x31fb4bfca3919ecc0c39064d5b7987489dc88077', 'value': 894.46116195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x307d2467bc34e52c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:47:05.000Z'}}, {'blockNum': '0x7f969d', 'uniqueId': '0xbded3954b058b6a138bf6be1b6c6cacac0dbc58a9a60f0b8f6acb532c8c6324a:log:7', 'hash': '0xbded3954b058b6a138bf6be1b6c6cacac0dbc58a9a60f0b8f6acb532c8c6324a', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 25987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0580c2125ef91c2c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:50:28.000Z'}}, {'blockNum': '0x7f96aa', 'uniqueId': '0x6b3e0b81f4811974951fe1b755970766f7e6cd5b0814ca9d57d37234dd3f0c01:log:5', 'hash': '0x6b3e0b81f4811974951fe1b755970766f7e6cd5b0814ca9d57d37234dd3f0c01', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x22213798887a294fcd394c7755060879621db156', 'value': 29968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06589f0f28abf4868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:53:38.000Z'}}, {'blockNum': '0x7f96ab', 'uniqueId': '0x14743c2536e2ba593a3dd77294470bfdcfcfdfd0d873ba3f31776828a7401741:log:12', 'hash': '0x14743c2536e2ba593a3dd77294470bfdcfcfdfd0d873ba3f31776828a7401741', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xbc46eecfe382657b1ef85331a1b78f221240d11a', 'value': 10554.5673856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023c2a0becb563540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:53:43.000Z'}}, {'blockNum': '0x7f96ae', 'uniqueId': '0x585bbdb2750a91e60a98713383f2513801485625d0badf6b0c14c39d1a8b9311:log:48', 'hash': '0x585bbdb2750a91e60a98713383f2513801485625d0badf6b0c14c39d1a8b9311', 'from': '0xb545e6d3b8922a80652c96186f681ea42b8a2645', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:54:19.000Z'}}, {'blockNum': '0x7f96af', 'uniqueId': '0xec112c8a28e091055eb7f12a4ddb523f68dff10d219536af6ddcf384d3316448:log:64', 'hash': '0xec112c8a28e091055eb7f12a4ddb523f68dff10d219536af6ddcf384d3316448', 'from': '0x4062406cf089bd8dd29e8113c55c9cd899f2e636', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:54:22.000Z'}}, {'blockNum': '0x7f96af', 'uniqueId': '0x23f30fc4756bf905dc1654a8daf31d4a4c798265a08c613468e9bb4b090707ae:log:96', 'hash': '0x23f30fc4756bf905dc1654a8daf31d4a4c798265a08c613468e9bb4b090707ae', 'from': '0x6c8e9a191a99e3334a3707a9fe4b9b745db85f7c', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 120000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1969440d16b125468000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:54:22.000Z'}}, {'blockNum': '0x7f96b0', 'uniqueId': '0xe25bcc1c133eb70015bf9e526303c23b61da0260448003062081073febf5c81c:log:77', 'hash': '0xe25bcc1c133eb70015bf9e526303c23b61da0260448003062081073febf5c81c', 'from': '0x7f497cc39f96fbb644c7999a19477a1c1fdb16af', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 30608.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x067b50d7e9ce6e868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:54:44.000Z'}}, {'blockNum': '0x7f96b0', 'uniqueId': '0xfa5c028017c0ea841bb762c1fddcab790af45dff0f5b9eb59908700ff968797a:log:78', 'hash': '0xfa5c028017c0ea841bb762c1fddcab790af45dff0f5b9eb59908700ff968797a', 'from': '0x6d5eff82f90a6bb2f0272020a3714c9902e0fc19', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 4400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xee86442fcd06c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:54:44.000Z'}}, {'blockNum': '0x7f96b0', 'uniqueId': '0xa9b5447ef4b75dc4a8156232fae2830f7472c5787ee450fdbf5fbb7b5e135df9:log:79', 'hash': '0xa9b5447ef4b75dc4a8156232fae2830f7472c5787ee450fdbf5fbb7b5e135df9', 'from': '0x0c29c2b80167ce17f32e5d1513ce6fd95f73b196', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 14840.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x032486f27668b4558000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:54:44.000Z'}}, {'blockNum': '0x7f96b2', 'uniqueId': '0xb98954b3565b45e7a6ecb788a1be3c8af9370b4673b0ac6c74e3ef6fbb7870cb:log:61', 'hash': '0xb98954b3565b45e7a6ecb788a1be3c8af9370b4673b0ac6c74e3ef6fbb7870cb', 'from': '0x9020d962a7a933decf39181fdf32938308c867e2', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:55:14.000Z'}}, {'blockNum': '0x7f96b2', 'uniqueId': '0xebf4c3e81d45d6a9567886342af3513462d4a3f161efa36fb2058335fe32fdc5:log:64', 'hash': '0xebf4c3e81d45d6a9567886342af3513462d4a3f161efa36fb2058335fe32fdc5', 'from': '0xb86d1911e383a182d07c6d1250f84d9b9506d29e', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 3200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xad78ebc5ac62000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:55:14.000Z'}}, {'blockNum': '0x7f96b2', 'uniqueId': '0x91076283d50545920104721d2c28ede8a0eea67937b10cddb0bbb7217c37fa1d:log:66', 'hash': '0x91076283d50545920104721d2c28ede8a0eea67937b10cddb0bbb7217c37fa1d', 'from': '0xdbe53af72dec0b44e209d0ddd49a6a6e044ad231', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 20069.2110578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043ff440a5d4ee875000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:55:14.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0xf54a043a249fb9d72bb94d40dd6b383ee47c728a43bf974529f3fcf69ad79bf6:log:31', 'hash': '0xf54a043a249fb9d72bb94d40dd6b383ee47c728a43bf974529f3fcf69ad79bf6', 'from': '0xa3a6b9c59a45357aa38f7ce6f89294fe838d80a1', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 46415.5179368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09d430b57b90dff64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0x43fa5ade83dfd96a60960a5a7da77117d6e2f2b6fed6d2e507529ba58f93e212:log:32', 'hash': '0x43fa5ade83dfd96a60960a5a7da77117d6e2f2b6fed6d2e507529ba58f93e212', 'from': '0x7a5e5b05756f3628ab2b029c9d6a9ddb55b35743', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0x07c342040707adbe335d5ccf757ae86ffb82fdb7ede74dd0995ba1501f0c7163:log:33', 'hash': '0x07c342040707adbe335d5ccf757ae86ffb82fdb7ede74dd0995ba1501f0c7163', 'from': '0x440b786732c78f64b29e26c0717e7c1b8a22f97f', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 30898.8223356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x068b074cc5404fb06000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0x46505547910c1201a58a6dae1908bd483dbde09d281855983927e20c261a7b1e:log:39', 'hash': '0x46505547910c1201a58a6dae1908bd483dbde09d281855983927e20c261a7b1e', 'from': '0x270979afd207d5f2dd73413aabadbe9d23bf5e4d', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 1270, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x44d8ca5f406a180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0xeae380d44cabd93e5a4751d5d054edc59ce5463201c19e5419cbee23800b2094:log:50', 'hash': '0xeae380d44cabd93e5a4751d5d054edc59ce5463201c19e5419cbee23800b2094', 'from': '0xf1a9eef4e2182d68163c4748c30ca952a62f3f2d', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0x465dc9d5e4f5fcf4575d14ad30f849edd2d178c355fd320bd3fa1cf7057d2125:log:52', 'hash': '0x465dc9d5e4f5fcf4575d14ad30f849edd2d178c355fd320bd3fa1cf7057d2125', 'from': '0xb06da2af59084a4bd5b3631f9e47df76462fc0fb', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 6794.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01705b345dc92e2e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0x6df92c9454dda362854523058a2a0a9e0b474b6c13fd1340fb98b3af85dcb9a8:log:59', 'hash': '0x6df92c9454dda362854523058a2a0a9e0b474b6c13fd1340fb98b3af85dcb9a8', 'from': '0x99ab4b37832fdff853c68720329439506563bf61', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 25889.831194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057b7d956cbd0d53a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0xc23d460f6e099c7d10b2520a70c03a8510a1dedab71ff16546bbea063d6cbec4:log:63', 'hash': '0xc23d460f6e099c7d10b2520a70c03a8510a1dedab71ff16546bbea063d6cbec4', 'from': '0x220b13782f20795685a7b2421057e078d87a64e5', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0x8e8fc336ae577d4e8f2e0c40c1aade1cf6e79760cf88611c68f57c08729602dd:log:68', 'hash': '0x8e8fc336ae577d4e8f2e0c40c1aade1cf6e79760cf88611c68f57c08729602dd', 'from': '0xdda342e4793ccd5a04c91267ca7f3b1ea4b5bb8f', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 11716.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027b2dad17e986d68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0xc0f14876e2abef6500fb4ab4e50a1df8cbd0c078847d64579bd9d6a937e9f272:log:69', 'hash': '0xc0f14876e2abef6500fb4ab4e50a1df8cbd0c078847d64579bd9d6a937e9f272', 'from': '0x38096b19c564159de48a58ad4731f2dfeb92de64', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 10868.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x024d354fe4cf0b968000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0x0147a675de36bbf2e8893cf457921ca0e09093887063182b502282154061f03d:log:106', 'hash': '0x0147a675de36bbf2e8893cf457921ca0e09093887063182b502282154061f03d', 'from': '0x191d0495af521b3e72ad755a158696d48ef6d4a7', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 11712.947661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027af5cd5fd2b77dd000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96bb', 'uniqueId': '0x924782c2de5aaed528eb49be276d2a123311cdabc8b1f917ea4170a95b9ee654:log:127', 'hash': '0x924782c2de5aaed528eb49be276d2a123311cdabc8b1f917ea4170a95b9ee654', 'from': '0x82b1309b3883e0f4c60892f92520089327a6837b', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 10018.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021f2131444d418e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:57:35.000Z'}}, {'blockNum': '0x7f96c0', 'uniqueId': '0x01a6c960184646b9b5216b41874b916077ae7ca157a68fd5ab4d680bb1e2f8a1:log:99', 'hash': '0x01a6c960184646b9b5216b41874b916077ae7ca157a68fd5ab4d680bb1e2f8a1', 'from': '0x46ab8927db42d629a592d70178af4b6837cf4761', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 29970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0658ad4cf42279080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:59:21.000Z'}}, {'blockNum': '0x7f96c0', 'uniqueId': '0xc825a804f809d086b0b92ca61475cfc617cd17f38bfc54ebc9c4786922d9de54:log:101', 'hash': '0xc825a804f809d086b0b92ca61475cfc617cd17f38bfc54ebc9c4786922d9de54', 'from': '0xe3db4a564dc353e19ccb4a2c4fddf3710958335e', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T12:59:21.000Z'}}, {'blockNum': '0x7f96c6', 'uniqueId': '0x073770739c83ad05f6c457c2227d5507dab237fd79c1806c7de3205e732602ac:log:168', 'hash': '0x073770739c83ad05f6c457c2227d5507dab237fd79c1806c7de3205e732602ac', 'from': '0xfa63a470530ca711060100993321b947e8bded46', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 60000.0038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b523a749fa58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:01.000Z'}}, {'blockNum': '0x7f96c6', 'uniqueId': '0x1bb2be7ef02b4e5f26ef3682ee306ecb68ba33a4610af1930b5d59f03ebbc907:log:170', 'hash': '0x1bb2be7ef02b4e5f26ef3682ee306ecb68ba33a4610af1930b5d59f03ebbc907', 'from': '0x039f366118454a009df74a16871f08b91cb8ac0f', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 29773.4443214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x064e058ae7d8362eb000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:01.000Z'}}, {'blockNum': '0x7f96c6', 'uniqueId': '0xd011d7c7f4853d648c92864149bfeeee979fce59f44a4ad12ab3ea47f504ea36:log:177', 'hash': '0xd011d7c7f4853d648c92864149bfeeee979fce59f44a4ad12ab3ea47f504ea36', 'from': '0x5f93bd536215e13220f3f6eb6444cbd6ad223538', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:01.000Z'}}, {'blockNum': '0x7f96c6', 'uniqueId': '0xbfadfd7b50d4e4ce4651e484fb294904b6137b9971ddf8763bff66d87e3fcd34:log:186', 'hash': '0xbfadfd7b50d4e4ce4651e484fb294904b6137b9971ddf8763bff66d87e3fcd34', 'from': '0xb1239da4ab7ff981b83fc6618729c0a00b9c54d8', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 10002.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e4235af3b487d8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:01.000Z'}}, {'blockNum': '0x7f96c6', 'uniqueId': '0x93934329fa95205e63216d1e986f7bc4d8e5a57156bd9fe9828416400667141d:log:189', 'hash': '0x93934329fa95205e63216d1e986f7bc4d8e5a57156bd9fe9828416400667141d', 'from': '0xe61d87e30772ea952657522724d52df69395868e', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 60000.0048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b55c7f3446c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:01.000Z'}}, {'blockNum': '0x7f96c6', 'uniqueId': '0x69ff081a211154dfe93019525dffad6ba3914f57d6ee0741022eb767eb3eca34:log:191', 'hash': '0x69ff081a211154dfe93019525dffad6ba3914f57d6ee0741022eb767eb3eca34', 'from': '0x9fb7c3458fa2e8a73737af200c10c5d8a6b90373', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 59936.5735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb12b0c88ac772fc000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:01.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0x9eea0ced544451483320313d431e3695b9da5cce02cceae876b4e84c12e6b0ea:log:29', 'hash': '0x9eea0ced544451483320313d431e3695b9da5cce02cceae876b4e84c12e6b0ea', 'from': '0xce715731db451315b4fab4a9cb14c8bb4b2e815d', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 30000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a5a35d5495e358000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0xc4adff447551cb2263680244d10f175ad80ca29bfad516b151de99bc722e91f9:log:37', 'hash': '0xc4adff447551cb2263680244d10f175ad80ca29bfad516b151de99bc722e91f9', 'from': '0x909ca98b33ce5d759af70a7431a4580a91f5725c', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 10000.0038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19ee49cf24658000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0xf7f28cf6a09fa6b825d82616ab42e1ea15eef614e29666a0b93f9bf68d942526:log:45', 'hash': '0xf7f28cf6a09fa6b825d82616ab42e1ea15eef614e29666a0b93f9bf68d942526', 'from': '0xed2ff48a44af828ba01e3fae7bdc9116aa647a3c', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 10018.8338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021f1f3fe30b25008000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0x8b8f53c501340d46cb14d756a22115592c071f99735997e2d1d4efc1cac6e310:log:47', 'hash': '0x8b8f53c501340d46cb14d756a22115592c071f99735997e2d1d4efc1cac6e310', 'from': '0x4f79a53a0d37f3297c9bd7e41f437df006cc128a', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 41884.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08de96c75aff77368000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0xddf67abc9589e72436bca76138ce1fb3498b9df68fcd2b679a81785b5a842567:log:48', 'hash': '0xddf67abc9589e72436bca76138ce1fb3498b9df68fcd2b679a81785b5a842567', 'from': '0xd3a3a7417c2f4a6f02a10e170a51cddfa14072be', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 3100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa80d24677efef00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0xcb46ef0bce39edc500d42ee11933fb572a1cba43ed20471311f9fc6b0707e514:log:49', 'hash': '0xcb46ef0bce39edc500d42ee11933fb572a1cba43ed20471311f9fc6b0707e514', 'from': '0xb8f9f9357d17f6cdd4976da1dc2930de540ec8ce', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0xeb27a611eb62eea5a5b35b6bbf2dc3badff9ff8338ea318ec9044257302c5b48:log:50', 'hash': '0xeb27a611eb62eea5a5b35b6bbf2dc3badff9ff8338ea318ec9044257302c5b48', 'from': '0xe9ee6e322a4e346db18ba82698842460b2175afd', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 10039.7918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02204219a900d7a38000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0x0edc5f8ea1e63f68b75d89a10a03d6ffecbc26c1e24ce4e813721eba313cb50d:log:51', 'hash': '0x0edc5f8ea1e63f68b75d89a10a03d6ffecbc26c1e24ce4e813721eba313cb50d', 'from': '0x945aa4cc8a546176e2322220e50901fb06f53795', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 10000.0038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19ee49cf24658000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0x61dd04a9a6830454900ec812344f3dbc1d30b467b6ca2d3f92af85bddb8680cf:log:52', 'hash': '0x61dd04a9a6830454900ec812344f3dbc1d30b467b6ca2d3f92af85bddb8680cf', 'from': '0xe4892df101cdda5c2be607673d29b464c50ee94c', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 10050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220cfc478d163c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0xba009bd8ec61b2ebb4d4fe04ce557c805b9f021cea0f513e5d8fa3ccb39b5e78:log:63', 'hash': '0xba009bd8ec61b2ebb4d4fe04ce557c805b9f021cea0f513e5d8fa3ccb39b5e78', 'from': '0xa926c682684167fcdc6c59356817d05d16c1e66a', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 11773.9738612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027e44b5fd93085d2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c7', 'uniqueId': '0x72b22426586a2c99968d792135abe0c5586ee6eb903970344ed5b4a0ee51607f:log:64', 'hash': '0x72b22426586a2c99968d792135abe0c5586ee6eb903970344ed5b4a0ee51607f', 'from': '0x34065465c837d5c25ff2fd15e34997595b16617e', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 141115.3096116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1de1e052becbec632000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:06.000Z'}}, {'blockNum': '0x7f96c8', 'uniqueId': '0x89c591a0390ae526c1172d6c78a677607c82c8ba8a611c8509e6041ae7cd51cc:log:29', 'hash': '0x89c591a0390ae526c1172d6c78a677607c82c8ba8a611c8509e6041ae7cd51cc', 'from': '0x4b41265b527bdd47d7509cad5b2d4f6b5da9d928', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 1590, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5631aebfd1a7180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:13.000Z'}}, {'blockNum': '0x7f96ca', 'uniqueId': '0xef1dea19aeb66a70a117e3c48c0b1fd150bcd7bf401ce2da8f7b60ed823a6ba9:log:74', 'hash': '0xef1dea19aeb66a70a117e3c48c0b1fd150bcd7bf401ce2da8f7b60ed823a6ba9', 'from': '0x68081c5915902d7b56d501de0a4644b92261eae0', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 20050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043ee9a5428c16080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:46.000Z'}}, {'blockNum': '0x7f96ca', 'uniqueId': '0x29e731e2060c6f1b7ba98b1ca5387e10448ebf27bdcd662530f11f66a514b639:log:79', 'hash': '0x29e731e2060c6f1b7ba98b1ca5387e10448ebf27bdcd662530f11f66a514b639', 'from': '0xab56d21c06b656c716f8c35bfafcbe2d596f56b5', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 30000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a5b25ff20e1068000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:46.000Z'}}, {'blockNum': '0x7f96ca', 'uniqueId': '0x754e2e74e09651257fb2af458f5af78f10b58f9fbe5fcb8803a967a3fbd508a4:log:80', 'hash': '0x754e2e74e09651257fb2af458f5af78f10b58f9fbe5fcb8803a967a3fbd508a4', 'from': '0x45923c0a932028e7f952b9184c51cbf7a81d1227', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 5793.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013a0ccce24f98f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:46.000Z'}}, {'blockNum': '0x7f96ca', 'uniqueId': '0x28c8eaa6f66c678429dfb40db71a1fe6e146a58d8bba8b400c40d70df7e8537e:log:81', 'hash': '0x28c8eaa6f66c678429dfb40db71a1fe6e146a58d8bba8b400c40d70df7e8537e', 'from': '0x72c43d0f5a65de9032776fa39ffc96ae7dceb9b6', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 10771.731822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0247efcefd07213ce000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:46.000Z'}}, {'blockNum': '0x7f96ca', 'uniqueId': '0x8e1243abcc4cc280920d80d62ac8e6b1a7f5dbf4c1a5b9e06543bcc24404fa45:log:82', 'hash': '0x8e1243abcc4cc280920d80d62ac8e6b1a7f5dbf4c1a5b9e06543bcc24404fa45', 'from': '0x99e0b16635fd89bead9327d59a26144548138895', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 33512.346077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0718b53a5103248ed000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:46.000Z'}}, {'blockNum': '0x7f96ca', 'uniqueId': '0x72ee098884cc68f92faa5b21a64592bd41736299e8708b243252d211085d30e2:log:86', 'hash': '0x72ee098884cc68f92faa5b21a64592bd41736299e8708b243252d211085d30e2', 'from': '0xa9f09bb560fc75e1817afdb12fe984536d7bae4c', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 59982.790131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb3ac6efdb3b57e3000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:46.000Z'}}, {'blockNum': '0x7f96ca', 'uniqueId': '0xed705c0aa2e4215cc5b7ab37f8de8526f98bc5cbf73ce1f57286230d655ec25a:log:91', 'hash': '0xed705c0aa2e4215cc5b7ab37f8de8526f98bc5cbf73ce1f57286230d655ec25a', 'from': '0x2c77eb4cc0c8b9165f4ddada6d7652657c7f6de6', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 8831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01debabe7f5b529c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:01:46.000Z'}}, {'blockNum': '0x7f96cb', 'uniqueId': '0x42014e777468b214ff97cb92e0dba323577b0e77e8136bfac7f925e35245ea1a:log:132', 'hash': '0x42014e777468b214ff97cb92e0dba323577b0e77e8136bfac7f925e35245ea1a', 'from': '0x30fbd661de537e6bbf3f84a441eb2d6f4a3d9c3d', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:02:25.000Z'}}, {'blockNum': '0x7f96cb', 'uniqueId': '0x230f19f4fc9111d55864312a9a6fecf22bc59019650e1a9ebb8c973540bdb142:log:137', 'hash': '0x230f19f4fc9111d55864312a9a6fecf22bc59019650e1a9ebb8c973540bdb142', 'from': '0x37b2b35177a119e49a8144c401af33f4f4cd5d78', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 60000.0038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b523a749fa58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:02:25.000Z'}}, {'blockNum': '0x7f96cd', 'uniqueId': '0xaa775195049b5e8b99b506d870571120cc7b37741040e31098b6b4d0ef26ce9a:log:86', 'hash': '0xaa775195049b5e8b99b506d870571120cc7b37741040e31098b6b4d0ef26ce9a', 'from': '0x0ddca6969afc9c492d281f6558d57da3a470a846', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 6560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01639e49bba162800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:03:09.000Z'}}, {'blockNum': '0x7f96cd', 'uniqueId': '0x16e4526a3eacdf92be586eda89278d91ffd9cd534aa496d8cfc3d53cf9bb0f5c:log:97', 'hash': '0x16e4526a3eacdf92be586eda89278d91ffd9cd534aa496d8cfc3d53cf9bb0f5c', 'from': '0x2fb6537ff6ee74d425b4247a30a49a7ca71a1da2', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 12970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02bf1ae869feb0680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:03:09.000Z'}}, {'blockNum': '0x7f96cd', 'uniqueId': '0x75d91bb9070fb4d6e43278c88cf46631eb3fc745550edf0f2a3d3931f63807c9:log:102', 'hash': '0x75d91bb9070fb4d6e43278c88cf46631eb3fc745550edf0f2a3d3931f63807c9', 'from': '0xa28920c3bc91ea069be51de593761409891817c8', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 9911.970455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0219543904f3c9fc7000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:03:09.000Z'}}, {'blockNum': '0x7f96cf', 'uniqueId': '0x020d1340de4b5f8129d3588fe3cd4fbd05535fab45e2a3103849e5d23eac035e:log:16', 'hash': '0x020d1340de4b5f8129d3588fe3cd4fbd05535fab45e2a3103849e5d23eac035e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 32107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06cc862215d2cacc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:03:54.000Z'}}, {'blockNum': '0x7f96d1', 'uniqueId': '0x6e2f7cbfb7c69b80e36fae859ffb058c1f8e46c06537610fcfac68cd495ad411:log:93', 'hash': '0x6e2f7cbfb7c69b80e36fae859ffb058c1f8e46c06537610fcfac68cd495ad411', 'from': '0x32bc631b26829af674d8aef0dc8af74df74f344e', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 8560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d009dd172d1fc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:43.000Z'}}, {'blockNum': '0x7f96d1', 'uniqueId': '0x0215a246342ee58e56385ed8ea7163ddc06a27efc944c6ec2537c2cf18dd5fde:log:96', 'hash': '0x0215a246342ee58e56385ed8ea7163ddc06a27efc944c6ec2537c2cf18dd5fde', 'from': '0x08513530250c594f0ee027cc94ddc6040a5c8a52', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 10017.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021f126063c217598000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:43.000Z'}}, {'blockNum': '0x7f96d1', 'uniqueId': '0x809b63ecd04c81ca44ba48a6fe496c71ef8b4ede9629b418a5bf2dfd4008744c:log:97', 'hash': '0x809b63ecd04c81ca44ba48a6fe496c71ef8b4ede9629b418a5bf2dfd4008744c', 'from': '0x8b360aa702fb9c92d70246d0e0b3cfa51c4732ef', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 6560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01639e49bba162800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:43.000Z'}}, {'blockNum': '0x7f96d1', 'uniqueId': '0x40be9f33f1f34381fbe8e8053202170010c93137e66a995d009e2f81e1f472e6:log:105', 'hash': '0x40be9f33f1f34381fbe8e8053202170010c93137e66a995d009e2f81e1f472e6', 'from': '0x369a9081ee76e4211fe59f874aa357606d1505b7', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 60376.6615096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cc9067f39b7fbe2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:43.000Z'}}, {'blockNum': '0x7f96d1', 'uniqueId': '0x5c0373c84f9f13f463d5bfeb01af88c5ae3a4bc6ef04c72aa45e880e8e38e3bc:log:107', 'hash': '0x5c0373c84f9f13f463d5bfeb01af88c5ae3a4bc6ef04c72aa45e880e8e38e3bc', 'from': '0x267878ab62359d050471906255703981a82a5e4e', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 20000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c414535662ec68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:43.000Z'}}, {'blockNum': '0x7f96d1', 'uniqueId': '0x41b82eeb1392ceaff294e0fe2d0e50bf66c750391239d9b1b99b881a088c5b8b:log:108', 'hash': '0x41b82eeb1392ceaff294e0fe2d0e50bf66c750391239d9b1b99b881a088c5b8b', 'from': '0x1bac3d13a9f7be5f81195394272d9077a1a1ab3c', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 52500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b1e07dc231427d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:43.000Z'}}, {'blockNum': '0x7f96d1', 'uniqueId': '0x3a256ea2e308d01bfe2b90b629307aad862115199c41b7dfbcc87081db148239:log:111', 'hash': '0x3a256ea2e308d01bfe2b90b629307aad862115199c41b7dfbcc87081db148239', 'from': '0x366fe02cbd5b000d31aa8a5c8edf2998fb4f4913', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 7728.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a2fc1ec76662358000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:43.000Z'}}, {'blockNum': '0x7f96d1', 'uniqueId': '0xad5d1d83626e84d608414832c24edc61b67fd2ce388d59faa0205a8672e8bd1a:log:114', 'hash': '0xad5d1d83626e84d608414832c24edc61b67fd2ce388d59faa0205a8672e8bd1a', 'from': '0x1ae9506b2d6d38a2fc428f8d0acb75cd2e02ac53', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:43.000Z'}}, {'blockNum': '0x7f96d1', 'uniqueId': '0x3e975daf76aa9653e153e08c9bdc9fcd2fea7a4c7a38e45b8e40286b8bde1a44:log:115', 'hash': '0x3e975daf76aa9653e153e08c9bdc9fcd2fea7a4c7a38e45b8e40286b8bde1a44', 'from': '0x747586250f4116b7caaeca8064e6985431b48605', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 8232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01be41f300fea7a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:43.000Z'}}, {'blockNum': '0x7f96d2', 'uniqueId': '0xa01455c5c98322995cc2f58af3037ae52f8137abfea49e8330579b4f21887dbc:log:35', 'hash': '0xa01455c5c98322995cc2f58af3037ae52f8137abfea49e8330579b4f21887dbc', 'from': '0xb9372bb38824daca83705967396ee05662a97544', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 5300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x011f50467f6582500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:44.000Z'}}, {'blockNum': '0x7f96d2', 'uniqueId': '0xc0d46e6b72ce9a801330c6f04fa3155141c6bbd1c644641af30631dbcf04d794:log:46', 'hash': '0xc0d46e6b72ce9a801330c6f04fa3155141c6bbd1c644641af30631dbcf04d794', 'from': '0xb66c4f96c9161a14788a5b0ec40478849d07c7a5', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 30000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a5a35d5495e358000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:44.000Z'}}, {'blockNum': '0x7f96d2', 'uniqueId': '0x1ed2b31f5182876f520c3b64fb8f3a375342bec7f0640bd8de089e033d62da86:log:61', 'hash': '0x1ed2b31f5182876f520c3b64fb8f3a375342bec7f0640bd8de089e033d62da86', 'from': '0xbcf0a81e5454a8954c956d5c8397fefffa6a5774', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 63000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d574a2565a293a68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:44.000Z'}}, {'blockNum': '0x7f96d2', 'uniqueId': '0x5ce5731c4ee584db3e4fefb9678eb6f257e9d73ac3f6ea78be140ef805da0ba3:log:65', 'hash': '0x5ce5731c4ee584db3e4fefb9678eb6f257e9d73ac3f6ea78be140ef805da0ba3', 'from': '0x67d050bccd3f07f94ae1996390938faa83ecfc90', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 6560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01639e49bba162800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:44.000Z'}}, {'blockNum': '0x7f96d2', 'uniqueId': '0x93e58b7f64c8a3832294798a9598464a9d68caa8b2036a5be6eb7b9cc9d77064:log:69', 'hash': '0x93e58b7f64c8a3832294798a9598464a9d68caa8b2036a5be6eb7b9cc9d77064', 'from': '0x9db30342fdb544b850c2527d0f100663b2c654aa', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 21967.9476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04a6e283ef067b050000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:44.000Z'}}, {'blockNum': '0x7f96d2', 'uniqueId': '0xe01dcbd6cea462e531590bef70e57255a2fb20d3c651936ead4c1ddbdfb58cac:log:81', 'hash': '0xe01dcbd6cea462e531590bef70e57255a2fb20d3c651936ead4c1ddbdfb58cac', 'from': '0xddbb40bbdb2b35a444dba9828801fc86b0d253f5', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 30000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a5a35d5495e358000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:44.000Z'}}, {'blockNum': '0x7f96d2', 'uniqueId': '0x4b5039d8c9e3c8b08b65e8385721eb96b9cef6aa9771679f251c3e039b6c3aa7:log:87', 'hash': '0x4b5039d8c9e3c8b08b65e8385721eb96b9cef6aa9771679f251c3e039b6c3aa7', 'from': '0xbe03d246d898f2e4ea5cb8bea003e2d0e2392865', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 7865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01aa5ccd1571af440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:44.000Z'}}, {'blockNum': '0x7f96d3', 'uniqueId': '0xea405122b10dad99ea2a674471c414d740c68b620a4321e700c9b4c828d51561:log:134', 'hash': '0xea405122b10dad99ea2a674471c414d740c68b620a4321e700c9b4c828d51561', 'from': '0xba69ad20d99793e49a66ba7c507a8ff8ad56c72c', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 10067.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0221c84412d8c8e18000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:52.000Z'}}, {'blockNum': '0x7f96d3', 'uniqueId': '0x2ead09a034a54acac3e1c2d1d45ea372862ce9c21fd1ede5e1964a05876e1b18:log:146', 'hash': '0x2ead09a034a54acac3e1c2d1d45ea372862ce9c21fd1ede5e1964a05876e1b18', 'from': '0xf05c213a7ec41dc68ce0545f2a369ce152a9b976', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 30812.2811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0686564c89fcf64cc000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:04:52.000Z'}}, {'blockNum': '0x7f96d4', 'uniqueId': '0xda846b55745c5f86f43337411e31012b25cdde8e542b42e21499613fa5b130ed:log:39', 'hash': '0xda846b55745c5f86f43337411e31012b25cdde8e542b42e21499613fa5b130ed', 'from': '0x45d6dfa2cfcb76103732154a143202a24a803651', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:05:08.000Z'}}, {'blockNum': '0x7f96d5', 'uniqueId': '0x5a3c792b5d4a7514dac244cf618a72ea6ddab8484e29ecb53d1790eb13eec8ef:log:95', 'hash': '0x5a3c792b5d4a7514dac244cf618a72ea6ddab8484e29ecb53d1790eb13eec8ef', 'from': '0xeee1f956ffd73fe3cc49ab186ad4feb44ae6850d', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 60000.0738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49c4aeb15adec8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:05:21.000Z'}}, {'blockNum': '0x7f96d6', 'uniqueId': '0xfb4ca2eca9869db0708e64adb133b737d0d63cbf17afeb3e5eb7320e0bd85ee2:log:15', 'hash': '0xfb4ca2eca9869db0708e64adb133b737d0d63cbf17afeb3e5eb7320e0bd85ee2', 'from': '0xe4bed18d16755fbaf670098fe20643917c39b3f0', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 6560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01639e49bba162800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:05:26.000Z'}}, {'blockNum': '0x7f96d7', 'uniqueId': '0x31c3e67c0367ab9ae343d57442a49a9bf1de9f052978af190a5280fbb6eda786:log:56', 'hash': '0x31c3e67c0367ab9ae343d57442a49a9bf1de9f052978af190a5280fbb6eda786', 'from': '0x4dfe23b6b3574ec0ca8d52439ea7b64165a55ce0', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 1964.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6a857d4c38fd768000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:05:35.000Z'}}, {'blockNum': '0x7f96d8', 'uniqueId': '0xd9a6b1cad5d8dedda7cfd826a3e67c46bebff9cb85ea2d2e67c29df77e2cd7ee:log:107', 'hash': '0xd9a6b1cad5d8dedda7cfd826a3e67c46bebff9cb85ea2d2e67c29df77e2cd7ee', 'from': '0x3c78dcaff91cb24026c8c3a9eee755ea57e8f273', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 8000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1bbd1101fbf468000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:05:52.000Z'}}, {'blockNum': '0x7f96d8', 'uniqueId': '0x7f0569e7c42035234d6f681c4bc80b341f42fd199dc1f92180b5077b011869e6:log:110', 'hash': '0x7f0569e7c42035234d6f681c4bc80b341f42fd199dc1f92180b5077b011869e6', 'from': '0xb7d3d2d5ee9fdbc2c577fd210b5cf11030d72786', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 98637.9476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14e32c81aff4aa3d0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:05:52.000Z'}}, {'blockNum': '0x7f96da', 'uniqueId': '0xe6f73e3ab9d12ba60bc38f71424990f26578c22be380050580ff9e3e97b9d42d:log:65', 'hash': '0xe6f73e3ab9d12ba60bc38f71424990f26578c22be380050580ff9e3e97b9d42d', 'from': '0xd7c5e544ae34165cbccb124557632cafeedfc45c', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 46968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09f23173b2cfbd268000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:06:20.000Z'}}, {'blockNum': '0x7f96db', 'uniqueId': '0xe4086f638b6c8dcca14e6d2098e393fe82f73d96c61659119cee13d4ffc58223:log:72', 'hash': '0xe4086f638b6c8dcca14e6d2098e393fe82f73d96c61659119cee13d4ffc58223', 'from': '0x192a2d3caaa1fb1d85eb05dfdc2a9bfdbd27c104', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 34000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0733315c8c60d8b58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:06:28.000Z'}}, {'blockNum': '0x7f96e2', 'uniqueId': '0xf0f457c6e76695813c8ff9cde0f20cf0c9a01b30c62ea2d1333db5c2ae5f7695:log:62', 'hash': '0xf0f457c6e76695813c8ff9cde0f20cf0c9a01b30c62ea2d1333db5c2ae5f7695', 'from': '0x00a595dce43fb7717ed27c5bd2716a95679757aa', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:07:58.000Z'}}, {'blockNum': '0x7f96e2', 'uniqueId': '0x6298cb4331f54fcdb01b6a59334ec54c52bb534744203d885516e6d6fb8ea510:log:65', 'hash': '0x6298cb4331f54fcdb01b6a59334ec54c52bb534744203d885516e6d6fb8ea510', 'from': '0xa0b1c853aa0d640d5267d6035f3d9d5b75b750bf', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 22011.2931758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04a93c0e5a8f8ac9b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:07:58.000Z'}}, {'blockNum': '0x7f96e2', 'uniqueId': '0xba75ec48add9d8c63ae68a487be9c5e8da88f7dfc274e2c13aebce994c809e81:log:74', 'hash': '0xba75ec48add9d8c63ae68a487be9c5e8da88f7dfc274e2c13aebce994c809e81', 'from': '0x2225ecc59b7f0fd97e511aa6381eacf81aeda363', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 49120.0062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a66cd05edf4111b8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:07:58.000Z'}}, {'blockNum': '0x7f96e2', 'uniqueId': '0x9429ab49f40687bca05751d55471b3086cc6b2882182be64721bab25d61112ba:log:76', 'hash': '0x9429ab49f40687bca05751d55471b3086cc6b2882182be64721bab25d61112ba', 'from': '0xc6898530c50e068ba3f0c4dc0b61c34f51a36a77', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 7116.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0181ceea01ea37258000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:07:58.000Z'}}, {'blockNum': '0x7f96e2', 'uniqueId': '0x7cec8cd6c8e7d33cf9f778decddfb93a4e08b88f41674a6391bf067c41db88b3:log:78', 'hash': '0x7cec8cd6c8e7d33cf9f778decddfb93a4e08b88f41674a6391bf067c41db88b3', 'from': '0x8b2379f1e120326d1cdcfe7f477375a29fba1be5', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 20017.5381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043d27256c7cdbc74000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:07:58.000Z'}}, {'blockNum': '0x7f96e5', 'uniqueId': '0x24e8017d83a861ce7a59b9dc9fa2fb3d176ea2e66675d2ec471661714e19770b:log:25', 'hash': '0x24e8017d83a861ce7a59b9dc9fa2fb3d176ea2e66675d2ec471661714e19770b', 'from': '0x8eb0869808fe2b7a053d18b9f0238e0827425c5e', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 10000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e267441d3f9b58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:08:46.000Z'}}, {'blockNum': '0x7f96e5', 'uniqueId': '0xf97e6dd7ab55e573a7de7fbce971cb9f5061d7bf8fb6a5b98b2c4c68c3057f9a:log:103', 'hash': '0xf97e6dd7ab55e573a7de7fbce971cb9f5061d7bf8fb6a5b98b2c4c68c3057f9a', 'from': '0x752fc1d50daa326c60c2682b43618c841147a846', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 39486.1874314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x085c8cee361232f91000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:08:46.000Z'}}, {'blockNum': '0x7f96ed', 'uniqueId': '0x6dbe829e873c85f3c8d9cad81f450c8f142402b227c6110495b204968a48b1e7:log:5', 'hash': '0x6dbe829e873c85f3c8d9cad81f450c8f142402b227c6110495b204968a48b1e7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 33318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070e2c2259aba0d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:09:58.000Z'}}, {'blockNum': '0x7f96ed', 'uniqueId': '0x3d6cf913a4d08484086568e64ed79dd8fe67a06ff64efb1d55309fffd5c4720b:log:128', 'hash': '0x3d6cf913a4d08484086568e64ed79dd8fe67a06ff64efb1d55309fffd5c4720b', 'from': '0xb0748f91554107b19ded2b8b4f33afe580250955', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 22570.5003202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04c78c9d3996095bd000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:09:58.000Z'}}, {'blockNum': '0x7f96f5', 'uniqueId': '0xc0647cef5ebdda862ad746c6fbaef74391ab030f7760c2744427450b1a3d9c44:log:134', 'hash': '0xc0647cef5ebdda862ad746c6fbaef74391ab030f7760c2744427450b1a3d9c44', 'from': '0x1b36013692f472a3743f9e6bf099fe2061042526', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 7196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0186188fa1f53ef00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:11:28.000Z'}}, {'blockNum': '0x7f96f8', 'uniqueId': '0x5ea873bfba104113e304b995f40445f8c30aa69661b5e4dde42890e827252519:log:82', 'hash': '0x5ea873bfba104113e304b995f40445f8c30aa69661b5e4dde42890e827252519', 'from': '0x051e2e63fcbb9a29991b3e9dcd6dc052e23e5877', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 1940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x692ae8897081d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:12:01.000Z'}}, {'blockNum': '0x7f9704', 'uniqueId': '0xf8ddcb80dcf96d6d6a43f2fed8ff23556370817bab1ca2c5e76d3d381b1f6a3e:log:69', 'hash': '0xf8ddcb80dcf96d6d6a43f2fed8ff23556370817bab1ca2c5e76d3d381b1f6a3e', 'from': '0xc413d7d9df4f718f883f69a45881d396fd1817b1', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 49965.860139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a94a79ac9f29909b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:14:04.000Z'}}, {'blockNum': '0x7f9706', 'uniqueId': '0xe996a8ae866faa5540e737355be2d95a303cc7a598d1939c6d361cdd05a651a9:log:31', 'hash': '0xe996a8ae866faa5540e737355be2d95a303cc7a598d1939c6d361cdd05a651a9', 'from': '0xf7041ff2760d73e259ac9c8a8eb2e622a77bfc6c', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x270801d946c9400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:14:11.000Z'}}, {'blockNum': '0x7f970b', 'uniqueId': '0x7c2bacccf7b875341fd95a23aea916f3445f38ab24efbaa86c8b54e5ea4941ff:log:22', 'hash': '0x7c2bacccf7b875341fd95a23aea916f3445f38ab24efbaa86c8b54e5ea4941ff', 'from': '0xfd320b1121efb8464710f1b192cc1810df47d65f', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 49087.7393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a650d3adf5c5a0e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:15:07.000Z'}}, {'blockNum': '0x7f9714', 'uniqueId': '0xc85f2801f5563a6a7ca574c647ce0a2a14f499ff6445b06355c2f891152c1532:log:21', 'hash': '0xc85f2801f5563a6a7ca574c647ce0a2a14f499ff6445b06355c2f891152c1532', 'from': '0xabba9a5a9bca09ad02195a04c0d2309191449748', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 20090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x044114c1ce9e3da80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:16:04.000Z'}}, {'blockNum': '0x7f9716', 'uniqueId': '0xc8a92a140e6ebb3078d5b521e4f3b99a13fcca61a03c2bfeea70c007b9249e9a:log:6', 'hash': '0xc8a92a140e6ebb3078d5b521e4f3b99a13fcca61a03c2bfeea70c007b9249e9a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x25f8f0bece78e17e360bf85cdc0a5c12254add8b', 'value': 10990.025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0253c53c25da1e5a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:16:26.000Z'}}, {'blockNum': '0x7f9717', 'uniqueId': '0x5659fab5d233e2f6641f0786ab6f22e963573f12561eed3511d9a591d5657f4f:log:23', 'hash': '0x5659fab5d233e2f6641f0786ab6f22e963573f12561eed3511d9a591d5657f4f', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 33318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070e2c2259aba0d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:17:01.000Z'}}, {'blockNum': '0x7f9722', 'uniqueId': '0x679ba9415f971d68341b49c6faa16cb87d3738cdb530acbe025fd3cd5f80fe78:log:65', 'hash': '0x679ba9415f971d68341b49c6faa16cb87d3738cdb530acbe025fd3cd5f80fe78', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0x1ca64d12c404d809bb5850d6597c83fd6c3c8385', 'value': 894.461161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x307d2466df047b9000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:19:49.000Z'}}, {'blockNum': '0x7f9729', 'uniqueId': '0xd9a9720d4b445a9b0d0a1088b393efcc2c9f7855c526bee9b4f07ad224fb51e1:log:40', 'hash': '0xd9a9720d4b445a9b0d0a1088b393efcc2c9f7855c526bee9b4f07ad224fb51e1', 'from': '0x89caae1dcb6fdfb5cbee943ffc43f6cdbac09449', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 5940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0142020f4087fc500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:21:18.000Z'}}, {'blockNum': '0x7f9729', 'uniqueId': '0xff485f33206a468f2df13ac74eece551bd3987d03938d670c583d4285c6bc417:log:42', 'hash': '0xff485f33206a468f2df13ac74eece551bd3987d03938d670c583d4285c6bc417', 'from': '0x09a467d4aae7d3ead0e8057aafb84ecfa030db3a', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 17470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03b30cf3f7f91a380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:21:18.000Z'}}, {'blockNum': '0x7f9729', 'uniqueId': '0x3c08600bede87903f0e839039c5da678f731d5f8027113293d4549e27d35f45e:log:46', 'hash': '0x3c08600bede87903f0e839039c5da678f731d5f8027113293d4549e27d35f45e', 'from': '0xe3ea6d3098e6f09dfc9c2d0155086841ab0656a2', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:21:18.000Z'}}, {'blockNum': '0x7f972c', 'uniqueId': '0x1e199904af14e64696b37f53a885a4f82987224866fa1d081ec4b10cc65a4c6a:log:102', 'hash': '0x1e199904af14e64696b37f53a885a4f82987224866fa1d081ec4b10cc65a4c6a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 21575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x049195459ec03cbc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:22:45.000Z'}}, {'blockNum': '0x7f9732', 'uniqueId': '0x561c53c8f62d6e718f84f68329db17706ca14fcf97d815ddd023387a20cb4212:log:18', 'hash': '0x561c53c8f62d6e718f84f68329db17706ca14fcf97d815ddd023387a20cb4212', 'from': '0x1ca64d12c404d809bb5850d6597c83fd6c3c8385', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 894.461161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x307d2466df047b9000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:25:47.000Z'}}, {'blockNum': '0x7f973c', 'uniqueId': '0x784d70441e20acc05a41322a3b08e099cba7dba3b4dd9e4590472cac5d9e1265:log:230', 'hash': '0x784d70441e20acc05a41322a3b08e099cba7dba3b4dd9e4590472cac5d9e1265', 'from': '0x3ae6d457ded9f90611292a6ae651711e7e7c0485', 'to': '0x16b9017974befb66a7544354887a964c8bad61f8', 'value': 18710.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03f652ec901cb0de8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:27:45.000Z'}}, {'blockNum': '0x7f973c', 'uniqueId': '0xd7b8ca426e8c183e0ddf5e04b0f5084f3ae20dcdbf9b629cb3ca6b1e98d064a1:log:242', 'hash': '0xd7b8ca426e8c183e0ddf5e04b0f5084f3ae20dcdbf9b629cb3ca6b1e98d064a1', 'from': '0xbffa3647a8cedcc00e7b954e357b572740b08c50', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa10107a043fe280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:27:45.000Z'}}, {'blockNum': '0x7f9743', 'uniqueId': '0xa7ef64f658730b048647de13eca05f00bc17e111a608fff975c060a2f0b5f1ae:log:190', 'hash': '0xa7ef64f658730b048647de13eca05f00bc17e111a608fff975c060a2f0b5f1ae', 'from': '0x209bf498ab39c67b66f36c9e6ac83cb20550604c', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:29:16.000Z'}}, {'blockNum': '0x7f9744', 'uniqueId': '0xf9e380a63f971dd660d6ee371fc488d27dcd52f201c8fa643e68fff94519e1ce:log:245', 'hash': '0xf9e380a63f971dd660d6ee371fc488d27dcd52f201c8fa643e68fff94519e1ce', 'from': '0x90d8fe1763a6e06613cdd078af879967b9dca390', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 30000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a5a35d5495e358000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:29:18.000Z'}}, {'blockNum': '0x7f9744', 'uniqueId': '0x79445c9a8eda9e77316cafcd71327d4252dfa3020e3301e31ced5ca8e8238698:log:248', 'hash': '0x79445c9a8eda9e77316cafcd71327d4252dfa3020e3301e31ced5ca8e8238698', 'from': '0xcbd8399c813c2c1e43332467afd7fdae0e1cae08', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 31732.812555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06b83d3d3b203ec7b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:29:18.000Z'}}, {'blockNum': '0x7f9744', 'uniqueId': '0xb94646d48dab300a3997c8a9d4e805feaf0b6d77ad848e37c36d7ee6a905f771:log:255', 'hash': '0xb94646d48dab300a3997c8a9d4e805feaf0b6d77ad848e37c36d7ee6a905f771', 'from': '0x4c54e7ec43c7389e451e99bca582525a60fa1b4e', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 10000.7862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e24c9ee76bca98000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:29:18.000Z'}}, {'blockNum': '0x7f9744', 'uniqueId': '0x784ee91006115db502a483f8685602a6cf275501c88a762262dc5e7971540c4f:log:264', 'hash': '0x784ee91006115db502a483f8685602a6cf275501c88a762262dc5e7971540c4f', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x9ef4acc2fd5cde01ece05bd4e44732a023ed7845', 'value': 305.94249528419346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1095ce168216f894a0', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:29:18.000Z'}}, {'blockNum': '0x7f9746', 'uniqueId': '0x174051990fa25575b1492b6c67c76c89da43948d47dd9fbc9e902cb5b6ef84ff:log:172', 'hash': '0x174051990fa25575b1492b6c67c76c89da43948d47dd9fbc9e902cb5b6ef84ff', 'from': '0xc95e5a34369115a41b6aade0d961ea5b45402f8d', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:29:37.000Z'}}, {'blockNum': '0x7f9747', 'uniqueId': '0x6488a306188a7f3277a27ebce0f4bb35f3e207b55a1177a3c15effce81d0f761:log:213', 'hash': '0x6488a306188a7f3277a27ebce0f4bb35f3e207b55a1177a3c15effce81d0f761', 'from': '0xed1c11f1b9784586d374fa42d0471a8c0a7f1227', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:29:51.000Z'}}, {'blockNum': '0x7f9747', 'uniqueId': '0x58927f6981b5cff1eef9dfde62e1f3b64ae2ce70ce8c9f530cdad0c1e730a2f2:log:220', 'hash': '0x58927f6981b5cff1eef9dfde62e1f3b64ae2ce70ce8c9f530cdad0c1e730a2f2', 'from': '0x56cb6c082f2c8bbae358370d3c7101ffdda9395e', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 33354.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07102ad636b217380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:29:51.000Z'}}, {'blockNum': '0x7f9747', 'uniqueId': '0x97ed6d58291264264ac384fe09442beb695ca3607aa9184f531571b680353493:log:225', 'hash': '0x97ed6d58291264264ac384fe09442beb695ca3607aa9184f531571b680353493', 'from': '0x9212bc8b30cf30b611eaebe02b25f0ccd8784b66', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 60000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a7d8327974f58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:29:51.000Z'}}, {'blockNum': '0x7f9749', 'uniqueId': '0x41fc767475c8141200aa708b25dc67c70615b037712aa8750b87b810cc37b25a:log:69', 'hash': '0x41fc767475c8141200aa708b25dc67c70615b037712aa8750b87b810cc37b25a', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6571a724a4826d887fd18cea8f8fff93eb74bf44', 'value': 94000.079211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13e7c12738a3dc0db000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:30:19.000Z'}}, {'blockNum': '0x7f974d', 'uniqueId': '0x95d92b6cdd760f5fc0411b506fed5108f6818b20859b863a5ef40ce85559c02c:log:213', 'hash': '0x95d92b6cdd760f5fc0411b506fed5108f6818b20859b863a5ef40ce85559c02c', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 21575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x049195459ec03cbc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:30:46.000Z'}}, {'blockNum': '0x7f9758', 'uniqueId': '0xa1042a0c7ab09aa51f19998c4763bf4cc369ff9f597a3183fb234b248c481343:log:15', 'hash': '0xa1042a0c7ab09aa51f19998c4763bf4cc369ff9f597a3183fb234b248c481343', 'from': '0xd390d7eaa6d3f0daec542109720add8eb639ba62', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 58834.7603524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c757051e4967625a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:32:36.000Z'}}, {'blockNum': '0x7f975a', 'uniqueId': '0x496d9fa76a0a0a9e0c6cbcee99b55bc7b79d86791992ebb94e3063813952be97:log:89', 'hash': '0x496d9fa76a0a0a9e0c6cbcee99b55bc7b79d86791992ebb94e3063813952be97', 'from': '0x6bac1a699979ae4034d2cbeaeb64172ee27e1f44', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 60009.4368308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb51e3b15fd64f72000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:33:08.000Z'}}, {'blockNum': '0x7f9764', 'uniqueId': '0x3704b928cf3b9759d1b9bd9870004709b228e6bfedabbe9fc8ba3dcf45b98698:log:41', 'hash': '0x3704b928cf3b9759d1b9bd9870004709b228e6bfedabbe9fc8ba3dcf45b98698', 'from': '0x8d1a12031c9974081f99759a3a0874a6a04f5006', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 31330.0937874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06a26864c1b071b05000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:34:42.000Z'}}, {'blockNum': '0x7f9765', 'uniqueId': '0xd4dc6649c8b89f367c400ee2e0fb9658eb9466154caa4797bf7557e7722680a2:log:108', 'hash': '0xd4dc6649c8b89f367c400ee2e0fb9658eb9466154caa4797bf7557e7722680a2', 'from': '0x0d8f450c1c8c4bb9a1256cc33b52835cb75cab1f', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 9981.8336486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021d1dc4f16164547000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:34:58.000Z'}}, {'blockNum': '0x7f9766', 'uniqueId': '0x1f76fad52037e89ae76c693e5dc0a3f3f9f25248618eec486b07d7f781cc109e:log:110', 'hash': '0x1f76fad52037e89ae76c693e5dc0a3f3f9f25248618eec486b07d7f781cc109e', 'from': '0xb22ab566a9c4066e9a5156d1c5f64583c68b0b6d', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:06.000Z'}}, {'blockNum': '0x7f9766', 'uniqueId': '0x5b5d5ead0625842c9b77fb3106317d9d0e1743b3f7096d7350dc47ef73da8e79:log:111', 'hash': '0x5b5d5ead0625842c9b77fb3106317d9d0e1743b3f7096d7350dc47ef73da8e79', 'from': '0xe0660b2e4b8a89b7123f86c3e2fd34ba1e1354b4', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 10055.12767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022116ed9d83ef356000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:06.000Z'}}, {'blockNum': '0x7f9768', 'uniqueId': '0xb6bbc7ac63cee1c7fc7d8c391bd7230cfc0feacd8642a4f6378c1254e6eee7f1:log:85', 'hash': '0xb6bbc7ac63cee1c7fc7d8c391bd7230cfc0feacd8642a4f6378c1254e6eee7f1', 'from': '0xa6a59907a180d77c65334e54a2b0f6dc06845561', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 10048.7738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220bec0226a24328000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:41.000Z'}}, {'blockNum': '0x7f9768', 'uniqueId': '0x2b1027303d29d0faff302b4c889f9b33d08a078531e7e205cca17d477ac7c4bb:log:87', 'hash': '0x2b1027303d29d0faff302b4c889f9b33d08a078531e7e205cca17d477ac7c4bb', 'from': '0x57a7c70a67aa1c40d67c63df395c2b7133cf8c7b', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:41.000Z'}}, {'blockNum': '0x7f9768', 'uniqueId': '0x63205a15ebbf3ba4e82fa54659d8e51ef3aadef3c88ead44f22cce67f2426e28:log:92', 'hash': '0x63205a15ebbf3ba4e82fa54659d8e51ef3aadef3c88ead44f22cce67f2426e28', 'from': '0xb4c70ef7839e357b5db9fc89b891af807a39cb34', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:41.000Z'}}, {'blockNum': '0x7f9768', 'uniqueId': '0x738fbfb652e3a37b1cdc7329af507e6164c26ddc20e8ba8c7e2e0a7f0e852e8a:log:94', 'hash': '0x738fbfb652e3a37b1cdc7329af507e6164c26ddc20e8ba8c7e2e0a7f0e852e8a', 'from': '0xc9344393bb0cbfbf9da0cae75125cce203804c38', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:41.000Z'}}, {'blockNum': '0x7f9768', 'uniqueId': '0x701b1f8827f97eb5d51b3f5537456f54fdfbbbf186e0ff8d133892f1c5e160a9:log:102', 'hash': '0x701b1f8827f97eb5d51b3f5537456f54fdfbbbf186e0ff8d133892f1c5e160a9', 'from': '0xf7562f5a8329e3cb32d80609d532cd8a69ad53c6', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 41240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08bb9ff81d1d95600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:41.000Z'}}, {'blockNum': '0x7f9768', 'uniqueId': '0x4646e581f0ed703c34252274afa64c7737b1ecc7e2abc964b04caa052579f684:log:108', 'hash': '0x4646e581f0ed703c34252274afa64c7737b1ecc7e2abc964b04caa052579f684', 'from': '0xd5e795a2e3f74dc2e076c6c169bec80ae7cecb06', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:41.000Z'}}, {'blockNum': '0x7f9768', 'uniqueId': '0x50c0a6f16a35c4f8829bc020c184e96ac2012cc30c52a8317be71f3c210a2d54:log:110', 'hash': '0x50c0a6f16a35c4f8829bc020c184e96ac2012cc30c52a8317be71f3c210a2d54', 'from': '0xc46b8f5df5af755565686ef1dd01b511a10de48b', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 10738.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x024629331d940ace8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:41.000Z'}}, {'blockNum': '0x7f9769', 'uniqueId': '0x786f699e6aa388e091929b746098e761c2c078e6d07170e29379981f360f7ded:log:81', 'hash': '0x786f699e6aa388e091929b746098e761c2c078e6d07170e29379981f360f7ded', 'from': '0x924201062aae4150d2fc0802363217bb6fbc690d', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:35:52.000Z'}}, {'blockNum': '0x7f976b', 'uniqueId': '0x1fae8157569a5c8410265219359c9bbee44cfb5c91054daea5ba34fa350a9e60:log:81', 'hash': '0x1fae8157569a5c8410265219359c9bbee44cfb5c91054daea5ba34fa350a9e60', 'from': '0x1f218671111d1f4fea7a7fe59a9d84081cd0cfa1', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 6028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0146c74e0e4986b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:36:35.000Z'}}, {'blockNum': '0x7f976b', 'uniqueId': '0x37045c98578c5e8ab410fee44f6469075a5222062081a11a6e6c3639abf9bbc0:log:102', 'hash': '0x37045c98578c5e8ab410fee44f6469075a5222062081a11a6e6c3639abf9bbc0', 'from': '0x873db02e2baeb1f97b258908255683e37f183213', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:36:35.000Z'}}, {'blockNum': '0x7f976b', 'uniqueId': '0x97216e1d2320ad739898bf930d28be034326e20816415a06141605bfff2b48ba:log:103', 'hash': '0x97216e1d2320ad739898bf930d28be034326e20816415a06141605bfff2b48ba', 'from': '0x3baff32627224bd55b37581173c25a7bdb1f804d', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 40218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x088438debbe754280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:36:35.000Z'}}, {'blockNum': '0x7f976d', 'uniqueId': '0x5b6fc561362ce889db42e5016becb386a3a6dc1b3256d9d2fefee14078b2fcb3:log:12', 'hash': '0x5b6fc561362ce889db42e5016becb386a3a6dc1b3256d9d2fefee14078b2fcb3', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'value': 5085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0113a88d0e83ed540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:37:10.000Z'}}, {'blockNum': '0x7f976d', 'uniqueId': '0x6b6e0d58d3b182f8a27ffc469efd59455232d51d044170a84dea80a2f4f2ff75:log:46', 'hash': '0x6b6e0d58d3b182f8a27ffc469efd59455232d51d044170a84dea80a2f4f2ff75', 'from': '0x2b1c002274d8fbb4c1f5d8c0b7d9bfdd562cfaea', 'to': '0x92d29bebbb2def2b117a97aee60bc94db36e31a9', 'value': 5912.5824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014085905e988a900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:37:10.000Z'}}, {'blockNum': '0x7f976d', 'uniqueId': '0x31e479f453cbf3c8ab75b650aed5c7830bead017a11b068d35f73f444376114e:log:61', 'hash': '0x31e479f453cbf3c8ab75b650aed5c7830bead017a11b068d35f73f444376114e', 'from': '0x945862ca3f50745de7e6b375a638adc10a07683c', 'to': '0xc0ee5dce7ca9fdee1c7cc85aaf1bd6fb3c6836c7', 'value': 10522.5664158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023a6df1a4394e533000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:37:10.000Z'}}, {'blockNum': '0x7f976d', 'uniqueId': '0xdc2d932efd2b1ab0bc3dfb625855f8cfb8925fececa4bf6fdffde23400ffa165:log:62', 'hash': '0xdc2d932efd2b1ab0bc3dfb625855f8cfb8925fececa4bf6fdffde23400ffa165', 'from': '0x4e0d0702402619f9b39193e453906c2b8bff1447', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 43868.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x094a244f4b50be368000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:37:10.000Z'}}, {'blockNum': '0x7f976d', 'uniqueId': '0x6fa9f33f38308729ad3a8a2bde84a41fa22110f1f70a1aaf257ad64c594771e5:log:64', 'hash': '0x6fa9f33f38308729ad3a8a2bde84a41fa22110f1f70a1aaf257ad64c594771e5', 'from': '0xbf21eec90653ddb75de4480f80648418e4877b0d', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 18588.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03efb36c08510d400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:37:10.000Z'}}, {'blockNum': '0x7f976d', 'uniqueId': '0xbe3e8f8faef068abc1414d8f25cc785267f05f26b3547dc64933242a4983f32b:log:66', 'hash': '0xbe3e8f8faef068abc1414d8f25cc785267f05f26b3547dc64933242a4983f32b', 'from': '0x2f4a13dfd24b3ccec2609df965524899c087c7d5', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:37:10.000Z'}}, {'blockNum': '0x7f9770', 'uniqueId': '0x7e01254eb8ce8b040486fc06e411ecb5e91c21ae963a7678f727289041815bed:log:76', 'hash': '0x7e01254eb8ce8b040486fc06e411ecb5e91c21ae963a7678f727289041815bed', 'from': '0x1476c5fb67ab3a3783eeed3a67a9d53b4a433b6c', 'to': '0x8cb4568b836cfdf42af5e44de3e574908b0069cf', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:14.000Z'}}, {'blockNum': '0x7f9770', 'uniqueId': '0x1c18823db378cf73bd574c57dc8e10fb2bb5794df2063d41b2ad0d0b7e405ad4:log:84', 'hash': '0x1c18823db378cf73bd574c57dc8e10fb2bb5794df2063d41b2ad0d0b7e405ad4', 'from': '0x56733823ef8f31da3c60af0933e886edd64bffea', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 2878.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9c11c999a4a07e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:14.000Z'}}, {'blockNum': '0x7f9770', 'uniqueId': '0x580bb2b5fbc3a9ea6054dc76208856617d24db0979075881e73889003340dad0:log:97', 'hash': '0x580bb2b5fbc3a9ea6054dc76208856617d24db0979075881e73889003340dad0', 'from': '0x3ab315c730b723311dc88ecc2b2840f22177c199', 'to': '0xa6653965ebaeb9f27fce56d80fe4b4493d378299', 'value': 1557.7898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5472ad21936ece8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:14.000Z'}}, {'blockNum': '0x7f9770', 'uniqueId': '0x6e26a2a433be06ebcd148026b23a0379a46747190dba3f5b6344183105ab7f38:log:98', 'hash': '0x6e26a2a433be06ebcd148026b23a0379a46747190dba3f5b6344183105ab7f38', 'from': '0x9c26a9807a35c5b01efa587d6cd2f65d2f6e56fe', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 60000.0008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b4791f8b1520000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:14.000Z'}}, {'blockNum': '0x7f9771', 'uniqueId': '0xb3465a72ee70f53eb630eabb9657a9814cbdec01fdf311b0e0854a3066905249:log:4', 'hash': '0xb3465a72ee70f53eb630eabb9657a9814cbdec01fdf311b0e0854a3066905249', 'from': '0xe709598112f93ea7ac60c818954bf855a8513373', 'to': '0x7ff85954df6f35f1db701537596ca49b5d1cdc65', 'value': 2160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7518058bd45bc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:17.000Z'}}, {'blockNum': '0x7f9771', 'uniqueId': '0x8ad54b334da1d5008759bc7b9ddfc43269142f17b314da4e0a6cdc7e3370ca62:log:5', 'hash': '0x8ad54b334da1d5008759bc7b9ddfc43269142f17b314da4e0a6cdc7e3370ca62', 'from': '0x99da98c83dfbbaf9e650b7a72ac3de063029ee32', 'to': '0xcd78b377f8e6b875ed460a7c69c6e07efabb971c', 'value': 60003.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d26a806bedf28000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:17.000Z'}}, {'blockNum': '0x7f9771', 'uniqueId': '0xb5dae72f5018865cd36abfb991730fb4f01cb6521a34678628d643e810e146bd:log:7', 'hash': '0xb5dae72f5018865cd36abfb991730fb4f01cb6521a34678628d643e810e146bd', 'from': '0xfbde0b2089f02b141b860d5729a8c99f5a79f5c7', 'to': '0xc7b790184bf9b2e6ef84de793f366294258e9e0b', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:17.000Z'}}, {'blockNum': '0x7f9771', 'uniqueId': '0xadb583c4deb12467491f8e619a811097037d90ebbc07f871983c2d7fff0654ae:log:10', 'hash': '0xadb583c4deb12467491f8e619a811097037d90ebbc07f871983c2d7fff0654ae', 'from': '0xa2bcf5c4be4e05e16309c3ce04a364e8be0dc95e', 'to': '0x5959e1deb71c07d614c9aa8d4a296c5afeecb7ea', 'value': 60000.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b4515533dfa4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:17.000Z'}}, {'blockNum': '0x7f9771', 'uniqueId': '0xa299ef8f3dd3c735a297b251a0b25c11f324d917945ff9641be36450c71b636b:log:11', 'hash': '0xa299ef8f3dd3c735a297b251a0b25c11f324d917945ff9641be36450c71b636b', 'from': '0x3490a94c9f0e8291ca3395bbc0fa34d36d30bee2', 'to': '0x67a1a63d82755ecf89403e6ceeb8ae7687890c46', 'value': 10644.8665254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02410f32e9ee69aa7000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:17.000Z'}}, {'blockNum': '0x7f9771', 'uniqueId': '0xccf16d581ff243f1c3b134ff456be2a157c9f3ec96e545aaedeed1a4c7a0f3e0:log:12', 'hash': '0xccf16d581ff243f1c3b134ff456be2a157c9f3ec96e545aaedeed1a4c7a0f3e0', 'from': '0x9bb149ea64ede9ef9919ceac4e3d446557a94bf7', 'to': '0x47d533585be999bab83858286eb5acac104c9af2', 'value': 60004.2182888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d5cf19b099824000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:38:17.000Z'}}, {'blockNum': '0x7f977a', 'uniqueId': '0xcd2e0a60d42d52e841a37c71d32a87aa67eb94724f7688717342ce75baef5841:log:53', 'hash': '0xcd2e0a60d42d52e841a37c71d32a87aa67eb94724f7688717342ce75baef5841', 'from': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0113a88d0e83ed540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:42:07.000Z'}}, {'blockNum': '0x7f977e', 'uniqueId': '0xf05d25e0932f3ad53eda8281e88ba87555d8b6566aba7d833421dbe9995eea74:log:22', 'hash': '0xf05d25e0932f3ad53eda8281e88ba87555d8b6566aba7d833421dbe9995eea74', 'from': '0x7d87d87399422d091c9c64317df1c5f44bba07c3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 47968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a28673d60959bc68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:42:42.000Z'}}, {'blockNum': '0x7f9784', 'uniqueId': '0xbfefac9342cfedde125f4314ac299403434c701c250835fd253efbbbe32e5114:log:15', 'hash': '0xbfefac9342cfedde125f4314ac299403434c701c250835fd253efbbbe32e5114', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe3fd31147b7ff3d1936e9fdbc850527ca144ed63', 'value': 3823.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcf42209919dd3a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:43:56.000Z'}}, {'blockNum': '0x7f9786', 'uniqueId': '0xc2f90ee4ff1c50d2cfec409e28e3379542b66f9f5a94271962d9e25e65e1380b:log:102', 'hash': '0xc2f90ee4ff1c50d2cfec409e28e3379542b66f9f5a94271962d9e25e65e1380b', 'from': '0xac1cfa423e673439348b59363520e42b59d1c083', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 62478.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3afdf0db4f41be8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:44:36.000Z'}}, {'blockNum': '0x7f9788', 'uniqueId': '0x499f4346cd38483e8371ca90a7d06733c84422dcb0c6f67a02c144e3b7125b96:log:139', 'hash': '0x499f4346cd38483e8371ca90a7d06733c84422dcb0c6f67a02c144e3b7125b96', 'from': '0xf291e0f6831b2380e70c744c32cd77a70fd53dd1', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 4997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010ee34e40c262f40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:45:07.000Z'}}, {'blockNum': '0x7f978f', 'uniqueId': '0x4aff3ae20c2974e911e0485ad448a60570e89dffef2c3220b7dfac3e4cae2e4e:log:15', 'hash': '0x4aff3ae20c2974e911e0485ad448a60570e89dffef2c3220b7dfac3e4cae2e4e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x1b2036aabcb9815938e52924f951ca82ba30b9cd', 'value': 4300.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe9280073906df68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:46:17.000Z'}}, {'blockNum': '0x7f979a', 'uniqueId': '0x6ee0ef3b928327a0fec254193a65b4dacb5e84908a646085059b03457df253bc:log:1', 'hash': '0x6ee0ef3b928327a0fec254193a65b4dacb5e84908a646085059b03457df253bc', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 93993.8729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13e76b05f9ab03744000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:49:09.000Z'}}, {'blockNum': '0x7f979d', 'uniqueId': '0xed02612503e7706807d92aac1530988848451b6cbe8b395ed0b4cd04d95a8f5d:log:65', 'hash': '0xed02612503e7706807d92aac1530988848451b6cbe8b395ed0b4cd04d95a8f5d', 'from': '0x25f8f0bece78e17e360bf85cdc0a5c12254add8b', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 10990.025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0253c53c25da1e5a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:49:36.000Z'}}, {'blockNum': '0x7f97a1', 'uniqueId': '0xf4f61326fe6baded2d20047d45b057fc9e6bcde0bc93186552a6ec977d01da89:log:2', 'hash': '0xf4f61326fe6baded2d20047d45b057fc9e6bcde0bc93186552a6ec977d01da89', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1e2fccb27c07bdca9bb8fd6a082459e034c32792', 'value': 22894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04d91612f663b0f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:51:02.000Z'}}, {'blockNum': '0x7f97a5', 'uniqueId': '0xaad54f7e5e7c7ffd9c6860fadb0d159f42a48998c8b9902866dff8f12c517d19:log:46', 'hash': '0xaad54f7e5e7c7ffd9c6860fadb0d159f42a48998c8b9902866dff8f12c517d19', 'from': '0x651653e87444e1df34f1aa4b272d550fa7dc2d9a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 19698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x042bd4aa0b85ec880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:51:32.000Z'}}, {'blockNum': '0x7f97a9', 'uniqueId': '0xe229c7d7b8f272b559e1f6840f2436ec3fcc3ef37787c63872ba303d030d131f:log:105', 'hash': '0xe229c7d7b8f272b559e1f6840f2436ec3fcc3ef37787c63872ba303d030d131f', 'from': '0x844af488988a20eac966d63099c9f4dafee7a51a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 18457.088223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03e88f8dccf958c8f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:53:43.000Z'}}, {'blockNum': '0x7f97a9', 'uniqueId': '0x99d0c658bed14e0a2fa8dd2675a215e8e1eae78e5b9bfe87a822e9fbf388e509:log:126', 'hash': '0x99d0c658bed14e0a2fa8dd2675a215e8e1eae78e5b9bfe87a822e9fbf388e509', 'from': '0x2c8bd5396ea1f11ac3d7da5365b3bc58ba2b7128', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 989.6813726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x35a6968cd2b4033000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:53:43.000Z'}}, {'blockNum': '0x7f97ab', 'uniqueId': '0x43f5991d228f21ea55792eae503bbe4c233b8855a0cab0690f2a76b6dccda775:log:62', 'hash': '0x43f5991d228f21ea55792eae503bbe4c233b8855a0cab0690f2a76b6dccda775', 'from': '0xa35efcf6b07476e9c806ee9b066579e6986b8070', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 770.2163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29c0e5fc11b3b2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:54:35.000Z'}}, {'blockNum': '0x7f97ac', 'uniqueId': '0x14aa4181775b6ba90d26a54e44fb8e25cdedc4972a6516fbe8047b40a11f9d93:log:14', 'hash': '0x14aa4181775b6ba90d26a54e44fb8e25cdedc4972a6516fbe8047b40a11f9d93', 'from': '0x54ebcfa97e83899cdc76baab66f5b348424b9913', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 35392.1938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x077e9d5b09387e788000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:54:36.000Z'}}, {'blockNum': '0x7f97ae', 'uniqueId': '0x91f256a05e40423b586e661007692013a6222ec848b1578cf31e45e893aba4b2:log:0', 'hash': '0x91f256a05e40423b586e661007692013a6222ec848b1578cf31e45e893aba4b2', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7ad78fa89931cef4754c5987a1cda89a1722d65a', 'value': 56453.5716132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf45ab0165d2de0a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:57:02.000Z'}}, {'blockNum': '0x7f97b2', 'uniqueId': '0xf5eee97177ea6969394db9a656454a3ce1d9db75f7932df4dbccb6761c21f62e:log:20', 'hash': '0xf5eee97177ea6969394db9a656454a3ce1d9db75f7932df4dbccb6761c21f62e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x9fb453fc69021a9460b3c4a33528ac0f990644cc', 'value': 60000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a8c85c50f7c68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:57:22.000Z'}}, {'blockNum': '0x7f97b4', 'uniqueId': '0xa632498324087bc23a0f50306602cd3856026772d3c6afe585a2e481013b1720:log:115', 'hash': '0xa632498324087bc23a0f50306602cd3856026772d3c6afe585a2e481013b1720', 'from': '0xb4879f697d3885064153ab52c5ce066f645568b9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 64545.7495908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dab08377acb74caa000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:57:56.000Z'}}, {'blockNum': '0x7f97bb', 'uniqueId': '0x1afc2971d114e7017ce5e2ca4db7219e49fd4b7d91e7c353d61839dda184280e:log:50', 'hash': '0x1afc2971d114e7017ce5e2ca4db7219e49fd4b7d91e7c353d61839dda184280e', 'from': '0x2ae3b6daef16755ea996ccc38be8e8285dc57c69', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 4470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xf251b624eccc180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:59:48.000Z'}}, {'blockNum': '0x7f97bc', 'uniqueId': '0x9ead08380715aafc4f7b738cc75a7c35e9bd14c09030aeb86a1fe0d19bb5b31d:log:30', 'hash': '0x9ead08380715aafc4f7b738cc75a7c35e9bd14c09030aeb86a1fe0d19bb5b31d', 'from': '0x6571a724a4826d887fd18cea8f8fff93eb74bf44', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 94000.079211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13e7c12738a3dc0db000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T13:59:51.000Z'}}, {'blockNum': '0x7f97bf', 'uniqueId': '0x86650200314d62e955685a033830bb6aef64a4ef4414b1c7b4a0f4678d7ebc3b:log:132', 'hash': '0x86650200314d62e955685a033830bb6aef64a4ef4414b1c7b4a0f4678d7ebc3b', 'from': '0xa58c619439bc26205d8800ec8d2010af7d89bc51', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10124.1584286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0224d4ec22b8aff33000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:01.000Z'}}, {'blockNum': '0x7f97c0', 'uniqueId': '0x79349113f491a472c3de530327e654d0c7f7e581d874325202be02b0a6658658:log:16', 'hash': '0x79349113f491a472c3de530327e654d0c7f7e581d874325202be02b0a6658658', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93993.8729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13e76b05f9ab03744000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:06.000Z'}}, {'blockNum': '0x7f97c0', 'uniqueId': '0x45297132f396964ca0217bee0bb83a5e27ce50c97fcc8cb832e944647f8ad9ed:log:33', 'hash': '0x45297132f396964ca0217bee0bb83a5e27ce50c97fcc8cb832e944647f8ad9ed', 'from': '0x678a368d9811f5210e564cb2b7fc46a0532c47d8', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10189.8049956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022863f39798f6d4a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:06.000Z'}}, {'blockNum': '0x7f97c0', 'uniqueId': '0x2885b76a7035beb4f5563ae4d309db76b7a1f3c499494e0123932b3b438a7135:log:35', 'hash': '0x2885b76a7035beb4f5563ae4d309db76b7a1f3c499494e0123932b3b438a7135', 'from': '0x117fbb6981851457dbca2d94232cf6b8e522015b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10011.4567836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021eb8df75b67cc56000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:06.000Z'}}, {'blockNum': '0x7f97c0', 'uniqueId': '0xfecf027635fb7018e0c2cfeee34b3686ce16ff7cfb4ac07da6c6c352f49cd894:log:41', 'hash': '0xfecf027635fb7018e0c2cfeee34b3686ce16ff7cfb4ac07da6c6c352f49cd894', 'from': '0xbc46eecfe382657b1ef85331a1b78f221240d11a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10554.5673856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023c2a0becb563540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:06.000Z'}}, {'blockNum': '0x7f97c0', 'uniqueId': '0x645c67fa2a140f4d79d389e9293b1bac4fbc374b279de7e4f17a76234e3e93b1:log:45', 'hash': '0x645c67fa2a140f4d79d389e9293b1bac4fbc374b279de7e4f17a76234e3e93b1', 'from': '0x4561b830740dcfef1d2da9ef8b048dfcb5092f87', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60018.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb5a29534f2bcce8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:06.000Z'}}, {'blockNum': '0x7f97c0', 'uniqueId': '0x1ae0198e6562b0fd8cb63d93eb6839f1f00b99287ae8d7f9df8cbb40257b4071:log:47', 'hash': '0x1ae0198e6562b0fd8cb63d93eb6839f1f00b99287ae8d7f9df8cbb40257b4071', 'from': '0x4baa02f799bd13799736eb8c7fa12f4a068c406b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 4012.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd98b32e9741d768000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:06.000Z'}}, {'blockNum': '0x7f97c0', 'uniqueId': '0x8cd419b47adc51aa169a3fa025f42a2b503ca211ca48eceff81471be80bdb5b4:log:88', 'hash': '0x8cd419b47adc51aa169a3fa025f42a2b503ca211ca48eceff81471be80bdb5b4', 'from': '0x031a0d665cdaaf6cd125c53819c5960023fe8c5c', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 49225.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a6c8b9e78b685ca8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:06.000Z'}}, {'blockNum': '0x7f97c0', 'uniqueId': '0x946f31f2ef46169cd80b7cacf6fd7d1d4a26b963568a7aa2654f10b50119cf13:log:129', 'hash': '0x946f31f2ef46169cd80b7cacf6fd7d1d4a26b963568a7aa2654f10b50119cf13', 'from': '0x700af1da7ceaad86a2335fe1b8da9294ee0893e1', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 2331.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7e6aa337c5f5d28000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:06.000Z'}}, {'blockNum': '0x7f97c1', 'uniqueId': '0xfabd609d41cf097a81712733a3e033b5653644be44cdc4267959e04b74479ba8:log:112', 'hash': '0xfabd609d41cf097a81712733a3e033b5653644be44cdc4267959e04b74479ba8', 'from': '0x22213798887a294fcd394c7755060879621db156', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 29968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06589f0f28abf4868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:15.000Z'}}, {'blockNum': '0x7f97c2', 'uniqueId': '0xcce3d983eec3cc56d2f87bbcd0d78a80272c60d5823424973ab359e736dff198:log:56', 'hash': '0xcce3d983eec3cc56d2f87bbcd0d78a80272c60d5823424973ab359e736dff198', 'from': '0xb5c90eb263e4dc7a595c96180f05aa3426b21e6b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 18537.46066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03eceaf20e98163f4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:22.000Z'}}, {'blockNum': '0x7f97c2', 'uniqueId': '0x2ad25e4d6a906fc468c345608ff86f28eef4c0fe240437fd48d7eea45501166e:log:75', 'hash': '0x2ad25e4d6a906fc468c345608ff86f28eef4c0fe240437fd48d7eea45501166e', 'from': '0x9fc124d82712346f864762841a2de0caa93e5b1a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 5023.938111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01105925a5fd55fef000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:22.000Z'}}, {'blockNum': '0x7f97c3', 'uniqueId': '0x04ce34edafe87411c5320a4b18bb84ee1b0a41b94bdfb5884cb16bb7189feab8:log:34', 'hash': '0x04ce34edafe87411c5320a4b18bb84ee1b0a41b94bdfb5884cb16bb7189feab8', 'from': '0x41e30a015cf553be84c868cc308e71562d5f77a8', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60136.3093772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cbbfef0eabdb63ae000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:30.000Z'}}, {'blockNum': '0x7f97c3', 'uniqueId': '0xc42a370009c9cc2f2ad5ff1f3741e4a858469485306c6d546fdb7974c545291d:log:47', 'hash': '0xc42a370009c9cc2f2ad5ff1f3741e4a858469485306c6d546fdb7974c545291d', 'from': '0xa31233c0280cbde31125bce3beccd3c0129fdb37', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 20028.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043dc5d9310c7db68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:01:30.000Z'}}, {'blockNum': '0x7f97c5', 'uniqueId': '0xd8ad802eee92d4cbedc803bd3d24fa2791165eea19067368fcb0df0843303764:log:45', 'hash': '0xd8ad802eee92d4cbedc803bd3d24fa2791165eea19067368fcb0df0843303764', 'from': '0xec6b73dcf63ca0a7404aa75040cce9efb402df65', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10125.6800792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0224ea0a1fe14d35c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:02:04.000Z'}}, {'blockNum': '0x7f97c5', 'uniqueId': '0xd9cb828941f1c33be187c155965626bdee8739d24641d4e1592027500803ed8a:log:48', 'hash': '0xd9cb828941f1c33be187c155965626bdee8739d24641d4e1592027500803ed8a', 'from': '0xac2623c6a4bec59f7fedcabc33a9da0ce555631c', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10166.663049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022722cae1c6aec59000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:02:04.000Z'}}, {'blockNum': '0x7f97c6', 'uniqueId': '0xb19035e36b7e98d680f45effeda3dbd79a36e9987b753d0e4eb6cdc8c55ee8cb:log:10', 'hash': '0xb19035e36b7e98d680f45effeda3dbd79a36e9987b753d0e4eb6cdc8c55ee8cb', 'from': '0x443acc78d48279722e26354053d67f25a5715a8d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:02:07.000Z'}}, {'blockNum': '0x7f97c7', 'uniqueId': '0x9bd38e5808493310b922ce1c0ecb6242cf965614ddd95d1585fb08288c5abf82:log:111', 'hash': '0x9bd38e5808493310b922ce1c0ecb6242cf965614ddd95d1585fb08288c5abf82', 'from': '0x8ca7584528249452c8ed8726abb2b7875c527414', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 1910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x678a932062e4180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:02:10.000Z'}}, {'blockNum': '0x7f97c9', 'uniqueId': '0xcd7556c513de33dcf55636a2eb88ab9e210777d5bd350b07093322b59eaf120e:log:91', 'hash': '0xcd7556c513de33dcf55636a2eb88ab9e210777d5bd350b07093322b59eaf120e', 'from': '0xfd0001f1ca0a833097640704c1c0da930ad1d35d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10148.0660446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022620b50cce32653000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:02:35.000Z'}}, {'blockNum': '0x7f97ce', 'uniqueId': '0xe138b1bcd354b2f3ac77059bc305c9ac051abe02f7684f523a270ca27950b02a:log:92', 'hash': '0xe138b1bcd354b2f3ac77059bc305c9ac051abe02f7684f523a270ca27950b02a', 'from': '0x0e64aa57b0f886f76c02621ddc8371b3db148929', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 11560.2811272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0272af20e431a8534000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:04:06.000Z'}}, {'blockNum': '0x7f97d9', 'uniqueId': '0xc310ea27af824ce48e09d31c741cbf0554f9bfec1d87127a81d197ecdf7ad246:log:59', 'hash': '0xc310ea27af824ce48e09d31c741cbf0554f9bfec1d87127a81d197ecdf7ad246', 'from': '0xa2dcb36758cbf0bc1fee1d807685e31dceb83108', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10110.2861288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02241467d38d4b3a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:05:37.000Z'}}, {'blockNum': '0x7f97db', 'uniqueId': '0x3113ede3ec5d39569fcdc720958192c745adf5e010ff060bd1a67b43aef2c25f:log:22', 'hash': '0x3113ede3ec5d39569fcdc720958192c745adf5e010ff060bd1a67b43aef2c25f', 'from': '0xb846978a6d1e537862f82af1ea0d6ff7cf3fc4e2', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10017.7476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021f102cede601f90000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:05:53.000Z'}}, {'blockNum': '0x7f97e1', 'uniqueId': '0x0b1bd629bf4ec34059fa3777249e8a3c009e920621422a654b90cdf6495f1eba:log:84', 'hash': '0x0b1bd629bf4ec34059fa3777249e8a3c009e920621422a654b90cdf6495f1eba', 'from': '0x0440d05da5d867d41b0a0a4a497729ca2fbf3f0f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 8668.6426938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d5ed957992de489000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:06:43.000Z'}}, {'blockNum': '0x7f97e1', 'uniqueId': '0xd5de683a84970f5abd5c85cfcfdf8dd4a01dea33e30ecfa5b7990f0fb9ca2d3d:log:86', 'hash': '0xd5de683a84970f5abd5c85cfcfdf8dd4a01dea33e30ecfa5b7990f0fb9ca2d3d', 'from': '0xf97306f506a1e4c8ed9810a24d9a6777bc8fd85f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10349.1805834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023107bb6c4b26e91000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:06:43.000Z'}}, {'blockNum': '0x7f97e1', 'uniqueId': '0x904498e11bff9a08c799ce15713aac51158be25c09f1ff693b039e8cd10ae12e:log:91', 'hash': '0x904498e11bff9a08c799ce15713aac51158be25c09f1ff693b039e8cd10ae12e', 'from': '0xe9ce932871b98da0f6e8c1734eb1f3b1777a5637', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:06:43.000Z'}}, {'blockNum': '0x7f97e1', 'uniqueId': '0xd88d7b547f6044644606c0307f8fcbea59be592c784e80b7517e8cd4151406ad:log:114', 'hash': '0xd88d7b547f6044644606c0307f8fcbea59be592c784e80b7517e8cd4151406ad', 'from': '0xf0e7988a591a4b2d7fe5ccdbe0d25c0b9a53eaad', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 40517.8151574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x089479a42511f4fbf000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:06:43.000Z'}}, {'blockNum': '0x7f97e4', 'uniqueId': '0xade76187d727b4e57068bee7b4db11c2963acc6297a6cd28d0911147d7c4c7aa:log:37', 'hash': '0xade76187d727b4e57068bee7b4db11c2963acc6297a6cd28d0911147d7c4c7aa', 'from': '0x52d6247c52eee9f29290788839eef8a8feb5a384', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 368.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14008a44316a068000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:07:03.000Z'}}, {'blockNum': '0x7f97e4', 'uniqueId': '0x7337256c4f41160c3546a1ae279ef8c053e01a171a9daa582d5be30460146152:log:39', 'hash': '0x7337256c4f41160c3546a1ae279ef8c053e01a171a9daa582d5be30460146152', 'from': '0x552568edfc5a1e35d6f787da0bbd2aad68cc4842', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 168.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0928fb87d6a3e68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:07:03.000Z'}}, {'blockNum': '0x7f97e5', 'uniqueId': '0xcad6604e6331c74cceed49c021e5c870a0c0125191598d255d799413219f7048:log:15', 'hash': '0xcad6604e6331c74cceed49c021e5c870a0c0125191598d255d799413219f7048', 'from': '0x54715f263ad5e1de283950ba856bcfa2fca78756', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60468.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cce07965cbefa968000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:07:06.000Z'}}, {'blockNum': '0x7f97e5', 'uniqueId': '0xd4f532fa0d4c899f71846639b394a595c869c7531981c242961e21e7a35a322d:log:16', 'hash': '0xd4f532fa0d4c899f71846639b394a595c869c7531981c242961e21e7a35a322d', 'from': '0x079b2c0b485327cf61421dafd397b1fdc7209511', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.4738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a1d800f724148000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:07:06.000Z'}}, {'blockNum': '0x7f97e8', 'uniqueId': '0x78b45f4e335dda320d01c11c0746e23c68d1a7ebde473d62b1b71cc060f6b2bd:log:94', 'hash': '0x78b45f4e335dda320d01c11c0746e23c68d1a7ebde473d62b1b71cc060f6b2bd', 'from': '0xc3f438c6a17f4ee77ef3177365e76feb95f230d8', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:07:34.000Z'}}, {'blockNum': '0x7f97f0', 'uniqueId': '0xaf93b2b842dbd5df2465a21b280d5a02a8b96f18e40c9e1aa0ae530fc54e59c3:log:86', 'hash': '0xaf93b2b842dbd5df2465a21b280d5a02a8b96f18e40c9e1aa0ae530fc54e59c3', 'from': '0xbb9e5b687db29a919e9b1c9457be05fa5d7fd09c', 'to': '0x7b892ca1acaaa7666fe13d62cf7c99450c2e5612', 'value': 2708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92cd0ca466add00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:10:00.000Z'}}, {'blockNum': '0x7f9808', 'uniqueId': '0x122ad383fe21692e91ec2b305f0e9d74979cbc95394ad8bb4dd31bf2b0ab9242:log:16', 'hash': '0x122ad383fe21692e91ec2b305f0e9d74979cbc95394ad8bb4dd31bf2b0ab9242', 'from': '0x180c8aea4285bd4b1cafdc9cd09fa7f1ccac7cbf', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10018.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021f2131444d418e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:15:48.000Z'}}, {'blockNum': '0x7f980c', 'uniqueId': '0xbc01afc8cb137b811963b84d148904267a2c052647909a046759df4e4bd41aab:log:141', 'hash': '0xbc01afc8cb137b811963b84d148904267a2c052647909a046759df4e4bd41aab', 'from': '0x564539cabe5e79c7e636400b17ee558b5025e32c', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 1949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69a7cef5c164540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:17:00.000Z'}}, {'blockNum': '0x7f980d', 'uniqueId': '0x48b3a34f96852151a7568165c0ef1aca7582abf353f4b26632549d2671dd81f6:log:116', 'hash': '0x48b3a34f96852151a7568165c0ef1aca7582abf353f4b26632549d2671dd81f6', 'from': '0x37d0b89d28336b8ebb242394bc291d31d4da55b6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 8769.6978784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01db68019c8dd8cf0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:17:11.000Z'}}, {'blockNum': '0x7f980d', 'uniqueId': '0x54b1853f7280c445024e68772a99846266f834c9cceed84e732129680a6ce0f1:log:119', 'hash': '0x54b1853f7280c445024e68772a99846266f834c9cceed84e732129680a6ce0f1', 'from': '0x447e62712adde849353f67595e106cd9df4846a1', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:17:11.000Z'}}, {'blockNum': '0x7f980f', 'uniqueId': '0x49565f5af6f9e9edfcd7c563b52755f7780825c4f265e5cfff98a24569145309:log:37', 'hash': '0x49565f5af6f9e9edfcd7c563b52755f7780825c4f265e5cfff98a24569145309', 'from': '0xeaf79a436ff25ed35e20e723bac05925373e4780', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60028.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb62d5c57f746b68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:17:25.000Z'}}, {'blockNum': '0x7f980f', 'uniqueId': '0xfb9c6acdf9fa85af69b8189a486766f0d267153b159bb4fef1ecbf62c661266c:log:38', 'hash': '0xfb9c6acdf9fa85af69b8189a486766f0d267153b159bb4fef1ecbf62c661266c', 'from': '0x53bae00fb2bb97d96705c139cdddcc7ad6a16131', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 2310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7d39b0991870580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:17:25.000Z'}}, {'blockNum': '0x7f980f', 'uniqueId': '0x91f127567d1e51df6946e689b237091c4ae809a5aa20127f2693c44ec084b23b:log:44', 'hash': '0x91f127567d1e51df6946e689b237091c4ae809a5aa20127f2693c44ec084b23b', 'from': '0xd0903d2a30df5d26f27eadef17f446eb80eb6ee1', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 7030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x017d18d92976b4180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:17:25.000Z'}}, {'blockNum': '0x7f981a', 'uniqueId': '0x8dc342c0e666ad4600c934d790d587c02cc19fcbb64ec6f023abb963f366bcd2:log:119', 'hash': '0x8dc342c0e666ad4600c934d790d587c02cc19fcbb64ec6f023abb963f366bcd2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03913936a21116780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:19:48.000Z'}}, {'blockNum': '0x7f9820', 'uniqueId': '0xd683c368cf1079f77db4aa3afe197c4dab2d4fe6dbad1e72b3ae42d84d5d5958:log:96', 'hash': '0xd683c368cf1079f77db4aa3afe197c4dab2d4fe6dbad1e72b3ae42d84d5d5958', 'from': '0x46015322832a58fa12e669a1abffa4b63251eee6', 'to': '0x5bcf2767f86f14edd82053bfbfd5069f68c2c5f8', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:22:27.000Z'}}, {'blockNum': '0x7f9822', 'uniqueId': '0xc062b9e8ef0a5bf2269ba606be65f950deba954ad769a9cd982b13a9a57504d7:log:35', 'hash': '0xc062b9e8ef0a5bf2269ba606be65f950deba954ad769a9cd982b13a9a57504d7', 'from': '0xb853a49b76297d863178086a555ae5a9d6e58605', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 20028.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043dc5d9310c7db68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:23:10.000Z'}}, {'blockNum': '0x7f9823', 'uniqueId': '0xc68e684aa8671320fc0819b8d2977e5a79338115bab89c2b96db81e306d937b4:log:70', 'hash': '0xc68e684aa8671320fc0819b8d2977e5a79338115bab89c2b96db81e306d937b4', 'from': '0xe05af6f8915e5278a92c4f18b4e7cd2b833c8096', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10003.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e51068fc672b28000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:23:29.000Z'}}, {'blockNum': '0x7f9824', 'uniqueId': '0xbc7ef646b561933fbbd0fe9a347d4309e09c2980c59cf6472459c7ec6da9b697:log:71', 'hash': '0xbc7ef646b561933fbbd0fe9a347d4309e09c2980c59cf6472459c7ec6da9b697', 'from': '0xad9c27006023a6eea2a9b4eedc7bf9a802926e49', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023ae2fbc05ee6ac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:23:33.000Z'}}, {'blockNum': '0x7f9824', 'uniqueId': '0x071efa8f75265dc076dd38d5ec2b78f1716a3673de1d75e34de06be0fd2f0fb5:log:118', 'hash': '0x071efa8f75265dc076dd38d5ec2b78f1716a3673de1d75e34de06be0fd2f0fb5', 'from': '0xb53205a2a37d53eea86ab31d989f5d0713c7ed09', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 23500.3245844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04f9f4849b74b5522000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:23:33.000Z'}}, {'blockNum': '0x7f9828', 'uniqueId': '0x9eed12bdb16981a259d28e75f90066ddcad7fc383037db5d631221d45944f416:log:23', 'hash': '0x9eed12bdb16981a259d28e75f90066ddcad7fc383037db5d631221d45944f416', 'from': '0x0c092f95aeede58ffe89184b5b924866063486f9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 15560.6424942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x034b8b4b70a8575fb000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:24:13.000Z'}}, {'blockNum': '0x7f9828', 'uniqueId': '0x1658c800ab993d43a21ff71e190c9b7f7031ea7723dc8f6fcb31e18bfb56dbee:log:25', 'hash': '0x1658c800ab993d43a21ff71e190c9b7f7031ea7723dc8f6fcb31e18bfb56dbee', 'from': '0xade37a762ba51e668375b19c31711f3451e6576d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:24:13.000Z'}}, {'blockNum': '0x7f9829', 'uniqueId': '0x6c83bf25877b94c57aa40e42a91fce817551b9df37926166cd9055b869506d01:log:111', 'hash': '0x6c83bf25877b94c57aa40e42a91fce817551b9df37926166cd9055b869506d01', 'from': '0xd85afa2baa930c39b92619914479d756fe2dbcbd', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:24:15.000Z'}}, {'blockNum': '0x7f982b', 'uniqueId': '0x9ed96692eb96b1892329787eed7c9dfa59454b20a673be0f40c8cae26f3c856a:log:145', 'hash': '0x9ed96692eb96b1892329787eed7c9dfa59454b20a673be0f40c8cae26f3c856a', 'from': '0x5cb7e6097df8c88d625d49853a4f8f3fba8c9c9e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60138.6875114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cbc1ff1bf3231701000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:25:00.000Z'}}, {'blockNum': '0x7f982b', 'uniqueId': '0x70715069b0664a70b09af53055822a71057b8f5c8ba511d651d75d8acd1ca27f:log:150', 'hash': '0x70715069b0664a70b09af53055822a71057b8f5c8ba511d651d75d8acd1ca27f', 'from': '0xdccde70c60f64ce203b30cd68950432e77c9687a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:25:00.000Z'}}, {'blockNum': '0x7f982b', 'uniqueId': '0x61b8798d0bdf3105225ab1c608006d52a139b9ce1a7c25279766850f6b8157f5:log:151', 'hash': '0x61b8798d0bdf3105225ab1c608006d52a139b9ce1a7c25279766850f6b8157f5', 'from': '0x4cdb435f2c5ed6d1c9a7c29037c2199206476c18', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60028.6138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb6285d5ddf8f928000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:25:00.000Z'}}, {'blockNum': '0x7f982b', 'uniqueId': '0xa3e8ad5c977993ce58e98af4ff3ba2d9f88fbdc4eee12244ffa2946079c98bca:log:152', 'hash': '0xa3e8ad5c977993ce58e98af4ff3ba2d9f88fbdc4eee12244ffa2946079c98bca', 'from': '0x904b0760f3b71b85f29da8c0f8dc15345df6e655', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 2332.7770194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7e75c8d38fdb865000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:25:00.000Z'}}, {'blockNum': '0x7f982b', 'uniqueId': '0xe360119e1bd4df0f580747a9228806cf8eb6a5ce3e6b625b2557c774b442dd72:log:153', 'hash': '0xe360119e1bd4df0f580747a9228806cf8eb6a5ce3e6b625b2557c774b442dd72', 'from': '0x763a96cbd3e6c958d6e35f24d571a94069c20b1a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10917.9348942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x024fdcc8a493a106b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:25:00.000Z'}}, {'blockNum': '0x7f9833', 'uniqueId': '0xefa6907e63cdc05196c144ea5331fd4c3237fe012962a52f7aa33a7b75e5b6c8:log:104', 'hash': '0xefa6907e63cdc05196c144ea5331fd4c3237fe012962a52f7aa33a7b75e5b6c8', 'from': '0x96b94a796ab26467c067b823b328300df95d10e7', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60098.333638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb9efebfd248b5a6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:26:58.000Z'}}, {'blockNum': '0x7f9833', 'uniqueId': '0x709052f3cc7f88d45f7a1d82f0fe6a2eae863257ab98526432d6f6f98e0209b8:log:126', 'hash': '0x709052f3cc7f88d45f7a1d82f0fe6a2eae863257ab98526432d6f6f98e0209b8', 'from': '0x4db0a9ea09ed27920c46d66dca984b730c15b57c', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:26:58.000Z'}}, {'blockNum': '0x7f9833', 'uniqueId': '0xeb4192bb711efe6570c662a60159635e19058b59b4a77bd418b41000ae65d124:log:140', 'hash': '0xeb4192bb711efe6570c662a60159635e19058b59b4a77bd418b41000ae65d124', 'from': '0xffb6679a4d8f4379d4935dc7d4fc65dbe384959d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10164.015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0226fe0b1f3d95f18000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:26:58.000Z'}}, {'blockNum': '0x7f983b', 'uniqueId': '0xe39b43548bbe72b4c09ea561b35d316117cd132aeeca7f66cb3a48e197eb3938:log:3', 'hash': '0xe39b43548bbe72b4c09ea561b35d316117cd132aeeca7f66cb3a48e197eb3938', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x28dd9e217a6a38faf4875c7aabd5a723a30ec128', 'value': 14968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x032b783dfa13e9268000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:27:45.000Z'}}, {'blockNum': '0x7f9849', 'uniqueId': '0x2b057ec268b02c8992655d66935ce7f119e5825f0a7239a30b9ba88c560be7d7:log:12', 'hash': '0x2b057ec268b02c8992655d66935ce7f119e5825f0a7239a30b9ba88c560be7d7', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cc0f767726142900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:31:05.000Z'}}, {'blockNum': '0x7f9852', 'uniqueId': '0x3be5c06c95d36560ded5cb0f4ebbd01d80caa06db06540fc9bffbdced80abdc5:log:57', 'hash': '0x3be5c06c95d36560ded5cb0f4ebbd01d80caa06db06540fc9bffbdced80abdc5', 'from': '0x5e93b5e3b314ba5c4dc4e8455e2fa363e2a35c60', 'to': '0x5bcf2767f86f14edd82053bfbfd5069f68c2c5f8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:32:02.000Z'}}, {'blockNum': '0x7f9878', 'uniqueId': '0xa11cb0c8c124e2b10e79d23f87a16800e19a40b1f99a2e6d7470dbd154b214e8:log:93', 'hash': '0xa11cb0c8c124e2b10e79d23f87a16800e19a40b1f99a2e6d7470dbd154b214e8', 'from': '0xb1caa0d3c60a91ccd9e06b3aee5ef718c2f2876e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 5200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0119e47f21381f400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:40:03.000Z'}}, {'blockNum': '0x7f9884', 'uniqueId': '0x34560aff34201b84432bb379895232b5cab73a66382eb2dfd20442783db05c8a:log:109', 'hash': '0x34560aff34201b84432bb379895232b5cab73a66382eb2dfd20442783db05c8a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 15793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x035823e7211990240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:42:39.000Z'}}, {'blockNum': '0x7f9893', 'uniqueId': '0x58d1a6fc8f0e26b28b9b0968b610ac8c99855911c81c2e59ab7c5dc58a9049cc:log:13', 'hash': '0x58d1a6fc8f0e26b28b9b0968b610ac8c99855911c81c2e59ab7c5dc58a9049cc', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xfbf9eb5d9942e345564b70b335063e6dbb44a6d0', 'value': 9968.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021c6b4d953690068000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:46:39.000Z'}}, {'blockNum': '0x7f9896', 'uniqueId': '0x45ce94997780b96b9dfdbaa87e495218305c93eb45c67b2aa37fcbaf29be074a:log:84', 'hash': '0x45ce94997780b96b9dfdbaa87e495218305c93eb45c67b2aa37fcbaf29be074a', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:47:33.000Z'}}, {'blockNum': '0x7f989e', 'uniqueId': '0x3aa12c1f9ada8da470e9558b3fb058d21422340a9ca1c084a3a3e83af82648b3:log:97', 'hash': '0x3aa12c1f9ada8da470e9558b3fb058d21422340a9ca1c084a3a3e83af82648b3', 'from': '0x0c869a3f3e915b49727669b5ea28c2efdf9a0a66', 'to': '0xd21db0e43048acb94f428ed61dc244c82f1ff2a8', 'value': 70, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03cb71f51fc5580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:49:09.000Z'}}, {'blockNum': '0x7f989f', 'uniqueId': '0x4b75d04568a5035d9bbd386763ce8a6a9f63f0603e173dbccd7ce1e9139f8f91:log:24', 'hash': '0x4b75d04568a5035d9bbd386763ce8a6a9f63f0603e173dbccd7ce1e9139f8f91', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xeb9ece00435e6f2a0bd7850ac99e2740418af14c', 'value': 10000.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e27646bab7c868000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:49:28.000Z'}}, {'blockNum': '0x7f98a5', 'uniqueId': '0x4f588189eff2e6cf8801c26ed0dadc105d2d0a8928b302e9873a7b7992b13211:log:3', 'hash': '0x4f588189eff2e6cf8801c26ed0dadc105d2d0a8928b302e9873a7b7992b13211', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x035823e7211990240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:51:05.000Z'}}, {'blockNum': '0x7f98a6', 'uniqueId': '0xf53d881c06ec32a17564ba1b917455ce5557f308e97eebdbcef02956bde19ecd:log:6', 'hash': '0xf53d881c06ec32a17564ba1b917455ce5557f308e97eebdbcef02956bde19ecd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7621b542cb5060babae4a39d53f885b7b5455e5c', 'value': 4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010c3b4b485f58d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:51:19.000Z'}}, {'blockNum': '0x7f98b3', 'uniqueId': '0x740e5c53e0a2fff44f72ca2becc06967337141fbcdf91e5a985e0b6dd147bf6c:log:74', 'hash': '0x740e5c53e0a2fff44f72ca2becc06967337141fbcdf91e5a985e0b6dd147bf6c', 'from': '0xec07b5b57067b4c67bf2c0c4cea24f2bfb5f93d9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 1000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x36425d25df26158000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:53:43.000Z'}}, {'blockNum': '0x7f98bb', 'uniqueId': '0x963eab37ecbc78f202a0723283b00bcc86ba23bebb6bfed5a0c46410c2bdc631:log:131', 'hash': '0x963eab37ecbc78f202a0723283b00bcc86ba23bebb6bfed5a0c46410c2bdc631', 'from': '0x67e6564d1c4aaa962dc7fd7d64d51005ffd8f2c2', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 121723.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x19c6aa8a980140818000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:55:00.000Z'}}, {'blockNum': '0x7f98c1', 'uniqueId': '0x3f7c042bfbaeeb7993c6d73f5d838b78f81cb6721f42be4c8325e60701cf1ca3:log:71', 'hash': '0x3f7c042bfbaeeb7993c6d73f5d838b78f81cb6721f42be4c8325e60701cf1ca3', 'from': '0xbea36a3e01e22398522bcaecdb3a3375c389180e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.9062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a7d8327974f58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:55:39.000Z'}}, {'blockNum': '0x7f98ce', 'uniqueId': '0xf48eb68f9a55eebd2ca4a86979a898c06a8f71ea05e33b4d8c580fc020c7726f:log:49', 'hash': '0xf48eb68f9a55eebd2ca4a86979a898c06a8f71ea05e33b4d8c580fc020c7726f', 'from': '0x9bcd385cc7547a9df5f1c68e97c3d782b0ca2165', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220cfc478d163c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:58:05.000Z'}}, {'blockNum': '0x7f98cf', 'uniqueId': '0x2c77ebde7e4995179d24a14571eaa77e084efee6cd0ac3e0640723f762a81554:log:68', 'hash': '0x2c77ebde7e4995179d24a14571eaa77e084efee6cd0ac3e0640723f762a81554', 'from': '0x9cae006c7af6a6544e53817a3189214e71536262', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 30068.6371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065e062a53fb9fb6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:58:13.000Z'}}, {'blockNum': '0x7f98d2', 'uniqueId': '0x3b915dd69094632c845379a949640659d0ea808800da5151674d9e09601b19c6:log:42', 'hash': '0x3b915dd69094632c845379a949640659d0ea808800da5151674d9e09601b19c6', 'from': '0x889bd00992cc3c8056cf8464912b9ae7e3c1aec5', 'to': '0xd35b19f780e98e4633c4bbd772c2e72e3d703b37', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:58:35.000Z'}}, {'blockNum': '0x7f98d7', 'uniqueId': '0x542a044efef670ab8bbd3ea4a06629d46a604c9d6342e26b46e59864a84a7b9c:log:87', 'hash': '0x542a044efef670ab8bbd3ea4a06629d46a604c9d6342e26b46e59864a84a7b9c', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x612fb5a99efda6ff8f58163245021fa71d9b847b', 'value': 2998.9738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2931f3ddb175e8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T14:59:53.000Z'}}, {'blockNum': '0x7f98dd', 'uniqueId': '0xe688c6825b7b7ac3f30a3b40903b5dd815bc801ba8eb7a921199c1c8c587953a:log:89', 'hash': '0xe688c6825b7b7ac3f30a3b40903b5dd815bc801ba8eb7a921199c1c8c587953a', 'from': '0x750ecf231cdbf6b259364cca7103853ced444771', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.6371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e22b838cdc4a6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:34.000Z'}}, {'blockNum': '0x7f98dd', 'uniqueId': '0xe3ec25a808be8a312055256c7c2e7b2c18e36d5c2939ecf9d28d39abfd54babc:log:90', 'hash': '0xe3ec25a808be8a312055256c7c2e7b2c18e36d5c2939ecf9d28d39abfd54babc', 'from': '0x561311efbf29d9f1c8e8f40b6e40377daebba070', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.6371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a41c29733fe6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:34.000Z'}}, {'blockNum': '0x7f98dd', 'uniqueId': '0xdfd059a3fc3b51567c1d2fbcf7aa05d992519665a86690b06f27bb72169ea759:log:93', 'hash': '0xdfd059a3fc3b51567c1d2fbcf7aa05d992519665a86690b06f27bb72169ea759', 'from': '0x0fc0b608e23b9cb35f78f7346ce833011a114a6f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10528.5263972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x023ac0a7bfbad542a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:34.000Z'}}, {'blockNum': '0x7f98dd', 'uniqueId': '0xbf3becd100db51e0dacc25805405f2a485893cb1e1df2b2f6970a51fe9e18c68:log:101', 'hash': '0xbf3becd100db51e0dacc25805405f2a485893cb1e1df2b2f6970a51fe9e18c68', 'from': '0x708cafbb42fcaa5594db09bcb0653ca039d630a5', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa10107a043fe280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:34.000Z'}}, {'blockNum': '0x7f98de', 'uniqueId': '0xeba5cf83d55c188fc1050099949fd0e454d2ce11fa84865f7dbc22575aae6f62:log:80', 'hash': '0xeba5cf83d55c188fc1050099949fd0e454d2ce11fa84865f7dbc22575aae6f62', 'from': '0xf4a391364b48afc599c5440df5e96f216c407ce9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 9968.6371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021c66a16258d826c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:50.000Z'}}, {'blockNum': '0x7f98de', 'uniqueId': '0x367242b81f076ced2267534dc7dff1a404f767dc7977309c798a7541ef23d01d:log:81', 'hash': '0x367242b81f076ced2267534dc7dff1a404f767dc7977309c798a7541ef23d01d', 'from': '0x3302e5160cdee9ff7eeb17b82438a32b09c93799', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0228f16f861578600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:50.000Z'}}, {'blockNum': '0x7f98de', 'uniqueId': '0x2f8f56ea585703e3c4e13b543410444ae16a64f8cba8983777b8867984f46240:log:84', 'hash': '0x2f8f56ea585703e3c4e13b543410444ae16a64f8cba8983777b8867984f46240', 'from': '0x8d3369753f319f6b6c2632ce41150444ade4015c', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 20000.6371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c3c99028876e6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:50.000Z'}}, {'blockNum': '0x7f98de', 'uniqueId': '0x9ae9fbfc8f07d3fd283b721e13a7109c39d1a1f264464f1b9c0b29c4ae1b84fe:log:100', 'hash': '0x9ae9fbfc8f07d3fd283b721e13a7109c39d1a1f264464f1b9c0b29c4ae1b84fe', 'from': '0xdb033e66ea83bb1064d8bb3c370b5adb8154d0b4', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.6371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a41c29733fe6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:50.000Z'}}, {'blockNum': '0x7f98df', 'uniqueId': '0xdb8b0e22164063d23fdf7b1d590f494243d2aa00cb908d9a44413c809eccc4ee:log:4', 'hash': '0xdb8b0e22164063d23fdf7b1d590f494243d2aa00cb908d9a44413c809eccc4ee', 'from': '0xd35b19f780e98e4633c4bbd772c2e72e3d703b37', 'to': '0x6795cf8eb25585eadc356ae32ac6641016c550f2', 'value': 400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15af1d78b58c400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:56.000Z'}}, {'blockNum': '0x7f98df', 'uniqueId': '0x78e803d5a9d30ab52ad2f978456619b2c731942e6a41245281361e0dca34384a:log:80', 'hash': '0x78e803d5a9d30ab52ad2f978456619b2c731942e6a41245281361e0dca34384a', 'from': '0x4f2249c59665447313e7b494e2478bae79230793', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.731204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a56a7c8a23d84000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:56.000Z'}}, {'blockNum': '0x7f98df', 'uniqueId': '0xd02d41a096ac63682ea93c35fe76448ccb3652dcc13c65af4aeb8d711c249af4:log:104', 'hash': '0xd02d41a096ac63682ea93c35fe76448ccb3652dcc13c65af4aeb8d711c249af4', 'from': '0x27e26166179b17fb1f9b4bde2e7a8565b085809a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.6371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a41c29733fe6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:01:56.000Z'}}, {'blockNum': '0x7f98ed', 'uniqueId': '0x655bc083c796597778c8f80f8b705c6b9b57cce84d3401e2e545be44f634d1b5:log:5', 'hash': '0x655bc083c796597778c8f80f8b705c6b9b57cce84d3401e2e545be44f634d1b5', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x1da062d66d470d2d9ef5b22d7133278d03246a20', 'value': 10305.674096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022eabf55482b0e70000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-16T15:05:36.000Z'}}], 'pageKey': 'dd091dbb-b154-42db-97fd-ced61d4b2857'}}
Answer is paginated. Downloading more pages...
Number of returned transfers:  1001
Answer is complete
 
symbol             BNT
group              TCG
date        2019-09-09
hour             20:00
exchange       binance
Name: 573, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2019-09-09 20:00:00 2019-09-09 08:00:00 2019-09-10 08:00:00
Unix timestamps:  1568008800.0 1568095200.0
Hex Block Numbers:  0x81e999 0x8202cc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x81e99c', 'uniqueId': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62:log:115', 'hash': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.0694988291698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9ef553632dc49730', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:00:45.000Z'}}, {'blockNum': '0x81e99c', 'uniqueId': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62:log:119', 'hash': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 491.0694988291698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9ef553632dc49730', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:00:45.000Z'}}, {'blockNum': '0x81e9a2', 'uniqueId': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14:log:126', 'hash': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.93560066617425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f516a754aa33d2b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:03:06.000Z'}}, {'blockNum': '0x81e9a2', 'uniqueId': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14:log:130', 'hash': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1c29f12d94ad2e6b5321ce226b4550f83ce88fca', 'value': 441.93560066617425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f516a754aa33d2b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:03:06.000Z'}}, {'blockNum': '0x81e9c2', 'uniqueId': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659:log:48', 'hash': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.1185968032061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a83e25454c49caa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:09:55.000Z'}}, {'blockNum': '0x81e9c2', 'uniqueId': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659:log:52', 'hash': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 489.1185968032061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a83e25454c49caa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:09:55.000Z'}}, {'blockNum': '0x81e9d8', 'uniqueId': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5:log:64', 'hash': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.5496949588759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27edae2d28561e07e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:29.000Z'}}, {'blockNum': '0x81e9d8', 'uniqueId': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5:log:68', 'hash': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.5496949588759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27edae2d28561e07e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:29.000Z'}}, {'blockNum': '0x81e9da', 'uniqueId': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e:log:19', 'hash': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 158.68369132873448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a2db88570f3b7a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:44.000Z'}}, {'blockNum': '0x81e9da', 'uniqueId': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e:log:23', 'hash': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 158.68369132873448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a2db88570f3b7a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:44.000Z'}}, {'blockNum': '0x81e9f1', 'uniqueId': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d:log:70', 'hash': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.0039222144626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e0c59cdc4923e54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:19:29.000Z'}}, {'blockNum': '0x81e9f1', 'uniqueId': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d:log:74', 'hash': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 491.0039222144626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e0c59cdc4923e54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:19:29.000Z'}}, {'blockNum': '0x81e9f6', 'uniqueId': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471:log:132', 'hash': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 981.9133204092605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353ac8e2833248bc61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:21:26.000Z'}}, {'blockNum': '0x81e9f6', 'uniqueId': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471:log:136', 'hash': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 981.9133204092605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353ac8e2833248bc61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:21:26.000Z'}}, {'blockNum': '0x81ea0a', 'uniqueId': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc:log:30', 'hash': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc', 'from': '0xdb9272880400e0ae8e522994f6a959122d94c7b7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 364.5840694242839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c39ecf7e00cbf28d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:25:47.000Z'}}, {'blockNum': '0x81ea0a', 'uniqueId': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc:log:34', 'hash': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 364.5840694242839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c39ecf7e00cbf28d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:25:47.000Z'}}, {'blockNum': '0x81ea2d', 'uniqueId': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f:log:156', 'hash': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 972.6371818833696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ba0d6bab973f2ef0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:33:50.000Z'}}, {'blockNum': '0x81ea2d', 'uniqueId': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f:log:160', 'hash': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 972.6371818833696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ba0d6bab973f2ef0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:33:50.000Z'}}, {'blockNum': '0x81ea2f', 'uniqueId': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b:log:92', 'hash': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 77.98910020606719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043a50f16ef6faa261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:34:22.000Z'}}, {'blockNum': '0x81ea2f', 'uniqueId': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b:log:96', 'hash': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'value': 77.98910020606719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043a50f16ef6faa261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:34:22.000Z'}}, {'blockNum': '0x81ea3c', 'uniqueId': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8:log:73', 'hash': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.4734979280794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ec9f785c9c8ec736', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:39:20.000Z'}}, {'blockNum': '0x81ea3c', 'uniqueId': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8:log:77', 'hash': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.4734979280794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ec9f785c9c8ec736', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:39:20.000Z'}}, {'blockNum': '0x81ea42', 'uniqueId': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298:log:145', 'hash': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.03478118329419377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b914d4b1e4064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:40:55.000Z'}}, {'blockNum': '0x81ea42', 'uniqueId': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298:log:149', 'hash': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 0.03478118329419377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b914d4b1e4064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:40:55.000Z'}}, {'blockNum': '0x81ea49', 'uniqueId': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b:log:40', 'hash': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 494.00081952251605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a37806f76c9cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:41:43.000Z'}}, {'blockNum': '0x81ea49', 'uniqueId': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b:log:44', 'hash': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 494.00081952251605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a37806f76c9cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:41:43.000Z'}}, {'blockNum': '0x81ea58', 'uniqueId': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37:log:24', 'hash': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1352.9001681716124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495742eefad332710d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:45:29.000Z'}}, {'blockNum': '0x81ea58', 'uniqueId': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37:log:28', 'hash': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1352.9001681716124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495742eefad332710d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:45:29.000Z'}}, {'blockNum': '0x81ea61', 'uniqueId': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6:log:114', 'hash': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2700.4481366930668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x92643f08bc23c016ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:47:22.000Z'}}, {'blockNum': '0x81ea61', 'uniqueId': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6:log:117', 'hash': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x760f6df021517d001e43469eeaf2cd00c71f8f7a', 'value': 2700.4481366930668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x92643f08bc23c016ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:47:22.000Z'}}, {'blockNum': '0x81ea69', 'uniqueId': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139:log:111', 'hash': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1300.008379265213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46793d8d33be50a645', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:50:13.000Z'}}, {'blockNum': '0x81ea69', 'uniqueId': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139:log:115', 'hash': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1300.008379265213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46793d8d33be50a645', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:50:13.000Z'}}, {'blockNum': '0x81ea71', 'uniqueId': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8:log:49', 'hash': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8', 'from': '0x9300de97702dfbe25f4f71c764824670abac6331', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:52:21.000Z'}}, {'blockNum': '0x81ea71', 'uniqueId': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8:log:52', 'hash': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:52:21.000Z'}}, {'blockNum': '0x81ea99', 'uniqueId': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d:log:82', 'hash': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 785.5394309042101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a958cae70ebf42aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:00:57.000Z'}}, {'blockNum': '0x81ea99', 'uniqueId': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d:log:86', 'hash': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 785.5394309042101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a958cae70ebf42aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:00:57.000Z'}}, {'blockNum': '0x81ea9d', 'uniqueId': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3:log:108', 'hash': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.168884508743058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dada5f7d424164', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:01:41.000Z'}}, {'blockNum': '0x81ea9d', 'uniqueId': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3:log:112', 'hash': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.168884508743058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dada5f7d424164', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:01:41.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4:log:64', 'hash': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 842.3700391788294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2daa3b8f90be02b525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4:log:68', 'hash': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 842.3700391788294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2daa3b8f90be02b525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79:log:91', 'hash': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.2893072986367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ea1117f5cdab0e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79:log:95', 'hash': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.2893072986367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ea1117f5cdab0e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878:log:105', 'hash': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1534.574283231964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53307f0c1392e778fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878:log:109', 'hash': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1534.574283231964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53307f0c1392e778fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eacf', 'uniqueId': '0x8caa5ac349507a6e6e4a03831cf1296a5cd278d757e857a253a1b3e211211250:log:126', 'hash': '0x8caa5ac349507a6e6e4a03831cf1296a5cd278d757e857a253a1b3e211211250', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x3667d5c9e58b6d0a5a8fbe58f3862dcd2eafadfb', 'value': 475.5570555258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c7ae0e6436063a00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:13:33.000Z'}}, {'blockNum': '0x81eae2', 'uniqueId': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274:log:17', 'hash': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1205.6239339948668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415b64a44c8906066d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:19:21.000Z'}}, {'blockNum': '0x81eae2', 'uniqueId': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274:log:21', 'hash': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1205.6239339948668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415b64a44c8906066d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:19:21.000Z'}}, {'blockNum': '0x81eae7', 'uniqueId': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1:log:24', 'hash': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1', 'from': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 147.66779699993228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08014d66fe71751f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:20:21.000Z'}}, {'blockNum': '0x81eae7', 'uniqueId': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1:log:28', 'hash': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 147.66779699993228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08014d66fe71751f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:20:21.000Z'}}, {'blockNum': '0x81eafe', 'uniqueId': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828:log:119', 'hash': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 284.5828059063387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d613a2fff410e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:24:14.000Z'}}, {'blockNum': '0x81eafe', 'uniqueId': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828:log:123', 'hash': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 284.5828059063387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d613a2fff410e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:24:14.000Z'}}, {'blockNum': '0x81eb12', 'uniqueId': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9:log:32', 'hash': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 251.4792684694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da1f9d6475b92f108', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:29:23.000Z'}}, {'blockNum': '0x81eb12', 'uniqueId': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9:log:36', 'hash': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 251.4792684694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da1f9d6475b92f108', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:29:23.000Z'}}, {'blockNum': '0x81eb1b', 'uniqueId': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75:log:98', 'hash': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 638.3456891082857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229ad37624c14fadf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:31:59.000Z'}}, {'blockNum': '0x81eb1b', 'uniqueId': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75:log:102', 'hash': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 638.3456891082857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229ad37624c14fadf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:31:59.000Z'}}, {'blockNum': '0x81eb28', 'uniqueId': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde:log:103', 'hash': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 326.66697627910935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11b56a3c2b87449936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:35:32.000Z'}}, {'blockNum': '0x81eb28', 'uniqueId': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde:log:107', 'hash': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 326.66697627910935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11b56a3c2b87449936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:35:32.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25:log:108', 'hash': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.30219071752725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a788ddf525b424eb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25:log:112', 'hash': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 488.30219071752725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a788ddf525b424eb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1:log:133', 'hash': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 500.4159090923124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b20aa7200997288de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1:log:137', 'hash': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 500.4159090923124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b20aa7200997288de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8:log:51', 'hash': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.93545480278516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1afe3e19f7d09573b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8:log:55', 'hash': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.93545480278516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1afe3e19f7d09573b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5:log:135', 'hash': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 368.2912419554568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f71155449271c8f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5:log:139', 'hash': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 368.2912419554568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f71155449271c8f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132:log:14', 'hash': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2172.4042042247193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c42a21da038cda07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132:log:18', 'hash': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2172.4042042247193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c42a21da038cda07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107:log:52', 'hash': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.53803694888538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4f8657b0510d0d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107:log:56', 'hash': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 245.53803694888538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4f8657b0510d0d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758:log:92', 'hash': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 859.4937236469076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e97df1bdd2bafd7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758:log:96', 'hash': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 859.4937236469076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e97df1bdd2bafd7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3d', 'uniqueId': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4:log:108', 'hash': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 125.26535521166481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06ca67f0e176687247', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:15.000Z'}}, {'blockNum': '0x81eb3d', 'uniqueId': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4:log:112', 'hash': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 125.26535521166481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06ca67f0e176687247', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:15.000Z'}}, {'blockNum': '0x81eb44', 'uniqueId': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1:log:94', 'hash': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 92.04830027251134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04fd6d4167b187cbe5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:42:42.000Z'}}, {'blockNum': '0x81eb44', 'uniqueId': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1:log:98', 'hash': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 92.04830027251134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04fd6d4167b187cbe5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:42:42.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:29', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:33', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:36', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eba2', 'uniqueId': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf:log:29', 'hash': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 738.6624969450271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280b005b5eaf670beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:59:02.000Z'}}, {'blockNum': '0x81eba2', 'uniqueId': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf:log:33', 'hash': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 738.6624969450271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280b005b5eaf670beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:59:02.000Z'}}, {'blockNum': '0x81ebb0', 'uniqueId': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35:log:97', 'hash': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 996.0203909220442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35fe8f4466c225fca6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:01:49.000Z'}}, {'blockNum': '0x81ebb0', 'uniqueId': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35:log:101', 'hash': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 996.0203909220442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35fe8f4466c225fca6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:01:49.000Z'}}, {'blockNum': '0x81ebb4', 'uniqueId': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6:log:93', 'hash': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6', 'from': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 136.42750988523056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07654fe16aac42e56e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:02:26.000Z'}}, {'blockNum': '0x81ebb4', 'uniqueId': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6:log:97', 'hash': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 136.42750988523056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07654fe16aac42e56e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:02:26.000Z'}}, {'blockNum': '0x81ebb8', 'uniqueId': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788:log:41', 'hash': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.790485370715651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9cba8f86e3bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:03:20.000Z'}}, {'blockNum': '0x81ebb8', 'uniqueId': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788:log:45', 'hash': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.790485370715651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9cba8f86e3bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:03:20.000Z'}}, {'blockNum': '0x81ebbc', 'uniqueId': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a:log:97', 'hash': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.3736076293722583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131008dc797ff863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:05:31.000Z'}}, {'blockNum': '0x81ebbc', 'uniqueId': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a:log:100', 'hash': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.3736076293722583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131008dc797ff863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:05:31.000Z'}}, {'blockNum': '0x81ebd0', 'uniqueId': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243:log:71', 'hash': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 99.69631595627632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056790772604f55f86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:09:29.000Z'}}, {'blockNum': '0x81ebd0', 'uniqueId': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243:log:75', 'hash': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 99.69631595627632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056790772604f55f86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:09:29.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:97', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:100', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:103', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c:log:76', 'hash': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6067.535546795697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0148ebf888a12d085719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c:log:80', 'hash': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 6067.535546795697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0148ebf888a12d085719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360:log:96', 'hash': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6192.1770756091655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014fadb832b4d1781afa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360:log:100', 'hash': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 6192.1770756091655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014fadb832b4d1781afa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319:log:121', 'hash': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 368.42396666754195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f8e8ddb0b731f6c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319:log:125', 'hash': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 368.42396666754195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f8e8ddb0b731f6c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf8', 'uniqueId': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e:log:97', 'hash': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 252.271037108751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacf6c3a9427d3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:39.000Z'}}, {'blockNum': '0x81ebf8', 'uniqueId': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e:log:101', 'hash': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 252.271037108751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacf6c3a9427d3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:39.000Z'}}, {'blockNum': '0x81ec27', 'uniqueId': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9:log:71', 'hash': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 527.8889070629579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9dee241934cbc149', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:16.000Z'}}, {'blockNum': '0x81ec27', 'uniqueId': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9:log:75', 'hash': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 527.8889070629579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9dee241934cbc149', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:16.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe:log:70', 'hash': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 294.09339163776656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff15d9d855ee93b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe:log:74', 'hash': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.09339163776656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff15d9d855ee93b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca:log:102', 'hash': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.82129148889216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a87ce1dfc22003e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca:log:106', 'hash': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 122.82129148889216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a87ce1dfc22003e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec7b', 'uniqueId': '0x43c2308d999c9e430f15800d1b7f6aa23fc41339cfc47285939123e6aab84ee3:log:3', 'hash': '0x43c2308d999c9e430f15800d1b7f6aa23fc41339cfc47285939123e6aab84ee3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:43:35.000Z'}}, {'blockNum': '0x81ec7d', 'uniqueId': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9:log:29', 'hash': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:44:01.000Z'}}, {'blockNum': '0x81ec7d', 'uniqueId': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9:log:32', 'hash': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:44:01.000Z'}}, {'blockNum': '0x81ec83', 'uniqueId': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5:log:94', 'hash': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 579.0628002644288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f641c54d5943fc5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:45:54.000Z'}}, {'blockNum': '0x81ec83', 'uniqueId': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5:log:98', 'hash': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 579.0628002644288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f641c54d5943fc5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:45:54.000Z'}}, {'blockNum': '0x81ec85', 'uniqueId': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67:log:33', 'hash': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 528.0091730043429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9f996955bfa09c02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:46:14.000Z'}}, {'blockNum': '0x81ec85', 'uniqueId': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67:log:37', 'hash': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 528.0091730043429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9f996955bfa09c02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:46:14.000Z'}}, {'blockNum': '0x81ec8b', 'uniqueId': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb:log:30', 'hash': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 748.523561751946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d9e590cae833d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:47:41.000Z'}}, {'blockNum': '0x81ec8b', 'uniqueId': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb:log:34', 'hash': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.523561751946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d9e590cae833d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:47:41.000Z'}}, {'blockNum': '0x81ec9e', 'uniqueId': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68:log:43', 'hash': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3735.9257159445733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca866264de6b309b42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:54:13.000Z'}}, {'blockNum': '0x81ec9e', 'uniqueId': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68:log:47', 'hash': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3735.9257159445733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca866264de6b309b42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:54:13.000Z'}}, {'blockNum': '0x81eca8', 'uniqueId': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3:log:12', 'hash': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 405.447106265603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fab57aff6b525186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:52.000Z'}}, {'blockNum': '0x81eca8', 'uniqueId': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3:log:16', 'hash': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.447106265603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fab57aff6b525186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:52.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d:log:26', 'hash': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 938.2073340968713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc3e07868e3e185e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d:log:30', 'hash': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 938.2073340968713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc3e07868e3e185e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2:log:42', 'hash': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 956.370508616555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d84e9684c56b2fe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2:log:46', 'hash': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 956.370508616555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d84e9684c56b2fe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81ecaa', 'uniqueId': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90:log:51', 'hash': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.0759866941578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aaced16c49d1e6809', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:57:18.000Z'}}, {'blockNum': '0x81ecaa', 'uniqueId': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90:log:55', 'hash': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.0759866941578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aaced16c49d1e6809', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:57:18.000Z'}}, {'blockNum': '0x81ecb1', 'uniqueId': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27:log:55', 'hash': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 927.0574605108661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x324181b892dde678ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:59:20.000Z'}}, {'blockNum': '0x81ecb1', 'uniqueId': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27:log:59', 'hash': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 927.0574605108661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x324181b892dde678ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:59:20.000Z'}}, {'blockNum': '0x81ecc2', 'uniqueId': '0xe99734b70c03797950ad38da6324b848337a8765c99715cba5b3f3444a1275da:log:17', 'hash': '0xe99734b70c03797950ad38da6324b848337a8765c99715cba5b3f3444a1275da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:42.000Z'}}, {'blockNum': '0x81ecc2', 'uniqueId': '0x05e89167a888f76c4cffc3c021b9fcf22e9c7bf5b81477fc27b31d700b95c6a3:log:18', 'hash': '0x05e89167a888f76c4cffc3c021b9fcf22e9c7bf5b81477fc27b31d700b95c6a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xacda8e694f34fbc2e60465a0d1a034e6c3dcfa3d', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2241af62c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:42.000Z'}}, {'blockNum': '0x81ecc6', 'uniqueId': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6:log:18', 'hash': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:59.000Z'}}, {'blockNum': '0x81ecc6', 'uniqueId': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6:log:21', 'hash': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:59.000Z'}}, {'blockNum': '0x81eccf', 'uniqueId': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8:log:124', 'hash': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9831.270473938357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214f44917be5a0bf12e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:06:41.000Z'}}, {'blockNum': '0x81eccf', 'uniqueId': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8:log:127', 'hash': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9831.270473938357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214f44917be5a0bf12e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:06:41.000Z'}}, {'blockNum': '0x81ecd3', 'uniqueId': '0xf34d4df166c2a2dde63cc11cae94f24278f7d85f0dd3a7a6693dca017c08c8ed:log:152', 'hash': '0xf34d4df166c2a2dde63cc11cae94f24278f7d85f0dd3a7a6693dca017c08c8ed', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:09:30.000Z'}}, {'blockNum': '0x81ecd4', 'uniqueId': '0xc6fd3b15904009fffbdf507a6612f44715ca36ef032d92a9783dfbce329b885c:log:14', 'hash': '0xc6fd3b15904009fffbdf507a6612f44715ca36ef032d92a9783dfbce329b885c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xacda8e694f34fbc2e60465a0d1a034e6c3dcfa3d', 'value': 315.675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111cdee3fb6f6f8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:09:34.000Z'}}, {'blockNum': '0x81ecd5', 'uniqueId': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06:log:130', 'hash': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 936.7063226123735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32c7695d887cf7fd08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:24.000Z'}}, {'blockNum': '0x81ecd5', 'uniqueId': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06:log:134', 'hash': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 936.7063226123735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32c7695d887cf7fd08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:24.000Z'}}, {'blockNum': '0x81ecda', 'uniqueId': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9:log:59', 'hash': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.9264233728927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f2e895a774636834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:56.000Z'}}, {'blockNum': '0x81ecda', 'uniqueId': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9:log:63', 'hash': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.9264233728927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f2e895a774636834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:56.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:128', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:132', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:135', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf2', 'uniqueId': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1:log:20', 'hash': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1', 'from': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 391.0596300054491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15330ae591367bbf51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:57.000Z'}}, {'blockNum': '0x81ecf2', 'uniqueId': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1:log:24', 'hash': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 391.0596300054491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15330ae591367bbf51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:57.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a:log:33', 'hash': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9819.410416193594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02144fb1b40fddd13da0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a:log:36', 'hash': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9819.410416193594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02144fb1b40fddd13da0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea:log:63', 'hash': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea', 'from': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 737.691549957765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27fd86dc3aafe879c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea:log:67', 'hash': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 737.691549957765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27fd86dc3aafe879c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecfa', 'uniqueId': '0x99e64a271a19eb54786745029000746c35405090a580da5d7e45e695d0e78185:log:80', 'hash': '0x99e64a271a19eb54786745029000746c35405090a580da5d7e45e695d0e78185', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xa6822f11ea34866349e230a898ea2b340b083072', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:25.000Z'}}, {'blockNum': '0x81ecfb', 'uniqueId': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f:log:46', 'hash': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 477.92969873955326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e89b60d2d4879687', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:27.000Z'}}, {'blockNum': '0x81ecfb', 'uniqueId': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f:log:50', 'hash': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 477.92969873955326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e89b60d2d4879687', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:27.000Z'}}, {'blockNum': '0x81ecfc', 'uniqueId': '0x12fafb06540ffd40769cc20d95a0c8e163f805f8f842479203b007f9d6ed885c:log:24', 'hash': '0x12fafb06540ffd40769cc20d95a0c8e163f805f8f842479203b007f9d6ed885c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:55.000Z'}}, {'blockNum': '0x81ed01', 'uniqueId': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff:log:40', 'hash': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:06.000Z'}}, {'blockNum': '0x81ed01', 'uniqueId': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff:log:43', 'hash': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:06.000Z'}}, {'blockNum': '0x81ed03', 'uniqueId': '0x5ef8864dbbc3ba5b7f9b49323e5692bf0ccb1c3df2fb5377e065dcf71fbdbc02:log:35', 'hash': '0x5ef8864dbbc3ba5b7f9b49323e5692bf0ccb1c3df2fb5377e065dcf71fbdbc02', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:28.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:112', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0xa6822f11ea34866349e230a898ea2b340b083072', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:115', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:116', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:140', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:143', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:144', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed1d', 'uniqueId': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072:log:138', 'hash': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1636.6685539865766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58b956c268be22b8d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:26:29.000Z'}}, {'blockNum': '0x81ed1d', 'uniqueId': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072:log:142', 'hash': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1636.6685539865766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58b956c268be22b8d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:26:29.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb:log:56', 'hash': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 32.88291783211047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c857978c114d81fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb:log:60', 'hash': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 32.88291783211047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c857978c114d81fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7:log:79', 'hash': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14711.129415829846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031d7deeb4cb09c08a43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7:log:82', 'hash': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 14711.129415829846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031d7deeb4cb09c08a43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed24', 'uniqueId': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734:log:81', 'hash': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1449.5647854674376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e94c0a4425dedede3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:20.000Z'}}, {'blockNum': '0x81ed24', 'uniqueId': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734:log:85', 'hash': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1449.5647854674376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e94c0a4425dedede3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:20.000Z'}}, {'blockNum': '0x81ed26', 'uniqueId': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6:log:42', 'hash': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 348.58868193529906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e5a3c7517320ada1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:26.000Z'}}, {'blockNum': '0x81ed26', 'uniqueId': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6:log:46', 'hash': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 348.58868193529906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e5a3c7517320ada1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:26.000Z'}}, {'blockNum': '0x81ed27', 'uniqueId': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5:log:64', 'hash': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.03175409283572924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70d02ddfa36f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:29.000Z'}}, {'blockNum': '0x81ed27', 'uniqueId': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5:log:68', 'hash': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.03175409283572924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70d02ddfa36f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:29.000Z'}}, {'blockNum': '0x81ed2e', 'uniqueId': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5:log:82', 'hash': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 183.47907249292675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f2489c518b0b0cda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:41.000Z'}}, {'blockNum': '0x81ed2e', 'uniqueId': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5:log:86', 'hash': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 183.47907249292675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f2489c518b0b0cda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:41.000Z'}}, {'blockNum': '0x81ed2f', 'uniqueId': '0xd946c8a9cb6138f41cfc4710ea7812ec3787a74770c916ed6697c6925477191b:log:12', 'hash': '0xd946c8a9cb6138f41cfc4710ea7812ec3787a74770c916ed6697c6925477191b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:49.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf:log:25', 'hash': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf:log:28', 'hash': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b:log:107', 'hash': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.223298976447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af45c040462f8ea1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b:log:111', 'hash': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.223298976447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af45c040462f8ea1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e:log:30', 'hash': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 735.0526437332921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d8e794ffe6a34d1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e:log:34', 'hash': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 735.0526437332921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d8e794ffe6a34d1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c:log:63', 'hash': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 440.99769787922304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8128db7181f9659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c:log:67', 'hash': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 440.99769787922304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8128db7181f9659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed55', 'uniqueId': '0xc831303571c985d18f967fa05cfd1c23b53be539b428de3fff39f75543bb9213:log:52', 'hash': '0xc831303571c985d18f967fa05cfd1c23b53be539b428de3fff39f75543bb9213', 'from': '0xdfee8dc240c6cadc2c7f7f9c257c259914dea84e', 'to': '0xfee4ae2adfc648afde92a4087fd7b7c6980149ba', 'value': 13503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dbffc4ce0a339c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:36:29.000Z'}}, {'blockNum': '0x81ed56', 'uniqueId': '0x5ae0c2fbb25dc75c76a00b8d6267a52eb2d08f5818451286710d9d2a3b42f4f4:log:43', 'hash': '0x5ae0c2fbb25dc75c76a00b8d6267a52eb2d08f5818451286710d9d2a3b42f4f4', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xa6822f11ea34866349e230a898ea2b340b083072', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:37:09.000Z'}}, {'blockNum': '0x81ed97', 'uniqueId': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f:log:80', 'hash': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea0000d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:52:44.000Z'}}, {'blockNum': '0x81ed97', 'uniqueId': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f:log:83', 'hash': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea0000d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:52:44.000Z'}}, {'blockNum': '0x81ed9c', 'uniqueId': '0x729d6ebc68ec8da48e00652800b9431f59b6abf2884f096ab658aee36add5724:log:2', 'hash': '0x729d6ebc68ec8da48e00652800b9431f59b6abf2884f096ab658aee36add5724', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:53:26.000Z'}}, {'blockNum': '0x81ed9e', 'uniqueId': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224:log:69', 'hash': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:03.000Z'}}, {'blockNum': '0x81ed9e', 'uniqueId': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224:log:72', 'hash': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:03.000Z'}}, {'blockNum': '0x81eda2', 'uniqueId': '0x3a7e09cea9ebc23facf2084a55c41a839a2d8287802e81b3f0cb9e4f2528b541:log:5', 'hash': '0x3a7e09cea9ebc23facf2084a55c41a839a2d8287802e81b3f0cb9e4f2528b541', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x9b3d736cd160db8be8856e39f68fd0feaf1bde66', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:39.000Z'}}, {'blockNum': '0x81edaa', 'uniqueId': '0x99e73e760849a3257e56eef4da31d44f31d73ebc0045687ef1e4ac5ff339e19f:log:25', 'hash': '0x99e73e760849a3257e56eef4da31d44f31d73ebc0045687ef1e4ac5ff339e19f', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x9b3d736cd160db8be8856e39f68fd0feaf1bde66', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe664992288f2280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:56:17.000Z'}}, {'blockNum': '0x81edb2', 'uniqueId': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141:log:45', 'hash': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 947.3828872761264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x335b9424872973e431', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:06.000Z'}}, {'blockNum': '0x81edb2', 'uniqueId': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141:log:49', 'hash': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 947.3828872761264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x335b9424872973e431', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:06.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:82', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0xa6822f11ea34866349e230a898ea2b340b083072', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:85', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:87', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb7', 'uniqueId': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669:log:26', 'hash': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4b192ebd64f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:59.000Z'}}, {'blockNum': '0x81edb7', 'uniqueId': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669:log:29', 'hash': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4b192ebd64f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:59.000Z'}}, {'blockNum': '0x81edbf', 'uniqueId': '0x22f1e1e9cd70ae0f9bb026b1d66a61c9bb73154cbc6bba96276f0a1e04f6b20f:log:6', 'hash': '0x22f1e1e9cd70ae0f9bb026b1d66a61c9bb73154cbc6bba96276f0a1e04f6b20f', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x004cb6d46df49972ef099a578c1a8533564ed30e', 'value': 67.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a8c02c5ea2de0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:00:16.000Z'}}, {'blockNum': '0x81edc4', 'uniqueId': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40:log:33', 'hash': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 44.645253901784606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026b93cde20afe6673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:20.000Z'}}, {'blockNum': '0x81edc4', 'uniqueId': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40:log:38', 'hash': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 44.645253901784606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026b93cde20afe6673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:20.000Z'}}, {'blockNum': '0x81edc8', 'uniqueId': '0x5f07a9aff739022ddbece6bdf9d076b789425d849fd4f8f356e4e51b453546c7:log:44', 'hash': '0x5f07a9aff739022ddbece6bdf9d076b789425d849fd4f8f356e4e51b453546c7', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x001f7e88078e8fa2741422c6af6c5cd4465c0e5e', 'value': 62.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:51.000Z'}}, {'blockNum': '0x81edcb', 'uniqueId': '0xdbc404ba2c29a4b46687212d626b24e5aeb12fb8232cbc3572ecc7c5728142e1:log:2', 'hash': '0xdbc404ba2c29a4b46687212d626b24e5aeb12fb8232cbc3572ecc7c5728142e1', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0xb464ccaaddfb6a9a4345bd3b88c40a7633eaebed', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06c6b935b8bbd40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:02:54.000Z'}}, {'blockNum': '0x81edd3', 'uniqueId': '0x36ae0a59bd45bcd5d27a4d770fcdc4e8c80697b601f6fbbfb4190a53a6ecbef0:log:10', 'hash': '0x36ae0a59bd45bcd5d27a4d770fcdc4e8c80697b601f6fbbfb4190a53a6ecbef0', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0xce16cbe6722a90b015466cda8e55d540643b5ceb', 'value': 62.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:47.000Z'}}, {'blockNum': '0x81edd4', 'uniqueId': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10:log:7', 'hash': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.1647036954102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af38bd7eb63421b1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:49.000Z'}}, {'blockNum': '0x81edd4', 'uniqueId': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10:log:11', 'hash': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.1647036954102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af38bd7eb63421b1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:49.000Z'}}, {'blockNum': '0x81eddb', 'uniqueId': '0x93dc43792c38277458cc026c9c0085462a2ecf52f5548f265968af7166937afd:log:5', 'hash': '0x93dc43792c38277458cc026c9c0085462a2ecf52f5548f265968af7166937afd', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x008bc52f7ca763fdc7aa338506ffe9139c53988e', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:06:10.000Z'}}, {'blockNum': '0x81edde', 'uniqueId': '0xc1c570c66f69698a9e792260804bac66b3bd5e3c4b6e2f058762c9336673a639:log:40', 'hash': '0xc1c570c66f69698a9e792260804bac66b3bd5e3c4b6e2f058762c9336673a639', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x008bc52f7ca763fdc7aa338506ffe9139c53988e', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:07:10.000Z'}}, {'blockNum': '0x81ede1', 'uniqueId': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d:log:109', 'hash': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 734.9823858251938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d7edf9cdefc6722f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:08.000Z'}}, {'blockNum': '0x81ede1', 'uniqueId': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d:log:113', 'hash': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 734.9823858251938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d7edf9cdefc6722f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:08.000Z'}}, {'blockNum': '0x81ede5', 'uniqueId': '0x57e336b779f6b98628f8fa93bdb117ecad01ae7e3df27a5b91eff238f7fdacea:log:13', 'hash': '0x57e336b779f6b98628f8fa93bdb117ecad01ae7e3df27a5b91eff238f7fdacea', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x64d0f9deb341cc4fd242aeff362f43c8e4558bbb', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:53.000Z'}}, {'blockNum': '0x81edea', 'uniqueId': '0x623d99aa638bdf263773ad57f87012c0da7e9b81bb6e355e57b59705c99da366:log:30', 'hash': '0x623d99aa638bdf263773ad57f87012c0da7e9b81bb6e355e57b59705c99da366', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x00a3ecaf33491743183dc59e7ae02ae31ede3973', 'value': 57.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031df9095a18f60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:10:21.000Z'}}, {'blockNum': '0x81edf2', 'uniqueId': '0xd3c44e540e85c6563a87ead4398117926684844af998b32d83ea257723af5ce4:log:0', 'hash': '0xd3c44e540e85c6563a87ead4398117926684844af998b32d83ea257723af5ce4', 'from': '0x64d0f9deb341cc4fd242aeff362f43c8e4558bbb', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:11:52.000Z'}}, {'blockNum': '0x81ee1a', 'uniqueId': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5:log:164', 'hash': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.9490426675056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f68aa71df60661d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:07.000Z'}}, {'blockNum': '0x81ee1a', 'uniqueId': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5:log:168', 'hash': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.9490426675056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f68aa71df60661d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:07.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc:log:75', 'hash': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 434.07071084651045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1787f0f3b5af8d762c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc:log:79', 'hash': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 434.07071084651045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1787f0f3b5af8d762c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a:log:87', 'hash': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 506.93537573891496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b243e6035332651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a:log:91', 'hash': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 506.93537573891496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b243e6035332651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee:log:103', 'hash': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 48.993645524836275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a7ec65067f45ca80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee:log:107', 'hash': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 48.993645524836275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a7ec65067f45ca80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477:log:115', 'hash': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 507.609588876155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b847f87a6e94b79be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477:log:119', 'hash': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 507.609588876155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b847f87a6e94b79be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee20', 'uniqueId': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1:log:88', 'hash': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.95170163406084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f721cc2c45e908f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:31.000Z'}}, {'blockNum': '0x81ee20', 'uniqueId': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1:log:92', 'hash': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.95170163406084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f721cc2c45e908f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:31.000Z'}}, {'blockNum': '0x81ee23', 'uniqueId': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04:log:103', 'hash': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.9203345819562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f02ac97d6052937', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:20:21.000Z'}}, {'blockNum': '0x81ee23', 'uniqueId': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04:log:107', 'hash': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.9203345819562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f02ac97d6052937', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:20:21.000Z'}}, {'blockNum': '0x81ee2f', 'uniqueId': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd:log:29', 'hash': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 483.63161017710723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a37bca310e4ab1e49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:16.000Z'}}, {'blockNum': '0x81ee2f', 'uniqueId': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd:log:33', 'hash': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 483.63161017710723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a37bca310e4ab1e49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:16.000Z'}}, {'blockNum': '0x81ee31', 'uniqueId': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091:log:139', 'hash': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 903.8037693886702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30fecc03b38ec0d453', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:52.000Z'}}, {'blockNum': '0x81ee31', 'uniqueId': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091:log:143', 'hash': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 903.8037693886702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30fecc03b38ec0d453', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:52.000Z'}}, {'blockNum': '0x81ee32', 'uniqueId': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629:log:92', 'hash': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 253.99452209387957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc4e1d01faccc53db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:56.000Z'}}, {'blockNum': '0x81ee32', 'uniqueId': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629:log:96', 'hash': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.99452209387957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc4e1d01faccc53db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:56.000Z'}}, {'blockNum': '0x81ee42', 'uniqueId': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b:log:67', 'hash': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1481.708350154181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5052d58609b61114f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:26:30.000Z'}}, {'blockNum': '0x81ee42', 'uniqueId': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b:log:71', 'hash': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1481.708350154181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5052d58609b61114f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:26:30.000Z'}}, {'blockNum': '0x81ee48', 'uniqueId': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e:log:46', 'hash': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e', 'from': '0xbdc7310289dcd30d16e284d6f207a8e2f76a37ad', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 261.5974631351306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2e64e2b7f8ce30d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:17.000Z'}}, {'blockNum': '0x81ee48', 'uniqueId': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e:log:50', 'hash': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 261.5974631351306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2e64e2b7f8ce30d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:17.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:12', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:15', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:18', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4c', 'uniqueId': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd:log:47', 'hash': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2053.067362136741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4c08803f0cb6ef13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:07.000Z'}}, {'blockNum': '0x81ee4c', 'uniqueId': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd:log:50', 'hash': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 2053.067362136741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4c08803f0cb6ef13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:07.000Z'}}, {'blockNum': '0x81ee4d', 'uniqueId': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170:log:117', 'hash': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 138.03779534061343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077ba8c381b755a237', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:34.000Z'}}, {'blockNum': '0x81ee4d', 'uniqueId': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170:log:121', 'hash': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 138.03779534061343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077ba8c381b755a237', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:34.000Z'}}, {'blockNum': '0x81ee67', 'uniqueId': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe:log:81', 'hash': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 493.35985899750597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1abebe51d35f25e807', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:37:28.000Z'}}, {'blockNum': '0x81ee67', 'uniqueId': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe:log:85', 'hash': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 493.35985899750597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1abebe51d35f25e807', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:37:28.000Z'}}, {'blockNum': '0x81ee71', 'uniqueId': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb:log:37', 'hash': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20323.77853310784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044dc115ffde327db74f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:39:46.000Z'}}, {'blockNum': '0x81ee71', 'uniqueId': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb:log:40', 'hash': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 20323.77853310784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044dc115ffde327db74f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:39:46.000Z'}}, {'blockNum': '0x81ee7a', 'uniqueId': '0xef5942dcd9bc341238e8d459329d94ab185df11ae2b946a9731226f15957fe21:log:9', 'hash': '0xef5942dcd9bc341238e8d459329d94ab185df11ae2b946a9731226f15957fe21', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'value': 18000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfc82e37e9a7400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:41:08.000Z'}}, {'blockNum': '0x81ee82', 'uniqueId': '0xc24b4fa8d4b5eba2b7e92a84a51a790c4cb4ed80540fa19710976ea6bd128d96:log:94', 'hash': '0xc24b4fa8d4b5eba2b7e92a84a51a790c4cb4ed80540fa19710976ea6bd128d96', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xc884a85d8100c0705efd49d1639ef812620a0196', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:42:41.000Z'}}, {'blockNum': '0x81ee8a', 'uniqueId': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213:log:83', 'hash': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 38998.91747124235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084222b38ef97f4f6c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:34.000Z'}}, {'blockNum': '0x81ee8a', 'uniqueId': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213:log:86', 'hash': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 38998.91747124235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084222b38ef97f4f6c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:34.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9:log:150', 'hash': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1291.5194219423965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46036eb77e52634263', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9:log:154', 'hash': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1291.5194219423965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46036eb77e52634263', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc:log:168', 'hash': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1976.0918524094932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b1fc88dfbab7adaaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc:log:172', 'hash': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1976.0918524094932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b1fc88dfbab7adaaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7:log:190', 'hash': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 982.1276225808123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353dc23d33bc3a15ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7:log:194', 'hash': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.1276225808123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353dc23d33bc3a15ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d:log:211', 'hash': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1698.1385620928259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c0e681919877ea6d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d:log:215', 'hash': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1698.1385620928259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c0e681919877ea6d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8f', 'uniqueId': '0x4872db3f30dc576c8ea28742fdb3691a49213ade7a7343a5947b981d5f0b5f32:log:84', 'hash': '0x4872db3f30dc576c8ea28742fdb3691a49213ade7a7343a5947b981d5f0b5f32', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:24.000Z'}}, {'blockNum': '0x81ee94', 'uniqueId': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732:log:96', 'hash': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1380.1972811121757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad215c292ab31da54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:48.000Z'}}, {'blockNum': '0x81ee94', 'uniqueId': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732:log:101', 'hash': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1380.1972811121757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad215c292ab31da54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:48.000Z'}}, {'blockNum': '0x81ee97', 'uniqueId': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985:log:69', 'hash': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 522.5772596285237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c543760e62f3d762f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:14.000Z'}}, {'blockNum': '0x81ee97', 'uniqueId': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985:log:73', 'hash': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 522.5772596285237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c543760e62f3d762f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:14.000Z'}}, {'blockNum': '0x81ee99', 'uniqueId': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890:log:13', 'hash': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 495.1304499024967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad750b8df6da8dfd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:27.000Z'}}, {'blockNum': '0x81ee99', 'uniqueId': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890:log:17', 'hash': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 495.1304499024967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad750b8df6da8dfd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:27.000Z'}}, {'blockNum': '0x81ee9c', 'uniqueId': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42:log:51', 'hash': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 730.5116958242895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2799e2e4ef72fc87ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:54.000Z'}}, {'blockNum': '0x81ee9c', 'uniqueId': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42:log:55', 'hash': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 730.5116958242895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2799e2e4ef72fc87ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:54.000Z'}}, {'blockNum': '0x81ee9e', 'uniqueId': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a:log:35', 'hash': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.45508559572374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab22feb35dfb32574', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:04.000Z'}}, {'blockNum': '0x81ee9e', 'uniqueId': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a:log:39', 'hash': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.45508559572374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab22feb35dfb32574', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:04.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e:log:80', 'hash': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 111.95568203569857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0611b27ba5146505e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e:log:84', 'hash': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 111.95568203569857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0611b27ba5146505e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced:log:93', 'hash': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 475.9426495754124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19cd07f622f8ad8a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced:log:97', 'hash': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 475.9426495754124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19cd07f622f8ad8a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a:log:117', 'hash': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1119.8389520839369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb4e329c260bcb8d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a:log:121', 'hash': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1119.8389520839369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb4e329c260bcb8d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81eea1', 'uniqueId': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709:log:32', 'hash': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 904.6667699324896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310ac6021fa61512ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:30.000Z'}}, {'blockNum': '0x81eea1', 'uniqueId': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709:log:36', 'hash': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 904.6667699324896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310ac6021fa61512ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:30.000Z'}}, {'blockNum': '0x81eea3', 'uniqueId': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094:log:87', 'hash': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.943689258796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f325ece2c8630ba1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:58.000Z'}}, {'blockNum': '0x81eea3', 'uniqueId': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094:log:89', 'hash': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.943689258796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f325ece2c8630ba1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:58.000Z'}}, {'blockNum': '0x81eea4', 'uniqueId': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8:log:39', 'hash': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.5696245115934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52a1d8d5cd55a337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:13.000Z'}}, {'blockNum': '0x81eea4', 'uniqueId': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8:log:43', 'hash': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 485.5696245115934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52a1d8d5cd55a337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:13.000Z'}}, {'blockNum': '0x81eea5', 'uniqueId': '0x7612b5f5e33662b57b6505f688d3273d80dba7daf1d95a571c9c3890d00f4f8b:log:19', 'hash': '0x7612b5f5e33662b57b6505f688d3273d80dba7daf1d95a571c9c3890d00f4f8b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 2299.209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7ca3ef43c4c51a8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:17.000Z'}}, {'blockNum': '0x81eeaa', 'uniqueId': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2:log:19', 'hash': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.3644724783999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c41213490a9fef6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:53.000Z'}}, {'blockNum': '0x81eeaa', 'uniqueId': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2:log:23', 'hash': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.3644724783999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c41213490a9fef6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:53.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:37', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:40', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:41', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeaf', 'uniqueId': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197:log:24', 'hash': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.99123027889044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab9a0aff58c105b06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:36.000Z'}}, {'blockNum': '0x81eeaf', 'uniqueId': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197:log:28', 'hash': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.99123027889044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab9a0aff58c105b06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:36.000Z'}}, {'blockNum': '0x81eeb0', 'uniqueId': '0x94c6c77d093b66fca19a45cd0d2d559b73b31a760702581231071cfb7537fad7:log:5', 'hash': '0x94c6c77d093b66fca19a45cd0d2d559b73b31a760702581231071cfb7537fad7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:51.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:95', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:98', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:99', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c:log:112', 'hash': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.8925099380834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a64fdae1f21cec921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c:log:116', 'hash': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.8925099380834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a64fdae1f21cec921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb:log:177', 'hash': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.14772288956777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c3af46b0131be54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb:log:181', 'hash': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 244.14772288956777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c3af46b0131be54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb7', 'uniqueId': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e:log:21', 'hash': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.1399365463213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c1f4ac7b1e37bfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:45.000Z'}}, {'blockNum': '0x81eeb7', 'uniqueId': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e:log:25', 'hash': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 244.1399365463213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c1f4ac7b1e37bfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:45.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164:log:136', 'hash': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 763.8796959473787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2968f5d8418ce66e29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164:log:140', 'hash': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 763.8796959473787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2968f5d8418ce66e29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1:log:150', 'hash': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 394.811877149515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15671d8e76ea01807d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1:log:154', 'hash': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 394.811877149515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15671d8e76ea01807d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec2', 'uniqueId': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d:log:71', 'hash': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.43606708847295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa40ba346ef779049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:17.000Z'}}, {'blockNum': '0x81eec2', 'uniqueId': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d:log:75', 'hash': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.43606708847295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa40ba346ef779049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:17.000Z'}}, {'blockNum': '0x81eeca', 'uniqueId': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41:log:22', 'hash': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.8290568815831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2852b3aa4230966612', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:58:47.000Z'}}, {'blockNum': '0x81eeca', 'uniqueId': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41:log:26', 'hash': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.8290568815831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2852b3aa4230966612', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:58:47.000Z'}}, {'blockNum': '0x81eecb', 'uniqueId': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243:log:152', 'hash': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.61714087938356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a612b5f6bf3df07eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:02.000Z'}}, {'blockNum': '0x81eecb', 'uniqueId': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243:log:154', 'hash': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.61714087938356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a612b5f6bf3df07eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:02.000Z'}}, {'blockNum': '0x81eecf', 'uniqueId': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a:log:58', 'hash': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 293.12678653349315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fe3f38b4cc89d24e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:38.000Z'}}, {'blockNum': '0x81eecf', 'uniqueId': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a:log:62', 'hash': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 293.12678653349315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fe3f38b4cc89d24e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:38.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x5c336bffd1fde9f7368e55b7d2cac8f11ebc5987350b772e1b94fc0191bc73ad:log:3', 'hash': '0x5c336bffd1fde9f7368e55b7d2cac8f11ebc5987350b772e1b94fc0191bc73ad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 21100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0477d5529f68a6300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e:log:54', 'hash': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.44983918854217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17ee58e1d72a5f25d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e:log:58', 'hash': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 441.44983918854217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17ee58e1d72a5f25d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0x4156f46b97631505ebd2467e6549f37790127ba487150d11ab2f996cc84104fd:log:6', 'hash': '0x4156f46b97631505ebd2467e6549f37790127ba487150d11ab2f996cc84104fd', 'from': '0x0e17fdee2528ee4b6c076fd5fe725b05a6d0566a', 'to': '0x3ab23200bba977271f7ff0bc301c09671916b0aa', 'value': 134.8172234408092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ef6fe6d59e5c953', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64:log:34', 'hash': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 384.70177310071824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14dacf4065d33c8f93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64:log:38', 'hash': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 384.70177310071824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14dacf4065d33c8f93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7:log:121', 'hash': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.48234357272116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5f4c79fc4795010b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7:log:125', 'hash': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.48234357272116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5f4c79fc4795010b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b:log:136', 'hash': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.731196206868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a436ef1e0e2b781', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b:log:140', 'hash': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.731196206868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a436ef1e0e2b781', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eee0', 'uniqueId': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278:log:101', 'hash': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1270.3856059645502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44de2451d55660edfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:31.000Z'}}, {'blockNum': '0x81eee0', 'uniqueId': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278:log:105', 'hash': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 1270.3856059645502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44de2451d55660edfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:31.000Z'}}, {'blockNum': '0x81eee6', 'uniqueId': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6:log:89', 'hash': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.323224352254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a78d8994d117b346b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:04:25.000Z'}}, {'blockNum': '0x81eee6', 'uniqueId': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6:log:93', 'hash': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 488.323224352254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a78d8994d117b346b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:04:25.000Z'}}, {'blockNum': '0x81eef2', 'uniqueId': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf:log:63', 'hash': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 496.20794907736763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae644c4a9d99e4ff3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:06:52.000Z'}}, {'blockNum': '0x81eef2', 'uniqueId': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf:log:67', 'hash': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 496.20794907736763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae644c4a9d99e4ff3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:06:52.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c:log:54', 'hash': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.9005244640418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9c9d0218fc29f6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c:log:58', 'hash': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.9005244640418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9c9d0218fc29f6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e:log:70', 'hash': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9767.036235772322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021178db3c7589b61301', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e:log:73', 'hash': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9767.036235772322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021178db3c7589b61301', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefd', 'uniqueId': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15:log:73', 'hash': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 480.86758967215883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1160dd0fa753571b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:21.000Z'}}, {'blockNum': '0x81eefd', 'uniqueId': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15:log:77', 'hash': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 480.86758967215883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1160dd0fa753571b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:21.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5:log:73', 'hash': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1235.1249345028996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f4cd3ff540f28ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5:log:77', 'hash': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1235.1249345028996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f4cd3ff540f28ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c:log:87', 'hash': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 450.7146472716078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186eec17b479aaeb74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c:log:91', 'hash': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 450.7146472716078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186eec17b479aaeb74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d:log:103', 'hash': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 439.3480990942714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d12e005c392adc59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d:log:107', 'hash': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 439.3480990942714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d12e005c392adc59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef07', 'uniqueId': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f:log:121', 'hash': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 393.25048573759494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155172613f7b2a0e23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:11:42.000Z'}}, {'blockNum': '0x81ef07', 'uniqueId': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f:log:125', 'hash': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 393.25048573759494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155172613f7b2a0e23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:11:42.000Z'}}, {'blockNum': '0x81ef0c', 'uniqueId': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7:log:100', 'hash': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 185.50448920380168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a0e64561600e23c81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:42.000Z'}}, {'blockNum': '0x81ef0c', 'uniqueId': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7:log:104', 'hash': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 185.50448920380168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a0e64561600e23c81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:42.000Z'}}, {'blockNum': '0x81ef0d', 'uniqueId': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c:log:67', 'hash': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 732.2106743705912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27b176e0ebf04d36c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:50.000Z'}}, {'blockNum': '0x81ef0d', 'uniqueId': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c:log:71', 'hash': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 732.2106743705912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27b176e0ebf04d36c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:50.000Z'}}, {'blockNum': '0x81ef17', 'uniqueId': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8:log:149', 'hash': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8', 'from': '0x5142127a6703f5fc80bf11b7b57ff68998f218e4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 232.3813512926134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c98f067ca9d7bc76f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:16:24.000Z'}}, {'blockNum': '0x81ef17', 'uniqueId': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8:log:153', 'hash': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 232.3813512926134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c98f067ca9d7bc76f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:16:24.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f:log:132', 'hash': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 917.6330186337935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31beb7609e8caad579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f:log:136', 'hash': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 917.6330186337935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31beb7609e8caad579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b:log:146', 'hash': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.2301895173384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a4debee819c6cb830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b:log:150', 'hash': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 485.2301895173384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a4debee819c6cb830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37:log:163', 'hash': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1376.3305540134118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a9c6c62c36dfcc3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37:log:167', 'hash': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 1376.3305540134118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a9c6c62c36dfcc3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706:log:133', 'hash': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 938.2240520427426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc796c68a747f041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706:log:137', 'hash': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 938.2240520427426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc796c68a747f041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb:log:149', 'hash': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 585.6693043804041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fbfcb5953341e4d1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb:log:153', 'hash': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 585.6693043804041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fbfcb5953341e4d1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b:log:162', 'hash': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 114.33484541115729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0632b6f821253b26d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b:log:166', 'hash': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.33484541115729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0632b6f821253b26d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef33', 'uniqueId': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31:log:31', 'hash': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.7928253064561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa8ff18fc750deda5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:11.000Z'}}, {'blockNum': '0x81ef33', 'uniqueId': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31:log:35', 'hash': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.7928253064561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa8ff18fc750deda5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:11.000Z'}}, {'blockNum': '0x81ef35', 'uniqueId': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0:log:50', 'hash': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1226.0258483417433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x427686cd4db08b1e02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:29.000Z'}}, {'blockNum': '0x81ef35', 'uniqueId': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0:log:54', 'hash': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1226.0258483417433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x427686cd4db08b1e02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:29.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:70', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:73', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:76', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9:log:32', 'hash': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.09874860341566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb8705ca5bafd7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9:log:36', 'hash': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.09874860341566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb8705ca5bafd7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:46', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:49', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:50', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45:log:63', 'hash': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.52918318646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af89abc15e3b9f810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45:log:67', 'hash': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.52918318646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af89abc15e3b9f810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef41', 'uniqueId': '0xe180cfcb2766f5959548e5ed6a68f5020ceac6f4112cc3cbce6d5d42c02a32b6:log:5', 'hash': '0xe180cfcb2766f5959548e5ed6a68f5020ceac6f4112cc3cbce6d5d42c02a32b6', 'from': '0xc884a85d8100c0705efd49d1639ef812620a0196', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:59.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3:log:45', 'hash': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1159.5070945793111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3edb64b730211993e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3:log:49', 'hash': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1159.5070945793111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3edb64b730211993e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7:log:166', 'hash': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 475.1006099727449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c1586f944cde75c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7:log:170', 'hash': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 475.1006099727449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c1586f944cde75c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:151', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:154', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:157', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef48', 'uniqueId': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3:log:71', 'hash': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.787261895144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7f4930fcdbe29b62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:29.000Z'}}, {'blockNum': '0x81ef48', 'uniqueId': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3:log:74', 'hash': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x14bafc009cc698da196927871e2ce54dc23c25f3', 'value': 488.787261895144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7f4930fcdbe29b62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:29.000Z'}}, {'blockNum': '0x81ef4a', 'uniqueId': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e:log:40', 'hash': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.9981734426174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f3e77df65ef060ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:59.000Z'}}, {'blockNum': '0x81ef4a', 'uniqueId': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e:log:44', 'hash': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.9981734426174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f3e77df65ef060ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:59.000Z'}}, {'blockNum': '0x81ef4c', 'uniqueId': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b:log:150', 'hash': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.20370421358193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069feac584ef7532ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:29:33.000Z'}}, {'blockNum': '0x81ef4c', 'uniqueId': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b:log:154', 'hash': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 122.20370421358193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069feac584ef7532ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:29:33.000Z'}}, {'blockNum': '0x81ef55', 'uniqueId': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70:log:106', 'hash': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 426.0836021448373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1719190aa9bde4dc2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:30:31.000Z'}}, {'blockNum': '0x81ef55', 'uniqueId': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70:log:110', 'hash': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 426.0836021448373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1719190aa9bde4dc2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:30:31.000Z'}}, {'blockNum': '0x81ef59', 'uniqueId': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200:log:56', 'hash': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 793.1444928424017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2aff1749fb04b4bdd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:31:22.000Z'}}, {'blockNum': '0x81ef59', 'uniqueId': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200:log:60', 'hash': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 793.1444928424017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2aff1749fb04b4bdd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:31:22.000Z'}}, {'blockNum': '0x81ef5b', 'uniqueId': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783:log:140', 'hash': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 461.0082373649752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fdc6455b6c4ebf04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:32:39.000Z'}}, {'blockNum': '0x81ef5b', 'uniqueId': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783:log:144', 'hash': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 461.0082373649752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fdc6455b6c4ebf04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:32:39.000Z'}}, {'blockNum': '0x81ef5c', 'uniqueId': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba:log:64', 'hash': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.8496532869458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1febee37ce28566e40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:10.000Z'}}, {'blockNum': '0x81ef5c', 'uniqueId': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba:log:68', 'hash': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 588.8496532869458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1febee37ce28566e40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:10.000Z'}}, {'blockNum': '0x81ef5e', 'uniqueId': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801:log:26', 'hash': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 405.4023939379966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fa16a15f6742a6bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:32.000Z'}}, {'blockNum': '0x81ef5e', 'uniqueId': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801:log:30', 'hash': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.4023939379966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fa16a15f6742a6bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:32.000Z'}}, {'blockNum': '0x81ef9c', 'uniqueId': '0xb3cf5bdb9a13b9fa6874d0461e7bb0467a5532cbe028b4242c42b27ecdd0354e:log:7', 'hash': '0xb3cf5bdb9a13b9fa6874d0461e7bb0467a5532cbe028b4242c42b27ecdd0354e', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xdddeadf2f83ea85abd1807d396d06566a3dd2838', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:50:24.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e:log:137', 'hash': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 391.12827945415773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1533fec9e08ac91ad0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e:log:141', 'hash': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 391.12827945415773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1533fec9e08ac91ad0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17:log:151', 'hash': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 681.1644193011612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ed0e266400f1b551', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17:log:155', 'hash': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 681.1644193011612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ed0e266400f1b551', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3:log:170', 'hash': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 876.4579352317572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f834c186b8d36f207', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3:log:174', 'hash': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 876.4579352317572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f834c186b8d36f207', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa7', 'uniqueId': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef:log:28', 'hash': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 748.0510061449074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288d4b0abea4c1efb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:17.000Z'}}, {'blockNum': '0x81efa7', 'uniqueId': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef:log:32', 'hash': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.0510061449074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288d4b0abea4c1efb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:17.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:117', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0xdddeadf2f83ea85abd1807d396d06566a3dd2838', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:120', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:121', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efb7', 'uniqueId': '0xa4581c087ffd16f474bd5f95947b3606a3c4e4cd23de7a55c8eadb047b63afe1:log:8', 'hash': '0xa4581c087ffd16f474bd5f95947b3606a3c4e4cd23de7a55c8eadb047b63afe1', 'from': '0x57886276c3fb7fe85bc74798b2afaaa22d4eb1a3', 'to': '0x576768569cfc4b5d5423837a600f5ca689a7e554', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:55:28.000Z'}}, {'blockNum': '0x81efc6', 'uniqueId': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969:log:77', 'hash': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 133.21380416683778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0738b68117bed15316', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:11.000Z'}}, {'blockNum': '0x81efc6', 'uniqueId': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969:log:81', 'hash': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 133.21380416683778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0738b68117bed15316', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:11.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88:log:39', 'hash': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 900.2602523018567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cd9ee9af6fb42c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88:log:43', 'hash': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 900.2602523018567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cd9ee9af6fb42c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c:log:54', 'hash': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3412.5730496355036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8fef6f40e7baa3816', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c:log:58', 'hash': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 3412.5730496355036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8fef6f40e7baa3816', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c:log:163', 'hash': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 384.0756707644447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d21ee3a3e09bed5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c:log:167', 'hash': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 384.0756707644447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d21ee3a3e09bed5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efca', 'uniqueId': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861:log:72', 'hash': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 955.4721885873464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33cbd71d3629d336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:57.000Z'}}, {'blockNum': '0x81efca', 'uniqueId': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861:log:76', 'hash': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 955.4721885873464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33cbd71d3629d336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:57.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0:log:64', 'hash': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 684.7267521249931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x251e7e1938492a6cb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0:log:68', 'hash': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 684.7267521249931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x251e7e1938492a6cb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7:log:96', 'hash': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.45991059928932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4090117c66637d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7:log:100', 'hash': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 244.45991059928932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4090117c66637d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efd7', 'uniqueId': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1:log:17', 'hash': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.89640011795956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a80cced9f8638f076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:01:20.000Z'}}, {'blockNum': '0x81efd7', 'uniqueId': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1:log:21', 'hash': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 488.89640011795956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a80cced9f8638f076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:01:20.000Z'}}, {'blockNum': '0x81effb', 'uniqueId': '0x58d3ce1f16a3e17d9472d563dd15be704d62692833b8f3a7a7c94b59b61af073:log:52', 'hash': '0x58d3ce1f16a3e17d9472d563dd15be704d62692833b8f3a7a7c94b59b61af073', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 1059.169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396aec31c839b68000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:10:49.000Z'}}, {'blockNum': '0x81effc', 'uniqueId': '0xa7259f8ff191699f6e2a3e019496df8faf99c45c3aab8949f648ee186498ff98:log:121', 'hash': '0xa7259f8ff191699f6e2a3e019496df8faf99c45c3aab8949f648ee186498ff98', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 1059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396893c92d72ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:11:12.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:52', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:55', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:58', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f01b', 'uniqueId': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341:log:67', 'hash': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 797.2250785257891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b37b8710a2a8e23db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:17:14.000Z'}}, {'blockNum': '0x81f01b', 'uniqueId': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341:log:71', 'hash': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 797.2250785257891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b37b8710a2a8e23db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:17:14.000Z'}}, {'blockNum': '0x81f020', 'uniqueId': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac:log:51', 'hash': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1466.6527021226566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f81e51debe7bdb346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:18:31.000Z'}}, {'blockNum': '0x81f020', 'uniqueId': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac:log:55', 'hash': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 1466.6527021226566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f81e51debe7bdb346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:18:31.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:134', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:137', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:140', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0x9ec97a85797b8c24e1ec2a536974fbf73e19ace71b9552b38660c82cb4b12ea6:log:166', 'hash': '0x9ec97a85797b8c24e1ec2a536974fbf73e19ace71b9552b38660c82cb4b12ea6', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396893c92d72ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f02a', 'uniqueId': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9:log:25', 'hash': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24402.15618560535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052ad7f212a4bfef4d24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:32.000Z'}}, {'blockNum': '0x81f02a', 'uniqueId': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9:log:28', 'hash': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 24402.15618560535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052ad7f212a4bfef4d24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:32.000Z'}}, {'blockNum': '0x81f030', 'uniqueId': '0x82d38d91c5ba332ca0e33bc9210a6e7943d3c33ad215ee9d84896d1be81789f6:log:56', 'hash': '0x82d38d91c5ba332ca0e33bc9210a6e7943d3c33ad215ee9d84896d1be81789f6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa3248bf19f3ac2efb40dccbbd71404d2f5ae7a53', 'value': 116.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065701dd5f51ef0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:29.000Z'}}, {'blockNum': '0x81f031', 'uniqueId': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474:log:116', 'hash': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 447.19540726692753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183e153d91035a9c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:41.000Z'}}, {'blockNum': '0x81f031', 'uniqueId': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474:log:120', 'hash': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.19540726692753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183e153d91035a9c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:41.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:50', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:53', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:56', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6:log:66', 'hash': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 500.533061134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b224aa729e8d82ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6:log:70', 'hash': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500.533061134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b224aa729e8d82ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f03d', 'uniqueId': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033:log:64', 'hash': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 389.8500464133615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15224197b2e9f5ce3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:25:44.000Z'}}, {'blockNum': '0x81f03d', 'uniqueId': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033:log:68', 'hash': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 389.8500464133615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15224197b2e9f5ce3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:25:44.000Z'}}, {'blockNum': '0x81f03e', 'uniqueId': '0x2b85d94368ee6a1018c5483afc455c413309dc852ebd5d7acb3acecfcfe14162:log:15', 'hash': '0x2b85d94368ee6a1018c5483afc455c413309dc852ebd5d7acb3acecfcfe14162', 'from': '0xa3248bf19f3ac2efb40dccbbd71404d2f5ae7a53', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 116.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065701dd5f51ef0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:05.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:180', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:183', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:186', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f043', 'uniqueId': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85:log:145', 'hash': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85', 'from': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1080.5608352325194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a93cb429659b5ca7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:46.000Z'}}, {'blockNum': '0x81f043', 'uniqueId': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85:log:149', 'hash': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1080.5608352325194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a93cb429659b5ca7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:46.000Z'}}, {'blockNum': '0x81f04f', 'uniqueId': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30:log:102', 'hash': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 262.39527902062224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e39774c0a1bb25bd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:29:36.000Z'}}, {'blockNum': '0x81f04f', 'uniqueId': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30:log:106', 'hash': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 262.39527902062224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e39774c0a1bb25bd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:29:36.000Z'}}, {'blockNum': '0x81f053', 'uniqueId': '0x40841e9e3f7ac2df13d70ecdb79019458e87ce4c74e8e5c57ae1a6970f312d96:log:142', 'hash': '0x40841e9e3f7ac2df13d70ecdb79019458e87ce4c74e8e5c57ae1a6970f312d96', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x7fd8a3e656c90a0e3cd703e4ba46aa4c9d9e84fb', 'value': 341.5028015726495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12834dacabc27bcaf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:02.000Z'}}, {'blockNum': '0x81f054', 'uniqueId': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d:log:102', 'hash': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 609.2000445136018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21065954ce116421fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:11.000Z'}}, {'blockNum': '0x81f054', 'uniqueId': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d:log:106', 'hash': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 609.2000445136018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21065954ce116421fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:11.000Z'}}, {'blockNum': '0x81f061', 'uniqueId': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19:log:21', 'hash': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 254.85581796066703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0d5c026b72d146a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:31:48.000Z'}}, {'blockNum': '0x81f061', 'uniqueId': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19:log:25', 'hash': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 254.85581796066703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0d5c026b72d146a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:31:48.000Z'}}, {'blockNum': '0x81f063', 'uniqueId': '0x5cb4961bd16f6a04ce48016b8e3e464117da53a8d6fba548334268a72c1b7c12:log:10', 'hash': '0x5cb4961bd16f6a04ce48016b8e3e464117da53a8d6fba548334268a72c1b7c12', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdd4c592dd07d4e9f56a4f50f36771d23b9a6d04c', 'value': 11.88546544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4f1a7d88561c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:32:25.000Z'}}, {'blockNum': '0x81f071', 'uniqueId': '0xe40a6d8d1c74bc701d7c39566ab19e8c5dcda689a5a9cd16a411b8cce7fcea80:log:49', 'hash': '0xe40a6d8d1c74bc701d7c39566ab19e8c5dcda689a5a9cd16a411b8cce7fcea80', 'from': '0xdd4c592dd07d4e9f56a4f50f36771d23b9a6d04c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 11.88546544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4f1a7d88561c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:34:28.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:160', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:163', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:166', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f0b8', 'uniqueId': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e:log:6', 'hash': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 606.6913677442114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20e388b893219b1c7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:35.000Z'}}, {'blockNum': '0x81f0b8', 'uniqueId': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e:log:10', 'hash': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 606.6913677442114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20e388b893219b1c7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:35.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:86', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0xa523b5195ba2f859607785e34d9607558413e72b', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:89', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:91', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0c7', 'uniqueId': '0x64211088fb6e06457de677d2f96994ad70f3f92051c49e73bef5dcee2b5be097:log:99', 'hash': '0x64211088fb6e06457de677d2f96994ad70f3f92051c49e73bef5dcee2b5be097', 'from': '0x80bac595727e9bb690d2b2354450e176f44903eb', 'to': '0x466611822da9e4f52d6ddd7af277b58d8195d5f9', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:53:32.000Z'}}, {'blockNum': '0x81f0cf', 'uniqueId': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4:log:54', 'hash': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1351.7103732575401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4946bfeecf2a5ae899', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:56:31.000Z'}}, {'blockNum': '0x81f0cf', 'uniqueId': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4:log:58', 'hash': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1351.7103732575401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4946bfeecf2a5ae899', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:56:31.000Z'}}, {'blockNum': '0x81f0d7', 'uniqueId': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434:log:55', 'hash': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 469.7743436537185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19776dbc94f82c0c6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:06.000Z'}}, {'blockNum': '0x81f0d7', 'uniqueId': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434:log:59', 'hash': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 469.7743436537185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19776dbc94f82c0c6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:06.000Z'}}, {'blockNum': '0x81f0d9', 'uniqueId': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f:log:75', 'hash': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.3071829693401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6abee50be7cc7cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:27.000Z'}}, {'blockNum': '0x81f0d9', 'uniqueId': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f:log:79', 'hash': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 487.3071829693401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6abee50be7cc7cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:27.000Z'}}, {'blockNum': '0x81f0dd', 'uniqueId': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f:log:234', 'hash': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f', 'from': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 242.72416135686487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d287972bf1086c307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:22.000Z'}}, {'blockNum': '0x81f0dd', 'uniqueId': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f:log:238', 'hash': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 242.72416135686487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d287972bf1086c307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:22.000Z'}}, {'blockNum': '0x81f0e0', 'uniqueId': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f:log:38', 'hash': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 390.7022173109214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152e151c9d7ef212b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:47.000Z'}}, {'blockNum': '0x81f0e0', 'uniqueId': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f:log:42', 'hash': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 390.7022173109214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152e151c9d7ef212b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:47.000Z'}}, {'blockNum': '0x81f0e2', 'uniqueId': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa:log:47', 'hash': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa', 'from': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.2613156346276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27e9ada5b0a7bd098e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:00.000Z'}}, {'blockNum': '0x81f0e2', 'uniqueId': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa:log:51', 'hash': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.2613156346276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27e9ada5b0a7bd098e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:00.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445:log:33', 'hash': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445', 'from': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4349.390875443627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xebc7ec7527cea6f414', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445:log:37', 'hash': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4349.390875443627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xebc7ec7527cea6f414', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507:log:54', 'hash': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1219.287340947652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x421902d087db647655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507:log:58', 'hash': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'value': 1219.287340947652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x421902d087db647655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba:log:102', 'hash': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1046.5632184542094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38bbfb764128b0fbaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba:log:106', 'hash': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1046.5632184542094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38bbfb764128b0fbaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:158', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0x41f57a9c25d6f9607b85fac6fe778c265d8575f6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:161', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:162', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0f5', 'uniqueId': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b:log:113', 'hash': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14.145635756547637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc44f64c617160344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:07:51.000Z'}}, {'blockNum': '0x81f0f5', 'uniqueId': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b:log:117', 'hash': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 14.145635756547637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc44f64c617160344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:07:51.000Z'}}, {'blockNum': '0x81f0fb', 'uniqueId': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e:log:50', 'hash': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1930.7827775313965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68aafe627070f3da53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:08:30.000Z'}}, {'blockNum': '0x81f0fb', 'uniqueId': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e:log:55', 'hash': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 1930.7827775313965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68aafe627070f3da53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:08:30.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3:log:33', 'hash': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1480.0618854219433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x503bfc1b1659d4a336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3:log:37', 'hash': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1480.0618854219433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x503bfc1b1659d4a336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e:log:49', 'hash': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.85885346195505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7266d26fc92e2feb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e:log:53', 'hash': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 487.85885346195505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7266d26fc92e2feb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88:log:65', 'hash': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 253.6456807507306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc00a7ac5376f1b1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88:log:69', 'hash': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.6456807507306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc00a7ac5376f1b1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f10b', 'uniqueId': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf:log:166', 'hash': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 531.0166204283288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cc95602d53af93a59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:11:19.000Z'}}, {'blockNum': '0x81f10b', 'uniqueId': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf:log:170', 'hash': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 531.0166204283288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cc95602d53af93a59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:11:19.000Z'}}, {'blockNum': '0x81f117', 'uniqueId': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c:log:136', 'hash': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c', 'from': '0x466611822da9e4f52d6ddd7af277b58d8195d5f9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1f0a87470e840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:21.000Z'}}, {'blockNum': '0x81f117', 'uniqueId': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c:log:139', 'hash': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1f0a87470e840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:21.000Z'}}, {'blockNum': '0x81f11a', 'uniqueId': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f:log:35', 'hash': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:37.000Z'}}, {'blockNum': '0x81f11a', 'uniqueId': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f:log:38', 'hash': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:37.000Z'}}, {'blockNum': '0x81f11d', 'uniqueId': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0:log:80', 'hash': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.675411405449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a997d3ef6a8710070', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:14:23.000Z'}}, {'blockNum': '0x81f11d', 'uniqueId': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0:log:84', 'hash': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.675411405449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a997d3ef6a8710070', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:14:23.000Z'}}, {'blockNum': '0x81f11f', 'uniqueId': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59:log:91', 'hash': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 355.44611119427555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1344ce42e5a0ca8eef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:15:02.000Z'}}, {'blockNum': '0x81f11f', 'uniqueId': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59:log:95', 'hash': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 355.44611119427555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1344ce42e5a0ca8eef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:15:02.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba:log:13', 'hash': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 942.8684335334889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331ced94c4849d155a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba:log:17', 'hash': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 942.8684335334889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331ced94c4849d155a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1:log:28', 'hash': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 688.432827209895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2551ecb8dfbbaa1d1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1:log:32', 'hash': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 688.432827209895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2551ecb8dfbbaa1d1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13c', 'uniqueId': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05:log:98', 'hash': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1128.6318335956482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d2ee9c0e852644be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:37.000Z'}}, {'blockNum': '0x81f13c', 'uniqueId': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05:log:102', 'hash': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1128.6318335956482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d2ee9c0e852644be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:37.000Z'}}, {'blockNum': '0x81f13d', 'uniqueId': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4:log:48', 'hash': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 703.2884980511309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262016aacb9ba7b8f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:48.000Z'}}, {'blockNum': '0x81f13d', 'uniqueId': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4:log:52', 'hash': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 703.2884980511309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262016aacb9ba7b8f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:48.000Z'}}, {'blockNum': '0x81f148', 'uniqueId': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a:log:70', 'hash': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.56843490547163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12add8fdf1d8f187cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:24:06.000Z'}}, {'blockNum': '0x81f148', 'uniqueId': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a:log:74', 'hash': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 344.56843490547163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12add8fdf1d8f187cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:24:06.000Z'}}, {'blockNum': '0x81f154', 'uniqueId': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076:log:58', 'hash': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 152.8234229759484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0848d9dd80e0ac9c9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:27:15.000Z'}}, {'blockNum': '0x81f154', 'uniqueId': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076:log:63', 'hash': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'value': 152.8234229759484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0848d9dd80e0ac9c9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:27:15.000Z'}}, {'blockNum': '0x81f187', 'uniqueId': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447:log:47', 'hash': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.877216763220558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43af5ace385780b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:37:34.000Z'}}, {'blockNum': '0x81f187', 'uniqueId': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447:log:51', 'hash': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 4.877216763220558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43af5ace385780b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:37:34.000Z'}}, {'blockNum': '0x81f18f', 'uniqueId': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4:log:69', 'hash': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 987.8334598444121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x358cf171f66748cdea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:38:57.000Z'}}, {'blockNum': '0x81f18f', 'uniqueId': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4:log:73', 'hash': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 987.8334598444121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x358cf171f66748cdea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:38:57.000Z'}}, {'blockNum': '0x81f197', 'uniqueId': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6:log:24', 'hash': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 509.9673240823878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba537e3548b3b4c06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:40:11.000Z'}}, {'blockNum': '0x81f197', 'uniqueId': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6:log:28', 'hash': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 509.9673240823878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba537e3548b3b4c06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:40:11.000Z'}}, {'blockNum': '0x81f19d', 'uniqueId': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863:log:82', 'hash': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.326818890226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356a28114ba1939344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:41:36.000Z'}}, {'blockNum': '0x81f19d', 'uniqueId': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863:log:86', 'hash': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 985.326818890226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356a28114ba1939344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:41:36.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:107', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:110', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:111', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2:log:28', 'hash': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.880647972545573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bb8b78e54f3056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2:log:32', 'hash': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 4.880647972545573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bb8b78e54f3056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739:log:56', 'hash': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1342.5746007406688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48c7f7261bc974bf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739:log:60', 'hash': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1342.5746007406688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48c7f7261bc974bf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a8', 'uniqueId': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720:log:233', 'hash': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 118.63782262552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x066e6e371b9818af10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:09.000Z'}}, {'blockNum': '0x81f1a8', 'uniqueId': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720:log:235', 'hash': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x10b4a87cc41ab72ec0955786c7645e32dcf56049', 'value': 118.63782262552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x066e6e371b9818af10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:09.000Z'}}, {'blockNum': '0x81f1ac', 'uniqueId': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989:log:74', 'hash': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1361.4636767680593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ce1aa0ad4569bda2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:43.000Z'}}, {'blockNum': '0x81f1ac', 'uniqueId': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989:log:79', 'hash': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1361.4636767680593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ce1aa0ad4569bda2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:43.000Z'}}, {'blockNum': '0x81f1ba', 'uniqueId': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0:log:37', 'hash': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 976.2382344746645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ec06edec40e108fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:47:46.000Z'}}, {'blockNum': '0x81f1ba', 'uniqueId': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0:log:40', 'hash': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xefd0199657b444856e3259ed8e3c39ee43cf51dc', 'value': 976.2382344746645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ec06edec40e108fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:47:46.000Z'}}, {'blockNum': '0x81f1bc', 'uniqueId': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb:log:131', 'hash': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 116.16406189296919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064c19a6d3fceb4bf8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:48:13.000Z'}}, {'blockNum': '0x81f1bc', 'uniqueId': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb:log:135', 'hash': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 116.16406189296919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064c19a6d3fceb4bf8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:48:13.000Z'}}, {'blockNum': '0x81f1c2', 'uniqueId': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007:log:181', 'hash': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.4517991923932345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22068a601330385d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:08.000Z'}}, {'blockNum': '0x81f1c2', 'uniqueId': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007:log:185', 'hash': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.4517991923932345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22068a601330385d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:08.000Z'}}, {'blockNum': '0x81f1c3', 'uniqueId': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47:log:12', 'hash': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5020.100912229649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011023e52e09ceac07c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:11.000Z'}}, {'blockNum': '0x81f1c3', 'uniqueId': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47:log:15', 'hash': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3463a5a0ac21b0729fba76d3bc1123180f3d99fd', 'value': 5020.100912229649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011023e52e09ceac07c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:11.000Z'}}, {'blockNum': '0x81f1d4', 'uniqueId': '0x84f2346ce460d0315db083d287aeb684bc095ab3b10530d897a5498f603602e3:log:26', 'hash': '0x84f2346ce460d0315db083d287aeb684bc095ab3b10530d897a5498f603602e3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x10b4a87cc41ab72ec0955786c7645e32dcf56049', 'value': 128.868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fc671b3a630a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:54:44.000Z'}}, {'blockNum': '0x81f1de', 'uniqueId': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894:log:46', 'hash': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 61.945372904046465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035baa2c74a0cc0382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:37.000Z'}}, {'blockNum': '0x81f1de', 'uniqueId': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894:log:50', 'hash': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 61.945372904046465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035baa2c74a0cc0382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:37.000Z'}}, {'blockNum': '0x81f1e1', 'uniqueId': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6:log:14', 'hash': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.0439572089029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a593703e905d13e68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:54.000Z'}}, {'blockNum': '0x81f1e1', 'uniqueId': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6:log:18', 'hash': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.0439572089029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a593703e905d13e68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:54.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:26', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:29', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:32', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1f3', 'uniqueId': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95:log:19', 'hash': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 816.4955360909327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4326dc18902d0d98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:00:55.000Z'}}, {'blockNum': '0x81f1f3', 'uniqueId': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95:log:23', 'hash': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 816.4955360909327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4326dc18902d0d98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:00:55.000Z'}}, {'blockNum': '0x81f1f7', 'uniqueId': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d:log:27', 'hash': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:01:57.000Z'}}, {'blockNum': '0x81f1f7', 'uniqueId': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d:log:30', 'hash': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:01:57.000Z'}}, {'blockNum': '0x81f204', 'uniqueId': '0xf6d3b125652e5b241cbe243488dfb4bd5a4bb470c08a2990946af57f9125b48e:log:39', 'hash': '0xf6d3b125652e5b241cbe243488dfb4bd5a4bb470c08a2990946af57f9125b48e', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:07.000Z'}}, {'blockNum': '0x81f205', 'uniqueId': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d:log:96', 'hash': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 75.2971955012658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0414f5605de416ea71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:22.000Z'}}, {'blockNum': '0x81f205', 'uniqueId': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d:log:98', 'hash': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75.2971955012658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0414f5605de416ea71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:22.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c:log:97', 'hash': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 271.97293189713076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebe61f49609fc0c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c:log:101', 'hash': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 271.97293189713076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebe61f49609fc0c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04:log:132', 'hash': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 990.5276956815171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35b2554b2e830e1fba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04:log:136', 'hash': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 990.5276956815171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35b2554b2e830e1fba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f210', 'uniqueId': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c:log:69', 'hash': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 566.1109121429901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb05dfb35bb4af0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:31.000Z'}}, {'blockNum': '0x81f210', 'uniqueId': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c:log:71', 'hash': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 566.1109121429901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb05dfb35bb4af0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:31.000Z'}}, {'blockNum': '0x81f218', 'uniqueId': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443:log:84', 'hash': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1229.2253301640137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a2eda511ba4c1544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:39.000Z'}}, {'blockNum': '0x81f218', 'uniqueId': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443:log:88', 'hash': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1229.2253301640137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a2eda511ba4c1544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:39.000Z'}}, {'blockNum': '0x81f219', 'uniqueId': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e:log:20', 'hash': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.82274148083843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a71e686c7fa969b2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:50.000Z'}}, {'blockNum': '0x81f219', 'uniqueId': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e:log:24', 'hash': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 487.82274148083843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a71e686c7fa969b2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:50.000Z'}}, {'blockNum': '0x81f21a', 'uniqueId': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5:log:122', 'hash': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 161.48452121209996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08c10c4475f3403197', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:55.000Z'}}, {'blockNum': '0x81f21a', 'uniqueId': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5:log:126', 'hash': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 161.48452121209996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08c10c4475f3403197', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:55.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76:log:47', 'hash': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.89995675937547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a72f8d9aafb052a30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76:log:51', 'hash': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 487.89995675937547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a72f8d9aafb052a30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb:log:64', 'hash': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 478.11179368745275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19eb224f36c178d921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb:log:68', 'hash': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 478.11179368745275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19eb224f36c178d921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f224', 'uniqueId': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f:log:92', 'hash': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f', 'from': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20.867390302783864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012197dceb92dd003a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:12:31.000Z'}}, {'blockNum': '0x81f224', 'uniqueId': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f:log:96', 'hash': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 20.867390302783864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012197dceb92dd003a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:12:31.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208:log:78', 'hash': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 575.6475820031172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f34b709eb945924b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208:log:82', 'hash': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 575.6475820031172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f34b709eb945924b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315:log:92', 'hash': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 861.3287559960906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb156741028178b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315:log:96', 'hash': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 861.3287559960906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb156741028178b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22c', 'uniqueId': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231:log:139', 'hash': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 211.8323298273057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7bc39da463f09012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:31.000Z'}}, {'blockNum': '0x81f22c', 'uniqueId': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231:log:143', 'hash': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 211.8323298273057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7bc39da463f09012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:31.000Z'}}, {'blockNum': '0x81f230', 'uniqueId': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4:log:52', 'hash': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1224.0318038641803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425ada886a81154ae8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:58.000Z'}}, {'blockNum': '0x81f230', 'uniqueId': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4:log:56', 'hash': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1224.0318038641803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425ada886a81154ae8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:58.000Z'}}, {'blockNum': '0x81f235', 'uniqueId': '0x7f62712d37afeb4984c983a309ff184e64f1f0d06490088d85a7bffde3e535ce:log:1', 'hash': '0x7f62712d37afeb4984c983a309ff184e64f1f0d06490088d85a7bffde3e535ce', 'from': '0x2b704992676068e24ebccebe29e22a7883c9593a', 'to': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:15:47.000Z'}}, {'blockNum': '0x81f23e', 'uniqueId': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4:log:66', 'hash': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 268.37603821456327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8c7738d6c5b44069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:16:56.000Z'}}, {'blockNum': '0x81f23e', 'uniqueId': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4:log:69', 'hash': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc74a40e0de05127ec0686b95fe38014e5685b1b1', 'value': 268.37603821456327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8c7738d6c5b44069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:16:56.000Z'}}, {'blockNum': '0x81f23f', 'uniqueId': '0x1394afa16b4a3b05abc0db04e4be244c6236e71322c8341ee0b0285cb13b39ff:log:3', 'hash': '0x1394afa16b4a3b05abc0db04e4be244c6236e71322c8341ee0b0285cb13b39ff', 'from': '0x2b704992676068e24ebccebe29e22a7883c9593a', 'to': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'value': 1999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c5db2a4d815dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:17:06.000Z'}}, {'blockNum': '0x81f24c', 'uniqueId': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23:log:98', 'hash': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 390.34835325302976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15292bef2121887129', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:20:52.000Z'}}, {'blockNum': '0x81f24c', 'uniqueId': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23:log:102', 'hash': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 390.34835325302976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15292bef2121887129', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:20:52.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e:log:22', 'hash': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e', 'from': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e:log:25', 'hash': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0:log:31', 'hash': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 549.8681260388602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dcef4034e5ffba13c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0:log:35', 'hash': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 549.8681260388602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dcef4034e5ffba13c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab:log:42', 'hash': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab', 'from': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab:log:45', 'hash': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4:log:99', 'hash': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 542.4504528360167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d680324d4248ebc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4:log:103', 'hash': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 542.4504528360167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d680324d4248ebc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576:log:114', 'hash': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.58452613327336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9d3ca232bbc54698', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576:log:119', 'hash': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 269.58452613327336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9d3ca232bbc54698', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49:log:122', 'hash': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 688.5844548632133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255407696bd9d3509f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49:log:126', 'hash': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 688.5844548632133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255407696bd9d3509f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a:log:135', 'hash': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1081.4817629555005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3aa0930d78d9cfb931', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a:log:139', 'hash': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1081.4817629555005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3aa0930d78d9cfb931', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297:log:151', 'hash': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2439.6995664846004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8441a205a2ad18f061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297:log:155', 'hash': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 2439.6995664846004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8441a205a2ad18f061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac:log:166', 'hash': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 682.976584518309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x250634410deb5bc615', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac:log:170', 'hash': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 682.976584518309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x250634410deb5bc615', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1:log:181', 'hash': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 459.06940390350013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18e2de2698a672ad69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1:log:185', 'hash': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 459.06940390350013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18e2de2698a672ad69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f274', 'uniqueId': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb:log:81', 'hash': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 483.50053526928554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a35eaf721bcfd5e5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:58.000Z'}}, {'blockNum': '0x81f274', 'uniqueId': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb:log:83', 'hash': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 483.50053526928554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a35eaf721bcfd5e5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:58.000Z'}}, {'blockNum': '0x81f275', 'uniqueId': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba:log:48', 'hash': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 706.8564516822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26519a95b813baaa01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:32:07.000Z'}}, {'blockNum': '0x81f275', 'uniqueId': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba:log:52', 'hash': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 706.8564516822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26519a95b813baaa01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:32:07.000Z'}}, {'blockNum': '0x81f27d', 'uniqueId': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6:log:149', 'hash': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 111.85346063345409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06104751d2332ba4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:34:06.000Z'}}, {'blockNum': '0x81f27d', 'uniqueId': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6:log:154', 'hash': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 111.85346063345409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06104751d2332ba4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:34:06.000Z'}}, {'blockNum': '0x81f28b', 'uniqueId': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231:log:19', 'hash': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 44.1367901834085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02648560d33803040a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:37:36.000Z'}}, {'blockNum': '0x81f28b', 'uniqueId': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231:log:24', 'hash': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 44.1367901834085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02648560d33803040a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:37:36.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:144', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:147', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:150', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f2a3', 'uniqueId': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c:log:15', 'hash': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 141.49647622419326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07aba87772088b9330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:42:49.000Z'}}, {'blockNum': '0x81f2a3', 'uniqueId': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c:log:19', 'hash': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'value': 141.49647622419326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07aba87772088b9330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:42:49.000Z'}}, {'blockNum': '0x81f2a4', 'uniqueId': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a:log:119', 'hash': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.00010000000000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:43:00.000Z'}}, {'blockNum': '0x81f2a4', 'uniqueId': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a:log:122', 'hash': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x272ffb35833185a81660f4d62496d89bc38c7978', 'value': 0.00010000000000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:43:00.000Z'}}, {'blockNum': '0x81f2b3', 'uniqueId': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e:log:118', 'hash': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 186.20457652725605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a181b8bcc2322ae03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:46:22.000Z'}}, {'blockNum': '0x81f2b3', 'uniqueId': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e:log:122', 'hash': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 186.20457652725605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a181b8bcc2322ae03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:46:22.000Z'}}, {'blockNum': '0x81f2da', 'uniqueId': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00:log:109', 'hash': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 60.44406420924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d47426e5390d02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:55:18.000Z'}}, {'blockNum': '0x81f2da', 'uniqueId': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00:log:113', 'hash': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 60.44406420924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d47426e5390d02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:55:18.000Z'}}, {'blockNum': '0x81f2e5', 'uniqueId': '0xee07f84c0daa222001da9ddd14acc66ade83cc72d65592efb96c36e3a3bd3126:log:5', 'hash': '0xee07f84c0daa222001da9ddd14acc66ade83cc72d65592efb96c36e3a3bd3126', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 25366.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055f1e32d862ecea1000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:57:00.000Z'}}, {'blockNum': '0x81f2e8', 'uniqueId': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f:log:41', 'hash': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1898.3219062922733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x66e8823408455132bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:58:05.000Z'}}, {'blockNum': '0x81f2e8', 'uniqueId': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f:log:45', 'hash': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1898.3219062922733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x66e8823408455132bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:58:05.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xdf7e6566266f945122383ecdae27fbc56353a3e9480f6e52af90a43a4a087d5f:log:13', 'hash': '0xdf7e6566266f945122383ecdae27fbc56353a3e9480f6e52af90a43a4a087d5f', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 1423.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d290be23b3dac8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee:log:40', 'hash': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 319.9893279013035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1158be7659a12fed1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee:log:44', 'hash': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 319.9893279013035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1158be7659a12fed1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2fa', 'uniqueId': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d:log:99', 'hash': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.0000000000000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80113', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:01:35.000Z'}}, {'blockNum': '0x81f2fa', 'uniqueId': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d:log:102', 'hash': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x301166fae420d41984c00ac498a41eab26109cc5', 'value': 2.0000000000000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80113', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:01:35.000Z'}}, {'blockNum': '0x81f2fe', 'uniqueId': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2:log:47', 'hash': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.440113917888392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21dd06ae17396b70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:02:55.000Z'}}, {'blockNum': '0x81f2fe', 'uniqueId': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2:log:51', 'hash': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x71168843b49e305e4d53de158683903ef261b37f', 'value': 2.440113917888392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21dd06ae17396b70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:02:55.000Z'}}, {'blockNum': '0x81f306', 'uniqueId': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e:log:64', 'hash': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 361.1282849311923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1393a965ce25c45a52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:03:49.000Z'}}, {'blockNum': '0x81f306', 'uniqueId': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e:log:68', 'hash': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 361.1282849311923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1393a965ce25c45a52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:03:49.000Z'}}, {'blockNum': '0x81f310', 'uniqueId': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9:log:112', 'hash': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 136.4742868381317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0765f610ceb99b9d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:07.000Z'}}, {'blockNum': '0x81f310', 'uniqueId': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9:log:116', 'hash': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 136.4742868381317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0765f610ceb99b9d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:07.000Z'}}, {'blockNum': '0x81f312', 'uniqueId': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a:log:35', 'hash': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a', 'from': '0x301166fae420d41984c00ac498a41eab26109cc5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0979916524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3cd99727a56c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:55.000Z'}}, {'blockNum': '0x81f312', 'uniqueId': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a:log:38', 'hash': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1.0979916524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3cd99727a56c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:55.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7:log:65', 'hash': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 599.6613064995004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2081f8ed1e995c5cad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7:log:69', 'hash': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 599.6613064995004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2081f8ed1e995c5cad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107:log:145', 'hash': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 366.02620845485677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13d7a2514cbad1c99a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107:log:149', 'hash': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 366.02620845485677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13d7a2514cbad1c99a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f322', 'uniqueId': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32:log:134', 'hash': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 869.0174689357245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1c0a3fbec2ea44e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:13.000Z'}}, {'blockNum': '0x81f322', 'uniqueId': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32:log:139', 'hash': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 869.0174689357245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1c0a3fbec2ea44e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:13.000Z'}}, {'blockNum': '0x81f323', 'uniqueId': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1:log:119', 'hash': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 439.2083518030066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cf3d84f07301e826', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:15.000Z'}}, {'blockNum': '0x81f323', 'uniqueId': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1:log:123', 'hash': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 439.2083518030066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cf3d84f07301e826', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:15.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569:log:15', 'hash': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 341.589076710707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1284802f73af596a82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569:log:19', 'hash': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 341.589076710707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1284802f73af596a82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999:log:80', 'hash': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 128.82964806577158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbdeda58dae7a110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999:log:84', 'hash': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 128.82964806577158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbdeda58dae7a110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f333', 'uniqueId': '0x80997379c774f20fb0f2aa6f7ca7cce18455ef3325933d81ddf66805b72da1a8:log:11', 'hash': '0x80997379c774f20fb0f2aa6f7ca7cce18455ef3325933d81ddf66805b72da1a8', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:13:57.000Z'}}, {'blockNum': '0x81f334', 'uniqueId': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772:log:137', 'hash': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15.36668497813966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5416e9249587c4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:14:03.000Z'}}, {'blockNum': '0x81f334', 'uniqueId': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772:log:141', 'hash': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 15.36668497813966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5416e9249587c4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:14:03.000Z'}}, {'blockNum': '0x81f338', 'uniqueId': '0x85bdb1364f050b191ab7b92e4660be42128ef958d8ea337e039cedf6fd7dddbf:log:8', 'hash': '0x85bdb1364f050b191ab7b92e4660be42128ef958d8ea337e039cedf6fd7dddbf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:01.000Z'}}, {'blockNum': '0x81f339', 'uniqueId': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822:log:180', 'hash': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822', 'from': '0xb018af916ed0116404537d1238b18988d652733a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 317.5369837117481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1136b5fc4d83bf3369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:10.000Z'}}, {'blockNum': '0x81f339', 'uniqueId': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822:log:182', 'hash': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 317.5369837117481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1136b5fc4d83bf3369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:10.000Z'}}, {'blockNum': '0x81f343', 'uniqueId': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063:log:127', 'hash': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 127.03170886237224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e2eb4a2ae089e739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:18:18.000Z'}}, {'blockNum': '0x81f343', 'uniqueId': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063:log:131', 'hash': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 127.03170886237224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e2eb4a2ae089e739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:18:18.000Z'}}, {'blockNum': '0x81f34d', 'uniqueId': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632:log:78', 'hash': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.00129748929822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069d1badad0a606328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:33.000Z'}}, {'blockNum': '0x81f34d', 'uniqueId': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632:log:82', 'hash': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 122.00129748929822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069d1badad0a606328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:33.000Z'}}, {'blockNum': '0x81f34f', 'uniqueId': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632:log:53', 'hash': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3.0875881404807153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad9510e160fd942', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:55.000Z'}}, {'blockNum': '0x81f34f', 'uniqueId': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632:log:57', 'hash': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 3.0875881404807153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad9510e160fd942', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:55.000Z'}}, {'blockNum': '0x81f358', 'uniqueId': '0xf128d9f1f844a6cfb37be8bf963ac5480662c39550b6fd74aedb67f3292500bf:log:27', 'hash': '0xf128d9f1f844a6cfb37be8bf963ac5480662c39550b6fd74aedb67f3292500bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:23:00.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:85', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 107.47015159148717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d372ad789ff95649', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:90', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 107.47015159148717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d372ad789ff95649', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:102', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 105.970903149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05bea446f4ed0335ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:106', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 105.970903149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05bea446f4ed0335ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35e', 'uniqueId': '0xc5ce0aeadf73b25501367a01fe742fc62fd9fb1306f1c37b6ae5c4587b7667c8:log:6', 'hash': '0xc5ce0aeadf73b25501367a01fe742fc62fd9fb1306f1c37b6ae5c4587b7667c8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:47.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:34', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:37', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:40', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f367', 'uniqueId': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe:log:71', 'hash': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 144.53805616284816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d5de5448e006669b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:26:32.000Z'}}, {'blockNum': '0x81f367', 'uniqueId': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe:log:75', 'hash': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 144.53805616284816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d5de5448e006669b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:26:32.000Z'}}, {'blockNum': '0x81f36d', 'uniqueId': '0xc23ed0468e51280a2db9aaf72516912e9dd2077e6ba53b83067ba6f2147e6d43:log:0', 'hash': '0xc23ed0468e51280a2db9aaf72516912e9dd2077e6ba53b83067ba6f2147e6d43', 'from': '0xee1f918d9eae66add53254537660463363017946', 'to': '0xcba3dc8fd14ebd75c75323f710ac4928a9b6a6ba', 'value': 1794.586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6148e23ae039290000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:27:35.000Z'}}, {'blockNum': '0x81f378', 'uniqueId': '0x41680de72501be1b9f8aa0909d5edcf56d21a91a932c88df9ce6c4f98d186a6f:log:6', 'hash': '0x41680de72501be1b9f8aa0909d5edcf56d21a91a932c88df9ce6c4f98d186a6f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 9997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021df03ea59fbc140000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:29:56.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:35', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:38', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:39', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x6d264223a2910937b4d4fa49b2d3f4672a383e4bc271e85aec08bc70510bb517:log:48', 'hash': '0x6d264223a2910937b4d4fa49b2d3f4672a383e4bc271e85aec08bc70510bb517', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x301166fae420d41984c00ac498a41eab26109cc5', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc:log:57', 'hash': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 887.0395829427927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x301625a8f307ce7ab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc:log:61', 'hash': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 887.0395829427927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x301625a8f307ce7ab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2:log:74', 'hash': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.4788820582137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356c444df0e8e691b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2:log:78', 'hash': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 985.4788820582137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356c444df0e8e691b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a:log:89', 'hash': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.69182459920387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab578fc146e9cd9d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a:log:93', 'hash': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 492.69182459920387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab578fc146e9cd9d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f38a', 'uniqueId': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4:log:30', 'hash': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 689.7152346744799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2563b8bfab238ee53e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:48.000Z'}}, {'blockNum': '0x81f38a', 'uniqueId': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4:log:34', 'hash': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 689.7152346744799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2563b8bfab238ee53e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:48.000Z'}}, {'blockNum': '0x81f38c', 'uniqueId': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544:log:30', 'hash': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 541.8754801936001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d60086e41b9c0e5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:09.000Z'}}, {'blockNum': '0x81f38c', 'uniqueId': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544:log:34', 'hash': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 541.8754801936001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d60086e41b9c0e5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:09.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:50', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.28011438964336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e99032554873f474c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:53', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 269.28011438964336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e99032554873f474c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:54', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 269.37984611374947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9a6576ce0b6db1b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:132', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0x301166fae420d41984c00ac498a41eab26109cc5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:135', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:137', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f394', 'uniqueId': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2:log:35', 'hash': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.79772213045663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b107957605b64834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:09.000Z'}}, {'blockNum': '0x81f394', 'uniqueId': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2:log:39', 'hash': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 344.79772213045663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b107957605b64834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:09.000Z'}}, {'blockNum': '0x81f395', 'uniqueId': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508:log:94', 'hash': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1039.916504918531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x385fbd978276cb885d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:24.000Z'}}, {'blockNum': '0x81f395', 'uniqueId': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508:log:97', 'hash': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1039.916504918531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x385fbd978276cb885d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:24.000Z'}}, {'blockNum': '0x81f398', 'uniqueId': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff:log:78', 'hash': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.9652902889001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20094a78730f7d1cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:34.000Z'}}, {'blockNum': '0x81f398', 'uniqueId': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff:log:82', 'hash': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 590.9652902889001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20094a78730f7d1cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:34.000Z'}}, {'blockNum': '0x81f399', 'uniqueId': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c:log:22', 'hash': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c', 'from': '0x8bd7448162c296a5bb3f0b9ccdee383f5b899c93', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 124.43427656318754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06bedf5b40cf8210c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:52.000Z'}}, {'blockNum': '0x81f399', 'uniqueId': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c:log:26', 'hash': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 124.43427656318754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06bedf5b40cf8210c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:52.000Z'}}, {'blockNum': '0x81f39c', 'uniqueId': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405:log:64', 'hash': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:36:42.000Z'}}, {'blockNum': '0x81f39c', 'uniqueId': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405:log:67', 'hash': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:36:42.000Z'}}, {'blockNum': '0x81f3a2', 'uniqueId': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e:log:12', 'hash': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 246.22606720374804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5912b78f68dcc9c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:01.000Z'}}, {'blockNum': '0x81f3a2', 'uniqueId': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e:log:16', 'hash': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 246.22606720374804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5912b78f68dcc9c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:01.000Z'}}, {'blockNum': '0x81f3a6', 'uniqueId': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8:log:83', 'hash': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.42835468028454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab1d0f395a06c0b20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:30.000Z'}}, {'blockNum': '0x81f3a6', 'uniqueId': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8:log:87', 'hash': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 492.42835468028454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab1d0f395a06c0b20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:30.000Z'}}, {'blockNum': '0x81f3ae', 'uniqueId': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f:log:42', 'hash': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.883380505149718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b481b80d6144083', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:39:29.000Z'}}, {'blockNum': '0x81f3ae', 'uniqueId': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f:log:44', 'hash': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5b14706689e0427e4d19a46a4a5237cd19241641', 'value': 8.883380505149718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b481b80d6144083', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:39:29.000Z'}}, {'blockNum': '0x81f3b3', 'uniqueId': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887:log:68', 'hash': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 369.22627657812876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14040b3e4d9b7ed9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:40:27.000Z'}}, {'blockNum': '0x81f3b3', 'uniqueId': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887:log:72', 'hash': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 369.22627657812876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14040b3e4d9b7ed9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:40:27.000Z'}}, {'blockNum': '0x81f3bd', 'uniqueId': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145:log:107', 'hash': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.8436554865756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20079a563dbe9e25b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:42:29.000Z'}}, {'blockNum': '0x81f3bd', 'uniqueId': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145:log:111', 'hash': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 590.8436554865756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20079a563dbe9e25b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:42:29.000Z'}}, {'blockNum': '0x81f3d4', 'uniqueId': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e:log:15', 'hash': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.4116572309812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6c320fd57d1659db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:48:20.000Z'}}, {'blockNum': '0x81f3d4', 'uniqueId': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e:log:19', 'hash': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 487.4116572309812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6c320fd57d1659db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:48:20.000Z'}}, {'blockNum': '0x81f3e7', 'uniqueId': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32:log:122', 'hash': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 113.23260541314032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06236b06b0f233dd6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:52:22.000Z'}}, {'blockNum': '0x81f3e7', 'uniqueId': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32:log:126', 'hash': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 113.23260541314032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06236b06b0f233dd6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:52:22.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0x58ce18289851392d658e6bed29549dd17e089cb1cccfc1095b47d04804b9f92f:log:14', 'hash': '0x58ce18289851392d658e6bed29549dd17e089cb1cccfc1095b47d04804b9f92f', 'from': '0x6d1ceb4fd5595c9773eb7fc79b0c090a380514da', 'to': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'value': 89264.78831687754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e70dca7d1504ec2983', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1:log:73', 'hash': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 290.4585832104908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbeec2e83b08b5b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1:log:77', 'hash': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 290.4585832104908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbeec2e83b08b5b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c:log:88', 'hash': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.27749309438786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aafb8fbc57accf4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c:log:92', 'hash': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'value': 492.27749309438786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aafb8fbc57accf4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b:log:103', 'hash': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 290.42886010827664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbe829582ab724997', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b:log:107', 'hash': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 290.42886010827664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbe829582ab724997', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e:log:92', 'hash': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 438.08368774012445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17bfa1e8eecb4448bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e:log:96', 'hash': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 438.08368774012445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17bfa1e8eecb4448bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27:log:107', 'hash': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5825.603774423163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013bce7e37775b7b5565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27:log:111', 'hash': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 5825.603774423163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013bce7e37775b7b5565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733:log:122', 'hash': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.82421397614905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa96e9cd0a01281fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733:log:126', 'hash': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 491.82421397614905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa96e9cd0a01281fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f408', 'uniqueId': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb:log:52', 'hash': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 447.17798547238726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183dd75889606f176d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:07.000Z'}}, {'blockNum': '0x81f408', 'uniqueId': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb:log:56', 'hash': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.17798547238726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183dd75889606f176d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:07.000Z'}}, {'blockNum': '0x81f40b', 'uniqueId': '0xc7e5dda0a0c453ff10ecaaa4738374efa697c557d6e056615b3480e6dd757406:log:1', 'hash': '0xc7e5dda0a0c453ff10ecaaa4738374efa697c557d6e056615b3480e6dd757406', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:28.000Z'}}, {'blockNum': '0x81f40f', 'uniqueId': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56:log:41', 'hash': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:00:16.000Z'}}, {'blockNum': '0x81f40f', 'uniqueId': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56:log:44', 'hash': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:00:16.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b:log:27', 'hash': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.91462453230577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54c04019c1a5520e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b:log:31', 'hash': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 245.91462453230577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54c04019c1a5520e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b:log:42', 'hash': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.906718928326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54a429fee4b2ab3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b:log:46', 'hash': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 245.906718928326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54a429fee4b2ab3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41e', 'uniqueId': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793:log:74', 'hash': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1229.0722768820142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a0cde3eb9101936d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:28.000Z'}}, {'blockNum': '0x81f41e', 'uniqueId': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793:log:78', 'hash': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1229.0722768820142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a0cde3eb9101936d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:28.000Z'}}, {'blockNum': '0x81f425', 'uniqueId': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e:log:39', 'hash': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.71071332064696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa7db6091f318ccd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:04:10.000Z'}}, {'blockNum': '0x81f425', 'uniqueId': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e:log:43', 'hash': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 491.71071332064696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa7db6091f318ccd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:04:10.000Z'}}, {'blockNum': '0x81f42b', 'uniqueId': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338:log:66', 'hash': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.0111374232855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffc0ca379371c99e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:05:37.000Z'}}, {'blockNum': '0x81f42b', 'uniqueId': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338:log:70', 'hash': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 590.0111374232855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffc0ca379371c99e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:05:37.000Z'}}, {'blockNum': '0x81f42d', 'uniqueId': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19:log:95', 'hash': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 424.13431368654807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16fe0bc72354cb68c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:06:22.000Z'}}, {'blockNum': '0x81f42d', 'uniqueId': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19:log:99', 'hash': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 424.13431368654807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16fe0bc72354cb68c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:06:22.000Z'}}, {'blockNum': '0x81f432', 'uniqueId': '0x36f0d05b0eaf6a5b9111dd72873fe53236da23e5c258b896fecd1e45697e72ef:log:11', 'hash': '0x36f0d05b0eaf6a5b9111dd72873fe53236da23e5c258b896fecd1e45697e72ef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 12531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a74e8f1beaa3ec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:07:54.000Z'}}, {'blockNum': '0x81f433', 'uniqueId': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8:log:64', 'hash': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.1712308030159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12a855d6eb02bdbc84', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:08:53.000Z'}}, {'blockNum': '0x81f433', 'uniqueId': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8:log:68', 'hash': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 344.1712308030159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12a855d6eb02bdbc84', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:08:53.000Z'}}, {'blockNum': '0x81f43c', 'uniqueId': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048:log:113', 'hash': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.646326538971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa6f6a12221117cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:24.000Z'}}, {'blockNum': '0x81f43c', 'uniqueId': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048:log:117', 'hash': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 491.646326538971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa6f6a12221117cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:24.000Z'}}, {'blockNum': '0x81f43d', 'uniqueId': '0xa4a577981c8485c05726ed5c4292dd1dee8207d28cbfc63f8efed724258edc82:log:43', 'hash': '0xa4a577981c8485c05726ed5c4292dd1dee8207d28cbfc63f8efed724258edc82', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:31.000Z'}}, {'blockNum': '0x81f447', 'uniqueId': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8:log:21', 'hash': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 380.7682171545839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a438741b09c623b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:12:13.000Z'}}, {'blockNum': '0x81f447', 'uniqueId': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8:log:25', 'hash': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 380.7682171545839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a438741b09c623b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:12:13.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:162', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:165', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:166', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f47b', 'uniqueId': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff:log:76', 'hash': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7370.567914810686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018f8f2d7393ee81a755', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:19.000Z'}}, {'blockNum': '0x81f47b', 'uniqueId': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff:log:79', 'hash': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 7370.567914810686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018f8f2d7393ee81a755', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:19.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1:log:93', 'hash': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 148.17229737617734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084dbf69c49829e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1:log:97', 'hash': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 148.17229737617734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084dbf69c49829e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3:log:138', 'hash': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 815.2557278547167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c31f22d12eaec88ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3:log:142', 'hash': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 815.2557278547167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c31f22d12eaec88ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992:log:153', 'hash': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6381.53047531673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159f1869c80c7621f38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992:log:157', 'hash': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 6381.53047531673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159f1869c80c7621f38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec:log:168', 'hash': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 283.3147131609771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5bc80e8de1b9acfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec:log:172', 'hash': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 283.3147131609771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5bc80e8de1b9acfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47f', 'uniqueId': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7:log:36', 'hash': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 909.702190682914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3150a76a9e09c15eca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:54.000Z'}}, {'blockNum': '0x81f47f', 'uniqueId': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7:log:40', 'hash': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 909.702190682914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3150a76a9e09c15eca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:54.000Z'}}, {'blockNum': '0x81f492', 'uniqueId': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a:log:19', 'hash': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.7506627791152107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262c5139560d089a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:25:39.000Z'}}, {'blockNum': '0x81f492', 'uniqueId': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a:log:23', 'hash': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2.7506627791152107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262c5139560d089a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:25:39.000Z'}}, {'blockNum': '0x81f4ac', 'uniqueId': '0x78572503f963ea8d0d2234fd8404398f15aed42366414a1f07d172b5d2e08771:log:71', 'hash': '0x78572503f963ea8d0d2234fd8404398f15aed42366414a1f07d172b5d2e08771', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:31:20.000Z'}}, {'blockNum': '0x81f4bd', 'uniqueId': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed:log:109', 'hash': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 754.0349395030894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e0563e6e02cdad27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:21.000Z'}}, {'blockNum': '0x81f4bd', 'uniqueId': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed:log:113', 'hash': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 754.0349395030894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e0563e6e02cdad27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:21.000Z'}}, {'blockNum': '0x81f4be', 'uniqueId': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b:log:25', 'hash': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1289.0819236305415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e19afbb177a848fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:27.000Z'}}, {'blockNum': '0x81f4be', 'uniqueId': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b:log:29', 'hash': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1289.0819236305415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e19afbb177a848fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:27.000Z'}}, {'blockNum': '0x81f4bf', 'uniqueId': '0x89d950fba2cb340bad210130a2e9fb6594102fc4b5fad911588c6223aee24401:log:119', 'hash': '0x89d950fba2cb340bad210130a2e9fb6594102fc4b5fad911588c6223aee24401', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xe2859334be46db836da81bda171830a23d408832', 'value': 82.36571786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04770dd0005b58e800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:32.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6:log:32', 'hash': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1472.144314534179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fce1b3e5060aaf06a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6:log:36', 'hash': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1472.144314534179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fce1b3e5060aaf06a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x51063e933e41ee5deac7b18c475888e964fbdab58ede2a00332076fb45ced5c3:log:44', 'hash': '0x51063e933e41ee5deac7b18c475888e964fbdab58ede2a00332076fb45ced5c3', 'from': '0x760f6df021517d001e43469eeaf2cd00c71f8f7a', 'to': '0x5ec72e3aa23d42effc2d88b950ee95b7a752a24d', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c8', 'uniqueId': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3:log:14', 'hash': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1430.3752649678686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d8a71c5090b0b4dbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:23.000Z'}}, {'blockNum': '0x81f4c8', 'uniqueId': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3:log:18', 'hash': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1430.3752649678686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d8a71c5090b0b4dbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:23.000Z'}}, {'blockNum': '0x81f4cc', 'uniqueId': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9:log:60', 'hash': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 678.9611820702938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ce7aadcd6b2ef988', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:06.000Z'}}, {'blockNum': '0x81f4cc', 'uniqueId': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9:log:64', 'hash': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 678.9611820702938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ce7aadcd6b2ef988', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:06.000Z'}}, {'blockNum': '0x81f4ce', 'uniqueId': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c:log:11', 'hash': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 587.4223733207979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd81f803cf70f0aad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:14.000Z'}}, {'blockNum': '0x81f4ce', 'uniqueId': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c:log:16', 'hash': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5a9f1cd844ce91aaadaa03059677eebcf3cf00df', 'value': 587.4223733207979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd81f803cf70f0aad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:14.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0x76b464329daddd27e1e6b4979325018f0ff15b79fb23c49e1cb04a80a8d9fade:log:0', 'hash': '0x76b464329daddd27e1e6b4979325018f0ff15b79fb23c49e1cb04a80a8d9fade', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1423.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d290be23b3dac8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95:log:45', 'hash': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.96210106406494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f574cd4d5ce1f38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95:log:49', 'hash': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 441.96210106406494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f574cd4d5ce1f38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e4', 'uniqueId': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20:log:89', 'hash': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0803205217825669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0efe11ca706a1fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:43:10.000Z'}}, {'blockNum': '0x81f4e4', 'uniqueId': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20:log:93', 'hash': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 1.0803205217825669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0efe11ca706a1fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:43:10.000Z'}}, {'blockNum': '0x81f4ef', 'uniqueId': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23:log:69', 'hash': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.14731642296911188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020b5f8194a7b546', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:45:22.000Z'}}, {'blockNum': '0x81f4ef', 'uniqueId': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23:log:73', 'hash': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 0.14731642296911188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020b5f8194a7b546', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:45:22.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:26', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:29', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:32', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f500', 'uniqueId': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce:log:23', 'hash': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.22844295411016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5bc670b7d305949b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:48:15.000Z'}}, {'blockNum': '0x81f500', 'uniqueId': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce:log:27', 'hash': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 486.22844295411016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5bc670b7d305949b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:48:15.000Z'}}, {'blockNum': '0x81f507', 'uniqueId': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959:log:77', 'hash': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1963.8206305196218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a757c6ab0a1b23012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:04.000Z'}}, {'blockNum': '0x81f507', 'uniqueId': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959:log:80', 'hash': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1963.8206305196218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a757c6ab0a1b23012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:04.000Z'}}, {'blockNum': '0x81f50b', 'uniqueId': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5:log:96', 'hash': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 196.33546144594243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa4b3adf489ccb1a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:47.000Z'}}, {'blockNum': '0x81f50b', 'uniqueId': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5:log:101', 'hash': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'value': 196.33546144594243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa4b3adf489ccb1a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:47.000Z'}}, {'blockNum': '0x81f50e', 'uniqueId': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827:log:52', 'hash': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.58820026019885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52e3d7614e662150', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:51:14.000Z'}}, {'blockNum': '0x81f50e', 'uniqueId': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827:log:56', 'hash': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.58820026019885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52e3d7614e662150', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:51:14.000Z'}}, {'blockNum': '0x81f514', 'uniqueId': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec:log:20', 'hash': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.84857574915895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5680e181fe159521', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:53:13.000Z'}}, {'blockNum': '0x81f514', 'uniqueId': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec:log:24', 'hash': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.84857574915895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5680e181fe159521', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:53:13.000Z'}}, {'blockNum': '0x81f518', 'uniqueId': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f:log:78', 'hash': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2714.7183943324785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x932a492c736e317e0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:21.000Z'}}, {'blockNum': '0x81f518', 'uniqueId': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f:log:82', 'hash': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2714.7183943324785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x932a492c736e317e0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:21.000Z'}}, {'blockNum': '0x81f519', 'uniqueId': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395:log:19', 'hash': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2209.169867385794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77c26401b42b0fca23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:25.000Z'}}, {'blockNum': '0x81f519', 'uniqueId': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395:log:23', 'hash': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2209.169867385794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77c26401b42b0fca23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:25.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd:log:53', 'hash': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 543.4505439031907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d75e42e5b0682fcc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd:log:57', 'hash': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 543.4505439031907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d75e42e5b0682fcc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745:log:69', 'hash': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1267.4310504039197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44b523a13471d8686e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745:log:73', 'hash': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1267.4310504039197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44b523a13471d8686e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f52a', 'uniqueId': '0x4de9245566b54b927813956594f6640228dafbe4c0b8bd5a73f5a1673f93f495:log:25', 'hash': '0x4de9245566b54b927813956594f6640228dafbe4c0b8bd5a73f5a1673f93f495', 'from': '0xfee4ae2adfc648afde92a4087fd7b7c6980149ba', 'to': '0xfa12612a0c2ef2e88861794422d379f1c92f70b4', 'value': 13503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dbffc4ce0a339c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:22.000Z'}}, {'blockNum': '0x81f52c', 'uniqueId': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362:log:95', 'hash': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362', 'from': '0x1229e2a0711660be162521f5626c68e85ec99c7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 95.48728243395634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052d26f975db5d42f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:45.000Z'}}, {'blockNum': '0x81f52c', 'uniqueId': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362:log:99', 'hash': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.48728243395634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052d26f975db5d42f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:45.000Z'}}, {'blockNum': '0x81f542', 'uniqueId': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b:log:114', 'hash': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.2259181491161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3568c1989b2223af1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:01:54.000Z'}}, {'blockNum': '0x81f542', 'uniqueId': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b:log:118', 'hash': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 985.2259181491161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3568c1989b2223af1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:01:54.000Z'}}, {'blockNum': '0x81f544', 'uniqueId': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce:log:30', 'hash': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 981.7073144728154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3537ed01346adacb70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:02:23.000Z'}}, {'blockNum': '0x81f544', 'uniqueId': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce:log:34', 'hash': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 981.7073144728154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3537ed01346adacb70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:02:23.000Z'}}, {'blockNum': '0x81f547', 'uniqueId': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32:log:11', 'hash': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:03:28.000Z'}}, {'blockNum': '0x81f547', 'uniqueId': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32:log:14', 'hash': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:03:28.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:29', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:32', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:33', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f55a', 'uniqueId': '0xa19b97f718da672470d962af66cc3903bd3d6b123aac9e0189654ad9cd0a3493:log:21', 'hash': '0xa19b97f718da672470d962af66cc3903bd3d6b123aac9e0189654ad9cd0a3493', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:07:25.000Z'}}, {'blockNum': '0x81f55c', 'uniqueId': '0x00554db9a3fd60cada95eb1097bce7f4eda9bedddd37bcec0ab99b1f38fc73da:log:29', 'hash': '0x00554db9a3fd60cada95eb1097bce7f4eda9bedddd37bcec0ab99b1f38fc73da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:08:34.000Z'}}, {'blockNum': '0x81f55e', 'uniqueId': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933:log:30', 'hash': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:03.000Z'}}, {'blockNum': '0x81f55e', 'uniqueId': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933:log:33', 'hash': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:03.000Z'}}, {'blockNum': '0x81f562', 'uniqueId': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb:log:12', 'hash': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2159.59500639088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x751266b849abdafd26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:54.000Z'}}, {'blockNum': '0x81f562', 'uniqueId': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb:log:15', 'hash': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 2159.59500639088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x751266b849abdafd26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:54.000Z'}}, {'blockNum': '0x81f563', 'uniqueId': '0x51bfd3e6ec90436dc74474c83a326be89ec87eb0ff99c2b3323c52c2cfea6e30:log:43', 'hash': '0x51bfd3e6ec90436dc74474c83a326be89ec87eb0ff99c2b3323c52c2cfea6e30', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0xefa6570c0819de6733599439b45d407a430293cd', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:59.000Z'}}, {'blockNum': '0x81f577', 'uniqueId': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417:log:96', 'hash': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 100.70972159949602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0575a0ce363671fe43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:35.000Z'}}, {'blockNum': '0x81f577', 'uniqueId': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417:log:98', 'hash': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8bf2d64011443366ec19f04f2c81425559906089', 'value': 100.70972159949602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0575a0ce363671fe43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:35.000Z'}}, {'blockNum': '0x81f578', 'uniqueId': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41:log:40', 'hash': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 49.074621019912456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a90c13cf22ccc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:44.000Z'}}, {'blockNum': '0x81f578', 'uniqueId': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41:log:44', 'hash': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'value': 49.074621019912456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a90c13cf22ccc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:44.000Z'}}, {'blockNum': '0x81f57c', 'uniqueId': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f:log:28', 'hash': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 78.17658038339017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043ceb01a952be1162', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:13:16.000Z'}}, {'blockNum': '0x81f57c', 'uniqueId': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f:log:32', 'hash': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 78.17658038339017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043ceb01a952be1162', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:13:16.000Z'}}, {'blockNum': '0x81f587', 'uniqueId': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2:log:7', 'hash': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1472.1073240939256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcd97d3b45d473ead', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:15:00.000Z'}}, {'blockNum': '0x81f587', 'uniqueId': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2:log:11', 'hash': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1472.1073240939256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcd97d3b45d473ead', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:15:00.000Z'}}, {'blockNum': '0x81f591', 'uniqueId': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd:log:82', 'hash': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.2365355961362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e986852a5fc832b80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:47.000Z'}}, {'blockNum': '0x81f591', 'uniqueId': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd:log:87', 'hash': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 269.2365355961362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e986852a5fc832b80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:47.000Z'}}, {'blockNum': '0x81f592', 'uniqueId': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991:log:6', 'hash': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 682.204773379763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fb7e3ae9c0a1c262', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:54.000Z'}}, {'blockNum': '0x81f592', 'uniqueId': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991:log:11', 'hash': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 682.204773379763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fb7e3ae9c0a1c262', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:54.000Z'}}, {'blockNum': '0x81f596', 'uniqueId': '0x272f51e36d63826ba92b4cffe8ebfb67c6bd70d676f093f6768f4790e13f8389:log:5', 'hash': '0x272f51e36d63826ba92b4cffe8ebfb67c6bd70d676f093f6768f4790e13f8389', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x957fcf2c4c60e38b53341289e78d18b22b442d0b', 'value': 486.45006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5ed9c83f4374c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:17:57.000Z'}}, {'blockNum': '0x81f59b', 'uniqueId': '0x6e1e5fa9e48b794640536b2567e8c32cfa9fd9213bd021d7419674b38033f1d3:log:20', 'hash': '0x6e1e5fa9e48b794640536b2567e8c32cfa9fd9213bd021d7419674b38033f1d3', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0xefa6570c0819de6733599439b45d407a430293cd', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:19:11.000Z'}}, {'blockNum': '0x81f5a7', 'uniqueId': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0:log:45', 'hash': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1301.308922174307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x468b4a02165e0466b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:28.000Z'}}, {'blockNum': '0x81f5a7', 'uniqueId': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0:log:49', 'hash': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1301.308922174307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x468b4a02165e0466b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:28.000Z'}}, {'blockNum': '0x81f5a8', 'uniqueId': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5:log:29', 'hash': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5', 'from': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 38.35237974852081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02143f062e8177d68d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:34.000Z'}}, {'blockNum': '0x81f5a8', 'uniqueId': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5:log:33', 'hash': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 38.35237974852081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02143f062e8177d68d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:34.000Z'}}, {'blockNum': '0x81f5af', 'uniqueId': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408:log:31', 'hash': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.8162667010032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f57c28b2da4e8a66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:22:57.000Z'}}, {'blockNum': '0x81f5af', 'uniqueId': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408:log:35', 'hash': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.8162667010032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f57c28b2da4e8a66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:22:57.000Z'}}, {'blockNum': '0x81f5b2', 'uniqueId': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935:log:64', 'hash': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 157.03857154937705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08835914cc53627399', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:23:40.000Z'}}, {'blockNum': '0x81f5b2', 'uniqueId': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935:log:68', 'hash': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 157.03857154937705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08835914cc53627399', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:23:40.000Z'}}, {'blockNum': '0x81f5b5', 'uniqueId': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86:log:108', 'hash': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 149.87586275068438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ff207186bbe0a6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:24:30.000Z'}}, {'blockNum': '0x81f5b5', 'uniqueId': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86:log:112', 'hash': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 149.87586275068438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ff207186bbe0a6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:24:30.000Z'}}, {'blockNum': '0x81f5bf', 'uniqueId': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d:log:72', 'hash': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.37112191828115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d35575a4e367638', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:26:54.000Z'}}, {'blockNum': '0x81f5bf', 'uniqueId': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d:log:76', 'hash': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 245.37112191828115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d35575a4e367638', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:26:54.000Z'}}, {'blockNum': '0x81f5c1', 'uniqueId': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c:log:67', 'hash': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.7158253616876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f41751d52ba2f09f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:27:30.000Z'}}, {'blockNum': '0x81f5c1', 'uniqueId': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c:log:71', 'hash': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.7158253616876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f41751d52ba2f09f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:27:30.000Z'}}, {'blockNum': '0x81f5c8', 'uniqueId': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5:log:27', 'hash': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 143.65020145679733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c98c092231b4cb0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:28:56.000Z'}}, {'blockNum': '0x81f5c8', 'uniqueId': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5:log:31', 'hash': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 143.65020145679733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c98c092231b4cb0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:28:56.000Z'}}, {'blockNum': '0x81f5ce', 'uniqueId': '0x74ade19d1074318409a1f260ec4f351002b00ab187d95b8e6985023ae83e18de:log:22', 'hash': '0x74ade19d1074318409a1f260ec4f351002b00ab187d95b8e6985023ae83e18de', 'from': '0xefa6570c0819de6733599439b45d407a430293cd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:09.000Z'}}, {'blockNum': '0x81f5d2', 'uniqueId': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9:log:31', 'hash': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.37256488246973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d3a77b89618ba15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:38.000Z'}}, {'blockNum': '0x81f5d2', 'uniqueId': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9:log:35', 'hash': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 245.37256488246973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d3a77b89618ba15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:38.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a:log:107', 'hash': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.7215237132955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a2111dcf967cf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a:log:111', 'hash': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 490.7215237132955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a2111dcf967cf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909:log:122', 'hash': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4905.485024701416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109ed47bf97a62ca603', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909:log:125', 'hash': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4905.485024701416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109ed47bf97a62ca603', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5db', 'uniqueId': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4:log:23', 'hash': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 480.32227399342474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a09cf83572deddbd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:32:22.000Z'}}, {'blockNum': '0x81f5db', 'uniqueId': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4:log:27', 'hash': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 480.32227399342474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a09cf83572deddbd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:32:22.000Z'}}, {'blockNum': '0x81f5e1', 'uniqueId': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0:log:68', 'hash': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.4099831069155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe5d4321b254c1d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:35:17.000Z'}}, {'blockNum': '0x81f5e1', 'uniqueId': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0:log:72', 'hash': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.4099831069155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe5d4321b254c1d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:35:17.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:14', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:17', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:18', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f8', 'uniqueId': '0x635df707358efae36cb005de277c655b673c7bd2072583beda478d37d431da7c:log:44', 'hash': '0x635df707358efae36cb005de277c655b673c7bd2072583beda478d37d431da7c', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xe42db7fb76c7bfe974d3d8c2da56755b6255814b', 'value': 15.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdca825c218b60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:40:53.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76:log:51', 'hash': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.4008644766204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a95addbfc81703f54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76:log:55', 'hash': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 490.4008644766204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a95addbfc81703f54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c:log:75', 'hash': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 867.2862544253672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0403bd520312236e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c:log:79', 'hash': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 867.2862544253672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0403bd520312236e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f608', 'uniqueId': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab:log:123', 'hash': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.16085793564926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a4a555fe461470e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:44:48.000Z'}}, {'blockNum': '0x81f608', 'uniqueId': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab:log:127', 'hash': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 245.16085793564926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a4a555fe461470e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:44:48.000Z'}}, {'blockNum': '0x81f60c', 'uniqueId': '0x733c9d964be5de323355971efbb81458318ac863aa9eab53bbba1dc1ec7f629f:log:1', 'hash': '0x733c9d964be5de323355971efbb81458318ac863aa9eab53bbba1dc1ec7f629f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x513cd4e35338572a1d2785c5e6297996b5c5c2fd', 'value': 29619.348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0645ab06cbf7f4c20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:45:30.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:67', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:70', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:73', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62e', 'uniqueId': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e:log:96', 'hash': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.297838635337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a943fd687910d9d76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:16.000Z'}}, {'blockNum': '0x81f62e', 'uniqueId': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e:log:100', 'hash': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 490.297838635337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a943fd687910d9d76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:16.000Z'}}, {'blockNum': '0x81f62f', 'uniqueId': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a:log:176', 'hash': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 167.90793442474907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091a30d0beb4c05ee4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:21.000Z'}}, {'blockNum': '0x81f62f', 'uniqueId': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a:log:180', 'hash': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 167.90793442474907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091a30d0beb4c05ee4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:21.000Z'}}, {'blockNum': '0x81f634', 'uniqueId': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd:log:148', 'hash': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.50616508884843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a51c064d38ef7a8ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:55:44.000Z'}}, {'blockNum': '0x81f634', 'uniqueId': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd:log:152', 'hash': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.50616508884843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a51c064d38ef7a8ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:55:44.000Z'}}, {'blockNum': '0x81f63d', 'uniqueId': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91:log:175', 'hash': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.12696469971849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49d1eba7f46fed10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:57:38.000Z'}}, {'blockNum': '0x81f63d', 'uniqueId': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91:log:179', 'hash': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 245.12696469971849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49d1eba7f46fed10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:57:38.000Z'}}, {'blockNum': '0x81f64a', 'uniqueId': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f:log:119', 'hash': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 882.6291796227117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd8f0c27f3e2e12bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:01:07.000Z'}}, {'blockNum': '0x81f64a', 'uniqueId': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f:log:123', 'hash': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 882.6291796227117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd8f0c27f3e2e12bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:01:07.000Z'}}, {'blockNum': '0x81f653', 'uniqueId': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55:log:68', 'hash': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1294.1638101713922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4628217893bfe69b7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:03:45.000Z'}}, {'blockNum': '0x81f653', 'uniqueId': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55:log:72', 'hash': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1294.1638101713922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4628217893bfe69b7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:03:45.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d:log:77', 'hash': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 693.185654957691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2593e228876da9a4b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d:log:82', 'hash': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 693.185654957691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2593e228876da9a4b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e:log:93', 'hash': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.962523104220503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c6147471e4b5e78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e:log:97', 'hash': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 8.962523104220503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c6147471e4b5e78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f65e', 'uniqueId': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55:log:78', 'hash': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.963918226949083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c663c2270f3114b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:06:59.000Z'}}, {'blockNum': '0x81f65e', 'uniqueId': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55:log:82', 'hash': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 8.963918226949083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c663c2270f3114b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:06:59.000Z'}}, {'blockNum': '0x81f661', 'uniqueId': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3:log:73', 'hash': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.13172119011747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49e2d1a8ad0be0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:07:25.000Z'}}, {'blockNum': '0x81f661', 'uniqueId': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3:log:77', 'hash': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 245.13172119011747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49e2d1a8ad0be0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:07:25.000Z'}}, {'blockNum': '0x81f66b', 'uniqueId': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603:log:60', 'hash': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.23988521565616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9371f2338f753dde', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:11:04.000Z'}}, {'blockNum': '0x81f66b', 'uniqueId': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603:log:64', 'hash': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 490.23988521565616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9371f2338f753dde', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:11:04.000Z'}}, {'blockNum': '0x81f66f', 'uniqueId': '0xd2fbf05dab31e87cbf70374ac42a9c8f620ace7dfe5f4a50e93febe7adf4e564:log:6', 'hash': '0xd2fbf05dab31e87cbf70374ac42a9c8f620ace7dfe5f4a50e93febe7adf4e564', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x509659eb38d5b942c1872b691500252e4ca5a679', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:32.000Z'}}, {'blockNum': '0x81f672', 'uniqueId': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b:log:27', 'hash': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 539.2275999559091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d3b494535aa67a833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:53.000Z'}}, {'blockNum': '0x81f672', 'uniqueId': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b:log:31', 'hash': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 539.2275999559091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d3b494535aa67a833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:53.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163:log:11', 'hash': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 648.7417748387787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x232b19c708dddb31ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163:log:15', 'hash': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 648.7417748387787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x232b19c708dddb31ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613:log:26', 'hash': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1171.9781626631564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f8876d9892469283c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613:log:30', 'hash': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1171.9781626631564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f8876d9892469283c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f678', 'uniqueId': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d:log:86', 'hash': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2051.244810269985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f32bd7efad1fe5025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:33.000Z'}}, {'blockNum': '0x81f678', 'uniqueId': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d:log:90', 'hash': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2051.244810269985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f32bd7efad1fe5025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:33.000Z'}}, {'blockNum': '0x81f67e', 'uniqueId': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af:log:16', 'hash': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.17336636393216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a76c5b94ce186bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:19.000Z'}}, {'blockNum': '0x81f67e', 'uniqueId': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af:log:20', 'hash': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 245.17336636393216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a76c5b94ce186bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:19.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:2', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0x509659eb38d5b942c1872b691500252e4ca5a679', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:5', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:6', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468:log:18', 'hash': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 980.6358576735024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35290e6cec2fa0fa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468:log:22', 'hash': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 980.6358576735024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35290e6cec2fa0fa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f683', 'uniqueId': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802:log:45', 'hash': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 19.611435330899685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011029d08711d22787', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:46.000Z'}}, {'blockNum': '0x81f683', 'uniqueId': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802:log:49', 'hash': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 19.611435330899685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011029d08711d22787', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:46.000Z'}}, {'blockNum': '0x81f691', 'uniqueId': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd:log:57', 'hash': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 430.35413716152607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17545d07a26c7ee952', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:18:17.000Z'}}, {'blockNum': '0x81f691', 'uniqueId': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd:log:62', 'hash': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 430.35413716152607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17545d07a26c7ee952', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:18:17.000Z'}}, {'blockNum': '0x81f698', 'uniqueId': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db:log:62', 'hash': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 360.1869498688647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1386991a8db11c43cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:26.000Z'}}, {'blockNum': '0x81f698', 'uniqueId': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db:log:66', 'hash': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 360.1869498688647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1386991a8db11c43cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:26.000Z'}}, {'blockNum': '0x81f699', 'uniqueId': '0x4cbf913ce163c5b61d5c689376abe94076c7457e56374bd4e79e8a6ef8673522:log:46', 'hash': '0x4cbf913ce163c5b61d5c689376abe94076c7457e56374bd4e79e8a6ef8673522', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x5c57320c7207eb53aa684df67be2742fe8b48b83', 'value': 75.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041d52f7dd54260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:35.000Z'}}, {'blockNum': '0x81f6a0', 'uniqueId': '0xf5720fef9e8d208e5bad08da0e01b76ad435bc5e408f83e1c1c5d428ee9bf1ac:log:24', 'hash': '0xf5720fef9e8d208e5bad08da0e01b76ad435bc5e408f83e1c1c5d428ee9bf1ac', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xc69c97fae607cc7f8e319c4928b9e8e0d3983a64', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:21:34.000Z'}}, {'blockNum': '0x81f6aa', 'uniqueId': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa:log:25', 'hash': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.15023992116102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a249c58be9672bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:23:41.000Z'}}, {'blockNum': '0x81f6aa', 'uniqueId': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa:log:29', 'hash': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 245.15023992116102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a249c58be9672bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:23:41.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860:log:108', 'hash': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1279.4126454924112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455b6ace74e5f2d825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860:log:112', 'hash': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1279.4126454924112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455b6ace74e5f2d825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445:log:126', 'hash': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11.10566678774565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a1f411a656ed629', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445:log:130', 'hash': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 11.10566678774565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a1f411a656ed629', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6b1', 'uniqueId': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1:log:26', 'hash': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 289.3151311133188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faf0dd2e3eaedafca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:11.000Z'}}, {'blockNum': '0x81f6b1', 'uniqueId': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1:log:30', 'hash': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 289.3151311133188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faf0dd2e3eaedafca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:11.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:10', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0xc69c97fae607cc7f8e319c4928b9e8e0d3983a64', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:13', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:14', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea:log:24', 'hash': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.37931307262977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ef6bc9b04fca42ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea:log:28', 'hash': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.37931307262977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ef6bc9b04fca42ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0:log:40', 'hash': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 877.7090686120303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94a90399c705902f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0:log:44', 'hash': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 877.7090686120303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94a90399c705902f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f:log:55', 'hash': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.7950600113968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb61ba7962a4fb91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f:log:59', 'hash': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.7950600113968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb61ba7962a4fb91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604:log:70', 'hash': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.2388765678962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3744d9d884ef893', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604:log:74', 'hash': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.2388765678962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3744d9d884ef893', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b4', 'uniqueId': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641:log:70', 'hash': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641', 'from': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 892.9480716098165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306824d416652d9b2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:47.000Z'}}, {'blockNum': '0x81f6b4', 'uniqueId': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641:log:74', 'hash': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 892.9480716098165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306824d416652d9b2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:47.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3:log:32', 'hash': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.11478766821523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49a6a8b5df444984', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3:log:36', 'hash': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 245.11478766821523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49a6a8b5df444984', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f:log:50', 'hash': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1272.4469474364328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44fabfacfb06b7ae88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f:log:54', 'hash': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1272.4469474364328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44fabfacfb06b7ae88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6c4', 'uniqueId': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5:log:7', 'hash': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.76839277551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb02fcc3b077813a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:18.000Z'}}, {'blockNum': '0x81f6c4', 'uniqueId': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5:log:11', 'hash': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.76839277551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb02fcc3b077813a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:18.000Z'}}, {'blockNum': '0x81f6c6', 'uniqueId': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de:log:16', 'hash': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 49.02074484193221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a84cabb5f06e9962', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:59.000Z'}}, {'blockNum': '0x81f6c6', 'uniqueId': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de:log:20', 'hash': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 49.02074484193221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a84cabb5f06e9962', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:59.000Z'}}, {'blockNum': '0x81f6cc', 'uniqueId': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae:log:37', 'hash': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.5701538574771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f211ca5f154586ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:33:25.000Z'}}, {'blockNum': '0x81f6cc', 'uniqueId': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae:log:41', 'hash': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 146.5701538574771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f211ca5f154586ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:33:25.000Z'}}, {'blockNum': '0x81f6e2', 'uniqueId': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824:log:7', 'hash': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.3471502427332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c0396b94909568b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:38:26.000Z'}}, {'blockNum': '0x81f6e2', 'uniqueId': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824:log:11', 'hash': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.3471502427332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c0396b94909568b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:38:26.000Z'}}, {'blockNum': '0x81f6e4', 'uniqueId': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c:log:29', 'hash': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.2703196510619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3e402eed30a0972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:06.000Z'}}, {'blockNum': '0x81f6e4', 'uniqueId': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c:log:33', 'hash': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.2703196510619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3e402eed30a0972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:06.000Z'}}, {'blockNum': '0x81f6e6', 'uniqueId': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06:log:68', 'hash': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.4779724288667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb6fb34ff734045d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:29.000Z'}}, {'blockNum': '0x81f6e6', 'uniqueId': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06:log:72', 'hash': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.4779724288667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb6fb34ff734045d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:29.000Z'}}, {'blockNum': '0x81f6eb', 'uniqueId': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305:log:6', 'hash': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.1954545593612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb30f807e0cab4402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:40:27.000Z'}}, {'blockNum': '0x81f6eb', 'uniqueId': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305:log:10', 'hash': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.1954545593612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb30f807e0cab4402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:40:27.000Z'}}], 'pageKey': 'c863e3be-c071-4ae4-98fc-da5e05aac18b'}}
Answer is paginated. Downloading more pages...
Number of returned transfers:  1001
Answer is complete
 
symbol             EDO
group              TCG
date        2019-12-16
hour             16:00
exchange       binance
Name: 576, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2019-12-16 16:00:00 2019-12-16 04:00:00 2019-12-17 04:00:00
Unix timestamps:  1576465200.0 1576551600.0
Hex Block Numbers:  0x8b0f9a 0x8b2399
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              TCG
date        2020-01-20
hour             16:00
exchange       binance
Name: 577, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2020-01-20 16:00:00 2020-01-20 04:00:00 2020-01-21 04:00:00
Unix timestamps:  1579489200.0 1579575600.0
Hex Block Numbers:  0x8e25bd 0x8e3f3a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8e2882', 'uniqueId': '0xa572d94157c52264fc2356e14dc5945de9fd0ab71326086ec313a9873edaa956:log:149', 'hash': '0xa572d94157c52264fc2356e14dc5945de9fd0ab71326086ec313a9873edaa956', 'from': '0x0da6c6466ca0d6467e743729c58b6bc3b9c87bc9', 'to': '0xe0beebec3f0c5c64df0ecae7b198975e17df843d', 'value': 1149.1541207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3e4bb7904c13dcd800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T05:41:58.000Z'}}, {'blockNum': '0x8e2935', 'uniqueId': '0xa4ac1f47a69be8f0dc186d509115ea43484f70d6ec811dfdb34a6e13514ef345:log:28', 'hash': '0xa4ac1f47a69be8f0dc186d509115ea43484f70d6ec811dfdb34a6e13514ef345', 'from': '0x5087ba8368240163c01e43e8f9dd5521cdb71e32', 'to': '0x190c4f6971e5339aa67133829412213650a3ffb8', 'value': 335.60448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x123172a07385b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T06:24:38.000Z'}}, {'blockNum': '0x8e2a65', 'uniqueId': '0x249c99b938f31d59a2fd24dce8c4fac8e9a2772ed856eb06e6ad9be7b3c0db95:log:76', 'hash': '0x249c99b938f31d59a2fd24dce8c4fac8e9a2772ed856eb06e6ad9be7b3c0db95', 'from': '0xf5ba312ac4e1387dc0df053381dc196a0b52ab7d', 'to': '0xc18842d634a683e6ea5392e3f9f23a6966c88371', 'value': 12.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xb2bef3c243080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T07:25:37.000Z'}}, {'blockNum': '0x8e2c36', 'uniqueId': '0x031cc4b6fefb69ef6446a4c0b4da69b1f1b52d1e36523eface1949b5140529ab:log:14', 'hash': '0x031cc4b6fefb69ef6446a4c0b4da69b1f1b52d1e36523eface1949b5140529ab', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x99c84069aa46a128c1f7398931de1d27265a22bf', 'value': 2177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7603f1adc279640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T09:08:14.000Z'}}, {'blockNum': '0x8e2e55', 'uniqueId': '0x90bf9061898700d330b9f93ab64b754934116a1005927af0257293fc33fdb4f5:log:80', 'hash': '0x90bf9061898700d330b9f93ab64b754934116a1005927af0257293fc33fdb4f5', 'from': '0x5f25e34a5d52ef934c3206180a60ce72e36089cb', 'to': '0x37bf0bb626399516fede2d37e11113cdb1ec2623', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T11:07:33.000Z'}}, {'blockNum': '0x8e2e92', 'uniqueId': '0xa8314cbb66830e8ec5d299a83407d9b7388d000f9b2929f0fb66ccfe816aae4a:log:12', 'hash': '0xa8314cbb66830e8ec5d299a83407d9b7388d000f9b2929f0fb66ccfe816aae4a', 'from': '0x37bf0bb626399516fede2d37e11113cdb1ec2623', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T11:23:56.000Z'}}, {'blockNum': '0x8e2fec', 'uniqueId': '0x5129c66768aecbabccf2f5255f133e3781ebd6946e3a6bfb338e74b13f0e6a28:log:56', 'hash': '0x5129c66768aecbabccf2f5255f133e3781ebd6946e3a6bfb338e74b13f0e6a28', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xaed927b9189ef8fa7119f84ee05886d56a35ec76', 'value': 94.27163284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051c481e98703fd000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T12:37:45.000Z'}}, {'blockNum': '0x8e3332', 'uniqueId': '0xd793cff83d1fdc35d56284facc13333f40b1194e5d58f1e607dd116928ce453e:log:135', 'hash': '0xd793cff83d1fdc35d56284facc13333f40b1194e5d58f1e607dd116928ce453e', 'from': '0x50b30b3fcdae176c0a4572db5ab82ad932061464', 'to': '0x50b30b3fcdae176c0a4572db5ab82ad932061464', 'value': 181.13920783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09d1cfbdce02ce5c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T15:47:20.000Z'}}, {'blockNum': '0x8e339f', 'uniqueId': '0x8bed6b79c9996a4fd454b341f9c38ec5c8bd733ccf575b820a90e02f3b668679:log:61', 'hash': '0x8bed6b79c9996a4fd454b341f9c38ec5c8bd733ccf575b820a90e02f3b668679', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb49cfc7064ee90ea416dec0653874df23b355f9c', 'value': 205.37837047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b22328bcd1cecfc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T16:10:53.000Z'}}, {'blockNum': '0x8e33c7', 'uniqueId': '0xccdfbcb2affaade3e6170cde6f39621b0e2173d70e649a001df9e59355122199:log:179', 'hash': '0xccdfbcb2affaade3e6170cde6f39621b0e2173d70e649a001df9e59355122199', 'from': '0x48cfb301a563d6e0d1795b12f7f4b989d426ec6a', 'to': '0x0ed9764a7ded038396988d4b3cd3a65fe66a089d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T16:18:52.000Z'}}, {'blockNum': '0x8e33d7', 'uniqueId': '0x64d820afaf3fe34c938abf9c0e585b792f50d8ac09edf402d225d2caf1c4555c:log:99', 'hash': '0x64d820afaf3fe34c938abf9c0e585b792f50d8ac09edf402d225d2caf1c4555c', 'from': '0x6058585a7350dbc5e92b060ac459d6a4e2120672', 'to': '0x76f40ac7a7a32ff07c8b762adb267471eb1f32c9', 'value': 1900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x66ffcbfd5e5a300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T16:22:43.000Z'}}, {'blockNum': '0x8e34ad', 'uniqueId': '0x2bac343676c746063cd27243f94808b91913a6a8c33deafaec9d51efb4ac30e8:log:16', 'hash': '0x2bac343676c746063cd27243f94808b91913a6a8c33deafaec9d51efb4ac30e8', 'from': '0x32f20cce59da8bab16921e04de482d07c73e9ede', 'to': '0xae700e1e8115c3e686ee34753dd387e905f2ecd3', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T17:06:01.000Z'}}, {'blockNum': '0x8e354f', 'uniqueId': '0x970a92af685d11a1a77afc627097345f09e89403770cf1fbfffe6128c7193496:log:3', 'hash': '0x970a92af685d11a1a77afc627097345f09e89403770cf1fbfffe6128c7193496', 'from': '0x429701e9c55f69e6efdee8ab9920f825da2b9bb3', 'to': '0xd6269ff8b8e1d9eedf3fe435ed2e8123e517c9f5', 'value': 92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04fcc1a89027f00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T17:38:12.000Z'}}, {'blockNum': '0x8e35a0', 'uniqueId': '0xd81eca0233cc05c930bacda0f82b8e7f5abce24849fa54c562eb8990b462312f:log:158', 'hash': '0xd81eca0233cc05c930bacda0f82b8e7f5abce24849fa54c562eb8990b462312f', 'from': '0x6a544e267913dc9a0172f1c7111a66467ae73d08', 'to': '0xdf6156e1e5b0e7a26d26658597faf5684be713f9', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T17:53:52.000Z'}}, {'blockNum': '0x8e3738', 'uniqueId': '0x02edf40d3080280a912aeca5945c21903d76d270594bdacaf2dcb1b05a772f30:log:172', 'hash': '0x02edf40d3080280a912aeca5945c21903d76d270594bdacaf2dcb1b05a772f30', 'from': '0xd5176ccdfd0f88bb065b01333468bb3143ae52a3', 'to': '0x4ec85bd869dc657a0f54c2ac72185e7329ddbdb1', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T19:29:57.000Z'}}, {'blockNum': '0x8e37af', 'uniqueId': '0x325e8bdff8c48a85bd535120bf664a2e5394ed8552fa6e87158683c24a67c939:log:1', 'hash': '0x325e8bdff8c48a85bd535120bf664a2e5394ed8552fa6e87158683c24a67c939', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 156.81224326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x088035006b08715800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T19:59:07.000Z'}}, {'blockNum': '0x8e37c7', 'uniqueId': '0x57f5811c672005b0b2bc0bd5473bc8c353740016d0d2a406500aa4ddd88bfb4a:log:53', 'hash': '0x57f5811c672005b0b2bc0bd5473bc8c353740016d0d2a406500aa4ddd88bfb4a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x73d361632c8da76159e65e917242735cdca8e8a9', 'value': 156.81224326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x088035006b08715800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T20:04:50.000Z'}}, {'blockNum': '0x8e39cb', 'uniqueId': '0x993411dc64cadffffff0177ec76685632fd4a2cc181032a174d4b29b1f8c5a4c:log:25', 'hash': '0x993411dc64cadffffff0177ec76685632fd4a2cc181032a174d4b29b1f8c5a4c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x66c060b745850516853be76532f1249496c84e84', 'value': 47.47820418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0292e47726c25dc800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T21:53:51.000Z'}}, {'blockNum': '0x8e3aa0', 'uniqueId': '0x883e55c53ed7295fc751ebe9b838578c6b43ddcd005d3e797117b89784656fc3:log:3', 'hash': '0x883e55c53ed7295fc751ebe9b838578c6b43ddcd005d3e797117b89784656fc3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcc68b68e4cab4375601242d72580df365def28db', 'value': 100.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05760c6041b0da0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T22:40:49.000Z'}}, {'blockNum': '0x8e3ba1', 'uniqueId': '0xa883d026c64162dbc2b311792c278227bfab42b27cd931850044ff87a8916d72:log:25', 'hash': '0xa883d026c64162dbc2b311792c278227bfab42b27cd931850044ff87a8916d72', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x02b3217f80d7d0a0548458f08fbf9cd7bf648d7e', 'value': 93.87841075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0516d31d301ff66c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T23:37:09.000Z'}}, {'blockNum': '0x8e3e33', 'uniqueId': '0x756f701c7a5871e37c3e224269012910c67795992cbd1eed51298807265a2409:log:113', 'hash': '0x756f701c7a5871e37c3e224269012910c67795992cbd1eed51298807265a2409', 'from': '0xf7e1aa050035fc99bcaff7a95d052127dc618621', 'to': '0xfb439895a2e9261d25236c8ede0195b769f443bc', 'value': 1034.0147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x380dd62b34901ac000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:02:49.000Z'}}, {'blockNum': '0x8e3ed1', 'uniqueId': '0x7ac36e5493200c802f907494905cf3aa3a3f94be675d4df19e0d84b37a19c59b:log:164', 'hash': '0x7ac36e5493200c802f907494905cf3aa3a3f94be675d4df19e0d84b37a19c59b', 'from': '0x50b30b3fcdae176c0a4572db5ab82ad932061464', 'to': '0x7d059de737bf54d4ce2816c5a39c4971a13bfa77', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:35:25.000Z'}}, {'blockNum': '0x8e3ed4', 'uniqueId': '0xed33c56cce2250bf46cd6e9535d9aa48ffee384708e051e7d9b61952983af248:log:68', 'hash': '0xed33c56cce2250bf46cd6e9535d9aa48ffee384708e051e7d9b61952983af248', 'from': '0x7d059de737bf54d4ce2816c5a39c4971a13bfa77', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:35:50.000Z'}}, {'blockNum': '0x8e3efc', 'uniqueId': '0x4f40c24ee4592aa75383ec7847f2b7f344ed32b051636fa416ec515f3134700e:log:13', 'hash': '0x4f40c24ee4592aa75383ec7847f2b7f344ed32b051636fa416ec515f3134700e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x12290f15180bdc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:43:33.000Z'}}, {'blockNum': '0x8e3f01', 'uniqueId': '0xcd9c13066777560f7adf9bd8c9f71d3678a4955ebb776b3c079fe669e748c3be:log:24', 'hash': '0xcd9c13066777560f7adf9bd8c9f71d3678a4955ebb776b3c079fe669e748c3be', 'from': '0xfb439895a2e9261d25236c8ede0195b769f443bc', 'to': '0xd55e158ba7d2fb70c06b39ce81be23faecd5e56a', 'value': 1034.0147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x380dd62b34901ac000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:45:20.000Z'}}, {'blockNum': '0x8e3f20', 'uniqueId': '0x133ffae5df2ba64f526634ef91fba639e28975d3d807c629f5502a04af4acc87:log:46', 'hash': '0x133ffae5df2ba64f526634ef91fba639e28975d3d807c629f5502a04af4acc87', 'from': '0xd55e158ba7d2fb70c06b39ce81be23faecd5e56a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1034.0147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x380dd62b34901ac000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:53:05.000Z'}}]}}
Number of returned transfers:  26
Answer is complete
 
symbol             NAV
group              TCG
date        2020-02-20
hour             16:00
exchange       binance
Name: 578, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2020-02-20 16:00:00 2020-02-20 04:00:00 2020-02-21 04:00:00
Unix timestamps:  1582167600.0 1582254000.0
Hex Block Numbers:  0x913a16 0x915379
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NXS
group              TCG
date        2020-03-03
hour             15:59
exchange       binance
Name: 579, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-03-03 15:59:00 2020-03-03 03:59:00 2020-03-04 03:59:00
Unix timestamps:  1583204340.0 1583290740.0
Hex Block Numbers:  0x926b08 0x928440
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RDN
group              TCG
date        2020-03-13
hour             16:00
exchange       binance
Name: 580, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-03-13 16:00:00 2020-03-13 04:00:00 2020-03-14 04:00:00
Unix timestamps:  1584068400.0 1584154800.0
Hex Block Numbers:  0x9368d5 0x9381cc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9368e2', 'uniqueId': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73:log:131', 'hash': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1481.0782059449944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x504a16cd37e438aab3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:02:50.000Z'}}, {'blockNum': '0x9368e2', 'uniqueId': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73:log:133', 'hash': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 1481.0782059449944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x504a16cd37e438aab3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:02:50.000Z'}}, {'blockNum': '0x9368e2', 'uniqueId': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73:log:137', 'hash': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1481.0782059449944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x504a16cd37e438aab3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:02:50.000Z'}}, {'blockNum': '0x9368ee', 'uniqueId': '0x29ef14024615974579136e2233dcf2718c96de1da6d8204051525c3383d106a1:log:128', 'hash': '0x29ef14024615974579136e2233dcf2718c96de1da6d8204051525c3383d106a1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2560.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8aca9b3236d1d90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:03:56.000Z'}}, {'blockNum': '0x936915', 'uniqueId': '0xbc1bd2b9bdda3c53b99a3a24183cffb6e1b574d26da7dbf1a8e02fd17ce2029c:log:17', 'hash': '0xbc1bd2b9bdda3c53b99a3a24183cffb6e1b574d26da7dbf1a8e02fd17ce2029c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd61362514d21940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:11:29.000Z'}}, {'blockNum': '0x936add', 'uniqueId': '0xe66b8bebe9dd4b49608e019eaf52aefa85ae43c8ea8bf4bb0e5da146ec3e3aae:log:85', 'hash': '0xe66b8bebe9dd4b49608e019eaf52aefa85ae43c8ea8bf4bb0e5da146ec3e3aae', 'from': '0x905fefe230a46ae461fc6429b0497e938ca8af01', 'to': '0xda19aab62842835846714d3fbb4e335b0a19552c', 'value': 66417.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e1081388186d09f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T04:52:43.000Z'}}, {'blockNum': '0x936b0f', 'uniqueId': '0xe760a5ed467362866eb5fbeeefb4599e6954cbcf6f0b507891a41a2df2e9790a:log:106', 'hash': '0xe760a5ed467362866eb5fbeeefb4599e6954cbcf6f0b507891a41a2df2e9790a', 'from': '0xda19aab62842835846714d3fbb4e335b0a19552c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66417.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e1081388186d09f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:04:30.000Z'}}, {'blockNum': '0x936b9d', 'uniqueId': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3:log:127', 'hash': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1622.150958530425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x57efdde6426164ef9b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:36:12.000Z'}}, {'blockNum': '0x936b9d', 'uniqueId': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3:log:129', 'hash': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 1622.150958530425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x57efdde6426164ef9b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:36:12.000Z'}}, {'blockNum': '0x936b9d', 'uniqueId': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3:log:133', 'hash': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1622.150958530425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x57efdde6426164ef9b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:36:12.000Z'}}, {'blockNum': '0x936d3b', 'uniqueId': '0x8157480b188bc7434db68f8f0afcf3d8a2917ae7c8b6dad6553cb1464c0f01cc:log:145', 'hash': '0x8157480b188bc7434db68f8f0afcf3d8a2917ae7c8b6dad6553cb1464c0f01cc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6db418fcc3e8077e1f1159e7b7fed66f20b6fbe5', 'value': 1682.852546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5b3a454273bbb62000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:10:32.000Z'}}, {'blockNum': '0x936d72', 'uniqueId': '0x7e5be4906c35fc71cda15b290f426b5f5bebf39a7d061e40b0efcb270e20b40a:log:118', 'hash': '0x7e5be4906c35fc71cda15b290f426b5f5bebf39a7d061e40b0efcb270e20b40a', 'from': '0x6db418fcc3e8077e1f1159e7b7fed66f20b6fbe5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1682.852546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5b3a454273bbb62000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:24:45.000Z'}}, {'blockNum': '0x936d83', 'uniqueId': '0xd3ee711909ddd4077c58215a7021f0bdaa0b11f20cc23d4ca9264cc8ebd9fcf5:log:25', 'hash': '0xd3ee711909ddd4077c58215a7021f0bdaa0b11f20cc23d4ca9264cc8ebd9fcf5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2071.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x705178c992507d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:29:33.000Z'}}, {'blockNum': '0x936d8a', 'uniqueId': '0x53f43fc8850a76f9e602556a095e9a253f1be3527c1d3a7e6358e75244bd4309:log:12', 'hash': '0x53f43fc8850a76f9e602556a095e9a253f1be3527c1d3a7e6358e75244bd4309', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 2071.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x705178c992507d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:30:39.000Z'}}, {'blockNum': '0x936d8a', 'uniqueId': '0x53f43fc8850a76f9e602556a095e9a253f1be3527c1d3a7e6358e75244bd4309:log:13', 'hash': '0x53f43fc8850a76f9e602556a095e9a253f1be3527c1d3a7e6358e75244bd4309', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 2071.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x705178c992507d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:30:39.000Z'}}, {'blockNum': '0x936de3', 'uniqueId': '0xdd5ce34ac486a3d59aa2347be2b4aad6bdeb1abc28f4aa015b5e5527f609ef28:log:33', 'hash': '0xdd5ce34ac486a3d59aa2347be2b4aad6bdeb1abc28f4aa015b5e5527f609ef28', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'value': 18772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03f9a1d52dae70d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:53:41.000Z'}}, {'blockNum': '0x936e1d', 'uniqueId': '0x74b57085e3d510e3047ebb75e1db90fcf28de761f6398e878d54871d561495c9:log:137', 'hash': '0x74b57085e3d510e3047ebb75e1db90fcf28de761f6398e878d54871d561495c9', 'from': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03f9a1d52dae70d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T08:04:24.000Z'}}, {'blockNum': '0x936f02', 'uniqueId': '0x7788cef70ce44faf2e8fb5cd1889ffc0d299455f7301f7464b8a5164ee3356cf:log:100', 'hash': '0x7788cef70ce44faf2e8fb5cd1889ffc0d299455f7301f7464b8a5164ee3356cf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 3455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbb4bc1c2a01e9c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T08:58:41.000Z'}}, {'blockNum': '0x936f1b', 'uniqueId': '0xacc7883bca73a7bfd7f0124f77a27a8265ee0e9b4a3223e8eed5d828a43d11dd:log:72', 'hash': '0xacc7883bca73a7bfd7f0124f77a27a8265ee0e9b4a3223e8eed5d828a43d11dd', 'from': '0x8540f80fab2afcae8d8fd6b1557b1cf943a0999b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1285.509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45b0056894d7a08000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:04:01.000Z'}}, {'blockNum': '0x936f1b', 'uniqueId': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e:log:136', 'hash': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1815.4877254653784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x626af41371cdc7d8bc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:04:01.000Z'}}, {'blockNum': '0x936f1b', 'uniqueId': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e:log:139', 'hash': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1815.4877254653784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x626af41371cdc7d8bc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:04:01.000Z'}}, {'blockNum': '0x936f1b', 'uniqueId': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e:log:141', 'hash': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1815.4877254653784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x626af41371cdc7d8bc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:04:01.000Z'}}, {'blockNum': '0x937286', 'uniqueId': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151:log:100', 'hash': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 1677.6572622001922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af22be75ca8d3e818', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T12:21:52.000Z'}}, {'blockNum': '0x937286', 'uniqueId': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151:log:102', 'hash': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1677.6572622001922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af22be75ca8d3e818', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T12:21:52.000Z'}}, {'blockNum': '0x937286', 'uniqueId': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151:log:103', 'hash': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1677.6572622001922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af22be75ca8d3e818', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T12:21:52.000Z'}}, {'blockNum': '0x937302', 'uniqueId': '0x4ec3d6f11557f5c5f21ec0fa0dbabc20373387c264fe54603a280a4e597ae11a:log:138', 'hash': '0x4ec3d6f11557f5c5f21ec0fa0dbabc20373387c264fe54603a280a4e597ae11a', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x1bdbf63d173ade5836944b981bbfefcf9c62c337', 'value': 205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b1cf24ddd0b140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T12:51:53.000Z'}}, {'blockNum': '0x93744a', 'uniqueId': '0x211a30cab5ff97edaad75a1133922029e7328c0d036628c79654363acd3a7203:log:115', 'hash': '0x211a30cab5ff97edaad75a1133922029e7328c0d036628c79654363acd3a7203', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x460b94fe8b7899b4a5f7ea74e90536e2c5f70fcd', 'value': 919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x31d1afdeede7fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T14:06:26.000Z'}}, {'blockNum': '0x9374d4', 'uniqueId': '0xc69a9b2909868f0ce817bc38ddd6d410ee2b425c071a4251d2fd4d848f2bb6ec:log:13', 'hash': '0xc69a9b2909868f0ce817bc38ddd6d410ee2b425c071a4251d2fd4d848f2bb6ec', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x79a5c17ec748900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T14:35:44.000Z'}}, {'blockNum': '0x937503', 'uniqueId': '0xff01ea2293909078053be98bd47dfcc19d754d3335066e96e4eacf86ede95f38:log:146', 'hash': '0xff01ea2293909078053be98bd47dfcc19d754d3335066e96e4eacf86ede95f38', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x79a5c17ec748900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T14:46:48.000Z'}}, {'blockNum': '0x9375f7', 'uniqueId': '0xa9b8f83e28c0ee55a6c02cd078b2513a68cdf819405a375f1e47933091022ec4:log:5', 'hash': '0xa9b8f83e28c0ee55a6c02cd078b2513a68cdf819405a375f1e47933091022ec4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 8531.7385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ce81a812a9800c4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T15:42:03.000Z'}}, {'blockNum': '0x937634', 'uniqueId': '0x939661b23e0324eeeb5f4b2e247ea9719bae4bc39420ab85fb766e57c5e7d010:log:31', 'hash': '0x939661b23e0324eeeb5f4b2e247ea9719bae4bc39420ab85fb766e57c5e7d010', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1fe919d72f733a5ca865dea0b0984b0cc2849c39', 'value': 2406.72523763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x827805ac3f67bd6c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T15:58:12.000Z'}}, {'blockNum': '0x93763c', 'uniqueId': '0xbb9b17ce1886ae034c5e27f00c762e0637bfb0d5c0f1ab70c5fe67a8389c7683:log:35', 'hash': '0xbb9b17ce1886ae034c5e27f00c762e0637bfb0d5c0f1ab70c5fe67a8389c7683', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4357.887616655287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec3dd6f2451411522d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:12.000Z'}}, {'blockNum': '0x93763c', 'uniqueId': '0xbb9b17ce1886ae034c5e27f00c762e0637bfb0d5c0f1ab70c5fe67a8389c7683:log:40', 'hash': '0xbb9b17ce1886ae034c5e27f00c762e0637bfb0d5c0f1ab70c5fe67a8389c7683', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 4357.887616655287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec3dd6f2451411522d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:12.000Z'}}, {'blockNum': '0x93763d', 'uniqueId': '0x47ca2163c15d15fb140d3b1c4bcdf3c0e6ce9a33601f88e91fce145eafbaa9f5:log:4', 'hash': '0x47ca2163c15d15fb140d3b1c4bcdf3c0e6ce9a33601f88e91fce145eafbaa9f5', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 4820.847401169012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010556b2816b44079f6f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:25.000Z'}}, {'blockNum': '0x93763e', 'uniqueId': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa:log:73', 'hash': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1419.6461384569764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4cf58c4151ab180d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:35.000Z'}}, {'blockNum': '0x93763e', 'uniqueId': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa:log:75', 'hash': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1419.6461384569764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4cf58c4151ab180d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:35.000Z'}}, {'blockNum': '0x93763e', 'uniqueId': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa:log:80', 'hash': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1419.6461384569764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4cf58c4151ab180d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:35.000Z'}}, {'blockNum': '0x937640', 'uniqueId': '0x4582c2ae729ac1359956778992d40036ddb69ec4fd20c16d692837d810ac269d:log:59', 'hash': '0x4582c2ae729ac1359956778992d40036ddb69ec4fd20c16d692837d810ac269d', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5368.377562965068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123053466a22620ea15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:19.000Z'}}, {'blockNum': '0x937640', 'uniqueId': '0x4582c2ae729ac1359956778992d40036ddb69ec4fd20c16d692837d810ac269d:log:64', 'hash': '0x4582c2ae729ac1359956778992d40036ddb69ec4fd20c16d692837d810ac269d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 5368.377562965068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123053466a22620ea15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:19.000Z'}}, {'blockNum': '0x937641', 'uniqueId': '0x6ae8dfb4c40e8cf21e33719b23caf89e97129247819f2ddf14b4812fe81eef70:log:150', 'hash': '0x6ae8dfb4c40e8cf21e33719b23caf89e97129247819f2ddf14b4812fe81eef70', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x1f8ad723a8e141a07805a39ff828f6e9d46865d4', 'value': 14110.472595331794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02fcee2500f763d1ee79', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:22.000Z'}}, {'blockNum': '0x937641', 'uniqueId': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b:log:167', 'hash': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8419.793557663243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8701bbeb76ffd9dc2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:22.000Z'}}, {'blockNum': '0x937641', 'uniqueId': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b:log:172', 'hash': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 8419.793557663243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8701bbeb76ffd9dc2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:22.000Z'}}, {'blockNum': '0x937641', 'uniqueId': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b:log:174', 'hash': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 8419.793557663243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8701bbeb76ffd9dc2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:22.000Z'}}, {'blockNum': '0x937643', 'uniqueId': '0xf9609ab5897f6130dfe30d9870edca380622cf592067ccba31fd239eb6916d66:log:31', 'hash': '0xf9609ab5897f6130dfe30d9870edca380622cf592067ccba31fd239eb6916d66', 'from': '0x1f8ad723a8e141a07805a39ff828f6e9d46865d4', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 14110.472595331794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02fcee2500f763d1ee79', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:33.000Z'}}, {'blockNum': '0x937645', 'uniqueId': '0xc48595b20258d5270d7939ca080f3c7db70c49cedbac3f14bf06816a80437f5c:log:8', 'hash': '0xc48595b20258d5270d7939ca080f3c7db70c49cedbac3f14bf06816a80437f5c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5073.672622917954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01130b5a211301195dac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:49.000Z'}}, {'blockNum': '0x937645', 'uniqueId': '0xc48595b20258d5270d7939ca080f3c7db70c49cedbac3f14bf06816a80437f5c:log:10', 'hash': '0xc48595b20258d5270d7939ca080f3c7db70c49cedbac3f14bf06816a80437f5c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 5073.672622917954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01130b5a211301195dac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:49.000Z'}}, {'blockNum': '0x937647', 'uniqueId': '0x59a88375279db6f240bd242cc0188fe6f32de8a96eef948f8c402ac3c0a0b4b8:log:3', 'hash': '0x59a88375279db6f240bd242cc0188fe6f32de8a96eef948f8c402ac3c0a0b4b8', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xdcb07962eae73c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:02:19.000Z'}}, {'blockNum': '0x937647', 'uniqueId': '0x4c7892eb5747751fc40c7da22cf14b39763231b581ceb8b43698b874eef74fa5:log:36', 'hash': '0x4c7892eb5747751fc40c7da22cf14b39763231b581ceb8b43698b874eef74fa5', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 4105.062394906345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xde892f529d56ff93f0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:02:19.000Z'}}, {'blockNum': '0x93764d', 'uniqueId': '0xcad313eeacea8bd5c15ee9e946fc26bd1e8233e135024fd2eaf30bdb7431e9ea:log:3', 'hash': '0xcad313eeacea8bd5c15ee9e946fc26bd1e8233e135024fd2eaf30bdb7431e9ea', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x41609cb25691180000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:03:14.000Z'}}, {'blockNum': '0x93764d', 'uniqueId': '0x7225133eadecc53fd4ff2b7360b6f6506ab72f7c83c7ac7bf68688f648bba5a9:log:35', 'hash': '0x7225133eadecc53fd4ff2b7360b6f6506ab72f7c83c7ac7bf68688f648bba5a9', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5368.377562965068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123053466a22620ea15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:03:14.000Z'}}, {'blockNum': '0x93764d', 'uniqueId': '0x7225133eadecc53fd4ff2b7360b6f6506ab72f7c83c7ac7bf68688f648bba5a9:log:37', 'hash': '0x7225133eadecc53fd4ff2b7360b6f6506ab72f7c83c7ac7bf68688f648bba5a9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 5368.377562965068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123053466a22620ea15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:03:14.000Z'}}, {'blockNum': '0x937650', 'uniqueId': '0x66407615da84f17d3875337f4d6ba3e0581c114b4998ba7e953fc7ec0a98019f:log:105', 'hash': '0x66407615da84f17d3875337f4d6ba3e0581c114b4998ba7e953fc7ec0a98019f', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 8531.7385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ce81a812a9800c4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:04:08.000Z'}}, {'blockNum': '0x937650', 'uniqueId': '0x9f8290c2da7b528a17f96dc5fef45f37eb24bd707113549b88fc7161707b0e01:log:109', 'hash': '0x9f8290c2da7b528a17f96dc5fef45f37eb24bd707113549b88fc7161707b0e01', 'from': '0x1fe919d72f733a5ca865dea0b0984b0cc2849c39', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2406.72523763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x827805ac3f67bd6c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:04:08.000Z'}}, {'blockNum': '0x937656', 'uniqueId': '0x4457966f0d28980c83fcdceab38489256cf09277faaa5ff490db880ec6871eb3:log:3', 'hash': '0x4457966f0d28980c83fcdceab38489256cf09277faaa5ff490db880ec6871eb3', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x90d972f32323c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:21.000Z'}}, {'blockNum': '0x937656', 'uniqueId': '0x13f3a7151ba43487d63f80536ce6498249f9b0e3eb9089cfc8c43426249a73a3:log:52', 'hash': '0x13f3a7151ba43487d63f80536ce6498249f9b0e3eb9089cfc8c43426249a73a3', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 3074.3121029293034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa6a8a6a935e942a789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:21.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26:log:16', 'hash': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1764.559975097864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5fa8305c4fe450e5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26:log:21', 'hash': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1764.559975097864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5fa8305c4fe450e5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26:log:22', 'hash': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1764.88124043994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5faca5b97045640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0x9de4df049f4ef83f84441040bfe59dd677aef8988315da877f40fd69a5fa77f2:log:110', 'hash': '0x9de4df049f4ef83f84441040bfe59dd677aef8988315da877f40fd69a5fa77f2', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1196.6884478105344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40df636af4e07b3182', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0x9de4df049f4ef83f84441040bfe59dd677aef8988315da877f40fd69a5fa77f2:log:115', 'hash': '0x9de4df049f4ef83f84441040bfe59dd677aef8988315da877f40fd69a5fa77f2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 1196.6884478105344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40df636af4e07b3182', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x93765c', 'uniqueId': '0x7e26730a74100d1e94707d479d21dcd2801d0f594182ddd4c6ff940257cbd938:log:13', 'hash': '0x7e26730a74100d1e94707d479d21dcd2801d0f594182ddd4c6ff940257cbd938', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1019.0125527988931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x373da3d5cf8a0244f2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:58.000Z'}}, {'blockNum': '0x937660', 'uniqueId': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3:log:214', 'hash': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3299.281712199125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb2dabb44e6c36e8d36', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:06:51.000Z'}}, {'blockNum': '0x937660', 'uniqueId': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3:log:219', 'hash': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 3299.281712199125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb2dabb44e6c36e8d36', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:06:51.000Z'}}, {'blockNum': '0x937660', 'uniqueId': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3:log:221', 'hash': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3299.281712199125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb2dabb44e6c36e8d36', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:06:51.000Z'}}, {'blockNum': '0x937660', 'uniqueId': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3:log:222', 'hash': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3299.281712199125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb2dabb44e6c36e8d36', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:06:51.000Z'}}, {'blockNum': '0x937661', 'uniqueId': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71:log:2', 'hash': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 1457.3991784962964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f0179ff35e9db03a4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:10.000Z'}}, {'blockNum': '0x937661', 'uniqueId': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71:log:4', 'hash': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1457.3991784962964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f0179ff35e9db03a4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:10.000Z'}}, {'blockNum': '0x937661', 'uniqueId': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71:log:5', 'hash': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1457.3991784962964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f0179ff35e9db03a4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:10.000Z'}}, {'blockNum': '0x937663', 'uniqueId': '0x194d1d899b42cfab356f3ffeb8ef878a97de0d04a7563854798316b6623505ee:log:6', 'hash': '0x194d1d899b42cfab356f3ffeb8ef878a97de0d04a7563854798316b6623505ee', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 3372.463033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb6d2538c7045789000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:22.000Z'}}, {'blockNum': '0x937665', 'uniqueId': '0x7ba8ea127bdbce721e79b2a242cef6b47531cb1ded967e160c65c76785804019:log:3', 'hash': '0x7ba8ea127bdbce721e79b2a242cef6b47531cb1ded967e160c65c76785804019', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3a469f3467e8ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:52.000Z'}}, {'blockNum': '0x93766d', 'uniqueId': '0x9a288a78472cabff1dab7f31492082b13fe6394bddd9211f1722f82f56f508c5:log:72', 'hash': '0x9a288a78472cabff1dab7f31492082b13fe6394bddd9211f1722f82f56f508c5', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 1197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40e3b64605ae940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:09:57.000Z'}}, {'blockNum': '0x93767f', 'uniqueId': '0x03969566a81f40164eb1f58073a073d39024ba1082b7d7290edac78478f106f8:log:2', 'hash': '0x03969566a81f40164eb1f58073a073d39024ba1082b7d7290edac78478f106f8', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x83225e6396b5ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:12:42.000Z'}}, {'blockNum': '0x937693', 'uniqueId': '0xa9135052d77cbcaec92946e67ef5c01919d385c2b7b80e2abc6dd5382226af18:log:31', 'hash': '0xa9135052d77cbcaec92946e67ef5c01919d385c2b7b80e2abc6dd5382226af18', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3372.463033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb6d2538c7045789000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:17:06.000Z'}}, {'blockNum': '0x937693', 'uniqueId': '0x49d1b19d0c65515732fd547de5b4b196e03c9f8b3d849d4701b71a03fdedbe55:log:33', 'hash': '0x49d1b19d0c65515732fd547de5b4b196e03c9f8b3d849d4701b71a03fdedbe55', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7ce66c50e284000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:17:06.000Z'}}, {'blockNum': '0x9376a7', 'uniqueId': '0x16b2fca42d5f10cdfb06f59433c710e673d434db9dc56a89d46cbe9f7f6f9b16:log:2', 'hash': '0x16b2fca42d5f10cdfb06f59433c710e673d434db9dc56a89d46cbe9f7f6f9b16', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x81feef66d9fab80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:20:56.000Z'}}, {'blockNum': '0x9376b0', 'uniqueId': '0x2093772a8a2e1babd7dd6f0e9ae9cbc897497b2e144cf9a59da007d871d6f5bf:log:171', 'hash': '0x2093772a8a2e1babd7dd6f0e9ae9cbc897497b2e144cf9a59da007d871d6f5bf', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015857b549a961400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:23:57.000Z'}}, {'blockNum': '0x9376b0', 'uniqueId': '0x72835387ec7acb3868b08e1ba3c2009f31f6c4d610a51913c1e545ca0a947eab:log:174', 'hash': '0x72835387ec7acb3868b08e1ba3c2009f31f6c4d610a51913c1e545ca0a947eab', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0195fac0bd93d4640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:23:57.000Z'}}, {'blockNum': '0x9376b1', 'uniqueId': '0x9dbc2b3f87b31341f036fce77225f3f0a90727e27174182503862eafe671f463:log:70', 'hash': '0x9dbc2b3f87b31341f036fce77225f3f0a90727e27174182503862eafe671f463', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 669.9002200914208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2450bbace3c1227eae', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:24:22.000Z'}}, {'blockNum': '0x9376b2', 'uniqueId': '0x6ad5e940eed2f089fd0d9ceebba5ba7d731a0b4ac76a250ac99add762db96739:log:0', 'hash': '0x6ad5e940eed2f089fd0d9ceebba5ba7d731a0b4ac76a250ac99add762db96739', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'value': 2409.0979649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8298f34b20e4f8e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:24:56.000Z'}}, {'blockNum': '0x9376b4', 'uniqueId': '0x6650125b4ba63334eae07aa24d8bed8f275efeadc3ea5a5b65c75b5bec1cfd24:log:16', 'hash': '0x6650125b4ba63334eae07aa24d8bed8f275efeadc3ea5a5b65c75b5bec1cfd24', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1729.1804453323407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5dbd33057069efaff5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:25:06.000Z'}}, {'blockNum': '0x9376b5', 'uniqueId': '0x819a97b51eb11189b9bc9ee71cd505377ba11df6cdddfecb3145c6983e858623:log:35', 'hash': '0x819a97b51eb11189b9bc9ee71cd505377ba11df6cdddfecb3145c6983e858623', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1694.2439903044349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5bd85bccb14832bdd8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:25:38.000Z'}}, {'blockNum': '0x9376b5', 'uniqueId': '0x819a97b51eb11189b9bc9ee71cd505377ba11df6cdddfecb3145c6983e858623:log:37', 'hash': '0x819a97b51eb11189b9bc9ee71cd505377ba11df6cdddfecb3145c6983e858623', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1694.2439903044349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5bd85bccb14832bdd8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:25:38.000Z'}}, {'blockNum': '0x9376e3', 'uniqueId': '0xc8b04e794e047331db1767b8ce1a2d55df4b31827ed2e1821dd6a47083f14a31:log:130', 'hash': '0xc8b04e794e047331db1767b8ce1a2d55df4b31827ed2e1821dd6a47083f14a31', 'from': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2409.0979649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8298f34b20e4f8e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:07.000Z'}}, {'blockNum': '0x9376e7', 'uniqueId': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b:log:21', 'hash': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.535785458645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a28171f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:59.000Z'}}, {'blockNum': '0x9376e7', 'uniqueId': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b:log:23', 'hash': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.535785458645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a28171f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:59.000Z'}}, {'blockNum': '0x9376e7', 'uniqueId': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b:log:28', 'hash': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:59.000Z'}}, {'blockNum': '0x9376e7', 'uniqueId': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b:log:30', 'hash': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:59.000Z'}}, {'blockNum': '0x9376f0', 'uniqueId': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6:log:21', 'hash': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1701.3014195409198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c3a4cd330f4569a09', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:37:25.000Z'}}, {'blockNum': '0x9376f0', 'uniqueId': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6:log:23', 'hash': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1701.3014195409198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c3a4cd330f4569a09', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:37:25.000Z'}}, {'blockNum': '0x9376f0', 'uniqueId': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6:log:28', 'hash': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1701.3014195409196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c3a4cd330f4540000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:37:25.000Z'}}, {'blockNum': '0x937702', 'uniqueId': '0x623f6f0127dda4fe89d65ea73d5bd7fbca5dddc7b8957687bf2f6399f0344d09:log:10', 'hash': '0x623f6f0127dda4fe89d65ea73d5bd7fbca5dddc7b8957687bf2f6399f0344d09', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb7a9f1f19b4f700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:41:26.000Z'}}, {'blockNum': '0x937711', 'uniqueId': '0x96fa617ae84e343a3e6a52d117fa45bf2d7808d85a53c692481439f561ecc100:log:165', 'hash': '0x96fa617ae84e343a3e6a52d117fa45bf2d7808d85a53c692481439f561ecc100', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14110.472595331794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02fcee2500f763d1ee79', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:44:26.000Z'}}, {'blockNum': '0x937727', 'uniqueId': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c:log:117', 'hash': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2b3086', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:50:13.000Z'}}, {'blockNum': '0x937727', 'uniqueId': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c:log:119', 'hash': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2b3086', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:50:13.000Z'}}, {'blockNum': '0x937727', 'uniqueId': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c:log:124', 'hash': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:50:13.000Z'}}, {'blockNum': '0x937727', 'uniqueId': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c:log:126', 'hash': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:50:13.000Z'}}, {'blockNum': '0x937733', 'uniqueId': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774:log:125', 'hash': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.5357854586455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2cbb2a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:52:11.000Z'}}, {'blockNum': '0x937733', 'uniqueId': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774:log:127', 'hash': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.5357854586455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2cbb2a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:52:11.000Z'}}, {'blockNum': '0x937733', 'uniqueId': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774:log:132', 'hash': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:52:11.000Z'}}, {'blockNum': '0x937733', 'uniqueId': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774:log:134', 'hash': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:52:11.000Z'}}, {'blockNum': '0x937736', 'uniqueId': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558:log:53', 'hash': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1139.3115216312697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dc31fa097ad98562f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:53:13.000Z'}}, {'blockNum': '0x937736', 'uniqueId': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558:log:55', 'hash': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1139.3115216312697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dc31fa097ad98562f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:53:13.000Z'}}, {'blockNum': '0x937736', 'uniqueId': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558:log:60', 'hash': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1139.3115216312697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dc31fa097ad98562f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:53:13.000Z'}}, {'blockNum': '0x93773a', 'uniqueId': '0x6744c117c6c92f132d623a339ea2b02ca0c731bf6c7e518832a1406083c8fd4c:log:14', 'hash': '0x6744c117c6c92f132d623a339ea2b02ca0c731bf6c7e518832a1406083c8fd4c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 9117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ee3bca9c1054540000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:53:40.000Z'}}, {'blockNum': '0x937744', 'uniqueId': '0x734cca5626f7d4883241bf6f108c592698c473730713c970205ef13c2d031b08:log:5', 'hash': '0x734cca5626f7d4883241bf6f108c592698c473730713c970205ef13c2d031b08', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1780, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x607e765927e3500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:56:04.000Z'}}, {'blockNum': '0x937758', 'uniqueId': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b:log:25', 'hash': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1132.4579681678613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6402ea077a004b38', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:59:38.000Z'}}, {'blockNum': '0x937758', 'uniqueId': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b:log:27', 'hash': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1132.4579681678613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6402ea077a004b38', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:59:38.000Z'}}, {'blockNum': '0x937758', 'uniqueId': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b:log:32', 'hash': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1132.4579681678613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6402ea077a004b38', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:59:38.000Z'}}, {'blockNum': '0x93776d', 'uniqueId': '0x2c004afe2d1656ca59dba939268c0bbde16de66ad1ac0f056bc8ccd35b3a13aa:log:55', 'hash': '0x2c004afe2d1656ca59dba939268c0bbde16de66ad1ac0f056bc8ccd35b3a13aa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa0f326e99056c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:04:50.000Z'}}, {'blockNum': '0x937778', 'uniqueId': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93:log:95', 'hash': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1722.7213803886134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5d638fd01829e5146b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:08:25.000Z'}}, {'blockNum': '0x937778', 'uniqueId': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93:log:97', 'hash': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1722.7213803886134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5d638fd01829e5146b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:08:25.000Z'}}, {'blockNum': '0x937778', 'uniqueId': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93:log:102', 'hash': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:08:25.000Z'}}, {'blockNum': '0x937778', 'uniqueId': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93:log:104', 'hash': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:08:25.000Z'}}, {'blockNum': '0x937788', 'uniqueId': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed:log:47', 'hash': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1385.0491445202736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4b156b0aa2e594d12d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:11:39.000Z'}}, {'blockNum': '0x937788', 'uniqueId': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed:log:49', 'hash': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1385.0491445202736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4b156b0aa2e594d12d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:11:39.000Z'}}, {'blockNum': '0x937788', 'uniqueId': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed:log:54', 'hash': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1385.0491445202733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4b156b0aa2e5900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:11:39.000Z'}}, {'blockNum': '0x9377a1', 'uniqueId': '0x5c27a3d2695754ea7e3dba52faea511233112102dbb2030ee46f89d859fdec89:log:13', 'hash': '0x5c27a3d2695754ea7e3dba52faea511233112102dbb2030ee46f89d859fdec89', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9ac5158d8fcc3c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:16:57.000Z'}}, {'blockNum': '0x9377d9', 'uniqueId': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0:log:51', 'hash': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2b7f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:31:08.000Z'}}, {'blockNum': '0x9377d9', 'uniqueId': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0:log:53', 'hash': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2b7f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:31:08.000Z'}}, {'blockNum': '0x9377d9', 'uniqueId': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0:log:58', 'hash': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.535785458645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:31:08.000Z'}}, {'blockNum': '0x9377d9', 'uniqueId': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0:log:60', 'hash': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.535785458645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:31:08.000Z'}}, {'blockNum': '0x9377e4', 'uniqueId': '0x90f9f760e3e24f11c6a61ad2fb9886887ebaa9cc9d2f36bd45e67d0b17545125:log:118', 'hash': '0x90f9f760e3e24f11c6a61ad2fb9886887ebaa9cc9d2f36bd45e67d0b17545125', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef5004a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:33:27.000Z'}}, {'blockNum': '0x9377e4', 'uniqueId': '0x90f9f760e3e24f11c6a61ad2fb9886887ebaa9cc9d2f36bd45e67d0b17545125:log:120', 'hash': '0x90f9f760e3e24f11c6a61ad2fb9886887ebaa9cc9d2f36bd45e67d0b17545125', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x4e7ff3aa1713f2ec10c315382d4ed8e99a193589', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef5004a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:33:27.000Z'}}, {'blockNum': '0x9377ee', 'uniqueId': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b:log:15', 'hash': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1315.3891368900222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x474eb0fac5697222f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:35:12.000Z'}}, {'blockNum': '0x9377ee', 'uniqueId': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b:log:17', 'hash': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1315.3891368900222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x474eb0fac5697222f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:35:12.000Z'}}, {'blockNum': '0x9377ee', 'uniqueId': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b:log:22', 'hash': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1315.3891368900222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x474eb0fac5697222f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:35:12.000Z'}}, {'blockNum': '0x9377fa', 'uniqueId': '0xab816b35f5ebe7b0ba3a709e6dd2411c96a60a778b13ed538ef5c7eee0b09e0b:log:7', 'hash': '0xab816b35f5ebe7b0ba3a709e6dd2411c96a60a778b13ed538ef5c7eee0b09e0b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x49ff2e2beb88340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:36:44.000Z'}}, {'blockNum': '0x937809', 'uniqueId': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849:log:81', 'hash': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.5357854586455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2d69cc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:41:20.000Z'}}, {'blockNum': '0x937809', 'uniqueId': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849:log:83', 'hash': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.5357854586455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2d69cc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:41:20.000Z'}}, {'blockNum': '0x937809', 'uniqueId': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849:log:88', 'hash': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:41:20.000Z'}}, {'blockNum': '0x937809', 'uniqueId': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849:log:90', 'hash': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:41:20.000Z'}}, {'blockNum': '0x937823', 'uniqueId': '0xd8b36562229e80e15114fe5c2e05adb6add3d1e1fc129cfbd3ebcd61001388fb:log:6', 'hash': '0xd8b36562229e80e15114fe5c2e05adb6add3d1e1fc129cfbd3ebcd61001388fb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbefb724a58952c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:46:50.000Z'}}, {'blockNum': '0x937841', 'uniqueId': '0xdcb9c83de23bd10fac815dfa7fed30504a318e609977499b50166e6bdbc33be8:log:156', 'hash': '0xdcb9c83de23bd10fac815dfa7fed30504a318e609977499b50166e6bdbc33be8', 'from': '0x0a59d2b32dc7613596a4d46d069344d8a528dfcf', 'to': '0x976576fd6bd95fa72345f51efece3f0a4804725e', 'value': 237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cd9092451f7940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:52:39.000Z'}}, {'blockNum': '0x93785c', 'uniqueId': '0xca499081288473c3a671384f882eab977e640b7062f292f6378b39cb3a6a1fc9:log:13', 'hash': '0xca499081288473c3a671384f882eab977e640b7062f292f6378b39cb3a6a1fc9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 1971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6ad91ea931c6ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:00:36.000Z'}}, {'blockNum': '0x93787f', 'uniqueId': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7:log:28', 'hash': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1298.1914591840848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4660068e03c96324aa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:08:08.000Z'}}, {'blockNum': '0x93787f', 'uniqueId': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7:log:30', 'hash': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1298.1914591840848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4660068e03c96324aa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:08:08.000Z'}}, {'blockNum': '0x93787f', 'uniqueId': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7:log:35', 'hash': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1298.1914591840848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4660068e03c96324aa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:08:08.000Z'}}, {'blockNum': '0x93788c', 'uniqueId': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22:log:155', 'hash': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1499.5111140031704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5149e5a56f7d3da981', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:10:41.000Z'}}, {'blockNum': '0x93788c', 'uniqueId': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22:log:157', 'hash': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1499.5111140031704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5149e5a56f7d3da981', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:10:41.000Z'}}, {'blockNum': '0x93788c', 'uniqueId': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22:log:162', 'hash': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1499.5111140031704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5149e5a56f7d3da981', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:10:41.000Z'}}, {'blockNum': '0x93788c', 'uniqueId': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22:log:164', 'hash': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1499.5111140031704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5149e5a56f7d3da981', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:10:41.000Z'}}, {'blockNum': '0x937891', 'uniqueId': '0x5ddbca8b869375815c2e1f0ceac0b349d143a2c8e1812b4381464d1ededcbedd:log:8', 'hash': '0x5ddbca8b869375815c2e1f0ceac0b349d143a2c8e1812b4381464d1ededcbedd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5dacd13ca9e3000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:11:58.000Z'}}, {'blockNum': '0x937933', 'uniqueId': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989:log:168', 'hash': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989', 'from': '0x99b856c2644277b24a335122abcef34a7f0f0abb', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 394.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x155e4e050f8d268000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:49:03.000Z'}}, {'blockNum': '0x937933', 'uniqueId': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989:log:170', 'hash': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 394.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x155e4e050f8d268000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:49:03.000Z'}}, {'blockNum': '0x937933', 'uniqueId': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989:log:171', 'hash': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 394.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x155e4e050f8d268000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:49:03.000Z'}}, {'blockNum': '0x93793f', 'uniqueId': '0xf7cb59259552f2c03a64bf1f2d05725ec180453d11bb1b637626a9a1cca735d3:log:8', 'hash': '0xf7cb59259552f2c03a64bf1f2d05725ec180453d11bb1b637626a9a1cca735d3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x668038452aa00635b53f13c67cebd169aec268ff', 'value': 77723.179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x107561c93172ec578000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:51:59.000Z'}}, {'blockNum': '0x937968', 'uniqueId': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f:log:20', 'hash': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 795.1555720566533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b1b0013dee957dbf3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:02:33.000Z'}}, {'blockNum': '0x937968', 'uniqueId': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f:log:22', 'hash': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 795.1555720566533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b1b0013dee957dbf3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:02:33.000Z'}}, {'blockNum': '0x937968', 'uniqueId': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f:log:26', 'hash': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 795.1555720566533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b1b0013dee957dbf3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:02:33.000Z'}}, {'blockNum': '0x937970', 'uniqueId': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9:log:120', 'hash': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1628.6871341214696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x584a930f54472ee7c8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:05:09.000Z'}}, {'blockNum': '0x937970', 'uniqueId': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9:log:122', 'hash': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1628.6871341214696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x584a930f54472ee7c8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:05:09.000Z'}}, {'blockNum': '0x937970', 'uniqueId': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9:log:127', 'hash': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1628.6871341214694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x584a930f54472c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:05:09.000Z'}}, {'blockNum': '0x937970', 'uniqueId': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9:log:129', 'hash': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1628.6871341214694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x584a930f54472c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:05:09.000Z'}}, {'blockNum': '0x937977', 'uniqueId': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c:log:23', 'hash': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 802.3515500843154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b7edd53c2cfa76c6b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:17.000Z'}}, {'blockNum': '0x937977', 'uniqueId': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c:log:25', 'hash': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 802.3515500843154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b7edd53c2cfa76c6b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:17.000Z'}}, {'blockNum': '0x937977', 'uniqueId': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c:log:29', 'hash': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 802.3515500843154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b7edd53c2cfa76c6b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:17.000Z'}}, {'blockNum': '0x937978', 'uniqueId': '0x1203b1c150ed8ecb67d6f482e272c39a0e5e19c3a3de1bb8f0b6101d31cef070:log:0', 'hash': '0x1203b1c150ed8ecb67d6f482e272c39a0e5e19c3a3de1bb8f0b6101d31cef070', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x97a02c28dbdf940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:20.000Z'}}, {'blockNum': '0x937978', 'uniqueId': '0x10b4193eb9eb0b02edeb01631ba127277848e04726a51bc4aa1efc0268cb368b:log:1', 'hash': '0x10b4193eb9eb0b02edeb01631ba127277848e04726a51bc4aa1efc0268cb368b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2110.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x726e2a10a5b67b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:20.000Z'}}, {'blockNum': '0x937979', 'uniqueId': '0xdaa724e6953f54fe7908812880ffac0a587921dfd1f49c750588aebdbc5c008d:log:71', 'hash': '0xdaa724e6953f54fe7908812880ffac0a587921dfd1f49c750588aebdbc5c008d', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2110.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x726e2a10a5b67b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:28.000Z'}}, {'blockNum': '0x937979', 'uniqueId': '0xdaa724e6953f54fe7908812880ffac0a587921dfd1f49c750588aebdbc5c008d:log:73', 'hash': '0xdaa724e6953f54fe7908812880ffac0a587921dfd1f49c750588aebdbc5c008d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 2110.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x726e2a10a5b67b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:28.000Z'}}, {'blockNum': '0x9379e8', 'uniqueId': '0x76e36579ef31aa62ca74f53cc36970f63fd125098b55696dd806e7d2012570f3:log:0', 'hash': '0x76e36579ef31aa62ca74f53cc36970f63fd125098b55696dd806e7d2012570f3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 2138.839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x73f25a9271ffb58000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:35:01.000Z'}}, {'blockNum': '0x9379fb', 'uniqueId': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b:log:181', 'hash': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1001.9927058397598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x365171312d27594f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:39:36.000Z'}}, {'blockNum': '0x9379fb', 'uniqueId': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b:log:183', 'hash': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1001.9927058397598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x365171312d27594f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:39:36.000Z'}}, {'blockNum': '0x9379fb', 'uniqueId': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b:log:188', 'hash': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1001.9927058397598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x365171312d27594f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:39:36.000Z'}}, {'blockNum': '0x937a0b', 'uniqueId': '0x07e1c3b678710a211d6eaa2f66a7f87885ab2e2ee043aac8979ecb04f320d860:log:8', 'hash': '0x07e1c3b678710a211d6eaa2f66a7f87885ab2e2ee043aac8979ecb04f320d860', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9985e5236bc2400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:44:01.000Z'}}, {'blockNum': '0x937a1a', 'uniqueId': '0x88cf3049fc6e6dbc8c9012a310a989e5cc637eda94628016742498a4bb7a98bc:log:4', 'hash': '0x88cf3049fc6e6dbc8c9012a310a989e5cc637eda94628016742498a4bb7a98bc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3195c3f94154364e897711e501e104f40d8e23fb', 'value': 1405.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4c32c1dfc250d10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:46:12.000Z'}}, {'blockNum': '0x937a36', 'uniqueId': '0x6c5a7043a7dec2d6292beec158414f110983bd0ce1003c618f117ef31635e226:log:85', 'hash': '0x6c5a7043a7dec2d6292beec158414f110983bd0ce1003c618f117ef31635e226', 'from': '0x3195c3f94154364e897711e501e104f40d8e23fb', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1405.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4c32c1dfc250d10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:51:10.000Z'}}, {'blockNum': '0x937a43', 'uniqueId': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4:log:68', 'hash': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 826.4997694141875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2ccdfd094c7ae8e009', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:54:12.000Z'}}, {'blockNum': '0x937a43', 'uniqueId': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4:log:70', 'hash': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 826.4997694141875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2ccdfd094c7ae8e009', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:54:12.000Z'}}, {'blockNum': '0x937a43', 'uniqueId': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4:log:71', 'hash': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 826.4997694141875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2ccdfd094c7ae8e009', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:54:12.000Z'}}, {'blockNum': '0x937ab1', 'uniqueId': '0x9d66f8af8da5908d91396c96ca4f5c20b2791fe186dea74d681ff2c200dabf24:log:86', 'hash': '0x9d66f8af8da5908d91396c96ca4f5c20b2791fe186dea74d681ff2c200dabf24', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 12572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02a9878c5eb072f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T20:17:45.000Z'}}, {'blockNum': '0x937ab3', 'uniqueId': '0x280f90ec3877a3ed22ebea91ee5ef4691e543c4c1290b4156047fca882392ca1:log:18', 'hash': '0x280f90ec3877a3ed22ebea91ee5ef4691e543c4c1290b4156047fca882392ca1', 'from': '0x460b94fe8b7899b4a5f7ea74e90536e2c5f70fcd', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 1833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x635dfc2c598b040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T20:18:16.000Z'}}, {'blockNum': '0x937ab3', 'uniqueId': '0xc82ec2adf3fceffc699dea742f9a78fabf4b612bb868e4da07178c9e9def45af:log:27', 'hash': '0xc82ec2adf3fceffc699dea742f9a78fabf4b612bb868e4da07178c9e9def45af', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2138.839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x73f25a9271ffb58000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T20:18:16.000Z'}}, {'blockNum': '0x937abd', 'uniqueId': '0x2578cf5973f928d6f138a9d02870355c061aca541fed3a1c142c6f95145664b3:log:114', 'hash': '0x2578cf5973f928d6f138a9d02870355c061aca541fed3a1c142c6f95145664b3', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6ad91ea931c6ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T20:21:45.000Z'}}, {'blockNum': '0x937bcc', 'uniqueId': '0x6d6d4c86ddc59d0f260fb5bb8d14ad53578b1d048bc3bf14f431bf03de7cb278:log:55', 'hash': '0x6d6d4c86ddc59d0f260fb5bb8d14ad53578b1d048bc3bf14f431bf03de7cb278', 'from': '0xc0606ca09ede5b17f9d1feefd86aee4185d1c321', 'to': '0x1baab4ad98dd56dd3d1c8f9ce961e01c7a9f3b2f', 'value': 11.094799686074442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x99f8a5881e952346', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T21:19:21.000Z'}}, {'blockNum': '0x937bfc', 'uniqueId': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c:log:27', 'hash': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 822.3352953907452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c9431da3d1f4900fb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T21:30:42.000Z'}}, {'blockNum': '0x937bfc', 'uniqueId': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c:log:29', 'hash': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 822.3352953907452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c9431da3d1f4900fb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T21:30:42.000Z'}}, {'blockNum': '0x937bfc', 'uniqueId': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c:log:30', 'hash': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 822.3352953907452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c9431da3d1f4900fb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T21:30:42.000Z'}}, {'blockNum': '0x937c82', 'uniqueId': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39:log:107', 'hash': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 622.8214360731127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21c3623c42548beadf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:02:14.000Z'}}, {'blockNum': '0x937c82', 'uniqueId': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39:log:109', 'hash': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 622.8214360731127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21c3623c42548beadf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:02:14.000Z'}}, {'blockNum': '0x937c82', 'uniqueId': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39:log:110', 'hash': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 622.8214360731127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21c3623c42548beadf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:02:14.000Z'}}, {'blockNum': '0x937c8e', 'uniqueId': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4:log:62', 'hash': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1252.3909169451445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x43e46a578299139e5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:21.000Z'}}, {'blockNum': '0x937c8e', 'uniqueId': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4:log:67', 'hash': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1252.3909169451445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x43e46a578299139e5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:21.000Z'}}, {'blockNum': '0x937c8e', 'uniqueId': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4:log:68', 'hash': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1252.5144620589613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x43e6214322f7dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:21.000Z'}}, {'blockNum': '0x937c8e', 'uniqueId': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4:log:69', 'hash': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1252.5144620589613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x43e6214322f7dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:21.000Z'}}, {'blockNum': '0x937c8f', 'uniqueId': '0xef1a02f6d3d171c0a504c2e605a226997f47027ba07733835679e459e1df2932:log:0', 'hash': '0xef1a02f6d3d171c0a504c2e605a226997f47027ba07733835679e459e1df2932', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 2695.54893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9220418e34664a2000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:22.000Z'}}, {'blockNum': '0x937c9b', 'uniqueId': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a:log:183', 'hash': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 717.710576630642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26e83c2eda1a306b1b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:09:05.000Z'}}, {'blockNum': '0x937c9b', 'uniqueId': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a:log:185', 'hash': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 717.710576630642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26e83c2eda1a306b1b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:09:05.000Z'}}, {'blockNum': '0x937c9b', 'uniqueId': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a:log:186', 'hash': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 717.710576630642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26e83c2eda1a306b1b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:09:05.000Z'}}, {'blockNum': '0x937cb4', 'uniqueId': '0x58b2b334b0beb2e11aa5a0880e3c6b75b446f3de0882f10bc9cf6a058dc5bbf3:log:9', 'hash': '0x58b2b334b0beb2e11aa5a0880e3c6b75b446f3de0882f10bc9cf6a058dc5bbf3', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2695.54893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9220418e34664a2000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:14:05.000Z'}}, {'blockNum': '0x937d9d', 'uniqueId': '0x40c193421aac1e240e60ae6a41d358e068c02027bba381b5afede00a2cf3fea3:log:7', 'hash': '0x40c193421aac1e240e60ae6a41d358e068c02027bba381b5afede00a2cf3fea3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x52de72e85d022281c05d5214cfcd54e6faa614e1', 'value': 1980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6b56051582a9700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T23:02:47.000Z'}}, {'blockNum': '0x937dc9', 'uniqueId': '0x2710365a991feee75b984d742cf58e1d853500852b093cfed18af76cb5268b3d:log:13', 'hash': '0x2710365a991feee75b984d742cf58e1d853500852b093cfed18af76cb5268b3d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x52de72e85d022281c05d5214cfcd54e6faa614e1', 'value': 18891.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040015fbbded6f110000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T23:13:07.000Z'}}, {'blockNum': '0x937f93', 'uniqueId': '0x22cba893e100f3d324114d1c2f65af4f767204b5def1afb12f1b599f2c1214e8:log:0', 'hash': '0x22cba893e100f3d324114d1c2f65af4f767204b5def1afb12f1b599f2c1214e8', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xd328195291025563481dfb47978f70693251f5a5', 'value': 53.8625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02eb7e0a5fce7a4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T00:47:09.000Z'}}, {'blockNum': '0x93800a', 'uniqueId': '0x65a2a50cd7dd930908d567be324a025a05a75250ab2b1b7ead9d23ec86b37825:log:140', 'hash': '0x65a2a50cd7dd930908d567be324a025a05a75250ab2b1b7ead9d23ec86b37825', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2021.2777493452847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d92dd1bd74ec0b5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:15:08.000Z'}}, {'blockNum': '0x93800a', 'uniqueId': '0x65a2a50cd7dd930908d567be324a025a05a75250ab2b1b7ead9d23ec86b37825:log:145', 'hash': '0x65a2a50cd7dd930908d567be324a025a05a75250ab2b1b7ead9d23ec86b37825', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2021.2777493452847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d92dd1bd74ec0b5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:15:08.000Z'}}, {'blockNum': '0x938015', 'uniqueId': '0xa4f12359f4e1c7a3221a158f51b572390aac9001ec41b4187001c69075d19a49:log:71', 'hash': '0xa4f12359f4e1c7a3221a158f51b572390aac9001ec41b4187001c69075d19a49', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2021.2777493452847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d92dd1bd74ec0b5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:18:06.000Z'}}, {'blockNum': '0x938015', 'uniqueId': '0xa4f12359f4e1c7a3221a158f51b572390aac9001ec41b4187001c69075d19a49:log:73', 'hash': '0xa4f12359f4e1c7a3221a158f51b572390aac9001ec41b4187001c69075d19a49', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 2021.2777493452847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d92dd1bd74ec0b5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:18:06.000Z'}}, {'blockNum': '0x9380a6', 'uniqueId': '0x0db27526311422ea9c49e640f2c675a22c23f8cc18f5e1f11c82d6224e2aea80:log:18', 'hash': '0x0db27526311422ea9c49e640f2c675a22c23f8cc18f5e1f11c82d6224e2aea80', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'value': 4194.3638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe3607da5687d918000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:54:11.000Z'}}, {'blockNum': '0x9380e3', 'uniqueId': '0x29bd255a9037720aca925fb588c94cb4b0e258df9ac3c55b4a4a8daae5306e8a:log:39', 'hash': '0x29bd255a9037720aca925fb588c94cb4b0e258df9ac3c55b4a4a8daae5306e8a', 'from': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 4194.3638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe3607da5687d918000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T02:08:15.000Z'}}]}}
Number of returned transfers:  199
Answer is complete
 
symbol             EDO
group              TCG
date        2020-03-26
hour             15:59
exchange       binance
Name: 581, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2020-03-26 15:59:00 2020-03-26 03:59:00 2020-03-27 03:59:00
Unix timestamps:  1585191540.0 1585277940.0
Hex Block Numbers:  0x94aff4 0x94c96b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GRS
group              TCG
date        2020-04-02
hour             15:59
exchange       binance
Name: 582, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: GRS, Contract: 
Datetime timestamps:  2020-04-02 15:59:00 2020-04-02 03:59:00 2020-04-03 03:59:00
Unix timestamps:  1585792740.0 1585879140.0
Hex Block Numbers:  0x9560f6 0x957a42
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GVT
group              TCG
date        2020-04-15
hour             15:56
exchange       binance
Name: 583, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-04-15 15:56:00 2020-04-15 03:56:00 2020-04-16 03:56:00
Unix timestamps:  1586915760.0 1587002160.0
Hex Block Numbers:  0x96ab04 0x96c468
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NAS
group              TCG
date        2020-05-30
hour             16:00
exchange       binance
Name: 584, dtype: object
HERE
 Symbol: NAS, Contract: 0x5d65d971895edc438f465c17db6992698a52318d
Datetime timestamps:  2020-05-30 16:00:00 2020-05-30 04:00:00 2020-05-31 04:00:00
Unix timestamps:  1590804000.0 1590890400.0
Hex Block Numbers:  0x9b185f 0x9b3197
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            CTXC
group              TCG
date        2020-06-03
hour             16:00
exchange       binance
Name: 585, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CTXC, Contract: 
Datetime timestamps:  2020-06-03 16:00:00 2020-06-03 04:00:00 2020-06-04 04:00:00
Unix timestamps:  1591149600.0 1591236000.0
Hex Block Numbers:  0x9b7cf3 0x9b960d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             PPT
group              TCG
date        2020-06-08
hour             16:05
exchange       binance
Name: 586, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-06-08 16:05:00 2020-06-08 04:05:00 2020-06-09 04:05:00
Unix timestamps:  1591581900.0 1591668300.0
Hex Block Numbers:  0x9bfaeb 0x9c1417
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9bfaf8', 'uniqueId': '0xaa774a412cedfd955ac2d886257bc4f00f16d622ec4b1d55d0c27122b93ec7e8:log:69', 'hash': '0xaa774a412cedfd955ac2d886257bc4f00f16d622ec4b1d55d0c27122b93ec7e8', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:07:31.000Z'}}, {'blockNum': '0x9bfafa', 'uniqueId': '0xcde101316e0f0c2b2a6b2e2059f5927a7986d1f0dc3eb7c7e82efdbec89c1609:log:16', 'hash': '0xcde101316e0f0c2b2a6b2e2059f5927a7986d1f0dc3eb7c7e82efdbec89c1609', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x213423341652d5daaa4fcbee71641f874b9903ea', 'value': 338.95888712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07e45a3748', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:07:47.000Z'}}, {'blockNum': '0x9bfbc3', 'uniqueId': '0x89e2d24bd87543bd61d63b13e80ce72744bea090e80aab711254c980522a9d99:log:14', 'hash': '0x89e2d24bd87543bd61d63b13e80ce72744bea090e80aab711254c980522a9d99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x847c0d83f3f35a3d4eb8f121406c5445cb235264', 'value': 107.91089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028332f368', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:50:47.000Z'}}, {'blockNum': '0x9bfc53', 'uniqueId': '0x7bde4a7038e391c91be8994fd6dfde3a5037b890080d056f5e61f93d9a13242d:log:80', 'hash': '0x7bde4a7038e391c91be8994fd6dfde3a5037b890080d056f5e61f93d9a13242d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 114.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02a7abf8c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T03:24:26.000Z'}}, {'blockNum': '0x9bfc5b', 'uniqueId': '0x1593a1bc92e1a21208f6cff7a8dd62fef8b6ead230f47f1f1d8c556713f1beec:log:14', 'hash': '0x1593a1bc92e1a21208f6cff7a8dd62fef8b6ead230f47f1f1d8c556713f1beec', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xde75a7a52a7a68b2e14e168d4dfdda58208df304', 'value': 114.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02a7abf8c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T03:26:24.000Z'}}, {'blockNum': '0x9bfdbc', 'uniqueId': '0x705851dd64c871b3695c6328b2ede458d13f6414218a4243f3bf0d1358845398:log:76', 'hash': '0x705851dd64c871b3695c6328b2ede458d13f6414218a4243f3bf0d1358845398', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x5d1d240f781f1caa0771a047f31379cb36cc0ed3', 'value': 173.44137612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0409ca898c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:44:43.000Z'}}, {'blockNum': '0x9bfdd3', 'uniqueId': '0x627be615b1b0b2684fdefc4c993d96a1128b22a65201edc3489e7f2c41f6a449:log:12', 'hash': '0x627be615b1b0b2684fdefc4c993d96a1128b22a65201edc3489e7f2c41f6a449', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 259.509212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x060acba1f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:49:57.000Z'}}, {'blockNum': '0x9bfded', 'uniqueId': '0x5239eaa6267a906ab25312ee2fe403f65fc2689c68ed0db02e1c6b51be191fc6:log:137', 'hash': '0x5239eaa6267a906ab25312ee2fe403f65fc2689c68ed0db02e1c6b51be191fc6', 'from': '0x9276d54352c9bf8440a34cc98303d8141c9055be', 'to': '0xcd4ad53757e734dbb2b073e1b277471520f8617e', 'value': 1483.59965968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x228af16d10', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:54:59.000Z'}}, {'blockNum': '0x9bfe2d', 'uniqueId': '0xcdc281865bb168aba509f47be3ac94c1498a17ea8b02068e4ec091cf7735811c:log:154', 'hash': '0xcdc281865bb168aba509f47be3ac94c1498a17ea8b02068e4ec091cf7735811c', 'from': '0xf9b7818d61e7562e4636da7e7892d6d2ef8e525c', 'to': '0xa24c6a0df9e8581699056e19acdc46da70a3f291', 'value': 139.67965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03408e3b48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T05:09:54.000Z'}}, {'blockNum': '0x9bfebf', 'uniqueId': '0x89eb8014d73249e7c006ca9cf7f314b3a72e352835c9f77aa11719d77a8c747d:log:40', 'hash': '0x89eb8014d73249e7c006ca9cf7f314b3a72e352835c9f77aa11719d77a8c747d', 'from': '0xe569448c95e19bdfce0f50c0ef5c04b647e23050', 'to': '0x4314ede64153cf0be702514c2990a5f67b656202', 'value': 207.37079432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04d406b888', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T05:38:45.000Z'}}, {'blockNum': '0x9bff2c', 'uniqueId': '0xde56cf3bd16009a91a1083eba73bd937b5f8bbfa3542977c52687d8323034855:log:71', 'hash': '0xde56cf3bd16009a91a1083eba73bd937b5f8bbfa3542977c52687d8323034855', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf6e9ed8be6b06a20ceb4504b5b2654a099be0413', 'value': 7356.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xab48d49920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T06:05:52.000Z'}}, {'blockNum': '0x9c001f', 'uniqueId': '0x5e4dc95bd9828143bfccc0f5954bbfd570a4672311f535fb82800c4419dc2eef:log:118', 'hash': '0x5e4dc95bd9828143bfccc0f5954bbfd570a4672311f535fb82800c4419dc2eef', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'value': 3181.94460841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4a15de28a9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:00:42.000Z'}}, {'blockNum': '0x9c0038', 'uniqueId': '0x248c03acee1ef7a1a91d32b0496bc64ee160873c29249e95d15a659927beb215:log:153', 'hash': '0x248c03acee1ef7a1a91d32b0496bc64ee160873c29249e95d15a659927beb215', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xb2d553ab61ec7ec3d3df58d460fdcfef38b42192', 'value': 7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29b92700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:06:59.000Z'}}, {'blockNum': '0x9c00e1', 'uniqueId': '0xfbfaf4248e72b3570cfabb2b876a15d25e46b037e31092d14b5c03ff72d8ecf9:log:82', 'hash': '0xfbfaf4248e72b3570cfabb2b876a15d25e46b037e31092d14b5c03ff72d8ecf9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 106.12286332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02788aa37c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:47:20.000Z'}}, {'blockNum': '0x9c00e7', 'uniqueId': '0x649716641a2a5570be0f8d3d406ff781cb18f7311fbb7b1c4a4427222433b26a:log:163', 'hash': '0x649716641a2a5570be0f8d3d406ff781cb18f7311fbb7b1c4a4427222433b26a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbd62be0448ecf0f9a79eb09f2dcb75647b41bb5f', 'value': 106.12286332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02788aa37c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:48:51.000Z'}}, {'blockNum': '0x9c0121', 'uniqueId': '0x73d06fb2793b56fe784c7fb81220035c96414dd475fb850eb166dfba981991a0:log:24', 'hash': '0x73d06fb2793b56fe784c7fb81220035c96414dd475fb850eb166dfba981991a0', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x698fa6437475f3f86df33ea0cb612ad529954811', 'value': 108.31243952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028597aab0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:01:33.000Z'}}, {'blockNum': '0x9c0200', 'uniqueId': '0x847d61aa8b094d69d330a17d3fd4ae541d13802c60504b42029643d24b9f9d26:log:42', 'hash': '0x847d61aa8b094d69d330a17d3fd4ae541d13802c60504b42029643d24b9f9d26', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:51:23.000Z'}}, {'blockNum': '0x9c020b', 'uniqueId': '0x03345e0a69bdf4423c0c0893cebf39088f0637d30aa81846b112405570b38101:log:139', 'hash': '0x03345e0a69bdf4423c0c0893cebf39088f0637d30aa81846b112405570b38101', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xec4f69ea443bc2219dcb10cc8d007e4123a9ce6b', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:54:22.000Z'}}, {'blockNum': '0x9c02e6', 'uniqueId': '0xee6fb3f62eac86957c4647fc0e2b6f4cd9666d8e38ad3c8d24d7d3ccbd3ec943:log:165', 'hash': '0xee6fb3f62eac86957c4647fc0e2b6f4cd9666d8e38ad3c8d24d7d3ccbd3ec943', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x334ae73b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:42:16.000Z'}}, {'blockNum': '0x9c02e9', 'uniqueId': '0xca9cf0e6c511f9da8c363c13d18969f6d3253527aeb46c089384a3f05fbde5b7:log:4', 'hash': '0xca9cf0e6c511f9da8c363c13d18969f6d3253527aeb46c089384a3f05fbde5b7', 'from': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'to': '0x0c4fe355d6cb9de761afbc008cfa74c07711df9f', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:43:32.000Z'}}, {'blockNum': '0x9c02fb', 'uniqueId': '0x4e11b3d880a0286d25e25b7ac3a21c0919873bcd6e2d928a4d585cad02bc8c51:log:46', 'hash': '0x4e11b3d880a0286d25e25b7ac3a21c0919873bcd6e2d928a4d585cad02bc8c51', 'from': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'to': '0x4b16cc10e4e1c979fab50c4e67b81ec62ceb9c60', 'value': 2145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x31f1324100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:48:32.000Z'}}, {'blockNum': '0x9c0341', 'uniqueId': '0xd6040de59d2eff8c7dff43da2d262d06ebc934740125969bf071a42c5ab99343:log:22', 'hash': '0xd6040de59d2eff8c7dff43da2d262d06ebc934740125969bf071a42c5ab99343', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3dc044f6957c2cb036d9cde1153f724295dc5bf5', 'value': 8186.13821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbe992f9e48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:02:17.000Z'}}, {'blockNum': '0x9c035b', 'uniqueId': '0xc0ed033a3a9036139c6b1b3267e449f6e664528969577fdd6dbdc67b1911a576:log:10', 'hash': '0xc0ed033a3a9036139c6b1b3267e449f6e664528969577fdd6dbdc67b1911a576', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 38603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0382cbcf6b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:08:39.000Z'}}, {'blockNum': '0x9c037c', 'uniqueId': '0xb3ae67553cee762bf4e35502bfb6cd2f8d76b00854f98536f217465bf8341a7d:log:46', 'hash': '0xb3ae67553cee762bf4e35502bfb6cd2f8d76b00854f98536f217465bf8341a7d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'value': 1000.13375754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174943010a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:16:59.000Z'}}, {'blockNum': '0x9c0388', 'uniqueId': '0x69a214d5dec424cf06952e42e78dedc94556b01f675ba7f33599c4881aa47487:log:90', 'hash': '0x69a214d5dec424cf06952e42e78dedc94556b01f675ba7f33599c4881aa47487', 'from': '0x1fd7730672009e7ebbe31c01c6fb22d14950354c', 'to': '0xcde6edc4fc380c8fdda959437606eb82009b5456', 'value': 2001.13331511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e97af1d37', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:19:17.000Z'}}, {'blockNum': '0x9c03d5', 'uniqueId': '0x09fed3619eb39f4fdf1dae98281ae68a998561b888c7eff4a4903ec747f26187:log:4', 'hash': '0x09fed3619eb39f4fdf1dae98281ae68a998561b888c7eff4a4903ec747f26187', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:37:50.000Z'}}, {'blockNum': '0x9c0400', 'uniqueId': '0x78db6097c440b6b1c585a7f5615db8bf42e9a237f99792c52700ceed27830da5:log:38', 'hash': '0x78db6097c440b6b1c585a7f5615db8bf42e9a237f99792c52700ceed27830da5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'value': 3000.1115179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45da0ee1ae', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:46:07.000Z'}}, {'blockNum': '0x9c041f', 'uniqueId': '0x83b0f4f0374aa549d316d2f9c2574cddfb7046a29e23e9bb782a2c5044aa6fd7:log:12', 'hash': '0x83b0f4f0374aa549d316d2f9c2574cddfb7046a29e23e9bb782a2c5044aa6fd7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x168dd267b78d175024f70de1244a654f2909b0bb', 'value': 130.846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x030be726c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:52:52.000Z'}}, {'blockNum': '0x9c0420', 'uniqueId': '0x1917936160854817a34489ddf702806d344357b0c8664ebca54e690c195d5796:log:65', 'hash': '0x1917936160854817a34489ddf702806d344357b0c8664ebca54e690c195d5796', 'from': '0xe184a8d3a892930221284832d68c77f0d84b9382', 'to': '0x5ab1e75aeefa5883463e170d7229e5f51ece8ad1', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:52:56.000Z'}}, {'blockNum': '0x9c0459', 'uniqueId': '0xfb9ed49759798004346860dab88812ff919a8f364a46954da71330f75ea5a29b:log:203', 'hash': '0xfb9ed49759798004346860dab88812ff919a8f364a46954da71330f75ea5a29b', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:06:38.000Z'}}, {'blockNum': '0x9c04f3', 'uniqueId': '0xeba72424a744dff1539f35c8401150bcdc0a2aa1823aa11cd8290bb33c7ae286:log:74', 'hash': '0xeba72424a744dff1539f35c8401150bcdc0a2aa1823aa11cd8290bb33c7ae286', 'from': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'to': '0xc1eaeb22ac0f9c1022cc8e7866dc50fbf8c2bdd1', 'value': 45.53773145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x010f6d1059', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:39:19.000Z'}}, {'blockNum': '0x9c0517', 'uniqueId': '0x6128c13360ffe035b465958ac54f5ee326529ff7571205cae5a65492ddee9f24:log:67', 'hash': '0x6128c13360ffe035b465958ac54f5ee326529ff7571205cae5a65492ddee9f24', 'from': '0xec4f69ea443bc2219dcb10cc8d007e4123a9ce6b', 'to': '0x698fa6437475f3f86df33ea0cb612ad529954811', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:48:43.000Z'}}, {'blockNum': '0x9c05c5', 'uniqueId': '0x009f3f63ac7bb662aec3c3af80314c2d4c63394f151b801b264782516e5a3fef:log:9', 'hash': '0x009f3f63ac7bb662aec3c3af80314c2d4c63394f151b801b264782516e5a3fef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8df0a8d77e274e6fa79dd02c81a29e02b08f36ef', 'value': 2251.80299435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x346dcab0ab', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T12:29:33.000Z'}}, {'blockNum': '0x9c0633', 'uniqueId': '0x2158615eec41bdc2e95caefcb795ac437c7d161b5ef6e3df60728f1eaec8745e:log:148', 'hash': '0x2158615eec41bdc2e95caefcb795ac437c7d161b5ef6e3df60728f1eaec8745e', 'from': '0x18297afcbada55d7168598d197048bff5d0070ac', 'to': '0x0812341e41a6edfb3c34382d631f0617612ec50f', 'value': 1901.224067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2c442db32c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T12:53:25.000Z'}}, {'blockNum': '0x9c0655', 'uniqueId': '0xcc78d61464f75820f13862a3b22e8a98efda0a1ebae9f3af4c337a0ecfc42def:log:212', 'hash': '0xcc78d61464f75820f13862a3b22e8a98efda0a1ebae9f3af4c337a0ecfc42def', 'from': '0x414120ec6fd7d6ba58738c4e3149dd57e4216ca1', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 99.14647891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024ef58553', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:01:21.000Z'}}, {'blockNum': '0x9c065a', 'uniqueId': '0xa1fe0516399c38e080ee3e9587f131588be5348d0838df49221f45a7f15dd3db:log:38', 'hash': '0xa1fe0516399c38e080ee3e9587f131588be5348d0838df49221f45a7f15dd3db', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0812341e41a6edfb3c34382d631f0617612ec50f', 'value': 553.72107241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ce46f4de9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:02:35.000Z'}}, {'blockNum': '0x9c069b', 'uniqueId': '0x495065846a9994a8e006798a7dc31a216a068be9423ada5af169f2c8dcf2964a:log:30', 'hash': '0x495065846a9994a8e006798a7dc31a216a068be9423ada5af169f2c8dcf2964a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x15709a7060cd2190b76a74b73959114fd3fdfe1d', 'value': 391.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0920620380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:15:11.000Z'}}, {'blockNum': '0x9c072f', 'uniqueId': '0x982fc77537b19dbea065040c0a69dd3c3a25335106b604614c3ebcf2eb3fd93b:log:109', 'hash': '0x982fc77537b19dbea065040c0a69dd3c3a25335106b604614c3ebcf2eb3fd93b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 2962.837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44fbe27b20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:45:55.000Z'}}, {'blockNum': '0x9c0752', 'uniqueId': '0x9caff2ef68817514c1e8e213372a230b86de8a24c0c9a4d52cc3c41c1a756141:log:92', 'hash': '0x9caff2ef68817514c1e8e213372a230b86de8a24c0c9a4d52cc3c41c1a756141', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2c5aaf5100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:53:15.000Z'}}, {'blockNum': '0x9c075a', 'uniqueId': '0xe297911a83d22a0acd9af845d5660a9a6d88849616be36acc331797ae0c89cd8:log:169', 'hash': '0xe297911a83d22a0acd9af845d5660a9a6d88849616be36acc331797ae0c89cd8', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf648c64943c25bacb238b166bbc27ad4365d4927', 'value': 469.86850437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0af0a27085', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:55:59.000Z'}}, {'blockNum': '0x9c0765', 'uniqueId': '0x9c336b367dfdb92879c06b06367320d5066f37bb43e29cbf03a7893a57479b08:log:128', 'hash': '0x9c336b367dfdb92879c06b06367320d5066f37bb43e29cbf03a7893a57479b08', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0x0d5152803744465e358c4baaa7b5d9c022e9471d', 'value': 39.71990652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xecbfc47c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:59:53.000Z'}}, {'blockNum': '0x9c0775', 'uniqueId': '0x3eabd6eb0c5794b28471b2a277cc9314e39a899540ca4937f7b6debbbca3d426:log:69', 'hash': '0x3eabd6eb0c5794b28471b2a277cc9314e39a899540ca4937f7b6debbbca3d426', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x9ae2c02c243e3223402bbccbfcf77132e0b4b6fc', 'value': 773.45851918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12022c0a0e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:04:05.000Z'}}, {'blockNum': '0x9c077a', 'uniqueId': '0x7d621164130b2287b8271b4abba7b23e7887e18d49d62edf60602c3ece2dd4cf:log:161', 'hash': '0x7d621164130b2287b8271b4abba7b23e7887e18d49d62edf60602c3ece2dd4cf', 'from': '0x0d5152803744465e358c4baaa7b5d9c022e9471d', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 39.71990652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xecbfc47c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:05:04.000Z'}}, {'blockNum': '0x9c07ec', 'uniqueId': '0xf14701ff02c2f748da8ebfa78413a0f0102154393f8d00f1852a192a02cc319a:log:167', 'hash': '0xf14701ff02c2f748da8ebfa78413a0f0102154393f8d00f1852a192a02cc319a', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5fa5968c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:31:05.000Z'}}, {'blockNum': '0x9c081a', 'uniqueId': '0x54313e64dc44fb1baeafd5328960a0810cc190c4569276c46aa9eb3edcd6265d:log:62', 'hash': '0x54313e64dc44fb1baeafd5328960a0810cc190c4569276c46aa9eb3edcd6265d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb47f2e40da0e388e1a8776334ec72924541cb268', 'value': 35560.381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033bf4634420', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:43:15.000Z'}}, {'blockNum': '0x9c084d', 'uniqueId': '0x8c536d92a3ff02e28ecd4302b749594a3d55a33e2088b2cdbe70093139ea27b9:log:71', 'hash': '0x8c536d92a3ff02e28ecd4302b749594a3d55a33e2088b2cdbe70093139ea27b9', 'from': '0x6f4a21a9dd493c1c6958f66dddbdfee92927ad38', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x067ef83700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:57:57.000Z'}}, {'blockNum': '0x9c0863', 'uniqueId': '0x8657148d93dc815a20abe7b765509c60046a0b8a5a42512de98f14f16694c0b0:log:25', 'hash': '0x8657148d93dc815a20abe7b765509c60046a0b8a5a42512de98f14f16694c0b0', 'from': '0x414120ec6fd7d6ba58738c4e3149dd57e4216ca1', 'to': '0xf3c1c794cf73d4d4ccbd97f2bcadee31d39a6847', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:03:04.000Z'}}, {'blockNum': '0x9c0868', 'uniqueId': '0x4857fc1638b7df999dca58c4bb3cd69036c387bd6d03e43be1f16bce159799a5:log:0', 'hash': '0x4857fc1638b7df999dca58c4bb3cd69036c387bd6d03e43be1f16bce159799a5', 'from': '0xf3c1c794cf73d4d4ccbd97f2bcadee31d39a6847', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:04:28.000Z'}}, {'blockNum': '0x9c08c7', 'uniqueId': '0x2858034c4dadbdf5b8d59f34a659f16df20e3bea1862e646455b0892c13ff980:log:31', 'hash': '0x2858034c4dadbdf5b8d59f34a659f16df20e3bea1862e646455b0892c13ff980', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24ff2d9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:26:03.000Z'}}, {'blockNum': '0x9c08d4', 'uniqueId': '0x6b928bed43a5ad0d00d248cc29ae1bea01586c42d8e8cadfd0d07305062a2ca6:log:52', 'hash': '0x6b928bed43a5ad0d00d248cc29ae1bea01586c42d8e8cadfd0d07305062a2ca6', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2962.837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44fbe27b20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:29:27.000Z'}}, {'blockNum': '0x9c0911', 'uniqueId': '0x3395bcd85ce2a76e733f17952b27a802e9d42dd3fde3bda2101323185aa013fb:log:58', 'hash': '0x3395bcd85ce2a76e733f17952b27a802e9d42dd3fde3bda2101323185aa013fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 823.67125897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x132d769989', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:40:02.000Z'}}, {'blockNum': '0x9c0919', 'uniqueId': '0x58062af473099d6f618cd073ab4c491bd5761ffc1e8d9f7a3ea5a40c3db25272:log:117', 'hash': '0x58062af473099d6f618cd073ab4c491bd5761ffc1e8d9f7a3ea5a40c3db25272', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x91d7ad5b71150f754a03747b9e4c4d17b3a0ed4d', 'value': 823.67125897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x132d769989', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:42:15.000Z'}}, {'blockNum': '0x9c092d', 'uniqueId': '0x9582217b1cbaf3a6d847dae35ad37fd128cfc43a587c8b273e93607fd353c6df:log:37', 'hash': '0x9582217b1cbaf3a6d847dae35ad37fd128cfc43a587c8b273e93607fd353c6df', 'from': '0x2be9dd83cf54d2d0b81e2e7efbb78e8e2b78700e', 'to': '0x86debe91fefbda4001fcdc8b3da72b0e4cdab0d4', 'value': 21885.03033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8cf224a8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:45:30.000Z'}}, {'blockNum': '0x9c0986', 'uniqueId': '0xe53e67e01c117e73ee1f8c5560fa7e24c822e3c549078dc88546e74abe2a3a21:log:123', 'hash': '0xe53e67e01c117e73ee1f8c5560fa7e24c822e3c549078dc88546e74abe2a3a21', 'from': '0x106f9c54536d33bdba8b371fbab696e86f51f941', 'to': '0xf7c8adddc63b1df0de12b5307126117f2afd5c17', 'value': 1193.69923701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1bcb007c75', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:59:05.000Z'}}, {'blockNum': '0x9c09a5', 'uniqueId': '0x3b41264ac0af01bb7e22b0efcc9a62c1928245038fecb310c833944877ca9234:log:1', 'hash': '0x3b41264ac0af01bb7e22b0efcc9a62c1928245038fecb310c833944877ca9234', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 3685.287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x55ce05b260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:05:43.000Z'}}, {'blockNum': '0x9c09a5', 'uniqueId': '0xaf5f1750a1277c2e27c6c3f953e38558e84b960623afd9e0781a935aff8d26ae:log:2', 'hash': '0xaf5f1750a1277c2e27c6c3f953e38558e84b960623afd9e0781a935aff8d26ae', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 528.869719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c504f25fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:05:43.000Z'}}, {'blockNum': '0x9c09ab', 'uniqueId': '0xe0a635ad87524b166978ac5a4570fc7945061aaf227a13d1ce735de7852e1694:log:27', 'hash': '0xe0a635ad87524b166978ac5a4570fc7945061aaf227a13d1ce735de7852e1694', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 590.67657473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0dc0b4ed01', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:06:31.000Z'}}, {'blockNum': '0x9c09ab', 'uniqueId': '0x20e038ed04c94d8e219ed1b3ded4d2e6758a1aa75ba49da11b2b271941870090:log:46', 'hash': '0x20e038ed04c94d8e219ed1b3ded4d2e6758a1aa75ba49da11b2b271941870090', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x275f253b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:06:31.000Z'}}, {'blockNum': '0x9c09ae', 'uniqueId': '0xaf8a1c73c05b7e539c89c7d1849f00eeea297aebd3b4e9a11516881a254b68d5:log:3', 'hash': '0xaf8a1c73c05b7e539c89c7d1849f00eeea297aebd3b4e9a11516881a254b68d5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe55494e7434408e7074eb03d8ca124f9151fce1d', 'value': 1837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ac55f8d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:07:34.000Z'}}, {'blockNum': '0x9c09b2', 'uniqueId': '0x02d85876c7c7077c46c8c95d57391d82e83bd56604dfc161d6827879a294dea7:log:3', 'hash': '0x02d85876c7c7077c46c8c95d57391d82e83bd56604dfc161d6827879a294dea7', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 11.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x42758cc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:36.000Z'}}, {'blockNum': '0x9c09b2', 'uniqueId': '0xc11da8e7664431c78265d44517552dc7ddf822123b93336dcb33ff5e9541663c:log:134', 'hash': '0xc11da8e7664431c78265d44517552dc7ddf822123b93336dcb33ff5e9541663c', 'from': '0x54a5a4a492048080000ef50f90c69810716b207d', 'to': '0xd137e8cc2a71c4d9e28940d21cedbd80b7506981', 'value': 218.575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0516cefb60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:36.000Z'}}, {'blockNum': '0x9c09b4', 'uniqueId': '0xaccfc11f03ff851d6cde9b19033abe47894fed892b6f738635669f4841e6c057:log:50', 'hash': '0xaccfc11f03ff851d6cde9b19033abe47894fed892b6f738635669f4841e6c057', 'from': '0xafb8cc48ca7c4aa79788912f564398434c8af68e', 'to': '0xa06a9a3cd5a748e6786d53c605507d68ef02315f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:49.000Z'}}, {'blockNum': '0x9c09b5', 'uniqueId': '0x64a904d0386a331e481b3b53a4fd5b33ab1f20614cc1347c925d7ed4a6450775:log:44', 'hash': '0x64a904d0386a331e481b3b53a4fd5b33ab1f20614cc1347c925d7ed4a6450775', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x90c72d9f8a299896b295b04813a9526c584fd7bc', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:04.000Z'}}, {'blockNum': '0x9c09b7', 'uniqueId': '0xf05b9c71d80e64e1dd222d5b25d3f2cfa129cb394bbd364fc2a8764312fda5b1:log:2', 'hash': '0xf05b9c71d80e64e1dd222d5b25d3f2cfa129cb394bbd364fc2a8764312fda5b1', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf122f0d45acf90e9d494c04eeb0719bab65b7be8', 'value': 7925.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb88767a8a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:09.000Z'}}, {'blockNum': '0x9c09b8', 'uniqueId': '0xe6353e3cea72af11ef8c3da512b73a7793ad2a86353079cd07e8e210f637f553:log:112', 'hash': '0xe6353e3cea72af11ef8c3da512b73a7793ad2a86353079cd07e8e210f637f553', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf648c64943c25bacb238b166bbc27ad4365d4927', 'value': 40.40922022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf0db93a6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:11.000Z'}}, {'blockNum': '0x9c09bc', 'uniqueId': '0x56796eb5db0f95cb589452f3678b845185019b1076381febf542252723c96b5e:log:39', 'hash': '0x56796eb5db0f95cb589452f3678b845185019b1076381febf542252723c96b5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'value': 104.25775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026d6cb398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:18.000Z'}}, {'blockNum': '0x9c09bc', 'uniqueId': '0x42687dcfdd945d447072d6b48f0330a67d3cca2ecdb1104f064caed684c22c59:log:56', 'hash': '0x42687dcfdd945d447072d6b48f0330a67d3cca2ecdb1104f064caed684c22c59', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'value': 1345.16605763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1f51d08343', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:18.000Z'}}, {'blockNum': '0x9c09be', 'uniqueId': '0xb8ce97c94f67e4788d1dede4df4e24a785df9b2ea4f788e3ac55f8cc5f61778b:log:24', 'hash': '0xb8ce97c94f67e4788d1dede4df4e24a785df9b2ea4f788e3ac55f8cc5f61778b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 7304.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaa14e51dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:24.000Z'}}, {'blockNum': '0x9c09c1', 'uniqueId': '0xdd07436167468e1bd68f1fc46c98b43d125962d81a120c04dde4d62e9e08f8cd:log:107', 'hash': '0xdd07436167468e1bd68f1fc46c98b43d125962d81a120c04dde4d62e9e08f8cd', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x8752f02f5d99c80f6e4948bba6a0bfc8e9df0fbd', 'value': 1345.16605763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1f51d08343', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:11:10.000Z'}}, {'blockNum': '0x9c09c4', 'uniqueId': '0xc97193efe004751246addc214e9f09898a31b7f11341da0b3b3c2edf0d3c135b:log:11', 'hash': '0xc97193efe004751246addc214e9f09898a31b7f11341da0b3b3c2edf0d3c135b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7039b74e59ecaed4d7501016bea9f7805c137b98', 'value': 215.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05059cd240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:00.000Z'}}, {'blockNum': '0x9c09c4', 'uniqueId': '0x70b992094772629cab822f46e179563d375c5354ca527970c9c40e0105d2413f:log:14', 'hash': '0x70b992094772629cab822f46e179563d375c5354ca527970c9c40e0105d2413f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1432.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x215d39f480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:00.000Z'}}, {'blockNum': '0x9c09c8', 'uniqueId': '0x09834911e70eff47b8bb9c62b2690e8f8ce908be1e0faee437f2e15e464d82cd:log:57', 'hash': '0x09834911e70eff47b8bb9c62b2690e8f8ce908be1e0faee437f2e15e464d82cd', 'from': '0x7039b74e59ecaed4d7501016bea9f7805c137b98', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 215.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05059cd240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:46.000Z'}}, {'blockNum': '0x9c09c9', 'uniqueId': '0xaee7c2f2fef5b176f618e2bf65afee8f1370b13cc071823612d2a90fdb895109:log:4', 'hash': '0xaee7c2f2fef5b176f618e2bf65afee8f1370b13cc071823612d2a90fdb895109', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'value': 811.0148356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12e2066e28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:00.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x7bc8a0482d14d1709644c2bd95162e5349ec751af776b081d18ffef214fc42f8:log:10', 'hash': '0x7bc8a0482d14d1709644c2bd95162e5349ec751af776b081d18ffef214fc42f8', 'from': '0xb12157c9d242ab7e0560ba8aef0e1b75caa8b6d8', 'to': '0x8fc5a4f0ee65ab422ba1bc27094103318d61c8a2', 'value': 1693.264701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x276ca4e3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x66305fa9f703f9285b9bc51445b794c3d8b8d688f15fb8b67b455ca5ee977162:log:32', 'hash': '0x66305fa9f703f9285b9bc51445b794c3d8b8d688f15fb8b67b455ca5ee977162', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x328c2b1b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x7c2a1324e332453af6f8a2bfde9dec35ad488b94a2dc50f4ec16ed1fcc83d842:log:90', 'hash': '0x7c2a1324e332453af6f8a2bfde9dec35ad488b94a2dc50f4ec16ed1fcc83d842', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x8752f02f5d99c80f6e4948bba6a0bfc8e9df0fbd', 'value': 811.0148356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12e2066e28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09ce', 'uniqueId': '0xd057450683858abfe502b84c0454c1065f191939d5049f82753ab004a63a948d:log:2', 'hash': '0xd057450683858abfe502b84c0454c1065f191939d5049f82753ab004a63a948d', 'from': '0x8fc5a4f0ee65ab422ba1bc27094103318d61c8a2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1693.264701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x276ca4e3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:05.000Z'}}, {'blockNum': '0x9c09cf', 'uniqueId': '0x4f169e1ebf04fab6c9c89714c5a8f3b20e9cde34fb2397570112502ceeffc72a:log:22', 'hash': '0x4f169e1ebf04fab6c9c89714c5a8f3b20e9cde34fb2397570112502ceeffc72a', 'from': '0x72e5263ff33d2494692d7f94a758aa9f82062f73', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 3374.98636507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4e947c80db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:12.000Z'}}, {'blockNum': '0x9c09cf', 'uniqueId': '0xa4ed05e078b59e9fff6cd93aed656e224a7b2dc2a9fd8ce15557b2a898540d95:log:32', 'hash': '0xa4ed05e078b59e9fff6cd93aed656e224a7b2dc2a9fd8ce15557b2a898540d95', 'from': '0x06450acadae3710f5d6d49993af84cda952ec72e', 'to': '0x28b5966e6b106fee16be8015b932ef73648cb957', 'value': 1000.15614622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749652a9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:12.000Z'}}, {'blockNum': '0x9c09d1', 'uniqueId': '0x7af50a561d5efb8625e936d2cbfbfc7025d2cc111b0574f14c641b77db231c3a:log:18', 'hash': '0x7af50a561d5efb8625e936d2cbfbfc7025d2cc111b0574f14c641b77db231c3a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 3338.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4db80c5de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:40.000Z'}}, {'blockNum': '0x9c09d5', 'uniqueId': '0x07b25f8887decc6aab1f17ea2e740ed31475a1aaf8436eb833ecfeff699d1e89:log:0', 'hash': '0x07b25f8887decc6aab1f17ea2e740ed31475a1aaf8436eb833ecfeff699d1e89', 'from': '0x28b5966e6b106fee16be8015b932ef73648cb957', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1000.15614622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749652a9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:16:06.000Z'}}, {'blockNum': '0x9c09d9', 'uniqueId': '0x72c87a3c1650da41ee2b0ec3116aa5aa6cd8d9f28cbc7b3110942f39260c4980:log:57', 'hash': '0x72c87a3c1650da41ee2b0ec3116aa5aa6cd8d9f28cbc7b3110942f39260c4980', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'value': 139.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342588780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:16:39.000Z'}}, {'blockNum': '0x9c09dc', 'uniqueId': '0xa78c1fb9d23a7cc2dab90c0c059951b8a01e3abaef6b26586c451dd127f6a19f:log:74', 'hash': '0xa78c1fb9d23a7cc2dab90c0c059951b8a01e3abaef6b26586c451dd127f6a19f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb1c0e08d9f85e373938bc5a3ee0f4f462da11f7a', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:17:03.000Z'}}, {'blockNum': '0x9c09df', 'uniqueId': '0x9bb4fd9a0366b0e50ddbe3c5149b4c26ea1343b6a4586f7e85e42a8b7ac1cc93:log:22', 'hash': '0x9bb4fd9a0366b0e50ddbe3c5149b4c26ea1343b6a4586f7e85e42a8b7ac1cc93', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x5934e7eb0d5229560879e76ef4252117458d89dc', 'value': 116.7013097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b798111a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:18:00.000Z'}}, {'blockNum': '0x9c09e1', 'uniqueId': '0x7dcc62ae8d559cd6ce9049f7b7e46a12a6c32638a54e1e580b9838639d04b8ff:log:46', 'hash': '0x7dcc62ae8d559cd6ce9049f7b7e46a12a6c32638a54e1e580b9838639d04b8ff', 'from': '0xb1c0e08d9f85e373938bc5a3ee0f4f462da11f7a', 'to': '0xf3fc538c9a8c6b86bc158055ba84448f23819fa9', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:18:33.000Z'}}, {'blockNum': '0x9c09f1', 'uniqueId': '0x72bbe95fd04d9b855a6fcf59a712392b881e5d77cd718b6bb91bd04863cf452c:log:25', 'hash': '0x72bbe95fd04d9b855a6fcf59a712392b881e5d77cd718b6bb91bd04863cf452c', 'from': '0xa7dc0fd1bffe36874c3d94c2d3d3ee6e30ab48c5', 'to': '0xa5d4827cce6f52f776e5b96e2a46eb8e87d27ea5', 'value': 630.92936319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0eb0a1ce7f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:21:25.000Z'}}, {'blockNum': '0x9c09f4', 'uniqueId': '0xb0c1eb08875aff4393bf977f4eaad39b5aa92c6cd43f094101a18cf121cc237b:log:33', 'hash': '0xb0c1eb08875aff4393bf977f4eaad39b5aa92c6cd43f094101a18cf121cc237b', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0xa84460d2bd20f37adeb38cf1c26dfd1a2b868a4a', 'value': 405.451515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0970adea0c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:21:42.000Z'}}, {'blockNum': '0x9c09f8', 'uniqueId': '0x69899f7ec0c6bd717ca81dba5f770d3187a466a93ed43d498226cfac0f57e1e8:log:161', 'hash': '0x69899f7ec0c6bd717ca81dba5f770d3187a466a93ed43d498226cfac0f57e1e8', 'from': '0xc4ca8fe6ddb499dcf2f6a7eae8909345413bcb4c', 'to': '0x926cf35549c98e7fd0e7b2419753c33f0957263b', 'value': 5555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8156615300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:09.000Z'}}, {'blockNum': '0x9c09fa', 'uniqueId': '0x1a7d3effae33ce9891543f2a296886388b990cfdcf17371ae082a9bdab33385b:log:30', 'hash': '0x1a7d3effae33ce9891543f2a296886388b990cfdcf17371ae082a9bdab33385b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x39589fbf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:21.000Z'}}, {'blockNum': '0x9c09fa', 'uniqueId': '0xea8a2c4ff8c2966f464ce1399d65bef82319ea71b9fb0f279228bb8cca0e9d89:log:70', 'hash': '0xea8a2c4ff8c2966f464ce1399d65bef82319ea71b9fb0f279228bb8cca0e9d89', 'from': '0x90c72d9f8a299896b295b04813a9526c584fd7bc', 'to': '0xff70c95dbb3e6d63221e7f420948b78b97df6c26', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:21.000Z'}}, {'blockNum': '0x9c09ff', 'uniqueId': '0xf0e5754b8c107dbec21de9a445794155dd95f5f7b520ef80258418f0ff874633:log:61', 'hash': '0xf0e5754b8c107dbec21de9a445794155dd95f5f7b520ef80258418f0ff874633', 'from': '0x43bacfb2e5c522def447b0b75c9fe532948e1541', 'to': '0x3d5618d80bda015cc644b500167f2518b2f6eed7', 'value': 1504.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2304fc50e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:24:21.000Z'}}, {'blockNum': '0x9c0a0e', 'uniqueId': '0xed850938a97e2bca650e97b4c314222ee80dd149d746a9cdd77c1c135e06dffe:log:31', 'hash': '0xed850938a97e2bca650e97b4c314222ee80dd149d746a9cdd77c1c135e06dffe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb4cf686ea7a0e1cbc83c6d922106c4df5249ce43', 'value': 74.895944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01be6a2420', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:28.000Z'}}, {'blockNum': '0x9c0a0f', 'uniqueId': '0xad89dae06d5f4d07bc39ce0f3e7bd937cbf5073a52a09af1f37ba84eea049156:log:32', 'hash': '0xad89dae06d5f4d07bc39ce0f3e7bd937cbf5073a52a09af1f37ba84eea049156', 'from': '0x0e1d7ef634df68c59cb0a91125c7669201649d26', 'to': '0xc8093f5232ac6be142a3704e95834df71dc69fa6', 'value': 8204.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbf0406ad60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:49.000Z'}}, {'blockNum': '0x9c0a0f', 'uniqueId': '0x06aa430fbb97e70b65ed9c4181c42ce6a2e1fe531efe47682af30c0b4ea7d0ba:log:97', 'hash': '0x06aa430fbb97e70b65ed9c4181c42ce6a2e1fe531efe47682af30c0b4ea7d0ba', 'from': '0x2257a0ad17d3da25928452f3eb13012291a5325f', 'to': '0x5d2914536b1e50412a166f8fddf67121f66d34ca', 'value': 147.55518404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036f7f57c4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:49.000Z'}}, {'blockNum': '0x9c0a1c', 'uniqueId': '0x60b8d4d93caf788dbfa2c8a380dc57d8a389063ded26a2d46c0686d0dcffbcb7:log:13', 'hash': '0x60b8d4d93caf788dbfa2c8a380dc57d8a389063ded26a2d46c0686d0dcffbcb7', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1432.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x215d39f480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:29:22.000Z'}}, {'blockNum': '0x9c0a1d', 'uniqueId': '0xe7a4925231c742ece41fa7f728d40fac142c0686729aa9c69a5d6d599c9b6003:log:120', 'hash': '0xe7a4925231c742ece41fa7f728d40fac142c0686729aa9c69a5d6d599c9b6003', 'from': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 139.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342588780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:29:45.000Z'}}, {'blockNum': '0x9c0a23', 'uniqueId': '0xf4ad37f12132d9668cb70be75219480f5805ce17b596d352f8fe8f9b75a260e9:log:15', 'hash': '0xf4ad37f12132d9668cb70be75219480f5805ce17b596d352f8fe8f9b75a260e9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 213.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb6b9180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:30:58.000Z'}}, {'blockNum': '0x9c0a23', 'uniqueId': '0x5c116eeb01f97b07cf4129fe776b41621c27ae8f4e41a71e0f9a7631ad27ff96:log:16', 'hash': '0x5c116eeb01f97b07cf4129fe776b41621c27ae8f4e41a71e0f9a7631ad27ff96', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'value': 433.849719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a19f2227c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:30:58.000Z'}}, {'blockNum': '0x9c0a24', 'uniqueId': '0x150d38679fe114bca7f0c49cd7263b5220dc58a3c7fca622a54c4f3585c28d98:log:126', 'hash': '0x150d38679fe114bca7f0c49cd7263b5220dc58a3c7fca622a54c4f3585c28d98', 'from': '0x926cf35549c98e7fd0e7b2419753c33f0957263b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87cf63a900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:31:07.000Z'}}, {'blockNum': '0x9c0a25', 'uniqueId': '0x429e0522f456afc5753121925087c5264f77376bbdce3de70ccc6054d9863089:log:151', 'hash': '0x429e0522f456afc5753121925087c5264f77376bbdce3de70ccc6054d9863089', 'from': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3374.98636507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4e947c80db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:31:13.000Z'}}, {'blockNum': '0x9c0a29', 'uniqueId': '0x75df4c06aea860a3c8204a8a7fbc494ec593dec9746b7f0357a91d651303f07e:log:68', 'hash': '0x75df4c06aea860a3c8204a8a7fbc494ec593dec9746b7f0357a91d651303f07e', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x24e82e47e44425200ebc56b328cf745456b46cf2', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:32:40.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x4e132f6bc69faa49e0c9e6b4830dd21ad704f5614485b76e0a4eb28e48d62786:log:49', 'hash': '0x4e132f6bc69faa49e0c9e6b4830dd21ad704f5614485b76e0a4eb28e48d62786', 'from': '0x24e82e47e44425200ebc56b328cf745456b46cf2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x18313b5a9d6f2ca433c83a1dc4064002263c7f682cf69a5d484a7a9388b66df6:log:63', 'hash': '0x18313b5a9d6f2ca433c83a1dc4064002263c7f682cf69a5d484a7a9388b66df6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 3099.785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x482c288ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x29a18f105e78a3be1bc57b0c473f55411299145369a76ac05d6273e0be6c8037:log:64', 'hash': '0x29a18f105e78a3be1bc57b0c473f55411299145369a76ac05d6273e0be6c8037', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1429.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x214b585180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0xad70fab61f21423eb5e9a30df33d6a2e71cafc02101f863369e11723ee17085c:log:65', 'hash': '0xad70fab61f21423eb5e9a30df33d6a2e71cafc02101f863369e11723ee17085c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 452.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a8bf8a080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0xcb7681c7521516a21383c367cfcb5e57245119f53af0a80160695a485c7bcbcc:log:78', 'hash': '0xcb7681c7521516a21383c367cfcb5e57245119f53af0a80160695a485c7bcbcc', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x660be3721b97db19c56af5c487f5df6fe23ac4b4', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2b', 'uniqueId': '0x474192de9c1cd263a49a0bb7e163c715a2290af3a594d9c65a6124d0a3602218:log:52', 'hash': '0x474192de9c1cd263a49a0bb7e163c715a2290af3a594d9c65a6124d0a3602218', 'from': '0x660be3721b97db19c56af5c487f5df6fe23ac4b4', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:22.000Z'}}, {'blockNum': '0x9c0a2b', 'uniqueId': '0xc3e2c33a1dc678c0c6b330d196dddfda172417cec8dcbf4c52f528f110e20902:log:129', 'hash': '0xc3e2c33a1dc678c0c6b330d196dddfda172417cec8dcbf4c52f528f110e20902', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x0e62e4f3b5f5a32d108e73037a7900686291c6cd', 'value': 3467.9610187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x50bea890ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:22.000Z'}}, {'blockNum': '0x9c0a2d', 'uniqueId': '0x5a41af836586c43347b8bb88a77aefcc1d1b790e33915890a7127cfbb55b5eb2:log:6', 'hash': '0x5a41af836586c43347b8bb88a77aefcc1d1b790e33915890a7127cfbb55b5eb2', 'from': '0x0e62e4f3b5f5a32d108e73037a7900686291c6cd', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3467.9610187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x50bea890ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:34:26.000Z'}}, {'blockNum': '0x9c0a2d', 'uniqueId': '0xb3d65cad94513535450e8676c1e9fc643d8b4c738d2c720f97e17f8f63f6e102:log:36', 'hash': '0xb3d65cad94513535450e8676c1e9fc643d8b4c738d2c720f97e17f8f63f6e102', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xae5432464b0dcbbb596ac664f49d6d0ea883b0be', 'value': 1790.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29ad59c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:34:26.000Z'}}, {'blockNum': '0x9c0a2e', 'uniqueId': '0xc57b5e13238b26425a7de269951ba2d68821c595d535b2d628a5e8acf711c493:log:99', 'hash': '0xc57b5e13238b26425a7de269951ba2d68821c595d535b2d628a5e8acf711c493', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 289.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c06a5d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:35:14.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xca1a7ac54adde72f1a0f26d06e2b9948c65a02fd48ae607a48d9263c803cfb75:log:6', 'hash': '0xca1a7ac54adde72f1a0f26d06e2b9948c65a02fd48ae607a48d9263c803cfb75', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 780.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x122d003680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0x066240a110abc2408ec928384180c6d80bffd610f2bab8553d6e4837ec72955a:log:8', 'hash': '0x066240a110abc2408ec928384180c6d80bffd610f2bab8553d6e4837ec72955a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x15709a7060cd2190b76a74b73959114fd3fdfe1d', 'value': 106.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027da68680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xc5a8225b45299ef369b28a29f7181ac11a9902f3add090b0a230ca2a7ce68437:log:9', 'hash': '0xc5a8225b45299ef369b28a29f7181ac11a9902f3add090b0a230ca2a7ce68437', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 1820.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a65e2f880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xe8fda1c64b7e921c3c07af4bee107e2a209fc4b41a515dec8413d84aa59b652e:log:14', 'hash': '0xe8fda1c64b7e921c3c07af4bee107e2a209fc4b41a515dec8413d84aa59b652e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 871.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x144d67e380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xe77041d02e655b48d1e6898c38a522987d863f1665ecd92993e9f18a76a9c433:log:15', 'hash': '0xe77041d02e655b48d1e6898c38a522987d863f1665ecd92993e9f18a76a9c433', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 8290.76742325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc108d320b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0xf3d5c6c8b33c2089a50f8377eb84dc598d9631f2770ccda80d92b7b4e91c8a69:log:34', 'hash': '0xf3d5c6c8b33c2089a50f8377eb84dc598d9631f2770ccda80d92b7b4e91c8a69', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 780.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x122d003680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0xb755a62d3f4e0e1eb0818d571b8428e280770fbbda82a7ab5007bd248db1bc11:log:35', 'hash': '0xb755a62d3f4e0e1eb0818d571b8428e280770fbbda82a7ab5007bd248db1bc11', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 8290.76742325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc108d320b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0x60cd0dd87a27a0cfa4e46aed6fd0a1370f8a37cf7f3b640605c25a3b48c64072:log:51', 'hash': '0x60cd0dd87a27a0cfa4e46aed6fd0a1370f8a37cf7f3b640605c25a3b48c64072', 'from': '0x91bbeb418a36ff9e238d1c5b4e02efb35077e18c', 'to': '0x1a0d6bb7c147014a2c5e0ea446180e2b797e8ec6', 'value': 1635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26115c0300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0xd5d1eae07e6d6af063ddafddc26e860251901bf172706244a2d8f1d28b9b1964:log:112', 'hash': '0xd5d1eae07e6d6af063ddafddc26e860251901bf172706244a2d8f1d28b9b1964', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'value': 136.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033076e480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x6fd6cb09958b9533ac60002a77a698b18bee4727ad133cba3bfeb9b6654e33ed:log:113', 'hash': '0x6fd6cb09958b9533ac60002a77a698b18bee4727ad133cba3bfeb9b6654e33ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbdaf17832a7141b591d9407490328fa5df364cb5', 'value': 242.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a6ceb0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x1e2bce45e5d1bd2d4d40d1ab528c5be2cdd46262161cf6bd770c65208b32256c:log:114', 'hash': '0x1e2bce45e5d1bd2d4d40d1ab528c5be2cdd46262161cf6bd770c65208b32256c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x83f5f66a111a446d29bc28c82b292b42cbe892ef', 'value': 3.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17b8ff80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x2cf126b70436ded34755d8858b2b1d72c47b98fea69223a268c0f70921aa9453:log:115', 'hash': '0x2cf126b70436ded34755d8858b2b1d72c47b98fea69223a268c0f70921aa9453', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x74f7477556d7b099ceb5781d5a7a109947b72a15', 'value': 1990.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e5b2a6280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x8eba1126ecc4828130478c1b08dad3595b4b6b30b7ed3e0796c97eff76413593:log:116', 'hash': '0x8eba1126ecc4828130478c1b08dad3595b4b6b30b7ed3e0796c97eff76413593', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1e580bafb4649412d0c4fe1611d58d31bb3135f2', 'value': 1976.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e07d38bc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x9829954cd8d7531ed341faf8080b5a820127670edc21f785dbd34807046fec02:log:119', 'hash': '0x9829954cd8d7531ed341faf8080b5a820127670edc21f785dbd34807046fec02', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x93c476aa875bfb62b5e776ce0ae48b47926e36c2', 'value': 75.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c467bc20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a44', 'uniqueId': '0x3b8f524c484080f8d76763e11437b8b96ff232bb9fcafe8a593e7f94f2d622a5:log:48', 'hash': '0x3b8f524c484080f8d76763e11437b8b96ff232bb9fcafe8a593e7f94f2d622a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x639928b207057fbd1eba5fa915d3d9951a48a62d', 'value': 451.77695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a84cced39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:40:43.000Z'}}, {'blockNum': '0x9c0a44', 'uniqueId': '0x65e26edc29d0e084de485be05ec62ba184b62f4538f775b49c70eb48a321de11:log:50', 'hash': '0x65e26edc29d0e084de485be05ec62ba184b62f4538f775b49c70eb48a321de11', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'value': 474.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b0f19f680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:40:43.000Z'}}, {'blockNum': '0x9c0a45', 'uniqueId': '0x34728c79314fcc55e0778bb254814f47a84fee4e544b311adafe43f13a7a9bbf:log:84', 'hash': '0x34728c79314fcc55e0778bb254814f47a84fee4e544b311adafe43f13a7a9bbf', 'from': '0xa8c4b9f13c5da3c08901ae1e907fb89c5f75f605', 'to': '0xee83d407ea7b42b12e3871c0a2b84ff196522e32', 'value': 52.29109486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0137ade0ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:41:06.000Z'}}, {'blockNum': '0x9c0a46', 'uniqueId': '0xf3139d29d13bf6eafa9b9eb186c58aa9dc9c1649e83096af37a9c33948ed1455:log:2', 'hash': '0xf3139d29d13bf6eafa9b9eb186c58aa9dc9c1649e83096af37a9c33948ed1455', 'from': '0xee83d407ea7b42b12e3871c0a2b84ff196522e32', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 52.29109486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0137ade0ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:41:39.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xfeeb2dcce043573dd775e21a0ced1d1d505a7cfc60456441992c33e59ed2bde2:log:98', 'hash': '0xfeeb2dcce043573dd775e21a0ced1d1d505a7cfc60456441992c33e59ed2bde2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xaca27a35838da5421fe925eb621a7679d6d2bdde', 'value': 889.652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14b6bd3880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xa53f9267c6d3e7c8df6f0ad0e9157e213a54b10d177d791293457b0637e05827:log:99', 'hash': '0xa53f9267c6d3e7c8df6f0ad0e9157e213a54b10d177d791293457b0637e05827', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 145.114595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0360f34cac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xa66ac49c0aeca1ce0666b49993c4f106686f6490e0619ec4bf9ab4e6b6204e89:log:105', 'hash': '0xa66ac49c0aeca1ce0666b49993c4f106686f6490e0619ec4bf9ab4e6b6204e89', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x67e5f5db4c866f1b5b31ac097179bcd85a01aa0e', 'value': 2206.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3362a03a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0x2f4cbf577bc815b62acfc62bf18777b5c3e357e258ab55e973596377887a3b55:log:110', 'hash': '0x2f4cbf577bc815b62acfc62bf18777b5c3e357e258ab55e973596377887a3b55', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbb4b1591816121b6e0a03fe9def951a0833f7892', 'value': 1210.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c3200d680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0x51357113472ccabaab043776fbe13bdf3e7eefe13663efc69dd32467605d1578:log:167', 'hash': '0x51357113472ccabaab043776fbe13bdf3e7eefe13663efc69dd32467605d1578', 'from': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'to': '0xd4dd74430083a862ee72be896d56091ddd48b829', 'value': 4000.24527544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d2351e2b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a4f', 'uniqueId': '0x987b4417fc0d07ef834cd348c48abc9bd42872407d576ea3a26d74ee89a94a6a:log:50', 'hash': '0x987b4417fc0d07ef834cd348c48abc9bd42872407d576ea3a26d74ee89a94a6a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x945c1f396e3ae46f6a430172051d5deef7add6be', 'value': 145.114595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0360f34cac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:21.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x940f7e4d843af31b63707ea72d01d8ef0599b9de725e285d61187f25fe0c4a2e:log:78', 'hash': '0x940f7e4d843af31b63707ea72d01d8ef0599b9de725e285d61187f25fe0c4a2e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 3059.869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x473e3d9020', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0xa3c06bd5e03b815ef2f0d4a555acc372fd661ceff202576ffe14e2427b8bf74c:log:80', 'hash': '0xa3c06bd5e03b815ef2f0d4a555acc372fd661ceff202576ffe14e2427b8bf74c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1414.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20f1f02280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x188794cc933ac238e30ebd54d3e6e3a2cd59886f82264634fef400107eee9215:log:85', 'hash': '0x188794cc933ac238e30ebd54d3e6e3a2cd59886f82264634fef400107eee9215', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1788f3be0b0f5da8f455375940cab89c4cc803e3', 'value': 718.258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10b926bb40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x5d5d2bc068b58a6173c7412ca578e3356a57441960a0538f8660bf0cd826002b:log:97', 'hash': '0x5d5d2bc068b58a6173c7412ca578e3356a57441960a0538f8660bf0cd826002b', 'from': '0x67e5f5db4c866f1b5b31ac097179bcd85a01aa0e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2206.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3362a03a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0xe9971b510f9818381c477174f98f3481d7aedbe3272ac2995d0b5e153193119f:log:123', 'hash': '0xe9971b510f9818381c477174f98f3481d7aedbe3272ac2995d0b5e153193119f', 'from': '0xbc4db589f05cf12cd649936f9393b3b55fe366e5', 'to': '0xf48f04ebe14e9fa09faad777c77c9fde2b2caac7', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a54', 'uniqueId': '0x3a6fb4dfc82f4e231ec00ab8a755ebd2425a2db98429bd4e0a47e50f983aeab3:log:10', 'hash': '0x3a6fb4dfc82f4e231ec00ab8a755ebd2425a2db98429bd4e0a47e50f983aeab3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 769.806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ec66bcc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:45:40.000Z'}}, {'blockNum': '0x9c0a58', 'uniqueId': '0x32e5864b588eebb38fffc506e38e6b0747e1e6498786b1dc1d90a751a027cfac:log:116', 'hash': '0x32e5864b588eebb38fffc506e38e6b0747e1e6498786b1dc1d90a751a027cfac', 'from': '0xf48f04ebe14e9fa09faad777c77c9fde2b2caac7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:46:46.000Z'}}, {'blockNum': '0x9c0a5e', 'uniqueId': '0x9b27ed464e80da0d018233cad5e14c19a06067b9dbf891f545f76abcf1895ff7:log:3', 'hash': '0x9b27ed464e80da0d018233cad5e14c19a06067b9dbf891f545f76abcf1895ff7', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3059.869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x473e3d9020', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:48:36.000Z'}}, {'blockNum': '0x9c0a5e', 'uniqueId': '0x2520949abce9dcfeae2ca80ad52cc4bb612b28ea791733e033bf70389c10430a:log:8', 'hash': '0x2520949abce9dcfeae2ca80ad52cc4bb612b28ea791733e033bf70389c10430a', 'from': '0xdcfffaad53ae360bc67763a3f597e6c46dee65f9', 'to': '0xbaec2b066edcea546b2454fb6fc3d25e1daf23d6', 'value': 312.17713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0744b87f68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:48:36.000Z'}}, {'blockNum': '0x9c0a66', 'uniqueId': '0x443c3f80c1bb4f5e4d0540de6c394259a5be9b811d9a18f575a568f897e37db0:log:184', 'hash': '0x443c3f80c1bb4f5e4d0540de6c394259a5be9b811d9a18f575a568f897e37db0', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5694.312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8494be9100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:49:43.000Z'}}, {'blockNum': '0x9c0a67', 'uniqueId': '0xb82bc207ab9ab9a08e572176d2e372f13a164805eff31d7634ca106b2cf39be6:log:133', 'hash': '0xb82bc207ab9ab9a08e572176d2e372f13a164805eff31d7634ca106b2cf39be6', 'from': '0xe55494e7434408e7074eb03d8ca124f9151fce1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x54c60d1900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:49:46.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x0815321b3d7e309ee2969c69d558fca9d812d7156c72c2b42341d121d6e6694b:log:154', 'hash': '0x0815321b3d7e309ee2969c69d558fca9d812d7156c72c2b42341d121d6e6694b', 'from': '0xff70c95dbb3e6d63221e7f420948b78b97df6c26', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x3a18c3839ad4859944c8a260a80338a00c1cca1aab9fd5cfaf48a613fa5c4cd8:log:175', 'hash': '0x3a18c3839ad4859944c8a260a80338a00c1cca1aab9fd5cfaf48a613fa5c4cd8', 'from': '0xc8093f5232ac6be142a3704e95834df71dc69fa6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8204.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbf0406ad60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x650107f44b73b8c3b743f79223f715f292d8f4f55c919618d7c86764b4c6556e:log:176', 'hash': '0x650107f44b73b8c3b743f79223f715f292d8f4f55c919618d7c86764b4c6556e', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5336.02145266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7c3d2a93f2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a71', 'uniqueId': '0x4ddb6eb22ed138b17bb3efe17013a28de69f3dc577c384156f9974db2dcb3619:log:68', 'hash': '0x4ddb6eb22ed138b17bb3efe17013a28de69f3dc577c384156f9974db2dcb3619', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb8431daa00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:57.000Z'}}, {'blockNum': '0x9c0a77', 'uniqueId': '0xf30e0d8fe97399ee56bdcdeb2da0e23d324d1cd7b306910a164f8ccb139c1ca9:log:36', 'hash': '0xf30e0d8fe97399ee56bdcdeb2da0e23d324d1cd7b306910a164f8ccb139c1ca9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1490cccbc69bae1a545af45bb2a15571d620a0e7', 'value': 70.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a6a1f840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:51:58.000Z'}}, {'blockNum': '0x9c0a7e', 'uniqueId': '0xec5ade60ce6a900c8eb14b4ff80b68f4930eb1e82d6ad9a8c27e17078ef86607:log:60', 'hash': '0xec5ade60ce6a900c8eb14b4ff80b68f4930eb1e82d6ad9a8c27e17078ef86607', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 1973.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2df22158c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:53:57.000Z'}}, {'blockNum': '0x9c0a7e', 'uniqueId': '0x43ac48debdb0cc486605b902b71dd542d016bc1feab30672573e77537448b410:log:99', 'hash': '0x43ac48debdb0cc486605b902b71dd542d016bc1feab30672573e77537448b410', 'from': '0xa1946e4585b3cc4e510d220ed11635b5d56c5ffa', 'to': '0xfe6bb8e57c0b86c6f8ee728bcd5116057e8991ea', 'value': 1068.30267762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18df948572', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:53:57.000Z'}}, {'blockNum': '0x9c0a7f', 'uniqueId': '0xd371431f9331669fa43a2064139263a5fc21522e402c3859364a8a323367e6cd:log:9', 'hash': '0xd371431f9331669fa43a2064139263a5fc21522e402c3859364a8a323367e6cd', 'from': '0xfe6bb8e57c0b86c6f8ee728bcd5116057e8991ea', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1068.30267762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18df948572', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:54:38.000Z'}}, {'blockNum': '0x9c0a81', 'uniqueId': '0x1c023357b0a5710f4175712fd63377f98cfc3ae95addb6e0cb1e6034226542ad:log:74', 'hash': '0x1c023357b0a5710f4175712fd63377f98cfc3ae95addb6e0cb1e6034226542ad', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x8236a838771b65e8b8add286a5f3a656fdc69599', 'value': 1763.209335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x290d8bee7c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:04.000Z'}}, {'blockNum': '0x9c0a83', 'uniqueId': '0xbef170810b1179f1c2fa0f24c8311169e956c10b76e63efdf9edceda7992f5c0:log:80', 'hash': '0xbef170810b1179f1c2fa0f24c8311169e956c10b76e63efdf9edceda7992f5c0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x27a133f9c6edb42b2f5ae58f82b607dfcfdb92a6', 'value': 52.10524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0136924960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:55.000Z'}}, {'blockNum': '0x9c0a83', 'uniqueId': '0x433ae2e6c8a1779005f75320524a428cc308839db691f7af3a53a69def4286bd:log:85', 'hash': '0x433ae2e6c8a1779005f75320524a428cc308839db691f7af3a53a69def4286bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 41291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03c16189eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:55.000Z'}}, {'blockNum': '0x9c0a88', 'uniqueId': '0x116a89394a7221955b95c74f132b3645f70d224924c977ca2fc9c0f21231ffd6:log:172', 'hash': '0x116a89394a7221955b95c74f132b3645f70d224924c977ca2fc9c0f21231ffd6', 'from': '0x15d223b307e180d83fb06f2e14f73d74adaf0064', 'to': '0x01702e0c202b2270de5116f0748f3e1a1827b100', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0773594000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:56:36.000Z'}}, {'blockNum': '0x9c0a8c', 'uniqueId': '0x4193fd76994bcd453916afea6cddfeb1262657edef3f7a0e97500aa33e6c2203:log:109', 'hash': '0x4193fd76994bcd453916afea6cddfeb1262657edef3f7a0e97500aa33e6c2203', 'from': '0xf95ad025b48580394375a7848ca6d4301ce2f2c5', 'to': '0xc1da812b30905eea37078ea0de6f647e1e347c59', 'value': 623.437101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e83f98594', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:56:50.000Z'}}, {'blockNum': '0x9c0a90', 'uniqueId': '0x9a50cd6b719e1554fd50fed14894cb6123051e8767533cc1ef466ad4993d728f:log:122', 'hash': '0x9a50cd6b719e1554fd50fed14894cb6123051e8767533cc1ef466ad4993d728f', 'from': '0xc1da812b30905eea37078ea0de6f647e1e347c59', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 623.437101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e83f98594', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:58:08.000Z'}}, {'blockNum': '0x9c0aab', 'uniqueId': '0xb114bcc8778c98e613cec59e70e018e7ef60b6d5257db60ce2d0cde905cd445a:log:126', 'hash': '0xb114bcc8778c98e613cec59e70e018e7ef60b6d5257db60ce2d0cde905cd445a', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8588.55479118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc7f7c6974e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:04:10.000Z'}}, {'blockNum': '0x9c0ac1', 'uniqueId': '0xb7aed3aaa7ada096fb531fa96a07d8af1ab4cef8ca79071a7047283493a02b63:log:17', 'hash': '0xb7aed3aaa7ada096fb531fa96a07d8af1ab4cef8ca79071a7047283493a02b63', 'from': '0xbbdebd4c0e4f2a0ea8d231a98bbb44d09f0c62e4', 'to': '0x2749335c22337103d273490327bfa44c5f1bcf6c', 'value': 9155.5477889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd52b513f0a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:07:13.000Z'}}, {'blockNum': '0x9c0aca', 'uniqueId': '0x17136cde5c8cd02fea21116f5e1ce5452ed6d6a4369fbfef2c5a48418762cc9f:log:106', 'hash': '0x17136cde5c8cd02fea21116f5e1ce5452ed6d6a4369fbfef2c5a48418762cc9f', 'from': '0x2749335c22337103d273490327bfa44c5f1bcf6c', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 9155.5477889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd52b513f0a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:09:04.000Z'}}, {'blockNum': '0x9c0ae7', 'uniqueId': '0x539b41ee6a9ba22093174a0fec44f08bb3d3fd060050e54a34d7b4dae81abd2f:log:83', 'hash': '0x539b41ee6a9ba22093174a0fec44f08bb3d3fd060050e54a34d7b4dae81abd2f', 'from': '0x95151e4615c5c0924b918c85ad8d8a94d6644ab3', 'to': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:14:38.000Z'}}, {'blockNum': '0x9c0af1', 'uniqueId': '0x432c76fe7680b03f8efae82a9f3259e25eaf542b7d2e8110ff15cd2b8c924e2d:log:29', 'hash': '0x432c76fe7680b03f8efae82a9f3259e25eaf542b7d2e8110ff15cd2b8c924e2d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:16:09.000Z'}}, {'blockNum': '0x9c0af8', 'uniqueId': '0x75e5b43e9dfb67ebc90017b4b51f5c169041e19fcdef05e312558aa161b889fb:log:53', 'hash': '0x75e5b43e9dfb67ebc90017b4b51f5c169041e19fcdef05e312558aa161b889fb', 'from': '0x9eca6eb9de167ef520c8764339e5ea1978e4adda', 'to': '0xbc505c9d6faa965809bfd73fdaa6b5b8705d7613', 'value': 186.4894027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0457903eee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:17:18.000Z'}}, {'blockNum': '0x9c0afd', 'uniqueId': '0xfa118d006a536ef75e0c720e7b5543821126e80ab9262d93c0d48e4708249723:log:7', 'hash': '0xfa118d006a536ef75e0c720e7b5543821126e80ab9262d93c0d48e4708249723', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 39712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x039c9df72000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:18:05.000Z'}}, {'blockNum': '0x9c0afe', 'uniqueId': '0x42fd02e74be4bb6cc9288bfee9f7c000bcd9d736989ab8468efb247e3fb0622c:log:15', 'hash': '0x42fd02e74be4bb6cc9288bfee9f7c000bcd9d736989ab8468efb247e3fb0622c', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:18:20.000Z'}}, {'blockNum': '0x9c0b00', 'uniqueId': '0x84feb3c99fb260a733c29af63c47b061b132864cf1597858689c958396d4ba30:log:46', 'hash': '0x84feb3c99fb260a733c29af63c47b061b132864cf1597858689c958396d4ba30', 'from': '0x4ea1e3f926db1af6120a592136c4c38e1ab97acb', 'to': '0x1341e58c8c8ed0e8bb1fbb4eaf481156722cd973', 'value': 1271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d9989da80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:19:25.000Z'}}, {'blockNum': '0x9c0b01', 'uniqueId': '0xda82c1ca4189afae05aed43b9a170785dfe4d38d3bc2aef795ed07f8b42ed4b3:log:40', 'hash': '0xda82c1ca4189afae05aed43b9a170785dfe4d38d3bc2aef795ed07f8b42ed4b3', 'from': '0xbc505c9d6faa965809bfd73fdaa6b5b8705d7613', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 186.4894027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0457903eee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:19:32.000Z'}}, {'blockNum': '0x9c0b23', 'uniqueId': '0xddbbed3e45cbbeb8f250290219760620cc676add20f8b0463b220753bb19c2f5:log:41', 'hash': '0xddbbed3e45cbbeb8f250290219760620cc676add20f8b0463b220753bb19c2f5', 'from': '0xa7f94985c44852c5cc9b399293e5948b62ca0566', 'to': '0x4f447d7f98a97619cd29469a5d4af1decdba4041', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0da475abf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:26:58.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x4e381d5e9d29a9e1fb8ed7e11a2772eae0f921cbbfa710db6accbff17a99e1f4:log:3', 'hash': '0x4e381d5e9d29a9e1fb8ed7e11a2772eae0f921cbbfa710db6accbff17a99e1f4', 'from': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 908.829719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15290c18fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x78143afff00e22b50474259036fcb0fd23ccad3e4e690f10d9a48f32fcd706c1:log:5', 'hash': '0x78143afff00e22b50474259036fcb0fd23ccad3e4e690f10d9a48f32fcd706c1', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3869.591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5a188f4860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x4952e807a45b8761aa535bec5025fb6ccddcc9caed7f58ca8d4660c40c7defe2:log:6', 'hash': '0x4952e807a45b8761aa535bec5025fb6ccddcc9caed7f58ca8d4660c40c7defe2', 'from': '0xae5432464b0dcbbb596ac664f49d6d0ea883b0be', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1790.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29ad59c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x78b50db19f1e53f631c0c2aea976bf96a21073f5f1f8b94a28b50a97bb0bf666:log:7', 'hash': '0x78b50db19f1e53f631c0c2aea976bf96a21073f5f1f8b94a28b50a97bb0bf666', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2844.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x423d487400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x2c1a93731eee25f52292fa22b19193eb8d2d10418bd0f46136fffe2b4a96b3b0:log:8', 'hash': '0x2c1a93731eee25f52292fa22b19193eb8d2d10418bd0f46136fffe2b4a96b3b0', 'from': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3649.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x54fb196b80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0xcca50995cc19f62536d4d2bcadfcff315b0a6f892e364735a05c14e0f6d6113a:log:38', 'hash': '0xcca50995cc19f62536d4d2bcadfcff315b0a6f892e364735a05c14e0f6d6113a', 'from': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 136.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033076e480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x97a39af2a361e1335f116ce97d38cc2aba39c28ceb24d060697f3a5d4291c5d4:log:39', 'hash': '0x97a39af2a361e1335f116ce97d38cc2aba39c28ceb24d060697f3a5d4291c5d4', 'from': '0x1e580bafb4649412d0c4fe1611d58d31bb3135f2', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1976.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e07d38bc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x34b5611c7f465547de606f6b3308eb4e0f12fc39fc05eedd3f7a662eeaf374a8:log:41', 'hash': '0x34b5611c7f465547de606f6b3308eb4e0f12fc39fc05eedd3f7a662eeaf374a8', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x9a96a1a0bff6504f807113c6c59020145e04fc8e', 'value': 327.703357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07a143a3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x40def877db2d9ec99f9a7c0891ba273a7880b7ab00d72d63b48c695376dbe047:log:43', 'hash': '0x40def877db2d9ec99f9a7c0891ba273a7880b7ab00d72d63b48c695376dbe047', 'from': '0x74f7477556d7b099ceb5781d5a7a109947b72a15', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1990.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e5b2a6280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x83a116c3f2999b140e3b0969e143ddce38a462c9456986a1ba804a7477b5efd7:log:44', 'hash': '0x83a116c3f2999b140e3b0969e143ddce38a462c9456986a1ba804a7477b5efd7', 'from': '0x83f5f66a111a446d29bc28c82b292b42cbe892ef', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17b8ff80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b29', 'uniqueId': '0xcfd9b0754e8d6359a9a99cfe742847ee9bf5c117b53bec17a62ea55793702bc4:log:3', 'hash': '0xcfd9b0754e8d6359a9a99cfe742847ee9bf5c117b53bec17a62ea55793702bc4', 'from': '0xbb4b1591816121b6e0a03fe9def951a0833f7892', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1210.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c3200d680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:31.000Z'}}, {'blockNum': '0x9c0b29', 'uniqueId': '0xac2d35aed19be40a1eb8f0f67c7bd7e41a066a6d65aec0ad0eb38e04e0ffb14c:log:4', 'hash': '0xac2d35aed19be40a1eb8f0f67c7bd7e41a066a6d65aec0ad0eb38e04e0ffb14c', 'from': '0xaca27a35838da5421fe925eb621a7679d6d2bdde', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 889.652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14b6bd3880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:31.000Z'}}, {'blockNum': '0x9c0b2b', 'uniqueId': '0xc89b1aee576917cf0c7654070cc8662ca2c0ae7a378ef98aa57c5c8a5aa8324b:log:55', 'hash': '0xc89b1aee576917cf0c7654070cc8662ca2c0ae7a378ef98aa57c5c8a5aa8324b', 'from': '0x1788f3be0b0f5da8f455375940cab89c4cc803e3', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 718.258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10b926bb40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:38.000Z'}}, {'blockNum': '0x9c0b3b', 'uniqueId': '0xc336dc2858d47f9e934f71dfb87b41dc89d005094b470548a38d87d7cf9426e9:log:119', 'hash': '0xc336dc2858d47f9e934f71dfb87b41dc89d005094b470548a38d87d7cf9426e9', 'from': '0x4f447d7f98a97619cd29469a5d4af1decdba4041', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0da475abf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:31:15.000Z'}}, {'blockNum': '0x9c0b72', 'uniqueId': '0x5a0c11800b1f5e8d5355b9bfbf32c7e22e88271cae77455fa58be1b90ab4e2e1:log:65', 'hash': '0x5a0c11800b1f5e8d5355b9bfbf32c7e22e88271cae77455fa58be1b90ab4e2e1', 'from': '0x6a065f496a93cad6cc08e58c1fbeb39af467a72e', 'to': '0x54d367de1ed2e44afc3c7ba7a270306ba1d35558', 'value': 59.058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0160035b40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:41:47.000Z'}}, {'blockNum': '0x9c0b79', 'uniqueId': '0xccf8c9e6f3ac1f069656e88ae7503102fc465deaa9bdacddf97fec2c7e6c4f91:log:15', 'hash': '0xccf8c9e6f3ac1f069656e88ae7503102fc465deaa9bdacddf97fec2c7e6c4f91', 'from': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 104.25775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026d6cb398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:42:54.000Z'}}, {'blockNum': '0x9c0b83', 'uniqueId': '0x22dd9cee32aaf94b02f19524fe7d0f9577a4df6beb40510d8ca701a95d222ca1:log:9', 'hash': '0x22dd9cee32aaf94b02f19524fe7d0f9577a4df6beb40510d8ca701a95d222ca1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1067.25282263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18d95291d7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:44:13.000Z'}}, {'blockNum': '0x9c0b8c', 'uniqueId': '0xb2e21209ddf26b5fdf5d6dc19279695be1d51e51b50ecf643b31cd03aed0e2fe:log:36', 'hash': '0xb2e21209ddf26b5fdf5d6dc19279695be1d51e51b50ecf643b31cd03aed0e2fe', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xa1946e4585b3cc4e510d220ed11635b5d56c5ffa', 'value': 1067.25282263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18d95291d7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:45:51.000Z'}}, {'blockNum': '0x9c0ba2', 'uniqueId': '0x64afd949486b50af2102df0f71461d724a58d05d9a1effa43c89e42e23c7c884:log:14', 'hash': '0x64afd949486b50af2102df0f71461d724a58d05d9a1effa43c89e42e23c7c884', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1255.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d3e396380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:50:09.000Z'}}, {'blockNum': '0x9c0ba8', 'uniqueId': '0x0c984984a10e697506fc856da6c4ad97b729aa0826b29b3f74100a27142b6f9c:log:27', 'hash': '0x0c984984a10e697506fc856da6c4ad97b729aa0826b29b3f74100a27142b6f9c', 'from': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7304.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaa14e51dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:51:10.000Z'}}, {'blockNum': '0x9c0baa', 'uniqueId': '0x83717a47c46bd16b55d2f6d70034feb5a8f2dc022ab4123b20c9797423f8ecff:log:15', 'hash': '0x83717a47c46bd16b55d2f6d70034feb5a8f2dc022ab4123b20c9797423f8ecff', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8791e0edc2322725e711408567eb513dc6db949d', 'value': 2461.56386422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3950106076', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:51:21.000Z'}}, {'blockNum': '0x9c0bbb', 'uniqueId': '0xc5e719f0d80950a163a3c4308a22092d02ba0bebc350defa621027b8597ec169:log:111', 'hash': '0xc5e719f0d80950a163a3c4308a22092d02ba0bebc350defa621027b8597ec169', 'from': '0xd78828beb41c129a1d6888df45c48d14ce7d98b8', 'to': '0xc5a7e0a4789e955687e5e2972dcf1620ab788527', 'value': 977.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16c40459e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:55:01.000Z'}}, {'blockNum': '0x9c0bda', 'uniqueId': '0x44cedabf7c4883d7b368a277fc5b48ba82da092502159056ea1132a735e80c10:log:5', 'hash': '0x44cedabf7c4883d7b368a277fc5b48ba82da092502159056ea1132a735e80c10', 'from': '0x1e6dab54518c0f91d74a509fa8d4f28ce912c765', 'to': '0x25cd9117c27307c238271c46e4f9d35087a7622a', 'value': 312.25041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0745285068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:00:10.000Z'}}, {'blockNum': '0x9c0bde', 'uniqueId': '0x95022ba4b61b65912ab641af98adef1137c125eb25e6a265a486af16a32ab95a:log:8', 'hash': '0x95022ba4b61b65912ab641af98adef1137c125eb25e6a265a486af16a32ab95a', 'from': '0x25cd9117c27307c238271c46e4f9d35087a7622a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 312.25041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0745285068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:01:19.000Z'}}, {'blockNum': '0x9c0bec', 'uniqueId': '0xb4e683ac4eaff6113a1f7d6106e1dd612b0990b71816ea2a6bf47aef49e7c819:log:11', 'hash': '0xb4e683ac4eaff6113a1f7d6106e1dd612b0990b71816ea2a6bf47aef49e7c819', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ce99085dedd17d8f571c413c3ebfe4049c6f7a9', 'value': 196.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x049617a080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:05:18.000Z'}}, {'blockNum': '0x9c0c03', 'uniqueId': '0x3a53a14d2061aa07bc033bc5d170f927f2978e2d3143ad360e20a209debc3906:log:137', 'hash': '0x3a53a14d2061aa07bc033bc5d170f927f2978e2d3143ad360e20a209debc3906', 'from': '0xf122f0d45acf90e9d494c04eeb0719bab65b7be8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7925.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb88767a8a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:09:27.000Z'}}, {'blockNum': '0x9c0c05', 'uniqueId': '0x5543bd4e81eed4670d9d0627bfc126521753c6576c0ba88d787cbb9f2ecfe6f6:log:68', 'hash': '0x5543bd4e81eed4670d9d0627bfc126521753c6576c0ba88d787cbb9f2ecfe6f6', 'from': '0x86debe91fefbda4001fcdc8b3da72b0e4cdab0d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21885.03033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8cf224a8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:09:43.000Z'}}, {'blockNum': '0x9c0c1d', 'uniqueId': '0x12668461df4943923e6fe913dfc01e2d6bfcb85f4175f76fafcea530b494a0d3:log:10', 'hash': '0x12668461df4943923e6fe913dfc01e2d6bfcb85f4175f76fafcea530b494a0d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc51231d1307ffeb4cb099aba99fdec58f64f4729', 'value': 51.234129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01316113a4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:15:46.000Z'}}, {'blockNum': '0x9c0c53', 'uniqueId': '0x79921ee457f3b184d1253797bd3b16bb5c83b0dc1ba230a753a91f0d07873d10:log:0', 'hash': '0x79921ee457f3b184d1253797bd3b16bb5c83b0dc1ba230a753a91f0d07873d10', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1255.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d3e396380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:28:31.000Z'}}, {'blockNum': '0x9c0c5b', 'uniqueId': '0xc3b1e5eb3a5aab7d711e338b8e727402f80a498850f9fd0a45a547d5948a33d8:log:2', 'hash': '0xc3b1e5eb3a5aab7d711e338b8e727402f80a498850f9fd0a45a547d5948a33d8', 'from': '0xbdaf17832a7141b591d9407490328fa5df364cb5', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 242.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a6ceb0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:31.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0x7dfe9d3db70a70b026399f87cc24f14ba38644e87de89d5f421543748da290bf:log:8', 'hash': '0x7dfe9d3db70a70b026399f87cc24f14ba38644e87de89d5f421543748da290bf', 'from': '0x639928b207057fbd1eba5fa915d3d9951a48a62d', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 451.77695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a84cced39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0xe0e4e55d0767fdb9030654df2c46bce3abedbda1f230a2fd5f22c6afa1c3f437:log:13', 'hash': '0xe0e4e55d0767fdb9030654df2c46bce3abedbda1f230a2fd5f22c6afa1c3f437', 'from': '0x93c476aa875bfb62b5e776ce0ae48b47926e36c2', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 75.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c467bc20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0xd739db4794d57aec19a5761db7e2abf364732428e44b36c4c8ac4e0d4066c081:log:17', 'hash': '0xd739db4794d57aec19a5761db7e2abf364732428e44b36c4c8ac4e0d4066c081', 'from': '0x1490cccbc69bae1a545af45bb2a15571d620a0e7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 70.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a6a1f840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0ca4', 'uniqueId': '0xf353e01631b783f1bd8b11b9e9d6b3d1ee52f1d28148d98d7b98e0fa989925a9:log:13', 'hash': '0xf353e01631b783f1bd8b11b9e9d6b3d1ee52f1d28148d98d7b98e0fa989925a9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2fb9e343a8a2c4c4bcd4670ce61a14afe762c661', 'value': 141.94648981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034e112795', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:46:24.000Z'}}, {'blockNum': '0x9c0cbc', 'uniqueId': '0x601dc575c62234ee45ced86244497f317aa4a4a3e6491df1f35e8c78753399cf:log:2', 'hash': '0x601dc575c62234ee45ced86244497f317aa4a4a3e6491df1f35e8c78753399cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 17100.76754495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018e28847a3f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:51:15.000Z'}}, {'blockNum': '0x9c0cc1', 'uniqueId': '0xbd46f210af82eeed877a2b9f5c4a719cf128bf053fd35526961eaa3dba7ad4f5:log:5', 'hash': '0xbd46f210af82eeed877a2b9f5c4a719cf128bf053fd35526961eaa3dba7ad4f5', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 17100.76754495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018e28847a3f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:51:56.000Z'}}, {'blockNum': '0x9c0ce1', 'uniqueId': '0xff1b1cfde1ec6c0ae4665ab2a66a287f104987d4d21eb77d8cd02c490d58caca:log:7', 'hash': '0xff1b1cfde1ec6c0ae4665ab2a66a287f104987d4d21eb77d8cd02c490d58caca', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbdbb09a328e40b8d741925f756b1765d2d0f1581', 'value': 448.13695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a6f1aba39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:58:19.000Z'}}, {'blockNum': '0x9c0ce9', 'uniqueId': '0xe3cb9cb5a9b7034173069586903fc79a0de12af05b77e00814eee0ffd7a198a0:log:28', 'hash': '0xe3cb9cb5a9b7034173069586903fc79a0de12af05b77e00814eee0ffd7a198a0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6efa4c6cb722a7f82a3671027b0fb7ccd69e41f2', 'value': 59.854003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164c1f5ec', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:00:14.000Z'}}, {'blockNum': '0x9c0ce9', 'uniqueId': '0x5900dab5975501eed53a5829a74c0dd5d237eba1913951f3fb4e68525c4c8d9b:log:34', 'hash': '0x5900dab5975501eed53a5829a74c0dd5d237eba1913951f3fb4e68525c4c8d9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6efa4c6cb722a7f82a3671027b0fb7ccd69e41f2', 'value': 70.656459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a525334c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:00:14.000Z'}}, {'blockNum': '0x9c0d40', 'uniqueId': '0xe47ba092229f829ec87eb9e559db7f5842a705a543602e6bab23ed9bf8a2ad02:log:2', 'hash': '0xe47ba092229f829ec87eb9e559db7f5842a705a543602e6bab23ed9bf8a2ad02', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2cd5e1c37351a664d9b367ba0fbe415882246373', 'value': 104.64917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026fc1f608', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:19:07.000Z'}}, {'blockNum': '0x9c0d70', 'uniqueId': '0x5fc40516bb977bf95182ed6c2f3b0435894bc305a6c4272a84a9e1033971acc2:log:88', 'hash': '0x5fc40516bb977bf95182ed6c2f3b0435894bc305a6c4272a84a9e1033971acc2', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 13291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013574888b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:29:54.000Z'}}, {'blockNum': '0x9c0d71', 'uniqueId': '0xd8970a835f378117fc9125143ee35961621de71cfe23f9ef3d422f24b294ba87:log:100', 'hash': '0xd8970a835f378117fc9125143ee35961621de71cfe23f9ef3d422f24b294ba87', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3338.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4db80c5de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:30:19.000Z'}}, {'blockNum': '0x9c0d82', 'uniqueId': '0xed1aa34a0d85b5b8229fab776d328a89c9bd992cf192852863e6821898bd2aea:log:13', 'hash': '0xed1aa34a0d85b5b8229fab776d328a89c9bd992cf192852863e6821898bd2aea', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b40e323b5522fe5261cc12b4022af535d9d63c8', 'value': 383.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08f0b2fb80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:35:36.000Z'}}, {'blockNum': '0x9c0d96', 'uniqueId': '0x9cedf710b3e1cd834902b2f80ef9a1821424aa6dbe090ee45cd4e6a71da834a3:log:105', 'hash': '0x9cedf710b3e1cd834902b2f80ef9a1821424aa6dbe090ee45cd4e6a71da834a3', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11764.65940841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0111ead5a169', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:40:22.000Z'}}, {'blockNum': '0x9c0da1', 'uniqueId': '0x66390fc44cb823f793ae6508956c29f512a9ade0a8df83a5c09d7a402274fa1f:log:32', 'hash': '0x66390fc44cb823f793ae6508956c29f512a9ade0a8df83a5c09d7a402274fa1f', 'from': '0x000614ff2c0fd4216379a139d9363dcc24d905b7', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 174.896328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0412769e20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:41:41.000Z'}}, {'blockNum': '0x9c0da2', 'uniqueId': '0xa5af928ceda38eda605d2aed66e9329057c0caca6755740cffcc3ccd7d8d76df:log:0', 'hash': '0xa5af928ceda38eda605d2aed66e9329057c0caca6755740cffcc3ccd7d8d76df', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2fac7bb714aae67c4fcd926af0687541ca5944b4', 'value': 76.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ca5c1680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:42:07.000Z'}}, {'blockNum': '0x9c0daf', 'uniqueId': '0xde58edfafb1b1c2487ad58a5bedbb6a556cecc99254799aea2ec174df78031c5:log:0', 'hash': '0xde58edfafb1b1c2487ad58a5bedbb6a556cecc99254799aea2ec174df78031c5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 36.94999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdc3d39bf', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:44:17.000Z'}}, {'blockNum': '0x9c0db4', 'uniqueId': '0x2023a83bf105850d0438b19ac6c481dd1a0012d57aaead1b607f787cc07a6887:log:139', 'hash': '0x2023a83bf105850d0438b19ac6c481dd1a0012d57aaead1b607f787cc07a6887', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x90319fbe0635475600665f93992a9480f0a1ebe0', 'value': 36.94999998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdc3d39be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:45:52.000Z'}}, {'blockNum': '0x9c0dc1', 'uniqueId': '0xed5b2d0c15781e2890cc9e7169f8b52a5b3256b211d388bfcc4e2d63f62ed197:log:2', 'hash': '0xed5b2d0c15781e2890cc9e7169f8b52a5b3256b211d388bfcc4e2d63f62ed197', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 471.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0af967c380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:50:38.000Z'}}, {'blockNum': '0x9c0dd5', 'uniqueId': '0x7d6b652dea8e3b9ceff12f2c6334cc358c95c66bd0561ba5e5cbfeddbb1edb0a:log:7', 'hash': '0x7d6b652dea8e3b9ceff12f2c6334cc358c95c66bd0561ba5e5cbfeddbb1edb0a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ca3f0a00a8e9274d398896d42e37c050ec45235', 'value': 821.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x131e7717e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:54:10.000Z'}}, {'blockNum': '0x9c0df2', 'uniqueId': '0x884c303dfc9f889297da018ed133454101a3078c45fc6233e00a12bb67b72242:log:33', 'hash': '0x884c303dfc9f889297da018ed133454101a3078c45fc6233e00a12bb67b72242', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xc9abeb1c2498b320a4b3a50ca430af57cef391fc', 'value': 20.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7b432d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:01:21.000Z'}}, {'blockNum': '0x9c0e18', 'uniqueId': '0x5cc52011e1958ae75cc671d2ee03c54756e6ca909df2cc20ed2f420abfe91da8:log:1', 'hash': '0x5cc52011e1958ae75cc671d2ee03c54756e6ca909df2cc20ed2f420abfe91da8', 'from': '0x72e5263ff33d2494692d7f94a758aa9f82062f73', 'to': '0x447f2963a0556c21b6b346facdce605c54809371', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fc23ac000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:11:20.000Z'}}, {'blockNum': '0x9c0e4d', 'uniqueId': '0x802b711f1e18cfe690626f1f6a7c6d40a38968e3af920e7450d192d00e440984:log:38', 'hash': '0x802b711f1e18cfe690626f1f6a7c6d40a38968e3af920e7450d192d00e440984', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 298.05367495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f089d0c7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:25:11.000Z'}}, {'blockNum': '0x9c0e57', 'uniqueId': '0x84184a960edddd154bc25529b7d4c550836b4c5106f9932786f07b67cb40696e:log:196', 'hash': '0x84184a960edddd154bc25529b7d4c550836b4c5106f9932786f07b67cb40696e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x502dafac138ffd710747c4827d6b3d9659da032d', 'value': 298.05367495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f089d0c7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:29:19.000Z'}}, {'blockNum': '0x9c0e5e', 'uniqueId': '0xeaf17fecf13a9426a9522075b123ba606299c220c6ee595802b003c8826311bd:log:107', 'hash': '0xeaf17fecf13a9426a9522075b123ba606299c220c6ee595802b003c8826311bd', 'from': '0x447f2963a0556c21b6b346facdce605c54809371', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7dba821800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:30:20.000Z'}}, {'blockNum': '0x9c0e7b', 'uniqueId': '0x450221672a50801062446eea9e49a9dda6aad09ac1ca108380bc14e313f1efa0:log:123', 'hash': '0x450221672a50801062446eea9e49a9dda6aad09ac1ca108380bc14e313f1efa0', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3046.079208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x46ec0c02a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:37:49.000Z'}}, {'blockNum': '0x9c0e91', 'uniqueId': '0x9153c2f72baedb2fa399e789603a24ec2eaa4348b16419b1f309bc797157158d:log:12', 'hash': '0x9153c2f72baedb2fa399e789603a24ec2eaa4348b16419b1f309bc797157158d', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xf704927b3a783e893e3062a62767a896c5540f45', 'value': 17.60557181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x68eff87d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:44:58.000Z'}}, {'blockNum': '0x9c0ea7', 'uniqueId': '0xdb6e65c3df26ab70c02fd5a3e52be2a4f826bd96812deed68f69201d7983d273:log:25', 'hash': '0xdb6e65c3df26ab70c02fd5a3e52be2a4f826bd96812deed68f69201d7983d273', 'from': '0xf704927b3a783e893e3062a62767a896c5540f45', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 17.60557181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x68eff87d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:51:00.000Z'}}, {'blockNum': '0x9c0eb8', 'uniqueId': '0x255c644cb7873fe38d91b02780f9ad5cbaad8395eb25ffd6b23e1ad4a3ee5f12:log:17', 'hash': '0x255c644cb7873fe38d91b02780f9ad5cbaad8395eb25ffd6b23e1ad4a3ee5f12', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 360.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0865fb33df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:55:32.000Z'}}, {'blockNum': '0x9c0ebd', 'uniqueId': '0xd0e6348ed74addd58f9f3cd69105229bea4e0777143b6a19041fa0c7a7e54876:log:18', 'hash': '0xd0e6348ed74addd58f9f3cd69105229bea4e0777143b6a19041fa0c7a7e54876', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x15d223b307e180d83fb06f2e14f73d74adaf0064', 'value': 329.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07ae6ab5c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:56:35.000Z'}}, {'blockNum': '0x9c0ec3', 'uniqueId': '0x317fb0d25ea5dd62492f748fb911dc97ad773eb31030f05384a63c0c77a676aa:log:93', 'hash': '0x317fb0d25ea5dd62492f748fb911dc97ad773eb31030f05384a63c0c77a676aa', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x2770e756f02671f93f0aef728772911342c259c6', 'value': 360.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0865fb33df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:57:41.000Z'}}, {'blockNum': '0x9c0ec8', 'uniqueId': '0x14a5fd7709c75180cb63f637acd9be6b0449b575a160ded9ab8b1bb4a7d26559:log:24', 'hash': '0x14a5fd7709c75180cb63f637acd9be6b0449b575a160ded9ab8b1bb4a7d26559', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x2fb9e343a8a2c4c4bcd4670ce61a14afe762c661', 'value': 63.65531597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x017b6a4dcd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:58:53.000Z'}}, {'blockNum': '0x9c0edb', 'uniqueId': '0x4d19be42e9b9e0af3039722d2f461e3c92ead1a6c6e322a1bc2307e7933b86d4:log:0', 'hash': '0x4d19be42e9b9e0af3039722d2f461e3c92ead1a6c6e322a1bc2307e7933b86d4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 8027.219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbae5f425e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:03:16.000Z'}}, {'blockNum': '0x9c0f0c', 'uniqueId': '0xc86a45a95a2f9003e31e9b09c8aa10128211e1e59d75e0dd58200fc668e89635:log:0', 'hash': '0xc86a45a95a2f9003e31e9b09c8aa10128211e1e59d75e0dd58200fc668e89635', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 290.50089863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c3853187', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:14:22.000Z'}}, {'blockNum': '0x9c0f0c', 'uniqueId': '0x5dd035e665c8636ecad3203e9e5102d006f1d1eaafd6e9777b4ba401aab393a8:log:3', 'hash': '0x5dd035e665c8636ecad3203e9e5102d006f1d1eaafd6e9777b4ba401aab393a8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2af50e9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:14:22.000Z'}}, {'blockNum': '0x9c0f13', 'uniqueId': '0xc4ae6ec6c5e3ad872c347b11b2b6ffa811042feab3981bb5c204fc3214130515:log:108', 'hash': '0xc4ae6ec6c5e3ad872c347b11b2b6ffa811042feab3981bb5c204fc3214130515', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1259fc9a8d8fcf968bc5aaad27442163aadf3d60', 'value': 290.50089863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c3853187', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:15:53.000Z'}}, {'blockNum': '0x9c0f3d', 'uniqueId': '0x2897490ff82dbce21b1b069053338c34fa7ccc140ebff2885180da1d6260f6dd:log:101', 'hash': '0x2897490ff82dbce21b1b069053338c34fa7ccc140ebff2885180da1d6260f6dd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb23ddb7735557aacff5acf8415f00068349ce3eb', 'value': 100.47548019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0256e16a73', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:24:15.000Z'}}, {'blockNum': '0x9c0f55', 'uniqueId': '0x0a31081dffd58b27e91d84523476575035067c62f1eca48d39445b1830128522:log:106', 'hash': '0x0a31081dffd58b27e91d84523476575035067c62f1eca48d39445b1830128522', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8027.219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbae5f425e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:30:28.000Z'}}, {'blockNum': '0x9c0f5f', 'uniqueId': '0x3ea6efdadae51bbca3cfe77c864352c0ecf1393577a9898db0e24a80e3878dbc:log:30', 'hash': '0x3ea6efdadae51bbca3cfe77c864352c0ecf1393577a9898db0e24a80e3878dbc', 'from': '0x0617169670775a5b2e4db26e24852a3d714bd165', 'to': '0x74454231249dba1a7885cdfb0512e81c21f18503', 'value': 327.22372899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x079e67c923', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:32:29.000Z'}}, {'blockNum': '0x9c0f64', 'uniqueId': '0x1caca6502aa377fa0ae684cdd1bc737011d5c87ef7540e38e97d9e6282338cdd:log:5', 'hash': '0x1caca6502aa377fa0ae684cdd1bc737011d5c87ef7540e38e97d9e6282338cdd', 'from': '0xbd56cf2fbdc8b89f43b011e441d53204ec9aecee', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 134.50797292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0321bae0ec', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:33:26.000Z'}}, {'blockNum': '0x9c0f6a', 'uniqueId': '0xd1d1f26f5640aeea8396c7a340bf3715277a6eed3acd397e0cfdc42467360c08:log:6', 'hash': '0xd1d1f26f5640aeea8396c7a340bf3715277a6eed3acd397e0cfdc42467360c08', 'from': '0x74454231249dba1a7885cdfb0512e81c21f18503', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 327.22372899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x079e67c923', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:13.000Z'}}, {'blockNum': '0x9c0f6e', 'uniqueId': '0x70380336c77fbe20630dfc9e34232cce3d8aff76041e3547131fb0ea2863aed9:log:57', 'hash': '0x70380336c77fbe20630dfc9e34232cce3d8aff76041e3547131fb0ea2863aed9', 'from': '0x1dd0755ad6d572b48c592e84e3a56b62263ee73f', 'to': '0xbe55164cfb1acab25c59568f06e7af2b81b3528e', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:44.000Z'}}, {'blockNum': '0x9c0f6e', 'uniqueId': '0x04d860f9364a8c3885ba0d252a40da9f093948ac3cdc11dc79707368050cdd6f:log:58', 'hash': '0x04d860f9364a8c3885ba0d252a40da9f093948ac3cdc11dc79707368050cdd6f', 'from': '0xc016ab3a4367ce6f2cecac15f6404d6f1531b969', 'to': '0xe673362cfceb7ada97ca69571ef75de274a6e33f', 'value': 240.48533886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x059967817e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:44.000Z'}}, {'blockNum': '0x9c0f7b', 'uniqueId': '0x159966c0713bef796ffcc90f396e12031bfb1e8f0f08c03da94bddb5327e2bde:log:8', 'hash': '0x159966c0713bef796ffcc90f396e12031bfb1e8f0f08c03da94bddb5327e2bde', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x27738019da260c847083eae79a0fdf2a42551974', 'value': 120.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d118d480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:38:44.000Z'}}, {'blockNum': '0x9c0fd7', 'uniqueId': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064:log:0', 'hash': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064', 'from': '0x16e3ebd91b3a6708cb34b28862abec99956f9a3e', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 15.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5e887080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:23.000Z'}}, {'blockNum': '0x9c0fd7', 'uniqueId': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064:log:1', 'hash': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064', 'from': '0x16e3ebd91b3a6708cb34b28862abec99956f9a3e', 'to': '0xdccac55b294c75b72d6117ade54c3563442478a4', 'value': 2950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44af5ec600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:23.000Z'}}, {'blockNum': '0x9c0fdb', 'uniqueId': '0x12f1d95b74fb2253d257214110028563bae9d1f39732f82e342d179c33126429:log:0', 'hash': '0x12f1d95b74fb2253d257214110028563bae9d1f39732f82e342d179c33126429', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 11.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x432ca7c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:45.000Z'}}, {'blockNum': '0x9c0fdc', 'uniqueId': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e:log:0', 'hash': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 11.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x432ca7c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:54.000Z'}}, {'blockNum': '0x9c0fdc', 'uniqueId': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e:log:1', 'hash': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x39db9c3c2b8d7d5c7f8b3470b936af26a464e7a3', 'value': 9900.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe6823528c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:54.000Z'}}, {'blockNum': '0x9c0fde', 'uniqueId': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227:log:0', 'hash': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227', 'from': '0x1c76f494fde175655e55e9b50f2d7a159219dc9b', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 14.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x56b989c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:02:28.000Z'}}, {'blockNum': '0x9c0fde', 'uniqueId': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227:log:1', 'hash': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227', 'from': '0x1c76f494fde175655e55e9b50f2d7a159219dc9b', 'to': '0x36cfb5a6be6b130cfceb934d3ca72c1d72c3a7d8', 'value': 171335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f95342e6700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:02:28.000Z'}}, {'blockNum': '0x9c0fe0', 'uniqueId': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd:log:0', 'hash': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 16.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x61ee30c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:09.000Z'}}, {'blockNum': '0x9c0fe0', 'uniqueId': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd:log:1', 'hash': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0xb7e27ef96256502677eb2e15f65848a8a50d3a49', 'value': 12907.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012c86c13dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:09.000Z'}}, {'blockNum': '0x9c0fe3', 'uniqueId': '0xba98c6d6549f2f3987247d6a029b782b93579f52ae0485e37538840e21e766ca:log:0', 'hash': '0xba98c6d6549f2f3987247d6a029b782b93579f52ae0485e37538840e21e766ca', 'from': '0xfa17a2003132c9dfc95c42ebcb9f5b8fb24db5f8', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 12.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x497e1640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:55.000Z'}}, {'blockNum': '0x9c0fe3', 'uniqueId': '0x52dc227ffb7bd1d969c968f86baabbc539d6eb2a4bf901f7b00a1d352d98da48:log:5', 'hash': '0x52dc227ffb7bd1d969c968f86baabbc539d6eb2a4bf901f7b00a1d352d98da48', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xbc9990df22f469960b52dadfcfdac1ce13778d52', 'value': 67.63671368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0193256f48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:55.000Z'}}, {'blockNum': '0x9c0fe5', 'uniqueId': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934:log:0', 'hash': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934', 'from': '0x171967273368510f92632cb5d8b081fde729f1d9', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 18.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6dd9f2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:04:27.000Z'}}, {'blockNum': '0x9c0fe5', 'uniqueId': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934:log:1', 'hash': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934', 'from': '0x171967273368510f92632cb5d8b081fde729f1d9', 'to': '0x5fe1eddb81a6e2ad3c10391c74c4f3e55c30f6f9', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x800e8dfc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:04:27.000Z'}}, {'blockNum': '0x9c0fe8', 'uniqueId': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660:log:0', 'hash': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660', 'from': '0x846f88d4f838fc7192d2d35d6fe55338312618da', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 31.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbb1956c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:05:49.000Z'}}, {'blockNum': '0x9c0fe8', 'uniqueId': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660:log:1', 'hash': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660', 'from': '0x846f88d4f838fc7192d2d35d6fe55338312618da', 'to': '0xb0ad48e5a9a926fec232dc7c22ed72c725acb1f8', 'value': 1224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c7f9bc800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:05:49.000Z'}}, {'blockNum': '0x9c0fe9', 'uniqueId': '0xe4a4abf953a812e973a6e10fc40c00ea06370b1e82105c4b552e4848b80b6853:log:0', 'hash': '0xe4a4abf953a812e973a6e10fc40c00ea06370b1e82105c4b552e4848b80b6853', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:05.000Z'}}, {'blockNum': '0x9c0fec', 'uniqueId': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6:log:0', 'hash': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6', 'from': '0x697c9ea5b3a5179df20f8230cf79ccd02d044089', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 31.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbb1956c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:22.000Z'}}, {'blockNum': '0x9c0fec', 'uniqueId': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6:log:1', 'hash': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6', 'from': '0x697c9ea5b3a5179df20f8230cf79ccd02d044089', 'to': '0x0000000000000000000000000000000000000000', 'value': 239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05908d0f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:22.000Z'}}, {'blockNum': '0x9c0fed', 'uniqueId': '0x34579330997886cc31d7b1e4cecb6d5a56f28dd8f1b3d3fd7803145ed1d800f9:log:6', 'hash': '0x34579330997886cc31d7b1e4cecb6d5a56f28dd8f1b3d3fd7803145ed1d800f9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb4cf686ea7a0e1cbc83c6d922106c4df5249ce43', 'value': 61.91881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0171109b28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:25.000Z'}}, {'blockNum': '0x9c1004', 'uniqueId': '0xf4522ec639cbbf4574d8f6fd6cd4324bdd3045634728471e08d4a974beaa5c24:log:40', 'hash': '0xf4522ec639cbbf4574d8f6fd6cd4324bdd3045634728471e08d4a974beaa5c24', 'from': '0xa6373b90c7f362ede18462748392d6c69668ee96', 'to': '0x7639d45c0ce0d655d3e7b66bc4c84cd9792fc9b2', 'value': 9940.40493477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe7716e35a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:12:10.000Z'}}, {'blockNum': '0x9c1007', 'uniqueId': '0x326790e3e7a79b33de29e64e9ca9fe41b218a6acc78e049f2a3b4b2df67a273f:log:0', 'hash': '0x326790e3e7a79b33de29e64e9ca9fe41b218a6acc78e049f2a3b4b2df67a273f', 'from': '0x7639d45c0ce0d655d3e7b66bc4c84cd9792fc9b2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 9940.40493477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe7716e35a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:12:41.000Z'}}, {'blockNum': '0x9c1027', 'uniqueId': '0x21686e8ec20cf6ab68db5f8812f585947187c1451537587cf5915f8d33a6bdda:log:23', 'hash': '0x21686e8ec20cf6ab68db5f8812f585947187c1451537587cf5915f8d33a6bdda', 'from': '0x2578753e8e09a7f9fbb393938fd273ad81973da5', 'to': '0xc5cb147b5e119ae7503b0e9040daeb85ea360ae0', 'value': 170.33222108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f74257dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:19:28.000Z'}}, {'blockNum': '0x9c1029', 'uniqueId': '0xed5d14177e9a4fd870a2c9b971ead6c8aa3a3a97485ef65188af68de6bc90b79:log:0', 'hash': '0xed5d14177e9a4fd870a2c9b971ead6c8aa3a3a97485ef65188af68de6bc90b79', 'from': '0xc5cb147b5e119ae7503b0e9040daeb85ea360ae0', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 170.33222108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f74257dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:19:47.000Z'}}, {'blockNum': '0x9c105c', 'uniqueId': '0x0362d84b345801fb0dee5a31376636b42be3c66ee502fe0f55a31249278536cc:log:72', 'hash': '0x0362d84b345801fb0dee5a31376636b42be3c66ee502fe0f55a31249278536cc', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10110.73715585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xeb68b08d81', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:30:18.000Z'}}, {'blockNum': '0x9c1097', 'uniqueId': '0x8523597fb409df40bf42986aea87085dd68dff043d373fcd8bcbe9fddafd9505:log:4', 'hash': '0x8523597fb409df40bf42986aea87085dd68dff043d373fcd8bcbe9fddafd9505', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xd7a7e33d0fa9d8b85db3be2aaa89b191d6f2f74c', 'value': 152.51896491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x038d1578ab', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:43:16.000Z'}}, {'blockNum': '0x9c109e', 'uniqueId': '0xffeaf59e3c03eb7ee42ac7ace7350ac00d53ede29139675f244f14bea70a1a79:log:3', 'hash': '0xffeaf59e3c03eb7ee42ac7ace7350ac00d53ede29139675f244f14bea70a1a79', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2391.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x37abfebe00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:44:02.000Z'}}, {'blockNum': '0x9c10a0', 'uniqueId': '0x62e5b41ccfbe91750eef3e16b90f49afd2dd6b63c46dc05ddb00cbc7b36c1b53:log:12', 'hash': '0x62e5b41ccfbe91750eef3e16b90f49afd2dd6b63c46dc05ddb00cbc7b36c1b53', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2391.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x37abfebe00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:44:13.000Z'}}, {'blockNum': '0x9c10a6', 'uniqueId': '0x436adc997eb834877b3099210bf61fa394a591bacbf38d99597145a1e296cae7:log:89', 'hash': '0x436adc997eb834877b3099210bf61fa394a591bacbf38d99597145a1e296cae7', 'from': '0xd7a7e33d0fa9d8b85db3be2aaa89b191d6f2f74c', 'to': '0xdf0ac221172ca54350ecdde54f0d755c5ca0c3d9', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:46:11.000Z'}}, {'blockNum': '0x9c10d8', 'uniqueId': '0x6214177573b956c5474be1fed397a2d7268b8ad993f3de7b0f2ad016ffc7e444:log:22', 'hash': '0x6214177573b956c5474be1fed397a2d7268b8ad993f3de7b0f2ad016ffc7e444', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 3326.273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7221cea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:00:39.000Z'}}, {'blockNum': '0x9c10da', 'uniqueId': '0x329254e70bf3c96a3cb5eed04d05d125412ef54935126c16d2c4af5e176b7870:log:15', 'hash': '0x329254e70bf3c96a3cb5eed04d05d125412ef54935126c16d2c4af5e176b7870', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2006b6eddef65c0868901da4d71895bc34cb26c7', 'value': 121.37093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d36d5788', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:02:21.000Z'}}, {'blockNum': '0x9c10da', 'uniqueId': '0xab2cc6258bad527a0d3f58fe0aa04d861cb23ffe296a78b62fdd162223c4127e:log:22', 'hash': '0xab2cc6258bad527a0d3f58fe0aa04d861cb23ffe296a78b62fdd162223c4127e', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3326.273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7221cea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:02:21.000Z'}}, {'blockNum': '0x9c10e0', 'uniqueId': '0xacd53eb2662ae5ebf0050eaa4fdea9b65c74684c6e16f08d9847dd0175ec9b5b:log:22', 'hash': '0xacd53eb2662ae5ebf0050eaa4fdea9b65c74684c6e16f08d9847dd0175ec9b5b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 476.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b19853300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:04:36.000Z'}}, {'blockNum': '0x9c10fa', 'uniqueId': '0x5721d31f0e39f6fcdd88f7e9d840214df6bbcf0104892299c9e92535c424799a:log:14', 'hash': '0x5721d31f0e39f6fcdd88f7e9d840214df6bbcf0104892299c9e92535c424799a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xfbc584988f90d2b4f37a83c6a8c8faf0b43ecc2b', 'value': 1056.63491943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x189a08ef67', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:12.000Z'}}, {'blockNum': '0x9c10fc', 'uniqueId': '0x773f9e1b900f76c957e2a14cab50103d3b4b9c7cee4a4f74035c0fc0be713c1a:log:14', 'hash': '0x773f9e1b900f76c957e2a14cab50103d3b4b9c7cee4a4f74035c0fc0be713c1a', 'from': '0xfbc584988f90d2b4f37a83c6a8c8faf0b43ecc2b', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1056.63491942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x189a08ef66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:26.000Z'}}, {'blockNum': '0x9c10fd', 'uniqueId': '0x8c9fd4368018872182915433f5aa86d59f8a7187cbd1232a1350ec190b0ba578:log:5', 'hash': '0x8c9fd4368018872182915433f5aa86d59f8a7187cbd1232a1350ec190b0ba578', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 476.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b19853300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:37.000Z'}}, {'blockNum': '0x9c1106', 'uniqueId': '0xce6adf6a4eb77638b7b647e1ce2ab3813606fe6f329bcca823323bb8717e79c2:log:4', 'hash': '0xce6adf6a4eb77638b7b647e1ce2ab3813606fe6f329bcca823323bb8717e79c2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2239135542266b1231754f7f560bf2639a7ddb9a', 'value': 709.267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10838f8de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:13:46.000Z'}}, {'blockNum': '0x9c1106', 'uniqueId': '0x0d33b3f6fb5a9c6c6bfc22f1debc40e6b8a9b32009a87c724a7e66146838b5ad:log:6', 'hash': '0x0d33b3f6fb5a9c6c6bfc22f1debc40e6b8a9b32009a87c724a7e66146838b5ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7ff0d2adfc9c4cb688139898dd1f12c6fbb0c7c9', 'value': 1362.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbbfe6e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:13:46.000Z'}}, {'blockNum': '0x9c1107', 'uniqueId': '0xd8934fc5fae4fc9ccb168b297bed87100b13e3067bc345fec136d313155dcc73:log:14', 'hash': '0xd8934fc5fae4fc9ccb168b297bed87100b13e3067bc345fec136d313155dcc73', 'from': '0x2239135542266b1231754f7f560bf2639a7ddb9a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 709.267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10838f8de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:14:13.000Z'}}, {'blockNum': '0x9c1107', 'uniqueId': '0x6bac4edcbb4ea409d196e09fedcbc8ac69609d9c34fbc2aa54f3387cce14121f:log:18', 'hash': '0x6bac4edcbb4ea409d196e09fedcbc8ac69609d9c34fbc2aa54f3387cce14121f', 'from': '0x7ff0d2adfc9c4cb688139898dd1f12c6fbb0c7c9', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1362.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbbfe6e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:14:13.000Z'}}, {'blockNum': '0x9c1124', 'uniqueId': '0x4bf4ccbe6d91a009c2be466863fffcf0c15c58060975b5e9bd95120accfebcb4:log:5', 'hash': '0x4bf4ccbe6d91a009c2be466863fffcf0c15c58060975b5e9bd95120accfebcb4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'value': 612.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e42365880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:21:47.000Z'}}, {'blockNum': '0x9c112d', 'uniqueId': '0xa90570997d3a1d7597117b0de21a6c15bb7e5115bf9a906ee0565fa9712a5989:log:3', 'hash': '0xa90570997d3a1d7597117b0de21a6c15bb7e5115bf9a906ee0565fa9712a5989', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 2938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4467d83a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:23:55.000Z'}}, {'blockNum': '0x9c112d', 'uniqueId': '0xdfee7d6e7e6dd2d2a5365921a84034c6e7994f572f8edd4589a6c915aa5d39ae:log:5', 'hash': '0xdfee7d6e7e6dd2d2a5365921a84034c6e7994f572f8edd4589a6c915aa5d39ae', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf84bd1d10fef6feeb7afa3561871716fe3d035c9', 'value': 41.700444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf88dd3f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:23:55.000Z'}}, {'blockNum': '0x9c1130', 'uniqueId': '0xb4a8c9a06f1702c2b8a69b27f4b29c646b54cdddfbe7fcae07f705f6b32aded5:log:7', 'hash': '0xb4a8c9a06f1702c2b8a69b27f4b29c646b54cdddfbe7fcae07f705f6b32aded5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'value': 443.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a55705c60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:25:22.000Z'}}, {'blockNum': '0x9c1144', 'uniqueId': '0x51b4cacdae2adf2c775f695c9a24d796010e2fbdb293fa932cd75ded41b4fced:log:96', 'hash': '0x51b4cacdae2adf2c775f695c9a24d796010e2fbdb293fa932cd75ded41b4fced', 'from': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1056.235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1897a6b4e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:29:01.000Z'}}, {'blockNum': '0x9c1149', 'uniqueId': '0xafcef7f54562898253fa0ba8297605ea357e37b6c8d0cc9ce90ca1739aeb49d3:log:12', 'hash': '0xafcef7f54562898253fa0ba8297605ea357e37b6c8d0cc9ce90ca1739aeb49d3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 709.067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10825e60e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:30:17.000Z'}}, {'blockNum': '0x9c114c', 'uniqueId': '0x736054cf93736621b30e749501f81b68990e48f16c704ad3a5106ca273a388a1:log:14', 'hash': '0x736054cf93736621b30e749501f81b68990e48f16c704ad3a5106ca273a388a1', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4467d83a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:31:36.000Z'}}, {'blockNum': '0x9c1161', 'uniqueId': '0x8cea89f008f6e1aa69aa61a09f632541a79a13df1d18a3c864051d7569e5e199:log:1', 'hash': '0x8cea89f008f6e1aa69aa61a09f632541a79a13df1d18a3c864051d7569e5e199', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9dcb9a3da34e628ed2dcf2e0ab05c0d3d62b2f8', 'value': 34.769243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcf3da78c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:36:17.000Z'}}, {'blockNum': '0x9c1164', 'uniqueId': '0x5e4ca9d6107272cbb4bca2f149df7487f69ad856d62a7cf592d5dc7c71dc9d69:log:25', 'hash': '0x5e4ca9d6107272cbb4bca2f149df7487f69ad856d62a7cf592d5dc7c71dc9d69', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x33d3fe7200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:37:00.000Z'}}, {'blockNum': '0x9c1177', 'uniqueId': '0x272b4ef226a5c84afe7a7cfd45eeb1f753b6f4e27007a55eb924e1fe481598d9:log:136', 'hash': '0x272b4ef226a5c84afe7a7cfd45eeb1f753b6f4e27007a55eb924e1fe481598d9', 'from': '0x32435ff043ac194c8b3406c8d56520c0d18cd15e', 'to': '0x29b6e2749e038d2b984ce547759988070fc20631', 'value': 1686.818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2746380140', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:42:28.000Z'}}, {'blockNum': '0x9c11e7', 'uniqueId': '0x217566785bce9c238024d81f7568c9a3ddf0f40f8102ea9c9e2c0c7dc61d729b:log:161', 'hash': '0x217566785bce9c238024d81f7568c9a3ddf0f40f8102ea9c9e2c0c7dc61d729b', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5ec90d0700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:05:08.000Z'}}, {'blockNum': '0x9c120b', 'uniqueId': '0xe2d0d4651ad8db4ebcf46e5163cde7a879c345007fc72afd24d3a8b161333400:log:134', 'hash': '0xe2d0d4651ad8db4ebcf46e5163cde7a879c345007fc72afd24d3a8b161333400', 'from': '0xb36db036f4c9bededba071d0792bedaf17b89f08', 'to': '0x9ae79d587caeae8981b1203c63e20f1be7c1fa1e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:13:15.000Z'}}, {'blockNum': '0x9c1264', 'uniqueId': '0x3673b156e790c2dabf0a6127519aa99c41e982af6a5026dcdce9954fc9bc1df4:log:0', 'hash': '0x3673b156e790c2dabf0a6127519aa99c41e982af6a5026dcdce9954fc9bc1df4', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'value': 89.74844279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0216f14177', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:27:34.000Z'}}, {'blockNum': '0x9c1280', 'uniqueId': '0x39d3729a4d7b2bd2ab64b9b3d2249baeb4a4efadf14588386cd58165ca914986:log:22', 'hash': '0x39d3729a4d7b2bd2ab64b9b3d2249baeb4a4efadf14588386cd58165ca914986', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd3e8a790b2fbbe53a9db03845bdc0dca3064dc69', 'value': 47.575063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011b91c8fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:33:06.000Z'}}, {'blockNum': '0x9c12b7', 'uniqueId': '0x0b1f1fdc7023d61b55d97786a2816cbdf86a189fc8408d41c99d664075c6d92d:log:15', 'hash': '0x0b1f1fdc7023d61b55d97786a2816cbdf86a189fc8408d41c99d664075c6d92d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18c5ef2800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:43:46.000Z'}}, {'blockNum': '0x9c1302', 'uniqueId': '0x5a515c2eecc3008d1bd81839c8389ff273e149addb2e983059d095a1cea4b260:log:137', 'hash': '0x5a515c2eecc3008d1bd81839c8389ff273e149addb2e983059d095a1cea4b260', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x18a052ff51cf8bfb6b9028eda22b855f1f87df3c', 'value': 491.34842318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b70aa31ce', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:03:49.000Z'}}, {'blockNum': '0x9c1315', 'uniqueId': '0x54457c5332fa99fbbab83f0c9b0889609519eb05e725a345e7b9cd8ae5acec2f:log:196', 'hash': '0x54457c5332fa99fbbab83f0c9b0889609519eb05e725a345e7b9cd8ae5acec2f', 'from': '0x9ae79d587caeae8981b1203c63e20f1be7c1fa1e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:08:20.000Z'}}, {'blockNum': '0x9c1319', 'uniqueId': '0x7520cdb05ed493b946f988dcb78c008567e92a6ed5f9019058f05ccdb9a416d6:log:135', 'hash': '0x7520cdb05ed493b946f988dcb78c008567e92a6ed5f9019058f05ccdb9a416d6', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x0f0c138a6364464d5de4ecf746894443526516e6', 'value': 396.3901736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x093aab6790', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:10:11.000Z'}}, {'blockNum': '0x9c1357', 'uniqueId': '0x234f47bdd482e6be3ca64c84d875c3e74fb28a6bee4c0a3d837fee791871a711:log:153', 'hash': '0x234f47bdd482e6be3ca64c84d875c3e74fb28a6bee4c0a3d837fee791871a711', 'from': '0xe184a8d3a892930221284832d68c77f0d84b9382', 'to': '0x5ab1e75aeefa5883463e170d7229e5f51ece8ad1', 'value': 102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025ff7a600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:24:36.000Z'}}, {'blockNum': '0x9c13e8', 'uniqueId': '0x3afde15545ce85ff251fb14495e61a298921248f04055ee275acce337975e290:log:104', 'hash': '0x3afde15545ce85ff251fb14495e61a298921248f04055ee275acce337975e290', 'from': '0x263dd9b9fa838e6cbe0142b816f6396719502bf1', 'to': '0x6d512f2c26dae6f89c065ef4ee24b625bd8e3544', 'value': 46.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011711a680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:52:24.000Z'}}, {'blockNum': '0x9c1400', 'uniqueId': '0x04430164bd1a2808e72fa78d0f2f9e71ee27d00227242b020117d46cbbe2c619:log:65', 'hash': '0x04430164bd1a2808e72fa78d0f2f9e71ee27d00227242b020117d46cbbe2c619', 'from': '0x58ada76e6afbcd711932f3896e355796f16a6710', 'to': '0x831e5466242fe0e200ff920fc52a69a68b6df171', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:58:16.000Z'}}, {'blockNum': '0x9c140b', 'uniqueId': '0xd7480c85c14163a886ea91d7bce93a71215f574d2cf49a2e4a1a14efe4c4d665:log:12', 'hash': '0xd7480c85c14163a886ea91d7bce93a71215f574d2cf49a2e4a1a14efe4c4d665', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 500.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba9c68540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:00:34.000Z'}}, {'blockNum': '0x9c140b', 'uniqueId': '0xb064a81915548b3434987573bb60399e9edd83f13d053e77196fb16f3ccf1bc8:log:14', 'hash': '0xb064a81915548b3434987573bb60399e9edd83f13d053e77196fb16f3ccf1bc8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 298.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f3bc2ec0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:00:34.000Z'}}, {'blockNum': '0x9c1412', 'uniqueId': '0x16b05d6745770571b10b2225bff96e7da43bb411c6a7f477c2d1d8ee5fac4de4:log:6', 'hash': '0x16b05d6745770571b10b2225bff96e7da43bb411c6a7f477c2d1d8ee5fac4de4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1421.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x21195631c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:02:52.000Z'}}, {'blockNum': '0x9c1416', 'uniqueId': '0x7dbb6991adccf54e2a02f1bd76c2b353bc38808b1a33d72ef0d86f3b31b65f10:log:49', 'hash': '0x7dbb6991adccf54e2a02f1bd76c2b353bc38808b1a33d72ef0d86f3b31b65f10', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 385.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08fa4ba5c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:03:44.000Z'}}]}}
Number of returned transfers:  309
Answer is complete
 
symbol             QSP
group              TCG
date        2020-06-13
hour             16:00
exchange       binance
Name: 587, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2020-06-13 16:00:00 2020-06-13 04:00:00 2020-06-14 04:00:00
Unix timestamps:  1592013600.0 1592100000.0
Hex Block Numbers:  0x9c78bc 0x9c9223
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9c78cc', 'uniqueId': '0xe0f3acb9ac4e9da824f213316acb54e65f50b88d8748a92432faa146cf7de6b2:log:5', 'hash': '0xe0f3acb9ac4e9da824f213316acb54e65f50b88d8748a92432faa146cf7de6b2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd7fb052e6580c5a24b74953d76281d79d7820977', 'value': 9597.327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x020845aae9aea9618000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:03:07.000Z'}}, {'blockNum': '0x9c796f', 'uniqueId': '0x154bfe084b5ca472dc85f4693ae84887e400d7f9017e3a60096272a876c3d521:log:7', 'hash': '0x154bfe084b5ca472dc85f4693ae84887e400d7f9017e3a60096272a876c3d521', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x386e96e10447095a99b919defc955c6d4835c279', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:38:27.000Z'}}, {'blockNum': '0x9c7973', 'uniqueId': '0x3e0a39a246de933b902350265c7f3e346462e0c7519cb3feb80a8b32b6e56527:log:105', 'hash': '0x3e0a39a246de933b902350265c7f3e346462e0c7519cb3feb80a8b32b6e56527', 'from': '0x4adf9e849705bc6b7b363e95c32343942d0c2063', 'to': '0x565ed33632dd634f05458bf4afd41da25931e1d5', 'value': 27566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05d65b19451291f80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:39:48.000Z'}}, {'blockNum': '0x9c79ae', 'uniqueId': '0x1782e3700995859c8445e3c9a00f4cf2293b0541a49b2aeedcf01fd9c7f67a0b:log:1', 'hash': '0x1782e3700995859c8445e3c9a00f4cf2293b0541a49b2aeedcf01fd9c7f67a0b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 20206.787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04476980945aa5338000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:52:57.000Z'}}, {'blockNum': '0x9c79ba', 'uniqueId': '0xa71ef361a1ff2a0f2b1441e62cb60a9d7d9c1acc10846a3286e390c653d8c572:log:41', 'hash': '0xa71ef361a1ff2a0f2b1441e62cb60a9d7d9c1acc10846a3286e390c653d8c572', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0024fd7d0c646d101b7b6889e791e3b5acf21628', 'value': 20206.787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04476980945aa5338000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:55:39.000Z'}}, {'blockNum': '0x9c7a49', 'uniqueId': '0xa57ca6293cb4bbc759dd966f3b749d20ebda1e4131fe36bbc202678519af5476:log:0', 'hash': '0xa57ca6293cb4bbc759dd966f3b749d20ebda1e4131fe36bbc202678519af5476', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x447449d92bbd7112f8bc1a8a9b9423f88b86ebeb', 'value': 51929.59600001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aff1bea0b37bdf1e400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T03:26:26.000Z'}}, {'blockNum': '0x9c7b5b', 'uniqueId': '0x3d1c7859b7da4fbd01540e5672e90e423d89ba0fda96d2563dc411d20cec8568:log:154', 'hash': '0x3d1c7859b7da4fbd01540e5672e90e423d89ba0fda96d2563dc411d20cec8568', 'from': '0x94c7c34a3cdb736f029cb5d068f7eb43866e6911', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 87892.7258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x129cac99377b12ca8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T04:30:32.000Z'}}, {'blockNum': '0x9c7bc0', 'uniqueId': '0xf9b265f977150941dc8c579d78f55f9664a7ac7681811c798f1f8c4b9806c69b:log:8', 'hash': '0xf9b265f977150941dc8c579d78f55f9664a7ac7681811c798f1f8c4b9806c69b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 17793.59824999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03c497c7e5d78a38bc00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T04:52:26.000Z'}}, {'blockNum': '0x9c7bcd', 'uniqueId': '0x993da0860cde7ecef63aa875ce3c1bcf162a4d47386d609d6df78ced413e1805:log:85', 'hash': '0x993da0860cde7ecef63aa875ce3c1bcf162a4d47386d609d6df78ced413e1805', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4d46513b4d234797bd57c79a6c7f56e96ad887f1', 'value': 17793.59824999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03c497c7e5d78a38bc00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T04:54:46.000Z'}}, {'blockNum': '0x9c7c40', 'uniqueId': '0x283652d3bb98f21edfd0b9aa1da1d44514f14aefa3ce9ab27fc98dd5d0b7b939:log:17', 'hash': '0x283652d3bb98f21edfd0b9aa1da1d44514f14aefa3ce9ab27fc98dd5d0b7b939', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad5646dee0a4c919e2e6c13419ba79dd75f82a00', 'value': 199938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a56a923831362c80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:23:54.000Z'}}, {'blockNum': '0x9c7c4a', 'uniqueId': '0x29b48453d2b95cfc2ab9e984aae850d2b76615da9ee2d2ac52499cb1ad39fafc:log:9', 'hash': '0x29b48453d2b95cfc2ab9e984aae850d2b76615da9ee2d2ac52499cb1ad39fafc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 502316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6a5e9adc47c52d300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:25:48.000Z'}}, {'blockNum': '0x9c7c66', 'uniqueId': '0xd809a7e5fc6bb4ed3fb64e33c867fa471562f399bd464b175af7e797d45fe1f4:log:21', 'hash': '0xd809a7e5fc6bb4ed3fb64e33c867fa471562f399bd464b175af7e797d45fe1f4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad5646dee0a4c919e2e6c13419ba79dd75f82a00', 'value': 249938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x34ed2a8773b8de080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:31:19.000Z'}}, {'blockNum': '0x9c7cc7', 'uniqueId': '0x9567f315c74039829a4c60317eeec761d9642afe04c9f5b546d0148bd46a3deb:log:17', 'hash': '0x9567f315c74039829a4c60317eeec761d9642afe04c9f5b546d0148bd46a3deb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ff181dab3b8ef3edd07476fa40788dd0700e950', 'value': 790.95872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2ae0c1dd293da80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:52:17.000Z'}}, {'blockNum': '0x9c7cc7', 'uniqueId': '0x9436a8865474464dba44a14bfb665dd0ec337a2bd51f0bd98255b076935fde47:log:21', 'hash': '0x9436a8865474464dba44a14bfb665dd0ec337a2bd51f0bd98255b076935fde47', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd50c125a789128dbd0d4febdbf9599096c68e15c', 'value': 1030.4061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x37dbc1d89fdfa14000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:52:17.000Z'}}, {'blockNum': '0x9c7d4e', 'uniqueId': '0xfdd04f0d00ff2254d07a50aeb2e75ea6c3f935e8c4415e770942c90f540e72c6:log:29', 'hash': '0xfdd04f0d00ff2254d07a50aeb2e75ea6c3f935e8c4415e770942c90f540e72c6', 'from': '0x2ff181dab3b8ef3edd07476fa40788dd0700e950', 'to': '0x6d25c3711ecc16f54ae1771e61eb8d08c3977db5', 'value': 790.95872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2ae0c1dd293da80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T06:26:12.000Z'}}, {'blockNum': '0x9c7d83', 'uniqueId': '0xc8683397f9365dfc4937ae3417b817053c498c8ae44a4218b14c27b13fdb61e1:log:34', 'hash': '0xc8683397f9365dfc4937ae3417b817053c498c8ae44a4218b14c27b13fdb61e1', 'from': '0x35f05827f3df3a5c57bd7f5547d966c353282f9d', 'to': '0xa37f430953bb573364f354b2dd218a442c46d65a', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T06:37:25.000Z'}}, {'blockNum': '0x9c7def', 'uniqueId': '0x0b667b1b23706ce8d4cde56fe498c29705d2ef67550018c02d1bdbabcf5fa324:log:171', 'hash': '0x0b667b1b23706ce8d4cde56fe498c29705d2ef67550018c02d1bdbabcf5fa324', 'from': '0xa37f430953bb573364f354b2dd218a442c46d65a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:00:33.000Z'}}, {'blockNum': '0x9c7e20', 'uniqueId': '0xb19419b6f8f6de9d9ba76d0ad2380f58b44a1de8a47f01ee164511b9490cdd51:log:18', 'hash': '0xb19419b6f8f6de9d9ba76d0ad2380f58b44a1de8a47f01ee164511b9490cdd51', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 9836.57049999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02153dd6915b56805c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:10:25.000Z'}}, {'blockNum': '0x9c7e2a', 'uniqueId': '0x32bb315f7ed5d1a71d6252ec8e7f97fed1f3965278e066c2d2c093a6e211fc24:log:96', 'hash': '0x32bb315f7ed5d1a71d6252ec8e7f97fed1f3965278e066c2d2c093a6e211fc24', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x3badc34afe50d98ca792f41676f089f4dbf5cf30', 'value': 9836.57049999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02153dd6915b56805c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:12:45.000Z'}}, {'blockNum': '0x9c7e8e', 'uniqueId': '0x13d8016e049ced73b529d35e3114fc8a0aeb741fd8c314a17315f3522970e549:log:98', 'hash': '0x13d8016e049ced73b529d35e3114fc8a0aeb741fd8c314a17315f3522970e549', 'from': '0x2b9b77c697de4913bd81577f16980fd0d5014b36', 'to': '0x813e323abd2678fb02059064111722b3e38e5296', 'value': 2550, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8a3c5be1855e180000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:34:24.000Z'}}, {'blockNum': '0x9c7f21', 'uniqueId': '0x252c074233a52915f0946c55956dabc0f502225e780803af43d2743abbafcaae:log:116', 'hash': '0x252c074233a52915f0946c55956dabc0f502225e780803af43d2743abbafcaae', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 97247.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1497ce52265773fd8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T08:05:25.000Z'}}, {'blockNum': '0x9c7ff5', 'uniqueId': '0x9caa8a9004c3ccc20a07cc0f5c58c8ae49ec6294a86a5aa05ba60b4d54a8708f:log:154', 'hash': '0x9caa8a9004c3ccc20a07cc0f5c58c8ae49ec6294a86a5aa05ba60b4d54a8708f', 'from': '0xdb38317eb5e13a45d513a975661ac65b1bc37042', 'to': '0x0ae280667ede02c11fc31da99b51e04df73d1190', 'value': 30408.257113424326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06706f56fecef1f87144', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T08:47:40.000Z'}}, {'blockNum': '0x9c8089', 'uniqueId': '0xba771658d998ae6996e3a114d8a90d14a392baf82f9f76e624b22994689b077c:log:148', 'hash': '0xba771658d998ae6996e3a114d8a90d14a392baf82f9f76e624b22994689b077c', 'from': '0x3bbaecc7118b0b78a45a74e1687c3c907db70dbc', 'to': '0x62567ac7cd7084943e79ce61e06a5d5b9e3987a1', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T09:20:23.000Z'}}, {'blockNum': '0x9c80b1', 'uniqueId': '0x30b444830f046eef608c0743248684fae571157d9b6e1833bdeacd4b8a197122:log:171', 'hash': '0x30b444830f046eef608c0743248684fae571157d9b6e1833bdeacd4b8a197122', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97247.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1497ce52265773fd8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T09:30:52.000Z'}}, {'blockNum': '0x9c81b3', 'uniqueId': '0x73f91edc41d78d431f114a60aab020d14539a9664c6cae915255f9a80f6c9ae1:log:5', 'hash': '0x73f91edc41d78d431f114a60aab020d14539a9664c6cae915255f9a80f6c9ae1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1540.4387119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5381e1aee103cc9800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T10:29:14.000Z'}}, {'blockNum': '0x9c81bb', 'uniqueId': '0xf044eedf062e7d32e34362fb766207169b0732980958c56d633ff134a13717e0:log:61', 'hash': '0xf044eedf062e7d32e34362fb766207169b0732980958c56d633ff134a13717e0', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x59776535aae70f06e7fb91d304c665415c8dd0f5', 'value': 1540.4387119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5381e1aee103cc9800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T10:31:31.000Z'}}, {'blockNum': '0x9c81cd', 'uniqueId': '0xe5380116a6dec96ca79cf4172afd40e054661f5bf30cab9c966b350ef782f8e6:log:8', 'hash': '0xe5380116a6dec96ca79cf4172afd40e054661f5bf30cab9c966b350ef782f8e6', 'from': '0x5988bb26dd5b712bb76bfe3f95e2c49490062264', 'to': '0x28762f08fb9c74733deb36435cbb60edda033e63', 'value': 1433.3018185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4db30ef9f79de82800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T10:36:58.000Z'}}, {'blockNum': '0x9c824f', 'uniqueId': '0x7c113743826418eded166bb23ae49fd62210f7229399cff84bc2e4de0b2c774a:log:23', 'hash': '0x7c113743826418eded166bb23ae49fd62210f7229399cff84bc2e4de0b2c774a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'value': 20466.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04557f68d53329460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:04:45.000Z'}}, {'blockNum': '0x9c827f', 'uniqueId': '0x9ff246f15a2903535538a11eaefc8c6816d307bca88308567eb075a102f3244f:log:15', 'hash': '0x9ff246f15a2903535538a11eaefc8c6816d307bca88308567eb075a102f3244f', 'from': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'to': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'value': 20466.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04557f68d53329460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:15:30.000Z'}}, {'blockNum': '0x9c82be', 'uniqueId': '0x83ee7ee3fc2a6c66e310fcf984b8c7c79e3cf9b2d641bacdd46fba934845897c:log:3', 'hash': '0x83ee7ee3fc2a6c66e310fcf984b8c7c79e3cf9b2d641bacdd46fba934845897c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 114541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x184147b17bc5e1940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:30:32.000Z'}}, {'blockNum': '0x9c82c6', 'uniqueId': '0x933325564fc42f0fa45245e4925f0ca22882ad93336c3ba1089bf325782691e2:log:0', 'hash': '0x933325564fc42f0fa45245e4925f0ca22882ad93336c3ba1089bf325782691e2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 13530.85827251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02dd82614549ca306c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:31:37.000Z'}}, {'blockNum': '0x9c82cd', 'uniqueId': '0x2c172595a2c60256080ab770f214be8bc9af24687f9474b02f2dfd2e35cafde6:log:31', 'hash': '0x2c172595a2c60256080ab770f214be8bc9af24687f9474b02f2dfd2e35cafde6', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'value': 13530.85827251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02dd82614549ca306c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:33:22.000Z'}}, {'blockNum': '0x9c834e', 'uniqueId': '0x1cc60d7bfb903a2a4fe1d4476ebed03627e0d8c53b1e05c878356110238c8b2c:log:9', 'hash': '0x1cc60d7bfb903a2a4fe1d4476ebed03627e0d8c53b1e05c878356110238c8b2c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf3a2dbd2e3cbf4af38df56da6a2978f01ae6b7f3', 'value': 785.152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a902c40161f800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:58:51.000Z'}}, {'blockNum': '0x9c835b', 'uniqueId': '0xc7f6ea1fbecdc91a1ae5eefa4a267dcca2dc7cb42c33eeaf1a5e19f054dca968:log:103', 'hash': '0xc7f6ea1fbecdc91a1ae5eefa4a267dcca2dc7cb42c33eeaf1a5e19f054dca968', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x184147b17bc5e1940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:00:34.000Z'}}, {'blockNum': '0x9c83c1', 'uniqueId': '0xcc06bc44ed7599f55603b60979f02f71f91a589ab94b85a20f1f74f4e38e1be3:log:22', 'hash': '0xcc06bc44ed7599f55603b60979f02f71f91a589ab94b85a20f1f74f4e38e1be3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 95066.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1421921a3790f6640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:28:01.000Z'}}, {'blockNum': '0x9c83cb', 'uniqueId': '0xbdac68765bc19fd7382f8d34f5fcb5459765af732b77694e2921ff63b0ef775f:log:77', 'hash': '0xbdac68765bc19fd7382f8d34f5fcb5459765af732b77694e2921ff63b0ef775f', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x24bc2bb99f5b5cbaf5ca666aced4ad2087d3199c', 'value': 95066.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1421921a3790f6640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:30:14.000Z'}}, {'blockNum': '0x9c83df', 'uniqueId': '0xdb0ec28382e385b402fdf458bf4f2273c3c92c093ec8d2b88cd7a37050e139d1:log:7', 'hash': '0xdb0ec28382e385b402fdf458bf4f2273c3c92c093ec8d2b88cd7a37050e139d1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2ae1b8dccf3dc99d8726192003e41fb54f273b9d', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:33:55.000Z'}}, {'blockNum': '0x9c83e3', 'uniqueId': '0x7bc726f50976f2530bf1ca4fe8b0f845f7e57f2404c0ac0c3e17c31b35c439e1:log:1', 'hash': '0x7bc726f50976f2530bf1ca4fe8b0f845f7e57f2404c0ac0c3e17c31b35c439e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 95517.26175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x143a004a617ba4496000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:34:43.000Z'}}, {'blockNum': '0x9c83e8', 'uniqueId': '0x7310ce4c1ca2dc9bb804818d911e83ddd48f92ae541345067674152a7ac2501d:log:18', 'hash': '0x7310ce4c1ca2dc9bb804818d911e83ddd48f92ae541345067674152a7ac2501d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x733043b3cda5511338b7fe52d9c6b0519af6ec9b', 'value': 1330.0047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x481985e3fbabf9c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:36:24.000Z'}}, {'blockNum': '0x9c83e9', 'uniqueId': '0x0c5a49036c90e3b00f5543e59e1a47b879f360df681051fbc1a825e74f11a3ed:log:22', 'hash': '0x0c5a49036c90e3b00f5543e59e1a47b879f360df681051fbc1a825e74f11a3ed', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x2ff3373d3c335e40111f1fce8f20d7b69dbb860e', 'value': 95517.26175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x143a004a617ba4496000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:37:30.000Z'}}, {'blockNum': '0x9c8469', 'uniqueId': '0x6126b365d6f9f9ec86f6c0b84ae46f6520ebbebf43328c3d404cdefbc5c154de:log:42', 'hash': '0x6126b365d6f9f9ec86f6c0b84ae46f6520ebbebf43328c3d404cdefbc5c154de', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8c3ab8b54403e12bd07d5fd8c0f79d526e7d983a', 'value': 1494.328334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5101f8b67b6f46e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T13:08:35.000Z'}}, {'blockNum': '0x9c8498', 'uniqueId': '0x1a3441f9d3739e3362904169820eabb2b5698195eb659b482f8859458985b155:log:18', 'hash': '0x1a3441f9d3739e3362904169820eabb2b5698195eb659b482f8859458985b155', 'from': '0x2254d8eee1b396ac5aae9d209b8db0e5af379ae4', 'to': '0xc3b79c1c46e15138576476eedf2d3d8b7e9f63f7', 'value': 1814.148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x62585c6a3b615a0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T13:21:03.000Z'}}, {'blockNum': '0x9c849a', 'uniqueId': '0x796a906c4c62720df138c3f9c85f362fb7debe4e6c4cccb510a5a951e00cae0e:log:1', 'hash': '0x796a906c4c62720df138c3f9c85f362fb7debe4e6c4cccb510a5a951e00cae0e', 'from': '0xc3b79c1c46e15138576476eedf2d3d8b7e9f63f7', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1814.148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x62585c6a3b615a0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T13:21:42.000Z'}}, {'blockNum': '0x9c85bd', 'uniqueId': '0xec86fc5a9b3a3da9d77a81b66eea795b5b0f47462157bb77c6160517a462c5d1:log:27', 'hash': '0xec86fc5a9b3a3da9d77a81b66eea795b5b0f47462157bb77c6160517a462c5d1', 'from': '0x7728156d25f977a2c76f10628404085b1433cb0e', 'to': '0x6401186196a8baa871c32863f78551de0485ceb7', 'value': 4992.151103631555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010ea0038333e9226918', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T14:22:56.000Z'}}, {'blockNum': '0x9c85c0', 'uniqueId': '0x4db6dfe463acbabb843f173de4ac97ffec4d78d8730d3d3b079ed0a46950b1b9:log:1', 'hash': '0x4db6dfe463acbabb843f173de4ac97ffec4d78d8730d3d3b079ed0a46950b1b9', 'from': '0x6401186196a8baa871c32863f78551de0485ceb7', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 4992.151103631555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010ea0038333e9226918', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T14:23:20.000Z'}}, {'blockNum': '0x9c86f7', 'uniqueId': '0x32c772a84abd97482063f5bf9677f9c72bdaf81b5663003414209d3fe3553293:log:56', 'hash': '0x32c772a84abd97482063f5bf9677f9c72bdaf81b5663003414209d3fe3553293', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x0339ad2632830cbaa2e9a06c8ebd43b2d581d976', 'value': 688.12345663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x254da19df87d111c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:30:37.000Z'}}, {'blockNum': '0x9c8701', 'uniqueId': '0x5b91b51d8e934c608ad14a06999f19d42965d0aaf4aa9bc1cea92aa555150445:log:62', 'hash': '0x5b91b51d8e934c608ad14a06999f19d42965d0aaf4aa9bc1cea92aa555150445', 'from': '0xeecee4ce45f1f7962822fcc036522639c005cc7e', 'to': '0xc1afbe5f81c54c573ebeb4b599bf5ad5e739b55a', 'value': 31088.539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06955025c25c6daf8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:32:57.000Z'}}, {'blockNum': '0x9c8702', 'uniqueId': '0xa8ee59bc681fde2c340102b775bf6f1516b5728d0daaa44af63038590e0e450c:log:0', 'hash': '0xa8ee59bc681fde2c340102b775bf6f1516b5728d0daaa44af63038590e0e450c', 'from': '0xc1afbe5f81c54c573ebeb4b599bf5ad5e739b55a', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 31088.539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06955025c25c6daf8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:33:24.000Z'}}, {'blockNum': '0x9c873f', 'uniqueId': '0x8ff3efb686f13d4ee717d0a97b737c57741fb2dfeaa608d79b0577c73e8de3f8:log:34', 'hash': '0x8ff3efb686f13d4ee717d0a97b737c57741fb2dfeaa608d79b0577c73e8de3f8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xab561d89e4c76549cc6ee339b4839d1d46555180', 'value': 74881.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0fdb53d1b27a23630000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:49:22.000Z'}}, {'blockNum': '0x9c8776', 'uniqueId': '0x4b7e174e9bd17189703633a47bc971a05024add6f031078fac355ad472a87db6:log:56', 'hash': '0x4b7e174e9bd17189703633a47bc971a05024add6f031078fac355ad472a87db6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 134237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1c6d009a19e47f540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:02:45.000Z'}}, {'blockNum': '0x9c8776', 'uniqueId': '0xf082cde3abeecd0eb3fd5816cd6180ccf45c6c27e5c7b919103a6023e11993ff:log:98', 'hash': '0xf082cde3abeecd0eb3fd5816cd6180ccf45c6c27e5c7b919103a6023e11993ff', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'value': 29033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0625e1d03c92cc040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:02:45.000Z'}}, {'blockNum': '0x9c8781', 'uniqueId': '0xe6f153d666a781ea5554aac6892176cdd272270382c23263dd4c7194e2abd8e2:log:154', 'hash': '0xe6f153d666a781ea5554aac6892176cdd272270382c23263dd4c7194e2abd8e2', 'from': '0xc77ad9bfdc6a35069d26ff14e1e384fbef9ddc0e', 'to': '0x3a377ec1a46e9bbfea8ca7e414b886e287929827', 'value': 7175.722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0184ff25b4653b910000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:05:09.000Z'}}, {'blockNum': '0x9c8783', 'uniqueId': '0xa8d4f0578ba80a11abee6c5bab31dce5e25145149323c8d9cd6cb667f0847bc1:log:174', 'hash': '0xa8d4f0578ba80a11abee6c5bab31dce5e25145149323c8d9cd6cb667f0847bc1', 'from': '0x004e8ca00f51a5b91db3ec8908f3cff467d353a1', 'to': '0x211885d8df538ba3850b989363edd05630e10ef2', 'value': 4400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xee86442fcd06c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:05:12.000Z'}}, {'blockNum': '0x9c8797', 'uniqueId': '0xaaa708fc79196e9bbff9bd5dffefa8e9e0b07a177c23e0ab582a908e9fced6da:log:126', 'hash': '0xaaa708fc79196e9bbff9bd5dffefa8e9e0b07a177c23e0ab582a908e9fced6da', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 156836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x213618ba87424c100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:08:08.000Z'}}, {'blockNum': '0x9c8798', 'uniqueId': '0x9245cb91c6ed7fe410dbddcafe4936a3751066025908d1b8d151f1ebc2f10535:log:2', 'hash': '0x9245cb91c6ed7fe410dbddcafe4936a3751066025908d1b8d151f1ebc2f10535', 'from': '0x70c890146ff61b05ea7b0f9d61320cff0f51e5e6', 'to': '0x595af8896be7bb71b7b2ab1c0f7e5a0c13854850', 'value': 5672.206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01337dabd85d575b0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:08:54.000Z'}}, {'blockNum': '0x9c87a5', 'uniqueId': '0x23042ed4dd7943f31c62407590c1aa4d4876a177c49c7d87df09f2106bddba87:log:105', 'hash': '0x23042ed4dd7943f31c62407590c1aa4d4876a177c49c7d87df09f2106bddba87', 'from': '0x3a565ea133b7ee11ab9cf9d03bde38af1fdd1080', 'to': '0xadbfa6ebd7d34203f803294593fd147c8fd7d445', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:12:50.000Z'}}, {'blockNum': '0x9c87a8', 'uniqueId': '0x60d92c46d86ec8bae2bb7b5a4fa90b3db6ffa58f3f5bc9480355bb3d614f4004:log:29', 'hash': '0x60d92c46d86ec8bae2bb7b5a4fa90b3db6ffa58f3f5bc9480355bb3d614f4004', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b87506a3e7b0d400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:13:08.000Z'}}, {'blockNum': '0x9c87ae', 'uniqueId': '0xb9ee63e9789e7af3373f03c7c527b0cfc7b01d23bfc4a8b65a94611ec2cec41f:log:7', 'hash': '0xb9ee63e9789e7af3373f03c7c527b0cfc7b01d23bfc4a8b65a94611ec2cec41f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'value': 44790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x097c121dac68d2180000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:14:29.000Z'}}, {'blockNum': '0x9c87bf', 'uniqueId': '0x31acc2dc51b1b87891e70352118d6d71ec44e8102333f9faf83595cfac65eb1c:log:13', 'hash': '0x31acc2dc51b1b87891e70352118d6d71ec44e8102333f9faf83595cfac65eb1c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f7cdc7b2ddf073ea55eb925158972bea125db20', 'value': 1234.0929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x42e67aba0babaa4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:17:44.000Z'}}, {'blockNum': '0x9c87c2', 'uniqueId': '0xcb8a5f8c28c8a55d7d410998ce8a63e46a8d3f1e3492061b0f37b387faa14374:log:22', 'hash': '0xcb8a5f8c28c8a55d7d410998ce8a63e46a8d3f1e3492061b0f37b387faa14374', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'value': 16852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03918c7aea4702d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:18:09.000Z'}}, {'blockNum': '0x9c87c7', 'uniqueId': '0x7b463face6a20b6980e29c502f6ea24addac2399a6535bf6ae46b180cd20e92c:log:32', 'hash': '0x7b463face6a20b6980e29c502f6ea24addac2399a6535bf6ae46b180cd20e92c', 'from': '0x82db9fc4956fa40efe1e35d881004612b5cb2cc2', 'to': '0x90c5b6392804b2b7257aa195b86a58d9c254d946', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:19:09.000Z'}}, {'blockNum': '0x9c87cd', 'uniqueId': '0x02f1fbd0b7bdb796fc11e65464c19b0ff8f60942e91b6f8fd9a29af4d0ff853e:log:8', 'hash': '0x02f1fbd0b7bdb796fc11e65464c19b0ff8f60942e91b6f8fd9a29af4d0ff853e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 6956.72628859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01791ff8a528348e8c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:20:41.000Z'}}, {'blockNum': '0x9c87ce', 'uniqueId': '0x51c9755106ae0c5e01a344e609d06d5303115fc21c3f0d304b3c0782318267b1:log:38', 'hash': '0x51c9755106ae0c5e01a344e609d06d5303115fc21c3f0d304b3c0782318267b1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'value': 8446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c9dbcbbb2c95380000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:20:59.000Z'}}, {'blockNum': '0x9c87cf', 'uniqueId': '0x2d829b2e61a7a6963ae00e909e2cfd3f8149536270ab57f5b05e56d14467db59:log:64', 'hash': '0x2d829b2e61a7a6963ae00e909e2cfd3f8149536270ab57f5b05e56d14467db59', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:21:15.000Z'}}, {'blockNum': '0x9c87de', 'uniqueId': '0xa6222a825a6941ad0fe76b665cef6be528cda372031608f5c75ccefcdeda8c76:log:35', 'hash': '0xa6222a825a6941ad0fe76b665cef6be528cda372031608f5c75ccefcdeda8c76', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 160000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x21e19e0c9bab24000000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:23:41.000Z'}}, {'blockNum': '0x9c87e8', 'uniqueId': '0x1037bfb7d0767e24a642d23ed6e90afb53ce20fcacef3afab5957bfb668a4fd8:log:85', 'hash': '0x1037bfb7d0767e24a642d23ed6e90afb53ce20fcacef3afab5957bfb668a4fd8', 'from': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 16852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03918c7aea4702d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:28:24.000Z'}}, {'blockNum': '0x9c87ec', 'uniqueId': '0x82185709e4e6156aca4ebd587c407c0cfeed3d9cd7b43805ee5405e11af304b6:log:38', 'hash': '0x82185709e4e6156aca4ebd587c407c0cfeed3d9cd7b43805ee5405e11af304b6', 'from': '0xb3da5bef490a34a174838312d1ce22d7b323845f', 'to': '0x0b46bbc1957673d48e630192a06926f576f1144e', 'value': 7152.815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0183c13fb1430db18000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:28:45.000Z'}}, {'blockNum': '0x9c87f3', 'uniqueId': '0x0b0c7da54cee2e3c87bc29dd3defadc00562b0362c8579729c54d6b478b9a252:log:154', 'hash': '0x0b0c7da54cee2e3c87bc29dd3defadc00562b0362c8579729c54d6b478b9a252', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 67818.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e5c73aea855150d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:31:13.000Z'}}, {'blockNum': '0x9c87f7', 'uniqueId': '0x92d7a1c1539bc6ee58db807a24238369104ef06c8bf1b3cf9b808540472a0278:log:17', 'hash': '0x92d7a1c1539bc6ee58db807a24238369104ef06c8bf1b3cf9b808540472a0278', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 536836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71adf01878f8c1900000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:32:08.000Z'}}, {'blockNum': '0x9c87f7', 'uniqueId': '0xa60eae0a609749f27770a66467ed6a3630eeca0b75329bc549f102b1908ab3af:log:47', 'hash': '0xa60eae0a609749f27770a66467ed6a3630eeca0b75329bc549f102b1908ab3af', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 134237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1c6d009a19e47f540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:32:08.000Z'}}, {'blockNum': '0x9c87fc', 'uniqueId': '0x1d4b6f35b430c6e4a9f19f65f96d0066b0470d15b075fe215faa1474406cf144:log:20', 'hash': '0x1d4b6f35b430c6e4a9f19f65f96d0066b0470d15b075fe215faa1474406cf144', 'from': '0x2934588cf0ab0a92df6b7466c3b72174f6930920', 'to': '0x65a4c9053ac5706dd9b073308cab4f55c6343261', 'value': 1720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5d3dcb870ca7e00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:33:04.000Z'}}, {'blockNum': '0x9c8806', 'uniqueId': '0x54b3165c1345d585615b3c5e3a3e9569f228a3b288b32aa8d0a50ccf17ba6e0d:log:59', 'hash': '0x54b3165c1345d585615b3c5e3a3e9569f228a3b288b32aa8d0a50ccf17ba6e0d', 'from': '0xbd2e270101cc9b33ec6b700e4a467105ab92ce8e', 'to': '0x5e98156d2aac9700b11452093674aff4bd0e1d25', 'value': 970.6865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x349efb34d51f364000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:35:17.000Z'}}, {'blockNum': '0x9c880a', 'uniqueId': '0x1be7157ebc29f602da43c434e653fb33460cba461a3affb78da6a9c6d4f3ad9f:log:0', 'hash': '0x1be7157ebc29f602da43c434e653fb33460cba461a3affb78da6a9c6d4f3ad9f', 'from': '0x5e98156d2aac9700b11452093674aff4bd0e1d25', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 970.6865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x349efb34d51f364000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:35:53.000Z'}}, {'blockNum': '0x9c8810', 'uniqueId': '0xaaba93305baf5dec485c66686ff0d57f87f50605ee4d6d5d0a5b4e8588a798e9:log:30', 'hash': '0xaaba93305baf5dec485c66686ff0d57f87f50605ee4d6d5d0a5b4e8588a798e9', 'from': '0x724c94d87502066004d90b45846c40ceda0e585d', 'to': '0xceaeaaf20143ada0f828b15fc7a6493c437f80a9', 'value': 21002.081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0472866c73b4b4b68000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:37:16.000Z'}}, {'blockNum': '0x9c8829', 'uniqueId': '0xccec284c49f775900d93e6080c01782fc325d250fa0c60d38dc9ddf9d56e71ee:log:3', 'hash': '0xccec284c49f775900d93e6080c01782fc325d250fa0c60d38dc9ddf9d56e71ee', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1d5215753fc92d404b053ba82c0c45d97ae389d0', 'value': 14230.076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030369f9a7d37b860000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:42:03.000Z'}}, {'blockNum': '0x9c882c', 'uniqueId': '0x0e6d314e762e17a0a4487f0dec1ec86548954ce56bbf43b8f326cb0784b9883f:log:98', 'hash': '0x0e6d314e762e17a0a4487f0dec1ec86548954ce56bbf43b8f326cb0784b9883f', 'from': '0x27970d7f5e4241fa3e79eefcfcd302c60b8ff0d5', 'to': '0x204df2e86f100084fc8b1bb371fb70b76f7641f4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:42:49.000Z'}}, {'blockNum': '0x9c8835', 'uniqueId': '0xf179cdeafd0c0bb97100a016f415a736f11016a060a65e0de26a0ba6153375f1:log:13', 'hash': '0xf179cdeafd0c0bb97100a016f415a736f11016a060a65e0de26a0ba6153375f1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 9359.1389098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01fb5c24d39eb5ae1000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:44:09.000Z'}}, {'blockNum': '0x9c8836', 'uniqueId': '0xc106bf220ea64627205a7d1e01f6f5909a53b3fd680d6f315218fc51bc1a713f:log:43', 'hash': '0xc106bf220ea64627205a7d1e01f6f5909a53b3fd680d6f315218fc51bc1a713f', 'from': '0x1d5215753fc92d404b053ba82c0c45d97ae389d0', 'to': '0x2cca3aaaa0ef0025f13dac095c7d3d45aa237107', 'value': 14230.076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030369f9a7d37b860000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:44:40.000Z'}}, {'blockNum': '0x9c883d', 'uniqueId': '0x8cc17190a513390ddd634b3618c52d9b292bd6c9b6e6e349a5b4dcdcf9153358:log:102', 'hash': '0x8cc17190a513390ddd634b3618c52d9b292bd6c9b6e6e349a5b4dcdcf9153358', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'value': 9359.1389098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01fb5c24d39eb5ae1000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:46:19.000Z'}}, {'blockNum': '0x9c8865', 'uniqueId': '0xb90280d9424b47b45b92ba383aa7acb4a11a6e016ae57d1db4f08999911a78f6:log:125', 'hash': '0xb90280d9424b47b45b92ba383aa7acb4a11a6e016ae57d1db4f08999911a78f6', 'from': '0x11197295953c6480b5d7ff245b6fae4d5b8eca15', 'to': '0xba4de7a610081cd1227714b1382af7df73349cb0', 'value': 481686.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6600489ae67267e88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:54:43.000Z'}}, {'blockNum': '0x9c887c', 'uniqueId': '0x20fccee727f48168a8aa5de1ba54f9c2e927e159ee866f4dd8167fc2ab631eb8:log:154', 'hash': '0x20fccee727f48168a8aa5de1ba54f9c2e927e159ee866f4dd8167fc2ab631eb8', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67818.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e5c73aea855150d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:00:12.000Z'}}, {'blockNum': '0x9c887e', 'uniqueId': '0x8883b69ad428b885ff0f5dfa6b27d78633f00191a50d8a4a3c7e0fe999cacac3:log:102', 'hash': '0x8883b69ad428b885ff0f5dfa6b27d78633f00191a50d8a4a3c7e0fe999cacac3', 'from': '0xba4de7a610081cd1227714b1382af7df73349cb0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 481686.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6600489ae67267e88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:00:43.000Z'}}, {'blockNum': '0x9c8899', 'uniqueId': '0x3e40bad08eb4640a5c82c0e9e09064180df97595d2a71924ac780a782bbfe888:log:11', 'hash': '0x3e40bad08eb4640a5c82c0e9e09064180df97595d2a71924ac780a782bbfe888', 'from': '0x0a7faa0b8fcd494bc288dd5f0eddf196534d4f40', 'to': '0x9229b25ee89606e39c13de9ca1be912f44942981', 'value': 6254.96636114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015315188d3987690800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:05:24.000Z'}}, {'blockNum': '0x9c889a', 'uniqueId': '0x39d0a069776fd1f7604703971c24a68e9059a8245df144864ba44b382d31a650:log:17', 'hash': '0x39d0a069776fd1f7604703971c24a68e9059a8245df144864ba44b382d31a650', 'from': '0x9229b25ee89606e39c13de9ca1be912f44942981', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 6254.96636114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015315188d3987690800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:05:38.000Z'}}, {'blockNum': '0x9c88bc', 'uniqueId': '0x19dca3badebc528dec19f6b35311da9fa97404d4cf1b050be520a6ce33ba92a5:log:12', 'hash': '0x19dca3badebc528dec19f6b35311da9fa97404d4cf1b050be520a6ce33ba92a5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5ce46986746feb1ba14d669c3000afb7864d4808', 'value': 3678.5246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc769c8aa0a97e38000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:11:46.000Z'}}, {'blockNum': '0x9c88c2', 'uniqueId': '0xb7c5592fa590cf90be9c9fefb96d47095dc2df256ae7a2b40a68268e1f3bd020:log:151', 'hash': '0xb7c5592fa590cf90be9c9fefb96d47095dc2df256ae7a2b40a68268e1f3bd020', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xef8cc5c755f0fde796616cff09707ec61fcc277c', 'value': 6956.72628859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01791ff8a528348e8c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:14:26.000Z'}}, {'blockNum': '0x9c88c8', 'uniqueId': '0x466f01cac34cfae8d4c0e79712d7688c9e4de7019c681c4379b9d87c3370fc73:log:0', 'hash': '0x466f01cac34cfae8d4c0e79712d7688c9e4de7019c681c4379b9d87c3370fc73', 'from': '0xa4d27c22fd25b2885c31d7f3ae48d9ed62dbd775', 'to': '0x104199942df7babb1a596bb6218d64180f46026a', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:16:36.000Z'}}, {'blockNum': '0x9c88d4', 'uniqueId': '0x7d6ac2c08a86f771c1849cba14a4c55f08d0a4b5cda823456283c3a830bdc488:log:7', 'hash': '0x7d6ac2c08a86f771c1849cba14a4c55f08d0a4b5cda823456283c3a830bdc488', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'value': 54674.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b93eec9176abfdc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:19:18.000Z'}}, {'blockNum': '0x9c88d7', 'uniqueId': '0x39da6b25b4860a7976e3d59d8a5f3063a0eab249067c26dd6ece6a7030f98c10:log:2', 'hash': '0x39da6b25b4860a7976e3d59d8a5f3063a0eab249067c26dd6ece6a7030f98c10', 'from': '0xa4d27c22fd25b2885c31d7f3ae48d9ed62dbd775', 'to': '0x104199942df7babb1a596bb6218d64180f46026a', 'value': 355563.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4b4b269f20e1adb98000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:19:56.000Z'}}, {'blockNum': '0x9c88fd', 'uniqueId': '0x20043edd0c0e6c1bf9b634e33f7d5a83236aff44310d81e0c5b93bfabc18c8f8:log:16', 'hash': '0x20043edd0c0e6c1bf9b634e33f7d5a83236aff44310d81e0c5b93bfabc18c8f8', 'from': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'to': '0xb282348b0407ee762fadf2bc97e502606b37b4ea', 'value': 42658.94764517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x09088bd2d27da83ef400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:27:48.000Z'}}, {'blockNum': '0x9c88fe', 'uniqueId': '0x46a68ccaa82303812f30f728d7c4166a77e848e7f0cb2307172aff02fb49d69d:log:16', 'hash': '0x46a68ccaa82303812f30f728d7c4166a77e848e7f0cb2307172aff02fb49d69d', 'from': '0xb282348b0407ee762fadf2bc97e502606b37b4ea', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 42658.94764517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x09088bd2d27da83ef400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:28:09.000Z'}}, {'blockNum': '0x9c8906', 'uniqueId': '0xbc3a62b7fd075b1a031359771672263561de75a9d8c5130361c97fcddf8e2748:log:169', 'hash': '0xbc3a62b7fd075b1a031359771672263561de75a9d8c5130361c97fcddf8e2748', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108631.36883235155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1700eb15ff5d531e8918', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:30:30.000Z'}}, {'blockNum': '0x9c8906', 'uniqueId': '0x3cd0013baccb64a5ed633e9912e8cc602c43dc73bfc6a5f1bdf287ba6adfc7b0:log:215', 'hash': '0x3cd0013baccb64a5ed633e9912e8cc602c43dc73bfc6a5f1bdf287ba6adfc7b0', 'from': '0x104199942df7babb1a596bb6218d64180f46026a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 405563.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x55e1a803118728f98000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:30:30.000Z'}}, {'blockNum': '0x9c891a', 'uniqueId': '0xeaa7c101655be681fb483f216908aee2e252d7f97f99fe9996a9d616ad089256:log:16', 'hash': '0xeaa7c101655be681fb483f216908aee2e252d7f97f99fe9996a9d616ad089256', 'from': '0x6517e7592d28927e7ba4f03ab54079b527d6739d', 'to': '0x0ecdbc4732fda07a357698c0fa61c4070283a161', 'value': 8680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01d68b32bb6396a00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:34:05.000Z'}}, {'blockNum': '0x9c891e', 'uniqueId': '0xc9a79b217873d4b90e7f43b364255be9c22a70ac520c9f3630295b0b62b51d31:log:12', 'hash': '0xc9a79b217873d4b90e7f43b364255be9c22a70ac520c9f3630295b0b62b51d31', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3798.10275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xcde54397ea0843e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:34:45.000Z'}}, {'blockNum': '0x9c8927', 'uniqueId': '0x5859d1831a8e96806c20a07673c976a399c6233ac6692ab211983c09f4083beb:log:30', 'hash': '0x5859d1831a8e96806c20a07673c976a399c6233ac6692ab211983c09f4083beb', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb2581d299300ca1ccb6b3276d44212927c0e92cc', 'value': 3798.10275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xcde54397ea0843e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:37:21.000Z'}}, {'blockNum': '0x9c8950', 'uniqueId': '0x6fd1b60e8950d8aaa10ef41b1f0661ce401d0246bba68732c83f478661f6a79d:log:4', 'hash': '0x6fd1b60e8950d8aaa10ef41b1f0661ce401d0246bba68732c83f478661f6a79d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2676.84928794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x911cbf14d379092800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:45:34.000Z'}}, {'blockNum': '0x9c895a', 'uniqueId': '0x4d4bd57db617fd43c1e3c50397da29b60d866dd8134d097d52ad0ca00f69665e:log:12', 'hash': '0x4d4bd57db617fd43c1e3c50397da29b60d866dd8134d097d52ad0ca00f69665e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1233.26057572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x42daedb785d4551000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:46:36.000Z'}}, {'blockNum': '0x9c895c', 'uniqueId': '0x575d107f522289453dfc02a3c8899fcbb98916c780c886a5aec1dce7d09e140d:log:41', 'hash': '0x575d107f522289453dfc02a3c8899fcbb98916c780c886a5aec1dce7d09e140d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'value': 2676.84928794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x911cbf14d379092800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:47:02.000Z'}}, {'blockNum': '0x9c895f', 'uniqueId': '0xa67a0f6b92ac93faaf6d62cb449a5ae0ec582c910c7bd83b3b458cad63631793:log:47', 'hash': '0xa67a0f6b92ac93faaf6d62cb449a5ae0ec582c910c7bd83b3b458cad63631793', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x803c2e0b620cb13a283e290ad873a53859e364b8', 'value': 1233.26057572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x42daedb785d4551000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:48:11.000Z'}}, {'blockNum': '0x9c89b0', 'uniqueId': '0x23457299370e46334b2067d0d8683411621b7554e6f182c1ea5cc4096bb3f07c:log:11', 'hash': '0x23457299370e46334b2067d0d8683411621b7554e6f182c1ea5cc4096bb3f07c', 'from': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'to': '0x8b30a005b52c7620e4255217a460b7f0271f8e09', 'value': 6492.04388256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015fef351add9c928000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:06:25.000Z'}}, {'blockNum': '0x9c89b6', 'uniqueId': '0x9f6f6a88699c87e707552d7e25fe84bd18d39caa83e89b9bb0af807da153ae8d:log:13', 'hash': '0x9f6f6a88699c87e707552d7e25fe84bd18d39caa83e89b9bb0af807da153ae8d', 'from': '0x8b30a005b52c7620e4255217a460b7f0271f8e09', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 6492.04388256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015fef351add9c928000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:07:51.000Z'}}, {'blockNum': '0x9c89bc', 'uniqueId': '0x728c926027dc81b3ab61c35ba8089e76197a1a93f4d212a5d520b1e329d83dba:log:73', 'hash': '0x728c926027dc81b3ab61c35ba8089e76197a1a93f4d212a5d520b1e329d83dba', 'from': '0xa85f11d4d6119848a0d2b2b8e270a6846383f39f', 'to': '0x1800d3561821aa3cf1099f6dae57cc8cb76c25af', 'value': 203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b0130e075bc4c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:08:59.000Z'}}, {'blockNum': '0x9c8a2b', 'uniqueId': '0xcec8b647305e8f39fdfd0526410f41f5deb933814a94f3c290a8a2644dcc4fed:log:0', 'hash': '0xcec8b647305e8f39fdfd0526410f41f5deb933814a94f3c290a8a2644dcc4fed', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3981.34929357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd7d4521868c8419400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:31:08.000Z'}}, {'blockNum': '0x9c8a2e', 'uniqueId': '0xca2db492fca7913ddaaddfb8b8e0c51918b1e0c4e79254a7c1491eebb35a6b9c:log:120', 'hash': '0xca2db492fca7913ddaaddfb8b8e0c51918b1e0c4e79254a7c1491eebb35a6b9c', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x73ab27780645cfe28944bcf57f7fbbe173a14aba', 'value': 3981.34929357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd7d4521868c8419400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:32:36.000Z'}}, {'blockNum': '0x9c8ac1', 'uniqueId': '0x2b020195467aa76c28d29f67086b80a4e14e16c21bd1aa5298a0e5c9cffefd8c:log:17', 'hash': '0x2b020195467aa76c28d29f67086b80a4e14e16c21bd1aa5298a0e5c9cffefd8c', 'from': '0x3800f01c9fe41853feba563ef535c7785cf30f7a', 'to': '0xcd43f8b479a74a5e439ce01d4d61dc93349ce247', 'value': 5571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x012e0127e793b52c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:05:24.000Z'}}, {'blockNum': '0x9c8ad0', 'uniqueId': '0xef6c451e32b8b4f0211f01a6d171cd289c7a0cd43ee96cf6530d9d357771280e:log:12', 'hash': '0xef6c451e32b8b4f0211f01a6d171cd289c7a0cd43ee96cf6530d9d357771280e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'value': 25795.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05766135fecd81f68000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:08:25.000Z'}}, {'blockNum': '0x9c8adb', 'uniqueId': '0xa1262592f30d86dce0b5e461151efaee229e4ad8350be964f5d94c26918974c9:log:7', 'hash': '0xa1262592f30d86dce0b5e461151efaee229e4ad8350be964f5d94c26918974c9', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0x7106e6c8a1da7dff55fa257c9bc8a9e8d83a39ba', 'value': 80, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04563918244f400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:10:26.000Z'}}, {'blockNum': '0x9c8af6', 'uniqueId': '0x44b821b0d997515417eacf1a59af43799b0a52d916de6bcdf51aa73922256e7e:log:6', 'hash': '0x44b821b0d997515417eacf1a59af43799b0a52d916de6bcdf51aa73922256e7e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 9164.04630335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01f0c8b0a7b2d8591c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:15:17.000Z'}}, {'blockNum': '0x9c8b11', 'uniqueId': '0x6843b6603c2f46bdecca71dc86c8bc9b01aa529e767dd9d5eccdb3b0117079fc:log:31', 'hash': '0x6843b6603c2f46bdecca71dc86c8bc9b01aa529e767dd9d5eccdb3b0117079fc', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'value': 64663.722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0db16d69abeae3d10000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:19:53.000Z'}}, {'blockNum': '0x9c8b2d', 'uniqueId': '0xd8cf37ebdf975e9db9629e9a7f4cee96190f145489b7fa93b28a1317f9525d6f:log:31', 'hash': '0xd8cf37ebdf975e9db9629e9a7f4cee96190f145489b7fa93b28a1317f9525d6f', 'from': '0x02cf9a4202133cc76a916e428e182ce8cc548230', 'to': '0x31209f88b283c3f3eec80893f1cf68ec0ba2bdb1', 'value': 6772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x016f1c61086801500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:26:37.000Z'}}, {'blockNum': '0x9c8b3f', 'uniqueId': '0x101bd6f10ef0ef2e0abc75fc7a9bcd5452866aaa27d88a16911c6a189bb81513:log:28', 'hash': '0x101bd6f10ef0ef2e0abc75fc7a9bcd5452866aaa27d88a16911c6a189bb81513', 'from': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'to': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'value': 25795.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05766135fecd81f68000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:31:06.000Z'}}, {'blockNum': '0x9c8b74', 'uniqueId': '0x69a776996363ad6e10bcb49dd60c7352a9ee2ac478163c0d0449d3d9bedd9965:log:23', 'hash': '0x69a776996363ad6e10bcb49dd60c7352a9ee2ac478163c0d0449d3d9bedd9965', 'from': '0x78353563d4af772b5527d2ee6aedd5c3912ef0b9', 'to': '0xa3614758859fd2986f1e1ad6106d30334ec022f9', 'value': 15891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x035d73ed11dfa46c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:42:57.000Z'}}, {'blockNum': '0x9c8b79', 'uniqueId': '0x2b1a92f8cc0f4d9c2367d66c0af62f50a98cd382288196073d36e39ec6e07e4d:log:6', 'hash': '0x2b1a92f8cc0f4d9c2367d66c0af62f50a98cd382288196073d36e39ec6e07e4d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:43:42.000Z'}}, {'blockNum': '0x9c8ba8', 'uniqueId': '0x76342c77b5f0c6ec39fe902179438c5992f979ed527d8365998570efebbb8fc1:log:17', 'hash': '0x76342c77b5f0c6ec39fe902179438c5992f979ed527d8365998570efebbb8fc1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3690.18375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc80b9649318ce26000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:55:22.000Z'}}, {'blockNum': '0x9c8bbb', 'uniqueId': '0x89d1c67174b8d474ddefb8b85f41ac4eacad0efded6ad7dd0865203f5698f987:log:64', 'hash': '0x89d1c67174b8d474ddefb8b85f41ac4eacad0efded6ad7dd0865203f5698f987', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd221e5ed32b5102324024212e1dee75d9287713f', 'value': 3690.18375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc80b9649318ce26000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:59:57.000Z'}}, {'blockNum': '0x9c8bd1', 'uniqueId': '0xff04a3bc3675ec1bf48726240c1ef500bcf08f2f06325cb2e2a000f3ad23861a:log:59', 'hash': '0xff04a3bc3675ec1bf48726240c1ef500bcf08f2f06325cb2e2a000f3ad23861a', 'from': '0x7099437a7a29a7aa471344d03662eff9017caa7c', 'to': '0x6dd78d7e8dd6a0e73e4324788e1e145c4d4f579b', 'value': 2624.285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8e4345377131fc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:04:24.000Z'}}, {'blockNum': '0x9c8bf9', 'uniqueId': '0xbae967b773ef887b3a37233bc8a770473d48876c8a53c7fe7a3cfc29dee17b4d:log:29', 'hash': '0xbae967b773ef887b3a37233bc8a770473d48876c8a53c7fe7a3cfc29dee17b4d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3093.48376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa7b2b611bd97bf0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:13:01.000Z'}}, {'blockNum': '0x9c8bf9', 'uniqueId': '0xfa2a00d6a2ae116e83bc46f2e11587ca3ea02bed55ae79a849783946b944c246:log:32', 'hash': '0xfa2a00d6a2ae116e83bc46f2e11587ca3ea02bed55ae79a849783946b944c246', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7844ecc25735e201401d24dbffddcf04d1f6effe', 'value': 9928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021a32ad67339e200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:13:01.000Z'}}, {'blockNum': '0x9c8c06', 'uniqueId': '0x668fbc4a3e915246a43fc2fb9712fc64b1e4d1db872d404b3af30238f898129b:log:6', 'hash': '0x668fbc4a3e915246a43fc2fb9712fc64b1e4d1db872d404b3af30238f898129b', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 3093.48376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa7b2b611bd97bf0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:15:11.000Z'}}, {'blockNum': '0x9c8c19', 'uniqueId': '0x00b4d4ce9ba4c7a6b123a3dafce83c8700f00dd99de8eb08ebdd42173683cd01:log:2', 'hash': '0x00b4d4ce9ba4c7a6b123a3dafce83c8700f00dd99de8eb08ebdd42173683cd01', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3029.90053018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa440510f19029f2800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:17:35.000Z'}}, {'blockNum': '0x9c8c21', 'uniqueId': '0x8054217d0c3662fabea8a7f4f52fbbf4f594bb7fb21ba358aab4e1ad80832fff:log:99', 'hash': '0x8054217d0c3662fabea8a7f4f52fbbf4f594bb7fb21ba358aab4e1ad80832fff', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 3029.90053018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa440510f19029f2800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:19:48.000Z'}}, {'blockNum': '0x9c8c25', 'uniqueId': '0x0bceefb67c4709bce16c192c4eaeb64ab8aa7f21708debdf82429af8db27f200:log:4', 'hash': '0x0bceefb67c4709bce16c192c4eaeb64ab8aa7f21708debdf82429af8db27f200', 'from': '0x5908fb11e93bbaf4d70861bc7910304f6b79e16f', 'to': '0xb4321a4f869a095a401d4926c9d2786431c11aaa', 'value': 1358.049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x499eb7423f7e768000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:20:20.000Z'}}, {'blockNum': '0x9c8c33', 'uniqueId': '0x3a5241cce9976f6553a785408556135b5b36ce678120fb720e996febd2df209a:log:4', 'hash': '0x3a5241cce9976f6553a785408556135b5b36ce678120fb720e996febd2df209a', 'from': '0xd7f7fd77aa3eddaf50dd76d93bec345069ac5d3b', 'to': '0x069b0fa80ed82bbd89dc0edf46bbcf502ae66034', 'value': 1265.19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x449609d1bc70770000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:22:57.000Z'}}, {'blockNum': '0x9c8c40', 'uniqueId': '0x9f1d40fd04899762bc09e4a2f9ad3a67c4d62c7989f61390b990a195f70f4fd4:log:90', 'hash': '0x9f1d40fd04899762bc09e4a2f9ad3a67c4d62c7989f61390b990a195f70f4fd4', 'from': '0x069b0fa80ed82bbd89dc0edf46bbcf502ae66034', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1265.19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x449609d1bc70770000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:25:27.000Z'}}, {'blockNum': '0x9c8c56', 'uniqueId': '0x4d3ba13d4bd2a39a93feb65ca050eeeb672fb38b9b293a6cde6c89e793ac21d7:log:8', 'hash': '0x4d3ba13d4bd2a39a93feb65ca050eeeb672fb38b9b293a6cde6c89e793ac21d7', 'from': '0xd7f7fd77aa3eddaf50dd76d93bec345069ac5d3b', 'to': '0x4c33589dea197d19db9d4dcd2d2a87ef8551e76d', 'value': 1059.0089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3968b367ae2d2c4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:29:27.000Z'}}, {'blockNum': '0x9c8c58', 'uniqueId': '0xa1cf408a80fcc77ebb95507343e528b79a3fbf341e77ffc8ed8c7a76fa2421ed:log:8', 'hash': '0xa1cf408a80fcc77ebb95507343e528b79a3fbf341e77ffc8ed8c7a76fa2421ed', 'from': '0x4c33589dea197d19db9d4dcd2d2a87ef8551e76d', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1059.0089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3968b367ae2d2c4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:29:50.000Z'}}, {'blockNum': '0x9c8c63', 'uniqueId': '0xfb177669075dc93789f51b9b8a205b5ab771c0508ffe908349c0d61cb9f8a645:log:0', 'hash': '0xfb177669075dc93789f51b9b8a205b5ab771c0508ffe908349c0d61cb9f8a645', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2189.441024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x76b099132c1b800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:32:03.000Z'}}, {'blockNum': '0x9c8c63', 'uniqueId': '0x20ed19e83dcbc301f143aa0fbdd7d0320a3e738a4dc7da48b69c98aa31e1a5dd:log:1', 'hash': '0x20ed19e83dcbc301f143aa0fbdd7d0320a3e738a4dc7da48b69c98aa31e1a5dd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd850865e614c2d635c669a3087287b781f4a98cf', 'value': 9112.9407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01ee037514388b95c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:32:03.000Z'}}, {'blockNum': '0x9c8c64', 'uniqueId': '0x12187794d995f82161e4e44410eb6a349f3dffe1965ed575468e2d1692c70972:log:48', 'hash': '0x12187794d995f82161e4e44410eb6a349f3dffe1965ed575468e2d1692c70972', 'from': '0x48659871d1c7134b74d82733d325c7e294ba8fe8', 'to': '0x7cfce8016324b79d238a2650811b765e2872c326', 'value': 5639.259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0131b470966ce08f8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:32:31.000Z'}}, {'blockNum': '0x9c8c6f', 'uniqueId': '0xa2d9c98c7d97fb7658a33ae523ad4c191a9ec036324788391264af187f655a74:log:38', 'hash': '0xa2d9c98c7d97fb7658a33ae523ad4c191a9ec036324788391264af187f655a74', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd850865e614c2d635c669a3087287b781f4a98cf', 'value': 2189.441024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x76b099132c1b800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:33:58.000Z'}}, {'blockNum': '0x9c8c72', 'uniqueId': '0x100907b89e160e90f61cc3b67afaa751227708b85b076d26607a7b00e8c7b9b7:log:3', 'hash': '0x100907b89e160e90f61cc3b67afaa751227708b85b076d26607a7b00e8c7b9b7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2409.38835904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x829cfafb0f6c870000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:34:27.000Z'}}, {'blockNum': '0x9c8c9b', 'uniqueId': '0x0508fb1542eea864ad70008d6cef111d31b1ab705208a4221b1d9862051dde85:log:0', 'hash': '0x0508fb1542eea864ad70008d6cef111d31b1ab705208a4221b1d9862051dde85', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0adff4ee43c9ede9a92a6ca7ba5da262d4bcd535', 'value': 146184.627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1ef4af3bf926d94b8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:43:10.000Z'}}, {'blockNum': '0x9c8c9c', 'uniqueId': '0x7acbcf8f664a94289ba4437087347fd9d7989db9e080c5c9497b0a5958204b48:log:56', 'hash': '0x7acbcf8f664a94289ba4437087347fd9d7989db9e080c5c9497b0a5958204b48', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd850865e614c2d635c669a3087287b781f4a98cf', 'value': 2409.38835904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x829cfafb0f6c870000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:43:34.000Z'}}, {'blockNum': '0x9c8cb8', 'uniqueId': '0xc4098ea51fb70e93234276cce18a45acee6796ab5acc057f23e29d18feee67bc:log:148', 'hash': '0xc4098ea51fb70e93234276cce18a45acee6796ab5acc057f23e29d18feee67bc', 'from': '0x1dd640eebfb39d4ff4cb1c57c6227aca35c06501', 'to': '0xee852f23c3edcf51a500a13d369c07e320ba5c8d', 'value': 2700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x925e06eec972b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:51:48.000Z'}}, {'blockNum': '0x9c8ce8', 'uniqueId': '0xe0339413905e11154a1902e40773ac5e289ce9cf6e084ff40e2a37664100927b:log:1', 'hash': '0xe0339413905e11154a1902e40773ac5e289ce9cf6e084ff40e2a37664100927b', 'from': '0x1cf60cdcfb5b4c632506a4d7629f93d530d41761', 'to': '0x0f1b1f7096bd59c8101abbeeba67d90892e9b8c8', 'value': 3063.0963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa60d001fdec95ac000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:02:32.000Z'}}, {'blockNum': '0x9c8d01', 'uniqueId': '0x1396937d65623cc9cef3b9052738cd8ec30053d9108167f8fa3a4c04767d9ab1:log:2', 'hash': '0x1396937d65623cc9cef3b9052738cd8ec30053d9108167f8fa3a4c04767d9ab1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 9825.57875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0214a54c06fa48a5e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:08:38.000Z'}}, {'blockNum': '0x9c8d09', 'uniqueId': '0x3b2716c80c628a94ad7b499b2ac457856c3422e9559cd1a68b92e3bbbad2e8bf:log:83', 'hash': '0x3b2716c80c628a94ad7b499b2ac457856c3422e9559cd1a68b92e3bbbad2e8bf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xfc3438e2b36d0eff3b55151af2f13e01e5b6e375', 'value': 9825.57875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0214a54c06fa48a5e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:10:47.000Z'}}, {'blockNum': '0x9c8d15', 'uniqueId': '0x7a49250075d563b4d385ef26ce2a5890ec97d43719253d947f7dc9805f008398:log:7', 'hash': '0x7a49250075d563b4d385ef26ce2a5890ec97d43719253d947f7dc9805f008398', 'from': '0xb2db2177e83584448c9ffa2df0ca06e51eeecf29', 'to': '0x3679c8f9da6d1cd172772dfa7d34e3e3b6743753', 'value': 19000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0405fdf7e5af85e00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:13:27.000Z'}}, {'blockNum': '0x9c8d15', 'uniqueId': '0x42bc12b6382896f009dff6986095a39950035557c817b7e072b7fac645e74584:log:150', 'hash': '0x42bc12b6382896f009dff6986095a39950035557c817b7e072b7fac645e74584', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 64690.321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0db2de8c4d7d706e8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:13:27.000Z'}}, {'blockNum': '0x9c8d18', 'uniqueId': '0xf3c09ca364a601b26cac76e3b5a717c620cecd9e9d1160dc6fafd5e684cfbf1a:log:6', 'hash': '0xf3c09ca364a601b26cac76e3b5a717c620cecd9e9d1160dc6fafd5e684cfbf1a', 'from': '0x3679c8f9da6d1cd172772dfa7d34e3e3b6743753', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 19000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0405fdf7e5af85e00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:13:45.000Z'}}, {'blockNum': '0x9c8d1f', 'uniqueId': '0x639bca3b68108ee8b5f3b7eb4e5d124e932f310b74f17ba43b5937b8b4420765:log:144', 'hash': '0x639bca3b68108ee8b5f3b7eb4e5d124e932f310b74f17ba43b5937b8b4420765', 'from': '0xf90870e0779c71e0055690b7f82e41e930b46dff', 'to': '0x47af91ac16f0467132c33bd8db20006559eea4fa', 'value': 17301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03a9e39b5b5f99340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:15:28.000Z'}}, {'blockNum': '0x9c8d30', 'uniqueId': '0xecb71032db05cead46a713ebc9459ba1c1448e0c3dc4366f7d1321c530f8d902:log:1', 'hash': '0xecb71032db05cead46a713ebc9459ba1c1448e0c3dc4366f7d1321c530f8d902', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 78958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10b8525ea6963cf80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:20:25.000Z'}}, {'blockNum': '0x9c8d38', 'uniqueId': '0xe5fb3b6e9e3a8e8d3ad79b78516078a4e901412a70f72a95a760d2301b4591ea:log:110', 'hash': '0xe5fb3b6e9e3a8e8d3ad79b78516078a4e901412a70f72a95a760d2301b4591ea', 'from': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 64690.321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0db2de8c4d7d706e8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:21:49.000Z'}}, {'blockNum': '0x9c8d40', 'uniqueId': '0x3f0b2bf56780cd9fbf86d78326619fb712ebde68813572d9e0484a4cf14ad8f7:log:26', 'hash': '0x3f0b2bf56780cd9fbf86d78326619fb712ebde68813572d9e0484a4cf14ad8f7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 385558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x51a5241c922aaa980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:24:11.000Z'}}, {'blockNum': '0x9c8d55', 'uniqueId': '0xa33d76917644b1fedb6996ee4c4b52c3c556f8cf9773cb829e4553006ba4c7b1:log:85', 'hash': '0xa33d76917644b1fedb6996ee4c4b52c3c556f8cf9773cb829e4553006ba4c7b1', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 78958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10b8525ea6963cf80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:29:01.000Z'}}, {'blockNum': '0x9c8d96', 'uniqueId': '0xe5310d41ed72decc9dfdac051fe963873e102a39162f961c1f1dc0eb526c9142:log:15', 'hash': '0xe5310d41ed72decc9dfdac051fe963873e102a39162f961c1f1dc0eb526c9142', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4282cffc9d892decdd328a84368eba03bfcf2ecb', 'value': 7052.3281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017e4eb6821d457e4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:42:02.000Z'}}, {'blockNum': '0x9c8dc3', 'uniqueId': '0x9e9c4638367fa6cdc09dcbeae09af243e5d3daef87e51009b5ae3c379aef16bc:log:6', 'hash': '0x9e9c4638367fa6cdc09dcbeae09af243e5d3daef87e51009b5ae3c379aef16bc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1529.24091949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52e67b2202b12f1400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:51:47.000Z'}}, {'blockNum': '0x9c8dc3', 'uniqueId': '0x75d2ac890e798264dfebc9cc956379bc5e9667078595976927d3740c7223b1fa:log:32', 'hash': '0x75d2ac890e798264dfebc9cc956379bc5e9667078595976927d3740c7223b1fa', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x209f11edb294862f6da0aed1c4eb768955df45cf', 'value': 334157.2132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x46c2b2e6349b57310000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:51:47.000Z'}}, {'blockNum': '0x9c8dce', 'uniqueId': '0x41b2554cd9838b6a43c40d775d6a80c7c42afe3dd027e2f97c6c414d60b9240a:log:170', 'hash': '0x41b2554cd9838b6a43c40d775d6a80c7c42afe3dd027e2f97c6c414d60b9240a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1b04a630284c06364f3c90e3eee4f79fe38f5240', 'value': 1529.24091949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52e67b2202b12f1400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:54:26.000Z'}}, {'blockNum': '0x9c8e1d', 'uniqueId': '0x54d477605ae9b415c8be42fe214f9eea67e2617baf99227af0914b7d9d345181:log:9', 'hash': '0x54d477605ae9b415c8be42fe214f9eea67e2617baf99227af0914b7d9d345181', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'value': 75885.292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1011bffae87dd7fe0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:11:06.000Z'}}, {'blockNum': '0x9c8e2c', 'uniqueId': '0x6470e3ed9bc785a75f69e40a162633a3a6dd826f3e38900e1a4c27fea6894eb4:log:2', 'hash': '0x6470e3ed9bc785a75f69e40a162633a3a6dd826f3e38900e1a4c27fea6894eb4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x72962fc4d5d695f6d49bd885e0e635b0524ff554', 'value': 25599.486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x056bc03c151c39730000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:15:08.000Z'}}, {'blockNum': '0x9c8e42', 'uniqueId': '0xf5be0fa76eb7550d988a2008d065fc3dc66e9880b604ea76ba753881fa51d793:log:5', 'hash': '0xf5be0fa76eb7550d988a2008d065fc3dc66e9880b604ea76ba753881fa51d793', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf7b222eef7f3e9b157a164cd4582579f8d04c0a6', 'value': 1465.471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4f717ede1a14798000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:19:28.000Z'}}, {'blockNum': '0x9c8e55', 'uniqueId': '0xf66c808fc034b2ec90212164172a8e2a2c5b6b6e72e6039fbf7c61bfd87df032:log:38', 'hash': '0xf66c808fc034b2ec90212164172a8e2a2c5b6b6e72e6039fbf7c61bfd87df032', 'from': '0x531fc93910152101af92588a5adf469faf64caf1', 'to': '0x546dd903751e499922cce5d0bef4fecd011a9e1e', 'value': 1616.1124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x579c10a14500010000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:24:15.000Z'}}, {'blockNum': '0x9c8e5f', 'uniqueId': '0x246c2dc719c3ff5b2344d412246d47e130420a29051487244a80ca225da5d10a:log:3', 'hash': '0x246c2dc719c3ff5b2344d412246d47e130420a29051487244a80ca225da5d10a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 89179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12e2673d2968708c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:25:55.000Z'}}, {'blockNum': '0x9c8e62', 'uniqueId': '0x8d96bfa67534b67ae13392355e430fe428c763a9898150b99b337b6c8c7817cc:log:23', 'hash': '0x8d96bfa67534b67ae13392355e430fe428c763a9898150b99b337b6c8c7817cc', 'from': '0x546dd903751e499922cce5d0bef4fecd011a9e1e', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1616.1124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x579c10a14500010000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:27:02.000Z'}}, {'blockNum': '0x9c8e7d', 'uniqueId': '0x4408fc0e2b8ca792ff275b07aff384a9b0c5e81812391869a385eeec1f1644ae:log:10', 'hash': '0x4408fc0e2b8ca792ff275b07aff384a9b0c5e81812391869a385eeec1f1644ae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xac91420c1ca0013582768adc8fb1bd319c248fcc', 'value': 17465.018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b2c7d0595e6b390000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:31:19.000Z'}}, {'blockNum': '0x9c8e83', 'uniqueId': '0x2cb63288c4d8570a3eadfaca06db05326f14d2ec87316e0d4479efdfbb1a4b30:log:114', 'hash': '0x2cb63288c4d8570a3eadfaca06db05326f14d2ec87316e0d4479efdfbb1a4b30', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 89179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12e2673d2968708c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:33:31.000Z'}}, {'blockNum': '0x9c8f08', 'uniqueId': '0x9dcb538022ec4aeaeb378af118e2a8cdf8785c211c7fb32cdaa01b7ba28f5d6c:log:35', 'hash': '0x9dcb538022ec4aeaeb378af118e2a8cdf8785c211c7fb32cdaa01b7ba28f5d6c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x33fb6127fc779fed3521633539693975889b962d', 'value': 3191.1159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xacfda11bcb18f3c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:07:17.000Z'}}, {'blockNum': '0x9c8f14', 'uniqueId': '0x08ec19c12f5f615c998099260f1171819b46e9b0ccfc7bbfb1e6e54a85379a5f:log:2', 'hash': '0x08ec19c12f5f615c998099260f1171819b46e9b0ccfc7bbfb1e6e54a85379a5f', 'from': '0xe726cfe2e0316f79a88da388000ba24abdff4095', 'to': '0xb776d762b8369053c52121c5cfea38fb19b9666f', 'value': 218956.31340918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2e5da541b561c8ef1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:10:54.000Z'}}, {'blockNum': '0x9c8f17', 'uniqueId': '0x20043b496b28578f0d512b2e87fa7a11c454aa9eb51826d7d6389c7655c66159:log:3', 'hash': '0x20043b496b28578f0d512b2e87fa7a11c454aa9eb51826d7d6389c7655c66159', 'from': '0xb776d762b8369053c52121c5cfea38fb19b9666f', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 218956.31340918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2e5da541b561c8ef1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:11:08.000Z'}}, {'blockNum': '0x9c8f2f', 'uniqueId': '0x438c3799acd12895b329860796259b420052e92ff4af7bae927d66df21135e89:log:10', 'hash': '0x438c3799acd12895b329860796259b420052e92ff4af7bae927d66df21135e89', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 16420.3637919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x037a26530deac5ba1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:16:00.000Z'}}, {'blockNum': '0x9c8f40', 'uniqueId': '0x992a5089a2adf23c1143baaa0bf6db975f065c20462a1240e14f44b69171617b:log:25', 'hash': '0x992a5089a2adf23c1143baaa0bf6db975f065c20462a1240e14f44b69171617b', 'from': '0x37834333483c803fd8e91725cd589860dd264997', 'to': '0xef02df6daf5c0947c7f306bf1310c5632d763d08', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:20:26.000Z'}}, {'blockNum': '0x9c8f44', 'uniqueId': '0xe64e8a2799fcdb3d22d071e34743f583aa6cf26bb7bc37b4da3710cccb05020e:log:90', 'hash': '0xe64e8a2799fcdb3d22d071e34743f583aa6cf26bb7bc37b4da3710cccb05020e', 'from': '0xef02df6daf5c0947c7f306bf1310c5632d763d08', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:21:05.000Z'}}, {'blockNum': '0x9c8f6f', 'uniqueId': '0x6086781335a6292ffd360fa9222b2a9720dd5b703fb9f167565f4aeaa81c7656:log:121', 'hash': '0x6086781335a6292ffd360fa9222b2a9720dd5b703fb9f167565f4aeaa81c7656', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245507.36619174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x33fcfb221d9d188dd800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:29:14.000Z'}}, {'blockNum': '0x9c8f77', 'uniqueId': '0x2625bfa843ee7c5f2fa5b4b5c4b3575e336f720a637add8ed409db721aba2a5c:log:32', 'hash': '0x2625bfa843ee7c5f2fa5b4b5c4b3575e336f720a637add8ed409db721aba2a5c', 'from': '0xa20bd670bff99f29a813965007217ff2e9f2cec2', 'to': '0xa9a78f358a4bbf97db23283e26de31e55a0e09dd', 'value': 990.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x35b8dc2677b28f0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:31:43.000Z'}}, {'blockNum': '0x9c8f7b', 'uniqueId': '0x80f6ab34bff3698a52aa2a1e492f2a780ff25cfd6f7d137ebd0ee8838c90af2a:log:13', 'hash': '0x80f6ab34bff3698a52aa2a1e492f2a780ff25cfd6f7d137ebd0ee8838c90af2a', 'from': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'to': '0xbd67aa90de68d34dd4b687fb90d335cdec8e07bd', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:32:36.000Z'}}, {'blockNum': '0x9c8f7f', 'uniqueId': '0x62f4ce3b86bcca2ac8c86fc816d09fe4e5ba1effcabc9cc84cbc35e04832d5ee:log:30', 'hash': '0x62f4ce3b86bcca2ac8c86fc816d09fe4e5ba1effcabc9cc84cbc35e04832d5ee', 'from': '0xbd67aa90de68d34dd4b687fb90d335cdec8e07bd', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:33:22.000Z'}}, {'blockNum': '0x9c8f9c', 'uniqueId': '0x26e0d9966c25f48ff2120bb94b76b350231091fbbc9bebd27169d3daff9168b5:log:51', 'hash': '0x26e0d9966c25f48ff2120bb94b76b350231091fbbc9bebd27169d3daff9168b5', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4caaa1a9f79b26ea8f1425151111669836ab2262', 'value': 16420.3637919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x037a26530deac5ba1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:41:22.000Z'}}, {'blockNum': '0x9c8fd9', 'uniqueId': '0xdf271130060821d81cd6f13e591014d8e9466157aaefd3ad1827b70233caae16:log:0', 'hash': '0xdf271130060821d81cd6f13e591014d8e9466157aaefd3ad1827b70233caae16', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5464.77713475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01283f047a6ccabcac00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:53:37.000Z'}}, {'blockNum': '0x9c8fe1', 'uniqueId': '0x575fb85bda3d9be9df695159d3fc9a33a8ab7ecb6db82481a834a760a51a6c04:log:123', 'hash': '0x575fb85bda3d9be9df695159d3fc9a33a8ab7ecb6db82481a834a760a51a6c04', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xc6eaa24a7e404284b1d063e4474d13119890cb83', 'value': 5464.77713475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01283f047a6ccabcac00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:55:03.000Z'}}, {'blockNum': '0x9c8ffe', 'uniqueId': '0xfc4660addec8490b08ddaceb436caa1576bf12a6095fa9f8840a7d308533d374:log:5', 'hash': '0xfc4660addec8490b08ddaceb436caa1576bf12a6095fa9f8840a7d308533d374', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xee35ba740c5ae393523186e6a4d7d0dcaa3ac0c0', 'value': 2657.278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x900d23e62344730000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T00:00:14.000Z'}}, {'blockNum': '0x9c90ad', 'uniqueId': '0x6e73c2e733ae64cad38d3369bef5baf08ecac9b9c4889e8dd449e5ba26cc244c:log:59', 'hash': '0x6e73c2e733ae64cad38d3369bef5baf08ecac9b9c4889e8dd449e5ba26cc244c', 'from': '0x2d55c64b69e0c056b55e80398cde1fa47ca2cbbb', 'to': '0x8352eef02ba4a1d847d0d7654b5c387025c1d133', 'value': 1128.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3d30e661fe658d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T00:39:34.000Z'}}, {'blockNum': '0x9c910a', 'uniqueId': '0xd3fe76de1e8c0c59f2ebf2fc1c6b3e122de75a643aacb2de035f1b1ee83f1103:log:9', 'hash': '0xd3fe76de1e8c0c59f2ebf2fc1c6b3e122de75a643aacb2de035f1b1ee83f1103', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 8328.9966177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c3840c36e1fe7de800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T00:59:05.000Z'}}, {'blockNum': '0x9c9110', 'uniqueId': '0xa65cba450fe16775bbcc1136df0b5b70566f64dda4b367e60a6ae6d132e01b86:log:191', 'hash': '0xa65cba450fe16775bbcc1136df0b5b70566f64dda4b367e60a6ae6d132e01b86', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0aa03e6c410e519f6b394ec9f600c2694ffdd692', 'value': 8328.9966177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c3840c36e1fe7de800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:01:35.000Z'}}, {'blockNum': '0x9c9114', 'uniqueId': '0xa2ba55a620194ab51c8649ca6c0c35159e893bb881ef558a829a3173e0555ffd:log:2', 'hash': '0xa2ba55a620194ab51c8649ca6c0c35159e893bb881ef558a829a3173e0555ffd', 'from': '0x0aa03e6c410e519f6b394ec9f600c2694ffdd692', 'to': '0xd6679341b036839ff82a5de124b7189fda814d3b', 'value': 8328.9966177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c3840c36e1fe7de800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:02:34.000Z'}}, {'blockNum': '0x9c9151', 'uniqueId': '0x70f9936d23cf0a05b99f2b2d8d510755fac3e77dc6d17a383b2365f3017b21d8:log:113', 'hash': '0x70f9936d23cf0a05b99f2b2d8d510755fac3e77dc6d17a383b2365f3017b21d8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2085a3e6af52837ab36b76c5f627769c4105e8c5', 'value': 15773.1524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x035710764a0e94190000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:15:36.000Z'}}, {'blockNum': '0x9c9152', 'uniqueId': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8:log:49', 'hash': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8', 'from': '0x82db9fc4956fa40efe1e35d881004612b5cb2cc2', 'to': '0x16d4f26c15f3658ec65b1126ff27dd3df2a2996b', 'value': 342.29860709269826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x128e58f1933748cad4', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:16:13.000Z'}}, {'blockNum': '0x9c9152', 'uniqueId': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8:log:54', 'hash': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8', 'from': '0x16d4f26c15f3658ec65b1126ff27dd3df2a2996b', 'to': '0x0a05e2e9d6333387d4f634b08fff5210292f5561', 'value': 342.29860709269826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x128e58f1933748cad4', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:16:13.000Z'}}, {'blockNum': '0x9c917b', 'uniqueId': '0x523a57b4279912783f30f25f3f9c3c6b50e41c08de3757659694a59c02198965:log:1', 'hash': '0x523a57b4279912783f30f25f3f9c3c6b50e41c08de3757659694a59c02198965', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5522.767047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x012b63ca085f640f7000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:23:55.000Z'}}, {'blockNum': '0x9c9184', 'uniqueId': '0x5b6186bbf48fff41e9b5530ac82414dd04396fe503df0dcacf5174b714251026:log:87', 'hash': '0x5b6186bbf48fff41e9b5530ac82414dd04396fe503df0dcacf5174b714251026', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 5522.767047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x012b63ca085f640f7000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:25:46.000Z'}}, {'blockNum': '0x9c9190', 'uniqueId': '0x16a04e364f9d90618be2b01417682e379e6bce819583e1260c59f030e12bb98e:log:3', 'hash': '0x16a04e364f9d90618be2b01417682e379e6bce819583e1260c59f030e12bb98e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2205.69404781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7792276a371c841400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:28:06.000Z'}}, {'blockNum': '0x9c919b', 'uniqueId': '0x72da542e9a4139e8ed4b6b830bdd2be7f5b8ad9b3f39ddc76146262d2b4c6789:log:38', 'hash': '0x72da542e9a4139e8ed4b6b830bdd2be7f5b8ad9b3f39ddc76146262d2b4c6789', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 2205.69404781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7792276a371c841400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:30:20.000Z'}}, {'blockNum': '0x9c91ec', 'uniqueId': '0x1884d5e35bb8cf77bfea142c9e5146a3e7131d5dfc9f49308df4c2b66cd2a0ad:log:1', 'hash': '0x1884d5e35bb8cf77bfea142c9e5146a3e7131d5dfc9f49308df4c2b66cd2a0ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'value': 49753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a891d93a94ef9c40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:48:18.000Z'}}, {'blockNum': '0x9c920f', 'uniqueId': '0x7b0baf7c2d4e621cab385d1878912a75b5d1f5ab3ff289b635df9bad9eceafac:log:99', 'hash': '0x7b0baf7c2d4e621cab385d1878912a75b5d1f5ab3ff289b635df9bad9eceafac', 'from': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 49753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a891d93a94ef9c40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:56:02.000Z'}}, {'blockNum': '0x9c921f', 'uniqueId': '0x51f1d874c8974d59fe0c0b98966fee7081b25f4f288b41700b2982fc4f92a03f:log:1', 'hash': '0x51f1d874c8974d59fe0c0b98966fee7081b25f4f288b41700b2982fc4f92a03f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 413602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x579568cafaafc9480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:59:13.000Z'}}]}}
Number of returned transfers:  186
Answer is complete
 
symbol            NEBL
group              TCG
date        2020-06-14
hour             16:00
exchange       binance
Name: 588, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2020-06-14 16:00:00 2020-06-14 04:00:00 2020-06-15 04:00:00
Unix timestamps:  1592100000.0 1592186400.0
Hex Block Numbers:  0x9c9223 0x9cab7f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             OAX
group              TCG
date        2020-06-28
hour             16:00
exchange       binance
Name: 589, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-06-28 16:00:00 2020-06-28 04:00:00 2020-06-29 04:00:00
Unix timestamps:  1593309600.0 1593396000.0
Hex Block Numbers:  0x9df34d 0x9e0cbf
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9e0149', 'uniqueId': '0xabb91b04d29cd3fc73d75e82097f5af6a34ff48b9dfcde0b6723f56d9eb3a9ef:log:17', 'hash': '0xabb91b04d29cd3fc73d75e82097f5af6a34ff48b9dfcde0b6723f56d9eb3a9ef', 'from': '0x463f6f3ec9706db1660e13348e145132fa0d7182', 'to': '0x08d93188c4c439651993f0c6656ed1253238e451', 'value': 9428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01ff17c89050aed00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-28T15:13:59.000Z'}}, {'blockNum': '0x9e0228', 'uniqueId': '0xa6b50d537aa5d4d09ed3501509907700140d4ef3621bf6712f8ffaf0deeb9618:log:37', 'hash': '0xa6b50d537aa5d4d09ed3501509907700140d4ef3621bf6712f8ffaf0deeb9618', 'from': '0x3b63cc5790c8b06787c55aa2aaaa7a0af14ed7ac', 'to': '0x71025d59ab9def0146e8b4861ba594cad7d4ee1e', 'value': 5000.7096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x010f16c9664e15be0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-28T16:03:41.000Z'}}, {'blockNum': '0x9e022a', 'uniqueId': '0x13e8ab07f08df209e28efa6e7aea2f0b839b07775d15291ed1008ece69f790e3:log:169', 'hash': '0x13e8ab07f08df209e28efa6e7aea2f0b839b07775d15291ed1008ece69f790e3', 'from': '0x54a5a4a492048080000ef50f90c69810716b207d', 'to': '0xd137e8cc2a71c4d9e28940d21cedbd80b7506981', 'value': 1827.717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6314ab2fd71ea08000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-28T16:03:51.000Z'}}, {'blockNum': '0x9e029c', 'uniqueId': '0xf286538ddf8cc2df67ee527291023d3c8ee78857203c7331cea99185e7c82600:log:51', 'hash': '0xf286538ddf8cc2df67ee527291023d3c8ee78857203c7331cea99185e7c82600', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 4505.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xf438d264f50c4e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-28T16:24:51.000Z'}}, {'blockNum': '0x9e029e', 'uniqueId': '0x0ec58f6db0d1e2a1924c870814ba35ba0c369b4575956ff9c9f13cf1e1ea4786:log:81', 'hash': '0x0ec58f6db0d1e2a1924c870814ba35ba0c369b4575956ff9c9f13cf1e1ea4786', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 3465.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xbbdd0b1ea8882c8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-28T16:25:01.000Z'}}, {'blockNum': '0x9e0366', 'uniqueId': '0xb9089c823b80389677f2861f718e9a40c553e30e3f322562430113a1c15829a5:log:123', 'hash': '0xb9089c823b80389677f2861f718e9a40c553e30e3f322562430113a1c15829a5', 'from': '0x0928a9382db99e42c17748c3c99d0730bc445528', 'to': '0x411fb82b8276c3a28dc2ce2a8e0e2e2152b8cc1f', 'value': 1217.278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x41fd203395b1f30000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-28T17:08:26.000Z'}}, {'blockNum': '0x9e0456', 'uniqueId': '0xac583d3e3663fb134fa8c5c192d68f65bc20834b4085ec573e5b71e8b8869005:log:8', 'hash': '0xac583d3e3663fb134fa8c5c192d68f65bc20834b4085ec573e5b71e8b8869005', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3b63cc5790c8b06787c55aa2aaaa7a0af14ed7ac', 'value': 5000.0806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x010f0e0ebe233a058000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-28T18:01:15.000Z'}}]}}
Number of returned transfers:  7
Answer is complete
 
symbol             ADX
group              TCG
date        2020-07-07
hour             16:00
exchange       binance
Name: 590, dtype: object
HERE
 Symbol: ADX, Contract: 0xade00c28244d5ce17d72e40330b1c318cd12b7c3
Datetime timestamps:  2020-07-07 16:00:00 2020-07-07 04:00:00 2020-07-08 04:00:00
Unix timestamps:  1594087200.0 1594173600.0
Hex Block Numbers:  0x9ed635 0x9eef98
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             NXS
group              TCG
date        2020-07-21
hour             16:00
exchange       binance
Name: 591, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-07-21 16:00:00 2020-07-21 04:00:00 2020-07-22 04:00:00
Unix timestamps:  1595296800.0 1595383200.0
Hex Block Numbers:  0xa037a1 0xa050a1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NXS
group              TCG
date        2020-08-02
hour             16:00
exchange       binance
Name: 592, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-08-02 16:00:00 2020-08-02 04:00:00 2020-08-03 04:00:00
Unix timestamps:  1596333600.0 1596420000.0
Hex Block Numbers:  0xa1669a 0xa17fb0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             QLC
group              TCG
date        2020-09-06
hour             16:00
exchange       binance
Name: 593, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: QLC, Contract: 
Datetime timestamps:  2020-09-06 16:00:00 2020-09-06 04:00:00 2020-09-07 04:00:00
Unix timestamps:  1599357600.0 1599444000.0
Hex Block Numbers:  0xa4df75 0xa4f93a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             QSP
group              TCG
date        2020-09-10
hour             18:00
exchange       binance
Name: 594, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2020-09-10 18:00:00 2020-09-10 06:00:00 2020-09-11 06:00:00
Unix timestamps:  1599710400.0 1599796800.0
Hex Block Numbers:  0xa54764 0xa56107
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa548ca', 'uniqueId': '0x7bf7adbf52072a133c6cc2f08fdb16bb48e4c110fa0b48839fbe77bc310e8677:log:79', 'hash': '0x7bf7adbf52072a133c6cc2f08fdb16bb48e4c110fa0b48839fbe77bc310e8677', 'from': '0x5e667d65d45cd511e7cdfbbc592196631c86c773', 'to': '0xea33e88bc886d9709a895f512781cdf0ff12efc5', 'value': 3074.98999864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa6b20f07c49019e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T05:19:26.000Z'}}, {'blockNum': '0xa54958', 'uniqueId': '0xc35a81542f0ec1974305f50d0f78bcd14e4f037bf627c622929479eb0a5dac2d:log:248', 'hash': '0xc35a81542f0ec1974305f50d0f78bcd14e4f037bf627c622929479eb0a5dac2d', 'from': '0x10bd28a045defee8e75f03a9f5d014dd6b0313fa', 'to': '0xdf10158541bb7b0ebbec23c424f5024e497dbc6a', 'value': 497.0330700640846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1af1b82fd4479a8465', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T05:49:04.000Z'}}, {'blockNum': '0xa54a16', 'uniqueId': '0x672dabb3e35a3f0b669421d3fabe9e92bb0c74bd13ae914b22b853756c07f3d3:log:168', 'hash': '0x672dabb3e35a3f0b669421d3fabe9e92bb0c74bd13ae914b22b853756c07f3d3', 'from': '0xf5490f4e055aacad9f0d51a16838788078686082', 'to': '0xd3a08888778ad7d5e61aaefaa0b91f84ecefafc1', 'value': 2600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8cf23f909c0fa00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T06:33:05.000Z'}}, {'blockNum': '0xa54a88', 'uniqueId': '0xbf66dc4e56424830ce129087f4a1c8fbc5ad1eaebd99ab32e0d299e9579fa4c3:log:4', 'hash': '0xbf66dc4e56424830ce129087f4a1c8fbc5ad1eaebd99ab32e0d299e9579fa4c3', 'from': '0xbc9dd9a2f7f48f4e895f5527a1e3880400faa2e3', 'to': '0xa90e24f3d4acc3fe642ae2e8fde06be03923dc4a', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T07:03:46.000Z'}}, {'blockNum': '0xa54bff', 'uniqueId': '0xdf4589ab31376a50c6a6f9c54d37914cdefa133778246d76488d3bbb8ad333d5:log:339', 'hash': '0xdf4589ab31376a50c6a6f9c54d37914cdefa133778246d76488d3bbb8ad333d5', 'from': '0xa163e2cef5095a49d9174b6c36a2ac9790def114', 'to': '0xa7792a7fe379c0603ddc7e2ac3cc3a479995fd29', 'value': 1692.973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5bc6b855be9f648000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T08:26:09.000Z'}}, {'blockNum': '0xa54cad', 'uniqueId': '0xcf7e3c6461f22b96218f2916c397c13a104469735278d4a5a1d1d5c2358db40d:log:52', 'hash': '0xcf7e3c6461f22b96218f2916c397c13a104469735278d4a5a1d1d5c2358db40d', 'from': '0x46e56e4c807257caa443895aa43113beb96f7c80', 'to': '0xfbd2b1430831265168761393f5ef652a3b3a467c', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T09:08:49.000Z'}}, {'blockNum': '0xa54caf', 'uniqueId': '0xb2b99afbdf33b6bb7d1d5714b66410aea6233cabaf8041b4e75401cbff39b660:log:69', 'hash': '0xb2b99afbdf33b6bb7d1d5714b66410aea6233cabaf8041b4e75401cbff39b660', 'from': '0xfbd2b1430831265168761393f5ef652a3b3a467c', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T09:09:46.000Z'}}, {'blockNum': '0xa54fcb', 'uniqueId': '0x63fb4129255985df8cd96aa96cb5c1a8f2fdd828b9df7b4f58e8d6462c610fdd:log:17', 'hash': '0x63fb4129255985df8cd96aa96cb5c1a8f2fdd828b9df7b4f58e8d6462c610fdd', 'from': '0xb809a8bb26205d0175159aa279100d73ccf88019', 'to': '0xf88db2e3c660a1c81ad2c931fab6018a2ef85d6e', 'value': 655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2381f375a948dc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T12:02:58.000Z'}}, {'blockNum': '0xa550d9', 'uniqueId': '0x68d8d17dc539936f58d947630f99789395422c1103de517e166b38924462992d:log:70', 'hash': '0x68d8d17dc539936f58d947630f99789395422c1103de517e166b38924462992d', 'from': '0x4aef5b44b4c2375c6fd9ef7fe93659be99855d15', 'to': '0x85bf95ed670ec5e28e05c4ce32a8e40e953d32eb', 'value': 291.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0fce11ac4d49230000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T12:58:31.000Z'}}, {'blockNum': '0xa551e2', 'uniqueId': '0x11f090bec9086f83b2d9b95af80e074f81dceffd44cb8ae53d86f8fa04aded6d:log:179', 'hash': '0x11f090bec9086f83b2d9b95af80e074f81dceffd44cb8ae53d86f8fa04aded6d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ba514533859993267bd02246b7151af5c5d4627', 'value': 67996.50864537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e66191e6005686f4400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T13:59:05.000Z'}}, {'blockNum': '0xa551fa', 'uniqueId': '0x85a1dbb2d3c72d2d5f9a93145871ff5aff317eef1b3cf83cde8b105dda412b14:log:222', 'hash': '0x85a1dbb2d3c72d2d5f9a93145871ff5aff317eef1b3cf83cde8b105dda412b14', 'from': '0x916ed5586bb328e0ec1a428af060dc3d10919d84', 'to': '0x965e69ea946bb17754896aece59776567ba083f5', 'value': 1400.00004522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4be4e74f9c04e96800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:03:14.000Z'}}, {'blockNum': '0xa55256', 'uniqueId': '0x35d8d404f42b97d30f16bfaf477b1b6b8f5cebfb0efaad985dc79c6bb68fd979:log:326', 'hash': '0x35d8d404f42b97d30f16bfaf477b1b6b8f5cebfb0efaad985dc79c6bb68fd979', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 19516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0421f6e827cceb700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:25:23.000Z'}}, {'blockNum': '0xa552a2', 'uniqueId': '0x017d223844b7b5394161faede3c9be2f3f01aff14d161d5cef1256eb7c3842e5:log:300', 'hash': '0x017d223844b7b5394161faede3c9be2f3f01aff14d161d5cef1256eb7c3842e5', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 19516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0421f6e827cceb700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:41:00.000Z'}}, {'blockNum': '0xa552e1', 'uniqueId': '0xa7fcf2c997aa9e1d8b72d282c2201a1bd4a045be21ba65f8145ad7c86b09d20c:log:117', 'hash': '0xa7fcf2c997aa9e1d8b72d282c2201a1bd4a045be21ba65f8145ad7c86b09d20c', 'from': '0x43238608111fe51641ad1aa6a29d5f19a74037e7', 'to': '0x52ca04c6d2b22028b10e1c9e3c50e66fbc4ff3ce', 'value': 1132.140284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3d5f9a45f631dbc000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:56:41.000Z'}}, {'blockNum': '0xa553a4', 'uniqueId': '0x9f0eced6b699d4967a61dcc77a23053c6e212608b570cf169d58d01d673f11ed:log:95', 'hash': '0x9f0eced6b699d4967a61dcc77a23053c6e212608b570cf169d58d01d673f11ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe2a90a2cdb4895f2b636c9554999c6f048104a76', 'value': 761.98016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x294e99566047500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T15:34:01.000Z'}}, {'blockNum': '0xa5543c', 'uniqueId': '0xe70ac19bbd08d0cff397b777a3a1f4aad99c531af052953b0de5b9a8ae9760a0:log:155', 'hash': '0xe70ac19bbd08d0cff397b777a3a1f4aad99c531af052953b0de5b9a8ae9760a0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xc767a51199c410028ca360313fb419b9f1755381', 'value': 63042.997167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d5991566345b085f000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:09:16.000Z'}}, {'blockNum': '0xa55476', 'uniqueId': '0xafe438ef7a0dead99046639e145fd8155418fba7ec1a157f837e8c3ff6a80e88:log:113', 'hash': '0xafe438ef7a0dead99046639e145fd8155418fba7ec1a157f837e8c3ff6a80e88', 'from': '0xc767a51199c410028ca360313fb419b9f1755381', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 63042.997167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d5991566345b085f000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:22:55.000Z'}}, {'blockNum': '0xa554b9', 'uniqueId': '0x2ee017b7f3af2cff24b3f5e76fcef52ec0309d12bd70c8335738d27250e7d01b:log:25', 'hash': '0x2ee017b7f3af2cff24b3f5e76fcef52ec0309d12bd70c8335738d27250e7d01b', 'from': '0x80b5b304c0eac3041b4507bb1c879d8e5745dcac', 'to': '0xab3f245f647844882f3734c5f18a56deb3ea5bf2', 'value': 8477.05308691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01cb8abe75314719ec00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:37:44.000Z'}}, {'blockNum': '0xa554bf', 'uniqueId': '0x886fb25b8c70e1c57630413dcf1cc5a8e5cd39e4a05ada7bf266aef76049d610:log:13', 'hash': '0x886fb25b8c70e1c57630413dcf1cc5a8e5cd39e4a05ada7bf266aef76049d610', 'from': '0xab3f245f647844882f3734c5f18a56deb3ea5bf2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 8477.05308691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01cb8abe75314719ec00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:39:03.000Z'}}, {'blockNum': '0xa554ec', 'uniqueId': '0x36295705d97cd3220ce798b8a6377143533c39f69bce69bc0c526657f1eb1e2e:log:226', 'hash': '0x36295705d97cd3220ce798b8a6377143533c39f69bce69bc0c526657f1eb1e2e', 'from': '0xbdde2c395cf206f061dfa9e0574dc2c535bdc866', 'to': '0xcf9d83b04f61e15f3d173a5bd857b25c49ed991b', 'value': 5129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01160b2c7564b2840000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:47:45.000Z'}}, {'blockNum': '0xa5554f', 'uniqueId': '0x581f7973256fc2a603932cccae4cd6d09f11bda8a43e30d10164b00c901347a4:log:86', 'hash': '0x581f7973256fc2a603932cccae4cd6d09f11bda8a43e30d10164b00c901347a4', 'from': '0x901b68e2099f83dcd6e443c86146969ef837ed37', 'to': '0xff152f5a5031f04879b1677dd0adac7100fd397c', 'value': 6977.432264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017a3f530c1665948000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T17:04:52.000Z'}}, {'blockNum': '0xa55567', 'uniqueId': '0xeb8a08261d1009f39cacded2d08247afd348adff068ff7cbf6b8f2a0991c94bc:log:11', 'hash': '0xeb8a08261d1009f39cacded2d08247afd348adff068ff7cbf6b8f2a0991c94bc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x615dc707447425d413ae52d88361fca08fcc4d8f', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d900000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T17:10:32.000Z'}}, {'blockNum': '0xa55729', 'uniqueId': '0xb63230b1c754e2d798fc278e33ba3ed207a2efe8004ab081f1aa1dcb1a9c07cb:log:321', 'hash': '0xb63230b1c754e2d798fc278e33ba3ed207a2efe8004ab081f1aa1dcb1a9c07cb', 'from': '0x42f8ceaa89716aa27641b3c7ac6ebbed438dc4d2', 'to': '0xf85ecef24e975f4ccb2d565e1c2c7217c09a9dce', 'value': 108624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x170084d2a561ef400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T18:48:14.000Z'}}, {'blockNum': '0xa557a5', 'uniqueId': '0xa3c9321bd75857077ab663065fea52bfd8d5eaae81b16ad0e071c361206e44db:log:178', 'hash': '0xa3c9321bd75857077ab663065fea52bfd8d5eaae81b16ad0e071c361206e44db', 'from': '0x51519e8e257bb13da00d049f5e83fb5c5f1e90a5', 'to': '0x1e2fe4656a727e378ab943d2f78d0f7de4a9a5e2', 'value': 19885.021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0435f81a1c24b6dc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T19:12:04.000Z'}}, {'blockNum': '0xa558cb', 'uniqueId': '0x53b59dbb3c20fef18ea44ce1c11d53193e4eeb2e82f933bffb18c6f9f0b0b3a5:log:16', 'hash': '0x53b59dbb3c20fef18ea44ce1c11d53193e4eeb2e82f933bffb18c6f9f0b0b3a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 4849.60825431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0106e5d594f81dca7c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:15:12.000Z'}}, {'blockNum': '0xa558d3', 'uniqueId': '0xa6fcc062cddec883747dabe33348d828036d29a9fae4c20adab290900f4d4b5d:log:235', 'hash': '0xa6fcc062cddec883747dabe33348d828036d29a9fae4c20adab290900f4d4b5d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1b56397606cf6c002f7448c0cdbcf0ff6a66caaa', 'value': 4801.10825431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010444c2f7eee7587c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:17:27.000Z'}}, {'blockNum': '0xa5592d', 'uniqueId': '0xd48a44f27db2dae4f47e5725e02299bfc48086888f365c7e182f1f772003d159:log:90', 'hash': '0xd48a44f27db2dae4f47e5725e02299bfc48086888f365c7e182f1f772003d159', 'from': '0x8a5c8e3c71dc4c17a8baecec1a964ee117626e7c', 'to': '0xe6d40c83026565bfe4cf8556ffd91adffc29ebf4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:36:36.000Z'}}, {'blockNum': '0xa55949', 'uniqueId': '0xcaf09be6608f5dcacf5a0bda799b1c5f68e703793f02f4625db189485dccde5f:log:96', 'hash': '0xcaf09be6608f5dcacf5a0bda799b1c5f68e703793f02f4625db189485dccde5f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5398e5e01484b1eb6c9c1af59eb2c58b640c4199', 'value': 4231.667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xe5662d3c2ad6eb8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:44:59.000Z'}}, {'blockNum': '0xa55be1', 'uniqueId': '0x36f41a7e2be66246375879edd8466674cbf2cb967eddb1a493c8fafe3ada4aab:log:26', 'hash': '0x36f41a7e2be66246375879edd8466674cbf2cb967eddb1a493c8fafe3ada4aab', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac254864d699b72bedb911ab3629b25beb31b693', 'value': 5494.403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0129da28b1e7c0938000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T23:18:19.000Z'}}, {'blockNum': '0xa55d1d', 'uniqueId': '0xbb739e9ed3f9e3f09f30403767e008c437c6c307133ad8b2d1449fbe7b0327ec:log:260', 'hash': '0xbb739e9ed3f9e3f09f30403767e008c437c6c307133ad8b2d1449fbe7b0327ec', 'from': '0x7fe3239b89a39212ca944118c2f2e3d8b513d369', 'to': '0x5ead215dac720e5127bd314374b68a4b6f38d0d9', 'value': 1345.44958279334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x48efdd230d9a8c881e', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T00:21:42.000Z'}}, {'blockNum': '0xa55e40', 'uniqueId': '0x4f541ecd74b6fc7087a348250ccadd115d3753be4ca9905c316a49af1f4ee52b:log:46', 'hash': '0x4f541ecd74b6fc7087a348250ccadd115d3753be4ca9905c316a49af1f4ee52b', 'from': '0x97ab7b00c9b1ddf0d8e11dafe81acb5bc06f909a', 'to': '0x769c8be7616097e7314899700ac85d60976f427c', 'value': 3589.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc293ceb579104d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T01:27:41.000Z'}}, {'blockNum': '0xa55efa', 'uniqueId': '0xa2e7257c3b3b7d7c9953446014ea47d721c6b11f4f3b15f6185d4a3b774f3e31:log:183', 'hash': '0xa2e7257c3b3b7d7c9953446014ea47d721c6b11f4f3b15f6185d4a3b774f3e31', 'from': '0x916ed5586bb328e0ec1a428af060dc3d10919d84', 'to': '0xed9510f826a20b07e427472c9faef10a8e19de6c', 'value': 20024.2791545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x043d84b275d6ffd3a800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:07:27.000Z'}}, {'blockNum': '0xa55f14', 'uniqueId': '0x578ba75a79ed4ff60cdc3d0ca53e42a004eebc0f7b8621dd5232338f9d83bfa5:log:85', 'hash': '0x578ba75a79ed4ff60cdc3d0ca53e42a004eebc0f7b8621dd5232338f9d83bfa5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 32481.398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06e0d1f2fb2d837f0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:13:00.000Z'}}, {'blockNum': '0xa55f16', 'uniqueId': '0xe6475e46bd3ceef5d644c37c2ee0c8bed60ed7b4c5acaca97b0e6f78c87e79a5:log:0', 'hash': '0xe6475e46bd3ceef5d644c37c2ee0c8bed60ed7b4c5acaca97b0e6f78c87e79a5', 'from': '0x016d574d8f9728f3b0073e37c3972e32683b31f1', 'to': '0x6dd4b492f020c6afb31e06c8564a7527aac8e8ed', 'value': 3957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd6826806ea5cb40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:13:42.000Z'}}, {'blockNum': '0xa55f1e', 'uniqueId': '0x0a82ad46b41fd55f0a136307ed64ab3c28f5d95953bc3c6ff34d7b0327d44180:log:136', 'hash': '0x0a82ad46b41fd55f0a136307ed64ab3c28f5d95953bc3c6ff34d7b0327d44180', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9a340d72007fe5a8076db602687fbed636363dd', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:14:59.000Z'}}, {'blockNum': '0xa55f88', 'uniqueId': '0x7e7d3e51a79453a118312bef5db6ff100ed949e01ae2b45c4ab68a40b4e87243:log:13', 'hash': '0x7e7d3e51a79453a118312bef5db6ff100ed949e01ae2b45c4ab68a40b4e87243', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5fafae3633d0d7e7a006629e16414b2985a904c8', 'value': 95405.413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1433f013cbf542d08000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:40:11.000Z'}}, {'blockNum': '0xa55fe8', 'uniqueId': '0x32df0a1f1819a005746c3d71d022efd95eaf8b35351d78eff88fa81f31ed3646:log:55', 'hash': '0x32df0a1f1819a005746c3d71d022efd95eaf8b35351d78eff88fa81f31ed3646', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5fafae3633d0d7e7a006629e16414b2985a904c8', 'value': 154914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x20cde79ed6738f480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:58:50.000Z'}}, {'blockNum': '0xa56047', 'uniqueId': '0xe03beee665f9fc5dc12aa98adf74105f52a5d80213631ea4dae5924b61e036a4:log:147', 'hash': '0xe03beee665f9fc5dc12aa98adf74105f52a5d80213631ea4dae5924b61e036a4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x86925ddeea557ee955aafc75e08450ab5d90229c', 'value': 3461.988266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xbbacbd1186ec8ca000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:18:41.000Z'}}, {'blockNum': '0xa56074', 'uniqueId': '0x76ef80f69084c87f7a1bbda1d589a15736dc0079cc4d3969c33227dc1a8b802d:log:115', 'hash': '0x76ef80f69084c87f7a1bbda1d589a15736dc0079cc4d3969c33227dc1a8b802d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 23241.649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04ebeeac51f750be8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:28:43.000Z'}}, {'blockNum': '0xa5609b', 'uniqueId': '0x47cc831f0c8460624b2564ce68c5bcfd69539a6f960b41a01300a2db4f3decc2:log:55', 'hash': '0x47cc831f0c8460624b2564ce68c5bcfd69539a6f960b41a01300a2db4f3decc2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2057.89244169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6f8efea0891db70400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:36:34.000Z'}}, {'blockNum': '0xa560a1', 'uniqueId': '0x4b6caed6747fbe878d2706055270ebe5a375a0eeefafe6045aeed42668a47fc4:log:145', 'hash': '0x4b6caed6747fbe878d2706055270ebe5a375a0eeefafe6045aeed42668a47fc4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4fcdcdc5ad5d26568de9cea8d8b566600695024a', 'value': 2014.89244169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6d3a3ff05bffeb0400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:38:40.000Z'}}, {'blockNum': '0xa560d8', 'uniqueId': '0xd841874260ee89d273de410d99906976a6331ef375ea4a83fb48e1730f1d02ff:log:108', 'hash': '0xd841874260ee89d273de410d99906976a6331ef375ea4a83fb48e1730f1d02ff', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 22891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04d8ec70d248bacc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:50:46.000Z'}}, {'blockNum': '0xa560e2', 'uniqueId': '0x5faaea6d5c51c0f7e0687b0ad6df5a9dd9c89e5c2d71caa6a8ceab40812820d0:log:151', 'hash': '0x5faaea6d5c51c0f7e0687b0ad6df5a9dd9c89e5c2d71caa6a8ceab40812820d0', 'from': '0xe28a24ce2f3bbbd0020cfcfbc1e011dd025d5d25', 'to': '0x0a05e2e9d6333387d4f634b08fff5210292f5561', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5de9ffb72', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:52:43.000Z'}}, {'blockNum': '0xa560e4', 'uniqueId': '0x08ece819af067efa0a3adf1a8ae8a828d3cbf5f0db44a57343da402fa38d87b8:log:145', 'hash': '0x08ece819af067efa0a3adf1a8ae8a828d3cbf5f0db44a57343da402fa38d87b8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6f9b3fcf1f2c006d2cb7594dc95ecf094f87111a', 'value': 16897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0393fcfb07db6f640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:52:59.000Z'}}]}}
Number of returned transfers:  44
Answer is complete
 
symbol             GVT
group              TCG
date        2020-09-17
hour             17:59
exchange       binance
Name: 595, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-09-17 17:59:00 2020-09-17 05:59:00 2020-09-18 05:59:00
Unix timestamps:  1600315140.0 1600401540.0
Hex Block Numbers:  0xa5f9af 0xa61333
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RDN
group              TCG
date        2020-10-17
hour             16:00
exchange       binance
Name: 596, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-10-17 16:00:00 2020-10-17 04:00:00 2020-10-18 04:00:00
Unix timestamps:  1602900000.0 1602986400.0
Hex Block Numbers:  0xa8ec89 0xa905eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa8ecb4', 'uniqueId': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755:log:224', 'hash': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T02:08:16.000Z'}}, {'blockNum': '0xa8f093', 'uniqueId': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4:log:185', 'hash': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4', 'from': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T05:43:33.000Z'}}, {'blockNum': '0xa8f1fe', 'uniqueId': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56:log:4', 'hash': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1920.9350643831335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68225447819cca98f3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:06:47.000Z'}}, {'blockNum': '0xa8f201', 'uniqueId': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f:log:56', 'hash': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:16.000Z'}}, {'blockNum': '0xa8f202', 'uniqueId': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b:log:151', 'hash': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:54.000Z'}}, {'blockNum': '0xa8f245', 'uniqueId': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187:log:214', 'hash': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187', 'from': '0x6d377c45cf8c9d19bb6cfdb0c93ccf979026d3f8', 'to': '0xf8622783483722aa2b8d3f689a18d3a79466cb8e', 'value': 1534.9389518395485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x53358e9c3e32b613c3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:23:04.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:181', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:182', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f449', 'uniqueId': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998:log:14', 'hash': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3751.993885394774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcb655fffd9d93247fd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:20:35.000Z'}}, {'blockNum': '0xa8f44b', 'uniqueId': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75:log:169', 'hash': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3744.4898976239847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcafd3c7abb34680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:21:04.000Z'}}, {'blockNum': '0xa8f458', 'uniqueId': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69:log:18', 'hash': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:24:29.000Z'}}, {'blockNum': '0xa8f46d', 'uniqueId': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3:log:45', 'hash': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3', 'from': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:30:03.000Z'}}, {'blockNum': '0xa8f595', 'uniqueId': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9:log:32', 'hash': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 17678.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03be5a78c54aef2a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:34:47.000Z'}}, {'blockNum': '0xa8f5cc', 'uniqueId': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e:log:137', 'hash': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e', 'from': '0x4569cd9d62f1db5b59fd504e7e80777274299329', 'to': '0x88793a5eaf644825d78f5730c2f482437e3aeb4d', 'value': 53187.0905255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4347280ba8cbc95800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:46:15.000Z'}}, {'blockNum': '0xa8f60b', 'uniqueId': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d:log:139', 'hash': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d', 'from': '0x2cedc44ec7fc775caa42acbfb3deae7ed4af24fa', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:59:37.000Z'}}, {'blockNum': '0xa8f60e', 'uniqueId': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460:log:60', 'hash': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20115.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0442727a311a51800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:00:16.000Z'}}, {'blockNum': '0xa8f63e', 'uniqueId': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548:log:11', 'hash': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3671.6538336414615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc70a6ecc70f081bc09', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:08:59.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:46', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 915.2487882567699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da0e3b93f7af2d3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:47', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 915.2486178129188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da048b4b2480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:96', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 802.7683055095091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a5f09cb48c2e26', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:97', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 802.7681757273997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a57a9374040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f644', 'uniqueId': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120:log:240', 'hash': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3664.3105259741783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc6a486210637b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:43.000Z'}}, {'blockNum': '0xa8f68c', 'uniqueId': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23:log:305', 'hash': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23', 'from': '0x21821de67396f6811e02350e8cdab0805e7dceee', 'to': '0xd44efb5e3e0056de640240943e0c65c9e8865c9f', 'value': 102.9988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0595653ee393810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:23.000Z'}}, {'blockNum': '0xa8f68d', 'uniqueId': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea:log:44', 'hash': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19127.96132155865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040cedc9d5acd2e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:25.000Z'}}, {'blockNum': '0xa8f6f6', 'uniqueId': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4:log:208', 'hash': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4', 'from': '0xafd3e0b651e9379971aaf34683553c7553a06e60', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:52:18.000Z'}}, {'blockNum': '0xa8f761', 'uniqueId': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f:log:77', 'hash': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2bec9497ff7851c94e105143865da680feb91d09', 'value': 3731.0985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xca4364ad8afccc4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:13:15.000Z'}}, {'blockNum': '0xa8f7f9', 'uniqueId': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1:log:325', 'hash': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1', 'from': '0xe0782ace187e676f08a32e96b32d77712ef0b073', 'to': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:43:05.000Z'}}, {'blockNum': '0xa8f81c', 'uniqueId': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920:log:220', 'hash': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920', 'from': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:50:42.000Z'}}, {'blockNum': '0xa8f8eb', 'uniqueId': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea:log:51', 'hash': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea', 'from': '0x7946632863fbb0a914b3c0e5f74e1c3c98ca64df', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bdd2ed4b616c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:34:04.000Z'}}, {'blockNum': '0xa8f908', 'uniqueId': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487:log:46', 'hash': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9221.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01f3e8cbbb56e3ba0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:41:42.000Z'}}, {'blockNum': '0xa8f978', 'uniqueId': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313:log:280', 'hash': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313', 'from': '0x20990b7688861fd6d8f45efc1ffb051bb030532c', 'to': '0xca499253c4928a5bd1ee59df395e8a5a59a2e78d', 'value': 1436.496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ddf62fd1e35880000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:05:42.000Z'}}, {'blockNum': '0xa8f980', 'uniqueId': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21:log:33', 'hash': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:07:44.000Z'}}, {'blockNum': '0xa8f987', 'uniqueId': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8:log:10', 'hash': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:08:59.000Z'}}, {'blockNum': '0xa8fa2f', 'uniqueId': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0:log:63', 'hash': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8210.20036828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01bd136b2771deaff000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:51:54.000Z'}}, {'blockNum': '0xa8fa3e', 'uniqueId': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01:log:97', 'hash': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 8425.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8bde9d451502c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:55:16.000Z'}}, {'blockNum': '0xa8fa42', 'uniqueId': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14:log:55', 'hash': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2687.8488746452704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x91b56576a7fcc638f2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:57:20.000Z'}}, {'blockNum': '0xa8fa45', 'uniqueId': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558:log:80', 'hash': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2682.4731768959796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x916acb2608ee700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:58:00.000Z'}}, {'blockNum': '0xa8fa51', 'uniqueId': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728:log:244', 'hash': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17647.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03bca6b58fa833e60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:00:21.000Z'}}, {'blockNum': '0xa8fa95', 'uniqueId': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e:log:35', 'hash': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9347.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01fac02c32b402060000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:12:35.000Z'}}, {'blockNum': '0xa8faca', 'uniqueId': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7:log:240', 'hash': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7', 'from': '0x365cc1f75cf0b70fe780880941d50d29913c0bd9', 'to': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'value': 460.3016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18f3f7ca6ae7f20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:25:24.000Z'}}, {'blockNum': '0xa8fad9', 'uniqueId': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048:log:8', 'hash': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 7894.37634788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01abf47ad632c8f71000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:28:16.000Z'}}, {'blockNum': '0xa8fae1', 'uniqueId': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd:log:190', 'hash': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd', 'from': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16104.57671616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x036907e5fda4a7a70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:12.000Z'}}, {'blockNum': '0xa8fae2', 'uniqueId': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437:log:191', 'hash': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2645.4825284988124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f6971f74d71e909dc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:36.000Z'}}, {'blockNum': '0xa8fae3', 'uniqueId': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc:log:25', 'hash': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 6379.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0159dae5ffd752a60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:31:33.000Z'}}, {'blockNum': '0xa8fae6', 'uniqueId': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f:log:116', 'hash': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2640.1915634418147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f2004ae9dac900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:32:33.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:270', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.1690587715337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1a68792eb236a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:271', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.1688955867392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1121d27340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:211', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.6411287288056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7ec7a7933d7b15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:212', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.640969434666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7e36c704a20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8fb53', 'uniqueId': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88:log:2', 'hash': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2631.747487065685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8eaad54be3f51a7746', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:58:56.000Z'}}, {'blockNum': '0xa8fb56', 'uniqueId': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85:log:86', 'hash': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2626.483992091554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8e61c99b1942f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:59:40.000Z'}}, {'blockNum': '0xa8fb58', 'uniqueId': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27:log:10', 'hash': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 4789.840710473679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0103a8649c83184dfaf0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:02.000Z'}}, {'blockNum': '0xa8fb59', 'uniqueId': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac:log:6', 'hash': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:09.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20:log:54', 'hash': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3201.3953312184785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad8c48fc0617700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:140', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 939.6958340005638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e63e4d360a9081', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:141', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 939.6956546240192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e59b28dad20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d:log:234', 'hash': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5b', 'uniqueId': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e:log:12', 'hash': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8354.3388098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c4e3bdc4543cb3d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:43.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:27', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:28', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962:log:229', 'hash': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:84', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:85', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5f', 'uniqueId': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db:log:27', 'hash': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 3693.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc83dc5c968a9e40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:06.000Z'}}, {'blockNum': '0xa8fb65', 'uniqueId': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a:log:141', 'hash': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:58.000Z'}}, {'blockNum': '0xa8fb6e', 'uniqueId': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310:log:155', 'hash': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3509.380443638334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbe3e6fe7fe9da893e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:04:54.000Z'}}, {'blockNum': '0xa8fb79', 'uniqueId': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f:log:110', 'hash': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f', 'from': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'to': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:06:51.000Z'}}, {'blockNum': '0xa8fb7b', 'uniqueId': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda:log:57', 'hash': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 1993.8410352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c161a51b11d1d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:23.000Z'}}, {'blockNum': '0xa8fb7c', 'uniqueId': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907:log:37', 'hash': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907', 'from': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:31.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b:log:80', 'hash': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b', 'from': '0xd11c25af01d25e5ff28a6a5760db795dafbb3d9d', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 11568.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x027322c1a65c86108000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:89', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:95', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:259', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 974.7458636748125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750f6965a899802', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:264', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 974.7458352341208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750dcb87d360000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbe3', 'uniqueId': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd:log:157', 'hash': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd', 'from': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20749.25970527027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0464d1d2c7a760d0bc82', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:12.000Z'}}, {'blockNum': '0xa8fbe4', 'uniqueId': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac:log:57', 'hash': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19421.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x041cd8d7fbf3fe900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:25.000Z'}}, {'blockNum': '0xa8fd1a', 'uniqueId': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900:log:69', 'hash': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:38:01.000Z'}}, {'blockNum': '0xa8fd23', 'uniqueId': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f:log:168', 'hash': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:41:08.000Z'}}, {'blockNum': '0xa8fd71', 'uniqueId': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab:log:64', 'hash': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'value': 12386.9501916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f776262a6d76000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:54:38.000Z'}}, {'blockNum': '0xa8fd9a', 'uniqueId': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87:log:42', 'hash': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:03:43.000Z'}}, {'blockNum': '0xa8fd9e', 'uniqueId': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744:log:118', 'hash': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:05:01.000Z'}}, {'blockNum': '0xa8fdd7', 'uniqueId': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901:log:72', 'hash': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 11686.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279813752637c620000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:18:22.000Z'}}, {'blockNum': '0xa8fddb', 'uniqueId': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2:log:50', 'hash': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:19:33.000Z'}}, {'blockNum': '0xa8fde5', 'uniqueId': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5:log:191', 'hash': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:21:35.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:118', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x175789024955c56b06a618806fc13df71d08a377', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:124', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x175789024955c56b06a618806fc13df71d08a377', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdfe', 'uniqueId': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed:log:33', 'hash': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:28:22.000Z'}}, {'blockNum': '0xa8fe07', 'uniqueId': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112:log:61', 'hash': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:30:17.000Z'}}, {'blockNum': '0xa8fe2e', 'uniqueId': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9:log:24', 'hash': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:40:49.000Z'}}, {'blockNum': '0xa8fe35', 'uniqueId': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1:log:260', 'hash': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:43:34.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:105', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:110', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe68', 'uniqueId': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14:log:5', 'hash': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:55:04.000Z'}}, {'blockNum': '0xa8fe6f', 'uniqueId': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b:log:209', 'hash': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:56:04.000Z'}}, {'blockNum': '0xa8fe96', 'uniqueId': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf:log:34', 'hash': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1883.10000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66154320eaee21e400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:04:02.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:355', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:359', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa900ab', 'uniqueId': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0:log:269', 'hash': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0', 'from': '0x6a12a09de38346d13f55879e31476b0c53cd2f08', 'to': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T21:07:05.000Z'}}, {'blockNum': '0xa901ad', 'uniqueId': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68:log:35', 'hash': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:02:46.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f:log:45', 'hash': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f', 'from': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:60', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 941.1110033730682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489ef59172daa71', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:65', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 941.1109779568085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489d83b680c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901ba', 'uniqueId': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5:log:0', 'hash': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xbd0e6a324df058e2581506101a50a7596fe623ed', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:04:38.000Z'}}, {'blockNum': '0xa901c3', 'uniqueId': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c:log:130', 'hash': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c', 'from': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:06:40.000Z'}}, {'blockNum': '0xa904bd', 'uniqueId': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54:log:264', 'hash': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x9198b2637af936766e85a888d6097492a50bf3e8', 'value': 267.26938943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e7d1b9da1f6b11c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T00:46:56.000Z'}}]}}
Number of returned transfers:  105
Answer is complete
 
symbol             OAX
group              TCG
date        2020-11-05
hour             16:00
exchange       binance
Name: 597, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-11-05 16:00:00 2020-11-05 04:00:00 2020-11-06 04:00:00
Unix timestamps:  1604545200.0 1604631600.0
Hex Block Numbers:  0xaad105 0xaaeaa5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaad3ae', 'uniqueId': '0xb35afbd7401147f5fbf8c40124299df23680421681248c9b6ebb6950bbee60da:log:266', 'hash': '0xb35afbd7401147f5fbf8c40124299df23680421681248c9b6ebb6950bbee60da', 'from': '0xf41301e41b133caa67377ac9aa8fef864575ecfa', 'to': '0xa454f742c357bdf5ccb2ea70b1fc0b9c533cb4b5', 'value': 862.67688216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2ec40bf5aaa0516000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T05:29:52.000Z'}}, {'blockNum': '0xaad663', 'uniqueId': '0x15b8e3aedfd8aeca20f64c252ac75c500f590bcbafc9bc36d3ee052c485a7b98:log:8', 'hash': '0x15b8e3aedfd8aeca20f64c252ac75c500f590bcbafc9bc36d3ee052c485a7b98', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 3927.8403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xd4edbbf6429bbec000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T08:11:04.000Z'}}, {'blockNum': '0xaade29', 'uniqueId': '0xf16460425c7dbbc9b2edcd0ce35f5d2c3082bb73e70ddec9985ea31649b2858a:log:167', 'hash': '0xf16460425c7dbbc9b2edcd0ce35f5d2c3082bb73e70ddec9985ea31649b2858a', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 8591.006725976658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d1b82b1c2bde598ef0', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T15:22:58.000Z'}}, {'blockNum': '0xaaded6', 'uniqueId': '0x0c69f95a48e3c26b886f7c445a016afba96edd0e8d0821f3fe55a875ef9a9c3c:log:56', 'hash': '0x0c69f95a48e3c26b886f7c445a016afba96edd0e8d0821f3fe55a875ef9a9c3c', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 13030.11651969649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02c25d313225da6f9dd4', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:00:03.000Z'}}, {'blockNum': '0xaadedf', 'uniqueId': '0x79b643352dfe5d63e002ee75f2ee9ffcdb6eb902f7116e94eba5e040e1c36ce7:log:287', 'hash': '0x79b643352dfe5d63e002ee75f2ee9ffcdb6eb902f7116e94eba5e040e1c36ce7', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x30ff6cedaff3e06a6649ea89147ab8eea2b4ad9d', 'value': 3040.8085791886388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa4d7b23be0b3171d02', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:02:35.000Z'}}, {'blockNum': '0xaadf35', 'uniqueId': '0x40e9143b342d4637a44f40ef44a529e741ea7181c79c42ced3a454f7ca60278c:log:34', 'hash': '0x40e9143b342d4637a44f40ef44a529e741ea7181c79c42ced3a454f7ca60278c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 602.25525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x20a5f876fd6c132000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:21:07.000Z'}}, {'blockNum': '0xaadf36', 'uniqueId': '0x75f83694b3bd625f4724065b0c146faf37339cec393be3b3c0eb47901e0180dd:log:166', 'hash': '0x75f83694b3bd625f4724065b0c146faf37339cec393be3b3c0eb47901e0180dd', 'from': '0x30ff6cedaff3e06a6649ea89147ab8eea2b4ad9d', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 3040.8085791886388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa4d7b23be0b3171d02', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:21:25.000Z'}}, {'blockNum': '0xaadf40', 'uniqueId': '0xa19f722dddb2709ae192df4cacbda497108dd2d23c1c83dfbc1e4f5cdb468805:log:140', 'hash': '0xa19f722dddb2709ae192df4cacbda497108dd2d23c1c83dfbc1e4f5cdb468805', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5b39ec5146317c0c45d39aadb06b8dfc2cb15df', 'value': 572.75525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1f0c936949a20d2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:22:55.000Z'}}, {'blockNum': '0xaadf44', 'uniqueId': '0x779a82ba3e71c6fcccb4879c9eb649e81b5cba916db21503fddd2b17f45d3bae:log:206', 'hash': '0x779a82ba3e71c6fcccb4879c9eb649e81b5cba916db21503fddd2b17f45d3bae', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0xe95e8ce71b549d1e2c576b54ea9a099510e4afb1', 'value': 3339.030394106752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb5025af47fb57e2d56', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:24:04.000Z'}}, {'blockNum': '0xaae0ac', 'uniqueId': '0x2bd7320082436f72421d061d0ba2037da8cb5a0bfd9b89104918cef164cd692f:log:199', 'hash': '0x2bd7320082436f72421d061d0ba2037da8cb5a0bfd9b89104918cef164cd692f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf5b9707e7c487853d8ba152665ea49a9e0c6c01d', 'value': 9968.962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021c6b23a92cf7ad0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T17:45:35.000Z'}}, {'blockNum': '0xaae0b1', 'uniqueId': '0x8050f09442fb38c06704e7bf9bdcf9652b05141426db16c797958cecad0ec079:log:44', 'hash': '0x8050f09442fb38c06704e7bf9bdcf9652b05141426db16c797958cecad0ec079', 'from': '0xf5b9707e7c487853d8ba152665ea49a9e0c6c01d', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 9968.962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021c6b23a92cf7ad0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T17:46:30.000Z'}}, {'blockNum': '0xaae2d9', 'uniqueId': '0x4826d1a8cb0783368930dc2802f12de8931068fc2ed3a0646bccc7823f9e3e7b:log:145', 'hash': '0x4826d1a8cb0783368930dc2802f12de8931068fc2ed3a0646bccc7823f9e3e7b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 7167.493591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01848cf4860183f07000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T19:45:17.000Z'}}, {'blockNum': '0xaae3dd', 'uniqueId': '0x3cb71f88e6072ff097ca2ece7cc13d40a7a00db1e7c4e16268e16366d0de07d9:log:43', 'hash': '0x3cb71f88e6072ff097ca2ece7cc13d40a7a00db1e7c4e16268e16366d0de07d9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 7337.60272597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x018dc5b192fbfbc4b400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T20:41:18.000Z'}}, {'blockNum': '0xaae3e0', 'uniqueId': '0xeccf03f1e17ffedc70f691b541b49d19c25f9e1acc1b77f028af3c9b873c1dff:log:10', 'hash': '0xeccf03f1e17ffedc70f691b541b49d19c25f9e1acc1b77f028af3c9b873c1dff', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 7337.60272597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x018dc5b192fbfbc4b400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T20:42:06.000Z'}}, {'blockNum': '0xaae510', 'uniqueId': '0x4dbda37ee872f0dd76ceb0cf63219350c5c7fe43f69d8b71ba7830e4da0ae54e:log:261', 'hash': '0x4dbda37ee872f0dd76ceb0cf63219350c5c7fe43f69d8b71ba7830e4da0ae54e', 'from': '0x03737b6a1fb7f5e4ceb19e3023a7f06ea75220b7', 'to': '0x8b08db00c4899b68f65fe0bd54759e5fa636727b', 'value': 698.39161807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x25dc217465b4a15c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T21:46:28.000Z'}}]}}
Number of returned transfers:  15
Answer is complete
 
symbol             QLC
group              TCG
date        2021-01-06
hour             16:00
exchange       binance
Name: 598, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: QLC, Contract: 
Datetime timestamps:  2021-01-06 16:00:00 2021-01-06 04:00:00 2021-01-07 04:00:00
Unix timestamps:  1609902000.0 1609988400.0
Hex Block Numbers:  0xb0fa84 0xb11400
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             DLT
group              WCG
date        2018-05-10
hour             15:30
exchange       binance
Name: 599, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2018-05-10 15:30:00 2018-05-10 03:30:00 2018-05-11 03:30:00
Unix timestamps:  1525915800.0 1526002200.0
Hex Block Numbers:  0x553ef3 0x555540
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x553f46', 'uniqueId': '0x7285a6247234a2fa1d198e72e7e95706521495622a40e552d7f1a3ca0034a47c:log:12', 'hash': '0x7285a6247234a2fa1d198e72e7e95706521495622a40e552d7f1a3ca0034a47c', 'from': '0x7685f95d32d74fb18218d5a1a885640d9e91f830', 'to': '0xa027b6db9f3faf2ad022e5d2a772420d31586b25', 'value': 1171.3091384615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3f7f2dff91a68a4700', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T01:50:35.000Z'}}, {'blockNum': '0x553fd1', 'uniqueId': '0xc5138025e3c85c6cd1fcb573ae35e66d8c6906a24ee13e29e9901115ccd18f58:log:77', 'hash': '0xc5138025e3c85c6cd1fcb573ae35e66d8c6906a24ee13e29e9901115ccd18f58', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf3ec972b5fa48c1e6ef70cca3fd47135bedd6de8', 'value': 8494.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01cc7b7b12bd6e200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T02:24:48.000Z'}}, {'blockNum': '0x553fe2', 'uniqueId': '0x8a806d4ab5437ee3b112df3895a5e7e5f0302b1ef1637ebb093d4df6136f47a4:log:60', 'hash': '0x8a806d4ab5437ee3b112df3895a5e7e5f0302b1ef1637ebb093d4df6136f47a4', 'from': '0x637d5f3107e59bc1bd94cc2e5295a0b686db0ce6', 'to': '0x38b8268ca53e6ac25fdf19d023c383257a84d165', 'value': 3178.005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xac47add5b537488000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T02:28:33.000Z'}}, {'blockNum': '0x554025', 'uniqueId': '0x4375307e7076b7b9d45ba3b28015f363682caa50a199aa23a25b5be8538aa26e:log:30', 'hash': '0x4375307e7076b7b9d45ba3b28015f363682caa50a199aa23a25b5be8538aa26e', 'from': '0xf3ec972b5fa48c1e6ef70cca3fd47135bedd6de8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8494.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01cc7b7b12bd6e200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T02:43:06.000Z'}}, {'blockNum': '0x5544df', 'uniqueId': '0xf400981486d0e0692b0d843750381c15714226408466fd5db3b53d3ef92b70ff:log:23', 'hash': '0xf400981486d0e0692b0d843750381c15714226408466fd5db3b53d3ef92b70ff', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ba7a847c656e4fe30ac05288a1028cac479ab65', 'value': 312.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x10ef6bc0d578080000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T07:54:20.000Z'}}, {'blockNum': '0x554748', 'uniqueId': '0x42ff7a11617f83bc8eb6541f99aff0f8649cdc015d54e63f54da444de35edd8b:log:20', 'hash': '0x42ff7a11617f83bc8eb6541f99aff0f8649cdc015d54e63f54da444de35edd8b', 'from': '0xb124468456176f1ebec9a4d1e60366f521b8eb48', 'to': '0xb5b75a777316eafea2af2e71a2e7eb4867e84827', 'value': 1385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4b14bc71f49c040000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T10:33:59.000Z'}}, {'blockNum': '0x5547ec', 'uniqueId': '0xd940adb899ccee756706fa7aeb665e2a2f8779f45b62763ef776b40cad664d53:log:10', 'hash': '0xd940adb899ccee756706fa7aeb665e2a2f8779f45b62763ef776b40cad664d53', 'from': '0xb124468456176f1ebec9a4d1e60366f521b8eb48', 'to': '0xc753d2b398281d303559b6abbd7742102468bb70', 'value': 5539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x012c4511111ec8ac0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T11:14:17.000Z'}}, {'blockNum': '0x554801', 'uniqueId': '0xb99a7aa6ebadc46a99bb39c21ae8e58a99ba8dd469e1eff70f2330bfaf5d8605:log:67', 'hash': '0xb99a7aa6ebadc46a99bb39c21ae8e58a99ba8dd469e1eff70f2330bfaf5d8605', 'from': '0xb124468456176f1ebec9a4d1e60366f521b8eb48', 'to': '0x9b56981b849112cb66be3f0871d84cf9861f96b6', 'value': 2770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x962978e3e938080000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T11:19:38.000Z'}}, {'blockNum': '0x55480d', 'uniqueId': '0x7d16c0c58e6efe03851b392b4842c80b5593595916a07b974f9e3fb952e18a01:log:7', 'hash': '0x7d16c0c58e6efe03851b392b4842c80b5593595916a07b974f9e3fb952e18a01', 'from': '0xb124468456176f1ebec9a4d1e60366f521b8eb48', 'to': '0xedf495899cbd6beb017d558b57ce21aaeb413528', 'value': 2770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x962978e3e938080000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T11:22:38.000Z'}}, {'blockNum': '0x55481c', 'uniqueId': '0x447829340aa13020d38a07b59433eb0d2399a6d7412f7e28fc20dbc1ed564aa0:log:16', 'hash': '0x447829340aa13020d38a07b59433eb0d2399a6d7412f7e28fc20dbc1ed564aa0', 'from': '0xb124468456176f1ebec9a4d1e60366f521b8eb48', 'to': '0x34b620e815d8aa455f132b5d0ac6c61e25759752', 'value': 4154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xe130549f2a2ca80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T11:26:01.000Z'}}, {'blockNum': '0x55482b', 'uniqueId': '0x8cafb40a6332076a1c3f2e534310fce457c376248d839a71dfd0662ff237dd7e:log:10', 'hash': '0x8cafb40a6332076a1c3f2e534310fce457c376248d839a71dfd0662ff237dd7e', 'from': '0xb124468456176f1ebec9a4d1e60366f521b8eb48', 'to': '0xd920ea90f90e6946fbe2cc100f65586577a35062', 'value': 2770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x962978e3e938080000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T11:29:06.000Z'}}, {'blockNum': '0x554849', 'uniqueId': '0x1cf0fa44c5f0fe1b31349cf89d804f03f70e480cb6e9117c4600df1e75e02b21:log:64', 'hash': '0x1cf0fa44c5f0fe1b31349cf89d804f03f70e480cb6e9117c4600df1e75e02b21', 'from': '0xb00d4b1b70fd3bdc962b32ce8fd64492b16d15e6', 'to': '0xd36fccfc972f2b335beb7c0aafa0ba5f28d1e389', 'value': 139405.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1d85330058d7205c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T11:36:56.000Z'}}, {'blockNum': '0x55486e', 'uniqueId': '0x4ee3c9924c01995b73c7acb2c4e85755faecc97329de4cbea8828cbf0039f352:log:113', 'hash': '0x4ee3c9924c01995b73c7acb2c4e85755faecc97329de4cbea8828cbf0039f352', 'from': '0xd36fccfc972f2b335beb7c0aafa0ba5f28d1e389', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 139405.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1d85330058d7205c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T11:45:17.000Z'}}, {'blockNum': '0x5548eb', 'uniqueId': '0x22e785006564a0d8441dd5500ba5be06589a7ed8bdabd4f9cad16d177b4091ec:log:4', 'hash': '0x22e785006564a0d8441dd5500ba5be06589a7ed8bdabd4f9cad16d177b4091ec', 'from': '0x295fa16c5864b0224cb8b18fc338253dcd2bbb54', 'to': '0x9b3d51cd723a3180e2174266ce30e175b8cf5f9d', 'value': 3064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa6198ab63b74e00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T12:13:28.000Z'}}, {'blockNum': '0x554917', 'uniqueId': '0x13d82588f0e5a0a85ccae243f0b66b10845294dff655ed3dd119d1a65b6e075b:log:65', 'hash': '0x13d82588f0e5a0a85ccae243f0b66b10845294dff655ed3dd119d1a65b6e075b', 'from': '0x9b3d51cd723a3180e2174266ce30e175b8cf5f9d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa6198ab63b74e00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T12:23:30.000Z'}}, {'blockNum': '0x55493a', 'uniqueId': '0xe90c26a62d3543dbf60d049bb3ea032574630ed830b0d292443f418dedff8651:log:59', 'hash': '0xe90c26a62d3543dbf60d049bb3ea032574630ed830b0d292443f418dedff8651', 'from': '0xcb1c735121431e12b6b8b3cc77ed250a0acdeef3', 'to': '0x75c9e68e635f11c2560552c33dacebdbe1b50c6f', 'value': 1310.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x470c3a8c24c2f40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T12:33:36.000Z'}}, {'blockNum': '0x55496e', 'uniqueId': '0x75d4d092ec6564bc25a68076bf2cf679f454e2eb263c892933ed7b0d4c049052:log:137', 'hash': '0x75d4d092ec6564bc25a68076bf2cf679f454e2eb263c892933ed7b0d4c049052', 'from': '0xbfeafb731d957888d5643c201ebb6a769906c2f3', 'to': '0x0827b6124094122e9cb0f3c15e662ed81532ec17', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T12:48:41.000Z'}}, {'blockNum': '0x554980', 'uniqueId': '0xb5cc668ae2109c78d91b7730e9e3d44315e0650d07e528292370d45aa0729460:log:71', 'hash': '0xb5cc668ae2109c78d91b7730e9e3d44315e0650d07e528292370d45aa0729460', 'from': '0x0827b6124094122e9cb0f3c15e662ed81532ec17', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T12:53:30.000Z'}}, {'blockNum': '0x5549da', 'uniqueId': '0xa175db1af397b215ed9911823607b4e826e5838001ebac48715e2ecc1e414d05:log:14', 'hash': '0xa175db1af397b215ed9911823607b4e826e5838001ebac48715e2ecc1e414d05', 'from': '0xfc3b8e53722a762476aa7a82adf0005a9ba7169c', 'to': '0x3a1bbb4d42c5dc128424ea00c742ea672a061544', 'value': 1000.1694545455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x363823b3c8c4ba4f00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T13:14:45.000Z'}}, {'blockNum': '0x5549e8', 'uniqueId': '0xdd930ded28c542d3118e92cc5039e24327bed753d60052156253c790dedf0992:log:20', 'hash': '0xdd930ded28c542d3118e92cc5039e24327bed753d60052156253c790dedf0992', 'from': '0x75c9e68e635f11c2560552c33dacebdbe1b50c6f', 'to': '0x3a1bbb4d42c5dc128424ea00c742ea672a061544', 'value': 1310.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x470c3a8c24c2f40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T13:17:35.000Z'}}, {'blockNum': '0x554aa6', 'uniqueId': '0x72aa2611a1bb011b119121661245c41c5553f92dc06473ff5bb16bb75660d926:log:30', 'hash': '0x72aa2611a1bb011b119121661245c41c5553f92dc06473ff5bb16bb75660d926', 'from': '0x0e58ec8535c914d9cc71f86f83ab224b2eab3546', 'to': '0xa514cc91195357e9bb8f30b7bbf6749284585e27', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T14:06:08.000Z'}}, {'blockNum': '0x554ab1', 'uniqueId': '0x9603a42d633ba5d016cb139038a2c1d4544b8a5f0a5c99886cb06de279ec732f:log:27', 'hash': '0x9603a42d633ba5d016cb139038a2c1d4544b8a5f0a5c99886cb06de279ec732f', 'from': '0xacaa4da53f5913bed36b9f3f4946bd6b5c396abc', 'to': '0xd3f797d44dee0b4462e760420fe793c3b372d079', 'value': 1687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5b73d3f9e413fc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T14:08:19.000Z'}}, {'blockNum': '0x554ab3', 'uniqueId': '0x7db3f87e9d5df74c708c547e10581ac446d38e5cebbf7c1a4f6a7839830b94d3:log:68', 'hash': '0x7db3f87e9d5df74c708c547e10581ac446d38e5cebbf7c1a4f6a7839830b94d3', 'from': '0x0e58ec8535c914d9cc71f86f83ab224b2eab3546', 'to': '0xa514cc91195357e9bb8f30b7bbf6749284585e27', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T14:09:28.000Z'}}, {'blockNum': '0x554ac3', 'uniqueId': '0x4328069870d75b6388d2d277081edd9ab3ae6ffee683358048cd2e748c770fde:log:69', 'hash': '0x4328069870d75b6388d2d277081edd9ab3ae6ffee683358048cd2e748c770fde', 'from': '0xa514cc91195357e9bb8f30b7bbf6749284585e27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T14:13:11.000Z'}}, {'blockNum': '0x554c58', 'uniqueId': '0xf7182e72b9bc46232151e75059e7b2dd72ccbf0a615aa3f4f92da2a355111a80:log:36', 'hash': '0xf7182e72b9bc46232151e75059e7b2dd72ccbf0a615aa3f4f92da2a355111a80', 'from': '0xefb825c4c95c921f039a731ec2fdbd130b6e2ccb', 'to': '0x9c431ee8fb8d2c957ad7321f6873406cdbc5c1ca', 'value': 420.016291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x16c4e59f52a4193000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T16:04:21.000Z'}}, {'blockNum': '0x554c89', 'uniqueId': '0x62099a8df436ac82c7c09784b4451b49f13e26d430d7366eff005f7de2dc3e05:log:9', 'hash': '0x62099a8df436ac82c7c09784b4451b49f13e26d430d7366eff005f7de2dc3e05', 'from': '0xefb825c4c95c921f039a731ec2fdbd130b6e2ccb', 'to': '0x9c431ee8fb8d2c957ad7321f6873406cdbc5c1ca', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T16:17:37.000Z'}}, {'blockNum': '0x554cff', 'uniqueId': '0x436cfd432874181b46558aeddc51135097950d1dba403e7520a71a7d69d9437f:log:9', 'hash': '0x436cfd432874181b46558aeddc51135097950d1dba403e7520a71a7d69d9437f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd52b5dadc00ab8497130b98914acd87e9837b541', 'value': 24980.689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054a34b38423240e8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T16:47:23.000Z'}}, {'blockNum': '0x554de5', 'uniqueId': '0x2e7b0f5da53bc60d1f7135fa15f710d6d6f22e5fd065487e20bb5464c1821fed:log:153', 'hash': '0x2e7b0f5da53bc60d1f7135fa15f710d6d6f22e5fd065487e20bb5464c1821fed', 'from': '0xd52b5dadc00ab8497130b98914acd87e9837b541', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24980.689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054a34b38423240e8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T17:44:07.000Z'}}, {'blockNum': '0x554f9f', 'uniqueId': '0x3056a95c9b96223a8970ed1b46a8b3283e331b0811fe2dc50f9bdb94fff4f851:log:18', 'hash': '0x3056a95c9b96223a8970ed1b46a8b3283e331b0811fe2dc50f9bdb94fff4f851', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x9e83635988f8297620c8564d1b6a0eb074edd24b', 'value': 254.99962391996362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0dd2d4a6e8c7a24580', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T19:27:29.000Z'}}, {'blockNum': '0x554fa8', 'uniqueId': '0xf9ba9a4bbae6285bf8069593ecf40a003940cdda665cd077e40639de5ab5487b:log:8', 'hash': '0xf9ba9a4bbae6285bf8069593ecf40a003940cdda665cd077e40639de5ab5487b', 'from': '0x9e83635988f8297620c8564d1b6a0eb074edd24b', 'to': '0xc9a73e39a50e20b9c32e890306ca9bb92f8181b7', 'value': 254.99962391996362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0dd2d4a6e8c7a24580', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T19:29:01.000Z'}}, {'blockNum': '0x554fb0', 'uniqueId': '0xdd45f37eec80176a1ae36d18e9573f487d6ccf3bf927175aa540732c22d2034d:log:17', 'hash': '0xdd45f37eec80176a1ae36d18e9573f487d6ccf3bf927175aa540732c22d2034d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x161ec0032492a1f488638e61c1d9be90d30490a8', 'value': 36.341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01f8552af506788000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-05-10T19:31:51.000Z'}}]}}
Number of returned transfers:  31
Answer is complete
 
symbol            PIVX
group              WCG
date        2018-07-19
hour             15:59
exchange       binance
Name: 600, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: PIVX, Contract: 
Datetime timestamps:  2018-07-19 15:59:00 2018-07-19 03:59:00 2018-07-20 03:59:00
Unix timestamps:  1531965540.0 1532051940.0
Hex Block Numbers:  0x5b64f4 0x5b7bb7
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             TNB
group              WCG
date        2018-08-17
hour             15:00
exchange       binance
Name: 601, dtype: object
HERE
 Symbol: TNB, Contract: 
Datetime timestamps:  2018-08-17 15:00:00 2018-08-17 03:00:00 2018-08-18 03:00:00
Unix timestamps:  1534467600.0 1534554000.0
Hex Block Numbers:  0x5e0212 0x5e18ce
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              WCG
date        2018-10-04
hour             18:59
exchange       binance
Name: 602, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2018-10-04 18:59:00 2018-10-04 06:59:00 2018-10-05 06:59:00
Unix timestamps:  1538629140.0 1538715540.0
Hex Block Numbers:  0x626ac6 0x6282eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x626adc', 'uniqueId': '0x3dd1a0d257a7c95c0270d3c70b2addce526725dec745e82ad04af0f4c3c58322:log:49', 'hash': '0x3dd1a0d257a7c95c0270d3c70b2addce526725dec745e82ad04af0f4c3c58322', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x09c4c337a057699579b147afd1b98658a60b11c5', 'value': 731.14064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x27a29d5a54b3c20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:04:58.000Z'}}, {'blockNum': '0x626b51', 'uniqueId': '0x64221cb686ac8c26b114947c656f297555e8d522d2ca4a835e4e8c4f8d2afceb:log:104', 'hash': '0x64221cb686ac8c26b114947c656f297555e8d522d2ca4a835e4e8c4f8d2afceb', 'from': '0xacabdedc64be694e032d5e1da97acb73ab86c46b', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:34:52.000Z'}}, {'blockNum': '0x626b6e', 'uniqueId': '0x958eb4036aa21a6e012995e1c1022e5e3d50d9b48e02dd156b0a67c4c6e18605:log:136', 'hash': '0x958eb4036aa21a6e012995e1c1022e5e3d50d9b48e02dd156b0a67c4c6e18605', 'from': '0xc5763dbc9cab4b4f49f763a2ae1831a204cd489a', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:39:40.000Z'}}, {'blockNum': '0x626b8d', 'uniqueId': '0xecc9e1ad292414be530dbac598baa0c185678e137a596acf7f6e85edc67626e5:log:63', 'hash': '0xecc9e1ad292414be530dbac598baa0c185678e137a596acf7f6e85edc67626e5', 'from': '0xb70d3b11eb811ff61d6505124d1062d569682066', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:46:07.000Z'}}, {'blockNum': '0x626ba1', 'uniqueId': '0xcc59c7ac0e3c01516014c2eeb084ccd5ccd1b06ae695489748153ae772c7d477:log:65', 'hash': '0xcc59c7ac0e3c01516014c2eeb084ccd5ccd1b06ae695489748153ae772c7d477', 'from': '0xbd7b77f1ca0bbbb168c7f262971ce635e98c12da', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:51:10.000Z'}}, {'blockNum': '0x626baf', 'uniqueId': '0x0a6697d6dc6801ae4cf6964545fa1c95e6048983706c8e78a10cb72f9bb02bdf:log:12', 'hash': '0x0a6697d6dc6801ae4cf6964545fa1c95e6048983706c8e78a10cb72f9bb02bdf', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:54:13.000Z'}}, {'blockNum': '0x626bb0', 'uniqueId': '0x8595e50858e962cb43f06d7f654d6ef1b84e2e332a8b58999a4ddaf69266a5c7:log:56', 'hash': '0x8595e50858e962cb43f06d7f654d6ef1b84e2e332a8b58999a4ddaf69266a5c7', 'from': '0x1fd6332b5c8f1ab3cd03c458d889f13be66243b7', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:54:28.000Z'}}, {'blockNum': '0x626bbf', 'uniqueId': '0x84e54724573187cd44064df53130c20c1b869cec5f2ae2e2184061eb57378e0f:log:49', 'hash': '0x84e54724573187cd44064df53130c20c1b869cec5f2ae2e2184061eb57378e0f', 'from': '0x72d57f0be114a148d715ccc12b8c9c68f0443a2d', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:57:50.000Z'}}, {'blockNum': '0x626bcb', 'uniqueId': '0x5a5b12611d979bcc34844f67622a9c3f999d70cc97b44f4b147889264070ac34:log:72', 'hash': '0x5a5b12611d979bcc34844f67622a9c3f999d70cc97b44f4b147889264070ac34', 'from': '0x3b9887accf628f6e9078d93b6f6a81dc25222f8c', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:00:07.000Z'}}, {'blockNum': '0x626bd9', 'uniqueId': '0x688e7316f91424ef7b30f5d3085f75fe10b05e6e9629bbdb8337fdfc0ca47716:log:45', 'hash': '0x688e7316f91424ef7b30f5d3085f75fe10b05e6e9629bbdb8337fdfc0ca47716', 'from': '0x063785406203174d0ac5f8f70eaa69874217a849', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:03:25.000Z'}}, {'blockNum': '0x626be6', 'uniqueId': '0x64beaefa7edfd826e04618eacb15553058e560c81da0f1c449c9f47aae5ac110:log:67', 'hash': '0x64beaefa7edfd826e04618eacb15553058e560c81da0f1c449c9f47aae5ac110', 'from': '0x4d4fdf20f48432b9f5f5ea1ee69e1c4d6b77909e', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:06:16.000Z'}}, {'blockNum': '0x626bf6', 'uniqueId': '0x67b4dcbc9bf9741af434e7d292f6054b9298b5cc88c533765a7e955c06b44819:log:147', 'hash': '0x67b4dcbc9bf9741af434e7d292f6054b9298b5cc88c533765a7e955c06b44819', 'from': '0xd003f0f95d34dd66367fa175bda3ab018232396d', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:08:58.000Z'}}, {'blockNum': '0x626c02', 'uniqueId': '0x058f7473a1323d86ebef29953e76d32bff68fa946894ddcf9945ed930523215d:log:130', 'hash': '0x058f7473a1323d86ebef29953e76d32bff68fa946894ddcf9945ed930523215d', 'from': '0x20d64a6ee3c29ac8def6f5287027a93e4e33f892', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:12:26.000Z'}}, {'blockNum': '0x626c07', 'uniqueId': '0x342d7cc5cad3efddb54241e4325bdac699b0489fd141a6fc6a2d15eeed94c0f4:log:17', 'hash': '0x342d7cc5cad3efddb54241e4325bdac699b0489fd141a6fc6a2d15eeed94c0f4', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b6255df5f50080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:14:28.000Z'}}, {'blockNum': '0x626c0e', 'uniqueId': '0x4755f456ce0498434675289fa238fc20917ce1c4f529b70e690a8704aea626fc:log:182', 'hash': '0x4755f456ce0498434675289fa238fc20917ce1c4f529b70e690a8704aea626fc', 'from': '0x289794e726d67440394da92d5710ac91d34f62a5', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:16:00.000Z'}}, {'blockNum': '0x626c24', 'uniqueId': '0xf5e52693873f2775740ac3b3e674251652eefa6646dccaa823ed149ee92510bd:log:49', 'hash': '0xf5e52693873f2775740ac3b3e674251652eefa6646dccaa823ed149ee92510bd', 'from': '0x424f2cc3cb7dd5236065000488e50a6675dd29ac', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:20:14.000Z'}}, {'blockNum': '0x626c24', 'uniqueId': '0xae41854bd17217644fc20141027a8b9366e28fa4aa442c2615e0307cdff9e3e6:log:74', 'hash': '0xae41854bd17217644fc20141027a8b9366e28fa4aa442c2615e0307cdff9e3e6', 'from': '0xe767f58d7aa8322123d5ac374c49dc3757d51163', 'to': '0x5555a1ba00b4c156744f87596c4f386983510682', 'value': 2200.004999815428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x774333db34c1e7f1de', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:20:14.000Z'}}, {'blockNum': '0x626c33', 'uniqueId': '0x6c242b92739f927602a6416a11b584f9a2deac2084f04e835c1bfd05b74d4c69:log:10', 'hash': '0x6c242b92739f927602a6416a11b584f9a2deac2084f04e835c1bfd05b74d4c69', 'from': '0x5555a1ba00b4c156744f87596c4f386983510682', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2200.004999815428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x774333db34c1e7f1de', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:24:20.000Z'}}, {'blockNum': '0x626c3c', 'uniqueId': '0x4b042a22654070295f75ec28f03fdac80eff1cc64d714e29c3dfc21284254013:log:74', 'hash': '0x4b042a22654070295f75ec28f03fdac80eff1cc64d714e29c3dfc21284254013', 'from': '0x58f6ca07d578254138bbe565fd1d41f4fdbc30eb', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:25:48.000Z'}}, {'blockNum': '0x626ccb', 'uniqueId': '0xf2176548a4ec916c5f12abf85adeb2bb8f36a40829e50057a8c982e1a3d1ec71:log:103', 'hash': '0xf2176548a4ec916c5f12abf85adeb2bb8f36a40829e50057a8c982e1a3d1ec71', 'from': '0x7600d996e6dadfd4d54fe75e65b193ebb2c5b23d', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:57:59.000Z'}}, {'blockNum': '0x626cfb', 'uniqueId': '0xdfa9a8a49f22602c83b86a5f0adc9b83d61ea09a05fd0a846eae461294b398dd:log:5', 'hash': '0xdfa9a8a49f22602c83b86a5f0adc9b83d61ea09a05fd0a846eae461294b398dd', 'from': '0x43f39896a7dd68b2a9973eeda3f6bcbc41486dbb', 'to': '0xbe43cd014b30a1745997ef58b25d2574f4786089', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T07:09:30.000Z'}}, {'blockNum': '0x626d0d', 'uniqueId': '0xc30143328bb2e03a4ad94e4ee38577d054a7ea66d6bd962f067e2858a843ee19:log:1', 'hash': '0xc30143328bb2e03a4ad94e4ee38577d054a7ea66d6bd962f067e2858a843ee19', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T07:14:09.000Z'}}, {'blockNum': '0x626e21', 'uniqueId': '0xc54e24c6141972635027bf174b043ab72e713c4884409dece322cb7dd5d93f74:log:105', 'hash': '0xc54e24c6141972635027bf174b043ab72e713c4884409dece322cb7dd5d93f74', 'from': '0x70aed692b751d3ee391bcc71f739247a036ea146', 'to': '0xd3386456ccf20348067a838c45fcf3e5f90649a7', 'value': 28.88107381821045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0190ce2f9e8244bed4', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T08:20:45.000Z'}}, {'blockNum': '0x626e4b', 'uniqueId': '0x56ae9bb521dbb8a30ecd820a180af78f89982f93a05d813dab5c335d69af0b67:log:1', 'hash': '0x56ae9bb521dbb8a30ecd820a180af78f89982f93a05d813dab5c335d69af0b67', 'from': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 14230.433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03036eedf96f44568000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T08:29:33.000Z'}}, {'blockNum': '0x626fef', 'uniqueId': '0x05f849638ebd43bba49d9ca58736b04ca03bea069cb62604886c4fff2dee8fcc:log:48', 'hash': '0x05f849638ebd43bba49d9ca58736b04ca03bea069cb62604886c4fff2dee8fcc', 'from': '0xc88b4ef6b3b77619f95e4f4989968beb38700daa', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:07:23.000Z'}}, {'blockNum': '0x627004', 'uniqueId': '0x3bab33b7d763d556c5c870c2d5a30ad7920f292dae88ca0ca0d98ee6facc9edc:log:26', 'hash': '0x3bab33b7d763d556c5c870c2d5a30ad7920f292dae88ca0ca0d98ee6facc9edc', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 38999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x084223d8c27142fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:11:18.000Z'}}, {'blockNum': '0x627045', 'uniqueId': '0xc0ed84078570e5ff241efb8d7c43a5bb336cd739d27985501282980c7dbf7ea6:log:4', 'hash': '0xc0ed84078570e5ff241efb8d7c43a5bb336cd739d27985501282980c7dbf7ea6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:24:09.000Z'}}, {'blockNum': '0x627045', 'uniqueId': '0xd220113e946429ca7c55e7eb25075b9f5efa17aae1a2400e535f1a4db31bea61:log:22', 'hash': '0xd220113e946429ca7c55e7eb25075b9f5efa17aae1a2400e535f1a4db31bea61', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x084223d8c27142fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:24:09.000Z'}}, {'blockNum': '0x627084', 'uniqueId': '0xa56697c7c8b5e00a33091d3d2a7af9dcaef0833457be06293bcc5e735c6d2540:log:6', 'hash': '0xa56697c7c8b5e00a33091d3d2a7af9dcaef0833457be06293bcc5e735c6d2540', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:37:33.000Z'}}, {'blockNum': '0x6270c6', 'uniqueId': '0xdb5020db70bd4590bd0306b6a5c113d93ceaa3a10405c3a0f47ff4a790973d2e:log:2', 'hash': '0xdb5020db70bd4590bd0306b6a5c113d93ceaa3a10405c3a0f47ff4a790973d2e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:51:54.000Z'}}, {'blockNum': '0x627105', 'uniqueId': '0x40c46875ba8c887ce1da27285f3bdb4a4b7d3dc938c8cb630e13fdd118d88416:log:62', 'hash': '0x40c46875ba8c887ce1da27285f3bdb4a4b7d3dc938c8cb630e13fdd118d88416', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:07:48.000Z'}}, {'blockNum': '0x627146', 'uniqueId': '0xa85d16209f9b99214526f2b48e29ba4ef5291228002c31ac9c7b5ec8a6630bf6:log:13', 'hash': '0xa85d16209f9b99214526f2b48e29ba4ef5291228002c31ac9c7b5ec8a6630bf6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:22:48.000Z'}}, {'blockNum': '0x62718c', 'uniqueId': '0x210978ffdc7a0d0d93d95946448a487a2e8127c0927981fd61bfd5d91d44b5f4:log:2', 'hash': '0x210978ffdc7a0d0d93d95946448a487a2e8127c0927981fd61bfd5d91d44b5f4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:38:21.000Z'}}, {'blockNum': '0x6271d2', 'uniqueId': '0x204b94df2e4087ca1f1b14f5041b8e2243f838a39627873a53446d89ea8bc09e:log:10', 'hash': '0x204b94df2e4087ca1f1b14f5041b8e2243f838a39627873a53446d89ea8bc09e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:56:00.000Z'}}, {'blockNum': '0x627212', 'uniqueId': '0x8a0e71f5e6eb6d6bbe6efd2228d3c3b4947e8812c143ce7858aec81a1c169117:log:3', 'hash': '0x8a0e71f5e6eb6d6bbe6efd2228d3c3b4947e8812c143ce7858aec81a1c169117', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T12:12:00.000Z'}}, {'blockNum': '0x627255', 'uniqueId': '0xdd7b5f9a64f9bdbf76f25601e0ff78ebf2c6aaf4b50ec7948469298c1c39d313:log:4', 'hash': '0xdd7b5f9a64f9bdbf76f25601e0ff78ebf2c6aaf4b50ec7948469298c1c39d313', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T12:27:16.000Z'}}, {'blockNum': '0x6272ab', 'uniqueId': '0x1342b6b8d40b16929f81ef4c6f4d3578c9a05391310c452a1fa47c14796651f3:log:7', 'hash': '0x1342b6b8d40b16929f81ef4c6f4d3578c9a05391310c452a1fa47c14796651f3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T12:46:39.000Z'}}, {'blockNum': '0x6272f5', 'uniqueId': '0xe11141f6602ee5e43c3ce728e82dbc9fec840e26239257db245da6b50301e414:log:10', 'hash': '0xe11141f6602ee5e43c3ce728e82dbc9fec840e26239257db245da6b50301e414', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:03:25.000Z'}}, {'blockNum': '0x627341', 'uniqueId': '0x9072315a76fe4f5c926544d5e896d15db60c639079516491a1ffa421697fed80:log:1', 'hash': '0x9072315a76fe4f5c926544d5e896d15db60c639079516491a1ffa421697fed80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:20:55.000Z'}}, {'blockNum': '0x62736c', 'uniqueId': '0x6e00ea4768e39b0623dff6bcd3086e2dc04e3bafc9cad15db8c20dc55bb15bc4:log:103', 'hash': '0x6e00ea4768e39b0623dff6bcd3086e2dc04e3bafc9cad15db8c20dc55bb15bc4', 'from': '0x4f3fbe128c7d217ff465ef8e8fbe4f880bcb0bf5', 'to': '0x31a5b730012fa69657bd96d6daca95e643e9bf2b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:30:35.000Z'}}, {'blockNum': '0x627380', 'uniqueId': '0xfc30e7baf9d355c56cff8b6db8550ce4270bef4cf644a1af967d35ba5a252138:log:2', 'hash': '0xfc30e7baf9d355c56cff8b6db8550ce4270bef4cf644a1af967d35ba5a252138', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:37:28.000Z'}}, {'blockNum': '0x627388', 'uniqueId': '0x758d58a9f216e4d71f02167aa2d0d0e556adbd4d7d319b352e9a8a24fea2fbe0:log:14', 'hash': '0x758d58a9f216e4d71f02167aa2d0d0e556adbd4d7d319b352e9a8a24fea2fbe0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 1480.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x503f4a0f08d2be0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:40:25.000Z'}}, {'blockNum': '0x6273cf', 'uniqueId': '0x10b8701418241a494ac7bfbdb2d294418f7ac953d724c70b688debd034521730:log:4', 'hash': '0x10b8701418241a494ac7bfbdb2d294418f7ac953d724c70b688debd034521730', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1480.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x503f4a0f08d2be0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:54:09.000Z'}}, {'blockNum': '0x6273d7', 'uniqueId': '0xa0b59971dda55122358d46c29b67bba70c78667950cc2eed09017c11738f961b:log:0', 'hash': '0xa0b59971dda55122358d46c29b67bba70c78667950cc2eed09017c11738f961b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:57:16.000Z'}}, {'blockNum': '0x6273e8', 'uniqueId': '0x3e2b02c9c7d8da990878cf030480d037327d55707d2d4d626638c97b4f558ce6:log:5', 'hash': '0x3e2b02c9c7d8da990878cf030480d037327d55707d2d4d626638c97b4f558ce6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:01:10.000Z'}}, {'blockNum': '0x627416', 'uniqueId': '0x9fc73ff19d604424c520cdebfec39ac46fe6af7a0826277230f14bb2ebd0193e:log:65', 'hash': '0x9fc73ff19d604424c520cdebfec39ac46fe6af7a0826277230f14bb2ebd0193e', 'from': '0x9c5868b490eab4af7479851be9842929770db405', 'to': '0x37bde7f3739d614da032b2a02c75e273c70a7a86', 'value': 94.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051b49a0e831cc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:13:04.000Z'}}, {'blockNum': '0x62741a', 'uniqueId': '0xcb6be50d5e0307c0c66be56d2646012e4e894326291db9f76f0091830c9bc132:log:4', 'hash': '0xcb6be50d5e0307c0c66be56d2646012e4e894326291db9f76f0091830c9bc132', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:13:56.000Z'}}, {'blockNum': '0x62741b', 'uniqueId': '0x7303c5d92d66cd8f610e83eb3885639069a747b9ed63fee684ffb820d0f3584d:log:13', 'hash': '0x7303c5d92d66cd8f610e83eb3885639069a747b9ed63fee684ffb820d0f3584d', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:14:18.000Z'}}, {'blockNum': '0x627470', 'uniqueId': '0xe8e04a63c18ff9e8dfd9d1ac4d633e5dfc9a641ade54713c8ab5bb6307baee68:log:3', 'hash': '0xe8e04a63c18ff9e8dfd9d1ac4d633e5dfc9a641ade54713c8ab5bb6307baee68', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:33:29.000Z'}}, {'blockNum': '0x6274b0', 'uniqueId': '0xc9f6c696cf396f26dd5c595dd132e172b9d8ac3052a5c6fb1a96755ec49ae3ce:log:3', 'hash': '0xc9f6c696cf396f26dd5c595dd132e172b9d8ac3052a5c6fb1a96755ec49ae3ce', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:51:16.000Z'}}, {'blockNum': '0x6274e2', 'uniqueId': '0xcac64e5eb2e853b1ddd38271d4ecee40855b62ff2a69109a8a1c344925eb5951:log:66', 'hash': '0xcac64e5eb2e853b1ddd38271d4ecee40855b62ff2a69109a8a1c344925eb5951', 'from': '0x6bb5543861cf8d51511f81e9eb1e0b16898b4eb5', 'to': '0x9a0e685b21799e5fbe10d5c8c47ddf45df4fec24', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:01:49.000Z'}}, {'blockNum': '0x62750f', 'uniqueId': '0xf43d6c3d6e250090485a7e3798c9dda726a6f97d30d11ab51102f8e2eabdc4f0:log:4', 'hash': '0xf43d6c3d6e250090485a7e3798c9dda726a6f97d30d11ab51102f8e2eabdc4f0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:12:50.000Z'}}, {'blockNum': '0x627531', 'uniqueId': '0xfe3ec1c190c33cfd94b30750e5325dd7c1b4c21fc37b7486454ee3f83d8800bf:log:89', 'hash': '0xfe3ec1c190c33cfd94b30750e5325dd7c1b4c21fc37b7486454ee3f83d8800bf', 'from': '0x141b4ac269a104c9e7b36e7f25d440d8421fc985', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 3012.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa34948df35d21a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:22:01.000Z'}}, {'blockNum': '0x62754b', 'uniqueId': '0x6168a6a22608838a46be499f5ba37a4ffd18fcba554631ce71b94bf02866a32e:log:74', 'hash': '0x6168a6a22608838a46be499f5ba37a4ffd18fcba554631ce71b94bf02866a32e', 'from': '0x74f320c4785991ee35b89f34744c2e463c65618a', 'to': '0x0d8efaa204f3219ee2782363538461eea98d6c3e', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:27:25.000Z'}}, {'blockNum': '0x62756a', 'uniqueId': '0x3f57ffc30922e3f2863593a42569f4b7a2ff2c51c4ec6693428a02743667cb63:log:3', 'hash': '0x3f57ffc30922e3f2863593a42569f4b7a2ff2c51c4ec6693428a02743667cb63', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:33:59.000Z'}}, {'blockNum': '0x627580', 'uniqueId': '0x53c8b0d5cab7e57cdd6e4f2466366e4085ea1c4750029c9b96906b0df672927a:log:69', 'hash': '0x53c8b0d5cab7e57cdd6e4f2466366e4085ea1c4750029c9b96906b0df672927a', 'from': '0x3324661edc03c120f1257f0657baf7c37e3b2912', 'to': '0xa996691da05207c84f7b0ba4eca2e702c4cd84db', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:38:33.000Z'}}, {'blockNum': '0x627580', 'uniqueId': '0x4322fcfda4b0e41678eddad0e97a8ef3a7f13f2d5663a47dcd40c9c0e36b9ddc:log:117', 'hash': '0x4322fcfda4b0e41678eddad0e97a8ef3a7f13f2d5663a47dcd40c9c0e36b9ddc', 'from': '0x79b0a4775daea12c389055dc6799f7e43c218341', 'to': '0x4d08f3b180122273e9a1b87e5f7e62b1d82c74ee', 'value': 3.63549517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3273df986e7f9400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:38:33.000Z'}}, {'blockNum': '0x6275cb', 'uniqueId': '0x64d350ba1f09b05e2ee66bb3d337dc8d0f22a6259c12b4bfbd9bb8dbfba82937:log:1', 'hash': '0x64d350ba1f09b05e2ee66bb3d337dc8d0f22a6259c12b4bfbd9bb8dbfba82937', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:56:55.000Z'}}, {'blockNum': '0x6275f9', 'uniqueId': '0xa4941b85eda5b7b3c54c848b857d2a23a213c25782ea3c0ab512df7c2d330d4f:log:96', 'hash': '0xa4941b85eda5b7b3c54c848b857d2a23a213c25782ea3c0ab512df7c2d330d4f', 'from': '0xe110624bcfbed0350857ff8d438703720abfa504', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:08:38.000Z'}}, {'blockNum': '0x62760d', 'uniqueId': '0x4417eb535848586e5e797d27ceed2a87a2580724619816fcb3fa4df5d7092689:log:41', 'hash': '0x4417eb535848586e5e797d27ceed2a87a2580724619816fcb3fa4df5d7092689', 'from': '0xfab542916b58eb49ed52b4b38d22e2c8fa5fa51f', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:13:07.000Z'}}, {'blockNum': '0x62761e', 'uniqueId': '0xa6907f54f2bc2832f54d386ca4fb66e47aeea8bdf267a65406beea23d6f0364f:log:52', 'hash': '0xa6907f54f2bc2832f54d386ca4fb66e47aeea8bdf267a65406beea23d6f0364f', 'from': '0x94d21b1c8956c3de1d68111b1511f72c10f75bc5', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:16:21.000Z'}}, {'blockNum': '0x627626', 'uniqueId': '0x892a6c4f4d4ebac6b0c76a1b041a32fc634ab60d710287b5036ba07eae89edae:log:1', 'hash': '0x892a6c4f4d4ebac6b0c76a1b041a32fc634ab60d710287b5036ba07eae89edae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:18:37.000Z'}}, {'blockNum': '0x627631', 'uniqueId': '0xab52ca9ff457eaab9a0de6600f548feb565007efdb153f58519b85d69ce9644b:log:40', 'hash': '0xab52ca9ff457eaab9a0de6600f548feb565007efdb153f58519b85d69ce9644b', 'from': '0x6c489a9abdc79551ba4e6b7b60949877373fcddc', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:21:02.000Z'}}, {'blockNum': '0x62763c', 'uniqueId': '0x61a4797c390c5f746012f9795167104ee156ced4fc1a314482a08594e53b0891:log:16', 'hash': '0x61a4797c390c5f746012f9795167104ee156ced4fc1a314482a08594e53b0891', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:24:12.000Z'}}, {'blockNum': '0x62764c', 'uniqueId': '0xa270d2f45a64d232b49ee70b18544d26f69cd5ce02470596551c6ce93a4f64d3:log:141', 'hash': '0xa270d2f45a64d232b49ee70b18544d26f69cd5ce02470596551c6ce93a4f64d3', 'from': '0xb40bf34f87a00ef7bab9da3cca25de872abd2754', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:28:16.000Z'}}, {'blockNum': '0x62764f', 'uniqueId': '0xb9215964df9178f1563e67e509310199bfca00b1044e43d706a988bd1ed9a7f7:log:170', 'hash': '0xb9215964df9178f1563e67e509310199bfca00b1044e43d706a988bd1ed9a7f7', 'from': '0x31281157868fb72197711920e79ecbc2c18bf502', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:28:59.000Z'}}, {'blockNum': '0x627667', 'uniqueId': '0xc25fc80506423a8ef1003f6d3d5d1fa03f01c6a97965e3e1c2b0a4e0bdb5634a:log:170', 'hash': '0xc25fc80506423a8ef1003f6d3d5d1fa03f01c6a97965e3e1c2b0a4e0bdb5634a', 'from': '0x492be2803fe513b4ccafde5f752744cc7d477932', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:33:56.000Z'}}, {'blockNum': '0x627676', 'uniqueId': '0x70fbdac1e73d0be8745a1b2b89a93edce7c5352d1b5433ee9b12f9e9edd375c2:log:53', 'hash': '0x70fbdac1e73d0be8745a1b2b89a93edce7c5352d1b5433ee9b12f9e9edd375c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:39:12.000Z'}}, {'blockNum': '0x62767e', 'uniqueId': '0x7202d3575d5a1e35b2b53dd0fd444a5f750be6890a35fb2cc7c4ca0b12594382:log:309', 'hash': '0x7202d3575d5a1e35b2b53dd0fd444a5f750be6890a35fb2cc7c4ca0b12594382', 'from': '0x5bf13e3867b2caed4f158a773d5a8ae651080992', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:41:48.000Z'}}, {'blockNum': '0x62768c', 'uniqueId': '0xf9755cd4c858155c114ab717a25101735d79044301891d96adc0accee82cdb6b:log:131', 'hash': '0xf9755cd4c858155c114ab717a25101735d79044301891d96adc0accee82cdb6b', 'from': '0x7f37a05c4c56058ff9a58fd2f06faf3b916bcc4b', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:44:51.000Z'}}, {'blockNum': '0x6276a0', 'uniqueId': '0x06113a9297835bb4c06b2311218cfd7fec08328873abb0e2b1a044493a3b7334:log:216', 'hash': '0x06113a9297835bb4c06b2311218cfd7fec08328873abb0e2b1a044493a3b7334', 'from': '0xa29bbf9a52c9a7e36949f8d97a5cc08c886ecde7', 'to': '0x99f69c90e050347da797942929d15e746f22962c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:49:38.000Z'}}, {'blockNum': '0x6276b1', 'uniqueId': '0x4b91dcb65fc47fca4dd2a3cb236503656d873645b05d298466e9d86bd391fc10:log:130', 'hash': '0x4b91dcb65fc47fca4dd2a3cb236503656d873645b05d298466e9d86bd391fc10', 'from': '0x5cbfc7e88d2af99e0748c78cc68dacaf4fd1f89a', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:52:49.000Z'}}, {'blockNum': '0x6276b6', 'uniqueId': '0x8eee0334344dcb377a6f94bd90ee2ff4dd80970f0494410dbca899bcbe996dc9:log:6', 'hash': '0x8eee0334344dcb377a6f94bd90ee2ff4dd80970f0494410dbca899bcbe996dc9', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09c2007651b2500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:54:22.000Z'}}, {'blockNum': '0x6276d5', 'uniqueId': '0x20318ffe2ad3f7a716ac84250f015ef3f794f7aef876f96de5ecb7060ff5697b:log:59', 'hash': '0x20318ffe2ad3f7a716ac84250f015ef3f794f7aef876f96de5ecb7060ff5697b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:02:52.000Z'}}, {'blockNum': '0x6276e5', 'uniqueId': '0x40e86bba337df941a05884b5668c994948b4b8ef4970fa751616a1b0138ded2c:log:113', 'hash': '0x40e86bba337df941a05884b5668c994948b4b8ef4970fa751616a1b0138ded2c', 'from': '0xbd3a561344044360f960484c13425e1ce279d09a', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:06:08.000Z'}}, {'blockNum': '0x627719', 'uniqueId': '0x53bd9989005063cf28310e5209190e9360b70480e6c66ab011b749f31822b51a:log:18', 'hash': '0x53bd9989005063cf28310e5209190e9360b70480e6c66ab011b749f31822b51a', 'from': '0x4d32b5adefc491b90462eeb023a587936f4e7c93', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:18:53.000Z'}}, {'blockNum': '0x627729', 'uniqueId': '0xd039ea958a46220d625bb1a68d3c5ca6fbb00b057cb7bcdfb1a7972f489f4992:log:167', 'hash': '0xd039ea958a46220d625bb1a68d3c5ca6fbb00b057cb7bcdfb1a7972f489f4992', 'from': '0xd1370f43af8c96294ed5a0c4ce49d69a470dbea3', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:22:53.000Z'}}, {'blockNum': '0x62773b', 'uniqueId': '0x7d870bfec137eb1f1e8b5b6410d1d3d29549ed787322c0957516ca5cb87f50af:log:0', 'hash': '0x7d870bfec137eb1f1e8b5b6410d1d3d29549ed787322c0957516ca5cb87f50af', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:26:26.000Z'}}, {'blockNum': '0x627754', 'uniqueId': '0x11506e98aa3e53881cae9bdde551ad8eba7c1025167dfe81992730331fe0b268:log:49', 'hash': '0x11506e98aa3e53881cae9bdde551ad8eba7c1025167dfe81992730331fe0b268', 'from': '0xb8664fa70356eba41b1512d214f3fe1e568ae30e', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:32:03.000Z'}}, {'blockNum': '0x62775c', 'uniqueId': '0x3cddce7db79884000632390625791e3bf49ed56487a7a8ab142b96e2d3ef1d42:log:7', 'hash': '0x3cddce7db79884000632390625791e3bf49ed56487a7a8ab142b96e2d3ef1d42', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:34:19.000Z'}}, {'blockNum': '0x62776c', 'uniqueId': '0xc1f34df3c631793d2c58baf8ad42663f1098beb61d04c8ce9488f65eb7a3b9dd:log:7', 'hash': '0xc1f34df3c631793d2c58baf8ad42663f1098beb61d04c8ce9488f65eb7a3b9dd', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0xd5fbb6a830a39b94d0ef0fd91a0479be30454a19', 'value': 26.832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01745e69d685480000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:36:25.000Z'}}, {'blockNum': '0x627774', 'uniqueId': '0xb1d98a5739e61fd8975dc226e08866b71972f8f483a6930afa94361d82e1501f:log:51', 'hash': '0xb1d98a5739e61fd8975dc226e08866b71972f8f483a6930afa94361d82e1501f', 'from': '0x78709376b18feff6ad1f57cc790462e84ce04b66', 'to': '0xabc04f891ccddaa1c632b49ccd60645f11705ac0', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:38:06.000Z'}}, {'blockNum': '0x627777', 'uniqueId': '0xcb7f1f896a088c8d8b157c779ccb27923a0d4df8139e7ab37e16e369135806b7:log:68', 'hash': '0xcb7f1f896a088c8d8b157c779ccb27923a0d4df8139e7ab37e16e369135806b7', 'from': '0x9c5352b35ddbae83516343e7e1fb030f2b0d367b', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:39:57.000Z'}}, {'blockNum': '0x627780', 'uniqueId': '0xfa137c7aee21ec1074fa2daccd574756bf8c5866acfd30a35df81feecc910bd6:log:51', 'hash': '0xfa137c7aee21ec1074fa2daccd574756bf8c5866acfd30a35df81feecc910bd6', 'from': '0x3b91deaf0f6df4205258080e63e4f5c6630776a7', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:42:25.000Z'}}, {'blockNum': '0x627782', 'uniqueId': '0x49124190f6f3ee6f8015f1e6f7f8b135b1d12ebaf92b7752f33ea66ef74450d4:log:100', 'hash': '0x49124190f6f3ee6f8015f1e6f7f8b135b1d12ebaf92b7752f33ea66ef74450d4', 'from': '0xabc04f891ccddaa1c632b49ccd60645f11705ac0', 'to': '0x72c4d247835f8f18489cb463394ee412db35c844', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:42:31.000Z'}}, {'blockNum': '0x62778c', 'uniqueId': '0xe04f3c6faf4f756f23335a75a37336f78644c3347a225f79f7ba9de9231db894:log:90', 'hash': '0xe04f3c6faf4f756f23335a75a37336f78644c3347a225f79f7ba9de9231db894', 'from': '0xf629e14fcff8c29178d4383b8fe52137a3af06ef', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:44:34.000Z'}}, {'blockNum': '0x627797', 'uniqueId': '0x7489f44e316a73a5895a56bfc314aa27d4445f501006792c22756c862cdc675e:log:82', 'hash': '0x7489f44e316a73a5895a56bfc314aa27d4445f501006792c22756c862cdc675e', 'from': '0xfacc884c4b663fb6aa41af19f96642b1747f88fd', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:47:11.000Z'}}, {'blockNum': '0x6277a0', 'uniqueId': '0xa06d9cd94838c3b615f3e3147fa28ae61ff44bd3d19edaaf6fc099db84e0a08c:log:3', 'hash': '0xa06d9cd94838c3b615f3e3147fa28ae61ff44bd3d19edaaf6fc099db84e0a08c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:48:36.000Z'}}, {'blockNum': '0x6277a3', 'uniqueId': '0x0e68495479948ace9cba61ebe47b9339bbf251860b7645651241f30940f3e4f0:log:51', 'hash': '0x0e68495479948ace9cba61ebe47b9339bbf251860b7645651241f30940f3e4f0', 'from': '0xb76653e84058213007584072ebe121cd7f8b5175', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:49:32.000Z'}}, {'blockNum': '0x6277bb', 'uniqueId': '0x10b99e7d6d9b469a2205c1832695852a495cacda548a286c8e00ec51588f01b7:log:5', 'hash': '0x10b99e7d6d9b469a2205c1832695852a495cacda548a286c8e00ec51588f01b7', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:54:15.000Z'}}, {'blockNum': '0x6277bb', 'uniqueId': '0xc20723ea1cee744e54f4bce02bef35b6773b8720798cb8ddfaeb51d7f66d6e84:log:62', 'hash': '0xc20723ea1cee744e54f4bce02bef35b6773b8720798cb8ddfaeb51d7f66d6e84', 'from': '0x05d1f9f849bdc2dddc5e55aa263dd8f5afb28d72', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:54:15.000Z'}}, {'blockNum': '0x6277cb', 'uniqueId': '0xd0e65dab3f97241d3d373e67bfb0d5008a6d62a1950cea6178c6ed845c2ee3df:log:80', 'hash': '0xd0e65dab3f97241d3d373e67bfb0d5008a6d62a1950cea6178c6ed845c2ee3df', 'from': '0x5d35cd456ae38d529239c2d07c0331bd40e2bef4', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:58:12.000Z'}}, {'blockNum': '0x6277e9', 'uniqueId': '0xbc610b9b299bda047a4cff3a1b6026ae363b0f458759499d943fc1c37a158a69:log:3', 'hash': '0xbc610b9b299bda047a4cff3a1b6026ae363b0f458759499d943fc1c37a158a69', 'from': '0x72c4d247835f8f18489cb463394ee412db35c844', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:04:15.000Z'}}, {'blockNum': '0x6277f8', 'uniqueId': '0x7dd66e508b0f6ca5a80357dd6ad7f8409080fd1e872f23702a26da76b041f4ce:log:4', 'hash': '0x7dd66e508b0f6ca5a80357dd6ad7f8409080fd1e872f23702a26da76b041f4ce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:08:12.000Z'}}, {'blockNum': '0x62783d', 'uniqueId': '0x8bd1327734fa678f12b179fd70e3c58de2f21be938d4aba2818288272de68ca8:log:30', 'hash': '0x8bd1327734fa678f12b179fd70e3c58de2f21be938d4aba2818288272de68ca8', 'from': '0xc909077f26302c3c5b57d6d52464e79543e61b5d', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:24:16.000Z'}}, {'blockNum': '0x627866', 'uniqueId': '0x0165269f7e1a1f5eb75772f92c50d71b215b77f3ab8b45b198b6c865dbfa6759:log:7', 'hash': '0x0165269f7e1a1f5eb75772f92c50d71b215b77f3ab8b45b198b6c865dbfa6759', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:32:10.000Z'}}, {'blockNum': '0x627893', 'uniqueId': '0x38607d53ecc9601ebc72519b28f05ba9d6769f62a007415a77aeeb4a7d57ba7e:log:30', 'hash': '0x38607d53ecc9601ebc72519b28f05ba9d6769f62a007415a77aeeb4a7d57ba7e', 'from': '0x455a591c8bc88257a79f476f84c0a908de926023', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:42:01.000Z'}}, {'blockNum': '0x6278b1', 'uniqueId': '0xbf940a013ac83bd16791b496eca841b9459a3be27c4f7c727689b8cdd92b9616:log:1', 'hash': '0xbf940a013ac83bd16791b496eca841b9459a3be27c4f7c727689b8cdd92b9616', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd0f683e73b07ed0f4970e98e0b7eadbd5a978452', 'value': 121.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x069040cf04646b8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:49:45.000Z'}}, {'blockNum': '0x6278d0', 'uniqueId': '0x5651fc6bd6e2c9605a9b07d625d4733f1a0b716774a0b9a01e165d726ab87c68:log:1', 'hash': '0x5651fc6bd6e2c9605a9b07d625d4733f1a0b716774a0b9a01e165d726ab87c68', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:54:10.000Z'}}, {'blockNum': '0x6278f1', 'uniqueId': '0xd71d11279f809e8a289774b8561be544a4c5f8bba391d1df64377a631b5b4a7d:log:5', 'hash': '0xd71d11279f809e8a289774b8561be544a4c5f8bba391d1df64377a631b5b4a7d', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'value': 1481.3061343159159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x504d4090dd333cff92', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:01:28.000Z'}}, {'blockNum': '0x6278f7', 'uniqueId': '0xe08987ce45e7a49a8a9c73c2945f10e936ebade33490010aacffa1069c59cbb3:log:2', 'hash': '0xe08987ce45e7a49a8a9c73c2945f10e936ebade33490010aacffa1069c59cbb3', 'from': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'to': '0x1aec17c86022d023edc04a6816d2f99ab7409038', 'value': 1481.3061343159159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x504d4090dd333cff92', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:02:53.000Z'}}, {'blockNum': '0x627904', 'uniqueId': '0x3857e14240fe41e02c45deb13c6a69c014b1dacbe1a1dddc4c40c1aaa03a131d:log:120', 'hash': '0x3857e14240fe41e02c45deb13c6a69c014b1dacbe1a1dddc4c40c1aaa03a131d', 'from': '0x2796df0c73022291da2e42d71e53d15980c41329', 'to': '0x382e9de4afff488272a6a866c2e3a5094f42b6bd', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:06:05.000Z'}}, {'blockNum': '0x62791e', 'uniqueId': '0xae5213140cf1287a8cf6a258fb68f0bee641d69a62b842af84d007b24aedb28b:log:126', 'hash': '0xae5213140cf1287a8cf6a258fb68f0bee641d69a62b842af84d007b24aedb28b', 'from': '0x78709376b18feff6ad1f57cc790462e84ce04b66', 'to': '0x72c4d247835f8f18489cb463394ee412db35c844', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:12:48.000Z'}}, {'blockNum': '0x627924', 'uniqueId': '0x801e1007ceb0c7b93a94efe5cb9b0ff014b9119f11d8951101704cc3f9e15b1a:log:19', 'hash': '0x801e1007ceb0c7b93a94efe5cb9b0ff014b9119f11d8951101704cc3f9e15b1a', 'from': '0x1aec17c86022d023edc04a6816d2f99ab7409038', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1481.3061343159159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x504d4090dd333cff92', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:14:24.000Z'}}, {'blockNum': '0x627927', 'uniqueId': '0x9aa2d803d3bdffcaebf42fdae2a0d40abf06acf0a0a029220f881b7fb74369cb:log:6', 'hash': '0x9aa2d803d3bdffcaebf42fdae2a0d40abf06acf0a0a029220f881b7fb74369cb', 'from': '0x71481c3ac7853ef63c87f0e9f91b6a5e16e04438', 'to': '0xf91af607d4482d1ae38339e91318ebaf1fe939a4', 'value': 12476.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02a458d4f13323980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:15:56.000Z'}}, {'blockNum': '0x627940', 'uniqueId': '0x92b7979c4fbd45f919ac94f6d137f99ff882e5a231867451591a6e4dbf95aff5:log:56', 'hash': '0x92b7979c4fbd45f919ac94f6d137f99ff882e5a231867451591a6e4dbf95aff5', 'from': '0x6f16336a6a04b13fc9df6228f52951947296574c', 'to': '0xd392167324c6ffdf5c5accdfaaac70fbd780f9d0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:20:48.000Z'}}, {'blockNum': '0x627944', 'uniqueId': '0xde20a3140378a3bfd9b7a8b6ecf9538a66448635af0a448ba30a73a2f569a365:log:11', 'hash': '0xde20a3140378a3bfd9b7a8b6ecf9538a66448635af0a448ba30a73a2f569a365', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:22:08.000Z'}}, {'blockNum': '0x627945', 'uniqueId': '0x35fe7153e368a16cf75406265ba02313ff3c47535527c0c88adc95640d06ff85:log:45', 'hash': '0x35fe7153e368a16cf75406265ba02313ff3c47535527c0c88adc95640d06ff85', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd5fbb6a830a39b94d0ef0fd91a0479be30454a19', 'value': 2248.56116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79e50dfda1e4488000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:22:15.000Z'}}, {'blockNum': '0x62794a', 'uniqueId': '0x63ff197b52c00ccc2a4e9bede428165e3389090988a10d0842babb575b495a19:log:31', 'hash': '0x63ff197b52c00ccc2a4e9bede428165e3389090988a10d0842babb575b495a19', 'from': '0x41ade1cd005741bd093b4df7391fdd8347dc42ee', 'to': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'value': 361.85862523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x139dcc1670015a8c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:23:20.000Z'}}, {'blockNum': '0x62794e', 'uniqueId': '0x184ff3642dac44ace1cb94a8afc655d60b59ec913fedb720f11a5ec66c9ffa0f:log:19', 'hash': '0x184ff3642dac44ace1cb94a8afc655d60b59ec913fedb720f11a5ec66c9ffa0f', 'from': '0x72c4d247835f8f18489cb463394ee412db35c844', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:24:19.000Z'}}, {'blockNum': '0x627954', 'uniqueId': '0x69520864ecce076dc28cba37e4320734446e1247b14ad6f9b1889754034775dc:log:53', 'hash': '0x69520864ecce076dc28cba37e4320734446e1247b14ad6f9b1889754034775dc', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x09c4c337a057699579b147afd1b98658a60b11c5', 'value': 54.10736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02eee3f53f362e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:26:25.000Z'}}, {'blockNum': '0x627957', 'uniqueId': '0xae08682e3f520877cdd2eef1b606627108d59d30eec764904bbdbf8c3c4b3ebc:log:27', 'hash': '0xae08682e3f520877cdd2eef1b606627108d59d30eec764904bbdbf8c3c4b3ebc', 'from': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'to': '0x2a1c814f53879779a4ebacef52cb3a9311ae9151', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:26:46.000Z'}}, {'blockNum': '0x627964', 'uniqueId': '0x32cec0aa60ff9e3cc063372dc61c44cd914c4c1fd119bb8d117140610dc2fd50:log:7', 'hash': '0x32cec0aa60ff9e3cc063372dc61c44cd914c4c1fd119bb8d117140610dc2fd50', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xbcf3f0b2ea9f3d963f8702f22de8619552bfebc4', 'value': 213.52508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b934178f4a4dd8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:30:41.000Z'}}, {'blockNum': '0x627981', 'uniqueId': '0xce1b3adc22c6386de6ff88c5bed01265b1b8f1a0e07878f8388d94bb4c521d40:log:276', 'hash': '0xce1b3adc22c6386de6ff88c5bed01265b1b8f1a0e07878f8388d94bb4c521d40', 'from': '0xfcbeb5ef8770b1e5f73a824a4ae2f449f78df4b7', 'to': '0x8c7451834b0b2d36f85d7c0eae59e5cdc0060884', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:36:07.000Z'}}, {'blockNum': '0x6279a6', 'uniqueId': '0xf24049b458a7963bd0fbbf9c86a256d207cf38abd69c7e327fd273477d5afc42:log:4', 'hash': '0xf24049b458a7963bd0fbbf9c86a256d207cf38abd69c7e327fd273477d5afc42', 'from': '0x2a1c814f53879779a4ebacef52cb3a9311ae9151', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b6255df5f50080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:44:15.000Z'}}, {'blockNum': '0x6279b7', 'uniqueId': '0xa338f68d37f46430d5fbe4c754c2986dda4aea4c7ec1d1986ea783e086d26d13:log:254', 'hash': '0xa338f68d37f46430d5fbe4c754c2986dda4aea4c7ec1d1986ea783e086d26d13', 'from': '0x3324661edc03c120f1257f0657baf7c37e3b2912', 'to': '0x70af6f073971e208ba49fe33b44ae071df21a97a', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:47:18.000Z'}}, {'blockNum': '0x6279ba', 'uniqueId': '0x901417706ac0083931e549f17bc99384817318fb01b2e2017680c7dbb3a79fe5:log:0', 'hash': '0x901417706ac0083931e549f17bc99384817318fb01b2e2017680c7dbb3a79fe5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa6a53c3f278d94fe7c0a47c8cfcbafd0e083bf4f', 'value': 6332.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x015744ed8e9108840000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:47:44.000Z'}}, {'blockNum': '0x6279ba', 'uniqueId': '0x489b9956b7b46bf0329878e3a998ff6c84a2bde673278fc7752b9711d9970d1f:log:1', 'hash': '0x489b9956b7b46bf0329878e3a998ff6c84a2bde673278fc7752b9711d9970d1f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:47:44.000Z'}}, {'blockNum': '0x6279c8', 'uniqueId': '0x3ce6b1c4b1f8592a7b78a3b1a83609156e29e2b35c76e9c4baaeeea617aaf6fe:log:28', 'hash': '0x3ce6b1c4b1f8592a7b78a3b1a83609156e29e2b35c76e9c4baaeeea617aaf6fe', 'from': '0xd5fbb6a830a39b94d0ef0fd91a0479be30454a19', 'to': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'value': 2276.8629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7b6dd1f8369dbf4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:51:15.000Z'}}, {'blockNum': '0x6279e4', 'uniqueId': '0x6d0be1790ea54ceee430d7abb70135505d9ce630b60395c56bd8d17dbb84f7d9:log:83', 'hash': '0x6d0be1790ea54ceee430d7abb70135505d9ce630b60395c56bd8d17dbb84f7d9', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0x68ebc3366b6b31101360831c6271c856d910882e', 'value': 2276.8629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7b6dd1f8369dbf4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:58:16.000Z'}}, {'blockNum': '0x6279e5', 'uniqueId': '0xb2d33b3c54ae7546a1e8e72f60117735f96d7297dbebbbd5ac97e108481b9c00:log:88', 'hash': '0xb2d33b3c54ae7546a1e8e72f60117735f96d7297dbebbbd5ac97e108481b9c00', 'from': '0x85c6118b6bddf9ff14790cc8b9525a2bb24c4cd7', 'to': '0xf3e06f567860f59e26289f76fbdccfd4a192f941', 'value': 1000.0017108302231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635cfc1c3925941c7', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:58:26.000Z'}}, {'blockNum': '0x627a09', 'uniqueId': '0x2adad8d851cfb15467c0facf126c65f1d61e021ea35b55b68b38a747d170f8d2:log:8', 'hash': '0x2adad8d851cfb15467c0facf126c65f1d61e021ea35b55b68b38a747d170f8d2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2245.76116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79be326477a9308000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:07:46.000Z'}}, {'blockNum': '0x627a11', 'uniqueId': '0x36a171959db3036ea69ce4b391ad86f980b35e1a5fd1b6923a81d67e89c0030f:log:0', 'hash': '0x36a171959db3036ea69ce4b391ad86f980b35e1a5fd1b6923a81d67e89c0030f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 775.99623065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a111c6c5f37574400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:09:57.000Z'}}, {'blockNum': '0x627a13', 'uniqueId': '0xa0ed805269d4c2e4de2c01b6acb2a7657f0dd1486438673dafb337b07f549d52:log:13', 'hash': '0xa0ed805269d4c2e4de2c01b6acb2a7657f0dd1486438673dafb337b07f549d52', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa2a9c5915e59917136929844f1383e81a0921389', 'value': 1190.6084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x408b02bfafb4310000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:10:13.000Z'}}, {'blockNum': '0x627a1b', 'uniqueId': '0x5eee560ffe79e4cad2705eb926293a71922e543a808d1f22f20421f3373ef3ba:log:94', 'hash': '0x5eee560ffe79e4cad2705eb926293a71922e543a808d1f22f20421f3373ef3ba', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 775.99623065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a111c6c5f37574400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:12:19.000Z'}}, {'blockNum': '0x627a31', 'uniqueId': '0x90228175fece24fc26bd133edca0762111e81635654ec94f629c755acb6b0b9f:log:153', 'hash': '0x90228175fece24fc26bd133edca0762111e81635654ec94f629c755acb6b0b9f', 'from': '0x68ebc3366b6b31101360831c6271c856d910882e', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2276.8629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7b6dd1f8369dbf4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:17:32.000Z'}}, {'blockNum': '0x627a31', 'uniqueId': '0xc1c972db694572e339eece0dc1e4542919a8aa2ff4d4107d1fcddb07984f9119:log:154', 'hash': '0xc1c972db694572e339eece0dc1e4542919a8aa2ff4d4107d1fcddb07984f9119', 'from': '0xf3e06f567860f59e26289f76fbdccfd4a192f941', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1000.0017108302231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635cfc1c3925941c7', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:17:32.000Z'}}, {'blockNum': '0x627a37', 'uniqueId': '0x692f1945418c662dbae25322a5752be848b73621ca56f64e51c9790922eefb91:log:4', 'hash': '0x692f1945418c662dbae25322a5752be848b73621ca56f64e51c9790922eefb91', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:19:44.000Z'}}, {'blockNum': '0x627a40', 'uniqueId': '0xf2c59fea001bb801a818749c47f08963d2ad27788938076dbfcd1dc84bc42eb0:log:0', 'hash': '0xf2c59fea001bb801a818749c47f08963d2ad27788938076dbfcd1dc84bc42eb0', 'from': '0x4976f33befd1297f244a442e996f67aa274e7178', 'to': '0xf91af607d4482d1ae38339e91318ebaf1fe939a4', 'value': 1454.313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4ed6a5b03830aa8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:21:34.000Z'}}, {'blockNum': '0x627a45', 'uniqueId': '0x02f3b3a3447619b4e16311a910f388f2f25933f3529208f3f22f61e95d4bfdbf:log:148', 'hash': '0x02f3b3a3447619b4e16311a910f388f2f25933f3529208f3f22f61e95d4bfdbf', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4ff63af04d0ba0cef0ee98c288e41f6c4f122d1', 'value': 123.81193309035564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06b63c592975148876', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:23:05.000Z'}}, {'blockNum': '0x627a4c', 'uniqueId': '0x9e8df3c929cfbce0179dc0f80220d3910be0de8d21d029181136ba69364adcba:log:11', 'hash': '0x9e8df3c929cfbce0179dc0f80220d3910be0de8d21d029181136ba69364adcba', 'from': '0xa2a9c5915e59917136929844f1383e81a0921389', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1190.6084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x408b02bfafb4310000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:24:19.000Z'}}, {'blockNum': '0x627a4e', 'uniqueId': '0xcb812cc069fc73befc1eb5fa022688af45c82e8a9ebc8965e6a9103567f4b819:log:25', 'hash': '0xcb812cc069fc73befc1eb5fa022688af45c82e8a9ebc8965e6a9103567f4b819', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4ff63af04d0ba0cef0ee98c288e41f6c4f122d1', 'value': 87.73348210088984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04c18bf1238ba17504', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:24:37.000Z'}}, {'blockNum': '0x627a59', 'uniqueId': '0xafbb2a1cbeda1dba6d750f161c3223262f3ab1aae73ca7400411422e0c7c5a0d:log:42', 'hash': '0xafbb2a1cbeda1dba6d750f161c3223262f3ab1aae73ca7400411422e0c7c5a0d', 'from': '0x7aa2a3d0b40ea85e57bc91fbe84216a9365f469c', 'to': '0x130bc598e741a848d5e6144721b9628821744f7a', 'value': 619.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2193e6da4734f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:26:45.000Z'}}, {'blockNum': '0x627a7e', 'uniqueId': '0xfa31c5beda94cf428b42e9eb92e63186d4d36b2b8ca4a6522903f7f5cf1c0260:log:0', 'hash': '0xfa31c5beda94cf428b42e9eb92e63186d4d36b2b8ca4a6522903f7f5cf1c0260', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2245.76116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79be326477a9308000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:35:00.000Z'}}, {'blockNum': '0x627a7e', 'uniqueId': '0x86e753ae4556d269d54b210812c38b949ef0267ad029aa539a9176672458f6f2:log:1', 'hash': '0x86e753ae4556d269d54b210812c38b949ef0267ad029aa539a9176672458f6f2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2e5cf5577a1c1abd888162b8fe6f40dec8cf1fd0', 'value': 57.66854386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03204fd31981558800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:35:00.000Z'}}, {'blockNum': '0x627abc', 'uniqueId': '0xff8f7640b9d3a1ec3056c7313ae5368b5574d4162bf0906b575b3e53f5ebc7cf:log:2', 'hash': '0xff8f7640b9d3a1ec3056c7313ae5368b5574d4162bf0906b575b3e53f5ebc7cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:49:14.000Z'}}, {'blockNum': '0x627ad8', 'uniqueId': '0x46bdaff994fa8fac41a593666c8ec76852a7220f40c5f9d2ab63b506e4ef778d:log:2', 'hash': '0x46bdaff994fa8fac41a593666c8ec76852a7220f40c5f9d2ab63b506e4ef778d', 'from': '0x130bc598e741a848d5e6144721b9628821744f7a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 619.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2193e6da4734f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:54:12.000Z'}}, {'blockNum': '0x627b14', 'uniqueId': '0xa7708e0aa62a42bab938ac26aebdada6595325dd6fb417fd4f7079668e63e609:log:0', 'hash': '0xa7708e0aa62a42bab938ac26aebdada6595325dd6fb417fd4f7079668e63e609', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2245.76116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79be326477a9308000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:06:55.000Z'}}, {'blockNum': '0x627b1f', 'uniqueId': '0x3c76812b6168ca86cfa915087fe0909c287d3e1fb57faa9b01accc861acf03ae:log:4', 'hash': '0x3c76812b6168ca86cfa915087fe0909c287d3e1fb57faa9b01accc861acf03ae', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeea42663d4ea81126008a9933bf652fa7d65303e', 'value': 1070.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3a0f0e239eb8420000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:09:15.000Z'}}, {'blockNum': '0x627b4e', 'uniqueId': '0xf2ec33d235a4c6bbb05ad678887a9b656a9881526ee30e1d6b9c08edf9f612bc:log:3', 'hash': '0xf2ec33d235a4c6bbb05ad678887a9b656a9881526ee30e1d6b9c08edf9f612bc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 3731.284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xca45f7b4cf62a20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:19:07.000Z'}}, {'blockNum': '0x627b52', 'uniqueId': '0x656f1a7afb2f889ff51a050585d600120851550eb34354f6e30f3f2f0ae6b422:log:17', 'hash': '0x656f1a7afb2f889ff51a050585d600120851550eb34354f6e30f3f2f0ae6b422', 'from': '0x87ab4cdcedd6ae52a55546b511597857d943ce24', 'to': '0x1012dd462d68109256635a74f1a84f4b6c34b6cf', 'value': 6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01748828669564600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:20:06.000Z'}}, {'blockNum': '0x627b5a', 'uniqueId': '0x763a97335bb10ec785500dcc82403a3559bfca5c51a2e5d503fa5170b75ad151:log:5', 'hash': '0x763a97335bb10ec785500dcc82403a3559bfca5c51a2e5d503fa5170b75ad151', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:22:36.000Z'}}, {'blockNum': '0x627b87', 'uniqueId': '0x2a128b4bb7ed9ff09ab79ecb5c78af53f04772b0f4a0390c94957d061e8c1dcf:log:3', 'hash': '0x2a128b4bb7ed9ff09ab79ecb5c78af53f04772b0f4a0390c94957d061e8c1dcf', 'from': '0x1012dd462d68109256635a74f1a84f4b6c34b6cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01748828669564600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:34:04.000Z'}}, {'blockNum': '0x627b8e', 'uniqueId': '0x965141bb4ab1c056bf160a51088bb1bac6825e993ca25e5b76d30ae3974aac5d:log:4', 'hash': '0x965141bb4ab1c056bf160a51088bb1bac6825e993ca25e5b76d30ae3974aac5d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'value': 480.743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a0fa63b6a179d8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:35:49.000Z'}}, {'blockNum': '0x627bb4', 'uniqueId': '0x3746114baed199913d421456134a59d16af2d24f2220c45aac4a71c6913c88d4:log:1', 'hash': '0x3746114baed199913d421456134a59d16af2d24f2220c45aac4a71c6913c88d4', 'from': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 480.743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a0fa63b6a179d8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:44:06.000Z'}}, {'blockNum': '0x627bc6', 'uniqueId': '0x43d9e4d78554ce816c287c4aea27ba29e3e311f0a9d382afc02961d2013485fb:log:2', 'hash': '0x43d9e4d78554ce816c287c4aea27ba29e3e311f0a9d382afc02961d2013485fb', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 3059.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa5e1c7e885415b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:49:25.000Z'}}, {'blockNum': '0x627c12', 'uniqueId': '0x1f1f5fe25472293137aefbf6814c7594d2c5c11efaaa09ae0ebc733fd8d5f88b:log:22', 'hash': '0x1f1f5fe25472293137aefbf6814c7594d2c5c11efaaa09ae0ebc733fd8d5f88b', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3059.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa5e1c7e885415b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:03:58.000Z'}}, {'blockNum': '0x627c15', 'uniqueId': '0xbe99987192a75013939f8e64dd68e48ae59b990306fcb278beaef77021eb6e51:log:87', 'hash': '0xbe99987192a75013939f8e64dd68e48ae59b990306fcb278beaef77021eb6e51', 'from': '0x4bf321cccee1961b344821c788b1b62965afbb65', 'to': '0xc4f47c5cd99fc01f4c47fb1743a39e880fd2d5aa', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:05:34.000Z'}}, {'blockNum': '0x627c28', 'uniqueId': '0xfc26fb8d2621cd80d92257d3973c867e0014ec951528838e6129764a2cd9ef8c:log:119', 'hash': '0xfc26fb8d2621cd80d92257d3973c867e0014ec951528838e6129764a2cd9ef8c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x813437c1f305f4f55ff12119ddfef6a368849e65', 'value': 100.5206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x057300e91e79218000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:10:10.000Z'}}, {'blockNum': '0x627c7e', 'uniqueId': '0x63cfe1156c089be80df8cafe6a1cf7d5c61b24ed12cdedc24cbe2be317117233:log:4', 'hash': '0x63cfe1156c089be80df8cafe6a1cf7d5c61b24ed12cdedc24cbe2be317117233', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:32:38.000Z'}}, {'blockNum': '0x627c83', 'uniqueId': '0x1172e2e77d97971f8806d6c76984ea0f483b1df311fa8eea4f37380431107b77:log:69', 'hash': '0x1172e2e77d97971f8806d6c76984ea0f483b1df311fa8eea4f37380431107b77', 'from': '0x08969c7a411508c9cd8f3e342c2bae4e48741650', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:34:28.000Z'}}, {'blockNum': '0x627cb2', 'uniqueId': '0x485be1b0db90f7275e985f73af4bdf9f9420aea5d0e967feae6ddb08d8136a4b:log:16', 'hash': '0x485be1b0db90f7275e985f73af4bdf9f9420aea5d0e967feae6ddb08d8136a4b', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:43:44.000Z'}}, {'blockNum': '0x627d55', 'uniqueId': '0xf03cdc0f271e0aefdcbc7f9eb9c2adb0aba0b4413ca4300274c7abbd36540bf7:log:103', 'hash': '0xf03cdc0f271e0aefdcbc7f9eb9c2adb0aba0b4413ca4300274c7abbd36540bf7', 'from': '0x387a3cb79141324c25ec4ea3c9b267b550c7fbdc', 'to': '0x83ad8f0b9d5557225093bf4c912f4b521c009cc3', 'value': 80, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04563918244f400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T23:24:22.000Z'}}, {'blockNum': '0x627d9e', 'uniqueId': '0x3340804895bba0c9edf763ec28c68bc1ab084cb3f1ea6d0dc0c687d47e47119a:log:45', 'hash': '0x3340804895bba0c9edf763ec28c68bc1ab084cb3f1ea6d0dc0c687d47e47119a', 'from': '0x14868f90c1665e4c295ed2bc29571073d6ed7a8e', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T23:40:02.000Z'}}, {'blockNum': '0x627dcb', 'uniqueId': '0x96069c4af079311c99e7d579e5ae85876756a140d1bbadeb409dc939c39fc800:log:52', 'hash': '0x96069c4af079311c99e7d579e5ae85876756a140d1bbadeb409dc939c39fc800', 'from': '0xcb2be1a59a0c7ef8d13db4c10ebf91586a7e93a1', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T23:50:46.000Z'}}, {'blockNum': '0x627e07', 'uniqueId': '0x17df45d70296badc5c5f715a1973ed086c55c255b72ce657827fb53206a4a486:log:30', 'hash': '0x17df45d70296badc5c5f715a1973ed086c55c255b72ce657827fb53206a4a486', 'from': '0x10ecc85c95a3b121be8bb86676a4443af5ceaaea', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T00:05:35.000Z'}}, {'blockNum': '0x627e50', 'uniqueId': '0x9a9d4c1d0517a18d7c7ff6979c7383c2d1fce2083238375acabe6cb543619a01:log:85', 'hash': '0x9a9d4c1d0517a18d7c7ff6979c7383c2d1fce2083238375acabe6cb543619a01', 'from': '0xf60a804b65d038cf829950ad5289717ed764f590', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T00:19:00.000Z'}}, {'blockNum': '0x627ec5', 'uniqueId': '0x8ceb2c7059457727ab40a5ff5b8393832532aafaf7a4eec04bbd3d203666476b:log:113', 'hash': '0x8ceb2c7059457727ab40a5ff5b8393832532aafaf7a4eec04bbd3d203666476b', 'from': '0x7451f1027a9ae967c8dcdc9e18073a39ced10ddb', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T00:48:39.000Z'}}, {'blockNum': '0x627f0b', 'uniqueId': '0xc3d364dde51a31679e79486bf12bb04f88c0b6121bb1d1a37c9286ac55ba88bd:log:64', 'hash': '0xc3d364dde51a31679e79486bf12bb04f88c0b6121bb1d1a37c9286ac55ba88bd', 'from': '0x5d6dd0cf3c22521d4c89a47feef893c564b25d72', 'to': '0xb9b43e28b51979daae6ea170ff4c844aa8e2d571', 'value': 618.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x218769690beb1a0031', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:03:39.000Z'}}, {'blockNum': '0x627f15', 'uniqueId': '0x290882bfa69f1707df7488fa093a8f64163761d4f25bd0e0695eb21cc3804fee:log:34', 'hash': '0x290882bfa69f1707df7488fa093a8f64163761d4f25bd0e0695eb21cc3804fee', 'from': '0x45e71c66c30681bcbcd8d59156e33ce7a824a680', 'to': '0x79e17aea57f2595df2e060ba9d4c7d1ca7a329d7', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:06:20.000Z'}}, {'blockNum': '0x627f1e', 'uniqueId': '0x0193dd4730628ea9dd82e52e0e57c5203cc256a1be2a67bfabbac2ab49a98efd:log:26', 'hash': '0x0193dd4730628ea9dd82e52e0e57c5203cc256a1be2a67bfabbac2ab49a98efd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x42b6268308947d66b77979536a07605fb489a9de', 'value': 391.904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x153ec2b39a86b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:08:51.000Z'}}, {'blockNum': '0x627f57', 'uniqueId': '0x7723142e42a1b8b90596a379b1952dac31ac97975177ff0e48aee88dfbc4eee4:log:35', 'hash': '0x7723142e42a1b8b90596a379b1952dac31ac97975177ff0e48aee88dfbc4eee4', 'from': '0xb9b43e28b51979daae6ea170ff4c844aa8e2d571', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 618.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x218769690beb1a0031', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:23:28.000Z'}}, {'blockNum': '0x627f78', 'uniqueId': '0x01fb52d9b525f7c0783adf6d0c6e23738725e34ff0137c793f6d77c496965f68:log:1', 'hash': '0x01fb52d9b525f7c0783adf6d0c6e23738725e34ff0137c793f6d77c496965f68', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 4779.256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010315802a6a9e4c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:30:38.000Z'}}, {'blockNum': '0x628056', 'uniqueId': '0xed9e77058a43734e4ef6ca2ea1c19ac7674682c5cf70f3b9643d9dba4f1a42ff:log:116', 'hash': '0xed9e77058a43734e4ef6ca2ea1c19ac7674682c5cf70f3b9643d9dba4f1a42ff', 'from': '0xde7fc5d00cdbee01b1509906fce0edb7c82bf5e2', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:21:51.000Z'}}, {'blockNum': '0x62807e', 'uniqueId': '0xdb3664644b06d72560c4a6bcc7c3b482d5edc4cbcf46a5a418678585ddc2077e:log:75', 'hash': '0xdb3664644b06d72560c4a6bcc7c3b482d5edc4cbcf46a5a418678585ddc2077e', 'from': '0xd0bf2401021b23818d93e204fd4f5a1acc6146cf', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:34:20.000Z'}}, {'blockNum': '0x62809c', 'uniqueId': '0x45d8db044aa3198e0a7ea6803103e30a582ebe13023eda5e7a93a2a5a7e87904:log:132', 'hash': '0x45d8db044aa3198e0a7ea6803103e30a582ebe13023eda5e7a93a2a5a7e87904', 'from': '0xbc4d89b45f8cd11d793e7dbe43421c1e12dc0312', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:42:35.000Z'}}, {'blockNum': '0x6280de', 'uniqueId': '0x7bc12fcf71a2ecc516c8555de2b4f1b60f2d097e1ff648128843b2d657cd1f00:log:57', 'hash': '0x7bc12fcf71a2ecc516c8555de2b4f1b60f2d097e1ff648128843b2d657cd1f00', 'from': '0x90142dbf5440c4c20a5e02a18578f27ad83d9534', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:57:50.000Z'}}, {'blockNum': '0x628102', 'uniqueId': '0xd093b11599cc9710cf3dcc00f2e03fd46b2990d01b4d888db704bfb9f59fffa9:log:34', 'hash': '0xd093b11599cc9710cf3dcc00f2e03fd46b2990d01b4d888db704bfb9f59fffa9', 'from': '0xa38288466445c8d74a54974c82d940fe4943df5e', 'to': '0xad243e25468dc32255b60a6a5e92a34a545c96af', 'value': 1682.03599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5b2ef04e2ea6e61c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:04:56.000Z'}}, {'blockNum': '0x62811c', 'uniqueId': '0x4be0848c939d622d4216310b76532f6561cb00b05be5dfe3c821168072489513:log:97', 'hash': '0x4be0848c939d622d4216310b76532f6561cb00b05be5dfe3c821168072489513', 'from': '0x5061b5f4f733db4f8fcb05d10fbd35d782fe1b6d', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:09:56.000Z'}}, {'blockNum': '0x62812d', 'uniqueId': '0xff8914bc46662a253101ca0b3129dd56e63bf3760af12c095ac85e6d4be3caac:log:11', 'hash': '0xff8914bc46662a253101ca0b3129dd56e63bf3760af12c095ac85e6d4be3caac', 'from': '0xad243e25468dc32255b60a6a5e92a34a545c96af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1682.03599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5b2ef04e2ea6e61c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:14:07.000Z'}}, {'blockNum': '0x62814b', 'uniqueId': '0x67a8f3201add637986170e5c6f50504623b3182e2b7f62263a50a66ce5c7e0f2:log:12', 'hash': '0x67a8f3201add637986170e5c6f50504623b3182e2b7f62263a50a66ce5c7e0f2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd822d541a9c9f3621eb2ad2530f43f5004002cf4', 'value': 569.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1edc9fe5b825e20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:21:10.000Z'}}, {'blockNum': '0x6281ff', 'uniqueId': '0xee6228528a305d9dab67750831517933dbcd966b039fb838313fe42b3f52ad66:log:8', 'hash': '0xee6228528a305d9dab67750831517933dbcd966b039fb838313fe42b3f52ad66', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x3a1daaa8b87ffcb2c1a8870a61481e3dc8a634f7', 'value': 566.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1eb2fdc19d2fb60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T04:01:42.000Z'}}, {'blockNum': '0x628233', 'uniqueId': '0x694f25adec132d0157c0451dc7c87b45d6c7449abf1c80cbcb9829606feedba7:log:25', 'hash': '0x694f25adec132d0157c0451dc7c87b45d6c7449abf1c80cbcb9829606feedba7', 'from': '0x3a1daaa8b87ffcb2c1a8870a61481e3dc8a634f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 566.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1eb2fdc19d2fb60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T04:14:24.000Z'}}, {'blockNum': '0x628258', 'uniqueId': '0x26e4a932dc4aef3a2e23c21637773c3835deb6cfa3b49b4131432bc73df3f904:log:33', 'hash': '0x26e4a932dc4aef3a2e23c21637773c3835deb6cfa3b49b4131432bc73df3f904', 'from': '0xc60e0ed857bfe4ea8a30ed4b91e368352b7e831d', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T04:23:18.000Z'}}]}}
Number of returned transfers:  174
Answer is complete
 
symbol             OAX
group              WCG
date        2018-10-09
hour             19:00
exchange       binance
Name: 603, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2018-10-09 19:00:00 2018-10-09 07:00:00 2018-10-10 07:00:00
Unix timestamps:  1539061200.0 1539147600.0
Hex Block Numbers:  0x62e3ab 0x62fba5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x62e44b', 'uniqueId': '0x388133695df481e8a8af8cb7e56f2181663879a22761250c3a5bef4b7181ba80:log:30', 'hash': '0x388133695df481e8a8af8cb7e56f2181663879a22761250c3a5bef4b7181ba80', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf65e44abc6458c654257ef7e57998a1ad16a31bd', 'value': 1143.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3e034d132ad5400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T05:35:44.000Z'}}, {'blockNum': '0x62e64e', 'uniqueId': '0xaf1689fe72734d1f6e8eaeed162ecf1af104a4c8a577e1db7e6fb2aa86ff4007:log:11', 'hash': '0xaf1689fe72734d1f6e8eaeed162ecf1af104a4c8a577e1db7e6fb2aa86ff4007', 'from': '0x00c24b37407dec11e0330f840e321b38d9a6b5f9', 'to': '0x042ab3f86403cc9cfd722ca1cc503731527fe2a6', 'value': 2038.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6e85e51f0712a70000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T07:42:26.000Z'}}, {'blockNum': '0x62e67e', 'uniqueId': '0xa87cb4bddd0ffd7fce4c1feafc9d058627ffe97ac38e84df7f23c7f30032985e:log:12', 'hash': '0xa87cb4bddd0ffd7fce4c1feafc9d058627ffe97ac38e84df7f23c7f30032985e', 'from': '0x042ab3f86403cc9cfd722ca1cc503731527fe2a6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2038.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6e85e51f0712a70000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T07:53:10.000Z'}}, {'blockNum': '0x62e7aa', 'uniqueId': '0x8e62a4547913b01f1c41d7a2a2c89488bae5677a357671a8d634c8e10b273d73:log:5', 'hash': '0x8e62a4547913b01f1c41d7a2a2c89488bae5677a357671a8d634c8e10b273d73', 'from': '0xbad43f5074c6fa0b1ef306fcbe666836028d6ffd', 'to': '0xbd29701401c9caf611e7557bd21c9199dcaf9db2', 'value': 2477.4304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x864d40decfa9e80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T09:02:34.000Z'}}, {'blockNum': '0x62e7ff', 'uniqueId': '0x60a8bfd66fabf75dbaebe8fb0ba46cdcf1f2e42fdebefec252006916b4273485:log:9', 'hash': '0x60a8bfd66fabf75dbaebe8fb0ba46cdcf1f2e42fdebefec252006916b4273485', 'from': '0xbd29701401c9caf611e7557bd21c9199dcaf9db2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2527.4304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8903248de65b700000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T09:23:07.000Z'}}, {'blockNum': '0x62e935', 'uniqueId': '0x6e635b0fd58a3d1b7f611b12cea0ff8d057c30fc40e6192ef9a9e8e660368fff:log:9', 'hash': '0x6e635b0fd58a3d1b7f611b12cea0ff8d057c30fc40e6192ef9a9e8e660368fff', 'from': '0x860ca90f4eab837d230bc90ce0eeffbdd028f0eb', 'to': '0x39362701afb8877e1ce95812b9b2700c684153db', 'value': 1987.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6bc503b0229b030000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T10:32:29.000Z'}}, {'blockNum': '0x62e9e1', 'uniqueId': '0x25ca7eb6a25e5b1009f7f3e4b295ccaac25825f9c4f9f873cade4d3b03cc1e48:log:2', 'hash': '0x25ca7eb6a25e5b1009f7f3e4b295ccaac25825f9c4f9f873cade4d3b03cc1e48', 'from': '0x39362701afb8877e1ce95812b9b2700c684153db', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1987.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6bc503b0229b030000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T11:13:08.000Z'}}, {'blockNum': '0x62eb1f', 'uniqueId': '0x781b6d9aca81c6db07630a2be709a6fc9926a3012467a11d377fa4eae6d55bb7:log:30', 'hash': '0x781b6d9aca81c6db07630a2be709a6fc9926a3012467a11d377fa4eae6d55bb7', 'from': '0xbca95573f3bd0e11ffda54924d084e450b91a375', 'to': '0x1995a6994f1d8b416c5db7f3ad0ac9a330d53a6f', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T12:28:49.000Z'}}, {'blockNum': '0x62eb4a', 'uniqueId': '0x91171af195b2f28bd07b603dabb9aa27f106b063a65503594b26fdcc2974bcc3:log:25', 'hash': '0x91171af195b2f28bd07b603dabb9aa27f106b063a65503594b26fdcc2974bcc3', 'from': '0xbca95573f3bd0e11ffda54924d084e450b91a375', 'to': '0x1995a6994f1d8b416c5db7f3ad0ac9a330d53a6f', 'value': 110591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x176b266e73c5189c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T12:38:23.000Z'}}, {'blockNum': '0x62eb94', 'uniqueId': '0xed33228f570d1255da7c3509788c62ca5cbf7214e7e997804313e6ce698abc3b:log:17', 'hash': '0xed33228f570d1255da7c3509788c62ca5cbf7214e7e997804313e6ce698abc3b', 'from': '0x1995a6994f1d8b416c5db7f3ad0ac9a330d53a6f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1ba75a30073a7d1c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T12:52:59.000Z'}}, {'blockNum': '0x62ebb1', 'uniqueId': '0x239d96871a77dea490c9d62b1b22ecfc665c5006208f5fc4316d8795c8fef5a7:log:8', 'hash': '0x239d96871a77dea490c9d62b1b22ecfc665c5006208f5fc4316d8795c8fef5a7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 14284.017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0306568e9588d0de8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T13:00:02.000Z'}}, {'blockNum': '0x62ebb5', 'uniqueId': '0x24a64805530db44d20db57a6e7755f5554dca2b3c4b07f9790deb4d922a4d6d3:log:3', 'hash': '0x24a64805530db44d20db57a6e7755f5554dca2b3c4b07f9790deb4d922a4d6d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 111756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x17aa4e0de355dab00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T13:01:39.000Z'}}, {'blockNum': '0x62ed56', 'uniqueId': '0x27af9151b8c63f9d5eee0d4c4043b180091019aea7a5eb409026fb18f203fdf6:log:33', 'hash': '0x27af9151b8c63f9d5eee0d4c4043b180091019aea7a5eb409026fb18f203fdf6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'value': 4290.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe894fbb697b06e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T14:43:27.000Z'}}, {'blockNum': '0x62edb4', 'uniqueId': '0xea2affaa52ba295acdb70834b0097e2e38c7a519491655fa01af615ee3237c74:log:4', 'hash': '0xea2affaa52ba295acdb70834b0097e2e38c7a519491655fa01af615ee3237c74', 'from': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4290.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe894fbb697b06e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T15:03:09.000Z'}}, {'blockNum': '0x62f16d', 'uniqueId': '0x8e2180093570c47c25ee610b2a166c2c279ad33d4f299d215857ed58c931c3bf:log:2', 'hash': '0x8e2180093570c47c25ee610b2a166c2c279ad33d4f299d215857ed58c931c3bf', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3012.80569568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa3531401b138078000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:00:30.000Z'}}, {'blockNum': '0x62f17d', 'uniqueId': '0x556f2df5dabbed8af653ccf54e0ca4d8cf7b716c968ea76811812bee1b0c369d:log:3', 'hash': '0x556f2df5dabbed8af653ccf54e0ca4d8cf7b716c968ea76811812bee1b0c369d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'value': 10323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022f9c674e66e56c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:04:01.000Z'}}, {'blockNum': '0x62f1ce', 'uniqueId': '0x7edb8a03b0140f35c7dfe5e5a45a9518e5f35c78fdcfe5e39718949ef83bafec:log:3', 'hash': '0x7edb8a03b0140f35c7dfe5e5a45a9518e5f35c78fdcfe5e39718949ef83bafec', 'from': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022f9c674e66e56c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:23:04.000Z'}}, {'blockNum': '0x62f1ce', 'uniqueId': '0x77ff4cc65ffac9ef39cdc352d87784fade6d5ab574df578958e33b2c9e0db341:log:4', 'hash': '0x77ff4cc65ffac9ef39cdc352d87784fade6d5ab574df578958e33b2c9e0db341', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3248.58049927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb01b1c605e71793c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:23:04.000Z'}}, {'blockNum': '0x62f1f1', 'uniqueId': '0x4e558ab0c07e1050390eec2d9bc99b8b88755d7ae6ae7414bc346f06bb277aaf:log:99', 'hash': '0x4e558ab0c07e1050390eec2d9bc99b8b88755d7ae6ae7414bc346f06bb277aaf', 'from': '0x3650b69c5e20de43ea101fc97df22daf2a50d9da', 'to': '0xb3663bd49368c5fd7e1bdbed0bbc826f6df9c830', 'value': 9.938287470218e-06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0909f018268a', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:30:27.000Z'}}, {'blockNum': '0x62f30f', 'uniqueId': '0x8a5a0c669f8620b59015d7b9f57fdb4eaae6aad043b7e59865d4217a9c9c4be0:log:25', 'hash': '0x8a5a0c669f8620b59015d7b9f57fdb4eaae6aad043b7e59865d4217a9c9c4be0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32946c3d60b751c5f4f8825e59b3e2b41a2211b3', 'value': 2347.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x7f44e1e75a30920000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T20:36:06.000Z'}}, {'blockNum': '0x62fa7f', 'uniqueId': '0x91a611910aac577b61eae50dde1f05d00898bd57a231e2f1511d623e5bdedb3a:log:2', 'hash': '0x91a611910aac577b61eae50dde1f05d00898bd57a231e2f1511d623e5bdedb3a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a08ead02f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-10T03:48:37.000Z'}}, {'blockNum': '0x62fb1f', 'uniqueId': '0x450f55be57058d73be9e335964ff5eb54580b47974bcbc222fdbb47b1ce27fb9:log:32', 'hash': '0x450f55be57058d73be9e335964ff5eb54580b47974bcbc222fdbb47b1ce27fb9', 'from': '0x71e933f9f2b99af77ba9f0ae3b11215324c4bfb0', 'to': '0x263c640205bb0ff9be3f8ee5436b87b110ec5cfd', 'value': 478.818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x19f4ef421d0efd0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-10T04:25:37.000Z'}}, {'blockNum': '0x62fb9b', 'uniqueId': '0x540ad3071eed1096d6e504a09bff73f66dfcaa2d19752f97bc10988017bcc94c:log:48', 'hash': '0x540ad3071eed1096d6e504a09bff73f66dfcaa2d19752f97bc10988017bcc94c', 'from': '0x860ca90f4eab837d230bc90ce0eeffbdd028f0eb', 'to': '0x0d793e36f71f3e3a06f57b7049d2f1d1ea4598cd', 'value': 6708.249184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x016ba7a8a30544060000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-10T04:58:06.000Z'}}]}}
Number of returned transfers:  23
Answer is complete
 
symbol             EDO
group              WCG
date        2018-10-13
hour             19:00
exchange       binance
Name: 604, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2018-10-13 19:00:00 2018-10-13 07:00:00 2018-10-14 07:00:00
Unix timestamps:  1539406800.0 1539493200.0
Hex Block Numbers:  0x6343b2 0x635bdc
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GRS
group              WCG
date        2018-10-24
hour             19:00
exchange       binance
Name: 605, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: GRS, Contract: 
Datetime timestamps:  2018-10-24 19:00:00 2018-10-24 07:00:00 2018-10-25 07:00:00
Unix timestamps:  1540357200.0 1540443600.0
Hex Block Numbers:  0x644b1a 0x64630b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             AMB
group              WCG
date        2019-01-01
hour             14:30
exchange       binance
Name: 606, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: AMB, Contract: 
Datetime timestamps:  2019-01-01 14:30:00 2019-01-01 02:30:00 2019-01-02 02:30:00
Unix timestamps:  1546306200.0 1546392600.0
Hex Block Numbers:  0x6aa4b3 0x6abbb0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIA
group              WCG
date        2019-02-03
hour             15:04
exchange       binance
Name: 607, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2019-02-03 15:04:00 2019-02-03 03:04:00 2019-02-04 03:04:00
Unix timestamps:  1549159440.0 1549245840.0
Hex Block Numbers:  0x6d597d 0x6d6c74
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             AST
group              WCG
date        2019-03-02
hour             14:00
exchange       binance
Name: 608, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
 Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps:  2019-03-02 14:00:00 2019-03-02 02:00:00 2019-03-03 02:00:00
Unix timestamps:  1551488400.0 1551574800.0
Hex Block Numbers:  0x6f3161 0x6f4a36
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6f3276', 'uniqueId': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8:log:4', 'hash': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xda64447d0db123635337da4c1400985bd5108537', 'value': 392.435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3be17e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:10:37.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:15', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:17', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb3b08089acd17805a3a538211f12694717deeef5', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a9', 'uniqueId': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd:log:3', 'hash': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:05.000Z'}}, {'blockNum': '0x6f32af', 'uniqueId': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86:log:34', 'hash': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:20:34.000Z'}}, {'blockNum': '0x6f32b2', 'uniqueId': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4:log:19', 'hash': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:21:18.000Z'}}, {'blockNum': '0x6f32b7', 'uniqueId': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e:log:26', 'hash': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:22:12.000Z'}}, {'blockNum': '0x6f32bf', 'uniqueId': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458:log:77', 'hash': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:24:06.000Z'}}, {'blockNum': '0x6f330b', 'uniqueId': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd:log:63', 'hash': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:27.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1:log:14', 'hash': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22:log:52', 'hash': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22', 'from': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f3314', 'uniqueId': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd:log:41', 'hash': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd', 'from': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:43:48.000Z'}}, {'blockNum': '0x6f3349', 'uniqueId': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a:log:10', 'hash': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:55:22.000Z'}}, {'blockNum': '0x6f33a4', 'uniqueId': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca:log:52', 'hash': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T03:14:51.000Z'}}, {'blockNum': '0x6f350c', 'uniqueId': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8:log:111', 'hash': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'value': 4892.142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02ea7b4c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:34:43.000Z'}}, {'blockNum': '0x6f3549', 'uniqueId': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba:log:51', 'hash': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba', 'from': '0x453e025f8e7518e66331044402a0ea1b97d6eaab', 'to': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:49:19.000Z'}}, {'blockNum': '0x6f35b9', 'uniqueId': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3:log:13', 'hash': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3', 'from': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:15:14.000Z'}}, {'blockNum': '0x6f3669', 'uniqueId': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61:log:53', 'hash': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:52:29.000Z'}}, {'blockNum': '0x6f36bc', 'uniqueId': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0:log:13', 'hash': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T06:10:27.000Z'}}, {'blockNum': '0x6f3974', 'uniqueId': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82:log:10', 'hash': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T08:45:58.000Z'}}, {'blockNum': '0x6f39fa', 'uniqueId': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11:log:35', 'hash': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:15:09.000Z'}}, {'blockNum': '0x6f3a17', 'uniqueId': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9:log:66', 'hash': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9', 'from': '0xb91e80a4d98023c4c431a12e376b3b0e4dc9de70', 'to': '0xac4682db6eb5083e64f9a05859da6eff0fd8ed91', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:21:57.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485:log:16', 'hash': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97:log:17', 'hash': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b10', 'uniqueId': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3:log:19', 'hash': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:16:04.000Z'}}, {'blockNum': '0x6f3b34', 'uniqueId': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956:log:83', 'hash': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:23:55.000Z'}}, {'blockNum': '0x6f3c12', 'uniqueId': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d:log:3', 'hash': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff9b53a7586d4d82d62cd7eb0b0acaa16d9215c3', 'value': 350.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x358338', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T11:16:13.000Z'}}, {'blockNum': '0x6f3d56', 'uniqueId': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a:log:51', 'hash': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:27:57.000Z'}}, {'blockNum': '0x6f3d5e', 'uniqueId': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4:log:33', 'hash': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4', 'from': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'to': '0x4b327ee88d48acc116643f80a4674a5c5b3b53f7', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:29:45.000Z'}}, {'blockNum': '0x6f3d86', 'uniqueId': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf:log:6', 'hash': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:38:08.000Z'}}, {'blockNum': '0x6f3d8e', 'uniqueId': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf:log:77', 'hash': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:39:54.000Z'}}, {'blockNum': '0x6f3e29', 'uniqueId': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64:log:5', 'hash': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:11:46.000Z'}}, {'blockNum': '0x6f3e2e', 'uniqueId': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74:log:12', 'hash': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:13:14.000Z'}}, {'blockNum': '0x6f3e43', 'uniqueId': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375:log:112', 'hash': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 6211.8675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3db13', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:17:23.000Z'}}, {'blockNum': '0x6f3e45', 'uniqueId': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e:log:41', 'hash': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:18:40.000Z'}}, {'blockNum': '0x6f3e63', 'uniqueId': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581:log:54', 'hash': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581', 'from': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:24:16.000Z'}}, {'blockNum': '0x6f3e75', 'uniqueId': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664:log:51', 'hash': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:14.000Z'}}, {'blockNum': '0x6f3e7a', 'uniqueId': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a:log:58', 'hash': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:52.000Z'}}, {'blockNum': '0x6f3e7d', 'uniqueId': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873:log:3', 'hash': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:46.000Z'}}, {'blockNum': '0x6f3e7e', 'uniqueId': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749:log:92', 'hash': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749', 'from': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:50.000Z'}}, {'blockNum': '0x6f3e81', 'uniqueId': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579:log:44', 'hash': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:31:15.000Z'}}, {'blockNum': '0x6f3e91', 'uniqueId': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75:log:57', 'hash': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75', 'from': '0xda42850bdd7353478edd2c05fa67d7a6c9175d56', 'to': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:35:33.000Z'}}, {'blockNum': '0x6f3ea1', 'uniqueId': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7:log:2', 'hash': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7', 'from': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'to': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:10.000Z'}}, {'blockNum': '0x6f3ea5', 'uniqueId': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba:log:47', 'hash': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba', 'from': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:26.000Z'}}, {'blockNum': '0x6f3ebf', 'uniqueId': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4:log:37', 'hash': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:43:48.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:11', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:12', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ecd', 'uniqueId': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de:log:90', 'hash': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de', 'from': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:46:24.000Z'}}, {'blockNum': '0x6f3eed', 'uniqueId': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1:log:74', 'hash': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1', 'from': '0xfc644ea1a3fe5e7854be5431078803d1cbee6bee', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:30.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1:log:23', 'hash': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0:log:38', 'hash': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0', 'from': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e:log:39', 'hash': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2157.2298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01492aca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3f0a', 'uniqueId': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8:log:45', 'hash': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:01:53.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:11', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:13', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0c', 'uniqueId': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea:log:32', 'hash': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:45.000Z'}}, {'blockNum': '0x6f3f11', 'uniqueId': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a:log:216', 'hash': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:03:22.000Z'}}, {'blockNum': '0x6f3f13', 'uniqueId': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3:log:5', 'hash': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3', 'from': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'to': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:32.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:47', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:49', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:54', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:55', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:217', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:218', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f1a', 'uniqueId': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf:log:73', 'hash': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:05:40.000Z'}}, {'blockNum': '0x6f3f1b', 'uniqueId': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0:log:9', 'hash': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0', 'from': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:06:21.000Z'}}, {'blockNum': '0x6f3f27', 'uniqueId': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99:log:9', 'hash': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd73325ba5dc21ec50e7607906a47114669ed2d68', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:09:10.000Z'}}, {'blockNum': '0x6f3f31', 'uniqueId': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d:log:16', 'hash': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:11:20.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:24', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:25', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b:log:13', 'hash': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8:log:47', 'hash': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51:log:50', 'hash': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51', 'from': '0xf5177ebddc0b0d68959d7f8d0c6c55d3fdb6a871', 'to': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:123', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:124', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f5f', 'uniqueId': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351:log:52', 'hash': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351', 'from': '0x0378ed3c26c6d33d056ff54f6c34d918160dc296', 'to': '0x0f43e914e155acbaf69cc32052eaf53e98f6302f', 'value': 213.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2090e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:23:31.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77:log:3', 'hash': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70:log:16', 'hash': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f72', 'uniqueId': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc:log:31', 'hash': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:28:27.000Z'}}, {'blockNum': '0x6f3f7b', 'uniqueId': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9:log:81', 'hash': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:29:45.000Z'}}, {'blockNum': '0x6f3f81', 'uniqueId': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b:log:81', 'hash': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:30:44.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:55', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x6cac5eeb01d56e889afac1f8d7f6666b344225e3', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:56', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592:log:6', 'hash': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc:log:15', 'hash': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483:log:16', 'hash': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483', 'from': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3fa0', 'uniqueId': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c:log:8', 'hash': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:39:13.000Z'}}, {'blockNum': '0x6f3fac', 'uniqueId': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27:log:40', 'hash': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27', 'from': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:42:18.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f:log:11', 'hash': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939:log:12', 'hash': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7dd14ea7767e0990a0bbed5f5bd4aa4bb55ed1b5', 'value': 4322.1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02938097', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb5', 'uniqueId': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5:log:36', 'hash': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23c34600', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:28.000Z'}}, {'blockNum': '0x6f3fb6', 'uniqueId': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac:log:41', 'hash': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:39.000Z'}}, {'blockNum': '0x6f3fbc', 'uniqueId': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617:log:57', 'hash': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617', 'from': '0xad12513975e2713a5f95871992624fc0fed9ffdb', 'to': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:47:56.000Z'}}, {'blockNum': '0x6f3fd3', 'uniqueId': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6:log:45', 'hash': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:53:11.000Z'}}, {'blockNum': '0x6f3fff', 'uniqueId': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34:log:13', 'hash': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:05:03.000Z'}}, {'blockNum': '0x6f4016', 'uniqueId': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f:log:10', 'hash': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:11:40.000Z'}}, {'blockNum': '0x6f4028', 'uniqueId': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1:log:4', 'hash': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1', 'from': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:15:03.000Z'}}, {'blockNum': '0x6f4039', 'uniqueId': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d:log:33', 'hash': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:18:47.000Z'}}, {'blockNum': '0x6f403f', 'uniqueId': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f:log:26', 'hash': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f', 'from': '0x79ef17f3a5ddf966c914b3de0dfc629faa820bfb', 'to': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:20:22.000Z'}}, {'blockNum': '0x6f404d', 'uniqueId': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f:log:43', 'hash': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f', 'from': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'to': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:24:02.000Z'}}, {'blockNum': '0x6f4053', 'uniqueId': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851:log:82', 'hash': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851', 'from': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:25:27.000Z'}}, {'blockNum': '0x6f4070', 'uniqueId': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d:log:8', 'hash': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:31:27.000Z'}}, {'blockNum': '0x6f4088', 'uniqueId': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488:log:8', 'hash': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 2371.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169e488', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:35:41.000Z'}}, {'blockNum': '0x6f408c', 'uniqueId': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6:log:72', 'hash': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 2372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169f040', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:36:51.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825:log:41', 'hash': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825', 'from': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45:log:43', 'hash': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40bd', 'uniqueId': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115:log:28', 'hash': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:49:46.000Z'}}, {'blockNum': '0x6f40ca', 'uniqueId': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555:log:31', 'hash': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:52:57.000Z'}}, {'blockNum': '0x6f40cb', 'uniqueId': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4:log:2', 'hash': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:43.000Z'}}, {'blockNum': '0x6f40cc', 'uniqueId': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6:log:90', 'hash': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:57.000Z'}}, {'blockNum': '0x6f410f', 'uniqueId': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27:log:21', 'hash': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27', 'from': '0x287f05e0e7847148adfbd4be181632d5e362e60b', 'to': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:08:34.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8:log:21', 'hash': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23:log:25', 'hash': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368:log:35', 'hash': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f417c', 'uniqueId': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8:log:74', 'hash': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8', 'from': '0x0b946efae53975b97a0d1d02f75fabf55d0d6a96', 'to': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:33:02.000Z'}}, {'blockNum': '0x6f4180', 'uniqueId': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82:log:48', 'hash': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82', 'from': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:47.000Z'}}, {'blockNum': '0x6f4181', 'uniqueId': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c:log:52', 'hash': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c', 'from': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:58.000Z'}}, {'blockNum': '0x6f41a1', 'uniqueId': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050:log:1', 'hash': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 77.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0bdb28', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:42:22.000Z'}}, {'blockNum': '0x6f41b6', 'uniqueId': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed:log:94', 'hash': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 20865.564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0c6fd518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:49:56.000Z'}}, {'blockNum': '0x6f42f5', 'uniqueId': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69:log:7', 'hash': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x952f68', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:03:48.000Z'}}, {'blockNum': '0x6f4305', 'uniqueId': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188:log:0', 'hash': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 77726.872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2e542df0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:10:57.000Z'}}, {'blockNum': '0x6f4331', 'uniqueId': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123:log:4', 'hash': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123', 'from': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb71b00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:21:19.000Z'}}, {'blockNum': '0x6f4349', 'uniqueId': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08:log:3', 'hash': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:26:18.000Z'}}, {'blockNum': '0x6f4363', 'uniqueId': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a:log:79', 'hash': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 209770.7957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb5', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:31:27.000Z'}}, {'blockNum': '0x6f4365', 'uniqueId': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b:log:78', 'hash': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 209770.7958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:32:09.000Z'}}, {'blockNum': '0x6f436a', 'uniqueId': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f:log:73', 'hash': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x719fbeead55ae2729c0263f3f31edf3e7780c18a', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:33:57.000Z'}}, {'blockNum': '0x6f4384', 'uniqueId': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81:log:6', 'hash': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:27.000Z'}}, {'blockNum': '0x6f4388', 'uniqueId': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd:log:113', 'hash': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd', 'from': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:58.000Z'}}, {'blockNum': '0x6f4389', 'uniqueId': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4:log:11', 'hash': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:41:19.000Z'}}, {'blockNum': '0x6f438c', 'uniqueId': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471:log:37', 'hash': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471', 'from': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:42:01.000Z'}}, {'blockNum': '0x6f4392', 'uniqueId': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80:log:2', 'hash': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:43:40.000Z'}}, {'blockNum': '0x6f439a', 'uniqueId': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53:log:29', 'hash': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 211682.6873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7e2c36f9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:45:20.000Z'}}, {'blockNum': '0x6f43b9', 'uniqueId': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f:log:18', 'hash': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x09957a6b7bdff098d7749016a7e61a31f5b99bdc', 'value': 2256.419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01584d5e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:51:35.000Z'}}, {'blockNum': '0x6f43f5', 'uniqueId': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8:log:58', 'hash': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:06:24.000Z'}}, {'blockNum': '0x6f4415', 'uniqueId': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5:log:68', 'hash': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:12:08.000Z'}}, {'blockNum': '0x6f4422', 'uniqueId': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73:log:38', 'hash': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:14:37.000Z'}}, {'blockNum': '0x6f4424', 'uniqueId': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85:log:4', 'hash': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:15:03.000Z'}}, {'blockNum': '0x6f442c', 'uniqueId': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c:log:0', 'hash': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:34.000Z'}}, {'blockNum': '0x6f442f', 'uniqueId': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474:log:3', 'hash': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:52.000Z'}}, {'blockNum': '0x6f4440', 'uniqueId': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28:log:74', 'hash': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:20:24.000Z'}}, {'blockNum': '0x6f4450', 'uniqueId': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2:log:52', 'hash': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:23:56.000Z'}}, {'blockNum': '0x6f4456', 'uniqueId': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94:log:17', 'hash': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:26:32.000Z'}}, {'blockNum': '0x6f446f', 'uniqueId': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7:log:57', 'hash': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7', 'from': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:31:53.000Z'}}, {'blockNum': '0x6f44a2', 'uniqueId': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7:log:19', 'hash': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:45:15.000Z'}}, {'blockNum': '0x6f44e5', 'uniqueId': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d:log:33', 'hash': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:57:29.000Z'}}, {'blockNum': '0x6f44ea', 'uniqueId': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107:log:73', 'hash': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:58:29.000Z'}}, {'blockNum': '0x6f44f2', 'uniqueId': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9:log:33', 'hash': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9', 'from': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:06.000Z'}}, {'blockNum': '0x6f44f6', 'uniqueId': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347:log:73', 'hash': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347', 'from': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:45.000Z'}}, {'blockNum': '0x6f4549', 'uniqueId': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e:log:5', 'hash': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:19:36.000Z'}}, {'blockNum': '0x6f454c', 'uniqueId': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825:log:85', 'hash': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xcae9000485f5e732717ad7366577d2b04d479795', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:20:01.000Z'}}, {'blockNum': '0x6f4769', 'uniqueId': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065:log:96', 'hash': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065', 'from': '0xf78b4770ea558a445f160ac4be425c4e6de0ccd7', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 3500.0417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02161061', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:18:28.000Z'}}, {'blockNum': '0x6f47a4', 'uniqueId': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6:log:3', 'hash': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:30:23.000Z'}}, {'blockNum': '0x6f47ae', 'uniqueId': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d:log:43', 'hash': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:32:39.000Z'}}, {'blockNum': '0x6f481c', 'uniqueId': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083:log:0', 'hash': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083', 'from': '0x60426cbccd32998755338c2ef77c589848138b4c', 'to': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:00:01.000Z'}}, {'blockNum': '0x6f48ca', 'uniqueId': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6:log:53', 'hash': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6', 'from': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:34:56.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:121', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:122', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:92', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:93', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f4947', 'uniqueId': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75:log:55', 'hash': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:59:49.000Z'}}, {'blockNum': '0x6f4948', 'uniqueId': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1:log:68', 'hash': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1132818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a3364f20', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:00:49.000Z'}}, {'blockNum': '0x6f498b', 'uniqueId': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849:log:6', 'hash': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:17:57.000Z'}}, {'blockNum': '0x6f4a07', 'uniqueId': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05:log:3', 'hash': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:46:36.000Z'}}, {'blockNum': '0x6f4a0b', 'uniqueId': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322:log:65', 'hash': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:48:22.000Z'}}, {'blockNum': '0x6f4a28', 'uniqueId': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484:log:54', 'hash': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:56:30.000Z'}}, {'blockNum': '0x6f4a2d', 'uniqueId': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c:log:31', 'hash': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:57:54.000Z'}}]}}
Number of returned transfers:  166
Answer is complete
 
symbol             SNM
group              WCG
date        2019-04-04
hour             13:29
exchange       binance
Name: 609, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-04-04 13:29:00 2019-04-04 01:29:00 2019-04-05 01:29:00
Unix timestamps:  1554334140.0 1554420540.0
Hex Block Numbers:  0x7269ef 0x728300
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol              HC
group              WCG
date        2019-05-18
hour             15:30
exchange       binance
Name: 610, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
 Symbol: HC, Contract: 
Datetime timestamps:  2019-05-18 15:30:00 2019-05-18 03:30:00 2019-05-19 03:30:00
Unix timestamps:  1558143000.0 1558229400.0
Hex Block Numbers:  0x76bb5f 0x76d44e
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             CND
group              WCG
date        2019-05-21
hour             13:30
exchange       binance
Name: 611, dtype: object
HERE
 Symbol: CND, Contract: 0xec505c81d6a7567b5bde804870b1038832fe6da1
Datetime timestamps:  2019-05-21 13:30:00 2019-05-21 01:30:00 2019-05-22 01:30:00
Unix timestamps:  1558395000.0 1558481400.0
Hex Block Numbers:  0x770418 0x771cd9
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            DATA
group              WCG
date        2019-09-08
hour             18:00
exchange       binance
Name: 612, dtype: object
HERE
 Symbol: DATA, Contract: 0x8f693ca8d21b157107184d29d398a8d082b38b76
Datetime timestamps:  2019-09-08 18:00:00 2019-09-08 06:00:00 2019-09-09 06:00:00
Unix timestamps:  1567915200.0 1568001600.0
Hex Block Numbers:  0x81ce7b 0x81e777
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             NXS
group              WCG
date        2019-10-02
hour             18:00
exchange       binance
Name: 613, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2019-10-02 18:00:00 2019-10-02 06:00:00 2019-10-03 06:00:00
Unix timestamps:  1569988800.0 1570075200.0
Hex Block Numbers:  0x84268b 0x843f83
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             OST
group              WCG
date        2019-10-22
hour             18:00
exchange       binance
Name: 614, dtype: object
HERE
 Symbol: OST, Contract: 0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca
Datetime timestamps:  2019-10-22 18:00:00 2019-10-22 06:00:00 2019-10-23 06:00:00
Unix timestamps:  1571716800.0 1571803200.0
Hex Block Numbers:  0x861831 0x863158
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x861bde', 'uniqueId': '0x1d95a09a36b4a8ec474fbedaacdd0306d69f07fe3b1f4b8297a9c866c44102e6:log:23', 'hash': '0x1d95a09a36b4a8ec474fbedaacdd0306d69f07fe3b1f4b8297a9c866c44102e6', 'from': '0x492728e73a4cfacfa017b7eb444703b2d960d09a', 'to': '0x8b7cf173a4bc994a573615f534fcde698eb0ba18', 'value': 11141.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x025bffe21594c6a68000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:28:43.000Z'}}, {'blockNum': '0x861c15', 'uniqueId': '0xa076cf76f4a712b2432a192f11d394ea0b9e0d52d0e751af0855ba90f086e5f4:log:74', 'hash': '0xa076cf76f4a712b2432a192f11d394ea0b9e0d52d0e751af0855ba90f086e5f4', 'from': '0x8b7cf173a4bc994a573615f534fcde698eb0ba18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11141.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x025bffe21594c6a68000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:42:14.000Z'}}, {'blockNum': '0x861c17', 'uniqueId': '0xf98223262f7f00ba63ee568daf30b3438b800e8252f52dc6291d4235c4c1c7dd:log:15', 'hash': '0xf98223262f7f00ba63ee568daf30b3438b800e8252f52dc6291d4235c4c1c7dd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeb2408175a07be9c0604468db599a28e8dfc9e25', 'value': 552.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1df9a743df305e8000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:42:43.000Z'}}, {'blockNum': '0x861c2d', 'uniqueId': '0x1b6cf7e687e0bf0590cebd90fd5bd803171f95af9f16e562a3521c5b9e7490a9:log:47', 'hash': '0x1b6cf7e687e0bf0590cebd90fd5bd803171f95af9f16e562a3521c5b9e7490a9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeb2408175a07be9c0604468db599a28e8dfc9e25', 'value': 512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec8000000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:46:38.000Z'}}, {'blockNum': '0x861d33', 'uniqueId': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff:log:140', 'hash': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff', 'from': '0x8fa07f46353a2b17e92645592a94a0fc1ceb783f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 14.992838046130872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd01142c47a979e3f', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T08:42:16.000Z'}}, {'blockNum': '0x861d33', 'uniqueId': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff:log:141', 'hash': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 14.992838046130872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd01142c47a979e3f', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T08:42:16.000Z'}}, {'blockNum': '0x861f34', 'uniqueId': '0xd698880ee7511031d4da38f4fb691cad0410cf1d99954b8a417b36f22e3562e3:log:0', 'hash': '0xd698880ee7511031d4da38f4fb691cad0410cf1d99954b8a417b36f22e3562e3', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 700005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x943b58daba8f02740000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T10:32:54.000Z'}}, {'blockNum': '0x861f57', 'uniqueId': '0x2f69c39685f5382891fa64a10f0b53e8f4ea50a8c32188e50962ad5ec71a865c:log:49', 'hash': '0x2f69c39685f5382891fa64a10f0b53e8f4ea50a8c32188e50962ad5ec71a865c', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 700005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x943b58daba8f02740000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T10:42:02.000Z'}}, {'blockNum': '0x862429', 'uniqueId': '0x90a80db78f6e7f3c1d513485230b84019ebab72ead97995dca3bdf6f5d950b52:log:0', 'hash': '0x90a80db78f6e7f3c1d513485230b84019ebab72ead97995dca3bdf6f5d950b52', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 503000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6a83af446fc86c600000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:35:16.000Z'}}, {'blockNum': '0x86243d', 'uniqueId': '0x6bc603544e03bb26a06845bb5540c97cb0547d7d2dedacfd7644e3635c7cc343:log:0', 'hash': '0x6bc603544e03bb26a06845bb5540c97cb0547d7d2dedacfd7644e3635c7cc343', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 506000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6b2650a1791a08400000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:37:59.000Z'}}, {'blockNum': '0x86244b', 'uniqueId': '0x95bbd8dd73e5340ff3b4d5c865c2586547795312a6d229d3a56283cf70c621f6:log:24', 'hash': '0x95bbd8dd73e5340ff3b4d5c865c2586547795312a6d229d3a56283cf70c621f6', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1009000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd5a9ffe5e8e274a00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:42:16.000Z'}}, {'blockNum': '0x862474', 'uniqueId': '0x63ce5167216ca6e23ac7d303d26d6c3d4c7058e5b4566319fe9b15b2857c6a2f:log:3', 'hash': '0x63ce5167216ca6e23ac7d303d26d6c3d4c7058e5b4566319fe9b15b2857c6a2f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2434888.077162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02039b8c1214e97048a000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:51:55.000Z'}}, {'blockNum': '0x8626c1', 'uniqueId': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4:log:0', 'hash': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:00:40.000Z'}}, {'blockNum': '0x8626c1', 'uniqueId': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4:log:2', 'hash': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:00:40.000Z'}}, {'blockNum': '0x8626c4', 'uniqueId': '0xb271e49c1acb781e57efc0bc8c178e3dcb56e953f28ca0ba34087a01ec8e7eaa:log:15', 'hash': '0xb271e49c1acb781e57efc0bc8c178e3dcb56e953f28ca0ba34087a01ec8e7eaa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 1531.20195855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x5301b224a543265c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:01:10.000Z'}}, {'blockNum': '0x8626c6', 'uniqueId': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292:log:2', 'hash': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:01:45.000Z'}}, {'blockNum': '0x8626c6', 'uniqueId': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292:log:3', 'hash': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:01:45.000Z'}}, {'blockNum': '0x8626c8', 'uniqueId': '0xc5ac8ab9a7177279f8a4246eb3cf49f3cfe818507d58072253c4332a47675190:log:3', 'hash': '0xc5ac8ab9a7177279f8a4246eb3cf49f3cfe818507d58072253c4332a47675190', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 139292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1d7f08d1bf5acef00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:02:06.000Z'}}, {'blockNum': '0x8626c8', 'uniqueId': '0xf28d82e799e210d86bf2decc9ad8d9a32bdc4edd3082a450a1a8410709c58e9c:log:4', 'hash': '0xf28d82e799e210d86bf2decc9ad8d9a32bdc4edd3082a450a1a8410709c58e9c', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 47903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a24d3ab5b07511c0000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:02:06.000Z'}}, {'blockNum': '0x8626d4', 'uniqueId': '0x6054fa4d861823770e563413b9e5231653c4c53fd8a35beec32f1dd111473d83:log:2', 'hash': '0x6054fa4d861823770e563413b9e5231653c4c53fd8a35beec32f1dd111473d83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9a01f038be36b3d4dbf545251a591ab91ec28e33', 'value': 22101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x04ae18fd03e22c340000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:04:43.000Z'}}, {'blockNum': '0x8626e4', 'uniqueId': '0x6ff3b5cd015a5fe2a48ded2048fd14463e6f48a241b43ac5b66cd6f6fe09c1ee:log:0', 'hash': '0x6ff3b5cd015a5fe2a48ded2048fd14463e6f48a241b43ac5b66cd6f6fe09c1ee', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 504000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6ab9e50e1d8e4b000000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:09:05.000Z'}}, {'blockNum': '0x8626e5', 'uniqueId': '0x86465cb8a576f6aeddd8d6f1e8ba4ffe5c3e9cffc66ab10023696d8738d9bd42:log:0', 'hash': '0x86465cb8a576f6aeddd8d6f1e8ba4ffe5c3e9cffc66ab10023696d8738d9bd42', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 49460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a793b628db064500000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:09:21.000Z'}}, {'blockNum': '0x8626e5', 'uniqueId': '0xe98ee7d0c887ef17b2fb9b38d6bbfd7f402a7726cd6d20a61b255fc32159217b:log:28', 'hash': '0xe98ee7d0c887ef17b2fb9b38d6bbfd7f402a7726cd6d20a61b255fc32159217b', 'from': '0x9a01f038be36b3d4dbf545251a591ab91ec28e33', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 22101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x04ae18fd03e22c340000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:09:21.000Z'}}, {'blockNum': '0x8626f2', 'uniqueId': '0xf1ac0715c001748d367e86d134804b71c8c844a28bc935f53a03063dc73cdf4b:log:0', 'hash': '0xf1ac0715c001748d367e86d134804b71c8c844a28bc935f53a03063dc73cdf4b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 506000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6b2650a1791a08400000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:11:21.000Z'}}, {'blockNum': '0x8626f4', 'uniqueId': '0x3f82413140f5507b273553638c1d0eb97c59fcf99c62478103ecc1afecd607ee:log:123', 'hash': '0x3f82413140f5507b273553638c1d0eb97c59fcf99c62478103ecc1afecd607ee', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1531.20195855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x5301b224a543265c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:12:04.000Z'}}, {'blockNum': '0x8626f4', 'uniqueId': '0xc7f7970ed9b9eb7d4153b9107c4a1a44ea49053c41a78e8e8955d13e698c5add:log:128', 'hash': '0xc7f7970ed9b9eb7d4153b9107c4a1a44ea49053c41a78e8e8955d13e698c5add', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a24d3ab5b07511c0000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:12:04.000Z'}}, {'blockNum': '0x86271f', 'uniqueId': '0x7434c34ebbacadf1f91098310d0a9a82f3cc42ec9b28ba3650a7aaeebb68408f:log:76', 'hash': '0x7434c34ebbacadf1f91098310d0a9a82f3cc42ec9b28ba3650a7aaeebb68408f', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1010000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd5e035af96a853400000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:22:00.000Z'}}, {'blockNum': '0x86271f', 'uniqueId': '0xc86f3ed017159d2fe2996b4214d53dbdb2afac43c2c8ed85685da9e7828d980b:log:77', 'hash': '0xc86f3ed017159d2fe2996b4214d53dbdb2afac43c2c8ed85685da9e7828d980b', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 139292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1d7f08d1bf5acef00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:22:00.000Z'}}, {'blockNum': '0x86271f', 'uniqueId': '0x5049c7b0b2b2af9574626ba21f04be7fd952a4d54ab3ab96a052d01122507553:log:81', 'hash': '0x5049c7b0b2b2af9574626ba21f04be7fd952a4d54ab3ab96a052d01122507553', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a793b628db064500000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:22:00.000Z'}}, {'blockNum': '0x862c74', 'uniqueId': '0x1096fc9069e9c09b21787766fc38e0c10a64b5da57ea1d8a679f19198f83f821:log:5', 'hash': '0x1096fc9069e9c09b21787766fc38e0c10a64b5da57ea1d8a679f19198f83f821', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 221284.9541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x2edbe1a35803ff434000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:28:15.000Z'}}, {'blockNum': '0x862c92', 'uniqueId': '0xbe7163de5d14a23171f632f009351a3cb19e01b3322549afb7f67b36676eb406:log:7', 'hash': '0xbe7163de5d14a23171f632f009351a3cb19e01b3322549afb7f67b36676eb406', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4937e685e4581e9155e671658caf5c5ea9184192', 'value': 89912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x130a23a849ceb9e00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:34:39.000Z'}}, {'blockNum': '0x862cb8', 'uniqueId': '0x66390bc48df5ecfae489003b1303b49d143b7735f91732c6c9e7eb29bb7c420e:log:4', 'hash': '0x66390bc48df5ecfae489003b1303b49d143b7735f91732c6c9e7eb29bb7c420e', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 221284.9541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x2edbe1a35803ff434000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:43:31.000Z'}}, {'blockNum': '0x862cb8', 'uniqueId': '0x1748953625b6e8d7ee91e0294325ff1349c80ceec004f778c9843175782d2643:log:10', 'hash': '0x1748953625b6e8d7ee91e0294325ff1349c80ceec004f778c9843175782d2643', 'from': '0x4937e685e4581e9155e671658caf5c5ea9184192', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 89912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x130a23a849ceb9e00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:43:31.000Z'}}, {'blockNum': '0x862d22', 'uniqueId': '0x3a56f306db8fcf3d0b553a1404316d251c2d08248e2f5e213073ef2dab0420bd:log:6', 'hash': '0x3a56f306db8fcf3d0b553a1404316d251c2d08248e2f5e213073ef2dab0420bd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 774450.27333875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xa3ff088fa4306ea16c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:05:58.000Z'}}, {'blockNum': '0x862d22', 'uniqueId': '0x198e4a0406fbfaa721cc1f8d5dbef504b543d9264db269e89e6d5253a56ff797:log:9', 'hash': '0x198e4a0406fbfaa721cc1f8d5dbef504b543d9264db269e89e6d5253a56ff797', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 238915.7473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x3297a60b837843d24000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:05:58.000Z'}}, {'blockNum': '0x862d29', 'uniqueId': '0x2c9dee7a50ac323adbbe645877231a845d15cac1c1dc0f495d47c003e70a7978:log:3', 'hash': '0x2c9dee7a50ac323adbbe645877231a845d15cac1c1dc0f495d47c003e70a7978', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1358975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x011fc62eafa5dd7a9c0000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:07:55.000Z'}}, {'blockNum': '0x862d2e', 'uniqueId': '0x781779db5b7fb324137a5cf6f6d53034193de2de437c3ecdcdafbb8b40eb8b78:log:2', 'hash': '0x781779db5b7fb324137a5cf6f6d53034193de2de437c3ecdcdafbb8b40eb8b78', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'value': 1000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c261325e6fe5f40000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:09:12.000Z'}}, {'blockNum': '0x862d5b', 'uniqueId': '0x3289f871c73957cba879fc98fe53a754420033769aea8ac8c68568c0ed305dce:log:5', 'hash': '0x3289f871c73957cba879fc98fe53a754420033769aea8ac8c68568c0ed305dce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c261325e6fe5f40000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:19:10.000Z'}}, {'blockNum': '0x862d83', 'uniqueId': '0xa8136deb40bddb48b3db09b2d11d4b11d1503d5aab4acb55a6c333d6f1789c3b:log:13', 'hash': '0xa8136deb40bddb48b3db09b2d11d4b11d1503d5aab4acb55a6c333d6f1789c3b', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 774450.27333875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xa3ff088fa4306ea16c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:29:06.000Z'}}, {'blockNum': '0x862d83', 'uniqueId': '0xea4cf1c6f61c414be6f5e41272f77324d1a1eaaca1b724dc11809eac263fa614:log:15', 'hash': '0xea4cf1c6f61c414be6f5e41272f77324d1a1eaaca1b724dc11809eac263fa614', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 238915.7473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x3297a60b837843d24000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:29:06.000Z'}}, {'blockNum': '0x862d83', 'uniqueId': '0x1863cc30c56db14946dbff39888f770f8538fdc6d6379685318299ef623c17aa:log:19', 'hash': '0x1863cc30c56db14946dbff39888f770f8538fdc6d6379685318299ef623c17aa', 'from': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c261325e6fe5f40000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:29:06.000Z'}}, {'blockNum': '0x862de9', 'uniqueId': '0xd27a2e07b96f47a0686bff22c53240c4f112ebd6bce61ab348bf2aedb7ceb510:log:3', 'hash': '0xd27a2e07b96f47a0686bff22c53240c4f112ebd6bce61ab348bf2aedb7ceb510', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 153042.3218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x206870de1820a4c08000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:50:15.000Z'}}, {'blockNum': '0x862e18', 'uniqueId': '0xdeeccefcc84814b2cd0aa911fc9fb076cfdbe580504d904f4c8a9ad162ff7a7c:log:94', 'hash': '0xdeeccefcc84814b2cd0aa911fc9fb076cfdbe580504d904f4c8a9ad162ff7a7c', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 153042.3218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x206870de1820a4c08000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T01:02:14.000Z'}}, {'blockNum': '0x8630c0', 'uniqueId': '0x73ca417b71f70d161be3f10d474fca4b88c02145533ce178957753e202997b1f:log:2', 'hash': '0x73ca417b71f70d161be3f10d474fca4b88c02145533ce178957753e202997b1f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'value': 1000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c25351a7bc3e900000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:29:23.000Z'}}, {'blockNum': '0x8630eb', 'uniqueId': '0xb1c224ab48f869605cf32b71775479a92b8c162a1c7eeeba53031713d3f323f5:log:59', 'hash': '0xb1c224ab48f869605cf32b71775479a92b8c162a1c7eeeba53031713d3f323f5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1484376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x013a542f27aee462600000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:37:03.000Z'}}, {'blockNum': '0x86310c', 'uniqueId': '0xccc1a9b5a303790c44d6269388e3d385c856f9957edad8d3839fca0711f0d5af:log:0', 'hash': '0xccc1a9b5a303790c44d6269388e3d385c856f9957edad8d3839fca0711f0d5af', 'from': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c25351a7bc3e900000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:43:37.000Z'}}, {'blockNum': '0x863143', 'uniqueId': '0x9828ab8a4be0bd2acb814938023f0cd6d0d7e6233a48828d5866b56731b51415:log:14', 'hash': '0x9828ab8a4be0bd2acb814938023f0cd6d0d7e6233a48828d5866b56731b51415', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 776113.00005859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xa4592b879a6144472c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:54:11.000Z'}}, {'blockNum': '0x863143', 'uniqueId': '0x483a1ffca1057b1fba15a05281d8d4a86147f5b0281b7bc504b353310223b5b1:log:15', 'hash': '0x483a1ffca1057b1fba15a05281d8d4a86147f5b0281b7bc504b353310223b5b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 152953.3218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x20639dbe93ab72fc8000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:54:11.000Z'}}]}}
Number of returned transfers:  48
Answer is complete
 
symbol             NAV
group              WCG
date        2020-01-16
hour             19:00
exchange       binance
Name: 615, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2020-01-16 19:00:00 2020-01-16 07:00:00 2020-01-17 07:00:00
Unix timestamps:  1579154400.0 1579240800.0
Hex Block Numbers:  0x8dc2cc 0x8ddc4f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SYS
group              TWP
date        2020-07-16
hour             18:00
exchange       binance
Name: 616, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SYS, Contract: 
Datetime timestamps:  2020-07-16 18:00:00 2020-07-16 06:00:00 2020-07-17 06:00:00
Unix timestamps:  1594872000.0 1594958400.0
Hex Block Numbers:  0x9fbba3 0x9fd49b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GVT
group              TWP
date        2020-10-14
hour             18:00
exchange       binance
Name: 617, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-10-14 18:00:00 2020-10-14 06:00:00 2020-10-15 06:00:00
Unix timestamps:  1602648000.0 1602734400.0
Hex Block Numbers:  0xa8a1e0 0xa8bbc1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             OAX
group              TWP
date        2020-10-18
hour             18:00
exchange       binance
Name: 618, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-10-18 18:00:00 2020-10-18 06:00:00 2020-10-19 06:00:00
Unix timestamps:  1602993600.0 1603080000.0
Hex Block Numbers:  0xa907f1 0xa92179
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa908ed', 'uniqueId': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c:log:88', 'hash': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T04:56:29.000Z'}}, {'blockNum': '0xa909a8', 'uniqueId': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d:log:0', 'hash': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d', 'from': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'to': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T05:33:11.000Z'}}, {'blockNum': '0xa90b9a', 'uniqueId': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b:log:16', 'hash': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 2650.3261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8faca9c9eba6694000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:25:36.000Z'}}, {'blockNum': '0xa90bbd', 'uniqueId': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e:log:16', 'hash': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 189569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x28248e5b606469640000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:35:12.000Z'}}, {'blockNum': '0xa916d6', 'uniqueId': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd:log:2', 'hash': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:03.000Z'}}, {'blockNum': '0xa916d9', 'uniqueId': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384:log:0', 'hash': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:56.000Z'}}, {'blockNum': '0xa917f0', 'uniqueId': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb:log:59', 'hash': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:01:22.000Z'}}, {'blockNum': '0xa917f5', 'uniqueId': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9:log:6', 'hash': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9', 'from': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:02:47.000Z'}}, {'blockNum': '0xa91807', 'uniqueId': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4:log:32', 'hash': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:06:07.000Z'}}, {'blockNum': '0xa9180f', 'uniqueId': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a:log:16', 'hash': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:08:50.000Z'}}, {'blockNum': '0xa9182b', 'uniqueId': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c:log:23', 'hash': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c', 'from': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'to': '0xee61f5fb0db81d3a09392375ee96f723c0620e07', 'value': 6237.16825793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01521e18fca7539ee400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:16:33.000Z'}}, {'blockNum': '0xa91bd7', 'uniqueId': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084:log:134', 'hash': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T22:47:53.000Z'}}, {'blockNum': '0xa91c37', 'uniqueId': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532:log:248', 'hash': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 1109.7472995507262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3c28d6693f8a0c9a5a', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T23:10:16.000Z'}}]}}
Number of returned transfers:  13
Answer is complete
 
symbol             PPT
group              TWP
date        2020-10-21
hour             18:00
exchange       binance
Name: 619, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-10-21 18:00:00 2020-10-21 06:00:00 2020-10-22 06:00:00
Unix timestamps:  1603252800.0 1603339200.0
Hex Block Numbers:  0xa9547d 0xa96de5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa954fb', 'uniqueId': '0xf733f06449a7a4ddfa98ab56c953d355dce3e17ec33712a89e911d9292322c52:log:221', 'hash': '0xf733f06449a7a4ddfa98ab56c953d355dce3e17ec33712a89e911d9292322c52', 'from': '0x8e482bf2b636a34fe9626f82e88d409df362ec97', 'to': '0xc50efa7c786d83d6f010c802bf513d1183eb90aa', 'value': 642.444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef543bf80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T04:29:41.000Z'}}, {'blockNum': '0xa95783', 'uniqueId': '0x66909a438c4cafd96e4f8140bf527bc617b72264f91422975dcddaf591b45e00:log:14', 'hash': '0x66909a438c4cafd96e4f8140bf527bc617b72264f91422975dcddaf591b45e00', 'from': '0xd6c57c37e56aa4816d9cc1927a34bc1c771f8f59', 'to': '0xabce47738cbf51f78b517ddc7fe6b96534fc243c', 'value': 10006.772051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8fd02646c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T06:50:43.000Z'}}, {'blockNum': '0xa95915', 'uniqueId': '0xffed573350dbba26494b13f431b00092ef0709be6e0ac3a651fbe93c851000a3:log:51', 'hash': '0xffed573350dbba26494b13f431b00092ef0709be6e0ac3a651fbe93c851000a3', 'from': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'to': '0x0a1f9fe037dd61c687a68821d0c2843d1a17c105', 'value': 1776.4500043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x295c7796ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T08:19:05.000Z'}}, {'blockNum': '0xa95c75', 'uniqueId': '0x27fe2f8578660f3f5c18e705dff57e89ea007d2b1a10a6d6a062078ca4ea432f:log:20', 'hash': '0x27fe2f8578660f3f5c18e705dff57e89ea007d2b1a10a6d6a062078ca4ea432f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2217bf2502f2482b2ce1e39f9eebf4e649d46803', 'value': 96.03505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x023c69db68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:34:20.000Z'}}, {'blockNum': '0xa95c8e', 'uniqueId': '0x506da9d5ffded5a70f386eae807782dc6611297458d6a6e5b3946d54f51416a3:log:238', 'hash': '0x506da9d5ffded5a70f386eae807782dc6611297458d6a6e5b3946d54f51416a3', 'from': '0xc8c09eaa6d46fbd4277106a8c14178d45e90dbba', 'to': '0x65fc1551d002fb5b219d5374252d6642642040fa', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:40:25.000Z'}}, {'blockNum': '0xa95ca0', 'uniqueId': '0xa92518e2d547a8d1b26f45cdfe3204f904639855bfd12d5200c9005cd481d6f3:log:209', 'hash': '0xa92518e2d547a8d1b26f45cdfe3204f904639855bfd12d5200c9005cd481d6f3', 'from': '0x65fc1551d002fb5b219d5374252d6642642040fa', 'to': '0x24ba1542f8a0a20e8251d096213384cfb0ee3dbc', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:43:31.000Z'}}, {'blockNum': '0xa95cf8', 'uniqueId': '0x53d0425688cffaf05a7af60f2263961d25c45a7a2aa7fc7d17ac2078322afafa:log:52', 'hash': '0x53d0425688cffaf05a7af60f2263961d25c45a7a2aa7fc7d17ac2078322afafa', 'from': '0xabce47738cbf51f78b517ddc7fe6b96534fc243c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10006.772051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8fd02646c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:00:18.000Z'}}, {'blockNum': '0xa95d3b', 'uniqueId': '0x1a809e49d4dcfe1e8baed3dec04b4ece3948c90e45c1f4dbdf5d7f4181a7f0f8:log:104', 'hash': '0x1a809e49d4dcfe1e8baed3dec04b4ece3948c90e45c1f4dbdf5d7f4181a7f0f8', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x4490365c6750515b502850dfd30c58dcd5d807c9', 'value': 1604.66397831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x255c8aea87', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:13:21.000Z'}}, {'blockNum': '0xa95d46', 'uniqueId': '0xf53c80b13937a701f55e3253eaee29299ceeedef3c727e2cbac2b69d90a7169d:log:42', 'hash': '0xf53c80b13937a701f55e3253eaee29299ceeedef3c727e2cbac2b69d90a7169d', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 534.88799277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c742e4e2d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:15:07.000Z'}}, {'blockNum': '0xa95d4d', 'uniqueId': '0xf2c8798a8d7cb1cecade89145b9197e76afd57512d37e5e58a8cc45e8fa09734:log:123', 'hash': '0xf2c8798a8d7cb1cecade89145b9197e76afd57512d37e5e58a8cc45e8fa09734', 'from': '0x4490365c6750515b502850dfd30c58dcd5d807c9', 'to': '0x777634c1f8cb1a39c351ba19a3dd3643929ba5e4', 'value': 1604.66397831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x255c8aea87', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:16:32.000Z'}}, {'blockNum': '0xa95de2', 'uniqueId': '0x77f64369137098be2140aa4c8ab50a25cfeec117b584b41319907cca0b41715d:log:206', 'hash': '0x77f64369137098be2140aa4c8ab50a25cfeec117b584b41319907cca0b41715d', 'from': '0x4e6e194f41bf8b462105065cd5a99751392c3008', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 150.23865491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037f7dfe93', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:48:20.000Z'}}, {'blockNum': '0xa95f3e', 'uniqueId': '0x4e92c0355d18f88127ee6bca5fbd0de22014c3a73041246b5f5c06158ffc39d7:log:251', 'hash': '0x4e92c0355d18f88127ee6bca5fbd0de22014c3a73041246b5f5c06158ffc39d7', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xfbc2a1da2a8d36004bfe4105245eca89e656be75', 'value': 186.7403365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04590f23f2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T14:06:46.000Z'}}, {'blockNum': '0xa95fdd', 'uniqueId': '0x3fd06730d027a03d37cbccde5a42efaf8087ab76b6b70d385e6cc4f3347ca631:log:52', 'hash': '0x3fd06730d027a03d37cbccde5a42efaf8087ab76b6b70d385e6cc4f3347ca631', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4d3b19858b9b70d5c67a84e23589a3a9e2077765', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032a9f8800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T14:43:11.000Z'}}, {'blockNum': '0xa96046', 'uniqueId': '0x8a60a9f284235def94f7685927c8da6ab3834e691aeac1e2ba25b0b98e6bc429:log:201', 'hash': '0x8a60a9f284235def94f7685927c8da6ab3834e691aeac1e2ba25b0b98e6bc429', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d3b19858b9b70d5c67a84e23589a3a9e2077765', 'value': 78510.14986835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0723f4f59c53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T15:08:21.000Z'}}, {'blockNum': '0xa96111', 'uniqueId': '0x694249c72ffdc7f6d9e2513e338fc93391ccb1766ea061e00e4fa676fc388804:log:277', 'hash': '0x694249c72ffdc7f6d9e2513e338fc93391ccb1766ea061e00e4fa676fc388804', 'from': '0xf68ab127080d0784c25f4cbfe01d7c4ed64eaf68', 'to': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T15:50:14.000Z'}}, {'blockNum': '0xa9622e', 'uniqueId': '0x129674a5f1282e3c67ac94ac59b5e6d7afd49d4205677d25294e90f0d01d1261:log:265', 'hash': '0x129674a5f1282e3c67ac94ac59b5e6d7afd49d4205677d25294e90f0d01d1261', 'from': '0x75fd9c718302bf04e70db74d68fb43fe97854fc2', 'to': '0xb3612d04f0f3f25685dc0ffed3095e920f7fb350', 'value': 781.91464038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1234930e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T16:52:22.000Z'}}, {'blockNum': '0xa9623d', 'uniqueId': '0xc3fc737dcc9e99b6ff67a9d8b127dc19b10b9894987a89e4cbf9fc9dd5723b06:log:360', 'hash': '0xc3fc737dcc9e99b6ff67a9d8b127dc19b10b9894987a89e4cbf9fc9dd5723b06', 'from': '0xb3612d04f0f3f25685dc0ffed3095e920f7fb350', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 781.91464038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1234930e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T16:57:20.000Z'}}, {'blockNum': '0xa9631a', 'uniqueId': '0x3b67d4e3139c32e4f06bead1a749fbf656375f5bba812c54ed86243dceff2512:log:157', 'hash': '0x3b67d4e3139c32e4f06bead1a749fbf656375f5bba812c54ed86243dceff2512', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeed6d8684f0199cc447fefcdb343d85a05d24d32', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T17:45:08.000Z'}}, {'blockNum': '0xa96346', 'uniqueId': '0x316fad5dd9c77529c7121f17f78e7ca44da2ef6ec85d3c19adafaf51aee77081:log:35', 'hash': '0x316fad5dd9c77529c7121f17f78e7ca44da2ef6ec85d3c19adafaf51aee77081', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x1448be8f5fef7448ade238d5e0e6337e374b1a68', 'value': 58.244115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015b29776c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T17:56:20.000Z'}}, {'blockNum': '0xa96391', 'uniqueId': '0x3f2625fecbbd9dc84274ec22da6ff9c9cd03c9a8c85f8a20f8fcaf017478a5ca:log:174', 'hash': '0x3f2625fecbbd9dc84274ec22da6ff9c9cd03c9a8c85f8a20f8fcaf017478a5ca', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x2d0cb18f6c438ccce7debfdedb9018b2d08e5425', 'value': 772.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11faea57b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:13:20.000Z'}}, {'blockNum': '0xa963dc', 'uniqueId': '0x12ffc236a2ca8f9de597e732bdd45904d714be4a7f2c9240169df65a4d5eb6b4:log:190', 'hash': '0x12ffc236a2ca8f9de597e732bdd45904d714be4a7f2c9240169df65a4d5eb6b4', 'from': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:30:20.000Z'}}, {'blockNum': '0xa963e8', 'uniqueId': '0x19aa7811e4a516a5e45e858e12bb78ef7674ecaf4cbd896bb52409e2ce7252cb:log:307', 'hash': '0x19aa7811e4a516a5e45e858e12bb78ef7674ecaf4cbd896bb52409e2ce7252cb', 'from': '0x2d0cb18f6c438ccce7debfdedb9018b2d08e5425', 'to': '0x1eb0fd75d347a4faaaeed9653c3d148738b8ea50', 'value': 372.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aabac7b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:32:45.000Z'}}, {'blockNum': '0xa963f5', 'uniqueId': '0x919349ded6718e4f3f72f2f649128664f23cc847a93044a1ce7b39a0504bb435:log:247', 'hash': '0x919349ded6718e4f3f72f2f649128664f23cc847a93044a1ce7b39a0504bb435', 'from': '0x1eb0fd75d347a4faaaeed9653c3d148738b8ea50', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 372.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aabac7b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:35:39.000Z'}}, {'blockNum': '0xa963fe', 'uniqueId': '0xbd9e17d20d8e59e9b7f56aa1c07141746f11462e89ae2ee6ac0d6ce4ca17656a:log:277', 'hash': '0xbd9e17d20d8e59e9b7f56aa1c07141746f11462e89ae2ee6ac0d6ce4ca17656a', 'from': '0xc53fddeb3f7780e1249f13baf021cc18d3812f83', 'to': '0x16df71dd45af233d2265e57002908b8fcf5b13b3', 'value': 704.5168583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10673f69c6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:38:51.000Z'}}, {'blockNum': '0xa96406', 'uniqueId': '0x517102ef8edb6647c12ef3c2a7ffc4c85124e3c72cd61f6ead5267e844c23d0c:log:212', 'hash': '0x517102ef8edb6647c12ef3c2a7ffc4c85124e3c72cd61f6ead5267e844c23d0c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 1528.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x23964ec500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:40:32.000Z'}}, {'blockNum': '0xa96459', 'uniqueId': '0x0ce64017f435b0f9d97068a9d1dc4c425778ea654c6c1d5a8192736e1571b83e:log:55', 'hash': '0x0ce64017f435b0f9d97068a9d1dc4c425778ea654c6c1d5a8192736e1571b83e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc53fddeb3f7780e1249f13baf021cc18d3812f83', 'value': 666.1368583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f827c2e46', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:00:24.000Z'}}, {'blockNum': '0xa9650e', 'uniqueId': '0xbdce316c5ba13c0567ddc55250cfc841988f37a4932674e5e56409b00ccfd246:log:70', 'hash': '0xbdce316c5ba13c0567ddc55250cfc841988f37a4932674e5e56409b00ccfd246', 'from': '0x694bf88ebe333ec2f783fa02eb2674d132d603e5', 'to': '0xc397ffa9377a94a784795e1c5b9575cba2fd9b0f', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:44:28.000Z'}}, {'blockNum': '0xa96525', 'uniqueId': '0x955b8c6380ea2c84eb72535666f9bc92a5a4245d91524604607c15fb2a3a699c:log:207', 'hash': '0x955b8c6380ea2c84eb72535666f9bc92a5a4245d91524604607c15fb2a3a699c', 'from': '0x694bf88ebe333ec2f783fa02eb2674d132d603e5', 'to': '0xc397ffa9377a94a784795e1c5b9575cba2fd9b0f', 'value': 2845.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x423ee470c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:50:14.000Z'}}, {'blockNum': '0xa965c1', 'uniqueId': '0x3d0d2171cdbc1f5edc5de8cb8711bf9702434bc309109387b4282e0b91fdb0d9:log:319', 'hash': '0x3d0d2171cdbc1f5edc5de8cb8711bf9702434bc309109387b4282e0b91fdb0d9', 'from': '0x56aa3bb0668d3c0c54ccf108775eeda4399828d7', 'to': '0xf88e50fee72d1036306f6b6f09a8e74164c3a4d7', 'value': 83.17194501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01efbe5105', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:23:29.000Z'}}, {'blockNum': '0xa965d1', 'uniqueId': '0x4af6805da6b7a7e22d4913cad52669b70e97efc759cbc89f7df6cae64ef44705:log:84', 'hash': '0x4af6805da6b7a7e22d4913cad52669b70e97efc759cbc89f7df6cae64ef44705', 'from': '0xf88e50fee72d1036306f6b6f09a8e74164c3a4d7', 'to': '0x24ba1542f8a0a20e8251d096213384cfb0ee3dbc', 'value': 83.17194501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01efbe5105', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:26:24.000Z'}}, {'blockNum': '0xa96616', 'uniqueId': '0xfd139fe2710cc81371acd5bd023a42ca6ced4f4dc2868868aba2f4af20bff8b8:log:35', 'hash': '0xfd139fe2710cc81371acd5bd023a42ca6ced4f4dc2868868aba2f4af20bff8b8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7df0fb47bd6123a5106c915e512e857e15fd7b42', 'value': 107.0361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027dfc2090', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:40:52.000Z'}}, {'blockNum': '0xa966ab', 'uniqueId': '0xe54499f3db1b80187b3961693b4a8efd9722e24f260f6c0eeeffc586ab52827e:log:63', 'hash': '0xe54499f3db1b80187b3961693b4a8efd9722e24f260f6c0eeeffc586ab52827e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x96b70ed819ed2854c47878e4e5532e98ca8af7d5', 'value': 124.51311213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e627ee6d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:15:41.000Z'}}, {'blockNum': '0xa96708', 'uniqueId': '0x590c114e5a286588616754be2fbea84f1a57049e0fdbe7f5b558ff1a8b63b43e:log:171', 'hash': '0x590c114e5a286588616754be2fbea84f1a57049e0fdbe7f5b558ff1a8b63b43e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:35:28.000Z'}}, {'blockNum': '0xa96715', 'uniqueId': '0x12628af6d79560c024e57d05746885706188a12d275d3e5f1b119a31345f4e2d:log:32', 'hash': '0x12628af6d79560c024e57d05746885706188a12d275d3e5f1b119a31345f4e2d', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:38:42.000Z'}}, {'blockNum': '0xa96719', 'uniqueId': '0x975e5c0753470fde6135f7b9654959d798538609ae68c1dbb8bfc8b11ab8d7fc:log:84', 'hash': '0x975e5c0753470fde6135f7b9654959d798538609ae68c1dbb8bfc8b11ab8d7fc', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:39:18.000Z'}}, {'blockNum': '0xa9671b', 'uniqueId': '0xb74d1ee03871eeaa91a90bc56e9b78a5fb562abf4cdddcff684948614e557cc2:log:46', 'hash': '0xb74d1ee03871eeaa91a90bc56e9b78a5fb562abf4cdddcff684948614e557cc2', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:40:13.000Z'}}, {'blockNum': '0xa9671e', 'uniqueId': '0x3342f0bdaf45ea258e60ac632d18b9ff41821f0bd43aae429ae5fd23740225aa:log:60', 'hash': '0x3342f0bdaf45ea258e60ac632d18b9ff41821f0bd43aae429ae5fd23740225aa', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:41:28.000Z'}}, {'blockNum': '0xa96724', 'uniqueId': '0x174cae26f7600caab1dff91cb56cb23fad2f5cdbbd5375b80777530b441cc751:log:34', 'hash': '0x174cae26f7600caab1dff91cb56cb23fad2f5cdbbd5375b80777530b441cc751', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:42:50.000Z'}}, {'blockNum': '0xa96782', 'uniqueId': '0x81691373004f862b0bc28260f6e6376ccbba811932f490e622fa81f17bb1f1d5:log:64', 'hash': '0x81691373004f862b0bc28260f6e6376ccbba811932f490e622fa81f17bb1f1d5', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:01:49.000Z'}}, {'blockNum': '0xa96782', 'uniqueId': '0x152a82a1cf6137dd93c8b6e6630bd201a66d681cd885d2f3170276f5c9dd7c1e:log:67', 'hash': '0x152a82a1cf6137dd93c8b6e6630bd201a66d681cd885d2f3170276f5c9dd7c1e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:01:49.000Z'}}, {'blockNum': '0xa96786', 'uniqueId': '0x315c2b40be3f1e9de185187cb80608886b7ada576e47fd9cf2c8e6d9df3ba9a7:log:10', 'hash': '0x315c2b40be3f1e9de185187cb80608886b7ada576e47fd9cf2c8e6d9df3ba9a7', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:08.000Z'}}, {'blockNum': '0xa96786', 'uniqueId': '0x8b1f947409dec8d869b46409866bc47e4d211a4503f98949107f110cb2e4a991:log:11', 'hash': '0x8b1f947409dec8d869b46409866bc47e4d211a4503f98949107f110cb2e4a991', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:08.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0xd4c74d18aa02c825e349a15a4725b260509cde0da8e081c3e1f46962ec1f9b4e:log:20', 'hash': '0xd4c74d18aa02c825e349a15a4725b260509cde0da8e081c3e1f46962ec1f9b4e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0x8c2a17cab487474d14583c654bbd5c3372967b50a288f77868cd66ff25470f87:log:21', 'hash': '0x8c2a17cab487474d14583c654bbd5c3372967b50a288f77868cd66ff25470f87', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0xd6af298920ea4cae22c5ca80bd20117cb37d8b98743c94fa9900919834db5bff:log:22', 'hash': '0xd6af298920ea4cae22c5ca80bd20117cb37d8b98743c94fa9900919834db5bff', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa9678e', 'uniqueId': '0x90d4d72a13fd862cdc9a5486424ea3dd1e72de1d93f51873cda38fd6d6e83bb3:log:133', 'hash': '0x90d4d72a13fd862cdc9a5486424ea3dd1e72de1d93f51873cda38fd6d6e83bb3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:04:30.000Z'}}, {'blockNum': '0xa96805', 'uniqueId': '0x978df893658e0656ab9ae54474847682bd4b70a4325d7ffc24d2af896a3681a3:log:33', 'hash': '0x978df893658e0656ab9ae54474847682bd4b70a4325d7ffc24d2af896a3681a3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:31:24.000Z'}}, {'blockNum': '0xa9680d', 'uniqueId': '0x968953caef00a9d38cc023242bdb04f23be52cf3960f3d72084c408572cced6f:log:38', 'hash': '0x968953caef00a9d38cc023242bdb04f23be52cf3960f3d72084c408572cced6f', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:32:39.000Z'}}, {'blockNum': '0xa9682c', 'uniqueId': '0x2963a91ccb1fab54a846739f3b7088625b3eec6b5068f31615ec29aa853cce03:log:20', 'hash': '0x2963a91ccb1fab54a846739f3b7088625b3eec6b5068f31615ec29aa853cce03', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6fc7d7a73e712c234221e4b9e8aac42a65fefcfb', 'value': 958.69491675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16524459db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:39:00.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xc667f819810b17d52c8bff0f9f157ff78cb9451b3eebbb59565dce620b8880f9:log:66', 'hash': '0xc667f819810b17d52c8bff0f9f157ff78cb9451b3eebbb59565dce620b8880f9', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xbed009e199152531209dedc112d687d8c757f7c70784d87a44a6b85b34db1289:log:67', 'hash': '0xbed009e199152531209dedc112d687d8c757f7c70784d87a44a6b85b34db1289', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0x66f9b208c8255bf81d6cc7a14ec685f6b1373f74fa351d654c44c202cc70cf92:log:68', 'hash': '0x66f9b208c8255bf81d6cc7a14ec685f6b1373f74fa351d654c44c202cc70cf92', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0x202ed608005d2f929644271e80d524093fec3941097bfec2d155032f99489833:log:69', 'hash': '0x202ed608005d2f929644271e80d524093fec3941097bfec2d155032f99489833', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xc9270d9e4404c91070c6a2fab459efe4ff4aa32b2dc9c91723dc89ccc4fd7926:log:70', 'hash': '0xc9270d9e4404c91070c6a2fab459efe4ff4aa32b2dc9c91723dc89ccc4fd7926', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x49f5a9edd4cc328e59592792d98bef8b51d09e2f396a61626d9eaa7df5c523f3:log:20', 'hash': '0x49f5a9edd4cc328e59592792d98bef8b51d09e2f396a61626d9eaa7df5c523f3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x357849f43109af4b77766023b931aecf368ec7aee27f41112156f54971698464:log:21', 'hash': '0x357849f43109af4b77766023b931aecf368ec7aee27f41112156f54971698464', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0xdd2f82ef5c0deb5463d1cc34a99894c2bd8f3059b5e54a7657b60b29aba2580e:log:22', 'hash': '0xdd2f82ef5c0deb5463d1cc34a99894c2bd8f3059b5e54a7657b60b29aba2580e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x2b7951f49c491534e935e407c650a7b48fc6cc85d29de9ff345855b51d579d30:log:23', 'hash': '0x2b7951f49c491534e935e407c650a7b48fc6cc85d29de9ff345855b51d579d30', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x7bafb54c03fc4e057413b8a31c790a64412de912feafb95772bb193513d663dc:log:24', 'hash': '0x7bafb54c03fc4e057413b8a31c790a64412de912feafb95772bb193513d663dc', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa9688e', 'uniqueId': '0x43cd171b85a18953b49e560a25feb433d98f609aae42aa1e7e5c99a39ef9bad1:log:251', 'hash': '0x43cd171b85a18953b49e560a25feb433d98f609aae42aa1e7e5c99a39ef9bad1', 'from': '0xbc9990df22f469960b52dadfcfdac1ce13778d52', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 815.23529991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12fb2e5907', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:57:57.000Z'}}, {'blockNum': '0xa96936', 'uniqueId': '0x966c57e95fcda75d0a064ecefc8e49ad5f8aeca0a2ce9737c7ee04a702b944b1:log:96', 'hash': '0x966c57e95fcda75d0a064ecefc8e49ad5f8aeca0a2ce9737c7ee04a702b944b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee2f4168e281c039ba09222438b2f05c2c2ddcc4', 'value': 125.48958189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02ebf9e7ed', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T23:33:56.000Z'}}, {'blockNum': '0xa969c9', 'uniqueId': '0xeaefab198c413b17ec2e55467335690a83182b3d534f498c59bf93cdfcc5a7be:log:79', 'hash': '0xeaefab198c413b17ec2e55467335690a83182b3d534f498c59bf93cdfcc5a7be', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9d69b7378c222f3aaa5b86202ab3d151a9a8b54a', 'value': 3258.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4bdf823680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T00:04:56.000Z'}}, {'blockNum': '0xa96a12', 'uniqueId': '0x81e2868c42859c7c8db08414bb3be99a044acd7dcbadbb85bc04a25bb6994fc3:log:283', 'hash': '0x81e2868c42859c7c8db08414bb3be99a044acd7dcbadbb85bc04a25bb6994fc3', 'from': '0x6588be445e0e36a02f1ebaeca5219c5fc1a00e2c', 'to': '0xc5ab4a0b9fe13cfd09a043a30eb2be37bb4beed9', 'value': 203.809136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04becc0fc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T00:21:47.000Z'}}, {'blockNum': '0xa96ad5', 'uniqueId': '0x595619ba7f9ba6f9ae91d2d9a47dc895bd44d322a7c003ec2a8eef4bc91a9639:log:359', 'hash': '0x595619ba7f9ba6f9ae91d2d9a47dc895bd44d322a7c003ec2a8eef4bc91a9639', 'from': '0xe86e8f4134b158b4b14888d8660a013d6b93de58', 'to': '0xc151e91622711375eaeff148f2c13d88d377d7f7', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T01:05:11.000Z'}}, {'blockNum': '0xa96bb6', 'uniqueId': '0xda9297ca1d24f2be4a66611b0ae32aee3763a3a12eb437c1bd926dc8d06478b7:log:94', 'hash': '0xda9297ca1d24f2be4a66611b0ae32aee3763a3a12eb437c1bd926dc8d06478b7', 'from': '0x51cf7fdee1d03182679ea129cd0d5c2a5228bd5d', 'to': '0xbb5261898924a9890402e5d5b99c8b75b45a9e4a', 'value': 3553.9692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52bf4ea2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T01:55:15.000Z'}}, {'blockNum': '0xa96c73', 'uniqueId': '0x61e5eb953dfaf9b31d3d197c1993d5130bf192b6bf6f6ae33526ca0eafb5caa7:log:206', 'hash': '0x61e5eb953dfaf9b31d3d197c1993d5130bf192b6bf6f6ae33526ca0eafb5caa7', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8c633b628d1eb7e3c87c36614dbacf6f193bb3af', 'value': 1662.4396782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26b4e9a34c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:38:41.000Z'}}, {'blockNum': '0xa96c77', 'uniqueId': '0xe7d4a86b01d8bbea04f8da8d853ef0492a4cd98d1afc44af1e7bb067391d7428:log:154', 'hash': '0xe7d4a86b01d8bbea04f8da8d853ef0492a4cd98d1afc44af1e7bb067391d7428', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8c633b628d1eb7e3c87c36614dbacf6f193bb3af', 'value': 2086.2140991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3092ce1676', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:39:22.000Z'}}, {'blockNum': '0xa96c90', 'uniqueId': '0x2973682215d3b661a4d0e420dca40038860f2fe44da51465876baab68230af4e:log:94', 'hash': '0x2973682215d3b661a4d0e420dca40038860f2fe44da51465876baab68230af4e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 5841.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87ff9c0540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:45:44.000Z'}}, {'blockNum': '0xa96cab', 'uniqueId': '0x1cdaa42e188fc62e0b633d8fe3a2c442f188bdbdbfb780c65fa121364960eb4f:log:148', 'hash': '0x1cdaa42e188fc62e0b633d8fe3a2c442f188bdbdbfb780c65fa121364960eb4f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 40077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a51d88ed00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:51:13.000Z'}}]}}
Number of returned transfers:  69
Answer is complete
 
symbol           YOYOW
group              TWP
date        2020-11-01
hour             18:00
exchange       binance
Name: 620, dtype: object
HERE
 Symbol: YOYOW, Contract: 
Datetime timestamps:  2020-11-01 18:00:00 2020-11-01 06:00:00 2020-11-02 06:00:00
Unix timestamps:  1604206800.0 1604293200.0
Hex Block Numbers:  0xaa6d88 0xaa86bb
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            APPC
group              TWP
date        2020-11-04
hour             17:00
exchange       binance
Name: 621, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2020-11-04 17:00:00 2020-11-04 05:00:00 2020-11-05 05:00:00
Unix timestamps:  1604462400.0 1604548800.0
Hex Block Numbers:  0xaab8ab 0xaad22a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaab95d', 'uniqueId': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec:log:133', 'hash': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec', 'from': '0x330a72b49e06256bfe20a765f77d816a422b00a7', 'to': '0x47fef156fa29ae4ecb47e0c675eb4f9c55055d6a', 'value': 2758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x9582f0537d5f580000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T04:37:47.000Z'}}, {'blockNum': '0xaaba2a', 'uniqueId': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0:log:20', 'hash': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1375.65880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a9319d9778d99e000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:19:59.000Z'}}, {'blockNum': '0xaaba31', 'uniqueId': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc:log:90', 'hash': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x40abb42d126d918f6aa47e473fb8521d675529ca', 'value': 1329.15880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x480dc8a9d5a5efe000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:21:25.000Z'}}, {'blockNum': '0xaaba87', 'uniqueId': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653:log:3', 'hash': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653', 'from': '0xae5f5e76a6f539d69c1a3a8657b0d294fa59a883', 'to': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:38:41.000Z'}}, {'blockNum': '0xaaba8c', 'uniqueId': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3:log:133', 'hash': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3', 'from': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:40:40.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:98', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 128.9440879163896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06fd756cc8ef244638', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:99', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 15.169892696045837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xd2864908949adb15', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:100', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 7.5849463480229184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x694324844a4d6d8a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabc4d', 'uniqueId': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda:log:17', 'hash': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda', 'from': '0xbb9fb488edef50ec8ecc82b191703b5fb32393e2', 'to': '0x9553c0540ac0f923522849d6c603029b3d4e3cae', 'value': 640.58597771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x22b9ea90c1dcd8cc00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T07:28:10.000Z'}}, {'blockNum': '0xaac444', 'uniqueId': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0:log:37', 'hash': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x312b274e820f4c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:02:30.000Z'}}, {'blockNum': '0xaac463', 'uniqueId': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8:log:18', 'hash': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 58885.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0c7831392df6b2850000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:11:40.000Z'}}, {'blockNum': '0xaac49d', 'uniqueId': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39:log:84', 'hash': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39', 'from': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 59792.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ca95c607c78c1d10000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:24:24.000Z'}}, {'blockNum': '0xaac66c', 'uniqueId': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4:log:28', 'hash': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 127318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1af5ec3028535f980000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:01:47.000Z'}}, {'blockNum': '0xaac6ac', 'uniqueId': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a:log:47', 'hash': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 10442.71900933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x023619d6ab16cdbf7400', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:13:22.000Z'}}, {'blockNum': '0xaac6d0', 'uniqueId': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6:log:44', 'hash': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 34655.58244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0756aed1c808f1168000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:21:45.000Z'}}, {'blockNum': '0xaac6d3', 'uniqueId': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d:log:184', 'hash': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:22:49.000Z'}}, {'blockNum': '0xaac6ee', 'uniqueId': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20:log:44', 'hash': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:33.000Z'}}, {'blockNum': '0xaac6ef', 'uniqueId': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378:log:151', 'hash': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 349455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x49fffe56a00f02dc0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:35.000Z'}}, {'blockNum': '0xaac70b', 'uniqueId': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330:log:22', 'hash': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 124764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1a6b78516bff63f00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:34:24.000Z'}}, {'blockNum': '0xaac713', 'uniqueId': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a:log:106', 'hash': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:35:51.000Z'}}, {'blockNum': '0xaac734', 'uniqueId': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c:log:105', 'hash': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:42:34.000Z'}}, {'blockNum': '0xaac757', 'uniqueId': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4:log:297', 'hash': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:50:27.000Z'}}, {'blockNum': '0xaac764', 'uniqueId': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc:log:65', 'hash': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 298607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x3f3b84957c4f0c5c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:53:15.000Z'}}, {'blockNum': '0xaac78f', 'uniqueId': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd:log:125', 'hash': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:05:17.000Z'}}, {'blockNum': '0xaac7b3', 'uniqueId': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03:log:133', 'hash': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:13:18.000Z'}}, {'blockNum': '0xaac7d5', 'uniqueId': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80:log:98', 'hash': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80', 'from': '0x62d5f2ec17bd962f6c1a7939a672b69460c320f4', 'to': '0x3eab04cb1eedb641875e60c7f151c4188bbcf72e', 'value': 126.362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06d9a0018163e90000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:19:24.000Z'}}, {'blockNum': '0xaac7f7', 'uniqueId': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50:log:22', 'hash': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:26:37.000Z'}}, {'blockNum': '0xaac81b', 'uniqueId': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d:log:71', 'hash': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:34:25.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6:log:242', 'hash': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6', 'from': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 15903.8301648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x035e25faf8c836248000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c:log:243', 'hash': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c', 'from': '0x1df69368c49492c7aa0da26e14d95154f9998da6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 37725.9786619995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07fd212070497e84aa89', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac885', 'uniqueId': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7:log:72', 'hash': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 54279.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b7e7c9b95f17c5a0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:58:29.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec:log:97', 'hash': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 25033.519009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x054d11dd696ad9bf1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1:log:111', 'hash': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 27552.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x05d5a3e9730256d00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac8b4', 'uniqueId': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d:log:35', 'hash': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:08:37.000Z'}}, {'blockNum': '0xaac8c2', 'uniqueId': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec:log:221', 'hash': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 52586.319009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b22b5c6dc6d308f1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:12:08.000Z'}}, {'blockNum': '0xaac8d7', 'uniqueId': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15:log:201', 'hash': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:18:03.000Z'}}, {'blockNum': '0xaac91c', 'uniqueId': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82:log:6', 'hash': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2046.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6ef0e48b2da4ea0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:34:47.000Z'}}, {'blockNum': '0xaac996', 'uniqueId': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269:log:148', 'hash': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf9f7b61ac292e4899a3fae2164133fb02e82471e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:00:15.000Z'}}, {'blockNum': '0xaac99d', 'uniqueId': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff:log:34', 'hash': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 52468.707209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b1c5595cf75e6459000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:01:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:180', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:181', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:182', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:51', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:52', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:53', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:163', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:164', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:165', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:171', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:172', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:173', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaace35', 'uniqueId': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4:log:46', 'hash': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 2511.9109267687422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x882bc44f38c1200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T00:17:01.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf:log:117', 'hash': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf', 'from': '0x652807251031638120c9498a38c8773ee87bdf9b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 252082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x356164819452c3880000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0:log:166', 'hash': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0', 'from': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 349456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a000c3756c2aa400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}]}}
Number of returned transfers:  54
Answer is complete
 
symbol             NXS
group              TWP
date        2020-11-06
hour             20:00
exchange       binance
Name: 622, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-11-06 20:00:00 2020-11-06 08:00:00 2020-11-07 08:00:00
Unix timestamps:  1604646000.0 1604732400.0
Hex Block Numbers:  0xaaeeef 0xab0872
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            BCPT
group              TWP
date        2020-11-14
hour             18:00
exchange       binance
Name: 623, dtype: object
HERE
 Symbol: BCPT, Contract: 
Datetime timestamps:  2020-11-14 18:00:00 2020-11-14 06:00:00 2020-11-15 06:00:00
Unix timestamps:  1605330000.0 1605416400.0
Hex Block Numbers:  0xabb836 0xabd1dd
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            APPC
group              TWP
date        2020-11-18
hour             18:00
exchange       binance
Name: 624, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2020-11-18 18:00:00 2020-11-18 06:00:00 2020-11-19 06:00:00
Unix timestamps:  1605675600.0 1605762000.0
Hex Block Numbers:  0xac1e2f 0xac377d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xac21dd', 'uniqueId': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e:log:76', 'hash': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 377.30992545063793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14743a221faa647ecb', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:34:11.000Z'}}, {'blockNum': '0xac21dd', 'uniqueId': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e:log:77', 'hash': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 44.3894029941927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x026806d6d68c844b26', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:34:11.000Z'}}, {'blockNum': '0xac21dd', 'uniqueId': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e:log:78', 'hash': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 22.19470149709635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0134036b6b46422593', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:34:11.000Z'}}, {'blockNum': '0xac2209', 'uniqueId': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3:log:215', 'hash': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 377.30992545063793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14743a221faa647ecb', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:42:51.000Z'}}, {'blockNum': '0xac2209', 'uniqueId': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3:log:216', 'hash': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 44.3894029941927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x026806d6d68c844b26', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:42:51.000Z'}}, {'blockNum': '0xac2209', 'uniqueId': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3:log:217', 'hash': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 22.19470149709635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0134036b6b46422593', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:42:51.000Z'}}, {'blockNum': '0xac2224', 'uniqueId': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e:log:102', 'hash': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 377.30992545063793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14743a221faa647ecb', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:48:24.000Z'}}, {'blockNum': '0xac2224', 'uniqueId': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e:log:103', 'hash': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 44.3894029941927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x026806d6d68c844b26', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:48:24.000Z'}}, {'blockNum': '0xac2224', 'uniqueId': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e:log:104', 'hash': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 22.19470149709635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0134036b6b46422593', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:48:24.000Z'}}, {'blockNum': '0xac2244', 'uniqueId': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0:log:95', 'hash': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 377.30992545063793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14743a221faa647ecb', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:54:58.000Z'}}, {'blockNum': '0xac2244', 'uniqueId': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0:log:96', 'hash': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 44.3894029941927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x026806d6d68c844b26', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:54:58.000Z'}}, {'blockNum': '0xac2244', 'uniqueId': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0:log:97', 'hash': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 22.19470149709635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0134036b6b46422593', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:54:58.000Z'}}, {'blockNum': '0xac2276', 'uniqueId': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793:log:205', 'hash': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:04:03.000Z'}}, {'blockNum': '0xac2276', 'uniqueId': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793:log:206', 'hash': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:04:03.000Z'}}, {'blockNum': '0xac2276', 'uniqueId': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793:log:207', 'hash': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:04:03.000Z'}}, {'blockNum': '0xac228c', 'uniqueId': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d:log:255', 'hash': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:09:19.000Z'}}, {'blockNum': '0xac228c', 'uniqueId': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d:log:256', 'hash': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:09:19.000Z'}}, {'blockNum': '0xac228c', 'uniqueId': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d:log:257', 'hash': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:09:19.000Z'}}, {'blockNum': '0xac22a4', 'uniqueId': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6:log:183', 'hash': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:14:37.000Z'}}, {'blockNum': '0xac22a4', 'uniqueId': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6:log:184', 'hash': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:14:37.000Z'}}, {'blockNum': '0xac22a4', 'uniqueId': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6:log:185', 'hash': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:14:37.000Z'}}, {'blockNum': '0xac22be', 'uniqueId': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e:log:112', 'hash': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:21:04.000Z'}}, {'blockNum': '0xac22be', 'uniqueId': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e:log:113', 'hash': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:21:04.000Z'}}, {'blockNum': '0xac22be', 'uniqueId': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e:log:114', 'hash': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:21:04.000Z'}}, {'blockNum': '0xac22cb', 'uniqueId': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9:log:285', 'hash': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:25:06.000Z'}}, {'blockNum': '0xac22cb', 'uniqueId': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9:log:286', 'hash': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:25:06.000Z'}}, {'blockNum': '0xac22cb', 'uniqueId': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9:log:287', 'hash': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:25:06.000Z'}}, {'blockNum': '0xac22d7', 'uniqueId': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f:log:13', 'hash': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:29:32.000Z'}}, {'blockNum': '0xac22d7', 'uniqueId': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f:log:14', 'hash': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:29:32.000Z'}}, {'blockNum': '0xac22d7', 'uniqueId': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f:log:15', 'hash': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:29:32.000Z'}}, {'blockNum': '0xac24f2', 'uniqueId': '0xaf70feb3401c73fe9ddde4f331d8165dfd155e4be7678aeb7e59475f64bc4086:log:292', 'hash': '0xaf70feb3401c73fe9ddde4f331d8165dfd155e4be7678aeb7e59475f64bc4086', 'from': '0x90ac0aac98403a214e07bfd22386442cfcb2ab05', 'to': '0x035c0ed3be0df3b92ddecb8bd61accdad862cd4e', 'value': 5602.282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012fb347e4d67cf10000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T11:22:35.000Z'}}, {'blockNum': '0xac3277', 'uniqueId': '0xf5f30333654d1b8a2244f25e8fc83ab43d9c08b64a7cbcc6b703598207baa072:log:161', 'hash': '0xf5f30333654d1b8a2244f25e8fc83ab43d9c08b64a7cbcc6b703598207baa072', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 5243.677506142923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x011c42a4cda493200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T00:21:29.000Z'}}, {'blockNum': '0xac3410', 'uniqueId': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56:log:238', 'hash': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 751.1319337095499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x28b80cb20a91fac0f4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T01:53:56.000Z'}}, {'blockNum': '0xac3410', 'uniqueId': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56:log:239', 'hash': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 88.36846278935882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x04ca5bd8b5f30e710d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T01:53:56.000Z'}}, {'blockNum': '0xac3410', 'uniqueId': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56:log:240', 'hash': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 44.18423139467941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x02652dec5af9873886', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T01:53:56.000Z'}}, {'blockNum': '0xac3416', 'uniqueId': '0x773fb1e8756e4c1cbd37697d1f4d6e58c980ac90720839df7b1abb6713e6101c:log:201', 'hash': '0x773fb1e8756e4c1cbd37697d1f4d6e58c980ac90720839df7b1abb6713e6101c', 'from': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'to': '0x479ce5e60eec7fadb2d80270d1957140f6bc6ed6', 'value': 4856.3833616409875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x010743db9930d06bebcc', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T01:55:24.000Z'}}, {'blockNum': '0xac3575', 'uniqueId': '0xb403325a38bcf5729684e6f83458f333962163a1ed5c529aa9ef730a4e0a5ba3:log:61', 'hash': '0xb403325a38bcf5729684e6f83458f333962163a1ed5c529aa9ef730a4e0a5ba3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2121.63889663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x7303a7878f72dc1c00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T03:08:38.000Z'}}, {'blockNum': '0xac3581', 'uniqueId': '0xc19105a88b2aff67dde2f267f3dd8cec7f848295a32453f1bfba3f312aade6e5:log:189', 'hash': '0xc19105a88b2aff67dde2f267f3dd8cec7f848295a32453f1bfba3f312aade6e5', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x800ddb89f5d6f701b39017b0381a4d2d864085dc', 'value': 2035.63889663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6e5a2a273537441c00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T03:11:23.000Z'}}, {'blockNum': '0xac3655', 'uniqueId': '0x17e4bad490400269dd3f088e7832a0429e003269cfdc6d6cae9ae187b0fd567b:log:5', 'hash': '0x17e4bad490400269dd3f088e7832a0429e003269cfdc6d6cae9ae187b0fd567b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x471193ccf81e75dd93bc4d1a89e732bd620a07d4', 'value': 2256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x7a4c4a0f3321400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T03:56:24.000Z'}}, {'blockNum': '0xac3685', 'uniqueId': '0xdb247eae9920d67be509d6972f0635a0b03d4b98524ec3a95a176b94f40b2bba:log:7', 'hash': '0xdb247eae9920d67be509d6972f0635a0b03d4b98524ec3a95a176b94f40b2bba', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x471193ccf81e75dd93bc4d1a89e732bd620a07d4', 'value': 43114.795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x092141f9f486a3d78000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T04:08:30.000Z'}}, {'blockNum': '0xac3748', 'uniqueId': '0xa214cf0942dfe1d2fd5fb8f6f003dfbd14803c950449768c16991b8d00dbcdbb:log:34', 'hash': '0xa214cf0942dfe1d2fd5fb8f6f003dfbd14803c950449768c16991b8d00dbcdbb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x471193ccf81e75dd93bc4d1a89e732bd620a07d4', 'value': 9579.402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x02074ce885272a810000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T04:47:48.000Z'}}]}}
Number of returned transfers:  41
Answer is complete
 
symbol             MDA
group              TWP
date        2020-11-27
hour             21:00
exchange       binance
Name: 625, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2020-11-27 21:00:00 2020-11-27 09:00:00 2020-11-28 09:00:00
Unix timestamps:  1606464000.0 1606550400.0
Hex Block Numbers:  0xad0655 0xad1f82
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xad0c32', 'uniqueId': '0x835c52def0fd31c0322b5c8a5dc2e10f1c619d55b68dddf392c517d0a27d99bc:log:44', 'hash': '0x835c52def0fd31c0322b5c8a5dc2e10f1c619d55b68dddf392c517d0a27d99bc', 'from': '0xcc8f00c34c7e926109000a7e54a72397e2f147c7', 'to': '0x976af184cd76fdc3fc64c14b4663ea95966d0a54', 'value': 58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0324e964b3eca80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T13:38:47.000Z'}}, {'blockNum': '0xad1023', 'uniqueId': '0xc351fe8f9de3ce96bed3e3ec324dcde5bf4d39965e18eff95ad029f091921d0e:log:61', 'hash': '0xc351fe8f9de3ce96bed3e3ec324dcde5bf4d39965e18eff95ad029f091921d0e', 'from': '0x3dc46c6abab0ba6aecabf494a3573f98795d86a4', 'to': '0xaebc82059e5c76ac167d08d4dbc1d058f7bcde74', 'value': 32.704366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01c5dd3f9a125ce000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T17:23:44.000Z'}}, {'blockNum': '0xad13cb', 'uniqueId': '0xb2c54add2565b6241036e81c35e38501c2877af7ded37d2aed2a26268b555a05:log:46', 'hash': '0xb2c54add2565b6241036e81c35e38501c2877af7ded37d2aed2a26268b555a05', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 5750.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0137b6aaecaa1da20000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T21:00:44.000Z'}}, {'blockNum': '0xad13cc', 'uniqueId': '0xf354e662609b79c6f72bb27b7e57f81eb522ff3636c7eb4edf67e9b6b10fd219:log:40', 'hash': '0xf354e662609b79c6f72bb27b7e57f81eb522ff3636c7eb4edf67e9b6b10fd219', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 7577.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x019ac162d0cdbc4e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T21:00:49.000Z'}}, {'blockNum': '0xad1432', 'uniqueId': '0xda892298ae3c005aa6e692864742e8b5019b1e575d15acfe4a5d2bf12219dc96:log:192', 'hash': '0xda892298ae3c005aa6e692864742e8b5019b1e575d15acfe4a5d2bf12219dc96', 'from': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'to': '0x5466b7c161ec8ed2213cbebc4baaf9be0119d0a9', 'value': 359992.1445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x4c3b3698069fd7eb4000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T21:25:16.000Z'}}, {'blockNum': '0xad1b9a', 'uniqueId': '0x2aef5237bd8507b364da10371cb1cc1c0e9f718149b9b587628a1e708803d21b:log:6', 'hash': '0x2aef5237bd8507b364da10371cb1cc1c0e9f718149b9b587628a1e708803d21b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0e96a32fc8a91d01fa157fee31948c034f737c21', 'value': 8590, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01d1aa32803abd780000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-28T04:12:50.000Z'}}, {'blockNum': '0xad1c9c', 'uniqueId': '0xeccfb283b1b0d751d6c12c1bc7d49f529204143ca74221839211cf7cf03550ee:log:40', 'hash': '0xeccfb283b1b0d751d6c12c1bc7d49f529204143ca74221839211cf7cf03550ee', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe07cc845fe401f5c7fa8bfb71e940b774ca77632', 'value': 8409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01c7da51533563c40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-28T05:14:41.000Z'}}]}}
Number of returned transfers:  7
Answer is complete
 
symbol            NEBL
group              TWP
date        2020-12-02
hour             18:00
exchange       binance
Name: 626, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2020-12-02 18:00:00 2020-12-02 06:00:00 2020-12-03 06:00:00
Unix timestamps:  1606885200.0 1606971600.0
Hex Block Numbers:  0xad820e 0xad9bbe
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              TWP
date        2020-12-06
hour             18:00
exchange       binance
Name: 627, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2020-12-06 18:00:00 2020-12-06 06:00:00 2020-12-07 06:00:00
Unix timestamps:  1607230800.0 1607317200.0
Hex Block Numbers:  0xade808 0xae017c
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xadeab1', 'uniqueId': '0x8ea8516cd02789c99825d516ecde41e816532cf6815aa68cbb736439224224a6:log:4', 'hash': '0x8ea8516cd02789c99825d516ecde41e816532cf6815aa68cbb736439224224a6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 511.235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1bb6cf93dc62d38000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T07:32:48.000Z'}}, {'blockNum': '0xadec5a', 'uniqueId': '0x13e3a488183181927e1b628ac9065331375bf1cc27bc4ecee62cd345079cfd47:log:91', 'hash': '0x13e3a488183181927e1b628ac9065331375bf1cc27bc4ecee62cd345079cfd47', 'from': '0x26e79ec23f54804ea2726d7c15f53b0edb94a893', 'to': '0x276b8d13388003d90dc1b520b4171543efdfcdb5', 'value': 984.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3562d86e4e54b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T09:10:09.000Z'}}, {'blockNum': '0xadee3d', 'uniqueId': '0x9615b035cc3f9bd27c3362d2ca6cc92e1f8baf17ec40410ad81aacbd87289812:log:256', 'hash': '0x9615b035cc3f9bd27c3362d2ca6cc92e1f8baf17ec40410ad81aacbd87289812', 'from': '0xe7b448ea473a6d6304c170685ae6f809a76e84a7', 'to': '0x780ba06aa6f51dda07decbe4fcc75b01a9c8f5e6', 'value': 446.847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x18393f7300ccf98000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T10:54:46.000Z'}}, {'blockNum': '0xadefcd', 'uniqueId': '0x711062dd19ac5f401003e6ef6382ee2e3277c8ade1927a2396969bb6cb849fe9:log:88', 'hash': '0x711062dd19ac5f401003e6ef6382ee2e3277c8ade1927a2396969bb6cb849fe9', 'from': '0x592faed4893eb9d74ab5041ec1750b5ce1b0c885', 'to': '0x14aaf7b864f021750faa4f62397272acadbb8017', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T12:16:32.000Z'}}, {'blockNum': '0xadeffe', 'uniqueId': '0x135263e4a4b5d6fedd4eb1fe2644aec04cc7ee1904af4570640aceb0d8d0c216:log:56', 'hash': '0x135263e4a4b5d6fedd4eb1fe2644aec04cc7ee1904af4570640aceb0d8d0c216', 'from': '0x56e8835d90b32169045a1cc518c8dab94901c74c', 'to': '0x7d42ca8be425c3fb1f2ec6643f056448a93d9217', 'value': 1086.81111604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3aea88b7ddc6089aca', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T12:26:58.000Z'}}, {'blockNum': '0xadf018', 'uniqueId': '0xf5fb52d507a6ea78cc372e0b99c87345fad992cf557355bf0d18a605a2dff41c:log:61', 'hash': '0xf5fb52d507a6ea78cc372e0b99c87345fad992cf557355bf0d18a605a2dff41c', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x34a4e158ecc24b7bb35a6bdc107c087a6c402c39', 'value': 446.9924985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x183b445d1e34d3a800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T12:32:46.000Z'}}, {'blockNum': '0xadf1d5', 'uniqueId': '0x72ac2d0ab425ac8b7e133d6f3fdecd05cf4fa6b2cd5cbe0fe55c8b6532a6b621:log:307', 'hash': '0x72ac2d0ab425ac8b7e133d6f3fdecd05cf4fa6b2cd5cbe0fe55c8b6532a6b621', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x4c93b006ec07f0332441007f118e8afa3d04155b', 'value': 1046.5177953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x38bb5a1622ed75e800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T14:06:21.000Z'}}, {'blockNum': '0xadf207', 'uniqueId': '0xb2ce7ed7b7e784f640c13596192cee08de5f6c82559998e2f8dd8b291d761ac9:log:135', 'hash': '0xb2ce7ed7b7e784f640c13596192cee08de5f6c82559998e2f8dd8b291d761ac9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x1b06baa84f0a6b4904283a968636a9a11318f9b5', 'value': 692.14858431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x25857dbe45030f1c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T14:18:46.000Z'}}, {'blockNum': '0xadf309', 'uniqueId': '0xda036428ae4e781359dc6c50efc2e4664d5079e6d71c49be389add513435d83c:log:242', 'hash': '0xda036428ae4e781359dc6c50efc2e4664d5079e6d71c49be389add513435d83c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6e06977bf13468ac94963ba771d1709de0ddb15b', 'value': 817.28257497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2c4e12fbc95b684400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T15:16:19.000Z'}}, {'blockNum': '0xadf46a', 'uniqueId': '0x93d344aa7323a05434b8b38095cb026924a6c885de367744f3aa918e92d9be8b:log:178', 'hash': '0x93d344aa7323a05434b8b38095cb026924a6c885de367744f3aa918e92d9be8b', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x248faf5e9c2ecd215ed7e9c3d6829b29cc2078e3', 'value': 109.6993112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05f2623e531507c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T16:33:46.000Z'}}, {'blockNum': '0xadf4a1', 'uniqueId': '0x807528783b3063996971e3aa08249cad873e97d0a2de6a3578d8c6f0fdfc8662:log:33', 'hash': '0x807528783b3063996971e3aa08249cad873e97d0a2de6a3578d8c6f0fdfc8662', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x072906b547e17afc03ab0155be6fbd82073336d2', 'value': 1318.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x477b874fa6dd960000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T16:46:34.000Z'}}, {'blockNum': '0xadf4cc', 'uniqueId': '0x322d4fde8e6abdc18720fc6ad3b263aebd6221c9f9af646adfd470f830bd0178:log:88', 'hash': '0x322d4fde8e6abdc18720fc6ad3b263aebd6221c9f9af646adfd470f830bd0178', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ab0054db56f06b6159a922d7fef3e836ea6155a', 'value': 370.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x141b6907d5a8230000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T16:58:27.000Z'}}, {'blockNum': '0xadf501', 'uniqueId': '0x0a08ceb9fe567d3a81ca389bc279197c7da3a89badbe58213b460249836ae478:log:206', 'hash': '0x0a08ceb9fe567d3a81ca389bc279197c7da3a89badbe58213b460249836ae478', 'from': '0x20eaa680695652de0580e9d4b0b630a06e4efd65', 'to': '0x0cc541ea13f06e6c103baed1abb923879a76fd96', 'value': 20781.80444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04669578e7760bb18000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T17:13:22.000Z'}}, {'blockNum': '0xadf57d', 'uniqueId': '0x4b83d3c2b7c33391d5d8db23aaecad9df8cdd0f4d4417c1c19f869df431f9277:log:174', 'hash': '0x4b83d3c2b7c33391d5d8db23aaecad9df8cdd0f4d4417c1c19f869df431f9277', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x575e9ae034091c4496c92a83c61ba69d6ce13429', 'value': 11189.76025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x025e991e4d7bfc31a000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T17:36:38.000Z'}}, {'blockNum': '0xadf581', 'uniqueId': '0xd3b8a1f9dcc0a7b7b5bfa35f4d6986e56cd86fd014e15b2d9dd4fa61ab07a930:log:325', 'hash': '0xd3b8a1f9dcc0a7b7b5bfa35f4d6986e56cd86fd014e15b2d9dd4fa61ab07a930', 'from': '0x53588033cccceff65c4fbe05852b1aee7cf8bb7f', 'to': '0x563d06f6d21c70452022f7d377d56a2fca615b02', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T17:38:13.000Z'}}, {'blockNum': '0xadf5c1', 'uniqueId': '0x667755d7396ca41b6841d9cc1dec836a73e22b40e7519244c0da6e3240003173:log:192', 'hash': '0x667755d7396ca41b6841d9cc1dec836a73e22b40e7519244c0da6e3240003173', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0x68842ccd38fac9a4f79606efffcf9e8bad7bd3e7', 'value': 726.1296427853569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x275d12b6e9de7b3c3a', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T17:57:00.000Z'}}, {'blockNum': '0xadf5dc', 'uniqueId': '0xb7c427f4ae2a5423ecb364a9b5fc673b34aead76dde70b66ebbc077803bb8236:log:68', 'hash': '0xb7c427f4ae2a5423ecb364a9b5fc673b34aead76dde70b66ebbc077803bb8236', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0xa45f83bdf99dcfa04f743b11a1d91658cd4658c6', 'value': 835.9924582291947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2d51b9d77b48bb7f94', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:05:22.000Z'}}, {'blockNum': '0xadf5e2', 'uniqueId': '0xaac5ddf25ad4abc3b3d1cf5ea48fa4b368c7f8db1b219322a8c095155b576d3d:log:99', 'hash': '0xaac5ddf25ad4abc3b3d1cf5ea48fa4b368c7f8db1b219322a8c095155b576d3d', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0xb728944511b1a06b92777c8c6ec79bf75706df6c', 'value': 175.23435421734888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x097fdd7cbab20dda73', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:06:32.000Z'}}, {'blockNum': '0xadf5f3', 'uniqueId': '0x9ae0b6ad5f265a913f9da2a110e78e658f5de1fe812e2761f94125cafdf8c899:log:4', 'hash': '0x9ae0b6ad5f265a913f9da2a110e78e658f5de1fe812e2761f94125cafdf8c899', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0xaac4a322483a080002141a8d3930e6d3e2af9f36', 'value': 56.8630303908277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03152210de0186dc2f', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:10:57.000Z'}}, {'blockNum': '0xadf5fc', 'uniqueId': '0x16e51ca0b3c58f4232f7e429b3c9a5a9c20d7a12d617fdcce42462ff32969de4:log:135', 'hash': '0x16e51ca0b3c58f4232f7e429b3c9a5a9c20d7a12d617fdcce42462ff32969de4', 'from': '0x1c976ea0d60f04b4354ec4ead3f0ce069bd1b3a5', 'to': '0x0c81129b231f49db3f3dccaf08c88b582d656112', 'value': 8291.268077755329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01c1787583b28e33dd67', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:12:24.000Z'}}, {'blockNum': '0xadf605', 'uniqueId': '0x7161abee19a329054444cd6c7a24e7acbcbb357cdce9d6d06c63bda01991987d:log:144', 'hash': '0x7161abee19a329054444cd6c7a24e7acbcbb357cdce9d6d06c63bda01991987d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2e3381202988d535e8185e7089f633f7c9998e83', 'value': 1249.689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43beeb345d29228000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:14:29.000Z'}}, {'blockNum': '0xadf608', 'uniqueId': '0xc09319ac3d88ab5642d44c8c1e46553367d161d86769dc7beccd2dca7a64b003:log:87', 'hash': '0xc09319ac3d88ab5642d44c8c1e46553367d161d86769dc7beccd2dca7a64b003', 'from': '0x2e3381202988d535e8185e7089f633f7c9998e83', 'to': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'value': 1249.689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43beeb345d29228000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:15:30.000Z'}}, {'blockNum': '0xadf608', 'uniqueId': '0x525b5101f7365b4e2cdea36ff07778f7b9c432de3fcfc29775c5fbaf4963f78e:log:152', 'hash': '0x525b5101f7365b4e2cdea36ff07778f7b9c432de3fcfc29775c5fbaf4963f78e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd8603e06de7042e9f1c9404286d9c14288ba9b75', 'value': 161.951371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08c786d9de8e7fb000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:15:30.000Z'}}, {'blockNum': '0xadf615', 'uniqueId': '0x6f6b3383e37f6d737be6c5182eb70d64638c025f37e773219dea5b93ded2c0b4:log:253', 'hash': '0x6f6b3383e37f6d737be6c5182eb70d64638c025f37e773219dea5b93ded2c0b4', 'from': '0xaac4a322483a080002141a8d3930e6d3e2af9f36', 'to': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'value': 56.8630303908277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03152210de0186dc2f', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:18:37.000Z'}}, {'blockNum': '0xadf616', 'uniqueId': '0xafd0299c58f8a0909022e9c996d68b4883395112b22692f7c4b6082a5543daeb:log:266', 'hash': '0xafd0299c58f8a0909022e9c996d68b4883395112b22692f7c4b6082a5543daeb', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd8603e06de7042e9f1c9404286d9c14288ba9b75', 'value': 863.6092002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2ed0fc37fbf834d000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:19:13.000Z'}}, {'blockNum': '0xadf66e', 'uniqueId': '0xe29568a28b37721eac5f01abf509f78fe8b10ae7f22731373c93b2262056b9ca:log:83', 'hash': '0xe29568a28b37721eac5f01abf509f78fe8b10ae7f22731373c93b2262056b9ca', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5c26597acf077bdca6f3ac11234fba249f00bf43', 'value': 316.82486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x112cd4038f58ddc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:38:34.000Z'}}, {'blockNum': '0xadf683', 'uniqueId': '0xdc36322d66323ab7d6f675289385cd7bf8c17225dbbe4e3ae7bc2ba1f6ab3206:log:53', 'hash': '0xdc36322d66323ab7d6f675289385cd7bf8c17225dbbe4e3ae7bc2ba1f6ab3206', 'from': '0xd8603e06de7042e9f1c9404286d9c14288ba9b75', 'to': '0xb728944511b1a06b92777c8c6ec79bf75706df6c', 'value': 1025.5605712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x37988311da86b48000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:42:56.000Z'}}, {'blockNum': '0xadf687', 'uniqueId': '0x1897bd64080465a8ee3280c268ae420ef5f58a9b9446ef034f4b89c33124f378:log:166', 'hash': '0x1897bd64080465a8ee3280c268ae420ef5f58a9b9446ef034f4b89c33124f378', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x9cf7eec34a55d1a8a128d5aee7eab4633faf38b0', 'value': 385.41309891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x14e4ae6373d90aac00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:43:44.000Z'}}, {'blockNum': '0xadf6d7', 'uniqueId': '0x5f51baf2bde9f4e9f6d5f5cbcb08222f2023e2cb731af9b9dab8b55f792f2f19:log:128', 'hash': '0x5f51baf2bde9f4e9f6d5f5cbcb08222f2023e2cb731af9b9dab8b55f792f2f19', 'from': '0xb728944511b1a06b92777c8c6ec79bf75706df6c', 'to': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'value': 1200.7949254173488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4118608e9538c25a73', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:03:20.000Z'}}, {'blockNum': '0xadf6db', 'uniqueId': '0x0326bb63c97d5ceae590ec4353183bb6f4f802b6da20f4084f83d003f9e00254:log:181', 'hash': '0x0326bb63c97d5ceae590ec4353183bb6f4f802b6da20f4084f83d003f9e00254', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0xd74ae0816128e512f37bddc4e784fd77ea06e6c1', 'value': 370.7164155697143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1418b947d226e95d38', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:03:39.000Z'}}, {'blockNum': '0xadf6db', 'uniqueId': '0x18243eb42a307c3d37672bf880920c26706eee470103deff72b2ada51101ca2a:log:192', 'hash': '0x18243eb42a307c3d37672bf880920c26706eee470103deff72b2ada51101ca2a', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0x68842ccd38fac9a4f79606efffcf9e8bad7bd3e7', 'value': 1432.9902521989775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4daebc1211357bb340', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:03:39.000Z'}}, {'blockNum': '0xadf6db', 'uniqueId': '0xefbd098451d3363699147a6ce732af0e660f7a32df73342f42420cd6d32ddcc3:log:195', 'hash': '0xefbd098451d3363699147a6ce732af0e660f7a32df73342f42420cd6d32ddcc3', 'from': '0xd74ae0816128e512f37bddc4e784fd77ea06e6c1', 'to': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'value': 370.7164155697143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1418b947d226e95d38', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:03:39.000Z'}}, {'blockNum': '0xadf78e', 'uniqueId': '0xf43adc284cebd9d31b8021d465b2757c4d2219bbec33c79d5b91ecd12a5c5205:log:22', 'hash': '0xf43adc284cebd9d31b8021d465b2757c4d2219bbec33c79d5b91ecd12a5c5205', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2369.264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8070249f19f1180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:42:21.000Z'}}, {'blockNum': '0xadf794', 'uniqueId': '0xba7bf7a2b1c0e984b5116ad0c5736c736b1b99636adb81fba4c6d959090f9ef8:log:75', 'hash': '0xba7bf7a2b1c0e984b5116ad0c5736c736b1b99636adb81fba4c6d959090f9ef8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0f3617c50abc8841c31c9b21b3abb932a3ba7642', 'value': 2339.264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7ecfcf360c53600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:44:07.000Z'}}, {'blockNum': '0xadf7b8', 'uniqueId': '0xbe97bd3a9bf0b87a0927800a261d8269cfa3f67faf24cf0d41f96b374567e3e5:log:176', 'hash': '0xbe97bd3a9bf0b87a0927800a261d8269cfa3f67faf24cf0d41f96b374567e3e5', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xc3e79db09526db7a0409f8dbfe19a19966449168', 'value': 77.8936865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0438fdf72c5e23e800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:50:34.000Z'}}, {'blockNum': '0xadf7d9', 'uniqueId': '0xf8f874f84a2c0d7a3a3b2e36c1a77a94dd9f19c5d521912175e0bd47012b18f8:log:140', 'hash': '0xf8f874f84a2c0d7a3a3b2e36c1a77a94dd9f19c5d521912175e0bd47012b18f8', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa50fea8ddcfc79e9e97c0be31536f5f8ba81c03a', 'value': 354.50804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1337c9901dabf88000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:57:04.000Z'}}, {'blockNum': '0xadf866', 'uniqueId': '0x93014e9595082acc4744e775e998eb78d0bad4b52d4993ea5599286854ac7de9:log:216', 'hash': '0x93014e9595082acc4744e775e998eb78d0bad4b52d4993ea5599286854ac7de9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x575e9ae034091c4496c92a83c61ba69d6ce13429', 'value': 14591.10965099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0316fc52d89030d44c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T20:28:10.000Z'}}, {'blockNum': '0xadf890', 'uniqueId': '0x854ec6ff1885d80620d97e99e0df7fd1987e7b9a8ca79ba55cb49a46f0c20c13:log:122', 'hash': '0x854ec6ff1885d80620d97e99e0df7fd1987e7b9a8ca79ba55cb49a46f0c20c13', 'from': '0xee19eab54909fb256c923115dd28ae6fda5aa6c9', 'to': '0x5b473e1879585fba9de397c12d9e03cdca317c51', 'value': 601.23989999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2097e137890f55dc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T20:34:57.000Z'}}, {'blockNum': '0xadf970', 'uniqueId': '0xb8c7305ea0ddbdfdb187e5b6e697a0c2bc3ed931cd99f3b5737a3c2d796cd2c6:log:228', 'hash': '0xb8c7305ea0ddbdfdb187e5b6e697a0c2bc3ed931cd99f3b5737a3c2d796cd2c6', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x22036ad73e8784f76daaae495f0cd16f9c5b8ee9', 'value': 5749.653108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0137b0773ec21cab4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T21:22:29.000Z'}}, {'blockNum': '0xadfa09', 'uniqueId': '0xa360a70fe43a344a026693d64aa948b2cc7be69fcf3c4eaecfc97ebcc803d3ef:log:213', 'hash': '0xa360a70fe43a344a026693d64aa948b2cc7be69fcf3c4eaecfc97ebcc803d3ef', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xa7adc8259e3c5b0f04629d86f93e86357f0487c6', 'value': 55.3450851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0300113daae943b800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T21:56:14.000Z'}}, {'blockNum': '0xadfa16', 'uniqueId': '0xf41f01a945c7fc383d50bc390bfff13e7443af3eaae2a56a9e27fcb2587bb3de:log:185', 'hash': '0xf41f01a945c7fc383d50bc390bfff13e7443af3eaae2a56a9e27fcb2587bb3de', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2f9d8f76c66c33efcc9c851e9946fcb292bfc224', 'value': 1004.32898705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3671dd548f17242400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T21:58:57.000Z'}}, {'blockNum': '0xadfa38', 'uniqueId': '0xf1bc08deb8dff9a8e7f307ee380fbe2edafc57fd24633cf77acca7ead21bfb08:log:274', 'hash': '0xf1bc08deb8dff9a8e7f307ee380fbe2edafc57fd24633cf77acca7ead21bfb08', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 21561.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0490d72571562de20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T22:07:44.000Z'}}, {'blockNum': '0xadfaad', 'uniqueId': '0xbde2562499f7311afb3302ea138283bc55dbea776b90f5405305e68eff7f9003:log:214', 'hash': '0xbde2562499f7311afb3302ea138283bc55dbea776b90f5405305e68eff7f9003', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xde2ec036ae7fd7078d2db6178b2224edf620d2a9', 'value': 56.4991645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0310155ac470dc4800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T22:34:41.000Z'}}, {'blockNum': '0xadfc57', 'uniqueId': '0xd91dc482e79e9c7090e584eb440c6809b0aca9c60b209e2c48cf60f50c2cc13d:log:84', 'hash': '0xd91dc482e79e9c7090e584eb440c6809b0aca9c60b209e2c48cf60f50c2cc13d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd15e784962aa98b65e127a657c67b91cd4721eca', 'value': 268.671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0e908f230520f98000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T00:08:55.000Z'}}, {'blockNum': '0xadfd38', 'uniqueId': '0x1b86df4da19d999b1b95f1c1807aaf489ebb8dbdf1ab5d1e78bf2430ed46f4cb:log:229', 'hash': '0x1b86df4da19d999b1b95f1c1807aaf489ebb8dbdf1ab5d1e78bf2430ed46f4cb', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x62c6ac7e068056443af2e23212fcd8a2dc142292', 'value': 1359.191901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x49ae93a8a6f4e6d000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:01:49.000Z'}}, {'blockNum': '0xadfd4d', 'uniqueId': '0xf954c9292740c61b6841e1fe8086e0df2021c375198d26ac316a494d2e7af28f:log:171', 'hash': '0xf954c9292740c61b6841e1fe8086e0df2021c375198d26ac316a494d2e7af28f', 'from': '0x2e38084dbe3abf067a7aeab7f30afec2b233810a', 'to': '0x415902d2438a2317caf53d087c6a88656b3e12b9', 'value': 7500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01969368974c05b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:06:19.000Z'}}, {'blockNum': '0xadfd80', 'uniqueId': '0x285acd1847be02836f47c29df0c8c5ffa436f2183bb576cb432ce634d33ddb5e:log:5', 'hash': '0x285acd1847be02836f47c29df0c8c5ffa436f2183bb576cb432ce634d33ddb5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xabfa7424cba43d4d26b08703c1d38c6d50b9adb8', 'value': 82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0471fa858b9e080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:16:16.000Z'}}, {'blockNum': '0xadfd9c', 'uniqueId': '0xbf390caaeaa715404bd758f85303db18260d7234d027f4101aeaf537d982e22b:log:305', 'hash': '0xbf390caaeaa715404bd758f85303db18260d7234d027f4101aeaf537d982e22b', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x543cae942867ecd6a92101eb4d62b558be2b4d13', 'value': 55.5114989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x030260762313fcc800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:23:33.000Z'}}, {'blockNum': '0xadfdf9', 'uniqueId': '0x0ddae3019f51a1640141711444869ec2b022319b1e9f7a66f79dc557c31ec1e1:log:231', 'hash': '0x0ddae3019f51a1640141711444869ec2b022319b1e9f7a66f79dc557c31ec1e1', 'from': '0x543cae942867ecd6a92101eb4d62b558be2b4d13', 'to': '0xa993a6d866dd95713ad6a9714274379d52aa884e', 'value': 119.9970464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06814b25ede0110000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:45:03.000Z'}}, {'blockNum': '0xadfe06', 'uniqueId': '0x89849ed39e27d084563f1bb2154189c33ba1cde08549d34184aa635f847b47c8:log:40', 'hash': '0x89849ed39e27d084563f1bb2154189c33ba1cde08549d34184aa635f847b47c8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad2090487c25060eb6d69ba852b647f63c79e94a', 'value': 15946.846874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03607af505e31e6ba000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:49:05.000Z'}}, {'blockNum': '0xadfe0c', 'uniqueId': '0x3e48e587ba639e1ab5adab16736847ece5a7bce75ea69540f648acb80d08b8b0:log:240', 'hash': '0x3e48e587ba639e1ab5adab16736847ece5a7bce75ea69540f648acb80d08b8b0', 'from': '0xa993a6d866dd95713ad6a9714274379d52aa884e', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 119.9970464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06814b25ede0110000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:50:32.000Z'}}, {'blockNum': '0xadfe3c', 'uniqueId': '0x40afa32334a7a9d17986a7e725382c4698c358fbbf67779b2c80867b7069026e:log:106', 'hash': '0x40afa32334a7a9d17986a7e725382c4698c358fbbf67779b2c80867b7069026e', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63314.887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d684e911dda05cd8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T02:02:33.000Z'}}, {'blockNum': '0xae0092', 'uniqueId': '0xa5c9f25010b7b966c3de2484f8aab7c87008a98d457be7f3ccde858ddf94d0b7:log:262', 'hash': '0xa5c9f25010b7b966c3de2484f8aab7c87008a98d457be7f3ccde858ddf94d0b7', 'from': '0x415902d2438a2317caf53d087c6a88656b3e12b9', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 7500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01969368974c05b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T04:13:47.000Z'}}, {'blockNum': '0xae0092', 'uniqueId': '0x1dab1b44d7a34b3903be2f57e189714124a74beff9998319479289d8f4de5a8a:log:263', 'hash': '0x1dab1b44d7a34b3903be2f57e189714124a74beff9998319479289d8f4de5a8a', 'from': '0xfdf386f6bdfd8fed762c6dd5c13c375e62860dd5', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 7887.8871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01ab9a6c65a20e1bc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T04:13:47.000Z'}}, {'blockNum': '0xae0092', 'uniqueId': '0x943dcc0711ff34d6bc2baa1296e7e9964d842ff0f99892c45ccb25802fc8a680:log:264', 'hash': '0x943dcc0711ff34d6bc2baa1296e7e9964d842ff0f99892c45ccb25802fc8a680', 'from': '0x0cc541ea13f06e6c103baed1abb923879a76fd96', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 20781.80444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04669578e7760bb18000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T04:13:47.000Z'}}, {'blockNum': '0xae00ed', 'uniqueId': '0x4130aa47d33488917b72dcbd13b37e217324b53c03076c12ee00d30915bff336:log:269', 'hash': '0x4130aa47d33488917b72dcbd13b37e217324b53c03076c12ee00d30915bff336', 'from': '0xfa8bdd04101ee2db005ffc2f5ac3d46979d20852', 'to': '0x813186be6a095fae1c814cdf011cc07517efd1c9', 'value': 570.0156168662155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1ee68e4777b7f00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T04:33:04.000Z'}}]}}
Number of returned transfers:  56
Answer is complete
 
symbol            PIVX
group              TWP
date        2020-12-11
hour             17:57
exchange       binance
Name: 628, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: PIVX, Contract: 
Datetime timestamps:  2020-12-11 17:57:00 2020-12-11 05:57:00 2020-12-12 05:57:00
Unix timestamps:  1607662620.0 1607749020.0
Hex Block Numbers:  0xae66ef 0xae801b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            NEBL
group              TWP
date        2020-12-15
hour             18:00
exchange       binance
Name: 629, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2020-12-15 18:00:00 2020-12-15 06:00:00 2020-12-16 06:00:00
Unix timestamps:  1608008400.0 1608094800.0
Hex Block Numbers:  0xaecc89 0xaee5df
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIB
group              TWP
date        2020-12-20
hour             18:00
exchange       binance
Name: 630, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2020-12-20 18:00:00 2020-12-20 06:00:00 2020-12-21 06:00:00
Unix timestamps:  1608440400.0 1608526800.0
Hex Block Numbers:  0xaf4bb0 0xaf650e
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaf4eb4', 'uniqueId': '0xb23e7f8c82b760d53f215d470220acf089be20144fa6e66aac7f6482c7468f7a:log:5', 'hash': '0xb23e7f8c82b760d53f215d470220acf089be20144fa6e66aac7f6482c7468f7a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 56053.821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0bdeaf089da0cb4c8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T07:48:31.000Z'}}, {'blockNum': '0xaf4ebe', 'uniqueId': '0xb744e0cb239a220fffb6ea36c6ee5acbb2d692a99797bb05ce6b7f221c5de016:log:44', 'hash': '0xb744e0cb239a220fffb6ea36c6ee5acbb2d692a99797bb05ce6b7f221c5de016', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 47389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a08f67c86513a540000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T07:51:12.000Z'}}, {'blockNum': '0xaf4ece', 'uniqueId': '0xe5407d7fbe2bbe04e42af483ebb206ef0ad48126074de16debda3f4bdf03b234:log:22', 'hash': '0xe5407d7fbe2bbe04e42af483ebb206ef0ad48126074de16debda3f4bdf03b234', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x933e1047abc84c0f08bd083fbebb193ff7b3fc82', 'value': 15387.57316376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03422979a99540796000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T07:55:42.000Z'}}, {'blockNum': '0xaf4edc', 'uniqueId': '0x13260e8e6566de55e416df56ae726cf822caeb4b61be52c8e4a4f2da93e7df7f:log:28', 'hash': '0x13260e8e6566de55e416df56ae726cf822caeb4b61be52c8e4a4f2da93e7df7f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x933e1047abc84c0f08bd083fbebb193ff7b3fc82', 'value': 17215.89407108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03a546865bee64f59000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T07:57:55.000Z'}}, {'blockNum': '0xaf4ef0', 'uniqueId': '0xeb0a158a51bd083254b7c3d9a95722742e6df36f67d088f83d1fe0c04b99444c:log:268', 'hash': '0xeb0a158a51bd083254b7c3d9a95722742e6df36f67d088f83d1fe0c04b99444c', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56053.821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0bdeaf089da0cb4c8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T08:02:39.000Z'}}, {'blockNum': '0xaf5016', 'uniqueId': '0xc765a86ab73a0123c31573a9fa17957d72dca40af65112655527a97619cb9074:log:62', 'hash': '0xc765a86ab73a0123c31573a9fa17957d72dca40af65112655527a97619cb9074', 'from': '0x4fbb9136f1755f69bd9dc94582b77ac33bf22626', 'to': '0xf3eb77da487027b4cd7b6fa772ba5e3ea4eda0ae', 'value': 2446.6100516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x84a188ff3c0e20a000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T09:05:05.000Z'}}, {'blockNum': '0xaf5024', 'uniqueId': '0xa6fd17c3de85d733f3a47c9f33c5c8a217489c60fd6166433b25c53add4810d1:log:162', 'hash': '0xa6fd17c3de85d733f3a47c9f33c5c8a217489c60fd6166433b25c53add4810d1', 'from': '0xf3eb77da487027b4cd7b6fa772ba5e3ea4eda0ae', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 2446.6100516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x84a188ff3c0e20a000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T09:08:53.000Z'}}, {'blockNum': '0xaf50bf', 'uniqueId': '0xb3231ff826be691123c717da7551d36344c2d66bbbccb3130b7817e1421860d3:log:103', 'hash': '0xb3231ff826be691123c717da7551d36344c2d66bbbccb3130b7817e1421860d3', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x2c7b75ba038d73090beb3f1a951373c26acca8b4', 'value': 76977.30103565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x104cf2a658b4131e9400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T09:40:39.000Z'}}, {'blockNum': '0xaf5125', 'uniqueId': '0x7ece3c2cf7024a3615d1a9976625e69594ae5c7e33e36f7442f3ce58bdd855ba:log:306', 'hash': '0x7ece3c2cf7024a3615d1a9976625e69594ae5c7e33e36f7442f3ce58bdd855ba', 'from': '0x2c7b75ba038d73090beb3f1a951373c26acca8b4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 76977.30103565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x104cf2a658b4131e9400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:01:38.000Z'}}, {'blockNum': '0xaf5150', 'uniqueId': '0x9f6142a80b19a34c4289bd7c678d80e0a87c9126ef3e3caedc225f87f28c890d:log:20', 'hash': '0x9f6142a80b19a34c4289bd7c678d80e0a87c9126ef3e3caedc225f87f28c890d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9f1ac2ef934721c3714d2e0da78747185548e9c3', 'value': 133235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1c36af0efeb751ec0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:10:16.000Z'}}, {'blockNum': '0xaf5168', 'uniqueId': '0xac5c81031c9f493017d340000d0f518f00ae59267f13121d5d99e0ef715cecd7:log:3', 'hash': '0xac5c81031c9f493017d340000d0f518f00ae59267f13121d5d99e0ef715cecd7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f1ac2ef934721c3714d2e0da78747185548e9c3', 'value': 41861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08dd4a134eeaa2f40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:15:53.000Z'}}, {'blockNum': '0xaf5183', 'uniqueId': '0xdb5020c48298cda505ae04bd1daf18d8e66846ff18a74fd04d9b0e72dbf6fd00:log:7', 'hash': '0xdb5020c48298cda505ae04bd1daf18d8e66846ff18a74fd04d9b0e72dbf6fd00', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 23694.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05047b3e43289d2a0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:22:42.000Z'}}, {'blockNum': '0xaf5183', 'uniqueId': '0xdb5020c48298cda505ae04bd1daf18d8e66846ff18a74fd04d9b0e72dbf6fd00:log:9', 'hash': '0xdb5020c48298cda505ae04bd1daf18d8e66846ff18a74fd04d9b0e72dbf6fd00', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 23694.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05047b3e43289d2a0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:22:42.000Z'}}, {'blockNum': '0xaf5191', 'uniqueId': '0x9d33888457d1d771634e159b48cf788eeaf7b3ebe5a55ea508f9344f3571aa34:log:35', 'hash': '0x9d33888457d1d771634e159b48cf788eeaf7b3ebe5a55ea508f9344f3571aa34', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 133218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1c35c322dcc934480000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:24:18.000Z'}}, {'blockNum': '0xaf51a3', 'uniqueId': '0xd4c014ac8d1777dc9f13b18a97cf19339710be59564cb549a423a637c3067824:log:65', 'hash': '0xd4c014ac8d1777dc9f13b18a97cf19339710be59564cb549a423a637c3067824', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 23694.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05047b3e43289d2a0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:28:25.000Z'}}, {'blockNum': '0xaf51af', 'uniqueId': '0xa35b0bdc1b3c5181cf30d316d023c44185bb951d89606d203ba08fa6e5bbe79b:log:20', 'hash': '0xa35b0bdc1b3c5181cf30d316d023c44185bb951d89606d203ba08fa6e5bbe79b', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 133218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1c35c322dcc934480000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:32:04.000Z'}}, {'blockNum': '0xaf51cb', 'uniqueId': '0x60f57f8331a4c50981abbbdb0112b7692ff6a3dc8f6fe86647bee2f93d4da7ca:log:222', 'hash': '0x60f57f8331a4c50981abbbdb0112b7692ff6a3dc8f6fe86647bee2f93d4da7ca', 'from': '0xb9164fb930965146411bb0c849bfd55ac4d9b3f5', 'to': '0x7a29b818cd15bfa5d33347d2af4cdd6001605e7b', 'value': 444.73549437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x181bf1dfd1e3965400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:37:41.000Z'}}, {'blockNum': '0xaf51e0', 'uniqueId': '0x6382d80e1c707cbc62c36664e466867d488e4a6e6ceb67350802eb734b0bb6aa:log:92', 'hash': '0x6382d80e1c707cbc62c36664e466867d488e4a6e6ceb67350802eb734b0bb6aa', 'from': '0x7a29b818cd15bfa5d33347d2af4cdd6001605e7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 444.73549437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x181bf1dfd1e3965400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:42:20.000Z'}}, {'blockNum': '0xaf521a', 'uniqueId': '0x56937493faeb2723e84c56777ea2ab32743b4c70de3ed231ec4bbdcb6bfca362:log:4', 'hash': '0x56937493faeb2723e84c56777ea2ab32743b4c70de3ed231ec4bbdcb6bfca362', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 17848.67796998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03c7942a5f5916275800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:53:29.000Z'}}, {'blockNum': '0xaf543a', 'uniqueId': '0xbf16204371246538353046331652d1141c1a327a52e1804414af152f8f1e5cdb:log:54', 'hash': '0xbf16204371246538353046331652d1141c1a327a52e1804414af152f8f1e5cdb', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 31148.463144574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06988fc3165c00216b05', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:05:01.000Z'}}, {'blockNum': '0xaf543a', 'uniqueId': '0xbf16204371246538353046331652d1141c1a327a52e1804414af152f8f1e5cdb:log:59', 'hash': '0xbf16204371246538353046331652d1141c1a327a52e1804414af152f8f1e5cdb', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 31148.463144574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06988fc3165c00216b05', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:05:01.000Z'}}, {'blockNum': '0xaf544d', 'uniqueId': '0x4a3bc15c9601af7528896c8704aa2d89cf2b014211ccbbcaa25f7c855a9966ee:log:65', 'hash': '0x4a3bc15c9601af7528896c8704aa2d89cf2b014211ccbbcaa25f7c855a9966ee', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 30350.577278175202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x066d4edf0e400ae93938', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:08:44.000Z'}}, {'blockNum': '0xaf544d', 'uniqueId': '0x4a3bc15c9601af7528896c8704aa2d89cf2b014211ccbbcaa25f7c855a9966ee:log:70', 'hash': '0x4a3bc15c9601af7528896c8704aa2d89cf2b014211ccbbcaa25f7c855a9966ee', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 30350.577278175202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x066d4edf0e400ae93938', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:08:44.000Z'}}, {'blockNum': '0xaf544f', 'uniqueId': '0xe84b6029aa2c6cde2ad6c59c143cc3e9bb27a5bfa590d1076627360f1966ead9:log:118', 'hash': '0xe84b6029aa2c6cde2ad6c59c143cc3e9bb27a5bfa590d1076627360f1966ead9', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 61499.0404227492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0d05dea2249c0b0aa43d', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:09:23.000Z'}}, {'blockNum': '0xaf54b2', 'uniqueId': '0x47b534f932604ac8224f0a9891d15dd329241c9b200421410041fadc4482e459:log:220', 'hash': '0x47b534f932604ac8224f0a9891d15dd329241c9b200421410041fadc4482e459', 'from': '0x1660386e976c96bb1f84e5aff4600147dd53e7a7', 'to': '0x0b15e65d4b9934ea2a61d4fdb28aebdbf817cac5', 'value': 397.6937001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x158f1bd92b5f3b2800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:30:37.000Z'}}, {'blockNum': '0xaf54b7', 'uniqueId': '0x74ec7d9d79d4d82db4f6f4b6982771749474172b36cca59e4c9a52ed0000867d:log:223', 'hash': '0x74ec7d9d79d4d82db4f6f4b6982771749474172b36cca59e4c9a52ed0000867d', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 85193.5404227492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x120a59e067c4a834a43d', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:31:21.000Z'}}, {'blockNum': '0xaf5593', 'uniqueId': '0x298bd3ac881b34225d5c6948e45a5d878be1a8a5d875ee20c5e162cb64cd0007:log:160', 'hash': '0x298bd3ac881b34225d5c6948e45a5d878be1a8a5d875ee20c5e162cb64cd0007', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 59824.12054754315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cab1273643728dd5196', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:23:29.000Z'}}, {'blockNum': '0xaf5593', 'uniqueId': '0x298bd3ac881b34225d5c6948e45a5d878be1a8a5d875ee20c5e162cb64cd0007:log:165', 'hash': '0x298bd3ac881b34225d5c6948e45a5d878be1a8a5d875ee20c5e162cb64cd0007', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 59824.12054754315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cab1273643728dd5196', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:23:29.000Z'}}, {'blockNum': '0xaf5594', 'uniqueId': '0x205205658f0f5ad08883fbd633f297a08356ddac918ee84296b15b41ba38f578:log:83', 'hash': '0x205205658f0f5ad08883fbd633f297a08356ddac918ee84296b15b41ba38f578', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 59824.12054754315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cab1273643728dd5196', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:24:08.000Z'}}, {'blockNum': '0xaf55b2', 'uniqueId': '0x5e700dd41b6bcd8392fe50a163c0c8de93731981fb2681639b427128f5f04885:log:208', 'hash': '0x5e700dd41b6bcd8392fe50a163c0c8de93731981fb2681639b427128f5f04885', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59824.12054754315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cab1273643728dd5196', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:31:19.000Z'}}, {'blockNum': '0xaf55f3', 'uniqueId': '0x6cf09683c458f524eb5d96be808775617a13905f5f926376b788b885bb53741b:log:45', 'hash': '0x6cf09683c458f524eb5d96be808775617a13905f5f926376b788b885bb53741b', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 38388.42628669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08210a6f2d25293d5400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:42:46.000Z'}}, {'blockNum': '0xaf5649', 'uniqueId': '0xc3977246ec5c69647b427dc3f54a36f917588a7d5df433120da7b9b818bf3e1d:log:78', 'hash': '0xc3977246ec5c69647b427dc3f54a36f917588a7d5df433120da7b9b818bf3e1d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x933e1047abc84c0f08bd083fbebb193ff7b3fc82', 'value': 11151.68897131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025c88c5f339ddd84c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:00:43.000Z'}}, {'blockNum': '0xaf564c', 'uniqueId': '0xc5aa12824ef7f09a592770d1e7d54b7a813b1c6fb16207a43cba9728f27a8f07:log:107', 'hash': '0xc5aa12824ef7f09a592770d1e7d54b7a813b1c6fb16207a43cba9728f27a8f07', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56237.10425667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0be89e998c7e3f64ac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:01:57.000Z'}}, {'blockNum': '0xaf5677', 'uniqueId': '0xfe72f2dcdfa94e4f88befd29ef7509a9fd5ce2e3c4bab28b035052bb15510ad0:log:38', 'hash': '0xfe72f2dcdfa94e4f88befd29ef7509a9fd5ce2e3c4bab28b035052bb15510ad0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x933e1047abc84c0f08bd083fbebb193ff7b3fc82', 'value': 4990.14734008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010e8434b6de78cbe000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:13:07.000Z'}}, {'blockNum': '0xaf5699', 'uniqueId': '0xbd4e8fb4729e872b9721557e57077aa96526fde8fca840829307beffdf863210:log:6', 'hash': '0xbd4e8fb4729e872b9721557e57077aa96526fde8fca840829307beffdf863210', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 48361.33833875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a3dac643dbdb983ec00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:20:12.000Z'}}, {'blockNum': '0xaf56ba', 'uniqueId': '0xe46ff4fbc0e1f927cccb40266174291ef0c329666011c028d151f3bd78640eb1:log:0', 'hash': '0xe46ff4fbc0e1f927cccb40266174291ef0c329666011c028d151f3bd78640eb1', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 80190.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10fb224577b3bf8d0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:26:51.000Z'}}, {'blockNum': '0xaf56cf', 'uniqueId': '0xcc8d5fce91004d0fe6191cf9ab5db250c863e47ec7d9db7393c4539b20e6ce77:log:245', 'hash': '0xcc8d5fce91004d0fe6191cf9ab5db250c863e47ec7d9db7393c4539b20e6ce77', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48361.33833875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a3dac643dbdb983ec00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:31:27.000Z'}}, {'blockNum': '0xaf56d0', 'uniqueId': '0xe0b87e2f73eac1382a4abe85fca1668e66540df68cbcb3b95db17ca311adfc3e:log:34', 'hash': '0xe0b87e2f73eac1382a4abe85fca1668e66540df68cbcb3b95db17ca311adfc3e', 'from': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 191508.02475545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x288dabbb26149f514400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:31:45.000Z'}}, {'blockNum': '0xaf5702', 'uniqueId': '0xd274e575477c2ce0fc1432249c40b1198e9d8ab2d53cdcbc90c50e8f5f9f289d:log:59', 'hash': '0xd274e575477c2ce0fc1432249c40b1198e9d8ab2d53cdcbc90c50e8f5f9f289d', 'from': '0x44f01795f55047b4cd5a62145148f874ae827aee', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1693.17750069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5bc98ede09e72a3400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:42:57.000Z'}}, {'blockNum': '0xaf570d', 'uniqueId': '0x624867e6f25402b8fa37a1426d517ce74e465c3f2085efa601440fad0362ad50:log:2', 'hash': '0x624867e6f25402b8fa37a1426d517ce74e465c3f2085efa601440fad0362ad50', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x116a5f765c6302f00ee355227a7c0673e9f258d0', 'value': 152934.2956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x206295b3ef9329730000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:45:17.000Z'}}, {'blockNum': '0xaf574a', 'uniqueId': '0x2b9d73abf9c9731fc84d8eb8c20c8b8b286c74d3668c6c4df1c1407e4dd4b825:log:107', 'hash': '0x2b9d73abf9c9731fc84d8eb8c20c8b8b286c74d3668c6c4df1c1407e4dd4b825', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 345640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x49312e93f0cb7fa00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:57:59.000Z'}}, {'blockNum': '0xaf5754', 'uniqueId': '0x9ab805092e844e01495c9481466edfeddc08c0e5f9fd0f318b255d0fa2422155:log:31', 'hash': '0x9ab805092e844e01495c9481466edfeddc08c0e5f9fd0f318b255d0fa2422155', 'from': '0x78e78c851804c98809bab2622679d94812ddea30', 'to': '0xbb4e4bbeb67187a4cc0b8bd45d3cd1a858a3d836', 'value': 11026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0255b87d05bf91080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T16:00:25.000Z'}}, {'blockNum': '0xaf5768', 'uniqueId': '0x923249211c9ca476a9043b5e034092159dc4e6830f3d43a4131b4283273e190c:log:46', 'hash': '0x923249211c9ca476a9043b5e034092159dc4e6830f3d43a4131b4283273e190c', 'from': '0xbb4e4bbeb67187a4cc0b8bd45d3cd1a858a3d836', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 11026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0255b87d05bf91080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T16:04:11.000Z'}}, {'blockNum': '0xaf57fb', 'uniqueId': '0xca707a65f88382693ab34d130c10fe7ce87e569cdc501343f0210ad4933a4587:log:7', 'hash': '0xca707a65f88382693ab34d130c10fe7ce87e569cdc501343f0210ad4933a4587', 'from': '0x844ecfa12ccef8f98c3ab217054fe15ef5831d13', 'to': '0xc1bffdbcf970c07ea60ca5e1ef81ef337a72d267', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T16:34:57.000Z'}}, {'blockNum': '0xaf5867', 'uniqueId': '0x85a66a833cc0b9732c82863f3a7e4d325cee3b67efa40f6c8c2f4bf025f08807:log:172', 'hash': '0x85a66a833cc0b9732c82863f3a7e4d325cee3b67efa40f6c8c2f4bf025f08807', 'from': '0x9ffb9aeafd1b596945774e70fec17d3d9306b030', 'to': '0x87bb3d8aad7e985bfbe6ca612c9617307da4d0ea', 'value': 3812.51336576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xcead406298e1b60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T16:59:06.000Z'}}, {'blockNum': '0xaf587c', 'uniqueId': '0x0086acc9bbee1c2263f3e14e983f0daa96f6dd5be3250ce7f3debc6f04875ae2:log:250', 'hash': '0x0086acc9bbee1c2263f3e14e983f0daa96f6dd5be3250ce7f3debc6f04875ae2', 'from': '0xed2f5085a8a2dfc42f77ea254ade8162f2b6a78e', 'to': '0x072910cc466f22a8ba9bdef1d42bf0b873adfa83', 'value': 8710.87626897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01d837b1466d80e42400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:03:29.000Z'}}, {'blockNum': '0xaf58a2', 'uniqueId': '0x4710763e56ae92ea1fcca3a53dfe5373bac4e4b6a94cb5104edec6b09d69eb3b:log:87', 'hash': '0x4710763e56ae92ea1fcca3a53dfe5373bac4e4b6a94cb5104edec6b09d69eb3b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x54c5ce9dbc5e60e10219b0e9468122095dbba067', 'value': 1164.98235977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3f2760c3dea72c0400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:13:22.000Z'}}, {'blockNum': '0xaf5924', 'uniqueId': '0xd3bf17de55b77d1b867b93ea9e12e0abb9380f7191840d4ada23eb0f804762c2:log:270', 'hash': '0xd3bf17de55b77d1b867b93ea9e12e0abb9380f7191840d4ada23eb0f804762c2', 'from': '0x844ecfa12ccef8f98c3ab217054fe15ef5831d13', 'to': '0xc1bffdbcf970c07ea60ca5e1ef81ef337a72d267', 'value': 77023.37918912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x104f721cd526e0670000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:38:19.000Z'}}, {'blockNum': '0xaf597f', 'uniqueId': '0x774f98bdd6d5c21cc4e8395f87f9955b0007a64ffdbffbb27bcdb26abc93edca:log:6', 'hash': '0x774f98bdd6d5c21cc4e8395f87f9955b0007a64ffdbffbb27bcdb26abc93edca', 'from': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 20698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04620a73b94bcb280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:57:29.000Z'}}, {'blockNum': '0xaf5986', 'uniqueId': '0xf9311879ed5d57e35c2b4a9e8bcf52ea17b357a57d4bc14435d28dccf1df5dd5:log:51', 'hash': '0xf9311879ed5d57e35c2b4a9e8bcf52ea17b357a57d4bc14435d28dccf1df5dd5', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 35816.30106107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07959b06b425b3ac8c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:58:46.000Z'}}, {'blockNum': '0xaf5989', 'uniqueId': '0x6e26ae047295eac2d759ab93b1991a5646ec8a203167dbb015b3c7a4959e370f:log:94', 'hash': '0x6e26ae047295eac2d759ab93b1991a5646ec8a203167dbb015b3c7a4959e370f', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 189801.93441516606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x28312ef8a8d8aa7d05dc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:59:18.000Z'}}, {'blockNum': '0xaf5989', 'uniqueId': '0x6e26ae047295eac2d759ab93b1991a5646ec8a203167dbb015b3c7a4959e370f:log:99', 'hash': '0x6e26ae047295eac2d759ab93b1991a5646ec8a203167dbb015b3c7a4959e370f', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 189801.93441516606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x28312ef8a8d8aa7d05dc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:59:18.000Z'}}, {'blockNum': '0xaf598b', 'uniqueId': '0xb59d13b85b55299f107c8270dcd33d63ee9e2c88ba0454d70e577dfd41a4ec2f:log:80', 'hash': '0xb59d13b85b55299f107c8270dcd33d63ee9e2c88ba0454d70e577dfd41a4ec2f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 189422.33054633572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x281c9ae8cd5f66000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:00:52.000Z'}}, {'blockNum': '0xaf5991', 'uniqueId': '0xa311b96e5139ea80df39e2797a6088bb21adbd9784f372c881d07b6997efe382:log:70', 'hash': '0xa311b96e5139ea80df39e2797a6088bb21adbd9784f372c881d07b6997efe382', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 75007.08533013538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fe2246a0f30243aad22', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:34.000Z'}}, {'blockNum': '0xaf5991', 'uniqueId': '0xa311b96e5139ea80df39e2797a6088bb21adbd9784f372c881d07b6997efe382:log:75', 'hash': '0xa311b96e5139ea80df39e2797a6088bb21adbd9784f372c881d07b6997efe382', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 75007.08533013538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fe2246a0f30243aad22', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:34.000Z'}}, {'blockNum': '0xaf5991', 'uniqueId': '0xeb76b560a80ab76c27eddf2938f5656e95e69238cff469128bf9a958b48abb77:log:88', 'hash': '0xeb76b560a80ab76c27eddf2938f5656e95e69238cff469128bf9a958b48abb77', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x078459b62b8910680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:34.000Z'}}, {'blockNum': '0xaf5992', 'uniqueId': '0x8b35e17287e27c8d0d69ec9263a33e81f7cd69e2d7e777c7512d51672f89f74a:log:95', 'hash': '0x8b35e17287e27c8d0d69ec9263a33e81f7cd69e2d7e777c7512d51672f89f74a', 'from': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 191508.02475545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x288dabbb26149f514400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:49.000Z'}}, {'blockNum': '0xaf5992', 'uniqueId': '0x90616f991426bd8032f6e8ca2c0e23d961370556f0add57d9f974986265c2e49:log:126', 'hash': '0x90616f991426bd8032f6e8ca2c0e23d961370556f0add57d9f974986265c2e49', 'from': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 42987.56637345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x091a5c5312c3ce426400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:49.000Z'}}, {'blockNum': '0xaf5992', 'uniqueId': '0xf586c390e5bfa0e4c6138a0ba5e02f161c448cd3218321f2acf6414ba33bcbbf:log:170', 'hash': '0xf586c390e5bfa0e4c6138a0ba5e02f161c448cd3218321f2acf6414ba33bcbbf', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 75007.08533013538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fe2246a0f30243aad22', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:49.000Z'}}, {'blockNum': '0xaf5999', 'uniqueId': '0xf55e47430a44e11936d9d65c68ddcefac641d81da32acc6dbc05f68cb5765f2b:log:33', 'hash': '0xf55e47430a44e11936d9d65c68ddcefac641d81da32acc6dbc05f68cb5765f2b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 66620.034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0e1b7ab212eeadcd0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:03:29.000Z'}}, {'blockNum': '0xaf59a0', 'uniqueId': '0xd6798ce2ee7ac896708615a2adde03dc17cc53eeab7a922c12863c71836b59a4:log:204', 'hash': '0xd6798ce2ee7ac896708615a2adde03dc17cc53eeab7a922c12863c71836b59a4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 45788.94594594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09b239469999745c4800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:05:23.000Z'}}, {'blockNum': '0xaf59ab', 'uniqueId': '0x15568e5b33e040735fe31b12e35fb512872e92702ab55d3750b84241f783afb1:log:29', 'hash': '0x15568e5b33e040735fe31b12e35fb512872e92702ab55d3750b84241f783afb1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 74760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fd4bf6aa08b4b200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:08:10.000Z'}}, {'blockNum': '0xaf59ac', 'uniqueId': '0x8251a280852457c364be090de70accef0111ecbfa6a277a01c00f6cbc9ea12cd:log:4', 'hash': '0x8251a280852457c364be090de70accef0111ecbfa6a277a01c00f6cbc9ea12cd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 102472.938736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15b311b3277e6dff0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:08:22.000Z'}}, {'blockNum': '0xaf59ae', 'uniqueId': '0xbadfe8395b167c6c0812b63f583457056cc3e0b931b95b53a85bdb7eceb9bb7c:log:51', 'hash': '0xbadfe8395b167c6c0812b63f583457056cc3e0b931b95b53a85bdb7eceb9bb7c', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 102463.71654040775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15b291b75576c9000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:08:39.000Z'}}, {'blockNum': '0xaf59ae', 'uniqueId': '0xbadfe8395b167c6c0812b63f583457056cc3e0b931b95b53a85bdb7eceb9bb7c:log:53', 'hash': '0xbadfe8395b167c6c0812b63f583457056cc3e0b931b95b53a85bdb7eceb9bb7c', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 102463.71654040775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15b291b75576c9000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:08:39.000Z'}}, {'blockNum': '0xaf59af', 'uniqueId': '0xc681f13c1aed8102badb4a07ec16f6a68dcf83af44b9ac60499d1b980e03a591:log:100', 'hash': '0xc681f13c1aed8102badb4a07ec16f6a68dcf83af44b9ac60499d1b980e03a591', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 74760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fd4bf6aa08b4b200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:09:20.000Z'}}, {'blockNum': '0xaf59af', 'uniqueId': '0xc681f13c1aed8102badb4a07ec16f6a68dcf83af44b9ac60499d1b980e03a591:log:102', 'hash': '0xc681f13c1aed8102badb4a07ec16f6a68dcf83af44b9ac60499d1b980e03a591', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 74760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fd4bf6aa08b4b200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:09:20.000Z'}}, {'blockNum': '0xaf59bc', 'uniqueId': '0x88ba15f78479aa6dd647986d3a242b0df44410080e2767db82a90e242ee60ae7:log:24', 'hash': '0x88ba15f78479aa6dd647986d3a242b0df44410080e2767db82a90e242ee60ae7', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 15649.32161271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x035059f6f519aeb0fc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:12:12.000Z'}}, {'blockNum': '0xaf59bc', 'uniqueId': '0x0a1a80803e7c24c6d1badfb6a6fed8c20c4a372bae1890ff1d6caa3e0fdce18b:log:25', 'hash': '0x0a1a80803e7c24c6d1badfb6a6fed8c20c4a372bae1890ff1d6caa3e0fdce18b', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 60826.14202603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce1644acdf6412a4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:12:12.000Z'}}, {'blockNum': '0xaf59bd', 'uniqueId': '0x23d4f05ec51d499f952a9ce07587b169e4c4220fecaa57c8dcc0de38eb911c11:log:9', 'hash': '0x23d4f05ec51d499f952a9ce07587b169e4c4220fecaa57c8dcc0de38eb911c11', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeba7c01407af376aa2457d9be119e7afc98cc82b', 'value': 989.25611809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x35a0afbe196c546400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:12:34.000Z'}}, {'blockNum': '0xaf59bd', 'uniqueId': '0x0940e38e81fbcca2c9a3671e3aeca803a481d93b6461a2bac4d9402b823190c0:log:10', 'hash': '0x0940e38e81fbcca2c9a3671e3aeca803a481d93b6461a2bac4d9402b823190c0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2c38b7622241958dc0a097d405c468a9176418a3', 'value': 126086.53999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1ab32a3f5edf0d021c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:12:34.000Z'}}, {'blockNum': '0xaf59ce', 'uniqueId': '0x9940534edfb4d8e4bb3bee6c4350c0cc22afcfa011d526de4178fa52882cf2f7:log:42', 'hash': '0x9940534edfb4d8e4bb3bee6c4350c0cc22afcfa011d526de4178fa52882cf2f7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 101849.94471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15914bebc19c55866000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:16:48.000Z'}}, {'blockNum': '0xaf59db', 'uniqueId': '0x525fcff764fbb5210a1e1b9839b776636767a03246addaa427817c35d6276c1d:log:150', 'hash': '0x525fcff764fbb5210a1e1b9839b776636767a03246addaa427817c35d6276c1d', 'from': '0xd05fa4f70c7d3414c1827b021a2647f35cf0dd27', 'to': '0xf7eca23d3a36b82bd7663a7c3b13ea92443b65a7', 'value': 2100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x71d75ab9b920500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:19:21.000Z'}}, {'blockNum': '0xaf59e1', 'uniqueId': '0xa24f57bfa1a661b7ad8512cb0d128d3c34d1ff5c8e64701ee9d72581dfab093d:log:22', 'hash': '0xa24f57bfa1a661b7ad8512cb0d128d3c34d1ff5c8e64701ee9d72581dfab093d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9f1ac2ef934721c3714d2e0da78747185548e9c3', 'value': 76228.52932525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10245b5ad941d5751400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:21:23.000Z'}}, {'blockNum': '0xaf59e1', 'uniqueId': '0x672e4002c5df0a7b7b46b0f1fd8175917b60fc32a668b9656e7cecbed6c77026:log:282', 'hash': '0x672e4002c5df0a7b7b46b0f1fd8175917b60fc32a668b9656e7cecbed6c77026', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 102238.77077442259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15a65ff76f1d3f0265dc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:21:23.000Z'}}, {'blockNum': '0xaf59e1', 'uniqueId': '0x672e4002c5df0a7b7b46b0f1fd8175917b60fc32a668b9656e7cecbed6c77026:log:284', 'hash': '0x672e4002c5df0a7b7b46b0f1fd8175917b60fc32a668b9656e7cecbed6c77026', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 102238.77077442259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15a65ff76f1d3f0265dc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:21:23.000Z'}}, {'blockNum': '0xaf59ec', 'uniqueId': '0xba96961ffabcfa68e1cc39e025db3d3c842c685442b59da10c6a4952516237d9:log:223', 'hash': '0xba96961ffabcfa68e1cc39e025db3d3c842c685442b59da10c6a4952516237d9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xeba7c01407af376aa2457d9be119e7afc98cc82b', 'value': 3234.29253013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xaf54d350231207b400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:23:53.000Z'}}, {'blockNum': '0xaf5a0d', 'uniqueId': '0xec0e2e2d30db3b31edfe67d45a3114928e4da8771c8959c465291ee7be927abc:log:18', 'hash': '0xec0e2e2d30db3b31edfe67d45a3114928e4da8771c8959c465291ee7be927abc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x61a11f3d1f3b4dbd3f780f004773e620daf065c4', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:31:35.000Z'}}, {'blockNum': '0xaf5a0e', 'uniqueId': '0x020c0b5cb72722c6495502f86abecabd31b33123ac7274288802d51cf8796eba:log:39', 'hash': '0x020c0b5cb72722c6495502f86abecabd31b33123ac7274288802d51cf8796eba', 'from': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42987.56637345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x091a5c5312c3ce426400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:31:46.000Z'}}, {'blockNum': '0xaf5a1b', 'uniqueId': '0xb38abd30b439fef200d73d60b2b638ea80c21967751f394f08294f304936455e:log:199', 'hash': '0xb38abd30b439fef200d73d60b2b638ea80c21967751f394f08294f304936455e', 'from': '0x2c38b7622241958dc0a097d405c468a9176418a3', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 126086.53999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1ab32a3f5edf0d021c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:35:12.000Z'}}, {'blockNum': '0xaf5a1b', 'uniqueId': '0xb38abd30b439fef200d73d60b2b638ea80c21967751f394f08294f304936455e:log:201', 'hash': '0xb38abd30b439fef200d73d60b2b638ea80c21967751f394f08294f304936455e', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 126086.53999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1ab32a3f5edf0d021c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:35:12.000Z'}}, {'blockNum': '0xaf5a2e', 'uniqueId': '0xeaf7c305441539b6c9a780686739e93672a186b3c92e2f323bdb6be45706cc61:log:110', 'hash': '0xeaf7c305441539b6c9a780686739e93672a186b3c92e2f323bdb6be45706cc61', 'from': '0x61a11f3d1f3b4dbd3f780f004773e620daf065c4', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:40:03.000Z'}}, {'blockNum': '0xaf5a36', 'uniqueId': '0xe38b1230ba1857269e6c8424177279d52842af94f995f0565ba7acceb34d7ae7:log:100', 'hash': '0xe38b1230ba1857269e6c8424177279d52842af94f995f0565ba7acceb34d7ae7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:41:25.000Z'}}, {'blockNum': '0xaf5a37', 'uniqueId': '0xbe80a447ae78e5a24064bfad44ce6b0c2a9a1b5718d10ca5ce4fcc67a9edbc86:log:274', 'hash': '0xbe80a447ae78e5a24064bfad44ce6b0c2a9a1b5718d10ca5ce4fcc67a9edbc86', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0fa703211740ce4d0471d05492c5d6e0e8b34f43', 'value': 48615.55230507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4b7451ad39d03b4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:41:44.000Z'}}, {'blockNum': '0xaf5a3f', 'uniqueId': '0xbd6745103c46bd9cf6d97474238c1f3d3c2e554a1cc08583b37f87183fab4fdf:log:207', 'hash': '0xbd6745103c46bd9cf6d97474238c1f3d3c2e554a1cc08583b37f87183fab4fdf', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 60980.17816038338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce9bdf91609b4a783df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:44:21.000Z'}}, {'blockNum': '0xaf5a3f', 'uniqueId': '0xbd6745103c46bd9cf6d97474238c1f3d3c2e554a1cc08583b37f87183fab4fdf:log:212', 'hash': '0xbd6745103c46bd9cf6d97474238c1f3d3c2e554a1cc08583b37f87183fab4fdf', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 60980.17816038338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce9bdf91609b4a783df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:44:21.000Z'}}, {'blockNum': '0xaf5a41', 'uniqueId': '0x5153a3639c19e90ec9335ab638dbf918436a313e7e08b84358faaeab70d0b090:log:282', 'hash': '0x5153a3639c19e90ec9335ab638dbf918436a313e7e08b84358faaeab70d0b090', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 60980.17816038338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce9bdf91609b4a783df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:44:26.000Z'}}, {'blockNum': '0xaf5a88', 'uniqueId': '0x8d4c1d79aacf226c17bf671542501c0cd81ec2ae46646d406d68721392468f5f:log:37', 'hash': '0x8d4c1d79aacf226c17bf671542501c0cd81ec2ae46646d406d68721392468f5f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9b652388a3498d8c9fed3bcf030fc4fe55075e85', 'value': 59753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ca737747309ac040000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T19:03:32.000Z'}}, {'blockNum': '0xaf5ad0', 'uniqueId': '0x3bc0db1d299141ee17f5a72cd8917de6a543d655ef2fc254fb30682e63cbde4a:log:279', 'hash': '0x3bc0db1d299141ee17f5a72cd8917de6a543d655ef2fc254fb30682e63cbde4a', 'from': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 98621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x14e2414fb78c46d40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T19:18:12.000Z'}}, {'blockNum': '0xaf5b45', 'uniqueId': '0xad0a4d069716859c07d0abe403f175b270d779546b5294c5d69f2fca067f6901:log:297', 'hash': '0xad0a4d069716859c07d0abe403f175b270d779546b5294c5d69f2fca067f6901', 'from': '0xeca7ba09375ced5a1833598ebf0c14af6fc5fb33', 'to': '0x1ba61170405cac6f084a27592e0a923f9c7e2c80', 'value': 67697.954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0e55e9d733de0edd0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T19:40:37.000Z'}}, {'blockNum': '0xaf5b87', 'uniqueId': '0x83df6ea9e9614934568e708e6fe2636775e9d79d8665a2a5b37e39865a3f182c:log:86', 'hash': '0x83df6ea9e9614934568e708e6fe2636775e9d79d8665a2a5b37e39865a3f182c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 60733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cdc57afdac676d40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T19:53:12.000Z'}}, {'blockNum': '0xaf5ba4', 'uniqueId': '0x54de0b482cbc5bbc0c8348088fc8603ba273f8b79c7ea1f788f2610ff435d27f:log:107', 'hash': '0x54de0b482cbc5bbc0c8348088fc8603ba273f8b79c7ea1f788f2610ff435d27f', 'from': '0x1ba61170405cac6f084a27592e0a923f9c7e2c80', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67697.954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0e55e9d733de0edd0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T20:01:38.000Z'}}, {'blockNum': '0xaf5c33', 'uniqueId': '0x494dbe1a809a4a5217f26c64901d3966ea875b4de934039fafd053382f846ab7:log:84', 'hash': '0x494dbe1a809a4a5217f26c64901d3966ea875b4de934039fafd053382f846ab7', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 135987.26349051876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1ccbe2632539d8e23101', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T20:31:33.000Z'}}, {'blockNum': '0xaf5c81', 'uniqueId': '0x42d9a2e352ee372af6f0b25ad1ec3dd931f5d84dbb4e3aff3499325e68c60173:log:86', 'hash': '0x42d9a2e352ee372af6f0b25ad1ec3dd931f5d84dbb4e3aff3499325e68c60173', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x08f5ed82b37e919c425bb4bd9f90b94c476df862', 'value': 150330.26009148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1fd56b735d58eb297000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T20:48:39.000Z'}}, {'blockNum': '0xaf5c8b', 'uniqueId': '0x8f9e9477d5a042dbe6b56fc6690df86c98aa7559706c6a475f90d544a714013e:log:197', 'hash': '0x8f9e9477d5a042dbe6b56fc6690df86c98aa7559706c6a475f90d544a714013e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4721331516e5459373c7ff534b5c6e1aab941b96', 'value': 3089.55091975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa77c21d05ecc233c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T20:51:07.000Z'}}, {'blockNum': '0xaf5d21', 'uniqueId': '0xcd43619ee5b75445618c8c644927809445300dce7b3f6f8f849de9520344a2f7:log:63', 'hash': '0xcd43619ee5b75445618c8c644927809445300dce7b3f6f8f849de9520344a2f7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc0bf6f647ab7731f9f7daba8f99ba977ad0f6694', 'value': 9847.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0215dc29b3abca978000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T21:24:37.000Z'}}, {'blockNum': '0xaf5d3d', 'uniqueId': '0x587bb60efcff78cb86c1d72ef00d0c80944abffd7422e63cc476aeeefdb35bb6:log:175', 'hash': '0x587bb60efcff78cb86c1d72ef00d0c80944abffd7422e63cc476aeeefdb35bb6', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x14e2414fb78c46d40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T21:31:41.000Z'}}, {'blockNum': '0xaf5d3d', 'uniqueId': '0xff62166079cc0f121f2bd9bbea6556f320d8a8233ab738c934c78e92df9f0f0a:log:179', 'hash': '0xff62166079cc0f121f2bd9bbea6556f320d8a8233ab738c934c78e92df9f0f0a', 'from': '0x0fa703211740ce4d0471d05492c5d6e0e8b34f43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48615.55230507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4b7451ad39d03b4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T21:31:41.000Z'}}, {'blockNum': '0xaf5dd9', 'uniqueId': '0xd1fd07c450b72fcb5b8ba41585265e92546685e2ac185f7728a08be0a0872ec8:log:375', 'hash': '0xd1fd07c450b72fcb5b8ba41585265e92546685e2ac185f7728a08be0a0872ec8', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x3ff5977ec3a41ed273493238a40ebd48d1d9621d', 'value': 124719.42218061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1a690dad317221779400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:03:23.000Z'}}, {'blockNum': '0xaf5ead', 'uniqueId': '0xafdf1724bafe6285562b1fc7d7b1a65b4f9895e0ba16adcab5d179eb78bda35d:log:249', 'hash': '0xafdf1724bafe6285562b1fc7d7b1a65b4f9895e0ba16adcab5d179eb78bda35d', 'from': '0xec3a04957d8e171a173bb85346a92b1e20ce2458', 'to': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'value': 3071.690572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa684451cb84870c000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:49:09.000Z'}}, {'blockNum': '0xaf5ead', 'uniqueId': '0x3fabffadb8e3934904b517f89a25b8872b5ec4c2ab57f650bf6d8979a0838506:log:250', 'hash': '0x3fabffadb8e3934904b517f89a25b8872b5ec4c2ab57f650bf6d8979a0838506', 'from': '0x98c9e94d787c03991fa0128e6f8501455e4ebf60', 'to': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'value': 3923.9125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd4b7399cf876f74000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:49:09.000Z'}}, {'blockNum': '0xaf5ead', 'uniqueId': '0xbda4fbd988d4c4769f6de52b10bac653e9096a812a7c0a9fb7f4250e807ab56a:log:251', 'hash': '0xbda4fbd988d4c4769f6de52b10bac653e9096a812a7c0a9fb7f4250e807ab56a', 'from': '0x2f210e4bf0fcaf253a74179391a8ae9f75a18841', 'to': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'value': 2901.46324085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9d49e424f125e73400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:49:09.000Z'}}, {'blockNum': '0xaf5ead', 'uniqueId': '0x8f04444cf86390561769053bb4e03551ebde110b1d8d945cd18c833f59e3dc52:log:252', 'hash': '0x8f04444cf86390561769053bb4e03551ebde110b1d8d945cd18c833f59e3dc52', 'from': '0x96e2edf82cc2d664f8c768d2af44e5dca6998467', 'to': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'value': 19792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0430ed2d217d63400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:49:09.000Z'}}, {'blockNum': '0xaf6087', 'uniqueId': '0xdc58c29f699d8e7e5c16f5427fd7b12efbc905796f313d9f816abb552f9f2430:log:83', 'hash': '0xdc58c29f699d8e7e5c16f5427fd7b12efbc905796f313d9f816abb552f9f2430', 'from': '0x3ff5977ec3a41ed273493238a40ebd48d1d9621d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 124719.42218061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1a690dad317221779400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T00:31:55.000Z'}}, {'blockNum': '0xaf614b', 'uniqueId': '0xdc4dea545086ded49ffbcf37e45ed64e2c4d5a0bf919a0067c71adfcc1b89906:log:26', 'hash': '0xdc4dea545086ded49ffbcf37e45ed64e2c4d5a0bf919a0067c71adfcc1b89906', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 76211.52932525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10236f6eb753b7d11400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T01:21:21.000Z'}}, {'blockNum': '0xaf6190', 'uniqueId': '0xf42903fe65f14dffdcadc49b555faf3d1157bb57aa12cf91958614d8151d841b:log:41', 'hash': '0xf42903fe65f14dffdcadc49b555faf3d1157bb57aa12cf91958614d8151d841b', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 27263.03083404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05c5ee8e91d4d3ccb000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T01:39:23.000Z'}}, {'blockNum': '0xaf6197', 'uniqueId': '0x807db7162e55e108859501e509e2d83ce3cbb366449d49c12acdd171c8bfa25d:log:21', 'hash': '0x807db7162e55e108859501e509e2d83ce3cbb366449d49c12acdd171c8bfa25d', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 39659.98856966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0865f8e7e47b0cd35800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T01:40:38.000Z'}}, {'blockNum': '0xaf6485', 'uniqueId': '0x46197c457ce8fd8f50481ed9e7a23ba5625cf430ed30196a73b49ee4225de157:log:97', 'hash': '0x46197c457ce8fd8f50481ed9e7a23ba5625cf430ed30196a73b49ee4225de157', 'from': '0x3e4e29d65247bafc8e45a2d4f4c39d610b1c71aa', 'to': '0x5fa5cf3f80d3842d2ecf951b181dc580e14fc114', 'value': 20394.3691368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045194ba33ebc1ee4000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T04:30:36.000Z'}}, {'blockNum': '0xaf648d', 'uniqueId': '0xabfa5e67745dd8ad1ded50c1f223f9d7c447d9783224a180b6df3e4c6cac14a0:log:162', 'hash': '0xabfa5e67745dd8ad1ded50c1f223f9d7c447d9783224a180b6df3e4c6cac14a0', 'from': '0x5fa5cf3f80d3842d2ecf951b181dc580e14fc114', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 20394.3691368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045194ba33ebc1ee4000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T04:33:08.000Z'}}, {'blockNum': '0xaf64ab', 'uniqueId': '0x6ed6ef573ade9facee7e2fcdd070949cf3a705a20017b5b217506facb2cf0dc3:log:140', 'hash': '0x6ed6ef573ade9facee7e2fcdd070949cf3a705a20017b5b217506facb2cf0dc3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x28bea00544765e1cc38d61b3c4d21fe5ae5ad90e', 'value': 921.887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x31f9c08e2222898000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T04:39:23.000Z'}}, {'blockNum': '0xaf64e7', 'uniqueId': '0xb7b33a86776df8d25c48e0f60db86c22a6371b6e4c80255fe98ad51c75a17bb3:log:83', 'hash': '0xb7b33a86776df8d25c48e0f60db86c22a6371b6e4c80255fe98ad51c75a17bb3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x063d41e7f7ddd0d8fc72cc881d5562a5c581dbe7', 'value': 4795.08152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0103f11fb50260230000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T04:52:15.000Z'}}]}}
Number of returned transfers:  111
Answer is complete
 
symbol             NAS
group              TWP
date        2020-12-23
hour             18:00
exchange       binance
Name: 631, dtype: object
HERE
 Symbol: NAS, Contract: 0x5d65d971895edc438f465c17db6992698a52318d
Datetime timestamps:  2020-12-23 18:00:00 2020-12-23 06:00:00 2020-12-24 06:00:00
Unix timestamps:  1608699600.0 1608786000.0
Hex Block Numbers:  0xaf9834 0xafb1ae
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xafa58f', 'uniqueId': '0x3b9e0197b1d3f4b993a1107aa17dfcba9e4e83155f09cee01df57dbe43fd4b86:log:92', 'hash': '0x3b9e0197b1d3f4b993a1107aa17dfcba9e4e83155f09cee01df57dbe43fd4b86', 'from': '0xb8f634754218fdc1027092e66edc8c5ee1fbc9f2', 'to': '0x4a8472a7136cdbf7b86124fd21d31fa822d88ee7', 'value': 5239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'NAS', 'category': 'erc20', 'rawContract': {'value': '0x011c01baf6969f7c0000', 'address': '0x5d65d971895edc438f465c17db6992698a52318d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-23T17:27:27.000Z'}}]}}
Number of returned transfers:  1
Answer is complete
 
symbol             EVX
group              TWP
date        2020-12-26
hour             18:00
exchange       binance
Name: 632, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2020-12-26 18:00:00 2020-12-26 06:00:00 2020-12-27 06:00:00
Unix timestamps:  1608958800.0 1609045200.0
Hex Block Numbers:  0xafe451 0xaffdeb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xafef92', 'uniqueId': '0x36c2ba2fc6a99ed0cc03c599af8bf072fac9be79a1bef5e85363fc31b9f5e431:log:88', 'hash': '0x36c2ba2fc6a99ed0cc03c599af8bf072fac9be79a1bef5e85363fc31b9f5e431', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x840b72f74f59b38357237333e84a3183cf9c37ce', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T15:23:53.000Z'}}, {'blockNum': '0xafefb4', 'uniqueId': '0x432c547645a21e81738aefb007c51d528f1188a9087c6afac4fce9cfaf42fd2b:log:130', 'hash': '0x432c547645a21e81738aefb007c51d528f1188a9087c6afac4fce9cfaf42fd2b', 'from': '0x840b72f74f59b38357237333e84a3183cf9c37ce', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T15:31:45.000Z'}}, {'blockNum': '0xaff08f', 'uniqueId': '0xc259f16ff0d30e64a136c08ca1b7cc7a0708adc35c72f44c62a389f1f7e4ee35:log:258', 'hash': '0xc259f16ff0d30e64a136c08ca1b7cc7a0708adc35c72f44c62a389f1f7e4ee35', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 19903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bdcf4f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T16:18:57.000Z'}}, {'blockNum': '0xaff159', 'uniqueId': '0xf51f4826c6c8ef8a86d1d3da3cde27aae06ee0824efcb98e6eda808284204676:log:257', 'hash': '0xf51f4826c6c8ef8a86d1d3da3cde27aae06ee0824efcb98e6eda808284204676', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 19936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0be1fe00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T17:06:46.000Z'}}, {'blockNum': '0xaff1b2', 'uniqueId': '0x69077262b93785671b894da1fc95663fc8a3b7f1f8208fc7515ee421a2286df9:log:219', 'hash': '0x69077262b93785671b894da1fc95663fc8a3b7f1f8208fc7515ee421a2286df9', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 20950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c7cb760', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T17:24:57.000Z'}}, {'blockNum': '0xaff1b7', 'uniqueId': '0xc1d0573c37ff88312a44620487bf99e4bf79983524f854ce885efd514e85048e:log:197', 'hash': '0xc1d0573c37ff88312a44620487bf99e4bf79983524f854ce885efd514e85048e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 44765.6599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1aaeb297', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T17:26:04.000Z'}}, {'blockNum': '0xaff22a', 'uniqueId': '0xdc9be3d5bcc1c2d6d794799838b17ec9d22315ae76f902ee1549a21ba305ce58:log:12', 'hash': '0xdc9be3d5bcc1c2d6d794799838b17ec9d22315ae76f902ee1549a21ba305ce58', 'from': '0x9a67a1e346d19b475c5d421cd6be3e328a32525c', 'to': '0x37b9bf7567e4c36ddf48031592a5ce783c9e1c16', 'value': 1728.501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0107bf92', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T17:52:45.000Z'}}, {'blockNum': '0xaff25a', 'uniqueId': '0x1cf856c1ec23bf4d752446995327b3e1242be06921fb4505d35a68f998b9c5e2:log:91', 'hash': '0x1cf856c1ec23bf4d752446995327b3e1242be06921fb4505d35a68f998b9c5e2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 20697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c561c90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:02:55.000Z'}}, {'blockNum': '0xaff260', 'uniqueId': '0xf9128e75c649daf11ce99b598ecc7f8d08248332355f220e2df9617010e59519:log:290', 'hash': '0xf9128e75c649daf11ce99b598ecc7f8d08248332355f220e2df9617010e59519', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 30900.765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x126b1522', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:04:38.000Z'}}, {'blockNum': '0xaff2ba', 'uniqueId': '0x25d9a2e46a34ca589f132ebc369abb92a7af0cda3871e300f674e3dc58fcda29:log:89', 'hash': '0x25d9a2e46a34ca589f132ebc369abb92a7af0cda3871e300f674e3dc58fcda29', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c441b30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:24:55.000Z'}}, {'blockNum': '0xaff2c4', 'uniqueId': '0xb30346e3a91b4687b0a75ba368196501e57a3a2b84e82e3fc9e5df3f1f90f71c:log:235', 'hash': '0xb30346e3a91b4687b0a75ba368196501e57a3a2b84e82e3fc9e5df3f1f90f71c', 'from': '0x65aadc0e636f08ab5ab640b6794aa43b7d2d5211', 'to': '0x5d2e7377a841dfdb8fb0d5132d18c5bdce99ae81', 'value': 126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1339e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:26:48.000Z'}}, {'blockNum': '0xaff2e2', 'uniqueId': '0x33368e84c71ba80f3695164277817d8873b3bea7f08b20907e718c74d118ec68:log:273', 'hash': '0x33368e84c71ba80f3695164277817d8873b3bea7f08b20907e718c74d118ec68', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c441b30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:31:32.000Z'}}, {'blockNum': '0xaff2e9', 'uniqueId': '0xfd86c7021d78b83c4a2201621810bfc3e70af5429ce233d21bfa1a1e6e96ae89:log:7', 'hash': '0xfd86c7021d78b83c4a2201621810bfc3e70af5429ce233d21bfa1a1e6e96ae89', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1aa1da23ed693b3be26aa066fb71694b774a13c1', 'value': 4432.2521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02a44ed9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:33:12.000Z'}}, {'blockNum': '0xaff304', 'uniqueId': '0x0dcd2079bfaf9356f7fae3e50bdf359970647d62fdadeea3db94d0ab7d53ec00:log:9', 'hash': '0x0dcd2079bfaf9356f7fae3e50bdf359970647d62fdadeea3db94d0ab7d53ec00', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0becd370', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:40:53.000Z'}}, {'blockNum': '0xaff318', 'uniqueId': '0xd9dea6c69f3e6e76957d0b1ec7d4d3494edf0e3144a6df22a6530221905adab8:log:78', 'hash': '0xd9dea6c69f3e6e76957d0b1ec7d4d3494edf0e3144a6df22a6530221905adab8', 'from': '0x1aa1da23ed693b3be26aa066fb71694b774a13c1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4432.2521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02a44ed9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:45:46.000Z'}}, {'blockNum': '0xaff32e', 'uniqueId': '0x09eb3c5f4279d71ce84168cbec4bc0500bbc58441bf7cfa5919000fb8aaef36a:log:58', 'hash': '0x09eb3c5f4279d71ce84168cbec4bc0500bbc58441bf7cfa5919000fb8aaef36a', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0becd370', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:51:19.000Z'}}, {'blockNum': '0xaff341', 'uniqueId': '0x4fca95c47874d1c4bf6f05f14c0930dd54653f173589c563aa4ccce94fad8972:log:224', 'hash': '0x4fca95c47874d1c4bf6f05f14c0930dd54653f173589c563aa4ccce94fad8972', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 4414.2521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02a18fb9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T18:56:12.000Z'}}, {'blockNum': '0xaff382', 'uniqueId': '0x0092ce37779528316e65c4df85871c57fcd06aa60962e8514cd302f2e8e6c8a8:log:148', 'hash': '0x0092ce37779528316e65c4df85871c57fcd06aa60962e8514cd302f2e8e6c8a8', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0x256d0fb3b2afd618bc460fda7fb167083b6268f7', 'value': 34.6864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x054af0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T19:10:25.000Z'}}, {'blockNum': '0xaff386', 'uniqueId': '0x3138e1a594f39e9c80d012d58f3b25f8007aae493e8aeb0093c4a09cde6fca6e:log:21', 'hash': '0x3138e1a594f39e9c80d012d58f3b25f8007aae493e8aeb0093c4a09cde6fca6e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 21352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0cba0e80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T19:11:33.000Z'}}, {'blockNum': '0xaff3b9', 'uniqueId': '0xa285d404b7af2d16ec27bacac5f79c07a1204d1b973a2fd51acd15334617343c:log:261', 'hash': '0xa285d404b7af2d16ec27bacac5f79c07a1204d1b973a2fd51acd15334617343c', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 21352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0cba0e80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T19:22:23.000Z'}}, {'blockNum': '0xaff6c8', 'uniqueId': '0x1a495b2cb1332ef173ef2a252d19f294d9a8ca90ded00bdbc273fd5f48181951:log:28', 'hash': '0x1a495b2cb1332ef173ef2a252d19f294d9a8ca90ded00bdbc273fd5f48181951', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c306c20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T22:15:12.000Z'}}, {'blockNum': '0xaff6ce', 'uniqueId': '0xc44dce085ce65acf6ed1bcd9414c73742059a13feba4284f4ea13f8f5831d9c5:log:15', 'hash': '0xc44dce085ce65acf6ed1bcd9414c73742059a13feba4284f4ea13f8f5831d9c5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 115263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x44b3bcf0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T22:17:36.000Z'}}, {'blockNum': '0xaff700', 'uniqueId': '0x0951356fd6ff8dfb95779bd8ab5b915575fb1fcc2e0ce5ff5c7ae9b52471aec0:log:246', 'hash': '0x0951356fd6ff8dfb95779bd8ab5b915575fb1fcc2e0ce5ff5c7ae9b52471aec0', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c306c20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T22:25:43.000Z'}}, {'blockNum': '0xaff71d', 'uniqueId': '0xaf16266188e1ede72a4c12ef82b073c824f3ecc28096a6454d4ddded538500e6:log:185', 'hash': '0xaf16266188e1ede72a4c12ef82b073c824f3ecc28096a6454d4ddded538500e6', 'from': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'to': '0xc47db7c4f16849dfc6941f1c9784aafeecbe4e97', 'value': 263.9863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2847f7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T22:33:33.000Z'}}, {'blockNum': '0xaff825', 'uniqueId': '0x71056be0986249af193e458dc40eb117f30bc3600d23cb5706b5a9afebf0d775:log:45', 'hash': '0x71056be0986249af193e458dc40eb117f30bc3600d23cb5706b5a9afebf0d775', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c1fca50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T23:31:11.000Z'}}, {'blockNum': '0xaff84d', 'uniqueId': '0xbe4f573f6ed07558dab1c27f7efe853e34e111cdd7b251bbbd722c74be6961ed:log:63', 'hash': '0xbe4f573f6ed07558dab1c27f7efe853e34e111cdd7b251bbbd722c74be6961ed', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c1fca50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-26T23:40:55.000Z'}}, {'blockNum': '0xaff8bf', 'uniqueId': '0x7cf02e39db06f8ce364d38f2598ec5bf0c30ee84af8696076a60205614203ef1:log:297', 'hash': '0x7cf02e39db06f8ce364d38f2598ec5bf0c30ee84af8696076a60205614203ef1', 'from': '0x63dfe79e30ad6da0d7f3a992f7192dba6c731907', 'to': '0x1b7cc7d3741fd331c12d8af7c7bb7e584a584a22', 'value': 381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3a22d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T00:03:16.000Z'}}, {'blockNum': '0xaff987', 'uniqueId': '0xb1d09454e2bdc4799434b94db3f84ff681945e949caa947574518e27887af835:log:181', 'hash': '0xb1d09454e2bdc4799434b94db3f84ff681945e949caa947574518e27887af835', 'from': '0x75c37c6f99c83f07e2868b0110e50a2621f00f66', 'to': '0x361c0cc9ea4fbc182872ed04fe98db8190e24a34', 'value': 5000.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02fafa44', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T00:45:49.000Z'}}, {'blockNum': '0xaffb3d', 'uniqueId': '0x86d66dab300f4427224049e77c76d08fcdcef7ec783f7453c2430f001a9da56d:log:20', 'hash': '0x86d66dab300f4427224049e77c76d08fcdcef7ec783f7453c2430f001a9da56d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb642e186ef0cc663632117abf4f602e39e419460', 'value': 85.0873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0cfbb9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T02:25:34.000Z'}}, {'blockNum': '0xaffb6d', 'uniqueId': '0xcfc64ec8a1d3ac8ff79d094f7c1069eeb823efa10c486dd095d7b9236be19c1a:log:162', 'hash': '0xcfc64ec8a1d3ac8ff79d094f7c1069eeb823efa10c486dd095d7b9236be19c1a', 'from': '0x00772cade205a36ccf0502cc8d3528dbcc98f753', 'to': '0xe3b66c5abded5b7485dbb79f9de067a8342ca279', 'value': 889.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x87ba18', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T02:36:11.000Z'}}, {'blockNum': '0xaffc9b', 'uniqueId': '0x3071fa1687a5ced1176a372e5b4c6f11046991966e8022e882e383d10db25460:log:61', 'hash': '0x3071fa1687a5ced1176a372e5b4c6f11046991966e8022e882e383d10db25460', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c3b8fb0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T03:41:44.000Z'}}, {'blockNum': '0xaffcab', 'uniqueId': '0x161e43fa24b20df00563ca33030807eee4e2be4cd05cad8a1cecdb18e06e4e69:log:17', 'hash': '0x161e43fa24b20df00563ca33030807eee4e2be4cd05cad8a1cecdb18e06e4e69', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 30883.4249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12686fc9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T03:47:22.000Z'}}, {'blockNum': '0xaffcbf', 'uniqueId': '0x8e1ea6f5a8aabbe64bb1c4331cf0c904095ce562fa09023a6195bccffe06f5a1:log:256', 'hash': '0x8e1ea6f5a8aabbe64bb1c4331cf0c904095ce562fa09023a6195bccffe06f5a1', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c3b8fb0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T03:51:38.000Z'}}, {'blockNum': '0xaffcd7', 'uniqueId': '0x93631f46d97f14255672f7bf9a843e732ecdb0bcaedf7e84c3b336bdc1e22076:log:240', 'hash': '0x93631f46d97f14255672f7bf9a843e732ecdb0bcaedf7e84c3b336bdc1e22076', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30883.4249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12686fc9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T03:56:59.000Z'}}, {'blockNum': '0xaffcd8', 'uniqueId': '0x4ed3dbe083719af09a97f3dc167e98bc864e9e2105714a839cbc41e408336faf:log:37', 'hash': '0x4ed3dbe083719af09a97f3dc167e98bc864e9e2105714a839cbc41e408336faf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 112672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x43286200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T03:57:13.000Z'}}, {'blockNum': '0xaffd17', 'uniqueId': '0xcc01aff7de5be2788dc0c8900abfad7bef4f4806c22a2ba3d258666d35d7ac13:log:161', 'hash': '0xcc01aff7de5be2788dc0c8900abfad7bef4f4806c22a2ba3d258666d35d7ac13', 'from': '0x8402c59ac325b69efc0c94c91b4dc317470ee5b7', 'to': '0x657a0bacfb23b613376a0506a3265688b75d5c08', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0493e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T04:13:59.000Z'}}, {'blockNum': '0xaffd36', 'uniqueId': '0x26fae18d46eb6a54951df927ddba32ae4640926a3c400e2f095e9cda5a4242a9:log:231', 'hash': '0x26fae18d46eb6a54951df927ddba32ae4640926a3c400e2f095e9cda5a4242a9', 'from': '0x657a0bacfb23b613376a0506a3265688b75d5c08', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0493e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-27T04:21:24.000Z'}}]}}
Number of returned transfers:  37
Answer is complete
 
symbol             EVX
group              TWP
date        2020-12-29
hour             18:00
exchange       binance
Name: 633, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2020-12-29 18:00:00 2020-12-29 06:00:00 2020-12-30 06:00:00
Unix timestamps:  1609218000.0 1609304400.0
Hex Block Numbers:  0xb03101 0xb04a4d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb03160', 'uniqueId': '0x7c686afdb4a0399b3a4637015d31670a8efe044c1e897a5581d2a7f331e7029c:log:94', 'hash': '0x7c686afdb4a0399b3a4637015d31670a8efe044c1e897a5581d2a7f331e7029c', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 19965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0be66ad0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T05:19:06.000Z'}}, {'blockNum': '0xb0318b', 'uniqueId': '0xad75f0e4d30f5c1869b56957cd5bbaa3a895fb480ff5079e31c65e1de0580a29:log:26', 'hash': '0xad75f0e4d30f5c1869b56957cd5bbaa3a895fb480ff5079e31c65e1de0580a29', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6aa0463281f723c1b9581cda63ae2863084fdbe0', 'value': 53.6169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x082e69', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T05:30:18.000Z'}}, {'blockNum': '0xb031bf', 'uniqueId': '0x8317a19601e2a48840e10e0811f3d18fdce2f896ee975fc4dbb2f7fcb9c2aff0:log:261', 'hash': '0x8317a19601e2a48840e10e0811f3d18fdce2f896ee975fc4dbb2f7fcb9c2aff0', 'from': '0x6aa0463281f723c1b9581cda63ae2863084fdbe0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 53.6169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x082e69', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T05:41:25.000Z'}}, {'blockNum': '0xb031ce', 'uniqueId': '0x8db7054414924672dd35f1a977925e2ae790bab90e6d16fbefe8bd1b7f392297:log:0', 'hash': '0x8db7054414924672dd35f1a977925e2ae790bab90e6d16fbefe8bd1b7f392297', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6aa0463281f723c1b9581cda63ae2863084fdbe0', 'value': 2180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014ca440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T05:45:40.000Z'}}, {'blockNum': '0xb0320b', 'uniqueId': '0xde8d529334c555b14671e55d51f2e08246108ce6023724d2d4596f66a382748f:log:268', 'hash': '0xde8d529334c555b14671e55d51f2e08246108ce6023724d2d4596f66a382748f', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x185bf640', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T06:00:36.000Z'}}, {'blockNum': '0xb0320f', 'uniqueId': '0xad1df94ba71760eff5bf33126aeccf25435ff1bd9a67140ee088f6f325d420a4:log:22', 'hash': '0xad1df94ba71760eff5bf33126aeccf25435ff1bd9a67140ee088f6f325d420a4', 'from': '0x6aa0463281f723c1b9581cda63ae2863084fdbe0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014ca440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T06:01:31.000Z'}}, {'blockNum': '0xb03228', 'uniqueId': '0xfd267ba877ad4ddb78f93a93f7c8eaae84d6700ac90f960d030e5842e2ea1fbb:log:45', 'hash': '0xfd267ba877ad4ddb78f93a93f7c8eaae84d6700ac90f960d030e5842e2ea1fbb', 'from': '0x488e13518f3872d69c8d4ba27e958e793014ce27', 'to': '0xa2842aa3b62dc76b9dfdfb567f8870af54656ba4', 'value': 135.814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x14b93c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T06:06:23.000Z'}}, {'blockNum': '0xb03399', 'uniqueId': '0x5fd6b1ae531aaff448e4ffb6be6b1da89ae265f9a790795911a2f303f9b33486:log:150', 'hash': '0x5fd6b1ae531aaff448e4ffb6be6b1da89ae265f9a790795911a2f303f9b33486', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 21072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c8f5500', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T07:26:07.000Z'}}, {'blockNum': '0xb033aa', 'uniqueId': '0x0a36a8a046db83567b7a97a9c3e0ae4bc1df5a7027875fa6bc167f305157df5d:log:61', 'hash': '0x0a36a8a046db83567b7a97a9c3e0ae4bc1df5a7027875fa6bc167f305157df5d', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c8f5500', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T07:30:16.000Z'}}, {'blockNum': '0xb03781', 'uniqueId': '0x9d73c0155338ee9b69da7b89664b0106a609ee147a430c2908374d5eb43f79b9:log:204', 'hash': '0x9d73c0155338ee9b69da7b89664b0106a609ee147a430c2908374d5eb43f79b9', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0db9a430', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:04:30.000Z'}}, {'blockNum': '0xb03785', 'uniqueId': '0x4411ad130f57a9c5cc236318a9f84ffdc72d49952a2018a009f0344ddf73b764:log:103', 'hash': '0x4411ad130f57a9c5cc236318a9f84ffdc72d49952a2018a009f0344ddf73b764', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 30163.4297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11fa92f9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:05:20.000Z'}}, {'blockNum': '0xb03785', 'uniqueId': '0x78c3e1d42f86af97aa010e10238d3461e8f7ba5ade834bbcaaab6a85f167956f:log:104', 'hash': '0x78c3e1d42f86af97aa010e10238d3461e8f7ba5ade834bbcaaab6a85f167956f', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 13675.3484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0826b14c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:05:20.000Z'}}, {'blockNum': '0xb03788', 'uniqueId': '0x9f925e518a3f65c0eaf464a1b2a2c6dc50d9cd9e293bdb8468c1bc31725e89fc:log:173', 'hash': '0x9f925e518a3f65c0eaf464a1b2a2c6dc50d9cd9e293bdb8468c1bc31725e89fc', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 20650.8839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f1327', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:05:40.000Z'}}, {'blockNum': '0xb037f7', 'uniqueId': '0xad1ca76a15fc1033f852da877921b3614d8139522ad65c135164828f4986c69a:log:97', 'hash': '0xad1ca76a15fc1033f852da877921b3614d8139522ad65c135164828f4986c69a', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20650.8839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f1327', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:31:34.000Z'}}, {'blockNum': '0xb037f9', 'uniqueId': '0xa84d4aabeece0583cb1eca16427fd8787f3b5ee94bbc369b125110342f51bde4:log:151', 'hash': '0xa84d4aabeece0583cb1eca16427fd8787f3b5ee94bbc369b125110342f51bde4', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 20954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c7d53a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:31:38.000Z'}}, {'blockNum': '0xb03938', 'uniqueId': '0xdb4d774d08a46d70ab5571fc509ceb1fa73e88b9b1dca08082531c4be968f70f:log:287', 'hash': '0xdb4d774d08a46d70ab5571fc509ceb1fa73e88b9b1dca08082531c4be968f70f', 'from': '0x102bb711506222cc3603866db4af79a1faa59faa', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1165.205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb1cbd2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T12:42:17.000Z'}}, {'blockNum': '0xb03b20', 'uniqueId': '0xc1804ac63cea763eefd0eed02729e1958b213f899569be57a8aa8aa649e7c3c2:log:247', 'hash': '0xc1804ac63cea763eefd0eed02729e1958b213f899569be57a8aa8aa649e7c3c2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 20986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c8235a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T14:27:01.000Z'}}, {'blockNum': '0xb03c8f', 'uniqueId': '0xbd219ed1848752ae41556d56190fbfb9c271e040c1facaf31bad8ca0e71c520c:log:301', 'hash': '0xbd219ed1848752ae41556d56190fbfb9c271e040c1facaf31bad8ca0e71c520c', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 33435.5695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13eddcef', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T15:48:20.000Z'}}, {'blockNum': '0xb03e93', 'uniqueId': '0x7f5cf0b3dd17e5f8eeeff285bc5954b94d8e9e743516046f417a57aeabbe828e:log:23', 'hash': '0x7f5cf0b3dd17e5f8eeeff285bc5954b94d8e9e743516046f417a57aeabbe828e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 21990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d1b6860', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T17:50:48.000Z'}}, {'blockNum': '0xb03ecd', 'uniqueId': '0x9076a318ac82b11446ad31a78edc079603feb46e9ed85123f45806b97ace8d6d:log:44', 'hash': '0x9076a318ac82b11446ad31a78edc079603feb46e9ed85123f45806b97ace8d6d', 'from': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'to': '0x51f1bdb4a5161416be55020eef4d735909f47292', 'value': 105.8153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x102569', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:02:04.000Z'}}, {'blockNum': '0xb03ed6', 'uniqueId': '0xc614e38ff8d6ceae6606e68512f334d083ed9c4a6f8409ec3c016d9a366cf5ba:log:306', 'hash': '0xc614e38ff8d6ceae6606e68512f334d083ed9c4a6f8409ec3c016d9a366cf5ba', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 21227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0ca6fbb0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:03:58.000Z'}}, {'blockNum': '0xb03edd', 'uniqueId': '0xd5190db1ba960eae52dbc47ec2e3ce0ba5dd9d22723fb599b58d40243a508e98:log:238', 'hash': '0xd5190db1ba960eae52dbc47ec2e3ce0ba5dd9d22723fb599b58d40243a508e98', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xf795b99220c119675d82e5ce37606a035121a5b5', 'value': 3971.7991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x025e0c67', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:06:41.000Z'}}, {'blockNum': '0xb03ee3', 'uniqueId': '0x3fb544017beb0271888f4236b9e3825fdea8dface791843e03e482538cc86bfd:log:248', 'hash': '0x3fb544017beb0271888f4236b9e3825fdea8dface791843e03e482538cc86bfd', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 20619.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4a497e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:07:57.000Z'}}, {'blockNum': '0xb03f0d', 'uniqueId': '0x5d6d06a1a78030333028df3c323d796479a684577a1b7bdba993dd67b281164d:log:263', 'hash': '0x5d6d06a1a78030333028df3c323d796479a684577a1b7bdba993dd67b281164d', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 19916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bdef0c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:16:16.000Z'}}, {'blockNum': '0xb03f4a', 'uniqueId': '0x94e82be267f271a93ba5c589c1040924c1ace8663ec9297fc86823f1adc0b83b:log:107', 'hash': '0x94e82be267f271a93ba5c589c1040924c1ace8663ec9297fc86823f1adc0b83b', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20619.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4a497e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:30:40.000Z'}}, {'blockNum': '0xb03fff', 'uniqueId': '0xbf7c201677d882ccd865986446094212206a205789a79f28bb15c520136ef1ba:log:2', 'hash': '0xbf7c201677d882ccd865986446094212206a205789a79f28bb15c520136ef1ba', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0x6aa88686a48bdb35dba3fef81663841795da5e26', 'value': 18.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02db40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T19:10:24.000Z'}}, {'blockNum': '0xb04000', 'uniqueId': '0x341b384d0f7d060e9e121a26225671753de04419cd85e10e5261738ca95010fa:log:0', 'hash': '0x341b384d0f7d060e9e121a26225671753de04419cd85e10e5261738ca95010fa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c1a4c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T19:10:25.000Z'}}, {'blockNum': '0xb0402e', 'uniqueId': '0x930930e46003112bcb65d1a5b48c1ff0e2202cee6958f28fd3c7d66293ac2971:log:34', 'hash': '0x930930e46003112bcb65d1a5b48c1ff0e2202cee6958f28fd3c7d66293ac2971', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c1a4c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T19:21:25.000Z'}}, {'blockNum': '0xb04236', 'uniqueId': '0x432465cb9eb0f39b6af1bdad751736dd834629e8cd63463f0229582db49fbc72:log:16', 'hash': '0x432465cb9eb0f39b6af1bdad751736dd834629e8cd63463f0229582db49fbc72', 'from': '0x1bf7e5f8692ee2012db277890abae5014c1cc668', 'to': '0x05d6bf130cefb47a4cedcebde2f00ac2dc234c10', 'value': 711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6c7d70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T21:21:51.000Z'}}, {'blockNum': '0xb043ad', 'uniqueId': '0x9d3ec2e3ac951c2761ea7721013da9423733423ef8f9776442fae3702586a4df:log:91', 'hash': '0x9d3ec2e3ac951c2761ea7721013da9423733423ef8f9776442fae3702586a4df', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x57119fa8816cdc4e59a2cb70d61368085d7a82db', 'value': 175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1ab3f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T22:45:31.000Z'}}, {'blockNum': '0xb0442d', 'uniqueId': '0x56a210d5a248d578d8ed2a89a88b3ed8581cb6e8e6e6e8e1dc56f71a26063de2:log:5', 'hash': '0x56a210d5a248d578d8ed2a89a88b3ed8581cb6e8e6e6e8e1dc56f71a26063de2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 13655.3484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0823a40c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T23:13:02.000Z'}}, {'blockNum': '0xb04465', 'uniqueId': '0xf2f5b76040a7b65abb70188325ad6a44d51ff53db7d0a4790d9ab405af817cd8:log:164', 'hash': '0xf2f5b76040a7b65abb70188325ad6a44d51ff53db7d0a4790d9ab405af817cd8', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13655.3484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0823a40c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T23:26:41.000Z'}}, {'blockNum': '0xb0453c', 'uniqueId': '0x2b0391a1fbd853233eddafe7e603aa16f20ee568e4cbcab64b8da87ae4153bfa:log:10', 'hash': '0x2b0391a1fbd853233eddafe7e603aa16f20ee568e4cbcab64b8da87ae4153bfa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 13645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08220fd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:19:56.000Z'}}, {'blockNum': '0xb0453c', 'uniqueId': '0x9df9227be085cde43c60d97244e60b4c95d1e58302ae61efc7d0dbccc9eca0cf:log:11', 'hash': '0x9df9227be085cde43c60d97244e60b4c95d1e58302ae61efc7d0dbccc9eca0cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c814b40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:19:56.000Z'}}, {'blockNum': '0xb04554', 'uniqueId': '0x45301ee88945c81d1d5159b1f6256e215a96208b0725fd5916be1edbdd4ed9f9:log:14', 'hash': '0x45301ee88945c81d1d5159b1f6256e215a96208b0725fd5916be1edbdd4ed9f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 106985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3fc49d90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:24:40.000Z'}}, {'blockNum': '0xb04558', 'uniqueId': '0xf151e573cd922001f9de69e87f58c9322a2ca9660fdb06cf9c556fd5f33841cf:log:163', 'hash': '0xf151e573cd922001f9de69e87f58c9322a2ca9660fdb06cf9c556fd5f33841cf', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c814b40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:26:00.000Z'}}, {'blockNum': '0xb04558', 'uniqueId': '0xc8e7ae09fc593bcc8c0150536b7b7e31b1ba365ad055fcfdf0cd9ce00abe170d:log:164', 'hash': '0xc8e7ae09fc593bcc8c0150536b7b7e31b1ba365ad055fcfdf0cd9ce00abe170d', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08220fd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:26:00.000Z'}}, {'blockNum': '0xb04686', 'uniqueId': '0x290fd851ce04909a10d03a9ffca2431e77d8abbb363e76569a4aff2291bb3eba:log:26', 'hash': '0x290fd851ce04909a10d03a9ffca2431e77d8abbb363e76569a4aff2291bb3eba', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x54a9cf11298366adc3c901ed44f35aa1ee9116c6', 'value': 544.5098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5315ea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T01:35:02.000Z'}}, {'blockNum': '0xb046a3', 'uniqueId': '0xfce2efe9a6d17880ecfbb482e4cc9ac18aa69020d2f777aea8b4cac7ce8b4d62:log:0', 'hash': '0xfce2efe9a6d17880ecfbb482e4cc9ac18aa69020d2f777aea8b4cac7ce8b4d62', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 33415.0409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13eabb09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T01:42:06.000Z'}}, {'blockNum': '0xb046a3', 'uniqueId': '0xec29a45c4e53322fd63c9b4619cea1c2af389f2ea6b5dcab85c87e3ea01738fa:log:1', 'hash': '0xec29a45c4e53322fd63c9b4619cea1c2af389f2ea6b5dcab85c87e3ea01738fa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 21093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c928950', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T01:42:06.000Z'}}, {'blockNum': '0xb04775', 'uniqueId': '0x5fe020870e657ec8d115c6b1f0a063a29b54f81c6389a25bddc27f1f11c1d987:log:151', 'hash': '0x5fe020870e657ec8d115c6b1f0a063a29b54f81c6389a25bddc27f1f11c1d987', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20914.3909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c774865', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T02:27:29.000Z'}}, {'blockNum': '0xb047b5', 'uniqueId': '0x46dba761b5aaa63d4a4552582300435b7291fbe93b6624c0b7873cd9857c93e7:log:70', 'hash': '0x46dba761b5aaa63d4a4552582300435b7291fbe93b6624c0b7873cd9857c93e7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c513a90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T02:41:02.000Z'}}, {'blockNum': '0xb04806', 'uniqueId': '0xc0ecadeeba58df68982dad826fd1f07f24da95092b5bb8542feb606d45696e4c:log:162', 'hash': '0xc0ecadeeba58df68982dad826fd1f07f24da95092b5bb8542feb606d45696e4c', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 41758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x18e3c3e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T02:56:16.000Z'}}, {'blockNum': '0xb048e0', 'uniqueId': '0x7a49513a7dc9af9529b8dc1d9a807f00a90a028ec9aa58c49d778ec051b6d521:log:186', 'hash': '0x7a49513a7dc9af9529b8dc1d9a807f00a90a028ec9aa58c49d778ec051b6d521', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 33415.0409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13eabb09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T03:47:37.000Z'}}, {'blockNum': '0xb048e0', 'uniqueId': '0x6dee6436433e7f7122ca90e047d39a9793b327d3066941cb483e2d97e64ace6e:log:187', 'hash': '0x6dee6436433e7f7122ca90e047d39a9793b327d3066941cb483e2d97e64ace6e', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20914.3909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c774865', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T03:47:37.000Z'}}, {'blockNum': '0xb048f2', 'uniqueId': '0x148c270c1a054a13adf2f107d090a3f6cb7b58f688af07754854f7c797aa6d31:log:85', 'hash': '0x148c270c1a054a13adf2f107d090a3f6cb7b58f688af07754854f7c797aa6d31', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4a83d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T03:52:05.000Z'}}, {'blockNum': '0xb048fa', 'uniqueId': '0x43f81f517fd97cced4922cfd70efea2cc6d5fac58d5f5c497ae657ea046f8a90:log:88', 'hash': '0x43f81f517fd97cced4922cfd70efea2cc6d5fac58d5f5c497ae657ea046f8a90', 'from': '0x54a9cf11298366adc3c901ed44f35aa1ee9116c6', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 544.5098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5315ea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T03:54:14.000Z'}}, {'blockNum': '0xb0491d', 'uniqueId': '0x1bca246b5d27ed31b6c51691adda48e3c813fb6fd8efae50b6c55c261aa54456:log:78', 'hash': '0x1bca246b5d27ed31b6c51691adda48e3c813fb6fd8efae50b6c55c261aa54456', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 109422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x413878e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T04:01:32.000Z'}}, {'blockNum': '0xb04925', 'uniqueId': '0xde994a80639f649b912316db5ffc39bf76133676244d4a63d387be5296a4e6b4:log:185', 'hash': '0xde994a80639f649b912316db5ffc39bf76133676244d4a63d387be5296a4e6b4', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4a83d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T04:04:06.000Z'}}]}}
Number of returned transfers:  49
Answer is complete
 
symbol            IDEX
group              TWP
date        2020-12-31
hour             17:00
exchange       binance
Name: 634, dtype: object
HERE
 Symbol: IDEX, Contract: 0xb705268213d593b8fd88d3fdeff93aff5cbdcfae
Datetime timestamps:  2020-12-31 17:00:00 2020-12-31 05:00:00 2021-01-01 05:00:00
Unix timestamps:  1609387200.0 1609473600.0
Hex Block Numbers:  0xb062b6 0xb07c45
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb064be', 'uniqueId': '0xf6f88ecc5db86d5cc957b546aa2d11c8ed8319c0f466890231b5861e3b7e4477:log:153', 'hash': '0xf6f88ecc5db86d5cc957b546aa2d11c8ed8319c0f466890231b5861e3b7e4477', 'from': '0x8645fb015e160c3f9c085c2f2a57065d7321afc3', 'to': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'value': 197119.9880523943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x29bde55deb320e427f0f', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T05:55:11.000Z'}}, {'blockNum': '0xb06500', 'uniqueId': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6:log:228', 'hash': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T06:14:04.000Z'}}, {'blockNum': '0xb06500', 'uniqueId': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6:log:233', 'hash': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T06:14:04.000Z'}}, {'blockNum': '0xb06670', 'uniqueId': '0x716b0f3533b84222302943eab7cccf09c99dd2db2933e2a0197866328b1d0802:log:89', 'hash': '0x716b0f3533b84222302943eab7cccf09c99dd2db2933e2a0197866328b1d0802', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 69831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ec98bcce7815ebc0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T07:35:28.000Z'}}, {'blockNum': '0xb0674e', 'uniqueId': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc:log:62', 'hash': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 32150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06cedae0c5ffe8980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:25:30.000Z'}}, {'blockNum': '0xb0674e', 'uniqueId': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc:log:67', 'hash': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 32150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06cedae0c5ffe8980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:25:30.000Z'}}, {'blockNum': '0xb06773', 'uniqueId': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883:log:252', 'hash': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:32:44.000Z'}}, {'blockNum': '0xb06773', 'uniqueId': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883:log:253', 'hash': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x6632eda2685eabfb7b3b45669cfa5441349485d3', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:32:44.000Z'}}, {'blockNum': '0xb0677d', 'uniqueId': '0xbacb5695f9be72ac8c2c8cfd048fec0b6d5f02f43b3ef98f406e622880494b3f:log:319', 'hash': '0xbacb5695f9be72ac8c2c8cfd048fec0b6d5f02f43b3ef98f406e622880494b3f', 'from': '0x6632eda2685eabfb7b3b45669cfa5441349485d3', 'to': '0xdd4c4ad3dff94841bd8b9020a2238e2864fc1a22', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:35:02.000Z'}}, {'blockNum': '0xb06806', 'uniqueId': '0x061b54e2c575b5e2d839dbcc6dd46053e0a53886ca6732213d534af8217ac4aa:log:49', 'hash': '0x061b54e2c575b5e2d839dbcc6dd46053e0a53886ca6732213d534af8217ac4aa', 'from': '0xdd4c4ad3dff94841bd8b9020a2238e2864fc1a22', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T09:00:32.000Z'}}, {'blockNum': '0xb06a70', 'uniqueId': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71:log:90', 'hash': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71', 'from': '0x8b91c0dd24c4fd4f973e49ed8568921e31cf38b7', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T11:13:54.000Z'}}, {'blockNum': '0xb06a70', 'uniqueId': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71:log:95', 'hash': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T11:13:54.000Z'}}, {'blockNum': '0xb06bd3', 'uniqueId': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a:log:208', 'hash': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:28:09.000Z'}}, {'blockNum': '0xb06bd3', 'uniqueId': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a:log:209', 'hash': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xccc18ec56dcefec8c39ea8022a099798e31e5264', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:28:09.000Z'}}, {'blockNum': '0xb06bd9', 'uniqueId': '0xcb49191614cc10f05cea4d85da79ae734f291c33036bceeb0463b680fa4d5cf0:log:175', 'hash': '0xcb49191614cc10f05cea4d85da79ae734f291c33036bceeb0463b680fa4d5cf0', 'from': '0xccc18ec56dcefec8c39ea8022a099798e31e5264', 'to': '0x9ea39651739f6c025d0770695a822b7187605f42', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:29:37.000Z'}}, {'blockNum': '0xb06c72', 'uniqueId': '0xc5cc9e8ee1a15fdd662718843b23419e8a9fcdbb7e28cb766431a25a10d7b4fe:log:46', 'hash': '0xc5cc9e8ee1a15fdd662718843b23419e8a9fcdbb7e28cb766431a25a10d7b4fe', 'from': '0x9ea39651739f6c025d0770695a822b7187605f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:01:19.000Z'}}, {'blockNum': '0xb06c76', 'uniqueId': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97:log:144', 'hash': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:02:03.000Z'}}, {'blockNum': '0xb06c76', 'uniqueId': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97:log:145', 'hash': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x6521a235cb318948a40c27c60f4e5d637998fe08', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:02:03.000Z'}}, {'blockNum': '0xb06c80', 'uniqueId': '0xbc952c6ccc2728f471560576958bab591891284e872d685e98cb2d282c6b9322:log:198', 'hash': '0xbc952c6ccc2728f471560576958bab591891284e872d685e98cb2d282c6b9322', 'from': '0x6521a235cb318948a40c27c60f4e5d637998fe08', 'to': '0x7594530b7d298c28de863010f0ff25e15aef9ccf', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:04:08.000Z'}}, {'blockNum': '0xb06cf4', 'uniqueId': '0xa849f6e941a05933f6991b1b3fe817e9c74ce49c92201fc9482c0eeb64d89e1a:log:32', 'hash': '0xa849f6e941a05933f6991b1b3fe817e9c74ce49c92201fc9482c0eeb64d89e1a', 'from': '0x7594530b7d298c28de863010f0ff25e15aef9ccf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:30:30.000Z'}}, {'blockNum': '0xb06d17', 'uniqueId': '0x8bd9f421ea52c659ab3bd69ffe01f7734b58b50e29c2eea44962988dbc4cd8eb:log:29', 'hash': '0x8bd9f421ea52c659ab3bd69ffe01f7734b58b50e29c2eea44962988dbc4cd8eb', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 41984.80376968497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08e40032a7812a1770eb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:40:42.000Z'}}, {'blockNum': '0xb06d95', 'uniqueId': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc:log:179', 'hash': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 20954.836775318676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x046ff6c73fab39b7ca10', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T14:07:48.000Z'}}, {'blockNum': '0xb06d95', 'uniqueId': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc:log:180', 'hash': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 20954.8359520322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x046ff6c452e4e7c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T14:07:48.000Z'}}, {'blockNum': '0xb06f67', 'uniqueId': '0x0d3d3f167e21dfcb07398c592d58bbc9dcef6a642703c29e30facedd43313cd8:log:233', 'hash': '0x0d3d3f167e21dfcb07398c592d58bbc9dcef6a642703c29e30facedd43313cd8', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T15:51:03.000Z'}}, {'blockNum': '0xb06f83', 'uniqueId': '0xe35a04ecfe7d87e1168f8d110b781d3f701dd3b655ecdbefd62ddf1bbd5376e0:log:60', 'hash': '0xe35a04ecfe7d87e1168f8d110b781d3f701dd3b655ecdbefd62ddf1bbd5376e0', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:00:38.000Z'}}, {'blockNum': '0xb07076', 'uniqueId': '0x7fc1b3ecd48c0ba53f47197ff0d4eb89b8885d650c8b7eb3e74c88da066ead1e:log:88', 'hash': '0x7fc1b3ecd48c0ba53f47197ff0d4eb89b8885d650c8b7eb3e74c88da066ead1e', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 32843.69407889556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06f475d137680a7d8339', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:30.000Z'}}, {'blockNum': '0xb07078', 'uniqueId': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc:log:94', 'hash': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 25732.384259344133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0572f4918bdbcc3dad48', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:59.000Z'}}, {'blockNum': '0xb07078', 'uniqueId': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc:log:95', 'hash': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 25732.383010734346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0572f48d1c412d800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:59.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0xde064d44427b04772fbc6242f25c0d690dc91d8f356c7fc97607b4b563f7b1fd:log:7', 'hash': '0xde064d44427b04772fbc6242f25c0d690dc91d8f356c7fc97607b4b563f7b1fd', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 45336.95216870385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0999b89a1ff80484e7ac', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa:log:14', 'hash': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 35552.304501192295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07874b5683a6f815d8f1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa:log:15', 'hash': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 35552.304501192295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07874b5683a6f815d8f1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb07083', 'uniqueId': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d:log:309', 'hash': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:25.000Z'}}, {'blockNum': '0xb07083', 'uniqueId': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d:log:310', 'hash': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:25.000Z'}}, {'blockNum': '0xb07085', 'uniqueId': '0xb7b24216f8194d799b442930e5d157a9e50bef165c9641c4d1f84595a182983b:log:143', 'hash': '0xb7b24216f8194d799b442930e5d157a9e50bef165c9641c4d1f84595a182983b', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:35.000Z'}}, {'blockNum': '0xb07088', 'uniqueId': '0x2eb8e3627eddd10d74f1f4da15d9d9c0ae14d03552a3f37b4d27ee7c6b44dce4:log:61', 'hash': '0x2eb8e3627eddd10d74f1f4da15d9d9c0ae14d03552a3f37b4d27ee7c6b44dce4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 12499.909064288897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a59f15ea9d39290f9d', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:56:20.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081:log:7', 'hash': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 374743.80349516025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcb91564dc0a4c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081:log:8', 'hash': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 374743.80349516025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcb91564dc0a4c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210:log:11', 'hash': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xfe7f0897239ce9cc6645d9323e6fe428591b821c', 'value': 78979.55866239427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x10b97d8e67cfcf57e8fd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210:log:17', 'hash': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210', 'from': '0xfe7f0897239ce9cc6645d9323e6fe428591b821c', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 78979.55866239427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x10b97d8e67cfcf57e8fd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xdfbd384ad1e0c29b856f35f18e7891887488e9d84bccbb8b22a25ae7db398a22:log:72', 'hash': '0xdfbd384ad1e0c29b856f35f18e7891887488e9d84bccbb8b22a25ae7db398a22', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 11179.942543947493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x025e10decdd89344a4bd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xaa89b82a4783e661e56df4ceaf1f9ef6d90e9d9b538e53d3eb3c465fdbd50dc1:log:185', 'hash': '0xaa89b82a4783e661e56df4ceaf1f9ef6d90e9d9b538e53d3eb3c465fdbd50dc1', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 27790.868296863675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05e28bc5f1aab04ac588', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xf01029d76553f7294f294c02ee8aa8c7693b9356681d1ead15f845ab381eeae4:log:16', 'hash': '0xf01029d76553f7294f294c02ee8aa8c7693b9356681d1ead15f845ab381eeae4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x97f0b8d84194f1b1c57655e0dcc8ee6af1d6248d', 'value': 18207.23707430216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03db042c35005ea598a4', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09:log:23', 'hash': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 26178.254195504018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x058b2041c479d0481c04', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09:log:24', 'hash': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 26178.25286121645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x058b203d06f2c7c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0x2acd2f5eacfe3edd1cd924fe44a5b1edd08807e86eb24bd79854e563a07267f4:log:84', 'hash': '0x2acd2f5eacfe3edd1cd924fe44a5b1edd08807e86eb24bd79854e563a07267f4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 88444.99698166132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x12ba9ce69924c2542f8e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b:log:91', 'hash': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'value': 101702.17356914104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1589492f33ecace102dc', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b:log:92', 'hash': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b', 'from': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 101702.17356914104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1589492f33ecace102dc', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0x78a18ccccee32349fa5453e5e4113813e9ffdaadffdb99395b4079ec41d3291e:log:335', 'hash': '0x78a18ccccee32349fa5453e5e4113813e9ffdaadffdb99395b4079ec41d3291e', 'from': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07098', 'uniqueId': '0x48583e3f53f32a87c8462e2bddedd9939e2c96821671c3f2865432c7a1bc3401:log:142', 'hash': '0x48583e3f53f32a87c8462e2bddedd9939e2c96821671c3f2865432c7a1bc3401', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x639fc46a3cd1c1deff7f123f651350712e8e2b5a', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:51.000Z'}}, {'blockNum': '0xb07099', 'uniqueId': '0x5902cb2c417688c449b2c9312b5405f2945148c848199ab506c15bae905a69e3:log:0', 'hash': '0x5902cb2c417688c449b2c9312b5405f2945148c848199ab506c15bae905a69e3', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 374743.8035042302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcc1552afcd64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:17.000Z'}}, {'blockNum': '0xb0709b', 'uniqueId': '0x535754ca07b45c5a28e5852ba3f3971698d3cc9ad021655d39b0675d528fb616:log:1', 'hash': '0x535754ca07b45c5a28e5852ba3f3971698d3cc9ad021655d39b0675d528fb616', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:40.000Z'}}, {'blockNum': '0xb0709b', 'uniqueId': '0xab3acf638f62a5166e4c4f294ad8da3292a1371dbb943654f2409c855d0d4f4b:log:56', 'hash': '0xab3acf638f62a5166e4c4f294ad8da3292a1371dbb943654f2409c855d0d4f4b', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 11830.020825450492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02814e84ce9c51ff432d', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:40.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x746ef6db20e3e1e4ef660e790053757afb1a7e5d7e2e71e489ab6bc0403bd1f3:log:11', 'hash': '0x746ef6db20e3e1e4ef660e790053757afb1a7e5d7e2e71e489ab6bc0403bd1f3', 'from': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c:log:305', 'hash': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 21507.8676843016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x048df19fb94e342f2641', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c:log:306', 'hash': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 21507.866779279437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x048df19c82314fc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709d', 'uniqueId': '0xe5b6e409159c9a547c63bf05ff540769de7122be00fb63802ec6d9b3d5977392:log:17', 'hash': '0xe5b6e409159c9a547c63bf05ff540769de7122be00fb63802ec6d9b3d5977392', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x61fd0d043d519f5a2bd05785000f30db96809429', 'value': 16638.047790046825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e471f3a1f7', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:00.000Z'}}, {'blockNum': '0xb0709d', 'uniqueId': '0x50b7ab79dd533e1d7c0fa5af577b83cbaecbd7704d5a7402342ab09b8972dc9b:log:264', 'hash': '0x50b7ab79dd533e1d7c0fa5af577b83cbaecbd7704d5a7402342ab09b8972dc9b', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xb4fee33a0edef5a7fb0da42a9b8fe3b4f73dfb8b', 'value': 22863.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d773f85871ae58a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:00.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x70f520061e1187cfb90a9efa3fb4ff0423d747460fc7376351aab05a69a33a46:log:43', 'hash': '0x70f520061e1187cfb90a9efa3fb4ff0423d747460fc7376351aab05a69a33a46', 'from': '0x639fc46a3cd1c1deff7f123f651350712e8e2b5a', 'to': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880:log:160', 'hash': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880:log:161', 'hash': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x78b566c3611eb6de644439ad72f1755b859499fb', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3:log:164', 'hash': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 38478.786317350125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0825f06e7e48573c4117', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3:log:170', 'hash': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 38478.786317350125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0825f06e7e48573c4117', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb070a1', 'uniqueId': '0x6d1d097e7747a19c77855d4463ec4012328ce1554958086d96366f0f59af38b6:log:19', 'hash': '0x6d1d097e7747a19c77855d4463ec4012328ce1554958086d96366f0f59af38b6', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 59036.44045169382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c805f318a5937d6d141', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:04.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:242', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 47331.97522324073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a05df1bd1fc266ccf54', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:249', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 96595.32833061428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1474717844b5cab574e8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:250', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:252', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0xfe744aef67324ccb15819206c3d91f2e58d53e4e', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598:log:265', 'hash': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'value': 41615.53925688159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cffb9f918e9ec99265', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598:log:266', 'hash': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598', 'from': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 41615.53925688159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cffb9f918e9ec99265', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x3c82755756bb035bcdc3f6ab445f79153beee4b0017d0257d539f75943f1af80:log:22', 'hash': '0x3c82755756bb035bcdc3f6ab445f79153beee4b0017d0257d539f75943f1af80', 'from': '0x61fd0d043d519f5a2bd05785000f30db96809429', 'to': '0x94b521f9ee971ac9b8f158ce6e25ff06d6b6c7df', 'value': 16638.0477900468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e470883400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29:log:239', 'hash': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29', 'from': '0xf81521e83369fd9b661b804ba342993b2bcef430', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 2333.156600233402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x7e7b0d5e519dfe3780', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29:log:241', 'hash': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 2333.1523688657467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x7e7afe55e98ffc0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a7', 'uniqueId': '0xf57e370cf999fdc57dd35f6e0a1b62802e08084bf2a0032794d686a277042f5b:log:34', 'hash': '0xf57e370cf999fdc57dd35f6e0a1b62802e08084bf2a0032794d686a277042f5b', 'from': '0x78b566c3611eb6de644439ad72f1755b859499fb', 'to': '0x2e4ba6698b2c6549ca554785adb6e58186aff6c6', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:11.000Z'}}, {'blockNum': '0xb070a7', 'uniqueId': '0x6e10470cf2c38062ae9eaea6d12612db91d162a236584540f066c25bcbc67c8b:log:38', 'hash': '0x6e10470cf2c38062ae9eaea6d12612db91d162a236584540f066c25bcbc67c8b', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 59036.44045169382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c805f318a5937d6d141', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:11.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x4a0cd84d82083dd03e26c398b233d4b0a2637342880dbb43e9121d66875d5125:log:61', 'hash': '0x4a0cd84d82083dd03e26c398b233d4b0a2637342880dbb43e9121d66875d5125', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 21978.707620276513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04a777d73475309e8ac1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67:log:68', 'hash': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 26286.437447768243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0590fd99e33b0fd9e109', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67:log:69', 'hash': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 26286.437447768243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0590fd99e33b0fd9e109', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0xb385af39dd61b0e1d3c3abea8ab107bb6ac1ce98a4468ad8a2e432ab9d1dcd05:log:95', 'hash': '0xb385af39dd61b0e1d3c3abea8ab107bb6ac1ce98a4468ad8a2e432ab9d1dcd05', 'from': '0xfe744aef67324ccb15819206c3d91f2e58d53e4e', 'to': '0xf6e8eb93a97aaaf8b16c82f50223045def46d196', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0xb33dcefaa82b528a18bf08836317b19e4c8c07c6371c95ac1c6d295b2eb9ca90:log:39', 'hash': '0xb33dcefaa82b528a18bf08836317b19e4c8c07c6371c95ac1c6d295b2eb9ca90', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 44125.16523853139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x095807ae1f4c9df105a5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e:log:46', 'hash': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 35447.41641643528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07819bb92e495eadec9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e:log:47', 'hash': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 35447.41641643528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07819bb92e495eadec9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0xca2cabd7bc5c07ae8316f92ff384f007adfeae874c659caa77aac6930489a9a9:log:132', 'hash': '0xca2cabd7bc5c07ae8316f92ff384f007adfeae874c659caa77aac6930489a9a9', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x6faa5a80097158dbe98ef3f0136586b3f2857052', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xa385162b082da58de8c72757f56931bceaa77d116d2b52058cba87da05d10caf:log:27', 'hash': '0xa385162b082da58de8c72757f56931bceaa77d116d2b52058cba87da05d10caf', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3:log:35', 'hash': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 32243.752777417754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06d3eff58c566c21cef5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3:log:36', 'hash': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 32243.752777417754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06d3eff58c566c21cef5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070b0', 'uniqueId': '0xe6781c705556ada8299e5e9494d935608a6a8050a6cdf9e2be1a7ae232b744fc:log:120', 'hash': '0xe6781c705556ada8299e5e9494d935608a6a8050a6cdf9e2be1a7ae232b744fc', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:09.000Z'}}, {'blockNum': '0xb070b1', 'uniqueId': '0x0bbd25e0aa999cd6b65e8fc0dc983714db103a097226f7cae3a6233059b724be:log:35', 'hash': '0x0bbd25e0aa999cd6b65e8fc0dc983714db103a097226f7cae3a6233059b724be', 'from': '0x6faa5a80097158dbe98ef3f0136586b3f2857052', 'to': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:43.000Z'}}, {'blockNum': '0xb070b1', 'uniqueId': '0x816479eba873edbe7180415bfda935d7cf0f05fcd5ed8b10f01b779708d99cc8:log:192', 'hash': '0x816479eba873edbe7180415bfda935d7cf0f05fcd5ed8b10f01b779708d99cc8', 'from': '0x94b521f9ee971ac9b8f158ce6e25ff06d6b6c7df', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 16638.0477900468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e470883400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:43.000Z'}}, {'blockNum': '0xb070b2', 'uniqueId': '0x1c1cc36598e967a0e2cc2a7c8bdb337e917c75060fd205aab72c61e36e511949:log:25', 'hash': '0x1c1cc36598e967a0e2cc2a7c8bdb337e917c75060fd205aab72c61e36e511949', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:56.000Z'}}, {'blockNum': '0xb070bc', 'uniqueId': '0x5edd02b6e35e9d33c65b5929e14da80dc574d71fecd59889d22d21bdbb424642:log:151', 'hash': '0x5edd02b6e35e9d33c65b5929e14da80dc574d71fecd59889d22d21bdbb424642', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0xd5d21b9232ab1e6c7622bf2375f0365bc3a6b10d', 'value': 45817.84679395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b3ca5b09bdc3f72c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:10:14.000Z'}}, {'blockNum': '0xb070bd', 'uniqueId': '0xf132bfabeb777ea76a0ce1d5ee118deb2ab06a0ac845ed8ef5ffb6a954fa1ff8:log:283', 'hash': '0xf132bfabeb777ea76a0ce1d5ee118deb2ab06a0ac845ed8ef5ffb6a954fa1ff8', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:10:51.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x94f032c67307de4061954fdd45dedb35030be7ce988acd11510c79e804539a53:log:316', 'hash': '0x94f032c67307de4061954fdd45dedb35030be7ce988acd11510c79e804539a53', 'from': '0xd5d21b9232ab1e6c7622bf2375f0365bc3a6b10d', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 45817.84679395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b3ca5b09bdc3f72c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2:log:324', 'hash': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'value': 41604.26901791843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cf5f37a2eeb19d19e6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2:log:330', 'hash': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2', 'from': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 41604.26901791843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cf5f37a2eeb19d19e6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c1', 'uniqueId': '0x8484dc69cd8f52aa2e32a589b492daf9eb2e15dfe93410142e0eed2689be4e9b:log:181', 'hash': '0x8484dc69cd8f52aa2e32a589b492daf9eb2e15dfe93410142e0eed2689be4e9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:19.000Z'}}, {'blockNum': '0xb070c1', 'uniqueId': '0xef2b2ee229e0daead0b206647728614dd8867678380887c5441b65147afad96a:log:187', 'hash': '0xef2b2ee229e0daead0b206647728614dd8867678380887c5441b65147afad96a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:19.000Z'}}, {'blockNum': '0xb070c2', 'uniqueId': '0x7d7dbeec8b707dbf5316e9ebbfa179b98125c7dc27a1bcaf97022ccb269c188d:log:230', 'hash': '0x7d7dbeec8b707dbf5316e9ebbfa179b98125c7dc27a1bcaf97022ccb269c188d', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:54.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51:log:6', 'hash': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51:log:11', 'hash': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04:log:22', 'hash': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 45212.07594751183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0992f398aa6ad1452c19', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04:log:23', 'hash': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 45212.071874338406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0992f38a31e33a000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x9ba48c941388f27f70887109e596c09de6d895c8788aae21095a7afd62f1caad:log:118', 'hash': '0x9ba48c941388f27f70887109e596c09de6d895c8788aae21095a7afd62f1caad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 24770.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x053ed4e954b99c44a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x5881d0d427b23db168727a3430d4566d857c1cee62871ec89821a4236119544c:log:119', 'hash': '0x5881d0d427b23db168727a3430d4566d857c1cee62871ec89821a4236119544c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 58867.44045169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c7735d8edbed317a400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c8', 'uniqueId': '0x098af8b5f794660179c8662f20bf03f3518110c015d60a2875ee97c8f9d89fa4:log:146', 'hash': '0x098af8b5f794660179c8662f20bf03f3518110c015d60a2875ee97c8f9d89fa4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 65006.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dc40601e9edfb7d8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:14:23.000Z'}}, {'blockNum': '0xb070cc', 'uniqueId': '0x3ba52a8956772a550b21332389ec8d23867be96fa597d08f2da2c6e71245c86f:log:69', 'hash': '0x3ba52a8956772a550b21332389ec8d23867be96fa597d08f2da2c6e71245c86f', 'from': '0xf05f2aa4a4f883b2458ead1d082808ec8b371045', 'to': '0x11e0205ce7e4c6dceabf3019a38de4344c69ec06', 'value': 12522.210342336253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a6d493f8d74af59ef8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:35.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xaec9441f8a5c9ffa38bd09a136d5d8317724f10f26887b82baf859642a43bcab:log:101', 'hash': '0xaec9441f8a5c9ffa38bd09a136d5d8317724f10f26887b82baf859642a43bcab', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 58867.44045169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c7735d8edbed317a400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37:log:109', 'hash': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'value': 40718.85917455671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x089f5faff97f501330a2', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37:log:115', 'hash': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37', 'from': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 40718.85917455671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x089f5faff97f501330a2', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:187', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:189', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:193', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cf', 'uniqueId': '0xb7f02a1e51e83e308b607b294d7a3cc818adaed69ba5378f280dc23bc3ccd5fc:log:221', 'hash': '0xb7f02a1e51e83e308b607b294d7a3cc818adaed69ba5378f280dc23bc3ccd5fc', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x92818156fb6f4d496ac7d2c97496d6daaee88c21', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:03.000Z'}}, {'blockNum': '0xb070d0', 'uniqueId': '0x8ace6e7e55bc1bdf2c6aac385d38215120aab498f88172437b4b572f26edd0c1:log:226', 'hash': '0x8ace6e7e55bc1bdf2c6aac385d38215120aab498f88172437b4b572f26edd0c1', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xd859ecc3db5bd54d6e670100606f62d03c095436', 'value': 3960.072549134777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xd6ad0bea131207d4ea', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:12.000Z'}}, {'blockNum': '0xb070d1', 'uniqueId': '0x2d820a43cfd52e533aa9f5c0f88d6284b9990d089616d35f1683de6966e21164:log:59', 'hash': '0x2d820a43cfd52e533aa9f5c0f88d6284b9990d089616d35f1683de6966e21164', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:18.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:1', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65006.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dc40601e9edfb7d8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:3', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 22752.36565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d16880ab79b19f2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:10', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 42254.39335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08f29d813e7449de6000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d7', 'uniqueId': '0x24bec413f41fa5b9d06d7f6979eb9ea14db853c7b5bba66e202c3dd5fc61838d:log:137', 'hash': '0x24bec413f41fa5b9d06d7f6979eb9ea14db853c7b5bba66e202c3dd5fc61838d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x597cb045431f8da34e0ba935d0083e24710e5d62', 'value': 173487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x24bcc28c896b9c700000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:33.000Z'}}, {'blockNum': '0xb070d7', 'uniqueId': '0xbcdd861946ecfa86e19036916830f98fe5e360f49f0b26f2b17385435055730c:log:145', 'hash': '0xbcdd861946ecfa86e19036916830f98fe5e360f49f0b26f2b17385435055730c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:33.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972:log:0', 'hash': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972:log:5', 'hash': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764:log:13', 'hash': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'value': 63950.222731398106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d8abf9f0f67beaad9de', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764:log:14', 'hash': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764', 'from': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 63950.222731398106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d8abf9f0f67beaad9de', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070dc', 'uniqueId': '0xbe4bdfed166a5dbd31bcb2bac441e20a4baa71268c26d48626fc173f9580fc4e:log:48', 'hash': '0xbe4bdfed166a5dbd31bcb2bac441e20a4baa71268c26d48626fc173f9580fc4e', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 28191.09682218131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05f83e0f4cf10876b0ad', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:50.000Z'}}, {'blockNum': '0xb070dd', 'uniqueId': '0x5b6d5d054d5033f7f6c92ed668dafb755eb82a8bb01078ad79efceeb36e80978:log:19', 'hash': '0x5b6d5d054d5033f7f6c92ed668dafb755eb82a8bb01078ad79efceeb36e80978', 'from': '0x92818156fb6f4d496ac7d2c97496d6daaee88c21', 'to': '0x672c890388d818c77b407606faa7b5abbe8c7313', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:01.000Z'}}, {'blockNum': '0xb070de', 'uniqueId': '0x17a31ccb257257331e6dec79f83216e0b41579edddd063dfc5f4bd7c7be6e82d:log:52', 'hash': '0x17a31ccb257257331e6dec79f83216e0b41579edddd063dfc5f4bd7c7be6e82d', 'from': '0x597cb045431f8da34e0ba935d0083e24710e5d62', 'to': '0x5655fc94e524636d846bf64e287f24830666b603', 'value': 173487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x24bcc28c896b9c700000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:09.000Z'}}, {'blockNum': '0xb070de', 'uniqueId': '0xe7ad7eb476328dbc058cf9488e6f5775ef63bd81b86a4c61f8c82621d6f5e949:log:230', 'hash': '0xe7ad7eb476328dbc058cf9488e6f5775ef63bd81b86a4c61f8c82621d6f5e949', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 24770.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x053ed4e954b99c44a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:09.000Z'}}, {'blockNum': '0xb070df', 'uniqueId': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005:log:41', 'hash': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65419.64483571896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dda67f311f3fe6f24b1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:54.000Z'}}, {'blockNum': '0xb070df', 'uniqueId': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005:log:42', 'hash': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 65419.64483571896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dda67f311f3fe6f24b1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:54.000Z'}}, {'blockNum': '0xb070e6', 'uniqueId': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d:log:182', 'hash': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 63894.824060845305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d87becf720d5e3e0599', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:21:55.000Z'}}, {'blockNum': '0xb070e6', 'uniqueId': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d:log:183', 'hash': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 63894.824060845305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d87becf720d5e3e0599', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:21:55.000Z'}}, {'blockNum': '0xb07100', 'uniqueId': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf:log:88', 'hash': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf', 'from': '0x2ce5c5197b4605faf0cf1d1c3f9cf58fbd5db77d', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 45753.70145139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b05029008a1f6b6c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:27:53.000Z'}}, {'blockNum': '0xb07100', 'uniqueId': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf:log:90', 'hash': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 45753.70145139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b05029008a1f6b6c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:27:53.000Z'}}, {'blockNum': '0xb07108', 'uniqueId': '0x3907760f75742b122c224680ec3256fdeeda9248ba14eef8274a0c5ae6b91524:log:81', 'hash': '0x3907760f75742b122c224680ec3256fdeeda9248ba14eef8274a0c5ae6b91524', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 33649.52020544156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x072024e6b80cd97d04f5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:28:47.000Z'}}, {'blockNum': '0xb0710a', 'uniqueId': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351:log:200', 'hash': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 19178.027247771606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x040fa497bc4e1cd11db0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:29:05.000Z'}}, {'blockNum': '0xb0710a', 'uniqueId': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351:log:201', 'hash': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 19178.026527283888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x040fa4952d067e800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:29:05.000Z'}}, {'blockNum': '0xb0710f', 'uniqueId': '0xea8231350efacd7ae535ac23dd1f57c2e9a75bf802c8739658f28ca511e11456:log:128', 'hash': '0xea8231350efacd7ae535ac23dd1f57c2e9a75bf802c8739658f28ca511e11456', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 26478.493994819706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x059b66ebcf36fe7d194e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:08.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xbd3212208c096fd18bc1604f1e74381cb26db2296afc9f0eb00972854e6b58d8:log:124', 'hash': '0xbd3212208c096fd18bc1604f1e74381cb26db2296afc9f0eb00972854e6b58d8', 'from': '0x11e0205ce7e4c6dceabf3019a38de4344c69ec06', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12522.210342336253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a6d493f8d74af59ef8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xb81e4d1f5432e2b7c1b4699358d64f97a874ab4f52544a030454a1d6856c9fa4:log:125', 'hash': '0xb81e4d1f5432e2b7c1b4699358d64f97a874ab4f52544a030454a1d6856c9fa4', 'from': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xfd52af0604358a430ce2eeb0600d664520691f372fd5fa25d0d64ba545ba4caf:log:127', 'hash': '0xfd52af0604358a430ce2eeb0600d664520691f372fd5fa25d0d64ba545ba4caf', 'from': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 374743.8035042302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcc1552afcd64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x182c07a719870fcfb997ff2294d777b356a780363f92df0076a9e2b1b4ca0d69:log:129', 'hash': '0x182c07a719870fcfb997ff2294d777b356a780363f92df0076a9e2b1b4ca0d69', 'from': '0x672c890388d818c77b407606faa7b5abbe8c7313', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xd6f3727c5f7083e2218d0b58402054d360394b0c45b9ae79b30746cd56205751:log:131', 'hash': '0xd6f3727c5f7083e2218d0b58402054d360394b0c45b9ae79b30746cd56205751', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x5af9247d670f382fee5c3f00c5e54a900341abb2af889921f8f19b47ab8c3c71:log:135', 'hash': '0x5af9247d670f382fee5c3f00c5e54a900341abb2af889921f8f19b47ab8c3c71', 'from': '0x2e4ba6698b2c6549ca554785adb6e58186aff6c6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x5335adfd68da59fba3e5f89921184aeafe7a99bd0101a32d926358daf4a7e8a8:log:136', 'hash': '0x5335adfd68da59fba3e5f89921184aeafe7a99bd0101a32d926358daf4a7e8a8', 'from': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xaee7eea28fe7b4c9bf8dcf614cde2c47d7b83ce3eb8264d9ba17fdcb0c5c14f8:log:138', 'hash': '0xaee7eea28fe7b4c9bf8dcf614cde2c47d7b83ce3eb8264d9ba17fdcb0c5c14f8', 'from': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07112', 'uniqueId': '0x200183da79ae67572a75d5a9a942fe7ea3a26ed6de62bc21716667a47f588ce7:log:162', 'hash': '0x200183da79ae67572a75d5a9a942fe7ea3a26ed6de62bc21716667a47f588ce7', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:06.000Z'}}, {'blockNum': '0xb07113', 'uniqueId': '0xdfae12e1c25aac5fa4f56b96242f812fa46ae33166b2528abdc48e0440756b71:log:54', 'hash': '0xdfae12e1c25aac5fa4f56b96242f812fa46ae33166b2528abdc48e0440756b71', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:13.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3:log:60', 'hash': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3', 'from': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3:log:62', 'hash': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6:log:116', 'hash': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 21028.194797765216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0473f0d34c6aa0e97896', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6:log:117', 'hash': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 21028.193931490907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0473f0d0388b6c400000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07115', 'uniqueId': '0x49003ef73afbb2762b674bfbee7c7fb1d5edecdc6c966838637c46533fa4b147:log:65', 'hash': '0x49003ef73afbb2762b674bfbee7c7fb1d5edecdc6c966838637c46533fa4b147', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 12499.841773292255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a59e26d9cf29accd6a', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:47.000Z'}}, {'blockNum': '0xb07119', 'uniqueId': '0xad77eb98320b1428d8b8cc80a7635980dbb8adacd738de0f73484b6b7dcf141c:log:304', 'hash': '0xad77eb98320b1428d8b8cc80a7635980dbb8adacd738de0f73484b6b7dcf141c', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:06.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:10', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 129314.46889656427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b6226c284015cad2a4a', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:12', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 38794.34066896928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08370ba0c1339bcd8caf', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:19', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 90520.12822759499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x132b1b21c2cdc0df9d9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb07120', 'uniqueId': '0x96b79000261b5a8235ecfe6a60658ac5a2b73ec4770509905787e03712b884e2:log:224', 'hash': '0x96b79000261b5a8235ecfe6a60658ac5a2b73ec4770509905787e03712b884e2', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x50490a0beb4fa6505025d08cd51f6e1bedb7f3a7', 'value': 17510.051400537875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03b538c7208f931d9a1c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:33:16.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x98fd72652d7da886769bb4fe89e2a6f6dd585ade334cd2eca796350fcbc15080:log:254', 'hash': '0x98fd72652d7da886769bb4fe89e2a6f6dd585ade334cd2eca796350fcbc15080', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeaebc5aa6dc6309a91cb8aebb434668b2412b6de', 'value': 25691.540293606475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0570bdbea16bb8ccdb14', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942:log:261', 'hash': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xb8db34f834e9df42f2002ceb7b829dad89d08e14', 'value': 22467.90133903241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04c1fcc46bce8e1d0943', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942:log:263', 'hash': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942', 'from': '0xb8db34f834e9df42f2002ceb7b829dad89d08e14', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 22467.90133903241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04c1fcc46bce8e1d0943', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb0715d', 'uniqueId': '0x6e4a8bbf08de75320a78654cf112432c6500c9aedfef1e008d1e8d1b5631b350:log:293', 'hash': '0x6e4a8bbf08de75320a78654cf112432c6500c9aedfef1e008d1e8d1b5631b350', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:46:03.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x1a74605f5105b7c510d3c5aec91ade539b05cbd297c8840e65463b12974583aa:log:119', 'hash': '0x1a74605f5105b7c510d3c5aec91ade539b05cbd297c8840e65463b12974583aa', 'from': '0x50490a0beb4fa6505025d08cd51f6e1bedb7f3a7', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 17510.051400537875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03b538c7208f931d9a1c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35:log:128', 'hash': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'value': 17358.283368010663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03acfe92c3142ebef7c0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35:log:132', 'hash': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35', 'from': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 17358.283368010663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03acfe92c3142ebef7c0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb0716e', 'uniqueId': '0x68faa4d2bc0632a10f6e01c9a4c3a39bec8dca121ca3ee45c8ff6ad8cbd3098e:log:13', 'hash': '0x68faa4d2bc0632a10f6e01c9a4c3a39bec8dca121ca3ee45c8ff6ad8cbd3098e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:48:56.000Z'}}, {'blockNum': '0xb07171', 'uniqueId': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01:log:24', 'hash': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:50:08.000Z'}}, {'blockNum': '0xb07171', 'uniqueId': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01:log:29', 'hash': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:50:08.000Z'}}, {'blockNum': '0xb0717a', 'uniqueId': '0x1114f74a81757b9b51532ecd3e442a101ae4fa5928a4149e4966fad75b8d4b86:log:126', 'hash': '0x1114f74a81757b9b51532ecd3e442a101ae4fa5928a4149e4966fad75b8d4b86', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:51:24.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0xcf6dc6b2381cd1a970d5d2da7114fe5651776c43cbb3850a055ae044c68b2bc7:log:24', 'hash': '0xcf6dc6b2381cd1a970d5d2da7114fe5651776c43cbb3850a055ae044c68b2bc7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0x2d3fd09426a96b354c9a5396b0230deeca2424065fc0d88ac49567278e0c46ae:log:25', 'hash': '0x2d3fd09426a96b354c9a5396b0230deeca2424065fc0d88ac49567278e0c46ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 36703.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07c5b1ff3d0d70440000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0x2499ab99ed39169fc932073f01030a29f92a3e462fe616898fbb2fce86a3b848:log:26', 'hash': '0x2499ab99ed39169fc932073f01030a29f92a3e462fe616898fbb2fce86a3b848', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 24832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce4000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07184', 'uniqueId': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900:log:106', 'hash': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:54:06.000Z'}}, {'blockNum': '0xb07184', 'uniqueId': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900:log:111', 'hash': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:54:06.000Z'}}, {'blockNum': '0xb07187', 'uniqueId': '0x98544ee0f200eea4e9ed6ded50041b2ad2e2b0d4686c8d0230c23d4014c76e68:log:58', 'hash': '0x98544ee0f200eea4e9ed6ded50041b2ad2e2b0d4686c8d0230c23d4014c76e68', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 24832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce4000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:55:25.000Z'}}, {'blockNum': '0xb0718b', 'uniqueId': '0x63f98776d808a02d3c68e7c1fd3643db205a48be5739b254f3e4aa1669f52a37:log:100', 'hash': '0x63f98776d808a02d3c68e7c1fd3643db205a48be5739b254f3e4aa1669f52a37', 'from': '0x541e0950fad1688bfc02897d7bb66066f5333100', 'to': '0x233c09204a9bd98d2a80c3bf91a0fb37e9a96b16', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:03.000Z'}}, {'blockNum': '0xb07191', 'uniqueId': '0x88dcf35ca8575863106cce7e2dc5b11e167687f347de2acd3f979aeff1a95f6d:log:6', 'hash': '0x88dcf35ca8575863106cce7e2dc5b11e167687f347de2acd3f979aeff1a95f6d', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 36703.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07c5b1ff3d0d70440000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:44.000Z'}}, {'blockNum': '0xb07193', 'uniqueId': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784:log:15', 'hash': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'value': 14858.682853402133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03257da5d27e55b42bbb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:56.000Z'}}, {'blockNum': '0xb07193', 'uniqueId': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784:log:21', 'hash': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784', 'from': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 14858.682853402133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03257da5d27e55b42bbb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:56.000Z'}}, {'blockNum': '0xb07198', 'uniqueId': '0xf8af9784d3705c35bb98caa2233c9b895a39ed55d1ce50740cc846f27798b629:log:24', 'hash': '0xf8af9784d3705c35bb98caa2233c9b895a39ed55d1ce50740cc846f27798b629', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:57:38.000Z'}}, {'blockNum': '0xb0719b', 'uniqueId': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa:log:18', 'hash': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:58:00.000Z'}}, {'blockNum': '0xb0719b', 'uniqueId': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa:log:23', 'hash': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:58:00.000Z'}}, {'blockNum': '0xb071a0', 'uniqueId': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c:log:178', 'hash': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c', 'from': '0x233c09204a9bd98d2a80c3bf91a0fb37e9a96b16', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:59:29.000Z'}}, {'blockNum': '0xb071a0', 'uniqueId': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c:log:183', 'hash': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:59:29.000Z'}}, {'blockNum': '0xb071a5', 'uniqueId': '0x93f635e6a7e2fc17cd98a585accd70be02c2cd2e193bd679fd66cf124a54bd8e:log:230', 'hash': '0x93f635e6a7e2fc17cd98a585accd70be02c2cd2e193bd679fd66cf124a54bd8e', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:00:59.000Z'}}, {'blockNum': '0xb071aa', 'uniqueId': '0x4cb9a09cec9ff17841d7d536c610bbbd60d2874313694d46a649d1dc7dc970a2:log:74', 'hash': '0x4cb9a09cec9ff17841d7d536c610bbbd60d2874313694d46a649d1dc7dc970a2', 'from': '0xeaebc5aa6dc6309a91cb8aebb434668b2412b6de', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 25691.540293606475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0570bdbea16bb8ccdb14', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:02:15.000Z'}}, {'blockNum': '0xb071ee', 'uniqueId': '0xd49d98e356bac6e9afea08bf2f507dd4d4945da8543d779a7ec803131b5c7341:log:90', 'hash': '0xd49d98e356bac6e9afea08bf2f507dd4d4945da8543d779a7ec803131b5c7341', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xb038c7996493d4818a6df1c9db2b3f835a7f14c5', 'value': 28091.404705658024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05f2d68dc127b31d0f8f', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:18:42.000Z'}}, {'blockNum': '0xb071f2', 'uniqueId': '0x4442fbf3729f45deca8058432a8acf32e8cc7d8e5205464950f043496557029f:log:19', 'hash': '0x4442fbf3729f45deca8058432a8acf32e8cc7d8e5205464950f043496557029f', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:19:26.000Z'}}, {'blockNum': '0xb071f7', 'uniqueId': '0x29d9177a4ba781737dd6b4629fccdc2347c53fdceb814b7886e8b1ec048788da:log:14', 'hash': '0x29d9177a4ba781737dd6b4629fccdc2347c53fdceb814b7886e8b1ec048788da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 69366.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0eb0580450a6afa20000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:20:43.000Z'}}, {'blockNum': '0xb071f7', 'uniqueId': '0x0a842e7c14245472bd028e853e3634424882fc68162125a33833a2d92adb5588:log:22', 'hash': '0x0a842e7c14245472bd028e853e3634424882fc68162125a33833a2d92adb5588', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 798658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xa91f5641489035c80000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:20:43.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:25', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 69366.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0eb0580450a6afa20000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:27', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 24278.135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05241ece4f6d8a458000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:34', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 45087.965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x098c39360139255c8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb07202', 'uniqueId': '0x74600e4010d71114761714f1910e8bed013117cdd03fc2a30bee1dcd992391c0:log:1', 'hash': '0x74600e4010d71114761714f1910e8bed013117cdd03fc2a30bee1dcd992391c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:23:23.000Z'}}, {'blockNum': '0xb07206', 'uniqueId': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0:log:69', 'hash': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:24:03.000Z'}}, {'blockNum': '0xb07206', 'uniqueId': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0:log:74', 'hash': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:24:03.000Z'}}, {'blockNum': '0xb0720a', 'uniqueId': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66:log:262', 'hash': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 1938.7009858124068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x6918e182eb1820f7b5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:25:10.000Z'}}, {'blockNum': '0xb0720a', 'uniqueId': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66:log:263', 'hash': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xf81521e83369fd9b661b804ba342993b2bcef430', 'value': 1938.7009786893623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x6918e17c70a1980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:25:10.000Z'}}, {'blockNum': '0xb0722e', 'uniqueId': '0xabd8e07a1199f6562562f7ae4e0704885e43712fade8af3bf3df51577f75ca8b:log:0', 'hash': '0xabd8e07a1199f6562562f7ae4e0704885e43712fade8af3bf3df51577f75ca8b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8541390869ce254d4470ec3c8a1506d7c38b54e5', 'value': 14803.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03227a6447c5bf2a0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:34:28.000Z'}}, {'blockNum': '0xb0723a', 'uniqueId': '0x142d7a635881d3ea46fe0f319cf5698e1d834d4a3d6e3f2f4cc7ce3659839d05:log:258', 'hash': '0x142d7a635881d3ea46fe0f319cf5698e1d834d4a3d6e3f2f4cc7ce3659839d05', 'from': '0x8541390869ce254d4470ec3c8a1506d7c38b54e5', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 14803.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03227a6447c5bf2a0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:36:28.000Z'}}, {'blockNum': '0xb07259', 'uniqueId': '0x343e972e5f789cf612b3dff3c108327e005341e89ef426edef985993ec03c4c7:log:1', 'hash': '0x343e972e5f789cf612b3dff3c108327e005341e89ef426edef985993ec03c4c7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 83976.0842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x11c85a4707898d368000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:43:10.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:28', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 83976.0842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x11c85a4707898d368000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:30', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 20994.02105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04721691c1e2634da000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:37', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 62982.06315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5643b545a729e8e000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb072c5', 'uniqueId': '0x10904e8533f6dc42eab3961cc88a9f0d70392e88127719138bdb05ffaa122697:log:15', 'hash': '0x10904e8533f6dc42eab3961cc88a9f0d70392e88127719138bdb05ffaa122697', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 397794.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x543c78bbe1076e5e8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:06:30.000Z'}}, {'blockNum': '0xb07336', 'uniqueId': '0x5fda6100732dc6638f1b22be81ee258e554de76d10de97514e3f1dd3ff547720:log:18', 'hash': '0x5fda6100732dc6638f1b22be81ee258e554de76d10de97514e3f1dd3ff547720', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 884160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xbb3a68de3f8d5f000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:33:28.000Z'}}, {'blockNum': '0xb07336', 'uniqueId': '0xa832e459a97ff90401e67b9c7adf6adceb25e31380d28e72bce4ebba91ebd8f4:log:19', 'hash': '0xa832e459a97ff90401e67b9c7adf6adceb25e31380d28e72bce4ebba91ebd8f4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 884160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xbb3a68de3f8d5f000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:33:28.000Z'}}, {'blockNum': '0xb0735b', 'uniqueId': '0xcf7654001053893082cfcbc8e673a8d2494a274798c095a9f9012f531933617c:log:10', 'hash': '0xcf7654001053893082cfcbc8e673a8d2494a274798c095a9f9012f531933617c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa4f59c5fea4f76a09a91e8aa2afc49c328cd8230', 'value': 4709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xff4680b6a612740000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:42:17.000Z'}}, {'blockNum': '0xb0750d', 'uniqueId': '0x40cb2bb42ed0b0c4a4c3054258551e0d8d7650edf87658caa3b7a7869a1641c1:log:48', 'hash': '0x40cb2bb42ed0b0c4a4c3054258551e0d8d7650edf87658caa3b7a7869a1641c1', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x13edf543ea6e777c51b55b09c2a1d63f118f6dee', 'value': 10669.26445413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x024261c9c4d8709cf400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:20:47.000Z'}}, {'blockNum': '0xb07521', 'uniqueId': '0xa05230501dc76af3bc371bf85be59d53005c5d4d5f890abd0e51e7b1764787d8:log:1', 'hash': '0xa05230501dc76af3bc371bf85be59d53005c5d4d5f890abd0e51e7b1764787d8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:25:47.000Z'}}, {'blockNum': '0xb07523', 'uniqueId': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e:log:198', 'hash': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:26:13.000Z'}}, {'blockNum': '0xb07523', 'uniqueId': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e:log:203', 'hash': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:26:13.000Z'}}, {'blockNum': '0xb0754c', 'uniqueId': '0xa3d383ec169ee4e0ae4ff62c91d2b44c7a3bad29738fbb0e5d34f3991653d58e:log:7', 'hash': '0xa3d383ec169ee4e0ae4ff62c91d2b44c7a3bad29738fbb0e5d34f3991653d58e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 390350.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x52a8ebb84395f0410000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:34:43.000Z'}}, {'blockNum': '0xb07563', 'uniqueId': '0x8dbaf47b5af8c1ca4dc9be3db5331f9ec81e8403f28342c57f013e5ed6914339:log:25', 'hash': '0x8dbaf47b5af8c1ca4dc9be3db5331f9ec81e8403f28342c57f013e5ed6914339', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:38:58.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:97', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:99', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:100', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 28938.8061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0620c69c479587594000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:107', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 35369.6519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x077d64861e9a5017c000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb0757f', 'uniqueId': '0x3f99ed5a27a7e0d7d6b652dfa7aa69a02cc93162d9f66e72f7aa19df8e7eec0b:log:5', 'hash': '0x3f99ed5a27a7e0d7d6b652dfa7aa69a02cc93162d9f66e72f7aa19df8e7eec0b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:46:45.000Z'}}, {'blockNum': '0xb07585', 'uniqueId': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe:log:179', 'hash': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:47:26.000Z'}}, {'blockNum': '0xb07585', 'uniqueId': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe:log:184', 'hash': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:47:26.000Z'}}, {'blockNum': '0xb07588', 'uniqueId': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639:log:252', 'hash': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 837.5136115324192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2d66d61059f85704ec', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:48:03.000Z'}}, {'blockNum': '0xb07588', 'uniqueId': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639:log:255', 'hash': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x63945320845eb2d8208d848c5b528d9a5e4ec33d', 'value': 837.5136115324192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2d66d61059f85704ec', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:48:03.000Z'}}, {'blockNum': '0xb07599', 'uniqueId': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46:log:136', 'hash': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46', 'from': '0x93972cb878afe60e66d14ad98c779ce9fdc1f356', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:51:56.000Z'}}, {'blockNum': '0xb07599', 'uniqueId': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46:log:138', 'hash': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:51:56.000Z'}}, {'blockNum': '0xb075a0', 'uniqueId': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003:log:131', 'hash': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:00.000Z'}}, {'blockNum': '0xb075a0', 'uniqueId': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003:log:132', 'hash': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:00.000Z'}}, {'blockNum': '0xb075a3', 'uniqueId': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6:log:17', 'hash': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:29.000Z'}}, {'blockNum': '0xb075a3', 'uniqueId': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6:log:19', 'hash': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:29.000Z'}}, {'blockNum': '0xb075c4', 'uniqueId': '0xee120afc7beea5fe015e66152bcbe6633f7f4eacac65211a096cffec31df01b4:log:184', 'hash': '0xee120afc7beea5fe015e66152bcbe6633f7f4eacac65211a096cffec31df01b4', 'from': '0xb4fee33a0edef5a7fb0da42a9b8fe3b4f73dfb8b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22863.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d773f85871ae58a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T22:00:22.000Z'}}, {'blockNum': '0xb076f0', 'uniqueId': '0x2c75e5d81215ce25312ad865d60c3697e8d6815b8deb8c64c0056a2ebeec4630:log:15', 'hash': '0x2c75e5d81215ce25312ad865d60c3697e8d6815b8deb8c64c0056a2ebeec4630', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:11:29.000Z'}}, {'blockNum': '0xb076f6', 'uniqueId': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9:log:236', 'hash': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:13:02.000Z'}}, {'blockNum': '0xb076f6', 'uniqueId': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9:log:241', 'hash': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:13:02.000Z'}}, {'blockNum': '0xb0770b', 'uniqueId': '0x484f7eddcdc67ff80f81c0d71eba63a312296c9edfb89dcebe7900fdbcef3ee5:log:0', 'hash': '0x484f7eddcdc67ff80f81c0d71eba63a312296c9edfb89dcebe7900fdbcef3ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:24.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:212', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:214', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:218', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 72375.7918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0f537fe18ab875a38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:221', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 38971.5802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0840a7520f9e66ba8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:87', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x8a2b589bfd3db6659deda06006e6d65951103360', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 17186.281028565863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03a3ab8fb2a9476509b3', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:89', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x11ededebf63bef0ea2d2d071bdf88f71543ec6fb', 'value': 150.37995899995133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0826f0eff699e79aa5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:90', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 17035.901069565913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x039b849ec2b2ad7d6f0e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea:log:235', 'hash': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea:log:236', 'hash': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x0489076a0d17394835af93cd62acff703b6814a9', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79:log:240', 'hash': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 33353.990790631324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07101f9b530fee5c4187', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79:log:246', 'hash': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 33353.990790631324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07101f9b530fee5c4187', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb07819', 'uniqueId': '0xa029bfd55bdef7b354c0a6e9826be2f36eb8a3b7e63561ac92f08caf166d8838:log:23', 'hash': '0xa029bfd55bdef7b354c0a6e9826be2f36eb8a3b7e63561ac92f08caf166d8838', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xae20a4f057acdd672bb51071d52321d8a7565d1b', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:13:24.000Z'}}, {'blockNum': '0xb07828', 'uniqueId': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4:log:241', 'hash': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4', 'from': '0xae20a4f057acdd672bb51071d52321d8a7565d1b', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:16:33.000Z'}}, {'blockNum': '0xb07828', 'uniqueId': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4:log:243', 'hash': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:16:33.000Z'}}, {'blockNum': '0xb079ca', 'uniqueId': '0xdb2d54f076de629c3d9eb0c1a79cc7c8db814293b868495ff806668669abeacb:log:8', 'hash': '0xdb2d54f076de629c3d9eb0c1a79cc7c8db814293b868495ff806668669abeacb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x44742ce969585e16640cc4bf81308618ed4fec1b', 'value': 7214.977391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x01871fecde86a5a1f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T01:48:13.000Z'}}, {'blockNum': '0xb07af2', 'uniqueId': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5:log:161', 'hash': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 36500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07baab4146b63dd00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T02:47:14.000Z'}}, {'blockNum': '0xb07af2', 'uniqueId': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5:log:166', 'hash': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 36500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07baab4146b63dd00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T02:47:14.000Z'}}]}}
Number of returned transfers:  250
Answer is complete
 
symbol             MDA
group              TWP
date        2021-01-03
hour             17:00
exchange       binance
Name: 635, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2021-01-03 17:00:00 2021-01-03 05:00:00 2021-01-04 05:00:00
Unix timestamps:  1609646400.0 1609732800.0
Hex Block Numbers:  0xb0af5a 0xb0c8c4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb0af7f', 'uniqueId': '0x056c0f9a11113370cdf185af0d3c15931a5c83017daa63b2efb4c8b0e27a9d9d:log:0', 'hash': '0x056c0f9a11113370cdf185af0d3c15931a5c83017daa63b2efb4c8b0e27a9d9d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x021afda9886dce1cca8cecd130e4f2891b2b91d1', 'value': 124.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x06c4d997efd7268000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T04:09:34.000Z'}}, {'blockNum': '0xb0b05c', 'uniqueId': '0x45d8ea3f0bce32a9f94964cf0ee445e5107a24247e3ccd0f8f8adcb6a8194704:log:4', 'hash': '0x45d8ea3f0bce32a9f94964cf0ee445e5107a24247e3ccd0f8f8adcb6a8194704', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf5721f2a084c5c3b7302a19d78d931ddbfb256a1', 'value': 127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x06e27aa3200a9c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T05:04:54.000Z'}}, {'blockNum': '0xb0b366', 'uniqueId': '0x17301abfbbc2a7f57323f80a8f2dc58fb320678cd2f084c4336df9df92bfa90b:log:15', 'hash': '0x17301abfbbc2a7f57323f80a8f2dc58fb320678cd2f084c4336df9df92bfa90b', 'from': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x029167eec8667a1c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T08:01:47.000Z'}}, {'blockNum': '0xb0b3e3', 'uniqueId': '0xad04470e8a7ae9013a3ae4439d0788f62e3c38780ea98e3edc173ec15c71a62b:log:292', 'hash': '0xad04470e8a7ae9013a3ae4439d0788f62e3c38780ea98e3edc173ec15c71a62b', 'from': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'to': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T08:26:35.000Z'}}, {'blockNum': '0xb0b3f5', 'uniqueId': '0x0581b42c6a335508abca5c88e05fea386eed082e3e563109ef339fc3f8638510:log:125', 'hash': '0x0581b42c6a335508abca5c88e05fea386eed082e3e563109ef339fc3f8638510', 'from': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T08:30:38.000Z'}}, {'blockNum': '0xb0b95b', 'uniqueId': '0x6b7f7aa78ed558d9c2cd057c9613d5ea40c7927a891b3f4532624b20cc667ea6:log:323', 'hash': '0x6b7f7aa78ed558d9c2cd057c9613d5ea40c7927a891b3f4532624b20cc667ea6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 7753.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a44ea6f7418c220000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T13:28:15.000Z'}}, {'blockNum': '0xb0b95b', 'uniqueId': '0xf6a3e6ca702c3cff833561e0405f03393cb56ada4adc4a8fce66d1d0dbc7f4e5:log:327', 'hash': '0xf6a3e6ca702c3cff833561e0405f03393cb56ada4adc4a8fce66d1d0dbc7f4e5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9970489e171254210edc739ac2577730a037755f', 'value': 5470.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x012888e3182b08420000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T13:28:15.000Z'}}, {'blockNum': '0xb0b95b', 'uniqueId': '0x0bb5d0e88643577f2288ef7c368aa65a379dcacec318afc97e0ec93d4c0c405b:log:329', 'hash': '0x0bb5d0e88643577f2288ef7c368aa65a379dcacec318afc97e0ec93d4c0c405b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x702188aab6bd5412eb0104b2f92d6de23f4dcf1f', 'value': 6844.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x017304f7b06772fa0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T13:28:15.000Z'}}, {'blockNum': '0xb0b961', 'uniqueId': '0x1c038604029b34f8ff924b75bc89a57e6c06be7a6789c3761bd400a089c303a8:log:305', 'hash': '0x1c038604029b34f8ff924b75bc89a57e6c06be7a6789c3761bd400a089c303a8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 4955.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010ca360a2a2c03e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T13:28:54.000Z'}}, {'blockNum': '0xb0bb05', 'uniqueId': '0xb510d3e674285b1889e52dc08a548707a77c2d8a426e52b308ff8c43b690bcba:log:127', 'hash': '0xb510d3e674285b1889e52dc08a548707a77c2d8a426e52b308ff8c43b690bcba', 'from': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7753.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a44ea6f7418c220000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:01:28.000Z'}}, {'blockNum': '0xb0bb71', 'uniqueId': '0xbf5d7e7c0fbf79f79d1faf3a26f6433b8fed2ec35b5cc13469f5d7dc29a521cc:log:186', 'hash': '0xbf5d7e7c0fbf79f79d1faf3a26f6433b8fed2ec35b5cc13469f5d7dc29a521cc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 6999.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x017b77207af0b8d60000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:23:34.000Z'}}, {'blockNum': '0xb0bbb1', 'uniqueId': '0x355af07a347da5347c49efa73ac795555de629325894ba6ebfe88b89f647dc6a:log:116', 'hash': '0x355af07a347da5347c49efa73ac795555de629325894ba6ebfe88b89f647dc6a', 'from': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6999.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x017b77207af0b8d60000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:37:13.000Z'}}, {'blockNum': '0xb0bbe7', 'uniqueId': '0x74c95932b8832011b4ac107741f0684d6494fea4b23231c0be1d49e1e135c524:log:199', 'hash': '0x74c95932b8832011b4ac107741f0684d6494fea4b23231c0be1d49e1e135c524', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 7166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0184783a38e7a1380000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:49:22.000Z'}}, {'blockNum': '0xb0bbf7', 'uniqueId': '0x5a5820c5080bf392d07502da066a76fbc0d89bcfbfed1f106574047fa33159a0:log:80', 'hash': '0x5a5820c5080bf392d07502da066a76fbc0d89bcfbfed1f106574047fa33159a0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9970489e171254210edc739ac2577730a037755f', 'value': 5186.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0119239868dd55520000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:52:41.000Z'}}, {'blockNum': '0xb0bbf8', 'uniqueId': '0x63479339a535434a2663a925812fe66060a16fe21e7807d8796ea23cabdd3b22:log:46', 'hash': '0x63479339a535434a2663a925812fe66060a16fe21e7807d8796ea23cabdd3b22', 'from': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'to': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:52:44.000Z'}}, {'blockNum': '0xb0bc08', 'uniqueId': '0xbb33409281fa584bdf002b3611f6ee17dbd104da83b83c15b033b8e8f3706c88:log:204', 'hash': '0xbb33409281fa584bdf002b3611f6ee17dbd104da83b83c15b033b8e8f3706c88', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 7779.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a5b8dccaf8e9d40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:55:41.000Z'}}, {'blockNum': '0xb0bc0b', 'uniqueId': '0x09f646cc1d413e65145287b19c4c8e09eac5a5b21d4299ad94d438ab21ef83e5:log:206', 'hash': '0x09f646cc1d413e65145287b19c4c8e09eac5a5b21d4299ad94d438ab21ef83e5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x702188aab6bd5412eb0104b2f92d6de23f4dcf1f', 'value': 7063.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x017ee6fa8708609a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:56:42.000Z'}}, {'blockNum': '0xb0bcb4', 'uniqueId': '0x1fa58870e541e26080006074c4799840d47a328ebc6833d0871217215d618093:log:206', 'hash': '0x1fa58870e541e26080006074c4799840d47a328ebc6833d0871217215d618093', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa77c77d0fda651bbc15a3a1a6ea4ab905e4ef422', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x51123b4e805cae0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:40:11.000Z'}}, {'blockNum': '0xb0bcb5', 'uniqueId': '0x3fc857d5e4ed5ac306746b6e632771243219d5c8cc15f1aa366efa1a709a9b68:log:148', 'hash': '0x3fc857d5e4ed5ac306746b6e632771243219d5c8cc15f1aa366efa1a709a9b68', 'from': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'to': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:40:31.000Z'}}, {'blockNum': '0xb0bcbc', 'uniqueId': '0x2f9dc86cb901c3d948598ebd029b5ba33a1dfd37b6890374191a64c490dc7391:log:242', 'hash': '0x2f9dc86cb901c3d948598ebd029b5ba33a1dfd37b6890374191a64c490dc7391', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'value': 14881.479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0326ba02010b8b4d8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:42:56.000Z'}}, {'blockNum': '0xb0bcc5', 'uniqueId': '0xff06c55fb6bd5a83085e468e33cf234fff8e1b0b1183d97a096371bfaf1d7252:log:92', 'hash': '0xff06c55fb6bd5a83085e468e33cf234fff8e1b0b1183d97a096371bfaf1d7252', 'from': '0x637dfddd8219c39974b367dfb2557d3aa814f20c', 'to': '0x5458074d2747a65d853eeef1e8e9035cb3992877', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x084231b97924ea600000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:44:54.000Z'}}, {'blockNum': '0xb0bcde', 'uniqueId': '0x4b7686a15bf760e609e5933fc5a5e6afb2c6a8162b20d9e8545d530668dafea7:log:201', 'hash': '0x4b7686a15bf760e609e5933fc5a5e6afb2c6a8162b20d9e8545d530668dafea7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 6824.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0171f0ccafd6bcb40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:48:17.000Z'}}, {'blockNum': '0xb0bcde', 'uniqueId': '0x36112a8911b38e7855072ae7cec1e0b4d275eb69d3789c78cf54c54f3fe880aa:log:208', 'hash': '0x36112a8911b38e7855072ae7cec1e0b4d275eb69d3789c78cf54c54f3fe880aa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5aa8cf233e40e08fbe99095c35e1b68d5550c1fa', 'value': 11728.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x027bcda261be68f20000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:48:17.000Z'}}, {'blockNum': '0xb0bcdf', 'uniqueId': '0x1320cb8d94a7137a9662eff13d00f8d23ef9375834f0ca3b93c318c824763f00:log:192', 'hash': '0x1320cb8d94a7137a9662eff13d00f8d23ef9375834f0ca3b93c318c824763f00', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9aa32cadf2f3e7d360385105fd0b22f576e32cfe', 'value': 7314.7316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x018c884b03174cb50000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:48:42.000Z'}}, {'blockNum': '0xb0bce5', 'uniqueId': '0x6ee848c130118fbd14b563fc812bec32e83f2e17dd0e57eeb1c63765d84ef22c:log:131', 'hash': '0x6ee848c130118fbd14b563fc812bec32e83f2e17dd0e57eeb1c63765d84ef22c', 'from': '0x9970489e171254210edc739ac2577730a037755f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13911.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x02f2279ee2a789c20000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:49:44.000Z'}}, {'blockNum': '0xb0bcee', 'uniqueId': '0x768f80e96b611bc06d99e81eb2aabad30610d0f49629a2faa814155d704e74da:log:288', 'hash': '0x768f80e96b611bc06d99e81eb2aabad30610d0f49629a2faa814155d704e74da', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5aa8cf233e40e08fbe99095c35e1b68d5550c1fa', 'value': 4175.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xe25ab3f740bb8e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:52:08.000Z'}}, {'blockNum': '0xb0bcf6', 'uniqueId': '0xbac5fe130af5838eebd3c7ca7905f338cc462fad2d63e6325802fdbe25b36d43:log:199', 'hash': '0xbac5fe130af5838eebd3c7ca7905f338cc462fad2d63e6325802fdbe25b36d43', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 1374.25354311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x4a7f995c59e9843c00', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:53:20.000Z'}}, {'blockNum': '0xb0bcf6', 'uniqueId': '0xb65fe07abb3544442c7fb0fd92b19ef3548bb0aac50761772a491a959ce5b82c:log:288', 'hash': '0xb65fe07abb3544442c7fb0fd92b19ef3548bb0aac50761772a491a959ce5b82c', 'from': '0x744fdd3366652120d970f59a2799ae88f08a44f0', 'to': '0x5458074d2747a65d853eeef1e8e9035cb3992877', 'value': 99900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x15279700831d93700000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:53:20.000Z'}}, {'blockNum': '0xb0bd00', 'uniqueId': '0x3f39c247faca6b47dc73bcedc87162090dab2cc55c7a4a6fb14c79c4408ec25b:log:88', 'hash': '0x3f39c247faca6b47dc73bcedc87162090dab2cc55c7a4a6fb14c79c4408ec25b', 'from': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:55:22.000Z'}}, {'blockNum': '0xb0bd02', 'uniqueId': '0xa252ee7e534eaac0900a0e920a1940302928167ee7e52ca7ad299142700b05a3:log:222', 'hash': '0xa252ee7e534eaac0900a0e920a1940302928167ee7e52ca7ad299142700b05a3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 714.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x26b7841c0197fc0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:55:48.000Z'}}, {'blockNum': '0xb0bd09', 'uniqueId': '0x36640e2ad2fd88ed3d7b69de56757d7811a79a78519d7a923de07cf1b3cf3fcd:log:237', 'hash': '0x36640e2ad2fd88ed3d7b69de56757d7811a79a78519d7a923de07cf1b3cf3fcd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'value': 4381.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xed84002f66a0bb0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:57:33.000Z'}}, {'blockNum': '0xb0bd09', 'uniqueId': '0x788b4677e88bd15cbce116b38f4a6cffbdc3db34dc084bb075455d22ee5b1877:log:239', 'hash': '0x788b4677e88bd15cbce116b38f4a6cffbdc3db34dc084bb075455d22ee5b1877', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'value': 14256.3339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0304d66074c17b40c000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:57:33.000Z'}}, {'blockNum': '0xb0bd09', 'uniqueId': '0x32f85d754d6a50f2ce5f253a01addae43afa8306fea00d13a305028f27724cd3:log:243', 'hash': '0x32f85d754d6a50f2ce5f253a01addae43afa8306fea00d13a305028f27724cd3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x4275fe065175d66bf0e7d79a2587b88512b1597a', 'value': 2852.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x9aa3c70a47074c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:57:33.000Z'}}, {'blockNum': '0xb0bd0a', 'uniqueId': '0xde7b976ebe9c5866028be040c576bf0b415116ce2d6e77e37669969f8cfefbd4:log:171', 'hash': '0xde7b976ebe9c5866028be040c576bf0b415116ce2d6e77e37669969f8cfefbd4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 7748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a4051995562e900000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:57:36.000Z'}}, {'blockNum': '0xb0bd0d', 'uniqueId': '0x9c26778b908e28bf6ea59be437a79f1d25b7af8839683cf5f97dc39ac5c759d1:log:248', 'hash': '0x9c26778b908e28bf6ea59be437a79f1d25b7af8839683cf5f97dc39ac5c759d1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 4326.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xea8d064629329e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:58:01.000Z'}}, {'blockNum': '0xb0bd1a', 'uniqueId': '0xb19acab4e737b94c83fa2e3fc124e74fb8c4c9b27b7f205b2b162371ef750a90:log:68', 'hash': '0xb19acab4e737b94c83fa2e3fc124e74fb8c4c9b27b7f205b2b162371ef750a90', 'from': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:00:55.000Z'}}, {'blockNum': '0xb0bd1a', 'uniqueId': '0xfd165c4975b138bbaf1b0be1537bf9aea5dbc306e4cba0a1c1a2f6961fb2e56a:log:69', 'hash': '0xfd165c4975b138bbaf1b0be1537bf9aea5dbc306e4cba0a1c1a2f6961fb2e56a', 'from': '0x5458074d2747a65d853eeef1e8e9035cb3992877', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 138900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1d69c8b9fc427dd00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:00:55.000Z'}}, {'blockNum': '0xb0bd1a', 'uniqueId': '0x7a569961bc2cc3c3fb5987b40a349451de01f8a9d9baa62f8e3363c9984c91c3:log:76', 'hash': '0x7a569961bc2cc3c3fb5987b40a349451de01f8a9d9baa62f8e3363c9984c91c3', 'from': '0x9aa32cadf2f3e7d360385105fd0b22f576e32cfe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7314.7316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x018c884b03174cb50000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:00:55.000Z'}}, {'blockNum': '0xb0bd24', 'uniqueId': '0x0843dc0e6eb3f0b28cf32f1e9d143742e51654d843cc035cbdae360485936066:log:241', 'hash': '0x0843dc0e6eb3f0b28cf32f1e9d143742e51654d843cc035cbdae360485936066', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa77c77d0fda651bbc15a3a1a6ea4ab905e4ef422', 'value': 1995.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6c2e836adba9880000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:03:02.000Z'}}, {'blockNum': '0xb0bd24', 'uniqueId': '0xaa1765f3ea8d3ac47b4f2b2c01622f3843facc142ee1f1dad08deefd5b4152c2:log:247', 'hash': '0xaa1765f3ea8d3ac47b4f2b2c01622f3843facc142ee1f1dad08deefd5b4152c2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'value': 4946.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010c241e403871e90000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:03:02.000Z'}}, {'blockNum': '0xb0bd43', 'uniqueId': '0x9d0cd4266cb597566c8d676997a65f95bdceba0ecc7764da2c35b74b77692b94:log:119', 'hash': '0x9d0cd4266cb597566c8d676997a65f95bdceba0ecc7764da2c35b74b77692b94', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2cbfb6e19ec316c46ae2a777c8fffe91bdcd334e', 'value': 386.603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x14f531c43084578000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:10:15.000Z'}}, {'blockNum': '0xb0bd51', 'uniqueId': '0x093d35ef5daf7be822d9e2a3581f2a8638c0820c4d66c338cd5e5e0063ea5326:log:9', 'hash': '0x093d35ef5daf7be822d9e2a3581f2a8638c0820c4d66c338cd5e5e0063ea5326', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63675b1f88cf053a19e721221a93afb81e04f380', 'value': 7305.0316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x018c01adb07bdb6b0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:12:50.000Z'}}, {'blockNum': '0xb0bd59', 'uniqueId': '0x0a136c7addad2f4ace0e172ca4991ba6952fa358003bc69b9725836d6e3859ff:log:27', 'hash': '0x0a136c7addad2f4ace0e172ca4991ba6952fa358003bc69b9725836d6e3859ff', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01e72fadd4d5538c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:16:30.000Z'}}, {'blockNum': '0xb0bd84', 'uniqueId': '0xf64b0bda2a530674050c3dca08bab5e0747420bf9614cd918da4b0830a45e35f:log:11', 'hash': '0xf64b0bda2a530674050c3dca08bab5e0747420bf9614cd918da4b0830a45e35f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 68241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0e735a1e27afb7a40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:26:08.000Z'}}, {'blockNum': '0xb0bd84', 'uniqueId': '0x21a541ff5ad17d1cf9d67170d485bb9c0d669348ad1ddc2c9167442bc5ada9a5:log:12', 'hash': '0x21a541ff5ad17d1cf9d67170d485bb9c0d669348ad1ddc2c9167442bc5ada9a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 70825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0eff6e524d1151040000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:26:08.000Z'}}, {'blockNum': '0xb0bd98', 'uniqueId': '0x78d1bd5c452b8210b7c7c108b4fba9a5681e54c865b31984c85bef8bfe50ec52:log:8', 'hash': '0x78d1bd5c452b8210b7c7c108b4fba9a5681e54c865b31984c85bef8bfe50ec52', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 7947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01aecec79afd4d4c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:30:54.000Z'}}, {'blockNum': '0xb0bdaf', 'uniqueId': '0x9a3ed5a0c4365c16ef8a0630658c4923aa501b11a92cf4ec0cc96fa233cc41c4:log:72', 'hash': '0x9a3ed5a0c4365c16ef8a0630658c4923aa501b11a92cf4ec0cc96fa233cc41c4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 9156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01f05906716ed4900000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:34:54.000Z'}}, {'blockNum': '0xb0bde8', 'uniqueId': '0xa56ba10d6d5792cbb32d0b032873d72135b1d24a9027bb4b7b374d3d84161258:log:2', 'hash': '0xa56ba10d6d5792cbb32d0b032873d72135b1d24a9027bb4b7b374d3d84161258', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 11996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x028a4df14a77d1f00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:46:10.000Z'}}, {'blockNum': '0xb0bdeb', 'uniqueId': '0x427862a71fbf8a482adf88db8aee964c5a33eb74a35ecaa85ce1f49dc871c0d8:log:18', 'hash': '0x427862a71fbf8a482adf88db8aee964c5a33eb74a35ecaa85ce1f49dc871c0d8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 6365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01590c1e90c8e1540000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:47:10.000Z'}}, {'blockNum': '0xb0bdf8', 'uniqueId': '0x1411f6866d20ad84c557ea1892b04743e45a95a6fa2cb4091135d90bd131cab3:log:33', 'hash': '0x1411f6866d20ad84c557ea1892b04743e45a95a6fa2cb4091135d90bd131cab3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x72a9906fce1f9b5b89c7ee44761960ed249fb572', 'value': 1986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6ba9495db895c80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:49:27.000Z'}}, {'blockNum': '0xb0be2e', 'uniqueId': '0xcba25963bceebbcaa266daba732a226c53798c6940293a891cbc704eaf7d91a6:log:37', 'hash': '0xcba25963bceebbcaa266daba732a226c53798c6940293a891cbc704eaf7d91a6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01bd8d89b9df278c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:01:42.000Z'}}, {'blockNum': '0xb0beb2', 'uniqueId': '0xa45642b5b2374f4dac22122e088aa387f87075a711f7f4b21e3913dbbf05e3b3:log:15', 'hash': '0xa45642b5b2374f4dac22122e088aa387f87075a711f7f4b21e3913dbbf05e3b3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01ba077b5641a7280000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:28:38.000Z'}}, {'blockNum': '0xb0bec7', 'uniqueId': '0x0015bf0f49432b6db35f9da0ff58a06a1d123d05a2e0e1a7f6a0274866e4a8f6:log:172', 'hash': '0x0015bf0f49432b6db35f9da0ff58a06a1d123d05a2e0e1a7f6a0274866e4a8f6', 'from': '0x5aa8cf233e40e08fbe99095c35e1b68d5550c1fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x035e285658ff24800000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:32:45.000Z'}}, {'blockNum': '0xb0becb', 'uniqueId': '0xa460c135546496331ada3b88945fbce74d4834707c70a57c85380a8e97f35231:log:9', 'hash': '0xa460c135546496331ada3b88945fbce74d4834707c70a57c85380a8e97f35231', 'from': '0x593065a46a507dc0da5146020efc1476067aab8c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9282.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01f73066e8cbf2dc0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:33:26.000Z'}}, {'blockNum': '0xb0bf18', 'uniqueId': '0x1067e2900bfc34cb5ffb06d81a45f8c464b7d4cd669468c21cead84f5ca03cfe:log:279', 'hash': '0x1067e2900bfc34cb5ffb06d81a45f8c464b7d4cd669468c21cead84f5ca03cfe', 'from': '0x9970489e171254210edc739ac2577730a037755f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5186.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0119239868dd55520000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:47:43.000Z'}}, {'blockNum': '0xb0bf4f', 'uniqueId': '0x5c3c6261d4fa0e46f0289c8f9a942b67b9b7f9476a53ffec0ff2e74ee16adfa4:log:0', 'hash': '0x5c3c6261d4fa0e46f0289c8f9a942b67b9b7f9476a53ffec0ff2e74ee16adfa4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8166d621bd886b41d10590165f07275d14dd63be', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T19:02:33.000Z'}}, {'blockNum': '0xb0bf67', 'uniqueId': '0x2e1add5389a8f4db3cb3f0a8f5ade64cdb2ab71d134bb3e2b19d3de234eb2a73:log:39', 'hash': '0x2e1add5389a8f4db3cb3f0a8f5ade64cdb2ab71d134bb3e2b19d3de234eb2a73', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8166d621bd886b41d10590165f07275d14dd63be', 'value': 2008.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6cdc58b57e12130000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T19:09:13.000Z'}}, {'blockNum': '0xb0c092', 'uniqueId': '0x57a6c70fcbea323b05209f2e3c8fa01f0ff74100160a56c61cc2a803d0ad8f29:log:18', 'hash': '0x57a6c70fcbea323b05209f2e3c8fa01f0ff74100160a56c61cc2a803d0ad8f29', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x298a338e98a4f5a6d09dae82158836343ce5ed16', 'value': 5586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x012ed1529c1a84080000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:11:31.000Z'}}, {'blockNum': '0xb0c136', 'uniqueId': '0x0458daf0fe8b348dc1ef6e6c7789a03c3848a9adca9993f87b2561bc91b3e7ea:log:43', 'hash': '0x0458daf0fe8b348dc1ef6e6c7789a03c3848a9adca9993f87b2561bc91b3e7ea', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'value': 138890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1d693df2d93df3e80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:45:33.000Z'}}, {'blockNum': '0xb0c146', 'uniqueId': '0x51359f8af0841c37903e4af322a9fa42781d3a88992366155b64eca4abc4eca0:log:0', 'hash': '0x51359f8af0841c37903e4af322a9fa42781d3a88992366155b64eca4abc4eca0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'value': 63990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0d8ce7a44e731e180000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:50:15.000Z'}}, {'blockNum': '0xb0c156', 'uniqueId': '0x8a63e8b730a1eef65f0f541041fd173fc9c18f004c02bcd18760e201b1773190:log:0', 'hash': '0x8a63e8b730a1eef65f0f541041fd173fc9c18f004c02bcd18760e201b1773190', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'value': 209990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x2c7794a9694c15580000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:53:49.000Z'}}, {'blockNum': '0xb0c16c', 'uniqueId': '0x27be726c520eef8cfb4113d32960ec81f12ccb8815d4a174c10346804ed3de69:log:3', 'hash': '0x27be726c520eef8cfb4113d32960ec81f12ccb8815d4a174c10346804ed3de69', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 75164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0feaa60af40f74f00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:58:52.000Z'}}, {'blockNum': '0xb0c196', 'uniqueId': '0x9c90fe4cafd4d6ca665082df880f03f7ef23f458949d78876a166954cbb79dad:log:142', 'hash': '0x9c90fe4cafd4d6ca665082df880f03f7ef23f458949d78876a166954cbb79dad', 'from': '0xa898987c66463684f935ff77d7a976ae7a81fef7', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 3017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa38d492b3fb9840000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T21:09:21.000Z'}}, {'blockNum': '0xb0c2b3', 'uniqueId': '0x79f5ecc54289e3303ead2ade76db2ad390b6828887697e26f60cfdd8ec079074:log:199', 'hash': '0x79f5ecc54289e3303ead2ade76db2ad390b6828887697e26f60cfdd8ec079074', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9970489e171254210edc739ac2577730a037755f', 'value': 1922.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x68327ef6471a520000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:18:28.000Z'}}, {'blockNum': '0xb0c2b3', 'uniqueId': '0x8e93302ff5e10a0fa6eba6f1fd89273a3d6c05a65018bf1cd5eb501af368e506:log:201', 'hash': '0x8e93302ff5e10a0fa6eba6f1fd89273a3d6c05a65018bf1cd5eb501af368e506', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 16326.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x03751540f6605d320000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:18:28.000Z'}}, {'blockNum': '0xb0c2b3', 'uniqueId': '0x055813142f5650bbae7b9c08db0a1a9b67bea613a6ad816432a110e316fa2db0:log:202', 'hash': '0x055813142f5650bbae7b9c08db0a1a9b67bea613a6ad816432a110e316fa2db0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 9164.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01f0d4899847598a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:18:28.000Z'}}, {'blockNum': '0xb0c2ba', 'uniqueId': '0xec35b06e4fbe05edb7155d3a5e8c3cb4e811e440e79f4a4fb4bea8c8904205c8:log:129', 'hash': '0xec35b06e4fbe05edb7155d3a5e8c3cb4e811e440e79f4a4fb4bea8c8904205c8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 8148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01b9b4370e0bbad00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:21:09.000Z'}}, {'blockNum': '0xb0c2e5', 'uniqueId': '0x00156da9e663c1955fd81066d670b3162693e7b55d4ae3ca05055da17f4be32f:log:39', 'hash': '0x00156da9e663c1955fd81066d670b3162693e7b55d4ae3ca05055da17f4be32f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 8098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01b6fe535ef509480000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:29:05.000Z'}}, {'blockNum': '0xb0c4be', 'uniqueId': '0xfae3b497d93c6a47c42f1182059619c9251852bd527ec4a79c591337fcbeb0f0:log:154', 'hash': '0xfae3b497d93c6a47c42f1182059619c9251852bd527ec4a79c591337fcbeb0f0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01d1ef9611bd026c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T00:13:58.000Z'}}, {'blockNum': '0xb0c508', 'uniqueId': '0xaa53a9096da524aca2cd27a8c602a2af15e875cdf85230d04f8af3538a4989ae:log:59', 'hash': '0xaa53a9096da524aca2cd27a8c602a2af15e875cdf85230d04f8af3538a4989ae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01cd00b51fe081e00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T00:28:52.000Z'}}, {'blockNum': '0xb0c596', 'uniqueId': '0x4192f4ed0d02d08be3a23f805bf7d93b0ef3128eeb675a8c8a67342a1bce4391:log:234', 'hash': '0x4192f4ed0d02d08be3a23f805bf7d93b0ef3128eeb675a8c8a67342a1bce4391', 'from': '0x298a338e98a4f5a6d09dae82158836343ce5ed16', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 10025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x021f74d2a1460b040000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:05:29.000Z'}}, {'blockNum': '0xb0c596', 'uniqueId': '0xa984ef3b34cdf089737490769f9a812471f6c54d0c3523731560401d6980f384:log:240', 'hash': '0xa984ef3b34cdf089737490769f9a812471f6c54d0c3523731560401d6980f384', 'from': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 15521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x034965250237b5e40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:05:29.000Z'}}, {'blockNum': '0xb0c59b', 'uniqueId': '0x356994d5ccf23592ce488bdf8ebdc42a7b05551359dfba402c31c513bf72c674:log:191', 'hash': '0x356994d5ccf23592ce488bdf8ebdc42a7b05551359dfba402c31c513bf72c674', 'from': '0x9567ecee987734bc038dc620eb838703ca4a0eb3', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 1107.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3c09a66636a91e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:06:54.000Z'}}, {'blockNum': '0xb0c59b', 'uniqueId': '0x021791b8a834cad383b94f76290c71e3ee1a8f4009527c333202db66a64da47a:log:192', 'hash': '0x021791b8a834cad383b94f76290c71e3ee1a8f4009527c333202db66a64da47a', 'from': '0x746d028d6b0f7d69662517dde9d008fb35d7acf1', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2177.881809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x76102e7e5f86221000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:06:54.000Z'}}, {'blockNum': '0xb0c5b0', 'uniqueId': '0xf73433f00603aec9e116184ffb8c3b281cc6ff84ebf9d84a405f4d6e47e937af:log:132', 'hash': '0xf73433f00603aec9e116184ffb8c3b281cc6ff84ebf9d84a405f4d6e47e937af', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 9136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01ef43782b65c0c00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:10:57.000Z'}}, {'blockNum': '0xb0c5c0', 'uniqueId': '0x735d7b273eb0bbd42a83144c91e3940af894944f8bd69a56a40f0bc046ed27ba:log:109', 'hash': '0x735d7b273eb0bbd42a83144c91e3940af894944f8bd69a56a40f0bc046ed27ba', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x298a338e98a4f5a6d09dae82158836343ce5ed16', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:14:02.000Z'}}, {'blockNum': '0xb0c5c1', 'uniqueId': '0x896d8a3d99fa65e40494796c7a5172d62d07389ae4a6861b6c544ef337c742af:log:31', 'hash': '0x896d8a3d99fa65e40494796c7a5172d62d07389ae4a6861b6c544ef337c742af', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 9263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01f625f2ce85cb5c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:14:12.000Z'}}, {'blockNum': '0xb0c614', 'uniqueId': '0x18596ea8027de705ed4f1443cd8a9ee2b3d31b8aafeee15593ea70a0e3d9568a:log:75', 'hash': '0x18596ea8027de705ed4f1443cd8a9ee2b3d31b8aafeee15593ea70a0e3d9568a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 7724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a2b808747e7d300000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:33:18.000Z'}}]}}
Number of returned transfers:  78
Answer is complete
 
symbol             VIB
group              TWP
date        2021-01-08
hour             17:00
exchange       binance
Name: 636, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2021-01-08 17:00:00 2021-01-08 05:00:00 2021-01-09 05:00:00
Unix timestamps:  1610078400.0 1610164800.0
Hex Block Numbers:  0xb12e51 0xb1480f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb12e84', 'uniqueId': '0xf256211905b3d61b8af70453002194ecb1dd0b7410b5f4ee9e6a184bab7a76ff:log:11', 'hash': '0xf256211905b3d61b8af70453002194ecb1dd0b7410b5f4ee9e6a184bab7a76ff', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbf2a254e46155bdc493395647985a1b7d09b08f0', 'value': 1079.45720918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3a847a648a306e9800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T04:11:30.000Z'}}, {'blockNum': '0xb12eae', 'uniqueId': '0x830b0904d3827de1e8910e65f34ecb8dd0b9ac67f714ac25466ac5ce7180cf8f:log:130', 'hash': '0x830b0904d3827de1e8910e65f34ecb8dd0b9ac67f714ac25466ac5ce7180cf8f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xe68f495e84e319897f861793a908b846f6f9b977', 'value': 27484.79124999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05d1f419d5336a6b3c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T04:20:42.000Z'}}, {'blockNum': '0xb12ef2', 'uniqueId': '0x243c432fda041e754c924c2588fc6588c88fc231aa0bcb0ecff0edaa729c788b:log:106', 'hash': '0x243c432fda041e754c924c2588fc6588c88fc231aa0bcb0ecff0edaa729c788b', 'from': '0x812d27a544e9f6e11c506cef2938cf707d28bbe8', 'to': '0xfc7b2a8c157d741b68d33c16d2a3945835411813', 'value': 37263.75489499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07e4127bbd288e880c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T04:36:37.000Z'}}, {'blockNum': '0xb12f61', 'uniqueId': '0x742151c0f07c9f1cadfdf8de8067fb440cffd314a3c991302c301ebc053e07d2:log:27', 'hash': '0x742151c0f07c9f1cadfdf8de8067fb440cffd314a3c991302c301ebc053e07d2', 'from': '0xfc7b2a8c157d741b68d33c16d2a3945835411813', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37263.75489499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07e4127bbd288e880c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:03:01.000Z'}}, {'blockNum': '0xb12fe8', 'uniqueId': '0x07a8792413ee5daa491f8eb5569d6472627608a095d788265fd6a183cc18723b:log:196', 'hash': '0x07a8792413ee5daa491f8eb5569d6472627608a095d788265fd6a183cc18723b', 'from': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 287015.20705111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3cc720241d3e9a227c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:32:10.000Z'}}, {'blockNum': '0xb13047', 'uniqueId': '0x00b629d69447ba30472713b857a458ac48d02e5c690cd49f5e09b7425be767f1:log:244', 'hash': '0x00b629d69447ba30472713b857a458ac48d02e5c690cd49f5e09b7425be767f1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 174577.73591831193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x24f7e0c66937d65dcd76', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:52:27.000Z'}}, {'blockNum': '0xb13047', 'uniqueId': '0x00b629d69447ba30472713b857a458ac48d02e5c690cd49f5e09b7425be767f1:log:249', 'hash': '0x00b629d69447ba30472713b857a458ac48d02e5c690cd49f5e09b7425be767f1', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'value': 174577.73591831193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x24f7e0c66937d65dcd76', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:52:27.000Z'}}, {'blockNum': '0xb1304c', 'uniqueId': '0x95b0552c19326f5222395cc84c5819d6830e3a9f7415364b7ee9e9c20b8f836f:log:117', 'hash': '0x95b0552c19326f5222395cc84c5819d6830e3a9f7415364b7ee9e9c20b8f836f', 'from': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'to': '0x1843f1255f8fcef77639b63aa741ba372ec01d09', 'value': 174577.73591831193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x24f7e0c66937d65dcd76', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:53:48.000Z'}}, {'blockNum': '0xb13078', 'uniqueId': '0x81b74c8debc23e378f1d97c3ae07144f9b99373d615d5883c8bdf64399a73add:log:180', 'hash': '0x81b74c8debc23e378f1d97c3ae07144f9b99373d615d5883c8bdf64399a73add', 'from': '0x1843f1255f8fcef77639b63aa741ba372ec01d09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 174577.73591831193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x24f7e0c66937d65dcd76', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:02:47.000Z'}}, {'blockNum': '0xb13094', 'uniqueId': '0x279fff1bb23a23664145536531e21f844e66e36f70b33be64a6c9eb59eded00d:log:92', 'hash': '0x279fff1bb23a23664145536531e21f844e66e36f70b33be64a6c9eb59eded00d', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 159737.69898690272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x21d365e435fca2b5315a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:07:49.000Z'}}, {'blockNum': '0xb13094', 'uniqueId': '0x279fff1bb23a23664145536531e21f844e66e36f70b33be64a6c9eb59eded00d:log:97', 'hash': '0x279fff1bb23a23664145536531e21f844e66e36f70b33be64a6c9eb59eded00d', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'value': 159737.69898690272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x21d365e435fca2b5315a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:07:49.000Z'}}, {'blockNum': '0xb13098', 'uniqueId': '0xb94ababde975a2850403e9106ff63dec642a2a2f937e5b0b6188543e6053b35c:log:17', 'hash': '0xb94ababde975a2850403e9106ff63dec642a2a2f937e5b0b6188543e6053b35c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x76d03117f5b2a5e1e45e3d1e72d709ae2593ac72', 'value': 436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x17a2b729f916500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:08:28.000Z'}}, {'blockNum': '0xb13098', 'uniqueId': '0x5d0896dd41828de39bb448b72f3aafaa3ed8d151c1e2afb263d1044a83f64d61:log:97', 'hash': '0x5d0896dd41828de39bb448b72f3aafaa3ed8d151c1e2afb263d1044a83f64d61', 'from': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'to': '0x1843f1255f8fcef77639b63aa741ba372ec01d09', 'value': 159737.69898690272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x21d365e435fca2b5315a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:08:28.000Z'}}, {'blockNum': '0xb13174', 'uniqueId': '0xd8b4aebcc2388f1ad83094725994ac37e3ea8b780ea9036c01aae66af475214e:log:38', 'hash': '0xd8b4aebcc2388f1ad83094725994ac37e3ea8b780ea9036c01aae66af475214e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x76d03117f5b2a5e1e45e3d1e72d709ae2593ac72', 'value': 3366.231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb67bd6eb719bf58000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:54:41.000Z'}}, {'blockNum': '0xb131bc', 'uniqueId': '0xe9b388a558354c43375e858ff81e9ac9f6bb416a39a1545102860c65d1aac1c7:log:270', 'hash': '0xe9b388a558354c43375e858ff81e9ac9f6bb416a39a1545102860c65d1aac1c7', 'from': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'to': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'value': 49000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a604b9a42df9ca00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:10:06.000Z'}}, {'blockNum': '0xb131be', 'uniqueId': '0xb632f1902199ae78bbe303dbf1bf4c65632283d06014c1d2e4588f28304095e3:log:215', 'hash': '0xb632f1902199ae78bbe303dbf1bf4c65632283d06014c1d2e4588f28304095e3', 'from': '0xffe3db266852a7e09123d913371fceb62e6ecd70', 'to': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'value': 13157.51728272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02c9453ba11e9c804000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:10:54.000Z'}}, {'blockNum': '0xb131be', 'uniqueId': '0x55f57a857587566f949621be33cbf6b13261558ee02497bbfbfaa8409c5c0299:log:216', 'hash': '0x55f57a857587566f949621be33cbf6b13261558ee02497bbfbfaa8409c5c0299', 'from': '0xb63faa36f97448921f5751a2272ba51318181517', 'to': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'value': 6983.59992562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x017a94eafba7387d8800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:10:54.000Z'}}, {'blockNum': '0xb131be', 'uniqueId': '0xead3133dcb8fde7f30548b0da0159bb7470d825e0b2acabe3a0f71b033ad880e:log:217', 'hash': '0xead3133dcb8fde7f30548b0da0159bb7470d825e0b2acabe3a0f71b033ad880e', 'from': '0xdc79bb9a038834ee96202e8dd0c4ba6d568dcea5', 'to': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'value': 11770.67090916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027e16df8c319a031000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:10:54.000Z'}}, {'blockNum': '0xb131da', 'uniqueId': '0xc113e311845793752cfc77d13180506fdd67b0f3d89cfe1426d4ff3264aa618c:log:174', 'hash': '0xc113e311845793752cfc77d13180506fdd67b0f3d89cfe1426d4ff3264aa618c', 'from': '0x4679e51edc6998ccff619874f5b0a8b522ff4220', 'to': '0xb367eaf5e0100749d26d1831bf17948bb2b0b2a8', 'value': 1300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x011349242670ce84800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:17:27.000Z'}}, {'blockNum': '0xb13221', 'uniqueId': '0x613507f8564a2b1086fffa7d87c2ca62746f0d84942822538fd8feda042a04d9:log:92', 'hash': '0x613507f8564a2b1086fffa7d87c2ca62746f0d84942822538fd8feda042a04d9', 'from': '0xb367eaf5e0100749d26d1831bf17948bb2b0b2a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x011349242670ce84800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:32:09.000Z'}}, {'blockNum': '0xb13221', 'uniqueId': '0xc2f87512f6568259e7e2a7eeaf7d93bdeec1bd8a3d1bded318d4684681e4c315:log:109', 'hash': '0xc2f87512f6568259e7e2a7eeaf7d93bdeec1bd8a3d1bded318d4684681e4c315', 'from': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a604b9a42df9ca00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:32:09.000Z'}}, {'blockNum': '0xb13245', 'uniqueId': '0xcbcc9683a91ea51929831e7d9edd28a87e0f1d454ed46ab48ea99ef0f9f2c8bb:log:61', 'hash': '0xcbcc9683a91ea51929831e7d9edd28a87e0f1d454ed46ab48ea99ef0f9f2c8bb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2180683.7581959385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdc71a78e17bc0240cf7', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:40:24.000Z'}}, {'blockNum': '0xb132a7', 'uniqueId': '0x5631faca162a6de868258f82d45ea1d07da6feba797bdc8adfef7ae9bcd94c09:log:226', 'hash': '0x5631faca162a6de868258f82d45ea1d07da6feba797bdc8adfef7ae9bcd94c09', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xffa89fd0dd3195269b52b7fe746f4b24a7ad0d53', 'value': 1030.57815629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x37de251ce89e739400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T08:03:56.000Z'}}, {'blockNum': '0xb13363', 'uniqueId': '0xb11d3bd0541fc95ce05aec9b603f8e2767b4a0ca2d42c27405ff5e863b0fd4cb:log:171', 'hash': '0xb11d3bd0541fc95ce05aec9b603f8e2767b4a0ca2d42c27405ff5e863b0fd4cb', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 71755.62777127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0f31e160505c46d7bc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T08:43:17.000Z'}}, {'blockNum': '0xb133b8', 'uniqueId': '0xea31e4ec0a85f57c0230cd55e5935d500ac6eee7e017c8570eada67460d34488:log:125', 'hash': '0xea31e4ec0a85f57c0230cd55e5935d500ac6eee7e017c8570eada67460d34488', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 49764.251075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a89b9b78269060b3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:01:55.000Z'}}, {'blockNum': '0xb1343f', 'uniqueId': '0xd4929955256595fb85bc85e8fa78879f49ecc7f2e1379e9333b5c6fa65a2967d:log:28', 'hash': '0xd4929955256595fb85bc85e8fa78879f49ecc7f2e1379e9333b5c6fa65a2967d', 'from': '0x57d483d326f72240b6947a4f33b2b15f644d596a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29099.57590717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06297dbd5f69073f5400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:32:05.000Z'}}, {'blockNum': '0xb1343f', 'uniqueId': '0x4b02aebbf1108ba37fb01c95f3caca7cf43fa6703244a6963357e3c748c0359c:log:33', 'hash': '0x4b02aebbf1108ba37fb01c95f3caca7cf43fa6703244a6963357e3c748c0359c', 'from': '0x1843f1255f8fcef77639b63aa741ba372ec01d09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 159737.69898690272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x21d365e435fca2b5315a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:32:05.000Z'}}, {'blockNum': '0xb1345e', 'uniqueId': '0x4b6666a395953c7d0bb5b3a61c17f8a2298496a7b0bd423c579d1ddde1fdfc1d:log:51', 'hash': '0x4b6666a395953c7d0bb5b3a61c17f8a2298496a7b0bd423c579d1ddde1fdfc1d', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 16379.9513889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0377f57d5b80aecbe800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:37:57.000Z'}}, {'blockNum': '0xb13465', 'uniqueId': '0x08fd07b04f4a673d55b2fd3836e3addbb0445cf4c2d15d854997b0b0871c9c6c:log:108', 'hash': '0x08fd07b04f4a673d55b2fd3836e3addbb0445cf4c2d15d854997b0b0871c9c6c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x92926db386b329010d1d1938539a9d5c6d3b2905', 'value': 16100.03463259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0368c8dd44b385aa0c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:40:14.000Z'}}, {'blockNum': '0xb1356c', 'uniqueId': '0xfe6b3b6872650c4a59fd8eff1118672aba85739d9c21067b3cbe9000308e39d4:log:27', 'hash': '0xfe6b3b6872650c4a59fd8eff1118672aba85739d9c21067b3cbe9000308e39d4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 110132.079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1752459f89bcd1918000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:32:37.000Z'}}, {'blockNum': '0xb13572', 'uniqueId': '0xb569be33c404bd9e4160abd125b06445449a1b17dc0dbe2f497ab63b1baea621:log:187', 'hash': '0xb569be33c404bd9e4160abd125b06445449a1b17dc0dbe2f497ab63b1baea621', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 110132.079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1752459f89bcd1918000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:33:17.000Z'}}, {'blockNum': '0xb13572', 'uniqueId': '0xb569be33c404bd9e4160abd125b06445449a1b17dc0dbe2f497ab63b1baea621:log:189', 'hash': '0xb569be33c404bd9e4160abd125b06445449a1b17dc0dbe2f497ab63b1baea621', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 110132.079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1752459f89bcd1918000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:33:17.000Z'}}, {'blockNum': '0xb135a5', 'uniqueId': '0x6b5fde222d0ce3d9afa2210fcf2959c8665f52fe529d26bda16b8975aed1bb97:log:11', 'hash': '0x6b5fde222d0ce3d9afa2210fcf2959c8665f52fe529d26bda16b8975aed1bb97', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfc7f623bc12dbeb984a9d618e9b07693ff35283f', 'value': 9038.516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01e9fa9b6de3cc920000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:43:39.000Z'}}, {'blockNum': '0xb135b6', 'uniqueId': '0x38bcc94716d099baebda80b7f84d0facb37bb45bd54713d840878080c853f68b:log:40', 'hash': '0x38bcc94716d099baebda80b7f84d0facb37bb45bd54713d840878080c853f68b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 264210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x37f2da51136ce5080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:46:11.000Z'}}, {'blockNum': '0xb1362f', 'uniqueId': '0xe54c231bbe795091119874e0660dccfac168ee1392587d54b0b18eea12a79214:log:56', 'hash': '0xe54c231bbe795091119874e0660dccfac168ee1392587d54b0b18eea12a79214', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xb017fdb028ff4d2666cb244d2ab24bf967e800a8', 'value': 80137.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10f83c5d64f2032b0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:12:46.000Z'}}, {'blockNum': '0xb13656', 'uniqueId': '0x5e8dcfba280396bebe791cc719c9ef0934f3c8ac6fd6b260c534fa6b893bb9e5:log:103', 'hash': '0x5e8dcfba280396bebe791cc719c9ef0934f3c8ac6fd6b260c534fa6b893bb9e5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb358ece567e4f2e64744559511f5486e60e2599d', 'value': 1961.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6a56ab26ff6e400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:22:01.000Z'}}, {'blockNum': '0xb136a4', 'uniqueId': '0x1aff3c1dd43c908a90d204e4b7a45010ff989e6cba43ab870b4cfa734b37c281:log:275', 'hash': '0x1aff3c1dd43c908a90d204e4b7a45010ff989e6cba43ab870b4cfa734b37c281', 'from': '0x28475624d6366ac49367105a6010e0f3da05610d', 'to': '0x36c86318d9469186ae2b4749a5ffde6516e354e1', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:39:56.000Z'}}, {'blockNum': '0xb136a7', 'uniqueId': '0xdc8a49b683bcb33b81b12d55bbacf854c22b4285e39001b2230520ff9e470e37:log:47', 'hash': '0xdc8a49b683bcb33b81b12d55bbacf854c22b4285e39001b2230520ff9e470e37', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x57d483d326f72240b6947a4f33b2b15f644d596a', 'value': 28554.42857142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x060bf04cf9dc29e41800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:40:09.000Z'}}, {'blockNum': '0xb136b3', 'uniqueId': '0x687bad99127ae84e1d652ea29cd9025fbc5529c7f4220b7b1939e3ccfb4aa7b2:log:182', 'hash': '0x687bad99127ae84e1d652ea29cd9025fbc5529c7f4220b7b1939e3ccfb4aa7b2', 'from': '0x28475624d6366ac49367105a6010e0f3da05610d', 'to': '0x57cc0647b15ed45f78016333c5c878162fdf5624', 'value': 44000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09513ea9de0243800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:43:24.000Z'}}, {'blockNum': '0xb136d3', 'uniqueId': '0x96345420974d83a777220eaa003dfad51227e35fbb4edeb34ed93384d2f71f85:log:60', 'hash': '0x96345420974d83a777220eaa003dfad51227e35fbb4edeb34ed93384d2f71f85', 'from': '0x677d71e06d5a37cc025a232a4a557c1dd2947167', 'to': '0x56bc3be4ed86a03216b1a825b5f0a7bcc47c667b', 'value': 6860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0173e19fd6298bb00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:49:14.000Z'}}, {'blockNum': '0xb136eb', 'uniqueId': '0x430c75743ae9ce0b45a47fd77c768f06996a864aadcf4f2409ee099bd70d14cd:log:305', 'hash': '0x430c75743ae9ce0b45a47fd77c768f06996a864aadcf4f2409ee099bd70d14cd', 'from': '0x2d5922ff4c677b17d0ee8c0736eb8e581b07f4a3', 'to': '0x56bc3be4ed86a03216b1a825b5f0a7bcc47c667b', 'value': 20116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04427d945cdd3dd00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:53:47.000Z'}}, {'blockNum': '0xb136f7', 'uniqueId': '0x793703641393a95597875f3dbf6df2a560553d4472d2fd983969a41b8a4850db:log:2', 'hash': '0x793703641393a95597875f3dbf6df2a560553d4472d2fd983969a41b8a4850db', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x24db60f1ee1fee4b473d0077e4ce0b844d134453', 'value': 102087.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x159e2aea0ae950bb0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:56:53.000Z'}}, {'blockNum': '0xb13715', 'uniqueId': '0x009e6d3b5e736c612cd6abeb2f0b384628dbe9d4d42e75438f60dbc2c627d178:log:99', 'hash': '0x009e6d3b5e736c612cd6abeb2f0b384628dbe9d4d42e75438f60dbc2c627d178', 'from': '0x57d483d326f72240b6947a4f33b2b15f644d596a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28554.42857142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x060bf04cf9dc29e41800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:01:55.000Z'}}, {'blockNum': '0xb1372b', 'uniqueId': '0x6230ff9599a5abee971495072ba6531d06e87c11b78f98fff914281405d9169a:log:52', 'hash': '0x6230ff9599a5abee971495072ba6531d06e87c11b78f98fff914281405d9169a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe15ea7d216419f92bc33c8065b861ca3d124ee5c', 'value': 1295.98614367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x46416bb33d2eb59c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:06:06.000Z'}}, {'blockNum': '0xb1373a', 'uniqueId': '0xcf98b2dabdb3c98bb6fd4f8e26d31073b45cafc358fce0aeb060481b22e16e6d:log:83', 'hash': '0xcf98b2dabdb3c98bb6fd4f8e26d31073b45cafc358fce0aeb060481b22e16e6d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:09:53.000Z'}}, {'blockNum': '0xb13740', 'uniqueId': '0xb0360d5fd963fa5b3b3eb194d1d6b04f6330b7987a7da84a943b32696c1d23c4:log:79', 'hash': '0xb0360d5fd963fa5b3b3eb194d1d6b04f6330b7987a7da84a943b32696c1d23c4', 'from': '0x51831fc3f1581f3782ee9960e1570fbb3b60f21d', 'to': '0xeaefd4ed7829aec7a641c3a5df75c2389924364f', 'value': 5482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01292e08631e83680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:10:45.000Z'}}, {'blockNum': '0xb1375b', 'uniqueId': '0xdb9a8e336013744e386d285ae2cb1ac06ddc1a0a562db79888b9ff9466b7e5bb:log:157', 'hash': '0xdb9a8e336013744e386d285ae2cb1ac06ddc1a0a562db79888b9ff9466b7e5bb', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 113237.26541846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x17fa9abdcd581d559800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:16:04.000Z'}}, {'blockNum': '0xb137be', 'uniqueId': '0xcf9ab9bbb0f49474fc2613cad89022068548ade1a35a824947f8a4c9237d26c1:log:161', 'hash': '0xcf9ab9bbb0f49474fc2613cad89022068548ade1a35a824947f8a4c9237d26c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x065e6011baf40687ef01055b03b2fdd2e8de495e', 'value': 13435.692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d859aec0a7259e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:41:04.000Z'}}, {'blockNum': '0xb138b8', 'uniqueId': '0xb387e6b351e0c82794354ac6bb95645b9d70fb55b678c00bd0520d8e0a18465f:log:69', 'hash': '0xb387e6b351e0c82794354ac6bb95645b9d70fb55b678c00bd0520d8e0a18465f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf9bc073b7d66b91d6d63a0928c75c68994f9c2a3', 'value': 3310.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb372f2748b38d10000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T13:36:42.000Z'}}, {'blockNum': '0xb138d7', 'uniqueId': '0x9b9e7fa9da5ccdfe668db12f614b905d4b23b1d6103880974376df1f7d8b5b94:log:73', 'hash': '0x9b9e7fa9da5ccdfe668db12f614b905d4b23b1d6103880974376df1f7d8b5b94', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xca700ad52bcd62263ef0351fc883488f0802ded8', 'value': 1473.08844695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4fdb3579be729b7c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T13:45:50.000Z'}}, {'blockNum': '0xb13947', 'uniqueId': '0xfef0586811d07b91539e40d0a347045a6737624b87a95a78de6713c67746bb53:log:95', 'hash': '0xfef0586811d07b91539e40d0a347045a6737624b87a95a78de6713c67746bb53', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0391e2d5ba0ef1762bb03137800064e264646ff7', 'value': 1538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x536009a353a6c80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:10:56.000Z'}}, {'blockNum': '0xb1399e', 'uniqueId': '0xd9dff71087ab0a1f51db3e32c03d2294c68119f9d6f9fc2817c5d0d85b422b22:log:90', 'hash': '0xd9dff71087ab0a1f51db3e32c03d2294c68119f9d6f9fc2817c5d0d85b422b22', 'from': '0x141f70af1302a566b8d8fe84c6d9b91cf0bbc71f', 'to': '0xd563d5be02dc6ebec61fdd45bffbc17a6fe1673b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:29:16.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0x145d8ee71f2db96f4658ad543e1ba77f822ff73b27980a7b1c10cb28ba906d27:log:136', 'hash': '0x145d8ee71f2db96f4658ad543e1ba77f822ff73b27980a7b1c10cb28ba906d27', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 262094.672063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x37802e3e94362c26f000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0xc3b17d6bcc9f1c579ad250803b8d2f90deefd22e7f4ba8d2fd4fae09f6b387d3:log:137', 'hash': '0xc3b17d6bcc9f1c579ad250803b8d2f90deefd22e7f4ba8d2fd4fae09f6b387d3', 'from': '0xb017fdb028ff4d2666cb244d2ab24bf967e800a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 303009.536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x402a2e0b5aac61800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0x4062702ec720cd35ad24ce62b5435addc934dfb012566cf4e3d60cbc32a2c5f6:log:138', 'hash': '0x4062702ec720cd35ad24ce62b5435addc934dfb012566cf4e3d60cbc32a2c5f6', 'from': '0xea0ee266edbacf515c2e3b8eb8a78de2685efa28', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 362433.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4cbf8cf20361d7b28000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0xb107edde84aaa92a230e87f05720c383401d4090ba0e8496cd18cecdc0e3d098:log:154', 'hash': '0xb107edde84aaa92a230e87f05720c383401d4090ba0e8496cd18cecdc0e3d098', 'from': '0x56bc3be4ed86a03216b1a825b5f0a7bcc47c667b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05b65f343306c9800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0xd34296089aa3c2e66b1648baccbc5d3cc3aab7b174797a8164a002e5e02a0614:log:168', 'hash': '0xd34296089aa3c2e66b1648baccbc5d3cc3aab7b174797a8164a002e5e02a0614', 'from': '0x6077086bfc37c9edfee8d42e8ba5734e858a115b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50596.0134565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ab6d0bd1984be7b8800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0x7ef8d6c7dbbe7ee5e07ff27e2d38bcf2fd3002956993cc29c7df7d1635f136e6:log:185', 'hash': '0x7ef8d6c7dbbe7ee5e07ff27e2d38bcf2fd3002956993cc29c7df7d1635f136e6', 'from': '0x74f2ec09c41ac09c0dfc5cba6baa0142d01be978', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0445da009c5fc8080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b3', 'uniqueId': '0x46ea5d32855fa1198f35b86708da6ae3e9c396cb236f5676765c2f84b2a49aa0:log:53', 'hash': '0x46ea5d32855fa1198f35b86708da6ae3e9c396cb236f5676765c2f84b2a49aa0', 'from': '0xc7a6409499951930f23b71bd60c897637f686e46', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08b1989415499e1c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:29.000Z'}}, {'blockNum': '0xb139c7', 'uniqueId': '0xb44dcc35b260e2d690ed719b3b2439c17f819563385d43dae091987ad93f8efe:log:220', 'hash': '0xb44dcc35b260e2d690ed719b3b2439c17f819563385d43dae091987ad93f8efe', 'from': '0x141f70af1302a566b8d8fe84c6d9b91cf0bbc71f', 'to': '0xd563d5be02dc6ebec61fdd45bffbc17a6fe1673b', 'value': 187767.6067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x27c2e700c23ba4b6c000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:36:14.000Z'}}, {'blockNum': '0xb139fa', 'uniqueId': '0xd8c3372938c392003950bdc68442eea4056ffb50689f1e8dcf65042992713d8c:log:211', 'hash': '0xd8c3372938c392003950bdc68442eea4056ffb50689f1e8dcf65042992713d8c', 'from': '0x7044eed65c3d8e0133ac62a9d0c34c9bb2d84e70', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 9796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02130acf32914e900000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:47:59.000Z'}}, {'blockNum': '0xb13a4f', 'uniqueId': '0xc5f4e97812a9e30c5d94b1427c608b229fa5c78b8003e5e7560dce9f7f7a45ff:log:115', 'hash': '0xc5f4e97812a9e30c5d94b1427c608b229fa5c78b8003e5e7560dce9f7f7a45ff', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 30902.7791236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x068b3e361af92737a000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T15:05:28.000Z'}}, {'blockNum': '0xb13ac6', 'uniqueId': '0x3d8f94fda486cbe29a66def747499e5d6511517929e8af96526b401cb637e4b2:log:152', 'hash': '0x3d8f94fda486cbe29a66def747499e5d6511517929e8af96526b401cb637e4b2', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30902.7791236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x068b3e361af92737a000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T15:31:53.000Z'}}, {'blockNum': '0xb13ba1', 'uniqueId': '0x5eb0cc0eb4173ed5c2e77a3c852c2da72b3f26083a46a224d83c96e07bc8d60a:log:303', 'hash': '0x5eb0cc0eb4173ed5c2e77a3c852c2da72b3f26083a46a224d83c96e07bc8d60a', 'from': '0x0da95e86c16a98c89d1ff1e70270b42155c649d1', 'to': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'value': 1500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013da329b6336471800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T16:21:09.000Z'}}, {'blockNum': '0xb13c47', 'uniqueId': '0x711b3249d82fbeb63c944a06cb52aa205c00ddc96f66c3fe5d593e8655a68399:log:59', 'hash': '0x711b3249d82fbeb63c944a06cb52aa205c00ddc96f66c3fe5d593e8655a68399', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 16537.76825177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x038083a37c2223ae4400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T16:57:06.000Z'}}, {'blockNum': '0xb13c4e', 'uniqueId': '0xf8045e32e4fa3454e6b6ebd357e58304f4ba3103e74c56b079c7b398a453c392:log:41', 'hash': '0xf8045e32e4fa3454e6b6ebd357e58304f4ba3103e74c56b079c7b398a453c392', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 82925.09795247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x118f60e9cfc5c6ccdc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T16:58:56.000Z'}}, {'blockNum': '0xb13c5b', 'uniqueId': '0xbb7af851fc03f3b682bd7ef76870f66439d9baa280dbc62ee4a0ca3a698f9e60:log:147', 'hash': '0xbb7af851fc03f3b682bd7ef76870f66439d9baa280dbc62ee4a0ca3a698f9e60', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:01:46.000Z'}}, {'blockNum': '0xb13c5b', 'uniqueId': '0x747f2d55a3ee149f79c6dbc66f0ba767278b834a98419fd1de5af141fda8acc1:log:148', 'hash': '0x747f2d55a3ee149f79c6dbc66f0ba767278b834a98419fd1de5af141fda8acc1', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99462.86620424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x150fe48d4be7ea7b2000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:01:46.000Z'}}, {'blockNum': '0xb13c67', 'uniqueId': '0x47a540ed2962f0edaa8b06495312ac164e8caa448deb61e0b6bcfbe69788b5ac:log:171', 'hash': '0x47a540ed2962f0edaa8b06495312ac164e8caa448deb61e0b6bcfbe69788b5ac', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 42821.436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09115acd6c4efc060000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:03:53.000Z'}}, {'blockNum': '0xb13c87', 'uniqueId': '0x0134df53665923107a571eb95cbbdf72950563628da2abd764de4dd2c4a0d8d5:log:136', 'hash': '0x0134df53665923107a571eb95cbbdf72950563628da2abd764de4dd2c4a0d8d5', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 103800.24789081771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15fb05d08b6a4fcd025a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:10:56.000Z'}}, {'blockNum': '0xb13c87', 'uniqueId': '0x0134df53665923107a571eb95cbbdf72950563628da2abd764de4dd2c4a0d8d5:log:141', 'hash': '0x0134df53665923107a571eb95cbbdf72950563628da2abd764de4dd2c4a0d8d5', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 103800.24789081771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15fb05d08b6a4fcd025a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:10:56.000Z'}}, {'blockNum': '0xb13c8d', 'uniqueId': '0x6ad2c63237a22dcf5f4225c0c31a32d53fadedf2a54fdba95e6e17ce1ecd4eff:log:103', 'hash': '0x6ad2c63237a22dcf5f4225c0c31a32d53fadedf2a54fdba95e6e17ce1ecd4eff', 'from': '0xa4db240294d86f7c3a0637b3087c61d126de7369', 'to': '0x76d03117f5b2a5e1e45e3d1e72d709ae2593ac72', 'value': 1525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x52aba05c3426b40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:12:45.000Z'}}, {'blockNum': '0xb13c8d', 'uniqueId': '0x8f1984e8da092ecc064466eb6aaad5a1a8e610c8965d6d838a54dfda7c75c30b:log:105', 'hash': '0x8f1984e8da092ecc064466eb6aaad5a1a8e610c8965d6d838a54dfda7c75c30b', 'from': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'to': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'value': 51800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af815688fd672600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:12:45.000Z'}}, {'blockNum': '0xb13c94', 'uniqueId': '0x08de0ee540e6966ab6710fb7aa1a83b3a41e728150e349adf8a2bd8d644ee65f:log:71', 'hash': '0x08de0ee540e6966ab6710fb7aa1a83b3a41e728150e349adf8a2bd8d644ee65f', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 103800.24789081771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15fb05d08b6a4fcd025a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:13:53.000Z'}}, {'blockNum': '0xb13cdc', 'uniqueId': '0x20b230f28ac6fa7e0308b41076e72870b61147e433bf2afd7ba8a1a5f609765d:log:183', 'hash': '0x20b230f28ac6fa7e0308b41076e72870b61147e433bf2afd7ba8a1a5f609765d', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 103800.24789081771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15fb05d08b6a4fcd025a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:31:37.000Z'}}, {'blockNum': '0xb13cdc', 'uniqueId': '0xde65cc5ac6713d78b8b66ba1d88c248cee3952388ae38fb6a516df979b8256aa:log:199', 'hash': '0xde65cc5ac6713d78b8b66ba1d88c248cee3952388ae38fb6a516df979b8256aa', 'from': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af815688fd672600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:31:37.000Z'}}, {'blockNum': '0xb13d0c', 'uniqueId': '0x5e7269b5005dd2bb3290901b492e9139dc6acd566eaaf6085f53f5fb404b63b1:log:31', 'hash': '0x5e7269b5005dd2bb3290901b492e9139dc6acd566eaaf6085f53f5fb404b63b1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdde9f9afd06dad6e0415797fcd90ec378de1711c', 'value': 1381.31818471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4ae1a40274d2f6bc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:43:55.000Z'}}, {'blockNum': '0xb13d24', 'uniqueId': '0xb3dc8921034ccb8cbbd6d685ad9cea134decb06e34eb63d552bbc0920023be7d:log:15', 'hash': '0xb3dc8921034ccb8cbbd6d685ad9cea134decb06e34eb63d552bbc0920023be7d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 100689.022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15525ce1c3b2a3b30000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:49:14.000Z'}}, {'blockNum': '0xb13d31', 'uniqueId': '0xe7b4fb357a1f701faf6479e27f7b6de0b619baa19ffc579eac472236f4ee15f0:log:119', 'hash': '0xe7b4fb357a1f701faf6479e27f7b6de0b619baa19ffc579eac472236f4ee15f0', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 100689.022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15525ce1c3b2a3b30000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:51:43.000Z'}}, {'blockNum': '0xb13d31', 'uniqueId': '0xe7b4fb357a1f701faf6479e27f7b6de0b619baa19ffc579eac472236f4ee15f0:log:121', 'hash': '0xe7b4fb357a1f701faf6479e27f7b6de0b619baa19ffc579eac472236f4ee15f0', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 100689.022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15525ce1c3b2a3b30000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:51:43.000Z'}}, {'blockNum': '0xb13dd6', 'uniqueId': '0xaee808a4d8bf87651193949e4369d8145a8b694f622bdf21bbcfa64c1b85087c:log:9', 'hash': '0xaee808a4d8bf87651193949e4369d8145a8b694f622bdf21bbcfa64c1b85087c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdf626fd3a0331a5de42f60fe0d62cf9f521cb544', 'value': 4816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0105136d13bd09400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T18:26:39.000Z'}}, {'blockNum': '0xb13ded', 'uniqueId': '0xcdff6484ca6c6194e4c58279c5c82b1cdb4c8906203359d3d189d136c1a5aaa5:log:128', 'hash': '0xcdff6484ca6c6194e4c58279c5c82b1cdb4c8906203359d3d189d136c1a5aaa5', 'from': '0xd563d5be02dc6ebec61fdd45bffbc17a6fe1673b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 188767.6067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x27f91cca70018356c000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T18:31:35.000Z'}}, {'blockNum': '0xb13e7f', 'uniqueId': '0x43ac93ad22bc6f77c13fd739f0b78fd6ad830707a11028d1c8f2b084edaa8184:log:82', 'hash': '0x43ac93ad22bc6f77c13fd739f0b78fd6ad830707a11028d1c8f2b084edaa8184', 'from': '0x6b11bda202802402f6e92a426e440ba6abb01ee6', 'to': '0xc42a1b69cf0e8f6a5bb35379f657a2426b17a3dc', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T19:01:19.000Z'}}, {'blockNum': '0xb13f20', 'uniqueId': '0xccd140a0491c1bba2fa4f734ced5fe882869fb7272dfd625be0a9f72adc1c7c6:log:129', 'hash': '0xccd140a0491c1bba2fa4f734ced5fe882869fb7272dfd625be0a9f72adc1c7c6', 'from': '0xdf626fd3a0331a5de42f60fe0d62cf9f521cb544', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 4816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0105136d13bd09400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T19:39:19.000Z'}}, {'blockNum': '0xb13f76', 'uniqueId': '0xace3a601c54e8376e2a65acc98efd9f2ac04b17fd980c2b0f161bbc1f20225c5:log:2', 'hash': '0xace3a601c54e8376e2a65acc98efd9f2ac04b17fd980c2b0f161bbc1f20225c5', 'from': '0xe15ea7d216419f92bc33c8065b861ca3d124ee5c', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 2632.01395238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x8eae87f8ae99cbd800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T19:58:55.000Z'}}, {'blockNum': '0xb13f9b', 'uniqueId': '0xd9b24975994de0da84894197344ae8bfcc088b293730b6915983cab86fbb8d87:log:240', 'hash': '0xd9b24975994de0da84894197344ae8bfcc088b293730b6915983cab86fbb8d87', 'from': '0x11dbe59b28df4b5b573788f55290e4b63366a4cf', 'to': '0x54bc994762ec3f4c473273830c37f7f4a2862290', 'value': 21193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x047cdff4feac75840000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T20:07:51.000Z'}}, {'blockNum': '0xb1406f', 'uniqueId': '0xd2e600115c3a5585219b6f08451d414db8060164bb21b867adbbf3c86cf2d985:log:274', 'hash': '0xd2e600115c3a5585219b6f08451d414db8060164bb21b867adbbf3c86cf2d985', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 114807.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x184fbc110f0dbfbc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T20:53:45.000Z'}}, {'blockNum': '0xb1409b', 'uniqueId': '0x3110157e1424aee9c73f8a0d5f3f15bcb6132de62e58cbce091413d43a4c8b11:log:247', 'hash': '0x3110157e1424aee9c73f8a0d5f3f15bcb6132de62e58cbce091413d43a4c8b11', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 114807.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x184fbc110f0dbfbc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T21:03:54.000Z'}}, {'blockNum': '0xb1409b', 'uniqueId': '0x3110157e1424aee9c73f8a0d5f3f15bcb6132de62e58cbce091413d43a4c8b11:log:249', 'hash': '0x3110157e1424aee9c73f8a0d5f3f15bcb6132de62e58cbce091413d43a4c8b11', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 114807.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x184fbc110f0dbfbc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T21:03:54.000Z'}}, {'blockNum': '0xb1409f', 'uniqueId': '0x7606b3363b7093297b2407fae2df2068a5b964b6e3e641ae97daf4142e2f2eb3:log:90', 'hash': '0x7606b3363b7093297b2407fae2df2068a5b964b6e3e641ae97daf4142e2f2eb3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x64ccb08295c77e4ece7050d1ef2dff59c5c838af', 'value': 15426.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03444ca1ec3deb201c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T21:04:56.000Z'}}, {'blockNum': '0xb140a4', 'uniqueId': '0xa21a00a1cfb7a28653994e7b33bf197d22ee2eff028c961a9e94c0562b137ce1:log:33', 'hash': '0xa21a00a1cfb7a28653994e7b33bf197d22ee2eff028c961a9e94c0562b137ce1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9131fa69ec46ba5ffaeae6bc5071093b70d2c854', 'value': 1648.60674769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x595f03be54c67d2400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T21:06:16.000Z'}}, {'blockNum': '0xb143ad', 'uniqueId': '0xc58b25ed5210f966a1c3dc7c232a309ca9a8f98da46e8f0dec5b3c6e50cfed8d:log:29', 'hash': '0xc58b25ed5210f966a1c3dc7c232a309ca9a8f98da46e8f0dec5b3c6e50cfed8d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0c3d570975cde0a4c5246fbdaa41ca7fb1dbe640', 'value': 3560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc0fcecb24fc6a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T23:56:56.000Z'}}, {'blockNum': '0xb14410', 'uniqueId': '0xff39aeecbc001c39c7af6f043eb00d268f58a0fed7ba3de9ffd61242dce5c94c:log:130', 'hash': '0xff39aeecbc001c39c7af6f043eb00d268f58a0fed7ba3de9ffd61242dce5c94c', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'value': 114549.09117214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1841b7fb19f726d0b800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T00:18:43.000Z'}}, {'blockNum': '0xb1444a', 'uniqueId': '0x363dd132ee699c0da7db5a894599d3de8bf6a5eb44325792c1b00b4d95b70cf1:log:256', 'hash': '0x363dd132ee699c0da7db5a894599d3de8bf6a5eb44325792c1b00b4d95b70cf1', 'from': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114549.09117214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1841b7fb19f726d0b800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T00:32:02.000Z'}}, {'blockNum': '0xb1448b', 'uniqueId': '0x162fe7ca9ee095123c7d620c097f001785aabf319c8f38b3b03f4927bb0e8d3e:log:19', 'hash': '0x162fe7ca9ee095123c7d620c097f001785aabf319c8f38b3b03f4927bb0e8d3e', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 27260.2135325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05c5c7758101e6f04800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T00:48:03.000Z'}}, {'blockNum': '0xb144c7', 'uniqueId': '0xbff855403e47b80c51ff119a24626d64a4fb4325524524dcbbe06da2e9ee8e2f:log:55', 'hash': '0xbff855403e47b80c51ff119a24626d64a4fb4325524524dcbbe06da2e9ee8e2f', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27260.2135325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05c5c7758101e6f04800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T01:01:48.000Z'}}, {'blockNum': '0xb1460d', 'uniqueId': '0x88bf992462a4ca9075d18ef3f0af93827ec8f8f92d9aa0da457cbc0b67c3265b:log:26', 'hash': '0x88bf992462a4ca9075d18ef3f0af93827ec8f8f92d9aa0da457cbc0b67c3265b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'value': 55526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0bc2120bbaa4c3d80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T02:05:37.000Z'}}, {'blockNum': '0xb14753', 'uniqueId': '0x62e78b95f6d9166c21f5432cb401198d47ef5c604eeee6daa6b2e0db1bca7f38:log:0', 'hash': '0x62e78b95f6d9166c21f5432cb401198d47ef5c604eeee6daa6b2e0db1bca7f38', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x68e564b54c99e0f6e922aa027b3d0f85d4f45352', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T03:19:50.000Z'}}]}}
Number of returned transfers:  98
Answer is complete
 
symbol             RCN
group              TWP
date        2021-01-10
hour             17:00
exchange       binance
Name: 637, dtype: object
HERE
 Symbol: RCN, Contract: 0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6
Datetime timestamps:  2021-01-10 17:00:00 2021-01-10 05:00:00 2021-01-11 05:00:00
Unix timestamps:  1610251200.0 1610337600.0
Hex Block Numbers:  0xb1613f 0xb17ada
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb16147', 'uniqueId': '0xab3fcbedaa17c4421f5d6df09b74b011790429989d1c3d2e92b8e1fa82689b1d:log:42', 'hash': '0xab3fcbedaa17c4421f5d6df09b74b011790429989d1c3d2e92b8e1fa82689b1d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x21045c09ad2f743a02cca7fc7bc55e9ce81483a8', 'value': 4579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xf83a63ef6b11ac0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:01:45.000Z'}}, {'blockNum': '0xb16147', 'uniqueId': '0xd88bafd5be0f14ef112ad4e7d76efe4dd7a698cbca8267038e5ad9df1150e71c:log:175', 'hash': '0xd88bafd5be0f14ef112ad4e7d76efe4dd7a698cbca8267038e5ad9df1150e71c', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ba58e545582d4600000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:01:45.000Z'}}, {'blockNum': '0xb16161', 'uniqueId': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8:log:210', 'hash': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'value': 521.2257406513496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1c4175d18cd1939efc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:07:51.000Z'}}, {'blockNum': '0xb16161', 'uniqueId': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8:log:212', 'hash': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8', 'from': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 521.2257406513496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1c4175d18cd1939efc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:07:51.000Z'}}, {'blockNum': '0xb16161', 'uniqueId': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8:log:213', 'hash': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0x9b3644eed5e442678b2d505e0acfbb80a4f9e9ad', 'value': 521.2257406513496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1c4175d18cd1939efc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:07:51.000Z'}}, {'blockNum': '0xb1618e', 'uniqueId': '0x8cfbf721a2e8d4ebcb0b00c91e253e53c29fbd1fc323747c74fa5438ea32b256:log:18', 'hash': '0x8cfbf721a2e8d4ebcb0b00c91e253e53c29fbd1fc323747c74fa5438ea32b256', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x000906be4787eb60019d9e7b89ce1bd6908a4a15', 'value': 13364.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d483a9a090e96d0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:17:09.000Z'}}, {'blockNum': '0xb1619f', 'uniqueId': '0x03e6fdfcbf54fcae3e3ecf75d5d5a45c43395652e250bb348dddbf2937d3a50d:log:241', 'hash': '0x03e6fdfcbf54fcae3e3ecf75d5d5a45c43395652e250bb348dddbf2937d3a50d', 'from': '0x9b3644eed5e442678b2d505e0acfbb80a4f9e9ad', 'to': '0xf044ed1ada426092f1ddfb5b0ee83feb73ac5dbc', 'value': 521.2257406513496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1c4175d18cd1939efc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:22:36.000Z'}}, {'blockNum': '0xb161a9', 'uniqueId': '0x3fc84ca274f8fb4bca89e50f50fdc0a64578c56012fc86c3bc73e4069c075a9c:log:44', 'hash': '0x3fc84ca274f8fb4bca89e50f50fdc0a64578c56012fc86c3bc73e4069c075a9c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xca1640f4db07c2275a72715ff841fcc6ab7e2907', 'value': 5698.098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0134e4feb52ed3c50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:23:56.000Z'}}, {'blockNum': '0xb161af', 'uniqueId': '0xff608a3f28bdb39113daf0fe68592a36663641f3528b990a362009c5715a1854:log:11', 'hash': '0xff608a3f28bdb39113daf0fe68592a36663641f3528b990a362009c5715a1854', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x436d1fcecadeb4bb6e1f6a6f72af223c3825425b', 'value': 561.65450385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1e7285a37a7d842400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:25:06.000Z'}}, {'blockNum': '0xb161bf', 'uniqueId': '0xc4884d32074c91f601b663cf280268eb8d0242df70acc12615925704b9b6df38:log:117', 'hash': '0xc4884d32074c91f601b663cf280268eb8d0242df70acc12615925704b9b6df38', 'from': '0xca1640f4db07c2275a72715ff841fcc6ab7e2907', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5698.098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0134e4feb52ed3c50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:27:49.000Z'}}, {'blockNum': '0xb161c7', 'uniqueId': '0xf2b1b8d3d4483bcda9154b78fa997164926dd7cb2215f819bfeb93b7fb4dad7a:log:56', 'hash': '0xf2b1b8d3d4483bcda9154b78fa997164926dd7cb2215f819bfeb93b7fb4dad7a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x95f3f91ef92059db1e2acab78ec96d1e57ce7065', 'value': 1800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6194049f30f7200000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:28:30.000Z'}}, {'blockNum': '0xb161d3', 'uniqueId': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f:log:92', 'hash': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'value': 498.67431022995066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b087f0b107d2716a9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:22.000Z'}}, {'blockNum': '0xb161d3', 'uniqueId': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f:log:94', 'hash': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f', 'from': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 498.67431022995066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b087f0b107d2716a9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:22.000Z'}}, {'blockNum': '0xb161d3', 'uniqueId': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f:log:95', 'hash': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0xf044ed1ada426092f1ddfb5b0ee83feb73ac5dbc', 'value': 498.67431022995066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b087f0b107d2716a9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:22.000Z'}}, {'blockNum': '0xb16208', 'uniqueId': '0x64059b6b745c621c52c00c8d9dba3d895bc13860b4141518ba6071e0fb517a13:log:35', 'hash': '0x64059b6b745c621c52c00c8d9dba3d895bc13860b4141518ba6071e0fb517a13', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa0aee7fa7b01ddcfefc23d0717f379e621f1e7bb', 'value': 1718.46577498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x5d2880dd85bd422800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:43:27.000Z'}}, {'blockNum': '0xb16224', 'uniqueId': '0x73a0673cd260759403d75020d2d6ab13f32842edbeb8e7d585f832b45a569aab:log:149', 'hash': '0x73a0673cd260759403d75020d2d6ab13f32842edbeb8e7d585f832b45a569aab', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'value': 17276.608210413033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a8911a4ffa31e776d3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:49:43.000Z'}}, {'blockNum': '0xb16224', 'uniqueId': '0x73a0673cd260759403d75020d2d6ab13f32842edbeb8e7d585f832b45a569aab:log:153', 'hash': '0x73a0673cd260759403d75020d2d6ab13f32842edbeb8e7d585f832b45a569aab', 'from': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 17276.608210413033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a8911a4ffa31e776d3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:49:43.000Z'}}, {'blockNum': '0xb1624f', 'uniqueId': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d:log:155', 'hash': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x3b4503cba9add1194dd8098440e4be91c4c37806', 'value': 572.0438040588053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f02b3d8f9383fa0fe', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:58:34.000Z'}}, {'blockNum': '0xb1624f', 'uniqueId': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d:log:158', 'hash': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d', 'from': '0x3b4503cba9add1194dd8098440e4be91c4c37806', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 572.0438040588053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f02b3d8f9383fa0fe', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:58:34.000Z'}}, {'blockNum': '0xb1624f', 'uniqueId': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d:log:159', 'hash': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0xf044ed1ada426092f1ddfb5b0ee83feb73ac5dbc', 'value': 572.0438040588053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f02b3d8f9383fa0fe', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:58:34.000Z'}}, {'blockNum': '0xb1626f', 'uniqueId': '0x8382774db11b9a54509e331ca60319c67a69c09df78aa903309d001705a7040c:log:0', 'hash': '0x8382774db11b9a54509e331ca60319c67a69c09df78aa903309d001705a7040c', 'from': '0xcfad194906a22cfad317c38720a93b7b2e12d84e', 'to': '0x4e1f5de4955effbf3115142c36183646a785461d', 'value': 17296.64999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a9a73d0d6960351c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:04:40.000Z'}}, {'blockNum': '0xb162c8', 'uniqueId': '0x2c805e2976f578820980722f3f3577e272ad98d9ddb83626c29b13df6fdba696:log:12', 'hash': '0x2c805e2976f578820980722f3f3577e272ad98d9ddb83626c29b13df6fdba696', 'from': '0xfc60bb0bdb2d6428268d483ce2b8576634f99c2e', 'to': '0xe65ce5dcf46b5802a3c446011cfbfe72fd27c5a9', 'value': 45969.583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09bc041e5535fbb18000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:23:10.000Z'}}, {'blockNum': '0xb162d8', 'uniqueId': '0xa6a83a72124be932baf7d0fb0ed5e01c1652d7f99a782d831c4029d65eb0a61a:log:16', 'hash': '0xa6a83a72124be932baf7d0fb0ed5e01c1652d7f99a782d831c4029d65eb0a61a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x57b36c27601ac652a1994f17be7c18ce88344dcf', 'value': 24790.986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x053fec0b12ba12210000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:25:02.000Z'}}, {'blockNum': '0xb16320', 'uniqueId': '0xe5084e90c2c66417854471591093b0b142b8e41eeee4e6d729cc7cf46f8b2a98:log:57', 'hash': '0xe5084e90c2c66417854471591093b0b142b8e41eeee4e6d729cc7cf46f8b2a98', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x90a74fde710900c95a90580db780ac33e70ff63a', 'value': 21535.245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x048f6d8f7ce1c7148000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:43:20.000Z'}}, {'blockNum': '0xb1632b', 'uniqueId': '0xc56d7686b38e69741e38504152d3b2ff266eaa9213e72ef5a45d43b7c7c912bf:log:334', 'hash': '0xc56d7686b38e69741e38504152d3b2ff266eaa9213e72ef5a45d43b7c7c912bf', 'from': '0xd59b3a95c34b12df4d36db0c8e957d03a44f56ab', 'to': '0xf1f919f84763b2af900fcf1b8227f7053e5172e0', 'value': 5214.1268843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011aa88be7a483caf800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:46:25.000Z'}}, {'blockNum': '0xb1633e', 'uniqueId': '0x59a60194e1c6eec72bac982ab5e64b822bf7e87bf99a2d4fc1d5f006e0f556a5:log:227', 'hash': '0x59a60194e1c6eec72bac982ab5e64b822bf7e87bf99a2d4fc1d5f006e0f556a5', 'from': '0xf1f919f84763b2af900fcf1b8227f7053e5172e0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5214.1268843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011aa88be7a483caf800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:52:37.000Z'}}, {'blockNum': '0xb16349', 'uniqueId': '0x36356a47f46e8e23d874e426e0557854b0906f8bf476d5c7460800b30daeb677:log:246', 'hash': '0x36356a47f46e8e23d874e426e0557854b0906f8bf476d5c7460800b30daeb677', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x34c504f5168eb18cf6c4d07e7ef22be7ab379007', 'value': 3770.1121534131426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcc60d1049e755d7a89', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:56:30.000Z'}}, {'blockNum': '0xb163b9', 'uniqueId': '0xd2b527facfccdc026fe5c35a2e08918274c49cd7db73fc38145fd9002435f905:log:24', 'hash': '0xd2b527facfccdc026fe5c35a2e08918274c49cd7db73fc38145fd9002435f905', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x687591102413ed41b8bd9961c5f0d9be893b266f', 'value': 4029.277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xda6d738379bb9c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T06:19:41.000Z'}}, {'blockNum': '0xb163f8', 'uniqueId': '0x4731303e32fa6e445d7feaa5f7b2b05911f8bb017914db52685a2b2e0d747cff:log:257', 'hash': '0x4731303e32fa6e445d7feaa5f7b2b05911f8bb017914db52685a2b2e0d747cff', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46672.05944629103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09e218f0033b9b67f513', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T06:31:16.000Z'}}, {'blockNum': '0xb1648d', 'uniqueId': '0x3b3547c08964d6ce9b0b98df2a898d8875b76889e026bd99445cf94e4f3d2dc6:log:62', 'hash': '0x3b3547c08964d6ce9b0b98df2a898d8875b76889e026bd99445cf94e4f3d2dc6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf4c2b79d368c0903f392d5b9386ca877b3488c0c', 'value': 801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2b6c1ba81ebfe40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:03:01.000Z'}}, {'blockNum': '0xb164d5', 'uniqueId': '0x6dc29e94f783fa340fee0423423e995c827e91555e0c713221c4af415ce44d1c:log:16', 'hash': '0x6dc29e94f783fa340fee0423423e995c827e91555e0c713221c4af415ce44d1c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3d174671c4ca381718da50c24c8fdc86e57f48f4', 'value': 2345.39620579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7f24e92eb96deb2c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:19:19.000Z'}}, {'blockNum': '0xb164fd', 'uniqueId': '0xdd05fec0af4693295e7ffc1c243732c3dc51d9db65466e6dcb247956688547f5:log:202', 'hash': '0xdd05fec0af4693295e7ffc1c243732c3dc51d9db65466e6dcb247956688547f5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb2ff4a933378a31ed915c63cb4f74708225fcbd7', 'value': 1228.87183323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x429e05c57b0d380c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:27:43.000Z'}}, {'blockNum': '0xb16503', 'uniqueId': '0x390777abfaabf3e943ee909324537034fa8603cd44356cd6dbaed2b4658296c8:log:15', 'hash': '0x390777abfaabf3e943ee909324537034fa8603cd44356cd6dbaed2b4658296c8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x976f77036e4f70615f02bf657af906f954a09517', 'value': 5231.26566503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011b966515e952c0bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:29:02.000Z'}}, {'blockNum': '0xb16556', 'uniqueId': '0xe89f2e3a51957ccbbd5cb003fdd33637d5d3551de51230cb878746c73368bdb7:log:40', 'hash': '0xe89f2e3a51957ccbbd5cb003fdd33637d5d3551de51230cb878746c73368bdb7', 'from': '0x78bf491d83382e0cd4d1537c61616d350972be26', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 6025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01469dabea2e90840000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:50:04.000Z'}}, {'blockNum': '0xb1655c', 'uniqueId': '0xc3f664781f897c4c826550a47f8f9d698ae53bf8e9f162510504a09a7581a23a:log:201', 'hash': '0xc3f664781f897c4c826550a47f8f9d698ae53bf8e9f162510504a09a7581a23a', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x5da78a8ac3e96dfed4ac1c2eee318127a99caf39', 'value': 3756.657465993421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcba6185db25cf1a530', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:51:34.000Z'}}, {'blockNum': '0xb16572', 'uniqueId': '0x50d7be6ea42799f623be8e90b61d76b7542658fc1102afc7addd82ac8e0e29ad:log:201', 'hash': '0x50d7be6ea42799f623be8e90b61d76b7542658fc1102afc7addd82ac8e0e29ad', 'from': '0x8b23a983df98c03c05d7547dd938c1b36ed8b394', 'to': '0x7e1bd3919c4807793c8b5cfc5d5868a2ce8d801a', 'value': 2000.6877971258186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6c751ee7633f336b61', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:56:10.000Z'}}, {'blockNum': '0xb165b0', 'uniqueId': '0xf3add17c4c72101523e4575e0ea5dee9ce3b3277a01b79af12708683fe52ae26:log:145', 'hash': '0xf3add17c4c72101523e4575e0ea5dee9ce3b3277a01b79af12708683fe52ae26', 'from': '0x71da7f16c8a77fc69509c2297b4f6b599484c043', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 9000.123347790612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e5cd541e4ed31c2d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:08:59.000Z'}}, {'blockNum': '0xb165e1', 'uniqueId': '0x11fbd23af256dcb032122e740abc8f04e2343417969c7411232f07d053b01bdb:log:165', 'hash': '0x11fbd23af256dcb032122e740abc8f04e2343417969c7411232f07d053b01bdb', 'from': '0x0fc249e18613e5ed1a500ceaa79841483a2c114e', 'to': '0x0636e0cb8c1111efecdee8553b8beb4a45de5ebf', 'value': 7754.214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01a45b562569d8d70000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:18:58.000Z'}}, {'blockNum': '0xb165f7', 'uniqueId': '0x847cce0da37769b324d1174f3b32af45dbec0910b49b7194e481b095fc838582:log:45', 'hash': '0x847cce0da37769b324d1174f3b32af45dbec0910b49b7194e481b095fc838582', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb53bf7ffec6068bb770aad54b619360b86e1ce44', 'value': 2830.968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x997792bce3820c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:23:46.000Z'}}, {'blockNum': '0xb16606', 'uniqueId': '0x767904880cff2c4425124faa6671f7d5653cc5834eaaf7a614832eb3d07948af:log:11', 'hash': '0x767904880cff2c4425124faa6671f7d5653cc5834eaaf7a614832eb3d07948af', 'from': '0xb53bf7ffec6068bb770aad54b619360b86e1ce44', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2830.968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x997792bce3820c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:26:58.000Z'}}, {'blockNum': '0xb16668', 'uniqueId': '0x33536765cf9424f9fdc4ffafe89620dcd9948bed9c0cf9a1f142dc469ceb65b4:log:21', 'hash': '0x33536765cf9424f9fdc4ffafe89620dcd9948bed9c0cf9a1f142dc469ceb65b4', 'from': '0xf092032446bc5a368832c2eeb50d56272e2ee449', 'to': '0xa55d18fafedf627187914ec1cbddfa3d14972c0a', 'value': 52063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b06574442676a1c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:48:16.000Z'}}, {'blockNum': '0xb16677', 'uniqueId': '0x5bd0674ba95cdbdc0c3dd39620cf29477281968bd42992d1367d58a3de694697:log:5', 'hash': '0x5bd0674ba95cdbdc0c3dd39620cf29477281968bd42992d1367d58a3de694697', 'from': '0xbbc3482468f8abd858c544527fcd155c700afd92', 'to': '0x3e29080444ac0043a5163e2a3d5f17a818c1b105', 'value': 973.71653543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x34c9080e009535bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:52:38.000Z'}}, {'blockNum': '0xb1667a', 'uniqueId': '0x5deb235a656742609643983b6a473845eeae956ef496dd6b96b6865efd78fce3:log:47', 'hash': '0x5deb235a656742609643983b6a473845eeae956ef496dd6b96b6865efd78fce3', 'from': '0x3e29080444ac0043a5163e2a3d5f17a818c1b105', 'to': '0x8b4f9ba2360703a2864caec3de1786630b687396', 'value': 973.71653543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x34c9080e009535bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:52:55.000Z'}}, {'blockNum': '0xb16682', 'uniqueId': '0x40cf373f76c35a4a27612d22c8eab914502c0773855f4fdec83f4d66f894678d:log:96', 'hash': '0x40cf373f76c35a4a27612d22c8eab914502c0773855f4fdec83f4d66f894678d', 'from': '0xa55d18fafedf627187914ec1cbddfa3d14972c0a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b06574442676a1c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:55:12.000Z'}}, {'blockNum': '0xb16689', 'uniqueId': '0xff56a51b285f2aec8e5a3da0baeb19cb6b5302c893de9aced66c281069e56366:log:54', 'hash': '0xff56a51b285f2aec8e5a3da0baeb19cb6b5302c893de9aced66c281069e56366', 'from': '0x8b4f9ba2360703a2864caec3de1786630b687396', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 973.71653543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x34c9080e009535bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:56:33.000Z'}}, {'blockNum': '0xb1668e', 'uniqueId': '0x8477b1b3f04c8aa1b5a112031a8f43dbf70a68e9bfa8fb7a6663c22bead185d2:log:157', 'hash': '0x8477b1b3f04c8aa1b5a112031a8f43dbf70a68e9bfa8fb7a6663c22bead185d2', 'from': '0x8e60925d0a404c5cbb1f486f0531c7c8fe220044', 'to': '0x1fa670e1b5b89ca468b655acb80e2553c58d82df', 'value': 11500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x026f6a8f4e6380300000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:58:40.000Z'}}, {'blockNum': '0xb166a8', 'uniqueId': '0xa2c391dc441a47ff27c817ae9b2d80454a4d93fb2795a07a595d430fa6808c83:log:81', 'hash': '0xa2c391dc441a47ff27c817ae9b2d80454a4d93fb2795a07a595d430fa6808c83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'value': 31199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069b4d1a109d141c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:05:19.000Z'}}, {'blockNum': '0xb166b3', 'uniqueId': '0x2a771602b3cd1cc77d19e8a436d73039d5511e7721479f13bdfaffe58c83afd7:log:17', 'hash': '0x2a771602b3cd1cc77d19e8a436d73039d5511e7721479f13bdfaffe58c83afd7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'value': 15479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03471e4708be3f7c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:07:43.000Z'}}, {'blockNum': '0xb166bd', 'uniqueId': '0xa357bd49c0125c6b2d5f072843aa8ae41c7e7c657d51f53be9f5de816130121b:log:189', 'hash': '0xa357bd49c0125c6b2d5f072843aa8ae41c7e7c657d51f53be9f5de816130121b', 'from': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 31199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069b4d1a109d141c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:10:34.000Z'}}, {'blockNum': '0xb166cd', 'uniqueId': '0x8fe78e455cc7060d1a5e0fba1c3c9187f4c9ddc2f250275a2a159ba20ccaccdc:log:129', 'hash': '0x8fe78e455cc7060d1a5e0fba1c3c9187f4c9ddc2f250275a2a159ba20ccaccdc', 'from': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 15479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03471e4708be3f7c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:13:38.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x0931dea325e4d43000e87480b2676b335848eabf17c9de2593b3bc7c37fd66db:log:181', 'hash': '0x0931dea325e4d43000e87480b2676b335848eabf17c9de2593b3bc7c37fd66db', 'from': '0xd774b07b322d2fded7327e4b75452b6baa6d672f', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1291.79426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x46073f23402c994000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x605a0c5db02e5d135dd1e4a08c9796bf8e2b79ffa7ebf7d89f6fc50a6d55b341:log:182', 'hash': '0x605a0c5db02e5d135dd1e4a08c9796bf8e2b79ffa7ebf7d89f6fc50a6d55b341', 'from': '0xf1ecb43cac302ee84b23c0893effb22d72915d48', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1353.08466628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x4959d26708275e9000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0xe8b65f344a72b3fa4e1aa94e9d054287e0622f3f6f821bd23952008c4524725b:log:183', 'hash': '0xe8b65f344a72b3fa4e1aa94e9d054287e0622f3f6f821bd23952008c4524725b', 'from': '0x788e88b172e8f3e960b74eebbc85bfe74be07889', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1108.59362565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3c18d3bcf2aa9f7400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0xc0c7052738fad09207811c58bcd6b256fb0420b23a956978c35ceb83d909baa2:log:184', 'hash': '0xc0c7052738fad09207811c58bcd6b256fb0420b23a956978c35ceb83d909baa2', 'from': '0x6d429aa467d8b2b5dfe2e9ee44d1c28b0ecd84ef', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 2320.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7dcda0869dca020000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0xa956638f3589c215e4e58ffd724516909f2845639de6ce2066f753e25ca857eb:log:185', 'hash': '0xa956638f3589c215e4e58ffd724516909f2845639de6ce2066f753e25ca857eb', 'from': '0xdbb4a816e6b27a94e1096dd9eeae6b22cc011a48', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1170.674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3f765d8880d9a50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x0b85133d0a4e804ad7667d92880499e93cb2df96d8d697f39a3b78720c9d5b0b:log:186', 'hash': '0x0b85133d0a4e804ad7667d92880499e93cb2df96d8d697f39a3b78720c9d5b0b', 'from': '0x612265f1f87beadfea097bf7628680665aa4ba87', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1563.38611041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x54c057383e47ad6400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0xb893b37e2b9d28faa204ab4caffe54b7789c414f442b3246c1fa849971a8684b:log:187', 'hash': '0xb893b37e2b9d28faa204ab4caffe54b7789c414f442b3246c1fa849971a8684b', 'from': '0x0960f43b801d0fb3c28c55bf988c44369f8e4dd9', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 917.35916111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x31baea70a703e35c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x655223db06eef6055da82cf12b947b40ec45a71e44beb401072bd71d75b6a26f:log:188', 'hash': '0x655223db06eef6055da82cf12b947b40ec45a71e44beb401072bd71d75b6a26f', 'from': '0x4e1f5de4955effbf3115142c36183646a785461d', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 17296.64999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a9a73d0d6960351c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x4ea243d0c01fd35893cb9f5f156af69a6f834b766737fad8976fc594eb12bdaa:log:189', 'hash': '0x4ea243d0c01fd35893cb9f5f156af69a6f834b766737fad8976fc594eb12bdaa', 'from': '0x955d56ad03f82892efd86f1fa36417ebb48c40d5', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1825.60177275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x62f75063dd07268c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x9ed8cb8326233a1b97243b447efc34035c38829f64ee8f8b1b2d13925e1ac1e0:log:190', 'hash': '0x9ed8cb8326233a1b97243b447efc34035c38829f64ee8f8b1b2d13925e1ac1e0', 'from': '0x9e59a5b25bb1577573119573b1fff9d4c898ef5d', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 3421.83576861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb97f82bde34cccd400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x26f915caad650259099df3236ff969ba212a169d4adbfb48f5e8ea248e1d5db9:log:191', 'hash': '0x26f915caad650259099df3236ff969ba212a169d4adbfb48f5e8ea248e1d5db9', 'from': '0x1fa670e1b5b89ca468b655acb80e2553c58d82df', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 11500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x026f6a8f4e6380300000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16716', 'uniqueId': '0x381331b08822472634f743199f9f94ed9e2e48e1884e9066804f0b09ba156123:log:150', 'hash': '0x381331b08822472634f743199f9f94ed9e2e48e1884e9066804f0b09ba156123', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 43769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0944b8e501e638440000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:29:05.000Z'}}, {'blockNum': '0xb16719', 'uniqueId': '0x48b1ff10a45ef8e06d4d5b70f612b98fbced602bc423c63affbfe9b20d7412f8:log:96', 'hash': '0x48b1ff10a45ef8e06d4d5b70f612b98fbced602bc423c63affbfe9b20d7412f8', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 41567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08cd5a017c98661c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:29:32.000Z'}}, {'blockNum': '0xb16779', 'uniqueId': '0xab649e0c7d2753214c65b6ba633b8527869dee4f9b96cabfbe27156da7f49d6c:log:76', 'hash': '0xab649e0c7d2753214c65b6ba633b8527869dee4f9b96cabfbe27156da7f49d6c', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 20555.12429859879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x045a4ba743dc0d400000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:47:55.000Z'}}, {'blockNum': '0xb16786', 'uniqueId': '0x17aa37c3591869121be6a74d531a2212778b7042e3f671981c4de341524de07a:log:135', 'hash': '0x17aa37c3591869121be6a74d531a2212778b7042e3f671981c4de341524de07a', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0000000000000eb4ec62758aae93400b3e5f7f18', 'value': 2265.946852038697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7ad654606da12cb904', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:49:39.000Z'}}, {'blockNum': '0xb16786', 'uniqueId': '0x17aa37c3591869121be6a74d531a2212778b7042e3f671981c4de341524de07a:log:139', 'hash': '0x17aa37c3591869121be6a74d531a2212778b7042e3f671981c4de341524de07a', 'from': '0x0000000000000eb4ec62758aae93400b3e5f7f18', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2265.946852038697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7ad654606da12cb904', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:49:39.000Z'}}, {'blockNum': '0xb1678e', 'uniqueId': '0x2ebd8c3bd953dffdab9811d4ea6af14ffca8e3eed64b467853f8be82282a3b57:log:110', 'hash': '0x2ebd8c3bd953dffdab9811d4ea6af14ffca8e3eed64b467853f8be82282a3b57', 'from': '0xd4fd094ce623fb0f0df42ca148ad05cec5e98737', 'to': '0x61484516f836c8a385d77674d7d87cc92b46e53f', 'value': 940.49579743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x32fc0048cd62e39c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:51:34.000Z'}}, {'blockNum': '0xb1679a', 'uniqueId': '0x831beb2c0b13d645011a8b5206abffe43ba2393d92f7522a0ac059592dc4d719:log:153', 'hash': '0x831beb2c0b13d645011a8b5206abffe43ba2393d92f7522a0ac059592dc4d719', 'from': '0x61484516f836c8a385d77674d7d87cc92b46e53f', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 940.49579743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x32fc0048cd62e39c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:55:19.000Z'}}, {'blockNum': '0xb167bd', 'uniqueId': '0x7bc126bf1c0b304ce450c75df3cc8dce5ebe1749c1d4bc9df6e83952505451ae:log:108', 'hash': '0x7bc126bf1c0b304ce450c75df3cc8dce5ebe1749c1d4bc9df6e83952505451ae', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08cd5a017c98661c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T10:02:36.000Z'}}, {'blockNum': '0xb167d4', 'uniqueId': '0x04e813dd3740361ff710708d2f16646cb111d13d397a0e0162c3446e1549205d:log:49', 'hash': '0x04e813dd3740361ff710708d2f16646cb111d13d397a0e0162c3446e1549205d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8f3f0eb2cff3f038438ebc3503e6b0acbc7270e0', 'value': 1769.84833314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x5ff19461eeb6e84800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T10:06:57.000Z'}}, {'blockNum': '0xb16838', 'uniqueId': '0xb73e5429af1e9f047a82aaade629892d9ebef5f68912c24daba8cc262cab44c7:log:108', 'hash': '0xb73e5429af1e9f047a82aaade629892d9ebef5f68912c24daba8cc262cab44c7', 'from': '0x453675469e49f72c8834d72e061abe0bb1e9e5f0', 'to': '0x9ffb03301fa801068509a715799be56e036f026c', 'value': 4947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x010c2d6a91abb16c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T10:29:15.000Z'}}, {'blockNum': '0xb168ef', 'uniqueId': '0xd9982c71f6182f48e22fdfcbaedd10a529a36db5e4ec536fd101c8f2f9200dca:log:89', 'hash': '0xd9982c71f6182f48e22fdfcbaedd10a529a36db5e4ec536fd101c8f2f9200dca', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x27619acbb4f7a72cdb637a93a4e08903e19b6e0a', 'value': 9910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x021938e08e91d9180000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T11:08:38.000Z'}}, {'blockNum': '0xb1691f', 'uniqueId': '0xf255cdf675c2707d62b5a4b1ddc96349814032845c16bb9529fa5b58214ab2e5:log:90', 'hash': '0xf255cdf675c2707d62b5a4b1ddc96349814032845c16bb9529fa5b58214ab2e5', 'from': '0x27619acbb4f7a72cdb637a93a4e08903e19b6e0a', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 9910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x021938e08e91d9180000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T11:19:07.000Z'}}, {'blockNum': '0xb16936', 'uniqueId': '0x8227aef8efeb50a305cf015625c0b407c7a4a3441ece9bcf363c6e035742a82a:log:16', 'hash': '0x8227aef8efeb50a305cf015625c0b407c7a4a3441ece9bcf363c6e035742a82a', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 25351.266043208307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x055e4b7da588adc00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T11:22:26.000Z'}}, {'blockNum': '0xb169ae', 'uniqueId': '0xcf4abaade42816e40ec5a6041a2d53e9f7af05e6b202830cc14eae4d4de8989a:log:35', 'hash': '0xcf4abaade42816e40ec5a6041a2d53e9f7af05e6b202830cc14eae4d4de8989a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9d2ccedd926d6c3b464ed088471706c7c1706bae', 'value': 6246.549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0152a04813dd6f888000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T11:49:48.000Z'}}, {'blockNum': '0xb16a21', 'uniqueId': '0x0085efce426c82c027ba7eda08dc198c028cd305de0987a98150957f728648e6:log:279', 'hash': '0x0085efce426c82c027ba7eda08dc198c028cd305de0987a98150957f728648e6', 'from': '0xcf87be32ea6c1f558121a02f70265812b9a7e0cb', 'to': '0x1db1d9f0b754d582e0272508888ff3d6b2dea555', 'value': 10669.22531983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0242613ebc682e945c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T12:13:29.000Z'}}, {'blockNum': '0xb16b8a', 'uniqueId': '0xe512212cd31a6a45359fb91c23d84ecb94b415c83711407d8e76e3d5b5d90162:log:111', 'hash': '0xe512212cd31a6a45359fb91c23d84ecb94b415c83711407d8e76e3d5b5d90162', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0xdd8745c5f92b39c678d09a65498a145457781316', 'value': 305.99308909658237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x109681d54ffe3eccf4', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T13:33:49.000Z'}}, {'blockNum': '0xb16bab', 'uniqueId': '0x59dada1d9a693f01886b4c438696ac08c0490fdad6db5c84b217d8a91170689a:log:169', 'hash': '0x59dada1d9a693f01886b4c438696ac08c0490fdad6db5c84b217d8a91170689a', 'from': '0x58e5bf4cad53c5bb72bd380bf268aee450292419', 'to': '0x60bd5b67ce8ff6cfad6a6a531a8406d2cbfa4423', 'value': 52990.27042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b389bba908135614000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T13:41:34.000Z'}}, {'blockNum': '0xb16beb', 'uniqueId': '0x5baa35c072c2e9f5109cbb2613da9594ebc4069d8fd03d18928a853d9e673010:log:24', 'hash': '0x5baa35c072c2e9f5109cbb2613da9594ebc4069d8fd03d18928a853d9e673010', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 31839.02915142408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06bdff4a62d0632882be', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T13:54:54.000Z'}}, {'blockNum': '0xb16c25', 'uniqueId': '0xec1c24aafc6cd2d92d7d1c4a74db8bfeb643afbe9bd5f680c31a7081fc68a172:log:27', 'hash': '0xec1c24aafc6cd2d92d7d1c4a74db8bfeb643afbe9bd5f680c31a7081fc68a172', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 12456.42640293492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02a343a4787e64ab14e2', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:05:11.000Z'}}, {'blockNum': '0xb16c55', 'uniqueId': '0xf8d09f9c4ad235411f50c3a55635fd3438f771322e0a2f2120d3bdc6b7ebd1cc:log:226', 'hash': '0xf8d09f9c4ad235411f50c3a55635fd3438f771322e0a2f2120d3bdc6b7ebd1cc', 'from': '0x60bd5b67ce8ff6cfad6a6a531a8406d2cbfa4423', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 52990.27042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b389bba908135614000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:14:43.000Z'}}, {'blockNum': '0xb16c5c', 'uniqueId': '0xe68b2c294ae1f4def92325a9d11f58b48b8bbe2d150cfa8323a4d31dedd1987b:log:91', 'hash': '0xe68b2c294ae1f4def92325a9d11f58b48b8bbe2d150cfa8323a4d31dedd1987b', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 52990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b3897f9d6f28d380000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:17:15.000Z'}}, {'blockNum': '0xb16c5e', 'uniqueId': '0x41ecbd8bf6c145f8e5c2aa65fe75c4bfb0d1846dd736134b88e7b3f99c1d0ef0:log:309', 'hash': '0x41ecbd8bf6c145f8e5c2aa65fe75c4bfb0d1846dd736134b88e7b3f99c1d0ef0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 47190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09fe2cce80aa1b980000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:17:37.000Z'}}, {'blockNum': '0xb16c9a', 'uniqueId': '0xa5e4c03f875fb1044875e7429472f40b299c26cfd49d75db0a141adbb446ab44:log:87', 'hash': '0xa5e4c03f875fb1044875e7429472f40b299c26cfd49d75db0a141adbb446ab44', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7aa1c67ee350f8128c9e6b1af587cac9d30371e2', 'value': 26441.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05996338fccef27f0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:30:29.000Z'}}, {'blockNum': '0xb16c9d', 'uniqueId': '0x8da90c3c23ef48c360c519617151699fc41feb55d02385918df0c169d494e33c:log:134', 'hash': '0x8da90c3c23ef48c360c519617151699fc41feb55d02385918df0c169d494e33c', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09fe2cce80aa1b980000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:31:24.000Z'}}, {'blockNum': '0xb16cb2', 'uniqueId': '0xe5d65063ea7548326c7df3d2f77b5c1f8569bfa57d351f9fe95fd3efb44199ab:log:93', 'hash': '0xe5d65063ea7548326c7df3d2f77b5c1f8569bfa57d351f9fe95fd3efb44199ab', 'from': '0x79afa7098d254a1ac6ced66d80f4cabcc5d7565c', 'to': '0xaa6fc6923cb222df4f4f96c972c0141023d60b30', 'value': 6256.599509632082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01532bc2a9201f6d106d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:34:48.000Z'}}, {'blockNum': '0xb16cca', 'uniqueId': '0x277e2281f4868b32608a8ef160b6af7a2283c0b5f6561051aae4725b9d0b04ad:log:37', 'hash': '0x277e2281f4868b32608a8ef160b6af7a2283c0b5f6561051aae4725b9d0b04ad', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 36429.77638458345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07b6dcb4e08d1a730a1a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:39:34.000Z'}}, {'blockNum': '0xb16ccb', 'uniqueId': '0x05983bb515556e8a8d06638c3e69e440a95a56fa9b2c3d8ac90bf54d892c3a5c:log:81', 'hash': '0x05983bb515556e8a8d06638c3e69e440a95a56fa9b2c3d8ac90bf54d892c3a5c', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 36356.91683181428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07b2e993bf5586800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:39:52.000Z'}}, {'blockNum': '0xb16ccf', 'uniqueId': '0x9f22f490785d03354690c20cac14ce381e4ade8347e1f456df1c9e3e9a3833ee:log:236', 'hash': '0x9f22f490785d03354690c20cac14ce381e4ade8347e1f456df1c9e3e9a3833ee', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 14569.860652955971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0315d56f3d6eed8ac93f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:40:44.000Z'}}, {'blockNum': '0xb16cd7', 'uniqueId': '0x9e1f21211d7d8829bdf215136e99c1608becba41743e07792726b20ab98c4b2a:log:259', 'hash': '0x9e1f21211d7d8829bdf215136e99c1608becba41743e07792726b20ab98c4b2a', 'from': '0x87bc8ba9b0accbb61e70ddd8cd139446561433fa', 'to': '0x78566a0be290706fcd275f5af016f34b6618a711', 'value': 7073.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x017f7a7fdfb66b010000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:42:01.000Z'}}, {'blockNum': '0xb16cd9', 'uniqueId': '0xc2dddf0bea26e503ca31aaf3766a88968a602d2a1cc1b212c08164d988fc9631:log:6', 'hash': '0xc2dddf0bea26e503ca31aaf3766a88968a602d2a1cc1b212c08164d988fc9631', 'from': '0x78566a0be290706fcd275f5af016f34b6618a711', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 7073.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x017f7a7fdfb66b010000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:42:48.000Z'}}, {'blockNum': '0xb16cdc', 'uniqueId': '0x243a79d03e1b1835f0fdcace47100f18bb02b6ef2f555234c76779cf499f012d:log:72', 'hash': '0x243a79d03e1b1835f0fdcace47100f18bb02b6ef2f555234c76779cf499f012d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x2ab26a16e7f6e1e331254bd6708797635f2a6e0e', 'value': 35691.96627059268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078edd88caf64c5093c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:43:22.000Z'}}, {'blockNum': '0xb16cdc', 'uniqueId': '0xbffa59371ab34367c0dfd90ca06aafd80cc9c071131b320623de99c733818bcf:log:81', 'hash': '0xbffa59371ab34367c0dfd90ca06aafd80cc9c071131b320623de99c733818bcf', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 24557.489411580515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x053343a08cad6103c30b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:43:22.000Z'}}, {'blockNum': '0xb16cdc', 'uniqueId': '0xbffa59371ab34367c0dfd90ca06aafd80cc9c071131b320623de99c733818bcf:log:87', 'hash': '0xbffa59371ab34367c0dfd90ca06aafd80cc9c071131b320623de99c733818bcf', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 24557.489411580515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x053343a08cad6103c30b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:43:22.000Z'}}, {'blockNum': '0xb16ce0', 'uniqueId': '0xb6255b4a18c893a35bee2bda3d90b4fe7890e7e3b24d3f6caaf6aa7d8dcc4f71:log:35', 'hash': '0xb6255b4a18c893a35bee2bda3d90b4fe7890e7e3b24d3f6caaf6aa7d8dcc4f71', 'from': '0x2ab26a16e7f6e1e331254bd6708797635f2a6e0e', 'to': '0x5a8490dccfe4fef824df37b3e133d9c4537e9751', 'value': 35691.96627059268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078edd88caf64c5093c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:44:00.000Z'}}, {'blockNum': '0xb16cec', 'uniqueId': '0x7b3a0d15df6a964fe6743611769c05da011644b2edc3f758d4f5372157ff644e:log:147', 'hash': '0x7b3a0d15df6a964fe6743611769c05da011644b2edc3f758d4f5372157ff644e', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 46292.97320847457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09cd8c0f266c79ec02b8', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:47:00.000Z'}}, {'blockNum': '0xb16cf6', 'uniqueId': '0x19c802b604f7c79933eb3e3783b077ffc374f34228c0914681103f8a8ad18bd0:log:1', 'hash': '0x19c802b604f7c79933eb3e3783b077ffc374f34228c0914681103f8a8ad18bd0', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 49104.44829158528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0a65f51d22adf58712c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:49:15.000Z'}}, {'blockNum': '0xb16cf6', 'uniqueId': '0xc51bfde57dc9a7ca4c5518fe42a6e9a0ec23199383d4b230b24d361ce56bb83f:log:8', 'hash': '0xc51bfde57dc9a7ca4c5518fe42a6e9a0ec23199383d4b230b24d361ce56bb83f', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 23176.917606639323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04e86c5836aa8982c7d3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:49:15.000Z'}}, {'blockNum': '0xb16cf7', 'uniqueId': '0xbf90e675376380a0669914bf78b8caab61ad7ca293dae42074402d8967f8bfbe:log:44', 'hash': '0xbf90e675376380a0669914bf78b8caab61ad7ca293dae42074402d8967f8bfbe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71d1d49a0690062843a65a872ba2329c4e07b0f8', 'value': 33806.961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0728add4c88b449e8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:49:29.000Z'}}, {'blockNum': '0xb16cf8', 'uniqueId': '0x3696ef8a1ae07abdda196403b9c042ec1e5fb421096aed23faa17da4886dd86c:log:140', 'hash': '0x3696ef8a1ae07abdda196403b9c042ec1e5fb421096aed23faa17da4886dd86c', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 46292.97320847457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09cd8c0f266c79ec02b8', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:50:03.000Z'}}, {'blockNum': '0xb16d26', 'uniqueId': '0x644d12479d3c798af80ad1baf947829de4af00a77f1c8225091a59568e1ae8c4:log:25', 'hash': '0x644d12479d3c798af80ad1baf947829de4af00a77f1c8225091a59568e1ae8c4', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 67787.69925686107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e5ac74e677de7b86b6b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:13.000Z'}}, {'blockNum': '0xb16d26', 'uniqueId': '0xb94296555ac35f61074f199694f51f075204a449b9a7ad8cf23cc384db35514d:log:132', 'hash': '0xb94296555ac35f61074f199694f51f075204a449b9a7ad8cf23cc384db35514d', 'from': '0xacf98af36845ec9aeda29feed2907ea287388cf3', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 2049.8109160877425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6f1ed747d16fee13b0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:13.000Z'}}, {'blockNum': '0xb16d26', 'uniqueId': '0x212d796432d70553ed09290cfec8245b2cd0b4096daee9141e01f0cd1c470d95:log:143', 'hash': '0x212d796432d70553ed09290cfec8245b2cd0b4096daee9141e01f0cd1c470d95', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 20705.606359354104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04627402f0d41282084d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:13.000Z'}}, {'blockNum': '0xb16d27', 'uniqueId': '0x18c31da6426274b2288451f38a6e4e9909e54ea6db5fb51bbf22ab1669e7d87e:log:15', 'hash': '0x18c31da6426274b2288451f38a6e4e9909e54ea6db5fb51bbf22ab1669e7d87e', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 24721.999765667548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x053c2eaabc1b3083d526', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:26.000Z'}}, {'blockNum': '0xb16d27', 'uniqueId': '0x318d49d60880707c81429660d92c7caba193a052eb529e323cf02e53512f48cb:log:22', 'hash': '0x318d49d60880707c81429660d92c7caba193a052eb529e323cf02e53512f48cb', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 67652.12385834736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e536dd1d4da53800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:26.000Z'}}, {'blockNum': '0xb16d28', 'uniqueId': '0x4290b35d88e4e4690a681b8b1ab30db3157966a44f29900514c0fd92017e6ad3:log:10', 'hash': '0x4290b35d88e4e4690a681b8b1ab30db3157966a44f29900514c0fd92017e6ad3', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 27025.678269718763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05b910a0de2104800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:43.000Z'}}, {'blockNum': '0xb16d29', 'uniqueId': '0xcdb4a822379e668cc4166aa4bb795b949e3235b9fe4a83a569c6ca6bea76aa96:log:15', 'hash': '0xcdb4a822379e668cc4166aa4bb795b949e3235b9fe4a83a569c6ca6bea76aa96', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 22531.87376558937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04c5749022d1e9b14d78', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:49.000Z'}}, {'blockNum': '0xb16d2a', 'uniqueId': '0xef1a618cf79d879f77783b4dfbcf4c3b612acff7d337c6c4c90e547e9d36e277:log:38', 'hash': '0xef1a618cf79d879f77783b4dfbcf4c3b612acff7d337c6c4c90e547e9d36e277', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 21869.983984904713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04a192ff42212f66162d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:58.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0x3ac244bda18c505fc123dee89c95513af2aac5ca97b64b8643ec46daa9b5edb0:log:34', 'hash': '0x3ac244bda18c505fc123dee89c95513af2aac5ca97b64b8643ec46daa9b5edb0', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'value': 31192.28622901671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069aefedf579b1e9f108', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0x3ac244bda18c505fc123dee89c95513af2aac5ca97b64b8643ec46daa9b5edb0:log:40', 'hash': '0x3ac244bda18c505fc123dee89c95513af2aac5ca97b64b8643ec46daa9b5edb0', 'from': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 31192.28622901671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069aefedf579b1e9f108', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0x12d34e3725d4ddf8720758fc50f0aaa6efc91ee80ede2081ad78f9ba92c1ef32:log:59', 'hash': '0x12d34e3725d4ddf8720758fc50f0aaa6efc91ee80ede2081ad78f9ba92c1ef32', 'from': '0x5a8490dccfe4fef824df37b3e133d9c4537e9751', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35691.96627059268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078edd88caf64c5093c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0xb3e84ab1518ac32dd1c20a04f56c9902446194060d21ada47cbfb78e75c9c22b:log:61', 'hash': '0xb3e84ab1518ac32dd1c20a04f56c9902446194060d21ada47cbfb78e75c9c22b', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46292.97320847457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09cd8c0f266c79ec02b8', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0xd067def21b666ed313891d5258192d103431b82ef8824f45ddcb9edec47c1714:log:64', 'hash': '0xd067def21b666ed313891d5258192d103431b82ef8824f45ddcb9edec47c1714', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13044.54206656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02c32563089724bb0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2c', 'uniqueId': '0x400356ab003b6cc205e786da77e0d000e70380d8bd61530d2886b79e45081377:log:12', 'hash': '0x400356ab003b6cc205e786da77e0d000e70380d8bd61530d2886b79e45081377', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x97f0b8d84194f1b1c57655e0dcc8ee6af1d6248d', 'value': 55424.72394904649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0bbc948eeae2897c75fb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:28.000Z'}}, {'blockNum': '0xb16d30', 'uniqueId': '0xe94ef044811022d3d9893635d7b3ea0585bac0ca18cf556703d4615f42aaa643:log:36', 'hash': '0xe94ef044811022d3d9893635d7b3ea0585bac0ca18cf556703d4615f42aaa643', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 47253.87353125692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0a01a33adeed1a35229e', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:02:20.000Z'}}, {'blockNum': '0xb16d92', 'uniqueId': '0x8c1cd4af0047ca78d9e0224abd819a125bf01e94579d7e921a746017166fc4ab:log:304', 'hash': '0x8c1cd4af0047ca78d9e0224abd819a125bf01e94579d7e921a746017166fc4ab', 'from': '0x3e9d321504e4c4bcdadd10ed64f1744bb739aa48', 'to': '0xf772cb614baa695d6ff475720dbee6279c84c9f4', 'value': 14240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0303f3b2c93f1a800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:21:52.000Z'}}, {'blockNum': '0xb16d95', 'uniqueId': '0x5b1b4239b23a88c94272dad072056a113fddb005cce4c4631de57d7f78b7ccad:log:24', 'hash': '0x5b1b4239b23a88c94272dad072056a113fddb005cce4c4631de57d7f78b7ccad', 'from': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'to': '0x080b52f3bda198c1443dbbfbb331fbec824e4068', 'value': 8252.34488935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01bf5c4a92111500bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:22:26.000Z'}}, {'blockNum': '0xb16d9f', 'uniqueId': '0x9221d69d22546fa08447812105c176fc4667ec0ab1b238c8c7c94b98cc41b3fb:log:12', 'hash': '0x9221d69d22546fa08447812105c176fc4667ec0ab1b238c8c7c94b98cc41b3fb', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 45444.55419305471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x099f8de14f0416cff544', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:18.000Z'}}, {'blockNum': '0xb16da0', 'uniqueId': '0xd3a8e72fb4dc45e081f4111259e58a5099731daf29b4a58dcc4c60306ca384f1:log:8', 'hash': '0xd3a8e72fb4dc45e081f4111259e58a5099731daf29b4a58dcc4c60306ca384f1', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 26495.637997984668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x059c54d78b42b2400000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:49.000Z'}}, {'blockNum': '0xb16da0', 'uniqueId': '0xe150269a33b0a7eed15ccfcf576bad924ebb42b498ef81ba13cc0b3e55247585:log:14', 'hash': '0xe150269a33b0a7eed15ccfcf576bad924ebb42b498ef81ba13cc0b3e55247585', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 45444.55419305471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x099f8de14f0416cff544', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:49.000Z'}}, {'blockNum': '0xb16da0', 'uniqueId': '0x01e23c24e2ae0aade376d0d0256bf779d4d84c8b635dfa043c32fde8e54b441d:log:295', 'hash': '0x01e23c24e2ae0aade376d0d0256bf779d4d84c8b635dfa043c32fde8e54b441d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x2ab26a16e7f6e1e331254bd6708797635f2a6e0e', 'value': 88038.88427176338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x12a498f46b2b351a7e20', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:49.000Z'}}, {'blockNum': '0xb16da1', 'uniqueId': '0x6750c8e8d7ffc1d5e3d7e9f2e69c70f487f383e3e7a39af2086d1390e4017e7f:log:8', 'hash': '0x6750c8e8d7ffc1d5e3d7e9f2e69c70f487f383e3e7a39af2086d1390e4017e7f', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 39743.456996976995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x086a7f4350e40b000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:57.000Z'}}, {'blockNum': '0xb16da4', 'uniqueId': '0xfc3620f4ff92abd4c4d71762419379b61e39f6883a4dc1197ec6d00544d57720:log:32', 'hash': '0xfc3620f4ff92abd4c4d71762419379b61e39f6883a4dc1197ec6d00544d57720', 'from': '0x2ab26a16e7f6e1e331254bd6708797635f2a6e0e', 'to': '0x5a8490dccfe4fef824df37b3e133d9c4537e9751', 'value': 88038.88427176338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x12a498f46b2b351a7e20', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:27:30.000Z'}}, {'blockNum': '0xb16db6', 'uniqueId': '0x1196ed97e2051ea79474a0175787d4a9dc6b9224d0228cfaa3bca2a45a3aa68b:log:6', 'hash': '0x1196ed97e2051ea79474a0175787d4a9dc6b9224d0228cfaa3bca2a45a3aa68b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x000906be4787eb60019d9e7b89ce1bd6908a4a15', 'value': 13953.28264537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02f468b21e4ddda64400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:30:37.000Z'}}, {'blockNum': '0xb16db9', 'uniqueId': '0x9d9fcb87057dad9314ac16c2d7b7a02f8262778d5ad5464674fda9bee14950a4:log:81', 'hash': '0x9d9fcb87057dad9314ac16c2d7b7a02f8262778d5ad5464674fda9bee14950a4', 'from': '0x5a8490dccfe4fef824df37b3e133d9c4537e9751', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 88038.88427176338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x12a498f46b2b351a7e20', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:31:08.000Z'}}, {'blockNum': '0xb16db9', 'uniqueId': '0xa76312d0a64bcdd87afa9260cb9af151a87c836b24e05ca1aa9204e22f21ad34:log:82', 'hash': '0xa76312d0a64bcdd87afa9260cb9af151a87c836b24e05ca1aa9204e22f21ad34', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49104.44829158528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0a65f51d22adf58712c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:31:08.000Z'}}, {'blockNum': '0xb16dc0', 'uniqueId': '0x19f4ff4cacca878835424f651a591f97409e361e3c28718f40c28dd09f4844df:log:25', 'hash': '0x19f4ff4cacca878835424f651a591f97409e361e3c28718f40c28dd09f4844df', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 20336.342963721887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x044e6f73d2f135b1a0af', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:33:51.000Z'}}, {'blockNum': '0xb16dc2', 'uniqueId': '0xb375650f9f80e9416a16fcc306d0858d18b01a30468d8b73e8b0db8008e7645c:log:8', 'hash': '0xb375650f9f80e9416a16fcc306d0858d18b01a30468d8b73e8b0db8008e7645c', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 35673.431698790104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078ddc50c41ba8084594', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:34:08.000Z'}}, {'blockNum': '0xb16dc2', 'uniqueId': '0x4e7826efa953dbec7206424e0c2cbe23767d8d842f844555e940573a8a8b15c7:log:203', 'hash': '0x4e7826efa953dbec7206424e0c2cbe23767d8d842f844555e940573a8a8b15c7', 'from': '0xd06cfbb59d2e8918f84d99d981039d7706dca288', 'to': '0x4243d27518c4922ff04f2635dcb7a97bbd2499c8', 'value': 8100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01b71a14cc5c58100000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:34:08.000Z'}}, {'blockNum': '0xb16dc5', 'uniqueId': '0x76ed64fb11bdcb195150f977ea05683813774cf52cab4995b61a51a9ed3f0a7a:log:49', 'hash': '0x76ed64fb11bdcb195150f977ea05683813774cf52cab4995b61a51a9ed3f0a7a', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 35673.431698790104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078ddc50c41ba8084594', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:35:30.000Z'}}, {'blockNum': '0xb16dc7', 'uniqueId': '0xe2cbd0d1a4a00cb1037ae58c093514a06a848319b79a544e560eddf9b44e2da9:log:0', 'hash': '0xe2cbd0d1a4a00cb1037ae58c093514a06a848319b79a544e560eddf9b44e2da9', 'from': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'to': '0x8df42c6216ce86945807364fbc75b11a6a862527', 'value': 1089.81520616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3b143963ea01e6a000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:35:43.000Z'}}, {'blockNum': '0xb16dc8', 'uniqueId': '0xe48b2fa116a6f78d5df2a9694d39f08582a3c499a436d078be1a7daa5be8d1eb:log:79', 'hash': '0xe48b2fa116a6f78d5df2a9694d39f08582a3c499a436d078be1a7daa5be8d1eb', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 28735.411421573222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0615bff1392fa68298f1', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:35:47.000Z'}}, {'blockNum': '0xb16ddc', 'uniqueId': '0x84ff38bc7fa3451bea2e7a1b18fc0cea30c4add1e7cd81d1eb4b77e13f88dc63:log:256', 'hash': '0x84ff38bc7fa3451bea2e7a1b18fc0cea30c4add1e7cd81d1eb4b77e13f88dc63', 'from': '0x6a71a2483254bf17ddd5f8698a8b3525e3c3187e', 'to': '0xdae1739d01df26a8d9cd63a9b3abf7c244d21954', 'value': 4481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xf2ea5dfea4fd640000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:40:28.000Z'}}, {'blockNum': '0xb16deb', 'uniqueId': '0xbcd51a976b4165b49a19ce497866d8b265e1ecf9f5457d24fc98667cbb0a86fc:log:52', 'hash': '0xbcd51a976b4165b49a19ce497866d8b265e1ecf9f5457d24fc98667cbb0a86fc', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 26445.371838107636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05999b42452c84c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:42:25.000Z'}}, {'blockNum': '0xb16e0b', 'uniqueId': '0xb0ddace1820ca8e2a119f6cc5226531bd019597487f57f9ba15cda6a03843c56:log:141', 'hash': '0xb0ddace1820ca8e2a119f6cc5226531bd019597487f57f9ba15cda6a03843c56', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7de46ae81b2b961e444a7e45a4026accb098b0a2', 'value': 1093.70342035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3b4a2f1a1e877bec00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:50:31.000Z'}}, {'blockNum': '0xb16e0d', 'uniqueId': '0x0c1b0656f7ea50442c97536735b85f7de9a50cdaec15f8ac9239cd4f2a14ec1d:log:186', 'hash': '0x0c1b0656f7ea50442c97536735b85f7de9a50cdaec15f8ac9239cd4f2a14ec1d', 'from': '0x91db806cc7d001043653de9773e8d9c0235bfb33', 'to': '0xdae1739d01df26a8d9cd63a9b3abf7c244d21954', 'value': 4416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xef644f9b077d000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:51:21.000Z'}}, {'blockNum': '0xb16e1c', 'uniqueId': '0x75ac5bfe2d1cf90e23f1af717a63330bcfc3b4a4d05e4e79cde2617aa0a0dc05:log:81', 'hash': '0x75ac5bfe2d1cf90e23f1af717a63330bcfc3b4a4d05e4e79cde2617aa0a0dc05', 'from': '0xa7d1d040a4a37872badab0c7c9f68274ef84a138', 'to': '0x63f2db6f7ddbee712778c4bd390d525b4d545771', 'value': 20182.95133457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04461eb748eea8fe2400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:54:43.000Z'}}, {'blockNum': '0xb16e33', 'uniqueId': '0xe5acbe845cb1721fd55a55d7b6cb3d6e89558a12489580e296d80adda8d464d5:log:150', 'hash': '0xe5acbe845cb1721fd55a55d7b6cb3d6e89558a12489580e296d80adda8d464d5', 'from': '0x8bad18aeb13a87ea527cb12c75008ed4c6357841', 'to': '0x0f6b5e135874dc17f42b335a9f0b83929fe65ea2', 'value': 14628.03682852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0318fcca88e0d2441000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:58:59.000Z'}}, {'blockNum': '0xb16e3c', 'uniqueId': '0x764f9ee93c7a87e2be6e02a7475c08afd00171d1f17d82a020692c74056383ae:log:214', 'hash': '0x764f9ee93c7a87e2be6e02a7475c08afd00171d1f17d82a020692c74056383ae', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35673.431698790104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078ddc50c41ba8084594', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:01:05.000Z'}}, {'blockNum': '0xb16e40', 'uniqueId': '0x3d1758d49b27572ce6ae5ddd172f91abc5c44310aa75eca89248387f66b2103b:log:52', 'hash': '0x3d1758d49b27572ce6ae5ddd172f91abc5c44310aa75eca89248387f66b2103b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc3f6670275caa23930cecd8e557da350752db84f', 'value': 578.22863294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f5888c612846f3800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:02:34.000Z'}}, {'blockNum': '0xb16e41', 'uniqueId': '0x91a255cba4589694f169fce67a02e5304402e934726c78a17a7c57a91b56f6e4:log:257', 'hash': '0x91a255cba4589694f169fce67a02e5304402e934726c78a17a7c57a91b56f6e4', 'from': '0x2a859e4a3c2ef3babe741c4e4c66f9ab7362c42a', 'to': '0x32875b3b6cedf78743de48d4c5f5758a31d1b8ae', 'value': 73115.76880247258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f7b9d1ff5e7363611f0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:02:54.000Z'}}, {'blockNum': '0xb16e43', 'uniqueId': '0xc68837d2e72a3d1046d0bd9fa2dd1a373a95445688a4a127908530c451d52130:log:205', 'hash': '0xc68837d2e72a3d1046d0bd9fa2dd1a373a95445688a4a127908530c451d52130', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x3f64333d8d2b86a77f436dce43cf2059b93d9ac6', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:03:31.000Z'}}, {'blockNum': '0xb16e52', 'uniqueId': '0xd825f9677d9a568e1af260c39dba8fbba698a960bb6242acd400ed19049ac892:log:70', 'hash': '0xd825f9677d9a568e1af260c39dba8fbba698a960bb6242acd400ed19049ac892', 'from': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'to': '0x21d3cfe9af26a13041d92c9df18bacac828fffec', 'value': 1071.47830177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3a15bf9e8643a66400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:05:51.000Z'}}, {'blockNum': '0xb16e52', 'uniqueId': '0x6b279ece08381ea3755ef66134e6bece30d8b596c8fea7dfb625738c2be90c4e:log:90', 'hash': '0x6b279ece08381ea3755ef66134e6bece30d8b596c8fea7dfb625738c2be90c4e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xe8c53d3086c28b59b044a965b93dfd9bcd7e8372', 'value': 53373.0379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b4d5bb1d39360d0c000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:05:51.000Z'}}, {'blockNum': '0xb16e7a', 'uniqueId': '0x53bd184f7a5d411398ac61a69ae95d653ca8e8f423f5abf82d7b0c21787d5352:log:94', 'hash': '0x53bd184f7a5d411398ac61a69ae95d653ca8e8f423f5abf82d7b0c21787d5352', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x13dc08f5ddbcbfdf6ebc04c909c3052a2aa7a111', 'value': 78596.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x10a4b9f73cbcac850000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:18:08.000Z'}}, {'blockNum': '0xb16e97', 'uniqueId': '0x63bb0293901ea5ef7e223cbc4a49a51e59872a482b90f8a92ca538bdf71d8d76:log:73', 'hash': '0x63bb0293901ea5ef7e223cbc4a49a51e59872a482b90f8a92ca538bdf71d8d76', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x68a5d88c4e01947f35be9078c8b25b2a2cde0575', 'value': 6041.94423473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x014788d1ede4f900a400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:24:09.000Z'}}, {'blockNum': '0xb16eb6', 'uniqueId': '0xa5eea6678974e7bac00cc2478b87bbaf1bf6021b3bfd5dfb33da3932e53502e1:log:54', 'hash': '0xa5eea6678974e7bac00cc2478b87bbaf1bf6021b3bfd5dfb33da3932e53502e1', 'from': '0x32875b3b6cedf78743de48d4c5f5758a31d1b8ae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 73115.76880247258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f7b9d1ff5e7363611f0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:31:16.000Z'}}, {'blockNum': '0xb16ebd', 'uniqueId': '0xa1a76d9387467d8114e13b74b2c84b17872e2bc0885e5f2a6be0c6c50d7b2a2e:log:186', 'hash': '0xa1a76d9387467d8114e13b74b2c84b17872e2bc0885e5f2a6be0c6c50d7b2a2e', 'from': '0x13dc08f5ddbcbfdf6ebc04c909c3052a2aa7a111', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 78650.56667145884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x10a7a7e00f215925132e', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:32:55.000Z'}}, {'blockNum': '0xb16ebd', 'uniqueId': '0xb7301d23739e546bc0fa5ea8c81553ae93195e7d87cfee64eab8c592cb87afe5:log:195', 'hash': '0xb7301d23739e546bc0fa5ea8c81553ae93195e7d87cfee64eab8c592cb87afe5', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 32854.86780961377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06f510e2484b2cecddbc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:32:55.000Z'}}, {'blockNum': '0xb16ebd', 'uniqueId': '0x08106d1f16b851e894e5468370e0bb910b6089f49a6542733bacf346f5f1fac5:log:206', 'hash': '0x08106d1f16b851e894e5468370e0bb910b6089f49a6542733bacf346f5f1fac5', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'value': 23683.15208772521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0503ddc261118c2aaaaa', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:32:55.000Z'}}, {'blockNum': '0xb16ebe', 'uniqueId': '0xfa4c3f339052a751edcfc9f5375fd0d59b2b41298fa5644629b12e479ff96fb0:log:4', 'hash': '0xfa4c3f339052a751edcfc9f5375fd0d59b2b41298fa5644629b12e479ff96fb0', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 26717.6542009144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05a85def8b8869c3ed3a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:32:56.000Z'}}, {'blockNum': '0xb16ebf', 'uniqueId': '0x63807f3efbb5256d472469f3741ff011f0baf12e67fd1f0944948e908a0aaa39:log:5', 'hash': '0x63807f3efbb5256d472469f3741ff011f0baf12e67fd1f0944948e908a0aaa39', 'from': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 23683.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0503ddbaf64b247b0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:33:01.000Z'}}, {'blockNum': '0xb16ee4', 'uniqueId': '0x126d8548a83d499314c60c59f767ac8c8975202daa78661dbdadcb78121c8631:log:183', 'hash': '0x126d8548a83d499314c60c59f767ac8c8975202daa78661dbdadcb78121c8631', 'from': '0x4281596933f41572693346fda1b93680bd37540c', 'to': '0x565350a3e0be1f2964a98f3a34461eb6eb98da98', 'value': 2698.424132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9248285330b1c84000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:42:25.000Z'}}, {'blockNum': '0xb16efd', 'uniqueId': '0x3fd9ed76265f96fd4d0a0e8277154dd6fe31e1a5d9ce057895662d60526f222d:log:58', 'hash': '0x3fd9ed76265f96fd4d0a0e8277154dd6fe31e1a5d9ce057895662d60526f222d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 15772.62052482398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03570914b067008f39e3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:48:34.000Z'}}, {'blockNum': '0xb16f10', 'uniqueId': '0x535c175714c9d02a97baf4098782153505864e32f56eb6b3ef2dcbb981e11898:log:9', 'hash': '0x535c175714c9d02a97baf4098782153505864e32f56eb6b3ef2dcbb981e11898', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 33862.33084943823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x072bae3e013efd503cad', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:52:19.000Z'}}, {'blockNum': '0xb16f10', 'uniqueId': '0x640f0208682e61c6cb1faaf89b128143cfa889d41e5e65be6e01d402f5f99b55:log:109', 'hash': '0x640f0208682e61c6cb1faaf89b128143cfa889d41e5e65be6e01d402f5f99b55', 'from': '0xf092032446bc5a368832c2eeb50d56272e2ee449', 'to': '0xabf88bf1513449b01fbbb6af049bdd6f284747d8', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0c7e657b0c9a4ee00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:52:19.000Z'}}, {'blockNum': '0xb16f12', 'uniqueId': '0xb33e190966a506d0f69d20393660aa2ead392b4f72e9bf4789c989b47222c7c1:log:263', 'hash': '0xb33e190966a506d0f69d20393660aa2ead392b4f72e9bf4789c989b47222c7c1', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 25982.03291451631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05807d23bd0adbadd33c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:53:24.000Z'}}, {'blockNum': '0xb16f12', 'uniqueId': '0xb33e190966a506d0f69d20393660aa2ead392b4f72e9bf4789c989b47222c7c1:log:266', 'hash': '0xb33e190966a506d0f69d20393660aa2ead392b4f72e9bf4789c989b47222c7c1', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 25982.03291451631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05807d23bd0adbadd33c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:53:24.000Z'}}, {'blockNum': '0xb16f1a', 'uniqueId': '0x3ee35e9caa124eb63a0333bbcfaa3d1e431c4fdc68ceab7094282b7dbd6d8eb5:log:145', 'hash': '0x3ee35e9caa124eb63a0333bbcfaa3d1e431c4fdc68ceab7094282b7dbd6d8eb5', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x15b4d77b7b4ebd9b8a359d76734ac7939138f5ab', 'value': 63426.62946455771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0d6e5d4e195476b55f04', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:56:03.000Z'}}, {'blockNum': '0xb16f1a', 'uniqueId': '0x5903199efb4b324be9f1e8b0e04d1f4c68de839f2776b5795dba5a346b8d04c0:log:148', 'hash': '0x5903199efb4b324be9f1e8b0e04d1f4c68de839f2776b5795dba5a346b8d04c0', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 38539.219144646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0829371b0685ab800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:56:03.000Z'}}, {'blockNum': '0xb16f1c', 'uniqueId': '0xa6f0c624688160020f6b1694b3cf68c8efeebbf9d07223d7a0024248b5a1451c:log:1', 'hash': '0xa6f0c624688160020f6b1694b3cf68c8efeebbf9d07223d7a0024248b5a1451c', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 33862.33084943823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x072bae3e013efd503cad', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:56:12.000Z'}}, {'blockNum': '0xb16f29', 'uniqueId': '0xda40e4becb86d667d3edc86b4b94ff59249d905d113729e787539001d5ff49e3:log:21', 'hash': '0xda40e4becb86d667d3edc86b4b94ff59249d905d113729e787539001d5ff49e3', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 33888.15979497654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x072d14b0da5d931fd448', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:59:04.000Z'}}, {'blockNum': '0xb16f2e', 'uniqueId': '0x1d1359bf9986cf76710fd62a7015679e9938359187700c8a954e78f517d70c8b:log:19', 'hash': '0x1d1359bf9986cf76710fd62a7015679e9938359187700c8a954e78f517d70c8b', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 31426.306661461713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06a79f9d8ce4058956c9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:00:12.000Z'}}, {'blockNum': '0xb16f2f', 'uniqueId': '0xa6074fe43c3eaf36b08e7f99f37da0e724ba1315f9ed22f507903e373f48a48a:log:63', 'hash': '0xa6074fe43c3eaf36b08e7f99f37da0e724ba1315f9ed22f507903e373f48a48a', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 33888.15979497654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x072d14b0da5d931fd448', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:00:22.000Z'}}, {'blockNum': '0xb16f31', 'uniqueId': '0x3c6d2114ad50ae016af3b0061a11297089449c78b091abb09b9d0529418fa3e2:log:113', 'hash': '0x3c6d2114ad50ae016af3b0061a11297089449c78b091abb09b9d0529418fa3e2', 'from': '0xabf88bf1513449b01fbbb6af049bdd6f284747d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0c7e657b0c9a4ee00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:01:20.000Z'}}, {'blockNum': '0xb16f34', 'uniqueId': '0xc7509b7aaa686001584d2bdc4cd6c4641d4666800db99a5213b1bf5f66218b4d:log:85', 'hash': '0xc7509b7aaa686001584d2bdc4cd6c4641d4666800db99a5213b1bf5f66218b4d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 32897.80778509671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06f764cbb87d59653bca', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:01:35.000Z'}}, {'blockNum': '0xb16f34', 'uniqueId': '0x4f284a9b131630fb2bcd8afffe63f447e497b7175fb44a67e930a30a51ddb694:log:93', 'hash': '0x4f284a9b131630fb2bcd8afffe63f447e497b7175fb44a67e930a30a51ddb694', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 31363.454048138792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06a4375c3614b7c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:01:35.000Z'}}, {'blockNum': '0xb16f3a', 'uniqueId': '0x71a9eabdfcbef944759fabe9f6d4f24483de67b648095c33977757972fd5e1b4:log:194', 'hash': '0x71a9eabdfcbef944759fabe9f6d4f24483de67b648095c33977757972fd5e1b4', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x15b4d77b7b4ebd9b8a359d76734ac7939138f5ab', 'value': 60607.49143899191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0cd589e7df82e10c24a3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:02:44.000Z'}}, {'blockNum': '0xb16f3a', 'uniqueId': '0xa07f258a1871038ac1ec72218febc8721c4a72baeea8891db529fdd8e47cb66c:log:198', 'hash': '0xa07f258a1871038ac1ec72218febc8721c4a72baeea8891db529fdd8e47cb66c', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x7c651d7084b4ba899391d2d4d5d3d47fff823351', 'value': 22452.035931622697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04c120972bd38564a716', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:02:44.000Z'}}, {'blockNum': '0xb16f3a', 'uniqueId': '0xa07f258a1871038ac1ec72218febc8721c4a72baeea8891db529fdd8e47cb66c:log:199', 'hash': '0xa07f258a1871038ac1ec72218febc8721c4a72baeea8891db529fdd8e47cb66c', 'from': '0x7c651d7084b4ba899391d2d4d5d3d47fff823351', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 22452.035931622697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04c120972bd38564a716', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:02:44.000Z'}}, {'blockNum': '0xb16f3b', 'uniqueId': '0x5b7248c4066aa6cc3955f1fe51a50f890918b157a5befd52de469c31a5b212ce:log:0', 'hash': '0x5b7248c4066aa6cc3955f1fe51a50f890918b157a5befd52de469c31a5b212ce', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 42370.86112718337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08f8edd1e8bad4000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:03:04.000Z'}}, {'blockNum': '0xb16f3b', 'uniqueId': '0xe5416320f8487f3e087861691a37369bd9e3a37c68f9d6c8973d3cb8a6273df8:log:4', 'hash': '0xe5416320f8487f3e087861691a37369bd9e3a37c68f9d6c8973d3cb8a6273df8', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 32897.80778509671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06f764cbb87d59653bca', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:03:04.000Z'}}, {'blockNum': '0xb16f3b', 'uniqueId': '0x1a9b39081ada771e32001007f544d800259374973fbaacbd886af4704da2bbb1:log:18', 'hash': '0x1a9b39081ada771e32001007f544d800259374973fbaacbd886af4704da2bbb1', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x7c651d7084b4ba899391d2d4d5d3d47fff823351', 'value': 29731.501295977465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x064bbf7758724aca96f9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:03:04.000Z'}}, {'blockNum': '0xb16f3b', 'uniqueId': '0x1a9b39081ada771e32001007f544d800259374973fbaacbd886af4704da2bbb1:log:19', 'hash': '0x1a9b39081ada771e32001007f544d800259374973fbaacbd886af4704da2bbb1', 'from': '0x7c651d7084b4ba899391d2d4d5d3d47fff823351', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 29731.501295977465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x064bbf7758724aca96f9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:03:04.000Z'}}, {'blockNum': '0xb16f3f', 'uniqueId': '0x91de4f5f1b91f97920ebb5271f76a5249aab6d949ac575d746a0d090fcd90715:log:12', 'hash': '0x91de4f5f1b91f97920ebb5271f76a5249aab6d949ac575d746a0d090fcd90715', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 42020.96583194098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08e5f60c1b8814fa9807', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:04:03.000Z'}}, {'blockNum': '0xb16f44', 'uniqueId': '0xe8e3c0a75e871f07cb34679144dfe5cc729cf51aa8f34d0e2bc05e0ab7fab9b5:log:35', 'hash': '0xe8e3c0a75e871f07cb34679144dfe5cc729cf51aa8f34d0e2bc05e0ab7fab9b5', 'from': '0xf092032446bc5a368832c2eeb50d56272e2ee449', 'to': '0xcfa3e97f04d9b7ecdab669d5ebffc897a3faff18', 'value': 23489.38071602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04f95ca42d25baca8800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:05:42.000Z'}}, {'blockNum': '0xb16f44', 'uniqueId': '0xeb0d39471b6757172b6d0ca90ae2929494d0314eb0848bb9662af7b955ab39e7:log:73', 'hash': '0xeb0d39471b6757172b6d0ca90ae2929494d0314eb0848bb9662af7b955ab39e7', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'value': 34638.666693435196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0755c410fa285f4d3819', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:05:42.000Z'}}, {'blockNum': '0xb16f44', 'uniqueId': '0xeb0d39471b6757172b6d0ca90ae2929494d0314eb0848bb9662af7b955ab39e7:log:79', 'hash': '0xeb0d39471b6757172b6d0ca90ae2929494d0314eb0848bb9662af7b955ab39e7', 'from': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 34638.666693435196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0755c410fa285f4d3819', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:05:42.000Z'}}, {'blockNum': '0xb16f49', 'uniqueId': '0x0018ae06098c3ecfc416b583ab9f23bdfb569c29215bbe44d3ad62e57ae4bc37:log:58', 'hash': '0x0018ae06098c3ecfc416b583ab9f23bdfb569c29215bbe44d3ad62e57ae4bc37', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 21838.59292428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x049fdf5bcecef492b000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:06:44.000Z'}}, {'blockNum': '0xb16f4c', 'uniqueId': '0x7b3929530b1c7636677d9ae4888b79de7a2996d4a35401d5f542ab2d180e0541:log:79', 'hash': '0x7b3929530b1c7636677d9ae4888b79de7a2996d4a35401d5f542ab2d180e0541', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 42020.96583194098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08e5f60c1b8814fa9807', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:07:21.000Z'}}, {'blockNum': '0xb16f51', 'uniqueId': '0x91a625771557a96c22753d17f868206f900035a8f37365a3bcc54eb0fe160a3c:log:42', 'hash': '0x91a625771557a96c22753d17f868206f900035a8f37365a3bcc54eb0fe160a3c', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 9857.396500061132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02165edb6214a295b6dc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:07:51.000Z'}}, {'blockNum': '0xb16f51', 'uniqueId': '0x6bcdb8b45d527a44c05302e36f83a576f96f783714d37556244d69007b8f21be:log:266', 'hash': '0x6bcdb8b45d527a44c05302e36f83a576f96f783714d37556244d69007b8f21be', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 21838.59292428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x049fdf5bcecef492b000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:07:51.000Z'}}, {'blockNum': '0xb16f53', 'uniqueId': '0x0bc54a8988241747b6374ee2952cf9920ae8d112d144b0a97af12999433af338:log:55', 'hash': '0x0bc54a8988241747b6374ee2952cf9920ae8d112d144b0a97af12999433af338', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 71122.922657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f0f94d43325b28f1000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:08:06.000Z'}}, {'blockNum': '0xb16f53', 'uniqueId': '0xe8b4299614d10c7c182db26712305c9aba6c9e0d900a03151fdad77266a7bee2:log:172', 'hash': '0xe8b4299614d10c7c182db26712305c9aba6c9e0d900a03151fdad77266a7bee2', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0xcb0298f7cf0c74ff95bcd52f9840966ebd73bc2f', 'value': 14000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02f6f10780d22cc00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:08:06.000Z'}}, {'blockNum': '0xb16f5c', 'uniqueId': '0xd4a72eaa8a1f8ef22210a8ce2e1ac376406a811f3ba27ade67f6f62347f2f2c5:log:20', 'hash': '0xd4a72eaa8a1f8ef22210a8ce2e1ac376406a811f3ba27ade67f6f62347f2f2c5', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 71112.96609502078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f0f0aa762c77e800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:09:13.000Z'}}, {'blockNum': '0xb16f68', 'uniqueId': '0xb3da80f7cc3efe8643e352395effeed8070e299f3419e91e1aa0f8cd945feaa4:log:36', 'hash': '0xb3da80f7cc3efe8643e352395effeed8070e299f3419e91e1aa0f8cd945feaa4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 23740.03799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0506f335bce0fedb1c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:12:39.000Z'}}, {'blockNum': '0xb16f6c', 'uniqueId': '0xab4e8f5838b3ebfe936bc0383ad121eb2877a92631353ef354dcb26bde9d5f7b:log:61', 'hash': '0xab4e8f5838b3ebfe936bc0383ad121eb2877a92631353ef354dcb26bde9d5f7b', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 23740.03799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0506f335bce0fedb1c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:13:01.000Z'}}, {'blockNum': '0xb16f7d', 'uniqueId': '0x49ea16df686b7a9f916c0dbac80ce89ddf22459d977e719f0e66a5aead374094:log:114', 'hash': '0x49ea16df686b7a9f916c0dbac80ce89ddf22459d977e719f0e66a5aead374094', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 23537.24100001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04fbf4d60fdc940e6400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:17:03.000Z'}}, {'blockNum': '0xb16f7d', 'uniqueId': '0xfd5955aeab763ee427ea609f4107bf2a5fd24b7609cff4c8657e2ec0ca71b057:log:115', 'hash': '0xfd5955aeab763ee427ea609f4107bf2a5fd24b7609cff4c8657e2ec0ca71b057', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7f25e5272ed9e475d8ada9435007fd72c08e5794', 'value': 7999.84919799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ac35ac8de788fc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:17:03.000Z'}}, {'blockNum': '0xb16f7f', 'uniqueId': '0x8ac7e29d8f9c82efe9b5f0b19141539ae677393108d31a2bbc7a0ff797da2d32:log:340', 'hash': '0x8ac7e29d8f9c82efe9b5f0b19141539ae677393108d31a2bbc7a0ff797da2d32', 'from': '0xaa6fc6923cb222df4f4f96c972c0141023d60b30', 'to': '0x31fcdc68b27c61709eb962c1e40fa9dc1cff289b', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:17:34.000Z'}}, {'blockNum': '0xb16f80', 'uniqueId': '0xa984bbbaaed6451ade898399be050247d44018570e314c9a3fa4688d7e7d58d3:log:177', 'hash': '0xa984bbbaaed6451ade898399be050247d44018570e314c9a3fa4688d7e7d58d3', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 23537.24100001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04fbf4d60fdc940e6400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:17:47.000Z'}}, {'blockNum': '0xb16f83', 'uniqueId': '0xc27198d775a12675d02c61ea8263a88bd46c4d32ea653767348b6f418c54f5f5:log:114', 'hash': '0xc27198d775a12675d02c61ea8263a88bd46c4d32ea653767348b6f418c54f5f5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 23790.987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0509b644f272d8478000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:18:23.000Z'}}, {'blockNum': '0xb16f83', 'uniqueId': '0xd2ecd2237e745394fbee4db6487790e19b168a12bf436625b976bce30ca61e35:log:124', 'hash': '0xd2ecd2237e745394fbee4db6487790e19b168a12bf436625b976bce30ca61e35', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9d7756b5b8eb31a2b2336ba443978dfac3670eff', 'value': 6930.41087903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0177b2c5879655d69c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:18:23.000Z'}}, {'blockNum': '0xb16f85', 'uniqueId': '0x2a2b48873b2189266b4983bc26b08fbf004d2ed7276e3d80e204237fd941a326:log:151', 'hash': '0x2a2b48873b2189266b4983bc26b08fbf004d2ed7276e3d80e204237fd941a326', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 23790.987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0509b644f272d8478000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:18:54.000Z'}}, {'blockNum': '0xb16f90', 'uniqueId': '0x48c34fd0e9f9a044314dfdc08831a27b65b0dd1f4f2b3df13c717bc39732dfd8:log:197', 'hash': '0x48c34fd0e9f9a044314dfdc08831a27b65b0dd1f4f2b3df13c717bc39732dfd8', 'from': '0x260ce905725a52c1846b1f523397aa931325a251', 'to': '0x3eb8284ae19d93422573b8ff11a1b171e6d6b875', 'value': 1137.3727336651018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3da837ab359b5d9d81', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:21:42.000Z'}}, {'blockNum': '0xb16fba', 'uniqueId': '0x75ff1eb6878a7260d6b16c0da01a8b514b3858708af8d08e4f23bdaca8aa27bc:log:128', 'hash': '0x75ff1eb6878a7260d6b16c0da01a8b514b3858708af8d08e4f23bdaca8aa27bc', 'from': '0xcfa3e97f04d9b7ecdab669d5ebffc897a3faff18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23489.38071602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04f95ca42d25baca8800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:31:11.000Z'}}, {'blockNum': '0xb16fbc', 'uniqueId': '0xf946e0bb089a8854db0b149cf70204255d52bcc89fb894476f089a340e9b1296:log:192', 'hash': '0xf946e0bb089a8854db0b149cf70204255d52bcc89fb894476f089a340e9b1296', 'from': '0x15b4d77b7b4ebd9b8a359d76734ac7939138f5ab', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 70548.28375075238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ef06e1cb27b8267f6f4', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:31:45.000Z'}}, {'blockNum': '0xb16fbd', 'uniqueId': '0x029e5b1459beb8ecadd8d0aa1e80acaf0c4e44d67168a110806c0c2e0e7ccf8e:log:30', 'hash': '0x029e5b1459beb8ecadd8d0aa1e80acaf0c4e44d67168a110806c0c2e0e7ccf8e', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 29646.713291283817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x064726cbd76757acbe60', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:31:48.000Z'}}, {'blockNum': '0xb16fbf', 'uniqueId': '0xbdbc0c89334a75ffa43e3ff7c9cebd6a7e67d8151d94cb960549f8d0961338cb:log:77', 'hash': '0xbdbc0c89334a75ffa43e3ff7c9cebd6a7e67d8151d94cb960549f8d0961338cb', 'from': '0x15b4d77b7b4ebd9b8a359d76734ac7939138f5ab', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 53485.837152797234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b537919465bd5598cb3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:32:22.000Z'}}, {'blockNum': '0xb16fbf', 'uniqueId': '0x9082bcae44ac23fbdfc3bb91acd6c38d48b3b60096b9b1c402d47fb389a5723f:log:84', 'hash': '0x9082bcae44ac23fbdfc3bb91acd6c38d48b3b60096b9b1c402d47fb389a5723f', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 44684.88884297059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09765f67d3fe760e6ab6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:32:22.000Z'}}, {'blockNum': '0xb16fbf', 'uniqueId': '0x9082bcae44ac23fbdfc3bb91acd6c38d48b3b60096b9b1c402d47fb389a5723f:log:88', 'hash': '0x9082bcae44ac23fbdfc3bb91acd6c38d48b3b60096b9b1c402d47fb389a5723f', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 44684.88884297059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09765f67d3fe760e6ab6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:32:22.000Z'}}, {'blockNum': '0xb16fc1', 'uniqueId': '0x5b2f7989940e7dbce6b76280f7f7141a14120d74d1caaa900924e0f4eceab6c3:log:200', 'hash': '0x5b2f7989940e7dbce6b76280f7f7141a14120d74d1caaa900924e0f4eceab6c3', 'from': '0xf18f68a2f75f29ad85acea9ca9df11bd5a5beb3f', 'to': '0x6d97ac463e7a5ae00c7122894c8a69e8e7b612c9', 'value': 1588.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x561e40f33c898c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:32:45.000Z'}}, {'blockNum': '0xb16fe3', 'uniqueId': '0x71824e597f92398917156d80a8ea956b9351b5633ba8e0d590f0fa436eb6d886:log:108', 'hash': '0x71824e597f92398917156d80a8ea956b9351b5633ba8e0d590f0fa436eb6d886', 'from': '0x5eec053151a3d211df7147e90777e508088956f2', 'to': '0xa1bfb54f9f86e5342b2f97c43ca94a6121562d89', 'value': 1334.543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x4858812bc9c4218000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:38:36.000Z'}}, {'blockNum': '0xb17048', 'uniqueId': '0x254fa7a2bcc46fce4fbdd965a61bca446244989ddde96d7abb06116edeeb4af5:log:27', 'hash': '0x254fa7a2bcc46fce4fbdd965a61bca446244989ddde96d7abb06116edeeb4af5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfb4e792e2aa967554957e4c896704a549140d049', 'value': 1072.86812898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3a2909470222df4800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:59:20.000Z'}}, {'blockNum': '0xb17055', 'uniqueId': '0xcdc988710ffab74cae06c33122f168412622a8ff4a06e0b19d94d65da5ae2952:log:136', 'hash': '0xcdc988710ffab74cae06c33122f168412622a8ff4a06e0b19d94d65da5ae2952', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23683.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0503ddbaf64b247b0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:01:10.000Z'}}, {'blockNum': '0xb1706e', 'uniqueId': '0x16cfc0ff027a66a067a65a95d7c2ceb2bb440935318a460eb3dc12c2b7aff61f:log:18', 'hash': '0x16cfc0ff027a66a067a65a95d7c2ceb2bb440935318a460eb3dc12c2b7aff61f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x80b3ce9fdd7f78616ee0318dbb94d5721540a40a', 'value': 202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0af35029c214e80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:07:07.000Z'}}, {'blockNum': '0xb17086', 'uniqueId': '0x2a57841641a18ae4cc84bc2d53111cef84a6f9e4fcfd665eead13d5f390d3d1b:log:14', 'hash': '0x2a57841641a18ae4cc84bc2d53111cef84a6f9e4fcfd665eead13d5f390d3d1b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x80b3ce9fdd7f78616ee0318dbb94d5721540a40a', 'value': 14219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0302d043cc825f4c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:12:40.000Z'}}, {'blockNum': '0xb170a9', 'uniqueId': '0xcec01b654061bc438b42c4654bdad7e9a24cb923c8b0e5e5e0f5ce17515c0d78:log:132', 'hash': '0xcec01b654061bc438b42c4654bdad7e9a24cb923c8b0e5e5e0f5ce17515c0d78', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd89d5d97823e95795f8c16ef1f5ff484774cee76', 'value': 25483.293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056573bb9f3a267c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:21:25.000Z'}}, {'blockNum': '0xb170aa', 'uniqueId': '0xd3788fe01eda376029a1fbd14c673f1f6676940bde7a712dec8e342ec3fe4134:log:27', 'hash': '0xd3788fe01eda376029a1fbd14c673f1f6676940bde7a712dec8e342ec3fe4134', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 50596.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ab6d2b3f694f43f8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:21:39.000Z'}}, {'blockNum': '0xb170ae', 'uniqueId': '0x44662d0d89d5f92cada875d0a6396cd6e0cf0dbcfeb6622b9c7f1cda8fc3b937:log:213', 'hash': '0x44662d0d89d5f92cada875d0a6396cd6e0cf0dbcfeb6622b9c7f1cda8fc3b937', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 50596.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ab6d2b3f694f43f8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:22:03.000Z'}}, {'blockNum': '0xb170b6', 'uniqueId': '0x1a1a0a805dcfc6d461c9898cfebb6e54edea2aa7fa3177852f0c68d8aaacc0f5:log:274', 'hash': '0x1a1a0a805dcfc6d461c9898cfebb6e54edea2aa7fa3177852f0c68d8aaacc0f5', 'from': '0x6c78b4d219deea25002f998018380fae87c0fe4d', 'to': '0x2b86d0a954c27ea5df3868c66f4d24b6cfb0f302', 'value': 390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x15245655b102580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:24:52.000Z'}}, {'blockNum': '0xb170ba', 'uniqueId': '0xcce5ed29a2cffe8bdb2cd5769dad84d236dfef951af655b081daa42e103eae24:log:123', 'hash': '0xcce5ed29a2cffe8bdb2cd5769dad84d236dfef951af655b081daa42e103eae24', 'from': '0xd89d5d97823e95795f8c16ef1f5ff484774cee76', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 25483.293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056573bb9f3a267c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:25:22.000Z'}}, {'blockNum': '0xb170be', 'uniqueId': '0x12e9ae20a7f28e399b626a4e88813ac39b270f42d60f086052145c9078087fe6:log:53', 'hash': '0x12e9ae20a7f28e399b626a4e88813ac39b270f42d60f086052145c9078087fe6', 'from': '0x6c78b4d219deea25002f998018380fae87c0fe4d', 'to': '0x2b86d0a954c27ea5df3868c66f4d24b6cfb0f302', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:26:26.000Z'}}, {'blockNum': '0xb170be', 'uniqueId': '0x972f5e625ff2114263c694d941ff465f5291d2fbf0ce7081bfa89b5caf47149c:log:145', 'hash': '0x972f5e625ff2114263c694d941ff465f5291d2fbf0ce7081bfa89b5caf47149c', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 19105.7895532955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x040bba17e3e92b6f9412', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:26:26.000Z'}}, {'blockNum': '0xb170e7', 'uniqueId': '0xd83494d13005a5634f34357b88716c4fa685d33b34f08ae122870908515bd1c2:log:177', 'hash': '0xd83494d13005a5634f34357b88716c4fa685d33b34f08ae122870908515bd1c2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x07c748b04fd9588bbf6b24943ac16a4adf19b1c2', 'value': 4361.86864007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xec751661f920893c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:34:19.000Z'}}, {'blockNum': '0xb170ed', 'uniqueId': '0x25aebba6a812fa1c5d070725f4977149293511ff5780672b597ec21866c07717:log:87', 'hash': '0x25aebba6a812fa1c5d070725f4977149293511ff5780672b597ec21866c07717', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1db460ac2c9844703632191c0588c3659deda9db', 'value': 802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2b79fc5ed267480000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:36:05.000Z'}}, {'blockNum': '0xb170fd', 'uniqueId': '0xe3e4659035c3e6bf4ec4137c0dc90a1c790b6b826bdb543af64d96934db9df65:log:194', 'hash': '0xe3e4659035c3e6bf4ec4137c0dc90a1c790b6b826bdb543af64d96934db9df65', 'from': '0x1db460ac2c9844703632191c0588c3659deda9db', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2b79fc5ed267480000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:40:10.000Z'}}, {'blockNum': '0xb17100', 'uniqueId': '0x56dfdf31a149e55dc02e363e69da743de35d52fb74795f608572b2642700699e:log:113', 'hash': '0x56dfdf31a149e55dc02e363e69da743de35d52fb74795f608572b2642700699e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 50820.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ac302152e2c40ad0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:41:00.000Z'}}, {'blockNum': '0xb17103', 'uniqueId': '0xe2e2ec28a900b952031180b0c4fd6dc1e529b319261ab1f858d0a393e2ee2f95:log:124', 'hash': '0xe2e2ec28a900b952031180b0c4fd6dc1e529b319261ab1f858d0a393e2ee2f95', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 50820.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ac302152e2c40ad0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:42:25.000Z'}}, {'blockNum': '0xb17103', 'uniqueId': '0x19c94db4a4a7cc6099768a002a21708b28edfc216edac94e44da04a94791bdcc:log:178', 'hash': '0x19c94db4a4a7cc6099768a002a21708b28edfc216edac94e44da04a94791bdcc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ea7a829be59f41634002813e4f8c5d6dd664d47', 'value': 34028.433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0734af5f632293ee8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:42:25.000Z'}}, {'blockNum': '0xb17109', 'uniqueId': '0xa4692b1f03e656d140407800a884fddb64f5bf565ec1e02478c8fc508f915b76:log:150', 'hash': '0xa4692b1f03e656d140407800a884fddb64f5bf565ec1e02478c8fc508f915b76', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 20647.53261580174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x045f4e138ec162d4fd4b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:43:52.000Z'}}, {'blockNum': '0xb1712c', 'uniqueId': '0x78d8358079e979ce611370e5228f7530a16d45f6f444c8ce1d2740633e24ca60:log:1', 'hash': '0x78d8358079e979ce611370e5228f7530a16d45f6f444c8ce1d2740633e24ca60', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb155b38f48d6984c8d2f13467c4f6a9c088a5b9d', 'value': 918.17209476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x31c6328f7ffe199000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:51:33.000Z'}}, {'blockNum': '0xb17139', 'uniqueId': '0xf3af21529a6f35a09afb40633111c0a953725416a0a4d941802bba5a1a7e8309:log:305', 'hash': '0xf3af21529a6f35a09afb40633111c0a953725416a0a4d941802bba5a1a7e8309', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 417176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x58572801aad2b7600000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:53:49.000Z'}}, {'blockNum': '0xb17139', 'uniqueId': '0x1faa7e9d0adf66222c5b62da3405b0e822a2bd82fb6418540de57ec68c89e861:log:315', 'hash': '0x1faa7e9d0adf66222c5b62da3405b0e822a2bd82fb6418540de57ec68c89e861', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6199a4ac62c622a29a4158089f67a3b28fa67051', 'value': 282301.21870733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3bc794693e5b77409400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:53:49.000Z'}}, {'blockNum': '0xb17147', 'uniqueId': '0xe277db15d4ac17caddc771e42e52b4d9630558b3467c422fa93e02d2631ba124:log:96', 'hash': '0xe277db15d4ac17caddc771e42e52b4d9630558b3467c422fa93e02d2631ba124', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 38064.978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x080f81b0061a63150000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:56:56.000Z'}}, {'blockNum': '0xb17158', 'uniqueId': '0xe739fb17d07da25b31d6a8942bbac410df3004fdd2f9bc190e50baa65136c9d4:log:56', 'hash': '0xe739fb17d07da25b31d6a8942bbac410df3004fdd2f9bc190e50baa65136c9d4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 2188.868044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x76a8a570e5e818c000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:00:02.000Z'}}, {'blockNum': '0xb1715f', 'uniqueId': '0xcf43402b05ea16ce2a4a3dd074d711642dd6978e1d2c0b1b575f3c52da34bea0:log:124', 'hash': '0xcf43402b05ea16ce2a4a3dd074d711642dd6978e1d2c0b1b575f3c52da34bea0', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 38064.978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x080f81b0061a63150000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:01:09.000Z'}}, {'blockNum': '0xb171b5', 'uniqueId': '0x5dec8864b9486128494242edbcdcc0fb04633fd33144e92597ebee9679654369:log:156', 'hash': '0x5dec8864b9486128494242edbcdcc0fb04633fd33144e92597ebee9679654369', 'from': '0x2d552982a23068d77ba19467b4e89700ec831b8a', 'to': '0x81ae7c82f7b049b64d8b4f2c412ccc75c07c6b94', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x18650127cc3dc80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:19:38.000Z'}}, {'blockNum': '0xb171f4', 'uniqueId': '0x9265f84dcd7aef607c3e826bfe3cdbd39d850a0661930fbf9b2295f5412620de:log:10', 'hash': '0x9265f84dcd7aef607c3e826bfe3cdbd39d850a0661930fbf9b2295f5412620de', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1f06244d905d5934d4af5092a087fff8caf637f6', 'value': 2467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x85bc80a54618ac0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:33:05.000Z'}}, {'blockNum': '0xb1721d', 'uniqueId': '0xd782dcd8f029ed5d5742af3df69a2d0792599c4a404be2eb16a9333601edad7b:log:12', 'hash': '0xd782dcd8f029ed5d5742af3df69a2d0792599c4a404be2eb16a9333601edad7b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x050fea966f0d4c7ba422ee5ec38283915a360502', 'value': 2135.36162385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x73c2187342c48b2400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:43:27.000Z'}}, {'blockNum': '0xb17240', 'uniqueId': '0xea67e483e86f0f0426d72bcfb0ff56edcc50bd6dff3ce56abd53a3e878272add:log:155', 'hash': '0xea67e483e86f0f0426d72bcfb0ff56edcc50bd6dff3ce56abd53a3e878272add', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x2dcaa7660358bfcfb3d7238802e2374745ca6841', 'value': 24824.42912811631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0541bc28ee8f30bb46cb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:48:31.000Z'}}, {'blockNum': '0xb17249', 'uniqueId': '0xaff3ae653e2f087d77fbda880a86a03b309813a2355e861562b602785a3159f0:log:47', 'hash': '0xaff3ae653e2f087d77fbda880a86a03b309813a2355e861562b602785a3159f0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc53cd15b28a3fb1fd2d565aabee03c428bb846f3', 'value': 27635.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05da1a98574227b38000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:50:16.000Z'}}, {'blockNum': '0xb17249', 'uniqueId': '0xde74f1baf4005328ec2611eadc7ac2e60f81a286aea725b3bb76692a2ebe0a11:log:48', 'hash': '0xde74f1baf4005328ec2611eadc7ac2e60f81a286aea725b3bb76692a2ebe0a11', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9d92455dffcfea338da52999a1365f2e67d4288a', 'value': 9002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01e7ffd8895c22680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:50:16.000Z'}}, {'blockNum': '0xb17261', 'uniqueId': '0xf24b1b58ea465dae650d8cf6b5c167d87d1ec33088ba6adcd2f5ec1a583cd240:log:35', 'hash': '0xf24b1b58ea465dae650d8cf6b5c167d87d1ec33088ba6adcd2f5ec1a583cd240', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x97a944de317ec641ae6dffa0abc69bf1963a709b', 'value': 26431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0598d3cf3e8f6d9c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:56:59.000Z'}}, {'blockNum': '0xb17261', 'uniqueId': '0xb23040c13b40ed99b2083eb84b1975a8c34e6a384395ee01392eaf5d1f415129:log:277', 'hash': '0xb23040c13b40ed99b2083eb84b1975a8c34e6a384395ee01392eaf5d1f415129', 'from': '0xc53cd15b28a3fb1fd2d565aabee03c428bb846f3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 27635.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05da1a98574227b38000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:56:59.000Z'}}, {'blockNum': '0xb1726a', 'uniqueId': '0x9f397499cc88b02c1e9859c275999b5cecd47a7b9b27d8aa2daf79a6b11f4c3e:log:78', 'hash': '0x9f397499cc88b02c1e9859c275999b5cecd47a7b9b27d8aa2daf79a6b11f4c3e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc0f39f4f5bdd746c0ccd557baaf59028b4885c51', 'value': 6369.426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0159498ae055b1350000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:59:05.000Z'}}, {'blockNum': '0xb17273', 'uniqueId': '0x03d4f4949ac165c49a816bd157cf0c07152298dd20dfd04ad47f00ab93605845:log:82', 'hash': '0x03d4f4949ac165c49a816bd157cf0c07152298dd20dfd04ad47f00ab93605845', 'from': '0x97a944de317ec641ae6dffa0abc69bf1963a709b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 26431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0598d3cf3e8f6d9c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:01:06.000Z'}}, {'blockNum': '0xb1727c', 'uniqueId': '0x651b67137876a5be359b3a724bd2ec2c7be666289d3a36462aef0fc1006f16b7:log:301', 'hash': '0x651b67137876a5be359b3a724bd2ec2c7be666289d3a36462aef0fc1006f16b7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x218b16dfb00817ff3e6b0a2c072b04ed212ccf10', 'value': 5466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01284ffcf7e40d280000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:02:06.000Z'}}, {'blockNum': '0xb17284', 'uniqueId': '0x0175057fc64e0261b0bcf553e878d75f0ed9b867499cf443bf18c57d306ae05c:log:286', 'hash': '0x0175057fc64e0261b0bcf553e878d75f0ed9b867499cf443bf18c57d306ae05c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 6676.853052759705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0169f3f32c0058b21840', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:03:50.000Z'}}, {'blockNum': '0xb1728d', 'uniqueId': '0xe6e883541c2ce947c2c8e77a8d384071f44686ced6a2e0142823fe794f85a5e5:log:224', 'hash': '0xe6e883541c2ce947c2c8e77a8d384071f44686ced6a2e0142823fe794f85a5e5', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf39353e7f9d186e92b60364ce0fd8d2e1ad8c411', 'value': 6592.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0165657abdd93b500000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:05:47.000Z'}}, {'blockNum': '0xb172a2', 'uniqueId': '0xbc85618f845343c98bd5cf175714ac769ef3f62af4f7d7ccfd9b77703025fd18:log:96', 'hash': '0xbc85618f845343c98bd5cf175714ac769ef3f62af4f7d7ccfd9b77703025fd18', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 381257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x50bbfbbf09d75f840000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:11:01.000Z'}}, {'blockNum': '0xb172a2', 'uniqueId': '0xe2df8e35b6f82c09d00a8b6a8b854fc33ff1635bb91979d27b9e11d483a946e2:log:131', 'hash': '0xe2df8e35b6f82c09d00a8b6a8b854fc33ff1635bb91979d27b9e11d483a946e2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 414058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x57ae21106ab1f3680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:11:01.000Z'}}, {'blockNum': '0xb172ad', 'uniqueId': '0x9212cb3d00cfad4fbf22a7c6fc82e0d082b6bd8cdb3164edc8021b1f145a0b21:log:210', 'hash': '0x9212cb3d00cfad4fbf22a7c6fc82e0d082b6bd8cdb3164edc8021b1f145a0b21', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6020584a915ce6879ce8ce7e86d3313fffde9023', 'value': 746.05499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x287197cdb8dc019c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:14:10.000Z'}}, {'blockNum': '0xb172e2', 'uniqueId': '0xf64e556a174283e2cfc03b01362df71fd7272fd1ec165a075a03392489f7c1b4:log:200', 'hash': '0xf64e556a174283e2cfc03b01362df71fd7272fd1ec165a075a03392489f7c1b4', 'from': '0x11200e4b0202b1e43be39a407e7b59696387a62c', 'to': '0x1e62bab7f2cd4f08be67f4ddb30e3ee9b2d213b0', 'value': 294.75925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ffa9b382c6e8f2000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:24:42.000Z'}}, {'blockNum': '0xb1735f', 'uniqueId': '0xb4db4eff21ba23e76d0d0af01497cd5d1ac05cd1b5a76787aaef398613ae93eb:log:239', 'hash': '0xb4db4eff21ba23e76d0d0af01497cd5d1ac05cd1b5a76787aaef398613ae93eb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 25675.10099999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056fd99a86f9c8909c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:53:28.000Z'}}, {'blockNum': '0xb17368', 'uniqueId': '0x9dee0d4821d9fdac029ada4170bbf18117e0d454ca0cc174b060b46e0ba01d3f:log:267', 'hash': '0x9dee0d4821d9fdac029ada4170bbf18117e0d454ca0cc174b060b46e0ba01d3f', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 25675.10099999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056fd99a86f9c8909c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:55:18.000Z'}}, {'blockNum': '0xb1737c', 'uniqueId': '0x51473683c7b84e4ffd5e4784ef68e521b6fcce7a727c35c130a69e5520ea0500:log:101', 'hash': '0x51473683c7b84e4ffd5e4784ef68e521b6fcce7a727c35c130a69e5520ea0500', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd629ebf7c740f23567d782edb3f190efa7fa2cce', 'value': 5797.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x013a4f62cde3d94b0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:00:30.000Z'}}, {'blockNum': '0xb1739e', 'uniqueId': '0x5d9e08d965c2151882ab8022117eef10f7d1c7caf18ed3901049e3d1565fd908:log:141', 'hash': '0x5d9e08d965c2151882ab8022117eef10f7d1c7caf18ed3901049e3d1565fd908', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x80af8ae8018a11af6520f6621ab79d58bd4029d4', 'value': 31662.64121005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06b46f6a88ad7aa11400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:08:07.000Z'}}, {'blockNum': '0xb173d1', 'uniqueId': '0xd15d5c6d04610b653c5349b9c0b7fcb7620db81793d41f1bedd3852a50b89251:log:80', 'hash': '0xd15d5c6d04610b653c5349b9c0b7fcb7620db81793d41f1bedd3852a50b89251', 'from': '0x80af8ae8018a11af6520f6621ab79d58bd4029d4', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 31662.64121005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06b46f6a88ad7aa11400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:20:43.000Z'}}, {'blockNum': '0xb17418', 'uniqueId': '0xe49262d6b9fbf611a554f17599d8f7e21bec16c79d4c61af03bc61ab6332983e:log:217', 'hash': '0xe49262d6b9fbf611a554f17599d8f7e21bec16c79d4c61af03bc61ab6332983e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x29eefb0e6ee2c8095d8fdd1c232a30bdd13f92af', 'value': 64801.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0db8ec67d047bb3c1c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:37:46.000Z'}}, {'blockNum': '0xb1742b', 'uniqueId': '0x3f9851b9a05c6e32190809aaab77793ef350595d8cd0838bbd7f30c948de5b48:log:177', 'hash': '0x3f9851b9a05c6e32190809aaab77793ef350595d8cd0838bbd7f30c948de5b48', 'from': '0x5fe983bfcff1bb6a19555b0e9c49f462fb9e4e8f', 'to': '0x0c2f56116ce6f3f3e0435aa4d2024d3e78cc4e56', 'value': 2460.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x85624c01b658a20000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:41:06.000Z'}}, {'blockNum': '0xb17435', 'uniqueId': '0xe549a840c4c77630b9f741bd6687dbbbf8ae845eb04cb84e647a9f1737accba1:log:84', 'hash': '0xe549a840c4c77630b9f741bd6687dbbbf8ae845eb04cb84e647a9f1737accba1', 'from': '0x29eefb0e6ee2c8095d8fdd1c232a30bdd13f92af', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 64801.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0db8ec67d047bb3c1c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:42:44.000Z'}}, {'blockNum': '0xb1743c', 'uniqueId': '0x94be4a61c4c738e365f75864fbff93e2cdeb3fae9780c53713e6f05c209fd273:log:73', 'hash': '0x94be4a61c4c738e365f75864fbff93e2cdeb3fae9780c53713e6f05c209fd273', 'from': '0x86365a2af36c3198f6a84deb427f2c566f6dc646', 'to': '0x0b92b8bc9c58050f13e1371965d03243023125ec', 'value': 1192.81522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x40a9a2f2c8bb6b4000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:44:43.000Z'}}, {'blockNum': '0xb17475', 'uniqueId': '0xa0096df8daffadd87440beccd35003ceb06756b1e9827a1259b720af2f7d28fe:log:268', 'hash': '0xa0096df8daffadd87440beccd35003ceb06756b1e9827a1259b720af2f7d28fe', 'from': '0x45b713f6530c0a1a4336af5c00b8dfe92486b2ef', 'to': '0x5d602e0f041052a8943cdd71ced8c7f6256ece4a', 'value': 3764.14924998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcc0e10878a12f25800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:55:48.000Z'}}, {'blockNum': '0xb1748d', 'uniqueId': '0xc2e5ca092ff194c71dea9af99408d67864aed5e9e14c178a3187952872db22df:log:31', 'hash': '0xc2e5ca092ff194c71dea9af99408d67864aed5e9e14c178a3187952872db22df', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf9561f693a50e88954486a281f50f5275619dd51', 'value': 687.35387016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2542f37f2754c52000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:00:51.000Z'}}, {'blockNum': '0xb1749e', 'uniqueId': '0x09db37ccb9e09b4cc94c6f74fff1b47c59544596d9edfa273b07beca331089aa:log:9', 'hash': '0x09db37ccb9e09b4cc94c6f74fff1b47c59544596d9edfa273b07beca331089aa', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9fb2aa415c5630d5e93a0a6ba748d0dd85eccd9e', 'value': 198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0abbcd4ef377580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:04:41.000Z'}}, {'blockNum': '0xb174bd', 'uniqueId': '0x3bcc11c8961d104d522a897f5a523ad529696062c3cc9a0bc41ba2022f4576e5:log:4', 'hash': '0x3bcc11c8961d104d522a897f5a523ad529696062c3cc9a0bc41ba2022f4576e5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe240177e7e1458a1caea3fe946354279845b72c0', 'value': 6462.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x015e52e2d897a46c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:12:12.000Z'}}, {'blockNum': '0xb174c3', 'uniqueId': '0x677d589fe3ff8714d030dd1b0d1df2caf7c57e11db98821a14cc3d45f2877576:log:12', 'hash': '0x677d589fe3ff8714d030dd1b0d1df2caf7c57e11db98821a14cc3d45f2877576', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x34ca98de8f4c98ec68f4f96842ead7299e75c30d', 'value': 1002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x36518b1b2d2d680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:13:02.000Z'}}, {'blockNum': '0xb174c4', 'uniqueId': '0x19a55a6bb0af566248a601e4129176ed37e4c7f1679f68000e859c621325211d:log:2', 'hash': '0x19a55a6bb0af566248a601e4129176ed37e4c7f1679f68000e859c621325211d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf5cb955ad2c297c6d26818f53c25b0475d93646b', 'value': 44757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x097a48261f403e340000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:13:19.000Z'}}, {'blockNum': '0xb174d3', 'uniqueId': '0xe8087180cb555ec9dd8407e431dcacf2da246fbf4da35b063172d78057456948:log:215', 'hash': '0xe8087180cb555ec9dd8407e431dcacf2da246fbf4da35b063172d78057456948', 'from': '0xe240177e7e1458a1caea3fe946354279845b72c0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6462.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x015e52e2d897a46c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:16:51.000Z'}}, {'blockNum': '0xb174d3', 'uniqueId': '0x8390cb192614b39fb468ca49915d6f9df1c10575b9cc83803fcb611d070c0978:log:220', 'hash': '0x8390cb192614b39fb468ca49915d6f9df1c10575b9cc83803fcb611d070c0978', 'from': '0x34ca98de8f4c98ec68f4f96842ead7299e75c30d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x36518b1b2d2d680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:16:51.000Z'}}, {'blockNum': '0xb174d3', 'uniqueId': '0x4d59cede3256174b97013bf326900b198366695a12996cb159dc8a20b95b9151:log:256', 'hash': '0x4d59cede3256174b97013bf326900b198366695a12996cb159dc8a20b95b9151', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x05782c01765dcc39b564c2370881c948e25b6c37', 'value': 6355.213736401698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0158844ec5e45232a926', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:16:51.000Z'}}, {'blockNum': '0xb174e8', 'uniqueId': '0xd01836106e729d05567fce8ed90f416781b1e7c33edf9a2dc26d882138a86c39:log:84', 'hash': '0xd01836106e729d05567fce8ed90f416781b1e7c33edf9a2dc26d882138a86c39', 'from': '0x05e5a0d03b4520a0ffdb0b8419438c0e4a662f43', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 3107.042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xa86ede9d2f9b3d0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:20:22.000Z'}}, {'blockNum': '0xb17532', 'uniqueId': '0x30cf93a67117b3bc5161dad24cbc3f7caa24918269d3d83a2fde223fb0738677:log:169', 'hash': '0x30cf93a67117b3bc5161dad24cbc3f7caa24918269d3d83a2fde223fb0738677', 'from': '0xf772cb614baa695d6ff475720dbee6279c84c9f4', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 14240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0303f3b2c93f1a800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:37:55.000Z'}}, {'blockNum': '0xb17532', 'uniqueId': '0xdd0716f4e6ccfae52ea5e11a3ec718b20fe95e71c621fdfc5429d79f348d2c12:log:170', 'hash': '0xdd0716f4e6ccfae52ea5e11a3ec718b20fe95e71c621fdfc5429d79f348d2c12', 'from': '0x080b52f3bda198c1443dbbfbb331fbec824e4068', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 8252.34488935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01bf5c4a92111500bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:37:55.000Z'}}, {'blockNum': '0xb17532', 'uniqueId': '0x4cdbc6e4a4035d422bb9e8fa3420d542422d81a2b4791f9c824eaa8d1a6745e0:log:171', 'hash': '0x4cdbc6e4a4035d422bb9e8fa3420d542422d81a2b4791f9c824eaa8d1a6745e0', 'from': '0x63f2db6f7ddbee712778c4bd390d525b4d545771', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 20182.95133457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04461eb748eea8fe2400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:37:55.000Z'}}, {'blockNum': '0xb17532', 'uniqueId': '0x8c4bd86021ec1f7cb72d018f8059bf7c6bfdaf7b5d76e77c54aa1f395459e993:log:172', 'hash': '0x8c4bd86021ec1f7cb72d018f8059bf7c6bfdaf7b5d76e77c54aa1f395459e993', 'from': '0x5d602e0f041052a8943cdd71ced8c7f6256ece4a', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 3764.14924998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcc0e10878a12f25800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:37:55.000Z'}}, {'blockNum': '0xb17540', 'uniqueId': '0xfd30a52e812f8e7e24eb53f08dadf3ebc93b2bee7fd263c6c363c7c26c0932bf:log:246', 'hash': '0xfd30a52e812f8e7e24eb53f08dadf3ebc93b2bee7fd263c6c363c7c26c0932bf', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 46440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09d584773e55b4a00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:41:21.000Z'}}, {'blockNum': '0xb1754a', 'uniqueId': '0x40fc56ba1886372f47f2953dfe6b66e255598c46d0fde69efaced8988dd67f7a:log:29', 'hash': '0x40fc56ba1886372f47f2953dfe6b66e255598c46d0fde69efaced8988dd67f7a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7ccaec2e731523bbb767df79b05c751240e8b7f6', 'value': 12360.42899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x029e0f692f21a0b89c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:43:36.000Z'}}, {'blockNum': '0xb17552', 'uniqueId': '0xae21ee70a1e7412dd6c825b457f3a3a5f3ed90d56d8188aaf81dec9e0ca4aed0:log:18', 'hash': '0xae21ee70a1e7412dd6c825b457f3a3a5f3ed90d56d8188aaf81dec9e0ca4aed0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9fb2aa415c5630d5e93a0a6ba748d0dd85eccd9e', 'value': 4607.793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xf9c9f9385dcb7e8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:46:10.000Z'}}, {'blockNum': '0xb17557', 'uniqueId': '0xfce416fd19504948412e8c77d5505705e9136fe62744ca85a65737437559aa17:log:359', 'hash': '0xfce416fd19504948412e8c77d5505705e9136fe62744ca85a65737437559aa17', 'from': '0x8cfa6878b19c4277820c43ee22b6f75414af4c11', 'to': '0x17accd0fbcfe34dfa075ffc01b19a37387c90676', 'value': 3960.726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd6b61d702c9dcf0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:46:59.000Z'}}, {'blockNum': '0xb17565', 'uniqueId': '0xd3745661777391ddb08dc024cb45e751ed710de2420c5428b2adce8c2edf030d:log:91', 'hash': '0xd3745661777391ddb08dc024cb45e751ed710de2420c5428b2adce8c2edf030d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 52310.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b13c62eb580d7e80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:49:59.000Z'}}, {'blockNum': '0xb17566', 'uniqueId': '0x40d1ce453fff9ab00720404d2b80efa5320ff86d278d5a64231d262a3e9c057a:log:0', 'hash': '0x40d1ce453fff9ab00720404d2b80efa5320ff86d278d5a64231d262a3e9c057a', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 52310.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b13c62eb580d7e80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:50:07.000Z'}}, {'blockNum': '0xb17566', 'uniqueId': '0x47fc820f4057457cf0b5811156a4e801dc14f92af859c35aa837d1e4af041fde:log:323', 'hash': '0x47fc820f4057457cf0b5811156a4e801dc14f92af859c35aa837d1e4af041fde', 'from': '0x2fc304da58327b595df660101f890d96b2d0513f', 'to': '0x92579792a89e3b0125d4e1273cdcea85442f5721', 'value': 28000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05ede20f01a459800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:50:07.000Z'}}, {'blockNum': '0xb1756d', 'uniqueId': '0x6463059a9a8779060d598102e85a1f2b404907829122fc70ad18d8c3c240ad48:log:161', 'hash': '0x6463059a9a8779060d598102e85a1f2b404907829122fc70ad18d8c3c240ad48', 'from': '0x17accd0fbcfe34dfa075ffc01b19a37387c90676', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3960.726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd6b61d702c9dcf0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:51:33.000Z'}}, {'blockNum': '0xb17572', 'uniqueId': '0xecdd03e511db9d417c807a2a830f98b79ac6aa773e7f9b31b33d082e95399ced:log:35', 'hash': '0xecdd03e511db9d417c807a2a830f98b79ac6aa773e7f9b31b33d082e95399ced', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xab8fd6726562da863192baffa24a381a5c508fb8', 'value': 1566.234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x54e7dcf4bc93290000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:53:02.000Z'}}, {'blockNum': '0xb17582', 'uniqueId': '0x19825267e7849282dfcafe143c1a255cc38ffd7fe0e2ec627397f2dfac74c932:log:201', 'hash': '0x19825267e7849282dfcafe143c1a255cc38ffd7fe0e2ec627397f2dfac74c932', 'from': '0xab8fd6726562da863192baffa24a381a5c508fb8', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1566.234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x54e7dcf4bc93290000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:58:35.000Z'}}, {'blockNum': '0xb1758a', 'uniqueId': '0x71506de094a1bdff16ced593a4ba962cc960e7e8a4a7a8b660c59c9d361bfc1c:log:165', 'hash': '0x71506de094a1bdff16ced593a4ba962cc960e7e8a4a7a8b660c59c9d361bfc1c', 'from': '0x0d67f2149c4dcf9f64de691393e5dce52f078993', 'to': '0xece4cd91ba08059af6cc64990c818f24f9510ef1', 'value': 612.89367439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x21399bbd9b9be0a000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:59:42.000Z'}}, {'blockNum': '0xb175dd', 'uniqueId': '0xcac72cdb21004122e982450ebbf895c0b8efc5800c6b2fba6928821e76a67dbb:log:248', 'hash': '0xcac72cdb21004122e982450ebbf895c0b8efc5800c6b2fba6928821e76a67dbb', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x9814e96844f7aa22eda9835c69e5b1ea7518a2ff', 'value': 165011.10894802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x22f14527e9e64d810800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:19:47.000Z'}}, {'blockNum': '0xb175e9', 'uniqueId': '0x949527c3160b11fa546410863233960badc9e009a198895f8b797dc33857a9b6:log:2', 'hash': '0x949527c3160b11fa546410863233960badc9e009a198895f8b797dc33857a9b6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 67186.99629158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e3a36e0c33ab924d800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:12.000Z'}}, {'blockNum': '0xb175ea', 'uniqueId': '0x26bf66b8639f35d51d44b80246b4b5357a3db0cbe2a5fe5cd0773cfbd78f60fa:log:10', 'hash': '0x26bf66b8639f35d51d44b80246b4b5357a3db0cbe2a5fe5cd0773cfbd78f60fa', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 67186.99629158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e3a36e0c33ab924d800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:18.000Z'}}, {'blockNum': '0xb175ea', 'uniqueId': '0xe625bd5621964c482cb14031f41e8e3dabfe5c95b77059417cacdb4c16e97abf:log:16', 'hash': '0xe625bd5621964c482cb14031f41e8e3dabfe5c95b77059417cacdb4c16e97abf', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 53419.77635714265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b4fe4522eb74a41a01e', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:18.000Z'}}, {'blockNum': '0xb175ea', 'uniqueId': '0xe625bd5621964c482cb14031f41e8e3dabfe5c95b77059417cacdb4c16e97abf:log:20', 'hash': '0xe625bd5621964c482cb14031f41e8e3dabfe5c95b77059417cacdb4c16e97abf', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 53419.77635714265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b4fe4522eb74a41a01e', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:18.000Z'}}, {'blockNum': '0xb175ed', 'uniqueId': '0x248d892272a84080afa4a5610f9192b97944d1b0c07bbd964d3d80377a1a2be4:log:156', 'hash': '0x248d892272a84080afa4a5610f9192b97944d1b0c07bbd964d3d80377a1a2be4', 'from': '0x9fb2aa415c5630d5e93a0a6ba748d0dd85eccd9e', 'to': '0x5af4ba384f81f490409e06e0f8f782153b0fcdce', 'value': 60.68206642663538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034a2201e85c426bba', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:50.000Z'}}, {'blockNum': '0xb175f2', 'uniqueId': '0x52ca089ca636345937ceac493a8921bf48fe7f6565357ff634230a97c4125f1e:log:197', 'hash': '0x52ca089ca636345937ceac493a8921bf48fe7f6565357ff634230a97c4125f1e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 4109.342896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xdec496b7ae22fb0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:24:26.000Z'}}, {'blockNum': '0xb175f3', 'uniqueId': '0x28da862e501fe45e9fa01bb7e2a325c5b3320e8619fe8ae5a6a8d838e4b2014b:log:245', 'hash': '0x28da862e501fe45e9fa01bb7e2a325c5b3320e8619fe8ae5a6a8d838e4b2014b', 'from': '0x9fb2aa415c5630d5e93a0a6ba748d0dd85eccd9e', 'to': '0x5af4ba384f81f490409e06e0f8f782153b0fcdce', 'value': 4745.1109335733645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01013ba48568e6941446', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:24:43.000Z'}}, {'blockNum': '0xb17607', 'uniqueId': '0x92ab21233993da8fe8a4e7f641a5e9cc57cf47fd2b36480494594634921faa18:log:8', 'hash': '0x92ab21233993da8fe8a4e7f641a5e9cc57cf47fd2b36480494594634921faa18', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 53952.08800001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b6cbfa109988b47e400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:27:42.000Z'}}, {'blockNum': '0xb17609', 'uniqueId': '0xb165a67b5c9a2f9499d59e735a60c69d402b6110530b4c135b844c3a02098b3f:log:125', 'hash': '0xb165a67b5c9a2f9499d59e735a60c69d402b6110530b4c135b844c3a02098b3f', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 53952.08800001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b6cbfa109988b47e400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:28:06.000Z'}}, {'blockNum': '0xb1760f', 'uniqueId': '0x080a69fbdcdb9642139ec8dfcfa1f7b2396044108e4ae9ee39cf846d31d33755:log:258', 'hash': '0x080a69fbdcdb9642139ec8dfcfa1f7b2396044108e4ae9ee39cf846d31d33755', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 14723.26042783048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x031e2648b7ef51a4ca0a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:28:51.000Z'}}, {'blockNum': '0xb17616', 'uniqueId': '0x120d43c35329653f45b114530511ceb2350a48869c419f2d279bf444406c6910:log:104', 'hash': '0x120d43c35329653f45b114530511ceb2350a48869c419f2d279bf444406c6910', 'from': '0xf65b529b0c128e56590da2457fe9cd3a06be5339', 'to': '0xe444fbae06f47fd3ae6392dd8de367c1f3993817', 'value': 1457.82026815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x4f0752020505751c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:31:01.000Z'}}, {'blockNum': '0xb17716', 'uniqueId': '0xfd9e1ec7ef419d1c4b705c3c5cae9f7c383a93c243f0fcfcfa1b99567d663e3d:log:38', 'hash': '0xfd9e1ec7ef419d1c4b705c3c5cae9f7c383a93c243f0fcfcfa1b99567d663e3d', 'from': '0xcfe48ddaf52c004f409234779aed9774435b4769', 'to': '0x8e1772a840f297bdd126aa3642d982c4e6b4e446', 'value': 2031.68195196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6e234042fecc0a7000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:29:45.000Z'}}, {'blockNum': '0xb17724', 'uniqueId': '0xaac118f2c1e82106ed93aad1f4522a511cc70b135b7bd46a44104982b0b7f852:log:185', 'hash': '0xaac118f2c1e82106ed93aad1f4522a511cc70b135b7bd46a44104982b0b7f852', 'from': '0x8e1772a840f297bdd126aa3642d982c4e6b4e446', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2031.68195196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6e234042fecc0a7000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:32:26.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:269', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x3b4503cba9add1194dd8098440e4be91c4c37806', 'value': 81451.0619230438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x113f788dd8c97ad96524', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:272', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0x3b4503cba9add1194dd8098440e4be91c4c37806', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 81451.0619230438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x113f788dd8c97ad96524', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:273', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0x482579f93dc13e6b434e38b5a0447ca543d88a46', 'value': 346.16701317293615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x12c4084868cad37be2', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:274', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0x6f52a45c54518e5726dfd76d6472ce4f8cd3dc06', 'value': 61.08829644228285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034fc539f4600733fb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:276', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0x36fee39920fb5dc096a3f0f47a00c8f3a294c334', 'value': 81043.80661342858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x112964c0566c4ffeb547', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb17730', 'uniqueId': '0x85467adf8ba681b408e73d5a32753b6dd1fece277909a9743dae8a8b982262d6:log:186', 'hash': '0x85467adf8ba681b408e73d5a32753b6dd1fece277909a9743dae8a8b982262d6', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 17244.143894180488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a6ce91e45dfd2d4c21', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:58.000Z'}}, {'blockNum': '0xb17736', 'uniqueId': '0x7eab6821523c90413f3eea6e53f46299687483e8747cabf6ff00d67412b51797:log:16', 'hash': '0x7eab6821523c90413f3eea6e53f46299687483e8747cabf6ff00d67412b51797', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 59204.538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0c897c03ffe9fbb90000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:35:00.000Z'}}, {'blockNum': '0xb1781a', 'uniqueId': '0xf307318dbbd9be6ef78486723028984d949d46478c7e440f9ca9f4bcc8425091:log:134', 'hash': '0xf307318dbbd9be6ef78486723028984d949d46478c7e440f9ca9f4bcc8425091', 'from': '0x000906be4787eb60019d9e7b89ce1bd6908a4a15', 'to': '0x462ffbfe4ef60725fc6230c14c0fad15b5042d77', 'value': 17296.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a9a73d0d6bb4410000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:25:48.000Z'}}, {'blockNum': '0xb17839', 'uniqueId': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484:log:21', 'hash': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484', 'from': '0x998899462fd6f7a07525f416a7366f3971419609', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 18399.25031133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03e56ce442bfa003d400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:34:40.000Z'}}, {'blockNum': '0xb17839', 'uniqueId': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484:log:22', 'hash': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x11ededebf63bef0ea2d2d071bdf88f71543ec6fb', 'value': 160.9934402241375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08ba3b98e76fccd560', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:34:40.000Z'}}, {'blockNum': '0xb17839', 'uniqueId': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484:log:23', 'hash': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 18238.256871105863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03dcb2a8a9d83036fea0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:34:40.000Z'}}, {'blockNum': '0xb17852', 'uniqueId': '0x70b213d7ea9da9ecb98d2bca27c3576602bb95012c62e31db1a7dab8241a06df:log:6', 'hash': '0x70b213d7ea9da9ecb98d2bca27c3576602bb95012c62e31db1a7dab8241a06df', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 555954.049656898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x75ba54550026f3cd49d5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:39:25.000Z'}}, {'blockNum': '0xb178bf', 'uniqueId': '0x129d047ffef8bd46604992eb1a531195dea805e5c2e27632c4cdb66d913a894c:log:328', 'hash': '0x129d047ffef8bd46604992eb1a531195dea805e5c2e27632c4cdb66d913a894c', 'from': '0x97f0b8d84194f1b1c57655e0dcc8ee6af1d6248d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55424.72394904649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0bbc948eeae2897c75fb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:01:36.000Z'}}, {'blockNum': '0xb17904', 'uniqueId': '0xeb5d4987c4acfc82ac316848403a6559d984bbaa3dca90556c62896c3613431e:log:75', 'hash': '0xeb5d4987c4acfc82ac316848403a6559d984bbaa3dca90556c62896c3613431e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x15fac9da65e3ad2c944314c7e0243e877fa109ba', 'value': 4246.194906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xe62fcab9b3c32fa000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:16:45.000Z'}}, {'blockNum': '0xb1794b', 'uniqueId': '0xd61fa6d7c3f499c50871472ab2e08a5ff9e1523373cac6e84d4832a2548513fa:log:87', 'hash': '0xd61fa6d7c3f499c50871472ab2e08a5ff9e1523373cac6e84d4832a2548513fa', 'from': '0x108803bdad7ee8bde969cf7166cbe5185f0917d6', 'to': '0x4f91a47ee8dd4c20dbf1752f711797620c5121b1', 'value': 12819.48050432018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02b6f207be2919c515ce', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:31:00.000Z'}}, {'blockNum': '0xb17961', 'uniqueId': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7:log:169', 'hash': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'value': 609.3897162424287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2108fb2e3cc60ce824', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:35:10.000Z'}}, {'blockNum': '0xb17961', 'uniqueId': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7:log:171', 'hash': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7', 'from': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 609.3897162424287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2108fb2e3cc60ce824', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:35:10.000Z'}}, {'blockNum': '0xb17961', 'uniqueId': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7:log:172', 'hash': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0xf044ed1ada426092f1ddfb5b0ee83feb73ac5dbc', 'value': 609.3897162424287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2108fb2e3cc60ce824', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:35:10.000Z'}}, {'blockNum': '0xb179b1', 'uniqueId': '0xaef98e0111c129a2029856239216304ffbea36c2f4a28763bbe233e306348cdc:log:165', 'hash': '0xaef98e0111c129a2029856239216304ffbea36c2f4a28763bbe233e306348cdc', 'from': '0x4f91a47ee8dd4c20dbf1752f711797620c5121b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 12819.48050432018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02b6f207be2919c515ce', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:59:07.000Z'}}, {'blockNum': '0xb179dc', 'uniqueId': '0xad20ec1a8e440446bd68183152dfa6f3260af31ca16ca8d40b368e623228e8b8:log:35', 'hash': '0xad20ec1a8e440446bd68183152dfa6f3260af31ca16ca8d40b368e623228e8b8', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x31cfd1e93e836a7a9f608554a8f24b826ad72758', 'value': 9787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02128de8c6406c0c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T03:08:32.000Z'}}, {'blockNum': '0xb17a41', 'uniqueId': '0xab7893aa88a823e46dff278b1eff6d15ab0487971b61066f1370c607cab98762:log:146', 'hash': '0xab7893aa88a823e46dff278b1eff6d15ab0487971b61066f1370c607cab98762', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 31093.20119078327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069590d9302d55a4a0d7', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T03:29:21.000Z'}}, {'blockNum': '0xb17a4a', 'uniqueId': '0x3b26dd69cb2319d46cada096ff22df7c23b768cade7efd04cf9496f0fa185c7f:log:22', 'hash': '0x3b26dd69cb2319d46cada096ff22df7c23b768cade7efd04cf9496f0fa185c7f', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 59204.538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0c897c03ffe9fbb90000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T03:30:50.000Z'}}]}}
Number of returned transfers:  314
Answer is complete
 
symbol             NXS
group              TWP
date        2021-01-15
hour             17:00
exchange       binance
Name: 638, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2021-01-15 17:00:00 2021-01-15 05:00:00 2021-01-16 05:00:00
Unix timestamps:  1610683200.0 1610769600.0
Hex Block Numbers:  0xb1e081 0xb1fa74
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            APPC
group               CP
date        2020-11-27
hour             18:00
exchange       binance
Name: 639, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2020-11-27 18:00:00 2020-11-27 06:00:00 2020-11-28 06:00:00
Unix timestamps:  1606453200.0 1606539600.0
Hex Block Numbers:  0xad0339 0xad1c5f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xad0fea', 'uniqueId': '0xf493254f59f822decb59369416a44acecf1a0224a205dd2d782a582509fb4663:log:52', 'hash': '0xf493254f59f822decb59369416a44acecf1a0224a205dd2d782a582509fb4663', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xde3de8fff120f3a399db85ea2b598d44c0628317', 'value': 2.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1d4839d21c130000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T17:10:30.000Z'}}, {'blockNum': '0xad13c6', 'uniqueId': '0x0a292ad886e36d4c4f5d79912c8b5482f2560e611d1e96971be08be8a952ea1c:log:71', 'hash': '0x0a292ad886e36d4c4f5d79912c8b5482f2560e611d1e96971be08be8a952ea1c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x14f92dac20683fbfecb57441ce5adb198ddde8eb', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T20:59:24.000Z'}}, {'blockNum': '0xad1736', 'uniqueId': '0x63776b008f4111e8897c0a4b6eae762c50161c11123e2ff0a18f39f6b812ed95:log:357', 'hash': '0x63776b008f4111e8897c0a4b6eae762c50161c11123e2ff0a18f39f6b812ed95', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 8134.0781386199105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01b8f302aae1be600000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-28T00:15:23.000Z'}}]}}
Number of returned transfers:  3
Answer is complete
 
symbol             NXS
group               CP
date        2020-12-03
hour             18:00
exchange       binance
Name: 640, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-12-03 18:00:00 2020-12-03 06:00:00 2020-12-04 06:00:00
Unix timestamps:  1606971600.0 1607058000.0
Hex Block Numbers:  0xad9bbe 0xadb528
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            APPC
group               CP
date        2020-12-07
hour             16:00
exchange       binance
Name: 641, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2020-12-07 16:00:00 2020-12-07 04:00:00 2020-12-08 04:00:00
Unix timestamps:  1607310000.0 1607396400.0
Hex Block Numbers:  0xadff32 0xae18b2
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xae0483', 'uniqueId': '0x111194a0389862c70843b0256b1dd5ad71008e4bbdf3da5083e556553ab8637c:log:268', 'hash': '0x111194a0389862c70843b0256b1dd5ad71008e4bbdf3da5083e556553ab8637c', 'from': '0x37aca8dff411d7420e6d70a442bd32cecd0c6082', 'to': '0x99ddceb5b07d197e6111d59cb224127d7e7854e0', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T07:46:26.000Z'}}, {'blockNum': '0xae0488', 'uniqueId': '0x4bb62a5f610dde346e3094a4b3416a8dbaedf2b1efa89790cae7df7c85b6c2cb:log:82', 'hash': '0x4bb62a5f610dde346e3094a4b3416a8dbaedf2b1efa89790cae7df7c85b6c2cb', 'from': '0x99ddceb5b07d197e6111d59cb224127d7e7854e0', 'to': '0x21c0ff0d7df61c8f8c18631bdde315d778ea02db', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T07:47:45.000Z'}}, {'blockNum': '0xae0492', 'uniqueId': '0x175e70cb47c39d1fa44055a52986f09c548de575e5586366e9810916a7e4ce78:log:106', 'hash': '0x175e70cb47c39d1fa44055a52986f09c548de575e5586366e9810916a7e4ce78', 'from': '0x21c0ff0d7df61c8f8c18631bdde315d778ea02db', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T07:49:44.000Z'}}, {'blockNum': '0xae08a7', 'uniqueId': '0x6e00480bc3369e706a6270f8d0d296245618f109b8619eed36a94eb82aaef627:log:31', 'hash': '0x6e00480bc3369e706a6270f8d0d296245618f109b8619eed36a94eb82aaef627', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd09ee7b930e829ec9349a1d8fd3e6441d508a3a0', 'value': 39529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x085edf130261d0040000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T11:48:44.000Z'}}, {'blockNum': '0xae08cc', 'uniqueId': '0x2d39d871208d11da81a180289abe325131aa1bc8e95da8a4b715898c96b10df2:log:36', 'hash': '0x2d39d871208d11da81a180289abe325131aa1bc8e95da8a4b715898c96b10df2', 'from': '0xd09ee7b930e829ec9349a1d8fd3e6441d508a3a0', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 39529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x085edf130261d0040000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T11:54:42.000Z'}}, {'blockNum': '0xae08d0', 'uniqueId': '0x6a4f25849c167b8699bfe9d4bf03e4ce14c360023324865c4bc629435738e2e6:log:20', 'hash': '0x6a4f25849c167b8699bfe9d4bf03e4ce14c360023324865c4bc629435738e2e6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbb879307511f899bedff5b7d0cdf67638f8e7b6a', 'value': 119183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x193cec62616724dc0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T11:55:11.000Z'}}, {'blockNum': '0xae08df', 'uniqueId': '0x028fd98660a19b1bcd06e178b9b0dacb4f08d5796f0b7050b4e6383c4417fedb:log:70', 'hash': '0x028fd98660a19b1bcd06e178b9b0dacb4f08d5796f0b7050b4e6383c4417fedb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd09ee7b930e829ec9349a1d8fd3e6441d508a3a0', 'value': 58113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0c4e4fe2042153640000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T11:57:24.000Z'}}, {'blockNum': '0xae08f5', 'uniqueId': '0x96c2269ceca5deeb0291411e239caea44dcbc69273379c9daa3db813117a4b53:log:145', 'hash': '0x96c2269ceca5deeb0291411e239caea44dcbc69273379c9daa3db813117a4b53', 'from': '0xbb879307511f899bedff5b7d0cdf67638f8e7b6a', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 119183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x193cec62616724dc0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T12:02:45.000Z'}}, {'blockNum': '0xae0904', 'uniqueId': '0x41cc25afeb08c499e0ca701dcc785f876dc749c924304b11c2e2b952689613d4:log:168', 'hash': '0x41cc25afeb08c499e0ca701dcc785f876dc749c924304b11c2e2b952689613d4', 'from': '0xd09ee7b930e829ec9349a1d8fd3e6441d508a3a0', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 58113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0c4e4fe2042153640000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T12:05:27.000Z'}}, {'blockNum': '0xae0af5', 'uniqueId': '0x1e85c8c65f3e82ca0034baac0c50bff310ccc0dd830a8d251e15dbaf2b5fb201:log:134', 'hash': '0x1e85c8c65f3e82ca0034baac0c50bff310ccc0dd830a8d251e15dbaf2b5fb201', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x83c21d96466ae1c1290557c86abc185f5c998e04', 'value': 450000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x5f4a8c8375d155400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T13:54:58.000Z'}}, {'blockNum': '0xae0b0c', 'uniqueId': '0x486e7b0daa71d45b9e7fda82196ff47f0b866d34a7011e4fbd87fe15797f13cc:log:245', 'hash': '0x486e7b0daa71d45b9e7fda82196ff47f0b866d34a7011e4fbd87fe15797f13cc', 'from': '0x83c21d96466ae1c1290557c86abc185f5c998e04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 450000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x5f4a8c8375d155400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T13:59:34.000Z'}}, {'blockNum': '0xae0c21', 'uniqueId': '0xe60d1705081f8d425bfa3d1a20dcb7a2775d16ceb4b979f917798da0885813cf:log:57', 'hash': '0xe60d1705081f8d425bfa3d1a20dcb7a2775d16ceb4b979f917798da0885813cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 4295.16684004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe8d769fc3f453f1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T15:04:28.000Z'}}, {'blockNum': '0xae0c2a', 'uniqueId': '0xf60e6ce2513a2115a14352b08ceda215bb721723571c2f543b62be932c818504:log:206', 'hash': '0xf60e6ce2513a2115a14352b08ceda215bb721723571c2f543b62be932c818504', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5897e688e9a9e85e2734d5a943a969efdca938e4', 'value': 4210.66684004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe442bdadf284bd1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T15:07:11.000Z'}}, {'blockNum': '0xae0ce1', 'uniqueId': '0x2b2fa206a9887884ea4c72c4a035ea42384d1004166a3a39c184f974e3d54105:log:197', 'hash': '0x2b2fa206a9887884ea4c72c4a035ea42384d1004166a3a39c184f974e3d54105', 'from': '0xee1ad4fb3aaaa8a894ac6a328764c7857f06dbf2', 'to': '0x3ee4e60f047da26767e2068b4638ae9e38bc001b', 'value': 1024.2900000000006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x3786e1181438e670ad', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T15:46:10.000Z'}}, {'blockNum': '0xae1089', 'uniqueId': '0x38f8c43a104ec97da412ff6d55dffc8a062c08947e8e8856a64b9f505045b4bf:log:76', 'hash': '0x38f8c43a104ec97da412ff6d55dffc8a062c08947e8e8856a64b9f505045b4bf', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0xeff348580a5d0c5a0deb083c9c78ee907968844b', 'value': 590.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x2003aa97143ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T19:10:46.000Z'}}, {'blockNum': '0xae116b', 'uniqueId': '0x0bda8712260c2f54a25c60bf7b1435fb4e6e78e1dc8ae96c67b71852d404a428:log:140', 'hash': '0x0bda8712260c2f54a25c60bf7b1435fb4e6e78e1dc8ae96c67b71852d404a428', 'from': '0x58cea23819a23127b0e78780a7634fc10c3f7ed6', 'to': '0x28e7ee3caee90032be9fcbcc17c1572d4b97518c', 'value': 12052.361783045157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x028d5c1e9187b415c152', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T20:02:56.000Z'}}, {'blockNum': '0xae1675', 'uniqueId': '0x20821a15ad7a147c1c9865458439ce2fe258e95cb576ae32273caf5ff247478f:log:38', 'hash': '0x20821a15ad7a147c1c9865458439ce2fe258e95cb576ae32273caf5ff247478f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x175e485af54c94ae8369528eec5e460cee661aa1', 'value': 3177.7965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xac44c91810039d4000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-08T00:55:27.000Z'}}, {'blockNum': '0xae17fa', 'uniqueId': '0x31e0818b0233e600e30ecd77695b0a64b4897a9a35db2a1e2d86731431fe7e82:log:2', 'hash': '0x31e0818b0233e600e30ecd77695b0a64b4897a9a35db2a1e2d86731431fe7e82', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0f1ab515993ff1abc2a6fdbe04cccd1e2b646a29', 'value': 61769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0d14811339cfdf840000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-08T02:20:02.000Z'}}, {'blockNum': '0xae1818', 'uniqueId': '0xd99ecf532f5d7bb57a210458e3bd73c141fa635abeb9f79beb8de0de3af3cd2e:log:16', 'hash': '0xd99ecf532f5d7bb57a210458e3bd73c141fa635abeb9f79beb8de0de3af3cd2e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x806a1e9735d20872cd3d09c01e8ad09c646bffae', 'value': 35159.638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x077201fedd410daf0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-08T02:25:49.000Z'}}, {'blockNum': '0xae181e', 'uniqueId': '0x39be63ba601e6717475e31a5ffa47f9a96bb2eb9b7cbecd72f546781778d66ea:log:290', 'hash': '0x39be63ba601e6717475e31a5ffa47f9a96bb2eb9b7cbecd72f546781778d66ea', 'from': '0x0f1ab515993ff1abc2a6fdbe04cccd1e2b646a29', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 61769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0d14811339cfdf840000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-08T02:27:07.000Z'}}, {'blockNum': '0xae1821', 'uniqueId': '0x22e0c45d1707eab5e72d9072ac44bc4fc0676cec5090d915784694ec80846c48:log:1', 'hash': '0x22e0c45d1707eab5e72d9072ac44bc4fc0676cec5090d915784694ec80846c48', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d6f519ae85a2435817ccdf955491047a2cd8bef', 'value': 537944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x71ea00af3a893e600000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-08T02:28:02.000Z'}}, {'blockNum': '0xae183f', 'uniqueId': '0x83d954f761cb5d34b8740ee317d45cfd52ba5e8b3ac62ad24867b252c6011cc9:log:80', 'hash': '0x83d954f761cb5d34b8740ee317d45cfd52ba5e8b3ac62ad24867b252c6011cc9', 'from': '0x806a1e9735d20872cd3d09c01e8ad09c646bffae', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 35159.638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x077201fedd410daf0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-08T02:34:16.000Z'}}, {'blockNum': '0xae184c', 'uniqueId': '0xbfd561aa73523c5c0401853d016095a29279f6ab0a7522b21c83fd8deaa2457c:log:243', 'hash': '0xbfd561aa73523c5c0401853d016095a29279f6ab0a7522b21c83fd8deaa2457c', 'from': '0x8d6f519ae85a2435817ccdf955491047a2cd8bef', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 537944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x71ea00af3a893e600000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-08T02:35:59.000Z'}}]}}
Number of returned transfers:  23
Answer is complete
 
symbol             NAV
group               CP
date        2020-12-20
hour             19:00
exchange       binance
Name: 642, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2020-12-20 19:00:00 2020-12-20 07:00:00 2020-12-21 07:00:00
Unix timestamps:  1608444000.0 1608530400.0
Hex Block Numbers:  0xaf4cd0 0xaf660c
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NXS
group               CP
date        2020-12-27
hour             18:00
exchange       binance
Name: 643, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-12-27 18:00:00 2020-12-27 06:00:00 2020-12-28 06:00:00
Unix timestamps:  1609045200.0 1609131600.0
Hex Block Numbers:  0xaffdeb 0xb0177a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SNM
group               CP
date        2021-01-08
hour             21:00
exchange       binance
Name: 644, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2021-01-08 21:00:00 2021-01-08 09:00:00 2021-01-09 09:00:00
Unix timestamps:  1610092800.0 1610179200.0
Hex Block Numbers:  0xb13291 0xb14c3a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol           SNGLS
group               CP
date        2021-01-11
hour             21:00
exchange       binance
Name: 645, dtype: object
HERE
 Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps:  2021-01-11 21:00:00 2021-01-11 09:00:00 2021-01-12 09:00:00
Unix timestamps:  1610352000.0 1610438400.0
Hex Block Numbers:  0xb17f06 0xb198a0
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb1839b', 'uniqueId': '0x9f0986abab7d42f75400d18e4953bbcdb59f3970c087fa4c604922dd19678b0a:log:116', 'hash': '0x9f0986abab7d42f75400d18e4953bbcdb59f3970c087fa4c604922dd19678b0a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x708396f17127c42383e3b9014072679b2f60b82f', 'value': 166666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x028b0a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2021-01-11T12:14:33.000Z'}}, {'blockNum': '0xb1839b', 'uniqueId': '0xa17b67ab6f2c3de24b3cfe239e7c4a750c1e054cc4f9aa4162288153c10d972f:log:117', 'hash': '0xa17b67ab6f2c3de24b3cfe239e7c4a750c1e054cc4f9aa4162288153c10d972f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x85b931a32a0725be14285b66f1a22178c672d69b', 'value': 166666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x028b0a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2021-01-11T12:14:33.000Z'}}, {'blockNum': '0xb18d26', 'uniqueId': '0xde34ab2351bc7500c735cee31eeb34b26c4aad0f34c4d2079cde1019a01d9cde:log:43', 'hash': '0xde34ab2351bc7500c735cee31eeb34b26c4aad0f34c4d2079cde1019a01d9cde', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'value': 198576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0307b0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2021-01-11T21:11:32.000Z'}}]}}
Number of returned transfers:  3
Answer is complete
 
symbol            APPC
group               CP
date        2021-01-13
hour             21:00
exchange       binance
Name: 646, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2021-01-13 21:00:00 2021-01-13 09:00:00 2021-01-14 09:00:00
Unix timestamps:  1610524800.0 1610611200.0
Hex Block Numbers:  0xb1b202 0xb1cbba
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb1b32d', 'uniqueId': '0x996f1615b353ea56db26880d1e4d0524b3528d12af22556d461dfaa7e52c7698:log:14', 'hash': '0x996f1615b353ea56db26880d1e4d0524b3528d12af22556d461dfaa7e52c7698', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 309.8458443440368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x10cbf991cc194a06e4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T09:08:46.000Z'}}, {'blockNum': '0xb1b32d', 'uniqueId': '0x996f1615b353ea56db26880d1e4d0524b3528d12af22556d461dfaa7e52c7698:log:15', 'hash': '0x996f1615b353ea56db26880d1e4d0524b3528d12af22556d461dfaa7e52c7698', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 36.45245227576903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01f9e120362117c493', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T09:08:46.000Z'}}, {'blockNum': '0xb1b32d', 'uniqueId': '0x996f1615b353ea56db26880d1e4d0524b3528d12af22556d461dfaa7e52c7698:log:16', 'hash': '0x996f1615b353ea56db26880d1e4d0524b3528d12af22556d461dfaa7e52c7698', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.226226137884517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xfcf0901b108be249', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T09:08:46.000Z'}}, {'blockNum': '0xb1b40d', 'uniqueId': '0xce9fb3aa873d3768491c4baea0f21467a99be17f96fd9d80bb12d821912d7591:log:111', 'hash': '0xce9fb3aa873d3768491c4baea0f21467a99be17f96fd9d80bb12d821912d7591', 'from': '0xca8b4d880e2a302e0926903bbf2be5040e1eb648', 'to': '0x6c7e64e1da7c51c69bfc7f7563454dad63ad2bfe', 'value': 1060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x3976747fe11a100000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T10:00:52.000Z'}}, {'blockNum': '0xb1b434', 'uniqueId': '0x51cacd8919fd9f998f68d9bfb9a03dddd9810b7ca31a02400e038d240416cd0a:log:236', 'hash': '0x51cacd8919fd9f998f68d9bfb9a03dddd9810b7ca31a02400e038d240416cd0a', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0xe969a99ef7929033a9e6fcd42c0e33a93a820660', 'value': 32.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c5aa35cd0b850000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T10:09:23.000Z'}}, {'blockNum': '0xb1b658', 'uniqueId': '0xc32d0fb0d55ccf570185944158560dc2171c046a33e362822e2836f73d24a1c9:log:94', 'hash': '0xc32d0fb0d55ccf570185944158560dc2171c046a33e362822e2836f73d24a1c9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9e8a4249859c1831f6d7d62a75024d6530f3c871', 'value': 14706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x031d36bf5c45ce880000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T12:17:40.000Z'}}, {'blockNum': '0xb1b732', 'uniqueId': '0x271b7bdf00c3d3a52ce9c1c4f579701eebd445bf319ecadc4e1432d66fadb11e:log:224', 'hash': '0x271b7bdf00c3d3a52ce9c1c4f579701eebd445bf319ecadc4e1432d66fadb11e', 'from': '0x9e8a4249859c1831f6d7d62a75024d6530f3c871', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 1529.059090956669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x52e3f525ec3df665da', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T13:07:58.000Z'}}, {'blockNum': '0xb1b732', 'uniqueId': '0x271b7bdf00c3d3a52ce9c1c4f579701eebd445bf319ecadc4e1432d66fadb11e:log:225', 'hash': '0x271b7bdf00c3d3a52ce9c1c4f579701eebd445bf319ecadc4e1432d66fadb11e', 'from': '0x9e8a4249859c1831f6d7d62a75024d6530f3c871', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 179.88930481843164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x09c07731a352957564', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T13:07:58.000Z'}}, {'blockNum': '0xb1b732', 'uniqueId': '0x271b7bdf00c3d3a52ce9c1c4f579701eebd445bf319ecadc4e1432d66fadb11e:log:226', 'hash': '0x271b7bdf00c3d3a52ce9c1c4f579701eebd445bf319ecadc4e1432d66fadb11e', 'from': '0x9e8a4249859c1831f6d7d62a75024d6530f3c871', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 89.94465240921582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x04e03b98d1a94abab2', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T13:07:58.000Z'}}, {'blockNum': '0xb1b73d', 'uniqueId': '0xb4c3d189965e9bf5bf6782f2954d59d2130a7fc44a5a9afc76473bff933fbc3d:log:86', 'hash': '0xb4c3d189965e9bf5bf6782f2954d59d2130a7fc44a5a9afc76473bff933fbc3d', 'from': '0x9e8a4249859c1831f6d7d62a75024d6530f3c871', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 1529.059090956669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x52e3f525ec3df665da', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T13:10:32.000Z'}}, {'blockNum': '0xb1b73d', 'uniqueId': '0xb4c3d189965e9bf5bf6782f2954d59d2130a7fc44a5a9afc76473bff933fbc3d:log:87', 'hash': '0xb4c3d189965e9bf5bf6782f2954d59d2130a7fc44a5a9afc76473bff933fbc3d', 'from': '0x9e8a4249859c1831f6d7d62a75024d6530f3c871', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 179.88930481843164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x09c07731a352957564', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T13:10:32.000Z'}}, {'blockNum': '0xb1b73d', 'uniqueId': '0xb4c3d189965e9bf5bf6782f2954d59d2130a7fc44a5a9afc76473bff933fbc3d:log:88', 'hash': '0xb4c3d189965e9bf5bf6782f2954d59d2130a7fc44a5a9afc76473bff933fbc3d', 'from': '0x9e8a4249859c1831f6d7d62a75024d6530f3c871', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 89.94465240921582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x04e03b98d1a94abab2', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T13:10:32.000Z'}}, {'blockNum': '0xb1b784', 'uniqueId': '0x79e9022a899b32465f67810778dbb7a80a1ae58cb000ee1629949d2f9d5850f2:log:63', 'hash': '0x79e9022a899b32465f67810778dbb7a80a1ae58cb000ee1629949d2f9d5850f2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3cca540d2b9857626f5af53e4d68072532e4373c', 'value': 49292.4425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0a70260ebb325bcc4000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T13:24:27.000Z'}}, {'blockNum': '0xb1b7e7', 'uniqueId': '0x708a6a00a274194996de85ef8d74b9ee0c487a39f7324432c95ab2c16ed9bf9a:log:160', 'hash': '0x708a6a00a274194996de85ef8d74b9ee0c487a39f7324432c95ab2c16ed9bf9a', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd13fe5884ae63c707c2e6fba123e4f5637a42491', 'value': 34542.53484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07508df806c96aa38000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T13:45:05.000Z'}}, {'blockNum': '0xb1b80d', 'uniqueId': '0x22885db89c4b5179474cde09e213411add9055e2f8fa5e2fbf2dfbe93aed90cb:log:283', 'hash': '0x22885db89c4b5179474cde09e213411add9055e2f8fa5e2fbf2dfbe93aed90cb', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcb49c1ead14734eea096fdff618a1665d1ec25e0', 'value': 33317.184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x070e20cf55fe68200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T13:53:27.000Z'}}, {'blockNum': '0xb1b82a', 'uniqueId': '0xda594c247057d7f1e864545e1e629205bb5ce9bab04a099b9c8a3f72efc89722:log:34', 'hash': '0xda594c247057d7f1e864545e1e629205bb5ce9bab04a099b9c8a3f72efc89722', 'from': '0xd13fe5884ae63c707c2e6fba123e4f5637a42491', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34542.53484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07508df806c96aa38000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T14:01:21.000Z'}}, {'blockNum': '0xb1b943', 'uniqueId': '0xc39cefba1bf91dd201bbe140dd4a31ef353837884cab1e09895610a14fced10e:log:206', 'hash': '0xc39cefba1bf91dd201bbe140dd4a31ef353837884cab1e09895610a14fced10e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3a56e526f7502e0fce70650d33276b1c56cf9b3d', 'value': 474.577999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x19ba17bfab22aff000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T14:58:04.000Z'}}, {'blockNum': '0xb1bac6', 'uniqueId': '0xcabe4c2b2f9ff19bc3cc7b6bc876510b4609836361fdf5519f5a79432e25739e:log:190', 'hash': '0xcabe4c2b2f9ff19bc3cc7b6bc876510b4609836361fdf5519f5a79432e25739e', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xd13fe5884ae63c707c2e6fba123e4f5637a42491', 'value': 33821.70304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07297a6b07d13d380000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T16:14:11.000Z'}}, {'blockNum': '0xb1bb0c', 'uniqueId': '0x14955e47ee2cd3ccd78eed612b15954e6580b3193a65bacd21b13c72ee3db01c:log:72', 'hash': '0x14955e47ee2cd3ccd78eed612b15954e6580b3193a65bacd21b13c72ee3db01c', 'from': '0xd13fe5884ae63c707c2e6fba123e4f5637a42491', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33821.70304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07297a6b07d13d380000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T16:30:04.000Z'}}, {'blockNum': '0xb1bbbb', 'uniqueId': '0xec1c41a673596868c9734d6d9c2d160ec86a32d6912a5f0641b8ed9adec5e5b1:log:289', 'hash': '0xec1c41a673596868c9734d6d9c2d160ec86a32d6912a5f0641b8ed9adec5e5b1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x00a25fbff2d0173a29ce577f1871f1f2c028e672', 'value': 1.71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x17bb23f0a5eb0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T17:10:03.000Z'}}, {'blockNum': '0xb1c027', 'uniqueId': '0xecda71782d4edef3dde0a30c854bfcbdfbbb5093dbd1249abb8b395fd6dcde8a:log:5', 'hash': '0xecda71782d4edef3dde0a30c854bfcbdfbbb5093dbd1249abb8b395fd6dcde8a', 'from': '0x1bbca5b81fa6a645fecb2a048aa1939eb04eda41', 'to': '0x6e55a6bfbc7cb7be763ef6370905463cdd7c64e1', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T21:03:52.000Z'}}, {'blockNum': '0xb1c097', 'uniqueId': '0x3ac3554b5fd82093e4eecd61e92e521e283fcb43f73146a33750084d0a0b44e8:log:99', 'hash': '0x3ac3554b5fd82093e4eecd61e92e521e283fcb43f73146a33750084d0a0b44e8', 'from': '0x6e55a6bfbc7cb7be763ef6370905463cdd7c64e1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T21:30:04.000Z'}}, {'blockNum': '0xb1c0fa', 'uniqueId': '0x4fa8afdd01730589a675c55df7e533fe6bb51f076b4f59821f70e5c9dbd204d2:log:198', 'hash': '0x4fa8afdd01730589a675c55df7e533fe6bb51f076b4f59821f70e5c9dbd204d2', 'from': '0xdcd72d19f4e20784ab7ad771ce38e3425538985b', 'to': '0x84b1f47dba0962459c5ed2840ea26e6906dd9b27', 'value': 154.517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x08605aa8d577088000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-13T21:50:04.000Z'}}, {'blockNum': '0xb1c386', 'uniqueId': '0x94b5f829958f31d7c3a8caac348a45a77bba4d9bea8688560d5a01092ecb45ec:log:72', 'hash': '0x94b5f829958f31d7c3a8caac348a45a77bba4d9bea8688560d5a01092ecb45ec', 'from': '0xb114e6753c66547be9ece10b447fbaa9ec06e523', 'to': '0xd21e10a8bd5917fa57776de4654284dcc8434f23', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-14T00:09:47.000Z'}}, {'blockNum': '0xb1c3a1', 'uniqueId': '0xb37c44ecf8df269e3aa44f31320b37a5c79c9e47f6f60a2d2b0a9ca537bd0ffe:log:257', 'hash': '0xb37c44ecf8df269e3aa44f31320b37a5c79c9e47f6f60a2d2b0a9ca537bd0ffe', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 5232.194959217036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x011ba34a9a0d08e00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-14T00:15:35.000Z'}}, {'blockNum': '0xb1c8b6', 'uniqueId': '0x91dd64ed2b8e67561a4b5f272eebd92b6f7fa0067c3dc90c07aeb7a03039f7a0:log:254', 'hash': '0x91dd64ed2b8e67561a4b5f272eebd92b6f7fa0067c3dc90c07aeb7a03039f7a0', 'from': '0xcb49c1ead14734eea096fdff618a1665d1ec25e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33317.184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x070e20cf55fe68200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-14T05:00:11.000Z'}}, {'blockNum': '0xb1c8b6', 'uniqueId': '0x2381b2dceed7bfef621d3038fd6dc64d6571ebeb446ca69a575e225c54892c46:log:259', 'hash': '0x2381b2dceed7bfef621d3038fd6dc64d6571ebeb446ca69a575e225c54892c46', 'from': '0x3cca540d2b9857626f5af53e4d68072532e4373c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 119230.815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x193f83f3629174298000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-14T05:00:11.000Z'}}]}}
Number of returned transfers:  27
Answer is complete
 
symbol             MDA
group              BPF
date        2018-06-15
hour             14:59
exchange       binance
Name: 679, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2018-06-15 14:59:00 2018-06-15 02:59:00 2018-06-16 02:59:00
Unix timestamps:  1529024340.0 1529110740.0
Hex Block Numbers:  0x585ae0 0x58716e
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x585d29', 'uniqueId': '0x28750c9bbd9673be6f015b3a1c7ed5a188e971f760d972cc0d0ffb9a9153819b:log:19', 'hash': '0x28750c9bbd9673be6f015b3a1c7ed5a188e971f760d972cc0d0ffb9a9153819b', 'from': '0x672079c6db5a5da67148c5ecd832b786aca8821f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2649.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8f9f418316d0e7ffff', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T03:24:15.000Z'}}, {'blockNum': '0x585eaf', 'uniqueId': '0x7a5dc4250aeb288064e6bc6ce388ee9b1ff74a75a7a513a6c46264ba7ab3857c:log:87', 'hash': '0x7a5dc4250aeb288064e6bc6ce388ee9b1ff74a75a7a513a6c46264ba7ab3857c', 'from': '0xc19a7f7b0ba49e8fcb592132018fd7418e3b9c00', 'to': '0x28b3e92ffb1bc9d227fe4b4b9b1186b119ea7b88', 'value': 10920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x024ff9715f5c41a00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T05:08:00.000Z'}}, {'blockNum': '0x585ef5', 'uniqueId': '0x9e7c4256c27b69dc5b5dbfefd2a80ac8ad541dcdf06750b72ddcd9297c456239:log:61', 'hash': '0x9e7c4256c27b69dc5b5dbfefd2a80ac8ad541dcdf06750b72ddcd9297c456239', 'from': '0x28b3e92ffb1bc9d227fe4b4b9b1186b119ea7b88', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x024ff9715f5c41a00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T05:28:33.000Z'}}, {'blockNum': '0x586520', 'uniqueId': '0x4c8d5284459f17a2f02e0df5d31655f61573a91802f782ae9c052b70897921d7:log:3', 'hash': '0x4c8d5284459f17a2f02e0df5d31655f61573a91802f782ae9c052b70897921d7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 4379.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xed69c58e6a1f3e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T11:55:19.000Z'}}, {'blockNum': '0x586523', 'uniqueId': '0xdb9a375e093923462f3b142b945ea46482578afb22d9376742ced0fd0497b8f7:log:43', 'hash': '0xdb9a375e093923462f3b142b945ea46482578afb22d9376742ced0fd0497b8f7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 680.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x24e3d5a88e75520000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T11:56:02.000Z'}}, {'blockNum': '0x586528', 'uniqueId': '0xcb1446ca835c6bc93cf80982d90423c9dfcec355255b9648d91924b2f39ac0e9:log:28', 'hash': '0xcb1446ca835c6bc93cf80982d90423c9dfcec355255b9648d91924b2f39ac0e9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9a477886d78884c187d438bce63e56ab9747d3b6', 'value': 3831.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xcfb4be75d7cd2e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T11:57:12.000Z'}}, {'blockNum': '0x586559', 'uniqueId': '0x71ae2d9aab60e8c76a098aeaa70f3538cc3fb5750cdc01635109acea79806a1d:log:13', 'hash': '0x71ae2d9aab60e8c76a098aeaa70f3538cc3fb5750cdc01635109acea79806a1d', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01124d9b36f894900000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T12:08:48.000Z'}}, {'blockNum': '0x58655a', 'uniqueId': '0x476dcbb70510ad183fa0ac2cfe95f0c0a3d3bdca085b262bf44b5db60c85f8e4:log:23', 'hash': '0x476dcbb70510ad183fa0ac2cfe95f0c0a3d3bdca085b262bf44b5db60c85f8e4', 'from': '0x9a477886d78884c187d438bce63e56ab9747d3b6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3831.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xcfb4be75d7cd2e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T12:08:54.000Z'}}, {'blockNum': '0x586688', 'uniqueId': '0xfeea5985e0ecdd5dc16b5aa29a79e9ade507af5346583a989e08bc6dce92f8f5:log:6', 'hash': '0xfeea5985e0ecdd5dc16b5aa29a79e9ade507af5346583a989e08bc6dce92f8f5', 'from': '0x194a0d4139bd1ea6f471dd6b7c3a241479292ac6', 'to': '0x33683b94334eebc9bd3ea85ddbda4a86fb461405', 'value': 35501.1929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x07848605a12b2fc04000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T13:24:20.000Z'}}, {'blockNum': '0x5866ea', 'uniqueId': '0x8b3f8747d2f95f4094492769b5b4dfe8785eee5591786b1cdf22b7f56f0f2021:log:23', 'hash': '0x8b3f8747d2f95f4094492769b5b4dfe8785eee5591786b1cdf22b7f56f0f2021', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdcc589c963228bc8f09fd0261d471700bb57baee', 'value': 1501.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x51657f96b649060000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-06-15T13:51:39.000Z'}}]}}
Number of returned transfers:  10
Answer is complete
 
symbol             BCD
group              BPF
date        2018-06-18
hour             15:00
exchange       binance
Name: 682, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: BCD, Contract: 
Datetime timestamps:  2018-06-18 15:00:00 2018-06-18 03:00:00 2018-06-19 03:00:00
Unix timestamps:  1529283600.0 1529370000.0
Hex Block Numbers:  0x589f98 0x58b6c8
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           SNGLS
group              BPF
date        2018-08-03
hour             15:00
exchange       binance
Name: 698, dtype: object
HERE
 Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps:  2018-08-03 15:00:00 2018-08-03 03:00:00 2018-08-04 03:00:00
Unix timestamps:  1533258000.0 1533344400.0
Hex Block Numbers:  0x5cbe01 0x5cd526
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x5cc12e', 'uniqueId': '0xd14056bc8d06f3a90f7e2ce8ad2a1e59c737e3d7643f48e02e7ba0b579b0ac43:log:74', 'hash': '0xd14056bc8d06f3a90f7e2ce8ad2a1e59c737e3d7643f48e02e7ba0b579b0ac43', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1b3cc963e98c3b96ff83782ea31d493a60bd1d6d', 'value': 74918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0124a6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T04:13:36.000Z'}}, {'blockNum': '0x5cc1ca', 'uniqueId': '0x129973e8b76de0d9c6f95cc4abe0e7d6adf965b6e107b963a62e4653dede06be:log:10', 'hash': '0x129973e8b76de0d9c6f95cc4abe0e7d6adf965b6e107b963a62e4653dede06be', 'from': '0x575b7c8275af8c4cfcf806a2031fc136b751558c', 'to': '0x7cfdb8f6a6aa2e5e4a8f90bba664abe91dcafd4c', 'value': 1947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x079b', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T04:54:19.000Z'}}, {'blockNum': '0x5cc1cb', 'uniqueId': '0x707e6ab0b6f610b085f86165db41b07a38f8448a6d3932b4c6bc65c2fc354459:log:2', 'hash': '0x707e6ab0b6f610b085f86165db41b07a38f8448a6d3932b4c6bc65c2fc354459', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x21052fa9b5d2111f1d3f02f0b04a76f6c3ba381d', 'value': 29918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x74de', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T04:54:22.000Z'}}, {'blockNum': '0x5cc1dd', 'uniqueId': '0xee99a35fe71c7679aafdd391ad82e0670aab0b46af30af1a6613eea436ad9646:log:2', 'hash': '0xee99a35fe71c7679aafdd391ad82e0670aab0b46af30af1a6613eea436ad9646', 'from': '0x21052fa9b5d2111f1d3f02f0b04a76f6c3ba381d', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 29918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x74de', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T04:58:00.000Z'}}, {'blockNum': '0x5cc263', 'uniqueId': '0x3c04decb43bdc4d8eaa8b91b171326450f84518c6aa4d0293ebd49a31b4b4781:log:1', 'hash': '0x3c04decb43bdc4d8eaa8b91b171326450f84518c6aa4d0293ebd49a31b4b4781', 'from': '0x1b3cc963e98c3b96ff83782ea31d493a60bd1d6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0124a6', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T05:33:02.000Z'}}, {'blockNum': '0x5cc32c', 'uniqueId': '0xbe28660969f951c6ab6ad8e1c4e28ec2ea21675fbceb9f29930ee41438a2f699:log:48', 'hash': '0xbe28660969f951c6ab6ad8e1c4e28ec2ea21675fbceb9f29930ee41438a2f699', 'from': '0x1f597c1cc90e90846f3685643f0721fd427c180b', 'to': '0xe8d5de767696d999201368b9590d621c0002fc5e', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T06:19:29.000Z'}}, {'blockNum': '0x5cc35e', 'uniqueId': '0x220821890a33dffe9e041ec79aa1dd2c19ed9804a35b6e5ec9b7c108bdcbd36a:log:73', 'hash': '0x220821890a33dffe9e041ec79aa1dd2c19ed9804a35b6e5ec9b7c108bdcbd36a', 'from': '0xe8d5de767696d999201368b9590d621c0002fc5e', 'to': '0x1f597c1cc90e90846f3685643f0721fd427c180b', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T06:32:40.000Z'}}, {'blockNum': '0x5cc3e6', 'uniqueId': '0xba32e76dae8d19de1d3a2e4ad3af1020150ffa825e12bc3a05b1a24e730e461d:log:0', 'hash': '0xba32e76dae8d19de1d3a2e4ad3af1020150ffa825e12bc3a05b1a24e730e461d', 'from': '0x1c49675888785bcf2ac71a066f88297eb699facd', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 52429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xcccd', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T07:08:46.000Z'}}, {'blockNum': '0x5cc5d3', 'uniqueId': '0xf6bbdfceb67544bce48b417b0304107e409d16c00a811d678b6ff9df079dd6c7:log:4', 'hash': '0xf6bbdfceb67544bce48b417b0304107e409d16c00a811d678b6ff9df079dd6c7', 'from': '0xe0347a59624cb12a4093197199aa276c0dbbce9e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 9344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x2480', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T09:12:08.000Z'}}, {'blockNum': '0x5cc649', 'uniqueId': '0xfe78f97a85a02764a48b7fadbcac2c4b9992aa5b80c0af3aaf3f09fc4f89858b:log:39', 'hash': '0xfe78f97a85a02764a48b7fadbcac2c4b9992aa5b80c0af3aaf3f09fc4f89858b', 'from': '0xe82c9c1c0d466df945e20c08f4d376abf1858125', 'to': '0x1f597c1cc90e90846f3685643f0721fd427c180b', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0a', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T09:41:00.000Z'}}, {'blockNum': '0x5cca08', 'uniqueId': '0xe0c43b3aabdc41de17fe90fa04c01a817a776c5d4acf6f1600fc45388b9b616c:log:6', 'hash': '0xe0c43b3aabdc41de17fe90fa04c01a817a776c5d4acf6f1600fc45388b9b616c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbb2fd1a684a8760890ef4b42c45baeed1e6190ad', 'value': 54738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xd5d2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T13:37:52.000Z'}}, {'blockNum': '0x5cca14', 'uniqueId': '0x20bd5b2cd05c5f1531ff5698af921c410cfee0704cf5cbe11f28f8ba9096912e:log:0', 'hash': '0x20bd5b2cd05c5f1531ff5698af921c410cfee0704cf5cbe11f28f8ba9096912e', 'from': '0xbb2fd1a684a8760890ef4b42c45baeed1e6190ad', 'to': '0x930aa9a843266bdb02847168d571e7913907dd84', 'value': 54738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xd5d2', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T13:40:07.000Z'}}, {'blockNum': '0x5ccc73', 'uniqueId': '0xd594b50c1acf8f736cdb61a2d20ca2ee1de163845e3f76456493d98a96b6625f:log:11', 'hash': '0xd594b50c1acf8f736cdb61a2d20ca2ee1de163845e3f76456493d98a96b6625f', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x1674aca0220c10afc4b70cbb2721b3613974bd9f', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0672', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T16:10:03.000Z'}}, {'blockNum': '0x5cced4', 'uniqueId': '0xde5284be68482c2719aa26eead2a7c5419b7e1aaa54fc5c55c32b552e84d22b8:log:0', 'hash': '0xde5284be68482c2719aa26eead2a7c5419b7e1aaa54fc5c55c32b552e84d22b8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x43bacfb2e5c522def447b0b75c9fe532948e1541', 'value': 620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x026c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2018-08-03T18:38:08.000Z'}}]}}
Number of returned transfers:  14
Answer is complete
 
symbol             ICN
group              BPF
date        2018-09-19
hour             18:22
exchange       binance
Name: 713, dtype: object
HERE
 Symbol: ICN, Contract: 
Datetime timestamps:  2018-09-19 18:22:00 2018-09-19 06:22:00 2018-09-20 06:22:00
Unix timestamps:  1537330920.0 1537417320.0
Hex Block Numbers:  0x610561 0x611d3f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             KMD
group              BPF
date        2018-09-20
hour             20:11
exchange       binance
Name: 715, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: KMD, Contract: 
Datetime timestamps:  2018-09-20 20:11:00 2018-09-20 08:11:00 2018-09-21 08:11:00
Unix timestamps:  1537423860.0 1537510260.0
Hex Block Numbers:  0x611f09 0x61364d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NAV
group              BPF
date        2018-09-22
hour             19:00
exchange       binance
Name: 717, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2018-09-22 19:00:00 2018-09-22 07:00:00 2018-09-23 07:00:00
Unix timestamps:  1537592400.0 1537678800.0
Hex Block Numbers:  0x614cf7 0x616492
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            DATA
group              BPF
date        2018-09-29
hour             19:00
exchange       binance
Name: 722, dtype: object
HERE
 Symbol: DATA, Contract: 0x8f693ca8d21b157107184d29d398a8d082b38b76
Datetime timestamps:  2018-09-29 19:00:00 2018-09-29 07:00:00 2018-09-30 07:00:00
Unix timestamps:  1538197200.0 1538283600.0
Hex Block Numbers:  0x61f36d 0x620b95
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol           CLOAK
group              BPF
date        2018-10-01
hour             19:00
exchange       binance
Name: 724, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CLOAK, Contract: 0xb4622193ca7c7580ac0ecc09c3b7bd74aef0318d
Datetime timestamps:  2018-10-01 19:00:00 2018-10-01 07:00:00 2018-10-02 07:00:00
Unix timestamps:  1538370000.0 1538456400.0
Hex Block Numbers:  0x622313 0x623af8
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             BRD
group              BPF
date        2018-10-04
hour             18:59
exchange       binance
Name: 725, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2018-10-04 18:59:00 2018-10-04 06:59:00 2018-10-05 06:59:00
Unix timestamps:  1538629140.0 1538715540.0
Hex Block Numbers:  0x626ac7 0x6282eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x626adc', 'uniqueId': '0x3dd1a0d257a7c95c0270d3c70b2addce526725dec745e82ad04af0f4c3c58322:log:49', 'hash': '0x3dd1a0d257a7c95c0270d3c70b2addce526725dec745e82ad04af0f4c3c58322', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x09c4c337a057699579b147afd1b98658a60b11c5', 'value': 731.14064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x27a29d5a54b3c20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:04:58.000Z'}}, {'blockNum': '0x626b51', 'uniqueId': '0x64221cb686ac8c26b114947c656f297555e8d522d2ca4a835e4e8c4f8d2afceb:log:104', 'hash': '0x64221cb686ac8c26b114947c656f297555e8d522d2ca4a835e4e8c4f8d2afceb', 'from': '0xacabdedc64be694e032d5e1da97acb73ab86c46b', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:34:52.000Z'}}, {'blockNum': '0x626b6e', 'uniqueId': '0x958eb4036aa21a6e012995e1c1022e5e3d50d9b48e02dd156b0a67c4c6e18605:log:136', 'hash': '0x958eb4036aa21a6e012995e1c1022e5e3d50d9b48e02dd156b0a67c4c6e18605', 'from': '0xc5763dbc9cab4b4f49f763a2ae1831a204cd489a', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:39:40.000Z'}}, {'blockNum': '0x626b8d', 'uniqueId': '0xecc9e1ad292414be530dbac598baa0c185678e137a596acf7f6e85edc67626e5:log:63', 'hash': '0xecc9e1ad292414be530dbac598baa0c185678e137a596acf7f6e85edc67626e5', 'from': '0xb70d3b11eb811ff61d6505124d1062d569682066', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:46:07.000Z'}}, {'blockNum': '0x626ba1', 'uniqueId': '0xcc59c7ac0e3c01516014c2eeb084ccd5ccd1b06ae695489748153ae772c7d477:log:65', 'hash': '0xcc59c7ac0e3c01516014c2eeb084ccd5ccd1b06ae695489748153ae772c7d477', 'from': '0xbd7b77f1ca0bbbb168c7f262971ce635e98c12da', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:51:10.000Z'}}, {'blockNum': '0x626baf', 'uniqueId': '0x0a6697d6dc6801ae4cf6964545fa1c95e6048983706c8e78a10cb72f9bb02bdf:log:12', 'hash': '0x0a6697d6dc6801ae4cf6964545fa1c95e6048983706c8e78a10cb72f9bb02bdf', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:54:13.000Z'}}, {'blockNum': '0x626bb0', 'uniqueId': '0x8595e50858e962cb43f06d7f654d6ef1b84e2e332a8b58999a4ddaf69266a5c7:log:56', 'hash': '0x8595e50858e962cb43f06d7f654d6ef1b84e2e332a8b58999a4ddaf69266a5c7', 'from': '0x1fd6332b5c8f1ab3cd03c458d889f13be66243b7', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:54:28.000Z'}}, {'blockNum': '0x626bbf', 'uniqueId': '0x84e54724573187cd44064df53130c20c1b869cec5f2ae2e2184061eb57378e0f:log:49', 'hash': '0x84e54724573187cd44064df53130c20c1b869cec5f2ae2e2184061eb57378e0f', 'from': '0x72d57f0be114a148d715ccc12b8c9c68f0443a2d', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:57:50.000Z'}}, {'blockNum': '0x626bcb', 'uniqueId': '0x5a5b12611d979bcc34844f67622a9c3f999d70cc97b44f4b147889264070ac34:log:72', 'hash': '0x5a5b12611d979bcc34844f67622a9c3f999d70cc97b44f4b147889264070ac34', 'from': '0x3b9887accf628f6e9078d93b6f6a81dc25222f8c', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:00:07.000Z'}}, {'blockNum': '0x626bd9', 'uniqueId': '0x688e7316f91424ef7b30f5d3085f75fe10b05e6e9629bbdb8337fdfc0ca47716:log:45', 'hash': '0x688e7316f91424ef7b30f5d3085f75fe10b05e6e9629bbdb8337fdfc0ca47716', 'from': '0x063785406203174d0ac5f8f70eaa69874217a849', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:03:25.000Z'}}, {'blockNum': '0x626be6', 'uniqueId': '0x64beaefa7edfd826e04618eacb15553058e560c81da0f1c449c9f47aae5ac110:log:67', 'hash': '0x64beaefa7edfd826e04618eacb15553058e560c81da0f1c449c9f47aae5ac110', 'from': '0x4d4fdf20f48432b9f5f5ea1ee69e1c4d6b77909e', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:06:16.000Z'}}, {'blockNum': '0x626bf6', 'uniqueId': '0x67b4dcbc9bf9741af434e7d292f6054b9298b5cc88c533765a7e955c06b44819:log:147', 'hash': '0x67b4dcbc9bf9741af434e7d292f6054b9298b5cc88c533765a7e955c06b44819', 'from': '0xd003f0f95d34dd66367fa175bda3ab018232396d', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:08:58.000Z'}}, {'blockNum': '0x626c02', 'uniqueId': '0x058f7473a1323d86ebef29953e76d32bff68fa946894ddcf9945ed930523215d:log:130', 'hash': '0x058f7473a1323d86ebef29953e76d32bff68fa946894ddcf9945ed930523215d', 'from': '0x20d64a6ee3c29ac8def6f5287027a93e4e33f892', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:12:26.000Z'}}, {'blockNum': '0x626c07', 'uniqueId': '0x342d7cc5cad3efddb54241e4325bdac699b0489fd141a6fc6a2d15eeed94c0f4:log:17', 'hash': '0x342d7cc5cad3efddb54241e4325bdac699b0489fd141a6fc6a2d15eeed94c0f4', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b6255df5f50080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:14:28.000Z'}}, {'blockNum': '0x626c0e', 'uniqueId': '0x4755f456ce0498434675289fa238fc20917ce1c4f529b70e690a8704aea626fc:log:182', 'hash': '0x4755f456ce0498434675289fa238fc20917ce1c4f529b70e690a8704aea626fc', 'from': '0x289794e726d67440394da92d5710ac91d34f62a5', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:16:00.000Z'}}, {'blockNum': '0x626c24', 'uniqueId': '0xf5e52693873f2775740ac3b3e674251652eefa6646dccaa823ed149ee92510bd:log:49', 'hash': '0xf5e52693873f2775740ac3b3e674251652eefa6646dccaa823ed149ee92510bd', 'from': '0x424f2cc3cb7dd5236065000488e50a6675dd29ac', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:20:14.000Z'}}, {'blockNum': '0x626c24', 'uniqueId': '0xae41854bd17217644fc20141027a8b9366e28fa4aa442c2615e0307cdff9e3e6:log:74', 'hash': '0xae41854bd17217644fc20141027a8b9366e28fa4aa442c2615e0307cdff9e3e6', 'from': '0xe767f58d7aa8322123d5ac374c49dc3757d51163', 'to': '0x5555a1ba00b4c156744f87596c4f386983510682', 'value': 2200.004999815428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x774333db34c1e7f1de', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:20:14.000Z'}}, {'blockNum': '0x626c33', 'uniqueId': '0x6c242b92739f927602a6416a11b584f9a2deac2084f04e835c1bfd05b74d4c69:log:10', 'hash': '0x6c242b92739f927602a6416a11b584f9a2deac2084f04e835c1bfd05b74d4c69', 'from': '0x5555a1ba00b4c156744f87596c4f386983510682', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2200.004999815428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x774333db34c1e7f1de', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:24:20.000Z'}}, {'blockNum': '0x626c3c', 'uniqueId': '0x4b042a22654070295f75ec28f03fdac80eff1cc64d714e29c3dfc21284254013:log:74', 'hash': '0x4b042a22654070295f75ec28f03fdac80eff1cc64d714e29c3dfc21284254013', 'from': '0x58f6ca07d578254138bbe565fd1d41f4fdbc30eb', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:25:48.000Z'}}, {'blockNum': '0x626ccb', 'uniqueId': '0xf2176548a4ec916c5f12abf85adeb2bb8f36a40829e50057a8c982e1a3d1ec71:log:103', 'hash': '0xf2176548a4ec916c5f12abf85adeb2bb8f36a40829e50057a8c982e1a3d1ec71', 'from': '0x7600d996e6dadfd4d54fe75e65b193ebb2c5b23d', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:57:59.000Z'}}, {'blockNum': '0x626cfb', 'uniqueId': '0xdfa9a8a49f22602c83b86a5f0adc9b83d61ea09a05fd0a846eae461294b398dd:log:5', 'hash': '0xdfa9a8a49f22602c83b86a5f0adc9b83d61ea09a05fd0a846eae461294b398dd', 'from': '0x43f39896a7dd68b2a9973eeda3f6bcbc41486dbb', 'to': '0xbe43cd014b30a1745997ef58b25d2574f4786089', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T07:09:30.000Z'}}, {'blockNum': '0x626d0d', 'uniqueId': '0xc30143328bb2e03a4ad94e4ee38577d054a7ea66d6bd962f067e2858a843ee19:log:1', 'hash': '0xc30143328bb2e03a4ad94e4ee38577d054a7ea66d6bd962f067e2858a843ee19', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T07:14:09.000Z'}}, {'blockNum': '0x626e21', 'uniqueId': '0xc54e24c6141972635027bf174b043ab72e713c4884409dece322cb7dd5d93f74:log:105', 'hash': '0xc54e24c6141972635027bf174b043ab72e713c4884409dece322cb7dd5d93f74', 'from': '0x70aed692b751d3ee391bcc71f739247a036ea146', 'to': '0xd3386456ccf20348067a838c45fcf3e5f90649a7', 'value': 28.88107381821045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0190ce2f9e8244bed4', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T08:20:45.000Z'}}, {'blockNum': '0x626e4b', 'uniqueId': '0x56ae9bb521dbb8a30ecd820a180af78f89982f93a05d813dab5c335d69af0b67:log:1', 'hash': '0x56ae9bb521dbb8a30ecd820a180af78f89982f93a05d813dab5c335d69af0b67', 'from': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 14230.433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03036eedf96f44568000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T08:29:33.000Z'}}, {'blockNum': '0x626fef', 'uniqueId': '0x05f849638ebd43bba49d9ca58736b04ca03bea069cb62604886c4fff2dee8fcc:log:48', 'hash': '0x05f849638ebd43bba49d9ca58736b04ca03bea069cb62604886c4fff2dee8fcc', 'from': '0xc88b4ef6b3b77619f95e4f4989968beb38700daa', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:07:23.000Z'}}, {'blockNum': '0x627004', 'uniqueId': '0x3bab33b7d763d556c5c870c2d5a30ad7920f292dae88ca0ca0d98ee6facc9edc:log:26', 'hash': '0x3bab33b7d763d556c5c870c2d5a30ad7920f292dae88ca0ca0d98ee6facc9edc', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 38999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x084223d8c27142fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:11:18.000Z'}}, {'blockNum': '0x627045', 'uniqueId': '0xc0ed84078570e5ff241efb8d7c43a5bb336cd739d27985501282980c7dbf7ea6:log:4', 'hash': '0xc0ed84078570e5ff241efb8d7c43a5bb336cd739d27985501282980c7dbf7ea6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:24:09.000Z'}}, {'blockNum': '0x627045', 'uniqueId': '0xd220113e946429ca7c55e7eb25075b9f5efa17aae1a2400e535f1a4db31bea61:log:22', 'hash': '0xd220113e946429ca7c55e7eb25075b9f5efa17aae1a2400e535f1a4db31bea61', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x084223d8c27142fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:24:09.000Z'}}, {'blockNum': '0x627084', 'uniqueId': '0xa56697c7c8b5e00a33091d3d2a7af9dcaef0833457be06293bcc5e735c6d2540:log:6', 'hash': '0xa56697c7c8b5e00a33091d3d2a7af9dcaef0833457be06293bcc5e735c6d2540', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:37:33.000Z'}}, {'blockNum': '0x6270c6', 'uniqueId': '0xdb5020db70bd4590bd0306b6a5c113d93ceaa3a10405c3a0f47ff4a790973d2e:log:2', 'hash': '0xdb5020db70bd4590bd0306b6a5c113d93ceaa3a10405c3a0f47ff4a790973d2e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:51:54.000Z'}}, {'blockNum': '0x627105', 'uniqueId': '0x40c46875ba8c887ce1da27285f3bdb4a4b7d3dc938c8cb630e13fdd118d88416:log:62', 'hash': '0x40c46875ba8c887ce1da27285f3bdb4a4b7d3dc938c8cb630e13fdd118d88416', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:07:48.000Z'}}, {'blockNum': '0x627146', 'uniqueId': '0xa85d16209f9b99214526f2b48e29ba4ef5291228002c31ac9c7b5ec8a6630bf6:log:13', 'hash': '0xa85d16209f9b99214526f2b48e29ba4ef5291228002c31ac9c7b5ec8a6630bf6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:22:48.000Z'}}, {'blockNum': '0x62718c', 'uniqueId': '0x210978ffdc7a0d0d93d95946448a487a2e8127c0927981fd61bfd5d91d44b5f4:log:2', 'hash': '0x210978ffdc7a0d0d93d95946448a487a2e8127c0927981fd61bfd5d91d44b5f4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:38:21.000Z'}}, {'blockNum': '0x6271d2', 'uniqueId': '0x204b94df2e4087ca1f1b14f5041b8e2243f838a39627873a53446d89ea8bc09e:log:10', 'hash': '0x204b94df2e4087ca1f1b14f5041b8e2243f838a39627873a53446d89ea8bc09e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:56:00.000Z'}}, {'blockNum': '0x627212', 'uniqueId': '0x8a0e71f5e6eb6d6bbe6efd2228d3c3b4947e8812c143ce7858aec81a1c169117:log:3', 'hash': '0x8a0e71f5e6eb6d6bbe6efd2228d3c3b4947e8812c143ce7858aec81a1c169117', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T12:12:00.000Z'}}, {'blockNum': '0x627255', 'uniqueId': '0xdd7b5f9a64f9bdbf76f25601e0ff78ebf2c6aaf4b50ec7948469298c1c39d313:log:4', 'hash': '0xdd7b5f9a64f9bdbf76f25601e0ff78ebf2c6aaf4b50ec7948469298c1c39d313', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T12:27:16.000Z'}}, {'blockNum': '0x6272ab', 'uniqueId': '0x1342b6b8d40b16929f81ef4c6f4d3578c9a05391310c452a1fa47c14796651f3:log:7', 'hash': '0x1342b6b8d40b16929f81ef4c6f4d3578c9a05391310c452a1fa47c14796651f3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T12:46:39.000Z'}}, {'blockNum': '0x6272f5', 'uniqueId': '0xe11141f6602ee5e43c3ce728e82dbc9fec840e26239257db245da6b50301e414:log:10', 'hash': '0xe11141f6602ee5e43c3ce728e82dbc9fec840e26239257db245da6b50301e414', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:03:25.000Z'}}, {'blockNum': '0x627341', 'uniqueId': '0x9072315a76fe4f5c926544d5e896d15db60c639079516491a1ffa421697fed80:log:1', 'hash': '0x9072315a76fe4f5c926544d5e896d15db60c639079516491a1ffa421697fed80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:20:55.000Z'}}, {'blockNum': '0x62736c', 'uniqueId': '0x6e00ea4768e39b0623dff6bcd3086e2dc04e3bafc9cad15db8c20dc55bb15bc4:log:103', 'hash': '0x6e00ea4768e39b0623dff6bcd3086e2dc04e3bafc9cad15db8c20dc55bb15bc4', 'from': '0x4f3fbe128c7d217ff465ef8e8fbe4f880bcb0bf5', 'to': '0x31a5b730012fa69657bd96d6daca95e643e9bf2b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:30:35.000Z'}}, {'blockNum': '0x627380', 'uniqueId': '0xfc30e7baf9d355c56cff8b6db8550ce4270bef4cf644a1af967d35ba5a252138:log:2', 'hash': '0xfc30e7baf9d355c56cff8b6db8550ce4270bef4cf644a1af967d35ba5a252138', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:37:28.000Z'}}, {'blockNum': '0x627388', 'uniqueId': '0x758d58a9f216e4d71f02167aa2d0d0e556adbd4d7d319b352e9a8a24fea2fbe0:log:14', 'hash': '0x758d58a9f216e4d71f02167aa2d0d0e556adbd4d7d319b352e9a8a24fea2fbe0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 1480.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x503f4a0f08d2be0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:40:25.000Z'}}, {'blockNum': '0x6273cf', 'uniqueId': '0x10b8701418241a494ac7bfbdb2d294418f7ac953d724c70b688debd034521730:log:4', 'hash': '0x10b8701418241a494ac7bfbdb2d294418f7ac953d724c70b688debd034521730', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1480.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x503f4a0f08d2be0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:54:09.000Z'}}, {'blockNum': '0x6273d7', 'uniqueId': '0xa0b59971dda55122358d46c29b67bba70c78667950cc2eed09017c11738f961b:log:0', 'hash': '0xa0b59971dda55122358d46c29b67bba70c78667950cc2eed09017c11738f961b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:57:16.000Z'}}, {'blockNum': '0x6273e8', 'uniqueId': '0x3e2b02c9c7d8da990878cf030480d037327d55707d2d4d626638c97b4f558ce6:log:5', 'hash': '0x3e2b02c9c7d8da990878cf030480d037327d55707d2d4d626638c97b4f558ce6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:01:10.000Z'}}, {'blockNum': '0x627416', 'uniqueId': '0x9fc73ff19d604424c520cdebfec39ac46fe6af7a0826277230f14bb2ebd0193e:log:65', 'hash': '0x9fc73ff19d604424c520cdebfec39ac46fe6af7a0826277230f14bb2ebd0193e', 'from': '0x9c5868b490eab4af7479851be9842929770db405', 'to': '0x37bde7f3739d614da032b2a02c75e273c70a7a86', 'value': 94.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051b49a0e831cc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:13:04.000Z'}}, {'blockNum': '0x62741a', 'uniqueId': '0xcb6be50d5e0307c0c66be56d2646012e4e894326291db9f76f0091830c9bc132:log:4', 'hash': '0xcb6be50d5e0307c0c66be56d2646012e4e894326291db9f76f0091830c9bc132', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:13:56.000Z'}}, {'blockNum': '0x62741b', 'uniqueId': '0x7303c5d92d66cd8f610e83eb3885639069a747b9ed63fee684ffb820d0f3584d:log:13', 'hash': '0x7303c5d92d66cd8f610e83eb3885639069a747b9ed63fee684ffb820d0f3584d', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:14:18.000Z'}}, {'blockNum': '0x627470', 'uniqueId': '0xe8e04a63c18ff9e8dfd9d1ac4d633e5dfc9a641ade54713c8ab5bb6307baee68:log:3', 'hash': '0xe8e04a63c18ff9e8dfd9d1ac4d633e5dfc9a641ade54713c8ab5bb6307baee68', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:33:29.000Z'}}, {'blockNum': '0x6274b0', 'uniqueId': '0xc9f6c696cf396f26dd5c595dd132e172b9d8ac3052a5c6fb1a96755ec49ae3ce:log:3', 'hash': '0xc9f6c696cf396f26dd5c595dd132e172b9d8ac3052a5c6fb1a96755ec49ae3ce', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:51:16.000Z'}}, {'blockNum': '0x6274e2', 'uniqueId': '0xcac64e5eb2e853b1ddd38271d4ecee40855b62ff2a69109a8a1c344925eb5951:log:66', 'hash': '0xcac64e5eb2e853b1ddd38271d4ecee40855b62ff2a69109a8a1c344925eb5951', 'from': '0x6bb5543861cf8d51511f81e9eb1e0b16898b4eb5', 'to': '0x9a0e685b21799e5fbe10d5c8c47ddf45df4fec24', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:01:49.000Z'}}, {'blockNum': '0x62750f', 'uniqueId': '0xf43d6c3d6e250090485a7e3798c9dda726a6f97d30d11ab51102f8e2eabdc4f0:log:4', 'hash': '0xf43d6c3d6e250090485a7e3798c9dda726a6f97d30d11ab51102f8e2eabdc4f0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:12:50.000Z'}}, {'blockNum': '0x627531', 'uniqueId': '0xfe3ec1c190c33cfd94b30750e5325dd7c1b4c21fc37b7486454ee3f83d8800bf:log:89', 'hash': '0xfe3ec1c190c33cfd94b30750e5325dd7c1b4c21fc37b7486454ee3f83d8800bf', 'from': '0x141b4ac269a104c9e7b36e7f25d440d8421fc985', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 3012.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa34948df35d21a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:22:01.000Z'}}, {'blockNum': '0x62754b', 'uniqueId': '0x6168a6a22608838a46be499f5ba37a4ffd18fcba554631ce71b94bf02866a32e:log:74', 'hash': '0x6168a6a22608838a46be499f5ba37a4ffd18fcba554631ce71b94bf02866a32e', 'from': '0x74f320c4785991ee35b89f34744c2e463c65618a', 'to': '0x0d8efaa204f3219ee2782363538461eea98d6c3e', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:27:25.000Z'}}, {'blockNum': '0x62756a', 'uniqueId': '0x3f57ffc30922e3f2863593a42569f4b7a2ff2c51c4ec6693428a02743667cb63:log:3', 'hash': '0x3f57ffc30922e3f2863593a42569f4b7a2ff2c51c4ec6693428a02743667cb63', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:33:59.000Z'}}, {'blockNum': '0x627580', 'uniqueId': '0x53c8b0d5cab7e57cdd6e4f2466366e4085ea1c4750029c9b96906b0df672927a:log:69', 'hash': '0x53c8b0d5cab7e57cdd6e4f2466366e4085ea1c4750029c9b96906b0df672927a', 'from': '0x3324661edc03c120f1257f0657baf7c37e3b2912', 'to': '0xa996691da05207c84f7b0ba4eca2e702c4cd84db', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:38:33.000Z'}}, {'blockNum': '0x627580', 'uniqueId': '0x4322fcfda4b0e41678eddad0e97a8ef3a7f13f2d5663a47dcd40c9c0e36b9ddc:log:117', 'hash': '0x4322fcfda4b0e41678eddad0e97a8ef3a7f13f2d5663a47dcd40c9c0e36b9ddc', 'from': '0x79b0a4775daea12c389055dc6799f7e43c218341', 'to': '0x4d08f3b180122273e9a1b87e5f7e62b1d82c74ee', 'value': 3.63549517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3273df986e7f9400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:38:33.000Z'}}, {'blockNum': '0x6275cb', 'uniqueId': '0x64d350ba1f09b05e2ee66bb3d337dc8d0f22a6259c12b4bfbd9bb8dbfba82937:log:1', 'hash': '0x64d350ba1f09b05e2ee66bb3d337dc8d0f22a6259c12b4bfbd9bb8dbfba82937', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:56:55.000Z'}}, {'blockNum': '0x6275f9', 'uniqueId': '0xa4941b85eda5b7b3c54c848b857d2a23a213c25782ea3c0ab512df7c2d330d4f:log:96', 'hash': '0xa4941b85eda5b7b3c54c848b857d2a23a213c25782ea3c0ab512df7c2d330d4f', 'from': '0xe110624bcfbed0350857ff8d438703720abfa504', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:08:38.000Z'}}, {'blockNum': '0x62760d', 'uniqueId': '0x4417eb535848586e5e797d27ceed2a87a2580724619816fcb3fa4df5d7092689:log:41', 'hash': '0x4417eb535848586e5e797d27ceed2a87a2580724619816fcb3fa4df5d7092689', 'from': '0xfab542916b58eb49ed52b4b38d22e2c8fa5fa51f', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:13:07.000Z'}}, {'blockNum': '0x62761e', 'uniqueId': '0xa6907f54f2bc2832f54d386ca4fb66e47aeea8bdf267a65406beea23d6f0364f:log:52', 'hash': '0xa6907f54f2bc2832f54d386ca4fb66e47aeea8bdf267a65406beea23d6f0364f', 'from': '0x94d21b1c8956c3de1d68111b1511f72c10f75bc5', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:16:21.000Z'}}, {'blockNum': '0x627626', 'uniqueId': '0x892a6c4f4d4ebac6b0c76a1b041a32fc634ab60d710287b5036ba07eae89edae:log:1', 'hash': '0x892a6c4f4d4ebac6b0c76a1b041a32fc634ab60d710287b5036ba07eae89edae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:18:37.000Z'}}, {'blockNum': '0x627631', 'uniqueId': '0xab52ca9ff457eaab9a0de6600f548feb565007efdb153f58519b85d69ce9644b:log:40', 'hash': '0xab52ca9ff457eaab9a0de6600f548feb565007efdb153f58519b85d69ce9644b', 'from': '0x6c489a9abdc79551ba4e6b7b60949877373fcddc', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:21:02.000Z'}}, {'blockNum': '0x62763c', 'uniqueId': '0x61a4797c390c5f746012f9795167104ee156ced4fc1a314482a08594e53b0891:log:16', 'hash': '0x61a4797c390c5f746012f9795167104ee156ced4fc1a314482a08594e53b0891', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:24:12.000Z'}}, {'blockNum': '0x62764c', 'uniqueId': '0xa270d2f45a64d232b49ee70b18544d26f69cd5ce02470596551c6ce93a4f64d3:log:141', 'hash': '0xa270d2f45a64d232b49ee70b18544d26f69cd5ce02470596551c6ce93a4f64d3', 'from': '0xb40bf34f87a00ef7bab9da3cca25de872abd2754', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:28:16.000Z'}}, {'blockNum': '0x62764f', 'uniqueId': '0xb9215964df9178f1563e67e509310199bfca00b1044e43d706a988bd1ed9a7f7:log:170', 'hash': '0xb9215964df9178f1563e67e509310199bfca00b1044e43d706a988bd1ed9a7f7', 'from': '0x31281157868fb72197711920e79ecbc2c18bf502', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:28:59.000Z'}}, {'blockNum': '0x627667', 'uniqueId': '0xc25fc80506423a8ef1003f6d3d5d1fa03f01c6a97965e3e1c2b0a4e0bdb5634a:log:170', 'hash': '0xc25fc80506423a8ef1003f6d3d5d1fa03f01c6a97965e3e1c2b0a4e0bdb5634a', 'from': '0x492be2803fe513b4ccafde5f752744cc7d477932', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:33:56.000Z'}}, {'blockNum': '0x627676', 'uniqueId': '0x70fbdac1e73d0be8745a1b2b89a93edce7c5352d1b5433ee9b12f9e9edd375c2:log:53', 'hash': '0x70fbdac1e73d0be8745a1b2b89a93edce7c5352d1b5433ee9b12f9e9edd375c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:39:12.000Z'}}, {'blockNum': '0x62767e', 'uniqueId': '0x7202d3575d5a1e35b2b53dd0fd444a5f750be6890a35fb2cc7c4ca0b12594382:log:309', 'hash': '0x7202d3575d5a1e35b2b53dd0fd444a5f750be6890a35fb2cc7c4ca0b12594382', 'from': '0x5bf13e3867b2caed4f158a773d5a8ae651080992', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:41:48.000Z'}}, {'blockNum': '0x62768c', 'uniqueId': '0xf9755cd4c858155c114ab717a25101735d79044301891d96adc0accee82cdb6b:log:131', 'hash': '0xf9755cd4c858155c114ab717a25101735d79044301891d96adc0accee82cdb6b', 'from': '0x7f37a05c4c56058ff9a58fd2f06faf3b916bcc4b', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:44:51.000Z'}}, {'blockNum': '0x6276a0', 'uniqueId': '0x06113a9297835bb4c06b2311218cfd7fec08328873abb0e2b1a044493a3b7334:log:216', 'hash': '0x06113a9297835bb4c06b2311218cfd7fec08328873abb0e2b1a044493a3b7334', 'from': '0xa29bbf9a52c9a7e36949f8d97a5cc08c886ecde7', 'to': '0x99f69c90e050347da797942929d15e746f22962c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:49:38.000Z'}}, {'blockNum': '0x6276b1', 'uniqueId': '0x4b91dcb65fc47fca4dd2a3cb236503656d873645b05d298466e9d86bd391fc10:log:130', 'hash': '0x4b91dcb65fc47fca4dd2a3cb236503656d873645b05d298466e9d86bd391fc10', 'from': '0x5cbfc7e88d2af99e0748c78cc68dacaf4fd1f89a', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:52:49.000Z'}}, {'blockNum': '0x6276b6', 'uniqueId': '0x8eee0334344dcb377a6f94bd90ee2ff4dd80970f0494410dbca899bcbe996dc9:log:6', 'hash': '0x8eee0334344dcb377a6f94bd90ee2ff4dd80970f0494410dbca899bcbe996dc9', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09c2007651b2500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:54:22.000Z'}}, {'blockNum': '0x6276d5', 'uniqueId': '0x20318ffe2ad3f7a716ac84250f015ef3f794f7aef876f96de5ecb7060ff5697b:log:59', 'hash': '0x20318ffe2ad3f7a716ac84250f015ef3f794f7aef876f96de5ecb7060ff5697b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:02:52.000Z'}}, {'blockNum': '0x6276e5', 'uniqueId': '0x40e86bba337df941a05884b5668c994948b4b8ef4970fa751616a1b0138ded2c:log:113', 'hash': '0x40e86bba337df941a05884b5668c994948b4b8ef4970fa751616a1b0138ded2c', 'from': '0xbd3a561344044360f960484c13425e1ce279d09a', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:06:08.000Z'}}, {'blockNum': '0x627719', 'uniqueId': '0x53bd9989005063cf28310e5209190e9360b70480e6c66ab011b749f31822b51a:log:18', 'hash': '0x53bd9989005063cf28310e5209190e9360b70480e6c66ab011b749f31822b51a', 'from': '0x4d32b5adefc491b90462eeb023a587936f4e7c93', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:18:53.000Z'}}, {'blockNum': '0x627729', 'uniqueId': '0xd039ea958a46220d625bb1a68d3c5ca6fbb00b057cb7bcdfb1a7972f489f4992:log:167', 'hash': '0xd039ea958a46220d625bb1a68d3c5ca6fbb00b057cb7bcdfb1a7972f489f4992', 'from': '0xd1370f43af8c96294ed5a0c4ce49d69a470dbea3', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:22:53.000Z'}}, {'blockNum': '0x62773b', 'uniqueId': '0x7d870bfec137eb1f1e8b5b6410d1d3d29549ed787322c0957516ca5cb87f50af:log:0', 'hash': '0x7d870bfec137eb1f1e8b5b6410d1d3d29549ed787322c0957516ca5cb87f50af', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:26:26.000Z'}}, {'blockNum': '0x627754', 'uniqueId': '0x11506e98aa3e53881cae9bdde551ad8eba7c1025167dfe81992730331fe0b268:log:49', 'hash': '0x11506e98aa3e53881cae9bdde551ad8eba7c1025167dfe81992730331fe0b268', 'from': '0xb8664fa70356eba41b1512d214f3fe1e568ae30e', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:32:03.000Z'}}, {'blockNum': '0x62775c', 'uniqueId': '0x3cddce7db79884000632390625791e3bf49ed56487a7a8ab142b96e2d3ef1d42:log:7', 'hash': '0x3cddce7db79884000632390625791e3bf49ed56487a7a8ab142b96e2d3ef1d42', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:34:19.000Z'}}, {'blockNum': '0x62776c', 'uniqueId': '0xc1f34df3c631793d2c58baf8ad42663f1098beb61d04c8ce9488f65eb7a3b9dd:log:7', 'hash': '0xc1f34df3c631793d2c58baf8ad42663f1098beb61d04c8ce9488f65eb7a3b9dd', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0xd5fbb6a830a39b94d0ef0fd91a0479be30454a19', 'value': 26.832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01745e69d685480000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:36:25.000Z'}}, {'blockNum': '0x627774', 'uniqueId': '0xb1d98a5739e61fd8975dc226e08866b71972f8f483a6930afa94361d82e1501f:log:51', 'hash': '0xb1d98a5739e61fd8975dc226e08866b71972f8f483a6930afa94361d82e1501f', 'from': '0x78709376b18feff6ad1f57cc790462e84ce04b66', 'to': '0xabc04f891ccddaa1c632b49ccd60645f11705ac0', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:38:06.000Z'}}, {'blockNum': '0x627777', 'uniqueId': '0xcb7f1f896a088c8d8b157c779ccb27923a0d4df8139e7ab37e16e369135806b7:log:68', 'hash': '0xcb7f1f896a088c8d8b157c779ccb27923a0d4df8139e7ab37e16e369135806b7', 'from': '0x9c5352b35ddbae83516343e7e1fb030f2b0d367b', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:39:57.000Z'}}, {'blockNum': '0x627780', 'uniqueId': '0xfa137c7aee21ec1074fa2daccd574756bf8c5866acfd30a35df81feecc910bd6:log:51', 'hash': '0xfa137c7aee21ec1074fa2daccd574756bf8c5866acfd30a35df81feecc910bd6', 'from': '0x3b91deaf0f6df4205258080e63e4f5c6630776a7', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:42:25.000Z'}}, {'blockNum': '0x627782', 'uniqueId': '0x49124190f6f3ee6f8015f1e6f7f8b135b1d12ebaf92b7752f33ea66ef74450d4:log:100', 'hash': '0x49124190f6f3ee6f8015f1e6f7f8b135b1d12ebaf92b7752f33ea66ef74450d4', 'from': '0xabc04f891ccddaa1c632b49ccd60645f11705ac0', 'to': '0x72c4d247835f8f18489cb463394ee412db35c844', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:42:31.000Z'}}, {'blockNum': '0x62778c', 'uniqueId': '0xe04f3c6faf4f756f23335a75a37336f78644c3347a225f79f7ba9de9231db894:log:90', 'hash': '0xe04f3c6faf4f756f23335a75a37336f78644c3347a225f79f7ba9de9231db894', 'from': '0xf629e14fcff8c29178d4383b8fe52137a3af06ef', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:44:34.000Z'}}, {'blockNum': '0x627797', 'uniqueId': '0x7489f44e316a73a5895a56bfc314aa27d4445f501006792c22756c862cdc675e:log:82', 'hash': '0x7489f44e316a73a5895a56bfc314aa27d4445f501006792c22756c862cdc675e', 'from': '0xfacc884c4b663fb6aa41af19f96642b1747f88fd', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:47:11.000Z'}}, {'blockNum': '0x6277a0', 'uniqueId': '0xa06d9cd94838c3b615f3e3147fa28ae61ff44bd3d19edaaf6fc099db84e0a08c:log:3', 'hash': '0xa06d9cd94838c3b615f3e3147fa28ae61ff44bd3d19edaaf6fc099db84e0a08c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:48:36.000Z'}}, {'blockNum': '0x6277a3', 'uniqueId': '0x0e68495479948ace9cba61ebe47b9339bbf251860b7645651241f30940f3e4f0:log:51', 'hash': '0x0e68495479948ace9cba61ebe47b9339bbf251860b7645651241f30940f3e4f0', 'from': '0xb76653e84058213007584072ebe121cd7f8b5175', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:49:32.000Z'}}, {'blockNum': '0x6277bb', 'uniqueId': '0x10b99e7d6d9b469a2205c1832695852a495cacda548a286c8e00ec51588f01b7:log:5', 'hash': '0x10b99e7d6d9b469a2205c1832695852a495cacda548a286c8e00ec51588f01b7', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:54:15.000Z'}}, {'blockNum': '0x6277bb', 'uniqueId': '0xc20723ea1cee744e54f4bce02bef35b6773b8720798cb8ddfaeb51d7f66d6e84:log:62', 'hash': '0xc20723ea1cee744e54f4bce02bef35b6773b8720798cb8ddfaeb51d7f66d6e84', 'from': '0x05d1f9f849bdc2dddc5e55aa263dd8f5afb28d72', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:54:15.000Z'}}, {'blockNum': '0x6277cb', 'uniqueId': '0xd0e65dab3f97241d3d373e67bfb0d5008a6d62a1950cea6178c6ed845c2ee3df:log:80', 'hash': '0xd0e65dab3f97241d3d373e67bfb0d5008a6d62a1950cea6178c6ed845c2ee3df', 'from': '0x5d35cd456ae38d529239c2d07c0331bd40e2bef4', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:58:12.000Z'}}, {'blockNum': '0x6277e9', 'uniqueId': '0xbc610b9b299bda047a4cff3a1b6026ae363b0f458759499d943fc1c37a158a69:log:3', 'hash': '0xbc610b9b299bda047a4cff3a1b6026ae363b0f458759499d943fc1c37a158a69', 'from': '0x72c4d247835f8f18489cb463394ee412db35c844', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:04:15.000Z'}}, {'blockNum': '0x6277f8', 'uniqueId': '0x7dd66e508b0f6ca5a80357dd6ad7f8409080fd1e872f23702a26da76b041f4ce:log:4', 'hash': '0x7dd66e508b0f6ca5a80357dd6ad7f8409080fd1e872f23702a26da76b041f4ce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:08:12.000Z'}}, {'blockNum': '0x62783d', 'uniqueId': '0x8bd1327734fa678f12b179fd70e3c58de2f21be938d4aba2818288272de68ca8:log:30', 'hash': '0x8bd1327734fa678f12b179fd70e3c58de2f21be938d4aba2818288272de68ca8', 'from': '0xc909077f26302c3c5b57d6d52464e79543e61b5d', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:24:16.000Z'}}, {'blockNum': '0x627866', 'uniqueId': '0x0165269f7e1a1f5eb75772f92c50d71b215b77f3ab8b45b198b6c865dbfa6759:log:7', 'hash': '0x0165269f7e1a1f5eb75772f92c50d71b215b77f3ab8b45b198b6c865dbfa6759', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:32:10.000Z'}}, {'blockNum': '0x627893', 'uniqueId': '0x38607d53ecc9601ebc72519b28f05ba9d6769f62a007415a77aeeb4a7d57ba7e:log:30', 'hash': '0x38607d53ecc9601ebc72519b28f05ba9d6769f62a007415a77aeeb4a7d57ba7e', 'from': '0x455a591c8bc88257a79f476f84c0a908de926023', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:42:01.000Z'}}, {'blockNum': '0x6278b1', 'uniqueId': '0xbf940a013ac83bd16791b496eca841b9459a3be27c4f7c727689b8cdd92b9616:log:1', 'hash': '0xbf940a013ac83bd16791b496eca841b9459a3be27c4f7c727689b8cdd92b9616', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd0f683e73b07ed0f4970e98e0b7eadbd5a978452', 'value': 121.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x069040cf04646b8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:49:45.000Z'}}, {'blockNum': '0x6278d0', 'uniqueId': '0x5651fc6bd6e2c9605a9b07d625d4733f1a0b716774a0b9a01e165d726ab87c68:log:1', 'hash': '0x5651fc6bd6e2c9605a9b07d625d4733f1a0b716774a0b9a01e165d726ab87c68', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:54:10.000Z'}}, {'blockNum': '0x6278f1', 'uniqueId': '0xd71d11279f809e8a289774b8561be544a4c5f8bba391d1df64377a631b5b4a7d:log:5', 'hash': '0xd71d11279f809e8a289774b8561be544a4c5f8bba391d1df64377a631b5b4a7d', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'value': 1481.3061343159159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x504d4090dd333cff92', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:01:28.000Z'}}, {'blockNum': '0x6278f7', 'uniqueId': '0xe08987ce45e7a49a8a9c73c2945f10e936ebade33490010aacffa1069c59cbb3:log:2', 'hash': '0xe08987ce45e7a49a8a9c73c2945f10e936ebade33490010aacffa1069c59cbb3', 'from': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'to': '0x1aec17c86022d023edc04a6816d2f99ab7409038', 'value': 1481.3061343159159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x504d4090dd333cff92', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:02:53.000Z'}}, {'blockNum': '0x627904', 'uniqueId': '0x3857e14240fe41e02c45deb13c6a69c014b1dacbe1a1dddc4c40c1aaa03a131d:log:120', 'hash': '0x3857e14240fe41e02c45deb13c6a69c014b1dacbe1a1dddc4c40c1aaa03a131d', 'from': '0x2796df0c73022291da2e42d71e53d15980c41329', 'to': '0x382e9de4afff488272a6a866c2e3a5094f42b6bd', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:06:05.000Z'}}, {'blockNum': '0x62791e', 'uniqueId': '0xae5213140cf1287a8cf6a258fb68f0bee641d69a62b842af84d007b24aedb28b:log:126', 'hash': '0xae5213140cf1287a8cf6a258fb68f0bee641d69a62b842af84d007b24aedb28b', 'from': '0x78709376b18feff6ad1f57cc790462e84ce04b66', 'to': '0x72c4d247835f8f18489cb463394ee412db35c844', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:12:48.000Z'}}, {'blockNum': '0x627924', 'uniqueId': '0x801e1007ceb0c7b93a94efe5cb9b0ff014b9119f11d8951101704cc3f9e15b1a:log:19', 'hash': '0x801e1007ceb0c7b93a94efe5cb9b0ff014b9119f11d8951101704cc3f9e15b1a', 'from': '0x1aec17c86022d023edc04a6816d2f99ab7409038', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1481.3061343159159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x504d4090dd333cff92', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:14:24.000Z'}}, {'blockNum': '0x627927', 'uniqueId': '0x9aa2d803d3bdffcaebf42fdae2a0d40abf06acf0a0a029220f881b7fb74369cb:log:6', 'hash': '0x9aa2d803d3bdffcaebf42fdae2a0d40abf06acf0a0a029220f881b7fb74369cb', 'from': '0x71481c3ac7853ef63c87f0e9f91b6a5e16e04438', 'to': '0xf91af607d4482d1ae38339e91318ebaf1fe939a4', 'value': 12476.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02a458d4f13323980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:15:56.000Z'}}, {'blockNum': '0x627940', 'uniqueId': '0x92b7979c4fbd45f919ac94f6d137f99ff882e5a231867451591a6e4dbf95aff5:log:56', 'hash': '0x92b7979c4fbd45f919ac94f6d137f99ff882e5a231867451591a6e4dbf95aff5', 'from': '0x6f16336a6a04b13fc9df6228f52951947296574c', 'to': '0xd392167324c6ffdf5c5accdfaaac70fbd780f9d0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:20:48.000Z'}}, {'blockNum': '0x627944', 'uniqueId': '0xde20a3140378a3bfd9b7a8b6ecf9538a66448635af0a448ba30a73a2f569a365:log:11', 'hash': '0xde20a3140378a3bfd9b7a8b6ecf9538a66448635af0a448ba30a73a2f569a365', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:22:08.000Z'}}, {'blockNum': '0x627945', 'uniqueId': '0x35fe7153e368a16cf75406265ba02313ff3c47535527c0c88adc95640d06ff85:log:45', 'hash': '0x35fe7153e368a16cf75406265ba02313ff3c47535527c0c88adc95640d06ff85', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd5fbb6a830a39b94d0ef0fd91a0479be30454a19', 'value': 2248.56116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79e50dfda1e4488000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:22:15.000Z'}}, {'blockNum': '0x62794a', 'uniqueId': '0x63ff197b52c00ccc2a4e9bede428165e3389090988a10d0842babb575b495a19:log:31', 'hash': '0x63ff197b52c00ccc2a4e9bede428165e3389090988a10d0842babb575b495a19', 'from': '0x41ade1cd005741bd093b4df7391fdd8347dc42ee', 'to': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'value': 361.85862523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x139dcc1670015a8c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:23:20.000Z'}}, {'blockNum': '0x62794e', 'uniqueId': '0x184ff3642dac44ace1cb94a8afc655d60b59ec913fedb720f11a5ec66c9ffa0f:log:19', 'hash': '0x184ff3642dac44ace1cb94a8afc655d60b59ec913fedb720f11a5ec66c9ffa0f', 'from': '0x72c4d247835f8f18489cb463394ee412db35c844', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:24:19.000Z'}}, {'blockNum': '0x627954', 'uniqueId': '0x69520864ecce076dc28cba37e4320734446e1247b14ad6f9b1889754034775dc:log:53', 'hash': '0x69520864ecce076dc28cba37e4320734446e1247b14ad6f9b1889754034775dc', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x09c4c337a057699579b147afd1b98658a60b11c5', 'value': 54.10736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02eee3f53f362e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:26:25.000Z'}}, {'blockNum': '0x627957', 'uniqueId': '0xae08682e3f520877cdd2eef1b606627108d59d30eec764904bbdbf8c3c4b3ebc:log:27', 'hash': '0xae08682e3f520877cdd2eef1b606627108d59d30eec764904bbdbf8c3c4b3ebc', 'from': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'to': '0x2a1c814f53879779a4ebacef52cb3a9311ae9151', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:26:46.000Z'}}, {'blockNum': '0x627964', 'uniqueId': '0x32cec0aa60ff9e3cc063372dc61c44cd914c4c1fd119bb8d117140610dc2fd50:log:7', 'hash': '0x32cec0aa60ff9e3cc063372dc61c44cd914c4c1fd119bb8d117140610dc2fd50', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xbcf3f0b2ea9f3d963f8702f22de8619552bfebc4', 'value': 213.52508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b934178f4a4dd8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:30:41.000Z'}}, {'blockNum': '0x627981', 'uniqueId': '0xce1b3adc22c6386de6ff88c5bed01265b1b8f1a0e07878f8388d94bb4c521d40:log:276', 'hash': '0xce1b3adc22c6386de6ff88c5bed01265b1b8f1a0e07878f8388d94bb4c521d40', 'from': '0xfcbeb5ef8770b1e5f73a824a4ae2f449f78df4b7', 'to': '0x8c7451834b0b2d36f85d7c0eae59e5cdc0060884', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:36:07.000Z'}}, {'blockNum': '0x6279a6', 'uniqueId': '0xf24049b458a7963bd0fbbf9c86a256d207cf38abd69c7e327fd273477d5afc42:log:4', 'hash': '0xf24049b458a7963bd0fbbf9c86a256d207cf38abd69c7e327fd273477d5afc42', 'from': '0x2a1c814f53879779a4ebacef52cb3a9311ae9151', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b6255df5f50080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:44:15.000Z'}}, {'blockNum': '0x6279b7', 'uniqueId': '0xa338f68d37f46430d5fbe4c754c2986dda4aea4c7ec1d1986ea783e086d26d13:log:254', 'hash': '0xa338f68d37f46430d5fbe4c754c2986dda4aea4c7ec1d1986ea783e086d26d13', 'from': '0x3324661edc03c120f1257f0657baf7c37e3b2912', 'to': '0x70af6f073971e208ba49fe33b44ae071df21a97a', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:47:18.000Z'}}, {'blockNum': '0x6279ba', 'uniqueId': '0x901417706ac0083931e549f17bc99384817318fb01b2e2017680c7dbb3a79fe5:log:0', 'hash': '0x901417706ac0083931e549f17bc99384817318fb01b2e2017680c7dbb3a79fe5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa6a53c3f278d94fe7c0a47c8cfcbafd0e083bf4f', 'value': 6332.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x015744ed8e9108840000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:47:44.000Z'}}, {'blockNum': '0x6279ba', 'uniqueId': '0x489b9956b7b46bf0329878e3a998ff6c84a2bde673278fc7752b9711d9970d1f:log:1', 'hash': '0x489b9956b7b46bf0329878e3a998ff6c84a2bde673278fc7752b9711d9970d1f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:47:44.000Z'}}, {'blockNum': '0x6279c8', 'uniqueId': '0x3ce6b1c4b1f8592a7b78a3b1a83609156e29e2b35c76e9c4baaeeea617aaf6fe:log:28', 'hash': '0x3ce6b1c4b1f8592a7b78a3b1a83609156e29e2b35c76e9c4baaeeea617aaf6fe', 'from': '0xd5fbb6a830a39b94d0ef0fd91a0479be30454a19', 'to': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'value': 2276.8629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7b6dd1f8369dbf4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:51:15.000Z'}}, {'blockNum': '0x6279e4', 'uniqueId': '0x6d0be1790ea54ceee430d7abb70135505d9ce630b60395c56bd8d17dbb84f7d9:log:83', 'hash': '0x6d0be1790ea54ceee430d7abb70135505d9ce630b60395c56bd8d17dbb84f7d9', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0x68ebc3366b6b31101360831c6271c856d910882e', 'value': 2276.8629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7b6dd1f8369dbf4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:58:16.000Z'}}, {'blockNum': '0x6279e5', 'uniqueId': '0xb2d33b3c54ae7546a1e8e72f60117735f96d7297dbebbbd5ac97e108481b9c00:log:88', 'hash': '0xb2d33b3c54ae7546a1e8e72f60117735f96d7297dbebbbd5ac97e108481b9c00', 'from': '0x85c6118b6bddf9ff14790cc8b9525a2bb24c4cd7', 'to': '0xf3e06f567860f59e26289f76fbdccfd4a192f941', 'value': 1000.0017108302231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635cfc1c3925941c7', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:58:26.000Z'}}, {'blockNum': '0x627a09', 'uniqueId': '0x2adad8d851cfb15467c0facf126c65f1d61e021ea35b55b68b38a747d170f8d2:log:8', 'hash': '0x2adad8d851cfb15467c0facf126c65f1d61e021ea35b55b68b38a747d170f8d2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2245.76116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79be326477a9308000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:07:46.000Z'}}, {'blockNum': '0x627a11', 'uniqueId': '0x36a171959db3036ea69ce4b391ad86f980b35e1a5fd1b6923a81d67e89c0030f:log:0', 'hash': '0x36a171959db3036ea69ce4b391ad86f980b35e1a5fd1b6923a81d67e89c0030f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 775.99623065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a111c6c5f37574400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:09:57.000Z'}}, {'blockNum': '0x627a13', 'uniqueId': '0xa0ed805269d4c2e4de2c01b6acb2a7657f0dd1486438673dafb337b07f549d52:log:13', 'hash': '0xa0ed805269d4c2e4de2c01b6acb2a7657f0dd1486438673dafb337b07f549d52', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa2a9c5915e59917136929844f1383e81a0921389', 'value': 1190.6084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x408b02bfafb4310000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:10:13.000Z'}}, {'blockNum': '0x627a1b', 'uniqueId': '0x5eee560ffe79e4cad2705eb926293a71922e543a808d1f22f20421f3373ef3ba:log:94', 'hash': '0x5eee560ffe79e4cad2705eb926293a71922e543a808d1f22f20421f3373ef3ba', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 775.99623065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a111c6c5f37574400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:12:19.000Z'}}, {'blockNum': '0x627a31', 'uniqueId': '0x90228175fece24fc26bd133edca0762111e81635654ec94f629c755acb6b0b9f:log:153', 'hash': '0x90228175fece24fc26bd133edca0762111e81635654ec94f629c755acb6b0b9f', 'from': '0x68ebc3366b6b31101360831c6271c856d910882e', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2276.8629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7b6dd1f8369dbf4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:17:32.000Z'}}, {'blockNum': '0x627a31', 'uniqueId': '0xc1c972db694572e339eece0dc1e4542919a8aa2ff4d4107d1fcddb07984f9119:log:154', 'hash': '0xc1c972db694572e339eece0dc1e4542919a8aa2ff4d4107d1fcddb07984f9119', 'from': '0xf3e06f567860f59e26289f76fbdccfd4a192f941', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1000.0017108302231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635cfc1c3925941c7', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:17:32.000Z'}}, {'blockNum': '0x627a37', 'uniqueId': '0x692f1945418c662dbae25322a5752be848b73621ca56f64e51c9790922eefb91:log:4', 'hash': '0x692f1945418c662dbae25322a5752be848b73621ca56f64e51c9790922eefb91', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:19:44.000Z'}}, {'blockNum': '0x627a40', 'uniqueId': '0xf2c59fea001bb801a818749c47f08963d2ad27788938076dbfcd1dc84bc42eb0:log:0', 'hash': '0xf2c59fea001bb801a818749c47f08963d2ad27788938076dbfcd1dc84bc42eb0', 'from': '0x4976f33befd1297f244a442e996f67aa274e7178', 'to': '0xf91af607d4482d1ae38339e91318ebaf1fe939a4', 'value': 1454.313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4ed6a5b03830aa8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:21:34.000Z'}}, {'blockNum': '0x627a45', 'uniqueId': '0x02f3b3a3447619b4e16311a910f388f2f25933f3529208f3f22f61e95d4bfdbf:log:148', 'hash': '0x02f3b3a3447619b4e16311a910f388f2f25933f3529208f3f22f61e95d4bfdbf', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4ff63af04d0ba0cef0ee98c288e41f6c4f122d1', 'value': 123.81193309035564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06b63c592975148876', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:23:05.000Z'}}, {'blockNum': '0x627a4c', 'uniqueId': '0x9e8df3c929cfbce0179dc0f80220d3910be0de8d21d029181136ba69364adcba:log:11', 'hash': '0x9e8df3c929cfbce0179dc0f80220d3910be0de8d21d029181136ba69364adcba', 'from': '0xa2a9c5915e59917136929844f1383e81a0921389', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1190.6084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x408b02bfafb4310000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:24:19.000Z'}}, {'blockNum': '0x627a4e', 'uniqueId': '0xcb812cc069fc73befc1eb5fa022688af45c82e8a9ebc8965e6a9103567f4b819:log:25', 'hash': '0xcb812cc069fc73befc1eb5fa022688af45c82e8a9ebc8965e6a9103567f4b819', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4ff63af04d0ba0cef0ee98c288e41f6c4f122d1', 'value': 87.73348210088984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04c18bf1238ba17504', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:24:37.000Z'}}, {'blockNum': '0x627a59', 'uniqueId': '0xafbb2a1cbeda1dba6d750f161c3223262f3ab1aae73ca7400411422e0c7c5a0d:log:42', 'hash': '0xafbb2a1cbeda1dba6d750f161c3223262f3ab1aae73ca7400411422e0c7c5a0d', 'from': '0x7aa2a3d0b40ea85e57bc91fbe84216a9365f469c', 'to': '0x130bc598e741a848d5e6144721b9628821744f7a', 'value': 619.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2193e6da4734f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:26:45.000Z'}}, {'blockNum': '0x627a7e', 'uniqueId': '0xfa31c5beda94cf428b42e9eb92e63186d4d36b2b8ca4a6522903f7f5cf1c0260:log:0', 'hash': '0xfa31c5beda94cf428b42e9eb92e63186d4d36b2b8ca4a6522903f7f5cf1c0260', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2245.76116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79be326477a9308000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:35:00.000Z'}}, {'blockNum': '0x627a7e', 'uniqueId': '0x86e753ae4556d269d54b210812c38b949ef0267ad029aa539a9176672458f6f2:log:1', 'hash': '0x86e753ae4556d269d54b210812c38b949ef0267ad029aa539a9176672458f6f2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2e5cf5577a1c1abd888162b8fe6f40dec8cf1fd0', 'value': 57.66854386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03204fd31981558800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:35:00.000Z'}}, {'blockNum': '0x627abc', 'uniqueId': '0xff8f7640b9d3a1ec3056c7313ae5368b5574d4162bf0906b575b3e53f5ebc7cf:log:2', 'hash': '0xff8f7640b9d3a1ec3056c7313ae5368b5574d4162bf0906b575b3e53f5ebc7cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:49:14.000Z'}}, {'blockNum': '0x627ad8', 'uniqueId': '0x46bdaff994fa8fac41a593666c8ec76852a7220f40c5f9d2ab63b506e4ef778d:log:2', 'hash': '0x46bdaff994fa8fac41a593666c8ec76852a7220f40c5f9d2ab63b506e4ef778d', 'from': '0x130bc598e741a848d5e6144721b9628821744f7a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 619.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2193e6da4734f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:54:12.000Z'}}, {'blockNum': '0x627b14', 'uniqueId': '0xa7708e0aa62a42bab938ac26aebdada6595325dd6fb417fd4f7079668e63e609:log:0', 'hash': '0xa7708e0aa62a42bab938ac26aebdada6595325dd6fb417fd4f7079668e63e609', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2245.76116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79be326477a9308000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:06:55.000Z'}}, {'blockNum': '0x627b1f', 'uniqueId': '0x3c76812b6168ca86cfa915087fe0909c287d3e1fb57faa9b01accc861acf03ae:log:4', 'hash': '0x3c76812b6168ca86cfa915087fe0909c287d3e1fb57faa9b01accc861acf03ae', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeea42663d4ea81126008a9933bf652fa7d65303e', 'value': 1070.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3a0f0e239eb8420000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:09:15.000Z'}}, {'blockNum': '0x627b4e', 'uniqueId': '0xf2ec33d235a4c6bbb05ad678887a9b656a9881526ee30e1d6b9c08edf9f612bc:log:3', 'hash': '0xf2ec33d235a4c6bbb05ad678887a9b656a9881526ee30e1d6b9c08edf9f612bc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 3731.284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xca45f7b4cf62a20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:19:07.000Z'}}, {'blockNum': '0x627b52', 'uniqueId': '0x656f1a7afb2f889ff51a050585d600120851550eb34354f6e30f3f2f0ae6b422:log:17', 'hash': '0x656f1a7afb2f889ff51a050585d600120851550eb34354f6e30f3f2f0ae6b422', 'from': '0x87ab4cdcedd6ae52a55546b511597857d943ce24', 'to': '0x1012dd462d68109256635a74f1a84f4b6c34b6cf', 'value': 6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01748828669564600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:20:06.000Z'}}, {'blockNum': '0x627b5a', 'uniqueId': '0x763a97335bb10ec785500dcc82403a3559bfca5c51a2e5d503fa5170b75ad151:log:5', 'hash': '0x763a97335bb10ec785500dcc82403a3559bfca5c51a2e5d503fa5170b75ad151', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:22:36.000Z'}}, {'blockNum': '0x627b87', 'uniqueId': '0x2a128b4bb7ed9ff09ab79ecb5c78af53f04772b0f4a0390c94957d061e8c1dcf:log:3', 'hash': '0x2a128b4bb7ed9ff09ab79ecb5c78af53f04772b0f4a0390c94957d061e8c1dcf', 'from': '0x1012dd462d68109256635a74f1a84f4b6c34b6cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01748828669564600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:34:04.000Z'}}, {'blockNum': '0x627b8e', 'uniqueId': '0x965141bb4ab1c056bf160a51088bb1bac6825e993ca25e5b76d30ae3974aac5d:log:4', 'hash': '0x965141bb4ab1c056bf160a51088bb1bac6825e993ca25e5b76d30ae3974aac5d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'value': 480.743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a0fa63b6a179d8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:35:49.000Z'}}, {'blockNum': '0x627bb4', 'uniqueId': '0x3746114baed199913d421456134a59d16af2d24f2220c45aac4a71c6913c88d4:log:1', 'hash': '0x3746114baed199913d421456134a59d16af2d24f2220c45aac4a71c6913c88d4', 'from': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 480.743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a0fa63b6a179d8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:44:06.000Z'}}, {'blockNum': '0x627bc6', 'uniqueId': '0x43d9e4d78554ce816c287c4aea27ba29e3e311f0a9d382afc02961d2013485fb:log:2', 'hash': '0x43d9e4d78554ce816c287c4aea27ba29e3e311f0a9d382afc02961d2013485fb', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 3059.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa5e1c7e885415b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:49:25.000Z'}}, {'blockNum': '0x627c12', 'uniqueId': '0x1f1f5fe25472293137aefbf6814c7594d2c5c11efaaa09ae0ebc733fd8d5f88b:log:22', 'hash': '0x1f1f5fe25472293137aefbf6814c7594d2c5c11efaaa09ae0ebc733fd8d5f88b', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3059.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa5e1c7e885415b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:03:58.000Z'}}, {'blockNum': '0x627c15', 'uniqueId': '0xbe99987192a75013939f8e64dd68e48ae59b990306fcb278beaef77021eb6e51:log:87', 'hash': '0xbe99987192a75013939f8e64dd68e48ae59b990306fcb278beaef77021eb6e51', 'from': '0x4bf321cccee1961b344821c788b1b62965afbb65', 'to': '0xc4f47c5cd99fc01f4c47fb1743a39e880fd2d5aa', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:05:34.000Z'}}, {'blockNum': '0x627c28', 'uniqueId': '0xfc26fb8d2621cd80d92257d3973c867e0014ec951528838e6129764a2cd9ef8c:log:119', 'hash': '0xfc26fb8d2621cd80d92257d3973c867e0014ec951528838e6129764a2cd9ef8c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x813437c1f305f4f55ff12119ddfef6a368849e65', 'value': 100.5206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x057300e91e79218000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:10:10.000Z'}}, {'blockNum': '0x627c7e', 'uniqueId': '0x63cfe1156c089be80df8cafe6a1cf7d5c61b24ed12cdedc24cbe2be317117233:log:4', 'hash': '0x63cfe1156c089be80df8cafe6a1cf7d5c61b24ed12cdedc24cbe2be317117233', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:32:38.000Z'}}, {'blockNum': '0x627c83', 'uniqueId': '0x1172e2e77d97971f8806d6c76984ea0f483b1df311fa8eea4f37380431107b77:log:69', 'hash': '0x1172e2e77d97971f8806d6c76984ea0f483b1df311fa8eea4f37380431107b77', 'from': '0x08969c7a411508c9cd8f3e342c2bae4e48741650', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:34:28.000Z'}}, {'blockNum': '0x627cb2', 'uniqueId': '0x485be1b0db90f7275e985f73af4bdf9f9420aea5d0e967feae6ddb08d8136a4b:log:16', 'hash': '0x485be1b0db90f7275e985f73af4bdf9f9420aea5d0e967feae6ddb08d8136a4b', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:43:44.000Z'}}, {'blockNum': '0x627d55', 'uniqueId': '0xf03cdc0f271e0aefdcbc7f9eb9c2adb0aba0b4413ca4300274c7abbd36540bf7:log:103', 'hash': '0xf03cdc0f271e0aefdcbc7f9eb9c2adb0aba0b4413ca4300274c7abbd36540bf7', 'from': '0x387a3cb79141324c25ec4ea3c9b267b550c7fbdc', 'to': '0x83ad8f0b9d5557225093bf4c912f4b521c009cc3', 'value': 80, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04563918244f400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T23:24:22.000Z'}}, {'blockNum': '0x627d9e', 'uniqueId': '0x3340804895bba0c9edf763ec28c68bc1ab084cb3f1ea6d0dc0c687d47e47119a:log:45', 'hash': '0x3340804895bba0c9edf763ec28c68bc1ab084cb3f1ea6d0dc0c687d47e47119a', 'from': '0x14868f90c1665e4c295ed2bc29571073d6ed7a8e', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T23:40:02.000Z'}}, {'blockNum': '0x627dcb', 'uniqueId': '0x96069c4af079311c99e7d579e5ae85876756a140d1bbadeb409dc939c39fc800:log:52', 'hash': '0x96069c4af079311c99e7d579e5ae85876756a140d1bbadeb409dc939c39fc800', 'from': '0xcb2be1a59a0c7ef8d13db4c10ebf91586a7e93a1', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T23:50:46.000Z'}}, {'blockNum': '0x627e07', 'uniqueId': '0x17df45d70296badc5c5f715a1973ed086c55c255b72ce657827fb53206a4a486:log:30', 'hash': '0x17df45d70296badc5c5f715a1973ed086c55c255b72ce657827fb53206a4a486', 'from': '0x10ecc85c95a3b121be8bb86676a4443af5ceaaea', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T00:05:35.000Z'}}, {'blockNum': '0x627e50', 'uniqueId': '0x9a9d4c1d0517a18d7c7ff6979c7383c2d1fce2083238375acabe6cb543619a01:log:85', 'hash': '0x9a9d4c1d0517a18d7c7ff6979c7383c2d1fce2083238375acabe6cb543619a01', 'from': '0xf60a804b65d038cf829950ad5289717ed764f590', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T00:19:00.000Z'}}, {'blockNum': '0x627ec5', 'uniqueId': '0x8ceb2c7059457727ab40a5ff5b8393832532aafaf7a4eec04bbd3d203666476b:log:113', 'hash': '0x8ceb2c7059457727ab40a5ff5b8393832532aafaf7a4eec04bbd3d203666476b', 'from': '0x7451f1027a9ae967c8dcdc9e18073a39ced10ddb', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T00:48:39.000Z'}}, {'blockNum': '0x627f0b', 'uniqueId': '0xc3d364dde51a31679e79486bf12bb04f88c0b6121bb1d1a37c9286ac55ba88bd:log:64', 'hash': '0xc3d364dde51a31679e79486bf12bb04f88c0b6121bb1d1a37c9286ac55ba88bd', 'from': '0x5d6dd0cf3c22521d4c89a47feef893c564b25d72', 'to': '0xb9b43e28b51979daae6ea170ff4c844aa8e2d571', 'value': 618.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x218769690beb1a0031', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:03:39.000Z'}}, {'blockNum': '0x627f15', 'uniqueId': '0x290882bfa69f1707df7488fa093a8f64163761d4f25bd0e0695eb21cc3804fee:log:34', 'hash': '0x290882bfa69f1707df7488fa093a8f64163761d4f25bd0e0695eb21cc3804fee', 'from': '0x45e71c66c30681bcbcd8d59156e33ce7a824a680', 'to': '0x79e17aea57f2595df2e060ba9d4c7d1ca7a329d7', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:06:20.000Z'}}, {'blockNum': '0x627f1e', 'uniqueId': '0x0193dd4730628ea9dd82e52e0e57c5203cc256a1be2a67bfabbac2ab49a98efd:log:26', 'hash': '0x0193dd4730628ea9dd82e52e0e57c5203cc256a1be2a67bfabbac2ab49a98efd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x42b6268308947d66b77979536a07605fb489a9de', 'value': 391.904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x153ec2b39a86b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:08:51.000Z'}}, {'blockNum': '0x627f57', 'uniqueId': '0x7723142e42a1b8b90596a379b1952dac31ac97975177ff0e48aee88dfbc4eee4:log:35', 'hash': '0x7723142e42a1b8b90596a379b1952dac31ac97975177ff0e48aee88dfbc4eee4', 'from': '0xb9b43e28b51979daae6ea170ff4c844aa8e2d571', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 618.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x218769690beb1a0031', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:23:28.000Z'}}, {'blockNum': '0x627f78', 'uniqueId': '0x01fb52d9b525f7c0783adf6d0c6e23738725e34ff0137c793f6d77c496965f68:log:1', 'hash': '0x01fb52d9b525f7c0783adf6d0c6e23738725e34ff0137c793f6d77c496965f68', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 4779.256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010315802a6a9e4c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:30:38.000Z'}}, {'blockNum': '0x628056', 'uniqueId': '0xed9e77058a43734e4ef6ca2ea1c19ac7674682c5cf70f3b9643d9dba4f1a42ff:log:116', 'hash': '0xed9e77058a43734e4ef6ca2ea1c19ac7674682c5cf70f3b9643d9dba4f1a42ff', 'from': '0xde7fc5d00cdbee01b1509906fce0edb7c82bf5e2', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:21:51.000Z'}}, {'blockNum': '0x62807e', 'uniqueId': '0xdb3664644b06d72560c4a6bcc7c3b482d5edc4cbcf46a5a418678585ddc2077e:log:75', 'hash': '0xdb3664644b06d72560c4a6bcc7c3b482d5edc4cbcf46a5a418678585ddc2077e', 'from': '0xd0bf2401021b23818d93e204fd4f5a1acc6146cf', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:34:20.000Z'}}, {'blockNum': '0x62809c', 'uniqueId': '0x45d8db044aa3198e0a7ea6803103e30a582ebe13023eda5e7a93a2a5a7e87904:log:132', 'hash': '0x45d8db044aa3198e0a7ea6803103e30a582ebe13023eda5e7a93a2a5a7e87904', 'from': '0xbc4d89b45f8cd11d793e7dbe43421c1e12dc0312', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:42:35.000Z'}}, {'blockNum': '0x6280de', 'uniqueId': '0x7bc12fcf71a2ecc516c8555de2b4f1b60f2d097e1ff648128843b2d657cd1f00:log:57', 'hash': '0x7bc12fcf71a2ecc516c8555de2b4f1b60f2d097e1ff648128843b2d657cd1f00', 'from': '0x90142dbf5440c4c20a5e02a18578f27ad83d9534', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:57:50.000Z'}}, {'blockNum': '0x628102', 'uniqueId': '0xd093b11599cc9710cf3dcc00f2e03fd46b2990d01b4d888db704bfb9f59fffa9:log:34', 'hash': '0xd093b11599cc9710cf3dcc00f2e03fd46b2990d01b4d888db704bfb9f59fffa9', 'from': '0xa38288466445c8d74a54974c82d940fe4943df5e', 'to': '0xad243e25468dc32255b60a6a5e92a34a545c96af', 'value': 1682.03599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5b2ef04e2ea6e61c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:04:56.000Z'}}, {'blockNum': '0x62811c', 'uniqueId': '0x4be0848c939d622d4216310b76532f6561cb00b05be5dfe3c821168072489513:log:97', 'hash': '0x4be0848c939d622d4216310b76532f6561cb00b05be5dfe3c821168072489513', 'from': '0x5061b5f4f733db4f8fcb05d10fbd35d782fe1b6d', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:09:56.000Z'}}, {'blockNum': '0x62812d', 'uniqueId': '0xff8914bc46662a253101ca0b3129dd56e63bf3760af12c095ac85e6d4be3caac:log:11', 'hash': '0xff8914bc46662a253101ca0b3129dd56e63bf3760af12c095ac85e6d4be3caac', 'from': '0xad243e25468dc32255b60a6a5e92a34a545c96af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1682.03599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5b2ef04e2ea6e61c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:14:07.000Z'}}, {'blockNum': '0x62814b', 'uniqueId': '0x67a8f3201add637986170e5c6f50504623b3182e2b7f62263a50a66ce5c7e0f2:log:12', 'hash': '0x67a8f3201add637986170e5c6f50504623b3182e2b7f62263a50a66ce5c7e0f2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd822d541a9c9f3621eb2ad2530f43f5004002cf4', 'value': 569.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1edc9fe5b825e20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:21:10.000Z'}}, {'blockNum': '0x6281ff', 'uniqueId': '0xee6228528a305d9dab67750831517933dbcd966b039fb838313fe42b3f52ad66:log:8', 'hash': '0xee6228528a305d9dab67750831517933dbcd966b039fb838313fe42b3f52ad66', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x3a1daaa8b87ffcb2c1a8870a61481e3dc8a634f7', 'value': 566.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1eb2fdc19d2fb60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T04:01:42.000Z'}}, {'blockNum': '0x628233', 'uniqueId': '0x694f25adec132d0157c0451dc7c87b45d6c7449abf1c80cbcb9829606feedba7:log:25', 'hash': '0x694f25adec132d0157c0451dc7c87b45d6c7449abf1c80cbcb9829606feedba7', 'from': '0x3a1daaa8b87ffcb2c1a8870a61481e3dc8a634f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 566.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1eb2fdc19d2fb60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T04:14:24.000Z'}}, {'blockNum': '0x628258', 'uniqueId': '0x26e4a932dc4aef3a2e23c21637773c3835deb6cfa3b49b4131432bc73df3f904:log:33', 'hash': '0x26e4a932dc4aef3a2e23c21637773c3835deb6cfa3b49b4131432bc73df3f904', 'from': '0xc60e0ed857bfe4ea8a30ed4b91e368352b7e831d', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T04:23:18.000Z'}}]}}
Number of returned transfers:  174
Answer is complete
 
symbol             EVX
group              BPF
date        2018-10-06
hour             19:00
exchange       binance
Name: 726, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2018-10-06 19:00:00 2018-10-06 07:00:00 2018-10-07 07:00:00
Unix timestamps:  1538802000.0 1538888400.0
Hex Block Numbers:  0x629ae0 0x62b31d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x629b15', 'uniqueId': '0x976c5f7dbb9cc87cf921c4df458dac7aa5df92157396f990418dc4ee1967dfea:log:11', 'hash': '0x976c5f7dbb9cc87cf921c4df458dac7aa5df92157396f990418dc4ee1967dfea', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe9be4f99647753b386067ad98492a8697b1f429c', 'value': 1150.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xaf9eca', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T05:12:28.000Z'}}, {'blockNum': '0x629bf8', 'uniqueId': '0x0fa5575768f27c938d3f3d0b24f335019507c7450f1ea30edeade59e6e52b778:log:24', 'hash': '0x0fa5575768f27c938d3f3d0b24f335019507c7450f1ea30edeade59e6e52b778', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6425.495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03d473e6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T06:04:06.000Z'}}, {'blockNum': '0x629cd1', 'uniqueId': '0x5a24f228b08f8615c9a677933e224028c3da4d087d1549121866d675081bff27:log:18', 'hash': '0x5a24f228b08f8615c9a677933e224028c3da4d087d1549121866d675081bff27', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6109.144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a42e70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T06:53:20.000Z'}}, {'blockNum': '0x629f1c', 'uniqueId': '0x36233dcbc52513f445a5ee9c3a28ea20f49a7979ca25610cf742a9f9aa6978d6:log:57', 'hash': '0x36233dcbc52513f445a5ee9c3a28ea20f49a7979ca25610cf742a9f9aa6978d6', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5845.913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x037c03fa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T09:12:13.000Z'}}, {'blockNum': '0x629fb7', 'uniqueId': '0x79822d21cbcedd40fd34906eb26596c39f1198646bf5fefcbdc8909cc1de8b21:log:40', 'hash': '0x79822d21cbcedd40fd34906eb26596c39f1198646bf5fefcbdc8909cc1de8b21', 'from': '0x9bb5c4947008ad22ece7e8a464a9f51cc7df0d3c', 'to': '0x5d5ed6e30dd5b18206b404bc191f44780af4252b', 'value': 218.6744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x215df8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T09:48:04.000Z'}}, {'blockNum': '0x629fde', 'uniqueId': '0x73a12961e699385a5fca25b622fe8b4719e1fb4021cad3e450cf1d700e48d8e9:log:51', 'hash': '0x73a12961e699385a5fca25b622fe8b4719e1fb4021cad3e450cf1d700e48d8e9', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xec57f2df771f5fe57734cbc2ed1f3455a5546d52', 'value': 469.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x47a7c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T09:57:18.000Z'}}, {'blockNum': '0x62a01c', 'uniqueId': '0x31f82ce0a54ba3fde0e1de0113d8b7ad17935be900263f8eebca8a64d573dccb:log:0', 'hash': '0x31f82ce0a54ba3fde0e1de0113d8b7ad17935be900263f8eebca8a64d573dccb', 'from': '0xec57f2df771f5fe57734cbc2ed1f3455a5546d52', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 469.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x47a7c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T10:11:18.000Z'}}, {'blockNum': '0x62a1df', 'uniqueId': '0xa7890290328ab2a170255a73aa6a2734418e6c183c769bb7b12e40f0e8dcd712:log:40', 'hash': '0xa7890290328ab2a170255a73aa6a2734418e6c183c769bb7b12e40f0e8dcd712', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5838.382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x037addcc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T11:47:44.000Z'}}, {'blockNum': '0x62a243', 'uniqueId': '0x3c7aa2dda0445dbf2ff8e63bca276e5e8514bb79dbfb32c5ef0c41d0b2958a83:log:17', 'hash': '0x3c7aa2dda0445dbf2ff8e63bca276e5e8514bb79dbfb32c5ef0c41d0b2958a83', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 317.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3076ce', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T12:15:01.000Z'}}, {'blockNum': '0x62a2c1', 'uniqueId': '0xb7c9a6a39db71b1e99b2abf282ad98b5faaee5a946c626e9cc43682112d5e3ec:log:22', 'hash': '0xb7c9a6a39db71b1e99b2abf282ad98b5faaee5a946c626e9cc43682112d5e3ec', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6124.631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a68b66', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T12:43:56.000Z'}}, {'blockNum': '0x62a35f', 'uniqueId': '0xfdc20a5364cfb573336ef86e80d6e9dd8db6911cdcf5398ed84906ef289fc82d:log:23', 'hash': '0xfdc20a5364cfb573336ef86e80d6e9dd8db6911cdcf5398ed84906ef289fc82d', 'from': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'to': '0x0bbc36836a2466d9d7334d7cd1566a443f7ccf10', 'value': 2118.0299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01432f8b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T13:18:16.000Z'}}, {'blockNum': '0x62a43f', 'uniqueId': '0x1e79e7c0aaad499155af5d48768a07ab0b731c6981c11f2c9d12df8978dffdc2:log:0', 'hash': '0x1e79e7c0aaad499155af5d48768a07ab0b731c6981c11f2c9d12df8978dffdc2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 4886.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e9a2d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T14:15:27.000Z'}}, {'blockNum': '0x62a475', 'uniqueId': '0xcc75a304474a7691dfecc5591b3ef260e84a793e399f1ee4c336a3313e2aefae:log:2', 'hash': '0xcc75a304474a7691dfecc5591b3ef260e84a793e399f1ee4c336a3313e2aefae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7bf73bece1f4edd61a047c0e614b0ca720db9d0c', 'value': 108.988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10a158', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T14:27:16.000Z'}}, {'blockNum': '0x62a487', 'uniqueId': '0xf1b865b5051d95c0c212455a9ee81da24980775dabbb0e367fcd3570a9d498c0:log:145', 'hash': '0xf1b865b5051d95c0c212455a9ee81da24980775dabbb0e367fcd3570a9d498c0', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 4886.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e9a2d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T14:31:03.000Z'}}, {'blockNum': '0x62a549', 'uniqueId': '0x940de0d3aa9b7e3da71d5d3ebcaa75d34dea061625ce2154b125b29cfc45a816:log:6', 'hash': '0x940de0d3aa9b7e3da71d5d3ebcaa75d34dea061625ce2154b125b29cfc45a816', 'from': '0xd1eb41d1ab3a82e3e94eeaccebff29d13e8a5095', 'to': '0xd8dad59e110ca2c02f77fbcb8e5ed1b52b07ceda', 'value': 4.2798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa72e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T15:15:32.000Z'}}, {'blockNum': '0x62a7ab', 'uniqueId': '0x6704013ceedbc22fc7db6cafbfd9907d977d02f5cbf83c8b2e635335be72ff21:log:8', 'hash': '0x6704013ceedbc22fc7db6cafbfd9907d977d02f5cbf83c8b2e635335be72ff21', 'from': '0x28615671d1ceaa38a5bd3a9718bab431ede4af71', 'to': '0x6ce97fd710ed2f8ceb7f1a757982d5ab8113656e', 'value': 783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7779f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T17:37:58.000Z'}}, {'blockNum': '0x62a7ee', 'uniqueId': '0x5e35aa1b8fb3d7bee4df09148d31413299ae1a35f6f41550cb24910962806bbf:log:16', 'hash': '0x5e35aa1b8fb3d7bee4df09148d31413299ae1a35f6f41550cb24910962806bbf', 'from': '0x6ce97fd710ed2f8ceb7f1a757982d5ab8113656e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7779f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T17:51:10.000Z'}}, {'blockNum': '0x62a7ee', 'uniqueId': '0x4ab63f23853a6f8e4aa57e5b41ecd28e3fef75303ab22c3322d86ab48bc61a9f:log:61', 'hash': '0x4ab63f23853a6f8e4aa57e5b41ecd28e3fef75303ab22c3322d86ab48bc61a9f', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6140.044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a8e578', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T17:51:10.000Z'}}, {'blockNum': '0x62a829', 'uniqueId': '0x3e78c9e99a80a54261b3f2ab1af31f994173f27fdc93bb18c81c9cc58d404666:log:47', 'hash': '0x3e78c9e99a80a54261b3f2ab1af31f994173f27fdc93bb18c81c9cc58d404666', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x021b3ee0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T18:03:36.000Z'}}, {'blockNum': '0x62a90b', 'uniqueId': '0x44edeaee502f8be9ed9a014c66988277b012c046afd75711bcd37c08051082bf:log:8', 'hash': '0x44edeaee502f8be9ed9a014c66988277b012c046afd75711bcd37c08051082bf', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5266.148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03238ce8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T18:58:39.000Z'}}, {'blockNum': '0x62a922', 'uniqueId': '0xdbbb0d47265cbbfd618bc4d2729137d65eab74cf4c41b54eebb8d6245a70221a:log:2', 'hash': '0xdbbb0d47265cbbfd618bc4d2729137d65eab74cf4c41b54eebb8d6245a70221a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xae6870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:04.000Z'}}, {'blockNum': '0x62a928', 'uniqueId': '0xac45488b31da8128d6b3c74b81b5bf2474e3d0e68c6ea2a148172ca3140bdfd0:log:14', 'hash': '0xac45488b31da8128d6b3c74b81b5bf2474e3d0e68c6ea2a148172ca3140bdfd0', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1167.8538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb2334a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:53.000Z'}}, {'blockNum': '0x62a928', 'uniqueId': '0x0301c9a2a63f27f3c9c342c31ee3b02372b94afa1f5999022b91241635cff49f:log:15', 'hash': '0x0301c9a2a63f27f3c9c342c31ee3b02372b94afa1f5999022b91241635cff49f', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x0e7aecd8dd1b3eef2101c0951772979a50b7cdb7', 'value': 1038.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9e802c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:53.000Z'}}, {'blockNum': '0x62a928', 'uniqueId': '0x5c6bed12e7f25b7134c0be80ce8952aa0d74136b45918be1751f5cc84c4237fc:log:16', 'hash': '0x5c6bed12e7f25b7134c0be80ce8952aa0d74136b45918be1751f5cc84c4237fc', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 5323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032c39b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:03:53.000Z'}}, {'blockNum': '0x62a92b', 'uniqueId': '0x77266723a7c9f7863c65513884604f305b64f2dca7680ed5b79b44e503ebce45:log:16', 'hash': '0x77266723a7c9f7863c65513884604f305b64f2dca7680ed5b79b44e503ebce45', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x022b6b80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:04:10.000Z'}}, {'blockNum': '0x62a947', 'uniqueId': '0xbb9517df742906269de5286c3c3bb3339bd3e08611e639b46a0d21866112d59c:log:54', 'hash': '0xbb9517df742906269de5286c3c3bb3339bd3e08611e639b46a0d21866112d59c', 'from': '0x376f5819f69e4c141ad30abe7c3f5782d6dc95fa', 'to': '0xab55cbc807147c2503129c6d3d830d05d6221f18', 'value': 614.3098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5dbc7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:09:48.000Z'}}, {'blockNum': '0x62a947', 'uniqueId': '0x4f749bc55d13c5bd035dc1c9e4371e4386f3dbde622be702d7faff74eb1fcb15:log:55', 'hash': '0x4f749bc55d13c5bd035dc1c9e4371e4386f3dbde622be702d7faff74eb1fcb15', 'from': '0xed8e2268111d4403d887c0739aea1413108b681e', 'to': '0x16216a0a2f03e695031c7ef6936829215c6a4576', 'value': 1.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4dbc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:09:48.000Z'}}, {'blockNum': '0x62a94b', 'uniqueId': '0x2efa4f1f916626ee83d58fe153df5dc47168f486b6e0279a193262110d9a0101:log:9', 'hash': '0x2efa4f1f916626ee83d58fe153df5dc47168f486b6e0279a193262110d9a0101', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 5290.6267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0327491b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:16.000Z'}}, {'blockNum': '0x62a94b', 'uniqueId': '0x3baf66a69619512aad320caae7c966fd4adfcdcaaff576869091399c863f721c:log:10', 'hash': '0x3baf66a69619512aad320caae7c966fd4adfcdcaaff576869091399c863f721c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'value': 638.347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x61676e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:16.000Z'}}, {'blockNum': '0x62a94e', 'uniqueId': '0x56217f5611934a7fdbc64072769376e82d2606172e10a5357b88164a8232a3bf:log:0', 'hash': '0x56217f5611934a7fdbc64072769376e82d2606172e10a5357b88164a8232a3bf', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 70.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0ad200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:38.000Z'}}, {'blockNum': '0x62a94e', 'uniqueId': '0x51733d83f800e9d4dbe1d4ded3fb47e92c59c5708b86c3d6075c25dd1797f60c:log:1', 'hash': '0x51733d83f800e9d4dbe1d4ded3fb47e92c59c5708b86c3d6075c25dd1797f60c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 48.5768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x076988', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:10:38.000Z'}}, {'blockNum': '0x62a951', 'uniqueId': '0xa40b70d737ea1e4f64cac04afb563a28f4048d0ea594c0fdf97d805af1ec0a70:log:4', 'hash': '0xa40b70d737ea1e4f64cac04afb563a28f4048d0ea594c0fdf97d805af1ec0a70', 'from': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xae6870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:11:21.000Z'}}, {'blockNum': '0x62a960', 'uniqueId': '0x018a003faafe462565dc2c4131f8bf800fd5eaf6ea5d42baf35cc6c46f83c00f:log:109', 'hash': '0x018a003faafe462565dc2c4131f8bf800fd5eaf6ea5d42baf35cc6c46f83c00f', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 4947.426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02f2ead4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:15:11.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0x7046281dcd878cfd963bd154a5d1cb3dce1aac40921b5dc32c5cbef5ee12757c:log:16', 'hash': '0x7046281dcd878cfd963bd154a5d1cb3dce1aac40921b5dc32c5cbef5ee12757c', 'from': '0xbb0b3467ee47a285139b396b8627599ad543ebff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 638.347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x61676e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0xd3e6248266112bf5384f2bfc95b761c5d528567f73bf5ba28b7df4b652053b45:log:17', 'hash': '0xd3e6248266112bf5384f2bfc95b761c5d528567f73bf5ba28b7df4b652053b45', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032c39b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0x10224198ca47003c4aa31a3add675a225d67fdf4d69965e09981a822f159ec1b:log:18', 'hash': '0x10224198ca47003c4aa31a3add675a225d67fdf4d69965e09981a822f159ec1b', 'from': '0x0e7aecd8dd1b3eef2101c0951772979a50b7cdb7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1038.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9e802c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0xe3699eb41f9c99035b09317b7b7d0b41628212e1eea66a83949d0efbd02dae43:log:19', 'hash': '0xe3699eb41f9c99035b09317b7b7d0b41628212e1eea66a83949d0efbd02dae43', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40349.5156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x180cd8f4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a976', 'uniqueId': '0x99f72f3abd69ed5040add5c9ffe299e762eb19f8722db430f05431eac8b457f9:log:20', 'hash': '0x99f72f3abd69ed5040add5c9ffe299e762eb19f8722db430f05431eac8b457f9', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1287.3426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc46ed2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:21:31.000Z'}}, {'blockNum': '0x62a990', 'uniqueId': '0xcb10000f853ec2835d1026ff9d9b272caee69c797c2c3b9b1ed319af151ea7b5:log:54', 'hash': '0xcb10000f853ec2835d1026ff9d9b272caee69c797c2c3b9b1ed319af151ea7b5', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5232.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031e571e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:27:07.000Z'}}, {'blockNum': '0x62a9a4', 'uniqueId': '0x9dc491b6e6b4400bae9761d3e211481e1bf43740ce7aaa11bf3d845d5c106879:log:10', 'hash': '0x9dc491b6e6b4400bae9761d3e211481e1bf43740ce7aaa11bf3d845d5c106879', 'from': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198343.983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7638e3d6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:31:10.000Z'}}, {'blockNum': '0x62a9a4', 'uniqueId': '0x75007bc3e8f0cb4202b4c031d0b5bccde89e809382cf08603d7d0941f66cbe76:log:11', 'hash': '0x75007bc3e8f0cb4202b4c031d0b5bccde89e809382cf08603d7d0941f66cbe76', 'from': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5290.6267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0327491b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:31:10.000Z'}}, {'blockNum': '0x62a9aa', 'uniqueId': '0xaae1008f9ec98672a3b6815498d51d1145b21d8a64e593257b2147d88b00269b:log:11', 'hash': '0xaae1008f9ec98672a3b6815498d51d1145b21d8a64e593257b2147d88b00269b', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 296.4617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d3c89', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:31:47.000Z'}}, {'blockNum': '0x62a9c9', 'uniqueId': '0xe1e16832e30d52eb6389704ba0d154d1eb45068eada38a921a3dd60e347a7f2a:log:1', 'hash': '0xe1e16832e30d52eb6389704ba0d154d1eb45068eada38a921a3dd60e347a7f2a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 398.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3cce68', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:38:48.000Z'}}, {'blockNum': '0x62a9f9', 'uniqueId': '0x876bd2520e557ff8606abfcdad20609ea17160c475e37e84fd5efae22600d614:log:0', 'hash': '0x876bd2520e557ff8606abfcdad20609ea17160c475e37e84fd5efae22600d614', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 5555.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034fa418', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:51:03.000Z'}}, {'blockNum': '0x62a9f9', 'uniqueId': '0xe1303e265cf92c720fe9c80d956c0342939859b70dd755c08b3953ce3134d495:log:3', 'hash': '0xe1303e265cf92c720fe9c80d956c0342939859b70dd755c08b3953ce3134d495', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 398.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3cce68', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:51:03.000Z'}}, {'blockNum': '0x62aa0a', 'uniqueId': '0xb2817e00e7390f3e1c6080b2bcb98c23308a60f3e483b2e8f57767be87366b00:log:78', 'hash': '0xb2817e00e7390f3e1c6080b2bcb98c23308a60f3e483b2e8f57767be87366b00', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 5298.592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03288040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:54:07.000Z'}}, {'blockNum': '0x62aa1a', 'uniqueId': '0x36705776913a3c74dadac29382073176e6ddf0a97dc97205f8154d27f21acb61:log:44', 'hash': '0x36705776913a3c74dadac29382073176e6ddf0a97dc97205f8154d27f21acb61', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5555.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034fa418', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:59:55.000Z'}}, {'blockNum': '0x62aa1b', 'uniqueId': '0xca9f7208027c92de127fb654b6a98128efd11faca0feb662bcd7c40971e08394:log:10', 'hash': '0xca9f7208027c92de127fb654b6a98128efd11faca0feb662bcd7c40971e08394', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x0169bdd17b624f7a8754b5e17f8e02de7c3fd158', 'value': 1800.3298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0112b562', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T19:59:58.000Z'}}, {'blockNum': '0x62aa39', 'uniqueId': '0x1763819559b4d27cb1acc09c51cd23ea5b167e0d0c3051612f8f7c9547c7c4ce:log:15', 'hash': '0x1763819559b4d27cb1acc09c51cd23ea5b167e0d0c3051612f8f7c9547c7c4ce', 'from': '0xb31791874a8ff467c5e7792847ea82109766e02b', 'to': '0xbccd4fd887a8c5bbeb4020ad8b75b25717db6aa4', 'value': 107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1053b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:06:30.000Z'}}, {'blockNum': '0x62aa54', 'uniqueId': '0xc070ff76a420494d469a5cd439d1d674dfe09d74c509cc4f230e5aa5f2e27728:log:9', 'hash': '0xc070ff76a420494d469a5cd439d1d674dfe09d74c509cc4f230e5aa5f2e27728', 'from': '0x0169bdd17b624f7a8754b5e17f8e02de7c3fd158', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800.3298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0112b562', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:11:02.000Z'}}, {'blockNum': '0x62aa55', 'uniqueId': '0xd9dbfe7cb3f05afac3569276d7458ab2b3747422c0262fef960de91e492fdca0:log:9', 'hash': '0xd9dbfe7cb3f05afac3569276d7458ab2b3747422c0262fef960de91e492fdca0', 'from': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5298.592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03288040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:11:08.000Z'}}, {'blockNum': '0x62aa57', 'uniqueId': '0x5847813510df2fd5c34f4ef6c8dc500c733de10bdf71a11b8389077229636199:log:31', 'hash': '0x5847813510df2fd5c34f4ef6c8dc500c733de10bdf71a11b8389077229636199', 'from': '0xbccd4fd887a8c5bbeb4020ad8b75b25717db6aa4', 'to': '0x8cbc98af743b77ac88db1cfa561fca73091906cc', 'value': 107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1053b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:11:41.000Z'}}, {'blockNum': '0x62aac3', 'uniqueId': '0xdd582f934a7c1823a62eb3ef54cf6420fe40e65bdd7829a9104588ee452909ec:log:48', 'hash': '0xdd582f934a7c1823a62eb3ef54cf6420fe40e65bdd7829a9104588ee452909ec', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 1662.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfda5fc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:38:27.000Z'}}, {'blockNum': '0x62aacc', 'uniqueId': '0x427bae78e43ca3d0d4205cdf28359245ab6c5a2083607f13033bf989d9855f7c:log:37', 'hash': '0x427bae78e43ca3d0d4205cdf28359245ab6c5a2083607f13033bf989d9855f7c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'value': 1278.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc31d38', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T20:40:16.000Z'}}, {'blockNum': '0x62ab28', 'uniqueId': '0xf0bf82d50bf3462f1479135b8162bc94d12d37aecbe18004d146692a5e192a37:log:14', 'hash': '0xf0bf82d50bf3462f1479135b8162bc94d12d37aecbe18004d146692a5e192a37', 'from': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1326.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xca6868', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T21:01:19.000Z'}}, {'blockNum': '0x62abe0', 'uniqueId': '0xdfa11bd67457a5a561f74b586614a77e3ac0bb6bc77eadecc03f826e9d3e0856:log:4', 'hash': '0xdfa11bd67457a5a561f74b586614a77e3ac0bb6bc77eadecc03f826e9d3e0856', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 5234.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031ea908', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T21:43:24.000Z'}}, {'blockNum': '0x62ac03', 'uniqueId': '0x35080303ae556c1d899405d6a28cc3101ddf45d95cf2baf6e5ed0c84c898cfd2:log:39', 'hash': '0x35080303ae556c1d899405d6a28cc3101ddf45d95cf2baf6e5ed0c84c898cfd2', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5234.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031ea908', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T21:51:30.000Z'}}, {'blockNum': '0x62ad1e', 'uniqueId': '0x3ea46d8295000c5e5060ac2118303150713e088492b504406fe1e3347201a68e:log:27', 'hash': '0x3ea46d8295000c5e5060ac2118303150713e088492b504406fe1e3347201a68e', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x023863d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T22:57:53.000Z'}}, {'blockNum': '0x62ad5c', 'uniqueId': '0x90614a7974fc5dc284135c657f6a7f1ff2239db55a2e633dee9149e2ac86fbe9:log:5', 'hash': '0x90614a7974fc5dc284135c657f6a7f1ff2239db55a2e633dee9149e2ac86fbe9', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x023863d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T23:11:17.000Z'}}, {'blockNum': '0x62ada7', 'uniqueId': '0x51fdc5bf8cdc349ba7b8943d2af307a21b171c6af9f2b9b7850b2627658e6219:log:5', 'hash': '0x51fdc5bf8cdc349ba7b8943d2af307a21b171c6af9f2b9b7850b2627658e6219', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0234e160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T23:30:46.000Z'}}, {'blockNum': '0x62adf5', 'uniqueId': '0x5545ecd589589f4d5921e4d51b3a18575e2601f43773fc2e83e6d861646a6d93:log:35', 'hash': '0x5545ecd589589f4d5921e4d51b3a18575e2601f43773fc2e83e6d861646a6d93', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0234e160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-06T23:51:14.000Z'}}, {'blockNum': '0x62af86', 'uniqueId': '0xc27579aa172ca5ec6f65529016f088e1089ccb3c45c9c81fab10f33ccb7c8173:log:5', 'hash': '0xc27579aa172ca5ec6f65529016f088e1089ccb3c45c9c81fab10f33ccb7c8173', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5338.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032e9340', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:30:38.000Z'}}, {'blockNum': '0x62afa7', 'uniqueId': '0x828a08cee019e558388e8a812d39a3e35328554ec1f1b54eec8e5d5963e9e0e4:log:13', 'hash': '0x828a08cee019e558388e8a812d39a3e35328554ec1f1b54eec8e5d5963e9e0e4', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5338.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032e9340', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:37:38.000Z'}}, {'blockNum': '0x62afd5', 'uniqueId': '0x32a0cbb55c82045b0f38aa71819c749b9e0fea861b24f1f7f8c647889245053f:log:4', 'hash': '0x32a0cbb55c82045b0f38aa71819c749b9e0fea861b24f1f7f8c647889245053f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5373.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0333ea70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:45:36.000Z'}}, {'blockNum': '0x62afde', 'uniqueId': '0xfdc1bc9810fbaa96e8b95a92b86b016150f494cf916e854a8d2d91264addf7fe:log:5', 'hash': '0xfdc1bc9810fbaa96e8b95a92b86b016150f494cf916e854a8d2d91264addf7fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'value': 303.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2e4b90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:47:50.000Z'}}, {'blockNum': '0x62afde', 'uniqueId': '0x49113ead55df32aa06314cc2140faa31f5651a1c6b9a8150e03cd5fd21f56379:log:6', 'hash': '0x49113ead55df32aa06314cc2140faa31f5651a1c6b9a8150e03cd5fd21f56379', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63a6f6e759e27a6a41ebf8785c31d29b42c14719', 'value': 1088.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa613a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:47:50.000Z'}}, {'blockNum': '0x62afdf', 'uniqueId': '0xd426404dacc4de79722fc65d6235e373e1328d2981b5843dc630b424f5dd83da:log:6', 'hash': '0xd426404dacc4de79722fc65d6235e373e1328d2981b5843dc630b424f5dd83da', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 1582.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf17480', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:47:54.000Z'}}, {'blockNum': '0x62afe5', 'uniqueId': '0x90e3dd3bcec5bc7f608d0a71639d6e13ccda76d0ac9b1ab6c31bb4c5a892ecd9:log:49', 'hash': '0x90e3dd3bcec5bc7f608d0a71639d6e13ccda76d0ac9b1ab6c31bb4c5a892ecd9', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x022f3c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:48:58.000Z'}}, {'blockNum': '0x62afec', 'uniqueId': '0xc0bd24a21c204aece13f3f1481168d34f57b8facebaabf2fe78f3d0fa927190f:log:21', 'hash': '0xc0bd24a21c204aece13f3f1481168d34f57b8facebaabf2fe78f3d0fa927190f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa38cde626af6d97c39a44ba2bebc589cdafb6ac8', 'value': 1271.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc21398', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:49:36.000Z'}}, {'blockNum': '0x62afee', 'uniqueId': '0xaaf4781c1f5617f0db5243831ec0ce0b2df8068b27fc66d4d0fd8b0ac27e615a:log:8', 'hash': '0xaaf4781c1f5617f0db5243831ec0ce0b2df8068b27fc66d4d0fd8b0ac27e615a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 1385.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xd36530', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:49:57.000Z'}}, {'blockNum': '0x62aff6', 'uniqueId': '0xba30795000f1ac080f1b214839f802df773438630b8bb91243705cfe0fafaa0f:log:2', 'hash': '0xba30795000f1ac080f1b214839f802df773438630b8bb91243705cfe0fafaa0f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x388118e4769b2f946e763ea5bdd1825c720f428b', 'value': 2481.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017ab538', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:52:14.000Z'}}, {'blockNum': '0x62aff6', 'uniqueId': '0xf8064d2c0573e5b44077972e58345911e1f26249fefe3083f81f4ff2876dc1ae:log:3', 'hash': '0xf8064d2c0573e5b44077972e58345911e1f26249fefe3083f81f4ff2876dc1ae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x754652c7ba43392f60875c5dddcd117d3a84d37e', 'value': 10.387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0195be', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:52:14.000Z'}}, {'blockNum': '0x62aff6', 'uniqueId': '0x190598f27cb1f535260f53d8cd622f49658826ddf2670edc841180fb11f2d15a:log:59', 'hash': '0x190598f27cb1f535260f53d8cd622f49658826ddf2670edc841180fb11f2d15a', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5373.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0333ea70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:52:14.000Z'}}, {'blockNum': '0x62affc', 'uniqueId': '0x72c513d24367f47100516e02533f82f68896db6806cc810f2b2cdef686528f29:log:37', 'hash': '0x72c513d24367f47100516e02533f82f68896db6806cc810f2b2cdef686528f29', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6148.9518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03aa416e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:53:58.000Z'}}, {'blockNum': '0x62affd', 'uniqueId': '0x8ae27eaa6a37fad1586b2ee78d3ab906ecf466dcb22d12c40ee03914dcf6452b:log:8', 'hash': '0x8ae27eaa6a37fad1586b2ee78d3ab906ecf466dcb22d12c40ee03914dcf6452b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'value': 5445.57, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033eed94', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:54:33.000Z'}}, {'blockNum': '0x62b004', 'uniqueId': '0x78f51c7ff55f9740fc1c721658b9a0cbd0c6786f50acf4cccf4b2965114eac9a:log:2', 'hash': '0x78f51c7ff55f9740fc1c721658b9a0cbd0c6786f50acf4cccf4b2965114eac9a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x381856eca3328afd5627d19d348c222edc36d52b', 'value': 1805.5901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011382dd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:55:25.000Z'}}, {'blockNum': '0x62b010', 'uniqueId': '0x74debb61541652ab8534e578462f4c0020a59dd042eeba24f4ef2242031c8487:log:0', 'hash': '0x74debb61541652ab8534e578462f4c0020a59dd042eeba24f4ef2242031c8487', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 3302.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01f7ebe8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:57:21.000Z'}}, {'blockNum': '0x62b017', 'uniqueId': '0x9e24204edda596c7160a7646aec5c5e4540ae61b37bbaa897c293953dd4d20f6:log:26', 'hash': '0x9e24204edda596c7160a7646aec5c5e4540ae61b37bbaa897c293953dd4d20f6', 'from': '0x388118e4769b2f946e763ea5bdd1825c720f428b', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2481.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017ab538', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:58:38.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0x72254e5e6cd7a90ba45139e687c9835eb395fca24d485c5011ac742108210801:log:4', 'hash': '0x72254e5e6cd7a90ba45139e687c9835eb395fca24d485c5011ac742108210801', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 527.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x507990', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0xf0551257f866ff3f9774cf8fb6d0658d2999053d98176f3fda8525133d405371:log:5', 'hash': '0xf0551257f866ff3f9774cf8fb6d0658d2999053d98176f3fda8525133d405371', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 255.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x26f890', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0xa1283fd578ed68660425b5d3b001238f922588485234027f20c2b120ee7295c0:log:6', 'hash': '0xa1283fd578ed68660425b5d3b001238f922588485234027f20c2b120ee7295c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 571.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x573050', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01b', 'uniqueId': '0x25d4f7f10ef95244bacbd2089f0ee43fddf72219143c96ff0ebaaf55e6d71d37:log:7', 'hash': '0x25d4f7f10ef95244bacbd2089f0ee43fddf72219143c96ff0ebaaf55e6d71d37', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x754652c7ba43392f60875c5dddcd117d3a84d37e', 'value': 463.933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x46ca62', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T01:59:51.000Z'}}, {'blockNum': '0x62b01d', 'uniqueId': '0x0b1aa4ca226e89ceeebf7f6339462b9261015e7101ed227f119979f41168a7f0:log:76', 'hash': '0x0b1aa4ca226e89ceeebf7f6339462b9261015e7101ed227f119979f41168a7f0', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 5804.0095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03759f1f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:00:13.000Z'}}, {'blockNum': '0x62b01f', 'uniqueId': '0x217a382e2cd609c183ff0f21904197af21e64ee322fb780d46a796c994ea92f7:log:29', 'hash': '0x217a382e2cd609c183ff0f21904197af21e64ee322fb780d46a796c994ea92f7', 'from': '0x63a6f6e759e27a6a41ebf8785c31d29b42c14719', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1088.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa613a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:01.000Z'}}, {'blockNum': '0x62b01f', 'uniqueId': '0x3e2c32ae67fc9c77329c7bd4c07553a39d34168d88862150ce15795f06049c2d:log:30', 'hash': '0x3e2c32ae67fc9c77329c7bd4c07553a39d34168d88862150ce15795f06049c2d', 'from': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 5445.57, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033eed94', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:01.000Z'}}, {'blockNum': '0x62b020', 'uniqueId': '0x9281f2ca9b4ce56fed2b1f77d9f0e965dd9244c046920c58cfd1ff990f0fbdc1:log:0', 'hash': '0x9281f2ca9b4ce56fed2b1f77d9f0e965dd9244c046920c58cfd1ff990f0fbdc1', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x022f3c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:04.000Z'}}, {'blockNum': '0x62b024', 'uniqueId': '0x1585443d230fe19dad1237a230e8b6dfdb3ec7fcf8f7738f2b484cc1639fc7f1:log:29', 'hash': '0x1585443d230fe19dad1237a230e8b6dfdb3ec7fcf8f7738f2b484cc1639fc7f1', 'from': '0x381856eca3328afd5627d19d348c222edc36d52b', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1805.5901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011382dd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:01:49.000Z'}}, {'blockNum': '0x62b026', 'uniqueId': '0xdf6a55f0c5a982da4ee4aa965c74df0f99f43b35d86c90ebddfd23a339707931:log:6', 'hash': '0xdf6a55f0c5a982da4ee4aa965c74df0f99f43b35d86c90ebddfd23a339707931', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8961b8c41e1d929e0bee94480898127ab677ebc7', 'value': 903.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x89d910', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:14.000Z'}}, {'blockNum': '0x62b026', 'uniqueId': '0xafdf5feb292bb4b2196aaa6508376d87098904b0725236ef5dc8b5943e049893:log:7', 'hash': '0xafdf5feb292bb4b2196aaa6508376d87098904b0725236ef5dc8b5943e049893', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 210.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x201ac0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:14.000Z'}}, {'blockNum': '0x62b028', 'uniqueId': '0x48d072bdc30aec1ccda3eb54f002b190915086be799409358fc4ec597bb80f89:log:2', 'hash': '0x48d072bdc30aec1ccda3eb54f002b190915086be799409358fc4ec597bb80f89', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 307.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2ee7d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:46.000Z'}}, {'blockNum': '0x62b028', 'uniqueId': '0xfbd8abb46c94e062f236471f5943b6e17812d7913e6875716714eafda51868dc:log:3', 'hash': '0xfbd8abb46c94e062f236471f5943b6e17812d7913e6875716714eafda51868dc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'value': 2437.9728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01740150', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:02:46.000Z'}}, {'blockNum': '0x62b033', 'uniqueId': '0x590d9933dd1564fcf4e206552f22a05ee849986231037e1627836495a0b72d2d:log:0', 'hash': '0x590d9933dd1564fcf4e206552f22a05ee849986231037e1627836495a0b72d2d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'value': 495.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4b9790', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:05:32.000Z'}}, {'blockNum': '0x62b033', 'uniqueId': '0xf58d3a1dff130e23c7989c667679c56befade4eb9dfdad591ff799dfc3d76f3f:log:38', 'hash': '0xf58d3a1dff130e23c7989c667679c56befade4eb9dfdad591ff799dfc3d76f3f', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6213.0817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03b40a81', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:05:32.000Z'}}, {'blockNum': '0x62b037', 'uniqueId': '0x7c2e39d9de54b6295a74ffad5252e4d493b3efe9b25379c16efc9be7081064f0:log:38', 'hash': '0x7c2e39d9de54b6295a74ffad5252e4d493b3efe9b25379c16efc9be7081064f0', 'from': '0xa38cde626af6d97c39a44ba2bebc589cdafb6ac8', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1271.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc21398', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:06:10.000Z'}}, {'blockNum': '0x62b046', 'uniqueId': '0xf318c37725442d744400856346602182a25c0e9dbb571482a226944e991976f9:log:4', 'hash': '0xf318c37725442d744400856346602182a25c0e9dbb571482a226944e991976f9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'value': 2381.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x016b5f70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:09:28.000Z'}}, {'blockNum': '0x62b046', 'uniqueId': '0xfce0695299b5fcdaea640280d8ef40d60473a0d28c1089f8259864ff3b553b72:log:5', 'hash': '0xfce0695299b5fcdaea640280d8ef40d60473a0d28c1089f8259864ff3b553b72', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5408.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033941a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:09:28.000Z'}}, {'blockNum': '0x62b04b', 'uniqueId': '0x3675a77283d5049c816b57e5a9f1ee0f1b5c454e6049678abb55e6413fdaa85d:log:41', 'hash': '0x3675a77283d5049c816b57e5a9f1ee0f1b5c454e6049678abb55e6413fdaa85d', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011da500', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:10:26.000Z'}}, {'blockNum': '0x62b04d', 'uniqueId': '0xad1f29f05fb447f31349ccb98f10fab26907c6f0d4ebfc1a3a964b39b4f11822:log:49', 'hash': '0xad1f29f05fb447f31349ccb98f10fab26907c6f0d4ebfc1a3a964b39b4f11822', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 7841.5411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ac8633', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:11:01.000Z'}}, {'blockNum': '0x62b04e', 'uniqueId': '0x992b2042dbc4dabf01d91c1f95d3f1dac660b05eb2661c749efd0de277861fd1:log:2', 'hash': '0x992b2042dbc4dabf01d91c1f95d3f1dac660b05eb2661c749efd0de277861fd1', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 126268.1932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4b42ff4c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:11:17.000Z'}}, {'blockNum': '0x62b052', 'uniqueId': '0x72deab01350824ceab947e2ee36f6246d52deb7913bcfc0fbd0555929a001caa:log:0', 'hash': '0x72deab01350824ceab947e2ee36f6246d52deb7913bcfc0fbd0555929a001caa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x096a4e7ed3d256dc43b9a10954393566dd84e5ec', 'value': 1490.905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xe37e7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:11:56.000Z'}}, {'blockNum': '0x62b069', 'uniqueId': '0x9687ce74b28efe65dd18cc79b501e678256c2001d2b7b1d3e3155ed4b0eea333:log:55', 'hash': '0x9687ce74b28efe65dd18cc79b501e678256c2001d2b7b1d3e3155ed4b0eea333', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5408.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033941a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:15:57.000Z'}}, {'blockNum': '0x62b06c', 'uniqueId': '0x307495bf72569b49ecfdb1f3412d0aff7c0b6fc1b286c2f9ffe9aa3b5c8860e7:log:82', 'hash': '0x307495bf72569b49ecfdb1f3412d0aff7c0b6fc1b286c2f9ffe9aa3b5c8860e7', 'from': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 2437.9728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01740150', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:17:11.000Z'}}, {'blockNum': '0x62b081', 'uniqueId': '0xc2f3f3895fc0f8b55b916453cdd5e21ba3220ace474908ead1690a89fe96e05b:log:26', 'hash': '0xc2f3f3895fc0f8b55b916453cdd5e21ba3220ace474908ead1690a89fe96e05b', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 91294.1501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x366a61bd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:21:25.000Z'}}, {'blockNum': '0x62b083', 'uniqueId': '0xe268db6920dc23ee3b32fae0112ed8d55885425ccb786a24546d0fbbb4981b6b:log:2', 'hash': '0xe268db6920dc23ee3b32fae0112ed8d55885425ccb786a24546d0fbbb4981b6b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5444.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033ebfe0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:21:51.000Z'}}, {'blockNum': '0x62b087', 'uniqueId': '0xae35817922d8eb335eebd7af41ac4ccc42d1a340d3f67dacb3a524c0e5184b80:log:57', 'hash': '0xae35817922d8eb335eebd7af41ac4ccc42d1a340d3f67dacb3a524c0e5184b80', 'from': '0x3c020808764d8e123a2c023f36ee9ae38bd9dab0', 'to': '0x164322524976c74641416b7a3047db2c5b86e481', 'value': 55.9295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0888bf', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:22:45.000Z'}}, {'blockNum': '0x62b08e', 'uniqueId': '0x470f4da95835a5f0b87a0418348bc7219add0db5c49fe87c08657e4f8d6c30aa:log:114', 'hash': '0x470f4da95835a5f0b87a0418348bc7219add0db5c49fe87c08657e4f8d6c30aa', 'from': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 2381.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x016b5f70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:24:14.000Z'}}, {'blockNum': '0x62b093', 'uniqueId': '0xa781a4ae1dd46d0e8fb69618f55e0875a6064064304f759b4405da3295a1d767:log:9', 'hash': '0xa781a4ae1dd46d0e8fb69618f55e0875a6064064304f759b4405da3295a1d767', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdeaf423f4216716e2f258e4c8662397668807a52', 'value': 1306.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc762f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:25:00.000Z'}}, {'blockNum': '0x62b095', 'uniqueId': '0x5775e1e5e3b6f41c8829c52a18c0fb18e31eb7941ca16d181237d334a5b1a834:log:5', 'hash': '0x5775e1e5e3b6f41c8829c52a18c0fb18e31eb7941ca16d181237d334a5b1a834', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 78165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2e970850', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:26:07.000Z'}}, {'blockNum': '0x62b095', 'uniqueId': '0x0a94d32462b8034361632fc46ade47226f041eb43547b7355f3478eedb4af91b:log:34', 'hash': '0x0a94d32462b8034361632fc46ade47226f041eb43547b7355f3478eedb4af91b', 'from': '0x096a4e7ed3d256dc43b9a10954393566dd84e5ec', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 1490.905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xe37e7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:26:07.000Z'}}, {'blockNum': '0x62b09f', 'uniqueId': '0xb96951e7fbea587a1dbf1bfd0b62032b12abc334fa7e57fc499fa7923bff8fa6:log:26', 'hash': '0xb96951e7fbea587a1dbf1bfd0b62032b12abc334fa7e57fc499fa7923bff8fa6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'value': 1863.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011c5510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:29:46.000Z'}}, {'blockNum': '0x62b0a4', 'uniqueId': '0x9f20011bc568f01c50b8d628daed2020e087ce68d8f9d82d290f00e4b8c4d216:log:147', 'hash': '0x9f20011bc568f01c50b8d628daed2020e087ce68d8f9d82d290f00e4b8c4d216', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5444.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033ebfe0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:30:57.000Z'}}, {'blockNum': '0x62b0a7', 'uniqueId': '0x9d0570efa9be5cc47ffe7163b163e7d4cf25d20a2c0f5b8b48d9858f817e1bb3:log:13', 'hash': '0x9d0570efa9be5cc47ffe7163b163e7d4cf25d20a2c0f5b8b48d9858f817e1bb3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5480.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03443e20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:31:53.000Z'}}, {'blockNum': '0x62b0a7', 'uniqueId': '0xd42c1c80b4e7841e41eda633b692d05ee2a8f63ff0de5de8081fa62e5f303443:log:14', 'hash': '0xd42c1c80b4e7841e41eda633b692d05ee2a8f63ff0de5de8081fa62e5f303443', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 788.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x784ce0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:31:53.000Z'}}, {'blockNum': '0x62b0a7', 'uniqueId': '0x216280ddfe7c65aff85f30098aa819e474c9d13bce00232ba65dae1441030ec4:log:15', 'hash': '0x216280ddfe7c65aff85f30098aa819e474c9d13bce00232ba65dae1441030ec4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7f1ab4f31d4bc218433d6cc1e9a1a77346336e2d', 'value': 1234.162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbc5174', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:31:53.000Z'}}, {'blockNum': '0x62b0b3', 'uniqueId': '0x0e2196a8ff94f9bafc88c10aad30f13c1d5e92e0b14884f360ccd88b35dde2bb:log:6', 'hash': '0x0e2196a8ff94f9bafc88c10aad30f13c1d5e92e0b14884f360ccd88b35dde2bb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'value': 457.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x45cb30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:33:44.000Z'}}, {'blockNum': '0x62b0b4', 'uniqueId': '0x3f596649f76d388ef02bd5b561a836c120d4b693a79589c2ab6b485a047c3f24:log:20', 'hash': '0x3f596649f76d388ef02bd5b561a836c120d4b693a79589c2ab6b485a047c3f24', 'from': '0xdeaf423f4216716e2f258e4c8662397668807a52', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1306.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xc762f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:34:06.000Z'}}, {'blockNum': '0x62b0c9', 'uniqueId': '0xd1e1235607d727a2e15b18f3cdbc3a2e28617af1baf775b2ed48c31ade3bca81:log:20', 'hash': '0xd1e1235607d727a2e15b18f3cdbc3a2e28617af1baf775b2ed48c31ade3bca81', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5480.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03443e20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:38:56.000Z'}}, {'blockNum': '0x62b0ca', 'uniqueId': '0x8939a30d6bb3a706c690e36f2a2653946d2cd067e33ab99783db9473cb04ee93:log:29', 'hash': '0x8939a30d6bb3a706c690e36f2a2653946d2cd067e33ab99783db9473cb04ee93', 'from': '0x7f1ab4f31d4bc218433d6cc1e9a1a77346336e2d', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 1234.162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbc5174', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:39:13.000Z'}}, {'blockNum': '0x62b0cd', 'uniqueId': '0x473895889573783b2deefabd7394c56483b7d1f115b080dd7c260de2ac6bebcc:log:13', 'hash': '0x473895889573783b2deefabd7394c56483b7d1f115b080dd7c260de2ac6bebcc', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 5232.9949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031e7ddd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:39:52.000Z'}}, {'blockNum': '0x62b0d0', 'uniqueId': '0x4a2071aa27fa44626009678116491483b62443a35c6a8b52469b655e348a0810:log:0', 'hash': '0x4a2071aa27fa44626009678116491483b62443a35c6a8b52469b655e348a0810', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'value': 4785.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02da31b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:40:20.000Z'}}, {'blockNum': '0x62b0d4', 'uniqueId': '0xeba7a22d951ef16a6ead9c6b6d95fe9517d3ba4586355ef2a9a41d9e8a385453:log:25', 'hash': '0xeba7a22d951ef16a6ead9c6b6d95fe9517d3ba4586355ef2a9a41d9e8a385453', 'from': '0x6d96e3f5bd99126df7f8cfff0ef809b3c276935a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 1256.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbfae50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:41:26.000Z'}}, {'blockNum': '0x62b0e1', 'uniqueId': '0x74402bdc7d353399af39393970f81923721207b42cfa88deaec56cd3a1c891ca:log:38', 'hash': '0x74402bdc7d353399af39393970f81923721207b42cfa88deaec56cd3a1c891ca', 'from': '0xff86518463ab901600333bc0d631e8a06d2d786e', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 1863.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011c5510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:44:56.000Z'}}, {'blockNum': '0x62b0e9', 'uniqueId': '0x9904bcb050b52bc737bf4a26661048f0343de4eef0dd81ad86eef515041adf2f:log:0', 'hash': '0x9904bcb050b52bc737bf4a26661048f0343de4eef0dd81ad86eef515041adf2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x699577ffe874562459b4b31b60537d0362f5aa51', 'value': 8242.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e9a17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:46:57.000Z'}}, {'blockNum': '0x62b0f8', 'uniqueId': '0xb8ace4d9401432f62ad5e4d23d8c7d4c161e057e0f117632592d7487968da740:log:19', 'hash': '0xb8ace4d9401432f62ad5e4d23d8c7d4c161e057e0f117632592d7487968da740', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5232.9949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031e7ddd', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:51:23.000Z'}}, {'blockNum': '0x62b109', 'uniqueId': '0x6f42218e2df40769dad24852105c4b82b223d2f568aeaf7d2def849c19d1f19f:log:0', 'hash': '0x6f42218e2df40769dad24852105c4b82b223d2f568aeaf7d2def849c19d1f19f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5516.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0349bc60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:54:55.000Z'}}, {'blockNum': '0x62b109', 'uniqueId': '0xad491a422b338217a017fcc8a7941b0c464e53edd71013e17ed3c05eb41c9f8e:log:28', 'hash': '0xad491a422b338217a017fcc8a7941b0c464e53edd71013e17ed3c05eb41c9f8e', 'from': '0x699577ffe874562459b4b31b60537d0362f5aa51', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 8242.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04e9a17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:54:55.000Z'}}, {'blockNum': '0x62b10f', 'uniqueId': '0x7d6e4b8658b01b75ab8448ae5240cd1d5d67bf54e2380f4ced26d48695fc7200:log:103', 'hash': '0x7d6e4b8658b01b75ab8448ae5240cd1d5d67bf54e2380f4ced26d48695fc7200', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x572cd0a1c8e7deb31fbe8a729b716cd08a5d5c4c', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02160ec0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:55:54.000Z'}}, {'blockNum': '0x62b113', 'uniqueId': '0x387ace7b518ad8b244ea8963db9d35f77b8d462d1fdfd684a18155fe6dba6878:log:31', 'hash': '0x387ace7b518ad8b244ea8963db9d35f77b8d462d1fdfd684a18155fe6dba6878', 'from': '0x503bba58811c82386be8fdefab424bdcec5ff67a', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 4785.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02da31b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T02:57:30.000Z'}}, {'blockNum': '0x62b12a', 'uniqueId': '0xb64967422dce0fc7d37fa599915cf81385091de4177fe77c37f9a6794fa01e84:log:24', 'hash': '0xb64967422dce0fc7d37fa599915cf81385091de4177fe77c37f9a6794fa01e84', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5516.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0349bc60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:03:09.000Z'}}, {'blockNum': '0x62b14e', 'uniqueId': '0x616531ebe9398717f91e5bb526296577a6d17e26dd3dc45be11e51e8c850158d:log:53', 'hash': '0x616531ebe9398717f91e5bb526296577a6d17e26dd3dc45be11e51e8c850158d', 'from': '0x572cd0a1c8e7deb31fbe8a729b716cd08a5d5c4c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03938700', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:10:49.000Z'}}, {'blockNum': '0x62b158', 'uniqueId': '0xe14dfd9b34c3ec55de98336afe81b98dd440e9142cf1a74e096e54cedec3c1fe:log:4', 'hash': '0xe14dfd9b34c3ec55de98336afe81b98dd440e9142cf1a74e096e54cedec3c1fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'value': 26648.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fe23920', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:13:21.000Z'}}, {'blockNum': '0x62b17b', 'uniqueId': '0xb384cbf2bbe0b56f04316ffc0976b1a90c9c2cd8e0398c69ee140c39b468581b:log:35', 'hash': '0xb384cbf2bbe0b56f04316ffc0976b1a90c9c2cd8e0398c69ee140c39b468581b', 'from': '0x7b907f9d57af35ec67240c492c3e8bbe92a16762', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 26648.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fe23920', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T03:20:37.000Z'}}, {'blockNum': '0x62b24f', 'uniqueId': '0xa10113cce4de0dfffcc5c47247a25d81141c0a2e2335d9be360f2b009560e3d4:log:8', 'hash': '0xa10113cce4de0dfffcc5c47247a25d81141c0a2e2335d9be360f2b009560e3d4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'value': 5553.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034f61b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:12:52.000Z'}}, {'blockNum': '0x62b292', 'uniqueId': '0xfce2e489cc66bece36d2f37b715530ef93b25aaafacd3eec8e8f755a13a81d58:log:6', 'hash': '0xfce2e489cc66bece36d2f37b715530ef93b25aaafacd3eec8e8f755a13a81d58', 'from': '0x40214a4a7171092693da80a80bf0f13bd79abae4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 5553.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x034f61b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:29:31.000Z'}}, {'blockNum': '0x62b2b7', 'uniqueId': '0x03127033f5594f3e0ba5f34e0b61ef5d3c47c12b064ea40f26df21c74db5aa7a:log:12', 'hash': '0x03127033f5594f3e0ba5f34e0b61ef5d3c47c12b064ea40f26df21c74db5aa7a', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6143.2865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a96421', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:40:19.000Z'}}, {'blockNum': '0x62b2bf', 'uniqueId': '0x9f6955af25202cb57b99177ffb5aee0abec38c6b85a39b7d2a3b3f0e253750c2:log:61', 'hash': '0x9f6955af25202cb57b99177ffb5aee0abec38c6b85a39b7d2a3b3f0e253750c2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'value': 5125.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e12f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:41:03.000Z'}}, {'blockNum': '0x62b2cf', 'uniqueId': '0x1eb42e1375caf2b68b61c6def03802b614677870178c980babfcfa42899acae1:log:103', 'hash': '0x1eb42e1375caf2b68b61c6def03802b614677870178c980babfcfa42899acae1', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 6838.7964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0413847c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:45:43.000Z'}}, {'blockNum': '0x62b2ec', 'uniqueId': '0x4f6d512165b0606b2a45ffd8b92657f8b23ea3d5256c55e5cf0626f5bc8f6070:log:4', 'hash': '0x4f6d512165b0606b2a45ffd8b92657f8b23ea3d5256c55e5cf0626f5bc8f6070', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6143.2865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03a96421', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:51:06.000Z'}}, {'blockNum': '0x62b307', 'uniqueId': '0x90b58fd90172dcd56e5950d42e25a19eb76901657681404ce316b5774010e6d7:log:8', 'hash': '0x90b58fd90172dcd56e5950d42e25a19eb76901657681404ce316b5774010e6d7', 'from': '0x0acd66d387b65d3961675539acb9e76955a07a2b', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5125.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e12f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-10-07T04:56:37.000Z'}}]}}
Number of returned transfers:  139
Answer is complete
 
symbol             QLC
group              BPF
date        2018-10-09
hour             17:00
exchange       binance
Name: 728, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: QLC, Contract: 
Datetime timestamps:  2018-10-09 17:00:00 2018-10-09 05:00:00 2018-10-10 05:00:00
Unix timestamps:  1539054000.0 1539140400.0
Hex Block Numbers:  0x62e1c0 0x62f9a7
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             OAX
group              BPF
date        2018-10-09
hour             19:00
exchange       binance
Name: 729, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2018-10-09 19:00:00 2018-10-09 07:00:00 2018-10-10 07:00:00
Unix timestamps:  1539061200.0 1539147600.0
Hex Block Numbers:  0x62e3ab 0x62fba5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x62e44b', 'uniqueId': '0x388133695df481e8a8af8cb7e56f2181663879a22761250c3a5bef4b7181ba80:log:30', 'hash': '0x388133695df481e8a8af8cb7e56f2181663879a22761250c3a5bef4b7181ba80', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf65e44abc6458c654257ef7e57998a1ad16a31bd', 'value': 1143.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3e034d132ad5400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T05:35:44.000Z'}}, {'blockNum': '0x62e64e', 'uniqueId': '0xaf1689fe72734d1f6e8eaeed162ecf1af104a4c8a577e1db7e6fb2aa86ff4007:log:11', 'hash': '0xaf1689fe72734d1f6e8eaeed162ecf1af104a4c8a577e1db7e6fb2aa86ff4007', 'from': '0x00c24b37407dec11e0330f840e321b38d9a6b5f9', 'to': '0x042ab3f86403cc9cfd722ca1cc503731527fe2a6', 'value': 2038.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6e85e51f0712a70000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T07:42:26.000Z'}}, {'blockNum': '0x62e67e', 'uniqueId': '0xa87cb4bddd0ffd7fce4c1feafc9d058627ffe97ac38e84df7f23c7f30032985e:log:12', 'hash': '0xa87cb4bddd0ffd7fce4c1feafc9d058627ffe97ac38e84df7f23c7f30032985e', 'from': '0x042ab3f86403cc9cfd722ca1cc503731527fe2a6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2038.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6e85e51f0712a70000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T07:53:10.000Z'}}, {'blockNum': '0x62e7aa', 'uniqueId': '0x8e62a4547913b01f1c41d7a2a2c89488bae5677a357671a8d634c8e10b273d73:log:5', 'hash': '0x8e62a4547913b01f1c41d7a2a2c89488bae5677a357671a8d634c8e10b273d73', 'from': '0xbad43f5074c6fa0b1ef306fcbe666836028d6ffd', 'to': '0xbd29701401c9caf611e7557bd21c9199dcaf9db2', 'value': 2477.4304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x864d40decfa9e80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T09:02:34.000Z'}}, {'blockNum': '0x62e7ff', 'uniqueId': '0x60a8bfd66fabf75dbaebe8fb0ba46cdcf1f2e42fdebefec252006916b4273485:log:9', 'hash': '0x60a8bfd66fabf75dbaebe8fb0ba46cdcf1f2e42fdebefec252006916b4273485', 'from': '0xbd29701401c9caf611e7557bd21c9199dcaf9db2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2527.4304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8903248de65b700000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T09:23:07.000Z'}}, {'blockNum': '0x62e935', 'uniqueId': '0x6e635b0fd58a3d1b7f611b12cea0ff8d057c30fc40e6192ef9a9e8e660368fff:log:9', 'hash': '0x6e635b0fd58a3d1b7f611b12cea0ff8d057c30fc40e6192ef9a9e8e660368fff', 'from': '0x860ca90f4eab837d230bc90ce0eeffbdd028f0eb', 'to': '0x39362701afb8877e1ce95812b9b2700c684153db', 'value': 1987.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6bc503b0229b030000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T10:32:29.000Z'}}, {'blockNum': '0x62e9e1', 'uniqueId': '0x25ca7eb6a25e5b1009f7f3e4b295ccaac25825f9c4f9f873cade4d3b03cc1e48:log:2', 'hash': '0x25ca7eb6a25e5b1009f7f3e4b295ccaac25825f9c4f9f873cade4d3b03cc1e48', 'from': '0x39362701afb8877e1ce95812b9b2700c684153db', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1987.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6bc503b0229b030000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T11:13:08.000Z'}}, {'blockNum': '0x62eb1f', 'uniqueId': '0x781b6d9aca81c6db07630a2be709a6fc9926a3012467a11d377fa4eae6d55bb7:log:30', 'hash': '0x781b6d9aca81c6db07630a2be709a6fc9926a3012467a11d377fa4eae6d55bb7', 'from': '0xbca95573f3bd0e11ffda54924d084e450b91a375', 'to': '0x1995a6994f1d8b416c5db7f3ad0ac9a330d53a6f', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T12:28:49.000Z'}}, {'blockNum': '0x62eb4a', 'uniqueId': '0x91171af195b2f28bd07b603dabb9aa27f106b063a65503594b26fdcc2974bcc3:log:25', 'hash': '0x91171af195b2f28bd07b603dabb9aa27f106b063a65503594b26fdcc2974bcc3', 'from': '0xbca95573f3bd0e11ffda54924d084e450b91a375', 'to': '0x1995a6994f1d8b416c5db7f3ad0ac9a330d53a6f', 'value': 110591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x176b266e73c5189c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T12:38:23.000Z'}}, {'blockNum': '0x62eb94', 'uniqueId': '0xed33228f570d1255da7c3509788c62ca5cbf7214e7e997804313e6ce698abc3b:log:17', 'hash': '0xed33228f570d1255da7c3509788c62ca5cbf7214e7e997804313e6ce698abc3b', 'from': '0x1995a6994f1d8b416c5db7f3ad0ac9a330d53a6f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1ba75a30073a7d1c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T12:52:59.000Z'}}, {'blockNum': '0x62ebb1', 'uniqueId': '0x239d96871a77dea490c9d62b1b22ecfc665c5006208f5fc4316d8795c8fef5a7:log:8', 'hash': '0x239d96871a77dea490c9d62b1b22ecfc665c5006208f5fc4316d8795c8fef5a7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 14284.017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0306568e9588d0de8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T13:00:02.000Z'}}, {'blockNum': '0x62ebb5', 'uniqueId': '0x24a64805530db44d20db57a6e7755f5554dca2b3c4b07f9790deb4d922a4d6d3:log:3', 'hash': '0x24a64805530db44d20db57a6e7755f5554dca2b3c4b07f9790deb4d922a4d6d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 111756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x17aa4e0de355dab00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T13:01:39.000Z'}}, {'blockNum': '0x62ed56', 'uniqueId': '0x27af9151b8c63f9d5eee0d4c4043b180091019aea7a5eb409026fb18f203fdf6:log:33', 'hash': '0x27af9151b8c63f9d5eee0d4c4043b180091019aea7a5eb409026fb18f203fdf6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'value': 4290.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe894fbb697b06e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T14:43:27.000Z'}}, {'blockNum': '0x62edb4', 'uniqueId': '0xea2affaa52ba295acdb70834b0097e2e38c7a519491655fa01af615ee3237c74:log:4', 'hash': '0xea2affaa52ba295acdb70834b0097e2e38c7a519491655fa01af615ee3237c74', 'from': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4290.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe894fbb697b06e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T15:03:09.000Z'}}, {'blockNum': '0x62f16d', 'uniqueId': '0x8e2180093570c47c25ee610b2a166c2c279ad33d4f299d215857ed58c931c3bf:log:2', 'hash': '0x8e2180093570c47c25ee610b2a166c2c279ad33d4f299d215857ed58c931c3bf', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3012.80569568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa3531401b138078000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:00:30.000Z'}}, {'blockNum': '0x62f17d', 'uniqueId': '0x556f2df5dabbed8af653ccf54e0ca4d8cf7b716c968ea76811812bee1b0c369d:log:3', 'hash': '0x556f2df5dabbed8af653ccf54e0ca4d8cf7b716c968ea76811812bee1b0c369d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'value': 10323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022f9c674e66e56c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:04:01.000Z'}}, {'blockNum': '0x62f1ce', 'uniqueId': '0x7edb8a03b0140f35c7dfe5e5a45a9518e5f35c78fdcfe5e39718949ef83bafec:log:3', 'hash': '0x7edb8a03b0140f35c7dfe5e5a45a9518e5f35c78fdcfe5e39718949ef83bafec', 'from': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022f9c674e66e56c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:23:04.000Z'}}, {'blockNum': '0x62f1ce', 'uniqueId': '0x77ff4cc65ffac9ef39cdc352d87784fade6d5ab574df578958e33b2c9e0db341:log:4', 'hash': '0x77ff4cc65ffac9ef39cdc352d87784fade6d5ab574df578958e33b2c9e0db341', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3248.58049927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb01b1c605e71793c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:23:04.000Z'}}, {'blockNum': '0x62f1f1', 'uniqueId': '0x4e558ab0c07e1050390eec2d9bc99b8b88755d7ae6ae7414bc346f06bb277aaf:log:99', 'hash': '0x4e558ab0c07e1050390eec2d9bc99b8b88755d7ae6ae7414bc346f06bb277aaf', 'from': '0x3650b69c5e20de43ea101fc97df22daf2a50d9da', 'to': '0xb3663bd49368c5fd7e1bdbed0bbc826f6df9c830', 'value': 9.938287470218e-06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0909f018268a', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:30:27.000Z'}}, {'blockNum': '0x62f30f', 'uniqueId': '0x8a5a0c669f8620b59015d7b9f57fdb4eaae6aad043b7e59865d4217a9c9c4be0:log:25', 'hash': '0x8a5a0c669f8620b59015d7b9f57fdb4eaae6aad043b7e59865d4217a9c9c4be0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32946c3d60b751c5f4f8825e59b3e2b41a2211b3', 'value': 2347.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x7f44e1e75a30920000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T20:36:06.000Z'}}, {'blockNum': '0x62fa7f', 'uniqueId': '0x91a611910aac577b61eae50dde1f05d00898bd57a231e2f1511d623e5bdedb3a:log:2', 'hash': '0x91a611910aac577b61eae50dde1f05d00898bd57a231e2f1511d623e5bdedb3a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a08ead02f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-10T03:48:37.000Z'}}, {'blockNum': '0x62fb1f', 'uniqueId': '0x450f55be57058d73be9e335964ff5eb54580b47974bcbc222fdbb47b1ce27fb9:log:32', 'hash': '0x450f55be57058d73be9e335964ff5eb54580b47974bcbc222fdbb47b1ce27fb9', 'from': '0x71e933f9f2b99af77ba9f0ae3b11215324c4bfb0', 'to': '0x263c640205bb0ff9be3f8ee5436b87b110ec5cfd', 'value': 478.818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x19f4ef421d0efd0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-10T04:25:37.000Z'}}, {'blockNum': '0x62fb9b', 'uniqueId': '0x540ad3071eed1096d6e504a09bff73f66dfcaa2d19752f97bc10988017bcc94c:log:48', 'hash': '0x540ad3071eed1096d6e504a09bff73f66dfcaa2d19752f97bc10988017bcc94c', 'from': '0x860ca90f4eab837d230bc90ce0eeffbdd028f0eb', 'to': '0x0d793e36f71f3e3a06f57b7049d2f1d1ea4598cd', 'value': 6708.249184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x016ba7a8a30544060000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-10T04:58:06.000Z'}}]}}
Number of returned transfers:  23
Answer is complete
 
symbol             XZC
group              BPF
date        2018-10-20
hour             20:05
exchange       binance
Name: 733, dtype: object
HERE
 Symbol: XZC, Contract: 
Datetime timestamps:  2018-10-20 20:05:00 2018-10-20 08:05:00 2018-10-21 08:05:00
Unix timestamps:  1540015500.0 1540101900.0
Hex Block Numbers:  0x63ec74 0x640486
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GRS
group              BPF
date        2018-10-24
hour             19:00
exchange       binance
Name: 735, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: GRS, Contract: 
Datetime timestamps:  2018-10-24 19:00:00 2018-10-24 07:00:00 2018-10-25 07:00:00
Unix timestamps:  1540357200.0 1540443600.0
Hex Block Numbers:  0x644b1a 0x64630b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           WINGS
group              BPF
date        2018-11-07
hour             17:01
exchange       binance
Name: 738, dtype: object
HERE
 Symbol: WINGS, Contract: 
Datetime timestamps:  2018-11-07 17:01:00 2018-11-07 05:01:00 2018-11-08 05:01:00
Unix timestamps:  1541563260.0 1541649660.0
Hex Block Numbers:  0x6597b4 0x65afb6
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EVX
group              BPF
date        2018-11-07
hour             18:00
exchange       binance
Name: 739, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2018-11-07 18:00:00 2018-11-07 06:00:00 2018-11-08 06:00:00
Unix timestamps:  1541566800.0 1541653200.0
Hex Block Numbers:  0x6598b5 0x65b0c1
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6598bb', 'uniqueId': '0xb41091b9ea10f06876c46a02d96ce75e5969bfa8de80139bbdb0fd0091f07c0b:log:38', 'hash': '0xb41091b9ea10f06876c46a02d96ce75e5969bfa8de80139bbdb0fd0091f07c0b', 'from': '0x1127fff9e6d575330e1f2f913e8af159e07c2580', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 1794.0803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0111c143', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T05:02:29.000Z'}}, {'blockNum': '0x6598d3', 'uniqueId': '0xd8d54ab527d13b5f14785cad05bf46b92e7aa538d8475191cb7cb007a8e8f4d3:log:0', 'hash': '0xd8d54ab527d13b5f14785cad05bf46b92e7aa538d8475191cb7cb007a8e8f4d3', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01426b10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T05:08:18.000Z'}}, {'blockNum': '0x659908', 'uniqueId': '0xd7949ff1c87f9f66ebb54aa9627aa7184c87f7f10300bb0c4ff7be4c99ff335b:log:26', 'hash': '0xd7949ff1c87f9f66ebb54aa9627aa7184c87f7f10300bb0c4ff7be4c99ff335b', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01426b10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T05:21:48.000Z'}}, {'blockNum': '0x659979', 'uniqueId': '0x6f4463a2663d54fa0aa869cbf9eea658ac3de01fb8a89b2a6a4bf7d2840577eb:log:46', 'hash': '0x6f4463a2663d54fa0aa869cbf9eea658ac3de01fb8a89b2a6a4bf7d2840577eb', 'from': '0xa8d2c4be936f31c3b8ff0e609af7338f265eb75e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 30.667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04adee', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T05:44:48.000Z'}}, {'blockNum': '0x659a18', 'uniqueId': '0x6dd43aed9d3743c2ff2b86618d54456aab37a69b5cfc7eb71ecca8f6ef940655:log:4', 'hash': '0x6dd43aed9d3743c2ff2b86618d54456aab37a69b5cfc7eb71ecca8f6ef940655', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T06:25:41.000Z'}}, {'blockNum': '0x659a93', 'uniqueId': '0x29afe04fe12e15343fc1334b9213b305f0e936263c8a21f885eb0e9f557238c7:log:17', 'hash': '0x29afe04fe12e15343fc1334b9213b305f0e936263c8a21f885eb0e9f557238c7', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T06:56:01.000Z'}}, {'blockNum': '0x659cfa', 'uniqueId': '0xef5e7a017c9d3759a13f71790246673c74eb85ad1f4e47c5cc9527da46cfdd42:log:30', 'hash': '0xef5e7a017c9d3759a13f71790246673c74eb85ad1f4e47c5cc9527da46cfdd42', 'from': '0x48fd571537fa96664e73f4a1234a6f0f195340e2', 'to': '0xcb086ada3842e46bafdf941b35638f09e2365251', 'value': 99.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0f41dc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T09:25:01.000Z'}}, {'blockNum': '0x659fae', 'uniqueId': '0xc4f83a0293cfc54cd92959e098ecf6ea074d74290615ee64f58409ad06c6f00d:log:99', 'hash': '0xc4f83a0293cfc54cd92959e098ecf6ea074d74290615ee64f58409ad06c6f00d', 'from': '0xe9c61f6ef64390218b91963bcacea6e2b455dcc9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 140.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x156f80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T12:08:18.000Z'}}, {'blockNum': '0x65a020', 'uniqueId': '0x4d89ef545fc62a8734a06f43a672a3888b5b772ef7989979c75f53cc11e0619e:log:2', 'hash': '0x4d89ef545fc62a8734a06f43a672a3888b5b772ef7989979c75f53cc11e0619e', 'from': '0xb82cad079303320af0cea05be0d8e26bc9967900', 'to': '0xbc3f1d06701c291d46babb08348e8cda6766eea1', 'value': 356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x365240', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T12:35:01.000Z'}}, {'blockNum': '0x65a122', 'uniqueId': '0x3bfc35f8f7599e94dccbe83c4dc366fc4b46da13e12b2b0aaca9d831ed82bbeb:log:11', 'hash': '0x3bfc35f8f7599e94dccbe83c4dc366fc4b46da13e12b2b0aaca9d831ed82bbeb', 'from': '0x03e021cad287ef450e9ce3d3c0abe311237eb1b4', 'to': '0x228a32be995e38418d8101042512f198d2a29fe2', 'value': 368.1003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x382aeb', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T13:31:48.000Z'}}, {'blockNum': '0x65a1f3', 'uniqueId': '0x69ea70ffca93b0914677892f0840976e17f36c9e644f53148c9080d0aa05fb7f:log:0', 'hash': '0x69ea70ffca93b0914677892f0840976e17f36c9e644f53148c9080d0aa05fb7f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5a5500', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T14:18:23.000Z'}}, {'blockNum': '0x65a239', 'uniqueId': '0x532d437b411fb9c8200d3179b42e6299778d16f6fff22b6bb24d5b715a05f521:log:31', 'hash': '0x532d437b411fb9c8200d3179b42e6299778d16f6fff22b6bb24d5b715a05f521', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5a5500', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T14:34:52.000Z'}}, {'blockNum': '0x65a2da', 'uniqueId': '0xa34f9dfc87381b2de1127fb802c408cf2ff579963e5e35000651cd497ef99a68:log:60', 'hash': '0xa34f9dfc87381b2de1127fb802c408cf2ff579963e5e35000651cd497ef99a68', 'from': '0x2ee71d02bfb61700ad92818ae746495bd5364b0e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 41.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x065ce8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T15:12:22.000Z'}}, {'blockNum': '0x65a2fd', 'uniqueId': '0xcacd0f9172167b99a61899842cb4516eac77a547a2460a67ad65f51e98e58511:log:3', 'hash': '0xcacd0f9172167b99a61899842cb4516eac77a547a2460a67ad65f51e98e58511', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 6596.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03ee87e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T15:19:53.000Z'}}, {'blockNum': '0x65a4cd', 'uniqueId': '0x1bf285dd604cb014e7e15032b5d5361a55dfcb4e895616ab50ab7c6281bbd141:log:61', 'hash': '0x1bf285dd604cb014e7e15032b5d5361a55dfcb4e895616ab50ab7c6281bbd141', 'from': '0x1d0a3fefd99df19580357c4664f515ad0f8870a8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 28.8176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0465b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T17:04:50.000Z'}}, {'blockNum': '0x65a5c6', 'uniqueId': '0xbd36f109512e09e8a3f46e7c57b3981b8856c9b30c3e2ba0d8426908ec31a1c7:log:15', 'hash': '0xbd36f109512e09e8a3f46e7c57b3981b8856c9b30c3e2ba0d8426908ec31a1c7', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4151d5684925db3d6b09c3de451647cfaae6e186', 'value': 44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06b6c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:02:22.000Z'}}, {'blockNum': '0x65a5c7', 'uniqueId': '0x17afe5cd175ab3b04b250c2b420109fbb768ed706d85e1153651cb35aa78fcf6:log:30', 'hash': '0x17afe5cd175ab3b04b250c2b420109fbb768ed706d85e1153651cb35aa78fcf6', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02b4e6d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:02:29.000Z'}}, {'blockNum': '0x65a5c9', 'uniqueId': '0x8b55f93c4a62e616bcecc78d852f2684c48978bc8e39e035185b93d4d30a7661:log:0', 'hash': '0x8b55f93c4a62e616bcecc78d852f2684c48978bc8e39e035185b93d4d30a7661', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01633980', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:03:05.000Z'}}, {'blockNum': '0x65a5cb', 'uniqueId': '0xd7249f7ef00cca55540471b41e4e05896914d1ef3d35472aa90a7b34674954f2:log:24', 'hash': '0xd7249f7ef00cca55540471b41e4e05896914d1ef3d35472aa90a7b34674954f2', 'from': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'to': '0xa91db01e1c9b600f51721668609332cd338c100d', 'value': 7858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04af0920', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:03:52.000Z'}}, {'blockNum': '0x65a5cb', 'uniqueId': '0x3885422b1f68ed0a3ee02a8473b1cc97bed9d7492024b40839054228620cba70:log:26', 'hash': '0x3885422b1f68ed0a3ee02a8473b1cc97bed9d7492024b40839054228620cba70', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 6523.612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e36c98', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:03:52.000Z'}}, {'blockNum': '0x65a5e0', 'uniqueId': '0x278b43bb50a5c52494f241c0a386c278e490743302964087a4b0b23d49512f8f:log:1', 'hash': '0x278b43bb50a5c52494f241c0a386c278e490743302964087a4b0b23d49512f8f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5e9ac0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:09:17.000Z'}}, {'blockNum': '0x65a5e8', 'uniqueId': '0x02dd94f6d2c09b44c5dfed9cccf1307ea5b55456c3a6cf5f7c98ee685bfd4490:log:13', 'hash': '0x02dd94f6d2c09b44c5dfed9cccf1307ea5b55456c3a6cf5f7c98ee685bfd4490', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02b4e6d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:11:22.000Z'}}, {'blockNum': '0x65a5e8', 'uniqueId': '0x4c03f3dabbc798fe6e59f4b7f8c6cf2eb3614dd34b7c84e4a1ca9bc03de0c403:log:16', 'hash': '0x4c03f3dabbc798fe6e59f4b7f8c6cf2eb3614dd34b7c84e4a1ca9bc03de0c403', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01633980', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:11:22.000Z'}}, {'blockNum': '0x65a5e8', 'uniqueId': '0x98bb3a48dfc01fd19b64b8a6a363a219fcd469fef9a439b845bab66b97952d29:log:17', 'hash': '0x98bb3a48dfc01fd19b64b8a6a363a219fcd469fef9a439b845bab66b97952d29', 'from': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6523.612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e36c98', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:11:22.000Z'}}, {'blockNum': '0x65a5e8', 'uniqueId': '0x4e22ac9586efb71a5f0d975e8588593631f19f70d4725a3a053902e6112789e3:log:30', 'hash': '0x4e22ac9586efb71a5f0d975e8588593631f19f70d4725a3a053902e6112789e3', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'value': 2748.0518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01a351c6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:11:22.000Z'}}, {'blockNum': '0x65a5f8', 'uniqueId': '0xe2d21f08a6fdaf446bcde4d8ef1fdb379c8a71e691043ffe574fa801b61c0279:log:26', 'hash': '0xe2d21f08a6fdaf446bcde4d8ef1fdb379c8a71e691043ffe574fa801b61c0279', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 2499.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017d77dc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:14:45.000Z'}}, {'blockNum': '0x65a60d', 'uniqueId': '0xca8dd3101b6f6a8de55d5dcffda761a1462b475e450e4337f63afe37abeea94b:log:96', 'hash': '0xca8dd3101b6f6a8de55d5dcffda761a1462b475e450e4337f63afe37abeea94b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd1a72074e9eaae146b731b36d77e834b58eec2c0', 'value': 12392.664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0762f870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:18:47.000Z'}}, {'blockNum': '0x65a612', 'uniqueId': '0x0663717e0877ae0b5b4b02a5a296f2ec4a6a355aa3123b82a4587972142e0fca:log:10', 'hash': '0x0663717e0877ae0b5b4b02a5a296f2ec4a6a355aa3123b82a4587972142e0fca', 'from': '0x28c48982db23a7d86aa9efe62445ffa899b45a71', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2748.0518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01a351c6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:21:05.000Z'}}, {'blockNum': '0x65a613', 'uniqueId': '0xbecfd2a4474d24f4d4aeac400a3384c31fc72184e6150b1139181a4fe2748935:log:1', 'hash': '0xbecfd2a4474d24f4d4aeac400a3384c31fc72184e6150b1139181a4fe2748935', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xea05f704a4311fe29d976be9d03625062f04b409', 'value': 7855.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04aea390', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:21:15.000Z'}}, {'blockNum': '0x65a61b', 'uniqueId': '0x67aebc52544811226782728c2690eceeeec3979e4960f59caddf5cf01d81b27c:log:6', 'hash': '0x67aebc52544811226782728c2690eceeeec3979e4960f59caddf5cf01d81b27c', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5e9ac0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:23:16.000Z'}}, {'blockNum': '0x65a63b', 'uniqueId': '0xcb32fa2afed7f38f0f8649a387594a4d3027aaccf530e9cd2d569d7e026334aa:log:10', 'hash': '0xcb32fa2afed7f38f0f8649a387594a4d3027aaccf530e9cd2d569d7e026334aa', 'from': '0xd1a72074e9eaae146b731b36d77e834b58eec2c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12392.664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0762f870', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T18:31:36.000Z'}}, {'blockNum': '0x65a718', 'uniqueId': '0xa3b57f95bcf8883523b1c81d749ed05e4f55e22d84130403e1cb0df578c840ef:log:5', 'hash': '0xa3b57f95bcf8883523b1c81d749ed05e4f55e22d84130403e1cb0df578c840ef', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfc761e63748c58321a578e1b3919a75784be8040', 'value': 3500.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02161e60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T19:21:50.000Z'}}, {'blockNum': '0x65a74b', 'uniqueId': '0x0c2dd9d6435636da42321d4c3cb176a5d036b5e60b97c4bfe1fa4c3a13d89f76:log:0', 'hash': '0x0c2dd9d6435636da42321d4c3cb176a5d036b5e60b97c4bfe1fa4c3a13d89f76', 'from': '0x78e20838c2c41b3ae3f5565188cbfb5127eb1541', 'to': '0x04aa551e1a4bcce4d79bf46f3ffbe9e0d7ec1164', 'value': 101.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0f8796', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T19:33:04.000Z'}}, {'blockNum': '0x65a788', 'uniqueId': '0xde0a059da061ff83257be493b2530cb98e1ef37c0ca9edfef2981415c70749fe:log:6', 'hash': '0xde0a059da061ff83257be493b2530cb98e1ef37c0ca9edfef2981415c70749fe', 'from': '0x04aa551e1a4bcce4d79bf46f3ffbe9e0d7ec1164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 101.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0f8796', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T19:51:11.000Z'}}, {'blockNum': '0x65a85f', 'uniqueId': '0x9bb0a564ae7e9fb4eda8aed576a122b6ca50b0f2830ea96c42837d59a4746113:log:7', 'hash': '0x9bb0a564ae7e9fb4eda8aed576a122b6ca50b0f2830ea96c42837d59a4746113', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 5394.908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03373298', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T20:40:50.000Z'}}, {'blockNum': '0x65abbc', 'uniqueId': '0x3376ed78b61fdb15865d450d868761166e29c5c7c9804b9e0aac306fefad5e69:log:251', 'hash': '0x3376ed78b61fdb15865d450d868761166e29c5c7c9804b9e0aac306fefad5e69', 'from': '0x14e5ce75704d993ae06cf21a1f54c976954e2d3f', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 62.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x098968', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-07T23:52:28.000Z'}}, {'blockNum': '0x65ac94', 'uniqueId': '0x62de2f3ba7b73cc76ce4142072f2936fc99314e507feed0f4c884597008befae:log:73', 'hash': '0x62de2f3ba7b73cc76ce4142072f2936fc99314e507feed0f4c884597008befae', 'from': '0xfdb59e0d54b61173e5ce4b5f617377b4a055a27d', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 31.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ce78', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-08T00:46:25.000Z'}}, {'blockNum': '0x65adbc', 'uniqueId': '0x82f0302dc02754ad9839e5d5f1ef687cd09fcc74805196b3a4db082c866448cf:log:102', 'hash': '0x82f0302dc02754ad9839e5d5f1ef687cd09fcc74805196b3a4db082c866448cf', 'from': '0x3b3cf2bab2ca034934e20d6df7a3e7a1aa8d0370', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 7.2916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011cd4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-08T01:57:05.000Z'}}, {'blockNum': '0x65ae83', 'uniqueId': '0xbc0fd1d296d37d3dcb0327a47a8c8ce9156d162d7f2858d8e2f6f318bd343422:log:26', 'hash': '0xbc0fd1d296d37d3dcb0327a47a8c8ce9156d162d7f2858d8e2f6f318bd343422', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb33cd7d24123ac4da61860ba51f68b28ba3a9560', 'value': 7058.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04350dfa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-08T02:47:46.000Z'}}, {'blockNum': '0x65aed4', 'uniqueId': '0x1833f860894a623eafb86007c775b3527a39faf3f629715c5c8b491a3150db75:log:51', 'hash': '0x1833f860894a623eafb86007c775b3527a39faf3f629715c5c8b491a3150db75', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0xa7b8e3f086fb87f33c325eeeed052b5361ac8329', 'value': 1337.8682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xcc247a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-08T03:05:30.000Z'}}, {'blockNum': '0x65af19', 'uniqueId': '0xf82f534b8a6fe56df4510daafb702bc1b71b641ef49e3bb8bcf491209526fcab:log:11', 'hash': '0xf82f534b8a6fe56df4510daafb702bc1b71b641ef49e3bb8bcf491209526fcab', 'from': '0xa7b8e3f086fb87f33c325eeeed052b5361ac8329', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1337.8682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xcc247a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-11-08T03:22:27.000Z'}}]}}
Number of returned transfers:  41
Answer is complete
 
symbol             BRD
group              BPF
date        2018-11-13
hour             17:00
exchange       binance
Name: 742, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2018-11-13 17:00:00 2018-11-13 05:00:00 2018-11-14 05:00:00
Unix timestamps:  1542081600.0 1542168000.0
Hex Block Numbers:  0x662732 0x663eeb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x662924', 'uniqueId': '0x63802eba5e4b8f54ef7d3c42041f89348b562d3ad060bf2a2bbedd2ec2985d64:log:92', 'hash': '0x63802eba5e4b8f54ef7d3c42041f89348b562d3ad060bf2a2bbedd2ec2985d64', 'from': '0x2b3aafe496c242cd9b8f092364a5f3b2b80bc58e', 'to': '0xa6ef7aa7dcecc474f67c9810caf3dfaaf6d240d3', 'value': 1243.2218359416095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43652b38ead496f3ea', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T05:56:40.000Z'}}, {'blockNum': '0x66296a', 'uniqueId': '0xd6015015bc55d0d5bd4fc0e98150b15fc2933bc960ae88838b553c648770076a:log:0', 'hash': '0xd6015015bc55d0d5bd4fc0e98150b15fc2933bc960ae88838b553c648770076a', 'from': '0xa6ef7aa7dcecc474f67c9810caf3dfaaf6d240d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1243.2218359416095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43652b38ead496f3ea', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T06:16:19.000Z'}}, {'blockNum': '0x662a98', 'uniqueId': '0x5ceca8c9c464b7c7fc3838fcc01f01a7327e176c0b64841cd24f9e17774ef651:log:42', 'hash': '0x5ceca8c9c464b7c7fc3838fcc01f01a7327e176c0b64841cd24f9e17774ef651', 'from': '0xda61fdda71c206350012212a3df622c6e167aa66', 'to': '0x684702248985765c1b990d884a8eeeca36c50c51', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T07:23:11.000Z'}}, {'blockNum': '0x662ac7', 'uniqueId': '0xe7cf9cac4309e47467cfcef033f9e0c24e316e50325cf306a3cd3f2b78c8eb0f:log:79', 'hash': '0xe7cf9cac4309e47467cfcef033f9e0c24e316e50325cf306a3cd3f2b78c8eb0f', 'from': '0x203dfa75b5fca03a97b0c71a7c41d0b761f07e4c', 'to': '0x9700ceb2f2dd643a7c522d67c4abe217e571acbe', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T07:32:58.000Z'}}, {'blockNum': '0x662b3f', 'uniqueId': '0xf67c741bf3155ccde9647179e32091eb2b0a98523bed4056c9f9e5499172c1dd:log:136', 'hash': '0xf67c741bf3155ccde9647179e32091eb2b0a98523bed4056c9f9e5499172c1dd', 'from': '0xe7bb1fbed8a86f9e46f0f5d25f72fc84c9032501', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 63.031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x036abb188c25a58000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T08:02:58.000Z'}}, {'blockNum': '0x662bd4', 'uniqueId': '0x38753d512969b57ad3c6ceb2b4cce4c21b4d76c699c3a53e3fb6e024e64b4538:log:19', 'hash': '0x38753d512969b57ad3c6ceb2b4cce4c21b4d76c699c3a53e3fb6e024e64b4538', 'from': '0xe041ddfb9406920d073bd304913e62dee33cab0f', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T08:38:41.000Z'}}, {'blockNum': '0x662bdc', 'uniqueId': '0xd7ffac0c03ebf90b409096eec7018927a0b169f8c2e909fea7bdceae565b8501:log:13', 'hash': '0xd7ffac0c03ebf90b409096eec7018927a0b169f8c2e909fea7bdceae565b8501', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf8c1c268d2a0ccfdbe9b54526d0d0c375eb7f918', 'value': 396.99247852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1585609bdb8e7e3000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T08:40:15.000Z'}}, {'blockNum': '0x662c8f', 'uniqueId': '0xce0c237835b6dd096ca73a1b637ceb56c6a593e50c8d38aa8b02078d0c0ec658:log:13', 'hash': '0xce0c237835b6dd096ca73a1b637ceb56c6a593e50c8d38aa8b02078d0c0ec658', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x83d0257c56a21deb689c6a13b3cca5db5ed0542b', 'value': 90.51758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04e82f0b6d6400c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T09:25:58.000Z'}}, {'blockNum': '0x662da6', 'uniqueId': '0xd13f6c6cb085c4b333fb2dd0648e805a87d96f781577bc81a730a8915f473b59:log:41', 'hash': '0xd13f6c6cb085c4b333fb2dd0648e805a87d96f781577bc81a730a8915f473b59', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x725e231c09b537522ed97465f79120eebb3c58a0', 'value': 184.98734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a07370da00468c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T10:33:25.000Z'}}, {'blockNum': '0x662ed4', 'uniqueId': '0xaa3e7aec0fcb63dc85a1a37d87eb7a231cf53c91af24aa9b2cf7d7640c3b2f25:log:17', 'hash': '0xaa3e7aec0fcb63dc85a1a37d87eb7a231cf53c91af24aa9b2cf7d7640c3b2f25', 'from': '0xd40ed0a85bd57a5ec43fa141306942a0bc44c33f', 'to': '0x5a89cc376cd75d3e8c1a4cf8718ff3f607695dfb', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T11:42:27.000Z'}}, {'blockNum': '0x662eeb', 'uniqueId': '0x13a91ddee6258c74786c3e2ef82195777b5b8ff202a3ae9b0aa7a12e17b346fd:log:44', 'hash': '0x13a91ddee6258c74786c3e2ef82195777b5b8ff202a3ae9b0aa7a12e17b346fd', 'from': '0xf51afa4f64468fe8f51f8fa85557613789c7608b', 'to': '0x17e77d92d07d0d19a5cf861ab21bfdf6f060cfef', 'value': 62.181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x035eef4a0d0a908000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T11:48:10.000Z'}}, {'blockNum': '0x662f11', 'uniqueId': '0x356e0167ad292587ff337a432c9a2014f91bb7165ef9f052a13a380a27d80790:log:77', 'hash': '0x356e0167ad292587ff337a432c9a2014f91bb7165ef9f052a13a380a27d80790', 'from': '0xb7e45b7a1fc88e1763b43b50de7f176ff1542122', 'to': '0xfdcf1317a59198fc6036f42b920b8db4d5f53ea3', 'value': 67.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a5f9a16de7ca0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T11:57:55.000Z'}}, {'blockNum': '0x662ff3', 'uniqueId': '0xac1a828828b05f43274634c095ac799c074bb0774e1eb4b0e69238ee0b99f5a9:log:54', 'hash': '0xac1a828828b05f43274634c095ac799c074bb0774e1eb4b0e69238ee0b99f5a9', 'from': '0xd536c9cd79a74e5adc06eb380a3d1aa26e290028', 'to': '0xac4768c425f7f01b0dbdb08e6a9051d8dbc7e861', 'value': 23.6015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0147895f343261c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T12:56:39.000Z'}}, {'blockNum': '0x66329f', 'uniqueId': '0x2322c114cbf14922ac97be7a90ee7f2631c1844368425d892fd9c9bf333854f6:log:83', 'hash': '0x2322c114cbf14922ac97be7a90ee7f2631c1844368425d892fd9c9bf333854f6', 'from': '0xfe23fc62374b4511576eb0b7c6ee18c9b8a59212', 'to': '0x02a9ea0448b50e54bc7ef4a2a06678bcdcedcf5f', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4bfffd0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T15:50:07.000Z'}}, {'blockNum': '0x6632a9', 'uniqueId': '0xdf4de3237420adcd2d6370141edd0ed83b515fcb64e444447f14048e014ddb29:log:47', 'hash': '0xdf4de3237420adcd2d6370141edd0ed83b515fcb64e444447f14048e014ddb29', 'from': '0xe535f4a0ad0926dbdac0eaf13906cbba2cc201db', 'to': '0x20605b81cdca1d9cdbcc01ffbaa0b5038f03ea18', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T15:52:16.000Z'}}, {'blockNum': '0x6632ac', 'uniqueId': '0xcaf7a7880c6b365e8cd66c1ba76140240aa57a70fc7b099929bec2a7678bff3f:log:23', 'hash': '0xcaf7a7880c6b365e8cd66c1ba76140240aa57a70fc7b099929bec2a7678bff3f', 'from': '0x02a9ea0448b50e54bc7ef4a2a06678bcdcedcf5f', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x410d586a20a4bfffd0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T15:53:10.000Z'}}, {'blockNum': '0x66340f', 'uniqueId': '0x3f530c2d53692843d52df3a12c3e71acf2b52c86264fdc1ee05feab8210a0881:log:69', 'hash': '0x3f530c2d53692843d52df3a12c3e71acf2b52c86264fdc1ee05feab8210a0881', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0x68ebc3366b6b31101360831c6271c856d910882e', 'value': 2927.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9eb0c8045f6b960000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:12:48.000Z'}}, {'blockNum': '0x663415', 'uniqueId': '0x5012be9288e9cfecadc780c0de318f2f36358958dcb52ec4013ec0ff845d57dd:log:31', 'hash': '0x5012be9288e9cfecadc780c0de318f2f36358958dcb52ec4013ec0ff845d57dd', 'from': '0x68ebc3366b6b31101360831c6271c856d910882e', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2927.324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9eb0c8045f6b960000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:13:37.000Z'}}, {'blockNum': '0x66342e', 'uniqueId': '0x362e6cf7764dfd5c4d6e6b05f68ab4604c543bdf31fc10a6f8a6100bdae0d5bc:log:8', 'hash': '0x362e6cf7764dfd5c4d6e6b05f68ab4604c543bdf31fc10a6f8a6100bdae0d5bc', 'from': '0xbee076c8f5f71915db1d0a5e3e23a1cc4a68ef46', 'to': '0x2f000b5e97d9cde1c72fb9ea11f7d347ec6a044d', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:17:39.000Z'}}, {'blockNum': '0x66343e', 'uniqueId': '0x1df19b1b06e887c2747011abd5044efb89fd48e0c29db7f38ecaf5337384d273:log:44', 'hash': '0x1df19b1b06e887c2747011abd5044efb89fd48e0c29db7f38ecaf5337384d273', 'from': '0x3ab0ac163ad232b0dea746457727ff1f73cafde4', 'to': '0x93788caa63f30dd0f4774d557e56eef7c87a9d79', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:21:02.000Z'}}, {'blockNum': '0x663470', 'uniqueId': '0xdc9456681d99717b688c3dfa9434dae604deb538ee377dd4bf3a9c506deffb18:log:17', 'hash': '0xdc9456681d99717b688c3dfa9434dae604deb538ee377dd4bf3a9c506deffb18', 'from': '0x2f000b5e97d9cde1c72fb9ea11f7d347ec6a044d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:34:47.000Z'}}, {'blockNum': '0x6634aa', 'uniqueId': '0x6f966f6eccebe75944baccedf649484e20ca07a84c7679d9523d7740481298fa:log:189', 'hash': '0x6f966f6eccebe75944baccedf649484e20ca07a84c7679d9523d7740481298fa', 'from': '0x03410c0fa39abb19f48ad8430834ab488baa4d0d', 'to': '0x59dc8754210ca31d4a4bf59fd1f88715230b42e1', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T17:47:17.000Z'}}, {'blockNum': '0x66351b', 'uniqueId': '0x7889019f8b7afce6caca16fbc61867c6d0974475f2acfb52023c4d903546b5ed:log:7', 'hash': '0x7889019f8b7afce6caca16fbc61867c6d0974475f2acfb52023c4d903546b5ed', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x6944bd16c1938a3fcdc7b821ada3d32b8f093cf6', 'value': 21.63338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x012c39347dcf0a4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:11:16.000Z'}}, {'blockNum': '0x66353e', 'uniqueId': '0xb657a4a42b29ea43aa554a7f22f53004221e11c27e80b0fcebca788b02406c17:log:23', 'hash': '0xb657a4a42b29ea43aa554a7f22f53004221e11c27e80b0fcebca788b02406c17', 'from': '0x20605b81cdca1d9cdbcc01ffbaa0b5038f03ea18', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:19:54.000Z'}}, {'blockNum': '0x66354d', 'uniqueId': '0x3bc0bb98eac1912f45f718d901a3afe759d97651a0db32ffb8839fbc9e0d196b:log:170', 'hash': '0x3bc0bb98eac1912f45f718d901a3afe759d97651a0db32ffb8839fbc9e0d196b', 'from': '0x12a50c37c9c81397b51f35ebf9d998360e83824a', 'to': '0xe65178d3601b778f5f1b3c3a99035d0065b93714', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:22:01.000Z'}}, {'blockNum': '0x663586', 'uniqueId': '0x81819033ce1fce597ca661b900af196b6a5078d0d1907c857ea76397ec38f5d6:log:56', 'hash': '0x81819033ce1fce597ca661b900af196b6a5078d0d1907c857ea76397ec38f5d6', 'from': '0x3d30add05cd182c220f0d6e6048f0125c986f009', 'to': '0xe8e2eae6827eeebd1a193a5e55d3518c72682932', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac61ffff8', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:36:49.000Z'}}, {'blockNum': '0x6635d3', 'uniqueId': '0x34d2527b2f430a0f8493e3c5de27322d3f711295eba349c8de8e84f894d2c16d:log:29', 'hash': '0x34d2527b2f430a0f8493e3c5de27322d3f711295eba349c8de8e84f894d2c16d', 'from': '0xe8e2eae6827eeebd1a193a5e55d3518c72682932', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac61ffff8', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:56:50.000Z'}}, {'blockNum': '0x6635e6', 'uniqueId': '0x8135d59d0272c038b177b50e411fea736c4b205a729c92118d0895d91f171c55:log:14', 'hash': '0x8135d59d0272c038b177b50e411fea736c4b205a729c92118d0895d91f171c55', 'from': '0xed33a839535f51b63a60dea180ce95151b48a206', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T18:59:57.000Z'}}, {'blockNum': '0x663631', 'uniqueId': '0x842303e6531ebbcfb206b629e8dd8a73c0cb9a5dd66516f024c8db9929da59c7:log:50', 'hash': '0x842303e6531ebbcfb206b629e8dd8a73c0cb9a5dd66516f024c8db9929da59c7', 'from': '0xf2c57ed90e236fe14b8868afac535d2d40bf98f3', 'to': '0x0362439691095a358960800b24168ce8f85b5a26', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T19:19:08.000Z'}}, {'blockNum': '0x663818', 'uniqueId': '0xad38006565cc768f0723cc1d8f5ed3b1541e0816eb366847d304a6bd2f47794f:log:71', 'hash': '0xad38006565cc768f0723cc1d8f5ed3b1541e0816eb366847d304a6bd2f47794f', 'from': '0xe3c67790646ae6aacf112de9b12008aeddee9029', 'to': '0x037ac968812fd3ee46c3980f1333cd8781821cab', 'value': 53.6015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02e7dec841d019c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:17:30.000Z'}}, {'blockNum': '0x66386f', 'uniqueId': '0xae53638bfadec76b7fdca769d7892f9b4b7f5aefe32399a420ad30715637fa85:log:25', 'hash': '0xae53638bfadec76b7fdca769d7892f9b4b7f5aefe32399a420ad30715637fa85', 'from': '0x4768a9c485c46a23dd3d2fc3d48b9f91d181b880', 'to': '0x939b663739608cda27b29abdb121063ac5a2e071', 'value': 2556.794117647059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8a9aa56f86313f6903', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:37:01.000Z'}}, {'blockNum': '0x663887', 'uniqueId': '0x2a5e626e7ce43cebac62ef304cf53e1973c7e2827af98ed88ca6075f8cb3ec4e:log:5', 'hash': '0x2a5e626e7ce43cebac62ef304cf53e1973c7e2827af98ed88ca6075f8cb3ec4e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdb6fbe8c7b97c9572f4f116f6c798fb86c9a1c35', 'value': 567.408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1ec25e29be5ad80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:42:34.000Z'}}, {'blockNum': '0x6638ba', 'uniqueId': '0xd34b2fbbb49a5cec061b6f20b0e89bf3a591f9722b397f81a5f3c3c332c41aec:log:12', 'hash': '0xd34b2fbbb49a5cec061b6f20b0e89bf3a591f9722b397f81a5f3c3c332c41aec', 'from': '0x939b663739608cda27b29abdb121063ac5a2e071', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2556.794117647059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8a9aa56f86313f6903', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T21:56:17.000Z'}}, {'blockNum': '0x6638f9', 'uniqueId': '0x7ed57833617822850636d2c3ede20c661ed64fb8db57a2cc8695d0a6039a2c4d:log:1', 'hash': '0x7ed57833617822850636d2c3ede20c661ed64fb8db57a2cc8695d0a6039a2c4d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5b3f41627fa23a3460bbb3d356906138fe1ddd4', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T22:07:00.000Z'}}, {'blockNum': '0x663900', 'uniqueId': '0x0511d64c74b6ee7ecadf45b608a4ff023796040d4f7a74bcc915a1566a8303c5:log:12', 'hash': '0x0511d64c74b6ee7ecadf45b608a4ff023796040d4f7a74bcc915a1566a8303c5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0dadc599986a21b89b6e0eefecc61ba688763d8d', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T22:09:10.000Z'}}, {'blockNum': '0x6639ca', 'uniqueId': '0xeac85e7aed874b6ab40c66d9794d3bf0c4933b88ce230302c8c65df1aa408ec7:log:4', 'hash': '0xeac85e7aed874b6ab40c66d9794d3bf0c4933b88ce230302c8c65df1aa408ec7', 'from': '0x8958618332df62af93053cb9c535e26462c959b0', 'to': '0x93cf522bcfa85f8ea5268cf55287c477f8959478', 'value': 102.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0588c88a1a9fa10000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T22:51:11.000Z'}}, {'blockNum': '0x663a06', 'uniqueId': '0x8bf09479c6b54efc1236d9ac010c898dc873dd0b66b65f8b67544eb517b05192:log:5', 'hash': '0x8bf09479c6b54efc1236d9ac010c898dc873dd0b66b65f8b67544eb517b05192', 'from': '0x93cf522bcfa85f8ea5268cf55287c477f8959478', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0588c88a1a9fa10000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-13T23:04:11.000Z'}}, {'blockNum': '0x663b33', 'uniqueId': '0x4f65100354af9df3a8cd240e6c2e38d61480b751adfaa335eb9d240cf42790c5:log:29', 'hash': '0x4f65100354af9df3a8cd240e6c2e38d61480b751adfaa335eb9d240cf42790c5', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x76d00870b17b08ad9aab41fbdce4fadb383ea425', 'value': 30.48992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a721f4b28e140000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-14T00:10:16.000Z'}}, {'blockNum': '0x663b56', 'uniqueId': '0xc482e389c916d68e29440c838b6d39bc995b49e50100cf16f69559c0f77fe0e4:log:5', 'hash': '0xc482e389c916d68e29440c838b6d39bc995b49e50100cf16f69559c0f77fe0e4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc5f6bb86a40e588e9ded51a3c0f2b92057b29b62', 'value': 1596.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x56891cd870ac0e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-14T00:18:17.000Z'}}, {'blockNum': '0x663cc7', 'uniqueId': '0xf265bc488da81c31ef57107912480b5c4a923bc7988272bb87a1c3fd8276152e:log:96', 'hash': '0xf265bc488da81c31ef57107912480b5c4a923bc7988272bb87a1c3fd8276152e', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd3edeb986909b3e6f0ba18cf34b3a33cb7c6f340', 'value': 1500.444446054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5156d981fda06e7c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-14T01:44:02.000Z'}}]}}
Number of returned transfers:  40
Answer is complete
 
symbol             RDN
group              BPF
date        2018-11-27
hour             17:00
exchange       binance
Name: 743, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2018-11-27 17:00:00 2018-11-27 05:00:00 2018-11-28 05:00:00
Unix timestamps:  1543291200.0 1543377600.0
Hex Block Numbers:  0x6774c0 0x678c00
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6776c5', 'uniqueId': '0x8ff86dba2d2ab58665f5caafbd01eb9975c769c5b946f7ba702dee6d979330b7:log:15', 'hash': '0x8ff86dba2d2ab58665f5caafbd01eb9975c769c5b946f7ba702dee6d979330b7', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x204f295a41b4d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:11:33.000Z'}}, {'blockNum': '0x6776c8', 'uniqueId': '0xe1ab69026a631e7fc885b369285bd209737ec080b5793e7c55400603a61cc3a6:log:3', 'hash': '0xe1ab69026a631e7fc885b369285bd209737ec080b5793e7c55400603a61cc3a6', 'from': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x204f295a41b4d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:11:56.000Z'}}, {'blockNum': '0x67770e', 'uniqueId': '0x7e90dcdb108bf8d138c5cb850e444bf84a630e76461e8db749de48782bd58c99:log:34', 'hash': '0x7e90dcdb108bf8d138c5cb850e444bf84a630e76461e8db749de48782bd58c99', 'from': '0x555c403690abc5b70193c46251e8d2ec1409deee', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7d9ad598020413ffff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:27:09.000Z'}}, {'blockNum': '0x677770', 'uniqueId': '0xfade3ce642f69f8a596b2ddde576671dfb923f7c1a16adf9a69073d1f37f47e4:log:1', 'hash': '0xfade3ce642f69f8a596b2ddde576671dfb923f7c1a16adf9a69073d1f37f47e4', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40ba1421eab8680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T06:51:03.000Z'}}, {'blockNum': '0x6777e3', 'uniqueId': '0x362c8d43d1f398716a014e93b020531a189592395b2b45c17cc45ec89f8613b1:log:14', 'hash': '0x362c8d43d1f398716a014e93b020531a189592395b2b45c17cc45ec89f8613b1', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40ba1421eab8680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T07:16:26.000Z'}}, {'blockNum': '0x67785b', 'uniqueId': '0xfe04983c114502d16648e4ab182aa3e90b8c3a0c344ea6dd5d5ee70683d1020e:log:2', 'hash': '0xfe04983c114502d16648e4ab182aa3e90b8c3a0c344ea6dd5d5ee70683d1020e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x52a99fb2cb7e9729e60edb62837ac3e5ecd1c28b', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T07:49:08.000Z'}}, {'blockNum': '0x6778d0', 'uniqueId': '0x878d13e0faf35d8c61acba452d6ea2a11d1016929787ae1aff99884842c2ea6d:log:14', 'hash': '0x878d13e0faf35d8c61acba452d6ea2a11d1016929787ae1aff99884842c2ea6d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x96146937c70b918f764870a226d640f162ce0c46', 'value': 1491.998034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x50e1a1d2fa872f2000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T08:13:56.000Z'}}, {'blockNum': '0x677955', 'uniqueId': '0x47a6fb45a43292f00e9fa8c1a5b899025a41900b0bab4407d80913be9f8a6e7f:log:25', 'hash': '0x47a6fb45a43292f00e9fa8c1a5b899025a41900b0bab4407d80913be9f8a6e7f', 'from': '0x451fc78e1adcc5f8158342931c9055603912be09', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 556.806072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e2f3c8c6624937fff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T08:51:27.000Z'}}, {'blockNum': '0x677989', 'uniqueId': '0x9501d2b874c65b525953c8fac4084c380f1daa9126417fd2416649047db255d7:log:67', 'hash': '0x9501d2b874c65b525953c8fac4084c380f1daa9126417fd2416649047db255d7', 'from': '0x72e65059428d9a2da614a9161e0122d95405a24c', 'to': '0xff2dbe4ba5d2c18766e7ee4d9a2af6aff8fef4c0', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:06:12.000Z'}}, {'blockNum': '0x6779cb', 'uniqueId': '0x3d4bdf95dd488614aa2e13ad4b9ba7ad1647e1874762bb2484aefdf91893bb2a:log:9', 'hash': '0x3d4bdf95dd488614aa2e13ad4b9ba7ad1647e1874762bb2484aefdf91893bb2a', 'from': '0xff2dbe4ba5d2c18766e7ee4d9a2af6aff8fef4c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:24:12.000Z'}}, {'blockNum': '0x6779ea', 'uniqueId': '0xf1802d0dc801f75fc9bcd21a13d8cb22c5f2d3ec6b2a91a25b959480ccafc73c:log:10', 'hash': '0xf1802d0dc801f75fc9bcd21a13d8cb22c5f2d3ec6b2a91a25b959480ccafc73c', 'from': '0xf60fa103662ce52035e0f580924bffb5879678e5', 'to': '0x5dbd3cc3c3ef48b7e8ede33a6b0921c2bb18a739', 'value': 1280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f4000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:30:50.000Z'}}, {'blockNum': '0x677a51', 'uniqueId': '0x4f015fd464771870a45b0c287618fc87d22b55b87b387b51876ab228bf50cba3:log:27', 'hash': '0x4f015fd464771870a45b0c287618fc87d22b55b87b387b51876ab228bf50cba3', 'from': '0x5dbd3cc3c3ef48b7e8ede33a6b0921c2bb18a739', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f4000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T09:56:03.000Z'}}, {'blockNum': '0x677a6d', 'uniqueId': '0xe382d1416d633f8f447d991c27fdfebc046d95f427077d6318fde61299baa9ab:log:226', 'hash': '0xe382d1416d633f8f447d991c27fdfebc046d95f427077d6318fde61299baa9ab', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x599ad3f92f76e859f7b7a87dbe3aacb81e54c6e6', 'value': 6824.161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0171f042218ba2768000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T10:03:01.000Z'}}, {'blockNum': '0x677b0f', 'uniqueId': '0xbb03b6813deda0e5e70eecdab9b11b94faa6fba4ba65abf6725781a494cf35d9:log:3', 'hash': '0xbb03b6813deda0e5e70eecdab9b11b94faa6fba4ba65abf6725781a494cf35d9', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x4d1e50b89893ed260f0cd82c4677fd331537b93a', 'value': 672.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2476e4db25c6810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T10:45:20.000Z'}}, {'blockNum': '0x677c5b', 'uniqueId': '0xb10242fbc10932fcf7e5d96328d26c5da796acfb2e89b8f3c257a58770f71a69:log:18', 'hash': '0xb10242fbc10932fcf7e5d96328d26c5da796acfb2e89b8f3c257a58770f71a69', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf58a512988838e2f756e883318ebdf986f70c0bd', 'value': 7305.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018c07f4efe30bce0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T12:05:11.000Z'}}, {'blockNum': '0x677e4e', 'uniqueId': '0x2d22ac169029a7f77dfaf98c0259cc2efbbe17a3af5ba4a0a57bc3b7b4e762ed:log:5', 'hash': '0x2d22ac169029a7f77dfaf98c0259cc2efbbe17a3af5ba4a0a57bc3b7b4e762ed', 'from': '0x7b30fed9d91e63a6dc66e1b3face87392f231199', 'to': '0x65ebdd24cf8859e86ba73b5bab09b8ac269255de', 'value': 69.92999999999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03ca79447eb710fb50', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T14:03:06.000Z'}}, {'blockNum': '0x677f24', 'uniqueId': '0x9b7a84cc66ff981e201eeda43de03a18a75f443e1f6db23749c4b98622d792b1:log:10', 'hash': '0x9b7a84cc66ff981e201eeda43de03a18a75f443e1f6db23749c4b98622d792b1', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x720d2def2d5d12e65fa1446a922fb6c5530d2e19', 'value': 7.290066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x652b84670f272000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T14:58:41.000Z'}}, {'blockNum': '0x677fa4', 'uniqueId': '0x41c68986595bc724954762e2dd674026e2224b832a7895d6a8ba948482495c97:log:2', 'hash': '0x41c68986595bc724954762e2dd674026e2224b832a7895d6a8ba948482495c97', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 35112.8057262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x076f7811345c6cd9b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T15:29:17.000Z'}}, {'blockNum': '0x67800a', 'uniqueId': '0x36295ead81a22a928d00cadc2bee20d41df9098a25708809dc5688975f4a01db:log:1', 'hash': '0x36295ead81a22a928d00cadc2bee20d41df9098a25708809dc5688975f4a01db', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35112.8057262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x076f7811345c6cd9b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T15:54:07.000Z'}}, {'blockNum': '0x678023', 'uniqueId': '0x8b221864b71fc5a2700999f550a0c1a6bddee5a6a5312dfa22e516aadd8d7bbd:log:0', 'hash': '0x8b221864b71fc5a2700999f550a0c1a6bddee5a6a5312dfa22e516aadd8d7bbd', 'from': '0x28fe861364202a66818da54ca345ebdd17bb07e0', 'to': '0x5e3593b99021bd607db3435adc04d8598c3b2d6c', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:01:51.000Z'}}, {'blockNum': '0x678089', 'uniqueId': '0x1b28d96b9d12067b81eea2b11a3215548edde331466ea50096b4fed598509cf5:log:5', 'hash': '0x1b28d96b9d12067b81eea2b11a3215548edde331466ea50096b4fed598509cf5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'value': 3796.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcdd32f4bb103200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:23:45.000Z'}}, {'blockNum': '0x678092', 'uniqueId': '0xd8b0a64eb34087bec506d9f2db35942c921726c60abd4e1fbc881c08ec74bc53:log:3', 'hash': '0xd8b0a64eb34087bec506d9f2db35942c921726c60abd4e1fbc881c08ec74bc53', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x436ff7d10169f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:26:23.000Z'}}, {'blockNum': '0x678099', 'uniqueId': '0x0aa2e1200d73c812365edae0a5be5198eb969d2a9ea857e36cc5ef0ed608ff1e:log:152', 'hash': '0x0aa2e1200d73c812365edae0a5be5198eb969d2a9ea857e36cc5ef0ed608ff1e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 21488.58978061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048ce616da0964369400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:27:48.000Z'}}, {'blockNum': '0x6780a1', 'uniqueId': '0x4d80357e879b2be226fc41a32671adde7113e95bd9b68d46310170677ff6b43a:log:3', 'hash': '0x4d80357e879b2be226fc41a32671adde7113e95bd9b68d46310170677ff6b43a', 'from': '0x9ca2d3d9d04f8a46da242716302469510fc0ebfc', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 3796.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcdd32f4bb103200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:31:04.000Z'}}, {'blockNum': '0x6780a1', 'uniqueId': '0xe3860e8d18a3653939d24a57cd88dc3d9b38724ecfd39533221edff95d5f00d5:log:5', 'hash': '0xe3860e8d18a3653939d24a57cd88dc3d9b38724ecfd39533221edff95d5f00d5', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 21488.58978061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x048ce616da0964369400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T16:31:04.000Z'}}, {'blockNum': '0x678126', 'uniqueId': '0xfae084a1f46959300737202a458358592e837bad5910188045bfb0e6e6c34089:log:14', 'hash': '0xfae084a1f46959300737202a458358592e837bad5910188045bfb0e6e6c34089', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x436ff7d10169f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:01:01.000Z'}}, {'blockNum': '0x678132', 'uniqueId': '0x0c487cb0a1bca650353d6b173acb92b86d57f9dbbba09dbbed4cf56029500e2b:log:2', 'hash': '0x0c487cb0a1bca650353d6b173acb92b86d57f9dbbba09dbbed4cf56029500e2b', 'from': '0x0861fca546225fbf8806986d211c8398f7457734', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 1549.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x54052eee4721ee0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:03:31.000Z'}}, {'blockNum': '0x678137', 'uniqueId': '0xca8341c2af4945c15f2f8098d8a8cd8959f1cfde78614981f9c6c0e3098734cf:log:85', 'hash': '0xca8341c2af4945c15f2f8098d8a8cd8959f1cfde78614981f9c6c0e3098734cf', 'from': '0xef0bc05e0531dc5d5b2b3bac023b16f2d3ff68a1', 'to': '0x3f24c26f934685693c88c888941d9d97179cac2d', 'value': 190.61406801087924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a554d34f0749b1b96', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:04:42.000Z'}}, {'blockNum': '0x67813d', 'uniqueId': '0x5985ba5438ce8be39d965816741282a1e4a728b6e6ab5f7b372721de592bc60c:log:65', 'hash': '0x5985ba5438ce8be39d965816741282a1e4a728b6e6ab5f7b372721de592bc60c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:06:31.000Z'}}, {'blockNum': '0x678148', 'uniqueId': '0xffb1fb15fde867f51531619f307535c7898935c20d7e18ee99514e67e1fdbc97:log:24', 'hash': '0xffb1fb15fde867f51531619f307535c7898935c20d7e18ee99514e67e1fdbc97', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'value': 4355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec15c412389a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:01.000Z'}}, {'blockNum': '0x678148', 'uniqueId': '0x5d2f7b930f29575c1297151e280aeeff39e408971d6080ffc83efc2d42e2864b:log:25', 'hash': '0x5d2f7b930f29575c1297151e280aeeff39e408971d6080ffc83efc2d42e2864b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'value': 2939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9f52d18082b90c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:01.000Z'}}, {'blockNum': '0x67814a', 'uniqueId': '0xffd5e7fd8b39e40d03519144fd31a9b6d16486a1dca2bfcea1bc7534aaca0f8c:log:20', 'hash': '0xffd5e7fd8b39e40d03519144fd31a9b6d16486a1dca2bfcea1bc7534aaca0f8c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 381.92570604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14b448ae1d40763000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:20.000Z'}}, {'blockNum': '0x67814c', 'uniqueId': '0xeb7491c447bfc98199b82e8dca55616cc4e7d686481d4e32903a9d56613edc02:log:55', 'hash': '0xeb7491c447bfc98199b82e8dca55616cc4e7d686481d4e32903a9d56613edc02', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0x3c393088336d83acc8718b2dd1725f7f279ccda1', 'value': 4183.87610562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe2cef1deef8ccec800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:55.000Z'}}, {'blockNum': '0x67814c', 'uniqueId': '0x0f257db4cb18fae9493d2c2c6d75b42b96bf8ceb7edbd74fd3901dc8dde8e43f:log:77', 'hash': '0x0f257db4cb18fae9493d2c2c6d75b42b96bf8ceb7edbd74fd3901dc8dde8e43f', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xf241cac6e0db55e16e94869a3188a11083a9b50b', 'value': 1372.02379035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4a60a7b0079cc50c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:08:55.000Z'}}, {'blockNum': '0x678159', 'uniqueId': '0x055b60c56f70e80aff953738662d279d197e4e02121f0b2b997ac58f905d1ab2:log:2', 'hash': '0x055b60c56f70e80aff953738662d279d197e4e02121f0b2b997ac58f905d1ab2', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 3154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaafa8af1644e080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:11:11.000Z'}}, {'blockNum': '0x67815f', 'uniqueId': '0x3772848edca8dd93a35c957de37372cc900130fbc2d65987ec15cc978305e63c:log:31', 'hash': '0x3772848edca8dd93a35c957de37372cc900130fbc2d65987ec15cc978305e63c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 5329.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0120edd55d8264f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:13:26.000Z'}}, {'blockNum': '0x67815f', 'uniqueId': '0x9de014d0b6d3fd3142c872707e38a1b28f74d17fbe8fc5df97c271da1175e61b:log:37', 'hash': '0x9de014d0b6d3fd3142c872707e38a1b28f74d17fbe8fc5df97c271da1175e61b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 8430.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c908da7bb50b480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:13:26.000Z'}}, {'blockNum': '0x67815f', 'uniqueId': '0x6ae3631ffc112ee0ee391b5c136bd863e1cf60e1303a5df6129243d493a08dd3:log:40', 'hash': '0x6ae3631ffc112ee0ee391b5c136bd863e1cf60e1303a5df6129243d493a08dd3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'value': 9049.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ea9734401aca140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:13:26.000Z'}}, {'blockNum': '0x678169', 'uniqueId': '0x09f255973afe0e1026d1c750a41a36edea9658dda3cd9265f35e449dd93265a6:log:16', 'hash': '0x09f255973afe0e1026d1c750a41a36edea9658dda3cd9265f35e449dd93265a6', 'from': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 9049.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ea9734401aca140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:15:36.000Z'}}, {'blockNum': '0x67818b', 'uniqueId': '0xb3220b4368cf8fe708ba10feda4471f131665655ff6f437ec9eed1fefa71dcfb:log:3', 'hash': '0xb3220b4368cf8fe708ba10feda4471f131665655ff6f437ec9eed1fefa71dcfb', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6b88991bd5940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:22:28.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xd84d13edb0dbb9362292bcea472889de70fa09b94e91e7617711dfbb9c700e73:log:14', 'hash': '0xd84d13edb0dbb9362292bcea472889de70fa09b94e91e7617711dfbb9c700e73', 'from': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec15c412389a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xb2d24baa2bd2c2f443a13b95a127b4b4a7504334ea6bf063d1fa44af283dcd51:log:16', 'hash': '0xb2d24baa2bd2c2f443a13b95a127b4b4a7504334ea6bf063d1fa44af283dcd51', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1549.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x54052eee4721ee0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xb6fcf1ccc574a92e05eec2402411aa079d758933de801894784552a92749dd00:log:17', 'hash': '0xb6fcf1ccc574a92e05eec2402411aa079d758933de801894784552a92749dd00', 'from': '0xee6a089f26d549482ad14ff305ea761c45e7dbd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9f52d18082b90c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678191', 'uniqueId': '0xb6ca052fbc6bd82b4f2c3d160a38af4ab494c555996af28ac8abc12e7da5fe7d:log:18', 'hash': '0xb6ca052fbc6bd82b4f2c3d160a38af4ab494c555996af28ac8abc12e7da5fe7d', 'from': '0x3f24c26f934685693c88c888941d9d97179cac2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 290.61406801087924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0fc114931dd7ab1b96', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:17.000Z'}}, {'blockNum': '0x678195', 'uniqueId': '0xbfa607715b280a1afa81b9d41631fdd960f350effd9b3cab4c67e5d4e162ed01:log:2', 'hash': '0xbfa607715b280a1afa81b9d41631fdd960f350effd9b3cab4c67e5d4e162ed01', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 38420.85088124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0822cc6a7a18740e7000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:57.000Z'}}, {'blockNum': '0x678195', 'uniqueId': '0xa9dae8b2711f859a41b003cd296202fb6cfb9f9be7429dc0b1c4f0b8a760f9ad:log:13', 'hash': '0xa9dae8b2711f859a41b003cd296202fb6cfb9f9be7429dc0b1c4f0b8a760f9ad', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 5329.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0120edd55d8264f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:24:57.000Z'}}, {'blockNum': '0x678197', 'uniqueId': '0x23acbf02b481236e331147b144a28b2a341f27a972b6aea3ea9563678eea9eb0:log:5', 'hash': '0x23acbf02b481236e331147b144a28b2a341f27a972b6aea3ea9563678eea9eb0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 2195.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7708d8b2272abc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:25:50.000Z'}}, {'blockNum': '0x67819d', 'uniqueId': '0x8283ec80eb00b4d1a1a4ee6e26162de716f83a4855ee16fa248edf11b41a3328:log:4', 'hash': '0x8283ec80eb00b4d1a1a4ee6e26162de716f83a4855ee16fa248edf11b41a3328', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 5644.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x013201562c915d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:27:05.000Z'}}, {'blockNum': '0x6781aa', 'uniqueId': '0xc1af5038749a655935b6da69510bef55abb5cecedc489813b065508a9c323a1f:log:37', 'hash': '0xc1af5038749a655935b6da69510bef55abb5cecedc489813b065508a9c323a1f', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 8430.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c908da7bb50b480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:30:09.000Z'}}, {'blockNum': '0x6781ab', 'uniqueId': '0x1b5755be6540d0c1b2e83393035a330e5900ca0b6c30a4d47bc7f98c0b355e42:log:6', 'hash': '0x1b5755be6540d0c1b2e83393035a330e5900ca0b6c30a4d47bc7f98c0b355e42', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 38420.85088124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0822cc6a7a18740e7000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:30:29.000Z'}}, {'blockNum': '0x6781ad', 'uniqueId': '0x5d2f278d418e9f88c9392deb54d3782deeab4b32a6227d4b94a09b2353058d03:log:13', 'hash': '0x5d2f278d418e9f88c9392deb54d3782deeab4b32a6227d4b94a09b2353058d03', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 205477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b82ee3494322b740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:31:02.000Z'}}, {'blockNum': '0x6781b3', 'uniqueId': '0x781b9923abed84fd8d77b55b06f965be224a0c6984f45208133fae94b2897b0b:log:2', 'hash': '0x781b9923abed84fd8d77b55b06f965be224a0c6984f45208133fae94b2897b0b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 9014.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e8b17b458ae7680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:31:27.000Z'}}, {'blockNum': '0x6781bc', 'uniqueId': '0xe5b6b944e78cd848f3bd8c891f9c82491c28abfeecdfcbf315418934f6c6b875:log:9', 'hash': '0xe5b6b944e78cd848f3bd8c891f9c82491c28abfeecdfcbf315418934f6c6b875', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 381.92570604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14b448ae1d40763000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:34:06.000Z'}}, {'blockNum': '0x6781bc', 'uniqueId': '0xc55b491f12daf20cdb4d64166f68dd0aad1cf97ccf22c9601ab05d3f9d6523db:log:10', 'hash': '0xc55b491f12daf20cdb4d64166f68dd0aad1cf97ccf22c9601ab05d3f9d6523db', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaafa8af1644e080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:34:06.000Z'}}, {'blockNum': '0x6781d7', 'uniqueId': '0x44559ec60f657c1cefbb79fb643fea00da381cbbfe0a9765c7af8b2f823faa90:log:37', 'hash': '0x44559ec60f657c1cefbb79fb643fea00da381cbbfe0a9765c7af8b2f823faa90', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 9014.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e8b17b458ae7680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:41:20.000Z'}}, {'blockNum': '0x6781db', 'uniqueId': '0x8994cc1ae5522f581b2faaa3694fe3efb9778f16b72daa645babc594f7f0dc7e:log:19', 'hash': '0x8994cc1ae5522f581b2faaa3694fe3efb9778f16b72daa645babc594f7f0dc7e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 55079.12881496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ba9d8765b7988ca6000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:42:48.000Z'}}, {'blockNum': '0x6781e0', 'uniqueId': '0x4f2404a08759326ec01547e38e124251c7af5f11b8aa45dea8a1499769ce1a7c:log:28', 'hash': '0x4f2404a08759326ec01547e38e124251c7af5f11b8aa45dea8a1499769ce1a7c', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 5644.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x013201562c915d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:43:35.000Z'}}, {'blockNum': '0x6781e5', 'uniqueId': '0x498f4287a84dd94947f0e23c769bc53b3e825e247f37ce1a27522c575fb92ee7:log:5', 'hash': '0x498f4287a84dd94947f0e23c769bc53b3e825e247f37ce1a27522c575fb92ee7', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 55079.12881496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ba9d8765b7988ca6000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:45:40.000Z'}}, {'blockNum': '0x6781f6', 'uniqueId': '0x75a133e4cca132ccaf18acc947afbec54c4a001e3c59e34c66efbe1c041a21d8:log:38', 'hash': '0x75a133e4cca132ccaf18acc947afbec54c4a001e3c59e34c66efbe1c041a21d8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 224817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2f9b5a9f207c02240000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:50:56.000Z'}}, {'blockNum': '0x6781f9', 'uniqueId': '0x0a86bc193084ac6b0995bc55bf208b3dc6c035e71e56de1e8bc166a98432d485:log:49', 'hash': '0x0a86bc193084ac6b0995bc55bf208b3dc6c035e71e56de1e8bc166a98432d485', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 3146.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xaa969f6789ff380000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:52:42.000Z'}}, {'blockNum': '0x678213', 'uniqueId': '0xcfbf0b8637ce5e6b28c0fee6ef3d3853fb72b874fd28b8a80c6ae15fa71edd60:log:21', 'hash': '0xcfbf0b8637ce5e6b28c0fee6ef3d3853fb72b874fd28b8a80c6ae15fa71edd60', 'from': '0x977c827a997e6cb67e70daeaa7145b17d0cb8bda', 'to': '0x02d66417fbe0f07585710703d4d6931c52768074', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T17:59:56.000Z'}}, {'blockNum': '0x678214', 'uniqueId': '0xa6fbb44f47f3051ec672a791bd4416ce7014893bcc67b6b5375f5b5839f0c4c3:log:2', 'hash': '0xa6fbb44f47f3051ec672a791bd4416ce7014893bcc67b6b5375f5b5839f0c4c3', 'from': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 5342.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01219f7819b129f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:00:14.000Z'}}, {'blockNum': '0x67822d', 'uniqueId': '0x4debdd71019a0c33a3880eff328f8967e3f9b0c1e79a47e3d3a360127330baa7:log:24', 'hash': '0x4debdd71019a0c33a3880eff328f8967e3f9b0c1e79a47e3d3a360127330baa7', 'from': '0x25be66eecae4a2555c452e2c0fbec849e067c0d7', 'to': '0x32433e991eb048752ff30af2a541a2971e01502c', 'value': 87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04b75e170de2fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:05:39.000Z'}}, {'blockNum': '0x678231', 'uniqueId': '0x0d180f0480f71144f3e854add27c9a8158d5f05840b2a33ca82efa3acc02f682:log:6', 'hash': '0x0d180f0480f71144f3e854add27c9a8158d5f05840b2a33ca82efa3acc02f682', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa4dad4df5481ee2d17a23d979d6c8c5c91c1e350', 'value': 3197.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad578f0c6909f60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:06:17.000Z'}}, {'blockNum': '0x678241', 'uniqueId': '0x6c6db279e33e7a998991b21e61818a04af0da010759bb5cdef4cb5fc9b5feaf7:log:4', 'hash': '0x6c6db279e33e7a998991b21e61818a04af0da010759bb5cdef4cb5fc9b5feaf7', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 5382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123c24104f120580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:09:44.000Z'}}, {'blockNum': '0x678243', 'uniqueId': '0x338bbdc1f1c7de6d5048562f9c4b341d9ae980c49331e78dda9274d7d18f13e1:log:23', 'hash': '0x338bbdc1f1c7de6d5048562f9c4b341d9ae980c49331e78dda9274d7d18f13e1', 'from': '0x62273cfaddf55c4caa380fa0a3816dc9b7439eed', 'to': '0xae8a6dce6010babc57af1ef80083c9f0ac999500', 'value': 249.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d82583fae8b580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:11:22.000Z'}}, {'blockNum': '0x67824c', 'uniqueId': '0xb0652200628bb97385fe09c716f8b9bf5d7bd8ff16d7a39b648eb3a7f88ac574:log:4', 'hash': '0xb0652200628bb97385fe09c716f8b9bf5d7bd8ff16d7a39b648eb3a7f88ac574', 'from': '0x02d66417fbe0f07585710703d4d6931c52768074', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:14:10.000Z'}}, {'blockNum': '0x678281', 'uniqueId': '0x5ddf6ad63d78f076b46cf31df43c5b5e729e4322e45c1f838e82982cb40966c1:log:2', 'hash': '0x5ddf6ad63d78f076b46cf31df43c5b5e729e4322e45c1f838e82982cb40966c1', 'from': '0xae8a6dce6010babc57af1ef80083c9f0ac999500', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 249.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d82583fae8b580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:24:11.000Z'}}, {'blockNum': '0x678281', 'uniqueId': '0x0d461360cc123ed1ead1cc4a8b44960d83414fc3d17a67920a861270a97a70e7:log:4', 'hash': '0x0d461360cc123ed1ead1cc4a8b44960d83414fc3d17a67920a861270a97a70e7', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123c24104f120580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:24:11.000Z'}}, {'blockNum': '0x67828b', 'uniqueId': '0xc839069ba705df416fe18658aed4c2565c0a6f02b1f73fad82ab4eb471fdbc24:log:44', 'hash': '0xc839069ba705df416fe18658aed4c2565c0a6f02b1f73fad82ab4eb471fdbc24', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7f3c6b712e85e72b721f740fcec62b40a84bd3a', 'value': 6349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01582e13258e6b140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:26:38.000Z'}}, {'blockNum': '0x6782c7', 'uniqueId': '0xa99e41bd8b9ec59204fc6406cd58fcbc12775f186e86aac27bed1dfc4a365518:log:9', 'hash': '0xa99e41bd8b9ec59204fc6406cd58fcbc12775f186e86aac27bed1dfc4a365518', 'from': '0xf7f3c6b712e85e72b721f740fcec62b40a84bd3a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01582e13258e6b140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:44:13.000Z'}}, {'blockNum': '0x6782ca', 'uniqueId': '0x99847f00d1aa0a28310d84aab4c30f5595ff1519b89f8438ddabbe286f73fa4f:log:8', 'hash': '0x99847f00d1aa0a28310d84aab4c30f5595ff1519b89f8438ddabbe286f73fa4f', 'from': '0xa4dad4df5481ee2d17a23d979d6c8c5c91c1e350', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 3197.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad578f0c6909f60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:45:28.000Z'}}, {'blockNum': '0x6782f0', 'uniqueId': '0x6be5c28e0f1d163228ec9c59677a1b9754b958ab119922b15e1482b4f5a48a19:log:3', 'hash': '0x6be5c28e0f1d163228ec9c59677a1b9754b958ab119922b15e1482b4f5a48a19', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'value': 2925.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9e9ba1ae727de40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:53:25.000Z'}}, {'blockNum': '0x678301', 'uniqueId': '0xfbe4e9c36e85bde421aacd1b9726dfeff47036a746b6caaabb2ef9415ecd6944:log:25', 'hash': '0xfbe4e9c36e85bde421aacd1b9726dfeff47036a746b6caaabb2ef9415ecd6944', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb8be5c22e4ef41bd16f14d28720c9f03a32c10a5', 'value': 2461.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x856ddb6acc82888000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:58:30.000Z'}}, {'blockNum': '0x678303', 'uniqueId': '0x1eec37079c66f115dac8c4df22c24483e4d68d32ab8d1ed845b1c65ece021a3e:log:16', 'hash': '0x1eec37079c66f115dac8c4df22c24483e4d68d32ab8d1ed845b1c65ece021a3e', 'from': '0xb8be5c22e4ef41bd16f14d28720c9f03a32c10a5', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 2461.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x856ddb6acc82888000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T18:58:42.000Z'}}, {'blockNum': '0x678396', 'uniqueId': '0x45cfe34369a92c61a78a143b5fd1488641754221f49246c3cdd949696f11f936:log:0', 'hash': '0x45cfe34369a92c61a78a143b5fd1488641754221f49246c3cdd949696f11f936', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:33:36.000Z'}}, {'blockNum': '0x6783be', 'uniqueId': '0xc19a66a9302c054eed24217352f2cb6f510bce1f8e63da47805eabb2aa51dfbf:log:151', 'hash': '0xc19a66a9302c054eed24217352f2cb6f510bce1f8e63da47805eabb2aa51dfbf', 'from': '0x1a2e8b0c196f1b64796fa9600d57725c0d9ecbe8', 'to': '0x89c163c19df2df16fb28154f68b8cd2cd0a06b7e', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:41:44.000Z'}}, {'blockNum': '0x6783f7', 'uniqueId': '0x0cc59a200ffb32216b9f99ccba6a0e9996f4ab46830685bbe8bb98c66b73d853:log:27', 'hash': '0x0cc59a200ffb32216b9f99ccba6a0e9996f4ab46830685bbe8bb98c66b73d853', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:54:58.000Z'}}, {'blockNum': '0x6783f9', 'uniqueId': '0x92ae88513833b9fa7672755c55c0705dc2f43db93406b7e57481c0ff1cd566f8:log:45', 'hash': '0x92ae88513833b9fa7672755c55c0705dc2f43db93406b7e57481c0ff1cd566f8', 'from': '0x1a2e8b0c196f1b64796fa9600d57725c0d9ecbe8', 'to': '0x89c163c19df2df16fb28154f68b8cd2cd0a06b7e', 'value': 7119.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0181f11b2ef60cc10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T19:55:12.000Z'}}, {'blockNum': '0x678427', 'uniqueId': '0xdf43b7836584a319aa09fee58b9cc126fd56baf2c9d7eed3a54e2772a541c2b1:log:29', 'hash': '0xdf43b7836584a319aa09fee58b9cc126fd56baf2c9d7eed3a54e2772a541c2b1', 'from': '0x89c163c19df2df16fb28154f68b8cd2cd0a06b7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8119.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b826e4dcbbeb610000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:04:39.000Z'}}, {'blockNum': '0x678442', 'uniqueId': '0x2a184310d0ac45ef725016407a0d8b1503457d27c58a26bd573326344beceec4:log:0', 'hash': '0x2a184310d0ac45ef725016407a0d8b1503457d27c58a26bd573326344beceec4', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x430ed2d217d6340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:11:47.000Z'}}, {'blockNum': '0x67847b', 'uniqueId': '0x2f3c1ee24fbaeb2553df6318f5949dcbb76ceca175012c6290d29db1c9fddf3b:log:8', 'hash': '0x2f3c1ee24fbaeb2553df6318f5949dcbb76ceca175012c6290d29db1c9fddf3b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 206.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b33031e7073f30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:21:56.000Z'}}, {'blockNum': '0x678487', 'uniqueId': '0x2bbf3d7dccc1686b693bbb6d3a30a93316af0227ac0051c1d2db3b90cf164465:log:2', 'hash': '0x2bbf3d7dccc1686b693bbb6d3a30a93316af0227ac0051c1d2db3b90cf164465', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0xcdf20191fc4886dbe8a073ca06a0f0f7ac8cf78c', 'value': 206.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b33031e7073f30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:25:09.000Z'}}, {'blockNum': '0x678488', 'uniqueId': '0xf19ce5f621dafe1d9c754632a66e552ececddd651b5851a928b673b5fa616b2a:log:5', 'hash': '0xf19ce5f621dafe1d9c754632a66e552ececddd651b5851a928b673b5fa616b2a', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'value': 2462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x85771d13c3d3b80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:25:24.000Z'}}, {'blockNum': '0x67848b', 'uniqueId': '0x8aedf8d302353dd09d8ca8c94c34774831bd0d2be0ad3fd7c15cdf48c5859dbf:log:12', 'hash': '0x8aedf8d302353dd09d8ca8c94c34774831bd0d2be0ad3fd7c15cdf48c5859dbf', 'from': '0x395c0e4dd04c9c5fd7ac1e578d65cabbf45a82e0', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 2462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x85771d13c3d3b80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:25:42.000Z'}}, {'blockNum': '0x678490', 'uniqueId': '0x3ee6bef5474be4527fef4741448e8296f9b0bc1cdce8c9017c527cf6fe1993f5:log:0', 'hash': '0x3ee6bef5474be4527fef4741448e8296f9b0bc1cdce8c9017c527cf6fe1993f5', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38ebad5cdc90280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:26:54.000Z'}}, {'blockNum': '0x6784b3', 'uniqueId': '0x3707885084b1ba18105cbcc2ea1f0de42669612012981d7efb97c7e33de10847:log:5', 'hash': '0x3707885084b1ba18105cbcc2ea1f0de42669612012981d7efb97c7e33de10847', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7bfa802ef4665c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:34:26.000Z'}}, {'blockNum': '0x6784ba', 'uniqueId': '0x124c9da9631bb51a1cdf059b698b7378ebf495f41817323bb7b02d5f6ac9ba86:log:4', 'hash': '0x124c9da9631bb51a1cdf059b698b7378ebf495f41817323bb7b02d5f6ac9ba86', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xddfeb815266c4fce1d0830d0a6c765ba6686f27c', 'value': 996.34461437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x36030f23e8d5685400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T20:36:14.000Z'}}, {'blockNum': '0x67854f', 'uniqueId': '0xffdf7147cd3cfeef2620e1b22a27c9b605cd5f7cf39e28d62fb2a4a9fccd8eb9:log:10', 'hash': '0xffdf7147cd3cfeef2620e1b22a27c9b605cd5f7cf39e28d62fb2a4a9fccd8eb9', 'from': '0xad0a2478ba25816365aa0e32d77aff92b9e34efc', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2925.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9e9ba1ae727de40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:11:27.000Z'}}, {'blockNum': '0x678582', 'uniqueId': '0x9c67e717d31f285bed40d2ecf48472373d042776811a05211e47d4e204f64ff4:log:20', 'hash': '0x9c67e717d31f285bed40d2ecf48472373d042776811a05211e47d4e204f64ff4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 870.82379035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2f351b97804afd0c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:22:56.000Z'}}, {'blockNum': '0x678584', 'uniqueId': '0xad060f7cd50896944b9518586317c0580967ed860ee07bda243a018da61f7f29:log:3', 'hash': '0xad060f7cd50896944b9518586317c0580967ed860ee07bda243a018da61f7f29', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 870.82379035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2f351b97804afd0c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:23:40.000Z'}}, {'blockNum': '0x67859a', 'uniqueId': '0x26ae7ed61e19f8d95b21abc47e0439b77163ff0ddc8e90c22a6e96df5a9e919f:log:18', 'hash': '0x26ae7ed61e19f8d95b21abc47e0439b77163ff0ddc8e90c22a6e96df5a9e919f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 1959.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6a3db04488da8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:29:23.000Z'}}, {'blockNum': '0x67859c', 'uniqueId': '0x2861c89a434f2905cf27ab65402753d5c6b3c18998b846a0dd760d690381135e:log:23', 'hash': '0x2861c89a434f2905cf27ab65402753d5c6b3c18998b846a0dd760d690381135e', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1959.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6a3db04488da8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:30:00.000Z'}}, {'blockNum': '0x6785a1', 'uniqueId': '0xfa548146214aae1fe95e672cab229220befe339ac27c6d684d6e203b4eda8517:log:6', 'hash': '0xfa548146214aae1fe95e672cab229220befe339ac27c6d684d6e203b4eda8517', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 2522.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x88c2e211a1fb780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:30:51.000Z'}}, {'blockNum': '0x6785a3', 'uniqueId': '0xa51dbba2f8153bd065dc9d018499cd6391ad974f4459b535cc268d9ea28a00fd:log:14', 'hash': '0xa51dbba2f8153bd065dc9d018499cd6391ad974f4459b535cc268d9ea28a00fd', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 2522.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x88c2e211a1fb780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:31:06.000Z'}}, {'blockNum': '0x6785bb', 'uniqueId': '0x998214faf266cf74476c9ac486a0208801bfd61b4065916477645828105d634d:log:13', 'hash': '0x998214faf266cf74476c9ac486a0208801bfd61b4065916477645828105d634d', 'from': '0x5735fbac26bb21ca3c5228022cc382136038087c', 'to': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'value': 2097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x71adb8959e2a240000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:36:35.000Z'}}, {'blockNum': '0x6785e5', 'uniqueId': '0xb84255356f318a878794ed3f53335d45485e1759ad27c0f782ae88945e7a62cb:log:25', 'hash': '0xb84255356f318a878794ed3f53335d45485e1759ad27c0f782ae88945e7a62cb', 'from': '0xd4c7c7664fa0ed4557071a67ff1de9dfe391c72d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x71adb8959e2a240000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T21:44:02.000Z'}}, {'blockNum': '0x67867c', 'uniqueId': '0x26a991a913be2f9eea0249cb56d4fa3d6e267094c7ba9573b2f63798827d358d:log:65', 'hash': '0x26a991a913be2f9eea0249cb56d4fa3d6e267094c7ba9573b2f63798827d358d', 'from': '0x5735fbac26bb21ca3c5228022cc382136038087c', 'to': '0xc36fe8ea0a785dc7d80620d8271f8d8ef00364c9', 'value': 414.62245983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x167a0ae27391d19c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:27:11.000Z'}}, {'blockNum': '0x678695', 'uniqueId': '0x55dda42c15d43c9fdaefc7b78a96d27fb588e50a140af20143fecdfb67ed7555:log:6', 'hash': '0x55dda42c15d43c9fdaefc7b78a96d27fb588e50a140af20143fecdfb67ed7555', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 36371.62466682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07b3b5b07958a97ea800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:32:03.000Z'}}, {'blockNum': '0x6786d9', 'uniqueId': '0x0dfeecba761c2164d476bc21371213e2e5638fff540d5b7c671dbd6c27ab06b7:log:1', 'hash': '0x0dfeecba761c2164d476bc21371213e2e5638fff540d5b7c671dbd6c27ab06b7', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 36371.62466682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07b3b5b07958a97ea800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:45:19.000Z'}}, {'blockNum': '0x678707', 'uniqueId': '0xdf606cd85fda49c40c9b1326c5b8379ce19e0d7ce3ea174c186077d0d229d9fa:log:18', 'hash': '0xdf606cd85fda49c40c9b1326c5b8379ce19e0d7ce3ea174c186077d0d229d9fa', 'from': '0xc36fe8ea0a785dc7d80620d8271f8d8ef00364c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 414.62245983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x167a0ae27391d19c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T22:54:27.000Z'}}, {'blockNum': '0x678728', 'uniqueId': '0x2c9332867df2bc6a9ad019e31a4f18a8853bb5871a22d000066175d873cecaf9:log:4', 'hash': '0x2c9332867df2bc6a9ad019e31a4f18a8853bb5871a22d000066175d873cecaf9', 'from': '0x25be66eecae4a2555c452e2c0fbec849e067c0d7', 'to': '0xe74d7ea4244bd0d316d52f647d14262226ada36d', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T23:01:52.000Z'}}, {'blockNum': '0x67881a', 'uniqueId': '0xd51d87a3311ea09628cc7bcbb2679ab0eeb74d920aed0930cc9dc14ce1250e60:log:58', 'hash': '0xd51d87a3311ea09628cc7bcbb2679ab0eeb74d920aed0930cc9dc14ce1250e60', 'from': '0x01aaffd0f7c00578e7415af6d73c16dc2a7463b0', 'to': '0x9cec467ac2c5fc3b6d9bff622beec4f977b48c24', 'value': 5.224227204351692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x48802ef695508b08', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-27T23:57:22.000Z'}}, {'blockNum': '0x678886', 'uniqueId': '0x42ac4949c0ed2da4a01908b1c2ee2cebbb312b6191da87c9f3a71effcfcfcefe:log:2', 'hash': '0x42ac4949c0ed2da4a01908b1c2ee2cebbb312b6191da87c9f3a71effcfcfcefe', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 36076.48589279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3b5d0ea140b0f9c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:24:26.000Z'}}, {'blockNum': '0x6788dc', 'uniqueId': '0x1c184e3d01189861be51a3c25010adddc41eeab121b68be53b6587427f582616:log:76', 'hash': '0x1c184e3d01189861be51a3c25010adddc41eeab121b68be53b6587427f582616', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36076.48589279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3b5d0ea140b0f9c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:43:56.000Z'}}, {'blockNum': '0x6788ec', 'uniqueId': '0x780c96fab0ad15ccc270eadc2f41e5f863ae6a1fc775d9cb87d803620ae00751:log:75', 'hash': '0x780c96fab0ad15ccc270eadc2f41e5f863ae6a1fc775d9cb87d803620ae00751', 'from': '0x2fff2815f159f549c6c6b6f7a4a5b4ef845266c5', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1e-18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:48:17.000Z'}}, {'blockNum': '0x6788f5', 'uniqueId': '0xa484952ca331f2205d39de68cb0a0c7db1aa6e64262c7ed41b70e8d220078bd8:log:61', 'hash': '0xa484952ca331f2205d39de68cb0a0c7db1aa6e64262c7ed41b70e8d220078bd8', 'from': '0x4d1f5a0bfb2c752caa8c86342224b7c5e15b8dd7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 195.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a9929bc2ce7f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T00:50:12.000Z'}}, {'blockNum': '0x678927', 'uniqueId': '0xb0ecd0443341221f560cee2954d7bed43aca573c723d5872ab720ac9b85b489a:log:6', 'hash': '0xb0ecd0443341221f560cee2954d7bed43aca573c723d5872ab720ac9b85b489a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x592b53d808e888e09a9c79d0aeacb621483d334f', 'value': 1.885427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1a2a61ddf8ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:02:14.000Z'}}, {'blockNum': '0x678997', 'uniqueId': '0xad0a63763006f85c4a35686d2de7d51cbce880c95315a063afcaaa06c21c8dac:log:0', 'hash': '0xad0a63763006f85c4a35686d2de7d51cbce880c95315a063afcaaa06c21c8dac', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x964e58de799aa524adbfa40047b4f8685e898ac1', 'value': 2355.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7fb43ce0d6de4e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:29:13.000Z'}}, {'blockNum': '0x678998', 'uniqueId': '0xbcc0bf352fe59dc07bc814baeeeaf96d3bd0c5e80534c565ece9cad04745ac62:log:35', 'hash': '0xbcc0bf352fe59dc07bc814baeeeaf96d3bd0c5e80534c565ece9cad04745ac62', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'value': 1514.051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5213adb2b6c8f38000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:29:39.000Z'}}, {'blockNum': '0x6789a9', 'uniqueId': '0x75edf4f490f3d2dcd3264cf0f78d658df9c4599e12b5e565e5cf1d39f25a6a93:log:71', 'hash': '0x75edf4f490f3d2dcd3264cf0f78d658df9c4599e12b5e565e5cf1d39f25a6a93', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'value': 530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cbb3a3ff08d080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:32:39.000Z'}}, {'blockNum': '0x6789ab', 'uniqueId': '0x49c547221c1ef5e987c76c90d278e4faab66c0c75cc4ec52903db97ce4cefa77:log:8', 'hash': '0x49c547221c1ef5e987c76c90d278e4faab66c0c75cc4ec52903db97ce4cefa77', 'from': '0xeab71f20bbff8921a89c29798c73a792f6500429', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cbb3a3ff08d080000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:33:20.000Z'}}, {'blockNum': '0x6789da', 'uniqueId': '0x916f1b1d7cbc4b48eb6db9376370211f3772845a74d44348dc19846bd874fb29:log:21', 'hash': '0x916f1b1d7cbc4b48eb6db9376370211f3772845a74d44348dc19846bd874fb29', 'from': '0xa129061235ba49bb491af49b0ad1cb155693311a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1514.051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5213adb2b6c8f38000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:44:20.000Z'}}, {'blockNum': '0x6789e4', 'uniqueId': '0x96b710371fb1702f147d717d9e36f11b4c6f9a23bb928a43fdc1a16d54fd0254:log:4', 'hash': '0x96b710371fb1702f147d717d9e36f11b4c6f9a23bb928a43fdc1a16d54fd0254', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 7989.346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b11a72d1a177fd0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T01:46:59.000Z'}}, {'blockNum': '0x678a36', 'uniqueId': '0x0cac3f27abb053a6617e9cfabbdf6bc3e9aa52932e74a7ea7db6d4c17aea270c:log:4', 'hash': '0x0cac3f27abb053a6617e9cfabbdf6bc3e9aa52932e74a7ea7db6d4c17aea270c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xddfeb815266c4fce1d0830d0a6c765ba6686f27c', 'value': 2091.94045982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7167817ca1766cb800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:09:10.000Z'}}, {'blockNum': '0x678a53', 'uniqueId': '0x96ec8724ddd8f2709f8c4206db2277a901d182101f6c9a216625e5af7b6db5d6:log:0', 'hash': '0x96ec8724ddd8f2709f8c4206db2277a901d182101f6c9a216625e5af7b6db5d6', 'from': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'to': '0x93b9f8533a14eccb4173704ceda727b830e57620', 'value': 3196.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad49ae55b562920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:16:26.000Z'}}, {'blockNum': '0x678a7f', 'uniqueId': '0x77c1d71e5cc9064205b191bf4851ec614c86ed2dd23eed28bf89e2618d7bd821:log:18', 'hash': '0x77c1d71e5cc9064205b191bf4851ec614c86ed2dd23eed28bf89e2618d7bd821', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 26663.63629495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05a570496441e35bfc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:28:37.000Z'}}, {'blockNum': '0x678a87', 'uniqueId': '0xd5f43b2c8810a2deeedd5dbfef8cc433ab9290eaa23b6d7994e143661d6b71cf:log:12', 'hash': '0xd5f43b2c8810a2deeedd5dbfef8cc433ab9290eaa23b6d7994e143661d6b71cf', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 26663.63629495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05a570496441e35bfc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:30:16.000Z'}}, {'blockNum': '0x678a93', 'uniqueId': '0x4ae4bce8c26b2f062b407a51ddeeab16f66e079e2923c6615911e192fa2c273c:log:9', 'hash': '0x4ae4bce8c26b2f062b407a51ddeeab16f66e079e2923c6615911e192fa2c273c', 'from': '0x93b9f8533a14eccb4173704ceda727b830e57620', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3196.596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad49ae55b562920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T02:34:19.000Z'}}, {'blockNum': '0x678b31', 'uniqueId': '0x686f3ccce7869b4062a1df2bde74ce4421149fa89c10b54ce47bcb139c0abe14:log:16', 'hash': '0x686f3ccce7869b4062a1df2bde74ce4421149fa89c10b54ce47bcb139c0abe14', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'value': 12475.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02a450a4d753621d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:08:49.000Z'}}, {'blockNum': '0x678b70', 'uniqueId': '0x0f3796ddccd277858da9c532beec9346843c28cf627f42cee45e881e9c1cfc20:log:3', 'hash': '0x0f3796ddccd277858da9c532beec9346843c28cf627f42cee45e881e9c1cfc20', 'from': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12475.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02a450a4d753621d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:24:09.000Z'}}, {'blockNum': '0x678b79', 'uniqueId': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581:log:115', 'hash': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 4148.457282767102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe0e368ef353f4d0c60', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:25:58.000Z'}}, {'blockNum': '0x678b79', 'uniqueId': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581:log:117', 'hash': '0xfc676853dba005ffa2e2e25d649fc6ea46eeb2e3cfac323e4d7665de5d632581', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xe8e70e656d43f828c543cb8d4d190362d65204bd', 'value': 4148.457282767102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe0e368ef353f4d0c60', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:25:58.000Z'}}, {'blockNum': '0x678b8d', 'uniqueId': '0xf5af9366e1f27d3a616af239f091811e658b65400078a13adc34fe016710e165:log:55', 'hash': '0xf5af9366e1f27d3a616af239f091811e658b65400078a13adc34fe016710e165', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x19a43191f047c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:30:16.000Z'}}, {'blockNum': '0x678b9a', 'uniqueId': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023:log:48', 'hash': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x91a502c678605fbce581eae053319747482276b9', 'value': 3196.763511874489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad4c0174def124ea43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:33:44.000Z'}}, {'blockNum': '0x678b9a', 'uniqueId': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023:log:50', 'hash': '0x4aa49fccc0f9def89a55c9b10f0a7fcc253f652e137c5963833cb5afc7560023', 'from': '0x91a502c678605fbce581eae053319747482276b9', 'to': '0xe8e70e656d43f828c543cb8d4d190362d65204bd', 'value': 3196.763511874489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad4c0174def124ea43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:33:44.000Z'}}, {'blockNum': '0x678bbf', 'uniqueId': '0x35cf6ee516b3ae534aea88ca780f4edf27746303e3c29143529c3991e258f4f9:log:10', 'hash': '0x35cf6ee516b3ae534aea88ca780f4edf27746303e3c29143529c3991e258f4f9', 'from': '0xe1255e8e1ab7bba0c732f33940e76b32dd15f1f1', 'to': '0x35d5b964c4a209984e2c0af3eb5ba5342bb694b2', 'value': 2390.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x81984b880983ee0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:42:45.000Z'}}, {'blockNum': '0x678bd9', 'uniqueId': '0x7749d75c682d9ce99f78296bd7eac9821222d74ef2501551830a8d9f15a7b269:log:5', 'hash': '0x7749d75c682d9ce99f78296bd7eac9821222d74ef2501551830a8d9f15a7b269', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'value': 36072.14772216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3799ca2dffae0e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:49:06.000Z'}}, {'blockNum': '0x678bd9', 'uniqueId': '0x46589082be567e09abf0ad350ed487f71e802128b5a91bdf81c0d0c09405c5f9:log:6', 'hash': '0x46589082be567e09abf0ad350ed487f71e802128b5a91bdf81c0d0c09405c5f9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x54d955860b266feeb292443a9e055ebcd1e656ae', 'value': 6144.83895892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014d1cc56c62b7bed000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:49:06.000Z'}}, {'blockNum': '0x678bdb', 'uniqueId': '0x552cc7d17dc76b6e87e39e73ba2b8c2649dfa3f32bff297637d345bec92f549d:log:4', 'hash': '0x552cc7d17dc76b6e87e39e73ba2b8c2649dfa3f32bff297637d345bec92f549d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'value': 2892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9cc68ff586fdb00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:49:27.000Z'}}, {'blockNum': '0x678be5', 'uniqueId': '0x037d1bfa8206613173baa818ccbabbdbbb60b33f1212a64c8f6d6a3aff86c462:log:20', 'hash': '0x037d1bfa8206613173baa818ccbabbdbbb60b33f1212a64c8f6d6a3aff86c462', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 6472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015ed90aeddfd8200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:53:16.000Z'}}, {'blockNum': '0x678bf3', 'uniqueId': '0x2e6a88816aacd824d93eca9bfe6cc06d602e863a8081dfad0c6238c0b15bb0b2:log:17', 'hash': '0x2e6a88816aacd824d93eca9bfe6cc06d602e863a8081dfad0c6238c0b15bb0b2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe7a153101f16fd83825692fa5bbd5d3d3dbc15dd', 'value': 8076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b5cd03ab84a6b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T03:56:59.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0x80241b249df1361f892294ffa639082af56c57fb52a3d52ac87ea053315c351e:log:29', 'hash': '0x80241b249df1361f892294ffa639082af56c57fb52a3d52ac87ea053315c351e', 'from': '0x54d955860b266feeb292443a9e055ebcd1e656ae', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 6144.83895892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014d1cc56c62b7bed000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0x98508cf1014f6b7b13b48097f3f581a935004da40b5a6f7743fb4fb8ab27de70:log:34', 'hash': '0x98508cf1014f6b7b13b48097f3f581a935004da40b5a6f7743fb4fb8ab27de70', 'from': '0xe7a153101f16fd83825692fa5bbd5d3d3dbc15dd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 8076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b5cd03ab84a6b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0xc305bc4c801c2c90cf7a908326b1118efc3c50027b9f47819ce5f6fe7490d0f0:log:38', 'hash': '0xc305bc4c801c2c90cf7a908326b1118efc3c50027b9f47819ce5f6fe7490d0f0', 'from': '0xd6e1e7385ad23732feb6675b0d6828165a11afbd', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 2892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9cc68ff586fdb00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}, {'blockNum': '0x678c00', 'uniqueId': '0x4f2998e7fe31fa94273ef7dd4a37cb02b9436f7e7162e8ae4b91ed27d004e966:log:45', 'hash': '0x4f2998e7fe31fa94273ef7dd4a37cb02b9436f7e7162e8ae4b91ed27d004e966', 'from': '0x99e9fdcc49e8a8aca7e0c2ff3accd563f019cfec', 'to': '0xf8c34d3d450676fc356543d56b13c548f68f3e0d', 'value': 36072.14772216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07a3799ca2dffae0e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-11-28T04:01:17.000Z'}}]}}
Number of returned transfers:  136
Answer is complete
 
symbol             OAX
group              BPF
date        2018-12-07
hour             17:00
exchange       binance
Name: 744, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2018-12-07 17:00:00 2018-12-07 05:00:00 2018-12-08 05:00:00
Unix timestamps:  1544155200.0 1544241600.0
Hex Block Numbers:  0x6860a8 0x687814
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x686c31', 'uniqueId': '0xda00eeab7a1253f9eeb0bf902002c1ceb5768cec58670fd52c78a26f489be8b2:log:1', 'hash': '0xda00eeab7a1253f9eeb0bf902002c1ceb5768cec58670fd52c78a26f489be8b2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x62229e9ece81a7c142ca71d615607abd7eaff362', 'value': 219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0bdf3c4bb0328c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-07T15:50:52.000Z'}}, {'blockNum': '0x686d92', 'uniqueId': '0xf0f850786fd6f24228d9745e12457fb1be72bdd275bc8f22793171caa479e36c:log:2', 'hash': '0xf0f850786fd6f24228d9745e12457fb1be72bdd275bc8f22793171caa479e36c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7b4bd0f6a8852a5982e5b5e9841d5fc54d933672', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-07T17:13:37.000Z'}}, {'blockNum': '0x686e0e', 'uniqueId': '0xe8ed2649266d4e443f61a81c66753bb49b8aa12b46e17b3d337f7b676085896a:log:13', 'hash': '0xe8ed2649266d4e443f61a81c66753bb49b8aa12b46e17b3d337f7b676085896a', 'from': '0x7b4bd0f6a8852a5982e5b5e9841d5fc54d933672', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-07T17:43:18.000Z'}}]}}
Number of returned transfers:  3
Answer is complete
 
symbol             EVX
group              BPF
date        2018-12-10
hour             17:00
exchange       binance
Name: 745, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2018-12-10 17:00:00 2018-12-10 05:00:00 2018-12-11 05:00:00
Unix timestamps:  1544414400.0 1544500800.0
Hex Block Numbers:  0x68a7ab 0x68bf92
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x68adf3', 'uniqueId': '0x94aacc8a10de35133576df46082ed2f3c78f99e51457dbc94e7f2ad6ec5543bf:log:2', 'hash': '0x94aacc8a10de35133576df46082ed2f3c78f99e51457dbc94e7f2ad6ec5543bf', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa01090', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:13:09.000Z'}}, {'blockNum': '0x68ae24', 'uniqueId': '0x4b09155341772804596899120fe3070322e8a63451a580779e925bf3769d8ac3:log:0', 'hash': '0x4b09155341772804596899120fe3070322e8a63451a580779e925bf3769d8ac3', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x799cd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:26:16.000Z'}}, {'blockNum': '0x68ae3f', 'uniqueId': '0xb05e6c283793cc6c255e3f4937545bb1acb336bb5a9895e21e4a9ddedc90609c:log:31', 'hash': '0xb05e6c283793cc6c255e3f4937545bb1acb336bb5a9895e21e4a9ddedc90609c', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0119ad60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:32:13.000Z'}}, {'blockNum': '0x68ae46', 'uniqueId': '0xc828b199b1b1a33ba19e4d10eaf9d6e18038bb63c1a1e18fdf51de94ea438b31:log:2', 'hash': '0xc828b199b1b1a33ba19e4d10eaf9d6e18038bb63c1a1e18fdf51de94ea438b31', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fffa0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:33:33.000Z'}}, {'blockNum': '0x68ae55', 'uniqueId': '0xc44a2589617610b3b53b8a1938c6e2177b5ba570d2f46d63da739c4bc2c014ca:log:0', 'hash': '0xc44a2589617610b3b53b8a1938c6e2177b5ba570d2f46d63da739c4bc2c014ca', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x829d80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:38:04.000Z'}}, {'blockNum': '0x68ae88', 'uniqueId': '0x1b3ff615dd6b7c0c6118d7b5294390f1c40c49fc27e92963cd1e4bd313ece6bf:log:10', 'hash': '0x1b3ff615dd6b7c0c6118d7b5294390f1c40c49fc27e92963cd1e4bd313ece6bf', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fffa0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:51:18.000Z'}}, {'blockNum': '0x68ae90', 'uniqueId': '0xa6b25101b7068dbcbaf01f2fc0e4363081c25e26ddbf4f7808df48da9ea46790:log:0', 'hash': '0xa6b25101b7068dbcbaf01f2fc0e4363081c25e26ddbf4f7808df48da9ea46790', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbdaab0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:52:39.000Z'}}, {'blockNum': '0x68ae9b', 'uniqueId': '0x1e877082d27a1c623c9989703b5539dc2e95f39b8865f1687b2440d050b72ff9:log:0', 'hash': '0x1e877082d27a1c623c9989703b5539dc2e95f39b8865f1687b2440d050b72ff9', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0133c510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T10:56:32.000Z'}}, {'blockNum': '0x68aeaf', 'uniqueId': '0xafaad7b87ea825d97e7a8eb1df7c0dcdbdce90a12e6057e29084a197aa6bb509:log:9', 'hash': '0xafaad7b87ea825d97e7a8eb1df7c0dcdbdce90a12e6057e29084a197aa6bb509', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0133c510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:01:02.000Z'}}, {'blockNum': '0x68af09', 'uniqueId': '0xc8476706994e3c16968e72dade8b66a2bb83b799c442517c80f85774a6257683:log:8', 'hash': '0xc8476706994e3c16968e72dade8b66a2bb83b799c442517c80f85774a6257683', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01404830', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:23:13.000Z'}}, {'blockNum': '0x68af3a', 'uniqueId': '0x31330e2a65114701f457f278659903b67b057a5a1a6ee00a4ccdbf26698fbace:log:5', 'hash': '0x31330e2a65114701f457f278659903b67b057a5a1a6ee00a4ccdbf26698fbace', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x679b70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:37:17.000Z'}}, {'blockNum': '0x68af49', 'uniqueId': '0x82594c9e9e53c0c260208c09844bdff3a17a0b986c61edb1e45df404008ba312:log:36', 'hash': '0x82594c9e9e53c0c260208c09844bdff3a17a0b986c61edb1e45df404008ba312', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6163.8519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03ac8777', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:41:07.000Z'}}, {'blockNum': '0x68af64', 'uniqueId': '0xf0c3d52c5116ad933dfdd295c62bed19decb6b99cb821d1f2b98d3f7422bd0f4:log:32', 'hash': '0xf0c3d52c5116ad933dfdd295c62bed19decb6b99cb821d1f2b98d3f7422bd0f4', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x679b70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T11:50:51.000Z'}}, {'blockNum': '0x68b474', 'uniqueId': '0xd77c176090bcae419b14d03b5767c3d0c6d717bcea4d827b16e843308acc112c:log:0', 'hash': '0xd77c176090bcae419b14d03b5767c3d0c6d717bcea4d827b16e843308acc112c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xde2b00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T16:54:35.000Z'}}, {'blockNum': '0x68b49b', 'uniqueId': '0x8f7232dab1b013a40fcda0c893372b0ad03224594ea8dfbc675a14ec6391b34a:log:2', 'hash': '0x8f7232dab1b013a40fcda0c893372b0ad03224594ea8dfbc675a14ec6391b34a', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02865cc0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:02:45.000Z'}}, {'blockNum': '0x68b4a8', 'uniqueId': '0xe33fd2e20161abbbb7edd84adc8edbe5050c234bcb0aaa66667826c2bd62f6f4:log:68', 'hash': '0xe33fd2e20161abbbb7edd84adc8edbe5050c234bcb0aaa66667826c2bd62f6f4', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3514.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0218487a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:05:37.000Z'}}, {'blockNum': '0x68b4c3', 'uniqueId': '0xe8a574d02c973b1fe44c8c6e26e3f35b4f69e910e20b3a3241c7e1e83acc4ccb:log:46', 'hash': '0xe8a574d02c973b1fe44c8c6e26e3f35b4f69e910e20b3a3241c7e1e83acc4ccb', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6011.0383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0395362f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:11:45.000Z'}}, {'blockNum': '0x68b4c5', 'uniqueId': '0xd5e46ed374335c5a205140b6a1d2dcb5d71741a58de314bcf8136a6786a64911:log:17', 'hash': '0xd5e46ed374335c5a205140b6a1d2dcb5d71741a58de314bcf8136a6786a64911', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xde2b00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:12:17.000Z'}}, {'blockNum': '0x68b4ed', 'uniqueId': '0x40aa30f1f29ece434445b6c72762c5cfa609fed3a80bdc69ad749ec05d26b73f:log:8', 'hash': '0x40aa30f1f29ece434445b6c72762c5cfa609fed3a80bdc69ad749ec05d26b73f', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02865cc0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:21:04.000Z'}}, {'blockNum': '0x68b579', 'uniqueId': '0x4c4552a3be27609cb3edfa69be3c7370232b6bcdfb143c528c48124a0eaa84cd:log:2', 'hash': '0x4c4552a3be27609cb3edfa69be3c7370232b6bcdfb143c528c48124a0eaa84cd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x735be6c32f1d58b41c3141dfdf29f126e87a5ce2', 'value': 115.182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11934c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T17:54:37.000Z'}}, {'blockNum': '0x68b788', 'uniqueId': '0x28dfc2991b379f6a064632868e2b3bd9208afecfd180bb754930b9e31dd35f74:log:18', 'hash': '0x28dfc2991b379f6a064632868e2b3bd9208afecfd180bb754930b9e31dd35f74', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x29d770bb6fcbcfe107171d77f99c6eec4a73090f', 'value': 12.2851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dfe3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T19:59:36.000Z'}}, {'blockNum': '0x68b791', 'uniqueId': '0x8574344b3b599eae9d91bd39c4c711062e688499d56a14abe5d8d68b4148d6b7:log:8', 'hash': '0x8574344b3b599eae9d91bd39c4c711062e688499d56a14abe5d8d68b4148d6b7', 'from': '0x29d770bb6fcbcfe107171d77f99c6eec4a73090f', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 12.2851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dfe3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-10T20:01:08.000Z'}}, {'blockNum': '0x68bc92', 'uniqueId': '0xf27928210a191dc98b30e2ea5c2d726fb38015b414334b150d4d87ebcb65a6c3:log:13', 'hash': '0xf27928210a191dc98b30e2ea5c2d726fb38015b414334b150d4d87ebcb65a6c3', 'from': '0xdc1e9b7c72c18a8493625ccb759880ff40231113', 'to': '0x6e7ccf5f6b8322b557fba78a0e8479e791e763df', 'value': 271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2965a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-11T00:58:10.000Z'}}, {'blockNum': '0x68bceb', 'uniqueId': '0x503911e13f81cf9a73e71522ccb7a999cc951951286931a659070427932e7812:log:11', 'hash': '0x503911e13f81cf9a73e71522ccb7a999cc951951286931a659070427932e7812', 'from': '0x6e7ccf5f6b8322b557fba78a0e8479e791e763df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2965a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2018-12-11T01:21:07.000Z'}}]}}
Number of returned transfers:  24
Answer is complete
 
symbol              HC
group              BPF
date        2018-12-27
hour             17:00
exchange       binance
Name: 746, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
 Symbol: HC, Contract: 
Datetime timestamps:  2018-12-27 17:00:00 2018-12-27 05:00:00 2018-12-28 05:00:00
Unix timestamps:  1545883200.0 1545969600.0
Hex Block Numbers:  0x6a3368 0x6a4a6c
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              BPF
date        2018-12-30
hour             17:00
exchange       binance
Name: 747, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2018-12-30 17:00:00 2018-12-30 05:00:00 2018-12-31 05:00:00
Unix timestamps:  1546142400.0 1546228800.0
Hex Block Numbers:  0x6a78ed 0x6a901f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6a7ab0', 'uniqueId': '0xe552dded38d287630565f32ce6bfe71c4ca260ec9cebbb8ce2eaf87a37b32310:log:61', 'hash': '0xe552dded38d287630565f32ce6bfe71c4ca260ec9cebbb8ce2eaf87a37b32310', 'from': '0xc9739f672bcc772b4e376b099db57aed0aa2bac9', 'to': '0x1e7273f3cc5687d0b111ab3f743b749b02a6eafe', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T05:51:22.000Z'}}, {'blockNum': '0x6a7ac1', 'uniqueId': '0x4e25333e59cf24d16f2b5aa4c156c168015d49cf81978f9e95d5c62c0b5b364e:log:102', 'hash': '0x4e25333e59cf24d16f2b5aa4c156c168015d49cf81978f9e95d5c62c0b5b364e', 'from': '0x690e02685226bb3759f412bd5f0a39a4a3f65a35', 'to': '0x83d52e32e493c163299b00b6ecfcbaa35f01552f', 'value': 184.98734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a07370da00468c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T05:56:36.000Z'}}, {'blockNum': '0x6a7b3e', 'uniqueId': '0x06b7efebd0188fecd511c7bb1521231f99aa4b2e660b56906a5263bd0a6aa0d0:log:5', 'hash': '0x06b7efebd0188fecd511c7bb1521231f99aa4b2e660b56906a5263bd0a6aa0d0', 'from': '0x83d52e32e493c163299b00b6ecfcbaa35f01552f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 184.98734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a07370da00468c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T06:24:02.000Z'}}, {'blockNum': '0x6a7b50', 'uniqueId': '0x53df3cebde3ca6a52a09c70f662aa865248323f1991c1cb5b4b5b6108ec7fa51:log:84', 'hash': '0x53df3cebde3ca6a52a09c70f662aa865248323f1991c1cb5b4b5b6108ec7fa51', 'from': '0xca47cae9ac14558dfc75b6aa16c2c79d99a767a4', 'to': '0x70214d41a3b738b6819ea3e0c6337fd654cdd076', 'value': 156.7453928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x087f47804767124000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T06:27:45.000Z'}}, {'blockNum': '0x6a7b5a', 'uniqueId': '0xdc740e9c0f1ba520c8b1d0142233ff0f1becf63ee6c16f516125df655abae83f:log:32', 'hash': '0xdc740e9c0f1ba520c8b1d0142233ff0f1becf63ee6c16f516125df655abae83f', 'from': '0x70214d41a3b738b6819ea3e0c6337fd654cdd076', 'to': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'value': 156.7453928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x087f47804767124000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T06:30:46.000Z'}}, {'blockNum': '0x6a7b7c', 'uniqueId': '0x622e2889bb8bf8687b659d1959d6cdba18bd8401cea29858ad82f9857bff8664:log:2', 'hash': '0x622e2889bb8bf8687b659d1959d6cdba18bd8401cea29858ad82f9857bff8664', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xca47cae9ac14558dfc75b6aa16c2c79d99a767a4', 'value': 89.231020809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04d65444a8d9ef1a00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T06:36:03.000Z'}}, {'blockNum': '0x6a7b8a', 'uniqueId': '0x302e43a548cbcc72d81aff163b4773716288b4c9e9c288f61407276ed3c1a463:log:65', 'hash': '0x302e43a548cbcc72d81aff163b4773716288b4c9e9c288f61407276ed3c1a463', 'from': '0xca47cae9ac14558dfc75b6aa16c2c79d99a767a4', 'to': '0xfef35a7bfd422bf277cfdde1f2f6150fe5fc365b', 'value': 166.99645894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x090d8a9a9eeace5800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T06:39:56.000Z'}}, {'blockNum': '0x6a7b8e', 'uniqueId': '0x6f8143f0c24f8a6f44d888899670febdb4ff56a1962b1819341cf5eaa6b21c77:log:26', 'hash': '0x6f8143f0c24f8a6f44d888899670febdb4ff56a1962b1819341cf5eaa6b21c77', 'from': '0xfef35a7bfd422bf277cfdde1f2f6150fe5fc365b', 'to': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'value': 166.99645894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x090d8a9a9eeace5800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T06:41:26.000Z'}}, {'blockNum': '0x6a7bbe', 'uniqueId': '0x20e54547ae6b05eda013d2c982b8a43f3baefbbc45d91d59080c96d9ecf520df:log:33', 'hash': '0x20e54547ae6b05eda013d2c982b8a43f3baefbbc45d91d59080c96d9ecf520df', 'from': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 375.8768763606584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x146056eb91a8773300', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T06:54:45.000Z'}}, {'blockNum': '0x6a7d78', 'uniqueId': '0xc63d4fe7a8741edc2bfc18335bbaeaa9cfb903baaa38b3159d3ef8f468f772c7:log:24', 'hash': '0xc63d4fe7a8741edc2bfc18335bbaeaa9cfb903baaa38b3159d3ef8f468f772c7', 'from': '0x7d82c99cdfe5ba502c7a33115cff8aadc2b735f1', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T08:35:18.000Z'}}, {'blockNum': '0x6a7ded', 'uniqueId': '0xbddbe7ed11cfd23a0ba56be608c634658eadaf5b290de98892d19c6cf3ad7b52:log:26', 'hash': '0xbddbe7ed11cfd23a0ba56be608c634658eadaf5b290de98892d19c6cf3ad7b52', 'from': '0x3a9ffce02ab34965bdeaafca9fa2a06a9886717b', 'to': '0x79e56ff1a4334966bd84813d2e2f97e420752276', 'value': 194.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a8f649fe7c6180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T09:10:47.000Z'}}, {'blockNum': '0x6a7e21', 'uniqueId': '0xe9632a60637b87df9fba1aa244794abc9b30b123216403b51adb39164833513b:log:9', 'hash': '0xe9632a60637b87df9fba1aa244794abc9b30b123216403b51adb39164833513b', 'from': '0x79e56ff1a4334966bd84813d2e2f97e420752276', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 194.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a8f649fe7c6180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T09:24:09.000Z'}}, {'blockNum': '0x6a7e93', 'uniqueId': '0x5f958d051d1edd6b32cdcb041a2894332ceae0c41015d1215c19efab68f3042f:log:125', 'hash': '0x5f958d051d1edd6b32cdcb041a2894332ceae0c41015d1215c19efab68f3042f', 'from': '0x07f974c295393df15a5195a21eda137587b05160', 'to': '0x50b91afe13a72e35efd7cea7ea871ceef09eb044', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x055de6a779bbac0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T09:56:27.000Z'}}, {'blockNum': '0x6a7ef0', 'uniqueId': '0x3d4fc7aad51b31df86be86b7b6121a690199735eea530b9f1e01919bf2ab47cf:log:23', 'hash': '0x3d4fc7aad51b31df86be86b7b6121a690199735eea530b9f1e01919bf2ab47cf', 'from': '0x50b91afe13a72e35efd7cea7ea871ceef09eb044', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x055de6a779bbac0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T10:15:28.000Z'}}, {'blockNum': '0x6a8489', 'uniqueId': '0x6720174124e6d1862b8b672b35c679256818f71e2f7154f6a48e36e699668949:log:54', 'hash': '0x6720174124e6d1862b8b672b35c679256818f71e2f7154f6a48e36e699668949', 'from': '0x9167b9f3542807eb5c87c49ad9b7ad99a71e6204', 'to': '0x70be5ed380b716e5d273ec8a133792e42f178164', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T16:13:19.000Z'}}, {'blockNum': '0x6a84a5', 'uniqueId': '0x9268f63faf8aae5df02a1a9a66ce25858eb9c4c8d4bef7b189e29f6b729e7eaa:log:49', 'hash': '0x9268f63faf8aae5df02a1a9a66ce25858eb9c4c8d4bef7b189e29f6b729e7eaa', 'from': '0x9167b9f3542807eb5c87c49ad9b7ad99a71e6204', 'to': '0x70be5ed380b716e5d273ec8a133792e42f178164', 'value': 1480, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x503b203e9fba200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T16:18:43.000Z'}}, {'blockNum': '0x6a84bc', 'uniqueId': '0x9bee83bde6b47120911db9d50f9ba378b74ddc91f27728c97b6b5ec3fd96fc7e:log:10', 'hash': '0x9bee83bde6b47120911db9d50f9ba378b74ddc91f27728c97b6b5ec3fd96fc7e', 'from': '0x70be5ed380b716e5d273ec8a133792e42f178164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T16:23:35.000Z'}}, {'blockNum': '0x6a8533', 'uniqueId': '0x0a8b016fa2ec065e614b2a8751373527fffa5b168a3a9f2adf24a79f8b421c05:log:159', 'hash': '0x0a8b016fa2ec065e614b2a8751373527fffa5b168a3a9f2adf24a79f8b421c05', 'from': '0x1aa76be1c389a45369a7383a3da0d64e34d0d162', 'to': '0xad68a4fa8ecb7398e5eb6bf60daf5e312cfce490', 'value': 787.1578947368421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2aac029eb8cdcca188', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T16:51:37.000Z'}}, {'blockNum': '0x6a8583', 'uniqueId': '0xabccfebe7b28edaaddc71d1c89d77ff5f18411e7a1d82d0baa027ca22c9c5627:log:11', 'hash': '0xabccfebe7b28edaaddc71d1c89d77ff5f18411e7a1d82d0baa027ca22c9c5627', 'from': '0xad68a4fa8ecb7398e5eb6bf60daf5e312cfce490', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 787.1578947368421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2aac029eb8cdcca188', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T17:11:11.000Z'}}, {'blockNum': '0x6a85c9', 'uniqueId': '0x0c4deaf896fbef3b88d3eecba06f5b24945e2a8e19a62b8c570f01c8c566f3c9:log:1', 'hash': '0x0c4deaf896fbef3b88d3eecba06f5b24945e2a8e19a62b8c570f01c8c566f3c9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdb903582316176e7ab4cd33bc0412c926c061a5a', 'value': 17.778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xf6b824cee0e50000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T17:24:28.000Z'}}, {'blockNum': '0x6a878a', 'uniqueId': '0xa38b5da59934813de5506c17b98676f53069301ceef2557403cdd80be685cda3:log:11', 'hash': '0xa38b5da59934813de5506c17b98676f53069301ceef2557403cdd80be685cda3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa84492f669aba6d620fb099b077f11659845bfbc', 'value': 1086.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3aea6139e306880000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T19:16:30.000Z'}}, {'blockNum': '0x6a892c', 'uniqueId': '0x26d768a8d1c6a035a08464004ed57ad039464c08f93aed3dda2ff777f3197209:log:132', 'hash': '0x26d768a8d1c6a035a08464004ed57ad039464c08f93aed3dda2ff777f3197209', 'from': '0xd2b57b31a64a83c0ec9f2edb40f53020ed831745', 'to': '0xdb33d160164ff6cd568c247df8a232dc432a5479', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T21:00:21.000Z'}}, {'blockNum': '0x6a8999', 'uniqueId': '0x51bb6ecbd8b4fe9cc20dc0cb49d6f41f0111f123e39505db33f918d81843a107:log:4', 'hash': '0x51bb6ecbd8b4fe9cc20dc0cb49d6f41f0111f123e39505db33f918d81843a107', 'from': '0xc4b8280e7f8c5f7b1d5a141748d2a36a32ca32f5', 'to': '0x0efea8d4b173a2a32840293f0223f9486f6b3c6d', 'value': 285.63714396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f7c02fd0fa8e9f000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T21:24:18.000Z'}}, {'blockNum': '0x6a89b0', 'uniqueId': '0xc07ab7de68b02b05fc9a90e4df5b3c98c43715201dc1fd59a1e42c07ac1d0475:log:46', 'hash': '0xc07ab7de68b02b05fc9a90e4df5b3c98c43715201dc1fd59a1e42c07ac1d0475', 'from': '0x0efea8d4b173a2a32840293f0223f9486f6b3c6d', 'to': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'value': 285.63714396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f7c02fd0fa8e9f000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T21:29:32.000Z'}}, {'blockNum': '0x6a89d6', 'uniqueId': '0x613fd85b1ee31f928e5490ad9a26faec5b2cbe816930d15c5714aae5c8ffca43:log:1', 'hash': '0x613fd85b1ee31f928e5490ad9a26faec5b2cbe816930d15c5714aae5c8ffca43', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9180ab1c2f33e681e0582c0eff3185d9e7bb09b0', 'value': 7058.73, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x017ea78ea03ee1110000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T21:39:06.000Z'}}, {'blockNum': '0x6a89ec', 'uniqueId': '0xcbf4aba0eacbf4dfcc933071aff6b5a1c4ad505f2be4ace5bfcafeb017dcc5e9:log:17', 'hash': '0xcbf4aba0eacbf4dfcc933071aff6b5a1c4ad505f2be4ace5bfcafeb017dcc5e9', 'from': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 285.63714396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f7c02fd0fa8e9f000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T21:44:33.000Z'}}, {'blockNum': '0x6a89ed', 'uniqueId': '0xdf232cf38d1d12cb29acf9db1eed39de2f6b9f995107f7f44468ce08bb4e59bd:log:142', 'hash': '0xdf232cf38d1d12cb29acf9db1eed39de2f6b9f995107f7f44468ce08bb4e59bd', 'from': '0xb2cd73acffea497c7911c3bca0eed67fc8be2f57', 'to': '0x6fad58872c56b48987bbb6ec84f72b8940c68c62', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-30T21:45:05.000Z'}}, {'blockNum': '0x6a8e06', 'uniqueId': '0x5f211523d860217dc9891340cc6860a6d1d7659201609b06f361f669ba023ee4:log:206', 'hash': '0x5f211523d860217dc9891340cc6860a6d1d7659201609b06f361f669ba023ee4', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xaa5507d40aad8a13591a4a71100f996f97a9b330', 'value': 66.90014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a06d0ae0bbe6c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-31T01:49:59.000Z'}}]}}
Number of returned transfers:  28
Answer is complete
 
symbol             AMB
group              BPF
date        2019-01-01
hour             14:30
exchange       binance
Name: 748, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: AMB, Contract: 
Datetime timestamps:  2019-01-01 14:30:00 2019-01-01 02:30:00 2019-01-02 02:30:00
Unix timestamps:  1546306200.0 1546392600.0
Hex Block Numbers:  0x6aa4b3 0x6abbb0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BNT
group              BPF
date        2019-01-06
hour             21:00
exchange       binance
Name: 750, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2019-01-06 21:00:00 2019-01-06 09:00:00 2019-01-07 09:00:00
Unix timestamps:  1546761600.0 1546848000.0
Hex Block Numbers:  0x6b1a1f 0x6b2fc9
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6b1a3a', 'uniqueId': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4:log:54', 'hash': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 86.7824850948604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b459526684c9382d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:08:14.000Z'}}, {'blockNum': '0x6b1a3a', 'uniqueId': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4:log:58', 'hash': '0xa70f8a629c1f8c9cd5d9316951efdcf0a2f3a289690a9290c381d52032fab6c4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 86.7824850948604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b459526684c9382d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:08:14.000Z'}}, {'blockNum': '0x6b1a44', 'uniqueId': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647:log:45', 'hash': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647', 'from': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 284.71836387374753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f42d370cd21b311', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:11:16.000Z'}}, {'blockNum': '0x6b1a44', 'uniqueId': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647:log:49', 'hash': '0x8c95552dda867153a8f7e7d39ca6750d917f2cd00a52912b4fb3ebc993d9d647', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 284.71836387374753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f42d370cd21b311', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:11:16.000Z'}}, {'blockNum': '0x6b1a58', 'uniqueId': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0:log:199', 'hash': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 445.65913148990586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1828c34ae304f0db8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:14:28.000Z'}}, {'blockNum': '0x6b1a58', 'uniqueId': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0:log:203', 'hash': '0xf58fac6413a28b8bb5c8f6a659d639a978dfcd40efd626d3d88a8c9d2d50b7a0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 445.65913148990586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1828c34ae304f0db8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:14:28.000Z'}}, {'blockNum': '0x6b1a60', 'uniqueId': '0xaab70c8217ae9d8efe4cd8eb26ce55fe184b7d81f774c898bdd2fb6c0103dfcb:log:51', 'hash': '0xaab70c8217ae9d8efe4cd8eb26ce55fe184b7d81f774c898bdd2fb6c0103dfcb', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 434.721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1790f73e3fda968000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:16:31.000Z'}}, {'blockNum': '0x6b1a62', 'uniqueId': '0xba124000943d1f1e1f3399f2cb4271063ad2e446572c3091c5aa3375cf71729f:log:108', 'hash': '0xba124000943d1f1e1f3399f2cb4271063ad2e446572c3091c5aa3375cf71729f', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1794d673456eec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:16:53.000Z'}}, {'blockNum': '0x6b1a7a', 'uniqueId': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b:log:74', 'hash': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 220.30111646698853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf14aca38accf181d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:21:40.000Z'}}, {'blockNum': '0x6b1a7a', 'uniqueId': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b:log:78', 'hash': '0x872288e5bd93d9522dfbddb54c6bdd9b2c47ae4f5b618f7578479deed6c0b12b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'value': 220.30111646698853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf14aca38accf181d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:21:40.000Z'}}, {'blockNum': '0x6b1a80', 'uniqueId': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98:log:239', 'hash': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 802.7449687491827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b845307f3c7158257', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:23:33.000Z'}}, {'blockNum': '0x6b1a80', 'uniqueId': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98:log:243', 'hash': '0xf4d14be94db39d7eeef270120157ba17cc598e7afebe429f9b01cb9e000b5b98', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 802.7449687491827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b845307f3c7158257', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:23:33.000Z'}}, {'blockNum': '0x6b1a85', 'uniqueId': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce:log:78', 'hash': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 612.4469499825277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x213368a82047fe3a9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:24:48.000Z'}}, {'blockNum': '0x6b1a85', 'uniqueId': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce:log:82', 'hash': '0xcfa4fb5d9d4bde751f4b93cbb8d3d36b8d4f542275d7348c70ddc773fc860fce', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 612.4469499825277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x213368a82047fe3a9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:24:48.000Z'}}, {'blockNum': '0x6b1a86', 'uniqueId': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d:log:50', 'hash': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 222.52228100548976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c101df399d5de749d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:25:34.000Z'}}, {'blockNum': '0x6b1a86', 'uniqueId': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d:log:54', 'hash': '0x05cb9407a6a608b154b7e70e1a3fde104886369901bc058d94c6fe8c49a5942d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 222.52228100548976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c101df399d5de749d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:25:34.000Z'}}, {'blockNum': '0x6b1a8d', 'uniqueId': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3:log:41', 'hash': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 910.5460558130136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315c5d6d7b6fae674e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:26:52.000Z'}}, {'blockNum': '0x6b1a8d', 'uniqueId': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3:log:45', 'hash': '0x8de305b0c690988e6938f52a855b616e20f9ca5c870c272683974cd4aecacae3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 910.5460558130136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315c5d6d7b6fae674e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:26:52.000Z'}}, {'blockNum': '0x6b1a92', 'uniqueId': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced:log:111', 'hash': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 601.6834357685901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209e08f8f9df6062a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:28:33.000Z'}}, {'blockNum': '0x6b1a92', 'uniqueId': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced:log:115', 'hash': '0x996df9673d7e467ce1c9c32ad6ea34199ba0df011698925bdb2af7515314bced', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 601.6834357685901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209e08f8f9df6062a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:28:33.000Z'}}, {'blockNum': '0x6b1a97', 'uniqueId': '0x9644d4a74e9d2ab93dbe15ee85df206cec762e6a59ca83941c0e3539ff6cb90d:log:4', 'hash': '0x9644d4a74e9d2ab93dbe15ee85df206cec762e6a59ca83941c0e3539ff6cb90d', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1794d673456eec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:30:04.000Z'}}, {'blockNum': '0x6b1aa4', 'uniqueId': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229:log:33', 'hash': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 244.44884567000346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4068c1fdcad7643f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:32:32.000Z'}}, {'blockNum': '0x6b1aa4', 'uniqueId': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229:log:37', 'hash': '0xf82c2af568d3894d785c2ce77cd59105e820465bc4940ba1f72f1a48b8eb5229', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 244.44884567000346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4068c1fdcad7643f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:32:32.000Z'}}, {'blockNum': '0x6b1aab', 'uniqueId': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845:log:69', 'hash': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 359.71956948729587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13801ca2929eb74909', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:04.000Z'}}, {'blockNum': '0x6b1aab', 'uniqueId': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845:log:73', 'hash': '0x92ec8294b6c8480fcfef205b587cd3ca65190e0e3575482dd60b03b2df9c9845', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 359.71956948729587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13801ca2929eb74909', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:04.000Z'}}, {'blockNum': '0x6b1aac', 'uniqueId': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b:log:33', 'hash': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 342.3415775357067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x128ef19af71ea5025a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:11.000Z'}}, {'blockNum': '0x6b1aac', 'uniqueId': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b:log:37', 'hash': '0x94190d3659832b6b4a1a42ec8e3417c48ae91ecb283e5e95a457ae7f1277919b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 342.3415775357067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x128ef19af71ea5025a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:34:11.000Z'}}, {'blockNum': '0x6b1abb', 'uniqueId': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b:log:18', 'hash': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 221.78426949645788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c05e0020b29dffc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:37:30.000Z'}}, {'blockNum': '0x6b1abb', 'uniqueId': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b:log:22', 'hash': '0x2c4ff5d0012abe8575fdd6f056489bf2dca84e191271e0b47c41d46596d2f87b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 221.78426949645788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c05e0020b29dffc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:37:30.000Z'}}, {'blockNum': '0x6b1ac4', 'uniqueId': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e:log:80', 'hash': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:39:04.000Z'}}, {'blockNum': '0x6b1ac4', 'uniqueId': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e:log:83', 'hash': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:39:04.000Z'}}, {'blockNum': '0x6b1ac4', 'uniqueId': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e:log:85', 'hash': '0xffdd9faeb603402fa26553931f5d75183ce4f08a3b99b27e0a6e868c4453191e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:39:04.000Z'}}, {'blockNum': '0x6b1acb', 'uniqueId': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1:log:66', 'hash': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 67.09304102874553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a31a5d576b161f79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:42:19.000Z'}}, {'blockNum': '0x6b1acb', 'uniqueId': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1:log:70', 'hash': '0x2a8a38129108e5a1b43477b218f8f17e6fc2a250a0325d756466c6c4c75c87d1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 67.09304102874553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a31a5d576b161f79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:42:19.000Z'}}, {'blockNum': '0x6b1ae4', 'uniqueId': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3:log:77', 'hash': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8.920211247487716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bcaf4de47f30bbc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:48:04.000Z'}}, {'blockNum': '0x6b1ae4', 'uniqueId': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3:log:81', 'hash': '0xcdf6b2a1cf8c9e7bc7a0fa2267edcda3244bee47198a90fc1672ca7a27cf6aa3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 8.920211247487716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bcaf4de47f30bbc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:48:04.000Z'}}, {'blockNum': '0x6b1af5', 'uniqueId': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644:log:19', 'hash': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1601.405645020698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56cff7bd891c001e7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:16.000Z'}}, {'blockNum': '0x6b1af5', 'uniqueId': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644:log:22', 'hash': '0xe3472bfa7a7cd8f675d3de4196bb26d9998b0c9d2008a5116f140f76bb321644', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'value': 1601.405645020698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56cff7bd891c001e7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:16.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15:log:48', 'hash': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15', 'from': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.98192165760648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092918627168858f3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15:log:52', 'hash': '0x75eaea4b9a0575946681e88a7370782aa214073a8880d0990829c3e64936ce15', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.98192165760648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092918627168858f3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349:log:68', 'hash': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349', 'from': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ca569989d8640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1af6', 'uniqueId': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349:log:71', 'hash': '0x19386f0d473698146bbe1982afca4fa2b361bb059fc8e8e5d24c8b31e0dac349', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ca569989d8640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:53:22.000Z'}}, {'blockNum': '0x6b1afd', 'uniqueId': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036:log:76', 'hash': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 248.68423769321905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7b2fe498af20eb10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:55:48.000Z'}}, {'blockNum': '0x6b1afd', 'uniqueId': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036:log:80', 'hash': '0xec31ad387a5a9fd7efabc12d051e70ebec241b7538806789d5e393e3394e2036', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 248.68423769321905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7b2fe498af20eb10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:55:48.000Z'}}, {'blockNum': '0x6b1b05', 'uniqueId': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c:log:10', 'hash': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 222.17150986252054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0b3fc31ad7bb544b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:57:23.000Z'}}, {'blockNum': '0x6b1b05', 'uniqueId': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c:log:14', 'hash': '0x527ca0ceb7366e8c58a44125b2e969cad4a80fc8b119ace36ea181e76a58150c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 222.17150986252054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0b3fc31ad7bb544b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:57:23.000Z'}}, {'blockNum': '0x6b1b07', 'uniqueId': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c:log:94', 'hash': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.99302491172955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183b463be2fcf94a0d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:12.000Z'}}, {'blockNum': '0x6b1b07', 'uniqueId': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c:log:98', 'hash': '0x2989a38ed34063e76f9ed87dcf973a5be7c631e7b7c38a607724511fe1e7fe8c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 446.99302491172955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183b463be2fcf94a0d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:12.000Z'}}, {'blockNum': '0x6b1b08', 'uniqueId': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07:log:44', 'hash': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07', 'from': '0x32131848edc60e032abf0369241d34ec969ebf90', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 275.23852267035886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebb3aa17ae0a0e21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:28.000Z'}}, {'blockNum': '0x6b1b08', 'uniqueId': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07:log:48', 'hash': '0xd51dfe54de8cd775b079c472aa79a4023b7e39f2b14e5f38aa569ca1c5c61d07', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 275.23852267035886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eebb3aa17ae0a0e21', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:28.000Z'}}, {'blockNum': '0x6b1b09', 'uniqueId': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a:log:100', 'hash': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a', 'from': '0x51907923c3280c24b6b69b0d217ea34cabde684d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.3185943606039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831ea2cdfab752a36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:46.000Z'}}, {'blockNum': '0x6b1b09', 'uniqueId': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a:log:102', 'hash': '0x0cfce216144194aa4adbf5b2692fa1f73f60866d0b8e6b4b0573721bcd63167a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 446.3185943606039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831ea2cdfab752a36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T08:58:46.000Z'}}, {'blockNum': '0x6b1b14', 'uniqueId': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb:log:32', 'hash': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 167.6132451928812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091619de732c224a4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:01:23.000Z'}}, {'blockNum': '0x6b1b14', 'uniqueId': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb:log:36', 'hash': '0xbfe582fd5e6bef96cc15fc994c9d7985c28804c6ab83464c09a8d6ad8981eedb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 167.6132451928812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091619de732c224a4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:01:23.000Z'}}, {'blockNum': '0x6b1b1e', 'uniqueId': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7:log:24', 'hash': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.47909367937288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d653ba88d43ab74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:04:03.000Z'}}, {'blockNum': '0x6b1b1e', 'uniqueId': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7:log:28', 'hash': '0x7ba37d416ab5ec25e6113b2fd8ae0ac159f380f9369fb1ffaa1afa426d1192c7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 223.47909367937288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d653ba88d43ab74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:04:03.000Z'}}, {'blockNum': '0x6b1b2b', 'uniqueId': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c:log:81', 'hash': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.6204116529042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3b1cb90298c24aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:33.000Z'}}, {'blockNum': '0x6b1b2b', 'uniqueId': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c:log:84', 'hash': '0xc7e4abf885382795fc0a854416415e4be8ec8f05d2eeb654b92d179e651aa23c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 225.6204116529042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3b1cb90298c24aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:33.000Z'}}, {'blockNum': '0x6b1b2c', 'uniqueId': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42:log:46', 'hash': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 105.96656991339044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05be94e1e6ba3b9ceb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:54.000Z'}}, {'blockNum': '0x6b1b2c', 'uniqueId': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42:log:48', 'hash': '0x47e3df8ad1d26d8e4c5775b8d98555bcd6ba48b53f4a09b2723c1ab9b2823e42', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 105.96656991339044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05be94e1e6ba3b9ceb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:54.000Z'}}, {'blockNum': '0x6b1b2d', 'uniqueId': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5:log:95', 'hash': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 111.75337734334823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ee3c099587562e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:56.000Z'}}, {'blockNum': '0x6b1b2d', 'uniqueId': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5:log:99', 'hash': '0x748d67b4f7e7dd6866fcad8713e12b6bba7ae6968bc8ded158ef121017b838d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0f1c029c5d7f626f6820bfe0f6a7b2ac48746ddf', 'value': 111.75337734334823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ee3c099587562e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:06:56.000Z'}}, {'blockNum': '0x6b1b2f', 'uniqueId': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505:log:24', 'hash': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505', 'from': '0xdc59242010e2d29617bfeec57e62c7c00a5acb52', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 401.1995052078203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15bfc2f857269c1ad3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:07:53.000Z'}}, {'blockNum': '0x6b1b2f', 'uniqueId': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505:log:28', 'hash': '0x223dc4532bac3bd772f56ceaf2e1e78debeaf911430d8b2529495fd49de4c505', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 401.1995052078203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15bfc2f857269c1ad3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:07:53.000Z'}}, {'blockNum': '0x6b1b31', 'uniqueId': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9:log:59', 'hash': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.84762911696714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1234d27748edf67d1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:12.000Z'}}, {'blockNum': '0x6b1b31', 'uniqueId': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9:log:63', 'hash': '0xe881879b3f2ea8c205d7a0ee2707d97e5c7d5c8748b2e64c4899e56507d92fb9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 335.84762911696714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1234d27748edf67d1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:12.000Z'}}, {'blockNum': '0x6b1b33', 'uniqueId': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3:log:69', 'hash': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3', 'from': '0x51907923c3280c24b6b69b0d217ea34cabde684d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.3165626074732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831e2f50147d4f22f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:45.000Z'}}, {'blockNum': '0x6b1b33', 'uniqueId': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3:log:71', 'hash': '0x2457b9225d322a839fcc278a22dc763d835cd0eb09adc1fdc325b1e29e61e6c3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 446.3165626074732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1831e2f50147d4f22f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:08:45.000Z'}}, {'blockNum': '0x6b1b3e', 'uniqueId': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250:log:44', 'hash': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.00404727104312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b76c78069bd1ac76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:11:32.000Z'}}, {'blockNum': '0x6b1b3e', 'uniqueId': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250:log:48', 'hash': '0x32b6345aa95a6db10c5c34d2f360382c17fa28a11dbd81e3342cf9d48b079250', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.00404727104312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b76c78069bd1ac76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:11:32.000Z'}}, {'blockNum': '0x6b1b53', 'uniqueId': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2:log:117', 'hash': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.67122435559176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2df088313723019c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:02.000Z'}}, {'blockNum': '0x6b1b53', 'uniqueId': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2:log:121', 'hash': '0x063f5fb862a71fdb530ca7bc91a45fc048bd45d340b7da3111603164a0f4ffe2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.67122435559176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2df088313723019c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:02.000Z'}}, {'blockNum': '0x6b1b54', 'uniqueId': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783:log:71', 'hash': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 256.8596739902329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deca4e097de7a13c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:39.000Z'}}, {'blockNum': '0x6b1b54', 'uniqueId': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783:log:75', 'hash': '0x79cab0ae976680eb1fc560f6b8ffa2a2d4d6c3a2712df5e1b33dd06c3813d783', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 256.8596739902329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deca4e097de7a13c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:17:39.000Z'}}, {'blockNum': '0x6b1b5d', 'uniqueId': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8:log:67', 'hash': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.49182811517588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d92798f6fb7c733', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:19:54.000Z'}}, {'blockNum': '0x6b1b5d', 'uniqueId': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8:log:71', 'hash': '0x42647406a3888d13feceb0f0024ca446f3af96fea8fe8cd2671dd10f6e005ff8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 223.49182811517588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d92798f6fb7c733', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:19:54.000Z'}}, {'blockNum': '0x6b1b78', 'uniqueId': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e:log:64', 'hash': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.5958810778617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0923bce494bff285f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:27:50.000Z'}}, {'blockNum': '0x6b1b78', 'uniqueId': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e:log:68', 'hash': '0xd45aaf6012d45406abc13f473ea9f53895968e69a2090a98eaf3c2737615fc6e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.5958810778617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0923bce494bff285f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:27:50.000Z'}}, {'blockNum': '0x6b1b7f', 'uniqueId': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2:log:68', 'hash': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3.3527486788014795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e875b28e51f581b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:29:18.000Z'}}, {'blockNum': '0x6b1b7f', 'uniqueId': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2:log:71', 'hash': '0x3ae9b64ccf5cd0b828b6619b7ebaa2afdca44e1938239c7c7afe78b12df5e9c2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x007eb60fa5eb50a300294fc5164dcc75b88f8e5c', 'value': 3.3527486788014795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e875b28e51f581b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:29:18.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d:log:22', 'hash': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 117.24182161003773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0e9f949e03f26f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d:log:26', 'hash': '0x822992af1c1d864149bc2cb55e5aa048ac11f0c6e00d24308981c050a755097d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4f8d76340ae90d4fe17d6c34427aa22da86e784f', 'value': 117.24182161003773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0e9f949e03f26f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805:log:30', 'hash': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805', 'from': '0xc7151af2e9d1a702a61fcb655e2334bfee5b5faf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 155.6893464381893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08709fabb541003056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b87', 'uniqueId': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805:log:34', 'hash': '0x6088ef4b5f080ead5da2893ebc64024f6da4564da4a5c24eb607826f2f24a805', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 155.6893464381893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08709fabb541003056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:31:33.000Z'}}, {'blockNum': '0x6b1b89', 'uniqueId': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481:log:36', 'hash': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.41666638569635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c462996788b8e9c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:47.000Z'}}, {'blockNum': '0x6b1b89', 'uniqueId': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481:log:40', 'hash': '0x74c13ddfc9aeaa931db7fbb1dd1889d21b4365766d77a88e7808aa3feffd1481', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.41666638569635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c462996788b8e9c5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:47.000Z'}}, {'blockNum': '0x6b1b8a', 'uniqueId': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804:log:28', 'hash': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 217.42098728673884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc95283fdd4c9f442', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:52.000Z'}}, {'blockNum': '0x6b1b8a', 'uniqueId': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804:log:32', 'hash': '0x600a61cf79314672c652f31be2f3edd475eade734c8b28ffeaf6d714243a6804', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 217.42098728673884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc95283fdd4c9f442', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:32:52.000Z'}}, {'blockNum': '0x6b1b91', 'uniqueId': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e:log:57', 'hash': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e', 'from': '0x4f8d76340ae90d4fe17d6c34427aa22da86e784f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 117.24194954458285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0f13efb321b40a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:35:43.000Z'}}, {'blockNum': '0x6b1b91', 'uniqueId': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e:log:60', 'hash': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 117.24194954458285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0f13efb321b40a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:35:43.000Z'}}, {'blockNum': '0x6b1b91', 'uniqueId': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e:log:62', 'hash': '0x01e3fa6634ac2fcd35636d39a784feda6898a1c9a1ecf44617b842c6f9b9834e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'value': 117.24194954458285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065b0f13efb321b40a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:35:43.000Z'}}, {'blockNum': '0x6b1b9c', 'uniqueId': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126:log:73', 'hash': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.53062646350466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2bfd0727811df078', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:37:18.000Z'}}, {'blockNum': '0x6b1b9c', 'uniqueId': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126:log:77', 'hash': '0x69f88fe89cfcfd3dc1ceed7c68b34b9e6223db52a2bbbc11d2aa8cb63e33b126', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.53062646350466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2bfd0727811df078', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:37:18.000Z'}}, {'blockNum': '0x6b1bb3', 'uniqueId': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a:log:41', 'hash': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:17.000Z'}}, {'blockNum': '0x6b1bb3', 'uniqueId': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a:log:44', 'hash': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:17.000Z'}}, {'blockNum': '0x6b1bb3', 'uniqueId': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a:log:46', 'hash': '0x2f454483c268f835bf649268f943a83c7c5ae1b1eca03360b973f4ddfc01871a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:17.000Z'}}, {'blockNum': '0x6b1bb4', 'uniqueId': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f:log:98', 'hash': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 111.76854804039105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060f19a64480b0df33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:40.000Z'}}, {'blockNum': '0x6b1bb4', 'uniqueId': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f:log:102', 'hash': '0x8253f694c660f5f0053f8b1e67d98549ba00024abf2d0211005a1f397892e29f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 111.76854804039105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060f19a64480b0df33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:42:40.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544:log:76', 'hash': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 439.98170659938995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d9f9070776c771c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544:log:80', 'hash': '0x745957c16bd4b3faf032c515f3acc728c8d60387979595a55b9897ac2cc4b544', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 439.98170659938995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d9f9070776c771c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5:log:93', 'hash': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 434.6972478776593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1790a2dbd1ebcfa6a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bb9', 'uniqueId': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5:log:97', 'hash': '0x1f0ad11f41dbf2b6861b2b0fd5fa497ae3411b98d9bac15e80e7602dbb50b3b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 434.6972478776593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1790a2dbd1ebcfa6a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:45:20.000Z'}}, {'blockNum': '0x6b1bd7', 'uniqueId': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7:log:56', 'hash': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.2615505962503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122cb04bf9b8264d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:01.000Z'}}, {'blockNum': '0x6b1bd7', 'uniqueId': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7:log:60', 'hash': '0xbac2b081a1ca65bb22025916e20d57eed00358610b06f7c16614c36a9ac949b7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'value': 335.2615505962503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122cb04bf9b8264d58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:01.000Z'}}, {'blockNum': '0x6b1bdb', 'uniqueId': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca:log:87', 'hash': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.35492907676567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c298cd34fdc933f8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:49.000Z'}}, {'blockNum': '0x6b1bdb', 'uniqueId': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca:log:91', 'hash': '0x77dcc66e74c1acb7594ffd14262f5c2caccdfab0633d10d9b88d7d22ac6977ca', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.35492907676567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c298cd34fdc933f8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:53:49.000Z'}}, {'blockNum': '0x6b1be9', 'uniqueId': '0xffc8729cdd60d363a444db393277ec5b262815d0fcddcc4ed3ffa9047bec328a:log:11', 'hash': '0xffc8729cdd60d363a444db393277ec5b262815d0fcddcc4ed3ffa9047bec328a', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0xfca5d6de2e70ae53907076afc6a3326449a377a6', 'value': 23.935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014c2a33afdaf98000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T09:57:55.000Z'}}, {'blockNum': '0x6b1bf9', 'uniqueId': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312:log:12', 'hash': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.9095765579387036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2860e476bebd7d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:01:50.000Z'}}, {'blockNum': '0x6b1bf9', 'uniqueId': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312:log:17', 'hash': '0xbc112a217b3f176a2927b8e784ea3ffc7ae146b3f0311188de7e1701b9677312', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 2.9095765579387036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2860e476bebd7d30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:01:50.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30:log:74', 'hash': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1560.4459900187533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x549789d0532a873f88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30:log:78', 'hash': '0xbd891b9fc283eccd2afca9171050fb29833d269f91c0fed9bcf4c73e0c4f3b30', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 1560.4459900187533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x549789d0532a873f88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa:log:101', 'hash': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 789.4186567622687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2acb6275ce550ab527', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c00', 'uniqueId': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa:log:103', 'hash': '0x9df94e9af83a21584053da8dcb4d4c33c0dc94ad306b1f2898f370f08dafe3aa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 789.4186567622687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2acb6275ce550ab527', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:03:39.000Z'}}, {'blockNum': '0x6b1c0e', 'uniqueId': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f:log:36', 'hash': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 228.6928447434094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c65c032a0a47a401a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:29.000Z'}}, {'blockNum': '0x6b1c0e', 'uniqueId': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f:log:40', 'hash': '0x315c537fde39b9b376dff7d28ffceaef862bbe2153921152e8c9a72bd332424f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 228.6928447434094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c65c032a0a47a401a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:29.000Z'}}, {'blockNum': '0x6b1c10', 'uniqueId': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966:log:67', 'hash': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 352.57184774230126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131cead38412f998de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:52.000Z'}}, {'blockNum': '0x6b1c10', 'uniqueId': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966:log:71', 'hash': '0xd1ee2cb9e8df23baa88b5a974b703c5f3c3ca2dee2ed362d04b81d3600ded966', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 352.57184774230126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131cead38412f998de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:08:52.000Z'}}, {'blockNum': '0x6b1c14', 'uniqueId': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e:log:28', 'hash': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 270.7984484676639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eae155a2132074af3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:10:05.000Z'}}, {'blockNum': '0x6b1c14', 'uniqueId': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e:log:32', 'hash': '0x73969f410eeeea01f5b1892c6ee424316f36c00c61d8149d8a36222806aa2f6e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 270.7984484676639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eae155a2132074af3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:10:05.000Z'}}, {'blockNum': '0x6b1c1c', 'uniqueId': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8:log:37', 'hash': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.77096400531832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09262ae993713c27eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:12:13.000Z'}}, {'blockNum': '0x6b1c1c', 'uniqueId': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8:log:39', 'hash': '0x7f212ff53a4c910a401ab82db6b28de9a63578c485a086ca0272171d28fa4ea8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.77096400531832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09262ae993713c27eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:12:13.000Z'}}, {'blockNum': '0x6b1c22', 'uniqueId': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c:log:16', 'hash': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 280.94272840757424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3add12fd02818a41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:14:01.000Z'}}, {'blockNum': '0x6b1c22', 'uniqueId': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c:log:20', 'hash': '0x65b4938cc625e96e347060d0a09ddd4366e9e96c411d6ad3f36deeb204ebb11c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 280.94272840757424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3add12fd02818a41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:14:01.000Z'}}, {'blockNum': '0x6b1c2f', 'uniqueId': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445:log:58', 'hash': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 523.0503892613112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c5ac845cb1e3f15f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:11.000Z'}}, {'blockNum': '0x6b1c2f', 'uniqueId': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445:log:62', 'hash': '0xe362af19003efad4dab8f4cd3bee5eeebad33a4996eab4cb22f318414d6b9445', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 523.0503892613112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c5ac845cb1e3f15f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:11.000Z'}}, {'blockNum': '0x6b1c34', 'uniqueId': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5:log:78', 'hash': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 89.4096801813244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8cefe69811fea2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:39.000Z'}}, {'blockNum': '0x6b1c34', 'uniqueId': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5:log:82', 'hash': '0x61ecba881a4cc4ec9ab8453b658a80cb033a068623bf5294551388adc259bcb5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 89.4096801813244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8cefe69811fea2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:18:39.000Z'}}, {'blockNum': '0x6b1c3f', 'uniqueId': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e:log:19', 'hash': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 868.9023685064876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1a715483bcc167db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:25.000Z'}}, {'blockNum': '0x6b1c3f', 'uniqueId': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e:log:24', 'hash': '0xcf45e6475d76b1f2a7c403345b058e490f98ccaf70d71ad99ff33040e4b4670e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 868.9023685064876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1a715483bcc167db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:25.000Z'}}, {'blockNum': '0x6b1c41', 'uniqueId': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620:log:24', 'hash': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 791.4222375995218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ae7309bf6484bd071', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:40.000Z'}}, {'blockNum': '0x6b1c41', 'uniqueId': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620:log:28', 'hash': '0x51f3f93cdfdaaa9d879ca3509cb71623373c72ac1c5daba52c88c91a1a8cc620', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 791.4222375995218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ae7309bf6484bd071', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:21:40.000Z'}}, {'blockNum': '0x6b1c53', 'uniqueId': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349:log:99', 'hash': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.9693095597352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183af1fae651a038f2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:24:48.000Z'}}, {'blockNum': '0x6b1c53', 'uniqueId': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349:log:103', 'hash': '0x110842ffc7d44b00649b9c6b5b34802c3723f7b0870696096e5e4334574c7349', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 446.9693095597352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183af1fae651a038f2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:24:48.000Z'}}, {'blockNum': '0x6b1c5b', 'uniqueId': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610:log:198', 'hash': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 357.04569779254655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135b01226ee235c7af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:28:05.000Z'}}, {'blockNum': '0x6b1c5b', 'uniqueId': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610:log:202', 'hash': '0x5a249ec4cffaf8bcf1112d82130e03ad528324a47bdcd09d5f01c63cb8f88610', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 357.04569779254655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135b01226ee235c7af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:28:05.000Z'}}, {'blockNum': '0x6b1c63', 'uniqueId': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72:log:55', 'hash': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 670.4865755338838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2458ded40ed541d61b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:33.000Z'}}, {'blockNum': '0x6b1c63', 'uniqueId': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72:log:59', 'hash': '0x3c941f3115b51b6ff23d8f494bf2605aaea07c522e7be2b9db76f30905a17c72', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 670.4865755338838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2458ded40ed541d61b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:33.000Z'}}, {'blockNum': '0x6b1c64', 'uniqueId': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae:log:52', 'hash': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:44.000Z'}}, {'blockNum': '0x6b1c64', 'uniqueId': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae:log:55', 'hash': '0x5ef6d5b95ee4001584b4136258a5e2d32fd39d9b86e7c5afa071987df7ad4eae', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9caac20ade4648bc6a4f80ec5d5f7005985245c', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:29:44.000Z'}}, {'blockNum': '0x6b1c6f', 'uniqueId': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd:log:38', 'hash': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 240.33888539835343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d075f3ee65a2c6636', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:32:46.000Z'}}, {'blockNum': '0x6b1c6f', 'uniqueId': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd:log:42', 'hash': '0x268abc7483e3e961be3d97f0557597936c680570bc096f651c900fd136c21fbd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 240.33888539835343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d075f3ee65a2c6636', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:32:46.000Z'}}, {'blockNum': '0x6b1c74', 'uniqueId': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343:log:91', 'hash': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343', 'from': '0xe9caac20ade4648bc6a4f80ec5d5f7005985245c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:34:36.000Z'}}, {'blockNum': '0x6b1c74', 'uniqueId': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343:log:94', 'hash': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:34:36.000Z'}}, {'blockNum': '0x6b1c74', 'uniqueId': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343:log:95', 'hash': '0x481faa33643bdd8d46d28809f2e64733687f79e8581b1ae1f5cc0458b250a343', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 54.37744556331077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f2a37ea2c2479b7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:34:36.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01:log:64', 'hash': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.39050175862937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2a0b347a46c503cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01:log:68', 'hash': '0x8a0e5b5508e79105bae630fd66ba3091c95502d864b516b6c9c7093a02b34b01', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.39050175862937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2a0b347a46c503cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6:log:75', 'hash': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6:log:78', 'hash': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c7e', 'uniqueId': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6:log:79', 'hash': '0xea280db1d418826915602fa9dd8e98ff6be0e004f693e2ebbc947567c1215ac6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:37:02.000Z'}}, {'blockNum': '0x6b1c85', 'uniqueId': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f:log:88', 'hash': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15789.47132300062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0357f2eec0108d01fadf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:39:29.000Z'}}, {'blockNum': '0x6b1c85', 'uniqueId': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f:log:91', 'hash': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 15789.47132300062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0357f2eec0108d01fadf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:39:29.000Z'}}, {'blockNum': '0x6b1c85', 'uniqueId': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f:log:92', 'hash': '0x982b1ac1836bc2b3fa343be7af6cc1e04d48ae59af12a28eeb0bfff603f9344f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15789.47132300062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0357f2eec0108d01fadf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:39:29.000Z'}}, {'blockNum': '0x6b1c88', 'uniqueId': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4:log:47', 'hash': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13.32665678543915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8f1cbbd1ba652b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:40:03.000Z'}}, {'blockNum': '0x6b1c88', 'uniqueId': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4:log:51', 'hash': '0xf37ed1f93a7e6e8415311de956392818a01e0bf8f0b34fc40dee5561eb1f56d4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 13.32665678543915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8f1cbbd1ba652b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:40:03.000Z'}}, {'blockNum': '0x6b1c98', 'uniqueId': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4:log:29', 'hash': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:43:25.000Z'}}, {'blockNum': '0x6b1c98', 'uniqueId': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4:log:32', 'hash': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:43:25.000Z'}}, {'blockNum': '0x6b1c98', 'uniqueId': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4:log:34', 'hash': '0xa8eb0d0bf3db7c4d7e8fbefb343d38654d0c8061ed213ea89d32accfc20b66b4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:43:25.000Z'}}, {'blockNum': '0x6b1ca0', 'uniqueId': '0xa3fb68bcdd5bf7ebc88438725f5ae4c8530f1b3f6839afca7ae3de9fc9c6baf1:log:13', 'hash': '0xa3fb68bcdd5bf7ebc88438725f5ae4c8530f1b3f6839afca7ae3de9fc9c6baf1', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 181.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09d1f61539e6030000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:44:34.000Z'}}, {'blockNum': '0x6b1ca3', 'uniqueId': '0x7ecc0af535d347fa1e12b6484574891c80c1ce1e1e299ecb6e973058c7cf8008:log:34', 'hash': '0x7ecc0af535d347fa1e12b6484574891c80c1ce1e1e299ecb6e973058c7cf8008', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfe12d0559b40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:44:50.000Z'}}, {'blockNum': '0x6b1cb4', 'uniqueId': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd:log:42', 'hash': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.94231237336334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09288baa024366ed57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:48:19.000Z'}}, {'blockNum': '0x6b1cb4', 'uniqueId': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd:log:44', 'hash': '0x1f0a74fca228aa7fdbd5bf48e6298bcd5fbad02e53a043494c96d0cab6a83bbd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.94231237336334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09288baa024366ed57', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:48:19.000Z'}}, {'blockNum': '0x6b1cb8', 'uniqueId': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1:log:21', 'hash': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 109.48348581255333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ef637a4734c28599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:04.000Z'}}, {'blockNum': '0x6b1cb8', 'uniqueId': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1:log:25', 'hash': '0xc546a9dc8e3f86e5a3cb28697f83709e75fedeeaa6a05559a79cb85f3c75cda1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 109.48348581255333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ef637a4734c28599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:04.000Z'}}, {'blockNum': '0x6b1cba', 'uniqueId': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c:log:28', 'hash': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 294.59482965854215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff85314be801dc015', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:14.000Z'}}, {'blockNum': '0x6b1cba', 'uniqueId': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c:log:31', 'hash': '0xf98a22ba3094828378488c2c6d696bdfdab898c292289d46ce766d67bbfaae2c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.59482965854215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff85314be801dc015', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:50:14.000Z'}}, {'blockNum': '0x6b1cd6', 'uniqueId': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f:log:51', 'hash': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 257.16808940459293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0df0ec96c74ea8e329', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:56:08.000Z'}}, {'blockNum': '0x6b1cd6', 'uniqueId': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f:log:53', 'hash': '0x6ab3abb321f6e565647c5c8130991f5cd15dd37c65b506da74a12c6b2e9e4b0f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 257.16808940459293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0df0ec96c74ea8e329', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T10:56:08.000Z'}}, {'blockNum': '0x6b1ce4', 'uniqueId': '0x79dd1e6b4ea30ae6df9209e601036006f1ae619de8e7d5e0e6d6bd47cfe7e76f:log:6', 'hash': '0x79dd1e6b4ea30ae6df9209e601036006f1ae619de8e7d5e0e6d6bd47cfe7e76f', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09cfe12d0559b40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:00:13.000Z'}}, {'blockNum': '0x6b1ce7', 'uniqueId': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b:log:80', 'hash': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.378288179121747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cc2cde6d8d7f332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:01:15.000Z'}}, {'blockNum': '0x6b1ce7', 'uniqueId': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b:log:84', 'hash': '0x63867461e551926ecda77321b3cf277ac4fd408feb66ac0596456f62e7d3a64b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 4.378288179121747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cc2cde6d8d7f332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:01:15.000Z'}}, {'blockNum': '0x6b1cec', 'uniqueId': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105:log:31', 'hash': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 236.6235566809066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd3cfbf1daef24e3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:03:34.000Z'}}, {'blockNum': '0x6b1cec', 'uniqueId': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105:log:35', 'hash': '0x00ce659275471d29c591e95f38b2aeeb8f5c710b8a54e9ff4db07c469cea0105', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 236.6235566809066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd3cfbf1daef24e3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:03:34.000Z'}}, {'blockNum': '0x6b1cf2', 'uniqueId': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796:log:29', 'hash': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.45300440502416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1841a868cc7ac35087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:04:44.000Z'}}, {'blockNum': '0x6b1cf2', 'uniqueId': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796:log:33', 'hash': '0x72f448c669856518f19ff6b42730b9049499e613269798d9001af3120dc23796', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.45300440502416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1841a868cc7ac35087', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:04:44.000Z'}}, {'blockNum': '0x6b1cf9', 'uniqueId': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d:log:66', 'hash': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.11974771219957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c26494b1b5fd1f818', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:06:04.000Z'}}, {'blockNum': '0x6b1cf9', 'uniqueId': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d:log:68', 'hash': '0x85f3d7e5b28310a5ab49c39be419942753a142969e5e942fe7be6acba79c090d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.11974771219957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c26494b1b5fd1f818', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:06:04.000Z'}}, {'blockNum': '0x6b1d07', 'uniqueId': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e:log:46', 'hash': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.50133163994656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1842541a29b14a07fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:32.000Z'}}, {'blockNum': '0x6b1d07', 'uniqueId': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e:log:50', 'hash': '0x5090f78b80af06a68fd3177b776606da52639da88a4f6c209fe3a731991a865e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.50133163994656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1842541a29b14a07fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:32.000Z'}}, {'blockNum': '0x6b1d09', 'uniqueId': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d:log:40', 'hash': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1500.0804021890406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5151cc2a063addc8df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:48.000Z'}}, {'blockNum': '0x6b1d09', 'uniqueId': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d:log:43', 'hash': '0x05b06ae429ea114b57af342c3e9a478a89a2f8ccb285d7769adfa414c7ac568d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xecc996953e976a305ee585a9c7bbbcc85d1c467b', 'value': 1500.0804021890406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5151cc2a063addc8df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:10:48.000Z'}}, {'blockNum': '0x6b1d0d', 'uniqueId': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79:log:24', 'hash': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.05168257091935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091c2f82ec1a5a4768', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:11:15.000Z'}}, {'blockNum': '0x6b1d0d', 'uniqueId': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79:log:28', 'hash': '0x7ba255e62df0d4cc9cf0434d9a8ae9e56a2542ccaba0ec39ffd05ac4021e9d79', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 168.05168257091935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091c2f82ec1a5a4768', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:11:15.000Z'}}, {'blockNum': '0x6b1d1b', 'uniqueId': '0x3f6ac8ce589f5fa84f92bccf8d7a055dd099e3ccd4852ebb9abcfe057845635e:log:17', 'hash': '0x3f6ac8ce589f5fa84f92bccf8d7a055dd099e3ccd4852ebb9abcfe057845635e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 904.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3109d8cb394a5c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:13:59.000Z'}}, {'blockNum': '0x6b1d1d', 'uniqueId': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26:log:0', 'hash': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310f65e11ac0840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:05.000Z'}}, {'blockNum': '0x6b1d1d', 'uniqueId': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26:log:3', 'hash': '0x124e2fcdaddc6bb21fdb62b1b8b8367c18db37415603ef800527dc9d6f1bdf26', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310f65e11ac0840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:05.000Z'}}, {'blockNum': '0x6b1d20', 'uniqueId': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e:log:20', 'hash': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 360.79199813183004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138efeaabe3320a16b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:56.000Z'}}, {'blockNum': '0x6b1d20', 'uniqueId': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e:log:24', 'hash': '0xa25a9679f80edf30946c40ef4f42d37a130555055068bf925a592a430f2d513e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 360.79199813183004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x138efeaabe3320a16b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:14:56.000Z'}}, {'blockNum': '0x6b1d21', 'uniqueId': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487:log:63', 'hash': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.57678080480375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bf5f3a23ea934e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:15:09.000Z'}}, {'blockNum': '0x6b1d21', 'uniqueId': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487:log:67', 'hash': '0x2dba2cd9b070949c4087c051bc560ba6d7cc56a041240a7fa3ba3adc45e16487', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.57678080480375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bf5f3a23ea934e72', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:15:09.000Z'}}, {'blockNum': '0x6b1d26', 'uniqueId': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295:log:8', 'hash': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 269.1186699238008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e96c59471a1bea2f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:08.000Z'}}, {'blockNum': '0x6b1d26', 'uniqueId': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295:log:10', 'hash': '0xd3529ea23bdd40b0e108da9b7364adf408aa6eeb07eccea34b0d29001cc79295', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 269.1186699238008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e96c59471a1bea2f6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:08.000Z'}}, {'blockNum': '0x6b1d27', 'uniqueId': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e:log:77', 'hash': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1153.9710075956723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e8e90956867a316e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:57.000Z'}}, {'blockNum': '0x6b1d27', 'uniqueId': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e:log:81', 'hash': '0x02a80a06514a9a958bd5e63ee6e20e35de098f8d9458ddc90f0e014f0aa8bb1e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 1153.9710075956723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e8e90956867a316e7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:16:57.000Z'}}, {'blockNum': '0x6b1d29', 'uniqueId': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8:log:49', 'hash': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.4244108927759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184142d3269e52e241', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:17:16.000Z'}}, {'blockNum': '0x6b1d29', 'uniqueId': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8:log:53', 'hash': '0xaea0c60000fd55abfbb8e6fa0780ff1e84439cb89ecf8b7a2ffcd0955f36c1d8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.4244108927759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184142d3269e52e241', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:17:16.000Z'}}, {'blockNum': '0x6b1d2e', 'uniqueId': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59:log:75', 'hash': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 358.0535022402302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1368fd933d1d73fa27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:18:11.000Z'}}, {'blockNum': '0x6b1d2e', 'uniqueId': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59:log:79', 'hash': '0xddd46dd0d0d9ce77617ba3251b43bf3c87ed7eeded6d0d711a80a019c8cb7b59', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 358.0535022402302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1368fd933d1d73fa27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:18:11.000Z'}}, {'blockNum': '0x6b1d3b', 'uniqueId': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2:log:87', 'hash': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.07516618413197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c25aae8717fced48d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:22:32.000Z'}}, {'blockNum': '0x6b1d3b', 'uniqueId': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2:log:91', 'hash': '0xd243b85e4640ee772ea0d024e1752cf53d87116a6d4860de574d1536f54803f2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.07516618413197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c25aae8717fced48d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:22:32.000Z'}}, {'blockNum': '0x6b1d44', 'uniqueId': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6:log:22', 'hash': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 256.74463754153913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deb0c2f8d79dc91e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:24:27.000Z'}}, {'blockNum': '0x6b1d44', 'uniqueId': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6:log:26', 'hash': '0xbc21d1195c2d7b5d1c7de0a6be54ef33756531c7154a58d22c865474af45ffd6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 256.74463754153913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0deb0c2f8d79dc91e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:24:27.000Z'}}, {'blockNum': '0x6b1d49', 'uniqueId': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4:log:69', 'hash': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 262.5082988174276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e3b08d2f224ddc455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:26.000Z'}}, {'blockNum': '0x6b1d49', 'uniqueId': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4:log:73', 'hash': '0x25e3188bbe1acdb75dc66766540fd335c8229d4c394dc0c7d0766fde66b393d4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 262.5082988174276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e3b08d2f224ddc455', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:26.000Z'}}, {'blockNum': '0x6b1d4e', 'uniqueId': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b:log:69', 'hash': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 268.46817773309783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8dbe913e2dbaff2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:59.000Z'}}, {'blockNum': '0x6b1d4e', 'uniqueId': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b:log:73', 'hash': '0xe0bb78aa940b4c607cb0553b01b37dc07d750040c109da83f9580e92c2c7952b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 268.46817773309783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8dbe913e2dbaff2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:25:59.000Z'}}, {'blockNum': '0x6b1d4f', 'uniqueId': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da:log:18', 'hash': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 39.795822886645155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0228472a116ed845b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:26:46.000Z'}}, {'blockNum': '0x6b1d4f', 'uniqueId': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da:log:22', 'hash': '0x812813b1de0dd73742756e846d94bdc99deae560ff56def6e9d4c6b42f5825da', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 39.795822886645155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0228472a116ed845b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:26:46.000Z'}}, {'blockNum': '0x6b1d5e', 'uniqueId': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16:log:49', 'hash': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.04694291747526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2546a388285595ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:33:25.000Z'}}, {'blockNum': '0x6b1d5e', 'uniqueId': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16:log:53', 'hash': '0x34f42428b56de09e91f68d9835876191fa83050b58d7045cdfda3148b60b0d16', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 224.04694291747526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2546a388285595ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:33:25.000Z'}}, {'blockNum': '0x6b1d60', 'uniqueId': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18:log:60', 'hash': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.0409303201547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2531471b40dcfc34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:34:03.000Z'}}, {'blockNum': '0x6b1d60', 'uniqueId': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18:log:64', 'hash': '0x73b7589a9fedeb974728cc2a959a2779188f7504761ce8b861d19f0a2fcf1d18', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.0409303201547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2531471b40dcfc34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:34:03.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6:log:65', 'hash': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 279.83229982895335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b740a14515e4805', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6:log:69', 'hash': '0x3e6dea7c1080c9c93c8a4271cfe7247e1259a0b4b2866abf12dc94761f0117a6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 279.83229982895335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b740a14515e4805', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44:log:100', 'hash': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 265.59581595735835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e65e1e36d205ec8ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d63', 'uniqueId': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44:log:102', 'hash': '0xef8cbe62cf30c94224ca88cf81e31f4ff9b7a1b833876903128c4c98cb036b44', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 265.59581595735835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e65e1e36d205ec8ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:36:23.000Z'}}, {'blockNum': '0x6b1d74', 'uniqueId': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c:log:76', 'hash': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.04035171882862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c252f38df225b5f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:15.000Z'}}, {'blockNum': '0x6b1d74', 'uniqueId': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c:log:80', 'hash': '0xd759c5df8ac295bdd5c224068bd9dd5f1003698ebe8ab884c9088880bded5c4c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.04035171882862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c252f38df225b5f96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:15.000Z'}}, {'blockNum': '0x6b1d78', 'uniqueId': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a:log:150', 'hash': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 286.40287436291106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f86a368ce3c24a29d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:50.000Z'}}, {'blockNum': '0x6b1d78', 'uniqueId': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a:log:154', 'hash': '0xc0d4e9e2cecd0e84247f8942a666a25d4ebb4b8985c24410883eeccccbecec5a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 286.40287436291106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f86a368ce3c24a29d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:41:50.000Z'}}, {'blockNum': '0x6b1d8c', 'uniqueId': '0x6caad61b911f8226071f925a5e58c0d71cddd4ced28da94794de4ce60fa5b7ad:log:2', 'hash': '0x6caad61b911f8226071f925a5e58c0d71cddd4ced28da94794de4ce60fa5b7ad', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x161e9e50cca7e4b22a8b4f5721d6728f12a50502', 'value': 4.34300169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c457106df5f0400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:45:40.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x797abf04535f7b281bdae02d821922a972c92c33d6e433c50f81bbde6edbc385:log:42', 'hash': '0x797abf04535f7b281bdae02d821922a972c92c33d6e433c50f81bbde6edbc385', 'from': '0x161e9e50cca7e4b22a8b4f5721d6728f12a50502', 'to': '0x521db06bf657ed1d6c98553a70319a8ddbac75a3', 'value': 4.34300169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c457106df5f0400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c:log:84', 'hash': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c:log:87', 'hash': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1d8f', 'uniqueId': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c:log:89', 'hash': '0x788d6420923a0ab91d20826718113235f07de313f89a50d2b479fda7f35fca4c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:46:07.000Z'}}, {'blockNum': '0x6b1da1', 'uniqueId': '0xb9cdaa5dc8806aa14debf250a19922f55c1e6d9fd46f305c89690aeb8651db1e:log:14', 'hash': '0xb9cdaa5dc8806aa14debf250a19922f55c1e6d9fd46f305c89690aeb8651db1e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc7476fe5ce21078cf7a9b8aaadb0cdc26aacd9fe', 'value': 147.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07fd72781824d30000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:01.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565:log:85', 'hash': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 104.73700169976951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ad849420223ed5e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565:log:89', 'hash': '0x882a0f1644fa36bfa1b1a451d834c7f936b8d1757942736b337a7a6da6f4a565', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 104.73700169976951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05ad849420223ed5e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4:log:102', 'hash': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.480772382431511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2ee6bdde360448', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1da7', 'uniqueId': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4:log:105', 'hash': '0xced04e214b9a8d03f3c4cc456e8cd4b24197269591cf030e6c633ebe3c8dc0b4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1310c4ca76a8b4ff40fd9ec5de46932184b02ac1', 'value': 4.480772382431511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3e2ee6bdde360448', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:52:42.000Z'}}, {'blockNum': '0x6b1dac', 'uniqueId': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4:log:32', 'hash': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 233.67942041485418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0caaf412c7da8c419d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:54:36.000Z'}}, {'blockNum': '0x6b1dac', 'uniqueId': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4:log:36', 'hash': '0xc4394fb7a44c07b11a0d54690e3ae42cd5fa06a60037380e2e89d2527a994eb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 233.67942041485418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0caaf412c7da8c419d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:54:36.000Z'}}, {'blockNum': '0x6b1db2', 'uniqueId': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8:log:85', 'hash': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 329.7552129560593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e045db10c7344cd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:56:34.000Z'}}, {'blockNum': '0x6b1db2', 'uniqueId': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8:log:89', 'hash': '0x25bff6bd568c200583ef57a5ccb20385489ab87a83cfdb453ded95147e38c3f8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 329.7552129560593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11e045db10c7344cd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:56:34.000Z'}}, {'blockNum': '0x6b1db5', 'uniqueId': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522:log:7', 'hash': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.02608830443631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0612ac9dc5f277f34f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:21.000Z'}}, {'blockNum': '0x6b1db5', 'uniqueId': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522:log:11', 'hash': '0x9de2412fed163aaacc54e1b47715aa01213d3893786969cfdc8bc8166f927522', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 112.02608830443631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0612ac9dc5f277f34f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:21.000Z'}}, {'blockNum': '0x6b1db7', 'uniqueId': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08:log:49', 'hash': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 336.06924561514336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1237e5ce50d81f9ada', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:45.000Z'}}, {'blockNum': '0x6b1db7', 'uniqueId': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08:log:53', 'hash': '0x09e55eb8f642e2f35652995c3920468294de7cf068e0892959271d3f3684bf08', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 336.06924561514336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1237e5ce50d81f9ada', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T11:58:45.000Z'}}, {'blockNum': '0x6b1dc3', 'uniqueId': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab:log:48', 'hash': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.2404162420234157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f178eb3aed23f7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:00:40.000Z'}}, {'blockNum': '0x6b1dc3', 'uniqueId': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab:log:52', 'hash': '0x01a9e1893c2fca20ef4b07586242429385ffe108d5977ba5ab9ea51cc29c4aab', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2.2404162420234157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f178eb3aed23f7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:00:40.000Z'}}, {'blockNum': '0x6b1ddd', 'uniqueId': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912:log:42', 'hash': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912', 'from': '0x6b431a7a99780819473722161ee9145e5649c5e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 240.06396987456705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d038e8cafffa51d03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:54.000Z'}}, {'blockNum': '0x6b1ddd', 'uniqueId': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912:log:44', 'hash': '0xb00b0425b22c8bbe8044720e9fcd813e773d8f68b370c9c96ecec59c2a02c912', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 240.06396987456705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d038e8cafffa51d03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:54.000Z'}}, {'blockNum': '0x6b1dde', 'uniqueId': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383:log:15', 'hash': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.04503033202212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c253fd80ba7cc08b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:57.000Z'}}, {'blockNum': '0x6b1dde', 'uniqueId': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383:log:19', 'hash': '0xea9b860cfa8ab47dbdae3fc2f54494439e2873f943a671e35b5e5619fb071383', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 224.04503033202212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c253fd80ba7cc08b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:06:57.000Z'}}, {'blockNum': '0x6b1dee', 'uniqueId': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15:log:97', 'hash': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 45.05472945688444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0271428dbb18ecceac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:10:51.000Z'}}, {'blockNum': '0x6b1dee', 'uniqueId': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15:log:101', 'hash': '0xe480b9d0d831e0433cb9861fda15376331c3f94485d64e6fa2b2e1f897ee9d15', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 45.05472945688444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0271428dbb18ecceac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:10:51.000Z'}}, {'blockNum': '0x6b1e0b', 'uniqueId': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4:log:53', 'hash': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 86.70091141411882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b3378391ed299870', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:19:24.000Z'}}, {'blockNum': '0x6b1e0b', 'uniqueId': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4:log:57', 'hash': '0x901aab46643815390222caf1b488b543cc63a71da4d8d26fb3bce499e5116cc4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 86.70091141411882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b3378391ed299870', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:19:24.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26:log:12', 'hash': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.016367090832125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bfb932f99d62d43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26:log:16', 'hash': '0x68af280a29ebaf8122f83ec06524feb4fa94acc6dc43283794ccacc4cb389d26', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 2.016367090832125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bfb932f99d62d43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40:log:30', 'hash': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.7924372527662195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aff4d7b9deabcf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40:log:34', 'hash': '0x5baab0adc0fe52405ec944f270c0304c48d657204ceda8a5f59d5c29c1d0be40', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 0.7924372527662195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aff4d7b9deabcf2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667:log:46', 'hash': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 527.027075869002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c91f84d3198b61dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e10', 'uniqueId': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667:log:50', 'hash': '0x56b3d8b1bfe94feb48a117cb5f1a850a8e440d77b4c6bd9b804c64c3d5202667', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0f1c029c5d7f626f6820bfe0f6a7b2ac48746ddf', 'value': 527.027075869002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c91f84d3198b61dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:21:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242:log:50', 'hash': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242:log:53', 'hash': '0x8950cb9573ea0c7148f5cfe54d38cd5067909cb998b8a34c92c00490ebc20242', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92578f6e362c4d28cfae1992af4d00b16beb22d4', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8:log:60', 'hash': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.00555805468403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24b39c37ea9595b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e1c', 'uniqueId': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8:log:64', 'hash': '0xfb52921e1f76844b2083f91a818c6c3bcd02725d2b295f9d44525a09316d20a8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 224.00555805468403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24b39c37ea9595b4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:25:34.000Z'}}, {'blockNum': '0x6b1e28', 'uniqueId': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc:log:20', 'hash': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 357.9245143263665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136733516a1b492e10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:28:28.000Z'}}, {'blockNum': '0x6b1e28', 'uniqueId': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc:log:24', 'hash': '0xd4cffceaeda247e7adfbb7fba646774793f9b3bdbbd9ccd7f98a2ccdeb596dbc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 357.9245143263665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136733516a1b492e10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:28:28.000Z'}}, {'blockNum': '0x6b1e2f', 'uniqueId': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3:log:74', 'hash': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 148.17169942117258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084b9f9384f1bbfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:31:09.000Z'}}, {'blockNum': '0x6b1e2f', 'uniqueId': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3:log:79', 'hash': '0xeac2148fdea37f3918f85c25d65a3dda6d64c323f3a5d4825d2d0496530bedd3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 148.17169942117258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084b9f9384f1bbfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:31:09.000Z'}}, {'blockNum': '0x6b1e35', 'uniqueId': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d:log:34', 'hash': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d', 'from': '0xe65c7e27c1c086f26ce0daa986c3d9c24ef3c2d8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 206.86882730998158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b36e1b666811463d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:33:49.000Z'}}, {'blockNum': '0x6b1e35', 'uniqueId': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d:log:39', 'hash': '0xbef2eafeea0772fb2599f40db0dabab74b27c0f18c26c7e30b3451055eadfd0d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 206.86882730998158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b36e1b666811463d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:33:49.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d:log:19', 'hash': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d', 'from': '0x92578f6e362c4d28cfae1992af4d00b16beb22d4', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d:log:22', 'hash': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d:log:24', 'hash': '0xac0090fa547e3e033d3285e44879d4514b4720e3ca45efb32647c2999895f58d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 672.0527390865221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246e9af582dc6dc050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38:log:57', 'hash': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.88384079157711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3ec49c6a82d81cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e39', 'uniqueId': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38:log:60', 'hash': '0x1e4bdecb7bb1c7582a74b968767891d25dba0eecdebb336ae2b7a9e7f5056b38', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 225.88384079157711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3ec49c6a82d81cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:35:31.000Z'}}, {'blockNum': '0x6b1e43', 'uniqueId': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698:log:50', 'hash': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13.332226284072508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb905952b0f4499b9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:37:32.000Z'}}, {'blockNum': '0x6b1e43', 'uniqueId': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698:log:54', 'hash': '0xe15aa165692102aee7fd289d3fcc69c02bbec3ef7a49a649585ba3876bb95698', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 13.332226284072508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb905952b0f4499b9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:37:32.000Z'}}, {'blockNum': '0x6b1e53', 'uniqueId': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1:log:59', 'hash': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 623.8758894800167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21d204680bc3413c16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:05.000Z'}}, {'blockNum': '0x6b1e53', 'uniqueId': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1:log:63', 'hash': '0x4b9fa28d9635aabe1bcde23bad1daf1d47cd5e27b239238af00b864715c704a1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 623.8758894800167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21d204680bc3413c16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:05.000Z'}}, {'blockNum': '0x6b1e55', 'uniqueId': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3:log:52', 'hash': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.97479142098982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24464e20ca4e70d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:36.000Z'}}, {'blockNum': '0x6b1e55', 'uniqueId': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3:log:56', 'hash': '0x4a675ab1f365fcbbdca585f4e605456b5c554e0d9bb72bd32d3f85f2d487caa3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 223.97479142098982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24464e20ca4e70d7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:40:36.000Z'}}, {'blockNum': '0x6b1e5e', 'uniqueId': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5:log:21', 'hash': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 294.34540706060505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff4dcf4367b1e6a1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:29.000Z'}}, {'blockNum': '0x6b1e5e', 'uniqueId': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5:log:24', 'hash': '0xff85a1b592ee99f2898dcc3c630cd622f3193355c03fc69dfac04b8ee11cf4b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.34540706060505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff4dcf4367b1e6a1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:29.000Z'}}, {'blockNum': '0x6b1e61', 'uniqueId': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970:log:30', 'hash': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 559.9304320511291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5a98814fda8ada51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:49.000Z'}}, {'blockNum': '0x6b1e61', 'uniqueId': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970:log:34', 'hash': '0xe263818b25a43dad59dcee9be57edb663d1b79412754e3aa136c9683aea96970', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 559.9304320511291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5a98814fda8ada51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:42:49.000Z'}}, {'blockNum': '0x6b1e65', 'uniqueId': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda:log:87', 'hash': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 262.11814829076724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e359ebb1be657c3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:43:50.000Z'}}, {'blockNum': '0x6b1e65', 'uniqueId': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda:log:89', 'hash': '0x5c239a33ec682756294aa96bebb41a29d504cdd6cad49bb9e218821c6b330eda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 262.11814829076724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e359ebb1be657c3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:43:50.000Z'}}, {'blockNum': '0x6b1e73', 'uniqueId': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7:log:39', 'hash': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 272.1979023722994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ec181360a935c5567', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:26.000Z'}}, {'blockNum': '0x6b1e73', 'uniqueId': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7:log:42', 'hash': '0xa296775a19f2f3d680b22b6f44e033f398d8acaa88b6dc25985fc6c66b143dd7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 272.1979023722994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ec181360a935c5567', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:26.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad:log:57', 'hash': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 933.8358472315997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x329f936361fd7296de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad:log:61', 'hash': '0xf778c668ac7bda96333bd74565e09e1dfe033c9ff18ca55e7eb40b1a2c7d2dad', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 933.8358472315997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x329f936361fd7296de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4:log:72', 'hash': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.97426226941187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24446cde16786a97', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4:log:76', 'hash': '0x1a25a407ce3cd9b18b49d09c931a4ea13ff41d2690a322a059ff6115284aedb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 223.97426226941187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c24446cde16786a97', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc:log:92', 'hash': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 80.43896991591006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045c50a0f46026f440', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc:log:96', 'hash': '0x7106444dc734f6cf0009aac647445b2c5defc93e37d79778022237fde01b97cc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 80.43896991591006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045c50a0f46026f440', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a:log:105', 'hash': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 80.11769634839047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0457db3c58dc6cbf81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a:log:109', 'hash': '0xec72fdad2a5162046ebba3bc89cad53b698eaac9e9f2a23a4ee0f400f659b93a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 80.11769634839047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0457db3c58dc6cbf81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995:log:121', 'hash': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2140.8906250573023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x740ed36890a082327a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e75', 'uniqueId': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995:log:125', 'hash': '0xe031b57e6f5b269f3156eae7c21750e069dd3dc5c56f6d83924db765b193d995', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 2140.8906250573023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x740ed36890a082327a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:47:48.000Z'}}, {'blockNum': '0x6b1e79', 'uniqueId': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d:log:31', 'hash': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.8270275202719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4bdb7bbfa38f61f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:43.000Z'}}, {'blockNum': '0x6b1e79', 'uniqueId': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d:log:34', 'hash': '0x485fc60aa116587ed42166d3f471a90c8fdb29fec70ab1bfeb7ab01a5d06443d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.8270275202719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4bdb7bbfa38f61f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:43.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73:log:15', 'hash': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 966.8357560978668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34698a9da7d790878f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73:log:19', 'hash': '0x80e65598707b364bd84f190f57ab18965454e5b0a3c98467cd24bdf9c20d2b73', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 966.8357560978668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34698a9da7d790878f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344:log:34', 'hash': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344', 'from': '0x7e4b0abad3407b87a381c1c05af78d7ad42975e7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 268.1557747815083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8968b069e1740fa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344:log:37', 'hash': '0xd5bf28c68f38a9dedb39d99aaa7913d4f369e5351eee5a3935cc6dd4a1813344', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 268.1557747815083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8968b069e1740fa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe:log:94', 'hash': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 380.04296543000623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x149a27d7813194fa08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7a', 'uniqueId': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe:log:98', 'hash': '0xc56562c81e91ff80db3ba802b1b37a5f70aeea3126e28885cd250bb4bcc21afe', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 380.04296543000623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x149a27d7813194fa08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:48:48.000Z'}}, {'blockNum': '0x6b1e7e', 'uniqueId': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14:log:29', 'hash': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:49:40.000Z'}}, {'blockNum': '0x6b1e7e', 'uniqueId': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14:log:32', 'hash': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:49:40.000Z'}}, {'blockNum': '0x6b1e7e', 'uniqueId': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14:log:34', 'hash': '0xe5fb48254a8f85f414b3d30fa6c4d29f558fe7a2777180fbf58f144077bd0d14', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:49:40.000Z'}}, {'blockNum': '0x6b1e85', 'uniqueId': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1:log:63', 'hash': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.9530302986231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c23f8fe80a9b94a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:14.000Z'}}, {'blockNum': '0x6b1e85', 'uniqueId': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1:log:67', 'hash': '0xb77251070b0bfd75f12d49b0a6b48c9ae24e29c033cbc60086b291c0ae1051c1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 223.9530302986231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c23f8fe80a9b94a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:14.000Z'}}, {'blockNum': '0x6b1e87', 'uniqueId': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4:log:66', 'hash': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 14.647081925061544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb44e3684356855e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:35.000Z'}}, {'blockNum': '0x6b1e87', 'uniqueId': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4:log:70', 'hash': '0x2b00a24b503bb4e5630233250e8a9138a676d319e09791edd8afda20d222dcb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 14.647081925061544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcb44e3684356855e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:51:35.000Z'}}, {'blockNum': '0x6b1e8e', 'uniqueId': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd:log:23', 'hash': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 645.7631897536954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2301c3b7ae543063e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:53:52.000Z'}}, {'blockNum': '0x6b1e8e', 'uniqueId': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd:log:27', 'hash': '0x69e7fdeb9d05970d30052d555d0fe34c30ccf7bdb12ddde2fbea19b267364ccd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 645.7631897536954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2301c3b7ae543063e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:53:52.000Z'}}, {'blockNum': '0x6b1e99', 'uniqueId': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529:log:79', 'hash': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 206.0470573312259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2b7a32f56a442a8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:56:15.000Z'}}, {'blockNum': '0x6b1e99', 'uniqueId': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529:log:83', 'hash': '0xfd9233c7e7adf00c33bf717639789cf5bc15d1d89c8e538943a2feece7679529', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 206.0470573312259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2b7a32f56a442a8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:56:15.000Z'}}, {'blockNum': '0x6b1e9d', 'uniqueId': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365:log:34', 'hash': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1334.6380452533201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4859d2d6f145de92c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:57:20.000Z'}}, {'blockNum': '0x6b1e9d', 'uniqueId': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365:log:38', 'hash': '0x6422abb799a0a5b6195489267bd6de4c3c8841883350fc741317d21c96690365', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1334.6380452533201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4859d2d6f145de92c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:57:20.000Z'}}, {'blockNum': '0x6b1ea9', 'uniqueId': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc:log:75', 'hash': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1599.254271295994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56b21c86880be92030', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:59:58.000Z'}}, {'blockNum': '0x6b1ea9', 'uniqueId': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc:log:78', 'hash': '0xaf7f24f1e77a9d1f45b426f8458442ac868b774362d195e5ed295248f6a056cc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'value': 1599.254271295994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56b21c86880be92030', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T12:59:58.000Z'}}, {'blockNum': '0x6b1eb0', 'uniqueId': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e:log:97', 'hash': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19375647fffd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:21.000Z'}}, {'blockNum': '0x6b1eb0', 'uniqueId': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e:log:100', 'hash': '0xe128e8d43f9c98a3c2d5fd242812bb7cb8b2d9311fad3f6e5038195735b8b25e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c19375647fffd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:21.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea:log:20', 'hash': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.41556016164088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c838442b98481be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea:log:24', 'hash': '0x75bd6f9a2749eb168ffff5bc2a66b1aef2d3e84a5cbdcd5114e41c4df6ee23ea', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 223.41556016164088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c838442b98481be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1:log:40', 'hash': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 631.0592947316215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2235b4fd101ed5fff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1:log:44', 'hash': '0xa49371c358f018e8d000dc6bea1034db05584b0bf7acef34796586d69e8954d1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 631.0592947316215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2235b4fd101ed5fff1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142:log:55', 'hash': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.39270194171968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c324ed4aaead58b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142:log:59', 'hash': '0xb2fec67d82499c64b5c4b8768cc72997f6b70d3cc0442a70897644c89b775142', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 223.39270194171968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c324ed4aaead58b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da:log:73', 'hash': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da', 'from': '0x848d0146890ef4ffc6eb49fba58c7e89a6af8111', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ae952c22899c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb1', 'uniqueId': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da:log:76', 'hash': '0x9248291637e535570f5c253a2472dc049edc852bc9bea15adef84ceaa0d8f3da', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56ae952c22899c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:02:32.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b:log:43', 'hash': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 279.16570598802434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2233d283475441a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b:log:47', 'hash': '0x1e00e08659b511a9f867ca78663bf3e320521b9ce28f801b47fa2988077f9f0b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 279.16570598802434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2233d283475441a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46:log:57', 'hash': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46', 'from': '0x6431750a2e43ac6c6b3d84444875576b0aa7bd5e', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 95.58403634558108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e7eb6a160631050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1eb4', 'uniqueId': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46:log:61', 'hash': '0xa373f70551ad82785c1443533c78137475370ea5f2ff28af8510977f340dea46', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.58403634558108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052e7eb6a160631050', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:03:01.000Z'}}, {'blockNum': '0x6b1ebd', 'uniqueId': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf:log:99', 'hash': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.0704830716012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122a097d12f9538702', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:07:56.000Z'}}, {'blockNum': '0x6b1ebd', 'uniqueId': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf:log:103', 'hash': '0xb9cf759c36eeb17e15d4456c2b8e6b82866a75f9a8d8199c75e7d3376af840bf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 335.0704830716012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x122a097d12f9538702', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:07:56.000Z'}}, {'blockNum': '0x6b1ec3', 'uniqueId': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e:log:48', 'hash': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.37285346631748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bebcabf5d3c7069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:09:19.000Z'}}, {'blockNum': '0x6b1ec3', 'uniqueId': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e:log:52', 'hash': '0x4b43a7129affb0a574c44a62482f4f05355a265608d4c6c043bdfaa94950de6e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 223.37285346631748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1bebcabf5d3c7069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:09:19.000Z'}}, {'blockNum': '0x6b1ec8', 'uniqueId': '0x65527e642e356709778df51ce75b8b73ec3400300aab774db2cae60bf27f3640:log:12', 'hash': '0x65527e642e356709778df51ce75b8b73ec3400300aab774db2cae60bf27f3640', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 915.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31a280a4f17ba80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:11:48.000Z'}}, {'blockNum': '0x6b1eca', 'uniqueId': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0:log:8', 'hash': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x319a2d041f4a6c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:12:52.000Z'}}, {'blockNum': '0x6b1eca', 'uniqueId': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0:log:11', 'hash': '0x9f3b70e5abb6eb99a419babadcfa43b5b209327f9da0e789e01959b86c877fa0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x319a2d041f4a6c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:12:52.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d:log:75', 'hash': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.04807817077193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1229b9e3ef7e2b66f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d:log:79', 'hash': '0x50d0501184aa1dd67b84503f20b8cd98c1135310a6cf95b451e8b1be6bb5589d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 335.04807817077193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1229b9e3ef7e2b66f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e:log:93', 'hash': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 335.0346367483116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12298a2308732508c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e:log:97', 'hash': '0x6e0d21a4ecc24ef8bcb99dd19b64edf7190ff9a75a7c974e795378ce8bda7e0e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 335.0346367483116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12298a2308732508c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2:log:108', 'hash': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 528.8190807062653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caad6c819499126ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecb', 'uniqueId': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2:log:112', 'hash': '0x9592f7bc0729b67e4b4914c0b990ea39601b5b8af53992ff4eb633c6eda1d1e2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 528.8190807062653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caad6c819499126ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:04.000Z'}}, {'blockNum': '0x6b1ecc', 'uniqueId': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8:log:54', 'hash': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1474.0860765150014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fe90dc48c31f0f7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:23.000Z'}}, {'blockNum': '0x6b1ecc', 'uniqueId': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8:log:58', 'hash': '0x5eff47ef1d4f43dee07e6be1a5227aa9520986d0ab0512b4ccc87f3a2ded41b8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 1474.0860765150014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fe90dc48c31f0f7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:13:23.000Z'}}, {'blockNum': '0x6b1ece', 'uniqueId': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414:log:56', 'hash': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 357.31502014802965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135ebdf5b042da0559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:14:49.000Z'}}, {'blockNum': '0x6b1ece', 'uniqueId': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414:log:60', 'hash': '0x35a09c5892b4f9091350240d5afd12ad76e238884fa7bfbbe0e53b3d2c642414', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 357.31502014802965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135ebdf5b042da0559', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:14:49.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a:log:51', 'hash': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 669.9244605611094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x245111cb77ea1d183c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a:log:55', 'hash': '0x6c75fd410051294c50f669b9862628c604c3a99c0cab36745cd0057b84e9052a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 669.9244605611094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x245111cb77ea1d183c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4:log:68', 'hash': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 798.3547476566652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b4765d52106263185', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4:log:72', 'hash': '0x78ed3a7385e8593f51f0e71b7ddb78e075d98c627d85931ffb912b3d3da3aeb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 798.3547476566652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b4765d52106263185', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c:log:88', 'hash': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.39466140836518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0920f2045b95c96a2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ecf', 'uniqueId': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c:log:92', 'hash': '0x99b82f80f3244b4a2b1e3146c04b57da0cd00637ecbe588704dd35f892e4c74c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 168.39466140836518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0920f2045b95c96a2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:05.000Z'}}, {'blockNum': '0x6b1ed2', 'uniqueId': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671:log:55', 'hash': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.11818337693393681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a3df27b880dea7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:43.000Z'}}, {'blockNum': '0x6b1ed2', 'uniqueId': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671:log:59', 'hash': '0xa906289aeedd444af680181e35f4992206d932451be7c41be048d4215126b671', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.11818337693393681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a3df27b880dea7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:15:43.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554:log:17', 'hash': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 359.1065316927779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13779aaff2569481db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554:log:21', 'hash': '0xe7db5181554e3c96f8a34b70e954f18d30940cbf5acbe571dc5117702b477554', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 359.1065316927779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13779aaff2569481db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853:log:33', 'hash': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 664.2372103338861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2402249f84e3b4effc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853:log:37', 'hash': '0x6d41b69b4d78a5011aa7a6fc9ffada9b22c3a52d7a6aa5ce8b60149285111853', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 664.2372103338861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2402249f84e3b4effc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974:log:47', 'hash': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974', 'from': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 792.2807000552114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af31a7b0464ad5843', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1eda', 'uniqueId': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974:log:51', 'hash': '0x6842a023a4487901bfe6bfd837e3df1f7ca034eb5eb4e0f0d51e2e3f3ae79974', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 792.2807000552114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af31a7b0464ad5843', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:19:24.000Z'}}, {'blockNum': '0x6b1ee4', 'uniqueId': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63:log:124', 'hash': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 675.2430225614543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249ae11f6dc48e657f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:09.000Z'}}, {'blockNum': '0x6b1ee4', 'uniqueId': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63:log:128', 'hash': '0x6daf7bcd3a3cc8d3d0b73ffd0d7b80a0925e895de91dcb594e77927a02256b63', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 675.2430225614543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249ae11f6dc48e657f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:09.000Z'}}, {'blockNum': '0x6b1ee5', 'uniqueId': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2:log:74', 'hash': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.27346388084965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb29a10147ed6de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:32.000Z'}}, {'blockNum': '0x6b1ee5', 'uniqueId': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2:log:78', 'hash': '0xc9434ced67a47f0f60e882dac5df90068e4311a094171dc2a043d2e57240d3e2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.27346388084965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb29a10147ed6de2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:22:32.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8:log:78', 'hash': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 529.7284459325294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cb7757ef43c230cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8:log:82', 'hash': '0x9410643abbb9e98c9356440748a1f69f87ef3e64c9974652fa95c0abc0705dc8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 529.7284459325294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cb7757ef43c230cb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1:log:93', 'hash': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1116.8519075480497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c8b6f0c9476eaba89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eeb', 'uniqueId': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1:log:97', 'hash': '0xd35d586e0393badf097debdaf6496b0e00f1416043c5746554e390b710b77cd1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1116.8519075480497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c8b6f0c9476eaba89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:25.000Z'}}, {'blockNum': '0x6b1eec', 'uniqueId': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff:log:52', 'hash': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.39719149842284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c42420f0b689b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:50.000Z'}}, {'blockNum': '0x6b1eec', 'uniqueId': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff:log:56', 'hash': '0x8f21fa5197a5e56f1478d25963120c053111e4a291c3cd5e4b594794c16da6ff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 223.39719149842284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1c42420f0b689b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:50.000Z'}}, {'blockNum': '0x6b1eed', 'uniqueId': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32:log:29', 'hash': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 334.9817693015157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1228ce505ec8b2c5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:52.000Z'}}, {'blockNum': '0x6b1eed', 'uniqueId': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32:log:33', 'hash': '0x9e13e78b52b43e7dfa4212c8c3b8260372e1c425644a2eeab477294fd682bd32', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 334.9817693015157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1228ce505ec8b2c5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:25:52.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661:log:54', 'hash': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 227.01992972433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4e88cf47f8d53c4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661:log:58', 'hash': '0xc4acce900c2b595f1b95a32dbae40a5975d1f5f333cd52cc1616e2e50e6a9661', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 227.01992972433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4e88cf47f8d53c4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b:log:69', 'hash': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1035.5143087202714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3822a5d96421f49fd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b:log:73', 'hash': '0x26ecbefc49fd711911590e7bee00d0f58b500b03b265cf560025c4748f8f4a6b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1035.5143087202714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3822a5d96421f49fd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a:log:83', 'hash': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 641.440112464893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22c5c50fca9c8ef369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1efb', 'uniqueId': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a:log:87', 'hash': '0x3b69d5bbc8aafbfb054ccf44a76ec5a005d46752da4ca31141da5a758dae496a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 641.440112464893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22c5c50fca9c8ef369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:28:04.000Z'}}, {'blockNum': '0x6b1f01', 'uniqueId': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb:log:94', 'hash': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 59.110339266086235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0334521c61ebe4e657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:29:29.000Z'}}, {'blockNum': '0x6b1f01', 'uniqueId': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb:log:98', 'hash': '0x8f36b093471e17d7303838c6c0b2b0d520e41f4280772314b41513d5297312fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 59.110339266086235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0334521c61ebe4e657', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:29:29.000Z'}}, {'blockNum': '0x6b1f05', 'uniqueId': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab:log:56', 'hash': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.44953383379203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc3722adcd8ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:30:39.000Z'}}, {'blockNum': '0x6b1f05', 'uniqueId': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab:log:60', 'hash': '0xdfa22779a535d0633910d3d36e1f5d80710b54f16a4c1551edecc02f0bc8a4ab', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 223.44953383379203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc3722adcd8ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:30:39.000Z'}}, {'blockNum': '0x6b1f13', 'uniqueId': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac:log:88', 'hash': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 279.3035096414199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f241d663498b97064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:35:27.000Z'}}, {'blockNum': '0x6b1f13', 'uniqueId': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac:log:92', 'hash': '0xf6065ba870d85ba9a59d662f587431b65943c2a79b5fde2b3f81b1ce455d1dac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 279.3035096414199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f241d663498b97064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:35:27.000Z'}}, {'blockNum': '0x6b1f18', 'uniqueId': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f:log:23', 'hash': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.3015407470579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c28cf26e8b13155e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:36:31.000Z'}}, {'blockNum': '0x6b1f18', 'uniqueId': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f:log:27', 'hash': '0x2a5d7cbad4e2372b7b9d3c336353ec59ac8e29a427e54c6b6b1d92130cf1db6f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 224.3015407470579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c28cf26e8b13155e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:36:31.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786:log:103', 'hash': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 209.86804439108266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b60811271f464c971', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786:log:108', 'hash': '0xfafc63a0f49d2066cbd775b4255b56a8bcd1e323ccc016669db9253cc5a06786', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 209.86804439108266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b60811271f464c971', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee:log:118', 'hash': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.0756214604351133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ca9514ea19549', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1a', 'uniqueId': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee:log:122', 'hash': '0xeff1b2867119ed1401ff69737d56e0af97599e0d40fbf9253e87e41f06aab1ee', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5f7a009664b771e889751f4fd721adc439033ecd', 'value': 0.0756214604351133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010ca9514ea19549', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:41.000Z'}}, {'blockNum': '0x6b1f1c', 'uniqueId': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458:log:18', 'hash': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 171.25195545488253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0948992a278b4b0206', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:49.000Z'}}, {'blockNum': '0x6b1f1c', 'uniqueId': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458:log:22', 'hash': '0x030311c4b12c7cbfa409cb7374c61dbab388ca47e890df37119c4c34179c6458', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 171.25195545488253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0948992a278b4b0206', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:37:49.000Z'}}, {'blockNum': '0x6b1f24', 'uniqueId': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172:log:47', 'hash': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 451.7217759550267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187ce621e813f513c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:39:53.000Z'}}, {'blockNum': '0x6b1f24', 'uniqueId': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172:log:51', 'hash': '0xce91d5a8245b6122995d2188ba308b669aef23e0607777211a5cfb53df1df172', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 451.7217759550267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187ce621e813f513c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:39:53.000Z'}}, {'blockNum': '0x6b1f26', 'uniqueId': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9:log:63', 'hash': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.44958783839542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc68409b00f1fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:40:23.000Z'}}, {'blockNum': '0x6b1f26', 'uniqueId': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9:log:67', 'hash': '0x2ef4d51243a3159327143b4f40e37b263bd3a7caca1be57b786727f9fbfc1fa9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 223.44958783839542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1cfc68409b00f1fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:40:23.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda:log:33', 'hash': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 567.3786723861118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1f5f86f22ed8115', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda:log:37', 'hash': '0xa17c03758e1cfeb0c954c40ae361bc180f69661345ffb8d151aab423130d4bda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'value': 567.3786723861118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1f5f86f22ed8115', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd:log:48', 'hash': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 670.2673532206027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455d3fe86874c619d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd:log:52', 'hash': '0x85e82bfbcd6a5ebfa886f5a9741f7aaf3c4369d24730cc5fd070daade128a5cd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'value': 670.2673532206027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455d3fe86874c619d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85:log:67', 'hash': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 435.2354563097107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17981af589935a08bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f31', 'uniqueId': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85:log:70', 'hash': '0xbe294cd27bc74c81b65fbdd7d0168b2ada8e37e5732376c25b569830ddf1da85', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 435.2354563097107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17981af589935a08bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:21.000Z'}}, {'blockNum': '0x6b1f33', 'uniqueId': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21:log:24', 'hash': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 569.0573892691539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ed941f88b871ac04c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:41.000Z'}}, {'blockNum': '0x6b1f33', 'uniqueId': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21:log:28', 'hash': '0x0c4acdadc87001a60b3239799a453268bf47890fef499d763ad6cf6108d66d21', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 569.0573892691539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ed941f88b871ac04c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:43:41.000Z'}}, {'blockNum': '0x6b1f36', 'uniqueId': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a:log:36', 'hash': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1550.2778214679902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x540a6d38e6b6013d92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:30.000Z'}}, {'blockNum': '0x6b1f36', 'uniqueId': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a:log:40', 'hash': '0xb98ff1f985144d404187255f73e35c18db493ae73a74c216717a867353f5489a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1550.2778214679902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x540a6d38e6b6013d92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:30.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac:log:66', 'hash': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3.6459480384363814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3299026c8488631d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac:log:70', 'hash': '0x0eab9be130267fda63779063190b09914b528d75095efe0d674b13dfeaf085ac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 3.6459480384363814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3299026c8488631d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5:log:81', 'hash': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1.1174086307862177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f81d53abaf7d6c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f38', 'uniqueId': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5:log:85', 'hash': '0xd424f3c350cd2241b811b558d354c5a17f1f3cdf71738744408916c8276da4e5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'value': 1.1174086307862177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f81d53abaf7d6c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:44:50.000Z'}}, {'blockNum': '0x6b1f3e', 'uniqueId': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695:log:101', 'hash': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 33.2457215661979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd60879efec4e1ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:08.000Z'}}, {'blockNum': '0x6b1f3e', 'uniqueId': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695:log:105', 'hash': '0xfd58a3ff0da97a928126f225d809d5adfd106c89dadbdc60d627dafb2cce5695', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 33.2457215661979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd60879efec4e1ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:08.000Z'}}, {'blockNum': '0x6b1f3f', 'uniqueId': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218:log:15', 'hash': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.47783117661888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d60bf6b391589f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:14.000Z'}}, {'blockNum': '0x6b1f3f', 'uniqueId': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218:log:19', 'hash': '0xcce302c367e0374240db131924020ea982fb1eb52a09384293edbae79037a218', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 223.47783117661888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d60bf6b391589f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:14.000Z'}}, {'blockNum': '0x6b1f3f', 'uniqueId': '0x21553a1c9796224f0ea7f4a3983f550273db191ceb2bda5897206b38a15562c6:log:31', 'hash': '0x21553a1c9796224f0ea7f4a3983f550273db191ceb2bda5897206b38a15562c6', 'from': '0x44e18bef2693ddc841f90949b27646a9b01fab59', 'to': '0xc545bb895b9809c321de7a62017c6e7e637a5cfd', 'value': 200.1762597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ada00ef9e2cd78800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:46:14.000Z'}}, {'blockNum': '0x6b1f4b', 'uniqueId': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a:log:50', 'hash': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 33.22785570105688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd210eb61d6f03d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:47:38.000Z'}}, {'blockNum': '0x6b1f4b', 'uniqueId': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a:log:54', 'hash': '0x595482a81229a2f50d7a38052dce37b1f7e61ce5c08d37aa8ce99b69b209376a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 33.22785570105688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd210eb61d6f03d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:47:38.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7:log:90', 'hash': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.4709615939197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d485791dc8b89af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7:log:94', 'hash': '0x9e2390de461902a482b904aa524a277055cdda9729c2afe6cda226f4a5dd5ef7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 223.4709615939197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d485791dc8b89af', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f:log:106', 'hash': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 253.28070116719005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbaf9cfc5dc3a7b10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f:log:108', 'hash': '0xe846a21169a08028a8f69c3e97b96faa97cb41639382bcc13d84c5973cb83a7f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.28070116719005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbaf9cfc5dc3a7b10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d:log:120', 'hash': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 54.85775827808489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f94de8814b7e8f9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f51', 'uniqueId': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d:log:124', 'hash': '0xebdf96937425750ea1fe373e123d787500f290867744f6a93bbc654e6ed7028d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 54.85775827808489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f94de8814b7e8f9a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:49:17.000Z'}}, {'blockNum': '0x6b1f56', 'uniqueId': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42:log:46', 'hash': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.22347327841775422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0319efc340e1d86e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:50:16.000Z'}}, {'blockNum': '0x6b1f56', 'uniqueId': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42:log:50', 'hash': '0xc95993a820c2589406e44f918c863b0792c596fcefac2a5c6876492073ff3e42', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x6b431a7a99780819473722161ee9145e5649c5e2', 'value': 0.22347327841775422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0319efc340e1d86e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:50:16.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a:log:34', 'hash': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2561.6787643643283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ade6f2fd5656049cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a:log:38', 'hash': '0x445343be72d9a612f69b128f25dfb37f5402e851fb6459f47559fc0568091d9a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2561.6787643643283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8ade6f2fd5656049cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29:log:50', 'hash': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29:log:53', 'hash': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29:log:55', 'hash': '0x331f28868114ace433e23c6ab3471bf98378e5fd03e0fcd96e4655a9a000ee29', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a:log:68', 'hash': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 644.22221809412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ec61161efa3f2098', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f5f', 'uniqueId': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a:log:72', 'hash': '0x375c31da768e7b0538852c9c5bb86387d8dacbb63c5cb6471b105596c513db5a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 644.22221809412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ec61161efa3f2098', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:24.000Z'}}, {'blockNum': '0x6b1f62', 'uniqueId': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb:log:21', 'hash': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 312.9285689718429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f6c19b83660556c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:54.000Z'}}, {'blockNum': '0x6b1f62', 'uniqueId': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb:log:25', 'hash': '0x0b7c96ac5533fa26090c7d4ac57e143e65f6c38193155f67a17aa2f97bf3d3eb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 312.9285689718429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f6c19b83660556c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:53:54.000Z'}}, {'blockNum': '0x6b1f64', 'uniqueId': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07:log:24', 'hash': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 368.1230975103365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f4bbf6c9301773a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:54:48.000Z'}}, {'blockNum': '0x6b1f64', 'uniqueId': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07:log:28', 'hash': '0x690dafbc7a0c4b5e457a06252cfcbfa278d1ac10bae0addc825b4a99956c8b07', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 368.1230975103365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f4bbf6c9301773a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:54:48.000Z'}}, {'blockNum': '0x6b1f6e', 'uniqueId': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6:log:95', 'hash': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.50337423488673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1dbb7eb1eb9e0842', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:27.000Z'}}, {'blockNum': '0x6b1f6e', 'uniqueId': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6:log:99', 'hash': '0x42369201b84e35d2e67eb67bc1b5c5491d5a3e6299d82885adba258303a266d6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 223.50337423488673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1dbb7eb1eb9e0842', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:27.000Z'}}, {'blockNum': '0x6b1f6f', 'uniqueId': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5:log:64', 'hash': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 167.60615132262075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091600aa9ccb2d35a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:33.000Z'}}, {'blockNum': '0x6b1f6f', 'uniqueId': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5:log:68', 'hash': '0x816835b747dfa7a0eb4cc6ab1fc0e3a36510675a2a6dcf077d3832d06df1d6d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 167.60615132262075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091600aa9ccb2d35a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:58:33.000Z'}}, {'blockNum': '0x6b1f72', 'uniqueId': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878:log:57', 'hash': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 69.28344079146976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c1803a52085cfa8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:59:09.000Z'}}, {'blockNum': '0x6b1f72', 'uniqueId': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878:log:61', 'hash': '0x7538e454e6fc82d482a3569a1ecc94cadc618afb7815ec9a3aa500ca86fe6878', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 69.28344079146976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03c1803a52085cfa8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T13:59:09.000Z'}}, {'blockNum': '0x6b1f82', 'uniqueId': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84:log:36', 'hash': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 222.31045252252653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0d2d62b7cd893563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:02:02.000Z'}}, {'blockNum': '0x6b1f82', 'uniqueId': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84:log:40', 'hash': '0x36c344953d99ffcc41c7d737dd543de5313507153db8ba64d1af1336e29f7f84', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 222.31045252252653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c0d2d62b7cd893563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:02:02.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5:log:15', 'hash': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 55.871836449710855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030760a33ab5bcde19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5:log:19', 'hash': '0x72199b01cee43d4e0b1b770a91d40126380effc2c295a6a85d671137e568beb5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 55.871836449710855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030760a33ab5bcde19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72:log:30', 'hash': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 368.744745496172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13fd5c8055db278c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72:log:34', 'hash': '0xdf0f9667e2ddad0b7529703313e03deba598c9054641d6c8ce124e13f983aa72', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 368.744745496172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13fd5c8055db278c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52:log:100', 'hash': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52', 'from': '0xba2be1cd1f00470c21385b7cbed6211aefac0172', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 395.3028272650143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x156dedc2fe4ec6b3d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f92', 'uniqueId': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52:log:104', 'hash': '0x8fba1eac61f8f82d977b5b0d6396aa03cbd4a8f45552dbb97d761badb59d9b52', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 395.3028272650143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x156dedc2fe4ec6b3d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:07:22.000Z'}}, {'blockNum': '0x6b1f94', 'uniqueId': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68:log:58', 'hash': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 117.83814448089979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0663553012773048a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:08:37.000Z'}}, {'blockNum': '0x6b1f94', 'uniqueId': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68:log:62', 'hash': '0xfbaa8dc9546b6e60c463cc406d4f733ffac7c694231651830cd96df4c8974b68', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 117.83814448089979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0663553012773048a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:08:37.000Z'}}, {'blockNum': '0x6b1f9a', 'uniqueId': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8:log:60', 'hash': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 111.74258224484996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ebd66839d2744a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:10:03.000Z'}}, {'blockNum': '0x6b1f9a', 'uniqueId': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8:log:64', 'hash': '0xd773de44d6ba163d41a5f9e86f126d7a917908303ea7cbb39762356eb4db1fd8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 111.74258224484996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x060ebd66839d2744a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:10:03.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f:log:40', 'hash': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 283.6400076580915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f604bbc2d059f3f58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f:log:44', 'hash': '0x10bd210e364a1752b789edd3c4aaf2f4549bcd2656e9597f3767304213438e8f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 283.6400076580915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f604bbc2d059f3f58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772:log:58', 'hash': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 74.18588674970611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04058936f1f7975b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9e', 'uniqueId': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772:log:62', 'hash': '0xebcb810860ef6169234aa7d293caa8d2cf1e82ab7e083e01a6987bc406c89772', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 74.18588674970611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04058936f1f7975b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:40.000Z'}}, {'blockNum': '0x6b1f9f', 'uniqueId': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac:log:80', 'hash': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 74.185227706818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040586df8c965a6c53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:51.000Z'}}, {'blockNum': '0x6b1f9f', 'uniqueId': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac:log:84', 'hash': '0x89c70f95ca9fc3ecfac706fa762ce68de7cc56d26155ace30fe53af5bd0cadac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 74.185227706818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x040586df8c965a6c53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:11:51.000Z'}}, {'blockNum': '0x6b1fa5', 'uniqueId': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84:log:75', 'hash': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.47890108764088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d648c7f4b7e220b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:12:48.000Z'}}, {'blockNum': '0x6b1fa5', 'uniqueId': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84:log:79', 'hash': '0x466dacaba05ea82c3422125b9a613e5ed97165e8beae9783f5248f4b68d9db84', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 223.47890108764088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c1d648c7f4b7e220b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:12:48.000Z'}}, {'blockNum': '0x6b1fb5', 'uniqueId': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4:log:19', 'hash': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 446.9398611300955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183a895bb57dc210bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:15:40.000Z'}}, {'blockNum': '0x6b1fb5', 'uniqueId': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4:log:23', 'hash': '0x4b997f10f63878a185354b6b4c0903ee4c3b06b420c961e34e3781f1516452b4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 446.9398611300955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183a895bb57dc210bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:15:40.000Z'}}, {'blockNum': '0x6b1fc5', 'uniqueId': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0:log:30', 'hash': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 407.8121573771973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x161b87d474018b5bb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:18:00.000Z'}}, {'blockNum': '0x6b1fc5', 'uniqueId': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0:log:34', 'hash': '0xd238645a9a726cba5aacf2302d9f4e2dd6013b8e3aef2e4e2784b9e7b62ad4b0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 407.8121573771973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x161b87d474018b5bb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:18:00.000Z'}}, {'blockNum': '0x6b1fc8', 'uniqueId': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec:log:79', 'hash': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 218.39972559054908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bd6e7b14b13778b33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:19:16.000Z'}}, {'blockNum': '0x6b1fc8', 'uniqueId': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec:log:84', 'hash': '0x0d9f68b598966d3e3e2c4e185e5fb12bcbefe32c496d8db0546099ea95323cec', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 218.39972559054908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bd6e7b14b13778b33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:19:16.000Z'}}, {'blockNum': '0x6b1fd8', 'uniqueId': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e:log:7', 'hash': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 86.38360801756093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04aed039cfdf4e117e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:24:47.000Z'}}, {'blockNum': '0x6b1fd8', 'uniqueId': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e:log:11', 'hash': '0xbf3d54b1ff0a906109b6249b77613d4981ebe65b210d0021f9d6da5fe9e4a99e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 86.38360801756093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04aed039cfdf4e117e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:24:47.000Z'}}, {'blockNum': '0x6b1ff5', 'uniqueId': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8:log:28', 'hash': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 44.820893596994814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026e03cd415474c251', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:30:05.000Z'}}, {'blockNum': '0x6b1ff5', 'uniqueId': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8:log:32', 'hash': '0x329a0c87b70c9eb033f893c020fec1695822a570c6017f20f73b07fefea80ad8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 44.820893596994814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026e03cd415474c251', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:30:05.000Z'}}, {'blockNum': '0x6b1ffb', 'uniqueId': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847:log:84', 'hash': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 670.4012788777289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2457afcb337a9e2abd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:31:59.000Z'}}, {'blockNum': '0x6b1ffb', 'uniqueId': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847:log:88', 'hash': '0x1f79ad65a9568833bd561b27f20d3b3165c8aeeaadfb6e395e3a32a4f5e38847', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 670.4012788777289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2457afcb337a9e2abd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:31:59.000Z'}}, {'blockNum': '0x6b2009', 'uniqueId': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113:log:23', 'hash': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e7fffc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:50.000Z'}}, {'blockNum': '0x6b2009', 'uniqueId': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113:log:26', 'hash': '0x47cf87e7c7003dd2c6a0dec6292988c5470124e51ee4e4e0ea962e30294a7113', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e7fffc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:50.000Z'}}, {'blockNum': '0x6b200a', 'uniqueId': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b:log:17', 'hash': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 667.7236934889565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2432871979f9109dd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:56.000Z'}}, {'blockNum': '0x6b200a', 'uniqueId': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b:log:21', 'hash': '0x2c3b0e27fd8597099ad93e7baa638373e3e27f2ebc7015ac70ec18352c33b08b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 667.7236934889565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2432871979f9109dd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:35:56.000Z'}}, {'blockNum': '0x6b200e', 'uniqueId': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6:log:43', 'hash': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 290.4725496388393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbf1dcce831097ab4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:36:31.000Z'}}, {'blockNum': '0x6b200e', 'uniqueId': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6:log:47', 'hash': '0x87d77097de160f6125de9c3baa3e145bf12c0115bdaf30c5eb26fe6d90e959d6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 290.4725496388393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbf1dcce831097ab4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:36:31.000Z'}}, {'blockNum': '0x6b2018', 'uniqueId': '0xc0bbf7d3d0b27ba763d0d08985529aa0f21acf74f0123a6fd858094d9fc08013:log:97', 'hash': '0xc0bbf7d3d0b27ba763d0d08985529aa0f21acf74f0123a6fd858094d9fc08013', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e7fffc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:39:27.000Z'}}, {'blockNum': '0x6b201f', 'uniqueId': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266:log:12', 'hash': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266', 'from': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:41:58.000Z'}}, {'blockNum': '0x6b201f', 'uniqueId': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266:log:15', 'hash': '0x74ea72fc31e7b55186d3ed329a9860561bafcc2190d49e42a8532274a1c91266', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x402f4cfee62e800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:41:58.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76:log:51', 'hash': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 814.3864660422474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c25e1f00f9de19c52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76:log:55', 'hash': '0x3704b46b16a1c212ac5b62abe319d25fba761ea0a85795becce43759c0f3ed76', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 814.3864660422474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c25e1f00f9de19c52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540:log:104', 'hash': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 15.979266857118635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddc1c28b75ba9104', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2030', 'uniqueId': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540:log:108', 'hash': '0xb8c50a989068774dfa280abfc5cb721723ca6532a62edb78765c7b332ea58540', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 15.979266857118635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddc1c28b75ba9104', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:46:46.000Z'}}, {'blockNum': '0x6b2043', 'uniqueId': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5:log:69', 'hash': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 158.62326840801745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0899570e31eb525b4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:50:24.000Z'}}, {'blockNum': '0x6b2043', 'uniqueId': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5:log:73', 'hash': '0x50bf6127b243c9994c788c452adc2245a42059ff1aeb51197dc34b3b1e4aa5d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 158.62326840801745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0899570e31eb525b4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:50:24.000Z'}}, {'blockNum': '0x6b2044', 'uniqueId': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed:log:43', 'hash': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 61.912525113136226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035b35799053efa0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:22.000Z'}}, {'blockNum': '0x6b2044', 'uniqueId': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed:log:47', 'hash': '0x0c4d2cce37cc69bbd193b49031f3a8b565a5ac0d84ef402ef83712d82b5c18ed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 61.912525113136226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035b35799053efa0b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:22.000Z'}}, {'blockNum': '0x6b2046', 'uniqueId': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357:log:88', 'hash': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 0.14342526870171737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8c85a0c7e381', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:54.000Z'}}, {'blockNum': '0x6b2046', 'uniqueId': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357:log:90', 'hash': '0x33b4b5fe12c7db363b70025b2caa0f8493d6661f05e9573451ff1b01973c1357', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x33b8287511ac7f003902e83d642be4603afcd876', 'value': 0.14342526870171737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8c85a0c7e381', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:51:54.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb:log:38', 'hash': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 311.5405336787728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e37e50c4b2df3ba0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb:log:42', 'hash': '0x134e6c17203ddb04a2596ab32cdd14811d485fbded531f61a5441426813364bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 311.5405336787728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e37e50c4b2df3ba0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa:log:53', 'hash': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 191.23098716073633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a5ddcf1a332f97402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b204b', 'uniqueId': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa:log:57', 'hash': '0xc9ba77d5ec89d09c2facfcfba9d4494dbc920e777a911e9fd70cedfd3031a0fa', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 191.23098716073633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a5ddcf1a332f97402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:53:28.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14:log:36', 'hash': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14:log:39', 'hash': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14:log:41', 'hash': '0xdcb930d4a726a243f3fc541a7bf265b9fb15b68937448f235db80c31c36e6e14', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18:log:103', 'hash': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 122.5310299472405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a475aa8a30052e24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2054', 'uniqueId': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18:log:107', 'hash': '0xc12c2e89e23eddf41797a1d04b147378a310ed49ae7843c61ea4cf316ebe8a18', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 122.5310299472405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a475aa8a30052e24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T14:55:41.000Z'}}, {'blockNum': '0x6b2085', 'uniqueId': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e:log:34', 'hash': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 680.9789276932363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ea7b26c189c47bad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:07:42.000Z'}}, {'blockNum': '0x6b2085', 'uniqueId': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e:log:38', 'hash': '0xd31560204e9e29bb38f8e529887b2a2ee8697ebf0d94bdda031509e86c8fc00e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 680.9789276932363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ea7b26c189c47bad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:07:42.000Z'}}, {'blockNum': '0x6b2087', 'uniqueId': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769:log:29', 'hash': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.032830415613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7d2ba24af6d2a73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:08:07.000Z'}}, {'blockNum': '0x6b2087', 'uniqueId': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769:log:33', 'hash': '0x6ed4b82682f80ed0b0ae2f00359ee058660a8cf45c7cd0b23f7761dcf5d23769', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 87.032830415613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7d2ba24af6d2a73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:08:07.000Z'}}, {'blockNum': '0x6b208e', 'uniqueId': '0x1b02c52df0a31dbe6a98994bcab24678ee0b0004780a77510a7373302bbe0386:log:1', 'hash': '0x1b02c52df0a31dbe6a98994bcab24678ee0b0004780a77510a7373302bbe0386', 'from': '0x80af4d533d298bf79280c2c9a6646cd99925009d', 'to': '0xe8561760826c16609d346f6cd4d6a741977dc7d8', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:10:21.000Z'}}, {'blockNum': '0x6b2098', 'uniqueId': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1:log:77', 'hash': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1', 'from': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 114.96299097908611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b6e973208dd4f4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:13:01.000Z'}}, {'blockNum': '0x6b2098', 'uniqueId': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1:log:81', 'hash': '0x0a074dd743e878894894ea2f398f3292262f805367fbbefb34acfc73888540e1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.96299097908611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b6e973208dd4f4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:13:01.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0:log:64', 'hash': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 212.74416660495672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b886b1c5c3cf75877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0:log:68', 'hash': '0x86cc8f77e633e664c0986da45d62b874e5fdd38991cf31d8e5332a79fb46aca0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 212.74416660495672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b886b1c5c3cf75877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9:log:79', 'hash': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 237.51752766953348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ce037c4fe5f8e7d83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9:log:83', 'hash': '0x0c68074634c55f56e79a534ac472b21a0f5b953b05357febb921e88efd8aa2b9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 237.51752766953348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ce037c4fe5f8e7d83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f:log:90', 'hash': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f', 'from': '0xe8561760826c16609d346f6cd4d6a741977dc7d8', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f:log:93', 'hash': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f:log:94', 'hash': '0x488a7c3f5b2d4bb14c7712bf0782fb95c6cc8bad1c5dc226210137a48410568f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 66917.2932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2b97fee662b6990000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5:log:116', 'hash': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 503.1950113408323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b473bccc5e6f7d434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209d', 'uniqueId': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5:log:120', 'hash': '0xbd7c6691cfde4b8fcac3f8364513a0f2d8a76c6fcffaf050c66f6aaa1d3c7de5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 503.1950113408323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b473bccc5e6f7d434', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:14:51.000Z'}}, {'blockNum': '0x6b209e', 'uniqueId': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4:log:19', 'hash': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.21939479693518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c358c064de7c7c84e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:15:03.000Z'}}, {'blockNum': '0x6b209e', 'uniqueId': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4:log:23', 'hash': '0x063537ce260627dc7868b7b8f4001606b7fef3db0392542d6a5e70c40bdcebb4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 225.21939479693518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c358c064de7c7c84e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:15:03.000Z'}}, {'blockNum': '0x6b20a2', 'uniqueId': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76:log:40', 'hash': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 292.77612486270874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fdf15be5e452a6a01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:10.000Z'}}, {'blockNum': '0x6b20a2', 'uniqueId': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76:log:44', 'hash': '0xdce69848ae6e2a63cad097ce5a665bdc944b8fc568a23e3e98de8a2d8e080f76', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 292.77612486270874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fdf15be5e452a6a01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:10.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac:log:37', 'hash': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.20541312235483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c355a5a0b9d0dfd0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac:log:41', 'hash': '0xe19703cfa2002cc750988a99079c0d68dd252a8e6bcd6edca1fc3544cca4d1ac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 225.20541312235483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c355a5a0b9d0dfd0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588:log:58', 'hash': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 6.668580485358401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c8b8e9ea9e3b6de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20a3', 'uniqueId': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588:log:62', 'hash': '0xda69085de729984e87426ed10415d85c2ddb3c64a0b90c53618629a916dce588', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8606704880234178125b2d44cbbe190ccdbde015', 'value': 6.668580485358401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c8b8e9ea9e3b6de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:16:58.000Z'}}, {'blockNum': '0x6b20ab', 'uniqueId': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d:log:126', 'hash': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 675.5792303210579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249f8b929ad6774d2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:19:02.000Z'}}, {'blockNum': '0x6b20ab', 'uniqueId': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d:log:130', 'hash': '0x5d2aedb8e688b49a459cf4c59b8feb78d2aa4444d54038ac2bd56ca2f1ca889d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 675.5792303210579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249f8b929ad6774d2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:19:02.000Z'}}, {'blockNum': '0x6b20ad', 'uniqueId': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68:log:66', 'hash': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 968.2348481867491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x347cf5307f6d72ad0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:20:20.000Z'}}, {'blockNum': '0x6b20ad', 'uniqueId': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68:log:69', 'hash': '0xc72ea731f61e0b8e68b046696618d9c974b423763c2d1066f9fa2f50d6adbe68', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 968.2348481867491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x347cf5307f6d72ad0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:20:20.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58:log:37', 'hash': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 204.2381685792557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b125fbc38fee1f740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58:log:41', 'hash': '0x442d8a12bb9902b58b7cd5de5e37b1d663b32c0a85c91599309b221bb5a40c58', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'value': 204.2381685792557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b125fbc38fee1f740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76:log:52', 'hash': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 799.2524529036976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b53db1f4b8085a557', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b4', 'uniqueId': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76:log:56', 'hash': '0xf17b755578cd65998e624114902d2e52bfe931000bd5c7adf5edb37a67270e76', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'value': 799.2524529036976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b53db1f4b8085a557', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:21:49.000Z'}}, {'blockNum': '0x6b20b5', 'uniqueId': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191:log:41', 'hash': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 217.54156045794124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bcafee0a6e3c08bd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:02.000Z'}}, {'blockNum': '0x6b20b5', 'uniqueId': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191:log:45', 'hash': '0x26d5e63722b73cdac141eca8e889f28c531eb8fc3e950a487a907ca7089de191', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 217.54156045794124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bcafee0a6e3c08bd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:02.000Z'}}, {'blockNum': '0x6b20b7', 'uniqueId': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5:log:48', 'hash': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 301.6672099341672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105a7939223d3a1c73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:32.000Z'}}, {'blockNum': '0x6b20b7', 'uniqueId': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5:log:52', 'hash': '0x2a4e08207616c2a1968e3b307713d4b75d5b34a9f41a5c7f315484eab5a2a9d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'value': 301.6672099341672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105a7939223d3a1c73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:22:32.000Z'}}, {'blockNum': '0x6b20bc', 'uniqueId': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1:log:27', 'hash': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 45.97285148460483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x027e0060d9c3a91994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:23:32.000Z'}}, {'blockNum': '0x6b20bc', 'uniqueId': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1:log:31', 'hash': '0x7acc3cc65a43d9cafd557e89919385313c70359aac28fb6300122f77b72e3cb1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5142127a6703f5fc80bf11b7b57ff68998f218e4', 'value': 45.97285148460483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x027e0060d9c3a91994', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:23:32.000Z'}}, {'blockNum': '0x6b20cb', 'uniqueId': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e:log:32', 'hash': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.512693944174604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386d27dd679d6e05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:26:58.000Z'}}, {'blockNum': '0x6b20cb', 'uniqueId': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e:log:36', 'hash': '0xc517db2ad132a948a4b2f2d38ac3bc00bfbeda1843819a38ff3a821d7755451e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 22.512693944174604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386d27dd679d6e05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:26:58.000Z'}}, {'blockNum': '0x6b20cc', 'uniqueId': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7:log:87', 'hash': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.50063481372257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04be50b3c3cd1caebf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:28:07.000Z'}}, {'blockNum': '0x6b20cc', 'uniqueId': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7:log:91', 'hash': '0xff26d8bd861b7132e5b198aecda568d5df93b35cae07d8aa83fe12bf111822c7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.50063481372257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04be50b3c3cd1caebf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:28:07.000Z'}}, {'blockNum': '0x6b20d3', 'uniqueId': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01:log:54', 'hash': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.512633203148575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386cf09f0855cd9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:10.000Z'}}, {'blockNum': '0x6b20d3', 'uniqueId': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01:log:58', 'hash': '0x2a7ea3928b37790f26ac60ea18d8af474846e0bcd879452384a646574493ed01', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 22.512633203148575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01386cf09f0855cd9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:10.000Z'}}, {'blockNum': '0x6b20d4', 'uniqueId': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed:log:51', 'hash': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 223.99939564023086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c249db788fe24b2d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:56.000Z'}}, {'blockNum': '0x6b20d4', 'uniqueId': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed:log:54', 'hash': '0x2ceae8cd512f3283d11fcb95ebd11e482be0e74dc161b6fcb428f676936a71ed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 223.99939564023086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c249db788fe24b2d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:30:56.000Z'}}, {'blockNum': '0x6b20e1', 'uniqueId': '0x337a5b410415f602215bd58b01794ebbbdfb7ab8fd777f5bce0e686e7a8866ab:log:70', 'hash': '0x337a5b410415f602215bd58b01794ebbbdfb7ab8fd777f5bce0e686e7a8866ab', 'from': '0x1c0b76fb720d5885252bde0dc2227d39a71c4a74', 'to': '0xe0f2a13fb2058ad9ea9d32c3de2b9e4391d328b1', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:34:19.000Z'}}, {'blockNum': '0x6b20e7', 'uniqueId': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401:log:44', 'hash': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2430.9416883123404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x83c817c9d6c967a10e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:35:18.000Z'}}, {'blockNum': '0x6b20e7', 'uniqueId': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401:log:47', 'hash': '0x40c30697929c46e7032a1cf494da3ec79b0158dc1f015cbe1ad60e43d77e7401', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 2430.9416883123404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x83c817c9d6c967a10e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:35:18.000Z'}}, {'blockNum': '0x6b20ec', 'uniqueId': '0x47f1dc0711d4d94bb2589addc3260576b0e8934d909a0484bdafb6574c94a73f:log:1', 'hash': '0x47f1dc0711d4d94bb2589addc3260576b0e8934d909a0484bdafb6574c94a73f', 'from': '0xe0f2a13fb2058ad9ea9d32c3de2b9e4391d328b1', 'to': '0x2fa2bc2ce6a4f92952921a4caa46b3727d24a1ec', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:06.000Z'}}, {'blockNum': '0x6b20f0', 'uniqueId': '0xf895cfcd69f6f2e6b73104ac98d8c1a52ef5c177191e118636b209e82633bd47:log:45', 'hash': '0xf895cfcd69f6f2e6b73104ac98d8c1a52ef5c177191e118636b209e82633bd47', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'value': 3623.17593213932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc469aab1df34ff00eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:49.000Z'}}, {'blockNum': '0x6b20f0', 'uniqueId': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6:log:60', 'hash': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6', 'from': '0xc7151af2e9d1a702a61fcb655e2334bfee5b5faf', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 100.88583067525013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057812787bac7dcb9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:49.000Z'}}, {'blockNum': '0x6b20f0', 'uniqueId': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6:log:64', 'hash': '0x3cde351f5a6c657adf527dbf171a4a1072bfdd38a499ee8c378cf1516237f4c6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 100.88583067525013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057812787bac7dcb9c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:37:49.000Z'}}, {'blockNum': '0x6b20f3', 'uniqueId': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce:log:39', 'hash': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce', 'from': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc46739a885f83c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:38:30.000Z'}}, {'blockNum': '0x6b20f3', 'uniqueId': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce:log:42', 'hash': '0xc4550be8d8ed41fbe84d830a5bbceeacd37c946928a904756e3d567ee7e083ce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 3623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc46739a885f83c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:38:30.000Z'}}, {'blockNum': '0x6b2101', 'uniqueId': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d:log:78', 'hash': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d', 'from': '0x6b431a7a99780819473722161ee9145e5649c5e2', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 758.9372279460495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29245eabcb8ff19c5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:41:44.000Z'}}, {'blockNum': '0x6b2101', 'uniqueId': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d:log:80', 'hash': '0x9b00bf4129ea3048237696b51a233d1526555efd2339b696f243a4bf6f20339d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 758.9372279460495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29245eabcb8ff19c5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:41:44.000Z'}}, {'blockNum': '0x6b2105', 'uniqueId': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48:log:32', 'hash': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 363.5402720220456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13b5227f48fee82f05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:43:50.000Z'}}, {'blockNum': '0x6b2105', 'uniqueId': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48:log:36', 'hash': '0xc7c387e236824d9db54bfa14ef7e534f6a3c6efcac537574bd467d55e4658c48', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 363.5402720220456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13b5227f48fee82f05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:43:50.000Z'}}, {'blockNum': '0x6b2124', 'uniqueId': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135:log:34', 'hash': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 675.3159367928558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249be42a893251780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:51:18.000Z'}}, {'blockNum': '0x6b2124', 'uniqueId': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135:log:37', 'hash': '0xab752b07aa52afbd8b407431ed43bd85a2ffae2f49c098e1a1db57c9e09be135', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 675.3159367928558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249be42a893251780f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:51:18.000Z'}}, {'blockNum': '0x6b2127', 'uniqueId': '0x74bcc6f48aaa8834529223b6e3345b8a6e462a7bb3686eb39cb4b624464354c2:log:106', 'hash': '0x74bcc6f48aaa8834529223b6e3345b8a6e462a7bb3686eb39cb4b624464354c2', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 675.0280985191921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2497e58f26abd40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:51:58.000Z'}}, {'blockNum': '0x6b2129', 'uniqueId': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990:log:8', 'hash': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.0465452170869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3325f086f959345f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:52:35.000Z'}}, {'blockNum': '0x6b2129', 'uniqueId': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990:log:12', 'hash': '0x140ca546279ff2ce0938b732962e46ef14b4b760e118b177dd3e38c912310990', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 225.0465452170869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3325f086f959345f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:52:35.000Z'}}, {'blockNum': '0x6b2131', 'uniqueId': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b:log:20', 'hash': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 225.01704366703925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c32bd2106166f4b8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:18.000Z'}}, {'blockNum': '0x6b2131', 'uniqueId': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b:log:24', 'hash': '0x42b29a73d326b8cd12caea37b3a7b771e009fbcf1f8d1792c93a1ceeedd2201b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'value': 225.01704366703925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c32bd2106166f4b8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:18.000Z'}}, {'blockNum': '0x6b2132', 'uniqueId': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333:log:26', 'hash': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5.629694425699801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e20b140b5d557ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:29.000Z'}}, {'blockNum': '0x6b2132', 'uniqueId': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333:log:30', 'hash': '0x67426a102b55aee7eb3658eb3512fe186e5ac1c1c831a998b1e2a8ada0294333', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5.629694425699801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e20b140b5d557ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T15:54:29.000Z'}}, {'blockNum': '0x6b214a', 'uniqueId': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583:log:18', 'hash': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 13.066621208635326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb555f6c2634b3e26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:29.000Z'}}, {'blockNum': '0x6b214a', 'uniqueId': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583:log:22', 'hash': '0xde2e51a488003e4e866c54e8d1ee3d214587d1ce5f6b285fa25e0cd7d9e11583', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 13.066621208635326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb555f6c2634b3e26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:29.000Z'}}, {'blockNum': '0x6b214b', 'uniqueId': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed:log:52', 'hash': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 443.5030042122533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x180ad7308d29edb9d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:50.000Z'}}, {'blockNum': '0x6b214b', 'uniqueId': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed:log:56', 'hash': '0xc70d2d9a2518a281c8bd7a41bbc40e260735ea2f6f5a0cc77413681dfae5daed', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 443.5030042122533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x180ad7308d29edb9d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:00:50.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8:log:27', 'hash': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 248.63974774886333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7a91d53a4dbaeedc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8:log:31', 'hash': '0x90d824021067e17f88abf0d33ba73912fd227959ca8d838fde80b92a466941b8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 248.63974774886333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d7a91d53a4dbaeedc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456:log:47', 'hash': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 639.0709469270865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22a4e418498581b903', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215c', 'uniqueId': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456:log:51', 'hash': '0x000557f1bfeb82ac7d448babc5319b83566567332b295385a795d238f4d3b456', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 639.0709469270865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22a4e418498581b903', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:05:56.000Z'}}, {'blockNum': '0x6b215e', 'uniqueId': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8:log:45', 'hash': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 251.54894650194086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da2f162147fecb6d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:46.000Z'}}, {'blockNum': '0x6b215e', 'uniqueId': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8:log:49', 'hash': '0x5cd315c9ae69dcf45bab89b7154690f1044b052515a89265e8f9a4da493c8ea8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 251.54894650194086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da2f162147fecb6d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:46.000Z'}}, {'blockNum': '0x6b215f', 'uniqueId': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425:log:12', 'hash': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 366.33054442073137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13dbdb893f8d26107b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:50.000Z'}}, {'blockNum': '0x6b215f', 'uniqueId': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425:log:16', 'hash': '0x25204f9f72200552bc36f63293b87da18d385b6ce5effc8b29e9e5733dfd5425', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 366.33054442073137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13dbdb893f8d26107b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:06:50.000Z'}}, {'blockNum': '0x6b2165', 'uniqueId': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d:log:34', 'hash': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 956.2840671776211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d71b7c7ce7e349b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:07:58.000Z'}}, {'blockNum': '0x6b2165', 'uniqueId': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d:log:37', 'hash': '0x606c21ea67ca32e5770051b4d23df9274f6a36719ed64ffbc2b98dc0e37c1f1d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 956.2840671776211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d71b7c7ce7e349b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:07:58.000Z'}}, {'blockNum': '0x6b2168', 'uniqueId': '0x238fa317f910322a113bc15dfbb33a268df747fd6691dda213ac2134f471c364:log:21', 'hash': '0x238fa317f910322a113bc15dfbb33a268df747fd6691dda213ac2134f471c364', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 955.9719028190431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d2c674a85f500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:08:22.000Z'}}, {'blockNum': '0x6b2172', 'uniqueId': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc:log:37', 'hash': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.93219237446544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186410411f24bb9c41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:10:00.000Z'}}, {'blockNum': '0x6b2172', 'uniqueId': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc:log:41', 'hash': '0xf1626cbba5f89f8e7f0c4aabe51e3957a83911fafbd52e5e8ffe0e9a60d8b2fc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 449.93219237446544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186410411f24bb9c41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:10:00.000Z'}}, {'blockNum': '0x6b2174', 'uniqueId': '0xeebc23a690facbfefd899ae2e07293c3c64efc690a6390a4ceb644216eb19575:log:8', 'hash': '0xeebc23a690facbfefd899ae2e07293c3c64efc690a6390a4ceb644216eb19575', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1631.000001338235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x586aac03cf0b240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:10:22.000Z'}}, {'blockNum': '0x6b2177', 'uniqueId': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804:log:51', 'hash': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.955927942861371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44c6fe34d6af36ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:19.000Z'}}, {'blockNum': '0x6b2177', 'uniqueId': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804:log:55', 'hash': '0xaf9656f657e45cde59272a75c210e3d52877278ea2d429773abf5678679cb804', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 4.955927942861371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44c6fe34d6af36ff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:19.000Z'}}, {'blockNum': '0x6b2179', 'uniqueId': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f:log:45', 'hash': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5799.295050109141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013a6162da179c7dd3ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:57.000Z'}}, {'blockNum': '0x6b2179', 'uniqueId': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f:log:49', 'hash': '0x60832f9ef7779f3269c6b0be15ab2c4c4016a00856ae423581c050897345729f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 5799.295050109141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013a6162da179c7dd3ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:11:57.000Z'}}, {'blockNum': '0x6b2184', 'uniqueId': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03:log:24', 'hash': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 448.334212364201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184de316c4cebec41f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:15:49.000Z'}}, {'blockNum': '0x6b2184', 'uniqueId': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03:log:28', 'hash': '0x68e3029cbf8c4e99ce64a8d0a12bfc088b90495724c8621c769debf282019e03', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 448.334212364201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184de316c4cebec41f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:15:49.000Z'}}, {'blockNum': '0x6b218c', 'uniqueId': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63:log:116', 'hash': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2317.9142532740357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7da785ac8445b79d0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:18:26.000Z'}}, {'blockNum': '0x6b218c', 'uniqueId': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63:log:120', 'hash': '0x5e65590f594be32ab51a83439a01636b6f20bf553802ca47dcb8997f48989c63', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2317.9142532740357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7da785ac8445b79d0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:18:26.000Z'}}, {'blockNum': '0x6b2194', 'uniqueId': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16:log:35', 'hash': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:22:28.000Z'}}, {'blockNum': '0x6b2194', 'uniqueId': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16:log:38', 'hash': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:22:28.000Z'}}, {'blockNum': '0x6b2194', 'uniqueId': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16:log:40', 'hash': '0x31f000544b6c0adf8f630dcee72a89be83a847e0f778945173776aefa6289d16', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:22:28.000Z'}}, {'blockNum': '0x6b21a3', 'uniqueId': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34:log:13', 'hash': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.27528199371903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248a2820323537602', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:27:27.000Z'}}, {'blockNum': '0x6b21a3', 'uniqueId': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34:log:17', 'hash': '0x2d523e7f3240bf3919eb89ae513022ae800e113a52bda6ca7b2dae15afef3d34', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'value': 337.27528199371903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248a2820323537602', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:27:27.000Z'}}, {'blockNum': '0x6b21b6', 'uniqueId': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5:log:102', 'hash': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 220.3687680140115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf23b22f1e99e3de5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:32:03.000Z'}}, {'blockNum': '0x6b21b6', 'uniqueId': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5:log:106', 'hash': '0x48b359a83d7d902a691b6141ecad3c8b719bdf8c3b931eee31f463163bcecff5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 220.3687680140115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf23b22f1e99e3de5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:32:03.000Z'}}, {'blockNum': '0x6b21d0', 'uniqueId': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319:log:73', 'hash': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.28786489545746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cf36183fb00b92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:37:46.000Z'}}, {'blockNum': '0x6b21d0', 'uniqueId': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319:log:77', 'hash': '0x1d89e00a0afc9a5d03e04726d0df5f9d112bf63513a19d95fbb6760e867e5319', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'value': 337.28786489545746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cf36183fb00b92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:37:46.000Z'}}, {'blockNum': '0x6b21d8', 'uniqueId': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388:log:84', 'hash': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388', 'from': '0x99f357f722ec3e456af0eb530c1c14a3251305ad', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 162.40111236231851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cdc4a7416c4b7195', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:39:48.000Z'}}, {'blockNum': '0x6b21d8', 'uniqueId': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388:log:88', 'hash': '0xb5a3195875d39cf7e53bcc7b7076acf4e048976500144072def1f4b5fa86d388', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 162.40111236231851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08cdc4a7416c4b7195', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:39:48.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a:log:56', 'hash': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1592.8932121170208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5659d580e915f7c80a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a:log:60', 'hash': '0x09c0d1443618333e3e7da184d7e738997b1547bd6f309349053da9246e2fd00a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1592.8932121170208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5659d580e915f7c80a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767:log:89', 'hash': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.7905451707992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18621905bd8ac67dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e1', 'uniqueId': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767:log:93', 'hash': '0x3cc6b8b9232cf10dc0bc04d52bd4aa5b0c4c00cfa05852f9fe88f6ef3f17a767', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 449.7905451707992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18621905bd8ac67dda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:42:28.000Z'}}, {'blockNum': '0x6b21e6', 'uniqueId': '0xe8bce40d13352ec8bb0e7c79cb8c12591c403994bfe40e933fa6e1c6dc0b7502:log:62', 'hash': '0xe8bce40d13352ec8bb0e7c79cb8c12591c403994bfe40e933fa6e1c6dc0b7502', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x31dfe0a93d0b67d77723ab7d3b3a5755cf20a59c', 'value': 3092.67100305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa7a76e9399ca442400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:44:42.000Z'}}, {'blockNum': '0x6b2219', 'uniqueId': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef:log:84', 'hash': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 447.34544373118786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18402a46ef8ef2a98b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:56:27.000Z'}}, {'blockNum': '0x6b2219', 'uniqueId': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef:log:88', 'hash': '0xfcc88391081760716be2761806ddd1ee6fa7af0d8aa0c3d75a8da7e8ef7cffef', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.34544373118786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18402a46ef8ef2a98b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T16:56:27.000Z'}}, {'blockNum': '0x6b2226', 'uniqueId': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196:log:84', 'hash': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 618.455568277443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2186cb8ea15b54f189', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:02:17.000Z'}}, {'blockNum': '0x6b2226', 'uniqueId': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196:log:87', 'hash': '0x7c36c6a41c7149c638938c60e4fc71d0787c99e63cc293db3187e04ee8219196', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x33c89e7a1e860ddeb10847200975df2f92f099ad', 'value': 618.455568277443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2186cb8ea15b54f189', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:02:17.000Z'}}, {'blockNum': '0x6b222b', 'uniqueId': '0xc7c50202c628b60f4b3fe20c87433442e56be08d2b60cb9627c82fa82d972dfb:log:54', 'hash': '0xc7c50202c628b60f4b3fe20c87433442e56be08d2b60cb9627c82fa82d972dfb', 'from': '0x33c89e7a1e860ddeb10847200975df2f92f099ad', 'to': '0xa291acae6e80a0c6fd51b984eb7152986b28b666', 'value': 619.1876224039456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2190f455fad1e237a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:03:38.000Z'}}, {'blockNum': '0x6b2231', 'uniqueId': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6:log:102', 'hash': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.44154273566114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0618709b6093fcb0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:05:00.000Z'}}, {'blockNum': '0x6b2231', 'uniqueId': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6:log:105', 'hash': '0xf94c85987fcbc0ac2d7a9088b67f11e47fb123a1b98bf67c04275dff131470b6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'value': 112.44154273566114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0618709b6093fcb0bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:05:00.000Z'}}, {'blockNum': '0x6b223a', 'uniqueId': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb:log:33', 'hash': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7.196207150608628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63de1046be273806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:06:36.000Z'}}, {'blockNum': '0x6b223a', 'uniqueId': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb:log:36', 'hash': '0x27f24ec3a224b63e43dbc14f355493a3678eb785b6fefb23e313ae073caee4fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdc8d71fde487566538c780207d2a2b988be44b31', 'value': 7.196207150608628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63de1046be273806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:06:36.000Z'}}, {'blockNum': '0x6b223d', 'uniqueId': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364:log:38', 'hash': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 140.8442658952499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07a29b599b59089ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:07:16.000Z'}}, {'blockNum': '0x6b223d', 'uniqueId': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364:log:42', 'hash': '0xe5a7ddff482f804260ae38c460255c963a9e68cd696234d6b79d3d4d5da58364', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 140.8442658952499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07a29b599b59089ab1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:07:16.000Z'}}, {'blockNum': '0x6b2241', 'uniqueId': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231:log:68', 'hash': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.30871389938335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061698b44121b8758e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:09:54.000Z'}}, {'blockNum': '0x6b2241', 'uniqueId': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231:log:70', 'hash': '0xb216d2a2f9e3233066588f716f5e2d384f72d04ac47a5f9783cb4fa4b1f4b231', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 112.30871389938335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061698b44121b8758e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:09:54.000Z'}}, {'blockNum': '0x6b2243', 'uniqueId': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6:log:18', 'hash': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6', 'from': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06124fee993bc00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:10:04.000Z'}}, {'blockNum': '0x6b2243', 'uniqueId': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6:log:21', 'hash': '0x2ca74251bff9e8aacfe5f07ec560df31bfb4ffde140cc41a18e3cd4738e044b6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06124fee993bc00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:10:04.000Z'}}, {'blockNum': '0x6b2248', 'uniqueId': '0x474ff7a8f45c8319fa99743759394cea619b59bdca5e4be9164d469c5379f141:log:89', 'hash': '0x474ff7a8f45c8319fa99743759394cea619b59bdca5e4be9164d469c5379f141', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:11:27.000Z'}}, {'blockNum': '0x6b224b', 'uniqueId': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260:log:36', 'hash': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 157.42025422284362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0888a5172adc47a2b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:12:15.000Z'}}, {'blockNum': '0x6b224b', 'uniqueId': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260:log:40', 'hash': '0xc7be9f36b05cae520ef70fa18881102d2d1bfaaefaaaf80756691dc68a980260', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'value': 157.42025422284362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0888a5172adc47a2b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:12:15.000Z'}}, {'blockNum': '0x6b224d', 'uniqueId': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c:log:57', 'hash': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:13:00.000Z'}}, {'blockNum': '0x6b224d', 'uniqueId': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c:log:60', 'hash': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:13:00.000Z'}}, {'blockNum': '0x6b224d', 'uniqueId': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c:log:61', 'hash': '0x9083f8a2b613bf5450cacd0cf26c1fdb91727d96832b3efae431cc2fae806e0c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41cfa267f3cc380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:13:00.000Z'}}, {'blockNum': '0x6b2256', 'uniqueId': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb:log:74', 'hash': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 649.366817124029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2333c65fae73cb3fbb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:15:08.000Z'}}, {'blockNum': '0x6b2256', 'uniqueId': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb:log:78', 'hash': '0x8b0801cf889383b29be48173c3159a5680af7e342960f9f7748eff7de7988feb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 649.366817124029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2333c65fae73cb3fbb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:15:08.000Z'}}, {'blockNum': '0x6b2260', 'uniqueId': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96:log:89', 'hash': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:30.000Z'}}, {'blockNum': '0x6b2260', 'uniqueId': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96:log:93', 'hash': '0xf77e3e7827a3a8e742cf5438225486bdda4238a5c8cd8ec33b7f5a2cd2a0ce96', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x303a839d243cba9dd65ca95b8db2837833e38791', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:30.000Z'}}, {'blockNum': '0x6b2261', 'uniqueId': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97:log:12', 'hash': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 570.8585444895023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ef240f5accd4f4673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:39.000Z'}}, {'blockNum': '0x6b2261', 'uniqueId': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97:log:15', 'hash': '0x7a24a1f694514bb74392abb252efbf78fdee99120f8855f07fbd6d5355068b97', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 570.8585444895023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ef240f5accd4f4673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:16:39.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489:log:24', 'hash': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489', 'from': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.90985702325062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4d01c0be21873c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489:log:27', 'hash': '0xf7a0b7a3055fb97a6b1044064ef424933ec3909e490f35d97078ac0f60fe6489', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.90985702325062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c4d01c0be21873c09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017:log:45', 'hash': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 228.98463217018323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c69ccd5bf0741aef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2265', 'uniqueId': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017:log:48', 'hash': '0x35bd3ade5be66fe3767f756a87d37e8281cd532993cc3d65c09d8365b5b71017', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 228.98463217018323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c69ccd5bf0741aef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:17:58.000Z'}}, {'blockNum': '0x6b2268', 'uniqueId': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080:log:4', 'hash': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080', 'from': '0xdc8d71fde487566538c780207d2a2b988be44b31', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f05b59d3b200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:18:23.000Z'}}, {'blockNum': '0x6b2268', 'uniqueId': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080:log:7', 'hash': '0xe9a130735e47bc8f81c5e5408702ff56b03dc24eddcd033c308d72583fedb080', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f05b59d3b200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:18:23.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948:log:41', 'hash': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 28.937239745665597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019195ba3b8cb67f2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948:log:45', 'hash': '0x897afd5b1d693d0fdbe36ab91c44c8823e2ee6b044d066e0e6451b0d4b751948', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 28.937239745665597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019195ba3b8cb67f2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb:log:72', 'hash': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 816.6806127954429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c45b86260ccb677f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226a', 'uniqueId': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb:log:75', 'hash': '0xaff29573a6249d4108405b97e006b54e9675385258ceafee2062f1927b730efb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 816.6806127954429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c45b86260ccb677f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:07.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535:log:40', 'hash': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 241.1526030763898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d12aa26d114fc42f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535:log:44', 'hash': '0x35e66126bd4d890ac2be05156eab301e6056b87681534129f9439cc2eb6bb535', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 241.1526030763898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d12aa26d114fc42f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885:log:55', 'hash': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.92952828066248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3186363e59113d12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226b', 'uniqueId': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885:log:59', 'hash': '0x0fab0e0f3fb37bdae658d3c5683b146e66a3e0c9bd3e77d06620ff1c39278885', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 224.92952828066248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3186363e59113d12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:19:14.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x342ed1f6033c8aa76f33de3f0023b0360d9b0de40c46b5e3929fef7cc24b9fff:log:39', 'hash': '0x342ed1f6033c8aa76f33de3f0023b0360d9b0de40c46b5e3929fef7cc24b9fff', 'from': '0xa291acae6e80a0c6fd51b984eb7152986b28b666', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 619.1876224039456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2190f455fad1e237a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36:log:76', 'hash': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2248.9618907540917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79ea9dac214c7e1e14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36:log:80', 'hash': '0x40c7d63411cb476fa07b036d9713b50607cf1725d94cbf0afda8b0a5828e0d36', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 2248.9618907540917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79ea9dac214c7e1e14', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837:log:108', 'hash': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 27.804421190283886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181dd25c228370464', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837:log:112', 'hash': '0x3f29539c0762dd5c96a9d1268dafe84c5c311914885882df490270ce1eb07837', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 27.804421190283886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0181dd25c228370464', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b226e', 'uniqueId': '0x54473232103e29a9761fcd08bc4df901481d4d2ed948f719b797f22f476b2326:log:142', 'hash': '0x54473232103e29a9761fcd08bc4df901481d4d2ed948f719b797f22f476b2326', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 817.013897199324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a5872c713380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:13.000Z'}}, {'blockNum': '0x6b2270', 'uniqueId': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014:log:75', 'hash': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 552.7127625516791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1df66e31249da86dc6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:49.000Z'}}, {'blockNum': '0x6b2270', 'uniqueId': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014:log:79', 'hash': '0x1185a2e96909d333f9c4952b51fd470ab24b187dbea2e443d4e494aa1957a014', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 552.7127625516791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1df66e31249da86dc6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:49.000Z'}}, {'blockNum': '0x6b2271', 'uniqueId': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f:log:52', 'hash': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 10.401407631376106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90593921b835bed4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:59.000Z'}}, {'blockNum': '0x6b2271', 'uniqueId': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f:log:56', 'hash': '0x241f2c5ee1085a6e42ab2011c26a08c5bcb5850f5cedae32fcad047394ffaa2f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 10.401407631376106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90593921b835bed4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:20:59.000Z'}}, {'blockNum': '0x6b2272', 'uniqueId': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c:log:19', 'hash': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7.591834554424923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x695b9d4dd2089621', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:21:23.000Z'}}, {'blockNum': '0x6b2272', 'uniqueId': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c:log:23', 'hash': '0xd95892fed977374b5ed58548623bdaa7f44279991302fa1108800a4245e2e44c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 7.591834554424923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x695b9d4dd2089621', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:21:23.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e:log:28', 'hash': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e:log:31', 'hash': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e:log:33', 'hash': '0x970bf15e068565da403021424fbced56ec7b4d0f5c1e1385f0bae61a17b6a66e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9:log:46', 'hash': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.31250296939635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x124926be4adcc384cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9:log:50', 'hash': '0x7a42422d92fb2e188e9563e55bc0bdeed76346a1de205c1b0482c29b42301cf9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 337.31250296939635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x124926be4adcc384cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18:log:61', 'hash': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8674275077511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30a995eb6b683fe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2277', 'uniqueId': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18:log:65', 'hash': '0x35b61b8b1acd0cefbbcea75300ee66e510c0e9ea6fda19f69923e765b80aef18', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'value': 224.8674275077511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30a995eb6b683fe9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:22:50.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d:log:21', 'hash': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 904.7759552885955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310c49e9a06371a8c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d:log:25', 'hash': '0xf0843203969f5bc87845a8c4c45742b72a7eedd13f0d77cd7badb7560a5e4b5d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 904.7759552885955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310c49e9a06371a8c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c:log:97', 'hash': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.88574911693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30eaad537a3a35a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b2279', 'uniqueId': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c:log:101', 'hash': '0xf69e083e03b461ee1829a567c576a1b6e37227a7aa0472b62789b97991fa928c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 224.88574911693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30eaad537a3a35a0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:09.000Z'}}, {'blockNum': '0x6b227a', 'uniqueId': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac:log:17', 'hash': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac', 'from': '0x51907923c3280c24b6b69b0d217ea34cabde684d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.0665398116891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18580cd6b3c58a7ca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:53.000Z'}}, {'blockNum': '0x6b227a', 'uniqueId': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac:log:19', 'hash': '0x1cd27da31c4dd62a79d72f51ab4a0b68986da2866c106f316463b3d7f46928ac', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 449.0665398116891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18580cd6b3c58a7ca1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:23:53.000Z'}}, {'blockNum': '0x6b227e', 'uniqueId': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93:log:59', 'hash': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 367.99191348329043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f2e9e79bbbceba7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:24:20.000Z'}}, {'blockNum': '0x6b227e', 'uniqueId': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93:log:63', 'hash': '0xc2cb30fc0a1de379329ae8537d1ed4fcad275caeb042d55119ad5e749090fa93', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 367.99191348329043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f2e9e79bbbceba7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:24:20.000Z'}}, {'blockNum': '0x6b2284', 'uniqueId': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00:log:28', 'hash': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1304.3455407170193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b56e3e9032bedeff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:25:15.000Z'}}, {'blockNum': '0x6b2284', 'uniqueId': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00:log:31', 'hash': '0xe04568fd974dbf0b4bc6d606592644cdfa5bd0720162e869a2c402d68ccdaf00', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'value': 1304.3455407170193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b56e3e9032bedeff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:25:15.000Z'}}, {'blockNum': '0x6b228b', 'uniqueId': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee:log:15', 'hash': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee', 'from': '0x9d7f8a2ab92ab0119e32972e3c78ed6e38042871', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:27:30.000Z'}}, {'blockNum': '0x6b228b', 'uniqueId': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee:log:18', 'hash': '0x42fcb44f53370fb0570b5f8674a8874bbd77c4ea8e4b48429a2ee9c4b6727aee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46b0a2a31ca5600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:27:30.000Z'}}, {'blockNum': '0x6b228d', 'uniqueId': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1:log:38', 'hash': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 33.17961637446366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cc75ad4ca7a4091c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:06.000Z'}}, {'blockNum': '0x6b228d', 'uniqueId': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1:log:42', 'hash': '0x1c4c3099c38098add8b331f8456bd06d41d0c0e77680d00326bbe4b7e25fcab1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 33.17961637446366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cc75ad4ca7a4091c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:06.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8:log:90', 'hash': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 688.5143622022996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25530e64847eb3d764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8:log:94', 'hash': '0x94fff9740c44a20d71932dc3ac6ab4fb0089655dd0bf1f0fc6ff06920fe2afd8', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 688.5143622022996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25530e64847eb3d764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424:log:102', 'hash': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424', 'from': '0x303a839d243cba9dd65ca95b8db2837833e38791', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424:log:105', 'hash': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424:log:107', 'hash': '0x8095764054ea4c849c73b59b18d5f8ecff2fdbe2387d471cf88d8a3c9d203424', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 0.1519136673519275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021bb4acf309dab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4:log:120', 'hash': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.7659511608545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1861c1a59e606be3ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4:log:124', 'hash': '0x372a9f1fe7d15d7f5674c64b2ef9aa529843297835ec8f2dc90542cba49ac7e4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 449.7659511608545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1861c1a59e606be3ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7:log:135', 'hash': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 9.365858930966844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81fa371344b2d5cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b228f', 'uniqueId': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7:log:139', 'hash': '0x1e5a21de2998e931c10f396f6b42821161ad0e5c79024e59c6504109381ba2c7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 9.365858930966844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x81fa371344b2d5cf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:28:21.000Z'}}, {'blockNum': '0x6b2291', 'uniqueId': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb:log:143', 'hash': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 29.892263659247398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ed6a76c0dc269c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:29:54.000Z'}}, {'blockNum': '0x6b2291', 'uniqueId': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb:log:147', 'hash': '0x95689960ac872c88c6a5b5eb0b14352ddf8ea457a3f5f8fbd6c3252c2036b6eb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 29.892263659247398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x019ed6a76c0dc269c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:29:54.000Z'}}, {'blockNum': '0x6b2294', 'uniqueId': '0x0026ec0785e26c996fd329f67c2a11cb1dcee1c44c19f54c70cfa874cf362c3c:log:26', 'hash': '0x0026ec0785e26c996fd329f67c2a11cb1dcee1c44c19f54c70cfa874cf362c3c', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 817.013897199324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a5872c713380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:17.000Z'}}, {'blockNum': '0x6b2294', 'uniqueId': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb:log:51', 'hash': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19.872377230226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0113c8ddcd722e85d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:17.000Z'}}, {'blockNum': '0x6b2294', 'uniqueId': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb:log:55', 'hash': '0x1b2ec3f97425e4e9e3ab8f591bd9bb90d48e6bd26927524967784336c8bcfedb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 19.872377230226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0113c8ddcd722e85d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:17.000Z'}}, {'blockNum': '0x6b2296', 'uniqueId': '0xc48b0ccb01a634c17363c94056a799548384f4aca94e410ccdf78d75c8c7edc7:log:45', 'hash': '0xc48b0ccb01a634c17363c94056a799548384f4aca94e410ccdf78d75c8c7edc7', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:40.000Z'}}, {'blockNum': '0x6b2297', 'uniqueId': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666:log:10', 'hash': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 23.454764884074944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0145801064b597d273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:50.000Z'}}, {'blockNum': '0x6b2297', 'uniqueId': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666:log:14', 'hash': '0x75a3e7f1e8e9b4f391c23be82ff1b19af5c6d1ce1ef016f50af49057531d7666', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 23.454764884074944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0145801064b597d273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:30:50.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1:log:31', 'hash': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 23.45469896133126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01457fd46fdfdf881f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1:log:35', 'hash': '0x1a3197ff34e302dddd6e5592225dd22bd01f2265f636ee4ec9c7096feaff32d1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 23.45469896133126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01457fd46fdfdf881f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f:log:55', 'hash': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 327.92234249636573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11c6d63117e9dc1972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f:log:59', 'hash': '0x8c162ee2aa4e2f4275abd692b3f1a370623b5bb4491a0c1af06ecaa7f6d9514f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 327.92234249636573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11c6d63117e9dc1972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b:log:74', 'hash': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 615.5640115376654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x215eaaaf1879006d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b2299', 'uniqueId': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b:log:78', 'hash': '0x3ad7fb0d6519c8cce699ec4ca9c947611bdd8d4bfdbd1279fff6ee66eda9e85b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 615.5640115376654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x215eaaaf1879006d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:10.000Z'}}, {'blockNum': '0x6b229b', 'uniqueId': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3:log:14', 'hash': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 8.485973802055826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c43c365ccefaf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:31.000Z'}}, {'blockNum': '0x6b229b', 'uniqueId': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3:log:18', 'hash': '0xfc77220909a1f0a104cbcea9a10d6960919bb2c57373733ea92a20205a8fd0d3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 8.485973802055826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c43c365ccefaf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:31.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367:log:55', 'hash': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.68469714059324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1860a0f9848a2d8b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367:log:59', 'hash': '0xfa6b1a4efd63379eddd6b31761b1de03ca4ed5f9f84b28868cfed8d4c99f3367', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'value': 449.68469714059324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1860a0f9848a2d8b91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e:log:75', 'hash': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.2476215662663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248403d0002aad897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e:log:79', 'hash': '0x7395d720d5e7213daefe9fb6831a51947cf0b749254f14d2c7515c096d43be1e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 337.2476215662663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248403d0002aad897', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7:log:91', 'hash': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19.58587004760048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010fcefd09b4308e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7:log:95', 'hash': '0x6312a8a4a7bb5ec424f3e47542747ceb55436170c4fcc6a13c9da9d3e95419d7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 19.58587004760048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010fcefd09b4308e6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb:log:115', 'hash': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 665.0045661065257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x240ccad187583c47c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229c', 'uniqueId': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb:log:119', 'hash': '0x042a405ac49f185c763e2a494bb55ddff0365dbec10dbf89604ef53ef6e238cb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 665.0045661065257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x240ccad187583c47c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:31:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3:log:53', 'hash': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8415647634875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c304db3e406a85af2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3:log:57', 'hash': '0xd36dabe31c722b936ee13a84860ba2f859e0fcc30bd5de25a92ae1cc8ea2a1e3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 224.8415647634875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c304db3e406a85af2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155:log:73', 'hash': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 817.2036300346674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4cfa83c940178306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229e', 'uniqueId': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155:log:76', 'hash': '0x278dfc3906d40b2e2fbb2b2d0e98ac4ab3ec5c49ddf91d25bcd9f637ad5b7155', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 817.2036300346674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4cfa83c940178306', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:32:51.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7:log:24', 'hash': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.81349140342283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe9f751885a3e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7:log:28', 'hash': '0x953685d163f4b0840ddbe665e488ffeddaca944e9653a7e9597e0a1f4c917ae7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 224.81349140342283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe9f751885a3e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96:log:47', 'hash': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.80743529579806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fd4735218a8003f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b229f', 'uniqueId': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96:log:51', 'hash': '0x0d54a190f68f5443ddb1a4d57f1cf716b4c8d5c0534f1dcf4b8dd595b3edea96', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 224.80743529579806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fd4735218a8003f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:15.000Z'}}, {'blockNum': '0x6b22a0', 'uniqueId': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5:log:79', 'hash': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 336.11685516493264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12388ef2f2f73a8120', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:31.000Z'}}, {'blockNum': '0x6b22a0', 'uniqueId': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5:log:83', 'hash': '0x0d478ade0e3d2a9e25394edcf482a7a5738c476b6f01683472a6496c2c0331d5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 336.11685516493264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12388ef2f2f73a8120', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:33:31.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6:log:40', 'hash': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 5.9241675066101545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5236def5ad68ec8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6:log:44', 'hash': '0x37c6a92520a575b4bbb106124f8a4d267a2853262a48eef3f6cdd897478cced6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.9241675066101545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5236def5ad68ec8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c:log:51', 'hash': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c', 'from': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c:log:54', 'hash': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a4', 'uniqueId': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c:log:55', 'hash': '0xd1e1a0d0d543031a983e42e4ff6ebf8d540a6e9243fe4bc13eac0bd4bd6ca23c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:19.000Z'}}, {'blockNum': '0x6b22a5', 'uniqueId': '0xd0757137ecfe48a50ffebc8d7caa769356181a3713c974b6e24d817e904c6efd:log:26', 'hash': '0xd0757137ecfe48a50ffebc8d7caa769356181a3713c974b6e24d817e904c6efd', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 817.0000013990432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a27149ef39c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:26.000Z'}}, {'blockNum': '0x6b22a8', 'uniqueId': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422:log:44', 'hash': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 38.232628409349594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02129594f920ca55ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:57.000Z'}}, {'blockNum': '0x6b22a8', 'uniqueId': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422:log:48', 'hash': '0xc0f845e5c1732a80145f69d50c040375feeb4e5ad97258cd2e9ae857ba28d422', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 38.232628409349594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02129594f920ca55ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:34:57.000Z'}}, {'blockNum': '0x6b22ab', 'uniqueId': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff:log:101', 'hash': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 19.16610126177903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109fbab8d1d815563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:35:34.000Z'}}, {'blockNum': '0x6b22ab', 'uniqueId': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff:log:105', 'hash': '0x70a6f7600133665ea3fc4a3471c3cda0771f21871c2fb4a82f5b90286a8bd0ff', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 19.16610126177903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109fbab8d1d815563', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:35:34.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59:log:58', 'hash': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 3987.6350262137216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd82b8d80f20e5fb795', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59:log:62', 'hash': '0x99d91b2ca06e0127d74142ccf52476ac99a0e8dc3faa452c02f2ee6ce8b0fd59', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3987.6350262137216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd82b8d80f20e5fb795', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94:log:73', 'hash': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 133.36413389141458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073acc952e47668825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b0', 'uniqueId': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94:log:77', 'hash': '0xad01776d84a2a3ec2ec6150e492530b1784a4bdd9bf2d0768a1ffdd43ffd1a94', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 133.36413389141458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x073acc952e47668825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:00.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a:log:33', 'hash': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 978.4239654989069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x350a5c34b57b66b216', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a:log:37', 'hash': '0x5d3728bd883ef656993e708996404f14efa69b68b0b5fb4537217a404d76de7a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 978.4239654989069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x350a5c34b57b66b216', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86:log:50', 'hash': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.36097639215507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1249d2f49d1558c5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86:log:54', 'hash': '0x284fd778adc2aafdbde4b320f094c635f687edaeffe33817a647c8fd13b92c86', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 337.36097639215507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1249d2f49d1558c5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b:log:65', 'hash': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4.273151563410714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b4d48b4f0802ee7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b1', 'uniqueId': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b:log:69', 'hash': '0xe357e71113b9db1012fc21817664e65b0f0a92ec464d25564d32bd55793d9d4b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 4.273151563410714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b4d48b4f0802ee7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:37:27.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:27', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:30', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa96dbfd3ef810dd8d13c330a3881e7e9c2aeb6dd', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:32', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0xa96dbfd3ef810dd8d13c330a3881e7e9c2aeb6dd', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4:log:33', 'hash': '0x16f666cd887ded931162cbb7ac10e0501adb5c66f5bcae387e499bbf4308d7d4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1686.5994708292142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6e4502bb711c41d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816:log:44', 'hash': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 7.231023111354909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6459c1354af2ff01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22b9', 'uniqueId': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816:log:48', 'hash': '0xf57d0c137ba0cba18bad2e97f5d3ad4668077d1ac61ef26302dda4755e34b816', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 7.231023111354909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6459c1354af2ff01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:33.000Z'}}, {'blockNum': '0x6b22bc', 'uniqueId': '0x7ccbfcaead905e3506d57dcaafd125f539cea0c666e0deb1b6e5d5ed07cbf9d6:log:4', 'hash': '0x7ccbfcaead905e3506d57dcaafd125f539cea0c666e0deb1b6e5d5ed07cbf9d6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 1686.456046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6c47769c23d4e000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:53.000Z'}}, {'blockNum': '0x6b22bc', 'uniqueId': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5:log:84', 'hash': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 226.31166349514618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c44b48ae5f3ecda43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:53.000Z'}}, {'blockNum': '0x6b22bc', 'uniqueId': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5:log:88', 'hash': '0x125ac5807f05f0cffb3c97c898a5ca5b98b76d62c4486b5d1a4a6309976230b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 226.31166349514618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c44b48ae5f3ecda43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:38:53.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x8a08bf2e699f9fc8dcae503433e16d0fd3cdfeb28d2795f813a966d686e97ec6:log:15', 'hash': '0x8a08bf2e699f9fc8dcae503433e16d0fd3cdfeb28d2795f813a966d686e97ec6', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 817.0000013990432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4a27149ef39c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826:log:57', 'hash': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.023767735985071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c15de089349632b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826:log:61', 'hash': '0x65be551304bbdf1e6be2e8c4623def489abb6eaf542796333e70423cbc473826', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 2.023767735985071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c15de089349632b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882:log:79', 'hash': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.287765472856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cedbab9ed84f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22bf', 'uniqueId': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882:log:83', 'hash': '0x23c8eb9377c4d0ac6b2cf66bd97bda55bc26df723866d154f93dec3fb6506882', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 337.287765472856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248cedbab9ed84f47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:40:07.000Z'}}, {'blockNum': '0x6b22ce', 'uniqueId': '0x0823eabd78c08f457d1288d4685328aa49838e56a47ae0934d868691256a0056:log:23', 'hash': '0x0823eabd78c08f457d1288d4685328aa49838e56a47ae0934d868691256a0056', 'from': '0x7ae5771ed4766124bea19ddd10094fae8afa5ecc', 'to': '0x4a87112f921295447cbd3039bf7a3b7d74e21692', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0332ca1b67940c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:42:34.000Z'}}, {'blockNum': '0x6b22cf', 'uniqueId': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71:log:33', 'hash': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71', 'from': '0x0fec04a7526f601a1019edcd5d5b003101c46a0c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 18.931255148749784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0106b954417583ff7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:42:39.000Z'}}, {'blockNum': '0x6b22cf', 'uniqueId': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71:log:37', 'hash': '0x8bb54dd676d040166b3f262e8ecc3a8fea932ed8ec84435461d530c72e231c71', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18.931255148749784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0106b954417583ff7a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:42:39.000Z'}}, {'blockNum': '0x6b22d2', 'uniqueId': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a:log:93', 'hash': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 437.1622650188606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17b2d85bd9865c2be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:43:26.000Z'}}, {'blockNum': '0x6b22d2', 'uniqueId': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a:log:97', 'hash': '0x834f0a45e5e51a72eb6c93a55f3976dbf134dcb40c4bb2576e221540f90f1f9a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 437.1622650188606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17b2d85bd9865c2be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:43:26.000Z'}}, {'blockNum': '0x6b22d3', 'uniqueId': '0xf8f2550a82d1b7776668f4d3502078d014ec369b111e94e3a5071f05f6c91ef2:log:11', 'hash': '0xf8f2550a82d1b7776668f4d3502078d014ec369b111e94e3a5071f05f6c91ef2', 'from': '0x4a87112f921295447cbd3039bf7a3b7d74e21692', 'to': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'value': 59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0332ca1b67940c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:43:59.000Z'}}, {'blockNum': '0x6b22d7', 'uniqueId': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc:log:27', 'hash': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8632262600858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c309aa8e838b406ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:44:48.000Z'}}, {'blockNum': '0x6b22d7', 'uniqueId': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc:log:31', 'hash': '0xadcae4ca16d3157067516a969715b3094b7c2a16c77a18c35b6e3a0d1e28dccc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 224.8632262600858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c309aa8e838b406ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:44:48.000Z'}}, {'blockNum': '0x6b22e2', 'uniqueId': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3:log:66', 'hash': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 337.28347899218403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248bfa123910e343e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:46:36.000Z'}}, {'blockNum': '0x6b22e2', 'uniqueId': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3:log:70', 'hash': '0x8d59d8b88eb78f4b159c86f7e90b2bf2df58eac65c1a4e84e3aa1b67a479e0b3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4f138e1ceec7b33dfa4f3051594ec016a08c7513', 'value': 337.28347899218403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1248bfa123910e343e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:46:36.000Z'}}, {'blockNum': '0x6b22e4', 'uniqueId': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045:log:80', 'hash': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045', 'from': '0xba2be1cd1f00470c21385b7cbed6211aefac0172', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 66.83644810252602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039f8ac36f3fe4e7a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:34.000Z'}}, {'blockNum': '0x6b22e4', 'uniqueId': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045:log:84', 'hash': '0xf6a22df22c3cabd995d491410845f85545eae29f4ab701ee242e15a90db93045', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 66.83644810252602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039f8ac36f3fe4e7a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:34.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6:log:65', 'hash': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 27.20057259834356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01797bd8a9d37de353', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6:log:69', 'hash': '0x5ef9802c7bdb3299d70666b396df088d89192fcf219ab8fb4d2ecfef8d3b56e6', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 27.20057259834356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01797bd8a9d37de353', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2:log:94', 'hash': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 677.1024429748314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b4af1c717004a9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e5', 'uniqueId': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2:log:97', 'hash': '0x5bf46e4c2aead35e0e09c7bdc6e0414ec7329ba3d5d3fdae0a2193118ccfe1b2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'value': 677.1024429748314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b4af1c717004a9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:47:44.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245:log:32', 'hash': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.8309047953606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3027d4b4c922ea39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245:log:36', 'hash': '0x7de8aaf2d738b47008dd6a3626624f52f774c941b0f0727dce52c416a0fef245', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 224.8309047953606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c3027d4b4c922ea39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3:log:52', 'hash': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.82484769741052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30124fcec5740315', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3:log:56', 'hash': '0xdee863d1a28ae1c695c59fa5675d1b9a56baf4ffed7f3745971e6e1330d6fed3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 224.82484769741052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c30124fcec5740315', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7:log:74', 'hash': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 27.196811593940662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01796e7c0cc00efdee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e7', 'uniqueId': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7:log:78', 'hash': '0xc2f33748997df87f3318b9694d11c0fe0070d8903e0c9d9ef944ab7a53d04be7', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0cfbed1bd80bd8a740f24ec5fca8e8d1a9f87052', 'value': 27.196811593940662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01796e7c0cc00efdee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:21.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9:log:85', 'hash': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 238.42374164573488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ceccb49cdbd88eaa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9:log:89', 'hash': '0x8c19badf923aec107002f1360898624195bce203672f0228a1322103651bdfa9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 238.42374164573488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ceccb49cdbd88eaa2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63:log:100', 'hash': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.81163539286783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe35f4966855458', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63:log:104', 'hash': '0x5070292ff6cbecd003fe055b32c87f56632b864bd68de10cc04ebdc22f449c63', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 224.81163539286783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2fe35f4966855458', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06:log:119', 'hash': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.605103123899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185f86332e66df4f5a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22e9', 'uniqueId': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06:log:123', 'hash': '0x1903c7ed30c702bad60541666fa1efc1c39a8e415a44d23d02dd7bce2a103a06', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 449.605103123899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185f86332e66df4f5a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:54.000Z'}}, {'blockNum': '0x6b22ea', 'uniqueId': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b:log:10', 'hash': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 241.62486342438797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d1937f519e0eb58cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:59.000Z'}}, {'blockNum': '0x6b22ea', 'uniqueId': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b:log:14', 'hash': '0x6c51282f360c8451e7f08292d63aa3fbf90bc4de95f593931aa8157705f3155b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 241.62486342438797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d1937f519e0eb58cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:48:59.000Z'}}, {'blockNum': '0x6b22eb', 'uniqueId': '0x2934b2a7fbbafa5de43182ef5971b10f60ae054e36a80098ac599fff54009b32:log:55', 'hash': '0x2934b2a7fbbafa5de43182ef5971b10f60ae054e36a80098ac599fff54009b32', 'from': '0xf71b07e4e52d5218befbfd1ad8b388fbc035a0bd', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 677.0140000091819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b374e608d1980000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:49:06.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0:log:31', 'hash': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 299.4838504595425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103c2c5f426f3ccc30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0:log:35', 'hash': '0x1ca387d85bfb30386bf65c69e83ee7ff3991d98193a294e22bc53fa161027ee0', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 299.4838504595425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x103c2c5f426f3ccc30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc:log:52', 'hash': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 567.3703111210463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1d843e868d1e6e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc:log:56', 'hash': '0x191044884ff932a117fba396fdb25011d57a48bfb7d6b4c7a6a1d42b856d99bc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'value': 567.3703111210463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec1d843e868d1e6e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2:log:68', 'hash': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2', 'from': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 170.32982151686636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093bcd163938818767', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2:log:72', 'hash': '0x330e7a39d501bca19a8594a0d6483930e6475d079d9a1cd3a3475647baa779e2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 170.32982151686636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093bcd163938818767', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4:log:84', 'hash': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 44.95672747280974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fe6617210de890f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4:log:88', 'hash': '0xdf8e259e049e8c28bb771bfc5bf6c2a93c86849a0b1ad4aac9ba2a93e04dd8c4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc31db08240a11df6a4c159ff4e6d69f484fc3828', 'value': 44.95672747280974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026fe6617210de890f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca:log:103', 'hash': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 292.21282551234435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fd7448097f47cbfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b22fd', 'uniqueId': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca:log:107', 'hash': '0xcdc616142f03ac072995dbf22bc478c5addb7173b0334366b0e39ebe1bc14aca', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 292.21282551234435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fd7448097f47cbfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:52:19.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538:log:29', 'hash': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1499.558460870627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514a8ddb291d375168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538:log:32', 'hash': '0x62a51982fac7e74765ffe41eb74d9f5d501a378d0bfebc16cf4fec3bda49e538', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 1499.558460870627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514a8ddb291d375168', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415:log:40', 'hash': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.53182993686548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0922d956685d68f049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415:log:44', 'hash': '0xbe21606537a1127171a5765672be257ea3236a86c8fbfbd0936eaee88113f415', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 168.53182993686548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0922d956685d68f049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d:log:68', 'hash': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 409.2708462478362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x162fc62240a5c97332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2305', 'uniqueId': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d:log:72', 'hash': '0x8d5f6694b4f92f8f01228a0afb9f3a1d785dcd35577c44b713b199d06a73a23d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 409.2708462478362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x162fc62240a5c97332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:34.000Z'}}, {'blockNum': '0x6b2306', 'uniqueId': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b:log:19', 'hash': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1235.864184653517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42ff0f980da4a39b9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:55.000Z'}}, {'blockNum': '0x6b2306', 'uniqueId': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b:log:22', 'hash': '0xcb148c03180219a2e1aceec7669a90b098cd9bc59212105aa13a2bb88ec4cc8b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'value': 1235.864184653517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42ff0f980da4a39b9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:53:55.000Z'}}, {'blockNum': '0x6b230a', 'uniqueId': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29:log:53', 'hash': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.2788487597403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb3cc286195cde45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:54:50.000Z'}}, {'blockNum': '0x6b230a', 'uniqueId': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29:log:57', 'hash': '0x946048ac6a6a4ec6475d02b1c0fbe9fa1ac8ca17c27684babbfcde833f06ee29', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.2788487597403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04bb3cc286195cde45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:54:50.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855:log:21', 'hash': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855', 'from': '0x75cb35f73659474e4cfbd4ba41027dd991b901db', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855:log:24', 'hash': '0x6bbf0f6ec70a784069bdc7feeb1cfdcd8b479983acd6a372a3775ecc92cdb855', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f31164b0876c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309:log:49', 'hash': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309', 'from': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 858.0276728651355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e8386a672057956b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309:log:53', 'hash': '0x254f45800f55e81262674874cff459782edfcddbe4e03197b7b1c531cbf16309', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 858.0276728651355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e8386a672057956b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88:log:65', 'hash': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 179.76529890758604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09bebea2eb48950599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2311', 'uniqueId': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88:log:69', 'hash': '0xd288b2c475376d631bfb27fd83eadc68c35a3af6a6d391ef6719aa610a7aea88', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'value': 179.76529890758604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09bebea2eb48950599', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:16.000Z'}}, {'blockNum': '0x6b2312', 'uniqueId': '0x2ae93424a7a1454565ec2f2bf43f615fa12a4071c193961d385a231951584bfc:log:52', 'hash': '0x2ae93424a7a1454565ec2f2bf43f615fa12a4071c193961d385a231951584bfc', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xb7f6a37b2f6869752659a33f3288455e46bc3902', 'value': 1499.55846087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x514a8ddb28f7da3c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:29.000Z'}}, {'blockNum': '0x6b2316', 'uniqueId': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31:log:30', 'hash': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 1220.9737021769345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x423069f9224dc5c6fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:55.000Z'}}, {'blockNum': '0x6b2316', 'uniqueId': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31:log:33', 'hash': '0xa562b13b09a764fa2ee20383bef5ccc394acefcf2d9fdd007a99b025eca5bc31', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'value': 1220.9737021769345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x423069f9224dc5c6fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:57:55.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01:log:73', 'hash': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 449.33056814225205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185bb6db11eb6214f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01:log:77', 'hash': '0x16cbda803a25e96eb28e77b541450a107aa1853f5e6d46ac17347bb643919e01', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 449.33056814225205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185bb6db11eb6214f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd:log:89', 'hash': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 643.9447497190929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e887521aa05aa811', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2317', 'uniqueId': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd:log:93', 'hash': '0x7ea60b0b3f225533bfe23f204908be8bc71d919ba080e52e29dee172142583fd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 643.9447497190929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e887521aa05aa811', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:58:31.000Z'}}, {'blockNum': '0x6b2319', 'uniqueId': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda:log:39', 'hash': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda', 'from': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 974.5161362679869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34d420ceba5b85b558', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:59:02.000Z'}}, {'blockNum': '0x6b2319', 'uniqueId': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda:log:43', 'hash': '0x79e7aa8e04e2e4fd19fc835f5c4c3b8dab65ea5162266a1439be7255222edfda', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 974.5161362679869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34d420ceba5b85b558', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:59:02.000Z'}}, {'blockNum': '0x6b231c', 'uniqueId': '0x76fe4a53cf1909320d879c2c6df5284756cc951692b2b8a45422588e40c566be:log:71', 'hash': '0x76fe4a53cf1909320d879c2c6df5284756cc951692b2b8a45422588e40c566be', 'from': '0xa518eb50f76d9f4737ad05b5761cb1b5f08c900e', 'to': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'value': 1220.9737021769345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x423069f9224dc5c6fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T17:59:53.000Z'}}, {'blockNum': '0x6b231f', 'uniqueId': '0x58cce4ce23017214ead66c1ea519b4c18bd424a2e1a1294f0aa3c17a399a2dc5:log:11', 'hash': '0x58cce4ce23017214ead66c1ea519b4c18bd424a2e1a1294f0aa3c17a399a2dc5', 'from': '0x2051dd2bab0ae6c75dee40546e5ffa196ccc2448', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 132.33431128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x072c81eaf8d05e6000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:00:33.000Z'}}, {'blockNum': '0x6b231f', 'uniqueId': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970:log:27', 'hash': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 221.30550447514918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bff3b17cb17e3366c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:00:33.000Z'}}, {'blockNum': '0x6b231f', 'uniqueId': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970:log:31', 'hash': '0x9af78743876c9f23ea24beebc1519825d7a562077293116ad51d5b9a39dbd970', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 221.30550447514918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bff3b17cb17e3366c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:00:33.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb:log:66', 'hash': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 44.934697558665704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026f981d5af9e1b0dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb:log:70', 'hash': '0x1dd9331e22fcbbe88758b78ddd04ec7fc4c9b61382e11c8a08787b71ada815fb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 44.934697558665704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026f981d5af9e1b0dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2:log:77', 'hash': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2', 'from': '0x77521132fad812cedb7dd5b4f34835e71821b4eb', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4230c766dd5ff40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2322', 'uniqueId': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2:log:80', 'hash': '0x6d75d335dfd0a17d591ca83ba27066da7537e1ada0f811f52c1e8114b3d451e2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 1221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4230c766dd5ff40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:01:53.000Z'}}, {'blockNum': '0x6b2323', 'uniqueId': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c:log:85', 'hash': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.66985887672485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debae4be453cf8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:02:39.000Z'}}, {'blockNum': '0x6b2323', 'uniqueId': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c:log:89', 'hash': '0x65b50c91b2d75acd6e3d424a42999c4081a03a5d218999620daf388ac42d304c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 224.66985887672485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debae4be453cf8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:02:39.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5:log:89', 'hash': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 126.27335474046538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06d865131c8e539fc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5:log:93', 'hash': '0xabeaec43a49f3aa3ca477e7c2f09d091928ede4268e5e0c1c19c42557aeec1b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 126.27335474046538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06d865131c8e539fc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a:log:108', 'hash': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.33096186259063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616e7bea8b9aa8ee8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2328', 'uniqueId': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a:log:112', 'hash': '0xd3ef6830f1ca42a6cba0c593c7ac6b233bb8c0d35e6c4cb4cf6c83c0edef7e8a', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 112.33096186259063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616e7bea8b9aa8ee8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:03:18.000Z'}}, {'blockNum': '0x6b2333', 'uniqueId': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab:log:51', 'hash': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 81.90495366671198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0470a8d968a931fcab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:43.000Z'}}, {'blockNum': '0x6b2333', 'uniqueId': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab:log:55', 'hash': '0xa2d73b03eafbfc1e488831d381f659a106ed67561c018b652409f970478141ab', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 81.90495366671198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0470a8d968a931fcab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:43.000Z'}}, {'blockNum': '0x6b2334', 'uniqueId': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b:log:21', 'hash': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 134.79383570081757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ea3e766cb99253d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:46.000Z'}}, {'blockNum': '0x6b2334', 'uniqueId': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b:log:25', 'hash': '0xec6214e6b1a2941f97bdd1723636dfc67b1254d91ce97c6440fdd5386b95e88b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 134.79383570081757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ea3e766cb99253d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:46.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725:log:37', 'hash': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 110.94485840206211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0603ab50e7d6ec8efc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725:log:41', 'hash': '0xa930f6f77662caad54d03c69f94e192093da5454fd6505a561fa22a1116a0725', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 110.94485840206211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0603ab50e7d6ec8efc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1:log:52', 'hash': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 682.3318552991844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fd41b73ed920a35e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1:log:56', 'hash': '0xc26e35373768f8e418980436751872db8db4c9957e8b75d81792fd31ec842ff1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 682.3318552991844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fd41b73ed920a35e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2335', 'uniqueId': '0xe574b20d5810740072dc7cbbb2cc8b1197a1bb2e2373ecb690464cb7f84fd679:log:74', 'hash': '0xe574b20d5810740072dc7cbbb2cc8b1197a1bb2e2373ecb690464cb7f84fd679', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 677.0140000091819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b374e608d1980000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:09:57.000Z'}}, {'blockNum': '0x6b2339', 'uniqueId': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943:log:21', 'hash': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 450.00321498311763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18650c93ced477d7aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:10:38.000Z'}}, {'blockNum': '0x6b2339', 'uniqueId': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943:log:26', 'hash': '0xf1b4a5cbf1cad900d2353aa5fb8345a6d1cc348c3a69b147a0d7f12f141cf943', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 450.00321498311763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18650c93ced477d7aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:10:38.000Z'}}, {'blockNum': '0x6b233a', 'uniqueId': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90:log:63', 'hash': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 23.967250193644336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014c9cc71133152f6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:11.000Z'}}, {'blockNum': '0x6b233a', 'uniqueId': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90:log:67', 'hash': '0x3fbaba1a9dfd7690dee0faf9c55edd7efd3d458b59543e40330b4b9070abba90', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 23.967250193644336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014c9cc71133152f6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:11.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14:log:49', 'hash': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 719.0605391542651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26faf8369d62d52b39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14:log:54', 'hash': '0xe3774e0d589b65243cb8bddbcb192c21f1587fc9f9e76a0ff5329ffa1b453e14', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 719.0605391542651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26faf8369d62d52b39', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828:log:68', 'hash': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.33753313901074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616ff17333e68642d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233b', 'uniqueId': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828:log:72', 'hash': '0xc1490ea6598c05e53240c8899260c40936791897d40780217dce0305ce3d9828', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 112.33753313901074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0616ff17333e68642d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:19.000Z'}}, {'blockNum': '0x6b233c', 'uniqueId': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc:log:93', 'hash': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 542.3694314180254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d66e34c473dfee476', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:34.000Z'}}, {'blockNum': '0x6b233c', 'uniqueId': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc:log:97', 'hash': '0xec85f573fe4edab8e225583288dced0f2d1ea581e006e3158b82bf7d42ac96fc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 542.3694314180254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d66e34c473dfee476', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:34.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9:log:42', 'hash': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.468785310832722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137d129320ab2fcf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9:log:46', 'hash': '0x0c4aca43a9e69843ee32e4f43ea089a0a0817228a42e272d5ea61fef3977c8c9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc02d4bd00f642d2821e4279c810dd7b6e49264f8', 'value': 22.468785310832722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137d129320ab2fcf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002:log:60', 'hash': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 253.49468124734184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbdf20585a6afa18e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b233e', 'uniqueId': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002:log:64', 'hash': '0xf09783d183f1417110bdd66251fcd42ac79c7b3917a5fb9034e61ef26a551002', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xdd7de51c4f6faf10afce495f1ef02e5baa91379c', 'value': 253.49468124734184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dbdf20585a6afa18e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:11:50.000Z'}}, {'blockNum': '0x6b2348', 'uniqueId': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1:log:68', 'hash': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 423.50091352384925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16f5417d0bc2754004', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:14:03.000Z'}}, {'blockNum': '0x6b2348', 'uniqueId': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1:log:72', 'hash': '0x5176b370b67a60bfd1b7a46885357a9058da37f17f0369c870bfa87d6a2eeab1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 423.50091352384925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16f5417d0bc2754004', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:14:03.000Z'}}, {'blockNum': '0x6b2349', 'uniqueId': '0x626f6f5a11ae038f13f3dbfd073dd393fd054f91021d3ae1d66eebba7ec02b16:log:0', 'hash': '0x626f6f5a11ae038f13f3dbfd073dd393fd054f91021d3ae1d66eebba7ec02b16', 'from': '0xb5f4d354759a310314259c63268356a9fdcae1b7', 'to': '0x54c4bdcc5303911cc1ccd9ccd74ff722eb56c596', 'value': 1842.9608901571594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63e8385d2c3330bd1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:14:26.000Z'}}, {'blockNum': '0x6b234a', 'uniqueId': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51:log:24', 'hash': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51', 'from': '0x8606704880234178125b2d44cbbe190ccdbde015', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 295.4340575675368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1003f89e14b955ec51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:01.000Z'}}, {'blockNum': '0x6b234a', 'uniqueId': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51:log:26', 'hash': '0x78ed7a55b09e2ec6175f0e176ca2fd6dcba350184c4f39e2e65b48e1dad67c51', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 295.4340575675368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1003f89e14b955ec51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:01.000Z'}}, {'blockNum': '0x6b234b', 'uniqueId': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207:log:83', 'hash': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 168.50581241729014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09227ce79c892f94f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:08.000Z'}}, {'blockNum': '0x6b234b', 'uniqueId': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207:log:87', 'hash': '0x45f4a3a9652f0a1240e3f8530c09770a471337effc808027c3591c9588cd4207', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'value': 168.50581241729014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09227ce79c892f94f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:15:08.000Z'}}, {'blockNum': '0x6b234c', 'uniqueId': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489:log:24', 'hash': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 706.276474171816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26498e173f0271459e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:01.000Z'}}, {'blockNum': '0x6b234c', 'uniqueId': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489:log:28', 'hash': '0xa4b55da1353cf185eac944d96fb48c9db31cd51ca5c11e14a543aa0806be6489', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x599485dc0f3d8b308b973b2db5cd44bae46d31c4', 'value': 706.276474171816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26498e173f0271459e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:01.000Z'}}, {'blockNum': '0x6b2351', 'uniqueId': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b:log:9', 'hash': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 26.554916820858022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01708604279349a82b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:58.000Z'}}, {'blockNum': '0x6b2351', 'uniqueId': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b:log:12', 'hash': '0xa5727489e46170e5a555354d0f96f9dc2811c16bee28fca8b0a46e322be0d00b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 26.554916820858022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01708604279349a82b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:16:58.000Z'}}, {'blockNum': '0x6b235d', 'uniqueId': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e:log:67', 'hash': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 67.4026869689148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76672aef904597d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:18:23.000Z'}}, {'blockNum': '0x6b235d', 'uniqueId': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e:log:71', 'hash': '0xf20b28b4843f38b1df086d2e6f5363a58ffdbde834feb8438eafed9b8971538e', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 67.4026869689148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76672aef904597d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:18:23.000Z'}}, {'blockNum': '0x6b2367', 'uniqueId': '0x96a53ff5ab3f2441c6c5e51aef1a308e7cc79627428a9aea1867bf4224efb948:log:47', 'hash': '0x96a53ff5ab3f2441c6c5e51aef1a308e7cc79627428a9aea1867bf4224efb948', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x173b58d0a312631fb8caf130bfb9dc3d67856565', 'value': 1232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42c96f409591400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:19:59.000Z'}}, {'blockNum': '0x6b237a', 'uniqueId': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb:log:41', 'hash': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 67.40214261379911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76483986bb71fee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:24:35.000Z'}}, {'blockNum': '0x6b237a', 'uniqueId': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb:log:45', 'hash': '0xe5c359c6e3364ca29e4f58967c38a3d9a95e2e6cf796cfdc02ad17b3698202bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 67.40214261379911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a76483986bb71fee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:24:35.000Z'}}, {'blockNum': '0x6b237d', 'uniqueId': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f:log:17', 'hash': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:25:42.000Z'}}, {'blockNum': '0x6b237d', 'uniqueId': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f:log:20', 'hash': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:25:42.000Z'}}, {'blockNum': '0x6b237d', 'uniqueId': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f:log:22', 'hash': '0xc2805b9efc4584c08b8b9dfab6909ff1cfb490cbc500235beecd6b617242982f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:25:42.000Z'}}, {'blockNum': '0x6b238d', 'uniqueId': '0x59c440416c3dc6f3ed9ece4bec9f41da8a4bebef72285f837bbb6ad379b9d672:log:3', 'hash': '0x59c440416c3dc6f3ed9ece4bec9f41da8a4bebef72285f837bbb6ad379b9d672', 'from': '0x54c4bdcc5303911cc1ccd9ccd74ff722eb56c596', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1842.9608901571594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x63e8385d2c3330bd1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:30:15.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c:log:44', 'hash': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.6698773782121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debbf1f9ae6dc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c:log:48', 'hash': '0x8a8239f84d17209d5f027e0efc6c1fa16685df4e00bcd8f9d84e29e3f1a99f6c', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 224.6698773782121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2debbf1f9ae6dc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580:log:59', 'hash': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 26.95997885681835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01762515ee20b311fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2394', 'uniqueId': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580:log:63', 'hash': '0x5248842a2831f31698549ce3bea25e04fa10188b821b4287f1c7f306f1e38580', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 26.95997885681835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01762515ee20b311fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:31:29.000Z'}}, {'blockNum': '0x6b2399', 'uniqueId': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847:log:15', 'hash': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 386.79881754135147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f7e97334b5629363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:37.000Z'}}, {'blockNum': '0x6b2399', 'uniqueId': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847:log:18', 'hash': '0xc758a9d2966dc4de0f8403c9d5a2d94f4c7f5a4c05b5ebf40942b1a29ef44847', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 386.79881754135147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f7e97334b5629363', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:37.000Z'}}, {'blockNum': '0x6b239a', 'uniqueId': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9:log:55', 'hash': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9', 'from': '0x32d4fb837f41955b81556f74dadb2c5b8a0d0989', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.512427822442228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ddefcb087a28c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:42.000Z'}}, {'blockNum': '0x6b239a', 'uniqueId': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9:log:59', 'hash': '0x7c611dfe82c6f650cd28b92c81ae82d0b9b2edc121e9288fc701282debdc59a9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.512427822442228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22ddefcb087a28c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:42.000Z'}}, {'blockNum': '0x6b239b', 'uniqueId': '0x3ba7b8435ac9c8ebd788f23e7ac90df0a25b029358fc5e267003003e892f2812:log:78', 'hash': '0x3ba7b8435ac9c8ebd788f23e7ac90df0a25b029358fc5e267003003e892f2812', 'from': '0x5c4c0b176825311452764a2e7327c6b0273b2db2', 'to': '0xd45f856e676e7c606ccf73c6130e497a96f795e9', 'value': 0.0993638726030607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016102ea6a0339dc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:33:50.000Z'}}, {'blockNum': '0x6b23a7', 'uniqueId': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3:log:22', 'hash': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 674.0026071215254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2489aa48287db05ffb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:36:20.000Z'}}, {'blockNum': '0x6b23a7', 'uniqueId': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3:log:26', 'hash': '0xd838912101c19573b6ff7522527caddb2af798071b3eb2f8a376c2b3020cd2c3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 674.0026071215254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2489aa48287db05ffb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:36:20.000Z'}}, {'blockNum': '0x6b23aa', 'uniqueId': '0xd01447b9aa0a96ec1604800366ae894cee3ca8764b90c6b62607e7d310f76f19:log:95', 'hash': '0xd01447b9aa0a96ec1604800366ae894cee3ca8764b90c6b62607e7d310f76f19', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x707457bda53e824c2fef1832d79783c8e7851f86', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:36:46.000Z'}}, {'blockNum': '0x6b23bb', 'uniqueId': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145:log:39', 'hash': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 746.7313272556684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x287afa99c97214168e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:41:26.000Z'}}, {'blockNum': '0x6b23bb', 'uniqueId': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145:log:43', 'hash': '0x5ed8ac9e171317bcac29bb78d0cb050f65661d825183a83cdfcdc3bcf6c88145', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 746.7313272556684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x287afa99c97214168e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:41:26.000Z'}}, {'blockNum': '0x6b23be', 'uniqueId': '0xc8b383f4c42288533139a2cad131639eb4b23a45007479cabc630cede1a3ade3:log:44', 'hash': '0xc8b383f4c42288533139a2cad131639eb4b23a45007479cabc630cede1a3ade3', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x707457bda53e824c2fef1832d79783c8e7851f86', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:42:22.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3:log:26', 'hash': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 893.3198852976733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306d4dc6aaa8838690', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3:log:30', 'hash': '0xd6facd90b9c35ca7bdf1672321c106e9635755591f85d84fbf096e7b619281a3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 893.3198852976733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306d4dc6aaa8838690', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46:log:46', 'hash': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4999.465028986442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0583cb8fecdb67ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46:log:49', 'hash': '0x76f2a70bd6cc1dc73b5766406dc85745edb3ba55da219ff5d54789cec40dda46', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4999.465028986442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0583cb8fecdb67ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994:log:55', 'hash': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 91.07915747143707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04effa2b2986df2ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23ce', 'uniqueId': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994:log:59', 'hash': '0x18e55b6118ea96b0b1865b8738a5334e616bc8e7a678e41fe8213bb28968f994', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 91.07915747143707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04effa2b2986df2ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:45:41.000Z'}}, {'blockNum': '0x6b23da', 'uniqueId': '0x2663c6d0072d8f09f66f86fe3b78e000fcf8da1f1f2901d34c951b22829ff984:log:15', 'hash': '0x2663c6d0072d8f09f66f86fe3b78e000fcf8da1f1f2901d34c951b22829ff984', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x0826c21016ba7a0d663ca520349bee75ec4e79df', 'value': 488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a745c467716a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:49:06.000Z'}}, {'blockNum': '0x6b23de', 'uniqueId': '0x1789c7a439dbb16a4476d1bd7b3f7a7dac5281585bd107705e53cb4caf13df90:log:69', 'hash': '0x1789c7a439dbb16a4476d1bd7b3f7a7dac5281585bd107705e53cb4caf13df90', 'from': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'to': '0x77e987a77e75d8d73a65b1d4e041c6fe059bf0ef', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:49:38.000Z'}}, {'blockNum': '0x6b23ea', 'uniqueId': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd:log:22', 'hash': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd', 'from': '0x69e37aba9b520a204bb0baebd76b0ac1a2390b37', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 454.85557423247093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a8639ed618c06e81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:07.000Z'}}, {'blockNum': '0x6b23ea', 'uniqueId': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd:log:26', 'hash': '0xa5a4ff37fda41a6e439d24bd4a451633119a9fa27f4f5485623398a005506fbd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 454.85557423247093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a8639ed618c06e81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:07.000Z'}}, {'blockNum': '0x6b23eb', 'uniqueId': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135:log:25', 'hash': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135', 'from': '0x77e987a77e75d8d73a65b1d4e041c6fe059bf0ef', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:26.000Z'}}, {'blockNum': '0x6b23eb', 'uniqueId': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135:log:26', 'hash': '0xa2e2b194ebdf7fa7d4bd154f0447c1e7690e60edf0cbeeb88f5be3b213bc1135', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:53:26.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53:log:27', 'hash': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 220.91600894412633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf9d353abe7ab1aaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53:log:31', 'hash': '0x927dea51da6a3db46afe5fff431898fbd57921fc95575629e3f0befa0664ae53', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 220.91600894412633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf9d353abe7ab1aaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1:log:43', 'hash': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.48064072117745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b4b7162f1dea61a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23ef', 'uniqueId': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1:log:47', 'hash': '0x0c6dc0a97f9a3d9eb96c2555987ebbbe691716ce79e517f998856367745e37a1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.48064072117745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b4b7162f1dea61a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:54:40.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf:log:46', 'hash': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf', 'from': '0xb117b0216e247af88e13b0d6a0c2a08463f01fc7', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.188906513062324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0133eed4e9696e6f77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf:log:50', 'hash': '0x003a4c8c4b163fbf9779bec1116c5599dd435aa7dc6df6da5702973dbe17a5cf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 22.188906513062324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0133eed4e9696e6f77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1:log:113', 'hash': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.47520026847718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b381d52d740b9ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23f4', 'uniqueId': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1:log:117', 'hash': '0x1922e765973488e47e545ae0203ebb402d29ab52b7d1d0e9374a16787980e8f1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 224.47520026847718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2b381d52d740b9ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:55:14.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc:log:34', 'hash': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc', 'from': '0x707457bda53e824c2fef1832d79783c8e7851f86', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc:log:37', 'hash': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc:log:38', 'hash': '0x48073b82499485d5273da3a75380b7bb9406884074c07914d7da360c01c80fdc', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 740, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x281d901f4fdd100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04:log:50', 'hash': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 213.26475527051605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b8fa49cfe51b968c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04:log:54', 'hash': '0x5498222c899294267543d20305c8e9a8f8584cd3565bfe53bed4d829f02f8e04', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 213.26475527051605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b8fa49cfe51b968c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5:log:78', 'hash': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 448.70321917757104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853021082ad5d224a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23fb', 'uniqueId': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5:log:82', 'hash': '0x9a1a58659d9c11ea80068c6e1025416f73ce0c373f5fd3507cc1f620a5e9f3b5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 448.70321917757104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853021082ad5d224a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:56:43.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06:log:49', 'hash': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 87.0376018127681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7e3adb427f01ec4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06:log:53', 'hash': '0x9035c17a74d0b7f0d1bc584117827ecfdb98f12619167d511d96bca56ceecf06', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x92841565d372324095966320a11df1130810d3f3', 'value': 87.0376018127681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b7e3adb427f01ec4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2:log:69', 'hash': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 112.23638555591972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061597be025e60f282', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b23ff', 'uniqueId': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2:log:73', 'hash': '0x443849474ab0568f81f94629d227e6d27d5475e5b734bf9941b1c2685e8e02b2', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'value': 112.23638555591972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x061597be025e60f282', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T18:57:41.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b:log:17', 'hash': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 4400.987490079801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee93f874cbe88920ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b:log:21', 'hash': '0x915f618142b1152a354fdfcebf84569785da967b682dc6aa3572fd5f89f1084b', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4400.987490079801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xee93f874cbe88920ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd:log:33', 'hash': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.58663310343297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2cc400e5871b62ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd:log:37', 'hash': '0xd61ce305bcdfac2e468f7447a3163923291408efc25bbd4efc54b16c803739cd', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 224.58663310343297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2cc400e5871b62ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f:log:55', 'hash': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 336.7028876363268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1240b0f4607b85cecc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f:log:59', 'hash': '0x02acf54ae0141cd92768c0ec076ccee592deec754743f3f0082adec743ad575f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 336.7028876363268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1240b0f4607b85cecc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717:log:69', 'hash': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 95.90706147981791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0532fa54474c1890bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240a', 'uniqueId': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717:log:73', 'hash': '0xd4f99edb3809865199180ae52145ba1028a529f3fc07177be9a842951bac0717', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.90706147981791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0532fa54474c1890bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:00:53.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de:log:46', 'hash': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 431.03411380930396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x175dcccacafedba0fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de:log:50', 'hash': '0xdc9b2cd8c3b69289d1f601a679cae32c4174e49bc286e41aafb77583535135de', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 431.03411380930396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x175dcccacafedba0fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5:log:68', 'hash': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 402.8726997702576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d6fb59ee14cd2112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240c', 'uniqueId': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5:log:72', 'hash': '0x7276d9e7acf6bee06445219f3123f28e1440e1ae7bed80cf9704bfa63440f2e5', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 402.8726997702576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15d6fb59ee14cd2112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:30.000Z'}}, {'blockNum': '0x6b240e', 'uniqueId': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9:log:13', 'hash': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 563.2609801412407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e88d0fd276501c3a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:45.000Z'}}, {'blockNum': '0x6b240e', 'uniqueId': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9:log:17', 'hash': '0x955ddb54821b55c2c431ff8e99aedbdd92172fc411593eca4fa43ee8473024d9', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 563.2609801412407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e88d0fd276501c3a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:45.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d:log:41', 'hash': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 716.4837982888096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d735ca73271f3b47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d:log:46', 'hash': '0x4608d204c71909e7f45066ad008e0cfb0685844f97ec976cc7523b679d06e82d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 716.4837982888096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26d735ca73271f3b47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789:log:69', 'hash': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 650.1276626238529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233e5570a1e5bfc7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b240f', 'uniqueId': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789:log:73', 'hash': '0x0084804d54b16f936a8de196967065abe73086053b1dc0cee6421c60b4a38789', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 650.1276626238529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233e5570a1e5bfc7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:01:50.000Z'}}, {'blockNum': '0x6b2417', 'uniqueId': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f:log:12', 'hash': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 520.415628931636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3637b93bafa9b59e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:26.000Z'}}, {'blockNum': '0x6b2417', 'uniqueId': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f:log:16', 'hash': '0x9ab337b03d25c366010448f0a8fe65f15e8d7f82c490225c3c71e875dc84b76f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 520.415628931636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3637b93bafa9b59e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:26.000Z'}}, {'blockNum': '0x6b2418', 'uniqueId': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4:log:64', 'hash': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 523.7036055075274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c63d8f6822b7a444c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:52.000Z'}}, {'blockNum': '0x6b2418', 'uniqueId': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4:log:68', 'hash': '0x9bb8ac75508f446a8b68ab63887c01ead21a480a1099e309475d35a327d3cee4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 523.7036055075274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c63d8f6822b7a444c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:04:52.000Z'}}, {'blockNum': '0x6b241e', 'uniqueId': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d:log:13', 'hash': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 323.99976056320594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x119066619ba181c5d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:06:23.000Z'}}, {'blockNum': '0x6b241e', 'uniqueId': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d:log:17', 'hash': '0x57684f5ba33ca8106a7c288e832db5d50a25917c0ab69dc4502615935549600d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 323.99976056320594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x119066619ba181c5d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:06:23.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11:log:20', 'hash': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2245.790672545669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79be9b3df8aa35209c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11:log:24', 'hash': '0x710e2bfb866aa092656ad2da8ae1985ea2740e3b5dd5cc64f1e121f86450da11', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'value': 2245.790672545669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x79be9b3df8aa35209c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58:log:66', 'hash': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58', 'from': '0xe9800c0b73a71be61d49a61fa3b2320ee524fb3d', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 233.81629629010595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cacda5aa9fd3fe097', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2421', 'uniqueId': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58:log:69', 'hash': '0x16495fdd4509ab09292d6a85bc99fa88a47c0439e12960071770e698fe4bdd58', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 233.81629629010595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cacda5aa9fd3fe097', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:07:00.000Z'}}, {'blockNum': '0x6b2429', 'uniqueId': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012:log:35', 'hash': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 24.701029508972166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156cbaf777cba3d26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:09:22.000Z'}}, {'blockNum': '0x6b2429', 'uniqueId': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012:log:39', 'hash': '0x9552c01368a8049d56a773d7879fcaa9d601acc6888b1fb1532f463104b81012', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 24.701029508972166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0156cbaf777cba3d26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:09:22.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d:log:38', 'hash': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.455417935411607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137a1aba36b24edd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d:log:42', 'hash': '0x5f278da20e4b89d2a3c9ed458e697af7861739e34721ebd00b9ce46af842e56d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'value': 22.455417935411607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0137a1aba36b24edd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4:log:70', 'hash': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4', 'from': '0xa2630fc0233940779f25dfdcff3abbdc85682a4c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 506.5885923159605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b765438b0a201de37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2444', 'uniqueId': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4:log:74', 'hash': '0xed33e060059f511258c8050403ea43a8e9651a6994495a480a592d7ac6dfcde4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 506.5885923159605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b765438b0a201de37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:17:39.000Z'}}, {'blockNum': '0x6b2448', 'uniqueId': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22:log:13', 'hash': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 404.2117249192886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e9908635661b623d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:14.000Z'}}, {'blockNum': '0x6b2448', 'uniqueId': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22:log:17', 'hash': '0xddbefd0842aaec29334819822a041877796b7144bd5381a0653594db3b5a6a22', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 404.2117249192886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e9908635661b623d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:14.000Z'}}, {'blockNum': '0x6b2449', 'uniqueId': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4:log:39', 'hash': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 85.0032054492593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049ba80cfd64a632a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:23.000Z'}}, {'blockNum': '0x6b2449', 'uniqueId': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4:log:43', 'hash': '0x69d134151984319e01c3372055a7f1398dcc51795ad2b8e9b391c1eeb7f2d9f4', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 85.0032054492593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049ba80cfd64a632a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:18:23.000Z'}}, {'blockNum': '0x6b244a', 'uniqueId': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3:log:58', 'hash': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.53251614579878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c03bdcf72ff1f27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:19:04.000Z'}}, {'blockNum': '0x6b244a', 'uniqueId': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3:log:62', 'hash': '0x256e4ac34087f2d72b4cf0a9f38350f7c47b6a456d7f4f605a158e47b2de97b3', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'value': 224.53251614579878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2c03bdcf72ff1f27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:19:04.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d:log:21', 'hash': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 384.21495046083163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d40db5c93c2ca516', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d:log:25', 'hash': '0x8d9399cd46b69b2a7d94ea80b101a5baa224f12e6dcaae4d0c0f906283d4916d', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 384.21495046083163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d40db5c93c2ca516', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85:log:36', 'hash': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 22.454223884485234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01379d6da7c5d58a17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85:log:39', 'hash': '0x40c204820103c69fd47033b62556ada9cc794a60635964b5346a15d64de05e85', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xcf0f8246f32e74b47f3443d2544f7bc0d7d889e0', 'value': 22.454223884485234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01379d6da7c5d58a17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489:log:45', 'hash': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 452.4951819390165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1887a1d28d22d4b43e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489:log:49', 'hash': '0x53788f1e919355b7497818b5e155aed432a1adb37e92e46615fc34d2c14ba489', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 452.4951819390165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1887a1d28d22d4b43e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355:log:58', 'hash': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 386.90142779870195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f955feb0f91300d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b244f', 'uniqueId': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355:log:62', 'hash': '0xd2950688cf6623f5c594a32d73c06a39e1d03c6ca8830df32ad4a5c6d62a7355', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 386.90142779870195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14f955feb0f91300d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:20:26.000Z'}}, {'blockNum': '0x6b245c', 'uniqueId': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf:log:41', 'hash': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 169.31303755468048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092db0be98d91a3663', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:38.000Z'}}, {'blockNum': '0x6b245c', 'uniqueId': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf:log:43', 'hash': '0x9443c479e796baa2bb651524f761b06c06d9d395ca214c331422c659c8bf7bdf', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 169.31303755468048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092db0be98d91a3663', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:38.000Z'}}, {'blockNum': '0x6b245d', 'uniqueId': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559:log:20', 'hash': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559', 'from': '0x4f88dfc8e1d7ba696db158656457797cfbdfb844', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 110.60466187600453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fef2b1f7b5708407', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:51.000Z'}}, {'blockNum': '0x6b245d', 'uniqueId': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559:log:24', 'hash': '0x9966b94270868a0d1db79b0e86a5481e2db35322b437b60d593acd673b6bb559', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 110.60466187600453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05fef2b1f7b5708407', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:23:51.000Z'}}, {'blockNum': '0x6b245f', 'uniqueId': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1:log:42', 'hash': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 45.500767128346695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02777332a13ce00fc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:24:15.000Z'}}, {'blockNum': '0x6b245f', 'uniqueId': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1:log:44', 'hash': '0x3e7f8d789c7a68241af8d34b81025cb772b1ff104a487a82392bc20c72fa57e1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 45.500767128346695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02777332a13ce00fc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:24:15.000Z'}}, {'blockNum': '0x6b2469', 'uniqueId': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f:log:50', 'hash': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 224.52252573113418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2be03f94c5c0d8ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:43.000Z'}}, {'blockNum': '0x6b2469', 'uniqueId': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f:log:54', 'hash': '0x187fc3258a7e4ac71e2a62dcd6af74943693bce0f618392eac07242d85c4253f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'value': 224.52252573113418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2be03f94c5c0d8ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:43.000Z'}}, {'blockNum': '0x6b246a', 'uniqueId': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb:log:43', 'hash': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2.199940819256325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e87c284f2a7b303', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:56.000Z'}}, {'blockNum': '0x6b246a', 'uniqueId': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb:log:46', 'hash': '0x26e0e43c9fe2f80ca76f1e45502abfe86006001f2a6bb6c37b0eef866a97e4bb', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xc202848358a295a846bbc33e33ee5730c11b468b', 'value': 2.199940819256325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e87c284f2a7b303', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:26:56.000Z'}}, {'blockNum': '0x6b246d', 'uniqueId': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f:log:44', 'hash': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd3fff3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:27:36.000Z'}}, {'blockNum': '0x6b246d', 'uniqueId': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f:log:47', 'hash': '0xbe757f169883d40de3d5b1af63a72add4674245b9f7ce3a50fcaae1bee2e2b6f', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd3fff3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:27:36.000Z'}}, {'blockNum': '0x6b2473', 'uniqueId': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997:log:32', 'hash': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997', 'from': '0x92841565d372324095966320a11df1130810d3f3', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:28:32.000Z'}}, {'blockNum': '0x6b2473', 'uniqueId': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997:log:35', 'hash': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:28:32.000Z'}}, {'blockNum': '0x6b2473', 'uniqueId': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997:log:37', 'hash': '0x2696bb70e025dccbe9194bc28fc399ea64261e967a0ce37e7455058d3dca9997', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:28:32.000Z'}}, {'blockNum': '0x6b2478', 'uniqueId': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea:log:154', 'hash': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea', 'from': '0xc202848358a295a846bbc33e33ee5730c11b468b', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:22.000Z'}}, {'blockNum': '0x6b2478', 'uniqueId': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea:log:157', 'hash': '0x6c7c90b92f5cfe4f1c640e487b70912ad8486f0c4d941c04035851a2c67173ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0x98a741591049b6a92d7266a0668a26aaf61a1b5e', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:22.000Z'}}, {'blockNum': '0x6b2479', 'uniqueId': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1:log:37', 'hash': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 217.79641365864333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bce884c49a5787514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:39.000Z'}}, {'blockNum': '0x6b2479', 'uniqueId': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1:log:41', 'hash': '0xf18a4220eec1d64a46bbba8d5e729d146bafb0d0edb7d94b9f372cfbd2d95cf1', 'from': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 217.79641365864333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bce884c49a5787514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:39.000Z'}}, {'blockNum': '0x6b2479', 'uniqueId': '0x6451503214b841b11f15d11e84ce926fff576848c7f9052e5d22115674ed9763:log:52', 'hash': '0x6451503214b841b11f15d11e84ce926fff576848c7f9052e5d22115674ed9763', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xf20b9e713a33f61fa38792d2afaf1cd30339126a', 'value': 219.9906080022021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0becfba46af5765ae7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-01-06T19:29:39.000Z'}}], 'pageKey': '75312e13-bd07-4576-9fd8-a952ab685d6a'}}
Answer is paginated. Downloading more pages...
Answer is paginated. Downloading more pages...
Number of returned transfers:  1002
Answer is complete
 
symbol             EVX
group              BPF
date        2019-01-08
hour             16:00
exchange       binance
Name: 752, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2019-01-08 16:00:00 2019-01-08 04:00:00 2019-01-09 04:00:00
Unix timestamps:  1546916400.0 1547002800.0
Hex Block Numbers:  0x6b4143 0x6b56f9
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6b422e', 'uniqueId': '0x525fd680b734e806e2dde54ad9d5bc05768c75e6437a68e1489993761088b142:log:1', 'hash': '0x525fd680b734e806e2dde54ad9d5bc05768c75e6437a68e1489993761088b142', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xfe9559b0eaebac67b78fac42b4ec7cb70cbb638d', 'value': 1422.3284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xd907b4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:07:28.000Z'}}, {'blockNum': '0x6b4262', 'uniqueId': '0x195d43ab3bdcfb175e056e5bbfa3c11a87b2f96c83effd81213cbe319f1d754b:log:43', 'hash': '0x195d43ab3bdcfb175e056e5bbfa3c11a87b2f96c83effd81213cbe319f1d754b', 'from': '0xfe9559b0eaebac67b78fac42b4ec7cb70cbb638d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1422.3284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xd907b4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:20:54.000Z'}}, {'blockNum': '0x6b42c0', 'uniqueId': '0x11aed15a444ff40a4e98025dd35cc2a1e0aeb243e01afc91c1a1acdb4b86c396:log:7', 'hash': '0x11aed15a444ff40a4e98025dd35cc2a1e0aeb243e01afc91c1a1acdb4b86c396', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2551.556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01855628', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:47:33.000Z'}}, {'blockNum': '0x6b42d8', 'uniqueId': '0x762820be2cb71ae9e8aaf1c0bd45e61fb572d2e118e57cfa929431515a686f80:log:31', 'hash': '0x762820be2cb71ae9e8aaf1c0bd45e61fb572d2e118e57cfa929431515a686f80', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2194.687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014ee1f6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T04:53:11.000Z'}}, {'blockNum': '0x6b4491', 'uniqueId': '0xa03561d6ef30b3059a4dcce97f6d9fd6699c7703ef7aa882ebad95c1ac5da0af:log:43', 'hash': '0xa03561d6ef30b3059a4dcce97f6d9fd6699c7703ef7aa882ebad95c1ac5da0af', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7a97fe3679c441f8092867af5dcddfae0474ec32', 'value': 7.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x012494', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T06:45:11.000Z'}}, {'blockNum': '0x6b46fd', 'uniqueId': '0x1be8d83d9c16e8b66565e09114c1b01464b524ed421f60b5b7ac4e71faefd7a4:log:27', 'hash': '0x1be8d83d9c16e8b66565e09114c1b01464b524ed421f60b5b7ac4e71faefd7a4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc6844011ba0bd7b30c54fb377617c0bce1e806d5', 'value': 82.7547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0ca09b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T09:27:49.000Z'}}, {'blockNum': '0x6b4ac5', 'uniqueId': '0x223cf56508e2c5f30d7a3e55d1a5ba747b40b4e902ad43c7f05c884269bc2b18:log:46', 'hash': '0x223cf56508e2c5f30d7a3e55d1a5ba747b40b4e902ad43c7f05c884269bc2b18', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 6197.5799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03b1acf7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T13:22:13.000Z'}}, {'blockNum': '0x6b4bcd', 'uniqueId': '0xde0c8ae3b162b584f85fc7e3d69167db4be8dcd81ee45dad0ac27765f6cd7ae4:log:3', 'hash': '0xde0c8ae3b162b584f85fc7e3d69167db4be8dcd81ee45dad0ac27765f6cd7ae4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x735be6c32f1d58b41c3141dfdf29f126e87a5ce2', 'value': 151.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x171240', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T14:35:34.000Z'}}, {'blockNum': '0x6b4bf5', 'uniqueId': '0x2f3f8933ce0d114706b69fb944100a0c5dee38a0ec3eaea9eba3a0b5e3b00a8d:log:20', 'hash': '0x2f3f8933ce0d114706b69fb944100a0c5dee38a0ec3eaea9eba3a0b5e3b00a8d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa9f987c7deaea1fc2cc08f696d3fed5b960b4fae', 'value': 295.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d148c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T14:47:17.000Z'}}, {'blockNum': '0x6b4c2a', 'uniqueId': '0xa1c0ffb2ade5ad43cad15662d2fa06cfa549b38ebb7ab3964ce21f95991de4b4:log:17', 'hash': '0xa1c0ffb2ade5ad43cad15662d2fa06cfa549b38ebb7ab3964ce21f95991de4b4', 'from': '0xa9f987c7deaea1fc2cc08f696d3fed5b960b4fae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 295.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2d148c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T15:01:39.000Z'}}, {'blockNum': '0x6b4d12', 'uniqueId': '0x2ed801b94405cea84a46c7ce6d7c1aa0841d91936bd6fc79e399baccce21a41f:log:20', 'hash': '0x2ed801b94405cea84a46c7ce6d7c1aa0841d91936bd6fc79e399baccce21a41f', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T16:03:19.000Z'}}, {'blockNum': '0x6b4d28', 'uniqueId': '0x47b24ae5f4d0f35f174ab6195aa083c995f81385ab341824e8d0009fc3db2a09:log:7', 'hash': '0x47b24ae5f4d0f35f174ab6195aa083c995f81385ab341824e8d0009fc3db2a09', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 3407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0207ddf0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T16:08:44.000Z'}}, {'blockNum': '0x6b4d40', 'uniqueId': '0x87c9036d8c57fbfc6803741223ac1d36bd3e9a0c0e3f1803b175f254bdf6d969:log:24', 'hash': '0x87c9036d8c57fbfc6803741223ac1d36bd3e9a0c0e3f1803b175f254bdf6d969', 'from': '0xea05f704a4311fe29d976be9d03625062f04b409', 'to': '0x82f7894fbb27fc9d2158cc87fea06734f5299932', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T16:14:32.000Z'}}, {'blockNum': '0x6b4e5e', 'uniqueId': '0x4727f7827e53d1496f3c55c275d198280cb2c126bc0b37bc28e8c0d3a5fd58fc:log:8', 'hash': '0x4727f7827e53d1496f3c55c275d198280cb2c126bc0b37bc28e8c0d3a5fd58fc', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xd3d2e6b1fd248647b296c0dd93c0b7e283b5217d', 'value': 57.5001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08c619', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T17:31:21.000Z'}}, {'blockNum': '0x6b4ec8', 'uniqueId': '0x3675a2a9d6550b71e7ff66e302680df7ad50de10ed0fb43de88ee44b4cb82a2a:log:7', 'hash': '0x3675a2a9d6550b71e7ff66e302680df7ad50de10ed0fb43de88ee44b4cb82a2a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x67b3ed835089a3f6c9159a02cf8b5a1d20365187', 'value': 1595.5989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf37815', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T17:59:46.000Z'}}, {'blockNum': '0x6b500a', 'uniqueId': '0xc97c5caee63741e53ee0af08c7a4cd473db0ec4129d92da836bed69ce68a7908:log:16', 'hash': '0xc97c5caee63741e53ee0af08c7a4cd473db0ec4129d92da836bed69ce68a7908', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4303a8a30d81e47fb29a51354ec2729e14a70dff', 'value': 495.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4ba348', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T19:22:40.000Z'}}, {'blockNum': '0x6b5042', 'uniqueId': '0xba701f88616f48fa5f59ea76b63f596a84abfc35d4fc166ce62470d63f62c21c:log:1', 'hash': '0xba701f88616f48fa5f59ea76b63f596a84abfc35d4fc166ce62470d63f62c21c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7f254c1456e311c52296a3a747f50dd2f09a89', 'value': 575.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x57c4c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T19:37:59.000Z'}}, {'blockNum': '0x6b506c', 'uniqueId': '0x81e85b3cd5635c68bfdd9a686fbd8b87d39eacebab9814fe867975bcf2dcc9fe:log:7', 'hash': '0x81e85b3cd5635c68bfdd9a686fbd8b87d39eacebab9814fe867975bcf2dcc9fe', 'from': '0x4303a8a30d81e47fb29a51354ec2729e14a70dff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 495.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4ba348', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T19:52:53.000Z'}}, {'blockNum': '0x6b5088', 'uniqueId': '0xf15f6e8543d2af86282fb49b42f647b3ec71abcb1b9ae1cc2af537cc74036ddf:log:14', 'hash': '0xf15f6e8543d2af86282fb49b42f647b3ec71abcb1b9ae1cc2af537cc74036ddf', 'from': '0x8e7f254c1456e311c52296a3a747f50dd2f09a89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 575.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x57c4c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T20:01:05.000Z'}}, {'blockNum': '0x6b5159', 'uniqueId': '0x70815476b92c222fadcc45e3a9755c8326b278b390dd2e5513aeb90f9399784b:log:0', 'hash': '0x70815476b92c222fadcc45e3a9755c8326b278b390dd2e5513aeb90f9399784b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x37214ad3d231604a7402d52f9bbbfb11126b5c13', 'value': 77.8067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bdf53', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T20:50:46.000Z'}}, {'blockNum': '0x6b522d', 'uniqueId': '0x4c543f0965a9764f4916e8dc10066663c56a3f8bc00c464156e1663112f60f7a:log:19', 'hash': '0x4c543f0965a9764f4916e8dc10066663c56a3f8bc00c464156e1663112f60f7a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x4817be1733f0e508361b26bc9776b68fe8e5b977', 'value': 21.1991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033c17', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T21:43:20.000Z'}}, {'blockNum': '0x6b53db', 'uniqueId': '0x3da30ae2451aa5fa5f933fe087973303b5f584c0d73400d027aebae7b077b2d0:log:26', 'hash': '0x3da30ae2451aa5fa5f933fe087973303b5f584c0d73400d027aebae7b077b2d0', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1605c1d29f561f436e204af0c9a51a1fe1f59710', 'value': 3112.8199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dafa87', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T23:34:41.000Z'}}, {'blockNum': '0x6b541e', 'uniqueId': '0xff0f48b9a9ccad796b4a6c1302bf56bf273a1cd2e56918dd6ba2ed7d9b04cd29:log:9', 'hash': '0xff0f48b9a9ccad796b4a6c1302bf56bf273a1cd2e56918dd6ba2ed7d9b04cd29', 'from': '0x1605c1d29f561f436e204af0c9a51a1fe1f59710', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3112.8199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01dafa87', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-01-08T23:50:55.000Z'}}]}}
Number of returned transfers:  23
Answer is complete
 
symbol             GXS
group              BPF
date        2019-01-20
hour             17:59
exchange       binance
Name: 753, dtype: object
HERE
 Symbol: GXS, Contract: 
Datetime timestamps:  2019-01-20 17:59:00 2019-01-20 05:59:00 2019-01-21 05:59:00
Unix timestamps:  1547960340.0 1548046740.0
Hex Block Numbers:  0x6c4947 0x6c5ec0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol              HC
group              BPF
date        2019-01-25
hour             18:00
exchange       binance
Name: 754, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
 Symbol: HC, Contract: 
Datetime timestamps:  2019-01-25 18:00:00 2019-01-25 06:00:00 2019-01-26 06:00:00
Unix timestamps:  1548392400.0 1548478800.0
Hex Block Numbers:  0x6cadf3 0x6cc1b0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           WINGS
group              BPF
date        2019-01-27
hour             18:00
exchange       binance
Name: 755, dtype: object
HERE
 Symbol: WINGS, Contract: 
Datetime timestamps:  2019-01-27 18:00:00 2019-01-27 06:00:00 2019-01-28 06:00:00
Unix timestamps:  1548565200.0 1548651600.0
Hex Block Numbers:  0x6cd579 0x6ce91a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BQX
group              BPF
date        2019-01-29
hour             14:00
exchange       binance
Name: 756, dtype: object
HERE
 Symbol: BQX, Contract: 
Datetime timestamps:  2019-01-29 14:00:00 2019-01-29 02:00:00 2019-01-30 02:00:00
Unix timestamps:  1548723600.0 1548810000.0
Hex Block Numbers:  0x6cf8d3 0x6d0bdc
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GRS
group              BPF
date        2019-02-02
hour             18:00
exchange       binance
Name: 757, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: GRS, Contract: 
Datetime timestamps:  2019-02-02 18:00:00 2019-02-02 06:00:00 2019-02-03 06:00:00
Unix timestamps:  1549083600.0 1549170000.0
Hex Block Numbers:  0x6d4893 0x6d5bf1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIA
group              BPF
date        2019-02-03
hour             15:04
exchange       binance
Name: 758, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2019-02-03 15:04:00 2019-02-03 03:04:00 2019-02-04 03:04:00
Unix timestamps:  1549159440.0 1549245840.0
Hex Block Numbers:  0x6d597d 0x6d6c75
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GXS
group              BPF
date        2019-02-10
hour             18:00
exchange       binance
Name: 759, dtype: object
HERE
 Symbol: GXS, Contract: 
Datetime timestamps:  2019-02-10 18:00:00 2019-02-10 06:00:00 2019-02-11 06:00:00
Unix timestamps:  1549774800.0 1549861200.0
Hex Block Numbers:  0x6de1b0 0x6df21e
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EDO
group              BPF
date        2019-02-16
hour             18:00
exchange       binance
Name: 760, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2019-02-16 18:00:00 2019-02-16 06:00:00 2019-02-17 06:00:00
Unix timestamps:  1550293200.0 1550379600.0
Hex Block Numbers:  0x6e440f 0x6e547b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol              HC
group              BPF
date        2019-02-23
hour             16:59
exchange       binance
Name: 762, dtype: object
HERE
{'stratis': ''}
No contract for ethereum specified
 Symbol: HC, Contract: 
Datetime timestamps:  2019-02-23 16:59:00 2019-02-23 04:59:00 2019-02-24 04:59:00
Unix timestamps:  1550894340.0 1550980740.0
Hex Block Numbers:  0x6eb6e8 0x6ec7e4
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             AST
group              BPF
date        2019-03-02
hour             14:00
exchange       binance
Name: 763, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
 Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps:  2019-03-02 14:00:00 2019-03-02 02:00:00 2019-03-03 02:00:00
Unix timestamps:  1551488400.0 1551574800.0
Hex Block Numbers:  0x6f3161 0x6f4a36
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6f3276', 'uniqueId': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8:log:4', 'hash': '0x69786e61b23b176fb5a963ce7dcf49bdf2295c3c49b6fa0eef0e24877d139ae8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xda64447d0db123635337da4c1400985bd5108537', 'value': 392.435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3be17e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:10:37.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:15', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a8', 'uniqueId': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47:log:17', 'hash': '0x6fd5912189ee68a2ac75021a3cb4f51b0e558a396d047ca438e50273bdc19a47', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb3b08089acd17805a3a538211f12694717deeef5', 'value': 11010.0085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x068ffe75', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:02.000Z'}}, {'blockNum': '0x6f32a9', 'uniqueId': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd:log:3', 'hash': '0xfd1302a20e7080313dc3b89eba4523edd3e37aa0ece27c7531dae0087c3d3dcd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:19:05.000Z'}}, {'blockNum': '0x6f32af', 'uniqueId': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86:log:34', 'hash': '0x96f3a16c3a2048b59d4f524152bb6361b200aaac3238fcf7d54b0a0532149c86', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:20:34.000Z'}}, {'blockNum': '0x6f32b2', 'uniqueId': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4:log:19', 'hash': '0xdb8b2f713d12847ee83701c24c1266bac598be6cfe63303a0881bfd283e5a8a4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:21:18.000Z'}}, {'blockNum': '0x6f32b7', 'uniqueId': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e:log:26', 'hash': '0xd3fdfcf85e3dfd12c0b466f8f111d7089aa990fcfa9c7bad5f73dbebe4cc9a5e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1199.0532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb6f604', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:22:12.000Z'}}, {'blockNum': '0x6f32bf', 'uniqueId': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458:log:77', 'hash': '0x45f83da08e59f0b86bc6a6b29137458beede7b15edd674921ea48d32b883e458', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1708.0475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0104a09b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:24:06.000Z'}}, {'blockNum': '0x6f330b', 'uniqueId': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd:log:63', 'hash': '0xe52326f108fff94a2ab3950850bbd8c247d8d388faba9fcfe6030c06b76b36bd', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:27.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1:log:14', 'hash': '0xf2a7980c5e433e4d4d7ef0db52bcae59dea6cf5b13ecef62cdb08498e7b470e1', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f330e', 'uniqueId': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22:log:52', 'hash': '0x549d304051edfa3c00902f2190cb0f819f7f309c4d8e442d19c9f4c3ecb87f22', 'from': '0x53bea520407bbefb24366cd35542eaebe9acf5dc', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:42:56.000Z'}}, {'blockNum': '0x6f3314', 'uniqueId': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd:log:41', 'hash': '0x156462996eebe67428955fbb8628475497aae7e5a5e87967f729a46d547b2cfd', 'from': '0x7f8e0c4ccafd16e92b6bfbd49ff316872166640a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 1671.5373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xff0e6d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:43:48.000Z'}}, {'blockNum': '0x6f3349', 'uniqueId': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a:log:10', 'hash': '0x3207e3ef0ea93bfb32fa735e4b8d95496639bc45961666e8e49cc41e88b1946a', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84205.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x3230b970', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T02:55:22.000Z'}}, {'blockNum': '0x6f33a4', 'uniqueId': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca:log:52', 'hash': '0x16e46bc3d670afd831cc9ed25b6fddcb239a17481405787612e034e233f805ca', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1298.4266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc61fca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T03:14:51.000Z'}}, {'blockNum': '0x6f350c', 'uniqueId': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8:log:111', 'hash': '0xdde6ad679a5c75b43577e583b11e277cad80b880e18b2725af49ca6aed3e03c8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'value': 4892.142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02ea7b4c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:34:43.000Z'}}, {'blockNum': '0x6f3549', 'uniqueId': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba:log:51', 'hash': '0x14c24c50d49b97454564569e71cd44c4f692c93ca29a5b6f9d0e60a0b273d9ba', 'from': '0x453e025f8e7518e66331044402a0ea1b97d6eaab', 'to': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T04:49:19.000Z'}}, {'blockNum': '0x6f35b9', 'uniqueId': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3:log:13', 'hash': '0x1b4757945a7da02432b8852e23ea131d8125f016f08fc3cce460517fd2f8abe3', 'from': '0x49eebd7b55c8ccc87744be0d8853e7442415c7a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xf73140', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:15:14.000Z'}}, {'blockNum': '0x6f3669', 'uniqueId': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61:log:53', 'hash': '0x1f579c8118e7d78dd36412d9532bad78ed5b1805a5086f60e31bf5e1a2b42e61', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T05:52:29.000Z'}}, {'blockNum': '0x6f36bc', 'uniqueId': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0:log:13', 'hash': '0xcbe38fe227fd2f6c71885a7f2a0fd77c1e25a27e069158f452acb85abbc60da0', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 816.0459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7c84cb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T06:10:27.000Z'}}, {'blockNum': '0x6f3974', 'uniqueId': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82:log:10', 'hash': '0x48c96a43f83e897d9173f1cc6f7bfd270ad152b89e28894032d1ed733d500a82', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T08:45:58.000Z'}}, {'blockNum': '0x6f39fa', 'uniqueId': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11:log:35', 'hash': '0xddd3eebe73e7346aca05e19b05693be9dde53ac6a56acae919040b2019c79d11', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69519.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x296fe518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:15:09.000Z'}}, {'blockNum': '0x6f3a17', 'uniqueId': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9:log:66', 'hash': '0x771b1e0d61417340f80c64f6e05412d909f963fdb47ab550573648310deac8f9', 'from': '0xb91e80a4d98023c4c431a12e376b3b0e4dc9de70', 'to': '0xac4682db6eb5083e64f9a05859da6eff0fd8ed91', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T09:21:57.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485:log:16', 'hash': '0xac8f93a1ffd5006e9297acdae64868695a4fcd6604b8b690670b844922870485', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b0b', 'uniqueId': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97:log:17', 'hash': '0xa6a45824c498b2bc1517005134926a35e5ac68c421a466480efce117822eee97', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:15:05.000Z'}}, {'blockNum': '0x6f3b10', 'uniqueId': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3:log:19', 'hash': '0xa170a3edf0ddfaad6691f95a24903c2701becad214eb7adb3df6fffa7f0423d3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1326.7726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xca730e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:16:04.000Z'}}, {'blockNum': '0x6f3b34', 'uniqueId': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956:log:83', 'hash': '0xa335b3945a52881aa65cfa2a16aa2cabf58b548403a053656c133068fd8c3956', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1263.5016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xc0cb88', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T10:23:55.000Z'}}, {'blockNum': '0x6f3c12', 'uniqueId': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d:log:3', 'hash': '0x673c153c77bd8514c22ef25782d5e1257e70cd0e32c6b4de69f62ca90d04a12d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xff9b53a7586d4d82d62cd7eb0b0acaa16d9215c3', 'value': 350.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x358338', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T11:16:13.000Z'}}, {'blockNum': '0x6f3d56', 'uniqueId': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a:log:51', 'hash': '0xac6796053cf230e236e78c75fcf7c1e90eb9388e126ba9bcd12c089e8d58a07a', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:27:57.000Z'}}, {'blockNum': '0x6f3d5e', 'uniqueId': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4:log:33', 'hash': '0x84e10be3f7b0c750e36d1c09d8202f19597992d230b2222c1fc923bcba2dc6f4', 'from': '0x65064eb78544fb34e9d37d18c59c67bd9abd6f80', 'to': '0x4b327ee88d48acc116643f80a4674a5c5b3b53f7', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:29:45.000Z'}}, {'blockNum': '0x6f3d86', 'uniqueId': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf:log:6', 'hash': '0x73e9e8d1c4d46e6ade37ea41cbbc1ebf22b5eb5412dffcbbf90743824d4844cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:38:08.000Z'}}, {'blockNum': '0x6f3d8e', 'uniqueId': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf:log:77', 'hash': '0xe85504bb38efd51407798f00c29a5b2aa2f8cb6340e2bfe56d478f3af101c4cf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'value': 2328.1855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x016340bf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T12:39:54.000Z'}}, {'blockNum': '0x6f3e29', 'uniqueId': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64:log:5', 'hash': '0x4bd4fc89d3c2dc2e5dc570ba9384b042accd692cb8fb7ee45914fe4fd4d34a64', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:11:46.000Z'}}, {'blockNum': '0x6f3e2e', 'uniqueId': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74:log:12', 'hash': '0x8d7e30cc4a5dd4ecb1097c2a8216359bb199912c572fc990678597f32743bc74', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:13:14.000Z'}}, {'blockNum': '0x6f3e43', 'uniqueId': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375:log:112', 'hash': '0xe19135378314ca67e6b92a08f2e47af3d969e955e5fdd30656ca2cf728037375', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 6211.8675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3db13', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:17:23.000Z'}}, {'blockNum': '0x6f3e45', 'uniqueId': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e:log:41', 'hash': '0x0a6ade57bbaec7674fd6d60a8658ce82db4ae50de15ca812345a10fdd231e27e', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:18:40.000Z'}}, {'blockNum': '0x6f3e63', 'uniqueId': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581:log:54', 'hash': '0x0782d39f8de524391fef0aeeca8ed0364be45a4f8bb2d578f14fb37e33bb7581', 'from': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 64568.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x267c5f08', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:24:16.000Z'}}, {'blockNum': '0x6f3e75', 'uniqueId': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664:log:51', 'hash': '0xb8d172124aa02fe9afb359ee5b35c40499f3e8ece133fe728ba902100f42b664', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:14.000Z'}}, {'blockNum': '0x6f3e7a', 'uniqueId': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a:log:58', 'hash': '0xcb8e1f3054cefab92bc585478cca3a3fd77a4c967c30753becced3e0a798294a', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:29:52.000Z'}}, {'blockNum': '0x6f3e7d', 'uniqueId': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873:log:3', 'hash': '0x2caabda1590fd6c44ce02b357a622ca6c3b06a14e538e87843a83d477472a873', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:46.000Z'}}, {'blockNum': '0x6f3e7e', 'uniqueId': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749:log:92', 'hash': '0x12ace9bccad98b6450410a5e871cac71bb153f9f041c4cfcd06f183d42a78749', 'from': '0x04c7545836d66a24d33f4d678da1082e03e14a43', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 908.1394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x8a9232', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:30:50.000Z'}}, {'blockNum': '0x6f3e81', 'uniqueId': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579:log:44', 'hash': '0x04070084049697f5e6771b9a97b738f53edd632cdffe12138b3e91dda8c3f579', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:31:15.000Z'}}, {'blockNum': '0x6f3e91', 'uniqueId': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75:log:57', 'hash': '0x96d315551e2644d5c26a3c967d35b71be3f1f2fd66e126738b4a8c8ae6b22f75', 'from': '0xda42850bdd7353478edd2c05fa67d7a6c9175d56', 'to': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:35:33.000Z'}}, {'blockNum': '0x6f3ea1', 'uniqueId': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7:log:2', 'hash': '0xb025fdabf0c8c360ec87d6218d168ac4004185ec8ac69e7d561c9495a9f124a7', 'from': '0x517592f478aa8c8d5ea0b6f8bb6998a4682aa031', 'to': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:10.000Z'}}, {'blockNum': '0x6f3ea5', 'uniqueId': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba:log:47', 'hash': '0x8049cb6141fdd6037fece4750772af8e7888a0e147640f77cfa7e05154802aba', 'from': '0x6b8407fa9180d458c7a900db228e7904c43eee21', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 41301.3193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x189e14c9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:38:26.000Z'}}, {'blockNum': '0x6f3ebf', 'uniqueId': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4:log:37', 'hash': '0x945ed2f6c27e583f82aac5e9809ae16057756dc03ecd15be60558645c44a89d4', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:43:48.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:11', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ec5', 'uniqueId': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b:log:12', 'hash': '0xcfc97bcb6585933890b7c11e75de88fab28787b076be4c4c65d381b5ec5cd34b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:45:05.000Z'}}, {'blockNum': '0x6f3ecd', 'uniqueId': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de:log:90', 'hash': '0x3936bad4df4987c1b00acd60829f61333a1ad88943a885d5f12b2edf127bc2de', 'from': '0x062438b34c54858d8df67adea9b5cac6ed3b4471', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1249.0904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xbe9898', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:46:24.000Z'}}, {'blockNum': '0x6f3eed', 'uniqueId': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1:log:74', 'hash': '0x6f5f1f09bc1b2630fd12681e5adee431f37448d00fe204bb4590a64891ab4df1', 'from': '0xfc644ea1a3fe5e7854be5431078803d1cbee6bee', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:30.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1:log:23', 'hash': '0x45361e23b168bf56c8d0600273b6dc02a427258a693fda137b079a01f7664ed1', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03b3b930', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0:log:38', 'hash': '0x80e3f36bd5a24f38a0c9d634ee019066c24ab1a6d4004af0c4e47d4cec3e85a0', 'from': '0xe0a4306597cecd887479b3ebebff82feab55e6ed', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x212bab30', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3eef', 'uniqueId': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e:log:39', 'hash': '0x02a7ff1d26a417c3d8e0f5e9646051b0b8654cda7bd23b08c45feaeac1657d5e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2157.2298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01492aca', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T13:54:56.000Z'}}, {'blockNum': '0x6f3f0a', 'uniqueId': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8:log:45', 'hash': '0x352ab19a08dc415ce73acf55da53834daea57bd9d7515e9368c696894023abe8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:01:53.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:11', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0b', 'uniqueId': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8:log:13', 'hash': '0x5c117a4023ab4e36408f2f91f9a2fb7a427440a76139c8518c720e8bb1d182b8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'value': 8736.6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:17.000Z'}}, {'blockNum': '0x6f3f0c', 'uniqueId': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea:log:32', 'hash': '0x14b4f32e6e6d60367bf8b15f98c46cc8f29519740a7062a65b9b4fdaa27b33ea', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:02:45.000Z'}}, {'blockNum': '0x6f3f11', 'uniqueId': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a:log:216', 'hash': '0x49e09d6bd41b4dce56f4abd115a7789a63259cdc3c288fdfe8ba09b16083492a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:03:22.000Z'}}, {'blockNum': '0x6f3f13', 'uniqueId': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3:log:5', 'hash': '0xce89fa86c4b7e31581e879cd96ad4b68b7b33969218008c97b527e45d3c60ac3', 'from': '0x1edb2378e2f5671b98f3093e9f9671df4e07c4a4', 'to': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:32.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:47', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:49', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'value': 4467.3564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9aa1c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:54', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x82da82dbe384736e4dd95615d8036cc472773f5a', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f14', 'uniqueId': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae:log:55', 'hash': '0x7a79fa2e64331b37bbc973e371fca2fff35aabcedf80ecf20fd4d3d28fa970ae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 4467.3117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a9a85d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:34.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:217', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f17', 'uniqueId': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a:log:218', 'hash': '0x4b897c8bbd7a473b1aef05c243da72cedc660cc6970265f9434c434dd3e95c0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0206cc80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:04:52.000Z'}}, {'blockNum': '0x6f3f1a', 'uniqueId': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf:log:73', 'hash': '0xe8c258f95db3a59d69f171fcda2d903f7378f52eaaf91a6c68e624027e0d4acf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:05:40.000Z'}}, {'blockNum': '0x6f3f1b', 'uniqueId': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0:log:9', 'hash': '0xb51f84f88eda96bed1d6fb6ad7f7ee71d005598bb2304f4faddd84a40bf21ba0', 'from': '0x9e9aede219c3074c9ad1e85bfa52fcf5f3cfd66e', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:06:21.000Z'}}, {'blockNum': '0x6f3f27', 'uniqueId': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99:log:9', 'hash': '0x6e65237e4d71fe2d0ffc696355592087e174721a2d04e949cf1a7e2ce6084e99', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd73325ba5dc21ec50e7607906a47114669ed2d68', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a1200', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:09:10.000Z'}}, {'blockNum': '0x6f3f31', 'uniqueId': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d:log:16', 'hash': '0x76c4c6fa80335a02b486b3b4f9c14e722c3324c2183cd0ce51ae8b992bbb9d2d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:11:20.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:24', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x35e3863c10cbf0f9f7984dc953505bfa82ef3a64', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f46', 'uniqueId': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b:log:25', 'hash': '0xa0f2e2c8e52aab54862c1241bec0ddd0ca8914b70775a877e891bb182b925f9b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:16:48.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b:log:13', 'hash': '0xf782cf6a5f2e98cf1a2bfc58ba8e43f18016edea10d2872b38704a5cddc7729b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8:log:47', 'hash': '0x07fd87d23fc6be13b54ae261f86bc0b3606306fda94fdf22039669597b6571d8', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 49446.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1d78f7b8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51:log:50', 'hash': '0x121e224484cbd69d696d2733fbf718ade68f7c329d804e5a28f71195085c1d51', 'from': '0xf5177ebddc0b0d68959d7f8d0c6c55d3fdb6a871', 'to': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:123', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f4c', 'uniqueId': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff:log:124', 'hash': '0x825cd2379cac35bd291488b49a6e5a48cd30d6d02c87167a363e028a3b60ccff', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x015752a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:19:02.000Z'}}, {'blockNum': '0x6f3f5f', 'uniqueId': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351:log:52', 'hash': '0xaca03c5285d39f5f37b1b11dcc05d6fb2f14b06b75d91df69be29ad26fe39351', 'from': '0x0378ed3c26c6d33d056ff54f6c34d918160dc296', 'to': '0x0f43e914e155acbaf69cc32052eaf53e98f6302f', 'value': 213.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2090e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:23:31.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77:log:3', 'hash': '0x686ead92bb973ea5c920308e5a268da1a4217ffddf9e8af0a98f953270536d77', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f60', 'uniqueId': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70:log:16', 'hash': '0x18710784e1cca0d39a330699a7422ad9e37c80a2add907fb03b5798761516c70', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 806.3319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7b0957', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:24:24.000Z'}}, {'blockNum': '0x6f3f72', 'uniqueId': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc:log:31', 'hash': '0x969244a10ea51f6113ba40f8fa099b678e118694424b2a503a7a276919dd50bc', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:28:27.000Z'}}, {'blockNum': '0x6f3f7b', 'uniqueId': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9:log:81', 'hash': '0x3fc841dc6bed970ad7766e1ffbb73770fd3c1fe31956357d765126bd06d054e9', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:29:45.000Z'}}, {'blockNum': '0x6f3f81', 'uniqueId': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b:log:81', 'hash': '0xb956cb29ae5051dde023e8374adb86bc318613049a03c1fbe7cb4cbc5119331b', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:30:44.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:55', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x6cac5eeb01d56e889afac1f8d7f6666b344225e3', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f86', 'uniqueId': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be:log:56', 'hash': '0x3c8fd5b4432abfcabe986fb1e5a52b07940baa5c570f0a25a4f9da60910841be', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 184.9603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1c3903', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:32:25.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592:log:6', 'hash': '0x411e54f1cb6f5f50dd4611f8882c2663e25a0519c96172dacc805b7e3f4a8592', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3956.1564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x025ba95c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc:log:15', 'hash': '0xd19ee192b51149638715aae762872af15f1e06a7710b9c96aca2bbb10af066fc', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30275.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x120bb261', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3f91', 'uniqueId': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483:log:16', 'hash': '0xeb1058686fe54cdaa1762f5798843ba039dd35360800307bc1f9d86b9adc4483', 'from': '0x373b902817b5943b939606fd07e3b58f5704f1c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8736.614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x053519fc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:35:03.000Z'}}, {'blockNum': '0x6f3fa0', 'uniqueId': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c:log:8', 'hash': '0x512cdbf1ebbe09fec9478dcfcefeb4eb5dd6c352100033f692b92dd60747c14c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:39:13.000Z'}}, {'blockNum': '0x6f3fac', 'uniqueId': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27:log:40', 'hash': '0xf88de66a1183b91ea629e6eac39536251613f148b95f17a06798e9242e8aae27', 'from': '0x1298e52973ea951fdcec9e71e879dc603b27bff1', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 8282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04efbba0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:42:18.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f:log:11', 'hash': '0xd784f54290de25582381922e14917bf0ff48c7ba45af0bf7d765f9e2732a667f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb2', 'uniqueId': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939:log:12', 'hash': '0x9059b8f0cfb4b6d09d380d8c605935f770b53fc3b9137cb4c2882c5abdeb2939', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7dd14ea7767e0990a0bbed5f5bd4aa4bb55ed1b5', 'value': 4322.1143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02938097', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:44:13.000Z'}}, {'blockNum': '0x6f3fb5', 'uniqueId': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5:log:36', 'hash': '0xa2a7f368f8d4810183d21f210db579ebeaf2a6457752296a5c30750652d437a5', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23c34600', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:28.000Z'}}, {'blockNum': '0x6f3fb6', 'uniqueId': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac:log:41', 'hash': '0xd1829cced9c4a5e5d5bdf5b492f4fe103b131effb212833e69bbe6ad7c9a6eac', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'value': 7058.6999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x04351277', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:45:39.000Z'}}, {'blockNum': '0x6f3fbc', 'uniqueId': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617:log:57', 'hash': '0x36a6ef4b28fab6dea75aed928c67342eb4995048e3af6c6ef5277fa633ef3617', 'from': '0xad12513975e2713a5f95871992624fc0fed9ffdb', 'to': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:47:56.000Z'}}, {'blockNum': '0x6f3fd3', 'uniqueId': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6:log:45', 'hash': '0x92a2633662f7bedec370c71186a479743551ba70f44ba0c52cc0ef00de8f1ee6', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T14:53:11.000Z'}}, {'blockNum': '0x6f3fff', 'uniqueId': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34:log:13', 'hash': '0x1246be2e041316531426970d3372c4b9da6334995ac006f25a42ec4083ddfb34', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1800.4222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0112b8fe', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:05:03.000Z'}}, {'blockNum': '0x6f4016', 'uniqueId': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f:log:10', 'hash': '0x73cea00d007bab854b29ccb6ecb19571566d8fc4972c55857056e7b94f5e7f4f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:11:40.000Z'}}, {'blockNum': '0x6f4028', 'uniqueId': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1:log:4', 'hash': '0x40df4d41faaab03aac1e52603c44c96657391beb41b98a13323169504e4874b1', 'from': '0x413fea4b3952d3b4e76a82221430c15db36bfa07', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:15:03.000Z'}}, {'blockNum': '0x6f4039', 'uniqueId': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d:log:33', 'hash': '0xab093c4be1acf2eba50642104ddb980ba598cf56e7fff9de1464dcce764bec9d', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:18:47.000Z'}}, {'blockNum': '0x6f403f', 'uniqueId': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f:log:26', 'hash': '0x2b43debbf0aefc545b9c465aa8789f7f150e180192f01c3db724f4b337a6e50f', 'from': '0x79ef17f3a5ddf966c914b3de0dfc629faa820bfb', 'to': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:20:22.000Z'}}, {'blockNum': '0x6f404d', 'uniqueId': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f:log:43', 'hash': '0xa75ce663720d8475aa6682c165a4238b075bd92309953a06860e925976c16a6f', 'from': '0x9db8ca3403c1ed8f0afbef5c800850c72812cba0', 'to': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:24:02.000Z'}}, {'blockNum': '0x6f4053', 'uniqueId': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851:log:82', 'hash': '0xa1661030edf41792c5bad51c38ad4ecba3b28ca9a5f44b1b2889e19cdba54851', 'from': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:25:27.000Z'}}, {'blockNum': '0x6f4070', 'uniqueId': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d:log:8', 'hash': '0x6e1a91e6d96a46e313a6a622b8966a14dfe6ae7196d9d80a7f00fb00575fa43d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:31:27.000Z'}}, {'blockNum': '0x6f4088', 'uniqueId': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488:log:8', 'hash': '0x289a7b001edcd360caf7115bf0b24e87d66e4583222d2970bca7d57d0db4d488', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 2371.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169e488', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:35:41.000Z'}}, {'blockNum': '0x6f408c', 'uniqueId': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6:log:72', 'hash': '0xe3995a51664d4846f26487b59c6635cb002e85e734e549fd4ec8f92966adfab6', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 2372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0169f040', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:36:51.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825:log:41', 'hash': '0x6f9ae760e5d744b18175963b5df36084c52944b05aae8bb801e8ae1ccfae5825', 'from': '0x657e5019ff20d8e538c018a4e4f2f422e20b6ac4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49926.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dc22212', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40b0', 'uniqueId': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45:log:43', 'hash': '0x62b21b8fbce806fc689e9a9630f2cd30f5bac3a3dca0890180d72363cc67cb45', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0162c450', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:44:58.000Z'}}, {'blockNum': '0x6f40bd', 'uniqueId': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115:log:28', 'hash': '0xec6ad4c4e1d4d93a63a4e6a62a64ca87216349ab8ed5530e593f32b64b0f0115', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:49:46.000Z'}}, {'blockNum': '0x6f40ca', 'uniqueId': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555:log:31', 'hash': '0xf680dac3f5afe13372e801afe85e786240b7c441ce9f5eb8ebac314e8939f555', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:52:57.000Z'}}, {'blockNum': '0x6f40cb', 'uniqueId': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4:log:2', 'hash': '0xf5b1104936172157934e8d99b3dc11c5e02d9045b7fc69774a20d6c4e519f2a4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:43.000Z'}}, {'blockNum': '0x6f40cc', 'uniqueId': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6:log:90', 'hash': '0x84aab5593dc1f2753fb2a1e341af353ac8b1be023afa7d281b83f7e8f45380f6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T15:53:57.000Z'}}, {'blockNum': '0x6f410f', 'uniqueId': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27:log:21', 'hash': '0x6367c656210e0d439120c6469a1efe3975cc08a42e82c293c56525714f3d2b27', 'from': '0x287f05e0e7847148adfbd4be181632d5e362e60b', 'to': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:08:34.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8:log:21', 'hash': '0x2bbef0f8beb58dd9345dc9dc9da9b165fe2f785669514ce727686079ca2a6cb8', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x23779700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23:log:25', 'hash': '0x4f02ecb32adc6d717bcb6d27442bf18691623b09758456d9357127d159359e23', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84721.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x327f75b0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f4158', 'uniqueId': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368:log:35', 'hash': '0x42c5ddb456dbdc9cf38babdf5e3e6b3804ee95a1a0b805dfbe7a5d80459cc368', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:25:15.000Z'}}, {'blockNum': '0x6f417c', 'uniqueId': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8:log:74', 'hash': '0x27ecf5b9a9f298783d9bd90402519989e7ac7fe77012619647c8da7ff16659b8', 'from': '0x0b946efae53975b97a0d1d02f75fabf55d0d6a96', 'to': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:33:02.000Z'}}, {'blockNum': '0x6f4180', 'uniqueId': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82:log:48', 'hash': '0xbe500a89c9a4454ead55feff2eaf94db0006b95cba68cd83b16e502171d3dc82', 'from': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:47.000Z'}}, {'blockNum': '0x6f4181', 'uniqueId': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c:log:52', 'hash': '0x7d64fd601575e2b6ebfdf6c64db042d13db7a96e57fcf7d00aa78109ad28332c', 'from': '0x10c3e7e844ecd0b561c8eaf5905110fbce32a22b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x017d7840', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:34:58.000Z'}}, {'blockNum': '0x6f41a1', 'uniqueId': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050:log:1', 'hash': '0x4e21603e8fbf6616200530110cae1208dbf1be9f1d43b35fbe78ce702c139050', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 77.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0bdb28', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:42:22.000Z'}}, {'blockNum': '0x6f41b6', 'uniqueId': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed:log:94', 'hash': '0xebc4bbadf8c3fb48ad46be8dd2e3dbf5293f9b09cd7290ef1f13e7277b8550ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x00608e3ded9e953f29a70476bfb7ff57de04ab88', 'value': 20865.564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0c6fd518', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T16:49:56.000Z'}}, {'blockNum': '0x6f42f5', 'uniqueId': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69:log:7', 'hash': '0x564ccf76537683e487dffeb833ded289bfef35af05f94d06863911ebcab5af69', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x952f68', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:03:48.000Z'}}, {'blockNum': '0x6f4305', 'uniqueId': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188:log:0', 'hash': '0xa2f7118c5b255167352efd7dd48995d655687053f617aaaa1c290fd17a3a2188', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb454f852eb6ae8934cb168f88eda901f43895eaa', 'value': 77726.872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2e542df0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:10:57.000Z'}}, {'blockNum': '0x6f4331', 'uniqueId': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123:log:4', 'hash': '0xd920ecd87e8aec0ff744d1116077d5411e843b011ceb01ec5baa0adb1136b123', 'from': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xb71b00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:21:19.000Z'}}, {'blockNum': '0x6f4349', 'uniqueId': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08:log:3', 'hash': '0x735104456f931c6be9dcb6df709babc747da3924d3a474e34509940a191edb08', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:26:18.000Z'}}, {'blockNum': '0x6f4363', 'uniqueId': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a:log:79', 'hash': '0x64c84fff8b83feb9e0d92b5220cd556c99da9abbeceda735737f61720b518f7a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 209770.7957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb5', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:31:27.000Z'}}, {'blockNum': '0x6f4365', 'uniqueId': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b:log:78', 'hash': '0x3a151e5ecd46eae1a881d741274f33c52bec8eeb48d1b97df06f3dd7161bb34b', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 209770.7958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7d087bb6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:32:09.000Z'}}, {'blockNum': '0x6f436a', 'uniqueId': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f:log:73', 'hash': '0x3668f2922c4ef304d29615917e508150d48422de344407a06496b4653767539f', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x719fbeead55ae2729c0263f3f31edf3e7780c18a', 'value': 1701.0739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01039033', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:33:57.000Z'}}, {'blockNum': '0x6f4384', 'uniqueId': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81:log:6', 'hash': '0xdfb7f3fbe592766e2e41b85247754c6b1107492d54b7d89b0d449f36eb78cb81', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:27.000Z'}}, {'blockNum': '0x6f4388', 'uniqueId': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd:log:113', 'hash': '0x05259e7e9eda3994ce4a1e7f2b761f4d805f31432be565fe1c94a795e88ca5dd', 'from': '0x4691ff663e87981b2ecd8bcf1e294bda5dde10cf', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 119798.1335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x4767be97', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:40:58.000Z'}}, {'blockNum': '0x6f4389', 'uniqueId': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4:log:11', 'hash': '0x4bab8cf94bb63acec2ef6fb1b535ed23e3c96376b8790176887abcf8afa276e4', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:41:19.000Z'}}, {'blockNum': '0x6f438c', 'uniqueId': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471:log:37', 'hash': '0xedaae851786eba4a2d4b1ee7df875704b9946a73a942da08872c45e6e9a04471', 'from': '0xe8201454f1751c522b7217d2e8b865ce5f71a567', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 90884.5538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x362be1e2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:42:01.000Z'}}, {'blockNum': '0x6f4392', 'uniqueId': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80:log:2', 'hash': '0xfb77366ed3f0dcb61c8ad9bfe6e4946864fa9b430881c0bd93acfa24df668a80', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:43:40.000Z'}}, {'blockNum': '0x6f439a', 'uniqueId': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53:log:29', 'hash': '0x3a6f17f95a33cdc4eeee3548d4ea6ef1b8d63cf66dd7d6d0b31a7777506bfe53', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 211682.6873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7e2c36f9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:45:20.000Z'}}, {'blockNum': '0x6f43b9', 'uniqueId': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f:log:18', 'hash': '0xe8c384ffc96b1e4f0c8b3b226341e1bcf7427acd327a0b561a67f94402bbf22f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x09957a6b7bdff098d7749016a7e61a31f5b99bdc', 'value': 2256.419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01584d5e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T18:51:35.000Z'}}, {'blockNum': '0x6f43f5', 'uniqueId': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8:log:58', 'hash': '0xa18446e369b5f327ff9f96b74a674b5f419a41a587c22844f4bbee6e0f1133b8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:06:24.000Z'}}, {'blockNum': '0x6f4415', 'uniqueId': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5:log:68', 'hash': '0xbde03a16f39e303ffa75c746de80de45f052d8c94fe99dadcacf8187fd4ac6e5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:12:08.000Z'}}, {'blockNum': '0x6f4422', 'uniqueId': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73:log:38', 'hash': '0x36d4a5063ce0a591534df56dc61f6cd9e95f25fcf7707f798bdf258a3bc83b73', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:14:37.000Z'}}, {'blockNum': '0x6f4424', 'uniqueId': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85:log:4', 'hash': '0xb37dd0c9a3f15500ec23274abe4617f54760ddbce880dfd6f0b394c0af10ae85', 'from': '0x40c211cfa8fed4eb942ce8ce2d5e2e5ba0e84b95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66776.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x27cd58a8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:15:03.000Z'}}, {'blockNum': '0x6f442c', 'uniqueId': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c:log:0', 'hash': '0x05471e3d86921d6a166aaa54406f938e3c641b76f1ff89b7e4b86f557b14a70c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:34.000Z'}}, {'blockNum': '0x6f442f', 'uniqueId': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474:log:3', 'hash': '0x7fc18ecbdd49c4d40ce7068a746be62eddfc7f97e6516cb5a0f5f762cc18b474', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x521171abe3eff28f3b7963a353142b92756e449b', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:16:52.000Z'}}, {'blockNum': '0x6f4440', 'uniqueId': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28:log:74', 'hash': '0x5b4ea3ce4eebf8f95c93d8166c1b60d4905d7708d7de0eceb796e3de63160c28', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0846b775cb07c711b81aaa723b520c671515e545', 'value': 1556.6469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xed8685', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:20:24.000Z'}}, {'blockNum': '0x6f4450', 'uniqueId': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2:log:52', 'hash': '0x83d3ec8653dbe2f83cb84405bc48fdab0dcfa78cdeb32a442dd5c345e9655ef2', 'from': '0x521171abe3eff28f3b7963a353142b92756e449b', 'to': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:23:56.000Z'}}, {'blockNum': '0x6f4456', 'uniqueId': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94:log:17', 'hash': '0x66fcd4a1bc0ebbecbc607f9f4ef9dc4a18559548488850d6a5cc1249f37d4e94', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:26:32.000Z'}}, {'blockNum': '0x6f446f', 'uniqueId': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7:log:57', 'hash': '0x13ade570420c2fc15a4dba515bf58bed409b99bc39f4afcf44dd8175725285c7', 'from': '0xf8f236140d81e92dd8a230e753afa4d3e2ff248a', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 193068.1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7313dced', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:31:53.000Z'}}, {'blockNum': '0x6f44a2', 'uniqueId': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7:log:19', 'hash': '0x7623a16ed74f5813b5ef7ce4787a7842faaee41e9d7f8affec06d2cbf254aed7', 'from': '0xd5bd928d116fe1e9d5f11cda89615112f064372e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11e1a300', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:45:15.000Z'}}, {'blockNum': '0x6f44e5', 'uniqueId': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d:log:33', 'hash': '0x112752d27a68a0a802e38037299558f22898133930f6b40092694fc6bb4d496d', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:57:29.000Z'}}, {'blockNum': '0x6f44ea', 'uniqueId': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107:log:73', 'hash': '0x7b6590fbaeceae1474617ee654ee7ec07b502bed09bd4edb4d9f34bc0b63e107', 'from': '0x0846b775cb07c711b81aaa723b520c671515e545', 'to': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T19:58:29.000Z'}}, {'blockNum': '0x6f44f2', 'uniqueId': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9:log:33', 'hash': '0xcbf4df82c0297d495ecc2e71b5b14449af3be1712a3fb6af2c2d0adfe5f18cb9', 'from': '0x18eb1a25bf1ab00552cc5fbbfc305f2d7fa1f4da', 'to': '0x43b9f9eaf7259cdfbd3158d8b5d6576245946a9c', 'value': 423.7654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x40a956', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:06.000Z'}}, {'blockNum': '0x6f44f6', 'uniqueId': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347:log:73', 'hash': '0xa6dc0f5991187fd7fa4d454a6d5e6246ab66346f66d32dfd6fc368802127c347', 'from': '0x9559d08a64dd68ced94fc5a3802fc33e0a5eb559', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 800.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x7a322b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:00:45.000Z'}}, {'blockNum': '0x6f4549', 'uniqueId': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e:log:5', 'hash': '0x31e24d03edddf871a656989145d66208f6a0782fdb96b055920ff3608c6ef07e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:19:36.000Z'}}, {'blockNum': '0x6f454c', 'uniqueId': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825:log:85', 'hash': '0xc866f1b8eb2b295d2492f28615d8fb718f9708225c09d253b34a424988d4f825', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xcae9000485f5e732717ad7366577d2b04d479795', 'value': 1480.0239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xe1d56f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T20:20:01.000Z'}}, {'blockNum': '0x6f4769', 'uniqueId': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065:log:96', 'hash': '0x888759f9c143e28b8f11af15c295ef6e847ff20310a297e76006fd450792c065', 'from': '0xf78b4770ea558a445f160ac4be425c4e6de0ccd7', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 3500.0417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02161061', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:18:28.000Z'}}, {'blockNum': '0x6f47a4', 'uniqueId': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6:log:3', 'hash': '0xdf4bb48dbe57d2cfc24e832cb33670e4b0cf431e64ffe245542e9323918fa7a6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:30:23.000Z'}}, {'blockNum': '0x6f47ae', 'uniqueId': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d:log:43', 'hash': '0x75cbb421a3055c527e733c8f5dd359cb2d31ae808d6833efe0490d2830ca9e3d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 1150.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xaf79e1', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T22:32:39.000Z'}}, {'blockNum': '0x6f481c', 'uniqueId': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083:log:0', 'hash': '0x5d795bb3e876ef81f8a401c35c0374f7affa7582204c40c73c453d236396e083', 'from': '0x60426cbccd32998755338c2ef77c589848138b4c', 'to': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:00:01.000Z'}}, {'blockNum': '0x6f48ca', 'uniqueId': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6:log:53', 'hash': '0x9a83a741f3fe5f636e7d2599fbdc5728a7d869f8edcb2a95d2fee259e7894cb6', 'from': '0x7605c463aac4a479fdccaaa5b65c6bd831080f7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27276.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10421c00', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:34:56.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:121', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48d1', 'uniqueId': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a:log:122', 'hash': '0xe86c07744339065c626937d760ad6647596f2dfec13e301580978ae63b6dd07a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f910e0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:35:46.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:92', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0xb3b08089acd17805a3a538211f12694717deeef5', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f48df', 'uniqueId': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250:log:93', 'hash': '0x95f6130f7c133f9c89420d7a1ecdb00f6e03bd3dac5254b18d4965d360c40250', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018e4120', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:39:05.000Z'}}, {'blockNum': '0x6f4947', 'uniqueId': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75:log:55', 'hash': '0x279379b8b8065aa09d3cbe47f29dc29cafb1a521a613e50fe3e64631a21a4f75', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-02T23:59:49.000Z'}}, {'blockNum': '0x6f4948', 'uniqueId': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1:log:68', 'hash': '0xe133875f4137289bd4ac57dd52e1f52a4e15bf93bf3bb7a2dab8cfa0ee7e82b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1132818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x02a3364f20', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:00:49.000Z'}}, {'blockNum': '0x6f498b', 'uniqueId': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849:log:6', 'hash': '0xfc4bd8749cc94221df9c387718801a7793188c34a2451c329c9cf448292bd849', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 29977.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x11de3be8', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:17:57.000Z'}}, {'blockNum': '0x6f4a07', 'uniqueId': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05:log:3', 'hash': '0xfb3f02a88344ae855cbc86ae40af61e496483316f2d7ded4357f26279d977d05', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:46:36.000Z'}}, {'blockNum': '0x6f4a0b', 'uniqueId': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322:log:65', 'hash': '0x0b69896b3ee73fac95fddc8b01ef2bc1d8b04c571dd02e2a2610626bfa6a0322', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x47f35c32efb70e3632f3bd7ce8596ae7258dcc77', 'value': 797.1364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x79a224', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:48:22.000Z'}}, {'blockNum': '0x6f4a28', 'uniqueId': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484:log:54', 'hash': '0x839615db1d63a21791663e893560fc991ccd3523aa2677fd52c5cd15b0228484', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:56:30.000Z'}}, {'blockNum': '0x6f4a2d', 'uniqueId': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c:log:31', 'hash': '0x785c4786ac6ea0aa90ec0a20eb70f61d4d3b92425be97910577455107294aa2c', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 3617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0227e910', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2019-03-03T00:57:54.000Z'}}]}}
Number of returned transfers:  166
Answer is complete
 
symbol             GRS
group              BPF
date        2019-03-05
hour             16:30
exchange       binance
Name: 764, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: GRS, Contract: 
Datetime timestamps:  2019-03-05 16:30:00 2019-03-05 04:30:00 2019-03-06 04:30:00
Unix timestamps:  1551756600.0 1551843000.0
Hex Block Numbers:  0x6f7ed5 0x6f97cc
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              BPF
date        2019-03-17
hour             18:59
exchange       binance
Name: 765, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2019-03-17 18:59:00 2019-03-17 06:59:00 2019-03-18 06:59:00
Unix timestamps:  1552802340.0 1552888740.0
Hex Block Numbers:  0x70aea7 0x70c7cd
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x70afc3', 'uniqueId': '0x726bcf42778fea0c99595cd36eebe7f1413e9a260961748490fd96e48a3431cc:log:64', 'hash': '0x726bcf42778fea0c99595cd36eebe7f1413e9a260961748490fd96e48a3431cc', 'from': '0x79cded43afb2e12913cd4148cc3372cd3da4acd6', 'to': '0x3d3afe93bfc3395139505e668698dde87408e87a', 'value': 21.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x012bc29d8eec700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T07:00:05.000Z'}}, {'blockNum': '0x70afca', 'uniqueId': '0x4f59fa80988a421ea2570912c3c73d7c6cc10373605a11ccbbd7f6bdbc0f2a5d:log:72', 'hash': '0x4f59fa80988a421ea2570912c3c73d7c6cc10373605a11ccbbd7f6bdbc0f2a5d', 'from': '0x52c5425d06819ee7fada85a7f183cb043c42d737', 'to': '0x31cb1fca5ba717ef7679730cc3f42cd0f96eb255', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T07:01:30.000Z'}}, {'blockNum': '0x70aff7', 'uniqueId': '0x1ecdb11b61679a9702535fdee8b28ea9aae70c321d1c5371cbf1501a2bdcc2c6:log:3', 'hash': '0x1ecdb11b61679a9702535fdee8b28ea9aae70c321d1c5371cbf1501a2bdcc2c6', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xc6c43214f28a2302d333b13eafe609628a84aaf8', 'value': 184.00328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09f98ef844d2bd0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T07:12:31.000Z'}}, {'blockNum': '0x70b018', 'uniqueId': '0xc35280ba9832c4646e8c01e8380f43713db6f6dfc985b6601862c25d8c1c5fed:log:83', 'hash': '0xc35280ba9832c4646e8c01e8380f43713db6f6dfc985b6601862c25d8c1c5fed', 'from': '0xe643072359bfa27db7dafebb52feffcddbb38679', 'to': '0x772d6923b8101ee109a2b7c244838032a76d321e', 'value': 51.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02d041d705a2c60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T07:20:18.000Z'}}, {'blockNum': '0x70b117', 'uniqueId': '0xfbef3988d6fde958ecc2b0063a6f6693efeb7e0cdf6f1f98f7877c92cb806da2:log:39', 'hash': '0xfbef3988d6fde958ecc2b0063a6f6693efeb7e0cdf6f1f98f7877c92cb806da2', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x7717a96c53318b3cd4ea0c8b04ea092a4db215ec', 'value': 2097.07932741407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x71aed2697b0abbb980', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T08:15:16.000Z'}}, {'blockNum': '0x70b247', 'uniqueId': '0xa20cb515293363d9ae7889d7716d1ad770c66191dc09b94bb9e73fd94b0803f5:log:1', 'hash': '0xa20cb515293363d9ae7889d7716d1ad770c66191dc09b94bb9e73fd94b0803f5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1715f9f7bbd3eadd5122ef2f6f5f305890b0d839', 'value': 15.681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xd99e1a6b22e68000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T09:27:05.000Z'}}, {'blockNum': '0x70b25c', 'uniqueId': '0xad44e90da9c42c8ff6ef1c57e68ab3347136cac66ffd82e8b89489f86fbc33f3:log:72', 'hash': '0xad44e90da9c42c8ff6ef1c57e68ab3347136cac66ffd82e8b89489f86fbc33f3', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x5593b3f44527ced891c748921bf525fb0e133bf7', 'value': 103.1610774829625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0597a5c566628739a0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T09:31:35.000Z'}}, {'blockNum': '0x70b2b6', 'uniqueId': '0x73baa98e50bd587f84538564c2111a829fdc69b40bc18bef4ea92ae93937f74a:log:20', 'hash': '0x73baa98e50bd587f84538564c2111a829fdc69b40bc18bef4ea92ae93937f74a', 'from': '0x1715f9f7bbd3eadd5122ef2f6f5f305890b0d839', 'to': '0xd5bbb58e8e7271365a41038c2df1d3efea0b2a71', 'value': 15.681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xd99e1a6b22e68000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T09:53:17.000Z'}}, {'blockNum': '0x70b2f2', 'uniqueId': '0x101860fbdd6471a38f968b5e7114ba3bb51bb508764e9bd689ebb0bd645d8114:log:11', 'hash': '0x101860fbdd6471a38f968b5e7114ba3bb51bb508764e9bd689ebb0bd645d8114', 'from': '0xd5bbb58e8e7271365a41038c2df1d3efea0b2a71', 'to': '0xee20b6ed897ff6688c8d6fae17a71b838f12d438', 'value': 14.681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xcbbd63b77b828000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T10:07:29.000Z'}}, {'blockNum': '0x70b2fd', 'uniqueId': '0xf94bec2059f984b0f94035eaa16cbf5072e59456f1b2b89842f46e383c7561ad:log:20', 'hash': '0xf94bec2059f984b0f94035eaa16cbf5072e59456f1b2b89842f46e383c7561ad', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x5e0d600cb6d7d9a5296866a8565f4cbd91f77096', 'value': 8.285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x72fa3b9aac1c8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T10:11:00.000Z'}}, {'blockNum': '0x70b308', 'uniqueId': '0xb213389715a931790d0e1b7066795edce4139515dde8b969d5c6c27abdbbfbfb:log:32', 'hash': '0xb213389715a931790d0e1b7066795edce4139515dde8b969d5c6c27abdbbfbfb', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3c0d8a77ed1267143c6e5c5d38c925e9355de615', 'value': 28.5218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x018bd1c9fc2abc8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T10:14:35.000Z'}}, {'blockNum': '0x70b478', 'uniqueId': '0xc1abf3daff0ae2acd5f61922059b28a8ed2cdf5a7e82cd6c6ce2d48808791e4d:log:44', 'hash': '0xc1abf3daff0ae2acd5f61922059b28a8ed2cdf5a7e82cd6c6ce2d48808791e4d', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x0353962647f99b92fe041d1c66a55396252d8374', 'value': 280.5817398758545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f35da95d4d15ca51e', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T11:34:07.000Z'}}, {'blockNum': '0x70b5a5', 'uniqueId': '0x60e08b9ca580f00f36adc4b4ba0fc6ae11c0982b563933f89374b1dab789b6c5:log:4', 'hash': '0x60e08b9ca580f00f36adc4b4ba0fc6ae11c0982b563933f89374b1dab789b6c5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa810ae925194960ef71e572725ad25638cfa116e', 'value': 697.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x25d6ab0ad91d1b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T12:43:43.000Z'}}, {'blockNum': '0x70b83b', 'uniqueId': '0x6f4088146b1985e32241e0209307041b28690a2bfc6a753c4b3e2ff0c3cd3c56:log:35', 'hash': '0x6f4088146b1985e32241e0209307041b28690a2bfc6a753c4b3e2ff0c3cd3c56', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x7653ffd0e5b8133d29b4bcd0de9fe0c6e4d7a1ef', 'value': 1817.1544344887236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6282156a787e348eac', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T15:10:49.000Z'}}, {'blockNum': '0x70b95c', 'uniqueId': '0x5e19f46bfcec9d7efe6183cbac0eb8d4f41921fdd497ff5950e43ead3e58ae03:log:1', 'hash': '0x5e19f46bfcec9d7efe6183cbac0eb8d4f41921fdd497ff5950e43ead3e58ae03', 'from': '0xa7e3322845cfdf1f08660a1e990fe0f2450682af', 'to': '0x338a56d778df696958a62a117a6a0641c8ee2075', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T16:13:11.000Z'}}, {'blockNum': '0x70b962', 'uniqueId': '0x7319b3d62648a6e859fe74e16d9c2d04a05c408481d56502a6c98849cec4b408:log:1', 'hash': '0x7319b3d62648a6e859fe74e16d9c2d04a05c408481d56502a6c98849cec4b408', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9ceca5778bc3eea443284c2994a704b41f064ce1', 'value': 56.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0312dedd972ca60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T16:14:34.000Z'}}, {'blockNum': '0x70b9e8', 'uniqueId': '0xcb5b53e7098e9809f09f16b1d4380289ccded06abb6e8b2531ae30cbc9cba410:log:5', 'hash': '0xcb5b53e7098e9809f09f16b1d4380289ccded06abb6e8b2531ae30cbc9cba410', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4ba09a43baca2763b367ff7fa276663d7b6b99bd', 'value': 21.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x012d25e30749fa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T16:43:11.000Z'}}, {'blockNum': '0x70bc7d', 'uniqueId': '0x075b3d626fdffa76922dac1ad6440cd304834c7e473a676eacb2434b97f5f5a0:log:86', 'hash': '0x075b3d626fdffa76922dac1ad6440cd304834c7e473a676eacb2434b97f5f5a0', 'from': '0x3abfcc9c37111b34c5131dedad4bea77efb18e3d', 'to': '0xb2cda7c86e85072aac7b33ffff7be8baecb2863c', 'value': 2030.8306065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6e176faccf5f996800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T19:07:52.000Z'}}, {'blockNum': '0x70bc8a', 'uniqueId': '0x83d458981cac6e2875d6e160011829563ca96763fa959c34863fe0791b7eb769:log:39', 'hash': '0x83d458981cac6e2875d6e160011829563ca96763fa959c34863fe0791b7eb769', 'from': '0xb2cda7c86e85072aac7b33ffff7be8baecb2863c', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2030.8306065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6e176faccf5f996800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T19:10:37.000Z'}}, {'blockNum': '0x70bd9a', 'uniqueId': '0x939d780e83de63ed4b9486265861f159bcf9aea3405dec7d94cedf9426736994:log:1', 'hash': '0x939d780e83de63ed4b9486265861f159bcf9aea3405dec7d94cedf9426736994', 'from': '0x6c9cf9527d1479d2de394bf83be315b391a6c5a6', 'to': '0x559139aeab93e2d6d78c4f24fa9b6cbdc1dc787b', 'value': 47.649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x029543410b76968000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T20:08:03.000Z'}}, {'blockNum': '0x70bdd7', 'uniqueId': '0x56b460567b3c0d3880eea1c7e13c8d9ec5d349cc7500c3a2fffac7caa3250ab0:log:39', 'hash': '0x56b460567b3c0d3880eea1c7e13c8d9ec5d349cc7500c3a2fffac7caa3250ab0', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x8fa11cc6d2af64a01af9d4453755520490f955ae', 'value': 3939.175254969484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xd58b09cfbff0e285b0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T20:24:22.000Z'}}, {'blockNum': '0x70be0a', 'uniqueId': '0x9d01e0d68ba8ab76eb63a78be932b3ef6cbe249ce8ee7385eaf79c3bc44201c2:log:6', 'hash': '0x9d01e0d68ba8ab76eb63a78be932b3ef6cbe249ce8ee7385eaf79c3bc44201c2', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x46417ef86e1fd46b99c9d50609c760b170794c85', 'value': 96.47060227544887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x053acc6da5781ebf0b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T20:37:39.000Z'}}, {'blockNum': '0x70bea1', 'uniqueId': '0xe1edb1cc04674aa8c5c66bd2f3de68e728d5143f217b4bec1a49d156cb1ef05f:log:72', 'hash': '0xe1edb1cc04674aa8c5c66bd2f3de68e728d5143f217b4bec1a49d156cb1ef05f', 'from': '0xea1d7ac88d6685575f2d307f83a2715b85b6659c', 'to': '0x3d9b6fdb9f7e360f483dc330a102dc4843a967b7', 'value': 489.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a8eba6e6607de0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T21:11:57.000Z'}}, {'blockNum': '0x70bed5', 'uniqueId': '0x9590e20794e3859d9643be7b780329cd422d146d81332ba0dbbee5ff8353fd77:log:16', 'hash': '0x9590e20794e3859d9643be7b780329cd422d146d81332ba0dbbee5ff8353fd77', 'from': '0x3d9b6fdb9f7e360f483dc330a102dc4843a967b7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 489.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a8eba6e6607de0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T21:24:31.000Z'}}, {'blockNum': '0x70bfdb', 'uniqueId': '0xfc792df22fa2ed09bdbaf782f3ef707ca601435499132a3eec5e833a6c429153:log:12', 'hash': '0xfc792df22fa2ed09bdbaf782f3ef707ca601435499132a3eec5e833a6c429153', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xc7932c1e5d202f5d4342518b4dfa1f588a65606e', 'value': 73.78856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x040005a05f17990000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T22:29:18.000Z'}}, {'blockNum': '0x70c056', 'uniqueId': '0x4b668d6b14cbe98040152ac4745d1bca7568a207de0d621fde285c694b4c552f:log:47', 'hash': '0x4b668d6b14cbe98040152ac4745d1bca7568a207de0d621fde285c694b4c552f', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x2357cd8634f6f84798643210d8c3a5a4e4d11dc6', 'value': 313.07194061243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x10f8bef742c2146f80', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-17T22:54:58.000Z'}}, {'blockNum': '0x70c4a2', 'uniqueId': '0x7724653b248658e3fc1b1c9dadd2d912fb8e97267ba6c04342e51ce34e97369c:log:99', 'hash': '0x7724653b248658e3fc1b1c9dadd2d912fb8e97267ba6c04342e51ce34e97369c', 'from': '0xfe80e2c1b2627709f468275d6a3b0e0ba930e905', 'to': '0x81f8316c99095515b13d31f8763bf4dab1b3b1df', 'value': 94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05188315f776b80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-18T02:53:16.000Z'}}, {'blockNum': '0x70c4dd', 'uniqueId': '0xa273b36939db6436922adb793553ecfff3046e9c83c53122254e1247ae989ad1:log:3', 'hash': '0xa273b36939db6436922adb793553ecfff3046e9c83c53122254e1247ae989ad1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1080.83487968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3a9798dc8f72778000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-18T03:08:49.000Z'}}, {'blockNum': '0x70c4e7', 'uniqueId': '0x5798f2bdba8b15f8b91d51ea0bfd6ebbf85dfd40a709cedc75ba0b11a1f0ee72:log:52', 'hash': '0x5798f2bdba8b15f8b91d51ea0bfd6ebbf85dfd40a709cedc75ba0b11a1f0ee72', 'from': '0x81f8316c99095515b13d31f8763bf4dab1b3b1df', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05188315f776b80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-18T03:11:39.000Z'}}, {'blockNum': '0x70c4f4', 'uniqueId': '0x721c1e9b41e2f3c61ce6f80cd8d27d75849e8ba0ef8a5733665a57687f057ec0:log:72', 'hash': '0x721c1e9b41e2f3c61ce6f80cd8d27d75849e8ba0ef8a5733665a57687f057ec0', 'from': '0x6fee31b962dcda8022fa2dadaaf3fe58a42a4c27', 'to': '0x8aeb700134fd51c4b5560b83eea59edbd96b9ca8', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-18T03:14:08.000Z'}}, {'blockNum': '0x70c522', 'uniqueId': '0x60e7803cd707ed1d62cfc3d33fbd14050cc00fe26796407ab3dd41e98aa49752:log:64', 'hash': '0x60e7803cd707ed1d62cfc3d33fbd14050cc00fe26796407ab3dd41e98aa49752', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1b78170387ec5593de8687e272597656fe0386b0', 'value': 1080.83487968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3a9798dc8f72778000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-18T03:27:04.000Z'}}, {'blockNum': '0x70c685', 'uniqueId': '0xc8eef1e3ba5629a07532db92bdf5ad6647d5e6cc7df991ec896b3c14aab22443:log:5', 'hash': '0xc8eef1e3ba5629a07532db92bdf5ad6647d5e6cc7df991ec896b3c14aab22443', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x621d6641f54987e99acf061eecb23427955f1ddd', 'value': 2008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6cda991128f8600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-03-18T04:46:07.000Z'}}]}}
Number of returned transfers:  32
Answer is complete
 
symbol             SNM
group              BPF
date        2019-04-04
hour             13:29
exchange       binance
Name: 768, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-04-04 13:29:00 2019-04-04 01:29:00 2019-04-05 01:29:00
Unix timestamps:  1554334140.0 1554420540.0
Hex Block Numbers:  0x7269ef 0x728300
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             BLZ
group              BPF
date        2019-04-13
hour             17:00
exchange       binance
Name: 769, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-04-13 17:00:00 2019-04-13 05:00:00 2019-04-14 05:00:00
Unix timestamps:  1555124400.0 1555210800.0
Hex Block Numbers:  0x734fc7 0x73691a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7350ab', 'uniqueId': '0xc622dfde86c2f77bf95dfbe142e9683194b0dbb1bbd1862ccae55e695268e3d3:log:2', 'hash': '0xc622dfde86c2f77bf95dfbe142e9683194b0dbb1bbd1862ccae55e695268e3d3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 185200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2737b64d5058a7c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T03:44:30.000Z'}}, {'blockNum': '0x7350b9', 'uniqueId': '0x40fe3ce83de8f95467cfc8bc7abd4bed2c629892c431cb33a207322203ba42a3:log:6', 'hash': '0x40fe3ce83de8f95467cfc8bc7abd4bed2c629892c431cb33a207322203ba42a3', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 80065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10f45514b17312640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T03:46:39.000Z'}}, {'blockNum': '0x7350d7', 'uniqueId': '0x6332ed2d1f51c64ee7b602d1ff7e7aac2dc92457bafc66b95567c2605e06b2e3:log:2', 'hash': '0x6332ed2d1f51c64ee7b602d1ff7e7aac2dc92457bafc66b95567c2605e06b2e3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T03:54:15.000Z'}}, {'blockNum': '0x735105', 'uniqueId': '0x372cd66aac45c0b612060574fe49fd367a070fe9391edb5a98787807ee5277fd:log:52', 'hash': '0x372cd66aac45c0b612060574fe49fd367a070fe9391edb5a98787807ee5277fd', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xdde1c7ad4cca5672a5c6db767b7ed79794bf7ca8', 'value': 10032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021fd5f7a02f9ec00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:03:40.000Z'}}, {'blockNum': '0x73510d', 'uniqueId': '0xdc1dd0f65cf6ed922cc5273baedbcc48fb66cc2ddc0225ce23215bbad0385d42:log:6', 'hash': '0xdc1dd0f65cf6ed922cc5273baedbcc48fb66cc2ddc0225ce23215bbad0385d42', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:05:51.000Z'}}, {'blockNum': '0x735183', 'uniqueId': '0x12a33fe82dd1a15452d37fa38d0d8b3a1ae90ef9435ab62375d564427baa11d5:log:5', 'hash': '0x12a33fe82dd1a15452d37fa38d0d8b3a1ae90ef9435ab62375d564427baa11d5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 69.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03c9e79b3653468000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:33:14.000Z'}}, {'blockNum': '0x7351c7', 'uniqueId': '0x6411af7f42b85d6a0884cfca948cee3ecf2a05b2d9c6a770f08a0fd36b757395:log:7', 'hash': '0x6411af7f42b85d6a0884cfca948cee3ecf2a05b2d9c6a770f08a0fd36b757395', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 36982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d4cc5944f768180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:45:57.000Z'}}, {'blockNum': '0x7351d9', 'uniqueId': '0x38922b1505028d4d1d0505467f62a930c22b8dce7d459831aeaac3aa316f04d4:log:4', 'hash': '0x38922b1505028d4d1d0505467f62a930c22b8dce7d459831aeaac3aa316f04d4', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d4cc5944f768180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:49:03.000Z'}}, {'blockNum': '0x73521f', 'uniqueId': '0xf556e605d09994c3a1c1feb2926592c4695bb7e9e5ad948a4f17245fc5c5215d:log:79', 'hash': '0xf556e605d09994c3a1c1feb2926592c4695bb7e9e5ad948a4f17245fc5c5215d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 32058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06c9de1f1d6fc0a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:03:37.000Z'}}, {'blockNum': '0x735237', 'uniqueId': '0x76a11b813e4884998dcb34fe487e139dc28644063c248a458dae32f6ebf1a859:log:16', 'hash': '0x76a11b813e4884998dcb34fe487e139dc28644063c248a458dae32f6ebf1a859', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06c9de1f1d6fc0a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:08:59.000Z'}}, {'blockNum': '0x735265', 'uniqueId': '0x8a2c44af91e9678c6dd41c01316b6564e7fe107431d8865aac1f76b474c01057:log:43', 'hash': '0x8a2c44af91e9678c6dd41c01316b6564e7fe107431d8865aac1f76b474c01057', 'from': '0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c', 'to': '0x58251fb558105e823a17eef3b6fc281a2d5cbd32', 'value': 0.15021936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0215afb6472fc000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:20:49.000Z'}}, {'blockNum': '0x7352ae', 'uniqueId': '0x549c0be1231059f32da19f563e627749b8a5c501b8c7069579aef726e88fe340:log:17', 'hash': '0x549c0be1231059f32da19f563e627749b8a5c501b8c7069579aef726e88fe340', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 10282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x022d636a0ba116680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:38:34.000Z'}}, {'blockNum': '0x7352d8', 'uniqueId': '0xd276c72d96de1144f7dac7ca2bfb9d3d3f99aeebce7966a70275b7f224c6aa19:log:67', 'hash': '0xd276c72d96de1144f7dac7ca2bfb9d3d3f99aeebce7966a70275b7f224c6aa19', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x022d636a0ba116680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:49:51.000Z'}}, {'blockNum': '0x735318', 'uniqueId': '0xbba35d46eae288bf46526aee3c68e759a8e3a1d91d2e7d00e3cdcd21f5053452:log:9', 'hash': '0xbba35d46eae288bf46526aee3c68e759a8e3a1d91d2e7d00e3cdcd21f5053452', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 67315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e41274949d83bec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T06:01:21.000Z'}}, {'blockNum': '0x735364', 'uniqueId': '0xeb9b02abf4f8db7a3f2ba3b100d80ad4333a7ad7403ce3834c9a1a99682e8a4e:log:1', 'hash': '0xeb9b02abf4f8db7a3f2ba3b100d80ad4333a7ad7403ce3834c9a1a99682e8a4e', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e41274949d83bec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T06:19:02.000Z'}}, {'blockNum': '0x7353c4', 'uniqueId': '0xc927ea70e83d7f8edfbffbbda5849dd08faf533dc957b8acd9eb69b54d616ea2:log:6', 'hash': '0xc927ea70e83d7f8edfbffbbda5849dd08faf533dc957b8acd9eb69b54d616ea2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcb972f1c6d0af7e841dfcf4bf49f12d87be969b0', 'value': 285.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f7ce24c4be91a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T06:42:31.000Z'}}, {'blockNum': '0x73540e', 'uniqueId': '0x2dde975f41fc7b95d98bacacd45e08e0caa7d3a19c1bd07a2464e84fbe05ec22:log:68', 'hash': '0x2dde975f41fc7b95d98bacacd45e08e0caa7d3a19c1bd07a2464e84fbe05ec22', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:01:57.000Z'}}, {'blockNum': '0x73540e', 'uniqueId': '0x870329ed7c1905840a72cbbe7fffbf91a863de67b4787019c17d95856f06c807:log:70', 'hash': '0x870329ed7c1905840a72cbbe7fffbf91a863de67b4787019c17d95856f06c807', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:01:57.000Z'}}, {'blockNum': '0x73540e', 'uniqueId': '0xe3c8003e837ceb4dc7e5744adacec1633f8f4f0e1596be9a770c7d6a68d8622b:log:73', 'hash': '0xe3c8003e837ceb4dc7e5744adacec1633f8f4f0e1596be9a770c7d6a68d8622b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 103408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5c24818ef59c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:01:57.000Z'}}, {'blockNum': '0x73542d', 'uniqueId': '0x11688c696c01aacccec7837090744f103dec8aa72b49813278e71c52a4095f9e:log:28', 'hash': '0x11688c696c01aacccec7837090744f103dec8aa72b49813278e71c52a4095f9e', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:08:47.000Z'}}, {'blockNum': '0x73542e', 'uniqueId': '0x678aecce24353f98029a45ebf7f7f55d59f9c6a3f8c3243b37ea6237ccf4d72e:log:7', 'hash': '0x678aecce24353f98029a45ebf7f7f55d59f9c6a3f8c3243b37ea6237ccf4d72e', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 103408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5c24818ef59c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:09:07.000Z'}}, {'blockNum': '0x73543a', 'uniqueId': '0x220c9ab64cb9ee1f1145bdecdf1a784efecc562a3d95167300b7a586ec193fde:log:24', 'hash': '0x220c9ab64cb9ee1f1145bdecdf1a784efecc562a3d95167300b7a586ec193fde', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:11:16.000Z'}}, {'blockNum': '0x735473', 'uniqueId': '0x68508aa4d84a0051e40a641a79dad8a243a28bc17a9bc48c64a79414e5a045f2:log:74', 'hash': '0x68508aa4d84a0051e40a641a79dad8a243a28bc17a9bc48c64a79414e5a045f2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 26998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05b79083e6772c180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:23:54.000Z'}}, {'blockNum': '0x73548c', 'uniqueId': '0x8403f9cf146010cdccaf37e9ab882d2816c0e0503a6656a66daa3e5b536ccb3f:log:14', 'hash': '0x8403f9cf146010cdccaf37e9ab882d2816c0e0503a6656a66daa3e5b536ccb3f', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05b79083e6772c180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:29:17.000Z'}}, {'blockNum': '0x7354a3', 'uniqueId': '0x5225e3cc8beb9287b9d00d1325b03257c507187ee828cedf5b1697d6223ae3a5:log:7', 'hash': '0x5225e3cc8beb9287b9d00d1325b03257c507187ee828cedf5b1697d6223ae3a5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:36:30.000Z'}}, {'blockNum': '0x7354b0', 'uniqueId': '0xfea7e9aa5e519e054eadce20b813d9286a1960e4abc5116dea559bfca68df199:log:14', 'hash': '0xfea7e9aa5e519e054eadce20b813d9286a1960e4abc5116dea559bfca68df199', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:38:52.000Z'}}, {'blockNum': '0x735546', 'uniqueId': '0xf27e7fd2f417bb87181a9b0024f1ecad4aa91525d65eba7179d04b037112f63e:log:30', 'hash': '0xf27e7fd2f417bb87181a9b0024f1ecad4aa91525d65eba7179d04b037112f63e', 'from': '0x426d0a5e194dcc628ad8467b398c2ce7cf828f1e', 'to': '0x9ea66a773e14ee249ab7f9ebb427e5995372193d', 'value': 570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ee656cc02b4a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T08:14:33.000Z'}}, {'blockNum': '0x7355b6', 'uniqueId': '0xbff24fce7f03b1e651db4842fb393940c4107cca5417369b2398dba142ed368a:log:21', 'hash': '0xbff24fce7f03b1e651db4842fb393940c4107cca5417369b2398dba142ed368a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 171.164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x094760af225ef60000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T08:42:49.000Z'}}, {'blockNum': '0x7355d3', 'uniqueId': '0xdf02f2a715156d895e175bf4f86a339acbb6a5c59aedba2bd62ca0e574a21c9c:log:2', 'hash': '0xdf02f2a715156d895e175bf4f86a339acbb6a5c59aedba2bd62ca0e574a21c9c', 'from': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'to': '0x1cf78337f278a12c203e570921446d3438539e7c', 'value': 491.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1a9ebab5ca29e48000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T08:49:03.000Z'}}, {'blockNum': '0x73560e', 'uniqueId': '0x9d56daac5fa80a97f6d76008f587e6bb9fd4df2c1a5946fa51d933bd99687826:log:1', 'hash': '0x9d56daac5fa80a97f6d76008f587e6bb9fd4df2c1a5946fa51d933bd99687826', 'from': '0x1cf78337f278a12c203e570921446d3438539e7c', 'to': '0x24f738a0ac7b2564dc8ead7dfab8cf1533687fd7', 'value': 400.00011629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15af1de2796c641400', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T09:02:13.000Z'}}, {'blockNum': '0x735716', 'uniqueId': '0x0d8c25ba514dc4b63d5d8bfb72f17a3e3689e4682a0ccf93dc42fc4fca2b9579:log:4', 'hash': '0x0d8c25ba514dc4b63d5d8bfb72f17a3e3689e4682a0ccf93dc42fc4fca2b9579', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 15082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033198cbb423a9680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:03:43.000Z'}}, {'blockNum': '0x735731', 'uniqueId': '0xb3f5607990eb18ed24ea455363842d92561507caceff4d87fc7a78d0089690ea:log:82', 'hash': '0xb3f5607990eb18ed24ea455363842d92561507caceff4d87fc7a78d0089690ea', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033198cbb423a9680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:09:06.000Z'}}, {'blockNum': '0x73577f', 'uniqueId': '0x11c3664a59f78ce830d1fbabec51bd3d66b5e4475b1e6a930ad354fc79894aa8:log:63', 'hash': '0x11c3664a59f78ce830d1fbabec51bd3d66b5e4475b1e6a930ad354fc79894aa8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 30054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065d3b08e71565d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:26:57.000Z'}}, {'blockNum': '0x7357a9', 'uniqueId': '0xa3147b558873486e5e3c1d3b59ffdcaaead11007969c045b11995d30fa5c852a:log:76', 'hash': '0xa3147b558873486e5e3c1d3b59ffdcaaead11007969c045b11995d30fa5c852a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x98525cb4894100899fa84dcbb96e57972df09ca2', 'value': 19998.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x043c18dff838a2918000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:36:08.000Z'}}, {'blockNum': '0x7357b9', 'uniqueId': '0xcd1e4a9714881a662699c3c73e2769baae214fc85b3cc6d05eeca8bce6fa1800:log:26', 'hash': '0xcd1e4a9714881a662699c3c73e2769baae214fc85b3cc6d05eeca8bce6fa1800', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065d3b08e71565d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:39:05.000Z'}}, {'blockNum': '0x7357e3', 'uniqueId': '0xa2361acf4aa1cef3f7376ede3a7c41a071034d2e403e10809f17f524d6e5b876:log:4', 'hash': '0xa2361acf4aa1cef3f7376ede3a7c41a071034d2e403e10809f17f524d6e5b876', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xaf64fa82f409d3b5abb69e0be8f2215a84bd86ff', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:49:54.000Z'}}, {'blockNum': '0x735811', 'uniqueId': '0x1b5fb263f3dc3399a369d03006451974e10fff259697fe2bc7254d7ee4ec5a5e:log:73', 'hash': '0x1b5fb263f3dc3399a369d03006451974e10fff259697fe2bc7254d7ee4ec5a5e', 'from': '0xaf64fa82f409d3b5abb69e0be8f2215a84bd86ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:58:53.000Z'}}, {'blockNum': '0x735879', 'uniqueId': '0x76f83e12d92698b00c248eb992969c9e44d9ac66243bf1dbc8c39eebf296dbb9:log:91', 'hash': '0x76f83e12d92698b00c248eb992969c9e44d9ac66243bf1dbc8c39eebf296dbb9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 62277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d300afdc65009f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:21:13.000Z'}}, {'blockNum': '0x735887', 'uniqueId': '0x8a784ae7f7bb6d0249a1357176eca2fa48f8f32aa85ba6f8219c4d1841b28e7e:log:42', 'hash': '0x8a784ae7f7bb6d0249a1357176eca2fa48f8f32aa85ba6f8219c4d1841b28e7e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 36425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07b69a6bc01433840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:24:55.000Z'}}, {'blockNum': '0x73589a', 'uniqueId': '0xa6d5d6d526e0c2a2d755a9dbba3398754112996e80f1c1e7b861ae22ac5f5a7c:log:21', 'hash': '0xa6d5d6d526e0c2a2d755a9dbba3398754112996e80f1c1e7b861ae22ac5f5a7c', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07b69a6bc01433840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:29:30.000Z'}}, {'blockNum': '0x73589a', 'uniqueId': '0x65711e151081aed9af4b74c68c8132ead1715efdda43c30b5ab5ca5e471514ee:log:27', 'hash': '0x65711e151081aed9af4b74c68c8132ead1715efdda43c30b5ab5ca5e471514ee', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d300afdc65009f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:29:30.000Z'}}, {'blockNum': '0x7358c3', 'uniqueId': '0xf8df4f97b5fd73b3e692aa22cdc7d6e1321443bdde44347fd3f746f647468e60:log:95', 'hash': '0xf8df4f97b5fd73b3e692aa22cdc7d6e1321443bdde44347fd3f746f647468e60', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 265265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x382c0b6201cbba240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:37:05.000Z'}}, {'blockNum': '0x7358c3', 'uniqueId': '0x135ff771c63f04a4519c45ca2b8ea1079934da06a5c1b50ca6ed699b6d9ca5a3:log:97', 'hash': '0x135ff771c63f04a4519c45ca2b8ea1079934da06a5c1b50ca6ed699b6d9ca5a3', 'from': '0xdde1c7ad4cca5672a5c6db767b7ed79794bf7ca8', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 10032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021fd5f7a02f9ec00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:37:05.000Z'}}, {'blockNum': '0x73593a', 'uniqueId': '0x909c63600b431ac653e43b3a2b3a5f3eab4fee90179c83a67cde0e798574f74d:log:8', 'hash': '0x909c63600b431ac653e43b3a2b3a5f3eab4fee90179c83a67cde0e798574f74d', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'value': 963.9642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3441b0cc99499a8000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:01:54.000Z'}}, {'blockNum': '0x735946', 'uniqueId': '0x30a92090030b8f9ec7234d2fbf1ad290936580a8a9773cb2cb8ad6b97c91ef87:log:0', 'hash': '0x30a92090030b8f9ec7234d2fbf1ad290936580a8a9773cb2cb8ad6b97c91ef87', 'from': '0xcb972f1c6d0af7e841dfcf4bf49f12d87be969b0', 'to': '0x1cf78337f278a12c203e570921446d3438539e7c', 'value': 285.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f7ce24c4be91a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:04:40.000Z'}}, {'blockNum': '0x73597f', 'uniqueId': '0x82e9157b8474697caee33962d404032c250ec2daea0bc51bad5b585d64f4bdd7:log:0', 'hash': '0x82e9157b8474697caee33962d404032c250ec2daea0bc51bad5b585d64f4bdd7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x16fb6a3c8e7c63aeaa75de6b13e456acbe58fad6', 'value': 964.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x344c2df0b1c2d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:17:57.000Z'}}, {'blockNum': '0x735995', 'uniqueId': '0xb7720690eecd83f547437b857bbe4709e8172c40c0b2d6c36552d0b1e1ace55a:log:37', 'hash': '0xb7720690eecd83f547437b857bbe4709e8172c40c0b2d6c36552d0b1e1ace55a', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'value': 1444.9004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4e54056a63bbd30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:21:55.000Z'}}, {'blockNum': '0x73599b', 'uniqueId': '0x09226ad8a040fadc965665095c5de3efe648b01e7144c8ea71bbfa96daecc159:log:88', 'hash': '0x09226ad8a040fadc965665095c5de3efe648b01e7144c8ea71bbfa96daecc159', 'from': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 2408.8645999999994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x8295b636fd05676580', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:23:17.000Z'}}, {'blockNum': '0x7359cc', 'uniqueId': '0x3f0d4caf66e33f90421994b9cb3380c17e4f0b1dd6d374e207de75fdeed87f45:log:5', 'hash': '0x3f0d4caf66e33f90421994b9cb3380c17e4f0b1dd6d374e207de75fdeed87f45', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 14628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0318fc47b188ce100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:33:36.000Z'}}, {'blockNum': '0x7359ea', 'uniqueId': '0xb385b35dbfdb32937e8306555ce0964a1a46964e7c5cf51ea81a05bf3ea6a56e:log:32', 'hash': '0xb385b35dbfdb32937e8306555ce0964a1a46964e7c5cf51ea81a05bf3ea6a56e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc5b426c2f0b0e80a12815a7e8f9c134cbae6e7de', 'value': 1386.298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4b26bfde1412790000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:40:06.000Z'}}, {'blockNum': '0x735a11', 'uniqueId': '0x796e79b874300ddae261cfe996131e94a107f7603e119207954e801b8d615500:log:9', 'hash': '0x796e79b874300ddae261cfe996131e94a107f7603e119207954e801b8d615500', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0318fc47b188ce100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:48:19.000Z'}}, {'blockNum': '0x735a2d', 'uniqueId': '0xb9a84946d47baf6856244c4eea0468846ec6239d6647dfe60c498e9b893d32f1:log:48', 'hash': '0xb9a84946d47baf6856244c4eea0468846ec6239d6647dfe60c498e9b893d32f1', 'from': '0xc5b426c2f0b0e80a12815a7e8f9c134cbae6e7de', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 1386.2979989999997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4b26bfdd2b3dcf5c20', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:55:31.000Z'}}, {'blockNum': '0x735a76', 'uniqueId': '0xeca8a246909f5b412a11d6e7f56041f99ba058ef3597888b6882e5a2936e7d72:log:50', 'hash': '0xeca8a246909f5b412a11d6e7f56041f99ba058ef3597888b6882e5a2936e7d72', 'from': '0x65b7a521bbbcd884f36578099f259e88fca9cead', 'to': '0xf609a55e8804330f4e0f1f372110b44b91bd90e2', 'value': 178.94022273985553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09b34b6084165d5bca', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T13:11:44.000Z'}}, {'blockNum': '0x735b33', 'uniqueId': '0x66f27839872d3819cbccac90b6b6c315c855d67ebf3447d557e78e1a618aa6d9:log:14', 'hash': '0x66f27839872d3819cbccac90b6b6c315c855d67ebf3447d557e78e1a618aa6d9', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 10058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02213eca2e6e9ee80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T13:53:56.000Z'}}, {'blockNum': '0x735b49', 'uniqueId': '0x80d4f24ef1ce328f689dfc9770b2731108283ac5e637b59750cd39fbf6f2e9fc:log:16', 'hash': '0x80d4f24ef1ce328f689dfc9770b2731108283ac5e637b59750cd39fbf6f2e9fc', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02213eca2e6e9ee80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T13:59:08.000Z'}}, {'blockNum': '0x735bd7', 'uniqueId': '0x3435b53f0710be98abff6263137798013642b8ea9aa4660d7c21a246a98580f6:log:48', 'hash': '0x3435b53f0710be98abff6263137798013642b8ea9aa4660d7c21a246a98580f6', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 10981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025347fce82b24740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T14:31:26.000Z'}}, {'blockNum': '0x735bf0', 'uniqueId': '0x69503cf66c4cefa8f159e303f6baaf087fb96cf65cdf4d011b23fc19dc470b97:log:45', 'hash': '0x69503cf66c4cefa8f159e303f6baaf087fb96cf65cdf4d011b23fc19dc470b97', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025347fce82b24740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T14:38:58.000Z'}}, {'blockNum': '0x735d66', 'uniqueId': '0xfa3d51d2a70d0f6a01a42ca974e3d06ded7ec4a0d9c189b9143c9b6e6664aa3f:log:6', 'hash': '0xfa3d51d2a70d0f6a01a42ca974e3d06ded7ec4a0d9c189b9143c9b6e6664aa3f', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:04:09.000Z'}}, {'blockNum': '0x735da6', 'uniqueId': '0x47f528bf8f507b0b6986b30dd9d5f88a0b37b2c7bceaf554da4db703a7155ca5:log:28', 'hash': '0x47f528bf8f507b0b6986b30dd9d5f88a0b37b2c7bceaf554da4db703a7155ca5', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:18:32.000Z'}}, {'blockNum': '0x735db5', 'uniqueId': '0xb453f808d59ee5a80463aa3dcb3422bf353a7c4f55bb2efe997523017415ee14:log:4', 'hash': '0xb453f808d59ee5a80463aa3dcb3422bf353a7c4f55bb2efe997523017415ee14', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x8d7d296ecac771217394e7dd22a8748f735a01f9', 'value': 675.2428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x249ae05502a4230000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:21:47.000Z'}}, {'blockNum': '0x735dda', 'uniqueId': '0x7451c64cf52ffebdbb1529e4905f86578064dd773595dceb76b9227d5eb07d16:log:7', 'hash': '0x7451c64cf52ffebdbb1529e4905f86578064dd773595dceb76b9227d5eb07d16', 'from': '0x8d7d296ecac771217394e7dd22a8748f735a01f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 675.2428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x249ae05502a4230000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:29:24.000Z'}}, {'blockNum': '0x735e24', 'uniqueId': '0xfe0da20756aa9618f7afeebe415b1a2fb0267bd69976127990ad5e0dbb5ed244:log:10', 'hash': '0xfe0da20756aa9618f7afeebe415b1a2fb0267bd69976127990ad5e0dbb5ed244', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 19137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x040d6b39abd41a640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:43:08.000Z'}}, {'blockNum': '0x735e41', 'uniqueId': '0xc0c44dddbdc973b4dd46a4b3cf9167099d2a108c025008c36a085614dd8b4578:log:7', 'hash': '0xc0c44dddbdc973b4dd46a4b3cf9167099d2a108c025008c36a085614dd8b4578', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x040d6b39abd41a640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:48:51.000Z'}}, {'blockNum': '0x735e71', 'uniqueId': '0x3969eab046b76d1dc2441505cb43e20d86f5db8ad2fa618d08dc1cf78e541a0f:log:10', 'hash': '0x3969eab046b76d1dc2441505cb43e20d86f5db8ad2fa618d08dc1cf78e541a0f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 42482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08fef42e80b7b0880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:00:58.000Z'}}, {'blockNum': '0x735e73', 'uniqueId': '0x366007b8f1ef818d69fc62623d03cc8c060024949a7860031b15dfc1033129f8:log:27', 'hash': '0x366007b8f1ef818d69fc62623d03cc8c060024949a7860031b15dfc1033129f8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 130143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b8f10f04cd58e1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:01:36.000Z'}}, {'blockNum': '0x735e73', 'uniqueId': '0x29548d82a10a77fdd313eb6a9293b711b457a2845368b74e3412d692361172d5:log:28', 'hash': '0x29548d82a10a77fdd313eb6a9293b711b457a2845368b74e3412d692361172d5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0282b70d603847400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:01:36.000Z'}}, {'blockNum': '0x735e73', 'uniqueId': '0xaae6af0285bcfc5bd0d53ecc0ace215f6bf597c7b9062757c871e8c76757e726:log:60', 'hash': '0xaae6af0285bcfc5bd0d53ecc0ace215f6bf597c7b9062757c871e8c76757e726', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 11110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025a4638f8b27dd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:01:36.000Z'}}, {'blockNum': '0x735e79', 'uniqueId': '0x4610d1199958e1a1e34564c1482bc347b11096b4e27ba3d57161cb1247cd8123:log:6', 'hash': '0x4610d1199958e1a1e34564c1482bc347b11096b4e27ba3d57161cb1247cd8123', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 22110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04ae95e370330eb80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:02:38.000Z'}}, {'blockNum': '0x735e79', 'uniqueId': '0x09bf3c5ee20d3de7dabfee4a476f066a2367c7cfb9c3fff1a7f9f72ed83f462c:log:7', 'hash': '0x09bf3c5ee20d3de7dabfee4a476f066a2367c7cfb9c3fff1a7f9f72ed83f462c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:02:38.000Z'}}, {'blockNum': '0x735e79', 'uniqueId': '0xcf30fcb72d959db474ccce26c9c845cb08328d895f40299c24dc3d509ccd90ae:log:9', 'hash': '0xcf30fcb72d959db474ccce26c9c845cb08328d895f40299c24dc3d509ccd90ae', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 902.95182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x30f2f9483f0874c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:02:38.000Z'}}, {'blockNum': '0x735e7b', 'uniqueId': '0x068579a2de2e8e29e02fbeb5727c2b28c34c381d1e42c8d9fde3d9fa6f4a643c:log:5', 'hash': '0x068579a2de2e8e29e02fbeb5727c2b28c34c381d1e42c8d9fde3d9fa6f4a643c', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 30930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x068cb7fa15d630080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:03:04.000Z'}}, {'blockNum': '0x735e82', 'uniqueId': '0x43f2bbc8aac134acd08f074274b4c2f7a8c587f340b336ac137a83c51292c86f:log:1', 'hash': '0x43f2bbc8aac134acd08f074274b4c2f7a8c587f340b336ac137a83c51292c86f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 16147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x036b54a3c587086c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:17.000Z'}}, {'blockNum': '0x735e84', 'uniqueId': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c:log:13', 'hash': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c', 'from': '0xa285552a045b81ef343ad503bc163780a3cf5583', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:23.000Z'}}, {'blockNum': '0x735e84', 'uniqueId': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c:log:14', 'hash': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:23.000Z'}}, {'blockNum': '0x735e85', 'uniqueId': '0xbac88d8ffcb40e239f6defd583d5fe3e0d945b491fc3ae004fa54db758990219:log:23', 'hash': '0xbac88d8ffcb40e239f6defd583d5fe3e0d945b491fc3ae004fa54db758990219', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 1503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x517a50a8c3c41c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:29.000Z'}}, {'blockNum': '0x735e89', 'uniqueId': '0xba6da1481cf062551f4fcea581348a1431045474e3c8a9ef2677add6b508b6ea:log:2', 'hash': '0xba6da1481cf062551f4fcea581348a1431045474e3c8a9ef2677add6b508b6ea', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 99960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x152ad7ab5538cee00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:02.000Z'}}, {'blockNum': '0x735e89', 'uniqueId': '0xd1fd6d7a014c4f9ac6ef8cdeb0d9d3a36d0fedfe3bca25f2b6fa4f60ca673cf2:log:3', 'hash': '0xd1fd6d7a014c4f9ac6ef8cdeb0d9d3a36d0fedfe3bca25f2b6fa4f60ca673cf2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 65545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0de1339a13b4e2840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:02.000Z'}}, {'blockNum': '0x735e8a', 'uniqueId': '0xaf5661a11100adbe8e70c187bb895d05214da66fe79cc0a0c4019a5560304b91:log:10', 'hash': '0xaf5661a11100adbe8e70c187bb895d05214da66fe79cc0a0c4019a5560304b91', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'value': 53816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b655f07569ca5e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:12.000Z'}}, {'blockNum': '0x735e8a', 'uniqueId': '0x421d0ae1b04b1ad93e29f05069cef646c73cb7f065c69672dddff1262eb66f1a:log:12', 'hash': '0x421d0ae1b04b1ad93e29f05069cef646c73cb7f065c69672dddff1262eb66f1a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 46560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09dc05cce28c2b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:12.000Z'}}, {'blockNum': '0x735e8a', 'uniqueId': '0x6a3b8b393d318644163ed4e54a16689f749dac46a104b140dadb68753addd556:log:13', 'hash': '0x6a3b8b393d318644163ed4e54a16689f749dac46a104b140dadb68753addd556', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 10564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x023cacf34d877a900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:12.000Z'}}, {'blockNum': '0x735e8b', 'uniqueId': '0xc8632de21d666f9507de281eafe182e115fc347447062d196252c5ddd63fae89:log:48', 'hash': '0xc8632de21d666f9507de281eafe182e115fc347447062d196252c5ddd63fae89', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b87506a3e7b0d400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:45.000Z'}}, {'blockNum': '0x735e8e', 'uniqueId': '0xd1df98811b0f81ad8aeec3c214a06a75f48341f259f6ec9409f2ab69e6353645:log:53', 'hash': '0xd1df98811b0f81ad8aeec3c214a06a75f48341f259f6ec9409f2ab69e6353645', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'value': 11429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x026b913ca29013740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:07:01.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0xc2c09b7decf1f2397253397d7f704c9b10849af0e9ba4a45a7f6293749405fad:log:11', 'hash': '0xc2c09b7decf1f2397253397d7f704c9b10849af0e9ba4a45a7f6293749405fad', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 260143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3716615a8b509b5c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x9ffc083d2e79cee8715ec061fbd7a33a4276f5a9f132762446535c38e5f22a65:log:12', 'hash': '0x9ffc083d2e79cee8715ec061fbd7a33a4276f5a9f132762446535c38e5f22a65', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0de1339a13b4e2840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x1c06676d606d8163ebf18d461f3edf36f77d71c41bdeb2e742b8a707715104b9:log:13', 'hash': '0x1c06676d606d8163ebf18d461f3edf36f77d71c41bdeb2e742b8a707715104b9', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x023cacf34d877a900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x8a1a573cae4b31848ca80be85e082e7301f28313027291b812e59a87501c52cf:log:14', 'hash': '0x8a1a573cae4b31848ca80be85e082e7301f28313027291b812e59a87501c52cf', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x152ad7ab5538cee00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0xb1943fa7966260c4ab36176a162f48a94f83f31a7ab56105825929f8f7640346:log:15', 'hash': '0xb1943fa7966260c4ab36176a162f48a94f83f31a7ab56105825929f8f7640346', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09dc05cce28c2b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x5ebdc02f8b9142a1844e6955b93b5389e25be19d9bdebc5c6c562ce3aae5ce37:log:16', 'hash': '0x5ebdc02f8b9142a1844e6955b93b5389e25be19d9bdebc5c6c562ce3aae5ce37', 'from': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b655f07569ca5e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e9a', 'uniqueId': '0x45043433648bb47f2af367d49dcc36183112e44266fc75c109a429c34fde2873:log:0', 'hash': '0x45043433648bb47f2af367d49dcc36183112e44266fc75c109a429c34fde2873', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:09.000Z'}}, {'blockNum': '0x735e9a', 'uniqueId': '0x69f1a170964aea484c86803e746fb6717f03f436e0288d7ae27902fa2a857cf5:log:7', 'hash': '0x69f1a170964aea484c86803e746fb6717f03f436e0288d7ae27902fa2a857cf5', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 902.95182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x30f2f9483f0874c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:09.000Z'}}, {'blockNum': '0x735e9b', 'uniqueId': '0xc8e90f7eb4194b75b5633b389823bf9c2d0a0d37b95c1db2cabf80d23a7e9f0b:log:1', 'hash': '0xc8e90f7eb4194b75b5633b389823bf9c2d0a0d37b95c1db2cabf80d23a7e9f0b', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x068cb7fa15d630080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:13.000Z'}}, {'blockNum': '0x735e9b', 'uniqueId': '0xc6e060ac1c59685d9fc5bf75226328da65e1b541d3902d2c3b3241e22a2af1be:log:2', 'hash': '0xc6e060ac1c59685d9fc5bf75226328da65e1b541d3902d2c3b3241e22a2af1be', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x036b54a3c587086c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:13.000Z'}}, {'blockNum': '0x735e9c', 'uniqueId': '0x17946e2adef5fae347f5a022bc013e906ef9c8c58f979c70e99d2269042d158f:log:0', 'hash': '0x17946e2adef5fae347f5a022bc013e906ef9c8c58f979c70e99d2269042d158f', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04ae95e370330eb80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:21.000Z'}}, {'blockNum': '0x735e9d', 'uniqueId': '0xaec336597069de7b15f1fa059eee6ab6e3a0906ffd8eecde42d62d3648843850:log:15', 'hash': '0xaec336597069de7b15f1fa059eee6ab6e3a0906ffd8eecde42d62d3648843850', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025a4638f8b27dd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:23.000Z'}}, {'blockNum': '0x735ea0', 'uniqueId': '0x249c18b65776a0a579c36b1e51ae64284917da063037bc4bfaa10940ba8f09e2:log:2', 'hash': '0x249c18b65776a0a579c36b1e51ae64284917da063037bc4bfaa10940ba8f09e2', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 4645.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfbd6ca3180da710000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:57.000Z'}}, {'blockNum': '0x735ea5', 'uniqueId': '0xe051fbc7910ce2fe80c76c25499dbf85230d0db365654f8336afd3a65f4be543:log:42', 'hash': '0xe051fbc7910ce2fe80c76c25499dbf85230d0db365654f8336afd3a65f4be543', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 122222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x19e1aafb401740f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:11:04.000Z'}}, {'blockNum': '0x735ea8', 'uniqueId': '0x081143ee2e4480156efd8cd2fb787821bb85efdbc97bc3dcad7266674f677f1e:log:12', 'hash': '0x081143ee2e4480156efd8cd2fb787821bb85efdbc97bc3dcad7266674f677f1e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 20771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0465ff87d28686ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:12:33.000Z'}}, {'blockNum': '0x735ea8', 'uniqueId': '0xc18476e4721e405b78c0eac7df69e87bfc91cca962f4a242edd7372470d842c4:log:13', 'hash': '0xc18476e4721e405b78c0eac7df69e87bfc91cca962f4a242edd7372470d842c4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:12:33.000Z'}}, {'blockNum': '0x735eab', 'uniqueId': '0xce2d279927f2e3c23304fff31908e625e15e841cb39f8a596612ea4243c9d628:log:0', 'hash': '0xce2d279927f2e3c23304fff31908e625e15e841cb39f8a596612ea4243c9d628', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 30026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065bb674eb6f16e80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:13:44.000Z'}}, {'blockNum': '0x735eb4', 'uniqueId': '0x4364bb3cd68815a26b1268c1137198aaf1063b35ead44f416d98d7220851bc65:log:6', 'hash': '0x4364bb3cd68815a26b1268c1137198aaf1063b35ead44f416d98d7220851bc65', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 52715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b29af9593f5bccc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:15:30.000Z'}}, {'blockNum': '0x735eb4', 'uniqueId': '0xa6e5f344984f3fc844b2146e0e4c0c06658df78e20e3d33aa94864595e2cf2e8:log:11', 'hash': '0xa6e5f344984f3fc844b2146e0e4c0c06658df78e20e3d33aa94864595e2cf2e8', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 11171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025d94c4818160ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:15:30.000Z'}}, {'blockNum': '0x735eb8', 'uniqueId': '0x1af1e8b197d503279b73de6ea399494cf5077318d89d84cc102d8f95fa0c9476:log:6', 'hash': '0x1af1e8b197d503279b73de6ea399494cf5077318d89d84cc102d8f95fa0c9476', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x027343e1fa36ecec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:16:24.000Z'}}, {'blockNum': '0x735ebd', 'uniqueId': '0x273c5d59d09f2e9a4b79e54e261322964b126e0040699204256e9a54b40d79a2:log:19', 'hash': '0x273c5d59d09f2e9a4b79e54e261322964b126e0040699204256e9a54b40d79a2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 21168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047b850327211cc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:17:10.000Z'}}, {'blockNum': '0x735ec0', 'uniqueId': '0x613a9fda29eaa8947a5756c00ec24b0e89c701a8f5a7c1771ee68a14b800bbf1:log:2', 'hash': '0x613a9fda29eaa8947a5756c00ec24b0e89c701a8f5a7c1771ee68a14b800bbf1', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 44790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x097c121dac68d2180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:04.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x342529cbe40f51588c844e9c4f939facc3e26917b23cc86ce9aa3a99a4aecea5:log:3', 'hash': '0x342529cbe40f51588c844e9c4f939facc3e26917b23cc86ce9aa3a99a4aecea5', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065bb674eb6f16e80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x1e142d58d4adadabf7a3821994ed0383d35566e7ea20f5569c6df3b3e7ddf888:log:4', 'hash': '0x1e142d58d4adadabf7a3821994ed0383d35566e7ea20f5569c6df3b3e7ddf888', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0760e5a36c936ef00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x5d7483a5efffcfad32d37fbdaa277a73658af0c0c75bd015780e21998aaefb84:log:6', 'hash': '0x5d7483a5efffcfad32d37fbdaa277a73658af0c0c75bd015780e21998aaefb84', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x517a50a8c3c41c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0xf96c413430d1874bf59ae17afc300b7b551c96ee0adae15d3e56994796074db7:log:7', 'hash': '0xf96c413430d1874bf59ae17afc300b7b551c96ee0adae15d3e56994796074db7', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1428a3c414ad6d540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0xad3898f9cada63fff8a3d43970110da4132b1a5fdfa3e31baaa44fcc5d4b0982:log:9', 'hash': '0xad3898f9cada63fff8a3d43970110da4132b1a5fdfa3e31baaa44fcc5d4b0982', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x61b47fec9f8c4ec619ecb0e18dbb216be643dd97dddadc57b2248158d3e22035:log:18', 'hash': '0x61b47fec9f8c4ec619ecb0e18dbb216be643dd97dddadc57b2248158d3e22035', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4645.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfbd6ca3180da710000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0xffecad9e0344b0db2e9dfd59886f39ac513e2e292c31ce445c12f7fa5bf04ac9:log:29', 'hash': '0xffecad9e0344b0db2e9dfd59886f39ac513e2e292c31ce445c12f7fa5bf04ac9', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 122222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x19e1aafb401740f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec5', 'uniqueId': '0x54962196fa5892ba23b06741f5cc9ca1d273a58c081317b05d8c6155d0649f29:log:8', 'hash': '0x54962196fa5892ba23b06741f5cc9ca1d273a58c081317b05d8c6155d0649f29', 'from': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04e704aa60bebc5c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:19:21.000Z'}}, {'blockNum': '0x735ec5', 'uniqueId': '0xc0bd5c1646f7648103b82724fc8f85fc96363b854ee9ec81d6ac2f9c51d81678:log:10', 'hash': '0xc0bd5c1646f7648103b82724fc8f85fc96363b854ee9ec81d6ac2f9c51d81678', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0465ff87d28686ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:19:21.000Z'}}, {'blockNum': '0x735ec5', 'uniqueId': '0x9d1d09700d33e523380d5f15cc3ed71fed65f944e6f23743417300cd7b528f16:log:11', 'hash': '0x9d1d09700d33e523380d5f15cc3ed71fed65f944e6f23743417300cd7b528f16', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025d94c4818160ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:19:21.000Z'}}, {'blockNum': '0x735ed4', 'uniqueId': '0x498728d4507320791f77aa93ec6a8e676e77091ea9021bf11d4925baed6752a6:log:11', 'hash': '0x498728d4507320791f77aa93ec6a8e676e77091ea9021bf11d4925baed6752a6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1cf0adbfa07fbf280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:23:09.000Z'}}, {'blockNum': '0x735ed4', 'uniqueId': '0xd11400463e90b2939cd0eeedacf9d8fc821d2d8026d86ba149f26dc9d258cc12:log:12', 'hash': '0xd11400463e90b2939cd0eeedacf9d8fc821d2d8026d86ba149f26dc9d258cc12', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 35679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x078e2997588e6a1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:23:09.000Z'}}, {'blockNum': '0x735ed7', 'uniqueId': '0xf166553a611568c4a111fc90346fde44fdf85e65e0d09528abce086093f22227:log:187', 'hash': '0xf166553a611568c4a111fc90346fde44fdf85e65e0d09528abce086093f22227', 'from': '0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c', 'to': '0xcdae8875cf6c8e54a107b9218faa5432e6dfb15f', 'value': 0.0037303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d40b02667d800', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:24:20.000Z'}}, {'blockNum': '0x735ed9', 'uniqueId': '0xe0e2a94178addea76fc8049eb0ad4435977084019be17753acb107a93e9a18ad:log:1', 'hash': '0xe0e2a94178addea76fc8049eb0ad4435977084019be17753acb107a93e9a18ad', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 5875.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x013e85b7c3350ab20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:24:36.000Z'}}, {'blockNum': '0x735ee1', 'uniqueId': '0x328c3825f50747ed06827127cda1afb0ac3875ecb41e0777c072dc27410c2dfe:log:11', 'hash': '0x328c3825f50747ed06827127cda1afb0ac3875ecb41e0777c072dc27410c2dfe', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x07062055d62d402c2fab73e74ea436969ed60572', 'value': 103406.4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5ac75199123f88000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:26:50.000Z'}}, {'blockNum': '0x735eec', 'uniqueId': '0x4e1600b91309956da9655097dca2be88ded569474883dc666168e30db8c16e97:log:13', 'hash': '0x4e1600b91309956da9655097dca2be88ded569474883dc666168e30db8c16e97', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1cf0adbfa07fbf280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:28:55.000Z'}}, {'blockNum': '0x735eec', 'uniqueId': '0x474a87fe9ab702c1c81f3088fe5303f1e0fd2aa362e3bd0c8bf556a4e89a0bde:log:17', 'hash': '0x474a87fe9ab702c1c81f3088fe5303f1e0fd2aa362e3bd0c8bf556a4e89a0bde', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047b850327211cc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:28:55.000Z'}}, {'blockNum': '0x735ef3', 'uniqueId': '0x8f018ed895b5664eb9b123bae89b0d3e61773e1d0c0f29792d114ca7e8676fd4:log:33', 'hash': '0x8f018ed895b5664eb9b123bae89b0d3e61773e1d0c0f29792d114ca7e8676fd4', 'from': '0x07062055d62d402c2fab73e74ea436969ed60572', 'to': '0x44b0c40da6ce8883deb28650199bc0235837445c', 'value': 406.4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1608502ef491988000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:30:33.000Z'}}, {'blockNum': '0x735efc', 'uniqueId': '0x0e0b461a04519ba4c61714c2da9d19ac2c80f576d9eaa1f7766e448de0c702ea:log:101', 'hash': '0x0e0b461a04519ba4c61714c2da9d19ac2c80f576d9eaa1f7766e448de0c702ea', 'from': '0x07062055d62d402c2fab73e74ea436969ed60572', 'to': '0x44b0c40da6ce8883deb28650199bc0235837445c', 'value': 103000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15cfa424ea9c92600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:32:52.000Z'}}, {'blockNum': '0x735f10', 'uniqueId': '0x7b67ea61c7bf324b1d5a7b2b132805b90feff20d1008c2c86591b1efbeceed44:log:7', 'hash': '0x7b67ea61c7bf324b1d5a7b2b132805b90feff20d1008c2c86591b1efbeceed44', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x097c121dac68d2180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:39:05.000Z'}}, {'blockNum': '0x735f33', 'uniqueId': '0x6e37739efd4bc76e87263bc885ce0b833a217ac754d7cf5af7b80300fa939dc5:log:4', 'hash': '0x6e37739efd4bc76e87263bc885ce0b833a217ac754d7cf5af7b80300fa939dc5', 'from': '0x44b0c40da6ce8883deb28650199bc0235837445c', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 103406.4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5ac75199123f88000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:46:09.000Z'}}, {'blockNum': '0x735f60', 'uniqueId': '0x0a48bb11f93a9ec490dfa43dbe4081fd006b7681066334efe3afb813ac69d5e8:log:0', 'hash': '0x0a48bb11f93a9ec490dfa43dbe4081fd006b7681066334efe3afb813ac69d5e8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 29996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065a161f826179300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:55:20.000Z'}}, {'blockNum': '0x735f66', 'uniqueId': '0xa5c41830fe42f97d07f9be3031ac1275d92b5b82a0b07f97cab240cea6e60b70:log:2', 'hash': '0xa5c41830fe42f97d07f9be3031ac1275d92b5b82a0b07f97cab240cea6e60b70', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 82312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x116e2478545551200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:56:39.000Z'}}, {'blockNum': '0x735f6e', 'uniqueId': '0xc4e38df3c7adc144bcffde0406be586ea53923c17c01a9eef211095af6c3f616:log:2', 'hash': '0xc4e38df3c7adc144bcffde0406be586ea53923c17c01a9eef211095af6c3f616', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 147181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f2ab2aff5a42f940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:58:36.000Z'}}, {'blockNum': '0x735f88', 'uniqueId': '0x3aa6b8f8108c22b6b6c393b132cd7105e1e97affac7ad1bd45e94a26cc6e173f:log:8', 'hash': '0x3aa6b8f8108c22b6b6c393b132cd7105e1e97affac7ad1bd45e94a26cc6e173f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1220932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01028adb3949065a900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:04:22.000Z'}}, {'blockNum': '0x735f8a', 'uniqueId': '0x7ab91302fd925dcda7a4afd4f8cd0274c86ffd7cb3304ee08574d277ece83dfb:log:1', 'hash': '0x7ab91302fd925dcda7a4afd4f8cd0274c86ffd7cb3304ee08574d277ece83dfb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 35076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076d7948ff6321900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:05:36.000Z'}}, {'blockNum': '0x735f95', 'uniqueId': '0xa0b6e0f49ff9f2096cbc5fa527fbeb987475f17fc6da5094a69fd840843ea664:log:15', 'hash': '0xa0b6e0f49ff9f2096cbc5fa527fbeb987475f17fc6da5094a69fd840843ea664', 'from': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 29996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065a161f826179300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:07:27.000Z'}}, {'blockNum': '0x735fc6', 'uniqueId': '0x0c60c97ab13028deed9882cbf7e91e69c77df7feb87c4619928ddc4094db1044:log:180', 'hash': '0x0c60c97ab13028deed9882cbf7e91e69c77df7feb87c4619928ddc4094db1044', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fb14be48890a54659c321aa499a6f89c7786854', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:19:36.000Z'}}, {'blockNum': '0x735ff4', 'uniqueId': '0xa3c6d00ac23504deb4a3372b5877e96a9330d3d8ead5d58d1beb2f3fe5f83929:log:0', 'hash': '0xa3c6d00ac23504deb4a3372b5877e96a9330d3d8ead5d58d1beb2f3fe5f83929', 'from': '0x6fb14be48890a54659c321aa499a6f89c7786854', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:29:08.000Z'}}, {'blockNum': '0x736041', 'uniqueId': '0x822d6ca9255fe5bdabef29ff33872062365297de1d254a313b04603136a1426e:log:0', 'hash': '0x822d6ca9255fe5bdabef29ff33872062365297de1d254a313b04603136a1426e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 19235.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0412c4f682e4bd720000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:43:02.000Z'}}, {'blockNum': '0x73607e', 'uniqueId': '0x60b99bcb9ffa803c5a66f86bd260546db071d1749308b04d1e10b27719651d0e:log:190', 'hash': '0x60b99bcb9ffa803c5a66f86bd260546db071d1749308b04d1e10b27719651d0e', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 31642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06b350f6397fbe280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:56:48.000Z'}}, {'blockNum': '0x73607f', 'uniqueId': '0xaf8b1db9dd3f42bcd36c4205d5dfb6a0c740ba8a693f0c294aa390da66b7c5ef:log:16', 'hash': '0xaf8b1db9dd3f42bcd36c4205d5dfb6a0c740ba8a693f0c294aa390da66b7c5ef', 'from': '0xf358caa9bca436dd08608805e5316eae391ee054', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 35041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076b939004d33ee40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:57:18.000Z'}}, {'blockNum': '0x736084', 'uniqueId': '0x3980398cd938c13965d5bbbeb8341c126b0a40db89b15b1b21db46a3376da599:log:10', 'hash': '0x3980398cd938c13965d5bbbeb8341c126b0a40db89b15b1b21db46a3376da599', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 20583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045bce81a697993c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:58:31.000Z'}}, {'blockNum': '0x736087', 'uniqueId': '0x6eca47acae7618531c74174fab5e920c072bd6bf28355ee745bc34323787a2a7:log:0', 'hash': '0x6eca47acae7618531c74174fab5e920c072bd6bf28355ee745bc34323787a2a7', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 20228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04488fe44b7679900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:59:05.000Z'}}, {'blockNum': '0x7360b9', 'uniqueId': '0xd9de904ed8e3bc33d8fba30bc2383e96389edd535bbfccd34a753cc4b5f3b532:log:66', 'hash': '0xd9de904ed8e3bc33d8fba30bc2383e96389edd535bbfccd34a753cc4b5f3b532', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04488fe44b7679900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T19:09:09.000Z'}}, {'blockNum': '0x7360e4', 'uniqueId': '0xf769ced2056687266f385b36fb5fcf9fd00a40fa21bc702bc2e44f13a728c21c:log:2', 'hash': '0xf769ced2056687266f385b36fb5fcf9fd00a40fa21bc702bc2e44f13a728c21c', 'from': '0x9d72f97d08ccf3843efa0f2b2ca4033f100cf929', 'to': '0x91ad70eb631ac0543230fcbe7ed76e3e5f51821e', 'value': 40318.199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0889a7691786cd858000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T19:17:02.000Z'}}, {'blockNum': '0x73611e', 'uniqueId': '0x562109aa91f2271663056aba000bf3fa7228567153c972ebb90d001e63a4eed7:log:12', 'hash': '0x562109aa91f2271663056aba000bf3fa7228567153c972ebb90d001e63a4eed7', 'from': '0x91ad70eb631ac0543230fcbe7ed76e3e5f51821e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40318.199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0889a7691786cd858000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T19:28:55.000Z'}}, {'blockNum': '0x736255', 'uniqueId': '0xa15aa694d7bb35270de2c8a365c70acd0539852929351f556f5df62f85d41a94:log:51', 'hash': '0xa15aa694d7bb35270de2c8a365c70acd0539852929351f556f5df62f85d41a94', 'from': '0x3ad4e5b89eccd7c610187e244c89836acffd48eb', 'to': '0x940d808ecc9472e86e794d2cddf6f6df3ea1f3f2', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T20:35:48.000Z'}}, {'blockNum': '0x73626b', 'uniqueId': '0xcc02fea7a6fb02371fb0f6acad8d300c65e46e22c415c938d4e4de98e14bc338:log:3', 'hash': '0xcc02fea7a6fb02371fb0f6acad8d300c65e46e22c415c938d4e4de98e14bc338', 'from': '0x940d808ecc9472e86e794d2cddf6f6df3ea1f3f2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T20:41:12.000Z'}}, {'blockNum': '0x73629e', 'uniqueId': '0x77e28207fe90fbd332cdccb41b5483fa9df01309dbb5daa593c2684c6946d430:log:3', 'hash': '0x77e28207fe90fbd332cdccb41b5483fa9df01309dbb5daa593c2684c6946d430', 'from': '0x37730c5685e0ba378b35c43f3a7cf0834b167926', 'to': '0xf97585f9b3ce8b82f6797b5aa8642d34dad17441', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T20:52:57.000Z'}}, {'blockNum': '0x736410', 'uniqueId': '0xf260cd4692bc03d716ab3ebdf3ab6ad56618b235763c64a06e16ef5c07cfe8a8:log:34', 'hash': '0xf260cd4692bc03d716ab3ebdf3ab6ad56618b235763c64a06e16ef5c07cfe8a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'value': 41985.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e40ca2b43a462a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:12:19.000Z'}}, {'blockNum': '0x736433', 'uniqueId': '0x9578b34fdfdabdf4158d000622e765b48aa61388d431aa4492eab7202fd26328:log:8', 'hash': '0x9578b34fdfdabdf4158d000622e765b48aa61388d431aa4492eab7202fd26328', 'from': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 41985.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e40ca2b43a462a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:21:00.000Z'}}, {'blockNum': '0x736436', 'uniqueId': '0x43c67ac1b9de4a5effa30d3d78ffc6b77ff19c82b728aebe15edb2ad3d5581f9:log:0', 'hash': '0x43c67ac1b9de4a5effa30d3d78ffc6b77ff19c82b728aebe15edb2ad3d5581f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 20560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045a8f513c738f400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:22:42.000Z'}}, {'blockNum': '0x736459', 'uniqueId': '0x2e3ba47a3cae3d8406e91cd4ca0e728c6f5cad77e4dd0f75496239eb98c0eaae:log:38', 'hash': '0x2e3ba47a3cae3d8406e91cd4ca0e728c6f5cad77e4dd0f75496239eb98c0eaae', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 20560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045a8f513c738f400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:28:59.000Z'}}, {'blockNum': '0x736601', 'uniqueId': '0xa8cbd88b506898211e4c4466f67994ec1c5e34df32efe16517e44d6235edbc26:log:1', 'hash': '0xa8cbd88b506898211e4c4466f67994ec1c5e34df32efe16517e44d6235edbc26', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 69804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ec81519a28eb7300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:01:36.000Z'}}, {'blockNum': '0x736620', 'uniqueId': '0x065c342954bfc3d75ded27f137a4929a1cd4de6646f9012924264fa4910b14d2:log:28', 'hash': '0x065c342954bfc3d75ded27f137a4929a1cd4de6646f9012924264fa4910b14d2', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 69804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ec81519a28eb7300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:07:14.000Z'}}, {'blockNum': '0x73663a', 'uniqueId': '0x4a894262e9dbe585c66699c91a5b7aeb2781eecded5e574ae724754a64d401fa:log:29', 'hash': '0x4a894262e9dbe585c66699c91a5b7aeb2781eecded5e574ae724754a64d401fa', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 21928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04a4b8218c7a0da00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:13:27.000Z'}}, {'blockNum': '0x736659', 'uniqueId': '0x0829be6eabf7725b62bedecab400814b373dc929abeef59d40e78d8a720f55c2:log:54', 'hash': '0x0829be6eabf7725b62bedecab400814b373dc929abeef59d40e78d8a720f55c2', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 21928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04a4b8218c7a0da00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:20:54.000Z'}}, {'blockNum': '0x736700', 'uniqueId': '0x6f62ce233ba399c52c1e65617718117673bc086a88a3c7217b832bdd0e1e4e98:log:12', 'hash': '0x6f62ce233ba399c52c1e65617718117673bc086a88a3c7217b832bdd0e1e4e98', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 21218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047e3ae6d637ce480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:54:38.000Z'}}, {'blockNum': '0x736735', 'uniqueId': '0x119dcd02592c6515fa4e0cdbeb574775d7537108320ea37e8c18a9cedd794132:log:25', 'hash': '0x119dcd02592c6515fa4e0cdbeb574775d7537108320ea37e8c18a9cedd794132', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 21218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047e3ae6d637ce480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:05:23.000Z'}}, {'blockNum': '0x7367e7', 'uniqueId': '0xe77e150da0d75c16d54dbe4babeba4dda5c90e2dfae1a729a103a7f67f9642b2:log:120', 'hash': '0xe77e150da0d75c16d54dbe4babeba4dda5c90e2dfae1a729a103a7f67f9642b2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 60340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cc709b760fa7e500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:43:58.000Z'}}, {'blockNum': '0x7367ee', 'uniqueId': '0x26e4fb25b01c6b183c4d498a62bb90dba09ab947bd449788fe3206504e77dc6f:log:6', 'hash': '0x26e4fb25b01c6b183c4d498a62bb90dba09ab947bd449788fe3206504e77dc6f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 39609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0863354c1a861f440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:46:35.000Z'}}, {'blockNum': '0x7367f8', 'uniqueId': '0xbf546370846bfe5985f6342af3976e69d95c50abc3ae50ececc1c09d6e990e0e:log:3', 'hash': '0xbf546370846bfe5985f6342af3976e69d95c50abc3ae50ececc1c09d6e990e0e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'value': 41986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e410cc84a35ec80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:48:41.000Z'}}, {'blockNum': '0x736819', 'uniqueId': '0xaec57a88387599edf6ea75261d8e5d442b72efc40c416824f5d0282916a8a587:log:19', 'hash': '0xaec57a88387599edf6ea75261d8e5d442b72efc40c416824f5d0282916a8a587', 'from': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 41986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e410cc84a35ec80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:57:35.000Z'}}, {'blockNum': '0x736827', 'uniqueId': '0x6d32c9226c9cf9a93ef56c08c2f869459e47e694a0244bd34001e52214b752c3:log:131', 'hash': '0x6d32c9226c9cf9a93ef56c08c2f869459e47e694a0244bd34001e52214b752c3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xc79ef9ddde225f7866b6ddf4ff524d68f19705b5', 'value': 39993.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08780ed54fc5d6410000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:01:35.000Z'}}, {'blockNum': '0x736839', 'uniqueId': '0xeaf0c17952bdd2083ca3fe8e79ef35201819001b6db7b746088433c2fb980f46:log:31', 'hash': '0xeaf0c17952bdd2083ca3fe8e79ef35201819001b6db7b746088433c2fb980f46', 'from': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 39609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0863354c1a861f440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:05:59.000Z'}}, {'blockNum': '0x736856', 'uniqueId': '0xe74d440fd0eaba46dc378b4092ee1de1b68d331f65b27a826624886103f80fee:log:0', 'hash': '0xe74d440fd0eaba46dc378b4092ee1de1b68d331f65b27a826624886103f80fee', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 32762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f008158b7c13a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:11:05.000Z'}}, {'blockNum': '0x73685a', 'uniqueId': '0x74551c90df95a955446aa49f9f37118a70e096cb837bf888a9ce389060745bd9:log:1', 'hash': '0x74551c90df95a955446aa49f9f37118a70e096cb837bf888a9ce389060745bd9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 20164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x044517b69e8ca0900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:12:01.000Z'}}, {'blockNum': '0x736891', 'uniqueId': '0xe0e0345f57152af9e8f2f3272803f829b4291a1ba234a0c53a11575dbd79da31:log:10', 'hash': '0xe0e0345f57152af9e8f2f3272803f829b4291a1ba234a0c53a11575dbd79da31', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 20164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x044517b69e8ca0900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:26:16.000Z'}}, {'blockNum': '0x7368ec', 'uniqueId': '0xc1025ff2bc48972c78d85823a225be6ec302f16b39c34d811ef9bd6d924e3630:log:105', 'hash': '0xc1025ff2bc48972c78d85823a225be6ec302f16b39c34d811ef9bd6d924e3630', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 35679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x078e2997588e6a1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:45:33.000Z'}}, {'blockNum': '0x7368ec', 'uniqueId': '0x50344425c388ddf5b68d4d51ebf1c8ccc9803d3f2f3ba947857c645f18467a2f:log:106', 'hash': '0x50344425c388ddf5b68d4d51ebf1c8ccc9803d3f2f3ba947857c645f18467a2f', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 20583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045bce81a697993c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:45:33.000Z'}}, {'blockNum': '0x7368ec', 'uniqueId': '0x70a4cfcaa641ab6759da68b9deab8937f2c0e1653942d2ef9e008654251bf55e:log:117', 'hash': '0x70a4cfcaa641ab6759da68b9deab8937f2c0e1653942d2ef9e008654251bf55e', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 5875.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x013e85b7c3350ab20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:45:33.000Z'}}, {'blockNum': '0x7368ed', 'uniqueId': '0x836d7da0c5e244d6933dab7de47828367b4a6dd461a7da1530726ad5a8921d90:log:10', 'hash': '0x836d7da0c5e244d6933dab7de47828367b4a6dd461a7da1530726ad5a8921d90', 'from': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 147181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f2ab2aff5a42f940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:46:03.000Z'}}, {'blockNum': '0x7368ee', 'uniqueId': '0xa2df06d596ea48be86a9db269b1dd8801e7db3314949fecb68f7def4842832d5:log:5', 'hash': '0xa2df06d596ea48be86a9db269b1dd8801e7db3314949fecb68f7def4842832d5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 35528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0785fa0b9496ae200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:46:12.000Z'}}, {'blockNum': '0x7368fd', 'uniqueId': '0x0f5ea9a3c85ad66f413efe8d4a62b323be94f85fbc51fdc818b8cd69c6f8ea1d:log:14', 'hash': '0x0f5ea9a3c85ad66f413efe8d4a62b323be94f85fbc51fdc818b8cd69c6f8ea1d', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x10b0d69b692a5d719d3340905f6a83b7fac290c0', 'value': 7629.5563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019d995d07ba6fa0c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:51:37.000Z'}}, {'blockNum': '0x736918', 'uniqueId': '0x8b6900308b67aff78b51345745cfeb6fea83ba424980ed5949fbc3a90ca19fda:log:21', 'hash': '0x8b6900308b67aff78b51345745cfeb6fea83ba424980ed5949fbc3a90ca19fda', 'from': '0x10b0d69b692a5d719d3340905f6a83b7fac290c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7629.5563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019d995d07ba6fa0c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:59:05.000Z'}}]}}
Number of returned transfers:  170
Answer is complete
 
symbol            ARDR
group              BPF
date        2019-04-17
hour             17:00
exchange       binance
Name: 770, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: ARDR, Contract: 
Datetime timestamps:  2019-04-17 17:00:00 2019-04-17 05:00:00 2019-04-18 05:00:00
Unix timestamps:  1555470000.0 1555556400.0
Hex Block Numbers:  0x73b453 0x73cd62
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RDN
group              BPF
date        2019-04-24
hour             17:00
exchange       binance
Name: 771, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2019-04-24 17:00:00 2019-04-24 05:00:00 2019-04-25 05:00:00
Unix timestamps:  1556074800.0 1556161200.0
Hex Block Numbers:  0x74636b 0x747c91
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7463af', 'uniqueId': '0x842408e6ffa6ba3191c529952c05ee53128e574547c23f08f678fae8c7b653f5:log:9', 'hash': '0x842408e6ffa6ba3191c529952c05ee53128e574547c23f08f678fae8c7b653f5', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 1464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f5d14d36543e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:15:03.000Z'}}, {'blockNum': '0x7463da', 'uniqueId': '0x5e17fc9b5043ec5fc63bbe1c909182a44005cafdecf4d235f2030196088af4f2:log:26', 'hash': '0x5e17fc9b5043ec5fc63bbe1c909182a44005cafdecf4d235f2030196088af4f2', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f5d14d36543e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:23:52.000Z'}}, {'blockNum': '0x7463e9', 'uniqueId': '0xc5d0cfa7a548e8d0e2f93efc0b2ffb29286253676f5101dc3ca1f20aff127a04:log:55', 'hash': '0xc5d0cfa7a548e8d0e2f93efc0b2ffb29286253676f5101dc3ca1f20aff127a04', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7b53f79e888dac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:26:57.000Z'}}, {'blockNum': '0x74640e', 'uniqueId': '0xf29cc9982de8b4ef624568382f2e8fd1eb96aafb1f6c6c7f97bb25d0d0dd2d38:log:3', 'hash': '0xf29cc9982de8b4ef624568382f2e8fd1eb96aafb1f6c6c7f97bb25d0d0dd2d38', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7b53f79e888dac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:34:02.000Z'}}, {'blockNum': '0x74647f', 'uniqueId': '0x9a17ae72f6b389e7af22b954eb3f214ee2e63905e2935e3c30ccf0d4fd0a1817:log:40', 'hash': '0x9a17ae72f6b389e7af22b954eb3f214ee2e63905e2935e3c30ccf0d4fd0a1817', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x72fac9b675db840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T03:59:28.000Z'}}, {'blockNum': '0x746491', 'uniqueId': '0x3d92d3395dfd7f53db2d905bb63171b60f8d10ffa01df46bc2e134f95c6fe9fd:log:38', 'hash': '0x3d92d3395dfd7f53db2d905bb63171b60f8d10ffa01df46bc2e134f95c6fe9fd', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x72fac9b675db840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T04:04:30.000Z'}}, {'blockNum': '0x7465d1', 'uniqueId': '0xc474c07436694d47430862de918ed0130e51339aafa06281758a3b0d90365d5a:log:1', 'hash': '0xc474c07436694d47430862de918ed0130e51339aafa06281758a3b0d90365d5a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7ccdc83813055c285b2cb84ec09e055f6c0581d1', 'value': 2038.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6e7fdf3e53ba220000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T05:12:04.000Z'}}, {'blockNum': '0x746619', 'uniqueId': '0xb10710a7010f5ec4a64e4da3a72cd1df77a543043862adc52650fcbab12710c8:log:48', 'hash': '0xb10710a7010f5ec4a64e4da3a72cd1df77a543043862adc52650fcbab12710c8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 1678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af6ed8d9331780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T05:26:03.000Z'}}, {'blockNum': '0x746667', 'uniqueId': '0x30c867d85842a32f2eb69c8b81de88294e04da659df978dd38bea32c988a3cd7:log:20', 'hash': '0x30c867d85842a32f2eb69c8b81de88294e04da659df978dd38bea32c988a3cd7', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af6ed8d9331780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T05:43:37.000Z'}}, {'blockNum': '0x746733', 'uniqueId': '0x647779904aa984d90f1cd9ae779bafb62c211cef60d3d15109e9b2d8f003890f:log:29', 'hash': '0x647779904aa984d90f1cd9ae779bafb62c211cef60d3d15109e9b2d8f003890f', 'from': '0x588b28d0cd30527fa600d18648e6ecf808ca7968', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T06:33:00.000Z'}}, {'blockNum': '0x746733', 'uniqueId': '0x647779904aa984d90f1cd9ae779bafb62c211cef60d3d15109e9b2d8f003890f:log:30', 'hash': '0x647779904aa984d90f1cd9ae779bafb62c211cef60d3d15109e9b2d8f003890f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T06:33:00.000Z'}}, {'blockNum': '0x746734', 'uniqueId': '0x41ecd1e79b0baab3c5ac321d923d55c64ed1b8fa174321ba69dd7fd7c0d64285:log:12', 'hash': '0x41ecd1e79b0baab3c5ac321d923d55c64ed1b8fa174321ba69dd7fd7c0d64285', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T06:33:23.000Z'}}, {'blockNum': '0x746762', 'uniqueId': '0x36c5e24b5d0f9e5dd849feb8df0da3029c91362f646055093a3d5073d09c244c:log:27', 'hash': '0x36c5e24b5d0f9e5dd849feb8df0da3029c91362f646055093a3d5073d09c244c', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T06:44:05.000Z'}}, {'blockNum': '0x746872', 'uniqueId': '0x8a7819db4ad441e2ec380a28fed67ba180cdeb07659d6bb5d7f635bc04adb185:log:1', 'hash': '0x8a7819db4ad441e2ec380a28fed67ba180cdeb07659d6bb5d7f635bc04adb185', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 521.2407195831541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c41ab08cf26e6a885', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T07:48:24.000Z'}}, {'blockNum': '0x74687d', 'uniqueId': '0xe3af0b41e45a5cada3db13118bb2c225b87fb66caf6b58bf2e5982b69209c38a:log:73', 'hash': '0xe3af0b41e45a5cada3db13118bb2c225b87fb66caf6b58bf2e5982b69209c38a', 'from': '0x7213640f292d9821ef4dca61e17025d3bddb3dc6', 'to': '0xea9a359abde5a78dec7076ed49c472de47ae4654', 'value': 144.302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07d297b0748a6b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T07:50:59.000Z'}}, {'blockNum': '0x746913', 'uniqueId': '0xa62e89098a7ad0729d5911b1b873eae449cdbe999c3b428053b19792ee344300:log:94', 'hash': '0xa62e89098a7ad0729d5911b1b873eae449cdbe999c3b428053b19792ee344300', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 531.3085547865625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1ccd632b95c3399830', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:25:49.000Z'}}, {'blockNum': '0x746913', 'uniqueId': '0xa62e89098a7ad0729d5911b1b873eae449cdbe999c3b428053b19792ee344300:log:96', 'hash': '0xa62e89098a7ad0729d5911b1b873eae449cdbe999c3b428053b19792ee344300', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 531.3085547865625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1ccd632b95c3399830', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:25:49.000Z'}}, {'blockNum': '0x746914', 'uniqueId': '0x84c11226d00c16bd1adeae7945f464bef8e59093414c73b05ca4ec0796539f27:log:47', 'hash': '0x84c11226d00c16bd1adeae7945f464bef8e59093414c73b05ca4ec0796539f27', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 419.0331885148608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16b740f0d23f92e0f4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:08.000Z'}}, {'blockNum': '0x746916', 'uniqueId': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99:log:13', 'hash': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 524.9260341508149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c74cfe6e201e409b5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:36.000Z'}}, {'blockNum': '0x746916', 'uniqueId': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99:log:15', 'hash': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 524.9260341508149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c74cfe6e201e409b5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:36.000Z'}}, {'blockNum': '0x746916', 'uniqueId': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99:log:19', 'hash': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 524.9260341508149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c74cfe6e201e409b5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:36.000Z'}}, {'blockNum': '0x746916', 'uniqueId': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99:log:21', 'hash': '0x6a7f9d2d096d96b93da17dbba7c8484fdfd8c52a7584c71909b6805d228a0d99', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 524.9260341508149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c74cfe6e201e409b5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:26:36.000Z'}}, {'blockNum': '0x74692b', 'uniqueId': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0:log:92', 'hash': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 239.578742624344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfcd2ad1302c272fa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:31:30.000Z'}}, {'blockNum': '0x74692b', 'uniqueId': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0:log:94', 'hash': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 239.578742624344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfcd2ad1302c272fa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:31:30.000Z'}}, {'blockNum': '0x74692b', 'uniqueId': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0:log:99', 'hash': '0x942be7de65077886a97a07dbfe1c409d20187d0d6d5dd71251aae5e9796abbc0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 239.57850304560137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfcd1d32dbce8e2a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:31:30.000Z'}}, {'blockNum': '0x74693a', 'uniqueId': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45:log:56', 'hash': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 365.1235045528536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13cb1b44e2328f1f55', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:34:56.000Z'}}, {'blockNum': '0x74693a', 'uniqueId': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45:log:58', 'hash': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 365.1235045528536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13cb1b44e2328f1f55', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:34:56.000Z'}}, {'blockNum': '0x74693a', 'uniqueId': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45:log:63', 'hash': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 365.1235045528536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13cb1b44e2328f1f55', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:34:56.000Z'}}, {'blockNum': '0x74693a', 'uniqueId': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45:log:65', 'hash': '0x15c7f9171f08102fa01aa35000bc9252e965848cfa56ec713fceb5f22267fd45', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 365.1235045528536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13cb1b44e2328f1f55', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:34:56.000Z'}}, {'blockNum': '0x746942', 'uniqueId': '0x9c9d03646e7f9651dc3864b6d9382cba5a9592af87f17403bc9695aeb5953385:log:37', 'hash': '0x9c9d03646e7f9651dc3864b6d9382cba5a9592af87f17403bc9695aeb5953385', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 3014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa363a70724c3580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:36:55.000Z'}}, {'blockNum': '0x74695d', 'uniqueId': '0x0e7e8f73812b7d66378a992512d7dabccb5a589ff84dca29d371d1e6f535be9e:log:37', 'hash': '0x0e7e8f73812b7d66378a992512d7dabccb5a589ff84dca29d371d1e6f535be9e', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa363a70724c3580000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T08:43:42.000Z'}}, {'blockNum': '0x746a54', 'uniqueId': '0x34b5133a37bae26438ccb346a45e06b22ac61b5c30e51ab97d7012898f3889c7:log:40', 'hash': '0x34b5133a37bae26438ccb346a45e06b22ac61b5c30e51ab97d7012898f3889c7', 'from': '0x0040ff6b8bfe8263bce10664165a0136f135b1f1', 'to': '0x6e6d86425ca6eb3aeb709fd133615e38048f47e0', 'value': 17.682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf563155116750000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T09:42:47.000Z'}}, {'blockNum': '0x746ae6', 'uniqueId': '0xeb027164aa2d4f56b9d24f8056fc2fc79cfb712fff8904f052601a49f49d3dce:log:1', 'hash': '0xeb027164aa2d4f56b9d24f8056fc2fc79cfb712fff8904f052601a49f49d3dce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4569cd9d62f1db5b59fd504e7e80777274299329', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:16:11.000Z'}}, {'blockNum': '0x746b48', 'uniqueId': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451:log:11', 'hash': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 404.17512884615695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15e90e824622ec3abd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:43:19.000Z'}}, {'blockNum': '0x746b48', 'uniqueId': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451:log:13', 'hash': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 404.17512884615695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15e90e824622ec3abd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:43:19.000Z'}}, {'blockNum': '0x746b48', 'uniqueId': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451:log:18', 'hash': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 404.1747246710281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15e90d12adc7f0db6f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:43:19.000Z'}}, {'blockNum': '0x746b48', 'uniqueId': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451:log:20', 'hash': '0x888a7195049759c4f22b5c55278005a295a94d34814a51629bce1875f28eb451', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 404.1747246710281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15e90d12adc7f0db6f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:43:19.000Z'}}, {'blockNum': '0x746b51', 'uniqueId': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab:log:95', 'hash': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 208.20730703942633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4974f29f6db193f4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:45:16.000Z'}}, {'blockNum': '0x746b51', 'uniqueId': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab:log:97', 'hash': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 208.20730703942633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4974f29f6db193f4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:45:16.000Z'}}, {'blockNum': '0x746b51', 'uniqueId': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab:log:103', 'hash': '0x481df457479c042f9a83c5cab27cb57cd468605d820562cc2394d1d94231baab', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 208.20730703942627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4974f29f6db10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:45:16.000Z'}}, {'blockNum': '0x746b54', 'uniqueId': '0x4bd7a8b1793b9e954707af29a3b58f8e21c1419de74d098ef8e2ab15bc0d6ebc:log:4', 'hash': '0x4bd7a8b1793b9e954707af29a3b58f8e21c1419de74d098ef8e2ab15bc0d6ebc', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x19d4a80b8e47129e16b3895e48818b82cbddae69', 'value': 17844.03500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03c753bb3ac2817f6400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T10:45:39.000Z'}}, {'blockNum': '0x746b9d', 'uniqueId': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8:log:55', 'hash': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 419.4063717015987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16bc6ec0f3d13b3f6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:02:26.000Z'}}, {'blockNum': '0x746b9d', 'uniqueId': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8:log:57', 'hash': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 419.4063717015987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16bc6ec0f3d13b3f6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:02:26.000Z'}}, {'blockNum': '0x746b9d', 'uniqueId': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8:log:62', 'hash': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 419.4063717015987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16bc6ec0f3d13b3f6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:02:26.000Z'}}, {'blockNum': '0x746b9d', 'uniqueId': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8:log:64', 'hash': '0xb54be662e6fc87077ba5b2846e267eae034e022a20c8e872011d28ab7d506ba8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 419.4063717015987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16bc6ec0f3d13b3f6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:02:26.000Z'}}, {'blockNum': '0x746ba3', 'uniqueId': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884:log:143', 'hash': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 197.0686524213974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaee07f434650b667', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:03:40.000Z'}}, {'blockNum': '0x746ba3', 'uniqueId': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884:log:145', 'hash': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 197.0686524213974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaee07f434650b667', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:03:40.000Z'}}, {'blockNum': '0x746ba3', 'uniqueId': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884:log:151', 'hash': '0xf72d06dc519c5f04e2615fa51bc183b0e4be078661801375dfcd4a31d44e5884', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 197.06865242139742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaee07f4346510000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:03:40.000Z'}}, {'blockNum': '0x746bb8', 'uniqueId': '0xea707d8b4e47a496160aa045ff7cdc905af34a90b1c43b87a4cd8fe703487729:log:0', 'hash': '0xea707d8b4e47a496160aa045ff7cdc905af34a90b1c43b87a4cd8fe703487729', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2157.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x74fae0d8f4af6e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T11:07:29.000Z'}}, {'blockNum': '0x746ca1', 'uniqueId': '0xde95176650d90e5998aa0cc13f646c175d3158bcd318207774494e21fe82df32:log:71', 'hash': '0xde95176650d90e5998aa0cc13f646c175d3158bcd318207774494e21fe82df32', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4ced9896eef9822d7f388fd017213aa356533d30', 'value': 101.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058625861c544e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:00:01.000Z'}}, {'blockNum': '0x746cb5', 'uniqueId': '0x0ded217fb2c7bda39be06a71aed879c176d08469895499d93e5eeb4460f9694f:log:105', 'hash': '0x0ded217fb2c7bda39be06a71aed879c176d08469895499d93e5eeb4460f9694f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 419.75848250255376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16c151b3dc3dbcb86b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:04:38.000Z'}}, {'blockNum': '0x746cb5', 'uniqueId': '0x0ded217fb2c7bda39be06a71aed879c176d08469895499d93e5eeb4460f9694f:log:107', 'hash': '0x0ded217fb2c7bda39be06a71aed879c176d08469895499d93e5eeb4460f9694f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x289743b373fa21c0ba8fb2fb1727d07597e7c277', 'value': 419.75848250255376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16c151b3dc3dbcb86b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:04:38.000Z'}}, {'blockNum': '0x746d91', 'uniqueId': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57:log:3', 'hash': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1451.3406410861137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ead65bf8919828351', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:57:43.000Z'}}, {'blockNum': '0x746d91', 'uniqueId': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57:log:5', 'hash': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'value': 1451.3406410861137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ead65bf8919828351', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:57:43.000Z'}}, {'blockNum': '0x746d91', 'uniqueId': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57:log:9', 'hash': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57', 'from': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 1451.3406410861137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ead65bf8919828351', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:57:43.000Z'}}, {'blockNum': '0x746d91', 'uniqueId': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57:log:17', 'hash': '0xce18ea4638d8adf3fad190b71f2159792a745463094bff3703d67e4935d2fe57', 'from': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'to': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'value': 4.661211476835391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40aff3245bbf58c8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T12:57:43.000Z'}}, {'blockNum': '0x746dba', 'uniqueId': '0xbcb212c0fb08229f1085643ef4c29880627cb29dc1de9d501d80a06f36362f71:log:77', 'hash': '0xbcb212c0fb08229f1085643ef4c29880627cb29dc1de9d501d80a06f36362f71', 'from': '0x7ccdc83813055c285b2cb84ec09e055f6c0581d1', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 2038.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6e7fdf3e53ba220000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T13:06:33.000Z'}}, {'blockNum': '0x746ef1', 'uniqueId': '0x30958dc513fbb683283fcbc9132652c31ea09e4bd3f3932569815953229fa4a5:log:82', 'hash': '0x30958dc513fbb683283fcbc9132652c31ea09e4bd3f3932569815953229fa4a5', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 534.4136584155966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cf87ab6e25294a805', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T14:22:39.000Z'}}, {'blockNum': '0x746f05', 'uniqueId': '0x66c9112880233acd8cf41fb42dfd0cdd4507fc53875f6d4ac29d93fbc564e8a1:log:13', 'hash': '0x66c9112880233acd8cf41fb42dfd0cdd4507fc53875f6d4ac29d93fbc564e8a1', 'from': '0xdd89e3ca1ba765782c271694c4044b25dc702d4d', 'to': '0x2a979e54be9fa9c7d9725a985d7dbadf9c5e7ace', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T14:26:41.000Z'}}, {'blockNum': '0x746f55', 'uniqueId': '0x4663284c16439bf746e17d4a2de2f4c749135b24293fe3253638c75fbed39b97:log:58', 'hash': '0x4663284c16439bf746e17d4a2de2f4c749135b24293fe3253638c75fbed39b97', 'from': '0x2a979e54be9fa9c7d9725a985d7dbadf9c5e7ace', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T14:43:37.000Z'}}, {'blockNum': '0x747044', 'uniqueId': '0xee3b7f33885c15ad3ff916a1d538605902c2ad218e2da74274ff1b98efe868d6:log:8', 'hash': '0xee3b7f33885c15ad3ff916a1d538605902c2ad218e2da74274ff1b98efe868d6', 'from': '0xaae630c90f1e6fcc7ff4e8f88beefd88e8ea4e26', 'to': '0x6aa437b89527f7a3f57a678e23a29cb8e0a2f643', 'value': 169.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x092f8591bdee108000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T15:31:55.000Z'}}, {'blockNum': '0x747119', 'uniqueId': '0xc43e437a79c27b02699818033eb9171933de3ddbc290bb3eede03b857294c17a:log:110', 'hash': '0xc43e437a79c27b02699818033eb9171933de3ddbc290bb3eede03b857294c17a', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 531.6442852084089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cd20bec9ff9ac6d73', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:21:22.000Z'}}, {'blockNum': '0x747119', 'uniqueId': '0xc43e437a79c27b02699818033eb9171933de3ddbc290bb3eede03b857294c17a:log:114', 'hash': '0xc43e437a79c27b02699818033eb9171933de3ddbc290bb3eede03b857294c17a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 531.6442852084089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cd20bec9ff9ac6d73', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:21:22.000Z'}}, {'blockNum': '0x7471c3', 'uniqueId': '0xf4268497cd8e786f8403f99b46c0cde272c85775b1e0e269544a749c84b22f55:log:44', 'hash': '0xf4268497cd8e786f8403f99b46c0cde272c85775b1e0e269544a749c84b22f55', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 678.7657988291566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24cbc489c7a0217977', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:59:58.000Z'}}, {'blockNum': '0x7471c3', 'uniqueId': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6:log:46', 'hash': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 509.05269253584413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b988676c8db21edfd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:59:58.000Z'}}, {'blockNum': '0x7471c3', 'uniqueId': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6:log:48', 'hash': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8e5272cec02272e232c4c8bdd1d64d3a4aa532e5', 'value': 509.05269253584413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b988676c8db21edfd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:59:58.000Z'}}, {'blockNum': '0x7471c3', 'uniqueId': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6:log:53', 'hash': '0x1ec761956b915e83f4a3ec624590c140b4ade1983c7c9d4855e73e9dc271caf6', 'from': '0x8e5272cec02272e232c4c8bdd1d64d3a4aa532e5', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 509.05269253584413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b988676c8db21edfd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T16:59:58.000Z'}}, {'blockNum': '0x7471c4', 'uniqueId': '0x1035694835644829fdf756887df393ff28dd0c8cfbadc67035f041b445b87692:log:22', 'hash': '0x1035694835644829fdf756887df393ff28dd0c8cfbadc67035f041b445b87692', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1100.7901648530294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3bac8846b29482798a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:17.000Z'}}, {'blockNum': '0x7471c4', 'uniqueId': '0x1035694835644829fdf756887df393ff28dd0c8cfbadc67035f041b445b87692:log:26', 'hash': '0x1035694835644829fdf756887df393ff28dd0c8cfbadc67035f041b445b87692', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1100.7901648530294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3bac8846b29482798a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:17.000Z'}}, {'blockNum': '0x7471c5', 'uniqueId': '0x007bf467104e6ea719b39809b84ecfe283af18da6439511e10aa40e3b81dcc52:log:23', 'hash': '0x007bf467104e6ea719b39809b84ecfe283af18da6439511e10aa40e3b81dcc52', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 520.2845808355966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c346625af22bd98ef', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:21.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2:log:21', 'hash': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 399.5366886995346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15a8af75893f95cba3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2:log:23', 'hash': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 399.5366886995346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15a8af75893f95cba3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2:log:29', 'hash': '0xc266a77ba0c190b5f121384db64f6b3dfb3940158cc42983fa058c261f16d0f2', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 399.5366886995345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15a8af75893f950000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0x14ddcf7b04b8e71eeeeb76fe4ab3ed413d84e7e50906752950f13e5950935b8a:log:51', 'hash': '0x14ddcf7b04b8e71eeeeb76fe4ab3ed413d84e7e50906752950f13e5950935b8a', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 516.9944768663436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c06bd598e49500527', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c7', 'uniqueId': '0x14ddcf7b04b8e71eeeeb76fe4ab3ed413d84e7e50906752950f13e5950935b8a:log:55', 'hash': '0x14ddcf7b04b8e71eeeeb76fe4ab3ed413d84e7e50906752950f13e5950935b8a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 516.9944768663436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c06bd598e49500527', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:36.000Z'}}, {'blockNum': '0x7471c8', 'uniqueId': '0x178ce6cff2cf20711c43ca6896ba44b76e76c2c1fbca9cfd63ab78d05aab2ff2:log:27', 'hash': '0x178ce6cff2cf20711c43ca6896ba44b76e76c2c1fbca9cfd63ab78d05aab2ff2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'value': 515.2984174287722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bef33bc7bc2eb5594', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:58.000Z'}}, {'blockNum': '0x7471c8', 'uniqueId': '0x5b1e509f8594aedddf8cf230a592d43fd908e262bfe3f803eaa171dd161da9e4:log:29', 'hash': '0x5b1e509f8594aedddf8cf230a592d43fd908e262bfe3f803eaa171dd161da9e4', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 507.687073595761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b8592cf980cee85f7', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:58.000Z'}}, {'blockNum': '0x7471c8', 'uniqueId': '0xdf680597158f90fe79c7fca7db48c10b3c1c9c482665e43ee840c50adb137f22:log:32', 'hash': '0xdf680597158f90fe79c7fca7db48c10b3c1c9c482665e43ee840c50adb137f22', 'from': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 515.2984174287722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bef33bc7bc2eb5594', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:58.000Z'}}, {'blockNum': '0x7471c8', 'uniqueId': '0x438346aedf72afa457882fb2979356c6139ae4a3f28de62b9c14ae295cd3e486:log:43', 'hash': '0x438346aedf72afa457882fb2979356c6139ae4a3f28de62b9c14ae295cd3e486', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 380.75559424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14a40b9ba1b5f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:00:58.000Z'}}, {'blockNum': '0x7471ca', 'uniqueId': '0xa7559819c9496d39a18ae6fc4ca4f57328718faa7c51c13fb3386a57f8338eb6:log:12', 'hash': '0xa7559819c9496d39a18ae6fc4ca4f57328718faa7c51c13fb3386a57f8338eb6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x713eb2e000ef040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:02.000Z'}}, {'blockNum': '0x7471cc', 'uniqueId': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb:log:114', 'hash': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 505.9325532492354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b6d3980a27714345d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:34.000Z'}}, {'blockNum': '0x7471cc', 'uniqueId': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb:log:118', 'hash': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 505.9325532492354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b6d3980a27714345d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:34.000Z'}}, {'blockNum': '0x7471cc', 'uniqueId': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb:log:119', 'hash': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 505.9564140672169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b6d8e45ec12ea8ad2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:34.000Z'}}, {'blockNum': '0x7471cc', 'uniqueId': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb:log:120', 'hash': '0x726efc0af56d09d95b1f0881a57f7e2534d7289359a5fb3930e33c3a5d479edb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 505.9564140672169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b6d8e45ec12ea8ad2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:01:34.000Z'}}, {'blockNum': '0x7471ce', 'uniqueId': '0x463e82d43bee52d3b76ead5b5da1479b4888d74e9724752a438331007bc7ec4e:log:145', 'hash': '0x463e82d43bee52d3b76ead5b5da1479b4888d74e9724752a438331007bc7ec4e', 'from': '0x5f0cc257cac8892405267bab6504b170245be3c6', 'to': '0x6bbbad0fef8180b73bd1b01a14316e4cc7c13aa1', 'value': 698.3892998495737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25dc1937fcf39c6513', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:02:03.000Z'}}, {'blockNum': '0x7471d0', 'uniqueId': '0xa96a3cbd5218d1a7a8bff312c844ff40836c1693318f9525404bd5644df84112:log:16', 'hash': '0xa96a3cbd5218d1a7a8bff312c844ff40836c1693318f9525404bd5644df84112', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 4925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010afc1ade3b4ed40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:02:31.000Z'}}, {'blockNum': '0x7471d3', 'uniqueId': '0xda4dca5adb213f0c15a3df25f28c334f908b10856d0312080efcba0fb68c222a:log:1', 'hash': '0xda4dca5adb213f0c15a3df25f28c334f908b10856d0312080efcba0fb68c222a', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 454.5154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18a3ab142c98948000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:03:14.000Z'}}, {'blockNum': '0x7471d5', 'uniqueId': '0xd6deedffa0a9c8dd653e3d3a8b318191ba9b1ff86ad639c6f061c7127ab16f8b:log:26', 'hash': '0xd6deedffa0a9c8dd653e3d3a8b318191ba9b1ff86ad639c6f061c7127ab16f8b', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 626.9496238244515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21fcac812599349ae2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:03:52.000Z'}}, {'blockNum': '0x7471d7', 'uniqueId': '0x40551912e0dc958b8637520910d6d0d4cd2bd5da7a35db97a72764a71a1aa4d7:log:72', 'hash': '0x40551912e0dc958b8637520910d6d0d4cd2bd5da7a35db97a72764a71a1aa4d7', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 999.2084155788641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x362acd67ef97170ee9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:04:25.000Z'}}, {'blockNum': '0x7471d7', 'uniqueId': '0x40551912e0dc958b8637520910d6d0d4cd2bd5da7a35db97a72764a71a1aa4d7:log:74', 'hash': '0x40551912e0dc958b8637520910d6d0d4cd2bd5da7a35db97a72764a71a1aa4d7', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 999.2084155788641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x362acd67ef97170ee9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:04:25.000Z'}}, {'blockNum': '0x7471d8', 'uniqueId': '0x7322e41aa2edff6644fd11a6f720b0fe9aa58b4455ddaf74e174cf0b1c855080:log:6', 'hash': '0x7322e41aa2edff6644fd11a6f720b0fe9aa58b4455ddaf74e174cf0b1c855080', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2576.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8bb1abe0ffa81a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:04:44.000Z'}}, {'blockNum': '0x7471e4', 'uniqueId': '0x46341435de4927c6e3b090abb51d1e6f59bc3109cddce493197985c28f11f445:log:20', 'hash': '0x46341435de4927c6e3b090abb51d1e6f59bc3109cddce493197985c28f11f445', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 1200.61782634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4115eb5fe90d546800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:06:48.000Z'}}, {'blockNum': '0x7471e7', 'uniqueId': '0x202dca938dc86405470c774eec9b144e9c797e987407275130534a202d7a8319:log:58', 'hash': '0x202dca938dc86405470c774eec9b144e9c797e987407275130534a202d7a8319', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 535.1077394328518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d021c95e4516ae212', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:07:47.000Z'}}, {'blockNum': '0x7471e7', 'uniqueId': '0x202dca938dc86405470c774eec9b144e9c797e987407275130534a202d7a8319:log:60', 'hash': '0x202dca938dc86405470c774eec9b144e9c797e987407275130534a202d7a8319', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 535.1077394328518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d021c95e4516ae212', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:07:47.000Z'}}, {'blockNum': '0x7471e9', 'uniqueId': '0x6d1466566c5dc6d8a82e62e8a74811bf0da832ae82bb5ac4a76974ebad723312:log:31', 'hash': '0x6d1466566c5dc6d8a82e62e8a74811bf0da832ae82bb5ac4a76974ebad723312', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 537.9868074233459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d2a1116f9ab03fed4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:08:38.000Z'}}, {'blockNum': '0x7471ea', 'uniqueId': '0x20848864cad04a4ecebf5e79faefb53a6b3cfd9ffcb447503aad01941a7de65f:log:0', 'hash': '0x20848864cad04a4ecebf5e79faefb53a6b3cfd9ffcb447503aad01941a7de65f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 1140.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd92b0940b32a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:08:57.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0x2a2023fe6455ba0514b6eb21bc62e405fc6cbb399428c4cb3c9a92645473a092:log:12', 'hash': '0x2a2023fe6455ba0514b6eb21bc62e405fc6cbb399428c4cb3c9a92645473a092', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x713eb2e000ef040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0x6e88c8a164f7592bf3934b5a6340b04ef10d711ae321384abc7ee32b16ed2d12:log:13', 'hash': '0x6e88c8a164f7592bf3934b5a6340b04ef10d711ae321384abc7ee32b16ed2d12', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 380.75559424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14a40b9ba1b5f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0x2755c0ffba09976c55d5ca989cabda64982ad3a83f1d53d11ba691d8eeb8818c:log:14', 'hash': '0x2755c0ffba09976c55d5ca989cabda64982ad3a83f1d53d11ba691d8eeb8818c', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010afc1ade3b4ed40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0x35d77fe2fbbfa9b6be38bdc8262fd1f13b073594baef320920caa4286f752a91:log:15', 'hash': '0x35d77fe2fbbfa9b6be38bdc8262fd1f13b073594baef320920caa4286f752a91', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 454.5154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18a3ab142c98948000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0xe9893b0779ca69f7e2ae05d37fe69cb431e1593c6444d51eb2d0f10c5f9ad480:log:16', 'hash': '0xe9893b0779ca69f7e2ae05d37fe69cb431e1593c6444d51eb2d0f10c5f9ad480', 'from': '0x268737253715badc5016befa6113ecc68370b780', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1200.61782634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4115eb5fe90d546800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747202', 'uniqueId': '0xe095b2ad198d4b68d8d74688ef286e8c85e4fea48e8f7face149cf296ea48f8c:log:21', 'hash': '0xe095b2ad198d4b68d8d74688ef286e8c85e4fea48e8f7face149cf296ea48f8c', 'from': '0x6bbbad0fef8180b73bd1b01a14316e4cc7c13aa1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 698.3892998495737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25dc1937fcf39c6513', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:14:03.000Z'}}, {'blockNum': '0x747241', 'uniqueId': '0xc2ed80da6cd4b3761f100f8f19dd5316de0a821b483ec677911dc418cf2cd656:log:43', 'hash': '0xc2ed80da6cd4b3761f100f8f19dd5316de0a821b483ec677911dc418cf2cd656', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa8efe11704720c4baa75fb199f9ee6a309d24e2b', 'value': 14230.671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0303723b852c74e18000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:30:25.000Z'}}, {'blockNum': '0x747244', 'uniqueId': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac:log:38', 'hash': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 419.59045163162125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16befcbcac6881b9d4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:31:10.000Z'}}, {'blockNum': '0x747244', 'uniqueId': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac:log:40', 'hash': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 419.59045163162125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16befcbcac6881b9d4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:31:10.000Z'}}, {'blockNum': '0x747244', 'uniqueId': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac:log:44', 'hash': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 419.59045163162125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16befcbcac6881b9d4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:31:10.000Z'}}, {'blockNum': '0x747244', 'uniqueId': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac:log:46', 'hash': '0x8f5f0c85fdb9de941bb8588b5fa587907f0a5d198e2309fe1cdd8ed7a24726ac', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 419.59045163162125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x16befcbcac6881b9d4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:31:10.000Z'}}, {'blockNum': '0x747252', 'uniqueId': '0xc011a1439e7d4c6267cb10dac78877bac7973cbb6cd8d03ac58c62dede270bdd:log:3', 'hash': '0xc011a1439e7d4c6267cb10dac78877bac7973cbb6cd8d03ac58c62dede270bdd', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 547.3926874657909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1dac997d0a14e33e12', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:19.000Z'}}, {'blockNum': '0x747252', 'uniqueId': '0xc011a1439e7d4c6267cb10dac78877bac7973cbb6cd8d03ac58c62dede270bdd:log:5', 'hash': '0xc011a1439e7d4c6267cb10dac78877bac7973cbb6cd8d03ac58c62dede270bdd', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 547.3926874657909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1dac997d0a14e33e12', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:19.000Z'}}, {'blockNum': '0x747254', 'uniqueId': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038:log:31', 'hash': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 243.90562627373433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d38dedad41d1dcd59', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:36.000Z'}}, {'blockNum': '0x747254', 'uniqueId': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038:log:33', 'hash': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 243.90562627373433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d38dedad41d1dcd59', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:36.000Z'}}, {'blockNum': '0x747254', 'uniqueId': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038:log:38', 'hash': '0xeae7f3acaaef8096bd37884f81be8af5b80344ac38fbcc12562b2651c8121038', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 243.90538236810804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d38ddfcff68e75592', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:34:36.000Z'}}, {'blockNum': '0x74725e', 'uniqueId': '0xab5aa0336970eaa54293e18d37fb48a34a98a5d18ff7e3224c098a9dd0a20bb4:log:80', 'hash': '0xab5aa0336970eaa54293e18d37fb48a34a98a5d18ff7e3224c098a9dd0a20bb4', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 553.4217155506365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e0044e623aef513f9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:36:25.000Z'}}, {'blockNum': '0x74725e', 'uniqueId': '0xab5aa0336970eaa54293e18d37fb48a34a98a5d18ff7e3224c098a9dd0a20bb4:log:82', 'hash': '0xab5aa0336970eaa54293e18d37fb48a34a98a5d18ff7e3224c098a9dd0a20bb4', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 553.4217155506365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e0044e623aef513f9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:36:25.000Z'}}, {'blockNum': '0x74726c', 'uniqueId': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc:log:44', 'hash': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 273.66507297098843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ed5dda5ed6b1e45e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:39:05.000Z'}}, {'blockNum': '0x74726c', 'uniqueId': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc:log:46', 'hash': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 273.66507297098843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ed5dda5ed6b1e45e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:39:05.000Z'}}, {'blockNum': '0x74726c', 'uniqueId': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc:log:51', 'hash': '0x369de2b1b19deefa8c8a28bed16e223d8250d162e17d04b867bb2c28bff23fdc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 273.66479930591544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ed5dcad07cda808fc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:39:05.000Z'}}, {'blockNum': '0x747285', 'uniqueId': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133:log:135', 'hash': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 308.7422766087459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10bca8e8c9f9b1b919', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:44:59.000Z'}}, {'blockNum': '0x747285', 'uniqueId': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133:log:137', 'hash': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 308.7422766087459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10bca8e8c9f9b1b919', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:44:59.000Z'}}, {'blockNum': '0x747285', 'uniqueId': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133:log:142', 'hash': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 308.7422766087459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10bca8e8c9f9b1b919', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:44:59.000Z'}}, {'blockNum': '0x747285', 'uniqueId': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133:log:144', 'hash': '0x806c695fb746fe8808e89047ec8e6d91184c14b796e911c08d37c15d49379133', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 308.7422766087459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10bca8e8c9f9b1b919', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:44:59.000Z'}}, {'blockNum': '0x7472a9', 'uniqueId': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626:log:92', 'hash': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 196.78657295655074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaaf6597be9b2ec33', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:53:18.000Z'}}, {'blockNum': '0x7472a9', 'uniqueId': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626:log:94', 'hash': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 196.78657295655074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaaf6597be9b2ec33', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:53:18.000Z'}}, {'blockNum': '0x7472a9', 'uniqueId': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626:log:100', 'hash': '0xc4cf0c30f208e63c1fecb9e5bb8d990b34765e8023d2a8e2ccb20fe8b1c64626', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 196.78657295655077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0aaaf6597be9b30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T17:53:18.000Z'}}, {'blockNum': '0x7472cb', 'uniqueId': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e:log:39', 'hash': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 416.9883879675409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x169ae0598eac0b9ba5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:28.000Z'}}, {'blockNum': '0x7472cb', 'uniqueId': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e:log:41', 'hash': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 416.9883879675409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x169ae0598eac0b9ba5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:28.000Z'}}, {'blockNum': '0x7472cb', 'uniqueId': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e:log:46', 'hash': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 416.9879709791529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x169adede4eff4e1970', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:28.000Z'}}, {'blockNum': '0x7472cb', 'uniqueId': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e:log:48', 'hash': '0x735eb32d0382f2c10efcd4880355454a405ce48b8cfe158b02db17e100804d2e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 416.9879709791529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x169adede4eff4e1970', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:28.000Z'}}, {'blockNum': '0x7472cc', 'uniqueId': '0xccf2cf31b7406961e011c604a554e8919a200c7c112e8eca9f7ecba3577d795b:log:44', 'hash': '0xccf2cf31b7406961e011c604a554e8919a200c7c112e8eca9f7ecba3577d795b', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 563.0315315315315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e85a1d2dbe915350b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:45.000Z'}}, {'blockNum': '0x7472cc', 'uniqueId': '0xccf2cf31b7406961e011c604a554e8919a200c7c112e8eca9f7ecba3577d795b:log:46', 'hash': '0xccf2cf31b7406961e011c604a554e8919a200c7c112e8eca9f7ecba3577d795b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 563.0315315315315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e85a1d2dbe915350b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:01:45.000Z'}}, {'blockNum': '0x7472d4', 'uniqueId': '0xddfa5f4d42e9ecc76319f1dc636c6931d462655e6460badf40aaef14a92ecde6:log:30', 'hash': '0xddfa5f4d42e9ecc76319f1dc636c6931d462655e6460badf40aaef14a92ecde6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3479b2d750f2200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:02:46.000Z'}}, {'blockNum': '0x7472d7', 'uniqueId': '0x925dbb5285a0332430b9e6aeeaaf8a5d0377640a4de875022c0441c012e81aa0:log:10', 'hash': '0x925dbb5285a0332430b9e6aeeaaf8a5d0377640a4de875022c0441c012e81aa0', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3479b2d750f2200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:03:42.000Z'}}, {'blockNum': '0x7472d7', 'uniqueId': '0x925dbb5285a0332430b9e6aeeaaf8a5d0377640a4de875022c0441c012e81aa0:log:12', 'hash': '0x925dbb5285a0332430b9e6aeeaaf8a5d0377640a4de875022c0441c012e81aa0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3479b2d750f2200000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:03:42.000Z'}}, {'blockNum': '0x7472e1', 'uniqueId': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5:log:108', 'hash': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 218.70462881436356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0bdb22ed28edcd26e2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:06:17.000Z'}}, {'blockNum': '0x7472e1', 'uniqueId': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5:log:110', 'hash': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 218.70462881436356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0bdb22ed28edcd26e2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:06:17.000Z'}}, {'blockNum': '0x7472e1', 'uniqueId': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5:log:116', 'hash': '0xb00b3420908d7528734a2829c59436e0aa2abcfd58aba1d0bca7b74e1b015da5', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 218.70462881436356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0bdb22ed28edcd0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:06:17.000Z'}}, {'blockNum': '0x7472e2', 'uniqueId': '0x6155f190a03ac76d4e7fca54693404672bf10ac51063f9d31c9680f01f1c7ef9:log:78', 'hash': '0x6155f190a03ac76d4e7fca54693404672bf10ac51063f9d31c9680f01f1c7ef9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2801ceb1e88e480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:06:30.000Z'}}, {'blockNum': '0x7472e7', 'uniqueId': '0xa0e9989f0a8ced1479630b32ed8814c917405b2a75a9a911ae03460991866d78:log:6', 'hash': '0xa0e9989f0a8ced1479630b32ed8814c917405b2a75a9a911ae03460991866d78', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 3479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbc98d2e377cffc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:07:39.000Z'}}, {'blockNum': '0x7472f3', 'uniqueId': '0xba26b5be5dd3491c16807d6e3f6eb3d7a2f67bf67f9b7cbd207df44699d6597c:log:17', 'hash': '0xba26b5be5dd3491c16807d6e3f6eb3d7a2f67bf67f9b7cbd207df44699d6597c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 1118.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ca7db55d050920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:10:24.000Z'}}, {'blockNum': '0x74731d', 'uniqueId': '0x8d67d87a30bb00d1af538f15c335736766d4e216b84095b0a0da9dde6b05a52e:log:11', 'hash': '0x8d67d87a30bb00d1af538f15c335736766d4e216b84095b0a0da9dde6b05a52e', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 1118.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ca7db55d050920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:21:48.000Z'}}, {'blockNum': '0x74733c', 'uniqueId': '0xad6f4e029c84336ce7be825dbb857cc4cf3e08f87a6d47c2b6556783f2436b5a:log:8', 'hash': '0xad6f4e029c84336ce7be825dbb857cc4cf3e08f87a6d47c2b6556783f2436b5a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x91471bcfe99718f13116ae9e723846136bf62e04', 'value': 333.563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12151dd5351d9f8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:29:42.000Z'}}, {'blockNum': '0x747350', 'uniqueId': '0xbd66da9e10ceb77ca5d6178f9fbde47d185b4421e9b67c392f26fd47d15b8972:log:9', 'hash': '0xbd66da9e10ceb77ca5d6178f9fbde47d185b4421e9b67c392f26fd47d15b8972', 'from': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1118.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ca7db55d050920000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T18:34:24.000Z'}}, {'blockNum': '0x7474d1', 'uniqueId': '0x5b94f1844f06768fda8065d5cf607546a5827e777cba0a3e84c492e768797009:log:18', 'hash': '0x5b94f1844f06768fda8065d5cf607546a5827e777cba0a3e84c492e768797009', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 1140.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd92b0940b32a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T19:57:10.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:86', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:90', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:92', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:93', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474ef', 'uniqueId': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae:log:94', 'hash': '0x29eee0680dfe0d4d0e433d10a85d72e3ffc718a3424eb6977208955faf226aae', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 239.6037126727183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cfd2b633372229ed5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:04:46.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:32', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 275.6534653895575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef175d64c12019920', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:36', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 275.6534653895575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef175d64c12019920', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:37', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 275.6282658625367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef11c4f75f96d6551', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:38', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 275.6282658625367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef11c4f75f96d6551', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7474fe', 'uniqueId': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465:log:39', 'hash': '0x21ded054e232885d3e295b0e887e61842e05a5b894f12410e8bab5de43944465', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 275.6282658625367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ef11c4f75f96d6551', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:07:34.000Z'}}, {'blockNum': '0x7475a0', 'uniqueId': '0xe520689569066896f558545cc933664850033a1336e0288c971823e856036869:log:7', 'hash': '0xe520689569066896f558545cc933664850033a1336e0288c971823e856036869', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4b771b02981ef44e52c7b561e9a614fa9b11def6', 'value': 105.798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05bc3e00754ac70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:41:57.000Z'}}, {'blockNum': '0x7475dc', 'uniqueId': '0xa23d3a0dfb7e103811f854dda92b2d47b61f15d016d8698c4212dae5478ac4ec:log:79', 'hash': '0xa23d3a0dfb7e103811f854dda92b2d47b61f15d016d8698c4212dae5478ac4ec', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 1548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x53ead0c65830b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-24T20:55:27.000Z'}}, {'blockNum': '0x747976', 'uniqueId': '0xd3493c714f647c56d129ec27480b7180ed44ed69193d5165b85285fbed256650:log:25', 'hash': '0xd3493c714f647c56d129ec27480b7180ed44ed69193d5165b85285fbed256650', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2801ceb1e88e480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-25T00:15:43.000Z'}}, {'blockNum': '0x747976', 'uniqueId': '0xd3493c714f647c56d129ec27480b7180ed44ed69193d5165b85285fbed256650:log:27', 'hash': '0xd3493c714f647c56d129ec27480b7180ed44ed69193d5165b85285fbed256650', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2801ceb1e88e480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-25T00:15:43.000Z'}}, {'blockNum': '0x747976', 'uniqueId': '0xe3cbcbcc70676b9638c30d38746a034573c4e9bf5d0cfc1e30daa0bbff152521:log:57', 'hash': '0xe3cbcbcc70676b9638c30d38746a034573c4e9bf5d0cfc1e30daa0bbff152521', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 560.396988633912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e61120c0d52f0b1bb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-25T00:15:43.000Z'}}, {'blockNum': '0x747976', 'uniqueId': '0xe3cbcbcc70676b9638c30d38746a034573c4e9bf5d0cfc1e30daa0bbff152521:log:61', 'hash': '0xe3cbcbcc70676b9638c30d38746a034573c4e9bf5d0cfc1e30daa0bbff152521', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 560.396988633912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e61120c0d52f0b1bb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-25T00:15:43.000Z'}}]}}
Number of returned transfers:  159
Answer is complete
 
symbol             REQ
group              BPF
date        2019-04-29
hour             15:00
exchange       binance
Name: 772, dtype: object
HERE
 Symbol: REQ, Contract: 0x8f8221afbb33998d8584a2b05749ba73c37a938a
Datetime timestamps:  2019-04-29 15:00:00 2019-04-29 03:00:00 2019-04-30 03:00:00
Unix timestamps:  1556499600.0 1556586000.0
Hex Block Numbers:  0x74def7 0x74f83a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x74df57', 'uniqueId': '0xa335f4ccfcd79beabc0eb71a0f6cca17ea0c71ce6fd2493c8bdc1563ab82a49d:log:54', 'hash': '0xa335f4ccfcd79beabc0eb71a0f6cca17ea0c71ce6fd2493c8bdc1563ab82a49d', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 11073.181939263057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02584744f1870592127e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:16:59.000Z'}}, {'blockNum': '0x74df57', 'uniqueId': '0xa335f4ccfcd79beabc0eb71a0f6cca17ea0c71ce6fd2493c8bdc1563ab82a49d:log:58', 'hash': '0xa335f4ccfcd79beabc0eb71a0f6cca17ea0c71ce6fd2493c8bdc1563ab82a49d', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x57f5429a31e7a1cf3a3ade75372846420f949847', 'value': 11073.181939263057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02584744f1870592127e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:16:59.000Z'}}, {'blockNum': '0x74df58', 'uniqueId': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f:log:21', 'hash': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 5834.602059474558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c4b5e8c0ba790bd18', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:09.000Z'}}, {'blockNum': '0x74df58', 'uniqueId': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f:log:23', 'hash': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5834.602059474558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c4b5e8c0ba7900000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:09.000Z'}}, {'blockNum': '0x74df58', 'uniqueId': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f:log:25', 'hash': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5834.602059474558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c4b5e8c0ba7900000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:09.000Z'}}, {'blockNum': '0x74df5a', 'uniqueId': '0x9a51936016a827dc7a5cb7250037b583ff78f0f2381e643964e30476db98efc1:log:25', 'hash': '0x9a51936016a827dc7a5cb7250037b583ff78f0f2381e643964e30476db98efc1', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 11012.825128171906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025501a6799fc636293f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:14.000Z'}}, {'blockNum': '0x74df5a', 'uniqueId': '0x9a51936016a827dc7a5cb7250037b583ff78f0f2381e643964e30476db98efc1:log:29', 'hash': '0x9a51936016a827dc7a5cb7250037b583ff78f0f2381e643964e30476db98efc1', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 11012.825128171906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025501a6799fc636293f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:14.000Z'}}, {'blockNum': '0x74df5c', 'uniqueId': '0xb364e5adb27148f7d7bcf1ac645d4d7098fd80a023a6c1112924fcc3a38f3e6c:log:19', 'hash': '0xb364e5adb27148f7d7bcf1ac645d4d7098fd80a023a6c1112924fcc3a38f3e6c', 'from': '0x57f5429a31e7a1cf3a3ade75372846420f949847', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 11073.181939263057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02584744f1870592127e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:16.000Z'}}, {'blockNum': '0x74df80', 'uniqueId': '0x8ba9e6585c3046d73dd4bc2c24b999cb672c58ebc318276c765c455bc688640d:log:56', 'hash': '0x8ba9e6585c3046d73dd4bc2c24b999cb672c58ebc318276c765c455bc688640d', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11073.181939263057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02584744f1870592127e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:25:57.000Z'}}, {'blockNum': '0x74df8a', 'uniqueId': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab:log:52', 'hash': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4913.735580435388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010a5fc79c51b135b694', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:28:25.000Z'}}, {'blockNum': '0x74df8a', 'uniqueId': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab:log:54', 'hash': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 4913.735580435388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010a5fc79c51b135b694', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:28:25.000Z'}}, {'blockNum': '0x74df8a', 'uniqueId': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab:log:59', 'hash': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4913.735580435388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010a5fc79c51b1300000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:28:25.000Z'}}, {'blockNum': '0x74df8a', 'uniqueId': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab:log:61', 'hash': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4913.735580435388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010a5fc79c51b1300000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:28:25.000Z'}}, {'blockNum': '0x74dfca', 'uniqueId': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651:log:125', 'hash': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3637.5581812357045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc53142b5398225bcc0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:42:49.000Z'}}, {'blockNum': '0x74dfca', 'uniqueId': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651:log:127', 'hash': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 3637.5581812357045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc53142b5398225bcc0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:42:49.000Z'}}, {'blockNum': '0x74dfca', 'uniqueId': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651:log:132', 'hash': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 3637.5581812357045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc53142b5398225bcc0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:42:49.000Z'}}, {'blockNum': '0x74dfca', 'uniqueId': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651:log:134', 'hash': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3637.5581812357045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc53142b5398225bcc0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:42:49.000Z'}}, {'blockNum': '0x74e089', 'uniqueId': '0xe3a3b032afc74efa3fb79f877e50d7cff2c7178a37a9be62a7d40937597e6db4:log:118', 'hash': '0xe3a3b032afc74efa3fb79f877e50d7cff2c7178a37a9be62a7d40937597e6db4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 36640.54482764753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07c249b4ced1a3437df6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T02:23:58.000Z'}}, {'blockNum': '0x74e089', 'uniqueId': '0xe3a3b032afc74efa3fb79f877e50d7cff2c7178a37a9be62a7d40937597e6db4:log:120', 'hash': '0xe3a3b032afc74efa3fb79f877e50d7cff2c7178a37a9be62a7d40937597e6db4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x284d96f556acd88a89647d1a76298bc27c30184f', 'value': 36640.54482764753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07c249b4ced1a3437df6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T02:23:58.000Z'}}, {'blockNum': '0x74e09f', 'uniqueId': '0x0ec698a600f20e03f966237f42fa592fc451d78d4846b4eae5ab14cfcc8b817b:log:2', 'hash': '0x0ec698a600f20e03f966237f42fa592fc451d78d4846b4eae5ab14cfcc8b817b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 23808.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x050aaab2e4a1853c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T02:29:09.000Z'}}, {'blockNum': '0x74e270', 'uniqueId': '0xd70ce0d3feeabab9b392f4555f8a4341ae29281099be03569b4646848259f2ee:log:90', 'hash': '0xd70ce0d3feeabab9b392f4555f8a4341ae29281099be03569b4646848259f2ee', 'from': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'to': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'value': 387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x14fab431960c2c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T04:12:51.000Z'}}, {'blockNum': '0x74e405', 'uniqueId': '0x76bb9e1a88db846eeaf23620acfa604f58e8bc53d4094ba360e6bdc3c11902fb:log:37', 'hash': '0x76bb9e1a88db846eeaf23620acfa604f58e8bc53d4094ba360e6bdc3c11902fb', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1326dc90fc81faf7556d688fac7f274663f51d06', 'value': 1525.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x52b6737a1233820000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T05:41:12.000Z'}}, {'blockNum': '0x74e5c7', 'uniqueId': '0x7627ba61876f053c22742ae86f74f2a75ffef062f8390611170210ee7a7b2fab:log:15', 'hash': '0x7627ba61876f053c22742ae86f74f2a75ffef062f8390611170210ee7a7b2fab', 'from': '0x16afb73797405a8fdddc72b5168523867d763bd2', 'to': '0x7583b733dac43a58b88f9c1b683ee5a706ce4717', 'value': 3570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc187b3d55450880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:21:10.000Z'}}, {'blockNum': '0x74e5e9', 'uniqueId': '0xe4c58e8f387cd34e0b0baa044af648ed311274f0098f93a29089b4baff666a8b:log:61', 'hash': '0xe4c58e8f387cd34e0b0baa044af648ed311274f0098f93a29089b4baff666a8b', 'from': '0x036bcdd39ea84c83bf8a058f27ef8361ae7dd75e', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 15811.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x035926079a8d86680000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:32:01.000Z'}}, {'blockNum': '0x74e5ed', 'uniqueId': '0xf1240858e7107310ad08b4114f473b4adc7ed23e949cc3137fe9fd6c0bec3959:log:32', 'hash': '0xf1240858e7107310ad08b4114f473b4adc7ed23e949cc3137fe9fd6c0bec3959', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 15811.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x035926079a8d86680000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:32:32.000Z'}}, {'blockNum': '0x74e641', 'uniqueId': '0x3438e02ce612dac66f6c9a3ce67d1963dbdfce8c2ff2aa1699444d4a75c832b1:log:24', 'hash': '0x3438e02ce612dac66f6c9a3ce67d1963dbdfce8c2ff2aa1699444d4a75c832b1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b609ff1e1dcc4a75f22ffde2cf37deadf4aa9e4', 'value': 5749.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0137afba915049f00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:51:47.000Z'}}, {'blockNum': '0x74e649', 'uniqueId': '0x22e2d5a5e253abb95f5ac9c6b4de753475c47a0b339d5d5b11b0079e904ceecd:log:9', 'hash': '0x22e2d5a5e253abb95f5ac9c6b4de753475c47a0b339d5d5b11b0079e904ceecd', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7498.563627398133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01967f7992069a4722e1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:53:33.000Z'}}, {'blockNum': '0x74e649', 'uniqueId': '0x22e2d5a5e253abb95f5ac9c6b4de753475c47a0b339d5d5b11b0079e904ceecd:log:11', 'hash': '0x22e2d5a5e253abb95f5ac9c6b4de753475c47a0b339d5d5b11b0079e904ceecd', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 7498.563627398133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01967f7992069a4722e1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:53:33.000Z'}}, {'blockNum': '0x74e680', 'uniqueId': '0x5575da0fddca43ac63f0e58793773d4aba977b3c8b6f9759d0fe40cb075f8cb8:log:59', 'hash': '0x5575da0fddca43ac63f0e58793773d4aba977b3c8b6f9759d0fe40cb075f8cb8', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x55a83ade961130aaff314d562c39e415fd8b9c2a', 'value': 13488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02db2f9a198364c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T08:04:03.000Z'}}, {'blockNum': '0x74e6a5', 'uniqueId': '0xe6878323ab8c6579204e5e8ec77de76f123ae2f6170172ee469678b446455946:log:39', 'hash': '0xe6878323ab8c6579204e5e8ec77de76f123ae2f6170172ee469678b446455946', 'from': '0x6b609ff1e1dcc4a75f22ffde2cf37deadf4aa9e4', 'to': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'value': 5749.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0137afba915049f00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T08:11:50.000Z'}}, {'blockNum': '0x74e748', 'uniqueId': '0xea5078d945e3098fe5588df33a8f93f343a4f37d700a61fabb805560c4b3a892:log:48', 'hash': '0xea5078d945e3098fe5588df33a8f93f343a4f37d700a61fabb805560c4b3a892', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x2f4a1d8d923c430786e48857a783130b675eb207', 'value': 179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x09b41fbf9e0aec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T08:49:35.000Z'}}, {'blockNum': '0x74e76c', 'uniqueId': '0xdd2ea56acd23be0a456a11f04de8b6322f9e1be4d6c438c961f33a3566311091:log:0', 'hash': '0xdd2ea56acd23be0a456a11f04de8b6322f9e1be4d6c438c961f33a3566311091', 'from': '0x1326dc90fc81faf7556d688fac7f274663f51d06', 'to': '0x74b76680f844535accfa25f6baa341cdb88b7e05', 'value': 1525.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x52b6737a1233820000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T08:56:59.000Z'}}, {'blockNum': '0x74e788', 'uniqueId': '0x1b782ad79f6dfef031f942d61d84a76f6d44c538afd0a7ee555a2141ca1b47cd:log:8', 'hash': '0x1b782ad79f6dfef031f942d61d84a76f6d44c538afd0a7ee555a2141ca1b47cd', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7367399b6730c0b3f70d51906cf971830c37d8d5', 'value': 119991.7304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1968c3c5ef5d986e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T09:03:20.000Z'}}, {'blockNum': '0x74e882', 'uniqueId': '0x352e4dbf98c14ac2d779add379151c0c52c2fc6f6fca274a49d49412d3b8f64f:log:37', 'hash': '0x352e4dbf98c14ac2d779add379151c0c52c2fc6f6fca274a49d49412d3b8f64f', 'from': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'to': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'value': 219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0bdf3c4bb0328c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:00:12.000Z'}}, {'blockNum': '0x74e915', 'uniqueId': '0xae16d011f0b1b488c092f374e4b0db24518d6fd4945f9f1fcdbec929c2eb701b:log:61', 'hash': '0xae16d011f0b1b488c092f374e4b0db24518d6fd4945f9f1fcdbec929c2eb701b', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 3772.983390816367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xcc88a9b3d3225c8747', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:35:46.000Z'}}, {'blockNum': '0x74e915', 'uniqueId': '0xae16d011f0b1b488c092f374e4b0db24518d6fd4945f9f1fcdbec929c2eb701b:log:63', 'hash': '0xae16d011f0b1b488c092f374e4b0db24518d6fd4945f9f1fcdbec929c2eb701b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3772.983390816367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xcc88a9b3d3225c8747', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:35:46.000Z'}}, {'blockNum': '0x74e923', 'uniqueId': '0xc80fafe549e94ae7cfa2d0cfdd348937117febd30aac90ff8b861dcdcfafae4c:log:68', 'hash': '0xc80fafe549e94ae7cfa2d0cfdd348937117febd30aac90ff8b861dcdcfafae4c', 'from': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'to': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'value': 306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x10969a62be15880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:38:38.000Z'}}, {'blockNum': '0x74e92d', 'uniqueId': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14:log:25', 'hash': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2626.10125309601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8e5c79d80293e3584c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:40:04.000Z'}}, {'blockNum': '0x74e92d', 'uniqueId': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14:log:27', 'hash': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 2626.10125309601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8e5c79d80293e3584c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:40:04.000Z'}}, {'blockNum': '0x74e92d', 'uniqueId': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14:log:31', 'hash': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2626.10125309601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8e5c79d80293e3584c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:40:04.000Z'}}, {'blockNum': '0x74e92d', 'uniqueId': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14:log:33', 'hash': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2626.10125309601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8e5c79d80293e3584c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:40:04.000Z'}}, {'blockNum': '0x74e93c', 'uniqueId': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14:log:73', 'hash': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4568.3131325143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf7a6148e0fc02e599c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:43:10.000Z'}}, {'blockNum': '0x74e93c', 'uniqueId': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14:log:75', 'hash': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 4568.3131325143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf7a6148e0fc02e599c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:43:10.000Z'}}, {'blockNum': '0x74e93c', 'uniqueId': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14:log:80', 'hash': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4568.3131325143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf7a6148e0fc02e599c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:43:10.000Z'}}, {'blockNum': '0x74e93c', 'uniqueId': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14:log:82', 'hash': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4568.3131325143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf7a6148e0fc02e599c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:43:10.000Z'}}, {'blockNum': '0x74eb11', 'uniqueId': '0x582557323cee096e0f92df5f6e919aa32bd7ad31e25c63fc8c34764b3da49974:log:5', 'hash': '0x582557323cee096e0f92df5f6e919aa32bd7ad31e25c63fc8c34764b3da49974', 'from': '0x05f238f6141c26b9e7651a97eb01af6cfe48c7a3', 'to': '0x1cfe33eb92e624970fdfccf3e75c5bcf1dc47319', 'value': 13471.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02da47d7c7fe5fba0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T12:28:56.000Z'}}, {'blockNum': '0x74eb37', 'uniqueId': '0x0a889a952d00bb9ed63a24ccc0e6f0d92ec765b142dfe24688ffdc1ee4d2ac3d:log:10', 'hash': '0x0a889a952d00bb9ed63a24ccc0e6f0d92ec765b142dfe24688ffdc1ee4d2ac3d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb50f466d3d00beb0c272156b56761ba72f7c6b21', 'value': 13086.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02c56d0ed438baf40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T12:38:36.000Z'}}, {'blockNum': '0x74eb7e', 'uniqueId': '0x582b7174929ad48b8a4b1c9f135abdb4586a6afebfb5d8eafc396a43e2f68a75:log:2', 'hash': '0x582b7174929ad48b8a4b1c9f135abdb4586a6afebfb5d8eafc396a43e2f68a75', 'from': '0xb50f466d3d00beb0c272156b56761ba72f7c6b21', 'to': '0x920b522df9aebf8334d1043b58964582e7df242c', 'value': 13086.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02c56d0ed438baf40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T12:53:38.000Z'}}, {'blockNum': '0x74ec3e', 'uniqueId': '0x4489b50df62ef7160967c2e2029f2c04c4b4659f32d08bf24e99b108648407d6:log:65', 'hash': '0x4489b50df62ef7160967c2e2029f2c04c4b4659f32d08bf24e99b108648407d6', 'from': '0x1e31d3a943ce21acb39aab9fe133f8f497068b1d', 'to': '0x687193121f3337a57f768248e9c3102b991869a8', 'value': 50044.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a98e50dcba086978000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T13:37:52.000Z'}}, {'blockNum': '0x74ec89', 'uniqueId': '0xa6ac4eb831e32415847089a0d4af97156470fc9dab4669b35dea158068ae1fae:log:58', 'hash': '0xa6ac4eb831e32415847089a0d4af97156470fc9dab4669b35dea158068ae1fae', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x42ca15786de127749d15f44dead7ffc049c14546', 'value': 0.9999999999999932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a763e556', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T13:55:30.000Z'}}, {'blockNum': '0x74ed8f', 'uniqueId': '0x59efca653d3b89f47fb1ab1dc62e1208c9018ba84cf7d7cc930d6c5aacf7a01a:log:2', 'hash': '0x59efca653d3b89f47fb1ab1dc62e1208c9018ba84cf7d7cc930d6c5aacf7a01a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x1095b99c20f15a61d35f367937b6d2bbbd6c0c5a', 'value': 33380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0711888e992e2b100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T14:55:27.000Z'}}, {'blockNum': '0x74eda9', 'uniqueId': '0x15f16aedcbb44226dce8dfb1490889500db199e75b09bc0f79534dbb4076b87c:log:74', 'hash': '0x15f16aedcbb44226dce8dfb1490889500db199e75b09bc0f79534dbb4076b87c', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:01:38.000Z'}}, {'blockNum': '0x74eda9', 'uniqueId': '0x15f16aedcbb44226dce8dfb1490889500db199e75b09bc0f79534dbb4076b87c:log:78', 'hash': '0x15f16aedcbb44226dce8dfb1490889500db199e75b09bc0f79534dbb4076b87c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:01:38.000Z'}}, {'blockNum': '0x74edae', 'uniqueId': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0:log:3', 'hash': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x00000000aca7ba47149da8a2f0ce02d140ecfa12', 'value': 15088.030690006028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0331ec7d04bf71341b00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:12.000Z'}}, {'blockNum': '0x74edae', 'uniqueId': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0:log:5', 'hash': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0', 'from': '0x00000000aca7ba47149da8a2f0ce02d140ecfa12', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 15088.030690006028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0331ec7d04bf71341b00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:12.000Z'}}, {'blockNum': '0x74edae', 'uniqueId': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0:log:6', 'hash': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 15088.030690006028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0331ec7d04bf71341b00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:12.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x51e90ec9497a44ac509fcbc2cb5c6dd0a639c47b6c4e1a58588e3c4a1621719a:log:69', 'hash': '0x51e90ec9497a44ac509fcbc2cb5c6dd0a639c47b6c4e1a58588e3c4a1621719a', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 18074.532349211473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03d3d28650a198800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x51e90ec9497a44ac509fcbc2cb5c6dd0a639c47b6c4e1a58588e3c4a1621719a:log:71', 'hash': '0x51e90ec9497a44ac509fcbc2cb5c6dd0a639c47b6c4e1a58588e3c4a1621719a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 18074.532349211473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03d3d28650a198800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293:log:88', 'hash': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293:log:90', 'hash': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293:log:91', 'hash': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edb3', 'uniqueId': '0xef85c031519a2cce45190efbab1011fb3c70c194ca17505f0e87e51b4152b737:log:101', 'hash': '0xef85c031519a2cce45190efbab1011fb3c70c194ca17505f0e87e51b4152b737', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 11257.328207390405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x026242cfe8bd91fb58ed', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:04:05.000Z'}}, {'blockNum': '0x74edb3', 'uniqueId': '0xef85c031519a2cce45190efbab1011fb3c70c194ca17505f0e87e51b4152b737:log:105', 'hash': '0xef85c031519a2cce45190efbab1011fb3c70c194ca17505f0e87e51b4152b737', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x57f5429a31e7a1cf3a3ade75372846420f949847', 'value': 11257.328207390405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x026242cfe8bd91fb58ed', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:04:05.000Z'}}, {'blockNum': '0x74edb3', 'uniqueId': '0x7a055e3a07a1a87bd4505b4d3893c8dd071a05a4897088c8bde224c556d7badc:log:115', 'hash': '0x7a055e3a07a1a87bd4505b4d3893c8dd071a05a4897088c8bde224c556d7badc', 'from': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'to': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'value': 453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x188ea34be733f40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:04:05.000Z'}}, {'blockNum': '0x74edc3', 'uniqueId': '0x39fb47f9ca417f1d4aab9739b369905ec338c5f2e45c065b152936d9d5181cb4:log:0', 'hash': '0x39fb47f9ca417f1d4aab9739b369905ec338c5f2e45c065b152936d9d5181cb4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 18077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03d3f4c52bf300540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:07:50.000Z'}}, {'blockNum': '0x74edc9', 'uniqueId': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441:log:16', 'hash': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 5033.727090769346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0110e0ff1739bf59e4f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:09:11.000Z'}}, {'blockNum': '0x74edc9', 'uniqueId': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441:log:18', 'hash': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5033.727090769346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0110e0ff1739bf600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:09:11.000Z'}}, {'blockNum': '0x74edc9', 'uniqueId': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441:log:20', 'hash': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5033.727090769346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0110e0ff1739bf600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:09:11.000Z'}}, {'blockNum': '0x74edfb', 'uniqueId': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7:log:64', 'hash': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2446.1434998356003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x849b0f78e073bdf39c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:05.000Z'}}, {'blockNum': '0x74edfb', 'uniqueId': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7:log:66', 'hash': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 2446.1434998356003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x849b0f78e073bdf39c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:05.000Z'}}, {'blockNum': '0x74edfb', 'uniqueId': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7:log:71', 'hash': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2446.1434998356003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x849b0f78e073bdf39c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:05.000Z'}}, {'blockNum': '0x74edfb', 'uniqueId': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7:log:73', 'hash': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2446.1434998356003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x849b0f78e073bdf39c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:05.000Z'}}, {'blockNum': '0x74edff', 'uniqueId': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0:log:36', 'hash': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5701.4694992806235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013513c8adea69cb69df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:35.000Z'}}, {'blockNum': '0x74edff', 'uniqueId': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0:log:38', 'hash': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 5701.4694992806235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013513c8adea69cb69df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:35.000Z'}}, {'blockNum': '0x74edff', 'uniqueId': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0:log:43', 'hash': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5701.4694992806235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013513c8adea69cb69df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:35.000Z'}}, {'blockNum': '0x74edff', 'uniqueId': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0:log:45', 'hash': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5701.4694992806235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013513c8adea69cb69df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:35.000Z'}}, {'blockNum': '0x74ee0c', 'uniqueId': '0x6550395e81ca2cfcce55a05c0b713efd6576a43cb58ff69087e8834c29a154d5:log:111', 'hash': '0x6550395e81ca2cfcce55a05c0b713efd6576a43cb58ff69087e8834c29a154d5', 'from': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'to': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'value': 453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x188ea34be733f40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:24:20.000Z'}}, {'blockNum': '0x74ee88', 'uniqueId': '0xf50858e7dd50711aafcb2616e364d6af8663c07c5f11e39949814437c94159e8:log:2', 'hash': '0xf50858e7dd50711aafcb2616e364d6af8663c07c5f11e39949814437c94159e8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6262355e73d23f4f2c71ebe29d74d56c16865245', 'value': 7376.172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018fdcf3295da69e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:52:40.000Z'}}, {'blockNum': '0x74ee88', 'uniqueId': '0xe2e93282a4351f7a30af01493cb1df720a8944e4a6e502c3fa6ad070cacb9f10:log:3', 'hash': '0xe2e93282a4351f7a30af01493cb1df720a8944e4a6e502c3fa6ad070cacb9f10', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 37847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0803b0a29a0000fc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:52:40.000Z'}}, {'blockNum': '0x74ee8a', 'uniqueId': '0xbcb482741de536b254c71edfe239d8db5a6532e03c0246d1fef2de0aecc12a77:log:14', 'hash': '0xbcb482741de536b254c71edfe239d8db5a6532e03c0246d1fef2de0aecc12a77', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x45c9c3cda14e942c34aef3b32d93ab2edb858ee2', 'value': 7959.79242699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01af804f6f8f475dcc00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:53:14.000Z'}}, {'blockNum': '0x74eeda', 'uniqueId': '0xce799c8cd5903c8020554c5a2b5d6e71e6b7510f465e564be797e31876390848:log:83', 'hash': '0xce799c8cd5903c8020554c5a2b5d6e71e6b7510f465e564be797e31876390848', 'from': '0x6262355e73d23f4f2c71ebe29d74d56c16865245', 'to': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'value': 7376.171999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018fdcf32874d1f8f000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T16:11:51.000Z'}}, {'blockNum': '0x74ef73', 'uniqueId': '0x35898ff16e60fa7fd8c5d5ce2633da82f1864f7294ed89040057cf08c0fd1f18:log:26', 'hash': '0x35898ff16e60fa7fd8c5d5ce2633da82f1864f7294ed89040057cf08c0fd1f18', 'from': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'to': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'value': 127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06e27aa3200a9c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T16:45:42.000Z'}}, {'blockNum': '0x74f044', 'uniqueId': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169:log:268', 'hash': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 6801.727893936859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0170b8efba6fcc4214a0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:31:13.000Z'}}, {'blockNum': '0x74f044', 'uniqueId': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169:log:270', 'hash': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6801.727893936859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0170b8efba6fcc4214a0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:31:13.000Z'}}, {'blockNum': '0x74f044', 'uniqueId': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169:log:275', 'hash': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 6801.721092208964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0170b8d7904d1d47f9c5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:31:13.000Z'}}, {'blockNum': '0x74f044', 'uniqueId': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169:log:277', 'hash': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 6801.721092208964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0170b8d7904d1d47f9c5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:31:13.000Z'}}, {'blockNum': '0x74f069', 'uniqueId': '0xe5055c99bf4c528d992225d1b2518cbd3398c83b1ba6f87760b853e94a9853a6:log:12', 'hash': '0xe5055c99bf4c528d992225d1b2518cbd3398c83b1ba6f87760b853e94a9853a6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 21796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x049d904357d7be100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:39:15.000Z'}}, {'blockNum': '0x74f06a', 'uniqueId': '0x7ceac27dc84bbe019641c6a2939a9e5e9248e59636e72a9dc64ba5c9311b6bc1:log:7', 'hash': '0x7ceac27dc84bbe019641c6a2939a9e5e9248e59636e72a9dc64ba5c9311b6bc1', 'from': '0x9f3192e4114302643800003e111fe632864e9050', 'to': '0x5ba54fcce700174656feba2df17b8d7e414ffd0e', 'value': 1700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x5c283d410394100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:39:23.000Z'}}, {'blockNum': '0x74f06d', 'uniqueId': '0x193991cb951e1b3b7f512729ea24a8c47b65ad35bcdaae02d88de4fc1936d595:log:17', 'hash': '0x193991cb951e1b3b7f512729ea24a8c47b65ad35bcdaae02d88de4fc1936d595', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 49955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a9410e3d3110eac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:40:09.000Z'}}, {'blockNum': '0x74f076', 'uniqueId': '0xa473ced3f603206c4f67802031c82ffcb37905b33c99b24d3247f2c45841135e:log:127', 'hash': '0xa473ced3f603206c4f67802031c82ffcb37905b33c99b24d3247f2c45841135e', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x3e79b8a7666b3b16dfcbc6f79b780b9960a6935d', 'value': 0.9999999999999942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a763e97e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:41:15.000Z'}}, {'blockNum': '0x74f0e5', 'uniqueId': '0xc1347f53857d78344a5bfd60a433055e1c2d8a3cf0a93388bbe5e9f8ca8c9749:log:10', 'hash': '0xc1347f53857d78344a5bfd60a433055e1c2d8a3cf0a93388bbe5e9f8ca8c9749', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xce706cd113a706ce1886e2856bb185b52954d0f2', 'value': 15040.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x032f58de160406b20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:07:35.000Z'}}, {'blockNum': '0x74f10f', 'uniqueId': '0xd7272e8001dde0825ecc3ec19e521fd11ad55698301aeb50804a1fb473c753c8:log:1', 'hash': '0xd7272e8001dde0825ecc3ec19e521fd11ad55698301aeb50804a1fb473c753c8', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x32d9d29cb45b4c51dedd6c50cf43a90a908ed6ed', 'value': 565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1ea0f33a806fb40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:16:04.000Z'}}, {'blockNum': '0x74f145', 'uniqueId': '0x3195a598708d64f170c4ac2e880b3dfe7865aa4b3cbee6110554ad196c27401d:log:4', 'hash': '0x3195a598708d64f170c4ac2e880b3dfe7865aa4b3cbee6110554ad196c27401d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x425f8b7d68b3643c5872293f1a450e7fc2af252a', 'value': 23563.239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x04fd5da1831bf69d8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:26:15.000Z'}}, {'blockNum': '0x74f147', 'uniqueId': '0x9eb8f74a7571d84d3432acdaf1f3f86d92c06b1029bb93ea916b3f6906cd75a9:log:7', 'hash': '0x9eb8f74a7571d84d3432acdaf1f3f86d92c06b1029bb93ea916b3f6906cd75a9', 'from': '0x3e79b8a7666b3b16dfcbc6f79b780b9960a6935d', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x016345785d8a0006', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:26:54.000Z'}}, {'blockNum': '0x74f199', 'uniqueId': '0x94c48dbbea23e523fb3496555302c44c3ad2969bbd69d8d4670762ee7192962e:log:65', 'hash': '0x94c48dbbea23e523fb3496555302c44c3ad2969bbd69d8d4670762ee7192962e', 'from': '0xbbc37901df80d9318cb3d84b18bbcec06fb2b11e', 'to': '0x740a17b4270b6f725076581218191174825f8932', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x070c1cc73b00c80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:42:16.000Z'}}, {'blockNum': '0x74f2b1', 'uniqueId': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33:log:34', 'hash': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7895.260564422015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ac00c03475644951c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:46:50.000Z'}}, {'blockNum': '0x74f2b1', 'uniqueId': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33:log:36', 'hash': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 7895.260564422015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ac00c03475644951c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:46:50.000Z'}}, {'blockNum': '0x74f2b1', 'uniqueId': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33:log:40', 'hash': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7895.260564422015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ac00c03475644951c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:46:50.000Z'}}, {'blockNum': '0x74f2b1', 'uniqueId': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33:log:42', 'hash': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 7895.260564422015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ac00c03475644951c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:46:50.000Z'}}, {'blockNum': '0x74f2cb', 'uniqueId': '0x79bfb4bf9512e414d9c9eaf9decb19d52f853d273a33c65562f4293953ef8778:log:11', 'hash': '0x79bfb4bf9512e414d9c9eaf9decb19d52f853d273a33c65562f4293953ef8778', 'from': '0x2a15619fdcbb43c56ea90d3476df8e7391c62ffa', 'to': '0xe5c2ab0a0accdeb2c4469208fe2df86e6abab583', 'value': 5109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0114f59e2f5b9eb40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:52:59.000Z'}}, {'blockNum': '0x74f37c', 'uniqueId': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e:log:2', 'hash': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 878.5282932637849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2fa0077c14be197f45', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:30:48.000Z'}}, {'blockNum': '0x74f37c', 'uniqueId': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e:log:4', 'hash': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 878.5282932637849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2fa0077c14be197f45', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:30:48.000Z'}}, {'blockNum': '0x74f37c', 'uniqueId': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e:log:10', 'hash': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'value': 878.528293263785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2fa0077c14be1c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:30:48.000Z'}}, {'blockNum': '0x74f380', 'uniqueId': '0x004843bb64b0288c268d33f450c6d8b4e4e5dce455882c11614e3b9968b8c2c2:log:56', 'hash': '0x004843bb64b0288c268d33f450c6d8b4e4e5dce455882c11614e3b9968b8c2c2', 'from': '0xcb23b7692d9415b218d17395e0a6114bdc8ee8a0', 'to': '0xbe02c078f729afd85c4ff5b98ffdcc885779b723', 'value': 187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a2325753b460c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:32:04.000Z'}}, {'blockNum': '0x74f382', 'uniqueId': '0x6698b77b47f83faa1874e1af496b3e68da03e1da8c730f3f8f6db0d6ae37723e:log:4', 'hash': '0x6698b77b47f83faa1874e1af496b3e68da03e1da8c730f3f8f6db0d6ae37723e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb2a0e8ffc16729a0ab621b2de55e1406991b407e', 'value': 18154.085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03d8228a1b090f508000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:32:41.000Z'}}, {'blockNum': '0x74f38a', 'uniqueId': '0x6f6fb9aa444e0b06474dd414dca941699a1c00094ef5cbad070b1f7813fa0a93:log:13', 'hash': '0x6f6fb9aa444e0b06474dd414dca941699a1c00094ef5cbad070b1f7813fa0a93', 'from': '0x1095b99c20f15a61d35f367937b6d2bbbd6c0c5a', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 33380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0711888e992e2b100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:35:25.000Z'}}, {'blockNum': '0x74f3c4', 'uniqueId': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343:log:33', 'hash': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 11585.024978232475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02740684b59c0630a04e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:50:56.000Z'}}, {'blockNum': '0x74f3c4', 'uniqueId': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343:log:35', 'hash': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 11585.024978232475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02740684b59c0630a04e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:50:56.000Z'}}, {'blockNum': '0x74f3c4', 'uniqueId': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343:log:40', 'hash': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 11585.013393207497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0274065b8d1733a5fbb2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:50:56.000Z'}}, {'blockNum': '0x74f3ec', 'uniqueId': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006:log:17', 'hash': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5808.5287277447405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ae18776facce94fde', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:01:14.000Z'}}, {'blockNum': '0x74f3ec', 'uniqueId': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006:log:19', 'hash': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5808.5287277447405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ae18776facce94fde', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:01:14.000Z'}}, {'blockNum': '0x74f3ec', 'uniqueId': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006:log:24', 'hash': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 5802.948521020988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a94169687966283b1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:01:14.000Z'}}, {'blockNum': '0x74f3f6', 'uniqueId': '0xc20197d15c6da6a0397891e91c9f615af33d215172cc9b26be4916c6330c3c2e:log:2', 'hash': '0xc20197d15c6da6a0397891e91c9f615af33d215172cc9b26be4916c6330c3c2e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9b2b68dc0d9fc3c2f5f9c61487842e96b7cca7aa', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:03:13.000Z'}}, {'blockNum': '0x74f43f', 'uniqueId': '0x170774fdde9003d6b9dba0a8de85698dcdc275d77b62469ba64d04d6c15329f7:log:0', 'hash': '0x170774fdde9003d6b9dba0a8de85698dcdc275d77b62469ba64d04d6c15329f7', 'from': '0x9b2b68dc0d9fc3c2f5f9c61487842e96b7cca7aa', 'to': '0x920b522df9aebf8334d1043b58964582e7df242c', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:18:39.000Z'}}, {'blockNum': '0x74f49d', 'uniqueId': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77:log:5', 'hash': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2465.5572434217515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x85a87af1cf58d1dcbd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:40:35.000Z'}}, {'blockNum': '0x74f49d', 'uniqueId': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77:log:7', 'hash': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 2465.5572434217515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x85a87af1cf58d1dcbd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:40:35.000Z'}}, {'blockNum': '0x74f49d', 'uniqueId': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77:log:12', 'hash': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2465.5572434217515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x85a87af1cf58d1dcbd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:40:35.000Z'}}, {'blockNum': '0x74f49d', 'uniqueId': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77:log:14', 'hash': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2465.5572434217515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x85a87af1cf58d1dcbd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:40:35.000Z'}}, {'blockNum': '0x74f4b6', 'uniqueId': '0x1ccb3376467cd72c381089a1f184592c7761127106aa3d6bfedcc51c167dbf1c:log:34', 'hash': '0x1ccb3376467cd72c381089a1f184592c7761127106aa3d6bfedcc51c167dbf1c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x384b38e394f467e931249960974abe7aee60979c', 'value': 1000993.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3f7f8c71c9c1d200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:46:07.000Z'}}, {'blockNum': '0x74f4e0', 'uniqueId': '0x350fef475f60e543cec2c38b7bbcc2c8951b769b2d5e509790e0c0eab233aa9e:log:3', 'hash': '0x350fef475f60e543cec2c38b7bbcc2c8951b769b2d5e509790e0c0eab233aa9e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 4583861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03caab9a4c6b8e7db40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:56:21.000Z'}}, {'blockNum': '0x74f55d', 'uniqueId': '0x89e3986b6957dcf11ec55e6460ed36ff42407f651421971e94506e3957dd8ef8:log:2', 'hash': '0x89e3986b6957dcf11ec55e6460ed36ff42407f651421971e94506e3957dd8ef8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1443e87dc9cdbc71d10dc8c9e6980e0657c2e1ae', 'value': 1383.171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4afb5a88255dd38000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T22:24:48.000Z'}}]}}
Number of returned transfers:  121
Answer is complete
 
symbol             RDN
group              BPF
date        2019-05-10
hour             16:00
exchange       binance
Name: 773, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2019-05-10 16:00:00 2019-05-10 04:00:00 2019-05-11 04:00:00
Unix timestamps:  1557453600.0 1557540000.0
Hex Block Numbers:  0x75f34e 0x760c56
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x75f35d', 'uniqueId': '0x3997678b27f1785ad1d4f9830fac76839de1a8f691a4d6c510bcec6a553e2b33:log:23', 'hash': '0x3997678b27f1785ad1d4f9830fac76839de1a8f691a4d6c510bcec6a553e2b33', 'from': '0xe14f0bc3d8faab523069bc670497c439e2777614', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 1496.299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x511d51ecc4a4378000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T02:02:45.000Z'}}, {'blockNum': '0x75f5d3', 'uniqueId': '0x828a00a29b6a9ae5afa75881ff3ea35e81905d2d2ea3b6623b53da483f1e0326:log:30', 'hash': '0x828a00a29b6a9ae5afa75881ff3ea35e81905d2d2ea3b6623b53da483f1e0326', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:30:17.000Z'}}, {'blockNum': '0x75f5de', 'uniqueId': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649:log:7', 'hash': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:55.000Z'}}, {'blockNum': '0x75f5de', 'uniqueId': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649:log:9', 'hash': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:55.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:28', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1140.5394756887104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd42a324d3fdb9bbf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:32', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1140.5394756887104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd42a324d3fdb9bbf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:33', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1140.4653437382854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd322d3af8444baed', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f65c', 'uniqueId': '0x449871ab45f562f4c0172e567d6bc5e8e9c96922fa966e70e3bd9af55eaf2668:log:125', 'hash': '0x449871ab45f562f4c0172e567d6bc5e8e9c96922fa966e70e3bd9af55eaf2668', 'from': '0xd8b8e5635d316bd3561f0a2cabd5177870268328', 'to': '0x6b09463f42e4519c20d223cf11a0f695c543b1a6', 'value': 202.107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0af4cc4db0f3df8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:02:44.000Z'}}, {'blockNum': '0x75f694', 'uniqueId': '0xfa88f220b269996ee6a1c9b8973c2480fd135a331b9a431abc60dd467545224d:log:106', 'hash': '0xfa88f220b269996ee6a1c9b8973c2480fd135a331b9a431abc60dd467545224d', 'from': '0x14781b75f698b66acebc9abc2ff89343991eded1', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 636.99105882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228806d912d20e2800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:14:55.000Z'}}, {'blockNum': '0x75f694', 'uniqueId': '0xcaecf56fd9ad7eab9b76e67ee8d8b41c9df8b0cd491a37f3dc0e1114e7d893c3:log:108', 'hash': '0xcaecf56fd9ad7eab9b76e67ee8d8b41c9df8b0cd491a37f3dc0e1114e7d893c3', 'from': '0x63675b1f88cf053a19e721221a93afb81e04f380', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 1696.8326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5bfc48637ede7d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:14:55.000Z'}}, {'blockNum': '0x75f81b', 'uniqueId': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51:log:12', 'hash': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51', 'from': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7.782018706702859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6bff48c86877f975', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:42:39.000Z'}}, {'blockNum': '0x75f81b', 'uniqueId': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51:log:13', 'hash': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 7.782018706702859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6bff48c86877f975', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:42:39.000Z'}}, {'blockNum': '0x75f823', 'uniqueId': '0xcffe553c93313cd39cd2b2f3d7ede6196d0dae561fe361750004a8fbe2168eb4:log:24', 'hash': '0xcffe553c93313cd39cd2b2f3d7ede6196d0dae561fe361750004a8fbe2168eb4', 'from': '0x2f94781daee522b2f68635e8ce7bc0578d9c56e3', 'to': '0x1d0d1e86d4ad1b87273892f77ee9cc55490d2196', 'value': 456.48922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18bf0f858f0bf70b08', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:43:45.000Z'}}, {'blockNum': '0x75f849', 'uniqueId': '0x2630a46d345d988ac2f4059a6a6482e91140c27d6327ab5ac1d7470dbbb8f46e:log:111', 'hash': '0x2630a46d345d988ac2f4059a6a6482e91140c27d6327ab5ac1d7470dbbb8f46e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:52:13.000Z'}}, {'blockNum': '0x75f852', 'uniqueId': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8:log:118', 'hash': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:54:54.000Z'}}, {'blockNum': '0x75f852', 'uniqueId': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8:log:120', 'hash': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:54:54.000Z'}}, {'blockNum': '0x75f857', 'uniqueId': '0xd6bb7c8f937b0b7631ce4f0e6a0169c39f2adc4d722a5ad9a212cd9633bd19ec:log:34', 'hash': '0xd6bb7c8f937b0b7631ce4f0e6a0169c39f2adc4d722a5ad9a212cd9633bd19ec', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:55:45.000Z'}}, {'blockNum': '0x75f85a', 'uniqueId': '0x847d1478b95c71e88516cfd42e1335b951ffef646b563a813f5e2dc0953ef62c:log:34', 'hash': '0x847d1478b95c71e88516cfd42e1335b951ffef646b563a813f5e2dc0953ef62c', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:56:07.000Z'}}, {'blockNum': '0x75f861', 'uniqueId': '0x2ab1de47ee15c0359b9712604c8beaf108adbb81ac4470a4c27a40ec8f953314:log:81', 'hash': '0x2ab1de47ee15c0359b9712604c8beaf108adbb81ac4470a4c27a40ec8f953314', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:57:55.000Z'}}, {'blockNum': '0x75f862', 'uniqueId': '0x27076fac7729100e259e4a04b3260c93b63d136ef3dcd771c22e5a84514dc834:log:72', 'hash': '0x27076fac7729100e259e4a04b3260c93b63d136ef3dcd771c22e5a84514dc834', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:58:22.000Z'}}, {'blockNum': '0x75f86a', 'uniqueId': '0x244405f669c1102f0ecee02722a8c19a7eb2048325ba38d497fd7e0d532d63ae:log:6', 'hash': '0x244405f669c1102f0ecee02722a8c19a7eb2048325ba38d497fd7e0d532d63ae', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:00:29.000Z'}}, {'blockNum': '0x75f86e', 'uniqueId': '0xbfec6f2f6759a6da2c9467f9e1d75337afa8ee4ef60355a73c3812191d652415:log:4', 'hash': '0xbfec6f2f6759a6da2c9467f9e1d75337afa8ee4ef60355a73c3812191d652415', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:00:49.000Z'}}, {'blockNum': '0x75f876', 'uniqueId': '0xc72977ab5581ec3d88b65282f94c3370cc354c569912133b1ac6549d2ef84648:log:48', 'hash': '0xc72977ab5581ec3d88b65282f94c3370cc354c569912133b1ac6549d2ef84648', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:02:38.000Z'}}, {'blockNum': '0x75f879', 'uniqueId': '0x0243a4703d0773b2f8cd9aea80ce21695f935ed313d5cbc2ec2214db23d42a83:log:13', 'hash': '0x0243a4703d0773b2f8cd9aea80ce21695f935ed313d5cbc2ec2214db23d42a83', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:03:46.000Z'}}, {'blockNum': '0x75f87e', 'uniqueId': '0xf66843ccc76433cc2dc262f49e7329f640a6c3bf10f4a44ceac530b939b3af4f:log:148', 'hash': '0xf66843ccc76433cc2dc262f49e7329f640a6c3bf10f4a44ceac530b939b3af4f', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:05:13.000Z'}}, {'blockNum': '0x75f880', 'uniqueId': '0xeccddd220241ebfaffc977efd66abefb19302d2a371884588add1efebc5a5263:log:26', 'hash': '0xeccddd220241ebfaffc977efd66abefb19302d2a371884588add1efebc5a5263', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:05:44.000Z'}}, {'blockNum': '0x75f887', 'uniqueId': '0x07bf086b95f5c3bab52bdf8f348dae747a6519239c36caf242aa5f62dbd4046c:log:12', 'hash': '0x07bf086b95f5c3bab52bdf8f348dae747a6519239c36caf242aa5f62dbd4046c', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:00.000Z'}}, {'blockNum': '0x75f888', 'uniqueId': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512:log:72', 'hash': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 656.9215158709343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x239c9e0e2a4e2b6e90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:12.000Z'}}, {'blockNum': '0x75f888', 'uniqueId': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512:log:76', 'hash': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 656.9215158709343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x239c9e0e2a4e2b6e90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:12.000Z'}}, {'blockNum': '0x75f889', 'uniqueId': '0x1cec08c1a44dafc4ba6ab99dab220974c7ceb4372ba0ba9c8a554ade57e917fb:log:157', 'hash': '0x1cec08c1a44dafc4ba6ab99dab220974c7ceb4372ba0ba9c8a554ade57e917fb', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:21.000Z'}}, {'blockNum': '0x75f904', 'uniqueId': '0x629c8e63bb14276503e39ee79b09bfcbb1d144f7ae2fa214f396cd13c25eb7c9:log:114', 'hash': '0x629c8e63bb14276503e39ee79b09bfcbb1d144f7ae2fa214f396cd13c25eb7c9', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.8025090465147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2339d2432d3310a5f8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:05.000Z'}}, {'blockNum': '0x75f909', 'uniqueId': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4:log:60', 'hash': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 649.9556140455707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233bf2335cad2136a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:56.000Z'}}, {'blockNum': '0x75f909', 'uniqueId': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4:log:64', 'hash': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.9556140455707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233bf2335cad2136a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:56.000Z'}}, {'blockNum': '0x75f946', 'uniqueId': '0xd3c4478dac3e00227e3a5335a7ae9b65a0703ae8b18113650062f358a99ec40e:log:12', 'hash': '0xd3c4478dac3e00227e3a5335a7ae9b65a0703ae8b18113650062f358a99ec40e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 659.1884793631777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23bc13ed73581f4328', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:45:57.000Z'}}, {'blockNum': '0x75f95b', 'uniqueId': '0x0bbfe19883d7bde00d216a805b626ceb697056d1f91febf200f56a5c988cb58a:log:102', 'hash': '0x0bbfe19883d7bde00d216a805b626ceb697056d1f91febf200f56a5c988cb58a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 665.744341623271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24170f0771115fba87', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:50:22.000Z'}}, {'blockNum': '0x75fa6f', 'uniqueId': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c:log:27', 'hash': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 631.7468179765709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x223f3f8fcfc4de4d7b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T08:50:33.000Z'}}, {'blockNum': '0x75fa6f', 'uniqueId': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c:log:29', 'hash': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 631.7468179765709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x223f3f8fcfc4de4d7b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T08:50:33.000Z'}}, {'blockNum': '0x75fce7', 'uniqueId': '0x998592a478f223fa00bec267ffe32421341d7cab83d18e587a414195f7c93b33:log:106', 'hash': '0x998592a478f223fa00bec267ffe32421341d7cab83d18e587a414195f7c93b33', 'from': '0x773c249cc8dd02fce180ff066823312e448c6413', 'to': '0xcbc29eb2983568683e552e156316bfe67866fce1', 'value': 7162.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018443a16ffc2e7d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T11:07:57.000Z'}}, {'blockNum': '0x75fe58', 'uniqueId': '0xb72a25005a42f97697f9229435b55a9dcf94305ce260406bd341ae7265203700:log:0', 'hash': '0xb72a25005a42f97697f9229435b55a9dcf94305ce260406bd341ae7265203700', 'from': '0x20f72138a6cd58bf40aa3dce316e8b11586cffcb', 'to': '0x82683ef5441294a6e040eb9b0cc6ff68a54a6e64', 'value': 185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a076407d3f7440000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T12:32:16.000Z'}}, {'blockNum': '0x75fee2', 'uniqueId': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1:log:149', 'hash': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 102.18798436396273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058a24a65d272b8789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:07:22.000Z'}}, {'blockNum': '0x75fee2', 'uniqueId': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1:log:153', 'hash': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x3ed4587c28403d6a1b829167a1e7bd8f04cff701', 'value': 102.18798436396273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058a24a65d272b8789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:07:22.000Z'}}, {'blockNum': '0x75ffa2', 'uniqueId': '0x79347509dd8353817c0f036c745e8b35b725cc8cdf78d68ed3b02a6b5912e5cc:log:44', 'hash': '0x79347509dd8353817c0f036c745e8b35b725cc8cdf78d68ed3b02a6b5912e5cc', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 655.2045613420711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2384ca351e39c88d8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:55:56.000Z'}}, {'blockNum': '0x75ffb9', 'uniqueId': '0xc7e2690acfcbc882269c62ac25d5389a1434b3a581a79a40d7aeb0a0fc91d428:log:56', 'hash': '0xc7e2690acfcbc882269c62ac25d5389a1434b3a581a79a40d7aeb0a0fc91d428', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.9307652234905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233b99eb7d6ff5750f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:03:05.000Z'}}, {'blockNum': '0x75ffc4', 'uniqueId': '0xf710dd454c62eebfd31266e1a8927009e3d12daaa48cc04ea48c4386df3f7e0d:log:51', 'hash': '0xf710dd454c62eebfd31266e1a8927009e3d12daaa48cc04ea48c4386df3f7e0d', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 644.720419085663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22f34b0d4881eae623', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:01.000Z'}}, {'blockNum': '0x75ffc5', 'uniqueId': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f:log:61', 'hash': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 711.9597650168635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26986d322888ba0510', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:26.000Z'}}, {'blockNum': '0x75ffc5', 'uniqueId': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f:log:65', 'hash': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 711.9597650168635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26986d322888ba0510', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:26.000Z'}}, {'blockNum': '0x75ffc8', 'uniqueId': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab:log:81', 'hash': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:15.000Z'}}, {'blockNum': '0x75ffc8', 'uniqueId': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab:log:85', 'hash': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x0bea818348a0082457cb9e6dc7611c60ddae12af', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:15.000Z'}}, {'blockNum': '0x75ffc9', 'uniqueId': '0x25ae1b6a1f3d4aa26f45df96c24531278c952e295732e59e9f3049f84828e2fe:log:61', 'hash': '0x25ae1b6a1f3d4aa26f45df96c24531278c952e295732e59e9f3049f84828e2fe', 'from': '0x0bea818348a0082457cb9e6dc7611c60ddae12af', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:26.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:95', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:97', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:98', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:20', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 632.5254245559515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0dba5ecca20166', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:23', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 632.5253995189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0da3996d940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:24', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 632.5253995189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0da3996d940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:73', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:76', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:77', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:78', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:38', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:42', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:44', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:45', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:46', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760140', 'uniqueId': '0xa46e1f52002ec94d4450707b0c15cc282a4eb158f2fe1f5ca044346b5746a2f7:log:67', 'hash': '0xa46e1f52002ec94d4450707b0c15cc282a4eb158f2fe1f5ca044346b5746a2f7', 'from': '0x5325832cdf994b19407dadc9cb1a6d6e22ee0a23', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 100.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05723eeeb554650000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:27:30.000Z'}}, {'blockNum': '0x760160', 'uniqueId': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb:log:48', 'hash': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 355.47301465683995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13452dd774222b98c2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:35:19.000Z'}}, {'blockNum': '0x760160', 'uniqueId': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb:log:50', 'hash': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb09cd60ad551ce7ff6bc97458b483a8d50489ee7', 'value': 355.47301465683995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13452dd774222b98c2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:35:19.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:123', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:125', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:126', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x76017d', 'uniqueId': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48:log:53', 'hash': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 349.7105341760806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f53565fcc163b142', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:41:51.000Z'}}, {'blockNum': '0x76017d', 'uniqueId': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48:log:55', 'hash': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb09cd60ad551ce7ff6bc97458b483a8d50489ee7', 'value': 349.7105341760806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f53565fcc163b142', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:41:51.000Z'}}, {'blockNum': '0x760186', 'uniqueId': '0x85c3374e441bde6bc97d949a357dfc1cf0bdc66b9022e4c6144e42d51928e54f:log:65', 'hash': '0x85c3374e441bde6bc97d949a357dfc1cf0bdc66b9022e4c6144e42d51928e54f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 634.5002393268401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x226575adf100a30737', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:45:23.000Z'}}, {'blockNum': '0x760190', 'uniqueId': '0xe705b6946cb0936140c8a001ea869052475e19984e735c7ccb813fe85c7930e1:log:102', 'hash': '0xe705b6946cb0936140c8a001ea869052475e19984e735c7ccb813fe85c7930e1', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 3914.316011085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd4320c0925916ac200', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:46:51.000Z'}}, {'blockNum': '0x7601b1', 'uniqueId': '0xb14457bd50e15b514adda22fda31d84288a41c6521b60ee5bdcb29d120c14f8f:log:20', 'hash': '0xb14457bd50e15b514adda22fda31d84288a41c6521b60ee5bdcb29d120c14f8f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 705.1581025641026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x263a08d631bdcd6906', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:54:23.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xc93af9c808029e2cb8776c3a25aaa408a988cbbcff5225ad962215e9ff9b9229:log:38', 'hash': '0xc93af9c808029e2cb8776c3a25aaa408a988cbbcff5225ad962215e9ff9b9229', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'value': 356.62060493156787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13551ae6ba730553ea', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0x2d6014c820addd90162cee970c8470c59f31ac96a50c6c27d2f1c7085fe9fcaa:log:40', 'hash': '0x2d6014c820addd90162cee970c8470c59f31ac96a50c6c27d2f1c7085fe9fcaa', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 2972.7839158513184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa127aa14fb88916a72', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:42', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:44', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:50', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0x2064a23a6372c79625ea3321f14b7767f45a011a36281e4e780a53429245d441:log:53', 'hash': '0x2064a23a6372c79625ea3321f14b7767f45a011a36281e4e780a53429245d441', 'from': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 356.62060493156787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13551ae6ba730553ea', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601ca', 'uniqueId': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05:log:109', 'hash': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1477.6197060378133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x501a17bde06cfa21d2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:31.000Z'}}, {'blockNum': '0x7601ca', 'uniqueId': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05:log:113', 'hash': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1477.6197060378133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x501a17bde06cfa21d2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:31.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:0', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x000000001e29fcd9b1469a7954dc65ff254fffc0', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:2', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x000000001e29fcd9b1469a7954dc65ff254fffc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:3', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x42d34d6284337bf7b16863a5574aeaa39c7ba5059ea4f1b2f84b504aef3a199c:log:35', 'hash': '0x42d34d6284337bf7b16863a5574aeaa39c7ba5059ea4f1b2f84b504aef3a199c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1727.073971563981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5d9ff752b5162df3de', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:37', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:39', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:40', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0xc81e8fa2a188264dd0886346a0164f747c45afb04b40340635d0636a8d4afdc0:log:27', 'hash': '0xc81e8fa2a188264dd0886346a0164f747c45afb04b40340635d0636a8d4afdc0', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 616.8121327014218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x216ffce6ae63598df3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332:log:75', 'hash': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 816.7670975483106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c46eba3cd79e0746c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332:log:77', 'hash': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 816.7670975483106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c46eba3cd79e0746c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601cf', 'uniqueId': '0xa79190b5c260bbc683826b83fa1bca9ee88f35791b8e40888aa8dce66d84e002:log:70', 'hash': '0xa79190b5c260bbc683826b83fa1bca9ee88f35791b8e40888aa8dce66d84e002', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1193.7365271859924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b66c16c9d983204f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:02:02.000Z'}}, {'blockNum': '0x7601d5', 'uniqueId': '0x260a015f3b72763513f548afaa602ebb16f9c621a1c8c31047b06e9a660a65c2:log:32', 'hash': '0x260a015f3b72763513f548afaa602ebb16f9c621a1c8c31047b06e9a660a65c2', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 636.1201201537541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x227bf0a6f89350671c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:03:58.000Z'}}, {'blockNum': '0x7601f1', 'uniqueId': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350:log:12', 'hash': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 641.4434092366902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22c5d0c6301c6faf20', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:47.000Z'}}, {'blockNum': '0x7601f1', 'uniqueId': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350:log:14', 'hash': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 641.4434092366902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22c5d0c6301c6faf20', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:47.000Z'}}, {'blockNum': '0x7601f3', 'uniqueId': '0x7033dba509cd768e0961f4eff8a7e88bec1626fc00a5c423f9baf356115dd671:log:86', 'hash': '0x7033dba509cd768e0961f4eff8a7e88bec1626fc00a5c423f9baf356115dd671', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 140.60753227612702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x079f524da26ed2dd0e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:59.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:94', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:96', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:101', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:128', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:130', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:136', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:138', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:14', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:16', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:21', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:89', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:91', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:96', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:98', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760209', 'uniqueId': '0x9e68b31905228aa80a396104ef9defe0b64eb4fefd87cd919333a5e00d245b84:log:36', 'hash': '0x9e68b31905228aa80a396104ef9defe0b64eb4fefd87cd919333a5e00d245b84', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:16:45.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:42', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:44', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:50', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x76021f', 'uniqueId': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc:log:78', 'hash': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:20:28.000Z'}}, {'blockNum': '0x76021f', 'uniqueId': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc:log:80', 'hash': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:20:28.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:16', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:18', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:24', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760298', 'uniqueId': '0xf889109533c0e4aed7f686e8bbf566c0de2208ab0b76652dfcb9103a4d906656:log:9', 'hash': '0xf889109533c0e4aed7f686e8bbf566c0de2208ab0b76652dfcb9103a4d906656', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:48:02.000Z'}}, {'blockNum': '0x7602a1', 'uniqueId': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8:log:104', 'hash': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 159.0998551682927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089ff43b54122eaa6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:49:44.000Z'}}, {'blockNum': '0x7602a1', 'uniqueId': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8:log:108', 'hash': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'value': 159.0998551682927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089ff43b54122eaa6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:49:44.000Z'}}, {'blockNum': '0x7602a6', 'uniqueId': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47:log:8', 'hash': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:51:49.000Z'}}, {'blockNum': '0x7602a6', 'uniqueId': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47:log:10', 'hash': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:51:49.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:30', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:32', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x9475cec6a585cafd941d7e074d6fe5484a822be0', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:38', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x9475cec6a585cafd941d7e074d6fe5484a822be0', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7604ab', 'uniqueId': '0x5cf8696a4f7a0b2817195012942709112c6aa4b202b155a60f3ee77715d01b6a:log:51', 'hash': '0x5cf8696a4f7a0b2817195012942709112c6aa4b202b155a60f3ee77715d01b6a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:38:31.000Z'}}, {'blockNum': '0x7604b7', 'uniqueId': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94:log:22', 'hash': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:40:52.000Z'}}, {'blockNum': '0x7604b7', 'uniqueId': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94:log:24', 'hash': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:40:52.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:32', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:36', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:37', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x760592', 'uniqueId': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250:log:77', 'hash': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250', 'from': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 89.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04d47f3c6eea878000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:29:42.000Z'}}, {'blockNum': '0x760592', 'uniqueId': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250:log:79', 'hash': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 89.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04d47f3c6eea878000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:29:42.000Z'}}, {'blockNum': '0x7605db', 'uniqueId': '0x7b8295276770019f64700bab106cd4adef00ca0b1bf13679a78304c5458d9fe6:log:35', 'hash': '0x7b8295276770019f64700bab106cd4adef00ca0b1bf13679a78304c5458d9fe6', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0xbe4dfe79790cf61490d195d4bc0082625d829c21', 'value': 59.8689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x033ed90f59d9624000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:50:50.000Z'}}, {'blockNum': '0x7605fd', 'uniqueId': '0xc44f13b4934429a04036acc942210574ecba11d20d4a6c931757ecd011755961:log:44', 'hash': '0xc44f13b4934429a04036acc942210574ecba11d20d4a6c931757ecd011755961', 'from': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'to': '0x4b771b02981ef44e52c7b561e9a614fa9b11def6', 'value': 70.00085516829269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03cb74fee527a72a6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:57:33.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:49', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:53', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:55', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:56', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:57', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:31', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:35', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:37', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:38', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:39', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:18', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x320b7287b5136cddf0e6242837b0838136491689', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:21', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x320b7287b5136cddf0e6242837b0838136491689', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:22', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:23', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:20', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:24', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:26', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:27', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:28', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}]}}
Number of returned transfers:  158
Answer is complete
 
symbol             NAV
group              BPF
date        2019-05-18
hour             17:00
exchange       binance
Name: 774, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-05-18 17:00:00 2019-05-18 05:00:00 2019-05-19 05:00:00
Unix timestamps:  1558148400.0 1558234800.0
Hex Block Numbers:  0x76bcf2 0x76d5dc
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             POA
group              BPF
date        2019-05-26
hour             21:00
exchange       binance
Name: 775, dtype: object
HERE
 Symbol: POA, Contract: 
Datetime timestamps:  2019-05-26 21:00:00 2019-05-26 09:00:00 2019-05-27 09:00:00
Unix timestamps:  1558854000.0 1558940400.0
Hex Block Numbers:  0x7788c1 0x77a1ee
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SNM
group              BPF
date        2019-06-02
hour             21:00
exchange       binance
Name: 776, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-06-02 21:00:00 2019-06-02 09:00:00 2019-06-03 09:00:00
Unix timestamps:  1559458800.0 1559545200.0
Hex Block Numbers:  0x78381c 0x7850d1
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             BRD
group              BPF
date        2019-06-17
hour             14:59
exchange       binance
Name: 777, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2019-06-17 14:59:00 2019-06-17 02:59:00 2019-06-18 02:59:00
Unix timestamps:  1560733140.0 1560819540.0
Hex Block Numbers:  0x79a803 0x79c11e
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x79a900', 'uniqueId': '0xecbb0761efe0c0acec006de4d46b6d8a1367e3a0b720fed0daea0793e93af37b:log:117', 'hash': '0xecbb0761efe0c0acec006de4d46b6d8a1367e3a0b720fed0daea0793e93af37b', 'from': '0x336665d293dbde5d457b67975d887ecf52dde350', 'to': '0xa47e3da667218b027a723ad71dba09c4910dd85f', 'value': 107.24039167838119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05d042680c2baae714', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T01:57:26.000Z'}}, {'blockNum': '0x79a930', 'uniqueId': '0x3720a953712d9404714457c50c23781f8a088db9a1dcf638014b84797e20324f:log:130', 'hash': '0x3720a953712d9404714457c50c23781f8a088db9a1dcf638014b84797e20324f', 'from': '0x2984d8b3e71d122b07c7fdcb26ff4f4e89191599', 'to': '0x472958d150418e297cfbdc73b98a1475b4d65160', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:07:30.000Z'}}, {'blockNum': '0x79a969', 'uniqueId': '0xa9de2dfbc6f4b3f8b99b68b62226ff9e838651d6b058e682bbde136470516409:log:119', 'hash': '0xa9de2dfbc6f4b3f8b99b68b62226ff9e838651d6b058e682bbde136470516409', 'from': '0x170817da64532ddd155d71e6fc107605e11e1cff', 'to': '0xdab5f0407383970a4b60c3f73887850dfbeb6d87', 'value': 16811.61723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x038f5c0e7eeb6282e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:21:21.000Z'}}, {'blockNum': '0x79a9be', 'uniqueId': '0xb974becc7df4b32d062cb17a9ec5a3b17116f1d413b7e7b6fb8ed53039af1d98:log:75', 'hash': '0xb974becc7df4b32d062cb17a9ec5a3b17116f1d413b7e7b6fb8ed53039af1d98', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x3c7d43acf263d738ffef95583a18ba0e63db5761', 'value': 906.50825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x312454427d0affa000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:38:15.000Z'}}, {'blockNum': '0x79a9df', 'uniqueId': '0x0f0a192bc17c9c5c07448e23a4b1cc187144f584571f0537df92463144155e70:log:18', 'hash': '0x0f0a192bc17c9c5c07448e23a4b1cc187144f584571f0537df92463144155e70', 'from': '0xdab5f0407383970a4b60c3f73887850dfbeb6d87', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16811.61723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x038f5c0e7eeb6282e000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T02:46:27.000Z'}}, {'blockNum': '0x79ac4f', 'uniqueId': '0x4a22565ddfecb9a5dadc6552e0aa04a843d66b26faf4dec7791a5be6c60d63d2:log:58', 'hash': '0x4a22565ddfecb9a5dadc6552e0aa04a843d66b26faf4dec7791a5be6c60d63d2', 'from': '0x05e3e7b84bd0532fe7c829652035a0250136dfb1', 'to': '0xed74a37a7894923ffb7b200f6a3ddc6cd1e3e056', 'value': 259.35014629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0e0f34cff46d0af400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T05:00:26.000Z'}}, {'blockNum': '0x79ad20', 'uniqueId': '0xd90b7e7d3d68fb55007e52550e331f024eaac3241a2d14821623c7a1cbabf831:log:17', 'hash': '0xd90b7e7d3d68fb55007e52550e331f024eaac3241a2d14821623c7a1cbabf831', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7cdca7db2be4d1cf945d7a18f783f4de610a9027', 'value': 96.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05386e53c7de1e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T05:45:30.000Z'}}, {'blockNum': '0x79adec', 'uniqueId': '0x34d749b9fc25a3a25e40dd361cf5c41901c2b1228a0902511d914dbc57c3d9dc:log:7', 'hash': '0x34d749b9fc25a3a25e40dd361cf5c41901c2b1228a0902511d914dbc57c3d9dc', 'from': '0x6d56297604a62ef08e0f0e85ed4d4afffab1b17a', 'to': '0xfe6a83711ce9878d8918741464615ff900c1a50b', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T06:33:20.000Z'}}, {'blockNum': '0x79ae05', 'uniqueId': '0x774f4ebbdf755dd292e730b1f197353b6272521a6bd234548068c393b23b0bfc:log:45', 'hash': '0x774f4ebbdf755dd292e730b1f197353b6272521a6bd234548068c393b23b0bfc', 'from': '0x6d56297604a62ef08e0f0e85ed4d4afffab1b17a', 'to': '0xfe6a83711ce9878d8918741464615ff900c1a50b', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T06:38:23.000Z'}}, {'blockNum': '0x79ae3a', 'uniqueId': '0x6825115c68f7e2d822ce672a11efd917950f85374b0c444155d474a216029349:log:130', 'hash': '0x6825115c68f7e2d822ce672a11efd917950f85374b0c444155d474a216029349', 'from': '0xfe6a83711ce9878d8918741464615ff900c1a50b', 'to': '0x1b488e0c29d63541bee08b77a6049ece1d0177a5', 'value': 90030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1310893c809de1f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T06:49:43.000Z'}}, {'blockNum': '0x79aea9', 'uniqueId': '0x00d518ddc517ba5ad8067077d3e7866d326eef0ae80bffae42d17fccd6dfa789:log:107', 'hash': '0x00d518ddc517ba5ad8067077d3e7866d326eef0ae80bffae42d17fccd6dfa789', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 14854.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03253e0c419af1e20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T07:15:47.000Z'}}, {'blockNum': '0x79aec1', 'uniqueId': '0x607230c163a84d2dd6c6a48585ebf6c0e4e108edbef272bad364a9ae73edfeb3:log:37', 'hash': '0x607230c163a84d2dd6c6a48585ebf6c0e4e108edbef272bad364a9ae73edfeb3', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x1d40b9c7ce71003abb3ed727d3422aecce698722', 'value': 288.56611606622755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0fa4a8c9ac65a2350d', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T07:22:59.000Z'}}, {'blockNum': '0x79af38', 'uniqueId': '0xcd8dc968b4911a0ad9094d05d388684d14c2814ef2eb3734ea5031efe446ff54:log:94', 'hash': '0xcd8dc968b4911a0ad9094d05d388684d14c2814ef2eb3734ea5031efe446ff54', 'from': '0x38160b1e26c0bc28407d7eebd0f02fd7c1559a8d', 'to': '0x8052ff99379d585e3484849ea7e6d8c2d9059ae3', 'value': 192.253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a6c0bdce6632c8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T07:53:50.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xb86ea295304864c89509927192f7e3915aa2b9c08faf1ccb8ad0259a1347919f:log:131', 'hash': '0xb86ea295304864c89509927192f7e3915aa2b9c08faf1ccb8ad0259a1347919f', 'from': '0x2e692146ecec0c47babc1407599287a971d08cde', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 118.556964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x066d4ef29dc4c64000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x84c5f8fa4c24035d129bf9c1b4da0320f6121abdd46715b0b88a6625e6918c15:log:132', 'hash': '0x84c5f8fa4c24035d129bf9c1b4da0320f6121abdd46715b0b88a6625e6918c15', 'from': '0x01dd3d5618f00d996c9b8f14883ab0b539b354b9', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 6168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x014e5e31f88911600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x0043dc1a8b5388f2ca94b5c82f486efb181908cf77af53e940c66aa7200d94cc:log:133', 'hash': '0x0043dc1a8b5388f2ca94b5c82f486efb181908cf77af53e940c66aa7200d94cc', 'from': '0x227dc13dede9ea7fae0cce4d30be2a164d763f90', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 89.204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04d5f445607ff20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xbfd34129f8bb2d3eaacdf30b48b02a83de310f2bb703be91ae0beafcd3f058f0:log:134', 'hash': '0xbfd34129f8bb2d3eaacdf30b48b02a83de310f2bb703be91ae0beafcd3f058f0', 'from': '0x638f7859a5b6e508c374c3894faee6b7b00227d6', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 84.99552339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x049b8cc232975aec00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xbf988ed9168496a67b777e6970af3bb40f0d06a7220a20db48773c44dba956ab:log:135', 'hash': '0xbf988ed9168496a67b777e6970af3bb40f0d06a7220a20db48773c44dba956ab', 'from': '0xa9fff549508138074c991aa27ceb9a34b469b3b5', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x825233af0fe7100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xad85eba600d98e9236ba0f199bcf4bdbefbc6aa860ee3637a9affde78ff9f2eb:log:136', 'hash': '0xad85eba600d98e9236ba0f199bcf4bdbefbc6aa860ee3637a9affde78ff9f2eb', 'from': '0x89506e5af46b64e1b0af80ef6c2320ae55fa49a8', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x4eba84a375912e4eac9a125c1fc9942a7d0db77f49161aede35077da69fdb708:log:137', 'hash': '0x4eba84a375912e4eac9a125c1fc9942a7d0db77f49161aede35077da69fdb708', 'from': '0x63e05d2eb003c1750badc4845c958acf6c5f9b96', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 3000.490768990614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa2a82c991d9430e15b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x974ffbf0b1bc4f3e85736e24740dabf13a7f4e51a9a99a381481c53e4d827b3b:log:138', 'hash': '0x974ffbf0b1bc4f3e85736e24740dabf13a7f4e51a9a99a381481c53e4d827b3b', 'from': '0x8a373eeb2ac20e33baa051a321da58a823fc4bb5', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2042.82886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6ebdf208cc802fc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0x5c76cee74b15cacbec88dba894abd6bff37a79e1491623a36a7b4619063450d8:log:139', 'hash': '0x5c76cee74b15cacbec88dba894abd6bff37a79e1491623a36a7b4619063450d8', 'from': '0x24e331540bd464e58bfdde13437bc3ec511a0943', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x93b8f8c654cb740000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xb2deb5611e34ea2a6082efbf8e2dcf8e03802c56823661b02ddba4e120d87e65:log:140', 'hash': '0xb2deb5611e34ea2a6082efbf8e2dcf8e03802c56823661b02ddba4e120d87e65', 'from': '0x472958d150418e297cfbdc73b98a1475b4d65160', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af65', 'uniqueId': '0xae308a078132b77ddd4d0ddbac6d90aa3bdac319c6999cc2d6e57ad04ad224ee:log:141', 'hash': '0xae308a078132b77ddd4d0ddbac6d90aa3bdac319c6999cc2d6e57ad04ad224ee', 'from': '0xed74a37a7894923ffb7b200f6a3ddc6cd1e3e056', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 259.35014629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0e0f34cff46d0af400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:03:48.000Z'}}, {'blockNum': '0x79af68', 'uniqueId': '0x49d65d14e8dec5c44489b255cedbdea7f50d2c81481541ae7a4dc4d5f5f9e26c:log:133', 'hash': '0x49d65d14e8dec5c44489b255cedbdea7f50d2c81481541ae7a4dc4d5f5f9e26c', 'from': '0x8052ff99379d585e3484849ea7e6d8c2d9059ae3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 192.253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a6c0bdce6632c8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:04:14.000Z'}}, {'blockNum': '0x79afaa', 'uniqueId': '0x25dde5e1477c6e26e937670572d2a246a7d6f71b0d8ca00e0fd9bfc791b956da:log:47', 'hash': '0x25dde5e1477c6e26e937670572d2a246a7d6f71b0d8ca00e0fd9bfc791b956da', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 17132.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a0bfcfd4a78e580000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:17:52.000Z'}}, {'blockNum': '0x79afb1', 'uniqueId': '0x971267f3bf207843e12c34d5be37f87fa214cd9e02e550aab9e0769cf50ff7b6:log:80', 'hash': '0x971267f3bf207843e12c34d5be37f87fa214cd9e02e550aab9e0769cf50ff7b6', 'from': '0x1a70983ed1ba080868b36d0f796a6406eba89591', 'to': '0xc4ae5f2b9e6005ee34dc4417d4a1ada873bf61ec', 'value': 1371.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4a5538ff122fa00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:20:20.000Z'}}, {'blockNum': '0x79afee', 'uniqueId': '0x0de7f683737d04080d45a2d6b90f31b9ed37530fb7337301632f5454db79bb00:log:112', 'hash': '0x0de7f683737d04080d45a2d6b90f31b9ed37530fb7337301632f5454db79bb00', 'from': '0xc4ae5f2b9e6005ee34dc4417d4a1ada873bf61ec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1371.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4a5538ff122fa00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:34:23.000Z'}}, {'blockNum': '0x79b00a', 'uniqueId': '0x808898f957ff981ae74e0f46b97642182b59de792305886a9f92dbd422a766c8:log:15', 'hash': '0x808898f957ff981ae74e0f46b97642182b59de792305886a9f92dbd422a766c8', 'from': '0xd0a978f2c07ea03425a9ee49e6ec49a355907fee', 'to': '0x8def0fd87c572eab755547153b03a24bc1b62e05', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:41:30.000Z'}}, {'blockNum': '0x79b044', 'uniqueId': '0x6147ac961a052305b3b46646cec6dd90d4d4f36917fa9290986c19d796e07e20:log:49', 'hash': '0x6147ac961a052305b3b46646cec6dd90d4d4f36917fa9290986c19d796e07e20', 'from': '0x1b488e0c29d63541bee08b77a6049ece1d0177a5', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 90030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1310893c809de1f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:54:33.000Z'}}, {'blockNum': '0x79b04d', 'uniqueId': '0x33286dbe34c91a3e7572888708e53c35b1678a3e165626fa43a85cdc69c1c110:log:7', 'hash': '0x33286dbe34c91a3e7572888708e53c35b1678a3e165626fa43a85cdc69c1c110', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x621d6641f54987e99acf061eecb23427955f1ddd', 'value': 672.1048196694596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x246f53fc86821cfa2b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T08:56:03.000Z'}}, {'blockNum': '0x79b07b', 'uniqueId': '0x14aa67e8ea83234cdc40fc671cbde4f3784a1d6089ae56a341ad10cdfaddab64:log:39', 'hash': '0x14aa67e8ea83234cdc40fc671cbde4f3784a1d6089ae56a341ad10cdfaddab64', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 90030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1310893c809de1f80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T09:07:49.000Z'}}, {'blockNum': '0x79b080', 'uniqueId': '0xe5073ee43a67e72b582e0002735cc3c7fb85cb6faffd9595e5f522a346d1c776:log:45', 'hash': '0xe5073ee43a67e72b582e0002735cc3c7fb85cb6faffd9595e5f522a346d1c776', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T09:09:51.000Z'}}, {'blockNum': '0x79b099', 'uniqueId': '0x1ab78aadaa3a08368cd73649375588b9a73ab633263b1093c4a3ecd2b413b3d7:log:61', 'hash': '0x1ab78aadaa3a08368cd73649375588b9a73ab633263b1093c4a3ecd2b413b3d7', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T09:14:33.000Z'}}, {'blockNum': '0x79b370', 'uniqueId': '0xc91f5f4cdc411928c348d1b5f8bf3389f37f7e7b028eac87c66ed0360843c04b:log:34', 'hash': '0xc91f5f4cdc411928c348d1b5f8bf3389f37f7e7b028eac87c66ed0360843c04b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x35d1cb9136cc6ff64106f9e562ca100047b72293', 'value': 507.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b7f3af5948d630000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T12:03:57.000Z'}}, {'blockNum': '0x79b3f9', 'uniqueId': '0x6475151bb4bc8f1fde49d481a0ff35c56db1ca315afe4332c7d57f96d72ca775:log:0', 'hash': '0x6475151bb4bc8f1fde49d481a0ff35c56db1ca315afe4332c7d57f96d72ca775', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3b198ad9bcb38a23de08967ad8723150490e817c', 'value': 6.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x576e189f04f60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T12:37:03.000Z'}}, {'blockNum': '0x79b413', 'uniqueId': '0xd58cb0a90590db3c2448959da457df448197f2dbb0a36c51f886457c3eccf3d9:log:44', 'hash': '0xd58cb0a90590db3c2448959da457df448197f2dbb0a36c51f886457c3eccf3d9', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd979ddb1beab0d637281462dcb96a3f4b71b39be', 'value': 118.21940560856943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06689fb30c389a5b40', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T12:42:07.000Z'}}, {'blockNum': '0x79b483', 'uniqueId': '0x60cb6427870417fa3497ae832ebdf2ecbecb11ed1e84f3f396a33fd9927af890:log:6', 'hash': '0x60cb6427870417fa3497ae832ebdf2ecbecb11ed1e84f3f396a33fd9927af890', 'from': '0x25c641c4e7afedee998f29c8bb11914ca52c3d45', 'to': '0x3bd8a17382fbf8b2f587672e1d96913e8359f26d', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc8af9209f6a0180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:04:33.000Z'}}, {'blockNum': '0x79b4d9', 'uniqueId': '0x8b2d34888f22c7ee6e3a3492edbaeb77c4cdc18cb0e5731a6db54eaa99209b9d:log:64', 'hash': '0x8b2d34888f22c7ee6e3a3492edbaeb77c4cdc18cb0e5731a6db54eaa99209b9d', 'from': '0x3bd8a17382fbf8b2f587672e1d96913e8359f26d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc8af9209f6a0180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:24:21.000Z'}}, {'blockNum': '0x79b521', 'uniqueId': '0x14fb48b0a306df4fc3d2969695ebfcd29673a7c64efc500556302ea929ed7617:log:29', 'hash': '0x14fb48b0a306df4fc3d2969695ebfcd29673a7c64efc500556302ea929ed7617', 'from': '0x4506462b445166f8f5ce1b82d4bf5e50489b8f73', 'to': '0xa5ff11e7fd0462409122aed0b5b274149f7b362f', 'value': 158.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0896c4d98f3b570000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:38:11.000Z'}}, {'blockNum': '0x79b565', 'uniqueId': '0x175480db068c3ae5f9d1bd48f5af2f6776db96384603b78780fef5087f7a2e88:log:0', 'hash': '0x175480db068c3ae5f9d1bd48f5af2f6776db96384603b78780fef5087f7a2e88', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3218caf5bfd5d317edef3f0f13d0f9f2cdebf61f', 'value': 98.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05542fc12f2ce60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T13:53:34.000Z'}}, {'blockNum': '0x79b61d', 'uniqueId': '0xd3accf80ea8e5b4f4592ff46a287698e991287aca3c305c0d526c8c4a9b57a63:log:18', 'hash': '0xd3accf80ea8e5b4f4592ff46a287698e991287aca3c305c0d526c8c4a9b57a63', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb5236feab9c7662579fee170b962364bf50b2c8a', 'value': 3582.077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc22f4df4d7b8ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T14:36:45.000Z'}}, {'blockNum': '0x79b63a', 'uniqueId': '0x7e5c92bcb45baa0553192d6a1475fc71e1534d87a6f7c38006d41fa123ddc649:log:28', 'hash': '0x7e5c92bcb45baa0553192d6a1475fc71e1534d87a6f7c38006d41fa123ddc649', 'from': '0xb5236feab9c7662579fee170b962364bf50b2c8a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3582.077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc22f4df4d7b8ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T14:43:49.000Z'}}, {'blockNum': '0x79b679', 'uniqueId': '0x7f920e75e9db9de9b834ea7ac86010f95f5d3c451109b7106106f720eb6ba443:log:139', 'hash': '0x7f920e75e9db9de9b834ea7ac86010f95f5d3c451109b7106106f720eb6ba443', 'from': '0x8def0fd87c572eab755547153b03a24bc1b62e05', 'to': '0x2fdc804a8abd4cf2a9ff3df34e958f87e3264619', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T14:55:42.000Z'}}, {'blockNum': '0x79b87e', 'uniqueId': '0x3c0eefdafbc09eca002b68097a3b3ef460a1e248254bc5e3bdbd42909583a39a:log:127', 'hash': '0x3c0eefdafbc09eca002b68097a3b3ef460a1e248254bc5e3bdbd42909583a39a', 'from': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'to': '0x9011134c72b9a467ee45c03f68b65c42d5919968', 'value': 115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x063bf212b431ec0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T16:49:23.000Z'}}, {'blockNum': '0x79b93b', 'uniqueId': '0x6b8d7cbb59dbae6c6748e5f493d321be20db16fa93c2aef9f1bef8bfe2e1b84c:log:15', 'hash': '0x6b8d7cbb59dbae6c6748e5f493d321be20db16fa93c2aef9f1bef8bfe2e1b84c', 'from': '0x37597f383bb4fb74f84c270598a8350b1a765530', 'to': '0x1f3b476c1633f96347dcc41c58275484baf22b26', 'value': 490.033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a9092f131a2fe8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T17:31:22.000Z'}}, {'blockNum': '0x79b9c9', 'uniqueId': '0xdaad102af8556bc4eb9bc682428fdaba508c0f18d34403b88c5cb453c144c247:log:158', 'hash': '0xdaad102af8556bc4eb9bc682428fdaba508c0f18d34403b88c5cb453c144c247', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xb2bb0ea40f13e7827089f25967419af710c5b625', 'value': 106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05bf0ba6634f680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T18:06:31.000Z'}}, {'blockNum': '0x79baab', 'uniqueId': '0xe4e52710b78c0b837cc532b3d08adefab3ad86c7df56af640886a7ef68d92959:log:96', 'hash': '0xe4e52710b78c0b837cc532b3d08adefab3ad86c7df56af640886a7ef68d92959', 'from': '0x7cd6c173e249f37d8073494d7e032b9d9282250e', 'to': '0x9feaecfb8f9bac1966c8b79a4859275c89fa7376', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T18:54:36.000Z'}}, {'blockNum': '0x79bab4', 'uniqueId': '0xdd7f4c4ba034e395890d3b684958ad78fc5d1506192b332aa3f16ba840f5b914:log:92', 'hash': '0xdd7f4c4ba034e395890d3b684958ad78fc5d1506192b332aa3f16ba840f5b914', 'from': '0x7cd6c173e249f37d8073494d7e032b9d9282250e', 'to': '0x9feaecfb8f9bac1966c8b79a4859275c89fa7376', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T18:57:45.000Z'}}, {'blockNum': '0x79bae2', 'uniqueId': '0x8c2b08e367cdd1bdfa1a4d58ab77191ffc68ba4eb91a03166c5cc7c785a2dbfb:log:2', 'hash': '0x8c2b08e367cdd1bdfa1a4d58ab77191ffc68ba4eb91a03166c5cc7c785a2dbfb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5741da22b26131e23c9c03926f2d98c2efd040fe', 'value': 302.2082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1061fb34bb7a348000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T19:10:11.000Z'}}, {'blockNum': '0x79bb12', 'uniqueId': '0x4fdcce13bebf9c4c743466cee1ff4b02794db23a3e08a063fc28d13b01dce3bf:log:0', 'hash': '0x4fdcce13bebf9c4c743466cee1ff4b02794db23a3e08a063fc28d13b01dce3bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5459289a2adc8f0d64f1866b998fee914370d2ea', 'value': 12.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xaa6b52f011cc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T19:19:46.000Z'}}, {'blockNum': '0x79bb58', 'uniqueId': '0xc14046cc578a12aea4d2c670ee53ccc6e44bb87458edab9c5efe11dc63c739e9:log:29', 'hash': '0xc14046cc578a12aea4d2c670ee53ccc6e44bb87458edab9c5efe11dc63c739e9', 'from': '0xd33f26bf71bb87df1fe3bf52f6998eb83eadc77c', 'to': '0xc3816ea0db09d16af3f7afea2a6ae86196d27fc1', 'value': 181.615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09d86a184332918000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T19:35:50.000Z'}}, {'blockNum': '0x79bbd5', 'uniqueId': '0x503eecb425c08b769116ff88b6a6aa91e560788fde1e4a479d7a3cf5abdc6c4f:log:113', 'hash': '0x503eecb425c08b769116ff88b6a6aa91e560788fde1e4a479d7a3cf5abdc6c4f', 'from': '0xc3816ea0db09d16af3f7afea2a6ae86196d27fc1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 181.615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09d86a184332918000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:03:51.000Z'}}, {'blockNum': '0x79bc15', 'uniqueId': '0x5db503c3168574dcb7aba1453f1ebde66e5c3b4a1f69f8c704143b87e0fbe910:log:106', 'hash': '0x5db503c3168574dcb7aba1453f1ebde66e5c3b4a1f69f8c704143b87e0fbe910', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x5f28d22f61a30f52ee99490e8fccb666771c2f75', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:15:21.000Z'}}, {'blockNum': '0x79bc18', 'uniqueId': '0x5b02d67fc90c4a87730b985e952d8541383cb9797126d126f3c49d2894a3cadc:log:158', 'hash': '0x5b02d67fc90c4a87730b985e952d8541383cb9797126d126f3c49d2894a3cadc', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0xff4dd871dd89975ea1976fd91db023c6fd860395', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:16:35.000Z'}}, {'blockNum': '0x79bc18', 'uniqueId': '0x595a6557347acc460afffb7b788bc8a0fd62678afb4d587c00199a348b882387:log:159', 'hash': '0x595a6557347acc460afffb7b788bc8a0fd62678afb4d587c00199a348b882387', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0xf891542b52f1708ce94f6df0f67c8548c4dba70f', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:16:35.000Z'}}, {'blockNum': '0x79bc1c', 'uniqueId': '0x66af2c6e9c4b8d42fd40d028ab2269c3fe2a3d4e89994608257f419958d9576b:log:46', 'hash': '0x66af2c6e9c4b8d42fd40d028ab2269c3fe2a3d4e89994608257f419958d9576b', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x0668d1ebf4610cbf002dfb4576af2e86e46251f2', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:17:13.000Z'}}, {'blockNum': '0x79bc20', 'uniqueId': '0x8ce111cd8f1fcde9e16dac4dd78785dd3931879884033194f29616703d44dca1:log:138', 'hash': '0x8ce111cd8f1fcde9e16dac4dd78785dd3931879884033194f29616703d44dca1', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0xfa06943787ffe832493055363e4bc1d1557b274b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:18:17.000Z'}}, {'blockNum': '0x79bc20', 'uniqueId': '0xe7d0a9942304057e80cf119989e609608f818191d8317b1a61c444a299e5eea1:log:139', 'hash': '0xe7d0a9942304057e80cf119989e609608f818191d8317b1a61c444a299e5eea1', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x910b0b2092476c02f03d7880c0fbcd75ecd285d5', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:18:17.000Z'}}, {'blockNum': '0x79bc29', 'uniqueId': '0x614faa93bd1a81dd250e698b54fa17dc6c4d1a2ebbf0fa6cc8f33b7ad475b5f0:log:36', 'hash': '0x614faa93bd1a81dd250e698b54fa17dc6c4d1a2ebbf0fa6cc8f33b7ad475b5f0', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x0b504eb2a808a2561531af37ec1b08d6235b8d70', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:20:49.000Z'}}, {'blockNum': '0x79bc2f', 'uniqueId': '0x1e2646ab021e74e53e62b7b6222d2db835f2d5e06e45a8dd27f376f4fbb001ba:log:10', 'hash': '0x1e2646ab021e74e53e62b7b6222d2db835f2d5e06e45a8dd27f376f4fbb001ba', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7764aef137f4b2f72ada1a869eb7f92844574b43', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:22:13.000Z'}}, {'blockNum': '0x79bc2f', 'uniqueId': '0x5385bba89a46376111379f47702ded4debe75f7a37828478f9b7122c21e529fd:log:58', 'hash': '0x5385bba89a46376111379f47702ded4debe75f7a37828478f9b7122c21e529fd', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x430c489835375d872fe9be45b215f75c1d5da19d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:22:13.000Z'}}, {'blockNum': '0x79bc2f', 'uniqueId': '0x2cfdfea07c5cea95fa6b6a1ef2af1b507f049519feb07d966e96bc6e81b03da9:log:59', 'hash': '0x2cfdfea07c5cea95fa6b6a1ef2af1b507f049519feb07d966e96bc6e81b03da9', 'from': '0xaa16dc7ba6aaff84b4d13e5d30b5a31945741d68', 'to': '0x519fdc790f5bb1cc1dd55d59572a42d3e5b6ce7c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:22:13.000Z'}}, {'blockNum': '0x79bc53', 'uniqueId': '0xbc2dbb98bffe9571f31b1b10224e664b885ad8b9b7c50d4d91b69ffb9eaa235b:log:7', 'hash': '0xbc2dbb98bffe9571f31b1b10224e664b885ad8b9b7c50d4d91b69ffb9eaa235b', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x057f66b1e1308fa4259631e33ff202d244c8ad9c', 'value': 113.84486638169147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x062bea36cc5687df8b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:29:55.000Z'}}, {'blockNum': '0x79bc83', 'uniqueId': '0x5fb4f9bee4340ca2b0fe92dcf15a1d74876c7b8f5e42bf51284ca254ed37e171:log:4', 'hash': '0x5fb4f9bee4340ca2b0fe92dcf15a1d74876c7b8f5e42bf51284ca254ed37e171', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xe2c2f01e93887a77d81f47ea16ffc94a1fa1dd8f', 'value': 102.99554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x059559a9efad894000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T20:42:10.000Z'}}, {'blockNum': '0x79bcf8', 'uniqueId': '0x8c67b7fd45219c85249a19d10fb42a88d88a91c489c2a9600bd79112a1065f55:log:1', 'hash': '0x8c67b7fd45219c85249a19d10fb42a88d88a91c489c2a9600bd79112a1065f55', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x58ede29b8b8de94e4604d468b56f0822639d20b7', 'value': 54.92213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02fa329a3ebdd32000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:06:03.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x965d53e28041d7ea6b3b54d08f68c43726df469f7ee341e1e95a7c6a17464c51:log:17', 'hash': '0x965d53e28041d7ea6b3b54d08f68c43726df469f7ee341e1e95a7c6a17464c51', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xa674ea657de352db1dc72e170a92daf7f8718453', 'value': 800.8287121034866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b69bb1eaf8de3a65b', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x38eea8a9955ab28fc41fba0877cbddd86818b2377fba600b6410e08560351c2b:log:41', 'hash': '0x38eea8a9955ab28fc41fba0877cbddd86818b2377fba600b6410e08560351c2b', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x458a729f0b0b8a68335a437783d91c315615920b', 'value': 416.4721288718584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1693b63aa521d310d1', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x34647fb8ae5830beda2d9e554321e15da494867947e5de5e28d7a93786ca950d:log:42', 'hash': '0x34647fb8ae5830beda2d9e554321e15da494867947e5de5e28d7a93786ca950d', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xc4b6ae4a833274bad9bb735b3f90364ba22a4004', 'value': 415.12105901100813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1680f643c3cf1c1de3', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0x33250f8670eb448d7f36153589a88a06ef4ac8f03a4c25a22ef4f384b94a0cce:log:44', 'hash': '0x33250f8670eb448d7f36153589a88a06ef4ac8f03a4c25a22ef4f384b94a0cce', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x792ebb9f4dc4d8ddf557b051d88e98320a5c8b95', 'value': 811.5981341791336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2bff2fcb0135123267', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0xbe1112dba24850fc3abddcab7891ec9b8e79ed674dd0717a57da018e46f33f63:log:45', 'hash': '0xbe1112dba24850fc3abddcab7891ec9b8e79ed674dd0717a57da018e46f33f63', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x2b1826ea3a6c5c245561fcd0cbb135a0f4f6aa89', 'value': 393.49758637797623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1554e041f8a0dca4c0', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0xc77436f5a6699d3e897eebdd1f6e1f3d39ec5ab9c1897d4584429125d123a6b7:log:46', 'hash': '0xc77436f5a6699d3e897eebdd1f6e1f3d39ec5ab9c1897d4584429125d123a6b7', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xf93fed6ec2da7f44b01390f5098df77f5d3b04a2', 'value': 416.64449399893033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x16961a97d09c9d00d3', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd67', 'uniqueId': '0xe063e90eb1fc4c34edeafe44e6ed5c57858508ea44b56a1484e60a829ed89389:log:47', 'hash': '0xe063e90eb1fc4c34edeafe44e6ed5c57858508ea44b56a1484e60a829ed89389', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0xba4b3f7cd4672c8645bd61ccda0b21c784491507', 'value': 800.6589730801496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b676015f17f5d014e', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:33:40.000Z'}}, {'blockNum': '0x79bd79', 'uniqueId': '0x728349faa24d0396842e991ef016ebdc484f4f85ee3cdbc9ce654c9837f745da:log:168', 'hash': '0x728349faa24d0396842e991ef016ebdc484f4f85ee3cdbc9ce654c9837f745da', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x45193f21dcd87957be6ed26e8a59b0ca586e30e4', 'value': 412.2990883206368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1659cc9c5f98f6d731', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:37:44.000Z'}}, {'blockNum': '0x79bd86', 'uniqueId': '0x0e94d50d26e67e06be0077b0c0e864adb07b00cc118b0d95d4c0882cc65a465b:log:139', 'hash': '0x0e94d50d26e67e06be0077b0c0e864adb07b00cc118b0d95d4c0882cc65a465b', 'from': '0x4a31fe09c3c782a64a43c9989a68046193454522', 'to': '0x94432c62a90bbed35c486737091a39d4553af751', 'value': 801.9637460137021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2b797b9203704daad5', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T21:39:58.000Z'}}, {'blockNum': '0x79be72', 'uniqueId': '0x60a7448cfda855186b6b5fd9683307034799b54d5f64a7081af844385c167ee7:log:26', 'hash': '0x60a7448cfda855186b6b5fd9683307034799b54d5f64a7081af844385c167ee7', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x14e9426f19e5afdfcacabd7a9a5d02c5ca043459', 'value': 208.11309595208493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b48263e2352cecc1d', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T22:34:51.000Z'}}, {'blockNum': '0x79bf22', 'uniqueId': '0x046b8ba91f7c904286b08c4ef3835ba87d125458837a14c36d587e646939bc46:log:67', 'hash': '0x046b8ba91f7c904286b08c4ef3835ba87d125458837a14c36d587e646939bc46', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4645b1e3cc12086f7f9bb93521c5d6f72209490', 'value': 28.4327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x018a953e01d13fc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T23:16:05.000Z'}}, {'blockNum': '0x79bf22', 'uniqueId': '0xc7f693f8c3b503d660f3e3b0d979cc154acfa1050867b4628c587d20a9bcaf21:log:68', 'hash': '0xc7f693f8c3b503d660f3e3b0d979cc154acfa1050867b4628c587d20a9bcaf21', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4645b1e3cc12086f7f9bb93521c5d6f72209490', 'value': 28.4327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x018a953e01d13fc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-17T23:16:05.000Z'}}, {'blockNum': '0x79c0b5', 'uniqueId': '0xc26c94daf61141ce84f1889d87ba41212863044044931372be20afa03f726b8a:log:46', 'hash': '0xc26c94daf61141ce84f1889d87ba41212863044044931372be20afa03f726b8a', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x1c976ea0d60f04b4354ec4ead3f0ce069bd1b3a5', 'value': 1476.52154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x500ada45af00b84000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-18T00:37:23.000Z'}}]}}
Number of returned transfers:  79
Answer is complete
 
symbol             INS
group              BPF
date        2019-06-25
hour             16:00
exchange       binance
Name: 779, dtype: object
HERE
{'polygon-pos': '0xb988bd378a0754957d5d9471c96e0f8051645a26'}
No contract for ethereum specified
 Symbol: INS, Contract: 
Datetime timestamps:  2019-06-25 16:00:00 2019-06-25 04:00:00 2019-06-26 04:00:00
Unix timestamps:  1561428000.0 1561514400.0
Hex Block Numbers:  0x7a712a 0x7a8a43
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            POWR
group              BPF
date        2019-07-03
hour             21:00
exchange       binance
Name: 781, dtype: object
HERE
 Symbol: POWR, Contract: 0x595832f8fc6bf59c85c527fec3740a1b7a361269
Datetime timestamps:  2019-07-03 21:00:00 2019-07-03 09:00:00 2019-07-04 09:00:00
Unix timestamps:  1562137200.0 1562223600.0
Hex Block Numbers:  0x7b3ea5 0x7b57b3
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7b3f1c', 'uniqueId': '0xc7426826ea6e9177d7509416402cb38c2a8fd4d38a4317fb6c92f1ed3cf91aba:log:1', 'hash': '0xc7426826ea6e9177d7509416402cb38c2a8fd4d38a4317fb6c92f1ed3cf91aba', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x320c4cd18cbb2fefd3b4c79c71aa8965671e9f4d', 'value': 194.166651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0b92bf7b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T07:26:17.000Z'}}, {'blockNum': '0x7b3f9d', 'uniqueId': '0x3bc396de59391014d34ce247b97f2cffc76f51d20304c57550074b1092362577:log:73', 'hash': '0x3bc396de59391014d34ce247b97f2cffc76f51d20304c57550074b1092362577', 'from': '0xb8d017e9bde5d37ab640efd468dbe75bed232130', 'to': '0xc742c3840bdd619fb483d0de176317d521312563', 'value': 224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d59f800', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T07:55:06.000Z'}}, {'blockNum': '0x7b3fcd', 'uniqueId': '0xdb2689454f5f2bd0a3e1a2506ea6b00b2b6d9500b711ba30d7c8954de89ad900:log:57', 'hash': '0xdb2689454f5f2bd0a3e1a2506ea6b00b2b6d9500b711ba30d7c8954de89ad900', 'from': '0x16db242ff924e750a7beb89fc3678292624e3f44', 'to': '0x2d9237bec78481c8920128e1ea03fb88ee823fb3', 'value': 11818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02c0685e80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:07:23.000Z'}}, {'blockNum': '0x7b3fcd', 'uniqueId': '0x0d3121c84090b294252b5374b03d9a1f1cf1585c003144b844db3b132e1dca16:log:60', 'hash': '0x0d3121c84090b294252b5374b03d9a1f1cf1585c003144b844db3b132e1dca16', 'from': '0xdb48f70b6bc511b36a4ddfe65370f50a993df566', 'to': '0x347e215a653c47fc8cd661aad86946deb26b3fd9', 'value': 825.886306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x313a0662', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:07:23.000Z'}}, {'blockNum': '0x7b3fcf', 'uniqueId': '0x694457d80a62ebc55eed4f957b19e3f871fda378a3ecaf5e294e372af49ef930:log:60', 'hash': '0x694457d80a62ebc55eed4f957b19e3f871fda378a3ecaf5e294e372af49ef930', 'from': '0x16db242ff924e750a7beb89fc3678292624e3f44', 'to': '0x96f351be9d6d4dd38f68c04cb46a08e503858f75', 'value': 11818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02c0685e80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:07:42.000Z'}}, {'blockNum': '0x7b3fd5', 'uniqueId': '0x5c09e1ad8de196b4adde0bbda5179cc4b53ea62679661d722d0cee1760b6324a:log:86', 'hash': '0x5c09e1ad8de196b4adde0bbda5179cc4b53ea62679661d722d0cee1760b6324a', 'from': '0x16db242ff924e750a7beb89fc3678292624e3f44', 'to': '0x3001ac712e5df58da005703e1133aa5d43d9858f', 'value': 11818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02c0685e80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:09:09.000Z'}}, {'blockNum': '0x7b3fd6', 'uniqueId': '0x99f5b5d10e3258fd6e3abc365dd58df40b63d3f00681a89021f1c5ea9319aa34:log:23', 'hash': '0x99f5b5d10e3258fd6e3abc365dd58df40b63d3f00681a89021f1c5ea9319aa34', 'from': '0x16db242ff924e750a7beb89fc3678292624e3f44', 'to': '0x00371036d6538abcfa2c5154e83a6f25582cdf29', 'value': 4170.89913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xf89adeba', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:10:02.000Z'}}, {'blockNum': '0x7b3ff4', 'uniqueId': '0x7c0a7ef6117f65ef1fbb52ebb5b7521bb02ad37916a405ac90a87a72934be9f7:log:10', 'hash': '0x7c0a7ef6117f65ef1fbb52ebb5b7521bb02ad37916a405ac90a87a72934be9f7', 'from': '0x347e215a653c47fc8cd661aad86946deb26b3fd9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 825.886306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x313a0662', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:19:06.000Z'}}, {'blockNum': '0x7b3ffb', 'uniqueId': '0x852ea439d4faddb03265896a3f9541ead3352f28505d0d24b0cc885ddde89087:log:29', 'hash': '0x852ea439d4faddb03265896a3f9541ead3352f28505d0d24b0cc885ddde89087', 'from': '0x6279aa8ff362bbbf9cfd200415e9fd9696d60284', 'to': '0x61a11f3d1f3b4dbd3f780f004773e620daf065c4', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:20:55.000Z'}}, {'blockNum': '0x7b4025', 'uniqueId': '0xc81d56cf364f89c0b52ddcbbca3a80be04884c4d93227a4388731b77e187474e:log:27', 'hash': '0xc81d56cf364f89c0b52ddcbbca3a80be04884c4d93227a4388731b77e187474e', 'from': '0x2d9237bec78481c8920128e1ea03fb88ee823fb3', 'to': '0x6279aa8ff362bbbf9cfd200415e9fd9696d60284', 'value': 11818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02c0685e80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:29:37.000Z'}}, {'blockNum': '0x7b4025', 'uniqueId': '0x730e4e8d161bb3a7334cbfaa4547fcc086cd08c10b1b211fd1f9c24fbcae8f89:log:28', 'hash': '0x730e4e8d161bb3a7334cbfaa4547fcc086cd08c10b1b211fd1f9c24fbcae8f89', 'from': '0x96f351be9d6d4dd38f68c04cb46a08e503858f75', 'to': '0x6279aa8ff362bbbf9cfd200415e9fd9696d60284', 'value': 11818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02c0685e80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:29:37.000Z'}}, {'blockNum': '0x7b4025', 'uniqueId': '0xa4a8d2a3c8e96c653ce79d8011737b19a06a5290ef751c53a21ed72c435765aa:log:29', 'hash': '0xa4a8d2a3c8e96c653ce79d8011737b19a06a5290ef751c53a21ed72c435765aa', 'from': '0x3001ac712e5df58da005703e1133aa5d43d9858f', 'to': '0x6279aa8ff362bbbf9cfd200415e9fd9696d60284', 'value': 11818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02c0685e80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:29:37.000Z'}}, {'blockNum': '0x7b4025', 'uniqueId': '0x772a6757a41e5f1f54147c4c506e6cd0a996508a054efdc493a121996a101948:log:30', 'hash': '0x772a6757a41e5f1f54147c4c506e6cd0a996508a054efdc493a121996a101948', 'from': '0x00371036d6538abcfa2c5154e83a6f25582cdf29', 'to': '0x6279aa8ff362bbbf9cfd200415e9fd9696d60284', 'value': 4170.89913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xf89adeba', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:29:37.000Z'}}, {'blockNum': '0x7b4072', 'uniqueId': '0x18f19aeb6128b1dc116fa8a8e47f635890ced70de2df2366df36200a35db4e1d:log:63', 'hash': '0x18f19aeb6128b1dc116fa8a8e47f635890ced70de2df2366df36200a35db4e1d', 'from': '0x6279aa8ff362bbbf9cfd200415e9fd9696d60284', 'to': '0x61a11f3d1f3b4dbd3f780f004773e620daf065c4', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09502f9000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T08:46:01.000Z'}}, {'blockNum': '0x7b40c2', 'uniqueId': '0xd6d5629b9320e8898c15d288a82ac299a8bcd33f7d938ecc2c824d58ba1d68c6:log:59', 'hash': '0xd6d5629b9320e8898c15d288a82ac299a8bcd33f7d938ecc2c824d58ba1d68c6', 'from': '0xf5e989d85b82a9298043a930073a6228e9ab3d3e', 'to': '0x2795724c9b040cfbdc22541c65f620497ba05e5a', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0a', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T09:02:37.000Z'}}, {'blockNum': '0x7b40c5', 'uniqueId': '0xd3b01f8a1a7bd6a15c6a76bb28519508aaa6fdac0f71a9149254265c571e01c2:log:40', 'hash': '0xd3b01f8a1a7bd6a15c6a76bb28519508aaa6fdac0f71a9149254265c571e01c2', 'from': '0xf5e989d85b82a9298043a930073a6228e9ab3d3e', 'to': '0x2795724c9b040cfbdc22541c65f620497ba05e5a', 'value': 5e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x32', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T09:03:13.000Z'}}, {'blockNum': '0x7b40d6', 'uniqueId': '0xdcc43186ae4de9cdabf46519e929b2ac0a0213e7a6bcf811875f6a6121b5463e:log:53', 'hash': '0xdcc43186ae4de9cdabf46519e929b2ac0a0213e7a6bcf811875f6a6121b5463e', 'from': '0x8c88929d367b3ab30222f47c71ecce8c3f3ece86', 'to': '0xd43f27007c668ae9dc66b1ff30af116719fcd8b3', 'value': 189017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2c024a8840', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T09:08:35.000Z'}}, {'blockNum': '0x7b4162', 'uniqueId': '0x527765e5d3c9cebcd2506cdafd70d3d423e9c3876339a9b7d0a1fd23e0e1d2d1:log:1', 'hash': '0x527765e5d3c9cebcd2506cdafd70d3d423e9c3876339a9b7d0a1fd23e0e1d2d1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 45853.834867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0aad19fe73', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T09:38:24.000Z'}}, {'blockNum': '0x7b4162', 'uniqueId': '0xe102a34f791bc63e15d70a22c32ac008a58e2f36e80eed2ea114a25e63672aa4:log:2', 'hash': '0xe102a34f791bc63e15d70a22c32ac008a58e2f36e80eed2ea114a25e63672aa4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 12543.792634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02ebab15fa', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T09:38:24.000Z'}}, {'blockNum': '0x7b4196', 'uniqueId': '0x177470593a4c60d0d6ed33b005e1bcf8fc74f61e770e5ab367459206aba339bd:log:3', 'hash': '0x177470593a4c60d0d6ed33b005e1bcf8fc74f61e770e5ab367459206aba339bd', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58397.627501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d98c5146d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T09:49:08.000Z'}}, {'blockNum': '0x7b41a6', 'uniqueId': '0x49738ab2a49991c0071eeae6f993453b86b7df7869e3c8af7d487e98c2543f7c:log:6', 'hash': '0x49738ab2a49991c0071eeae6f993453b86b7df7869e3c8af7d487e98c2543f7c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0613840cb3a24a7bbc9d22dcd4db98f6ee8fe43f', 'value': 2983.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb1d18ba0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T09:52:23.000Z'}}, {'blockNum': '0x7b41ae', 'uniqueId': '0x4bbb353b4b078f2c6f4b55a3feaa3a6f0939e074771747110fc70e786a3b6e60:log:13', 'hash': '0x4bbb353b4b078f2c6f4b55a3feaa3a6f0939e074771747110fc70e786a3b6e60', 'from': '0x69714e3fb601833f96ed29025aa71b092f32a7a6', 'to': '0x87210298d10cee20013d2395b183ee4c8d07213a', 'value': 2991.133309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb249127d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T09:54:10.000Z'}}, {'blockNum': '0x7b41c2', 'uniqueId': '0xc2e6a3d0764e2618ae09c10ea8b7ff2e6f5a3e2d7296645e8f4b9fed0580f437:log:16', 'hash': '0xc2e6a3d0764e2618ae09c10ea8b7ff2e6f5a3e2d7296645e8f4b9fed0580f437', 'from': '0x87210298d10cee20013d2395b183ee4c8d07213a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2991.133309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb249127d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T09:58:37.000Z'}}, {'blockNum': '0x7b4204', 'uniqueId': '0xdab4c222ff41a1be40f3f0373135a1dd9f317c586bcf2fb044819ea8e86cd1fa:log:12', 'hash': '0xdab4c222ff41a1be40f3f0373135a1dd9f317c586bcf2fb044819ea8e86cd1fa', 'from': '0x0613840cb3a24a7bbc9d22dcd4db98f6ee8fe43f', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 2983.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb1d18ba0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T10:13:23.000Z'}}, {'blockNum': '0x7b4205', 'uniqueId': '0x1d9be75af40f504a8db814c1a9f416468d3ff82c43035f847406a201945bb193:log:7', 'hash': '0x1d9be75af40f504a8db814c1a9f416468d3ff82c43035f847406a201945bb193', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x3fd093f99367c80258ef66cad7727e7047dc94a3', 'value': 8399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01f49e91c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T10:14:08.000Z'}}, {'blockNum': '0x7b420d', 'uniqueId': '0xe1e0e4f3e36b85fe9cdf6bfeacaf1b1c8d28303aabd6df35085b1f055d82f330:log:27', 'hash': '0xe1e0e4f3e36b85fe9cdf6bfeacaf1b1c8d28303aabd6df35085b1f055d82f330', 'from': '0x3635484553c745c4e0614baeb4a9448b34f71d73', 'to': '0x63971fcb33fc8740a1cc33d211ef9ac9a32fd27c', 'value': 1381.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x52567dc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T10:16:33.000Z'}}, {'blockNum': '0x7b421e', 'uniqueId': '0x4781aa56ce3d9b0e65156478af0078185baae0757f085cc69e1ea0bff2f36954:log:10', 'hash': '0x4781aa56ce3d9b0e65156478af0078185baae0757f085cc69e1ea0bff2f36954', 'from': '0x3fd093f99367c80258ef66cad7727e7047dc94a3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01f49e91c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T10:19:24.000Z'}}, {'blockNum': '0x7b428c', 'uniqueId': '0x795e31cf45038beaf397a8506deb682d0791cac37ccb8550cd11ac1283db4dec:log:3', 'hash': '0x795e31cf45038beaf397a8506deb682d0791cac37ccb8550cd11ac1283db4dec', 'from': '0xd4d99d13bde2d12297126a3ba1d945c2d8b0f872', 'to': '0x5c0bef99da8c6c003b6efba466d8eda0c042cc2e', 'value': 322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x13315480', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T10:39:44.000Z'}}, {'blockNum': '0x7b42ce', 'uniqueId': '0x05e800dc6c19e73069c0dbe46c19b54d664618a6eed08a448f77ffd4dfa3bcd6:log:16', 'hash': '0x05e800dc6c19e73069c0dbe46c19b54d664618a6eed08a448f77ffd4dfa3bcd6', 'from': '0x916ed5586bb328e0ec1a428af060dc3d10919d84', 'to': '0x1b3e7bfbfa44b0ef5c089d77d8116efa86a2b546', 'value': 117.039519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x06f9e19f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T10:54:00.000Z'}}, {'blockNum': '0x7b4320', 'uniqueId': '0x65bf06cc388cd10962605161261829e286ea972e22d570db4bb3db6ef270c4fe:log:3', 'hash': '0x65bf06cc388cd10962605161261829e286ea972e22d570db4bb3db6ef270c4fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc59011eedd9e92e28917e1c1a3063be7ab12bb40', 'value': 531.751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1fb1e058', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T11:11:28.000Z'}}, {'blockNum': '0x7b436d', 'uniqueId': '0x872face1a16f7be5d14c5e0bcd09df332f5f1a35d928a04c0e20901b71008ff1:log:5', 'hash': '0x872face1a16f7be5d14c5e0bcd09df332f5f1a35d928a04c0e20901b71008ff1', 'from': '0x43e797430f72b71485890633f8799c97ef240e9d', 'to': '0x1261a178252541d4fa6c9b038717a3af998af34c', 'value': 2799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa6d559c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T11:30:50.000Z'}}, {'blockNum': '0x7b43bd', 'uniqueId': '0x9a8c4469b6067654662582e2dc9955a180f84c318fabef9a575714757332c7eb:log:10', 'hash': '0x9a8c4469b6067654662582e2dc9955a180f84c318fabef9a575714757332c7eb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x953d4de9dce393baa10bfb6c29ef7bc355d7da3d', 'value': 173.271018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0a53e7ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T11:48:36.000Z'}}, {'blockNum': '0x7b43f9', 'uniqueId': '0x45e8bdaaf4702b4e67c45172374722bbfe85646a927f10b6edcfe34273e6dd3f:log:1', 'hash': '0x45e8bdaaf4702b4e67c45172374722bbfe85646a927f10b6edcfe34273e6dd3f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x565e588ce415676bb1e3bced043f4c7b263a3a78', 'value': 149.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08e62320', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T12:03:05.000Z'}}, {'blockNum': '0x7b441f', 'uniqueId': '0xef752f89a0eb8cc963709912f9ad76573fe4ce2692e173033f21d073b2123ec8:log:14', 'hash': '0xef752f89a0eb8cc963709912f9ad76573fe4ce2692e173033f21d073b2123ec8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x161bc95341d33f05d4ff304b42bce621b07dd2af', 'value': 4212.067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xfb0f0ab8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T12:11:56.000Z'}}, {'blockNum': '0x7b4476', 'uniqueId': '0xeb96ad6a63bdf0005b5db210ed8c1e01a3fea45c5bef9c4a682ee670be84c32a:log:3', 'hash': '0xeb96ad6a63bdf0005b5db210ed8c1e01a3fea45c5bef9c4a682ee670be84c32a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 62097.783812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e7550fc04', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T12:32:21.000Z'}}, {'blockNum': '0x7b44c2', 'uniqueId': '0x52d8bef1d0d60d036cc16fc71db810067162e0368383a8dcf5a43f145344b7eb:log:32', 'hash': '0x52d8bef1d0d60d036cc16fc71db810067162e0368383a8dcf5a43f145344b7eb', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62097.783812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e7550fc04', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T12:49:14.000Z'}}, {'blockNum': '0x7b44d0', 'uniqueId': '0x9c17cbbb7f4f5c90b394cb2ceb97c6b2ac16cf3ca5c3c62112c36f4231ddc373:log:17', 'hash': '0x9c17cbbb7f4f5c90b394cb2ceb97c6b2ac16cf3ca5c3c62112c36f4231ddc373', 'from': '0xfd5ed7de258745d1d027edce1328525a9541dbc6', 'to': '0x1ca64d12c404d809bb5850d6597c83fd6c3c8385', 'value': 215.353869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0cd60a0d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T12:51:12.000Z'}}, {'blockNum': '0x7b44e0', 'uniqueId': '0x404345a642a477b34fc8f4583ed1d02f1df2d448e71d01e517058aec3962963b:log:19', 'hash': '0x404345a642a477b34fc8f4583ed1d02f1df2d448e71d01e517058aec3962963b', 'from': '0x1ca64d12c404d809bb5850d6597c83fd6c3c8385', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 215.353869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0cd60a0d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T12:54:42.000Z'}}, {'blockNum': '0x7b44e1', 'uniqueId': '0xb212e2a1932383c197e32889d579f3e7b0e1147b995725b8180f2942c6080f76:log:10', 'hash': '0xb212e2a1932383c197e32889d579f3e7b0e1147b995725b8180f2942c6080f76', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5a0a17c447640d2a1566d1e37294503dcc4c4126', 'value': 12194.776415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02d6dd855f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T12:54:48.000Z'}}, {'blockNum': '0x7b44f6', 'uniqueId': '0xb920ed1357ce06fa612157f90ed68ed0daaacaa7c5b8855283dd0725deac623b:log:49', 'hash': '0xb920ed1357ce06fa612157f90ed68ed0daaacaa7c5b8855283dd0725deac623b', 'from': '0x5a0a17c447640d2a1566d1e37294503dcc4c4126', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12194.776415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02d6dd855f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T12:58:52.000Z'}}, {'blockNum': '0x7b4518', 'uniqueId': '0xf014aa7b569cbad4a9a65b43aa63fd5c0a6929a58e7b33bd11d76c42a5f92e40:log:54', 'hash': '0xf014aa7b569cbad4a9a65b43aa63fd5c0a6929a58e7b33bd11d76c42a5f92e40', 'from': '0x1261a178252541d4fa6c9b038717a3af998af34c', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa6d559c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T13:05:44.000Z'}}, {'blockNum': '0x7b4533', 'uniqueId': '0x46c8bfcf7ecb4752acdc1e6684d19bdbe405acd9f24bb32e38ebde722772c778:log:16', 'hash': '0x46c8bfcf7ecb4752acdc1e6684d19bdbe405acd9f24bb32e38ebde722772c778', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x03bc78877e99380ef123213532e4672c8e6c845b', 'value': 315.276867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x12cabe43', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T13:13:18.000Z'}}, {'blockNum': '0x7b45d4', 'uniqueId': '0x01afd9a841d84cec969dfc83356333b40cf7e6fc16b9b2e7fb3bb583d8ea97d8:log:4', 'hash': '0x01afd9a841d84cec969dfc83356333b40cf7e6fc16b9b2e7fb3bb583d8ea97d8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x486fc9ed75e094609d39aa11d2bb19fb471555eb', 'value': 108.85997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x067d1242', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T13:51:32.000Z'}}, {'blockNum': '0x7b4684', 'uniqueId': '0x41ec00645d5b763c2c4a4d3c8d775a3d6242f54068f3ae4dba53450bec6e6a2a:log:44', 'hash': '0x41ec00645d5b763c2c4a4d3c8d775a3d6242f54068f3ae4dba53450bec6e6a2a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x49ba7fc508488642e89a4878860306005e15d698', 'value': 1862.3125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6f00a234', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T14:27:29.000Z'}}, {'blockNum': '0x7b4691', 'uniqueId': '0x1b6fa38694ac99f577b6006f90d63e581665c2db26276de806e9a82fea68394b:log:148', 'hash': '0x1b6fa38694ac99f577b6006f90d63e581665c2db26276de806e9a82fea68394b', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1982.068714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x7623f7ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T14:31:46.000Z'}}, {'blockNum': '0x7b4691', 'uniqueId': '0x1b6fa38694ac99f577b6006f90d63e581665c2db26276de806e9a82fea68394b:log:152', 'hash': '0x1b6fa38694ac99f577b6006f90d63e581665c2db26276de806e9a82fea68394b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1982.068714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x7623f7ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T14:31:46.000Z'}}, {'blockNum': '0x7b4691', 'uniqueId': '0x1b6fa38694ac99f577b6006f90d63e581665c2db26276de806e9a82fea68394b:log:153', 'hash': '0x1b6fa38694ac99f577b6006f90d63e581665c2db26276de806e9a82fea68394b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1982.104504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x762483b8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T14:31:46.000Z'}}, {'blockNum': '0x7b4691', 'uniqueId': '0x1b6fa38694ac99f577b6006f90d63e581665c2db26276de806e9a82fea68394b:log:154', 'hash': '0x1b6fa38694ac99f577b6006f90d63e581665c2db26276de806e9a82fea68394b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1982.104504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x762483b8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T14:31:46.000Z'}}, {'blockNum': '0x7b46b4', 'uniqueId': '0x28a6ece5eff8de8b01a1ab9c0922d2c070be318f0cd3cbbbef390c8313584263:log:18', 'hash': '0x28a6ece5eff8de8b01a1ab9c0922d2c070be318f0cd3cbbbef390c8313584263', 'from': '0x49ba7fc508488642e89a4878860306005e15d698', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1862.3125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6f00a234', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T14:39:13.000Z'}}, {'blockNum': '0x7b46f5', 'uniqueId': '0xb2fef853996635b2d26203eb31947e89bfc75f508790ed7e358d49dc11781cec:log:71', 'hash': '0xb2fef853996635b2d26203eb31947e89bfc75f508790ed7e358d49dc11781cec', 'from': '0x9ac5cbdee315432e9ddeb39f8891a5fa47f105b6', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1175.732267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4614402b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T14:54:41.000Z'}}, {'blockNum': '0x7b4705', 'uniqueId': '0x92094be60bce3c3c7f1644cbd48a522c627ee6d90ff6da9ea1bdf6aadb37fe19:log:8', 'hash': '0x92094be60bce3c3c7f1644cbd48a522c627ee6d90ff6da9ea1bdf6aadb37fe19', 'from': '0x34e89fa78480a28e067439aca177248497147657', 'to': '0x20e2df0b52cbf21901099e0b281dfb1c9e697d11', 'value': 501.611277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1de5fb0d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T14:57:36.000Z'}}, {'blockNum': '0x7b470e', 'uniqueId': '0x5d758d9318a042b3b22e30ada541ed1501e759302718c76d7e3f5a0a29af52e1:log:2', 'hash': '0x5d758d9318a042b3b22e30ada541ed1501e759302718c76d7e3f5a0a29af52e1', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1175.732267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4614402b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T14:59:21.000Z'}}, {'blockNum': '0x7b4723', 'uniqueId': '0xac177de16a990154349a3c4d14c8c174db9a92ffcfc3a6ea18b4d233c1a1cf9f:log:15', 'hash': '0xac177de16a990154349a3c4d14c8c174db9a92ffcfc3a6ea18b4d233c1a1cf9f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc2407d2d3883e5c423783e32bf500d8217e7c2c1', 'value': 2161.588143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x80d737af', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:03:59.000Z'}}, {'blockNum': '0x7b4733', 'uniqueId': '0x0a28c432f0da0167e61006503b3216ced35d265a846622ab0f0789b5b3a49976:log:86', 'hash': '0x0a28c432f0da0167e61006503b3216ced35d265a846622ab0f0789b5b3a49976', 'from': '0x409b512e1cf94500877c5353b2a0c13b2d24914f', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 68.708452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04186864', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:07:07.000Z'}}, {'blockNum': '0x7b4733', 'uniqueId': '0x0a28c432f0da0167e61006503b3216ced35d265a846622ab0f0789b5b3a49976:log:88', 'hash': '0x0a28c432f0da0167e61006503b3216ced35d265a846622ab0f0789b5b3a49976', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 68.708452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04186864', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:07:07.000Z'}}, {'blockNum': '0x7b4738', 'uniqueId': '0x9f48a6da8fa5efbf30155fcf095e75c5d524d0b1dfd2f9643ead7df33ef55dfb:log:16', 'hash': '0x9f48a6da8fa5efbf30155fcf095e75c5d524d0b1dfd2f9643ead7df33ef55dfb', 'from': '0x20e2df0b52cbf21901099e0b281dfb1c9e697d11', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 501.611277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1de5fb0d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:09:20.000Z'}}, {'blockNum': '0x7b4755', 'uniqueId': '0x5e75025c9ce8ace239ab036c5cbccfa2103112b460215311d186503bc95f97d2:log:138', 'hash': '0x5e75025c9ce8ace239ab036c5cbccfa2103112b460215311d186503bc95f97d2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8649e7330e4674acc9f1c892ceb4e7a6e3a033a6', 'value': 186.478784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0b1d70c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:15:59.000Z'}}, {'blockNum': '0x7b4763', 'uniqueId': '0xb75563a88cb7444c632257c0321941aff33ff569caa930586032b7029c297fc6:log:4', 'hash': '0xb75563a88cb7444c632257c0321941aff33ff569caa930586032b7029c297fc6', 'from': '0xbef6490676072a1d68b1f1295cfa0e54f6942753', 'to': '0x650d71074a6797f9cfd9a984cc4473ef0f73440d', 'value': 736.501286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2be61e26', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:20:47.000Z'}}, {'blockNum': '0x7b477c', 'uniqueId': '0x58042d9b4683cc3ad9477de22552f8b3639f3ba097e309941d6e81ea9ac87ed6:log:79', 'hash': '0x58042d9b4683cc3ad9477de22552f8b3639f3ba097e309941d6e81ea9ac87ed6', 'from': '0x650d71074a6797f9cfd9a984cc4473ef0f73440d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 736.501286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2be61e26', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:28:35.000Z'}}, {'blockNum': '0x7b47b8', 'uniqueId': '0x029686bc57661130c9c9edb5d5e32ba324178eb28eca7295aa2325781f144fdc:log:17', 'hash': '0x029686bc57661130c9c9edb5d5e32ba324178eb28eca7295aa2325781f144fdc', 'from': '0xdd7ebfd96ed480b5193df060bba8813b3469c4ff', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 20302.514317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04ba1fc88d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:39:14.000Z'}}, {'blockNum': '0x7b47cd', 'uniqueId': '0x7232055c04d78f28d164448eed872798b24f9569e0d37eeae4e6a44484f59fe5:log:20', 'hash': '0x7232055c04d78f28d164448eed872798b24f9569e0d37eeae4e6a44484f59fe5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf83eedf279ad1748efcd148f73999752b426e7c3', 'value': 982.311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3a8ce058', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:45:00.000Z'}}, {'blockNum': '0x7b47d6', 'uniqueId': '0xc2717d637a34daedcc82b0a1272403d509386eba5684b6dd5c4f5b21810d3f43:log:46', 'hash': '0xc2717d637a34daedcc82b0a1272403d509386eba5684b6dd5c4f5b21810d3f43', 'from': '0xb0b12be1915108c030d409b76dd7e7eb001bc265', 'to': '0xddb19ea4d43be8f9003b9c81cef1f4cdfc347d76', 'value': 1343.732795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5017bc3b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:46:47.000Z'}}, {'blockNum': '0x7b47da', 'uniqueId': '0xa33099f232a35b0a7532c58e4b6555097dd23f4dedb4b1393cb14b91efd2c4ae:log:19', 'hash': '0xa33099f232a35b0a7532c58e4b6555097dd23f4dedb4b1393cb14b91efd2c4ae', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf76c14d259d56afe02c6dabab592b23671f5ba6b', 'value': 392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x175d7200', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:48:03.000Z'}}, {'blockNum': '0x7b47dd', 'uniqueId': '0xea6b2e7bc82f031470acccff169f6b8446ed9a29abd67fd44fcb017d233fcceb:log:24', 'hash': '0xea6b2e7bc82f031470acccff169f6b8446ed9a29abd67fd44fcb017d233fcceb', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20302.514317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04ba1fc88d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:48:48.000Z'}}, {'blockNum': '0x7b47e8', 'uniqueId': '0xf22e4f91121544f98c4e71014ce80fd881c543bc8f5c52e67e5e6d58e4a123d2:log:12', 'hash': '0xf22e4f91121544f98c4e71014ce80fd881c543bc8f5c52e67e5e6d58e4a123d2', 'from': '0xddb19ea4d43be8f9003b9c81cef1f4cdfc347d76', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1343.732795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5017bc3b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:51:54.000Z'}}, {'blockNum': '0x7b47ff', 'uniqueId': '0x007b81304f8592705b161cade8511d0a53a7eaa9f6ebfc8f0f19249f25f57121:log:74', 'hash': '0x007b81304f8592705b161cade8511d0a53a7eaa9f6ebfc8f0f19249f25f57121', 'from': '0xf83eedf279ad1748efcd148f73999752b426e7c3', 'to': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'value': 982.311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3a8ce058', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T15:56:58.000Z'}}, {'blockNum': '0x7b4815', 'uniqueId': '0x5b0c2cb94259c64769c7a9d92c453e495916bc70757397c29a2e8e7b3902ca8f:log:35', 'hash': '0x5b0c2cb94259c64769c7a9d92c453e495916bc70757397c29a2e8e7b3902ca8f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 2100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x7d2b7500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T16:03:02.000Z'}}, {'blockNum': '0x7b4847', 'uniqueId': '0x4234732d459e65ce9f39e9b4ba4ddd1cce7e26a7f5e8c394cbf0172856179bf5:log:9', 'hash': '0x4234732d459e65ce9f39e9b4ba4ddd1cce7e26a7f5e8c394cbf0172856179bf5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe91f9d2a3ff16e8e33b56db3426b8fb2330190cd', 'value': 633.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x25bf6420', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T16:13:55.000Z'}}, {'blockNum': '0x7b48b7', 'uniqueId': '0x6a7053aa5c2d1b89e06e50fac00a7b4175070d4183325abf39d6dc2cd7bb6a34:log:0', 'hash': '0x6a7053aa5c2d1b89e06e50fac00a7b4175070d4183325abf39d6dc2cd7bb6a34', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 58638.526758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0da720e926', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T16:39:21.000Z'}}, {'blockNum': '0x7b48de', 'uniqueId': '0x72a9b495ee242c05d14f90c57f9365f18409a6d3fb66c70b18ab5337619d2c7c:log:1', 'hash': '0x72a9b495ee242c05d14f90c57f9365f18409a6d3fb66c70b18ab5337619d2c7c', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58638.526758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0da720e926', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T16:49:04.000Z'}}, {'blockNum': '0x7b48e0', 'uniqueId': '0x88955fde0c04d3bb0edfa0d5a452b646bee78a7ff4c7ff230c8d4db1123363c6:log:18', 'hash': '0x88955fde0c04d3bb0edfa0d5a452b646bee78a7ff4c7ff230c8d4db1123363c6', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2208.630391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x83a50677', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T16:49:14.000Z'}}, {'blockNum': '0x7b48e0', 'uniqueId': '0x88955fde0c04d3bb0edfa0d5a452b646bee78a7ff4c7ff230c8d4db1123363c6:log:22', 'hash': '0x88955fde0c04d3bb0edfa0d5a452b646bee78a7ff4c7ff230c8d4db1123363c6', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 2208.630391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x83a50677', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T16:49:14.000Z'}}, {'blockNum': '0x7b4901', 'uniqueId': '0x5ca730ce80616a26605512d1110527d1992ada992b57a3081c8327ca0861dc54:log:4', 'hash': '0x5ca730ce80616a26605512d1110527d1992ada992b57a3081c8327ca0861dc54', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a28cf41d69a05dc878fb86d0c78a1f2fcafd349', 'value': 409983.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5f74e8b1a0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T16:56:21.000Z'}}, {'blockNum': '0x7b4901', 'uniqueId': '0x539f80ac408f012beff254899298dbb59b9a4bb29d5d26d94a7da73848aaa148:log:17', 'hash': '0x539f80ac408f012beff254899298dbb59b9a4bb29d5d26d94a7da73848aaa148', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 25445.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05eca87720', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T16:56:21.000Z'}}, {'blockNum': '0x7b4927', 'uniqueId': '0x28124f8cb5ca371700af6b5ee4c275802732b68f5c70ebd9556bb7161b3911b8:log:22', 'hash': '0x28124f8cb5ca371700af6b5ee4c275802732b68f5c70ebd9556bb7161b3911b8', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 25445.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05eca87720', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:03:47.000Z'}}, {'blockNum': '0x7b4932', 'uniqueId': '0xfb2154025f9f323fc35c750637067683515dbd7afb2db32e63aa8e0ce87b4824:log:0', 'hash': '0xfb2154025f9f323fc35c750637067683515dbd7afb2db32e63aa8e0ce87b4824', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 260441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3ca37e4840', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:06:40.000Z'}}, {'blockNum': '0x7b493a', 'uniqueId': '0xd99f4bb5526a77a09ac0477543acf611c95d78b0edf46efc38a727c0846bc49d:log:31', 'hash': '0xd99f4bb5526a77a09ac0477543acf611c95d78b0edf46efc38a727c0846bc49d', 'from': '0x0a28cf41d69a05dc878fb86d0c78a1f2fcafd349', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 409983.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5f74e8b1a0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:08:38.000Z'}}, {'blockNum': '0x7b4941', 'uniqueId': '0x129651deaa6774d15340c58c867acdac54adc35e033f77d078d6ce5b3415edd6:log:2', 'hash': '0x129651deaa6774d15340c58c867acdac54adc35e033f77d078d6ce5b3415edd6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x451ca97942f781bee8d17800595461ff1b2b140e', 'value': 21.722301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x014b74bd', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:11:06.000Z'}}, {'blockNum': '0x7b494a', 'uniqueId': '0x7fe28049f008e1253ed7ef641ee58eb7a3406dc346bdb0d17d623fdb47809e60:log:0', 'hash': '0x7fe28049f008e1253ed7ef641ee58eb7a3406dc346bdb0d17d623fdb47809e60', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1bf08eb000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:14:01.000Z'}}, {'blockNum': '0x7b495b', 'uniqueId': '0x6828b29f1611cfdf99319157d86012475b2808400316dd143c57efa9c45b9b36:log:34', 'hash': '0x6828b29f1611cfdf99319157d86012475b2808400316dd143c57efa9c45b9b36', 'from': '0xd23f720ddd8e337ba97bd445c12ce7f8aa6a4e2a', 'to': '0x811a62bbbcca123c6fd47bb7d891435101243e3c', 'value': 3279.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xc3753b40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:16:36.000Z'}}, {'blockNum': '0x7b495d', 'uniqueId': '0x7459d5b818da67a361efbe69b5f6aac0ee758c8cbf8023b9a728d3264d114a69:log:78', 'hash': '0x7459d5b818da67a361efbe69b5f6aac0ee758c8cbf8023b9a728d3264d114a69', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 792.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2f3fa460', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:16:59.000Z'}}, {'blockNum': '0x7b495f', 'uniqueId': '0x403c925df688b4eec651a1f4d727e99c0259cebff938f3679251112165519d71:log:15', 'hash': '0x403c925df688b4eec651a1f4d727e99c0259cebff938f3679251112165519d71', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xf8fe452ec8a43e6857d8717fb5ab2dd19ec4ae77', 'value': 609.833371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2459519b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:17:16.000Z'}}, {'blockNum': '0x7b4968', 'uniqueId': '0x06ef39ce97d48b26d1e755a3de0e31a69d22787d881be84da710f670d82b20c0:log:21', 'hash': '0x06ef39ce97d48b26d1e755a3de0e31a69d22787d881be84da710f670d82b20c0', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1bf08eb000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:19:24.000Z'}}, {'blockNum': '0x7b4982', 'uniqueId': '0x7ad69ae34cd86977f44c680be6d98ce0f5204bb45104e054038d3b5bc076aded:log:41', 'hash': '0x7ad69ae34cd86977f44c680be6d98ce0f5204bb45104e054038d3b5bc076aded', 'from': '0x811a62bbbcca123c6fd47bb7d891435101243e3c', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 3279.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xc3753b40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:27:10.000Z'}}, {'blockNum': '0x7b4987', 'uniqueId': '0x24a8fc3eab762cdcf2b470d6fa5673c07474bae0921270770acc76e9a0168ad9:log:3', 'hash': '0x24a8fc3eab762cdcf2b470d6fa5673c07474bae0921270770acc76e9a0168ad9', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0165a0bc00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:27:55.000Z'}}, {'blockNum': '0x7b4989', 'uniqueId': '0x6106b404b21c7d00911b8b237e0bbd22c5c59453337fb49d10e33f23bd6c3007:log:64', 'hash': '0x6106b404b21c7d00911b8b237e0bbd22c5c59453337fb49d10e33f23bd6c3007', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'value': 1727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x66efedc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:28:15.000Z'}}, {'blockNum': '0x7b49a1', 'uniqueId': '0xe4dbaa77e3787d9533ebb85e0890fd9d00d66900cea00c3984d45f830fb3d0e5:log:117', 'hash': '0xe4dbaa77e3787d9533ebb85e0890fd9d00d66900cea00c3984d45f830fb3d0e5', 'from': '0xe583423663749c6009eee7c25929993ef1af6325', 'to': '0x34f9f1adc8108dd28289c56e7f766cec864ff878', 'value': 1613.458699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x602b6d0b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:33:54.000Z'}}, {'blockNum': '0x7b49aa', 'uniqueId': '0x641094cf817195cf5b2530a4e1d08c2f68b5d61381000c616953fc09b9583b81:log:20', 'hash': '0x641094cf817195cf5b2530a4e1d08c2f68b5d61381000c616953fc09b9583b81', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 250.99962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ef5f344', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:37:15.000Z'}}, {'blockNum': '0x7b49aa', 'uniqueId': '0x641094cf817195cf5b2530a4e1d08c2f68b5d61381000c616953fc09b9583b81:log:22', 'hash': '0x641094cf817195cf5b2530a4e1d08c2f68b5d61381000c616953fc09b9583b81', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x41b888be6e9dccf4316df7454176f75b72f640de', 'value': 250.99962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ef5f344', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:37:15.000Z'}}, {'blockNum': '0x7b49b1', 'uniqueId': '0x26f74c5814d3b85dc0a9f90444bd01d98251988d28503124c513c2591155385d:log:10', 'hash': '0x26f74c5814d3b85dc0a9f90444bd01d98251988d28503124c513c2591155385d', 'from': '0x34f9f1adc8108dd28289c56e7f766cec864ff878', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1613.458699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x602b6d0b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:38:59.000Z'}}, {'blockNum': '0x7b49c8', 'uniqueId': '0xb86370a8da6d62399cd2ab17cd8131d28c1bb1b87b0d6e6dec8c166f948ef41a:log:22', 'hash': '0xb86370a8da6d62399cd2ab17cd8131d28c1bb1b87b0d6e6dec8c166f948ef41a', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0165a0bc00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:43:24.000Z'}}, {'blockNum': '0x7b49cb', 'uniqueId': '0xc6263d21a3a0ac264bd9ca59c057c3f6f2beac7026d157fe32849085ed188f08:log:7', 'hash': '0xc6263d21a3a0ac264bd9ca59c057c3f6f2beac7026d157fe32849085ed188f08', 'from': '0xfd5ed7de258745d1d027edce1328525a9541dbc6', 'to': '0x1ca64d12c404d809bb5850d6597c83fd6c3c8385', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:43:57.000Z'}}, {'blockNum': '0x7b49d8', 'uniqueId': '0xb76655c3c9811a132b41652a14da3dc1f1118d9f39ea514602428677e375c03b:log:87', 'hash': '0xb76655c3c9811a132b41652a14da3dc1f1118d9f39ea514602428677e375c03b', 'from': '0x1ca64d12c404d809bb5850d6597c83fd6c3c8385', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T17:46:52.000Z'}}, {'blockNum': '0x7b4a2a', 'uniqueId': '0xa65cac7a942cd1d8982ef39355845466c9372c11587e0c792a703752170f57e3:log:8', 'hash': '0xa65cac7a942cd1d8982ef39355845466c9372c11587e0c792a703752170f57e3', 'from': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x66efedc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T18:05:39.000Z'}}, {'blockNum': '0x7b4a5e', 'uniqueId': '0x8944d8360037704557538181d29fdf40109f55df8d7fcb9fd783051f720f6b75:log:11', 'hash': '0x8944d8360037704557538181d29fdf40109f55df8d7fcb9fd783051f720f6b75', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0acbe43ba22286b68c111331263a788a498a261d', 'value': 80.736078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04cfef4e', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T18:15:31.000Z'}}, {'blockNum': '0x7b4a69', 'uniqueId': '0xd8627f5bb9f6134b0672009d2b10d7c322a2d5db7a7e2ff5464e9a16f57ea3e7:log:4', 'hash': '0xd8627f5bb9f6134b0672009d2b10d7c322a2d5db7a7e2ff5464e9a16f57ea3e7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4f375e6cbdbf861dd291c5ec96b97c7948313709', 'value': 364.084944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x15b37ed0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T18:17:45.000Z'}}, {'blockNum': '0x7b4a69', 'uniqueId': '0x51620ada9ed4f794c37f3a7ae9b36c1da869d91a2f1e0eb324ced787ba05edf8:log:5', 'hash': '0x51620ada9ed4f794c37f3a7ae9b36c1da869d91a2f1e0eb324ced787ba05edf8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc848f890c3eb3308a8d009cffccc03e9f28e2249', 'value': 2242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x85a23480', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T18:17:45.000Z'}}, {'blockNum': '0x7b4abc', 'uniqueId': '0x4f54dabf2305253c85231c9ea891dc86ad745b539b40a88f241bd2c6716d5b7e:log:38', 'hash': '0x4f54dabf2305253c85231c9ea891dc86ad745b539b40a88f241bd2c6716d5b7e', 'from': '0x08ab47f44f371c02f6792f2a9f4deee5ba9ec708', 'to': '0x1261a178252541d4fa6c9b038717a3af998af34c', 'value': 288.202686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x112d9fbe', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T18:34:26.000Z'}}, {'blockNum': '0x7b4b4e', 'uniqueId': '0xe7bb63ff2853cfbb5339ad18717d6db7fb1fcd9b23cc9f5415917588e807530e:log:61', 'hash': '0xe7bb63ff2853cfbb5339ad18717d6db7fb1fcd9b23cc9f5415917588e807530e', 'from': '0x1261a178252541d4fa6c9b038717a3af998af34c', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 288.202686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x112d9fbe', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:05:06.000Z'}}, {'blockNum': '0x7b4b7b', 'uniqueId': '0xd8e3abfd294433a72953f84aaa8163d624da2ce95b81476957a7f09d5976bf75:log:15', 'hash': '0xd8e3abfd294433a72953f84aaa8163d624da2ce95b81476957a7f09d5976bf75', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdfbc84ccac430f2c0455c437adf417095d7ad68e', 'value': 492.64071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1d5d19c6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:16:38.000Z'}}, {'blockNum': '0x7b4b82', 'uniqueId': '0x8eb75a518970fb3cc250ece2d859b1fdc85a4678f656183066ccc19bef93f999:log:1', 'hash': '0x8eb75a518970fb3cc250ece2d859b1fdc85a4678f656183066ccc19bef93f999', 'from': '0xdfbc84ccac430f2c0455c437adf417095d7ad68e', 'to': '0xbb54159f52631d94a247a2087bdcc1242f15b59b', 'value': 500.64071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1dd72bc6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:18:11.000Z'}}, {'blockNum': '0x7b4b90', 'uniqueId': '0x529051058f44f0c4f6333ec9e0b49c91185b1fef62331720ef373a9afe3d6c30:log:2', 'hash': '0x529051058f44f0c4f6333ec9e0b49c91185b1fef62331720ef373a9afe3d6c30', 'from': '0x2109facf247be8a45eb2873203332d4fe422574d', 'to': '0xf7842f00b87cc7e514bacc8ba6ab8b4a4e9828bd', 'value': 20000.295099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04a81c48bb', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:21:18.000Z'}}, {'blockNum': '0x7b4ba2', 'uniqueId': '0x413221f71643cc52d79b208a8dc8c04ecfcacb485db23fb5dc46c9bee844de2c:log:37', 'hash': '0x413221f71643cc52d79b208a8dc8c04ecfcacb485db23fb5dc46c9bee844de2c', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1635.368343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6179bd97', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:26:38.000Z'}}, {'blockNum': '0x7b4ba2', 'uniqueId': '0x413221f71643cc52d79b208a8dc8c04ecfcacb485db23fb5dc46c9bee844de2c:log:41', 'hash': '0x413221f71643cc52d79b208a8dc8c04ecfcacb485db23fb5dc46c9bee844de2c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1635.368343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6179bd97', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:26:38.000Z'}}, {'blockNum': '0x7b4ba2', 'uniqueId': '0x413221f71643cc52d79b208a8dc8c04ecfcacb485db23fb5dc46c9bee844de2c:log:42', 'hash': '0x413221f71643cc52d79b208a8dc8c04ecfcacb485db23fb5dc46c9bee844de2c', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1635.400494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x617a3b2e', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:26:38.000Z'}}, {'blockNum': '0x7b4ba2', 'uniqueId': '0x413221f71643cc52d79b208a8dc8c04ecfcacb485db23fb5dc46c9bee844de2c:log:43', 'hash': '0x413221f71643cc52d79b208a8dc8c04ecfcacb485db23fb5dc46c9bee844de2c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1635.400494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x617a3b2e', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:26:38.000Z'}}, {'blockNum': '0x7b4ba5', 'uniqueId': '0xf492457a3b91c98b0a4f41742a1a319f30d56e286196d94079622dd4381a6316:log:3', 'hash': '0xf492457a3b91c98b0a4f41742a1a319f30d56e286196d94079622dd4381a6316', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 62135.491798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e77905cd6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:26:59.000Z'}}, {'blockNum': '0x7b4ba9', 'uniqueId': '0x7c72962440f3e41d06f203d86149cd09b7208cc69fa6ffc63b97cbee5306afc2:log:52', 'hash': '0x7c72962440f3e41d06f203d86149cd09b7208cc69fa6ffc63b97cbee5306afc2', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1354.106266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x50b6059a', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:28:55.000Z'}}, {'blockNum': '0x7b4ba9', 'uniqueId': '0x7c72962440f3e41d06f203d86149cd09b7208cc69fa6ffc63b97cbee5306afc2:log:56', 'hash': '0x7c72962440f3e41d06f203d86149cd09b7208cc69fa6ffc63b97cbee5306afc2', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1354.106266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x50b6059a', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:28:55.000Z'}}, {'blockNum': '0x7b4ba9', 'uniqueId': '0x7c72962440f3e41d06f203d86149cd09b7208cc69fa6ffc63b97cbee5306afc2:log:57', 'hash': '0x7c72962440f3e41d06f203d86149cd09b7208cc69fa6ffc63b97cbee5306afc2', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1353.973012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x50b3fd14', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:28:55.000Z'}}, {'blockNum': '0x7b4ba9', 'uniqueId': '0x7c72962440f3e41d06f203d86149cd09b7208cc69fa6ffc63b97cbee5306afc2:log:58', 'hash': '0x7c72962440f3e41d06f203d86149cd09b7208cc69fa6ffc63b97cbee5306afc2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1353.973012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x50b3fd14', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:28:55.000Z'}}, {'blockNum': '0x7b4bb4', 'uniqueId': '0x81447f4b110efa245e1af8ab3e9c2874a257dde92a73ca11d8fe7eb4f752473e:log:1', 'hash': '0x81447f4b110efa245e1af8ab3e9c2874a257dde92a73ca11d8fe7eb4f752473e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x54a05beca0980a81cad84af07e9d8ef4dd1a9560', 'value': 858.648573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x332deffd', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:30:15.000Z'}}, {'blockNum': '0x7b4bbb', 'uniqueId': '0x2d923aef5a2a30d6a5c0e1486752a544d07a2a0b931d2d334c94189aaf80d982:log:95', 'hash': '0x2d923aef5a2a30d6a5c0e1486752a544d07a2a0b931d2d334c94189aaf80d982', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1512.163099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a21c71b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:31:44.000Z'}}, {'blockNum': '0x7b4bbb', 'uniqueId': '0x2d923aef5a2a30d6a5c0e1486752a544d07a2a0b931d2d334c94189aaf80d982:log:99', 'hash': '0x2d923aef5a2a30d6a5c0e1486752a544d07a2a0b931d2d334c94189aaf80d982', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1512.163099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a21c71b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:31:44.000Z'}}, {'blockNum': '0x7b4bbb', 'uniqueId': '0x2d923aef5a2a30d6a5c0e1486752a544d07a2a0b931d2d334c94189aaf80d982:log:100', 'hash': '0x2d923aef5a2a30d6a5c0e1486752a544d07a2a0b931d2d334c94189aaf80d982', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1512.19071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a2232f6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:31:44.000Z'}}, {'blockNum': '0x7b4bbb', 'uniqueId': '0x2d923aef5a2a30d6a5c0e1486752a544d07a2a0b931d2d334c94189aaf80d982:log:101', 'hash': '0x2d923aef5a2a30d6a5c0e1486752a544d07a2a0b931d2d334c94189aaf80d982', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1512.19071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a2232f6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:31:44.000Z'}}, {'blockNum': '0x7b4bbc', 'uniqueId': '0xc030d9a461c915bdafc8258e5a4b603bb1980aa2a235547e64ee224efb3c911f:log:1', 'hash': '0xc030d9a461c915bdafc8258e5a4b603bb1980aa2a235547e64ee224efb3c911f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 113000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1a4f532a00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:31:55.000Z'}}, {'blockNum': '0x7b4bc9', 'uniqueId': '0x7d17bce97b7018098a6be65bcff98071d415a934d21941e3fe166c27dbec62c2:log:2', 'hash': '0x7d17bce97b7018098a6be65bcff98071d415a934d21941e3fe166c27dbec62c2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x13e265c7eadcac3d942f87f77df5598acacef496', 'value': 416.866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x18d8ded0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:35:17.000Z'}}, {'blockNum': '0x7b4bcf', 'uniqueId': '0xfa4e6b4632c0752ce87eaf56822cc99bcc2045517b14e1be30aae7ea4d9ded5e:log:27', 'hash': '0xfa4e6b4632c0752ce87eaf56822cc99bcc2045517b14e1be30aae7ea4d9ded5e', 'from': '0xe0c76f8287114cc7198f74eaa8cc839bb2640f5e', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 1484.26409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5878129a', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:36:58.000Z'}}, {'blockNum': '0x7b4bdc', 'uniqueId': '0xf2a3f1419d4d1ac00a388f9ba8c86bc883974e1a519489f0542529f7269a0d53:log:17', 'hash': '0xf2a3f1419d4d1ac00a388f9ba8c86bc883974e1a519489f0542529f7269a0d53', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1a4f532a00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:38:52.000Z'}}, {'blockNum': '0x7b4bdc', 'uniqueId': '0x0f75edfef2ac2629296f23a48b01c3be1c5225f8a6cb7e2b41205663783a818d:log:21', 'hash': '0x0f75edfef2ac2629296f23a48b01c3be1c5225f8a6cb7e2b41205663783a818d', 'from': '0x54a05beca0980a81cad84af07e9d8ef4dd1a9560', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 858.648573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x332deffd', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:38:52.000Z'}}, {'blockNum': '0x7b4bdc', 'uniqueId': '0x3d84e92c561c5c373b54650acf4259e326b36eefc6cca9de133828d84ee8495a:log:22', 'hash': '0x3d84e92c561c5c373b54650acf4259e326b36eefc6cca9de133828d84ee8495a', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62135.491798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e77905cd6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:38:52.000Z'}}, {'blockNum': '0x7b4be7', 'uniqueId': '0xde8256d2dfb4438e8e5c8e6b4585567a655a86dd8f21b1cd50fc4385e94bbdb6:log:5', 'hash': '0xde8256d2dfb4438e8e5c8e6b4585567a655a86dd8f21b1cd50fc4385e94bbdb6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 32180.005704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x077e13eb48', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:42:07.000Z'}}, {'blockNum': '0x7b4c09', 'uniqueId': '0xb0cf02fee727bf2adde20edad5150a277075b4f2a1a0e97906398dfa7c0f91db:log:16', 'hash': '0xb0cf02fee727bf2adde20edad5150a277075b4f2a1a0e97906398dfa7c0f91db', 'from': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1484.26409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5878129a', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:49:34.000Z'}}, {'blockNum': '0x7b4c29', 'uniqueId': '0x64bc64b4b8f7a43d6d770d4e2d1303ff97836bcabadd1704f98c49d33de580b8:log:58', 'hash': '0x64bc64b4b8f7a43d6d770d4e2d1303ff97836bcabadd1704f98c49d33de580b8', 'from': '0x7284233afb4549e90be628f2ea70e0ae8526eddf', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 159.801591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x098660f7', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:58:20.000Z'}}, {'blockNum': '0x7b4c2a', 'uniqueId': '0x44d2893b2fd2e0c80682ee2f972fccdcea362062aebb83835642282ea8d73474:log:2', 'hash': '0x44d2893b2fd2e0c80682ee2f972fccdcea362062aebb83835642282ea8d73474', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 32180.005704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x077e13eb48', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T19:59:08.000Z'}}, {'blockNum': '0x7b4c5d', 'uniqueId': '0xcc30020b2b6f72f8490bba015a0fc80566bc07a074a36531634edd274aad13ec:log:0', 'hash': '0xcc30020b2b6f72f8490bba015a0fc80566bc07a074a36531634edd274aad13ec', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x03bc78877e99380ef123213532e4672c8e6c845b', 'value': 251.359101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0efb6f7d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:07:58.000Z'}}, {'blockNum': '0x7b4cbd', 'uniqueId': '0xa1db5b3809e13123f1c08896bb1de3b0ce207ff54dec25278ea55a28bed38d02:log:51', 'hash': '0xa1db5b3809e13123f1c08896bb1de3b0ce207ff54dec25278ea55a28bed38d02', 'from': '0x8901f85e8a1c309a647c8bffe50b1e71e537856a', 'to': '0xe90480ffd3414e426a236ef96b570ddd20b86f19', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:30:29.000Z'}}, {'blockNum': '0x7b4cd0', 'uniqueId': '0x163c886de72584af93eb3812f67b911bf83ba2a192f58bd2ad61107f0cec76c1:log:32', 'hash': '0x163c886de72584af93eb3812f67b911bf83ba2a192f58bd2ad61107f0cec76c1', 'from': '0xfd5ed7de258745d1d027edce1328525a9541dbc6', 'to': '0x1ca64d12c404d809bb5850d6597c83fd6c3c8385', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:34:48.000Z'}}, {'blockNum': '0x7b4cd3', 'uniqueId': '0xbb025103d90833f7f43f687a7d44f3ce43e5683354ccacbb067d1287d4d28026:log:104', 'hash': '0xbb025103d90833f7f43f687a7d44f3ce43e5683354ccacbb067d1287d4d28026', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1343.798141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5018bb7d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:36:03.000Z'}}, {'blockNum': '0x7b4cd3', 'uniqueId': '0xbb025103d90833f7f43f687a7d44f3ce43e5683354ccacbb067d1287d4d28026:log:108', 'hash': '0xbb025103d90833f7f43f687a7d44f3ce43e5683354ccacbb067d1287d4d28026', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1343.798141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5018bb7d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:36:03.000Z'}}, {'blockNum': '0x7b4cd3', 'uniqueId': '0xbb025103d90833f7f43f687a7d44f3ce43e5683354ccacbb067d1287d4d28026:log:109', 'hash': '0xbb025103d90833f7f43f687a7d44f3ce43e5683354ccacbb067d1287d4d28026', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1343.784915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x501887d3', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:36:03.000Z'}}, {'blockNum': '0x7b4cd3', 'uniqueId': '0xbb025103d90833f7f43f687a7d44f3ce43e5683354ccacbb067d1287d4d28026:log:110', 'hash': '0xbb025103d90833f7f43f687a7d44f3ce43e5683354ccacbb067d1287d4d28026', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1343.784915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x501887d3', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:36:03.000Z'}}, {'blockNum': '0x7b4cdf', 'uniqueId': '0x6e7e7e17beaea425c8c7935031eaa7f12263b1368c5ddf4e348100bd399c8f0e:log:28', 'hash': '0x6e7e7e17beaea425c8c7935031eaa7f12263b1368c5ddf4e348100bd399c8f0e', 'from': '0xdd7ebfd96ed480b5193df060bba8813b3469c4ff', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 6756.618594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0192b9d162', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:37:51.000Z'}}, {'blockNum': '0x7b4ce3', 'uniqueId': '0x5e1ff59142b221210432b722a800a496c6e9c29a22beeb28dde04a3d4e38a167:log:5', 'hash': '0x5e1ff59142b221210432b722a800a496c6e9c29a22beeb28dde04a3d4e38a167', 'from': '0x1ca64d12c404d809bb5850d6597c83fd6c3c8385', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:38:41.000Z'}}, {'blockNum': '0x7b4ce3', 'uniqueId': '0x9fb02795cadbd4a56810d1a4eed8cabc20a6fcf6f8ca5e49ee59148d885bd76f:log:22', 'hash': '0x9fb02795cadbd4a56810d1a4eed8cabc20a6fcf6f8ca5e49ee59148d885bd76f', 'from': '0xe90480ffd3414e426a236ef96b570ddd20b86f19', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:38:41.000Z'}}, {'blockNum': '0x7b4ce5', 'uniqueId': '0x215aeebff7a056de1ddc116b7893d3249bc453289f766d6f154896fec988b605:log:15', 'hash': '0x215aeebff7a056de1ddc116b7893d3249bc453289f766d6f154896fec988b605', 'from': '0x6299e748bcfce89d7f37bead43bbc6009df79ec4', 'to': '0x9e6c2690da4aff5d4b7dcffbe5289e74e018e49d', 'value': 205.999653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0c474e25', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:39:19.000Z'}}, {'blockNum': '0x7b4cef', 'uniqueId': '0x04be78b4fb54e8b5ec33ec1e981638df824d6e6108dbec72e17fe95d768c03a5:log:2', 'hash': '0x04be78b4fb54e8b5ec33ec1e981638df824d6e6108dbec72e17fe95d768c03a5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdfbc84ccac430f2c0455c437adf417095d7ad68e', 'value': 1441.835685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x55f0aaa5', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:40:54.000Z'}}, {'blockNum': '0x7b4cf0', 'uniqueId': '0xe0ba318c73f8b669e57ece53bd7d2ac73300fb931c3f4d2267009a2d8d64d731:log:3', 'hash': '0xe0ba318c73f8b669e57ece53bd7d2ac73300fb931c3f4d2267009a2d8d64d731', 'from': '0xdfbc84ccac430f2c0455c437adf417095d7ad68e', 'to': '0x16d6b270f8d92952b66cfdf578f6cbcebf02000a', 'value': 1449.835685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x566abca5', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:41:02.000Z'}}, {'blockNum': '0x7b4d14', 'uniqueId': '0xa223782ebe31431e3002db4f9006ff075b80c8a54910d3417959c144ee42ed12:log:2', 'hash': '0xa223782ebe31431e3002db4f9006ff075b80c8a54910d3417959c144ee42ed12', 'from': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6916.420185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x019c403259', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T20:49:08.000Z'}}, {'blockNum': '0x7b4d47', 'uniqueId': '0x4766458f7abf239209a5972f991bb65e1e0b7e129e17c0a8f71aff32a825e7cd:log:12', 'hash': '0x4766458f7abf239209a5972f991bb65e1e0b7e129e17c0a8f71aff32a825e7cd', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4837.436364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0120556bcc', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:00:37.000Z'}}, {'blockNum': '0x7b4d47', 'uniqueId': '0x4766458f7abf239209a5972f991bb65e1e0b7e129e17c0a8f71aff32a825e7cd:log:16', 'hash': '0x4766458f7abf239209a5972f991bb65e1e0b7e129e17c0a8f71aff32a825e7cd', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 4837.436364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0120556bcc', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:00:37.000Z'}}, {'blockNum': '0x7b4d47', 'uniqueId': '0x71432d28104faeddafe3058c396660a51d4adea48ff0d519bace91ebc91340c6:log:27', 'hash': '0x71432d28104faeddafe3058c396660a51d4adea48ff0d519bace91ebc91340c6', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4993.324927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0129a0177f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:00:37.000Z'}}, {'blockNum': '0x7b4d47', 'uniqueId': '0x71432d28104faeddafe3058c396660a51d4adea48ff0d519bace91ebc91340c6:log:31', 'hash': '0x71432d28104faeddafe3058c396660a51d4adea48ff0d519bace91ebc91340c6', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 4993.324927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0129a0177f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:00:37.000Z'}}, {'blockNum': '0x7b4d47', 'uniqueId': '0xc5f9e58e7f1f9411602aa2b37131555a0876f1e08b11d169391710aca20b5cf8:log:35', 'hash': '0xc5f9e58e7f1f9411602aa2b37131555a0876f1e08b11d169391710aca20b5cf8', 'from': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4836.95262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01204e0a2c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:00:37.000Z'}}, {'blockNum': '0x7b4d47', 'uniqueId': '0xc5f9e58e7f1f9411602aa2b37131555a0876f1e08b11d169391710aca20b5cf8:log:37', 'hash': '0xc5f9e58e7f1f9411602aa2b37131555a0876f1e08b11d169391710aca20b5cf8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 4836.95262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01204e0a2c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:00:37.000Z'}}, {'blockNum': '0x7b4d48', 'uniqueId': '0x4ece16e8ee7cc0cf4d9e389ecaed926955d404124eba72d0bd7f3a7274e53ba7:log:10', 'hash': '0x4ece16e8ee7cc0cf4d9e389ecaed926955d404124eba72d0bd7f3a7274e53ba7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 25782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0600ba1980', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:00:49.000Z'}}, {'blockNum': '0x7b4d49', 'uniqueId': '0xada70996e00d904e20aa8bd88027ce6effdcd90263ea8f8f69bec6119d52a112:log:49', 'hash': '0xada70996e00d904e20aa8bd88027ce6effdcd90263ea8f8f69bec6119d52a112', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2636.743757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9d29844d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:23.000Z'}}, {'blockNum': '0x7b4d49', 'uniqueId': '0xada70996e00d904e20aa8bd88027ce6effdcd90263ea8f8f69bec6119d52a112:log:53', 'hash': '0xada70996e00d904e20aa8bd88027ce6effdcd90263ea8f8f69bec6119d52a112', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2636.743757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9d29844d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:23.000Z'}}, {'blockNum': '0x7b4d49', 'uniqueId': '0x6c4538a8cc7d3e5c1b5e7c190f69612d1b274bc0316eb67ff89e9d65dc9310dc:log:72', 'hash': '0x6c4538a8cc7d3e5c1b5e7c190f69612d1b274bc0316eb67ff89e9d65dc9310dc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2667.679881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9f019089', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:23.000Z'}}, {'blockNum': '0x7b4d49', 'uniqueId': '0x6c4538a8cc7d3e5c1b5e7c190f69612d1b274bc0316eb67ff89e9d65dc9310dc:log:74', 'hash': '0x6c4538a8cc7d3e5c1b5e7c190f69612d1b274bc0316eb67ff89e9d65dc9310dc', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 2667.679881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9f019089', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:23.000Z'}}, {'blockNum': '0x7b4d49', 'uniqueId': '0x6c4538a8cc7d3e5c1b5e7c190f69612d1b274bc0316eb67ff89e9d65dc9310dc:log:79', 'hash': '0x6c4538a8cc7d3e5c1b5e7c190f69612d1b274bc0316eb67ff89e9d65dc9310dc', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2667.679881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9f019089', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:23.000Z'}}, {'blockNum': '0x7b4d49', 'uniqueId': '0x6c4538a8cc7d3e5c1b5e7c190f69612d1b274bc0316eb67ff89e9d65dc9310dc:log:81', 'hash': '0x6c4538a8cc7d3e5c1b5e7c190f69612d1b274bc0316eb67ff89e9d65dc9310dc', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2667.679881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9f019089', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:23.000Z'}}, {'blockNum': '0x7b4d49', 'uniqueId': '0x39bb50d8e50e42694765fc93278a2fbc1c2309a21585bf888eb34dafc4d4a17e:log:111', 'hash': '0x39bb50d8e50e42694765fc93278a2fbc1c2309a21585bf888eb34dafc4d4a17e', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 264.770565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0fc81405', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:23.000Z'}}, {'blockNum': '0x7b4d49', 'uniqueId': '0x39bb50d8e50e42694765fc93278a2fbc1c2309a21585bf888eb34dafc4d4a17e:log:115', 'hash': '0x39bb50d8e50e42694765fc93278a2fbc1c2309a21585bf888eb34dafc4d4a17e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 264.770565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0fc81405', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:23.000Z'}}, {'blockNum': '0x7b4d49', 'uniqueId': '0xe62d564adda77553c97d170a944145ac896a9e438a4c61ff754053a766e2e771:log:139', 'hash': '0xe62d564adda77553c97d170a944145ac896a9e438a4c61ff754053a766e2e771', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xdf8efb8a522561ea9bd8c55874dca4536ee5c618', 'value': 6430.41538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x017f485a14', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:23.000Z'}}, {'blockNum': '0x7b4d4a', 'uniqueId': '0xc12866a6cffb8defafeabf82b7c982222764bde590247d63c7f1c02101b09dc8:log:0', 'hash': '0xc12866a6cffb8defafeabf82b7c982222764bde590247d63c7f1c02101b09dc8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 6570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01879a3e80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:24.000Z'}}, {'blockNum': '0x7b4d4a', 'uniqueId': '0xc84afcd2e2a443795367c1258fc926f642856f9bffc2152cd0cbd457d2c60586:log:1', 'hash': '0xc84afcd2e2a443795367c1258fc926f642856f9bffc2152cd0cbd457d2c60586', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 42930.573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09fedc8ec8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:24.000Z'}}, {'blockNum': '0x7b4d4a', 'uniqueId': '0xb0fe12564c89a2ea4d8ecc6059ad37fb2c1e2b4f478927736648368fd4ea1e93:log:2', 'hash': '0xb0fe12564c89a2ea4d8ecc6059ad37fb2c1e2b4f478927736648368fd4ea1e93', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 60290.371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e09960db8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:24.000Z'}}, {'blockNum': '0x7b4d4a', 'uniqueId': '0x6ca3062d63248babbcbfd67a289c9ad87d2237f81296c67c8fba92edf9ebd950:log:17', 'hash': '0x6ca3062d63248babbcbfd67a289c9ad87d2237f81296c67c8fba92edf9ebd950', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 2390.251319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x8e785737', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:24.000Z'}}, {'blockNum': '0x7b4d4a', 'uniqueId': '0x93c3846a7a1218bdde1b4eac5b3032d48da19f7a6831e3db68f8ec083bf7246b:log:18', 'hash': '0x93c3846a7a1218bdde1b4eac5b3032d48da19f7a6831e3db68f8ec083bf7246b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1727.801969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x66fc2a71', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:24.000Z'}}, {'blockNum': '0x7b4d4b', 'uniqueId': '0xd0d72399de413e0a6cb2538bf834182f0f80edd56e73fac9349a774948e2e57b:log:4', 'hash': '0xd0d72399de413e0a6cb2538bf834182f0f80edd56e73fac9349a774948e2e57b', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x14781b75f698b66acebc9abc2ff89343991eded1', 'value': 2636.743757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9d29844d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:43.000Z'}}, {'blockNum': '0x7b4d4b', 'uniqueId': '0x45cd2a07f0b146673e1d32ca5e3624479941ff25d8ce0e5a83c9bc817f2c446a:log:29', 'hash': '0x45cd2a07f0b146673e1d32ca5e3624479941ff25d8ce0e5a83c9bc817f2c446a', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5101.080946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01300c5172', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:43.000Z'}}, {'blockNum': '0x7b4d4b', 'uniqueId': '0x45cd2a07f0b146673e1d32ca5e3624479941ff25d8ce0e5a83c9bc817f2c446a:log:33', 'hash': '0x45cd2a07f0b146673e1d32ca5e3624479941ff25d8ce0e5a83c9bc817f2c446a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 5101.080946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01300c5172', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:43.000Z'}}, {'blockNum': '0x7b4d4b', 'uniqueId': '0x2d23c4aeda25696ef2ee0308620d9e66f72b3a0a95e89674d905e5a29ab4edc0:log:44', 'hash': '0x2d23c4aeda25696ef2ee0308620d9e66f72b3a0a95e89674d905e5a29ab4edc0', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 12749.570326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02f7ef0116', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:43.000Z'}}, {'blockNum': '0x7b4d4b', 'uniqueId': '0x2d23c4aeda25696ef2ee0308620d9e66f72b3a0a95e89674d905e5a29ab4edc0:log:48', 'hash': '0x2d23c4aeda25696ef2ee0308620d9e66f72b3a0a95e89674d905e5a29ab4edc0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 12749.570326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02f7ef0116', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:43.000Z'}}, {'blockNum': '0x7b4d4b', 'uniqueId': '0x0523e81e11e40f70a8e9ea72c23f035c3b6ee5d6457268bd3ffa2bb142e00204:log:83', 'hash': '0x0523e81e11e40f70a8e9ea72c23f035c3b6ee5d6457268bd3ffa2bb142e00204', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 6277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0176236b40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:01:43.000Z'}}, {'blockNum': '0x7b4d4d', 'uniqueId': '0x07b4ae5f6f3d59786ecf8ab58785454840f3cc64f130a38a8e0ae7a80f447c47:log:0', 'hash': '0x07b4ae5f6f3d59786ecf8ab58785454840f3cc64f130a38a8e0ae7a80f447c47', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 116782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1b30bfe780', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:07.000Z'}}, {'blockNum': '0x7b4d4d', 'uniqueId': '0x05caf32c2a630c6a6d53bc0caa0452271dfde4b8a24aec1374d1c2c2a01caa8e:log:13', 'hash': '0x05caf32c2a630c6a6d53bc0caa0452271dfde4b8a24aec1374d1c2c2a01caa8e', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5101.080946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01300c5172', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:07.000Z'}}, {'blockNum': '0x7b4d4d', 'uniqueId': '0x05caf32c2a630c6a6d53bc0caa0452271dfde4b8a24aec1374d1c2c2a01caa8e:log:15', 'hash': '0x05caf32c2a630c6a6d53bc0caa0452271dfde4b8a24aec1374d1c2c2a01caa8e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 5101.080946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01300c5172', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:07.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0x98a88caf84b6decda551aff72e3c60a16e1d1b30a1e0822670ff423ef9f206be:log:1', 'hash': '0x98a88caf84b6decda551aff72e3c60a16e1d1b30a1e0822670ff423ef9f206be', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 22769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x054d235e40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0xc5abd6316982539cd1c974cfd88c1c52cfdc58664a8d6198c186aeb30f4ded76:log:4', 'hash': '0xc5abd6316982539cd1c974cfd88c1c52cfdc58664a8d6198c186aeb30f4ded76', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb2fd2f7d87b3cf9b1642c54a52f68503ce215791', 'value': 83.514333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04fa53dd', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0xc83c537b54656dcf088de613242dd08c4613eeaa0ae2daff81120747fd2ee46a:log:5', 'hash': '0xc83c537b54656dcf088de613242dd08c4613eeaa0ae2daff81120747fd2ee46a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 87222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x144ed61980', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0x314e23e273cbe7f741e4e5531d2c05fc2175cccefb7d81098615437d111f168d:log:6', 'hash': '0x314e23e273cbe7f741e4e5531d2c05fc2175cccefb7d81098615437d111f168d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0bde6a4fc001d927891560cbadcdff0ffb0ff60c', 'value': 18741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x045d0cf740', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0x9aad922b42190e4dd05edd52ac1b12bf4350b84f65a7a0672acfdc79c4756943:log:7', 'hash': '0x9aad922b42190e4dd05edd52ac1b12bf4350b84f65a7a0672acfdc79c4756943', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 2551.786239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x98192aff', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0x7911ded53a41fd80b8c994837d55d4ec8096d4b0661b80cf1d88d78abcfc0395:log:8', 'hash': '0x7911ded53a41fd80b8c994837d55d4ec8096d4b0661b80cf1d88d78abcfc0395', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 46513.622191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ad46d8caf', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0x0eccbef3e36cf9d72a177d30e45c2e519a18315219ef3da977ff986e82c78217:log:9', 'hash': '0x0eccbef3e36cf9d72a177d30e45c2e519a18315219ef3da977ff986e82c78217', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 110238.466939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x19aab9837b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0xcd5432992318f4810560f9864416df055d2f3b96cb509bd3a97f7ea10249702b:log:10', 'hash': '0xcd5432992318f4810560f9864416df055d2f3b96cb509bd3a97f7ea10249702b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 1793.801801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6aeb3e49', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0xbcfb428b6e22b03d66da602c22e57627a03a9c364299808d2bd302da10644fca:log:11', 'hash': '0xbcfb428b6e22b03d66da602c22e57627a03a9c364299808d2bd302da10644fca', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 5476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0146652100', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0x9c966b3713ac2f7bd28573d812317d5faccc96a21b2e77c9933bdf052ddb41b4:log:12', 'hash': '0x9c966b3713ac2f7bd28573d812317d5faccc96a21b2e77c9933bdf052ddb41b4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 789551.664464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb7d4f24d50', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0x43e47e505fda264a2d691d50ad4fb9456111ee5e15ada67f93300d9ac7ca55b6:log:13', 'hash': '0x43e47e505fda264a2d691d50ad4fb9456111ee5e15ada67f93300d9ac7ca55b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x768b5d7e09f44bb0348b01250c551b71922b3c5d', 'value': 22392.648836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0536b4b484', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4e', 'uniqueId': '0x333d221e0e23545efeebe73990db3e11348a131d1b81d5a290be0840affb9edf:log:20', 'hash': '0x333d221e0e23545efeebe73990db3e11348a131d1b81d5a290be0840affb9edf', 'from': '0xd9f69bc58d0d2c4df3f5e61efd84e054f9e9f85c', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 4466.305005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x010a3667ed', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:02:21.000Z'}}, {'blockNum': '0x7b4d4f', 'uniqueId': '0xba7646a08d07a14253612287d24d36a5956f40e2cd29f556f3575f9fb9ae3087:log:32', 'hash': '0xba7646a08d07a14253612287d24d36a5956f40e2cd29f556f3575f9fb9ae3087', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 507.620386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1e41ac22', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:14.000Z'}}, {'blockNum': '0x7b4d4f', 'uniqueId': '0xba7646a08d07a14253612287d24d36a5956f40e2cd29f556f3575f9fb9ae3087:log:36', 'hash': '0xba7646a08d07a14253612287d24d36a5956f40e2cd29f556f3575f9fb9ae3087', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 507.620386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1e41ac22', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:14.000Z'}}, {'blockNum': '0x7b4d4f', 'uniqueId': '0x48f6cb470a0f7bd4d15cea77886f7c003e7fa68da0092e914a447ca9b90c9cbc:log:40', 'hash': '0x48f6cb470a0f7bd4d15cea77886f7c003e7fa68da0092e914a447ca9b90c9cbc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 1717.619741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6660cc1d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:14.000Z'}}, {'blockNum': '0x7b4d50', 'uniqueId': '0xd54c27e6161ae1e057983ffc1c09bd86608ec15360080fbb6b16888daa9380de:log:6', 'hash': '0xd54c27e6161ae1e057983ffc1c09bd86608ec15360080fbb6b16888daa9380de', 'from': '0xdf8efb8a522561ea9bd8c55874dca4536ee5c618', 'to': '0x9d4b49bc12512b5d9ec0b7eae3aa1cbdab09f9d1', 'value': 6430.41538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x017f485a14', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:22.000Z'}}, {'blockNum': '0x7b4d50', 'uniqueId': '0xd866eb10f43a8173e7d27c7953bbf91ea073bc7aa9efebfb69b8e918dd656747:log:86', 'hash': '0xd866eb10f43a8173e7d27c7953bbf91ea073bc7aa9efebfb69b8e918dd656747', 'from': '0xabe1e210f2c97ae4bc7b17f8daa2e8db993337f5', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 30.160501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01cc3675', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:22.000Z'}}, {'blockNum': '0x7b4d50', 'uniqueId': '0xd866eb10f43a8173e7d27c7953bbf91ea073bc7aa9efebfb69b8e918dd656747:log:88', 'hash': '0xd866eb10f43a8173e7d27c7953bbf91ea073bc7aa9efebfb69b8e918dd656747', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 30.160482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01cc3662', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:22.000Z'}}, {'blockNum': '0x7b4d50', 'uniqueId': '0xd866eb10f43a8173e7d27c7953bbf91ea073bc7aa9efebfb69b8e918dd656747:log:90', 'hash': '0xd866eb10f43a8173e7d27c7953bbf91ea073bc7aa9efebfb69b8e918dd656747', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 30.160482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01cc3662', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:22.000Z'}}, {'blockNum': '0x7b4d51', 'uniqueId': '0x36a8e43c6dc9d3e74d37b145a176db7f56d3751a31502db8634ea526f318b992:log:39', 'hash': '0x36a8e43c6dc9d3e74d37b145a176db7f56d3751a31502db8634ea526f318b992', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 253.525908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0f1c7f94', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:36.000Z'}}, {'blockNum': '0x7b4d51', 'uniqueId': '0x36a8e43c6dc9d3e74d37b145a176db7f56d3751a31502db8634ea526f318b992:log:43', 'hash': '0x36a8e43c6dc9d3e74d37b145a176db7f56d3751a31502db8634ea526f318b992', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 253.525908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0f1c7f94', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:36.000Z'}}, {'blockNum': '0x7b4d51', 'uniqueId': '0x666221d8fb1449fa26ba0fed1f4cb71667de39baf1546afe4d5578208d552dd1:log:44', 'hash': '0x666221d8fb1449fa26ba0fed1f4cb71667de39baf1546afe4d5578208d552dd1', 'from': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'to': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'value': 12749.570326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02f7ef0116', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:03:36.000Z'}}, {'blockNum': '0x7b4d53', 'uniqueId': '0xc4c48a8aa44e4055852acd3b58606f77b2c2302be5056571edd649b8c297da31:log:5', 'hash': '0xc4c48a8aa44e4055852acd3b58606f77b2c2302be5056571edd649b8c297da31', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x78dcaf4eea08367133dece84deda801c32941645', 'value': 1527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5b042bc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:04:08.000Z'}}, {'blockNum': '0x7b4d59', 'uniqueId': '0xfb0057023f851d71e869b0c8c0b4ea1a3a1b6e13a07f5c1c4f876dc13a3438c1:log:8', 'hash': '0xfb0057023f851d71e869b0c8c0b4ea1a3a1b6e13a07f5c1c4f876dc13a3438c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x476ec61a27431dcf120f72b7a9f241ce61daa44c', 'value': 15763.37904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x03ab921360', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:10.000Z'}}, {'blockNum': '0x7b4d59', 'uniqueId': '0x3c0c92a3e56d35c53f05954e2eb3e6b268a90ec9ade64f89272f393cfcfaa043:log:9', 'hash': '0x3c0c92a3e56d35c53f05954e2eb3e6b268a90ec9ade64f89272f393cfcfaa043', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 7820, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01d21bbb00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:10.000Z'}}, {'blockNum': '0x7b4d59', 'uniqueId': '0x2667c65eb9d2192ba7c9f93e360f1bc5eccf9dcd21161eb44fa5e2345fe1d18a:log:10', 'hash': '0x2667c65eb9d2192ba7c9f93e360f1bc5eccf9dcd21161eb44fa5e2345fe1d18a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 42516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09e626ad00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:10.000Z'}}, {'blockNum': '0x7b4d59', 'uniqueId': '0x890c4edc15949a2315ec5719dcb261ce785bfaf1f0204f58941292f56030d6af:log:11', 'hash': '0x890c4edc15949a2315ec5719dcb261ce785bfaf1f0204f58941292f56030d6af', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'value': 29603.959287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x06e48891f7', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:10.000Z'}}, {'blockNum': '0x7b4d59', 'uniqueId': '0x26cd5b3b80d38feeeb026f304e33c2bd3525953ad71ce9073923d8fba4eb6aa3:log:12', 'hash': '0x26cd5b3b80d38feeeb026f304e33c2bd3525953ad71ce9073923d8fba4eb6aa3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0f147940', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:10.000Z'}}, {'blockNum': '0x7b4d59', 'uniqueId': '0x20d0a31edf6bcd17e0a5955e56cd8baad05a6270042bdec1fe50fd5fcfe48371:log:13', 'hash': '0x20d0a31edf6bcd17e0a5955e56cd8baad05a6270042bdec1fe50fd5fcfe48371', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'value': 13186.795184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0311fe86b0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:10.000Z'}}, {'blockNum': '0x7b4d59', 'uniqueId': '0xedc02b4ecacff2109a2c7d5937e812497f0b49e481dd045dd0aa302f1f10e2c3:log:14', 'hash': '0xedc02b4ecacff2109a2c7d5937e812497f0b49e481dd045dd0aa302f1f10e2c3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'value': 75407.804468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x118ea7c834', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:10.000Z'}}, {'blockNum': '0x7b4d59', 'uniqueId': '0x26d30ff263867d41f9028c64fb29a2c771525dff1889a3a45a282af7db1ccdf3:log:17', 'hash': '0x26d30ff263867d41f9028c64fb29a2c771525dff1889a3a45a282af7db1ccdf3', 'from': '0xd9f69bc58d0d2c4df3f5e61efd84e054f9e9f85c', 'to': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'value': 2991.12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb248de80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:10.000Z'}}, {'blockNum': '0x7b4d5a', 'uniqueId': '0xcf234163c3b489f6c79d9a11e8224899875f30f921a83032e5c3073b967deaa5:log:15', 'hash': '0xcf234163c3b489f6c79d9a11e8224899875f30f921a83032e5c3073b967deaa5', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7509.27831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01bf967e66', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:27.000Z'}}, {'blockNum': '0x7b4d5a', 'uniqueId': '0xcf234163c3b489f6c79d9a11e8224899875f30f921a83032e5c3073b967deaa5:log:19', 'hash': '0xcf234163c3b489f6c79d9a11e8224899875f30f921a83032e5c3073b967deaa5', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x6e316492ed3d5cba0d8940babc589989d7f59193', 'value': 7509.27831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01bf967e66', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:27.000Z'}}, {'blockNum': '0x7b4d5c', 'uniqueId': '0x03878e7b72249eed27563ff08724d6e086021f4ec628f2b28789401b1c44899c:log:93', 'hash': '0x03878e7b72249eed27563ff08724d6e086021f4ec628f2b28789401b1c44899c', 'from': '0x6e316492ed3d5cba0d8940babc589989d7f59193', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 7509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01bf923f40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:05:42.000Z'}}, {'blockNum': '0x7b4d5e', 'uniqueId': '0xe13645d412c93fd6c40abaa994f59d2d59cfe926ddb6d23c00cd56772bd1c737:log:31', 'hash': '0xe13645d412c93fd6c40abaa994f59d2d59cfe926ddb6d23c00cd56772bd1c737', 'from': '0xdd7ebfd96ed480b5193df060bba8813b3469c4ff', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 22921.001344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x055632b980', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:06:15.000Z'}}, {'blockNum': '0x7b4d5f', 'uniqueId': '0x079bfd2cfff2425cd30d8aea96e63cab1b80b8c00daa44f6cc1513770bd48753:log:60', 'hash': '0x079bfd2cfff2425cd30d8aea96e63cab1b80b8c00daa44f6cc1513770bd48753', 'from': '0x466874fc2199f320f18ab0dc16d1939166914a8c', 'to': '0x7e8c86329643863ff5d387ac001ca8347475225d', 'value': 13.906466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xd43222', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:06:25.000Z'}}, {'blockNum': '0x7b4d62', 'uniqueId': '0xb50b7b9ddee7a7cfeee5d2d394cd8ec7f4820d8b4e3f875ac1c577e23cc7650a:log:10', 'hash': '0xb50b7b9ddee7a7cfeee5d2d394cd8ec7f4820d8b4e3f875ac1c577e23cc7650a', 'from': '0x03bc78877e99380ef123213532e4672c8e6c845b', 'to': '0x907c7fe8f5ef173ef1c585f3cf820ebd7eacee0b', 'value': 566.635968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x21c62dc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:06:46.000Z'}}, {'blockNum': '0x7b4d64', 'uniqueId': '0x0b9ec14688ab183e2d1cd964af942a27b7aecd9bd8f86931dab3e2b6b90b11eb:log:11', 'hash': '0x0b9ec14688ab183e2d1cd964af942a27b7aecd9bd8f86931dab3e2b6b90b11eb', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2462.45643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x92c61a6e', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:06:50.000Z'}}, {'blockNum': '0x7b4d64', 'uniqueId': '0x0b9ec14688ab183e2d1cd964af942a27b7aecd9bd8f86931dab3e2b6b90b11eb:log:15', 'hash': '0x0b9ec14688ab183e2d1cd964af942a27b7aecd9bd8f86931dab3e2b6b90b11eb', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'value': 2462.45643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x92c61a6e', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:06:50.000Z'}}, {'blockNum': '0x7b4d66', 'uniqueId': '0xdfebe7e45c25bdb43b88f4a748aaabfd8e24faa2111e0a990e61fc34acdd23c7:log:1', 'hash': '0xdfebe7e45c25bdb43b88f4a748aaabfd8e24faa2111e0a990e61fc34acdd23c7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'value': 17426.207394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x040eaed2a2', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:07:00.000Z'}}, {'blockNum': '0x7b4d66', 'uniqueId': '0xce80d02fd7560448600e8e18ec5b94b4cc672e9cf27a85c36baf58312bbc4846:log:2', 'hash': '0xce80d02fd7560448600e8e18ec5b94b4cc672e9cf27a85c36baf58312bbc4846', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8e3779c8bfeecb7e142be811de04dd0bb5367229', 'value': 1883.354346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x7041b4ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:07:00.000Z'}}, {'blockNum': '0x7b4d66', 'uniqueId': '0xb7aaebcd4ac1108cd89618ab90b9c61a093f0725f0c404b5b7817f7c57045c9c:log:3', 'hash': '0xb7aaebcd4ac1108cd89618ab90b9c61a093f0725f0c404b5b7817f7c57045c9c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 48782.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0b5ba796b0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:07:00.000Z'}}, {'blockNum': '0x7b4d68', 'uniqueId': '0x56c16937f5f3c2b11c3a83d4719ce48dc94b4bbdf69c471077eb84950035bf8a:log:1', 'hash': '0x56c16937f5f3c2b11c3a83d4719ce48dc94b4bbdf69c471077eb84950035bf8a', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'value': 49436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0b829d7f00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:07:34.000Z'}}, {'blockNum': '0x7b4d68', 'uniqueId': '0xf36081d3d8b606242b34662047806f6842470a8874a72823b49b74b106995895:log:24', 'hash': '0xf36081d3d8b606242b34662047806f6842470a8874a72823b49b74b106995895', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 245.151831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e9cb857', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:07:34.000Z'}}, {'blockNum': '0x7b4d68', 'uniqueId': '0xf36081d3d8b606242b34662047806f6842470a8874a72823b49b74b106995895:log:28', 'hash': '0xf36081d3d8b606242b34662047806f6842470a8874a72823b49b74b106995895', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 245.151831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e9cb857', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:07:34.000Z'}}, {'blockNum': '0x7b4d69', 'uniqueId': '0x512354bd01a2b82c13144918e89264a63d217ca66b3ea4f131da0c1da8bf7c1b:log:39', 'hash': '0x512354bd01a2b82c13144918e89264a63d217ca66b3ea4f131da0c1da8bf7c1b', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 244.965731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e99e163', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:03.000Z'}}, {'blockNum': '0x7b4d69', 'uniqueId': '0x512354bd01a2b82c13144918e89264a63d217ca66b3ea4f131da0c1da8bf7c1b:log:43', 'hash': '0x512354bd01a2b82c13144918e89264a63d217ca66b3ea4f131da0c1da8bf7c1b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 244.965731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e99e163', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:03.000Z'}}, {'blockNum': '0x7b4d6c', 'uniqueId': '0xd54a8cb6e91bd9c43ce323f01dcbd06da11eec87fe6fcba9b00e0db01f896b3a:log:17', 'hash': '0xd54a8cb6e91bd9c43ce323f01dcbd06da11eec87fe6fcba9b00e0db01f896b3a', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 19369.503169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04828329c1', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:21.000Z'}}, {'blockNum': '0x7b4d6c', 'uniqueId': '0xd54a8cb6e91bd9c43ce323f01dcbd06da11eec87fe6fcba9b00e0db01f896b3a:log:21', 'hash': '0xd54a8cb6e91bd9c43ce323f01dcbd06da11eec87fe6fcba9b00e0db01f896b3a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 19369.503169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04828329c1', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:21.000Z'}}, {'blockNum': '0x7b4d6c', 'uniqueId': '0xeafe83d8c86debe97ee45822b28ee73168a984a849ddaa73db2fc8fa92e8cfde:log:24', 'hash': '0xeafe83d8c86debe97ee45822b28ee73168a984a849ddaa73db2fc8fa92e8cfde', 'from': '0xb75172a9355fd618d74be39b3dc1346ba8706920', 'to': '0x8f36058152b5a012ce63941f803bf6d2f17af5d8', 'value': 995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b4e7ec0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:21.000Z'}}, {'blockNum': '0x7b4d6c', 'uniqueId': '0xb098c8a746f5356894db471255c193d4c2bdcd770595504250706180c6c88c31:log:35', 'hash': '0xb098c8a746f5356894db471255c193d4c2bdcd770595504250706180c6c88c31', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2085.996409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x7c55c779', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:21.000Z'}}, {'blockNum': '0x7b4d6c', 'uniqueId': '0xb098c8a746f5356894db471255c193d4c2bdcd770595504250706180c6c88c31:log:37', 'hash': '0xb098c8a746f5356894db471255c193d4c2bdcd770595504250706180c6c88c31', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2085.996409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x7c55c779', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:21.000Z'}}, {'blockNum': '0x7b4d6d', 'uniqueId': '0x1fa6bec10672f1720ee639f7e853b3fde73b96f4cc0caf269cc7a114c832c4dc:log:1', 'hash': '0x1fa6bec10672f1720ee639f7e853b3fde73b96f4cc0caf269cc7a114c832c4dc', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 5458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0145527880', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:24.000Z'}}, {'blockNum': '0x7b4d6d', 'uniqueId': '0x1151d494281f32facc46e9792bda7a77bff9096260536ae19cadcde6785388c6:log:65', 'hash': '0x1151d494281f32facc46e9792bda7a77bff9096260536ae19cadcde6785388c6', 'from': '0x21e8998e92f3ed241330f1f419549c570535154d', 'to': '0x6c12d99d27ca6cd1c0818dea4d8304c09de7aa85', 'value': 989.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3af53b30', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:24.000Z'}}, {'blockNum': '0x7b4d6e', 'uniqueId': '0xdb34e8703f0111c90de5db85895da88e47eafff6ad3fc9a2ebb3a7d4dad0506d:log:0', 'hash': '0xdb34e8703f0111c90de5db85895da88e47eafff6ad3fc9a2ebb3a7d4dad0506d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'value': 9169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x022283d640', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:51.000Z'}}, {'blockNum': '0x7b4d6e', 'uniqueId': '0x462cfb0a0143c39de819d86d1a3fe1940c8af461e70380d839f8ced4779f8985:log:2', 'hash': '0x462cfb0a0143c39de819d86d1a3fe1940c8af461e70380d839f8ced4779f8985', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x953476b5c52aac604620ca23d85073517d656112', 'value': 2167.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x8132f380', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:51.000Z'}}, {'blockNum': '0x7b4d6e', 'uniqueId': '0x00c2d59fb83b0579dc3592275d7a6d896340344717cd641ed3abfc36197cf75e:log:6', 'hash': '0x00c2d59fb83b0579dc3592275d7a6d896340344717cd641ed3abfc36197cf75e', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 2390.251319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x8e785737', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:51.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0xaaafa611b63a0895f1d34e057ca5cc17b832e4040cdf3e905e76deed05a3e55c:log:0', 'hash': '0xaaafa611b63a0895f1d34e057ca5cc17b832e4040cdf3e905e76deed05a3e55c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x640e658fd57ef840f8db5a9eeae51c5512acd4ae', 'value': 8494.222923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01fa4b8e4b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0x1bb4a8a21cfca8842fd1cb8bbc5f84223ac655eb7a253ce2e89661cbebe004b6:log:1', 'hash': '0x1bb4a8a21cfca8842fd1cb8bbc5f84223ac655eb7a253ce2e89661cbebe004b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 18723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x045bfa4ec0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0xd335ac9edb64988d46c6e2b130cbc5aaab0a85406e63861c26a0e27e521a1fca:log:2', 'hash': '0xd335ac9edb64988d46c6e2b130cbc5aaab0a85406e63861c26a0e27e521a1fca', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 60630.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e1dda7c00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0xde437df8d36a42dc48ea323e3e9c9ff229ab2e144903ecc11ae34f22471f5ca3:log:3', 'hash': '0xde437df8d36a42dc48ea323e3e9c9ff229ab2e144903ecc11ae34f22471f5ca3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 3723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xdde878c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0x721fd99fee461e924f742cbaeba154bcbb05a63770e768ff1f722db0c96e29ab:log:4', 'hash': '0x721fd99fee461e924f742cbaeba154bcbb05a63770e768ff1f722db0c96e29ab', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1793.801801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6aeb3e49', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0x5d599c227b23c14f9769b3bf6b3a398fe61889ab5994a60e6092b8ef12a5081f:log:5', 'hash': '0x5d599c227b23c14f9769b3bf6b3a398fe61889ab5994a60e6092b8ef12a5081f', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1717.619741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6660cc1d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0xde23028240a6c3586b1021cf0e86b5691310bea26a30170a0216a6813aa69d18:log:8', 'hash': '0xde23028240a6c3586b1021cf0e86b5691310bea26a30170a0216a6813aa69d18', 'from': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12749.570326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02f7ef0116', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0x218e28c8e9795c67f0f7dfdbdd08ae47b2ac877514d759157eb640d92a0e39ae:log:9', 'hash': '0x218e28c8e9795c67f0f7dfdbdd08ae47b2ac877514d759157eb640d92a0e39ae', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 123352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1cb85a2600', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0x40406aefb3f31d9da0a8d41abdda6a2c66a1e884b48fe58300585862b7b90548:log:10', 'hash': '0x40406aefb3f31d9da0a8d41abdda6a2c66a1e884b48fe58300585862b7b90548', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42930.573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09fedc8ec8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0x2154d60c1c4120dd703c59b2e7e736d2da9259520d0fb36b8923a0232186079c:log:13', 'hash': '0x2154d60c1c4120dd703c59b2e7e736d2da9259520d0fb36b8923a0232186079c', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0b4ddd77c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0xbd8f6736eaf94698845816659b2f37359d3e57f8901c114dfcb73550db2808ec:log:14', 'hash': '0xbd8f6736eaf94698845816659b2f37359d3e57f8901c114dfcb73550db2808ec', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 789551.664464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb7d4f24d50', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0x7a195a3ff062a345396667ae4887bcbfd87e95571b4615d0900a8e9729a11559:log:15', 'hash': '0x7a195a3ff062a345396667ae4887bcbfd87e95571b4615d0900a8e9729a11559', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7820, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01d21bbb00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0xdf6e7bcd3bd31e0387dd18425161b1d7b09d8d17fd9f0cc4c43d34c183a7cb22:log:17', 'hash': '0xdf6e7bcd3bd31e0387dd18425161b1d7b09d8d17fd9f0cc4c43d34c183a7cb22', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60290.371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e09960db8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0xde1d75a11757aa5542625873b77b7aa96ae30df1c3ee2ccdcf33ebb397b9518e:log:18', 'hash': '0xde1d75a11757aa5542625873b77b7aa96ae30df1c3ee2ccdcf33ebb397b9518e', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 87222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x144ed61980', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0x7d7bf2125ebd741d27f48ed29042e28fcfc950a5158ecc97c28d6b6765bbb141:log:22', 'hash': '0x7d7bf2125ebd741d27f48ed29042e28fcfc950a5158ecc97c28d6b6765bbb141', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x953476b5c52aac604620ca23d85073517d656112', 'value': 294.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x11930dd0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0xe2ceadf00466cfc0e164b02595cf348c5085736c466aeeaeef49bcd5460c522f:log:30', 'hash': '0xe2ceadf00466cfc0e164b02595cf348c5085736c466aeeaeef49bcd5460c522f', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 10195.224977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x025faec991', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d6f', 'uniqueId': '0xe2ceadf00466cfc0e164b02595cf348c5085736c466aeeaeef49bcd5460c522f:log:32', 'hash': '0xe2ceadf00466cfc0e164b02595cf348c5085736c466aeeaeef49bcd5460c522f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 10195.224977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x025faec991', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:08:58.000Z'}}, {'blockNum': '0x7b4d70', 'uniqueId': '0x92227f7b8f643aaa22c00a7a6b69715776bd025d9b96a8e74bb12ffc7ab566d3:log:2', 'hash': '0x92227f7b8f643aaa22c00a7a6b69715776bd025d9b96a8e74bb12ffc7ab566d3', 'from': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29603.959287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x06e48891f7', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:18.000Z'}}, {'blockNum': '0x7b4d70', 'uniqueId': '0xd22026830bf24cc71a4317a624aef0a536dad83ec134073c62ffe28bdf0b9d99:log:3', 'hash': '0xd22026830bf24cc71a4317a624aef0a536dad83ec134073c62ffe28bdf0b9d99', 'from': '0x476ec61a27431dcf120f72b7a9f241ce61daa44c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15763.37904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x03ab921360', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:18.000Z'}}, {'blockNum': '0x7b4d70', 'uniqueId': '0xddddcdef5e4b0d87cee55747f1c93767b72c3ffb6970c361610579a96d185798:log:5', 'hash': '0xddddcdef5e4b0d87cee55747f1c93767b72c3ffb6970c361610579a96d185798', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 467.999622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1be51b86', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:18.000Z'}}, {'blockNum': '0x7b4d70', 'uniqueId': '0xac510f640212f258f365d7ef839114301680775306fb0ce9da58ace9bc6f4447:log:6', 'hash': '0xac510f640212f258f365d7ef839114301680775306fb0ce9da58ace9bc6f4447', 'from': '0x22f1fb736bab2e6ebbbbe0a9aea37c6e328c67e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75415.804468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x118f21da34', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:18.000Z'}}, {'blockNum': '0x7b4d70', 'uniqueId': '0x519d884f1529602ff2fadd3d30069ab55a3aa3be87d1e7e0014eba9debb6c3d3:log:7', 'hash': '0x519d884f1529602ff2fadd3d30069ab55a3aa3be87d1e7e0014eba9debb6c3d3', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0146652100', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:18.000Z'}}, {'blockNum': '0x7b4d70', 'uniqueId': '0xcd9a30967ae2c43f036fd8972d28313a36af05b3356d8450ec36097ab0adfdbf:log:8', 'hash': '0xcd9a30967ae2c43f036fd8972d28313a36af05b3356d8450ec36097ab0adfdbf', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01bf923f40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:18.000Z'}}, {'blockNum': '0x7b4d70', 'uniqueId': '0xeedde05833dae6cc292d153c55a9d386c88fe23f4d32aa82d09d1d35bce30532:log:9', 'hash': '0xeedde05833dae6cc292d153c55a9d386c88fe23f4d32aa82d09d1d35bce30532', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0176236b40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:18.000Z'}}, {'blockNum': '0x7b4d70', 'uniqueId': '0xf177c9a5d2c7ea6395949f684b43a2926f033ad82ce2e6b7c8225ac253cec3be:log:10', 'hash': '0xf177c9a5d2c7ea6395949f684b43a2926f033ad82ce2e6b7c8225ac253cec3be', 'from': '0x78dcaf4eea08367133dece84deda801c32941645', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1527.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5b05b260', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:18.000Z'}}, {'blockNum': '0x7b4d71', 'uniqueId': '0x7b23d737c694d542e1833df2569b76d3cbf7f5f7b5af192b469a50a21407ea62:log:0', 'hash': '0x7b23d737c694d542e1833df2569b76d3cbf7f5f7b5af192b469a50a21407ea62', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 8640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0202fbf000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:22.000Z'}}, {'blockNum': '0x7b4d71', 'uniqueId': '0xd6c3a6007c42f3a2f47b2e9e834f022cd1608f61659b15d1206f4b3a0a06382f:log:1', 'hash': '0xd6c3a6007c42f3a2f47b2e9e834f022cd1608f61659b15d1206f4b3a0a06382f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 18144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0439777800', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:22.000Z'}}, {'blockNum': '0x7b4d72', 'uniqueId': '0xe758077f5e10f1f875bec5b909db594084cd9ee6144582e9aa51222ee6874314:log:17', 'hash': '0xe758077f5e10f1f875bec5b909db594084cd9ee6144582e9aa51222ee6874314', 'from': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'to': '0xc896688131a53b8ba3473bb3b5618791d8d70309', 'value': 19367.661557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0482670ff5', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:52.000Z'}}, {'blockNum': '0x7b4d72', 'uniqueId': '0x637fbe8a2e632b790d77dc0a64efc1ad483229cf7286a328b664b1a095e1ca38:log:25', 'hash': '0x637fbe8a2e632b790d77dc0a64efc1ad483229cf7286a328b664b1a095e1ca38', 'from': '0x0bde6a4fc001d927891560cbadcdff0ffb0ff60c', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 18741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x045d0cf740', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:09:52.000Z'}}, {'blockNum': '0x7b4d77', 'uniqueId': '0xb335c587ff130e9fd41a14cfb32c7d886f41c3bc743c93ab88144f5029c2550a:log:1', 'hash': '0xb335c587ff130e9fd41a14cfb32c7d886f41c3bc743c93ab88144f5029c2550a', 'from': '0x9d4b49bc12512b5d9ec0b7eae3aa1cbdab09f9d1', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 6430.41538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x017f485a14', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:10:18.000Z'}}, {'blockNum': '0x7b4d7a', 'uniqueId': '0x13feafb48512ff02c6aeed92dad0001a73f204337177bd682a6b1a15fc873dc6:log:10', 'hash': '0x13feafb48512ff02c6aeed92dad0001a73f204337177bd682a6b1a15fc873dc6', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 4512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x010cefa800', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:03.000Z'}}, {'blockNum': '0x7b4d7a', 'uniqueId': '0x8527083e64b968c8164881d0a682fdee82d9d1f73021e4543868c10b5eb8013b:log:17', 'hash': '0x8527083e64b968c8164881d0a682fdee82d9d1f73021e4543868c10b5eb8013b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x34d82a1fbd19f093199ece4aff7427c35faece02', 'value': 255048.722899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b6216a9d3', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:03.000Z'}}, {'blockNum': '0x7b4d7b', 'uniqueId': '0x993941eb0dd406b2bfe88ba523514466a5465f155390a5b9a1700a155ce8068e:log:10', 'hash': '0x993941eb0dd406b2bfe88ba523514466a5465f155390a5b9a1700a155ce8068e', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 3430.929791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xcc7fd57f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:17.000Z'}}, {'blockNum': '0x7b4d7b', 'uniqueId': '0x993941eb0dd406b2bfe88ba523514466a5465f155390a5b9a1700a155ce8068e:log:12', 'hash': '0x993941eb0dd406b2bfe88ba523514466a5465f155390a5b9a1700a155ce8068e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 3430.929791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xcc7fd57f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:17.000Z'}}, {'blockNum': '0x7b4d7c', 'uniqueId': '0xee4eb74922820e093d1002c4196e63027bc1a3b6152c6c286b8007c29c981237:log:0', 'hash': '0xee4eb74922820e093d1002c4196e63027bc1a3b6152c6c286b8007c29c981237', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb1ab487c5784f5bdd34a93e02e598bc99fcc68af', 'value': 709573.581799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa535e19be7', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:37.000Z'}}, {'blockNum': '0x7b4d7c', 'uniqueId': '0xb438250ef215df9904fb0e7d05713b65251c3cdc0863481f5a6f34c992538aaf:log:1', 'hash': '0xb438250ef215df9904fb0e7d05713b65251c3cdc0863481f5a6f34c992538aaf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb1ab487c5784f5bdd34a93e02e598bc99fcc68af', 'value': 229741.512859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x357da9489b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:37.000Z'}}, {'blockNum': '0x7b4d7c', 'uniqueId': '0x339d9841048c0b5a88cd54b189c399ad9c29ece53c5e998200427e51ebd286b4:log:12', 'hash': '0x339d9841048c0b5a88cd54b189c399ad9c29ece53c5e998200427e51ebd286b4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 130437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1e5ea6ab40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:37.000Z'}}, {'blockNum': '0x7b4d7c', 'uniqueId': '0x884fd26a5466197e1b63d71e517bd87030b34f1a52f56e1d0fc2d9a54e906623:log:13', 'hash': '0x884fd26a5466197e1b63d71e517bd87030b34f1a52f56e1d0fc2d9a54e906623', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 41616.823906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09b08e5662', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:37.000Z'}}, {'blockNum': '0x7b4d7c', 'uniqueId': '0x2302da742a332fbc33da2aeba71e886edfca09a1d617d615667ac72c30cb1fb4:log:14', 'hash': '0x2302da742a332fbc33da2aeba71e886edfca09a1d617d615667ac72c30cb1fb4', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xb1ab487c5784f5bdd34a93e02e598bc99fcc68af', 'value': 286735.918655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x42c2cae63f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:37.000Z'}}, {'blockNum': '0x7b4d7c', 'uniqueId': '0x5422007dff1dee7ebb0ed8352acb037c2c5966918f2dbfa613ad06a81a0b7f7d:log:27', 'hash': '0x5422007dff1dee7ebb0ed8352acb037c2c5966918f2dbfa613ad06a81a0b7f7d', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4560.736902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x010fd75286', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:37.000Z'}}, {'blockNum': '0x7b4d7c', 'uniqueId': '0x5422007dff1dee7ebb0ed8352acb037c2c5966918f2dbfa613ad06a81a0b7f7d:log:31', 'hash': '0x5422007dff1dee7ebb0ed8352acb037c2c5966918f2dbfa613ad06a81a0b7f7d', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 4560.736902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x010fd75286', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:37.000Z'}}, {'blockNum': '0x7b4d7c', 'uniqueId': '0x528c63ea0339f070ff91e87185385fb90177efa6c8c9414a2bc7a0a9714290bb:log:37', 'hash': '0x528c63ea0339f070ff91e87185385fb90177efa6c8c9414a2bc7a0a9714290bb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x81dbc5cbbc8678268eaeacddf75e705a0d6297ef', 'value': 61167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e3dd659c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:37.000Z'}}, {'blockNum': '0x7b4d7d', 'uniqueId': '0x5907ab88922f317f196712be8018325ab1441016b62bf740b9c41f27d7d523a2:log:0', 'hash': '0x5907ab88922f317f196712be8018325ab1441016b62bf740b9c41f27d7d523a2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x926733222a0c0a45e8e7c9ed95b811d5ecb8c57a', 'value': 315233.462267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x496560e7fb', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:55.000Z'}}, {'blockNum': '0x7b4d7d', 'uniqueId': '0x1fbc9712132c2ba62da8f1e434855bdcb36538c2980c77f044bc638a66bfeffd:log:1', 'hash': '0x1fbc9712132c2ba62da8f1e434855bdcb36538c2980c77f044bc638a66bfeffd', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 131853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1eb30d1d40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:55.000Z'}}, {'blockNum': '0x7b4d7d', 'uniqueId': '0xb0f84d0a42bbc4fd7f15f5df348a886d1f437a8673a9774b2c74a03c6ee38309:log:2', 'hash': '0xb0f84d0a42bbc4fd7f15f5df348a886d1f437a8673a9774b2c74a03c6ee38309', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 51679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0c084ef5c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:55.000Z'}}, {'blockNum': '0x7b4d7d', 'uniqueId': '0x846ecc830c7641aa5eb5ccc611cb7e8eb7d6193c864e17dfc0284a1cf55d7b51:log:3', 'hash': '0x846ecc830c7641aa5eb5ccc611cb7e8eb7d6193c864e17dfc0284a1cf55d7b51', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 35121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x082d5fee40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:55.000Z'}}, {'blockNum': '0x7b4d7d', 'uniqueId': '0xcb5ad124f2c1630437503f2314d61e9ff2412da90cbc2280da90a76495ec6705:log:4', 'hash': '0xcb5ad124f2c1630437503f2314d61e9ff2412da90cbc2280da90a76495ec6705', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 237277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x373ecfb140', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:55.000Z'}}, {'blockNum': '0x7b4d7d', 'uniqueId': '0x51f7d1d24387ff6b0dac452d7db66a4231e271309dfac3840cc37f5d2fef01d9:log:59', 'hash': '0x51f7d1d24387ff6b0dac452d7db66a4231e271309dfac3840cc37f5d2fef01d9', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 42516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09e626ad00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:55.000Z'}}, {'blockNum': '0x7b4d7d', 'uniqueId': '0x208559394e5d1633ec176c9e1cf734e92a32bf8b02ee1479220e81df45554f5e:log:62', 'hash': '0x208559394e5d1633ec176c9e1cf734e92a32bf8b02ee1479220e81df45554f5e', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 13824.503808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0338013000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:11:55.000Z'}}, {'blockNum': '0x7b4d7f', 'uniqueId': '0x304e91e3c4708c0ecc97161a5a2d8117183a92285f89ea26b4d18adce74479df:log:11', 'hash': '0x304e91e3c4708c0ecc97161a5a2d8117183a92285f89ea26b4d18adce74479df', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2135.94774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x7f4ff9dc', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:12:22.000Z'}}, {'blockNum': '0x7b4d7f', 'uniqueId': '0x304e91e3c4708c0ecc97161a5a2d8117183a92285f89ea26b4d18adce74479df:log:15', 'hash': '0x304e91e3c4708c0ecc97161a5a2d8117183a92285f89ea26b4d18adce74479df', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 2135.94774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x7f4ff9dc', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:12:22.000Z'}}, {'blockNum': '0x7b4d81', 'uniqueId': '0xd735942233dd5ca4a3c25c51158e1eef0402af2f072472c8b4d9fc43d5d86a1a:log:5', 'hash': '0xd735942233dd5ca4a3c25c51158e1eef0402af2f072472c8b4d9fc43d5d86a1a', 'from': '0x953476b5c52aac604620ca23d85073517d656112', 'to': '0x1241746ad3a879dae659a3c8f4955f5f69302da4', 'value': 3244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xc15b8300', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:12:39.000Z'}}, {'blockNum': '0x7b4d82', 'uniqueId': '0xff7747dbea7b4a8efe3a9d403462ce12944d7cf886395cd2c8191e89ee4ef96e:log:25', 'hash': '0xff7747dbea7b4a8efe3a9d403462ce12944d7cf886395cd2c8191e89ee4ef96e', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4692.121928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0117ac1948', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:12:41.000Z'}}, {'blockNum': '0x7b4d82', 'uniqueId': '0xff7747dbea7b4a8efe3a9d403462ce12944d7cf886395cd2c8191e89ee4ef96e:log:29', 'hash': '0xff7747dbea7b4a8efe3a9d403462ce12944d7cf886395cd2c8191e89ee4ef96e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x90d1e63fd61bedee4447ca9398d0d15cdbd4dd42', 'value': 4692.121928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0117ac1948', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:12:41.000Z'}}, {'blockNum': '0x7b4d84', 'uniqueId': '0x8b7461eb3acf88e5f268fa0bbae8af199ea8f065911d908bd0aaa8cc6183fc2d:log:21', 'hash': '0x8b7461eb3acf88e5f268fa0bbae8af199ea8f065911d908bd0aaa8cc6183fc2d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'value': 44164.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0a4865bce0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:13:19.000Z'}}, {'blockNum': '0x7b4d84', 'uniqueId': '0xa506891aae8bdb2731b24e498c3fc4b4d1930decc3654910cc98bc0670e1d006:log:33', 'hash': '0xa506891aae8bdb2731b24e498c3fc4b4d1930decc3654910cc98bc0670e1d006', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 32567.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0795298fa0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:13:19.000Z'}}, {'blockNum': '0x7b4d84', 'uniqueId': '0xae83b6342bfdcefb4ff9c110f7cb7de235eb540a926682a3069d312770ce54c3:log:34', 'hash': '0xae83b6342bfdcefb4ff9c110f7cb7de235eb540a926682a3069d312770ce54c3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 880.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x34784fe0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:13:19.000Z'}}, {'blockNum': '0x7b4d84', 'uniqueId': '0x4eefb6750f9458cf03f57d04660ea0e1108367cb1045f47766a8fc4faa1c95d3:log:36', 'hash': '0x4eefb6750f9458cf03f57d04660ea0e1108367cb1045f47766a8fc4faa1c95d3', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 1413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5438ab40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:13:19.000Z'}}, {'blockNum': '0x7b4d84', 'uniqueId': '0x5a73e7e623e78705689e3d206b3f0fb28a973d8b4b816d535d25ddf57436bccb:log:38', 'hash': '0x5a73e7e623e78705689e3d206b3f0fb28a973d8b4b816d535d25ddf57436bccb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1095b99c20f15a61d35f367937b6d2bbbd6c0c5a', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01dcd65000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:13:19.000Z'}}, {'blockNum': '0x7b4d84', 'uniqueId': '0xd826d6c8f32d51e006d323961c56f827407299ec5b0d3c3b3135ac4c2ab5c951:log:39', 'hash': '0xd826d6c8f32d51e006d323961c56f827407299ec5b0d3c3b3135ac4c2ab5c951', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 75068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x117a66c700', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:13:19.000Z'}}, {'blockNum': '0x7b4d84', 'uniqueId': '0x1d32ef3bc2f2d3b2d7823f6418daf80bdc83703303b08d8ffcbd3eac33d649f2:log:55', 'hash': '0x1d32ef3bc2f2d3b2d7823f6418daf80bdc83703303b08d8ffcbd3eac33d649f2', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 6872.587483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0199a35cdb', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:13:19.000Z'}}, {'blockNum': '0x7b4d84', 'uniqueId': '0x1d32ef3bc2f2d3b2d7823f6418daf80bdc83703303b08d8ffcbd3eac33d649f2:log:57', 'hash': '0x1d32ef3bc2f2d3b2d7823f6418daf80bdc83703303b08d8ffcbd3eac33d649f2', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 6872.587483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0199a35cdb', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:13:19.000Z'}}, {'blockNum': '0x7b4d86', 'uniqueId': '0x6492ecfbcc437a0c48ca63919fc4c1a3bd516d6b1b5ce5f1d3446b892cc73820:log:117', 'hash': '0x6492ecfbcc437a0c48ca63919fc4c1a3bd516d6b1b5ce5f1d3446b892cc73820', 'from': '0x21e8998e92f3ed241330f1f419549c570535154d', 'to': '0xf4343d247267345d15d777af633c2c477ae6a43a', 'value': 258.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0f6dbcd0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:14:15.000Z'}}, {'blockNum': '0x7b4d88', 'uniqueId': '0x4f58d4ca8cd37b1c5554a00bf1ea44706cef4d7c5e28b2b6bb965826e2ba7af9:log:38', 'hash': '0x4f58d4ca8cd37b1c5554a00bf1ea44706cef4d7c5e28b2b6bb965826e2ba7af9', 'from': '0x90d1e63fd61bedee4447ca9398d0d15cdbd4dd42', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4692.121928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0117ac1948', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:15:09.000Z'}}, {'blockNum': '0x7b4d88', 'uniqueId': '0x4f58d4ca8cd37b1c5554a00bf1ea44706cef4d7c5e28b2b6bb965826e2ba7af9:log:40', 'hash': '0x4f58d4ca8cd37b1c5554a00bf1ea44706cef4d7c5e28b2b6bb965826e2ba7af9', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 4692.121928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0117ac1948', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:15:09.000Z'}}, {'blockNum': '0x7b4d8a', 'uniqueId': '0xd960624be7b77f5e4b8d861a7a2242b9c802900b0d5d98c0869aa617ab0fa0e4:log:11', 'hash': '0xd960624be7b77f5e4b8d861a7a2242b9c802900b0d5d98c0869aa617ab0fa0e4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 27782.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0677f44160', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:16:28.000Z'}}, {'blockNum': '0x7b4d91', 'uniqueId': '0x11f97af2173fe63f58c809619635ab5e1cd4183699e77cd4c24599e755aa2c3c:log:37', 'hash': '0x11f97af2173fe63f58c809619635ab5e1cd4183699e77cd4c24599e755aa2c3c', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'value': 14895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0377cfa9c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:17:23.000Z'}}, {'blockNum': '0x7b4d91', 'uniqueId': '0xdf11d2a56442da97701bbd258ad64bc683c3c7cde3c4ccde37ae8a4e49559c7a:log:38', 'hash': '0xdf11d2a56442da97701bbd258ad64bc683c3c7cde3c4ccde37ae8a4e49559c7a', 'from': '0xdd7ebfd96ed480b5193df060bba8813b3469c4ff', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 3400.347015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xcaad2d87', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:17:23.000Z'}}, {'blockNum': '0x7b4d92', 'uniqueId': '0xaf257433d9376166eee3f9c55f769ad88ee0542ee917840f25c9ca94475cc419:log:90', 'hash': '0xaf257433d9376166eee3f9c55f769ad88ee0542ee917840f25c9ca94475cc419', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 89750.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x14e588e560', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:18:06.000Z'}}, {'blockNum': '0x7b4d92', 'uniqueId': '0x05eb3c0550721762b6c6a6ce5557f7f73603366a6643d66f3b3e4f7d9ea1681a:log:91', 'hash': '0x05eb3c0550721762b6c6a6ce5557f7f73603366a6643d66f3b3e4f7d9ea1681a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 36558.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08830b6360', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:18:06.000Z'}}, {'blockNum': '0x7b4d93', 'uniqueId': '0xf3bc16f10672f748639b86bddeca1579db4aa76373bc04d264747d2054cb976e:log:0', 'hash': '0xf3bc16f10672f748639b86bddeca1579db4aa76373bc04d264747d2054cb976e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 50060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ba7cefb00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:18:35.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x8530822fc27e2db681f21f50ce1f28495c3f7d04546a27d8dc50661c22fbeaa5:log:9', 'hash': '0x8530822fc27e2db681f21f50ce1f28495c3f7d04546a27d8dc50661c22fbeaa5', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 109412.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x19798212b0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0xfca1497e904b5ad62186ba14b83ab142bddcb5d2d68b807b08ef5e3528486804:log:10', 'hash': '0xfca1497e904b5ad62186ba14b83ab142bddcb5d2d68b807b08ef5e3528486804', 'from': '0x8cda0badb15c2c4abfbc9157a61b0501c0d3e499', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x022283d640', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x010238c1374f52fa0b065e3378f5e619b1d044071437c0ef2677223176363fac:log:13', 'hash': '0x010238c1374f52fa0b065e3378f5e619b1d044071437c0ef2677223176363fac', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xdde878c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x6f578c88bceac95d62630a4822851ba6a455db81886b14eef6a75b046ef08a4a:log:14', 'hash': '0x6f578c88bceac95d62630a4822851ba6a455db81886b14eef6a75b046ef08a4a', 'from': '0x926733222a0c0a45e8e7c9ed95b811d5ecb8c57a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 315233.462267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x496560e7fb', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0xb31cce4d84faa2930a92a2b2011a483c0434ba7509e966d5ac8541686c258b5b:log:15', 'hash': '0xb31cce4d84faa2930a92a2b2011a483c0434ba7509e966d5ac8541686c258b5b', 'from': '0x81dbc5cbbc8678268eaeacddf75e705a0d6297ef', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 61167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e3dd659c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x62c285ea3d54f7acc9d856fec9c179214a6cdeda3dfbbe9b3d14674efc3f7f52:log:16', 'hash': '0x62c285ea3d54f7acc9d856fec9c179214a6cdeda3dfbbe9b3d14674efc3f7f52', 'from': '0x1241746ad3a879dae659a3c8f4955f5f69302da4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xc15b8300', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x901efa70235559bd866365e9b163ddc8b970354c52ba3fb591576858551771c7:log:18', 'hash': '0x901efa70235559bd866365e9b163ddc8b970354c52ba3fb591576858551771c7', 'from': '0x6c12d99d27ca6cd1c0818dea4d8304c09de7aa85', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 989.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3af53b30', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0xce35789ce460b201194b6b343d5ed1e26e8e70d1e1154b42ccafed06de1f4508:log:19', 'hash': '0xce35789ce460b201194b6b343d5ed1e26e8e70d1e1154b42ccafed06de1f4508', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x045bfa4ec0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0xe3caf3386e10614437853c8bec0c246105a7ba77e87da84e0920086b78d13706:log:20', 'hash': '0xe3caf3386e10614437853c8bec0c246105a7ba77e87da84e0920086b78d13706', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41616.823906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09b08e5662', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0xb047b1c35245e869941a6aa5ac632906c2f044a1a7264423dbd8343e70861819:log:22', 'hash': '0xb047b1c35245e869941a6aa5ac632906c2f044a1a7264423dbd8343e70861819', 'from': '0x4395b47280917914e04ec507593e110b81dbbaa2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13186.795184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0311fe86b0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x7215b77d04921ca9396dbf66f01121a451c6b28832bc8d8c6c39addbec3aa0c7:log:23', 'hash': '0x7215b77d04921ca9396dbf66f01121a451c6b28832bc8d8c6c39addbec3aa0c7', 'from': '0x34d82a1fbd19f093199ece4aff7427c35faece02', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 255048.722899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b6216a9d3', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x18b33607210c5cd4b04361ccb7c644a0e6f5a772a25d4a694b5f3cd38fc227c3:log:24', 'hash': '0x18b33607210c5cd4b04361ccb7c644a0e6f5a772a25d4a694b5f3cd38fc227c3', 'from': '0x159ec84e3be0988de12efe218cd3a02d6b4e8e54', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17426.207394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x040eaed2a2', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0xdf21a188ed472344828e07f727db9e05d0fa7802c746c749eeaaa27b8fcf6d25:log:25', 'hash': '0xdf21a188ed472344828e07f727db9e05d0fa7802c746c749eeaaa27b8fcf6d25', 'from': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x117a66c700', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x9dd7b3bdfcff31ff6522edb00573109ec5004973739e62ceda14f920fb5df8fd:log:26', 'hash': '0x9dd7b3bdfcff31ff6522edb00573109ec5004973739e62ceda14f920fb5df8fd', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 349090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x514762ac80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x9e528f5d96296360380828750399234766a694b4720b2653c1cefcfe25fc81b7:log:28', 'hash': '0x9e528f5d96296360380828750399234766a694b4720b2653c1cefcfe25fc81b7', 'from': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0b829d7f00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x70164bf29dee75e7b400a23144f93fe903f93171c0fc4cf9fb3568f005ec90de:log:29', 'hash': '0x70164bf29dee75e7b400a23144f93fe903f93171c0fc4cf9fb3568f005ec90de', 'from': '0xb1ab487c5784f5bdd34a93e02e598bc99fcc68af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1226051.013313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x011d7655cac1', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x01be651542349c0782125dea4f06e980e0d93367d8ba40d0eeba21fc331b1e87:log:30', 'hash': '0x01be651542349c0782125dea4f06e980e0d93367d8ba40d0eeba21fc331b1e87', 'from': '0x8f36058152b5a012ce63941f803bf6d2f17af5d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b4e7ec0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0x7ea34ef24664db22cda21bb181ea43b16c3aa833bb7896f9c62fb333c75b8efc:log:31', 'hash': '0x7ea34ef24664db22cda21bb181ea43b16c3aa833bb7896f9c62fb333c75b8efc', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 237277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x373ecfb140', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d94', 'uniqueId': '0xae2a78180cba5e1b72446cb299f75dd9102fab97e1f9c8b8d6f877101e4433f7:log:33', 'hash': '0xae2a78180cba5e1b72446cb299f75dd9102fab97e1f9c8b8d6f877101e4433f7', 'from': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17224.850823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0402ae5d87', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:19:10.000Z'}}, {'blockNum': '0x7b4d97', 'uniqueId': '0xa3be8d1d187e6214e11816c71d22c0f51a105554012a6fb059a5b2805eecb623:log:1', 'hash': '0xa3be8d1d187e6214e11816c71d22c0f51a105554012a6fb059a5b2805eecb623', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xcd329335ad7cbc26f9a142271b5313d961b108c8', 'value': 27066.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x064d46f660', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:20:32.000Z'}}, {'blockNum': '0x7b4d9d', 'uniqueId': '0x782bc1b24392535128c99d4cd243c80ba57e6d4f163c664ac77bf79d738364b0:log:0', 'hash': '0x782bc1b24392535128c99d4cd243c80ba57e6d4f163c664ac77bf79d738364b0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7fa4b25c3d29e8b9eed8da649fa5c13fb6bcc392', 'value': 15895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x03b36a73c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:21:14.000Z'}}, {'blockNum': '0x7b4d9d', 'uniqueId': '0xd1cfc686b7b4179954942d5052d965e82bef6aa0bce31d9950f0056fb1821264:log:3', 'hash': '0xd1cfc686b7b4179954942d5052d965e82bef6aa0bce31d9950f0056fb1821264', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2466.462475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x93033b0b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:21:14.000Z'}}, {'blockNum': '0x7b4d9d', 'uniqueId': '0xd1cfc686b7b4179954942d5052d965e82bef6aa0bce31d9950f0056fb1821264:log:5', 'hash': '0xd1cfc686b7b4179954942d5052d965e82bef6aa0bce31d9950f0056fb1821264', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 2466.462475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x93033b0b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:21:14.000Z'}}, {'blockNum': '0x7b4d9d', 'uniqueId': '0xd1cfc686b7b4179954942d5052d965e82bef6aa0bce31d9950f0056fb1821264:log:11', 'hash': '0xd1cfc686b7b4179954942d5052d965e82bef6aa0bce31d9950f0056fb1821264', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2466.462475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x93033b0b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:21:14.000Z'}}, {'blockNum': '0x7b4d9d', 'uniqueId': '0xd1cfc686b7b4179954942d5052d965e82bef6aa0bce31d9950f0056fb1821264:log:13', 'hash': '0xd1cfc686b7b4179954942d5052d965e82bef6aa0bce31d9950f0056fb1821264', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2466.462475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x93033b0b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:21:14.000Z'}}, {'blockNum': '0x7b4da3', 'uniqueId': '0xa28920018d07f11c6572a1c877e311759442abbcb9921cdd2ef79f5e8599b859:log:117', 'hash': '0xa28920018d07f11c6572a1c877e311759442abbcb9921cdd2ef79f5e8599b859', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'value': 4995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0129b9a6c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:22:40.000Z'}}, {'blockNum': '0x7b4da4', 'uniqueId': '0x53d6b684f18a432a9091cf8a1e3f5ddb025c0117647b5c5d14c4c033d958ee66:log:46', 'hash': '0x53d6b684f18a432a9091cf8a1e3f5ddb025c0117647b5c5d14c4c033d958ee66', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 365.78149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x15cd61f2', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:22:52.000Z'}}, {'blockNum': '0x7b4da4', 'uniqueId': '0x53d6b684f18a432a9091cf8a1e3f5ddb025c0117647b5c5d14c4c033d958ee66:log:50', 'hash': '0x53d6b684f18a432a9091cf8a1e3f5ddb025c0117647b5c5d14c4c033d958ee66', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x5deec130774e2eaca1d701e408a2a307e9b42445', 'value': 365.78149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x15cd61f2', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:22:52.000Z'}}, {'blockNum': '0x7b4da6', 'uniqueId': '0xf22cb8d2422cf6d17ac05a5a3bfe15727dff3c879de16e149577d9d345851287:log:1', 'hash': '0xf22cb8d2422cf6d17ac05a5a3bfe15727dff3c879de16e149577d9d345851287', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4e9ce36e442e55ecd9025b9a6e0d88485d628a67', 'value': 4442529.479901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x040a5b643cdd', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:23:54.000Z'}}, {'blockNum': '0x7b4da6', 'uniqueId': '0xaa04e28e9445bfaf8f8b1ba31bed4d6ded28316520a23dc0abc35dc1f74b37a9:log:39', 'hash': '0xaa04e28e9445bfaf8f8b1ba31bed4d6ded28316520a23dc0abc35dc1f74b37a9', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:23:54.000Z'}}, {'blockNum': '0x7b4da6', 'uniqueId': '0xbce94f23a91c10346eef3ce293fff8b25da3b4baf6b42203d19ae6a6a461fd64:log:64', 'hash': '0xbce94f23a91c10346eef3ce293fff8b25da3b4baf6b42203d19ae6a6a461fd64', 'from': '0x3ea914fc2934ffdf43687c09b1a7af0aa05055e5', 'to': '0xbe2358c12c1aedbae6096692a59ca96f16671c4d', 'value': 7106.587707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01a795ec3b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:23:54.000Z'}}, {'blockNum': '0x7b4da7', 'uniqueId': '0x9c8fecddf8b3179ef31b5ffd58897dda7a6c2fa261c532ef0ea63ba762b4d05b:log:49', 'hash': '0x9c8fecddf8b3179ef31b5ffd58897dda7a6c2fa261c532ef0ea63ba762b4d05b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2461.409516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x92b620ec', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:24:21.000Z'}}, {'blockNum': '0x7b4da7', 'uniqueId': '0x9c8fecddf8b3179ef31b5ffd58897dda7a6c2fa261c532ef0ea63ba762b4d05b:log:51', 'hash': '0x9c8fecddf8b3179ef31b5ffd58897dda7a6c2fa261c532ef0ea63ba762b4d05b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2461.409516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x92b620ec', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:24:21.000Z'}}, {'blockNum': '0x7b4da7', 'uniqueId': '0x9c8fecddf8b3179ef31b5ffd58897dda7a6c2fa261c532ef0ea63ba762b4d05b:log:56', 'hash': '0x9c8fecddf8b3179ef31b5ffd58897dda7a6c2fa261c532ef0ea63ba762b4d05b', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2461.407053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x92b6174d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:24:21.000Z'}}, {'blockNum': '0x7b4da7', 'uniqueId': '0x9c8fecddf8b3179ef31b5ffd58897dda7a6c2fa261c532ef0ea63ba762b4d05b:log:58', 'hash': '0x9c8fecddf8b3179ef31b5ffd58897dda7a6c2fa261c532ef0ea63ba762b4d05b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2461.407053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x92b6174d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:24:21.000Z'}}, {'blockNum': '0x7b4daa', 'uniqueId': '0x85c8e7f121ed1d466286561c8d374f767d0b074ac850a904b9a4c383775a4a57:log:18', 'hash': '0x85c8e7f121ed1d466286561c8d374f767d0b074ac850a904b9a4c383775a4a57', 'from': '0xf8c4a9afbe0200b7607e9fecb5a5ff398aa26014', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 44164.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0a4865bce0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:24:38.000Z'}}, {'blockNum': '0x7b4dab', 'uniqueId': '0x4a677deae6d0fcfcb7c0353d11e1ae24917bf6dc9baf28f5c0503bb29b610be7:log:5', 'hash': '0x4a677deae6d0fcfcb7c0353d11e1ae24917bf6dc9baf28f5c0503bb29b610be7', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 32567.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0795298fa0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:24:54.000Z'}}, {'blockNum': '0x7b4dad', 'uniqueId': '0x69a9ad5f1fa0fb21ed9104fe3fdc293c715ed277dc5f5a70fb5e7ea3dc7f4dd5:log:10', 'hash': '0x69a9ad5f1fa0fb21ed9104fe3fdc293c715ed277dc5f5a70fb5e7ea3dc7f4dd5', 'from': '0x2583c072a6546a55f6989ca0536828958d1c0c5c', 'to': '0x3a59886ba78ac4a175b0236346e5bfab07963e48', 'value': 3017.333013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb3d8d915', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:25:38.000Z'}}, {'blockNum': '0x7b4daf', 'uniqueId': '0xcd01eac9bfff10798c175a8a553f6ace0a914fbbb7af59f541ceaec27abe1476:log:5', 'hash': '0xcd01eac9bfff10798c175a8a553f6ace0a914fbbb7af59f541ceaec27abe1476', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 352497.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x521279f220', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:26:04.000Z'}}, {'blockNum': '0x7b4daf', 'uniqueId': '0x6ba6f0ddbfa4a940844a15b15daf08b4667814e6c0ba3ba529d4aaf6ae591f0e:log:6', 'hash': '0x6ba6f0ddbfa4a940844a15b15daf08b4667814e6c0ba3ba529d4aaf6ae591f0e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xba548f63a9b6ffd042082b2979842f631fb41768', 'value': 42488.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09e48001e0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:26:04.000Z'}}, {'blockNum': '0x7b4db4', 'uniqueId': '0x3ddc569c7cad54caddc205b816af6501d83f94f68c317799a00c790f9c9d365d:log:21', 'hash': '0x3ddc569c7cad54caddc205b816af6501d83f94f68c317799a00c790f9c9d365d', 'from': '0x907c7fe8f5ef173ef1c585f3cf820ebd7eacee0b', 'to': '0x6279aa8ff362bbbf9cfd200415e9fd9696d60284', 'value': 566.635968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x21c62dc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:26:46.000Z'}}, {'blockNum': '0x7b4db4', 'uniqueId': '0xaa64ffc1bd89374d631dc6d211e05f673049a05ddc2b687cb873da215d07505b:log:45', 'hash': '0xaa64ffc1bd89374d631dc6d211e05f673049a05ddc2b687cb873da215d07505b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2683.43615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9ff1fc76', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:26:46.000Z'}}, {'blockNum': '0x7b4db4', 'uniqueId': '0xaa64ffc1bd89374d631dc6d211e05f673049a05ddc2b687cb873da215d07505b:log:47', 'hash': '0xaa64ffc1bd89374d631dc6d211e05f673049a05ddc2b687cb873da215d07505b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2683.43615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9ff1fc76', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:26:46.000Z'}}, {'blockNum': '0x7b4db4', 'uniqueId': '0xaa64ffc1bd89374d631dc6d211e05f673049a05ddc2b687cb873da215d07505b:log:52', 'hash': '0xaa64ffc1bd89374d631dc6d211e05f673049a05ddc2b687cb873da215d07505b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2683.43615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9ff1fc76', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:26:46.000Z'}}, {'blockNum': '0x7b4db4', 'uniqueId': '0xaa64ffc1bd89374d631dc6d211e05f673049a05ddc2b687cb873da215d07505b:log:54', 'hash': '0xaa64ffc1bd89374d631dc6d211e05f673049a05ddc2b687cb873da215d07505b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2683.43615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9ff1fc76', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:26:46.000Z'}}, {'blockNum': '0x7b4dbf', 'uniqueId': '0xb73ff5f8293d4cc23c660ea9468ad22debabc5290d0aa9dcb0bbe9d833b8fce7:log:0', 'hash': '0xb73ff5f8293d4cc23c660ea9468ad22debabc5290d0aa9dcb0bbe9d833b8fce7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb6fe989ab91ecb612b00e00b7d553f6860dd67e5', 'value': 1226035.123313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x011d75635471', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:28:17.000Z'}}, {'blockNum': '0x7b4dbf', 'uniqueId': '0x4da0617a6c3df2a854ac3c0e5284b3c30700a723afe08a19656657df0c99ae05:log:1', 'hash': '0x4da0617a6c3df2a854ac3c0e5284b3c30700a723afe08a19656657df0c99ae05', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2e91b9d7642138ce6b0d0a6c9e6159e476c22131', 'value': 260.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0f83dce0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:28:17.000Z'}}, {'blockNum': '0x7b4dc0', 'uniqueId': '0x20ee4f49867ef665470a64101c1792bd4614348f06b5dfa819ec9dae339fabcc:log:41', 'hash': '0x20ee4f49867ef665470a64101c1792bd4614348f06b5dfa819ec9dae339fabcc', 'from': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0129b9a6c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:28:20.000Z'}}, {'blockNum': '0x7b4dc0', 'uniqueId': '0xb9861325826536af1a1109044d346bc3f635fc9c137d6f97e1ac94adfe715405:log:44', 'hash': '0xb9861325826536af1a1109044d346bc3f635fc9c137d6f97e1ac94adfe715405', 'from': '0x3178b39cde153c851796cba961f9775df7787d63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22921.001344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x055632b980', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:28:20.000Z'}}, {'blockNum': '0x7b4dc0', 'uniqueId': '0x5d0e1480595c787840a08f4ede27d5b0df6b828421f36fc335867e27e5610344:log:46', 'hash': '0x5d0e1480595c787840a08f4ede27d5b0df6b828421f36fc335867e27e5610344', 'from': '0x6db45846d5913bdd5b4b39c03f5299ae9a8cdede', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0377cfa9c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:28:20.000Z'}}, {'blockNum': '0x7b4dc0', 'uniqueId': '0xd7af5c851084c3a0af53b794f3b876bbc56cbad8cdfbbde6e9a3bc9463a6c3a9:log:47', 'hash': '0xd7af5c851084c3a0af53b794f3b876bbc56cbad8cdfbbde6e9a3bc9463a6c3a9', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05d21dba00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:28:20.000Z'}}, {'blockNum': '0x7b4dc0', 'uniqueId': '0x1895c3661a0e4b872b294f3ea851aae371a14cd7306adee2e4c8aa973b056bfa:log:48', 'hash': '0x1895c3661a0e4b872b294f3ea851aae371a14cd7306adee2e4c8aa973b056bfa', 'from': '0x3a59886ba78ac4a175b0236346e5bfab07963e48', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3017.333013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb3d8d915', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:28:20.000Z'}}, {'blockNum': '0x7b4dc1', 'uniqueId': '0xa6a301312dbae89b02acc37cdb639ba1c23cbd0fa5097bbd206a68ff23c9f6f9:log:4', 'hash': '0xa6a301312dbae89b02acc37cdb639ba1c23cbd0fa5097bbd206a68ff23c9f6f9', 'from': '0x8e3779c8bfeecb7e142be811de04dd0bb5367229', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1883.354346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x7041b4ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:29:14.000Z'}}, {'blockNum': '0x7b4dc2', 'uniqueId': '0x45c07f60ebb6e163b12080fb72b3aa5b7c83122cb6fef865460b8a88ec9f9de6:log:10', 'hash': '0x45c07f60ebb6e163b12080fb72b3aa5b7c83122cb6fef865460b8a88ec9f9de6', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 506588.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x75f3027c40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:29:21.000Z'}}, {'blockNum': '0x7b4dc2', 'uniqueId': '0x90a400f08c915874023916849f0835a5ae042a93f1d0ddcac725236e6c6f80e9:log:77', 'hash': '0x90a400f08c915874023916849f0835a5ae042a93f1d0ddcac725236e6c6f80e9', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1564.338728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5d3dea28', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:29:21.000Z'}}, {'blockNum': '0x7b4dc2', 'uniqueId': '0x90a400f08c915874023916849f0835a5ae042a93f1d0ddcac725236e6c6f80e9:log:79', 'hash': '0x90a400f08c915874023916849f0835a5ae042a93f1d0ddcac725236e6c6f80e9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1564.338728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5d3dea28', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:29:21.000Z'}}, {'blockNum': '0x7b4dc2', 'uniqueId': '0x90a400f08c915874023916849f0835a5ae042a93f1d0ddcac725236e6c6f80e9:log:84', 'hash': '0x90a400f08c915874023916849f0835a5ae042a93f1d0ddcac725236e6c6f80e9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1564.338728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5d3dea28', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:29:21.000Z'}}, {'blockNum': '0x7b4dc2', 'uniqueId': '0x90a400f08c915874023916849f0835a5ae042a93f1d0ddcac725236e6c6f80e9:log:86', 'hash': '0x90a400f08c915874023916849f0835a5ae042a93f1d0ddcac725236e6c6f80e9', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1564.338728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5d3dea28', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:29:21.000Z'}}, {'blockNum': '0x7b4dc3', 'uniqueId': '0x659720ce71ac6b23903adaa1d7e3dd60294e005ab2f7785d77fee785e0b8598e:log:0', 'hash': '0x659720ce71ac6b23903adaa1d7e3dd60294e005ab2f7785d77fee785e0b8598e', 'from': '0xcd329335ad7cbc26f9a142271b5313d961b108c8', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 27066.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x064d46f660', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:29:24.000Z'}}, {'blockNum': '0x7b4dc3', 'uniqueId': '0x2bd83e9b9033fde034f053e0c60d534ede5faa1daa46938b1d69f2a122e41754:log:17', 'hash': '0x2bd83e9b9033fde034f053e0c60d534ede5faa1daa46938b1d69f2a122e41754', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0xcb3cce746eddf4989fad362e026bb61d9aad777f', 'value': 32574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x07958fcb80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:29:24.000Z'}}, {'blockNum': '0x7b4dc8', 'uniqueId': '0x7e37b30a9fb3879f11ac0fc5b8c2c5a1a2585eb7f6fbbcaec58d3c2c91145f8f:log:1', 'hash': '0x7e37b30a9fb3879f11ac0fc5b8c2c5a1a2585eb7f6fbbcaec58d3c2c91145f8f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x71639531571a988930bdc0ac2b3fc45cd8cc5a29', 'value': 76890.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x11e704de60', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:30:37.000Z'}}, {'blockNum': '0x7b4dc8', 'uniqueId': '0x3d48cfac313e6150078600f797f5abe18f6d07fb6574125884664ded1385749a:log:2', 'hash': '0x3d48cfac313e6150078600f797f5abe18f6d07fb6574125884664ded1385749a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0bde6a4fc001d927891560cbadcdff0ffb0ff60c', 'value': 17811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04259e4ac0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:30:37.000Z'}}, {'blockNum': '0x7b4dc8', 'uniqueId': '0x68a6f3c05a59cdb76afbd754c6f182742c62dfe4103543a7237ba90fab695a48:log:30', 'hash': '0x68a6f3c05a59cdb76afbd754c6f182742c62dfe4103543a7237ba90fab695a48', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1877.156988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6fe3247c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:30:37.000Z'}}, {'blockNum': '0x7b4dc8', 'uniqueId': '0x68a6f3c05a59cdb76afbd754c6f182742c62dfe4103543a7237ba90fab695a48:log:32', 'hash': '0x68a6f3c05a59cdb76afbd754c6f182742c62dfe4103543a7237ba90fab695a48', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1877.156988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6fe3247c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:30:37.000Z'}}, {'blockNum': '0x7b4dc8', 'uniqueId': '0x68a6f3c05a59cdb76afbd754c6f182742c62dfe4103543a7237ba90fab695a48:log:37', 'hash': '0x68a6f3c05a59cdb76afbd754c6f182742c62dfe4103543a7237ba90fab695a48', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1877.156988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6fe3247c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:30:37.000Z'}}, {'blockNum': '0x7b4dc8', 'uniqueId': '0x68a6f3c05a59cdb76afbd754c6f182742c62dfe4103543a7237ba90fab695a48:log:39', 'hash': '0x68a6f3c05a59cdb76afbd754c6f182742c62dfe4103543a7237ba90fab695a48', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1877.156988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6fe3247c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:30:37.000Z'}}, {'blockNum': '0x7b4dcc', 'uniqueId': '0xf0fcf2d31c1f51fa325fdb01f6e9f31eb07285f27646bc9cc406ccf456f4ca9f:log:37', 'hash': '0xf0fcf2d31c1f51fa325fdb01f6e9f31eb07285f27646bc9cc406ccf456f4ca9f', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 50060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ba7cefb00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:31:26.000Z'}}, {'blockNum': '0x7b4dcd', 'uniqueId': '0xe1b4a2bd41e045b77809fcdd170cc999d536778987d518c9001e14745d10d5f2:log:60', 'hash': '0xe1b4a2bd41e045b77809fcdd170cc999d536778987d518c9001e14745d10d5f2', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1200.737629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4791cd5d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:31:55.000Z'}}, {'blockNum': '0x7b4dcd', 'uniqueId': '0xe1b4a2bd41e045b77809fcdd170cc999d536778987d518c9001e14745d10d5f2:log:62', 'hash': '0xe1b4a2bd41e045b77809fcdd170cc999d536778987d518c9001e14745d10d5f2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1200.737629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4791cd5d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:31:55.000Z'}}, {'blockNum': '0x7b4dcd', 'uniqueId': '0xe1b4a2bd41e045b77809fcdd170cc999d536778987d518c9001e14745d10d5f2:log:67', 'hash': '0xe1b4a2bd41e045b77809fcdd170cc999d536778987d518c9001e14745d10d5f2', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1200.737629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4791cd5d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:31:55.000Z'}}, {'blockNum': '0x7b4dcd', 'uniqueId': '0xe1b4a2bd41e045b77809fcdd170cc999d536778987d518c9001e14745d10d5f2:log:69', 'hash': '0xe1b4a2bd41e045b77809fcdd170cc999d536778987d518c9001e14745d10d5f2', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1200.737629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4791cd5d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:31:55.000Z'}}, {'blockNum': '0x7b4dd6', 'uniqueId': '0xe4cb496e1b9c74a27661d123ad696d6221f406fd1c7281b63e8cfb46adf67f52:log:31', 'hash': '0xe4cb496e1b9c74a27661d123ad696d6221f406fd1c7281b63e8cfb46adf67f52', 'from': '0x71639531571a988930bdc0ac2b3fc45cd8cc5a29', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 76890.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x11e704de60', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:33:39.000Z'}}, {'blockNum': '0x7b4dde', 'uniqueId': '0xfe8275064a16405efb183bfa59dbd69ac214221f30e417fb554df9d8342f15c6:log:2', 'hash': '0xfe8275064a16405efb183bfa59dbd69ac214221f30e417fb554df9d8342f15c6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 310626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4852c09c80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:34:49.000Z'}}, {'blockNum': '0x7b4dde', 'uniqueId': '0xfa00cec7b46650ef32b1ff0c24bd58931fe30361e6aec18b67527f7faf5d17ae:log:8', 'hash': '0xfa00cec7b46650ef32b1ff0c24bd58931fe30361e6aec18b67527f7faf5d17ae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 31383.558463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x074e9b193f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:34:49.000Z'}}, {'blockNum': '0x7b4de3', 'uniqueId': '0x9775ef31d23dfeaabac115cb50000e1d5196c69ce454f3dd710bbae6ff339621:log:0', 'hash': '0x9775ef31d23dfeaabac115cb50000e1d5196c69ce454f3dd710bbae6ff339621', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 336310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4e4da35980', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:35:24.000Z'}}, {'blockNum': '0x7b4de3', 'uniqueId': '0x2df4259d9e6d97536d67562fb7c9010c598d44b95720ffcb962e4475677eb332:log:3', 'hash': '0x2df4259d9e6d97536d67562fb7c9010c598d44b95720ffcb962e4475677eb332', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 17401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x040d2e3040', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:35:24.000Z'}}, {'blockNum': '0x7b4de3', 'uniqueId': '0xb898c14b9ba3b526b861e0f29fc4d2c9a5dca1ee7f69cb43421f2b3aaa5ad63c:log:19', 'hash': '0xb898c14b9ba3b526b861e0f29fc4d2c9a5dca1ee7f69cb43421f2b3aaa5ad63c', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 23031.356418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x055cc69c02', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:35:24.000Z'}}, {'blockNum': '0x7b4dea', 'uniqueId': '0xa2926bcd1d2851b5cf3fd4d7be60be3af9d82e107379cbdda3c5558cea4c58a8:log:23', 'hash': '0xa2926bcd1d2851b5cf3fd4d7be60be3af9d82e107379cbdda3c5558cea4c58a8', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2757.303319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa4591c17', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:36:21.000Z'}}, {'blockNum': '0x7b4dea', 'uniqueId': '0xa2926bcd1d2851b5cf3fd4d7be60be3af9d82e107379cbdda3c5558cea4c58a8:log:27', 'hash': '0xa2926bcd1d2851b5cf3fd4d7be60be3af9d82e107379cbdda3c5558cea4c58a8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 2757.303319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa4591c17', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:36:21.000Z'}}, {'blockNum': '0x7b4ded', 'uniqueId': '0x3102e7a1579d4cbf64ce0839afe1ec94e2fe8b94b3c24bec080f2a33a053a773:log:8', 'hash': '0x3102e7a1579d4cbf64ce0839afe1ec94e2fe8b94b3c24bec080f2a33a053a773', 'from': '0x0bde6a4fc001d927891560cbadcdff0ffb0ff60c', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 17811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04259e4ac0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:36:52.000Z'}}, {'blockNum': '0x7b4dee', 'uniqueId': '0xb21b048dd3cddbff0b06aacdaf17c919f548bfc144d4048f22a6622690e49e78:log:4', 'hash': '0xb21b048dd3cddbff0b06aacdaf17c919f548bfc144d4048f22a6622690e49e78', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 8797.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x020c5c2520', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:37:02.000Z'}}, {'blockNum': '0x7b4df1', 'uniqueId': '0x34139edd5bb3db65afb77a83f96adefddc1b8c6d203e8aff60e7995c68261936:log:5', 'hash': '0x34139edd5bb3db65afb77a83f96adefddc1b8c6d203e8aff60e7995c68261936', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 9988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x025354c900', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:37:49.000Z'}}, {'blockNum': '0x7b4df6', 'uniqueId': '0xc24ca752cecdde46e888ae26cc98b090daced805e8da2b977ef5fff5b47af025:log:8', 'hash': '0xc24ca752cecdde46e888ae26cc98b090daced805e8da2b977ef5fff5b47af025', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23031.356418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x055cc69c02', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:39:05.000Z'}}, {'blockNum': '0x7b4df6', 'uniqueId': '0xa1646e29ad4b6d19b08eb6ae805c52f17d6c2854fea0a5c140d8a1d3b39b4196:log:9', 'hash': '0xa1646e29ad4b6d19b08eb6ae805c52f17d6c2854fea0a5c140d8a1d3b39b4196', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x040d2e3040', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:39:05.000Z'}}, {'blockNum': '0x7b4df7', 'uniqueId': '0x496f8e7b49d93530168ef5535a6d719a53da9ce0e677184cb6d639ad06502166:log:2', 'hash': '0x496f8e7b49d93530168ef5535a6d719a53da9ce0e677184cb6d639ad06502166', 'from': '0xcb3cce746eddf4989fad362e026bb61d9aad777f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x07958fcb80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:39:07.000Z'}}, {'blockNum': '0x7b4df7', 'uniqueId': '0x09fe1f135e6f9a5cb1035cfc830f10a33552a96167c88d576599ef727d76c3e8:log:3', 'hash': '0x09fe1f135e6f9a5cb1035cfc830f10a33552a96167c88d576599ef727d76c3e8', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 336310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4e4da35980', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:39:07.000Z'}}, {'blockNum': '0x7b4df8', 'uniqueId': '0xb818fb55a513133b8a4e6baa5569a91e199d5061ad0ff9e4c9bc21517727b645:log:3', 'hash': '0xb818fb55a513133b8a4e6baa5569a91e199d5061ad0ff9e4c9bc21517727b645', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x17d8c16c31eb8cb3dbdcd2defb23962d5223a260', 'value': 992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b20b800', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:39:11.000Z'}}, {'blockNum': '0x7b4dfc', 'uniqueId': '0xaea1ece619295ffcd94c35f56191763ff54368846dce82ae5b3561c51d8fd3ea:log:139', 'hash': '0xaea1ece619295ffcd94c35f56191763ff54368846dce82ae5b3561c51d8fd3ea', 'from': '0x3ea914fc2934ffdf43687c09b1a7af0aa05055e5', 'to': '0xbe2358c12c1aedbae6096692a59ca96f16671c4d', 'value': 720.127833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2aec4759', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:39:47.000Z'}}, {'blockNum': '0x7b4dfd', 'uniqueId': '0x7d346675fcc24b92ff09955a3ed6a9cbf1ae16e94de0610834d8543177f0bcb0:log:1', 'hash': '0x7d346675fcc24b92ff09955a3ed6a9cbf1ae16e94de0610834d8543177f0bcb0', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xd86a2944406deb684c8712cf0e93b95778a35393', 'value': 38555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08fa0e9cc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:40:09.000Z'}}, {'blockNum': '0x7b4dfe', 'uniqueId': '0x57338b10f75314df7fb990178b38754b0497be1c0ef5564ba89c63a91ac7a331:log:69', 'hash': '0x57338b10f75314df7fb990178b38754b0497be1c0ef5564ba89c63a91ac7a331', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0xf795b99220c119675d82e5ce37606a035121a5b5', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x051f4d5c00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:41:14.000Z'}}, {'blockNum': '0x7b4e03', 'uniqueId': '0xe6690c20c3315fb568dd7d03884008294f8a3d024529b98b07a8b9748f5d2f65:log:1', 'hash': '0xe6690c20c3315fb568dd7d03884008294f8a3d024529b98b07a8b9748f5d2f65', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2556.987115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x986886eb', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:42:19.000Z'}}, {'blockNum': '0x7b4e03', 'uniqueId': '0xe6690c20c3315fb568dd7d03884008294f8a3d024529b98b07a8b9748f5d2f65:log:3', 'hash': '0xe6690c20c3315fb568dd7d03884008294f8a3d024529b98b07a8b9748f5d2f65', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2556.987115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x986886eb', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:42:19.000Z'}}, {'blockNum': '0x7b4e07', 'uniqueId': '0x94d2b34c2a8e9b8d0a11eced7fefb98676f016cff0bb44a2cee19280091d3556:log:25', 'hash': '0x94d2b34c2a8e9b8d0a11eced7fefb98676f016cff0bb44a2cee19280091d3556', 'from': '0x1cc1453e04d04a238f0c0b7dfdbfb87f6fe15d1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1452.573658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x569483da', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:42:55.000Z'}}, {'blockNum': '0x7b4e07', 'uniqueId': '0x94d2b34c2a8e9b8d0a11eced7fefb98676f016cff0bb44a2cee19280091d3556:log:27', 'hash': '0x94d2b34c2a8e9b8d0a11eced7fefb98676f016cff0bb44a2cee19280091d3556', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1452.573658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x569483da', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:42:55.000Z'}}, {'blockNum': '0x7b4e0b', 'uniqueId': '0x91a2e92d2f17578661da3165c0777e71d26a304c4989db07fbd91f4c0ece6bc4:log:12', 'hash': '0x91a2e92d2f17578661da3165c0777e71d26a304c4989db07fbd91f4c0ece6bc4', 'from': '0xba548f63a9b6ffd042082b2979842f631fb41768', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 42488.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09e48001e0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:44:07.000Z'}}, {'blockNum': '0x7b4e0b', 'uniqueId': '0xcae49df7c67e1ac6d05fb122f9186662e953e990b325798d8d0ac786d9e0554d:log:14', 'hash': '0xcae49df7c67e1ac6d05fb122f9186662e953e990b325798d8d0ac786d9e0554d', 'from': '0xb6fe989ab91ecb612b00e00b7d553f6860dd67e5', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1226035.123313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x011d75635471', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:44:07.000Z'}}, {'blockNum': '0x7b4e0b', 'uniqueId': '0x0dd7e2e7fb75f0e8c963c56e45e64753029c2ed6219f68ce6363fb9bd9e586d0:log:20', 'hash': '0x0dd7e2e7fb75f0e8c963c56e45e64753029c2ed6219f68ce6363fb9bd9e586d0', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 31383.558463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x074e9b193f', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:44:07.000Z'}}, {'blockNum': '0x7b4e0f', 'uniqueId': '0xdb062f2fef27ef131a2084aa85bbb634e8a0e466cffb098ea5ffaa81d6508a20:log:7', 'hash': '0xdb062f2fef27ef131a2084aa85bbb634e8a0e466cffb098ea5ffaa81d6508a20', 'from': '0xd86a2944406deb684c8712cf0e93b95778a35393', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 38555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08fa0e9cc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:45:16.000Z'}}, {'blockNum': '0x7b4e16', 'uniqueId': '0xa96477be6b299f22179396bf6ee44076275498d44cbe65d1129c0b53ef4f3f53:log:0', 'hash': '0xa96477be6b299f22179396bf6ee44076275498d44cbe65d1129c0b53ef4f3f53', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 12010.14403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02cbdc411e', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:46:53.000Z'}}, {'blockNum': '0x7b4e17', 'uniqueId': '0x80389fd5f266cb5db38fbc74608375159c043026dd4558d8079b38fd30ae7818:log:0', 'hash': '0x80389fd5f266cb5db38fbc74608375159c043026dd4558d8079b38fd30ae7818', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 25659.622418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05f96ec412', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:47:00.000Z'}}, {'blockNum': '0x7b4e19', 'uniqueId': '0x5f9b946ea911731112a8150c243a31e7e2f1c1529a026321d1a2bd40a164976b:log:40', 'hash': '0x5f9b946ea911731112a8150c243a31e7e2f1c1529a026321d1a2bd40a164976b', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0xf795b99220c119675d82e5ce37606a035121a5b5', 'value': 9438.224359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02328fdfe7', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:47:17.000Z'}}, {'blockNum': '0x7b4e1e', 'uniqueId': '0xaf9f6aeaf286899f8fa668a590b29cf19488c7f36e4c7d3f47a58c7ec8fbf43b:log:8', 'hash': '0xaf9f6aeaf286899f8fa668a590b29cf19488c7f36e4c7d3f47a58c7ec8fbf43b', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x025354c900', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:49:02.000Z'}}, {'blockNum': '0x7b4e1e', 'uniqueId': '0x577c2236e96a9dd92925e086e482a8d13731b8764923a07cd5b9ae8473174a1e:log:10', 'hash': '0x577c2236e96a9dd92925e086e482a8d13731b8764923a07cd5b9ae8473174a1e', 'from': '0xf795b99220c119675d82e5ce37606a035121a5b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31438.224359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0751dd3be7', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:49:02.000Z'}}, {'blockNum': '0x7b4e32', 'uniqueId': '0x1c21ed41bf7b4c5e12a4c989d2f1fc867c4656c0868bda4af1da7bf9cc9dcc6c:log:41', 'hash': '0x1c21ed41bf7b4c5e12a4c989d2f1fc867c4656c0868bda4af1da7bf9cc9dcc6c', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 22785.001175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x054e1786d7', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:52:56.000Z'}}, {'blockNum': '0x7b4e32', 'uniqueId': '0xba87ad96a5744f9a97b9c2c7eb0e7334e5b7cd20b9015c905537cc18ab93d48e:log:43', 'hash': '0xba87ad96a5744f9a97b9c2c7eb0e7334e5b7cd20b9015c905537cc18ab93d48e', 'from': '0xff71b0a56724eb805004ca697f7744acb5444d16', 'to': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'value': 941.03435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x38170b6e', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:52:56.000Z'}}, {'blockNum': '0x7b4e32', 'uniqueId': '0xe931387d813888c7d9a7b76c65abffbf8e65db36dceca932b3e2b594535f54f1:log:69', 'hash': '0xe931387d813888c7d9a7b76c65abffbf8e65db36dceca932b3e2b594535f54f1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 8483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01f9a04ec0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:52:56.000Z'}}, {'blockNum': '0x7b4e42', 'uniqueId': '0x7ef679f5879713f0ad36659492d776fef064b98de8483d5b99e21f2b3d08a243:log:13', 'hash': '0x7ef679f5879713f0ad36659492d776fef064b98de8483d5b99e21f2b3d08a243', 'from': '0x7c06d1256ac2a0bbf0b25256c1fa1bb9eb091053', 'to': '0x03226e1f13bab2ea4a9bd10192a35c6be1057c01', 'value': 97.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05cfbb60', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:57:31.000Z'}}, {'blockNum': '0x7b4e45', 'uniqueId': '0x85506cd32178e4fb2b98d9b8b79fb5b494aa3ad79e0863d8d264255f9381f9eb:log:81', 'hash': '0x85506cd32178e4fb2b98d9b8b79fb5b494aa3ad79e0863d8d264255f9381f9eb', 'from': '0xdd7ebfd96ed480b5193df060bba8813b3469c4ff', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 3654.667574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xd9d5cd36', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:58:17.000Z'}}, {'blockNum': '0x7b4e47', 'uniqueId': '0x25c181bd4fac4f2357e4638e1716bb64ab6c2d1aea22b587b5ab78df7b20d996:log:3', 'hash': '0x25c181bd4fac4f2357e4638e1716bb64ab6c2d1aea22b587b5ab78df7b20d996', 'from': '0x3178b39cde153c851796cba961f9775df7787d63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22785.001175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x054e1786d7', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:59:01.000Z'}}, {'blockNum': '0x7b4e47', 'uniqueId': '0x6ab9517923e6179458ec78604ac9dcb6b4f5ea9bd9a994c467e721b311224e13:log:4', 'hash': '0x6ab9517923e6179458ec78604ac9dcb6b4f5ea9bd9a994c467e721b311224e13', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37669.766448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08c54b0530', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:59:01.000Z'}}, {'blockNum': '0x7b4e49', 'uniqueId': '0xc04f32889fae977281759f113699eac01ca9199579f231c1d0ddb8452d10907f:log:3', 'hash': '0xc04f32889fae977281759f113699eac01ca9199579f231c1d0ddb8452d10907f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 231173.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x35d3009f20', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:59:15.000Z'}}, {'blockNum': '0x7b4e49', 'uniqueId': '0x181134471d5b15fe30d1a9e30d5bdc3878f8c4c4008fc3f0cf38d43479ffe620:log:8', 'hash': '0x181134471d5b15fe30d1a9e30d5bdc3878f8c4c4008fc3f0cf38d43479ffe620', 'from': '0x9ad5ed16febc35d24f9e9d0bdde50e0eb7449c83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 941.03435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x38170b6e', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:59:15.000Z'}}, {'blockNum': '0x7b4e4c', 'uniqueId': '0x498c376a556b4614802b3519dd6e40f201f98c19accc43a298de7d87cdb209c5:log:1', 'hash': '0x498c376a556b4614802b3519dd6e40f201f98c19accc43a298de7d87cdb209c5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x527d25d61dd36e136fb3eb593c0a60b67fb4f142', 'value': 854.607343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x32f045ef', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T21:59:38.000Z'}}, {'blockNum': '0x7b4e56', 'uniqueId': '0x6151bfb430e565066d1dd6898f904682533906e40556cdf8880d8828231654a1:log:13', 'hash': '0x6151bfb430e565066d1dd6898f904682533906e40556cdf8880d8828231654a1', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 8483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01f9a04ec0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:01:57.000Z'}}, {'blockNum': '0x7b4e56', 'uniqueId': '0x30657b8324405903386b1ecc66c5a9a5533ea2e2b729e8804d26516e337e9bc6:log:25', 'hash': '0x30657b8324405903386b1ecc66c5a9a5533ea2e2b729e8804d26516e337e9bc6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1782.040355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6a37c723', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:01:57.000Z'}}, {'blockNum': '0x7b4e56', 'uniqueId': '0x30657b8324405903386b1ecc66c5a9a5533ea2e2b729e8804d26516e337e9bc6:log:27', 'hash': '0x30657b8324405903386b1ecc66c5a9a5533ea2e2b729e8804d26516e337e9bc6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1782.040355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6a37c723', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:01:57.000Z'}}, {'blockNum': '0x7b4e56', 'uniqueId': '0x30657b8324405903386b1ecc66c5a9a5533ea2e2b729e8804d26516e337e9bc6:log:32', 'hash': '0x30657b8324405903386b1ecc66c5a9a5533ea2e2b729e8804d26516e337e9bc6', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1782.040355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6a37c723', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:01:57.000Z'}}, {'blockNum': '0x7b4e56', 'uniqueId': '0x30657b8324405903386b1ecc66c5a9a5533ea2e2b729e8804d26516e337e9bc6:log:34', 'hash': '0x30657b8324405903386b1ecc66c5a9a5533ea2e2b729e8804d26516e337e9bc6', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1782.040355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6a37c723', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:01:57.000Z'}}, {'blockNum': '0x7b4e5c', 'uniqueId': '0xfe3a1eea170916600b78a197fc2391b6a06a6e8332d9a15dffc9e2381069f0a6:log:3', 'hash': '0xfe3a1eea170916600b78a197fc2391b6a06a6e8332d9a15dffc9e2381069f0a6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2577.721315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x99a4e7e3', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:04:22.000Z'}}, {'blockNum': '0x7b4e5c', 'uniqueId': '0xfe3a1eea170916600b78a197fc2391b6a06a6e8332d9a15dffc9e2381069f0a6:log:5', 'hash': '0xfe3a1eea170916600b78a197fc2391b6a06a6e8332d9a15dffc9e2381069f0a6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 2577.721315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x99a4e7e3', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:04:22.000Z'}}, {'blockNum': '0x7b4e5c', 'uniqueId': '0xfe3a1eea170916600b78a197fc2391b6a06a6e8332d9a15dffc9e2381069f0a6:log:10', 'hash': '0xfe3a1eea170916600b78a197fc2391b6a06a6e8332d9a15dffc9e2381069f0a6', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2577.721315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x99a4e7e3', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:04:22.000Z'}}, {'blockNum': '0x7b4e5c', 'uniqueId': '0xfe3a1eea170916600b78a197fc2391b6a06a6e8332d9a15dffc9e2381069f0a6:log:12', 'hash': '0xfe3a1eea170916600b78a197fc2391b6a06a6e8332d9a15dffc9e2381069f0a6', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2577.721315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x99a4e7e3', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:04:22.000Z'}}, {'blockNum': '0x7b4e64', 'uniqueId': '0x02183d737062b3f54acc163351c27f412d5455ac5144c60fd405d1c3e47232c4:log:30', 'hash': '0x02183d737062b3f54acc163351c27f412d5455ac5144c60fd405d1c3e47232c4', 'from': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2991.12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb248de80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:04:59.000Z'}}, {'blockNum': '0x7b4e73', 'uniqueId': '0xf27d7f84f977d259027cc1384276456a16a43f10d629495f5e766697411ec66c:log:4', 'hash': '0xf27d7f84f977d259027cc1384276456a16a43f10d629495f5e766697411ec66c', 'from': '0x61d1cad1a3c06adbdf50d0785580d2df41a9ab7d', 'to': '0xd5fe21f3c156f0034ff5eefa565b63fd723abc19', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:06:59.000Z'}}, {'blockNum': '0x7b4e73', 'uniqueId': '0x8ed680914a19a0755cbd60063fd0ec35787b3542fa430e7f713d3d98024e462f:log:5', 'hash': '0x8ed680914a19a0755cbd60063fd0ec35787b3542fa430e7f713d3d98024e462f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb3a3fa926a2b3b8aca4d698b0a1eaa350ffe0276', 'value': 1700.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x655884e0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:06:59.000Z'}}, {'blockNum': '0x7b4e74', 'uniqueId': '0xedf7ae883e79d13d8f483d287d6c79035e1cbd5c9d1508e18540c369d0121f36:log:33', 'hash': '0xedf7ae883e79d13d8f483d287d6c79035e1cbd5c9d1508e18540c369d0121f36', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2562.921813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x98c31555', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:07:43.000Z'}}, {'blockNum': '0x7b4e74', 'uniqueId': '0xedf7ae883e79d13d8f483d287d6c79035e1cbd5c9d1508e18540c369d0121f36:log:35', 'hash': '0xedf7ae883e79d13d8f483d287d6c79035e1cbd5c9d1508e18540c369d0121f36', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2562.921813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x98c31555', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:07:43.000Z'}}, {'blockNum': '0x7b4e74', 'uniqueId': '0xedf7ae883e79d13d8f483d287d6c79035e1cbd5c9d1508e18540c369d0121f36:log:40', 'hash': '0xedf7ae883e79d13d8f483d287d6c79035e1cbd5c9d1508e18540c369d0121f36', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2562.921813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x98c31555', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:07:43.000Z'}}, {'blockNum': '0x7b4e74', 'uniqueId': '0xedf7ae883e79d13d8f483d287d6c79035e1cbd5c9d1508e18540c369d0121f36:log:42', 'hash': '0xedf7ae883e79d13d8f483d287d6c79035e1cbd5c9d1508e18540c369d0121f36', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2562.921813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x98c31555', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:07:43.000Z'}}, {'blockNum': '0x7b4e78', 'uniqueId': '0x15521521b0536a3cb51ad843fe8f70360ca54edbe22f5e3191a7f1bc35c124bb:log:97', 'hash': '0x15521521b0536a3cb51ad843fe8f70360ca54edbe22f5e3191a7f1bc35c124bb', 'from': '0xe500412a24cec429059c11eaa353451b5bfe4301', 'to': '0xb6f47583b2569774f45e6ae0005bae904df8e508', 'value': 956.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x390922a0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:08:32.000Z'}}, {'blockNum': '0x7b4e7b', 'uniqueId': '0x0c56df80f6bb4eb8dd9bb6b14b1e054475a652af9fc4aa13665aa934762e4ab0:log:14', 'hash': '0x0c56df80f6bb4eb8dd9bb6b14b1e054475a652af9fc4aa13665aa934762e4ab0', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3654.667574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xd9d5cd36', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:09:05.000Z'}}, {'blockNum': '0x7b4e7b', 'uniqueId': '0x2875f2e4bb5b2c5287db1eb3056bc1d78842a8eb24a40fddcd445a68f70feef6:log:16', 'hash': '0x2875f2e4bb5b2c5287db1eb3056bc1d78842a8eb24a40fddcd445a68f70feef6', 'from': '0x527d25d61dd36e136fb3eb593c0a60b67fb4f142', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 854.607343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x32f045ef', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:09:05.000Z'}}, {'blockNum': '0x7b4e7c', 'uniqueId': '0x77cfb06ccc2c966eef42cd5ef4ec50995b52dd025c600b9e035278a907f23fc3:log:7', 'hash': '0x77cfb06ccc2c966eef42cd5ef4ec50995b52dd025c600b9e035278a907f23fc3', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 189462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2c1cd0b180', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:10:37.000Z'}}, {'blockNum': '0x7b4e7c', 'uniqueId': '0xd18754c8430b89614c63eecfcc22d150f8922d687d66e2b2c75be911817cce7b:log:20', 'hash': '0xd18754c8430b89614c63eecfcc22d150f8922d687d66e2b2c75be911817cce7b', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 7272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01b171ea00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:10:37.000Z'}}, {'blockNum': '0x7b4e8f', 'uniqueId': '0xe2d3936ca5768f63922c996c0b2db311e604eed8ab288adf2ab2ff037d142cd7:log:8', 'hash': '0xe2d3936ca5768f63922c996c0b2db311e604eed8ab288adf2ab2ff037d142cd7', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 231173.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x35d3009f20', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:14:39.000Z'}}, {'blockNum': '0x7b4e9c', 'uniqueId': '0xfac9884b71a816ee76877ba462ce91a0a3bc92b3d955a75388ed7dc04b9a4719:log:0', 'hash': '0xfac9884b71a816ee76877ba462ce91a0a3bc92b3d955a75388ed7dc04b9a4719', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 184000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2ad7413000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:16:37.000Z'}}, {'blockNum': '0x7b4ea1', 'uniqueId': '0xb8d784d3108eccabe59ad1a3357b78ecb0f318b904ef137604449ef4e1f3f0ce:log:5', 'hash': '0xb8d784d3108eccabe59ad1a3357b78ecb0f318b904ef137604449ef4e1f3f0ce', 'from': '0xdfbc84ccac430f2c0455c437adf417095d7ad68e', 'to': '0x147ce39892f51e75b34a3cb0a0b8d3aaac02703d', 'value': 92.541181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x058410fd', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:18:07.000Z'}}, {'blockNum': '0x7b4ea4', 'uniqueId': '0x5e119d23dff73504b7655052640b8523fb95658a89413f0f76272a3dc17cafb6:log:17', 'hash': '0x5e119d23dff73504b7655052640b8523fb95658a89413f0f76272a3dc17cafb6', 'from': '0xb6f47583b2569774f45e6ae0005bae904df8e508', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 956.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x390922a0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:18:39.000Z'}}, {'blockNum': '0x7b4ea5', 'uniqueId': '0x7293930688b39d4a4afe18c1669d1d449258202306a0fbba23ead825b7faea29:log:15', 'hash': '0x7293930688b39d4a4afe18c1669d1d449258202306a0fbba23ead825b7faea29', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 189462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2c1cd0b180', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:19:04.000Z'}}, {'blockNum': '0x7b4ea5', 'uniqueId': '0xf5ea7ee5c2f0e5bae03d27809b04a9afcfc954654940e3242cf2d2bce306b789:log:31', 'hash': '0xf5ea7ee5c2f0e5bae03d27809b04a9afcfc954654940e3242cf2d2bce306b789', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3019d7c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:19:04.000Z'}}, {'blockNum': '0x7b4ea5', 'uniqueId': '0xe01c5e3ee7bc1550d2b152a3bf45b0b5ad770c060a8852c88afe2014d8f1c91a:log:80', 'hash': '0xe01c5e3ee7bc1550d2b152a3bf45b0b5ad770c060a8852c88afe2014d8f1c91a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2549.410136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x97f4e958', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:19:04.000Z'}}, {'blockNum': '0x7b4ea5', 'uniqueId': '0xe01c5e3ee7bc1550d2b152a3bf45b0b5ad770c060a8852c88afe2014d8f1c91a:log:82', 'hash': '0xe01c5e3ee7bc1550d2b152a3bf45b0b5ad770c060a8852c88afe2014d8f1c91a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2549.410136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x97f4e958', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:19:04.000Z'}}, {'blockNum': '0x7b4ea5', 'uniqueId': '0xe01c5e3ee7bc1550d2b152a3bf45b0b5ad770c060a8852c88afe2014d8f1c91a:log:87', 'hash': '0xe01c5e3ee7bc1550d2b152a3bf45b0b5ad770c060a8852c88afe2014d8f1c91a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2549.407585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x97f4df61', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:19:04.000Z'}}, {'blockNum': '0x7b4ea5', 'uniqueId': '0xe01c5e3ee7bc1550d2b152a3bf45b0b5ad770c060a8852c88afe2014d8f1c91a:log:89', 'hash': '0xe01c5e3ee7bc1550d2b152a3bf45b0b5ad770c060a8852c88afe2014d8f1c91a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2549.407585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x97f4df61', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:19:04.000Z'}}, {'blockNum': '0x7b4eb1', 'uniqueId': '0xdd7370800272bde3bcfbe48f8a13a68d89e546f24659350653d942b59181d1d9:log:10', 'hash': '0xdd7370800272bde3bcfbe48f8a13a68d89e546f24659350653d942b59181d1d9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdfbc84ccac430f2c0455c437adf417095d7ad68e', 'value': 84.541181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0509fefd', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:21:44.000Z'}}, {'blockNum': '0x7b4eb4', 'uniqueId': '0x810d1239147b2e457740284469d01f7a4a9028e7a836cb4c3eb1a0995c6e77c6:log:9', 'hash': '0x810d1239147b2e457740284469d01f7a4a9028e7a836cb4c3eb1a0995c6e77c6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 10000.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02541077e0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:22:36.000Z'}}, {'blockNum': '0x7b4eb4', 'uniqueId': '0x0bc54e240b0c2866cb886849a2cec17c2fdc87ba71db97a91b9f87fb6fb15a6a:log:11', 'hash': '0x0bc54e240b0c2866cb886849a2cec17c2fdc87ba71db97a91b9f87fb6fb15a6a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 189445.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2c1bd1df20', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:22:36.000Z'}}, {'blockNum': '0x7b4eb4', 'uniqueId': '0xf93e04eddd1726ddb3955f237f19d93d3878d9f2cd05a59953e854dbfc20d047:log:15', 'hash': '0xf93e04eddd1726ddb3955f237f19d93d3878d9f2cd05a59953e854dbfc20d047', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 33968.510961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x07e8ae57f1', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:22:36.000Z'}}, {'blockNum': '0x7b4ebf', 'uniqueId': '0xc17e55be0b3c5e08046d0f0eed03d7d74d91ff77a8a79b6c24c0275172e79e35:log:84', 'hash': '0xc17e55be0b3c5e08046d0f0eed03d7d74d91ff77a8a79b6c24c0275172e79e35', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 184000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2ad7413000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:24:35.000Z'}}, {'blockNum': '0x7b4ec9', 'uniqueId': '0x04405850f4ed7a982e8d78e2699bc70b8d8bb9147888ec5bd171f396fb859deb:log:5', 'hash': '0x04405850f4ed7a982e8d78e2699bc70b8d8bb9147888ec5bd171f396fb859deb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 36596.9822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x088559a1b8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:27:34.000Z'}}, {'blockNum': '0x7b4ed0', 'uniqueId': '0x591ce17c02b1c012ba36d111026908ca7dbb3cb96a0a4937fd24d92d56757d42:log:144', 'hash': '0x591ce17c02b1c012ba36d111026908ca7dbb3cb96a0a4937fd24d92d56757d42', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1718.474432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x666dd6c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:28:35.000Z'}}, {'blockNum': '0x7b4ed0', 'uniqueId': '0x591ce17c02b1c012ba36d111026908ca7dbb3cb96a0a4937fd24d92d56757d42:log:146', 'hash': '0x591ce17c02b1c012ba36d111026908ca7dbb3cb96a0a4937fd24d92d56757d42', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1718.474432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x666dd6c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:28:35.000Z'}}, {'blockNum': '0x7b4ed0', 'uniqueId': '0x591ce17c02b1c012ba36d111026908ca7dbb3cb96a0a4937fd24d92d56757d42:log:151', 'hash': '0x591ce17c02b1c012ba36d111026908ca7dbb3cb96a0a4937fd24d92d56757d42', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1718.474432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x666dd6c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:28:35.000Z'}}, {'blockNum': '0x7b4ed0', 'uniqueId': '0x591ce17c02b1c012ba36d111026908ca7dbb3cb96a0a4937fd24d92d56757d42:log:153', 'hash': '0x591ce17c02b1c012ba36d111026908ca7dbb3cb96a0a4937fd24d92d56757d42', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1718.474432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x666dd6c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:28:35.000Z'}}, {'blockNum': '0x7b4ed1', 'uniqueId': '0x3683cdf5458a21dcdc7b3770a7a8f81efbff602552c69c7caee398a7017aa5e5:log:175', 'hash': '0x3683cdf5458a21dcdc7b3770a7a8f81efbff602552c69c7caee398a7017aa5e5', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3019d7c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:28:46.000Z'}}, {'blockNum': '0x7b4ed9', 'uniqueId': '0x89a1b743f8df00aaab6f8228d721bc87b398d3b7c3eb9cf9cd099c6fdd99eb3f:log:2', 'hash': '0x89a1b743f8df00aaab6f8228d721bc87b398d3b7c3eb9cf9cd099c6fdd99eb3f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'value': 26218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x061ab6ee80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:29:50.000Z'}}, {'blockNum': '0x7b4edf', 'uniqueId': '0x529759e3b408e1f762a5dd0cdd85ead532dc29a12a01ee1f3ad9631fed2dc679:log:8', 'hash': '0x529759e3b408e1f762a5dd0cdd85ead532dc29a12a01ee1f3ad9631fed2dc679', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'value': 24509.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05b4de3d20', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:31:08.000Z'}}, {'blockNum': '0x7b4ee3', 'uniqueId': '0x7c74e4ccefb653e382c2e8f417beb5ecd683f3d14593a547505101c6a3a5c6b3:log:168', 'hash': '0x7c74e4ccefb653e382c2e8f417beb5ecd683f3d14593a547505101c6a3a5c6b3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1460.669304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x57100b78', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:32:05.000Z'}}, {'blockNum': '0x7b4ee3', 'uniqueId': '0x7c74e4ccefb653e382c2e8f417beb5ecd683f3d14593a547505101c6a3a5c6b3:log:170', 'hash': '0x7c74e4ccefb653e382c2e8f417beb5ecd683f3d14593a547505101c6a3a5c6b3', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1460.669304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x57100b78', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:32:05.000Z'}}, {'blockNum': '0x7b4ee3', 'uniqueId': '0x7c74e4ccefb653e382c2e8f417beb5ecd683f3d14593a547505101c6a3a5c6b3:log:175', 'hash': '0x7c74e4ccefb653e382c2e8f417beb5ecd683f3d14593a547505101c6a3a5c6b3', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1460.669304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x57100b78', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:32:05.000Z'}}, {'blockNum': '0x7b4ee3', 'uniqueId': '0x7c74e4ccefb653e382c2e8f417beb5ecd683f3d14593a547505101c6a3a5c6b3:log:177', 'hash': '0x7c74e4ccefb653e382c2e8f417beb5ecd683f3d14593a547505101c6a3a5c6b3', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1460.669304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x57100b78', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:32:05.000Z'}}, {'blockNum': '0x7b4ee6', 'uniqueId': '0x412bc71797e8f5033d6561bc076b6d52b24344c3e4d8d65b0006b7f1e1c53e97:log:24', 'hash': '0x412bc71797e8f5033d6561bc076b6d52b24344c3e4d8d65b0006b7f1e1c53e97', 'from': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 50727.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0bcf952ba0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:32:48.000Z'}}, {'blockNum': '0x7b4ee9', 'uniqueId': '0xc3b36d1037cbc3e1c3ece1e7e8901eea33fdf5fb483b8ca9b930e05518f43f56:log:28', 'hash': '0xc3b36d1037cbc3e1c3ece1e7e8901eea33fdf5fb483b8ca9b930e05518f43f56', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2686.389958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa01f0ec6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:33:21.000Z'}}, {'blockNum': '0x7b4ee9', 'uniqueId': '0xc3b36d1037cbc3e1c3ece1e7e8901eea33fdf5fb483b8ca9b930e05518f43f56:log:30', 'hash': '0xc3b36d1037cbc3e1c3ece1e7e8901eea33fdf5fb483b8ca9b930e05518f43f56', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 2686.389958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa01f0ec6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:33:21.000Z'}}, {'blockNum': '0x7b4ee9', 'uniqueId': '0xc3b36d1037cbc3e1c3ece1e7e8901eea33fdf5fb483b8ca9b930e05518f43f56:log:35', 'hash': '0xc3b36d1037cbc3e1c3ece1e7e8901eea33fdf5fb483b8ca9b930e05518f43f56', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2686.389958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa01f0ec6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:33:21.000Z'}}, {'blockNum': '0x7b4ee9', 'uniqueId': '0xc3b36d1037cbc3e1c3ece1e7e8901eea33fdf5fb483b8ca9b930e05518f43f56:log:37', 'hash': '0xc3b36d1037cbc3e1c3ece1e7e8901eea33fdf5fb483b8ca9b930e05518f43f56', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2686.389958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa01f0ec6', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:33:21.000Z'}}, {'blockNum': '0x7b4eec', 'uniqueId': '0x7f6e4bd146dc8f80359c202971495f6f727481b73cc302dfd172d8641e9862d6:log:6', 'hash': '0x7f6e4bd146dc8f80359c202971495f6f727481b73cc302dfd172d8641e9862d6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xcd329335ad7cbc26f9a142271b5313d961b108c8', 'value': 28860.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x06b8353ae0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:33:36.000Z'}}, {'blockNum': '0x7b4eec', 'uniqueId': '0x8ae59557b6623b49578823ff41662bcff5d9e8863cc4993c2a056377debe4038:log:7', 'hash': '0x8ae59557b6623b49578823ff41662bcff5d9e8863cc4993c2a056377debe4038', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3fd093f99367c80258ef66cad7727e7047dc94a3', 'value': 16683.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x03e266f4a0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:33:36.000Z'}}, {'blockNum': '0x7b4eec', 'uniqueId': '0x5e5b48532fb38bec2a8c3053a827bdd9c8c63c142cb0ec62de9df22948a55aea:log:11', 'hash': '0x5e5b48532fb38bec2a8c3053a827bdd9c8c63c142cb0ec62de9df22948a55aea', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 38470.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08f5023160', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:33:36.000Z'}}, {'blockNum': '0x7b4eec', 'uniqueId': '0xd0fc5fa01740c9cbd55ee15e616be507eced888b64070b34b5170e0f66d479c4:log:15', 'hash': '0xd0fc5fa01740c9cbd55ee15e616be507eced888b64070b34b5170e0f66d479c4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 22780.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x054dcfcae0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:33:36.000Z'}}, {'blockNum': '0x7b4eef', 'uniqueId': '0xd16bb7b0fa3e2900b1252007c9d18b058e7a6910e082913fe652d3fea3847025:log:12', 'hash': '0xd16bb7b0fa3e2900b1252007c9d18b058e7a6910e082913fe652d3fea3847025', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 329.999869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x13ab65fd', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:34:51.000Z'}}, {'blockNum': '0x7b4eef', 'uniqueId': '0xd16bb7b0fa3e2900b1252007c9d18b058e7a6910e082913fe652d3fea3847025:log:16', 'hash': '0xd16bb7b0fa3e2900b1252007c9d18b058e7a6910e082913fe652d3fea3847025', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9e88d6a5b659f226fdf1c839dea4edc314c1f25d', 'value': 329.999869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x13ab65fd', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:34:51.000Z'}}, {'blockNum': '0x7b4eef', 'uniqueId': '0x259b1e2dad113512d0d6883d4b7b67d22748ddf0506b862ecb7e0b18fef67586:log:18', 'hash': '0x259b1e2dad113512d0d6883d4b7b67d22748ddf0506b862ecb7e0b18fef67586', 'from': '0x75e71b99792821c7f5602724967ac9ccff326846', 'to': '0xb06dd404ac8d527185da4841736147ac2d724c4a', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:34:51.000Z'}}, {'blockNum': '0x7b4ef6', 'uniqueId': '0x20cc8da1eeacfa73fe3551e93817dbde074d27e059bc08ef0c3f272aafa9fecc:log:0', 'hash': '0x20cc8da1eeacfa73fe3551e93817dbde074d27e059bc08ef0c3f272aafa9fecc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 27463.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0664f0b3a0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:36:01.000Z'}}, {'blockNum': '0x7b4efe', 'uniqueId': '0x1ec0d18378ab58ed2cbf0234a051324d139f4d2ba829bd242493b8607cddcf68:log:14', 'hash': '0x1ec0d18378ab58ed2cbf0234a051324d139f4d2ba829bd242493b8607cddcf68', 'from': '0x3fd093f99367c80258ef66cad7727e7047dc94a3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 16683.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x03e266f4a0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:37:33.000Z'}}, {'blockNum': '0x7b4f0a', 'uniqueId': '0x19b5d39c579189b7dfa8ea99e4d7d9e25dc637334d633738f106b4f4b2cdf814:log:6', 'hash': '0x19b5d39c579189b7dfa8ea99e4d7d9e25dc637334d633738f106b4f4b2cdf814', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 55309.6623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ce0b6785c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:39:21.000Z'}}, {'blockNum': '0x7b4f11', 'uniqueId': '0xf43b95c335edbf2a1321bd42c1b1082c27ef5bafd87255b3dad7637622c2cb90:log:2', 'hash': '0xf43b95c335edbf2a1321bd42c1b1082c27ef5bafd87255b3dad7637622c2cb90', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 271970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3f52acdc80', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:40:23.000Z'}}, {'blockNum': '0x7b4f13', 'uniqueId': '0xff8b77cce69b4e987b35b7e517c9b3f4f53d3fae4f8b3bcbe93d9b40a14991dc:log:22', 'hash': '0xff8b77cce69b4e987b35b7e517c9b3f4f53d3fae4f8b3bcbe93d9b40a14991dc', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 67882.91341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0fce230e82', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:41:20.000Z'}}, {'blockNum': '0x7b4f1f', 'uniqueId': '0x0ef7b4daeee919c7fcb7c5d053518e296d6d2896c05db8728b47300075a4e7f7:log:4', 'hash': '0x0ef7b4daeee919c7fcb7c5d053518e296d6d2896c05db8728b47300075a4e7f7', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 101851.424371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x17b6d16673', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:44:14.000Z'}}, {'blockNum': '0x7b4f1f', 'uniqueId': '0xaa0c2fa143591f302e33cb095f2605b63126042d7350d086150d537d1697c27d:log:6', 'hash': '0xaa0c2fa143591f302e33cb095f2605b63126042d7350d086150d537d1697c27d', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 278159.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x40c3948f00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:44:14.000Z'}}, {'blockNum': '0x7b4f1f', 'uniqueId': '0x541d89111d57d58a1a7156fa1d5769e723779aae8aa9b5fd16d6236bc24c9119:log:14', 'hash': '0x541d89111d57d58a1a7156fa1d5769e723779aae8aa9b5fd16d6236bc24c9119', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 91906.6445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1566101a14', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:44:14.000Z'}}, {'blockNum': '0x7b4f1f', 'uniqueId': '0x436a17477ea91bf78611b2b9721350c3a1d7b8e8c6f9307061bd4c034ac4bb33:log:24', 'hash': '0x436a17477ea91bf78611b2b9721350c3a1d7b8e8c6f9307061bd4c034ac4bb33', 'from': '0xcd329335ad7cbc26f9a142271b5313d961b108c8', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 28860.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x06b8353ae0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:44:14.000Z'}}, {'blockNum': '0x7b4f20', 'uniqueId': '0x7e387ec78f2236c83afe9c37217fc3a343248bd77aedb649637b723f491b7001:log:10', 'hash': '0x7e387ec78f2236c83afe9c37217fc3a343248bd77aedb649637b723f491b7001', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 25344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05e69ec000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:44:32.000Z'}}, {'blockNum': '0x7b4f20', 'uniqueId': '0xc4ce84fb6dbfc513c6fea2adc8cc2403618846cae348858961466c9f469f03fe:log:88', 'hash': '0xc4ce84fb6dbfc513c6fea2adc8cc2403618846cae348858961466c9f469f03fe', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1557.177834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5cd0a5ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:44:32.000Z'}}, {'blockNum': '0x7b4f20', 'uniqueId': '0xc4ce84fb6dbfc513c6fea2adc8cc2403618846cae348858961466c9f469f03fe:log:90', 'hash': '0xc4ce84fb6dbfc513c6fea2adc8cc2403618846cae348858961466c9f469f03fe', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1557.177834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5cd0a5ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:44:32.000Z'}}, {'blockNum': '0x7b4f20', 'uniqueId': '0xc4ce84fb6dbfc513c6fea2adc8cc2403618846cae348858961466c9f469f03fe:log:95', 'hash': '0xc4ce84fb6dbfc513c6fea2adc8cc2403618846cae348858961466c9f469f03fe', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1557.177834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5cd0a5ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:44:32.000Z'}}, {'blockNum': '0x7b4f20', 'uniqueId': '0xc4ce84fb6dbfc513c6fea2adc8cc2403618846cae348858961466c9f469f03fe:log:97', 'hash': '0xc4ce84fb6dbfc513c6fea2adc8cc2403618846cae348858961466c9f469f03fe', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1557.177834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5cd0a5ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:44:32.000Z'}}, {'blockNum': '0x7b4f2c', 'uniqueId': '0x1ec596b576875f536014b484448d080964db4f2bc612a20cae5f1c343560b783:log:8', 'hash': '0x1ec596b576875f536014b484448d080964db4f2bc612a20cae5f1c343560b783', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 24713.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05c1070820', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:48:30.000Z'}}, {'blockNum': '0x7b4f31', 'uniqueId': '0xc27eb3fa3062caa020681e1c22727493d15497eab6cb5a91db8c2c9ffc919e44:log:46', 'hash': '0xc27eb3fa3062caa020681e1c22727493d15497eab6cb5a91db8c2c9ffc919e44', 'from': '0x634345f791ecadcbc31ed85d022991d9af435830', 'to': '0x17c7e3680fb8b32a75e6be8d8c049e227f3a174d', 'value': 1000.472599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3ba20017', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:49:10.000Z'}}, {'blockNum': '0x7b4f34', 'uniqueId': '0x6fd5f0f31e415ccf5325b4ac1f03f6da19e142ce72654b333c93f11f52b8bc49:log:53', 'hash': '0x6fd5f0f31e415ccf5325b4ac1f03f6da19e142ce72654b333c93f11f52b8bc49', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 6200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01718c7e00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:50:10.000Z'}}, {'blockNum': '0x7b4f37', 'uniqueId': '0x7c5770f09f8c8bdb766c0bec2b891ad83dbe4dffb0bad7cf6a9330bb80cdb32c:log:5', 'hash': '0x7c5770f09f8c8bdb766c0bec2b891ad83dbe4dffb0bad7cf6a9330bb80cdb32c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 259960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3c86d2ce00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:51:13.000Z'}}, {'blockNum': '0x7b4f37', 'uniqueId': '0x4453a39e07ef5795f35bd523455576a44daf709764e7cec7b58d0ef72cd9537b:log:39', 'hash': '0x4453a39e07ef5795f35bd523455576a44daf709764e7cec7b58d0ef72cd9537b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc644925f09108c8f521ed83ad733f459d60a3852', 'value': 92.056235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x057caaab', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:51:13.000Z'}}, {'blockNum': '0x7b4f3e', 'uniqueId': '0x982fcbb33b3bbdd4e0d75716eebbb870e2ebd53e5f05e4fc9bca5ab2f1490753:log:0', 'hash': '0x982fcbb33b3bbdd4e0d75716eebbb870e2ebd53e5f05e4fc9bca5ab2f1490753', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcd329335ad7cbc26f9a142271b5313d961b108c8', 'value': 37256.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08aca605e0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:52:42.000Z'}}, {'blockNum': '0x7b4f3e', 'uniqueId': '0x53e4f2544d8112f8d3c5d455e083bccfcfecd434b05e609495d2637aa9b4f271:log:7', 'hash': '0x53e4f2544d8112f8d3c5d455e083bccfcfecd434b05e609495d2637aa9b4f271', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x71639531571a988930bdc0ac2b3fc45cd8cc5a29', 'value': 69939.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1048b506a0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:52:42.000Z'}}, {'blockNum': '0x7b4f44', 'uniqueId': '0x820f8266be532256efaf77b3bf0b2bec12e0bab26ec81826064a49a608f389fd:log:17', 'hash': '0x820f8266be532256efaf77b3bf0b2bec12e0bab26ec81826064a49a608f389fd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x4b106a8be7481dd89293891d3ea46f89437c9853', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01dcd65000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:54:24.000Z'}}, {'blockNum': '0x7b4f46', 'uniqueId': '0xdf41e262c6c9a0acefb2cc378ea9ed876fc3b1e2febade7a1de471c138bb7fd1:log:3', 'hash': '0xdf41e262c6c9a0acefb2cc378ea9ed876fc3b1e2febade7a1de471c138bb7fd1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 63882.0806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0edfab3158', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:55:11.000Z'}}, {'blockNum': '0x7b4f48', 'uniqueId': '0xaac8b13d58c07a25390d10b128dea51737f3a3212064a8225d45e79040b3c3d5:log:2', 'hash': '0xaac8b13d58c07a25390d10b128dea51737f3a3212064a8225d45e79040b3c3d5', 'from': '0x0018c076dfdca7c61f04925a230a9b5a701228a4', 'to': '0xe3e9bb6e6a647e0813569ae451da021fcb8c36db', 'value': 8279.542764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01ed7fcbec', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:55:34.000Z'}}, {'blockNum': '0x7b4f50', 'uniqueId': '0x3d004f0e25c6a576658edcbd147438ee2492a7dd00b714974e674448b5f2b350:log:30', 'hash': '0x3d004f0e25c6a576658edcbd147438ee2492a7dd00b714974e674448b5f2b350', 'from': '0x2d218e1e8947c7be8e94aacfb94bb45796957d8e', 'to': '0x06df0e0655bc79e528fe0b1e2d07825fab90c0d0', 'value': 6489.394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0182cc4b50', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:57:07.000Z'}}, {'blockNum': '0x7b4f51', 'uniqueId': '0x131a54b73761f86fbd559180852ba0dfe88aa63d43665b4c0d8538629d5ad6e6:log:16', 'hash': '0x131a54b73761f86fbd559180852ba0dfe88aa63d43665b4c0d8538629d5ad6e6', 'from': '0x71639531571a988930bdc0ac2b3fc45cd8cc5a29', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 69939.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1048b506a0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:57:37.000Z'}}, {'blockNum': '0x7b4f5c', 'uniqueId': '0x94dcb3a5aee5a289c2f471f8c235e09b6c4e0b9039c7203969669c115f84e36c:log:5', 'hash': '0x94dcb3a5aee5a289c2f471f8c235e09b6c4e0b9039c7203969669c115f84e36c', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 63882.0806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0edfab3158', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:59:41.000Z'}}, {'blockNum': '0x7b4f5c', 'uniqueId': '0x00baa1aea4352cd4c1fd42b67165503fc5bc2b64a6a046cc0435661a4a72c46f:log:15', 'hash': '0x00baa1aea4352cd4c1fd42b67165503fc5bc2b64a6a046cc0435661a4a72c46f', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 50057.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ba7a5c820', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T22:59:41.000Z'}}, {'blockNum': '0x7b4f62', 'uniqueId': '0x104aad942dc2ca2aa17cd8b950238912a776da885825bfc8bb7cb27819964eb6:log:75', 'hash': '0x104aad942dc2ca2aa17cd8b950238912a776da885825bfc8bb7cb27819964eb6', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 6200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01718c7e00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:00:40.000Z'}}, {'blockNum': '0x7b4f69', 'uniqueId': '0xc88c776123d3d670d6e44e5d2ea2ba1c9275486378c3cf4405c378adb02c2d0d:log:95', 'hash': '0xc88c776123d3d670d6e44e5d2ea2ba1c9275486378c3cf4405c378adb02c2d0d', 'from': '0x4b106a8be7481dd89293891d3ea46f89437c9853', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01dcd65000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:02:09.000Z'}}, {'blockNum': '0x7b4f6b', 'uniqueId': '0x271ef00129f9990a6fa72277e6ae098fbaa4e9c790f0cfcf2218f9f8dac46055:log:24', 'hash': '0x271ef00129f9990a6fa72277e6ae098fbaa4e9c790f0cfcf2218f9f8dac46055', 'from': '0xfd5ed7de258745d1d027edce1328525a9541dbc6', 'to': '0x3c1d5f76da143c48a7b2f5a7d935b0f1a37617aa', 'value': 999.008579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b8ba943', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:03:19.000Z'}}, {'blockNum': '0x7b4f71', 'uniqueId': '0x647072e71a9d50bdf65d407b15722c9eb82adbd39cd3c29f9ee3bc711eb3f0fb:log:26', 'hash': '0x647072e71a9d50bdf65d407b15722c9eb82adbd39cd3c29f9ee3bc711eb3f0fb', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 614.079638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x249a1c96', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:04:23.000Z'}}, {'blockNum': '0x7b4f71', 'uniqueId': '0x647072e71a9d50bdf65d407b15722c9eb82adbd39cd3c29f9ee3bc711eb3f0fb:log:30', 'hash': '0x647072e71a9d50bdf65d407b15722c9eb82adbd39cd3c29f9ee3bc711eb3f0fb', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x5deec130774e2eaca1d701e408a2a307e9b42445', 'value': 614.079638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x249a1c96', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:04:23.000Z'}}, {'blockNum': '0x7b4f75', 'uniqueId': '0x082957dc3727f8b78ae8ef17b261015f2ab53124bb7b40836ef35d7c39d087b6:log:63', 'hash': '0x082957dc3727f8b78ae8ef17b261015f2ab53124bb7b40836ef35d7c39d087b6', 'from': '0xd5fe21f3c156f0034ff5eefa565b63fd723abc19', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:04:51.000Z'}}, {'blockNum': '0x7b4f7a', 'uniqueId': '0xd1d55f42f71b6a68c5c08ec00b7da58237629b1162efbe954daaf90e37f6faa3:log:2', 'hash': '0xd1d55f42f71b6a68c5c08ec00b7da58237629b1162efbe954daaf90e37f6faa3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbd373d1083bed4236d11c4d5330e8c5f5ec91462', 'value': 2824.926813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xa860f65d', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:06:05.000Z'}}, {'blockNum': '0x7b4f83', 'uniqueId': '0x63881822e9b5c577995837ae9220fa1d2bd99249e6aced4623303cfdee7335c2:log:7', 'hash': '0x63881822e9b5c577995837ae9220fa1d2bd99249e6aced4623303cfdee7335c2', 'from': '0x17c7e3680fb8b32a75e6be8d8c049e227f3a174d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000.472599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3ba20017', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:09:01.000Z'}}, {'blockNum': '0x7b4f83', 'uniqueId': '0xd966ad9f998ff613374eee8a86895566cea6138704f2ccccf56f79f20ee2b798:log:21', 'hash': '0xd966ad9f998ff613374eee8a86895566cea6138704f2ccccf56f79f20ee2b798', 'from': '0x06df0e0655bc79e528fe0b1e2d07825fab90c0d0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6489.394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0182cc4b50', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:09:01.000Z'}}, {'blockNum': '0x7b4fad', 'uniqueId': '0x923b7ba3abf6a27981211b47d10ed4c1578003e95c49e66c675104621b8173c8:log:0', 'hash': '0x923b7ba3abf6a27981211b47d10ed4c1578003e95c49e66c675104621b8173c8', 'from': '0xcd329335ad7cbc26f9a142271b5313d961b108c8', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 37256.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08aca605e0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:14:20.000Z'}}, {'blockNum': '0x7b4fae', 'uniqueId': '0x3241247a8f22a219d87557147b1b7ebb60eede054ed06291fc1f095e7c45bfa3:log:3', 'hash': '0x3241247a8f22a219d87557147b1b7ebb60eede054ed06291fc1f095e7c45bfa3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 66687.307098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0f86df8d5a', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:14:37.000Z'}}, {'blockNum': '0x7b4fae', 'uniqueId': '0x10f550dbea82b08822bad2cecd4941bc1b5de82b116280b1ea1a78b170466fac:log:7', 'hash': '0x10f550dbea82b08822bad2cecd4941bc1b5de82b116280b1ea1a78b170466fac', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 56298.7648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d1baafa00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:14:37.000Z'}}, {'blockNum': '0x7b4fb1', 'uniqueId': '0x88050792e87c835373fdb51402ddcd4723df4a6bad15fcc76cb1f6dc5f78520c:log:54', 'hash': '0x88050792e87c835373fdb51402ddcd4723df4a6bad15fcc76cb1f6dc5f78520c', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 801.807324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2fca9bdc', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:15:57.000Z'}}, {'blockNum': '0x7b4fb1', 'uniqueId': '0x88050792e87c835373fdb51402ddcd4723df4a6bad15fcc76cb1f6dc5f78520c:log:58', 'hash': '0x88050792e87c835373fdb51402ddcd4723df4a6bad15fcc76cb1f6dc5f78520c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x6817aecad806b901800acfe2f3220a5d85c66ac6', 'value': 801.807324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x2fca9bdc', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:15:57.000Z'}}, {'blockNum': '0x7b4fc2', 'uniqueId': '0x220fa67e03f78b79b7ca51f8958f2f866c93dcf7c80974b5d2aa51e7252fd72c:log:9', 'hash': '0x220fa67e03f78b79b7ca51f8958f2f866c93dcf7c80974b5d2aa51e7252fd72c', 'from': '0xe3e9bb6e6a647e0813569ae451da021fcb8c36db', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8279.542764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01ed7fcbec', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:18:59.000Z'}}, {'blockNum': '0x7b4fc7', 'uniqueId': '0x4018354865225b90cc356976b531a444e2035ea4ee44427369d62afb3fddb5e5:log:12', 'hash': '0x4018354865225b90cc356976b531a444e2035ea4ee44427369d62afb3fddb5e5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd22ccc7d95d116c6b229f89b8e13d025f1482137', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x025391d200', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:20:05.000Z'}}, {'blockNum': '0x7b4fc8', 'uniqueId': '0xce6cdf74b3e119c0c44fc11e0235f648aea5e7ccba504660f548b4cf224d43d7:log:1', 'hash': '0xce6cdf74b3e119c0c44fc11e0235f648aea5e7ccba504660f548b4cf224d43d7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc5e3c1771c390534e77fcdbb23cba155fbc4d6ef', 'value': 4466.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x010a365460', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:20:20.000Z'}}, {'blockNum': '0x7b4fd1', 'uniqueId': '0x7a36000f61182b8963ce8a56e5714919355ac247c7e0cd590e088a917a61a526:log:0', 'hash': '0x7a36000f61182b8963ce8a56e5714919355ac247c7e0cd590e088a917a61a526', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 20617.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x04cce30820', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:22:28.000Z'}}, {'blockNum': '0x7b4fd4', 'uniqueId': '0xde7b94178806c7ada609e7cf84995857b53afc56c39bdeabb30a9b1e3ad611da:log:106', 'hash': '0xde7b94178806c7ada609e7cf84995857b53afc56c39bdeabb30a9b1e3ad611da', 'from': '0x41b888be6e9dccf4316df7454176f75b72f640de', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 500.999014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1ddca366', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:23:57.000Z'}}, {'blockNum': '0x7b4fd4', 'uniqueId': '0xde7b94178806c7ada609e7cf84995857b53afc56c39bdeabb30a9b1e3ad611da:log:107', 'hash': '0xde7b94178806c7ada609e7cf84995857b53afc56c39bdeabb30a9b1e3ad611da', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 500.999014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1ddca366', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:23:57.000Z'}}, {'blockNum': '0x7b4fd8', 'uniqueId': '0x246dae5339c04c75a402820fa9c634656135deb16837ce989eb106293027fc9d:log:10', 'hash': '0x246dae5339c04c75a402820fa9c634656135deb16837ce989eb106293027fc9d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x71639531571a988930bdc0ac2b3fc45cd8cc5a29', 'value': 58562.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0da295c860', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:25:19.000Z'}}, {'blockNum': '0x7b4fdb', 'uniqueId': '0xede38ee6fadb56d6e002498af0b357edfe397ecbbe30e0bf6c1b49336eae415d:log:4', 'hash': '0xede38ee6fadb56d6e002498af0b357edfe397ecbbe30e0bf6c1b49336eae415d', 'from': '0x3f7b897af8f499e4bd8727f084642bf95686ebeb', 'to': '0xd55c0cececdf67e95d4eadbbcdc31c01e792c869', 'value': 353.293366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x150ed436', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:25:52.000Z'}}, {'blockNum': '0x7b4fe1', 'uniqueId': '0xa6216e8a9badf5d3a3c840a8563078ad0737eaea7885a732df071faba80d1e2a:log:7', 'hash': '0xa6216e8a9badf5d3a3c840a8563078ad0737eaea7885a732df071faba80d1e2a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 60693.5768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e219e7c60', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:27:00.000Z'}}, {'blockNum': '0x7b4fe1', 'uniqueId': '0xd37a50292e408777da7f2ad943f3d0e9fca1633a8c87c8b74c20f2d6f9474065:log:72', 'hash': '0xd37a50292e408777da7f2ad943f3d0e9fca1633a8c87c8b74c20f2d6f9474065', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1855.539559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6e994967', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:27:00.000Z'}}, {'blockNum': '0x7b4fe1', 'uniqueId': '0xd37a50292e408777da7f2ad943f3d0e9fca1633a8c87c8b74c20f2d6f9474065:log:76', 'hash': '0xd37a50292e408777da7f2ad943f3d0e9fca1633a8c87c8b74c20f2d6f9474065', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 1855.539559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6e994967', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:27:00.000Z'}}, {'blockNum': '0x7b4fe7', 'uniqueId': '0xc233b29147a46fa1499f6dc4a1db24b7ea567116fc7a711e472d0a7484718a9d:log:0', 'hash': '0xc233b29147a46fa1499f6dc4a1db24b7ea567116fc7a711e472d0a7484718a9d', 'from': '0xd55c0cececdf67e95d4eadbbcdc31c01e792c869', 'to': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'value': 353.293366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x150ed436', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:28:49.000Z'}}, {'blockNum': '0x7b4fec', 'uniqueId': '0xbe097a85bb080c0a9753a1d1da27ed1064f6dbe2311a003e85371f521630db57:log:2', 'hash': '0xbe097a85bb080c0a9753a1d1da27ed1064f6dbe2311a003e85371f521630db57', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 66687.307098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0f86df8d5a', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:29:24.000Z'}}, {'blockNum': '0x7b4fec', 'uniqueId': '0x5b35bdd4cbb4dce430f6787a2ef4a18a9e39ca38d2b065709d4a9e71b65f1766:log:4', 'hash': '0x5b35bdd4cbb4dce430f6787a2ef4a18a9e39ca38d2b065709d4a9e71b65f1766', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 116992.3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1b3d497660', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:29:24.000Z'}}, {'blockNum': '0x7b4fed', 'uniqueId': '0x6ba4ba3df04bd03dfc71ed736023b2ec4d99ccc45957a9b95a922669d016a96d:log:2', 'hash': '0x6ba4ba3df04bd03dfc71ed736023b2ec4d99ccc45957a9b95a922669d016a96d', 'from': '0x71639531571a988930bdc0ac2b3fc45cd8cc5a29', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 58562.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0da295c860', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:29:41.000Z'}}, {'blockNum': '0x7b4ff8', 'uniqueId': '0xfbbcc3712b21cf2936d35651f241e328464f48bda4ff4b552f888eea4b6ce2cc:log:0', 'hash': '0xfbbcc3712b21cf2936d35651f241e328464f48bda4ff4b552f888eea4b6ce2cc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 49097.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0b6e6d5820', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:31:27.000Z'}}, {'blockNum': '0x7b4ff8', 'uniqueId': '0x73f1b06f416d8a4986e4282980577e7fd99d64d1ab8342817c45f2b3e4b7eb64:log:1', 'hash': '0x73f1b06f416d8a4986e4282980577e7fd99d64d1ab8342817c45f2b3e4b7eb64', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 67882.292263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0fce199427', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:31:27.000Z'}}, {'blockNum': '0x7b4ff8', 'uniqueId': '0x22b925993882a9ee9653e753ce855b145a1172f605d6046e11a515bb941edb6b:log:3', 'hash': '0x22b925993882a9ee9653e753ce855b145a1172f605d6046e11a515bb941edb6b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 27403.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x06615d2ca0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:31:27.000Z'}}, {'blockNum': '0x7b5003', 'uniqueId': '0xd1d060d80bbb666f889b3d354be6587b65b3c3aecbb40bc0f7d5cc16f24e19b5:log:0', 'hash': '0xd1d060d80bbb666f889b3d354be6587b65b3c3aecbb40bc0f7d5cc16f24e19b5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 38156.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08e24aeee0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:34:03.000Z'}}, {'blockNum': '0x7b500c', 'uniqueId': '0x8abd5895d2811605f6f20f377e17cf0dd74d5f893c8dc2045d276327b75f37a4:log:6', 'hash': '0x8abd5895d2811605f6f20f377e17cf0dd74d5f893c8dc2045d276327b75f37a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd86a2944406deb684c8712cf0e93b95778a35393', 'value': 94000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x15e2d62c00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:36:09.000Z'}}, {'blockNum': '0x7b501c', 'uniqueId': '0x5986bb40939c2510d8fa75e1a16fd46b11223113b43c5ef4c916a690d6cc4781:log:12', 'hash': '0x5986bb40939c2510d8fa75e1a16fd46b11223113b43c5ef4c916a690d6cc4781', 'from': '0xd86a2944406deb684c8712cf0e93b95778a35393', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 94000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x15e2d62c00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:38:44.000Z'}}, {'blockNum': '0x7b5024', 'uniqueId': '0xe67a8684a5583a733e1f58adda857e8623e60c80243b3dc695200ba69b1df467:log:0', 'hash': '0xe67a8684a5583a733e1f58adda857e8623e60c80243b3dc695200ba69b1df467', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 34985.642914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08254e8ba2', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:39:54.000Z'}}, {'blockNum': '0x7b5030', 'uniqueId': '0xf02597eb1897ad0dc404509eaee002ef7ea0643309729d98cdea64bdda06fe2c:log:0', 'hash': '0xf02597eb1897ad0dc404509eaee002ef7ea0643309729d98cdea64bdda06fe2c', 'from': '0x4312a0d8badb78db8851de0b760d175e1fc1f2ed', 'to': '0xc738ee98bd7b0d17a897e7fe54ac56778971fe79', 'value': 1689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x64ac1840', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:42:09.000Z'}}, {'blockNum': '0x7b5038', 'uniqueId': '0x2ef147f67afec0882e6b57e41601205578e65911fd30db9b7613d307a46b0bb2:log:3', 'hash': '0x2ef147f67afec0882e6b57e41601205578e65911fd30db9b7613d307a46b0bb2', 'from': '0xd22ccc7d95d116c6b229f89b8e13d025f1482137', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x025391d200', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:44:14.000Z'}}, {'blockNum': '0x7b5038', 'uniqueId': '0x8c7ff4e53c5ea194c6b8acf9ae673358b33987073f78a4cb683daa8df9a2a192:log:5', 'hash': '0x8c7ff4e53c5ea194c6b8acf9ae673358b33987073f78a4cb683daa8df9a2a192', 'from': '0xc5e3c1771c390534e77fcdbb23cba155fbc4d6ef', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 4466.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x010a365460', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:44:14.000Z'}}, {'blockNum': '0x7b5038', 'uniqueId': '0xe66851a41ccc11f5439d60b784731a7cb694d41496d8a875beb2e83ae41e7f90:log:7', 'hash': '0xe66851a41ccc11f5439d60b784731a7cb694d41496d8a875beb2e83ae41e7f90', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 135274.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1f7ef87bc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:44:14.000Z'}}, {'blockNum': '0x7b5038', 'uniqueId': '0x23268c620094e790d6138d005d719c6c2724b8a70860279991e3b1192d56d2ab:log:13', 'hash': '0x23268c620094e790d6138d005d719c6c2724b8a70860279991e3b1192d56d2ab', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 67882.292263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0fce199427', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:44:14.000Z'}}, {'blockNum': '0x7b504a', 'uniqueId': '0xe2c9fd1209e470ea5dc9d6c007f047ff9dbd2c2ff00c2606cb99f7494dcee3a5:log:1', 'hash': '0xe2c9fd1209e470ea5dc9d6c007f047ff9dbd2c2ff00c2606cb99f7494dcee3a5', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34985.642914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x08254e8ba2', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:49:10.000Z'}}, {'blockNum': '0x7b506e', 'uniqueId': '0x016de94bf61fccf2493887aaabfcd824b2bb04e8c65d3d9f545e0d799edba523:log:2', 'hash': '0x016de94bf61fccf2493887aaabfcd824b2bb04e8c65d3d9f545e0d799edba523', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 56461.3788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d255c44f0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:56:44.000Z'}}, {'blockNum': '0x7b5076', 'uniqueId': '0x6c6821fc96ae9546d79b16f7a0f04b29c51fe1a4e0f2cca67a9541bd9169396a:log:36', 'hash': '0x6c6821fc96ae9546d79b16f7a0f04b29c51fe1a4e0f2cca67a9541bd9169396a', 'from': '0xc738ee98bd7b0d17a897e7fe54ac56778971fe79', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x64ac1840', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-03T23:58:15.000Z'}}, {'blockNum': '0x7b5095', 'uniqueId': '0xfcda3d3656d5988abdda0190b52d80de9626c34a90c512790ae9efbbe600f31b:log:51', 'hash': '0xfcda3d3656d5988abdda0190b52d80de9626c34a90c512790ae9efbbe600f31b', 'from': '0xc644925f09108c8f521ed83ad733f459d60a3852', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 92.056235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x057caaab', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:06:00.000Z'}}, {'blockNum': '0x7b50a4', 'uniqueId': '0xd60dfca770cb975d7014b71511b5435599caa2960218692c3bc056394dc6f9f3:log:164', 'hash': '0xd60dfca770cb975d7014b71511b5435599caa2960218692c3bc056394dc6f9f3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1516.961106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a6afd52', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:10:00.000Z'}}, {'blockNum': '0x7b50a4', 'uniqueId': '0xd60dfca770cb975d7014b71511b5435599caa2960218692c3bc056394dc6f9f3:log:166', 'hash': '0xd60dfca770cb975d7014b71511b5435599caa2960218692c3bc056394dc6f9f3', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1516.961106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a6afd52', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:10:00.000Z'}}, {'blockNum': '0x7b50a4', 'uniqueId': '0xd60dfca770cb975d7014b71511b5435599caa2960218692c3bc056394dc6f9f3:log:171', 'hash': '0xd60dfca770cb975d7014b71511b5435599caa2960218692c3bc056394dc6f9f3', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1516.961106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a6afd52', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:10:00.000Z'}}, {'blockNum': '0x7b50a4', 'uniqueId': '0xd60dfca770cb975d7014b71511b5435599caa2960218692c3bc056394dc6f9f3:log:173', 'hash': '0xd60dfca770cb975d7014b71511b5435599caa2960218692c3bc056394dc6f9f3', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1516.961106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a6afd52', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:10:00.000Z'}}, {'blockNum': '0x7b50bd', 'uniqueId': '0x16b08745181d860a69d157247a0c370e88439f5826daeebcf0126e357ee2b44f:log:8', 'hash': '0x16b08745181d860a69d157247a0c370e88439f5826daeebcf0126e357ee2b44f', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 56461.3788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d255c44f0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:14:13.000Z'}}, {'blockNum': '0x7b50d0', 'uniqueId': '0x2108e4139a86709fdbf3f7d7d47583c23edf657b54267bc0d18c4f7423d3772d:log:49', 'hash': '0x2108e4139a86709fdbf3f7d7d47583c23edf657b54267bc0d18c4f7423d3772d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1803.146465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6b79d4e1', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:18:29.000Z'}}, {'blockNum': '0x7b50d0', 'uniqueId': '0x2108e4139a86709fdbf3f7d7d47583c23edf657b54267bc0d18c4f7423d3772d:log:51', 'hash': '0x2108e4139a86709fdbf3f7d7d47583c23edf657b54267bc0d18c4f7423d3772d', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1803.146465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6b79d4e1', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:18:29.000Z'}}, {'blockNum': '0x7b50d0', 'uniqueId': '0x2108e4139a86709fdbf3f7d7d47583c23edf657b54267bc0d18c4f7423d3772d:log:56', 'hash': '0x2108e4139a86709fdbf3f7d7d47583c23edf657b54267bc0d18c4f7423d3772d', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1803.146465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6b79d4e1', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:18:29.000Z'}}, {'blockNum': '0x7b50d0', 'uniqueId': '0x2108e4139a86709fdbf3f7d7d47583c23edf657b54267bc0d18c4f7423d3772d:log:58', 'hash': '0x2108e4139a86709fdbf3f7d7d47583c23edf657b54267bc0d18c4f7423d3772d', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 1803.146465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x6b79d4e1', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:18:29.000Z'}}, {'blockNum': '0x7b50e0', 'uniqueId': '0x81b98dcd3774b0db6eb89d0db9b83722fb2a3f52732cf8d71ed0e9e254d4dbdb:log:4', 'hash': '0x81b98dcd3774b0db6eb89d0db9b83722fb2a3f52732cf8d71ed0e9e254d4dbdb', 'from': '0x030e37ddd7df1b43db172b23916d523f1599c6cb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:22:13.000Z'}}, {'blockNum': '0x7b50e3', 'uniqueId': '0x5585c021cd9eda111cf562671652f5d9585064b2b687a9cb7a0958728be61b84:log:9', 'hash': '0x5585c021cd9eda111cf562671652f5d9585064b2b687a9cb7a0958728be61b84', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 10989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x028efed540', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:22:20.000Z'}}, {'blockNum': '0x7b510b', 'uniqueId': '0x92622a07483d0fde146e849e9444ae7e69591f7f5cdca401d08fdef275b1d8c7:log:32', 'hash': '0x92622a07483d0fde146e849e9444ae7e69591f7f5cdca401d08fdef275b1d8c7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 61562.3433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e5566cf84', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:29:12.000Z'}}, {'blockNum': '0x7b5130', 'uniqueId': '0xbc776d01bf05c7a659285ef4931d28ad424078041559e90be02224b03dc79c49:log:16', 'hash': '0xbc776d01bf05c7a659285ef4931d28ad424078041559e90be02224b03dc79c49', 'from': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'to': '0x0afacebe817caf83f5af3cdeffd6eda2672e7bbd', 'value': 10411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x026c8b40c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:36:28.000Z'}}, {'blockNum': '0x7b5139', 'uniqueId': '0xbfe3146a7a5f01f5ab7a19b89b58275ab2337095724874503977a3a61760ae24:log:11', 'hash': '0xbfe3146a7a5f01f5ab7a19b89b58275ab2337095724874503977a3a61760ae24', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd50f2c62637f809f6b473e57b4d3ff1bfe09819b', 'value': 192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0b71b000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:38:25.000Z'}}, {'blockNum': '0x7b514f', 'uniqueId': '0xe7ca63b19237c751e92e4a3df245c81f2820a3b82a64b28f46a549891bd0aa2a:log:10', 'hash': '0xe7ca63b19237c751e92e4a3df245c81f2820a3b82a64b28f46a549891bd0aa2a', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 61562.3433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0e5566cf84', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:44:22.000Z'}}, {'blockNum': '0x7b5158', 'uniqueId': '0x15885c6a6a1c74b8b65277df3ec71d6fdfef859bdd955ea8f52a60e142239179:log:99', 'hash': '0x15885c6a6a1c74b8b65277df3ec71d6fdfef859bdd955ea8f52a60e142239179', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 6401.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x017d8d9cc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:46:10.000Z'}}, {'blockNum': '0x7b515c', 'uniqueId': '0x251d7fde2fc9e9f842032a5b3cd83eb09e31f6ae432407f09d7c0fa0152eb7e9:log:11', 'hash': '0x251d7fde2fc9e9f842032a5b3cd83eb09e31f6ae432407f09d7c0fa0152eb7e9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x38f4e40abb1b9ec57044df327fda7a2a702a22da', 'value': 4924.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0125817b50', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:46:35.000Z'}}, {'blockNum': '0x7b5172', 'uniqueId': '0x08463dd75699ded949bac50ef32b168e3ed3eed059a07504bee14ba33bc0e504:log:8', 'hash': '0x08463dd75699ded949bac50ef32b168e3ed3eed059a07504bee14ba33bc0e504', 'from': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'to': '0xf14fb45e2868bfbe71bd90be03c7b34e4c78be30', 'value': 15300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x038ff37900', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:52:12.000Z'}}, {'blockNum': '0x7b517e', 'uniqueId': '0x3ca429477d70fe091e523cb0b2394741843de1d79b7115b4af425ecdbb76b6c1:log:5', 'hash': '0x3ca429477d70fe091e523cb0b2394741843de1d79b7115b4af425ecdbb76b6c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x862adf7f7ab8d88ef550fca06205a0c9e1ebd0f3', 'value': 2992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb2564c00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T00:54:57.000Z'}}, {'blockNum': '0x7b51bf', 'uniqueId': '0xddc5c061add4acb39daa030e98b049859f44ba4b9f2089623fdb04065b5931c1:log:5', 'hash': '0xddc5c061add4acb39daa030e98b049859f44ba4b9f2089623fdb04065b5931c1', 'from': '0xf14fb45e2868bfbe71bd90be03c7b34e4c78be30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15363.172416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0393b76840', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:09:07.000Z'}}, {'blockNum': '0x7b51ca', 'uniqueId': '0x580162574e81e70b4daeecbf8d2fc3444f848c111dc7ce270f9f99e9a3d5e6dc:log:55', 'hash': '0x580162574e81e70b4daeecbf8d2fc3444f848c111dc7ce270f9f99e9a3d5e6dc', 'from': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'to': '0x2f9378d573b20199105bcaf6d103ac88d5442aa5', 'value': 99995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x17482a9cc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:12:11.000Z'}}, {'blockNum': '0x7b51ca', 'uniqueId': '0xe6a315f6035607694f468b07fac2545c47d11a05182a3c23db68637725c8bd01:log:56', 'hash': '0xe6a315f6035607694f468b07fac2545c47d11a05182a3c23db68637725c8bd01', 'from': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'to': '0x2f9378d573b20199105bcaf6d103ac88d5442aa5', 'value': 89995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x14f41eb8c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:12:11.000Z'}}, {'blockNum': '0x7b51ca', 'uniqueId': '0x5717cc2a8dc0934adf0dc2ddaa5d0f62dc8a4a22b4aa22912633bed5be2b67ca:log:57', 'hash': '0x5717cc2a8dc0934adf0dc2ddaa5d0f62dc8a4a22b4aa22912633bed5be2b67ca', 'from': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'to': '0x2f9378d573b20199105bcaf6d103ac88d5442aa5', 'value': 79995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x12a012d4c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:12:11.000Z'}}, {'blockNum': '0x7b51ca', 'uniqueId': '0xb350f343bccd531b48aa75451db8b4339e09c0411526684b390122cf9fa7df8f:log:90', 'hash': '0xb350f343bccd531b48aa75451db8b4339e09c0411526684b390122cf9fa7df8f', 'from': '0xbca2c8567d7317ea8d78fc44486287edd60b7ba3', 'to': '0xd18a8ff0d434f60c9c67a2ad49f473f006e21a95', 'value': 1132.769623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4384b157', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:12:11.000Z'}}, {'blockNum': '0x7b51cc', 'uniqueId': '0xd1407fef8516dac273018e59b8f5d7213ae8ac0258084b8c0a3a71b4520c81eb:log:49', 'hash': '0xd1407fef8516dac273018e59b8f5d7213ae8ac0258084b8c0a3a71b4520c81eb', 'from': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'to': '0x2f9378d573b20199105bcaf6d103ac88d5442aa5', 'value': 94995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x161e24aac0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:13:18.000Z'}}, {'blockNum': '0x7b51cf', 'uniqueId': '0xa381125c9355421b10baf0154999ce6224beb111918d6296744bdeaf0a6a38ac:log:8', 'hash': '0xa381125c9355421b10baf0154999ce6224beb111918d6296744bdeaf0a6a38ac', 'from': '0x862adf7f7ab8d88ef550fca06205a0c9e1ebd0f3', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 2992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xb2564c00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:13:50.000Z'}}, {'blockNum': '0x7b51ea', 'uniqueId': '0xd54362623aa560e041a04acc9ab325d398ea480bfaa228a86ea6d0a735a113c3:log:33', 'hash': '0xd54362623aa560e041a04acc9ab325d398ea480bfaa228a86ea6d0a735a113c3', 'from': '0x2f9378d573b20199105bcaf6d103ac88d5442aa5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 364980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x54fa80d500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:19:06.000Z'}}, {'blockNum': '0x7b51ea', 'uniqueId': '0x6c61f480c5d1ac7116be799e12a16f29bc51f8630d220225867e48825315e188:log:42', 'hash': '0x6c61f480c5d1ac7116be799e12a16f29bc51f8630d220225867e48825315e188', 'from': '0xd18a8ff0d434f60c9c67a2ad49f473f006e21a95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1132.769623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x4384b157', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:19:06.000Z'}}, {'blockNum': '0x7b521c', 'uniqueId': '0x4ab54481ddd81ede90776fdc785eb32c3f9a23220ec7f3ac8ed7480aedb0a8da:log:24', 'hash': '0x4ab54481ddd81ede90776fdc785eb32c3f9a23220ec7f3ac8ed7480aedb0a8da', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x2f79c247fb24f55fea61529469fe1b320f8dbf7a', 'value': 212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ca2dd00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:29:14.000Z'}}, {'blockNum': '0x7b5238', 'uniqueId': '0x230261c81483fd25ae19c1c4f9afc8e8661c4b2ee68a4a09c23b980763f37cb2:log:6', 'hash': '0x230261c81483fd25ae19c1c4f9afc8e8661c4b2ee68a4a09c23b980763f37cb2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3e8a4b05954e29bbf681ee7ff97a407343c8624a', 'value': 22242.9175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x052dc7fc7c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:37:11.000Z'}}, {'blockNum': '0x7b5240', 'uniqueId': '0x9149a97d72b77adb3094d8b6061f1454aa2872a867097c7c460750feb4f81731:log:24', 'hash': '0x9149a97d72b77adb3094d8b6061f1454aa2872a867097c7c460750feb4f81731', 'from': '0x2f79c247fb24f55fea61529469fe1b320f8dbf7a', 'to': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'value': 212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ca2dd00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:39:36.000Z'}}, {'blockNum': '0x7b5266', 'uniqueId': '0xe120419f0d60d1aa3a7ede2cff6346dd431c58a3dd4d2d0ccc59ab3b394a6343:log:6', 'hash': '0xe120419f0d60d1aa3a7ede2cff6346dd431c58a3dd4d2d0ccc59ab3b394a6343', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 255840, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b91409800', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:48:09.000Z'}}, {'blockNum': '0x7b5280', 'uniqueId': '0x5e3fa1015dcaa2e2eb39a296f3ffbd9317af0e7ea11d4c9c371647f2a9472d66:log:38', 'hash': '0x5e3fa1015dcaa2e2eb39a296f3ffbd9317af0e7ea11d4c9c371647f2a9472d66', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa724d259dacf318939a0573dcf0c2632077363a5', 'value': 1224.594345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x48fdd3a9', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T01:54:46.000Z'}}, {'blockNum': '0x7b52e0', 'uniqueId': '0x43c9c2c8f0ab46124dbc65dc7372a33ba851d46b3f77d01a114b9d5357cc26be:log:10', 'hash': '0x43c9c2c8f0ab46124dbc65dc7372a33ba851d46b3f77d01a114b9d5357cc26be', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 57590.9101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d68af8c94', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:16:24.000Z'}}, {'blockNum': '0x7b52e0', 'uniqueId': '0x9b61a61962653d9c719ae585bb792616872e51a294602e243f2c64add2af0f5f:log:11', 'hash': '0x9b61a61962653d9c719ae585bb792616872e51a294602e243f2c64add2af0f5f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 24632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05bc2e7e00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:16:24.000Z'}}, {'blockNum': '0x7b52f2', 'uniqueId': '0x451606114ced778b49d1df321c082977c58d94485737c8e186cf763a20440d4e:log:4', 'hash': '0x451606114ced778b49d1df321c082977c58d94485737c8e186cf763a20440d4e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'value': 3584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xd59f8000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:20:20.000Z'}}, {'blockNum': '0x7b52f4', 'uniqueId': '0x89b18bbb9991f857c1a3ec744eccbfb720069728bf7a29be91e7df0c76b057d4:log:2', 'hash': '0x89b18bbb9991f857c1a3ec744eccbfb720069728bf7a29be91e7df0c76b057d4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 267631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3e500cf9c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:20:54.000Z'}}, {'blockNum': '0x7b5304', 'uniqueId': '0x7e8ff16057a018e03baf2c4fb29661add9810a86c9e7a46ebf99f2420a88619f:log:25', 'hash': '0x7e8ff16057a018e03baf2c4fb29661add9810a86c9e7a46ebf99f2420a88619f', 'from': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xd59f8000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:23:58.000Z'}}, {'blockNum': '0x7b5318', 'uniqueId': '0xf9e11adf82e848a9e6b632e409e61d85e06b9608a554a77ce288609a3d2b80b1:log:28', 'hash': '0xf9e11adf82e848a9e6b632e409e61d85e06b9608a554a77ce288609a3d2b80b1', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 57590.9101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d68af8c94', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:29:11.000Z'}}, {'blockNum': '0x7b5318', 'uniqueId': '0x3db73ca7dfcf95b460dace7539b997760faff202994659a968a60d3469c9d7eb:log:30', 'hash': '0x3db73ca7dfcf95b460dace7539b997760faff202994659a968a60d3469c9d7eb', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 24632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x05bc2e7e00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:29:11.000Z'}}, {'blockNum': '0x7b5360', 'uniqueId': '0x628134a993e19ab6d3ad1946f764fc37f3bae48b61de70ef07d614b4c45e93f9:log:3', 'hash': '0x628134a993e19ab6d3ad1946f764fc37f3bae48b61de70ef07d614b4c45e93f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xef2f3e2ec4c2f17cd72c87086d3648526d6c677c', 'value': 1984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x76417000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:43:15.000Z'}}, {'blockNum': '0x7b536c', 'uniqueId': '0xee296132d93f7490ba7d0a78a20585cbdf6f1fc79b6b7d4cd57c7ff22060eea4:log:22', 'hash': '0xee296132d93f7490ba7d0a78a20585cbdf6f1fc79b6b7d4cd57c7ff22060eea4', 'from': '0xef2f3e2ec4c2f17cd72c87086d3648526d6c677c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x76417000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:45:08.000Z'}}, {'blockNum': '0x7b537c', 'uniqueId': '0x1b139df773855230e72369011971601abb62f2af423afe34fc319b1ed03adb29:log:20', 'hash': '0x1b139df773855230e72369011971601abb62f2af423afe34fc319b1ed03adb29', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 11784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x02be619200', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:48:49.000Z'}}, {'blockNum': '0x7b537c', 'uniqueId': '0x913df3ca45cd581235209d870009b8876368b4e8b0f577f1522199b32841cbd3:log:21', 'hash': '0x913df3ca45cd581235209d870009b8876368b4e8b0f577f1522199b32841cbd3', 'from': '0x1095b99c20f15a61d35f367937b6d2bbbd6c0c5a', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01dcd65000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:48:49.000Z'}}, {'blockNum': '0x7b537c', 'uniqueId': '0xdca25617e8c5f80a842d8cdae3d6db38281a58f8d2ec012da50a289e64a33c2b:log:22', 'hash': '0xdca25617e8c5f80a842d8cdae3d6db38281a58f8d2ec012da50a289e64a33c2b', 'from': '0x7fa4b25c3d29e8b9eed8da649fa5c13fb6bcc392', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 15895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x03b36a73c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:48:49.000Z'}}, {'blockNum': '0x7b537d', 'uniqueId': '0x129b66bb4f3f3d2d6a544ccf6aad8e6c754693802ea8bb051a5b70aca4f46fa6:log:6', 'hash': '0x129b66bb4f3f3d2d6a544ccf6aad8e6c754693802ea8bb051a5b70aca4f46fa6', 'from': '0xb3a3fa926a2b3b8aca4d698b0a1eaa350ffe0276', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 1700.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x655884e0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T02:48:57.000Z'}}, {'blockNum': '0x7b53bc', 'uniqueId': '0x528d323969be3f8d539a0bbbd733d802ea711f0828171f30030549cd585b4d2b:log:32', 'hash': '0x528d323969be3f8d539a0bbbd733d802ea711f0828171f30030549cd585b4d2b', 'from': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'to': '0x2f9378d573b20199105bcaf6d103ac88d5442aa5', 'value': 99995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x17482a9cc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:01:19.000Z'}}, {'blockNum': '0x7b53dc', 'uniqueId': '0x2feeef07f79d3ca70fa51bf292e7518373ed77529ff2b5d9350941b197e99ed2:log:29', 'hash': '0x2feeef07f79d3ca70fa51bf292e7518373ed77529ff2b5d9350941b197e99ed2', 'from': '0x2f9378d573b20199105bcaf6d103ac88d5442aa5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x17482a9cc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:09:06.000Z'}}, {'blockNum': '0x7b5410', 'uniqueId': '0x578912b83974ca280ca22708233ba80d0c970ade275674741636730490739bfd:log:10', 'hash': '0x578912b83974ca280ca22708233ba80d0c970ade275674741636730490739bfd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 55641.3575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0cf47bbcbc', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:19:12.000Z'}}, {'blockNum': '0x7b5412', 'uniqueId': '0x734779f8efb4b3a19af46687e3d182ba3a261b96bba67fa225dc6b32e32d9e46:log:5', 'hash': '0x734779f8efb4b3a19af46687e3d182ba3a261b96bba67fa225dc6b32e32d9e46', 'from': '0x8f4f1a4ea028dd239caef4b45475ff2b151edbbc', 'to': '0xdecd88ae9b2f0d0cbf0c8ed67df5715109ffdb3f', 'value': 370000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5625b7f400', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:20:00.000Z'}}, {'blockNum': '0x7b5431', 'uniqueId': '0xb9022b0bdf9366e20e36a94c6f18bf0e27a1749f7620147c45603252970bb39f:log:9', 'hash': '0xb9022b0bdf9366e20e36a94c6f18bf0e27a1749f7620147c45603252970bb39f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9cd1dfc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:26:44.000Z'}}, {'blockNum': '0x7b5432', 'uniqueId': '0xc844b74b2474ea35b1e0b508c70deb58ed5aaff32310afa41a943e079088a0aa:log:3', 'hash': '0xc844b74b2474ea35b1e0b508c70deb58ed5aaff32310afa41a943e079088a0aa', 'from': '0x21e8998e92f3ed241330f1f419549c570535154d', 'to': '0x91f5f094cb349c2b7cd384596e8a639c75cc1ba5', 'value': 32.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x01ed02f0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:26:46.000Z'}}, {'blockNum': '0x7b5436', 'uniqueId': '0xd71ae6cdc61189c2f5fb22152d84f0dedcec9bee4956adea6eaab72a757a47b4:log:29', 'hash': '0xd71ae6cdc61189c2f5fb22152d84f0dedcec9bee4956adea6eaab72a757a47b4', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9cd1dfc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:27:57.000Z'}}, {'blockNum': '0x7b5436', 'uniqueId': '0xd71ae6cdc61189c2f5fb22152d84f0dedcec9bee4956adea6eaab72a757a47b4:log:31', 'hash': '0xd71ae6cdc61189c2f5fb22152d84f0dedcec9bee4956adea6eaab72a757a47b4', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9cd1dfc0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:27:57.000Z'}}, {'blockNum': '0x7b543b', 'uniqueId': '0x6ced16a7f6e28036bc4f0c1eccd85e9de80814ecf0dd545fa48e6df6cd554ffd:log:8', 'hash': '0x6ced16a7f6e28036bc4f0c1eccd85e9de80814ecf0dd545fa48e6df6cd554ffd', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 55641.3575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0cf47bbcbc', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:29:00.000Z'}}, {'blockNum': '0x7b543d', 'uniqueId': '0x980cbc35e501effa750a4ac98a43a79440716146c459d2aad52005764edd035c:log:1', 'hash': '0x980cbc35e501effa750a4ac98a43a79440716146c459d2aad52005764edd035c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 23732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0586899500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:30:01.000Z'}}, {'blockNum': '0x7b544c', 'uniqueId': '0xe2c3fd0b91572fe5bbc530717b3ccfa9bb28eec857663bd14bb7896bb340c948:log:9', 'hash': '0xe2c3fd0b91572fe5bbc530717b3ccfa9bb28eec857663bd14bb7896bb340c948', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 57211.8798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d52180178', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:34:17.000Z'}}, {'blockNum': '0x7b546a', 'uniqueId': '0xf5886b91a43fa076ddb58b55db3d46501ee232baf99c5479007c8b9bd0b09a92:log:12', 'hash': '0xf5886b91a43fa076ddb58b55db3d46501ee232baf99c5479007c8b9bd0b09a92', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xcd329335ad7cbc26f9a142271b5313d961b108c8', 'value': 34472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0806b0fa00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:40:23.000Z'}}, {'blockNum': '0x7b5477', 'uniqueId': '0xd5ae1f7fa0b6836019724c82c8c58ea5924f3a57b8620a17ab52aeb1f59ae1e7:log:17', 'hash': '0xd5ae1f7fa0b6836019724c82c8c58ea5924f3a57b8620a17ab52aeb1f59ae1e7', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 23732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0586899500', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:44:16.000Z'}}, {'blockNum': '0x7b5477', 'uniqueId': '0x7c96750564dfe355710bbcdda6c6fc7d23e53c83112ae550d42558947f7a9b45:log:21', 'hash': '0x7c96750564dfe355710bbcdda6c6fc7d23e53c83112ae550d42558947f7a9b45', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 57211.8798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d52180178', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:44:16.000Z'}}, {'blockNum': '0x7b5491', 'uniqueId': '0xfe3ae2bea6fb353fd2767261a1d6286fe65d495baa00dfb9462b0c4477ec7f05:log:89', 'hash': '0xfe3ae2bea6fb353fd2767261a1d6286fe65d495baa00dfb9462b0c4477ec7f05', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2683.295762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9fefd812', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:49:12.000Z'}}, {'blockNum': '0x7b5491', 'uniqueId': '0xfe3ae2bea6fb353fd2767261a1d6286fe65d495baa00dfb9462b0c4477ec7f05:log:93', 'hash': '0xfe3ae2bea6fb353fd2767261a1d6286fe65d495baa00dfb9462b0c4477ec7f05', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 2683.295762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x9fefd812', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:49:12.000Z'}}, {'blockNum': '0x7b54ab', 'uniqueId': '0x7eff1fff9f4852a22a9055f3f217b8f252d39606010bb704424efef30bc5392d:log:125', 'hash': '0x7eff1fff9f4852a22a9055f3f217b8f252d39606010bb704424efef30bc5392d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 57261.7745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d551156a4', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:55:48.000Z'}}, {'blockNum': '0x7b54b1', 'uniqueId': '0x498bd1e0b7762440b1a8e4b66d37c8bb2886ac010450b01d866bffd6d8d8ecfc:log:128', 'hash': '0x498bd1e0b7762440b1a8e4b66d37c8bb2886ac010450b01d866bffd6d8d8ecfc', 'from': '0xd10701a125baa9d3528eadce316e418e621d0b99', 'to': '0xd0a683be1273ccf2f12156886643c6fdd20bc6fb', 'value': 992.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b23c540', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:57:44.000Z'}}, {'blockNum': '0x7b54b9', 'uniqueId': '0xdcb08354217e05f671fb43f0c5da2df5dc712f614f8a8d0d6ff54ef5c9a0d26e:log:4', 'hash': '0xdcb08354217e05f671fb43f0c5da2df5dc712f614f8a8d0d6ff54ef5c9a0d26e', 'from': '0xcd329335ad7cbc26f9a142271b5313d961b108c8', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 34472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0806b0fa00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T03:59:31.000Z'}}, {'blockNum': '0x7b54bc', 'uniqueId': '0xc0d71ef6f6753aaef82a47f0c5728ceffd3995df017bf4e71894454296291ab4:log:15', 'hash': '0xc0d71ef6f6753aaef82a47f0c5728ceffd3995df017bf4e71894454296291ab4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd86a2944406deb684c8712cf0e93b95778a35393', 'value': 85000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x13ca651200', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:00:34.000Z'}}, {'blockNum': '0x7b54ce', 'uniqueId': '0x42648aa6239513e13f792c618e29dca79a95f9d0fa70490d93f121081b4964d4:log:26', 'hash': '0x42648aa6239513e13f792c618e29dca79a95f9d0fa70490d93f121081b4964d4', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 5296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x013baa8c00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:03:59.000Z'}}, {'blockNum': '0x7b54d1', 'uniqueId': '0xf66dc143eaf7e66cc676e494d6928e16d856fd114bb36e087ecede8d4308b887:log:22', 'hash': '0xf66dc143eaf7e66cc676e494d6928e16d856fd114bb36e087ecede8d4308b887', 'from': '0xd86a2944406deb684c8712cf0e93b95778a35393', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 85000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x13ca651200', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:05:31.000Z'}}, {'blockNum': '0x7b54e1', 'uniqueId': '0x4635262e50515a8731b8a2d4a1c6ea75411efac6de5d45a156d466e32dc43716:log:3', 'hash': '0x4635262e50515a8731b8a2d4a1c6ea75411efac6de5d45a156d466e32dc43716', 'from': '0xd0a683be1273ccf2f12156886643c6fdd20bc6fb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 992.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b23c540', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:09:09.000Z'}}, {'blockNum': '0x7b54ec', 'uniqueId': '0x87e112e1846ac06d3bf28d47e24272f64a919467518c94aae9044ff37f8f10ee:log:5', 'hash': '0x87e112e1846ac06d3bf28d47e24272f64a919467518c94aae9044ff37f8f10ee', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'value': 27339.727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x065d932098', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:10:36.000Z'}}, {'blockNum': '0x7b54f0', 'uniqueId': '0x58d73f31992ecc53201d100d89260303957726a287912f2a0bf650d853aa5662:log:4', 'hash': '0x58d73f31992ecc53201d100d89260303957726a287912f2a0bf650d853aa5662', 'from': '0xe4a8249f25c13e1ee44fbf0c7a5f065bfe244310', 'to': '0x39417f6e6d23bc96d9ba23ee4a92189325b83e35', 'value': 4089.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xf3bf4ac0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:11:48.000Z'}}, {'blockNum': '0x7b54f9', 'uniqueId': '0x6529cdca74ca09017c3fd8ff832daa0cc048421cfc376ccabc711376934cb951:log:22', 'hash': '0x6529cdca74ca09017c3fd8ff832daa0cc048421cfc376ccabc711376934cb951', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2264.896363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x86ff936b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:13:33.000Z'}}, {'blockNum': '0x7b54f9', 'uniqueId': '0x6529cdca74ca09017c3fd8ff832daa0cc048421cfc376ccabc711376934cb951:log:26', 'hash': '0x6529cdca74ca09017c3fd8ff832daa0cc048421cfc376ccabc711376934cb951', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 2264.896363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x86ff936b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:13:33.000Z'}}, {'blockNum': '0x7b54f9', 'uniqueId': '0x6529cdca74ca09017c3fd8ff832daa0cc048421cfc376ccabc711376934cb951:log:27', 'hash': '0x6529cdca74ca09017c3fd8ff832daa0cc048421cfc376ccabc711376934cb951', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2264.896363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x86ff936b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:13:33.000Z'}}, {'blockNum': '0x7b54f9', 'uniqueId': '0x6529cdca74ca09017c3fd8ff832daa0cc048421cfc376ccabc711376934cb951:log:28', 'hash': '0x6529cdca74ca09017c3fd8ff832daa0cc048421cfc376ccabc711376934cb951', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2264.896363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x86ff936b', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:13:33.000Z'}}, {'blockNum': '0x7b54fb', 'uniqueId': '0x7aee232a70bc0007577f99ddccb6bc180a8a3211c1342668f39954b97a64bf12:log:12', 'hash': '0x7aee232a70bc0007577f99ddccb6bc180a8a3211c1342668f39954b97a64bf12', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 57261.7745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d551156a4', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:14:02.000Z'}}, {'blockNum': '0x7b5519', 'uniqueId': '0x70f052582f598311437d89f8361786dd15663fceadd715562b7cb4d29e758a50:log:11', 'hash': '0x70f052582f598311437d89f8361786dd15663fceadd715562b7cb4d29e758a50', 'from': '0x161a8c7fd0c09c5312fc9cef2c0d98bef8620495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27339.727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x065d932098', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:19:07.000Z'}}, {'blockNum': '0x7b5519', 'uniqueId': '0x854cee655965aefe0d691593edf47c610e17a02d4acec0d605af371d916b83d9:log:13', 'hash': '0x854cee655965aefe0d691593edf47c610e17a02d4acec0d605af371d916b83d9', 'from': '0x39417f6e6d23bc96d9ba23ee4a92189325b83e35', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4089.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xf3bf4ac0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:19:07.000Z'}}, {'blockNum': '0x7b553d', 'uniqueId': '0xa837ef090c65ecccfec911f2bcf01390fa2e559f1c25fd0b977bbeb1f4297320:log:110', 'hash': '0xa837ef090c65ecccfec911f2bcf01390fa2e559f1c25fd0b977bbeb1f4297320', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 36498.4887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x087f7abd7c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:27:55.000Z'}}, {'blockNum': '0x7b5566', 'uniqueId': '0x559934fc1ccffcc64aec8fea672a2adb92883f58287d9410e09ef933526ff23c:log:36', 'hash': '0x559934fc1ccffcc64aec8fea672a2adb92883f58287d9410e09ef933526ff23c', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36498.4887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x087f7abd7c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:39:13.000Z'}}, {'blockNum': '0x7b5566', 'uniqueId': '0xe9b25773cf568dc6f89482de50859323b4668b84589c8deb3f1a2450ffe4493d:log:57', 'hash': '0xe9b25773cf568dc6f89482de50859323b4668b84589c8deb3f1a2450ffe4493d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 2431.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x90e7a460', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:39:13.000Z'}}, {'blockNum': '0x7b5579', 'uniqueId': '0xbbb0fc6b3f85dd72268e96cfebbc68fb35826adb690c74c62d80545372bad48b:log:18', 'hash': '0xbbb0fc6b3f85dd72268e96cfebbc68fb35826adb690c74c62d80545372bad48b', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 4053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xf193df40', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:42:50.000Z'}}, {'blockNum': '0x7b557b', 'uniqueId': '0xf49502774fc8dd9e65abfc7b4a2a7c04b41a64a77efb580e07c291e1b8410a1c:log:167', 'hash': '0xf49502774fc8dd9e65abfc7b4a2a7c04b41a64a77efb580e07c291e1b8410a1c', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'value': 4545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x010ee73240', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:44:08.000Z'}}, {'blockNum': '0x7b557c', 'uniqueId': '0x82b7b5609ac299f9e0547c82c907ea82330a0cfa50a17d7701b51b9ed2479fbe:log:74', 'hash': '0x82b7b5609ac299f9e0547c82c907ea82330a0cfa50a17d7701b51b9ed2479fbe', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xc3b93abca41063b68c699d9948268d6e1bb71232', 'value': 2444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x91ac7b00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:44:34.000Z'}}, {'blockNum': '0x7b558c', 'uniqueId': '0x4eddf96ee7bd95d3d85ac597a2fc8568d1b4258e62b920f1b0152505216f9163:log:16', 'hash': '0x4eddf96ee7bd95d3d85ac597a2fc8568d1b4258e62b920f1b0152505216f9163', 'from': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x010ee73240', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:48:42.000Z'}}, {'blockNum': '0x7b55a6', 'uniqueId': '0xad12cebd3b915f0be400ce5a931077fcb0c8cc369611ad92cf429f3674639fe0:log:11', 'hash': '0xad12cebd3b915f0be400ce5a931077fcb0c8cc369611ad92cf429f3674639fe0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe119f38641677012ffb1a8bcb9c12df9c515c9f0', 'value': 294.689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x119098e8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T04:53:45.000Z'}}, {'blockNum': '0x7b5612', 'uniqueId': '0x6ac7161f813aa11b68b8c8852142869a594a12c24ce9eeb3e036b1fdf3f41bad:log:9', 'hash': '0x6ac7161f813aa11b68b8c8852142869a594a12c24ce9eeb3e036b1fdf3f41bad', 'from': '0x593011939c7807d95bba7aa237fd06f81fc4b411', 'to': '0x5b489e85ac776485ff0cf3195943985350f8dca1', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T05:22:25.000Z'}}, {'blockNum': '0x7b5621', 'uniqueId': '0x748a109c2517cf3e729a709936004a35bda0e845b3f52df2b4b10b4f0f556ea7:log:35', 'hash': '0x748a109c2517cf3e729a709936004a35bda0e845b3f52df2b4b10b4f0f556ea7', 'from': '0x5b489e85ac776485ff0cf3195943985350f8dca1', 'to': '0x6279aa8ff362bbbf9cfd200415e9fd9696d60284', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T05:25:49.000Z'}}, {'blockNum': '0x7b5644', 'uniqueId': '0x7c27c37e1d6405d39b7d36841da5de8da9834df958c0128bdf010f6d96d50bcd:log:5', 'hash': '0x7c27c37e1d6405d39b7d36841da5de8da9834df958c0128bdf010f6d96d50bcd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0096dd0b9cd2ac0363ec41b51e2b5cd88a40d760', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0xba43b74000', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T05:35:41.000Z'}}, {'blockNum': '0x7b5684', 'uniqueId': '0xbde1d5a08d0d4b1fa32394f5ffc324aeb8f772ed04b0eabcb9a934cbce1014e2:log:67', 'hash': '0xbde1d5a08d0d4b1fa32394f5ffc324aeb8f772ed04b0eabcb9a934cbce1014e2', 'from': '0x144534ca788873a64a94ed26f61abd4f56e45cf2', 'to': '0xe279fc6c022c64b2e243db1841057d7be663d15e', 'value': 15435.747172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x03980acf64', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T05:51:18.000Z'}}, {'blockNum': '0x7b5689', 'uniqueId': '0xf86d991d7738495855a693fbee430f951c56b16b23e9030e00dcdc0bc3496453:log:4', 'hash': '0xf86d991d7738495855a693fbee430f951c56b16b23e9030e00dcdc0bc3496453', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2e89a24c36bdf44058bb5170189e984ff98f38c1', 'value': 1515.467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a5430f8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T05:53:48.000Z'}}, {'blockNum': '0x7b5699', 'uniqueId': '0x84a3f9c9e3896a8a9c10f2e159ba2ffd8e7ee33c14823e808e50f6520b9469f5:log:43', 'hash': '0x84a3f9c9e3896a8a9c10f2e159ba2ffd8e7ee33c14823e808e50f6520b9469f5', 'from': '0x2e89a24c36bdf44058bb5170189e984ff98f38c1', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1515.467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x5a5430f8', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T05:57:30.000Z'}}, {'blockNum': '0x7b569e', 'uniqueId': '0x6730102225633ee55fc5b02029c9675a6d99d7c79319b34aa6da72a07e71bd37:log:95', 'hash': '0x6730102225633ee55fc5b02029c9675a6d99d7c79319b34aa6da72a07e71bd37', 'from': '0xe279fc6c022c64b2e243db1841057d7be663d15e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15435.747172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x03980acf64', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T05:59:10.000Z'}}, {'blockNum': '0x7b56a7', 'uniqueId': '0x7ccd222169628b0b01a2344f3c56e1c1f5fef497e6f59d59efa9197166bf3a3f:log:77', 'hash': '0x7ccd222169628b0b01a2344f3c56e1c1f5fef497e6f59d59efa9197166bf3a3f', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 530.175809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1f99d741', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:00:47.000Z'}}, {'blockNum': '0x7b56a7', 'uniqueId': '0x7ccd222169628b0b01a2344f3c56e1c1f5fef497e6f59d59efa9197166bf3a3f:log:81', 'hash': '0x7ccd222169628b0b01a2344f3c56e1c1f5fef497e6f59d59efa9197166bf3a3f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbde2b9521edacb62c2e88c08e92c354774e09c28', 'value': 530.175809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1f99d741', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:00:47.000Z'}}, {'blockNum': '0x7b56b5', 'uniqueId': '0x8368d0b7ddd7444ddc03d68f35046d800e5b1cc8a10791b7d1023625b11ac7bd:log:53', 'hash': '0x8368d0b7ddd7444ddc03d68f35046d800e5b1cc8a10791b7d1023625b11ac7bd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x06fb5a200b4b78a4d5bcac74c5302f012f632e78', 'value': 5967.714282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0163b417ea', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:04:59.000Z'}}, {'blockNum': '0x7b56c3', 'uniqueId': '0x6a578fe400ec88edb33c02d7577bc8fae190f365f3689940b9ae2a73cbc3d92b:log:2', 'hash': '0x6a578fe400ec88edb33c02d7577bc8fae190f365f3689940b9ae2a73cbc3d92b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa11c03fc4e60d4afa7d6af2e68fd8faab7a3abb9', 'value': 306.56463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1245ce16', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:07:57.000Z'}}, {'blockNum': '0x7b5717', 'uniqueId': '0xfc894a01749d3c8c30b0be63eeb7aead4c01f774e4f11cc6f78101fb2c784a1e:log:6', 'hash': '0xfc894a01749d3c8c30b0be63eeb7aead4c01f774e4f11cc6f78101fb2c784a1e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 36482.4887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x087e86997c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:27:38.000Z'}}, {'blockNum': '0x7b5717', 'uniqueId': '0x5fd107ab81b63a8cc3f85197c22aceebadb7c308d157137faceecd4617cdd37b:log:59', 'hash': '0x5fd107ab81b63a8cc3f85197c22aceebadb7c308d157137faceecd4617cdd37b', 'from': '0xa11c03fc4e60d4afa7d6af2e68fd8faab7a3abb9', 'to': '0xe83fc6c614c37955606be414eda82b89d45ea57d', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3b9aca00', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:27:38.000Z'}}, {'blockNum': '0x7b5739', 'uniqueId': '0x9971035015262f0e40506e8db3637c0b89fc3a06460381c798f28a8e920db1a3:log:24', 'hash': '0x9971035015262f0e40506e8db3637c0b89fc3a06460381c798f28a8e920db1a3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 262830, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x3d31e38780', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:35:03.000Z'}}, {'blockNum': '0x7b5763', 'uniqueId': '0x159ec976c7c7691a1f9c8f7fdc6468f6940f9a19ea9196c87fabbff0dbf996b0:log:7', 'hash': '0x159ec976c7c7691a1f9c8f7fdc6468f6940f9a19ea9196c87fabbff0dbf996b0', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 36482.4887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x087e86997c', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:44:26.000Z'}}, {'blockNum': '0x7b5763', 'uniqueId': '0x1ab1a07cd8815f2f4d3d2bb9a043a2189abc4018d25b86849b7468e005b736c9:log:17', 'hash': '0x1ab1a07cd8815f2f4d3d2bb9a043a2189abc4018d25b86849b7468e005b736c9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 56810.6845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0d3a2e4054', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:44:26.000Z'}}, {'blockNum': '0x7b5766', 'uniqueId': '0xb73d07c14623a89b8f485d821bd79e5321cbb97d209decd9a34058693b3d3e8a:log:66', 'hash': '0xb73d07c14623a89b8f485d821bd79e5321cbb97d209decd9a34058693b3d3e8a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2288.607029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x88695f35', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:44:47.000Z'}}, {'blockNum': '0x7b5766', 'uniqueId': '0xb73d07c14623a89b8f485d821bd79e5321cbb97d209decd9a34058693b3d3e8a:log:68', 'hash': '0xb73d07c14623a89b8f485d821bd79e5321cbb97d209decd9a34058693b3d3e8a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2288.607029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x88695f35', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:44:47.000Z'}}, {'blockNum': '0x7b5766', 'uniqueId': '0xb73d07c14623a89b8f485d821bd79e5321cbb97d209decd9a34058693b3d3e8a:log:73', 'hash': '0xb73d07c14623a89b8f485d821bd79e5321cbb97d209decd9a34058693b3d3e8a', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2288.607029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x88695f35', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:44:47.000Z'}}, {'blockNum': '0x7b5766', 'uniqueId': '0xb73d07c14623a89b8f485d821bd79e5321cbb97d209decd9a34058693b3d3e8a:log:75', 'hash': '0xb73d07c14623a89b8f485d821bd79e5321cbb97d209decd9a34058693b3d3e8a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'value': 2288.607029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x88695f35', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:44:47.000Z'}}, {'blockNum': '0x7b578b', 'uniqueId': '0x424d2ed5965f4eae87383c7f975115cc433529dde5954c339393d10c814acab4:log:5', 'hash': '0x424d2ed5965f4eae87383c7f975115cc433529dde5954c339393d10c814acab4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xcd329335ad7cbc26f9a142271b5313d961b108c8', 'value': 42675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x09efa0d2c0', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:52:18.000Z'}}, {'blockNum': '0x7b57a0', 'uniqueId': '0x27d6f2089d760a794c3cff25154024bff98c60dd44b3d7e0c96697da383e745d:log:17', 'hash': '0x27d6f2089d760a794c3cff25154024bff98c60dd44b3d7e0c96697da383e745d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 62912.5472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x0ea5e14980', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:56:42.000Z'}}, {'blockNum': '0x7b57ae', 'uniqueId': '0x876de5a3a54321b29f6763cd73cb702b030028f040ce542d4a27baafbe871cb2:log:12', 'hash': '0x876de5a3a54321b29f6763cd73cb702b030028f040ce542d4a27baafbe871cb2', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 119723.2317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'POWR', 'category': 'erc20', 'rawContract': {'value': '0x1be00f89d4', 'address': '0x595832f8fc6bf59c85c527fec3740a1b7a361269', 'decimal': '0x6'}, 'metadata': {'blockTimestamp': '2019-07-04T06:59:07.000Z'}}]}}
Number of returned transfers:  653
Answer is complete
 
symbol             NAV
group              BPF
date        2019-07-13
hour             16:57
exchange       binance
Name: 783, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-07-13 16:57:00 2019-07-13 04:57:00 2019-07-14 04:57:00
Unix timestamps:  1562986620.0 1563073020.0
Hex Block Numbers:  0x7c3559 0x7c4eaf
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             LRC
group              BPF
date        2019-07-25
hour             20:00
exchange       binance
Name: 784, dtype: object
HERE
 Symbol: LRC, Contract: 0xbbbbca6a901c926f240b89eacb641d8aec7aeafd
Datetime timestamps:  2019-07-25 20:00:00 2019-07-25 08:00:00 2019-07-26 08:00:00
Unix timestamps:  1564034400.0 1564120800.0
Hex Block Numbers:  0x7d65de 0x7d7eab
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7d6635', 'uniqueId': '0x1c4c45feb31c71b184f6ad8917d221d423d5d98e57aeb6d5c810fa34e926dee2:log:66', 'hash': '0x1c4c45feb31c71b184f6ad8917d221d423d5d98e57aeb6d5c810fa34e926dee2', 'from': '0x60f1a94254f9643d5a79ae66fa6b15147f484ac4', 'to': '0x73cd1f4ee6967fd2d16a7843c23c7892104466d5', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01ed4fde7a2236b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:18:06.000Z'}}, {'blockNum': '0x7d6699', 'uniqueId': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54:log:67', 'hash': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 997.2666847964633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x360fdafe13b8a51f4f', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:41:36.000Z'}}, {'blockNum': '0x7d6699', 'uniqueId': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54:log:69', 'hash': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 997.2666398816245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x360fdad53a2ba20000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:41:36.000Z'}}, {'blockNum': '0x7d6699', 'uniqueId': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54:log:70', 'hash': '0xd402ba76c4246a63eacad6566c11e0adead0a4b368c2822190b8fa5a44f41e54', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 997.2666398816245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x360fdad53a2ba20000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T06:41:36.000Z'}}, {'blockNum': '0x7d67ac', 'uniqueId': '0xc5ec0ada345a5186fc877ba9e71fd0f9c4fde608600d232c113e90c7310e9aeb:log:20', 'hash': '0xc5ec0ada345a5186fc877ba9e71fd0f9c4fde608600d232c113e90c7310e9aeb', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x4a39f5e0a4499a78aba80bf35ba0d7556fdc98e9', 'value': 4991.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010e915b7a8b9c458000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T07:40:35.000Z'}}, {'blockNum': '0x7d67db', 'uniqueId': '0x21d8a53c3c5c800d17ffba9779a2caba207ce97961758a1831f87464a598a9b2:log:84', 'hash': '0x21d8a53c3c5c800d17ffba9779a2caba207ce97961758a1831f87464a598a9b2', 'from': '0x150dd89722249fced8f4a58d616030bd4bd3eee4', 'to': '0x88594f3109019e58f4cd71450061cc47edd26b66', 'value': 908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3139080535b6b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T07:52:00.000Z'}}, {'blockNum': '0x7d67e8', 'uniqueId': '0x3256de13610527f03decbf7fd256abc87a8ecb4cf18be3f248524d0652c2f262:log:2', 'hash': '0x3256de13610527f03decbf7fd256abc87a8ecb4cf18be3f248524d0652c2f262', 'from': '0x4a39f5e0a4499a78aba80bf35ba0d7556fdc98e9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9981.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021d1384bc646b7d8000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T07:54:01.000Z'}}, {'blockNum': '0x7d6871', 'uniqueId': '0x154812422ff33beed88af993b303604ffa600098f974ef222b14a450ec92420e:log:89', 'hash': '0x154812422ff33beed88af993b303604ffa600098f974ef222b14a450ec92420e', 'from': '0x7141965edc908d61feebe07367a871acb7b700bb', 'to': '0x2ce211114634b554680de3a245dd86027086b5f1', 'value': 3578.831664794245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xc2024435aae4d8635f', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T08:25:10.000Z'}}, {'blockNum': '0x7d691e', 'uniqueId': '0x826982a5e5546065bddcfba7bcd0a2e75495db91a064b21425ac43cffb85c5b3:log:9', 'hash': '0x826982a5e5546065bddcfba7bcd0a2e75495db91a064b21425ac43cffb85c5b3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9909ea65f0b6a87d7d026c8968329c8ad3200535', 'value': 4781.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010334d9bef2a1e78000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:05:10.000Z'}}, {'blockNum': '0x7d694b', 'uniqueId': '0xbdca8a467ad3e9c4cfe10f9644cd74f35cb427389d5985b7b20b7aeb697ad03d:log:28', 'hash': '0xbdca8a467ad3e9c4cfe10f9644cd74f35cb427389d5985b7b20b7aeb697ad03d', 'from': '0x9909ea65f0b6a87d7d026c8968329c8ad3200535', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4781.515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010334d9bef2a1e78000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:14:04.000Z'}}, {'blockNum': '0x7d6973', 'uniqueId': '0xcbe4fdfc4575edb46d83db61777f246cdcf9a486435924820efa7d1088b0981b:log:34', 'hash': '0xcbe4fdfc4575edb46d83db61777f246cdcf9a486435924820efa7d1088b0981b', 'from': '0xf1589e8afb0a7628f50023b384e29bacb97fc647', 'to': '0xba2518ea34be9c265a53297d849e2e7bca917f74', 'value': 50.1602999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02b81d2eff968fd800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:25:31.000Z'}}, {'blockNum': '0x7d69be', 'uniqueId': '0x0be67d9c4365663b9b33537b7057a6279e4b31fc902220e8ddefd8ae37ce2c58:log:26', 'hash': '0x0be67d9c4365663b9b33537b7057a6279e4b31fc902220e8ddefd8ae37ce2c58', 'from': '0xba2518ea34be9c265a53297d849e2e7bca917f74', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50.1602999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02b81d2eff968fd800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T09:43:52.000Z'}}, {'blockNum': '0x7d6ac4', 'uniqueId': '0xc41187277fea64cdbb7dffa02d6304fa472e7b493ce6b1fdb7e0ab1cf07de4d6:log:9', 'hash': '0xc41187277fea64cdbb7dffa02d6304fa472e7b493ce6b1fdb7e0ab1cf07de4d6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x923bcc38cb1114d1dba11061c2ab0117e6501f05', 'value': 3999993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x034f080e1634ccf0440000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T10:42:36.000Z'}}, {'blockNum': '0x7d6b78', 'uniqueId': '0x88bd5d7c2dcc6f9610bc269919799b7d13e7fc247ead2f2cb9caf93e4c753af2:log:18', 'hash': '0x88bd5d7c2dcc6f9610bc269919799b7d13e7fc247ead2f2cb9caf93e4c753af2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025d5d41a6b2c31c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T11:26:09.000Z'}}, {'blockNum': '0x7d6c83', 'uniqueId': '0xf21c0285f6960a1f923564c68fa607951b8fa8f33faecc2fa092f771bc12d1cf:log:32', 'hash': '0xf21c0285f6960a1f923564c68fa607951b8fa8f33faecc2fa092f771bc12d1cf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0242503d86837b300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T12:25:34.000Z'}}, {'blockNum': '0x7d6cd6', 'uniqueId': '0x42588c4bb939802a7750101d962bf56b211b52046098b6bd5bee435c43420302:log:95', 'hash': '0x42588c4bb939802a7750101d962bf56b211b52046098b6bd5bee435c43420302', 'from': '0x87c574fb2df0eaa2daf5fc4a8a16dd3ce39011b1', 'to': '0xed8526bf1add770801e8d44a110421a9adb93501', 'value': 1059.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x397582ea3d55560000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T12:45:53.000Z'}}, {'blockNum': '0x7d6d4c', 'uniqueId': '0x75d9c50783096bcce6fe1fa294ada1c7577fdc79ebaba3754a959ec64faafed0:log:7', 'hash': '0x75d9c50783096bcce6fe1fa294ada1c7577fdc79ebaba3754a959ec64faafed0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 24795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054023bfaa75b28c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T13:14:46.000Z'}}, {'blockNum': '0x7d6d7b', 'uniqueId': '0xac69e2d0cb9204edd84950a1ece8062a75bc599fb8707b3f899f35206aa88244:log:23', 'hash': '0xac69e2d0cb9204edd84950a1ece8062a75bc599fb8707b3f899f35206aa88244', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054023bfaa75b28c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T13:25:37.000Z'}}, {'blockNum': '0x7d6e19', 'uniqueId': '0x60c1f6fbda9cb072c1e01c704cdb41853021087f8a24d5519407828af60ce874:log:9', 'hash': '0x60c1f6fbda9cb072c1e01c704cdb41853021087f8a24d5519407828af60ce874', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01e5b8fa8fe2ac0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T14:03:04.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0x973c4050af92255e3f58bd541cb7e5770ff7017154ed6f08f26883af300d125c:log:34', 'hash': '0x973c4050af92255e3f58bd541cb7e5770ff7017154ed6f08f26883af300d125c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02442815ca5fb6780000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a:log:40', 'hash': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2778.4368057045344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x969e8e71ffc9cbbb91', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a:log:42', 'hash': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2778.4368057045344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x969e8e71ffc9cbbb91', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d6fcb', 'uniqueId': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a:log:43', 'hash': '0xd4b9912523e3d36934dba1eded419f175f4a63abc4822f4921cd5c1762ff822a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2778.4368057045344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x969e8e71ffc9cbbb91', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:42:47.000Z'}}, {'blockNum': '0x7d7007', 'uniqueId': '0x5cbd250190ff1f6c761e9714eba2780d8e5777ff66a0cb00808456ca0a61fd74:log:84', 'hash': '0x5cbd250190ff1f6c761e9714eba2780d8e5777ff66a0cb00808456ca0a61fd74', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06e3d594f795f4c40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:54:40.000Z'}}, {'blockNum': '0x7d7008', 'uniqueId': '0xbae0e79281489a3c11be26fac8f2f076941c46ef7cc46247f5678a114124597a:log:18', 'hash': '0xbae0e79281489a3c11be26fac8f2f076941c46ef7cc46247f5678a114124597a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025b934a198a2f380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T15:54:58.000Z'}}, {'blockNum': '0x7d7030', 'uniqueId': '0x308cbf035a02945a57203898c63e2a86d2e63330485606f8f9d7cc561d0bd92b:log:104', 'hash': '0x308cbf035a02945a57203898c63e2a86d2e63330485606f8f9d7cc561d0bd92b', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025b934a198a2f380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T16:04:47.000Z'}}, {'blockNum': '0x7d70f9', 'uniqueId': '0x773d1c3531d97a1f6e14bf5be16da149dc0d9eef4af87b3b225164863721d439:log:7', 'hash': '0x773d1c3531d97a1f6e14bf5be16da149dc0d9eef4af87b3b225164863721d439', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02722e53b42dd91c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T16:45:37.000Z'}}, {'blockNum': '0x7d711d', 'uniqueId': '0x2f847f59c9688949959a5a8accb719328920b26db3b2e9f1d64e202080f0a793:log:186', 'hash': '0x2f847f59c9688949959a5a8accb719328920b26db3b2e9f1d64e202080f0a793', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02722e53b42dd91c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T16:55:27.000Z'}}, {'blockNum': '0x7d744c', 'uniqueId': '0x70a804bb2fbbc3bd00aff74d8df24c56976b626dc89edea94e853722927275a7:log:0', 'hash': '0x70a804bb2fbbc3bd00aff74d8df24c56976b626dc89edea94e853722927275a7', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 9447.260976469257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x020023154c5d6c0d0fde', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:10.000Z'}}, {'blockNum': '0x7d744d', 'uniqueId': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357:log:0', 'hash': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7544.629608096764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0198fec4cf673634812e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:23.000Z'}}, {'blockNum': '0x7d744d', 'uniqueId': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357:log:2', 'hash': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 7544.629608096764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0198fec4cf673634812e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:23.000Z'}}, {'blockNum': '0x7d744d', 'uniqueId': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357:log:7', 'hash': '0xee0bb9d40029e644c9ce5a7e0ad8fd7f8f7b9ad4b2b7e5feec0a0162b12db357', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 7544.629608096765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0198fec4cf6736400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:23.000Z'}}, {'blockNum': '0x7d744f', 'uniqueId': '0x3f57c9d3f14250be041da13eccc561714b7bf73241fa82d6ba72db2d0e98d667:log:0', 'hash': '0x3f57c9d3f14250be041da13eccc561714b7bf73241fa82d6ba72db2d0e98d667', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 11723.074549263078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x027b82574f0b38440bf1', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:34.000Z'}}, {'blockNum': '0x7d744f', 'uniqueId': '0xfe1fbc981aa7afbd1f51d7988c4e722842cebe637617080de5f10d6d5daddd04:log:8', 'hash': '0xfe1fbc981aa7afbd1f51d7988c4e722842cebe637617080de5f10d6d5daddd04', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 33354.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x071023143f2849c68000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:34.000Z'}}, {'blockNum': '0x7d744f', 'uniqueId': '0x722a805d7255c25c9a6c50227bc8ee58b7c5f0b6ff734e483077a46272f7ee5c:log:9', 'hash': '0x722a805d7255c25c9a6c50227bc8ee58b7c5f0b6ff734e483077a46272f7ee5c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'value': 101535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1580392f6083a71c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:34.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xcd157ad617e74fb3256af21c1e74cc05f02b966e49aa0363d03427a0e6b057d6:log:19', 'hash': '0xcd157ad617e74fb3256af21c1e74cc05f02b966e49aa0363d03427a0e6b057d6', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1435.602642885778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4dd2fd258e4ac500f0', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553:log:21', 'hash': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5009.709154201566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f93ae3d2b6ef3f30d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553:log:23', 'hash': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 5009.709154201566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f93ae3d2b6ef3f30d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553:log:28', 'hash': '0xc392f52631dd0a3ad3137985bacb3113ade2ccf8d92fc8dcefcb74be4df62553', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 5009.709154201566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f93ae3d2b6ef3f30d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0x4b300611fa96b3ff046a5448ac7bdba55dd08f8e1b545b8049caf4e1141d12f1:log:48', 'hash': '0x4b300611fa96b3ff046a5448ac7bdba55dd08f8e1b545b8049caf4e1141d12f1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a4b46cda3b412c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7450', 'uniqueId': '0x80158221eb0b1ebab510cc1b6fef061ca3b2486e8b13e36df1f5b49926dc7c5b:log:49', 'hash': '0x80158221eb0b1ebab510cc1b6fef061ca3b2486e8b13e36df1f5b49926dc7c5b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fe1d5ae5ea6ba334bd4c1cc2dd8b6695314d82d', 'value': 6391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x015a74f11f07e17c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:00:43.000Z'}}, {'blockNum': '0x7d7452', 'uniqueId': '0x2f80917e6e561622cfa4460a33972a68902c11143d93e8995e3ab11a8b1bc1b0:log:8', 'hash': '0x2f80917e6e561622cfa4460a33972a68902c11143d93e8995e3ab11a8b1bc1b0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 5441.0537232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0126f5c9fd4ff0968000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:23.000Z'}}, {'blockNum': '0x7d7452', 'uniqueId': '0x87d547000dc9fcf0595f813a3c6834c85d4cc51971768a207e479f65f87e4947:log:9', 'hash': '0x87d547000dc9fcf0595f813a3c6834c85d4cc51971768a207e479f65f87e4947', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 74975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe06724116ce01c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:23.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0xbeb9169849a73c4b3375f012e7afb86e6577d47afd99f12cbe9a58ee216d448f:log:11', 'hash': '0xbeb9169849a73c4b3375f012e7afb86e6577d47afd99f12cbe9a58ee216d448f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 15746.10312049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03559913f1a7e44ba400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0xbd7a9d0a9b4694d82dde512da7e36346df9ddb8b541ec58a423ea4bd07877fb1:log:12', 'hash': '0xbd7a9d0a9b4694d82dde512da7e36346df9ddb8b541ec58a423ea4bd07877fb1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'value': 24985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054a708743cbeec40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0x55c137e969e5a84e59f2fea12fb752dffb5ec65dd79686df325143390d5217fa:log:13', 'hash': '0x55c137e969e5a84e59f2fea12fb752dffb5ec65dd79686df325143390d5217fa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1fb681808983840000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0x76c60fb1497c55553b189f1fce99cf1dfee449b2cee611a1e704b70aafeba17b:log:14', 'hash': '0x76c60fb1497c55553b189f1fce99cf1dfee449b2cee611a1e704b70aafeba17b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x012957aa873979940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d7456', 'uniqueId': '0x4f72cb4116998e9004f60d3d0de2654eef9548466644cfe80415ad3ab69dacf8:log:60', 'hash': '0x4f72cb4116998e9004f60d3d0de2654eef9548466644cfe80415ad3ab69dacf8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9e5bbd1a9aabbc4e3f8be937077417c04697ce1f', 'value': 19990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x043ba8fa7070da980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:01:40.000Z'}}, {'blockNum': '0x7d745a', 'uniqueId': '0xf5f9cd65f8721f342956b57e79c5ad954928e2b4cc885a7c977ff23f039c397e:log:6', 'hash': '0xf5f9cd65f8721f342956b57e79c5ad954928e2b4cc885a7c977ff23f039c397e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 16501.8783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x037e9190c326d2edc000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:02:17.000Z'}}, {'blockNum': '0x7d745c', 'uniqueId': '0xd0ab1e73b5fdca82921582bbe61a8285386996e75e9e2d1c5e59dc3aa8ab20a6:log:1', 'hash': '0xd0ab1e73b5fdca82921582bbe61a8285386996e75e9e2d1c5e59dc3aa8ab20a6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x43539e871f88d6a8a1627e33f6eda83ef88fdd78', 'value': 10295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x022e17d352c0967c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:02:42.000Z'}}, {'blockNum': '0x7d745e', 'uniqueId': '0xdd9121126c596ec80bbe75b09d4b76826091d8d68c5cb436babae1d9c25c2329:log:7', 'hash': '0xdd9121126c596ec80bbe75b09d4b76826091d8d68c5cb436babae1d9c25c2329', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1976.6419998095503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6b276b1220edfb3f2d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:03:03.000Z'}}, {'blockNum': '0x7d7463', 'uniqueId': '0xcd21dbb11b9c57cc9ee1fbae00cb3ca1d910d672baac5d770525fab56560b582:log:21', 'hash': '0xcd21dbb11b9c57cc9ee1fbae00cb3ca1d910d672baac5d770525fab56560b582', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'value': 17503.62940706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03b4dfa79f8494884800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:04:12.000Z'}}, {'blockNum': '0x7d7465', 'uniqueId': '0x7d0a01b96263647bb8ac21ba8ea0180b130fbd614b4bfbe41b3954ed9908cb73:log:21', 'hash': '0x7d0a01b96263647bb8ac21ba8ea0180b130fbd614b4bfbe41b3954ed9908cb73', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 42114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08eb0127de7710c80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:05:09.000Z'}}, {'blockNum': '0x7d7465', 'uniqueId': '0xdf9c655177400fe820ef5cec1d402417485146c1f58f4dd838bfd0e9999bbd86:log:179', 'hash': '0xdf9c655177400fe820ef5cec1d402417485146c1f58f4dd838bfd0e9999bbd86', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5441.0537232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0126f5c9fd4ff0968000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:05:09.000Z'}}, {'blockNum': '0x7d7466', 'uniqueId': '0xd0124bb3c9383274f1716dfa6719d8c447571465db32b5e6cc75fd076891ef20:log:177', 'hash': '0xd0124bb3c9383274f1716dfa6719d8c447571465db32b5e6cc75fd076891ef20', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33354.241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x071023143f2849c68000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:05:25.000Z'}}, {'blockNum': '0x7d746c', 'uniqueId': '0x90893e0fbc466e6bf10e08d936edf074e81799468e98b44db831543aa1f9e323:log:137', 'hash': '0x90893e0fbc466e6bf10e08d936edf074e81799468e98b44db831543aa1f9e323', 'from': '0x2bbfe5650e9876fb313d6b32352c6dc5966a7b68', 'to': '0x98bb8b25e7b4643ef61a989280ac402a94fc6acb', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:06:53.000Z'}}, {'blockNum': '0x7d746d', 'uniqueId': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791:log:15', 'hash': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2895.2995504517385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x9cf45a512e7007c968', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:06.000Z'}}, {'blockNum': '0x7d746d', 'uniqueId': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791:log:17', 'hash': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2895.2995504517385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x9cf45a512e7007c968', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:06.000Z'}}, {'blockNum': '0x7d746d', 'uniqueId': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791:log:18', 'hash': '0xc4a1aa30ecb74f3c130a97e6804826723aa19b88d97f69da8525f31fe8049791', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2895.2995504517385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x9cf45a512e7007c968', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:06.000Z'}}, {'blockNum': '0x7d7470', 'uniqueId': '0xeaefc6af170751a3a3edd828da2d8b83f883454c9833ee3f64ac7d6ef585a4ef:log:24', 'hash': '0xeaefc6af170751a3a3edd828da2d8b83f883454c9833ee3f64ac7d6ef585a4ef', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'value': 37628.2753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07f7d5385e34011a4000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:07:35.000Z'}}, {'blockNum': '0x7d7471', 'uniqueId': '0x43acb08a97dde1b7c0854c3110c1e5d19935ce9dd912b282147eba536e19b6a1:log:29', 'hash': '0x43acb08a97dde1b7c0854c3110c1e5d19935ce9dd912b282147eba536e19b6a1', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 3424.1150442477874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xb99f245b011c5521fb', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:08:03.000Z'}}, {'blockNum': '0x7d7478', 'uniqueId': '0xa6349bde8a02067ad90b380ddb41cec10e80a257c7dde898697cb02c69fc93f3:log:6', 'hash': '0xa6349bde8a02067ad90b380ddb41cec10e80a257c7dde898697cb02c69fc93f3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 4982.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010e18b0a21d0a400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:10:44.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3:log:1', 'hash': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 4803.581851728919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01046716f3ae17536c42', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3:log:3', 'hash': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4803.581851728919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01046716f3ae17536c42', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3:log:4', 'hash': '0xeb083b66c681685182cfff80c996dce4f11bf31898cdd1b4ff9d9af9ce7a81a3', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4803.581851728919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01046716f3ae17536c42', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7482', 'uniqueId': '0xf2f49c4474306b395367243b5eaa793b79504b4b54279a51f2759eb4cc9e2c88:log:11', 'hash': '0xf2f49c4474306b395367243b5eaa793b79504b4b54279a51f2759eb4cc9e2c88', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd1dbd6b9e3fabd2958bd8ffb0543c9515c45cbdb', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:30.000Z'}}, {'blockNum': '0x7d7484', 'uniqueId': '0xa6ca6153a0539ab0e97a08c38dd36b02c90f94a424176c1e169a24fa5c005326:log:25', 'hash': '0xa6ca6153a0539ab0e97a08c38dd36b02c90f94a424176c1e169a24fa5c005326', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2421.225382932166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x83414089932ee95911', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:46.000Z'}}, {'blockNum': '0x7d7484', 'uniqueId': '0xab987897ab3a2efc43557a4575c0faf5f4a82e9d9933db4db2c5a21cb004fd1f:log:40', 'hash': '0xab987897ab3a2efc43557a4575c0faf5f4a82e9d9933db4db2c5a21cb004fd1f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:12:46.000Z'}}, {'blockNum': '0x7d7487', 'uniqueId': '0x09ddda7705cbf570750c1e42e43e502eb7eb48d08b1b609e583fa9e9eb4f6a8b:log:0', 'hash': '0x09ddda7705cbf570750c1e42e43e502eb7eb48d08b1b609e583fa9e9eb4f6a8b', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 4016.326530612245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xd9b9ba342e8fe5e0a7', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:13:36.000Z'}}, {'blockNum': '0x7d7487', 'uniqueId': '0x20ea2f79909ab60183e099228f051934ea5842c23f8695b8b28c6b3624202bfa:log:4', 'hash': '0x20ea2f79909ab60183e099228f051934ea5842c23f8695b8b28c6b3624202bfa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 13929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f317b4d4fec0040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:13:36.000Z'}}, {'blockNum': '0x7d748a', 'uniqueId': '0xcb1724d93a93d5d27b4e4a4eaf0cfdccb0bec5c43c7e723cbff89255880ea80a:log:4', 'hash': '0xcb1724d93a93d5d27b4e4a4eaf0cfdccb0bec5c43c7e723cbff89255880ea80a', 'from': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'to': '0x8d3b2ade0160c8df0246003f3f152057b73b9894', 'value': 113038.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x17efcdeeeecbdc7c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:14:03.000Z'}}, {'blockNum': '0x7d748a', 'uniqueId': '0x6f89233897a4723c2ba3dd1d7e247f95c229ffd64ef27caea2cea9cfc62e85db:log:176', 'hash': '0x6f89233897a4723c2ba3dd1d7e247f95c229ffd64ef27caea2cea9cfc62e85db', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16501.8783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x037e9190c326d2edc000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:14:03.000Z'}}, {'blockNum': '0x7d748b', 'uniqueId': '0xc3022f73aea98a117ea130a6aec9bdaab04835876d89a6a0c47aecb5b9687fe9:log:180', 'hash': '0xc3022f73aea98a117ea130a6aec9bdaab04835876d89a6a0c47aecb5b9687fe9', 'from': '0x268737253715badc5016befa6113ecc68370b780', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15746.10312049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03559913f1a7e44ba400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:14:30.000Z'}}, {'blockNum': '0x7d748d', 'uniqueId': '0xd9d79f8413d41ff5334093713f47dc556e60d6784a4fab62c37f11630602a100:log:123', 'hash': '0xd9d79f8413d41ff5334093713f47dc556e60d6784a4fab62c37f11630602a100', 'from': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17503.62940706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03b4dfa79f8494884800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:15:04.000Z'}}, {'blockNum': '0x7d748e', 'uniqueId': '0x22593ae1e1b0c01512c0ff34074e528f25bf8b5017a18c564a7e3dd1c8fab2bf:log:36', 'hash': '0x22593ae1e1b0c01512c0ff34074e528f25bf8b5017a18c564a7e3dd1c8fab2bf', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08eb0127de7710c80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:15:32.000Z'}}, {'blockNum': '0x7d748f', 'uniqueId': '0xb1146e5534393c449822af5b989982646f736bbf008cabc2df709b55be178ba7:log:172', 'hash': '0xb1146e5534393c449822af5b989982646f736bbf008cabc2df709b55be178ba7', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x012957aa873979940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:15:35.000Z'}}, {'blockNum': '0x7d74b4', 'uniqueId': '0xdb105883d26a85b236f25b11cb8107a54f2cfc8a2f020cd028c9ae019313f392:log:8', 'hash': '0xdb105883d26a85b236f25b11cb8107a54f2cfc8a2f020cd028c9ae019313f392', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'value': 24965.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0549608613a4511c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:48.000Z'}}, {'blockNum': '0x7d74b4', 'uniqueId': '0xdf9fd911a5da0f9c612d80a00e044f81bc76441adc38bcff1787504f7da8e77b:log:12', 'hash': '0xdf9fd911a5da0f9c612d80a00e044f81bc76441adc38bcff1787504f7da8e77b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023b6dc2e36370940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:48.000Z'}}, {'blockNum': '0x7d74b5', 'uniqueId': '0xa08a33a443b658d46b46c1dd2fdb301fa091253f7393678ca62249b055fb6e74:log:22', 'hash': '0xa08a33a443b658d46b46c1dd2fdb301fa091253f7393678ca62249b055fb6e74', 'from': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37628.2753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07f7d5385e34011a4000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:52.000Z'}}, {'blockNum': '0x7d74b5', 'uniqueId': '0x2332d123923ad6d818a32ea478d3a5097f5d5194eee375152bea430d20a0521d:log:86', 'hash': '0x2332d123923ad6d818a32ea478d3a5097f5d5194eee375152bea430d20a0521d', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:23:52.000Z'}}, {'blockNum': '0x7d74b8', 'uniqueId': '0xc8e8b7b5eb3c482840d168c837b7521dba722169023b146249e15967c7b3c214:log:89', 'hash': '0xc8e8b7b5eb3c482840d168c837b7521dba722169023b146249e15967c7b3c214', 'from': '0x8d3b2ade0160c8df0246003f3f152057b73b9894', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113038.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x17efcdeeeecbdc7c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:24:50.000Z'}}, {'blockNum': '0x7d74b9', 'uniqueId': '0x245a68d308bbee5d9a7172846815e3e484fb90df9465a4e45b1e135773727446:log:38', 'hash': '0x245a68d308bbee5d9a7172846815e3e484fb90df9465a4e45b1e135773727446', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:24:53.000Z'}}, {'blockNum': '0x7d74c7', 'uniqueId': '0xbbc9af58b1859d1caad232a5bc69d170f75351e07983cefbc24d7524ea1fd8fd:log:94', 'hash': '0xbbc9af58b1859d1caad232a5bc69d170f75351e07983cefbc24d7524ea1fd8fd', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:27:53.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x36f27ba062f4eb3cb8f73f95d03a17e1a2cb77cf8766be6b46e36f46d215ddec:log:10', 'hash': '0x36f27ba062f4eb3cb8f73f95d03a17e1a2cb77cf8766be6b46e36f46d215ddec', 'from': '0x98bb8b25e7b4643ef61a989280ac402a94fc6acb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519bdfffff', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0xbd4742c0064bc89a12a22d2c3556a358ed61ee2e1da543d0f69bcc2a509c9ced:log:12', 'hash': '0xbd4742c0064bc89a12a22d2c3556a358ed61ee2e1da543d0f69bcc2a509c9ced', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 4982.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010e18b0a21d0a400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x668685b6e32db19fc1dffe430d56f1fcb7d82269a2815b2c2b6db416335c3c7b:log:14', 'hash': '0x668685b6e32db19fc1dffe430d56f1fcb7d82269a2815b2c2b6db416335c3c7b', 'from': '0x9e5bbd1a9aabbc4e3f8be937077417c04697ce1f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 19990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x043ba8fa7070da980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x98e70838c5e4a097fe2ddd25af8520b20273b2fc2af8abe27df7578f94bf17eb:log:15', 'hash': '0x98e70838c5e4a097fe2ddd25af8520b20273b2fc2af8abe27df7578f94bf17eb', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe06724116ce01c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0xbfe55f46e3d7d6a8cc7cca93b602d98e71846dd9015b64bffb9955aa778c8523:log:18', 'hash': '0xbfe55f46e3d7d6a8cc7cca93b602d98e71846dd9015b64bffb9955aa778c8523', 'from': '0xd1dbd6b9e3fabd2958bd8ffb0543c9515c45cbdb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f666405dcda2d80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74ca', 'uniqueId': '0x3a2a700b1536466a0478ec3063dc5cc114b72abb1e47a946cc8a3a7361bbc240:log:19', 'hash': '0x3a2a700b1536466a0478ec3063dc5cc114b72abb1e47a946cc8a3a7361bbc240', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02f317b4d4fec0040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:28:57.000Z'}}, {'blockNum': '0x7d74cc', 'uniqueId': '0xf6d9dae9d8c4d1168ae7e132fc339daeebd6f7f014f8a6cfd885add429cdfcc1:log:13', 'hash': '0xf6d9dae9d8c4d1168ae7e132fc339daeebd6f7f014f8a6cfd885add429cdfcc1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 14762.38632993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03204543d898b0286400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:29:49.000Z'}}, {'blockNum': '0x7d74d5', 'uniqueId': '0x7189ed6ab9f7b057edfdbf4afdc880038abafd069518b81307f4f0889a5fd311:log:5', 'hash': '0x7189ed6ab9f7b057edfdbf4afdc880038abafd069518b81307f4f0889a5fd311', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2548.3870967741937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x8a25f9b29526d18c63', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:31:22.000Z'}}, {'blockNum': '0x7d74db', 'uniqueId': '0x4c063b65fb6ebaddca2906b3b017749344fb10a169f0d4feff1808513d5171b4:log:0', 'hash': '0x4c063b65fb6ebaddca2906b3b017749344fb10a169f0d4feff1808513d5171b4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9b310bcc5471b0b635b0e2e024106014b770fcea', 'value': 49990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a95f69ccda0f1580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:31:55.000Z'}}, {'blockNum': '0x7d74e2', 'uniqueId': '0x608ba2a7f7413995f216d2060a4a26e9dc0d61ecb65760bdfa01212ea0b72bed:log:4', 'hash': '0x608ba2a7f7413995f216d2060a4a26e9dc0d61ecb65760bdfa01212ea0b72bed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x042f353ba395767136cc069391052ba83f876105', 'value': 2990.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa21bbf8254826a0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:32:47.000Z'}}, {'blockNum': '0x7d74f2', 'uniqueId': '0x39ec9c231929cf4fb65d0c11d8701f65072368fff82b8ed13f87517a5babbb5a:log:8', 'hash': '0x39ec9c231929cf4fb65d0c11d8701f65072368fff82b8ed13f87517a5babbb5a', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:36:04.000Z'}}, {'blockNum': '0x7d74f5', 'uniqueId': '0xa62be7c1bd6b2a3900dce1467cda1da3280ca2fda3973c9a25842af89e681bc0:log:54', 'hash': '0xa62be7c1bd6b2a3900dce1467cda1da3280ca2fda3973c9a25842af89e681bc0', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:37:09.000Z'}}, {'blockNum': '0x7d74f9', 'uniqueId': '0xa155f268d18c9a15533717c784a363b7e2d24d50e40820a0864d226bac80ccee:log:23', 'hash': '0xa155f268d18c9a15533717c784a363b7e2d24d50e40820a0864d226bac80ccee', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04e0222fbd9eb1c00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:38:28.000Z'}}, {'blockNum': '0x7d7504', 'uniqueId': '0xf80a45740d5345135884bd3775f51bc47247357f897db89c4d866572419f43d2:log:5', 'hash': '0xf80a45740d5345135884bd3775f51bc47247357f897db89c4d866572419f43d2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f9be9c443ca740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:39:51.000Z'}}, {'blockNum': '0x7d751c', 'uniqueId': '0x0734351b2f1907babb8e1621897a43556d222b2767bf216c1105be86e161679d:log:182', 'hash': '0x0734351b2f1907babb8e1621897a43556d222b2767bf216c1105be86e161679d', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14762.38632993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03204543d898b0286400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:44:25.000Z'}}, {'blockNum': '0x7d7548', 'uniqueId': '0x4909f7fd562f9ce6f4f23b88d5208c57d15313ba557401c48c67b20533f38a7a:log:53', 'hash': '0x4909f7fd562f9ce6f4f23b88d5208c57d15313ba557401c48c67b20533f38a7a', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2591.334894613583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x8c79feed2b9cec8d7d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T20:54:29.000Z'}}, {'blockNum': '0x7d757c', 'uniqueId': '0xe49036b8437e0ae4f1eab14598927b3747c2ac2e956e68f81cc3fed50df3a96c:log:152', 'hash': '0xe49036b8437e0ae4f1eab14598927b3747c2ac2e956e68f81cc3fed50df3a96c', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:05:15.000Z'}}, {'blockNum': '0x7d757c', 'uniqueId': '0x66f3a3daac702a0b270d6fed049874a74d97f21be10d63224ffe1355e6eadf05:log:153', 'hash': '0x66f3a3daac702a0b270d6fed049874a74d97f21be10d63224ffe1355e6eadf05', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:05:15.000Z'}}, {'blockNum': '0x7d758d', 'uniqueId': '0x199409faa9ae9989f630e50e10126fe42ad5a65eee48c4913127531700b2e245:log:8', 'hash': '0x199409faa9ae9989f630e50e10126fe42ad5a65eee48c4913127531700b2e245', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 10393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023367d94386aac40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:09:57.000Z'}}, {'blockNum': '0x7d75d3', 'uniqueId': '0x0dd953e6b684eb5ffa4a109c364c30f48e3e477ee3c17a044f3499adbfd6c297:log:18', 'hash': '0x0dd953e6b684eb5ffa4a109c364c30f48e3e477ee3c17a044f3499adbfd6c297', 'from': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24965.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0549608613a4511c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:29:00.000Z'}}, {'blockNum': '0x7d75ea', 'uniqueId': '0x8364034eec697a11ca59ec61b9faebbdba3dffe1c8f3ef280b7d542ee67f68cf:log:66', 'hash': '0x8364034eec697a11ca59ec61b9faebbdba3dffe1c8f3ef280b7d542ee67f68cf', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f9be9c443ca740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:34:10.000Z'}}, {'blockNum': '0x7d7608', 'uniqueId': '0xe837d62008bafc58cfc7412d9143eab6c4f743dfaafa789fd4601663ce30eaa3:log:165', 'hash': '0xe837d62008bafc58cfc7412d9143eab6c4f743dfaafa789fd4601663ce30eaa3', 'from': '0x88594f3109019e58f4cd71450061cc47edd26b66', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3139080535b6b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T21:39:17.000Z'}}, {'blockNum': '0x7d76ae', 'uniqueId': '0xe7e8ab779423d930bea09b402c9e39dc3b6091ad5284547c5dd0c11f536165f7:log:198', 'hash': '0xe7e8ab779423d930bea09b402c9e39dc3b6091ad5284547c5dd0c11f536165f7', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f1f0357f2e7f00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:17:31.000Z'}}, {'blockNum': '0x7d76ae', 'uniqueId': '0x64cce2d38913420c29a53d3bac7c7d599669ca1f621cf250b2de4d8d043f8430:log:199', 'hash': '0x64cce2d38913420c29a53d3bac7c7d599669ca1f621cf250b2de4d8d043f8430', 'from': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 32010.296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06c74818762ee36c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:17:31.000Z'}}, {'blockNum': '0x7d76cd', 'uniqueId': '0x97561448da471b3714a5513e546dcac01931c38b8c8867f0dabccacec67b619c:log:135', 'hash': '0x97561448da471b3714a5513e546dcac01931c38b8c8867f0dabccacec67b619c', 'from': '0xe516a08a8588f26fd2bee405fc75191a3ef367bb', 'to': '0x0f040e9ae15247fcac52c142d0f3043d789cbe62', 'value': 350000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4a1d89bb94865ec00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:27:26.000Z'}}, {'blockNum': '0x7d76d1', 'uniqueId': '0x263cf1868b5cfaa5b457e6d2f692ad116c8969d865af6fa8f6a222b4efbac845:log:4', 'hash': '0x263cf1868b5cfaa5b457e6d2f692ad116c8969d865af6fa8f6a222b4efbac845', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfe2733522a88672412d8b9a4158d0ac9e012ab50', 'value': 2497.150849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x875eedfab17a1d1000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:27:49.000Z'}}, {'blockNum': '0x7d76d9', 'uniqueId': '0xe5776e958e74e8fbe9845203b40cedfaf8b0da4952d4c2e39b95d4aa39507e80:log:6', 'hash': '0xe5776e958e74e8fbe9845203b40cedfaf8b0da4952d4c2e39b95d4aa39507e80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 16785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x038deaab194233a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:29:11.000Z'}}, {'blockNum': '0x7d76f9', 'uniqueId': '0x05aedaa12b3fc5f5be9355895c41750bdc83ba623b4a64cc056ee0c2a3a96713:log:34', 'hash': '0x05aedaa12b3fc5f5be9355895c41750bdc83ba623b4a64cc056ee0c2a3a96713', 'from': '0x0f040e9ae15247fcac52c142d0f3043d789cbe62', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 350000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4a1d89bb94865ec00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T22:34:12.000Z'}}, {'blockNum': '0x7d778d', 'uniqueId': '0x290ded3e333c43930d1fb0eda588a9f93031ef7558ad2fe688907c3709032cc0:log:19', 'hash': '0x290ded3e333c43930d1fb0eda588a9f93031ef7558ad2fe688907c3709032cc0', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 524.0566037735849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1c68bf108faa2995bc', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:08:31.000Z'}}, {'blockNum': '0x7d779f', 'uniqueId': '0x73df88b9f42438da5407f63541c52ade4897db8e0ad0800681acfe46e963ef9c:log:13', 'hash': '0x73df88b9f42438da5407f63541c52ade4897db8e0ad0800681acfe46e963ef9c', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 526.7772511848341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1c8e80bef794c215d6', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:11:48.000Z'}}, {'blockNum': '0x7d77a7', 'uniqueId': '0x4981cc93db426515b1705cfa55b4a5d7f79eb17f9eae02e07d07d12323f3cecf:log:20', 'hash': '0x4981cc93db426515b1705cfa55b4a5d7f79eb17f9eae02e07d07d12323f3cecf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 15103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0332bc3ab0e0649c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:14:31.000Z'}}, {'blockNum': '0x7d77ab', 'uniqueId': '0xf4f8047d43ba0c0131737c65954715d9fd7a97da823b2d1f7e2e4f88c7eb7f03:log:0', 'hash': '0xf4f8047d43ba0c0131737c65954715d9fd7a97da823b2d1f7e2e4f88c7eb7f03', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 36357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07b2eabb385bbcf40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:15:56.000Z'}}, {'blockNum': '0x7d77ef', 'uniqueId': '0x946492c9355d577b5a49de4b41af4656d783a30832dbe3c22774cdc130b4b2f5:log:39', 'hash': '0x946492c9355d577b5a49de4b41af4656d783a30832dbe3c22774cdc130b4b2f5', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 36357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07b2eabb385bbcf40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:29:43.000Z'}}, {'blockNum': '0x7d77ef', 'uniqueId': '0x34135d9b941026042c698f97f6c0fbec90b97dad37f81a9f1ffe1f2749d9434a:log:53', 'hash': '0x34135d9b941026042c698f97f6c0fbec90b97dad37f81a9f1ffe1f2749d9434a', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 15103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0332bc3ab0e0649c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:29:43.000Z'}}, {'blockNum': '0x7d780e', 'uniqueId': '0x827f5195c7575e2716e5e6cc3812e71fff919e8752753733c96b1c09fb580ad2:log:74', 'hash': '0x827f5195c7575e2716e5e6cc3812e71fff919e8752753733c96b1c09fb580ad2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02268ed01f34b3300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:39:00.000Z'}}, {'blockNum': '0x7d7824', 'uniqueId': '0x9824a96bc4ea2644243eb2285e52f668481995746fc2e1dadce30f825a6b6690:log:10', 'hash': '0x9824a96bc4ea2644243eb2285e52f668481995746fc2e1dadce30f825a6b6690', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02268ed01f34b3300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:43:54.000Z'}}, {'blockNum': '0x7d7851', 'uniqueId': '0x47bd05bf53cf88c1e4a583ed3659c04b26559b3ab25968bfe93a3adab38ea252:log:11', 'hash': '0x47bd05bf53cf88c1e4a583ed3659c04b26559b3ab25968bfe93a3adab38ea252', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 36716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07c660db6e4b7a300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:54:17.000Z'}}, {'blockNum': '0x7d7853', 'uniqueId': '0xc65b2a66eeb412474605c4f6f31c4ad98f459765aa47668f15983c1fa7aa2fd9:log:17', 'hash': '0xc65b2a66eeb412474605c4f6f31c4ad98f459765aa47668f15983c1fa7aa2fd9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-25T23:54:30.000Z'}}, {'blockNum': '0x7d7888', 'uniqueId': '0x6f4337deac47ec113334f99cc54a8055e1f0c3e154c5c8148016e0a68a8a835c:log:31', 'hash': '0x6f4337deac47ec113334f99cc54a8055e1f0c3e154c5c8148016e0a68a8a835c', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07c660db6e4b7a300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:04:30.000Z'}}, {'blockNum': '0x7d78da', 'uniqueId': '0xf05647ccd07cdb838a6c37c97d702497f072b40ebcc728b8df773b0c7340a0ec:log:39', 'hash': '0xf05647ccd07cdb838a6c37c97d702497f072b40ebcc728b8df773b0c7340a0ec', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a104bc5282ca9c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:22:06.000Z'}}, {'blockNum': '0x7d78db', 'uniqueId': '0xc191bedc44f3d45e0c4fd07a528c2fbd45d30125c13d340f2ee37dd933ba5a2d:log:17', 'hash': '0xc191bedc44f3d45e0c4fd07a528c2fbd45d30125c13d340f2ee37dd933ba5a2d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'value': 24985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054a708743cbeec40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:22:12.000Z'}}, {'blockNum': '0x7d78e5', 'uniqueId': '0x2446a7de14cbfd035c69794cf61c9c6d22056dd4b01f3e626a06abca3248d26e:log:75', 'hash': '0x2446a7de14cbfd035c69794cf61c9c6d22056dd4b01f3e626a06abca3248d26e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 60291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cc461b46897742c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:25:41.000Z'}}, {'blockNum': '0x7d78f5', 'uniqueId': '0x219cd8b2c6e8d37b5d44ed07c07b2a9749363d000312c7550b41e92e28629d06:log:39', 'hash': '0x219cd8b2c6e8d37b5d44ed07c07b2a9749363d000312c7550b41e92e28629d06', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 28655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06116402774da25c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:28:25.000Z'}}, {'blockNum': '0x7d78fa', 'uniqueId': '0x91dbdc7e466d79eb44823efaa30683babb6a9c8d4f56f91e8ba966001f6b1b19:log:9', 'hash': '0x91dbdc7e466d79eb44823efaa30683babb6a9c8d4f56f91e8ba966001f6b1b19', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'value': 162518.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x226a2acf17f6df720000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:30:02.000Z'}}, {'blockNum': '0x7d78fa', 'uniqueId': '0x580a7a58309c6029ef844cd70546ff4abbed07066a44ce758291d8f058ffb8f9:log:15', 'hash': '0x580a7a58309c6029ef844cd70546ff4abbed07066a44ce758291d8f058ffb8f9', 'from': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:30:02.000Z'}}, {'blockNum': '0x7d78fa', 'uniqueId': '0x8b52f9ea7efbd48cd1ad71970767118461f16619fdf0fd27da6d874d96433d29:log:22', 'hash': '0x8b52f9ea7efbd48cd1ad71970767118461f16619fdf0fd27da6d874d96433d29', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 28655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06116402774da25c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:30:02.000Z'}}, {'blockNum': '0x7d790f', 'uniqueId': '0x3e1843c927d273042dae7781423746bb5e07d6d1ccc47c4a3cbfac9d59f82409:log:25', 'hash': '0x3e1843c927d273042dae7781423746bb5e07d6d1ccc47c4a3cbfac9d59f82409', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a104bc5282ca9c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:34:12.000Z'}}, {'blockNum': '0x7d790f', 'uniqueId': '0xb6ef40c1f3af7c78852f15d97e0ea7f87bee7fe53db44c082c50e3da7c50a9b1:log:26', 'hash': '0xb6ef40c1f3af7c78852f15d97e0ea7f87bee7fe53db44c082c50e3da7c50a9b1', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cc461b46897742c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:34:12.000Z'}}, {'blockNum': '0x7d790f', 'uniqueId': '0xd3a22a732906a329b73229312115624d97f69bd03ba0c8f33942f2a8dfb126dc:log:71', 'hash': '0xd3a22a732906a329b73229312115624d97f69bd03ba0c8f33942f2a8dfb126dc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f3ac4c55a36b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:34:12.000Z'}}, {'blockNum': '0x7d791a', 'uniqueId': '0x2cf22288a9b7afff8ff4b01a7a050f8cf30a6014361c3fbe8543691e3144e709:log:7', 'hash': '0x2cf22288a9b7afff8ff4b01a7a050f8cf30a6014361c3fbe8543691e3144e709', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 596842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7e62dea17b8edb680000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:36:50.000Z'}}, {'blockNum': '0x7d793e', 'uniqueId': '0x9111922aaa2b9f9544be407093e7e61ff254faad325eb6f20b98071194dacd6a:log:2', 'hash': '0x9111922aaa2b9f9544be407093e7e61ff254faad325eb6f20b98071194dacd6a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029f3ac4c55a36b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:44:05.000Z'}}, {'blockNum': '0x7d795c', 'uniqueId': '0xbe48d877cfacb439f5e7e22057bbdddcc6912d907539b3a7267c51a4912ed28b:log:10', 'hash': '0xbe48d877cfacb439f5e7e22057bbdddcc6912d907539b3a7267c51a4912ed28b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 600093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7f131b51a70596540000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:48:55.000Z'}}, {'blockNum': '0x7d7975', 'uniqueId': '0xd19b254c5c1eda64e8153ae5f9727aaf6914a7f13d1e53a2a47a5ab5cfd57ac6:log:17', 'hash': '0xd19b254c5c1eda64e8153ae5f9727aaf6914a7f13d1e53a2a47a5ab5cfd57ac6', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7f131b51a70596540000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:53:57.000Z'}}, {'blockNum': '0x7d7978', 'uniqueId': '0xbd43aea538502c373ee1ad5aea5bf653f13a38096831bc553c5ee153f4a5329a:log:4', 'hash': '0xbd43aea538502c373ee1ad5aea5bf653f13a38096831bc553c5ee153f4a5329a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x54539e8a334d5c8aeeefba89120e5c8cf413aaf1', 'value': 184.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a003ad48fd72a0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:54:54.000Z'}}, {'blockNum': '0x7d7981', 'uniqueId': '0x053b6286c8652229837e3895353bc7ecc4a97bef89eac133da3e6313415da2d0:log:10', 'hash': '0x053b6286c8652229837e3895353bc7ecc4a97bef89eac133da3e6313415da2d0', 'from': '0x54539e8a334d5c8aeeefba89120e5c8cf413aaf1', 'to': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'value': 184.484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a003ad48fd72a0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T00:57:14.000Z'}}, {'blockNum': '0x7d79bd', 'uniqueId': '0xd6c1c4742357f82ffe7841cc49d69a9a7928e1b0de248c1b10f24ebe418ee8c6:log:106', 'hash': '0xd6c1c4742357f82ffe7841cc49d69a9a7928e1b0de248c1b10f24ebe418ee8c6', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 4131.7375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xdffb60555dd485c000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:11:45.000Z'}}, {'blockNum': '0x7d79df', 'uniqueId': '0x8f6a4809c8f13a35ae85c1c21af75beecd338b7afa4cda9925ffaee9e18901f5:log:88', 'hash': '0x8f6a4809c8f13a35ae85c1c21af75beecd338b7afa4cda9925ffaee9e18901f5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 22925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04dac4491624f6140000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:18:55.000Z'}}, {'blockNum': '0x7d7a05', 'uniqueId': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702:log:159', 'hash': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 886.1774255329042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x300a2ea95a5aee8e61', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:27:29.000Z'}}, {'blockNum': '0x7d7a05', 'uniqueId': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702:log:161', 'hash': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 886.1773884860429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x300a2e87a8b5ec0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:27:29.000Z'}}, {'blockNum': '0x7d7a05', 'uniqueId': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702:log:162', 'hash': '0xbd65cd8495a97318b3b51536693fe4763d5fd2f8cd54ddc486230469ba3c3702', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 886.1773884860429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x300a2e87a8b5ec0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:27:29.000Z'}}, {'blockNum': '0x7d7a12', 'uniqueId': '0x6564b6e067e9256e8a8220982265de4ca8acfea53948b3e53996f825d10391f5:log:4', 'hash': '0x6564b6e067e9256e8a8220982265de4ca8acfea53948b3e53996f825d10391f5', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 22925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04dac4491624f6140000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:30:51.000Z'}}, {'blockNum': '0x7d7a4a', 'uniqueId': '0x127e18e0ff6fdba3c832ddf743a6061ce38eb2dee1cdbac602bcda6319131fc9:log:82', 'hash': '0x127e18e0ff6fdba3c832ddf743a6061ce38eb2dee1cdbac602bcda6319131fc9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:43:30.000Z'}}, {'blockNum': '0x7d7a7c', 'uniqueId': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07:log:93', 'hash': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 950.7458487731799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x338a3fc8311aa3dc8c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:54:01.000Z'}}, {'blockNum': '0x7d7a7c', 'uniqueId': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07:log:95', 'hash': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 950.7458059520508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x338a3fa13f08740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:54:01.000Z'}}, {'blockNum': '0x7d7a7c', 'uniqueId': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07:log:96', 'hash': '0x26a0891f9293c3cc78077c1ae45a37933d08c8bfc90c1131156b45fc2a94fd07', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 950.7458059520508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x338a3fa13f08740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T01:54:01.000Z'}}, {'blockNum': '0x7d7a9c', 'uniqueId': '0x98d642f9be29a16e81fc41e82b8f50f2cf9f55a2ffab6357fef57f58ee2ec0fd:log:120', 'hash': '0x98d642f9be29a16e81fc41e82b8f50f2cf9f55a2ffab6357fef57f58ee2ec0fd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x026a898f133aa7080000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:00:29.000Z'}}, {'blockNum': '0x7d7aae', 'uniqueId': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9:log:33', 'hash': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1762.3378968770187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f8959f3f17bb1c5e6', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:05:27.000Z'}}, {'blockNum': '0x7d7aae', 'uniqueId': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9:log:35', 'hash': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1762.3377490792147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f89596d85a0180000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:05:27.000Z'}}, {'blockNum': '0x7d7aae', 'uniqueId': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9:log:36', 'hash': '0x224431a5bcea21fb7141c3b7fa8d8c30ededd84e2feaf66fb50fe013bf9691f9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1762.3377490792147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f89596d85a0180000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:05:27.000Z'}}, {'blockNum': '0x7d7ab2', 'uniqueId': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b:log:60', 'hash': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1316.5901779056671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x475f5bef3623a410a7', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:06:31.000Z'}}, {'blockNum': '0x7d7ab2', 'uniqueId': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b:log:62', 'hash': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1316.5900947199918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x475f5ba38df7040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:06:31.000Z'}}, {'blockNum': '0x7d7ab2', 'uniqueId': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b:log:63', 'hash': '0x19bc67d301c1b48a8c655ff0aa9bedcbea18cdaf073c95228f422bb90cb1746b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1316.5900947199918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x475f5ba38df7040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:06:31.000Z'}}, {'blockNum': '0x7d7abb', 'uniqueId': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283:log:67', 'hash': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1685.9584455217544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5b655fa19c81ee1045', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:09:15.000Z'}}, {'blockNum': '0x7d7abb', 'uniqueId': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283:log:69', 'hash': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1685.9583082460836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5b655f24c286580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:09:15.000Z'}}, {'blockNum': '0x7d7abb', 'uniqueId': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283:log:70', 'hash': '0xa1d27bb0ea24bd2400c0ddfff7ed5eaab3d985bf6cac3e02b4a785751a1f8283', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1685.9583082460836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5b655f24c286580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:09:15.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b:log:104', 'hash': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 2411.024044769291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x82b3ae1a9097161ebe', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b:log:106', 'hash': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2411.024044769291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x82b3ae1a9097161ebe', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b:log:107', 'hash': '0x5da206a8b7672cf99bc0278f4415cf68f29829f33f1f327c427d03f857b5a83b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2411.024044769291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x82b3ae1a9097161ebe', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7abf', 'uniqueId': '0x4a6574fc1fb28fac11b230af28b1190dba65bdba1eba00f5eee651701eeb17a8:log:120', 'hash': '0x4a6574fc1fb28fac11b230af28b1190dba65bdba1eba00f5eee651701eeb17a8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029bd077cf24051c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:10:06.000Z'}}, {'blockNum': '0x7d7ad0', 'uniqueId': '0x4a197df79137852559e0bbca905a5e7442fdaf549fb9546e6bdfd1af863afabc:log:20', 'hash': '0x4a197df79137852559e0bbca905a5e7442fdaf549fb9546e6bdfd1af863afabc', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x05065a06e25eac240000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:13:57.000Z'}}, {'blockNum': '0x7d7ad9', 'uniqueId': '0x1da8f049f1e59121a5ab055dde0f71e4d5cda987b8982d9b6422926e1dce9a1c:log:107', 'hash': '0x1da8f049f1e59121a5ab055dde0f71e4d5cda987b8982d9b6422926e1dce9a1c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 16045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0365cd1af9f256940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:15:39.000Z'}}, {'blockNum': '0x7d7af0', 'uniqueId': '0x374c7e492ecacc6a4d4a286e1b5d9f03b3fb5f014b8d89355d7ebea650c3ca6a:log:57', 'hash': '0x374c7e492ecacc6a4d4a286e1b5d9f03b3fb5f014b8d89355d7ebea650c3ca6a', 'from': '0x73cd1f4ee6967fd2d16a7843c23c7892104466d5', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01ed4fde7a2236b00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:20:37.000Z'}}, {'blockNum': '0x7d7af0', 'uniqueId': '0x76f04ea4144014c37147898bcaebc47025fe9050eb44850a0425919418d6e446:log:60', 'hash': '0x76f04ea4144014c37147898bcaebc47025fe9050eb44850a0425919418d6e446', 'from': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 16785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x038deaab194233a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:20:37.000Z'}}, {'blockNum': '0x7d7af0', 'uniqueId': '0xa77c96631aab8b651fa570b7c95a5b879a784cf855b052c19913088fedcaa8bf:log:61', 'hash': '0xa77c96631aab8b651fa570b7c95a5b879a784cf855b052c19913088fedcaa8bf', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 10393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023367d94386aac40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:20:37.000Z'}}, {'blockNum': '0x7d7afe', 'uniqueId': '0xb2907e5fc0084ed4104dabbb8fdc15c4a89ff58e57b2bb3d541a482ff9d22e0b:log:44', 'hash': '0xb2907e5fc0084ed4104dabbb8fdc15c4a89ff58e57b2bb3d541a482ff9d22e0b', 'from': '0xc8fcc48d1454a83589169294470549a2e1713dec', 'to': '0x9fbcb98947e81fa65d10db8638c390c2cb0a9306', 'value': 26041.943634601565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0583bc915f8a13377740', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:23:39.000Z'}}, {'blockNum': '0x7d7b07', 'uniqueId': '0xebfa32839cce919b9c8ff61233bb38230821d1a133c56302519fdb0f2109bbd3:log:131', 'hash': '0xebfa32839cce919b9c8ff61233bb38230821d1a133c56302519fdb0f2109bbd3', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 2078.555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x70adbec7d7f80f8000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:24:58.000Z'}}, {'blockNum': '0x7d7b19', 'uniqueId': '0x4e24333b0e0dd0e6b23d7dbf0865132bca1382f6aba5cde7374dda97cb01ecca:log:21', 'hash': '0x4e24333b0e0dd0e6b23d7dbf0865132bca1382f6aba5cde7374dda97cb01ecca', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3bbe28261801bb6b5b910a8fd1fb39e999215a6f', 'value': 10563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023c9f1296d3d32c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:30:23.000Z'}}, {'blockNum': '0x7d7b1a', 'uniqueId': '0x18950dd5f7c612407264db78fc6e9846c1b3b621c724b02aaea6dd7db63daf16:log:22', 'hash': '0x18950dd5f7c612407264db78fc6e9846c1b3b621c724b02aaea6dd7db63daf16', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 4656.8726954209715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xfc73175350fed97e9d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:30:47.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0x428849d6a49f063b46d9c5a4587dfd7cbb148d734a5b2d3c114be0dd5f8ca466:log:14', 'hash': '0x428849d6a49f063b46d9c5a4587dfd7cbb148d734a5b2d3c114be0dd5f8ca466', 'from': '0x3bbe28261801bb6b5b910a8fd1fb39e999215a6f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x023c9f1296d3d32c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0x33d10eb723d2d20fa63c1dfcf5ca590d263bd83cda6eafb77e746763ea38f854:log:18', 'hash': '0x33d10eb723d2d20fa63c1dfcf5ca590d263bd83cda6eafb77e746763ea38f854', 'from': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0x5b2b14c94be4caad4a1046e4d7515b91d6a37d1bb8477722fe38cf3c46d21c0e:log:34', 'hash': '0x5b2b14c94be4caad4a1046e4d7515b91d6a37d1bb8477722fe38cf3c46d21c0e', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0365cd1af9f256940000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b20', 'uniqueId': '0xcc79cd9f28403e7fe14ec211257c879afe6875afcc6a567358c5c09fb7be1203:log:37', 'hash': '0xcc79cd9f28403e7fe14ec211257c879afe6875afcc6a567358c5c09fb7be1203', 'from': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 6210.2925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0150a91f1d35cc954000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:31:38.000Z'}}, {'blockNum': '0x7d7b25', 'uniqueId': '0xc7fe1206996435ae93dfab321af97e20fbed5837a3201adf7be897f65594b2d7:log:78', 'hash': '0xc7fe1206996435ae93dfab321af97e20fbed5837a3201adf7be897f65594b2d7', 'from': '0x9fbcb98947e81fa65d10db8638c390c2cb0a9306', 'to': '0x9e2bc683db85eebad77f386d703eecfa08c99826', 'value': 26041.9436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0583bc914011c5530000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:33:13.000Z'}}, {'blockNum': '0x7d7b2d', 'uniqueId': '0xe89eccb52b2e30262785e8d4ff0e8ed1d663181eec2018a97fe9ed0909c922e0:log:6', 'hash': '0xe89eccb52b2e30262785e8d4ff0e8ed1d663181eec2018a97fe9ed0909c922e0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 38184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0815f5731c7f5ba00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:34:54.000Z'}}, {'blockNum': '0x7d7b35', 'uniqueId': '0x115a0fa06fc430a3116af43bff290b607f1c43c798f976039f1d7719aadb2c0b:log:98', 'hash': '0x115a0fa06fc430a3116af43bff290b607f1c43c798f976039f1d7719aadb2c0b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 10943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025138a1c9804b9c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:36:01.000Z'}}, {'blockNum': '0x7d7b3b', 'uniqueId': '0xc1a9ebe7fa601568291296392ce5285f7c774c2279a750d37e7382062729e218:log:37', 'hash': '0xc1a9ebe7fa601568291296392ce5285f7c774c2279a750d37e7382062729e218', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1355.5832924498757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x497c7f4e4b894f3845', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:37:21.000Z'}}, {'blockNum': '0x7d7b48', 'uniqueId': '0xda07af41d142bc4e9acfb78c93a7f8a5e9b93cfaee9593f76f6281d1aa9901fe:log:75', 'hash': '0xda07af41d142bc4e9acfb78c93a7f8a5e9b93cfaee9593f76f6281d1aa9901fe', 'from': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'to': '0x851b494f4a4ce4de8aaaa8b77cbc57e72f7ab8cb', 'value': 1390.63757297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b62f920b3dc35a400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:39:12.000Z'}}, {'blockNum': '0x7d7b49', 'uniqueId': '0x09486ef6ab05fc9d7e23b0a6aacb2f070358b079c8a6efc404fe2bc2efcee7f4:log:4', 'hash': '0x09486ef6ab05fc9d7e23b0a6aacb2f070358b079c8a6efc404fe2bc2efcee7f4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 40854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08a6b324a23b30980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:39:18.000Z'}}, {'blockNum': '0x7d7b4b', 'uniqueId': '0xe3623d7da605411b3589824b9945ca340c7f2b947592dd822e068ab6233d1ec4:log:85', 'hash': '0xe3623d7da605411b3589824b9945ca340c7f2b947592dd822e068ab6233d1ec4', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1778.839935769615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x606e5cf8e272935654', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:39:40.000Z'}}, {'blockNum': '0x7d7b4c', 'uniqueId': '0x6de20f1608e81cafc5f384da844888cffa044f4cc8d75ae4e6fdc4f36db5ca01:log:75', 'hash': '0x6de20f1608e81cafc5f384da844888cffa044f4cc8d75ae4e6fdc4f36db5ca01', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a55af56aa719dc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:17.000Z'}}, {'blockNum': '0x7d7b4c', 'uniqueId': '0x2dfd91354cba03274963e9bef644cfc217b6f5d7dca29e85a73bb9d75c8560c0:log:115', 'hash': '0x2dfd91354cba03274963e9bef644cfc217b6f5d7dca29e85a73bb9d75c8560c0', 'from': '0xe1036ddd04175168a556d46bc5be5e5a5925f711', 'to': '0x8f5d6281a055575bda9848a8e1b12319c97e45ca', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:17.000Z'}}, {'blockNum': '0x7d7b4d', 'uniqueId': '0x6929d527ada73609467eedb546245b36ac8393e62177fd9fb41d266f42229740:log:132', 'hash': '0x6929d527ada73609467eedb546245b36ac8393e62177fd9fb41d266f42229740', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 10098.255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02236d70aba6e8418000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:24.000Z'}}, {'blockNum': '0x7d7b4e', 'uniqueId': '0xd3562ed40d6f1f559d4b227cb8f3f7a8751a8f3ea30544455fb2e75ec2b6ffde:log:30', 'hash': '0xd3562ed40d6f1f559d4b227cb8f3f7a8751a8f3ea30544455fb2e75ec2b6ffde', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'value': 15078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03316148d9550bd80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:33.000Z'}}, {'blockNum': '0x7d7b4e', 'uniqueId': '0x89527937c35fa89562b8c844de9fcd3bbc0579ac22eabd22e1d08af49e620673:log:46', 'hash': '0x89527937c35fa89562b8c844de9fcd3bbc0579ac22eabd22e1d08af49e620673', 'from': '0x37b779911ccb1421600dd1509df148464dbb07c2', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 2233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x790d19a50f17440000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:40:33.000Z'}}, {'blockNum': '0x7d7b54', 'uniqueId': '0x25bdedc0628f0a17ac2c257a36efbb0b9881aeb0d9fdfc9a2619aec90ae9749b:log:28', 'hash': '0x25bdedc0628f0a17ac2c257a36efbb0b9881aeb0d9fdfc9a2619aec90ae9749b', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 877.4008972212462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x2f90622b5a81667a1b', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:41:26.000Z'}}, {'blockNum': '0x7d7b55', 'uniqueId': '0xdcf05a2ee7f1390972ef0bdd31a5703f4186889d29c9f9fc68a137dbe4a8a609:log:39', 'hash': '0xdcf05a2ee7f1390972ef0bdd31a5703f4186889d29c9f9fc68a137dbe4a8a609', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 7623.56796326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x019d46422f30d881d800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:41:53.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x3ba5258b646c96098bdb3788c13760247a0bb710cf56a90367a24ad0369b8a6f:log:31', 'hash': '0x3ba5258b646c96098bdb3788c13760247a0bb710cf56a90367a24ad0369b8a6f', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x790d19a50f17440000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x2d0199b1bdf7c63b66eee68e55579aaa78a6715417c8901ec7bf20b146d35520:log:33', 'hash': '0x2d0199b1bdf7c63b66eee68e55579aaa78a6715417c8901ec7bf20b146d35520', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a55af56aa719dc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x785fbba736602b5510c2a3c93d5467c667839064467d025f86144c5eaf71e014:log:37', 'hash': '0x785fbba736602b5510c2a3c93d5467c667839064467d025f86144c5eaf71e014', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x08a6b324a23b30980000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5b', 'uniqueId': '0x66c1a8e9bf95ef34bc0e0881686012e44c587e3b568bd4cbd7d2f6dbf7343f57:log:60', 'hash': '0x66c1a8e9bf95ef34bc0e0881686012e44c587e3b568bd4cbd7d2f6dbf7343f57', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 888.7550200803213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x302df41defe8b64c14', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:43:46.000Z'}}, {'blockNum': '0x7d7b5c', 'uniqueId': '0xb1ba95b545e86f8453df050a45b0488d30cf735813f63c19744aa61b588821ac:log:16', 'hash': '0xb1ba95b545e86f8453df050a45b0488d30cf735813f63c19744aa61b588821ac', 'from': '0x851b494f4a4ce4de8aaaa8b77cbc57e72f7ab8cb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1390.63757297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b62f920b3dc35a400', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:44:05.000Z'}}, {'blockNum': '0x7d7b65', 'uniqueId': '0x520f08f1acf9de20f67a08e4119adf8b97c19bf0129f4c4512d8a93cc431e544:log:135', 'hash': '0x520f08f1acf9de20f67a08e4119adf8b97c19bf0129f4c4512d8a93cc431e544', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1810.2249488752557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6221eaf004eb443029', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:47:43.000Z'}}, {'blockNum': '0x7d7b66', 'uniqueId': '0x6b9709d9e44066ac6a78ba8f3286fd71cff499397affaa700b12f9869c11f6c0:log:50', 'hash': '0x6b9709d9e44066ac6a78ba8f3286fd71cff499397affaa700b12f9869c11f6c0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'value': 17806.4161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03c549aa0c83a0824000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:48:19.000Z'}}, {'blockNum': '0x7d7b79', 'uniqueId': '0xd9e32ff5bb99fcc4d14aac1f66d583fd8b773306cf216d7bcc09db175612a444:log:76', 'hash': '0xd9e32ff5bb99fcc4d14aac1f66d583fd8b773306cf216d7bcc09db175612a444', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 19416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x041c8b20c99f88600000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:52:48.000Z'}}, {'blockNum': '0x7d7b79', 'uniqueId': '0x9eb756147832b4bad512313ee064b94dd90b69ddfd2b1370cc08a5bf2fc858ea:log:90', 'hash': '0x9eb756147832b4bad512313ee064b94dd90b69ddfd2b1370cc08a5bf2fc858ea', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'value': 2021.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6d9aaa9fd523c80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:52:48.000Z'}}, {'blockNum': '0x7d7b7e', 'uniqueId': '0x7a2178db4ea25b203190a8190e96956ca1d1c4af54a562cdcf035e5852fe5463:log:17', 'hash': '0x7a2178db4ea25b203190a8190e96956ca1d1c4af54a562cdcf035e5852fe5463', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7623.56796326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x019d46422f30d881d800', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:54:02.000Z'}}, {'blockNum': '0x7d7b7e', 'uniqueId': '0x39c8466315890335dcc5496370fc06e5626d537e39d597c82892cd04d7b78ead:log:20', 'hash': '0x39c8466315890335dcc5496370fc06e5626d537e39d597c82892cd04d7b78ead', 'from': '0x1817fa1023501eabeb948f9cbc81c0028daf46ef', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17806.4161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03c549aa0c83a0824000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:54:02.000Z'}}, {'blockNum': '0x7d7b8c', 'uniqueId': '0x06c882ac58e8e7995a741c006763a7a3d9aaa20d245583539ad68495fd3bedb2:log:44', 'hash': '0x06c882ac58e8e7995a741c006763a7a3d9aaa20d245583539ad68495fd3bedb2', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1374.5341614906831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4a837e51481b95f675', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:56:58.000Z'}}, {'blockNum': '0x7d7b8d', 'uniqueId': '0xc244416d5f2736215ba66dd7266982ddd7eff1a9e145337511e5beec9a2261c0:log:50', 'hash': '0xc244416d5f2736215ba66dd7266982ddd7eff1a9e145337511e5beec9a2261c0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x40f738f99562cf5e7af8978da5cd3da311ab8340', 'value': 224990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x2fa4bb7a97e420b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:57:00.000Z'}}, {'blockNum': '0x7d7b9b', 'uniqueId': '0x243f30fccb4017379439e515fa2350043b88cc46089aae8f49d3c76a3f0a04c3:log:30', 'hash': '0x243f30fccb4017379439e515fa2350043b88cc46089aae8f49d3c76a3f0a04c3', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1394.1176470588234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b9344d5a5ec93c3c3', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T02:59:54.000Z'}}, {'blockNum': '0x7d7ba5', 'uniqueId': '0x9728f87006477dbb5cc509109face0c56f182c1fbccc203c1ba2327062c981d4:log:40', 'hash': '0x9728f87006477dbb5cc509109face0c56f182c1fbccc203c1ba2327062c981d4', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 38184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0815f5731c7f5ba00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:02:14.000Z'}}, {'blockNum': '0x7d7ba5', 'uniqueId': '0x1eaa404327eeb729041361a5b1fac832d6349cf0ef05fb038a6000930835c34b:log:44', 'hash': '0x1eaa404327eeb729041361a5b1fac832d6349cf0ef05fb038a6000930835c34b', 'from': '0x164efe71c47042da2cddc47b359a325467af1b1e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12120.095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0291081b4b7c0c098000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:02:14.000Z'}}, {'blockNum': '0x7d7ba5', 'uniqueId': '0xe38ca13f273f6fb0bc635053d0fb25ca54b406ee6716ccadc7f63c7e81c699fa:log:98', 'hash': '0xe38ca13f273f6fb0bc635053d0fb25ca54b406ee6716ccadc7f63c7e81c699fa', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 30359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x066dc3c2931fd3fc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:02:14.000Z'}}, {'blockNum': '0x7d7bad', 'uniqueId': '0xfb4e461d11efc3c6a6f86a45116a178e615251d922b98271590d9df844a27d7f:log:37', 'hash': '0xfb4e461d11efc3c6a6f86a45116a178e615251d922b98271590d9df844a27d7f', 'from': '0x40f738f99562cf5e7af8978da5cd3da311ab8340', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 224990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x2fa4bb7a97e420b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:04:29.000Z'}}, {'blockNum': '0x7d7baf', 'uniqueId': '0xf145da40a4e59f86550d9bf221518867649a446d266894332f3b8708cf9e3915:log:4', 'hash': '0xf145da40a4e59f86550d9bf221518867649a446d266894332f3b8708cf9e3915', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 47296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a03ebda270d6b000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:04:34.000Z'}}, {'blockNum': '0x7d7bc5', 'uniqueId': '0x2ada8805d63247d816afa9243024ce4e2ad87fc4d4db1fc2d4340ae62223460d:log:47', 'hash': '0x2ada8805d63247d816afa9243024ce4e2ad87fc4d4db1fc2d4340ae62223460d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 36587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x07bf629f5dc420cc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:08:19.000Z'}}, {'blockNum': '0x7d7bc8', 'uniqueId': '0x7cf4f9b75c3de9c719240bf7de624380e183fb5e62766d43910b70549dbbf136:log:56', 'hash': '0x7cf4f9b75c3de9c719240bf7de624380e183fb5e62766d43910b70549dbbf136', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 23138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04e65041199f3c480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:08:52.000Z'}}, {'blockNum': '0x7d7bdf', 'uniqueId': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9:log:53', 'hash': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1241.651331915331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x434f5fabd387f296d8', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:13:33.000Z'}}, {'blockNum': '0x7d7bdf', 'uniqueId': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9:log:55', 'hash': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1241.6512547393534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x434f5f65a299380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:13:33.000Z'}}, {'blockNum': '0x7d7bdf', 'uniqueId': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9:log:56', 'hash': '0x6f572a3ddd909b2a33ec07c9cf0ea583e628dcd6ef5216b495dbfcb7917b4ef9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1241.6512547393534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x434f5f65a299380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:13:33.000Z'}}, {'blockNum': '0x7d7bf6', 'uniqueId': '0x75c0155f10a63f564d4ad28a7d03998e7912f2ffec1be7147a3f1cfc22898a15:log:99', 'hash': '0x75c0155f10a63f564d4ad28a7d03998e7912f2ffec1be7147a3f1cfc22898a15', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 930.2521008403361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x326dd75d0705181135', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:19:38.000Z'}}, {'blockNum': '0x7d7bfb', 'uniqueId': '0x89a6f11ae7ac2db8621390d5ef679857eab8c5adac9a2275c3b8499846463279:log:5', 'hash': '0x89a6f11ae7ac2db8621390d5ef679857eab8c5adac9a2275c3b8499846463279', 'from': '0x86ff4b153c06c2f75a88c16ddbd481d7daf27d8e', 'to': '0xc94727e72519c3b3434f5af6d3886615f82c2ec6', 'value': 505.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b6cc5d9a07e1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:20:43.000Z'}}, {'blockNum': '0x7d7c0e', 'uniqueId': '0x92d37bd16ecd752bcf15bb2860e0e58d626cb359a5a0c4fa58c68471e3e07366:log:24', 'hash': '0x92d37bd16ecd752bcf15bb2860e0e58d626cb359a5a0c4fa58c68471e3e07366', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a03ebda270d6b000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:23:59.000Z'}}, {'blockNum': '0x7d7c0e', 'uniqueId': '0xcbce0ca2c20100b9b122e222e2e823b13f26b9779b4c36525f3fcb6ea7086a4a:log:37', 'hash': '0xcbce0ca2c20100b9b122e222e2e823b13f26b9779b4c36525f3fcb6ea7086a4a', 'from': '0xc94727e72519c3b3434f5af6d3886615f82c2ec6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 505.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b6cc5d9a07e1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:23:59.000Z'}}, {'blockNum': '0x7d7c36', 'uniqueId': '0x5f6eb273f08e692cd7454574cb72e6f4af4606796387bcce4510e9cff09ba90a:log:8', 'hash': '0x5f6eb273f08e692cd7454574cb72e6f4af4606796387bcce4510e9cff09ba90a', 'from': '0xaeec6f5aca72f3a005af1b3420ab8c8c7009bac8', 'to': '0xdeb834d1d59d74a3532a7b353fc0c8ff748f74a5', 'value': 195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a922b2ad8812c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:34:14.000Z'}}, {'blockNum': '0x7d7c44', 'uniqueId': '0xc9643d67fecea4687eb0f312cfa3685ef2f95e1e73ecbf7f099dba66d2cbd046:log:95', 'hash': '0xc9643d67fecea4687eb0f312cfa3685ef2f95e1e73ecbf7f099dba66d2cbd046', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0274140caebdbbc80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:38:55.000Z'}}, {'blockNum': '0x7d7c47', 'uniqueId': '0xb4796c18ee520ccbc56529fb9496268c4b53b2010794200020a8d365cc0ca4d4:log:61', 'hash': '0xb4796c18ee520ccbc56529fb9496268c4b53b2010794200020a8d365cc0ca4d4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x95b564f3b3bae3f206aa418667ba000afafacc8a', 'value': 110525.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x17679bcbaae730570000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:39:53.000Z'}}, {'blockNum': '0x7d7c5a', 'uniqueId': '0xd58d8980018205873901a6ef026ef9f52b9f788ae062d282090af05bbc27734f:log:10', 'hash': '0xd58d8980018205873901a6ef026ef9f52b9f788ae062d282090af05bbc27734f', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0274140caebdbbc80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:44:06.000Z'}}, {'blockNum': '0x7d7c6a', 'uniqueId': '0xa22db8b294fe4bee3a142f62ed5bf61720fd573ad1094e849b20fa861123d004:log:32', 'hash': '0xa22db8b294fe4bee3a142f62ed5bf61720fd573ad1094e849b20fa861123d004', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 19440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x041dd831ea7739c00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:47:46.000Z'}}, {'blockNum': '0x7d7c6d', 'uniqueId': '0x94b2c30af26193f607bfe5678ca4eeff5a1ea3e83a9d5c3de54ee614a7d851dd:log:77', 'hash': '0x94b2c30af26193f607bfe5678ca4eeff5a1ea3e83a9d5c3de54ee614a7d851dd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 56098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0be11423f40ec7480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:48:45.000Z'}}, {'blockNum': '0x7d7c6f', 'uniqueId': '0x01fae415932032dc601fdeb3be12ef87cd79bfb31b43733befd4fc9ef470c9b2:log:26', 'hash': '0x01fae415932032dc601fdeb3be12ef87cd79bfb31b43733befd4fc9ef470c9b2', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1823.7933638557554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x62de37a18e3109f98e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:49:50.000Z'}}, {'blockNum': '0x7d7c7a', 'uniqueId': '0xb83dfbcb21abd3ca519b9f9ae0c82b801d94c11470cf1c2dd4163dc8fd566b7a:log:37', 'hash': '0xb83dfbcb21abd3ca519b9f9ae0c82b801d94c11470cf1c2dd4163dc8fd566b7a', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:54:05.000Z'}}, {'blockNum': '0x7d7c7d', 'uniqueId': '0x384274a1383c4fb4472f3031f57e11014fc8a2825c55bab75bb8debb29661d7e:log:51', 'hash': '0x384274a1383c4fb4472f3031f57e11014fc8a2825c55bab75bb8debb29661d7e', 'from': '0x0cbf107b335d045b3082c8fc1038261212acec09', 'to': '0xfc1e76d665d25fef21457081761b80f7f16e88b7', 'value': 10000.274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e1dae3b470eb50000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:54:39.000Z'}}, {'blockNum': '0x7d7c7e', 'uniqueId': '0xc6dee9422642b0cff182f39ee762b5f057c426c77e9f4a831a089069af831313:log:0', 'hash': '0xc6dee9422642b0cff182f39ee762b5f057c426c77e9f4a831a089069af831313', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:54:49.000Z'}}, {'blockNum': '0x7d7c82', 'uniqueId': '0x05a5d354792040680739fdfb4a19571b45baea2db64f54967c4740d3fd8c7816:log:22', 'hash': '0x05a5d354792040680739fdfb4a19571b45baea2db64f54967c4740d3fd8c7816', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:55:38.000Z'}}, {'blockNum': '0x7d7c88', 'uniqueId': '0x8fde8c82376145908a2108f64c1af57073df3c7e04367596a65162b6069618f1:log:23', 'hash': '0x8fde8c82376145908a2108f64c1af57073df3c7e04367596a65162b6069618f1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 47354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a0710c38bc157a80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:57:36.000Z'}}, {'blockNum': '0x7d7c91', 'uniqueId': '0x2c8a6f7877d44d0fb31a51318c9b77f1323eb501bef5fb717868e0a76dd07b03:log:89', 'hash': '0x2c8a6f7877d44d0fb31a51318c9b77f1323eb501bef5fb717868e0a76dd07b03', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T03:58:40.000Z'}}, {'blockNum': '0x7d7c96', 'uniqueId': '0x109585ed98124de767377c90af331602349cc42875f603574d80c1cc8237ee23:log:70', 'hash': '0x109585ed98124de767377c90af331602349cc42875f603574d80c1cc8237ee23', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1796.3488843813388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x61615940e16af0ae79', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:00:57.000Z'}}, {'blockNum': '0x7d7c9e', 'uniqueId': '0x8791336e83be74abb91b5fc389b22761ed523c108c426c4140bce1b88c66d4a7:log:2', 'hash': '0x8791336e83be74abb91b5fc389b22761ed523c108c426c4140bce1b88c66d4a7', 'from': '0xc8fcc48d1454a83589169294470549a2e1713dec', 'to': '0x5896d36acdbca971db78e8ebd23cc5315d91cfcf', 'value': 29462.933251621416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x063d3055fb0a03224789', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:02:12.000Z'}}, {'blockNum': '0x7d7ca6', 'uniqueId': '0xd3501cc3a8b2be9f44a25780aee484c0f7f414f5aae6fff50e0529d8c0e1d463:log:20', 'hash': '0xd3501cc3a8b2be9f44a25780aee484c0f7f414f5aae6fff50e0529d8c0e1d463', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 83941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x11c67362e98578740000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:26.000Z'}}, {'blockNum': '0x7d7ca6', 'uniqueId': '0xbed2833fd9cbc5a366e5cdf36d488ca84dad10131b6407b746af3f17fad77a91:log:23', 'hash': '0xbed2833fd9cbc5a366e5cdf36d488ca84dad10131b6407b746af3f17fad77a91', 'from': '0xfc1e76d665d25fef21457081761b80f7f16e88b7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10000.274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e1dae3b470eb4ffff', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:26.000Z'}}, {'blockNum': '0x7d7ca6', 'uniqueId': '0xdaf049c7a2d6512449283dc68d6720153c4b1be680545d1f253c0edeb073efbf:log:32', 'hash': '0xdaf049c7a2d6512449283dc68d6720153c4b1be680545d1f253c0edeb073efbf', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 42578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x09042873041676080000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:26.000Z'}}, {'blockNum': '0x7d7ca7', 'uniqueId': '0xf31f77347cdf2b93ac2423c3ed2b9a969659a2a49835deaa36d24619bb747380:log:41', 'hash': '0xf31f77347cdf2b93ac2423c3ed2b9a969659a2a49835deaa36d24619bb747380', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:40.000Z'}}, {'blockNum': '0x7d7ca7', 'uniqueId': '0x5131f66f2db82f4e42ad40399f171ec0c33a9d5946291c910abb0b4fe43c7d74:log:46', 'hash': '0x5131f66f2db82f4e42ad40399f171ec0c33a9d5946291c910abb0b4fe43c7d74', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 10641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0240d98a4190d3a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:03:40.000Z'}}, {'blockNum': '0x7d7ca9', 'uniqueId': '0x11e6ac9e7b1b4fdc9fca14fc56610f62f69acc9b30fb1c30ef0e82d1366bf1ca:log:7', 'hash': '0x11e6ac9e7b1b4fdc9fca14fc56610f62f69acc9b30fb1c30ef0e82d1366bf1ca', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0be11423f40ec7480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:04:12.000Z'}}, {'blockNum': '0x7d7ca9', 'uniqueId': '0xc71ef5e08f3b291d1cd57f9c6df7f561092edff3850995d50245022128e52f4f:log:8', 'hash': '0xc71ef5e08f3b291d1cd57f9c6df7f561092edff3850995d50245022128e52f4f', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:04:12.000Z'}}, {'blockNum': '0x7d7cb7', 'uniqueId': '0x0bd879d3b48b1ce2792d0e11996848aafc269db4dd0e15e750a95d437f2807c3:log:0', 'hash': '0x0bd879d3b48b1ce2792d0e11996848aafc269db4dd0e15e750a95d437f2807c3', 'from': '0x5896d36acdbca971db78e8ebd23cc5315d91cfcf', 'to': '0xac63f8b7e5230db113d03827f826720b45f0be20', 'value': 29462.933251621416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x063d3055fb0a03224789', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:07:45.000Z'}}, {'blockNum': '0x7d7cbd', 'uniqueId': '0x58ffc3af05951fdb5c69df89c498d1e16ad38c6fd83c645bcfea305f19c785cc:log:11', 'hash': '0x58ffc3af05951fdb5c69df89c498d1e16ad38c6fd83c645bcfea305f19c785cc', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:02.000Z'}}, {'blockNum': '0x7d7cbf', 'uniqueId': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567:log:42', 'hash': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.9190516617144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3634aa17b029f49b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:19.000Z'}}, {'blockNum': '0x7d7cbf', 'uniqueId': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567:log:44', 'hash': '0xa25efff0850b849341157000a4ebbea07b68f74c4f944d0e12126a1d16171567', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 999.9190516617144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3634aa17b029f49b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:19.000Z'}}, {'blockNum': '0x7d7cc2', 'uniqueId': '0x15eb8f4cd45623c217a963673a58c4725b179637de8580dad5c73905cc34cf0f:log:133', 'hash': '0x15eb8f4cd45623c217a963673a58c4725b179637de8580dad5c73905cc34cf0f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 11874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0283b0da38da0c480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:09:47.000Z'}}, {'blockNum': '0x7d7cd9', 'uniqueId': '0x6f54831c07e9d71975afe954927c5aa12b03045e887efc922c58606dd43125ea:log:29', 'hash': '0x6f54831c07e9d71975afe954927c5aa12b03045e887efc922c58606dd43125ea', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0240d98a4190d3a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:13:56.000Z'}}, {'blockNum': '0x7d7cd9', 'uniqueId': '0x6ce6a493675ac660458766d30d743d9d4bb1adbfe678e3bbf7d2c4782c11fe4a:log:33', 'hash': '0x6ce6a493675ac660458766d30d743d9d4bb1adbfe678e3bbf7d2c4782c11fe4a', 'from': '0xac63f8b7e5230db113d03827f826720b45f0be20', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29462.933251621416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x063d3055fb0a03224789', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:13:56.000Z'}}, {'blockNum': '0x7d7cea', 'uniqueId': '0xcc97a6b717554327e44d72c89a88061a65ab5b8d0e5922960e7bf599252acc67:log:37', 'hash': '0xcc97a6b717554327e44d72c89a88061a65ab5b8d0e5922960e7bf599252acc67', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 11186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025e64ef36082f880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:16:38.000Z'}}, {'blockNum': '0x7d7cf1', 'uniqueId': '0xd1520dd21ce38f1cc6cb368b645c951fb0b4b6d25d8b623cac86b547cb1c9f1d:log:0', 'hash': '0xd1520dd21ce38f1cc6cb368b645c951fb0b4b6d25d8b623cac86b547cb1c9f1d', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:18:00.000Z'}}, {'blockNum': '0x7d7cfd', 'uniqueId': '0x172584c7ac964ee8e7d42e160a028451fc62c7e47440e4843abaf220012d7b95:log:4', 'hash': '0x172584c7ac964ee8e7d42e160a028451fc62c7e47440e4843abaf220012d7b95', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1327.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x47f29998316a700000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:20:23.000Z'}}, {'blockNum': '0x7d7d02', 'uniqueId': '0x9faf435460ea934818d25686b8276e0238648294904b07d62fb53bef5f0b609f:log:85', 'hash': '0x9faf435460ea934818d25686b8276e0238648294904b07d62fb53bef5f0b609f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 14536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0313ff8608f8a6200000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:21:47.000Z'}}, {'blockNum': '0x7d7d0b', 'uniqueId': '0xe743a7e9fc51975b711a048b5176beccfa6c8bba5757da9bcfacb0236aee767e:log:19', 'hash': '0xe743a7e9fc51975b711a048b5176beccfa6c8bba5757da9bcfacb0236aee767e', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x025e64ef36082f880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:23:58.000Z'}}, {'blockNum': '0x7d7d17', 'uniqueId': '0x096210658de3875a49081584d535855b70366da5932cac0a2647e073290c63e1:log:33', 'hash': '0x096210658de3875a49081584d535855b70366da5932cac0a2647e073290c63e1', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 3999.9190516617145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xd8d6072101c5d49b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:27:19.000Z'}}, {'blockNum': '0x7d7d17', 'uniqueId': '0xe5fb6963f2374854f654e200da7c5f933b1d47c5dcf0ec1e0205e062db6d031b:log:36', 'hash': '0xe5fb6963f2374854f654e200da7c5f933b1d47c5dcf0ec1e0205e062db6d031b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'value': 105287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x164b9ea51990f8bc0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:27:19.000Z'}}, {'blockNum': '0x7d7d1c', 'uniqueId': '0xc464a842487c6b9f9055864f183e4d43fafe6ce76505a7394c6a3c186946a588:log:21', 'hash': '0xc464a842487c6b9f9055864f183e4d43fafe6ce76505a7394c6a3c186946a588', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 22836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x04d5f12991afc4500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:28:32.000Z'}}, {'blockNum': '0x7d7d1c', 'uniqueId': '0x7b8738fb44d9e01250625ab6f48a4b240d52e11a787dc066432ad59f9c087406:log:22', 'hash': '0x7b8738fb44d9e01250625ab6f48a4b240d52e11a787dc066432ad59f9c087406', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 74984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe0e40a7dbdc2a00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:28:32.000Z'}}, {'blockNum': '0x7d7d1e', 'uniqueId': '0x3f0073f58aab7100112fe90fce336b1dff11bdc725b90b107278dd091ef5f604:log:48', 'hash': '0x3f0073f58aab7100112fe90fce336b1dff11bdc725b90b107278dd091ef5f604', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:29:02.000Z'}}, {'blockNum': '0x7d7d1e', 'uniqueId': '0xff483aab1845649c0b55ed122ef19970f056b06334b59b1ec77dce1793a9b6ac:log:50', 'hash': '0xff483aab1845649c0b55ed122ef19970f056b06334b59b1ec77dce1793a9b6ac', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:29:02.000Z'}}, {'blockNum': '0x7d7d25', 'uniqueId': '0xabd65c0a758536ebb6e9aabb3559db8566bdf4b9ee3134d305813395a3229b8a:log:40', 'hash': '0xabd65c0a758536ebb6e9aabb3559db8566bdf4b9ee3134d305813395a3229b8a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'value': 1167.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3f51335db125260000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:30:47.000Z'}}, {'blockNum': '0x7d7d2d', 'uniqueId': '0xd85a5759dd0c38174ff93f36c981c90d386d979a948638cf761037c858653b26:log:47', 'hash': '0xd85a5759dd0c38174ff93f36c981c90d386d979a948638cf761037c858653b26', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:32:14.000Z'}}, {'blockNum': '0x7d7d30', 'uniqueId': '0x977a3bd91e33b0df59cec6612bca4c8f09a50c4578c8851fb1a4981b5cc01d74:log:50', 'hash': '0x977a3bd91e33b0df59cec6612bca4c8f09a50c4578c8851fb1a4981b5cc01d74', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:33:05.000Z'}}, {'blockNum': '0x7d7d37', 'uniqueId': '0x83874c4a1c691d66659bb1b2fa39cae150d85bb8ec03e8ed6f69904700b099e7:log:42', 'hash': '0x83874c4a1c691d66659bb1b2fa39cae150d85bb8ec03e8ed6f69904700b099e7', 'from': '0xfa7e17ae2b6425f9c66eacadd9418cb87325c1a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1167.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3f51335db125260000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:34:34.000Z'}}, {'blockNum': '0x7d7d37', 'uniqueId': '0xb4ccfc9cc531ff677e2b4d1c93f4a60b7154d8a16dd8e0b9a42c65507d6086b3:log:114', 'hash': '0xb4ccfc9cc531ff677e2b4d1c93f4a60b7154d8a16dd8e0b9a42c65507d6086b3', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:34:34.000Z'}}, {'blockNum': '0x7d7d66', 'uniqueId': '0xce41cd997607714207827d03e5829b65a02a0e02504b7263b0f3ee9471821f1f:log:4', 'hash': '0xce41cd997607714207827d03e5829b65a02a0e02504b7263b0f3ee9471821f1f', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:44:00.000Z'}}, {'blockNum': '0x7d7d66', 'uniqueId': '0x0b7018844057fa5c56ca2a8b2a2605d5b3fdfba575b92fb4fb9c6bfd3ce912ac:log:5', 'hash': '0x0b7018844057fa5c56ca2a8b2a2605d5b3fdfba575b92fb4fb9c6bfd3ce912ac', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4999.919051661715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010f0bd0cec7a4749b5d', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:44:00.000Z'}}, {'blockNum': '0x7d7d7f', 'uniqueId': '0x252ef8b6bcfc7e8dc005a7c76a99084dcc2398669e9304b43e3c71d323af7383:log:38', 'hash': '0x252ef8b6bcfc7e8dc005a7c76a99084dcc2398669e9304b43e3c71d323af7383', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 887.14859437751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3017a8f2458a973260', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:49:17.000Z'}}, {'blockNum': '0x7d7d82', 'uniqueId': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b:log:98', 'hash': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.7914381942751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632e4b7ea66ae3e92', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:49:46.000Z'}}, {'blockNum': '0x7d7d82', 'uniqueId': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b:log:100', 'hash': '0xa5c9a5536c5c9dd72a8091a4cb7da62b1e90329aa5d0b6b2517650da5a81492b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 999.7914381942751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632e4b7ea66ae3e92', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:49:46.000Z'}}, {'blockNum': '0x7d7d85', 'uniqueId': '0x1462c300650c10b3c98effea6b2103175db5d7f865b8b4302ec0ccea6a9f3db2:log:99', 'hash': '0x1462c300650c10b3c98effea6b2103175db5d7f865b8b4302ec0ccea6a9f3db2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029cd8255e7971880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:50:37.000Z'}}, {'blockNum': '0x7d7d94', 'uniqueId': '0x8772ab71273b801fd5a7d527c006035ab56a3011ef9e0042cc66e0a484a6629a:log:11', 'hash': '0x8772ab71273b801fd5a7d527c006035ab56a3011ef9e0042cc66e0a484a6629a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x029cd8255e7971880000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:53:58.000Z'}}, {'blockNum': '0x7d7da3', 'uniqueId': '0x3cd024433b1fbdb4b5cbfbd339df7de2d08e44c41f4036e0ec403d9b55791520:log:13', 'hash': '0x3cd024433b1fbdb4b5cbfbd339df7de2d08e44c41f4036e0ec403d9b55791520', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1796.7479674796748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6166e314d8131f7acb', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T04:57:49.000Z'}}, {'blockNum': '0x7d7db0', 'uniqueId': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b:log:73', 'hash': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 891.7577176217364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x30579fd7712cb3986b', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:00.000Z'}}, {'blockNum': '0x7d7db0', 'uniqueId': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b:log:75', 'hash': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 891.7577176217364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x30579fd7712cb3986b', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:00.000Z'}}, {'blockNum': '0x7d7db0', 'uniqueId': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b:log:80', 'hash': '0xb40853956a2a001336e11bf9f4a7c0adc6be36bfdb29d570ed317bf6684df89b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 891.7577176217366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x30579fd7712cb60000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:00.000Z'}}, {'blockNum': '0x7d7db4', 'uniqueId': '0x184cb06d1c32e3ff60959f224e20c239c670c0819a6941dafbaca3e451775010:log:38', 'hash': '0x184cb06d1c32e3ff60959f224e20c239c670c0819a6941dafbaca3e451775010', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 999.7914381942751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632e4b7ea66ae3e92', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:00:51.000Z'}}, {'blockNum': '0x7d7dbe', 'uniqueId': '0x4a6e6946c58522628197752cb353852b9411bb234ff9da9c9c76a9abb0a31f52:log:6', 'hash': '0x4a6e6946c58522628197752cb353852b9411bb234ff9da9c9c76a9abb0a31f52', 'from': '0x7853b07d41dfafbb094ccf7a226ce429af635657', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:07.000Z'}}, {'blockNum': '0x7d7dbe', 'uniqueId': '0x0a714fd392692a4a7c653f1b7db1b9b42b25c9d7d0d2126522884a47052594fc:log:12', 'hash': '0x0a714fd392692a4a7c653f1b7db1b9b42b25c9d7d0d2126522884a47052594fc', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fe0e40a7dbdc2a00000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:07.000Z'}}, {'blockNum': '0x7d7dbe', 'uniqueId': '0xb9fcae2060b37669f859ed4b01de8eba3f807352dceaf1d4926ae4b8b1a4aa45:log:19', 'hash': '0xb9fcae2060b37669f859ed4b01de8eba3f807352dceaf1d4926ae4b8b1a4aa45', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 49246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a6da189d38276b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:07.000Z'}}, {'blockNum': '0x7d7dc0', 'uniqueId': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e:log:23', 'hash': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.7839831119849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632ca3b8ecaff779c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:24.000Z'}}, {'blockNum': '0x7d7dc0', 'uniqueId': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e:log:25', 'hash': '0x358463979b3ae2968163128c45a233e811797c02a0d2c47ce40a874d4f65517e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'value': 999.7839831119849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632ca3b8ecaff779c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:04:24.000Z'}}, {'blockNum': '0x7d7dcd', 'uniqueId': '0xaa9e2e3faa1fda7076cee056b410ca980937e7377479772c7291bb79896e5582:log:32', 'hash': '0xaa9e2e3faa1fda7076cee056b410ca980937e7377479772c7291bb79896e5582', 'from': '0x0af6a3c73d0a132333562a3906ae6335783a2b3a', 'to': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'value': 999.7839831119849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x3632ca3b8ecaff779c', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:08:43.000Z'}}, {'blockNum': '0x7d7ddb', 'uniqueId': '0x69cb10281165bc1847bea40bb6de2220cd0efab885bfd90b6ecf5619798ccfe4:log:4', 'hash': '0x69cb10281165bc1847bea40bb6de2220cd0efab885bfd90b6ecf5619798ccfe4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbb08e572938fbd418f7e858b4727945f5ebe6575', 'value': 77006.252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x104e846cd56415de0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:11:55.000Z'}}, {'blockNum': '0x7d7de4', 'uniqueId': '0xf479ca01536108faaf1eae64702adcea3a1890cb622efe45129d2c62f9d2c12d:log:17', 'hash': '0xf479ca01536108faaf1eae64702adcea3a1890cb622efe45129d2c62f9d2c12d', 'from': '0xd3bf48c981e12cd4780195502b74916deefe9bc5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1999.57542130626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6c65aef37931adb62e', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:13:58.000Z'}}, {'blockNum': '0x7d7df6', 'uniqueId': '0xbb7389bd41d48e93301fc5e4adea885b4898083f965bc27cc4af4dce70cecd4f:log:199', 'hash': '0xbb7389bd41d48e93301fc5e4adea885b4898083f965bc27cc4af4dce70cecd4f', 'from': '0xa69a4320c09b86e1adbaccdd005dde9270e2b822', 'to': '0x807edd9751b0f245c9990f4a9bc9b74ef5a116e6', 'value': 3283.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xb1ffb75d457b1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:19:57.000Z'}}, {'blockNum': '0x7d7df8', 'uniqueId': '0x948868effff2966feb0d2b502d725b4e3d8263fd1237ff71ae47e083c5cec154:log:3', 'hash': '0x948868effff2966feb0d2b502d725b4e3d8263fd1237ff71ae47e083c5cec154', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xebcada62ac4b67f84fe1bf31fc81d00b98286337', 'value': 2056.806896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6f7fedfe7b65cf0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:20:08.000Z'}}, {'blockNum': '0x7d7e01', 'uniqueId': '0xda9f2fd1a13048154ecc8df99e341f4cdf04146c3bdfadf0a2216539c27d84c1:log:21', 'hash': '0xda9f2fd1a13048154ecc8df99e341f4cdf04146c3bdfadf0a2216539c27d84c1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe987fa5b20167c6d7159324387e314f03fa4a8b0', 'value': 102239.016498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x15a663606b67ef9d2000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:22:34.000Z'}}, {'blockNum': '0x7d7e10', 'uniqueId': '0x4ee2a2d8e754da06710c67c4b27fbf36cd91c0a8f541af76e6a17d169d60a66e:log:17', 'hash': '0x4ee2a2d8e754da06710c67c4b27fbf36cd91c0a8f541af76e6a17d169d60a66e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeba579f59f375780ccb14b1a41236059a2ef6079', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:24:18.000Z'}}, {'blockNum': '0x7d7e26', 'uniqueId': '0x6617a59b6efd224a0adb696fcc43b31f7adc820c49bdb5a2479227ddea6cd12a:log:1', 'hash': '0x6617a59b6efd224a0adb696fcc43b31f7adc820c49bdb5a2479227ddea6cd12a', 'from': '0x859cdc3626614143526f20c4eada64a448198668', 'to': '0x3413b9768ce97d46bb274370cea03eaceedd37d1', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:29:58.000Z'}}, {'blockNum': '0x7d7e27', 'uniqueId': '0xb79dc129ea54b03f29c70991a79742bf539008a51ad552afd2c17a368f076b07:log:125', 'hash': '0xb79dc129ea54b03f29c70991a79742bf539008a51ad552afd2c17a368f076b07', 'from': '0xeba579f59f375780ccb14b1a41236059a2ef6079', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:30:11.000Z'}}, {'blockNum': '0x7d7e29', 'uniqueId': '0xa217b1d26302a087fb4295dead90f532cf366c304c30a39c9ae38547678af315:log:37', 'hash': '0xa217b1d26302a087fb4295dead90f532cf366c304c30a39c9ae38547678af315', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'value': 24990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x054ab5ead54e33b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:30:57.000Z'}}, {'blockNum': '0x7d7e33', 'uniqueId': '0xc96d94b48e1fe00e1579642eade746aaa6e30bfba57f10723b24fe2a5de86b0f:log:29', 'hash': '0xc96d94b48e1fe00e1579642eade746aaa6e30bfba57f10723b24fe2a5de86b0f', 'from': '0x807edd9751b0f245c9990f4a9bc9b74ef5a116e6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3283.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xb1ffb75d457b1e0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:34:02.000Z'}}, {'blockNum': '0x7d7e33', 'uniqueId': '0x5b4ba9de6d70721cf55103e6a43bed036062f9aa2c6741d1ba84fb43e35cb76b:log:36', 'hash': '0x5b4ba9de6d70721cf55103e6a43bed036062f9aa2c6741d1ba84fb43e35cb76b', 'from': '0xbb08e572938fbd418f7e858b4727945f5ebe6575', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77006.252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x104e846cd56415de0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:34:02.000Z'}}, {'blockNum': '0x7d7e5f', 'uniqueId': '0x25fb46bf278b2981f8a484012fdac743d73a4ca219bbe15557da60dd1c604e6f:log:46', 'hash': '0x25fb46bf278b2981f8a484012fdac743d73a4ca219bbe15557da60dd1c604e6f', 'from': '0x3413b9768ce97d46bb274370cea03eaceedd37d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:43:53.000Z'}}, {'blockNum': '0x7d7e5f', 'uniqueId': '0xae516cf0fb7ff9b783c84e34d6224c5f1ed83f74eec82f586b8867e9ed01f8d1:log:50', 'hash': '0xae516cf0fb7ff9b783c84e34d6224c5f1ed83f74eec82f586b8867e9ed01f8d1', 'from': '0x275409f8eb9927f0db19b103ce45f91ffe404e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x152a4ce4323444f80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-26T05:43:53.000Z'}}]}}
Number of returned transfers:  293
Answer is complete
 
symbol             BLZ
group              BPF
date        2019-07-28
hour             17:00
exchange       binance
Name: 785, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-07-28 17:00:00 2019-07-28 05:00:00 2019-07-29 05:00:00
Unix timestamps:  1564282800.0 1564369200.0
Hex Block Numbers:  0x7dae25 0x7dc73c
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7dafc6', 'uniqueId': '0xfcf379dc8ddb119fe401cd038186f028e0ee69c311b721b738e7ffa92562edb4:log:96', 'hash': '0xfcf379dc8ddb119fe401cd038186f028e0ee69c311b721b738e7ffa92562edb4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 8898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01e25c8e506021c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T04:35:43.000Z'}}, {'blockNum': '0x7db177', 'uniqueId': '0x7d9d797973d27e96a0a991fa1b0643f08655a252e67e3cc3126629f8f3b51d4b:log:2', 'hash': '0x7d9d797973d27e96a0a991fa1b0643f08655a252e67e3cc3126629f8f3b51d4b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 24390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x052a2f3ea03de1580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:13:27.000Z'}}, {'blockNum': '0x7db193', 'uniqueId': '0x2f7561f67663c4da4d004b198df0c1c937a9d554fc48a8bf2803994243905112:log:80', 'hash': '0x2f7561f67663c4da4d004b198df0c1c937a9d554fc48a8bf2803994243905112', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x052a2f3ea03de1580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:19:05.000Z'}}, {'blockNum': '0x7db194', 'uniqueId': '0xd0a09d869a1b6f7030adcd7035b9f6b5cab1844474fd55f0f83bd942c0a0be6f:log:10', 'hash': '0xd0a09d869a1b6f7030adcd7035b9f6b5cab1844474fd55f0f83bd942c0a0be6f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 17316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03aab3c60fe668100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:20:14.000Z'}}, {'blockNum': '0x7db1b9', 'uniqueId': '0x072e028462e4d0d1cc912237a5625d8328a2a879dd5d3f3693df69c57238cd87:log:14', 'hash': '0x072e028462e4d0d1cc912237a5625d8328a2a879dd5d3f3693df69c57238cd87', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03aab3c60fe668100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:28:56.000Z'}}, {'blockNum': '0x7db1d9', 'uniqueId': '0x3dc727f78d6f80a8bc2679c0997e1d1933f74422d36d25ace8ca3cef4f896aa9:log:38', 'hash': '0x3dc727f78d6f80a8bc2679c0997e1d1933f74422d36d25ace8ca3cef4f896aa9', 'from': '0x60cc81440e70c44a5e51c90e76e23c4368065a1a', 'to': '0xaa89331dc7a30596cd492c771760af93a6104dec', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:37:56.000Z'}}, {'blockNum': '0x7db2d0', 'uniqueId': '0x1f84b6ad945014e5b45c102624998a391d26a897c6b49a0b570dcb7e932e5b8d:log:1', 'hash': '0x1f84b6ad945014e5b45c102624998a391d26a897c6b49a0b570dcb7e932e5b8d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 27797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05e2e0de212e9d340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:30:42.000Z'}}, {'blockNum': '0x7db2de', 'uniqueId': '0x41a3f18c9158bc590fff35df7c7745de4c03f45e4d07a2b4ae8e16907a17d858:log:10', 'hash': '0x41a3f18c9158bc590fff35df7c7745de4c03f45e4d07a2b4ae8e16907a17d858', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 52039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b050a33218fb8bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:34:47.000Z'}}, {'blockNum': '0x7db2e2', 'uniqueId': '0x5d8f64a6739d330224506b70060e89b0c2b176ec7973fd8d77ee3a3bc99208b8:log:3', 'hash': '0x5d8f64a6739d330224506b70060e89b0c2b176ec7973fd8d77ee3a3bc99208b8', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 31407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a693ae8295155c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:35:29.000Z'}}, {'blockNum': '0x7db2f9', 'uniqueId': '0x98a515287ef1c5e06e9e2f6b44e06f5b7785fb95a558284c7a8757f9bce8017e:log:27', 'hash': '0x98a515287ef1c5e06e9e2f6b44e06f5b7785fb95a558284c7a8757f9bce8017e', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b050a33218fb8bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:39:10.000Z'}}, {'blockNum': '0x7db317', 'uniqueId': '0x49817af857361bb2aae1b0bbe93c7bfce6a3e1871850050a8b84596966012bd8:log:17', 'hash': '0x49817af857361bb2aae1b0bbe93c7bfce6a3e1871850050a8b84596966012bd8', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 28257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05fbd0a66bff64e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:46:49.000Z'}}, {'blockNum': '0x7db31f', 'uniqueId': '0x6441123dc5ef7eed07e6969b68a46b7031a01c5ae7baae5c528a8191d8fa73ae:log:50', 'hash': '0x6441123dc5ef7eed07e6969b68a46b7031a01c5ae7baae5c528a8191d8fa73ae', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a693ae8295155c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:48:53.000Z'}}, {'blockNum': '0x7db349', 'uniqueId': '0xa954dd08b3b744198e5df3189ac32b4e4cbb8da1d2b42ed636eeb2e78049fca6:log:10', 'hash': '0xa954dd08b3b744198e5df3189ac32b4e4cbb8da1d2b42ed636eeb2e78049fca6', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05fbd0a66bff64e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:59:02.000Z'}}, {'blockNum': '0x7db5ff', 'uniqueId': '0xf308a9ef39d5840c9867f3f42aa3a5347febe06eead8aa321fbe79d9529d7d85:log:27', 'hash': '0xf308a9ef39d5840c9867f3f42aa3a5347febe06eead8aa321fbe79d9529d7d85', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7a3a9ec9a7a8fe1b32c25a69fc7ab891504ba29d', 'value': 8017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01b29a39901d12a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T10:34:37.000Z'}}, {'blockNum': '0x7db721', 'uniqueId': '0x55bd6a6075ab44325859a53b8a1007fafb4d6b2bf31a032dd50d444ea1595406:log:53', 'hash': '0x55bd6a6075ab44325859a53b8a1007fafb4d6b2bf31a032dd50d444ea1595406', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 35226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07759af40ca736280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T11:38:07.000Z'}}, {'blockNum': '0x7db75b', 'uniqueId': '0x1c475aaab3f532f899743a48415d516dd85fa981cb48dcd0df29e318f088e50f:log:2', 'hash': '0x1c475aaab3f532f899743a48415d516dd85fa981cb48dcd0df29e318f088e50f', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07759af40ca736280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T11:49:09.000Z'}}, {'blockNum': '0x7db943', 'uniqueId': '0x711c556c94e3fbdc576da7cf5845c836f565445002bad73a391cd4fc922e3136:log:50', 'hash': '0x711c556c94e3fbdc576da7cf5845c836f565445002bad73a391cd4fc922e3136', 'from': '0xef4004bf10f8ef2ee1c82c6cc289b83c3ab719d4', 'to': '0xd5240c700c11074187ec1ff453400d00a415101b', 'value': 1209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x418a3ed67187440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T13:40:08.000Z'}}, {'blockNum': '0x7db96c', 'uniqueId': '0x0ebf35a6b80eff8ec3712c55fc64f61adafbc26dc7c2d165a9afdd4d8391c4a5:log:1', 'hash': '0x0ebf35a6b80eff8ec3712c55fc64f61adafbc26dc7c2d165a9afdd4d8391c4a5', 'from': '0xd5240c700c11074187ec1ff453400d00a415101b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x418a3ed67187440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T13:49:03.000Z'}}, {'blockNum': '0x7dba9c', 'uniqueId': '0x3ea7e6944e15dcf54f3fc08014d142f43757f726131c5d75f56064cb6a82894f:log:0', 'hash': '0x3ea7e6944e15dcf54f3fc08014d142f43757f726131c5d75f56064cb6a82894f', 'from': '0x672bda15798909c738a5aa1cdd6e1470bb0b122c', 'to': '0x93227d218a55ac1fbcebd47b99e760819cdb7fdc', 'value': 6371.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x015964efeee043d40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T14:58:12.000Z'}}, {'blockNum': '0x7dbac3', 'uniqueId': '0x96efcad235566a249901759bca0e64f9e4c6f549d2e29c236e510342713b67da:log:27', 'hash': '0x96efcad235566a249901759bca0e64f9e4c6f549d2e29c236e510342713b67da', 'from': '0x93227d218a55ac1fbcebd47b99e760819cdb7fdc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6371.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x015964efeee043d40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:08:54.000Z'}}, {'blockNum': '0x7dbaf0', 'uniqueId': '0x0ee9368a12f77f9517fe628f9d17f4f5a2d06691d2bd33d5e49ffbd32dd0dafc:log:22', 'hash': '0x0ee9368a12f77f9517fe628f9d17f4f5a2d06691d2bd33d5e49ffbd32dd0dafc', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 46911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ef0ce762dead9c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:19:20.000Z'}}, {'blockNum': '0x7dbaf7', 'uniqueId': '0x8c909a12eae24704283c5cfb41abec8202135aa0811649507b43babf117cac6f:log:1', 'hash': '0x8c909a12eae24704283c5cfb41abec8202135aa0811649507b43babf117cac6f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0367b2d3f48239400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:21:51.000Z'}}, {'blockNum': '0x7dbb02', 'uniqueId': '0x3f074311ef9a7df59a01df97d43b7093026a54376efbb435409877700d67004a:log:3', 'hash': '0x3f074311ef9a7df59a01df97d43b7093026a54376efbb435409877700d67004a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 34128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x073a15246e1b43400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:25:17.000Z'}}, {'blockNum': '0x7dbb09', 'uniqueId': '0x13f10d7662b2517998ca60fd9acc9f7850f39ae391c2720e08bede6df7dbed0e:log:23', 'hash': '0x13f10d7662b2517998ca60fd9acc9f7850f39ae391c2720e08bede6df7dbed0e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 16004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0363941db72c87900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:26:31.000Z'}}, {'blockNum': '0x7dbb09', 'uniqueId': '0x7d8c6bc8af4496ebe49d9f90c7319ecc111a880e4172adbd342bbd3d0ba67bc2:log:24', 'hash': '0x7d8c6bc8af4496ebe49d9f90c7319ecc111a880e4172adbd342bbd3d0ba67bc2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 32921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f8a6a705110ac40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:26:31.000Z'}}, {'blockNum': '0x7dbb09', 'uniqueId': '0x88bd2df519c863192e73f542278910b0b453e5521d9542ec53de92ae4bd02594:log:26', 'hash': '0x88bd2df519c863192e73f542278910b0b453e5521d9542ec53de92ae4bd02594', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 46622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09df6239220eb5b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:26:31.000Z'}}, {'blockNum': '0x7dbb0f', 'uniqueId': '0xde404d630bb97d05e9470c58d33d22c5654251ffd9c2828958c873d579834940:log:24', 'hash': '0xde404d630bb97d05e9470c58d33d22c5654251ffd9c2828958c873d579834940', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0367b2d3f48239400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:29:09.000Z'}}, {'blockNum': '0x7dbb0f', 'uniqueId': '0x685ae0fec3882bea548749cb4b72bd596e4306eea52888c87c82bc61a9dac1b3:log:25', 'hash': '0x685ae0fec3882bea548749cb4b72bd596e4306eea52888c87c82bc61a9dac1b3', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ef0ce762dead9c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:29:09.000Z'}}, {'blockNum': '0x7dbb3c', 'uniqueId': '0xcb3598acb3769e43b4b1310e528b3dc6d586a7d2999f47a4a5877cf1f9d09b4f:log:8', 'hash': '0xcb3598acb3769e43b4b1310e528b3dc6d586a7d2999f47a4a5877cf1f9d09b4f', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f8a6a705110ac40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:06.000Z'}}, {'blockNum': '0x7dbb3c', 'uniqueId': '0xc022ecad14bffcbce6052f00cdacbedd7c3f56662a6e678179e67d70b2a174f7:log:9', 'hash': '0xc022ecad14bffcbce6052f00cdacbedd7c3f56662a6e678179e67d70b2a174f7', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0363941db72c87900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:06.000Z'}}, {'blockNum': '0x7dbb3d', 'uniqueId': '0x969038bad93f2577e0c330b29d5fe179a7f075f600d66c36939e288177e8b07b:log:82', 'hash': '0x969038bad93f2577e0c330b29d5fe179a7f075f600d66c36939e288177e8b07b', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x073a15246e1b43400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:09.000Z'}}, {'blockNum': '0x7dbb3d', 'uniqueId': '0xf5b2b8cffdd421d0a14538832b17fe9bcf047b61f495a5376d4eb3b505113c8b:log:89', 'hash': '0xf5b2b8cffdd421d0a14538832b17fe9bcf047b61f495a5376d4eb3b505113c8b', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09df6239220eb5b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:09.000Z'}}, {'blockNum': '0x7dbb4c', 'uniqueId': '0x95e3d6b78c1efc8959ae21dc1ce1902d03fb3e887a9049d529c46940d021d370:log:4', 'hash': '0x95e3d6b78c1efc8959ae21dc1ce1902d03fb3e887a9049d529c46940d021d370', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 569594.5937329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x789dc8e886937b9e6800', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:42:03.000Z'}}, {'blockNum': '0x7dbb53', 'uniqueId': '0x3a5fa2ac1684b61092cf8ac056718763022c13615df7d4bc9c063f5a46b504ed:log:0', 'hash': '0x3a5fa2ac1684b61092cf8ac056718763022c13615df7d4bc9c063f5a46b504ed', 'from': '0x0788fcb44e325c0fdc598bad557ec7c4442f0cb8', 'to': '0x6d5a1fc7e155b8aac63fb44aff3e427c62f2ea8e', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:43:09.000Z'}}, {'blockNum': '0x7dbb67', 'uniqueId': '0xa4f1c15b33e2360e23b42dc135c1138664c88303b0ba8f73343b8f96b035d9fd:log:6', 'hash': '0xa4f1c15b33e2360e23b42dc135c1138664c88303b0ba8f73343b8f96b035d9fd', 'from': '0x6d5a1fc7e155b8aac63fb44aff3e427c62f2ea8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:48:56.000Z'}}, {'blockNum': '0x7dbbb5', 'uniqueId': '0xad953f7502f61f58cfd19fb0e6d8cc6066d64a69d46964a6ec20e3c7a3d52691:log:2', 'hash': '0xad953f7502f61f58cfd19fb0e6d8cc6066d64a69d46964a6ec20e3c7a3d52691', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 29715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x064ada76f72ebc6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:05:53.000Z'}}, {'blockNum': '0x7dbbf1', 'uniqueId': '0x224ec24bfbd690b99412def62749425712ed200826a22fc1279f6c50ced43ba9:log:22', 'hash': '0x224ec24bfbd690b99412def62749425712ed200826a22fc1279f6c50ced43ba9', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x064ada76f72ebc6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:18:52.000Z'}}, {'blockNum': '0x7dbbf7', 'uniqueId': '0xb611829ae052d6d1c89a723967a0c5e17375cbb3b428be171cbc576764eb4739:log:61', 'hash': '0xb611829ae052d6d1c89a723967a0c5e17375cbb3b428be171cbc576764eb4739', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 46312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ce941be48202a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:20:09.000Z'}}, {'blockNum': '0x7dbbfb', 'uniqueId': '0x52e9d5851340a0909b3f2a64a65d9d17d97e28f8e8bca072e74d897b3136fa44:log:16', 'hash': '0x52e9d5851340a0909b3f2a64a65d9d17d97e28f8e8bca072e74d897b3136fa44', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0372f968667a3a800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:21:13.000Z'}}, {'blockNum': '0x7dbc1d', 'uniqueId': '0xbc1739014e004edd8c0722c4cd395053e0df411fdbd50e8002e8cce5865a1f13:log:12', 'hash': '0xbc1739014e004edd8c0722c4cd395053e0df411fdbd50e8002e8cce5865a1f13', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0372f968667a3a800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:29:04.000Z'}}, {'blockNum': '0x7dbc1e', 'uniqueId': '0x39078f9f1541d47198732174e55e985c80d06b91a9ae6a3fa74ccb8bd27ff736:log:3', 'hash': '0x39078f9f1541d47198732174e55e985c80d06b91a9ae6a3fa74ccb8bd27ff736', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ce941be48202a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:29:14.000Z'}}, {'blockNum': '0x7dbc36', 'uniqueId': '0xf3d6a6a62403e92aa2d7bbf9ff5beb28bd3546fe969445293b9824ee3dfa84f2:log:66', 'hash': '0xf3d6a6a62403e92aa2d7bbf9ff5beb28bd3546fe969445293b9824ee3dfa84f2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 5724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01364c7518f2bff00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:34:04.000Z'}}, {'blockNum': '0x7dbc4e', 'uniqueId': '0x965785cd363a75542e972e5260ea936f01a24c9736037f47e95df25cb9764c05:log:5', 'hash': '0x965785cd363a75542e972e5260ea936f01a24c9736037f47e95df25cb9764c05', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01364c7518f2bff00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:39:01.000Z'}}, {'blockNum': '0x7dbcab', 'uniqueId': '0x561043a1d5f77eedc408c3623559002454451960a79e183d3c09bbe686481ad1:log:2', 'hash': '0x561043a1d5f77eedc408c3623559002454451960a79e183d3c09bbe686481ad1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 4671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfd372597fb399c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:23.000Z'}}, {'blockNum': '0x7dbcac', 'uniqueId': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a:log:7', 'hash': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5378.957487675679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01239807d81a546d4fdf', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:28.000Z'}}, {'blockNum': '0x7dbcac', 'uniqueId': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a:log:9', 'hash': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 5378.957487675679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01239807d81a546d4fdf', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:28.000Z'}}, {'blockNum': '0x7dbcb0', 'uniqueId': '0xb21d62ad51706b8aecad8b6202d94a3863445d0ecd99f2f976705bce0afb8ffe:log:15', 'hash': '0xb21d62ad51706b8aecad8b6202d94a3863445d0ecd99f2f976705bce0afb8ffe', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 63289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d66e7500481c1440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:55.000Z'}}, {'blockNum': '0x7dbcb1', 'uniqueId': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4:log:6', 'hash': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 10678.306404533758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0242df453ad4d5465e8e', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:04.000Z'}}, {'blockNum': '0x7dbcb1', 'uniqueId': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4:log:8', 'hash': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 10678.306404533758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0242df453ad4d5465e8e', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:04.000Z'}}, {'blockNum': '0x7dbcb2', 'uniqueId': '0x6c2e7dcc41e6366e3d4a9a68622e5b9c00e58cb4276e986d6e5c83b8c6795919:log:1', 'hash': '0x6c2e7dcc41e6366e3d4a9a68622e5b9c00e58cb4276e986d6e5c83b8c6795919', 'from': '0x1cf78337f278a12c203e570921446d3438539e7c', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:16.000Z'}}, {'blockNum': '0x7dbcb2', 'uniqueId': '0xa463a3c6a461a7b8250e9357bdc62640a77c413b10c146f2efefed3e3ba3cf28:log:109', 'hash': '0xa463a3c6a461a7b8250e9357bdc62640a77c413b10c146f2efefed3e3ba3cf28', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 35225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07758d1355f38ec40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:16.000Z'}}, {'blockNum': '0x7dbcb5', 'uniqueId': '0x2979909552a542461d8d4584ef2142060727586aeac2b949a96eae3b49091ed5:log:3', 'hash': '0x2979909552a542461d8d4584ef2142060727586aeac2b949a96eae3b49091ed5', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 16057.263892209436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0366774d12ef29b3ae6d', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:11.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0x13b81b0ca8c2cd28546ecf905612555028c592878328354d7d8e7c13c04905f0:log:14', 'hash': '0x13b81b0ca8c2cd28546ecf905612555028c592878328354d7d8e7c13c04905f0', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 46180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c76c3dafdfb3100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0xc5a4f233b022fabe5027b5a670f08060c4135955fcf1638a184c51517d203058:log:15', 'hash': '0xc5a4f233b022fabe5027b5a670f08060c4135955fcf1638a184c51517d203058', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0x79c0b5a4a4798c4dc255cbd6e5e771b9d40b19fd3a7eac77410f588a2395c54f:log:16', 'hash': '0x79c0b5a4a4798c4dc255cbd6e5e771b9d40b19fd3a7eac77410f588a2395c54f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x027ca4bd719f0b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0x0329420e93b0905b7b94a88840ec5b37fd60b9ea02ec0e2e927da82d34084079:log:17', 'hash': '0x0329420e93b0905b7b94a88840ec5b37fd60b9ea02ec0e2e927da82d34084079', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 47131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fafa046542878c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcbb', 'uniqueId': '0x18aba9c295eab3f1e16b6698161329f4d733aabe9c425736c73d5b7e41f34dc1:log:13', 'hash': '0x18aba9c295eab3f1e16b6698161329f4d733aabe9c425736c73d5b7e41f34dc1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 37240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07e2c8d166061ae00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:03:39.000Z'}}, {'blockNum': '0x7dbcbb', 'uniqueId': '0x897a2eb6cdf66340f2ec6c3281eeb2f14e1bca7f40c81cce4ebbfc6cc4151e71:log:14', 'hash': '0x897a2eb6cdf66340f2ec6c3281eeb2f14e1bca7f40c81cce4ebbfc6cc4151e71', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 48932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a5c9be9bb2726100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:03:39.000Z'}}, {'blockNum': '0x7dbcbd', 'uniqueId': '0xc6ce3241b53ad56a9f365fab8914e6cad7550aba2e5473e75b0e69ea2d7689dd:log:9', 'hash': '0xc6ce3241b53ad56a9f365fab8914e6cad7550aba2e5473e75b0e69ea2d7689dd', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 32194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06d13d802ce0adc80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:02.000Z'}}, {'blockNum': '0x7dbcbd', 'uniqueId': '0x5d631abef6bd5055a48858ce4d6d8f46226b3d48d032a2fff906ba2320e4e0cf:log:10', 'hash': '0x5d631abef6bd5055a48858ce4d6d8f46226b3d48d032a2fff906ba2320e4e0cf', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 26765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05aaeefd9cf3d2140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:02.000Z'}}, {'blockNum': '0x7dbcbd', 'uniqueId': '0xfca3eef869297bae54b32a66e1c7ab9e356627ee085bcf722d252e1c8a5bc7f6:log:11', 'hash': '0xfca3eef869297bae54b32a66e1c7ab9e356627ee085bcf722d252e1c8a5bc7f6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 24954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0548c251240aa9a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:02.000Z'}}, {'blockNum': '0x7dbcbf', 'uniqueId': '0x97e0f712c2cd46184f745c555e7461478f802b7c511510caedb2f451d415bb34:log:1', 'hash': '0x97e0f712c2cd46184f745c555e7461478f802b7c511510caedb2f451d415bb34', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 185197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x27378cab2c3db1940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:23.000Z'}}, {'blockNum': '0x7dbcc0', 'uniqueId': '0x5a92cced75a4706b1d72980274f63a2d81eb21d2d30c954ced6c60607e680167:log:1', 'hash': '0x5a92cced75a4706b1d72980274f63a2d81eb21d2d30c954ced6c60607e680167', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:30.000Z'}}, {'blockNum': '0x7dbcc1', 'uniqueId': '0x48a46119532af1cb3caa8199b6eb6af81901eabe3adbde61d4e7b4b27f9f19ae:log:5', 'hash': '0x48a46119532af1cb3caa8199b6eb6af81901eabe3adbde61d4e7b4b27f9f19ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 6279.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01546dbb5c31920c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:32.000Z'}}, {'blockNum': '0x7dbcc1', 'uniqueId': '0x806dd103cd1f8061ab9ac9233f4c376eb97d77a4e26540f82ac5f2d35bf28a4f:log:19', 'hash': '0x806dd103cd1f8061ab9ac9233f4c376eb97d77a4e26540f82ac5f2d35bf28a4f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 80930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1123395e067bab480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:32.000Z'}}, {'blockNum': '0x7dbcc1', 'uniqueId': '0xfb44269b9e6282489d0cb7c81fbf210e4e0ee779ded7ae41600146586d88f247:log:21', 'hash': '0xfb44269b9e6282489d0cb7c81fbf210e4e0ee779ded7ae41600146586d88f247', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 71587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f28bd321fd190ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:32.000Z'}}, {'blockNum': '0x7dbcc5', 'uniqueId': '0x7c2772cfb18c40385d32400e39410771ec4f6b0110b005f9bfc2d0314fcb5dec:log:116', 'hash': '0x7c2772cfb18c40385d32400e39410771ec4f6b0110b005f9bfc2d0314fcb5dec', 'from': '0xd1560b3984b7481cd9a8f40435a53c860187174d', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 8808.05749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01dd7c5a5410fcc32000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:05:32.000Z'}}, {'blockNum': '0x7dbcc6', 'uniqueId': '0x8932db95b907b988ebaf433cf5e78f7c8e536c1ec1754e461c40273c995e40d1:log:3', 'hash': '0x8932db95b907b988ebaf433cf5e78f7c8e536c1ec1754e461c40273c995e40d1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 49983.2924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a9599869ef791ef0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:05:49.000Z'}}, {'blockNum': '0x7dbcca', 'uniqueId': '0xf20a7e3ce134f864da8584efec1c172d114fbbb4d8067024cab84fa29f0aae7f:log:51', 'hash': '0xf20a7e3ce134f864da8584efec1c172d114fbbb4d8067024cab84fa29f0aae7f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 37328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07e78e1033c7a5400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:06:46.000Z'}}, {'blockNum': '0x7dbcce', 'uniqueId': '0x1829879185f0a6ad63103791c72a1004fc65dd1aa3f7ab4f7abb643da8a85939:log:5', 'hash': '0x1829879185f0a6ad63103791c72a1004fc65dd1aa3f7ab4f7abb643da8a85939', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 37180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07df882693eadf700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:07:51.000Z'}}, {'blockNum': '0x7dbcce', 'uniqueId': '0x8cbc3da29d9609f31dd5c4542a7806bfbea3902c143731ef51bd0014adc6a00a:log:61', 'hash': '0x8cbc3da29d9609f31dd5c4542a7806bfbea3902c143731ef51bd0014adc6a00a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 20746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0464a495fafb2de80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:07:51.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x73d506298571d3ebbbb2c87a5c3677a058a7733a1413e42dc70edd9666f6dc54:log:40', 'hash': '0x73d506298571d3ebbbb2c87a5c3677a058a7733a1413e42dc70edd9666f6dc54', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 107637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x16cb03723ebb90b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xc4b0a47cbfca6fae7a9420b5ad40b02db65a56ee786d5bddc2929c130779d174:log:41', 'hash': '0xc4b0a47cbfca6fae7a9420b5ad40b02db65a56ee786d5bddc2929c130779d174', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x027ca4bd719f0b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xa9b5602f84c0c0f764839504768d5b94b9f8b286bb9d8b61ad5814eb5f0f9140:log:43', 'hash': '0xa9b5602f84c0c0f764839504768d5b94b9f8b286bb9d8b61ad5814eb5f0f9140', 'from': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x4d2e27e7afd372a6a705a6775bc1e2a85ff82fa163d98db3d62edbde2af2e2de:log:64', 'hash': '0x4d2e27e7afd372a6a705a6775bc1e2a85ff82fa163d98db3d62edbde2af2e2de', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c76c3dafdfb3100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x8d96c5f515272bd8675eeba76e6f9d2bfc9249cef2a59bf0b555de86387b812c:log:67', 'hash': '0x8d96c5f515272bd8675eeba76e6f9d2bfc9249cef2a59bf0b555de86387b812c', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a5c9be9bb2726100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x045267a20fc4a164a22965c6fe636fd20625ec212b1bf759b6667d1a9ceed274:log:68', 'hash': '0x045267a20fc4a164a22965c6fe636fd20625ec212b1bf759b6667d1a9ceed274', 'from': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16057.263892209436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0366774d12ef29b3ae6d', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xb15599c3c3668d9620be0a6e5d2f09ed168c6a74b99f152a4f1dfcb5c5602f17:log:69', 'hash': '0xb15599c3c3668d9620be0a6e5d2f09ed168c6a74b99f152a4f1dfcb5c5602f17', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 185197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x27378cab2c3db1940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x45f9f7b61cf62e031d8209ab92c5105fab5c0a5b4c8c9d82631aae1b740fabe9:log:70', 'hash': '0x45f9f7b61cf62e031d8209ab92c5105fab5c0a5b4c8c9d82631aae1b740fabe9', 'from': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xb0a3e32ec78151093b8770b15b7c46b48a8c7dd6249548b72a4022a93ea6e82e:log:71', 'hash': '0xb0a3e32ec78151093b8770b15b7c46b48a8c7dd6249548b72a4022a93ea6e82e', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06d13d802ce0adc80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xa78c729803c35a39a7e10e38df296245a97a80821b896816e254d2620b505840:log:72', 'hash': '0xa78c729803c35a39a7e10e38df296245a97a80821b896816e254d2620b505840', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x154e7560384966840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xb3480dd4a11e1286b5833a6de868ddb941bcf6f5aad4a71b95702735221836cf:log:73', 'hash': '0xb3480dd4a11e1286b5833a6de868ddb941bcf6f5aad4a71b95702735221836cf', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07758d1355f38ec40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x143320ffa92c9f97b6e28d85630015df98cd54f596c1cd493147141dea54a4a6:log:76', 'hash': '0x143320ffa92c9f97b6e28d85630015df98cd54f596c1cd493147141dea54a4a6', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fafa046542878c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x53d724be9d15952356fb6488b0b10ac5ef97b7008509d70b96d7b27010c8b01c:log:78', 'hash': '0x53d724be9d15952356fb6488b0b10ac5ef97b7008509d70b96d7b27010c8b01c', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05aaeefd9cf3d2140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd6', 'uniqueId': '0x1724c018727776c779caa0db4d07f99530803826a577b51c94590a683f083e09:log:27', 'hash': '0x1724c018727776c779caa0db4d07f99530803826a577b51c94590a683f083e09', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08dcbf4c2be6190c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:32.000Z'}}, {'blockNum': '0x7dbcd6', 'uniqueId': '0xca21a267d1c371e4a2162f2b78def32444e476d9aec2a322209417ffde454a96:log:28', 'hash': '0xca21a267d1c371e4a2162f2b78def32444e476d9aec2a322209417ffde454a96', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0548c251240aa9a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:32.000Z'}}, {'blockNum': '0x7dbce6', 'uniqueId': '0x8c555649de5e8d1d5e8f39ec9736b4f9a0221d51627874b779b5c964253353c7:log:16', 'hash': '0x8c555649de5e8d1d5e8f39ec9736b4f9a0221d51627874b779b5c964253353c7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 4299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe90c9c1aebfc4c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:12:13.000Z'}}, {'blockNum': '0x7dbce8', 'uniqueId': '0xfb05ca291fe9df564e143dbd6fd9b2688ed1da7fb9badc36f99239afe86bfbf3:log:16', 'hash': '0xfb05ca291fe9df564e143dbd6fd9b2688ed1da7fb9badc36f99239afe86bfbf3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb07c49b35d8476d1f02ec9aae6ee031c08219a58', 'value': 3867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xd1a167cbc1838c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:12:26.000Z'}}, {'blockNum': '0x7dbcf6', 'uniqueId': '0x3f66fb5dd8e38973e2c2a2f9770b5182aa643e229c0aa53d68c07f9e94e6f1f4:log:0', 'hash': '0x3f66fb5dd8e38973e2c2a2f9770b5182aa643e229c0aa53d68c07f9e94e6f1f4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 16058.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03668c9e6cd4c2f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:15:44.000Z'}}, {'blockNum': '0x7dbcfa', 'uniqueId': '0xdd9731a78f29adfcf2f5a36448f1c5d1728531108e368440e1553411cd099fa0:log:0', 'hash': '0xdd9731a78f29adfcf2f5a36448f1c5d1728531108e368440e1553411cd099fa0', 'from': '0x1cf78337f278a12c203e570921446d3438539e7c', 'to': '0x76e377e197da54a1d39f1acbc447fb3bd07bb971', 'value': 54588.62799579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f416563396ed40c00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:16:57.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0x4e02db4c6ce0b5022bfc47af3b27c22c7e74840ae4edef4105165cc7d86a0429:log:10', 'hash': '0x4e02db4c6ce0b5022bfc47af3b27c22c7e74840ae4edef4105165cc7d86a0429', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1123395e067bab480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0x4aabefbc461ca9c361baf739b3ef976e735579fd8e4dfb8eb9050ae85c08ea61:log:11', 'hash': '0x4aabefbc461ca9c361baf739b3ef976e735579fd8e4dfb8eb9050ae85c08ea61', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 71587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f28bd321fd190ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0xc57b9e0b63205ce057aa664fd2ff102c7366a65211114da1a8632d9b834f69ec:log:13', 'hash': '0xc57b9e0b63205ce057aa664fd2ff102c7366a65211114da1a8632d9b834f69ec', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0xce0fa320955037d9caafef6dde2656464d08193e69a737ab19205df23bfdae3a:log:14', 'hash': '0xce0fa320955037d9caafef6dde2656464d08193e69a737ab19205df23bfdae3a', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8808.05749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01dd7c5a5410fcc32000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0x0a2d98af5b4d286b81e663db3d133a0cc06986a0ae13ab44924b8e76b5efce31:log:15', 'hash': '0x0a2d98af5b4d286b81e663db3d133a0cc06986a0ae13ab44924b8e76b5efce31', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49983.2924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a9599869ef791ef0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd0b', 'uniqueId': '0x745d92e2ef0028fea0a85b424950824baa720a0677bb4fe94ff0d519eee00f8d:log:1', 'hash': '0x745d92e2ef0028fea0a85b424950824baa720a0677bb4fe94ff0d519eee00f8d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 1093809.8137822095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe79f8c7f6e271a1dce6d', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:21:06.000Z'}}, {'blockNum': '0x7dbd1c', 'uniqueId': '0xff2b522ec061d2300da832eae7ac50a0b4227b25271361f34576b63bb666dd92:log:63', 'hash': '0xff2b522ec061d2300da832eae7ac50a0b4227b25271361f34576b63bb666dd92', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 3090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa7825d447a75080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:25:04.000Z'}}, {'blockNum': '0x7dbd2f', 'uniqueId': '0x4be8e9de017765b8ff5a5a2b42b73329d4b8b1812101b6ec16933bb7b57b8f41:log:17', 'hash': '0x4be8e9de017765b8ff5a5a2b42b73329d4b8b1812101b6ec16933bb7b57b8f41', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 54128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b7648e60190a7c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:28:50.000Z'}}, {'blockNum': '0x7dbd31', 'uniqueId': '0x57d93a0e9876c000ff2e538199b0d5acd521b38037eda7f6c1bc46ac0ae689e1:log:4', 'hash': '0x57d93a0e9876c000ff2e538199b0d5acd521b38037eda7f6c1bc46ac0ae689e1', 'from': '0x76e377e197da54a1d39f1acbc447fb3bd07bb971', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54588.62799579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f416563396ed40c00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:29:14.000Z'}}, {'blockNum': '0x7dbd59', 'uniqueId': '0x959b3c5a495b1c3457dda04918b433dca3e8dde1d0101d6497267cb68591a42d:log:44', 'hash': '0x959b3c5a495b1c3457dda04918b433dca3e8dde1d0101d6497267cb68591a42d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 17542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03b6f4275a802e580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:36:28.000Z'}}, {'blockNum': '0x7dbd59', 'uniqueId': '0xee2e5c6247211ed54296341e58912e74f36064055a4033f9e3833c2e19c45162:log:45', 'hash': '0xee2e5c6247211ed54296341e58912e74f36064055a4033f9e3833c2e19c45162', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 23197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04e9830b3506d0540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:36:28.000Z'}}, {'blockNum': '0x7dbd5b', 'uniqueId': '0xa0ed6f6c71b78c8d331020641c6d252b864b8e4c18f95ee54730a4d4a194e652:log:66', 'hash': '0xa0ed6f6c71b78c8d331020641c6d252b864b8e4c18f95ee54730a4d4a194e652', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 10920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x024ff9715f5c41a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:37:13.000Z'}}, {'blockNum': '0x7dbd8e', 'uniqueId': '0xa0e93620f94859ca7344312b940e90799ff7d0cbb3ec741f3468fed44537d3f3:log:46', 'hash': '0xa0e93620f94859ca7344312b940e90799ff7d0cbb3ec741f3468fed44537d3f3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 5986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0144807014d010480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:48:11.000Z'}}, {'blockNum': '0x7dbd90', 'uniqueId': '0xc0f650fdeae350bbe747a82b8c6ba28a7afd9a471452967138f9697107f7e66d:log:0', 'hash': '0xc0f650fdeae350bbe747a82b8c6ba28a7afd9a471452967138f9697107f7e66d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 16333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x037569e8840ea7140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:48:51.000Z'}}, {'blockNum': '0x7dbd9c', 'uniqueId': '0x98aa27cf5706188a57261e35d0e290201d02759a8678bbe1f22998e65fdf37a7:log:2', 'hash': '0x98aa27cf5706188a57261e35d0e290201d02759a8678bbe1f22998e65fdf37a7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 42877.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0914690293ade4240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:50:18.000Z'}}, {'blockNum': '0x7dbdad', 'uniqueId': '0xda6d3648be68d339c7c00f79a3fe0803ddb5eaa54bf28181fe8b3e862a1c2ba2:log:5', 'hash': '0xda6d3648be68d339c7c00f79a3fe0803ddb5eaa54bf28181fe8b3e862a1c2ba2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 86734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x125ddc0c3792ba780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:54:17.000Z'}}, {'blockNum': '0x7dbdbf', 'uniqueId': '0x31b71b2d9854bf816e74a3346953795116728e13e47dc7f61071c3601298c5a8:log:0', 'hash': '0x31b71b2d9854bf816e74a3346953795116728e13e47dc7f61071c3601298c5a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 18463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03e8e198a6d5651c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:59:31.000Z'}}, {'blockNum': '0x7dbde6', 'uniqueId': '0x99f91712d73f8bb3ee414dd063ff12bd1bd36c6aeb4b75a5faa8b6d9c1fe2c20:log:6', 'hash': '0x99f91712d73f8bb3ee414dd063ff12bd1bd36c6aeb4b75a5faa8b6d9c1fe2c20', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 17822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03c621ef2eff43b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:09:02.000Z'}}, {'blockNum': '0x7dbe07', 'uniqueId': '0xad81eb821de7fda3969b39370294297e9eecdb3547565d18b10cf07cb0581aaa:log:2', 'hash': '0xad81eb821de7fda3969b39370294297e9eecdb3547565d18b10cf07cb0581aaa', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 57767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c3b8e2b1551163c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:16:12.000Z'}}, {'blockNum': '0x7dbe37', 'uniqueId': '0x9a38c25a58da9adc327f4002eaf1ed7053d5e9020ae9b02707609ca122da6876:log:3', 'hash': '0x9a38c25a58da9adc327f4002eaf1ed7053d5e9020ae9b02707609ca122da6876', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 106692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1697c8efd18ea8900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:27:12.000Z'}}, {'blockNum': '0x7dbe40', 'uniqueId': '0xeed75d84f7c183236d6767f01142985e3290c1c75ac2786766783c887ba376b2:log:82', 'hash': '0xeed75d84f7c183236d6767f01142985e3290c1c75ac2786766783c887ba376b2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 63844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d84fd7c1bfda7100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:28:47.000Z'}}, {'blockNum': '0x7dbe5a', 'uniqueId': '0x509507a40639c30340a1b2e2301e8ce5c17f23c6d2b3f91a20ad2ac1374befc0:log:29', 'hash': '0x509507a40639c30340a1b2e2301e8ce5c17f23c6d2b3f91a20ad2ac1374befc0', 'from': '0xab312aace174297b048fd7b8395932ea595eb20b', 'to': '0x848086b7c0f312ee5bebc3a8ab67c9b226c4921d', 'value': 1778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6062b4ebc094880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:34:41.000Z'}}, {'blockNum': '0x7dbe5d', 'uniqueId': '0x340fe405248732d9e1307310d2df0fa7a8387ef2567474b29143119071f1b670:log:105', 'hash': '0x340fe405248732d9e1307310d2df0fa7a8387ef2567474b29143119071f1b670', 'from': '0x2fbc87c6f0afd69ebbad520b9e5e28b181cacb6e', 'to': '0x76d25a4bfc5f81b7e6f1a46e11f3873a180bc1ec', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:35:05.000Z'}}, {'blockNum': '0x7dbe9d', 'uniqueId': '0xfef33bdf6a189b3f6060eff656e6f7715daff8836ab09f8b9db0d464d86d7606:log:8', 'hash': '0xfef33bdf6a189b3f6060eff656e6f7715daff8836ab09f8b9db0d464d86d7606', 'from': '0x76d25a4bfc5f81b7e6f1a46e11f3873a180bc1ec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:49:15.000Z'}}, {'blockNum': '0x7dbe9d', 'uniqueId': '0xcb947366197b4f8b69f97c43df830b7365eff77b93998f687829c09718e64cdd:log:10', 'hash': '0xcb947366197b4f8b69f97c43df830b7365eff77b93998f687829c09718e64cdd', 'from': '0x848086b7c0f312ee5bebc3a8ab67c9b226c4921d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6062b4ebc094880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:49:15.000Z'}}, {'blockNum': '0x7dbe9e', 'uniqueId': '0xa25f2f90d0e160fa0ce547d5b6cf7c07e5aea6d1bd6ea85d8cc4c11db351317c:log:6', 'hash': '0xa25f2f90d0e160fa0ce547d5b6cf7c07e5aea6d1bd6ea85d8cc4c11db351317c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 17288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03a92f32144019200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:49:27.000Z'}}, {'blockNum': '0x7dbeb6', 'uniqueId': '0x8fded7d7eb5355e0ab6c503b66d9f9e34d9a1e50369b55f43ddf733a2c14bc57:log:6', 'hash': '0x8fded7d7eb5355e0ab6c503b66d9f9e34d9a1e50369b55f43ddf733a2c14bc57', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 37935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x080875e167c18b5c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:54:30.000Z'}}, {'blockNum': '0x7dbf2d', 'uniqueId': '0x376445d7d4e2d38b20e2eb8a612fd49c33f9d415923dc7ab6a136b4dad85de03:log:4', 'hash': '0x376445d7d4e2d38b20e2eb8a612fd49c33f9d415923dc7ab6a136b4dad85de03', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 12529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02a732cdae8355240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:26:26.000Z'}}, {'blockNum': '0x7dbf32', 'uniqueId': '0xea29f56f949f74572d67a48d238540ea67033116e68f786560d6fac43aaaba33:log:0', 'hash': '0xea29f56f949f74572d67a48d238540ea67033116e68f786560d6fac43aaaba33', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 59283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c8dbce505345a6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:28:18.000Z'}}, {'blockNum': '0x7dbf6a', 'uniqueId': '0xabe3a123a57caf634de484cf8ff11e2da8d6c1989801fc5eed06be7762c20cac:log:15', 'hash': '0xabe3a123a57caf634de484cf8ff11e2da8d6c1989801fc5eed06be7762c20cac', 'from': '0xee37122340b4fc9c37896f32c5a2e5a63a843036', 'to': '0x3a3b4fbc13358232aac62f36d167f7ee2ba73d12', 'value': 427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1725d0bda833cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:40:59.000Z'}}, {'blockNum': '0x7dbf91', 'uniqueId': '0x442ff35805406d712e973fcd9dbb67b7e9a8200b2aad167368fa6ac83f50a555:log:9', 'hash': '0x442ff35805406d712e973fcd9dbb67b7e9a8200b2aad167368fa6ac83f50a555', 'from': '0x3a3b4fbc13358232aac62f36d167f7ee2ba73d12', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1725d0bda833cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:49:15.000Z'}}, {'blockNum': '0x7dbf91', 'uniqueId': '0xe8ef1389b01ab0e11c487617d3e147846cd59e95c57f5207781790c9bab186f5:log:10', 'hash': '0xe8ef1389b01ab0e11c487617d3e147846cd59e95c57f5207781790c9bab186f5', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02a732cdae8355240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:49:15.000Z'}}, {'blockNum': '0x7dbfb3', 'uniqueId': '0x5fdb708cd4df3a145cb235f0f4363ebe3f27e4e945b65d4d7a3c40d1e61568bf:log:2', 'hash': '0x5fdb708cd4df3a145cb235f0f4363ebe3f27e4e945b65d4d7a3c40d1e61568bf', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0384368b59a428b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:56:57.000Z'}}, {'blockNum': '0x7dbfe1', 'uniqueId': '0x14d6a9e9f5bd95ff42620ab9cbd1bfc8fdb3812d1facfa2635fee97acf623f29:log:4', 'hash': '0x14d6a9e9f5bd95ff42620ab9cbd1bfc8fdb3812d1facfa2635fee97acf623f29', 'from': '0x1cb5b2bb4030220ad5417229a7a1e3c373cdd2f6', 'to': '0x84443f61efc60d10da9f9a2398980cd5748394bb', 'value': 57681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c36e4adb4f6daa40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:06:59.000Z'}}, {'blockNum': '0x7dbfe9', 'uniqueId': '0xab24a96ea16be9c5641293ba0b6f7f1e98b55fcfb75f3de2ecf1ba1fa6d4f9ca:log:6', 'hash': '0xab24a96ea16be9c5641293ba0b6f7f1e98b55fcfb75f3de2ecf1ba1fa6d4f9ca', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0384368b59a428b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:08:58.000Z'}}, {'blockNum': '0x7dc035', 'uniqueId': '0x2d33f04f5bd202ab81a742f886bcd119eb26a12e8c5329cb2a0205a038dd50e6:log:0', 'hash': '0x2d33f04f5bd202ab81a742f886bcd119eb26a12e8c5329cb2a0205a038dd50e6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x69bf9617593249db92f7c6ddb1721095fc171947', 'value': 5755.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0137fac089abe1b30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:23:08.000Z'}}, {'blockNum': '0x7dc049', 'uniqueId': '0xebf38eb105dbbbcd6939eeecf59997eb128020b301ab55ab2003ba16d0689b20:log:18', 'hash': '0xebf38eb105dbbbcd6939eeecf59997eb128020b301ab55ab2003ba16d0689b20', 'from': '0x69bf9617593249db92f7c6ddb1721095fc171947', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5755.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0137fac089abe1b30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:27:59.000Z'}}, {'blockNum': '0x7dc107', 'uniqueId': '0x61804d189f585ed9635859c0e9f7797454fa07e7ecfb285a0a9ec8de5da2ad26:log:18', 'hash': '0x61804d189f585ed9635859c0e9f7797454fa07e7ecfb285a0a9ec8de5da2ad26', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 14908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03282a0f8607e3700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:11:13.000Z'}}, {'blockNum': '0x7dc122', 'uniqueId': '0x3f2ea852e3cdc013507b2b9b20e2cf13d9a0122c0053ecadf9a38b857ab3ff33:log:0', 'hash': '0x3f2ea852e3cdc013507b2b9b20e2cf13d9a0122c0053ecadf9a38b857ab3ff33', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 59966.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb2ce86a246de880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:16:01.000Z'}}, {'blockNum': '0x7dc122', 'uniqueId': '0x741cbd07a2ee90a6a2d40ed2287218c26e29e0d4b1fbd83cb691eb804443de0e:log:1', 'hash': '0x741cbd07a2ee90a6a2d40ed2287218c26e29e0d4b1fbd83cb691eb804443de0e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 63825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d83f5ce8ca83aa40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:16:01.000Z'}}, {'blockNum': '0x7dc129', 'uniqueId': '0xac165297d22699ec1151223cb22fecc267cddcc311f51aafc0981e978042d513:log:3', 'hash': '0xac165297d22699ec1151223cb22fecc267cddcc311f51aafc0981e978042d513', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 48918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a5bd99fbd53fe980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:17:08.000Z'}}, {'blockNum': '0x7dc137', 'uniqueId': '0x48e6c6d0ae1687408f3021a801052c2c237816aa2bd4d33ce681c65c6b54d40a:log:4', 'hash': '0x48e6c6d0ae1687408f3021a801052c2c237816aa2bd4d33ce681c65c6b54d40a', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03282a0f8607e3700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:19:13.000Z'}}, {'blockNum': '0x7dc14a', 'uniqueId': '0xafd2b94407691f2082f7fa35e93cd81b330a7b09315fd80cd79d8593dc60e850:log:3', 'hash': '0xafd2b94407691f2082f7fa35e93cd81b330a7b09315fd80cd79d8593dc60e850', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 81113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x112d2500a0e853c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:23:12.000Z'}}, {'blockNum': '0x7dc14a', 'uniqueId': '0x604edd00dda0bdb65aa77c1bb7abfc3a9538db5a56ee1579a99e178538eac09c:log:4', 'hash': '0x604edd00dda0bdb65aa77c1bb7abfc3a9538db5a56ee1579a99e178538eac09c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 78034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10863b4b362610080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:23:12.000Z'}}, {'blockNum': '0x7dc18e', 'uniqueId': '0xfbee578afbdb4c6f1d0468c8c3537c3664344ea7615544bab14fc1b62427a439:log:5', 'hash': '0xfbee578afbdb4c6f1d0468c8c3537c3664344ea7615544bab14fc1b62427a439', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 12643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ad60df0a83dfac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:35:59.000Z'}}, {'blockNum': '0x7dc1b6', 'uniqueId': '0xa6cc0db39d1ce3146c82369b9e2c6eefed7148282287f844fd8f6c166304ae31:log:1', 'hash': '0xa6cc0db39d1ce3146c82369b9e2c6eefed7148282287f844fd8f6c166304ae31', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 215328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2d98f44b075c70800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:42:15.000Z'}}, {'blockNum': '0x7dc1d9', 'uniqueId': '0xb8dfb0754c24fe34dae6ce5007918d2e7d6662df9d4b209c6b2223fb12b01bd5:log:6', 'hash': '0xb8dfb0754c24fe34dae6ce5007918d2e7d6662df9d4b209c6b2223fb12b01bd5', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ad60df0a83dfac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:49:37.000Z'}}, {'blockNum': '0x7dc20b', 'uniqueId': '0xcbf9d99a0529382df237846143224c036a626da979e4ce94602f56ab0647ea92:log:10', 'hash': '0xcbf9d99a0529382df237846143224c036a626da979e4ce94602f56ab0647ea92', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 228567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3066a4536c2204fc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:59:16.000Z'}}, {'blockNum': '0x7dc2a2', 'uniqueId': '0xbecba322ec38133ed5d88cff93d9607922a74bf0b36f4ce661d66c629dee725e:log:0', 'hash': '0xbecba322ec38133ed5d88cff93d9607922a74bf0b36f4ce661d66c629dee725e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 35062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076cb6ff018ffa180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:33:31.000Z'}}, {'blockNum': '0x7dc2ae', 'uniqueId': '0x73f1631702130cf3abce20b61f212ccc79bbdd7d3bd386c72756dac9ea3265c1:log:0', 'hash': '0x73f1631702130cf3abce20b61f212ccc79bbdd7d3bd386c72756dac9ea3265c1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 73287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f84e56f60d524bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:35:55.000Z'}}, {'blockNum': '0x7dc2ae', 'uniqueId': '0x412ea0027c8ab3bc311f106a317211ca372ffd074411f6abf011db210dee8419:log:1', 'hash': '0x412ea0027c8ab3bc311f106a317211ca372ffd074411f6abf011db210dee8419', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 24433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x052c83fd506aff240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:35:55.000Z'}}, {'blockNum': '0x7dc2ae', 'uniqueId': '0x1cd9d2035469fe35ac5c018a78e4f99aa5403a32c80040100da288936358d46b:log:2', 'hash': '0x1cd9d2035469fe35ac5c018a78e4f99aa5403a32c80040100da288936358d46b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 41010.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08af332e23781dd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:35:55.000Z'}}, {'blockNum': '0x7dc2b5', 'uniqueId': '0x03a85e6616f25fae2a1f41ee8fb4c1826dd0a8ca4e4dfdd10b49b8d436013ae9:log:1', 'hash': '0x03a85e6616f25fae2a1f41ee8fb4c1826dd0a8ca4e4dfdd10b49b8d436013ae9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 7035.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x017d6956e6bbe55c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:36:58.000Z'}}, {'blockNum': '0x7dc2b5', 'uniqueId': '0x562a1db612ad6fcfc0eccd489ab4c2f5e7d0c819989ebd72c263877bd01498cd:log:2', 'hash': '0x562a1db612ad6fcfc0eccd489ab4c2f5e7d0c819989ebd72c263877bd01498cd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 86788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1260c972c17809900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:36:58.000Z'}}, {'blockNum': '0x7dc2b9', 'uniqueId': '0x296b4ef8b6365225a57816d4151773a5ab72b467f0dae30b495b958f4a634595:log:13', 'hash': '0x296b4ef8b6365225a57816d4151773a5ab72b467f0dae30b495b958f4a634595', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 40979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08ad79ddd7f3ec6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:37:47.000Z'}}, {'blockNum': '0x7dc2d4', 'uniqueId': '0xee51c99876d8666c18a17d1abde162fc1e15bfd8bad919bb7c53f2d3203feddb:log:1', 'hash': '0xee51c99876d8666c18a17d1abde162fc1e15bfd8bad919bb7c53f2d3203feddb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 64809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0db94d8ccf33a3040000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:43:22.000Z'}}, {'blockNum': '0x7dc342', 'uniqueId': '0x6febacbb2f7526a697e42113126bc016bd14b97a381fcca4d2a5ec9b0f67d504:log:11', 'hash': '0x6febacbb2f7526a697e42113126bc016bd14b97a381fcca4d2a5ec9b0f67d504', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021daadb141d77200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:07:30.000Z'}}, {'blockNum': '0x7dc374', 'uniqueId': '0xd8ca2eb2f3664bb2f35ab125ddc920e1cdb90b452c5bbba9bb022429824e341f:log:12', 'hash': '0xd8ca2eb2f3664bb2f35ab125ddc920e1cdb90b452c5bbba9bb022429824e341f', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021daadb141d77200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:18:57.000Z'}}, {'blockNum': '0x7dc3b6', 'uniqueId': '0xbfdecffde8e047ae40749d72195c420748685966d21022d9ff564d633763dabb:log:12', 'hash': '0xbfdecffde8e047ae40749d72195c420748685966d21022d9ff564d633763dabb', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 13981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02f5e959f17cc0540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:34:09.000Z'}}, {'blockNum': '0x7dc3bb', 'uniqueId': '0x9fab65740a1f2b83b63c54db3c11f1ecb1d0ec18ffb285e3d28a8e595505845b:log:77', 'hash': '0x9fab65740a1f2b83b63c54db3c11f1ecb1d0ec18ffb285e3d28a8e595505845b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 28027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05ef58c24697010c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:35:37.000Z'}}, {'blockNum': '0x7dc3d2', 'uniqueId': '0xe92ddd97164356bdd16ef038d669981ec09f99742403bc469df0f833597c773d:log:26', 'hash': '0xe92ddd97164356bdd16ef038d669981ec09f99742403bc469df0f833597c773d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 11432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x026bbadec6ab09a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:41:08.000Z'}}, {'blockNum': '0x7dc3fe', 'uniqueId': '0xd581c712817d37a82ca062c7f295185b3629bc4848221d038525b93285b4545e:log:38', 'hash': '0xd581c712817d37a82ca062c7f295185b3629bc4848221d038525b93285b4545e', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e5421c3813c1600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:48:16.000Z'}}, {'blockNum': '0x7dc4b8', 'uniqueId': '0x785f5a6354dcc624cbe5effed7cb8ace66827dc248aebf3282fc9ff24f1a2dc3:log:1', 'hash': '0x785f5a6354dcc624cbe5effed7cb8ace66827dc248aebf3282fc9ff24f1a2dc3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 37306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07e65cc0805742a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:26:43.000Z'}}, {'blockNum': '0x7dc50b', 'uniqueId': '0x1de1c58387fbac429e4077189b93b3582ad69ebc89bfb47421a93a12ce01c3c7:log:4', 'hash': '0x1de1c58387fbac429e4077189b93b3582ad69ebc89bfb47421a93a12ce01c3c7', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 15065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0330acdf92358bc40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:46:57.000Z'}}, {'blockNum': '0x7dc52b', 'uniqueId': '0x0b672dd2c02702f0ef047983578dadcac46ac89cad3705a12d8e451f80d5bb9b:log:8', 'hash': '0x0b672dd2c02702f0ef047983578dadcac46ac89cad3705a12d8e451f80d5bb9b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 23880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x050e8992a65668200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:55:13.000Z'}}, {'blockNum': '0x7dc538', 'uniqueId': '0x0fb5ed1c8af65cd22c354aa964dcb3025b6fe70026826a2b0ba18f83dfaf8ee4:log:17', 'hash': '0x0fb5ed1c8af65cd22c354aa964dcb3025b6fe70026826a2b0ba18f83dfaf8ee4', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x083f3672388bf3e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:59:20.000Z'}}, {'blockNum': '0x7dc5a9', 'uniqueId': '0x2f0369f8579c8300285d3d73ae61a04636eb6f02483e760f30fc46b7d393684e:log:63', 'hash': '0x2f0369f8579c8300285d3d73ae61a04636eb6f02483e760f30fc46b7d393684e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x74fea37cd3157054d8b7400d51d735a65ff29656', 'value': 1841.335014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x63d1a8176c06ec6000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T01:22:13.000Z'}}, {'blockNum': '0x7dc64b', 'uniqueId': '0x2467c64d8eafda9802a3977db1c787f83988acdaa18514a5d95bf582920d2f7c:log:22', 'hash': '0x2467c64d8eafda9802a3977db1c787f83988acdaa18514a5d95bf582920d2f7c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:02:38.000Z'}}, {'blockNum': '0x7dc66a', 'uniqueId': '0x8a22ca4a8c70f55034e3e824630b5cc77f24711813b83b0bff7eed26b965cf1c:log:58', 'hash': '0x8a22ca4a8c70f55034e3e824630b5cc77f24711813b83b0bff7eed26b965cf1c', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x0e354d772fecad34198d909f2e9663671ac2050a', 'value': 5.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x46a3500832bd0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:10:39.000Z'}}, {'blockNum': '0x7dc695', 'uniqueId': '0x69c8b14afe24eb2f99f91f7705a13dcaccd3ff8623706accd111fe7d70d97845:log:70', 'hash': '0x69c8b14afe24eb2f99f91f7705a13dcaccd3ff8623706accd111fe7d70d97845', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb07c49b35d8476d1f02ec9aae6ee031c08219a58', 'value': 5594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x012f405851b7bf280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:20:59.000Z'}}, {'blockNum': '0x7dc6c2', 'uniqueId': '0x4b74c8404f450a87de0144f23f1fc30e507d72f447392c8975629674d0a0cafa:log:72', 'hash': '0x4b74c8404f450a87de0144f23f1fc30e507d72f447392c8975629674d0a0cafa', 'from': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'to': '0xf977814e90da44bfa03b6295a0616a897441acec', 'value': 27861641.952037353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x170beea2fcd8518413495f', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:30:57.000Z'}}, {'blockNum': '0x7dc6dc', 'uniqueId': '0x51788ef44d01f3389bcf8d15580b2019153150fa05c08f4b18b920329e4c7a12:log:73', 'hash': '0x51788ef44d01f3389bcf8d15580b2019153150fa05c08f4b18b920329e4c7a12', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 8720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d8b64f4775be400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:37:09.000Z'}}, {'blockNum': '0x7dc6f9', 'uniqueId': '0x6fe5ff6ca97c11366385484a4d378839f778c25f51b49b18b7f506feb7515bbe:log:5', 'hash': '0x6fe5ff6ca97c11366385484a4d378839f778c25f51b49b18b7f506feb7515bbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 43239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0927fdaac1f5ab3c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:43:59.000Z'}}, {'blockNum': '0x7dc70d', 'uniqueId': '0xf208e82f2f70f77b073eb247015e367e9dcf5e9709e10babb5a19d32ff7313d8:log:8', 'hash': '0xf208e82f2f70f77b073eb247015e367e9dcf5e9709e10babb5a19d32ff7313d8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 64720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0db47a6d4abe71400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:48:09.000Z'}}]}}
Number of returned transfers:  164
Answer is complete
 
symbol             RDN
group              BPF
date        2019-07-29
hour             15:00
exchange       binance
Name: 786, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2019-07-29 15:00:00 2019-07-29 03:00:00 2019-07-30 03:00:00
Unix timestamps:  1564362000.0 1564448400.0
Hex Block Numbers:  0x7dc53c 0x7dde20
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7dc552', 'uniqueId': '0x8cfe8dafcbe2e1a9edef5cd05d67abc5e6a4bbec8c2bd300de37db05bd5cfff6:log:23', 'hash': '0x8cfe8dafcbe2e1a9edef5cd05d67abc5e6a4bbec8c2bd300de37db05bd5cfff6', 'from': '0xbef19ef7cc7e652092b0961fedfbeba29b471a9d', 'to': '0x17c304d4207da4295e45f0b2024217c882e656a1', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T01:05:40.000Z'}}, {'blockNum': '0x7dc5ae', 'uniqueId': '0xf2ff3481659becbd7a2d1b4cfefffe8fd5a4b540e856c6e19c97c715edc706d7:log:11', 'hash': '0xf2ff3481659becbd7a2d1b4cfefffe8fd5a4b540e856c6e19c97c715edc706d7', 'from': '0x17c304d4207da4295e45f0b2024217c882e656a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T01:23:53.000Z'}}, {'blockNum': '0x7dc66f', 'uniqueId': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d:log:123', 'hash': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 189.5045670654986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a45e777b5353bac91', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:12:06.000Z'}}, {'blockNum': '0x7dc66f', 'uniqueId': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d:log:125', 'hash': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 189.5045670654986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a45e777b5353bac91', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:12:06.000Z'}}, {'blockNum': '0x7dc66f', 'uniqueId': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d:log:130', 'hash': '0x7518ff37fe45005c15f3cb4567e9dda9436a339d1c785115ead85d20be64d76d', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 189.5045670654986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a45e777b5353bac91', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:12:06.000Z'}}, {'blockNum': '0x7dc6ac', 'uniqueId': '0x589c82ffbf92f655c9046460b4ad097d5280dc8c89a9c2604a18be2952f2a55a:log:80', 'hash': '0x589c82ffbf92f655c9046460b4ad097d5280dc8c89a9c2604a18be2952f2a55a', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 5621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0130b70b96aa66b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:25:50.000Z'}}, {'blockNum': '0x7dc775', 'uniqueId': '0x1d192c7b0e547175daf0c6b01a3ce75d7c8489c05b57869c1c74991cdf9a9923:log:30', 'hash': '0x1d192c7b0e547175daf0c6b01a3ce75d7c8489c05b57869c1c74991cdf9a9923', 'from': '0x5769b4b1c9494335b295d44a66eb1fe41e78a423', 'to': '0x88d531da71124781791532a36ea8395529577cae', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T03:12:55.000Z'}}, {'blockNum': '0x7dc77d', 'uniqueId': '0xbb5efcb0df28f57e1f9941d4facba9741f7302296cb1f95ad3a7f65244d09781:log:99', 'hash': '0xbb5efcb0df28f57e1f9941d4facba9741f7302296cb1f95ad3a7f65244d09781', 'from': '0x5769b4b1c9494335b295d44a66eb1fe41e78a423', 'to': '0x88d531da71124781791532a36ea8395529577cae', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T03:14:37.000Z'}}, {'blockNum': '0x7dc7ae', 'uniqueId': '0x724e753ee9d08c214303bdfe47f716054207803002ec7855c331761ea6d9a1f0:log:20', 'hash': '0x724e753ee9d08c214303bdfe47f716054207803002ec7855c331761ea6d9a1f0', 'from': '0x88d531da71124781791532a36ea8395529577cae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T03:23:49.000Z'}}, {'blockNum': '0x7dca92', 'uniqueId': '0xf66542a9ea02e45c3fc9a08434a07480fc97ae1f14fd9b3564863882ae3b8e65:log:26', 'hash': '0xf66542a9ea02e45c3fc9a08434a07480fc97ae1f14fd9b3564863882ae3b8e65', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x9b63f600256bdacc1c0af19f2ed620c07e60865f', 'value': 43866.3907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x094a0076478d1ee6c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T06:10:02.000Z'}}, {'blockNum': '0x7dcaa0', 'uniqueId': '0xced6be35a423c9eb6528d7adeef2683af3e186fb27068fd7b45b05a63d7ea193:log:7', 'hash': '0xced6be35a423c9eb6528d7adeef2683af3e186fb27068fd7b45b05a63d7ea193', 'from': '0x9b63f600256bdacc1c0af19f2ed620c07e60865f', 'to': '0x27c9a9604467aa0340cdefa784a93e0ea4f8f4c0', 'value': 43866.3907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x094a0076478d1ee6c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T06:14:42.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:36', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 353.30631433001275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee94fc8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:38', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 353.30631433001275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee94fc8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:43', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 353.30631433001264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd18', 'uniqueId': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6:log:45', 'hash': '0xc94bd63d063127a7000e3a39ddb0af2e3ac90cd9f137145e7f983ec0024e34d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 353.30631433001264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13271c2cfc6ee80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:35:10.000Z'}}, {'blockNum': '0x7dcd78', 'uniqueId': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4:log:48', 'hash': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 199.473987730719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad041f6fb8c224282', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:54:49.000Z'}}, {'blockNum': '0x7dcd78', 'uniqueId': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4:log:50', 'hash': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 199.473987730719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad041f6fb8c224282', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:54:49.000Z'}}, {'blockNum': '0x7dcd78', 'uniqueId': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4:log:55', 'hash': '0x0838d13eb6305be052f5920f405111c0cab133ef5cad145b8ad1206211c463d4', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 199.473987730719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ad041f6fb8c224282', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:54:49.000Z'}}, {'blockNum': '0x7dcd8e', 'uniqueId': '0xb1c2e7237edf626974b2bae100ba2b3ac6b849c6c48dabbf1b44c97280370f83:log:4', 'hash': '0xb1c2e7237edf626974b2bae100ba2b3ac6b849c6c48dabbf1b44c97280370f83', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2410.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x82af2edd90622e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T08:59:13.000Z'}}, {'blockNum': '0x7dce65', 'uniqueId': '0xa702eac9064d784c7f9916444af74991e6f8cc565d2a1955a534b88559b52240:log:34', 'hash': '0xa702eac9064d784c7f9916444af74991e6f8cc565d2a1955a534b88559b52240', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x93c990ad10bd6e41fe25571375da94f9112c7db2', 'value': 3.8770359056241515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x35cdff9d60299563', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:50:05.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:62', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 634.5126075760069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab8711e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:64', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 634.5126075760069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab8711e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:69', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 634.5126075760066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dce84', 'uniqueId': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420:log:71', 'hash': '0xa41986a4216cffa5b613028f3fccaff7d2deca9bcb25e4af03618e00721df420', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 634.5126075760066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2265a19ecc6ab40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T09:56:40.000Z'}}, {'blockNum': '0x7dcf20', 'uniqueId': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc:log:47', 'hash': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 237.93581621891116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ce605d4368ed37bde', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T10:31:08.000Z'}}, {'blockNum': '0x7dcf20', 'uniqueId': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc:log:49', 'hash': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 237.93581621891116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ce605d4368ed37bde', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T10:31:08.000Z'}}, {'blockNum': '0x7dcf20', 'uniqueId': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc:log:54', 'hash': '0xf375928dff70990393e4890c45ccd8b96c6524a0eb7d1c6f7552640fa5bba2bc', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 237.93581621891104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ce605d4368ed20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T10:31:08.000Z'}}, {'blockNum': '0x7dd06b', 'uniqueId': '0xb9f594d89cd1f33c80311d71c36e279a464ea6c0f016730d4aebb9bf581593bb:log:7', 'hash': '0xb9f594d89cd1f33c80311d71c36e279a464ea6c0f016730d4aebb9bf581593bb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7a6ab43aee38c562f8f0ba1890a286e28ab03896', 'value': 188.506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a380bd8409dc90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T11:49:06.000Z'}}, {'blockNum': '0x7dd0f4', 'uniqueId': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4:log:65', 'hash': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4', 'from': '0x16ea1f673e01419ba9af51365b88138ac492489a', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 45.648922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279818d5b1acbe780', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:21:44.000Z'}}, {'blockNum': '0x7dd0f4', 'uniqueId': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4:log:66', 'hash': '0x9d248bca2c1bae494140c65e6ea958be97763e91ece7af07504da90fdb3958a4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 45.648922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279818d5b1acbe780', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:21:44.000Z'}}, {'blockNum': '0x7dd157', 'uniqueId': '0xcebbf02a25e1697c0d6ae7b01b8dd1aca676f1c12379ef71ad6d2c3f524f226a:log:7', 'hash': '0xcebbf02a25e1697c0d6ae7b01b8dd1aca676f1c12379ef71ad6d2c3f524f226a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x34b61c1b68212b1799a3aebb1ff763f7a766aaf9', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:44:15.000Z'}}, {'blockNum': '0x7dd170', 'uniqueId': '0xa8b66cd3d4ca96802696060acf7cc548c041608a427494cc79b62c3bfa0bb8f1:log:26', 'hash': '0xa8b66cd3d4ca96802696060acf7cc548c041608a427494cc79b62c3bfa0bb8f1', 'from': '0x1cb5b2bb4030220ad5417229a7a1e3c373cdd2f6', 'to': '0xf36700ff798394c4a58fe861a4661f5489d90735', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T12:48:30.000Z'}}, {'blockNum': '0x7dd1b9', 'uniqueId': '0xfca6fa6f44a2fa15e2d40d7e6ee6bb9da47c23e609817c464320a463b85ab1fa:log:49', 'hash': '0xfca6fa6f44a2fa15e2d40d7e6ee6bb9da47c23e609817c464320a463b85ab1fa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7f5be7b017a7035ec0e5e7d423a9c22dba8353d', 'value': 2976.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa15ddf47d209850000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:24.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:118', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 334.5484508916073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f7723e8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:120', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 334.5484508916073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f7723e8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:125', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 334.5484508916072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f770000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1bb', 'uniqueId': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7:log:127', 'hash': '0xe3a74aaa697d3f1a860a598cdefd381b1da6585d3a297bbac888ed304d6d9da7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 334.5484508916072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1222cadb927f770000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:04:53.000Z'}}, {'blockNum': '0x7dd1c3', 'uniqueId': '0x70290aa73784e1d07f1fd0cbdc22d5b68c07f8bf9c3c69853f3891917e0143bf:log:4', 'hash': '0x70290aa73784e1d07f1fd0cbdc22d5b68c07f8bf9c3c69853f3891917e0143bf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf7f5be7b017a7035ec0e5e7d423a9c22dba8353d', 'value': 3465.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbbe03fcbef374a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:07:16.000Z'}}, {'blockNum': '0x7dd1c8', 'uniqueId': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6:log:50', 'hash': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 197.488661040306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ab4b4aae05af7327e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:08:42.000Z'}}, {'blockNum': '0x7dd1c8', 'uniqueId': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6:log:52', 'hash': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 197.488661040306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ab4b4aae05af7327e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:08:42.000Z'}}, {'blockNum': '0x7dd1c8', 'uniqueId': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6:log:57', 'hash': '0xe46917a6338b89c92cae9a44cfbf62b2406c85f035b6db1a5523dcdb91ca9ec6', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 197.488661040306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ab4b4aae05af7327e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:08:42.000Z'}}, {'blockNum': '0x7dd1d7', 'uniqueId': '0xece55e828f186a26456296ef2c0a7018fceca5aee90f2105332b23e70971fb5e:log:28', 'hash': '0xece55e828f186a26456296ef2c0a7018fceca5aee90f2105332b23e70971fb5e', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xf7f5be7b017a7035ec0e5e7d423a9c22dba8353d', 'value': 158.3907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08961cce75c976c000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:11:58.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:114', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 372.2971628242598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea93912e1c4f136', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:116', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 372.2971628242598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea93912e1c4f136', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:121', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 372.29679052709696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea7e678b1a0d6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd1fa', 'uniqueId': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4:log:123', 'hash': '0x3c9c20613f5ce7c2da0bcea18722d5a473919b0e9d0d221f91b8ceca832f30f4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 372.29679052709696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x142ea7e678b1a0d6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:19:12.000Z'}}, {'blockNum': '0x7dd204', 'uniqueId': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a:log:114', 'hash': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 198.61824346760994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ac461c01bf6f0cd42', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:21:01.000Z'}}, {'blockNum': '0x7dd204', 'uniqueId': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a:log:116', 'hash': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 198.61824346760994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ac461c01bf6f0cd42', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:21:01.000Z'}}, {'blockNum': '0x7dd204', 'uniqueId': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a:log:121', 'hash': '0x9475b5044e19071d24cd20667d1941ccb5fa6021162a56a70823f17334db5f0a', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 198.61824346760994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ac461c01bf6f0cd42', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T13:21:01.000Z'}}, {'blockNum': '0x7dd369', 'uniqueId': '0xe0069619f571a7ebe5641a45c29f3dd87a00bfe6b7c7757f8ac34c0c375ed1cd:log:132', 'hash': '0xe0069619f571a7ebe5641a45c29f3dd87a00bfe6b7c7757f8ac34c0c375ed1cd', 'from': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'to': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'value': 4937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010ba2a36ea727840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T14:40:49.000Z'}}, {'blockNum': '0x7dd3cd', 'uniqueId': '0x2fdb4778533d58e1b72cd78b6f6bc6d4193d934e139ac056fd5ebe97076a984e:log:1', 'hash': '0x2fdb4778533d58e1b72cd78b6f6bc6d4193d934e139ac056fd5ebe97076a984e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 5142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0116bf95bc8432980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:02:42.000Z'}}, {'blockNum': '0x7dd3fb', 'uniqueId': '0x9ed1903a211361f8c49f9ef9ee27b41bce9a53c45c6949c3d1fca6990b3565e3:log:38', 'hash': '0x9ed1903a211361f8c49f9ef9ee27b41bce9a53c45c6949c3d1fca6990b3565e3', 'from': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'to': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'value': 3245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xafe96be340ce940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:13:14.000Z'}}, {'blockNum': '0x7dd3ff', 'uniqueId': '0xa569b4f376aaafee58ff8967b4d567e7e02e922f7136f571fb7095f15cd201d7:log:23', 'hash': '0xa569b4f376aaafee58ff8967b4d567e7e02e922f7136f571fb7095f15cd201d7', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0116bf95bc8432980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:13:56.000Z'}}, {'blockNum': '0x7dd4ab', 'uniqueId': '0x77c4bf2f46217e1c02a75f0c55c253119c6d5820757098fb08248e645c3762c9:log:131', 'hash': '0x77c4bf2f46217e1c02a75f0c55c253119c6d5820757098fb08248e645c3762c9', 'from': '0x773c249cc8dd02fce180ff066823312e448c6413', 'to': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:56:26.000Z'}}, {'blockNum': '0x7dd4b6', 'uniqueId': '0x4b506195c3f488e2e910a706b7178bab3367a7be78cf48b295749250721056c1:log:117', 'hash': '0x4b506195c3f488e2e910a706b7178bab3367a7be78cf48b295749250721056c1', 'from': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'to': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'value': 5411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012554b5b74b16ac0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T15:59:49.000Z'}}, {'blockNum': '0x7dd4e9', 'uniqueId': '0xdd8696f59fd24b4e25992161286aeeaa559aa7588a374c9ce0423dea3324d2ae:log:126', 'hash': '0xdd8696f59fd24b4e25992161286aeeaa559aa7588a374c9ce0423dea3324d2ae', 'from': '0xe3edbd0d3138d77baa734a783db4077906a35465', 'to': '0x2af47a65da8cd66729b4209c22017d6a5c2d2400', 'value': 4329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeaacf183f99a040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T16:13:17.000Z'}}, {'blockNum': '0x7dd5d8', 'uniqueId': '0x5dd03bde0ee17aa5551deb8533849cc53e4a6db722df346cd2aa17a955a5a451:log:17', 'hash': '0x5dd03bde0ee17aa5551deb8533849cc53e4a6db722df346cd2aa17a955a5a451', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x301ad4b114174a2e237ff3ecdd53511f80b3f8fa', 'value': 6284.0292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0154a86c7f2fb6210000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T17:07:31.000Z'}}, {'blockNum': '0x7dd7cb', 'uniqueId': '0x152134597a244e700089dde00c871fc79007b9f7cb3b1e18be7f6a8e0910b16f:log:0', 'hash': '0x152134597a244e700089dde00c871fc79007b9f7cb3b1e18be7f6a8e0910b16f', 'from': '0x67ca63d179611594c7e2c4bde379b59d35c0453e', 'to': '0x193397962bd548a45f83a1af5313bd1bb6d7e606', 'value': 346.464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12c827645ae4f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T18:59:13.000Z'}}, {'blockNum': '0x7dd7e5', 'uniqueId': '0x13b4f27dd84ea625a7d0419195f15f19218649464bac8dd257899a8ab20959de:log:19', 'hash': '0x13b4f27dd84ea625a7d0419195f15f19218649464bac8dd257899a8ab20959de', 'from': '0x193397962bd548a45f83a1af5313bd1bb6d7e606', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 346.464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12c827645ae4f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T19:03:41.000Z'}}, {'blockNum': '0x7dd9cd', 'uniqueId': '0x8129e91798b6ce3ac6e7ff2604c1cc015e86c0bc813d1f2bd79072744cecaf74:log:234', 'hash': '0x8129e91798b6ce3ac6e7ff2604c1cc015e86c0bc813d1f2bd79072744cecaf74', 'from': '0x93c990ad10bd6e41fe25571375da94f9112c7db2', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 15.271222809908046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd3ee483c36696691', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T20:55:16.000Z'}}, {'blockNum': '0x7ddacf', 'uniqueId': '0xafda6a5b5a5a50ea03f55ef0d3a4a8213aaf47757ffbe654c2b9e03b7ea0638b:log:36', 'hash': '0xafda6a5b5a5a50ea03f55ef0d3a4a8213aaf47757ffbe654c2b9e03b7ea0638b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 931.7380478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32827681ea12ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T21:48:54.000Z'}}, {'blockNum': '0x7ddad6', 'uniqueId': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b:log:9', 'hash': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 931.7380478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32827681ea12ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T21:50:14.000Z'}}, {'blockNum': '0x7ddad6', 'uniqueId': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b:log:11', 'hash': '0x910bccdd475f03a25fe5ba00c3ac617939a59f8c3040055ade4df41bd2468b4b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 931.7380478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32827681ea12ee3000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T21:50:14.000Z'}}, {'blockNum': '0x7dddf0', 'uniqueId': '0xf15faa9c7552391eb9f0dc785bac41c1cd4a553327ea14effdbb8ad1211af507:log:72', 'hash': '0xf15faa9c7552391eb9f0dc785bac41c1cd4a553327ea14effdbb8ad1211af507', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x10c2dc6ddc8e98eedf6e9a9113f6223853628183', 'value': 59.220741996326176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0335da5714aa143c0b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-30T00:50:16.000Z'}}]}}
Number of returned transfers:  64
Answer is complete
 
symbol             NAV
group              BPF
date        2019-08-01
hour             20:00
exchange       binance
Name: 787, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-08-01 20:00:00 2019-08-01 08:00:00 2019-08-02 08:00:00
Unix timestamps:  1564639200.0 1564725600.0
Hex Block Numbers:  0x7e15d5 0x7e2ec1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SNM
group              BPF
date        2019-08-07
hour             17:00
exchange       binance
Name: 788, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-08-07 17:00:00 2019-08-07 05:00:00 2019-08-08 05:00:00
Unix timestamps:  1565146800.0 1565233200.0
Hex Block Numbers:  0x7ea9a8 0x7ec2d6
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             CVC
group              BPF
date        2019-08-13
hour             20:00
exchange       binance
Name: 789, dtype: object
HERE
 Symbol: CVC, Contract: 0x41e5560054824ea6b0732e656e3ad64e20e94e45
Datetime timestamps:  2019-08-13 20:00:00 2019-08-13 08:00:00 2019-08-14 08:00:00
Unix timestamps:  1565676000.0 1565762400.0
Hex Block Numbers:  0x7f43ed 0x7f5d01
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7f43f1', 'uniqueId': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807:log:16', 'hash': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807', 'from': '0x3840feee6e82d07dea385b011b597a0ddce74aa7', 'to': '0x0e17fdee2528ee4b6c076fd5fe725b05a6d0566a', 'value': 512.34814767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bedd53b2f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:01:43.000Z'}}, {'blockNum': '0x7f43f5', 'uniqueId': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2:log:0', 'hash': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:02:02.000Z'}}, {'blockNum': '0x7f441b', 'uniqueId': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358:log:132', 'hash': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:10:04.000Z'}}, {'blockNum': '0x7f4420', 'uniqueId': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4:log:96', 'hash': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:12:05.000Z'}}, {'blockNum': '0x7f4472', 'uniqueId': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f:log:100', 'hash': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:32:46.000Z'}}, {'blockNum': '0x7f4477', 'uniqueId': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602:log:68', 'hash': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:33:47.000Z'}}, {'blockNum': '0x7f4487', 'uniqueId': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf:log:50', 'hash': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:36:43.000Z'}}, {'blockNum': '0x7f448b', 'uniqueId': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae:log:95', 'hash': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:37:03.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2:log:94', 'hash': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2:log:96', 'hash': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6:log:98', 'hash': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f452e', 'uniqueId': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0:log:30', 'hash': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:11:40.000Z'}}, {'blockNum': '0x7f454c', 'uniqueId': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f:log:101', 'hash': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:19:39.000Z'}}, {'blockNum': '0x7f4568', 'uniqueId': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181:log:27', 'hash': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:25:06.000Z'}}, {'blockNum': '0x7f4570', 'uniqueId': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b:log:57', 'hash': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:26:11.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d:log:77', 'hash': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc:log:79', 'hash': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f4581', 'uniqueId': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845:log:105', 'hash': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:30:17.000Z'}}, {'blockNum': '0x7f45b2', 'uniqueId': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848:log:211', 'hash': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:41:43.000Z'}}, {'blockNum': '0x7f462e', 'uniqueId': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093:log:103', 'hash': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:12:01.000Z'}}, {'blockNum': '0x7f4680', 'uniqueId': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84:log:119', 'hash': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:31:07.000Z'}}, {'blockNum': '0x7f46af', 'uniqueId': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06:log:84', 'hash': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:41:35.000Z'}}, {'blockNum': '0x7f4709', 'uniqueId': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341:log:23', 'hash': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:01:50.000Z'}}, {'blockNum': '0x7f470a', 'uniqueId': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec:log:44', 'hash': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec', 'from': '0xaf37117018271a4ab607001179ef389f11c3e580', 'to': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:02:14.000Z'}}, {'blockNum': '0x7f4710', 'uniqueId': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df:log:92', 'hash': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:03:01.000Z'}}, {'blockNum': '0x7f4715', 'uniqueId': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e:log:61', 'hash': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:04:37.000Z'}}, {'blockNum': '0x7f471e', 'uniqueId': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374:log:9', 'hash': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374', 'from': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'to': '0x842a499c04afab73af5b1940ee492cd3f7f3eb2e', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:06:51.000Z'}}, {'blockNum': '0x7f4739', 'uniqueId': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966:log:0', 'hash': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:14:48.000Z'}}, {'blockNum': '0x7f474a', 'uniqueId': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda:log:61', 'hash': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:17:53.000Z'}}, {'blockNum': '0x7f475c', 'uniqueId': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192:log:105', 'hash': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:20:00.000Z'}}, {'blockNum': '0x7f4764', 'uniqueId': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8:log:133', 'hash': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:21:21.000Z'}}, {'blockNum': '0x7f4777', 'uniqueId': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b:log:0', 'hash': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:25:07.000Z'}}, {'blockNum': '0x7f47cf', 'uniqueId': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30:log:3', 'hash': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:43:44.000Z'}}, {'blockNum': '0x7f482f', 'uniqueId': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302:log:0', 'hash': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302', 'from': '0x9ba2cb2df0d7d5b3fb1938ce5619339f723e4eb6', 'to': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:03:25.000Z'}}, {'blockNum': '0x7f4849', 'uniqueId': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f:log:14', 'hash': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f', 'from': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:07:13.000Z'}}, {'blockNum': '0x7f485c', 'uniqueId': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56:log:63', 'hash': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:11:46.000Z'}}, {'blockNum': '0x7f48b4', 'uniqueId': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b:log:41', 'hash': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:28:54.000Z'}}, {'blockNum': '0x7f48de', 'uniqueId': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0:log:33', 'hash': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:39:41.000Z'}}, {'blockNum': '0x7f48e7', 'uniqueId': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579:log:69', 'hash': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:41:09.000Z'}}, {'blockNum': '0x7f4910', 'uniqueId': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812:log:0', 'hash': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 195846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11cfe5204600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:50:46.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e:log:47', 'hash': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed:log:49', 'hash': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f492f', 'uniqueId': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6:log:12', 'hash': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:58:10.000Z'}}, {'blockNum': '0x7f4938', 'uniqueId': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80:log:100', 'hash': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 424709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x26a086e86500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:00:11.000Z'}}, {'blockNum': '0x7f4968', 'uniqueId': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6:log:2', 'hash': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:11:13.000Z'}}, {'blockNum': '0x7f4976', 'uniqueId': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231:log:33', 'hash': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:14:45.000Z'}}, {'blockNum': '0x7f4994', 'uniqueId': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e:log:26', 'hash': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:22:07.000Z'}}, {'blockNum': '0x7f49b0', 'uniqueId': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc:log:72', 'hash': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:30:06.000Z'}}, {'blockNum': '0x7f4a4a', 'uniqueId': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d:log:0', 'hash': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:28.000Z'}}, {'blockNum': '0x7f4a4b', 'uniqueId': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab:log:115', 'hash': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab', 'from': '0x6d367f8f9e9c647acf649de37306ff896d09f1f5', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 22303.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02074d9a8980', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:50.000Z'}}, {'blockNum': '0x7f4a5d', 'uniqueId': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc:log:82', 'hash': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:11.000Z'}}, {'blockNum': '0x7f4a61', 'uniqueId': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323:log:0', 'hash': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x69412cde74814fee9553e22a424a0b2889725c5e', 'value': 1034.934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1818aff5c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:36.000Z'}}, {'blockNum': '0x7f4a67', 'uniqueId': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf:log:31', 'hash': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:12:01.000Z'}}, {'blockNum': '0x7f4a87', 'uniqueId': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2:log:104', 'hash': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:28.000Z'}}, {'blockNum': '0x7f4a89', 'uniqueId': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197:log:105', 'hash': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:56.000Z'}}, {'blockNum': '0x7f4aa3', 'uniqueId': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90:log:1', 'hash': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:25:13.000Z'}}, {'blockNum': '0x7f4ab2', 'uniqueId': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588:log:80', 'hash': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:29:59.000Z'}}, {'blockNum': '0x7f4ac2', 'uniqueId': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e:log:94', 'hash': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:33:08.000Z'}}, {'blockNum': '0x7f4ac7', 'uniqueId': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8:log:103', 'hash': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:34:34.000Z'}}, {'blockNum': '0x7f4ad6', 'uniqueId': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4:log:52', 'hash': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:38:58.000Z'}}, {'blockNum': '0x7f4ad9', 'uniqueId': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea:log:18', 'hash': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:39:13.000Z'}}, {'blockNum': '0x7f4ae4', 'uniqueId': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e:log:3', 'hash': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:41:49.000Z'}}, {'blockNum': '0x7f4aec', 'uniqueId': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f:log:105', 'hash': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:44:26.000Z'}}, {'blockNum': '0x7f4aef', 'uniqueId': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f:log:2', 'hash': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:45:02.000Z'}}, {'blockNum': '0x7f4b02', 'uniqueId': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0:log:64', 'hash': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:49:50.000Z'}}, {'blockNum': '0x7f4b15', 'uniqueId': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2:log:124', 'hash': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:54:33.000Z'}}, {'blockNum': '0x7f4b26', 'uniqueId': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5:log:116', 'hash': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:59:31.000Z'}}, {'blockNum': '0x7f4b34', 'uniqueId': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4:log:106', 'hash': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:03:45.000Z'}}, {'blockNum': '0x7f4b3a', 'uniqueId': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8:log:83', 'hash': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8', 'from': '0x4003caeff9d6eb5af6927b0842c90f43f31d25d1', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:05:13.000Z'}}, {'blockNum': '0x7f4b51', 'uniqueId': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794:log:79', 'hash': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794', 'from': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:10:13.000Z'}}, {'blockNum': '0x7f4b55', 'uniqueId': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9:log:81', 'hash': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:11:44.000Z'}}, {'blockNum': '0x7f4b5b', 'uniqueId': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56:log:27', 'hash': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:12:40.000Z'}}, {'blockNum': '0x7f4b76', 'uniqueId': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072:log:25', 'hash': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:17:42.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f:log:158', 'hash': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52:log:160', 'hash': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4bce', 'uniqueId': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170:log:2', 'hash': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93234.62781364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x087ac9afe9b4', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:39:22.000Z'}}, {'blockNum': '0x7f4bd1', 'uniqueId': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517:log:3', 'hash': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 115000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0a758d6a3800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:40:20.000Z'}}, {'blockNum': '0x7f4bd3', 'uniqueId': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3:log:1', 'hash': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3', 'from': '0xc928a3ed8f5f723007b7b1e68d9f918d10dae923', 'to': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:41:44.000Z'}}, {'blockNum': '0x7f4bd7', 'uniqueId': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1:log:1', 'hash': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:43:02.000Z'}}, {'blockNum': '0x7f4bdd', 'uniqueId': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2:log:0', 'hash': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:44:30.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329:log:72', 'hash': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac:log:84', 'hash': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x164859cc0800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bf1', 'uniqueId': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52:log:37', 'hash': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52', 'from': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:10.000Z'}}, {'blockNum': '0x7f4bf2', 'uniqueId': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09:log:117', 'hash': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:14.000Z'}}, {'blockNum': '0x7f4bfc', 'uniqueId': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263:log:44', 'hash': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263', 'from': '0xd65e1f33a142d57b431b65d0774d514948a0e0bc', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 20081.3516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d38e2ed0c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:52:42.000Z'}}, {'blockNum': '0x7f4c01', 'uniqueId': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3:log:27', 'hash': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 20050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d2d3501200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:24.000Z'}}, {'blockNum': '0x7f4c06', 'uniqueId': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825:log:6', 'hash': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:59.000Z'}}, {'blockNum': '0x7f4c28', 'uniqueId': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257:log:13', 'hash': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257', 'from': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:00:09.000Z'}}, {'blockNum': '0x7f4c3e', 'uniqueId': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec:log:127', 'hash': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:05:57.000Z'}}, {'blockNum': '0x7f4c40', 'uniqueId': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e:log:117', 'hash': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:06:11.000Z'}}, {'blockNum': '0x7f4c50', 'uniqueId': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45:log:75', 'hash': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:09:34.000Z'}}, {'blockNum': '0x7f4c55', 'uniqueId': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c:log:134', 'hash': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:11:17.000Z'}}, {'blockNum': '0x7f4c59', 'uniqueId': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486:log:6', 'hash': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:13:44.000Z'}}, {'blockNum': '0x7f4c80', 'uniqueId': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a:log:6', 'hash': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe905e6691019605015334b20bdf2882f65de0153', 'value': 1241.769537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1ce985f164', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:20:55.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63:log:44', 'hash': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01747790', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876:log:89', 'hash': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c94', 'uniqueId': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7:log:95', 'hash': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:10.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f:log:18', 'hash': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01767360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef:log:70', 'hash': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8:log:72', 'hash': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c98', 'uniqueId': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416:log:120', 'hash': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:57.000Z'}}, {'blockNum': '0x7f4ca2', 'uniqueId': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b:log:107', 'hash': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:30:09.000Z'}}, {'blockNum': '0x7f4cc0', 'uniqueId': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06:log:22', 'hash': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:35:36.000Z'}}, {'blockNum': '0x7f4cf2', 'uniqueId': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70:log:86', 'hash': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70', 'from': '0xcc6648fe5eccd8772c9a19d704370d708af02466', 'to': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:46:36.000Z'}}, {'blockNum': '0x7f4d06', 'uniqueId': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991:log:65', 'hash': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:20.000Z'}}, {'blockNum': '0x7f4d08', 'uniqueId': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7:log:75', 'hash': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:31.000Z'}}, {'blockNum': '0x7f4d09', 'uniqueId': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32:log:67', 'hash': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:01.000Z'}}, {'blockNum': '0x7f4d0b', 'uniqueId': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d:log:34', 'hash': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:54.000Z'}}, {'blockNum': '0x7f4d0e', 'uniqueId': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f:log:19', 'hash': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:52:27.000Z'}}, {'blockNum': '0x7f4d13', 'uniqueId': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1:log:82', 'hash': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:22.000Z'}}, {'blockNum': '0x7f4d14', 'uniqueId': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922:log:7', 'hash': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:28.000Z'}}, {'blockNum': '0x7f4d15', 'uniqueId': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb:log:25', 'hash': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:38.000Z'}}, {'blockNum': '0x7f4d1c', 'uniqueId': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf:log:57', 'hash': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:55:36.000Z'}}, {'blockNum': '0x7f4d1f', 'uniqueId': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc:log:31', 'hash': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1740.287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2884eb3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:24.000Z'}}, {'blockNum': '0x7f4d21', 'uniqueId': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b:log:37', 'hash': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:29.000Z'}}, {'blockNum': '0x7f4d2a', 'uniqueId': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58:log:30', 'hash': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:59:01.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2:log:32', 'hash': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1:log:34', 'hash': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a:log:36', 'hash': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4db9', 'uniqueId': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f:log:71', 'hash': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:04.000Z'}}, {'blockNum': '0x7f4dba', 'uniqueId': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a:log:128', 'hash': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:15.000Z'}}, {'blockNum': '0x7f4dd8', 'uniqueId': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2:log:2', 'hash': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2', 'from': '0x1b9e3ca833bccc64ad46e016c6c8aebf7e27259d', 'to': '0x9aa22e4ee96e16e598e430eb0c5fff699522e510', 'value': 1980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e19b83c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:38:11.000Z'}}, {'blockNum': '0x7f4de9', 'uniqueId': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041:log:51', 'hash': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:41:33.000Z'}}, {'blockNum': '0x7f4dfd', 'uniqueId': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4:log:4', 'hash': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4', 'from': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:45:08.000Z'}}, {'blockNum': '0x7f4e91', 'uniqueId': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95:log:52', 'hash': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:21:59.000Z'}}, {'blockNum': '0x7f4e9e', 'uniqueId': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482:log:111', 'hash': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:23:12.000Z'}}, {'blockNum': '0x7f4eaf', 'uniqueId': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159:log:30', 'hash': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:17.000Z'}}, {'blockNum': '0x7f4eb1', 'uniqueId': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3:log:101', 'hash': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:56.000Z'}}, {'blockNum': '0x7f4eb3', 'uniqueId': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded:log:29', 'hash': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:48.000Z'}}, {'blockNum': '0x7f4eb5', 'uniqueId': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4:log:13', 'hash': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:55.000Z'}}, {'blockNum': '0x7f4eb6', 'uniqueId': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a:log:36', 'hash': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:03.000Z'}}, {'blockNum': '0x7f4eba', 'uniqueId': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b:log:70', 'hash': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:34.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf:log:79', 'hash': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0:log:81', 'hash': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebd', 'uniqueId': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84:log:56', 'hash': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:06.000Z'}}, {'blockNum': '0x7f4ebf', 'uniqueId': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f:log:47', 'hash': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:24.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62:log:153', 'hash': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58:log:156', 'hash': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce:log:158', 'hash': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec3', 'uniqueId': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7:log:108', 'hash': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:56.000Z'}}, {'blockNum': '0x7f4ec9', 'uniqueId': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5:log:109', 'hash': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176c180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:30:32.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2:log:55', 'hash': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e:log:57', 'hash': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4ecb', 'uniqueId': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a:log:93', 'hash': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:18.000Z'}}, {'blockNum': '0x7f4ecc', 'uniqueId': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71:log:18', 'hash': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:25.000Z'}}, {'blockNum': '0x7f4ece', 'uniqueId': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a:log:148', 'hash': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:56.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba:log:52', 'hash': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2:log:54', 'hash': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f:log:56', 'hash': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc:log:44', 'hash': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43:log:46', 'hash': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f26', 'uniqueId': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e:log:113', 'hash': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:51:05.000Z'}}, {'blockNum': '0x7f4f38', 'uniqueId': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71:log:49', 'hash': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:56:01.000Z'}}, {'blockNum': '0x7f4f49', 'uniqueId': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca:log:126', 'hash': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:09.000Z'}}, {'blockNum': '0x7f4f4a', 'uniqueId': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8:log:0', 'hash': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49866.00463223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0489088c9b77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:18.000Z'}}, {'blockNum': '0x7f4f5e', 'uniqueId': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230:log:21', 'hash': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc9f42134fb5f8703177352093111372dfafcb550', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:02:56.000Z'}}, {'blockNum': '0x7f4f6b', 'uniqueId': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41:log:154', 'hash': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:05:13.000Z'}}, {'blockNum': '0x7f4f7b', 'uniqueId': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1:log:151', 'hash': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:09:08.000Z'}}, {'blockNum': '0x7f4f7d', 'uniqueId': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03:log:118', 'hash': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03', 'from': '0xc9f42134fb5f8703177352093111372dfafcb550', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:12.000Z'}}, {'blockNum': '0x7f4f7e', 'uniqueId': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8:log:82', 'hash': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:22.000Z'}}, {'blockNum': '0x7f4f7f', 'uniqueId': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6:log:104', 'hash': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:28.000Z'}}, {'blockNum': '0x7f4f82', 'uniqueId': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5:log:77', 'hash': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:55.000Z'}}, {'blockNum': '0x7f4f84', 'uniqueId': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3:log:76', 'hash': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:11:00.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da:log:37', 'hash': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831:log:39', 'hash': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8c', 'uniqueId': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d:log:14', 'hash': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:21.000Z'}}, {'blockNum': '0x7f4f91', 'uniqueId': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796:log:50', 'hash': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:10.000Z'}}, {'blockNum': '0x7f4f93', 'uniqueId': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457:log:32', 'hash': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:19.000Z'}}, {'blockNum': '0x7f4f96', 'uniqueId': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571:log:29', 'hash': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:14:05.000Z'}}, {'blockNum': '0x7f4f9b', 'uniqueId': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9:log:14', 'hash': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:15:17.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c:log:90', 'hash': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4:log:92', 'hash': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa7', 'uniqueId': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4:log:51', 'hash': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:46.000Z'}}, {'blockNum': '0x7f4fac', 'uniqueId': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6:log:68', 'hash': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:19:40.000Z'}}, {'blockNum': '0x7f4fae', 'uniqueId': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71:log:99', 'hash': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:20:02.000Z'}}, {'blockNum': '0x7f4fb5', 'uniqueId': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e:log:115', 'hash': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:13.000Z'}}, {'blockNum': '0x7f4fb7', 'uniqueId': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707:log:6', 'hash': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:51.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0:log:44', 'hash': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74:log:69', 'hash': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fd0', 'uniqueId': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f:log:33', 'hash': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:28:40.000Z'}}, {'blockNum': '0x7f4fdf', 'uniqueId': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0:log:77', 'hash': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:31:37.000Z'}}, {'blockNum': '0x7f4fe2', 'uniqueId': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218:log:56', 'hash': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:06.000Z'}}, {'blockNum': '0x7f4fe6', 'uniqueId': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254:log:22', 'hash': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254', 'from': '0xc0fe06bb9847c2d38245e875edf8500da4a2d0c4', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 12904.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012c73652fc0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:52.000Z'}}, {'blockNum': '0x7f4fe9', 'uniqueId': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e:log:33', 'hash': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:35:20.000Z'}}, {'blockNum': '0x7f5007', 'uniqueId': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197:log:88', 'hash': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:15.000Z'}}, {'blockNum': '0x7f5009', 'uniqueId': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381:log:20', 'hash': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:40.000Z'}}, {'blockNum': '0x7f500d', 'uniqueId': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875:log:111', 'hash': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:51.000Z'}}, {'blockNum': '0x7f5018', 'uniqueId': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a:log:143', 'hash': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:45:07.000Z'}}, {'blockNum': '0x7f5027', 'uniqueId': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69:log:48', 'hash': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:20.000Z'}}, {'blockNum': '0x7f5028', 'uniqueId': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a:log:35', 'hash': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:31.000Z'}}, {'blockNum': '0x7f5038', 'uniqueId': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2:log:25', 'hash': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:50:46.000Z'}}, {'blockNum': '0x7f503a', 'uniqueId': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a:log:15', 'hash': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:51:08.000Z'}}, {'blockNum': '0x7f5059', 'uniqueId': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1:log:65', 'hash': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:33.000Z'}}, {'blockNum': '0x7f505c', 'uniqueId': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7:log:47', 'hash': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:51.000Z'}}, {'blockNum': '0x7f5084', 'uniqueId': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1:log:103', 'hash': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:10.000Z'}}, {'blockNum': '0x7f5086', 'uniqueId': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852:log:4', 'hash': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:41.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae:log:95', 'hash': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9:log:97', 'hash': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f50a1', 'uniqueId': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7:log:120', 'hash': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:27.000Z'}}, {'blockNum': '0x7f50a3', 'uniqueId': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9:log:53', 'hash': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:56.000Z'}}, {'blockNum': '0x7f50b3', 'uniqueId': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8:log:61', 'hash': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:16:44.000Z'}}, {'blockNum': '0x7f50b5', 'uniqueId': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d:log:22', 'hash': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:13.000Z'}}, {'blockNum': '0x7f50b7', 'uniqueId': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036:log:64', 'hash': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:29.000Z'}}, {'blockNum': '0x7f50bc', 'uniqueId': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283:log:79', 'hash': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:19:09.000Z'}}, {'blockNum': '0x7f50d2', 'uniqueId': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42:log:13', 'hash': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:24:21.000Z'}}, {'blockNum': '0x7f50d9', 'uniqueId': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba:log:58', 'hash': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:43.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44:log:53', 'hash': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642:log:55', 'hash': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50de', 'uniqueId': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f:log:30', 'hash': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 11006.8096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x010045b29800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:27:24.000Z'}}, {'blockNum': '0x7f50e2', 'uniqueId': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7:log:8', 'hash': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:28:07.000Z'}}, {'blockNum': '0x7f50fc', 'uniqueId': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d:log:9', 'hash': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:48.000Z'}}, {'blockNum': '0x7f50fd', 'uniqueId': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa:log:7', 'hash': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa', 'from': '0xcba419e954900a32b1a0f61d01a565c313924dae', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 10773.656486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xfad7ff2cd8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:50.000Z'}}, {'blockNum': '0x7f5100', 'uniqueId': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231:log:42', 'hash': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:34:02.000Z'}}, {'blockNum': '0x7f510b', 'uniqueId': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282:log:18', 'hash': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:26.000Z'}}, {'blockNum': '0x7f510d', 'uniqueId': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163:log:96', 'hash': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:48.000Z'}}, {'blockNum': '0x7f5110', 'uniqueId': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098:log:5', 'hash': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:06.000Z'}}, {'blockNum': '0x7f5111', 'uniqueId': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c:log:61', 'hash': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:17.000Z'}}, {'blockNum': '0x7f5146', 'uniqueId': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66:log:147', 'hash': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:50:58.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489:log:7', 'hash': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489', 'from': '0x3347e9a544546d8234306d92ac6ac707780147b3', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce:log:12', 'hash': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f515b', 'uniqueId': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668:log:63', 'hash': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:55:49.000Z'}}, {'blockNum': '0x7f516b', 'uniqueId': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460:log:63', 'hash': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460', 'from': '0xce39c69dbcc2d4425b8978d111b551b50da102eb', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 9938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe763189200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:58:48.000Z'}}, {'blockNum': '0x7f518c', 'uniqueId': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38:log:55', 'hash': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:07:45.000Z'}}, {'blockNum': '0x7f5190', 'uniqueId': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60:log:69', 'hash': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:18.000Z'}}, {'blockNum': '0x7f5193', 'uniqueId': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab:log:31', 'hash': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:29.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb:log:16', 'hash': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78:log:18', 'hash': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f51a4', 'uniqueId': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad:log:19', 'hash': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x194009c35583ed133832cedf0530d3e76761503e', 'value': 2881.1156034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4314c98694', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:12:46.000Z'}}, {'blockNum': '0x7f51aa', 'uniqueId': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93:log:81', 'hash': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:14:17.000Z'}}, {'blockNum': '0x7f51ac', 'uniqueId': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b:log:90', 'hash': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:15:32.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69:log:57', 'hash': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9:log:59', 'hash': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51c0', 'uniqueId': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05:log:54', 'hash': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:19:56.000Z'}}, {'blockNum': '0x7f51ed', 'uniqueId': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e:log:73', 'hash': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e', 'from': '0x7c963d491bda44c8cff7b35d290e45bdaec57381', 'to': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:31.000Z'}}, {'blockNum': '0x7f51ee', 'uniqueId': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db:log:45', 'hash': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:55.000Z'}}, {'blockNum': '0x7f51f0', 'uniqueId': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1:log:32', 'hash': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:32:50.000Z'}}, {'blockNum': '0x7f51f6', 'uniqueId': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184:log:28', 'hash': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184', 'from': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'to': '0x75599ecce86f8d1d90102a72762e0d898d823e73', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:34:43.000Z'}}, {'blockNum': '0x7f51fa', 'uniqueId': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2:log:90', 'hash': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:20.000Z'}}, {'blockNum': '0x7f5200', 'uniqueId': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f:log:25', 'hash': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:51.000Z'}}, {'blockNum': '0x7f521a', 'uniqueId': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7:log:27', 'hash': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:41:41.000Z'}}, {'blockNum': '0x7f521d', 'uniqueId': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88:log:0', 'hash': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:42:08.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f:log:130', 'hash': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62:log:154', 'hash': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62', 'from': '0x6d38eb10d3bd0702697776a10fc857dcbd2bb172', 'to': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f5236', 'uniqueId': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e:log:0', 'hash': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e', 'from': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'to': '0x2ad7cb7ce3b5cbaa02481e416d85f5954748d292', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:46:20.000Z'}}, {'blockNum': '0x7f5245', 'uniqueId': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be:log:64', 'hash': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:50:00.000Z'}}, {'blockNum': '0x7f524e', 'uniqueId': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8:log:0', 'hash': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:52:04.000Z'}}, {'blockNum': '0x7f525b', 'uniqueId': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32:log:0', 'hash': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32', 'from': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:54:33.000Z'}}, {'blockNum': '0x7f526c', 'uniqueId': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae:log:2', 'hash': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3771bb5030f0386a0dd80d3f3019ecb00d8c947f', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4526945a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:58:05.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4:log:56', 'hash': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 34428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x032196defc00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2:log:77', 'hash': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3173.93281631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x49e61d225f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7:log:126', 'hash': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f527d', 'uniqueId': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa:log:33', 'hash': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:23.000Z'}}, {'blockNum': '0x7f5281', 'uniqueId': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795:log:2', 'hash': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:43.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138:log:1', 'hash': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 7544.11222445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafa669b5ad', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33:log:2', 'hash': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a:log:3', 'hash': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40:log:4', 'hash': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 155695.96309408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e291441dfa0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952:log:5', 'hash': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486:log:6', 'hash': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5285', 'uniqueId': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e:log:14', 'hash': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 6664.8854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x9b2dd00b60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:30.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be:log:1', 'hash': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c:log:2', 'hash': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08:log:5', 'hash': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'value': 5066.18678391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e:log:6', 'hash': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3:log:8', 'hash': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3', 'from': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c:log:12', 'hash': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528f', 'uniqueId': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a:log:25', 'hash': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:53.000Z'}}, {'blockNum': '0x7f5290', 'uniqueId': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead:log:49', 'hash': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:01.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e:log:1', 'hash': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438:log:3', 'hash': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a:log:7', 'hash': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e:log:10', 'hash': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f529b', 'uniqueId': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163:log:2', 'hash': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 31887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02e66d54af00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:32.000Z'}}, {'blockNum': '0x7f529c', 'uniqueId': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53:log:2', 'hash': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:50.000Z'}}, {'blockNum': '0x7f529d', 'uniqueId': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355:log:4', 'hash': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:57.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0:log:0', 'hash': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 123058.71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0b312f11d1c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157:log:1', 'hash': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e:log:1', 'hash': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5:log:2', 'hash': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a1', 'uniqueId': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257:log:14', 'hash': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:43.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db:log:0', 'hash': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db', 'from': '0x41694ef21fd72e8e375b350e4c261c9edb5f6b52', 'to': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453:log:2', 'hash': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb:log:53', 'hash': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e:log:54', 'hash': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e:log:55', 'hash': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11803.4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0112d24fbc40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f:log:56', 'hash': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f', 'from': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd:log:57', 'hash': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da:log:59', 'hash': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06080433ab00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17:log:60', 'hash': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286:log:61', 'hash': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253:log:68', 'hash': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf:log:69', 'hash': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 166414.00813484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f22a0c8b7ac', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca:log:70', 'hash': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf:log:71', 'hash': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:110', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 191.91934267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477edad3b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:112', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:113', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1:log:65', 'hash': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715:log:69', 'hash': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92:log:3', 'hash': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3:log:33', 'hash': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955:log:0', 'hash': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 4820.048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7039b99200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0:log:11', 'hash': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d:log:13', 'hash': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52b2', 'uniqueId': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79:log:0', 'hash': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 7549.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafc9064c70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:58.000Z'}}, {'blockNum': '0x7f52b3', 'uniqueId': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33:log:31', 'hash': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:04.000Z'}}, {'blockNum': '0x7f52b4', 'uniqueId': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514:log:4', 'hash': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:19.000Z'}}, {'blockNum': '0x7f52b5', 'uniqueId': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c:log:36', 'hash': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:27.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0:log:84', 'hash': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:88', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:90', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:91', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6:log:1', 'hash': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a:log:2', 'hash': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bd', 'uniqueId': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139:log:116', 'hash': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:38.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb:log:0', 'hash': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d:log:3', 'hash': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c3', 'uniqueId': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f:log:2', 'hash': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 152799.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de5a19b9580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:16:15.000Z'}}, {'blockNum': '0x7f52c7', 'uniqueId': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7:log:11', 'hash': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:17:31.000Z'}}, {'blockNum': '0x7f52c8', 'uniqueId': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e:log:32', 'hash': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:03.000Z'}}, {'blockNum': '0x7f52ca', 'uniqueId': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08:log:50', 'hash': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:42.000Z'}}, {'blockNum': '0x7f52cf', 'uniqueId': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8:log:10', 'hash': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:06.000Z'}}, {'blockNum': '0x7f52d1', 'uniqueId': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326:log:44', 'hash': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:17.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378:log:50', 'hash': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b:log:51', 'hash': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021:log:52', 'hash': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9:log:53', 'hash': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093:log:54', 'hash': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd:log:55', 'hash': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139:log:56', 'hash': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139', 'from': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7:log:57', 'hash': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff:log:58', 'hash': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff', 'from': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c:log:59', 'hash': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 275857.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1916d0ad6740', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a:log:60', 'hash': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a', 'from': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87:log:61', 'hash': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12369.9671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012002bfde70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b:log:62', 'hash': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269:log:12', 'hash': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb:log:13', 'hash': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f:log:27', 'hash': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745:log:72', 'hash': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643:log:82', 'hash': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369:log:87', 'hash': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52dd', 'uniqueId': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30:log:1', 'hash': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:45.000Z'}}, {'blockNum': '0x7f52e1', 'uniqueId': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205:log:0', 'hash': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:09.000Z'}}, {'blockNum': '0x7f52e5', 'uniqueId': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5:log:14', 'hash': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5', 'from': '0xac26adcff2c83f7757b7894075516f2aac8a7482', 'to': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:33.000Z'}}, {'blockNum': '0x7f52fc', 'uniqueId': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69:log:59', 'hash': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:27:40.000Z'}}, {'blockNum': '0x7f52fe', 'uniqueId': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9:log:20', 'hash': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:28:11.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e:log:54', 'hash': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf:log:55', 'hash': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf', 'from': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af:log:59', 'hash': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb:log:66', 'hash': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5307', 'uniqueId': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44:log:21', 'hash': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:31:04.000Z'}}, {'blockNum': '0x7f5313', 'uniqueId': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce:log:1', 'hash': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:33:15.000Z'}}, {'blockNum': '0x7f5319', 'uniqueId': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55:log:2', 'hash': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:09.000Z'}}, {'blockNum': '0x7f531f', 'uniqueId': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b:log:0', 'hash': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:39.000Z'}}, {'blockNum': '0x7f5325', 'uniqueId': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213:log:2', 'hash': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:31.000Z'}}, {'blockNum': '0x7f5327', 'uniqueId': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963:log:14', 'hash': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:47.000Z'}}, {'blockNum': '0x7f532a', 'uniqueId': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4:log:102', 'hash': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:37:47.000Z'}}, {'blockNum': '0x7f5332', 'uniqueId': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2:log:26', 'hash': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2', 'from': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'to': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:39:42.000Z'}}, {'blockNum': '0x7f5335', 'uniqueId': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9:log:1', 'hash': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:13.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45:log:15', 'hash': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45', 'from': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5:log:16', 'hash': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5337', 'uniqueId': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9:log:20', 'hash': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:41:04.000Z'}}, {'blockNum': '0x7f5344', 'uniqueId': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb:log:51', 'hash': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb', 'from': '0x932ab43cbf53a7e48296e0b641f9620906ca5442', 'to': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:43:58.000Z'}}, {'blockNum': '0x7f534d', 'uniqueId': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53:log:121', 'hash': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53', 'from': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:45:11.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3:log:1', 'hash': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3', 'from': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5066.1867839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c76', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a:log:3', 'hash': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a', 'from': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2:log:6', 'hash': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5:log:54', 'hash': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71:log:55', 'hash': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f536b', 'uniqueId': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1:log:1', 'hash': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:34.000Z'}}, {'blockNum': '0x7f537c', 'uniqueId': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619:log:1', 'hash': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2621731.92038343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xee71f3fb27c7', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:53:26.000Z'}}, {'blockNum': '0x7f5380', 'uniqueId': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7:log:19', 'hash': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:54:06.000Z'}}, {'blockNum': '0x7f5387', 'uniqueId': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384:log:100', 'hash': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:55:54.000Z'}}, {'blockNum': '0x7f538c', 'uniqueId': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d:log:3', 'hash': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:56:40.000Z'}}, {'blockNum': '0x7f539a', 'uniqueId': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c:log:128', 'hash': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:00:15.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634:log:88', 'hash': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16:log:137', 'hash': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16', 'from': '0x4a544eced6941964488b2250b85cbdd731b5b0f3', 'to': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f53a1', 'uniqueId': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e:log:43', 'hash': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:29.000Z'}}, {'blockNum': '0x7f53a2', 'uniqueId': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a:log:52', 'hash': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:54.000Z'}}, {'blockNum': '0x7f53bb', 'uniqueId': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e:log:1', 'hash': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:08:08.000Z'}}, {'blockNum': '0x7f53c2', 'uniqueId': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55:log:56', 'hash': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55', 'from': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:09:59.000Z'}}, {'blockNum': '0x7f53c4', 'uniqueId': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915:log:8', 'hash': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 143100.63244587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0d03d23c852b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:10:44.000Z'}}, {'blockNum': '0x7f53c9', 'uniqueId': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72:log:42', 'hash': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:11:58.000Z'}}, {'blockNum': '0x7f53ce', 'uniqueId': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227:log:12', 'hash': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:11.000Z'}}, {'blockNum': '0x7f53cf', 'uniqueId': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf:log:69', 'hash': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:25.000Z'}}, {'blockNum': '0x7f53ea', 'uniqueId': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d:log:123', 'hash': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:17:49.000Z'}}, {'blockNum': '0x7f53ee', 'uniqueId': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721:log:14', 'hash': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:18:34.000Z'}}, {'blockNum': '0x7f53f2', 'uniqueId': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d:log:152', 'hash': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:16.000Z'}}, {'blockNum': '0x7f53f4', 'uniqueId': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d:log:63', 'hash': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:59.000Z'}}, {'blockNum': '0x7f53f6', 'uniqueId': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c:log:24', 'hash': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:20:35.000Z'}}, {'blockNum': '0x7f53f9', 'uniqueId': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420:log:76', 'hash': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:21:29.000Z'}}, {'blockNum': '0x7f53ff', 'uniqueId': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e:log:84', 'hash': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:23:13.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73:log:11', 'hash': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73', 'from': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 6078.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d848816e0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc:log:68', 'hash': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc', 'from': '0x3314df7c38a5bea1375dde468441718a7a9d58ca', 'to': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f541a', 'uniqueId': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73:log:38', 'hash': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73', 'from': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'to': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:28:08.000Z'}}, {'blockNum': '0x7f5444', 'uniqueId': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53:log:100', 'hash': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 794.02381337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x127cc03019', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:37:10.000Z'}}, {'blockNum': '0x7f5446', 'uniqueId': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573:log:13', 'hash': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:38:41.000Z'}}, {'blockNum': '0x7f544b', 'uniqueId': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c:log:0', 'hash': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:40:59.000Z'}}, {'blockNum': '0x7f545c', 'uniqueId': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58:log:88', 'hash': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58', 'from': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:44:20.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7:log:38', 'hash': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7', 'from': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790:log:50', 'hash': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790', 'from': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f5466', 'uniqueId': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43:log:2', 'hash': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:47:30.000Z'}}, {'blockNum': '0x7f5472', 'uniqueId': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2:log:55', 'hash': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:50:07.000Z'}}, {'blockNum': '0x7f5490', 'uniqueId': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c:log:67', 'hash': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c', 'from': '0xbd4c4bf61b48d9876f5bddd71328d678f55cf912', 'to': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:54:51.000Z'}}, {'blockNum': '0x7f5493', 'uniqueId': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7:log:90', 'hash': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:55:47.000Z'}}, {'blockNum': '0x7f5498', 'uniqueId': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff:log:3', 'hash': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:56:30.000Z'}}, {'blockNum': '0x7f549e', 'uniqueId': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d:log:4', 'hash': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d', 'from': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:57:55.000Z'}}, {'blockNum': '0x7f54ad', 'uniqueId': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf:log:53', 'hash': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:00:07.000Z'}}, {'blockNum': '0x7f54db', 'uniqueId': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938:log:15', 'hash': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938', 'from': '0x49847f0578bb43887d1d6832622572e86687702c', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 4992.084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x743b23ac80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:09:05.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e:log:76', 'hash': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f:log:78', 'hash': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668:log:80', 'hash': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447:log:59', 'hash': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x9e973080c3752dd5017f8242b70d3479587159c3', 'value': 588.67926574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db4cd462e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b:log:73', 'hash': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54ff', 'uniqueId': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea:log:73', 'hash': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:52.000Z'}}, {'blockNum': '0x7f5501', 'uniqueId': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11:log:1', 'hash': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:16:22.000Z'}}, {'blockNum': '0x7f5511', 'uniqueId': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1:log:57', 'hash': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 4691.10445333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6d39295515', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:20:31.000Z'}}, {'blockNum': '0x7f551a', 'uniqueId': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4:log:8', 'hash': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:23:40.000Z'}}, {'blockNum': '0x7f5531', 'uniqueId': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c:log:69', 'hash': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:30:54.000Z'}}, {'blockNum': '0x7f5535', 'uniqueId': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178:log:18', 'hash': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:31:31.000Z'}}, {'blockNum': '0x7f553d', 'uniqueId': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1:log:26', 'hash': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:32:32.000Z'}}, {'blockNum': '0x7f5546', 'uniqueId': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f:log:55', 'hash': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:08.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d:log:16', 'hash': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8:log:87', 'hash': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5555', 'uniqueId': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a:log:12', 'hash': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a', 'from': '0xcc60f38163459b9c2ce7852a8d95f5d09b088ac7', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 4410.177948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x66aeb580f0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:38:40.000Z'}}, {'blockNum': '0x7f5557', 'uniqueId': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788:log:1', 'hash': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:39.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc:log:77', 'hash': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc', 'from': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0:log:155', 'hash': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555e', 'uniqueId': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4:log:93', 'hash': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:41:52.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40:log:56', 'hash': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b:log:58', 'hash': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5593', 'uniqueId': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1:log:20', 'hash': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:53:45.000Z'}}, {'blockNum': '0x7f559c', 'uniqueId': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c:log:36', 'hash': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:55:53.000Z'}}, {'blockNum': '0x7f55c4', 'uniqueId': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca:log:34', 'hash': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:03:53.000Z'}}, {'blockNum': '0x7f55c6', 'uniqueId': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c:log:7', 'hash': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:04:30.000Z'}}, {'blockNum': '0x7f55d0', 'uniqueId': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3:log:64', 'hash': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:06:13.000Z'}}, {'blockNum': '0x7f5606', 'uniqueId': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919:log:30', 'hash': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'value': 1517.34660381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2354172d1d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:18:16.000Z'}}, {'blockNum': '0x7f560d', 'uniqueId': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1:log:0', 'hash': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:19:54.000Z'}}, {'blockNum': '0x7f561c', 'uniqueId': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337:log:0', 'hash': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:02.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47:log:0', 'hash': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1337.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1f26f9eee0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22:log:30', 'hash': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5627', 'uniqueId': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5:log:39', 'hash': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:24:35.000Z'}}, {'blockNum': '0x7f5641', 'uniqueId': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c:log:67', 'hash': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:30:01.000Z'}}, {'blockNum': '0x7f5661', 'uniqueId': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173:log:74', 'hash': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:37:04.000Z'}}, {'blockNum': '0x7f5666', 'uniqueId': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a:log:51', 'hash': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0x211c5addcc353255e48b4daec589780ca2d90718', 'value': 194.62217137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048809ddb1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:38:40.000Z'}}, {'blockNum': '0x7f566a', 'uniqueId': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9:log:30', 'hash': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:22.000Z'}}, {'blockNum': '0x7f566c', 'uniqueId': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11:log:15', 'hash': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:51.000Z'}}, {'blockNum': '0x7f5672', 'uniqueId': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a:log:104', 'hash': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:41:03.000Z'}}, {'blockNum': '0x7f569c', 'uniqueId': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904:log:62', 'hash': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:51:54.000Z'}}, {'blockNum': '0x7f56a7', 'uniqueId': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb:log:31', 'hash': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb', 'from': '0xb6467d542a8fc27a487c95366b7e52f20344d690', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 2906.984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x43aef99100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:53:55.000Z'}}, {'blockNum': '0x7f56d2', 'uniqueId': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff:log:49', 'hash': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:02:26.000Z'}}, {'blockNum': '0x7f5712', 'uniqueId': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8:log:5', 'hash': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1787.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x299e009f20', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:17.000Z'}}, {'blockNum': '0x7f5713', 'uniqueId': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c:log:71', 'hash': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c', 'from': '0x4f1a3226108ada7e32bc15bdec19a66fa23e7142', 'to': '0x47ca4d64d59435f4077f1890cdfbad9ba88fc18f', 'value': 608.0048605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e27fdcaa2', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:23.000Z'}}, {'blockNum': '0x7f5720', 'uniqueId': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29:log:6', 'hash': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc2574e3b4851923b91a6541831404fddc0205e87', 'value': 213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04f5943500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:20:33.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c:log:1', 'hash': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1:log:8', 'hash': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f5736', 'uniqueId': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed:log:5', 'hash': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 3125.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x48c4fa8e00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:25:22.000Z'}}, {'blockNum': '0x7f573f', 'uniqueId': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9:log:76', 'hash': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:01.000Z'}}, {'blockNum': '0x7f5742', 'uniqueId': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785:log:57', 'hash': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:29.000Z'}}, {'blockNum': '0x7f5758', 'uniqueId': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf:log:63', 'hash': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:32:46.000Z'}}, {'blockNum': '0x7f5759', 'uniqueId': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7:log:9', 'hash': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7', 'from': '0xc0fbdad8aab77e5bc53e7494732e95f486924bfb', 'to': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:33:04.000Z'}}, {'blockNum': '0x7f575e', 'uniqueId': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c:log:19', 'hash': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:23.000Z'}}, {'blockNum': '0x7f5761', 'uniqueId': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503:log:104', 'hash': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503', 'from': '0x1efa16b8ea27c61c92fe200e25628a6f047cedb2', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2263.039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x34b0c37960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:38.000Z'}}, {'blockNum': '0x7f5769', 'uniqueId': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66:log:15', 'hash': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:11.000Z'}}, {'blockNum': '0x7f576b', 'uniqueId': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f:log:107', 'hash': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:52.000Z'}}, {'blockNum': '0x7f5770', 'uniqueId': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456:log:50', 'hash': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:38:29.000Z'}}, {'blockNum': '0x7f5772', 'uniqueId': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674:log:12', 'hash': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:00.000Z'}}, {'blockNum': '0x7f5774', 'uniqueId': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60:log:11', 'hash': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:21.000Z'}}, {'blockNum': '0x7f5777', 'uniqueId': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f:log:99', 'hash': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f', 'from': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:46.000Z'}}, {'blockNum': '0x7f577d', 'uniqueId': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda:log:116', 'hash': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:42:01.000Z'}}, {'blockNum': '0x7f5799', 'uniqueId': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d:log:6', 'hash': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:47:01.000Z'}}, {'blockNum': '0x7f579f', 'uniqueId': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b:log:0', 'hash': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:48:49.000Z'}}, {'blockNum': '0x7f57a8', 'uniqueId': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a:log:10', 'hash': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:50:52.000Z'}}, {'blockNum': '0x7f57aa', 'uniqueId': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655:log:61', 'hash': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:51:02.000Z'}}, {'blockNum': '0x7f57cb', 'uniqueId': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136:log:80', 'hash': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:58:10.000Z'}}, {'blockNum': '0x7f57cf', 'uniqueId': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f:log:26', 'hash': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:00.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537:log:115', 'hash': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b:log:127', 'hash': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b', 'from': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d9', 'uniqueId': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4:log:11', 'hash': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4', 'from': '0x1c7ff422dfc0fbc97b44d4fa3a1fdf78d4f22ee2', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 1972.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2debd2f780', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:02:47.000Z'}}, {'blockNum': '0x7f57e6', 'uniqueId': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952:log:94', 'hash': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952', 'from': '0x4aacac980e59a270031b6c2903474c86aa66cc79', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:04:03.000Z'}}, {'blockNum': '0x7f5807', 'uniqueId': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5:log:100', 'hash': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:12:25.000Z'}}, {'blockNum': '0x7f5812', 'uniqueId': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979:log:9', 'hash': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:14:25.000Z'}}, {'blockNum': '0x7f5827', 'uniqueId': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256:log:3', 'hash': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:19:48.000Z'}}, {'blockNum': '0x7f5838', 'uniqueId': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0:log:24', 'hash': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0', 'from': '0x541b7e4992392c18253fb9f8232734e7e39bb471', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 1821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2a66017d00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:24:51.000Z'}}, {'blockNum': '0x7f5847', 'uniqueId': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f:log:8', 'hash': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:27:22.000Z'}}, {'blockNum': '0x7f584b', 'uniqueId': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91:log:93', 'hash': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:16.000Z'}}, {'blockNum': '0x7f584f', 'uniqueId': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2:log:11', 'hash': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 383242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x22db0c53ca00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:58.000Z'}}, {'blockNum': '0x7f5851', 'uniqueId': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3:log:106', 'hash': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 56630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0526851a7600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:29:49.000Z'}}, {'blockNum': '0x7f5860', 'uniqueId': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199:log:94', 'hash': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199', 'from': '0x64b8b7632fd1d57fec6630019082898f3a7f8d0d', 'to': '0xf96d8d1ee7ebf60dcc39aeb1427a2c7f712e1db0', 'value': 1627.24771183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x25e326f56f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:34:23.000Z'}}, {'blockNum': '0x7f586e', 'uniqueId': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59:log:2', 'hash': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:38:47.000Z'}}, {'blockNum': '0x7f586f', 'uniqueId': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640:log:2', 'hash': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:39:01.000Z'}}, {'blockNum': '0x7f5884', 'uniqueId': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762:log:10', 'hash': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:12.000Z'}}, {'blockNum': '0x7f5886', 'uniqueId': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f:log:33', 'hash': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f', 'from': '0x1ff9aeebc41b41af5df06123529a177f1a95827f', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1600.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2542880380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:43.000Z'}}, {'blockNum': '0x7f588b', 'uniqueId': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb:log:33', 'hash': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb', 'from': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:46:07.000Z'}}, {'blockNum': '0x7f5892', 'uniqueId': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c:log:101', 'hash': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd3e03a0c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:14.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe:log:61', 'hash': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4346e1a1b9bc181773878e1745d6b9aee8fb1320', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0:log:95', 'hash': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0', 'from': '0xa77cc27c89324245991576bef4be1d655a503ad4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1611.4326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2584e30360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5898', 'uniqueId': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd:log:0', 'hash': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:50:14.000Z'}}, {'blockNum': '0x7f58b5', 'uniqueId': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda:log:22', 'hash': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda', 'from': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:58:53.000Z'}}, {'blockNum': '0x7f58d5', 'uniqueId': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce:log:131', 'hash': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:07:46.000Z'}}, {'blockNum': '0x7f58fa', 'uniqueId': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763:log:129', 'hash': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:15:58.000Z'}}, {'blockNum': '0x7f58fc', 'uniqueId': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862:log:110', 'hash': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:16:21.000Z'}}, {'blockNum': '0x7f58ff', 'uniqueId': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765:log:82', 'hash': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:17:17.000Z'}}, {'blockNum': '0x7f591a', 'uniqueId': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da:log:79', 'hash': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da', 'from': '0x37d7be6ac2b154530f20fe465cba4cd44c6c3033', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1413.16040081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20e717a591', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:25:05.000Z'}}, {'blockNum': '0x7f594b', 'uniqueId': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883:log:8', 'hash': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:34:35.000Z'}}, {'blockNum': '0x7f5961', 'uniqueId': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797:log:15', 'hash': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'value': 29984.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba240b8f70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:38:18.000Z'}}, {'blockNum': '0x7f5974', 'uniqueId': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad:log:56', 'hash': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:41:51.000Z'}}, {'blockNum': '0x7f59ab', 'uniqueId': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829:log:44', 'hash': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:53:07.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:83', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:85', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:90', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59f5', 'uniqueId': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119:log:41', 'hash': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0xa5ad0e32ac5b7b4223c89dbb11054283c1d4efb2', 'value': 1402.04625002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20a4d8cc6a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:09.000Z'}}, {'blockNum': '0x7f59f7', 'uniqueId': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369:log:2', 'hash': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:38.000Z'}}, {'blockNum': '0x7f5a1b', 'uniqueId': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322:log:158', 'hash': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:19:54.000Z'}}, {'blockNum': '0x7f5a2d', 'uniqueId': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f:log:124', 'hash': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:22:10.000Z'}}, {'blockNum': '0x7f5a30', 'uniqueId': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd:log:32', 'hash': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:16.000Z'}}, {'blockNum': '0x7f5a33', 'uniqueId': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9:log:16', 'hash': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:58.000Z'}}, {'blockNum': '0x7f5a35', 'uniqueId': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710:log:60', 'hash': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:24:05.000Z'}}, {'blockNum': '0x7f5a5d', 'uniqueId': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a:log:13', 'hash': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:31:50.000Z'}}, {'blockNum': '0x7f5a73', 'uniqueId': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66:log:115', 'hash': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66', 'from': '0xcbb9e4ebdee8acf1004d2869b7329ae25733e884', 'to': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:36:42.000Z'}}, {'blockNum': '0x7f5a77', 'uniqueId': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40:log:22', 'hash': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:37:32.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7:log:17', 'hash': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669:log:18', 'hash': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669', 'from': '0xa18c51606d69f16efeafa8b88608aeca23a99295', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 1067.18000085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x18d8e373d5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a8a', 'uniqueId': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be:log:47', 'hash': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be', 'from': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:40:04.000Z'}}, {'blockNum': '0x7f5a90', 'uniqueId': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3:log:7', 'hash': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 270355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1896b15fb300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:06.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042:log:2', 'hash': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5:log:99', 'hash': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961:log:101', 'hash': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a9b', 'uniqueId': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e:log:95', 'hash': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:39.000Z'}}, {'blockNum': '0x7f5a9d', 'uniqueId': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e:log:8', 'hash': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:59.000Z'}}, {'blockNum': '0x7f5aa2', 'uniqueId': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7:log:114', 'hash': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:45:36.000Z'}}, {'blockNum': '0x7f5aae', 'uniqueId': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939:log:2', 'hash': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:48:38.000Z'}}, {'blockNum': '0x7f5acb', 'uniqueId': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322:log:116', 'hash': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:56:38.000Z'}}, {'blockNum': '0x7f5ad3', 'uniqueId': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57:log:52', 'hash': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:57:54.000Z'}}, {'blockNum': '0x7f5ad5', 'uniqueId': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7:log:38', 'hash': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:58:09.000Z'}}, {'blockNum': '0x7f5b04', 'uniqueId': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60:log:64', 'hash': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60', 'from': '0x4a6f0b865abdd8fc196d8b4e8b36a0c57ba72e40', 'to': '0xf050eb155416bdf5c34280e73a2a88a07efe3d25', 'value': 1750.85702986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x28c3ebcf4a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:09:35.000Z'}}, {'blockNum': '0x7f5b19', 'uniqueId': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21:log:77', 'hash': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x2036b75b900f5232de980fcb8d3aa1392e1be683', 'value': 3902.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5adf8b3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:14:12.000Z'}}, {'blockNum': '0x7f5bb2', 'uniqueId': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6:log:78', 'hash': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:48:40.000Z'}}, {'blockNum': '0x7f5bd7', 'uniqueId': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861:log:88', 'hash': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:57:00.000Z'}}, {'blockNum': '0x7f5bf6', 'uniqueId': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170:log:17', 'hash': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'value': 4807.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6fec8700d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:02:23.000Z'}}, {'blockNum': '0x7f5c01', 'uniqueId': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625:log:54', 'hash': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625', 'from': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'to': '0x81fa5e19f1d7535b9a82d37f601de49d3e4fbeb5', 'value': 5207.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x793cb690d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:03:52.000Z'}}, {'blockNum': '0x7f5c1d', 'uniqueId': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3:log:19', 'hash': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:10:49.000Z'}}, {'blockNum': '0x7f5c32', 'uniqueId': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a:log:38', 'hash': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a', 'from': '0x349808181eb8be943ccea6e780235e9c294c19fe', 'to': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:16:12.000Z'}}, {'blockNum': '0x7f5c40', 'uniqueId': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca:log:10', 'hash': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca', 'from': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:19:56.000Z'}}, {'blockNum': '0x7f5c75', 'uniqueId': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05:log:30', 'hash': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 16410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017e1338da00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:32.000Z'}}, {'blockNum': '0x7f5c76', 'uniqueId': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2:log:19', 'hash': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2', 'from': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:42.000Z'}}, {'blockNum': '0x7f5cb7', 'uniqueId': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3:log:2', 'hash': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:43:39.000Z'}}, {'blockNum': '0x7f5ced', 'uniqueId': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c:log:25', 'hash': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:53:50.000Z'}}, {'blockNum': '0x7f5cf7', 'uniqueId': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32:log:2', 'hash': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2341bc4817f1ca9ea7853541900aea1f9fe72e34', 'value': 761.256096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11b9709e80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:57:46.000Z'}}]}}
Number of returned transfers:  550
Answer is complete
 
symbol            DATA
group              BPF
date        2019-08-15
hour             20:00
exchange       binance
Name: 790, dtype: object
HERE
 Symbol: DATA, Contract: 0x8f693ca8d21b157107184d29d398a8d082b38b76
Datetime timestamps:  2019-08-15 20:00:00 2019-08-15 08:00:00 2019-08-16 08:00:00
Unix timestamps:  1565848800.0 1565935200.0
Hex Block Numbers:  0x7f7666 0x7f8f41
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             VIB
group              BPF
date        2019-08-21
hour             18:00
exchange       binance
Name: 791, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2019-08-21 18:00:00 2019-08-21 06:00:00 2019-08-22 06:00:00
Unix timestamps:  1566360000.0 1566446400.0
Hex Block Numbers:  0x800aec 0x8023fa
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x801136', 'uniqueId': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc:log:72', 'hash': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15450.667732554415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03459516999cb8078c63', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T10:01:06.000Z'}}, {'blockNum': '0x801136', 'uniqueId': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc:log:76', 'hash': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 15450.667732554415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03459516999cb8078c63', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T10:01:06.000Z'}}, {'blockNum': '0x8013fa', 'uniqueId': '0xeb52eda3b7bf3dc6906d79f04b3d7308ace9ff3901a6edf6104a3175c4f36e48:log:27', 'hash': '0xeb52eda3b7bf3dc6906d79f04b3d7308ace9ff3901a6edf6104a3175c4f36e48', 'from': '0x4fdfc48853f2be633e649d0d6e68847583c7021c', 'to': '0xeae051d6b2fbee50e1b530cb46faa9b9f1ccd629', 'value': 12321.254485100213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x029befc1596502be855e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T12:44:18.000Z'}}, {'blockNum': '0x801467', 'uniqueId': '0x32796b686dd768d909f34e483688bef138fc680c00e26c452070a7711730f2ad:log:74', 'hash': '0x32796b686dd768d909f34e483688bef138fc680c00e26c452070a7711730f2ad', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:04:14.000Z'}}, {'blockNum': '0x80146b', 'uniqueId': '0xebd8e56010fab780cd2bb3012f8d83b6abddfdd12d31926d34c22bb50123bfa0:log:111', 'hash': '0xebd8e56010fab780cd2bb3012f8d83b6abddfdd12d31926d34c22bb50123bfa0', 'from': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'to': '0x7d7ee7e4bb24a05c6da953dd51ca9625fae49ed1', 'value': 20118.90768765859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0442a5ee8b6255d769e5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:05:25.000Z'}}, {'blockNum': '0x801477', 'uniqueId': '0xf71a915a9fa976cf2a476a25c6505a42e33c90da8fb5836fd745f982b6a28486:log:7', 'hash': '0xf71a915a9fa976cf2a476a25c6505a42e33c90da8fb5836fd745f982b6a28486', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'value': 19928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04384c8e30ee50600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:08:15.000Z'}}, {'blockNum': '0x801648', 'uniqueId': '0x8e4178fdaebb3b2ad6e9cbbc057d3e87a7c63b558c8c58f02338f7c43c154a8d:log:1', 'hash': '0x8e4178fdaebb3b2ad6e9cbbc057d3e87a7c63b558c8c58f02338f7c43c154a8d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1876630571b6aca916b03854e1068baca4ca4dde', 'value': 6484.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f81a866803d1f0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T14:58:44.000Z'}}, {'blockNum': '0x8017eb', 'uniqueId': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f:log:87', 'hash': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:30:43.000Z'}}, {'blockNum': '0x8017eb', 'uniqueId': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f:log:91', 'hash': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:30:43.000Z'}}, {'blockNum': '0x8017ed', 'uniqueId': '0x2751b73aef3672359525af49cabba1cce0cdaa8d6a66348cd2fafcf5f3bcf3f0:log:27', 'hash': '0x2751b73aef3672359525af49cabba1cce0cdaa8d6a66348cd2fafcf5f3bcf3f0', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:31:21.000Z'}}, {'blockNum': '0x8017f1', 'uniqueId': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7:log:146', 'hash': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5733.27142830672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136cd1fd3defe740b28', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:32:55.000Z'}}, {'blockNum': '0x8017f1', 'uniqueId': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7:log:150', 'hash': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 5733.27142830672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136cd1fd3defe740b28', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:32:55.000Z'}}, {'blockNum': '0x8017f4', 'uniqueId': '0x539bff25bfb56e2daa9fcd11a62fc9bf9368b2fd5efe5de15056b6650e805823:log:93', 'hash': '0x539bff25bfb56e2daa9fcd11a62fc9bf9368b2fd5efe5de15056b6650e805823', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136c95b8543a2740000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:33:23.000Z'}}, {'blockNum': '0x801800', 'uniqueId': '0xd3b4079803364df17c394bf0a462eaac84a80ac1a36dd42ef47d310eb0f5d156:log:14', 'hash': '0xd3b4079803364df17c394bf0a462eaac84a80ac1a36dd42ef47d310eb0f5d156', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:36:36.000Z'}}, {'blockNum': '0x80181b', 'uniqueId': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250:log:79', 'hash': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11370.810185051509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026869b0e22b84f4bb54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:08.000Z'}}, {'blockNum': '0x80181b', 'uniqueId': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250:log:83', 'hash': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 11370.810185051509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026869b0e22b84f4bb54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:08.000Z'}}, {'blockNum': '0x80181f', 'uniqueId': '0x3e08c5cb3695bc5bcfbcc3e589a811257c739cdec278feda38e6f8b55651c660:log:106', 'hash': '0x3e08c5cb3695bc5bcfbcc3e589a811257c739cdec278feda38e6f8b55651c660', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02685e7287287f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:50.000Z'}}, {'blockNum': '0x801833', 'uniqueId': '0x53afefebdc731e6d88e473897f1415e3f19a9b6a1ad4df0bda35825b2635add6:log:24', 'hash': '0x53afefebdc731e6d88e473897f1415e3f19a9b6a1ad4df0bda35825b2635add6', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x039f27ce0c6c21dc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:47:23.000Z'}}, {'blockNum': '0x80185a', 'uniqueId': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb:log:88', 'hash': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11262.53923172772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02628b212fc41f8ded8a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:56:37.000Z'}}, {'blockNum': '0x80185a', 'uniqueId': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb:log:92', 'hash': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 11262.53923172772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02628b212fc41f8ded8a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:56:37.000Z'}}, {'blockNum': '0x80185d', 'uniqueId': '0xfa4ba4c86059525ebe71d9e5933acf647707d2a11b5515e13743a534e419ca2e:log:117', 'hash': '0xfa4ba4c86059525ebe71d9e5933acf647707d2a11b5515e13743a534e419ca2e', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026283a5735de1380000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:57:18.000Z'}}, {'blockNum': '0x801915', 'uniqueId': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1:log:14', 'hash': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11136.192841754739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025bb1b8a37f5f16a7fa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:37:50.000Z'}}, {'blockNum': '0x801915', 'uniqueId': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1:log:18', 'hash': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 11136.192841754739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025bb1b8a37f5f16a7fa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:37:50.000Z'}}, {'blockNum': '0x80191a', 'uniqueId': '0x281f5bd01f3588c2881635f15a36dbce1e9a454776c6db7afe78da8b36166437:log:4', 'hash': '0x281f5bd01f3588c2881635f15a36dbce1e9a454776c6db7afe78da8b36166437', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025baf0b86f17e000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:38:08.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0x81853b630d2abbc784dc233d103a0535353a956f93212f84d311f5002ae1fe19:log:5', 'hash': '0x81853b630d2abbc784dc233d103a0535353a956f93212f84d311f5002ae1fe19', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 20586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045bf823cab28f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8:log:41', 'hash': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8:log:45', 'hash': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355:log:56', 'hash': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355:log:60', 'hash': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c:log:87', 'hash': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33870.74030911024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x072c22f2684334360117', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c:log:91', 'hash': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 33870.74030911024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x072c22f2684334360117', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x58233ca3fea49b11b95e71fb35adfe763895899ba3e081c86306db6d5f7abebb:log:1', 'hash': '0x58233ca3fea49b11b95e71fb35adfe763895899ba3e081c86306db6d5f7abebb', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca:log:62', 'hash': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca:log:64', 'hash': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801984', 'uniqueId': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e:log:111', 'hash': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6251.3567305123715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0152e300914b2538c57a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:08.000Z'}}, {'blockNum': '0x801984', 'uniqueId': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e:log:115', 'hash': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 6251.3567305123715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0152e300914b2538c57a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:08.000Z'}}, {'blockNum': '0x801985', 'uniqueId': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91:log:21', 'hash': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:29.000Z'}}, {'blockNum': '0x801985', 'uniqueId': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91:log:25', 'hash': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:29.000Z'}}, {'blockNum': '0x801989', 'uniqueId': '0x034de49815fa919bc66ac1e6e2a43a2371be63571b52fce9935d701ea8350f31:log:5', 'hash': '0x034de49815fa919bc66ac1e6e2a43a2371be63571b52fce9935d701ea8350f31', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:02:13.000Z'}}, {'blockNum': '0x80198a', 'uniqueId': '0x59be7b9280a3484668323f1d477f188bd03a5960bc69ffd37270436ba24bbae1:log:0', 'hash': '0x59be7b9280a3484668323f1d477f188bd03a5960bc69ffd37270436ba24bbae1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'value': 5930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x014177481d8372680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:02:17.000Z'}}, {'blockNum': '0x801990', 'uniqueId': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175:log:11', 'hash': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1023.926950635287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3781d7489af5358fc5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:03:22.000Z'}}, {'blockNum': '0x801990', 'uniqueId': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175:log:15', 'hash': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 1023.926950635287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3781d7489af5358fc5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:03:22.000Z'}}, {'blockNum': '0x801993', 'uniqueId': '0x8aac85ba992630ef6e9d8e4a076063e9cf81fe01e4af76dcf15a8a29e1a4abfc:log:18', 'hash': '0x8aac85ba992630ef6e9d8e4a076063e9cf81fe01e4af76dcf15a8a29e1a4abfc', 'from': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 21865.37386922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d656fe916800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:04:23.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5:log:61', 'hash': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5:log:65', 'hash': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93:log:76', 'hash': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 29830.81939708991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065121c81f32c856c085', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93:log:80', 'hash': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 29830.81939708991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065121c81f32c856c085', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8:log:83', 'hash': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8:log:85', 'hash': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0x70d638344a7a1f4d66a78eac4d0df0d2d0bedec3d130b4683f4a0479e72f8d3c:log:116', 'hash': '0x70d638344a7a1f4d66a78eac4d0df0d2d0bedec3d130b4683f4a0479e72f8d3c', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 29830, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0651166909e2ee580000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x8019a0', 'uniqueId': '0x672e673884ee989a996995bb2220f57f0dc5e38a5f15eca1843e942e8a6b2ef6:log:5', 'hash': '0x672e673884ee989a996995bb2220f57f0dc5e38a5f15eca1843e942e8a6b2ef6', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045bf823cab28f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:07:02.000Z'}}, {'blockNum': '0x8019a0', 'uniqueId': '0xc475fb3d654c5da8737e98197c93448eaeac11f7ade9a6c6a417ebfa847f4f2c:log:6', 'hash': '0xc475fb3d654c5da8737e98197c93448eaeac11f7ade9a6c6a417ebfa847f4f2c', 'from': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x014177481d8372680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:07:02.000Z'}}, {'blockNum': '0x8019a8', 'uniqueId': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27:log:78', 'hash': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10021.857923497268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021f4937bb57808f09ca', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:10.000Z'}}, {'blockNum': '0x8019a8', 'uniqueId': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27:log:80', 'hash': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 10021.857923497268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021f4937bb57808f09ca', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:10.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0x06553aa38fa6d529d9f94dde985efbd5461dd47d9fa4610d2577b9adea2989d8:log:10', 'hash': '0x06553aa38fa6d529d9f94dde985efbd5461dd47d9fa4610d2577b9adea2989d8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 3890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd2e09835e58d880000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d:log:85', 'hash': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 29028.248587570622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06259fdfd424998850fe', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d:log:87', 'hash': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 29028.248587570622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06259fdfd424998850fe', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019cc', 'uniqueId': '0x025c22125137e56e29ad301c98edd26db95efe429b001164ee1b237ba0e5b351:log:1', 'hash': '0x025c22125137e56e29ad301c98edd26db95efe429b001164ee1b237ba0e5b351', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 12570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a96bcaf14924280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:37.000Z'}}, {'blockNum': '0x8019ce', 'uniqueId': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3:log:124', 'hash': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3', 'from': '0xda7ea1e36b2de20afb5a0457e8204d4db19a0fc6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5878.359064379703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013eaa9ea82c15cb4fab', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:59.000Z'}}, {'blockNum': '0x8019ce', 'uniqueId': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3:log:126', 'hash': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5878.359064379703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013eaa9ea82c15cb4fab', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:59.000Z'}}, {'blockNum': '0x8019d6', 'uniqueId': '0x4bcc5a5dda2e351949e5fb353fbc066779b02b70ac2bcf8564d76fabadac6ee8:log:6', 'hash': '0x4bcc5a5dda2e351949e5fb353fbc066779b02b70ac2bcf8564d76fabadac6ee8', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd2e09835e58d880000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:03.000Z'}}, {'blockNum': '0x8019d6', 'uniqueId': '0xc888e454ffdc2b2804fcc99d83c0c9dbaad1973f51d03691966cba2b34397b38:log:7', 'hash': '0xc888e454ffdc2b2804fcc99d83c0c9dbaad1973f51d03691966cba2b34397b38', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:03.000Z'}}, {'blockNum': '0x8019dd', 'uniqueId': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b:log:126', 'hash': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13796.531791907515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ebe9573794e6e383b3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:59.000Z'}}, {'blockNum': '0x8019dd', 'uniqueId': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b:log:128', 'hash': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 13796.531791907515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ebe9573794e6e383b3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:59.000Z'}}, {'blockNum': '0x8019e3', 'uniqueId': '0x4182b592fdf5e7e58f550423c6acd55a1350b1f73f371fc1e3c02d9f542e7599:log:5', 'hash': '0x4182b592fdf5e7e58f550423c6acd55a1350b1f73f371fc1e3c02d9f542e7599', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xccf499e50baa6f2e67b47b979c96214d4da09a17', 'value': 1766.044433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5fbcca36e8b9261000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:20:04.000Z'}}, {'blockNum': '0x8019ee', 'uniqueId': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313:log:88', 'hash': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4294.736842105263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe8d17253675b1af286', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:23:51.000Z'}}, {'blockNum': '0x8019ee', 'uniqueId': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313:log:90', 'hash': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4294.736842105263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe8d17253675b1af286', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:23:51.000Z'}}, {'blockNum': '0x8019fc', 'uniqueId': '0xbc124efddc26fb0c4ca0365590438e9878bdfe6c029f6e736c26b3c257ca957a:log:96', 'hash': '0xbc124efddc26fb0c4ca0365590438e9878bdfe6c029f6e736c26b3c257ca957a', 'from': '0xd285e34998278c899379c63f20ad1a094749319f', 'to': '0x66abd916b01aa58a966015f595f476d2059d89c2', 'value': 14466.766401532586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03103eb6e1fb01defd00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:26:55.000Z'}}, {'blockNum': '0x801a10', 'uniqueId': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c:log:115', 'hash': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5397.058823529412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0124933cb5282639e1e1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:30:46.000Z'}}, {'blockNum': '0x801a10', 'uniqueId': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c:log:117', 'hash': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5397.058823529412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0124933cb5282639e1e1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:30:46.000Z'}}, {'blockNum': '0x801a23', 'uniqueId': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1:log:53', 'hash': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4478.2217956814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2c3cfd48949c448bb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:35:11.000Z'}}, {'blockNum': '0x801a23', 'uniqueId': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1:log:55', 'hash': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4478.2217956814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2c3cfd48949c448bb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:35:11.000Z'}}, {'blockNum': '0x801a2e', 'uniqueId': '0x3e9ff58e6ccfcc4df08de4af207a29967675029c4a26cf836363db5bdb016605:log:5', 'hash': '0x3e9ff58e6ccfcc4df08de4af207a29967675029c4a26cf836363db5bdb016605', 'from': '0x66abd916b01aa58a966015f595f476d2059d89c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14466.766401532586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03103eb6e1fb01defd00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:36:59.000Z'}}, {'blockNum': '0x801a6b', 'uniqueId': '0x43455dd81ce5917111457a8e6732b48bc9d717f1e91e1d2ec5d5f4ab9783a620:log:11', 'hash': '0x43455dd81ce5917111457a8e6732b48bc9d717f1e91e1d2ec5d5f4ab9783a620', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a96bcaf14924280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:47:51.000Z'}}, {'blockNum': '0x801b58', 'uniqueId': '0x7f358cc20454203411f69501bed378fafd98fdbb4aca66efdd5d8e6edb393e77:log:38', 'hash': '0x7f358cc20454203411f69501bed378fafd98fdbb4aca66efdd5d8e6edb393e77', 'from': '0x7ef832d6e1d1ad4c3fd5f20d2bc234d2e5718264', 'to': '0x0a2c144387b2592a80a79e2239e2c89096340d37', 'value': 21.91428434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01301f2d80189b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T19:43:27.000Z'}}, {'blockNum': '0x801be9', 'uniqueId': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b:log:72', 'hash': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11698.994024001135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027a342818e6f55a7f54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:14:12.000Z'}}, {'blockNum': '0x801be9', 'uniqueId': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b:log:76', 'hash': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 11698.994024001135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027a342818e6f55a7f54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:14:12.000Z'}}, {'blockNum': '0x801bf2', 'uniqueId': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a:log:52', 'hash': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4308.235294117647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe98cc675fdbae78787', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:16:56.000Z'}}, {'blockNum': '0x801bf2', 'uniqueId': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a:log:54', 'hash': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4308.235294117647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe98cc675fdbae78787', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:16:56.000Z'}}, {'blockNum': '0x801bf5', 'uniqueId': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87:log:48', 'hash': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7390.758729883487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0190a761a2e93a72f7cd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:17:24.000Z'}}, {'blockNum': '0x801bf5', 'uniqueId': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87:log:50', 'hash': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7390.758729883487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0190a761a2e93a72f7cd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:17:24.000Z'}}, {'blockNum': '0x801e4c', 'uniqueId': '0xaa940ea0fe8f0565a61fe6b6ea8d104ff0a3df65385c26d028bb997594d7b10d:log:3', 'hash': '0xaa940ea0fe8f0565a61fe6b6ea8d104ff0a3df65385c26d028bb997594d7b10d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb5d47502a7334d7d42a4380ab97b3b0dc05d8cff', 'value': 690.5756742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x256fa9a4dbb0e37000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T22:30:44.000Z'}}, {'blockNum': '0x801ef3', 'uniqueId': '0xb02b286106e33f526aef0cc9d3dd236206f6eb256bf8af594753ef52dd02bd4d:log:1', 'hash': '0xb02b286106e33f526aef0cc9d3dd236206f6eb256bf8af594753ef52dd02bd4d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xab9b3cf6ca4d61cd31b37a0bfac5d24017331511', 'value': 427.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x172cc11902077e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:07:39.000Z'}}, {'blockNum': '0x801f99', 'uniqueId': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45:log:113', 'hash': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:42:34.000Z'}}, {'blockNum': '0x801f99', 'uniqueId': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45:log:117', 'hash': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:42:34.000Z'}}, {'blockNum': '0x801ffe', 'uniqueId': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f:log:58', 'hash': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:05:16.000Z'}}, {'blockNum': '0x801ffe', 'uniqueId': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f:log:60', 'hash': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:05:16.000Z'}}, {'blockNum': '0x80208f', 'uniqueId': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4:log:37', 'hash': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10636.338596417807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024098d99fb4744f7bf9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:39:13.000Z'}}, {'blockNum': '0x80208f', 'uniqueId': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4:log:41', 'hash': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 10636.338596417807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024098d99fb4744f7bf9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:39:13.000Z'}}, {'blockNum': '0x802094', 'uniqueId': '0xa443462860b1ffe4f086f62b9bd8ad363b25c91dd80f1b165e619b652ec77148:log:81', 'hash': '0xa443462860b1ffe4f086f62b9bd8ad363b25c91dd80f1b165e619b652ec77148', 'from': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'to': '0x4b0bd28395fa9bd4cb9a110a06ac4af6161a9446', 'value': 20118.909272016324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0442a5f42c595dd1d955', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:40:48.000Z'}}]}}
Number of returned transfers:  90
Answer is complete
 
symbol             SNT
group              BPF
date        2019-08-22
hour             20:00
exchange       binance
Name: 792, dtype: object
HERE
 Symbol: SNT, Contract: 0x744d70fdbe2ba4cf95131626614a1763df805b9e
Datetime timestamps:  2019-08-22 20:00:00 2019-08-22 08:00:00 2019-08-23 08:00:00
Unix timestamps:  1566453600.0 1566540000.0
Hex Block Numbers:  0x802612 0x803f44
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x80265b', 'uniqueId': '0x6ff0e40b3a236ed1efe9989bf4610b3c256c7d265a9e3f3383f9788069204c47:log:25', 'hash': '0x6ff0e40b3a236ed1efe9989bf4610b3c256c7d265a9e3f3383f9788069204c47', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x1958d9f482a95610012a4407d8f859962617f405', 'value': 59967.2696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb2d50afcfd210e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:14:08.000Z'}}, {'blockNum': '0x802675', 'uniqueId': '0xe43860ea4c7ff98126fd2f7077bc5b1be6f7f531f1fd769eb4ff86d72861e23e:log:48', 'hash': '0xe43860ea4c7ff98126fd2f7077bc5b1be6f7f531f1fd769eb4ff86d72861e23e', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x31d1afdeede7fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:19:28.000Z'}}, {'blockNum': '0x8026ae', 'uniqueId': '0xe534009a3e0afefe0b1f6c0e845ed59f7dbab7e5bc6e5a84c4a05737bb675c43:log:99', 'hash': '0xe534009a3e0afefe0b1f6c0e845ed59f7dbab7e5bc6e5a84c4a05737bb675c43', 'from': '0xa11618bba2eb61cf30c9bf360de802298dfdf2b8', 'to': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:34:17.000Z'}}, {'blockNum': '0x8026b3', 'uniqueId': '0x5fbef8efe7131b0f79f1f9a7a199fd0ae93d9966eacb2b9e427e93a6f9ee9c65:log:138', 'hash': '0x5fbef8efe7131b0f79f1f9a7a199fd0ae93d9966eacb2b9e427e93a6f9ee9c65', 'from': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'to': '0xbac772ca07b12475e31ef61bf296738da9c05bd0', 'value': 47.749462068089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0296a82ac3706f2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:35:56.000Z'}}, {'blockNum': '0x8026d9', 'uniqueId': '0xb42c57ee8e50454a14e9adfe4823841d2df21baa7599f89ec0e7c844672eceeb:log:39', 'hash': '0xb42c57ee8e50454a14e9adfe4823841d2df21baa7599f89ec0e7c844672eceeb', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 275.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ef5fdebcb984e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:43:19.000Z'}}, {'blockNum': '0x8026f5', 'uniqueId': '0x6353063062f24a43e5b96f6835c7b9841918d24796a8a40a388c79635421f470:log:48', 'hash': '0x6353063062f24a43e5b96f6835c7b9841918d24796a8a40a388c79635421f470', 'from': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:48:22.000Z'}}, {'blockNum': '0x80271c', 'uniqueId': '0x2f00e595cef718b48aaa355166d0166ffe745048f186578819309bdac9f3a792:log:35', 'hash': '0x2f00e595cef718b48aaa355166d0166ffe745048f186578819309bdac9f3a792', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'value': 589.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffa81cc936aee0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:59:11.000Z'}}, {'blockNum': '0x80271c', 'uniqueId': '0xad5f423a742099853b77137bed3982f8159ebdff14fd3abc1b46232bef4bcadc:log:53', 'hash': '0xad5f423a742099853b77137bed3982f8159ebdff14fd3abc1b46232bef4bcadc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd175e14675b048668a8ee7b471ccd8233f5ebc34', 'value': 1222.31292439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4242ffd8a42ad97c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T06:59:11.000Z'}}, {'blockNum': '0x802769', 'uniqueId': '0xe3ff401c7fcc834ddbd79319f177ee196c3eb876e206346eb57ba10cff8b85d3:log:2', 'hash': '0xe3ff401c7fcc834ddbd79319f177ee196c3eb876e206346eb57ba10cff8b85d3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 271726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x398a4bc515f360f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:16:57.000Z'}}, {'blockNum': '0x802797', 'uniqueId': '0x400c1fabc5d7c8af094a4a6293d210c6e0da73ff843e93081dc677a01128089c:log:1', 'hash': '0x400c1fabc5d7c8af094a4a6293d210c6e0da73ff843e93081dc677a01128089c', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'value': 593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2025873626bea40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:28:54.000Z'}}, {'blockNum': '0x8027b2', 'uniqueId': '0xa263f7abdd3edd3a286686872e9d59b560f80bea3c9c7d30df2fd6bdb0e1421d:log:2', 'hash': '0xa263f7abdd3edd3a286686872e9d59b560f80bea3c9c7d30df2fd6bdb0e1421d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1c7ac55f29ec70f9b76b502085bbcd87436afd1c', 'value': 3661001.67026328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03073f4c580e4b43e76000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:34:13.000Z'}}, {'blockNum': '0x8027d0', 'uniqueId': '0x14f30a896e972008d9a12bf75e27d34d16446b88bba449e7965dca6fd8b6b063:log:147', 'hash': '0x14f30a896e972008d9a12bf75e27d34d16446b88bba449e7965dca6fd8b6b063', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1182.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x40200902ba29920000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:39:48.000Z'}}, {'blockNum': '0x8027d1', 'uniqueId': '0xf86a209ed080df9fac4ecc9642ac8a9fb860f76bcfb83041183474374c3e2368:log:0', 'hash': '0xf86a209ed080df9fac4ecc9642ac8a9fb860f76bcfb83041183474374c3e2368', 'from': '0x1c7ac55f29ec70f9b76b502085bbcd87436afd1c', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 3661001.67026328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03073f4c580e4b43e76000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:40:03.000Z'}}, {'blockNum': '0x8027d3', 'uniqueId': '0xbf5248d64635f1e5c1f34d2e3133462c7def4c3a82b09fd9fb64f0a5f738a6a1:log:81', 'hash': '0xbf5248d64635f1e5c1f34d2e3133462c7def4c3a82b09fd9fb64f0a5f738a6a1', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 271726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x398a4bc515f360f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T07:40:15.000Z'}}, {'blockNum': '0x802878', 'uniqueId': '0xf0369c8ae1991e26f0debc8fbc0edfa3c2fa83fad915d93455cfb18aea0c310b:log:3', 'hash': '0xf0369c8ae1991e26f0debc8fbc0edfa3c2fa83fad915d93455cfb18aea0c310b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:14:38.000Z'}}, {'blockNum': '0x80288f', 'uniqueId': '0xaf8680944159df476fb8bbda63ca6f4c23ee0b0ffc279616463c03fd541b6d2d:log:1', 'hash': '0xaf8680944159df476fb8bbda63ca6f4c23ee0b0ffc279616463c03fd541b6d2d', 'from': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:20:05.000Z'}}, {'blockNum': '0x8028c5', 'uniqueId': '0xea69e73feee8683f9f0c1374c2f08f148898183670417a8394c81b1a890afdc3:log:68', 'hash': '0xea69e73feee8683f9f0c1374c2f08f148898183670417a8394c81b1a890afdc3', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xdba5803f0f8a536fada095c2cfc2ef4673006179', 'value': 330.21896659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11e6b57089dd88ec00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:30:27.000Z'}}, {'blockNum': '0x80294a', 'uniqueId': '0x62aed0b82823869552fc5a2d630dcaf6bcf75af88e8b8b1384c71455c0a208d3:log:113', 'hash': '0x62aed0b82823869552fc5a2d630dcaf6bcf75af88e8b8b1384c71455c0a208d3', 'from': '0xdba5803f0f8a536fada095c2cfc2ef4673006179', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 330.21896659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11e6b57089dd88ec00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T08:57:16.000Z'}}, {'blockNum': '0x802991', 'uniqueId': '0x9ce73f753d4b8130d5fb1024d0815295a6e0d475f5750d59fa121a217c4453eb:log:1', 'hash': '0x9ce73f753d4b8130d5fb1024d0815295a6e0d475f5750d59fa121a217c4453eb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0fea8a99e2ab08a0682e92eef13e9b321a9c9a0e', 'value': 69937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ecf4ad88de4ae240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:12:48.000Z'}}, {'blockNum': '0x802992', 'uniqueId': '0xe378471203737dee344ffe9f174b2204f2189114ea3c379db011b554689a53ae:log:0', 'hash': '0xe378471203737dee344ffe9f174b2204f2189114ea3c379db011b554689a53ae', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2e963951560b51800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:13:06.000Z'}}, {'blockNum': '0x80299d', 'uniqueId': '0x82abc6e28fd09465c761557ce56345bb7d2e391d4a0d5347f1c16891aa194f95:log:2', 'hash': '0x82abc6e28fd09465c761557ce56345bb7d2e391d4a0d5347f1c16891aa194f95', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x2f6355703674c89a94a9bc18d75a41356bc062dd', 'value': 3799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcdf1b744090cfc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:14:51.000Z'}}, {'blockNum': '0x80299d', 'uniqueId': '0x3eddacf8317cee22de57aad7dfcb5a8b768019cdb86b2995efedd264833e519b:log:3', 'hash': '0x3eddacf8317cee22de57aad7dfcb5a8b768019cdb86b2995efedd264833e519b', 'from': '0x0fea8a99e2ab08a0682e92eef13e9b321a9c9a0e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 69937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ecf4ad88de4ae240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:14:51.000Z'}}, {'blockNum': '0x8029a2', 'uniqueId': '0x5c35c4749b6945061fa843bd167b25accb5742d9c548e41a5bd72c4edc8807a4:log:3', 'hash': '0x5c35c4749b6945061fa843bd167b25accb5742d9c548e41a5bd72c4edc8807a4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0508a457516059a73956122252a1f22cba48298d', 'value': 40872.917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08a7b9ab518130a88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:16:19.000Z'}}, {'blockNum': '0x8029ab', 'uniqueId': '0xb5900a4108c51d55de31eced2c5af9d71391082a9222b43557222c8e148461f4:log:97', 'hash': '0xb5900a4108c51d55de31eced2c5af9d71391082a9222b43557222c8e148461f4', 'from': '0xe829f7947175fe6a338344e70aa770a8c134372c', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:18:36.000Z'}}, {'blockNum': '0x8029b2', 'uniqueId': '0x918e57b313492ddd3a28a37d0b3b75d12e8aa587e6cc3ec58570b7b617a7c294:log:4', 'hash': '0x918e57b313492ddd3a28a37d0b3b75d12e8aa587e6cc3ec58570b7b617a7c294', 'from': '0x0508a457516059a73956122252a1f22cba48298d', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 40872.917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08a7b9ab518130a88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:20:14.000Z'}}, {'blockNum': '0x8029b5', 'uniqueId': '0x6f050f4e7b8dac3bf959144e11ebb7db8ada0d8dd25db5e1e9bb5af038270140:log:2', 'hash': '0x6f050f4e7b8dac3bf959144e11ebb7db8ada0d8dd25db5e1e9bb5af038270140', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2e963951560b51800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:21:04.000Z'}}, {'blockNum': '0x8029bb', 'uniqueId': '0x9abe7cd8bd2a2474e5c655839e388b097dd99ac7b176a570ddefa519e077dcec:log:0', 'hash': '0x9abe7cd8bd2a2474e5c655839e388b097dd99ac7b176a570ddefa519e077dcec', 'from': '0x2f6355703674c89a94a9bc18d75a41356bc062dd', 'to': '0x2724a9fed47d947b33660ce0ee0d150c6ee18c90', 'value': 3799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcdf1b744090cfc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:21:41.000Z'}}, {'blockNum': '0x8029f8', 'uniqueId': '0xa6968ec8d0eb2d55398469d0b3d01f2de8a930deeaebcc76075b197942e37a54:log:4', 'hash': '0xa6968ec8d0eb2d55398469d0b3d01f2de8a930deeaebcc76075b197942e37a54', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfc573e8059e0cda91fa70866e34e94d77d0c78b0', 'value': 49937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a931716fa6f49a40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:33:01.000Z'}}, {'blockNum': '0x802a14', 'uniqueId': '0xfd66125831217802fead5da071824e2ef59ffe8e8cc92b5a88fc9b75e8a8b841:log:12', 'hash': '0xfd66125831217802fead5da071824e2ef59ffe8e8cc92b5a88fc9b75e8a8b841', 'from': '0xb8e7b196d974342125c1814a9eb6fb0c969f3feb', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:38:51.000Z'}}, {'blockNum': '0x802a20', 'uniqueId': '0xccf03d07e88fbb0b813932a3d2cf10ab7e9f63505b47c2c15d009191b6270b97:log:110', 'hash': '0xccf03d07e88fbb0b813932a3d2cf10ab7e9f63505b47c2c15d009191b6270b97', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x9bb09599c3d0e531a3671144baf4bedc380924f7', 'value': 6371.8932425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01596bc8485104742800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:42:27.000Z'}}, {'blockNum': '0x802a38', 'uniqueId': '0xc53672d00945213296030dbef1d01c946e48fe2367c6e485be195b711f1e04a6:log:1', 'hash': '0xc53672d00945213296030dbef1d01c946e48fe2367c6e485be195b711f1e04a6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 8151.698282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b9e789fdee3408a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:47:23.000Z'}}, {'blockNum': '0x802a59', 'uniqueId': '0x22989c6607d08ba62daa70988aa3252715b8d1006ba2f1d362a452df09349f63:log:19', 'hash': '0x22989c6607d08ba62daa70988aa3252715b8d1006ba2f1d362a452df09349f63', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x4b0552288ad7bdfc7ecd4b68e989c21b277367cc', 'value': 5718.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013601cb7f73e4560000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T09:57:31.000Z'}}, {'blockNum': '0x802b06', 'uniqueId': '0xd6163ad3cbcdb0211dffa89d5d49d6673f516bd705d7197956c2b8052c119e24:log:0', 'hash': '0xd6163ad3cbcdb0211dffa89d5d49d6673f516bd705d7197956c2b8052c119e24', 'from': '0x2e46956565cebdcbbb39ecd22af02e1916a2fe37', 'to': '0xce474a2582168e0ed0cbf780c179944e11442e8a', 'value': 1469.89436142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4faee1cde09cbdf800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:34:37.000Z'}}, {'blockNum': '0x802b09', 'uniqueId': '0xae9dab58504834cdeb77cca5217ca9f7e850879278d4d483e5e009329fc99975:log:0', 'hash': '0xae9dab58504834cdeb77cca5217ca9f7e850879278d4d483e5e009329fc99975', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 105991.9426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1671d5b0515201048000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:35:00.000Z'}}, {'blockNum': '0x802b14', 'uniqueId': '0x797c1c600e615794d98605848a90432e1ca29d161ae34cfb588a04e803234bbf:log:43', 'hash': '0x797c1c600e615794d98605848a90432e1ca29d161ae34cfb588a04e803234bbf', 'from': '0x5d0c10ebc713012f82f2859e2f47a9ee8d1318a3', 'to': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:37:28.000Z'}}, {'blockNum': '0x802b38', 'uniqueId': '0x94b0945a14385df451e19351f176783fae288b44d2f37900007ab7396badcb65:log:67', 'hash': '0x94b0945a14385df451e19351f176783fae288b44d2f37900007ab7396badcb65', 'from': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:43:35.000Z'}}, {'blockNum': '0x802b3d', 'uniqueId': '0x2786cfe8eea9e28ca64a3cdc44a37e06164645ac577ccaf531f7c9e701ca6475:log:9', 'hash': '0x2786cfe8eea9e28ca64a3cdc44a37e06164645ac577ccaf531f7c9e701ca6475', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 590.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffd48578426020000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:44:17.000Z'}}, {'blockNum': '0x802b48', 'uniqueId': '0xeef12fda5c729c6c16b5d89156ecb7508b799f3f19cf8ddffb3cc8b3ca9107cf:log:27', 'hash': '0xeef12fda5c729c6c16b5d89156ecb7508b799f3f19cf8ddffb3cc8b3ca9107cf', 'from': '0x2ae9a596883947605c654425e6cca6e0da44a9e0', 'to': '0x8e673532276aaad90e7ed82aeb7d832676671fd5', 'value': 6985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x017aa8590be247840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:46:16.000Z'}}, {'blockNum': '0x802b5b', 'uniqueId': '0xe0efa63024865416caa4e04a7c3b56b2e5ac791dc8d593cf66a382ecb832e268:log:11', 'hash': '0xe0efa63024865416caa4e04a7c3b56b2e5ac791dc8d593cf66a382ecb832e268', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T10:51:07.000Z'}}, {'blockNum': '0x802bad', 'uniqueId': '0x29699bc3b83f9ad3b74844e2fe877881108a3f06dcf35aec384fb95ecaab0d1c:log:42', 'hash': '0x29699bc3b83f9ad3b74844e2fe877881108a3f06dcf35aec384fb95ecaab0d1c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 18172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d91b28f89e1e700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:09:20.000Z'}}, {'blockNum': '0x802baf', 'uniqueId': '0x986dc332af65553ba1b9c6afce772b71c1c097aa41d82ed974e781a1db228942:log:111', 'hash': '0x986dc332af65553ba1b9c6afce772b71c1c097aa41d82ed974e781a1db228942', 'from': '0xcb7e9e305fa4afa4cf5b414120c560ad3ed75a53', 'to': '0x478a746989ce31623b0e8c919186993b6d2ccd1c', 'value': 66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0393ef1a5127c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:09:44.000Z'}}, {'blockNum': '0x802bb6', 'uniqueId': '0x94c4057a43066145dd57501105a145664d6246c201ff3dec8fafa38231e0068d:log:26', 'hash': '0x94c4057a43066145dd57501105a145664d6246c201ff3dec8fafa38231e0068d', 'from': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:11:09.000Z'}}, {'blockNum': '0x802bb6', 'uniqueId': '0x430e5ec6dfcbd7f60b5e6a8332576a99a97a3131fccdc972e0eb83b21fb8f632:log:32', 'hash': '0x430e5ec6dfcbd7f60b5e6a8332576a99a97a3131fccdc972e0eb83b21fb8f632', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 18172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d91b28f89e1e700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:11:09.000Z'}}, {'blockNum': '0x802be2', 'uniqueId': '0xc1c2a92531fc7eae18b106ecc14d989cce0c4377bba7be07abc74f0366012208:log:34', 'hash': '0xc1c2a92531fc7eae18b106ecc14d989cce0c4377bba7be07abc74f0366012208', 'from': '0x9bf947bab6453996d47bef43a1d9e5bbbe18d26a', 'to': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:21:03.000Z'}}, {'blockNum': '0x802c09', 'uniqueId': '0x1624e8722480fd49c12992634cc5752d43d82d95d17591c4b5fc200c99333d88:log:13', 'hash': '0x1624e8722480fd49c12992634cc5752d43d82d95d17591c4b5fc200c99333d88', 'from': '0x15e2f19fdeaf67983b335a5ab31aec0881505085', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:28:08.000Z'}}, {'blockNum': '0x802c75', 'uniqueId': '0x09c2ecd1ccc0bc559c939d6078b90b4c8b7c747ab03e78ecedbcb3c043218bad:log:10', 'hash': '0x09c2ecd1ccc0bc559c939d6078b90b4c8b7c747ab03e78ecedbcb3c043218bad', 'from': '0xfc573e8059e0cda91fa70866e34e94d77d0c78b0', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 45217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x099337ee6a1105e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T11:53:36.000Z'}}, {'blockNum': '0x802cbc', 'uniqueId': '0xdadefb1cff892f283ccb6a06454914fae2db74615f7b5ef992aed110d3eaba7f:log:64', 'hash': '0xdadefb1cff892f283ccb6a06454914fae2db74615f7b5ef992aed110d3eaba7f', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x099337ee6a1105e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:11:03.000Z'}}, {'blockNum': '0x802cee', 'uniqueId': '0x1a5d76a41ad0f108941a7e5f5664db938b6dc8585805ca084c62c1ddd52f7c45:log:82', 'hash': '0x1a5d76a41ad0f108941a7e5f5664db938b6dc8585805ca084c62c1ddd52f7c45', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 694542.87007688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x93133e930915eb262000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:25:34.000Z'}}, {'blockNum': '0x802cf3', 'uniqueId': '0x3d7f08b225d37a32f586f425d8a6604f5bca91e81818be8ea76cc8735c6966ed:log:41', 'hash': '0x3d7f08b225d37a32f586f425d8a6604f5bca91e81818be8ea76cc8735c6966ed', 'from': '0xc834ab4df4dcb346268152860e5bfa73bde6bdda', 'to': '0xd493f4a19de6497c0458fef2d7e3b21fb91a800d', 'value': 2150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x748d3e68cfd1d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:26:02.000Z'}}, {'blockNum': '0x802d0e', 'uniqueId': '0x8ce2534196a5b3f399fb6f13c8952d7b2c872edce14d07600c2628fce595a4bd:log:2', 'hash': '0x8ce2534196a5b3f399fb6f13c8952d7b2c872edce14d07600c2628fce595a4bd', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 694542.87007688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x93133e930915eb262000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:31:12.000Z'}}, {'blockNum': '0x802d11', 'uniqueId': '0xa8d0eaf3da5edf81771a1b43901e4b62c20d6b80d5d6dcac55ab61ea096c477f:log:95', 'hash': '0xa8d0eaf3da5edf81771a1b43901e4b62c20d6b80d5d6dcac55ab61ea096c477f', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:31:53.000Z'}}, {'blockNum': '0x802d11', 'uniqueId': '0xdd307408e61169afb0b6deeeacf36d780cd1cde36dcad923460a9f91876c5f4e:log:103', 'hash': '0xdd307408e61169afb0b6deeeacf36d780cd1cde36dcad923460a9f91876c5f4e', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:31:53.000Z'}}, {'blockNum': '0x802d24', 'uniqueId': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc:log:122', 'hash': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7771.774303662996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a54f08e08e75b41709', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:37:15.000Z'}}, {'blockNum': '0x802d24', 'uniqueId': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc:log:124', 'hash': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 7771.774303662996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a54f08e08e75b41709', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:37:15.000Z'}}, {'blockNum': '0x802d24', 'uniqueId': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc:log:129', 'hash': '0xe91cef504ab7f9755edfdb281465d287318a107d3383ea6df57934e8c8b9f0fc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 7771.766531888692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a54eed442b3f0f2374', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T12:37:15.000Z'}}, {'blockNum': '0x802d89', 'uniqueId': '0xbac2cce4c1921d1bb896e34dfb98159323f433f818e2077dfa2aca7610c0d582:log:77', 'hash': '0xbac2cce4c1921d1bb896e34dfb98159323f433f818e2077dfa2aca7610c0d582', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 17487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3f8e019e737dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:00:51.000Z'}}, {'blockNum': '0x802da9', 'uniqueId': '0x4e03c616c451a6d14c521ec46e37c295e7e9872ebd41053b339a814c2f412fa9:log:58', 'hash': '0x4e03c616c451a6d14c521ec46e37c295e7e9872ebd41053b339a814c2f412fa9', 'from': '0xbac772ca07b12475e31ef61bf296738da9c05bd0', 'to': '0x080b406a7b163463cc312a73506582ac88bbb991', 'value': 47.749462068089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0296a82ac3706f2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:06:42.000Z'}}, {'blockNum': '0x802daa', 'uniqueId': '0xa7bc973a8ad36d1e8d14a3d5800660e96d1ebb5bf296adb3a8a5f022d16a224f:log:98', 'hash': '0xa7bc973a8ad36d1e8d14a3d5800660e96d1ebb5bf296adb3a8a5f022d16a224f', 'from': '0x79d35007e8879fbaf95011aab0c7311cf7287861', 'to': '0x61b9898c9b60a159fc91ae8026563cd226b7a0c1', 'value': 817000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xad01a8a3947b7ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:06:49.000Z'}}, {'blockNum': '0x802daf', 'uniqueId': '0x532cc218bb1d1b933078f3dcd2eb23fe7a0a9c4c2341ef019647db550a66ab75:log:7', 'hash': '0x532cc218bb1d1b933078f3dcd2eb23fe7a0a9c4c2341ef019647db550a66ab75', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe2f6e3565a96cd24d6ba985563a26fb3c93cad04', 'value': 436.617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17ab47303438ba8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:08:06.000Z'}}, {'blockNum': '0x802dbc', 'uniqueId': '0x964c3f69dae903643d845ccedf28b94aea6cc14c9e236f7839bdd4dd6fddbd66:log:20', 'hash': '0x964c3f69dae903643d845ccedf28b94aea6cc14c9e236f7839bdd4dd6fddbd66', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 451737.98505332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fa8c3e6bb92a22f5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:10:05.000Z'}}, {'blockNum': '0x802dcf', 'uniqueId': '0x1707df55c43e9ac6237c334beedd6b06cfbf3fda55a1c096b5653f11031cc570:log:0', 'hash': '0x1707df55c43e9ac6237c334beedd6b06cfbf3fda55a1c096b5653f11031cc570', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:14:46.000Z'}}, {'blockNum': '0x802dd3', 'uniqueId': '0xb2d35fe816af1cb01a001ccf7d237666f872de23dea35f8f8e8602cd79f38ec9:log:95', 'hash': '0xb2d35fe816af1cb01a001ccf7d237666f872de23dea35f8f8e8602cd79f38ec9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'value': 149970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc1e3d668e2d4080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:16:16.000Z'}}, {'blockNum': '0x802de7', 'uniqueId': '0xf2c74fe0ee8728a35531cf6031dddfa2296e71d15a157a226bfde6a6c8ca9fb7:log:3', 'hash': '0xf2c74fe0ee8728a35531cf6031dddfa2296e71d15a157a226bfde6a6c8ca9fb7', 'from': '0x1b59f24e9bbc0a04909af81fb325d78fbbf495ec', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:20:23.000Z'}}, {'blockNum': '0x802de7', 'uniqueId': '0xf3a31ba43f16393995d58aee9ba5559bab843d2655f6eef5cba9d93440f34eca:log:4', 'hash': '0xf3a31ba43f16393995d58aee9ba5559bab843d2655f6eef5cba9d93440f34eca', 'from': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 149970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc1e3d668e2d4080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:20:23.000Z'}}, {'blockNum': '0x802dec', 'uniqueId': '0x13429bf48d49472ae98f03f654f60c803ef7342eb917f300420f42b72a927535:log:12', 'hash': '0x13429bf48d49472ae98f03f654f60c803ef7342eb917f300420f42b72a927535', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x04c9f7e0055bf9fe9ab03255d8cdae2a78e824df', 'value': 79937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10ed64b9579f60640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:22:13.000Z'}}, {'blockNum': '0x802dfc', 'uniqueId': '0xac722394ef534f9a3503dc6359143ac7c621f37b3ba9086e682c131fcb21f51a:log:15', 'hash': '0xac722394ef534f9a3503dc6359143ac7c621f37b3ba9086e682c131fcb21f51a', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 451737.98505332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fa8c3e6bb92a22f5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:26:23.000Z'}}, {'blockNum': '0x802e0e', 'uniqueId': '0x3c951a72cb5d36d38be2bc2446746320edb300488771c5e4358ccb23bc732795:log:1', 'hash': '0x3c951a72cb5d36d38be2bc2446746320edb300488771c5e4358ccb23bc732795', 'from': '0x04c9f7e0055bf9fe9ab03255d8cdae2a78e824df', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 79937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10ed64b9579f60640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:29:55.000Z'}}, {'blockNum': '0x802e15', 'uniqueId': '0x71fa185b24592e66f36c22d401c28ade5ba995e7f454fb7428cf375234038576:log:63', 'hash': '0x71fa185b24592e66f36c22d401c28ade5ba995e7f454fb7428cf375234038576', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x2e074988d3f10177d32ed95cdc7097d7c44fdce4', 'value': 231285.5151295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x30fa034d4f1a49871800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:30:59.000Z'}}, {'blockNum': '0x802e17', 'uniqueId': '0x509f4f92bec008413c309467c7469f9a13bf51da98357b6723d2a080b7534678:log:62', 'hash': '0x509f4f92bec008413c309467c7469f9a13bf51da98357b6723d2a080b7534678', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 238250.35403534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x327393dbc2aa870a7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:31:16.000Z'}}, {'blockNum': '0x802e4a', 'uniqueId': '0xe40101573fbb8f777e79a06cbe6f7579f402ee3354985c3ab5a04c896c3ac490:log:12', 'hash': '0xe40101573fbb8f777e79a06cbe6f7579f402ee3354985c3ab5a04c896c3ac490', 'from': '0x2e074988d3f10177d32ed95cdc7097d7c44fdce4', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 231285.5151295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x30fa034d4f1a49871800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:42:16.000Z'}}, {'blockNum': '0x802e4a', 'uniqueId': '0x8620fc5e4ff2b780f208fa3e2b1c47dcaadafdfa74e5c514ce582086a3051497:log:14', 'hash': '0x8620fc5e4ff2b780f208fa3e2b1c47dcaadafdfa74e5c514ce582086a3051497', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 238250.35403534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x327393dbc2aa870a7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T13:42:16.000Z'}}, {'blockNum': '0x802e99', 'uniqueId': '0xcb111fd187d22f7b75a531ff38ea958661de6e50f707382f41560da393b38211:log:123', 'hash': '0xcb111fd187d22f7b75a531ff38ea958661de6e50f707382f41560da393b38211', 'from': '0x9932cb6c321c8373c3d8eb687e9371e833bee9b7', 'to': '0xb782c27f02b66b91968a695072c4f2300a303a6e', 'value': 3342.601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb533e84ba4117a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:00:02.000Z'}}, {'blockNum': '0x802eaf', 'uniqueId': '0xcf888ab966e67d3e6556755738ae1ceca02495471901f713635cc47ec11ba460:log:2', 'hash': '0xcf888ab966e67d3e6556755738ae1ceca02495471901f713635cc47ec11ba460', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 61054.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cedc13b7cfc164c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:05:36.000Z'}}, {'blockNum': '0x802eb2', 'uniqueId': '0xdcff0053e1ab09c4a41ac608898e094c632568a42ab84444a829246077ae7e5e:log:27', 'hash': '0xdcff0053e1ab09c4a41ac608898e094c632568a42ab84444a829246077ae7e5e', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xa0203891993c6e0bb7519676b0a66eb14ce79aa5', 'value': 3700.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc89e5cac887e9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:06:09.000Z'}}, {'blockNum': '0x802eb5', 'uniqueId': '0x4ac7376ddf5c155e3914c746c69f7c8d57b3cd448af72c304dc7fad8ce916861:log:17', 'hash': '0x4ac7376ddf5c155e3914c746c69f7c8d57b3cd448af72c304dc7fad8ce916861', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0152de0d34c856cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:06:19.000Z'}}, {'blockNum': '0x802ec5', 'uniqueId': '0x30a71497a98b48223cce27cf3a772dd0c90458e81bc94b144971e6bd496260cc:log:77', 'hash': '0x30a71497a98b48223cce27cf3a772dd0c90458e81bc94b144971e6bd496260cc', 'from': '0xb782c27f02b66b91968a695072c4f2300a303a6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3342.601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb533e84ba4117a8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:10:59.000Z'}}, {'blockNum': '0x802ef1', 'uniqueId': '0xf19c9ca9638c58292e482eb2762d987543f828150ba83d6f776c177e7d2c7755:log:2', 'hash': '0xf19c9ca9638c58292e482eb2762d987543f828150ba83d6f776c177e7d2c7755', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 61054.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cedc13b7cfc164c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:26:13.000Z'}}, {'blockNum': '0x802f09', 'uniqueId': '0xbb436ec1a31d2ba13229647977b52a22fc60ab83df48ccaeb0f0c7ccfbbe591b:log:65', 'hash': '0xbb436ec1a31d2ba13229647977b52a22fc60ab83df48ccaeb0f0c7ccfbbe591b', 'from': '0xa0203891993c6e0bb7519676b0a66eb14ce79aa5', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 3700.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc89e5cac887e9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:33:34.000Z'}}, {'blockNum': '0x802f39', 'uniqueId': '0xe4afaaee34bb837703422537f66043efcde1490a61e755a6279d4dad1a6c1e88:log:20', 'hash': '0xe4afaaee34bb837703422537f66043efcde1490a61e755a6279d4dad1a6c1e88', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'value': 4196.181812344968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe379b88600f0aea68f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:44:53.000Z'}}, {'blockNum': '0x802f43', 'uniqueId': '0xf1f95a444d20d2c84289ad43f8fb359391610a8dcead5104b4e59e19cd008b55:log:102', 'hash': '0xf1f95a444d20d2c84289ad43f8fb359391610a8dcead5104b4e59e19cd008b55', 'from': '0xcf2272205cc0cf96cfbb9dd740bd681d1e86901e', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:46:23.000Z'}}, {'blockNum': '0x802f46', 'uniqueId': '0xf491bf18bb09955c50feb2f138c5e2e6e4184a503e6c4b103572aac469d441b3:log:52', 'hash': '0xf491bf18bb09955c50feb2f138c5e2e6e4184a503e6c4b103572aac469d441b3', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0152de0d34c856cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:46:57.000Z'}}, {'blockNum': '0x802f5f', 'uniqueId': '0xb614e2e3d3763937c43ad203bd07d921fa8289bbad24251baa45762401d56c5f:log:9', 'hash': '0xb614e2e3d3763937c43ad203bd07d921fa8289bbad24251baa45762401d56c5f', 'from': '0x56a7e72942a25d07ba05fa1a4f736cd11830e171', 'to': '0xd1eaa6f996998f2713a5d3773f17798c095331a6', 'value': 1429776.8913900275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x012ec45c4fac98ec4fa7d4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:53:01.000Z'}}, {'blockNum': '0x802f6c', 'uniqueId': '0x541800bd665298ccd8106dcf498a50dbd6758b20bbd4a6edf6aa6def3e23c2df:log:39', 'hash': '0x541800bd665298ccd8106dcf498a50dbd6758b20bbd4a6edf6aa6def3e23c2df', 'from': '0xd1eaa6f996998f2713a5d3773f17798c095331a6', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 1429776.8913900275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x012ec45c4fac98ec4fa7d4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T14:56:15.000Z'}}, {'blockNum': '0x802f9c', 'uniqueId': '0xa98ef812e5ac2f626866321d812f6b5c95fef8de32ef0c289db9e03dda351e58:log:11', 'hash': '0xa98ef812e5ac2f626866321d812f6b5c95fef8de32ef0c289db9e03dda351e58', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 61117.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cf12b88733247e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:08:13.000Z'}}, {'blockNum': '0x802fee', 'uniqueId': '0x17395798804991d53c5d6e7dcf6b8916e98565bcba29f7cdde85b7ef0d049c4e:log:49', 'hash': '0x17395798804991d53c5d6e7dcf6b8916e98565bcba29f7cdde85b7ef0d049c4e', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0xafb6b4965d5a36c23b6416030cc06413e2bc9f3e', 'value': 337.149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1246e4572037951000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:24:33.000Z'}}, {'blockNum': '0x802ff9', 'uniqueId': '0x583ec1a1b751f9cf9a530ae1b59f5eaa29aca513008ccfd6c30fd9700258b71a:log:23', 'hash': '0x583ec1a1b751f9cf9a530ae1b59f5eaa29aca513008ccfd6c30fd9700258b71a', 'from': '0xafb6b4965d5a36c23b6416030cc06413e2bc9f3e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 337.149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1246e4572037951000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:28:26.000Z'}}, {'blockNum': '0x80301d', 'uniqueId': '0xf472459110d1d180c08712fedb0eff10aeb286feb259d778d91cf91fac0cec38:log:6', 'hash': '0xf472459110d1d180c08712fedb0eff10aeb286feb259d778d91cf91fac0cec38', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 266558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3872235ccb302e380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:37:10.000Z'}}, {'blockNum': '0x803032', 'uniqueId': '0x0e13018268600c016b3710bdb93426a0c50af287c32031f91a7284b5b3a8d2a0:log:43', 'hash': '0x0e13018268600c016b3710bdb93426a0c50af287c32031f91a7284b5b3a8d2a0', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 266558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3872235ccb302e380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:41:09.000Z'}}, {'blockNum': '0x803059', 'uniqueId': '0x20cd4cc757163886e2fef4c2341c3e72727df39d7ac4e42b750f3d420f0dae1d:log:28', 'hash': '0x20cd4cc757163886e2fef4c2341c3e72727df39d7ac4e42b750f3d420f0dae1d', 'from': '0xdeeedf35c86a199fb1aa0b5d1f32d7ca4075aad5', 'to': '0xb32b9b08dde5a578ff6af6927af1fd5553d88e05', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:48:49.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:37', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 6360.61715670319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf4b94070cb9f9f7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:39', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6360.61715670319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf4b94070cb9f9f7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:44', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6360.610796086033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf34fb14768c8621', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x80307c', 'uniqueId': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a:log:46', 'hash': '0x029fc38dfdff83568da47b8f593cacf5cff0c7512537d2c251ecca1c56e5f40a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 6360.610796086033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0158cf34fb14768c8621', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:26.000Z'}}, {'blockNum': '0x803080', 'uniqueId': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0:log:29', 'hash': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4254.288843355284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a01e2ad7e32f98dc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:55.000Z'}}, {'blockNum': '0x803080', 'uniqueId': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0:log:31', 'hash': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 4254.288843355284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a01e2ad7e32f98dc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:55.000Z'}}, {'blockNum': '0x803080', 'uniqueId': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0:log:36', 'hash': '0xf843b6655d3bbca5b8f544994df3c1b5f81f79009d9d42b8e845f05a8943b9c0', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 4254.288843355284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe6a01e2ad7e32f98dc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:56:55.000Z'}}, {'blockNum': '0x803086', 'uniqueId': '0x32599eff6f55dde9c4ee49df89db71369ba8ce2741aec9805679c2b4f046ef06:log:0', 'hash': '0x32599eff6f55dde9c4ee49df89db71369ba8ce2741aec9805679c2b4f046ef06', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T15:58:39.000Z'}}, {'blockNum': '0x803090', 'uniqueId': '0x2ab88bcb547bad17f59239dcdf86252123672d0654c648fccb0d3d3b030e28b3:log:68', 'hash': '0x2ab88bcb547bad17f59239dcdf86252123672d0654c648fccb0d3d3b030e28b3', 'from': '0xb32b9b08dde5a578ff6af6927af1fd5553d88e05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T16:00:37.000Z'}}, {'blockNum': '0x8030b9', 'uniqueId': '0xd707f8c8a239f1de5976a6d2ebcab030e42e947df4b6d6f7fb62cf38f7909d26:log:53', 'hash': '0xd707f8c8a239f1de5976a6d2ebcab030e42e947df4b6d6f7fb62cf38f7909d26', 'from': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T16:11:16.000Z'}}, {'blockNum': '0x803198', 'uniqueId': '0x547251a447d3df704f18d14bf96787779d62c9df1aab886ee458e7dcb69efc96:log:90', 'hash': '0x547251a447d3df704f18d14bf96787779d62c9df1aab886ee458e7dcb69efc96', 'from': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'to': '0x0b0334a135d8f037bd6121a53b1620f8e26f1786', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:03:33.000Z'}}, {'blockNum': '0x8031b5', 'uniqueId': '0xe8cb62e52f9b416ab8f4e72ae10fda0612da438675c86826ec0adbae12986a77:log:1', 'hash': '0xe8cb62e52f9b416ab8f4e72ae10fda0612da438675c86826ec0adbae12986a77', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf1df6526fa58bf7b411439e0843f6d9a5aa73526', 'value': 4937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010ba2a36ea727840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:09:23.000Z'}}, {'blockNum': '0x8031b8', 'uniqueId': '0x1b93c82bbfa54ed10b9110a4cacb109e4237f6d7c25104a898999f5a6337cffb:log:0', 'hash': '0x1b93c82bbfa54ed10b9110a4cacb109e4237f6d7c25104a898999f5a6337cffb', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1ef454fe3ecdbda61285754687d5f329b5221049', 'value': 9007.14926575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e8474e67470d3ddc00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:09:49.000Z'}}, {'blockNum': '0x8031cc', 'uniqueId': '0x014149330f05c48b0ab13e0b7349a1c7aaf6da8fdefa10445423d58e64aa09bd:log:9', 'hash': '0x014149330f05c48b0ab13e0b7349a1c7aaf6da8fdefa10445423d58e64aa09bd', 'from': '0xf1df6526fa58bf7b411439e0843f6d9a5aa73526', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010ba2a36ea727840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:13:32.000Z'}}, {'blockNum': '0x803213', 'uniqueId': '0x99703b3d6920849fbe442f3f0d4de6a110c60bc00dcafece2f8a6a5120b66999:log:6', 'hash': '0x99703b3d6920849fbe442f3f0d4de6a110c60bc00dcafece2f8a6a5120b66999', 'from': '0x1ef454fe3ecdbda61285754687d5f329b5221049', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 9007.14926575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e8474e67470d3ddc00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:26:19.000Z'}}, {'blockNum': '0x803254', 'uniqueId': '0x02dffd490885e48e4027847cc08687a88e087929a800236e5a25c3087aad994e:log:7', 'hash': '0x02dffd490885e48e4027847cc08687a88e087929a800236e5a25c3087aad994e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x9b350e05c4e60cfd5db3c0c87bbfd9205eb4b322', 'value': 28709.748759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06145bcd218adad47000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T17:41:13.000Z'}}, {'blockNum': '0x8032f6', 'uniqueId': '0x4c410cfce20ac8b70b1798f8409c9a91e17244288f22a056aa8f457a21dbcdb6:log:8', 'hash': '0x4c410cfce20ac8b70b1798f8409c9a91e17244288f22a056aa8f457a21dbcdb6', 'from': '0x4b0552288ad7bdfc7ecd4b68e989c21b277367cc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5718.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013601cb7f73e4560000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:21:11.000Z'}}, {'blockNum': '0x8032f6', 'uniqueId': '0x7b794ce84869c0e7d85ea6803eeab35af5e88110bb8fb9eebf4e7edb1ad30540:log:10', 'hash': '0x7b794ce84869c0e7d85ea6803eeab35af5e88110bb8fb9eebf4e7edb1ad30540', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0117661e4cf00b480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:21:11.000Z'}}, {'blockNum': '0x803312', 'uniqueId': '0xf59fe190e81178b7a709cc89c3daa6dad912a5f09b7664048e5f68a8b4562b34:log:29', 'hash': '0xf59fe190e81178b7a709cc89c3daa6dad912a5f09b7664048e5f68a8b4562b34', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 110817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x177766cfbe5edee40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:25:55.000Z'}}, {'blockNum': '0x803314', 'uniqueId': '0x7d97e5092532caaed28e5e708d86c3044a8175c75abeb6f9523e5bad4432c072:log:6', 'hash': '0x7d97e5092532caaed28e5e708d86c3044a8175c75abeb6f9523e5bad4432c072', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 60543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd20ae841703a9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:26:39.000Z'}}, {'blockNum': '0x803318', 'uniqueId': '0x0eb17c9b840a8523ef60ae75ced985a83aee6e34dffcf4c03132ef8cc189c428:log:86', 'hash': '0x0eb17c9b840a8523ef60ae75ced985a83aee6e34dffcf4c03132ef8cc189c428', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x7c9b4b635d3db87080d30d65806696d30bbe6dd8', 'value': 15.662312217351518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd95bb5faac7f764b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:27:45.000Z'}}, {'blockNum': '0x803328', 'uniqueId': '0x14c86b706cfa42d77cc5f4ce2f6cc1469cd78d782930d674ab07ccbe9255cfe6:log:1', 'hash': '0x14c86b706cfa42d77cc5f4ce2f6cc1469cd78d782930d674ab07ccbe9255cfe6', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 167109.1426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x23630138c48448ec8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:31:09.000Z'}}, {'blockNum': '0x803335', 'uniqueId': '0x03025ef5ba0437566e7e228d56ccd892c1c801be4f1710cdf09c85594406c6ca:log:5', 'hash': '0x03025ef5ba0437566e7e228d56ccd892c1c801be4f1710cdf09c85594406c6ca', 'from': '0x2e46956565cebdcbbb39ecd22af02e1916a2fe37', 'to': '0x87894d45701c7a31d662a357ab25ff9a1c988968', 'value': 1004.8811076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x367986db461f15a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:34:21.000Z'}}, {'blockNum': '0x803338', 'uniqueId': '0x85d08851dedd90abca6aa654bb1f50300e635663790cb2e8a2ee9afedaab52bf:log:67', 'hash': '0x85d08851dedd90abca6aa654bb1f50300e635663790cb2e8a2ee9afedaab52bf', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'value': 77526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106ab160a9a5e5980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:34:57.000Z'}}, {'blockNum': '0x80333e', 'uniqueId': '0x7d4eee9f29116a066ed614e558482e3549795f629a83e163d8d0bcc87b59b6ab:log:96', 'hash': '0x7d4eee9f29116a066ed614e558482e3549795f629a83e163d8d0bcc87b59b6ab', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 93834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13dec057562933e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:35:36.000Z'}}, {'blockNum': '0x803355', 'uniqueId': '0xc1944c7900e4ff4deef31f50cc7729bcd2c0a99c46eba6fae49ee456613d17cc:log:3', 'hash': '0xc1944c7900e4ff4deef31f50cc7729bcd2c0a99c46eba6fae49ee456613d17cc', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 93834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13dec057562933e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:39:46.000Z'}}, {'blockNum': '0x80335c', 'uniqueId': '0x1ebda6586637745b3cc89954f406b182e6e2ba1fac57ed554ba5e04f0834e085:log:15', 'hash': '0x1ebda6586637745b3cc89954f406b182e6e2ba1fac57ed554ba5e04f0834e085', 'from': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106ab160a9a5e5980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:41:07.000Z'}}, {'blockNum': '0x80335e', 'uniqueId': '0x8b5e6ce0bdaec07299c2cdfe99cd9d1b850da6ac24dbdcea049b16a1dbd8a7f5:log:106', 'hash': '0x8b5e6ce0bdaec07299c2cdfe99cd9d1b850da6ac24dbdcea049b16a1dbd8a7f5', 'from': '0x77c370b04cf2a97417f3329062fa57dfca9ba999', 'to': '0x3ec83e4903a1218f7642614a6cadd924bd7cc436', 'value': 303.02318762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x106d4a9fa79ca56800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:41:58.000Z'}}, {'blockNum': '0x803391', 'uniqueId': '0xf545fa616052f854fec06aa1842844087f12a410ee5b80a2b35db5f34b0d7f2f:log:26', 'hash': '0xf545fa616052f854fec06aa1842844087f12a410ee5b80a2b35db5f34b0d7f2f', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 17487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3f8e019e737dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T18:53:45.000Z'}}, {'blockNum': '0x8033eb', 'uniqueId': '0xa03e2a1e58ae916155400bef98d869661b7002de21e00bdaef539b86566548fe:log:1', 'hash': '0xa03e2a1e58ae916155400bef98d869661b7002de21e00bdaef539b86566548fe', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x092c017c5949e43c8191d7545271d94212a0984e', 'value': 10968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0252a06a3e981616c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:13:06.000Z'}}, {'blockNum': '0x803449', 'uniqueId': '0x52e056f4d4e23c739a514178f4379eb80bae8d7c1a052860ea6355c8e7a40d61:log:4', 'hash': '0x52e056f4d4e23c739a514178f4379eb80bae8d7c1a052860ea6355c8e7a40d61', 'from': '0x7c9b4b635d3db87080d30d65806696d30bbe6dd8', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:34:47.000Z'}}, {'blockNum': '0x803459', 'uniqueId': '0x06633c521b4232b474ce0e6129f43b6a91f439a7518f580e15413bf636234d7c:log:51', 'hash': '0x06633c521b4232b474ce0e6129f43b6a91f439a7518f580e15413bf636234d7c', 'from': '0x4e1a6ebc1eef08a38d0f5fb0b6251d0266e940ca', 'to': '0x30a49f875e351f964b0f2016e2ed5daba42e708b', 'value': 8021.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b2dd88396acb490000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:38:02.000Z'}}, {'blockNum': '0x80346d', 'uniqueId': '0x787b7c864363e65c1a02a4c5494ffb3d371c1f811e3130aec9237e398456df50:log:3', 'hash': '0x787b7c864363e65c1a02a4c5494ffb3d371c1f811e3130aec9237e398456df50', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa550c651f807aeaa82662b43012732b85cac9e50', 'value': 2355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7faa30b6acdcec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:42:45.000Z'}}, {'blockNum': '0x80348b', 'uniqueId': '0x5c6e10dac178fa31a39392935099d5f79578b87ba5da3c0be648c9e84de7b9d9:log:0', 'hash': '0x5c6e10dac178fa31a39392935099d5f79578b87ba5da3c0be648c9e84de7b9d9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 357173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ba2631acc5793b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:48:51.000Z'}}, {'blockNum': '0x8034a8', 'uniqueId': '0x6fb14df444a189053fad11566ecc5478604ee875f3112b3596de4ff22d043077:log:1', 'hash': '0x6fb14df444a189053fad11566ecc5478604ee875f3112b3596de4ff22d043077', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 83889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11c3a1bdcd0778240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:55:41.000Z'}}, {'blockNum': '0x8034a8', 'uniqueId': '0x2cb898b300c9665f4dc9e9046fe70b2a9862c6d50387cda2e8880fcc1481f0f7:log:5', 'hash': '0x2cb898b300c9665f4dc9e9046fe70b2a9862c6d50387cda2e8880fcc1481f0f7', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T19:55:41.000Z'}}, {'blockNum': '0x8034be', 'uniqueId': '0xec3acf5434a554314e0fc02613a907426629b2ead5c42f4c254c843dc5e88973:log:2', 'hash': '0xec3acf5434a554314e0fc02613a907426629b2ead5c42f4c254c843dc5e88973', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 406449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5611a4fa08e7a8240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:08.000Z'}}, {'blockNum': '0x8034bf', 'uniqueId': '0x054f486d452dfb5acb2be20aebb56b9f51a7912147840e4cc0a42e81bfeee077:log:0', 'hash': '0x054f486d452dfb5acb2be20aebb56b9f51a7912147840e4cc0a42e81bfeee077', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 36445.60952590821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07b7b86f7eb2cf676911', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:19.000Z'}}, {'blockNum': '0x8034bf', 'uniqueId': '0xa3bea8e6ee3deed61ad594de74caa4338d42b3cbabc2e876c9fbf8c48e50d012:log:2', 'hash': '0xa3bea8e6ee3deed61ad594de74caa4338d42b3cbabc2e876c9fbf8c48e50d012', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8c2fd1f3ae6162fd3cb3157222dc3979b42e699e', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:19.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c:log:7', 'hash': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 30395.00911750311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x066fb77ca8b57c23f98d', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c:log:9', 'hash': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 30395.00911750311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x066fb77ca8b57c23f98d', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c:log:14', 'hash': '0x6489c94afc741613f33e88c746ab886fe827f75e2ce59d521b38dee65d1d676c', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 30394.978722493994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x066fb710ac9bf2bf3b07', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7:log:18', 'hash': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7:log:20', 'hash': '0x3696fb1188ce65585b4a6bbaaeec17256cf74fc50bd35fe3c3df9a7f1fca1fa7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230:log:99', 'hash': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 35904.33392502378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x079a60ba437ec09fdd99', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c0', 'uniqueId': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230:log:103', 'hash': '0x6345e0bead2bc2aff544f84d1e0e3255a277ef1c5053765a22155d0a8253f230', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 35904.33392502378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x079a60ba437ec09fdd99', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:47.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430:log:11', 'hash': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33609.81815569577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x071dfdecb42828c84378', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430:log:15', 'hash': '0x0d67a7fab406196bd0f7a70e9b992fb03a6bcafb1097b24c4813fc6b87a50430', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 33609.81815569577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x071dfdecb42828c84378', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3:log:31', 'hash': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 20214.05125905593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0447ce50697a4e5a14cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3:log:33', 'hash': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20214.05125905593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0447ce50697a4e5a14cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3:log:35', 'hash': '0x9f3274c247b88dbfbed2bf0a9560114cef17a301cd513bb65bca290df56411c3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 20214.05125905593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0447ce50697a4e5a14cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15:log:47', 'hash': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 19537.2684995676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04231e110b78cbbe7efb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15:log:49', 'hash': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 19537.2684995676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04231e110b78cbbe7efb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c1', 'uniqueId': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15:log:51', 'hash': '0x86a3d4fd542b537bacf7bc5b5508b000c302302a48aa9cdc17c3308e6a405d15', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 19537.2684995676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04231e110b78cbbe7efb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:53.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891:log:3', 'hash': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 35796.84408683893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07948d01a52becc1953e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891:log:5', 'hash': '0x0b9a5d9b950d17859194dc92940e2cb460bdaebf3a21e41801a4bf7137076891', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 35796.84408683893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07948d01a52becc1953e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed:log:27', 'hash': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33251.7549745391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070a94ccbdfeb34c0419', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed:log:31', 'hash': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 33251.7549745391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070a94ccbdfeb34c0419', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c3', 'uniqueId': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed:log:33', 'hash': '0x6baaefa0f2d733fa38d31a5b05b4d517679981545f3322f4b8b61c86e9e44eed', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 33251.7549745391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x070a94ccbdfeb34c0419', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:00:56.000Z'}}, {'blockNum': '0x8034c5', 'uniqueId': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209:log:7', 'hash': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 7575.952352094543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019ab1758d1d3859eeb7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:01.000Z'}}, {'blockNum': '0x8034c5', 'uniqueId': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209:log:9', 'hash': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7575.952352094543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019ab1758d1d3859eeb7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:01.000Z'}}, {'blockNum': '0x8034c5', 'uniqueId': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209:log:11', 'hash': '0xd52118bcfc171a17527ba34ce7c9d1c0842e4e8123caccd14900eb511cc91209', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 7575.952352094543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019ab1758d1d3859eeb7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:01.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x362ad475c980309245c04c23de553e1523e9e7a825ec1aa48147f42595b60dec:log:4', 'hash': '0x362ad475c980309245c04c23de553e1523e9e7a825ec1aa48147f42595b60dec', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 96147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x145c23aa135c9a6c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x64ab38cf7596b9a446477f8697941353f5c8799e357e69b220bcc30cda91a40e:log:5', 'hash': '0x64ab38cf7596b9a446477f8697941353f5c8799e357e69b220bcc30cda91a40e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 65326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd5545dc804aff80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x886acc6432533fc35e780c4df445403f367a3f709d599fbbd7f54dcf17782508:log:6', 'hash': '0x886acc6432533fc35e780c4df445403f367a3f709d599fbbd7f54dcf17782508', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 622355.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x83c9f4522eb7ee550000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x0a4626ac436b9eca9251aadae517c5616e7c456478531f2a4f544d75c471a69b:log:7', 'hash': '0x0a4626ac436b9eca9251aadae517c5616e7c456478531f2a4f544d75c471a69b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 224341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2f818ccb6a70c4340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0xde1e34d61fbc9160304f5ee6997aa7bea58b9bb1a520df1e8bcb26985110acf5:log:8', 'hash': '0xde1e34d61fbc9160304f5ee6997aa7bea58b9bb1a520df1e8bcb26985110acf5', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4:log:61', 'hash': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4:log:65', 'hash': '0x9bdfc0e8b0d5611ea13d07c3431d92a7ef28ca90a06fe0cab2c3f849f60b21e4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e:log:69', 'hash': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 6161.140714772089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014dff00e4f672a75e7f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e:log:71', 'hash': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6161.140391698783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014dfeffbf2115000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c8', 'uniqueId': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e:log:73', 'hash': '0x3c32c94bfb896b0f64a2b5ad5ec149aee4114f8d9825f496ef02986123d8e58e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 6161.140391698783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014dfeffbf2115000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:09.000Z'}}, {'blockNum': '0x8034c9', 'uniqueId': '0x89ac51370c6f500a7d185116a520cc40f7816459852aa558f85f0f9717527ca0:log:0', 'hash': '0x89ac51370c6f500a7d185116a520cc40f7816459852aa558f85f0f9717527ca0', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11c3a1bdcd0778240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:21.000Z'}}, {'blockNum': '0x8034c9', 'uniqueId': '0xc49fe67128b9b5c71dbfb360420336bd29098cf832db4a7f8d273d89b2dbaa27:log:11', 'hash': '0xc49fe67128b9b5c71dbfb360420336bd29098cf832db4a7f8d273d89b2dbaa27', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 26642.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05a4461abcd6f1570000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:21.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0xb096138eda9af805830c6cdc4ea8fceb26b5a7f12c4d39321ec9f594cd6746ca:log:2', 'hash': '0xb096138eda9af805830c6cdc4ea8fceb26b5a7f12c4d39321ec9f594cd6746ca', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0x11f1f7fb608e64ae29349fd92fcbc7b2f76284d76eb7b41cf32597e20976a660:log:3', 'hash': '0x11f1f7fb608e64ae29349fd92fcbc7b2f76284d76eb7b41cf32597e20976a660', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 99054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14f9ba64bd6a66f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0xde9a8f6c3fc45e024f12cc61515837ede075b34775c5f3b5fa0222952ae01056:log:10', 'hash': '0xde9a8f6c3fc45e024f12cc61515837ede075b34775c5f3b5fa0222952ae01056', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034ca', 'uniqueId': '0x14c4277ba527c9b668384c701e0daffa77cd3f360eb5f4ad847200862dd2cb6c:log:11', 'hash': '0x14c4277ba527c9b668384c701e0daffa77cd3f360eb5f4ad847200862dd2cb6c', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:01:26.000Z'}}, {'blockNum': '0x8034cd', 'uniqueId': '0x86cb69803056bec9de0fcb18f72e228bcafef458db09b451e5c314e9a4c0a38c:log:4', 'hash': '0x86cb69803056bec9de0fcb18f72e228bcafef458db09b451e5c314e9a4c0a38c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 4290, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe88fb5ae9b19c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:13.000Z'}}, {'blockNum': '0x8034cd', 'uniqueId': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f:log:26', 'hash': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3995.767195767196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd89c68c6117e6f119b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:13.000Z'}}, {'blockNum': '0x8034cd', 'uniqueId': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f:log:28', 'hash': '0xac5e932ec1bab81731d130e5e496c11b320fb0e15ab010af91d70b11f3fbd04f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 3995.767195767196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd89c68c6117e6f119b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:13.000Z'}}, {'blockNum': '0x8034cf', 'uniqueId': '0x5913ddc3413c5cd9845aebf27245843f4d74185142ae055a382780fbfe711693:log:0', 'hash': '0x5913ddc3413c5cd9845aebf27245843f4d74185142ae055a382780fbfe711693', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:28.000Z'}}, {'blockNum': '0x8034cf', 'uniqueId': '0x4e9788c1390510fa6d4c8539d3eddac6343b1911112ddea8a6dc4dcfdb344faa:log:2', 'hash': '0x4e9788c1390510fa6d4c8539d3eddac6343b1911112ddea8a6dc4dcfdb344faa', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'value': 7665.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019f9290f400d1840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:02:28.000Z'}}, {'blockNum': '0x8034d0', 'uniqueId': '0x332fa7d995ff1cb968029a77d6bb2b26be212b0b4189c607c773e8e4c9028b7d:log:0', 'hash': '0x332fa7d995ff1cb968029a77d6bb2b26be212b0b4189c607c773e8e4c9028b7d', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 153672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x208a936872d974200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:02.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0xdd786544ee1c6cf023adf017a4e3ff13cddce184955de869fcf8d81620b40d42:log:0', 'hash': '0xdd786544ee1c6cf023adf017a4e3ff13cddce184955de869fcf8d81620b40d42', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbed23a64127be8aedfc9eb0ef2db25fbc3178f43', 'value': 76510.853887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1033a9652e59620af000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0x93de0ba9c1e371cdb261ced88bc3453a262e0e3a2a1f9dd46adaceb5322d8bbf:log:1', 'hash': '0x93de0ba9c1e371cdb261ced88bc3453a262e0e3a2a1f9dd46adaceb5322d8bbf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'value': 100145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1534df0f5d0cc6240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0x3b92b302883471a53d9fb31066e2ef170e4bcad050eb35c3c034188996c1b279:log:2', 'hash': '0x3b92b302883471a53d9fb31066e2ef170e4bcad050eb35c3c034188996c1b279', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 197798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29e2a6ac3d481ad80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d3', 'uniqueId': '0xf40d1ac0a3471eb1108d52bdff06dc886e715df58a5a9bc28ebf96bebdcaf204:log:11', 'hash': '0xf40d1ac0a3471eb1108d52bdff06dc886e715df58a5a9bc28ebf96bebdcaf204', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 5018.617021276596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01100f4d57141880efa8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:20.000Z'}}, {'blockNum': '0x8034d4', 'uniqueId': '0xaec656e5931a28052479ce09bc004dae2ce6e3741dfa60a877f78c206f680aea:log:0', 'hash': '0xaec656e5931a28052479ce09bc004dae2ce6e3741dfa60a877f78c206f680aea', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x15640b199d20d80393712c0a656a73424a6bed97', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:48.000Z'}}, {'blockNum': '0x8034d4', 'uniqueId': '0xec1d757455731fb787db59f3d12b87a13f1991a19375775adf33a839fdc83514:log:3', 'hash': '0xec1d757455731fb787db59f3d12b87a13f1991a19375775adf33a839fdc83514', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:48.000Z'}}, {'blockNum': '0x8034d4', 'uniqueId': '0xc6c039f5d6f1855ed747e672aafc19729a35d931f7b5baff99b3dad6b7ba5fb9:log:4', 'hash': '0xc6c039f5d6f1855ed747e672aafc19729a35d931f7b5baff99b3dad6b7ba5fb9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 187303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x27a9b74a2e2cbe3c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:03:48.000Z'}}, {'blockNum': '0x8034d5', 'uniqueId': '0x0a23ed6fa1776a73d6a0b6c60dd3e41854c69b333d6c58d7e5b21fb9a69a97ef:log:2', 'hash': '0x0a23ed6fa1776a73d6a0b6c60dd3e41854c69b333d6c58d7e5b21fb9a69a97ef', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0fe0ded4fcadde5c9a260723a29f35890f1b577f', 'value': 100077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15312f5ed5544f940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:03.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0x50f5a486e2b6bffbfee74c4c5200121317eec7aa2e6abb44abb7373710d99418:log:2', 'hash': '0x50f5a486e2b6bffbfee74c4c5200121317eec7aa2e6abb44abb7373710d99418', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 85065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1203620516506b840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0x5cf0e955a659815725b19fdbf98ec80bcebc809b3108a3f8a6c856f4afcaf54c:log:3', 'hash': '0x5cf0e955a659815725b19fdbf98ec80bcebc809b3108a3f8a6c856f4afcaf54c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0xdab02c99515562f7e3c4dac24617f48d9b013e91c200d8df6f953df735e75533:log:27', 'hash': '0xdab02c99515562f7e3c4dac24617f48d9b013e91c200d8df6f953df735e75533', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 9135.483870967742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01ef3c4e82c6f6bdef7b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f:log:54', 'hash': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12180.645161290322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02945068ae5e9e5294a5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034d6', 'uniqueId': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f:log:56', 'hash': '0xfb47d41331d50b9881950d2fce91526659b56b99038551b310f42a7963f5b28f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 12180.645161290322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02945068ae5e9e5294a5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:04:32.000Z'}}, {'blockNum': '0x8034da', 'uniqueId': '0xa7141d7674e0e1d5917a3141e316044397a6de0e914e672de7d75c5e725c9ca8:log:0', 'hash': '0xa7141d7674e0e1d5917a3141e316044397a6de0e914e672de7d75c5e725c9ca8', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 347002.14566912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497b06257de70a000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:05:16.000Z'}}, {'blockNum': '0x8034da', 'uniqueId': '0xefb01d0433f0f1e0dee6640233598131f280d935d9133b0097f1dbd6d36868c4:log:3', 'hash': '0xefb01d0433f0f1e0dee6640233598131f280d935d9133b0097f1dbd6d36868c4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 123286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1b58f29ac6f8980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:05:16.000Z'}}, {'blockNum': '0x8034dd', 'uniqueId': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f:log:138', 'hash': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5093.61932469544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0114202b0ca8a0bfc271', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:06:05.000Z'}}, {'blockNum': '0x8034dd', 'uniqueId': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f:log:142', 'hash': '0xdae3777b293f92d37cd8d7a3e2553e28c4a0230b960855c2ae471afdc7b4917f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 5093.61932469544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0114202b0ca8a0bfc271', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:06:05.000Z'}}, {'blockNum': '0x8034e1', 'uniqueId': '0xdd4e12de6e9198222b00e3316b1d8de2d0656d526e01f1b390f5b52d37bab158:log:15', 'hash': '0xdd4e12de6e9198222b00e3316b1d8de2d0656d526e01f1b390f5b52d37bab158', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 406449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5611a4fa08e7a8240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:06:30.000Z'}}, {'blockNum': '0x8034e4', 'uniqueId': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526:log:34', 'hash': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a7da17', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:07:42.000Z'}}, {'blockNum': '0x8034e4', 'uniqueId': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526:log:36', 'hash': '0x5cc62a92950074f7dff1a56af69b8939d19cd9eabee5b68ab2432e6419c90526', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x1f959dd88a9c469e16060eef0cb8d0778a256d42', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a7da17', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:07:42.000Z'}}, {'blockNum': '0x8034e5', 'uniqueId': '0x0de28170f14d4a5ef70bc839499ea4e5921c2f73d9d3b0c17751bee7ece181f0:log:122', 'hash': '0x0de28170f14d4a5ef70bc839499ea4e5921c2f73d9d3b0c17751bee7ece181f0', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01141792c42128740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:14.000Z'}}, {'blockNum': '0x8034e8', 'uniqueId': '0xdd2f432c785d3c0b419bb533a3c4b867cf022379331bddd24c27d4d46ea07a56:log:45', 'hash': '0xdd2f432c785d3c0b419bb533a3c4b867cf022379331bddd24c27d4d46ea07a56', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 5163.934426229508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0117effc78f56470c971', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:50.000Z'}}, {'blockNum': '0x8034e8', 'uniqueId': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5:log:75', 'hash': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7229.508196721312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0187e994a9578c9de6d1', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:50.000Z'}}, {'blockNum': '0x8034e8', 'uniqueId': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5:log:77', 'hash': '0xe5c3156f945d05c34e8979f9b233efd824d0e53878f25fb84a05908c43d0c1f5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 7229.508196721312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0187e994a9578c9de6d1', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:08:50.000Z'}}, {'blockNum': '0x8034f2', 'uniqueId': '0xa487bf8c98c58aacaaf8f14ba7bfb2cff869449c33d39cc1d226318747f8ef33:log:2', 'hash': '0xa487bf8c98c58aacaaf8f14ba7bfb2cff869449c33d39cc1d226318747f8ef33', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 255006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x35ffe728604eadb80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:02.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0xa356e129ebe94a4621d35aba918aaa59e1e49b597920d097f2533dc595bac96d:log:1', 'hash': '0xa356e129ebe94a4621d35aba918aaa59e1e49b597920d097f2533dc595bac96d', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26642.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05a4461abcd6f1570000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0xb0aec820064a159035c2687dcf5e76c8007c7d5a4857c875aeebc33227d9de41:log:2', 'hash': '0xb0aec820064a159035c2687dcf5e76c8007c7d5a4857c875aeebc33227d9de41', 'from': '0x0fe0ded4fcadde5c9a260723a29f35890f1b577f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15312f5ed5544f940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x8942b5ea8225f316223228074f061874f5d8fe2cd41ec3ef2b228fb3ccff27a9:log:3', 'hash': '0x8942b5ea8225f316223228074f061874f5d8fe2cd41ec3ef2b228fb3ccff27a9', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x697c96525cc0d59baac305393424b77f7287b16298c46c8f31480938fdd32297:log:4', 'hash': '0x697c96525cc0d59baac305393424b77f7287b16298c46c8f31480938fdd32297', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 96147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x145c23aa135c9a6c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x189b81430d52415bf4284f0c5d92b57c00c786e8fd4b7ec0de787f81386bd640:log:5', 'hash': '0x189b81430d52415bf4284f0c5d92b57c00c786e8fd4b7ec0de787f81386bd640', 'from': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 153672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x208a936872d974200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f3', 'uniqueId': '0x4527454b792bde8421600455f17fdfe0c1d0e888c09fd0920cf9bf74cb49451f:log:7', 'hash': '0x4527454b792bde8421600455f17fdfe0c1d0e888c09fd0920cf9bf74cb49451f', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:07.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0xcbc4d2e03dc158302d670ca3795b8dc1ac135d252fd576b6936a465416300e37:log:11', 'hash': '0xcbc4d2e03dc158302d670ca3795b8dc1ac135d252fd576b6936a465416300e37', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12869.630895135904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b9aa01b8e638105408', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x0238db2f1fbd6371a48baa48b31947562e44fdd305de5ac563be9571a302fa2a:log:12', 'hash': '0x0238db2f1fbd6371a48baa48b31947562e44fdd305de5ac563be9571a302fa2a', 'from': '0xbed23a64127be8aedfc9eb0ef2db25fbc3178f43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 76510.853887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1033a9652e59620af000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x1290df3901e1866e4529ff11abd9fec10a7e302267f1a66c86182df1eae8e4b7:log:13', 'hash': '0x1290df3901e1866e4529ff11abd9fec10a7e302267f1a66c86182df1eae8e4b7', 'from': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1534df0f5d0cc6240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x08c81dbc67e4ea48d0ed99f75530515511b5d7d8c02baafaae9a35dfae35ecca:log:14', 'hash': '0x08c81dbc67e4ea48d0ed99f75530515511b5d7d8c02baafaae9a35dfae35ecca', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 622355.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x83c9f4522eb7ee550000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x1b6b684f08dfdf3b54702f3817482b551ba712c1554c6b91d49ce6d834949fa8:log:15', 'hash': '0x1b6b684f08dfdf3b54702f3817482b551ba712c1554c6b91d49ce6d834949fa8', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 836520, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb123d70e971705a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x277684a32c886717581eeba5d48d0ffe970221b313147acae4fa30ecd211079d:log:16', 'hash': '0x277684a32c886717581eeba5d48d0ffe970221b313147acae4fa30ecd211079d', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034f4', 'uniqueId': '0x88b42dec987ccde65452fb8132d29e9c1beb2285623565098c4831d03f31c290:log:20', 'hash': '0x88b42dec987ccde65452fb8132d29e9c1beb2285623565098c4831d03f31c290', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0115c5c8e3e26d900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:11:23.000Z'}}, {'blockNum': '0x8034fb', 'uniqueId': '0xbff49fdd2d63a2e7b9c4e4cc927c89e02fa4203c18a76b208c668b9efec09cdc:log:5', 'hash': '0xbff49fdd2d63a2e7b9c4e4cc927c89e02fa4203c18a76b208c668b9efec09cdc', 'from': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 85065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1203620516506b840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:12:23.000Z'}}, {'blockNum': '0x803502', 'uniqueId': '0x8ec906fdbec2a42a2464b8a05e7a93af01a1a763768d267ca100d8be596ad1a6:log:2', 'hash': '0x8ec906fdbec2a42a2464b8a05e7a93af01a1a763768d267ca100d8be596ad1a6', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:14:04.000Z'}}, {'blockNum': '0x803503', 'uniqueId': '0xab0969b4922dcf8accb491436fc40f9feae7e4930a8ed856d4eadf503b2d35bf:log:2', 'hash': '0xab0969b4922dcf8accb491436fc40f9feae7e4930a8ed856d4eadf503b2d35bf', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 347058.55028586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497e14eaf1fba9c06800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:14:19.000Z'}}, {'blockNum': '0x80350c', 'uniqueId': '0x7800bf78101aa0e1792846c5bbd6aaf69123dcc3de8cc90baa8f1da31c1d20b4:log:13', 'hash': '0x7800bf78101aa0e1792846c5bbd6aaf69123dcc3de8cc90baa8f1da31c1d20b4', 'from': '0x0b0334a135d8f037bd6121a53b1620f8e26f1786', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:16:07.000Z'}}, {'blockNum': '0x80350f', 'uniqueId': '0x19f7b6229a59dd2fc0e6a18c35f3a2db002d6779e0d966f80df60c0f928e564f:log:10', 'hash': '0x19f7b6229a59dd2fc0e6a18c35f3a2db002d6779e0d966f80df60c0f928e564f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 150825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff03d589ae6e3040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:16:52.000Z'}}, {'blockNum': '0x803516', 'uniqueId': '0xba258d74f3e723161b143d695ca4d756a338704444b0ee72c2de61f334f93d3e:log:0', 'hash': '0xba258d74f3e723161b143d695ca4d756a338704444b0ee72c2de61f334f93d3e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 57370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c2608afc0b680280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:18:11.000Z'}}, {'blockNum': '0x80351f', 'uniqueId': '0x2cee01dcdaed5e7afc74ce50a69dd1b77fd2e6135197ec46f769d248efe4cca9:log:0', 'hash': '0x2cee01dcdaed5e7afc74ce50a69dd1b77fd2e6135197ec46f769d248efe4cca9', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 347058.55028586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497e14eaf1fba9c06800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:18.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x78676c988e74352a52411c4244fabbfa0d5b840300ec389b9034477c13c37ae6:log:4', 'hash': '0x78676c988e74352a52411c4244fabbfa0d5b840300ec389b9034477c13c37ae6', 'from': '0x6e84ac1fe7f17950ac82b8fe9b92d14ec8098456', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7665.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x019f9290f400d1840000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xe72e5c1392d952e9747eeda1ac29bf5af8ae466d0bb5d39a3b848a3cb2108c3f:log:5', 'hash': '0xe72e5c1392d952e9747eeda1ac29bf5af8ae466d0bb5d39a3b848a3cb2108c3f', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd5545dc804aff80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xe5065606ef7cead7826a0924f69f635e9ae2566fde72a9e27e0f1e2d4dd6ed45:log:8', 'hash': '0xe5065606ef7cead7826a0924f69f635e9ae2566fde72a9e27e0f1e2d4dd6ed45', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 347002.14566912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497b06257de70a000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x91dbe23b646d1cf93b8fa99d1abd440363b495422a93c05a8619c1be394cacd8:log:9', 'hash': '0x91dbe23b646d1cf93b8fa99d1abd440363b495422a93c05a8619c1be394cacd8', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff03d589ae6e3040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xa65511b775a022ddefcbb36770f3e3a3ed823bb89f4005c6f10b66f0cb78f734:log:10', 'hash': '0xa65511b775a022ddefcbb36770f3e3a3ed823bb89f4005c6f10b66f0cb78f734', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01141792c42128740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x0d7b6c30486f3c141c2ca77c6f6e8e9dea712fe7d69dc3f2ad77ac0b646e5ba3:log:11', 'hash': '0x0d7b6c30486f3c141c2ca77c6f6e8e9dea712fe7d69dc3f2ad77ac0b646e5ba3', 'from': '0x15640b199d20d80393712c0a656a73424a6bed97', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0xf5824058c0124d559d13208af561a4d0f50c54d359fc968e2acba8a01c5d1e7b:log:12', 'hash': '0xf5824058c0124d559d13208af561a4d0f50c54d359fc968e2acba8a01c5d1e7b', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 197798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29e2a6ac3d481ad80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x41fb96caf8f2041c64984517008d99b8270a0d4a7d4b3be58d2e540c35ac0a04:log:13', 'hash': '0x41fb96caf8f2041c64984517008d99b8270a0d4a7d4b3be58d2e540c35ac0a04', 'from': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 81483.47038043274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11413a4fd1132d733910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x4d8563bbf5610fc7c77f386a047443b404fbe2c491984024e3303de702181d3a:log:14', 'hash': '0x4d8563bbf5610fc7c77f386a047443b404fbe2c491984024e3303de702181d3a', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x14f9ba64bd6a66f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0:log:46', 'hash': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0', 'from': '0x4703d474871889fb4edf5e3910d03620497c328f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3121.83413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa93c26d10c84a32000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0:log:47', 'hash': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x4703d474871889fb4edf5e3910d03620497c328f', 'value': 121.2675993355972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0692ed0f17aaaac3e8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803524', 'uniqueId': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0:log:48', 'hash': '0x1232e8f0a2d41a5d8f9ec795fad3fb7c591059809f53a165e5ed1b7a019db4c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000.5665306644028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a939c1f4d9f85c18', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:20:57.000Z'}}, {'blockNum': '0x803547', 'uniqueId': '0x5fe32a64b10b70f487d2635804ec096905ff9cfd26f5723fcd90dfc7689c7756:log:8', 'hash': '0x5fe32a64b10b70f487d2635804ec096905ff9cfd26f5723fcd90dfc7689c7756', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 362014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ca8d179b79ff5b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:28:14.000Z'}}, {'blockNum': '0x803555', 'uniqueId': '0xee32aada831059969758a7903562842e5f11d3a444662d79b862af187402f8fe:log:7', 'hash': '0xee32aada831059969758a7903562842e5f11d3a444662d79b862af187402f8fe', 'from': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:30:58.000Z'}}, {'blockNum': '0x803555', 'uniqueId': '0x4551d8116477d87674c97c1e30611de78bdebc47c8f3c591cd934f0d03451432:log:27', 'hash': '0x4551d8116477d87674c97c1e30611de78bdebc47c8f3c591cd934f0d03451432', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 6258.563535911602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01534704489eefc1c498', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:30:58.000Z'}}, {'blockNum': '0x803567', 'uniqueId': '0x97f32c43016baa74946cba7ff38c45f52893b084671672d03b6fd6809b066c9b:log:0', 'hash': '0x97f32c43016baa74946cba7ff38c45f52893b084671672d03b6fd6809b066c9b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 232120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3127401b1f8837e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:34:34.000Z'}}, {'blockNum': '0x80356f', 'uniqueId': '0xcb97884b628236e13284b54cc2cd4816236873c3210a4d57c4d4393e34bf96d2:log:18', 'hash': '0xcb97884b628236e13284b54cc2cd4816236873c3210a4d57c4d4393e34bf96d2', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 362014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ca8d179b79ff5b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:35:17.000Z'}}, {'blockNum': '0x80356f', 'uniqueId': '0x058519c2d2bd5edf6c87fbd99efe2534db46ac17fc8e3f61688643d8d64fb30f:log:20', 'hash': '0x058519c2d2bd5edf6c87fbd99efe2534db46ac17fc8e3f61688643d8d64fb30f', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'value': 76810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1043e0e1ab2db9e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:35:17.000Z'}}, {'blockNum': '0x803572', 'uniqueId': '0xc39a5fae3a9bd67df87bc6ca98eb3d301bf913babc4f801a78d1281d076e3f03:log:8', 'hash': '0xc39a5fae3a9bd67df87bc6ca98eb3d301bf913babc4f801a78d1281d076e3f03', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'value': 50703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0abc9d79a7fe26dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:35:48.000Z'}}, {'blockNum': '0x803574', 'uniqueId': '0x6c36c02e1af5781c30d8a3ad87ad0d1312885cc0f6c6f90097b92337a6f3678a:log:63', 'hash': '0x6c36c02e1af5781c30d8a3ad87ad0d1312885cc0f6c6f90097b92337a6f3678a', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 103549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed670cb9e28bd40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:36:32.000Z'}}, {'blockNum': '0x803588', 'uniqueId': '0x50380d5009ce95a19d865f48ae5d60c4de5b2b1f582fdcad4239df4323b5d95e:log:37', 'hash': '0x50380d5009ce95a19d865f48ae5d60c4de5b2b1f582fdcad4239df4323b5d95e', 'from': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 50703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0abc9d79a7fe26dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:40:46.000Z'}}, {'blockNum': '0x803588', 'uniqueId': '0xece88e233c2932ee0cf6426b01fa9532e5894875bee5bfb5f13df07dd7f6d84c:log:61', 'hash': '0xece88e233c2932ee0cf6426b01fa9532e5894875bee5bfb5f13df07dd7f6d84c', 'from': '0x0acb17762d75a97af9abf6b76fa6343f7f79e912', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 76810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1043e0e1ab2db9e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:40:46.000Z'}}, {'blockNum': '0x803589', 'uniqueId': '0x3621631b1f44152fc5bc890591243162c13ee275e3134861445acd09da2c44e4:log:11', 'hash': '0x3621631b1f44152fc5bc890591243162c13ee275e3134861445acd09da2c44e4', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 103549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15ed670cb9e28bd40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:41:30.000Z'}}, {'blockNum': '0x80358a', 'uniqueId': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b:log:59', 'hash': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6281.767955801105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0154890af1916c93fa57', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:41:54.000Z'}}, {'blockNum': '0x80358a', 'uniqueId': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b:log:61', 'hash': '0x590886f1ce7cbe90ffd32045146a7a859c4fafde1830cdcf3fcba6029330f48b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 6281.767955801105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0154890af1916c93fa57', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:41:54.000Z'}}, {'blockNum': '0x803596', 'uniqueId': '0x55b3ff4bcefcbf1a245e979e0dbb531c8559b4b465c85f12908f0c02635e5e84:log:55', 'hash': '0x55b3ff4bcefcbf1a245e979e0dbb531c8559b4b465c85f12908f0c02635e5e84', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'value': 345632.317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4930c3f471004e4c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:44:35.000Z'}}, {'blockNum': '0x8035a7', 'uniqueId': '0xd1ee2c222aa297d0cd77b916f08cd5eb4d85410b1ed8805b8e38e1a79d27fed7:log:3', 'hash': '0xd1ee2c222aa297d0cd77b916f08cd5eb4d85410b1ed8805b8e38e1a79d27fed7', 'from': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 345632.317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4930c3f471004e4c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:49:38.000Z'}}, {'blockNum': '0x8035c2', 'uniqueId': '0x9115fbcb54dc8ca5aa200262f7b8ab472beecb77fcd5fee559693e17e539e825:log:40', 'hash': '0x9115fbcb54dc8ca5aa200262f7b8ab472beecb77fcd5fee559693e17e539e825', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 8469.27374301676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01cb1ec8ad2368e9d518', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:54:45.000Z'}}, {'blockNum': '0x8035ca', 'uniqueId': '0xe94948e11bba1b5d5e1bd70e624063b7b2319be8b1da0779c27a2f39cb828e20:log:15', 'hash': '0xe94948e11bba1b5d5e1bd70e624063b7b2319be8b1da0779c27a2f39cb828e20', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x4f18343762b567f431ba8cda7b9f27735f365756', 'value': 18574.4001706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03eeeb958fc558061000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T20:55:59.000Z'}}, {'blockNum': '0x80361c', 'uniqueId': '0x1464a174f822a40353b2515197c7883814d59222a025674d7dc6605e7a403d0b:log:1', 'hash': '0x1464a174f822a40353b2515197c7883814d59222a025674d7dc6605e7a403d0b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 343637.70152975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x48c4a31ac6bc08525c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:14:51.000Z'}}, {'blockNum': '0x803649', 'uniqueId': '0x6d1db111e92c20dde9ce61e1a2bb5deabe8a857dff353f4c7019107f02377f00:log:12', 'hash': '0x6d1db111e92c20dde9ce61e1a2bb5deabe8a857dff353f4c7019107f02377f00', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 343637.70152975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x48c4a31ac6bc08525c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:25:50.000Z'}}, {'blockNum': '0x803670', 'uniqueId': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb:log:111', 'hash': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3520.223555708562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbed4ea60f923580f48', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:34:57.000Z'}}, {'blockNum': '0x803670', 'uniqueId': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb:log:113', 'hash': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3520.2234526861043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbed4ea03465a580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:34:57.000Z'}}, {'blockNum': '0x803670', 'uniqueId': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb:log:114', 'hash': '0x168e92f605608f6fc37c9363feeca6b1c57261b40705a4ff4fda49f3cc863ffb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3520.2234526861043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbed4ea03465a580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:34:57.000Z'}}, {'blockNum': '0x803678', 'uniqueId': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8:log:19', 'hash': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3671.7940336387337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc70c60e3988b6a9c2f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:37:38.000Z'}}, {'blockNum': '0x803678', 'uniqueId': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8:log:21', 'hash': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3671.7939212245096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc70c607d5b11880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:37:38.000Z'}}, {'blockNum': '0x803678', 'uniqueId': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8:log:22', 'hash': '0x1ae4e6c75f810f8da2fa6c5d5615be6d850b7f37f40620b6c9806bcc977dccb8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3671.7939212245096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc70c607d5b11880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:37:38.000Z'}}, {'blockNum': '0x80369a', 'uniqueId': '0xaf67d082e8f455ae8a812c9e32c71b7746e7c20c402c096fe37a843e8e2a6a3e:log:4', 'hash': '0xaf67d082e8f455ae8a812c9e32c71b7746e7c20c402c096fe37a843e8e2a6a3e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc40f65c5e9c146494eb61da2f012f6e5f7af8ab9', 'value': 9917.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02199a29146ddc950000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:45:20.000Z'}}, {'blockNum': '0x8036a8', 'uniqueId': '0x0c14dd6b6cb3f5c9a76e48302219efbe075c9008e332bbf871239ae614a27350:log:2', 'hash': '0x0c14dd6b6cb3f5c9a76e48302219efbe075c9008e332bbf871239ae614a27350', 'from': '0xc40f65c5e9c146494eb61da2f012f6e5f7af8ab9', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 9917.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02199a29146ddc950000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T21:48:42.000Z'}}, {'blockNum': '0x803799', 'uniqueId': '0x976c575ab2656118c45fa46809b59ef59acdc5ba6cb3de137fc8dd4eda7a91cf:log:9', 'hash': '0x976c575ab2656118c45fa46809b59ef59acdc5ba6cb3de137fc8dd4eda7a91cf', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'value': 238029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x326793f4404eef140000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:40:47.000Z'}}, {'blockNum': '0x80379a', 'uniqueId': '0xf94dd77eecea58c4a91d2175b77a2bc064d174c0c285fb80be07c92e1f04d770:log:40', 'hash': '0xf94dd77eecea58c4a91d2175b77a2bc064d174c0c285fb80be07c92e1f04d770', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 109985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x174a4c7df67ed9e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:41:12.000Z'}}, {'blockNum': '0x80379e', 'uniqueId': '0x6977af02f522d0bcd195f178163ff29b3d131e48a8f2e70cbb3de4d33786c9ae:log:22', 'hash': '0x6977af02f522d0bcd195f178163ff29b3d131e48a8f2e70cbb3de4d33786c9ae', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 63797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d82713a9101ebb40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:41:38.000Z'}}, {'blockNum': '0x8037a8', 'uniqueId': '0xf1914245d71022415110e8dcc6cee9f9320c6f94ab4b1372519c92514d151196:log:1', 'hash': '0xf1914245d71022415110e8dcc6cee9f9320c6f94ab4b1372519c92514d151196', 'from': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 238029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x326793f4404eef140000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:44:10.000Z'}}, {'blockNum': '0x8037a8', 'uniqueId': '0xca9bb065f6a000921f711f53dde60cbe611f2fac37b5e0514b9f7fa2f4f645a2:log:2', 'hash': '0xca9bb065f6a000921f711f53dde60cbe611f2fac37b5e0514b9f7fa2f4f645a2', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 63797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d82713a9101ebb40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:44:10.000Z'}}, {'blockNum': '0x8037aa', 'uniqueId': '0xcb1292570996a3a7ed5ee2c0997c5487d887c98a68ea23ac3ce356d881091be6:log:0', 'hash': '0xcb1292570996a3a7ed5ee2c0997c5487d887c98a68ea23ac3ce356d881091be6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdea6177f1df6ca2d96e998ea01b2b04c27740a8e', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:45:35.000Z'}}, {'blockNum': '0x8037c1', 'uniqueId': '0xc332b1132a38afb2c21c9342a4b49e8c09e3dd5cc92724d435c4c448e3d9bd83:log:3', 'hash': '0xc332b1132a38afb2c21c9342a4b49e8c09e3dd5cc92724d435c4c448e3d9bd83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1059779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe06abc15ce364d2c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:52:21.000Z'}}, {'blockNum': '0x8037d0', 'uniqueId': '0x3b47910f7e4e3f9fced8e46b036961e0a9fcb299b8469835ea5dcd8127e6643c:log:10', 'hash': '0x3b47910f7e4e3f9fced8e46b036961e0a9fcb299b8469835ea5dcd8127e6643c', 'from': '0xdea6177f1df6ca2d96e998ea01b2b04c27740a8e', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T22:55:58.000Z'}}, {'blockNum': '0x80386b', 'uniqueId': '0xe4c028f6c9e4d9e3aedd27324fea9fbce77e2a4aff756ae2d999476b709014cd:log:11', 'hash': '0xe4c028f6c9e4d9e3aedd27324fea9fbce77e2a4aff756ae2d999476b709014cd', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2b7c6615195babbdbac5665eae1954f36865166f', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T23:32:43.000Z'}}, {'blockNum': '0x8038d7', 'uniqueId': '0x2f83f0285acc1f169bc1dc4051d18fdc7556676ffa7a79a80e11d1090f7afcc7:log:3', 'hash': '0x2f83f0285acc1f169bc1dc4051d18fdc7556676ffa7a79a80e11d1090f7afcc7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbce49cd26220ddd885b38b6ae7cf3d5f7dde9aaf', 'value': 336.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x123f436c9de47c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T23:55:48.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:115', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4019.590022507743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e70474c5266b1e35', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:119', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4019.590022507743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e70474c5266b1e35', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:120', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4019.583980470733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e6eefd91c8b98daf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x8038f6', 'uniqueId': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453:log:121', 'hash': '0x2487a79f2c54b6ee44a7aefc6f0ac57d831458feea08aabd05dd17ed761a5453', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4019.583980470733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd9e6eefd91c8b98daf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:03:42.000Z'}}, {'blockNum': '0x803901', 'uniqueId': '0xe70dea2e44a96012ad4e34033153795b0e3cc35e3425515548643c99b4be863b:log:5', 'hash': '0xe70dea2e44a96012ad4e34033153795b0e3cc35e3425515548643c99b4be863b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6b838d866e45449294c32dedd9fcf3326fa099d9', 'value': 10418.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0234cfa1b89e753ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:06:45.000Z'}}, {'blockNum': '0x803903', 'uniqueId': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba:log:83', 'hash': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4241.979330448937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe5f549fe12d64295c5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:07:09.000Z'}}, {'blockNum': '0x803903', 'uniqueId': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba:log:85', 'hash': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4241.979179949869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe5f54975320ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:07:09.000Z'}}, {'blockNum': '0x803903', 'uniqueId': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba:log:86', 'hash': '0x7db13acea4d40ddd4ba6ffed950709a44b0b42bd0f17819c922e937d0f010fba', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4241.979179949869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe5f54975320ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:07:09.000Z'}}, {'blockNum': '0x80390d', 'uniqueId': '0xcb01da6794f7fe769d366db503691e034af5b4a81c0c797c492a4df0220328d1:log:0', 'hash': '0xcb01da6794f7fe769d366db503691e034af5b4a81c0c797c492a4df0220328d1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 693737.65530867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92e797f9839bfb996c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:08:56.000Z'}}, {'blockNum': '0x803910', 'uniqueId': '0x8b9ad78810dd1605f82b78577b76f3f3d12e01a91dff94dcdec615cb9b1d8db6:log:1', 'hash': '0x8b9ad78810dd1605f82b78577b76f3f3d12e01a91dff94dcdec615cb9b1d8db6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 693738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92e79cc21a8c35680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:09:17.000Z'}}, {'blockNum': '0x803920', 'uniqueId': '0x4ca006c2d6fec6851de1e742fde1ea0d14e570f6f1a060a8e5c47eb616930477:log:6', 'hash': '0x4ca006c2d6fec6851de1e742fde1ea0d14e570f6f1a060a8e5c47eb616930477', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x924ba914a8a8e5b45b5d39984529eacd9fd61beb', 'value': 25971.69534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057fedad4bca680ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:11:35.000Z'}}, {'blockNum': '0x80392f', 'uniqueId': '0xef7e5a0125ef8086cd0bd26fd0a7d170f4bea61d3d6b2f90ed42fe0e45d8238b:log:9', 'hash': '0xef7e5a0125ef8086cd0bd26fd0a7d170f4bea61d3d6b2f90ed42fe0e45d8238b', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3986a7e0df57ead3abed03ba5ce4ef1a51180d31', 'value': 10418.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0234cfa1b89e753ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:15:06.000Z'}}, {'blockNum': '0x80393f', 'uniqueId': '0xa5a4034fa33134e49d0ed0289b3a08e97e0b527e053789532c691f18291dffac:log:2', 'hash': '0xa5a4034fa33134e49d0ed0289b3a08e97e0b527e053789532c691f18291dffac', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 273528.72225766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x39ec05911c0f837ad800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:18:41.000Z'}}, {'blockNum': '0x803940', 'uniqueId': '0xcf5577e639e6a1da64bcc5d3c2375263e25923e12a4edfd04a426bbe2adc2ffa:log:0', 'hash': '0xcf5577e639e6a1da64bcc5d3c2375263e25923e12a4edfd04a426bbe2adc2ffa', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 73314.78221023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f8666fd9dd71f1b9c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:18:47.000Z'}}, {'blockNum': '0x80396e', 'uniqueId': '0x0b10e125537770a2f2596d03a614e2ab5a33f5c54d6364e03f9fe6d5303bf2da:log:44', 'hash': '0x0b10e125537770a2f2596d03a614e2ab5a33f5c54d6364e03f9fe6d5303bf2da', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 693737.65530867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92e797f9839bfb996c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:26:18.000Z'}}, {'blockNum': '0x803986', 'uniqueId': '0x84ca8086b25d0d1290f513851c8a2c5ab9520575ce5e2fd7a89638a93b8a0a27:log:22', 'hash': '0x84ca8086b25d0d1290f513851c8a2c5ab9520575ce5e2fd7a89638a93b8a0a27', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 346843.50446789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49726c8eb9e6a2967400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:31:22.000Z'}}, {'blockNum': '0x8039b6', 'uniqueId': '0x5493e6804b7a1aec1ec5ccce7b5982ee7fd494dd21c840414487505aa4467318:log:34', 'hash': '0x5493e6804b7a1aec1ec5ccce7b5982ee7fd494dd21c840414487505aa4467318', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x4f18343762b567f431ba8cda7b9f27735f365756', 'value': 76209.2378022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10234fa1974109f27000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:42:14.000Z'}}, {'blockNum': '0x8039c4', 'uniqueId': '0xe030d236db4c4a9184ec7e7ca4a948d552a1d9e2919220245c5d411f23dd2f0d:log:28', 'hash': '0xe030d236db4c4a9184ec7e7ca4a948d552a1d9e2919220245c5d411f23dd2f0d', 'from': '0x90889616322936d77c9fa1e1441e23754fbba1f7', 'to': '0x331f06673a10408c5982b24776007c44d08cf7f5', 'value': 547893.012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x740556f6406951020000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:45:24.000Z'}}, {'blockNum': '0x8039fa', 'uniqueId': '0x3bc588aae8eda80b3fd7bb24abdaf8faeffe61ba3809d15f1535680112f50753:log:10', 'hash': '0x3bc588aae8eda80b3fd7bb24abdaf8faeffe61ba3809d15f1535680112f50753', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb6ff8c73b2239bcd735cd66ce971f21376a69286', 'value': 132479.6572306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1c0dbc9267ec9f205000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T00:59:52.000Z'}}, {'blockNum': '0x8039ff', 'uniqueId': '0x53f84c7cdb91a263002bd16fe0644e519a2a3fc2a4e631dd72178e7457cfbba2:log:57', 'hash': '0x53f84c7cdb91a263002bd16fe0644e519a2a3fc2a4e631dd72178e7457cfbba2', 'from': '0x331f06673a10408c5982b24776007c44d08cf7f5', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 547893.012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x740556f6406951020000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:01:31.000Z'}}, {'blockNum': '0x803a13', 'uniqueId': '0x52b58438d9a6733b157cdef89519382d4b8b8438991edc371781141a2683c134:log:1', 'hash': '0x52b58438d9a6733b157cdef89519382d4b8b8438991edc371781141a2683c134', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:05:45.000Z'}}, {'blockNum': '0x803a17', 'uniqueId': '0xf9cbd2648ceb02b1821a466da3070036850b5b10cc9f89c295f1c404c093bcbf:log:0', 'hash': '0xf9cbd2648ceb02b1821a466da3070036850b5b10cc9f89c295f1c404c093bcbf', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:06:20.000Z'}}, {'blockNum': '0x803a18', 'uniqueId': '0x824f866f7bc6489af88cd1a6c9658413983cad4ef18c2fdda5ac242d9a9c71e1:log:0', 'hash': '0x824f866f7bc6489af88cd1a6c9658413983cad4ef18c2fdda5ac242d9a9c71e1', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:06:36.000Z'}}, {'blockNum': '0x803a1b', 'uniqueId': '0x387c3e014048f497dbff65e5f40a708e1cbb347ec61f4dd6dfe1ae0dc13ba4e6:log:0', 'hash': '0x387c3e014048f497dbff65e5f40a708e1cbb347ec61f4dd6dfe1ae0dc13ba4e6', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 329900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45dbea32a2e397300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:07:15.000Z'}}, {'blockNum': '0x803a1d', 'uniqueId': '0x76c3ff789169311db8b3ac1fc7cc3901adadaffdba06db23d85954a3295900a3:log:0', 'hash': '0x76c3ff789169311db8b3ac1fc7cc3901adadaffdba06db23d85954a3295900a3', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'value': 330000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45e155fa0110fa400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:07:48.000Z'}}, {'blockNum': '0x803a1e', 'uniqueId': '0xe896c030ba86ed6372db56f03c497d0c462730e3081ef902e18965bf53366705:log:3', 'hash': '0xe896c030ba86ed6372db56f03c497d0c462730e3081ef902e18965bf53366705', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 83460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11ac602ba1f7f5900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:10.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:97', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5979.041082998097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01441fdd0aab60744ba0', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:101', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 5979.041082998097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01441fdd0aab60744ba0', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:102', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5979.2224047213285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0144226139d0e7b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a20', 'uniqueId': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd:log:103', 'hash': '0xcbf345413d4b2418f0f03a76c865cd38fb5c0253a29d6b96c48d966e7490edfd', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5979.2224047213285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0144226139d0e7b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:08:54.000Z'}}, {'blockNum': '0x803a23', 'uniqueId': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe:log:85', 'hash': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 6222.404439515491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015151355e07166ead52', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:17.000Z'}}, {'blockNum': '0x803a23', 'uniqueId': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe:log:87', 'hash': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 6222.4041145352485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015151343675ba800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:17.000Z'}}, {'blockNum': '0x803a23', 'uniqueId': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe:log:88', 'hash': '0xea8e0a17da16e58373fe207a9dfd9d8458eaf21cb22a4737d1f2b837932ad5fe', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 6222.4041145352485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015151343675ba800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:17.000Z'}}, {'blockNum': '0x803a25', 'uniqueId': '0x0f66282451d06f51a886b242749021f3cf1dd416a35b1de155f876ef2f5aecc6:log:1', 'hash': '0x0f66282451d06f51a886b242749021f3cf1dd416a35b1de155f876ef2f5aecc6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:09:49.000Z'}}, {'blockNum': '0x803a2b', 'uniqueId': '0xdbb6ff8afd96e3b13da398b592758b28455be5c7b59501f5dd2c754902283a24:log:4', 'hash': '0xdbb6ff8afd96e3b13da398b592758b28455be5c7b59501f5dd2c754902283a24', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 302626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x40156369c2bbf3480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:12:01.000Z'}}, {'blockNum': '0x803a46', 'uniqueId': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051:log:35', 'hash': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 3309.767919176599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb36c41c296d0feef75', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:17:23.000Z'}}, {'blockNum': '0x803a46', 'uniqueId': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051:log:37', 'hash': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3309.767919176599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb36c41c296d0feef75', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:17:23.000Z'}}, {'blockNum': '0x803a46', 'uniqueId': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051:log:38', 'hash': '0x9d6f3db033dc661c2203e8fb1d0b4b04bb8f6f3d9416e079bc0b1e9474da4051', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3309.767919176599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb36c41c296d0feef75', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:17:23.000Z'}}, {'blockNum': '0x803a55', 'uniqueId': '0xd7bfdff18f84397114ca6563136ed1097781eb5be1a015c31d2bb44d63660d3d:log:29', 'hash': '0xd7bfdff18f84397114ca6563136ed1097781eb5be1a015c31d2bb44d63660d3d', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'value': 589.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff7bb41a2afda0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:20:58.000Z'}}, {'blockNum': '0x803a55', 'uniqueId': '0x1c12c4c421e01bad22ac8556d5233218397c1f8f36af1703607249713b095bae:log:60', 'hash': '0x1c12c4c421e01bad22ac8556d5233218397c1f8f36af1703607249713b095bae', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11ac602ba1f7f5900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:20:58.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:89', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3830.6356716121613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa8bfbfc0eec3da27', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:93', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3830.6356716121613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa8bfbfc0eec3da27', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:94', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3830.4397528432646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa607b4abddd80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a57', 'uniqueId': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2:log:95', 'hash': '0xa544db6a94394cee10c5f5a08f4b9b745dcef99e5f5902df64dc3ed8b55430a2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3830.4397528432646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcfa607b4abddd80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:01.000Z'}}, {'blockNum': '0x803a5d', 'uniqueId': '0x4112f1390af6714fe310b569018c2ec37aca7358673379a254f0ac11d1b4220c:log:14', 'hash': '0x4112f1390af6714fe310b569018c2ec37aca7358673379a254f0ac11d1b4220c', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x3b0937e7fb99f677e8ce5866f04ed924b17b26e4', 'value': 53283.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b488701901d9462c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:22:52.000Z'}}, {'blockNum': '0x803a63', 'uniqueId': '0x8205f9f8d9993e021ab58b26038fd84716493a34aa421c189c2fb6599ecf19e2:log:19', 'hash': '0x8205f9f8d9993e021ab58b26038fd84716493a34aa421c189c2fb6599ecf19e2', 'from': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:23:54.000Z'}}, {'blockNum': '0x803a6e', 'uniqueId': '0x4f9e691087c5d4a08395f0fbd75175832948db2a21e5ea3ed9e307e8f6d1827b:log:51', 'hash': '0x4f9e691087c5d4a08395f0fbd75175832948db2a21e5ea3ed9e307e8f6d1827b', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 302626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x40156369c2bbf3480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:25:10.000Z'}}, {'blockNum': '0x803a70', 'uniqueId': '0xab1315cd5a50e4d4be1f5cc8613421c5b99eef130d1c654fb2074d6d9de28e42:log:88', 'hash': '0xab1315cd5a50e4d4be1f5cc8613421c5b99eef130d1c654fb2074d6d9de28e42', 'from': '0x9e3542b0541b06c0d44357fcd81a1e7656da5be4', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1649900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015d61421aa72780300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:25:41.000Z'}}, {'blockNum': '0x803a71', 'uniqueId': '0xac4b0f32d920a398f05940f5c56b5389653ae0c3f138298131fee39732859539:log:75', 'hash': '0xac4b0f32d920a398f05940f5c56b5389653ae0c3f138298131fee39732859539', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x01c97e3a7f437ed0c315c03df2dc9ea4fc6c815d', 'value': 772.064657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29da8caaf7b6ce1000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:26:33.000Z'}}, {'blockNum': '0x803a7c', 'uniqueId': '0x87d6c6aea6f3056000518d3cf557bf5c97e0836d520c97d0ecbee4c3f0d55dc3:log:15', 'hash': '0x87d6c6aea6f3056000518d3cf557bf5c97e0836d520c97d0ecbee4c3f0d55dc3', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x03a182fb2ca5527d4ee4cdc6b8b87273a2cf846f', 'value': 39214.4867798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x084dd25396f8fecdf000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:28:36.000Z'}}, {'blockNum': '0x803a7d', 'uniqueId': '0xb34515681edd0ccf26ca1f7e9c6da0e9090a2d44c0dba7eebd7b9d548441fcea:log:104', 'hash': '0xb34515681edd0ccf26ca1f7e9c6da0e9090a2d44c0dba7eebd7b9d548441fcea', 'from': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'to': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'value': 414284.767468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x57ba6c184d6026228000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:29:09.000Z'}}, {'blockNum': '0x803a80', 'uniqueId': '0xd75e392ea5ac4840c085436771cd935f82be76151c0bfbcf1201966e9519c153:log:137', 'hash': '0xd75e392ea5ac4840c085436771cd935f82be76151c0bfbcf1201966e9519c153', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x03a182fb2ca5527d4ee4cdc6b8b87273a2cf846f', 'value': 20771.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x046602dc794100c40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:30:09.000Z'}}, {'blockNum': '0x803a80', 'uniqueId': '0x87544f074344c34171df705b4a4928fb9c6d246253b8c8560bf5e9d2c2b99a8c:log:138', 'hash': '0x87544f074344c34171df705b4a4928fb9c6d246253b8c8560bf5e9d2c2b99a8c', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x621c14a9ff6254ccee6156503cf0c1f56b482b9a', 'value': 495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad5814560aa5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:30:09.000Z'}}, {'blockNum': '0x803a82', 'uniqueId': '0x81f7082b23483c8929f3a45b9fe3d64d5c06627680d74040fb5f24f28e568845:log:13', 'hash': '0x81f7082b23483c8929f3a45b9fe3d64d5c06627680d74040fb5f24f28e568845', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 582.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1f97f9883179a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:30:26.000Z'}}, {'blockNum': '0x803a89', 'uniqueId': '0x99d4797fef1354dfb27a9415d551f49aecf9419858351df08346a647ac0b3f4d:log:3', 'hash': '0x99d4797fef1354dfb27a9415d551f49aecf9419858351df08346a647ac0b3f4d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 342100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x487147358484ccd00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:31:27.000Z'}}, {'blockNum': '0x803a99', 'uniqueId': '0x93a4d0999c1ba01e5e8742a3a296714fb0894be3f5fa9eed5fad5b740ded8abf:log:0', 'hash': '0x93a4d0999c1ba01e5e8742a3a296714fb0894be3f5fa9eed5fad5b740ded8abf', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x32a79ed3588693f111c4ec385da98f3761068b8e', 'value': 753.1484845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x28d408ec4d124ac800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:33:23.000Z'}}, {'blockNum': '0x803a9e', 'uniqueId': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83:log:26', 'hash': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4091.1102490221015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xddc78f57dac23d73d5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:34:09.000Z'}}, {'blockNum': '0x803a9e', 'uniqueId': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83:log:28', 'hash': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4091.1101074064404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xddc78ed70e4b100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:34:09.000Z'}}, {'blockNum': '0x803a9e', 'uniqueId': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83:log:29', 'hash': '0x3010bab1454d6f8f603dbd81d79c2444194773a9ea017917ebe1e6322df76d83', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4091.1101074064404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xddc78ed70e4b100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:34:09.000Z'}}, {'blockNum': '0x803aa5', 'uniqueId': '0x65eb1efd4108a9625ffebd533c3048567b45a1ffb249c82ac65d8ec729967837:log:23', 'hash': '0x65eb1efd4108a9625ffebd533c3048567b45a1ffb249c82ac65d8ec729967837', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xc97789232985136437ce72a8cfefb8cbe17d8c1f', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:35:38.000Z'}}, {'blockNum': '0x803ab4', 'uniqueId': '0x4c270dd48d1f4d7f99a2d143f72f223cab7c7aed69b798e11e7317e204de2198:log:56', 'hash': '0x4c270dd48d1f4d7f99a2d143f72f223cab7c7aed69b798e11e7317e204de2198', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 342100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x487147358484ccd00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:38:40.000Z'}}, {'blockNum': '0x803ab5', 'uniqueId': '0xfc1a154111fedb4f43e63ed97f37e4cef55cb6d8ba6067157ed0b21637b54d50:log:23', 'hash': '0xfc1a154111fedb4f43e63ed97f37e4cef55cb6d8ba6067157ed0b21637b54d50', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3a879221bbebdc04418e75d7cc31221550ffb67f', 'value': 8800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd0c885f9a0d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:38:50.000Z'}}, {'blockNum': '0x803ab6', 'uniqueId': '0xad10d9e210c7653db8a21edae678f8f378905d02965858949147246dd0977107:log:9', 'hash': '0xad10d9e210c7653db8a21edae678f8f378905d02965858949147246dd0977107', 'from': '0xc97789232985136437ce72a8cfefb8cbe17d8c1f', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:39:05.000Z'}}, {'blockNum': '0x803ac6', 'uniqueId': '0x34c7bf72d9586575e51636f29e3d3e4f879da376c582999324613956a8904b47:log:34', 'hash': '0x34c7bf72d9586575e51636f29e3d3e4f879da376c582999324613956a8904b47', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x284cb1ea7b4bcb6e0938c18d776c3011a614dc89', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:45:34.000Z'}}, {'blockNum': '0x803ac9', 'uniqueId': '0xc6d1a544d6f778f25871b7310c04e486cc34ccabcde490600979a0cd46634486:log:38', 'hash': '0xc6d1a544d6f778f25871b7310c04e486cc34ccabcde490600979a0cd46634486', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xe638b39cc4659b3dd397a8ef02abfb9ac8a3d48d', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:47:19.000Z'}}, {'blockNum': '0x803acc', 'uniqueId': '0x6ab456aeba1ba11366fc78c8efa903337c6856f55deaeaaeeeaeeb24f5a5c50a:log:34', 'hash': '0x6ab456aeba1ba11366fc78c8efa903337c6856f55deaeaaeeeaeeb24f5a5c50a', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x8cbee18999a05165711c9a655c2dc5d3dbb95474', 'value': 968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34868974dd63d6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:47:54.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0x1c383717e09d12bcae160866727578e854daf848f20c7da72dc119a7683fea0c:log:8', 'hash': '0x1c383717e09d12bcae160866727578e854daf848f20c7da72dc119a7683fea0c', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'value': 11424.8056034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x026b57072513f558d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:101', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:105', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:106', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803acf', 'uniqueId': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9:log:107', 'hash': '0xd088a14173383419c46b8b7ab70ffd7c7428cf87f45ec3abfda55fc2618eb0c9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5682.213826900337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0134088ec9e81f8ef7c4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:49:01.000Z'}}, {'blockNum': '0x803ada', 'uniqueId': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7:log:115', 'hash': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4054.2601802429476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdbc829998a380f8910', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:25.000Z'}}, {'blockNum': '0x803ada', 'uniqueId': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7:log:117', 'hash': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4054.2600406838696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdbc8291a9c96c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:25.000Z'}}, {'blockNum': '0x803ada', 'uniqueId': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7:log:118', 'hash': '0xfcdb108d6733df193ad401adfc10172010cf68e28255f049e094e420c7d9c4c7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4054.2600406838696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdbc8291a9c96c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:25.000Z'}}, {'blockNum': '0x803ae0', 'uniqueId': '0x066e9ab2252289eec18f66f7f8d323e786728c9eb492cd4b5d901b00bb57316b:log:14', 'hash': '0x066e9ab2252289eec18f66f7f8d323e786728c9eb492cd4b5d901b00bb57316b', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x3a541ca30225350eed366dd071639d5ffbbf06ba', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:57.000Z'}}, {'blockNum': '0x803ae0', 'uniqueId': '0xa41a33802328f160159ccefb78cc1eabed323d8fe432d2e56d2b2612a0e1db72:log:17', 'hash': '0xa41a33802328f160159ccefb78cc1eabed323d8fe432d2e56d2b2612a0e1db72', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x12cff71edfc4e16eec6373f1fb37c5cf3ca71c19', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:51:57.000Z'}}, {'blockNum': '0x803ae2', 'uniqueId': '0xbfd9ea285a408a64e3cbca4e7c69d72441571f6b3d5237644518118970c4ddb6:log:30', 'hash': '0xbfd9ea285a408a64e3cbca4e7c69d72441571f6b3d5237644518118970c4ddb6', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x2895730bd3725084c91a07f25786baac644851a2', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:15.000Z'}}, {'blockNum': '0x803ae5', 'uniqueId': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3:log:160', 'hash': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2383.8659713849893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x813ac93eb61fcfa97e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:42.000Z'}}, {'blockNum': '0x803ae5', 'uniqueId': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3:log:164', 'hash': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xea161ab775be8374c9aed9e394d5b8711dcfc55f', 'value': 2383.8659713849893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x813ac93eb61fcfa97e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:42.000Z'}}, {'blockNum': '0x803ae5', 'uniqueId': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3:log:166', 'hash': '0x73b4ca8cc14ae8483f292478e56feee0547d64ba06fb53dc4e2c5446b03227d3', 'from': '0xea161ab775be8374c9aed9e394d5b8711dcfc55f', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 2383.8659713849893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x813ac93eb61fcfa97e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:52:42.000Z'}}, {'blockNum': '0x803ae7', 'uniqueId': '0xaf3bebd0a8e3edb6abeea8cbf90be270fe7bbd482f8a781fddb9aaaeb80e5961:log:101', 'hash': '0xaf3bebd0a8e3edb6abeea8cbf90be270fe7bbd482f8a781fddb9aaaeb80e5961', 'from': '0x2895730bd3725084c91a07f25786baac644851a2', 'to': '0x5bcf2767f86f14edd82053bfbfd5069f68c2c5f8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:53:30.000Z'}}, {'blockNum': '0x803aec', 'uniqueId': '0xc960694878b24925ded24c578cf90baacfb95cb2263af12d61dde53e2468e4ab:log:11', 'hash': '0xc960694878b24925ded24c578cf90baacfb95cb2263af12d61dde53e2468e4ab', 'from': '0x12cff71edfc4e16eec6373f1fb37c5cf3ca71c19', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:54:28.000Z'}}, {'blockNum': '0x803af3', 'uniqueId': '0x166706924760dbce32556e91afd29d4cac2c9b38c17efc6dc95d02c8f7d65c63:log:5', 'hash': '0x166706924760dbce32556e91afd29d4cac2c9b38c17efc6dc95d02c8f7d65c63', 'from': '0x32a79ed3588693f111c4ec385da98f3761068b8e', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 753.1484845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x28d408ec4d124ac800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:56:27.000Z'}}, {'blockNum': '0x803afa', 'uniqueId': '0x7a659e8e899b44020f800cb8c232720babd06bc3108c3303b79290211381c723:log:85', 'hash': '0x7a659e8e899b44020f800cb8c232720babd06bc3108c3303b79290211381c723', 'from': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'to': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'value': 3000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027b46536c66c8e3000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:59:14.000Z'}}, {'blockNum': '0x803afd', 'uniqueId': '0x1a18803d48fde9c6a55db1e71745557a8f46438981c09fef33249959f0738752:log:0', 'hash': '0x1a18803d48fde9c6a55db1e71745557a8f46438981c09fef33249959f0738752', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 91025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x134679a29ce17ba40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T01:59:57.000Z'}}, {'blockNum': '0x803b00', 'uniqueId': '0xebf4b28fb66aede1abcace5afe026fbb60c0a56c52b51c291f66aa46099f0011:log:46', 'hash': '0xebf4b28fb66aede1abcace5afe026fbb60c0a56c52b51c291f66aa46099f0011', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 54359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b82ceaaddacb2fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:00:55.000Z'}}, {'blockNum': '0x803b03', 'uniqueId': '0xd1f8f31f902d6bed50abc56b038c9775bfbe4f23d6b9881620ab16a7883d4b3c:log:88', 'hash': '0xd1f8f31f902d6bed50abc56b038c9775bfbe4f23d6b9881620ab16a7883d4b3c', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 74431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc2e99fd3a92b9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:01:25.000Z'}}, {'blockNum': '0x803b08', 'uniqueId': '0xf0e7dea0fd62e58fed595793481486c51766d05457a5c92d7a7c954a7c9ce6e9:log:42', 'hash': '0xf0e7dea0fd62e58fed595793481486c51766d05457a5c92d7a7c954a7c9ce6e9', 'from': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'to': '0xbad6143b8863bf0f84e1ad8f582d2aafb21913ee', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:02:39.000Z'}}, {'blockNum': '0x803b0c', 'uniqueId': '0xa960ad5b548b0c0a3c1ab0cd3f347844a0f8407c69ef58c95fdf96da71d8f654:log:27', 'hash': '0xa960ad5b548b0c0a3c1ab0cd3f347844a0f8407c69ef58c95fdf96da71d8f654', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xf27e8b11a505a09f4c790472040813475fa44eee', 'value': 4230.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe55be17a0c500ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:03:55.000Z'}}, {'blockNum': '0x803b16', 'uniqueId': '0xb7e3072f157acee15e092681e9464e212e4b213a9f5fe4a92f7d5ddbeecae14e:log:16', 'hash': '0xb7e3072f157acee15e092681e9464e212e4b213a9f5fe4a92f7d5ddbeecae14e', 'from': '0xf27e8b11a505a09f4c790472040813475fa44eee', 'to': '0x529dab7bad9ef1000c3c0d708878c83fc870f7ae', 'value': 4230.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe55be17a0c500ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:06:38.000Z'}}, {'blockNum': '0x803b18', 'uniqueId': '0x0e9388da03dc8457d395d73e31bb5a9f93708910ca8a381dfe3294bc66ca7368:log:19', 'hash': '0x0e9388da03dc8457d395d73e31bb5a9f93708910ca8a381dfe3294bc66ca7368', 'from': '0x3a541ca30225350eed366dd071639d5ffbbf06ba', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 12835.4251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7cf4e537408b0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:06:44.000Z'}}, {'blockNum': '0x803b26', 'uniqueId': '0xc80b6f49e1c40c21e77a17e25d462f32a531da003daeaa8f5e566d607f5373ad:log:181', 'hash': '0xc80b6f49e1c40c21e77a17e25d462f32a531da003daeaa8f5e566d607f5373ad', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 54359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b82ceaaddacb2fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:10:15.000Z'}}, {'blockNum': '0x803b3f', 'uniqueId': '0xbf11b38a89f173beb42f37825bbc263169575138ae2b765d50e9eaa7232afe65:log:13', 'hash': '0xbf11b38a89f173beb42f37825bbc263169575138ae2b765d50e9eaa7232afe65', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x8d44ad4690ddb9f9e794bfad56b93a3dee9e5793', 'value': 576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1f399b1438a1000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:14:39.000Z'}}, {'blockNum': '0x803b6e', 'uniqueId': '0x3f34e0f0f84ca0313a87acd4ffb8a17ea7aaa0ec4f905679c8ded5ffc8d7da72:log:9', 'hash': '0x3f34e0f0f84ca0313a87acd4ffb8a17ea7aaa0ec4f905679c8ded5ffc8d7da72', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1c72a0b0171dd785a67dd70bf0e20a35a445daeb', 'value': 28299.332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05fe1c1fe5b68cba0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:26:10.000Z'}}, {'blockNum': '0x803b7d', 'uniqueId': '0xa0539d60c720c03fe27b708763eec049a379a3745efdf6a66fc8d9b00740a699:log:77', 'hash': '0xa0539d60c720c03fe27b708763eec049a379a3745efdf6a66fc8d9b00740a699', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 82472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1176d0ea849defa00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:29:24.000Z'}}, {'blockNum': '0x803b88', 'uniqueId': '0xa7d9eb47313ce6105a85e2425ec4e9fbc0ed080765c8c090b85d8b0f3240c740:log:21', 'hash': '0xa7d9eb47313ce6105a85e2425ec4e9fbc0ed080765c8c090b85d8b0f3240c740', 'from': '0x1c72a0b0171dd785a67dd70bf0e20a35a445daeb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28299.332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05fe1c1fe5b68cba0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:31:04.000Z'}}, {'blockNum': '0x803b9b', 'uniqueId': '0x58e33986f917efca69d4137a61de2a0ac3b12025c3eac1ff75651aac00ebace6:log:104', 'hash': '0x58e33986f917efca69d4137a61de2a0ac3b12025c3eac1ff75651aac00ebace6', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x24462c702ff5504cee8432a18e029873b6547e21', 'value': 210000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2c782c4729dd10f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:36:22.000Z'}}, {'blockNum': '0x803baf', 'uniqueId': '0x33edefc2c33023605402ec104512cb4920d429456131a683edab2eb64285e6a9:log:41', 'hash': '0x33edefc2c33023605402ec104512cb4920d429456131a683edab2eb64285e6a9', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd68a741029c2ffde775cdbc4e8878d874bb7ca96', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:41:18.000Z'}}, {'blockNum': '0x803baf', 'uniqueId': '0xbe6685747f88effe0082d9c3b0b796e36ac1944b942e23267fb61825d4ff48c1:log:47', 'hash': '0xbe6685747f88effe0082d9c3b0b796e36ac1944b942e23267fb61825d4ff48c1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3cac884cebcce149cc3f6bba39951294f23b484e', 'value': 23136.4688212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04e63b01429daeac2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:41:18.000Z'}}, {'blockNum': '0x803bb6', 'uniqueId': '0x13ef2df5beeb9653fcf42ff85b1eb2c545d30144131696efb194d7671775af22:log:118', 'hash': '0x13ef2df5beeb9653fcf42ff85b1eb2c545d30144131696efb194d7671775af22', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 82472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1176d0ea849defa00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:42:46.000Z'}}, {'blockNum': '0x803bcd', 'uniqueId': '0xdbbf470aa55bf72b8af23b4d753356ae28577a5d1cf409dfa725ad1f8d3f5385:log:20', 'hash': '0xdbbf470aa55bf72b8af23b4d753356ae28577a5d1cf409dfa725ad1f8d3f5385', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3c5bfac7c09e12b83ad2f93e02d7f43e02794ef1', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:48:15.000Z'}}, {'blockNum': '0x803bd4', 'uniqueId': '0xa1ed461e64c8a4edb9f224994098375a3797be7aef9efcc164d418d06224b0d4:log:98', 'hash': '0xa1ed461e64c8a4edb9f224994098375a3797be7aef9efcc164d418d06224b0d4', 'from': '0x3c5bfac7c09e12b83ad2f93e02d7f43e02794ef1', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 20001.4398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c47bcc5ee201b8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:49:37.000Z'}}, {'blockNum': '0x803be0', 'uniqueId': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0:log:153', 'hash': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4993.928564629898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010eb8ae5290396a0659', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:53:05.000Z'}}, {'blockNum': '0x803be0', 'uniqueId': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0:log:155', 'hash': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4993.928564629898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010eb8ae5290396a0659', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:53:05.000Z'}}, {'blockNum': '0x803be0', 'uniqueId': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0:log:160', 'hash': '0xb2da325951efba752f9f8dea50c6b5d0284def89290b21998ade37ebd0f81ff0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 4993.923570701333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010eb89c949c9f4924cf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:53:05.000Z'}}, {'blockNum': '0x803bef', 'uniqueId': '0x1eeeaee8cc7880d0fce363ccb902a2c113cb6e482256aa8c5442a2ab28fab54b:log:72', 'hash': '0x1eeeaee8cc7880d0fce363ccb902a2c113cb6e482256aa8c5442a2ab28fab54b', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x4934c415f52a55df925413c823e162034bce9f6c', 'value': 10300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022e5d36e442db700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:56:13.000Z'}}, {'blockNum': '0x803bf6', 'uniqueId': '0xfaf54634984af962a0b991783d1ccad5e7bdc31a894e2f2b1af484d9cb9d7d64:log:4', 'hash': '0xfaf54634984af962a0b991783d1ccad5e7bdc31a894e2f2b1af484d9cb9d7d64', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:56:55.000Z'}}, {'blockNum': '0x803bf9', 'uniqueId': '0x7b8fe9ced92d865ab1c7033f06abd7e4b005902454a86fcf7bc41eeb206d5e78:log:37', 'hash': '0x7b8fe9ced92d865ab1c7033f06abd7e4b005902454a86fcf7bc41eeb206d5e78', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb677cbce33c00576f03aaf6176ca0147e12426e3', 'value': 10085.5251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0222bcc6fb0c4202c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:57:07.000Z'}}, {'blockNum': '0x803c0b', 'uniqueId': '0x344e1dfc310690baabdaef3e0a507564ec6d3ac64158a6067795f7c9e19211bd:log:14', 'hash': '0x344e1dfc310690baabdaef3e0a507564ec6d3ac64158a6067795f7c9e19211bd', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 586.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc9ef4d1ea1100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T02:59:58.000Z'}}, {'blockNum': '0x803c0c', 'uniqueId': '0x4c80747f6a96ac9ea79f06a125cb85cb0bfb903f1a3386fb53881f3639159418:log:104', 'hash': '0x4c80747f6a96ac9ea79f06a125cb85cb0bfb903f1a3386fb53881f3639159418', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x590f1d569b3709d9a0b0014875f392b93a1b7a20', 'value': 59998.6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb488301a1c37d0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:00:17.000Z'}}, {'blockNum': '0x803c0e', 'uniqueId': '0x04d530f559e325b443995b71c16f5302105cf44d8266c7424897fe074a36226c:log:50', 'hash': '0x04d530f559e325b443995b71c16f5302105cf44d8266c7424897fe074a36226c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xfac37aea925b47348e2775fb9127871119eacace', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:00:27.000Z'}}, {'blockNum': '0x803c0f', 'uniqueId': '0x322487b9c397cef294d5b1d94152cffb65791e2be0a1185852292e92174906a8:log:3', 'hash': '0x322487b9c397cef294d5b1d94152cffb65791e2be0a1185852292e92174906a8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:00:35.000Z'}}, {'blockNum': '0x803c17', 'uniqueId': '0xdace5821a81e4f8751aff945243ba73f32da905e4ac4f978243049cae881a184:log:9', 'hash': '0xdace5821a81e4f8751aff945243ba73f32da905e4ac4f978243049cae881a184', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 74431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0fc2e99fd3a92b9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:02:29.000Z'}}, {'blockNum': '0x803c1d', 'uniqueId': '0xfd8a81c55ebd9380338298de4cac39addcc6d3196be9b74c5325bb061c85029c:log:86', 'hash': '0xfd8a81c55ebd9380338298de4cac39addcc6d3196be9b74c5325bb061c85029c', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:03:39.000Z'}}, {'blockNum': '0x803c1f', 'uniqueId': '0xc11146ebe5f47272ec6d17021662ea6d52e48fe7c7069a47b0bb57ba6032a67f:log:98', 'hash': '0xc11146ebe5f47272ec6d17021662ea6d52e48fe7c7069a47b0bb57ba6032a67f', 'from': '0x7ae7788322b9bf3b2ef657b6a6d55b3869177020', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 16984.214399646367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0398b752d240fc2e3c05', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:04:07.000Z'}}, {'blockNum': '0x803c2a', 'uniqueId': '0x33658004501c3697f32832405d3fe4efdca204fa2ca010accd79f13c307a3574:log:3', 'hash': '0x33658004501c3697f32832405d3fe4efdca204fa2ca010accd79f13c307a3574', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1112792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xeba493400f4ce4600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:05:29.000Z'}}, {'blockNum': '0x803c36', 'uniqueId': '0x85a9c10e618a3b92ba9251e727a43a8d999593de8d11aa94495dcad62672265c:log:28', 'hash': '0x85a9c10e618a3b92ba9251e727a43a8d999593de8d11aa94495dcad62672265c', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7f0e10af47c1c7000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:07:36.000Z'}}, {'blockNum': '0x803c44', 'uniqueId': '0x4f70444892abd15ce7acbc28e26497db456b3d752e73fa31d0fc8035786ecc34:log:0', 'hash': '0x4f70444892abd15ce7acbc28e26497db456b3d752e73fa31d0fc8035786ecc34', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x5b662727aef339126d8687f9d863c448c2567774', 'value': 200230.79196494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a66887187e90c1b7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:10:35.000Z'}}, {'blockNum': '0x803c45', 'uniqueId': '0xc8fa925019acb25543a6b6a9dcf8e689cfddb4738cbebbd21bc1ef4451bc85f8:log:118', 'hash': '0xc8fa925019acb25543a6b6a9dcf8e689cfddb4738cbebbd21bc1ef4451bc85f8', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x3dee4a4e076e8d82859d241db0baf46f112cfa23', 'value': 16956.403834843863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397355fd8e9a3c75da5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:11:19.000Z'}}, {'blockNum': '0x803c49', 'uniqueId': '0x4b1fe8f4f64bd86f987a79d6731cee7bad1c6ce06e0cde25ac12f8a816dd3694:log:63', 'hash': '0x4b1fe8f4f64bd86f987a79d6731cee7bad1c6ce06e0cde25ac12f8a816dd3694', 'from': '0x3dee4a4e076e8d82859d241db0baf46f112cfa23', 'to': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'value': 16956.403834843863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397355fd8e9a3c75da5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:12:49.000Z'}}, {'blockNum': '0x803c58', 'uniqueId': '0xcae01f8defc83b0f028869227e4d842d927b2910cdf91a4f61d3f6da8b8c06de:log:26', 'hash': '0xcae01f8defc83b0f028869227e4d842d927b2910cdf91a4f61d3f6da8b8c06de', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x770105b2b710aacabaca2319299dedbfcdad954b', 'value': 200000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a126660225eb6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:15:23.000Z'}}, {'blockNum': '0x803c6e', 'uniqueId': '0xf45490af09782da1e3d022cf699a7d7be71751cd032ab21f01782624535bd9ab:log:30', 'hash': '0xf45490af09782da1e3d022cf699a7d7be71751cd032ab21f01782624535bd9ab', 'from': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16956.403834843863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397355fd8e9a3c75da5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:21:05.000Z'}}, {'blockNum': '0x803c70', 'uniqueId': '0x00913f6360d285448756b03324bdfbbef8167db93b37ceeca46c052f8f90c741:log:39', 'hash': '0x00913f6360d285448756b03324bdfbbef8167db93b37ceeca46c052f8f90c741', 'from': '0x754f3e1124b8443b9467e7945be34a59f29b43b2', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 589.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff7bb41a2afda0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:21:08.000Z'}}, {'blockNum': '0x803c82', 'uniqueId': '0x0e5d13e34312d9056e7f9f31b064a5a3454e2ac88542262035163123eb2d5536:log:102', 'hash': '0x0e5d13e34312d9056e7f9f31b064a5a3454e2ac88542262035163123eb2d5536', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'value': 17857.39637385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c80d285d79c5e50400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:25:18.000Z'}}, {'blockNum': '0x803c85', 'uniqueId': '0x62d8cc6d2ce1047c4267b5cd953233b8cb6303643fa47fa41b8d031ce3e4658d:log:43', 'hash': '0x62d8cc6d2ce1047c4267b5cd953233b8cb6303643fa47fa41b8d031ce3e4658d', 'from': '0x5b662727aef339126d8687f9d863c448c2567774', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 200230.79196494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a66887187e90c1b7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:26:20.000Z'}}, {'blockNum': '0x803c85', 'uniqueId': '0x646b2c9f06afce5029cf5731a16e9802f60f1c61bdfd02c4c7d2919a371d824f:log:101', 'hash': '0x646b2c9f06afce5029cf5731a16e9802f60f1c61bdfd02c4c7d2919a371d824f', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xe97deda2e1526cd18a31c665aa4fce14215b36b3', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:26:20.000Z'}}, {'blockNum': '0x803c88', 'uniqueId': '0xb00f5e2e7abee4cab2a3d5567366118a1974c94987d51d9b81467a177aa8c8a8:log:1', 'hash': '0xb00f5e2e7abee4cab2a3d5567366118a1974c94987d51d9b81467a177aa8c8a8', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xce89f3eec9fd9592a2f7850c5ad01785555a842a', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:26:36.000Z'}}, {'blockNum': '0x803c8c', 'uniqueId': '0x19e1e623b82814a3948f3ef7163105aafd1d5ee10e8af94801a8949987c1c427:log:35', 'hash': '0x19e1e623b82814a3948f3ef7163105aafd1d5ee10e8af94801a8949987c1c427', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xb30eec8730cf4ced5884956eff11932fb50105f6', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:27:08.000Z'}}, {'blockNum': '0x803c91', 'uniqueId': '0x140114835eb46115ef2b77fb01b096e4cc9d245fe16e1a088c027460d70953e7:log:0', 'hash': '0x140114835eb46115ef2b77fb01b096e4cc9d245fe16e1a088c027460d70953e7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2c0f30e6667fd08503c695dfe66251c9b1335732', 'value': 65037.000078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc5a9afce25825ee000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:28:06.000Z'}}, {'blockNum': '0x803ca3', 'uniqueId': '0xaf54f1ac8f07a8e49e667125ae252254833375f1fcff80b0286a252b967a8e6c:log:78', 'hash': '0xaf54f1ac8f07a8e49e667125ae252254833375f1fcff80b0286a252b967a8e6c', 'from': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17857.39637385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c80d285d79c5e50400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:30:48.000Z'}}, {'blockNum': '0x803cbc', 'uniqueId': '0x5af094c15e38ee59163adec9921799d9066ee6390ac4a1509b549cf2bc826522:log:117', 'hash': '0x5af094c15e38ee59163adec9921799d9066ee6390ac4a1509b549cf2bc826522', 'from': '0x2c0f30e6667fd08503c695dfe66251c9b1335732', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 65037.000078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc5a9afce25825ee000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:36:22.000Z'}}, {'blockNum': '0x803cbe', 'uniqueId': '0x57b424623f0dfbf7e713532a3934693ee95fa776d20b900386923bd7621467d5:log:29', 'hash': '0x57b424623f0dfbf7e713532a3934693ee95fa776d20b900386923bd7621467d5', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 588.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe9da8aef08760000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:36:35.000Z'}}, {'blockNum': '0x803cc1', 'uniqueId': '0xe65df53c06b7fae06a123a661e40cf6f0150e8213e4676aa9f3cfdfdb68d48db:log:15', 'hash': '0xe65df53c06b7fae06a123a661e40cf6f0150e8213e4676aa9f3cfdfdb68d48db', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xa40bc4cc83e6e71ad33cc3595dd9ed1fd5e8ff44', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:37:51.000Z'}}, {'blockNum': '0x803cc5', 'uniqueId': '0x9fd193d7f5c2efaffe950d1d8a79dce495fc44d6687e9b27ece62d2c388093ca:log:77', 'hash': '0x9fd193d7f5c2efaffe950d1d8a79dce495fc44d6687e9b27ece62d2c388093ca', 'from': '0xb30eec8730cf4ced5884956eff11932fb50105f6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:38:43.000Z'}}, {'blockNum': '0x803cc9', 'uniqueId': '0x76e76f79a1c21064d041fd55f56aef0af746ecbee5b22a2cb4b878e1102ef06e:log:67', 'hash': '0x76e76f79a1c21064d041fd55f56aef0af746ecbee5b22a2cb4b878e1102ef06e', 'from': '0x9b350e05c4e60cfd5db3c0c87bbfd9205eb4b322', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 28709.748759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06145bcd218adad47000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:39:53.000Z'}}, {'blockNum': '0x803cca', 'uniqueId': '0x446ae84fa75aae6b79c7248ed80e040cc7740c5e50492882b7b9c144dbdd46e4:log:62', 'hash': '0x446ae84fa75aae6b79c7248ed80e040cc7740c5e50492882b7b9c144dbdd46e4', 'from': '0xce89f3eec9fd9592a2f7850c5ad01785555a842a', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 16000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:39:57.000Z'}}, {'blockNum': '0x803cce', 'uniqueId': '0x487bfe153b0381d2b2eddfd04f980187609dad89097d06e005f27bac0044d069:log:32', 'hash': '0x487bfe153b0381d2b2eddfd04f980187609dad89097d06e005f27bac0044d069', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x47564a0e832fc93ab78c66c3ce80b8dd09bb5ae7', 'value': 59787.7352164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca91980ba518a56a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:40:58.000Z'}}, {'blockNum': '0x803ce3', 'uniqueId': '0xafb874b316bfbbda4f4d3f04f793ed776e27a18493471b809bb7791e00e968b5:log:78', 'hash': '0xafb874b316bfbbda4f4d3f04f793ed776e27a18493471b809bb7791e00e968b5', 'from': '0x7b3918c8f48e7f98f1666b6009c754bc0d9b704f', 'to': '0xe28541c7b8fb617114047f13133a695f19b41d29', 'value': 4196.181812344968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe379b88600f0aea68f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:46:29.000Z'}}, {'blockNum': '0x803cee', 'uniqueId': '0x539e092a93670a4b0f0dd5bf7f0c040062bb0aa60acc5fd05ac89762fc8fb611:log:60', 'hash': '0x539e092a93670a4b0f0dd5bf7f0c040062bb0aa60acc5fd05ac89762fc8fb611', 'from': '0xe97deda2e1526cd18a31c665aa4fce14215b36b3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:48:38.000Z'}}, {'blockNum': '0x803cf3', 'uniqueId': '0xbe44dc30419567235aef7b83f588145f904f3d3b9d7de4333011f157b5aadda5:log:42', 'hash': '0xbe44dc30419567235aef7b83f588145f904f3d3b9d7de4333011f157b5aadda5', 'from': '0x4934c415f52a55df925413c823e162034bce9f6c', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022e5d36e442db700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:49:30.000Z'}}, {'blockNum': '0x803cf4', 'uniqueId': '0xa0b9935d678ef9459ea5ed7bc6ce73df021b8f47911f5cc5d9efd2bd30da94cb:log:15', 'hash': '0xa0b9935d678ef9459ea5ed7bc6ce73df021b8f47911f5cc5d9efd2bd30da94cb', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x3568d82a933590b2973b7089cef2892c0a27ca3d', 'value': 10048.7251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220be131e05cba2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:49:39.000Z'}}, {'blockNum': '0x803cf4', 'uniqueId': '0xda0dc33ea629da074c9928e2779cb443ec7d7b27ccea739161613a461cff4ca9:log:83', 'hash': '0xda0dc33ea629da074c9928e2779cb443ec7d7b27ccea739161613a461cff4ca9', 'from': '0xbd1421e158c21f804fa5d74e72133f7c1431b9d5', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10011.959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021ebfd7b0de27258000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:49:39.000Z'}}, {'blockNum': '0x803cf8', 'uniqueId': '0x2e211ce2e0cef35c1c1f9c0afab42ffc8810da660391bf5f46a180ef0bd46d2a:log:13', 'hash': '0x2e211ce2e0cef35c1c1f9c0afab42ffc8810da660391bf5f46a180ef0bd46d2a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xe2c49ea63f662128215cfe35540a1bd23337deb3', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:31.000Z'}}, {'blockNum': '0x803cfa', 'uniqueId': '0x99d981f6b2ad4211d93883d02e80b2e71d8ebd6611e829b9513c19fc48b1e37b:log:111', 'hash': '0x99d981f6b2ad4211d93883d02e80b2e71d8ebd6611e829b9513c19fc48b1e37b', 'from': '0x6b838d866e45449294c32dedd9fcf3326fa099d9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10418.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0234cfa1b89e753ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:43.000Z'}}, {'blockNum': '0x803cfb', 'uniqueId': '0x6ad96d6558ff49f3a25cb0e78aa7b4f7f53d1177ddc473bb6b8669455ba7f829:log:30', 'hash': '0x6ad96d6558ff49f3a25cb0e78aa7b4f7f53d1177ddc473bb6b8669455ba7f829', 'from': '0x2b7c6615195babbdbac5665eae1954f36865166f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:48.000Z'}}, {'blockNum': '0x803cfb', 'uniqueId': '0x9c8c6632c0e77103ef497bfc042efc9bc7909e441cd39b85a4000b0d5a7b9c9b:log:116', 'hash': '0x9c8c6632c0e77103ef497bfc042efc9bc7909e441cd39b85a4000b0d5a7b9c9b', 'from': '0x924ba914a8a8e5b45b5d39984529eacd9fd61beb', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 25971.69534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x057fedad4bca680ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:48.000Z'}}, {'blockNum': '0x803cfb', 'uniqueId': '0x2492f2528a73c455a2e1c8b2c567aaaa45e27207cdd57eddbbe2ade29ecb1a0e:log:140', 'hash': '0x2492f2528a73c455a2e1c8b2c567aaaa45e27207cdd57eddbbe2ade29ecb1a0e', 'from': '0x3b0937e7fb99f677e8ce5866f04ed924b17b26e4', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 53283.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b488701901d9462c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:50:48.000Z'}}, {'blockNum': '0x803cfc', 'uniqueId': '0xf136492e42dd9575f2907d8de92d51643cd6ddd6292cc12768a7cc3cacb8ded9:log:73', 'hash': '0xf136492e42dd9575f2907d8de92d51643cd6ddd6292cc12768a7cc3cacb8ded9', 'from': '0x621c14a9ff6254ccee6156503cf0c1f56b482b9a', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad5814560aa5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:51:00.000Z'}}, {'blockNum': '0x803d03', 'uniqueId': '0x8cc8fc57e2c15bf7f0b922c2bcd211c71c45b00d4bd3bcffe8d4a39679c64ab0:log:66', 'hash': '0x8cc8fc57e2c15bf7f0b922c2bcd211c71c45b00d4bd3bcffe8d4a39679c64ab0', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1f6e38dac16a5ec92f2624fbc7e424bd2313788b', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:52:16.000Z'}}, {'blockNum': '0x803d0b', 'uniqueId': '0x087b923a5d699193bab690f218d62116e7841f05fc1154067c992e1e205cd763:log:132', 'hash': '0x087b923a5d699193bab690f218d62116e7841f05fc1154067c992e1e205cd763', 'from': '0xfac37aea925b47348e2775fb9127871119eacace', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5b8fa8fe2ac00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:55:01.000Z'}}, {'blockNum': '0x803d10', 'uniqueId': '0x4bb01f9f4c567933b73160b6b8e6e89cfef729c748598fee8bbb1bb4ddb60547:log:45', 'hash': '0x4bb01f9f4c567933b73160b6b8e6e89cfef729c748598fee8bbb1bb4ddb60547', 'from': '0x478a746989ce31623b0e8c919186993b6d2ccd1c', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:55:53.000Z'}}, {'blockNum': '0x803d10', 'uniqueId': '0x62f402879e300cd32353aa73aba399baf25d19bc21c6636d47a57e9db77e544b:log:54', 'hash': '0x62f402879e300cd32353aa73aba399baf25d19bc21c6636d47a57e9db77e544b', 'from': '0x478a746989ce31623b0e8c919186993b6d2ccd1c', 'to': '0xdb5ac1a559b02e12f29fc0ec0e37be8e046def49', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T03:55:53.000Z'}}, {'blockNum': '0x803d29', 'uniqueId': '0x6e06e5766a3a1f8d233f8f5ea21bbd39688f3d1777583941cc9c870f63c01140:log:168', 'hash': '0x6e06e5766a3a1f8d233f8f5ea21bbd39688f3d1777583941cc9c870f63c01140', 'from': '0x092c017c5949e43c8191d7545271d94212a0984e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0252a06a3e981616c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:01:09.000Z'}}, {'blockNum': '0x803d62', 'uniqueId': '0xeccb275e3eb9a2cd44110e647b38425a1b3a2bbb0398db5ffde87860d72357f4:log:30', 'hash': '0xeccb275e3eb9a2cd44110e647b38425a1b3a2bbb0398db5ffde87860d72357f4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xd0e980ffac3e601dfc86521cea048d6b4f0ebda0', 'value': 20603.2207062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x045ce72007bf47c5f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:12:19.000Z'}}, {'blockNum': '0x803d72', 'uniqueId': '0x4561a7b3fea608329f2bebcefef626b0deef80480187d10fba28f1b37ad272eb:log:56', 'hash': '0x4561a7b3fea608329f2bebcefef626b0deef80480187d10fba28f1b37ad272eb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 17971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03ce35b9858fb0ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:17:32.000Z'}}, {'blockNum': '0x803d7d', 'uniqueId': '0x551cb04743f27c5caa30ff686321f24f1ce64f611e668dc564d584d4dd8c0500:log:6', 'hash': '0x551cb04743f27c5caa30ff686321f24f1ce64f611e668dc564d584d4dd8c0500', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x863edcba3503038bc790889ea0c2c902d6faeb6d', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:21:41.000Z'}}, {'blockNum': '0x803d82', 'uniqueId': '0x74ea7425c43d4ffed60b44ae42b6e4388590af440f09600b79317a5300145a17:log:34', 'hash': '0x74ea7425c43d4ffed60b44ae42b6e4388590af440f09600b79317a5300145a17', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xdf9d80fc59e61fbe176b449da06d65ba98e6c9f6', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:22:29.000Z'}}, {'blockNum': '0x803d88', 'uniqueId': '0xf25352500400374bb96c220a5cbe31443e4e58ca1b6fa1c2d01ee0c3fec47ac9:log:0', 'hash': '0xf25352500400374bb96c220a5cbe31443e4e58ca1b6fa1c2d01ee0c3fec47ac9', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x5b662727aef339126d8687f9d863c448c2567774', 'value': 346547.2376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49625d075f3e7d8e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:23:59.000Z'}}, {'blockNum': '0x803d94', 'uniqueId': '0x96a8513e3655692414e4bb40d05717189bcfa72a6b89142ede58df73260344e2:log:31', 'hash': '0x96a8513e3655692414e4bb40d05717189bcfa72a6b89142ede58df73260344e2', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xae8bdbe465e04c5e7a5f150efaccc9b669d4099e', 'value': 10234.5384286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022ad0c0abe733913000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:25:38.000Z'}}, {'blockNum': '0x803db5', 'uniqueId': '0x3cc8e66d623983fadd46b265fe73900536e2166512889461a2a33640fb1bb500:log:52', 'hash': '0x3cc8e66d623983fadd46b265fe73900536e2166512889461a2a33640fb1bb500', 'from': '0x3568d82a933590b2973b7089cef2892c0a27ca3d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10048.7251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220be131e05cba2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:33:54.000Z'}}, {'blockNum': '0x803db6', 'uniqueId': '0x2ce65038cdb773978d65fb50aaa78845a88f863be705051c28d796c33c3b04e8:log:11', 'hash': '0x2ce65038cdb773978d65fb50aaa78845a88f863be705051c28d796c33c3b04e8', 'from': '0x590f1d569b3709d9a0b0014875f392b93a1b7a20', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59998.6251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb488301a1c37d0c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:00.000Z'}}, {'blockNum': '0x803db6', 'uniqueId': '0x51f04ef0c772b49cd75eb29a3e4690e9b0753c72572f7d85277ac2b43d3742ea:log:14', 'hash': '0x51f04ef0c772b49cd75eb29a3e4690e9b0753c72572f7d85277ac2b43d3742ea', 'from': '0xb677cbce33c00576f03aaf6176ca0147e12426e3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10085.5251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0222bcc6fb0c4202c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:00.000Z'}}, {'blockNum': '0x803db8', 'uniqueId': '0xc446f7b0bf9f315ae07395a142b82c1c0c94a0955e6d5e927922fa331f43e0cf:log:39', 'hash': '0xc446f7b0bf9f315ae07395a142b82c1c0c94a0955e6d5e927922fa331f43e0cf', 'from': '0xe2c49ea63f662128215cfe35540a1bd23337deb3', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:05.000Z'}}, {'blockNum': '0x803dbb', 'uniqueId': '0x75d4b659b72b91f6bd90c7678fd27a09e7b612dfb0fb2f3fa6c3a702653b5d41:log:76', 'hash': '0x75d4b659b72b91f6bd90c7678fd27a09e7b612dfb0fb2f3fa6c3a702653b5d41', 'from': '0x1f6e38dac16a5ec92f2624fbc7e424bd2313788b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26b7674723f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:59.000Z'}}, {'blockNum': '0x803dbb', 'uniqueId': '0x906a8d3663b3284686ea1b66c77843924bcd63fd360c3b6fb5df226793e8b6bd:log:80', 'hash': '0x906a8d3663b3284686ea1b66c77843924bcd63fd360c3b6fb5df226793e8b6bd', 'from': '0xd0e980ffac3e601dfc86521cea048d6b4f0ebda0', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 20603.2207062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x045ce72007bf47c5f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:34:59.000Z'}}, {'blockNum': '0x803dbd', 'uniqueId': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c:log:89', 'hash': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3512.6498966935446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe6bcf5639db4ffe76', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:35:09.000Z'}}, {'blockNum': '0x803dbd', 'uniqueId': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c:log:91', 'hash': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 3512.6498966935446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe6bcf5639db4ffe76', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:35:09.000Z'}}, {'blockNum': '0x803dbd', 'uniqueId': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c:log:95', 'hash': '0x8d3708e2eca94f3375b3e6f3ebb1f38619a02ce1a5810141d6b9c9246a5b3f4c', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 3512.6498966935446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbe6bcf5639db4ffe76', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:35:09.000Z'}}, {'blockNum': '0x803dd0', 'uniqueId': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7:log:30', 'hash': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7112.903225806452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0181975c961833a39ce7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:38:34.000Z'}}, {'blockNum': '0x803dd0', 'uniqueId': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7:log:32', 'hash': '0x74ec59dd1ad16b37c0e8e50945e25b9262d7bae402e19de47caf188838e1c8f7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 7112.903225806452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0181975c961833a39ce7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:38:34.000Z'}}, {'blockNum': '0x803dd2', 'uniqueId': '0x4f2c2caa952285ea16aaa5518594c768fe79be4b20c07a066d363c46d7ead242:log:12', 'hash': '0x4f2c2caa952285ea16aaa5518594c768fe79be4b20c07a066d363c46d7ead242', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'value': 1203.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4143d12bc80ca2c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:39:19.000Z'}}, {'blockNum': '0x803dd3', 'uniqueId': '0xfa3103def493be93df4b16b1fc961929f3de3084ed7ff99128bf584a318d4501:log:92', 'hash': '0xfa3103def493be93df4b16b1fc961929f3de3084ed7ff99128bf584a318d4501', 'from': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 11424.8056034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x026b57072513f558d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:39:35.000Z'}}, {'blockNum': '0x803dd5', 'uniqueId': '0x86212e867218cffb16efc374434e53a57fd4aa7c29d66bc06a5cc97134a0523b:log:143', 'hash': '0x86212e867218cffb16efc374434e53a57fd4aa7c29d66bc06a5cc97134a0523b', 'from': '0xe638b39cc4659b3dd397a8ef02abfb9ac8a3d48d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:39:59.000Z'}}, {'blockNum': '0x803dd6', 'uniqueId': '0xe182de55c01cdc598d8ac31a322906845e398b65c391d416a67d2e886eb9130f:log:44', 'hash': '0xe182de55c01cdc598d8ac31a322906845e398b65c391d416a67d2e886eb9130f', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0xb9fcf16e0cb34780b48797b1ee8aab3713091fdd', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:40:05.000Z'}}, {'blockNum': '0x803ddb', 'uniqueId': '0xbb234074dfa3374df3acbc5fb9cd925840696d4f7e957bfc93001d93c884a3f0:log:81', 'hash': '0xbb234074dfa3374df3acbc5fb9cd925840696d4f7e957bfc93001d93c884a3f0', 'from': '0x24462c702ff5504cee8432a18e029873b6547e21', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 210000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2c782c4729dd10f6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:40:54.000Z'}}, {'blockNum': '0x803ddd', 'uniqueId': '0x45b95b857aeec59521e4089701c07db5f0ab21f82cdc4a7a3bfbafc4ad930b2a:log:5', 'hash': '0x45b95b857aeec59521e4089701c07db5f0ab21f82cdc4a7a3bfbafc4ad930b2a', 'from': '0xc2f95afb3492bf1eb0e241a90fef6286527ec588', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000.5147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e21055ea6fc24c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:40:58.000Z'}}, {'blockNum': '0x803dde', 'uniqueId': '0x907f410a24593274ea766c4b3dc3af88534a47c16504abb92226b67be7516d7d:log:14', 'hash': '0x907f410a24593274ea766c4b3dc3af88534a47c16504abb92226b67be7516d7d', 'from': '0x5b662727aef339126d8687f9d863c448c2567774', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 346547.2376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49625d075f3e7d8e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:12.000Z'}}, {'blockNum': '0x803dde', 'uniqueId': '0x4c8d7c1bf830393fd384bcc68c4a1516bd86b69f9cfe429ad6758da60a0fb1d9:log:25', 'hash': '0x4c8d7c1bf830393fd384bcc68c4a1516bd86b69f9cfe429ad6758da60a0fb1d9', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03ce35b9858fb0ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:12.000Z'}}, {'blockNum': '0x803ddf', 'uniqueId': '0xcc08ca37be66e6ee0b02de56a1dd1f8d2ddf497b2984bf51439655be8cbed9ec:log:10', 'hash': '0xcc08ca37be66e6ee0b02de56a1dd1f8d2ddf497b2984bf51439655be8cbed9ec', 'from': '0xd68a741029c2ffde775cdbc4e8878d874bb7ca96', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:15.000Z'}}, {'blockNum': '0x803de2', 'uniqueId': '0x77c351692e6a4bb6b50d9e4902c960914199e7ba693ad577bccfd8fd6e93ef72:log:93', 'hash': '0x77c351692e6a4bb6b50d9e4902c960914199e7ba693ad577bccfd8fd6e93ef72', 'from': '0x770105b2b710aacabaca2319299dedbfcdad954b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 200000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a126660225eb6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:39.000Z'}}, {'blockNum': '0x803de3', 'uniqueId': '0x3c91d12b3de2072f79f7202d094692f114f92e58a27acbc53a6501b1232643f7:log:127', 'hash': '0x3c91d12b3de2072f79f7202d094692f114f92e58a27acbc53a6501b1232643f7', 'from': '0x47564a0e832fc93ab78c66c3ce80b8dd09bb5ae7', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59787.7352164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca91980ba518a56a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:41:43.000Z'}}, {'blockNum': '0x803de4', 'uniqueId': '0x2c5a8d7f24e73195d15af2983342ab203ab54e30bf1b937015d327da5a0a6b97:log:129', 'hash': '0x2c5a8d7f24e73195d15af2983342ab203ab54e30bf1b937015d327da5a0a6b97', 'from': '0xa40bc4cc83e6e71ad33cc3595dd9ed1fd5e8ff44', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:42:07.000Z'}}, {'blockNum': '0x803de4', 'uniqueId': '0x2c4175a086fc6e5ffa5e3534fa8e556216cf75f8285358644f7cbba55033fdbd:log:130', 'hash': '0x2c4175a086fc6e5ffa5e3534fa8e556216cf75f8285358644f7cbba55033fdbd', 'from': '0xdf9d80fc59e61fbe176b449da06d65ba98e6c9f6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:42:07.000Z'}}, {'blockNum': '0x803df2', 'uniqueId': '0x5e6b6387dab4a7d1ad38bbf7a190601da26a9db7ca54eee0a7108e711d9aa46d:log:115', 'hash': '0x5e6b6387dab4a7d1ad38bbf7a190601da26a9db7ca54eee0a7108e711d9aa46d', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x76cdc449bcc480e57d1790e57cbf304053b2e307', 'value': 22158.4398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04b136202da785af8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:44:59.000Z'}}, {'blockNum': '0x803df4', 'uniqueId': '0xca44dd645aa87d023e4c58b966e7fc79c639018a76863ac038dd109480648c52:log:58', 'hash': '0xca44dd645aa87d023e4c58b966e7fc79c639018a76863ac038dd109480648c52', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'value': 8006.6655114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b20ace157c80511000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:45:59.000Z'}}, {'blockNum': '0x803dfd', 'uniqueId': '0x662986ed7ebe3f9ba637f2e3d83c2f48dcbbd2ed2f7719d2d48dbe06200135ff:log:14', 'hash': '0x662986ed7ebe3f9ba637f2e3d83c2f48dcbbd2ed2f7719d2d48dbe06200135ff', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'value': 9667.9648466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020c19f6f4e8dcea5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:47:25.000Z'}}, {'blockNum': '0x803dfd', 'uniqueId': '0xa71a88a0f71f6c6db1c0918c4ef0d151c161f4a81cba7d2c3344687002261524:log:104', 'hash': '0xa71a88a0f71f6c6db1c0918c4ef0d151c161f4a81cba7d2c3344687002261524', 'from': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 9210.5906114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01f34e9f41448cf3d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:47:25.000Z'}}, {'blockNum': '0x803e05', 'uniqueId': '0x9bd9a939b67606119a1e4329293fdfcfccc94b681a631ea5afd987cd63d20f05:log:151', 'hash': '0x9bd9a939b67606119a1e4329293fdfcfccc94b681a631ea5afd987cd63d20f05', 'from': '0x537c6cda0b2549be42fab62c165143b16ec122ff', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 9667.9648466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020c19f6f4e8dcea5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:48:24.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x09dee30ca3d5960afafb58d70e78d1435e950a463d16d63786fc1c03a5cae63c:log:0', 'hash': '0x09dee30ca3d5960afafb58d70e78d1435e950a463d16d63786fc1c03a5cae63c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 453000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fed2de07f22f1200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xe88eabb573fc0e41931c6901b54d1255507f02b798b0087903416a9627eafb64:log:99', 'hash': '0xe88eabb573fc0e41931c6901b54d1255507f02b798b0087903416a9627eafb64', 'from': '0x3a879221bbebdc04418e75d7cc31221550ffb67f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 8800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01dd0c885f9a0d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x438324a7e6e34bcc64583b689fc5f34d27c560cf4645723c46c3c9366ff16ba0:log:103', 'hash': '0x438324a7e6e34bcc64583b689fc5f34d27c560cf4645723c46c3c9366ff16ba0', 'from': '0x8cbee18999a05165711c9a655c2dc5d3dbb95474', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34868974dd63d6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xe9a3efd5871a5c03ed9efdf489e0847bb2714e6e21118e8af38c300e2e21763a:log:104', 'hash': '0xe9a3efd5871a5c03ed9efdf489e0847bb2714e6e21118e8af38c300e2e21763a', 'from': '0xb6ff8c73b2239bcd735cd66ce971f21376a69286', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 132479.6572306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1c0dbc9267ec9f205000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xbfcb83d1f1b27a139d54b9781269541f6048cc3b33208a8b8a31b6a376f7abfd:log:106', 'hash': '0xbfcb83d1f1b27a139d54b9781269541f6048cc3b33208a8b8a31b6a376f7abfd', 'from': '0x03a182fb2ca5527d4ee4cdc6b8b87273a2cf846f', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59985.7267798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb3d5301039ff91f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x56a30db7f082396592caa1ca1f393e0d0ff1bb89d09834ce41a182b2ff3cc153:log:107', 'hash': '0x56a30db7f082396592caa1ca1f393e0d0ff1bb89d09834ce41a182b2ff3cc153', 'from': '0x3cac884cebcce149cc3f6bba39951294f23b484e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 23136.4688212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04e63b01429daeac2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0x6f8d5a281c693f6ca3451bf69535d8b8c9de3a46baf89d3772578e48b0d87be2:log:110', 'hash': '0x6f8d5a281c693f6ca3451bf69535d8b8c9de3a46baf89d3772578e48b0d87be2', 'from': '0x378760b131447113a39a4995a64f6beee9f4f6b9', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 46400.5147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09d3607f472fd6e4c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e07', 'uniqueId': '0xfb2a78bbf06de6ab1dc5d3b274ffa96c5a4d8ba0170876feb6964306215908de:log:111', 'hash': '0xfb2a78bbf06de6ab1dc5d3b274ffa96c5a4d8ba0170876feb6964306215908de', 'from': '0xae8bdbe465e04c5e7a5f150efaccc9b669d4099e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10234.5384286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022ad0c0abe733913000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:10.000Z'}}, {'blockNum': '0x803e09', 'uniqueId': '0xf0fa6870a37a224b170e6723a2fdf7d2a1aeeef2a8f8264efd2bb11f30bafe54:log:25', 'hash': '0xf0fa6870a37a224b170e6723a2fdf7d2a1aeeef2a8f8264efd2bb11f30bafe54', 'from': '0x284cb1ea7b4bcb6e0938c18d776c3011a614dc89', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:49:45.000Z'}}, {'blockNum': '0x803e10', 'uniqueId': '0xa1f1cffe15b340103ae3ffd7c502b10eb795803ad7cf937a750a93ec5b0a9621:log:43', 'hash': '0xa1f1cffe15b340103ae3ffd7c502b10eb795803ad7cf937a750a93ec5b0a9621', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'value': 1968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6abc5322a34276c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:51:47.000Z'}}, {'blockNum': '0x803e10', 'uniqueId': '0x647b04193acdb7b3f9e56888b86bafb2f12d4a8eb21a684feb51b252e90d0589:log:45', 'hash': '0x647b04193acdb7b3f9e56888b86bafb2f12d4a8eb21a684feb51b252e90d0589', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xe9a06fdba334ea394c2680adc35b0f5c46ce0632', 'value': 1908.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x677ba850880706c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:51:47.000Z'}}, {'blockNum': '0x803e11', 'uniqueId': '0x324356995dd602bd5fcbe35cfc3829f4d92bbdf5b1920f29da103a2b7de17216:log:19', 'hash': '0x324356995dd602bd5fcbe35cfc3829f4d92bbdf5b1920f29da103a2b7de17216', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xd9cbfe4aa15eccf67c115a0bc7ed003f9da8a8ac', 'value': 9958.2365398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021bd64b2bf31e15f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:52:42.000Z'}}, {'blockNum': '0x803e14', 'uniqueId': '0xb0ea3dd0f01e5fdab0b09c358a7d24c53e8f577b6d65d0499a5170aa36cadbde:log:65', 'hash': '0xb0ea3dd0f01e5fdab0b09c358a7d24c53e8f577b6d65d0499a5170aa36cadbde', 'from': '0x5285cfc9bb587bbfaad6786fe345aaaafeff342d', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 1968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6abc5322a34276c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:53:38.000Z'}}, {'blockNum': '0x803e14', 'uniqueId': '0x4ce72a2a479cff1c2434d995e9b68b56f755aad99eae7c36b68eeda2960a2733:log:80', 'hash': '0x4ce72a2a479cff1c2434d995e9b68b56f755aad99eae7c36b68eeda2960a2733', 'from': '0x76cdc449bcc480e57d1790e57cbf304053b2e307', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 22158.4398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04b136202da785af8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:53:38.000Z'}}, {'blockNum': '0x803e24', 'uniqueId': '0xea0e1869cac2c2db9dd8c24be9c7957c64ca78b551377e06b1b1cfc3937e3443:log:7', 'hash': '0xea0e1869cac2c2db9dd8c24be9c7957c64ca78b551377e06b1b1cfc3937e3443', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x98ae5bf7ba048587664cb407dbd7fc7ae9222c81', 'value': 1736.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5e2164082894480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:56:21.000Z'}}, {'blockNum': '0x803e29', 'uniqueId': '0x648881a33475aa6ba9c5eed9c0cc288a843e34b32cb7578ab91e0ae441da7a48:log:28', 'hash': '0x648881a33475aa6ba9c5eed9c0cc288a843e34b32cb7578ab91e0ae441da7a48', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xbb6131c8f5eca3979aeea5f8c723d0c530688c9e', 'value': 17749.1891892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c22f7b3857bd8b2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:09.000Z'}}, {'blockNum': '0x803e2f', 'uniqueId': '0x1a808b9f4a678f7b46ada7333c58204cbdeeca94b18e8e413f385ee7c5654ee1:log:9', 'hash': '0x1a808b9f4a678f7b46ada7333c58204cbdeeca94b18e8e413f385ee7c5654ee1', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x17fdf49eda93839700c76fd9317854f66911ce25', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:52.000Z'}}, {'blockNum': '0x803e2f', 'uniqueId': '0xdc1f8ddbc8895b07434cc6796fb6321b85ed52b3a380f80c0800ed173116e6dc:log:17', 'hash': '0xdc1f8ddbc8895b07434cc6796fb6321b85ed52b3a380f80c0800ed173116e6dc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6499577c648c9005fc57841bbde2c2402813c9ce', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:52.000Z'}}, {'blockNum': '0x803e2f', 'uniqueId': '0x0e6cdc3029f6b2ccc7850e57d7e9b476c77ce949eedca897ee46df51f2f47feb:log:32', 'hash': '0x0e6cdc3029f6b2ccc7850e57d7e9b476c77ce949eedca897ee46df51f2f47feb', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 453000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5fed2de07f22f1200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:58:52.000Z'}}, {'blockNum': '0x803e30', 'uniqueId': '0x9dd5eaa62504eb599da60456620dc45f14c2d31a0289012edc83521c02288078:log:38', 'hash': '0x9dd5eaa62504eb599da60456620dc45f14c2d31a0289012edc83521c02288078', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x8bfc1e6b3db10ef4c447b903707812eaaa1de700', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:59:09.000Z'}}, {'blockNum': '0x803e32', 'uniqueId': '0x37472723aacc6fd5a222f7ab49555e27ccc0ea06598acc8926f3f68ff145f036:log:9', 'hash': '0x37472723aacc6fd5a222f7ab49555e27ccc0ea06598acc8926f3f68ff145f036', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd6b96b64014362749969238765220701b0c9eb8b', 'value': 10064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0221920e76a48b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T04:59:50.000Z'}}, {'blockNum': '0x803e43', 'uniqueId': '0xf976194aa597fbd0af3dea0b5fa7884f49ac21b0beaf7afbbbad5edc282e188f:log:6', 'hash': '0xf976194aa597fbd0af3dea0b5fa7884f49ac21b0beaf7afbbbad5edc282e188f', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 85131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1206f5f430a1934c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:03:00.000Z'}}, {'blockNum': '0x803e43', 'uniqueId': '0x8b61c9ddd644b166c1033b5cdf8acedb6a31d98ca66159238811905bace35a53:log:34', 'hash': '0x8b61c9ddd644b166c1033b5cdf8acedb6a31d98ca66159238811905bace35a53', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xaef0d20c06b1bf9c303e61912fb6fc8607c45c00', 'value': 38641.048854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x082ebc46d3a970ff6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:03:00.000Z'}}, {'blockNum': '0x803e4c', 'uniqueId': '0xc8c9664ee907230a3eb0c703f5fbd0d6469bb653609028d035c19781b31c17b5:log:29', 'hash': '0xc8c9664ee907230a3eb0c703f5fbd0d6469bb653609028d035c19781b31c17b5', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 94612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1408ed429423e9d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:04:25.000Z'}}, {'blockNum': '0x803e5e', 'uniqueId': '0xaaf8f99d58c16178159206ad09c4213d4b2c8d87c52ef1231a359ff7d0f784a0:log:28', 'hash': '0xaaf8f99d58c16178159206ad09c4213d4b2c8d87c52ef1231a359ff7d0f784a0', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x155d395b0b27349e41b7ca436a0a8d586f0041ed', 'value': 59848.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cac6aaedd413bd6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:07:15.000Z'}}, {'blockNum': '0x803e64', 'uniqueId': '0xd70467fcaac00814471d52fb9078c611f8f4a35d33f65feaae1d9b51d3ab8a4c:log:3', 'hash': '0xd70467fcaac00814471d52fb9078c611f8f4a35d33f65feaae1d9b51d3ab8a4c', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x73fde08d4cefe45f5ae6c2baf0d0b92c82f42c34', 'value': 117825.7030722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x18f3581b04d60cd7d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:08:53.000Z'}}, {'blockNum': '0x803e72', 'uniqueId': '0x4a2ac2e927c966f6d64d31855d14d2676a6c750be1b8af5bfe3e6458d2cb0ccc:log:96', 'hash': '0x4a2ac2e927c966f6d64d31855d14d2676a6c750be1b8af5bfe3e6458d2cb0ccc', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 94612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1408ed429423e9d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:10:56.000Z'}}, {'blockNum': '0x803e81', 'uniqueId': '0xeb5e026890033a19b7f63463430693d33316100db652a0b4f191a93203e1b462:log:0', 'hash': '0xeb5e026890033a19b7f63463430693d33316100db652a0b4f191a93203e1b462', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x5b662727aef339126d8687f9d863c448c2567774', 'value': 349760.5217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a108e4dbf7c3c524000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:14:08.000Z'}}, {'blockNum': '0x803e84', 'uniqueId': '0xd54f72c7ec453c1aec567cc6e767fe37a4ff4bc0577b3e4a3fc118d4c213c3f8:log:2', 'hash': '0xd54f72c7ec453c1aec567cc6e767fe37a4ff4bc0577b3e4a3fc118d4c213c3f8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 301277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3fcc4247020ae1540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:14:37.000Z'}}, {'blockNum': '0x803e89', 'uniqueId': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d:log:10', 'hash': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d', 'from': '0xb14232b0204b2f7bb6ba5aff59ef36030f7fe38b', 'to': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'value': 1011.0201193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x36ceb901e3a18d2800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:16:36.000Z'}}, {'blockNum': '0x803e89', 'uniqueId': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d:log:12', 'hash': '0xd36fdb07e9714c037b913a4f40685372d3be201d19c913292d1dd1b991ba9f0d', 'from': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'to': '0xfa29654a1d94fa8c5145798ffb71cfb08f29f821', 'value': 1007.9870589421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x36a4a16990429a4d00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:16:36.000Z'}}, {'blockNum': '0x803e8c', 'uniqueId': '0x32431068e473c93d79d223c5d0bdb107353b602446633d7075f38b1fdd89e1be:log:72', 'hash': '0x32431068e473c93d79d223c5d0bdb107353b602446633d7075f38b1fdd89e1be', 'from': '0x5f4161eb3a67f1f2096b31997d59b5386fa21ff3', 'to': '0xa1cf0c28748c5dd3324866c36b1bce966a8ba921', 'value': 413667.1509766994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5798f0f1becf64a7eac6', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:17:22.000Z'}}, {'blockNum': '0x803eac', 'uniqueId': '0x4be8f640f90c5be432621ad5bcddbd96e393f3e92c8196eb4edfff96f20cb1fd:log:123', 'hash': '0x4be8f640f90c5be432621ad5bcddbd96e393f3e92c8196eb4edfff96f20cb1fd', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 301277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3fcc4247020ae1540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:25:20.000Z'}}, {'blockNum': '0x803eb2', 'uniqueId': '0x8c751b3e306065945024a7cd0810f5808f12519184bc84d0c8d0d111e17dba35:log:22', 'hash': '0x8c751b3e306065945024a7cd0810f5808f12519184bc84d0c8d0d111e17dba35', 'from': '0x5b662727aef339126d8687f9d863c448c2567774', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 349760.5217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4a108e4dbf7c3c524000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:26:23.000Z'}}, {'blockNum': '0x803ec9', 'uniqueId': '0xd32f0ce27bae362dda73528f3035537a268564dfe0b2fb7e54fdc57fc8412c95:log:1', 'hash': '0xd32f0ce27bae362dda73528f3035537a268564dfe0b2fb7e54fdc57fc8412c95', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:17.000Z'}}, {'blockNum': '0x803eca', 'uniqueId': '0xf7f75dd7929775bc161ae63e381505991479d2c8cc7a28737e2b6212d52d7707:log:68', 'hash': '0xf7f75dd7929775bc161ae63e381505991479d2c8cc7a28737e2b6212d52d7707', 'from': '0xaef0d20c06b1bf9c303e61912fb6fc8607c45c00', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 38641.048854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x082ebc46d3a970ff6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:38.000Z'}}, {'blockNum': '0x803ecc', 'uniqueId': '0xd5f3639b60a8d04a03570cf62f18de38b14c19518b31e0918969510633c85846:log:5', 'hash': '0xd5f3639b60a8d04a03570cf62f18de38b14c19518b31e0918969510633c85846', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x152b1bedd7313ac5613c93abad59ba6dab3736e7', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:55.000Z'}}, {'blockNum': '0x803ecc', 'uniqueId': '0x8490bc66f62ee92af9acbac1bf2d8826bc61665137d3a792290a7e50173a3c71:log:7', 'hash': '0x8490bc66f62ee92af9acbac1bf2d8826bc61665137d3a792290a7e50173a3c71', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 18217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03db8ba916328b040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:55.000Z'}}, {'blockNum': '0x803ecc', 'uniqueId': '0xfd113837f314436d65c949419bad5e9b115312129edbc18bc3e08eb09b74d50c:log:8', 'hash': '0xfd113837f314436d65c949419bad5e9b115312129edbc18bc3e08eb09b74d50c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x2d5ebdfca13265c97c53a30e21ca860ddabc3dac', 'value': 30968.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x068ed42bd20d7a96c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:31:55.000Z'}}, {'blockNum': '0x803ed5', 'uniqueId': '0x2874a1d2efde623b4030a244659e8001f72f0c7ff8e40d066aef52f296e4fad1:log:14', 'hash': '0x2874a1d2efde623b4030a244659e8001f72f0c7ff8e40d066aef52f296e4fad1', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xaacd1e63da8b541344fcd0891a7161db215a25a2', 'value': 3068.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa65de42e968426c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:33:52.000Z'}}, {'blockNum': '0x803edc', 'uniqueId': '0xb5e412370508bdd72ab13678a88daa814a5dbe0947cc015363a304b24feddc25:log:12', 'hash': '0xb5e412370508bdd72ab13678a88daa814a5dbe0947cc015363a304b24feddc25', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xb58a14601d35131e8f6023791e872f4609f472a7', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:35:44.000Z'}}, {'blockNum': '0x803ee0', 'uniqueId': '0xd3139a4260ffab20f128529ec7d8c954053aec1612f8fd5c68473dd8c423c08c:log:68', 'hash': '0xd3139a4260ffab20f128529ec7d8c954053aec1612f8fd5c68473dd8c423c08c', 'from': '0x8bfc1e6b3db10ef4c447b903707812eaaa1de700', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:36:32.000Z'}}, {'blockNum': '0x803ee2', 'uniqueId': '0x04893a5227df00f4da7980e3fb84df293c1e4c8a053c2158706a040a83150ae4:log:23', 'hash': '0x04893a5227df00f4da7980e3fb84df293c1e4c8a053c2158706a040a83150ae4', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3a0514b6a2de27b87210ee377862963f6ae92ba0', 'value': 60003.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4d1bd7c079562c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:37:00.000Z'}}, {'blockNum': '0x803ef2', 'uniqueId': '0x09d8c2ccf93e7557a4f9e2509b401efdac29112a6c10587fd320dfbe9f30fe14:log:161', 'hash': '0x09d8c2ccf93e7557a4f9e2509b401efdac29112a6c10587fd320dfbe9f30fe14', 'from': '0xe9a06fdba334ea394c2680adc35b0f5c46ce0632', 'to': '0x502a76d02dfaeb9a7907a4e4b28fb66519ba7d60', 'value': 1908.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x677ba850880706c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:40:48.000Z'}}, {'blockNum': '0x803ef4', 'uniqueId': '0x518d8416aab858bbacbbfe9c43efbb9821b6d9d5b2f3f648898b0eecc78a2bd2:log:71', 'hash': '0x518d8416aab858bbacbbfe9c43efbb9821b6d9d5b2f3f648898b0eecc78a2bd2', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03db8ba916328b040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:41:07.000Z'}}, {'blockNum': '0x803ef6', 'uniqueId': '0x552275ea1ea69f0c0622c27e1fc07eaeb3d86d2d4e7842b91a2d20fdaff53534:log:90', 'hash': '0x552275ea1ea69f0c0622c27e1fc07eaeb3d86d2d4e7842b91a2d20fdaff53534', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:41:39.000Z'}}, {'blockNum': '0x803efc', 'uniqueId': '0x66a3d32148397969a87e5d058529137c1c53c25878ab06375afdefce85b5c0c5:log:65', 'hash': '0x66a3d32148397969a87e5d058529137c1c53c25878ab06375afdefce85b5c0c5', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x67ffb39872071159da34a322a07f770753995ba6', 'value': 60498.8089276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ccfa5a20739950a6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:43:22.000Z'}}, {'blockNum': '0x803f0a', 'uniqueId': '0xfcb604bef436966fab61776f928703ea05477687eca0693268eb8d3ff3cb9b5a:log:9', 'hash': '0xfcb604bef436966fab61776f928703ea05477687eca0693268eb8d3ff3cb9b5a', 'from': '0x4be63b2e7aacbf02df8aeebf30a477bed7e8cb93', 'to': '0x10d4a5e538a0718e37ae333cedfa721c5a009d2e', 'value': 591.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2012196991a1180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:46:26.000Z'}}, {'blockNum': '0x803f11', 'uniqueId': '0x4d931b3b8932196bf358a098492cdd886f196bdbd1f79650a5ba78968a64ba34:log:16', 'hash': '0x4d931b3b8932196bf358a098492cdd886f196bdbd1f79650a5ba78968a64ba34', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xba50519a5e49ff8f359bd2c8bc79bb1e6d2d919a', 'value': 20028.7251568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043dc265d56031e58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:47:49.000Z'}}, {'blockNum': '0x803f15', 'uniqueId': '0x279f115ff80e3c21e5e363fc2f5d3dbff5b7d76696352c77f2a37f1c35e26fcd:log:0', 'hash': '0x279f115ff80e3c21e5e363fc2f5d3dbff5b7d76696352c77f2a37f1c35e26fcd', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 305000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4096154808be3ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:48:59.000Z'}}, {'blockNum': '0x803f1c', 'uniqueId': '0xa23c5f5ff3551e23202531e57f21aab6108ff2bb779e05c261cea2d1286e6631:log:26', 'hash': '0xa23c5f5ff3551e23202531e57f21aab6108ff2bb779e05c261cea2d1286e6631', 'from': '0x155d395b0b27349e41b7ca436a0a8d586f0041ed', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 59848.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cac6aaedd413bd6c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:49:57.000Z'}}, {'blockNum': '0x803f1c', 'uniqueId': '0x57d21853e2a70bcc21b6a93bf2f9f473702e3f9d97011ec38a8b6294f6f53ff8:log:35', 'hash': '0x57d21853e2a70bcc21b6a93bf2f9f473702e3f9d97011ec38a8b6294f6f53ff8', 'from': '0x73fde08d4cefe45f5ae6c2baf0d0b92c82f42c34', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 117825.7030722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x18f3581b04d60cd7d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:49:57.000Z'}}, {'blockNum': '0x803f2e', 'uniqueId': '0xc684a1b2b2f95be79352de0f6aa2210d2de2633294ed0d9cf91ce42c1db70b9e:log:14', 'hash': '0xc684a1b2b2f95be79352de0f6aa2210d2de2633294ed0d9cf91ce42c1db70b9e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:54:28.000Z'}}, {'blockNum': '0x803f2e', 'uniqueId': '0x0b2b302102887e57e2c697c5dff20de54e63e330bc4ea2791d5d150bbbace6cd:log:91', 'hash': '0x0b2b302102887e57e2c697c5dff20de54e63e330bc4ea2791d5d150bbbace6cd', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xe2075a864929278db933a5082e7189786d414ca9', 'value': 168.7251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x092587f8819042c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:54:28.000Z'}}, {'blockNum': '0x803f3a', 'uniqueId': '0x7b7a97011c73958a0fb9e5ed07580185a2f793b69f0500c973ee8a027f857b43:log:91', 'hash': '0x7b7a97011c73958a0fb9e5ed07580185a2f793b69f0500c973ee8a027f857b43', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 305000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4096154808be3ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:04.000Z'}}, {'blockNum': '0x803f3a', 'uniqueId': '0x1dc0cfaa355587d8e21b9c43b72e8c2b3e9bb02ccedec0debdb6b5d4abbd7704:log:110', 'hash': '0x1dc0cfaa355587d8e21b9c43b72e8c2b3e9bb02ccedec0debdb6b5d4abbd7704', 'from': '0xbb6131c8f5eca3979aeea5f8c723d0c530688c9e', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 17749.1891892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03c22f7b3857bd8b2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:04.000Z'}}, {'blockNum': '0x803f3b', 'uniqueId': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571:log:85', 'hash': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3542.399557685189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc008ab5d47068c6c14', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:20.000Z'}}, {'blockNum': '0x803f3b', 'uniqueId': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571:log:87', 'hash': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 3542.399557685189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc008ab5d47068c6c14', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:20.000Z'}}, {'blockNum': '0x803f3b', 'uniqueId': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571:log:92', 'hash': '0x07115f516e9678b4d19241a7dc65c69f30ffc3c98776805042d3a1226009a571', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 3542.396015285631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc0089ec77bdb429c4f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:20.000Z'}}, {'blockNum': '0x803f3c', 'uniqueId': '0xa20219bef9e1dc6b58dae6c347f4d8f77ec5faf605fca87e130d91a695223714:log:10', 'hash': '0xa20219bef9e1dc6b58dae6c347f4d8f77ec5faf605fca87e130d91a695223714', 'from': '0x17fdf49eda93839700c76fd9317854f66911ce25', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60000.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a81b57ec9f36c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:27.000Z'}}, {'blockNum': '0x803f3d', 'uniqueId': '0x0ed6444090791d3a579bb492ff2ffe18597e9c21aea0c99b49f0c6c238482679:log:33', 'hash': '0x0ed6444090791d3a579bb492ff2ffe18597e9c21aea0c99b49f0c6c238482679', 'from': '0xaacd1e63da8b541344fcd0891a7161db215a25a2', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 3068.9251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa65de42e968426c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:29.000Z'}}, {'blockNum': '0x803f3f', 'uniqueId': '0x6e4c1d7eaa9d564ed1f6bb9cc76b6fef47802a4056a6f35c580a15ba4cad627c:log:33', 'hash': '0x6e4c1d7eaa9d564ed1f6bb9cc76b6fef47802a4056a6f35c580a15ba4cad627c', 'from': '0x67ffb39872071159da34a322a07f770753995ba6', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 60498.8089276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ccfa5a20739950a6000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:42.000Z'}}, {'blockNum': '0x803f40', 'uniqueId': '0x77a7930016aaa2fe628a145a6409461a75f7d0f224ca942d8b50cf9427248593:log:6', 'hash': '0x77a7930016aaa2fe628a145a6409461a75f7d0f224ca942d8b50cf9427248593', 'from': '0xc8764a3e765390b1d9642b1b9c1d5488d3e9cde4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:48.000Z'}}, {'blockNum': '0x803f40', 'uniqueId': '0xac6f56df0c6ed94bf92861ea0e870151646fb3cfc758ee460968d56458fb97ae:log:82', 'hash': '0xac6f56df0c6ed94bf92861ea0e870151646fb3cfc758ee460968d56458fb97ae', 'from': '0xd6b96b64014362749969238765220701b0c9eb8b', 'to': '0x0cf940d0b5fd1c913857abf60facee4c886db62c', 'value': 10064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0221920e76a48b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-23T05:58:48.000Z'}}]}}
Number of returned transfers:  519
Answer is complete
 
symbol             QSP
group              BPF
date        2019-08-29
hour             18:00
exchange       binance
Name: 793, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2019-08-29 18:00:00 2019-08-29 06:00:00 2019-08-30 06:00:00
Unix timestamps:  1567051200.0 1567137600.0
Hex Block Numbers:  0x80d3a5 0x80ecfc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x80d3a6', 'uniqueId': '0x514b473654fc8e8b7857be6403b717c1a2fd0cf66d79717cad7e2f1b0015a167:log:9', 'hash': '0x514b473654fc8e8b7857be6403b717c1a2fd0cf66d79717cad7e2f1b0015a167', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa64b6689d9392e9d8ef575cb44a499e5b7d1bb08', 'value': 917.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x31c38f3552aaa30000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T04:00:20.000Z'}}, {'blockNum': '0x80d3c4', 'uniqueId': '0x594b998a453f5d423fadcc645bc424744da6fc9bee367442eb652523d6bacf1b:log:93', 'hash': '0x594b998a453f5d423fadcc645bc424744da6fc9bee367442eb652523d6bacf1b', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 36368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07b383631213ee400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T04:09:38.000Z'}}, {'blockNum': '0x80d4c8', 'uniqueId': '0x20b68017b08860bb57fe6f1a5c8c97c9f3559424e0b9f5358e53d51ba2dd6c79:log:2', 'hash': '0x20b68017b08860bb57fe6f1a5c8c97c9f3559424e0b9f5358e53d51ba2dd6c79', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x55b85bd29c089c592fcd4f3424d2d0ca46c9a23a', 'value': 2098.024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71bbee903144240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:05:00.000Z'}}, {'blockNum': '0x80d4ff', 'uniqueId': '0x7729d8dd8e249b0b3b8b1ae60d03120c448b54bd0a75580ef75aabc20700eb5f:log:15', 'hash': '0x7729d8dd8e249b0b3b8b1ae60d03120c448b54bd0a75580ef75aabc20700eb5f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ed2968e68d9fc21e805903d378ccbcadfa608fe', 'value': 2102.79599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71fe281ce674421c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:16:44.000Z'}}, {'blockNum': '0x80d565', 'uniqueId': '0xadc5201e608d20ebca9e56bef5b43e2309ad91fb826cd0dfcd3861af8acca407:log:14', 'hash': '0xadc5201e608d20ebca9e56bef5b43e2309ad91fb826cd0dfcd3861af8acca407', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd88afb3593ae07e9cb5969f97339e3ecb487946d', 'value': 6687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x016a80c45ec16d1c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:40:17.000Z'}}, {'blockNum': '0x80d7cc', 'uniqueId': '0xe17beb762f6c704f3c81673272c1e2b03e040a6ca82d305a24802a2675ac5d47:log:30', 'hash': '0xe17beb762f6c704f3c81673272c1e2b03e040a6ca82d305a24802a2675ac5d47', 'from': '0x4495a4eb51cc2ce89a7b0bd61b4ac2e22a54894a', 'to': '0xea92d72a913e41fe29ab075991d5e41eb53f69ca', 'value': 2790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x973f0729f24bd80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T07:58:48.000Z'}}, {'blockNum': '0x80d810', 'uniqueId': '0xf0f83a0ba08ac8c991ed36cbd1db2d95a7211c1affed43bea43a5531ef804fbe:log:32', 'hash': '0xf0f83a0ba08ac8c991ed36cbd1db2d95a7211c1affed43bea43a5531ef804fbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5144.4681089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0116e1d6387bfe12e800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:15:02.000Z'}}, {'blockNum': '0x80d813', 'uniqueId': '0x26dc926fc4de0f679922c4a25aaa8d403d869d9d5501d877d90cbf9d0425cfcb:log:90', 'hash': '0x26dc926fc4de0f679922c4a25aaa8d403d869d9d5501d877d90cbf9d0425cfcb', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x11f64d9b7f2c762beb7334df2c07d92894eb5f31', 'value': 5144.4681089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0116e1d6387bfe12e800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:16:01.000Z'}}, {'blockNum': '0x80d853', 'uniqueId': '0x5c76c348936c4baa7069bdc06c8c31ff432cd16a74cf119852d99794c91aff15:log:8', 'hash': '0x5c76c348936c4baa7069bdc06c8c31ff432cd16a74cf119852d99794c91aff15', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x00ac1b8d981d577ee2b3d345b2658279a03b0128', 'value': 9940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021ad935f79f76d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:29:03.000Z'}}, {'blockNum': '0x80d8dc', 'uniqueId': '0x776857ae415c3695605e3749b345cecd650897028cb49a668928d8c9bcc32571:log:8', 'hash': '0x776857ae415c3695605e3749b345cecd650897028cb49a668928d8c9bcc32571', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf6c1ef77e3f8e514e28da2dc11ced5bb4af41e59', 'value': 1583.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x55d4ec693b78620000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T09:00:14.000Z'}}, {'blockNum': '0x80dc77', 'uniqueId': '0xe479bcb17de8402c692bad5f6890cab814dd7c483dcda9171554ba0e0c72e88c:log:4', 'hash': '0xe479bcb17de8402c692bad5f6890cab814dd7c483dcda9171554ba0e0c72e88c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8cfdf2dbd3e5ff1c72741e89394fe4068c860392', 'value': 17448.0544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b1dc65890bbb680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:20:18.000Z'}}, {'blockNum': '0x80dcb1', 'uniqueId': '0xeb192fa1c9a1502ca2df8b05d64dd405b34822b4c92e5771f71d209d3c24b78a:log:34', 'hash': '0xeb192fa1c9a1502ca2df8b05d64dd405b34822b4c92e5771f71d209d3c24b78a', 'from': '0x8cfdf2dbd3e5ff1c72741e89394fe4068c860392', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17448.0544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b1dc65890bbb680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:32:27.000Z'}}, {'blockNum': '0x80dcda', 'uniqueId': '0x02f5b9d5c68fa9c122b135d020344fcb24bfa5131a1c3cab3137296986f26904:log:3', 'hash': '0x02f5b9d5c68fa9c122b135d020344fcb24bfa5131a1c3cab3137296986f26904', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2db99de600731a23e3639e5d1ee1ec152e54414d', 'value': 105867.927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x166b1ca0662ee2158000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:41:12.000Z'}}, {'blockNum': '0x80dce6', 'uniqueId': '0xb66afdf3c9bd7850bfec28304c339426907631baac5268991a14af33f3f04df6:log:20', 'hash': '0xb66afdf3c9bd7850bfec28304c339426907631baac5268991a14af33f3f04df6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da900bafe10e600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:43:16.000Z'}}, {'blockNum': '0x80dd0e', 'uniqueId': '0x1a912752e1f1819d1df5e5b465e1053cb7e8e715a6dcaa4524ae69945b748877:log:15', 'hash': '0x1a912752e1f1819d1df5e5b465e1053cb7e8e715a6dcaa4524ae69945b748877', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da900bafe10e600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:52:04.000Z'}}, {'blockNum': '0x80dd66', 'uniqueId': '0xfa4c221e21a61b063991f914b3f1f6c408fb79e1cdeac64aaaf2b5837a462091:log:35', 'hash': '0xfa4c221e21a61b063991f914b3f1f6c408fb79e1cdeac64aaaf2b5837a462091', 'from': '0xa1d45bae46ed9051bcfb0eb4ebc1eee949d7a264', 'to': '0xedeb12f1b9ce972d3f03d398c4135e52c39f61f4', 'value': 26751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05aa2cb39f20aa9c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:13:07.000Z'}}, {'blockNum': '0x80ddc2', 'uniqueId': '0x6f24512a1eaf25f876bc6f2fb1081d163ffcefdcfdfe9f10c1c0b1b80d6e619b:log:33', 'hash': '0x6f24512a1eaf25f876bc6f2fb1081d163ffcefdcfdfe9f10c1c0b1b80d6e619b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfca551dc2ec3b1caa96f48142c073e17efdf2fab', 'value': 1806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x61e748e766e3780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:35:56.000Z'}}, {'blockNum': '0x80ddee', 'uniqueId': '0x8f3236d2c3a2184eff561776c3310930fae260f5c0d81367b4477a060baefb10:log:16', 'hash': '0x8f3236d2c3a2184eff561776c3310930fae260f5c0d81367b4477a060baefb10', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x25c5d50a79fec2dc36d0030f1c3ebfadaff1fa3e', 'value': 4962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010cfd95463280480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:46:16.000Z'}}, {'blockNum': '0x80de3d', 'uniqueId': '0x63e785379f1223494c7b03a1a70ec004f430690a47e2fe2f525485fbb97686fb:log:39', 'hash': '0x63e785379f1223494c7b03a1a70ec004f430690a47e2fe2f525485fbb97686fb', 'from': '0x98571ac60f03f64a7cbd05dace6c3e0f6c2a51dc', 'to': '0xedeb12f1b9ce972d3f03d398c4135e52c39f61f4', 'value': 4072.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xdccadea5d722070000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:03:02.000Z'}}, {'blockNum': '0x80de41', 'uniqueId': '0xbfbc3eaf9f9296b41cf4e469669b76aab683fcc538886ed60a964d165abf3e7d:log:0', 'hash': '0xbfbc3eaf9f9296b41cf4e469669b76aab683fcc538886ed60a964d165abf3e7d', 'from': '0x24d337fd8f6506978834f6418d3d7ed4d02d9d06', 'to': '0xaed319f7416564fb209d8ac4ba76595006b3292e', 'value': 11057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x025766b32580d6240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:04:05.000Z'}}, {'blockNum': '0x80ded9', 'uniqueId': '0x0fecde5ce6c154388117d929008f90efb89c3d89eae7d4279d625a82d205d9a6:log:6', 'hash': '0x0fecde5ce6c154388117d929008f90efb89c3d89eae7d4279d625a82d205d9a6', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 88111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12a881c2f3ea1b5c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:34:24.000Z'}}, {'blockNum': '0x80def8', 'uniqueId': '0x77625e18db5c7d576bd51b5178d3c8729a8ebc27efb44501d0e4a7d461bbc8c1:log:51', 'hash': '0x77625e18db5c7d576bd51b5178d3c8729a8ebc27efb44501d0e4a7d461bbc8c1', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 88111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12a881c2f3ea1b5c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:42:11.000Z'}}, {'blockNum': '0x80e022', 'uniqueId': '0xb97b96e2816fc0b4fcea4b7ce3f8454e472a5a52cef0ec9fe56e7f98d3e2da20:log:7', 'hash': '0xb97b96e2816fc0b4fcea4b7ce3f8454e472a5a52cef0ec9fe56e7f98d3e2da20', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc613e9c7ba85f38ee8618c4452c598dc8c02103e', 'value': 50352.3282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aa99aed27d4e4088000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T15:47:09.000Z'}}, {'blockNum': '0x80e062', 'uniqueId': '0x7ef02ba61cf48daebbac9255632914585fbe2120c7fee97e634c6d3a1fcb7713:log:2', 'hash': '0x7ef02ba61cf48daebbac9255632914585fbe2120c7fee97e634c6d3a1fcb7713', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x150f5ba17f6c4bd40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:02:41.000Z'}}, {'blockNum': '0x80e096', 'uniqueId': '0xeb4232eef99e912d6926e102c33acc489ae27786afb04705d2e97c4f4422290f:log:35', 'hash': '0xeb4232eef99e912d6926e102c33acc489ae27786afb04705d2e97c4f4422290f', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x150f5ba17f6c4bd40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:12:26.000Z'}}, {'blockNum': '0x80e10e', 'uniqueId': '0xa3b276172a491b44e0ea8f9d538b20d74b427884b595c56a492ff3a2b5606193:log:11', 'hash': '0xa3b276172a491b44e0ea8f9d538b20d74b427884b595c56a492ff3a2b5606193', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6cd7b903e5f90d121a232d1acc10daa62e8e3fa9', 'value': 24901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0545e2cb50d901f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:37:09.000Z'}}, {'blockNum': '0x80e196', 'uniqueId': '0x4d530f79831385a413b2f190c2e79524ece6195af7fa5d9ed552c45e483fb667:log:10', 'hash': '0x4d530f79831385a413b2f190c2e79524ece6195af7fa5d9ed552c45e483fb667', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x07a0628bc69881689a86b694d139a631c231a882', 'value': 4381.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xed89b0cc3a86a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:06:40.000Z'}}, {'blockNum': '0x80e1a9', 'uniqueId': '0xb29179927a834c772f95e6b550d1df0d306bc56fc482f56acf10e5fcec13a4fc:log:72', 'hash': '0xb29179927a834c772f95e6b550d1df0d306bc56fc482f56acf10e5fcec13a4fc', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14cbcfe84103931c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:09:51.000Z'}}, {'blockNum': '0x80e1ee', 'uniqueId': '0x13dd23bc805e11bc4e79b5f7f191c773131237d35ff786c9cd0b4fa9e36d2703:log:19', 'hash': '0x13dd23bc805e11bc4e79b5f7f191c773131237d35ff786c9cd0b4fa9e36d2703', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14cbcfe84103931c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:22:02.000Z'}}, {'blockNum': '0x80e2b1', 'uniqueId': '0x4be77895e0f49502357e4019c0c71ebee3c63d4f12da2f78c3f15cfab377a06a:log:119', 'hash': '0x4be77895e0f49502357e4019c0c71ebee3c63d4f12da2f78c3f15cfab377a06a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 2412.43881099649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x82c7505cf3e38017c1', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:01:44.000Z'}}, {'blockNum': '0x80e2b4', 'uniqueId': '0x16a209cdf37d78e95c9de6464bfdb8b835ec1937f500e1147518efd2a72b313d:log:12', 'hash': '0x16a209cdf37d78e95c9de6464bfdb8b835ec1937f500e1147518efd2a72b313d', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 36645.364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07c28c95f28a57b20000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:27.000Z'}}, {'blockNum': '0x80e2b4', 'uniqueId': '0xc0e8bb88c9ddfbf4378b19ac771855a86315a37ff9c969bec8f0fb179004d261:log:62', 'hash': '0xc0e8bb88c9ddfbf4378b19ac771855a86315a37ff9c969bec8f0fb179004d261', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 2412.43881099649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x82c7505cf3e38017c1', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:27.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0xf2dcc89826386190d23336ef8a31f0db7c6772cafcc477586d3a0e7875868bb9:log:7', 'hash': '0xf2dcc89826386190d23336ef8a31f0db7c6772cafcc477586d3a0e7875868bb9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c329d2cc427a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0x8d4043ea16f6d249978f306eb1cdc7863a6efb6750261bdece1ec3cf7dc0d5eb:log:8', 'hash': '0x8d4043ea16f6d249978f306eb1cdc7863a6efb6750261bdece1ec3cf7dc0d5eb', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 50336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aa8b853bc712e800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0x740f0f8aeb93c8be5ac124a4a32e1845da802a6ce09bc6e59f20461f16d8bf84:log:9', 'hash': '0x740f0f8aeb93c8be5ac124a4a32e1845da802a6ce09bc6e59f20461f16d8bf84', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 59614.471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c9fb4fa937ef1ed8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b8', 'uniqueId': '0x5c2a6d3540b6a537d36e455d8ab12e05557862b76ec56c83f8e84c1c9dda0458:log:18', 'hash': '0x5c2a6d3540b6a537d36e455d8ab12e05557862b76ec56c83f8e84c1c9dda0458', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 147616.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1f425511dbbdd3480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:03:30.000Z'}}, {'blockNum': '0x80e2b8', 'uniqueId': '0xa223bb9aea1890728eb405e9fcebdf9ad89d59af63380105c70713dd2ebdbc2a:log:20', 'hash': '0xa223bb9aea1890728eb405e9fcebdf9ad89d59af63380105c70713dd2ebdbc2a', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 82701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11833aedf352ac140000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:03:30.000Z'}}, {'blockNum': '0x80e2d2', 'uniqueId': '0x83bca3ad9f285699d68cdcd04a8fa545fe4fb77bb4f1474804af81e13164abd6:log:3', 'hash': '0x83bca3ad9f285699d68cdcd04a8fa545fe4fb77bb4f1474804af81e13164abd6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb3a3fa926a2b3b8aca4d698b0a1eaa350ffe0276', 'value': 8071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01b587a01a0261bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:08:51.000Z'}}, {'blockNum': '0x80e2d2', 'uniqueId': '0x3169ad437e5d28b879d465a09cdc1ff924cea3256ccc82e90fbed1d9ecc1c13d:log:20', 'hash': '0x3169ad437e5d28b879d465a09cdc1ff924cea3256ccc82e90fbed1d9ecc1c13d', 'from': '0xe81bb573d3ac91bd7e7e15eee28a5a77c07481ac', 'to': '0x7234481e013dcab884fad86ffab011939010d78d', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:08:51.000Z'}}, {'blockNum': '0x80e2d3', 'uniqueId': '0x3cff55bc240c5294eadfa3c60b23ca1bc7d689f441d8c959704b7c9dacd69691:log:2', 'hash': '0x3cff55bc240c5294eadfa3c60b23ca1bc7d689f441d8c959704b7c9dacd69691', 'from': '0x8116ce6d7a783fb86c2659e992e748765760e3fe', 'to': '0xf9f508544165e2cc8993ec4defe62e2d461f281a', 'value': 7529.205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x019828b5980feef88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:09:15.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0xe1405cca9a96031ed508c1f608250b53251c97ea86b33451fede5e1c0c9e81ec:log:20', 'hash': '0xe1405cca9a96031ed508c1f608250b53251c97ea86b33451fede5e1c0c9e81ec', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 184262.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2704e1a7ce482afa0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x475b85e87c40041fce4075142a017d4c376990f910f44cc6f1b8779085deb3b7:log:21', 'hash': '0x475b85e87c40041fce4075142a017d4c376990f910f44cc6f1b8779085deb3b7', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c329d2cc427a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x109f37ea4491843b0278748a8367a6e753e830b80d388d42898bc92a42c7b7a9:log:22', 'hash': '0x109f37ea4491843b0278748a8367a6e753e830b80d388d42898bc92a42c7b7a9', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11833aedf352ac140000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x208a7608631e1077c90977b4310e4d4fc16f3f1985cd3a2b30f0473adcb861a9:log:33', 'hash': '0x208a7608631e1077c90977b4310e4d4fc16f3f1985cd3a2b30f0473adcb861a9', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13ff7e86660823d80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2e5', 'uniqueId': '0xdf9197a69355830d86a01ed061d06ed425919c83dc3de0884a6e4fc0a0b1c6f1:log:5', 'hash': '0xdf9197a69355830d86a01ed061d06ed425919c83dc3de0884a6e4fc0a0b1c6f1', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 59162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c872daeaa4a3c280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:13:40.000Z'}}, {'blockNum': '0x80e2ec', 'uniqueId': '0x0dee99a869c8938093861ceafd166b3047df54ca3f1bda0416faa76adf5ad696:log:14', 'hash': '0x0dee99a869c8938093861ceafd166b3047df54ca3f1bda0416faa76adf5ad696', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 92077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x137f811167255a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:15:37.000Z'}}, {'blockNum': '0x80e2fb', 'uniqueId': '0x17968c69d6fac49c5ab97fb47f9efff4901ced956e8d770682f4e0ad85acaf94:log:14', 'hash': '0x17968c69d6fac49c5ab97fb47f9efff4901ced956e8d770682f4e0ad85acaf94', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 44482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x096b5fc1dc436dc80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:19:09.000Z'}}, {'blockNum': '0x80e310', 'uniqueId': '0x9a8d0a0466ab629064bcd69b617c99b93090e3d55a35ccb752ad06eebb04ad5b:log:5', 'hash': '0x9a8d0a0466ab629064bcd69b617c99b93090e3d55a35ccb752ad06eebb04ad5b', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x137f811167255a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:21:47.000Z'}}, {'blockNum': '0x80e311', 'uniqueId': '0x901747e6005d8b22b7229c57c381bc6e70cea36df71efb248cba58da5d09a7a5:log:2', 'hash': '0x901747e6005d8b22b7229c57c381bc6e70cea36df71efb248cba58da5d09a7a5', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c872daeaa4a3c280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:22:06.000Z'}}, {'blockNum': '0x80e318', 'uniqueId': '0x67c5e6761f1d6af4d68f4ac926337d9a529e7ef100212361906e0ba7acb60766:log:60', 'hash': '0x67c5e6761f1d6af4d68f4ac926337d9a529e7ef100212361906e0ba7acb60766', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 79000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10ba993ca00fb3600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:23:58.000Z'}}, {'blockNum': '0x80e326', 'uniqueId': '0x14f0158ba00b7684228c9974f2810a6de54331d9964f5f047f674f5a2aabed70:log:4', 'hash': '0x14f0158ba00b7684228c9974f2810a6de54331d9964f5f047f674f5a2aabed70', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9bddad1f150ff5d5911b4afd0e67b81b5a2e720d', 'value': 4901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0109af09bd639d740000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:26:53.000Z'}}, {'blockNum': '0x80e33f', 'uniqueId': '0xaeb8fa3083282f95edfbfe5647e101531dd5edf725b261895f89e9c0e17c4c9e:log:14', 'hash': '0xaeb8fa3083282f95edfbfe5647e101531dd5edf725b261895f89e9c0e17c4c9e', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x096b5fc1dc436dc80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:32:09.000Z'}}, {'blockNum': '0x80e351', 'uniqueId': '0xd795ea8935caace057dd4d3920cd67d487cd30f3f9de90fb6576c539bfd25d56:log:48', 'hash': '0xd795ea8935caace057dd4d3920cd67d487cd30f3f9de90fb6576c539bfd25d56', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 79000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10ba993ca00fb3600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:35:41.000Z'}}, {'blockNum': '0x80e360', 'uniqueId': '0x96332c91e29eb62832122746e24814eb9edda1bebf045a4bb317b4f03cf9da37:log:43', 'hash': '0x96332c91e29eb62832122746e24814eb9edda1bebf045a4bb317b4f03cf9da37', 'from': '0xe81bb573d3ac91bd7e7e15eee28a5a77c07481ac', 'to': '0x7234481e013dcab884fad86ffab011939010d78d', 'value': 159681.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x21d054bdeda6b9c38000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:39:12.000Z'}}, {'blockNum': '0x80e39d', 'uniqueId': '0x6a463c7ff6ebe6a2400dd9d9b00008e5a05ab82c4bacbfe2a3f1f806b449ea99:log:10', 'hash': '0x6a463c7ff6ebe6a2400dd9d9b00008e5a05ab82c4bacbfe2a3f1f806b449ea99', 'from': '0x7234481e013dcab884fad86ffab011939010d78d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 160681.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x22068a879b6c98638000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:51:49.000Z'}}, {'blockNum': '0x80e402', 'uniqueId': '0xde1d99b3b7a7b5777d3379f2d52d9359f2e94091b5e59ca44366602a0952c106:log:1', 'hash': '0xde1d99b3b7a7b5777d3379f2d52d9359f2e94091b5e59ca44366602a0952c106', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x84321c7b6dd9e35e1c714571fe398edd98e9344f', 'value': 733.167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x27bebc6e03c6d18000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:15:02.000Z'}}, {'blockNum': '0x80e439', 'uniqueId': '0xfb1f826e1f74997f7e4268030329c436edd19d9aee76b095c8299a4b317626d6:log:95', 'hash': '0xfb1f826e1f74997f7e4268030329c436edd19d9aee76b095c8299a4b317626d6', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xf18e46d5dfab23959e70242dd7ec258f94fb3ff8', 'value': 19865.865834554697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0434ee454aa8c9de4878', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:26:34.000Z'}}, {'blockNum': '0x80e446', 'uniqueId': '0x715bf32582959cdc3cbdc5aab6190c330754a69e840232931e12708c72ba34dc:log:0', 'hash': '0x715bf32582959cdc3cbdc5aab6190c330754a69e840232931e12708c72ba34dc', 'from': '0xf18e46d5dfab23959e70242dd7ec258f94fb3ff8', 'to': '0x4e2f6edad3e8b29aed837fb0f7d3f4504ed8389b', 'value': 19865.865834554697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0434ee454aa8c9de4878', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:29:33.000Z'}}, {'blockNum': '0x80e46e', 'uniqueId': '0x0254ecfff645099ac53f5cdc655a80106dcff927fe04ce57b8ca35282c58cdb9:log:0', 'hash': '0x0254ecfff645099ac53f5cdc655a80106dcff927fe04ce57b8ca35282c58cdb9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5d8512fe175509b85fc68930014879975f2ad28e', 'value': 1524.375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52a2f3ea03de158000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:40:27.000Z'}}, {'blockNum': '0x80e4b0', 'uniqueId': '0x19ce5526d70531a53773500c534fada3a835494c1e52d3d97c26cffd3a998591:log:29', 'hash': '0x19ce5526d70531a53773500c534fada3a835494c1e52d3d97c26cffd3a998591', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xaef3bb2cdc8aab67cac498e98b9666e463f4ca02', 'value': 33768.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07269c84bb1faa720000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:58:02.000Z'}}, {'blockNum': '0x80e4e7', 'uniqueId': '0x230c6a47d886c421d647303f5cd992c46e1f583495960c86461f16be7cea4750:log:30', 'hash': '0x230c6a47d886c421d647303f5cd992c46e1f583495960c86461f16be7cea4750', 'from': '0xaef3bb2cdc8aab67cac498e98b9666e463f4ca02', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 33768.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07269c84bb1faa720000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:12:18.000Z'}}, {'blockNum': '0x80e54b', 'uniqueId': '0xa042af5d1d045ac76bda23dc991f1687e05264a79719ed5c554f211676782997:log:7', 'hash': '0xa042af5d1d045ac76bda23dc991f1687e05264a79719ed5c554f211676782997', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x26f78afdc096e4b2c57d61e9b52bd08ba4581987', 'value': 501.755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b333fda168c1f8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:36:48.000Z'}}, {'blockNum': '0x80e565', 'uniqueId': '0xfe48ac91bd5f1fddad8baa65c5a0a60447a46d41fa04f75f03c2727868ae6f46:log:1', 'hash': '0xfe48ac91bd5f1fddad8baa65c5a0a60447a46d41fa04f75f03c2727868ae6f46', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 57180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbbe8276043f00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:43:02.000Z'}}, {'blockNum': '0x80e577', 'uniqueId': '0xb58c4c3fb81a4e46266d256d00069d036017d9e2c3275d65ff5582d7545fda4d:log:2', 'hash': '0xb58c4c3fb81a4e46266d256d00069d036017d9e2c3275d65ff5582d7545fda4d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8fbb649462c0c88e0b0895b12b10d21faf358e6f', 'value': 9901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0218bbfa2240f6940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:46:32.000Z'}}, {'blockNum': '0x80e58f', 'uniqueId': '0x2f64c591fddb5f143aa2d413adea77f079096148b6201a368fcc009a4eb050c6:log:1', 'hash': '0x2f64c591fddb5f143aa2d413adea77f079096148b6201a368fcc009a4eb050c6', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbbe8276043f00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:52:02.000Z'}}, {'blockNum': '0x80e596', 'uniqueId': '0x6ea608f5d34d07a06efe21fad6d15d88e7d0be1d440cf1b4cafeb0866129ba11:log:0', 'hash': '0x6ea608f5d34d07a06efe21fad6d15d88e7d0be1d440cf1b4cafeb0866129ba11', 'from': '0xa2dd64ab784c0d24b93003b345e5fad633d4bf56', 'to': '0x99f849b1aa652b5a80e78e8ca63ecb8338ad7031', 'value': 874.103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2f629daf4dc7458000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:54:28.000Z'}}, {'blockNum': '0x80e5a8', 'uniqueId': '0xba11058506029dfae9ae15c0a634cb86ee234a66789a6518534311476a02ea09:log:0', 'hash': '0xba11058506029dfae9ae15c0a634cb86ee234a66789a6518534311476a02ea09', 'from': '0xac42907ebf4ea6d472deea118474eca9b877dedc', 'to': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:58:59.000Z'}}, {'blockNum': '0x80e5b3', 'uniqueId': '0xec7f9a6882c488c9313bccd3e5fec37768000dc4b5dcf47d3ac3dd8b0c9013e1:log:1', 'hash': '0xec7f9a6882c488c9313bccd3e5fec37768000dc4b5dcf47d3ac3dd8b0c9013e1', 'from': '0xac42907ebf4ea6d472deea118474eca9b877dedc', 'to': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'value': 4903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0109cacb2acaec3c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:02:00.000Z'}}, {'blockNum': '0x80e5db', 'uniqueId': '0xa1784f9e94d043f1d559d5a34379054c548bbcf4abf1b7a0b718d08663e9d95f:log:56', 'hash': '0xa1784f9e94d043f1d559d5a34379054c548bbcf4abf1b7a0b718d08663e9d95f', 'from': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f369288f84f4c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:11:47.000Z'}}, {'blockNum': '0x80e611', 'uniqueId': '0x9c9a674f7f2fee4666ea64c65ffe1baefaa14646d01b749c80660c17657f43f1:log:6', 'hash': '0x9c9a674f7f2fee4666ea64c65ffe1baefaa14646d01b749c80660c17657f43f1', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11e870c2638872600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:25:45.000Z'}}, {'blockNum': '0x80e635', 'uniqueId': '0x391a41489bbf80940ffd9f8434243391ef81e10ed3671084e5f35c51b9dbab67:log:4', 'hash': '0x391a41489bbf80940ffd9f8434243391ef81e10ed3671084e5f35c51b9dbab67', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11e870c2638872600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:32:08.000Z'}}, {'blockNum': '0x80e662', 'uniqueId': '0x02979fb9b0592c150b4d0af817f9a1a6be1b01864c2eac8f7e73c379fcc89881:log:0', 'hash': '0x02979fb9b0592c150b4d0af817f9a1a6be1b01864c2eac8f7e73c379fcc89881', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x77b6bedb35c3712878f516da8e410c58881f5618', 'value': 4051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xdb9aeb1ce1d36c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:40:33.000Z'}}, {'blockNum': '0x80e67a', 'uniqueId': '0x7f14e48ce28f89e613c024384c2aea1ae9264d32a323144b3b574cceae57c991:log:0', 'hash': '0x7f14e48ce28f89e613c024384c2aea1ae9264d32a323144b3b574cceae57c991', 'from': '0xe567f9e9d6d0f9c9bdd1f14b838d8a6a05c0c80c', 'to': '0x046744a209929cddedab376c4a4167d506199db2', 'value': 1733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5df234ce2c27f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:46:14.000Z'}}, {'blockNum': '0x80e687', 'uniqueId': '0x3bf9f7fe30e3fa38bf43521660589bab0d03b310f56bf86ae24e63c96dd01be4:log:33', 'hash': '0x3bf9f7fe30e3fa38bf43521660589bab0d03b310f56bf86ae24e63c96dd01be4', 'from': '0xbe4b4d98914957ea3226a714f0fe17958f4f1268', 'to': '0x40bbc730b54068d27846fa085f54b1ba332bec7a', 'value': 6965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017992cac5d933b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:48:33.000Z'}}, {'blockNum': '0x80e6d6', 'uniqueId': '0x834958c1c8b5f0e6ab9274dde030367b0e0892289a89eecb6a21bda138141441:log:15', 'hash': '0x834958c1c8b5f0e6ab9274dde030367b0e0892289a89eecb6a21bda138141441', 'from': '0x40bbc730b54068d27846fa085f54b1ba332bec7a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017992cac5d933b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:01:52.000Z'}}, {'blockNum': '0x80e6f5', 'uniqueId': '0x538e3c43f8085d1b9bc92bba9c8176b077dce167ad9c20ba65e170ab1f404a7d:log:100', 'hash': '0x538e3c43f8085d1b9bc92bba9c8176b077dce167ad9c20ba65e170ab1f404a7d', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x22b3df1c89088d6b5936f5d30c60d4c54f8b31b7', 'value': 58349.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c5b21facd1977460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:08:18.000Z'}}, {'blockNum': '0x80e726', 'uniqueId': '0xf81d62dd537812ecc26d901070ca048bc8946ad7767f2f5a921064aea2862fdd:log:1', 'hash': '0xf81d62dd537812ecc26d901070ca048bc8946ad7767f2f5a921064aea2862fdd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x14acd610d1d2f15c06b123e61cb4e9ce596e572f', 'value': 401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x15bcfe2f6933a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:21:05.000Z'}}, {'blockNum': '0x80e731', 'uniqueId': '0x3b665c488bba45dd4bffa7a4d66f84d25b9bdc5b753893ea2a36b0599c838a9c:log:4', 'hash': '0x3b665c488bba45dd4bffa7a4d66f84d25b9bdc5b753893ea2a36b0599c838a9c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfa190caf921888a53781364748f4f37a67181e32', 'value': 118598.184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x191d386e93e410040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:23:00.000Z'}}, {'blockNum': '0x80e737', 'uniqueId': '0xa677c5b4d0181e6bf576398ac77e7350d24c2a8beb561dec7b8b439c51b9497a:log:48', 'hash': '0xa677c5b4d0181e6bf576398ac77e7350d24c2a8beb561dec7b8b439c51b9497a', 'from': '0x22b3df1c89088d6b5936f5d30c60d4c54f8b31b7', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 58349.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c5b21facd1977460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:23:45.000Z'}}, {'blockNum': '0x80e74a', 'uniqueId': '0x18a5c93c44c7816b58b5738015e5d840f456c6cf1928ad1ec0337d3f590b950b:log:0', 'hash': '0x18a5c93c44c7816b58b5738015e5d840f456c6cf1928ad1ec0337d3f590b950b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x14acd610d1d2f15c06b123e61cb4e9ce596e572f', 'value': 4401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xee9424e680ae240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:27:39.000Z'}}, {'blockNum': '0x80e74f', 'uniqueId': '0x7ce5889ec98ec936b0765c860098b2e68e70841a8a26526249741d34fa7449b5:log:0', 'hash': '0x7ce5889ec98ec936b0765c860098b2e68e70841a8a26526249741d34fa7449b5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2347.54136744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7f42ae53e123f5a000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:28:56.000Z'}}, {'blockNum': '0x80e750', 'uniqueId': '0x76a1bb72aec439e3798bd932a6133cfc69755488f4791fac2d0f07d4841874ee:log:80', 'hash': '0x76a1bb72aec439e3798bd932a6133cfc69755488f4791fac2d0f07d4841874ee', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x242f62a2dbfaeb1b350b4531fb02d363bb976638', 'value': 2347.54136744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7f42ae53e123f5a000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:28:59.000Z'}}, {'blockNum': '0x80e759', 'uniqueId': '0x02d75847b9f6f0f467bb38b06245ead16f547f88837dbe580b12ab42c5ac73e2:log:2', 'hash': '0x02d75847b9f6f0f467bb38b06245ead16f547f88837dbe580b12ab42c5ac73e2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6fbbb3878ab27bfa0c174832b9d89ecc0bc93f3a', 'value': 19881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0435c04ca5f295040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:30:50.000Z'}}, {'blockNum': '0x80e779', 'uniqueId': '0x68c848dd42382cbc8f3ff727d1cdac7da69042b3fdd6ec093c87b775452cb343:log:5', 'hash': '0x68c848dd42382cbc8f3ff727d1cdac7da69042b3fdd6ec093c87b775452cb343', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4ef59167a212404fe6bb64930437e1d6432f6554', 'value': 212341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2cf70757452a54b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:39:45.000Z'}}, {'blockNum': '0x80e7b4', 'uniqueId': '0xe487208cb2dee95f647acb58aa385eaa18960e4cff484fe356178ad210f8d5d2:log:36', 'hash': '0xe487208cb2dee95f647acb58aa385eaa18960e4cff484fe356178ad210f8d5d2', 'from': '0x4ef59167a212404fe6bb64930437e1d6432f6554', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 212341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2cf70757452a54b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:53:00.000Z'}}, {'blockNum': '0x80e7f7', 'uniqueId': '0xe9dc776fff1f0cbcc101ee55fb0fc482a5d66b05e9854b8fcd2c905989e2a761:log:105', 'hash': '0xe9dc776fff1f0cbcc101ee55fb0fc482a5d66b05e9854b8fcd2c905989e2a761', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x98b08fd35f2324e7b284770d33ee9fcde21cb00a', 'value': 108600.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16ff443ef5c587ba0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:09:10.000Z'}}, {'blockNum': '0x80e815', 'uniqueId': '0x1b6c0cb48e8aecbe8ae9525995f7a59809f028970f40d471d07341f080bb4e9d:log:28', 'hash': '0x1b6c0cb48e8aecbe8ae9525995f7a59809f028970f40d471d07341f080bb4e9d', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 51990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b026230292cae980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:17:40.000Z'}}, {'blockNum': '0x80e82b', 'uniqueId': '0xfb0481df5de8fe804e2ec64a522d08891185494fd79142c6f888cf4cfb5e9588:log:29', 'hash': '0xfb0481df5de8fe804e2ec64a522d08891185494fd79142c6f888cf4cfb5e9588', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b026230292cae980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:22:25.000Z'}}, {'blockNum': '0x80e831', 'uniqueId': '0x5e08cc3034a8ee4be93c20e48947630e6cb70531187e46d86a42eef2f576395e:log:91', 'hash': '0x5e08cc3034a8ee4be93c20e48947630e6cb70531187e46d86a42eef2f576395e', 'from': '0x98b08fd35f2324e7b284770d33ee9fcde21cb00a', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 108600.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16ff443ef5c587ba0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:23:39.000Z'}}, {'blockNum': '0x80e8fc', 'uniqueId': '0x8ef28e6e4dcdc4f813cf78daaa22ed5526b898cce62ed9477898705f8fb2424f:log:0', 'hash': '0x8ef28e6e4dcdc4f813cf78daaa22ed5526b898cce62ed9477898705f8fb2424f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0e4335f6edc4c4633c384a29d6ffd2d917fa5d1b', 'value': 7212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0186f69b0d2fb5300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:10:48.000Z'}}, {'blockNum': '0x80e91d', 'uniqueId': '0x01a36e4f0b725fa423acafef30b1a8f3e45e66a54aec09beb79849f3d1c79069:log:2', 'hash': '0x01a36e4f0b725fa423acafef30b1a8f3e45e66a54aec09beb79849f3d1c79069', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 55530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bc2498e957361680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:18:53.000Z'}}, {'blockNum': '0x80e961', 'uniqueId': '0xceabb5ab8fd4001f998ade0e112d52bf71db12042b3c14983942d91cd0388937:log:8', 'hash': '0xceabb5ab8fd4001f998ade0e112d52bf71db12042b3c14983942d91cd0388937', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bc2498e957361680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:32:02.000Z'}}, {'blockNum': '0x80e965', 'uniqueId': '0xf0bac80df4a24a6df2e0b8d67c853a14c6947db46cb41070f917ad9485dea60f:log:119', 'hash': '0xf0bac80df4a24a6df2e0b8d67c853a14c6947db46cb41070f917ad9485dea60f', 'from': '0x3fb83b3ec48a0a0a21a793960892422ca39e4cc9', 'to': '0x02bd432d0c1516d846822355d03de6e81e83f8b7', 'value': 56961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c0fdcabdbb011640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:33:00.000Z'}}, {'blockNum': '0x80e980', 'uniqueId': '0x631ae09ca228c86fd123725628714e2c9fbae043d25d2d98bb54c26cfaa8e117:log:3', 'hash': '0x631ae09ca228c86fd123725628714e2c9fbae043d25d2d98bb54c26cfaa8e117', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18dc9b4077b973421998b173673bfd5defb9e62b', 'value': 4149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xe0eaf10da7e7b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:41:18.000Z'}}, {'blockNum': '0x80e988', 'uniqueId': '0xf6a5f4fa2c6bf37731d4f06a2cfe72935418a6c57fee29d9e93d3ee16722fc11:log:4', 'hash': '0xf6a5f4fa2c6bf37731d4f06a2cfe72935418a6c57fee29d9e93d3ee16722fc11', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3ec82921c72584c440bf459d6754f764828d4e2b', 'value': 102588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x15b94e7ee17b2d700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:43:05.000Z'}}, {'blockNum': '0x80e9b7', 'uniqueId': '0x227860af4e7e3447f59b0c713f61f0ebd311d9211374de87820a27a4b7baa1a9:log:8', 'hash': '0x227860af4e7e3447f59b0c713f61f0ebd311d9211374de87820a27a4b7baa1a9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14d8c4b2d2bcd9780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:54:09.000Z'}}, {'blockNum': '0x80e9ba', 'uniqueId': '0x5783cace9ffded909a50ca08ce71c3657e4501a382fa21df174e8bb6f3b936e5:log:68', 'hash': '0x5783cace9ffded909a50ca08ce71c3657e4501a382fa21df174e8bb6f3b936e5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 55687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bcacc5ea1a109bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:54:57.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0xf69e91328a94832af12b2fc7abe9e458d90293a814ed453d15137c2c4b72d932:log:12', 'hash': '0xf69e91328a94832af12b2fc7abe9e458d90293a814ed453d15137c2c4b72d932', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bcacc5ea1a109bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0xfc2524bf12d05767c3c8b8b7332fe517f6b9254ffe361e24c41b41fbb30a52fd:log:14', 'hash': '0xfc2524bf12d05767c3c8b8b7332fe517f6b9254ffe361e24c41b41fbb30a52fd', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14d8c4b2d2bcd9780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0x406966530263e63cc85cce999f6308fca02e3fdc9dc1668012b9b569b30dad44:log:68', 'hash': '0x406966530263e63cc85cce999f6308fca02e3fdc9dc1668012b9b569b30dad44', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 20246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x044989b124183e980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9e9', 'uniqueId': '0xa8bd4bf4d3c0696f33290178b727f0da5422bfed8c90d97a50b5805a3933ec0b:log:17', 'hash': '0xa8bd4bf4d3c0696f33290178b727f0da5422bfed8c90d97a50b5805a3933ec0b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x519cb0540e1c4e8a0c1ae9f981e0934e3bba89c1', 'value': 7778.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01a5a72ea2b8e5fb0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:04:25.000Z'}}, {'blockNum': '0x80e9fe', 'uniqueId': '0x9a98c96e7e7e8cf6681bd2a84e9cba28666e6af1d7dc2769a2733cac0797e6ca:log:40', 'hash': '0x9a98c96e7e7e8cf6681bd2a84e9cba28666e6af1d7dc2769a2733cac0797e6ca', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b5910c5554f38340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:10:22.000Z'}}, {'blockNum': '0x80e9ff', 'uniqueId': '0x5ee5dfa5f0781c7bc4d840460ef5f8ccfd0c8068b179a9b2620f8cd4d60dd185:log:31', 'hash': '0x5ee5dfa5f0781c7bc4d840460ef5f8ccfd0c8068b179a9b2620f8cd4d60dd185', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 20246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x044989b124183e980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:11:03.000Z'}}, {'blockNum': '0x80ea33', 'uniqueId': '0x39b1638f93dde69d02efb202dac6a87aea057061ffeb0649b9ff1430ba3c240d:log:32', 'hash': '0x39b1638f93dde69d02efb202dac6a87aea057061ffeb0649b9ff1430ba3c240d', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14eb4ee6e6be79100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:21:59.000Z'}}, {'blockNum': '0x80ea34', 'uniqueId': '0x36eec5fa3d8db7b5acb888a182d9198aae992041e2c74649b5f5129b9954905a:log:17', 'hash': '0x36eec5fa3d8db7b5acb888a182d9198aae992041e2c74649b5f5129b9954905a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b5910c5554f38340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:22:17.000Z'}}, {'blockNum': '0x80ea6b', 'uniqueId': '0x54ebf58af0108346a242e5948075a12222d507ba929e2e565ea44a557aefcd56:log:9', 'hash': '0x54ebf58af0108346a242e5948075a12222d507ba929e2e565ea44a557aefcd56', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b63e85411a9fe540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:30:21.000Z'}}, {'blockNum': '0x80ea7a', 'uniqueId': '0x86e392464f6a882e5d7401634181b39ca36973b42121c7b80eefdc588f2a8a5b:log:11', 'hash': '0x86e392464f6a882e5d7401634181b39ca36973b42121c7b80eefdc588f2a8a5b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd0aed7b3544dfb4624f64963fee9dd53911b620c', 'value': 16812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x038f615e5e34db300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:32:17.000Z'}}, {'blockNum': '0x80ea7a', 'uniqueId': '0x91a768e38f118cda5c40987bc3a9fd9e504f919f9b6300e2a2f082fb66b20352:log:36', 'hash': '0x91a768e38f118cda5c40987bc3a9fd9e504f919f9b6300e2a2f082fb66b20352', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14eb4ee6e6be79100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:32:17.000Z'}}, {'blockNum': '0x80ea8b', 'uniqueId': '0x06158cac5dfc81bf5164d53185a10900ed9aa02f2a5387dd274489722e0b9301:log:43', 'hash': '0x06158cac5dfc81bf5164d53185a10900ed9aa02f2a5387dd274489722e0b9301', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x4bb1b4cd34c9345c47289b59078802233217c5e6', 'value': 150063.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1fc6f522159b978c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:36:19.000Z'}}, {'blockNum': '0x80eaa9', 'uniqueId': '0xf7542dcfdb5db593ffd53da5d0894969caeb8b7a8cca2428244030b724db959a:log:40', 'hash': '0xf7542dcfdb5db593ffd53da5d0894969caeb8b7a8cca2428244030b724db959a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da2ee6b0f77aa40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:42:25.000Z'}}, {'blockNum': '0x80eaa9', 'uniqueId': '0xbd16bfe5b77d5e69fec273859bb4e9124530fbdb3357a24e1e8a83f02870637a:log:63', 'hash': '0xbd16bfe5b77d5e69fec273859bb4e9124530fbdb3357a24e1e8a83f02870637a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b63e85411a9fe540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:42:25.000Z'}}, {'blockNum': '0x80eab0', 'uniqueId': '0xe19437ad30aef6bab93264c6472da5a2081fa3625ce26050282af3cd463b9e06:log:12', 'hash': '0xe19437ad30aef6bab93264c6472da5a2081fa3625ce26050282af3cd463b9e06', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x54b6e9b833e62c22b290a97c6e561f42f6bdb20d', 'value': 72176.9521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0f48b86d051184664000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:43:27.000Z'}}, {'blockNum': '0x80eab6', 'uniqueId': '0x9be6a86d67ec266ccb0b865dc584f0b1eb2559782d860f16e591e77619095169:log:119', 'hash': '0x9be6a86d67ec266ccb0b865dc584f0b1eb2559782d860f16e591e77619095169', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 16700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03894f0e6f9b9f700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:45:03.000Z'}}, {'blockNum': '0x80eac1', 'uniqueId': '0x9a11aa8c4d50f51400a120b38f8c8ca060f842f62b4220b5ea013d4eefebd665:log:8', 'hash': '0x9a11aa8c4d50f51400a120b38f8c8ca060f842f62b4220b5ea013d4eefebd665', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x519cb0540e1c4e8a0c1ae9f981e0934e3bba89c1', 'value': 9872.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021729f004be4f830000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:47:56.000Z'}}, {'blockNum': '0x80eac8', 'uniqueId': '0x78cc1720dfb03cc70b461e4454744637c8ae121c955e6328775d99f9ccc9fdc8:log:118', 'hash': '0x78cc1720dfb03cc70b461e4454744637c8ae121c955e6328775d99f9ccc9fdc8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 94651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x140b0a7e69826a0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:49:59.000Z'}}, {'blockNum': '0x80ead3', 'uniqueId': '0x0eeff1ebddf72f16382a08f2cbb16f68e91c3f32acfbbce446e3745b367e112e:log:110', 'hash': '0x0eeff1ebddf72f16382a08f2cbb16f68e91c3f32acfbbce446e3745b367e112e', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 178956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x25e539651a79e4b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:52:04.000Z'}}, {'blockNum': '0x80ead7', 'uniqueId': '0x528996869a1bbbf1dbd229005748c4c8083ccd934ac2a6c7736f5e8bb4e1592f:log:37', 'hash': '0x528996869a1bbbf1dbd229005748c4c8083ccd934ac2a6c7736f5e8bb4e1592f', 'from': '0x54b6e9b833e62c22b290a97c6e561f42f6bdb20d', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 72176.9521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0f48b86d051184664000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:53:05.000Z'}}, {'blockNum': '0x80eade', 'uniqueId': '0xd1ae4a0c36ccde99bec15acf8c7659bbb7a61024306e1ec28c9c7f32a720b1ac:log:7', 'hash': '0xd1ae4a0c36ccde99bec15acf8c7659bbb7a61024306e1ec28c9c7f32a720b1ac', 'from': '0x3c0ee32b03816b787ce85d2e594ae4f3a7e062ad', 'to': '0x185aa96c350c9bca88b98670264642d167dd6f60', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:55:08.000Z'}}, {'blockNum': '0x80eae3', 'uniqueId': '0x23e91a20eae28bb11ce655a3037297db64afb281707dcf6a66e5bf37ac180c3a:log:94', 'hash': '0x23e91a20eae28bb11ce655a3037297db64afb281707dcf6a66e5bf37ac180c3a', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 16700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03894f0e6f9b9f700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:56:26.000Z'}}, {'blockNum': '0x80eaea', 'uniqueId': '0xa792573bfeefc106e77ca19a4fe8ca3c22957f9eabccea157e0f1926ddc895c1:log:19', 'hash': '0xa792573bfeefc106e77ca19a4fe8ca3c22957f9eabccea157e0f1926ddc895c1', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 122852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1a03d1fcde3531100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:57:32.000Z'}}, {'blockNum': '0x80eaf8', 'uniqueId': '0xb7d002bf0f9aa770c8d8c878e1d501ea2690e6c646873fdd8b380b839e4edffb:log:15', 'hash': '0xb7d002bf0f9aa770c8d8c878e1d501ea2690e6c646873fdd8b380b839e4edffb', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x95e3181243425ee70e68575456ef2f1c0a7ce9dc', 'value': 68879.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e95f43ef42705828000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:01:10.000Z'}}, {'blockNum': '0x80eafc', 'uniqueId': '0xd96e9ec0d44c39f86ef89ecfc990adf5a545d32572cf9d8491cbd833503b0368:log:30', 'hash': '0xd96e9ec0d44c39f86ef89ecfc990adf5a545d32572cf9d8491cbd833503b0368', 'from': '0x185aa96c350c9bca88b98670264642d167dd6f60', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:02:01.000Z'}}, {'blockNum': '0x80eb14', 'uniqueId': '0x90a567f7b6d5c8ba92b05876978032e27a66786b0b99cc23a12871dca1094214:log:10', 'hash': '0x90a567f7b6d5c8ba92b05876978032e27a66786b0b99cc23a12871dca1094214', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1978e53ef0faf74c811b53767551f8e549423157', 'value': 14193.704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030171365a8881040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:08:05.000Z'}}, {'blockNum': '0x80eb16', 'uniqueId': '0x248d467db3aff926e9eac036e792bbde0af21dcc55646c55150bfa7f27cd675d:log:17', 'hash': '0x248d467db3aff926e9eac036e792bbde0af21dcc55646c55150bfa7f27cd675d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b6a400791c57f080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:08:42.000Z'}}, {'blockNum': '0x80eb25', 'uniqueId': '0x70fa478e1fc107d924d9bbeb92b9b467eea13319846241bb4cdab62460a20e8a:log:72', 'hash': '0x70fa478e1fc107d924d9bbeb92b9b467eea13319846241bb4cdab62460a20e8a', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 122852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1a03d1fcde3531100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:12:11.000Z'}}, {'blockNum': '0x80eb36', 'uniqueId': '0x5eba7630aa6df42a3ead54d02ca1a43cf9db94d2b37ac3a9a2c903bc34bfef86:log:29', 'hash': '0x5eba7630aa6df42a3ead54d02ca1a43cf9db94d2b37ac3a9a2c903bc34bfef86', 'from': '0x95e3181243425ee70e68575456ef2f1c0a7ce9dc', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 68879.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e95f43ef42705828000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:16:42.000Z'}}, {'blockNum': '0x80eb52', 'uniqueId': '0x395a3a7c70c3d8590c4d8890dc245e179a0280f655810ed06eb671a96ee3d899:log:15', 'hash': '0x395a3a7c70c3d8590c4d8890dc245e179a0280f655810ed06eb671a96ee3d899', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b6a400791c57f080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:22:02.000Z'}}, {'blockNum': '0x80eb7c', 'uniqueId': '0xf847c95633907cc2ee28b0b17854cc6397c86326233aaffd6190187cd0168802:log:26', 'hash': '0xf847c95633907cc2ee28b0b17854cc6397c86326233aaffd6190187cd0168802', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 52600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b2373a381418ae00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:30:50.000Z'}}, {'blockNum': '0x80eba0', 'uniqueId': '0xc4d81865ef6b526f72b9c530d5c45148a897e4d52bcb46bacf8364fbb5a42db6:log:20', 'hash': '0xc4d81865ef6b526f72b9c530d5c45148a897e4d52bcb46bacf8364fbb5a42db6', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 61423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d01bf5c4affa25c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:38:53.000Z'}}, {'blockNum': '0x80ebb2', 'uniqueId': '0x61750ede45dce43fb6d5faecbfb6104c326d2c226be1d1b4ee7f14b5ed9c1cd9:log:10', 'hash': '0x61750ede45dce43fb6d5faecbfb6104c326d2c226be1d1b4ee7f14b5ed9c1cd9', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x182532ffcc412d3c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:42:08.000Z'}}, {'blockNum': '0x80ebbf', 'uniqueId': '0x4e3a7b4bccd792457b38c9f0df05d71abd03255f03d12f8ba46284660cd7de6e:log:66', 'hash': '0x4e3a7b4bccd792457b38c9f0df05d71abd03255f03d12f8ba46284660cd7de6e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c407de377cf080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:46:24.000Z'}}, {'blockNum': '0x80ebd0', 'uniqueId': '0xfd84a55d8e0d2bf36221dd5bc7155784246ad3c2bea2787cd5a67110969e1fb4:log:75', 'hash': '0xfd84a55d8e0d2bf36221dd5bc7155784246ad3c2bea2787cd5a67110969e1fb4', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 54860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b9df7706b4349b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:49:09.000Z'}}, {'blockNum': '0x80ebeb', 'uniqueId': '0x4920edd61962a643f840aa25ffc4f4168ae60904974edebe9b86972070b2c095:log:20', 'hash': '0x4920edd61962a643f840aa25ffc4f4168ae60904974edebe9b86972070b2c095', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14e1d24a01ef0bb40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:55:36.000Z'}}, {'blockNum': '0x80ebee', 'uniqueId': '0x83907d2352ce5993f955bbb6ad0eddebfd5e00f0d48649c8364e9814a21f10d8:log:23', 'hash': '0x83907d2352ce5993f955bbb6ad0eddebfd5e00f0d48649c8364e9814a21f10d8', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c0d18e775e5b8780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:56:30.000Z'}}, {'blockNum': '0x80ebee', 'uniqueId': '0x4b585de0a9e7160807910f03939dc1ac9a2a417f353769b1efeb09821baabffc:log:24', 'hash': '0x4b585de0a9e7160807910f03939dc1ac9a2a417f353769b1efeb09821baabffc', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 113797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1818f29e81a766f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:56:30.000Z'}}, {'blockNum': '0x80ec00', 'uniqueId': '0xbda7e7ff4404bea68c6c83161daa6279177c25b7607238eb30702a802b51b17d:log:99', 'hash': '0xbda7e7ff4404bea68c6c83161daa6279177c25b7607238eb30702a802b51b17d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 51731.406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0af45d79b843a73b0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:00:13.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xa1c76940e9751349b02e2f7aa772baa4fe0c90e1a9c8ad4f7078907540fcf7d4:log:52', 'hash': '0xa1c76940e9751349b02e2f7aa772baa4fe0c90e1a9c8ad4f7078907540fcf7d4', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1818f29e81a766f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xc183cc85d9e952f4ab68bf10d8b67bb233253a9bb487179dfd66f46bcf8bd7a7:log:75', 'hash': '0xc183cc85d9e952f4ab68bf10d8b67bb233253a9bb487179dfd66f46bcf8bd7a7', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 111770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x17ab1057e12902280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xd32c35b5d62736c86b69661b8ec10290e24a1bfb1f4ee5b7514db30b440041d1:log:76', 'hash': '0xd32c35b5d62736c86b69661b8ec10290e24a1bfb1f4ee5b7514db30b440041d1', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a0e12c7e566dabc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec0b', 'uniqueId': '0xbc773a7a581e6180aee7e139f43a19259c92313eb88f12fd2fa10109d16a3b43:log:70', 'hash': '0xbc773a7a581e6180aee7e139f43a19259c92313eb88f12fd2fa10109d16a3b43', 'from': '0x560a5a98b65bf6f564b25d0b1359508411a3ec74', 'to': '0xc2e5a9fa08845c253f42f889a137f848b970690e', 'value': 3863.34966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd16ebf2eddc225c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:03:24.000Z'}}, {'blockNum': '0x80ec2e', 'uniqueId': '0x1e7c753bbd42e2000f256b4a27655264389312a54b994b4caaa606afcce7a5bd:log:21', 'hash': '0x1e7c753bbd42e2000f256b4a27655264389312a54b994b4caaa606afcce7a5bd', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 114235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1830b1171907cc0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:12:02.000Z'}}, {'blockNum': '0x80ec39', 'uniqueId': '0xe419cc4fbf45f066ff15bccf957e677d7d08b62725ed77538d2a17179742fb6c:log:4', 'hash': '0xe419cc4fbf45f066ff15bccf957e677d7d08b62725ed77538d2a17179742fb6c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'value': 214619.1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2d7287973e57b82b4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:13:59.000Z'}}, {'blockNum': '0x80ec41', 'uniqueId': '0xac0c3a48fbea57b6a50ccd145cdb619ec91dcdde28f346bb73f4ee75f23981f9:log:22', 'hash': '0xac0c3a48fbea57b6a50ccd145cdb619ec91dcdde28f346bb73f4ee75f23981f9', 'from': '0x4cf5b6035eb8e71262da447456e585e1b9b43eac', 'to': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:15:32.000Z'}}, {'blockNum': '0x80ec41', 'uniqueId': '0xd3419ba15b7ca6936db3d82ebcaa3223bddac1188d97039c56c0ec40dde56593:log:26', 'hash': '0xd3419ba15b7ca6936db3d82ebcaa3223bddac1188d97039c56c0ec40dde56593', 'from': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'to': '0x4cf5b6035eb8e71262da447456e585e1b9b43eac', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:15:32.000Z'}}, {'blockNum': '0x80ec49', 'uniqueId': '0x255b3d5610b166b1d1a700ee5b29faa77fbd6c52e6f908ec727f12a8fb3ae227:log:67', 'hash': '0x255b3d5610b166b1d1a700ee5b29faa77fbd6c52e6f908ec727f12a8fb3ae227', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0becf3603fbef9d40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:18:53.000Z'}}, {'blockNum': '0x80ec4f', 'uniqueId': '0xbec336e7a239014be36bdb99c518a033241bdc4bfe66d1a123a27095c0db0ee5:log:1', 'hash': '0xbec336e7a239014be36bdb99c518a033241bdc4bfe66d1a123a27095c0db0ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5e9679a877aaefee7a0077ce89804034bd85ca71', 'value': 23612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0500025362432b700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:20:24.000Z'}}, {'blockNum': '0x80ec57', 'uniqueId': '0xc0f673c11369bbd5261d4792801f18bf3ffc8cc1c5760e5fadcd5a3b23017d49:log:95', 'hash': '0xc0f673c11369bbd5261d4792801f18bf3ffc8cc1c5760e5fadcd5a3b23017d49', 'from': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 214619.1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2d7287973e57b82b4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:22:54.000Z'}}, {'blockNum': '0x80ec5b', 'uniqueId': '0x16ba4b4c6736fbd564d6fefad02cbba2c49ef065bcbb8158ca445dfcedbcc011:log:22', 'hash': '0x16ba4b4c6736fbd564d6fefad02cbba2c49ef065bcbb8158ca445dfcedbcc011', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 93615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13d2e11b0a79015c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:24:59.000Z'}}, {'blockNum': '0x80ec72', 'uniqueId': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09:log:93', 'hash': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09', 'from': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'to': '0x59523b19e6614f9e6acede42100619458ee01eab', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:29:51.000Z'}}, {'blockNum': '0x80ec72', 'uniqueId': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09:log:94', 'hash': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09', 'from': '0x59523b19e6614f9e6acede42100619458ee01eab', 'to': '0x66013071e12cf90df02f1b3c8149e00a16936f80', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:29:51.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x9cb10db6ccaf8b0a739c01dc0d97043e6f75b683446b9ca3ad89bcddd93a189d:log:92', 'hash': '0x9cb10db6ccaf8b0a739c01dc0d97043e6f75b683446b9ca3ad89bcddd93a189d', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13d2e11b0a79015c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x6f51d8f9d835a49179fd48b8730bd8321cc10dfbb0bcce10387bc83bd2625125:log:110', 'hash': '0x6f51d8f9d835a49179fd48b8730bd8321cc10dfbb0bcce10387bc83bd2625125', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0becf3603fbef9d40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x1de467c16c632f3043046fbba2c34f5069ce833ad70fcef563daf534d3340fba:log:116', 'hash': '0x1de467c16c632f3043046fbba2c34f5069ce833ad70fcef563daf534d3340fba', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1830b1171907cc0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec91', 'uniqueId': '0x3045bdeff466c877cc88d856c72b3b173955f0dc8f9180ae0641d785207e9d54:log:50', 'hash': '0x3045bdeff466c877cc88d856c72b3b173955f0dc8f9180ae0641d785207e9d54', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:36:48.000Z'}}, {'blockNum': '0x80ec93', 'uniqueId': '0x04b2991812aa302c2a37294a5556561d4bd9566f8596d2f990438530f57abb31:log:49', 'hash': '0x04b2991812aa302c2a37294a5556561d4bd9566f8596d2f990438530f57abb31', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0be989134988c8380000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:37:48.000Z'}}, {'blockNum': '0x80ecaa', 'uniqueId': '0x6f17d55bc279e064951a1fe263066bae92efaedeeae6131894350cd46de3ecd8:log:20', 'hash': '0x6f17d55bc279e064951a1fe263066bae92efaedeeae6131894350cd46de3ecd8', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:42:01.000Z'}}, {'blockNum': '0x80ecb2', 'uniqueId': '0x79e1e71dd207946a88e65a6e68f4ca0405791b6ffb7154407c95973151f8a4ef:log:1', 'hash': '0x79e1e71dd207946a88e65a6e68f4ca0405791b6ffb7154407c95973151f8a4ef', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8164980bf4a83e54992a2733938b5d8401fb3912', 'value': 19912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04376e82c5b3da200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:43:26.000Z'}}, {'blockNum': '0x80ecd0', 'uniqueId': '0x67ec7f71367185e6ffb2daa482d454d8df95df665833d7aaeaaaee53d31f2a57:log:155', 'hash': '0x67ec7f71367185e6ffb2daa482d454d8df95df665833d7aaeaaaee53d31f2a57', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 52072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b06d42aaeb84ca00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:50:49.000Z'}}, {'blockNum': '0x80ecd2', 'uniqueId': '0xde0fe8ca7ee563f64fb96be4198d41760ceef73ca7972014613c49535ace4212:log:87', 'hash': '0xde0fe8ca7ee563f64fb96be4198d41760ceef73ca7972014613c49535ace4212', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16f05d3df84114d80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:51:50.000Z'}}, {'blockNum': '0x80ece7', 'uniqueId': '0x8811d79136c1090aa214b12575be9ca66e7e7aadb51221f7b96e5833e1cdb3fb:log:20', 'hash': '0x8811d79136c1090aa214b12575be9ca66e7e7aadb51221f7b96e5833e1cdb3fb', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 97754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14b34144f51c5f280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:56:42.000Z'}}]}}
Number of returned transfers:  160
Answer is complete
 
symbol             EDO
group              BPF
date        2019-12-08
hour             21:01
exchange       binance
Name: 794, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2019-12-08 21:01:00 2019-12-08 09:01:00 2019-12-09 09:01:00
Unix timestamps:  1575792060.0 1575878460.0
Hex Block Numbers:  0x8a689c 0x8a7e7f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIB
group              BPF
date        2020-01-12
hour             20:00
exchange       binance
Name: 796, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2020-01-12 20:00:00 2020-01-12 08:00:00 2020-01-13 08:00:00
Unix timestamps:  1578812400.0 1578898800.0
Hex Block Numbers:  0x8d5dfc 0x8d775a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8d5ece', 'uniqueId': '0xece4d12e7f40e51dab42c9f065aab8547032d8941da13007b7d14c163077a22e:log:38', 'hash': '0xece4d12e7f40e51dab42c9f065aab8547032d8941da13007b7d14c163077a22e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8921.041479999092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01e39c52185b0ee58ba5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T07:44:33.000Z'}}, {'blockNum': '0x8d5ece', 'uniqueId': '0xece4d12e7f40e51dab42c9f065aab8547032d8941da13007b7d14c163077a22e:log:43', 'hash': '0xece4d12e7f40e51dab42c9f065aab8547032d8941da13007b7d14c163077a22e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 8921.041479999092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01e39c52185b0ee58ba5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T07:44:33.000Z'}}, {'blockNum': '0x8d604a', 'uniqueId': '0x938393f73d7fb232d5c795906acabb341a63d7bf3c059bacd69d5423a573e65c:log:24', 'hash': '0x938393f73d7fb232d5c795906acabb341a63d7bf3c059bacd69d5423a573e65c', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 10443.515771701874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x023624e5563eafa37221', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T09:08:19.000Z'}}, {'blockNum': '0x8d604a', 'uniqueId': '0x938393f73d7fb232d5c795906acabb341a63d7bf3c059bacd69d5423a573e65c:log:29', 'hash': '0x938393f73d7fb232d5c795906acabb341a63d7bf3c059bacd69d5423a573e65c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 10443.515771701874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x023624e5563eafa37221', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T09:08:19.000Z'}}, {'blockNum': '0x8d604d', 'uniqueId': '0xfcea67f5c3a9dfddf94027b2e647bd9a1a08658444b22aa4a1da7d7dd5c8025d:log:100', 'hash': '0xfcea67f5c3a9dfddf94027b2e647bd9a1a08658444b22aa4a1da7d7dd5c8025d', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 10443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02361dbcf29d5c4c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T09:09:17.000Z'}}, {'blockNum': '0x8d606b', 'uniqueId': '0x7c563f0f67a77f1f161c9e2325b529f3ce60e629920bd1e39baf6a7df2a1e9a1:log:8', 'hash': '0x7c563f0f67a77f1f161c9e2325b529f3ce60e629920bd1e39baf6a7df2a1e9a1', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02361dbcf29d5c4c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T09:17:09.000Z'}}, {'blockNum': '0x8d6965', 'uniqueId': '0x26301e9f7c6e6f50273f610d07206d7d5914b526de91dadd68752a0fbdb69a34:log:78', 'hash': '0x26301e9f7c6e6f50273f610d07206d7d5914b526de91dadd68752a0fbdb69a34', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 10305.362992525488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022ea7a4118c7a3169db', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T17:50:51.000Z'}}, {'blockNum': '0x8d6965', 'uniqueId': '0x26301e9f7c6e6f50273f610d07206d7d5914b526de91dadd68752a0fbdb69a34:log:83', 'hash': '0x26301e9f7c6e6f50273f610d07206d7d5914b526de91dadd68752a0fbdb69a34', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 10305.362992525488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022ea7a4118c7a3169db', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T17:50:51.000Z'}}, {'blockNum': '0x8d6967', 'uniqueId': '0x91146f204568e9a856f3c6a75536271c16c199c4b59ff51a8eb7b1baed1f36dd:log:46', 'hash': '0x91146f204568e9a856f3c6a75536271c16c199c4b59ff51a8eb7b1baed1f36dd', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 10305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022ea29a75c520640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T17:51:20.000Z'}}, {'blockNum': '0x8d6989', 'uniqueId': '0xfad208ab1a66d6e40a42130a0083fcd38e538330a817e2baba583033df4531d5:log:4', 'hash': '0xfad208ab1a66d6e40a42130a0083fcd38e538330a817e2baba583033df4531d5', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022ea29a75c520640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T17:57:03.000Z'}}, {'blockNum': '0x8d6b08', 'uniqueId': '0x27c55f518b45363e644bd99f49973f38543ac07bea1f4cbe2a4334b9903cabc7:log:91', 'hash': '0x27c55f518b45363e644bd99f49973f38543ac07bea1f4cbe2a4334b9903cabc7', 'from': '0x344fad0e6830d2c2cb2fab81fee939512961ce94', 'to': '0xf0e059d58a370159eca877cd15fdc9c770805dcc', 'value': 1050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x38ebad5cdc90280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T19:19:05.000Z'}}, {'blockNum': '0x8d6bbf', 'uniqueId': '0xc27ea8be4531f6a3b8dbeb86a389428ad3c85082e668c939d39ed21a417434d9:log:11', 'hash': '0xc27ea8be4531f6a3b8dbeb86a389428ad3c85082e668c939d39ed21a417434d9', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 19549.863652933833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0423ccdc04b9f9aea461', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T19:59:59.000Z'}}, {'blockNum': '0x8d6bbf', 'uniqueId': '0xc27ea8be4531f6a3b8dbeb86a389428ad3c85082e668c939d39ed21a417434d9:log:16', 'hash': '0xc27ea8be4531f6a3b8dbeb86a389428ad3c85082e668c939d39ed21a417434d9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 19549.863652933833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0423ccdc04b9f9aea461', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T19:59:59.000Z'}}, {'blockNum': '0x8d6bc0', 'uniqueId': '0xd2c896769e6c55112f7d63d0780f920732743790ffa97c151c32a09424ca96b1:log:11', 'hash': '0xd2c896769e6c55112f7d63d0780f920732743790ffa97c151c32a09424ca96b1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 614.1821719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x214b7d67443566d800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:00:37.000Z'}}, {'blockNum': '0x8d6bc1', 'uniqueId': '0x026a259bc86675ca9a20cb30a75ef36e9f538dc377ab255442098f82a4d732e6:log:55', 'hash': '0x026a259bc86675ca9a20cb30a75ef36e9f538dc377ab255442098f82a4d732e6', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 27928.380208499282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05ea002264bae19fcad1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:14.000Z'}}, {'blockNum': '0x8d6bc1', 'uniqueId': '0x026a259bc86675ca9a20cb30a75ef36e9f538dc377ab255442098f82a4d732e6:log:60', 'hash': '0x026a259bc86675ca9a20cb30a75ef36e9f538dc377ab255442098f82a4d732e6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 27928.380208499282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05ea002264bae19fcad1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:14.000Z'}}, {'blockNum': '0x8d6bc1', 'uniqueId': '0x0b94ac265a07df460b2d5bd88159bdd34aa8438aa2d4d9adac4700c3cf3de3c7:log:135', 'hash': '0x0b94ac265a07df460b2d5bd88159bdd34aa8438aa2d4d9adac4700c3cf3de3c7', 'from': '0xdc79bb9a038834ee96202e8dd0c4ba6d568dcea5', 'to': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'value': 15400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0342d5eea74d97a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:14.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x3f0ea3e00b87badce39df6d45c013e6633427a7dbe3088dedfebfa92c14d5f00:log:11', 'hash': '0x3f0ea3e00b87badce39df6d45c013e6633427a7dbe3088dedfebfa92c14d5f00', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18231.447711332592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03dc5429ab1b6fa17615', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x3f0ea3e00b87badce39df6d45c013e6633427a7dbe3088dedfebfa92c14d5f00:log:16', 'hash': '0x3f0ea3e00b87badce39df6d45c013e6633427a7dbe3088dedfebfa92c14d5f00', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 18231.447711332592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03dc5429ab1b6fa17615', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x9ef5bcc87eeddd8eb428e39c19e87c13843e0adcc01b11b2725510dfc685dcf2:log:164', 'hash': '0x9ef5bcc87eeddd8eb428e39c19e87c13843e0adcc01b11b2725510dfc685dcf2', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18278.162153367943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03dedc74b4a275212555', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x9ef5bcc87eeddd8eb428e39c19e87c13843e0adcc01b11b2725510dfc685dcf2:log:169', 'hash': '0x9ef5bcc87eeddd8eb428e39c19e87c13843e0adcc01b11b2725510dfc685dcf2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 18278.162153367943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03dedc74b4a275212555', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x30d7c8233b8303e12ae926175aa4c772331ca1831300ca5e66383302589affa4:log:189', 'hash': '0x30d7c8233b8303e12ae926175aa4c772331ca1831300ca5e66383302589affa4', 'from': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18213.216263621263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03db57268e0210c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x30d7c8233b8303e12ae926175aa4c772331ca1831300ca5e66383302589affa4:log:191', 'hash': '0x30d7c8233b8303e12ae926175aa4c772331ca1831300ca5e66383302589affa4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 18213.216263621263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03db57268e0210c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc5', 'uniqueId': '0x3a4ed830f5e4f12e9e380e13f3a3cec3b0c9735b337b37d7c52c9a3fc78c997c:log:98', 'hash': '0x3a4ed830f5e4f12e9e380e13f3a3cec3b0c9735b337b37d7c52c9a3fc78c997c', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 20002.98510697557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043c5d2ece6fe3e888a5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:11.000Z'}}, {'blockNum': '0x8d6bc5', 'uniqueId': '0x3a4ed830f5e4f12e9e380e13f3a3cec3b0c9735b337b37d7c52c9a3fc78c997c:log:103', 'hash': '0x3a4ed830f5e4f12e9e380e13f3a3cec3b0c9735b337b37d7c52c9a3fc78c997c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x82d5cbe057f17bf58c728829c7aed242fe5b4623', 'value': 20002.98510697557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043c5d2ece6fe3e888a5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:11.000Z'}}, {'blockNum': '0x8d6bc5', 'uniqueId': '0x7bfb1f750267e98eddac3a968807ef1dd1ef3b736ae3525b9f483889aeb39f4b:log:125', 'hash': '0x7bfb1f750267e98eddac3a968807ef1dd1ef3b736ae3525b9f483889aeb39f4b', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 18278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03deda349f016dd80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:11.000Z'}}, {'blockNum': '0x8d6bc7', 'uniqueId': '0x4366b26665d30afce4fcf9357a079e5fd8afe6237cc19b09aa3c541188058fec:log:0', 'hash': '0x4366b26665d30afce4fcf9357a079e5fd8afe6237cc19b09aa3c541188058fec', 'from': '0x82d5cbe057f17bf58c728829c7aed242fe5b4623', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 20002.98510697557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043c5d2ece6fe3e888a5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:21.000Z'}}, {'blockNum': '0x8d6bc7', 'uniqueId': '0x8d56b68fb4560898ce69261d25c51b42772dc12e4e980ede0c3c6478384d877a:log:80', 'hash': '0x8d56b68fb4560898ce69261d25c51b42772dc12e4e980ede0c3c6478384d877a', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 11870.811611365181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0283849aca47fbf8c69c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:21.000Z'}}, {'blockNum': '0x8d6bc7', 'uniqueId': '0x8d56b68fb4560898ce69261d25c51b42772dc12e4e980ede0c3c6478384d877a:log:85', 'hash': '0x8d56b68fb4560898ce69261d25c51b42772dc12e4e980ede0c3c6478384d877a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 11870.811611365181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0283849aca47fbf8c69c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:21.000Z'}}, {'blockNum': '0x8d6bc9', 'uniqueId': '0xdd5892ea9cf08e28562cc7f77c12ae08260b98950cac5cbcb16bc07ced69ecc1:log:1', 'hash': '0xdd5892ea9cf08e28562cc7f77c12ae08260b98950cac5cbcb16bc07ced69ecc1', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 11870.811611365181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0283849aca47fbf8c69c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:03:13.000Z'}}, {'blockNum': '0x8d6bca', 'uniqueId': '0x5f5f24db84ed673edc6ea2b69d0b33cacca9dfb306e86206d359115bad59b76c:log:9', 'hash': '0x5f5f24db84ed673edc6ea2b69d0b33cacca9dfb306e86206d359115bad59b76c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 10516.8098182929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x023a1e0e194a78ced590', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:03:35.000Z'}}, {'blockNum': '0x8d6bca', 'uniqueId': '0x5f5f24db84ed673edc6ea2b69d0b33cacca9dfb306e86206d359115bad59b76c:log:11', 'hash': '0x5f5f24db84ed673edc6ea2b69d0b33cacca9dfb306e86206d359115bad59b76c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 10516.8098182929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x023a1e0e194a78ced590', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:03:35.000Z'}}, {'blockNum': '0x8d6bcc', 'uniqueId': '0xd7ad8547770097d90d958ab470e69f6adaef5af593bd15c2d12f82eed8dbd44c:log:31', 'hash': '0xd7ad8547770097d90d958ab470e69f6adaef5af593bd15c2d12f82eed8dbd44c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 11024.153407517082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02559edc9bab33c3f8d2', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:04:03.000Z'}}, {'blockNum': '0x8d6bcc', 'uniqueId': '0xd7ad8547770097d90d958ab470e69f6adaef5af593bd15c2d12f82eed8dbd44c:log:33', 'hash': '0xd7ad8547770097d90d958ab470e69f6adaef5af593bd15c2d12f82eed8dbd44c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 11024.153407517082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02559edc9bab33c3f8d2', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:04:03.000Z'}}, {'blockNum': '0x8d6bda', 'uniqueId': '0x56a91cac2787af49e5c61b1265bb68885c4b419a3c7d9c2197cb49674e5d6839:log:5', 'hash': '0x56a91cac2787af49e5c61b1265bb68885c4b419a3c7d9c2197cb49674e5d6839', 'from': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20002.98510697557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043c5d2ece6fe3e888a5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:07:27.000Z'}}, {'blockNum': '0x8d6bda', 'uniqueId': '0x377640f72c945d42d20e5c9ab9458f8b8ea7926426176c36f3cdea7e21ef00a0:log:7', 'hash': '0x377640f72c945d42d20e5c9ab9458f8b8ea7926426176c36f3cdea7e21ef00a0', 'from': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0342d5eea74d97a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:07:27.000Z'}}, {'blockNum': '0x8d6be3', 'uniqueId': '0x1a6a41790e6fddc3238821bb2ebc7898524e3dbffb51a55c078d401229c6ca81:log:10', 'hash': '0x1a6a41790e6fddc3238821bb2ebc7898524e3dbffb51a55c078d401229c6ca81', 'from': '0x344fad0e6830d2c2cb2fab81fee939512961ce94', 'to': '0xb07fb5a474c3756a8c2e2ac44023eee733f48929', 'value': 1050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x38ebad5cdc90280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:09:01.000Z'}}, {'blockNum': '0x8d6bef', 'uniqueId': '0x0154173a7f525b0b0c1d0a2e1e2c8e72bef49b9d3e50147697051692192101a4:log:20', 'hash': '0x0154173a7f525b0b0c1d0a2e1e2c8e72bef49b9d3e50147697051692192101a4', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 12506.896461117942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a6000e230264ff75cc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:12:13.000Z'}}, {'blockNum': '0x8d6bef', 'uniqueId': '0x0154173a7f525b0b0c1d0a2e1e2c8e72bef49b9d3e50147697051692192101a4:log:22', 'hash': '0x0154173a7f525b0b0c1d0a2e1e2c8e72bef49b9d3e50147697051692192101a4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 12506.896461117942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a6000e230264ff75cc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:12:13.000Z'}}, {'blockNum': '0x8d6c07', 'uniqueId': '0xa2e254d111e859551f54d48c4f847f948d17c7eada797c7e7c83be187497ecea:log:3', 'hash': '0xa2e254d111e859551f54d48c4f847f948d17c7eada797c7e7c83be187497ecea', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03deda349f016dd80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:17:05.000Z'}}, {'blockNum': '0x8d6c07', 'uniqueId': '0xcd3f4b7ba87418c96d5695d2be5ff713404e4fe48f36c379bef55185d048a98e:log:4', 'hash': '0xcd3f4b7ba87418c96d5695d2be5ff713404e4fe48f36c379bef55185d048a98e', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11870.811611365181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0283849aca47fbf8c69c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:17:05.000Z'}}, {'blockNum': '0x8d6c08', 'uniqueId': '0xba21236609da7862449473d22cca7899bd579ba1b4bc5bd543e1a265b10e6b11:log:19', 'hash': '0xba21236609da7862449473d22cca7899bd579ba1b4bc5bd543e1a265b10e6b11', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5091.149151341526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0113fde33b14b3138fda', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:17:13.000Z'}}, {'blockNum': '0x8d6c08', 'uniqueId': '0xba21236609da7862449473d22cca7899bd579ba1b4bc5bd543e1a265b10e6b11:log:21', 'hash': '0xba21236609da7862449473d22cca7899bd579ba1b4bc5bd543e1a265b10e6b11', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5091.149151341526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0113fde33b14b3138fda', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:17:13.000Z'}}, {'blockNum': '0x8d6c35', 'uniqueId': '0x60e1cde1d094094b087feea9e902a7c0602b2dba5413f739c2ab9d21ea3d9779:log:80', 'hash': '0x60e1cde1d094094b087feea9e902a7c0602b2dba5413f739c2ab9d21ea3d9779', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2717.8942385362975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x93565c09ed8ccecfdf', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:28:51.000Z'}}, {'blockNum': '0x8d6c35', 'uniqueId': '0x60e1cde1d094094b087feea9e902a7c0602b2dba5413f739c2ab9d21ea3d9779:log:82', 'hash': '0x60e1cde1d094094b087feea9e902a7c0602b2dba5413f739c2ab9d21ea3d9779', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 2717.8942385362975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x93565c09ed8ccecfdf', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:28:51.000Z'}}, {'blockNum': '0x8d6c49', 'uniqueId': '0x8a35dcdef17e726ba9ca051b66b63c421f78bcb34f8561f4c811008f869a4f4e:log:1', 'hash': '0x8a35dcdef17e726ba9ca051b66b63c421f78bcb34f8561f4c811008f869a4f4e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 18264.36961136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03de1d0bc0c1201fc000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:32:29.000Z'}}, {'blockNum': '0x8d6c4b', 'uniqueId': '0xa67e1053cd8f927db2f9f422258016931e9eb5ad92334dc29793aae7f9fc742e:log:56', 'hash': '0xa67e1053cd8f927db2f9f422258016931e9eb5ad92334dc29793aae7f9fc742e', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18264.36961136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03de1d0bc0c1201fc000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:32:55.000Z'}}, {'blockNum': '0x8d6c4b', 'uniqueId': '0xa67e1053cd8f927db2f9f422258016931e9eb5ad92334dc29793aae7f9fc742e:log:58', 'hash': '0xa67e1053cd8f927db2f9f422258016931e9eb5ad92334dc29793aae7f9fc742e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 18264.36961136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03de1d0bc0c1201fc000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:32:55.000Z'}}, {'blockNum': '0x8d6c4e', 'uniqueId': '0x83c9d4ee09a43ef4028f210a3ec6a62e1f7e196053938d8ff2521498dba64987:log:52', 'hash': '0x83c9d4ee09a43ef4028f210a3ec6a62e1f7e196053938d8ff2521498dba64987', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6779.421433890561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016f835f433594453c11', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:33:42.000Z'}}, {'blockNum': '0x8d6c4e', 'uniqueId': '0x83c9d4ee09a43ef4028f210a3ec6a62e1f7e196053938d8ff2521498dba64987:log:57', 'hash': '0x83c9d4ee09a43ef4028f210a3ec6a62e1f7e196053938d8ff2521498dba64987', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 6779.421433890561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016f835f433594453c11', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:33:42.000Z'}}, {'blockNum': '0x8d6c58', 'uniqueId': '0x07badddb620577d859463d2cc38fca4363abf04eda1ccb02cc571fc05f2edb54:log:31', 'hash': '0x07badddb620577d859463d2cc38fca4363abf04eda1ccb02cc571fc05f2edb54', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9518.961623429423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x020406212ae38e6b5cb1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:36:24.000Z'}}, {'blockNum': '0x8d6c58', 'uniqueId': '0x07badddb620577d859463d2cc38fca4363abf04eda1ccb02cc571fc05f2edb54:log:36', 'hash': '0x07badddb620577d859463d2cc38fca4363abf04eda1ccb02cc571fc05f2edb54', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 9518.961623429423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x020406212ae38e6b5cb1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:36:24.000Z'}}, {'blockNum': '0x8d6c5c', 'uniqueId': '0x56f41cb400012b9e69bb1da1ccd9ee1a321ebe4fc66d5bddf7dca6abcc166a34:log:35', 'hash': '0x56f41cb400012b9e69bb1da1ccd9ee1a321ebe4fc66d5bddf7dca6abcc166a34', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 9518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0203f8c8cb7987f80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:37:16.000Z'}}, {'blockNum': '0x8d6c86', 'uniqueId': '0x08466c84d3fa0e6636f13227056db5f72ab4ce5c8774b5b5a6e73727e3504166:log:3', 'hash': '0x08466c84d3fa0e6636f13227056db5f72ab4ce5c8774b5b5a6e73727e3504166', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0203f8c8cb7987f80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:47:06.000Z'}}, {'blockNum': '0x8d6ca1', 'uniqueId': '0x115987fe04ca6310299284964f7e88ba9be3a8642bf2031c394a71564c987780:log:9', 'hash': '0x115987fe04ca6310299284964f7e88ba9be3a8642bf2031c394a71564c987780', 'from': '0x1657e36d67e3ca976cb3990cb611b061244a5680', 'to': '0x470a89caaaf2186792e0e6bad1b48032180ad2cf', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:52:15.000Z'}}, {'blockNum': '0x8d6cc9', 'uniqueId': '0x34d6e004d3c71774c627a57cd4e20897786ab8f5fc75bbce87bc5a65af0594ea:log:108', 'hash': '0x34d6e004d3c71774c627a57cd4e20897786ab8f5fc75bbce87bc5a65af0594ea', 'from': '0x58815d9b02743300221ceda606b8ecd11372bff5', 'to': '0x8487db809b567231617a1559d9d35a423ee43e64', 'value': 144300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1e8e84c7d9d563300000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T21:01:26.000Z'}}, {'blockNum': '0x8d6ce2', 'uniqueId': '0x56622a519e047006a080a75ccf6fadbe44a8f061e89dd1f616e51cc9516641d7:log:12', 'hash': '0x56622a519e047006a080a75ccf6fadbe44a8f061e89dd1f616e51cc9516641d7', 'from': '0x8487db809b567231617a1559d9d35a423ee43e64', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 145107.46999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1eba4aad90aa3fcf1c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T21:07:12.000Z'}}, {'blockNum': '0x8d6df0', 'uniqueId': '0x410e8d32e671330517a4746f901e0073062ad81f946e20e85b11037b3a73f9a6:log:30', 'hash': '0x410e8d32e671330517a4746f901e0073062ad81f946e20e85b11037b3a73f9a6', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 10873.052948505163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024d6debf0c30fd76be7', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:03:17.000Z'}}, {'blockNum': '0x8d6df0', 'uniqueId': '0x410e8d32e671330517a4746f901e0073062ad81f946e20e85b11037b3a73f9a6:log:35', 'hash': '0x410e8d32e671330517a4746f901e0073062ad81f946e20e85b11037b3a73f9a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0958d18592cbff1503a4e02d526888ab0ae0e5f3', 'value': 10873.052948505163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024d6debf0c30fd76be7', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:03:17.000Z'}}, {'blockNum': '0x8d6df1', 'uniqueId': '0x55ebd93de7fcf67fdc599b4bbd073d69bc5212ec3633b73b8d80b7853ebecebe:log:13', 'hash': '0x55ebd93de7fcf67fdc599b4bbd073d69bc5212ec3633b73b8d80b7853ebecebe', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6779.421433890561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016f835f433594453c11', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:03:28.000Z'}}, {'blockNum': '0x8d6df1', 'uniqueId': '0x55ebd93de7fcf67fdc599b4bbd073d69bc5212ec3633b73b8d80b7853ebecebe:log:15', 'hash': '0x55ebd93de7fcf67fdc599b4bbd073d69bc5212ec3633b73b8d80b7853ebecebe', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6779.421433890561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016f835f433594453c11', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:03:28.000Z'}}, {'blockNum': '0x8d6df6', 'uniqueId': '0xd7c2dddb25cf2072c9d084d1100775f96465a205f122b4ba3f8eef17263f0381:log:32', 'hash': '0xd7c2dddb25cf2072c9d084d1100775f96465a205f122b4ba3f8eef17263f0381', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9561.271475306101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0206514bf500e73b3f67', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:04:31.000Z'}}, {'blockNum': '0x8d6df6', 'uniqueId': '0xd7c2dddb25cf2072c9d084d1100775f96465a205f122b4ba3f8eef17263f0381:log:37', 'hash': '0xd7c2dddb25cf2072c9d084d1100775f96465a205f122b4ba3f8eef17263f0381', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0958d18592cbff1503a4e02d526888ab0ae0e5f3', 'value': 9561.271475306101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0206514bf500e73b3f67', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:04:31.000Z'}}, {'blockNum': '0x8d6e00', 'uniqueId': '0x86e4b94cc1becd8610d4bb20cb7d77b50fd18d1ef0c074fed37cffbc1afa2548:log:64', 'hash': '0x86e4b94cc1becd8610d4bb20cb7d77b50fd18d1ef0c074fed37cffbc1afa2548', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6347.5705470877065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01581a3cb5b4c6b00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:07:00.000Z'}}, {'blockNum': '0x8d6e00', 'uniqueId': '0x86e4b94cc1becd8610d4bb20cb7d77b50fd18d1ef0c074fed37cffbc1afa2548:log:66', 'hash': '0x86e4b94cc1becd8610d4bb20cb7d77b50fd18d1ef0c074fed37cffbc1afa2548', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6347.5705470877065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01581a3cb5b4c6b00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:07:00.000Z'}}, {'blockNum': '0x8d6e05', 'uniqueId': '0x0fe329a72da9c9ba0b25b7d91516429cee67a86f26f95700c30b085546cf04b1:log:5', 'hash': '0x0fe329a72da9c9ba0b25b7d91516429cee67a86f26f95700c30b085546cf04b1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 6350.25092374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01583f6f5211f6e19800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:07:41.000Z'}}, {'blockNum': '0x8d6e11', 'uniqueId': '0xbe07b0b9d5792ec2ae2c16a5b3f9fe071908bbad1cee0647fc5d7d264b4f6de6:log:4', 'hash': '0xbe07b0b9d5792ec2ae2c16a5b3f9fe071908bbad1cee0647fc5d7d264b4f6de6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 6318.633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015688a5e3f294ca8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:10:09.000Z'}}, {'blockNum': '0x8d6e25', 'uniqueId': '0x123c18b438b63b32d919d09804c9bec67d2d3d0d38514c614a06f475c3257561:log:13', 'hash': '0x123c18b438b63b32d919d09804c9bec67d2d3d0d38514c614a06f475c3257561', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6318.633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015688a5e3f294ca8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:14:09.000Z'}}, {'blockNum': '0x8d6e25', 'uniqueId': '0x123c18b438b63b32d919d09804c9bec67d2d3d0d38514c614a06f475c3257561:log:15', 'hash': '0x123c18b438b63b32d919d09804c9bec67d2d3d0d38514c614a06f475c3257561', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6318.633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015688a5e3f294ca8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:14:09.000Z'}}, {'blockNum': '0x8d6e4c', 'uniqueId': '0x55a58c874b00c7cb0ca4c0eb22133171fec5f2f810a7538eb71f32ec93015fb2:log:2', 'hash': '0x55a58c874b00c7cb0ca4c0eb22133171fec5f2f810a7538eb71f32ec93015fb2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc6ae17a1ff6ea40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:23:52.000Z'}}, {'blockNum': '0x8d6e5e', 'uniqueId': '0x39b0cac13a631c57a1fe0fb46ff661ed9795d56c219ae12e390442e64af69470:log:2', 'hash': '0x39b0cac13a631c57a1fe0fb46ff661ed9795d56c219ae12e390442e64af69470', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc6ae17a1ff6ea40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:27:07.000Z'}}, {'blockNum': '0x8d6e9f', 'uniqueId': '0x00890b269d4d787a0c46b6879e9678d1e9f087b30e69d9c20449ed28d1436bcb:log:10', 'hash': '0x00890b269d4d787a0c46b6879e9678d1e9f087b30e69d9c20449ed28d1436bcb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7b90e91c9d511292aa6b721996faf69d3ce6a0ea', 'value': 3841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd038953d8283640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:39:48.000Z'}}, {'blockNum': '0x8d6ea0', 'uniqueId': '0xc7b8b506b7b77c5e2ac63a42bcd31e94b1a9474c3be0f4715b568ed0718d5cc4:log:43', 'hash': '0xc7b8b506b7b77c5e2ac63a42bcd31e94b1a9474c3be0f4715b568ed0718d5cc4', 'from': '0x7b90e91c9d511292aa6b721996faf69d3ce6a0ea', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd038953d8283640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:40:26.000Z'}}, {'blockNum': '0x8d6ea0', 'uniqueId': '0xc7b8b506b7b77c5e2ac63a42bcd31e94b1a9474c3be0f4715b568ed0718d5cc4:log:45', 'hash': '0xc7b8b506b7b77c5e2ac63a42bcd31e94b1a9474c3be0f4715b568ed0718d5cc4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 3841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd038953d8283640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:40:26.000Z'}}, {'blockNum': '0x8d6ee6', 'uniqueId': '0xb03acf8abd6de169b3263380af689d30b4d646b9bca6660a252f5b963ff75425:log:2', 'hash': '0xb03acf8abd6de169b3263380af689d30b4d646b9bca6660a252f5b963ff75425', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 6482.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f6a5449e841b08000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:53:30.000Z'}}, {'blockNum': '0x8d6ee8', 'uniqueId': '0x83942893d21943ab496837455ea7883361a4eb63e0b7bfcae5d6a9b14647a724:log:7', 'hash': '0x83942893d21943ab496837455ea7883361a4eb63e0b7bfcae5d6a9b14647a724', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6482.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f6a5449e841b08000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:53:59.000Z'}}, {'blockNum': '0x8d6ee8', 'uniqueId': '0x83942893d21943ab496837455ea7883361a4eb63e0b7bfcae5d6a9b14647a724:log:9', 'hash': '0x83942893d21943ab496837455ea7883361a4eb63e0b7bfcae5d6a9b14647a724', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6482.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f6a5449e841b08000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:53:59.000Z'}}, {'blockNum': '0x8d700d', 'uniqueId': '0x0930c26d7bbd5525d59126c1963c17e799d3189734ac0e0e2db09107c362d23c:log:2', 'hash': '0x0930c26d7bbd5525d59126c1963c17e799d3189734ac0e0e2db09107c362d23c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 6550.401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016319133bfcf3868000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T00:03:16.000Z'}}, {'blockNum': '0x8d7015', 'uniqueId': '0x6419fac01e0d7da46494f956f51071629eaf0914d75b151ecc789c6e01f4c95c:log:83', 'hash': '0x6419fac01e0d7da46494f956f51071629eaf0914d75b151ecc789c6e01f4c95c', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6550.401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016319133bfcf3868000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T00:04:39.000Z'}}, {'blockNum': '0x8d7015', 'uniqueId': '0x6419fac01e0d7da46494f956f51071629eaf0914d75b151ecc789c6e01f4c95c:log:85', 'hash': '0x6419fac01e0d7da46494f956f51071629eaf0914d75b151ecc789c6e01f4c95c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6550.401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016319133bfcf3868000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T00:04:39.000Z'}}, {'blockNum': '0x8d7174', 'uniqueId': '0x855ab33e566b79d33db74e67a782f92c933b0d302b9565f626ae3687ffc24a77:log:57', 'hash': '0x855ab33e566b79d33db74e67a782f92c933b0d302b9565f626ae3687ffc24a77', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 15983.003388586792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x036270bac456a46ee50f', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:23:28.000Z'}}, {'blockNum': '0x8d7174', 'uniqueId': '0x855ab33e566b79d33db74e67a782f92c933b0d302b9565f626ae3687ffc24a77:log:62', 'hash': '0x855ab33e566b79d33db74e67a782f92c933b0d302b9565f626ae3687ffc24a77', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 15983.003388586792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x036270bac456a46ee50f', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:23:28.000Z'}}, {'blockNum': '0x8d7179', 'uniqueId': '0x1ecd6c89c5404574d58729b3d7575253e1f41c8f9d1e5fe795008e4e938f5661:log:3', 'hash': '0x1ecd6c89c5404574d58729b3d7575253e1f41c8f9d1e5fe795008e4e938f5661', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 15983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x036270aeba6fcc5c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:23:46.000Z'}}, {'blockNum': '0x8d71b6', 'uniqueId': '0xed05ca774e9f39d15108f3855128feb89e8106ae414625f539e03a37c4a3a8b0:log:25', 'hash': '0xed05ca774e9f39d15108f3855128feb89e8106ae414625f539e03a37c4a3a8b0', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x036270aeba6fcc5c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:36:53.000Z'}}, {'blockNum': '0x8d71e9', 'uniqueId': '0x97d114f6586b933dad80f74a7927f118b16e62953a30fe36c8e71275e34712d3:log:1', 'hash': '0x97d114f6586b933dad80f74a7927f118b16e62953a30fe36c8e71275e34712d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5b98e34f2c825778a416e86395f2c9d84a5588f4', 'value': 361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1391e1a3570c040000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:48:13.000Z'}}, {'blockNum': '0x8d7635', 'uniqueId': '0x11828d33d091a539f82965c2b58bcee74dc8c50016eb6745fa594ea38b846c27:log:16', 'hash': '0x11828d33d091a539f82965c2b58bcee74dc8c50016eb6745fa594ea38b846c27', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4423.246847521097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xefc8e1947449683142', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T05:54:28.000Z'}}, {'blockNum': '0x8d7635', 'uniqueId': '0x11828d33d091a539f82965c2b58bcee74dc8c50016eb6745fa594ea38b846c27:log:21', 'hash': '0x11828d33d091a539f82965c2b58bcee74dc8c50016eb6745fa594ea38b846c27', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 4423.246847521097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xefc8e1947449683142', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T05:54:28.000Z'}}, {'blockNum': '0x8d7698', 'uniqueId': '0x1bfe84b85baaebdc5fe44d764569a74f2fb53cc4954fa94a21f1c39c658ca2b6:log:101', 'hash': '0x1bfe84b85baaebdc5fe44d764569a74f2fb53cc4954fa94a21f1c39c658ca2b6', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9332.806563527185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f9eeb58a3317ea5da5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:16:35.000Z'}}, {'blockNum': '0x8d7698', 'uniqueId': '0x1bfe84b85baaebdc5fe44d764569a74f2fb53cc4954fa94a21f1c39c658ca2b6:log:106', 'hash': '0x1bfe84b85baaebdc5fe44d764569a74f2fb53cc4954fa94a21f1c39c658ca2b6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 9332.806563527185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f9eeb58a3317ea5da5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:16:35.000Z'}}, {'blockNum': '0x8d769d', 'uniqueId': '0xe132bb4792c636747aaaed7e321f570c100a0cb0b34b5704d7067bfe503cea60:log:57', 'hash': '0xe132bb4792c636747aaaed7e321f570c100a0cb0b34b5704d7067bfe503cea60', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 9332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f9e3840cf1e9500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:18:08.000Z'}}, {'blockNum': '0x8d76a0', 'uniqueId': '0x006f2c13a248102cf1cce569b96658ea9c3c104c6fcc4186e75fb7e89c3a0bdd:log:126', 'hash': '0x006f2c13a248102cf1cce569b96658ea9c3c104c6fcc4186e75fb7e89c3a0bdd', 'from': '0x470a89caaaf2186792e0e6bad1b48032180ad2cf', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:19:42.000Z'}}, {'blockNum': '0x8d76a0', 'uniqueId': '0x006f2c13a248102cf1cce569b96658ea9c3c104c6fcc4186e75fb7e89c3a0bdd:log:128', 'hash': '0x006f2c13a248102cf1cce569b96658ea9c3c104c6fcc4186e75fb7e89c3a0bdd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:19:42.000Z'}}, {'blockNum': '0x8d76c3', 'uniqueId': '0x9d896435107a3fd6f1c9dee9a5dcd811060a5044026289800dcabfa220c078a4:log:19', 'hash': '0x9d896435107a3fd6f1c9dee9a5dcd811060a5044026289800dcabfa220c078a4', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f9e3840cf1e9500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:27:16.000Z'}}, {'blockNum': '0x8d76ef', 'uniqueId': '0x5e73af04c66d4f45268957ee2d3c4b78d2bc997c55af7627856f2154d5ec3d40:log:38', 'hash': '0x5e73af04c66d4f45268957ee2d3c4b78d2bc997c55af7627856f2154d5ec3d40', 'from': '0xeb9026ac08978d42be31454fe14a0cd3ae2aff30', 'to': '0x0c5ad9e1ddb876c748e925c0d3e1d0ec53a302d3', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:37:05.000Z'}}, {'blockNum': '0x8d770a', 'uniqueId': '0xd663e71d97feefd04465975be49f8d660c5eaf7ec9c69174a68aae6cc28c5a62:log:23', 'hash': '0xd663e71d97feefd04465975be49f8d660c5eaf7ec9c69174a68aae6cc28c5a62', 'from': '0xeb9026ac08978d42be31454fe14a0cd3ae2aff30', 'to': '0x0c5ad9e1ddb876c748e925c0d3e1d0ec53a302d3', 'value': 4216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe48cc0deacb6e00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:43:16.000Z'}}, {'blockNum': '0x8d771e', 'uniqueId': '0x7ea2eedb5abe4ab554b87679e24315124a1a83b45f7f70fca46e4a9f9aed26c3:log:5', 'hash': '0x7ea2eedb5abe4ab554b87679e24315124a1a83b45f7f70fca46e4a9f9aed26c3', 'from': '0x0c5ad9e1ddb876c748e925c0d3e1d0ec53a302d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xffa7a5b58fa6300000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:47:11.000Z'}}]}}
Number of returned transfers:  96
Answer is complete
 
symbol             NAV
group              BPF
date        2020-01-16
hour             19:00
exchange       binance
Name: 797, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2020-01-16 19:00:00 2020-01-16 07:00:00 2020-01-17 07:00:00
Unix timestamps:  1579154400.0 1579240800.0
Hex Block Numbers:  0x8dc2cc 0x8ddc4f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              BPF
date        2020-01-20
hour             16:00
exchange       binance
Name: 798, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2020-01-20 16:00:00 2020-01-20 04:00:00 2020-01-21 04:00:00
Unix timestamps:  1579489200.0 1579575600.0
Hex Block Numbers:  0x8e25bd 0x8e3f3a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8e2882', 'uniqueId': '0xa572d94157c52264fc2356e14dc5945de9fd0ab71326086ec313a9873edaa956:log:149', 'hash': '0xa572d94157c52264fc2356e14dc5945de9fd0ab71326086ec313a9873edaa956', 'from': '0x0da6c6466ca0d6467e743729c58b6bc3b9c87bc9', 'to': '0xe0beebec3f0c5c64df0ecae7b198975e17df843d', 'value': 1149.1541207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3e4bb7904c13dcd800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T05:41:58.000Z'}}, {'blockNum': '0x8e2935', 'uniqueId': '0xa4ac1f47a69be8f0dc186d509115ea43484f70d6ec811dfdb34a6e13514ef345:log:28', 'hash': '0xa4ac1f47a69be8f0dc186d509115ea43484f70d6ec811dfdb34a6e13514ef345', 'from': '0x5087ba8368240163c01e43e8f9dd5521cdb71e32', 'to': '0x190c4f6971e5339aa67133829412213650a3ffb8', 'value': 335.60448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x123172a07385b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T06:24:38.000Z'}}, {'blockNum': '0x8e2a65', 'uniqueId': '0x249c99b938f31d59a2fd24dce8c4fac8e9a2772ed856eb06e6ad9be7b3c0db95:log:76', 'hash': '0x249c99b938f31d59a2fd24dce8c4fac8e9a2772ed856eb06e6ad9be7b3c0db95', 'from': '0xf5ba312ac4e1387dc0df053381dc196a0b52ab7d', 'to': '0xc18842d634a683e6ea5392e3f9f23a6966c88371', 'value': 12.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xb2bef3c243080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T07:25:37.000Z'}}, {'blockNum': '0x8e2c36', 'uniqueId': '0x031cc4b6fefb69ef6446a4c0b4da69b1f1b52d1e36523eface1949b5140529ab:log:14', 'hash': '0x031cc4b6fefb69ef6446a4c0b4da69b1f1b52d1e36523eface1949b5140529ab', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x99c84069aa46a128c1f7398931de1d27265a22bf', 'value': 2177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7603f1adc279640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T09:08:14.000Z'}}, {'blockNum': '0x8e2e55', 'uniqueId': '0x90bf9061898700d330b9f93ab64b754934116a1005927af0257293fc33fdb4f5:log:80', 'hash': '0x90bf9061898700d330b9f93ab64b754934116a1005927af0257293fc33fdb4f5', 'from': '0x5f25e34a5d52ef934c3206180a60ce72e36089cb', 'to': '0x37bf0bb626399516fede2d37e11113cdb1ec2623', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T11:07:33.000Z'}}, {'blockNum': '0x8e2e92', 'uniqueId': '0xa8314cbb66830e8ec5d299a83407d9b7388d000f9b2929f0fb66ccfe816aae4a:log:12', 'hash': '0xa8314cbb66830e8ec5d299a83407d9b7388d000f9b2929f0fb66ccfe816aae4a', 'from': '0x37bf0bb626399516fede2d37e11113cdb1ec2623', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T11:23:56.000Z'}}, {'blockNum': '0x8e2fec', 'uniqueId': '0x5129c66768aecbabccf2f5255f133e3781ebd6946e3a6bfb338e74b13f0e6a28:log:56', 'hash': '0x5129c66768aecbabccf2f5255f133e3781ebd6946e3a6bfb338e74b13f0e6a28', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xaed927b9189ef8fa7119f84ee05886d56a35ec76', 'value': 94.27163284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051c481e98703fd000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T12:37:45.000Z'}}, {'blockNum': '0x8e3332', 'uniqueId': '0xd793cff83d1fdc35d56284facc13333f40b1194e5d58f1e607dd116928ce453e:log:135', 'hash': '0xd793cff83d1fdc35d56284facc13333f40b1194e5d58f1e607dd116928ce453e', 'from': '0x50b30b3fcdae176c0a4572db5ab82ad932061464', 'to': '0x50b30b3fcdae176c0a4572db5ab82ad932061464', 'value': 181.13920783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09d1cfbdce02ce5c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T15:47:20.000Z'}}, {'blockNum': '0x8e339f', 'uniqueId': '0x8bed6b79c9996a4fd454b341f9c38ec5c8bd733ccf575b820a90e02f3b668679:log:61', 'hash': '0x8bed6b79c9996a4fd454b341f9c38ec5c8bd733ccf575b820a90e02f3b668679', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb49cfc7064ee90ea416dec0653874df23b355f9c', 'value': 205.37837047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b22328bcd1cecfc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T16:10:53.000Z'}}, {'blockNum': '0x8e33c7', 'uniqueId': '0xccdfbcb2affaade3e6170cde6f39621b0e2173d70e649a001df9e59355122199:log:179', 'hash': '0xccdfbcb2affaade3e6170cde6f39621b0e2173d70e649a001df9e59355122199', 'from': '0x48cfb301a563d6e0d1795b12f7f4b989d426ec6a', 'to': '0x0ed9764a7ded038396988d4b3cd3a65fe66a089d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T16:18:52.000Z'}}, {'blockNum': '0x8e33d7', 'uniqueId': '0x64d820afaf3fe34c938abf9c0e585b792f50d8ac09edf402d225d2caf1c4555c:log:99', 'hash': '0x64d820afaf3fe34c938abf9c0e585b792f50d8ac09edf402d225d2caf1c4555c', 'from': '0x6058585a7350dbc5e92b060ac459d6a4e2120672', 'to': '0x76f40ac7a7a32ff07c8b762adb267471eb1f32c9', 'value': 1900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x66ffcbfd5e5a300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T16:22:43.000Z'}}, {'blockNum': '0x8e34ad', 'uniqueId': '0x2bac343676c746063cd27243f94808b91913a6a8c33deafaec9d51efb4ac30e8:log:16', 'hash': '0x2bac343676c746063cd27243f94808b91913a6a8c33deafaec9d51efb4ac30e8', 'from': '0x32f20cce59da8bab16921e04de482d07c73e9ede', 'to': '0xae700e1e8115c3e686ee34753dd387e905f2ecd3', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T17:06:01.000Z'}}, {'blockNum': '0x8e354f', 'uniqueId': '0x970a92af685d11a1a77afc627097345f09e89403770cf1fbfffe6128c7193496:log:3', 'hash': '0x970a92af685d11a1a77afc627097345f09e89403770cf1fbfffe6128c7193496', 'from': '0x429701e9c55f69e6efdee8ab9920f825da2b9bb3', 'to': '0xd6269ff8b8e1d9eedf3fe435ed2e8123e517c9f5', 'value': 92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04fcc1a89027f00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T17:38:12.000Z'}}, {'blockNum': '0x8e35a0', 'uniqueId': '0xd81eca0233cc05c930bacda0f82b8e7f5abce24849fa54c562eb8990b462312f:log:158', 'hash': '0xd81eca0233cc05c930bacda0f82b8e7f5abce24849fa54c562eb8990b462312f', 'from': '0x6a544e267913dc9a0172f1c7111a66467ae73d08', 'to': '0xdf6156e1e5b0e7a26d26658597faf5684be713f9', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T17:53:52.000Z'}}, {'blockNum': '0x8e3738', 'uniqueId': '0x02edf40d3080280a912aeca5945c21903d76d270594bdacaf2dcb1b05a772f30:log:172', 'hash': '0x02edf40d3080280a912aeca5945c21903d76d270594bdacaf2dcb1b05a772f30', 'from': '0xd5176ccdfd0f88bb065b01333468bb3143ae52a3', 'to': '0x4ec85bd869dc657a0f54c2ac72185e7329ddbdb1', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T19:29:57.000Z'}}, {'blockNum': '0x8e37af', 'uniqueId': '0x325e8bdff8c48a85bd535120bf664a2e5394ed8552fa6e87158683c24a67c939:log:1', 'hash': '0x325e8bdff8c48a85bd535120bf664a2e5394ed8552fa6e87158683c24a67c939', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 156.81224326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x088035006b08715800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T19:59:07.000Z'}}, {'blockNum': '0x8e37c7', 'uniqueId': '0x57f5811c672005b0b2bc0bd5473bc8c353740016d0d2a406500aa4ddd88bfb4a:log:53', 'hash': '0x57f5811c672005b0b2bc0bd5473bc8c353740016d0d2a406500aa4ddd88bfb4a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x73d361632c8da76159e65e917242735cdca8e8a9', 'value': 156.81224326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x088035006b08715800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T20:04:50.000Z'}}, {'blockNum': '0x8e39cb', 'uniqueId': '0x993411dc64cadffffff0177ec76685632fd4a2cc181032a174d4b29b1f8c5a4c:log:25', 'hash': '0x993411dc64cadffffff0177ec76685632fd4a2cc181032a174d4b29b1f8c5a4c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x66c060b745850516853be76532f1249496c84e84', 'value': 47.47820418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0292e47726c25dc800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T21:53:51.000Z'}}, {'blockNum': '0x8e3aa0', 'uniqueId': '0x883e55c53ed7295fc751ebe9b838578c6b43ddcd005d3e797117b89784656fc3:log:3', 'hash': '0x883e55c53ed7295fc751ebe9b838578c6b43ddcd005d3e797117b89784656fc3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcc68b68e4cab4375601242d72580df365def28db', 'value': 100.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05760c6041b0da0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T22:40:49.000Z'}}, {'blockNum': '0x8e3ba1', 'uniqueId': '0xa883d026c64162dbc2b311792c278227bfab42b27cd931850044ff87a8916d72:log:25', 'hash': '0xa883d026c64162dbc2b311792c278227bfab42b27cd931850044ff87a8916d72', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x02b3217f80d7d0a0548458f08fbf9cd7bf648d7e', 'value': 93.87841075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0516d31d301ff66c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T23:37:09.000Z'}}, {'blockNum': '0x8e3e33', 'uniqueId': '0x756f701c7a5871e37c3e224269012910c67795992cbd1eed51298807265a2409:log:113', 'hash': '0x756f701c7a5871e37c3e224269012910c67795992cbd1eed51298807265a2409', 'from': '0xf7e1aa050035fc99bcaff7a95d052127dc618621', 'to': '0xfb439895a2e9261d25236c8ede0195b769f443bc', 'value': 1034.0147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x380dd62b34901ac000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:02:49.000Z'}}, {'blockNum': '0x8e3ed1', 'uniqueId': '0x7ac36e5493200c802f907494905cf3aa3a3f94be675d4df19e0d84b37a19c59b:log:164', 'hash': '0x7ac36e5493200c802f907494905cf3aa3a3f94be675d4df19e0d84b37a19c59b', 'from': '0x50b30b3fcdae176c0a4572db5ab82ad932061464', 'to': '0x7d059de737bf54d4ce2816c5a39c4971a13bfa77', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:35:25.000Z'}}, {'blockNum': '0x8e3ed4', 'uniqueId': '0xed33c56cce2250bf46cd6e9535d9aa48ffee384708e051e7d9b61952983af248:log:68', 'hash': '0xed33c56cce2250bf46cd6e9535d9aa48ffee384708e051e7d9b61952983af248', 'from': '0x7d059de737bf54d4ce2816c5a39c4971a13bfa77', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:35:50.000Z'}}, {'blockNum': '0x8e3efc', 'uniqueId': '0x4f40c24ee4592aa75383ec7847f2b7f344ed32b051636fa416ec515f3134700e:log:13', 'hash': '0x4f40c24ee4592aa75383ec7847f2b7f344ed32b051636fa416ec515f3134700e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x12290f15180bdc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:43:33.000Z'}}, {'blockNum': '0x8e3f01', 'uniqueId': '0xcd9c13066777560f7adf9bd8c9f71d3678a4955ebb776b3c079fe669e748c3be:log:24', 'hash': '0xcd9c13066777560f7adf9bd8c9f71d3678a4955ebb776b3c079fe669e748c3be', 'from': '0xfb439895a2e9261d25236c8ede0195b769f443bc', 'to': '0xd55e158ba7d2fb70c06b39ce81be23faecd5e56a', 'value': 1034.0147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x380dd62b34901ac000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:45:20.000Z'}}, {'blockNum': '0x8e3f20', 'uniqueId': '0x133ffae5df2ba64f526634ef91fba639e28975d3d807c629f5502a04af4acc87:log:46', 'hash': '0x133ffae5df2ba64f526634ef91fba639e28975d3d807c629f5502a04af4acc87', 'from': '0xd55e158ba7d2fb70c06b39ce81be23faecd5e56a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1034.0147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x380dd62b34901ac000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:53:05.000Z'}}]}}
Number of returned transfers:  26
Answer is complete
 
symbol             NXS
group              BPF
date        2020-01-20
hour             19:00
exchange       binance
Name: 799, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-01-20 19:00:00 2020-01-20 07:00:00 2020-01-21 07:00:00
Unix timestamps:  1579500000.0 1579586400.0
Hex Block Numbers:  0x8e28c4 0x8e4264
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            NULS
group              BPF
date        2020-01-30
hour             17:00
exchange       binance
Name: 800, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NULS, Contract: 
Datetime timestamps:  2020-01-30 17:00:00 2020-01-30 05:00:00 2020-01-31 05:00:00
Unix timestamps:  1580356800.0 1580443200.0
Hex Block Numbers:  0x8f259e 0x8f3eca
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RDN
group              BPF
date        2020-02-01
hour             13:00
exchange       binance
Name: 802, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-02-01 13:00:00 2020-02-01 01:00:00 2020-02-02 01:00:00
Unix timestamps:  1580515200.0 1580601600.0
Hex Block Numbers:  0x8f5402 0x8f6d5a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8f5492', 'uniqueId': '0x22f112962063ffc771c21e3a2ca7cdf1eb407bc24fd9aac36b1b74b1a1475f53:log:1', 'hash': '0x22f112962063ffc771c21e3a2ca7cdf1eb407bc24fd9aac36b1b74b1a1475f53', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T00:32:20.000Z'}}, {'blockNum': '0x8f54c6', 'uniqueId': '0x585d66fab4b88dd0e701a1c3e4a702d69656dbc099efd226eee5eecdcc49a7d1:log:11', 'hash': '0x585d66fab4b88dd0e701a1c3e4a702d69656dbc099efd226eee5eecdcc49a7d1', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T00:43:55.000Z'}}, {'blockNum': '0x8f553e', 'uniqueId': '0xc2469904ea686463a396a496e30260120c1a20016072dbb97647f8ac6e24d9ce:log:0', 'hash': '0xc2469904ea686463a396a496e30260120c1a20016072dbb97647f8ac6e24d9ce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0336a7c64e142eafdcfe633e454fa8f28058e599', 'value': 4778.899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0103108bd8ced57b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:10:30.000Z'}}, {'blockNum': '0x8f5584', 'uniqueId': '0x98fed7fbdb9f0e2af4d39bae4c5104347de1a6a10da3398ab414f2c807714cd2:log:31', 'hash': '0x98fed7fbdb9f0e2af4d39bae4c5104347de1a6a10da3398ab414f2c807714cd2', 'from': '0x0336a7c64e142eafdcfe633e454fa8f28058e599', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 4778.899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0103108bd8ced57b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:25:51.000Z'}}, {'blockNum': '0x8f55b7', 'uniqueId': '0xb4d18a459833b37b44effc439a5a01f357e78f7d6cc8094cb542852628123bb1:log:0', 'hash': '0xb4d18a459833b37b44effc439a5a01f357e78f7d6cc8094cb542852628123bb1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1d87155635b6bfabe547efc72b72da6bf0eac7f6', 'value': 18935.2293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04027b1825349c7b4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:37:24.000Z'}}, {'blockNum': '0x8f55dc', 'uniqueId': '0x98fe0918f8e440450a1de4c4eb27d70d9a4ffd3e9f9ca2a18c0b912ddc87c981:log:118', 'hash': '0x98fe0918f8e440450a1de4c4eb27d70d9a4ffd3e9f9ca2a18c0b912ddc87c981', 'from': '0x1d87155635b6bfabe547efc72b72da6bf0eac7f6', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 18935.2293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04027b1825349c7b4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:45:22.000Z'}}, {'blockNum': '0x8f5610', 'uniqueId': '0x903be76a878ae9e6a0b99efdac8c0d36fcdc0af6481935f7199f04b6a3af3371:log:1', 'hash': '0x903be76a878ae9e6a0b99efdac8c0d36fcdc0af6481935f7199f04b6a3af3371', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 38183.79450123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0815f299087477fecc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:56:28.000Z'}}, {'blockNum': '0x8f5612', 'uniqueId': '0x350ae1e0b86d07a0c0e54e90517f0efd25e14f1892f77defba615c6fb6c4ca9d:log:2', 'hash': '0x350ae1e0b86d07a0c0e54e90517f0efd25e14f1892f77defba615c6fb6c4ca9d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 3967.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd70f208b31032a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:57:01.000Z'}}, {'blockNum': '0x8f562b', 'uniqueId': '0x1dcd0788a7f9ec042b161a976a4b079e2bc944663abe41bb2a614461fdb8ff57:log:2', 'hash': '0x1dcd0788a7f9ec042b161a976a4b079e2bc944663abe41bb2a614461fdb8ff57', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38183.79450123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0815f299087477fecc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:04:26.000Z'}}, {'blockNum': '0x8f563c', 'uniqueId': '0x9f2d226d3dbd8bb107a6be580ffd797a14c561a9866b8fd739a689aedc956865:log:1', 'hash': '0x9f2d226d3dbd8bb107a6be580ffd797a14c561a9866b8fd739a689aedc956865', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19729.4384217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042d88f5c17dcbf6a800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:08:42.000Z'}}, {'blockNum': '0x8f565b', 'uniqueId': '0xc7b2bd5caded6f75aaffefc87cfe48c575b9fcbf3db86988c7d526e249042cb2:log:35', 'hash': '0xc7b2bd5caded6f75aaffefc87cfe48c575b9fcbf3db86988c7d526e249042cb2', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3967.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd70f208b31032a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:14:42.000Z'}}, {'blockNum': '0x8f565c', 'uniqueId': '0x04697fb0eb7a2718aca4ccb8bdb544d3d28354974d5e7c288a0339bd4842dce3:log:0', 'hash': '0x04697fb0eb7a2718aca4ccb8bdb544d3d28354974d5e7c288a0339bd4842dce3', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19729.4384217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042d88f5c17dcbf6a800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:15:07.000Z'}}, {'blockNum': '0x8f566d', 'uniqueId': '0x8efe72ac3e4ecfbd2f99d4af6932c730818db26c4104d3d2cf51bee81c1d8765:log:0', 'hash': '0x8efe72ac3e4ecfbd2f99d4af6932c730818db26c4104d3d2cf51bee81c1d8765', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:18:14.000Z'}}, {'blockNum': '0x8f566d', 'uniqueId': '0x1956be6093df894870f0c72265bd2f6d28a08d86d1bc3e1dab928e3c8dcc682b:log:1', 'hash': '0x1956be6093df894870f0c72265bd2f6d28a08d86d1bc3e1dab928e3c8dcc682b', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6cec9a87af46e3607278075a0a38dbc64b4e1e9d', 'value': 9999.9811693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e199de34eb1e0c800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:18:14.000Z'}}, {'blockNum': '0x8f5688', 'uniqueId': '0xa9ec616305bdd8bbfe5da23e4a6aeeb692355718e346c1384e3edd076a85f31b:log:47', 'hash': '0xa9ec616305bdd8bbfe5da23e4a6aeeb692355718e346c1384e3edd076a85f31b', 'from': '0x6cec9a87af46e3607278075a0a38dbc64b4e1e9d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9999.9811693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e199de34eb1e0c800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:24:01.000Z'}}, {'blockNum': '0x8f5688', 'uniqueId': '0x117ac5d706038616c6884535297d0b31a2794f06153b1c793f342a1ad974385a:log:50', 'hash': '0x117ac5d706038616c6884535297d0b31a2794f06153b1c793f342a1ad974385a', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:24:01.000Z'}}, {'blockNum': '0x8f5ed8', 'uniqueId': '0x4797a4c1c2e88aaa9d4287ef9e40bc82c3b1e4f5f94bf01a2d1a38073d49532d:log:1', 'hash': '0x4797a4c1c2e88aaa9d4287ef9e40bc82c3b1e4f5f94bf01a2d1a38073d49532d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 12111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029089e35d2c03dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:11:24.000Z'}}, {'blockNum': '0x8f5ed8', 'uniqueId': '0x9d9d79eacb3239d3149289b36c93ab2a7093b8b84a54c5c4670fc90675e8f317:log:2', 'hash': '0x9d9d79eacb3239d3149289b36c93ab2a7093b8b84a54c5c4670fc90675e8f317', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:11:24.000Z'}}, {'blockNum': '0x8f5ed8', 'uniqueId': '0x8cd31b04b508b2e09c37bbc783b6e0e10beb68faeb732b181a24052d40b77660:log:3', 'hash': '0x8cd31b04b508b2e09c37bbc783b6e0e10beb68faeb732b181a24052d40b77660', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4503.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf41f25dfc249d50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:11:24.000Z'}}, {'blockNum': '0x8f5ed8', 'uniqueId': '0xcf19d118073b2b7c6c4938f42abb75411b4d536f10f55c7d5006cb2d7a7bf499:log:4', 'hash': '0xcf19d118073b2b7c6c4938f42abb75411b4d536f10f55c7d5006cb2d7a7bf499', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 19402.58043968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x041bd0e4ee9cacd90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:11:24.000Z'}}, {'blockNum': '0x8f5efd', 'uniqueId': '0xb835ff7eaf0337dcd9eff3c8ae88451c6b3fd0f7b8aeb08613396d05420d3da5:log:0', 'hash': '0xb835ff7eaf0337dcd9eff3c8ae88451c6b3fd0f7b8aeb08613396d05420d3da5', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 3800.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xce0d0e1c990c810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:19:59.000Z'}}, {'blockNum': '0x8f5f13', 'uniqueId': '0x764e5de7c6c72a4e0ce71c78527d6eb69c9533d60db07ef30968d08355bbd1d3:log:32', 'hash': '0x764e5de7c6c72a4e0ce71c78527d6eb69c9533d60db07ef30968d08355bbd1d3', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029089e35d2c03dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:23:59.000Z'}}, {'blockNum': '0x8f5f13', 'uniqueId': '0xb6b18472db3cbd1c1495cb670aaa3bc4ee8244e640bf0cc5c0ea4bbdced61319:log:33', 'hash': '0xb6b18472db3cbd1c1495cb670aaa3bc4ee8244e640bf0cc5c0ea4bbdced61319', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19402.58043968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x041bd0e4ee9cacd90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:23:59.000Z'}}, {'blockNum': '0x8f5f13', 'uniqueId': '0xc282cd8a396671c36ea3c13df411a655230c3d79f96168d253f4d9ce7c479001:log:36', 'hash': '0xc282cd8a396671c36ea3c13df411a655230c3d79f96168d253f4d9ce7c479001', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:23:59.000Z'}}, {'blockNum': '0x8f5f13', 'uniqueId': '0x174a68a2764a0013f9437d80b7a8fd3040c5d178b4603e71121fc553afe5447a:log:42', 'hash': '0x174a68a2764a0013f9437d80b7a8fd3040c5d178b4603e71121fc553afe5447a', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8304.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c22c33fc5b56560000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:23:59.000Z'}}, {'blockNum': '0x8f5f5a', 'uniqueId': '0x39738f2a9975c47d7a13f3650bb8c09567bbfd630568bba4c13a20dcd5d25bd9:log:17', 'hash': '0x39738f2a9975c47d7a13f3650bb8c09567bbfd630568bba4c13a20dcd5d25bd9', 'from': '0xdc5680ffa94a83b297d78952fb0a766df40f196a', 'to': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:38:24.000Z'}}, {'blockNum': '0x8f5f9a', 'uniqueId': '0xb09fc38746d7e756fa63b60cea66d73d8f4c825f8973851aa87549e37cd269f3:log:62', 'hash': '0xb09fc38746d7e756fa63b60cea66d73d8f4c825f8973851aa87549e37cd269f3', 'from': '0x30216cc74cc4cebe96ebd7ed64d39e5cb89ed3a2', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 6667.6712185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01697486be63bc77a800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:55:23.000Z'}}, {'blockNum': '0x8f5fea', 'uniqueId': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00:log:193', 'hash': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 361.28276363866036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1395ce375f09c38c21', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:10:43.000Z'}}, {'blockNum': '0x8f5fea', 'uniqueId': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00:log:195', 'hash': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 361.28276363866036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1395ce375f09c38c21', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:10:43.000Z'}}, {'blockNum': '0x8f5fea', 'uniqueId': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00:log:196', 'hash': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 361.28276363866036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1395ce375f09c38c21', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:10:43.000Z'}}, {'blockNum': '0x8f6007', 'uniqueId': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812:log:53', 'hash': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 595.0204727963962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2041915f746a2e263c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:20:14.000Z'}}, {'blockNum': '0x8f6007', 'uniqueId': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812:log:58', 'hash': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 595.0204727963962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2041915f746a2e263c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:20:14.000Z'}}, {'blockNum': '0x8f6007', 'uniqueId': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812:log:59', 'hash': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 594.9723149594536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2040e648283e0fe6e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:20:14.000Z'}}, {'blockNum': '0x8f6007', 'uniqueId': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812:log:60', 'hash': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 594.9723149594536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2040e648283e0fe6e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:20:14.000Z'}}, {'blockNum': '0x8f607a', 'uniqueId': '0x743d157fb0a3dd6603db6c879a213fe173695191da11afa428328d76a54bb8eb:log:3', 'hash': '0x743d157fb0a3dd6603db6c879a213fe173695191da11afa428328d76a54bb8eb', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:47:18.000Z'}}, {'blockNum': '0x8f607a', 'uniqueId': '0xc736e03f5a8a00e3ce70c4d24d728469f45599071dfaaadaa171cd819f61c6e5:log:4', 'hash': '0xc736e03f5a8a00e3ce70c4d24d728469f45599071dfaaadaa171cd819f61c6e5', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 37982.20332759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x080b04f5501aedb47c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:47:18.000Z'}}, {'blockNum': '0x8f607a', 'uniqueId': '0x63517a855935ebaa379c7338b961d880d54ee4a6642d064674eb53ede63377fe:log:5', 'hash': '0x63517a855935ebaa379c7338b961d880d54ee4a6642d064674eb53ede63377fe', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4484.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf3205a0d08cda90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:47:18.000Z'}}, {'blockNum': '0x8f608e', 'uniqueId': '0x9b498c4fb8c494433a4d057acb6015e911bd02662d844336e8c883cb07a3d7a9:log:14', 'hash': '0x9b498c4fb8c494433a4d057acb6015e911bd02662d844336e8c883cb07a3d7a9', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:54:10.000Z'}}, {'blockNum': '0x8f608e', 'uniqueId': '0x84e126dd3faa36524034a1d8d22450e7a4f817af37d6293051cc92f78c893475:log:16', 'hash': '0x84e126dd3faa36524034a1d8d22450e7a4f817af37d6293051cc92f78c893475', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4484.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf3205a0d08cda90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:54:10.000Z'}}, {'blockNum': '0x8f608e', 'uniqueId': '0x72510a69ec67b14408f638933c59d43fdf3a3284cf50f6b4505c217c8989d7c7:log:17', 'hash': '0x72510a69ec67b14408f638933c59d43fdf3a3284cf50f6b4505c217c8989d7c7', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37982.20332759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x080b04f5501aedb47c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:54:10.000Z'}}, {'blockNum': '0x8f6091', 'uniqueId': '0x7c146affa62188363ccc0fdfdd4a4abe1aad17c4b1c886239227fcfe97dc275c:log:6', 'hash': '0x7c146affa62188363ccc0fdfdd4a4abe1aad17c4b1c886239227fcfe97dc275c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19668.6408589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042a3d396c3e7c75c800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:56:09.000Z'}}, {'blockNum': '0x8f609a', 'uniqueId': '0xec122fcade7233a9e087db4c356143ed89def9d93ab97d521f84891a12b59f6d:log:0', 'hash': '0xec122fcade7233a9e087db4c356143ed89def9d93ab97d521f84891a12b59f6d', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19668.6408589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042a3d396c3e7c75c800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:58:19.000Z'}}, {'blockNum': '0x8f60be', 'uniqueId': '0xf932c609c624598032ea6f13e6d2cdeaf405b0d8e2984a13205947b58baff92e:log:2', 'hash': '0xf932c609c624598032ea6f13e6d2cdeaf405b0d8e2984a13205947b58baff92e', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:06:37.000Z'}}, {'blockNum': '0x8f60be', 'uniqueId': '0xc88f043bf22cb3c448536ebcdb79da4242178d30a350ef6045c29529af592e6b:log:3', 'hash': '0xc88f043bf22cb3c448536ebcdb79da4242178d30a350ef6045c29529af592e6b', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 12110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02907c02a6785c780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:06:37.000Z'}}, {'blockNum': '0x8f60e4', 'uniqueId': '0xda311ab4db9ce5e056734556363ad9c90d8ddb9db451faa395db507b55959b85:log:19', 'hash': '0xda311ab4db9ce5e056734556363ad9c90d8ddb9db451faa395db507b55959b85', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02907c02a6785c780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:14:00.000Z'}}, {'blockNum': '0x8f60e4', 'uniqueId': '0x7b58c6fc895ec0a5a2894bb1c274bb28da816b9d682d5918393d0a9e2952b40a:log:20', 'hash': '0x7b58c6fc895ec0a5a2894bb1c274bb28da816b9d682d5918393d0a9e2952b40a', 'from': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:14:00.000Z'}}, {'blockNum': '0x8f60f7', 'uniqueId': '0xd1748b4f0a7437486c7259a677bcc2fb1687042a55bf513e810a1a141188e49f:log:27', 'hash': '0xd1748b4f0a7437486c7259a677bcc2fb1687042a55bf513e810a1a141188e49f', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0x5730031c1ea817f3d9ebec0e109fc1987ec41d6e', 'value': 3083.7869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa72c23e6f25f0d4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:19:44.000Z'}}, {'blockNum': '0x8f61b1', 'uniqueId': '0xe97ab758b27f08f869876b0c080801381a0dac72fe26519fd9d8ddece25437c9:log:0', 'hash': '0xe97ab758b27f08f869876b0c080801381a0dac72fe26519fd9d8ddece25437c9', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 3061.3738230942604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa5f518a84024ee8c74', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:08.000Z'}}, {'blockNum': '0x8f61b1', 'uniqueId': '0x0699648f36873a70bb9f65915907dc9792748431bb1f9bdad9a3f36bd6f8f59d:log:5', 'hash': '0x0699648f36873a70bb9f65915907dc9792748431bb1f9bdad9a3f36bd6f8f59d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2817.6519128844634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x98bec67e357257d0b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:08.000Z'}}, {'blockNum': '0x8f61b1', 'uniqueId': '0x0699648f36873a70bb9f65915907dc9792748431bb1f9bdad9a3f36bd6f8f59d:log:7', 'hash': '0x0699648f36873a70bb9f65915907dc9792748431bb1f9bdad9a3f36bd6f8f59d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2817.6519128844634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x98bec67e357257d0b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:08.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0x74acb01dadfc6920787bc4a22944cb269faa5d1f84c119a61af6bf3279a7a8d2:log:1', 'hash': '0x74acb01dadfc6920787bc4a22944cb269faa5d1f84c119a61af6bf3279a7a8d2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2611.1168464743278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8d8c868994147ad290', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1:log:14', 'hash': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1422.3635483932262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d1b426f42325fd95e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1:log:19', 'hash': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1422.3635483932262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d1b426f42325fd95e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1:log:20', 'hash': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1422.5857374256464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d1e57cf01a0c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765:log:157', 'hash': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2828.9507375775293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x995b93fb6743eeb698', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765:log:159', 'hash': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'value': 2828.9507375775293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x995b93fb6743eeb698', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765:log:164', 'hash': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765', 'from': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 2828.9507375775293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x995b93fb6743eeb698', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b3', 'uniqueId': '0x4403a79fdee1431956a952153c925baf4f6201fa6fb4235c436bb158395c03de:log:188', 'hash': '0x4403a79fdee1431956a952153c925baf4f6201fa6fb4235c436bb158395c03de', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 969.5644606282488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x348f68ebf7fdf9abeb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:09.000Z'}}, {'blockNum': '0x8f61b3', 'uniqueId': '0x4403a79fdee1431956a952153c925baf4f6201fa6fb4235c436bb158395c03de:log:193', 'hash': '0x4403a79fdee1431956a952153c925baf4f6201fa6fb4235c436bb158395c03de', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 969.5644606282488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x348f68ebf7fdf9abeb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:09.000Z'}}, {'blockNum': '0x8f61b5', 'uniqueId': '0xd4069cc7ffec7b1447c86c8c99747a9b5a1221102dc305b5f047ef631a35c897:log:0', 'hash': '0xd4069cc7ffec7b1447c86c8c99747a9b5a1221102dc305b5f047ef631a35c897', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 8241.18198102147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01bec15ff415e6afa63f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:33.000Z'}}, {'blockNum': '0x8f61b5', 'uniqueId': '0x0535ea22450f2a2795c21210b5f55059b35166f7fb8c73ea0156509fbc7639aa:log:2', 'hash': '0x0535ea22450f2a2795c21210b5f55059b35166f7fb8c73ea0156509fbc7639aa', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 3061.3738230942604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa5f518a84024ee8c74', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:33.000Z'}}, {'blockNum': '0x8f61b5', 'uniqueId': '0xa3b6df6c7e2d3b3d1a2fcd967e317759cf6289bfae192c6998f4f77d9849600b:log:12', 'hash': '0xa3b6df6c7e2d3b3d1a2fcd967e317759cf6289bfae192c6998f4f77d9849600b', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3487938e0499840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:33.000Z'}}, {'blockNum': '0x8f61b5', 'uniqueId': '0x65fc40ec1337d501c4164bd96a792b2119a27b57eb6ccb639d5fd02360f185d6:log:13', 'hash': '0x65fc40ec1337d501c4164bd96a792b2119a27b57eb6ccb639d5fd02360f185d6', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 5428.768759358792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01264b4d07c986d2a340', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:33.000Z'}}, {'blockNum': '0x8f61b6', 'uniqueId': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67:log:11', 'hash': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2356.890813040764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7fc46e3b1e2c53eda5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:45.000Z'}}, {'blockNum': '0x8f61b6', 'uniqueId': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67:log:16', 'hash': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 2356.890813040764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7fc46e3b1e2c53eda5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:45.000Z'}}, {'blockNum': '0x8f61b6', 'uniqueId': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67:log:18', 'hash': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 2356.890813040764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7fc46e3b1e2c53eda5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:45.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0x77cb6fd6e7c4e11b424386da9f7e05b4fc372a8dfd8a22e9fb572e254cb29011:log:28', 'hash': '0x77cb6fd6e7c4e11b424386da9f7e05b4fc372a8dfd8a22e9fb572e254cb29011', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 5428.768759358792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01264b4d07c986d2a340', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0x0427778c4ba41ddc9f4a4ae8f446b933097310fc8bba611c8653e86b58ca145e:log:29', 'hash': '0x0427778c4ba41ddc9f4a4ae8f446b933097310fc8bba611c8653e86b58ca145e', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2541.390791356247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x89c4e1d3df7dfc2811', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8:log:134', 'hash': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8:log:136', 'hash': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x01da73c4ec1355f953ad0aaca3ef20e342aea92a', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8:log:142', 'hash': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8', 'from': '0x01da73c4ec1355f953ad0aaca3ef20e342aea92a', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94:log:36', 'hash': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 656.3935593604075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23954a6084235de179', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94:log:41', 'hash': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 656.3935593604075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23954a6084235de179', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94:log:42', 'hash': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 656.3935593604075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23954a6084235de179', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xeec4b833dcce68e007f4af6e5acd5ace765c12903725934da69d3a726c7d0df7:log:44', 'hash': '0xeec4b833dcce68e007f4af6e5acd5ace765c12903725934da69d3a726c7d0df7', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1261.8044970789997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x44670e18c44031839c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44:log:58', 'hash': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 649.0852084928102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x232fdde61f9650b6a6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44:log:63', 'hash': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 649.0852084928102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x232fdde61f9650b6a6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44:log:64', 'hash': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 649.0852084928102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x232fdde61f9650b6a6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xd135736a43a690b4d26d0954b5aeae9f5396a62afbedf5cce61c370cf798ecd4:log:0', 'hash': '0xd135736a43a690b4d26d0954b5aeae9f5396a62afbedf5cce61c370cf798ecd4', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2452.764361209665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x84f6f17f37b7fc3740', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346:log:13', 'hash': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1591.7799014482475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x564a623ac17d1742e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346:log:18', 'hash': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 1591.7799014482475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x564a623ac17d1742e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346:log:20', 'hash': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1591.7799014482475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x564a623ac17d1742e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xdd999e64337f15e629a5370abf32681eb747e5503a70f612deb372d7c8e0ab79:log:35', 'hash': '0xdd999e64337f15e629a5370abf32681eb747e5503a70f612deb372d7c8e0ab79', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 5353.804013018926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01223af4c02bddd92b10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x747b27d90a50bc3972d384ee24ac8b0ec7874cc7967eecf862df17e210d6e3b0:log:89', 'hash': '0x747b27d90a50bc3972d384ee24ac8b0ec7874cc7967eecf862df17e210d6e3b0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 7167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0184861aef9b489c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xec0a714c9768dbd75220a3a0fe88c44af421da0e24014749bc529173074ed874:log:106', 'hash': '0xec0a714c9768dbd75220a3a0fe88c44af421da0e24014749bc529173074ed874', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1219.3554604844267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4219f4d2e3731c5aed', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece:log:140', 'hash': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece:log:142', 'hash': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece:log:147', 'hash': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151:log:159', 'hash': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151:log:161', 'hash': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151:log:166', 'hash': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x55388dc4277867ee3b9adfa3f3bf4b4f619aeda0389b26fca0231a259020d77d:log:9', 'hash': '0x55388dc4277867ee3b9adfa3f3bf4b4f619aeda0389b26fca0231a259020d77d', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 2452.764361209665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x84f6f17f37b7fc3740', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x4c252c1877aac2fd93027a856f9dbf064ee0a785e0f926847e6fe146d2a37dec:log:18', 'hash': '0x4c252c1877aac2fd93027a856f9dbf064ee0a785e0f926847e6fe146d2a37dec', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 499.5697117706035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b14ec260587198517', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x12646eda99adcab879e075d65730da4a24139059b68273053557dd15d262d691:log:33', 'hash': '0x12646eda99adcab879e075d65730da4a24139059b68273053557dd15d262d691', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1223.8609468226473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42587b86d78d2049ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41:log:41', 'hash': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 545.0165144538103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d8b9fa04644e9e139', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41:log:46', 'hash': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'value': 545.0165144538103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d8b9fa04644e9e139', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41:log:48', 'hash': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41', 'from': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 545.0165144538103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d8b9fa04644e9e139', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61be', 'uniqueId': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda:log:88', 'hash': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 295.3347770444899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x100297e6f8a40224b4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:03:00.000Z'}}, {'blockNum': '0x8f61be', 'uniqueId': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda:log:93', 'hash': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 295.3347770444899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x100297e6f8a40224b4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:03:00.000Z'}}, {'blockNum': '0x8f61be', 'uniqueId': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda:log:94', 'hash': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 295.3347656327517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x100297dc97a3690000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:03:00.000Z'}}, {'blockNum': '0x8f61c2', 'uniqueId': '0x5a194038a2ec96af1f6a2c3f3eb973192a8be1050d02bc66bb436a4a172776a3:log:17', 'hash': '0x5a194038a2ec96af1f6a2c3f3eb973192a8be1050d02bc66bb436a4a172776a3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 4654.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xfc5317d98c0f9d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:01.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x8d875d1cca7005f92d3bdbdeaaae5cefd8bbcd6c4e6e3696585bc5039a2f4dd5:log:0', 'hash': '0x8d875d1cca7005f92d3bdbdeaaae5cefd8bbcd6c4e6e3696585bc5039a2f4dd5', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2391.683128676547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x81a7455dd9dc6faf33', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf:log:20', 'hash': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 533.6529977428285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cedec4e0847a0bd04', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf:log:25', 'hash': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'value': 533.6529977428285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cedec4e0847a0bd04', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf:log:27', 'hash': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf', 'from': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 533.6529977428285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cedec4e0847a0bd04', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x6e922eafc6b6f0e30db3dddf670c9f049c0c91371584099b67f61e627a04c334:log:61', 'hash': '0x6e922eafc6b6f0e30db3dddf670c9f049c0c91371584099b67f61e627a04c334', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 379.74425065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14960297feb2268400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c5', 'uniqueId': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160:log:11', 'hash': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 842.0032322254481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2da5246695b091cbc0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:41.000Z'}}, {'blockNum': '0x8f61c5', 'uniqueId': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160:log:16', 'hash': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 842.0032322254481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2da5246695b091cbc0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:41.000Z'}}, {'blockNum': '0x8f61c5', 'uniqueId': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160:log:17', 'hash': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 842.0767880259197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2da629b9320eda0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:41.000Z'}}, {'blockNum': '0x8f61c5', 'uniqueId': '0xb69b0ee91dea3d770d0d9b6ba4957cd7aaae9b787f68034038620136ebe00979:log:37', 'hash': '0xb69b0ee91dea3d770d0d9b6ba4957cd7aaae9b787f68034038620136ebe00979', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 2391.683128676547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x81a7455dd9dc6faf33', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:41.000Z'}}, {'blockNum': '0x8f61c6', 'uniqueId': '0x14fc3edde23a8ab5ffe53e129c1ae875725483be5cd6e50fc541df4a24d69220:log:4', 'hash': '0x14fc3edde23a8ab5ffe53e129c1ae875725483be5cd6e50fc541df4a24d69220', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3952.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd64697d4c036c50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:52.000Z'}}, {'blockNum': '0x8f61c9', 'uniqueId': '0x532d4338ddb412cdff5909c1de996ef79a56867887b6a50ff9b7f19152c966f7:log:71', 'hash': '0x532d4338ddb412cdff5909c1de996ef79a56867887b6a50ff9b7f19152c966f7', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 839.3031443654762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d7fabc2fb549a8339', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:05:25.000Z'}}, {'blockNum': '0x8f61c9', 'uniqueId': '0x532d4338ddb412cdff5909c1de996ef79a56867887b6a50ff9b7f19152c966f7:log:76', 'hash': '0x532d4338ddb412cdff5909c1de996ef79a56867887b6a50ff9b7f19152c966f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 839.3031443654762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d7fabc2fb549a8339', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:05:25.000Z'}}, {'blockNum': '0x8f61cb', 'uniqueId': '0x1d0d65d2ff6cff5ac0cd17102f5f9056747914c28da3c4cb0483d76494e8ad0d:log:4', 'hash': '0x1d0d65d2ff6cff5ac0cd17102f5f9056747914c28da3c4cb0483d76494e8ad0d', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d7b76c6c998bc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:05:48.000Z'}}, {'blockNum': '0x8f61cf', 'uniqueId': '0x4387cbf54ed4837e700e90ffb1a957594158cdb377c17423d53cbe6fe8889cc6:log:2', 'hash': '0x4387cbf54ed4837e700e90ffb1a957594158cdb377c17423d53cbe6fe8889cc6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 7413.3638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0191e116fa6a4bfd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:06:39.000Z'}}, {'blockNum': '0x8f61d0', 'uniqueId': '0x5d6f9246ff92a392138f6c4727208ac1a22ae34baabda94bd615c3c502c4a0f6:log:4', 'hash': '0x5d6f9246ff92a392138f6c4727208ac1a22ae34baabda94bd615c3c502c4a0f6', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 19995.6313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043bf720d5f476404000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:06:45.000Z'}}, {'blockNum': '0x8f61d2', 'uniqueId': '0x64f4e40398b6456b2376fa867bb6bbe7e63143ba7f2ef493dc50dec1c9627dfd:log:11', 'hash': '0x64f4e40398b6456b2376fa867bb6bbe7e63143ba7f2ef493dc50dec1c9627dfd', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x0f0e13770e415e86e99385fde42a7f28faa1e645', 'value': 1929.94752461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x689f66f85523819400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:07:04.000Z'}}, {'blockNum': '0x8f61d7', 'uniqueId': '0x791131f04da6df4206a97bfb75fb92f12b0bd6ca146ec1bcd99bbc8e4242fdef:log:15', 'hash': '0x791131f04da6df4206a97bfb75fb92f12b0bd6ca146ec1bcd99bbc8e4242fdef', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 19995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043bee5e01f31f8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:08:28.000Z'}}, {'blockNum': '0x8f61d7', 'uniqueId': '0x61255a32b711e746c47b18759fdc906685c09b963294acd0c169638fd61d4660:log:16', 'hash': '0x61255a32b711e746c47b18759fdc906685c09b963294acd0c169638fd61d4660', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'value': 15601.28900255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034dbf60d8a5c1129c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:08:28.000Z'}}, {'blockNum': '0x8f61e2', 'uniqueId': '0x496bf00f186686ddcdff763ced3da8ff781c75c5ee6437121dc0849b18353674:log:58', 'hash': '0x496bf00f186686ddcdff763ced3da8ff781c75c5ee6437121dc0849b18353674', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 14995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x032ce16d9d15c66c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:12:25.000Z'}}, {'blockNum': '0x8f61e4', 'uniqueId': '0xdbf36140fbf458978b1cf17506e8265979b2adf560955fcd6e728f74808b119c:log:3', 'hash': '0xdbf36140fbf458978b1cf17506e8265979b2adf560955fcd6e728f74808b119c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2823.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9912921672fec10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:12:54.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0x9c661ac49cd95a31a2d3eb63b58f3b076d156b170d830fcff6c9d462a041cab7:log:1', 'hash': '0x9c661ac49cd95a31a2d3eb63b58f3b076d156b170d830fcff6c9d462a041cab7', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0184861aef9b489c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0x158d98495e1021acaf4bbdf1f078bf47bc000ddc55922bd6c8cdfa983f020f8f:log:2', 'hash': '0x158d98495e1021acaf4bbdf1f078bf47bc000ddc55922bd6c8cdfa983f020f8f', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0768cfcb9f08e5f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0x8970893f0bbb39d9a8f64d8d11c7ac701a44cabee95462324aab055e24ab6944:log:3', 'hash': '0x8970893f0bbb39d9a8f64d8d11c7ac701a44cabee95462324aab055e24ab6944', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4654.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xfc5317d98c0f9d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0xb8fb7856ae72e991dfb687bef2e699e44e6a38c31260f4f4e5d830cbb3fefad4:log:4', 'hash': '0xb8fb7856ae72e991dfb687bef2e699e44e6a38c31260f4f4e5d830cbb3fefad4', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21055.78902162272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04756fc5acd07fea5803', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0xc5f84e5d44809b94aa443b2525fa2cc037fe494ecd50c5b73839331db67110d4:log:5', 'hash': '0xc5f84e5d44809b94aa443b2525fa2cc037fe494ecd50c5b73839331db67110d4', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3705.0209043860737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc8d97e727f406e2888', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0x1e15ec039a384c8efbdb489414f19a04822589020ce7efb923741dd26134ff04:log:8', 'hash': '0x1e15ec039a384c8efbdb489414f19a04822589020ce7efb923741dd26134ff04', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 379.74425065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14960297feb2268400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61ea', 'uniqueId': '0x8a538b81563c5f123f59699e82655e2271e0ff60045cca7ef15903f087249189:log:0', 'hash': '0x8a538b81563c5f123f59699e82655e2271e0ff60045cca7ef15903f087249189', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'value': 11044.10765199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0256b3c8534b75605c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:22.000Z'}}, {'blockNum': '0x8f61f7', 'uniqueId': '0x729f27b3c571a56c220ef40dacae547879717e72ad765a32c449705320724c21:log:11', 'hash': '0x729f27b3c571a56c220ef40dacae547879717e72ad765a32c449705320724c21', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 25287.15247037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x055ad1bc7ab9c95b5400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:16:09.000Z'}}, {'blockNum': '0x8f61f7', 'uniqueId': '0xeb0a98e748e0434e793d247deefea476ec2f636447e26720d0e574d39732a449:log:12', 'hash': '0xeb0a98e748e0434e793d247deefea476ec2f636447e26720d0e574d39732a449', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x73a829cc7c1d25eabbcdcc5a25997c1a0bd4e21f', 'value': 4361.9700748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec767ec0529a12e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:16:09.000Z'}}, {'blockNum': '0x8f61f7', 'uniqueId': '0xdacf4fffd16d88f537cc66c9e03de8a5a1a32eef4fa7aa9d100fd0b7838f8c9b:log:121', 'hash': '0xdacf4fffd16d88f537cc66c9e03de8a5a1a32eef4fa7aa9d100fd0b7838f8c9b', 'from': '0x0f0e13770e415e86e99385fde42a7f28faa1e645', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 2316.91822636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7d99b31350c7e33000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:16:09.000Z'}}, {'blockNum': '0x8f61f7', 'uniqueId': '0xc09c479f99128e4e68d3c9efd0788a3f1bd563ce7684efa0c2326fd3c4745fd8:log:149', 'hash': '0xc09c479f99128e4e68d3c9efd0788a3f1bd563ce7684efa0c2326fd3c4745fd8', 'from': '0x5769b4b1c9494335b295d44a66eb1fe41e78a423', 'to': '0x88d531da71124781791532a36ea8395529577cae', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:16:09.000Z'}}, {'blockNum': '0x8f61ff', 'uniqueId': '0xf707a26b7d798c59ad4a2be0ad4efc0358616f035c3d8bc5270c37027613ce9b:log:15', 'hash': '0xf707a26b7d798c59ad4a2be0ad4efc0358616f035c3d8bc5270c37027613ce9b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 6423.42342816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c36e84727d6ae8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:18:39.000Z'}}, {'blockNum': '0x8f6201', 'uniqueId': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395:log:21', 'hash': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 486.1068083258246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1a5a164eab07acbca2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:19:18.000Z'}}, {'blockNum': '0x8f6201', 'uniqueId': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395:log:23', 'hash': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 486.1068083258246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1a5a164eab07acbca2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:19:18.000Z'}}, {'blockNum': '0x8f6201', 'uniqueId': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395:log:28', 'hash': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 486.1063222190163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1a5a14948e780aa5e1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:19:18.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6:log:50', 'hash': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 621.2254824028387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21ad3c44da09e10494', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6:log:52', 'hash': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 621.2254824028387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21ad3c44da09e10494', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6:log:57', 'hash': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 620.643265455882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21a527d19f88500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6:log:59', 'hash': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 620.643265455882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21a527d19f88500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327:log:114', 'hash': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 430.3759575103771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1754aa8d204aa21e23', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327:log:116', 'hash': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 430.3759575103771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1754aa8d204aa21e23', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327:log:121', 'hash': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 429.9721761249215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x174f1008186ba3b6b4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87:log:30', 'hash': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 311.36656523072304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10e1144162f6bdb696', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87:log:32', 'hash': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 311.36656523072304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10e1144162f6bdb696', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87:log:37', 'hash': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 311.36625386415784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10e11326334939be13', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87:log:39', 'hash': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 311.36625386415784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10e11326334939be13', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981:log:54', 'hash': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 559.2798171103403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e51910e786b4562f8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981:log:56', 'hash': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 559.2798171103403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e51910e786b4562f8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981:log:61', 'hash': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 559.2792578305232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e518f11cef0712fb4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0x7bc1c3d2293038fd2f00637a805424e5ffa08422347d536dff261c55f4694015:log:151', 'hash': '0x7bc1c3d2293038fd2f00637a805424e5ffa08422347d536dff261c55f4694015', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7413.3638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0191e116fa6a4bfd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xe51a7decbf9a59042f165144b289a5d01e08af33484f3c76fe3beb5e5c42cf6f:log:152', 'hash': '0xe51a7decbf9a59042f165144b289a5d01e08af33484f3c76fe3beb5e5c42cf6f', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31710.57589853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x06b708a4c1e1a009d400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xd3a525fc7bb549ef60bb4921a6f1ff24387369ee1df8d9dc3df457f7b78c3bee:log:153', 'hash': '0xd3a525fc7bb549ef60bb4921a6f1ff24387369ee1df8d9dc3df457f7b78c3bee', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19995.6313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043bf720d5f476404000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0x9ff7a56dee550812e157393853987667c7a72caaaed531d52393ba406797e2da:log:154', 'hash': '0x9ff7a56dee550812e157393853987667c7a72caaaed531d52393ba406797e2da', 'from': '0x73a829cc7c1d25eabbcdcc5a25997c1a0bd4e21f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4361.9700748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec767ec0529a12e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0x17d521d4a8fc94549dd3ae90323e709f577a9fd5f88144f47dc8661372e6659a:log:155', 'hash': '0x17d521d4a8fc94549dd3ae90323e709f577a9fd5f88144f47dc8661372e6659a', 'from': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26645.39665454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05a473292bf13672f800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0x8ac219072d3314e6af5e28afe765cd3d4de69c8bb32844c54163d3e23747a03e:log:156', 'hash': '0x8ac219072d3314e6af5e28afe765cd3d4de69c8bb32844c54163d3e23747a03e', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x62030a54ce32400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6218', 'uniqueId': '0xf8400769f6d19a61eec9112306e36192b2bbf5736653a0c36358285d172cc1ae:log:16', 'hash': '0xf8400769f6d19a61eec9112306e36192b2bbf5736653a0c36358285d172cc1ae', 'from': '0x88d531da71124781791532a36ea8395529577cae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:24.000Z'}}, {'blockNum': '0x8f6219', 'uniqueId': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2:log:162', 'hash': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 425.78815018059015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1714ff62aabcbffedc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:25.000Z'}}, {'blockNum': '0x8f6219', 'uniqueId': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2:log:164', 'hash': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 425.78815018059015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1714ff62aabcbffedc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:25.000Z'}}, {'blockNum': '0x8f6219', 'uniqueId': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2:log:169', 'hash': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 425.7881501805902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1714ff62aabcc10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:25.000Z'}}, {'blockNum': '0x8f6219', 'uniqueId': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2:log:171', 'hash': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 425.7881501805902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1714ff62aabcc10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:25.000Z'}}, {'blockNum': '0x8f621a', 'uniqueId': '0x272e4c436b03b6ca8850826612a7951fb6d1afe71526b82c84a87a3a7a98e83f:log:1', 'hash': '0x272e4c436b03b6ca8850826612a7951fb6d1afe71526b82c84a87a3a7a98e83f', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 7229.35766306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0187e77ddbc64b684800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:34.000Z'}}, {'blockNum': '0x8f621a', 'uniqueId': '0xc30d48a508bf500aa0691be98d55a0836c232e29e6fd9bc0b2c2bd50d2e4f8f3:log:3', 'hash': '0xc30d48a508bf500aa0691be98d55a0836c232e29e6fd9bc0b2c2bd50d2e4f8f3', 'from': '0x0d9a115b6c0688bbf5b41d17452e31688f3ce013', 'to': '0xbd70f3578f88a051ff7b56dfaf125abb65de27a3', 'value': 212244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2cf1c5320b17e7d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:34.000Z'}}, {'blockNum': '0x8f621f', 'uniqueId': '0xb6f81143cca5fec3a85b5414e1e4d739bdd25db55397a1e1248480ef4cd40652:log:4', 'hash': '0xb6f81143cca5fec3a85b5414e1e4d739bdd25db55397a1e1248480ef4cd40652', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1731.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5de006c01cf8310000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:27:15.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb:log:52', 'hash': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 686.039716223742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2530b6af1c7dedba10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb:log:54', 'hash': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'value': 686.039716223742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2530b6af1c7dedba10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb:log:59', 'hash': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb', 'from': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 686.039716223742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2530b6af1c7dedba10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb:log:61', 'hash': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 686.039716223742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2530b6af1c7dedba10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92:log:73', 'hash': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 503.3459045733044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b4953e15e5779cb23', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92:log:75', 'hash': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 503.3459045733044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b4953e15e5779cb23', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92:log:80', 'hash': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 503.3454012273998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b49521793fda26faa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f623a', 'uniqueId': '0x2c14cea5acec35e9285f83641240caef3c61e5f3ee2e5171e88c8f828deeb1bd:log:1', 'hash': '0x2c14cea5acec35e9285f83641240caef3c61e5f3ee2e5171e88c8f828deeb1bd', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 4997.55783126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010eeb0c1155b3dc9800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:33:43.000Z'}}, {'blockNum': '0x8f623a', 'uniqueId': '0x9aee15b13ed0e12bf522145cb4a06fe98c29dc7e98e1dc42c7a2c5e315f4b150:log:34', 'hash': '0x9aee15b13ed0e12bf522145cb4a06fe98c29dc7e98e1dc42c7a2c5e315f4b150', 'from': '0xbd70f3578f88a051ff7b56dfaf125abb65de27a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 212244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2cf1c5320b17e7d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:33:43.000Z'}}, {'blockNum': '0x8f6242', 'uniqueId': '0x7d03efcc41911473d8ccbff3a83a823d31a1a823722ab43c05afbd2a1d3422ab:log:19', 'hash': '0x7d03efcc41911473d8ccbff3a83a823d31a1a823722ab43c05afbd2a1d3422ab', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 499.5697117706035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b14ec260587198517', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:36:04.000Z'}}, {'blockNum': '0x8f6254', 'uniqueId': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625:log:50', 'hash': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 738.9909139301296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x280f8f20e0b6a4c613', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:39:05.000Z'}}, {'blockNum': '0x8f6254', 'uniqueId': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625:log:52', 'hash': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 738.9909139301296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x280f8f20e0b6a4c613', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:39:05.000Z'}}, {'blockNum': '0x8f6254', 'uniqueId': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625:log:57', 'hash': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 738.9909139301295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x280f8f20e0b6a40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:39:05.000Z'}}, {'blockNum': '0x8f6254', 'uniqueId': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625:log:59', 'hash': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 738.9909139301295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x280f8f20e0b6a40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:39:05.000Z'}}, {'blockNum': '0x8f625f', 'uniqueId': '0xb767bd2816b8c1a19249a8da5557acebf5d653c3fdcb0340feb174a09097c061:log:0', 'hash': '0xb767bd2816b8c1a19249a8da5557acebf5d653c3fdcb0340feb174a09097c061', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 632907.3933663494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8605fa81d39bf961ce90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:11.000Z'}}, {'blockNum': '0x8f6260', 'uniqueId': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0:log:40', 'hash': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 450.49800159057645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186bea699b1dabc9dd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:16.000Z'}}, {'blockNum': '0x8f6260', 'uniqueId': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0:log:42', 'hash': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 450.49800159057645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186bea699b1dabc9dd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:16.000Z'}}, {'blockNum': '0x8f6260', 'uniqueId': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0:log:47', 'hash': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 450.4975510925749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186be8cfe1605070ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:16.000Z'}}, {'blockNum': '0x8f6261', 'uniqueId': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2:log:146', 'hash': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 599.7510583705698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x208337c9f88261a29f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:28.000Z'}}, {'blockNum': '0x8f6261', 'uniqueId': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2:log:148', 'hash': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 599.7510583705698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x208337c9f88261a29f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:28.000Z'}}, {'blockNum': '0x8f6261', 'uniqueId': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2:log:153', 'hash': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 599.7504586195114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x208335a8801597f295', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:28.000Z'}}, {'blockNum': '0x8f6261', 'uniqueId': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2:log:155', 'hash': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 599.7504586195114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x208335a8801597f295', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:28.000Z'}}, {'blockNum': '0x8f6266', 'uniqueId': '0xd38e796124e524442ae15760471efa17b613c64fd34722e1a8dcb6d2d63376a6:log:0', 'hash': '0xd38e796124e524442ae15760471efa17b613c64fd34722e1a8dcb6d2d63376a6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2486.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x86cdc193f3a41d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:07.000Z'}}, {'blockNum': '0x8f6266', 'uniqueId': '0x808b9b66905b70cce47f523791b25eecf7c2e111e6c7a29a69de9b5eb9c886dc:log:3', 'hash': '0x808b9b66905b70cce47f523791b25eecf7c2e111e6c7a29a69de9b5eb9c886dc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1308.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x46f1b8dd4361f50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:07.000Z'}}, {'blockNum': '0x8f6269', 'uniqueId': '0x684fc2f50663d8885bcb5a8ada8625b4b3b2ebc9daf91c44f74af425b6a19961:log:6', 'hash': '0x684fc2f50663d8885bcb5a8ada8625b4b3b2ebc9daf91c44f74af425b6a19961', 'from': '0xdc5680ffa94a83b297d78952fb0a766df40f196a', 'to': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'value': 360000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4c3ba39c5e4111000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:52.000Z'}}, {'blockNum': '0x8f6269', 'uniqueId': '0x38ad95a23de510de020d63c60f036cf00329fd479fcec09791b26450f299f264:log:15', 'hash': '0x38ad95a23de510de020d63c60f036cf00329fd479fcec09791b26450f299f264', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1308.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x46f1b8dd4361f50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:52.000Z'}}, {'blockNum': '0x8f6269', 'uniqueId': '0x38ad95a23de510de020d63c60f036cf00329fd479fcec09791b26450f299f264:log:17', 'hash': '0x38ad95a23de510de020d63c60f036cf00329fd479fcec09791b26450f299f264', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1308.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x46f1b8dd4361f50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:52.000Z'}}, {'blockNum': '0x8f626d', 'uniqueId': '0x606428bf1764a7fb463eddb1b27ac4483d622db33f1b391466a405217366ea79:log:30', 'hash': '0x606428bf1764a7fb463eddb1b27ac4483d622db33f1b391466a405217366ea79', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12226.91549432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0296d289ed1bff44e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:44:26.000Z'}}, {'blockNum': '0x8f6298', 'uniqueId': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965:log:44', 'hash': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 455.20608765493415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18ad40e4efdbadde2e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:54:25.000Z'}}, {'blockNum': '0x8f6298', 'uniqueId': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965:log:46', 'hash': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 455.20608765493415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18ad40e4efdbadde2e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:54:25.000Z'}}, {'blockNum': '0x8f6298', 'uniqueId': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965:log:51', 'hash': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 455.20563244884653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18ad3f46edee866017', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:54:25.000Z'}}, {'blockNum': '0x8f629d', 'uniqueId': '0x43af6bde48a9b4150da1e9df6e10d2386bf7fd150b04811cbaddf620bf079862:log:0', 'hash': '0x43af6bde48a9b4150da1e9df6e10d2386bf7fd150b04811cbaddf620bf079862', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'value': 6832.5354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01726479f9f9d97e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:27.000Z'}}, {'blockNum': '0x8f629d', 'uniqueId': '0xe62a90de7a5acc16f4e1b1182153194bb729fa22fc2a98ea76698ec2b78f59a3:log:2', 'hash': '0xe62a90de7a5acc16f4e1b1182153194bb729fa22fc2a98ea76698ec2b78f59a3', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x65deb91454617008ebd9be734d22f9b478e3d4e5', 'value': 10539.46992735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x023b5886fa6b80c99c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:27.000Z'}}, {'blockNum': '0x8f629d', 'uniqueId': '0xcf5ecdd28c49b5a40f3ae1671fd549655dc729542c4d811c35778e4dfe13bc21:log:4', 'hash': '0xcf5ecdd28c49b5a40f3ae1671fd549655dc729542c4d811c35778e4dfe13bc21', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 16271.4656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x037213f26947cc480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:27.000Z'}}, {'blockNum': '0x8f629d', 'uniqueId': '0x7e091cc876510a6ed445235448ce577dcd29a37d2552e5f2bf688b8f85a8746d:log:7', 'hash': '0x7e091cc876510a6ed445235448ce577dcd29a37d2552e5f2bf688b8f85a8746d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:27.000Z'}}, {'blockNum': '0x8f629e', 'uniqueId': '0x60d6c4841f684307e9c948fecdf90a0a37e25d150bc1c1d624e7c272d63486c1:log:0', 'hash': '0x60d6c4841f684307e9c948fecdf90a0a37e25d150bc1c1d624e7c272d63486c1', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x896b6d82d0ba81dd27c16f6956e55371278e9dcc', 'value': 10391.4198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x023351eb43ff90b18000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:31.000Z'}}, {'blockNum': '0x8f629e', 'uniqueId': '0x3fc291baba25c9000a319e2e166acfd0cb02c2f423ce4812d06f3341820a5fac:log:1', 'hash': '0x3fc291baba25c9000a319e2e166acfd0cb02c2f423ce4812d06f3341820a5fac', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:31.000Z'}}, {'blockNum': '0x8f629e', 'uniqueId': '0x1f4f3026d10a4edf6092defb5d54a925e1d156bb7a3fa20e171c0913ef94a700:log:2', 'hash': '0x1f4f3026d10a4edf6092defb5d54a925e1d156bb7a3fa20e171c0913ef94a700', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xc0e9e730e308e506e78280cc98042feca794745f', 'value': 66910.1132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e2b345a6a6d474b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:31.000Z'}}, {'blockNum': '0x8f629e', 'uniqueId': '0x67dd3a455668cfa7d2458ca0acd837f5e795484632f1708cfb924622ea66945e:log:3', 'hash': '0x67dd3a455668cfa7d2458ca0acd837f5e795484632f1708cfb924622ea66945e', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 12109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02906e21efc4b5140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:31.000Z'}}, {'blockNum': '0x8f62a0', 'uniqueId': '0x7f7b1342e3b2bedd11016b31bcce252bf0ed50ebf0f8d4443aaf06331ae42c5d:log:1', 'hash': '0x7f7b1342e3b2bedd11016b31bcce252bf0ed50ebf0f8d4443aaf06331ae42c5d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 19723.74806541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042d39fd8c982d1a9400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:56:04.000Z'}}, {'blockNum': '0x8f62a0', 'uniqueId': '0x2baed909b80ff5c644ec0720758aa8a308de5146c7b4c4fa93a7f21895b7f316:log:2', 'hash': '0x2baed909b80ff5c644ec0720758aa8a308de5146c7b4c4fa93a7f21895b7f316', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4498.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf3e3c0426f73290000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:56:04.000Z'}}, {'blockNum': '0x8f62a0', 'uniqueId': '0xbb528fdf0350c189c1a94d553ce110ec9ed83dd18641049511939fd080d52b38:log:3', 'hash': '0xbb528fdf0350c189c1a94d553ce110ec9ed83dd18641049511939fd080d52b38', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:56:04.000Z'}}, {'blockNum': '0x8f62b4', 'uniqueId': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7:log:97', 'hash': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 508.96937633074793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b975e772332575dad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:01:07.000Z'}}, {'blockNum': '0x8f62b4', 'uniqueId': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7:log:99', 'hash': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 508.96937633074793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b975e772332575dad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:01:07.000Z'}}, {'blockNum': '0x8f62b4', 'uniqueId': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7:log:104', 'hash': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 508.9693763307479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b975e772332560000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:01:07.000Z'}}, {'blockNum': '0x8f62bc', 'uniqueId': '0xae61c69d061258d7f084c9ee584b6384a3a7a2d0c1b3ab9b300b8e97c0b72c3d:log:5', 'hash': '0xae61c69d061258d7f084c9ee584b6384a3a7a2d0c1b3ab9b300b8e97c0b72c3d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1349.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x492ab6200930f90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:03:00.000Z'}}, {'blockNum': '0x8f62bf', 'uniqueId': '0x785adec5a600d1aedcb3d7deec590def0a41e831b77d5135a7d88f0cf53a8231:log:36', 'hash': '0x785adec5a600d1aedcb3d7deec590def0a41e831b77d5135a7d88f0cf53a8231', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1349.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x492ab6200930f90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:03:15.000Z'}}, {'blockNum': '0x8f62bf', 'uniqueId': '0x785adec5a600d1aedcb3d7deec590def0a41e831b77d5135a7d88f0cf53a8231:log:38', 'hash': '0x785adec5a600d1aedcb3d7deec590def0a41e831b77d5135a7d88f0cf53a8231', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1349.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x492ab6200930f90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:03:15.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x1e56ee8e87686ec4e68859d285f6d32f59c7ddaafea14c65720ffc1cbd5825ea:log:34', 'hash': '0x1e56ee8e87686ec4e68859d285f6d32f59c7ddaafea14c65720ffc1cbd5825ea', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4498.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf3e3c0426f73290000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x8e7ec5a2501610f7171f8d4da6f99f7096476000d9458b18f4195f335ae74ae8:log:37', 'hash': '0x8e7ec5a2501610f7171f8d4da6f99f7096476000d9458b18f4195f335ae74ae8', 'from': '0x896b6d82d0ba81dd27c16f6956e55371278e9dcc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10391.4198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x023351eb43ff90b18000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x45100c1aa3cba9c53a31768ab68269d0ea98e86db949639a420f2048d47cbc8c:log:40', 'hash': '0x45100c1aa3cba9c53a31768ab68269d0ea98e86db949639a420f2048d47cbc8c', 'from': '0x65deb91454617008ebd9be734d22f9b478e3d4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10539.46992735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x023b5886fa6b80c99c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x1a94e0637235c456c59df9fc5738515663185388fc072fc0aebc285573352c3e:log:41', 'hash': '0x1a94e0637235c456c59df9fc5738515663185388fc072fc0aebc285573352c3e', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02906e21efc4b5140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x10dc34295fbc34631d9466b2b52abb0760dfe8e6a201753b26795e95f020e377:log:42', 'hash': '0x10dc34295fbc34631d9466b2b52abb0760dfe8e6a201753b26795e95f020e377', 'from': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 116271.4656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x189f16ba4a92c2c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x86462eca408c9ec1ce8ad609656b009db28980ae564c7f8378ad4127c95121bb:log:43', 'hash': '0x86462eca408c9ec1ce8ad609656b009db28980ae564c7f8378ad4127c95121bb', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0xc4192d1fd1e82a286aedb9e0039eb033ce955cd7f92eeaa03bc970a1031d0b6e:log:44', 'hash': '0xc4192d1fd1e82a286aedb9e0039eb033ce955cd7f92eeaa03bc970a1031d0b6e', 'from': '0xc0e9e730e308e506e78280cc98042feca794745f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66910.1132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e2b345a6a6d474b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0xcbaeee0ccc4caca0338d4945a953808963c8e5f0982dda31296cc4fc4daa68a2:log:45', 'hash': '0xcbaeee0ccc4caca0338d4945a953808963c8e5f0982dda31296cc4fc4daa68a2', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19723.74806541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042d39fd8c982d1a9400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0xabacb36ee2f5153e4821033259bc6b1d096e02832578ce86a50bd40a1dc27496:log:46', 'hash': '0xabacb36ee2f5153e4821033259bc6b1d096e02832578ce86a50bd40a1dc27496', 'from': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6832.5354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01726479f9f9d97e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62e5', 'uniqueId': '0x27f4b76c8ad46c64ac3b0d60cbd8fe9d9d4127f48587c45c44b6d3913479770d:log:2', 'hash': '0x27f4b76c8ad46c64ac3b0d60cbd8fe9d9d4127f48587c45c44b6d3913479770d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4502.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf41499cfc91c890000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:10:12.000Z'}}, {'blockNum': '0x8f62e5', 'uniqueId': '0xba802211f8e5f4981c36d56ec0b86a631fef38fccc16b0d2dc99b9c9345733cc:log:7', 'hash': '0xba802211f8e5f4981c36d56ec0b86a631fef38fccc16b0d2dc99b9c9345733cc', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 7901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ac5066c6b539540000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:10:12.000Z'}}, {'blockNum': '0x8f62f9', 'uniqueId': '0x966f837758a8041d7f7a2d8798f3ac93a0bde5f6a557ee7d432a1b9b28ebe5c8:log:44', 'hash': '0x966f837758a8041d7f7a2d8798f3ac93a0bde5f6a557ee7d432a1b9b28ebe5c8', 'from': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:14:02.000Z'}}, {'blockNum': '0x8f62fa', 'uniqueId': '0x7993f0b3f955f6617319da3f3ba7f7e3a9b6ba09946ef728c3e683b08256e124:log:0', 'hash': '0x7993f0b3f955f6617319da3f3ba7f7e3a9b6ba09946ef728c3e683b08256e124', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 36490.99254185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07ba2e405b3f7ddd8400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:15:08.000Z'}}, {'blockNum': '0x8f62fa', 'uniqueId': '0x3a17064505e2b2c0981816ce848fe081740773e46e33bdd0169cf77c86f900a5:log:1', 'hash': '0x3a17064505e2b2c0981816ce848fe081740773e46e33bdd0169cf77c86f900a5', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:15:08.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0x705feba762301fd4c3569a7988154754c7b3bfd77d025e845eb6172762d92ce1:log:1', 'hash': '0x705feba762301fd4c3569a7988154754c7b3bfd77d025e845eb6172762d92ce1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19765.85096045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042f8249149007dc1400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0x14d281817922a3d10bb3801d3c43b596326ec71858ae1c67f5c242880b418cb4:log:9', 'hash': '0x14d281817922a3d10bb3801d3c43b596326ec71858ae1c67f5c242880b418cb4', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ac5066c6b539540000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0x9a835a663af4d436e73146b426558db4d8370fd25184f5bfd6dc7c5b25f15f42:log:10', 'hash': '0x9a835a663af4d436e73146b426558db4d8370fd25184f5bfd6dc7c5b25f15f42', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0x81b6b35768b56742a62fd479ebcf11094f8f6a86acdd253de1421909ae8b176b:log:12', 'hash': '0x81b6b35768b56742a62fd479ebcf11094f8f6a86acdd253de1421909ae8b176b', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36490.99254185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07ba2e405b3f7ddd8400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0xc74361706d81991a23d5f02b6ac5c9c6d8cd5a65bfd77e49a8b008f4d073f6e8:log:13', 'hash': '0xc74361706d81991a23d5f02b6ac5c9c6d8cd5a65bfd77e49a8b008f4d073f6e8', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4502.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf41499cfc91c890000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f6343', 'uniqueId': '0xc77e6f0a6690babd5c12223331f59caa6092f634684432a498f18d857392b759:log:0', 'hash': '0xc77e6f0a6690babd5c12223331f59caa6092f634684432a498f18d857392b759', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19765.85096045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042f8249149007dc1400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:29:53.000Z'}}, {'blockNum': '0x8f635b', 'uniqueId': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736:log:6', 'hash': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 737.0490528869993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27f49c408c27b166b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:36:04.000Z'}}, {'blockNum': '0x8f635b', 'uniqueId': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736:log:8', 'hash': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 737.0490528869993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27f49c408c27b166b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:36:04.000Z'}}, {'blockNum': '0x8f635b', 'uniqueId': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736:log:13', 'hash': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 737.0490528869993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27f49c408c27b20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:36:04.000Z'}}, {'blockNum': '0x8f6371', 'uniqueId': '0x95d732a0d61851d25800b621536962b432de252a5e69ee012837888b89aad097:log:2', 'hash': '0x95d732a0d61851d25800b621536962b432de252a5e69ee012837888b89aad097', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2752.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x95393f6a9f92050000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:40:48.000Z'}}, {'blockNum': '0x8f63cf', 'uniqueId': '0xc7e6edb41a331e5253fe6d6b84b9b7337c928123af825eda1e9f1d286810a604:log:60', 'hash': '0xc7e6edb41a331e5253fe6d6b84b9b7337c928123af825eda1e9f1d286810a604', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17.510791836331986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf302d4662460c6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:01:09.000Z'}}, {'blockNum': '0x8f63cf', 'uniqueId': '0xc7e6edb41a331e5253fe6d6b84b9b7337c928123af825eda1e9f1d286810a604:log:65', 'hash': '0xc7e6edb41a331e5253fe6d6b84b9b7337c928123af825eda1e9f1d286810a604', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9b7a6c630865bc5e1839fe3585faf7a4414b866f', 'value': 17.510791836331986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf302d4662460c6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:01:09.000Z'}}, {'blockNum': '0x8f648c', 'uniqueId': '0xdace659a9fcae77c28a2818e7a02c00b480a7ff8774c894b6fd98ebdca21a769:log:104', 'hash': '0xdace659a9fcae77c28a2818e7a02c00b480a7ff8774c894b6fd98ebdca21a769', 'from': '0xe281360f7c5e564585b9469fe3e690250b4008a7', 'to': '0x102fccbea5e0eb78d5ca46ea965f74d876b1de8a', 'value': 52.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d9f8bd50318c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:40:57.000Z'}}, {'blockNum': '0x8f64e6', 'uniqueId': '0xe13d867c51058457ea3198fd0236ff44237f07454c0c07e54569ac1cc835e964:log:6', 'hash': '0xe13d867c51058457ea3198fd0236ff44237f07454c0c07e54569ac1cc835e964', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:59:38.000Z'}}, {'blockNum': '0x8f64e6', 'uniqueId': '0x0854da91cdfe7d5763d86bc58e816f680eefb95717b8944efd63eb9065f29141:log:10', 'hash': '0x0854da91cdfe7d5763d86bc58e816f680eefb95717b8944efd63eb9065f29141', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4053.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xdbbceb42e6c7210000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:59:38.000Z'}}, {'blockNum': '0x8f64f8', 'uniqueId': '0x2e709d8a0e67c72cf6f7d1ee492cb9ed0e2c79d0b2ae766259994dfcba0b2ab5:log:17', 'hash': '0x2e709d8a0e67c72cf6f7d1ee492cb9ed0e2c79d0b2ae766259994dfcba0b2ab5', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:04:12.000Z'}}, {'blockNum': '0x8f64f8', 'uniqueId': '0x3b62e83acf6eef099495acc0a9ae5cbec79c8f0acca246ca74741689487aa873:log:18', 'hash': '0x3b62e83acf6eef099495acc0a9ae5cbec79c8f0acca246ca74741689487aa873', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4053.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xdbbceb42e6c7210000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:04:12.000Z'}}, {'blockNum': '0x8f6509', 'uniqueId': '0x49fc49bac3adaedfdb4694dca7e5922224b2ce5d7d09737b5a3947cdb2079292:log:90', 'hash': '0x49fc49bac3adaedfdb4694dca7e5922224b2ce5d7d09737b5a3947cdb2079292', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x460b94fe8b7899b4a5f7ea74e90536e2c5f70fcd', 'value': 969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3487938e0499840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:06:43.000Z'}}, {'blockNum': '0x8f6509', 'uniqueId': '0xf885bbaf6e58ee72f4d19186babb6fd9afe8332dd58e25b7ad2b32723824b540:log:91', 'hash': '0xf885bbaf6e58ee72f4d19186babb6fd9afe8332dd58e25b7ad2b32723824b540', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 7958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01af676f74b57e980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:06:43.000Z'}}, {'blockNum': '0x8f652e', 'uniqueId': '0xfc12954181a27a1c50ae9a10a32f039567093b84930392c04dc49337a278d517:log:118', 'hash': '0xfc12954181a27a1c50ae9a10a32f039567093b84930392c04dc49337a278d517', 'from': '0x460b94fe8b7899b4a5f7ea74e90536e2c5f70fcd', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 1935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68e584f7ee3cdc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:13:40.000Z'}}, {'blockNum': '0x8f652f', 'uniqueId': '0x1c70183d1863554bbc85dde064e9b941227695fd8bc46ca24a51ba972f49f387:log:6', 'hash': '0x1c70183d1863554bbc85dde064e9b941227695fd8bc46ca24a51ba972f49f387', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01af676f74b57e980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:13:53.000Z'}}, {'blockNum': '0x8f6549', 'uniqueId': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730:log:106', 'hash': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 473.2069140096483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x19a710ad2253e724ad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:20:52.000Z'}}, {'blockNum': '0x8f6549', 'uniqueId': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730:log:108', 'hash': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 473.2069140096483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x19a710ad2253e724ad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:20:52.000Z'}}, {'blockNum': '0x8f6549', 'uniqueId': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730:log:113', 'hash': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 473.2064408027343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x19a70efec141e35a7c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:20:52.000Z'}}, {'blockNum': '0x8f656e', 'uniqueId': '0xbb60bb46425d32eadfd8187d4bc755eaffc3cd890df2b020ff46379bce2c1401:log:178', 'hash': '0xbb60bb46425d32eadfd8187d4bc755eaffc3cd890df2b020ff46379bce2c1401', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 6940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017837d8ee4ddaf00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:29:03.000Z'}}, {'blockNum': '0x8f6584', 'uniqueId': '0x83b3242783b2a0fce8c2d0a79cf588b8b9e1c346353b5067e22f1640ca636536:log:4', 'hash': '0x83b3242783b2a0fce8c2d0a79cf588b8b9e1c346353b5067e22f1640ca636536', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017837d8ee4ddaf00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:34:04.000Z'}}, {'blockNum': '0x8f661c', 'uniqueId': '0xb71d9ebd4bb69388ce7155ac1cc7a9c82b660b86a6c1b90a3a1dd9c61c225204:log:5', 'hash': '0xb71d9ebd4bb69388ce7155ac1cc7a9c82b660b86a6c1b90a3a1dd9c61c225204', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x310e14d934daf738e1e5a4ffba53207a3cded234', 'value': 132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0727de34a24f900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:10:37.000Z'}}, {'blockNum': '0x8f6624', 'uniqueId': '0xa80ad7f1728776bcfb911553705e20c6f718c5825d887b590c740ec6ccf951c6:log:11', 'hash': '0xa80ad7f1728776bcfb911553705e20c6f718c5825d887b590c740ec6ccf951c6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 1127.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d21d7b03e08410000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:13:06.000Z'}}, {'blockNum': '0x8f6627', 'uniqueId': '0x921a287754ea4a63b8593a60dafc58767c5de8ffa4dae5ee68bf296bffb5546b:log:2', 'hash': '0x921a287754ea4a63b8593a60dafc58767c5de8ffa4dae5ee68bf296bffb5546b', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 38257.22730279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0819edaec068fd8bbc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:13:36.000Z'}}, {'blockNum': '0x8f6627', 'uniqueId': '0x2d7f117ebe0ca04e53d440b9cf6ff3d2f90723e35be7049fc42256c457661ffa:log:3', 'hash': '0x2d7f117ebe0ca04e53d440b9cf6ff3d2f90723e35be7049fc42256c457661ffa', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 12043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x028cda32d5738d4c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:13:36.000Z'}}, {'blockNum': '0x8f6658', 'uniqueId': '0xa39f6f93684bd55c49b3eab00e2087b0d6855918f2ba24df80a7be692727200a:log:8', 'hash': '0xa39f6f93684bd55c49b3eab00e2087b0d6855918f2ba24df80a7be692727200a', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38257.22730279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0819edaec068fd8bbc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:23:54.000Z'}}, {'blockNum': '0x8f6658', 'uniqueId': '0x7c04f8a009acbcb2d76aa656e3168c07e73f6c42bc1e52c232eb07a1ad1212d4:log:10', 'hash': '0x7c04f8a009acbcb2d76aa656e3168c07e73f6c42bc1e52c232eb07a1ad1212d4', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x028cda32d5738d4c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:23:54.000Z'}}, {'blockNum': '0x8f668c', 'uniqueId': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b:log:59', 'hash': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 437.9991879126457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x17be75b4c992d0ef32', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:36:18.000Z'}}, {'blockNum': '0x8f668c', 'uniqueId': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b:log:61', 'hash': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 437.9991879126457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x17be75b4c992d0ef32', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:36:18.000Z'}}, {'blockNum': '0x8f668c', 'uniqueId': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b:log:66', 'hash': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 437.9991879126456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x17be75b4c992cf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:36:18.000Z'}}, {'blockNum': '0x8f668c', 'uniqueId': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b:log:68', 'hash': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 437.9991879126456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x17be75b4c992cf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:36:18.000Z'}}, {'blockNum': '0x8f6692', 'uniqueId': '0x286ed2f3a37675d5070c9dbd8ab08ea6d044493c00f8bd2d61d47cec343d8289:log:4', 'hash': '0x286ed2f3a37675d5070c9dbd8ab08ea6d044493c00f8bd2d61d47cec343d8289', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd95c915528a9aa941fbab42c9673c8e514d5826c', 'value': 4646.032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xfbdca5704479a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:37:41.000Z'}}, {'blockNum': '0x8f66a7', 'uniqueId': '0x2d1d510b0584fc5927d40de331140d4d258d7d09ea258127e977306d27bd5451:log:0', 'hash': '0x2d1d510b0584fc5927d40de331140d4d258d7d09ea258127e977306d27bd5451', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 879.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2fb026b233df610000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:42:02.000Z'}}, {'blockNum': '0x8f66d8', 'uniqueId': '0xe8c2b8853b9268babdc484d953cd6adab49b9db267cdd87baf7aa6c426e48a62:log:0', 'hash': '0xe8c2b8853b9268babdc484d953cd6adab49b9db267cdd87baf7aa6c426e48a62', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19712.88417626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042ca33942f8cc222800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:52:58.000Z'}}, {'blockNum': '0x8f66e2', 'uniqueId': '0x11992c500b72c9bf9c6d1ec9ce0bb2b198fea0f674a72d0ed05706fc3791e964:log:0', 'hash': '0x11992c500b72c9bf9c6d1ec9ce0bb2b198fea0f674a72d0ed05706fc3791e964', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19712.88417626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042ca33942f8cc222800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:54:11.000Z'}}, {'blockNum': '0x8f6725', 'uniqueId': '0x8fd081fedb31c674ca4a86620a502bb9556371403e12feef01aa03f259df9509:log:38', 'hash': '0x8fd081fedb31c674ca4a86620a502bb9556371403e12feef01aa03f259df9509', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1592.3507609543735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56524e5473bc63ad0e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:08:43.000Z'}}, {'blockNum': '0x8f672c', 'uniqueId': '0xb4042f5b7cc88c676967798038a84585def198129165f7fb36e3711763b1fa7a:log:219', 'hash': '0xb4042f5b7cc88c676967798038a84585def198129165f7fb36e3711763b1fa7a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 265.4930908496242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e6474ef7c2c5cc874', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:09:35.000Z'}}, {'blockNum': '0x8f673c', 'uniqueId': '0xa51fe4de527d99bfd44123769ca61386ca24e6106c97159fd1b2a2972ce53435:log:157', 'hash': '0xa51fe4de527d99bfd44123769ca61386ca24e6106c97159fd1b2a2972ce53435', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 535.55702966807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d0858c8faf8a57f6c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:14:26.000Z'}}, {'blockNum': '0x8f6749', 'uniqueId': '0x497868d9e58065964cfa2dc415765851d33d6f30604b9d025949e48e5cc56ca7:log:111', 'hash': '0x497868d9e58065964cfa2dc415765851d33d6f30604b9d025949e48e5cc56ca7', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 1127.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d21d7b03e08410000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:17:04.000Z'}}, {'blockNum': '0x8f6752', 'uniqueId': '0xb71e0556d5cf01f520a0c5e36a34933aeeef8c6b1bb673a92e320dbe417ff84e:log:3', 'hash': '0xb71e0556d5cf01f520a0c5e36a34933aeeef8c6b1bb673a92e320dbe417ff84e', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 37144.04136479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07dd951fd7b603889c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:19:01.000Z'}}, {'blockNum': '0x8f6753', 'uniqueId': '0x3b2f9563d6c8051d6cd5cec7de07d4fbf1df7eee5b763ed26617e360160d19fc:log:2', 'hash': '0x3b2f9563d6c8051d6cd5cec7de07d4fbf1df7eee5b763ed26617e360160d19fc', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 3892.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd30797560238610000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:19:28.000Z'}}, {'blockNum': '0x8f6765', 'uniqueId': '0xe4c5314e21f49c62f6dcd2233354ef011b35c66327698f48144cf7cebbc77d14:log:9', 'hash': '0xe4c5314e21f49c62f6dcd2233354ef011b35c66327698f48144cf7cebbc77d14', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3892.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd30797560238610000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:23:58.000Z'}}, {'blockNum': '0x8f6765', 'uniqueId': '0x95dc0439653dd1c44fdd5c5d0c331baf55a87f0ef1b7a3d9e06587a72fbf382c:log:10', 'hash': '0x95dc0439653dd1c44fdd5c5d0c331baf55a87f0ef1b7a3d9e06587a72fbf382c', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37144.04136479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07dd951fd7b603889c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:23:58.000Z'}}, {'blockNum': '0x8f6782', 'uniqueId': '0x99f02886ebd61c2ed98ff19d16d7bc95584cc70f97413882bbe83265e5044912:log:19', 'hash': '0x99f02886ebd61c2ed98ff19d16d7bc95584cc70f97413882bbe83265e5044912', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 270.8330695862537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0eae9059da854dbb0c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:31:15.000Z'}}, {'blockNum': '0x8f6792', 'uniqueId': '0xc7f16f924a0623aad1165b394461a4804fab2129b38fb96d097ff4925f62fe9f:log:27', 'hash': '0xc7f16f924a0623aad1165b394461a4804fab2129b38fb96d097ff4925f62fe9f', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 266.24599857563857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e6ee7cd12a21887e4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:33:20.000Z'}}, {'blockNum': '0x8f679e', 'uniqueId': '0x8460f3769679e83e7f04a7ab7df15b10233869e898ad8bb972b2368034b91058:log:2', 'hash': '0x8460f3769679e83e7f04a7ab7df15b10233869e898ad8bb972b2368034b91058', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19711.81277998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042c945ae5bb510ef800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:36:27.000Z'}}, {'blockNum': '0x8f67b0', 'uniqueId': '0x5cc35861a0e3abb4823c3cb2632adcc99160d4f6748ffe8725ebda45b6a2e876:log:1', 'hash': '0x5cc35861a0e3abb4823c3cb2632adcc99160d4f6748ffe8725ebda45b6a2e876', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19711.81277998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042c945ae5bb510ef800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:40:06.000Z'}}, {'blockNum': '0x8f6885', 'uniqueId': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf:log:119', 'hash': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 320.2326257852666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x115c1ed47c8d69239e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T19:24:45.000Z'}}, {'blockNum': '0x8f6885', 'uniqueId': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf:log:121', 'hash': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 320.23261418073605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x115c1ec9eea97e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T19:24:45.000Z'}}, {'blockNum': '0x8f6885', 'uniqueId': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf:log:122', 'hash': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 320.23261418073605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x115c1ec9eea97e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T19:24:45.000Z'}}, {'blockNum': '0x8f6935', 'uniqueId': '0xe4e9c1cb3a058189905d8d02a263fb213d320f9f1c90db5f6319d570aa992c0c:log:4', 'hash': '0xe4e9c1cb3a058189905d8d02a263fb213d320f9f1c90db5f6319d570aa992c0c', 'from': '0xdc5680ffa94a83b297d78952fb0a766df40f196a', 'to': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b87506a3e7b0d400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:05:46.000Z'}}, {'blockNum': '0x8f69a4', 'uniqueId': '0x6118beac243885e5e84de04380efcf418f1bb48a31d2c3a5de4be32d266c3f7c:log:0', 'hash': '0x6118beac243885e5e84de04380efcf418f1bb48a31d2c3a5de4be32d266c3f7c', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:27:09.000Z'}}, {'blockNum': '0x8f69a5', 'uniqueId': '0x16c5a5398323487a44a4481af6af6fcb90933f111ab1dd91947c08d6dc275150:log:1', 'hash': '0x16c5a5398323487a44a4481af6af6fcb90933f111ab1dd91947c08d6dc275150', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 38260.24215766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x081a1785aaf0e5409800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:27:16.000Z'}}, {'blockNum': '0x8f69c2', 'uniqueId': '0x91070df915e798003048fc18a5c2ef8d276c83e6fd5686cfaa9fa2954f492cf7:log:4', 'hash': '0x91070df915e798003048fc18a5c2ef8d276c83e6fd5686cfaa9fa2954f492cf7', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38260.24215766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x081a1785aaf0e5409800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:34:14.000Z'}}, {'blockNum': '0x8f69c2', 'uniqueId': '0x8d447a797b6b07502e1ff384671192021c366cb8730a54ae5f76cc526cf58f7c:log:5', 'hash': '0x8d447a797b6b07502e1ff384671192021c366cb8730a54ae5f76cc526cf58f7c', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:34:14.000Z'}}, {'blockNum': '0x8f69d6', 'uniqueId': '0x5e2d9cce0123974fc411ae8bddd2b05a5629a26da1fef26b2fa75f13a05f1461:log:78', 'hash': '0x5e2d9cce0123974fc411ae8bddd2b05a5629a26da1fef26b2fa75f13a05f1461', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 539.1599381804845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d3a58e32ef158e5d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:37:04.000Z'}}, {'blockNum': '0x8f6a01', 'uniqueId': '0x39112bda870375dd2c48621f9addf9d8978458cf52b3c2cecb044f609cfba378:log:4', 'hash': '0x39112bda870375dd2c48621f9addf9d8978458cf52b3c2cecb044f609cfba378', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19714.89984185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042cbf325825820fc400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:48:04.000Z'}}, {'blockNum': '0x8f6a25', 'uniqueId': '0xcde76168b44c73902826e1363eeda546b341348f8ff7b4b3e2853c435f00832a:log:0', 'hash': '0xcde76168b44c73902826e1363eeda546b341348f8ff7b4b3e2853c435f00832a', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19714.89984185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042cbf325825820fc400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:55:04.000Z'}}, {'blockNum': '0x8f6adb', 'uniqueId': '0x905510ec4b52839a96e87f10eef5ebe33949a3db4b4732d5d5597db0886b372e:log:8', 'hash': '0x905510ec4b52839a96e87f10eef5ebe33949a3db4b4732d5d5597db0886b372e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 247.5536312455798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d6b7f2c05c2d34c31', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T21:36:02.000Z'}}, {'blockNum': '0x8f6bef', 'uniqueId': '0xfaa9cbfdd36f813640d300373577dfe90ee1897c9cf0407e1ed8758746034891:log:2', 'hash': '0xfaa9cbfdd36f813640d300373577dfe90ee1897c9cf0407e1ed8758746034891', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1378.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4abd2ad263274d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T22:37:49.000Z'}}, {'blockNum': '0x8f6bf1', 'uniqueId': '0xc0ada27183a0ce7793a16895b8c18453d61c02c8da1139e45d629dfe45e73976:log:25', 'hash': '0xc0ada27183a0ce7793a16895b8c18453d61c02c8da1139e45d629dfe45e73976', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1378.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4abd2ad263274d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T22:38:42.000Z'}}, {'blockNum': '0x8f6bf1', 'uniqueId': '0xc0ada27183a0ce7793a16895b8c18453d61c02c8da1139e45d629dfe45e73976:log:27', 'hash': '0xc0ada27183a0ce7793a16895b8c18453d61c02c8da1139e45d629dfe45e73976', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1378.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4abd2ad263274d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T22:38:42.000Z'}}, {'blockNum': '0x8f6c53', 'uniqueId': '0xdca4eda3055a62e409f21a95ee8c86166d2e15e0f218f9c2853a7f6ab83af8e3:log:273', 'hash': '0xdca4eda3055a62e409f21a95ee8c86166d2e15e0f218f9c2853a7f6ab83af8e3', 'from': '0xffb5d974cba1e8c3761427f017c9666c9f14c32b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 144.854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07da40c987d66f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T22:59:51.000Z'}}, {'blockNum': '0x8f6c76', 'uniqueId': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a:log:25', 'hash': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 407.9663811301152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x161dabbe23aa246711', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:09:01.000Z'}}, {'blockNum': '0x8f6c76', 'uniqueId': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a:log:27', 'hash': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 407.9663811301152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x161dabbe23aa246711', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:09:01.000Z'}}, {'blockNum': '0x8f6c76', 'uniqueId': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a:log:32', 'hash': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 407.9659731637341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x161daa4b1896ea258e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:09:01.000Z'}}, {'blockNum': '0x8f6c91', 'uniqueId': '0x3603bd73be7d8cecb5166924b7440dd8ef5eaa22c69231d5f4274a2415f32beb:log:159', 'hash': '0x3603bd73be7d8cecb5166924b7440dd8ef5eaa22c69231d5f4274a2415f32beb', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x659d1cba2a41ddae1093d2f535b2aa486a1494d1', 'value': 17512.94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03b560dd7e77997e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:15:26.000Z'}}, {'blockNum': '0x8f6cb2', 'uniqueId': '0x619befa200451a3968fdb8740b27349e2253d54c8b42625544a1f7d65701747d:log:1', 'hash': '0x619befa200451a3968fdb8740b27349e2253d54c8b42625544a1f7d65701747d', 'from': '0x659d1cba2a41ddae1093d2f535b2aa486a1494d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17512.94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03b560dd7e77997e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:24:04.000Z'}}, {'blockNum': '0x8f6d3d', 'uniqueId': '0x3b243938b54ebe7f955b5532a9e2393bad57d934ed661395dc1cf15b59e2b8a3:log:34', 'hash': '0x3b243938b54ebe7f955b5532a9e2393bad57d934ed661395dc1cf15b59e2b8a3', 'from': '0x05d8f3cebd4ab23a61fa082ba340b5a2bed97a41', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 13.686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbdee707d0bff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:53:17.000Z'}}]}}
Number of returned transfers:  300
Answer is complete
 
symbol             WPR
group              BPF
date        2020-02-10
hour             20:00
exchange       binance
Name: 803, dtype: object
HERE
 Symbol: WPR, Contract: 0x4cf488387f035ff08c371515562cba712f9015d4
Datetime timestamps:  2020-02-10 20:00:00 2020-02-10 08:00:00 2020-02-11 08:00:00
Unix timestamps:  1581318000.0 1581404400.0
Hex Block Numbers:  0x904023 0x9059dd
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x904058', 'uniqueId': '0xac06c00af6d8a37ed1ccf9763468ec2ec520ad9f9d4a3f6a94b1f43a2634fbf7:log:9', 'hash': '0xac06c00af6d8a37ed1ccf9763468ec2ec520ad9f9d4a3f6a94b1f43a2634fbf7', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 80902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1121b4ca0ad55c580000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T07:13:00.000Z'}}, {'blockNum': '0x9040a7', 'uniqueId': '0x6d1f15aecf2e86d8bd7f024530a9cc2a1dfa8706b22d40e47cfc8ba0c9b07540:log:31', 'hash': '0x6d1f15aecf2e86d8bd7f024530a9cc2a1dfa8706b22d40e47cfc8ba0c9b07540', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1121b4ca0ad55c580000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T07:29:22.000Z'}}, {'blockNum': '0x9040f4', 'uniqueId': '0x8fc3fed42f14bef670ca45cc50210a3f4aaf8d61562d5c972e5eaa1e70f2b149:log:37', 'hash': '0x8fc3fed42f14bef670ca45cc50210a3f4aaf8d61562d5c972e5eaa1e70f2b149', 'from': '0x42d852676229551ef51e1720e56f61c6d4cd06ba', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 314637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x42a08185c1ba94140000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T07:47:09.000Z'}}, {'blockNum': '0x904126', 'uniqueId': '0x872d49bff7b4c387fafeb05b583c9b5c9ea19400997219184c302243a9ffd470:log:78', 'hash': '0x872d49bff7b4c387fafeb05b583c9b5c9ea19400997219184c302243a9ffd470', 'from': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 314637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x42a08185c1ba94140000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T07:59:36.000Z'}}, {'blockNum': '0x904149', 'uniqueId': '0x67c08b5deebb6944bcadb75841c46b98f01302107d85cc844d5a4857646ff037:log:1', 'hash': '0x67c08b5deebb6944bcadb75841c46b98f01302107d85cc844d5a4857646ff037', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 1982884.1118693554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01a3e45cf3b6e5a324c2d2', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T08:08:50.000Z'}}, {'blockNum': '0x90414d', 'uniqueId': '0xe01108fbcaefa447a115a8329c3530db5db3f5966b22d66bf3b7b524ad6a99f7:log:136', 'hash': '0xe01108fbcaefa447a115a8329c3530db5db3f5966b22d66bf3b7b524ad6a99f7', 'from': '0xcdb50e3ce185a536f0ba671c45340c6be4c2de4f', 'to': '0xcd2946877654f7c25cdd23dd59da1ca2d92a5b25', 'value': 1626.176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x5827b9b82679a00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T08:09:13.000Z'}}, {'blockNum': '0x904175', 'uniqueId': '0xec3096e4f16482386f7898b4d4a307ea3d40579b7693f5d72a751aa9654854cd:log:4', 'hash': '0xec3096e4f16482386f7898b4d4a307ea3d40579b7693f5d72a751aa9654854cd', 'from': '0xcd2946877654f7c25cdd23dd59da1ca2d92a5b25', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1626.176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x5827b9b82679a00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T08:19:09.000Z'}}, {'blockNum': '0x904207', 'uniqueId': '0xa80bef5d6cfe9e2ff5ac81b8483169b1ec6136e90052f53ed5cfc30bdc432b3c:log:79', 'hash': '0xa80bef5d6cfe9e2ff5ac81b8483169b1ec6136e90052f53ed5cfc30bdc432b3c', 'from': '0x2a2820d424ed72e9466c89e9c7737df344be75dd', 'to': '0xd8ec88fbaffbdb5253612ba381beda03c1c9eec5', 'value': 152.351049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x08424ba7e003219000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T08:52:30.000Z'}}, {'blockNum': '0x904312', 'uniqueId': '0x6ad037e50d1d1e4a3689baab8621efbb5198d086b5b93befe4d10bae322b7d0e:log:76', 'hash': '0x6ad037e50d1d1e4a3689baab8621efbb5198d086b5b93befe4d10bae322b7d0e', 'from': '0x8078ef3b2d8e864f0f24f1c3592651f31b4610d5', 'to': '0x20b029cb9ec3cddf7efc7ea9463ae46ce142f725', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T09:43:42.000Z'}}, {'blockNum': '0x90432e', 'uniqueId': '0xf131e4fdacbee74f1a298620f4a4024ac6d78a564c6d6172ecd53d0ad247b9ab:log:30', 'hash': '0xf131e4fdacbee74f1a298620f4a4024ac6d78a564c6d6172ecd53d0ad247b9ab', 'from': '0x20b029cb9ec3cddf7efc7ea9463ae46ce142f725', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T09:49:07.000Z'}}, {'blockNum': '0x9043b7', 'uniqueId': '0xbb5a0b509b958f44a31473c5033184d3098de04caf903aea1b95f82a731874da:log:8', 'hash': '0xbb5a0b509b958f44a31473c5033184d3098de04caf903aea1b95f82a731874da', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xac4acf8aebc20827067c61ca3ddbef83c405fc09', 'value': 65568.236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0de27610ee98d37e0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T10:18:34.000Z'}}, {'blockNum': '0x904462', 'uniqueId': '0x8fed25f0f060763bd0a7843c1ed05685885bc0d340174a43794d66196c800505:log:15', 'hash': '0x8fed25f0f060763bd0a7843c1ed05685885bc0d340174a43794d66196c800505', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xac4acf8aebc20827067c61ca3ddbef83c405fc09', 'value': 70159.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0edb5c98ba4bc71c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T10:56:20.000Z'}}, {'blockNum': '0x9044a7', 'uniqueId': '0x9ef2a2d56e8a7a87742a359672b472940f8f793cb70e386f8c59b701ef0f25a9:log:0', 'hash': '0x9ef2a2d56e8a7a87742a359672b472940f8f793cb70e386f8c59b701ef0f25a9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xac4acf8aebc20827067c61ca3ddbef83c405fc09', 'value': 23237.609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04ebb69b5b5ef42a8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:11:04.000Z'}}, {'blockNum': '0x90452c', 'uniqueId': '0x3b9a61cfc1064d72c049d812ad448d71738c53a9de92879051e4be2f82502ab1:log:80', 'hash': '0x3b9a61cfc1064d72c049d812ad448d71738c53a9de92879051e4be2f82502ab1', 'from': '0x11ce0091087622aa93c95424eefe2aaf3df9dba3', 'to': '0x73654ad779936826d9df2945ad5ffb7d04da3850', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:38:56.000Z'}}, {'blockNum': '0x90455b', 'uniqueId': '0xc9ad8840a9e471dab646581fc1a0470a08f6b49798b613b860fa238380628330:log:29', 'hash': '0xc9ad8840a9e471dab646581fc1a0470a08f6b49798b613b860fa238380628330', 'from': '0x0aa202d23ac9bb0f4f269feb60d16f34fc21995f', 'to': '0xaff11b7b4b56f688769ac7af3b526cc58949d675', 'value': 6206.003228036126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01506d988f15a4cdc297', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:48:48.000Z'}}, {'blockNum': '0x90455c', 'uniqueId': '0xca38c4d3fe6b2b6446644b02e925bd25abe9ae404e8783fef565f743b3676f48:log:50', 'hash': '0xca38c4d3fe6b2b6446644b02e925bd25abe9ae404e8783fef565f743b3676f48', 'from': '0x73654ad779936826d9df2945ad5ffb7d04da3850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:49:05.000Z'}}, {'blockNum': '0x90459a', 'uniqueId': '0x6fbab0a3fceac8b39908ea130acc6b93dfd0ed40c76b3589f7547610bdfb3944:log:30', 'hash': '0x6fbab0a3fceac8b39908ea130acc6b93dfd0ed40c76b3589f7547610bdfb3944', 'from': '0xaff11b7b4b56f688769ac7af3b526cc58949d675', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6206.003228036126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01506d988f15a4cdc297', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:59:14.000Z'}}, {'blockNum': '0x9045b6', 'uniqueId': '0x4988cecc50d7f7e800e02c12bee41d330a41a617aa7fdc919a1a26ca24b1a36c:log:25', 'hash': '0x4988cecc50d7f7e800e02c12bee41d330a41a617aa7fdc919a1a26ca24b1a36c', 'from': '0xfe47e763ccfed7d796ff72b603c78ace6725e272', 'to': '0x377c1cd7b27cde8f1c2ee51657b116d17f20e201', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T12:05:40.000Z'}}, {'blockNum': '0x9045f4', 'uniqueId': '0x2a862a46079f909b4ad3933711e7ec43a9dcc770146795c2da254d6e53511a05:log:19', 'hash': '0x2a862a46079f909b4ad3933711e7ec43a9dcc770146795c2da254d6e53511a05', 'from': '0x377c1cd7b27cde8f1c2ee51657b116d17f20e201', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T12:19:07.000Z'}}, {'blockNum': '0x9046d1', 'uniqueId': '0x22a4b5562fa7d90ac9f62085629c15ff75de9563e371779fe4855fe4fe440e93:log:1', 'hash': '0x22a4b5562fa7d90ac9f62085629c15ff75de9563e371779fe4855fe4fe440e93', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6e7c9cd92d01ac5e139a983cc5a06b24e64d3d6c', 'value': 24870.1066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0544360fe93a59e68000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T13:15:02.000Z'}}, {'blockNum': '0x904713', 'uniqueId': '0x7615a278eeb0748eb356fe63932d0ec08187144fb5d94e75ce45c5dff2d8d158:log:26', 'hash': '0x7615a278eeb0748eb356fe63932d0ec08187144fb5d94e75ce45c5dff2d8d158', 'from': '0x6e7c9cd92d01ac5e139a983cc5a06b24e64d3d6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24870.1066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0544360fe93a59e68000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T13:29:01.000Z'}}, {'blockNum': '0x904786', 'uniqueId': '0x62f6dc75a3f5a9987a3e5ed0fe7258c00a49dac6692b3366be41d2ea3c0cd36f:log:25', 'hash': '0x62f6dc75a3f5a9987a3e5ed0fe7258c00a49dac6692b3366be41d2ea3c0cd36f', 'from': '0x10d6bc851e1c64234a9b38b0277fff131e64e192', 'to': '0xdb3b046cf0735a79622babcad10f1060218774a7', 'value': 2060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x6fac3e2da6f8b00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T13:53:08.000Z'}}, {'blockNum': '0x90478c', 'uniqueId': '0xbef4121298a11961c847455ae974f073a240efa8212ad3a1fa45ce407edc0273:log:27', 'hash': '0xbef4121298a11961c847455ae974f073a240efa8212ad3a1fa45ce407edc0273', 'from': '0x1c0d46340a1df3a67c93d92037350f2d99756a6d', 'to': '0xdb3b046cf0735a79622babcad10f1060218774a7', 'value': 19192.28782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04106a7f7730ec20c000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T13:54:15.000Z'}}, {'blockNum': '0x9047b1', 'uniqueId': '0x2061e457c361e568725a87523d90562c3bb2ed9400722301c20438752b8ca0a6:log:53', 'hash': '0x2061e457c361e568725a87523d90562c3bb2ed9400722301c20438752b8ca0a6', 'from': '0xdb3b046cf0735a79622babcad10f1060218774a7', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 22060.96718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04abed6bde324b0cc000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T14:00:40.000Z'}}, {'blockNum': '0x9048ec', 'uniqueId': '0x4721b762f8b4c18e09a1904802f7a548875c7685b937b176b7b96f3edc95c44f:log:0', 'hash': '0x4721b762f8b4c18e09a1904802f7a548875c7685b937b176b7b96f3edc95c44f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 31642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06b350f6397fbe280000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T15:10:58.000Z'}}, {'blockNum': '0x904910', 'uniqueId': '0x63926e134d2856b87a6bc6e4346de9ca229c2422307011baa998e231438efc94:log:137', 'hash': '0x63926e134d2856b87a6bc6e4346de9ca229c2422307011baa998e231438efc94', 'from': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 31642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06b350f6397fbe280000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T15:20:35.000Z'}}, {'blockNum': '0x904925', 'uniqueId': '0xd3ff364ec2177d4ae9ac5af19677766bf6c2ef182da946891419d5d25933d60e:log:113', 'hash': '0xd3ff364ec2177d4ae9ac5af19677766bf6c2ef182da946891419d5d25933d60e', 'from': '0x4bae9c13d53c982d04e921c1fb77ed6369b5ce4b', 'to': '0x915d6f41640bdde7bb054dd2ce06c4ddf67c457f', 'value': 3891.8482741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xd2fa3e9965e7960800', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T15:26:51.000Z'}}, {'blockNum': '0x9049ff', 'uniqueId': '0x77786cc063f6ebd8fbf345d26a6cb62cb89889e0b4f28bc0324ef27e7e2a3b69:log:25', 'hash': '0x77786cc063f6ebd8fbf345d26a6cb62cb89889e0b4f28bc0324ef27e7e2a3b69', 'from': '0x915d6f41640bdde7bb054dd2ce06c4ddf67c457f', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 3891.8482741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xd2fa3e9965e7960800', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T16:13:12.000Z'}}, {'blockNum': '0x904b0e', 'uniqueId': '0xf27bbc9ecf90f4e8380a970f955239826c5a33dc465a9f772715c484f4025ecc:log:22', 'hash': '0xf27bbc9ecf90f4e8380a970f955239826c5a33dc465a9f772715c484f4025ecc', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x22d09786f0c0f987748f54631181f661fa3bcf6c', 'value': 2.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1db2cea96b560000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T17:10:27.000Z'}}, {'blockNum': '0x904c19', 'uniqueId': '0x97276b457fa027c4dba6f3083215306677604dc472112463f28b63177d1e4299:log:62', 'hash': '0x97276b457fa027c4dba6f3083215306677604dc472112463f28b63177d1e4299', 'from': '0x9ab9c3c1a3edd182491c8db18e12a2aa9599ada5', 'to': '0x672710abca4aebcdc57ed2fc9f444cf3fddcb652', 'value': 596.27502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x2052fa6b7d52f0c000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T18:03:56.000Z'}}, {'blockNum': '0x904d4a', 'uniqueId': '0xaec439e441dfe756950151300a1dded6e15df8932d0a08eb63b8556d1f863e4a:log:191', 'hash': '0xaec439e441dfe756950151300a1dded6e15df8932d0a08eb63b8556d1f863e4a', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'value': 11615.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0275b2fed252fbf60000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T19:08:46.000Z'}}, {'blockNum': '0x904d9d', 'uniqueId': '0xbdf998deaee05c91ab46624ff8afc7e489bbc5a320d6e8ea7bf7cbece7935074:log:5', 'hash': '0xbdf998deaee05c91ab46624ff8afc7e489bbc5a320d6e8ea7bf7cbece7935074', 'from': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11615.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0275b2fed252fbf60000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T19:29:07.000Z'}}, {'blockNum': '0x904e11', 'uniqueId': '0xeb1177d040e07903f1f6b7fad4b067fc2c9658dd8b97a389ecd2f981322496d3:log:3', 'hash': '0xeb1177d040e07903f1f6b7fad4b067fc2c9658dd8b97a389ecd2f981322496d3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5f6034ba1ffef3c88d76200c0a47e3882af51e1d', 'value': 19819.031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0432644e88c5fed58000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T19:53:48.000Z'}}, {'blockNum': '0x904e35', 'uniqueId': '0xde1f04cdbbb16ef0e26cc5f833adfc74cdedfe0b01da251d785893bb38accce0:log:49', 'hash': '0xde1f04cdbbb16ef0e26cc5f833adfc74cdedfe0b01da251d785893bb38accce0', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 26801.91397473501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05acef466565320eff80', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:00:55.000Z'}}, {'blockNum': '0x904e39', 'uniqueId': '0x54240d8a77f7e26329d3774afbf64909a97e0d9d9b12e156574255e52bf94d30:log:73', 'hash': '0x54240d8a77f7e26329d3774afbf64909a97e0d9d9b12e156574255e52bf94d30', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 26801.91397473501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05acef466565320eff80', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:02:01.000Z'}}, {'blockNum': '0x904e3a', 'uniqueId': '0xfab9412a6849fca41fdcf1d0b4d7080d7d7cf0914417b01a0b9717df20e9f2e0:log:5', 'hash': '0xfab9412a6849fca41fdcf1d0b4d7080d7d7cf0914417b01a0b9717df20e9f2e0', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 103189.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15d9e7359da83fd20000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:02:14.000Z'}}, {'blockNum': '0x904e42', 'uniqueId': '0xb25de5c509b198a2b02a91018f38d3208204aa239fa51082aba0a4ea44cdd42a:log:61', 'hash': '0xb25de5c509b198a2b02a91018f38d3208204aa239fa51082aba0a4ea44cdd42a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 13331.232342541029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02d2b0037fa51c9a23f0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:05:14.000Z'}}, {'blockNum': '0x904e44', 'uniqueId': '0x729e3e4e5447322c65464607a62bccc74a49238f27421b3a605a9cef933a2807:log:4', 'hash': '0x729e3e4e5447322c65464607a62bccc74a49238f27421b3a605a9cef933a2807', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 145621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1ed621569ee026340000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:06:45.000Z'}}, {'blockNum': '0x904e45', 'uniqueId': '0x620348fd0a89d1dfe13ed913b6b373ce0141753ced38c32a8018e8410021e451:log:26', 'hash': '0x620348fd0a89d1dfe13ed913b6b373ce0141753ced38c32a8018e8410021e451', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 13331.232342541029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02d2b0037fa51c9a23f0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:06:58.000Z'}}, {'blockNum': '0x904e46', 'uniqueId': '0xfd3f755fa35a6208ae1a8799d39ad7187d5c5d8745c8f16914eb8f4928802cde:log:83', 'hash': '0xfd3f755fa35a6208ae1a8799d39ad7187d5c5d8745c8f16914eb8f4928802cde', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 9822.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x021477cb91396746bdc0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:07:51.000Z'}}, {'blockNum': '0x904e4c', 'uniqueId': '0x828cd121566b388f7869dc5336a20088b310b5b4aecdc6552e12c902d60f693e:log:1', 'hash': '0x828cd121566b388f7869dc5336a20088b310b5b4aecdc6552e12c902d60f693e', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 115734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1881f3e4e6fcf2980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:08:31.000Z'}}, {'blockNum': '0x904e4d', 'uniqueId': '0x2634c1eba54a5fd711a2ee4f89501e7a3c05d4c1abbea16025392920a68a3704:log:2', 'hash': '0x2634c1eba54a5fd711a2ee4f89501e7a3c05d4c1abbea16025392920a68a3704', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 197104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x29bd077cf24051c00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:08:46.000Z'}}, {'blockNum': '0x904e4d', 'uniqueId': '0xf4002cffa700eeb88d50985266ed48f2054d9f78e9ba966555b3ea28bff05714:log:3', 'hash': '0xf4002cffa700eeb88d50985266ed48f2054d9f78e9ba966555b3ea28bff05714', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 61661.342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0d0eab052d3562830000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:08:46.000Z'}}, {'blockNum': '0x904e4e', 'uniqueId': '0x02b09b74baef8a08cc4614eb0a8baac25533bd2764a9dddad7e002a8178200f3:log:7', 'hash': '0x02b09b74baef8a08cc4614eb0a8baac25533bd2764a9dddad7e002a8178200f3', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26801.91397473501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05acef466565320eff80', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:09:14.000Z'}}, {'blockNum': '0x904e4e', 'uniqueId': '0xaef44c5d2b34a8336407786ffbc32fb9f7617d4de078433be5667a4ea150665d:log:8', 'hash': '0xaef44c5d2b34a8336407786ffbc32fb9f7617d4de078433be5667a4ea150665d', 'from': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13331.232342541029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02d2b0037fa51c9a23f0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:09:14.000Z'}}, {'blockNum': '0x904e4f', 'uniqueId': '0xcd1a09fadaa1acb7369ff325a828a2362cd95d2d154119af824f129c01c7ef1e:log:47', 'hash': '0xcd1a09fadaa1acb7369ff325a828a2362cd95d2d154119af824f129c01c7ef1e', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0xec0aa21553524f464e835a7a496c3ff709a016bb', 'value': 63104.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0d5ce6dc58079db20000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:09:21.000Z'}}, {'blockNum': '0x904e56', 'uniqueId': '0x48c8f466b6f4b3a47878bf3e9825004a93df9c3970a167e76cd0a5a6d8fffd95:log:27', 'hash': '0x48c8f466b6f4b3a47878bf3e9825004a93df9c3970a167e76cd0a5a6d8fffd95', 'from': '0x61d1b4ee647ed7b337ebf13917ecdaa8a17f30f7', 'to': '0xf2b79c13636e9ce3f766ecbfce3748aee810adb5', 'value': 460376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x617d08709769e2600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:11:53.000Z'}}, {'blockNum': '0x904e58', 'uniqueId': '0x85c4edce79c74174917c98502849245008327fcda0c38cd5bceb8aa920df3371:log:30', 'hash': '0x85c4edce79c74174917c98502849245008327fcda0c38cd5bceb8aa920df3371', 'from': '0xf2b79c13636e9ce3f766ecbfce3748aee810adb5', 'to': '0x328a21786314ec74ff13a1aab8ad3eb056724e45', 'value': 460376.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x617d1471b054a5168000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:12:33.000Z'}}, {'blockNum': '0x904e58', 'uniqueId': '0xba723231886a7cd2cab57c957165a80369f50d1176c2853df783a091756eb387:log:32', 'hash': '0xba723231886a7cd2cab57c957165a80369f50d1176c2853df783a091756eb387', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0xcdfbb4c66852b62ca488943942f9c544029deb91', 'value': 7940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01ae6da29c13b9900000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:12:33.000Z'}}, {'blockNum': '0x904e69', 'uniqueId': '0x9e318e266c98d82ffd75675ea4e156295f07725acce4bf868a74e69ba1ecd184:log:49', 'hash': '0x9e318e266c98d82ffd75675ea4e156295f07725acce4bf868a74e69ba1ecd184', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 9356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01fb30952dc99ab00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:15:53.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x1d3f277c22511352cfed0409a88720a4aa8d23d82793aea57c470b3685d88879:log:16', 'hash': '0x1d3f277c22511352cfed0409a88720a4aa8d23d82793aea57c470b3685d88879', 'from': '0x328a21786314ec74ff13a1aab8ad3eb056724e45', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 460376.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x617d1471b054a5168000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x1b500cd597336d8cd72d76d99e93c51c3ff1cc35c1d981bfdbf6d6b79a359a48:log:21', 'hash': '0x1b500cd597336d8cd72d76d99e93c51c3ff1cc35c1d981bfdbf6d6b79a359a48', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 61661.342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0d0eab052d3562830000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0xe3f86152fceb814d1c7084dc262e2031df38ffe8a3afefcfa496a0c04a7aec98:log:22', 'hash': '0xe3f86152fceb814d1c7084dc262e2031df38ffe8a3afefcfa496a0c04a7aec98', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 103189.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15d9e7359da83fd20000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x46201997ed4b1e34498b195df3a98a340d101f35683a8ac03d2955fb1de2da3a:log:26', 'hash': '0x46201997ed4b1e34498b195df3a98a340d101f35683a8ac03d2955fb1de2da3a', 'from': '0xec0aa21553524f464e835a7a496c3ff709a016bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63104.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0d5ce6dc58079db20000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0xf527fd28e728e218ac58d0047e7804d747d2461cd771cf42ca2f79ed3da70668:log:28', 'hash': '0xf527fd28e728e218ac58d0047e7804d747d2461cd771cf42ca2f79ed3da70668', 'from': '0xcdfbb4c66852b62ca488943942f9c544029deb91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01ae6da29c13b9900000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0xcf5a58a7dc5294048bdc9b00c9850696149d529d1cea1c57762fadb54b41dbd6:log:29', 'hash': '0xcf5a58a7dc5294048bdc9b00c9850696149d529d1cea1c57762fadb54b41dbd6', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19178.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x040fa860bf0301f6bdc0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0xd3d19e5d5228d99fa986eabddeb694143e5395351e14fdee848f9f23cefe8145:log:32', 'hash': '0xd3d19e5d5228d99fa986eabddeb694143e5395351e14fdee848f9f23cefe8145', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 197104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x29bd077cf24051c00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x1b3fb8ebb12b8a05ee62cdc44cef38da823101b948c0af434c28518f9533349e:log:34', 'hash': '0x1b3fb8ebb12b8a05ee62cdc44cef38da823101b948c0af434c28518f9533349e', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 115734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1881f3e4e6fcf2980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x83003888d2e079f65f02897795ee7420ca2ed5910ad1afb951afe871135bece6:log:40', 'hash': '0x83003888d2e079f65f02897795ee7420ca2ed5910ad1afb951afe871135bece6', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x060e11201967bf009810e23659c580a825a92628', 'value': 29982.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0659605a10c6e51f0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e89', 'uniqueId': '0x75a3c755c83293d455f17d094c7743a8fad63115bd68870f56941013361085a4:log:1', 'hash': '0x75a3c755c83293d455f17d094c7743a8fad63115bd68870f56941013361085a4', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 69171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ea5c475e055d0ec0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:21:32.000Z'}}, {'blockNum': '0x904e91', 'uniqueId': '0x09d7ded8f93ab6ab8c5c40046ab13285c95e1414f3bbcdf50c261f148d674785:log:0', 'hash': '0x09d7ded8f93ab6ab8c5c40046ab13285c95e1414f3bbcdf50c261f148d674785', 'from': '0x53b88d86582555eaca01b205a2f620eca477562a', 'to': '0x323ae8c3404090c4ffe35c16fc9ee5f6fb4da7d3', 'value': 2938.84724379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x9f50b2cd8c06c30c00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:22:45.000Z'}}, {'blockNum': '0x904e95', 'uniqueId': '0x6c7c451ab88f06322ac7d9ca7a0299227b7486978249977251b810067a660d0b:log:73', 'hash': '0x6c7c451ab88f06322ac7d9ca7a0299227b7486978249977251b810067a660d0b', 'from': '0x5f6034ba1ffef3c88d76200c0a47e3882af51e1d', 'to': '0x1f8de64e08d33f20d21ec80b2dc1eb81f691860e', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:23:10.000Z'}}, {'blockNum': '0x904ea2', 'uniqueId': '0xaff89dbd1aac1c9e81810c14dd5b39ba9f835632b2a1a4101d03adec8c429468:log:37', 'hash': '0xaff89dbd1aac1c9e81810c14dd5b39ba9f835632b2a1a4101d03adec8c429468', 'from': '0x060e11201967bf009810e23659c580a825a92628', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 29982.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0659605a10c6e51f0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:24:52.000Z'}}, {'blockNum': '0x904ebe', 'uniqueId': '0xda2468a1b3e83a7aebee1338c13f491d515817cc9eefd54a25b26ceeec404a78:log:20', 'hash': '0xda2468a1b3e83a7aebee1338c13f491d515817cc9eefd54a25b26ceeec404a78', 'from': '0x1f8de64e08d33f20d21ec80b2dc1eb81f691860e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:28:53.000Z'}}, {'blockNum': '0x904ebe', 'uniqueId': '0xdf75e9589e2ab14f092a31d87131aee718d4e281a790ffcdc1021cd001cd5cbf:log:35', 'hash': '0xdf75e9589e2ab14f092a31d87131aee718d4e281a790ffcdc1021cd001cd5cbf', 'from': '0x323ae8c3404090c4ffe35c16fc9ee5f6fb4da7d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2938.84724379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x9f50b2cd8c06c30c00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:28:53.000Z'}}, {'blockNum': '0x904ebe', 'uniqueId': '0x4c6ee6cbaa62727998b40c9bc6cb8e0adc521be1658ee0fbfd2349748620321a:log:41', 'hash': '0x4c6ee6cbaa62727998b40c9bc6cb8e0adc521be1658ee0fbfd2349748620321a', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ea5c475e055d0ec0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:28:53.000Z'}}, {'blockNum': '0x904edc', 'uniqueId': '0x287ab2cdebcebba433f7fa127c94e700b6fe3e4a877b5ade6f3ee9aa777a2bfa:log:0', 'hash': '0x287ab2cdebcebba433f7fa127c94e700b6fe3e4a877b5ade6f3ee9aa777a2bfa', 'from': '0x06dab868bf9b2b3f75908360283fb2b894812dfb', 'to': '0x496c4996464c813c054e93493360baa1f9e343aa', 'value': 41205.353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x08b9bf253e2ee86a8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:37:40.000Z'}}, {'blockNum': '0x904ef5', 'uniqueId': '0xcd6f996cdd95d18fb3de3f4595743909961f56f4e40af7597a810ed99316a545:log:7', 'hash': '0xcd6f996cdd95d18fb3de3f4595743909961f56f4e40af7597a810ed99316a545', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:41:50.000Z'}}, {'blockNum': '0x904eff', 'uniqueId': '0x3e40ef0fee5a6af87bd9054ac1c791cc26f5b0f681d699397bfaa826a0697414:log:40', 'hash': '0x3e40ef0fee5a6af87bd9054ac1c791cc26f5b0f681d699397bfaa826a0697414', 'from': '0x496c4996464c813c054e93493360baa1f9e343aa', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 41205.353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x08b9bf253e2ee86a8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:42:29.000Z'}}, {'blockNum': '0x904eff', 'uniqueId': '0x51d829e86aa325becb068a2b366d4f0fdaba49abd32fa75f9d33429075e1943c:log:41', 'hash': '0x51d829e86aa325becb068a2b366d4f0fdaba49abd32fa75f9d33429075e1943c', 'from': '0xa79a45ed456fbccb48f192b31846b07f96fcb0d4', 'to': '0x173a8b18ee40f0cfa067ecc22444dc7e487755e4', 'value': 5400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0124bc0ddd92e5600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:42:29.000Z'}}, {'blockNum': '0x904f1e', 'uniqueId': '0x4fe34fdec0c8decc3b858a1cd42e735f840a074107cbac356d1abb5a2111c32e:log:3', 'hash': '0x4fe34fdec0c8decc3b858a1cd42e735f840a074107cbac356d1abb5a2111c32e', 'from': '0x5f58d619ae9714743fd0cc2bdd5b871d6a44c680', 'to': '0x36111519695021fda7b390854cea4bb0a5930d05', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:50:39.000Z'}}, {'blockNum': '0x904f20', 'uniqueId': '0x8a6199adf088427ebb3c0774084a0d8eed6a85ab137be2120c455e2c802090f2:log:2', 'hash': '0x8a6199adf088427ebb3c0774084a0d8eed6a85ab137be2120c455e2c802090f2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 82365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x117103fe2786f8d40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:52:05.000Z'}}, {'blockNum': '0x904f22', 'uniqueId': '0xee1d205bd72708e4e40a787e2387225f0125984c45e55c9f018e68ebc0425831:log:106', 'hash': '0xee1d205bd72708e4e40a787e2387225f0125984c45e55c9f018e68ebc0425831', 'from': '0xad1d10f870110838342f0d8771fd6351c864ec3e', 'to': '0x6f65fa3437ad48f83031c8d6e1d5742166fea585', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:52:57.000Z'}}, {'blockNum': '0x904f2b', 'uniqueId': '0x88b26f6b347715055705499d94507b39734a909da9de2eb87e66e7a4f3176e91:log:71', 'hash': '0x88b26f6b347715055705499d94507b39734a909da9de2eb87e66e7a4f3176e91', 'from': '0xf9865219a179120be194cef843ff3957bd49ed83', 'to': '0xd46548c6fc01b70e767dc0b33ec62ab77c3e58d1', 'value': 20004.02668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c6ba3379594ab8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:55:07.000Z'}}, {'blockNum': '0x904f30', 'uniqueId': '0x3cd87277e9c1d2383eaaaa1e1dcb0914f96f9dfd2cf74de4e364c74edf83551d:log:5', 'hash': '0x3cd87277e9c1d2383eaaaa1e1dcb0914f96f9dfd2cf74de4e364c74edf83551d', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 139370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1d8343496a17cf680000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:56:48.000Z'}}, {'blockNum': '0x904f33', 'uniqueId': '0xcad1ad964e7873a95a4874b32f6c2a6d95a86c72b14105adf661629efc2cd0ae:log:1', 'hash': '0xcad1ad964e7873a95a4874b32f6c2a6d95a86c72b14105adf661629efc2cd0ae', 'from': '0x15f82ce2a2e0c79b70d286f26350acd382499e14', 'to': '0xcd9b0f8da28a263dc7f23376a5dde0b3113e792a', 'value': 89917.49442165424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x130a6fe86530fce147b5', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:56:56.000Z'}}, {'blockNum': '0x904f37', 'uniqueId': '0x8480c3da12e93ec00c13148cb13d8c28c4df36a6ce4ec24c26bd2f2aef28c1d5:log:2', 'hash': '0x8480c3da12e93ec00c13148cb13d8c28c4df36a6ce4ec24c26bd2f2aef28c1d5', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:58:56.000Z'}}, {'blockNum': '0x904f37', 'uniqueId': '0xef1efe71f5a976da4706742250f53485eadd57d9f06544e6b9c6c8aeeae95c37:log:3', 'hash': '0xef1efe71f5a976da4706742250f53485eadd57d9f06544e6b9c6c8aeeae95c37', 'from': '0x173a8b18ee40f0cfa067ecc22444dc7e487755e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0124bc0ddd92e5600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:58:56.000Z'}}, {'blockNum': '0x904f38', 'uniqueId': '0x0a73c2b65ae3627186323ae571ee3e260822dfb11f5dd1abab85ad9cdb13f66b:log:0', 'hash': '0x0a73c2b65ae3627186323ae571ee3e260822dfb11f5dd1abab85ad9cdb13f66b', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x117103fe2786f8d40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:59:06.000Z'}}, {'blockNum': '0x904f38', 'uniqueId': '0x14a491abd8486e0d54018f38cf36a006a07f601078f340a071e835d6126ead75:log:8', 'hash': '0x14a491abd8486e0d54018f38cf36a006a07f601078f340a071e835d6126ead75', 'from': '0x36111519695021fda7b390854cea4bb0a5930d05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0144b7f2ef9eadd80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:59:06.000Z'}}, {'blockNum': '0x904f47', 'uniqueId': '0xf5c07dc917c6fc7109dd890d34283698c09c21f54e4cc2b5f176cacf32847847:log:0', 'hash': '0xf5c07dc917c6fc7109dd890d34283698c09c21f54e4cc2b5f176cacf32847847', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:01:36.000Z'}}, {'blockNum': '0x904f59', 'uniqueId': '0x08a0672b7231de129b061bc7bf894939d995fa3f33337cb53b321fac6f1812f8:log:3', 'hash': '0x08a0672b7231de129b061bc7bf894939d995fa3f33337cb53b321fac6f1812f8', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 248010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3484a6277ab434e80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:05:50.000Z'}}, {'blockNum': '0x904f59', 'uniqueId': '0x834818de5211bd5b66298aea9eb9d2e99a07d0df39487d5b55d4cd0301603e78:log:4', 'hash': '0x834818de5211bd5b66298aea9eb9d2e99a07d0df39487d5b55d4cd0301603e78', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 113225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x17f9f086483d63840000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:05:50.000Z'}}, {'blockNum': '0x904f5c', 'uniqueId': '0x6a73ff28a32645a54478d95540779bff58d737e37e81109ad772244dd0b30207:log:10', 'hash': '0x6a73ff28a32645a54478d95540779bff58d737e37e81109ad772244dd0b30207', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 31512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06ac44d97244bd600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:06:35.000Z'}}, {'blockNum': '0x904f6c', 'uniqueId': '0x93e47ee81c29fb2fb515f1ddd50d1bdf46389a5298f2749d683befa1d4f542a5:log:0', 'hash': '0x93e47ee81c29fb2fb515f1ddd50d1bdf46389a5298f2749d683befa1d4f542a5', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:09:05.000Z'}}, {'blockNum': '0x904f6c', 'uniqueId': '0x8c1f93fb70fef4e9070859f037981358b2d3ccf0eeaca7ca380062c66dbddac6:log:5', 'hash': '0x8c1f93fb70fef4e9070859f037981358b2d3ccf0eeaca7ca380062c66dbddac6', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 139370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1d8343496a17cf680000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:09:05.000Z'}}, {'blockNum': '0x904f6d', 'uniqueId': '0x25c184174a38731ac0fd23418eeb4eae042e8d6db9da1466aae5ab023115ec3e:log:18', 'hash': '0x25c184174a38731ac0fd23418eeb4eae042e8d6db9da1466aae5ab023115ec3e', 'from': '0xcd9b0f8da28a263dc7f23376a5dde0b3113e792a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 89917.49442165424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x130a6fe86530fce147b5', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:09:35.000Z'}}, {'blockNum': '0x904f6d', 'uniqueId': '0xef07f9b7bcae533fa2e22d1c1fd659e343a7ca3714ae8882d9ad03db78c93a3f:log:19', 'hash': '0xef07f9b7bcae533fa2e22d1c1fd659e343a7ca3714ae8882d9ad03db78c93a3f', 'from': '0xd46548c6fc01b70e767dc0b33ec62ab77c3e58d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20004.02668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c6ba3379594ab8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:09:35.000Z'}}, {'blockNum': '0x904f6e', 'uniqueId': '0x801c275aba8167566282c307f9805f731cb0aa2fa2f4b4572773db1599b2061f:log:78', 'hash': '0x801c275aba8167566282c307f9805f731cb0aa2fa2f4b4572773db1599b2061f', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 24609.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05361831d238a2aa0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:10:03.000Z'}}, {'blockNum': '0x904f7b', 'uniqueId': '0x63c7109c8c1aa1db1fc31b0b74011786ca9c37a94de27038be07a414cfe3699f:log:2', 'hash': '0x63c7109c8c1aa1db1fc31b0b74011786ca9c37a94de27038be07a414cfe3699f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 8368.59603245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c5a99998ca8d9b1400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:12:56.000Z'}}, {'blockNum': '0x904f88', 'uniqueId': '0xface6e45f8955ca1318bfef0fe927ee5f42b7a39c9ce9cfbc8394cef323da45a:log:60', 'hash': '0xface6e45f8955ca1318bfef0fe927ee5f42b7a39c9ce9cfbc8394cef323da45a', 'from': '0xad66ece9bf8c71870aecdaf01b06dcf4b3c2f579', 'to': '0xaf09984a8114124939b4153c96c7f4ce0f0c88ee', 'value': 8330, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c391f8f1c4bbe80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:16:10.000Z'}}, {'blockNum': '0x904f8a', 'uniqueId': '0xfbdbd995531554342016d2b6c062e7a8d30240c24d591a1a8e75f25890e265f7:log:11', 'hash': '0xfbdbd995531554342016d2b6c062e7a8d30240c24d591a1a8e75f25890e265f7', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'value': 29982.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0659605a10c6e51f0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:16:18.000Z'}}, {'blockNum': '0x904f90', 'uniqueId': '0xb7e2eccd876425bd063d6a5996b7ce5a44da03d75b3e43ae068f26ca6de7c74d:log:46', 'hash': '0xb7e2eccd876425bd063d6a5996b7ce5a44da03d75b3e43ae068f26ca6de7c74d', 'from': '0x5dcacc7ba7a2abca17fe23ef06c6450eb3e58a3a', 'to': '0x8feaa6cb615a910aa6558237f442108f87e51b76', 'value': 150050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1fc63a0f810723480000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:18:18.000Z'}}, {'blockNum': '0x904f91', 'uniqueId': '0xb0b21d1b410feb4dde20597ee64b06b9423be20c4974d172e524dcd48277e1f5:log:6', 'hash': '0xb0b21d1b410feb4dde20597ee64b06b9423be20c4974d172e524dcd48277e1f5', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8368.59603245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c5a99998ca8d9b1400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:17.000Z'}}, {'blockNum': '0x904f91', 'uniqueId': '0x6b2a9773fa7d9b6584c75443b59192e09f482c06b6588d5463f85c6afabbce05:log:9', 'hash': '0x6b2a9773fa7d9b6584c75443b59192e09f482c06b6588d5463f85c6afabbce05', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24609.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05361831d238a2aa0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:17.000Z'}}, {'blockNum': '0x904f91', 'uniqueId': '0xd6d7953f5b936190a91595f032d89b2d5000d2086992f57eb3d0b4756073e58e:log:10', 'hash': '0xd6d7953f5b936190a91595f032d89b2d5000d2086992f57eb3d0b4756073e58e', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 248010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3484a6277ab434e80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:17.000Z'}}, {'blockNum': '0x904f91', 'uniqueId': '0xb19cc86f1549d87b116122f9e0d52cfcbf4ba7ffb246b5c5f0fe5d8f918d82a2:log:11', 'hash': '0xb19cc86f1549d87b116122f9e0d52cfcbf4ba7ffb246b5c5f0fe5d8f918d82a2', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x17f9f086483d63840000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:17.000Z'}}, {'blockNum': '0x904f94', 'uniqueId': '0x4478cce21f90f88c7ecdfba820794ebd6371c55fad270a2b0a08d7a74c3c45d1:log:34', 'hash': '0x4478cce21f90f88c7ecdfba820794ebd6371c55fad270a2b0a08d7a74c3c45d1', 'from': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 31512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06ac44d97244bd600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:55.000Z'}}, {'blockNum': '0x904f98', 'uniqueId': '0x4a42d73e097be85b1acf08e3ecb5337c222d3b3ada651ecd3c6371e196440073:log:0', 'hash': '0x4a42d73e097be85b1acf08e3ecb5337c222d3b3ada651ecd3c6371e196440073', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:21:07.000Z'}}, {'blockNum': '0x904f9e', 'uniqueId': '0x7c0e9cbb79421beaa7b1dc2e5d539437222cfe3076e80957ca4219caae2b619f:log:0', 'hash': '0x7c0e9cbb79421beaa7b1dc2e5d539437222cfe3076e80957ca4219caae2b619f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 1951281.4275232065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x019d332d9ac045b4c68b7c', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:21:38.000Z'}}, {'blockNum': '0x904fa7', 'uniqueId': '0x2d736b365380e839dc719c3afaee9b59776cf51375cde3e06aef395e6ca77b1c:log:8', 'hash': '0x2d736b365380e839dc719c3afaee9b59776cf51375cde3e06aef395e6ca77b1c', 'from': '0xfd90a87ee40ef261b7bb9d53f9eb70238cb8dcf8', 'to': '0x11cb43f6cc738da53cd4a8420416fca9d701fe14', 'value': 160.423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x08b250fc8ae27d8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:22:52.000Z'}}, {'blockNum': '0x904fbb', 'uniqueId': '0xd62bf57502a7ca26e91b1e9b9c1d240ad88c8419671abcf524fd06a3e3ab6e96:log:49', 'hash': '0xd62bf57502a7ca26e91b1e9b9c1d240ad88c8419671abcf524fd06a3e3ab6e96', 'from': '0x16a9e0ffae29f114d851c071e949ade2e1c88eb3', 'to': '0x84b2cd428667e09f35aabee85cfe8b75b202bda6', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:26:49.000Z'}}, {'blockNum': '0x904fc8', 'uniqueId': '0x3f7ee67f20d1490c695f7e53972967b51f3689164b8fc5411542229a0a19d72e:log:6', 'hash': '0x3f7ee67f20d1490c695f7e53972967b51f3689164b8fc5411542229a0a19d72e', 'from': '0xaf09984a8114124939b4153c96c7f4ce0f0c88ee', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8330, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c391f8f1c4bbe80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:28:54.000Z'}}, {'blockNum': '0x904fc8', 'uniqueId': '0x773e1820d05b32cd6b4a4fb9d8ed13f31cd5420138df86c68f2ed332772d55c3:log:7', 'hash': '0x773e1820d05b32cd6b4a4fb9d8ed13f31cd5420138df86c68f2ed332772d55c3', 'from': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29982.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0659605a10c6e51f0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:28:54.000Z'}}, {'blockNum': '0x904fc8', 'uniqueId': '0xbb317b37fba9e4913703d165d2fa76e08320321f3e630d76f6db96574f383ca0:log:23', 'hash': '0xbb317b37fba9e4913703d165d2fa76e08320321f3e630d76f6db96574f383ca0', 'from': '0x8feaa6cb615a910aa6558237f442108f87e51b76', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1fc63a0f810723480000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:28:54.000Z'}}, {'blockNum': '0x904fc8', 'uniqueId': '0x172424f5c320253bf4855f5edc5e599680a8e5314b33f10742752ee9b5468066:log:24', 'hash': '0x172424f5c320253bf4855f5edc5e599680a8e5314b33f10742752ee9b5468066', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:28:54.000Z'}}, {'blockNum': '0x904ff0', 'uniqueId': '0x8352579849589a7e03e7682aaa3a39e5cabd08868dc0fcf07f3ed3f5485df2a0:log:4', 'hash': '0x8352579849589a7e03e7682aaa3a39e5cabd08868dc0fcf07f3ed3f5485df2a0', 'from': '0x84b2cd428667e09f35aabee85cfe8b75b202bda6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:39:09.000Z'}}, {'blockNum': '0x904ffb', 'uniqueId': '0x0aaf6b6cc74a2fd08f9edaaf1dca7af46b814fe267c669c9418b372e46b38837:log:5', 'hash': '0x0aaf6b6cc74a2fd08f9edaaf1dca7af46b814fe267c669c9418b372e46b38837', 'from': '0x7237aad952597ffb76a5e4ddda4d417814f941e0', 'to': '0x0c333fd44e5447d99ab51fc8a2ee41dcc09fa4a4', 'value': 963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34344f45cead2c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:42:30.000Z'}}, {'blockNum': '0x905039', 'uniqueId': '0xe310906caabadf95da887364e38db3b3ca1cfbf42b29fdbd6d77ff2123e23a74:log:4', 'hash': '0xe310906caabadf95da887364e38db3b3ca1cfbf42b29fdbd6d77ff2123e23a74', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 81686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x114c34f99105fe980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:55:05.000Z'}}, {'blockNum': '0x90504e', 'uniqueId': '0x09e0b0559d90039268beb3e5321853642b1845aa95a839fbcf580423cf428a8c:log:2', 'hash': '0x09e0b0559d90039268beb3e5321853642b1845aa95a839fbcf580423cf428a8c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x06197c485e83880bc1741b4fc1fc81c329e7dd4a', 'value': 1967.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x6aae193f9e73360000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:58:47.000Z'}}, {'blockNum': '0x90504e', 'uniqueId': '0x21c328619ddb522bff879086be34fd18cfb50a627ad67179ce4eb9e183408a60:log:38', 'hash': '0x21c328619ddb522bff879086be34fd18cfb50a627ad67179ce4eb9e183408a60', 'from': '0x01368f7aa6f1ad5d0ce99b0f37e994e874f630b4', 'to': '0xdb02ed2a11a835951fa47d443b0ea6c666f35199', 'value': 24986.50676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x054a85705a0890888000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:58:47.000Z'}}, {'blockNum': '0x905050', 'uniqueId': '0x817975cf2d308eda4f8980def7aafc1a9c9a0c06007a040801b3f3ce06cea070:log:6', 'hash': '0x817975cf2d308eda4f8980def7aafc1a9c9a0c06007a040801b3f3ce06cea070', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 81686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x114c34f99105fe980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:59:06.000Z'}}, {'blockNum': '0x905055', 'uniqueId': '0x7c4ca192f77ef3c1bd0e420e9ccc7b579af5197bcac3f3ed5cdb56c4309b6e00:log:153', 'hash': '0x7c4ca192f77ef3c1bd0e420e9ccc7b579af5197bcac3f3ed5cdb56c4309b6e00', 'from': '0x06197c485e83880bc1741b4fc1fc81c329e7dd4a', 'to': '0x0c333fd44e5447d99ab51fc8a2ee41dcc09fa4a4', 'value': 1967.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x6aae193f9e73360000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:00:57.000Z'}}, {'blockNum': '0x905057', 'uniqueId': '0xbab70c7b648c96c809dabb69dc0418c45cdbd16fcd13da9cf5f66c5da2b6c2b1:log:220', 'hash': '0xbab70c7b648c96c809dabb69dc0418c45cdbd16fcd13da9cf5f66c5da2b6c2b1', 'from': '0x0c333fd44e5447d99ab51fc8a2ee41dcc09fa4a4', 'to': '0x372c31ea1b3e0f9fd53448c6696f475355a6afff', 'value': 2269.01624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x7b00ed0884487b0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:01:10.000Z'}}, {'blockNum': '0x905081', 'uniqueId': '0xb920c0ebdcbb1728c06ca2a8a037cf02186422379660d880e0f41e4c8bbc6982:log:12', 'hash': '0xb920c0ebdcbb1728c06ca2a8a037cf02186422379660d880e0f41e4c8bbc6982', 'from': '0xdb02ed2a11a835951fa47d443b0ea6c666f35199', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24986.50676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x054a85705a0890888000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:09:19.000Z'}}, {'blockNum': '0x905081', 'uniqueId': '0xd56e51010c64d3916262a4fa95fbdf54537022a5d597707350eeaa09b1ddc247:log:17', 'hash': '0xd56e51010c64d3916262a4fa95fbdf54537022a5d597707350eeaa09b1ddc247', 'from': '0x372c31ea1b3e0f9fd53448c6696f475355a6afff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2269.01624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x7b00ed0884487b0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:09:19.000Z'}}, {'blockNum': '0x9050e4', 'uniqueId': '0xeb0caf22891492c16cd15a13092eccbd084c80e6609729ae217df4cf251a8008:log:0', 'hash': '0xeb0caf22891492c16cd15a13092eccbd084c80e6609729ae217df4cf251a8008', 'from': '0xb163211a6de7ccf5247c9488ed5bc932db0b9960', 'to': '0xddf1daf6d13b4e8bc8282d8a84e5a623f2a1efc4', 'value': 5000.52410937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x010f1436678f4f6dc400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:29:29.000Z'}}, {'blockNum': '0x90510c', 'uniqueId': '0xbfd1c9a973e135e531a72ea24774a87a4b82d720b5f713792229971212e3b547:log:21', 'hash': '0xbfd1c9a973e135e531a72ea24774a87a4b82d720b5f713792229971212e3b547', 'from': '0xddf1daf6d13b4e8bc8282d8a84e5a623f2a1efc4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000.52410937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x010f1436678f4f6dc400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:39:27.000Z'}}, {'blockNum': '0x905118', 'uniqueId': '0xaf943f1c665e04134a43d559724414f9c5995815bc278af0a865b685a48ffe95:log:44', 'hash': '0xaf943f1c665e04134a43d559724414f9c5995815bc278af0a865b685a48ffe95', 'from': '0x3df96ce06e53fe9a2e9e2db7b5200e272e7eb1d6', 'to': '0xdb349eaeba85a7469a2946efc49650f602b811f9', 'value': 5600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x012f939c99edab800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:42:15.000Z'}}, {'blockNum': '0x905134', 'uniqueId': '0x3281d26a5621fcbd17f83b1463b62807bfff49dca35a513b5dc207cf43521b17:log:8', 'hash': '0x3281d26a5621fcbd17f83b1463b62807bfff49dca35a513b5dc207cf43521b17', 'from': '0xdb349eaeba85a7469a2946efc49650f602b811f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x012f939c99edab800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:49:06.000Z'}}, {'blockNum': '0x90513a', 'uniqueId': '0x9db0c8c52e1549dd6bf1fa98edc48b0fd6c20611f6d29a6b2e8b63840492278a:log:1', 'hash': '0x9db0c8c52e1549dd6bf1fa98edc48b0fd6c20611f6d29a6b2e8b63840492278a', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:50:02.000Z'}}, {'blockNum': '0x905146', 'uniqueId': '0x0d2b6200fbcdaae26439e11e7a8ebf7c28037e6516108b1b6fd517bc524a5db9:log:1', 'hash': '0x0d2b6200fbcdaae26439e11e7a8ebf7c28037e6516108b1b6fd517bc524a5db9', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 290352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3d7c0372112c5ac00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:52:02.000Z'}}, {'blockNum': '0x905147', 'uniqueId': '0x10b5c498d18bd86d5eba67f014f06e77ed58f5433d10ce718a3d7a521e6d58d3:log:0', 'hash': '0x10b5c498d18bd86d5eba67f014f06e77ed58f5433d10ce718a3d7a521e6d58d3', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 102845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15c73d164bd638d40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:52:10.000Z'}}, {'blockNum': '0x905166', 'uniqueId': '0x43328391401ca1cb58e841d2d9e91c5b7ada0acd9da24c0472c78d0348f72ec6:log:14', 'hash': '0x43328391401ca1cb58e841d2d9e91c5b7ada0acd9da24c0472c78d0348f72ec6', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15c73d164bd638d40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:59:08.000Z'}}, {'blockNum': '0x905166', 'uniqueId': '0x1483f640c1b45ccc9e737839008a9584c6ecd3f88a7a2e1798466d5b8da4821e:log:15', 'hash': '0x1483f640c1b45ccc9e737839008a9584c6ecd3f88a7a2e1798466d5b8da4821e', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:59:08.000Z'}}, {'blockNum': '0x905166', 'uniqueId': '0x86947dee5c92cf87467fdfe875436a6409ceca36b50b60c53e39468f9e9d9582:log:16', 'hash': '0x86947dee5c92cf87467fdfe875436a6409ceca36b50b60c53e39468f9e9d9582', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 290352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3d7c0372112c5ac00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:59:08.000Z'}}, {'blockNum': '0x905179', 'uniqueId': '0xc53b14ed5ff0596a14431f529dd3fcd41dd7ef25a71baf5bade5e14471908b9c:log:205', 'hash': '0xc53b14ed5ff0596a14431f529dd3fcd41dd7ef25a71baf5bade5e14471908b9c', 'from': '0xc2a3c3c1a32d03df3d9b341cdb64643c373a7648', 'to': '0xd945a0c2a1ed9caa1f8b9a1e9bce27b6b15c1a83', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:03:18.000Z'}}, {'blockNum': '0x905198', 'uniqueId': '0x602ee4006e23414818b6682c6dce313e07525379bddf16464587dfd51fb952c1:log:8', 'hash': '0x602ee4006e23414818b6682c6dce313e07525379bddf16464587dfd51fb952c1', 'from': '0xd945a0c2a1ed9caa1f8b9a1e9bce27b6b15c1a83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:09:03.000Z'}}, {'blockNum': '0x90519d', 'uniqueId': '0xfb80936e8f1fa2fa72dd000eb3e709b09608eb679018537250b6a37a13005761:log:12', 'hash': '0xfb80936e8f1fa2fa72dd000eb3e709b09608eb679018537250b6a37a13005761', 'from': '0x6d714e76af538fe76aa81a75b556686ad6002023', 'to': '0x1b6d67cc4daebdafe59cefb3dadba60cc0634ae2', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:09:33.000Z'}}, {'blockNum': '0x9051ad', 'uniqueId': '0xe7f0ce28cb2f2e6eec572ebdb743aee97414ad03525261adcf6d94b991c96eec:log:15', 'hash': '0xe7f0ce28cb2f2e6eec572ebdb743aee97414ad03525261adcf6d94b991c96eec', 'from': '0xa00324154554a9e75c2c06ff0d98264e09e9286a', 'to': '0x2be12b8d9f8b9c05b79ba8f59895626f2ef67f59', 'value': 104375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x161a2e1a398ca47c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:11:34.000Z'}}, {'blockNum': '0x9051ca', 'uniqueId': '0xcfa140621442a2853fdc1c405b1cb0f965e0e2dcba684d70824240229a3d58be:log:6', 'hash': '0xcfa140621442a2853fdc1c405b1cb0f965e0e2dcba684d70824240229a3d58be', 'from': '0x45f1feb77c871a9c31d6f36e6617f690384fa03e', 'to': '0x07a49e66f5bafb6c5e9c3464a4116238c18a11d3', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:18:08.000Z'}}, {'blockNum': '0x9051cf', 'uniqueId': '0x5acc212028b502a0b402d2c09179356e3077132751c589aa74d47e7f2d955b35:log:23', 'hash': '0x5acc212028b502a0b402d2c09179356e3077132751c589aa74d47e7f2d955b35', 'from': '0x1b6d67cc4daebdafe59cefb3dadba60cc0634ae2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:18:35.000Z'}}, {'blockNum': '0x9051cf', 'uniqueId': '0x428be1523b1093b515daed2d64f06db63077e1967a83a82e6f4370cbc5e32986:log:30', 'hash': '0x428be1523b1093b515daed2d64f06db63077e1967a83a82e6f4370cbc5e32986', 'from': '0x2be12b8d9f8b9c05b79ba8f59895626f2ef67f59', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 104375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x161a2e1a398ca47c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:18:35.000Z'}}, {'blockNum': '0x9051f7', 'uniqueId': '0x453fb0b1d2697091a56695c369d3f24d331668fee2438ea4ac70ef8d3efa0cf2:log:10', 'hash': '0x453fb0b1d2697091a56695c369d3f24d331668fee2438ea4ac70ef8d3efa0cf2', 'from': '0x07a49e66f5bafb6c5e9c3464a4116238c18a11d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:29:18.000Z'}}, {'blockNum': '0x905214', 'uniqueId': '0x1097d0e51bfbb7c2c786a0facf9cc2db68736b8becd0b2f5b543092cb439b535:log:5', 'hash': '0x1097d0e51bfbb7c2c786a0facf9cc2db68736b8becd0b2f5b543092cb439b535', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 31382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06a538bcab09bc980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:35:30.000Z'}}, {'blockNum': '0x905238', 'uniqueId': '0xa6a39f2ac9c1e43a9e61c3dd9b2feb5e32dafaf509ae8a83fdce27cc3a10b70e:log:31', 'hash': '0xa6a39f2ac9c1e43a9e61c3dd9b2feb5e32dafaf509ae8a83fdce27cc3a10b70e', 'from': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 31382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06a538bcab09bc980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:41:59.000Z'}}, {'blockNum': '0x90523b', 'uniqueId': '0x9a7236716f56cf9d7f5fecd719d03e6bb132724881a3564f8073d5eab2693033:log:4', 'hash': '0x9a7236716f56cf9d7f5fecd719d03e6bb132724881a3564f8073d5eab2693033', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:42:30.000Z'}}, {'blockNum': '0x905242', 'uniqueId': '0xe7faecd7cfd7c8027efc53b9dcbe8ce4a529574eed4b818999a5877a71588d63:log:4', 'hash': '0xe7faecd7cfd7c8027efc53b9dcbe8ce4a529574eed4b818999a5877a71588d63', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 102998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15cf88637d3543980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:44:03.000Z'}}, {'blockNum': '0x905250', 'uniqueId': '0xdf1c278f11d746dc7307a1dabdbe51ee87e5e908a00bc63d6b4c942b2bc8c520:log:5', 'hash': '0xdf1c278f11d746dc7307a1dabdbe51ee87e5e908a00bc63d6b4c942b2bc8c520', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:49:05.000Z'}}, {'blockNum': '0x905273', 'uniqueId': '0x1cd3cb446566b136b03c440ea4e6150799651b0c603bc91efd3d7100292b9401:log:8', 'hash': '0x1cd3cb446566b136b03c440ea4e6150799651b0c603bc91efd3d7100292b9401', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:57:35.000Z'}}, {'blockNum': '0x905273', 'uniqueId': '0xcfda4f6963a5513033d270bbb74b63abca9ccbbd538db1e55e10d29a447b2378:log:10', 'hash': '0xcfda4f6963a5513033d270bbb74b63abca9ccbbd538db1e55e10d29a447b2378', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 85635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1222485be253202c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:57:35.000Z'}}, {'blockNum': '0x905278', 'uniqueId': '0xcad034e492bf94887d63d8f29e5d688fe5f36a9bee2d9a1681badb603364efcb:log:4', 'hash': '0xcad034e492bf94887d63d8f29e5d688fe5f36a9bee2d9a1681badb603364efcb', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 188633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x27f1d0bf5f8863c40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:59:12.000Z'}}, {'blockNum': '0x90528f', 'uniqueId': '0x3567857fdb25f23e71dd50d6b57ae609079bdd355475cd0bf31ca79eba98d44c:log:7', 'hash': '0x3567857fdb25f23e71dd50d6b57ae609079bdd355475cd0bf31ca79eba98d44c', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:04:29.000Z'}}, {'blockNum': '0x905298', 'uniqueId': '0x32a220b85f36b8371eba638fcccd1d4eab5886e16fdc723dfdc8fa88348aaeee:log:13', 'hash': '0x32a220b85f36b8371eba638fcccd1d4eab5886e16fdc723dfdc8fa88348aaeee', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 131062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1bc0e2a02bc376180000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:06:23.000Z'}}, {'blockNum': '0x905298', 'uniqueId': '0xc4ac5ec3642ca11ae60e90aca9a924f96a74854f951d2e85113e0b0335940333:log:14', 'hash': '0xc4ac5ec3642ca11ae60e90aca9a924f96a74854f951d2e85113e0b0335940333', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 298841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3f4833fc7c860dc40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:06:23.000Z'}}, {'blockNum': '0x9052a6', 'uniqueId': '0x9b3615d9c7fb59711e8566c08274edd5ba1a9d4e23874f7f07bdf2da8376a39a:log:8', 'hash': '0x9b3615d9c7fb59711e8566c08274edd5ba1a9d4e23874f7f07bdf2da8376a39a', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:09:06.000Z'}}, {'blockNum': '0x9052cd', 'uniqueId': '0x2b5aedfd779d4532f3fb3ff7af9dcd83acab31670dbe6f52f2e0881cc6a75399:log:41', 'hash': '0x2b5aedfd779d4532f3fb3ff7af9dcd83acab31670dbe6f52f2e0881cc6a75399', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 131062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1bc0e2a02bc376180000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:19:15.000Z'}}, {'blockNum': '0x9052cd', 'uniqueId': '0x2add7b1cb050b6c9c35b5d5e56af3c4dc1d55a6832f4872697f6789b29841ede:log:49', 'hash': '0x2add7b1cb050b6c9c35b5d5e56af3c4dc1d55a6832f4872697f6789b29841ede', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 298841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3f4833fc7c860dc40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:19:15.000Z'}}, {'blockNum': '0x9052d8', 'uniqueId': '0x3083fadda1b294cab9e2c9745ea207fc8d85239b52900817f0fdade3b78a1c60:log:0', 'hash': '0x3083fadda1b294cab9e2c9745ea207fc8d85239b52900817f0fdade3b78a1c60', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 31251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x069e1ebf2d1b146c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:22:13.000Z'}}, {'blockNum': '0x9052f7', 'uniqueId': '0x853d68586f79c9f623ac6d276a4b7f059355c8a3d747040311c1de07bfc43311:log:9', 'hash': '0x853d68586f79c9f623ac6d276a4b7f059355c8a3d747040311c1de07bfc43311', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 1927212.94910937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01981a6c5e4326e9084400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:28:41.000Z'}}, {'blockNum': '0x9052fc', 'uniqueId': '0xdc0971173b516d21c909262899e77b4647281d97fbc93d5dba2686f32b70a58a:log:61', 'hash': '0xdc0971173b516d21c909262899e77b4647281d97fbc93d5dba2686f32b70a58a', 'from': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 31251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x069e1ebf2d1b146c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:29:33.000Z'}}, {'blockNum': '0x9053fd', 'uniqueId': '0x429cf6225120f1f47a92ecdf4fc282ea51be50145d5158833d15c7b07bda5b78:log:1', 'hash': '0x429cf6225120f1f47a92ecdf4fc282ea51be50145d5158833d15c7b07bda5b78', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x837b96ef6c7bdcb31326f05305fef6317763e8d4', 'value': 6029.863971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0146e12c360935513000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T01:27:59.000Z'}}, {'blockNum': '0x9053fd', 'uniqueId': '0x477f85cd690fe93fc3ecc1e188c5e45ad95247bdf35808dfed7bb02529a51cdf:log:48', 'hash': '0x477f85cd690fe93fc3ecc1e188c5e45ad95247bdf35808dfed7bb02529a51cdf', 'from': '0xc667fb59867acfcf6f88b3efc0479787699f3aa1', 'to': '0x812d8baf456f9b4ffeffe7ae9472642caab70eb8', 'value': 5769.02158881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0138bd41e96fb3b06400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T01:27:59.000Z'}}, {'blockNum': '0x9054e6', 'uniqueId': '0x3b0178da9ce444047223f32b311adf6bd353dca5130989a07d87c497cb123d9a:log:11', 'hash': '0x3b0178da9ce444047223f32b311adf6bd353dca5130989a07d87c497cb123d9a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:17:31.000Z'}}, {'blockNum': '0x90551b', 'uniqueId': '0x375007085e3d5b08cfb119a5028a805b80bb31c10a603ead1c6193a4abb3a211:log:48', 'hash': '0x375007085e3d5b08cfb119a5028a805b80bb31c10a603ead1c6193a4abb3a211', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:28:59.000Z'}}, {'blockNum': '0x905525', 'uniqueId': '0xd026eff3e84a26ad0275cd88fd3e2a4e18f298c3c824ff840e2627a495cc9b1e:log:19', 'hash': '0xd026eff3e84a26ad0275cd88fd3e2a4e18f298c3c824ff840e2627a495cc9b1e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:31:50.000Z'}}, {'blockNum': '0x90553f', 'uniqueId': '0x82a9e793ffabad2ea572f933b102dc9911d2fa120765b5366ef0cb168302729f:log:82', 'hash': '0x82a9e793ffabad2ea572f933b102dc9911d2fa120765b5366ef0cb168302729f', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:38:21.000Z'}}, {'blockNum': '0x905548', 'uniqueId': '0xf97318fceb08c5d4fcad12c4d3673056f70813569a0cd8d607311d31ee0d3b6e:log:124', 'hash': '0xf97318fceb08c5d4fcad12c4d3673056f70813569a0cd8d607311d31ee0d3b6e', 'from': '0x59da3eb1e16992366f3b4ebb5a2dc98a49d598db', 'to': '0x99cc0c239f652c18bc9cf923f372a6285363965d', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:40:48.000Z'}}, {'blockNum': '0x905574', 'uniqueId': '0x792b82b213d80c408034d22aa6f1099f4b953d2a3c0438e3326a04380ed7974c:log:16', 'hash': '0x792b82b213d80c408034d22aa6f1099f4b953d2a3c0438e3326a04380ed7974c', 'from': '0x99cc0c239f652c18bc9cf923f372a6285363965d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:49:23.000Z'}}, {'blockNum': '0x9055a6', 'uniqueId': '0x56827483f48ad0ec0a75228afc8a2a2b053f141373611e5a45061b69ec5d933e:log:26', 'hash': '0x56827483f48ad0ec0a75228afc8a2a2b053f141373611e5a45061b69ec5d933e', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x8d8fa71288e1924e2235fb2c30ce30ca1cbbf709', 'value': 971.5432465251762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34aadefb4206e2bfbf', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:02:46.000Z'}}, {'blockNum': '0x9055a6', 'uniqueId': '0x62f4d390135adc12fb934868aa70f8f7a03198a60c977562d93d6aabe59188a8:log:83', 'hash': '0x62f4d390135adc12fb934868aa70f8f7a03198a60c977562d93d6aabe59188a8', 'from': '0x9b73ba83c001bcd70e90460f44851ffbe67e36b4', 'to': '0x87e592bfef534099b3e183d97d76c60f5fd2b7c9', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835c0000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:02:46.000Z'}}, {'blockNum': '0x9055ad', 'uniqueId': '0x8fa51d957c986382d03f72e1e076aef747173bfa89792fe6cc3927b1aa60de78:log:59', 'hash': '0x8fa51d957c986382d03f72e1e076aef747173bfa89792fe6cc3927b1aa60de78', 'from': '0x8d8fa71288e1924e2235fb2c30ce30ca1cbbf709', 'to': '0x28488ec5c81b3adfcb79e9acfc614d7959a71270', 'value': 971.5432465251762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34aadefb4206e2bfbf', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:04:40.000Z'}}, {'blockNum': '0x9055ad', 'uniqueId': '0x41e24a1746fa25622ae256000b77f0e4e79a3aa513cb261c3ad1140dff12f3d6:log:107', 'hash': '0x41e24a1746fa25622ae256000b77f0e4e79a3aa513cb261c3ad1140dff12f3d6', 'from': '0x87e592bfef534099b3e183d97d76c60f5fd2b7c9', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:04:40.000Z'}}, {'blockNum': '0x9055f1', 'uniqueId': '0x99925b2d918d1c6c87bea8b9d15d09c0a48ec9d1a9db43a5346d727b1325843c:log:47', 'hash': '0x99925b2d918d1c6c87bea8b9d15d09c0a48ec9d1a9db43a5346d727b1325843c', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:19:23.000Z'}}, {'blockNum': '0x90564a', 'uniqueId': '0xd8501b163f973bd01a635064279562ebd59c4fce64648bece84e35b48022376a:log:89', 'hash': '0xd8501b163f973bd01a635064279562ebd59c4fce64648bece84e35b48022376a', 'from': '0xf1f4c9abfb0d9415c67aea512cc63515280eb1fd', 'to': '0x517649a2cdc0f67d0447b84d202d64385ebb0bb0', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:38:04.000Z'}}, {'blockNum': '0x905672', 'uniqueId': '0x3f24b6255970118701dfdebbe9141dbeeb11188a7ae4ef5e5fad4c3226d702ad:log:53', 'hash': '0x3f24b6255970118701dfdebbe9141dbeeb11188a7ae4ef5e5fad4c3226d702ad', 'from': '0x9cf69363d733b2ff6c3ef168478bf444068f9b96', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:48:29.000Z'}}, {'blockNum': '0x905672', 'uniqueId': '0xe8bd7ec9c02a03aca8ac0e079df80b806a492a90c47f557b8ce1b01d172861a2:log:56', 'hash': '0xe8bd7ec9c02a03aca8ac0e079df80b806a492a90c47f557b8ce1b01d172861a2', 'from': '0xc4f2e11845e1f1410163c4d5de0810eed416e008', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 555.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1e1bb92d5d5bf40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:48:29.000Z'}}, {'blockNum': '0x905674', 'uniqueId': '0xf6db9198e0d232b3ce1c0fd5c8d386fba018914118306de13ac8e5e449ee5b71:log:26', 'hash': '0xf6db9198e0d232b3ce1c0fd5c8d386fba018914118306de13ac8e5e449ee5b71', 'from': '0x8d046773ef3da3aaebffd3b79bf76e59f8c0c116', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 632.531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x224a218935069b8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:48:48.000Z'}}, {'blockNum': '0x905675', 'uniqueId': '0xb50f6067b17ec8c301142d0df8e6b95c0ac0542bc413f857243b002881c9ecbc:log:88', 'hash': '0xb50f6067b17ec8c301142d0df8e6b95c0ac0542bc413f857243b002881c9ecbc', 'from': '0x01a532a41aef3e5b4f01505b3c91da9395077dcf', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 683.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x25103e579a26920000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:49:05.000Z'}}, {'blockNum': '0x905677', 'uniqueId': '0x6c8672fd38195598723176a99ff600aebaaf3e4f1f4f77a07eece8c1b442030c:log:12', 'hash': '0x6c8672fd38195598723176a99ff600aebaaf3e4f1f4f77a07eece8c1b442030c', 'from': '0x6a3514487168de575f20e849af50ccf368a1c580', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 533.88006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1cf112fdf3c43bc000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:49:19.000Z'}}, {'blockNum': '0x905692', 'uniqueId': '0xe06f9cb56f34f1eda84f86c7a6d43c1a4b3985addabae2c5007232b3136f54af:log:84', 'hash': '0xe06f9cb56f34f1eda84f86c7a6d43c1a4b3985addabae2c5007232b3136f54af', 'from': '0x4505a79a165079afa9e941fdfaa24103b2e308e0', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 541.913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1d608dba5266428000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:55:10.000Z'}}, {'blockNum': '0x905692', 'uniqueId': '0xecb1082149a6c8233a22a27249627ddda9121f6575a7f45fe47ad448062ba8ba:log:98', 'hash': '0xecb1082149a6c8233a22a27249627ddda9121f6575a7f45fe47ad448062ba8ba', 'from': '0x812d8baf456f9b4ffeffe7ae9472642caab70eb8', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 5769.02158881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0138bd41e96fb3b06400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:55:10.000Z'}}, {'blockNum': '0x9056d7', 'uniqueId': '0x67ebde9e736a7f6fe5ba35874375499241052ad15a1bc1247473de817883805e:log:4', 'hash': '0x67ebde9e736a7f6fe5ba35874375499241052ad15a1bc1247473de817883805e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb6e41688d40eff755840a14a9cfabbb770607e58', 'value': 69912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ecdefe6b65955600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T04:10:35.000Z'}}, {'blockNum': '0x9056fa', 'uniqueId': '0xa2816fa63a431c9231aa1fa27a9d32378c30632a07aef4f79183d899e0e75c53:log:107', 'hash': '0xa2816fa63a431c9231aa1fa27a9d32378c30632a07aef4f79183d899e0e75c53', 'from': '0xb6e41688d40eff755840a14a9cfabbb770607e58', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 69912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ecdefe6b65955600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T04:17:18.000Z'}}, {'blockNum': '0x9057b8', 'uniqueId': '0x0dee5a50fab87ca1ce29070cfca8508d66262d77770ff72492faf024148472c9:log:25', 'hash': '0x0dee5a50fab87ca1ce29070cfca8508d66262d77770ff72492faf024148472c9', 'from': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 145621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1ed621569ee026340000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T04:59:13.000Z'}}, {'blockNum': '0x9057ee', 'uniqueId': '0xf16fca820469d42fef23e00a88f06cf9ec9933fc035ea65428fc4c1e4a974fa4:log:1', 'hash': '0xf16fca820469d42fef23e00a88f06cf9ec9933fc035ea65428fc4c1e4a974fa4', 'from': '0xddda3cc16abd5bcaac77cf17e074f9c9038d2a20', 'to': '0x1a1b339dd7476e05c36d049d0ecef0a41eea6d72', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T05:12:35.000Z'}}, {'blockNum': '0x905810', 'uniqueId': '0x91d79365d2cf3b8c448200f388fb90670033349bc9e23ca2561a67ac9f5ee0f3:log:47', 'hash': '0x91d79365d2cf3b8c448200f388fb90670033349bc9e23ca2561a67ac9f5ee0f3', 'from': '0x1a1b339dd7476e05c36d049d0ecef0a41eea6d72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T05:19:06.000Z'}}, {'blockNum': '0x905848', 'uniqueId': '0x44e53d9867461399bb43d9e5173edc57a8478d1322c17b21664b82afbec85c1e:log:130', 'hash': '0x44e53d9867461399bb43d9e5173edc57a8478d1322c17b21664b82afbec85c1e', 'from': '0xf9ab9df4f77994006752be4b56cce9c8f7aad547', 'to': '0xbabb03a9145ef7831853aa0a90a3c45623080ab1', 'value': 58990.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0c7ddf1691e929fe0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T05:30:25.000Z'}}, {'blockNum': '0x905878', 'uniqueId': '0x029f9f4b59394cf2b3bd9166137d9a1964e1dbef6c485f903d7350d9f283db60:log:3', 'hash': '0x029f9f4b59394cf2b3bd9166137d9a1964e1dbef6c485f903d7350d9f283db60', 'from': '0xbabb03a9145ef7831853aa0a90a3c45623080ab1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58990.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0c7ddf1691e929fe0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T05:39:20.000Z'}}, {'blockNum': '0x90597c', 'uniqueId': '0x2512965ada11f84d3891028996073cb06b6159e343af89df23f6a6019b0fb715:log:63', 'hash': '0x2512965ada11f84d3891028996073cb06b6159e343af89df23f6a6019b0fb715', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'value': 9509.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02038435fffad6b00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:37:59.000Z'}}, {'blockNum': '0x9059af', 'uniqueId': '0x3846a0207be9cc3d434ebf737ab192aec0722c294f16fceb341b1fd359709e9c:log:30', 'hash': '0x3846a0207be9cc3d434ebf737ab192aec0722c294f16fceb341b1fd359709e9c', 'from': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9509.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02038435fffad6b00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:49:28.000Z'}}, {'blockNum': '0x9059c7', 'uniqueId': '0x9cf0e2dea1b52d84284eaa7f4778536c1c343f3b3d0d0fc961c3d6312b8240e7:log:10', 'hash': '0x9cf0e2dea1b52d84284eaa7f4778536c1c343f3b3d0d0fc961c3d6312b8240e7', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 142127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1e18b85906e1875c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:53:39.000Z'}}, {'blockNum': '0x9059c8', 'uniqueId': '0xed85a58521d5319dd1d3ca53ffe00d7ba5f433ee50ecb2ce8c9b5a1138c83ab8:log:16', 'hash': '0xed85a58521d5319dd1d3ca53ffe00d7ba5f433ee50ecb2ce8c9b5a1138c83ab8', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:53:51.000Z'}}, {'blockNum': '0x9059da', 'uniqueId': '0x50fb03b4dd6aa94da738b2b4b20cafd0a7432961d33ac159cc2a28a6cccd53b8:log:11', 'hash': '0x50fb03b4dd6aa94da738b2b4b20cafd0a7432961d33ac159cc2a28a6cccd53b8', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 235792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x31ee4f57c0713a400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:59:33.000Z'}}]}}
Number of returned transfers:  184
Answer is complete
 
symbol             NAV
group              BPF
date        2020-02-20
hour             16:00
exchange       binance
Name: 806, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2020-02-20 16:00:00 2020-02-20 04:00:00 2020-02-21 04:00:00
Unix timestamps:  1582167600.0 1582254000.0
Hex Block Numbers:  0x913a16 0x915379
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             DNT
group              BPF
date        2020-02-27
hour             16:00
exchange       binance
Name: 807, dtype: object
HERE
{'binance-smart-chain': '0x2456493e757fdeedf569781f053998a72adfad03'}
No contract for ethereum specified
{'binance-smart-chain': '0x44836708ff32246635d8d08c785f4e779e294598'}
No contract for ethereum specified
 Symbol: DNT, Contract: 0x0abdace70d3790235af448c88547603b945604ea
Datetime timestamps:  2020-02-27 16:00:00 2020-02-27 04:00:00 2020-02-28 04:00:00
Unix timestamps:  1582772400.0 1582858800.0
Hex Block Numbers:  0x91ebe6 0x92051b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x91f039', 'uniqueId': '0x859e11714c189c9e7b765829e919920ad202767c24fe0382bf66c39c931fd52d:log:30', 'hash': '0x859e11714c189c9e7b765829e919920ad202767c24fe0382bf66c39c931fd52d', 'from': '0x9a51ad4d2404225d955387d4f4b6cc4354b54fee', 'to': '0x812fbb2b44e7bbb3ad02801b0338e30145884e01', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T06:59:47.000Z'}}, {'blockNum': '0x91f0f6', 'uniqueId': '0xe803a0abe7d49657f9cf35ebd0a6a936443c61351465bd92ea01ec5324e49886:log:87', 'hash': '0xe803a0abe7d49657f9cf35ebd0a6a936443c61351465bd92ea01ec5324e49886', 'from': '0x7ebd11352b56b5b7dd341375d25152410bbc9e90', 'to': '0x34f5bf1413239747aec5f4f0faaf1fb409de07dd', 'value': 13898.711523845737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02f1735e8c68753e5f77', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T07:45:58.000Z'}}, {'blockNum': '0x91f116', 'uniqueId': '0x79c1b0bd11f13b1c3e110a91ad1e9c4a1917122f9855c159be2fc733f5e099fd:log:29', 'hash': '0x79c1b0bd11f13b1c3e110a91ad1e9c4a1917122f9855c159be2fc733f5e099fd', 'from': '0x34f5bf1413239747aec5f4f0faaf1fb409de07dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13898.711523845737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02f1735e8c68753e5f77', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T07:53:50.000Z'}}, {'blockNum': '0x91f300', 'uniqueId': '0x0c9861e89a1c88e80b8efae9e0f9687e5dd97cca2d8572aa25ea2124261a3752:log:99', 'hash': '0x0c9861e89a1c88e80b8efae9e0f9687e5dd97cca2d8572aa25ea2124261a3752', 'from': '0x6024297b6b6988c6cdd5281e160fc72d9b42ec8a', 'to': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'value': 2596.755591859829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8cc5391c988258f054', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T09:33:18.000Z'}}, {'blockNum': '0x91f396', 'uniqueId': '0x42f20ea0ac7faad2371cab6c151240b4d9f20047e454dcda94d1a8ed07d22044:log:39', 'hash': '0x42f20ea0ac7faad2371cab6c151240b4d9f20047e454dcda94d1a8ed07d22044', 'from': '0x9397edd1f5e19e90b9b535dd06741f1b02ad0316', 'to': '0x20f24f079165b3f36c953059f2fd2d5a707fb566', 'value': 4.53096e-13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06e9e8', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T10:08:29.000Z'}}, {'blockNum': '0x91f9a6', 'uniqueId': '0x696612decf4716cd18fb1e02aea601ad679ef3a6a317993e5970c5194203d7fc:log:18', 'hash': '0x696612decf4716cd18fb1e02aea601ad679ef3a6a317993e5970c5194203d7fc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 32632.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06e90927d8388b7f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T16:01:13.000Z'}}, {'blockNum': '0x91f9c9', 'uniqueId': '0x4b9050791f9508ccd866c47b2f7926ef1d78f56e7c404a764b120dcafeed216a:log:14', 'hash': '0x4b9050791f9508ccd866c47b2f7926ef1d78f56e7c404a764b120dcafeed216a', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32632.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06e90927d8388b7f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T16:14:20.000Z'}}, {'blockNum': '0x91fce4', 'uniqueId': '0x2c000d8a12cad8ea4e9f074781609e8fa9fbfe1f34fb45cba2d4164f8cb0d84d:log:95', 'hash': '0x2c000d8a12cad8ea4e9f074781609e8fa9fbfe1f34fb45cba2d4164f8cb0d84d', 'from': '0xbfd7e906e41f9ef0eaed535a58f977c015d27566', 'to': '0x76e8aa16f9f3809e1895b985d56488838db17005', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T19:12:36.000Z'}}, {'blockNum': '0x91fd4c', 'uniqueId': '0x81fb05e1932b0feb1096bbe85c58dd1546a6a0cf955419d7fd6977a4da115c1b:log:102', 'hash': '0x81fb05e1932b0feb1096bbe85c58dd1546a6a0cf955419d7fd6977a4da115c1b', 'from': '0x76e8aa16f9f3809e1895b985d56488838db17005', 'to': '0xbfd7e906e41f9ef0eaed535a58f977c015d27566', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T19:37:38.000Z'}}, {'blockNum': '0x91ff15', 'uniqueId': '0x457c893b645cebb09acf7b65e124a9a43c27ada9024a7376b8f515c53057c586:log:85', 'hash': '0x457c893b645cebb09acf7b65e124a9a43c27ada9024a7376b8f515c53057c586', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x7e99bdfa33deb33053d7d4a3f72c96ef8a603a09', 'value': 405.7436842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x15fed3230ec7461000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T21:15:36.000Z'}}, {'blockNum': '0x91fff0', 'uniqueId': '0x3a6fd3a8535d5c502abbf5049643dbfb91da12e906c1c034dc4ad6aa292de9c1:log:76', 'hash': '0x3a6fd3a8535d5c502abbf5049643dbfb91da12e906c1c034dc4ad6aa292de9c1', 'from': '0x11140497fa9cf6476c749f8993b37984a84bc1c6', 'to': '0x01726c3f4da9333c9fd73cd06ad4b4abcd02513b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T22:02:48.000Z'}}, {'blockNum': '0x9204bb', 'uniqueId': '0x343cb200214a68252e05d0747dac2f749b528fa7d14a398f10c0861ad4dd071c:log:14', 'hash': '0x343cb200214a68252e05d0747dac2f749b528fa7d14a398f10c0861ad4dd071c', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x80b50f90a32961b6317e811d79b23e60a22c777a', 'value': 4299.34262912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe9115d5e4a879a0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-28T02:37:56.000Z'}}, {'blockNum': '0x920505', 'uniqueId': '0x866923bdb927ffe46bd00e601c06c1dce4aba41456915af0098569ce7270bafa:log:55', 'hash': '0x866923bdb927ffe46bd00e601c06c1dce4aba41456915af0098569ce7270bafa', 'from': '0x80b50f90a32961b6317e811d79b23e60a22c777a', 'to': '0xe3441c47dfe5d823c2c3f320c59f879c1db34373', 'value': 750.291801651219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x28ac63f262acbfeac0', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-28T02:56:05.000Z'}}]}}
Number of returned transfers:  13
Answer is complete
 
symbol             NXS
group              BPF
date        2020-03-03
hour             16:00
exchange       binance
Name: 808, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-03-03 16:00:00 2020-03-03 04:00:00 2020-03-04 04:00:00
Unix timestamps:  1583204400.0 1583290800.0
Hex Block Numbers:  0x926b0e 0x928446
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             DNT
group              BPF
date        2020-03-04
hour             19:00
exchange       binance
Name: 809, dtype: object
HERE
{'binance-smart-chain': '0x2456493e757fdeedf569781f053998a72adfad03'}
No contract for ethereum specified
{'binance-smart-chain': '0x44836708ff32246635d8d08c785f4e779e294598'}
No contract for ethereum specified
 Symbol: DNT, Contract: 0x0abdace70d3790235af448c88547603b945604ea
Datetime timestamps:  2020-03-04 19:00:00 2020-03-04 07:00:00 2020-03-05 07:00:00
Unix timestamps:  1583301600.0 1583388000.0
Hex Block Numbers:  0x928789 0x92a126
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x929059', 'uniqueId': '0xfe9526025f6786742231990f4ab1bc4fd789b41c439c6348e0ad0dd582cf0461:log:60', 'hash': '0xfe9526025f6786742231990f4ab1bc4fd789b41c439c6348e0ad0dd582cf0461', 'from': '0x51b553a31cf3027f9f5a212027ac1717b21782b6', 'to': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'value': 9999.999999999905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9baac9dcba2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T14:24:19.000Z'}}, {'blockNum': '0x929116', 'uniqueId': '0xdc935feb296f026327732de9e17e9a43e3850026641d577163fc1f8632596c93:log:2', 'hash': '0xdc935feb296f026327732de9e17e9a43e3850026641d577163fc1f8632596c93', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8342a0147c2b4f571c9c3dcb935f0944b7ab1c98', 'value': 134059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1c635a5b10fa1bcc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:06:26.000Z'}}, {'blockNum': '0x9291ae', 'uniqueId': '0x760c43b6be8ef7ad15658221050aaa1c1e73d121ad86b39e8d54536a9d72779e:log:103', 'hash': '0x760c43b6be8ef7ad15658221050aaa1c1e73d121ad86b39e8d54536a9d72779e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x72edea79986f81bb58b0b7b5d1244fb65277ad40', 'value': 3350.752693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb5a508ed3c20845000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:44:08.000Z'}}, {'blockNum': '0x9291bb', 'uniqueId': '0x91e4edb8c480f1b4d7c52d4d02f21ee3203b6e0a0908de041a4e086db1dfb109:log:16', 'hash': '0x91e4edb8c480f1b4d7c52d4d02f21ee3203b6e0a0908de041a4e086db1dfb109', 'from': '0x72edea79986f81bb58b0b7b5d1244fb65277ad40', 'to': '0x9ab7b033ad985f046d6390edb9e0a2f3ba8b92eb', 'value': 3884.8142957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd298a0e34f95d0c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:46:40.000Z'}}, {'blockNum': '0x9291c6', 'uniqueId': '0x2c49d8e9bce02c5c35f8c407180b3a12962deda3ef1798fdd7201047c3d71e86:log:15', 'hash': '0x2c49d8e9bce02c5c35f8c407180b3a12962deda3ef1798fdd7201047c3d71e86', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 8197.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01bc69b0284b1d150000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:48:29.000Z'}}, {'blockNum': '0x9291cb', 'uniqueId': '0x3872ff9c70e9883f3e1b4f716549b5870b49dd962d7796009c990c605efe1713:log:33', 'hash': '0x3872ff9c70e9883f3e1b4f716549b5870b49dd962d7796009c990c605efe1713', 'from': '0x9ab7b033ad985f046d6390edb9e0a2f3ba8b92eb', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 3884.8142957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd298a0e34f95d0c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:48:50.000Z'}}, {'blockNum': '0x9291e4', 'uniqueId': '0xe7dbb99f70eb49e8a4d1c381c4837227aa4ae3165b18e37356066877c75b33e1:log:11', 'hash': '0xe7dbb99f70eb49e8a4d1c381c4837227aa4ae3165b18e37356066877c75b33e1', 'from': '0xa305fab8bda7e1638235b054889b3217441dd645', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9798.8738157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021332b10ab87b00c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:54:00.000Z'}}, {'blockNum': '0x9292cd', 'uniqueId': '0x352590655f35903b9ebf9903f1498ade9e6b894aaa3f4a34866f859b2b5b10ee:log:145', 'hash': '0x352590655f35903b9ebf9903f1498ade9e6b894aaa3f4a34866f859b2b5b10ee', 'from': '0xbabf61e96b89671a82815ee37fa150d9688a4cbb', 'to': '0xada7b20529432295f459129aff723f2216168758', 'value': 10630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x024040e267d8a2580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T16:42:04.000Z'}}, {'blockNum': '0x9292d1', 'uniqueId': '0x3c2d91db89ea21025c8768ea8ad8a98d5c2b932cf21460724ea2679499acfe47:log:44', 'hash': '0x3c2d91db89ea21025c8768ea8ad8a98d5c2b932cf21460724ea2679499acfe47', 'from': '0xada7b20529432295f459129aff723f2216168758', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 10630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x024040e267d8a2580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T16:42:35.000Z'}}, {'blockNum': '0x929309', 'uniqueId': '0xbc9cdc2394e0fef9f199f1479acea1207b4f9a0d4c4739cc509070c93da393b5:log:8', 'hash': '0xbc9cdc2394e0fef9f199f1479acea1207b4f9a0d4c4739cc509070c93da393b5', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x024040e267d8a2580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T16:54:22.000Z'}}, {'blockNum': '0x929353', 'uniqueId': '0xf910ff094d30fd9e48d125115f9fc037a2f83798507a43dae2b0b6fa6ce3801a:log:51', 'hash': '0xf910ff094d30fd9e48d125115f9fc037a2f83798507a43dae2b0b6fa6ce3801a', 'from': '0x003681a32ca032d3dbd2d22a26085dcd8ab2dad9', 'to': '0x517b60d34422bdf1039e3a10714a4ba7c330456a', 'value': 6499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01604fbe32d27fac0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T17:08:31.000Z'}}, {'blockNum': '0x9293c7', 'uniqueId': '0x6b4adc5e58b99df8382ddf1b458e7407e610915590e94716fe6c803121345543:log:0', 'hash': '0x6b4adc5e58b99df8382ddf1b458e7407e610915590e94716fe6c803121345543', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5297.54783185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011f2e3ea574cc092400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T17:34:25.000Z'}}, {'blockNum': '0x9293f1', 'uniqueId': '0x5f4b8a7605fbbdd7b1327ab63fd22b4f4ddee7473bde3ce936c7f753f12779e7:log:19', 'hash': '0x5f4b8a7605fbbdd7b1327ab63fd22b4f4ddee7473bde3ce936c7f753f12779e7', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4128e5a3e79ab657cf6d19945a33e5ec275c1837', 'value': 5297.54783185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011f2e3ea574cc092400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T17:43:51.000Z'}}, {'blockNum': '0x929569', 'uniqueId': '0x5112ea8dea78ec7659b150162dbfc0447f266f1fa321bad69562d302f3951e26:log:20', 'hash': '0x5112ea8dea78ec7659b150162dbfc0447f266f1fa321bad69562d302f3951e26', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 13278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02cfcd443a2414b80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T19:01:23.000Z'}}, {'blockNum': '0x929664', 'uniqueId': '0x3543c663d0e7b77babfb16b5cb147a9b82214eccb8f782785697a8bf26910efa:log:3', 'hash': '0x3543c663d0e7b77babfb16b5cb147a9b82214eccb8f782785697a8bf26910efa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6b5bd08139e6afeb4976ac879c6b62ea8602bbab', 'value': 4425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xefe13607585f840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T20:00:26.000Z'}}, {'blockNum': '0x9297ab', 'uniqueId': '0x4d46e17e9b6e100c881cb381339a257fd6741c8e91f5d910296ad7b5c3dd5ade:log:227', 'hash': '0x4d46e17e9b6e100c881cb381339a257fd6741c8e91f5d910296ad7b5c3dd5ade', 'from': '0x4068b46a88b98c55a98a3014c133c410422fae22', 'to': '0x5b652254d61bbe4659fd7c97a1b1b9c80c28a1a9', 'value': 1538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x536009a353a6c80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T21:19:55.000Z'}}, {'blockNum': '0x9297b2', 'uniqueId': '0x3611c7824e9f4cb0ecd8d31d9dd7a657e8ea523c4410896354ae030ebdb35dc5:log:82', 'hash': '0x3611c7824e9f4cb0ecd8d31d9dd7a657e8ea523c4410896354ae030ebdb35dc5', 'from': '0x5b652254d61bbe4659fd7c97a1b1b9c80c28a1a9', 'to': '0xa8b8dd7983f94c0facf2c0c01f47c16bf0669f6d', 'value': 1538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x536009a353a6c80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T21:22:21.000Z'}}, {'blockNum': '0x9298ab', 'uniqueId': '0x848e0d6712c3a713a00497f88ac26f04441c879bf166d4dc81c84fb3895c65e5:log:2', 'hash': '0x848e0d6712c3a713a00497f88ac26f04441c879bf166d4dc81c84fb3895c65e5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 4974.456535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010daa73c6c83f807000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T22:16:21.000Z'}}, {'blockNum': '0x9298e7', 'uniqueId': '0xf8327f927cb6785ea45c019d5c46683248312bd618b14cd8805d57e5299227ad:log:80', 'hash': '0xf8327f927cb6785ea45c019d5c46683248312bd618b14cd8805d57e5299227ad', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xc4feb08b7c92bdce4d3cafdd83bdcbb155f9224f', 'value': 4974.456535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010daa73c6c83f807000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T22:31:41.000Z'}}, {'blockNum': '0x92992a', 'uniqueId': '0xa88912e362bb2cc87b809998c54fcbc4068da64ef89325b34958f7c9ee17c0c1:log:1', 'hash': '0xa88912e362bb2cc87b809998c54fcbc4068da64ef89325b34958f7c9ee17c0c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 588381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7c9832ab0bdb77540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T22:43:57.000Z'}}, {'blockNum': '0x929958', 'uniqueId': '0xbc1c439cb08f7c1700cb7269b8cee5dd3d31895abf5b24b962ac2b131efa73b8:log:4', 'hash': '0xbc1c439cb08f7c1700cb7269b8cee5dd3d31895abf5b24b962ac2b131efa73b8', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 588381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7c9832ab0bdb77540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T22:54:04.000Z'}}, {'blockNum': '0x929991', 'uniqueId': '0xfc80177495c6e420fb7b48b39f33bd14c8bdc7dd0b43547a60e4dc148a64d407:log:23', 'hash': '0xfc80177495c6e420fb7b48b39f33bd14c8bdc7dd0b43547a60e4dc148a64d407', 'from': '0xdec6a98c55dd22c99e69f6a8d201571665bf789f', 'to': '0x2de4ba86f208afc85ab69244a61045426aaf17bc', 'value': 707.50776665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x265aa4853b3b364400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:05:19.000Z'}}, {'blockNum': '0x929a03', 'uniqueId': '0x113bf53f544cfcfbcfc374b6aab5155f970f788788de6bb89644877798581951:log:33', 'hash': '0x113bf53f544cfcfbcfc374b6aab5155f970f788788de6bb89644877798581951', 'from': '0x3be7bbf8d472f588e10e65d616556ccf39430bb4', 'to': '0x6348dbea8987c27f8462755e493f64d99c28dd05', 'value': 702.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x261189a75f7e500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:27:08.000Z'}}, {'blockNum': '0x929a58', 'uniqueId': '0x890a07a58b73594a7cb62d641c07cad31a39864c75e90ad11efb565c0c35aee9:log:52', 'hash': '0x890a07a58b73594a7cb62d641c07cad31a39864c75e90ad11efb565c0c35aee9', 'from': '0xe882255f82f779bd13be94259b45bbe2f3c1235f', 'to': '0x0907f71f26cb10bdc6dcf3f288844af2cc036ca8', 'value': 5857.6094674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x013d8aa947a7be125000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:44:29.000Z'}}, {'blockNum': '0x929a65', 'uniqueId': '0x3f3e701570cbfca5ce39be64e2048e69cbaa4427982d22ca07b9e4c15a952926:log:1', 'hash': '0x3f3e701570cbfca5ce39be64e2048e69cbaa4427982d22ca07b9e4c15a952926', 'from': '0x0907f71f26cb10bdc6dcf3f288844af2cc036ca8', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 5857.6094674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x013d8aa947a7be125000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:46:27.000Z'}}, {'blockNum': '0x929a77', 'uniqueId': '0x277799034fc0733ed2b57473fd52773f9d116ae88e570957c16b5d892794af31:log:29', 'hash': '0x277799034fc0733ed2b57473fd52773f9d116ae88e570957c16b5d892794af31', 'from': '0xb7b9bc16bf37d9edd7585bfd5ae8afb20182bb93', 'to': '0x54f0c8d3ffd30dac671ba7397bbdf3c4dc8fb1cb', 'value': 2220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7858b05def97300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:50:18.000Z'}}, {'blockNum': '0x929a80', 'uniqueId': '0x1a00047de1e0b75783ee03da0d13150453fc738c67450cec8b4e6255a1b09180:log:72', 'hash': '0x1a00047de1e0b75783ee03da0d13150453fc738c67450cec8b4e6255a1b09180', 'from': '0x54f0c8d3ffd30dac671ba7397bbdf3c4dc8fb1cb', 'to': '0x9bfe83c0934726940d0da985d28adbbf0aeca9b7', 'value': 2220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7858b05def97300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:51:47.000Z'}}, {'blockNum': '0x929aaa', 'uniqueId': '0x8ef081158136f763b5e5418aecf57f60a3ee8847d4b939283a93473cfd452fd2:log:1', 'hash': '0x8ef081158136f763b5e5418aecf57f60a3ee8847d4b939283a93473cfd452fd2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe6edbe51c7f302de0969ec48299b14797f42bc38', 'value': 32257.20929182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06d4aab4b0e408e2b800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:58:26.000Z'}}, {'blockNum': '0x929c4d', 'uniqueId': '0xc3063ddb5212605c0fd008465e49a0451ae38f311b4111e4e7a7a38f111fd308:log:23', 'hash': '0xc3063ddb5212605c0fd008465e49a0451ae38f311b4111e4e7a7a38f111fd308', 'from': '0x6eae38c3c47dfaeb11012b64d1f8c486148f02c8', 'to': '0xe861bab196d2fa49e88acce440507ef183c1ce28', 'value': 1060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3976747fe11a100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T01:31:24.000Z'}}, {'blockNum': '0x929c55', 'uniqueId': '0x8a399f61e6ccf6fe2608007a5eab1164a06a5c732ede6672c61c6431b98aee2b:log:111', 'hash': '0x8a399f61e6ccf6fe2608007a5eab1164a06a5c732ede6672c61c6431b98aee2b', 'from': '0xe861bab196d2fa49e88acce440507ef183c1ce28', 'to': '0x09f901dbf16627c4ad96ada28a3722d917056486', 'value': 1060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3976747fe11a100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T01:33:06.000Z'}}, {'blockNum': '0x929e7e', 'uniqueId': '0xeeb20fd9b435593bd5bc151bf547365cd89ead0faf53ed64d22480ccd4d89c33:log:1', 'hash': '0xeeb20fd9b435593bd5bc151bf547365cd89ead0faf53ed64d22480ccd4d89c33', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7db2f920c207f01742f35cb1a7a491dbceeffd4a', 'value': 2724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x93ab180fa124100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T03:34:40.000Z'}}, {'blockNum': '0x929f88', 'uniqueId': '0x798c8000b4a12a135b7ec50888dadb228e22172d0163d2fc03af813acc2b4cca:log:6', 'hash': '0x798c8000b4a12a135b7ec50888dadb228e22172d0163d2fc03af813acc2b4cca', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 73353.31784441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0f887dc7b0f4dc68c400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T04:28:47.000Z'}}, {'blockNum': '0x929fa1', 'uniqueId': '0x542b3674227ea9c97557cbd3f9e3f81f77954f9b5f42c23b33e89b09e3ce2486:log:164', 'hash': '0x542b3674227ea9c97557cbd3f9e3f81f77954f9b5f42c23b33e89b09e3ce2486', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0ca22dc3e55504bb40f8fc489342e9980a8b0530', 'value': 73353.31784441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0f887dc7b0f4dc68c400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T04:34:00.000Z'}}]}}
Number of returned transfers:  33
Answer is complete
 
symbol             POA
group              BPF
date        2020-03-12
hour             19:00
exchange       binance
Name: 810, dtype: object
HERE
 Symbol: POA, Contract: 
Datetime timestamps:  2020-03-12 19:00:00 2020-03-12 07:00:00 2020-03-13 07:00:00
Unix timestamps:  1583992800.0 1584079200.0
Hex Block Numbers:  0x9352f9 0x936c14
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            NEBL
group              BPF
date        2020-03-15
hour             20:00
exchange       binance
Name: 811, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2020-03-15 20:00:00 2020-03-15 08:00:00 2020-03-16 08:00:00
Unix timestamps:  1584255600.0 1584342000.0
Hex Block Numbers:  0x939f3c 0x93b8c0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BNT
group              BPF
date        2020-03-17
hour             15:55
exchange       binance
Name: 812, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2020-03-17 15:55:00 2020-03-17 03:55:00 2020-03-18 03:55:00
Unix timestamps:  1584413700.0 1584500100.0
Hex Block Numbers:  0x93cdd6 0x93e74b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x93cdf2', 'uniqueId': '0x87d8e1d415fc3a55d4c81c90827f969ed97c8856627628e5c4820b245bf19a06:log:4', 'hash': '0x87d8e1d415fc3a55d4c81c90827f969ed97c8856627628e5c4820b245bf19a06', 'from': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2130.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x737d3d38a834300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:00:39.000Z'}}, {'blockNum': '0x93ce04', 'uniqueId': '0x5e292573bc8c487723b23368088b899a2879053388ee631f21566d4c5b2796d8:log:245', 'hash': '0x5e292573bc8c487723b23368088b899a2879053388ee631f21566d4c5b2796d8', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1017.4581703497847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3728118f356dcc6579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:03:58.000Z'}}, {'blockNum': '0x93ce04', 'uniqueId': '0x5e292573bc8c487723b23368088b899a2879053388ee631f21566d4c5b2796d8:log:251', 'hash': '0x5e292573bc8c487723b23368088b899a2879053388ee631f21566d4c5b2796d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1017.4581703497847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3728118f356dcc6579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:03:58.000Z'}}, {'blockNum': '0x93ce0e', 'uniqueId': '0x5d65ffca8c9525d3293c8cd52e7c6109261bfd54755f434729e22e50eda51022:log:116', 'hash': '0x5d65ffca8c9525d3293c8cd52e7c6109261bfd54755f434729e22e50eda51022', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1553.2828366901713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5434212e5314c00429', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:05:45.000Z'}}, {'blockNum': '0x93ce0e', 'uniqueId': '0x5d65ffca8c9525d3293c8cd52e7c6109261bfd54755f434729e22e50eda51022:log:122', 'hash': '0x5d65ffca8c9525d3293c8cd52e7c6109261bfd54755f434729e22e50eda51022', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 1553.2828366901713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5434212e5314c00429', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:05:45.000Z'}}, {'blockNum': '0x93ce0f', 'uniqueId': '0xc6d59e511c7e9052ad435e12dede5fd54777f01bc62e6883b429e30f1e7d575b:log:121', 'hash': '0xc6d59e511c7e9052ad435e12dede5fd54777f01bc62e6883b429e30f1e7d575b', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1542.6722203923198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53a0e0b304e3555bab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:06:00.000Z'}}, {'blockNum': '0x93ce0f', 'uniqueId': '0xc6d59e511c7e9052ad435e12dede5fd54777f01bc62e6883b429e30f1e7d575b:log:127', 'hash': '0xc6d59e511c7e9052ad435e12dede5fd54777f01bc62e6883b429e30f1e7d575b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1542.6722203923198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53a0e0b304e3555bab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:06:00.000Z'}}, {'blockNum': '0x93ce1c', 'uniqueId': '0xd479d5dac3ed530d9961682c8d48bd5769c764d12ae7a98d98378504738ca885:log:41', 'hash': '0xd479d5dac3ed530d9961682c8d48bd5769c764d12ae7a98d98378504738ca885', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 402.1160225403231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15cc7b17ff98edb8e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:08:21.000Z'}}, {'blockNum': '0x93ce1c', 'uniqueId': '0xd479d5dac3ed530d9961682c8d48bd5769c764d12ae7a98d98378504738ca885:log:47', 'hash': '0xd479d5dac3ed530d9961682c8d48bd5769c764d12ae7a98d98378504738ca885', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'value': 402.1160225403231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15cc7b17ff98edb8e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:08:21.000Z'}}, {'blockNum': '0x93ce23', 'uniqueId': '0xb1188af757c1b7551176bceb70a896252444fc22fb10ce29fcc502ae2a718ba3:log:164', 'hash': '0xb1188af757c1b7551176bceb70a896252444fc22fb10ce29fcc502ae2a718ba3', 'from': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 47.761215585338924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0296d1ec866cfa16a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:11:35.000Z'}}, {'blockNum': '0x93ce23', 'uniqueId': '0xb1188af757c1b7551176bceb70a896252444fc22fb10ce29fcc502ae2a718ba3:log:169', 'hash': '0xb1188af757c1b7551176bceb70a896252444fc22fb10ce29fcc502ae2a718ba3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 47.761215585338924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0296d1ec866cfa16a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:11:35.000Z'}}, {'blockNum': '0x93ce23', 'uniqueId': '0xb1188af757c1b7551176bceb70a896252444fc22fb10ce29fcc502ae2a718ba3:log:172', 'hash': '0xb1188af757c1b7551176bceb70a896252444fc22fb10ce29fcc502ae2a718ba3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 47.761215585338924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0296d1ec866cfa16a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:11:35.000Z'}}, {'blockNum': '0x93ce24', 'uniqueId': '0x4f9dba67664a9cabef3beca44d1a5dfab9988826ac190a2aed9f124c5c0e5bee:log:67', 'hash': '0x4f9dba67664a9cabef3beca44d1a5dfab9988826ac190a2aed9f124c5c0e5bee', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1206.1273530639753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41626125466c64a064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:11:49.000Z'}}, {'blockNum': '0x93ce24', 'uniqueId': '0x4f9dba67664a9cabef3beca44d1a5dfab9988826ac190a2aed9f124c5c0e5bee:log:73', 'hash': '0x4f9dba67664a9cabef3beca44d1a5dfab9988826ac190a2aed9f124c5c0e5bee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'value': 1206.1273530639753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41626125466c64a064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:11:49.000Z'}}, {'blockNum': '0x93ce34', 'uniqueId': '0x196be656e3454b24d5cb8f0901fd19e4105ca07602d6e2d57a607cf075b488c3:log:74', 'hash': '0x196be656e3454b24d5cb8f0901fd19e4105ca07602d6e2d57a607cf075b488c3', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 249.22509514865422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d82b167962876bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:14:49.000Z'}}, {'blockNum': '0x93ce34', 'uniqueId': '0x196be656e3454b24d5cb8f0901fd19e4105ca07602d6e2d57a607cf075b488c3:log:80', 'hash': '0x196be656e3454b24d5cb8f0901fd19e4105ca07602d6e2d57a607cf075b488c3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 249.22509514865422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d82b167962876bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:14:49.000Z'}}, {'blockNum': '0x93ce3a', 'uniqueId': '0xb111d91bac6082d014056de6edefdb34a75cb3109208d714a51e0834cd35a292:log:117', 'hash': '0xb111d91bac6082d014056de6edefdb34a75cb3109208d714a51e0834cd35a292', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 284.075445664462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6656b8bc5109ffc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:15:52.000Z'}}, {'blockNum': '0x93ce3a', 'uniqueId': '0xb111d91bac6082d014056de6edefdb34a75cb3109208d714a51e0834cd35a292:log:123', 'hash': '0xb111d91bac6082d014056de6edefdb34a75cb3109208d714a51e0834cd35a292', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 284.075445664462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6656b8bc5109ffc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:15:52.000Z'}}, {'blockNum': '0x93ce46', 'uniqueId': '0x4777d421689a0e06da4d00d270dc47cdf9a26c190e0e58fac3d343ae46432317:log:128', 'hash': '0x4777d421689a0e06da4d00d270dc47cdf9a26c190e0e58fac3d343ae46432317', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 14.619490747781132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcae2dd60b29aae4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:17:46.000Z'}}, {'blockNum': '0x93ce46', 'uniqueId': '0x4777d421689a0e06da4d00d270dc47cdf9a26c190e0e58fac3d343ae46432317:log:134', 'hash': '0x4777d421689a0e06da4d00d270dc47cdf9a26c190e0e58fac3d343ae46432317', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 14.619490747781132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xcae2dd60b29aae4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:17:46.000Z'}}, {'blockNum': '0x93ce59', 'uniqueId': '0x67ee73fe5661b4ab0f083e48daa69ef8c459afa948376ee6695dd9c1390a5d97:log:162', 'hash': '0x67ee73fe5661b4ab0f083e48daa69ef8c459afa948376ee6695dd9c1390a5d97', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 384.35764785395395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d608ac4f1f9ae62e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:21:17.000Z'}}, {'blockNum': '0x93ce59', 'uniqueId': '0x67ee73fe5661b4ab0f083e48daa69ef8c459afa948376ee6695dd9c1390a5d97:log:168', 'hash': '0x67ee73fe5661b4ab0f083e48daa69ef8c459afa948376ee6695dd9c1390a5d97', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 384.35764785395395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d608ac4f1f9ae62e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:21:17.000Z'}}, {'blockNum': '0x93ce5d', 'uniqueId': '0xc34c02246184fb735628b5d9272391d99852dc9c6da7f5fb31065ccda9d79c01:log:134', 'hash': '0xc34c02246184fb735628b5d9272391d99852dc9c6da7f5fb31065ccda9d79c01', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 160.80728589433602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08b7a63e870294e3bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:22:05.000Z'}}, {'blockNum': '0x93ce5d', 'uniqueId': '0xc34c02246184fb735628b5d9272391d99852dc9c6da7f5fb31065ccda9d79c01:log:140', 'hash': '0xc34c02246184fb735628b5d9272391d99852dc9c6da7f5fb31065ccda9d79c01', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 160.80728589433602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08b7a63e870294e3bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:22:05.000Z'}}, {'blockNum': '0x93ce5d', 'uniqueId': '0x6e42e1c34d70e5c401fc27d80e133b049dfb68ebe84d5c66b4890ba207e0d955:log:151', 'hash': '0x6e42e1c34d70e5c401fc27d80e133b049dfb68ebe84d5c66b4890ba207e0d955', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 803.9481559216827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b95059c4f9640690a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:22:05.000Z'}}, {'blockNum': '0x93ce5d', 'uniqueId': '0x6e42e1c34d70e5c401fc27d80e133b049dfb68ebe84d5c66b4890ba207e0d955:log:157', 'hash': '0x6e42e1c34d70e5c401fc27d80e133b049dfb68ebe84d5c66b4890ba207e0d955', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'value': 803.9481559216827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b95059c4f9640690a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:22:05.000Z'}}, {'blockNum': '0x93ce5f', 'uniqueId': '0x6bbef6dd44d483bf3f904ebd0d252b3f6fc20cc2eab2a294f581ac2d6b6deb3a:log:70', 'hash': '0x6bbef6dd44d483bf3f904ebd0d252b3f6fc20cc2eab2a294f581ac2d6b6deb3a', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 169.4407707978649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092f768b4e131e828c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:22:36.000Z'}}, {'blockNum': '0x93ce5f', 'uniqueId': '0x6bbef6dd44d483bf3f904ebd0d252b3f6fc20cc2eab2a294f581ac2d6b6deb3a:log:76', 'hash': '0x6bbef6dd44d483bf3f904ebd0d252b3f6fc20cc2eab2a294f581ac2d6b6deb3a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 169.4407707978649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x092f768b4e131e828c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:22:36.000Z'}}, {'blockNum': '0x93ce64', 'uniqueId': '0x4a07f7a551f4c4961d68b703be589f1264c1d9058ca6fbce29bbfb6c26b29e56:log:42', 'hash': '0x4a07f7a551f4c4961d68b703be589f1264c1d9058ca6fbce29bbfb6c26b29e56', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 180.87504595867827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09ce253ffb7b78bc6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:24:15.000Z'}}, {'blockNum': '0x93ce64', 'uniqueId': '0x4a07f7a551f4c4961d68b703be589f1264c1d9058ca6fbce29bbfb6c26b29e56:log:48', 'hash': '0x4a07f7a551f4c4961d68b703be589f1264c1d9058ca6fbce29bbfb6c26b29e56', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x810c99c5de0a673e4bc86090f9bfe96a6d1b49a7', 'value': 180.87504595867827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09ce253ffb7b78bc6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:24:15.000Z'}}, {'blockNum': '0x93ce69', 'uniqueId': '0x8ff2b3b7f5d7fa79e33341d15e69769a28186d526e14365b1c7b0a9ab032fb7e:log:169', 'hash': '0x8ff2b3b7f5d7fa79e33341d15e69769a28186d526e14365b1c7b0a9ab032fb7e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 192.92517981791343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a755fece20b1763f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:25:33.000Z'}}, {'blockNum': '0x93ce69', 'uniqueId': '0x8ff2b3b7f5d7fa79e33341d15e69769a28186d526e14365b1c7b0a9ab032fb7e:log:175', 'hash': '0x8ff2b3b7f5d7fa79e33341d15e69769a28186d526e14365b1c7b0a9ab032fb7e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 192.92517981791343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a755fece20b1763f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:25:33.000Z'}}, {'blockNum': '0x93ce6e', 'uniqueId': '0x279800dd76d1d09d8c6827ab18f2be52edda900c10daebaeb02fa104d85caed5:log:55', 'hash': '0x279800dd76d1d09d8c6827ab18f2be52edda900c10daebaeb02fa104d85caed5', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 274.82747133538345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ee5ff5114c860f9e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:26:33.000Z'}}, {'blockNum': '0x93ce6e', 'uniqueId': '0x279800dd76d1d09d8c6827ab18f2be52edda900c10daebaeb02fa104d85caed5:log:61', 'hash': '0x279800dd76d1d09d8c6827ab18f2be52edda900c10daebaeb02fa104d85caed5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 274.82747133538345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ee5ff5114c860f9e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:26:33.000Z'}}, {'blockNum': '0x93ce75', 'uniqueId': '0x487b87290abb2eeb65f888ec73097fceb5b23151f62ed236e5460e3af51e22cb:log:46', 'hash': '0x487b87290abb2eeb65f888ec73097fceb5b23151f62ed236e5460e3af51e22cb', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1066.6945258793214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39d35c3bb28aae39df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:28:10.000Z'}}, {'blockNum': '0x93ce75', 'uniqueId': '0x487b87290abb2eeb65f888ec73097fceb5b23151f62ed236e5460e3af51e22cb:log:52', 'hash': '0x487b87290abb2eeb65f888ec73097fceb5b23151f62ed236e5460e3af51e22cb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 1066.6945258793214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39d35c3bb28aae39df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:28:10.000Z'}}, {'blockNum': '0x93ce75', 'uniqueId': '0x9b554335257b294ae96d42d2de5696b59f5169cc0f5017a10e7ccc160049b18b:log:73', 'hash': '0x9b554335257b294ae96d42d2de5696b59f5169cc0f5017a10e7ccc160049b18b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 677.0895104501639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b4812a616528578d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:28:10.000Z'}}, {'blockNum': '0x93ce75', 'uniqueId': '0x9b554335257b294ae96d42d2de5696b59f5169cc0f5017a10e7ccc160049b18b:log:79', 'hash': '0x9b554335257b294ae96d42d2de5696b59f5169cc0f5017a10e7ccc160049b18b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'value': 677.0895104501639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b4812a616528578d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:28:10.000Z'}}, {'blockNum': '0x93ce87', 'uniqueId': '0x1b538104a3cc1d23ee0288b4ec03200e48321b115a9521ab05bf5a1fc0277fad:log:121', 'hash': '0x1b538104a3cc1d23ee0288b4ec03200e48321b115a9521ab05bf5a1fc0277fad', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 872.1681236893594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f47c39f8cfb38bf2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:32:55.000Z'}}, {'blockNum': '0x93ce87', 'uniqueId': '0x1b538104a3cc1d23ee0288b4ec03200e48321b115a9521ab05bf5a1fc0277fad:log:127', 'hash': '0x1b538104a3cc1d23ee0288b4ec03200e48321b115a9521ab05bf5a1fc0277fad', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 872.1681236893594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f47c39f8cfb38bf2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:32:55.000Z'}}, {'blockNum': '0x93ce89', 'uniqueId': '0xc85fca7a8964efddf7ac2f54e689ee59fd9e5077fb1c91ea27da1317c5627cb5:log:153', 'hash': '0xc85fca7a8964efddf7ac2f54e689ee59fd9e5077fb1c91ea27da1317c5627cb5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 710.9209487446509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x268a0294433c9982df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:33:08.000Z'}}, {'blockNum': '0x93ce89', 'uniqueId': '0xc85fca7a8964efddf7ac2f54e689ee59fd9e5077fb1c91ea27da1317c5627cb5:log:159', 'hash': '0xc85fca7a8964efddf7ac2f54e689ee59fd9e5077fb1c91ea27da1317c5627cb5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 710.9209487446509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x268a0294433c9982df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:33:08.000Z'}}, {'blockNum': '0x93ce8e', 'uniqueId': '0x55a6afe49fba9ea99794c8a9d875e88b16116e7654e0c4bb19491b718697913f:log:57', 'hash': '0x55a6afe49fba9ea99794c8a9d875e88b16116e7654e0c4bb19491b718697913f', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 306.9035473834474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10a3246e4cf1a5c5c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:33:45.000Z'}}, {'blockNum': '0x93ce8e', 'uniqueId': '0x55a6afe49fba9ea99794c8a9d875e88b16116e7654e0c4bb19491b718697913f:log:63', 'hash': '0x55a6afe49fba9ea99794c8a9d875e88b16116e7654e0c4bb19491b718697913f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 306.9035473834474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10a3246e4cf1a5c5c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:33:45.000Z'}}, {'blockNum': '0x93ce8f', 'uniqueId': '0x234b9f949d3777c027a93dbd0a5266b68304b68b00f771c05ab617cc1c88479b:log:119', 'hash': '0x234b9f949d3777c027a93dbd0a5266b68304b68b00f771c05ab617cc1c88479b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 241.08951340102723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d11ca03175c01b659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:33:56.000Z'}}, {'blockNum': '0x93ce8f', 'uniqueId': '0x234b9f949d3777c027a93dbd0a5266b68304b68b00f771c05ab617cc1c88479b:log:125', 'hash': '0x234b9f949d3777c027a93dbd0a5266b68304b68b00f771c05ab617cc1c88479b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 241.08951340102723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d11ca03175c01b659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:33:56.000Z'}}, {'blockNum': '0x93ce93', 'uniqueId': '0xf8690a7759a1b7238bf1fe4c9565b45fa95e2410dc03071e4e668e31aa177bf8:log:76', 'hash': '0xf8690a7759a1b7238bf1fe4c9565b45fa95e2410dc03071e4e668e31aa177bf8', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x60dd529935f1055aba2cb9b454e36d9e0f13446b', 'value': 253.01798739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0db75476fc0536ec00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:34:54.000Z'}}, {'blockNum': '0x93ceb8', 'uniqueId': '0x3ad080e3babd2eb4be7bf6439071b87ea1bde3d2fe64a0201970203f4a2aab0b:log:54', 'hash': '0x3ad080e3babd2eb4be7bf6439071b87ea1bde3d2fe64a0201970203f4a2aab0b', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2455.471751321705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x851c84142e2087133c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:42:51.000Z'}}, {'blockNum': '0x93ceb8', 'uniqueId': '0x3ad080e3babd2eb4be7bf6439071b87ea1bde3d2fe64a0201970203f4a2aab0b:log:60', 'hash': '0x3ad080e3babd2eb4be7bf6439071b87ea1bde3d2fe64a0201970203f4a2aab0b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2455.471751321705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x851c84142e2087133c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:42:51.000Z'}}, {'blockNum': '0x93cebb', 'uniqueId': '0x07cbacfa37b0f9077ce87fb2075a50ea76b5360b2fea8bb80c4758c662a785eb:log:147', 'hash': '0x07cbacfa37b0f9077ce87fb2075a50ea76b5360b2fea8bb80c4758c662a785eb', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 241.21071288539767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d1378996150ddab20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:43:34.000Z'}}, {'blockNum': '0x93cebb', 'uniqueId': '0x07cbacfa37b0f9077ce87fb2075a50ea76b5360b2fea8bb80c4758c662a785eb:log:153', 'hash': '0x07cbacfa37b0f9077ce87fb2075a50ea76b5360b2fea8bb80c4758c662a785eb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 241.21071288539767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d1378996150ddab20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:43:34.000Z'}}, {'blockNum': '0x93ced1', 'uniqueId': '0x9be6236632f0c0f068763aa29f70e3ad9fc5ea42efb6128f95a9701954902c00:log:165', 'hash': '0x9be6236632f0c0f068763aa29f70e3ad9fc5ea42efb6128f95a9701954902c00', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x7c94dd2f5a7d61a9b32dce482c6d855f79da40ce', 'value': 1943.39811855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x695a111441b73a5c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:48:20.000Z'}}, {'blockNum': '0x93ced8', 'uniqueId': '0xc1b0052bd5bf3cbf30270f9b0cc4108fba1f68b3b3e1e84a2f9652a8d7371874:log:127', 'hash': '0xc1b0052bd5bf3cbf30270f9b0cc4108fba1f68b3b3e1e84a2f9652a8d7371874', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 333.19853739211095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12100f0065887bb025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:49:52.000Z'}}, {'blockNum': '0x93ced8', 'uniqueId': '0xc1b0052bd5bf3cbf30270f9b0cc4108fba1f68b3b3e1e84a2f9652a8d7371874:log:133', 'hash': '0xc1b0052bd5bf3cbf30270f9b0cc4108fba1f68b3b3e1e84a2f9652a8d7371874', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 333.19853739211095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12100f0065887bb025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:49:52.000Z'}}, {'blockNum': '0x93ceed', 'uniqueId': '0x22944e52ec4726dbc0510db757cd2c5f07bf2dd96983592b6b8dc28d4580ec26:log:28', 'hash': '0x22944e52ec4726dbc0510db757cd2c5f07bf2dd96983592b6b8dc28d4580ec26', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 1201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x411b3920d44c240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:54:44.000Z'}}, {'blockNum': '0x93cef5', 'uniqueId': '0x90ec0968a5681a91f7cc5d77278dd84e3f655c3d21c0f579d6618958f0461d1d:log:99', 'hash': '0x90ec0968a5681a91f7cc5d77278dd84e3f655c3d21c0f579d6618958f0461d1d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 24.65670070081188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01562e32a68d0463c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:55:51.000Z'}}, {'blockNum': '0x93cef5', 'uniqueId': '0x90ec0968a5681a91f7cc5d77278dd84e3f655c3d21c0f579d6618958f0461d1d:log:105', 'hash': '0x90ec0968a5681a91f7cc5d77278dd84e3f655c3d21c0f579d6618958f0461d1d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'value': 24.65670070081188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01562e32a68d0463c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:55:51.000Z'}}, {'blockNum': '0x93cefa', 'uniqueId': '0x787024f4f375d76d7941b9495f2ba5b8e8ca6f63fd2792a3de81e9a227ca62e9:log:113', 'hash': '0x787024f4f375d76d7941b9495f2ba5b8e8ca6f63fd2792a3de81e9a227ca62e9', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 283.51257186114924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5e86fdfe65355f94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:56:38.000Z'}}, {'blockNum': '0x93cefa', 'uniqueId': '0x787024f4f375d76d7941b9495f2ba5b8e8ca6f63fd2792a3de81e9a227ca62e9:log:119', 'hash': '0x787024f4f375d76d7941b9495f2ba5b8e8ca6f63fd2792a3de81e9a227ca62e9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 283.51257186114924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5e86fdfe65355f94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T03:56:38.000Z'}}, {'blockNum': '0x93cf0c', 'uniqueId': '0x00809ba6cf05be3eb3cf5833b9814a8116c0f8191792eba63e9e229326b813bd:log:22', 'hash': '0x00809ba6cf05be3eb3cf5833b9814a8116c0f8191792eba63e9e229326b813bd', 'from': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x411b3920d44c240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:00:10.000Z'}}, {'blockNum': '0x93cf15', 'uniqueId': '0xfda1d6d850e28c55d9607972c47dadfa11af0f3425341bc02004e808effacb4b:log:80', 'hash': '0xfda1d6d850e28c55d9607972c47dadfa11af0f3425341bc02004e808effacb4b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2974.084771561806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa139b7a65be83a06ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:01:39.000Z'}}, {'blockNum': '0x93cf15', 'uniqueId': '0xfda1d6d850e28c55d9607972c47dadfa11af0f3425341bc02004e808effacb4b:log:86', 'hash': '0xfda1d6d850e28c55d9607972c47dadfa11af0f3425341bc02004e808effacb4b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'value': 2974.084771561806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa139b7a65be83a06ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:01:39.000Z'}}, {'blockNum': '0x93cf2f', 'uniqueId': '0xd9dfe1137945c7ed7cfe85f4d26f8e56ff9dddbd4978758c638f8480be38622a:log:118', 'hash': '0xd9dfe1137945c7ed7cfe85f4d26f8e56ff9dddbd4978758c638f8480be38622a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 739.231046557523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2812e4403ae9674ce6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:07:56.000Z'}}, {'blockNum': '0x93cf2f', 'uniqueId': '0xd9dfe1137945c7ed7cfe85f4d26f8e56ff9dddbd4978758c638f8480be38622a:log:124', 'hash': '0xd9dfe1137945c7ed7cfe85f4d26f8e56ff9dddbd4978758c638f8480be38622a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'value': 739.231046557523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2812e4403ae9674ce6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:07:56.000Z'}}, {'blockNum': '0x93cf3b', 'uniqueId': '0xa8d703314cdcd55b6983cf094c4df4d65ddced6e0508bc9b5c551a495abb4f53:log:113', 'hash': '0xa8d703314cdcd55b6983cf094c4df4d65ddced6e0508bc9b5c551a495abb4f53', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 401.70300074032946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15c6bfbedc0fd0e0aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:09:32.000Z'}}, {'blockNum': '0x93cf3b', 'uniqueId': '0xa8d703314cdcd55b6983cf094c4df4d65ddced6e0508bc9b5c551a495abb4f53:log:119', 'hash': '0xa8d703314cdcd55b6983cf094c4df4d65ddced6e0508bc9b5c551a495abb4f53', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 401.70300074032946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15c6bfbedc0fd0e0aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:09:32.000Z'}}, {'blockNum': '0x93cf46', 'uniqueId': '0xde7498b1b094d3521a50fb50a21b3b1d08b1d4dbb1ffa77417b003ed88d95b04:log:96', 'hash': '0xde7498b1b094d3521a50fb50a21b3b1d08b1d4dbb1ffa77417b003ed88d95b04', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 1405.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c3564e3c09c240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:12:05.000Z'}}, {'blockNum': '0x93cf5d', 'uniqueId': '0x0de72442d4bb28c228a6156a6d8f36b0c5f1716abbb3b135d1301d82a02cf77e:log:122', 'hash': '0x0de72442d4bb28c228a6156a6d8f36b0c5f1716abbb3b135d1301d82a02cf77e', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2440.6629267868416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x844f0090b9eae61c30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:18:03.000Z'}}, {'blockNum': '0x93cf5d', 'uniqueId': '0x0de72442d4bb28c228a6156a6d8f36b0c5f1716abbb3b135d1301d82a02cf77e:log:128', 'hash': '0x0de72442d4bb28c228a6156a6d8f36b0c5f1716abbb3b135d1301d82a02cf77e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2440.6629267868416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x844f0090b9eae61c30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:18:03.000Z'}}, {'blockNum': '0x93cf64', 'uniqueId': '0x95ab30c52206971e1d156a85fab353e40715f49781821f1327c0f3c345762eb1:log:97', 'hash': '0x95ab30c52206971e1d156a85fab353e40715f49781821f1327c0f3c345762eb1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4116.236542533013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdf2441dead8a48b057', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:18:39.000Z'}}, {'blockNum': '0x93cf64', 'uniqueId': '0x95ab30c52206971e1d156a85fab353e40715f49781821f1327c0f3c345762eb1:log:103', 'hash': '0x95ab30c52206971e1d156a85fab353e40715f49781821f1327c0f3c345762eb1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 4116.236542533013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdf2441dead8a48b057', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:18:39.000Z'}}, {'blockNum': '0x93cf66', 'uniqueId': '0xb649fe4d6494e48bbaf6045392738709f6c36efdf5dd53552efff5e8a82b06b7:log:58', 'hash': '0xb649fe4d6494e48bbaf6045392738709f6c36efdf5dd53552efff5e8a82b06b7', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1433.3559524379264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4db3cf4c7f3a4c6222', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:19:02.000Z'}}, {'blockNum': '0x93cf66', 'uniqueId': '0xb649fe4d6494e48bbaf6045392738709f6c36efdf5dd53552efff5e8a82b06b7:log:64', 'hash': '0xb649fe4d6494e48bbaf6045392738709f6c36efdf5dd53552efff5e8a82b06b7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1433.3559524379264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4db3cf4c7f3a4c6222', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:19:02.000Z'}}, {'blockNum': '0x93cf69', 'uniqueId': '0x7a19f2adf553ea19cce0e1f0cd9c47e8fff5cbf28a76a89326ab480854324f76:log:113', 'hash': '0x7a19f2adf553ea19cce0e1f0cd9c47e8fff5cbf28a76a89326ab480854324f76', 'from': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1405.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c3564e3c09c240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:20:04.000Z'}}, {'blockNum': '0x93cf70', 'uniqueId': '0x6c0e4dccf965f72ed301ee5895b551b931a69ea079a5df86ff09d2086aa04305:log:111', 'hash': '0x6c0e4dccf965f72ed301ee5895b551b931a69ea079a5df86ff09d2086aa04305', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1132.7740975720487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d6866080c21a395c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:21:42.000Z'}}, {'blockNum': '0x93cf70', 'uniqueId': '0x6c0e4dccf965f72ed301ee5895b551b931a69ea079a5df86ff09d2086aa04305:log:117', 'hash': '0x6c0e4dccf965f72ed301ee5895b551b931a69ea079a5df86ff09d2086aa04305', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1132.7740975720487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d6866080c21a395c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:21:42.000Z'}}, {'blockNum': '0x93cf77', 'uniqueId': '0x98316cae574ec7c5de5dfd031b187fa7b3935aa826d37ec146b09329924c1466:log:146', 'hash': '0x98316cae574ec7c5de5dfd031b187fa7b3935aa826d37ec146b09329924c1466', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1597.688186907407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x569c60ad13d5e610fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:23:36.000Z'}}, {'blockNum': '0x93cf77', 'uniqueId': '0x98316cae574ec7c5de5dfd031b187fa7b3935aa826d37ec146b09329924c1466:log:152', 'hash': '0x98316cae574ec7c5de5dfd031b187fa7b3935aa826d37ec146b09329924c1466', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1597.688186907407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x569c60ad13d5e610fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:23:36.000Z'}}, {'blockNum': '0x93cf7d', 'uniqueId': '0x3c15d6d7a7eea1d562087d2b9fe798b0fd5421dbab8c1909e8aea26f7d197a69:log:70', 'hash': '0x3c15d6d7a7eea1d562087d2b9fe798b0fd5421dbab8c1909e8aea26f7d197a69', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 210.36985500869994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b6777dc8b0bfdbbe3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:25:25.000Z'}}, {'blockNum': '0x93cf7d', 'uniqueId': '0x3c15d6d7a7eea1d562087d2b9fe798b0fd5421dbab8c1909e8aea26f7d197a69:log:76', 'hash': '0x3c15d6d7a7eea1d562087d2b9fe798b0fd5421dbab8c1909e8aea26f7d197a69', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 210.36985500869994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b6777dc8b0bfdbbe3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:25:25.000Z'}}, {'blockNum': '0x93cf93', 'uniqueId': '0x46a092e525b112f5259c03352e5725d7455306e6823f538f239963116ef70a61:log:137', 'hash': '0x46a092e525b112f5259c03352e5725d7455306e6823f538f239963116ef70a61', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2491.2598673175958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x870d2d02109c130d71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:30:54.000Z'}}, {'blockNum': '0x93cf93', 'uniqueId': '0x46a092e525b112f5259c03352e5725d7455306e6823f538f239963116ef70a61:log:143', 'hash': '0x46a092e525b112f5259c03352e5725d7455306e6823f538f239963116ef70a61', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 2491.2598673175958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x870d2d02109c130d71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:30:54.000Z'}}, {'blockNum': '0x93cf94', 'uniqueId': '0xdf9cc4fbd855d105c8e39bcf603b182d4e00db338f9e43eafc6080d6db6fd73b:log:152', 'hash': '0xdf9cc4fbd855d105c8e39bcf603b182d4e00db338f9e43eafc6080d6db6fd73b', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 822.6892029727038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c991b2f4f393e97b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:31:09.000Z'}}, {'blockNum': '0x93cf94', 'uniqueId': '0xdf9cc4fbd855d105c8e39bcf603b182d4e00db338f9e43eafc6080d6db6fd73b:log:156', 'hash': '0xdf9cc4fbd855d105c8e39bcf603b182d4e00db338f9e43eafc6080d6db6fd73b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 822.6892029727038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c991b2f4f393e97b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:31:09.000Z'}}, {'blockNum': '0x93cf94', 'uniqueId': '0x6c5d25a25d52a031d400f16b81f8811abc33a736e3f5e9924b659bd98420c035:log:183', 'hash': '0x6c5d25a25d52a031d400f16b81f8811abc33a736e3f5e9924b659bd98420c035', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2845.3973303263215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a3fd2045ee1352578', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:31:09.000Z'}}, {'blockNum': '0x93cf94', 'uniqueId': '0x6c5d25a25d52a031d400f16b81f8811abc33a736e3f5e9924b659bd98420c035:log:187', 'hash': '0x6c5d25a25d52a031d400f16b81f8811abc33a736e3f5e9924b659bd98420c035', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2845.3973303263215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a3fd2045ee1352578', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:31:09.000Z'}}, {'blockNum': '0x93cf9a', 'uniqueId': '0x6b7fb026f0c84cf8b27975ea1942e9bdf4c06c08bc7e94e197baa5fff54c3503:log:118', 'hash': '0x6b7fb026f0c84cf8b27975ea1942e9bdf4c06c08bc7e94e197baa5fff54c3503', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 834.8873768578471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d4263cdd44daa2e9b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:33:23.000Z'}}, {'blockNum': '0x93cf9a', 'uniqueId': '0x6b7fb026f0c84cf8b27975ea1942e9bdf4c06c08bc7e94e197baa5fff54c3503:log:124', 'hash': '0x6b7fb026f0c84cf8b27975ea1942e9bdf4c06c08bc7e94e197baa5fff54c3503', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 834.8873768578471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d4263cdd44daa2e9b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:33:23.000Z'}}, {'blockNum': '0x93cfa6', 'uniqueId': '0xbe33599f98eb654af83cec4854bbd4dff3e3cb08fd8fb8568f77f57be3f230b6:log:95', 'hash': '0xbe33599f98eb654af83cec4854bbd4dff3e3cb08fd8fb8568f77f57be3f230b6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 804.1528506018486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b97dcd509b8f489b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:36:48.000Z'}}, {'blockNum': '0x93cfa6', 'uniqueId': '0xbe33599f98eb654af83cec4854bbd4dff3e3cb08fd8fb8568f77f57be3f230b6:log:101', 'hash': '0xbe33599f98eb654af83cec4854bbd4dff3e3cb08fd8fb8568f77f57be3f230b6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'value': 804.1528506018486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b97dcd509b8f489b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:36:48.000Z'}}, {'blockNum': '0x93cfb7', 'uniqueId': '0xd096a887be0e3adcbec1f1f0e4d62558c3ab3eb42e21dd05febf7ba02fa4b3c7:log:105', 'hash': '0xd096a887be0e3adcbec1f1f0e4d62558c3ab3eb42e21dd05febf7ba02fa4b3c7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1404.1615641365001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c1ea7ff03ecf86e56', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:39:42.000Z'}}, {'blockNum': '0x93cfb7', 'uniqueId': '0xd096a887be0e3adcbec1f1f0e4d62558c3ab3eb42e21dd05febf7ba02fa4b3c7:log:111', 'hash': '0xd096a887be0e3adcbec1f1f0e4d62558c3ab3eb42e21dd05febf7ba02fa4b3c7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 1404.1615641365001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c1ea7ff03ecf86e56', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:39:42.000Z'}}, {'blockNum': '0x93cfc5', 'uniqueId': '0xd49024b30c005da9ff6629b83f8e96811daa54dae00d8e9817f3ba1650b765c8:log:108', 'hash': '0xd49024b30c005da9ff6629b83f8e96811daa54dae00d8e9817f3ba1650b765c8', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 435.87091035450106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a0ec8b9fd62a9475', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:44:25.000Z'}}, {'blockNum': '0x93cfc5', 'uniqueId': '0xd49024b30c005da9ff6629b83f8e96811daa54dae00d8e9817f3ba1650b765c8:log:114', 'hash': '0xd49024b30c005da9ff6629b83f8e96811daa54dae00d8e9817f3ba1650b765c8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 435.87091035450106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a0ec8b9fd62a9475', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:44:25.000Z'}}, {'blockNum': '0x93cfd2', 'uniqueId': '0x7138153215fdf04f33bcea6128506973e64a4db39a915a7ccaaf68df1fefa5f1:log:130', 'hash': '0x7138153215fdf04f33bcea6128506973e64a4db39a915a7ccaaf68df1fefa5f1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 24.116998611136456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014eb0ca75a160a158', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:48:28.000Z'}}, {'blockNum': '0x93cfd2', 'uniqueId': '0x7138153215fdf04f33bcea6128506973e64a4db39a915a7ccaaf68df1fefa5f1:log:136', 'hash': '0x7138153215fdf04f33bcea6128506973e64a4db39a915a7ccaaf68df1fefa5f1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'value': 24.116998611136456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014eb0ca75a160a158', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:48:28.000Z'}}, {'blockNum': '0x93cfd6', 'uniqueId': '0x6773eb926c5d409f1f5597ab4f7cc65bf60fea61ab5275bbb012a891d9b02c1d:log:115', 'hash': '0x6773eb926c5d409f1f5597ab4f7cc65bf60fea61ab5275bbb012a891d9b02c1d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 565.5197945604209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ea829e8e681c507f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:49:05.000Z'}}, {'blockNum': '0x93cfd6', 'uniqueId': '0x6773eb926c5d409f1f5597ab4f7cc65bf60fea61ab5275bbb012a891d9b02c1d:log:121', 'hash': '0x6773eb926c5d409f1f5597ab4f7cc65bf60fea61ab5275bbb012a891d9b02c1d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'value': 565.5197945604209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ea829e8e681c507f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:49:05.000Z'}}, {'blockNum': '0x93cfd8', 'uniqueId': '0x0b840c1cbb7b2e3e611751d610a4c995c4e0432a668b2dbd649ae47769abe803:log:146', 'hash': '0x0b840c1cbb7b2e3e611751d610a4c995c4e0432a668b2dbd649ae47769abe803', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1205.526028333257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415a08cf9e534847b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:49:55.000Z'}}, {'blockNum': '0x93cfd8', 'uniqueId': '0x0b840c1cbb7b2e3e611751d610a4c995c4e0432a668b2dbd649ae47769abe803:log:152', 'hash': '0x0b840c1cbb7b2e3e611751d610a4c995c4e0432a668b2dbd649ae47769abe803', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'value': 1205.526028333257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415a08cf9e534847b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:49:55.000Z'}}, {'blockNum': '0x93cfe3', 'uniqueId': '0x56559e7e47cea2299a41af5610b230e25bf3eb0e506250596177c20eb3e6cdab:log:36', 'hash': '0x56559e7e47cea2299a41af5610b230e25bf3eb0e506250596177c20eb3e6cdab', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 803.5004074376677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b8ecee36fdbd169bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:53:14.000Z'}}, {'blockNum': '0x93cfe3', 'uniqueId': '0x56559e7e47cea2299a41af5610b230e25bf3eb0e506250596177c20eb3e6cdab:log:42', 'hash': '0x56559e7e47cea2299a41af5610b230e25bf3eb0e506250596177c20eb3e6cdab', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'value': 803.5004074376677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b8ecee36fdbd169bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:53:14.000Z'}}, {'blockNum': '0x93cfe3', 'uniqueId': '0xa3e2ace13f7b2bc1edb066d8ea727d5e3342ae45a1c144fb142b1e9bab94b3e4:log:54', 'hash': '0xa3e2ace13f7b2bc1edb066d8ea727d5e3342ae45a1c144fb142b1e9bab94b3e4', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 164.1501949281387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08e60aa49506d59da8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:53:14.000Z'}}, {'blockNum': '0x93cfe3', 'uniqueId': '0xa3e2ace13f7b2bc1edb066d8ea727d5e3342ae45a1c144fb142b1e9bab94b3e4:log:60', 'hash': '0xa3e2ace13f7b2bc1edb066d8ea727d5e3342ae45a1c144fb142b1e9bab94b3e4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 164.1501949281387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08e60aa49506d59da8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T04:53:14.000Z'}}, {'blockNum': '0x93d003', 'uniqueId': '0x8f23a5ae229c6e8b5a0eb6a7b13bc93632bf3b78d3767c01ac086d414c15be96:log:241', 'hash': '0x8f23a5ae229c6e8b5a0eb6a7b13bc93632bf3b78d3767c01ac086d414c15be96', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3866.5460036084737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd19b1ae0717553a739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:01:25.000Z'}}, {'blockNum': '0x93d003', 'uniqueId': '0x8f23a5ae229c6e8b5a0eb6a7b13bc93632bf3b78d3767c01ac086d414c15be96:log:247', 'hash': '0x8f23a5ae229c6e8b5a0eb6a7b13bc93632bf3b78d3767c01ac086d414c15be96', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 3866.5460036084737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd19b1ae0717553a739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:01:25.000Z'}}, {'blockNum': '0x93d007', 'uniqueId': '0x7cb696224ee78a31ef61f3ec9fcd90ba68cdf643740c6320b4907b40409e4af5:log:141', 'hash': '0x7cb696224ee78a31ef61f3ec9fcd90ba68cdf643740c6320b4907b40409e4af5', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 431.4796329442376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1763fb9815f13777f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:02:09.000Z'}}, {'blockNum': '0x93d007', 'uniqueId': '0x7cb696224ee78a31ef61f3ec9fcd90ba68cdf643740c6320b4907b40409e4af5:log:147', 'hash': '0x7cb696224ee78a31ef61f3ec9fcd90ba68cdf643740c6320b4907b40409e4af5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 431.4796329442376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1763fb9815f13777f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:02:09.000Z'}}, {'blockNum': '0x93d00d', 'uniqueId': '0x851316ddee00f78be2b9099aca9fe13ebb17b30f4892d0fd6cb3faa1e91964f1:log:120', 'hash': '0x851316ddee00f78be2b9099aca9fe13ebb17b30f4892d0fd6cb3faa1e91964f1', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 462.0371593004995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x190c0dbc67f0d87128', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:04:37.000Z'}}, {'blockNum': '0x93d00d', 'uniqueId': '0x851316ddee00f78be2b9099aca9fe13ebb17b30f4892d0fd6cb3faa1e91964f1:log:126', 'hash': '0x851316ddee00f78be2b9099aca9fe13ebb17b30f4892d0fd6cb3faa1e91964f1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 462.0371593004995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x190c0dbc67f0d87128', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:04:37.000Z'}}, {'blockNum': '0x93d00e', 'uniqueId': '0x928aa677a6ed0560be780c7c1146e5e9f2281256e86cb356378a3bd3f7d7be6a:log:147', 'hash': '0x928aa677a6ed0560be780c7c1146e5e9f2281256e86cb356378a3bd3f7d7be6a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 804.2520413553921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b993d3a80b6e9ac19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:04:39.000Z'}}, {'blockNum': '0x93d00e', 'uniqueId': '0x928aa677a6ed0560be780c7c1146e5e9f2281256e86cb356378a3bd3f7d7be6a:log:153', 'hash': '0x928aa677a6ed0560be780c7c1146e5e9f2281256e86cb356378a3bd3f7d7be6a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'value': 804.2520413553921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b993d3a80b6e9ac19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:04:39.000Z'}}, {'blockNum': '0x93d015', 'uniqueId': '0x3084e672617b44766714e0367c71c82dfed05d50f85ec2a17074d768fa1433e0:log:105', 'hash': '0x3084e672617b44766714e0367c71c82dfed05d50f85ec2a17074d768fa1433e0', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 469.8677910851451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1978b9ba8693869f09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:06:10.000Z'}}, {'blockNum': '0x93d015', 'uniqueId': '0x3084e672617b44766714e0367c71c82dfed05d50f85ec2a17074d768fa1433e0:log:111', 'hash': '0x3084e672617b44766714e0367c71c82dfed05d50f85ec2a17074d768fa1433e0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 469.8677910851451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1978b9ba8693869f09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:06:10.000Z'}}, {'blockNum': '0x93d03c', 'uniqueId': '0xe5bca4de9893aae0d1c1af92e80a21722802ef5ff127d9c42d6dd9433d7183d7:log:26', 'hash': '0xe5bca4de9893aae0d1c1af92e80a21722802ef5ff127d9c42d6dd9433d7183d7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 804.0190429330071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b960173ac0f6ee1c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:12:45.000Z'}}, {'blockNum': '0x93d03c', 'uniqueId': '0xe5bca4de9893aae0d1c1af92e80a21722802ef5ff127d9c42d6dd9433d7183d7:log:32', 'hash': '0xe5bca4de9893aae0d1c1af92e80a21722802ef5ff127d9c42d6dd9433d7183d7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb622b86a65d2fbd5d7f28803dc6e5c9810f6a746', 'value': 804.0190429330071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b960173ac0f6ee1c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:12:45.000Z'}}, {'blockNum': '0x93d043', 'uniqueId': '0x659171711a92ff8d68e3db345ed5207c101b691e69f9ad3e5046c8b0937c9abb:log:25', 'hash': '0x659171711a92ff8d68e3db345ed5207c101b691e69f9ad3e5046c8b0937c9abb', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2023.2999601050522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6daeed71d01ba66bec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:15:49.000Z'}}, {'blockNum': '0x93d043', 'uniqueId': '0x659171711a92ff8d68e3db345ed5207c101b691e69f9ad3e5046c8b0937c9abb:log:31', 'hash': '0x659171711a92ff8d68e3db345ed5207c101b691e69f9ad3e5046c8b0937c9abb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 2023.2999601050522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6daeed71d01ba66bec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:15:49.000Z'}}, {'blockNum': '0x93d043', 'uniqueId': '0x122abf0bfdd43360f518483b5765875f9af8f089136c7af1eb8f0e371b55c4e7:log:144', 'hash': '0x122abf0bfdd43360f518483b5765875f9af8f089136c7af1eb8f0e371b55c4e7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 84.25102112805595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049137c155bdb4a935', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:15:49.000Z'}}, {'blockNum': '0x93d043', 'uniqueId': '0x122abf0bfdd43360f518483b5765875f9af8f089136c7af1eb8f0e371b55c4e7:log:150', 'hash': '0x122abf0bfdd43360f518483b5765875f9af8f089136c7af1eb8f0e371b55c4e7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 84.25102112805595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049137c155bdb4a935', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:15:49.000Z'}}, {'blockNum': '0x93d044', 'uniqueId': '0xe9d06e03c2c923162d4898bd31a8a129a4a075017f7993c9c7eee74ed1320e5e:log:28', 'hash': '0xe9d06e03c2c923162d4898bd31a8a129a4a075017f7993c9c7eee74ed1320e5e', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1081.223227014847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a9cfc8c67617efe58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:15:59.000Z'}}, {'blockNum': '0x93d044', 'uniqueId': '0xe9d06e03c2c923162d4898bd31a8a129a4a075017f7993c9c7eee74ed1320e5e:log:34', 'hash': '0xe9d06e03c2c923162d4898bd31a8a129a4a075017f7993c9c7eee74ed1320e5e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1081.223227014847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a9cfc8c67617efe58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:15:59.000Z'}}, {'blockNum': '0x93d04f', 'uniqueId': '0x87aa942d97ceb18970d0cf71293194a4c5365d4ec2a1876d05b8cfaf6f1c8373:log:137', 'hash': '0x87aa942d97ceb18970d0cf71293194a4c5365d4ec2a1876d05b8cfaf6f1c8373', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 803.6839911671144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b915b1bddc00771df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:19:45.000Z'}}, {'blockNum': '0x93d04f', 'uniqueId': '0x87aa942d97ceb18970d0cf71293194a4c5365d4ec2a1876d05b8cfaf6f1c8373:log:143', 'hash': '0x87aa942d97ceb18970d0cf71293194a4c5365d4ec2a1876d05b8cfaf6f1c8373', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 803.6839911671144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b915b1bddc00771df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:19:45.000Z'}}, {'blockNum': '0x93d05d', 'uniqueId': '0x8ddb7c0d6fcd3bf097824b43f2db3974f38c4d1475626d1859ec81d89aece1c6:log:167', 'hash': '0x8ddb7c0d6fcd3bf097824b43f2db3974f38c4d1475626d1859ec81d89aece1c6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 534.949745395968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cffeb47270452f569', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:23:50.000Z'}}, {'blockNum': '0x93d05d', 'uniqueId': '0x8ddb7c0d6fcd3bf097824b43f2db3974f38c4d1475626d1859ec81d89aece1c6:log:173', 'hash': '0x8ddb7c0d6fcd3bf097824b43f2db3974f38c4d1475626d1859ec81d89aece1c6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 534.949745395968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cffeb47270452f569', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:23:50.000Z'}}, {'blockNum': '0x93d069', 'uniqueId': '0x77dc3b06e00ef44cdda89e957c054221f530ed907592c7caea41851dcf8ceab1:log:62', 'hash': '0x77dc3b06e00ef44cdda89e957c054221f530ed907592c7caea41851dcf8ceab1', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1227.4924407437027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x428ae12f529d9eeb19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:26:28.000Z'}}, {'blockNum': '0x93d069', 'uniqueId': '0x77dc3b06e00ef44cdda89e957c054221f530ed907592c7caea41851dcf8ceab1:log:68', 'hash': '0x77dc3b06e00ef44cdda89e957c054221f530ed907592c7caea41851dcf8ceab1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1227.4924407437027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x428ae12f529d9eeb19', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:26:28.000Z'}}, {'blockNum': '0x93d069', 'uniqueId': '0x04755a71fcb4c3fa82628af68bc1809375390778e4df25e22633a07c145a3914:log:79', 'hash': '0x04755a71fcb4c3fa82628af68bc1809375390778e4df25e22633a07c145a3914', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 77.17743647124655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x042f0d559127ed87bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:26:28.000Z'}}, {'blockNum': '0x93d069', 'uniqueId': '0x04755a71fcb4c3fa82628af68bc1809375390778e4df25e22633a07c145a3914:log:85', 'hash': '0x04755a71fcb4c3fa82628af68bc1809375390778e4df25e22633a07c145a3914', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 77.17743647124655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x042f0d559127ed87bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:26:28.000Z'}}, {'blockNum': '0x93d074', 'uniqueId': '0xe30ccc749ccfbb0b8ff7089dbe637df28ecca7e33964adca717bc23ab96e692c:log:115', 'hash': '0xe30ccc749ccfbb0b8ff7089dbe637df28ecca7e33964adca717bc23ab96e692c', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 76.56186676950877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x042682642f495a8b15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:28:25.000Z'}}, {'blockNum': '0x93d074', 'uniqueId': '0xe30ccc749ccfbb0b8ff7089dbe637df28ecca7e33964adca717bc23ab96e692c:log:121', 'hash': '0xe30ccc749ccfbb0b8ff7089dbe637df28ecca7e33964adca717bc23ab96e692c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 76.56186676950877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x042682642f495a8b15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:28:25.000Z'}}, {'blockNum': '0x93d07e', 'uniqueId': '0x42ef98c405cfe105186e112cf7bdad77b148c86e338bdc3100c0c8f491d46771:log:123', 'hash': '0x42ef98c405cfe105186e112cf7bdad77b148c86e338bdc3100c0c8f491d46771', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 812.3308601152119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c095af55c86bc5cc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:30:48.000Z'}}, {'blockNum': '0x93d07e', 'uniqueId': '0x42ef98c405cfe105186e112cf7bdad77b148c86e338bdc3100c0c8f491d46771:log:129', 'hash': '0x42ef98c405cfe105186e112cf7bdad77b148c86e338bdc3100c0c8f491d46771', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 812.3308601152119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c095af55c86bc5cc0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:30:48.000Z'}}, {'blockNum': '0x93d093', 'uniqueId': '0x3ec9aaa6556c08f3a7b508d4cc73d14ea4968dfc7635152f72086515e7824fd2:log:107', 'hash': '0x3ec9aaa6556c08f3a7b508d4cc73d14ea4968dfc7635152f72086515e7824fd2', 'from': '0x3b0116363e435d9e4ef24eca6282a21b7cc662df', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 129.66282370361046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07076ee32ce3ccd785', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:35:05.000Z'}}, {'blockNum': '0x93d093', 'uniqueId': '0x3ec9aaa6556c08f3a7b508d4cc73d14ea4968dfc7635152f72086515e7824fd2:log:113', 'hash': '0x3ec9aaa6556c08f3a7b508d4cc73d14ea4968dfc7635152f72086515e7824fd2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 129.66282370361046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07076ee32ce3ccd785', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:35:05.000Z'}}, {'blockNum': '0x93d0a6', 'uniqueId': '0xcac30b5be0b04d7651c73a46d061cfa2c923ca6077cde6531e44319143222321:log:115', 'hash': '0xcac30b5be0b04d7651c73a46d061cfa2c923ca6077cde6531e44319143222321', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 803.8114412078708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b931fe700c5eba0d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:39:18.000Z'}}, {'blockNum': '0x93d0a6', 'uniqueId': '0xcac30b5be0b04d7651c73a46d061cfa2c923ca6077cde6531e44319143222321:log:121', 'hash': '0xcac30b5be0b04d7651c73a46d061cfa2c923ca6077cde6531e44319143222321', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x89f26fff3f690b19057e6beb7a82c5c29adfe20b', 'value': 803.8114412078708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b931fe700c5eba0d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:39:18.000Z'}}, {'blockNum': '0x93d0a6', 'uniqueId': '0x4a86cc3f516fdc722fa8ef1f680fff512d1482f043859911b609ad67660a0b36:log:131', 'hash': '0x4a86cc3f516fdc722fa8ef1f680fff512d1482f043859911b609ad67660a0b36', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 77.07659738237108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x042da714f33007d686', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:39:18.000Z'}}, {'blockNum': '0x93d0a6', 'uniqueId': '0x4a86cc3f516fdc722fa8ef1f680fff512d1482f043859911b609ad67660a0b36:log:137', 'hash': '0x4a86cc3f516fdc722fa8ef1f680fff512d1482f043859911b609ad67660a0b36', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 77.07659738237108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x042da714f33007d686', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:39:18.000Z'}}, {'blockNum': '0x93d0aa', 'uniqueId': '0xeb1830595507e615d95b05ff9dde2a2815e3902cc1345f1fb458892f4d7a5ce8:log:242', 'hash': '0xeb1830595507e615d95b05ff9dde2a2815e3902cc1345f1fb458892f4d7a5ce8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 112.50883093946896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06195fa9a461868af3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:40:11.000Z'}}, {'blockNum': '0x93d0aa', 'uniqueId': '0xeb1830595507e615d95b05ff9dde2a2815e3902cc1345f1fb458892f4d7a5ce8:log:248', 'hash': '0xeb1830595507e615d95b05ff9dde2a2815e3902cc1345f1fb458892f4d7a5ce8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5a9f1cd844ce91aaadaa03059677eebcf3cf00df', 'value': 112.50883093946896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06195fa9a461868af3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:40:11.000Z'}}, {'blockNum': '0x93d0b2', 'uniqueId': '0x6fbc7126f71f90586c2c0ee553982de18e3f706ce043d4e0099cd23ba0701432:log:76', 'hash': '0x6fbc7126f71f90586c2c0ee553982de18e3f706ce043d4e0099cd23ba0701432', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1002.7739133597769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x365c489946ddd58898', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:41:54.000Z'}}, {'blockNum': '0x93d0b2', 'uniqueId': '0x6fbc7126f71f90586c2c0ee553982de18e3f706ce043d4e0099cd23ba0701432:log:82', 'hash': '0x6fbc7126f71f90586c2c0ee553982de18e3f706ce043d4e0099cd23ba0701432', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1002.7739133597769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x365c489946ddd58898', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:41:54.000Z'}}, {'blockNum': '0x93d0b7', 'uniqueId': '0x675455ae528b4ab2675886ec220db99d09d1b47ad746f6e2ceae2725436902f4:log:22', 'hash': '0x675455ae528b4ab2675886ec220db99d09d1b47ad746f6e2ceae2725436902f4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 136.66095002539498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07688d39fcc3143f06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:44:01.000Z'}}, {'blockNum': '0x93d0b7', 'uniqueId': '0x675455ae528b4ab2675886ec220db99d09d1b47ad746f6e2ceae2725436902f4:log:28', 'hash': '0x675455ae528b4ab2675886ec220db99d09d1b47ad746f6e2ceae2725436902f4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa00655976c5c9a1ed58b3707b190867069babee5', 'value': 136.66095002539498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07688d39fcc3143f06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:44:01.000Z'}}, {'blockNum': '0x93d0bb', 'uniqueId': '0x456bb55a0c1131a74dfea01136cbc3bb8e505f299d825a3a0d4f6cfe9fd0104b:log:196', 'hash': '0x456bb55a0c1131a74dfea01136cbc3bb8e505f299d825a3a0d4f6cfe9fd0104b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 562.6767740566476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e80b578d0b136292e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:44:44.000Z'}}, {'blockNum': '0x93d0bb', 'uniqueId': '0x456bb55a0c1131a74dfea01136cbc3bb8e505f299d825a3a0d4f6cfe9fd0104b:log:202', 'hash': '0x456bb55a0c1131a74dfea01136cbc3bb8e505f299d825a3a0d4f6cfe9fd0104b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 562.6767740566476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e80b578d0b136292e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:44:44.000Z'}}, {'blockNum': '0x93d0d4', 'uniqueId': '0xdcb423a02b07855b1ad5bcb05b8670f775009e2241dd383c1986cf2728be1d42:log:182', 'hash': '0xdcb423a02b07855b1ad5bcb05b8670f775009e2241dd383c1986cf2728be1d42', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 193.7572976726893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a80ec33a9c4445a1e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:51:17.000Z'}}, {'blockNum': '0x93d0d4', 'uniqueId': '0xdcb423a02b07855b1ad5bcb05b8670f775009e2241dd383c1986cf2728be1d42:log:188', 'hash': '0xdcb423a02b07855b1ad5bcb05b8670f775009e2241dd383c1986cf2728be1d42', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 193.7572976726893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a80ec33a9c4445a1e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:51:17.000Z'}}, {'blockNum': '0x93d0d5', 'uniqueId': '0x475c9b77325e516cb000100d5cf813450a04ccbd6b62895baa2c57899a8ca7d8:log:128', 'hash': '0x475c9b77325e516cb000100d5cf813450a04ccbd6b62895baa2c57899a8ca7d8', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 555.6614675363861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e1f5a18b4268a9f73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:51:35.000Z'}}, {'blockNum': '0x93d0d5', 'uniqueId': '0x475c9b77325e516cb000100d5cf813450a04ccbd6b62895baa2c57899a8ca7d8:log:132', 'hash': '0x475c9b77325e516cb000100d5cf813450a04ccbd6b62895baa2c57899a8ca7d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 555.6614675363861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e1f5a18b4268a9f73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:51:35.000Z'}}, {'blockNum': '0x93d0dd', 'uniqueId': '0x4eb1ca3ae64f5c5365ab3d6b899b1900e57cb532254999eeabcfa81a0542c269:log:100', 'hash': '0x4eb1ca3ae64f5c5365ab3d6b899b1900e57cb532254999eeabcfa81a0542c269', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2411.066001689738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82b4432a29623678fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:52:53.000Z'}}, {'blockNum': '0x93d0dd', 'uniqueId': '0x4eb1ca3ae64f5c5365ab3d6b899b1900e57cb532254999eeabcfa81a0542c269:log:106', 'hash': '0x4eb1ca3ae64f5c5365ab3d6b899b1900e57cb532254999eeabcfa81a0542c269', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 2411.066001689738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82b4432a29623678fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:52:53.000Z'}}, {'blockNum': '0x93d0eb', 'uniqueId': '0x0f2d00284461c495f299a5b4330f49fd44f208a20932421989aaa2a46e80217c:log:36', 'hash': '0x0f2d00284461c495f299a5b4330f49fd44f208a20932421989aaa2a46e80217c', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1222.4649347456507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42451be5411d96639e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:56:24.000Z'}}, {'blockNum': '0x93d0eb', 'uniqueId': '0x0f2d00284461c495f299a5b4330f49fd44f208a20932421989aaa2a46e80217c:log:42', 'hash': '0x0f2d00284461c495f299a5b4330f49fd44f208a20932421989aaa2a46e80217c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1222.4649347456507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42451be5411d96639e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:56:24.000Z'}}, {'blockNum': '0x93d0f7', 'uniqueId': '0xbb2e79136c445aeed6f28e5653a1e76cc6114a20704e26205ee24ac711dd1db3:log:140', 'hash': '0xbb2e79136c445aeed6f28e5653a1e76cc6114a20704e26205ee24ac711dd1db3', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 32.34214821139583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c0d664713548a2d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:58:46.000Z'}}, {'blockNum': '0x93d0f7', 'uniqueId': '0xbb2e79136c445aeed6f28e5653a1e76cc6114a20704e26205ee24ac711dd1db3:log:146', 'hash': '0xbb2e79136c445aeed6f28e5653a1e76cc6114a20704e26205ee24ac711dd1db3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 32.34214821139583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c0d664713548a2d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T05:58:46.000Z'}}, {'blockNum': '0x93d102', 'uniqueId': '0x67380956a1f53d4a602de26aae77b3d12bae9756796c215b51c9079378cc51ae:log:65', 'hash': '0x67380956a1f53d4a602de26aae77b3d12bae9756796c215b51c9079378cc51ae', 'from': '0xae2953655f8d83e9fe62f58135b19c0d8135a043', 'to': '0xcb7d22ff64101d4af5a2d056f4531202019ff14e', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:00:02.000Z'}}, {'blockNum': '0x93d109', 'uniqueId': '0x9a54b510f0983387ae91074040afbf6bac47a43009bc52eda728f397496eca92:log:204', 'hash': '0x9a54b510f0983387ae91074040afbf6bac47a43009bc52eda728f397496eca92', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 176.80858186471775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0995b6446f1712ef26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:02:05.000Z'}}, {'blockNum': '0x93d109', 'uniqueId': '0x9a54b510f0983387ae91074040afbf6bac47a43009bc52eda728f397496eca92:log:210', 'hash': '0x9a54b510f0983387ae91074040afbf6bac47a43009bc52eda728f397496eca92', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 176.80858186471775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0995b6446f1712ef26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:02:05.000Z'}}, {'blockNum': '0x93d10b', 'uniqueId': '0xcb4f93431c17e4c7a095a5a996f9b29794592ee8d3628e7a705873ce8c1ac34a:log:71', 'hash': '0xcb4f93431c17e4c7a095a5a996f9b29794592ee8d3628e7a705873ce8c1ac34a', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1219.1728921578504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42176c35f6764b0678', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:02:08.000Z'}}, {'blockNum': '0x93d10b', 'uniqueId': '0xcb4f93431c17e4c7a095a5a996f9b29794592ee8d3628e7a705873ce8c1ac34a:log:77', 'hash': '0xcb4f93431c17e4c7a095a5a996f9b29794592ee8d3628e7a705873ce8c1ac34a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1219.1728921578504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42176c35f6764b0678', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:02:08.000Z'}}, {'blockNum': '0x93d10d', 'uniqueId': '0x3ad6c4ed20b20690e96330f229d688d96376e4de0a71020114318b9e2245479f:log:30', 'hash': '0x3ad6c4ed20b20690e96330f229d688d96376e4de0a71020114318b9e2245479f', 'from': '0xa00655976c5c9a1ed58b3707b190867069babee5', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 136.11512561333706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0760fa119394a121b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:02:31.000Z'}}, {'blockNum': '0x93d10d', 'uniqueId': '0x3ad6c4ed20b20690e96330f229d688d96376e4de0a71020114318b9e2245479f:log:36', 'hash': '0x3ad6c4ed20b20690e96330f229d688d96376e4de0a71020114318b9e2245479f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 136.11512561333706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0760fa119394a121b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:02:31.000Z'}}, {'blockNum': '0x93d115', 'uniqueId': '0xefc561c12c293186b358421c4ec452e9292edccded90133eab0c045df6af1ae2:log:164', 'hash': '0xefc561c12c293186b358421c4ec452e9292edccded90133eab0c045df6af1ae2', 'from': '0xbc9149e33214c495f525f111dd45c773633aac02', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 414.608795747353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1679da570a69763063', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:04:12.000Z'}}, {'blockNum': '0x93d115', 'uniqueId': '0xefc561c12c293186b358421c4ec452e9292edccded90133eab0c045df6af1ae2:log:170', 'hash': '0xefc561c12c293186b358421c4ec452e9292edccded90133eab0c045df6af1ae2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 414.608795747353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1679da570a69763063', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:04:12.000Z'}}, {'blockNum': '0x93d119', 'uniqueId': '0xf80dc089d214efcdab23170fd215a20be0ccfd9dc3c518daf8c9dae97259aaa5:log:50', 'hash': '0xf80dc089d214efcdab23170fd215a20be0ccfd9dc3c518daf8c9dae97259aaa5', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1584.9976053481132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55ec42ac630b0feeb2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:05:20.000Z'}}, {'blockNum': '0x93d119', 'uniqueId': '0xf80dc089d214efcdab23170fd215a20be0ccfd9dc3c518daf8c9dae97259aaa5:log:55', 'hash': '0xf80dc089d214efcdab23170fd215a20be0ccfd9dc3c518daf8c9dae97259aaa5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1584.9976053481132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55ec42ac630b0feeb2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:05:20.000Z'}}, {'blockNum': '0x93d119', 'uniqueId': '0xf80dc089d214efcdab23170fd215a20be0ccfd9dc3c518daf8c9dae97259aaa5:log:57', 'hash': '0xf80dc089d214efcdab23170fd215a20be0ccfd9dc3c518daf8c9dae97259aaa5', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1584.9976053481132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55ec42ac630b0feeb2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:05:20.000Z'}}, {'blockNum': '0x93d119', 'uniqueId': '0xf80dc089d214efcdab23170fd215a20be0ccfd9dc3c518daf8c9dae97259aaa5:log:59', 'hash': '0xf80dc089d214efcdab23170fd215a20be0ccfd9dc3c518daf8c9dae97259aaa5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1584.9976053481132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55ec42ac630b0feeb2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:05:20.000Z'}}, {'blockNum': '0x93d119', 'uniqueId': '0x140e25487f82c69cc19d4c19e08a62c51bd2db3953bd7fd6f66ef33c757adfc7:log:191', 'hash': '0x140e25487f82c69cc19d4c19e08a62c51bd2db3953bd7fd6f66ef33c757adfc7', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 220.2384852376972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf06c47733f0db04c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:05:20.000Z'}}, {'blockNum': '0x93d119', 'uniqueId': '0x140e25487f82c69cc19d4c19e08a62c51bd2db3953bd7fd6f66ef33c757adfc7:log:197', 'hash': '0x140e25487f82c69cc19d4c19e08a62c51bd2db3953bd7fd6f66ef33c757adfc7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 220.2384852376972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bf06c47733f0db04c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:05:20.000Z'}}, {'blockNum': '0x93d125', 'uniqueId': '0xd09f594621b45831c52bccbaf0400718d895323ff9080471ef99083e52e0d0f3:log:180', 'hash': '0xd09f594621b45831c52bccbaf0400718d895323ff9080471ef99083e52e0d0f3', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 410.1798169251631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x163c637244831ab5a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:09:39.000Z'}}, {'blockNum': '0x93d125', 'uniqueId': '0xd09f594621b45831c52bccbaf0400718d895323ff9080471ef99083e52e0d0f3:log:186', 'hash': '0xd09f594621b45831c52bccbaf0400718d895323ff9080471ef99083e52e0d0f3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8bb76c5ae6b7d6bd1678510edd06444acdf8f72b', 'value': 410.1798169251631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x163c637244831ab5a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:09:39.000Z'}}, {'blockNum': '0x93d126', 'uniqueId': '0x4b0b71d6a14dd1136b75c304dabd7049768d972090b8a54840ab66cc05add29b:log:149', 'hash': '0x4b0b71d6a14dd1136b75c304dabd7049768d972090b8a54840ab66cc05add29b', 'from': '0xcb7d22ff64101d4af5a2d056f4531202019ff14e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:09:47.000Z'}}, {'blockNum': '0x93d12f', 'uniqueId': '0xd0785ba987edc56b8024f4c7bf7bbc90cf312eee05a81793faff87fe553c866b:log:10', 'hash': '0xd0785ba987edc56b8024f4c7bf7bbc90cf312eee05a81793faff87fe553c866b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3215.5758768940696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xae5114672f1a3b2626', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:11:39.000Z'}}, {'blockNum': '0x93d12f', 'uniqueId': '0xd0785ba987edc56b8024f4c7bf7bbc90cf312eee05a81793faff87fe553c866b:log:16', 'hash': '0xd0785ba987edc56b8024f4c7bf7bbc90cf312eee05a81793faff87fe553c866b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 3215.5758768940696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xae5114672f1a3b2626', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:11:39.000Z'}}, {'blockNum': '0x93d131', 'uniqueId': '0xbbb5e71353cdcc909788afd32930882c93347e7dafc36527e5823252d69e20b1:log:43', 'hash': '0xbbb5e71353cdcc909788afd32930882c93347e7dafc36527e5823252d69e20b1', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1988.1221446587783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6bc6bcbd0b6a4302e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:12:18.000Z'}}, {'blockNum': '0x93d131', 'uniqueId': '0xbbb5e71353cdcc909788afd32930882c93347e7dafc36527e5823252d69e20b1:log:49', 'hash': '0xbbb5e71353cdcc909788afd32930882c93347e7dafc36527e5823252d69e20b1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1988.1221446587783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6bc6bcbd0b6a4302e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:12:18.000Z'}}, {'blockNum': '0x93d13b', 'uniqueId': '0x6aa8a8258c7002366fc919f073fabb70b44b009c6ac03cb39f5559173f5f6b39:log:54', 'hash': '0x6aa8a8258c7002366fc919f073fabb70b44b009c6ac03cb39f5559173f5f6b39', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1202.6333304581622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4131e3e23a2bb76f20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:13:41.000Z'}}, {'blockNum': '0x93d13b', 'uniqueId': '0x6aa8a8258c7002366fc919f073fabb70b44b009c6ac03cb39f5559173f5f6b39:log:60', 'hash': '0x6aa8a8258c7002366fc919f073fabb70b44b009c6ac03cb39f5559173f5f6b39', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1202.6333304581622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4131e3e23a2bb76f20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:13:41.000Z'}}, {'blockNum': '0x93d13e', 'uniqueId': '0x40bce5a7dee800bb4cf08edaf5d3877f95d0ca9eab39c58053017647bdc2452c:log:125', 'hash': '0x40bce5a7dee800bb4cf08edaf5d3877f95d0ca9eab39c58053017647bdc2452c', 'from': '0xfc4f81d2a20196fd849184d003d59527ddd6ba92', 'to': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'value': 138.31442649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077f7f8e1248544400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:14:16.000Z'}}, {'blockNum': '0x93d141', 'uniqueId': '0x365eaa5b3069f3504380b7a3e8df870b213727902b9f11e02aaff84659288525:log:16', 'hash': '0x365eaa5b3069f3504380b7a3e8df870b213727902b9f11e02aaff84659288525', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1414.2488884189754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4caaa55f015c16306b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:14:59.000Z'}}, {'blockNum': '0x93d141', 'uniqueId': '0x365eaa5b3069f3504380b7a3e8df870b213727902b9f11e02aaff84659288525:log:22', 'hash': '0x365eaa5b3069f3504380b7a3e8df870b213727902b9f11e02aaff84659288525', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 1414.2488884189754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4caaa55f015c16306b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:14:59.000Z'}}, {'blockNum': '0x93d155', 'uniqueId': '0x4b5869ce43782243de18666fd6c94675a0467778dae3ab882f97626d8a471bc1:log:105', 'hash': '0x4b5869ce43782243de18666fd6c94675a0467778dae3ab882f97626d8a471bc1', 'from': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 138.31442649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077f7f8e1248544400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:20:10.000Z'}}, {'blockNum': '0x93d168', 'uniqueId': '0x43ac812a45c5e6c6fb9b94b69f14390b04a01a08311dbe55fcdee91192755ebb:log:80', 'hash': '0x43ac812a45c5e6c6fb9b94b69f14390b04a01a08311dbe55fcdee91192755ebb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x64d71e7d18ed89549e203f41125eba723413568f', 'value': 17091.887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039e8d94bdcd34f18000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:23:21.000Z'}}, {'blockNum': '0x93d16d', 'uniqueId': '0xa81cecfcdfc76530d7f43bfe6f7da6b6f2f1466b375f63ea5ff47d4b8c97229d:log:146', 'hash': '0xa81cecfcdfc76530d7f43bfe6f7da6b6f2f1466b375f63ea5ff47d4b8c97229d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1205.7929540610837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415dbd1f2757ce9b89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:25:41.000Z'}}, {'blockNum': '0x93d16d', 'uniqueId': '0xa81cecfcdfc76530d7f43bfe6f7da6b6f2f1466b375f63ea5ff47d4b8c97229d:log:152', 'hash': '0xa81cecfcdfc76530d7f43bfe6f7da6b6f2f1466b375f63ea5ff47d4b8c97229d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'value': 1205.7929540610837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415dbd1f2757ce9b89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:25:41.000Z'}}, {'blockNum': '0x93d172', 'uniqueId': '0x1ec672aed31bd3bc9fd694682e13c66491861be1d45c70e22931c2907fc82a59:log:87', 'hash': '0x1ec672aed31bd3bc9fd694682e13c66491861be1d45c70e22931c2907fc82a59', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2410.5937331084087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82adb554639d7ca1bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:27:19.000Z'}}, {'blockNum': '0x93d172', 'uniqueId': '0x1ec672aed31bd3bc9fd694682e13c66491861be1d45c70e22931c2907fc82a59:log:93', 'hash': '0x1ec672aed31bd3bc9fd694682e13c66491861be1d45c70e22931c2907fc82a59', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 2410.5937331084087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82adb554639d7ca1bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:27:19.000Z'}}, {'blockNum': '0x93d17e', 'uniqueId': '0x1524c805e994e799bf623d8ae1e63a87b52d611acc5a9cfc0abb5c6af86a4b10:log:58', 'hash': '0x1524c805e994e799bf623d8ae1e63a87b52d611acc5a9cfc0abb5c6af86a4b10', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3800.0698325637277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xce00901315771f9e55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:31:08.000Z'}}, {'blockNum': '0x93d17e', 'uniqueId': '0x1524c805e994e799bf623d8ae1e63a87b52d611acc5a9cfc0abb5c6af86a4b10:log:64', 'hash': '0x1524c805e994e799bf623d8ae1e63a87b52d611acc5a9cfc0abb5c6af86a4b10', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 3800.0698325637277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xce00901315771f9e55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:31:08.000Z'}}, {'blockNum': '0x93d18b', 'uniqueId': '0x5e89d3f87ee565d9a432f93feb8cb76dc1c13eb3ce056c18ead1e9bbc6a3ca9b:log:84', 'hash': '0x5e89d3f87ee565d9a432f93feb8cb76dc1c13eb3ce056c18ead1e9bbc6a3ca9b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1960.3243503143449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a44f7225e0aeefdb4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:34:02.000Z'}}, {'blockNum': '0x93d18b', 'uniqueId': '0x5e89d3f87ee565d9a432f93feb8cb76dc1c13eb3ce056c18ead1e9bbc6a3ca9b:log:90', 'hash': '0x5e89d3f87ee565d9a432f93feb8cb76dc1c13eb3ce056c18ead1e9bbc6a3ca9b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 1960.3243503143449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a44f7225e0aeefdb4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:34:02.000Z'}}, {'blockNum': '0x93d191', 'uniqueId': '0x367f010a70386a971b61fb83af9e382d796fad64e07627ca408b720e51acac15:log:138', 'hash': '0x367f010a70386a971b61fb83af9e382d796fad64e07627ca408b720e51acac15', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 731.1946121253956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27a35d19b165bbc7b9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:35:13.000Z'}}, {'blockNum': '0x93d191', 'uniqueId': '0x367f010a70386a971b61fb83af9e382d796fad64e07627ca408b720e51acac15:log:144', 'hash': '0x367f010a70386a971b61fb83af9e382d796fad64e07627ca408b720e51acac15', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 731.1946121253956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27a35d19b165bbc7b9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:35:13.000Z'}}, {'blockNum': '0x93d195', 'uniqueId': '0xfc6444fc70f62d7501f5a961654b69a99cb7097f20a8910ca7118962b28388dc:log:130', 'hash': '0xfc6444fc70f62d7501f5a961654b69a99cb7097f20a8910ca7118962b28388dc', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 144.6779279209892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d7cf40e85a212309', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:37:12.000Z'}}, {'blockNum': '0x93d195', 'uniqueId': '0xfc6444fc70f62d7501f5a961654b69a99cb7097f20a8910ca7118962b28388dc:log:136', 'hash': '0xfc6444fc70f62d7501f5a961654b69a99cb7097f20a8910ca7118962b28388dc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 144.6779279209892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d7cf40e85a212309', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:37:12.000Z'}}, {'blockNum': '0x93d1c0', 'uniqueId': '0x768b95a468d0c80712f56f65e1c9a378c52fc9dc1acc4ead8e86928a72ba8c25:log:105', 'hash': '0x768b95a468d0c80712f56f65e1c9a378c52fc9dc1acc4ead8e86928a72ba8c25', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9634.456526405635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020a48f17d3a3fc213fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:48:14.000Z'}}, {'blockNum': '0x93d1c0', 'uniqueId': '0x768b95a468d0c80712f56f65e1c9a378c52fc9dc1acc4ead8e86928a72ba8c25:log:110', 'hash': '0x768b95a468d0c80712f56f65e1c9a378c52fc9dc1acc4ead8e86928a72ba8c25', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9634.456526405635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020a48f17d3a3fc213fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T06:48:14.000Z'}}, {'blockNum': '0x93d200', 'uniqueId': '0x0bec9503f44e9a37f7b20193b468d908cef57022d1748054bc7f3d911548b4cd:log:150', 'hash': '0x0bec9503f44e9a37f7b20193b468d908cef57022d1748054bc7f3d911548b4cd', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 400.9778874666725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15bcafa02dd5923e2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:01:53.000Z'}}, {'blockNum': '0x93d200', 'uniqueId': '0x0bec9503f44e9a37f7b20193b468d908cef57022d1748054bc7f3d911548b4cd:log:156', 'hash': '0x0bec9503f44e9a37f7b20193b468d908cef57022d1748054bc7f3d911548b4cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 400.9778874666725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15bcafa02dd5923e2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:01:53.000Z'}}, {'blockNum': '0x93d207', 'uniqueId': '0xf70260d78b3e321700017beb8878120b5ac0fee2ffc07fa3f8a2ef3751451dc2:log:86', 'hash': '0xf70260d78b3e321700017beb8878120b5ac0fee2ffc07fa3f8a2ef3751451dc2', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 581.636082924234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f87d277c7909bfd2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:03:34.000Z'}}, {'blockNum': '0x93d207', 'uniqueId': '0xf70260d78b3e321700017beb8878120b5ac0fee2ffc07fa3f8a2ef3751451dc2:log:92', 'hash': '0xf70260d78b3e321700017beb8878120b5ac0fee2ffc07fa3f8a2ef3751451dc2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 581.636082924234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f87d277c7909bfd2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:03:34.000Z'}}, {'blockNum': '0x93d234', 'uniqueId': '0x0c34ce20e57828df491cc2cfeaf1c5273dba3afa4e3c568d1643f7590662fa82:log:49', 'hash': '0x0c34ce20e57828df491cc2cfeaf1c5273dba3afa4e3c568d1643f7590662fa82', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1379.2233204624058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ac4918e85b0730ff6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:12:48.000Z'}}, {'blockNum': '0x93d234', 'uniqueId': '0x0c34ce20e57828df491cc2cfeaf1c5273dba3afa4e3c568d1643f7590662fa82:log:55', 'hash': '0x0c34ce20e57828df491cc2cfeaf1c5273dba3afa4e3c568d1643f7590662fa82', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1379.2233204624058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ac4918e85b0730ff6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:12:48.000Z'}}, {'blockNum': '0x93d240', 'uniqueId': '0x6c1c36dd355ace7a038fc9e12e44dffe6462a754f647e684fded2fd4dc2e3d55:log:35', 'hash': '0x6c1c36dd355ace7a038fc9e12e44dffe6462a754f647e684fded2fd4dc2e3d55', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2005.2332569700138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6cb4339f087942ef6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:14:44.000Z'}}, {'blockNum': '0x93d240', 'uniqueId': '0x6c1c36dd355ace7a038fc9e12e44dffe6462a754f647e684fded2fd4dc2e3d55:log:41', 'hash': '0x6c1c36dd355ace7a038fc9e12e44dffe6462a754f647e684fded2fd4dc2e3d55', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 2005.2332569700138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6cb4339f087942ef6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:14:44.000Z'}}, {'blockNum': '0x93d241', 'uniqueId': '0x1ad65419555e0e019b8ef83b89435f736240dca98cdb319a672708b3eea95e46:log:111', 'hash': '0x1ad65419555e0e019b8ef83b89435f736240dca98cdb319a672708b3eea95e46', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1032.7389761958045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x37fc21e32a1b8514ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:14:51.000Z'}}, {'blockNum': '0x93d241', 'uniqueId': '0x1ad65419555e0e019b8ef83b89435f736240dca98cdb319a672708b3eea95e46:log:117', 'hash': '0x1ad65419555e0e019b8ef83b89435f736240dca98cdb319a672708b3eea95e46', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1032.7389761958045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x37fc21e32a1b8514ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:14:51.000Z'}}, {'blockNum': '0x93d248', 'uniqueId': '0x7927980cd70638cb08246ef2a5e36caf837cc01414af1da7bdd2e3b1c079cc4a:log:138', 'hash': '0x7927980cd70638cb08246ef2a5e36caf837cc01414af1da7bdd2e3b1c079cc4a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 240.5099379024802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d09bef23efc96f7c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:16:23.000Z'}}, {'blockNum': '0x93d248', 'uniqueId': '0x7927980cd70638cb08246ef2a5e36caf837cc01414af1da7bdd2e3b1c079cc4a:log:144', 'hash': '0x7927980cd70638cb08246ef2a5e36caf837cc01414af1da7bdd2e3b1c079cc4a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 240.5099379024802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d09bef23efc96f7c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:16:23.000Z'}}, {'blockNum': '0x93d251', 'uniqueId': '0x9ad193c029c5eb4c5b2c610334e7d88ae37353b486b33afc5085d01480506487:log:112', 'hash': '0x9ad193c029c5eb4c5b2c610334e7d88ae37353b486b33afc5085d01480506487', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1431.8015317776765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d9e3ce3246493ae3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:19:13.000Z'}}, {'blockNum': '0x93d251', 'uniqueId': '0x9ad193c029c5eb4c5b2c610334e7d88ae37353b486b33afc5085d01480506487:log:118', 'hash': '0x9ad193c029c5eb4c5b2c610334e7d88ae37353b486b33afc5085d01480506487', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1431.8015317776765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d9e3ce3246493ae3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:19:13.000Z'}}, {'blockNum': '0x93d254', 'uniqueId': '0x148dfa8f720d757ca332b75834577b088bc2b52bcd531865a959ed39d383b96b:log:123', 'hash': '0x148dfa8f720d757ca332b75834577b088bc2b52bcd531865a959ed39d383b96b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1367.5736189959011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a22e580c2de17728e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:20:13.000Z'}}, {'blockNum': '0x93d254', 'uniqueId': '0x148dfa8f720d757ca332b75834577b088bc2b52bcd531865a959ed39d383b96b:log:129', 'hash': '0x148dfa8f720d757ca332b75834577b088bc2b52bcd531865a959ed39d383b96b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1367.5736189959011, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a22e580c2de17728e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:20:13.000Z'}}, {'blockNum': '0x93d255', 'uniqueId': '0xf88af39b4c23e0f885ad3aa0407e85b3608fffa01f4690bff2f00c4b4e3c3bcf:log:10', 'hash': '0xf88af39b4c23e0f885ad3aa0407e85b3608fffa01f4690bff2f00c4b4e3c3bcf', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2604.715761446833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8d33b150a90b931909', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:20:19.000Z'}}, {'blockNum': '0x93d255', 'uniqueId': '0xf88af39b4c23e0f885ad3aa0407e85b3608fffa01f4690bff2f00c4b4e3c3bcf:log:16', 'hash': '0xf88af39b4c23e0f885ad3aa0407e85b3608fffa01f4690bff2f00c4b4e3c3bcf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 2604.715761446833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8d33b150a90b931909', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:20:19.000Z'}}, {'blockNum': '0x93d25c', 'uniqueId': '0x4dcb70226b73a1a905b2d2a801f4be4a852542e9056c5f05865d4c64236ca97d:log:118', 'hash': '0x4dcb70226b73a1a905b2d2a801f4be4a852542e9056c5f05865d4c64236ca97d', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 2300.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7cb313467cff0e0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:22:02.000Z'}}, {'blockNum': '0x93d25e', 'uniqueId': '0x11cc7fdd1d299a3005eb02a79fdc2be2505928ef3c08e3cdc9e466a5cfe3f144:log:194', 'hash': '0x11cc7fdd1d299a3005eb02a79fdc2be2505928ef3c08e3cdc9e466a5cfe3f144', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63e46dae815da33c9cc52be2bf4167868c80ba89', 'value': 1769.50299157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5fecc97b9ab0e1b400', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:22:11.000Z'}}, {'blockNum': '0x93d275', 'uniqueId': '0x6bc9df72f1adfe4b6d6eb6893f6a24ced09fae73655d89b65762ab31e17d3292:log:121', 'hash': '0x6bc9df72f1adfe4b6d6eb6893f6a24ced09fae73655d89b65762ab31e17d3292', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2402.98181012398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82441258c3b4fce101', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:27:26.000Z'}}, {'blockNum': '0x93d275', 'uniqueId': '0x6bc9df72f1adfe4b6d6eb6893f6a24ced09fae73655d89b65762ab31e17d3292:log:127', 'hash': '0x6bc9df72f1adfe4b6d6eb6893f6a24ced09fae73655d89b65762ab31e17d3292', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 2402.98181012398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82441258c3b4fce101', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:27:26.000Z'}}, {'blockNum': '0x93d279', 'uniqueId': '0xa8b6dfabffa15ac2ec936e1e9dc0c4ce441ef054426b282b407fc136d892b86f:log:86', 'hash': '0xa8b6dfabffa15ac2ec936e1e9dc0c4ce441ef054426b282b407fc136d892b86f', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1476.4786624288386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x500a41f0c282cfddba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:27:42.000Z'}}, {'blockNum': '0x93d279', 'uniqueId': '0xa8b6dfabffa15ac2ec936e1e9dc0c4ce441ef054426b282b407fc136d892b86f:log:92', 'hash': '0xa8b6dfabffa15ac2ec936e1e9dc0c4ce441ef054426b282b407fc136d892b86f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1476.4786624288386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x500a41f0c282cfddba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:27:42.000Z'}}, {'blockNum': '0x93d27b', 'uniqueId': '0x5c6fb84446d663c01e1b738de931db9e2112d19430c66338c982e38fee4b5bb1:log:110', 'hash': '0x5c6fb84446d663c01e1b738de931db9e2112d19430c66338c982e38fee4b5bb1', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2659.6600641590485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x902e32b0dea4b6b3e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:28:08.000Z'}}, {'blockNum': '0x93d27b', 'uniqueId': '0x5c6fb84446d663c01e1b738de931db9e2112d19430c66338c982e38fee4b5bb1:log:116', 'hash': '0x5c6fb84446d663c01e1b738de931db9e2112d19430c66338c982e38fee4b5bb1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2659.6600641590485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x902e32b0dea4b6b3e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:28:08.000Z'}}, {'blockNum': '0x93d282', 'uniqueId': '0xc1dcfd251605b5584e4139f4e8125da4cd2ed2450301ba7a2d43c925192c3b22:log:129', 'hash': '0xc1dcfd251605b5584e4139f4e8125da4cd2ed2450301ba7a2d43c925192c3b22', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1501.0549084024194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x515f524e4322b99be3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:30:29.000Z'}}, {'blockNum': '0x93d282', 'uniqueId': '0xc1dcfd251605b5584e4139f4e8125da4cd2ed2450301ba7a2d43c925192c3b22:log:135', 'hash': '0xc1dcfd251605b5584e4139f4e8125da4cd2ed2450301ba7a2d43c925192c3b22', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 1501.0549084024194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x515f524e4322b99be3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:30:29.000Z'}}, {'blockNum': '0x93d284', 'uniqueId': '0x9b339d1d67488cb75c3f41145307f1b36c41f9776e6ef5d8e3e3a4249926eb3b:log:113', 'hash': '0x9b339d1d67488cb75c3f41145307f1b36c41f9776e6ef5d8e3e3a4249926eb3b', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 383.5102553211005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14ca46214a458e21c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:30:42.000Z'}}, {'blockNum': '0x93d284', 'uniqueId': '0x9b339d1d67488cb75c3f41145307f1b36c41f9776e6ef5d8e3e3a4249926eb3b:log:119', 'hash': '0x9b339d1d67488cb75c3f41145307f1b36c41f9776e6ef5d8e3e3a4249926eb3b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 383.5102553211005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14ca46214a458e21c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:30:42.000Z'}}, {'blockNum': '0x93d286', 'uniqueId': '0x8a108194a8d31ec272e07ea39874f1bca8b90f7e932b1bd3f19bd267ece52215:log:109', 'hash': '0x8a108194a8d31ec272e07ea39874f1bca8b90f7e932b1bd3f19bd267ece52215', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 426.76825994829574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1722996f4ecdbbae83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:31:09.000Z'}}, {'blockNum': '0x93d286', 'uniqueId': '0x8a108194a8d31ec272e07ea39874f1bca8b90f7e932b1bd3f19bd267ece52215:log:115', 'hash': '0x8a108194a8d31ec272e07ea39874f1bca8b90f7e932b1bd3f19bd267ece52215', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 426.76825994829574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1722996f4ecdbbae83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:31:09.000Z'}}, {'blockNum': '0x93d290', 'uniqueId': '0xfc157a3ac640d0c6da195c6b5e73c29bb82183500c3019dd6825dbca25b13208:log:63', 'hash': '0xfc157a3ac640d0c6da195c6b5e73c29bb82183500c3019dd6825dbca25b13208', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 841.2279267982071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d9a61f66809723955', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:33:27.000Z'}}, {'blockNum': '0x93d290', 'uniqueId': '0xfc157a3ac640d0c6da195c6b5e73c29bb82183500c3019dd6825dbca25b13208:log:69', 'hash': '0xfc157a3ac640d0c6da195c6b5e73c29bb82183500c3019dd6825dbca25b13208', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 841.2279267982071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d9a61f66809723955', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:33:27.000Z'}}, {'blockNum': '0x93d291', 'uniqueId': '0x92d435064aa56df326a0c4ee7a8c1282152d4c2cef6e96534763edd064e6c92a:log:157', 'hash': '0x92d435064aa56df326a0c4ee7a8c1282152d4c2cef6e96534763edd064e6c92a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 400.5280799137258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15b6719697c2e4734d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:33:37.000Z'}}, {'blockNum': '0x93d291', 'uniqueId': '0x92d435064aa56df326a0c4ee7a8c1282152d4c2cef6e96534763edd064e6c92a:log:163', 'hash': '0x92d435064aa56df326a0c4ee7a8c1282152d4c2cef6e96534763edd064e6c92a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 400.5280799137258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15b6719697c2e4734d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:33:37.000Z'}}, {'blockNum': '0x93d2a5', 'uniqueId': '0x0ba99646575390037c1e2ff1e5ee93d9d000079ea1933f17c2f5d7255afc603a:log:96', 'hash': '0x0ba99646575390037c1e2ff1e5ee93d9d000079ea1933f17c2f5d7255afc603a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 747.2721493929474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28827bfca7c543cf27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:39:22.000Z'}}, {'blockNum': '0x93d2a5', 'uniqueId': '0x0ba99646575390037c1e2ff1e5ee93d9d000079ea1933f17c2f5d7255afc603a:log:102', 'hash': '0x0ba99646575390037c1e2ff1e5ee93d9d000079ea1933f17c2f5d7255afc603a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 747.2721493929474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28827bfca7c543cf27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:39:22.000Z'}}, {'blockNum': '0x93d2ac', 'uniqueId': '0xc2dcad845a68a548f33fd6eadd06f76ad662b751c68caf412292d3f875cdfc14:log:120', 'hash': '0xc2dcad845a68a548f33fd6eadd06f76ad662b751c68caf412292d3f875cdfc14', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 400.4233347383321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15b4fd7569279def8d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:40:59.000Z'}}, {'blockNum': '0x93d2ac', 'uniqueId': '0xc2dcad845a68a548f33fd6eadd06f76ad662b751c68caf412292d3f875cdfc14:log:126', 'hash': '0xc2dcad845a68a548f33fd6eadd06f76ad662b751c68caf412292d3f875cdfc14', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 400.4233347383321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15b4fd7569279def8d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:40:59.000Z'}}, {'blockNum': '0x93d2b0', 'uniqueId': '0x607046ccf6886380db3645c9b82a7a1df7ee21c684d4ebf05bfdfae59f0b244c:log:50', 'hash': '0x607046ccf6886380db3645c9b82a7a1df7ee21c684d4ebf05bfdfae59f0b244c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfdc2234ae459c6eb72a5251941145875892d264a', 'value': 756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28fb9b8a8a53500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:42:07.000Z'}}, {'blockNum': '0x93d2bd', 'uniqueId': '0x0711e26d35e09073defdfede652ab9214db6c67e1903bc5e0ef8e9a74450a7df:log:31', 'hash': '0x0711e26d35e09073defdfede652ab9214db6c67e1903bc5e0ef8e9a74450a7df', 'from': '0xfdc2234ae459c6eb72a5251941145875892d264a', 'to': '0x95151e4615c5c0924b918c85ad8d8a94d6644ab3', 'value': 756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28fb9b8a8a53500000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:44:46.000Z'}}, {'blockNum': '0x93d2d7', 'uniqueId': '0xb9f9886221810076c7b2e6469235c3b7e45f9b3acb72dd448db6777a1d3d2a25:log:122', 'hash': '0xb9f9886221810076c7b2e6469235c3b7e45f9b3acb72dd448db6777a1d3d2a25', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 144.14345987143514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d064710c5ca9fdbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:50:43.000Z'}}, {'blockNum': '0x93d2d7', 'uniqueId': '0xb9f9886221810076c7b2e6469235c3b7e45f9b3acb72dd448db6777a1d3d2a25:log:128', 'hash': '0xb9f9886221810076c7b2e6469235c3b7e45f9b3acb72dd448db6777a1d3d2a25', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 144.14345987143514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d064710c5ca9fdbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:50:43.000Z'}}, {'blockNum': '0x93d2db', 'uniqueId': '0xea6d1a973fedcdbb2dd01dc518d64f7ab57805a53ac950e086b4eb1a73c7f2a3:log:58', 'hash': '0xea6d1a973fedcdbb2dd01dc518d64f7ab57805a53ac950e086b4eb1a73c7f2a3', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x7c94dd2f5a7d61a9b32dce482c6d855f79da40ce', 'value': 4104.83582928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xde860a6660ba654000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:51:35.000Z'}}, {'blockNum': '0x93d2e5', 'uniqueId': '0x5fac27f58cdf4ed3930203f3018287079e43c5a2481d5109bca153324b0213ae:log:159', 'hash': '0x5fac27f58cdf4ed3930203f3018287079e43c5a2481d5109bca153324b0213ae', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 400.37364382748933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15b44cebca6644718b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:54:48.000Z'}}, {'blockNum': '0x93d2e5', 'uniqueId': '0x5fac27f58cdf4ed3930203f3018287079e43c5a2481d5109bca153324b0213ae:log:165', 'hash': '0x5fac27f58cdf4ed3930203f3018287079e43c5a2481d5109bca153324b0213ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 400.37364382748933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15b44cebca6644718b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:54:48.000Z'}}, {'blockNum': '0x93d2e6', 'uniqueId': '0x72004c588d8107fd9b7ae077dca870f90b5211444dea384866c58eb1701c5e7a:log:162', 'hash': '0x72004c588d8107fd9b7ae077dca870f90b5211444dea384866c58eb1701c5e7a', 'from': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1224.184247649028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425cf81f3b0d24b66c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:54:54.000Z'}}, {'blockNum': '0x93d2e6', 'uniqueId': '0x72004c588d8107fd9b7ae077dca870f90b5211444dea384866c58eb1701c5e7a:log:168', 'hash': '0x72004c588d8107fd9b7ae077dca870f90b5211444dea384866c58eb1701c5e7a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1224.184247649028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425cf81f3b0d24b66c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T07:54:54.000Z'}}, {'blockNum': '0x93d305', 'uniqueId': '0x216d42ccfb290b712fd11e68eb54908dd58fc8ad1e519c4eb325922694cbbef5:log:66', 'hash': '0x216d42ccfb290b712fd11e68eb54908dd58fc8ad1e519c4eb325922694cbbef5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1458.1871818615873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f0c698c18a7d7be50', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:02:24.000Z'}}, {'blockNum': '0x93d305', 'uniqueId': '0x216d42ccfb290b712fd11e68eb54908dd58fc8ad1e519c4eb325922694cbbef5:log:72', 'hash': '0x216d42ccfb290b712fd11e68eb54908dd58fc8ad1e519c4eb325922694cbbef5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 1458.1871818615873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f0c698c18a7d7be50', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:02:24.000Z'}}, {'blockNum': '0x93d305', 'uniqueId': '0xc6374aafb906388634615d9327de0999a6a01d2ace4d66b0ea29bb2c4b4c7f8d:log:146', 'hash': '0xc6374aafb906388634615d9327de0999a6a01d2ace4d66b0ea29bb2c4b4c7f8d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 14412.191081992514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030d49546602e078ef96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:02:24.000Z'}}, {'blockNum': '0x93d305', 'uniqueId': '0xc6374aafb906388634615d9327de0999a6a01d2ace4d66b0ea29bb2c4b4c7f8d:log:152', 'hash': '0xc6374aafb906388634615d9327de0999a6a01d2ace4d66b0ea29bb2c4b4c7f8d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 14412.191081992514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030d49546602e078ef96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:02:24.000Z'}}, {'blockNum': '0x93d308', 'uniqueId': '0xdc7c8f6136d7c43094030001084e4ed850929f2588c9a004884dfba1e66fcee1:log:5', 'hash': '0xdc7c8f6136d7c43094030001084e4ed850929f2588c9a004884dfba1e66fcee1', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 12251.027804992478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0298212a0fe9da2bca6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:02:46.000Z'}}, {'blockNum': '0x93d308', 'uniqueId': '0xdc7c8f6136d7c43094030001084e4ed850929f2588c9a004884dfba1e66fcee1:log:11', 'hash': '0xdc7c8f6136d7c43094030001084e4ed850929f2588c9a004884dfba1e66fcee1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 12251.027804992478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0298212a0fe9da2bca6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:02:46.000Z'}}, {'blockNum': '0x93d320', 'uniqueId': '0xe557261c2daae5406925df9627e4f4ddb863b9eb4049d21d77efaf1b548dd8f3:log:125', 'hash': '0xe557261c2daae5406925df9627e4f4ddb863b9eb4049d21d77efaf1b548dd8f3', 'from': '0x4f88dfc8e1d7ba696db158656457797cfbdfb844', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 792.2653975063815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af2e41d6e1986132d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:09:33.000Z'}}, {'blockNum': '0x93d320', 'uniqueId': '0xe557261c2daae5406925df9627e4f4ddb863b9eb4049d21d77efaf1b548dd8f3:log:131', 'hash': '0xe557261c2daae5406925df9627e4f4ddb863b9eb4049d21d77efaf1b548dd8f3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 792.2653975063815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2af2e41d6e1986132d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:09:33.000Z'}}, {'blockNum': '0x93d320', 'uniqueId': '0x7dc04d543bb393e5eaccb3ac65840692a5f30f57496d5f01033a0fc81c376c27:log:143', 'hash': '0x7dc04d543bb393e5eaccb3ac65840692a5f30f57496d5f01033a0fc81c376c27', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 48.968509223179915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a79317b134141184', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:09:33.000Z'}}, {'blockNum': '0x93d320', 'uniqueId': '0x7dc04d543bb393e5eaccb3ac65840692a5f30f57496d5f01033a0fc81c376c27:log:149', 'hash': '0x7dc04d543bb393e5eaccb3ac65840692a5f30f57496d5f01033a0fc81c376c27', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4f88dfc8e1d7ba696db158656457797cfbdfb844', 'value': 48.968509223179915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a79317b134141184', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:09:33.000Z'}}, {'blockNum': '0x93d32b', 'uniqueId': '0x234715fde449c393c343b3899668b933d0b5ff57740a2154d326f2255fadb150:log:107', 'hash': '0x234715fde449c393c343b3899668b933d0b5ff57740a2154d326f2255fadb150', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 3566.923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc15d002221caa78000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:12:25.000Z'}}, {'blockNum': '0x93d32d', 'uniqueId': '0xabcd7f4c9a06bace88d8fee2c1133c05738472680638cf8098a5ffbfbd260cde:log:77', 'hash': '0xabcd7f4c9a06bace88d8fee2c1133c05738472680638cf8098a5ffbfbd260cde', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 3566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc15030fa85b2f80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:13:00.000Z'}}, {'blockNum': '0x93d333', 'uniqueId': '0x105d3392fd6e22c185a0ed81015dfbeff6e1b1db749d2c1ca413e6d458acefd9:log:182', 'hash': '0x105d3392fd6e22c185a0ed81015dfbeff6e1b1db749d2c1ca413e6d458acefd9', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 163.70385017038333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dfd8e863c9780a3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:14:32.000Z'}}, {'blockNum': '0x93d333', 'uniqueId': '0x105d3392fd6e22c185a0ed81015dfbeff6e1b1db749d2c1ca413e6d458acefd9:log:188', 'hash': '0x105d3392fd6e22c185a0ed81015dfbeff6e1b1db749d2c1ca413e6d458acefd9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 163.70385017038333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dfd8e863c9780a3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:14:32.000Z'}}, {'blockNum': '0x93d35b', 'uniqueId': '0x86ed3b9763b884b05298811871a82999ddb5d18c39653d1c4474e199d21e0ddb:log:170', 'hash': '0x86ed3b9763b884b05298811871a82999ddb5d18c39653d1c4474e199d21e0ddb', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 664.2850935744098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2402cebd1299d019b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:22:20.000Z'}}, {'blockNum': '0x93d35b', 'uniqueId': '0x86ed3b9763b884b05298811871a82999ddb5d18c39653d1c4474e199d21e0ddb:log:176', 'hash': '0x86ed3b9763b884b05298811871a82999ddb5d18c39653d1c4474e199d21e0ddb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 664.2850935744098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2402cebd1299d019b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:22:20.000Z'}}, {'blockNum': '0x93d360', 'uniqueId': '0x028ca8c9fb3518c15bff48a364ee1e5b2ed33090859bca9a0fc91fe5ff48920e:log:343', 'hash': '0x028ca8c9fb3518c15bff48a364ee1e5b2ed33090859bca9a0fc91fe5ff48920e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2000.2507429622476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6f0e2cf107f39665', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:23:26.000Z'}}, {'blockNum': '0x93d360', 'uniqueId': '0x028ca8c9fb3518c15bff48a364ee1e5b2ed33090859bca9a0fc91fe5ff48920e:log:349', 'hash': '0x028ca8c9fb3518c15bff48a364ee1e5b2ed33090859bca9a0fc91fe5ff48920e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 2000.2507429622476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6f0e2cf107f39665', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:23:26.000Z'}}, {'blockNum': '0x93d364', 'uniqueId': '0xe705f1577c91a52c8b631b232a1dfcd40c08de879015c564de715777a20296e4:log:167', 'hash': '0xe705f1577c91a52c8b631b232a1dfcd40c08de879015c564de715777a20296e4', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 1143.59103723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dfe83855b0eaa4c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:24:28.000Z'}}, {'blockNum': '0x93d365', 'uniqueId': '0x1f2fc7a7f3867def6f3cf037f560ef1f918fe368042e8f6693e6ef5613cdab84:log:353', 'hash': '0x1f2fc7a7f3867def6f3cf037f560ef1f918fe368042e8f6693e6ef5613cdab84', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 424.8661117378476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x170833a596a3d3aaa5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:24:36.000Z'}}, {'blockNum': '0x93d365', 'uniqueId': '0x1f2fc7a7f3867def6f3cf037f560ef1f918fe368042e8f6693e6ef5613cdab84:log:359', 'hash': '0x1f2fc7a7f3867def6f3cf037f560ef1f918fe368042e8f6693e6ef5613cdab84', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 424.8661117378476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x170833a596a3d3aaa5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:24:36.000Z'}}, {'blockNum': '0x93d36d', 'uniqueId': '0x56851ac94744878ca37e71aef18aa07b9e6a29ff7ab59a6e95fa68777e618094:log:37', 'hash': '0x56851ac94744878ca37e71aef18aa07b9e6a29ff7ab59a6e95fa68777e618094', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 260.1022313613794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e19a4c157ad7bcb3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:27:21.000Z'}}, {'blockNum': '0x93d36d', 'uniqueId': '0x56851ac94744878ca37e71aef18aa07b9e6a29ff7ab59a6e95fa68777e618094:log:43', 'hash': '0x56851ac94744878ca37e71aef18aa07b9e6a29ff7ab59a6e95fa68777e618094', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 260.1022313613794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e19a4c157ad7bcb3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:27:21.000Z'}}, {'blockNum': '0x93d36d', 'uniqueId': '0xbbcae7fe874ccd2710fa6a89a3a7bf799f298392a32aaeb4d240bf5537b48893:log:54', 'hash': '0xbbcae7fe874ccd2710fa6a89a3a7bf799f298392a32aaeb4d240bf5537b48893', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 116.76670872640871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065476aeee1d186c98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:27:21.000Z'}}, {'blockNum': '0x93d36d', 'uniqueId': '0xbbcae7fe874ccd2710fa6a89a3a7bf799f298392a32aaeb4d240bf5537b48893:log:60', 'hash': '0xbbcae7fe874ccd2710fa6a89a3a7bf799f298392a32aaeb4d240bf5537b48893', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5a9f1cd844ce91aaadaa03059677eebcf3cf00df', 'value': 116.76670872640871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065476aeee1d186c98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:27:21.000Z'}}, {'blockNum': '0x93d36d', 'uniqueId': '0xc8bb89015a1f28cd52a613c72f60d04650947e577aa9d2ff103d31e874a93efc:log:70', 'hash': '0xc8bb89015a1f28cd52a613c72f60d04650947e577aa9d2ff103d31e874a93efc', 'from': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 707.8886158873089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x265fed919849fcf0a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:27:21.000Z'}}, {'blockNum': '0x93d36d', 'uniqueId': '0xc8bb89015a1f28cd52a613c72f60d04650947e577aa9d2ff103d31e874a93efc:log:76', 'hash': '0xc8bb89015a1f28cd52a613c72f60d04650947e577aa9d2ff103d31e874a93efc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'value': 707.8886158873089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x265fed919849fcf0a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:27:21.000Z'}}, {'blockNum': '0x93d370', 'uniqueId': '0x72d2f47474a7a6ddd890237b9511607333fa4a9dcc6541913dd7144baef9be44:log:34', 'hash': '0x72d2f47474a7a6ddd890237b9511607333fa4a9dcc6541913dd7144baef9be44', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7741209da9096e7da13e92f915fb5ce6615bc2b6', 'value': 236.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd8578195c8cf0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:28:42.000Z'}}, {'blockNum': '0x93d375', 'uniqueId': '0xa5459a1516f7b3632a6c7fa23dbebe3505130e883714735336cac4cc4609f22a:log:120', 'hash': '0xa5459a1516f7b3632a6c7fa23dbebe3505130e883714735336cac4cc4609f22a', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1143.59103723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dfe83855b0eaa4c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:29:44.000Z'}}, {'blockNum': '0x93d37f', 'uniqueId': '0x8a99f9d09b2933df49a1433f23698da3f136a9ac67e615a296f3264cf9e0b48d:log:49', 'hash': '0x8a99f9d09b2933df49a1433f23698da3f136a9ac67e615a296f3264cf9e0b48d', 'from': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 97.38723390200009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054784f54112982bfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:32:53.000Z'}}, {'blockNum': '0x93d37f', 'uniqueId': '0x8a99f9d09b2933df49a1433f23698da3f136a9ac67e615a296f3264cf9e0b48d:log:55', 'hash': '0x8a99f9d09b2933df49a1433f23698da3f136a9ac67e615a296f3264cf9e0b48d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 97.38723390200009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054784f54112982bfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:32:53.000Z'}}, {'blockNum': '0x93d383', 'uniqueId': '0xe9ddfbceeaa7ab0f54c023df0c928f94107d44eea8a4c8d29782a17940858f93:log:34', 'hash': '0xe9ddfbceeaa7ab0f54c023df0c928f94107d44eea8a4c8d29782a17940858f93', 'from': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 288.95867418078086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faa1b6f32e147ef04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:33:55.000Z'}}, {'blockNum': '0x93d383', 'uniqueId': '0xe9ddfbceeaa7ab0f54c023df0c928f94107d44eea8a4c8d29782a17940858f93:log:40', 'hash': '0xe9ddfbceeaa7ab0f54c023df0c928f94107d44eea8a4c8d29782a17940858f93', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 288.95867418078086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faa1b6f32e147ef04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:33:55.000Z'}}, {'blockNum': '0x93d388', 'uniqueId': '0x7b18adf4ec12f8ed9aed54f6fe18b95fc963858c8e1670f46acedc9cc9eed03d:log:36', 'hash': '0x7b18adf4ec12f8ed9aed54f6fe18b95fc963858c8e1670f46acedc9cc9eed03d', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 352.50810056756995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131c0859cc59aece7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:34:40.000Z'}}, {'blockNum': '0x93d388', 'uniqueId': '0x7b18adf4ec12f8ed9aed54f6fe18b95fc963858c8e1670f46acedc9cc9eed03d:log:42', 'hash': '0x7b18adf4ec12f8ed9aed54f6fe18b95fc963858c8e1670f46acedc9cc9eed03d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 352.50810056756995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131c0859cc59aece7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:34:40.000Z'}}, {'blockNum': '0x93d38e', 'uniqueId': '0xbf3f073b99bb1160c7e5a5daa997f80eca522291c1bd460d75d2f1a767bccef0:log:36', 'hash': '0xbf3f073b99bb1160c7e5a5daa997f80eca522291c1bd460d75d2f1a767bccef0', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 799.7691341926645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b5b06be30937c41a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:36:13.000Z'}}, {'blockNum': '0x93d38e', 'uniqueId': '0xbf3f073b99bb1160c7e5a5daa997f80eca522291c1bd460d75d2f1a767bccef0:log:42', 'hash': '0xbf3f073b99bb1160c7e5a5daa997f80eca522291c1bd460d75d2f1a767bccef0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'value': 799.7691341926645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b5b06be30937c41a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:36:13.000Z'}}, {'blockNum': '0x93d38e', 'uniqueId': '0x90ec65a8115e95a29a5af577d66afc02662400a8558511ea74195e7d7ecbcba6:log:62', 'hash': '0x90ec65a8115e95a29a5af577d66afc02662400a8558511ea74195e7d7ecbcba6', 'from': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 397.7169842164071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x158f6e91f32e965979', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:36:13.000Z'}}, {'blockNum': '0x93d38e', 'uniqueId': '0x90ec65a8115e95a29a5af577d66afc02662400a8558511ea74195e7d7ecbcba6:log:68', 'hash': '0x90ec65a8115e95a29a5af577d66afc02662400a8558511ea74195e7d7ecbcba6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 397.7169842164071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x158f6e91f32e965979', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:36:13.000Z'}}, {'blockNum': '0x93d395', 'uniqueId': '0xc8cde43281c2fc3638ce67ed1908da0d748a626b1a0430008796ce5800fce3dd:log:195', 'hash': '0xc8cde43281c2fc3638ce67ed1908da0d748a626b1a0430008796ce5800fce3dd', 'from': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 80.28931086922935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045a3ceed835534249', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:38:12.000Z'}}, {'blockNum': '0x93d395', 'uniqueId': '0xc8cde43281c2fc3638ce67ed1908da0d748a626b1a0430008796ce5800fce3dd:log:201', 'hash': '0xc8cde43281c2fc3638ce67ed1908da0d748a626b1a0430008796ce5800fce3dd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 80.28931086922935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045a3ceed835534249', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:38:12.000Z'}}, {'blockNum': '0x93d397', 'uniqueId': '0x2a966d8d40d24b1c2a0720a47602c742be98294dd49f635078c88cf7a12a4896:log:42', 'hash': '0x2a966d8d40d24b1c2a0720a47602c742be98294dd49f635078c88cf7a12a4896', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 444.60532004176656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181a2366f5425b51d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:38:34.000Z'}}, {'blockNum': '0x93d397', 'uniqueId': '0x2a966d8d40d24b1c2a0720a47602c742be98294dd49f635078c88cf7a12a4896:log:48', 'hash': '0x2a966d8d40d24b1c2a0720a47602c742be98294dd49f635078c88cf7a12a4896', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 444.60532004176656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181a2366f5425b51d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:38:34.000Z'}}, {'blockNum': '0x93d3b8', 'uniqueId': '0x253fc727bc4b933846162461b56d87b82e088a438949acff37d8cac532272ca2:log:152', 'hash': '0x253fc727bc4b933846162461b56d87b82e088a438949acff37d8cac532272ca2', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 399.91385291390026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15adeb6a640ad74c13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:43:29.000Z'}}, {'blockNum': '0x93d3b8', 'uniqueId': '0x253fc727bc4b933846162461b56d87b82e088a438949acff37d8cac532272ca2:log:158', 'hash': '0x253fc727bc4b933846162461b56d87b82e088a438949acff37d8cac532272ca2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 399.91385291390026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15adeb6a640ad74c13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:43:29.000Z'}}, {'blockNum': '0x93d3bf', 'uniqueId': '0x9dcdc3b9eb7ac7398c5a916c5e56373789b7cd4391b7c63a1066f1b2e3af097d:log:179', 'hash': '0x9dcdc3b9eb7ac7398c5a916c5e56373789b7cd4391b7c63a1066f1b2e3af097d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 599.6819071751642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2082421d532c6faa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:44:56.000Z'}}, {'blockNum': '0x93d3bf', 'uniqueId': '0x9dcdc3b9eb7ac7398c5a916c5e56373789b7cd4391b7c63a1066f1b2e3af097d:log:185', 'hash': '0x9dcdc3b9eb7ac7398c5a916c5e56373789b7cd4391b7c63a1066f1b2e3af097d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'value': 599.6819071751642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2082421d532c6faa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:44:56.000Z'}}, {'blockNum': '0x93d3cb', 'uniqueId': '0xdf8944576f50043d2a5f214fc0402d9e190595551f14cd79839dc902a9d78849:log:7', 'hash': '0xdf8944576f50043d2a5f214fc0402d9e190595551f14cd79839dc902a9d78849', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1161.1047354761206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ef190ad1e76114954', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:47:01.000Z'}}, {'blockNum': '0x93d3cb', 'uniqueId': '0xdf8944576f50043d2a5f214fc0402d9e190595551f14cd79839dc902a9d78849:log:13', 'hash': '0xdf8944576f50043d2a5f214fc0402d9e190595551f14cd79839dc902a9d78849', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1161.1047354761206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ef190ad1e76114954', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:47:01.000Z'}}, {'blockNum': '0x93d3ce', 'uniqueId': '0xa04fa32b3f09dc5609a995b36321b8632772a4df1afe91acd70c18f217361ad6:log:81', 'hash': '0xa04fa32b3f09dc5609a995b36321b8632772a4df1afe91acd70c18f217361ad6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 399.92836983506317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15ae1efd7423fce7e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:47:45.000Z'}}, {'blockNum': '0x93d3ce', 'uniqueId': '0xa04fa32b3f09dc5609a995b36321b8632772a4df1afe91acd70c18f217361ad6:log:87', 'hash': '0xa04fa32b3f09dc5609a995b36321b8632772a4df1afe91acd70c18f217361ad6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 399.92836983506317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15ae1efd7423fce7e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:47:45.000Z'}}, {'blockNum': '0x93d3d0', 'uniqueId': '0xd4e83b213e4fbcde15685800152b5368b66d1f9242b5f174c06febcdd8a1c9cd:log:96', 'hash': '0xd4e83b213e4fbcde15685800152b5368b66d1f9242b5f174c06febcdd8a1c9cd', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1318.5377854909482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x477a6339fdce2cec05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:47:58.000Z'}}, {'blockNum': '0x93d3d0', 'uniqueId': '0xd4e83b213e4fbcde15685800152b5368b66d1f9242b5f174c06febcdd8a1c9cd:log:102', 'hash': '0xd4e83b213e4fbcde15685800152b5368b66d1f9242b5f174c06febcdd8a1c9cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1318.5377854909482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x477a6339fdce2cec05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:47:58.000Z'}}, {'blockNum': '0x93d3d5', 'uniqueId': '0x2fced86d3835afa3c48a08d45b5b2e2c9a1b1bf250c2f970c31f18b27ebfccd9:log:158', 'hash': '0x2fced86d3835afa3c48a08d45b5b2e2c9a1b1bf250c2f970c31f18b27ebfccd9', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 560.0064429278334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5ba68ccd33938a6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:49:25.000Z'}}, {'blockNum': '0x93d3d5', 'uniqueId': '0x2fced86d3835afa3c48a08d45b5b2e2c9a1b1bf250c2f970c31f18b27ebfccd9:log:164', 'hash': '0x2fced86d3835afa3c48a08d45b5b2e2c9a1b1bf250c2f970c31f18b27ebfccd9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'value': 560.0064429278334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e5ba68ccd33938a6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:49:25.000Z'}}, {'blockNum': '0x93d3d7', 'uniqueId': '0xb11637cfbd9ee75a150e17cf65b609b0f683449b9bc85878d02f743211238170:log:79', 'hash': '0xb11637cfbd9ee75a150e17cf65b609b0f683449b9bc85878d02f743211238170', 'from': '0x7741209da9096e7da13e92f915fb5ce6615bc2b6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 236.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd8578195c8cf0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:50:07.000Z'}}, {'blockNum': '0x93d3de', 'uniqueId': '0xb0df7328fa239f3e08a582f1a64220641ee33afc3c3413517efd72522cd04a5a:log:68', 'hash': '0xb0df7328fa239f3e08a582f1a64220641ee33afc3c3413517efd72522cd04a5a', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 736.3427748864922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27eacf0c72b2cb3820', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:51:36.000Z'}}, {'blockNum': '0x93d3de', 'uniqueId': '0xb0df7328fa239f3e08a582f1a64220641ee33afc3c3413517efd72522cd04a5a:log:74', 'hash': '0xb0df7328fa239f3e08a582f1a64220641ee33afc3c3413517efd72522cd04a5a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 736.3427748864922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27eacf0c72b2cb3820', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:51:36.000Z'}}, {'blockNum': '0x93d3df', 'uniqueId': '0x204256ec889efb3b68c1da7897cf647cccb691f4976b3fa48cd6ad5cfb529685:log:157', 'hash': '0x204256ec889efb3b68c1da7897cf647cccb691f4976b3fa48cd6ad5cfb529685', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1199.9740067241917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410cfc116181a6f291', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:51:41.000Z'}}, {'blockNum': '0x93d3df', 'uniqueId': '0x204256ec889efb3b68c1da7897cf647cccb691f4976b3fa48cd6ad5cfb529685:log:163', 'hash': '0x204256ec889efb3b68c1da7897cf647cccb691f4976b3fa48cd6ad5cfb529685', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'value': 1199.9740067241917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x410cfc116181a6f291', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:51:41.000Z'}}, {'blockNum': '0x93d3e6', 'uniqueId': '0xbcbe2b02d5e8ec2f82001881609b6b82e2e7740f9f0537d76b98192a81800bf9:log:55', 'hash': '0xbcbe2b02d5e8ec2f82001881609b6b82e2e7740f9f0537d76b98192a81800bf9', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 718.6555365239371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26f5595ade4909c62e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:53:12.000Z'}}, {'blockNum': '0x93d3e6', 'uniqueId': '0xbcbe2b02d5e8ec2f82001881609b6b82e2e7740f9f0537d76b98192a81800bf9:log:61', 'hash': '0xbcbe2b02d5e8ec2f82001881609b6b82e2e7740f9f0537d76b98192a81800bf9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 718.6555365239371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26f5595ade4909c62e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:53:12.000Z'}}, {'blockNum': '0x93d3ec', 'uniqueId': '0x359a3057e9f59cc0f295b73efe26b0464a25d3c185316782f74d15066001569e:log:114', 'hash': '0x359a3057e9f59cc0f295b73efe26b0464a25d3c185316782f74d15066001569e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1999.3775269625962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c62efe39dc889d6a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:54:10.000Z'}}, {'blockNum': '0x93d3ec', 'uniqueId': '0x359a3057e9f59cc0f295b73efe26b0464a25d3c185316782f74d15066001569e:log:120', 'hash': '0x359a3057e9f59cc0f295b73efe26b0464a25d3c185316782f74d15066001569e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 1999.3775269625962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c62efe39dc889d6a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:54:10.000Z'}}, {'blockNum': '0x93d3ff', 'uniqueId': '0xd4ec740d393479094f130b09b513af5caf3923f3099e8cb45ba241265d206362:log:103', 'hash': '0xd4ec740d393479094f130b09b513af5caf3923f3099e8cb45ba241265d206362', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 284.5597767087736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d0f69411aece824', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:59:22.000Z'}}, {'blockNum': '0x93d3ff', 'uniqueId': '0xd4ec740d393479094f130b09b513af5caf3923f3099e8cb45ba241265d206362:log:109', 'hash': '0xd4ec740d393479094f130b09b513af5caf3923f3099e8cb45ba241265d206362', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 284.5597767087736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d0f69411aece824', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T08:59:22.000Z'}}, {'blockNum': '0x93d41c', 'uniqueId': '0x3d1d37e966f9566743e25b17ed068a7b8bd1e27aa1dddc7f7df3ca847dc48be1:log:6', 'hash': '0x3d1d37e966f9566743e25b17ed068a7b8bd1e27aa1dddc7f7df3ca847dc48be1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 720.3434565228509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x270cc60d2a11916c5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:06:27.000Z'}}, {'blockNum': '0x93d41c', 'uniqueId': '0x3d1d37e966f9566743e25b17ed068a7b8bd1e27aa1dddc7f7df3ca847dc48be1:log:12', 'hash': '0x3d1d37e966f9566743e25b17ed068a7b8bd1e27aa1dddc7f7df3ca847dc48be1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'value': 720.3434565228509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x270cc60d2a11916c5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:06:27.000Z'}}, {'blockNum': '0x93d421', 'uniqueId': '0x81e20c2ac82dedbde4f7d5dc405ec19452f22442920262811c1754ff1da5e9bb:log:57', 'hash': '0x81e20c2ac82dedbde4f7d5dc405ec19452f22442920262811c1754ff1da5e9bb', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 20.788508566458624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01207f9e6621ee6afd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:07:30.000Z'}}, {'blockNum': '0x93d421', 'uniqueId': '0x81e20c2ac82dedbde4f7d5dc405ec19452f22442920262811c1754ff1da5e9bb:log:63', 'hash': '0x81e20c2ac82dedbde4f7d5dc405ec19452f22442920262811c1754ff1da5e9bb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'value': 20.788508566458624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01207f9e6621ee6afd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:07:30.000Z'}}, {'blockNum': '0x93d423', 'uniqueId': '0xd418410114e53707fd667f532d56052a5b4e0432394b20cfb22713d0c0edf982:log:116', 'hash': '0xd418410114e53707fd667f532d56052a5b4e0432394b20cfb22713d0c0edf982', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 799.483157171209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b570ebf9a99b447bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:08:32.000Z'}}, {'blockNum': '0x93d423', 'uniqueId': '0xd418410114e53707fd667f532d56052a5b4e0432394b20cfb22713d0c0edf982:log:122', 'hash': '0xd418410114e53707fd667f532d56052a5b4e0432394b20cfb22713d0c0edf982', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'value': 799.483157171209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b570ebf9a99b447bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:08:32.000Z'}}, {'blockNum': '0x93d426', 'uniqueId': '0xc93045ad3646972d727a690c66c9a0af14dc86bbdf2a70971cf5dfbde2b39046:log:149', 'hash': '0xc93045ad3646972d727a690c66c9a0af14dc86bbdf2a70971cf5dfbde2b39046', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 399.69923069774364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15aaf0ec9f4fea9bc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:09:17.000Z'}}, {'blockNum': '0x93d426', 'uniqueId': '0xc93045ad3646972d727a690c66c9a0af14dc86bbdf2a70971cf5dfbde2b39046:log:155', 'hash': '0xc93045ad3646972d727a690c66c9a0af14dc86bbdf2a70971cf5dfbde2b39046', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 399.69923069774364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15aaf0ec9f4fea9bc3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:09:17.000Z'}}, {'blockNum': '0x93d42b', 'uniqueId': '0xfb9e1858351971897fc84ffc10ac1076ce16c33765a1a8203d831a094ba00332:log:46', 'hash': '0xfb9e1858351971897fc84ffc10ac1076ce16c33765a1a8203d831a094ba00332', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 872.2899070867651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f497448e7c9207396', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:10:30.000Z'}}, {'blockNum': '0x93d42b', 'uniqueId': '0xfb9e1858351971897fc84ffc10ac1076ce16c33765a1a8203d831a094ba00332:log:52', 'hash': '0xfb9e1858351971897fc84ffc10ac1076ce16c33765a1a8203d831a094ba00332', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 872.2899070867651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f497448e7c9207396', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:10:30.000Z'}}, {'blockNum': '0x93d42f', 'uniqueId': '0x724bce5b61988fd45b9ab38779f21762dbf683087bb5b6949a13e9bcfaf78669:log:62', 'hash': '0x724bce5b61988fd45b9ab38779f21762dbf683087bb5b6949a13e9bcfaf78669', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1199.0801385502095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4100946903376a227f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:11:04.000Z'}}, {'blockNum': '0x93d42f', 'uniqueId': '0x724bce5b61988fd45b9ab38779f21762dbf683087bb5b6949a13e9bcfaf78669:log:68', 'hash': '0x724bce5b61988fd45b9ab38779f21762dbf683087bb5b6949a13e9bcfaf78669', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'value': 1199.0801385502095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4100946903376a227f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:11:04.000Z'}}, {'blockNum': '0x93d442', 'uniqueId': '0x42bf7e2c263caa8d2f39f5b26ebbb44bdfb6c73802976d50bf813c6ff21ced5c:log:43', 'hash': '0x42bf7e2c263caa8d2f39f5b26ebbb44bdfb6c73802976d50bf813c6ff21ced5c', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1616.7912230320014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57a57c4b3877ce66c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:14:54.000Z'}}, {'blockNum': '0x93d442', 'uniqueId': '0x42bf7e2c263caa8d2f39f5b26ebbb44bdfb6c73802976d50bf813c6ff21ced5c:log:49', 'hash': '0x42bf7e2c263caa8d2f39f5b26ebbb44bdfb6c73802976d50bf813c6ff21ced5c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1616.7912230320014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57a57c4b3877ce66c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:14:54.000Z'}}, {'blockNum': '0x93d466', 'uniqueId': '0x98d39523111545a36974274c39f312f74946bcbf0716ab8b186cc72bd95f100c:log:116', 'hash': '0x98d39523111545a36974274c39f312f74946bcbf0716ab8b186cc72bd95f100c', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 818.2130870597983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5afcd39a270b4bf4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:21:56.000Z'}}, {'blockNum': '0x93d466', 'uniqueId': '0x98d39523111545a36974274c39f312f74946bcbf0716ab8b186cc72bd95f100c:log:122', 'hash': '0x98d39523111545a36974274c39f312f74946bcbf0716ab8b186cc72bd95f100c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 818.2130870597983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5afcd39a270b4bf4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:21:56.000Z'}}, {'blockNum': '0x93d469', 'uniqueId': '0x6677a59157cbf459210e8aa103826b9dc47cfdd09e701849daabb50991e269a3:log:71', 'hash': '0x6677a59157cbf459210e8aa103826b9dc47cfdd09e701849daabb50991e269a3', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1649.713393551578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x596e5f56e10600929c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:22:39.000Z'}}, {'blockNum': '0x93d469', 'uniqueId': '0x6677a59157cbf459210e8aa103826b9dc47cfdd09e701849daabb50991e269a3:log:75', 'hash': '0x6677a59157cbf459210e8aa103826b9dc47cfdd09e701849daabb50991e269a3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1649.713393551578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x596e5f56e10600929c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:22:39.000Z'}}, {'blockNum': '0x93d46d', 'uniqueId': '0xad5e89e973d14dcf5ac63dedf10ebdb2f7bc711fafc50ca5108f35b0e33044b5:log:60', 'hash': '0xad5e89e973d14dcf5ac63dedf10ebdb2f7bc711fafc50ca5108f35b0e33044b5', 'from': '0xa260306fe5e57cae7bdcc7ff0488061eace32b58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 234.49856801287328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb652452e59175576', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:23:23.000Z'}}, {'blockNum': '0x93d46d', 'uniqueId': '0xad5e89e973d14dcf5ac63dedf10ebdb2f7bc711fafc50ca5108f35b0e33044b5:log:66', 'hash': '0xad5e89e973d14dcf5ac63dedf10ebdb2f7bc711fafc50ca5108f35b0e33044b5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 234.49856801287328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb652452e59175576', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:23:23.000Z'}}, {'blockNum': '0x93d473', 'uniqueId': '0x4c1e9c599c83cca11e7b632e2c4438205b4f5e8c1fb536fe63d286e26de1fb19:log:51', 'hash': '0x4c1e9c599c83cca11e7b632e2c4438205b4f5e8c1fb536fe63d286e26de1fb19', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 738.3787648338766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28071056849ee87239', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:24:34.000Z'}}, {'blockNum': '0x93d473', 'uniqueId': '0x4c1e9c599c83cca11e7b632e2c4438205b4f5e8c1fb536fe63d286e26de1fb19:log:57', 'hash': '0x4c1e9c599c83cca11e7b632e2c4438205b4f5e8c1fb536fe63d286e26de1fb19', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 738.3787648338766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28071056849ee87239', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:24:34.000Z'}}, {'blockNum': '0x93d473', 'uniqueId': '0x353f21ef74a87bde8ffab3572e4c6cf6cd883ff6bbd37ea91341b11a2ff080f2:log:84', 'hash': '0x353f21ef74a87bde8ffab3572e4c6cf6cd883ff6bbd37ea91341b11a2ff080f2', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 799.5022448042683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b57528fb47dcea204', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:24:34.000Z'}}, {'blockNum': '0x93d473', 'uniqueId': '0x353f21ef74a87bde8ffab3572e4c6cf6cd883ff6bbd37ea91341b11a2ff080f2:log:90', 'hash': '0x353f21ef74a87bde8ffab3572e4c6cf6cd883ff6bbd37ea91341b11a2ff080f2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 799.5022448042683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b57528fb47dcea204', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:24:34.000Z'}}, {'blockNum': '0x93d484', 'uniqueId': '0xf30e68d5bac52534dd8bb164cb213a7bee284650cc8fee7cc9b93e9c947db94c:log:82', 'hash': '0xf30e68d5bac52534dd8bb164cb213a7bee284650cc8fee7cc9b93e9c947db94c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 400.15358182084697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15b13f1a8fbfcaa30b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:29:27.000Z'}}, {'blockNum': '0x93d484', 'uniqueId': '0xf30e68d5bac52534dd8bb164cb213a7bee284650cc8fee7cc9b93e9c947db94c:log:88', 'hash': '0xf30e68d5bac52534dd8bb164cb213a7bee284650cc8fee7cc9b93e9c947db94c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 400.15358182084697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15b13f1a8fbfcaa30b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:29:27.000Z'}}, {'blockNum': '0x93d486', 'uniqueId': '0xddb22fd9c586ae8a5c241e1f32a4a39620e2262d413268b98ea82340205bc2bc:log:27', 'hash': '0xddb22fd9c586ae8a5c241e1f32a4a39620e2262d413268b98ea82340205bc2bc', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 947.2529266906618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3359c66e1066088fe0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:29:41.000Z'}}, {'blockNum': '0x93d486', 'uniqueId': '0xddb22fd9c586ae8a5c241e1f32a4a39620e2262d413268b98ea82340205bc2bc:log:33', 'hash': '0xddb22fd9c586ae8a5c241e1f32a4a39620e2262d413268b98ea82340205bc2bc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 947.2529266906618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3359c66e1066088fe0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:29:41.000Z'}}, {'blockNum': '0x93d494', 'uniqueId': '0xcb3b01966818d6e7cff9106775f4847c188b86e30c845c1483a2222443b5c350:log:99', 'hash': '0xcb3b01966818d6e7cff9106775f4847c188b86e30c845c1483a2222443b5c350', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 40.02197634989903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b6a9f71d8d0f3f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:33:16.000Z'}}, {'blockNum': '0x93d494', 'uniqueId': '0xcb3b01966818d6e7cff9106775f4847c188b86e30c845c1483a2222443b5c350:log:105', 'hash': '0xcb3b01966818d6e7cff9106775f4847c188b86e30c845c1483a2222443b5c350', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 40.02197634989903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b6a9f71d8d0f3f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:33:16.000Z'}}, {'blockNum': '0x93d495', 'uniqueId': '0xce50083a8f6bd1531b02f616c73180b48ba5177cc8240984716207a230362eae:log:141', 'hash': '0xce50083a8f6bd1531b02f616c73180b48ba5177cc8240984716207a230362eae', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 650.4354494245993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23429aeb18d2cae896', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:33:18.000Z'}}, {'blockNum': '0x93d495', 'uniqueId': '0xce50083a8f6bd1531b02f616c73180b48ba5177cc8240984716207a230362eae:log:147', 'hash': '0xce50083a8f6bd1531b02f616c73180b48ba5177cc8240984716207a230362eae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 650.4354494245993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23429aeb18d2cae896', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:33:18.000Z'}}, {'blockNum': '0x93d498', 'uniqueId': '0xfd7445bfc38eba018f73c5f986d9960688f506b8683317d755a3ecb34f16723a:log:60', 'hash': '0xfd7445bfc38eba018f73c5f986d9960688f506b8683317d755a3ecb34f16723a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1363.5335599912275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ead4548068e7a186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:34:03.000Z'}}, {'blockNum': '0x93d498', 'uniqueId': '0xfd7445bfc38eba018f73c5f986d9960688f506b8683317d755a3ecb34f16723a:log:66', 'hash': '0xfd7445bfc38eba018f73c5f986d9960688f506b8683317d755a3ecb34f16723a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 1363.5335599912275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ead4548068e7a186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:34:03.000Z'}}, {'blockNum': '0x93d49e', 'uniqueId': '0x5f238de089e33358e609f750384cdbbe5cfee584772b1eea0ac3d03990b557b8:log:119', 'hash': '0x5f238de089e33358e609f750384cdbbe5cfee584772b1eea0ac3d03990b557b8', 'from': '0xfbbaf86d76ef7c86f1aea216242ef8e203a8be7e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 476.423231689582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19d3b35505f129490f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:35:09.000Z'}}, {'blockNum': '0x93d49e', 'uniqueId': '0x5f238de089e33358e609f750384cdbbe5cfee584772b1eea0ac3d03990b557b8:log:125', 'hash': '0x5f238de089e33358e609f750384cdbbe5cfee584772b1eea0ac3d03990b557b8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 476.423231689582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19d3b35505f129490f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:35:09.000Z'}}, {'blockNum': '0x93d4a4', 'uniqueId': '0xfafba791458a9499e2f39966d12a351e1f6a631d875f5052db2ae6dc62ad8235:log:51', 'hash': '0xfafba791458a9499e2f39966d12a351e1f6a631d875f5052db2ae6dc62ad8235', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 144.82569501412635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d9dc3a4bc20fc3d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:35:52.000Z'}}, {'blockNum': '0x93d4a4', 'uniqueId': '0xfafba791458a9499e2f39966d12a351e1f6a631d875f5052db2ae6dc62ad8235:log:57', 'hash': '0xfafba791458a9499e2f39966d12a351e1f6a631d875f5052db2ae6dc62ad8235', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xdba193795e33b445b8c215252b0055a58db4f0af', 'value': 144.82569501412635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d9dc3a4bc20fc3d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:35:52.000Z'}}, {'blockNum': '0x93d4a8', 'uniqueId': '0xc42afb0bc745e7185d13407598db8eb6f22d731b3e5247dc9b518a5af5c47c95:log:144', 'hash': '0xc42afb0bc745e7185d13407598db8eb6f22d731b3e5247dc9b518a5af5c47c95', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 282.14009560783444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f4b7afa1cefb8037d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:36:45.000Z'}}, {'blockNum': '0x93d4a8', 'uniqueId': '0xc42afb0bc745e7185d13407598db8eb6f22d731b3e5247dc9b518a5af5c47c95:log:150', 'hash': '0xc42afb0bc745e7185d13407598db8eb6f22d731b3e5247dc9b518a5af5c47c95', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 282.14009560783444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f4b7afa1cefb8037d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:36:45.000Z'}}, {'blockNum': '0x93d4ac', 'uniqueId': '0x60c4a62fc4853731937b615fa32d8626436a460e36b31df29c5f040cb29e9c62:log:96', 'hash': '0x60c4a62fc4853731937b615fa32d8626436a460e36b31df29c5f040cb29e9c62', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1280.1011983570163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4564f909a38dce8dc6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:37:33.000Z'}}, {'blockNum': '0x93d4ac', 'uniqueId': '0x60c4a62fc4853731937b615fa32d8626436a460e36b31df29c5f040cb29e9c62:log:102', 'hash': '0x60c4a62fc4853731937b615fa32d8626436a460e36b31df29c5f040cb29e9c62', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 1280.1011983570163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4564f909a38dce8dc6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:37:33.000Z'}}, {'blockNum': '0x93d4b3', 'uniqueId': '0xda1ce2c4bc626309a0e3f97586a31a30b3509075a86917ab039e658017c5d55d:log:87', 'hash': '0xda1ce2c4bc626309a0e3f97586a31a30b3509075a86917ab039e658017c5d55d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 171.6118288361115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x094d97b11687900bf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:39:18.000Z'}}, {'blockNum': '0x93d4b3', 'uniqueId': '0xda1ce2c4bc626309a0e3f97586a31a30b3509075a86917ab039e658017c5d55d:log:93', 'hash': '0xda1ce2c4bc626309a0e3f97586a31a30b3509075a86917ab039e658017c5d55d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 171.6118288361115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x094d97b11687900bf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:39:18.000Z'}}, {'blockNum': '0x93d4ce', 'uniqueId': '0xe6225e3c687f5ad8651972733aec1be1bf2da14d5d403bb7aa0b7f3dff47a8cf:log:41', 'hash': '0xe6225e3c687f5ad8651972733aec1be1bf2da14d5d403bb7aa0b7f3dff47a8cf', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 863.7639585505191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ed32207e254ebfc18', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:45:12.000Z'}}, {'blockNum': '0x93d4ce', 'uniqueId': '0xe6225e3c687f5ad8651972733aec1be1bf2da14d5d403bb7aa0b7f3dff47a8cf:log:45', 'hash': '0xe6225e3c687f5ad8651972733aec1be1bf2da14d5d403bb7aa0b7f3dff47a8cf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 863.7639585505191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ed32207e254ebfc18', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:45:12.000Z'}}, {'blockNum': '0x93d4dc', 'uniqueId': '0x127dcf1066079e812e66df2951a1a8d1d4cbbd2c1c3e5b185b6fde83b106ef80:log:10', 'hash': '0x127dcf1066079e812e66df2951a1a8d1d4cbbd2c1c3e5b185b6fde83b106ef80', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5298.698833227896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011f3e37d31c75858760', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:47:28.000Z'}}, {'blockNum': '0x93d4dc', 'uniqueId': '0x127dcf1066079e812e66df2951a1a8d1d4cbbd2c1c3e5b185b6fde83b106ef80:log:16', 'hash': '0x127dcf1066079e812e66df2951a1a8d1d4cbbd2c1c3e5b185b6fde83b106ef80', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 5298.698833227896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011f3e37d31c75858760', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:47:28.000Z'}}, {'blockNum': '0x93d4e6', 'uniqueId': '0x82dc19002da9fb550a6abd01017d94ab616f5164106ece770878caaf79f42723:log:35', 'hash': '0x82dc19002da9fb550a6abd01017d94ab616f5164106ece770878caaf79f42723', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1522.4366257103418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x52880d6cde5d41ecae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:49:20.000Z'}}, {'blockNum': '0x93d4e6', 'uniqueId': '0x82dc19002da9fb550a6abd01017d94ab616f5164106ece770878caaf79f42723:log:41', 'hash': '0x82dc19002da9fb550a6abd01017d94ab616f5164106ece770878caaf79f42723', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 1522.4366257103418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x52880d6cde5d41ecae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:49:20.000Z'}}, {'blockNum': '0x93d4ef', 'uniqueId': '0x0ea718e4f1730a2887d569a699174da06b84696919d7ebe7528eb203cf080a48:log:65', 'hash': '0x0ea718e4f1730a2887d569a699174da06b84696919d7ebe7528eb203cf080a48', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1353.491798551982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495f78d3ad1771c5fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:51:21.000Z'}}, {'blockNum': '0x93d4ef', 'uniqueId': '0x0ea718e4f1730a2887d569a699174da06b84696919d7ebe7528eb203cf080a48:log:71', 'hash': '0x0ea718e4f1730a2887d569a699174da06b84696919d7ebe7528eb203cf080a48', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 1353.491798551982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495f78d3ad1771c5fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:51:21.000Z'}}, {'blockNum': '0x93d4f8', 'uniqueId': '0x2401b189127d6b6d11e1a62553e2ae506f121914fac9ef8d671a282b9f6efc9d:log:75', 'hash': '0x2401b189127d6b6d11e1a62553e2ae506f121914fac9ef8d671a282b9f6efc9d', 'from': '0xbc9149e33214c495f525f111dd45c773633aac02', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 78.15905228379336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043cacbbf29cafca5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:53:04.000Z'}}, {'blockNum': '0x93d4f8', 'uniqueId': '0x2401b189127d6b6d11e1a62553e2ae506f121914fac9ef8d671a282b9f6efc9d:log:81', 'hash': '0x2401b189127d6b6d11e1a62553e2ae506f121914fac9ef8d671a282b9f6efc9d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 78.15905228379336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043cacbbf29cafca5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:53:04.000Z'}}, {'blockNum': '0x93d4ff', 'uniqueId': '0x3537f0342e83f02ef545349fdfa36a99577f6a193ebdccc43d16b869e49648aa:log:57', 'hash': '0x3537f0342e83f02ef545349fdfa36a99577f6a193ebdccc43d16b869e49648aa', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 852.576435149789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e37dff6a00c07781c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:55:49.000Z'}}, {'blockNum': '0x93d4ff', 'uniqueId': '0x3537f0342e83f02ef545349fdfa36a99577f6a193ebdccc43d16b869e49648aa:log:61', 'hash': '0x3537f0342e83f02ef545349fdfa36a99577f6a193ebdccc43d16b869e49648aa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 852.576435149789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e37dff6a00c07781c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:55:49.000Z'}}, {'blockNum': '0x93d50b', 'uniqueId': '0x0482d0763a59c0fa936a2188c2525ac5cc80a6671a9a71ad724c564e51ee7ebd:log:48', 'hash': '0x0482d0763a59c0fa936a2188c2525ac5cc80a6671a9a71ad724c564e51ee7ebd', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1417.202721689266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4cd3a37eb6ed79019d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:57:34.000Z'}}, {'blockNum': '0x93d50b', 'uniqueId': '0x0482d0763a59c0fa936a2188c2525ac5cc80a6671a9a71ad724c564e51ee7ebd:log:54', 'hash': '0x0482d0763a59c0fa936a2188c2525ac5cc80a6671a9a71ad724c564e51ee7ebd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1417.202721689266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4cd3a37eb6ed79019d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T09:57:34.000Z'}}, {'blockNum': '0x93d51c', 'uniqueId': '0x56143f135ddccca029b46c4a8d2aa532069ea94a420e22a31a9f83ebc4f28973:log:119', 'hash': '0x56143f135ddccca029b46c4a8d2aa532069ea94a420e22a31a9f83ebc4f28973', 'from': '0x38f709c2f01a8584bba587d155d1703f7690854c', 'to': '0x38f709c2f01a8584bba587d155d1703f7690854c', 'value': 1.0005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de27d72f9c74000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:01:57.000Z'}}, {'blockNum': '0x93d51f', 'uniqueId': '0x9440ee3e81edd470404bf6e29aef1b303792d13f69010cee441a99dbb7ab4aa8:log:91', 'hash': '0x9440ee3e81edd470404bf6e29aef1b303792d13f69010cee441a99dbb7ab4aa8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 584.1026467510924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1faa0d7682fc563f29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:02:39.000Z'}}, {'blockNum': '0x93d51f', 'uniqueId': '0x9440ee3e81edd470404bf6e29aef1b303792d13f69010cee441a99dbb7ab4aa8:log:97', 'hash': '0x9440ee3e81edd470404bf6e29aef1b303792d13f69010cee441a99dbb7ab4aa8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 584.1026467510924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1faa0d7682fc563f29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:02:39.000Z'}}, {'blockNum': '0x93d526', 'uniqueId': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184:log:125', 'hash': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1076.950698762862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a61b17a98711b14ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:03:33.000Z'}}, {'blockNum': '0x93d526', 'uniqueId': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184:log:130', 'hash': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 1076.950698762862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a61b17a98711b14ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:03:33.000Z'}}, {'blockNum': '0x93d526', 'uniqueId': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184:log:131', 'hash': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1076.8430036929858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a6032de800111a1b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:03:33.000Z'}}, {'blockNum': '0x93d526', 'uniqueId': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184:log:133', 'hash': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1076.8430036929858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a6032de800111a1b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:03:33.000Z'}}, {'blockNum': '0x93d526', 'uniqueId': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184:log:137', 'hash': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1076.8430036929858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a6032de800111a1b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:03:33.000Z'}}, {'blockNum': '0x93d526', 'uniqueId': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184:log:139', 'hash': '0x8c66024ae304fff826dfa0320a27beaaa5ea8f6f13f84b9456a5e55b20c63184', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 1076.8430036929858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a6032de800111a1b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:03:33.000Z'}}, {'blockNum': '0x93d52e', 'uniqueId': '0xfdf02ed63ae4bfb926dd29249d1e059c7b3cac45ea070041b7bbbfa7f3901201:log:71', 'hash': '0xfdf02ed63ae4bfb926dd29249d1e059c7b3cac45ea070041b7bbbfa7f3901201', 'from': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 241.07280100660913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d118ea341cf5e829d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:05:10.000Z'}}, {'blockNum': '0x93d52e', 'uniqueId': '0xfdf02ed63ae4bfb926dd29249d1e059c7b3cac45ea070041b7bbbfa7f3901201:log:77', 'hash': '0xfdf02ed63ae4bfb926dd29249d1e059c7b3cac45ea070041b7bbbfa7f3901201', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 241.07280100660913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d118ea341cf5e829d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:05:10.000Z'}}, {'blockNum': '0x93d53c', 'uniqueId': '0xe64a98c5c74c388ca412ab10dabfcb603f1de63a02c9912c2f34cd54fa86c12b:log:50', 'hash': '0xe64a98c5c74c388ca412ab10dabfcb603f1de63a02c9912c2f34cd54fa86c12b', 'from': '0x89f26fff3f690b19057e6beb7a82c5c29adfe20b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 776.4764584939471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a17c6890d390f7941', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:07:24.000Z'}}, {'blockNum': '0x93d53c', 'uniqueId': '0xe64a98c5c74c388ca412ab10dabfcb603f1de63a02c9912c2f34cd54fa86c12b:log:56', 'hash': '0xe64a98c5c74c388ca412ab10dabfcb603f1de63a02c9912c2f34cd54fa86c12b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 776.4764584939471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a17c6890d390f7941', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:07:24.000Z'}}, {'blockNum': '0x93d542', 'uniqueId': '0x5a5739d34e44ebb6b056c39fb7533075d777b9a22b96d4ddb03ab4812f61d27e:log:97', 'hash': '0x5a5739d34e44ebb6b056c39fb7533075d777b9a22b96d4ddb03ab4812f61d27e', 'from': '0x38f709c2f01a8584bba587d155d1703f7690854c', 'to': '0x38f709c2f01a8584bba587d155d1703f7690854c', 'value': 0.005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11c37937e08000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:08:18.000Z'}}, {'blockNum': '0x93d543', 'uniqueId': '0x25c260e0be2eb39ee158a6fd8b7971269dca2f02e9274e7b7b6c3eff67813e55:log:31', 'hash': '0x25c260e0be2eb39ee158a6fd8b7971269dca2f02e9274e7b7b6c3eff67813e55', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 30.182109782722573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a2dc64ef8b057472', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:08:45.000Z'}}, {'blockNum': '0x93d543', 'uniqueId': '0x25c260e0be2eb39ee158a6fd8b7971269dca2f02e9274e7b7b6c3eff67813e55:log:37', 'hash': '0x25c260e0be2eb39ee158a6fd8b7971269dca2f02e9274e7b7b6c3eff67813e55', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 30.182109782722573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a2dc64ef8b057472', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:08:45.000Z'}}, {'blockNum': '0x93d56f', 'uniqueId': '0xb8d41af8ab543aa121cb93052c001d6239db04709f3deead94ad5b0dc33672d0:log:72', 'hash': '0xb8d41af8ab543aa121cb93052c001d6239db04709f3deead94ad5b0dc33672d0', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 600.444394090169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208cd703225f2ea0a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:15:40.000Z'}}, {'blockNum': '0x93d56f', 'uniqueId': '0xb8d41af8ab543aa121cb93052c001d6239db04709f3deead94ad5b0dc33672d0:log:78', 'hash': '0xb8d41af8ab543aa121cb93052c001d6239db04709f3deead94ad5b0dc33672d0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 600.444394090169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208cd703225f2ea0a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:15:40.000Z'}}, {'blockNum': '0x93d57b', 'uniqueId': '0xd1266a410f7382c94eabeb947744c725516165b140b2a74a66a8103e1c6017d1:log:53', 'hash': '0xd1266a410f7382c94eabeb947744c725516165b140b2a74a66a8103e1c6017d1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 862.659268437895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ec3cd62145f131ae9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:17:47.000Z'}}, {'blockNum': '0x93d57b', 'uniqueId': '0xd1266a410f7382c94eabeb947744c725516165b140b2a74a66a8103e1c6017d1:log:59', 'hash': '0xd1266a410f7382c94eabeb947744c725516165b140b2a74a66a8103e1c6017d1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 862.659268437895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ec3cd62145f131ae9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:17:47.000Z'}}, {'blockNum': '0x93d587', 'uniqueId': '0xedf0addbb149f2cfc537a351271f3f00b058381e7b24b21772ef4ba7fb0a2145:log:13', 'hash': '0xedf0addbb149f2cfc537a351271f3f00b058381e7b24b21772ef4ba7fb0a2145', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 748.2503090476373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28900f1badc4ad9771', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:22:04.000Z'}}, {'blockNum': '0x93d587', 'uniqueId': '0xedf0addbb149f2cfc537a351271f3f00b058381e7b24b21772ef4ba7fb0a2145:log:19', 'hash': '0xedf0addbb149f2cfc537a351271f3f00b058381e7b24b21772ef4ba7fb0a2145', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 748.2503090476373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28900f1badc4ad9771', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:22:04.000Z'}}, {'blockNum': '0x93d599', 'uniqueId': '0x91c85ca0eb8c106ae8cc2bd1d4577b01ee2b21a9916daa93270a4c3d0e06a0cb:log:74', 'hash': '0x91c85ca0eb8c106ae8cc2bd1d4577b01ee2b21a9916daa93270a4c3d0e06a0cb', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 501.2304742399812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b2bf85cb03aa9c719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:26:55.000Z'}}, {'blockNum': '0x93d599', 'uniqueId': '0x91c85ca0eb8c106ae8cc2bd1d4577b01ee2b21a9916daa93270a4c3d0e06a0cb:log:80', 'hash': '0x91c85ca0eb8c106ae8cc2bd1d4577b01ee2b21a9916daa93270a4c3d0e06a0cb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 501.2304742399812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b2bf85cb03aa9c719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:26:55.000Z'}}, {'blockNum': '0x93d5c2', 'uniqueId': '0xd38ba8a984545cba468a04f92dcbab8ae54c6f3200efe1ffc9921bfb4499880b:log:22', 'hash': '0xd38ba8a984545cba468a04f92dcbab8ae54c6f3200efe1ffc9921bfb4499880b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1824.9561305717518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x62ee5a9bb918a87032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:35:55.000Z'}}, {'blockNum': '0x93d5c2', 'uniqueId': '0xd38ba8a984545cba468a04f92dcbab8ae54c6f3200efe1ffc9921bfb4499880b:log:28', 'hash': '0xd38ba8a984545cba468a04f92dcbab8ae54c6f3200efe1ffc9921bfb4499880b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1824.9561305717518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x62ee5a9bb918a87032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:35:55.000Z'}}, {'blockNum': '0x93d5c2', 'uniqueId': '0xa2330d648ea648add38dda015586585f238e5ec92fce8d4d3ae32db46748649d:log:74', 'hash': '0xa2330d648ea648add38dda015586585f238e5ec92fce8d4d3ae32db46748649d', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x20f69ae5fd2684cf3cdd231ed9b4ff87c37fd3d2', 'value': 217.82106344300294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bcedfdf22ce03f1c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:35:55.000Z'}}, {'blockNum': '0x93d5c7', 'uniqueId': '0xd738df2ad3684eb908cd4144dc74db002bb975fda8254b58905ea9dcb6532255:log:166', 'hash': '0xd738df2ad3684eb908cd4144dc74db002bb975fda8254b58905ea9dcb6532255', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 173.41230823560608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x096694478fffd8c3bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:37:15.000Z'}}, {'blockNum': '0x93d5c7', 'uniqueId': '0xd738df2ad3684eb908cd4144dc74db002bb975fda8254b58905ea9dcb6532255:log:172', 'hash': '0xd738df2ad3684eb908cd4144dc74db002bb975fda8254b58905ea9dcb6532255', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 173.41230823560608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x096694478fffd8c3bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:37:15.000Z'}}, {'blockNum': '0x93d5d6', 'uniqueId': '0xfbfb5381421a8c6b0e46c1ad68d1df99cdfee61274394fd788436bd0dba8710e:log:51', 'hash': '0xfbfb5381421a8c6b0e46c1ad68d1df99cdfee61274394fd788436bd0dba8710e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 160.04135945245417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ad05207c8e22c31c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:39:28.000Z'}}, {'blockNum': '0x93d5d6', 'uniqueId': '0xfbfb5381421a8c6b0e46c1ad68d1df99cdfee61274394fd788436bd0dba8710e:log:57', 'hash': '0xfbfb5381421a8c6b0e46c1ad68d1df99cdfee61274394fd788436bd0dba8710e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 160.04135945245417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ad05207c8e22c31c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:39:28.000Z'}}, {'blockNum': '0x93d5e9', 'uniqueId': '0x88d6ece615e066c6bc5c9a47a871e508ece4cef871a09129912d3fa19fb91932:log:139', 'hash': '0x88d6ece615e066c6bc5c9a47a871e508ece4cef871a09129912d3fa19fb91932', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 543.9394653847253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d7cad2dda446fa7d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:42:25.000Z'}}, {'blockNum': '0x93d5e9', 'uniqueId': '0x88d6ece615e066c6bc5c9a47a871e508ece4cef871a09129912d3fa19fb91932:log:145', 'hash': '0x88d6ece615e066c6bc5c9a47a871e508ece4cef871a09129912d3fa19fb91932', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'value': 543.9394653847253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d7cad2dda446fa7d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:42:25.000Z'}}, {'blockNum': '0x93d5eb', 'uniqueId': '0xf0c0449cab3bf01a6351c516309696cbd7d1bc06709acec5dfd10a3741881883:log:33', 'hash': '0xf0c0449cab3bf01a6351c516309696cbd7d1bc06709acec5dfd10a3741881883', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 178.32594564150534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09aac506bfe58b28a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:43:13.000Z'}}, {'blockNum': '0x93d5eb', 'uniqueId': '0xf0c0449cab3bf01a6351c516309696cbd7d1bc06709acec5dfd10a3741881883:log:39', 'hash': '0xf0c0449cab3bf01a6351c516309696cbd7d1bc06709acec5dfd10a3741881883', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 178.32594564150534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09aac506bfe58b28a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:43:13.000Z'}}, {'blockNum': '0x93d5ef', 'uniqueId': '0xddaf593ac7d1982f5a1686300f93186de06cc3a5d9e80b59be218337c008f66d:log:146', 'hash': '0xddaf593ac7d1982f5a1686300f93186de06cc3a5d9e80b59be218337c008f66d', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 40.162003389689055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022d5c194ba6733e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:44:07.000Z'}}, {'blockNum': '0x93d5ef', 'uniqueId': '0xddaf593ac7d1982f5a1686300f93186de06cc3a5d9e80b59be218337c008f66d:log:152', 'hash': '0xddaf593ac7d1982f5a1686300f93186de06cc3a5d9e80b59be218337c008f66d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 40.162003389689055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022d5c194ba6733e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:44:07.000Z'}}, {'blockNum': '0x93d5f0', 'uniqueId': '0xcf8fd7e920f965e23e1b88b909cdcce9858f64a0403e784cda038ed18e94121f:log:180', 'hash': '0xcf8fd7e920f965e23e1b88b909cdcce9858f64a0403e784cda038ed18e94121f', 'from': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 39.36824387317962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022258193883d1e31f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:44:12.000Z'}}, {'blockNum': '0x93d5f0', 'uniqueId': '0xcf8fd7e920f965e23e1b88b909cdcce9858f64a0403e784cda038ed18e94121f:log:186', 'hash': '0xcf8fd7e920f965e23e1b88b909cdcce9858f64a0403e784cda038ed18e94121f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 39.36824387317962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022258193883d1e31f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:44:12.000Z'}}, {'blockNum': '0x93d5f5', 'uniqueId': '0xedf3a72d693f1e8a68cc80aad9804f36de49c616644a73d112edc02ee2a5b0fb:log:107', 'hash': '0xedf3a72d693f1e8a68cc80aad9804f36de49c616644a73d112edc02ee2a5b0fb', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 287.8515295567237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f9abe1107715edf42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:45:56.000Z'}}, {'blockNum': '0x93d5f5', 'uniqueId': '0xedf3a72d693f1e8a68cc80aad9804f36de49c616644a73d112edc02ee2a5b0fb:log:113', 'hash': '0xedf3a72d693f1e8a68cc80aad9804f36de49c616644a73d112edc02ee2a5b0fb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 287.8515295567237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f9abe1107715edf42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:45:56.000Z'}}, {'blockNum': '0x93d5fe', 'uniqueId': '0x02e488775f80fdc930eac82f9124a9f197c02ef87647dd192ac7679bda71d01a:log:130', 'hash': '0x02e488775f80fdc930eac82f9124a9f197c02ef87647dd192ac7679bda71d01a', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 96.76010936816758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x053ed0f6d035932086', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:47:43.000Z'}}, {'blockNum': '0x93d5fe', 'uniqueId': '0x02e488775f80fdc930eac82f9124a9f197c02ef87647dd192ac7679bda71d01a:log:136', 'hash': '0x02e488775f80fdc930eac82f9124a9f197c02ef87647dd192ac7679bda71d01a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 96.76010936816758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x053ed0f6d035932086', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:47:43.000Z'}}, {'blockNum': '0x93d601', 'uniqueId': '0x3fff6474d3e7fe2b96698921e17acc462321f265787ce8770998170a3b402588:log:169', 'hash': '0x3fff6474d3e7fe2b96698921e17acc462321f265787ce8770998170a3b402588', 'from': '0x9d102f343ab206a3b14a967847640b1c42b0522d', 'to': '0x94a390f57db09194545ab638d37bd94a757cdaf1', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:48:30.000Z'}}, {'blockNum': '0x93d613', 'uniqueId': '0x55d0151ea2d7824d7d77727a01604f57ff0d4e52b1cff262c370bc629c6cd056:log:65', 'hash': '0x55d0151ea2d7824d7d77727a01604f57ff0d4e52b1cff262c370bc629c6cd056', 'from': '0x20f69ae5fd2684cf3cdd231ed9b4ff87c37fd3d2', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc37ade48e3c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:52:01.000Z'}}, {'blockNum': '0x93d613', 'uniqueId': '0x55d0151ea2d7824d7d77727a01604f57ff0d4e52b1cff262c370bc629c6cd056:log:68', 'hash': '0x55d0151ea2d7824d7d77727a01604f57ff0d4e52b1cff262c370bc629c6cd056', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc37ade48e3c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:52:01.000Z'}}, {'blockNum': '0x93d623', 'uniqueId': '0xb4bd959b15ec7e013b9b7a337f1e9f75a8134793ee6220e05a63f680b969a81a:log:228', 'hash': '0xb4bd959b15ec7e013b9b7a337f1e9f75a8134793ee6220e05a63f680b969a81a', 'from': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 305.30408654519147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108cf201247940d481', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:54:55.000Z'}}, {'blockNum': '0x93d623', 'uniqueId': '0xb4bd959b15ec7e013b9b7a337f1e9f75a8134793ee6220e05a63f680b969a81a:log:234', 'hash': '0xb4bd959b15ec7e013b9b7a337f1e9f75a8134793ee6220e05a63f680b969a81a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 305.30408654519147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108cf201247940d481', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T10:54:55.000Z'}}, {'blockNum': '0x93d63a', 'uniqueId': '0x4d98d208c0f7a765d7ae17dbafe9098c5d29b1489ec9f7f57c7e12b604fb7bc7:log:182', 'hash': '0x4d98d208c0f7a765d7ae17dbafe9098c5d29b1489ec9f7f57c7e12b604fb7bc7', 'from': '0xa101a90968e17c77d2b39ecff68ecad7c6012997', 'to': '0x8e7ce9e5014a6eccca36e1b6baff95ccd42f33fc', 'value': 11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98a7d9b8314c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:00:09.000Z'}}, {'blockNum': '0x93d64b', 'uniqueId': '0x1c8cb8027e867f9705b784089ca61989ff1650386c4dbac09b096c17fbba651d:log:92', 'hash': '0x1c8cb8027e867f9705b784089ca61989ff1650386c4dbac09b096c17fbba651d', 'from': '0xa101a90968e17c77d2b39ecff68ecad7c6012997', 'to': '0x8e7ce9e5014a6eccca36e1b6baff95ccd42f33fc', 'value': 4989.242100729334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010e77a4a879cba26f34', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:05:44.000Z'}}, {'blockNum': '0x93d64f', 'uniqueId': '0x4c44636903121f6953e3615182162a5c46d63614d2b84e55cb8c817540282b93:log:125', 'hash': '0x4c44636903121f6953e3615182162a5c46d63614d2b84e55cb8c817540282b93', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1044.3808970711987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x389db24c84e49a0c59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:02.000Z'}}, {'blockNum': '0x93d64f', 'uniqueId': '0x4c44636903121f6953e3615182162a5c46d63614d2b84e55cb8c817540282b93:log:131', 'hash': '0x4c44636903121f6953e3615182162a5c46d63614d2b84e55cb8c817540282b93', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 1044.3808970711987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x389db24c84e49a0c59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:02.000Z'}}, {'blockNum': '0x93d64f', 'uniqueId': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a:log:147', 'hash': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 484.2616081509536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a407ad6e2a4fefa2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:02.000Z'}}, {'blockNum': '0x93d64f', 'uniqueId': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a:log:152', 'hash': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 484.2616081509536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a407ad6e2a4fefa2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:02.000Z'}}, {'blockNum': '0x93d64f', 'uniqueId': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a:log:153', 'hash': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 484.2131819901385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a3fcecb8c73c6bbf1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:02.000Z'}}, {'blockNum': '0x93d64f', 'uniqueId': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a:log:155', 'hash': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 484.2131819901385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a3fcecb8c73c6bbf1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:02.000Z'}}, {'blockNum': '0x93d64f', 'uniqueId': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a:log:159', 'hash': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 484.2131819901385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a3fcecb8c73c6bbf1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:02.000Z'}}, {'blockNum': '0x93d64f', 'uniqueId': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a:log:161', 'hash': '0x161affd9492ba1f529e396a5bff433f5879845ec8771dffc328b7e284c15e99a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'value': 484.2131819901385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a3fcecb8c73c6bbf1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:02.000Z'}}, {'blockNum': '0x93d652', 'uniqueId': '0x6e27c8424e1841d36300eafb4dbba16b57529c7ce74811d2473b02a91d09f879:log:90', 'hash': '0x6e27c8424e1841d36300eafb4dbba16b57529c7ce74811d2473b02a91d09f879', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 33.32454389036504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ce78901b771f44a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:18.000Z'}}, {'blockNum': '0x93d652', 'uniqueId': '0x6e27c8424e1841d36300eafb4dbba16b57529c7ce74811d2473b02a91d09f879:log:96', 'hash': '0x6e27c8424e1841d36300eafb4dbba16b57529c7ce74811d2473b02a91d09f879', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 33.32454389036504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ce78901b771f44a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:07:18.000Z'}}, {'blockNum': '0x93d657', 'uniqueId': '0x72ba9ff34629321c67d62f7da2f9776ffd4639dd1ff99d69dd77844a5f5282ea:log:76', 'hash': '0x72ba9ff34629321c67d62f7da2f9776ffd4639dd1ff99d69dd77844a5f5282ea', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1600.0743244967664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56bd7df0929cdd2d68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:08:06.000Z'}}, {'blockNum': '0x93d657', 'uniqueId': '0x72ba9ff34629321c67d62f7da2f9776ffd4639dd1ff99d69dd77844a5f5282ea:log:82', 'hash': '0x72ba9ff34629321c67d62f7da2f9776ffd4639dd1ff99d69dd77844a5f5282ea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'value': 1600.0743244967664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56bd7df0929cdd2d68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:08:06.000Z'}}, {'blockNum': '0x93d657', 'uniqueId': '0xd841f8ad5ed79466a78aae4c0a053b0c036fa7a3a5c364c53e3722d9adc42448:log:99', 'hash': '0xd841f8ad5ed79466a78aae4c0a053b0c036fa7a3a5c364c53e3722d9adc42448', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 700.1548615654581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f499c103abed11ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:08:06.000Z'}}, {'blockNum': '0x93d657', 'uniqueId': '0xd841f8ad5ed79466a78aae4c0a053b0c036fa7a3a5c364c53e3722d9adc42448:log:104', 'hash': '0xd841f8ad5ed79466a78aae4c0a053b0c036fa7a3a5c364c53e3722d9adc42448', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 700.1548615654581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f499c103abed11ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:08:06.000Z'}}, {'blockNum': '0x93d657', 'uniqueId': '0xd841f8ad5ed79466a78aae4c0a053b0c036fa7a3a5c364c53e3722d9adc42448:log:106', 'hash': '0xd841f8ad5ed79466a78aae4c0a053b0c036fa7a3a5c364c53e3722d9adc42448', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 700.1548615654581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f499c103abed11ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:08:06.000Z'}}, {'blockNum': '0x93d657', 'uniqueId': '0xd841f8ad5ed79466a78aae4c0a053b0c036fa7a3a5c364c53e3722d9adc42448:log:108', 'hash': '0xd841f8ad5ed79466a78aae4c0a053b0c036fa7a3a5c364c53e3722d9adc42448', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 700.1548615654581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f499c103abed11ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:08:06.000Z'}}, {'blockNum': '0x93d658', 'uniqueId': '0x3db665e671c980b88cdc00e16bd52992039d3b8badeba0411331cc8c38f3b11a:log:124', 'hash': '0x3db665e671c980b88cdc00e16bd52992039d3b8badeba0411331cc8c38f3b11a', 'from': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 371.32846652988496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x142137b8ed28521a9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:08:18.000Z'}}, {'blockNum': '0x93d658', 'uniqueId': '0x3db665e671c980b88cdc00e16bd52992039d3b8badeba0411331cc8c38f3b11a:log:130', 'hash': '0x3db665e671c980b88cdc00e16bd52992039d3b8badeba0411331cc8c38f3b11a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 371.32846652988496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x142137b8ed28521a9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:08:18.000Z'}}, {'blockNum': '0x93d65d', 'uniqueId': '0xb364f79274ade984796f07e8f05633dab3dabdf428bec63fa5dfc306f23bf4ed:log:51', 'hash': '0xb364f79274ade984796f07e8f05633dab3dabdf428bec63fa5dfc306f23bf4ed', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1599.880736228987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56bace2d119f337a64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:09:11.000Z'}}, {'blockNum': '0x93d65d', 'uniqueId': '0xb364f79274ade984796f07e8f05633dab3dabdf428bec63fa5dfc306f23bf4ed:log:57', 'hash': '0xb364f79274ade984796f07e8f05633dab3dabdf428bec63fa5dfc306f23bf4ed', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfa15985038633f5497eb4554b4224ad8510179e2', 'value': 1599.880736228987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56bace2d119f337a64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:09:11.000Z'}}, {'blockNum': '0x93d65d', 'uniqueId': '0xc891f97f9e2b252f1c53640b8940e926cc9a6b037f3abeefb9e263cab1550882:log:71', 'hash': '0xc891f97f9e2b252f1c53640b8940e926cc9a6b037f3abeefb9e263cab1550882', 'from': '0xfa15985038633f5497eb4554b4224ad8510179e2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 227.7581845493141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c58c79e220dba6cd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:09:11.000Z'}}, {'blockNum': '0x93d65d', 'uniqueId': '0xc891f97f9e2b252f1c53640b8940e926cc9a6b037f3abeefb9e263cab1550882:log:76', 'hash': '0xc891f97f9e2b252f1c53640b8940e926cc9a6b037f3abeefb9e263cab1550882', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 227.7581845493141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c58c79e220dba6cd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:09:11.000Z'}}, {'blockNum': '0x93d65d', 'uniqueId': '0xc891f97f9e2b252f1c53640b8940e926cc9a6b037f3abeefb9e263cab1550882:log:78', 'hash': '0xc891f97f9e2b252f1c53640b8940e926cc9a6b037f3abeefb9e263cab1550882', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 227.7581845493141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c58c79e220dba6cd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:09:11.000Z'}}, {'blockNum': '0x93d65d', 'uniqueId': '0xc891f97f9e2b252f1c53640b8940e926cc9a6b037f3abeefb9e263cab1550882:log:80', 'hash': '0xc891f97f9e2b252f1c53640b8940e926cc9a6b037f3abeefb9e263cab1550882', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 227.7581845493141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c58c79e220dba6cd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:09:11.000Z'}}, {'blockNum': '0x93d66a', 'uniqueId': '0x43d50267525fa9b31587f2cb8ad6d13d72abb49ea015fa323a6845541abba2fc:log:15', 'hash': '0x43d50267525fa9b31587f2cb8ad6d13d72abb49ea015fa323a6845541abba2fc', 'from': '0x8e7ce9e5014a6eccca36e1b6baff95ccd42f33fc', 'to': '0x8f20a07e0541ca2db9152d7e521aee5d639b211d', 'value': 11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98a7d9b8314c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:11:25.000Z'}}, {'blockNum': '0x93d672', 'uniqueId': '0x6183b26d520a8e462e342b969a016c7d54b8144d4a6c775c4d535d56c90215da:log:130', 'hash': '0x6183b26d520a8e462e342b969a016c7d54b8144d4a6c775c4d535d56c90215da', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 575.844122783883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f37714ab811c5b570', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:12:41.000Z'}}, {'blockNum': '0x93d672', 'uniqueId': '0x6183b26d520a8e462e342b969a016c7d54b8144d4a6c775c4d535d56c90215da:log:136', 'hash': '0x6183b26d520a8e462e342b969a016c7d54b8144d4a6c775c4d535d56c90215da', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 575.844122783883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f37714ab811c5b570', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:12:41.000Z'}}, {'blockNum': '0x93d679', 'uniqueId': '0x4f1205e69a4d62bbd0172749a53c75f28bba3a4ea2805b746687390ab68e367d:log:124', 'hash': '0x4f1205e69a4d62bbd0172749a53c75f28bba3a4ea2805b746687390ab68e367d', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 666.4166236283179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x242063745d051456db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:13:45.000Z'}}, {'blockNum': '0x93d679', 'uniqueId': '0x4f1205e69a4d62bbd0172749a53c75f28bba3a4ea2805b746687390ab68e367d:log:130', 'hash': '0x4f1205e69a4d62bbd0172749a53c75f28bba3a4ea2805b746687390ab68e367d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 666.4166236283179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x242063745d051456db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:13:45.000Z'}}, {'blockNum': '0x93d67c', 'uniqueId': '0x71b1a4f711268822a29ec6681c57d339d5d88fa832ef32e0aff8930cdd988dea:log:53', 'hash': '0x71b1a4f711268822a29ec6681c57d339d5d88fa832ef32e0aff8930cdd988dea', 'from': '0x8e7ce9e5014a6eccca36e1b6baff95ccd42f33fc', 'to': '0x8f20a07e0541ca2db9152d7e521aee5d639b211d', 'value': 4989.242100729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010e77a4a879b7bc7a00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:14:18.000Z'}}, {'blockNum': '0x93d67c', 'uniqueId': '0xd889e734991368019dbe5ddef2a9ebaf97dd288a9b8159d9929174a71b590f33:log:92', 'hash': '0xd889e734991368019dbe5ddef2a9ebaf97dd288a9b8159d9929174a71b590f33', 'from': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 128.15102655134473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f273e7acda8e392b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:14:18.000Z'}}, {'blockNum': '0x93d67c', 'uniqueId': '0xd889e734991368019dbe5ddef2a9ebaf97dd288a9b8159d9929174a71b590f33:log:98', 'hash': '0xd889e734991368019dbe5ddef2a9ebaf97dd288a9b8159d9929174a71b590f33', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 128.15102655134473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06f273e7acda8e392b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:14:18.000Z'}}, {'blockNum': '0x93d681', 'uniqueId': '0x17428a2086c88ad3e6c834d6ec60049a87ffed7f56e0bf7d300c167ba6d73c74:log:62', 'hash': '0x17428a2086c88ad3e6c834d6ec60049a87ffed7f56e0bf7d300c167ba6d73c74', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 39.99360126338748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b05d07430d31c32', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:15:34.000Z'}}, {'blockNum': '0x93d681', 'uniqueId': '0x17428a2086c88ad3e6c834d6ec60049a87ffed7f56e0bf7d300c167ba6d73c74:log:68', 'hash': '0x17428a2086c88ad3e6c834d6ec60049a87ffed7f56e0bf7d300c167ba6d73c74', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 39.99360126338748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022b05d07430d31c32', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:15:34.000Z'}}, {'blockNum': '0x93d686', 'uniqueId': '0x50c23a1bd836b8d02821325e94c4bf6313025824dbdedb371ca0d0733cd8518f:log:120', 'hash': '0x50c23a1bd836b8d02821325e94c4bf6313025824dbdedb371ca0d0733cd8518f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 79.98610796081456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045607bd67e2656e38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:16:47.000Z'}}, {'blockNum': '0x93d686', 'uniqueId': '0x50c23a1bd836b8d02821325e94c4bf6313025824dbdedb371ca0d0733cd8518f:log:126', 'hash': '0x50c23a1bd836b8d02821325e94c4bf6313025824dbdedb371ca0d0733cd8518f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 79.98610796081456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045607bd67e2656e38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:16:47.000Z'}}, {'blockNum': '0x93d687', 'uniqueId': '0x4b4b7c5b3ff0dd49c1162d6d6af86b4b4ddd13861e56014d17005c33816b87b7:log:41', 'hash': '0x4b4b7c5b3ff0dd49c1162d6d6af86b4b4ddd13861e56014d17005c33816b87b7', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1289.8119539456059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45ebbc92659c54e20f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:16:57.000Z'}}, {'blockNum': '0x93d687', 'uniqueId': '0x4b4b7c5b3ff0dd49c1162d6d6af86b4b4ddd13861e56014d17005c33816b87b7:log:47', 'hash': '0x4b4b7c5b3ff0dd49c1162d6d6af86b4b4ddd13861e56014d17005c33816b87b7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1289.8119539456059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45ebbc92659c54e20f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:16:57.000Z'}}, {'blockNum': '0x93d68d', 'uniqueId': '0x12b839ea47533705eceb3da393b2d08915092b4bbf42b992939c75df8d7a9c9e:log:150', 'hash': '0x12b839ea47533705eceb3da393b2d08915092b4bbf42b992939c75df8d7a9c9e', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 41.28850822931233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023cfe3f7a89f42e4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:17:48.000Z'}}, {'blockNum': '0x93d68d', 'uniqueId': '0x12b839ea47533705eceb3da393b2d08915092b4bbf42b992939c75df8d7a9c9e:log:156', 'hash': '0x12b839ea47533705eceb3da393b2d08915092b4bbf42b992939c75df8d7a9c9e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 41.28850822931233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x023cfe3f7a89f42e4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:17:48.000Z'}}, {'blockNum': '0x93d695', 'uniqueId': '0x73d5f76599b285f680694c6b28972f7963a5152183cb019b58d4282b2af9728d:log:113', 'hash': '0x73d5f76599b285f680694c6b28972f7963a5152183cb019b58d4282b2af9728d', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 372.5006766977269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14317c3fdd08a37ed8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:19:12.000Z'}}, {'blockNum': '0x93d695', 'uniqueId': '0x73d5f76599b285f680694c6b28972f7963a5152183cb019b58d4282b2af9728d:log:119', 'hash': '0x73d5f76599b285f680694c6b28972f7963a5152183cb019b58d4282b2af9728d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 372.5006766977269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14317c3fdd08a37ed8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:19:12.000Z'}}, {'blockNum': '0x93d695', 'uniqueId': '0xd6ec3d012d4beb09bc7279758f8f70a86720b76189ee081dd4d9c976269c9849:log:160', 'hash': '0xd6ec3d012d4beb09bc7279758f8f70a86720b76189ee081dd4d9c976269c9849', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 37.223721894395425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02049539d7dd5eb4fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:19:12.000Z'}}, {'blockNum': '0x93d695', 'uniqueId': '0xd6ec3d012d4beb09bc7279758f8f70a86720b76189ee081dd4d9c976269c9849:log:166', 'hash': '0xd6ec3d012d4beb09bc7279758f8f70a86720b76189ee081dd4d9c976269c9849', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 37.223721894395425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02049539d7dd5eb4fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:19:12.000Z'}}, {'blockNum': '0x93d699', 'uniqueId': '0xb0d70739dfb8af02d94151964b6193eb1649a48681e2330c2accb753940a26c9:log:198', 'hash': '0xb0d70739dfb8af02d94151964b6193eb1649a48681e2330c2accb753940a26c9', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 303.7686687418996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1077a31ac90e3b0f51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:20:49.000Z'}}, {'blockNum': '0x93d699', 'uniqueId': '0xb0d70739dfb8af02d94151964b6193eb1649a48681e2330c2accb753940a26c9:log:204', 'hash': '0xb0d70739dfb8af02d94151964b6193eb1649a48681e2330c2accb753940a26c9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 303.7686687418996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1077a31ac90e3b0f51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:20:49.000Z'}}, {'blockNum': '0x93d6a0', 'uniqueId': '0x8dc730d35996ab5540de519b380bdba35abe049126f658192d4850fd34dd2f72:log:64', 'hash': '0x8dc730d35996ab5540de519b380bdba35abe049126f658192d4850fd34dd2f72', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 348.53570445446184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e4e790947cba8b4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:22:06.000Z'}}, {'blockNum': '0x93d6a0', 'uniqueId': '0x8dc730d35996ab5540de519b380bdba35abe049126f658192d4850fd34dd2f72:log:70', 'hash': '0x8dc730d35996ab5540de519b380bdba35abe049126f658192d4850fd34dd2f72', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 348.53570445446184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e4e790947cba8b4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:22:06.000Z'}}, {'blockNum': '0x93d6a1', 'uniqueId': '0xfe0fa3aee83f025dac9a9cfa1f286dda1547ba8f9937577d75ae4e2a14ee344c:log:176', 'hash': '0xfe0fa3aee83f025dac9a9cfa1f286dda1547ba8f9937577d75ae4e2a14ee344c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 422.4327069039652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16e66e74c8e58c2cb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:22:21.000Z'}}, {'blockNum': '0x93d6a1', 'uniqueId': '0xfe0fa3aee83f025dac9a9cfa1f286dda1547ba8f9937577d75ae4e2a14ee344c:log:182', 'hash': '0xfe0fa3aee83f025dac9a9cfa1f286dda1547ba8f9937577d75ae4e2a14ee344c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'value': 422.4327069039652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16e66e74c8e58c2cb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:22:21.000Z'}}, {'blockNum': '0x93d6a2', 'uniqueId': '0xfb7dc3e9c4464dedf9afeaa0340c06f7b74d16509697ce7ae65dc39e06f87b0e:log:119', 'hash': '0xfb7dc3e9c4464dedf9afeaa0340c06f7b74d16509697ce7ae65dc39e06f87b0e', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 379.39337083572485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14912404a9b16ce253', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:23:33.000Z'}}, {'blockNum': '0x93d6a2', 'uniqueId': '0xfb7dc3e9c4464dedf9afeaa0340c06f7b74d16509697ce7ae65dc39e06f87b0e:log:125', 'hash': '0xfb7dc3e9c4464dedf9afeaa0340c06f7b74d16509697ce7ae65dc39e06f87b0e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 379.39337083572485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14912404a9b16ce253', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:23:33.000Z'}}, {'blockNum': '0x93d6a4', 'uniqueId': '0x3e6627d41d94433beff416ec915b36009c5d7a847d78e5d3c46ab76fb262a52e:log:113', 'hash': '0x3e6627d41d94433beff416ec915b36009c5d7a847d78e5d3c46ab76fb262a52e', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 26.501304555987335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc78c157010ff3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:23:54.000Z'}}, {'blockNum': '0x93d6a4', 'uniqueId': '0x3e6627d41d94433beff416ec915b36009c5d7a847d78e5d3c46ab76fb262a52e:log:119', 'hash': '0x3e6627d41d94433beff416ec915b36009c5d7a847d78e5d3c46ab76fb262a52e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 26.501304555987335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc78c157010ff3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:23:54.000Z'}}, {'blockNum': '0x93d6ba', 'uniqueId': '0x06adca97700c86c5813fdf6e8946f346de4008755fbb521ff17e7f49a56b2faf:log:13', 'hash': '0x06adca97700c86c5813fdf6e8946f346de4008755fbb521ff17e7f49a56b2faf', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8.001046197955896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f096d202ca6a525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:28:14.000Z'}}, {'blockNum': '0x93d6ba', 'uniqueId': '0x06adca97700c86c5813fdf6e8946f346de4008755fbb521ff17e7f49a56b2faf:log:19', 'hash': '0x06adca97700c86c5813fdf6e8946f346de4008755fbb521ff17e7f49a56b2faf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 8.001046197955896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f096d202ca6a525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:28:14.000Z'}}, {'blockNum': '0x93d6ba', 'uniqueId': '0x8c89cbeb2eb1ee8ce089e8519133ae708e71fada3129f0048511c66a61ce2299:log:43', 'hash': '0x8c89cbeb2eb1ee8ce089e8519133ae708e71fada3129f0048511c66a61ce2299', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 20.663259203350904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011ec2a4c44d8d37c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:28:14.000Z'}}, {'blockNum': '0x93d6ba', 'uniqueId': '0x8c89cbeb2eb1ee8ce089e8519133ae708e71fada3129f0048511c66a61ce2299:log:49', 'hash': '0x8c89cbeb2eb1ee8ce089e8519133ae708e71fada3129f0048511c66a61ce2299', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 20.663259203350904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011ec2a4c44d8d37c2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:28:14.000Z'}}, {'blockNum': '0x93d6c8', 'uniqueId': '0x9b664b44f28c0a1b31f4076f44b7f8e08ddd4fb7cf3b099c8f8e7b181eeaf990:log:51', 'hash': '0x9b664b44f28c0a1b31f4076f44b7f8e08ddd4fb7cf3b099c8f8e7b181eeaf990', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 253.83492498372044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc2aacf65ca955965', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:32:23.000Z'}}, {'blockNum': '0x93d6c8', 'uniqueId': '0x9b664b44f28c0a1b31f4076f44b7f8e08ddd4fb7cf3b099c8f8e7b181eeaf990:log:57', 'hash': '0x9b664b44f28c0a1b31f4076f44b7f8e08ddd4fb7cf3b099c8f8e7b181eeaf990', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 253.83492498372044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc2aacf65ca955965', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:32:23.000Z'}}, {'blockNum': '0x93d6cd', 'uniqueId': '0x9b1a2e83c0000af23ac9f250ccdd80b8a1cb377c9e73443d564a6fac0ac0beba:log:108', 'hash': '0x9b1a2e83c0000af23ac9f250ccdd80b8a1cb377c9e73443d564a6fac0ac0beba', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 160.02785100795256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08acd522a0ba2625fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:33:26.000Z'}}, {'blockNum': '0x93d6cd', 'uniqueId': '0x9b1a2e83c0000af23ac9f250ccdd80b8a1cb377c9e73443d564a6fac0ac0beba:log:114', 'hash': '0x9b1a2e83c0000af23ac9f250ccdd80b8a1cb377c9e73443d564a6fac0ac0beba', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 160.02785100795256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08acd522a0ba2625fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:33:26.000Z'}}, {'blockNum': '0x93d6d3', 'uniqueId': '0x0de9e6a68fa2dd7a3d70bc351424c910b6d481692f545690352c0f53996ef54b:log:83', 'hash': '0x0de9e6a68fa2dd7a3d70bc351424c910b6d481692f545690352c0f53996ef54b', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 75.59546193905797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041919081c951cc9ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:34:51.000Z'}}, {'blockNum': '0x93d6d3', 'uniqueId': '0x0de9e6a68fa2dd7a3d70bc351424c910b6d481692f545690352c0f53996ef54b:log:89', 'hash': '0x0de9e6a68fa2dd7a3d70bc351424c910b6d481692f545690352c0f53996ef54b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 75.59546193905797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041919081c951cc9ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:34:51.000Z'}}, {'blockNum': '0x93d6d9', 'uniqueId': '0xcdd46bdda0c3cc94f5586fb9a948d5d5b8685a5a9b7f7d6c58c75f6aba9aa4ce:log:70', 'hash': '0xcdd46bdda0c3cc94f5586fb9a948d5d5b8685a5a9b7f7d6c58c75f6aba9aa4ce', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 42.18981351636114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02498053dca6ae1341', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:36:46.000Z'}}, {'blockNum': '0x93d6d9', 'uniqueId': '0xcdd46bdda0c3cc94f5586fb9a948d5d5b8685a5a9b7f7d6c58c75f6aba9aa4ce:log:76', 'hash': '0xcdd46bdda0c3cc94f5586fb9a948d5d5b8685a5a9b7f7d6c58c75f6aba9aa4ce', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 42.18981351636114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02498053dca6ae1341', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:36:46.000Z'}}, {'blockNum': '0x93d6dc', 'uniqueId': '0x429378a513f2813cc4a0cc05176d4fa165b910c5d1c4e9fe4dc55cb8975740ad:log:126', 'hash': '0x429378a513f2813cc4a0cc05176d4fa165b910c5d1c4e9fe4dc55cb8975740ad', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 26.93383357203345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0175c832eea48b53ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:37:34.000Z'}}, {'blockNum': '0x93d6dc', 'uniqueId': '0x429378a513f2813cc4a0cc05176d4fa165b910c5d1c4e9fe4dc55cb8975740ad:log:132', 'hash': '0x429378a513f2813cc4a0cc05176d4fa165b910c5d1c4e9fe4dc55cb8975740ad', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 26.93383357203345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0175c832eea48b53ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:37:34.000Z'}}, {'blockNum': '0x93d6df', 'uniqueId': '0x031a644c427298560e454b9648da5d5e97c54b61afe0201063cdb8ed9beb37e7:log:97', 'hash': '0x031a644c427298560e454b9648da5d5e97c54b61afe0201063cdb8ed9beb37e7', 'from': '0x019c199f89b8a374e87b70597bbca748ac084587', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:38:46.000Z'}}, {'blockNum': '0x93d6e1', 'uniqueId': '0xe1b0675c590b110fd78a765f2dd8c1667e33da96b8f3871c81e6518e5ed38302:log:119', 'hash': '0xe1b0675c590b110fd78a765f2dd8c1667e33da96b8f3871c81e6518e5ed38302', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 80.01437152407682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04566c26f782bac5c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:39:13.000Z'}}, {'blockNum': '0x93d6e1', 'uniqueId': '0xe1b0675c590b110fd78a765f2dd8c1667e33da96b8f3871c81e6518e5ed38302:log:125', 'hash': '0xe1b0675c590b110fd78a765f2dd8c1667e33da96b8f3871c81e6518e5ed38302', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 80.01437152407682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04566c26f782bac5c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:39:13.000Z'}}, {'blockNum': '0x93d6ea', 'uniqueId': '0xae0c67bb7104b5a18c0351786daadd5dd05cc259384f674455458158855431c1:log:250', 'hash': '0xae0c67bb7104b5a18c0351786daadd5dd05cc259384f674455458158855431c1', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 46.116787032934106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x027fffbd782060b5c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:40:48.000Z'}}, {'blockNum': '0x93d6ea', 'uniqueId': '0xae0c67bb7104b5a18c0351786daadd5dd05cc259384f674455458158855431c1:log:256', 'hash': '0xae0c67bb7104b5a18c0351786daadd5dd05cc259384f674455458158855431c1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 46.116787032934106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x027fffbd782060b5c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:40:48.000Z'}}, {'blockNum': '0x93d704', 'uniqueId': '0x1ea8e9b9ee3b86fb35c6407da1c0c7e04ef68caee4d70b11e6020271f29ab988:log:271', 'hash': '0x1ea8e9b9ee3b86fb35c6407da1c0c7e04ef68caee4d70b11e6020271f29ab988', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 180.23390903228008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09c53f79583d1f54f2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:44:50.000Z'}}, {'blockNum': '0x93d704', 'uniqueId': '0x1ea8e9b9ee3b86fb35c6407da1c0c7e04ef68caee4d70b11e6020271f29ab988:log:277', 'hash': '0x1ea8e9b9ee3b86fb35c6407da1c0c7e04ef68caee4d70b11e6020271f29ab988', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 180.23390903228008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09c53f79583d1f54f2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:44:50.000Z'}}, {'blockNum': '0x93d70b', 'uniqueId': '0xaf7e9e40d4a787736dd228f83ebcbb6b7e54330bc5866346e3e5fbede7abc210:log:137', 'hash': '0xaf7e9e40d4a787736dd228f83ebcbb6b7e54330bc5866346e3e5fbede7abc210', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 800.0717690999046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b5f39eb08d2291b3a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:45:55.000Z'}}, {'blockNum': '0x93d70b', 'uniqueId': '0xaf7e9e40d4a787736dd228f83ebcbb6b7e54330bc5866346e3e5fbede7abc210:log:143', 'hash': '0xaf7e9e40d4a787736dd228f83ebcbb6b7e54330bc5866346e3e5fbede7abc210', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xdba193795e33b445b8c215252b0055a58db4f0af', 'value': 800.0717690999046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b5f39eb08d2291b3a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:45:55.000Z'}}, {'blockNum': '0x93d70f', 'uniqueId': '0x736b01b0597f681ba2f4e4a0168629d41922ca2b6970bde323d42b6081dd8f4c:log:41', 'hash': '0x736b01b0597f681ba2f4e4a0168629d41922ca2b6970bde323d42b6081dd8f4c', 'from': '0x71168843b49e305e4d53de158683903ef261b37f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 565.6264894495284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ea9a4f756365f6457', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:46:53.000Z'}}, {'blockNum': '0x93d70f', 'uniqueId': '0x736b01b0597f681ba2f4e4a0168629d41922ca2b6970bde323d42b6081dd8f4c:log:47', 'hash': '0x736b01b0597f681ba2f4e4a0168629d41922ca2b6970bde323d42b6081dd8f4c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 565.6264894495284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ea9a4f756365f6457', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:46:53.000Z'}}, {'blockNum': '0x93d714', 'uniqueId': '0x271261d111c9bca593d66d2ce29f14544b3e80fb6d217eef4a6326d9ab2cc999:log:93', 'hash': '0x271261d111c9bca593d66d2ce29f14544b3e80fb6d217eef4a6326d9ab2cc999', 'from': '0x66c5603fb424fd9f2e3a0fd51ff63eeec9857bc3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 517.0255297500828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c072babfd31d7699b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:47:22.000Z'}}, {'blockNum': '0x93d714', 'uniqueId': '0x271261d111c9bca593d66d2ce29f14544b3e80fb6d217eef4a6326d9ab2cc999:log:99', 'hash': '0x271261d111c9bca593d66d2ce29f14544b3e80fb6d217eef4a6326d9ab2cc999', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 517.0255297500828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c072babfd31d7699b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:47:22.000Z'}}, {'blockNum': '0x93d72d', 'uniqueId': '0x4c562d5cf97c0f293bc6cc0715ac38fec4eb102a98773dd69cf688c6c07f786d:log:91', 'hash': '0x4c562d5cf97c0f293bc6cc0715ac38fec4eb102a98773dd69cf688c6c07f786d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 558.3924460560461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e45407b32b0188e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:52:29.000Z'}}, {'blockNum': '0x93d72d', 'uniqueId': '0x4c562d5cf97c0f293bc6cc0715ac38fec4eb102a98773dd69cf688c6c07f786d:log:97', 'hash': '0x4c562d5cf97c0f293bc6cc0715ac38fec4eb102a98773dd69cf688c6c07f786d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 558.3924460560461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e45407b32b0188e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:52:29.000Z'}}, {'blockNum': '0x93d746', 'uniqueId': '0xdd5b1adba52da44b1a99965959fa307ed7820a8aefb7805b052f5a42063e8ab8:log:19', 'hash': '0xdd5b1adba52da44b1a99965959fa307ed7820a8aefb7805b052f5a42063e8ab8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6396.081034689272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015abb74952902fc41fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:57:31.000Z'}}, {'blockNum': '0x93d746', 'uniqueId': '0xdd5b1adba52da44b1a99965959fa307ed7820a8aefb7805b052f5a42063e8ab8:log:24', 'hash': '0xdd5b1adba52da44b1a99965959fa307ed7820a8aefb7805b052f5a42063e8ab8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 6396.081034689272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015abb74952902fc41fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:57:31.000Z'}}, {'blockNum': '0x93d74c', 'uniqueId': '0x76c997aaba756369561236ddbfb16cc16375c4f2c376fede9f7e6fce9f066c98:log:123', 'hash': '0x76c997aaba756369561236ddbfb16cc16375c4f2c376fede9f7e6fce9f066c98', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 282.99501875180556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5758462ed2614d5a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:58:53.000Z'}}, {'blockNum': '0x93d74c', 'uniqueId': '0x76c997aaba756369561236ddbfb16cc16375c4f2c376fede9f7e6fce9f066c98:log:129', 'hash': '0x76c997aaba756369561236ddbfb16cc16375c4f2c376fede9f7e6fce9f066c98', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 282.99501875180556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5758462ed2614d5a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T11:58:53.000Z'}}, {'blockNum': '0x93d75b', 'uniqueId': '0x49b3da32d63ae601183725a722e3720fb71e8abf28fcf856c9218eb69ae198f4:log:131', 'hash': '0x49b3da32d63ae601183725a722e3720fb71e8abf28fcf856c9218eb69ae198f4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 399.4713893960423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15a7c7782a62d8565a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:02:54.000Z'}}, {'blockNum': '0x93d75b', 'uniqueId': '0x49b3da32d63ae601183725a722e3720fb71e8abf28fcf856c9218eb69ae198f4:log:137', 'hash': '0x49b3da32d63ae601183725a722e3720fb71e8abf28fcf856c9218eb69ae198f4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 399.4713893960423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15a7c7782a62d8565a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:02:54.000Z'}}, {'blockNum': '0x93d75c', 'uniqueId': '0xb764532a4a799849de0c79def77a25c92338cea0c3e8c259fc79f1f0052bfd56:log:72', 'hash': '0xb764532a4a799849de0c79def77a25c92338cea0c3e8c259fc79f1f0052bfd56', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 39.945138073202955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022a59a3706d318b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:02:56.000Z'}}, {'blockNum': '0x93d75c', 'uniqueId': '0xb764532a4a799849de0c79def77a25c92338cea0c3e8c259fc79f1f0052bfd56:log:78', 'hash': '0xb764532a4a799849de0c79def77a25c92338cea0c3e8c259fc79f1f0052bfd56', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 39.945138073202955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022a59a3706d318b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:02:56.000Z'}}, {'blockNum': '0x93d762', 'uniqueId': '0xef8cf35ab847203489c65ef975ff0d351c1bc3db387bf3de5527352d46d1cfbf:log:144', 'hash': '0xef8cf35ab847203489c65ef975ff0d351c1bc3db387bf3de5527352d46d1cfbf', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 243.87588870322554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d387534aa6e74feb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:04:09.000Z'}}, {'blockNum': '0x93d762', 'uniqueId': '0xef8cf35ab847203489c65ef975ff0d351c1bc3db387bf3de5527352d46d1cfbf:log:150', 'hash': '0xef8cf35ab847203489c65ef975ff0d351c1bc3db387bf3de5527352d46d1cfbf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 243.87588870322554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d387534aa6e74feb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:04:09.000Z'}}, {'blockNum': '0x93d76c', 'uniqueId': '0xab700a3fc5fc7b8c1c14ac7011d4ef0bc04df23b56685c326bed7dc6540a1e09:log:135', 'hash': '0xab700a3fc5fc7b8c1c14ac7011d4ef0bc04df23b56685c326bed7dc6540a1e09', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 64.91093831519882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0384d1fa7c1ab8018c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:06:17.000Z'}}, {'blockNum': '0x93d76c', 'uniqueId': '0xab700a3fc5fc7b8c1c14ac7011d4ef0bc04df23b56685c326bed7dc6540a1e09:log:141', 'hash': '0xab700a3fc5fc7b8c1c14ac7011d4ef0bc04df23b56685c326bed7dc6540a1e09', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 64.91093831519882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0384d1fa7c1ab8018c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:06:17.000Z'}}, {'blockNum': '0x93d77c', 'uniqueId': '0x4efd6dc709eff0147cd2d6222c9dcf10ea6b4e271c075e14a3e87e202f0506d0:log:37', 'hash': '0x4efd6dc709eff0147cd2d6222c9dcf10ea6b4e271c075e14a3e87e202f0506d0', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 63.48291698872256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037100a0a7826b25be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:09:24.000Z'}}, {'blockNum': '0x93d77c', 'uniqueId': '0x4efd6dc709eff0147cd2d6222c9dcf10ea6b4e271c075e14a3e87e202f0506d0:log:43', 'hash': '0x4efd6dc709eff0147cd2d6222c9dcf10ea6b4e271c075e14a3e87e202f0506d0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 63.48291698872256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x037100a0a7826b25be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:09:24.000Z'}}, {'blockNum': '0x93d787', 'uniqueId': '0xdb418d9bf53c4798b8861d05926ee27ccb8c02b0752fbc61ee2089b3bf50ce36:log:92', 'hash': '0xdb418d9bf53c4798b8861d05926ee27ccb8c02b0752fbc61ee2089b3bf50ce36', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 56.41367502196837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030ee5a28a3ec07330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:11:15.000Z'}}, {'blockNum': '0x93d787', 'uniqueId': '0xdb418d9bf53c4798b8861d05926ee27ccb8c02b0752fbc61ee2089b3bf50ce36:log:98', 'hash': '0xdb418d9bf53c4798b8861d05926ee27ccb8c02b0752fbc61ee2089b3bf50ce36', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x66c5603fb424fd9f2e3a0fd51ff63eeec9857bc3', 'value': 56.41367502196837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x030ee5a28a3ec07330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:11:15.000Z'}}, {'blockNum': '0x93d78a', 'uniqueId': '0x3b24103fd6c049abf7352c9e25414ec9c2719110b3fd0785d8b746fdec9db31c:log:54', 'hash': '0x3b24103fd6c049abf7352c9e25414ec9c2719110b3fd0785d8b746fdec9db31c', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 583.7114949385111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fa49fd002b22e222d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:11:43.000Z'}}, {'blockNum': '0x93d78a', 'uniqueId': '0x3b24103fd6c049abf7352c9e25414ec9c2719110b3fd0785d8b746fdec9db31c:log:60', 'hash': '0x3b24103fd6c049abf7352c9e25414ec9c2719110b3fd0785d8b746fdec9db31c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 583.7114949385111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fa49fd002b22e222d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:11:43.000Z'}}, {'blockNum': '0x93d78b', 'uniqueId': '0x3daf8a14b143a19f76c9eb50b3738ad3e5b73f29c9f217079528be5fba3a4661:log:106', 'hash': '0x3daf8a14b143a19f76c9eb50b3738ad3e5b73f29c9f217079528be5fba3a4661', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 66.59945264444261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039c40c9523373a96b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:12:10.000Z'}}, {'blockNum': '0x93d78b', 'uniqueId': '0x3daf8a14b143a19f76c9eb50b3738ad3e5b73f29c9f217079528be5fba3a4661:log:112', 'hash': '0x3daf8a14b143a19f76c9eb50b3738ad3e5b73f29c9f217079528be5fba3a4661', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 66.59945264444261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039c40c9523373a96b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:12:10.000Z'}}, {'blockNum': '0x93d797', 'uniqueId': '0xbf5e8dbbc2246bcf63867dea3fc845b0f14902277a8797708126a87c56a2531d:log:52', 'hash': '0xbf5e8dbbc2246bcf63867dea3fc845b0f14902277a8797708126a87c56a2531d', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 780.6190289816536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5143e6f641d343d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:14:21.000Z'}}, {'blockNum': '0x93d797', 'uniqueId': '0xbf5e8dbbc2246bcf63867dea3fc845b0f14902277a8797708126a87c56a2531d:log:58', 'hash': '0xbf5e8dbbc2246bcf63867dea3fc845b0f14902277a8797708126a87c56a2531d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 780.6190289816536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5143e6f641d343d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:14:21.000Z'}}, {'blockNum': '0x93d7a0', 'uniqueId': '0x3d60717ce159d1e48869e875eb02646f188860be7bfd9b275c784cd085b5d50a:log:65', 'hash': '0x3d60717ce159d1e48869e875eb02646f188860be7bfd9b275c784cd085b5d50a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1598.0936520015928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56a2012d6eb1a9ba1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:16:43.000Z'}}, {'blockNum': '0x93d7a0', 'uniqueId': '0x3d60717ce159d1e48869e875eb02646f188860be7bfd9b275c784cd085b5d50a:log:71', 'hash': '0x3d60717ce159d1e48869e875eb02646f188860be7bfd9b275c784cd085b5d50a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1598.0936520015928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56a2012d6eb1a9ba1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:16:43.000Z'}}, {'blockNum': '0x93d7ab', 'uniqueId': '0x4d313d45e00ca192fd44d2f9e5b6eb41df74bdaca595c7e64f1f4852ac15448e:log:186', 'hash': '0x4d313d45e00ca192fd44d2f9e5b6eb41df74bdaca595c7e64f1f4852ac15448e', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 40.080456640575946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022c3a62f590f9c2a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:20:17.000Z'}}, {'blockNum': '0x93d7ab', 'uniqueId': '0x4d313d45e00ca192fd44d2f9e5b6eb41df74bdaca595c7e64f1f4852ac15448e:log:192', 'hash': '0x4d313d45e00ca192fd44d2f9e5b6eb41df74bdaca595c7e64f1f4852ac15448e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 40.080456640575946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022c3a62f590f9c2a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:20:17.000Z'}}, {'blockNum': '0x93d7af', 'uniqueId': '0x9d3d3b608786b02c5c505833190278b3868ef939a34166c09fe7e3a16019f5b9:log:136', 'hash': '0x9d3d3b608786b02c5c505833190278b3868ef939a34166c09fe7e3a16019f5b9', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6231.627964103528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0151d135e8c5ad7e2bfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:22:06.000Z'}}, {'blockNum': '0x93d7af', 'uniqueId': '0x9d3d3b608786b02c5c505833190278b3868ef939a34166c09fe7e3a16019f5b9:log:141', 'hash': '0x9d3d3b608786b02c5c505833190278b3868ef939a34166c09fe7e3a16019f5b9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 6231.627964103528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0151d135e8c5ad7e2bfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:22:06.000Z'}}, {'blockNum': '0x93d7af', 'uniqueId': '0x9d3d3b608786b02c5c505833190278b3868ef939a34166c09fe7e3a16019f5b9:log:142', 'hash': '0x9d3d3b608786b02c5c505833190278b3868ef939a34166c09fe7e3a16019f5b9', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 6231.004801307118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0151c88ffd82b036f729', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:22:06.000Z'}}, {'blockNum': '0x93d7af', 'uniqueId': '0x9d3d3b608786b02c5c505833190278b3868ef939a34166c09fe7e3a16019f5b9:log:144', 'hash': '0x9d3d3b608786b02c5c505833190278b3868ef939a34166c09fe7e3a16019f5b9', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x019c199f89b8a374e87b70597bbca748ac084587', 'value': 6231.004801307118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0151c88ffd82b036f729', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:22:06.000Z'}}, {'blockNum': '0x93d7b2', 'uniqueId': '0xb8ce9470b18ea7076559dc1e5f99e5d4d8d26b5208e440daa12093a4737c992e:log:74', 'hash': '0xb8ce9470b18ea7076559dc1e5f99e5d4d8d26b5208e440daa12093a4737c992e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3103.729711353846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa840e7003627aa3626', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:23:40.000Z'}}, {'blockNum': '0x93d7b2', 'uniqueId': '0xb8ce9470b18ea7076559dc1e5f99e5d4d8d26b5208e440daa12093a4737c992e:log:79', 'hash': '0xb8ce9470b18ea7076559dc1e5f99e5d4d8d26b5208e440daa12093a4737c992e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 3103.729711353846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa840e7003627aa3626', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:23:40.000Z'}}, {'blockNum': '0x93d7b2', 'uniqueId': '0xb8ce9470b18ea7076559dc1e5f99e5d4d8d26b5208e440daa12093a4737c992e:log:80', 'hash': '0xb8ce9470b18ea7076559dc1e5f99e5d4d8d26b5208e440daa12093a4737c992e', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3103.4193383827105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa83c9855a38341fa10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:23:40.000Z'}}, {'blockNum': '0x93d7b2', 'uniqueId': '0xb8ce9470b18ea7076559dc1e5f99e5d4d8d26b5208e440daa12093a4737c992e:log:82', 'hash': '0xb8ce9470b18ea7076559dc1e5f99e5d4d8d26b5208e440daa12093a4737c992e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x019c199f89b8a374e87b70597bbca748ac084587', 'value': 3103.4193383827105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa83c9855a38341fa10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:23:40.000Z'}}, {'blockNum': '0x93d7b5', 'uniqueId': '0xd64f1ab2b3331dd5c57c45427d5389fc7e9922689dd4e452c1ec66c6c845beb4:log:51', 'hash': '0xd64f1ab2b3331dd5c57c45427d5389fc7e9922689dd4e452c1ec66c6c845beb4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 797.1351423164984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b3678ec88ab56e9a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:23:56.000Z'}}, {'blockNum': '0x93d7b5', 'uniqueId': '0xd64f1ab2b3331dd5c57c45427d5389fc7e9922689dd4e452c1ec66c6c845beb4:log:57', 'hash': '0xd64f1ab2b3331dd5c57c45427d5389fc7e9922689dd4e452c1ec66c6c845beb4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'value': 797.1351423164984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b3678ec88ab56e9a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:23:56.000Z'}}, {'blockNum': '0x93d7b5', 'uniqueId': '0x1491eb745694d20858928deb0b8a42d975e1609786beb1cfb7ba9270403bb30a:log:90', 'hash': '0x1491eb745694d20858928deb0b8a42d975e1609786beb1cfb7ba9270403bb30a', 'from': '0x019c199f89b8a374e87b70597bbca748ac084587', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 5649.99465641938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0132496d4d0f0c568084', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:23:56.000Z'}}, {'blockNum': '0x93d7b9', 'uniqueId': '0x0d57b68cdb078b355eaa6f84b4e363de2e22f999c096a8bfcb621d5d5bf6a06d:log:146', 'hash': '0x0d57b68cdb078b355eaa6f84b4e363de2e22f999c096a8bfcb621d5d5bf6a06d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 7722.958787436326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a2a995532f1bbd948d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:24:45.000Z'}}, {'blockNum': '0x93d7b9', 'uniqueId': '0x0d57b68cdb078b355eaa6f84b4e363de2e22f999c096a8bfcb621d5d5bf6a06d:log:151', 'hash': '0x0d57b68cdb078b355eaa6f84b4e363de2e22f999c096a8bfcb621d5d5bf6a06d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 7722.958787436326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a2a995532f1bbd948d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:24:45.000Z'}}, {'blockNum': '0x93d7b9', 'uniqueId': '0x0d57b68cdb078b355eaa6f84b4e363de2e22f999c096a8bfcb621d5d5bf6a06d:log:152', 'hash': '0x0d57b68cdb078b355eaa6f84b4e363de2e22f999c096a8bfcb621d5d5bf6a06d', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 7722.1864915575825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a29edd942c91ba6990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:24:45.000Z'}}, {'blockNum': '0x93d7b9', 'uniqueId': '0x0d57b68cdb078b355eaa6f84b4e363de2e22f999c096a8bfcb621d5d5bf6a06d:log:154', 'hash': '0x0d57b68cdb078b355eaa6f84b4e363de2e22f999c096a8bfcb621d5d5bf6a06d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x019c199f89b8a374e87b70597bbca748ac084587', 'value': 7722.1864915575825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a29edd942c91ba6990', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:24:45.000Z'}}, {'blockNum': '0x93d7be', 'uniqueId': '0xe8180f06ad4f2dc1514295dea558af263adae10e1242cb1563afb77d8d32a2cc:log:13', 'hash': '0xe8180f06ad4f2dc1514295dea558af263adae10e1242cb1563afb77d8d32a2cc', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 649.141424522108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2330a59e4ddf4adc18', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:26:14.000Z'}}, {'blockNum': '0x93d7be', 'uniqueId': '0xe8180f06ad4f2dc1514295dea558af263adae10e1242cb1563afb77d8d32a2cc:log:19', 'hash': '0xe8180f06ad4f2dc1514295dea558af263adae10e1242cb1563afb77d8d32a2cc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 649.141424522108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2330a59e4ddf4adc18', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:26:14.000Z'}}, {'blockNum': '0x93d7c0', 'uniqueId': '0x7b8d8af7729e6de64463cf4875d7df4390dd9686ee2fd351f94f49e6af6b395c:log:275', 'hash': '0x7b8d8af7729e6de64463cf4875d7df4390dd9686ee2fd351f94f49e6af6b395c', 'from': '0x4f138e1ceec7b33dfa4f3051594ec016a08c7513', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 40.214028454385094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022e14edd0f313013b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:26:34.000Z'}}, {'blockNum': '0x93d7c0', 'uniqueId': '0x7b8d8af7729e6de64463cf4875d7df4390dd9686ee2fd351f94f49e6af6b395c:log:281', 'hash': '0x7b8d8af7729e6de64463cf4875d7df4390dd9686ee2fd351f94f49e6af6b395c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 40.214028454385094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x022e14edd0f313013b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:26:34.000Z'}}, {'blockNum': '0x93d7cd', 'uniqueId': '0x29866ae2480b10830d64b4f45df7a31d410cbf9177aa10d344815ef6730c09d8:log:52', 'hash': '0x29866ae2480b10830d64b4f45df7a31d410cbf9177aa10d344815ef6730c09d8', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1784.954262988977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x60c3376d1871284886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:29:46.000Z'}}, {'blockNum': '0x93d7cd', 'uniqueId': '0x29866ae2480b10830d64b4f45df7a31d410cbf9177aa10d344815ef6730c09d8:log:58', 'hash': '0x29866ae2480b10830d64b4f45df7a31d410cbf9177aa10d344815ef6730c09d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1784.954262988977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x60c3376d1871284886', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:29:46.000Z'}}, {'blockNum': '0x93d7d7', 'uniqueId': '0xf332bf78b9ced26f340c87db5977cc6030b12a16db43f62725c5567fa433547e:log:93', 'hash': '0xf332bf78b9ced26f340c87db5977cc6030b12a16db43f62725c5567fa433547e', 'from': '0x247ac58cd31541c65b3aaa47e047745107d13873', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 567.6335689032547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec57f8b7749b7557f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:32:21.000Z'}}, {'blockNum': '0x93d7d7', 'uniqueId': '0xf332bf78b9ced26f340c87db5977cc6030b12a16db43f62725c5567fa433547e:log:99', 'hash': '0xf332bf78b9ced26f340c87db5977cc6030b12a16db43f62725c5567fa433547e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 567.6335689032547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ec57f8b7749b7557f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:32:21.000Z'}}, {'blockNum': '0x93d7de', 'uniqueId': '0xbf3ff8d69cac41d67514168db469db2e6ca7219e23f9d1784f01f87085c123c3:log:48', 'hash': '0xbf3ff8d69cac41d67514168db469db2e6ca7219e23f9d1784f01f87085c123c3', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 159.23897882122537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08a1e27f8dbb16e94e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:33:17.000Z'}}, {'blockNum': '0x93d7de', 'uniqueId': '0xbf3ff8d69cac41d67514168db469db2e6ca7219e23f9d1784f01f87085c123c3:log:53', 'hash': '0xbf3ff8d69cac41d67514168db469db2e6ca7219e23f9d1784f01f87085c123c3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00767166bb0788ab7c036ab0ef4bfc4b3df74f2d', 'value': 159.23897882122537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08a1e27f8dbb16e94e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:33:17.000Z'}}, {'blockNum': '0x93d7e3', 'uniqueId': '0xaa8cc2e99b9cd1b75700f600bcc3b6f0def11989654e16639fb9748723c56eea:log:114', 'hash': '0xaa8cc2e99b9cd1b75700f600bcc3b6f0def11989654e16639fb9748723c56eea', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 485.643112977571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a53a6ee34a303e6c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:34:49.000Z'}}, {'blockNum': '0x93d7e3', 'uniqueId': '0xaa8cc2e99b9cd1b75700f600bcc3b6f0def11989654e16639fb9748723c56eea:log:120', 'hash': '0xaa8cc2e99b9cd1b75700f600bcc3b6f0def11989654e16639fb9748723c56eea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x66c5603fb424fd9f2e3a0fd51ff63eeec9857bc3', 'value': 485.643112977571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a53a6ee34a303e6c0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:34:49.000Z'}}, {'blockNum': '0x93d7e3', 'uniqueId': '0xe8d8cbf917872ac994e48c1402b1d1d32c3d4ffb5a701b3d394408976bc97c33:log:165', 'hash': '0xe8d8cbf917872ac994e48c1402b1d1d32c3d4ffb5a701b3d394408976bc97c33', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 419.68763306915906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16c055fead0fb5c57f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:34:49.000Z'}}, {'blockNum': '0x93d7e3', 'uniqueId': '0xe8d8cbf917872ac994e48c1402b1d1d32c3d4ffb5a701b3d394408976bc97c33:log:171', 'hash': '0xe8d8cbf917872ac994e48c1402b1d1d32c3d4ffb5a701b3d394408976bc97c33', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 419.68763306915906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16c055fead0fb5c57f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:34:49.000Z'}}, {'blockNum': '0x93d7fa', 'uniqueId': '0xabb5c977aa96f9ac8b45ae5e31591b01561c69b2e42dce4fb40d677fb82c6042:log:83', 'hash': '0xabb5c977aa96f9ac8b45ae5e31591b01561c69b2e42dce4fb40d677fb82c6042', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1592.0466536757547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x564e15ec7e50b431ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:43.000Z'}}, {'blockNum': '0x93d7fa', 'uniqueId': '0xabb5c977aa96f9ac8b45ae5e31591b01561c69b2e42dce4fb40d677fb82c6042:log:89', 'hash': '0xabb5c977aa96f9ac8b45ae5e31591b01561c69b2e42dce4fb40d677fb82c6042', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 1592.0466536757547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x564e15ec7e50b431ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:43.000Z'}}, {'blockNum': '0x93d7fa', 'uniqueId': '0x9c26ff12f522eaf9a0bcd8d182d588325ec8d5a2f1da5e5347b2d4e9cf6d29eb:log:107', 'hash': '0x9c26ff12f522eaf9a0bcd8d182d588325ec8d5a2f1da5e5347b2d4e9cf6d29eb', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 804.8053808451839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ba0eb15d648278f31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:43.000Z'}}, {'blockNum': '0x93d7fa', 'uniqueId': '0x9c26ff12f522eaf9a0bcd8d182d588325ec8d5a2f1da5e5347b2d4e9cf6d29eb:log:113', 'hash': '0x9c26ff12f522eaf9a0bcd8d182d588325ec8d5a2f1da5e5347b2d4e9cf6d29eb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 804.8053808451839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ba0eb15d648278f31', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:43.000Z'}}, {'blockNum': '0x93d7fa', 'uniqueId': '0xe428271576fe1ae8abedcfe7707d640c906931deb7ce6e31b695aff7c6860791:log:125', 'hash': '0xe428271576fe1ae8abedcfe7707d640c906931deb7ce6e31b695aff7c6860791', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1081.1800463112165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a9c6323c85c7261d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:43.000Z'}}, {'blockNum': '0x93d7fa', 'uniqueId': '0xe428271576fe1ae8abedcfe7707d640c906931deb7ce6e31b695aff7c6860791:log:131', 'hash': '0xe428271576fe1ae8abedcfe7707d640c906931deb7ce6e31b695aff7c6860791', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 1081.1800463112165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a9c6323c85c7261d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:43.000Z'}}, {'blockNum': '0x93d7fb', 'uniqueId': '0x133b1e235ab18dcd299c4e9cba890edccfe1682399c1666f11c048548211015b:log:45', 'hash': '0x133b1e235ab18dcd299c4e9cba890edccfe1682399c1666f11c048548211015b', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 436.0503307175818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a369f97e7510deec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:48.000Z'}}, {'blockNum': '0x93d7fb', 'uniqueId': '0x133b1e235ab18dcd299c4e9cba890edccfe1682399c1666f11c048548211015b:log:48', 'hash': '0x133b1e235ab18dcd299c4e9cba890edccfe1682399c1666f11c048548211015b', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 436.0503307175818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a369f97e7510deec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:48.000Z'}}, {'blockNum': '0x93d7fb', 'uniqueId': '0x133b1e235ab18dcd299c4e9cba890edccfe1682399c1666f11c048548211015b:log:50', 'hash': '0x133b1e235ab18dcd299c4e9cba890edccfe1682399c1666f11c048548211015b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'value': 436.0503307175818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a369f97e7510deec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:48.000Z'}}, {'blockNum': '0x93d7fb', 'uniqueId': '0x7330b1457d904e8881dc27f021305a3cc8bf0dba4fa45216d3cfd89664e6e427:log:64', 'hash': '0x7330b1457d904e8881dc27f021305a3cc8bf0dba4fa45216d3cfd89664e6e427', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 795.9522961237152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b260e9c304292eb6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:48.000Z'}}, {'blockNum': '0x93d7fb', 'uniqueId': '0x7330b1457d904e8881dc27f021305a3cc8bf0dba4fa45216d3cfd89664e6e427:log:70', 'hash': '0x7330b1457d904e8881dc27f021305a3cc8bf0dba4fa45216d3cfd89664e6e427', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 795.9522961237152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b260e9c304292eb6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:48.000Z'}}, {'blockNum': '0x93d7fb', 'uniqueId': '0x467ecb469d4c69ee94edf9ac42ed8f76529b7d333f24a10a505a203f9c811b4c:log:83', 'hash': '0x467ecb469d4c69ee94edf9ac42ed8f76529b7d333f24a10a505a203f9c811b4c', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 824.51720375655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cb2798c5653894ea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:48.000Z'}}, {'blockNum': '0x93d7fb', 'uniqueId': '0x467ecb469d4c69ee94edf9ac42ed8f76529b7d333f24a10a505a203f9c811b4c:log:88', 'hash': '0x467ecb469d4c69ee94edf9ac42ed8f76529b7d333f24a10a505a203f9c811b4c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 824.51720375655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cb2798c5653894ea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:48.000Z'}}, {'blockNum': '0x93d7fb', 'uniqueId': '0x467ecb469d4c69ee94edf9ac42ed8f76529b7d333f24a10a505a203f9c811b4c:log:90', 'hash': '0x467ecb469d4c69ee94edf9ac42ed8f76529b7d333f24a10a505a203f9c811b4c', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 824.51720375655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cb2798c5653894ea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:48.000Z'}}, {'blockNum': '0x93d7fb', 'uniqueId': '0x467ecb469d4c69ee94edf9ac42ed8f76529b7d333f24a10a505a203f9c811b4c:log:92', 'hash': '0x467ecb469d4c69ee94edf9ac42ed8f76529b7d333f24a10a505a203f9c811b4c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 824.51720375655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cb2798c5653894ea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:39:48.000Z'}}, {'blockNum': '0x93d7fe', 'uniqueId': '0x3658b08e2cbea9d7c4dde611aceed04e2a1167f107ab4ffc38ebd2a86e15c959:log:126', 'hash': '0x3658b08e2cbea9d7c4dde611aceed04e2a1167f107ab4ffc38ebd2a86e15c959', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 199.5268586258174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad0fdccc8156e47b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:40:39.000Z'}}, {'blockNum': '0x93d7fe', 'uniqueId': '0x3658b08e2cbea9d7c4dde611aceed04e2a1167f107ab4ffc38ebd2a86e15c959:log:132', 'hash': '0x3658b08e2cbea9d7c4dde611aceed04e2a1167f107ab4ffc38ebd2a86e15c959', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 199.5268586258174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad0fdccc8156e47b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:40:39.000Z'}}, {'blockNum': '0x93d7fe', 'uniqueId': '0x4a49edc626e363054e95476831664d58d87e21511210c68581f6f3fa3291c258:log:144', 'hash': '0x4a49edc626e363054e95476831664d58d87e21511210c68581f6f3fa3291c258', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 795.9934216736182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b26a0b7a883bb1f5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:40:39.000Z'}}, {'blockNum': '0x93d7fe', 'uniqueId': '0x4a49edc626e363054e95476831664d58d87e21511210c68581f6f3fa3291c258:log:150', 'hash': '0x4a49edc626e363054e95476831664d58d87e21511210c68581f6f3fa3291c258', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 795.9934216736182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b26a0b7a883bb1f5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:40:39.000Z'}}, {'blockNum': '0x93d808', 'uniqueId': '0x5feb482ef1d0d3d57b4da7d0ee363dea322e7db7e497545d6163e74ba4a1074e:log:40', 'hash': '0x5feb482ef1d0d3d57b4da7d0ee363dea322e7db7e497545d6163e74ba4a1074e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 795.8486069153529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b249e3b672319241b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:43:13.000Z'}}, {'blockNum': '0x93d808', 'uniqueId': '0x5feb482ef1d0d3d57b4da7d0ee363dea322e7db7e497545d6163e74ba4a1074e:log:46', 'hash': '0x5feb482ef1d0d3d57b4da7d0ee363dea322e7db7e497545d6163e74ba4a1074e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 795.8486069153529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b249e3b672319241b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:43:13.000Z'}}, {'blockNum': '0x93d808', 'uniqueId': '0x794d5d7ec10c9b4f5e31ad6a2c0ef369b781395169c21dd7525bb8ab88ae9101:log:73', 'hash': '0x794d5d7ec10c9b4f5e31ad6a2c0ef369b781395169c21dd7525bb8ab88ae9101', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 7950.523438185419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01aeffad5f59e339db45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:43:13.000Z'}}, {'blockNum': '0x93d808', 'uniqueId': '0x794d5d7ec10c9b4f5e31ad6a2c0ef369b781395169c21dd7525bb8ab88ae9101:log:78', 'hash': '0x794d5d7ec10c9b4f5e31ad6a2c0ef369b781395169c21dd7525bb8ab88ae9101', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 7950.523438185419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01aeffad5f59e339db45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:43:13.000Z'}}, {'blockNum': '0x93d809', 'uniqueId': '0x79010c83fc6df435253b838c14b186ba5eb790f9ad3722fd7b033e481c832535:log:35', 'hash': '0x79010c83fc6df435253b838c14b186ba5eb790f9ad3722fd7b033e481c832535', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1592.4256540516903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5653586753ca16b0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:43:19.000Z'}}, {'blockNum': '0x93d809', 'uniqueId': '0x79010c83fc6df435253b838c14b186ba5eb790f9ad3722fd7b033e481c832535:log:41', 'hash': '0x79010c83fc6df435253b838c14b186ba5eb790f9ad3722fd7b033e481c832535', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1592.4256540516903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5653586753ca16b0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:43:19.000Z'}}, {'blockNum': '0x93d80d', 'uniqueId': '0x158f3a191c07dcb0ba85f0d554d17fa94bd7e4023ff72ef72b081481faea3af4:log:29', 'hash': '0x158f3a191c07dcb0ba85f0d554d17fa94bd7e4023ff72ef72b081481faea3af4', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:44:19.000Z'}}, {'blockNum': '0x93d813', 'uniqueId': '0x305a45a89ec628802d95ef46ce27187979e63bff0295fa1b67f463199a0721a9:log:125', 'hash': '0x305a45a89ec628802d95ef46ce27187979e63bff0295fa1b67f463199a0721a9', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 39.73466316623817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02276de1a05d6cac60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:46:26.000Z'}}, {'blockNum': '0x93d813', 'uniqueId': '0x305a45a89ec628802d95ef46ce27187979e63bff0295fa1b67f463199a0721a9:log:131', 'hash': '0x305a45a89ec628802d95ef46ce27187979e63bff0295fa1b67f463199a0721a9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 39.73466316623817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02276de1a05d6cac60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:46:26.000Z'}}, {'blockNum': '0x93d818', 'uniqueId': '0x5104fa49f5aa7541e139d5f96bdf02fb537f25ffb94b405be302e22a4d79ff11:log:34', 'hash': '0x5104fa49f5aa7541e139d5f96bdf02fb537f25ffb94b405be302e22a4d79ff11', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3017.070061281959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa38e42139d19353a2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:47:40.000Z'}}, {'blockNum': '0x93d818', 'uniqueId': '0x5104fa49f5aa7541e139d5f96bdf02fb537f25ffb94b405be302e22a4d79ff11:log:40', 'hash': '0x5104fa49f5aa7541e139d5f96bdf02fb537f25ffb94b405be302e22a4d79ff11', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 3017.070061281959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa38e42139d19353a2a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:47:40.000Z'}}, {'blockNum': '0x93d818', 'uniqueId': '0x2046f4925b37a79a3e69a3db03b21fa89dd514fedfd416da903adfe77ab92571:log:51', 'hash': '0x2046f4925b37a79a3e69a3db03b21fa89dd514fedfd416da903adfe77ab92571', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1262.845971570453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x447582284c71e70f2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:47:40.000Z'}}, {'blockNum': '0x93d818', 'uniqueId': '0x2046f4925b37a79a3e69a3db03b21fa89dd514fedfd416da903adfe77ab92571:log:57', 'hash': '0x2046f4925b37a79a3e69a3db03b21fa89dd514fedfd416da903adfe77ab92571', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'value': 1262.845971570453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x447582284c71e70f2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:47:40.000Z'}}, {'blockNum': '0x93d81a', 'uniqueId': '0x3f20e29be214dd358a2c39bce38116b2cd211eb723301485afade013f5472158:log:11', 'hash': '0x3f20e29be214dd358a2c39bce38116b2cd211eb723301485afade013f5472158', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3089.1574099308186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa776abc9465034b386', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:48:01.000Z'}}, {'blockNum': '0x93d81a', 'uniqueId': '0x3f20e29be214dd358a2c39bce38116b2cd211eb723301485afade013f5472158:log:17', 'hash': '0x3f20e29be214dd358a2c39bce38116b2cd211eb723301485afade013f5472158', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 3089.1574099308186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa776abc9465034b386', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:48:01.000Z'}}, {'blockNum': '0x93d81b', 'uniqueId': '0x151f2b906adeeae58c696257d5d2349bf90d0799867c94855b7717ca30aa9e19:log:63', 'hash': '0x151f2b906adeeae58c696257d5d2349bf90d0799867c94855b7717ca30aa9e19', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 794.8851991571372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b173f8526b0cab041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:48:05.000Z'}}, {'blockNum': '0x93d81b', 'uniqueId': '0x151f2b906adeeae58c696257d5d2349bf90d0799867c94855b7717ca30aa9e19:log:69', 'hash': '0x151f2b906adeeae58c696257d5d2349bf90d0799867c94855b7717ca30aa9e19', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'value': 794.8851991571372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b173f8526b0cab041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:48:05.000Z'}}, {'blockNum': '0x93d81c', 'uniqueId': '0x99922150155b96b8ed1418aa7a960d129ee930f1ff5912317cc4475fd10f7440:log:59', 'hash': '0x99922150155b96b8ed1418aa7a960d129ee930f1ff5912317cc4475fd10f7440', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 301.8420091520574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105ce63c18a6969ae2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:48:14.000Z'}}, {'blockNum': '0x93d81c', 'uniqueId': '0x99922150155b96b8ed1418aa7a960d129ee930f1ff5912317cc4475fd10f7440:log:65', 'hash': '0x99922150155b96b8ed1418aa7a960d129ee930f1ff5912317cc4475fd10f7440', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 301.8420091520574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x105ce63c18a6969ae2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:48:14.000Z'}}, {'blockNum': '0x93d820', 'uniqueId': '0xff89625add4e4d047169b8048cb39e85aa81f6682e128618413519a7bbf3516a:log:32', 'hash': '0xff89625add4e4d047169b8048cb39e85aa81f6682e128618413519a7bbf3516a', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1.703173709748557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a2e3771858d544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:49:18.000Z'}}, {'blockNum': '0x93d820', 'uniqueId': '0xff89625add4e4d047169b8048cb39e85aa81f6682e128618413519a7bbf3516a:log:38', 'hash': '0xff89625add4e4d047169b8048cb39e85aa81f6682e128618413519a7bbf3516a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 1.703173709748557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a2e3771858d544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:49:18.000Z'}}, {'blockNum': '0x93d824', 'uniqueId': '0x6bf9d632c42f06329630d4bbf9c9739cd3afc1f7ce8f86cab0b595c3f2c34532:log:125', 'hash': '0x6bf9d632c42f06329630d4bbf9c9739cd3afc1f7ce8f86cab0b595c3f2c34532', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 479.68233140863504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a00edfaf342e4b7c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:49:58.000Z'}}, {'blockNum': '0x93d824', 'uniqueId': '0x6bf9d632c42f06329630d4bbf9c9739cd3afc1f7ce8f86cab0b595c3f2c34532:log:131', 'hash': '0x6bf9d632c42f06329630d4bbf9c9739cd3afc1f7ce8f86cab0b595c3f2c34532', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 479.68233140863504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a00edfaf342e4b7c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:49:58.000Z'}}, {'blockNum': '0x93d825', 'uniqueId': '0x42263e6982b0e5c679b1a4dfd12a12670b7e2c579ae0b7b0c6a79594b7f0e50d:log:50', 'hash': '0x42263e6982b0e5c679b1a4dfd12a12670b7e2c579ae0b7b0c6a79594b7f0e50d', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:50:06.000Z'}}, {'blockNum': '0x93d82b', 'uniqueId': '0x3a9c57e01b7b6036998dbbaf479e6667f18b1a91b62041b3bf1dc353bd326372:log:56', 'hash': '0x3a9c57e01b7b6036998dbbaf479e6667f18b1a91b62041b3bf1dc353bd326372', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1602.7480806657504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56e29907a4692ce91b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:51:43.000Z'}}, {'blockNum': '0x93d82b', 'uniqueId': '0x3a9c57e01b7b6036998dbbaf479e6667f18b1a91b62041b3bf1dc353bd326372:log:62', 'hash': '0x3a9c57e01b7b6036998dbbaf479e6667f18b1a91b62041b3bf1dc353bd326372', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1602.7480806657504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x56e29907a4692ce91b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:51:43.000Z'}}, {'blockNum': '0x93d82c', 'uniqueId': '0xbdb07303efbb5367b9b27a48ea8ea70e7987777b2db55d3e173d824b0b173b8f:log:17', 'hash': '0xbdb07303efbb5367b9b27a48ea8ea70e7987777b2db55d3e173d824b0b173b8f', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2283.0394893063794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bc3899f7667f534e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:51:47.000Z'}}, {'blockNum': '0x93d82c', 'uniqueId': '0xbdb07303efbb5367b9b27a48ea8ea70e7987777b2db55d3e173d824b0b173b8f:log:23', 'hash': '0xbdb07303efbb5367b9b27a48ea8ea70e7987777b2db55d3e173d824b0b173b8f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2283.0394893063794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bc3899f7667f534e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:51:47.000Z'}}, {'blockNum': '0x93d82d', 'uniqueId': '0xa389b2b566c16ce00e2751e620ac12e69afa49ee9aad8b778437fae656f95422:log:130', 'hash': '0xa389b2b566c16ce00e2751e620ac12e69afa49ee9aad8b778437fae656f95422', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 795.5877069222278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b20ff543dcef92db6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:51:53.000Z'}}, {'blockNum': '0x93d82d', 'uniqueId': '0xa389b2b566c16ce00e2751e620ac12e69afa49ee9aad8b778437fae656f95422:log:136', 'hash': '0xa389b2b566c16ce00e2751e620ac12e69afa49ee9aad8b778437fae656f95422', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'value': 795.5877069222278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b20ff543dcef92db6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:51:53.000Z'}}, {'blockNum': '0x93d844', 'uniqueId': '0x2423017fb9d8f800894452b0fa48d7fb7f5347ee5844d6cd777066e60e993775:log:81', 'hash': '0x2423017fb9d8f800894452b0fa48d7fb7f5347ee5844d6cd777066e60e993775', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 519.578669530899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c2a9a3f17b34eee0b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:56:16.000Z'}}, {'blockNum': '0x93d844', 'uniqueId': '0x2423017fb9d8f800894452b0fa48d7fb7f5347ee5844d6cd777066e60e993775:log:87', 'hash': '0x2423017fb9d8f800894452b0fa48d7fb7f5347ee5844d6cd777066e60e993775', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'value': 519.578669530899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c2a9a3f17b34eee0b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:56:16.000Z'}}, {'blockNum': '0x93d853', 'uniqueId': '0x817b3f45d60354412c4a1e61f27214a2f1a83b62a0250a687014760a18f2dace:log:90', 'hash': '0x817b3f45d60354412c4a1e61f27214a2f1a83b62a0250a687014760a18f2dace', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2234.73345681055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7925281ed8098ea501', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:58:34.000Z'}}, {'blockNum': '0x93d853', 'uniqueId': '0x817b3f45d60354412c4a1e61f27214a2f1a83b62a0250a687014760a18f2dace:log:96', 'hash': '0x817b3f45d60354412c4a1e61f27214a2f1a83b62a0250a687014760a18f2dace', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 2234.73345681055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7925281ed8098ea501', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:58:34.000Z'}}, {'blockNum': '0x93d858', 'uniqueId': '0xcdebd5ef4d297f4e28d8ccd72ed4a35bf9eca0ddb9b71b26ac81211fb3426bf5:log:25', 'hash': '0xcdebd5ef4d297f4e28d8ccd72ed4a35bf9eca0ddb9b71b26ac81211fb3426bf5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab55c1e4664c20914be798ae4f0c17961e79286f', 'value': 311.21796814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10df04551eaf897800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T12:59:23.000Z'}}, {'blockNum': '0x93d85e', 'uniqueId': '0x1f2c15b4b91d16d36994894c7a88798859df1a8808e5f5d6e63116c47094c247:log:257', 'hash': '0x1f2c15b4b91d16d36994894c7a88798859df1a8808e5f5d6e63116c47094c247', 'from': '0x019c199f89b8a374e87b70597bbca748ac084587', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 11443.070904145196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026c54828754fe69e7c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:00:50.000Z'}}, {'blockNum': '0x93d862', 'uniqueId': '0x830769efb12d834d75adba92ee5ae7f3ab50972e9c8e85aa32dfa61c8a28b431:log:120', 'hash': '0x830769efb12d834d75adba92ee5ae7f3ab50972e9c8e85aa32dfa61c8a28b431', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 643.1795876435119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22dde8eb4011c09e18', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:01:50.000Z'}}, {'blockNum': '0x93d862', 'uniqueId': '0x830769efb12d834d75adba92ee5ae7f3ab50972e9c8e85aa32dfa61c8a28b431:log:126', 'hash': '0x830769efb12d834d75adba92ee5ae7f3ab50972e9c8e85aa32dfa61c8a28b431', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 643.1795876435119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22dde8eb4011c09e18', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:01:50.000Z'}}, {'blockNum': '0x93d863', 'uniqueId': '0xff8d65098672475910ae804fe2dfdd39247a698cbbab4cc2012850bdd5d7d3b5:log:72', 'hash': '0xff8d65098672475910ae804fe2dfdd39247a698cbbab4cc2012850bdd5d7d3b5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 7707.494097702968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a1d2f7b5ce9553fb26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:01:55.000Z'}}, {'blockNum': '0x93d863', 'uniqueId': '0xff8d65098672475910ae804fe2dfdd39247a698cbbab4cc2012850bdd5d7d3b5:log:77', 'hash': '0xff8d65098672475910ae804fe2dfdd39247a698cbbab4cc2012850bdd5d7d3b5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 7707.494097702968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a1d2f7b5ce9553fb26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:01:55.000Z'}}, {'blockNum': '0x93d863', 'uniqueId': '0xff8d65098672475910ae804fe2dfdd39247a698cbbab4cc2012850bdd5d7d3b5:log:78', 'hash': '0xff8d65098672475910ae804fe2dfdd39247a698cbbab4cc2012850bdd5d7d3b5', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 7706.723348293198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a1c845754d6920a4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:01:55.000Z'}}, {'blockNum': '0x93d863', 'uniqueId': '0xff8d65098672475910ae804fe2dfdd39247a698cbbab4cc2012850bdd5d7d3b5:log:80', 'hash': '0xff8d65098672475910ae804fe2dfdd39247a698cbbab4cc2012850bdd5d7d3b5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x019c199f89b8a374e87b70597bbca748ac084587', 'value': 7706.723348293198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a1c845754d6920a4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:01:55.000Z'}}, {'blockNum': '0x93d867', 'uniqueId': '0x823f978690fae23ec8d8398b5001e7ad8da639294dfb5ebb72b7d8dc2de02669:log:17', 'hash': '0x823f978690fae23ec8d8398b5001e7ad8da639294dfb5ebb72b7d8dc2de02669', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1128.7203998350378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d3024676ed84eb721', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:02:18.000Z'}}, {'blockNum': '0x93d867', 'uniqueId': '0x823f978690fae23ec8d8398b5001e7ad8da639294dfb5ebb72b7d8dc2de02669:log:23', 'hash': '0x823f978690fae23ec8d8398b5001e7ad8da639294dfb5ebb72b7d8dc2de02669', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1128.7203998350378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d3024676ed84eb721', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:02:18.000Z'}}, {'blockNum': '0x93d867', 'uniqueId': '0x62821580dd848df1a5694f3a878a7741212e8cb686654951a4173af7bb0917d9:log:62', 'hash': '0x62821580dd848df1a5694f3a878a7741212e8cb686654951a4173af7bb0917d9', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4.169493879166935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dd049798e920b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:02:18.000Z'}}, {'blockNum': '0x93d867', 'uniqueId': '0x62821580dd848df1a5694f3a878a7741212e8cb686654951a4173af7bb0917d9:log:68', 'hash': '0x62821580dd848df1a5694f3a878a7741212e8cb686654951a4173af7bb0917d9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 4.169493879166935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dd049798e920b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:02:18.000Z'}}, {'blockNum': '0x93d86a', 'uniqueId': '0xe40b130da4e5ae4265466c54843d41b617b458e77c79c1826b43da6bf620c1e9:log:162', 'hash': '0xe40b130da4e5ae4265466c54843d41b617b458e77c79c1826b43da6bf620c1e9', 'from': '0x019c199f89b8a374e87b70597bbca748ac084587', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 6865.8425424871175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x017432b4b7996572be43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:02:35.000Z'}}, {'blockNum': '0x93d879', 'uniqueId': '0x2955ad1748ea71c8b82ef52f025d6362d011f93150d0c14420d1249270466c83:log:124', 'hash': '0x2955ad1748ea71c8b82ef52f025d6362d011f93150d0c14420d1249270466c83', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 13224.19634798612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02cce29741b2c2bb693a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:07:46.000Z'}}, {'blockNum': '0x93d879', 'uniqueId': '0x2955ad1748ea71c8b82ef52f025d6362d011f93150d0c14420d1249270466c83:log:129', 'hash': '0x2955ad1748ea71c8b82ef52f025d6362d011f93150d0c14420d1249270466c83', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 13224.19634798612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02cce29741b2c2bb693a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:07:46.000Z'}}, {'blockNum': '0x93d879', 'uniqueId': '0x2955ad1748ea71c8b82ef52f025d6362d011f93150d0c14420d1249270466c83:log:130', 'hash': '0x2955ad1748ea71c8b82ef52f025d6362d011f93150d0c14420d1249270466c83', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 13222.873928351322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ccd03d140c028f1a9f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:07:46.000Z'}}, {'blockNum': '0x93d879', 'uniqueId': '0x2955ad1748ea71c8b82ef52f025d6362d011f93150d0c14420d1249270466c83:log:132', 'hash': '0x2955ad1748ea71c8b82ef52f025d6362d011f93150d0c14420d1249270466c83', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x019c199f89b8a374e87b70597bbca748ac084587', 'value': 13222.873928351322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ccd03d140c028f1a9f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:07:46.000Z'}}, {'blockNum': '0x93d87b', 'uniqueId': '0x3f79f6106564e9996887ed90adc07cb2bfda70610061fd02ee45a715fe843e1e:log:57', 'hash': '0x3f79f6106564e9996887ed90adc07cb2bfda70610061fd02ee45a715fe843e1e', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 491.01861250672584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e408a8bf891dcf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:08:21.000Z'}}, {'blockNum': '0x93d87b', 'uniqueId': '0x3f79f6106564e9996887ed90adc07cb2bfda70610061fd02ee45a715fe843e1e:log:63', 'hash': '0x3f79f6106564e9996887ed90adc07cb2bfda70610061fd02ee45a715fe843e1e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 491.01861250672584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e408a8bf891dcf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:08:21.000Z'}}, {'blockNum': '0x93d87f', 'uniqueId': '0x6430ee7d6e4521cca098f827b18d754125f73e4d4f7ad8ca2aaf7ac037fad42d:log:15', 'hash': '0x6430ee7d6e4521cca098f827b18d754125f73e4d4f7ad8ca2aaf7ac037fad42d', 'from': '0x019c199f89b8a374e87b70597bbca748ac084587', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 9154.456723316156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f0439b9f7731ee5304', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:08:46.000Z'}}, {'blockNum': '0x93d885', 'uniqueId': '0x269123cb4b200254125c20ce52d2acf17e201abe113d7df7a4ddad77bbd4342d:log:40', 'hash': '0x269123cb4b200254125c20ce52d2acf17e201abe113d7df7a4ddad77bbd4342d', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 471.8349664436552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1994068a177a6c62e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:10:30.000Z'}}, {'blockNum': '0x93d885', 'uniqueId': '0x269123cb4b200254125c20ce52d2acf17e201abe113d7df7a4ddad77bbd4342d:log:46', 'hash': '0x269123cb4b200254125c20ce52d2acf17e201abe113d7df7a4ddad77bbd4342d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 471.8349664436552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1994068a177a6c62e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:10:30.000Z'}}, {'blockNum': '0x93d892', 'uniqueId': '0x89f5baab9b5f337dd8f82fd41f12daf94c4a642ea4e530694cf769cd97d336cc:log:124', 'hash': '0x89f5baab9b5f337dd8f82fd41f12daf94c4a642ea4e530694cf769cd97d336cc', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 730.9823695636567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27a06b10352311ce74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:12:12.000Z'}}, {'blockNum': '0x93d892', 'uniqueId': '0x89f5baab9b5f337dd8f82fd41f12daf94c4a642ea4e530694cf769cd97d336cc:log:130', 'hash': '0x89f5baab9b5f337dd8f82fd41f12daf94c4a642ea4e530694cf769cd97d336cc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 730.9823695636567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27a06b10352311ce74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:12:12.000Z'}}, {'blockNum': '0x93d895', 'uniqueId': '0xe8bd815c73582a024b83a52629c1027fd7402e9c6b1543481e43303d71539d5d:log:125', 'hash': '0xe8bd815c73582a024b83a52629c1027fd7402e9c6b1543481e43303d71539d5d', 'from': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1206.7881513195002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x416b8cc5c99527a5ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:13:50.000Z'}}, {'blockNum': '0x93d895', 'uniqueId': '0xe8bd815c73582a024b83a52629c1027fd7402e9c6b1543481e43303d71539d5d:log:131', 'hash': '0xe8bd815c73582a024b83a52629c1027fd7402e9c6b1543481e43303d71539d5d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1206.7881513195002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x416b8cc5c99527a5ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:13:50.000Z'}}, {'blockNum': '0x93d895', 'uniqueId': '0x6efb261221e464dd490d2428aa31947324a51016654b9be4e9b588eb86c3491f:log:143', 'hash': '0x6efb261221e464dd490d2428aa31947324a51016654b9be4e9b588eb86c3491f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 111.08622306295295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0605a18b50d31dd29a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:13:50.000Z'}}, {'blockNum': '0x93d895', 'uniqueId': '0x6efb261221e464dd490d2428aa31947324a51016654b9be4e9b588eb86c3491f:log:149', 'hash': '0x6efb261221e464dd490d2428aa31947324a51016654b9be4e9b588eb86c3491f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 111.08622306295295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0605a18b50d31dd29a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:13:50.000Z'}}, {'blockNum': '0x93d897', 'uniqueId': '0xddb4ac51dc407d5f585d7924a29c575ec62eed43e661f46de9459e060dc069ac:log:53', 'hash': '0xddb4ac51dc407d5f585d7924a29c575ec62eed43e661f46de9459e060dc069ac', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1052.806675438378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3912a0ad4d687ed38a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:14:01.000Z'}}, {'blockNum': '0x93d897', 'uniqueId': '0xddb4ac51dc407d5f585d7924a29c575ec62eed43e661f46de9459e060dc069ac:log:59', 'hash': '0xddb4ac51dc407d5f585d7924a29c575ec62eed43e661f46de9459e060dc069ac', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1052.806675438378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3912a0ad4d687ed38a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:14:01.000Z'}}, {'blockNum': '0x93d899', 'uniqueId': '0x3ec7d1fb4f8efbff9d6f0e763be39715b2b61b1472ede52f7adefe112316ec0c:log:51', 'hash': '0x3ec7d1fb4f8efbff9d6f0e763be39715b2b61b1472ede52f7adefe112316ec0c', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 3586.665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc26ef9ce88ce6a8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:14:22.000Z'}}, {'blockNum': '0x93d89a', 'uniqueId': '0xed80a5c831cebdfc5b21de31a7d6a5e76804764b9487c4bc73f8bd89e3e80c97:log:125', 'hash': '0xed80a5c831cebdfc5b21de31a7d6a5e76804764b9487c4bc73f8bd89e3e80c97', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 3587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc2739ff7426e2c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:14:24.000Z'}}, {'blockNum': '0x93d8a7', 'uniqueId': '0xf754725ea0019bcc3e1ee8af69e10a505b3bf3d9ea04e378b7e82defe8ed9d59:log:43', 'hash': '0xf754725ea0019bcc3e1ee8af69e10a505b3bf3d9ea04e378b7e82defe8ed9d59', 'from': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5.363687294054814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a6fa52d0869d233', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:16:37.000Z'}}, {'blockNum': '0x93d8a7', 'uniqueId': '0xf754725ea0019bcc3e1ee8af69e10a505b3bf3d9ea04e378b7e82defe8ed9d59:log:49', 'hash': '0xf754725ea0019bcc3e1ee8af69e10a505b3bf3d9ea04e378b7e82defe8ed9d59', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 5.363687294054814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a6fa52d0869d233', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:16:37.000Z'}}, {'blockNum': '0x93d8c1', 'uniqueId': '0xcc2cb65f5c876ea6afc7d41ff0753508bb7f98d39758ae447d1a61281f389e6d:log:116', 'hash': '0xcc2cb65f5c876ea6afc7d41ff0753508bb7f98d39758ae447d1a61281f389e6d', 'from': '0x89f26fff3f690b19057e6beb7a82c5c29adfe20b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 729.4657237435063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x278b5edadea2ebb009', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:20:24.000Z'}}, {'blockNum': '0x93d8c1', 'uniqueId': '0xcc2cb65f5c876ea6afc7d41ff0753508bb7f98d39758ae447d1a61281f389e6d:log:122', 'hash': '0xcc2cb65f5c876ea6afc7d41ff0753508bb7f98d39758ae447d1a61281f389e6d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 729.4657237435063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x278b5edadea2ebb009', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:20:24.000Z'}}, {'blockNum': '0x93d8e5', 'uniqueId': '0x76fe39564240840b046a2eaa4736b6eee1d93dfce1134849e62684311db835a7:log:107', 'hash': '0x76fe39564240840b046a2eaa4736b6eee1d93dfce1134849e62684311db835a7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 396.1629372681784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1579dd7c7bf52238be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:29:22.000Z'}}, {'blockNum': '0x93d8e5', 'uniqueId': '0x76fe39564240840b046a2eaa4736b6eee1d93dfce1134849e62684311db835a7:log:113', 'hash': '0x76fe39564240840b046a2eaa4736b6eee1d93dfce1134849e62684311db835a7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'value': 396.1629372681784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1579dd7c7bf52238be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:29:22.000Z'}}, {'blockNum': '0x93d8e7', 'uniqueId': '0x0513072f5d1dd07419bad420b953c7768bfda48d04c1a8279fe6a72dd50407e1:log:45', 'hash': '0x0513072f5d1dd07419bad420b953c7768bfda48d04c1a8279fe6a72dd50407e1', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 744.4008694531908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x285aa326c3495ea344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:29:55.000Z'}}, {'blockNum': '0x93d8e7', 'uniqueId': '0x0513072f5d1dd07419bad420b953c7768bfda48d04c1a8279fe6a72dd50407e1:log:49', 'hash': '0x0513072f5d1dd07419bad420b953c7768bfda48d04c1a8279fe6a72dd50407e1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 744.4008694531908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x285aa326c3495ea344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:29:55.000Z'}}, {'blockNum': '0x93d8ea', 'uniqueId': '0x2bae2e86d52e18913ab1a5d5a93a6de066faede65d341bfc98b3ef54e14d8809:log:128', 'hash': '0x2bae2e86d52e18913ab1a5d5a93a6de066faede65d341bfc98b3ef54e14d8809', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 201.2749465548548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ae940417dc3da711e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:30:46.000Z'}}, {'blockNum': '0x93d8ea', 'uniqueId': '0x2bae2e86d52e18913ab1a5d5a93a6de066faede65d341bfc98b3ef54e14d8809:log:134', 'hash': '0x2bae2e86d52e18913ab1a5d5a93a6de066faede65d341bfc98b3ef54e14d8809', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 201.2749465548548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ae940417dc3da711e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:30:46.000Z'}}, {'blockNum': '0x93d8ec', 'uniqueId': '0x2d6c3f5ac6e2679d5421deb74c7235f8eba4c4d6b81030836981f31f5ae05af3:log:141', 'hash': '0x2d6c3f5ac6e2679d5421deb74c7235f8eba4c4d6b81030836981f31f5ae05af3', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 299.80772234406356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040aaff05c4d9db53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:31:01.000Z'}}, {'blockNum': '0x93d8ec', 'uniqueId': '0x2d6c3f5ac6e2679d5421deb74c7235f8eba4c4d6b81030836981f31f5ae05af3:log:147', 'hash': '0x2d6c3f5ac6e2679d5421deb74c7235f8eba4c4d6b81030836981f31f5ae05af3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 299.80772234406356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1040aaff05c4d9db53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:31:01.000Z'}}, {'blockNum': '0x93d8f5', 'uniqueId': '0x1e97d0b93bdba73c94d50543073d3749fe8787ad456916d56553dbacf7a5302c:log:111', 'hash': '0x1e97d0b93bdba73c94d50543073d3749fe8787ad456916d56553dbacf7a5302c', 'from': '0xbdc7310289dcd30d16e284d6f207a8e2f76a37ad', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 36.18550945518663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f62cc12164f01609', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:32:37.000Z'}}, {'blockNum': '0x93d8f5', 'uniqueId': '0x1e97d0b93bdba73c94d50543073d3749fe8787ad456916d56553dbacf7a5302c:log:117', 'hash': '0x1e97d0b93bdba73c94d50543073d3749fe8787ad456916d56553dbacf7a5302c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 36.18550945518663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f62cc12164f01609', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:32:37.000Z'}}, {'blockNum': '0x93d8f7', 'uniqueId': '0x535bdd16821d17c8620ff8a267e5b39172d7d78ecb9aa28755b8625cdd969f0f:log:69', 'hash': '0x535bdd16821d17c8620ff8a267e5b39172d7d78ecb9aa28755b8625cdd969f0f', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1808.5644403979416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x620adfa05b5a6ea364', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:33:02.000Z'}}, {'blockNum': '0x93d8f7', 'uniqueId': '0x535bdd16821d17c8620ff8a267e5b39172d7d78ecb9aa28755b8625cdd969f0f:log:75', 'hash': '0x535bdd16821d17c8620ff8a267e5b39172d7d78ecb9aa28755b8625cdd969f0f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1808.5644403979416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x620adfa05b5a6ea364', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:33:02.000Z'}}, {'blockNum': '0x93d90d', 'uniqueId': '0x04431b25f188975d78719a88fe30487163109f951943b550cf15350ea380a338:log:33', 'hash': '0x04431b25f188975d78719a88fe30487163109f951943b550cf15350ea380a338', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 100.68712316360438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057550850dd6a4fce5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:39:17.000Z'}}, {'blockNum': '0x93d90d', 'uniqueId': '0x04431b25f188975d78719a88fe30487163109f951943b550cf15350ea380a338:log:39', 'hash': '0x04431b25f188975d78719a88fe30487163109f951943b550cf15350ea380a338', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 100.68712316360438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057550850dd6a4fce5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:39:17.000Z'}}, {'blockNum': '0x93d91b', 'uniqueId': '0x98c12c46e81461d75292c0463326b129fcd087aea69deee17e02d32bf06213bd:log:127', 'hash': '0x98c12c46e81461d75292c0463326b129fcd087aea69deee17e02d32bf06213bd', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 455.5311827889181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18b1c3dd3d26ffc119', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:43:28.000Z'}}, {'blockNum': '0x93d91b', 'uniqueId': '0x98c12c46e81461d75292c0463326b129fcd087aea69deee17e02d32bf06213bd:log:133', 'hash': '0x98c12c46e81461d75292c0463326b129fcd087aea69deee17e02d32bf06213bd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'value': 455.5311827889181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18b1c3dd3d26ffc119', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:43:28.000Z'}}, {'blockNum': '0x93d91d', 'uniqueId': '0xca98bd0c101a99dc8d7ffdb73991a2762d68dae4dafaf1b3a95d315d395b9758:log:56', 'hash': '0xca98bd0c101a99dc8d7ffdb73991a2762d68dae4dafaf1b3a95d315d395b9758', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 213.8696392780731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b980997cb227a3c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:43:54.000Z'}}, {'blockNum': '0x93d91d', 'uniqueId': '0xca98bd0c101a99dc8d7ffdb73991a2762d68dae4dafaf1b3a95d315d395b9758:log:62', 'hash': '0xca98bd0c101a99dc8d7ffdb73991a2762d68dae4dafaf1b3a95d315d395b9758', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 213.8696392780731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b980997cb227a3c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:43:54.000Z'}}, {'blockNum': '0x93d921', 'uniqueId': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f:log:73', 'hash': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1214.2405732027007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41d2f918016dac00e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:44:47.000Z'}}, {'blockNum': '0x93d921', 'uniqueId': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f:log:78', 'hash': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 1214.2405732027007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41d2f918016dac00e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:44:47.000Z'}}, {'blockNum': '0x93d921', 'uniqueId': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f:log:79', 'hash': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1214.1191491453803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41d149b57801e917e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:44:47.000Z'}}, {'blockNum': '0x93d921', 'uniqueId': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f:log:81', 'hash': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1214.1191491453803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41d149b57801e917e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:44:47.000Z'}}, {'blockNum': '0x93d921', 'uniqueId': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f:log:85', 'hash': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1214.1191491453803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41d149b57801e917e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:44:47.000Z'}}, {'blockNum': '0x93d921', 'uniqueId': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f:log:87', 'hash': '0x27f2c69f05e41174abb2f178890208453c9402461994f7c4d844e4047cca929f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 1214.1191491453803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41d149b57801e917e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:44:47.000Z'}}, {'blockNum': '0x93d922', 'uniqueId': '0xea7d6575b48a1c2fc3613715864922ff0c9de9f33364fc534e80ed88f44c639c:log:91', 'hash': '0xea7d6575b48a1c2fc3613715864922ff0c9de9f33364fc534e80ed88f44c639c', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1389.6613264368116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4b556ccda72c4e5cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:44:51.000Z'}}, {'blockNum': '0x93d922', 'uniqueId': '0xea7d6575b48a1c2fc3613715864922ff0c9de9f33364fc534e80ed88f44c639c:log:97', 'hash': '0xea7d6575b48a1c2fc3613715864922ff0c9de9f33364fc534e80ed88f44c639c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1389.6613264368116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4b556ccda72c4e5cab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:44:51.000Z'}}, {'blockNum': '0x93d92c', 'uniqueId': '0xbd8ba838479f50154753b70496f11e50fca29834d990ec30879942e8bd263df0:log:91', 'hash': '0xbd8ba838479f50154753b70496f11e50fca29834d990ec30879942e8bd263df0', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1045.6375443464735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38af22ce8ed751ea5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:47:40.000Z'}}, {'blockNum': '0x93d92c', 'uniqueId': '0xbd8ba838479f50154753b70496f11e50fca29834d990ec30879942e8bd263df0:log:97', 'hash': '0xbd8ba838479f50154753b70496f11e50fca29834d990ec30879942e8bd263df0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1045.6375443464735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38af22ce8ed751ea5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:47:40.000Z'}}, {'blockNum': '0x93d938', 'uniqueId': '0x5ca07b27a7c311d983e9f7a7a25156e38d32f4d5f33f7de3094c8ea02e9312c9:log:65', 'hash': '0x5ca07b27a7c311d983e9f7a7a25156e38d32f4d5f33f7de3094c8ea02e9312c9', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 814.7866547696879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c2b6fb1969c15649f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:49:43.000Z'}}, {'blockNum': '0x93d938', 'uniqueId': '0x5ca07b27a7c311d983e9f7a7a25156e38d32f4d5f33f7de3094c8ea02e9312c9:log:71', 'hash': '0x5ca07b27a7c311d983e9f7a7a25156e38d32f4d5f33f7de3094c8ea02e9312c9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 814.7866547696879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c2b6fb1969c15649f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:49:43.000Z'}}, {'blockNum': '0x93d93c', 'uniqueId': '0x9a0b10cfa84228653527cfbac99bcebc23b70879b7ebe65b4397838edaf2a049:log:63', 'hash': '0x9a0b10cfa84228653527cfbac99bcebc23b70879b7ebe65b4397838edaf2a049', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1317.5301386241208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x476c67588139e383b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:50:44.000Z'}}, {'blockNum': '0x93d93c', 'uniqueId': '0x9a0b10cfa84228653527cfbac99bcebc23b70879b7ebe65b4397838edaf2a049:log:69', 'hash': '0x9a0b10cfa84228653527cfbac99bcebc23b70879b7ebe65b4397838edaf2a049', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 1317.5301386241208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x476c67588139e383b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:50:44.000Z'}}, {'blockNum': '0x93d93e', 'uniqueId': '0xa6f4b2302678a517376ca2afadc96a9286e55b4e399fb207edfe81dc57dfbd7f:log:12', 'hash': '0xa6f4b2302678a517376ca2afadc96a9286e55b4e399fb207edfe81dc57dfbd7f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 385.56446729208966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14e6c82831adb9140c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:51:14.000Z'}}, {'blockNum': '0x93d93e', 'uniqueId': '0xa6f4b2302678a517376ca2afadc96a9286e55b4e399fb207edfe81dc57dfbd7f:log:18', 'hash': '0xa6f4b2302678a517376ca2afadc96a9286e55b4e399fb207edfe81dc57dfbd7f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 385.56446729208966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14e6c82831adb9140c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:51:14.000Z'}}, {'blockNum': '0x93d944', 'uniqueId': '0xe107f30cf980963b49b58ce55a417601e3f0ee265f97359a83f13ff0a2648312:log:49', 'hash': '0xe107f30cf980963b49b58ce55a417601e3f0ee265f97359a83f13ff0a2648312', 'from': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 20.23590631238933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0118d46193a20cfea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:52:08.000Z'}}, {'blockNum': '0x93d944', 'uniqueId': '0xe107f30cf980963b49b58ce55a417601e3f0ee265f97359a83f13ff0a2648312:log:55', 'hash': '0xe107f30cf980963b49b58ce55a417601e3f0ee265f97359a83f13ff0a2648312', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 20.23590631238933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0118d46193a20cfea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:52:08.000Z'}}, {'blockNum': '0x93d949', 'uniqueId': '0x3202251b23530af92a08a2c0cd74ac5b40834eff7fb9e3e36d719e2aba45c186:log:9', 'hash': '0x3202251b23530af92a08a2c0cd74ac5b40834eff7fb9e3e36d719e2aba45c186', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3493.162876133296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbd5d5f8845eaf21244', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:54:11.000Z'}}, {'blockNum': '0x93d949', 'uniqueId': '0x3202251b23530af92a08a2c0cd74ac5b40834eff7fb9e3e36d719e2aba45c186:log:15', 'hash': '0x3202251b23530af92a08a2c0cd74ac5b40834eff7fb9e3e36d719e2aba45c186', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 3493.162876133296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbd5d5f8845eaf21244', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:54:11.000Z'}}, {'blockNum': '0x93d94e', 'uniqueId': '0x7531ed03a7f2657b9182168381637bd458faa0ee4901d9d0bc8cb16a9f51fcd7:log:31', 'hash': '0x7531ed03a7f2657b9182168381637bd458faa0ee4901d9d0bc8cb16a9f51fcd7', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1157.2676839839157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ebc50bb1dcc5172ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:55:04.000Z'}}, {'blockNum': '0x93d94e', 'uniqueId': '0x7531ed03a7f2657b9182168381637bd458faa0ee4901d9d0bc8cb16a9f51fcd7:log:37', 'hash': '0x7531ed03a7f2657b9182168381637bd458faa0ee4901d9d0bc8cb16a9f51fcd7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1157.2676839839157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3ebc50bb1dcc5172ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:55:04.000Z'}}, {'blockNum': '0x93d94f', 'uniqueId': '0xf87b6db6ffd01542fdce6a1f742ec73b3e5f96818f48fd19f49691be59a43eaf:log:46', 'hash': '0xf87b6db6ffd01542fdce6a1f742ec73b3e5f96818f48fd19f49691be59a43eaf', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1584.8024674244514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55e98d677aacfd8d10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:55:14.000Z'}}, {'blockNum': '0x93d94f', 'uniqueId': '0xf87b6db6ffd01542fdce6a1f742ec73b3e5f96818f48fd19f49691be59a43eaf:log:52', 'hash': '0xf87b6db6ffd01542fdce6a1f742ec73b3e5f96818f48fd19f49691be59a43eaf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 1584.8024674244514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55e98d677aacfd8d10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:55:14.000Z'}}, {'blockNum': '0x93d95a', 'uniqueId': '0xca3123307ec49248a8ba0070d55358adb0d00d59ac0a14d0fb90b9eee0eed5f4:log:76', 'hash': '0xca3123307ec49248a8ba0070d55358adb0d00d59ac0a14d0fb90b9eee0eed5f4', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 28.458845956310213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018af2219da76ea47b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:57:24.000Z'}}, {'blockNum': '0x93d95a', 'uniqueId': '0xca3123307ec49248a8ba0070d55358adb0d00d59ac0a14d0fb90b9eee0eed5f4:log:82', 'hash': '0xca3123307ec49248a8ba0070d55358adb0d00d59ac0a14d0fb90b9eee0eed5f4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf1e5267a747a6504bc93b88556f57eb02f742451', 'value': 28.458845956310213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018af2219da76ea47b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:57:24.000Z'}}, {'blockNum': '0x93d95e', 'uniqueId': '0x4d806e49e20b10e107e71e5875fd979fa2957ad2436763efb886f104533e2511:log:105', 'hash': '0x4d806e49e20b10e107e71e5875fd979fa2957ad2436763efb886f104533e2511', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 800.3083197919758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b628250a2b6701866', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:57:51.000Z'}}, {'blockNum': '0x93d95e', 'uniqueId': '0x4d806e49e20b10e107e71e5875fd979fa2957ad2436763efb886f104533e2511:log:111', 'hash': '0x4d806e49e20b10e107e71e5875fd979fa2957ad2436763efb886f104533e2511', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 800.3083197919758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b628250a2b6701866', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:57:51.000Z'}}, {'blockNum': '0x93d962', 'uniqueId': '0x6ab98aee83719363b6641f8451a511ec75bd02fae4840baf9770de900fc69e04:log:49', 'hash': '0x6ab98aee83719363b6641f8451a511ec75bd02fae4840baf9770de900fc69e04', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 720.2723199184521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x270bc952ccaddaca3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:58:45.000Z'}}, {'blockNum': '0x93d962', 'uniqueId': '0x6ab98aee83719363b6641f8451a511ec75bd02fae4840baf9770de900fc69e04:log:55', 'hash': '0x6ab98aee83719363b6641f8451a511ec75bd02fae4840baf9770de900fc69e04', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 720.2723199184521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x270bc952ccaddaca3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T13:58:45.000Z'}}, {'blockNum': '0x93d968', 'uniqueId': '0x62096313d01673b7d23693b0c88eff7a33b92952555d67db5faf5f91dccd67b7:log:41', 'hash': '0x62096313d01673b7d23693b0c88eff7a33b92952555d67db5faf5f91dccd67b7', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1134.6179801959834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d81fcd18648c88ff7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:00:21.000Z'}}, {'blockNum': '0x93d968', 'uniqueId': '0x62096313d01673b7d23693b0c88eff7a33b92952555d67db5faf5f91dccd67b7:log:47', 'hash': '0x62096313d01673b7d23693b0c88eff7a33b92952555d67db5faf5f91dccd67b7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1134.6179801959834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d81fcd18648c88ff7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:00:21.000Z'}}, {'blockNum': '0x93d974', 'uniqueId': '0x347f82941c55a2012d3f5c4abbfe337395979953ec4022baef6414f285bd0dc6:log:94', 'hash': '0x347f82941c55a2012d3f5c4abbfe337395979953ec4022baef6414f285bd0dc6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 911.5541576602996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x316a5aecc56892a6a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:02:12.000Z'}}, {'blockNum': '0x93d974', 'uniqueId': '0x347f82941c55a2012d3f5c4abbfe337395979953ec4022baef6414f285bd0dc6:log:100', 'hash': '0x347f82941c55a2012d3f5c4abbfe337395979953ec4022baef6414f285bd0dc6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'value': 911.5541576602996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x316a5aecc56892a6a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:02:12.000Z'}}, {'blockNum': '0x93d976', 'uniqueId': '0x0c159ed37ca0caaf31ea6940fa2584f2425441e2049fa2033c63ce40cb1aa62b:log:19', 'hash': '0x0c159ed37ca0caaf31ea6940fa2584f2425441e2049fa2033c63ce40cb1aa62b', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 440.9056494564033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e6cb88298fd1744b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:02:40.000Z'}}, {'blockNum': '0x93d976', 'uniqueId': '0x0c159ed37ca0caaf31ea6940fa2584f2425441e2049fa2033c63ce40cb1aa62b:log:25', 'hash': '0x0c159ed37ca0caaf31ea6940fa2584f2425441e2049fa2033c63ce40cb1aa62b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 440.9056494564033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e6cb88298fd1744b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:02:40.000Z'}}, {'blockNum': '0x93d97d', 'uniqueId': '0x7daf811769bcb0b8b38b22b77d5e7f604985f8babac28840a1e64f3ebdbfbceb:log:39', 'hash': '0x7daf811769bcb0b8b38b22b77d5e7f604985f8babac28840a1e64f3ebdbfbceb', 'from': '0x42a3768887259302c70a9d2e0bc1ee6c7bb19b10', 'to': '0x86c02430020678f747e5d92d1de4e217ab335866', 'value': 85.39737355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04a1206ac9ff16cc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:04:50.000Z'}}, {'blockNum': '0x93d981', 'uniqueId': '0x6ee8774f8e48ccd120924303515bc4dd7aeca7c8293a79490aa2871b1182a4ef:log:73', 'hash': '0x6ee8774f8e48ccd120924303515bc4dd7aeca7c8293a79490aa2871b1182a4ef', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 786.2283858713108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a9f1c57555c3b6d2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:05:43.000Z'}}, {'blockNum': '0x93d981', 'uniqueId': '0x6ee8774f8e48ccd120924303515bc4dd7aeca7c8293a79490aa2871b1182a4ef:log:79', 'hash': '0x6ee8774f8e48ccd120924303515bc4dd7aeca7c8293a79490aa2871b1182a4ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 786.2283858713108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a9f1c57555c3b6d2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:05:43.000Z'}}, {'blockNum': '0x93d98d', 'uniqueId': '0xf06064345b4602e366e830d6eff54c7a90ea330a6bbe68e745e85f0abbe567a1:log:100', 'hash': '0xf06064345b4602e366e830d6eff54c7a90ea330a6bbe68e745e85f0abbe567a1', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 807.5437232738661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bc6eba1c47f22e5ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:08:16.000Z'}}, {'blockNum': '0x93d98d', 'uniqueId': '0xf06064345b4602e366e830d6eff54c7a90ea330a6bbe68e745e85f0abbe567a1:log:106', 'hash': '0xf06064345b4602e366e830d6eff54c7a90ea330a6bbe68e745e85f0abbe567a1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 807.5437232738661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bc6eba1c47f22e5ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:08:16.000Z'}}, {'blockNum': '0x93d99e', 'uniqueId': '0x0058dd294a641bd331170508cfa4e76154676f55264cd52741f1430430793b65:log:114', 'hash': '0x0058dd294a641bd331170508cfa4e76154676f55264cd52741f1430430793b65', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 174.44371746824078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0974e494cb811879b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:11:31.000Z'}}, {'blockNum': '0x93d99e', 'uniqueId': '0x0058dd294a641bd331170508cfa4e76154676f55264cd52741f1430430793b65:log:120', 'hash': '0x0058dd294a641bd331170508cfa4e76154676f55264cd52741f1430430793b65', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 174.44371746824078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0974e494cb811879b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:11:31.000Z'}}, {'blockNum': '0x93d9a3', 'uniqueId': '0x9205827f24565c3eff79c944e2c203c677bc1e9c041d4a36f236f36e2e96d5b8:log:202', 'hash': '0x9205827f24565c3eff79c944e2c203c677bc1e9c041d4a36f236f36e2e96d5b8', 'from': '0xb622b86a65d2fbd5d7f28803dc6e5c9810f6a746', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 822.9538903620743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c9cc78b167533ca8b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:12:18.000Z'}}, {'blockNum': '0x93d9a3', 'uniqueId': '0x9205827f24565c3eff79c944e2c203c677bc1e9c041d4a36f236f36e2e96d5b8:log:208', 'hash': '0x9205827f24565c3eff79c944e2c203c677bc1e9c041d4a36f236f36e2e96d5b8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 822.9538903620743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c9cc78b167533ca8b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:12:18.000Z'}}, {'blockNum': '0x93d9a5', 'uniqueId': '0x558ecd6432f4360ea17e08f31ea1fa81d438a32a43ce8dccc4d089e1aef1beac:log:121', 'hash': '0x558ecd6432f4360ea17e08f31ea1fa81d438a32a43ce8dccc4d089e1aef1beac', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 427.1544059488873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1727f54d0caa6e5992', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:12:30.000Z'}}, {'blockNum': '0x93d9a5', 'uniqueId': '0x558ecd6432f4360ea17e08f31ea1fa81d438a32a43ce8dccc4d089e1aef1beac:log:127', 'hash': '0x558ecd6432f4360ea17e08f31ea1fa81d438a32a43ce8dccc4d089e1aef1beac', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 427.1544059488873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1727f54d0caa6e5992', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:12:30.000Z'}}, {'blockNum': '0x93d9a5', 'uniqueId': '0x862e613290eccc77e7b71b07b834ea4fcf881a06ec8230d57102ac734f433d7d:log:150', 'hash': '0x862e613290eccc77e7b71b07b834ea4fcf881a06ec8230d57102ac734f433d7d', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 66.62972850376964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039cac590e03e8ac79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:12:30.000Z'}}, {'blockNum': '0x93d9a5', 'uniqueId': '0x862e613290eccc77e7b71b07b834ea4fcf881a06ec8230d57102ac734f433d7d:log:156', 'hash': '0x862e613290eccc77e7b71b07b834ea4fcf881a06ec8230d57102ac734f433d7d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 66.62972850376964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039cac590e03e8ac79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:12:30.000Z'}}, {'blockNum': '0x93d9be', 'uniqueId': '0x0e292838bc4e8a86b5210703bc227ecf1fa68010eaf99f091168420de0086f83:log:4', 'hash': '0x0e292838bc4e8a86b5210703bc227ecf1fa68010eaf99f091168420de0086f83', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 759.4684284832236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x292bbddfde8ab4fe92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:17:23.000Z'}}, {'blockNum': '0x93d9be', 'uniqueId': '0x0e292838bc4e8a86b5210703bc227ecf1fa68010eaf99f091168420de0086f83:log:10', 'hash': '0x0e292838bc4e8a86b5210703bc227ecf1fa68010eaf99f091168420de0086f83', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 759.4684284832236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x292bbddfde8ab4fe92', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:17:23.000Z'}}, {'blockNum': '0x93d9d1', 'uniqueId': '0x3a10dfad935c2b0d54d4438c0ee843ca8ec253d82b8e7be50308bb527391aab4:log:27', 'hash': '0x3a10dfad935c2b0d54d4438c0ee843ca8ec253d82b8e7be50308bb527391aab4', 'from': '0x86c02430020678f747e5d92d1de4e217ab335866', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 85.39737355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04a1206ac9ff16cc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:19:56.000Z'}}, {'blockNum': '0x93d9fa', 'uniqueId': '0x9bd00d1fed60db19843dde2b756b56735dacd723393fe8f92018cf27c3a55cfc:log:89', 'hash': '0x9bd00d1fed60db19843dde2b756b56735dacd723393fe8f92018cf27c3a55cfc', 'from': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1213.4399139910145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41c7dc94b1d2f95678', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:26:23.000Z'}}, {'blockNum': '0x93d9fa', 'uniqueId': '0x9bd00d1fed60db19843dde2b756b56735dacd723393fe8f92018cf27c3a55cfc:log:95', 'hash': '0x9bd00d1fed60db19843dde2b756b56735dacd723393fe8f92018cf27c3a55cfc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1213.4399139910145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x41c7dc94b1d2f95678', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:26:23.000Z'}}, {'blockNum': '0x93da24', 'uniqueId': '0x2841b4e87d8e66527d0dee73ce52be3980ca38c56b6a6075554c7d2b6ae9c38c:log:20', 'hash': '0x2841b4e87d8e66527d0dee73ce52be3980ca38c56b6a6075554c7d2b6ae9c38c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 48.56232652221443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a1f00aad7f1f1ffa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:34:51.000Z'}}, {'blockNum': '0x93da24', 'uniqueId': '0x2841b4e87d8e66527d0dee73ce52be3980ca38c56b6a6075554c7d2b6ae9c38c:log:26', 'hash': '0x2841b4e87d8e66527d0dee73ce52be3980ca38c56b6a6075554c7d2b6ae9c38c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 48.56232652221443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a1f00aad7f1f1ffa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:34:51.000Z'}}, {'blockNum': '0x93da25', 'uniqueId': '0x0b81e44eeb7cd9be1cb3381712c9de1f7b5791151b21d5e58eb89c496886190b:log:80', 'hash': '0x0b81e44eeb7cd9be1cb3381712c9de1f7b5791151b21d5e58eb89c496886190b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3965.685412380131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd6faf0cf753a2efeee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:35:15.000Z'}}, {'blockNum': '0x93da25', 'uniqueId': '0x0b81e44eeb7cd9be1cb3381712c9de1f7b5791151b21d5e58eb89c496886190b:log:86', 'hash': '0x0b81e44eeb7cd9be1cb3381712c9de1f7b5791151b21d5e58eb89c496886190b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfa15985038633f5497eb4554b4224ad8510179e2', 'value': 3965.685412380131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd6faf0cf753a2efeee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:35:15.000Z'}}, {'blockNum': '0x93da27', 'uniqueId': '0x75bc67a36b4b93e1f06e2b6f09b97cc0a66dc9c89b70bbaa18d485035ce1ce82:log:70', 'hash': '0x75bc67a36b4b93e1f06e2b6f09b97cc0a66dc9c89b70bbaa18d485035ce1ce82', 'from': '0xfa15985038633f5497eb4554b4224ad8510179e2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 327.1874600425746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11bca35d652ff9cf3a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:36:11.000Z'}}, {'blockNum': '0x93da27', 'uniqueId': '0x75bc67a36b4b93e1f06e2b6f09b97cc0a66dc9c89b70bbaa18d485035ce1ce82:log:76', 'hash': '0x75bc67a36b4b93e1f06e2b6f09b97cc0a66dc9c89b70bbaa18d485035ce1ce82', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 327.1874600425746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11bca35d652ff9cf3a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:36:11.000Z'}}, {'blockNum': '0x93da32', 'uniqueId': '0x7a2c5c5012602afb9346a607f77deb94c6c63b32ba38c4d78c090835f2056499:log:156', 'hash': '0x7a2c5c5012602afb9346a607f77deb94c6c63b32ba38c4d78c090835f2056499', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1981.641446211213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b6cccac248ab2ba6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:39:15.000Z'}}, {'blockNum': '0x93da32', 'uniqueId': '0x7a2c5c5012602afb9346a607f77deb94c6c63b32ba38c4d78c090835f2056499:log:162', 'hash': '0x7a2c5c5012602afb9346a607f77deb94c6c63b32ba38c4d78c090835f2056499', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1981.641446211213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b6cccac248ab2ba6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:39:15.000Z'}}, {'blockNum': '0x93da3a', 'uniqueId': '0x3ed02797803798abdf47e213a5a54dab82be95fa34c4531cb2ccb22e0f436e46:log:14', 'hash': '0x3ed02797803798abdf47e213a5a54dab82be95fa34c4531cb2ccb22e0f436e46', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x829e6bc320ab2d9148e9ef1d1952366eaaef0058', 'value': 144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ce66c50e28400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:41:44.000Z'}}, {'blockNum': '0x93da41', 'uniqueId': '0xee6f5575d393614f358f0309e5a595b00cea55a0a08a4fb1d6652f48abf8e770:log:112', 'hash': '0xee6f5575d393614f358f0309e5a595b00cea55a0a08a4fb1d6652f48abf8e770', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 12661.222401598921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ae5dc2043911d9f7da', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:42:59.000Z'}}, {'blockNum': '0x93da41', 'uniqueId': '0xee6f5575d393614f358f0309e5a595b00cea55a0a08a4fb1d6652f48abf8e770:log:117', 'hash': '0xee6f5575d393614f358f0309e5a595b00cea55a0a08a4fb1d6652f48abf8e770', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 12661.222401598921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02ae5dc2043911d9f7da', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:42:59.000Z'}}, {'blockNum': '0x93da48', 'uniqueId': '0x25f7810ea5f1f00120f757ed40a188a1f64b86a92a6e6933b7fe5a5a697665ea:log:61', 'hash': '0x25f7810ea5f1f00120f757ed40a188a1f64b86a92a6e6933b7fe5a5a697665ea', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 474.08212609986003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19b3360de4a01a44bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:43:57.000Z'}}, {'blockNum': '0x93da48', 'uniqueId': '0x25f7810ea5f1f00120f757ed40a188a1f64b86a92a6e6933b7fe5a5a697665ea:log:67', 'hash': '0x25f7810ea5f1f00120f757ed40a188a1f64b86a92a6e6933b7fe5a5a697665ea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x247ac58cd31541c65b3aaa47e047745107d13873', 'value': 474.08212609986003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19b3360de4a01a44bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:43:57.000Z'}}, {'blockNum': '0x93da4c', 'uniqueId': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654:log:17', 'hash': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3632.91595674839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc4f0d636a624226d62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:45:27.000Z'}}, {'blockNum': '0x93da4c', 'uniqueId': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654:log:22', 'hash': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'value': 3632.91595674839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc4f0d636a624226d62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:45:27.000Z'}}, {'blockNum': '0x93da4c', 'uniqueId': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654:log:23', 'hash': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654', 'from': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'to': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'value': 3632.91595674839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc4f0d636a624226d62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:45:27.000Z'}}, {'blockNum': '0x93da4c', 'uniqueId': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654:log:24', 'hash': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654', 'from': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 3632.91595674839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc4f0d636a624226d62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:45:27.000Z'}}, {'blockNum': '0x93da4c', 'uniqueId': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654:log:25', 'hash': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 316.82901700182293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x112ce2c854c1da7aaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:45:27.000Z'}}, {'blockNum': '0x93da4c', 'uniqueId': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654:log:27', 'hash': '0xf6649a3342758f35f9f0747ef91cb503082fe61697b869263bd798f983025654', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x019c199f89b8a374e87b70597bbca748ac084587', 'value': 3949.7449737502125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd61db8fefae5fce80c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:45:27.000Z'}}, {'blockNum': '0x93da52', 'uniqueId': '0xc9f2c95780357e6f0b828fca76d2df2c7477dc5e31f044cbcac41f730f25ad6e:log:67', 'hash': '0xc9f2c95780357e6f0b828fca76d2df2c7477dc5e31f044cbcac41f730f25ad6e', 'from': '0x247ac58cd31541c65b3aaa47e047745107d13873', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 576.7557433202319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f441804c450cc43fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:46:31.000Z'}}, {'blockNum': '0x93da52', 'uniqueId': '0xc9f2c95780357e6f0b828fca76d2df2c7477dc5e31f044cbcac41f730f25ad6e:log:73', 'hash': '0xc9f2c95780357e6f0b828fca76d2df2c7477dc5e31f044cbcac41f730f25ad6e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 576.7557433202319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f441804c450cc43fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:46:31.000Z'}}, {'blockNum': '0x93da53', 'uniqueId': '0x93908bffba4cd04396b04588bcbf7ec0c6b95a835d92d43c5123daf1005758f3:log:138', 'hash': '0x93908bffba4cd04396b04588bcbf7ec0c6b95a835d92d43c5123daf1005758f3', 'from': '0x247ac58cd31541c65b3aaa47e047745107d13873', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 786.0883210444316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a9d2abb1d9091b50c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:46:36.000Z'}}, {'blockNum': '0x93da53', 'uniqueId': '0x93908bffba4cd04396b04588bcbf7ec0c6b95a835d92d43c5123daf1005758f3:log:144', 'hash': '0x93908bffba4cd04396b04588bcbf7ec0c6b95a835d92d43c5123daf1005758f3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 786.0883210444316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a9d2abb1d9091b50c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:46:36.000Z'}}, {'blockNum': '0x93da56', 'uniqueId': '0x01726c60b18a5a49245ec78d0eeccaf164a719e13fa4e4e23bf7f4fbe5cd1ce1:log:8', 'hash': '0x01726c60b18a5a49245ec78d0eeccaf164a719e13fa4e4e23bf7f4fbe5cd1ce1', 'from': '0x019c199f89b8a374e87b70597bbca748ac084587', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 8510.649014706545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd5cfb2b864be457c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:47:31.000Z'}}, {'blockNum': '0x93da63', 'uniqueId': '0x646d615815b4b8c3c0883ac6affa7ab4da132222a963010fb654e5723332d8fe:log:133', 'hash': '0x646d615815b4b8c3c0883ac6affa7ab4da132222a963010fb654e5723332d8fe', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 675.7075945576997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24a1539d32ad5df5d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:50:10.000Z'}}, {'blockNum': '0x93da63', 'uniqueId': '0x646d615815b4b8c3c0883ac6affa7ab4da132222a963010fb654e5723332d8fe:log:139', 'hash': '0x646d615815b4b8c3c0883ac6affa7ab4da132222a963010fb654e5723332d8fe', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 675.7075945576997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24a1539d32ad5df5d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:50:10.000Z'}}, {'blockNum': '0x93da6d', 'uniqueId': '0x650f6066b8015789731c66be977b0f7d85c288300eb738d6644d07b4c6f62839:log:108', 'hash': '0x650f6066b8015789731c66be977b0f7d85c288300eb738d6644d07b4c6f62839', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1381.9379997432452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4aea3e08f1f5fe879b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:51:48.000Z'}}, {'blockNum': '0x93da6d', 'uniqueId': '0x650f6066b8015789731c66be977b0f7d85c288300eb738d6644d07b4c6f62839:log:114', 'hash': '0x650f6066b8015789731c66be977b0f7d85c288300eb738d6644d07b4c6f62839', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xdba193795e33b445b8c215252b0055a58db4f0af', 'value': 1381.9379997432452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4aea3e08f1f5fe879b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:51:48.000Z'}}, {'blockNum': '0x93da7c', 'uniqueId': '0x2c2816ab763c660c1c4747657f07fe853d886921c6bd8976e22a1f7bcbbbf4f1:log:78', 'hash': '0x2c2816ab763c660c1c4747657f07fe853d886921c6bd8976e22a1f7bcbbbf4f1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 174.02561982407497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x096f173333e72a58e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:55:00.000Z'}}, {'blockNum': '0x93da7c', 'uniqueId': '0x2c2816ab763c660c1c4747657f07fe853d886921c6bd8976e22a1f7bcbbbf4f1:log:84', 'hash': '0x2c2816ab763c660c1c4747657f07fe853d886921c6bd8976e22a1f7bcbbbf4f1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'value': 174.02561982407497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x096f173333e72a58e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T14:55:00.000Z'}}, {'blockNum': '0x93daa7', 'uniqueId': '0xad9ad692f2f55c3097095e0860a8c1991111095dc6f0ec1f631ce3c39651f6de:log:121', 'hash': '0xad9ad692f2f55c3097095e0860a8c1991111095dc6f0ec1f631ce3c39651f6de', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1437.688777540818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4deff095f8c60a7099', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:02:35.000Z'}}, {'blockNum': '0x93daa7', 'uniqueId': '0xad9ad692f2f55c3097095e0860a8c1991111095dc6f0ec1f631ce3c39651f6de:log:127', 'hash': '0xad9ad692f2f55c3097095e0860a8c1991111095dc6f0ec1f631ce3c39651f6de', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 1437.688777540818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4deff095f8c60a7099', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:02:35.000Z'}}, {'blockNum': '0x93daaa', 'uniqueId': '0x53cba8015e70a5f30d7baa91afe93d54994147af3a4b75ba7e06b4afd0d04244:log:125', 'hash': '0x53cba8015e70a5f30d7baa91afe93d54994147af3a4b75ba7e06b4afd0d04244', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 313.03686236231323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f84257c73486a72f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:03:15.000Z'}}, {'blockNum': '0x93daaa', 'uniqueId': '0x53cba8015e70a5f30d7baa91afe93d54994147af3a4b75ba7e06b4afd0d04244:log:131', 'hash': '0x53cba8015e70a5f30d7baa91afe93d54994147af3a4b75ba7e06b4afd0d04244', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 313.03686236231323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f84257c73486a72f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:03:15.000Z'}}, {'blockNum': '0x93daae', 'uniqueId': '0x8d2dbf4c54f7c7d36e2c74a6fd580177cb8401db7e8dca18997eb6e2686fb466:log:140', 'hash': '0x8d2dbf4c54f7c7d36e2c74a6fd580177cb8401db7e8dca18997eb6e2686fb466', 'from': '0x5142127a6703f5fc80bf11b7b57ff68998f218e4', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 793.526447447172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b046443ab7e5deade', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:04:06.000Z'}}, {'blockNum': '0x93daae', 'uniqueId': '0x8d2dbf4c54f7c7d36e2c74a6fd580177cb8401db7e8dca18997eb6e2686fb466:log:146', 'hash': '0x8d2dbf4c54f7c7d36e2c74a6fd580177cb8401db7e8dca18997eb6e2686fb466', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 793.526447447172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b046443ab7e5deade', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:04:06.000Z'}}, {'blockNum': '0x93dab2', 'uniqueId': '0x1051b77d04b28235850de524bb15e92d05eab946f67732ebf26e5acde8b4ca31:log:14', 'hash': '0x1051b77d04b28235850de524bb15e92d05eab946f67732ebf26e5acde8b4ca31', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1649.423900182809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x596a5ada31a3afa1e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:05.000Z'}}, {'blockNum': '0x93dab2', 'uniqueId': '0x1051b77d04b28235850de524bb15e92d05eab946f67732ebf26e5acde8b4ca31:log:20', 'hash': '0x1051b77d04b28235850de524bb15e92d05eab946f67732ebf26e5acde8b4ca31', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 1649.423900182809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x596a5ada31a3afa1e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:05.000Z'}}, {'blockNum': '0x93dab3', 'uniqueId': '0x828a9fabf1967c3be890cca4727234ad33939d9a81584a8568f88b61aa4595ff:log:42', 'hash': '0x828a9fabf1967c3be890cca4727234ad33939d9a81584a8568f88b61aa4595ff', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2100.437664050368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x71dd6d9edbad74ce36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:12.000Z'}}, {'blockNum': '0x93dab3', 'uniqueId': '0x828a9fabf1967c3be890cca4727234ad33939d9a81584a8568f88b61aa4595ff:log:48', 'hash': '0x828a9fabf1967c3be890cca4727234ad33939d9a81584a8568f88b61aa4595ff', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2100.437664050368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x71dd6d9edbad74ce36', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:12.000Z'}}, {'blockNum': '0x93dab5', 'uniqueId': '0x90a9d70cab780ecbb6f266980af792a565b2c4562f4c04e6b0960b3301484f9f:log:177', 'hash': '0x90a9d70cab780ecbb6f266980af792a565b2c4562f4c04e6b0960b3301484f9f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3393.710480769402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb7f931a59c6c522560', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:32.000Z'}}, {'blockNum': '0x93dab5', 'uniqueId': '0x90a9d70cab780ecbb6f266980af792a565b2c4562f4c04e6b0960b3301484f9f:log:183', 'hash': '0x90a9d70cab780ecbb6f266980af792a565b2c4562f4c04e6b0960b3301484f9f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 3393.710480769402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb7f931a59c6c522560', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:32.000Z'}}, {'blockNum': '0x93dab7', 'uniqueId': '0xc01e943f8371cf1d17bbb29a83cf665502197271f9b5c3f3b0a103aa6ed98b70:log:19', 'hash': '0xc01e943f8371cf1d17bbb29a83cf665502197271f9b5c3f3b0a103aa6ed98b70', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 799.4509248170318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b569c3c72d4b29ce7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:44.000Z'}}, {'blockNum': '0x93dab7', 'uniqueId': '0xc01e943f8371cf1d17bbb29a83cf665502197271f9b5c3f3b0a103aa6ed98b70:log:25', 'hash': '0xc01e943f8371cf1d17bbb29a83cf665502197271f9b5c3f3b0a103aa6ed98b70', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 799.4509248170318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b569c3c72d4b29ce7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:44.000Z'}}, {'blockNum': '0x93dab7', 'uniqueId': '0x80acd3e9376cefa58875e1895642ba9f58bb39a1988e9a63ea3411bdb7817032:log:74', 'hash': '0x80acd3e9376cefa58875e1895642ba9f58bb39a1988e9a63ea3411bdb7817032', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 304.7708528765238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10858b93f22e09c1be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:44.000Z'}}, {'blockNum': '0x93dab7', 'uniqueId': '0x80acd3e9376cefa58875e1895642ba9f58bb39a1988e9a63ea3411bdb7817032:log:80', 'hash': '0x80acd3e9376cefa58875e1895642ba9f58bb39a1988e9a63ea3411bdb7817032', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 304.7708528765238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10858b93f22e09c1be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:44.000Z'}}, {'blockNum': '0x93dab7', 'uniqueId': '0x477b81290075c688ca6a96d03af1abf10a91d36fda3f85beaa419555c3f10650:log:92', 'hash': '0x477b81290075c688ca6a96d03af1abf10a91d36fda3f85beaa419555c3f10650', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 865.5130372534413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eeb6801b288cda84b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:44.000Z'}}, {'blockNum': '0x93dab7', 'uniqueId': '0x477b81290075c688ca6a96d03af1abf10a91d36fda3f85beaa419555c3f10650:log:98', 'hash': '0x477b81290075c688ca6a96d03af1abf10a91d36fda3f85beaa419555c3f10650', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 865.5130372534413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eeb6801b288cda84b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:44.000Z'}}, {'blockNum': '0x93dab7', 'uniqueId': '0x36e9767fa041737dbabd7ad6d06b4363f610f0d9648dae8800874a82c00cb6c7:log:112', 'hash': '0x36e9767fa041737dbabd7ad6d06b4363f610f0d9648dae8800874a82c00cb6c7', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1725.629635411408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d8bec02a107ce143d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:44.000Z'}}, {'blockNum': '0x93dab7', 'uniqueId': '0x36e9767fa041737dbabd7ad6d06b4363f610f0d9648dae8800874a82c00cb6c7:log:118', 'hash': '0x36e9767fa041737dbabd7ad6d06b4363f610f0d9648dae8800874a82c00cb6c7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1725.629635411408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d8bec02a107ce143d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:05:44.000Z'}}, {'blockNum': '0x93dab9', 'uniqueId': '0x257966247577690d6a14ecf32b75eede6d375e90062d565ad788b9665abc311e:log:163', 'hash': '0x257966247577690d6a14ecf32b75eede6d375e90062d565ad788b9665abc311e', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 397.5657801369342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x158d5562a409038dee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:06:27.000Z'}}, {'blockNum': '0x93dab9', 'uniqueId': '0x257966247577690d6a14ecf32b75eede6d375e90062d565ad788b9665abc311e:log:169', 'hash': '0x257966247577690d6a14ecf32b75eede6d375e90062d565ad788b9665abc311e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 397.5657801369342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x158d5562a409038dee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:06:27.000Z'}}, {'blockNum': '0x93dabc', 'uniqueId': '0x95f037e0df512f9f97b6c6cb0487a27cc100a978778b3a661c5ae982b479ff9e:log:11', 'hash': '0x95f037e0df512f9f97b6c6cb0487a27cc100a978778b3a661c5ae982b479ff9e', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 814.0745530656254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c218dccdc817ca211', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:06:43.000Z'}}, {'blockNum': '0x93dabc', 'uniqueId': '0x95f037e0df512f9f97b6c6cb0487a27cc100a978778b3a661c5ae982b479ff9e:log:17', 'hash': '0x95f037e0df512f9f97b6c6cb0487a27cc100a978778b3a661c5ae982b479ff9e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 814.0745530656254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c218dccdc817ca211', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:06:43.000Z'}}, {'blockNum': '0x93dabc', 'uniqueId': '0xb33a385a6e8b5f57bd6facf96cc1d1ee39a054e4f39bbaf95d07474f924b755d:log:36', 'hash': '0xb33a385a6e8b5f57bd6facf96cc1d1ee39a054e4f39bbaf95d07474f924b755d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 7.898145540956771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6d9bd985f9105267', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:06:43.000Z'}}, {'blockNum': '0x93dabc', 'uniqueId': '0xb33a385a6e8b5f57bd6facf96cc1d1ee39a054e4f39bbaf95d07474f924b755d:log:42', 'hash': '0xb33a385a6e8b5f57bd6facf96cc1d1ee39a054e4f39bbaf95d07474f924b755d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 7.898145540956771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6d9bd985f9105267', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:06:43.000Z'}}, {'blockNum': '0x93dac6', 'uniqueId': '0x43a9fb043b32b83c49a80c9d9080a11d8de0ac6a74b1f2ec88fda9782c3ff646:log:6', 'hash': '0x43a9fb043b32b83c49a80c9d9080a11d8de0ac6a74b1f2ec88fda9782c3ff646', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 677.4413012970953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b962fa4ab7bc4f4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:07:49.000Z'}}, {'blockNum': '0x93dac6', 'uniqueId': '0x43a9fb043b32b83c49a80c9d9080a11d8de0ac6a74b1f2ec88fda9782c3ff646:log:12', 'hash': '0x43a9fb043b32b83c49a80c9d9080a11d8de0ac6a74b1f2ec88fda9782c3ff646', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 677.4413012970953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24b962fa4ab7bc4f4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:07:49.000Z'}}, {'blockNum': '0x93dac8', 'uniqueId': '0xfba5979166bca5308960aa798d9836a1b9c1f99917375150758b78e055876e58:log:162', 'hash': '0xfba5979166bca5308960aa798d9836a1b9c1f99917375150758b78e055876e58', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1579.5861618465578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55a1295d317ac2d590', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:08:21.000Z'}}, {'blockNum': '0x93dac8', 'uniqueId': '0xfba5979166bca5308960aa798d9836a1b9c1f99917375150758b78e055876e58:log:168', 'hash': '0xfba5979166bca5308960aa798d9836a1b9c1f99917375150758b78e055876e58', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1579.5861618465578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55a1295d317ac2d590', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:08:21.000Z'}}, {'blockNum': '0x93dacf', 'uniqueId': '0xf992dc3bd6099a8080a86c4da8ef40e776d8d97512e5e8d802d6f0bb7c0bab52:log:85', 'hash': '0xf992dc3bd6099a8080a86c4da8ef40e776d8d97512e5e8d802d6f0bb7c0bab52', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 23625.21618309367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0500b9bcb2c3843fc462', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:09:51.000Z'}}, {'blockNum': '0x93dacf', 'uniqueId': '0xf992dc3bd6099a8080a86c4da8ef40e776d8d97512e5e8d802d6f0bb7c0bab52:log:90', 'hash': '0xf992dc3bd6099a8080a86c4da8ef40e776d8d97512e5e8d802d6f0bb7c0bab52', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 23625.21618309367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0500b9bcb2c3843fc462', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:09:51.000Z'}}, {'blockNum': '0x93dad1', 'uniqueId': '0xfa3ade3a24edf53c42086aa92d849d1529fffc965bc1cd8913b8e72155691755:log:30', 'hash': '0xfa3ade3a24edf53c42086aa92d849d1529fffc965bc1cd8913b8e72155691755', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 486.5628435136577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a606a7841578b0076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:11:09.000Z'}}, {'blockNum': '0x93dad1', 'uniqueId': '0xfa3ade3a24edf53c42086aa92d849d1529fffc965bc1cd8913b8e72155691755:log:36', 'hash': '0xfa3ade3a24edf53c42086aa92d849d1529fffc965bc1cd8913b8e72155691755', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 486.5628435136577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a606a7841578b0076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:11:09.000Z'}}, {'blockNum': '0x93dad1', 'uniqueId': '0x9ba9f922c18fb37492072924a2af95ea1f3b6329523a0a7418d9b73ea60e95c3:log:47', 'hash': '0x9ba9f922c18fb37492072924a2af95ea1f3b6329523a0a7418d9b73ea60e95c3', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1827.2110672519539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x630da5c0afbf1a2789', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:11:09.000Z'}}, {'blockNum': '0x93dad1', 'uniqueId': '0x9ba9f922c18fb37492072924a2af95ea1f3b6329523a0a7418d9b73ea60e95c3:log:53', 'hash': '0x9ba9f922c18fb37492072924a2af95ea1f3b6329523a0a7418d9b73ea60e95c3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1827.2110672519539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x630da5c0afbf1a2789', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:11:09.000Z'}}, {'blockNum': '0x93dad1', 'uniqueId': '0x786d8a222c010391e2fdec2529e31a060de6b1b7615d8404b7fbfde339ba9c3d:log:64', 'hash': '0x786d8a222c010391e2fdec2529e31a060de6b1b7615d8404b7fbfde339ba9c3d', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1798.998943348718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6186202778836ab4d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:11:09.000Z'}}, {'blockNum': '0x93dad1', 'uniqueId': '0x786d8a222c010391e2fdec2529e31a060de6b1b7615d8404b7fbfde339ba9c3d:log:70', 'hash': '0x786d8a222c010391e2fdec2529e31a060de6b1b7615d8404b7fbfde339ba9c3d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1798.998943348718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6186202778836ab4d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:11:09.000Z'}}, {'blockNum': '0x93dad5', 'uniqueId': '0xef31c5aa584f7e495b901de10c88905534567ae0035473f4226b99a538684f95:log:137', 'hash': '0xef31c5aa584f7e495b901de10c88905534567ae0035473f4226b99a538684f95', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 396.6678041872862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1580df2245b166545f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:12:15.000Z'}}, {'blockNum': '0x93dad5', 'uniqueId': '0xef31c5aa584f7e495b901de10c88905534567ae0035473f4226b99a538684f95:log:143', 'hash': '0xef31c5aa584f7e495b901de10c88905534567ae0035473f4226b99a538684f95', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 396.6678041872862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1580df2245b166545f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:12:15.000Z'}}, {'blockNum': '0x93dad7', 'uniqueId': '0x592c7ff1698862a8d6a124be99c22c01cd3729d778b50f1f47abdee72f5ec7d6:log:57', 'hash': '0x592c7ff1698862a8d6a124be99c22c01cd3729d778b50f1f47abdee72f5ec7d6', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 385.2193592794326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14e1fe1648f6275a1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:12:46.000Z'}}, {'blockNum': '0x93dad7', 'uniqueId': '0x592c7ff1698862a8d6a124be99c22c01cd3729d778b50f1f47abdee72f5ec7d6:log:63', 'hash': '0x592c7ff1698862a8d6a124be99c22c01cd3729d778b50f1f47abdee72f5ec7d6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 385.2193592794326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14e1fe1648f6275a1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:12:46.000Z'}}, {'blockNum': '0x93dae2', 'uniqueId': '0x14aae418bdd76baec7454ae475a70f130540a0ff6b0b84caea07f006baf47448:log:140', 'hash': '0x14aae418bdd76baec7454ae475a70f130540a0ff6b0b84caea07f006baf47448', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 775.3923564585006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a08bb07fe85fe2bf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:13:58.000Z'}}, {'blockNum': '0x93dae2', 'uniqueId': '0x14aae418bdd76baec7454ae475a70f130540a0ff6b0b84caea07f006baf47448:log:146', 'hash': '0x14aae418bdd76baec7454ae475a70f130540a0ff6b0b84caea07f006baf47448', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 775.3923564585006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a08bb07fe85fe2bf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:13:58.000Z'}}, {'blockNum': '0x93dae2', 'uniqueId': '0x2d7d01e22d44cd30a352bd0171f30a14baf9da828967fabd98f9f83c37a8e79d:log:158', 'hash': '0x2d7d01e22d44cd30a352bd0171f30a14baf9da828967fabd98f9f83c37a8e79d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 476.2614280628616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19d1747d7b631f70d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:13:58.000Z'}}, {'blockNum': '0x93dae2', 'uniqueId': '0x2d7d01e22d44cd30a352bd0171f30a14baf9da828967fabd98f9f83c37a8e79d:log:164', 'hash': '0x2d7d01e22d44cd30a352bd0171f30a14baf9da828967fabd98f9f83c37a8e79d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 476.2614280628616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19d1747d7b631f70d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:13:58.000Z'}}, {'blockNum': '0x93dae6', 'uniqueId': '0xb29ff6326c3eb4480273c8730b208d6bef511191801ddeeaffcd0b67e49149b0:log:52', 'hash': '0xb29ff6326c3eb4480273c8730b208d6bef511191801ddeeaffcd0b67e49149b0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 1265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x449366cdbe25240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:14:52.000Z'}}, {'blockNum': '0x93daed', 'uniqueId': '0xd38e39f267e3e18253c91aeaa76ede1a586bb719150072e7ec1e7500deb811b0:log:26', 'hash': '0xd38e39f267e3e18253c91aeaa76ede1a586bb719150072e7ec1e7500deb811b0', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 15658.636265649537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0350db3b409901ca5295', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:15:58.000Z'}}, {'blockNum': '0x93daed', 'uniqueId': '0xd38e39f267e3e18253c91aeaa76ede1a586bb719150072e7ec1e7500deb811b0:log:31', 'hash': '0xd38e39f267e3e18253c91aeaa76ede1a586bb719150072e7ec1e7500deb811b0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 15658.636265649537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0350db3b409901ca5295', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:15:58.000Z'}}, {'blockNum': '0x93daf0', 'uniqueId': '0x63b3ee56189ae96f02f0b2b691c1fa59655c546b367bc6e413f4c3755737d372:log:175', 'hash': '0x63b3ee56189ae96f02f0b2b691c1fa59655c546b367bc6e413f4c3755737d372', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 463.69116406562864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x192301f0fa032b10bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:17:29.000Z'}}, {'blockNum': '0x93daf0', 'uniqueId': '0x63b3ee56189ae96f02f0b2b691c1fa59655c546b367bc6e413f4c3755737d372:log:181', 'hash': '0x63b3ee56189ae96f02f0b2b691c1fa59655c546b367bc6e413f4c3755737d372', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 463.69116406562864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x192301f0fa032b10bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:17:29.000Z'}}, {'blockNum': '0x93daf1', 'uniqueId': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a:log:43', 'hash': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1880.1499478372032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x65ec527018b9b6813f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:17:33.000Z'}}, {'blockNum': '0x93daf1', 'uniqueId': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a:log:48', 'hash': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'value': 1880.1499478372032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x65ec527018b9b6813f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:17:33.000Z'}}, {'blockNum': '0x93daf1', 'uniqueId': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a:log:49', 'hash': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a', 'from': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'to': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'value': 1880.1499478372032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x65ec527018b9b6813f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:17:33.000Z'}}, {'blockNum': '0x93daf1', 'uniqueId': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a:log:50', 'hash': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a', 'from': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 1880.1499478372032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x65ec527018b9b6813f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:17:33.000Z'}}, {'blockNum': '0x93daf1', 'uniqueId': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a:log:51', 'hash': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 471.7693391434555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19931d6268ee741065', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:17:33.000Z'}}, {'blockNum': '0x93daf1', 'uniqueId': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a:log:53', 'hash': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x68a17b587caf4f9329f0e372e3a78d23a46de6b5', 'value': 0.20042670777381466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02c80f07605bf77f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:17:33.000Z'}}, {'blockNum': '0x93daf1', 'uniqueId': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a:log:54', 'hash': '0x78b2bb55f53ca3cb623d6a9e68a747abb437c6e854b5e54b1a2e768f3020343a', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x019c199f89b8a374e87b70597bbca748ac084587', 'value': 2351.7188602728847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7f7ca7c37a47ce9a25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:17:33.000Z'}}, {'blockNum': '0x93daf3', 'uniqueId': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf:log:16', 'hash': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1566.169667969421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54e6f867187cd26ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:46.000Z'}}, {'blockNum': '0x93daf3', 'uniqueId': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf:log:21', 'hash': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'value': 1566.169667969421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54e6f867187cd26ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:46.000Z'}}, {'blockNum': '0x93daf3', 'uniqueId': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf:log:22', 'hash': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf', 'from': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'to': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'value': 1566.169667969421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54e6f867187cd26ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:46.000Z'}}, {'blockNum': '0x93daf3', 'uniqueId': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf:log:23', 'hash': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf', 'from': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 1566.169667969421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54e6f867187cd26ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:46.000Z'}}, {'blockNum': '0x93daf3', 'uniqueId': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf:log:24', 'hash': '0x1f6a71133dafa714ea56c0e2db2560c1b93a3f31469b6a211986c083775259cf', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x019c199f89b8a374e87b70597bbca748ac084587', 'value': 1566.169667969421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x54e6f867187cd26ffc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:46.000Z'}}, {'blockNum': '0x93daf4', 'uniqueId': '0xb6ac224bdfc763b86aea731c1a37afa6d8872dd876a746c200c69facb0b7a5d6:log:84', 'hash': '0xb6ac224bdfc763b86aea731c1a37afa6d8872dd876a746c200c69facb0b7a5d6', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 189.98446208380545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a4c9065af34e4d371', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:49.000Z'}}, {'blockNum': '0x93daf4', 'uniqueId': '0xb6ac224bdfc763b86aea731c1a37afa6d8872dd876a746c200c69facb0b7a5d6:log:90', 'hash': '0xb6ac224bdfc763b86aea731c1a37afa6d8872dd876a746c200c69facb0b7a5d6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 189.98446208380545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a4c9065af34e4d371', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:49.000Z'}}, {'blockNum': '0x93daf4', 'uniqueId': '0x1aa7bc12f021041bb604685b0f8d444b70e78417b7a37c4db8577c21b756be96:log:118', 'hash': '0x1aa7bc12f021041bb604685b0f8d444b70e78417b7a37c4db8577c21b756be96', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 38972.894630910305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0840b98fdb9149126939', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:49.000Z'}}, {'blockNum': '0x93daf4', 'uniqueId': '0x1aa7bc12f021041bb604685b0f8d444b70e78417b7a37c4db8577c21b756be96:log:123', 'hash': '0x1aa7bc12f021041bb604685b0f8d444b70e78417b7a37c4db8577c21b756be96', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 38972.894630910305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0840b98fdb9149126939', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:49.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x8dac3d9fb836a5c54ebb526d19bef9fe2202dbbd3be1f9a2189940ff1c600dd0:log:31', 'hash': '0x8dac3d9fb836a5c54ebb526d19bef9fe2202dbbd3be1f9a2189940ff1c600dd0', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2947.6134769604478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fca5ab82b858c3e71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x8dac3d9fb836a5c54ebb526d19bef9fe2202dbbd3be1f9a2189940ff1c600dd0:log:37', 'hash': '0x8dac3d9fb836a5c54ebb526d19bef9fe2202dbbd3be1f9a2189940ff1c600dd0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2947.6134769604478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9fca5ab82b858c3e71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x827f573e55ee183aa3c882bddd54a25607c57dc3d1e251a141f83f1766e6d4d8:log:49', 'hash': '0x827f573e55ee183aa3c882bddd54a25607c57dc3d1e251a141f83f1766e6d4d8', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3816.9051258177647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xceea330d19e7845ebd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x827f573e55ee183aa3c882bddd54a25607c57dc3d1e251a141f83f1766e6d4d8:log:55', 'hash': '0x827f573e55ee183aa3c882bddd54a25607c57dc3d1e251a141f83f1766e6d4d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 3816.9051258177647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xceea330d19e7845ebd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x1bcd4f455fe9f936d6328565c85ed867d2e89ac48630bdd1d91bece46df7cd44:log:66', 'hash': '0x1bcd4f455fe9f936d6328565c85ed867d2e89ac48630bdd1d91bece46df7cd44', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1271.1343618657886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e8886f5bc32dc29f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x1bcd4f455fe9f936d6328565c85ed867d2e89ac48630bdd1d91bece46df7cd44:log:72', 'hash': '0x1bcd4f455fe9f936d6328565c85ed867d2e89ac48630bdd1d91bece46df7cd44', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1271.1343618657886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e8886f5bc32dc29f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x7b3950ee7e045c22f45a281616e4a850ae869e2749ca87238cfafa867aabd277:log:104', 'hash': '0x7b3950ee7e045c22f45a281616e4a850ae869e2749ca87238cfafa867aabd277', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1238.8085690972919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4327ec261ada0a39d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x7b3950ee7e045c22f45a281616e4a850ae869e2749ca87238cfafa867aabd277:log:110', 'hash': '0x7b3950ee7e045c22f45a281616e4a850ae869e2749ca87238cfafa867aabd277', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1238.8085690972919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4327ec261ada0a39d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x5edcec9c1e68a4eb2d08eee5f9d5dee559e883147f50d9a64153c75f468a5ff5:log:123', 'hash': '0x5edcec9c1e68a4eb2d08eee5f9d5dee559e883147f50d9a64153c75f468a5ff5', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 988.9309306907295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x359c2c71e1f16162b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x5edcec9c1e68a4eb2d08eee5f9d5dee559e883147f50d9a64153c75f468a5ff5:log:129', 'hash': '0x5edcec9c1e68a4eb2d08eee5f9d5dee559e883147f50d9a64153c75f468a5ff5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 988.9309306907295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x359c2c71e1f16162b8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x3982a2e968e914e05ab4be9733e129a8e692a318899500d6a824bf89fee3ec45:log:147', 'hash': '0x3982a2e968e914e05ab4be9733e129a8e692a318899500d6a824bf89fee3ec45', 'from': '0x9db89726ae2683d21a71ff1417638e72e6d8c0d9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 472.2475081105888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1999c02e8d530c7b4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf5', 'uniqueId': '0x3982a2e968e914e05ab4be9733e129a8e692a318899500d6a824bf89fee3ec45:log:153', 'hash': '0x3982a2e968e914e05ab4be9733e129a8e692a318899500d6a824bf89fee3ec45', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 472.2475081105888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1999c02e8d530c7b4e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:18:55.000Z'}}, {'blockNum': '0x93daf6', 'uniqueId': '0xb2a04c3d18850e10b1291428eae70a601c2b5a06ea6cdce54742f452ee233652:log:81', 'hash': '0xb2a04c3d18850e10b1291428eae70a601c2b5a06ea6cdce54742f452ee233652', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2206.881568078809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77a2a2559ba67135ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:07.000Z'}}, {'blockNum': '0x93daf6', 'uniqueId': '0xb2a04c3d18850e10b1291428eae70a601c2b5a06ea6cdce54742f452ee233652:log:87', 'hash': '0xb2a04c3d18850e10b1291428eae70a601c2b5a06ea6cdce54742f452ee233652', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2206.881568078809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77a2a2559ba67135ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:07.000Z'}}, {'blockNum': '0x93daf6', 'uniqueId': '0x61911ac787c82f1070190cc65c4cd49dbf27448a1ef81242b69b0e34b256b4f0:log:109', 'hash': '0x61911ac787c82f1070190cc65c4cd49dbf27448a1ef81242b69b0e34b256b4f0', 'from': '0x89f26fff3f690b19057e6beb7a82c5c29adfe20b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 996.2162600547794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3601472257014a534e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:07.000Z'}}, {'blockNum': '0x93daf6', 'uniqueId': '0x61911ac787c82f1070190cc65c4cd49dbf27448a1ef81242b69b0e34b256b4f0:log:115', 'hash': '0x61911ac787c82f1070190cc65c4cd49dbf27448a1ef81242b69b0e34b256b4f0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 996.2162600547794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3601472257014a534e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:07.000Z'}}, {'blockNum': '0x93daf7', 'uniqueId': '0x8a658f5e173340e372614e673fa8709e3f26cef3f66eab82931e05359bba9726:log:33', 'hash': '0x8a658f5e173340e372614e673fa8709e3f26cef3f66eab82931e05359bba9726', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 559.5457997269331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e554204403db5ab65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:26.000Z'}}, {'blockNum': '0x93daf7', 'uniqueId': '0x8a658f5e173340e372614e673fa8709e3f26cef3f66eab82931e05359bba9726:log:39', 'hash': '0x8a658f5e173340e372614e673fa8709e3f26cef3f66eab82931e05359bba9726', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 559.5457997269331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e554204403db5ab65', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:26.000Z'}}, {'blockNum': '0x93daf7', 'uniqueId': '0x444f86e7c0043c034aca2eb862ab3a964660858c7cb1e7ed698c763d0edaba01:log:68', 'hash': '0x444f86e7c0043c034aca2eb862ab3a964660858c7cb1e7ed698c763d0edaba01', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 768.4358088668431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a83068d126258c23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:26.000Z'}}, {'blockNum': '0x93daf7', 'uniqueId': '0x444f86e7c0043c034aca2eb862ab3a964660858c7cb1e7ed698c763d0edaba01:log:74', 'hash': '0x444f86e7c0043c034aca2eb862ab3a964660858c7cb1e7ed698c763d0edaba01', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 768.4358088668431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a83068d126258c23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:26.000Z'}}, {'blockNum': '0x93daf7', 'uniqueId': '0xf3803d847e6680c8db381e8c983c60128f0c8e460bffe5300374cf51a97416c7:log:92', 'hash': '0xf3803d847e6680c8db381e8c983c60128f0c8e460bffe5300374cf51a97416c7', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 696.3262216346194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25bf77b1484169c65e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:26.000Z'}}, {'blockNum': '0x93daf7', 'uniqueId': '0xf3803d847e6680c8db381e8c983c60128f0c8e460bffe5300374cf51a97416c7:log:98', 'hash': '0xf3803d847e6680c8db381e8c983c60128f0c8e460bffe5300374cf51a97416c7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 696.3262216346194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25bf77b1484169c65e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:26.000Z'}}, {'blockNum': '0x93daf7', 'uniqueId': '0x5ac0c2b94fe64b43e3eab35148b8d156ba7a978e51ca13f7872c13c610d26be1:log:112', 'hash': '0x5ac0c2b94fe64b43e3eab35148b8d156ba7a978e51ca13f7872c13c610d26be1', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 842.6238961374082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2dadc1711fcddbc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:26.000Z'}}, {'blockNum': '0x93daf7', 'uniqueId': '0x5ac0c2b94fe64b43e3eab35148b8d156ba7a978e51ca13f7872c13c610d26be1:log:118', 'hash': '0x5ac0c2b94fe64b43e3eab35148b8d156ba7a978e51ca13f7872c13c610d26be1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 842.6238961374082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2dadc1711fcddbc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:26.000Z'}}, {'blockNum': '0x93daf8', 'uniqueId': '0x7548d1be4ac1aebb1c80b3ff4b7895e0fe989e5354f473a0a660adf3b5edee11:log:22', 'hash': '0x7548d1be4ac1aebb1c80b3ff4b7895e0fe989e5354f473a0a660adf3b5edee11', 'from': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 15734.67801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0354fa85cc32b0400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:40.000Z'}}, {'blockNum': '0x93daf8', 'uniqueId': '0x7548d1be4ac1aebb1c80b3ff4b7895e0fe989e5354f473a0a660adf3b5edee11:log:24', 'hash': '0x7548d1be4ac1aebb1c80b3ff4b7895e0fe989e5354f473a0a660adf3b5edee11', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 15734.67801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0354fa85cc32b0400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:40.000Z'}}, {'blockNum': '0x93daf9', 'uniqueId': '0x1b2c7e70162f77df7f8faa6dffe0abe8c228f3d97799c396f34b2a50fda6f6bb:log:28', 'hash': '0x1b2c7e70162f77df7f8faa6dffe0abe8c228f3d97799c396f34b2a50fda6f6bb', 'from': '0x810c99c5de0a673e4bc86090f9bfe96a6d1b49a7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 79.72164234569014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04525c2b547d999277', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:57.000Z'}}, {'blockNum': '0x93daf9', 'uniqueId': '0x1b2c7e70162f77df7f8faa6dffe0abe8c228f3d97799c396f34b2a50fda6f6bb:log:34', 'hash': '0x1b2c7e70162f77df7f8faa6dffe0abe8c228f3d97799c396f34b2a50fda6f6bb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 79.72164234569014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04525c2b547d999277', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:57.000Z'}}, {'blockNum': '0x93daf9', 'uniqueId': '0x9a25e6435dfbb6d4cf3db4dd8d5e057bbb9ea2070e9f020c912439a744600ddb:log:79', 'hash': '0x9a25e6435dfbb6d4cf3db4dd8d5e057bbb9ea2070e9f020c912439a744600ddb', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x449366cdbe25240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:57.000Z'}}, {'blockNum': '0x93daf9', 'uniqueId': '0x9a25e6435dfbb6d4cf3db4dd8d5e057bbb9ea2070e9f020c912439a744600ddb:log:81', 'hash': '0x9a25e6435dfbb6d4cf3db4dd8d5e057bbb9ea2070e9f020c912439a744600ddb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x449366cdbe25240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:57.000Z'}}, {'blockNum': '0x93dafa', 'uniqueId': '0x43861f3f7271bb9042355ffc2cf15927d75db81f2e6dc2e31439bac122e81e13:log:173', 'hash': '0x43861f3f7271bb9042355ffc2cf15927d75db81f2e6dc2e31439bac122e81e13', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 275.36115792814854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eed675a35af8852de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:58.000Z'}}, {'blockNum': '0x93dafa', 'uniqueId': '0x43861f3f7271bb9042355ffc2cf15927d75db81f2e6dc2e31439bac122e81e13:log:179', 'hash': '0x43861f3f7271bb9042355ffc2cf15927d75db81f2e6dc2e31439bac122e81e13', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 275.36115792814854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0eed675a35af8852de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:58.000Z'}}, {'blockNum': '0x93dafb', 'uniqueId': '0x2d68c3976b01fa8b7b950742f6088e327c562dcacad077265a1783f4d45ebeb0:log:8', 'hash': '0x2d68c3976b01fa8b7b950742f6088e327c562dcacad077265a1783f4d45ebeb0', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:19:59.000Z'}}, {'blockNum': '0x93db02', 'uniqueId': '0x764032e67c356b8600ed46822ab7c82f66ca7c3d0c336d0bcb62add758e50378:log:77', 'hash': '0x764032e67c356b8600ed46822ab7c82f66ca7c3d0c336d0bcb62add758e50378', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 707.4575558321468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2659f222c231315f97', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:22:18.000Z'}}, {'blockNum': '0x93db02', 'uniqueId': '0x764032e67c356b8600ed46822ab7c82f66ca7c3d0c336d0bcb62add758e50378:log:83', 'hash': '0x764032e67c356b8600ed46822ab7c82f66ca7c3d0c336d0bcb62add758e50378', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 707.4575558321468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2659f222c231315f97', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:22:18.000Z'}}, {'blockNum': '0x93db03', 'uniqueId': '0x2e1e8faa27ef690607529456201a10b812e71f2fc0cef32f5b730c9ca3fdfea4:log:114', 'hash': '0x2e1e8faa27ef690607529456201a10b812e71f2fc0cef32f5b730c9ca3fdfea4', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1984.8535804108176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b9960772dbd02eb11', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:22:23.000Z'}}, {'blockNum': '0x93db03', 'uniqueId': '0x2e1e8faa27ef690607529456201a10b812e71f2fc0cef32f5b730c9ca3fdfea4:log:120', 'hash': '0x2e1e8faa27ef690607529456201a10b812e71f2fc0cef32f5b730c9ca3fdfea4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1984.8535804108176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b9960772dbd02eb11', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:22:23.000Z'}}, {'blockNum': '0x93db0a', 'uniqueId': '0xeced4dc39b87408433e78dec3c747a0f5dec3b9cffc5b688407972336eee953a:log:86', 'hash': '0xeced4dc39b87408433e78dec3c747a0f5dec3b9cffc5b688407972336eee953a', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x7c94dd2f5a7d61a9b32dce482c6d855f79da40ce', 'value': 2270.73050954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b18b75794ad73e800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:25:05.000Z'}}, {'blockNum': '0x93db0d', 'uniqueId': '0x5e77f855a8817de8f4775837c2fb60870250ac03c04b30a867309d63786d12c5:log:80', 'hash': '0x5e77f855a8817de8f4775837c2fb60870250ac03c04b30a867309d63786d12c5', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 776.7372694667276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1b651f3fe32b0310', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:25:25.000Z'}}, {'blockNum': '0x93db0d', 'uniqueId': '0x5e77f855a8817de8f4775837c2fb60870250ac03c04b30a867309d63786d12c5:log:86', 'hash': '0x5e77f855a8817de8f4775837c2fb60870250ac03c04b30a867309d63786d12c5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 776.7372694667276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1b651f3fe32b0310', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:25:25.000Z'}}, {'blockNum': '0x93db10', 'uniqueId': '0x092cf9a10e037b8848db7c0ad35d0d5365960bf72f84bbcd1a0e1da618637073:log:89', 'hash': '0x092cf9a10e037b8848db7c0ad35d0d5365960bf72f84bbcd1a0e1da618637073', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 15626.215017229975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x034f194bd6ef6b27cffd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:26:13.000Z'}}, {'blockNum': '0x93db10', 'uniqueId': '0x092cf9a10e037b8848db7c0ad35d0d5365960bf72f84bbcd1a0e1da618637073:log:94', 'hash': '0x092cf9a10e037b8848db7c0ad35d0d5365960bf72f84bbcd1a0e1da618637073', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 15626.215017229975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x034f194bd6ef6b27cffd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:26:13.000Z'}}, {'blockNum': '0x93db12', 'uniqueId': '0x70bc9514e43bfef4e9dfcdac2bc83ced82dc53ca91703932e3d5c1c2c4dcda85:log:44', 'hash': '0x70bc9514e43bfef4e9dfcdac2bc83ced82dc53ca91703932e3d5c1c2c4dcda85', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 429.34296320524874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1746549e4756754fad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:26:20.000Z'}}, {'blockNum': '0x93db12', 'uniqueId': '0x70bc9514e43bfef4e9dfcdac2bc83ced82dc53ca91703932e3d5c1c2c4dcda85:log:50', 'hash': '0x70bc9514e43bfef4e9dfcdac2bc83ced82dc53ca91703932e3d5c1c2c4dcda85', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 429.34296320524874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1746549e4756754fad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:26:20.000Z'}}, {'blockNum': '0x93db1b', 'uniqueId': '0x9b77845e06bdd520facd972b82b3229fae2f7b1a3eff7d15110d80b194be0f70:log:91', 'hash': '0x9b77845e06bdd520facd972b82b3229fae2f7b1a3eff7d15110d80b194be0f70', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 23336.355879866995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04f110febf6d328d8126', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:28:55.000Z'}}, {'blockNum': '0x93db1b', 'uniqueId': '0x9b77845e06bdd520facd972b82b3229fae2f7b1a3eff7d15110d80b194be0f70:log:96', 'hash': '0x9b77845e06bdd520facd972b82b3229fae2f7b1a3eff7d15110d80b194be0f70', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 23336.355879866995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04f110febf6d328d8126', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:28:55.000Z'}}, {'blockNum': '0x93db1b', 'uniqueId': '0x8bd20d7bf1ddbf5b6b8a9d8ae379625b56a4d74fefffb1f4d66d1aff1fc589ac:log:100', 'hash': '0x8bd20d7bf1ddbf5b6b8a9d8ae379625b56a4d74fefffb1f4d66d1aff1fc589ac', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3372.3784043651963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb6d126e324c22c891c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:28:55.000Z'}}, {'blockNum': '0x93db1b', 'uniqueId': '0x8bd20d7bf1ddbf5b6b8a9d8ae379625b56a4d74fefffb1f4d66d1aff1fc589ac:log:106', 'hash': '0x8bd20d7bf1ddbf5b6b8a9d8ae379625b56a4d74fefffb1f4d66d1aff1fc589ac', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 3372.3784043651963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb6d126e324c22c891c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:28:55.000Z'}}, {'blockNum': '0x93db1b', 'uniqueId': '0xb9ef33361f05cbe6e5f776b9a63a8f0fc173e9732cb8789a72c461e9a5ce1d35:log:116', 'hash': '0xb9ef33361f05cbe6e5f776b9a63a8f0fc173e9732cb8789a72c461e9a5ce1d35', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1548.0176469670512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53eb0f782ae32301e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:28:55.000Z'}}, {'blockNum': '0x93db1b', 'uniqueId': '0xb9ef33361f05cbe6e5f776b9a63a8f0fc173e9732cb8789a72c461e9a5ce1d35:log:122', 'hash': '0xb9ef33361f05cbe6e5f776b9a63a8f0fc173e9732cb8789a72c461e9a5ce1d35', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1548.0176469670512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53eb0f782ae32301e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:28:55.000Z'}}, {'blockNum': '0x93db1d', 'uniqueId': '0x9e97ad412c47faafde51d868716f013b3361de5a2884a2820df7abdd3937a1a1:log:5', 'hash': '0x9e97ad412c47faafde51d868716f013b3361de5a2884a2820df7abdd3937a1a1', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1332.8642254212775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x484134f7340d6b592f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:29:21.000Z'}}, {'blockNum': '0x93db1d', 'uniqueId': '0x9e97ad412c47faafde51d868716f013b3361de5a2884a2820df7abdd3937a1a1:log:11', 'hash': '0x9e97ad412c47faafde51d868716f013b3361de5a2884a2820df7abdd3937a1a1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1332.8642254212775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x484134f7340d6b592f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:29:21.000Z'}}, {'blockNum': '0x93db1e', 'uniqueId': '0xa1889382d1cdbc613b4821d1b33304d7fbc79b8ace6f9db4ba7a43d0b84a6962:log:42', 'hash': '0xa1889382d1cdbc613b4821d1b33304d7fbc79b8ace6f9db4ba7a43d0b84a6962', 'from': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:29:26.000Z'}}, {'blockNum': '0x93db20', 'uniqueId': '0xc7c6ee11338f3499605f9c7b03f37e6f99e70cf43085002b5873880e5d0a4656:log:46', 'hash': '0xc7c6ee11338f3499605f9c7b03f37e6f99e70cf43085002b5873880e5d0a4656', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1495.7108994598973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51152892715b2c40e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:30:25.000Z'}}, {'blockNum': '0x93db20', 'uniqueId': '0xc7c6ee11338f3499605f9c7b03f37e6f99e70cf43085002b5873880e5d0a4656:log:52', 'hash': '0xc7c6ee11338f3499605f9c7b03f37e6f99e70cf43085002b5873880e5d0a4656', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 1495.7108994598973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51152892715b2c40e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:30:25.000Z'}}, {'blockNum': '0x93db23', 'uniqueId': '0x957cb2db6cc2043edc0c9d78cf223eeac9c0d532ad9274edb4238646db056c31:log:38', 'hash': '0x957cb2db6cc2043edc0c9d78cf223eeac9c0d532ad9274edb4238646db056c31', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:10.000Z'}}, {'blockNum': '0x93db23', 'uniqueId': '0x9b4d37963f23222a82fbf6b4a145db64e3f5f1f15b98b0dd347f38c1eb1ad5fe:log:130', 'hash': '0x9b4d37963f23222a82fbf6b4a145db64e3f5f1f15b98b0dd347f38c1eb1ad5fe', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 297.71017799504597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10238f058ce507fece', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:10.000Z'}}, {'blockNum': '0x93db23', 'uniqueId': '0x9b4d37963f23222a82fbf6b4a145db64e3f5f1f15b98b0dd347f38c1eb1ad5fe:log:136', 'hash': '0x9b4d37963f23222a82fbf6b4a145db64e3f5f1f15b98b0dd347f38c1eb1ad5fe', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 297.71017799504597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10238f058ce507fece', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:10.000Z'}}, {'blockNum': '0x93db24', 'uniqueId': '0x3a4bb0acf81c1aa061e1c7e0b552671a4132a71882d1d7b663fd0c31d120b37d:log:54', 'hash': '0x3a4bb0acf81c1aa061e1c7e0b552671a4132a71882d1d7b663fd0c31d120b37d', 'from': '0x1c29f12d94ad2e6b5321ce226b4550f83ce88fca', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 241.2698092083716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d144a8d2c3b425bbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:27.000Z'}}, {'blockNum': '0x93db24', 'uniqueId': '0x3a4bb0acf81c1aa061e1c7e0b552671a4132a71882d1d7b663fd0c31d120b37d:log:60', 'hash': '0x3a4bb0acf81c1aa061e1c7e0b552671a4132a71882d1d7b663fd0c31d120b37d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 241.2698092083716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d144a8d2c3b425bbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:27.000Z'}}, {'blockNum': '0x93db24', 'uniqueId': '0xb6d9c9a367d20c4fadc713442139c9634f8228aac0f7a11b4858d6987692cd4c:log:110', 'hash': '0xb6d9c9a367d20c4fadc713442139c9634f8228aac0f7a11b4858d6987692cd4c', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 275.02956418611205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ee8cd4b754bb4c13a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:27.000Z'}}, {'blockNum': '0x93db24', 'uniqueId': '0xb6d9c9a367d20c4fadc713442139c9634f8228aac0f7a11b4858d6987692cd4c:log:116', 'hash': '0xb6d9c9a367d20c4fadc713442139c9634f8228aac0f7a11b4858d6987692cd4c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 275.02956418611205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ee8cd4b754bb4c13a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:27.000Z'}}, {'blockNum': '0x93db25', 'uniqueId': '0x2f34469b1caa44ddb843aee6b599edef36947296e6e27da44cd7966ac13dcc4f:log:42', 'hash': '0x2f34469b1caa44ddb843aee6b599edef36947296e6e27da44cd7966ac13dcc4f', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 338.8900644976781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x125f0b5e24e5520f7b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:33.000Z'}}, {'blockNum': '0x93db25', 'uniqueId': '0x2f34469b1caa44ddb843aee6b599edef36947296e6e27da44cd7966ac13dcc4f:log:48', 'hash': '0x2f34469b1caa44ddb843aee6b599edef36947296e6e27da44cd7966ac13dcc4f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 338.8900644976781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x125f0b5e24e5520f7b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:33.000Z'}}, {'blockNum': '0x93db25', 'uniqueId': '0xc8d40e41a5899b9979b2efc9e06bc74044e7786f2067340079ad66f83b4d949e:log:61', 'hash': '0xc8d40e41a5899b9979b2efc9e06bc74044e7786f2067340079ad66f83b4d949e', 'from': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 959.5266287595101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34041b61111ab7af81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:33.000Z'}}, {'blockNum': '0x93db25', 'uniqueId': '0xc8d40e41a5899b9979b2efc9e06bc74044e7786f2067340079ad66f83b4d949e:log:67', 'hash': '0xc8d40e41a5899b9979b2efc9e06bc74044e7786f2067340079ad66f83b4d949e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 959.5266287595101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34041b61111ab7af81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:31:33.000Z'}}, {'blockNum': '0x93db34', 'uniqueId': '0x7928f9e4c20af774e073d41ee04899287a01631e8a4bc561de141fb90a5de776:log:92', 'hash': '0x7928f9e4c20af774e073d41ee04899287a01631e8a4bc561de141fb90a5de776', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1164.4444905331663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f1fe9dea60a16a5e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:34:52.000Z'}}, {'blockNum': '0x93db34', 'uniqueId': '0x7928f9e4c20af774e073d41ee04899287a01631e8a4bc561de141fb90a5de776:log:98', 'hash': '0x7928f9e4c20af774e073d41ee04899287a01631e8a4bc561de141fb90a5de776', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 1164.4444905331663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f1fe9dea60a16a5e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:34:52.000Z'}}, {'blockNum': '0x93db3d', 'uniqueId': '0x0444018ced11022747d96fb9e35a6d361ec4da99abb3fbb58fd50fdfd034a848:log:74', 'hash': '0x0444018ced11022747d96fb9e35a6d361ec4da99abb3fbb58fd50fdfd034a848', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 450.7735907134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186fbd8073f8844b8b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:37:58.000Z'}}, {'blockNum': '0x93db3d', 'uniqueId': '0x0444018ced11022747d96fb9e35a6d361ec4da99abb3fbb58fd50fdfd034a848:log:80', 'hash': '0x0444018ced11022747d96fb9e35a6d361ec4da99abb3fbb58fd50fdfd034a848', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 450.7735907134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186fbd8073f8844b8b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:37:58.000Z'}}, {'blockNum': '0x93db3e', 'uniqueId': '0xac3adf083adf4f5ffae03a99dd9b9c0ad25951bc4aff9935d28de37336bee725:log:57', 'hash': '0xac3adf083adf4f5ffae03a99dd9b9c0ad25951bc4aff9935d28de37336bee725', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 565.9230753976079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eadc2a6af67074230', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:07.000Z'}}, {'blockNum': '0x93db3e', 'uniqueId': '0xac3adf083adf4f5ffae03a99dd9b9c0ad25951bc4aff9935d28de37336bee725:log:63', 'hash': '0xac3adf083adf4f5ffae03a99dd9b9c0ad25951bc4aff9935d28de37336bee725', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 565.9230753976079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eadc2a6af67074230', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:07.000Z'}}, {'blockNum': '0x93db40', 'uniqueId': '0xdffae09aefd5645a09fb95a5116919febb2cdba28dba20097a3fe35081661d8b:log:33', 'hash': '0xdffae09aefd5645a09fb95a5116919febb2cdba28dba20097a3fe35081661d8b', 'from': '0x71168843b49e305e4d53de158683903ef261b37f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2344.0403217708154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7f12181d6485ca00ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:24.000Z'}}, {'blockNum': '0x93db40', 'uniqueId': '0xdffae09aefd5645a09fb95a5116919febb2cdba28dba20097a3fe35081661d8b:log:39', 'hash': '0xdffae09aefd5645a09fb95a5116919febb2cdba28dba20097a3fe35081661d8b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2344.0403217708154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7f12181d6485ca00ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:24.000Z'}}, {'blockNum': '0x93db40', 'uniqueId': '0x72b0cf3065c7051e05618f3a2295744a869f1bda3f91f74a9aba5cb3bedafb68:log:51', 'hash': '0x72b0cf3065c7051e05618f3a2295744a869f1bda3f91f74a9aba5cb3bedafb68', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1167.4656063019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f49d7076f0a492079', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:24.000Z'}}, {'blockNum': '0x93db40', 'uniqueId': '0x72b0cf3065c7051e05618f3a2295744a869f1bda3f91f74a9aba5cb3bedafb68:log:57', 'hash': '0x72b0cf3065c7051e05618f3a2295744a869f1bda3f91f74a9aba5cb3bedafb68', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x71168843b49e305e4d53de158683903ef261b37f', 'value': 1167.4656063019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f49d7076f0a492079', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:24.000Z'}}, {'blockNum': '0x93db40', 'uniqueId': '0x44ca3ff3ced1acb86e746e4771aa0d03579a490a7f8a61a50e4938756913d220:log:83', 'hash': '0x44ca3ff3ced1acb86e746e4771aa0d03579a490a7f8a61a50e4938756913d220', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 278.03745226310616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f128b75ba4d12867b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:24.000Z'}}, {'blockNum': '0x93db40', 'uniqueId': '0x44ca3ff3ced1acb86e746e4771aa0d03579a490a7f8a61a50e4938756913d220:log:89', 'hash': '0x44ca3ff3ced1acb86e746e4771aa0d03579a490a7f8a61a50e4938756913d220', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 278.03745226310616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f128b75ba4d12867b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:24.000Z'}}, {'blockNum': '0x93db40', 'uniqueId': '0x1ef67656769f1c458feffa935efd180fdaeed78d00ce2279ace5cf7a6797304d:log:100', 'hash': '0x1ef67656769f1c458feffa935efd180fdaeed78d00ce2279ace5cf7a6797304d', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 137.88814051307926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077995153be53d0d1e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:24.000Z'}}, {'blockNum': '0x93db40', 'uniqueId': '0x1ef67656769f1c458feffa935efd180fdaeed78d00ce2279ace5cf7a6797304d:log:106', 'hash': '0x1ef67656769f1c458feffa935efd180fdaeed78d00ce2279ace5cf7a6797304d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 137.88814051307926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077995153be53d0d1e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:38:24.000Z'}}, {'blockNum': '0x93db49', 'uniqueId': '0xe5143d7b1798d0f3a5ad78617acd95a7c4c0759684d372eb12c4d6d3797e9f94:log:3', 'hash': '0xe5143d7b1798d0f3a5ad78617acd95a7c4c0759684d372eb12c4d6d3797e9f94', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 777.1529307735161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a2129d9017d2bc2c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:27.000Z'}}, {'blockNum': '0x93db49', 'uniqueId': '0xe5143d7b1798d0f3a5ad78617acd95a7c4c0759684d372eb12c4d6d3797e9f94:log:5', 'hash': '0xe5143d7b1798d0f3a5ad78617acd95a7c4c0759684d372eb12c4d6d3797e9f94', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 777.1529307735161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a2129d9017d2bc2c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:27.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0xae7c54ff9e8dcd8c9bc80d5b54ad09292db53b51afe97189808841e255221f8a:log:25', 'hash': '0xae7c54ff9e8dcd8c9bc80d5b54ad09292db53b51afe97189808841e255221f8a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 15500.950446854842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03484ee6afdbf36ea41e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0xae7c54ff9e8dcd8c9bc80d5b54ad09292db53b51afe97189808841e255221f8a:log:30', 'hash': '0xae7c54ff9e8dcd8c9bc80d5b54ad09292db53b51afe97189808841e255221f8a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 15500.950446854842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03484ee6afdbf36ea41e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0xae7c54ff9e8dcd8c9bc80d5b54ad09292db53b51afe97189808841e255221f8a:log:31', 'hash': '0xae7c54ff9e8dcd8c9bc80d5b54ad09292db53b51afe97189808841e255221f8a', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 15499.400351810156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03483963a4a0f8dc5354', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0xae7c54ff9e8dcd8c9bc80d5b54ad09292db53b51afe97189808841e255221f8a:log:33', 'hash': '0xae7c54ff9e8dcd8c9bc80d5b54ad09292db53b51afe97189808841e255221f8a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 15499.400351810156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03483963a4a0f8dc5354', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0xa44e8095b0d198b69ead6bb25f68250def7ff51bd64ca575fffa7f99ff0ea6e3:log:85', 'hash': '0xa44e8095b0d198b69ead6bb25f68250def7ff51bd64ca575fffa7f99ff0ea6e3', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0xba60eecd25c7e766e45ef56a100a3278c7fd661b', 'value': 1025.1290924576792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x37928626393a89b834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0x46da3fcf9ccd8581bac28ea3024e877e49c9b6efc471a63f0f43809e0c591f73:log:88', 'hash': '0x46da3fcf9ccd8581bac28ea3024e877e49c9b6efc471a63f0f43809e0c591f73', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 2222.2190050888585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x78777bdb4eb363b14f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0xe9c841159a079e19282cce7984cbaea98eb569d67cb392887435dff97b57c06f:log:101', 'hash': '0xe9c841159a079e19282cce7984cbaea98eb569d67cb392887435dff97b57c06f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2102.4457932382957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x71f94bedb70afb400f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0xe9c841159a079e19282cce7984cbaea98eb569d67cb392887435dff97b57c06f:log:106', 'hash': '0xe9c841159a079e19282cce7984cbaea98eb569d67cb392887435dff97b57c06f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'value': 2102.4457932382957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x71f94bedb70afb400f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0xe9c841159a079e19282cce7984cbaea98eb569d67cb392887435dff97b57c06f:log:108', 'hash': '0xe9c841159a079e19282cce7984cbaea98eb569d67cb392887435dff97b57c06f', 'from': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 2102.4457932382957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x71f94bedb70afb400f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0x736aa6233cb76b556f5f67b3ab06518bf03bbd42f6d170bb639edc7965131f14:log:113', 'hash': '0x736aa6233cb76b556f5f67b3ab06518bf03bbd42f6d170bb639edc7965131f14', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 2216.957404430307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x782e76e562b878ef0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4a', 'uniqueId': '0x552f7f826c8ee7e8b5b329c9784bbd3f44f7cbb09b9224fcd8dadd75cbfc05a6:log:119', 'hash': '0x552f7f826c8ee7e8b5b329c9784bbd3f44f7cbb09b9224fcd8dadd75cbfc05a6', 'from': '0xba60eecd25c7e766e45ef56a100a3278c7fd661b', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 1025.1290924576792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x37928626393a89b834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:40:55.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0xd90984859ab5c7bbf30cba08bb6e36ec08a5e2825c2fc074cdf4dd14da69e9ed:log:13', 'hash': '0xd90984859ab5c7bbf30cba08bb6e36ec08a5e2825c2fc074cdf4dd14da69e9ed', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 777.1529307735161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a2129d9017d2bc2c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0x72bd2955cd1b76bad5e94523442c3d071631e2120f06ed34314772d8c2e12e9a:log:21', 'hash': '0x72bd2955cd1b76bad5e94523442c3d071631e2120f06ed34314772d8c2e12e9a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3916.7383077627314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd453a9c3242a3508a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0x72bd2955cd1b76bad5e94523442c3d071631e2120f06ed34314772d8c2e12e9a:log:26', 'hash': '0x72bd2955cd1b76bad5e94523442c3d071631e2120f06ed34314772d8c2e12e9a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 3916.7383077627314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd453a9c3242a3508a3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0x49503f46cb3e243db6eb307e39adc12daf7d4654175e3e61c62b265549695da1:log:86', 'hash': '0x49503f46cb3e243db6eb307e39adc12daf7d4654175e3e61c62b265549695da1', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1221.6408975361442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4239ac53c73b3e30be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0x49503f46cb3e243db6eb307e39adc12daf7d4654175e3e61c62b265549695da1:log:92', 'hash': '0x49503f46cb3e243db6eb307e39adc12daf7d4654175e3e61c62b265549695da1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1221.6408975361442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4239ac53c73b3e30be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0xd769042239954b27ca914c610b8a6e909e61a3416e6750a29dd1ccc43eb4131a:log:116', 'hash': '0xd769042239954b27ca914c610b8a6e909e61a3416e6750a29dd1ccc43eb4131a', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 816.5967997331468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c448e9ed78f030d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0xd769042239954b27ca914c610b8a6e909e61a3416e6750a29dd1ccc43eb4131a:log:122', 'hash': '0xd769042239954b27ca914c610b8a6e909e61a3416e6750a29dd1ccc43eb4131a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 816.5967997331468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c448e9ed78f030d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0x9b55ee311735f538204b83a18b7cc6ada6ec1bc374e52ddf12551788b3d7b2c4:log:134', 'hash': '0x9b55ee311735f538204b83a18b7cc6ada6ec1bc374e52ddf12551788b3d7b2c4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2133.282436225832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x73a53db121f4a05cf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0x9b55ee311735f538204b83a18b7cc6ada6ec1bc374e52ddf12551788b3d7b2c4:log:139', 'hash': '0x9b55ee311735f538204b83a18b7cc6ada6ec1bc374e52ddf12551788b3d7b2c4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 2133.282436225832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x73a53db121f4a05cf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0x9b55ee311735f538204b83a18b7cc6ada6ec1bc374e52ddf12551788b3d7b2c4:log:141', 'hash': '0x9b55ee311735f538204b83a18b7cc6ada6ec1bc374e52ddf12551788b3d7b2c4', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 2133.282436225832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x73a53db121f4a05cf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0x07ca26f95ba28740296ea3799a67bbfde9caadf9982021f8d16ba0112f1957ef:log:143', 'hash': '0x07ca26f95ba28740296ea3799a67bbfde9caadf9982021f8d16ba0112f1957ef', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 762.8048265396671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x295a0b24398252fdfa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0xdc0acd54b4f4d4bb19ed2287d518271a900bd2c1ca5b194c11db85d5b2e5b713:log:147', 'hash': '0xdc0acd54b4f4d4bb19ed2287d518271a900bd2c1ca5b194c11db85d5b2e5b713', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 751.9123559129614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28c2e14fe6832711c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0xe16ad5fec5f6fa93ca20fd11f1b95c8570ab6f5783889052888c390a2899f135:log:157', 'hash': '0xe16ad5fec5f6fa93ca20fd11f1b95c8570ab6f5783889052888c390a2899f135', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2132.2270608613862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7396983ed48e25446a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0xe16ad5fec5f6fa93ca20fd11f1b95c8570ab6f5783889052888c390a2899f135:log:162', 'hash': '0xe16ad5fec5f6fa93ca20fd11f1b95c8570ab6f5783889052888c390a2899f135', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 2132.2270608613862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7396983ed48e25446a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4b', 'uniqueId': '0xe16ad5fec5f6fa93ca20fd11f1b95c8570ab6f5783889052888c390a2899f135:log:164', 'hash': '0xe16ad5fec5f6fa93ca20fd11f1b95c8570ab6f5783889052888c390a2899f135', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 2132.2270608613862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7396983ed48e25446a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:12.000Z'}}, {'blockNum': '0x93db4d', 'uniqueId': '0x0bf37d2f622398f7e9e96c9019ae021f700217a69ed5f216cfb09dc7a050c5fd:log:58', 'hash': '0x0bf37d2f622398f7e9e96c9019ae021f700217a69ed5f216cfb09dc7a050c5fd', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 11567.128896095657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02730e290db939fd0d09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:32.000Z'}}, {'blockNum': '0x93db4d', 'uniqueId': '0x0bf37d2f622398f7e9e96c9019ae021f700217a69ed5f216cfb09dc7a050c5fd:log:64', 'hash': '0x0bf37d2f622398f7e9e96c9019ae021f700217a69ed5f216cfb09dc7a050c5fd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'value': 11567.128896095657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02730e290db939fd0d09', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:32.000Z'}}, {'blockNum': '0x93db4e', 'uniqueId': '0xa2dfe44b9efc988d9216962ac63eb099cc89e17c386bbaec89cfe839478bd13e:log:9', 'hash': '0xa2dfe44b9efc988d9216962ac63eb099cc89e17c386bbaec89cfe839478bd13e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 15374.615563405849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x034175a704b695c75a70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:49.000Z'}}, {'blockNum': '0x93db4e', 'uniqueId': '0xa2dfe44b9efc988d9216962ac63eb099cc89e17c386bbaec89cfe839478bd13e:log:14', 'hash': '0xa2dfe44b9efc988d9216962ac63eb099cc89e17c386bbaec89cfe839478bd13e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 15374.615563405849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x034175a704b695c75a70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:49.000Z'}}, {'blockNum': '0x93db4e', 'uniqueId': '0xa2dfe44b9efc988d9216962ac63eb099cc89e17c386bbaec89cfe839478bd13e:log:15', 'hash': '0xa2dfe44b9efc988d9216962ac63eb099cc89e17c386bbaec89cfe839478bd13e', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 15373.078101849507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03416050db92d44768f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:49.000Z'}}, {'blockNum': '0x93db4e', 'uniqueId': '0xa2dfe44b9efc988d9216962ac63eb099cc89e17c386bbaec89cfe839478bd13e:log:17', 'hash': '0xa2dfe44b9efc988d9216962ac63eb099cc89e17c386bbaec89cfe839478bd13e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 15373.078101849507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03416050db92d44768f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:41:49.000Z'}}, {'blockNum': '0x93db4f', 'uniqueId': '0xa25274003fa301a74a627c31bc777ecbbdcd939d5f95d9e7eba5409cd2622cd0:log:30', 'hash': '0xa25274003fa301a74a627c31bc777ecbbdcd939d5f95d9e7eba5409cd2622cd0', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3257.083534480998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb0911d39d7a1a5e9cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:01.000Z'}}, {'blockNum': '0x93db4f', 'uniqueId': '0xa25274003fa301a74a627c31bc777ecbbdcd939d5f95d9e7eba5409cd2622cd0:log:36', 'hash': '0xa25274003fa301a74a627c31bc777ecbbdcd939d5f95d9e7eba5409cd2622cd0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 3257.083534480998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb0911d39d7a1a5e9cb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:01.000Z'}}, {'blockNum': '0x93db4f', 'uniqueId': '0x8d2149437edf115ef04a3de913fb75ed3d6d8d5e333e8ef2209ba676d30e67f8:log:68', 'hash': '0x8d2149437edf115ef04a3de913fb75ed3d6d8d5e333e8ef2209ba676d30e67f8', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 836.1499533161007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d53e9606dbda2a986', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:01.000Z'}}, {'blockNum': '0x93db4f', 'uniqueId': '0x8d2149437edf115ef04a3de913fb75ed3d6d8d5e333e8ef2209ba676d30e67f8:log:72', 'hash': '0x8d2149437edf115ef04a3de913fb75ed3d6d8d5e333e8ef2209ba676d30e67f8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 836.1499533161007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d53e9606dbda2a986', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:01.000Z'}}, {'blockNum': '0x93db4f', 'uniqueId': '0x9aa53cc0e325137b17f2833dc52db9b493448bb6df5625a8d40534f977cca897:log:124', 'hash': '0x9aa53cc0e325137b17f2833dc52db9b493448bb6df5625a8d40534f977cca897', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3165.7890374561316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xab9e26047f4689109d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:01.000Z'}}, {'blockNum': '0x93db4f', 'uniqueId': '0x9aa53cc0e325137b17f2833dc52db9b493448bb6df5625a8d40534f977cca897:log:130', 'hash': '0x9aa53cc0e325137b17f2833dc52db9b493448bb6df5625a8d40534f977cca897', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 3165.7890374561316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xab9e26047f4689109d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:01.000Z'}}, {'blockNum': '0x93db4f', 'uniqueId': '0x35fd2dd9a2deada84fec522d14e109e3884e8fdc8ea6060ff4438da0817441a1:log:144', 'hash': '0x35fd2dd9a2deada84fec522d14e109e3884e8fdc8ea6060ff4438da0817441a1', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1939.0521019174569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x691dc0ed27d48d11e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:01.000Z'}}, {'blockNum': '0x93db4f', 'uniqueId': '0x35fd2dd9a2deada84fec522d14e109e3884e8fdc8ea6060ff4438da0817441a1:log:150', 'hash': '0x35fd2dd9a2deada84fec522d14e109e3884e8fdc8ea6060ff4438da0817441a1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1939.0521019174569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x691dc0ed27d48d11e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:01.000Z'}}, {'blockNum': '0x93db50', 'uniqueId': '0x1219507f3322b7c523e9cb1620bfa988153a3bd76df28fea590e4dc496376971:log:36', 'hash': '0x1219507f3322b7c523e9cb1620bfa988153a3bd76df28fea590e4dc496376971', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1093.1717977207704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b42ce662795b29f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:06.000Z'}}, {'blockNum': '0x93db50', 'uniqueId': '0x1219507f3322b7c523e9cb1620bfa988153a3bd76df28fea590e4dc496376971:log:42', 'hash': '0x1219507f3322b7c523e9cb1620bfa988153a3bd76df28fea590e4dc496376971', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1093.1717977207704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b42ce662795b29f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:06.000Z'}}, {'blockNum': '0x93db50', 'uniqueId': '0xce8eb22f59f583ab485c5bd4275d90f4a1cc4a6cec89da6e7980e117c0f41824:log:62', 'hash': '0xce8eb22f59f583ab485c5bd4275d90f4a1cc4a6cec89da6e7980e117c0f41824', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x8236a838771b65e8b8add286a5f3a656fdc69599', 'value': 4427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xeffcf774bfae4c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:06.000Z'}}, {'blockNum': '0x93db50', 'uniqueId': '0xb11e4872b0756408d5e7edc557e38cc72b59cc423443dc00eeb4f28cc9bdbacf:log:129', 'hash': '0xb11e4872b0756408d5e7edc557e38cc72b59cc423443dc00eeb4f28cc9bdbacf', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 543.6114163268966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d781fb6f8fba7ee69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:06.000Z'}}, {'blockNum': '0x93db50', 'uniqueId': '0xb11e4872b0756408d5e7edc557e38cc72b59cc423443dc00eeb4f28cc9bdbacf:log:135', 'hash': '0xb11e4872b0756408d5e7edc557e38cc72b59cc423443dc00eeb4f28cc9bdbacf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 543.6114163268966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d781fb6f8fba7ee69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:06.000Z'}}, {'blockNum': '0x93db50', 'uniqueId': '0xb9745bd53a6167491dad56e84a8502da3a24cf1977b0526adc72e4981c076357:log:153', 'hash': '0xb9745bd53a6167491dad56e84a8502da3a24cf1977b0526adc72e4981c076357', 'from': '0xda764901e0a424a3356633d592a179de65e310fe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 118.12407747524895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06674d069d94ef57a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:06.000Z'}}, {'blockNum': '0x93db50', 'uniqueId': '0xb9745bd53a6167491dad56e84a8502da3a24cf1977b0526adc72e4981c076357:log:159', 'hash': '0xb9745bd53a6167491dad56e84a8502da3a24cf1977b0526adc72e4981c076357', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 118.12407747524895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06674d069d94ef57a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:06.000Z'}}, {'blockNum': '0x93db51', 'uniqueId': '0xda700657df69146531c8c070ab0e4e5e1271f52af2e55aff18b37ebc4de1628e:log:58', 'hash': '0xda700657df69146531c8c070ab0e4e5e1271f52af2e55aff18b37ebc4de1628e', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2233.7722143216156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7917d119e4a19ed4e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:36.000Z'}}, {'blockNum': '0x93db51', 'uniqueId': '0xda700657df69146531c8c070ab0e4e5e1271f52af2e55aff18b37ebc4de1628e:log:63', 'hash': '0xda700657df69146531c8c070ab0e4e5e1271f52af2e55aff18b37ebc4de1628e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 2233.7722143216156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7917d119e4a19ed4e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:36.000Z'}}, {'blockNum': '0x93db51', 'uniqueId': '0xda700657df69146531c8c070ab0e4e5e1271f52af2e55aff18b37ebc4de1628e:log:65', 'hash': '0xda700657df69146531c8c070ab0e4e5e1271f52af2e55aff18b37ebc4de1628e', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2233.7722143216156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7917d119e4a19ed4e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:36.000Z'}}, {'blockNum': '0x93db51', 'uniqueId': '0xda700657df69146531c8c070ab0e4e5e1271f52af2e55aff18b37ebc4de1628e:log:67', 'hash': '0xda700657df69146531c8c070ab0e4e5e1271f52af2e55aff18b37ebc4de1628e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2233.7722143216156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7917d119e4a19ed4e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:36.000Z'}}, {'blockNum': '0x93db52', 'uniqueId': '0x836b86bc9fac2ed6866dae87d23717d4ba885471cfbcaf8bbece829d1f1d4780:log:22', 'hash': '0x836b86bc9fac2ed6866dae87d23717d4ba885471cfbcaf8bbece829d1f1d4780', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 15328.364175676244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x033ef3c9149f9de63fce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:39.000Z'}}, {'blockNum': '0x93db52', 'uniqueId': '0x836b86bc9fac2ed6866dae87d23717d4ba885471cfbcaf8bbece829d1f1d4780:log:27', 'hash': '0x836b86bc9fac2ed6866dae87d23717d4ba885471cfbcaf8bbece829d1f1d4780', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 15328.364175676244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x033ef3c9149f9de63fce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:39.000Z'}}, {'blockNum': '0x93db52', 'uniqueId': '0x71419aad87ccf7fceff83c3ba36a5fd9adf6bb04e4ef947303120c919f117784:log:34', 'hash': '0x71419aad87ccf7fceff83c3ba36a5fd9adf6bb04e4ef947303120c919f117784', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 30872.478453659664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x068999b48033cd23bc48', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:42:39.000Z'}}, {'blockNum': '0x93db54', 'uniqueId': '0xa27ae125e652c5ddd6c953749c832d0481ec6cfcd6d106307d7529f45b434ede:log:12', 'hash': '0xa27ae125e652c5ddd6c953749c832d0481ec6cfcd6d106307d7529f45b434ede', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 633.9922939188763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x225e691848b9a9c2c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:16.000Z'}}, {'blockNum': '0x93db54', 'uniqueId': '0xa27ae125e652c5ddd6c953749c832d0481ec6cfcd6d106307d7529f45b434ede:log:18', 'hash': '0xa27ae125e652c5ddd6c953749c832d0481ec6cfcd6d106307d7529f45b434ede', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 633.9922939188763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x225e691848b9a9c2c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:16.000Z'}}, {'blockNum': '0x93db54', 'uniqueId': '0xf380851ec36aba2538decb2d3360453c0e83dabaa08fdc88072fc056736fb135:log:31', 'hash': '0xf380851ec36aba2538decb2d3360453c0e83dabaa08fdc88072fc056736fb135', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1298.5394591842994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4664dae62bd4051332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:16.000Z'}}, {'blockNum': '0x93db54', 'uniqueId': '0xf380851ec36aba2538decb2d3360453c0e83dabaa08fdc88072fc056736fb135:log:37', 'hash': '0xf380851ec36aba2538decb2d3360453c0e83dabaa08fdc88072fc056736fb135', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1298.5394591842994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4664dae62bd4051332', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:16.000Z'}}, {'blockNum': '0x93db54', 'uniqueId': '0x7804f3821da51eae35bcde2d37ea869dbaa08b598ddbbe465e96f90926268490:log:97', 'hash': '0x7804f3821da51eae35bcde2d37ea869dbaa08b598ddbbe465e96f90926268490', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 667.0918345649886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2429c2492201cc33eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:16.000Z'}}, {'blockNum': '0x93db54', 'uniqueId': '0x7804f3821da51eae35bcde2d37ea869dbaa08b598ddbbe465e96f90926268490:log:103', 'hash': '0x7804f3821da51eae35bcde2d37ea869dbaa08b598ddbbe465e96f90926268490', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 667.0918345649886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2429c2492201cc33eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:16.000Z'}}, {'blockNum': '0x93db54', 'uniqueId': '0xc67680fbbd0f32f1e74cdb69b10eae5828547c8dab853c6a791a4c7253169641:log:144', 'hash': '0xc67680fbbd0f32f1e74cdb69b10eae5828547c8dab853c6a791a4c7253169641', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 313.52961386068324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10ff18f2a7bb69e077', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:16.000Z'}}, {'blockNum': '0x93db54', 'uniqueId': '0xc67680fbbd0f32f1e74cdb69b10eae5828547c8dab853c6a791a4c7253169641:log:150', 'hash': '0xc67680fbbd0f32f1e74cdb69b10eae5828547c8dab853c6a791a4c7253169641', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 313.52961386068324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10ff18f2a7bb69e077', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:16.000Z'}}, {'blockNum': '0x93db55', 'uniqueId': '0x526611f1545b1d6dd67b3feb3c60a31a6e97f533e41626dd951bd9a407d39557:log:163', 'hash': '0x526611f1545b1d6dd67b3feb3c60a31a6e97f533e41626dd951bd9a407d39557', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 5655.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013295d435e075ae0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:21.000Z'}}, {'blockNum': '0x93db55', 'uniqueId': '0x3f92a2f1e8754befd7ebcc88bee471311acc2b7a831b7b4cc69159ef1b91003e:log:184', 'hash': '0x3f92a2f1e8754befd7ebcc88bee471311acc2b7a831b7b4cc69159ef1b91003e', 'from': '0x71168843b49e305e4d53de158683903ef261b37f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2086.6358539065614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x711de3bda84e7b889e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:21.000Z'}}, {'blockNum': '0x93db55', 'uniqueId': '0x3f92a2f1e8754befd7ebcc88bee471311acc2b7a831b7b4cc69159ef1b91003e:log:190', 'hash': '0x3f92a2f1e8754befd7ebcc88bee471311acc2b7a831b7b4cc69159ef1b91003e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2086.6358539065614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x711de3bda84e7b889e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:21.000Z'}}, {'blockNum': '0x93db56', 'uniqueId': '0x1549e6f1a10fee9bf94ca892cf259f32dacf15fadfb0b87579ce08b5cbb10109:log:34', 'hash': '0x1549e6f1a10fee9bf94ca892cf259f32dacf15fadfb0b87579ce08b5cbb10109', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1039.2767052225026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3856dc91136da0f729', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:59.000Z'}}, {'blockNum': '0x93db56', 'uniqueId': '0x1549e6f1a10fee9bf94ca892cf259f32dacf15fadfb0b87579ce08b5cbb10109:log:40', 'hash': '0x1549e6f1a10fee9bf94ca892cf259f32dacf15fadfb0b87579ce08b5cbb10109', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x71168843b49e305e4d53de158683903ef261b37f', 'value': 1039.2767052225026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3856dc91136da0f729', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:43:59.000Z'}}, {'blockNum': '0x93db57', 'uniqueId': '0x9017c3c7176075f6648148b9ab9aa0c405e92b5e7a7a3405fb8df4fccba29c0f:log:108', 'hash': '0x9017c3c7176075f6648148b9ab9aa0c405e92b5e7a7a3405fb8df4fccba29c0f', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 6342.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0157d32cdf427c450000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:44:08.000Z'}}, {'blockNum': '0x93db58', 'uniqueId': '0x84ef5a9c4ce1d3599256575d6d5bd096b5424796c8811a5fab6e8f99e9d1495c:log:76', 'hash': '0x84ef5a9c4ce1d3599256575d6d5bd096b5424796c8811a5fab6e8f99e9d1495c', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 6343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0157dacedd587ebc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:44:23.000Z'}}, {'blockNum': '0x93db59', 'uniqueId': '0x812fbaeeb899eb857369a4951329863c61fdb73d492ba9ff8f68201f79fc93c2:log:142', 'hash': '0x812fbaeeb899eb857369a4951329863c61fdb73d492ba9ff8f68201f79fc93c2', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 79.14692734761476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044a625f15923a5405', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:44:49.000Z'}}, {'blockNum': '0x93db59', 'uniqueId': '0x812fbaeeb899eb857369a4951329863c61fdb73d492ba9ff8f68201f79fc93c2:log:148', 'hash': '0x812fbaeeb899eb857369a4951329863c61fdb73d492ba9ff8f68201f79fc93c2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 79.14692734761476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044a625f15923a5405', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:44:49.000Z'}}, {'blockNum': '0x93db5a', 'uniqueId': '0xf93ec1b6256a11cd9aead52f75fa929e58b3e91ee9df60817cc9bf0507ec9e75:log:118', 'hash': '0xf93ec1b6256a11cd9aead52f75fa929e58b3e91ee9df60817cc9bf0507ec9e75', 'from': '0x89f26fff3f690b19057e6beb7a82c5c29adfe20b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 137.38939093004157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0772a92b217466f54e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:44:58.000Z'}}, {'blockNum': '0x93db5a', 'uniqueId': '0xf93ec1b6256a11cd9aead52f75fa929e58b3e91ee9df60817cc9bf0507ec9e75:log:124', 'hash': '0xf93ec1b6256a11cd9aead52f75fa929e58b3e91ee9df60817cc9bf0507ec9e75', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 137.38939093004157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0772a92b217466f54e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:44:58.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0x01d6542ccfb0fb3c01a43f3fb7066a7e2627f5da072a01964ec93b9d3cccffa3:log:29', 'hash': '0x01d6542ccfb0fb3c01a43f3fb7066a7e2627f5da072a01964ec93b9d3cccffa3', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 15326.415909376345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x033ed8bf72bf007620db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0x01d6542ccfb0fb3c01a43f3fb7066a7e2627f5da072a01964ec93b9d3cccffa3:log:34', 'hash': '0x01d6542ccfb0fb3c01a43f3fb7066a7e2627f5da072a01964ec93b9d3cccffa3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 15326.415909376345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x033ed8bf72bf007620db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0x01d6542ccfb0fb3c01a43f3fb7066a7e2627f5da072a01964ec93b9d3cccffa3:log:35', 'hash': '0x01d6542ccfb0fb3c01a43f3fb7066a7e2627f5da072a01964ec93b9d3cccffa3', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 15324.883267785406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x033ec37a6956e4a25a5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0x01d6542ccfb0fb3c01a43f3fb7066a7e2627f5da072a01964ec93b9d3cccffa3:log:37', 'hash': '0x01d6542ccfb0fb3c01a43f3fb7066a7e2627f5da072a01964ec93b9d3cccffa3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 15324.883267785406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x033ec37a6956e4a25a5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032:log:47', 'hash': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1606.1050922781076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57112f87eade96270d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032:log:52', 'hash': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'value': 1606.1050922781076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57112f87eade96270d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032:log:53', 'hash': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032', 'from': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'to': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'value': 1606.1050922781076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57112f87eade96270d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032:log:54', 'hash': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032', 'from': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 1606.1050922781076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x57112f87eade96270d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032:log:55', 'hash': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 694.9305119176448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25ac1922b07f946cf4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032:log:57', 'hash': '0xdbed5913fcfccf815aa52d2363cee3c66bcfa8241f9754e939a63bd714571032', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2301.0356041957525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7cbd48aa9b5e2a9401', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0x44fed79aae927ef40ee50c09250a00d8b23fb2ce29edc5d67e99865f478224e0:log:73', 'hash': '0x44fed79aae927ef40ee50c09250a00d8b23fb2ce29edc5d67e99865f478224e0', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 25920.08385527915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057d216c77e2eb5fb39e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5b', 'uniqueId': '0x44fed79aae927ef40ee50c09250a00d8b23fb2ce29edc5d67e99865f478224e0:log:78', 'hash': '0x44fed79aae927ef40ee50c09250a00d8b23fb2ce29edc5d67e99865f478224e0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x23bb4e19767c51afd9bebdd5cb23ced735b97618', 'value': 25920.08385527915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x057d216c77e2eb5fb39e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:45:12.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0x1f6cb373543b67398fa97803e9ddb79138028a57fcb56f59bf7b2d5d235c55d5:log:13', 'hash': '0x1f6cb373543b67398fa97803e9ddb79138028a57fcb56f59bf7b2d5d235c55d5', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 15324.883267785406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x033ec37a6956e4a25a5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0xa894442be795c2b6d665a93ca2915149211e9250c90c88223ed888f281015cae:log:58', 'hash': '0xa894442be795c2b6d665a93ca2915149211e9250c90c88223ed888f281015cae', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 826.8684731187749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cd31aef5d5635ea16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0xa894442be795c2b6d665a93ca2915149211e9250c90c88223ed888f281015cae:log:62', 'hash': '0xa894442be795c2b6d665a93ca2915149211e9250c90c88223ed888f281015cae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 826.8684731187749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cd31aef5d5635ea16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0xaf69243f7e1252eced95d9b48fb089b00495fb2ab0232ad2a009e93aeafa97db:log:80', 'hash': '0xaf69243f7e1252eced95d9b48fb089b00495fb2ab0232ad2a009e93aeafa97db', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 788.4572318060939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2abe0acae6f60c27c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0xaf69243f7e1252eced95d9b48fb089b00495fb2ab0232ad2a009e93aeafa97db:log:86', 'hash': '0xaf69243f7e1252eced95d9b48fb089b00495fb2ab0232ad2a009e93aeafa97db', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 788.4572318060939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2abe0acae6f60c27c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0xc3191e641c45d228df7bed08229d0916e4643a78d40b24f69e80d9ae639c2a5e:log:104', 'hash': '0xc3191e641c45d228df7bed08229d0916e4643a78d40b24f69e80d9ae639c2a5e', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1274.6654328820673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45198951bd45246b53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0xc3191e641c45d228df7bed08229d0916e4643a78d40b24f69e80d9ae639c2a5e:log:110', 'hash': '0xc3191e641c45d228df7bed08229d0916e4643a78d40b24f69e80d9ae639c2a5e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1274.6654328820673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45198951bd45246b53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0x00552af36cbf84a3899eb12f6d8c667a46bd3384d82a81d33a3308e4ed966928:log:121', 'hash': '0x00552af36cbf84a3899eb12f6d8c667a46bd3384d82a81d33a3308e4ed966928', 'from': '0x89f26fff3f690b19057e6beb7a82c5c29adfe20b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1090.6223230554288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b1f6cd87446243ba8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0x00552af36cbf84a3899eb12f6d8c667a46bd3384d82a81d33a3308e4ed966928:log:127', 'hash': '0x00552af36cbf84a3899eb12f6d8c667a46bd3384d82a81d33a3308e4ed966928', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1090.6223230554288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b1f6cd87446243ba8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0x94695fa10b8c0cbac297cb6b52e81800b22b863e509bf18859acb013ec0679e8:log:138', 'hash': '0x94695fa10b8c0cbac297cb6b52e81800b22b863e509bf18859acb013ec0679e8', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1523.3575569303923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5294d53aef16ee4036', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0x94695fa10b8c0cbac297cb6b52e81800b22b863e509bf18859acb013ec0679e8:log:144', 'hash': '0x94695fa10b8c0cbac297cb6b52e81800b22b863e509bf18859acb013ec0679e8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1523.3575569303923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5294d53aef16ee4036', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0x278ebad08f1e8290a5bda16f0060b4e6e86b81c9d83f786da76e00991b346635:log:155', 'hash': '0x278ebad08f1e8290a5bda16f0060b4e6e86b81c9d83f786da76e00991b346635', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 823.6276088206948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ca6211274d1e7546c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}, {'blockNum': '0x93db5d', 'uniqueId': '0x278ebad08f1e8290a5bda16f0060b4e6e86b81c9d83f786da76e00991b346635:log:161', 'hash': '0x278ebad08f1e8290a5bda16f0060b4e6e86b81c9d83f786da76e00991b346635', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 823.6276088206948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ca6211274d1e7546c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-17T15:46:06.000Z'}}], 'pageKey': 'c192f204-6065-4ab5-bdc3-62cced7ed188'}}
Answer is paginated. Downloading more pages...
Number of returned transfers:  1001
Answer is complete
 
symbol             LUN
group              BPF
date        2020-03-18
hour             19:00
exchange       binance
Name: 813, dtype: object
HERE
 Symbol: LUN, Contract: 0xfa05a73ffe78ef8f1a739473e462c54bae6567d9
Datetime timestamps:  2020-03-18 19:00:00 2020-03-18 07:00:00 2020-03-19 07:00:00
Unix timestamps:  1584511200.0 1584597600.0
Hex Block Numbers:  0x93ea92 0x940421
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x93f405', 'uniqueId': '0x3d32cdcdc125d7fcb9d596680c7bf44161854aea7f6ec036e845dd95c3c35ef0:log:10', 'hash': '0x3d32cdcdc125d7fcb9d596680c7bf44161854aea7f6ec036e845dd95c3c35ef0', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0f0425b0641f340000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T15:00:40.000Z'}}, {'blockNum': '0x93f428', 'uniqueId': '0xc3a9a25d1bf4d1f40edf53d6fe4c559f76ce3e24d69c99f4b255120cccbcb5c8:log:90', 'hash': '0xc3a9a25d1bf4d1f40edf53d6fe4c559f76ce3e24d69c99f4b255120cccbcb5c8', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0f0425b0641f340000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T15:08:51.000Z'}}, {'blockNum': '0x93f48f', 'uniqueId': '0xc8b3692aa928857002912e08f27eb31118e846cb3c1f23fc4b5b40c8a4364552:log:109', 'hash': '0xc8b3692aa928857002912e08f27eb31118e846cb3c1f23fc4b5b40c8a4364552', 'from': '0x07c369a666e5c77cc0c5f290c9e5610305f1980d', 'to': '0xdaa6959ec75daf9a7f91a786e140458683b51e71', 'value': 2.21748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x1ec6124fb0888000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T15:32:27.000Z'}}, {'blockNum': '0x93f64d', 'uniqueId': '0xb11802c13c8ccacebdd667057a5cf0258ec6eb215affe01eada3e23cc32cfdb4:log:1', 'hash': '0xb11802c13c8ccacebdd667057a5cf0258ec6eb215affe01eada3e23cc32cfdb4', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd460097db6eaa32df588390bc1caafaef18c45bd', 'value': 0.0031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0b036efecdc000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T17:10:34.000Z'}}, {'blockNum': '0x93f854', 'uniqueId': '0x2400c3e25b5a72dda08539aeee9ed7fac2e76defbb884b3f602b730111bff076:log:1', 'hash': '0x2400c3e25b5a72dda08539aeee9ed7fac2e76defbb884b3f602b730111bff076', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:01:40.000Z'}}, {'blockNum': '0x93f861', 'uniqueId': '0x00f55215653957dbe2e2755964776719b7b69be1af9ecc2d44de0cec65ed811c:log:0', 'hash': '0x00f55215653957dbe2e2755964776719b7b69be1af9ecc2d44de0cec65ed811c', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 216.0440761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0bb636be8ff7f5a800', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:06:29.000Z'}}, {'blockNum': '0x93f86b', 'uniqueId': '0xd088e9f66b4f41caa3fe9a7d6f37dbfeaa5e655e70ded4b9c7cd4cd6176814f6:log:20', 'hash': '0xd088e9f66b4f41caa3fe9a7d6f37dbfeaa5e655e70ded4b9c7cd4cd6176814f6', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:09:10.000Z'}}, {'blockNum': '0x93f894', 'uniqueId': '0x4f4215012a1e88fddd7e9bf7bf44e4f362f5c82e759387ba4fb2a9d311e3de36:log:9', 'hash': '0x4f4215012a1e88fddd7e9bf7bf44e4f362f5c82e759387ba4fb2a9d311e3de36', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 216.0440761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LUN', 'category': 'erc20', 'rawContract': {'value': '0x0bb636be8ff7f5a800', 'address': '0xfa05a73ffe78ef8f1a739473e462c54bae6567d9', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-18T19:19:04.000Z'}}]}}
Number of returned transfers:  8
Answer is complete
 
symbol             TNB
group              BPF
date        2020-03-21
hour             16:00
exchange       binance
Name: 814, dtype: object
HERE
 Symbol: TNB, Contract: 
Datetime timestamps:  2020-03-21 16:00:00 2020-03-21 04:00:00 2020-03-22 04:00:00
Unix timestamps:  1584759600.0 1584846000.0
Hex Block Numbers:  0x94335e 0x944c43
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              BPF
date        2020-03-24
hour             16:00
exchange       binance
Name: 815, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2020-03-24 16:00:00 2020-03-24 04:00:00 2020-03-25 04:00:00
Unix timestamps:  1585018800.0 1585105200.0
Hex Block Numbers:  0x947e4d 0x9496f7
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x947f00', 'uniqueId': '0x43fa59f725694c612d62ddc116f087c04f8dd401aec4bd31013d4c59af6c9f6d:log:185', 'hash': '0x43fa59f725694c612d62ddc116f087c04f8dd401aec4bd31013d4c59af6c9f6d', 'from': '0x8e1e964b172e97556bef8c49b921e4f7be3b8b02', 'to': '0xc11098e261cf77704616a84e7b0d28673639f8e7', 'value': 29.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690b49ac18c6', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T03:37:10.000Z'}}, {'blockNum': '0x948049', 'uniqueId': '0x19a23c059b9b13384d48adda778691c8b41c12498f3719d14a48e3ca569695ea:log:74', 'hash': '0x19a23c059b9b13384d48adda778691c8b41c12498f3719d14a48e3ca569695ea', 'from': '0xdb6ebefcc8ffdb1a9b775ff58d073345c1091358', 'to': '0x0d81ff2512d6c4d1b1c1765cd6562499d2617636', 'value': 1035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x381b82a855c14c0037', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T04:45:17.000Z'}}, {'blockNum': '0x9481d4', 'uniqueId': '0x465cc598ab343eadd33ba28afbbf987cbba52a2b2a6cdde45a0d98fae1a180d7:log:30', 'hash': '0x465cc598ab343eadd33ba28afbbf987cbba52a2b2a6cdde45a0d98fae1a180d7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 466.35230293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1947f034aca802b400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:16:40.000Z'}}, {'blockNum': '0x9481fe', 'uniqueId': '0xeff6b8418d228f52cf625f57ab4da3a5ee1899fff47e614a73b66c66d6403479:log:135', 'hash': '0xeff6b8418d228f52cf625f57ab4da3a5ee1899fff47e614a73b66c66d6403479', 'from': '0x7c4711436386050706428174a5516a09c68e32f3', 'to': '0x6d727cf78ca5f13a1e2e7b922df9c9951096c808', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:25:33.000Z'}}, {'blockNum': '0x948202', 'uniqueId': '0xac1c5ad8c583c6f652a46a74ee37472bd76d6d0f3bfca4e7788bf738a526a5c2:log:9', 'hash': '0xac1c5ad8c583c6f652a46a74ee37472bd76d6d0f3bfca4e7788bf738a526a5c2', 'from': '0x6d727cf78ca5f13a1e2e7b922df9c9951096c808', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:27:44.000Z'}}, {'blockNum': '0x94821a', 'uniqueId': '0xbeda9e5c911ca5508c0853272f6e218eb9cd0fca4f832bef314b390f1792031b:log:79', 'hash': '0xbeda9e5c911ca5508c0853272f6e218eb9cd0fca4f832bef314b390f1792031b', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:34:12.000Z'}}, {'blockNum': '0x948225', 'uniqueId': '0xd11674a48f07024d09bc0fdc49bb7a2c5d76dd5e4097154324b8331e5ff22736:log:119', 'hash': '0xd11674a48f07024d09bc0fdc49bb7a2c5d76dd5e4097154324b8331e5ff22736', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x6b9e834ac5ded49c4486078a117f5b87032d84ed', 'value': 466.35230293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1947f034aca802b400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:36:34.000Z'}}, {'blockNum': '0x948273', 'uniqueId': '0x51bceca0d5721ed92cc899f6b2959db58d3d19029a2109807c38d1105f408041:log:36', 'hash': '0x51bceca0d5721ed92cc899f6b2959db58d3d19029a2109807c38d1105f408041', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2bb340c1aa2bbfbfa8e24db15e768391aec47e78', 'value': 502.83978031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b424dc4085902dc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:57:53.000Z'}}, {'blockNum': '0x9482a7', 'uniqueId': '0xf9f6ccd8fcdb0390e9bf950c3e26b7f423aac0ef48e551a2a7498260a4c582e1:log:44', 'hash': '0xf9f6ccd8fcdb0390e9bf950c3e26b7f423aac0ef48e551a2a7498260a4c582e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2bb340c1aa2bbfbfa8e24db15e768391aec47e78', 'value': 1040.50518986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3867e905584bade800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T07:11:49.000Z'}}, {'blockNum': '0x948328', 'uniqueId': '0x30453df62776b70893ca00688919de4a701069890db4a1214b7a3925dee3aa4d:log:147', 'hash': '0x30453df62776b70893ca00688919de4a701069890db4a1214b7a3925dee3aa4d', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf9f175dea38e8fa8fb8fe8954835b99dcff49397', 'value': 170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x093739534d28680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T07:42:03.000Z'}}, {'blockNum': '0x94834b', 'uniqueId': '0x1817d124d8364e01a6dc9d5e7ccbd1447f5a91d605caae208e4317745288a94b:log:95', 'hash': '0x1817d124d8364e01a6dc9d5e7ccbd1447f5a91d605caae208e4317745288a94b', 'from': '0xa749dcfb3f58706726b8233b622762179679e5ca', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 4999.99987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cefeea15d4de000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T07:51:23.000Z'}}, {'blockNum': '0x94836c', 'uniqueId': '0x37022461c7820f6ef206ad670a067674d060eccc6ce52903a8696965091544ea:log:66', 'hash': '0x37022461c7820f6ef206ad670a067674d060eccc6ce52903a8696965091544ea', 'from': '0xf9f175dea38e8fa8fb8fe8954835b99dcff49397', 'to': '0x7a8044be44e114ee073b384733252255871a5f06', 'value': 170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x093739534d28680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T07:56:57.000Z'}}, {'blockNum': '0x9483a5', 'uniqueId': '0x1d14b774d01ca96f9adb95c8fd263cbba4b145d57c9274f9f776f3b357c36b22:log:44', 'hash': '0x1d14b774d01ca96f9adb95c8fd263cbba4b145d57c9274f9f776f3b357c36b22', 'from': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'to': '0x2bbe23f7f801423f5612416fe75905b20d40f5a7', 'value': 4999.9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cefaef7382b8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T08:08:53.000Z'}}, {'blockNum': '0x9483b6', 'uniqueId': '0x70a5bc2bd7122638987822b11d73f065127d54cfea5ca580dbcc629565972699:log:51', 'hash': '0x70a5bc2bd7122638987822b11d73f065127d54cfea5ca580dbcc629565972699', 'from': '0x2bbe23f7f801423f5612416fe75905b20d40f5a7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4999.9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cefaef7382b8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T08:13:20.000Z'}}, {'blockNum': '0x948516', 'uniqueId': '0xee02d57a31a6eec81a3b55d58783a43245593d983f2e85d687ea2ff49fb9f184:log:80', 'hash': '0xee02d57a31a6eec81a3b55d58783a43245593d983f2e85d687ea2ff49fb9f184', 'from': '0x153fccafff5b409c2b38cd3fc12afc2aa2516606', 'to': '0x8605c8e295bcfc320f1fd03168fd24c97ce57a6c', 'value': 569.31530718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1edcd64784b84bb800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:31:04.000Z'}}, {'blockNum': '0x94851f', 'uniqueId': '0xf78652b008627673efff3deb1fc59b920e3494655aabbbf02f0f73eee13a865b:log:28', 'hash': '0xf78652b008627673efff3deb1fc59b920e3494655aabbbf02f0f73eee13a865b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xaf636f66ccdd6536aa7ef7a58c23c049e0aac621', 'value': 6.44778673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x597b23de7d20a400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:33:42.000Z'}}, {'blockNum': '0x94852f', 'uniqueId': '0xe29d7a16dd503c15397a71325a77f24e9a838f57a8cb10abed3174cc588addc3:log:11', 'hash': '0xe29d7a16dd503c15397a71325a77f24e9a838f57a8cb10abed3174cc588addc3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 14.44499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc876f2f540789c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:36:13.000Z'}}, {'blockNum': '0x948542', 'uniqueId': '0x39a5ef82b9346aa67c3741680135d1b6b20fc144185e1622d90dcba531baa9f3:log:24', 'hash': '0x39a5ef82b9346aa67c3741680135d1b6b20fc144185e1622d90dcba531baa9f3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xaccd89e6b33330c50627a33e93235e86c0942056', 'value': 14.44499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc876f2f540789c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:42:14.000Z'}}, {'blockNum': '0x948564', 'uniqueId': '0x89c36d18fd1e34a3ae5e84b6c6cb0dbf62e9cd610c0036ce6d715a267d172a6c:log:87', 'hash': '0x89c36d18fd1e34a3ae5e84b6c6cb0dbf62e9cd610c0036ce6d715a267d172a6c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 94.15846348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051ab60fa981fdb000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:48:04.000Z'}}, {'blockNum': '0x9485a2', 'uniqueId': '0x16c17f0e65954ad483b77da4cd5af652f966ff146bc2a94c467e2ca93884f274:log:110', 'hash': '0x16c17f0e65954ad483b77da4cd5af652f966ff146bc2a94c467e2ca93884f274', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x02937a7ffc9e82a8dc2b2de3521ed26471b33225', 'value': 94.15846348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051ab60fa981fdb000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T10:01:26.000Z'}}, {'blockNum': '0x9485c6', 'uniqueId': '0xe6bb3ad089b7363edea72fefcb04101aa1a4f947bbe2ae8fda0c578a87fd5f76:log:30', 'hash': '0xe6bb3ad089b7363edea72fefcb04101aa1a4f947bbe2ae8fda0c578a87fd5f76', 'from': '0xb117b8fe4037015af6c835d534c20906d5eec939', 'to': '0x591b1b182dfc7bd1557963b87c73f49dd0ff8198', 'value': 1025.63300104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3799846468cb0b2000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T10:10:10.000Z'}}, {'blockNum': '0x9485e3', 'uniqueId': '0x5d3ced0349816488f2982b459d15003a24cae5aafa64aca097a48325c5779768:log:92', 'hash': '0x5d3ced0349816488f2982b459d15003a24cae5aafa64aca097a48325c5779768', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbf6351fe35421637e70ec64fe07b3947c84f4c49', 'value': 47.62040128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0294dda6a913f50000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T10:17:48.000Z'}}, {'blockNum': '0x94866b', 'uniqueId': '0xd266ebf6b9fbbfa0cd6d4c21f2bd8d049e99afee9a58db50989f25dc6ff3308c:log:47', 'hash': '0xd266ebf6b9fbbfa0cd6d4c21f2bd8d049e99afee9a58db50989f25dc6ff3308c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xead341283955bc1b299df7018a23a1debd3e58b5', 'value': 1153.04432365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3e81b45744deca1400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T10:49:20.000Z'}}, {'blockNum': '0x94872f', 'uniqueId': '0x21c5ae07c96886be605f92a9746c95ced3eff26b7d0abcea08513bf1182f74f7:log:60', 'hash': '0x21c5ae07c96886be605f92a9746c95ced3eff26b7d0abcea08513bf1182f74f7', 'from': '0xbf7a1be23f0dc414ae8cd0d8ef10a0b3cf8b7e61', 'to': '0xf004514ed12a020a8144b0e06b181bf04872a1f5', 'value': 933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3293f9dcc10f740000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T11:35:14.000Z'}}, {'blockNum': '0x94878b', 'uniqueId': '0xd957f5359df69d699cc26e0dea779480f919ade3c631cda0b6b110ec8f29b592:log:85', 'hash': '0xd957f5359df69d699cc26e0dea779480f919ade3c631cda0b6b110ec8f29b592', 'from': '0xf004514ed12a020a8144b0e06b181bf04872a1f5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3293f9dcc10f740000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T11:54:05.000Z'}}, {'blockNum': '0x94894b', 'uniqueId': '0x3b427e285563af772f93dde7dec60e834ba4a3df5362b4a79ad65032b1b35286:log:58', 'hash': '0x3b427e285563af772f93dde7dec60e834ba4a3df5362b4a79ad65032b1b35286', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc57a3a439abb586d2a7f4d4d8a3820efdd6b9a4d', 'value': 32.36955071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01c137bede988b1c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T13:37:15.000Z'}}, {'blockNum': '0x94894b', 'uniqueId': '0xfa6ad49ba359913a56d6d83b6390ff25adc01881800402e5a13c12026fc95ead:log:59', 'hash': '0xfa6ad49ba359913a56d6d83b6390ff25adc01881800402e5a13c12026fc95ead', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc57a3a439abb586d2a7f4d4d8a3820efdd6b9a4d', 'value': 33.15119824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01cc10b7281dc14000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T13:37:15.000Z'}}, {'blockNum': '0x9489d3', 'uniqueId': '0xc16acccf038c08acc73c4e463deb065cf728942a4981ca2ffd2772da50960bc9:log:14', 'hash': '0xc16acccf038c08acc73c4e463deb065cf728942a4981ca2ffd2772da50960bc9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 87.35099526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04bc3d136231215800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T14:10:27.000Z'}}, {'blockNum': '0x9489f1', 'uniqueId': '0xc0e3067c1675eb2bcb27979414ae6118c59a33af535511d54e2fc75c751131bf:log:105', 'hash': '0xc0e3067c1675eb2bcb27979414ae6118c59a33af535511d54e2fc75c751131bf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x02937a7ffc9e82a8dc2b2de3521ed26471b33225', 'value': 87.35099526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04bc3d136231215800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T14:16:06.000Z'}}, {'blockNum': '0x948a12', 'uniqueId': '0x8ad41f938d5808bd041ef923cbd4aafa6c6ac97a91fec0fd2d41c0a95c30081b:log:176', 'hash': '0x8ad41f938d5808bd041ef923cbd4aafa6c6ac97a91fec0fd2d41c0a95c30081b', 'from': '0xcaa19d40a6bf34eb0080edd42ff4374b623581fc', 'to': '0x932c2071fa44afb6bc9eb8611e2aef7f09216e96', 'value': 835.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2d4ae44754cede0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T14:24:04.000Z'}}, {'blockNum': '0x948af1', 'uniqueId': '0x81e24743460abd0e772581ef7eb5936f04daa0d1fbeb3080897aed12e6f168f4:log:196', 'hash': '0x81e24743460abd0e772581ef7eb5936f04daa0d1fbeb3080897aed12e6f168f4', 'from': '0x60f0045a7777c4981651af3216164b6fd6bd2f4d', 'to': '0x428770c89cb740052d1b6fe95c3e8de52d08fce6', 'value': 1009.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36ba52182cc39b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T15:16:20.000Z'}}, {'blockNum': '0x948b63', 'uniqueId': '0x7a9088b9d5812958d20ed13622ee89bc516633a3cf8d6d5da7c2ad1feafd555f:log:110', 'hash': '0x7a9088b9d5812958d20ed13622ee89bc516633a3cf8d6d5da7c2ad1feafd555f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x510aa333f5459499f4fcbbebc316e497bc280df5', 'value': 933.0297858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x329463aec80bcdd000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T15:42:39.000Z'}}, {'blockNum': '0x948b96', 'uniqueId': '0xb5a466e1c84feaf30f452571b5a922f16a5a463eb3e63d86d208689a4383222e:log:159', 'hash': '0xb5a466e1c84feaf30f452571b5a922f16a5a463eb3e63d86d208689a4383222e', 'from': '0xe6a054abd78099361b3b6b380f6d09e86b560cfb', 'to': '0xa749dcfb3f58706726b8233b622762179679e5ca', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T15:56:01.000Z'}}, {'blockNum': '0x948bb5', 'uniqueId': '0x16fac66f602ec9b152db8ef7e918ac23f10f8ae5d05f90402c27b91a7626e70b:log:17', 'hash': '0x16fac66f602ec9b152db8ef7e918ac23f10f8ae5d05f90402c27b91a7626e70b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1260, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x444e033c3be0300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:01:38.000Z'}}, {'blockNum': '0x948bba', 'uniqueId': '0x1a87f86407b56069f9fbedd55203b5f59c70e3fd5c1cb9f5dc1ea57239274d09:log:61', 'hash': '0x1a87f86407b56069f9fbedd55203b5f59c70e3fd5c1cb9f5dc1ea57239274d09', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 4045.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdb51a4c8db555c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:03:53.000Z'}}, {'blockNum': '0x948bdb', 'uniqueId': '0xaa5b6a01ccad599659fee06303752158c5d3101f125b4f30c70265c6b1291a44:log:6', 'hash': '0xaa5b6a01ccad599659fee06303752158c5d3101f125b4f30c70265c6b1291a44', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 74.39474714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04086f3c5d12b52800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:12:12.000Z'}}, {'blockNum': '0x948be2', 'uniqueId': '0x1be5906664327af522545e0005f19b624aaa223d33f1459d27fa954faa0be6df:log:19', 'hash': '0x1be5906664327af522545e0005f19b624aaa223d33f1459d27fa954faa0be6df', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4045.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdb51a4c8db555c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:14:03.000Z'}}, {'blockNum': '0x948c09', 'uniqueId': '0xced051cd74e5e17cd6fbc3b42af63d63d962364e1474e0dd4806ab7e13ed350d:log:28', 'hash': '0xced051cd74e5e17cd6fbc3b42af63d63d962364e1474e0dd4806ab7e13ed350d', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1260, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x444e033c3be0300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:23:52.000Z'}}, {'blockNum': '0x948c1e', 'uniqueId': '0xc1741c0f686353befad3870031519a620d953c670e7797ee760a8532e59d18ae:log:66', 'hash': '0xc1741c0f686353befad3870031519a620d953c670e7797ee760a8532e59d18ae', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x7b892f5ff5fd8f5d48bc6da88c95a03fbe76f708', 'value': 148.34535854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x080ab4959feea8f800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:29:18.000Z'}}, {'blockNum': '0x948c41', 'uniqueId': '0x9b45d69c73493acb1a4b2c4211fee38252667a2f83fdb2ce74ddca4b8f4231ee:log:143', 'hash': '0x9b45d69c73493acb1a4b2c4211fee38252667a2f83fdb2ce74ddca4b8f4231ee', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x02937a7ffc9e82a8dc2b2de3521ed26471b33225', 'value': 74.39474714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04086f3c5d12b52800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:38:11.000Z'}}, {'blockNum': '0x948c49', 'uniqueId': '0xdec8cabba3b2ac1791a229d57761eec7c40d16a676623805c33bc7b56167ff96:log:93', 'hash': '0xdec8cabba3b2ac1791a229d57761eec7c40d16a676623805c33bc7b56167ff96', 'from': '0xeefb83507f4d7c5c9357e2803d3e68db08effe4b', 'to': '0x41d76effb5e82c81514b9a85cfe3d3f42e621065', 'value': 1020, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x374b57f3cef2700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:40:02.000Z'}}, {'blockNum': '0x948c5d', 'uniqueId': '0xf4680b4824d0ae17216ce2dc5b52e47421c1d23a32c66af2363259e778b1af5c:log:4', 'hash': '0xf4680b4824d0ae17216ce2dc5b52e47421c1d23a32c66af2363259e778b1af5c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1271.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x44e971a0e4cc900000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:44:22.000Z'}}, {'blockNum': '0x948c5d', 'uniqueId': '0xaaae420f62ea73ea613695174a7d6ed9b215ba57c4e22a1f25336d5fcfa3f57f:log:6', 'hash': '0xaaae420f62ea73ea613695174a7d6ed9b215ba57c4e22a1f25336d5fcfa3f57f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 858.595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2e8b663377fe838000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:44:22.000Z'}}, {'blockNum': '0x948c60', 'uniqueId': '0xeaf123962bd92f548a23fbb01f760fdbe82c4ef283e33335f2ef4e7127a149cb:log:10', 'hash': '0xeaf123962bd92f548a23fbb01f760fdbe82c4ef283e33335f2ef4e7127a149cb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 479.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x19fdd819b648ca0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:45:10.000Z'}}, {'blockNum': '0x948cb9', 'uniqueId': '0xfc4199d11e6c9cf3ed3d70ace57a0a4361717323028c7e7e9b872f20e924567a:log:7', 'hash': '0xfc4199d11e6c9cf3ed3d70ace57a0a4361717323028c7e7e9b872f20e924567a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 329.5980949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11de17a906a7fd0800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:03:21.000Z'}}, {'blockNum': '0x948cde', 'uniqueId': '0x06a123cf3ce67cf8c97bc37d4cad6d57c2e5ac24ec042458c5a7dcf06c5e090a:log:20', 'hash': '0x06a123cf3ce67cf8c97bc37d4cad6d57c2e5ac24ec042458c5a7dcf06c5e090a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1273.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4505330e4c1b580000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:13:15.000Z'}}, {'blockNum': '0x948d03', 'uniqueId': '0xb6b7cca8001d982f1d1a4fd6bb51a0cd9977198621e465aa73cec245193014aa:log:248', 'hash': '0xb6b7cca8001d982f1d1a4fd6bb51a0cd9977198621e465aa73cec245193014aa', 'from': '0xa749dcfb3f58706726b8233b622762179679e5ca', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:22:22.000Z'}}, {'blockNum': '0x948d30', 'uniqueId': '0x6eaae03fc86edf7c5a8fbf61b44ee6a9e9f857a8888aeef88749ea44105193f9:log:7', 'hash': '0x6eaae03fc86edf7c5a8fbf61b44ee6a9e9f857a8888aeef88749ea44105193f9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4588f61e1447302905056ed0cfa84286bab5d0fe', 'value': 2082.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x70e3f020a76ff60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:34:12.000Z'}}, {'blockNum': '0x948d40', 'uniqueId': '0x3f8e406fdb62f493ab8595726956d1d105f6a51f8867f07db9ad9ffef680b078:log:19', 'hash': '0x3f8e406fdb62f493ab8595726956d1d105f6a51f8867f07db9ad9ffef680b078', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1270.37267068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x44ddf65d42b5b27000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:38:29.000Z'}}, {'blockNum': '0x948d4d', 'uniqueId': '0x75a8c9d42860912871c90fc1417a04d8bc53a53451181811ca869aab31da5c2d:log:25', 'hash': '0x75a8c9d42860912871c90fc1417a04d8bc53a53451181811ca869aab31da5c2d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1705.11668749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5c6f3f612d40329400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:40:31.000Z'}}, {'blockNum': '0x948d5f', 'uniqueId': '0xa653f54c6c1789ad39ba5feedd2baadcbe7f91371101ff579730e36718ad00f2:log:17', 'hash': '0xa653f54c6c1789ad39ba5feedd2baadcbe7f91371101ff579730e36718ad00f2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 26048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0584109de7c7ff000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:45:13.000Z'}}, {'blockNum': '0x948d60', 'uniqueId': '0x1da6f226604aeb79c6d76cabab2a24c697959df2206438d57e2861c21d92ab3f:log:89', 'hash': '0x1da6f226604aeb79c6d76cabab2a24c697959df2206438d57e2861c21d92ab3f', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xa100ed87c1b73620f022d83e017f0a7bf9c39384', 'value': 1705.11668749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5c6f3f612d40329400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:45:50.000Z'}}, {'blockNum': '0x948d65', 'uniqueId': '0x9f14300ff600464295d0307d156638ea5bb368e65116cdbfac0f52eb2cc0d1f5:log:23', 'hash': '0x9f14300ff600464295d0307d156638ea5bb368e65116cdbfac0f52eb2cc0d1f5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 521.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1c44b6132fbf320000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:47:15.000Z'}}, {'blockNum': '0x948d65', 'uniqueId': '0x452a23fea0c60b4f2c7875114e94b787695cd0fc8fe8314a37539c4c3c97b29f:log:30', 'hash': '0x452a23fea0c60b4f2c7875114e94b787695cd0fc8fe8314a37539c4c3c97b29f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 892.122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x305cae0855c7090000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:47:15.000Z'}}, {'blockNum': '0x948d70', 'uniqueId': '0x45b824d518555000b56cbf64708d4aa021f64422ad87d86a0a2f456d71378a76:log:40', 'hash': '0x45b824d518555000b56cbf64708d4aa021f64422ad87d86a0a2f456d71378a76', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1004.7181072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x367743c34612d68000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:50:04.000Z'}}, {'blockNum': '0x948d77', 'uniqueId': '0xc85edc158467c65eaabfde4ed3d8598543e1a780e780d91d10b457778f8bd896:log:21', 'hash': '0xc85edc158467c65eaabfde4ed3d8598543e1a780e780d91d10b457778f8bd896', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1314.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x473ccd0b998cd20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:52:09.000Z'}}, {'blockNum': '0x948d8a', 'uniqueId': '0x913516c00da9e8e2aeb323592e885001af99e6107e998a536a3425eabc0b7864:log:55', 'hash': '0x913516c00da9e8e2aeb323592e885001af99e6107e998a536a3425eabc0b7864', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x02937a7ffc9e82a8dc2b2de3521ed26471b33225', 'value': 329.5980949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11de17a906a7fd0800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:56:54.000Z'}}, {'blockNum': '0x948d8c', 'uniqueId': '0x47fa4275ed9a0b9f5e42ca754792a9de567c0cf9cf409a0ee00fa4c2644ac55a:log:35', 'hash': '0x47fa4275ed9a0b9f5e42ca754792a9de567c0cf9cf409a0ee00fa4c2644ac55a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xac4b2fdb32470318c38cd74735a6c9d09477da90', 'value': 1270.37267068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x44ddf65d42b5b27000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:57:06.000Z'}}, {'blockNum': '0x948d92', 'uniqueId': '0x70952e07f35cdcb54b25fe17fde61e875d83ca7e4c2d04c5a2165293f9403ecb:log:4', 'hash': '0x70952e07f35cdcb54b25fe17fde61e875d83ca7e4c2d04c5a2165293f9403ecb', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x32f20cce59da8bab16921e04de482d07c73e9ede', 'value': 2883.56618311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9c518505c0088c3c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:58:34.000Z'}}, {'blockNum': '0x948d96', 'uniqueId': '0x199e6167b1a1d140d0c05e3d6676266ca802b9ac0ccbc7511850871f554f3d85:log:18', 'hash': '0x199e6167b1a1d140d0c05e3d6676266ca802b9ac0ccbc7511850871f554f3d85', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 448.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x184fa1f9f503ae0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:59:23.000Z'}}, {'blockNum': '0x948da2', 'uniqueId': '0x8026fdba08af247e2f06d50bc05e6684e0fdb1e32476256800b87952246f07ee:log:3', 'hash': '0x8026fdba08af247e2f06d50bc05e6684e0fdb1e32476256800b87952246f07ee', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 890.563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x30470b5a1852338000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:01:32.000Z'}}, {'blockNum': '0x948ddb', 'uniqueId': '0x43fc349ece14fd193baa480c434f5560c7d8c9e07ffc1f6dc5b047ed6399040d:log:1', 'hash': '0x43fc349ece14fd193baa480c434f5560c7d8c9e07ffc1f6dc5b047ed6399040d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 781.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a5cefa1a5c0c20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:12:28.000Z'}}, {'blockNum': '0x948de0', 'uniqueId': '0xbb04d6c3a0a015b7bb870189a80ce0ca7134e0787f21ac885eb06bdc9773f8d4:log:16', 'hash': '0xbb04d6c3a0a015b7bb870189a80ce0ca7134e0787f21ac885eb06bdc9773f8d4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 422.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x16e6cf6bb603860000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:13:24.000Z'}}, {'blockNum': '0x948dea', 'uniqueId': '0xcd508d545d04727a7a0cdf2cae3d351b915a43f552ad84976b0c4da25056c02d:log:0', 'hash': '0xcd508d545d04727a7a0cdf2cae3d351b915a43f552ad84976b0c4da25056c02d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1358.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x499f6c727a52020000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:15:46.000Z'}}, {'blockNum': '0x948e00', 'uniqueId': '0x0f46e5ccf361032ddd8634c3a4a9f604d19d78fb8a03aa450081e33654923e6b:log:19', 'hash': '0x0f46e5ccf361032ddd8634c3a4a9f604d19d78fb8a03aa450081e33654923e6b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1309.45711862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x46fc5e37956fa51800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:22:35.000Z'}}, {'blockNum': '0x948e01', 'uniqueId': '0x49cf5676a5897a910f9a070b38dabee52fd956a51d7a01e5dd6245952135d5db:log:34', 'hash': '0x49cf5676a5897a910f9a070b38dabee52fd956a51d7a01e5dd6245952135d5db', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5de57fe19fbdc61f6c280414365c4690293632f4', 'value': 1004.7181072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x367743c34612d68000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:23:25.000Z'}}, {'blockNum': '0x948e9a', 'uniqueId': '0x985d73c30947c95ab70ee518f2bfb6cf66ff590ddc207853b5458d2175b63443:log:8', 'hash': '0x985d73c30947c95ab70ee518f2bfb6cf66ff590ddc207853b5458d2175b63443', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbeeaf538337cb491d65a66b09e27712e7f489db5', 'value': 1309.45711862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x46fc5e37956fa51800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:57:10.000Z'}}, {'blockNum': '0x948ee2', 'uniqueId': '0x3ef5929c4a7b8c3f352e0161b5fedf56876ce7fa719cd597500c5435084935e9:log:23', 'hash': '0x3ef5929c4a7b8c3f352e0161b5fedf56876ce7fa719cd597500c5435084935e9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 313.60549333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11002686a169c8b400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:13:57.000Z'}}, {'blockNum': '0x948efd', 'uniqueId': '0x614aebdaca7e0ddc7a6acce02840d38f39793b61951bae4068828b950feea05e:log:56', 'hash': '0x614aebdaca7e0ddc7a6acce02840d38f39793b61951bae4068828b950feea05e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xade13fb86b28817deef095cfab204c4e472974f0', 'value': 313.60549333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11002686a169c8b400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:22:08.000Z'}}, {'blockNum': '0x948f02', 'uniqueId': '0x8118ea89c2249b3a25e3dd5fd63e9302193cb1f86ee96177383160a225194a8d:log:2', 'hash': '0x8118ea89c2249b3a25e3dd5fd63e9302193cb1f86ee96177383160a225194a8d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 256.742564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0deb04d1ad76fe4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:23:14.000Z'}}, {'blockNum': '0x948f16', 'uniqueId': '0x3fcb6cab9eb0bd5faf647bc4b0631f99f6a0397c8079cd06960a487ad774181e:log:111', 'hash': '0x3fcb6cab9eb0bd5faf647bc4b0631f99f6a0397c8079cd06960a487ad774181e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5a5f1208d28dffcaf68b64f24eb7e009b88b4e25', 'value': 256.742564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0deb04d1ad76fe4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:28:22.000Z'}}, {'blockNum': '0x948f3b', 'uniqueId': '0x7403bc16a9b70eed2595b9cf11f6398c63d52b9d362830d7b8d9adfdbfe2b694:log:3', 'hash': '0x7403bc16a9b70eed2595b9cf11f6398c63d52b9d362830d7b8d9adfdbfe2b694', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c78dd23d11bd1899b4b31b233105b3a98d9f3e8', 'value': 1051.46413938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x38ffff07deceb78800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:37:28.000Z'}}, {'blockNum': '0x948ff2', 'uniqueId': '0x264b12a997d3e447d9b941479e0fdca9a6363e1238008f9d9a1498f6c6dfd6c8:log:4', 'hash': '0x264b12a997d3e447d9b941479e0fdca9a6363e1238008f9d9a1498f6c6dfd6c8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 156.95054706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0882205afdce878800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T20:21:05.000Z'}}, {'blockNum': '0x94900e', 'uniqueId': '0xfed43b7e99e7203e8ab2f2febef9f0fc3e3e854025cbaae0f4ae8400a9662ec9:log:172', 'hash': '0xfed43b7e99e7203e8ab2f2febef9f0fc3e3e854025cbaae0f4ae8400a9662ec9', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd67a404f3e1d69c38590c11418b4691e3d4804ec', 'value': 156.95054706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0882205afdce878800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T20:26:18.000Z'}}, {'blockNum': '0x94909b', 'uniqueId': '0xbee5e1625bf15461bc3fe88e95df15fb0b3c9317dd2e80a68aa915f7ce0e9afb:log:0', 'hash': '0xbee5e1625bf15461bc3fe88e95df15fb0b3c9317dd2e80a68aa915f7ce0e9afb', 'from': '0xd941a3c75a0df5924561d8bb9aa63d0bee9d4f89', 'to': '0x27dc29f2d763b5a7c60e8a19d38fbe6644f8434c', 'value': 49.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02ab109138a4ba0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T20:56:30.000Z'}}, {'blockNum': '0x9490bc', 'uniqueId': '0x86f4a95b42ffb2cc644d008718d837d2e2cbd914823f1dc89e4583d31d61a0b0:log:42', 'hash': '0x86f4a95b42ffb2cc644d008718d837d2e2cbd914823f1dc89e4583d31d61a0b0', 'from': '0x5de57fe19fbdc61f6c280414365c4690293632f4', 'to': '0xe5a7a575c192380ab95b48780763fbbf000f10b8', 'value': 1004.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3677036edf0af60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:02:15.000Z'}}, {'blockNum': '0x9490c1', 'uniqueId': '0x7317994cde37450a6190170cb715a180c871d5389981e5247bc7a7e41a0622e8:log:105', 'hash': '0x7317994cde37450a6190170cb715a180c871d5389981e5247bc7a7e41a0622e8', 'from': '0xe5a7a575c192380ab95b48780763fbbf000f10b8', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1004.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3677036edf0af60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:04:32.000Z'}}, {'blockNum': '0x9490dc', 'uniqueId': '0xf4e43ff01d09799b1b74913cb60915a2d0b90be14b76fc9b46650f7c44501759:log:13', 'hash': '0xf4e43ff01d09799b1b74913cb60915a2d0b90be14b76fc9b46650f7c44501759', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x912a555c1736d6d9bbdd022a48acc02dc9725752', 'value': 94.66872009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0521cadb5871560400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:09:25.000Z'}}, {'blockNum': '0x9490f0', 'uniqueId': '0x00c75c6497d896d645ba7ab2dd8bff8e5fd29504d9de3b153bab41e1768408a7:log:4', 'hash': '0x00c75c6497d896d645ba7ab2dd8bff8e5fd29504d9de3b153bab41e1768408a7', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1004.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3677036edf0af60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:14:03.000Z'}}, {'blockNum': '0x94915d', 'uniqueId': '0xfba58b5d12c0bc1617d3ac690583339b8ce87308d98b551b4b3eb0048a96a4b4:log:0', 'hash': '0xfba58b5d12c0bc1617d3ac690583339b8ce87308d98b551b4b3eb0048a96a4b4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x33bb0137200268624289f43d34b6dd84efd8a0a3', 'value': 686.767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x253ace83da3cb18000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:37:28.000Z'}}, {'blockNum': '0x949177', 'uniqueId': '0xd8e3f53343d5d8cdec489df306bf4e015b8e1cb4b92e1279623263ccf95b8fe5:log:16', 'hash': '0xd8e3f53343d5d8cdec489df306bf4e015b8e1cb4b92e1279623263ccf95b8fe5', 'from': '0xcaa19d40a6bf34eb0080edd42ff4374b623581fc', 'to': '0xac7e628efe4b428d61fc83b33c25a8b45260e52d', 'value': 780, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a48acab6204b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:42:25.000Z'}}, {'blockNum': '0x94917a', 'uniqueId': '0x0ecc176afdd805afaf5793f55a643f554590898ff4d7ce8144f2607b32ed478e:log:6', 'hash': '0x0ecc176afdd805afaf5793f55a643f554590898ff4d7ce8144f2607b32ed478e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 182.38928898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09e328ebfcc8f7c800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:43:00.000Z'}}, {'blockNum': '0x949190', 'uniqueId': '0xfab59c3d0140892ddbb46fea17221b2e7e710cfbe144a8d47505580c40723baf:log:151', 'hash': '0xfab59c3d0140892ddbb46fea17221b2e7e710cfbe144a8d47505580c40723baf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5a5f1208d28dffcaf68b64f24eb7e009b88b4e25', 'value': 182.38928898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09e328ebfcc8f7c800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:49:39.000Z'}}, {'blockNum': '0x94931b', 'uniqueId': '0x010d500b4cc969544a40171ba2eb6730402cd70a3d55dd1d9cbf656344991709:log:54', 'hash': '0x010d500b4cc969544a40171ba2eb6730402cd70a3d55dd1d9cbf656344991709', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa97dac8cf8438e8120ec2ebf5b35254eefcb4c03', 'value': 1423.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4d2a79d02f898a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:05:33.000Z'}}, {'blockNum': '0x949357', 'uniqueId': '0x45140515218e3f668a20cad840c9aa717c1330675e99653ba1d84756795e7d8e:log:56', 'hash': '0x45140515218e3f668a20cad840c9aa717c1330675e99653ba1d84756795e7d8e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x98eb052fef3d0de70d8f2944e03930a071e601f3', 'value': 29.24296059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0195d3ddb883b28c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:20:03.000Z'}}, {'blockNum': '0x949366', 'uniqueId': '0xa7bad498604956e7696f1927b23fb77b97d230aac886575f7b8cc77c46c549f2:log:24', 'hash': '0xa7bad498604956e7696f1927b23fb77b97d230aac886575f7b8cc77c46c549f2', 'from': '0xd1bccd0e7926cc44d96c54dbe2042afa5dc85308', 'to': '0x5d1c239b0a50f1ea7554167f7463c7a2d7a6b628', 'value': 4056.9999999999995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdbee2f6517bfbd107f', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:23:53.000Z'}}, {'blockNum': '0x949369', 'uniqueId': '0xe43ee040132f5b4549ca9682785ac5e93bf31c3c35ce5a1541d9b653407c7f21:log:111', 'hash': '0xe43ee040132f5b4549ca9682785ac5e93bf31c3c35ce5a1541d9b653407c7f21', 'from': '0x5d1c239b0a50f1ea7554167f7463c7a2d7a6b628', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 4056.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdbee2f65156bb81c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:25:42.000Z'}}, {'blockNum': '0x949389', 'uniqueId': '0xf8709501ab54465de4e067881402bb4dcc0ef7a92ad9a22a96987ced69ac037b:log:16', 'hash': '0xf8709501ab54465de4e067881402bb4dcc0ef7a92ad9a22a96987ced69ac037b', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4056.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdbee2f65156bb81c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:33:38.000Z'}}, {'blockNum': '0x94938c', 'uniqueId': '0x7f6874ee1eb2df01c2aa4c0c5fec059b1f99e9e0e7dbdb784ee3a799d2b2fa31:log:50', 'hash': '0x7f6874ee1eb2df01c2aa4c0c5fec059b1f99e9e0e7dbdb784ee3a799d2b2fa31', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xae2216ed4a4e1bf920b5136e786174d98f75cace', 'value': 606.54259274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x20e1782a7f241fe800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:35:34.000Z'}}, {'blockNum': '0x949485', 'uniqueId': '0xbb7a44717bd29db6552671070cc6e006aea6c834fd4a7ace3079a9f147396476:log:37', 'hash': '0xbb7a44717bd29db6552671070cc6e006aea6c834fd4a7ace3079a9f147396476', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc05b054f597b55dbe3e3fdb456084ac763313a4d', 'value': 177.97505547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09a5e669ff69cacc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-25T00:30:22.000Z'}}, {'blockNum': '0x94964b', 'uniqueId': '0xd2d068ba386934dcf3f07afa26e67e3e25769868b7ccc92df962f3f951d00fe3:log:48', 'hash': '0xd2d068ba386934dcf3f07afa26e67e3e25769868b7ccc92df962f3f951d00fe3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 17.23349999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xef29b0ef14a5dc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-25T02:15:36.000Z'}}, {'blockNum': '0x949665', 'uniqueId': '0x5e93be3a18dd5349a0afe9a5e6791e62f17904a652d26322827e5f81fef80010:log:121', 'hash': '0x5e93be3a18dd5349a0afe9a5e6791e62f17904a652d26322827e5f81fef80010', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x7b8393e91bd4355fb52b9fe3800f6726dbeef4f3', 'value': 17.23349999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xef29b0ef14a5dc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-25T02:21:47.000Z'}}, {'blockNum': '0x94969b', 'uniqueId': '0xee38a2a057376d6939d30f83d373b08b3f8440cffcf6fb06c8e14977bd1fbaa2:log:19', 'hash': '0xee38a2a057376d6939d30f83d373b08b3f8440cffcf6fb06c8e14977bd1fbaa2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc91c9b43b00a236bc4af8275b63adef1c8714307', 'value': 148.2617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08098b5ea037884000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-25T02:34:46.000Z'}}]}}
Number of returned transfers:  93
Answer is complete
 
symbol             NXS
group              BPF
date        2020-03-25
hour             15:57
exchange       binance
Name: 816, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-03-25 15:57:00 2020-03-25 03:57:00 2020-03-26 03:57:00
Unix timestamps:  1585105020.0 1585191420.0
Hex Block Numbers:  0x9496ee 0x94aff1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EDO
group              BPF
date        2020-03-26
hour             15:59
exchange       binance
Name: 817, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2020-03-26 15:59:00 2020-03-26 03:59:00 2020-03-27 03:59:00
Unix timestamps:  1585191540.0 1585277940.0
Hex Block Numbers:  0x94aff5 0x94c96b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RLC
group              BPF
date        2020-03-27
hour             15:57
exchange       binance
Name: 818, dtype: object
HERE
 Symbol: RLC, Contract: 0x607f4c5bb672230e8672085532f7e901544a7375
Datetime timestamps:  2020-03-27 15:57:00 2020-03-27 03:57:00 2020-03-28 03:57:00
Unix timestamps:  1585277820.0 1585364220.0
Hex Block Numbers:  0x94c961 0x94e2ef
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x94c971', 'uniqueId': '0x0f78b16348f5f1841c998000fe75c0c253b80eb95b01c65f81b6cc3511cc8826:log:89', 'hash': '0x0f78b16348f5f1841c998000fe75c0c253b80eb95b01c65f81b6cc3511cc8826', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x74c8c6ce9766c5f77e3e1ad5c75fe7da07199fc8', 'value': 5.240130945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0138560d81', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:00:21.000Z'}}, {'blockNum': '0x94c971', 'uniqueId': '0x95ca0e1d878db5a8b7d4035387ce5a0fef96292b7015d73488e22c11638126a3:log:99', 'hash': '0x95ca0e1d878db5a8b7d4035387ce5a0fef96292b7015d73488e22c11638126a3', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 96.595462374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x167d89c8e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:00:21.000Z'}}, {'blockNum': '0x94c9a1', 'uniqueId': '0xda6eb68d7412442192c4434e5bc397fb23f137e5beb9ab9d389fef25ffd21238:log:146', 'hash': '0xda6eb68d7412442192c4434e5bc397fb23f137e5beb9ab9d389fef25ffd21238', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 18.911791636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04673b0a14', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:11:29.000Z'}}, {'blockNum': '0x94c9a1', 'uniqueId': '0xda6eb68d7412442192c4434e5bc397fb23f137e5beb9ab9d389fef25ffd21238:log:148', 'hash': '0xda6eb68d7412442192c4434e5bc397fb23f137e5beb9ab9d389fef25ffd21238', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1e7420a37182424817c3ebd04159b3cf64132d12', 'value': 18.911791636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04673b0a14', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:11:29.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x8f8397e49618fd53ad51cfc9c30759f0ed9715044e0afcb31d674c1dca1369a4:log:19', 'hash': '0x8f8397e49618fd53ad51cfc9c30759f0ed9715044e0afcb31d674c1dca1369a4', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x8f8397e49618fd53ad51cfc9c30759f0ed9715044e0afcb31d674c1dca1369a4:log:20', 'hash': '0x8f8397e49618fd53ad51cfc9c30759f0ed9715044e0afcb31d674c1dca1369a4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x523fe171f2825f1bdf2aa1637d6760943ad3839faa952c6a817cdf5cfc070411:log:32', 'hash': '0x523fe171f2825f1bdf2aa1637d6760943ad3839faa952c6a817cdf5cfc070411', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x523fe171f2825f1bdf2aa1637d6760943ad3839faa952c6a817cdf5cfc070411:log:33', 'hash': '0x523fe171f2825f1bdf2aa1637d6760943ad3839faa952c6a817cdf5cfc070411', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0xa33de809f8d4440c6005ce9d905495c9641e8bc87ebe2f9b46aff297173a2809:log:45', 'hash': '0xa33de809f8d4440c6005ce9d905495c9641e8bc87ebe2f9b46aff297173a2809', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0xa33de809f8d4440c6005ce9d905495c9641e8bc87ebe2f9b46aff297173a2809:log:46', 'hash': '0xa33de809f8d4440c6005ce9d905495c9641e8bc87ebe2f9b46aff297173a2809', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x6798d599f1d404583180360dc615bbd3c511c11894dd886f49ca5659ba6c6b7c:log:58', 'hash': '0x6798d599f1d404583180360dc615bbd3c511c11894dd886f49ca5659ba6c6b7c', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x6798d599f1d404583180360dc615bbd3c511c11894dd886f49ca5659ba6c6b7c:log:59', 'hash': '0x6798d599f1d404583180360dc615bbd3c511c11894dd886f49ca5659ba6c6b7c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c4', 'uniqueId': '0xd33863fd6dc081c5039979bfbe89d24096f0357fbc8c44e3f258f0946ddc2b09:log:0', 'hash': '0xd33863fd6dc081c5039979bfbe89d24096f0357fbc8c44e3f258f0946ddc2b09', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 6584.145698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05fcfdaa5cd0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:19:28.000Z'}}, {'blockNum': '0x94c9ce', 'uniqueId': '0x34b6cdd2b1e9990b0608d7a9c4891f58b0ff935e90147fa1edb8ccb94ddc2011:log:148', 'hash': '0x34b6cdd2b1e9990b0608d7a9c4891f58b0ff935e90147fa1edb8ccb94ddc2011', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0xa2e30f39c11f4150bd468a5de91ce8b5dba08abd', 'value': 12207.007147269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b1a2a532505', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:21:10.000Z'}}, {'blockNum': '0x94c9f3', 'uniqueId': '0xb43febb6f89e145c7c8121082aab9328b41cd8f0f5330006deca8dc6a0fcfaca:log:34', 'hash': '0xb43febb6f89e145c7c8121082aab9328b41cd8f0f5330006deca8dc6a0fcfaca', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6584.145698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05fcfdaa5cd0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:29:08.000Z'}}, {'blockNum': '0x94c9f3', 'uniqueId': '0xee2a3ef4418e1e792ad4d6edb8f93b2960c934d8ef4169d878f7b12973b13284:log:40', 'hash': '0xee2a3ef4418e1e792ad4d6edb8f93b2960c934d8ef4169d878f7b12973b13284', 'from': '0xa2e30f39c11f4150bd468a5de91ce8b5dba08abd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12207.007147269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b1a2a532505', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:29:08.000Z'}}, {'blockNum': '0x94ca13', 'uniqueId': '0xbdad07553f9d4bdcc8535860b8462dc0f3a98136984bc3f5d58a1cb27c0869ed:log:58', 'hash': '0xbdad07553f9d4bdcc8535860b8462dc0f3a98136984bc3f5d58a1cb27c0869ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4a62dfdfdb35408ede6390d7c652943381668e0b', 'value': 110.517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19bb539740', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:37:07.000Z'}}, {'blockNum': '0x94cab5', 'uniqueId': '0xf3f9013c97c16b936b82628ee81ddfa388cb8268c5fa8272c0bb988a442c3bdd:log:59', 'hash': '0xf3f9013c97c16b936b82628ee81ddfa388cb8268c5fa8272c0bb988a442c3bdd', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x5bc124b3f28c301f497d3d44eb5c3225651143cb', 'value': 1100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:17:33.000Z'}}, {'blockNum': '0x94cad4', 'uniqueId': '0x3cd0d9b874d8da2a2e8b592bd3ea2acd2882f21ab4e172ae0d6d1d674b6215d0:log:43', 'hash': '0x3cd0d9b874d8da2a2e8b592bd3ea2acd2882f21ab4e172ae0d6d1d674b6215d0', 'from': '0x5bc124b3f28c301f497d3d44eb5c3225651143cb', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:24:02.000Z'}}, {'blockNum': '0x94cad4', 'uniqueId': '0x3cd0d9b874d8da2a2e8b592bd3ea2acd2882f21ab4e172ae0d6d1d674b6215d0:log:44', 'hash': '0x3cd0d9b874d8da2a2e8b592bd3ea2acd2882f21ab4e172ae0d6d1d674b6215d0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:24:02.000Z'}}, {'blockNum': '0x94cb0f', 'uniqueId': '0x4b264ddf04c54e936d8957b8ea94fb6883bdda9e15a743fcc34d49a906618f94:log:20', 'hash': '0x4b264ddf04c54e936d8957b8ea94fb6883bdda9e15a743fcc34d49a906618f94', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 237.843251084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37608fff8c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:40:13.000Z'}}, {'blockNum': '0x94cb0f', 'uniqueId': '0x4b264ddf04c54e936d8957b8ea94fb6883bdda9e15a743fcc34d49a906618f94:log:22', 'hash': '0x4b264ddf04c54e936d8957b8ea94fb6883bdda9e15a743fcc34d49a906618f94', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3ade2f2e035d88756834c7dd39df0be9364b3c95', 'value': 237.843251084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37608fff8c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:40:13.000Z'}}, {'blockNum': '0x94cb2f', 'uniqueId': '0x17fbedb560e7cd11a424492c3d230b7ab502505780ee3c32e6df12e41a3b07cf:log:90', 'hash': '0x17fbedb560e7cd11a424492c3d230b7ab502505780ee3c32e6df12e41a3b07cf', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x71a06ff7244c8bae35867a023d6eeb78d8e60669', 'value': 37.762551261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x08cad2cddd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:45:30.000Z'}}, {'blockNum': '0x94cb4f', 'uniqueId': '0x3706f20f4609e66615fbee1698b867851950c2fb8d5755b28d2a3483ea953e34:log:156', 'hash': '0x3706f20f4609e66615fbee1698b867851950c2fb8d5755b28d2a3483ea953e34', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 190.529801417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c5c760cc9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:52:24.000Z'}}, {'blockNum': '0x94cb63', 'uniqueId': '0x0c660ca0f66850916b2135aa03b2844194cbfb81c8b8365f58a8a3869ae2c75b:log:65', 'hash': '0x0c660ca0f66850916b2135aa03b2844194cbfb81c8b8365f58a8a3869ae2c75b', 'from': '0x997e906b5102a9416e866af55dfb530519d3530d', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 391.723576229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b348b6ba5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:56:01.000Z'}}, {'blockNum': '0x94cbb5', 'uniqueId': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5:log:31', 'hash': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 191.045723869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c7b3666dd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:12:42.000Z'}}, {'blockNum': '0x94cbb5', 'uniqueId': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5:log:33', 'hash': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 191.045723869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c7b3666dd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:12:42.000Z'}}, {'blockNum': '0x94cbb5', 'uniqueId': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5:log:37', 'hash': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 191.045723869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c7b3666dd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:12:42.000Z'}}, {'blockNum': '0x94cbcc', 'uniqueId': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f:log:79', 'hash': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 191.431285371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c92319a7b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:18:11.000Z'}}, {'blockNum': '0x94cbcc', 'uniqueId': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f:log:81', 'hash': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 191.431285371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c92319a7b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:18:11.000Z'}}, {'blockNum': '0x94cbcc', 'uniqueId': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f:log:85', 'hash': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 191.431285371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c92319a7b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:18:11.000Z'}}, {'blockNum': '0x94cc16', 'uniqueId': '0xb7f655df5a60b8a86deeb5fe380e554a4fd32528d895b4bb733e0a2c1d0f7f6d:log:10', 'hash': '0xb7f655df5a60b8a86deeb5fe380e554a4fd32528d895b4bb733e0a2c1d0f7f6d', 'from': '0x897cda859e56a553683df8b8e33e0cb2aa8d5e9d', 'to': '0x75ca9399496053bbea8867c9df4e88877efceb9f', 'value': 2437.946548715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0237a0f021eb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:32:16.000Z'}}, {'blockNum': '0x94cc7b', 'uniqueId': '0x082cce44b52ccef999da66402664e39a18db60704adc07af2da1b148697234c0:log:72', 'hash': '0x082cce44b52ccef999da66402664e39a18db60704adc07af2da1b148697234c0', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 385.087431007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x59a8ffe15f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:51:09.000Z'}}, {'blockNum': '0x94ccfb', 'uniqueId': '0x3800e7080ebd6f056416afadaafb2e9e1c3dbc34a3ab9b1baae2d3bb0031c0af:log:60', 'hash': '0x3800e7080ebd6f056416afadaafb2e9e1c3dbc34a3ab9b1baae2d3bb0031c0af', 'from': '0xff76be47165d7dc5359625a3d804f70e311849b3', 'to': '0x9c36b28bf5b696fe06ff8625db8fa610ce96c60a', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:18:38.000Z'}}, {'blockNum': '0x94cd70', 'uniqueId': '0xfd5f07749f8ab8168fc671860d4a4f2e0a7b6f206a02b4189b01d2f87c5f9950:log:66', 'hash': '0xfd5f07749f8ab8168fc671860d4a4f2e0a7b6f206a02b4189b01d2f87c5f9950', 'from': '0xa698cade532bf7491f0f887284f8e10e2de97198', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1093.572737115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfe9e03b85b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:44:33.000Z'}}, {'blockNum': '0x94cd70', 'uniqueId': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e:log:129', 'hash': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 242.476847785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3874bf12a9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:44:33.000Z'}}, {'blockNum': '0x94cd70', 'uniqueId': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e:log:132', 'hash': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 242.476847785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3874bf12a9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:44:33.000Z'}}, {'blockNum': '0x94cd70', 'uniqueId': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e:log:134', 'hash': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 242.476847785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3874bf12a9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:44:33.000Z'}}, {'blockNum': '0x94ce12', 'uniqueId': '0x6ba13a0dc5ff804a02ed4a664d95f6a355c09c24189b0ccc5f400a1b8bfe98d0:log:49', 'hash': '0x6ba13a0dc5ff804a02ed4a664d95f6a355c09c24189b0ccc5f400a1b8bfe98d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 240.253010467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37f0320223', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T07:19:53.000Z'}}, {'blockNum': '0x94ce12', 'uniqueId': '0x6ba13a0dc5ff804a02ed4a664d95f6a355c09c24189b0ccc5f400a1b8bfe98d0:log:51', 'hash': '0x6ba13a0dc5ff804a02ed4a664d95f6a355c09c24189b0ccc5f400a1b8bfe98d0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x259158ccbc4d55b47a4241cf282c71ac690635c9', 'value': 240.253010467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37f0320223', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T07:19:53.000Z'}}, {'blockNum': '0x94ce29', 'uniqueId': '0xefc69aaa2f0a977805517b2e0fd8e87ad157a829e31113185d42c73b601120d3:log:157', 'hash': '0xefc69aaa2f0a977805517b2e0fd8e87ad157a829e31113185d42c73b601120d3', 'from': '0x259158ccbc4d55b47a4241cf282c71ac690635c9', 'to': '0xb1b7565cb8113dc9e7d14109aa5c53be03b9341d', 'value': 240.253010467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37f0320223', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T07:24:32.000Z'}}, {'blockNum': '0x94cea5', 'uniqueId': '0xb5ebc5e363c492f3810d38244f20c0b3ed55c6ecf9dcdefe50b7abf57457d954:log:76', 'hash': '0xb5ebc5e363c492f3810d38244f20c0b3ed55c6ecf9dcdefe50b7abf57457d954', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc6bfd30a6b368cc5869c6803ed3a3ca29b221aab', 'value': 150.63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x23123f6580', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T07:55:10.000Z'}}, {'blockNum': '0x94ced5', 'uniqueId': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70:log:171', 'hash': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 193.386758116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d06bfbfe4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:05:42.000Z'}}, {'blockNum': '0x94ced5', 'uniqueId': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70:log:173', 'hash': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 193.386758116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d06bfbfe4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:05:42.000Z'}}, {'blockNum': '0x94ced5', 'uniqueId': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70:log:174', 'hash': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 193.386758116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d06bfbfe4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:05:42.000Z'}}, {'blockNum': '0x94cf6e', 'uniqueId': '0x00ff39cc1797597f6817d41f88926cfbdbf770bc6088992278481a1216f176d0:log:117', 'hash': '0x00ff39cc1797597f6817d41f88926cfbdbf770bc6088992278481a1216f176d0', 'from': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'to': '0x2bbe23f7f801423f5612416fe75905b20d40f5a7', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:42:22.000Z'}}, {'blockNum': '0x94cf8e', 'uniqueId': '0xb434b5681a93a8b0494ff39857f5148cdc776eb4b95e5a9c4e0c2eda02d188d9:log:29', 'hash': '0xb434b5681a93a8b0494ff39857f5148cdc776eb4b95e5a9c4e0c2eda02d188d9', 'from': '0x2bbe23f7f801423f5612416fe75905b20d40f5a7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:48:56.000Z'}}, {'blockNum': '0x94cfdf', 'uniqueId': '0xa4c90fed4bfe9f9c8de0234204660a69b7e59f6936840379b7444347d5c61a80:log:34', 'hash': '0xa4c90fed4bfe9f9c8de0234204660a69b7e59f6936840379b7444347d5c61a80', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1017.489524328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xece71a0668', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:05:46.000Z'}}, {'blockNum': '0x94cfdf', 'uniqueId': '0xa4c90fed4bfe9f9c8de0234204660a69b7e59f6936840379b7444347d5c61a80:log:36', 'hash': '0xa4c90fed4bfe9f9c8de0234204660a69b7e59f6936840379b7444347d5c61a80', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce3f17ff0f62bc9b2e27c64ed9b6838828ac73ba', 'value': 1017.489524328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xece71a0668', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:05:46.000Z'}}, {'blockNum': '0x94cff9', 'uniqueId': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c:log:145', 'hash': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 192.860544685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ce7625ead', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:11:19.000Z'}}, {'blockNum': '0x94cff9', 'uniqueId': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c:log:147', 'hash': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 192.860544685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ce7625ead', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:11:19.000Z'}}, {'blockNum': '0x94cff9', 'uniqueId': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c:log:148', 'hash': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 192.860544685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ce7625ead', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:11:19.000Z'}}, {'blockNum': '0x94d0b0', 'uniqueId': '0x3e142cbece5bd9048caf0ddf9dbee5fb0f50f6d7fab64cf5705efe59fdadab0f:log:9', 'hash': '0x3e142cbece5bd9048caf0ddf9dbee5fb0f50f6d7fab64cf5705efe59fdadab0f', 'from': '0xe3bc413df54de29765c0ee49bfa12ad591ea8ecc', 'to': '0xc7b74e47f2f02cc24107092cc8ba202751d41d80', 'value': 133.505134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1f1586adb0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:51:50.000Z'}}, {'blockNum': '0x94d0e4', 'uniqueId': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174:log:133', 'hash': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x239f82ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:02:56.000Z'}}, {'blockNum': '0x94d0e4', 'uniqueId': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174:log:135', 'hash': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x239f82ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:02:56.000Z'}}, {'blockNum': '0x94d0e4', 'uniqueId': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174:log:136', 'hash': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x239f82ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:02:56.000Z'}}, {'blockNum': '0x94d163', 'uniqueId': '0xe055d3b243ebd855d589a9da4f38b57fb31b324492ba17dbc3c4b957297a4386:log:8', 'hash': '0xe055d3b243ebd855d589a9da4f38b57fb31b324492ba17dbc3c4b957297a4386', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x08db2f565f057fc12ba6151e7e7190d003cba7bd', 'value': 150.86661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x232059c750', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:31:53.000Z'}}, {'blockNum': '0x94d165', 'uniqueId': '0x288f05853f3f6a1e524d34d414ae0f285b78294a01af4f5d635b9f88f52d13ff:log:30', 'hash': '0x288f05853f3f6a1e524d34d414ae0f285b78294a01af4f5d635b9f88f52d13ff', 'from': '0x3dd1023508a279c7b59c316ffa470e10482e6b05', 'to': '0x9799c2b49b938ed4a416bf26491c76d4fff3f58e', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:31:59.000Z'}}, {'blockNum': '0x94d168', 'uniqueId': '0x4dd8341e284511c0b36124bb4693c5b011fffd225cd75518f9e0822632a4cba5:log:102', 'hash': '0x4dd8341e284511c0b36124bb4693c5b011fffd225cd75518f9e0822632a4cba5', 'from': '0x9799c2b49b938ed4a416bf26491c76d4fff3f58e', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:32:48.000Z'}}, {'blockNum': '0x94d180', 'uniqueId': '0xa3d4958bbc113aad00af20fea00d62371a97e91991f37b2d24fccb02283a10d7:log:138', 'hash': '0xa3d4958bbc113aad00af20fea00d62371a97e91991f37b2d24fccb02283a10d7', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:38:46.000Z'}}, {'blockNum': '0x94d27c', 'uniqueId': '0x89d4b4c08f73f21642712fc4048f9d1b21fbf5ccda49d77de10b3a839784f2a3:log:9', 'hash': '0x89d4b4c08f73f21642712fc4048f9d1b21fbf5ccda49d77de10b3a839784f2a3', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x1723c4892acebbfbe6d41376e9b6c3f98d10453d', 'value': 339.3235798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f0142ed98', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:32:03.000Z'}}, {'blockNum': '0x94d290', 'uniqueId': '0xb9cf4f968c2a3f96f21eabed8fd56ff598516bbb5f1d7d286b0a39fa9ef24d9b:log:18', 'hash': '0xb9cf4f968c2a3f96f21eabed8fd56ff598516bbb5f1d7d286b0a39fa9ef24d9b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 424.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x62f22f9680', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:36:59.000Z'}}, {'blockNum': '0x94d2c9', 'uniqueId': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9:log:59', 'hash': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 192.336477178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2cc825bbfa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:46:57.000Z'}}, {'blockNum': '0x94d2c9', 'uniqueId': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9:log:61', 'hash': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 192.336477178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2cc825bbfa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:46:57.000Z'}}, {'blockNum': '0x94d2c9', 'uniqueId': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9:log:62', 'hash': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 192.336477178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2cc825bbfa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:46:57.000Z'}}, {'blockNum': '0x94d2d2', 'uniqueId': '0xb8ff86ac4ccaec72fff6be2eeeaff2f85b5c6158ff4772af63e6d8f588da713e:log:28', 'hash': '0xb8ff86ac4ccaec72fff6be2eeeaff2f85b5c6158ff4772af63e6d8f588da713e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x67fd24105d31cdbd00004db1a8a444dce7314003', 'value': 1111.63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0102d24faf80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:49:01.000Z'}}, {'blockNum': '0x94d2f3', 'uniqueId': '0x782027610397665262847f7633daf5382e063d2ae9a77d6b9c516d12cbc0f14b:log:16', 'hash': '0x782027610397665262847f7633daf5382e063d2ae9a77d6b9c516d12cbc0f14b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 426.187200929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x633abc99a1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:55:31.000Z'}}, {'blockNum': '0x94d2f3', 'uniqueId': '0x782027610397665262847f7633daf5382e063d2ae9a77d6b9c516d12cbc0f14b:log:18', 'hash': '0x782027610397665262847f7633daf5382e063d2ae9a77d6b9c516d12cbc0f14b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xc6e1dfff01ecfc22a0a79d366f80f0338645f50c', 'value': 426.187200929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x633abc99a1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:55:31.000Z'}}, {'blockNum': '0x94d335', 'uniqueId': '0x9baf8f91f930fc03de62b737865ef910f42baad8a1db42396119ba1b544cb48b:log:29', 'hash': '0x9baf8f91f930fc03de62b737865ef910f42baad8a1db42396119ba1b544cb48b', 'from': '0xc6e1dfff01ecfc22a0a79d366f80f0338645f50c', 'to': '0xf45ff21fd96e6fbe8699f8780e83dab4d1660c5b', 'value': 426.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x633a4eb900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:11:23.000Z'}}, {'blockNum': '0x94d3c5', 'uniqueId': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305:log:134', 'hash': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 358.273603117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x536ac5562d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:45:54.000Z'}}, {'blockNum': '0x94d3c5', 'uniqueId': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305:log:136', 'hash': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.271185887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x536aa073df', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:45:54.000Z'}}, {'blockNum': '0x94d3c5', 'uniqueId': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305:log:137', 'hash': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 358.271185887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x536aa073df', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:45:54.000Z'}}, {'blockNum': '0x94d3d3', 'uniqueId': '0x522e9ce91c35f7fd45b104d3f070ade55a13ca22d0fa0da3c2dcbf53e6a3b627:log:112', 'hash': '0x522e9ce91c35f7fd45b104d3f070ade55a13ca22d0fa0da3c2dcbf53e6a3b627', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 238.476984785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37865601d1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:48:52.000Z'}}, {'blockNum': '0x94d3d3', 'uniqueId': '0x522e9ce91c35f7fd45b104d3f070ade55a13ca22d0fa0da3c2dcbf53e6a3b627:log:117', 'hash': '0x522e9ce91c35f7fd45b104d3f070ade55a13ca22d0fa0da3c2dcbf53e6a3b627', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 238.476984785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37865601d1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:48:52.000Z'}}, {'blockNum': '0x94d3d4', 'uniqueId': '0x31da9bef89f21e3b7934d9e7559bbf9194223fbe4337edac95cea0530199fcdb:log:116', 'hash': '0x31da9bef89f21e3b7934d9e7559bbf9194223fbe4337edac95cea0530199fcdb', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 238.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3785eb6d80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:49:02.000Z'}}, {'blockNum': '0x94d3db', 'uniqueId': '0x28d4383b7f99c639212e4e16c6ac4b6dcb11979b2ad936655b8c673b4e0e0ce4:log:13', 'hash': '0x28d4383b7f99c639212e4e16c6ac4b6dcb11979b2ad936655b8c673b4e0e0ce4', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 760.294556704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb105164420', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:50:43.000Z'}}, {'blockNum': '0x94d3dc', 'uniqueId': '0x5e9e8528a3f46872598bf78ca06e4efd5864e5844b1ad4d789a575d1147b4d33:log:14', 'hash': '0x5e9e8528a3f46872598bf78ca06e4efd5864e5844b1ad4d789a575d1147b4d33', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 503.88742747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x755207f78e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:05.000Z'}}, {'blockNum': '0x94d3dc', 'uniqueId': '0x5e9e8528a3f46872598bf78ca06e4efd5864e5844b1ad4d789a575d1147b4d33:log:16', 'hash': '0x5e9e8528a3f46872598bf78ca06e4efd5864e5844b1ad4d789a575d1147b4d33', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 503.88742747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x755207f78e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:05.000Z'}}, {'blockNum': '0x94d3dd', 'uniqueId': '0xaa5171eaed8bba9019bb1950f2a1b6834e69730352c2d83193037e4e435833b0:log:10', 'hash': '0xaa5171eaed8bba9019bb1950f2a1b6834e69730352c2d83193037e4e435833b0', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x39abec1a4d790c51d62882aa19e699b7bd5d3a9b', 'value': 126.688012465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d7f31a8b1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:07.000Z'}}, {'blockNum': '0x94d3dd', 'uniqueId': '0x61239620296338158e87805bfed23d29fffd2aceab168a635081bf3e3d70b60d:log:19', 'hash': '0x61239620296338158e87805bfed23d29fffd2aceab168a635081bf3e3d70b60d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1391.155057662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0143e74d93fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:07.000Z'}}, {'blockNum': '0x94d3dd', 'uniqueId': '0x6359ae81c9b9e43cebe4fa39ab7a046e934cab012538f2c1ef65381be2b2615e:log:22', 'hash': '0x6359ae81c9b9e43cebe4fa39ab7a046e934cab012538f2c1ef65381be2b2615e', 'from': '0x39abec1a4d790c51d62882aa19e699b7bd5d3a9b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 126.688012465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d7f31a8b1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:07.000Z'}}, {'blockNum': '0x94d3de', 'uniqueId': '0xb0838ab4f40ab5853c5752912e76498c0830e197e01dee51599c6bf100387adf:log:43', 'hash': '0xb0838ab4f40ab5853c5752912e76498c0830e197e01dee51599c6bf100387adf', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 469.777969923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d60f2f303', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:15.000Z'}}, {'blockNum': '0x94d3de', 'uniqueId': '0xb0838ab4f40ab5853c5752912e76498c0830e197e01dee51599c6bf100387adf:log:48', 'hash': '0xb0838ab4f40ab5853c5752912e76498c0830e197e01dee51599c6bf100387adf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 469.777969923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d60f2f303', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:15.000Z'}}, {'blockNum': '0x94d3df', 'uniqueId': '0xf3b9ae3f5143eeb7331fc1ad5a4cff680e008adb74283143a986cfdeb7229ffa:log:5', 'hash': '0xf3b9ae3f5143eeb7331fc1ad5a4cff680e008adb74283143a986cfdeb7229ffa', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 469.777969923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d60f2f303', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:52:10.000Z'}}, {'blockNum': '0x94d3df', 'uniqueId': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273:log:13', 'hash': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 728.847492294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa9b2b224c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:52:10.000Z'}}, {'blockNum': '0x94d3df', 'uniqueId': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273:log:15', 'hash': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 728.847492294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa9b2b224c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:52:10.000Z'}}, {'blockNum': '0x94d3df', 'uniqueId': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273:log:19', 'hash': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 728.847492294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa9b2b224c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:52:10.000Z'}}, {'blockNum': '0x94d3ec', 'uniqueId': '0xf3a5e656cb509601b4c6b9cf96f37e51330f9d973c53e781cff58c58cbc7bf99:log:99', 'hash': '0xf3a5e656cb509601b4c6b9cf96f37e51330f9d973c53e781cff58c58cbc7bf99', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 231.634899718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x35ee841306', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:54:26.000Z'}}, {'blockNum': '0x94d3ec', 'uniqueId': '0xf3a5e656cb509601b4c6b9cf96f37e51330f9d973c53e781cff58c58cbc7bf99:log:104', 'hash': '0xf3a5e656cb509601b4c6b9cf96f37e51330f9d973c53e781cff58c58cbc7bf99', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 231.634899718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x35ee841306', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:54:26.000Z'}}, {'blockNum': '0x94d3ef', 'uniqueId': '0x1440b5f4bbfa7365e65618ef40b20578da695acbce68e69939f03fac1d1efd76:log:55', 'hash': '0x1440b5f4bbfa7365e65618ef40b20578da695acbce68e69939f03fac1d1efd76', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 231.63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x35ee394f80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:55:08.000Z'}}, {'blockNum': '0x94d3f1', 'uniqueId': '0xdc79bd2c3158e8b75edaa7b91e430bf3a53783e90a44cce661c3ed4dca2d726c:log:103', 'hash': '0xdc79bd2c3158e8b75edaa7b91e430bf3a53783e90a44cce661c3ed4dca2d726c', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 693.689678117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa183207925', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:55:20.000Z'}}, {'blockNum': '0x94d3f4', 'uniqueId': '0xd644b2bfb481384350a593c59e38a0bca44e9ddd3c60918c969797adeef02902:log:10', 'hash': '0xd644b2bfb481384350a593c59e38a0bca44e9ddd3c60918c969797adeef02902', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 693.689678117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa183207925', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:56:37.000Z'}}, {'blockNum': '0x94d3fe', 'uniqueId': '0x0b01bf78a7507bf70691d0b870839d7564246d976cd4d04eb78a12612792b77a:log:18', 'hash': '0x0b01bf78a7507bf70691d0b870839d7564246d976cd4d04eb78a12612792b77a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1861.255057662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01b15b7250fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:59:25.000Z'}}, {'blockNum': '0x94d3fe', 'uniqueId': '0x101d086f1c10b489d90e3ffe8b6e1a385b02d06b55046f2e8c0cbef0c9071295:log:26', 'hash': '0x101d086f1c10b489d90e3ffe8b6e1a385b02d06b55046f2e8c0cbef0c9071295', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 469.777969923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d60f2f303', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:59:25.000Z'}}, {'blockNum': '0x94d40f', 'uniqueId': '0xf371e2be862ab8ec7f7d59b662d7c7936b3cc886e27b15a1a6a7e436c6ece27d:log:7', 'hash': '0xf371e2be862ab8ec7f7d59b662d7c7936b3cc886e27b15a1a6a7e436c6ece27d', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 393.442519789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b9b006aed', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:02:42.000Z'}}, {'blockNum': '0x94d412', 'uniqueId': '0x890948856bf18db3f4da5ae970df784c37724ab6dfaf6b56cfad7f99f5c75aa6:log:87', 'hash': '0x890948856bf18db3f4da5ae970df784c37724ab6dfaf6b56cfad7f99f5c75aa6', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 280.621653185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x41565a9cc1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:03:08.000Z'}}, {'blockNum': '0x94d416', 'uniqueId': '0xc96fc6d288bb0f90b51715adef38abbf1cfc4d7e182be417be2002d233b865e5:log:17', 'hash': '0xc96fc6d288bb0f90b51715adef38abbf1cfc4d7e182be417be2002d233b865e5', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 281.961608243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x41a638b433', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:04:03.000Z'}}, {'blockNum': '0x94d427', 'uniqueId': '0x0c25b5e3650cb70a778d8a65ed304b0c3c0fc2271875dad69d302c7d65fbe95d:log:12', 'hash': '0x0c25b5e3650cb70a778d8a65ed304b0c3c0fc2271875dad69d302c7d65fbe95d', 'from': '0x9cc0bd1f4e9ee7082821ee9da13c4c192b7afb15', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:07:10.000Z'}}, {'blockNum': '0x94d427', 'uniqueId': '0x0c25b5e3650cb70a778d8a65ed304b0c3c0fc2271875dad69d302c7d65fbe95d:log:13', 'hash': '0x0c25b5e3650cb70a778d8a65ed304b0c3c0fc2271875dad69d302c7d65fbe95d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:07:10.000Z'}}, {'blockNum': '0x94d463', 'uniqueId': '0xcede3733088cae28f66858b0fff8011f9c57e88a34881f8cd378e820c503bcc4:log:31', 'hash': '0xcede3733088cae28f66858b0fff8011f9c57e88a34881f8cd378e820c503bcc4', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 693.689678117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa183207925', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:19:12.000Z'}}, {'blockNum': '0x94d4ba', 'uniqueId': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715:log:72', 'hash': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 348.076042721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x510af2e9e1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:43:48.000Z'}}, {'blockNum': '0x94d4ba', 'uniqueId': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715:log:74', 'hash': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 348.073713804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x510acf608c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:43:48.000Z'}}, {'blockNum': '0x94d4ba', 'uniqueId': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715:log:75', 'hash': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 348.073713804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x510acf608c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:43:48.000Z'}}, {'blockNum': '0x94d4cd', 'uniqueId': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e:log:137', 'hash': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e', 'from': '0x88eaaa81e689abb337bc2d1db7aa7a39d2af98cb', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x47036aaa00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:50:09.000Z'}}, {'blockNum': '0x94d4cd', 'uniqueId': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e:log:139', 'hash': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 304.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x46f13cbbc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:50:09.000Z'}}, {'blockNum': '0x94d4cd', 'uniqueId': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e:log:140', 'hash': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 304.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x46f13cbbc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:50:09.000Z'}}, {'blockNum': '0x94d4e1', 'uniqueId': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768:log:39', 'hash': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768', 'from': '0x88eaaa81e689abb337bc2d1db7aa7a39d2af98cb', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x47036aaa00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:55:27.000Z'}}, {'blockNum': '0x94d4e1', 'uniqueId': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768:log:41', 'hash': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 304.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x46f13cbbc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:55:27.000Z'}}, {'blockNum': '0x94d4e1', 'uniqueId': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768:log:42', 'hash': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 304.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x46f13cbbc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:55:27.000Z'}}, {'blockNum': '0x94d50a', 'uniqueId': '0x2aefc22dc53170135f1efabfe00bcd69d743b9e19a13583731a29e301c70a031:log:42', 'hash': '0x2aefc22dc53170135f1efabfe00bcd69d743b9e19a13583731a29e301c70a031', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 185.425625077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b2c3a7ff5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:07:14.000Z'}}, {'blockNum': '0x94d530', 'uniqueId': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81:log:100', 'hash': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 346.343604185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50a3afffd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:16:53.000Z'}}, {'blockNum': '0x94d530', 'uniqueId': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81:log:103', 'hash': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 346.343604185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50a3afffd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:16:53.000Z'}}, {'blockNum': '0x94d530', 'uniqueId': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81:log:104', 'hash': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 346.343604185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50a3afffd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:16:53.000Z'}}, {'blockNum': '0x94d539', 'uniqueId': '0xd5c8092bb86408625f425be595f5354750b21fc9cb7f08a7c91b86efe67b6561:log:79', 'hash': '0xd5c8092bb86408625f425be595f5354750b21fc9cb7f08a7c91b86efe67b6561', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 458.479133992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6abf7c6528', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:18:38.000Z'}}, {'blockNum': '0x94d539', 'uniqueId': '0xd5c8092bb86408625f425be595f5354750b21fc9cb7f08a7c91b86efe67b6561:log:84', 'hash': '0xd5c8092bb86408625f425be595f5354750b21fc9cb7f08a7c91b86efe67b6561', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 458.479133992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6abf7c6528', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:18:38.000Z'}}, {'blockNum': '0x94d53b', 'uniqueId': '0x1a172e68efba1c9ddbe4f5e3af04a36916ee64c6dd9fed72fae24ec46c892ec8:log:11', 'hash': '0x1a172e68efba1c9ddbe4f5e3af04a36916ee64c6dd9fed72fae24ec46c892ec8', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 458.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6abef10580', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:18:50.000Z'}}, {'blockNum': '0x94d56f', 'uniqueId': '0x898bd6356ef32a12ee919d7c47833fee6562477e895bf0dffaf47d31b042f2c7:log:100', 'hash': '0x898bd6356ef32a12ee919d7c47833fee6562477e895bf0dffaf47d31b042f2c7', 'from': '0x2b7f82eb4936d0d4e72f4b9db1528cf03e2e7aee', 'to': '0x27f048cae935a84a2127ee924cc3921feb8820fb', 'value': 59.59884409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0de05e30ba', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:31:56.000Z'}}, {'blockNum': '0x94d5d1', 'uniqueId': '0x7ca197dc10631c261e2b97850f527be04189903a3a7b84aa5d8f0647d2487736:log:54', 'hash': '0x7ca197dc10631c261e2b97850f527be04189903a3a7b84aa5d8f0647d2487736', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5ac1a7cfd53c88e28a2ee4a928246404052be79f', 'value': 197.4996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2dfbe4bc80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:56:17.000Z'}}, {'blockNum': '0x94d5eb', 'uniqueId': '0x9a140aa98149bc0884a320d01ee8e489a3daaade5de70701813586b32dfdcb27:log:47', 'hash': '0x9a140aa98149bc0884a320d01ee8e489a3daaade5de70701813586b32dfdcb27', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 550.570618081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x803090ece1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:02:48.000Z'}}, {'blockNum': '0x94d606', 'uniqueId': '0xa0d239155e9db2c3e54431785f3098492ccdc4b823f8a46ca67e676287079ea1:log:127', 'hash': '0xa0d239155e9db2c3e54431785f3098492ccdc4b823f8a46ca67e676287079ea1', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xc044938f12d0ac9346917d0f71c5c539ea2715d2', 'value': 106.958591471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x18e73a95ef', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:08:59.000Z'}}, {'blockNum': '0x94d608', 'uniqueId': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5:log:76', 'hash': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 341.358702487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f7a906f97', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:09:10.000Z'}}, {'blockNum': '0x94d608', 'uniqueId': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5:log:78', 'hash': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 341.358702487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f7a906f97', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:09:10.000Z'}}, {'blockNum': '0x94d608', 'uniqueId': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5:log:79', 'hash': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 341.358702487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f7a906f97', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:09:10.000Z'}}, {'blockNum': '0x94d6ad', 'uniqueId': '0x9c035b2207b3cf14055759b956f38096bf1977521a2bb456838ab6b24bbc2c03:log:67', 'hash': '0x9c035b2207b3cf14055759b956f38096bf1977521a2bb456838ab6b24bbc2c03', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x73a50acc57681be8706d7fb83a4e8549b4ddb428', 'value': 65.4491303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0f3d12793c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:42:36.000Z'}}, {'blockNum': '0x94d6e4', 'uniqueId': '0xcaf3cf4628e40934d21c76b53b021ceaa41c92976dfdc092a08b6dfdab2db9ea:log:0', 'hash': '0xcaf3cf4628e40934d21c76b53b021ceaa41c92976dfdc092a08b6dfdab2db9ea', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 677.671833563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9dc8638fdb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:38.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0x20742837e5c7ea6588afe03428d6c7029eaea856c65757d8b3b071ef094ea959:log:1', 'hash': '0x20742837e5c7ea6588afe03428d6c7029eaea856c65757d8b3b071ef094ea959', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 537.345244806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7d1c45be86', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39:log:83', 'hash': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 226.145504724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x34a7528dd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39:log:88', 'hash': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 226.145504724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x34a7528dd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39:log:89', 'hash': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 226.145504724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x34a7528dd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0xfb0aadf697134b63494cc9ab37a15e425dcee0570bf7327dfd2bc15dd92a645a:log:92', 'hash': '0xfb0aadf697134b63494cc9ab37a15e425dcee0570bf7327dfd2bc15dd92a645a', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1329.453266794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01358996f76a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda:log:94', 'hash': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 337.900861356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4eac75f7ac', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda:log:96', 'hash': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 337.900861356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4eac75f7ac', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda:log:101', 'hash': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 337.900861356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4eac75f7ac', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2:log:3', 'hash': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 357.218221594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x532bdd7e1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2:log:5', 'hash': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 357.218221594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x532bdd7e1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2:log:10', 'hash': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 357.218221594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x532bdd7e1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9ecdbd15490514a3b6eed3ee8819269aa42e9b2d8400780cf617beda6650046d:log:12', 'hash': '0x9ecdbd15490514a3b6eed3ee8819269aa42e9b2d8400780cf617beda6650046d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1336.328451103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01372361f41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9ecdbd15490514a3b6eed3ee8819269aa42e9b2d8400780cf617beda6650046d:log:14', 'hash': '0x9ecdbd15490514a3b6eed3ee8819269aa42e9b2d8400780cf617beda6650046d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1336.328451103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01372361f41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x71391b008b26379b576601142d08307e1d6ea63327d350371e3eb792779e4003:log:46', 'hash': '0x71391b008b26379b576601142d08307e1d6ea63327d350371e3eb792779e4003', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 665.652291558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9afbf7e7e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x71391b008b26379b576601142d08307e1d6ea63327d350371e3eb792779e4003:log:51', 'hash': '0x71391b008b26379b576601142d08307e1d6ea63327d350371e3eb792779e4003', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 665.652291558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9afbf7e7e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x636ec3a7a77f0e4398205f4b0948480804f529621b9c1a470f19f3b3c8612e5e:log:90', 'hash': '0x636ec3a7a77f0e4398205f4b0948480804f529621b9c1a470f19f3b3c8612e5e', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 677.671833563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9dc8638fdb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0x4fe2a3246482a419f6051792ee60a83f315cafb3ff777dc5766b1f0729e89f13:log:0', 'hash': '0x4fe2a3246482a419f6051792ee60a83f315cafb3ff777dc5766b1f0729e89f13', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 2609.031316065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x025f76628261', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0x92ac1592e09865dbbd51e4faae0414914824c1d715400694d74b58470e0351e7:log:117', 'hash': '0x92ac1592e09865dbbd51e4faae0414914824c1d715400694d74b58470e0351e7', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1275.86029939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01290f332e7e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0x92ac1592e09865dbbd51e4faae0414914824c1d715400694d74b58470e0351e7:log:122', 'hash': '0x92ac1592e09865dbbd51e4faae0414914824c1d715400694d74b58470e0351e7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 1275.86029939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01290f332e7e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0xd84ff5a33328066601f2b0dfd69d223f338b410d491abeaa32b2247356a19e90:log:126', 'hash': '0xd84ff5a33328066601f2b0dfd69d223f338b410d491abeaa32b2247356a19e90', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1336.328451103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01372361f41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0x4a6c591d358726fa302c551a1bdfd6b418299c3162c9f5ba2ec6874b8289dd5d:log:137', 'hash': '0x4a6c591d358726fa302c551a1bdfd6b418299c3162c9f5ba2ec6874b8289dd5d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xbd924e0fd0e52fff25012a751a55eca04746a27e', 'value': 2161.166064639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f72f891bff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0x25cbf977a5d09e1744b25162353ac785bd1d1e90583a35894cfe8665c8313295:log:0', 'hash': '0x25cbf977a5d09e1744b25162353ac785bd1d1e90583a35894cfe8665c8313295', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 2430.674162447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0235ef78530f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0xa10adb3faa49c4b3b9d322a4f7276db651726ef93c62d6338c4368c787089608:log:29', 'hash': '0xa10adb3faa49c4b3b9d322a4f7276db651726ef93c62d6338c4368c787089608', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 594.137078981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8a55545cc5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0xa10adb3faa49c4b3b9d322a4f7276db651726ef93c62d6338c4368c787089608:log:31', 'hash': '0xa10adb3faa49c4b3b9d322a4f7276db651726ef93c62d6338c4368c787089608', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 594.137078981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8a55545cc5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0x4dc29b31265c40ffee054a08b09c8f743a6717c0f0151d7cf8d1fa12c3af7200:log:111', 'hash': '0x4dc29b31265c40ffee054a08b09c8f743a6717c0f0151d7cf8d1fa12c3af7200', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1336.328451103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01372361f41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0x39260c016efa5011315dfe054e76028e7ae7f17a53966c475b37e48b25a8a837:log:139', 'hash': '0x39260c016efa5011315dfe054e76028e7ae7f17a53966c475b37e48b25a8a837', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1275.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01290f2e9d00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0x7cddfcdf234d098f56def1b8347398705bc91735885c6bd16eda2895211a5a1e:log:152', 'hash': '0x7cddfcdf234d098f56def1b8347398705bc91735885c6bd16eda2895211a5a1e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1181.830290878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01132a931dbe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6ec', 'uniqueId': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea:log:11', 'hash': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 857.099865398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc78f220d36', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:01.000Z'}}, {'blockNum': '0x94d6ec', 'uniqueId': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea:log:16', 'hash': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 857.099865398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc78f220d36', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:01.000Z'}}, {'blockNum': '0x94d6ec', 'uniqueId': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea:log:17', 'hash': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 857.099873625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc78f222d59', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:01.000Z'}}, {'blockNum': '0x94d6ec', 'uniqueId': '0x7d8ed9e7eaecee8bf6063cbeea5f012464d8908f10f1004f13de106940033cfc:log:191', 'hash': '0x7d8ed9e7eaecee8bf6063cbeea5f012464d8908f10f1004f13de106940033cfc', 'from': '0xbd924e0fd0e52fff25012a751a55eca04746a27e', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 2161.166064639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f72f891bff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:01.000Z'}}, {'blockNum': '0x94d6ed', 'uniqueId': '0xd653b1844affe3a88d724fa89d7a2344195c151411c1883bd89b8cf29642424a:log:38', 'hash': '0xd653b1844affe3a88d724fa89d7a2344195c151411c1883bd89b8cf29642424a', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 2609.031316065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x025f76628261', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:28.000Z'}}, {'blockNum': '0x94d6ed', 'uniqueId': '0x5386ff299b27b4eab7ce030f34df38e1f5fc003ef1d438fce32bed97870628d0:log:42', 'hash': '0x5386ff299b27b4eab7ce030f34df38e1f5fc003ef1d438fce32bed97870628d0', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1215.480434124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x011b00478dcc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:28.000Z'}}, {'blockNum': '0x94d6ee', 'uniqueId': '0xac08ddb18f236e43e4ea3a10775699f07a1a1296e6a341e877590c8c7b28ef6f:log:34', 'hash': '0xac08ddb18f236e43e4ea3a10775699f07a1a1296e6a341e877590c8c7b28ef6f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa5d1ad34accbf152f44810b897b374a5c1f44dbe', 'value': 1945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c4db08ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:36.000Z'}}, {'blockNum': '0x94d6ee', 'uniqueId': '0xc183326a4c5f4cd902788737b2aa99fb44756756966a39951a554a5695712cac:log:35', 'hash': '0xc183326a4c5f4cd902788737b2aa99fb44756756966a39951a554a5695712cac', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1633.635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017c5c3bdec0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:36.000Z'}}, {'blockNum': '0x94d6ee', 'uniqueId': '0x5c2fa678923a427fc7902409dc951b5a61f9ff9752251c1fbdd2284800c14d1b:log:147', 'hash': '0x5c2fa678923a427fc7902409dc951b5a61f9ff9752251c1fbdd2284800c14d1b', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1688.482790325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0189216abbb5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:36.000Z'}}, {'blockNum': '0x94d6f0', 'uniqueId': '0xa5da4ebfd154e5ef1bfc9049642a24e0388f5b3f60489244726957cd7cad1bf7:log:111', 'hash': '0xa5da4ebfd154e5ef1bfc9049642a24e0388f5b3f60489244726957cd7cad1bf7', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 394.365136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5bd1fe6f1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:16.000Z'}}, {'blockNum': '0x94d6f0', 'uniqueId': '0xa5da4ebfd154e5ef1bfc9049642a24e0388f5b3f60489244726957cd7cad1bf7:log:116', 'hash': '0xa5da4ebfd154e5ef1bfc9049642a24e0388f5b3f60489244726957cd7cad1bf7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 394.365136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5bd1fe6f1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:16.000Z'}}, {'blockNum': '0x94d6f0', 'uniqueId': '0xd9514642a15d6dd2acc2d373bfecb2fe4ad0a899fd8e1ba0d0149d674c4a881f:log:132', 'hash': '0xd9514642a15d6dd2acc2d373bfecb2fe4ad0a899fd8e1ba0d0149d674c4a881f', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1193.047291773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0115c728f77d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:16.000Z'}}, {'blockNum': '0x94d6f0', 'uniqueId': '0x9c8606dd0e53e54f725c24d5576f48c8a727b5abd4aaa1d0c09240b74dd5e286:log:135', 'hash': '0x9c8606dd0e53e54f725c24d5576f48c8a727b5abd4aaa1d0c09240b74dd5e286', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1171.229816075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0110b2bcb50b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:16.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0xccba6362daf4ebe4d3ecfabb8accb6ef279612a0f2671e45734621d5e8984676:log:43', 'hash': '0xccba6362daf4ebe4d3ecfabb8accb6ef279612a0f2671e45734621d5e8984676', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 665.652291558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9afbf7e7e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0xccba6362daf4ebe4d3ecfabb8accb6ef279612a0f2671e45734621d5e8984676:log:45', 'hash': '0xccba6362daf4ebe4d3ecfabb8accb6ef279612a0f2671e45734621d5e8984676', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 665.652291558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9afbf7e7e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43:log:71', 'hash': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 596.113394538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8acb208b6a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43:log:76', 'hash': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 596.113394538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8acb208b6a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43:log:77', 'hash': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 596.113394538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8acb208b6a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x39db845b147c101943bff951611b02e5183e14ca4ab4e76910236cf739609a68:log:82', 'hash': '0x39db845b147c101943bff951611b02e5183e14ca4ab4e76910236cf739609a68', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 389.27596707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5aa2a7de5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x82567d71b09bacc11ef92d418ca475f496f2e108bb3bfb9429cd1115f50c311a:log:84', 'hash': '0x82567d71b09bacc11ef92d418ca475f496f2e108bb3bfb9429cd1115f50c311a', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 386.906528083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a156d1953', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x7a82c2f18dfd0f2774eb914b1b42acfebf86a962b607a43bf8f8147be94cb557:log:87', 'hash': '0x7a82c2f18dfd0f2774eb914b1b42acfebf86a962b607a43bf8f8147be94cb557', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 394.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5bd1b00e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x283b2f81ee9381d8855d934ecfd0279bae68447fd03458c344aca8ad7df8c83d:log:88', 'hash': '0x283b2f81ee9381d8855d934ecfd0279bae68447fd03458c344aca8ad7df8c83d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1146.727781081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x010afe4d52d9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9:log:104', 'hash': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 628.545035783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9258341e07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9:log:109', 'hash': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 628.545035783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9258341e07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9:log:111', 'hash': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 628.545035783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9258341e07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f4', 'uniqueId': '0xc2276d2d4787031fc0df181991c57b282a6469891abf8e27c979c00eca0c27fd:log:20', 'hash': '0xc2276d2d4787031fc0df181991c57b282a6469891abf8e27c979c00eca0c27fd', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 1884.329070505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01b6bac3cfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:17.000Z'}}, {'blockNum': '0x94d6f4', 'uniqueId': '0xc2276d2d4787031fc0df181991c57b282a6469891abf8e27c979c00eca0c27fd:log:22', 'hash': '0xc2276d2d4787031fc0df181991c57b282a6469891abf8e27c979c00eca0c27fd', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 1884.329070505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01b6bac3cfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:17.000Z'}}, {'blockNum': '0x94d6f4', 'uniqueId': '0x32af6f9a5bc8b53d420d4abbec4766f2f508b44e9e58bf2ecf01bd549dba481c:log:202', 'hash': '0x32af6f9a5bc8b53d420d4abbec4766f2f508b44e9e58bf2ecf01bd549dba481c', 'from': '0xc044938f12d0ac9346917d0f71c5c539ea2715d2', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 106.958591471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x18e73a95ef', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:17.000Z'}}, {'blockNum': '0x94d6f7', 'uniqueId': '0x6bd5e7a36d07d8f652ebec1d927a8daf58b71506f728198525eaea726d8ae0ed:log:3', 'hash': '0x6bd5e7a36d07d8f652ebec1d927a8daf58b71506f728198525eaea726d8ae0ed', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1639.50554939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017dba25584e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:42.000Z'}}, {'blockNum': '0x94d6f7', 'uniqueId': '0x4eda142618c79b65b9d2db40eb6136ac7d6033371d5b1c8f55b057833ebf80b6:log:4', 'hash': '0x4eda142618c79b65b9d2db40eb6136ac7d6033371d5b1c8f55b057833ebf80b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 360.96724295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x540b5304c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:42.000Z'}}, {'blockNum': '0x94d6f7', 'uniqueId': '0xed97f4ea049ef42db2c2202390f0d0b80f245e1826ffec704f34ae19d21540cc:log:5', 'hash': '0xed97f4ea049ef42db2c2202390f0d0b80f245e1826ffec704f34ae19d21540cc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab2169f600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:42.000Z'}}, {'blockNum': '0x94d6f7', 'uniqueId': '0xc5156dc2abd905316355fcfbfd3780bee3ff16ff0bdc159b550f2240d7afb0d2:log:6', 'hash': '0xc5156dc2abd905316355fcfbfd3780bee3ff16ff0bdc159b550f2240d7afb0d2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 997.05938135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8255ec866', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:42.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x62d2ef7c48aea106bdba86746758a305dd60d96434faeeabbab56e06b8d7d7d0:log:56', 'hash': '0x62d2ef7c48aea106bdba86746758a305dd60d96434faeeabbab56e06b8d7d7d0', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1112.7408093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x010314854a54', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x62d2ef7c48aea106bdba86746758a305dd60d96434faeeabbab56e06b8d7d7d0:log:61', 'hash': '0x62d2ef7c48aea106bdba86746758a305dd60d96434faeeabbab56e06b8d7d7d0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 1112.7408093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x010314854a54', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd:log:62', 'hash': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 222.346617342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x33c4e421fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd:log:64', 'hash': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 220.478926636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3355916f2c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd:log:66', 'hash': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 220.478926636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3355916f2c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6fb', 'uniqueId': '0xf6d4980d7041f3ce0d410cd974cd39558d89cc0adcbb7a3a37a9a50b371a862f:log:6', 'hash': '0xf6d4980d7041f3ce0d410cd974cd39558d89cc0adcbb7a3a37a9a50b371a862f', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce0c61abf9866fef5767e102cf227f294b3459e5', 'value': 736.694152049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab8664ab71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:11.000Z'}}, {'blockNum': '0x94d6fb', 'uniqueId': '0x8aa4528fd9ec1bebd52b32539ca69bf3aa27b50b019eb369a0f7f9273d05e1bd:log:9', 'hash': '0x8aa4528fd9ec1bebd52b32539ca69bf3aa27b50b019eb369a0f7f9273d05e1bd', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 1804.092015862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a40c4384f6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:11.000Z'}}, {'blockNum': '0x94d6fb', 'uniqueId': '0x8aa4528fd9ec1bebd52b32539ca69bf3aa27b50b019eb369a0f7f9273d05e1bd:log:11', 'hash': '0x8aa4528fd9ec1bebd52b32539ca69bf3aa27b50b019eb369a0f7f9273d05e1bd', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 1804.092015862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a40c4384f6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:11.000Z'}}, {'blockNum': '0x94d6fb', 'uniqueId': '0xe90777d70dbbfd854e8ed2ac4dac1e23ef94a4e8b2a617ba29d9e1d53adf9e05:log:139', 'hash': '0xe90777d70dbbfd854e8ed2ac4dac1e23ef94a4e8b2a617ba29d9e1d53adf9e05', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0290d0b3f200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:11.000Z'}}, {'blockNum': '0x94d6fc', 'uniqueId': '0x423625f27d17553caf0544476dbe406ba0a3a5848dada50d638e2fd857d815d5:log:109', 'hash': '0x423625f27d17553caf0544476dbe406ba0a3a5848dada50d638e2fd857d815d5', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1749.447110438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0197532c6f26', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:33.000Z'}}, {'blockNum': '0x94d6fc', 'uniqueId': '0x423625f27d17553caf0544476dbe406ba0a3a5848dada50d638e2fd857d815d5:log:114', 'hash': '0x423625f27d17553caf0544476dbe406ba0a3a5848dada50d638e2fd857d815d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 1749.447110438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0197532c6f26', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:33.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a:log:26', 'hash': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 1318.845878225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x013311570fd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a:log:29', 'hash': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1318.845878225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x013311570fd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a:log:31', 'hash': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 1318.845878225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x013311570fd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab:log:86', 'hash': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 474.749661779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6e8948f253', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab:log:91', 'hash': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 474.749661779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6e8948f253', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab:log:93', 'hash': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 474.749661779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6e8948f253', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0x0ce92f63db66c58d63061922b4f79c4c85093a2b84322ed101ec8c62cd52912b:log:95', 'hash': '0x0ce92f63db66c58d63061922b4f79c4c85093a2b84322ed101ec8c62cd52912b', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1112.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01031478f100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fe', 'uniqueId': '0xa370c02099d5b0ed0e6cc26b3d21f6de0f5749dea3371579617dd1ae1aef4bdc:log:24', 'hash': '0xa370c02099d5b0ed0e6cc26b3d21f6de0f5749dea3371579617dd1ae1aef4bdc', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 346.544301027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50afa663e3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:56.000Z'}}, {'blockNum': '0x94d6fe', 'uniqueId': '0xa370c02099d5b0ed0e6cc26b3d21f6de0f5749dea3371579617dd1ae1aef4bdc:log:29', 'hash': '0xa370c02099d5b0ed0e6cc26b3d21f6de0f5749dea3371579617dd1ae1aef4bdc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 346.544301027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50afa663e3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:56.000Z'}}, {'blockNum': '0x94d6ff', 'uniqueId': '0xf8e3d8db023d46b0d38ad869a3ecf0d43684112a73361eeabfdb2458d84fc52e:log:93', 'hash': '0xf8e3d8db023d46b0d38ad869a3ecf0d43684112a73361eeabfdb2458d84fc52e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1042.786291308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf2cae80e6c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:00.000Z'}}, {'blockNum': '0x94d6ff', 'uniqueId': '0x409d13c6f90ea270c631863b1f49968ca4a7792941d60e285682ac8fc7e7c658:log:98', 'hash': '0x409d13c6f90ea270c631863b1f49968ca4a7792941d60e285682ac8fc7e7c658', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 346.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50af64c300', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:00.000Z'}}, {'blockNum': '0x94d701', 'uniqueId': '0x61e50f863746fbdbcc426f189001ea43c79ba2e5886e54f27984bf33195b9093:log:13', 'hash': '0x61e50f863746fbdbcc426f189001ea43c79ba2e5886e54f27984bf33195b9093', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x71f4f9b59277a0bb3cf938e9d22b28cffc3cbadf', 'value': 1085.952494007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfcd7d009b7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:24.000Z'}}, {'blockNum': '0x94d701', 'uniqueId': '0x0448c18ad0d52afbe31c0218422f721f9ce8d9cfccb02a0680ea0c65bf6145a2:log:15', 'hash': '0x0448c18ad0d52afbe31c0218422f721f9ce8d9cfccb02a0680ea0c65bf6145a2', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1006.526702934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xea59aaa556', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:24.000Z'}}, {'blockNum': '0x94d701', 'uniqueId': '0x567e5d6cb041eedf7270364274a2c4c9a581f948152ca3138db98ea43bb8d3ae:log:18', 'hash': '0x567e5d6cb041eedf7270364274a2c4c9a581f948152ca3138db98ea43bb8d3ae', 'from': '0x71f4f9b59277a0bb3cf938e9d22b28cffc3cbadf', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1085.952494007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfcd7d009b7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:24.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xe1e925ec8511dfcd9cd5532ad57bfb8fa2372fd4b74919b2d724b16d10aed5df:log:7', 'hash': '0xe1e925ec8511dfcd9cd5532ad57bfb8fa2372fd4b74919b2d724b16d10aed5df', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 933.59190086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd95e69e2bc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0x6a2e6691d9fdc458b93d6b485d5995a0670706f96060c6b6398787d2fb31bc85:log:8', 'hash': '0x6a2e6691d9fdc458b93d6b485d5995a0670706f96060c6b6398787d2fb31bc85', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4917.2057559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0478e04d67fc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0x71b58a764d2084486121a74b4989fad2dd0e08d25e686a1a4eb38b0a6fc0c2e9:log:9', 'hash': '0x71b58a764d2084486121a74b4989fad2dd0e08d25e686a1a4eb38b0a6fc0c2e9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x22b1179200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xaef6fdde79083a8beb2092fd3100a56e4a7903f71ea7408ad59fa993a4ec5b54:log:10', 'hash': '0xaef6fdde79083a8beb2092fd3100a56e4a7903f71ea7408ad59fa993a4ec5b54', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2416b84e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0x1992e3e17ac65f01775c56845c0b9702895291203318507212b431030b628caa:log:11', 'hash': '0x1992e3e17ac65f01775c56845c0b9702895291203318507212b431030b628caa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 325.95567463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4be478e206', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xdaee4e87124ad3cecb123b12b9234e66d5bab68bab6c87e61773ae33c9f568b5:log:24', 'hash': '0xdaee4e87124ad3cecb123b12b9234e66d5bab68bab6c87e61773ae33c9f568b5', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 508.89964355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x767cc8509e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xdaee4e87124ad3cecb123b12b9234e66d5bab68bab6c87e61773ae33c9f568b5:log:29', 'hash': '0xdaee4e87124ad3cecb123b12b9234e66d5bab68bab6c87e61773ae33c9f568b5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 508.89964355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x767cc8509e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xa0a66aae3add7298a30da613789cd82116e54fc4ce2fcbb8235bbc064c84e18e:log:138', 'hash': '0xa0a66aae3add7298a30da613789cd82116e54fc4ce2fcbb8235bbc064c84e18e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1007.813334293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xeaa65b1515', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0x097fb62aebeb490704d2436c699b9c21cd144da50ff2f06d99245cee5ff9d479:log:140', 'hash': '0x097fb62aebeb490704d2436c699b9c21cd144da50ff2f06d99245cee5ff9d479', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 990.858766846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe6b3c8e9fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84:log:2', 'hash': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 888.715372048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xceeb906610', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84:log:16', 'hash': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 744.990390819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xad74e33a23', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84:log:21', 'hash': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 744.990390819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xad74e33a23', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84:log:22', 'hash': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x4c39ada0340c1eb3cee343f44819323dd29081a9', 'value': 1633.705762867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017c6073a033', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0x4e8618a6b63b729b8c867667c61754e4e193037bb5a253a61b884dfce30c547a:log:49', 'hash': '0x4e8618a6b63b729b8c867667c61754e4e193037bb5a253a61b884dfce30c547a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 24.925224383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05cda8bdbf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0x4e8618a6b63b729b8c867667c61754e4e193037bb5a253a61b884dfce30c547a:log:51', 'hash': '0x4e8618a6b63b729b8c867667c61754e4e193037bb5a253a61b884dfce30c547a', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 24.925224383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05cda8bdbf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0x0814d3f63c879fad222c2f5c982082bbdcf0e46cd05a0e92fac4af12a44a0113:log:56', 'hash': '0x0814d3f63c879fad222c2f5c982082bbdcf0e46cd05a0e92fac4af12a44a0113', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 209.439324293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x30c38e7885', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d705', 'uniqueId': '0x8dbfc2e8f82b9da0e93f00c4238bcb8a691f7eae185cb486d90117134fbd01fb:log:5', 'hash': '0x8dbfc2e8f82b9da0e93f00c4238bcb8a691f7eae185cb486d90117134fbd01fb', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1909.927144683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01bcb0876ceb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:08.000Z'}}, {'blockNum': '0x94d707', 'uniqueId': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4:log:35', 'hash': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 415.361056904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x60b572c088', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:24.000Z'}}, {'blockNum': '0x94d707', 'uniqueId': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4:log:37', 'hash': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 415.361056904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x60b572c088', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:24.000Z'}}, {'blockNum': '0x94d707', 'uniqueId': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4:log:39', 'hash': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 415.361056904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x60b572c088', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:24.000Z'}}, {'blockNum': '0x94d708', 'uniqueId': '0x2596752e75dd2faa8a0ac7b8d1878d522cbdf56932ffb43d4fe23ff7de8645de:log:10', 'hash': '0x2596752e75dd2faa8a0ac7b8d1878d522cbdf56932ffb43d4fe23ff7de8645de', 'from': '0x69a3e8aca3e25ef6a81859968725709fe60438ee', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 749.31977059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xae76f051de', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:28.000Z'}}, {'blockNum': '0x94d70d', 'uniqueId': '0xec13f2be80b5f4fbdd464ff986ecd3173abe7e5a7eda88086d666f6e48fa2ad8:log:25', 'hash': '0xec13f2be80b5f4fbdd464ff986ecd3173abe7e5a7eda88086d666f6e48fa2ad8', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 660.666782598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x99d2cf1386', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:57.000Z'}}, {'blockNum': '0x94d70d', 'uniqueId': '0xa6f911f17fc015f22c29d69aad4075ecfc4c302265079dcc96f84f30e86866d5:log:31', 'hash': '0xa6f911f17fc015f22c29d69aad4075ecfc4c302265079dcc96f84f30e86866d5', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 508.89964355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x767cc8509e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:57.000Z'}}, {'blockNum': '0x94d70f', 'uniqueId': '0xb3cdac799beb9c874d8d480a19f9527f0af017e96916bf149403a505f5e7f87a:log:7', 'hash': '0xb3cdac799beb9c874d8d480a19f9527f0af017e96916bf149403a505f5e7f87a', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 3688.421086367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x035ac707549f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:25.000Z'}}, {'blockNum': '0x94d70f', 'uniqueId': '0xd5be6a2f2619961d0c6bc74df1df1aa510d10fe28b946ccd1a5062363e8f426b:log:80', 'hash': '0xd5be6a2f2619961d0c6bc74df1df1aa510d10fe28b946ccd1a5062363e8f426b', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 65.658302365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0f498a2f9d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:25.000Z'}}, {'blockNum': '0x94d70f', 'uniqueId': '0x6bde0242fcf5284a778a73ca20ce864c2077f38c9ec2d66c889999f262e1890a:log:154', 'hash': '0x6bde0242fcf5284a778a73ca20ce864c2077f38c9ec2d66c889999f262e1890a', 'from': '0x3dc1ad2e534ccb562399c88759d36ef7b91b415a', 'to': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'value': 92.29969866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x157d7da1e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:25.000Z'}}, {'blockNum': '0x94d70f', 'uniqueId': '0x2854bb9850477d471437ac0086ac754deb0317f105b90c400a86df3d7585271b:log:171', 'hash': '0x2854bb9850477d471437ac0086ac754deb0317f105b90c400a86df3d7585271b', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 976.115728247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe34507ff77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:25.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xaba2a7e3190e07886dcd4a61f6e7fc15ee05ac2ad787ee9a5401b1689f39b1a3:log:44', 'hash': '0xaba2a7e3190e07886dcd4a61f6e7fc15ee05ac2ad787ee9a5401b1689f39b1a3', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 964.897261164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe0a85bc66c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xaba2a7e3190e07886dcd4a61f6e7fc15ee05ac2ad787ee9a5401b1689f39b1a3:log:49', 'hash': '0xaba2a7e3190e07886dcd4a61f6e7fc15ee05ac2ad787ee9a5401b1689f39b1a3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 964.897261164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe0a85bc66c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d:log:50', 'hash': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 481.962184889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70372f50b9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d:log:52', 'hash': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 481.962184889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70372f50b9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d:log:54', 'hash': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 481.962184889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70372f50b9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d711', 'uniqueId': '0xd3376f97b7ee349e1baad606b97d7a0f7ee5fb6209005f89349675d9c449881b:log:2', 'hash': '0xd3376f97b7ee349e1baad606b97d7a0f7ee5fb6209005f89349675d9c449881b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 8295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x078b54874600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:38.000Z'}}, {'blockNum': '0x94d711', 'uniqueId': '0x05ae5058512552ac044389e0cabba475d313c97fff6bcd4cbb5c83a0cf5df508:log:27', 'hash': '0x05ae5058512552ac044389e0cabba475d313c97fff6bcd4cbb5c83a0cf5df508', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 952.021570019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xdda8e851e3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:38.000Z'}}, {'blockNum': '0x94d713', 'uniqueId': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41:log:10', 'hash': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:54.000Z'}}, {'blockNum': '0x94d713', 'uniqueId': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41:log:12', 'hash': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:54.000Z'}}, {'blockNum': '0x94d713', 'uniqueId': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41:log:17', 'hash': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:54.000Z'}}, {'blockNum': '0x94d713', 'uniqueId': '0x7ba1d5b5b83ce610bafe970c6ed2dc688ec9ac1a22c2df76890086aeb34adbae:log:58', 'hash': '0x7ba1d5b5b83ce610bafe970c6ed2dc688ec9ac1a22c2df76890086aeb34adbae', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 964.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe0a7ecfa80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:54.000Z'}}, {'blockNum': '0x94d714', 'uniqueId': '0x729a5d38b603bc3e588ee07c407291cff5fc575b1c33649655b6713c19893068:log:9', 'hash': '0x729a5d38b603bc3e588ee07c407291cff5fc575b1c33649655b6713c19893068', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 2380.893035477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x022a58489bd5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:18.000Z'}}, {'blockNum': '0x94d714', 'uniqueId': '0x8ea8d353e57cb8441b210e83d040cfb0a557222e51f62e6c09c6efc53847ae7d:log:22', 'hash': '0x8ea8d353e57cb8441b210e83d040cfb0a557222e51f62e6c09c6efc53847ae7d', 'from': '0xce0c61abf9866fef5767e102cf227f294b3459e5', 'to': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'value': 736.694152049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab8664ab71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:18.000Z'}}, {'blockNum': '0x94d714', 'uniqueId': '0xd1494d2393053fc59a06b8d7656fa5878e9865cda9e2d40e23072dd6af5d63c2:log:184', 'hash': '0xd1494d2393053fc59a06b8d7656fa5878e9865cda9e2d40e23072dd6af5d63c2', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 476.656771015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6efaf51fc7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:18.000Z'}}, {'blockNum': '0x94d714', 'uniqueId': '0xd1494d2393053fc59a06b8d7656fa5878e9865cda9e2d40e23072dd6af5d63c2:log:189', 'hash': '0xd1494d2393053fc59a06b8d7656fa5878e9865cda9e2d40e23072dd6af5d63c2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 476.656771015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6efaf51fc7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:18.000Z'}}, {'blockNum': '0x94d715', 'uniqueId': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4:log:24', 'hash': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4', 'from': '0x82edff5e4c6e8e2aee22e6c4edfc46c1b29ce0da', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 1607.110724929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01762f438d41', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:20.000Z'}}, {'blockNum': '0x94d715', 'uniqueId': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4:log:26', 'hash': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1605.503614205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0175cf78fcfd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:20.000Z'}}, {'blockNum': '0x94d715', 'uniqueId': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4:log:27', 'hash': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1605.503614205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0175cf78fcfd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:20.000Z'}}, {'blockNum': '0x94d715', 'uniqueId': '0xfbcc5578e14dc47bc4cc6a765dfe1cb8c53909b32d4469d725ab399bb3687696:log:209', 'hash': '0xfbcc5578e14dc47bc4cc6a765dfe1cb8c53909b32d4469d725ab399bb3687696', 'from': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'to': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:20.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9:log:0', 'hash': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 615.358464187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8f463900bb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9:log:2', 'hash': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 615.35843194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8f463882c4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9:log:4', 'hash': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 615.35843194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8f463882c4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x89707baf42ad152dc5707f2460dabcd41f00645326762ef20afe4dce17697669:log:129', 'hash': '0x89707baf42ad152dc5707f2460dabcd41f00645326762ef20afe4dce17697669', 'from': '0x337f64f81cb64f6f7a0937d6eeb8f7fc15a6ac98', 'to': '0x176dd5eaaa10df472f02609ce973e461e8982214', 'value': 1756.13318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198e1b1c260', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x849f414d4ff78c69d202295ae1d5f4c865b862e046e5f4db82551c965476ae03:log:130', 'hash': '0x849f414d4ff78c69d202295ae1d5f4c865b862e046e5f4db82551c965476ae03', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 476.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6efa8dce80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d717', 'uniqueId': '0xc4733d9814ebb34842ab0cda6bde21be2e5463419cc0ed231ebe592ec18a9cbc:log:66', 'hash': '0xc4733d9814ebb34842ab0cda6bde21be2e5463419cc0ed231ebe592ec18a9cbc', 'from': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:53.000Z'}}, {'blockNum': '0x94d717', 'uniqueId': '0xc4733d9814ebb34842ab0cda6bde21be2e5463419cc0ed231ebe592ec18a9cbc:log:67', 'hash': '0xc4733d9814ebb34842ab0cda6bde21be2e5463419cc0ed231ebe592ec18a9cbc', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:53.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41:log:0', 'hash': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41', 'from': '0x4c39ada0340c1eb3cee343f44819323dd29081a9', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 1633.70576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017c60739500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41:log:2', 'hash': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1123.17271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0105824f7670', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41:log:5', 'hash': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 510.53305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x76de241e90', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41:log:7', 'hash': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 510.53305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x76de241e90', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xc90dc3e60fdcf48651346782831a67a1c21380b633b560312d2b9599457b3e6c:log:76', 'hash': '0xc90dc3e60fdcf48651346782831a67a1c21380b633b560312d2b9599457b3e6c', 'from': '0x460831ee2d52c51ffdb39621d121a07d7fad3e1c', 'to': '0x3fa83ef735b31d099fd005adb82574097448255b', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d71a', 'uniqueId': '0x5b21bebb1807e30f8e0ab2db2ea63900a1c28ea9ee4dd38ad6e50a6833017090:log:26', 'hash': '0x5b21bebb1807e30f8e0ab2db2ea63900a1c28ea9ee4dd38ad6e50a6833017090', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 956.899176547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xdecba2b063', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:10.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0x27eb74885579b178385d632af62d6768d6163a90d32f3eed61796d7dba3a3044:log:28', 'hash': '0x27eb74885579b178385d632af62d6768d6163a90d32f3eed61796d7dba3a3044', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 3502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x032f5f774c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0x054a11740a5cc5ba32cdd672ee6d9df997a92c75d0ba55f2d50659f0121302c5:log:30', 'hash': '0x054a11740a5cc5ba32cdd672ee6d9df997a92c75d0ba55f2d50659f0121302c5', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 494.677545083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x732d14507b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372:log:32', 'hash': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 255.141066632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3b6797b788', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372:log:34', 'hash': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 255.141066632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3b6797b788', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372:log:36', 'hash': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 255.141066632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3b6797b788', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0x15fe4fc08a5cf83472221d48aae15c82a5a5cda65209487aac9759df95dbfca5:log:166', 'hash': '0x15fe4fc08a5cf83472221d48aae15c82a5a5cda65209487aac9759df95dbfca5', 'from': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0x15fe4fc08a5cf83472221d48aae15c82a5a5cda65209487aac9759df95dbfca5:log:167', 'hash': '0x15fe4fc08a5cf83472221d48aae15c82a5a5cda65209487aac9759df95dbfca5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275:log:24', 'hash': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 974.976651015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe301230f07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275:log:26', 'hash': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 974.976651015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe301230f07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275:log:31', 'hash': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 974.976651015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe301230f07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x78e41d7a284fd6d4b3eb4cecc22744c7eaac1031f08415fe4018ad63a38f5156:log:35', 'hash': '0x78e41d7a284fd6d4b3eb4cecc22744c7eaac1031f08415fe4018ad63a38f5156', 'from': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 92.29969866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x157d7da1e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x78e41d7a284fd6d4b3eb4cecc22744c7eaac1031f08415fe4018ad63a38f5156:log:37', 'hash': '0x78e41d7a284fd6d4b3eb4cecc22744c7eaac1031f08415fe4018ad63a38f5156', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 92.29969866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x157d7da1e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d721', 'uniqueId': '0x61dd3155e57e64c1cb6a039fc79cd8d2c53f2a9a24c1c5182d308b4416b38485:log:3', 'hash': '0x61dd3155e57e64c1cb6a039fc79cd8d2c53f2a9a24c1c5182d308b4416b38485', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1033.149863844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf08c87d7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:03.000Z'}}, {'blockNum': '0x94d721', 'uniqueId': '0x61dd3155e57e64c1cb6a039fc79cd8d2c53f2a9a24c1c5182d308b4416b38485:log:5', 'hash': '0x61dd3155e57e64c1cb6a039fc79cd8d2c53f2a9a24c1c5182d308b4416b38485', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1033.149863844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf08c87d7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:03.000Z'}}, {'blockNum': '0x94d721', 'uniqueId': '0xd56567f1437ed1713f57e1aa01b5b8c27f14595ca898e72ecac383ecf21fa880:log:22', 'hash': '0xd56567f1437ed1713f57e1aa01b5b8c27f14595ca898e72ecac383ecf21fa880', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1069.26139915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf8f4f2246e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:03.000Z'}}, {'blockNum': '0x94d722', 'uniqueId': '0xceacdf6aaa45c9eece3aad72680e8de5c0e8d78c193ca0f6cbde705b111b9660:log:9', 'hash': '0xceacdf6aaa45c9eece3aad72680e8de5c0e8d78c193ca0f6cbde705b111b9660', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 405.381795824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5e62a34ff0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:08.000Z'}}, {'blockNum': '0x94d722', 'uniqueId': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0:log:13', 'hash': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 137.753315179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2012bcc76b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:08.000Z'}}, {'blockNum': '0x94d722', 'uniqueId': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0:log:15', 'hash': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 137.753315179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2012bcc76b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:08.000Z'}}, {'blockNum': '0x94d722', 'uniqueId': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0:log:19', 'hash': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 137.753315179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2012bcc76b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:08.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xe456ca802af696124fc358e897d65eaa9b05e223208a2e167bc1928bc0fa6c7d:log:9', 'hash': '0xe456ca802af696124fc358e897d65eaa9b05e223208a2e167bc1928bc0fa6c7d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1499.334819917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d1751c04d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a:log:11', 'hash': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1267.114214684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012705e4851c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a:log:13', 'hash': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1267.114214684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012705e4851c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a:log:18', 'hash': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1267.114214684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012705e4851c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xf659726d02c5160e53249935cfcc478a164d1aabfef6c1a7d4452a35adcfd26d:log:52', 'hash': '0xf659726d02c5160e53249935cfcc478a164d1aabfef6c1a7d4452a35adcfd26d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1982.887435908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01cdad4d1e84', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4:log:71', 'hash': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 827.265559048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc09cdeaa08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4:log:73', 'hash': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 827.265559048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc09cdeaa08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4:log:78', 'hash': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 827.265559048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc09cdeaa08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745:log:93', 'hash': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 335.179338818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4e0a3ed442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745:log:98', 'hash': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 335.179338818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4e0a3ed442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745:log:99', 'hash': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 335.179338818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4e0a3ed442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d724', 'uniqueId': '0x243142d8a1dd5f362bca59fffe73a6b464ddbffb4c8f20c935fd68108d84ae23:log:21', 'hash': '0x243142d8a1dd5f362bca59fffe73a6b464ddbffb4c8f20c935fd68108d84ae23', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1033.149863844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf08c87d7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:42.000Z'}}, {'blockNum': '0x94d725', 'uniqueId': '0xc92f3fe581e6556583a215845663fbac3c91c243a93c967446138960250783f3:log:5', 'hash': '0xc92f3fe581e6556583a215845663fbac3c91c243a93c967446138960250783f3', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 132.427073512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1ed544c7e8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:44.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0xff6caddd398a9c6850a21c120e392ef5f2ec80ed8d5b8da43958abe6aac642bd:log:6', 'hash': '0xff6caddd398a9c6850a21c120e392ef5f2ec80ed8d5b8da43958abe6aac642bd', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab2169f600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0xde58ce4ec740088aa2abb2163902be4e460ac8f3d6c0bf75338e49f5c6aef032:log:7', 'hash': '0xde58ce4ec740088aa2abb2163902be4e460ac8f3d6c0bf75338e49f5c6aef032', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8813.31826213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x080402b44d72', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0x4d381bc5600f3d4437465529c52779babb40be74d30cd9342bc128ca123deb3f:log:10', 'hash': '0x4d381bc5600f3d4437465529c52779babb40be74d30cd9342bc128ca123deb3f', 'from': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3688.421086367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x035ac707549f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0x1cc27350042e2164f6abf0de05e852747deb03f33466a47bda57330a15745da8:log:11', 'hash': '0x1cc27350042e2164f6abf0de05e852747deb03f33466a47bda57330a15745da8', 'from': '0xa5d1ad34accbf152f44810b897b374a5c1f44dbe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c4db08ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0xdd6d782811f5504c8cc48caf4e650b901c10d4e9176057b9af8cac18336646cc:log:14', 'hash': '0xdd6d782811f5504c8cc48caf4e650b901c10d4e9176057b9af8cac18336646cc', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19019.583769525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x114c5788cbb5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0x6b4ce35cb4b892f81d2e1a7d41665f154aedcbe24576b48a732cf20fb8427600:log:18', 'hash': '0x6b4ce35cb4b892f81d2e1a7d41665f154aedcbe24576b48a732cf20fb8427600', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x078b54874600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0xf573824b3e13779840a75fd8ddd8370248d2b4359f73eb25aa082eb4e670d059:log:27', 'hash': '0xf573824b3e13779840a75fd8ddd8370248d2b4359f73eb25aa082eb4e670d059', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 935.259522186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd9c1cfc48a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0xba5285d6bd698f10500af118f80c2769f549aa6986ab5b019adbe1f511e48ed3:log:4', 'hash': '0xba5285d6bd698f10500af118f80c2769f549aa6986ab5b019adbe1f511e48ed3', 'from': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 749.31977059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xae76f051de', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0x388f022e181bca326cea00802ae56f60527c352b7ecca02dac17cf694b03e100:log:8', 'hash': '0x388f022e181bca326cea00802ae56f60527c352b7ecca02dac17cf694b03e100', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0290d0b3f200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0x6a58aafb3f08284048426e6708533d734cff1b5b54dec99adde11439ccfec715:log:9', 'hash': '0x6a58aafb3f08284048426e6708533d734cff1b5b54dec99adde11439ccfec715', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2416b84e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0x6768ba1481dbc1c28af7d23b1e6957cdd4b5f68a802447a4c46f86b73136c3f9:log:10', 'hash': '0x6768ba1481dbc1c28af7d23b1e6957cdd4b5f68a802447a4c46f86b73136c3f9', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8680.992706003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x07e5337c8dd3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0x6013dabd3b47b6fbb15eb800d9b3e17f1841257dfdef1f4d050af9e61c7b70cd:log:31', 'hash': '0x6013dabd3b47b6fbb15eb800d9b3e17f1841257dfdef1f4d050af9e61c7b70cd', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1499.334819917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d1751c04d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d729', 'uniqueId': '0xb2f72b2965f990b391e95a3464f2adfe1450b62560aface18779f1f42eb82d54:log:32', 'hash': '0xb2f72b2965f990b391e95a3464f2adfe1450b62560aface18779f1f42eb82d54', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 340.41911055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f428f6696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:22.000Z'}}, {'blockNum': '0x94d729', 'uniqueId': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2:log:117', 'hash': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 168.708994847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2747d6f71f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:22.000Z'}}, {'blockNum': '0x94d729', 'uniqueId': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2:log:120', 'hash': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 168.708994847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2747d6f71f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:22.000Z'}}, {'blockNum': '0x94d729', 'uniqueId': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2:log:122', 'hash': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 168.708994847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2747d6f71f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:22.000Z'}}, {'blockNum': '0x94d72b', 'uniqueId': '0xe216432229904519484205e51435c70e2d3dacd6ff1b4af75cc4375e915444ce:log:33', 'hash': '0xe216432229904519484205e51435c70e2d3dacd6ff1b4af75cc4375e915444ce', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1002.277129239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe95c5f4c17', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:50.000Z'}}, {'blockNum': '0x94d72c', 'uniqueId': '0xc832ceee543cf487349afe37f53034d9fa0727abe94ab4fa6f0b5e5f236dabdd:log:70', 'hash': '0xc832ceee543cf487349afe37f53034d9fa0727abe94ab4fa6f0b5e5f236dabdd', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1573.490359562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x016e5b557d0a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:03.000Z'}}, {'blockNum': '0x94d72c', 'uniqueId': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40:log:92', 'hash': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40', 'from': '0x406156ecc9ddcc7986f8da71575a2a651956a5fb', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 1257.143412548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0124b3962744', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:03.000Z'}}, {'blockNum': '0x94d72c', 'uniqueId': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40:log:94', 'hash': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1257.143412548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0124b3962744', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:03.000Z'}}, {'blockNum': '0x94d72c', 'uniqueId': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40:log:95', 'hash': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1257.143412548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0124b3962744', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:03.000Z'}}, {'blockNum': '0x94d72d', 'uniqueId': '0xf26def26ba6741f6f8d984dd64d824c7b913e7523aa319395dca1590e4a3ee73:log:39', 'hash': '0xf26def26ba6741f6f8d984dd64d824c7b913e7523aa319395dca1590e4a3ee73', 'from': '0xff280f02c21c7884b0a8dd4757c383cf02fd8c70', 'to': '0xc0caec0bccd1c8f4e6bcc8f27aa91e90ebe4ecbb', 'value': 219.56363098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x331f032184', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:19.000Z'}}, {'blockNum': '0x94d72d', 'uniqueId': '0x46af751ffa7bf9423d18b2f098bffe59077d58940358830c8da29351a3ebab90:log:142', 'hash': '0x46af751ffa7bf9423d18b2f098bffe59077d58940358830c8da29351a3ebab90', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1002.277129239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe95c5f4c17', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:19.000Z'}}, {'blockNum': '0x94d72d', 'uniqueId': '0x1ecc5f09b883b3bec45d4937b4d7a168e5150170055ce2cd00781c77c748570b:log:188', 'hash': '0x1ecc5f09b883b3bec45d4937b4d7a168e5150170055ce2cd00781c77c748570b', 'from': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:19.000Z'}}, {'blockNum': '0x94d72d', 'uniqueId': '0x1ecc5f09b883b3bec45d4937b4d7a168e5150170055ce2cd00781c77c748570b:log:189', 'hash': '0x1ecc5f09b883b3bec45d4937b4d7a168e5150170055ce2cd00781c77c748570b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:19.000Z'}}, {'blockNum': '0x94d72f', 'uniqueId': '0x770b01c0a82ee1c77bf05082bc7b46c2a64219de42bfb77960dc04a01f314e8d:log:38', 'hash': '0x770b01c0a82ee1c77bf05082bc7b46c2a64219de42bfb77960dc04a01f314e8d', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 207.828072356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x306384b7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:39.000Z'}}, {'blockNum': '0x94d72f', 'uniqueId': '0x770b01c0a82ee1c77bf05082bc7b46c2a64219de42bfb77960dc04a01f314e8d:log:40', 'hash': '0x770b01c0a82ee1c77bf05082bc7b46c2a64219de42bfb77960dc04a01f314e8d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 207.828072356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x306384b7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:39.000Z'}}, {'blockNum': '0x94d731', 'uniqueId': '0x303ab75eb8ade26afbb5448fc367e239bd50ea9f8b21983339306cdce063c62e:log:175', 'hash': '0x303ab75eb8ade26afbb5448fc367e239bd50ea9f8b21983339306cdce063c62e', 'from': '0x6f37e792f80f3dcd0c62ff801f126ca1de9f4f06', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:12.000Z'}}, {'blockNum': '0x94d731', 'uniqueId': '0x303ab75eb8ade26afbb5448fc367e239bd50ea9f8b21983339306cdce063c62e:log:176', 'hash': '0x303ab75eb8ade26afbb5448fc367e239bd50ea9f8b21983339306cdce063c62e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:12.000Z'}}, {'blockNum': '0x94d733', 'uniqueId': '0xcdd53e7e43c9de8143a7a2069a8e4472458006188b4b74dbaa0656505b9ce55f:log:132', 'hash': '0xcdd53e7e43c9de8143a7a2069a8e4472458006188b4b74dbaa0656505b9ce55f', 'from': '0xde3e3729351e96e0de1618bc2a562c5bdd7a231c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 8.8888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0211d05300', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:44.000Z'}}, {'blockNum': '0x94d735', 'uniqueId': '0x54d6e5d169e81dd672d97a4d42839d5ae13bcaae97f41d979094fc021d3a0357:log:3', 'hash': '0x54d6e5d169e81dd672d97a4d42839d5ae13bcaae97f41d979094fc021d3a0357', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 209.387642365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x30c079ddfd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:52.000Z'}}, {'blockNum': '0x94d736', 'uniqueId': '0x3248834874ffc1f2c4b410b5e75c794c087d50371a3aca13805be4cd163b0f9a:log:0', 'hash': '0x3248834874ffc1f2c4b410b5e75c794c087d50371a3aca13805be4cd163b0f9a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5640.253432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0521394d60c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:55.000Z'}}, {'blockNum': '0x94d736', 'uniqueId': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509:log:7', 'hash': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 867.595574499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xca00b9dce3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:55.000Z'}}, {'blockNum': '0x94d736', 'uniqueId': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509:log:9', 'hash': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 867.595574499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xca00b9dce3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:55.000Z'}}, {'blockNum': '0x94d736', 'uniqueId': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509:log:15', 'hash': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 867.595574499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xca00b9dce3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:55.000Z'}}, {'blockNum': '0x94d738', 'uniqueId': '0x3d315917f94fca71aceb5d906bc8cdb86821925a2bf369b96eb234591d472ae4:log:61', 'hash': '0x3d315917f94fca71aceb5d906bc8cdb86821925a2bf369b96eb234591d472ae4', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 306.334247514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4752f1aa5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:03.000Z'}}, {'blockNum': '0x94d739', 'uniqueId': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664:log:121', 'hash': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 172.060948263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x280fa1b727', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:31.000Z'}}, {'blockNum': '0x94d739', 'uniqueId': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664:log:124', 'hash': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 172.060948263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x280fa1b727', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:31.000Z'}}, {'blockNum': '0x94d739', 'uniqueId': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664:log:126', 'hash': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 172.060948263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x280fa1b727', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:31.000Z'}}, {'blockNum': '0x94d73c', 'uniqueId': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84:log:20', 'hash': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 138.815291919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x205209420f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:39.000Z'}}, {'blockNum': '0x94d73c', 'uniqueId': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84:log:22', 'hash': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 138.815291919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x205209420f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:39.000Z'}}, {'blockNum': '0x94d73c', 'uniqueId': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84:log:26', 'hash': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 138.815291919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x205209420f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:39.000Z'}}, {'blockNum': '0x94d741', 'uniqueId': '0xb00cb854705e6306939e6b383d00cd66be4f7409abd9e4db2ce0043ce16b6ba3:log:4', 'hash': '0xb00cb854705e6306939e6b383d00cd66be4f7409abd9e4db2ce0043ce16b6ba3', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 627.393428678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x92138ffcc6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:14:50.000Z'}}, {'blockNum': '0x94d741', 'uniqueId': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc:log:13', 'hash': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 355.799846367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x52d752cddf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:14:50.000Z'}}, {'blockNum': '0x94d741', 'uniqueId': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc:log:15', 'hash': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 355.799846367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x52d752cddf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:14:50.000Z'}}, {'blockNum': '0x94d741', 'uniqueId': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc:log:20', 'hash': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 355.799846367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x52d752cddf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:14:50.000Z'}}, {'blockNum': '0x94d742', 'uniqueId': '0xb2bfa7922e5bd098413cd81b42c89fec474cac49da7e81a11b4210627add2708:log:82', 'hash': '0xb2bfa7922e5bd098413cd81b42c89fec474cac49da7e81a11b4210627add2708', 'from': '0xc9a9ca58da3f657a5833a52815aed9b4ff631f96', 'to': '0x25673fa58a432d0385014533bdb9550f8307793b', 'value': 1241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0120f15d3a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:15:21.000Z'}}, {'blockNum': '0x94d744', 'uniqueId': '0xeced4a78b4adc174fc9375ab3808107ac4204411e966537d3e0cc744ad500900:log:105', 'hash': '0xeced4a78b4adc174fc9375ab3808107ac4204411e966537d3e0cc744ad500900', 'from': '0xb59cc943ff7c1ef0526c7ca153251d3e69c9c374', 'to': '0xa778e4466057d56744f2bd18a7ad129f50bd56eb', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:15:38.000Z'}}, {'blockNum': '0x94d745', 'uniqueId': '0x200fa3007db2a9a54c41208495bbaecdd5989ba4c294485367c82bb478abc774:log:38', 'hash': '0x200fa3007db2a9a54c41208495bbaecdd5989ba4c294485367c82bb478abc774', 'from': '0xb6933dcdea76ca3e750e66140001a229c75bf69b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 699.636816753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e59a9b71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:13.000Z'}}, {'blockNum': '0x94d745', 'uniqueId': '0x200fa3007db2a9a54c41208495bbaecdd5989ba4c294485367c82bb478abc774:log:39', 'hash': '0x200fa3007db2a9a54c41208495bbaecdd5989ba4c294485367c82bb478abc774', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 699.636816753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e59a9b71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:13.000Z'}}, {'blockNum': '0x94d746', 'uniqueId': '0xb193a114f638c236bc4f3cf3e6e7c6ce84247108042870ec50f63f9f814b27ae:log:10', 'hash': '0xb193a114f638c236bc4f3cf3e6e7c6ce84247108042870ec50f63f9f814b27ae', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1257.300673567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0124bcf5c41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:18.000Z'}}, {'blockNum': '0x94d746', 'uniqueId': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276:log:13', 'hash': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 261.941891625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3cfcf41229', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:18.000Z'}}, {'blockNum': '0x94d746', 'uniqueId': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276:log:15', 'hash': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 261.941891625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3cfcf41229', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:18.000Z'}}, {'blockNum': '0x94d746', 'uniqueId': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276:log:17', 'hash': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 261.941891625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3cfcf41229', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:18.000Z'}}, {'blockNum': '0x94d748', 'uniqueId': '0x44a1fc69f9dd21e8ea8b5b30c91e4dbed11aef62c3f16f9b1288e9f3075b5b0e:log:27', 'hash': '0x44a1fc69f9dd21e8ea8b5b30c91e4dbed11aef62c3f16f9b1288e9f3075b5b0e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa5d1ad34accbf152f44810b897b374a5c1f44dbe', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c428385c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:32.000Z'}}, {'blockNum': '0x94d749', 'uniqueId': '0xd69832c21b606dc3c06e5d0562ce07c156899461f0a272c4f2e902258a7dddc8:log:54', 'hash': '0xd69832c21b606dc3c06e5d0562ce07c156899461f0a272c4f2e902258a7dddc8', 'from': '0x9c85522547c835fde63800143e940f2b4e1f2195', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2022.712167604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d6f30a4cb4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:48.000Z'}}, {'blockNum': '0x94d749', 'uniqueId': '0xd69832c21b606dc3c06e5d0562ce07c156899461f0a272c4f2e902258a7dddc8:log:55', 'hash': '0xd69832c21b606dc3c06e5d0562ce07c156899461f0a272c4f2e902258a7dddc8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2022.712167604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d6f30a4cb4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:48.000Z'}}, {'blockNum': '0x94d74a', 'uniqueId': '0xb40496ad6248191e236b59ade4f43e8fc786ce3dd80fe258d422b75e14e15866:log:9', 'hash': '0xb40496ad6248191e236b59ade4f43e8fc786ce3dd80fe258d422b75e14e15866', 'from': '0xdde8b84f3b544933c4ea58802d4af5564ad061d8', 'to': '0x0dc30f687eb2a06a83765c3dc696051ea9c7db79', 'value': 833.81663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc2235812f0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:17:26.000Z'}}, {'blockNum': '0x94d74d', 'uniqueId': '0x3bb6ce6a215300bb9fe21d2c9e088b711324002a267d551483de1c97e1ce6049:log:102', 'hash': '0x3bb6ce6a215300bb9fe21d2c9e088b711324002a267d551483de1c97e1ce6049', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 832.458749655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc1d26876d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:18:12.000Z'}}, {'blockNum': '0x94d74d', 'uniqueId': '0x5870f000d5e873e76ebf5dd5b0cccfdba67c2d3d3aa4a1f39e63b95dd070fbea:log:130', 'hash': '0x5870f000d5e873e76ebf5dd5b0cccfdba67c2d3d3aa4a1f39e63b95dd070fbea', 'from': '0xa1acaddd259649d470b42c95738e5e89c8d8a233', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37e11d6000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:18:12.000Z'}}, {'blockNum': '0x94d751', 'uniqueId': '0xbaa450b089b310cab065c95f0bfa39457a93d66e1cd5cf4d84e7fdc282087071:log:4', 'hash': '0xbaa450b089b310cab065c95f0bfa39457a93d66e1cd5cf4d84e7fdc282087071', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 8111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x07607d461600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:18:54.000Z'}}, {'blockNum': '0x94d751', 'uniqueId': '0x4a2fc053c715d4c5a56bfb88f1d1624bb13aca5d6945896f615696e360547728:log:25', 'hash': '0x4a2fc053c715d4c5a56bfb88f1d1624bb13aca5d6945896f615696e360547728', 'from': '0x6576a8a62c376b4807f226950e73d6b99cb5eab7', 'to': '0x8696493b25f9ba554fe44bc7bc403ac2b6276769', 'value': 7821.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x071d2cf99480', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:18:54.000Z'}}, {'blockNum': '0x94d752', 'uniqueId': '0x482037acb9757d288789ef0bcac354ce0f3d5563921e6baa771c17837c887deb:log:1', 'hash': '0x482037acb9757d288789ef0bcac354ce0f3d5563921e6baa771c17837c887deb', 'from': '0x3fa83ef735b31d099fd005adb82574097448255b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:03.000Z'}}, {'blockNum': '0x94d752', 'uniqueId': '0x612f36a28a90d4b50f778cfc44dbc59cdff9a94eb2afe791a8427c9de9273cde:log:2', 'hash': '0x612f36a28a90d4b50f778cfc44dbc59cdff9a94eb2afe791a8427c9de9273cde', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5640.253432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0521394d60c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:03.000Z'}}, {'blockNum': '0x94d753', 'uniqueId': '0x15bf87634dc0764e0bb9feb75e54d8db39d1862c2138acb7619de2dc8ed43805:log:1', 'hash': '0x15bf87634dc0764e0bb9feb75e54d8db39d1862c2138acb7619de2dc8ed43805', 'from': '0x176dd5eaaa10df472f02609ce973e461e8982214', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1756.13318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198e1b1c260', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:06.000Z'}}, {'blockNum': '0x94d753', 'uniqueId': '0x51901a33e8e5ba690335bac0be8f51cb9ba7519ad462d9a95d87621593548a9e:log:3', 'hash': '0x51901a33e8e5ba690335bac0be8f51cb9ba7519ad462d9a95d87621593548a9e', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 360.96724295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x540b5304c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:06.000Z'}}, {'blockNum': '0x94d753', 'uniqueId': '0x2e98c706c71154b8611a02750511dc4a1ee80c85d5a50fc144c5215e4bd59701:log:4', 'hash': '0x2e98c706c71154b8611a02750511dc4a1ee80c85d5a50fc144c5215e4bd59701', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 508.89964355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x767cc8509e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:06.000Z'}}, {'blockNum': '0x94d753', 'uniqueId': '0xe0760a60f319f04e4dad16d81875ec0c9766284950c82d1dd5f6f2bde7bf58b9:log:5', 'hash': '0xe0760a60f319f04e4dad16d81875ec0c9766284950c82d1dd5f6f2bde7bf58b9', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x22b1179200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:06.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0x07d090f92166b6a6c610bc7b2d2a2f51b7fed74e6df9480593f5320fdcfcd669:log:2', 'hash': '0x07d090f92166b6a6c610bc7b2d2a2f51b7fed74e6df9480593f5320fdcfcd669', 'from': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x032f5f774c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0xf1a1a04871f40394fb26ae2113f4e5d06cd9580c5ded0fd3371337d95b0097be:log:4', 'hash': '0xf1a1a04871f40394fb26ae2113f4e5d06cd9580c5ded0fd3371337d95b0097be', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2501.611949156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x024673b10c64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe:log:69', 'hash': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 278.42282364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x40d34b22d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe:log:71', 'hash': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 278.42282364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x40d34b22d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe:log:76', 'hash': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 278.422545215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x40d346e33f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d755', 'uniqueId': '0xbcf6d9ef96e72846211323c1c3881ebd5380bf7c8485c83aadc74473334437e0:log:3', 'hash': '0xbcf6d9ef96e72846211323c1c3881ebd5380bf7c8485c83aadc74473334437e0', 'from': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 736.694152049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab8664ab71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:20.000Z'}}, {'blockNum': '0x94d756', 'uniqueId': '0xfecb5926b1b3bc47d30e3f5c4caeb8529202f9555d59cfb11916c3bd4b1e15d1:log:69', 'hash': '0xfecb5926b1b3bc47d30e3f5c4caeb8529202f9555d59cfb11916c3bd4b1e15d1', 'from': '0xb59cc943ff7c1ef0526c7ca153251d3e69c9c374', 'to': '0xa778e4466057d56744f2bd18a7ad129f50bd56eb', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:34.000Z'}}, {'blockNum': '0x94d757', 'uniqueId': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7:log:89', 'hash': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:59.000Z'}}, {'blockNum': '0x94d757', 'uniqueId': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7:log:91', 'hash': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:59.000Z'}}, {'blockNum': '0x94d757', 'uniqueId': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7:log:97', 'hash': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:59.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0x050a797ab9a008b6733ffb7b76d46dc99b7b2bef211ac9cae0c38d81269bcab9:log:63', 'hash': '0x050a797ab9a008b6733ffb7b76d46dc99b7b2bef211ac9cae0c38d81269bcab9', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 285.755720988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x42885e451c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355:log:95', 'hash': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355', 'from': '0x406156ecc9ddcc7986f8da71575a2a651956a5fb', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 808.163622353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xbc2a4e3dd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355:log:97', 'hash': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 808.163622353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xbc2a4e3dd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355:log:98', 'hash': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 808.163622353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xbc2a4e3dd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f:log:111', 'hash': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f:log:113', 'hash': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f:log:119', 'hash': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f:log:121', 'hash': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d760', 'uniqueId': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab:log:4', 'hash': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:45.000Z'}}, {'blockNum': '0x94d760', 'uniqueId': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab:log:6', 'hash': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:45.000Z'}}, {'blockNum': '0x94d760', 'uniqueId': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab:log:11', 'hash': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:45.000Z'}}, {'blockNum': '0x94d763', 'uniqueId': '0xaf6f55e062f1d4bde5f4457795311d0a6f0d12f722df1e2f0e54a1d8a67b36fc:log:20', 'hash': '0xaf6f55e062f1d4bde5f4457795311d0a6f0d12f722df1e2f0e54a1d8a67b36fc', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 546.703028667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7f4a0a31bb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:57.000Z'}}, {'blockNum': '0x94d767', 'uniqueId': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd:log:127', 'hash': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 268.939067069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3e9e047ebd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:33.000Z'}}, {'blockNum': '0x94d767', 'uniqueId': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd:log:129', 'hash': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 268.939067069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3e9e047ebd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:33.000Z'}}, {'blockNum': '0x94d767', 'uniqueId': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd:log:135', 'hash': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 268.939067069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3e9e047ebd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:33.000Z'}}, {'blockNum': '0x94d767', 'uniqueId': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd:log:137', 'hash': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 268.939067069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3e9e047ebd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:33.000Z'}}, {'blockNum': '0x94d768', 'uniqueId': '0x3127ba416c44d922b863a6590a01be82ab8179aff96bed1d8feb0b5689e8db2a:log:151', 'hash': '0x3127ba416c44d922b863a6590a01be82ab8179aff96bed1d8feb0b5689e8db2a', 'from': '0xb66f441be2e20de9d8a7ed63d913f4039503cfb0', 'to': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1fd512913000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:41.000Z'}}, {'blockNum': '0x94d76a', 'uniqueId': '0x36bb4b5e9a33824d294121aea5b01c8aa51e119d2cfff07791a92e6ec778477c:log:78', 'hash': '0x36bb4b5e9a33824d294121aea5b01c8aa51e119d2cfff07791a92e6ec778477c', 'from': '0xc1816f198fa2cd9cd1fb49a1797f25c2755d2f37', 'to': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'value': 39020.892044675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x237d4268bd83', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:23:19.000Z'}}, {'blockNum': '0x94d772', 'uniqueId': '0x1a6e3c07f3bf7674a9f3efbde3f073f73e2e8320d39a0970bb8e142c3fb57d0f:log:3', 'hash': '0x1a6e3c07f3bf7674a9f3efbde3f073f73e2e8320d39a0970bb8e142c3fb57d0f', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:24:07.000Z'}}, {'blockNum': '0x94d772', 'uniqueId': '0x1a6e3c07f3bf7674a9f3efbde3f073f73e2e8320d39a0970bb8e142c3fb57d0f:log:4', 'hash': '0x1a6e3c07f3bf7674a9f3efbde3f073f73e2e8320d39a0970bb8e142c3fb57d0f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:24:07.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0x540915dfc1b3852fd63e0764f5be6ba8eec3944f3cdb1ac9880ed9f217f507c2:log:31', 'hash': '0x540915dfc1b3852fd63e0764f5be6ba8eec3944f3cdb1ac9880ed9f217f507c2', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0x540915dfc1b3852fd63e0764f5be6ba8eec3944f3cdb1ac9880ed9f217f507c2:log:32', 'hash': '0x540915dfc1b3852fd63e0764f5be6ba8eec3944f3cdb1ac9880ed9f217f507c2', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0xdefd0991d036019618e6e073b6d0568bbc734b64ab7b7d610731b9c85fb0426b:log:39', 'hash': '0xdefd0991d036019618e6e073b6d0568bbc734b64ab7b7d610731b9c85fb0426b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0xdefd0991d036019618e6e073b6d0568bbc734b64ab7b7d610731b9c85fb0426b:log:40', 'hash': '0xdefd0991d036019618e6e073b6d0568bbc734b64ab7b7d610731b9c85fb0426b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0xfcb42f2a731092f35de6d31009f3aeb2be01510918a01b74437777bfd1999951:log:47', 'hash': '0xfcb42f2a731092f35de6d31009f3aeb2be01510918a01b74437777bfd1999951', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0xfcb42f2a731092f35de6d31009f3aeb2be01510918a01b74437777bfd1999951:log:48', 'hash': '0xfcb42f2a731092f35de6d31009f3aeb2be01510918a01b74437777bfd1999951', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d779', 'uniqueId': '0x9e77ae3793bb69846bee02b3a7078eec9e2ac527464139ad92738879ef883623:log:51', 'hash': '0x9e77ae3793bb69846bee02b3a7078eec9e2ac527464139ad92738879ef883623', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:01.000Z'}}, {'blockNum': '0x94d779', 'uniqueId': '0x9e77ae3793bb69846bee02b3a7078eec9e2ac527464139ad92738879ef883623:log:52', 'hash': '0x9e77ae3793bb69846bee02b3a7078eec9e2ac527464139ad92738879ef883623', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:01.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0x641ef6f35c818c8f3cafe7005ff0479f27d208bf3d9552a06726a45f9124cefe:log:0', 'hash': '0x641ef6f35c818c8f3cafe7005ff0479f27d208bf3d9552a06726a45f9124cefe', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5558.206647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x050e1eeecad8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0xe79c93a9b8b76fde951a1e50fcf87013be674a2ccdeb82d9d0ed0fe6037e3665:log:97', 'hash': '0xe79c93a9b8b76fde951a1e50fcf87013be674a2ccdeb82d9d0ed0fe6037e3665', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0xe79c93a9b8b76fde951a1e50fcf87013be674a2ccdeb82d9d0ed0fe6037e3665:log:98', 'hash': '0xe79c93a9b8b76fde951a1e50fcf87013be674a2ccdeb82d9d0ed0fe6037e3665', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0x78d727c175d394c3a0621ec95d139298b2bf24d5c595670fdd4a5e8d431c947d:log:105', 'hash': '0x78d727c175d394c3a0621ec95d139298b2bf24d5c595670fdd4a5e8d431c947d', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0x78d727c175d394c3a0621ec95d139298b2bf24d5c595670fdd4a5e8d431c947d:log:106', 'hash': '0x78d727c175d394c3a0621ec95d139298b2bf24d5c595670fdd4a5e8d431c947d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77b', 'uniqueId': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432:log:175', 'hash': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 340.875082261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f5dbcfa15', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:52.000Z'}}, {'blockNum': '0x94d77b', 'uniqueId': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432:log:177', 'hash': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 340.875082261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f5dbcfa15', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:52.000Z'}}, {'blockNum': '0x94d77b', 'uniqueId': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432:log:182', 'hash': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 340.874741385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f5db7c689', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:52.000Z'}}, {'blockNum': '0x94d77e', 'uniqueId': '0x79939575ba6c98dbb545eacdbcc21dcda80bf36b2a8b1de64fb93085bd69d43f:log:22', 'hash': '0x79939575ba6c98dbb545eacdbcc21dcda80bf36b2a8b1de64fb93085bd69d43f', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:14.000Z'}}, {'blockNum': '0x94d77e', 'uniqueId': '0x79939575ba6c98dbb545eacdbcc21dcda80bf36b2a8b1de64fb93085bd69d43f:log:23', 'hash': '0x79939575ba6c98dbb545eacdbcc21dcda80bf36b2a8b1de64fb93085bd69d43f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:14.000Z'}}, {'blockNum': '0x94d77e', 'uniqueId': '0xfe3f68eefd7a21ff27b39019bb32e650804618d958a1cec2ebbca3c5f70cb080:log:150', 'hash': '0xfe3f68eefd7a21ff27b39019bb32e650804618d958a1cec2ebbca3c5f70cb080', 'from': '0xae688057b84e0aaa78893d5777c8064a76612b80', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:14.000Z'}}, {'blockNum': '0x94d77e', 'uniqueId': '0xfe3f68eefd7a21ff27b39019bb32e650804618d958a1cec2ebbca3c5f70cb080:log:151', 'hash': '0xfe3f68eefd7a21ff27b39019bb32e650804618d958a1cec2ebbca3c5f70cb080', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:14.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x6ec7bcd9e16e3e5025d8d84dae5f73ff56cb6a2c51fbdf0533259b74deeff24e:log:32', 'hash': '0x6ec7bcd9e16e3e5025d8d84dae5f73ff56cb6a2c51fbdf0533259b74deeff24e', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x6ec7bcd9e16e3e5025d8d84dae5f73ff56cb6a2c51fbdf0533259b74deeff24e:log:33', 'hash': '0x6ec7bcd9e16e3e5025d8d84dae5f73ff56cb6a2c51fbdf0533259b74deeff24e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f:log:89', 'hash': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 324.69402976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b9945b5c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f:log:91', 'hash': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 324.69402976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b9945b5c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f:log:96', 'hash': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 324.693705065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b9940c169', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d782', 'uniqueId': '0x8174a7703dc91fd599774d02686e15f07459ff400180d06e0134d0a0284153ab:log:31', 'hash': '0x8174a7703dc91fd599774d02686e15f07459ff400180d06e0134d0a0284153ab', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:09.000Z'}}, {'blockNum': '0x94d782', 'uniqueId': '0x8174a7703dc91fd599774d02686e15f07459ff400180d06e0134d0a0284153ab:log:32', 'hash': '0x8174a7703dc91fd599774d02686e15f07459ff400180d06e0134d0a0284153ab', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:09.000Z'}}, {'blockNum': '0x94d783', 'uniqueId': '0xac9d6a106a4cc70d9b099b8d86ee064e8797639fbb57ffaa9e2919452543c8be:log:68', 'hash': '0xac9d6a106a4cc70d9b099b8d86ee064e8797639fbb57ffaa9e2919452543c8be', 'from': '0x649bfd8c7a0f11dfbb342cf1ceaf2167a936387c', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 144.003321361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2187444e11', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:16.000Z'}}, {'blockNum': '0x94d783', 'uniqueId': '0xac9d6a106a4cc70d9b099b8d86ee064e8797639fbb57ffaa9e2919452543c8be:log:69', 'hash': '0xac9d6a106a4cc70d9b099b8d86ee064e8797639fbb57ffaa9e2919452543c8be', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 144.003321361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2187444e11', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:16.000Z'}}, {'blockNum': '0x94d787', 'uniqueId': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1:log:46', 'hash': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 181.87478463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a5894f976', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:35.000Z'}}, {'blockNum': '0x94d787', 'uniqueId': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1:log:48', 'hash': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 181.87478463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a5894f976', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:35.000Z'}}, {'blockNum': '0x94d787', 'uniqueId': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1:log:54', 'hash': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 181.87478463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a5894f976', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:35.000Z'}}, {'blockNum': '0x94d787', 'uniqueId': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1:log:56', 'hash': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 181.87478463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a5894f976', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:35.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0x366738d82410bb74bc0b69f27f0529cb0894ce7eae2d677011750217d95abb30:log:11', 'hash': '0x366738d82410bb74bc0b69f27f0529cb0894ce7eae2d677011750217d95abb30', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0x366738d82410bb74bc0b69f27f0529cb0894ce7eae2d677011750217d95abb30:log:12', 'hash': '0x366738d82410bb74bc0b69f27f0529cb0894ce7eae2d677011750217d95abb30', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49:log:126', 'hash': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 90.828552171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1525cdb7eb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49:log:128', 'hash': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 90.828552171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1525cdb7eb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49:log:133', 'hash': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 90.828461341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1525cc551d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49:log:135', 'hash': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 90.828461341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1525cc551d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d789', 'uniqueId': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3:log:59', 'hash': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 343.109677165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4fe2ee306d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:19.000Z'}}, {'blockNum': '0x94d789', 'uniqueId': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3:log:61', 'hash': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 343.109677165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4fe2ee306d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:19.000Z'}}, {'blockNum': '0x94d789', 'uniqueId': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3:log:66', 'hash': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 343.109677165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4fe2ee306d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:19.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x751a62806f2096bc718d67d1a2ac6d191b0f95ccc3a8733bdedca4cf540f5297:log:0', 'hash': '0x751a62806f2096bc718d67d1a2ac6d191b0f95ccc3a8733bdedca4cf540f5297', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5462.621195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04f7dd988af8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x9fa8b061799e635643015f736b4788b0993582de9690e3ee276f4f6906482dc3:log:32', 'hash': '0x9fa8b061799e635643015f736b4788b0993582de9690e3ee276f4f6906482dc3', 'from': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0xe24ccb7d3772bbbd5aee3f6089c9c5c730e07d6071f39683e17cfdc268d95c2b:log:33', 'hash': '0xe24ccb7d3772bbbd5aee3f6089c9c5c730e07d6071f39683e17cfdc268d95c2b', 'from': '0x25673fa58a432d0385014533bdb9550f8307793b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0120f15d3a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x0fa0c6faa4e2b1e4c8dc4f230331366f13e8b711c347fdb820aa4db3c948efe9:log:35', 'hash': '0x0fa0c6faa4e2b1e4c8dc4f230331366f13e8b711c347fdb820aa4db3c948efe9', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x07607d461600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x166020e1dc87113c333001ba74198e6574f418973f1559dcf14f8ddffe023669:log:37', 'hash': '0x166020e1dc87113c333001ba74198e6574f418973f1559dcf14f8ddffe023669', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5558.206647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x050e1eeecad8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0xf33835d42ae519868862091a238d11af39489413291b05dad04d3448e0ff9bd2:log:38', 'hash': '0xf33835d42ae519868862091a238d11af39489413291b05dad04d3448e0ff9bd2', 'from': '0x8696493b25f9ba554fe44bc7bc403ac2b6276769', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7821.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x071d2cf99480', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x894c2c2fbab69f2b087b4ae5ebd9ee24ba0a171bcf9665db6f67888f6107561b:log:48', 'hash': '0x894c2c2fbab69f2b087b4ae5ebd9ee24ba0a171bcf9665db6f67888f6107561b', 'from': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1fd512913000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x7030e14fb13320fd7f8d0635e02f4f160569040e90c5b8989e96fb21382261d6:log:54', 'hash': '0x7030e14fb13320fd7f8d0635e02f4f160569040e90c5b8989e96fb21382261d6', 'from': '0x0dc30f687eb2a06a83765c3dc696051ea9c7db79', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 833.81663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc2235812f0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x29c5b5e8dbedf51e22ed53be95ef0eb49cc7ab50284fb8a485eea99d7a3f3486:log:55', 'hash': '0x29c5b5e8dbedf51e22ed53be95ef0eb49cc7ab50284fb8a485eea99d7a3f3486', 'from': '0xa778e4466057d56744f2bd18a7ad129f50bd56eb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x12309ce54000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0xed1785354b97144b704f7b8fd551fcd425ce7a72f5f4f19a45556790d98c5ede:log:61', 'hash': '0xed1785354b97144b704f7b8fd551fcd425ce7a72f5f4f19a45556790d98c5ede', 'from': '0xa5d1ad34accbf152f44810b897b374a5c1f44dbe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c428385c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0xdd572b101db02d126c4444d1debde26ace83754f723673c94e25ea4cb74a70eb:log:24', 'hash': '0xdd572b101db02d126c4444d1debde26ace83754f723673c94e25ea4cb74a70eb', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0xdd572b101db02d126c4444d1debde26ace83754f723673c94e25ea4cb74a70eb:log:25', 'hash': '0xdd572b101db02d126c4444d1debde26ace83754f723673c94e25ea4cb74a70eb', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x678e285082e023514570811917838749663d502ce8f477c3092e58724903d72d:log:36', 'hash': '0x678e285082e023514570811917838749663d502ce8f477c3092e58724903d72d', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x678e285082e023514570811917838749663d502ce8f477c3092e58724903d72d:log:37', 'hash': '0x678e285082e023514570811917838749663d502ce8f477c3092e58724903d72d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0:log:150', 'hash': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2164.519228261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f7f7665365', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0:log:152', 'hash': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 2164.519228261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f7f7665365', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0:log:158', 'hash': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 2164.519228261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f7f7665365', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78c', 'uniqueId': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6:log:95', 'hash': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 635.63414496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x93febf56c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:27.000Z'}}, {'blockNum': '0x94d78c', 'uniqueId': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6:log:97', 'hash': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 635.63414496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x93febf56c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:27.000Z'}}, {'blockNum': '0x94d78c', 'uniqueId': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6:log:102', 'hash': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 635.63414496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x93febf56c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:27.000Z'}}, {'blockNum': '0x94d78c', 'uniqueId': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6:log:104', 'hash': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 635.63414496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x93febf56c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:27.000Z'}}, {'blockNum': '0x94d78d', 'uniqueId': '0x74c8cd19f8a7586536e587d61039d4080e341a7db77a43c30d25b4c52d1e659e:log:135', 'hash': '0x74c8cd19f8a7586536e587d61039d4080e341a7db77a43c30d25b4c52d1e659e', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:34.000Z'}}, {'blockNum': '0x94d78d', 'uniqueId': '0x74c8cd19f8a7586536e587d61039d4080e341a7db77a43c30d25b4c52d1e659e:log:136', 'hash': '0x74c8cd19f8a7586536e587d61039d4080e341a7db77a43c30d25b4c52d1e659e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:34.000Z'}}, {'blockNum': '0x94d78e', 'uniqueId': '0xd037ab4eb33abda141a43585eb6869658e505ef3df23bdb7371e957de49baf96:log:57', 'hash': '0xd037ab4eb33abda141a43585eb6869658e505ef3df23bdb7371e957de49baf96', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:47.000Z'}}, {'blockNum': '0x94d78e', 'uniqueId': '0xd037ab4eb33abda141a43585eb6869658e505ef3df23bdb7371e957de49baf96:log:58', 'hash': '0xd037ab4eb33abda141a43585eb6869658e505ef3df23bdb7371e957de49baf96', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:47.000Z'}}, {'blockNum': '0x94d797', 'uniqueId': '0x3e2fef7f17a2fcfbdbd19ba9369e812ec369c2e82b245c2bce70be6ab2c8220b:log:47', 'hash': '0x3e2fef7f17a2fcfbdbd19ba9369e812ec369c2e82b245c2bce70be6ab2c8220b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:07.000Z'}}, {'blockNum': '0x94d797', 'uniqueId': '0x3e2fef7f17a2fcfbdbd19ba9369e812ec369c2e82b245c2bce70be6ab2c8220b:log:48', 'hash': '0x3e2fef7f17a2fcfbdbd19ba9369e812ec369c2e82b245c2bce70be6ab2c8220b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:07.000Z'}}, {'blockNum': '0x94d79a', 'uniqueId': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8:log:146', 'hash': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 862.231529101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc8c101068d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:33.000Z'}}, {'blockNum': '0x94d79a', 'uniqueId': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8:log:148', 'hash': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 862.231529101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc8c101068d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:33.000Z'}}, {'blockNum': '0x94d79a', 'uniqueId': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8:log:154', 'hash': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 862.231529101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc8c101068d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:33.000Z'}}, {'blockNum': '0x94d79b', 'uniqueId': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924:log:26', 'hash': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:34.000Z'}}, {'blockNum': '0x94d79b', 'uniqueId': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924:log:28', 'hash': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:34.000Z'}}, {'blockNum': '0x94d79b', 'uniqueId': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924:log:33', 'hash': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:34.000Z'}}, {'blockNum': '0x94d79b', 'uniqueId': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924:log:35', 'hash': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:34.000Z'}}, {'blockNum': '0x94d79d', 'uniqueId': '0x337375c2478001e16e742460a20f70d1e65661ba69c6f13f1e3111c3197239c5:log:30', 'hash': '0x337375c2478001e16e742460a20f70d1e65661ba69c6f13f1e3111c3197239c5', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0174876e8000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:02.000Z'}}, {'blockNum': '0x94d79d', 'uniqueId': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564:log:59', 'hash': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 191.607006467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c9caae503', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:02.000Z'}}, {'blockNum': '0x94d79d', 'uniqueId': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564:log:61', 'hash': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 191.607006467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c9caae503', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:02.000Z'}}, {'blockNum': '0x94d79d', 'uniqueId': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564:log:67', 'hash': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 191.607006467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c9caae503', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:02.000Z'}}, {'blockNum': '0x94d7a6', 'uniqueId': '0x78c19350f8d6d8ebd549e50b42e9ae9d7e7d44237f99ced29af2dc8fb6de4c37:log:0', 'hash': '0x78c19350f8d6d8ebd549e50b42e9ae9d7e7d44237f99ced29af2dc8fb6de4c37', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 8787.535215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x07fe01ea3998', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:58.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f:log:128', 'hash': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 263.898184309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d718eba75', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f:log:130', 'hash': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 263.898184309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d718eba75', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f:log:135', 'hash': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 263.898184309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d718eba75', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0xf516ecc77136de5352a2e5b43d5b84a4f88d52ca1b713075d5c39e93a9112aee:log:144', 'hash': '0xf516ecc77136de5352a2e5b43d5b84a4f88d52ca1b713075d5c39e93a9112aee', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 456.122267415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6a33017717', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x38ab3106f0f23dd96a14b496ed388da1a139b7e2263cee19e7b3a5cf3bcea0b6:log:160', 'hash': '0x38ab3106f0f23dd96a14b496ed388da1a139b7e2263cee19e7b3a5cf3bcea0b6', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x38ab3106f0f23dd96a14b496ed388da1a139b7e2263cee19e7b3a5cf3bcea0b6:log:161', 'hash': '0x38ab3106f0f23dd96a14b496ed388da1a139b7e2263cee19e7b3a5cf3bcea0b6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x9f9bc3f54aa50e93f393862c6ab959315ddc37f9fc42d6c8f58e6b8f85a0e8cd:log:3', 'hash': '0x9f9bc3f54aa50e93f393862c6ab959315ddc37f9fc42d6c8f58e6b8f85a0e8cd', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1371.175253089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x013f4069f461', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009:log:7', 'hash': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 751.370500801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xaef12bfac1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009:log:9', 'hash': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 751.370500801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xaef12bfac1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009:log:15', 'hash': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 751.370500801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xaef12bfac1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0xe4e14b702d539c7c91fb06e6ea433604597e35423174613a928e5a5c012a2451:log:17', 'hash': '0xe4e14b702d539c7c91fb06e6ea433604597e35423174613a928e5a5c012a2451', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2254.111502405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x020cd383f045', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0xe4e14b702d539c7c91fb06e6ea433604597e35423174613a928e5a5c012a2451:log:19', 'hash': '0xe4e14b702d539c7c91fb06e6ea433604597e35423174613a928e5a5c012a2451', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 2254.111502405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x020cd383f045', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x5d78ee8f3521b6e4f302808edea57a45547f998ba4665dd5e3e3a695a2b8143b:log:149', 'hash': '0x5d78ee8f3521b6e4f302808edea57a45547f998ba4665dd5e3e3a695a2b8143b', 'from': '0x84e1e40ef85c9bdbdd4c40abaa9d8c26db13a257', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x5d78ee8f3521b6e4f302808edea57a45547f998ba4665dd5e3e3a695a2b8143b:log:150', 'hash': '0x5d78ee8f3521b6e4f302808edea57a45547f998ba4665dd5e3e3a695a2b8143b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x49523cbdcc8038404fcaaefc4ea8f530509abe5e5ae5aaa67ed250edb8250145:log:175', 'hash': '0x49523cbdcc8038404fcaaefc4ea8f530509abe5e5ae5aaa67ed250edb8250145', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 375.175058568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x575a2d1488', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x49523cbdcc8038404fcaaefc4ea8f530509abe5e5ae5aaa67ed250edb8250145:log:180', 'hash': '0x49523cbdcc8038404fcaaefc4ea8f530509abe5e5ae5aaa67ed250edb8250145', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 375.175058568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x575a2d1488', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ae', 'uniqueId': '0x9b6ebf45d3168c146370336b35d03d9934a6a03c13430119514b4daae38833e6:log:0', 'hash': '0x9b6ebf45d3168c146370336b35d03d9934a6a03c13430119514b4daae38833e6', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1186.182693194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01142dff814a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:10.000Z'}}, {'blockNum': '0x94d7ae', 'uniqueId': '0x15615e69b61a8e74c4455e0aa1096e0b42dfb033df31cf9e846c817b414cf12b:log:6', 'hash': '0x15615e69b61a8e74c4455e0aa1096e0b42dfb033df31cf9e846c817b414cf12b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 561.555528036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x82bf515964', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:10.000Z'}}, {'blockNum': '0x94d7ae', 'uniqueId': '0x15615e69b61a8e74c4455e0aa1096e0b42dfb033df31cf9e846c817b414cf12b:log:8', 'hash': '0x15615e69b61a8e74c4455e0aa1096e0b42dfb033df31cf9e846c817b414cf12b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 561.555528036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x82bf515964', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:10.000Z'}}, {'blockNum': '0x94d7ae', 'uniqueId': '0xc9936a10f4ad5988e592f4d79a697c401b8dd041efe12c87847525a8444d2959:log:63', 'hash': '0xc9936a10f4ad5988e592f4d79a697c401b8dd041efe12c87847525a8444d2959', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 2254.111502405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x020cd383f045', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:10.000Z'}}, {'blockNum': '0x94d7af', 'uniqueId': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd:log:64', 'hash': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 185.131410275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1ab12363', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:19.000Z'}}, {'blockNum': '0x94d7af', 'uniqueId': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd:log:69', 'hash': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 185.131410275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1ab12363', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:19.000Z'}}, {'blockNum': '0x94d7af', 'uniqueId': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd:log:71', 'hash': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 185.131410275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1ab12363', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:19.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xdece74170329690e42ae0cf45a9499a1143d82071467d96a7cf7cbc54c72578f:log:2', 'hash': '0xdece74170329690e42ae0cf45a9499a1143d82071467d96a7cf7cbc54c72578f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xdece74170329690e42ae0cf45a9499a1143d82071467d96a7cf7cbc54c72578f:log:4', 'hash': '0xdece74170329690e42ae0cf45a9499a1143d82071467d96a7cf7cbc54c72578f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0x36eaebd1e32548ecd78f277c831400ce277b34c19d13552f96bb06a9c4a65a86:log:34', 'hash': '0x36eaebd1e32548ecd78f277c831400ce277b34c19d13552f96bb06a9c4a65a86', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 513.421959193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x778a556019', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xba7f92b014d4e0adc2b9777c1c7f8e087491b9bac473f2737de22aa98166298a:log:53', 'hash': '0xba7f92b014d4e0adc2b9777c1c7f8e087491b9bac473f2737de22aa98166298a', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 561.555528036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x82bf515964', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0x7694ddebb71b25229f271deaa294cf09196350510887e8e99a7704777db0491b:log:66', 'hash': '0x7694ddebb71b25229f271deaa294cf09196350510887e8e99a7704777db0491b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2020.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d6866e3a80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0x7694ddebb71b25229f271deaa294cf09196350510887e8e99a7704777db0491b:log:67', 'hash': '0x7694ddebb71b25229f271deaa294cf09196350510887e8e99a7704777db0491b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2020.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d6866e3a80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6:log:74', 'hash': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 935.925880061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd9e98794fd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6:log:76', 'hash': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 935.925880061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd9e98794fd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6:log:82', 'hash': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 935.925880061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd9e98794fd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0x54bd5ecb48c1bc00ff50becccb24139169e3a2a213a582d32fdd74fdf44d2b90:log:199', 'hash': '0x54bd5ecb48c1bc00ff50becccb24139169e3a2a213a582d32fdd74fdf44d2b90', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 375.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5759dfe480', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xac3828104304eab364ff023f46df94f3d3a25979ca7553686a335cab317d1dfe:log:200', 'hash': '0xac3828104304eab364ff023f46df94f3d3a25979ca7553686a335cab317d1dfe', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 369.651393913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5610f0a579', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b1', 'uniqueId': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c:log:5', 'hash': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 280.777764018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415fa8acb2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:40.000Z'}}, {'blockNum': '0x94d7b1', 'uniqueId': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c:log:7', 'hash': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 280.777764018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415fa8acb2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:40.000Z'}}, {'blockNum': '0x94d7b1', 'uniqueId': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c:log:12', 'hash': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 280.77748324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415fa463e8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:40.000Z'}}, {'blockNum': '0x94d7b3', 'uniqueId': '0x5e040b9c6ba94752e4989060b51cac2f0c89990033fa836e07a0efa6145e99d3:log:2', 'hash': '0x5e040b9c6ba94752e4989060b51cac2f0c89990033fa836e07a0efa6145e99d3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:51.000Z'}}, {'blockNum': '0x94d7b3', 'uniqueId': '0x5e040b9c6ba94752e4989060b51cac2f0c89990033fa836e07a0efa6145e99d3:log:4', 'hash': '0x5e040b9c6ba94752e4989060b51cac2f0c89990033fa836e07a0efa6145e99d3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:51.000Z'}}, {'blockNum': '0x94d7b3', 'uniqueId': '0x3f95959230dc66d6be0844efd3058213a85f6528c6c4861d377c66703806c82d:log:25', 'hash': '0x3f95959230dc66d6be0844efd3058213a85f6528c6c4861d377c66703806c82d', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:51.000Z'}}, {'blockNum': '0x94d7b5', 'uniqueId': '0xd88451ef5f9c69ce9408de2d5c94fc45c66845905f1a204470942da9879b0069:log:135', 'hash': '0xd88451ef5f9c69ce9408de2d5c94fc45c66845905f1a204470942da9879b0069', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:57.000Z'}}, {'blockNum': '0x94d7b9', 'uniqueId': '0x60a8ba2f7f4c9172c62badca8fcbc38d76ff570cafc7525b1fc123c897842ea0:log:2', 'hash': '0x60a8ba2f7f4c9172c62badca8fcbc38d76ff570cafc7525b1fc123c897842ea0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xab7583a7f1f890664383e03e42c9ed73afc6e268', 'value': 21399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x137657cb2600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:38:56.000Z'}}, {'blockNum': '0x94d7ba', 'uniqueId': '0x5bf398024a56a1c260d8956ba5ea39a839c8910af8191a94d86a6dc94d38bf94:log:9', 'hash': '0x5bf398024a56a1c260d8956ba5ea39a839c8910af8191a94d86a6dc94d38bf94', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14250.15641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0cf5df82c490', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:39:04.000Z'}}, {'blockNum': '0x94d7bf', 'uniqueId': '0x4f9a1ed19ac2bb8f2f9fc56674d42adf7a753f659b2d305623c7562911b51399:log:10', 'hash': '0x4f9a1ed19ac2bb8f2f9fc56674d42adf7a753f659b2d305623c7562911b51399', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdde8b84f3b544933c4ea58802d4af5564ad061d8', 'value': 879.17421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xccb2ddd1d0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:15.000Z'}}, {'blockNum': '0x94d7bf', 'uniqueId': '0x3f71c3435e03d33f93fabcba5b6558b813632c0025f5ee1e6e735b6688f35b9e:log:41', 'hash': '0x3f71c3435e03d33f93fabcba5b6558b813632c0025f5ee1e6e735b6688f35b9e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 829.950856944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc13ced0ef0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:15.000Z'}}, {'blockNum': '0x94d7c0', 'uniqueId': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9:log:4', 'hash': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 280.742602858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415d90286a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:31.000Z'}}, {'blockNum': '0x94d7c0', 'uniqueId': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9:log:7', 'hash': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 280.742602858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415d90286a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:31.000Z'}}, {'blockNum': '0x94d7c0', 'uniqueId': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9:log:9', 'hash': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 280.742602858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415d90286a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:31.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x00e6d32be214ac83c155dc046ade542efc5e1deed6a34d6069c9daf258b4274f:log:39', 'hash': '0x00e6d32be214ac83c155dc046ade542efc5e1deed6a34d6069c9daf258b4274f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 531.151648383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7bab1af67f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403:log:66', 'hash': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2883354c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403:log:68', 'hash': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 167.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x26e45c2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403:log:71', 'hash': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x019ed92c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403:log:73', 'hash': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 6.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x019ed92c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7cc', 'uniqueId': '0xaae2ab8c02606e6ccd8a9217f3e3220c164459f06f6b7e9d2681fd6697209795:log:44', 'hash': '0xaae2ab8c02606e6ccd8a9217f3e3220c164459f06f6b7e9d2681fd6697209795', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 601.364715419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8c0421579b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:42:44.000Z'}}, {'blockNum': '0x94d7d2', 'uniqueId': '0x95ecbcc32aaf3b997bc3e23fd16b951bd9a43ef245fb4fc70800ff499b96cecc:log:35', 'hash': '0x95ecbcc32aaf3b997bc3e23fd16b951bd9a43ef245fb4fc70800ff499b96cecc', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 303.081548781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4691116bed', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:44:27.000Z'}}, {'blockNum': '0x94d7d5', 'uniqueId': '0xfd9a9c36f1620f7c84edf1de6a61804bee0577172e959a2f791ae25b40484d9b:log:124', 'hash': '0xfd9a9c36f1620f7c84edf1de6a61804bee0577172e959a2f791ae25b40484d9b', 'from': '0x84e1e40ef85c9bdbdd4c40abaa9d8c26db13a257', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:44:38.000Z'}}, {'blockNum': '0x94d7d5', 'uniqueId': '0xfd9a9c36f1620f7c84edf1de6a61804bee0577172e959a2f791ae25b40484d9b:log:125', 'hash': '0xfd9a9c36f1620f7c84edf1de6a61804bee0577172e959a2f791ae25b40484d9b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:44:38.000Z'}}, {'blockNum': '0x94d7e5', 'uniqueId': '0xaa64928797fece6e66fca1b4ecda39a49c81a6c6bed3d6e8a66d6f60dd60ec4a:log:10', 'hash': '0xaa64928797fece6e66fca1b4ecda39a49c81a6c6bed3d6e8a66d6f60dd60ec4a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac05014363912f96c01d8b23015721180ab4e83c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:47:55.000Z'}}, {'blockNum': '0x94d7e8', 'uniqueId': '0x4d1f1890d9d7c51d976bad3c081a3940d78f4961170bbb5f4b7f7d553c2eeb57:log:4', 'hash': '0x4d1f1890d9d7c51d976bad3c081a3940d78f4961170bbb5f4b7f7d553c2eeb57', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 152.330112721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2377950ed1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:48:43.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0xb9fe00ef5a9c120c250e7d1e3f32461d3c5291660883e3ea6fcd311551bf4882:log:0', 'hash': '0xb9fe00ef5a9c120c250e7d1e3f32461d3c5291660883e3ea6fcd311551bf4882', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1079.205119934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfb45a347be', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598:log:4', 'hash': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598:log:6', 'hash': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x41314cf000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598:log:9', 'hash': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3339059800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598:log:11', 'hash': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3339059800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ed', 'uniqueId': '0x30c55db844e99e75bdf260d2c5111fbccba8233475e6364f1eafae610f69e90d:log:13', 'hash': '0x30c55db844e99e75bdf260d2c5111fbccba8233475e6364f1eafae610f69e90d', 'from': '0xab7583a7f1f890664383e03e42c9ed73afc6e268', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x137657cb2600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:03.000Z'}}, {'blockNum': '0x94d7ed', 'uniqueId': '0x5f628554abe13abc791c995f474a8a96b676fc31ad07aca59143d52d9704429c:log:19', 'hash': '0x5f628554abe13abc791c995f474a8a96b676fc31ad07aca59143d52d9704429c', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5043.856250567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04965d4296c7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:03.000Z'}}, {'blockNum': '0x94d7ed', 'uniqueId': '0x5685d2f47c0f283978fcd92e7a7daa47b74b7168b67e66ce2991d558c63ea9c7:log:40', 'hash': '0x5685d2f47c0f283978fcd92e7a7daa47b74b7168b67e66ce2991d558c63ea9c7', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 311.825521489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x489a3fdb51', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:03.000Z'}}, {'blockNum': '0x94d7ed', 'uniqueId': '0x5685d2f47c0f283978fcd92e7a7daa47b74b7168b67e66ce2991d558c63ea9c7:log:42', 'hash': '0x5685d2f47c0f283978fcd92e7a7daa47b74b7168b67e66ce2991d558c63ea9c7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 311.825521489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x489a3fdb51', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:03.000Z'}}, {'blockNum': '0x94d7ff', 'uniqueId': '0xea4ef60e28f5a6d678674444688495dc081ba50223e59f5b53f00996d230513d:log:11', 'hash': '0xea4ef60e28f5a6d678674444688495dc081ba50223e59f5b53f00996d230513d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8990a4600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:52:34.000Z'}}, {'blockNum': '0x94d7ff', 'uniqueId': '0xc5e2588f5d6b58bdd4b5f2f2e3041931bf64406ffc69a158badedd82a9b0322d:log:47', 'hash': '0xc5e2588f5d6b58bdd4b5f2f2e3041931bf64406ffc69a158badedd82a9b0322d', 'from': '0x80bb0d87dce1a94329586ce9c7d39692bbf44af6', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 59.2427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0dcb23dce0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:52:34.000Z'}}, {'blockNum': '0x94d806', 'uniqueId': '0x804464f86747fa3f7ab83482f727a811ad29830278afb986a1200fcadfdf204d:log:49', 'hash': '0x804464f86747fa3f7ab83482f727a811ad29830278afb986a1200fcadfdf204d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 90.685751614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x151d4ac13e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:54:01.000Z'}}, {'blockNum': '0x94d806', 'uniqueId': '0x804464f86747fa3f7ab83482f727a811ad29830278afb986a1200fcadfdf204d:log:51', 'hash': '0x804464f86747fa3f7ab83482f727a811ad29830278afb986a1200fcadfdf204d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3f7fd83811c050f38e8e8b7a1a681f58e59424b1', 'value': 90.685751614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x151d4ac13e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:54:01.000Z'}}, {'blockNum': '0x94d809', 'uniqueId': '0xd8b75f8030278cb0a0ee950e3614d2d4b6644492bf023eefd210d2ea9a58da62:log:78', 'hash': '0xd8b75f8030278cb0a0ee950e3614d2d4b6644492bf023eefd210d2ea9a58da62', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 120.960618176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1c29d08ec0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:54:37.000Z'}}, {'blockNum': '0x94d809', 'uniqueId': '0xd8b75f8030278cb0a0ee950e3614d2d4b6644492bf023eefd210d2ea9a58da62:log:80', 'hash': '0xd8b75f8030278cb0a0ee950e3614d2d4b6644492bf023eefd210d2ea9a58da62', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3f7fd83811c050f38e8e8b7a1a681f58e59424b1', 'value': 120.960618176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1c29d08ec0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:54:37.000Z'}}, {'blockNum': '0x94d81d', 'uniqueId': '0xd49159bff7456e5923df829108df357c6a729f43418838bb471f8367e2448ef9:log:143', 'hash': '0xd49159bff7456e5923df829108df357c6a729f43418838bb471f8367e2448ef9', 'from': '0x9a05ace8cfd3a81f0794f2175b820b3f2f92cf7e', 'to': '0x06f146bc38c1e59542fc663b8b1bd377c60122b9', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:58:22.000Z'}}, {'blockNum': '0x94d839', 'uniqueId': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e:log:33', 'hash': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x41e41d4e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:03:01.000Z'}}, {'blockNum': '0x94d839', 'uniqueId': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e:log:35', 'hash': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 152.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2394c82500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:03:01.000Z'}}, {'blockNum': '0x94d839', 'uniqueId': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e:log:38', 'hash': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 130.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e4f552900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:03:01.000Z'}}, {'blockNum': '0x94d839', 'uniqueId': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e:log:40', 'hash': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 130.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e4f552900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:03:01.000Z'}}, {'blockNum': '0x94d83d', 'uniqueId': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7:log:177', 'hash': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 195.371387733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d7d0acb55', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:12.000Z'}}, {'blockNum': '0x94d83d', 'uniqueId': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7:log:179', 'hash': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 195.371387733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d7d0acb55', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:12.000Z'}}, {'blockNum': '0x94d83d', 'uniqueId': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7:log:185', 'hash': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 195.371387733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d7d0acb55', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:12.000Z'}}, {'blockNum': '0x94d83e', 'uniqueId': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5:log:24', 'hash': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3b5f2f3600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:19.000Z'}}, {'blockNum': '0x94d83e', 'uniqueId': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5:log:26', 'hash': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 193.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d1f615200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:19.000Z'}}, {'blockNum': '0x94d83e', 'uniqueId': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5:log:29', 'hash': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 61.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e3fcde400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:19.000Z'}}, {'blockNum': '0x94d83e', 'uniqueId': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5:log:31', 'hash': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 61.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e3fcde400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:19.000Z'}}, {'blockNum': '0x94d841', 'uniqueId': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb:log:25', 'hash': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3deed5e400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:41.000Z'}}, {'blockNum': '0x94d841', 'uniqueId': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb:log:27', 'hash': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 148.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x22aeb53800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:41.000Z'}}, {'blockNum': '0x94d841', 'uniqueId': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb:log:30', 'hash': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 117.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b4020ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:41.000Z'}}, {'blockNum': '0x94d841', 'uniqueId': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb:log:32', 'hash': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 117.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b4020ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:41.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xf321965fdd6cba07cc57ab16de013dd7f61e3b72114d4092b613dfb0c18ed6c2:log:103', 'hash': '0xf321965fdd6cba07cc57ab16de013dd7f61e3b72114d4092b613dfb0c18ed6c2', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 920.722080058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd65f50013a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d:log:108', 'hash': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d:log:110', 'hash': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5625b7f400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d:log:113', 'hash': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e449a9400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d:log:115', 'hash': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e449a9400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d850', 'uniqueId': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678:log:63', 'hash': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 138.769837846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x204f53af16', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:07:58.000Z'}}, {'blockNum': '0x94d850', 'uniqueId': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678:log:65', 'hash': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 138.769644477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x204f50bbbd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:07:58.000Z'}}, {'blockNum': '0x94d850', 'uniqueId': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678:log:67', 'hash': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 138.769644477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x204f50bbbd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:07:58.000Z'}}, {'blockNum': '0x94d859', 'uniqueId': '0x86451180aab38ef78c79bd6837890377bc2842ce4724ccb4394de11b79e43e7b:log:5', 'hash': '0x86451180aab38ef78c79bd6837890377bc2842ce4724ccb4394de11b79e43e7b', 'from': '0x06f146bc38c1e59542fc663b8b1bd377c60122b9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:09:18.000Z'}}, {'blockNum': '0x94d86d', 'uniqueId': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8:log:24', 'hash': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 187.260498032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b99987070', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:11:46.000Z'}}, {'blockNum': '0x94d86d', 'uniqueId': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8:log:26', 'hash': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 187.260498032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b99987070', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:11:46.000Z'}}, {'blockNum': '0x94d86d', 'uniqueId': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8:log:31', 'hash': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 187.26031077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b999594f2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:11:46.000Z'}}, {'blockNum': '0x94d86d', 'uniqueId': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8:log:33', 'hash': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 187.26031077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b999594f2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:11:46.000Z'}}, {'blockNum': '0x94d872', 'uniqueId': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef:log:118', 'hash': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 174.051258242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2886436f82', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:12:14.000Z'}}, {'blockNum': '0x94d872', 'uniqueId': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef:log:120', 'hash': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 174.051258242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2886436f82', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:12:14.000Z'}}, {'blockNum': '0x94d872', 'uniqueId': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef:log:125', 'hash': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 174.051258242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2886436f82', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:12:14.000Z'}}, {'blockNum': '0x94d87d', 'uniqueId': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc:log:75', 'hash': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 160.513217205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x255f5552b5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:13:50.000Z'}}, {'blockNum': '0x94d87d', 'uniqueId': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc:log:77', 'hash': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 160.513217205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x255f5552b5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:13:50.000Z'}}, {'blockNum': '0x94d87d', 'uniqueId': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc:log:81', 'hash': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 160.513217205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x255f5552b5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:13:50.000Z'}}, {'blockNum': '0x94d885', 'uniqueId': '0xf09b5c497ab2e4b8ee42280fa7aec2b940a90e403edf54ab700e4e61a864f1f8:log:6', 'hash': '0xf09b5c497ab2e4b8ee42280fa7aec2b940a90e403edf54ab700e4e61a864f1f8', 'from': '0xfceb891f5b6a85aca7f295221e9a9432a4f2cbac', 'to': '0x6c9394176649b5bff8def41c5a802a949c62790c', 'value': 248.23805674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39cc242524', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:15:26.000Z'}}, {'blockNum': '0x94d88b', 'uniqueId': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168:log:31', 'hash': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 301.474598821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4631494fa5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:16:42.000Z'}}, {'blockNum': '0x94d88b', 'uniqueId': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168:log:33', 'hash': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 301.474598821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4631494fa5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:16:42.000Z'}}, {'blockNum': '0x94d88b', 'uniqueId': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168:log:38', 'hash': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 301.474297345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x463144b601', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:16:42.000Z'}}, {'blockNum': '0x94d88f', 'uniqueId': '0xd60fe667e436b2c2a80e0c93d3cd9654fb4e4dd5ebab6abddcfea34b958b54f8:log:3', 'hash': '0xd60fe667e436b2c2a80e0c93d3cd9654fb4e4dd5ebab6abddcfea34b958b54f8', 'from': '0x6c9394176649b5bff8def41c5a802a949c62790c', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 248.23805674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39cc242524', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:08.000Z'}}, {'blockNum': '0x94d890', 'uniqueId': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d:log:65', 'hash': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 201.770835886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2efa7a9fae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:20.000Z'}}, {'blockNum': '0x94d890', 'uniqueId': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d:log:67', 'hash': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 201.770835886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2efa7a9fae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:20.000Z'}}, {'blockNum': '0x94d890', 'uniqueId': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d:log:73', 'hash': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 201.770835886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2efa7a9fae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:20.000Z'}}, {'blockNum': '0x94d890', 'uniqueId': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d:log:75', 'hash': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 201.770835886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2efa7a9fae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:20.000Z'}}, {'blockNum': '0x94d8a3', 'uniqueId': '0x21385451745f2bc299c3c69dd54739e48528c939c3f4783c7364bdc30724ec79:log:58', 'hash': '0x21385451745f2bc299c3c69dd54739e48528c939c3f4783c7364bdc30724ec79', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 288.287388578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x431f4473a2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:21:52.000Z'}}, {'blockNum': '0x94d8bc', 'uniqueId': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83:log:9', 'hash': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:27:47.000Z'}}, {'blockNum': '0x94d8bc', 'uniqueId': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83:log:11', 'hash': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:27:47.000Z'}}, {'blockNum': '0x94d8bc', 'uniqueId': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83:log:16', 'hash': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:27:47.000Z'}}, {'blockNum': '0x94d8c5', 'uniqueId': '0xf7c20e427e942975c2be11a247a28d1941c515bc34f6dd542638de1a9d985e7e:log:4', 'hash': '0xf7c20e427e942975c2be11a247a28d1941c515bc34f6dd542638de1a9d985e7e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7773fb60c4cb3c0896a5d42d1f026437bafefc3f', 'value': 497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x73b7822a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:29:08.000Z'}}, {'blockNum': '0x94d8d4', 'uniqueId': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc:log:38', 'hash': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 262.698230375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d2a08e267', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:31:39.000Z'}}, {'blockNum': '0x94d8d4', 'uniqueId': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc:log:40', 'hash': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 262.698230375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d2a08e267', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:31:39.000Z'}}, {'blockNum': '0x94d8d4', 'uniqueId': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc:log:45', 'hash': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 262.697967675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d2a04e03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:31:39.000Z'}}, {'blockNum': '0x94d8db', 'uniqueId': '0x59ffa273cc923425ebbbc649f8de34ae7ba44d3157c56716bd346b233c88f7ed:log:30', 'hash': '0x59ffa273cc923425ebbbc649f8de34ae7ba44d3157c56716bd346b233c88f7ed', 'from': '0xa2a2775296e1a69a33ded88506c49f94ae38effe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:34:20.000Z'}}, {'blockNum': '0x94d8db', 'uniqueId': '0x59ffa273cc923425ebbbc649f8de34ae7ba44d3157c56716bd346b233c88f7ed:log:31', 'hash': '0x59ffa273cc923425ebbbc649f8de34ae7ba44d3157c56716bd346b233c88f7ed', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:34:20.000Z'}}, {'blockNum': '0x94d8e3', 'uniqueId': '0x44f72e32d2e1f6e858f905c8e1e78d8cd09aa278144a201e5b4f1ba8b550a0db:log:8', 'hash': '0x44f72e32d2e1f6e858f905c8e1e78d8cd09aa278144a201e5b4f1ba8b550a0db', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 181.760474628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a51c4be04', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:36:23.000Z'}}, {'blockNum': '0x94d8e4', 'uniqueId': '0xc7129950bfdb785f1bede556da1a11671d531efe8882842b01b4b13a3ecf167f:log:3', 'hash': '0xc7129950bfdb785f1bede556da1a11671d531efe8882842b01b4b13a3ecf167f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd40c3d39dd5b210304aa0cf11afa5f6f735fd093', 'value': 2017.19841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d5aa650910', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:36:29.000Z'}}, {'blockNum': '0x94d8eb', 'uniqueId': '0x6520ec0ac4757846d8cf07a27304508be0a527dca38a173393d40149cac8fa7a:log:10', 'hash': '0x6520ec0ac4757846d8cf07a27304508be0a527dca38a173393d40149cac8fa7a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 26466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x181218875400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:37:54.000Z'}}, {'blockNum': '0x94d900', 'uniqueId': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72:log:75', 'hash': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 315.736039491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x498355a043', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:42:55.000Z'}}, {'blockNum': '0x94d900', 'uniqueId': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72:log:77', 'hash': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 315.736039491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x498355a043', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:42:55.000Z'}}, {'blockNum': '0x94d900', 'uniqueId': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72:log:82', 'hash': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 315.736039491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x498355a043', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:42:55.000Z'}}, {'blockNum': '0x94d907', 'uniqueId': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71:log:6', 'hash': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:21.000Z'}}, {'blockNum': '0x94d907', 'uniqueId': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71:log:8', 'hash': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:21.000Z'}}, {'blockNum': '0x94d907', 'uniqueId': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71:log:13', 'hash': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:21.000Z'}}, {'blockNum': '0x94d908', 'uniqueId': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d:log:147', 'hash': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 203.502921816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f61b82858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:29.000Z'}}, {'blockNum': '0x94d908', 'uniqueId': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d:log:149', 'hash': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 203.502921816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f61b82858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:29.000Z'}}, {'blockNum': '0x94d908', 'uniqueId': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d:log:155', 'hash': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 203.502921816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f61b82858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:29.000Z'}}, {'blockNum': '0x94d908', 'uniqueId': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d:log:157', 'hash': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 203.502921816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f61b82858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:29.000Z'}}, {'blockNum': '0x94d912', 'uniqueId': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030:log:91', 'hash': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 163.825872719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2624c86f4f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:47:15.000Z'}}, {'blockNum': '0x94d912', 'uniqueId': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030:log:93', 'hash': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 163.825872719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2624c86f4f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:47:15.000Z'}}, {'blockNum': '0x94d912', 'uniqueId': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030:log:97', 'hash': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 163.825872719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2624c86f4f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:47:15.000Z'}}, {'blockNum': '0x94d91b', 'uniqueId': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22:log:104', 'hash': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 307.521756402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4799b99cf2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:49:09.000Z'}}, {'blockNum': '0x94d91b', 'uniqueId': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22:log:106', 'hash': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 307.521756402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4799b99cf2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:49:09.000Z'}}, {'blockNum': '0x94d91b', 'uniqueId': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22:log:111', 'hash': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 307.521448878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4799b4ebae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:49:09.000Z'}}, {'blockNum': '0x94d921', 'uniqueId': '0xf76eccf76ef3478aa11dc29ad842ec3647a6aeb92fa8a509e2ac406c43172f76:log:11', 'hash': '0xf76eccf76ef3478aa11dc29ad842ec3647a6aeb92fa8a509e2ac406c43172f76', 'from': '0xa2645e4a498efa4fb9d864fd72b7f2b00d7d1bb4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 197.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e0f963d80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:50:57.000Z'}}, {'blockNum': '0x94d921', 'uniqueId': '0xf76eccf76ef3478aa11dc29ad842ec3647a6aeb92fa8a509e2ac406c43172f76:log:12', 'hash': '0xf76eccf76ef3478aa11dc29ad842ec3647a6aeb92fa8a509e2ac406c43172f76', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 197.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e0f963d80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:50:57.000Z'}}, {'blockNum': '0x94d922', 'uniqueId': '0xfccfb0e230541757ae482fed7dfdb99f05b3b3c417bb3be527213e286d415f19:log:49', 'hash': '0xfccfb0e230541757ae482fed7dfdb99f05b3b3c417bb3be527213e286d415f19', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 265.829523005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3de4ac9e3d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:51:08.000Z'}}, {'blockNum': '0x94d92d', 'uniqueId': '0x7c95e37e527ecf4de9ecbcd213fcaae3904af53a97e96d3e50e1a8ab436016e6:log:31', 'hash': '0x7c95e37e527ecf4de9ecbcd213fcaae3904af53a97e96d3e50e1a8ab436016e6', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 248.657904302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39e52a82ae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:52:13.000Z'}}, {'blockNum': '0x94d935', 'uniqueId': '0x38308c69d2a6f18ec1701c77b7f29451e212dc271b6187617b2509490ac0ddd6:log:81', 'hash': '0x38308c69d2a6f18ec1701c77b7f29451e212dc271b6187617b2509490ac0ddd6', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 242.738257616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x388453ded0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:53:18.000Z'}}, {'blockNum': '0x94d962', 'uniqueId': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7:log:160', 'hash': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 162.922421215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x25eeeedbdf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:02:23.000Z'}}, {'blockNum': '0x94d962', 'uniqueId': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7:log:162', 'hash': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 162.922421215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x25eeeedbdf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:02:23.000Z'}}, {'blockNum': '0x94d962', 'uniqueId': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7:log:166', 'hash': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 162.922421215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x25eeeedbdf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:02:23.000Z'}}, {'blockNum': '0x94d967', 'uniqueId': '0x8a26a6757887dcbc8e25db81e128eec4d18005b4e788b06a6d04528a4cedfd97:log:13', 'hash': '0x8a26a6757887dcbc8e25db81e128eec4d18005b4e788b06a6d04528a4cedfd97', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 564.28899878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x83623ecd7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:03:38.000Z'}}, {'blockNum': '0x94d9a1', 'uniqueId': '0x2da207c8a8eb9e7ff48b6e9d89281f4b55b97ecc55c44c974e8d4553b503b733:log:17', 'hash': '0x2da207c8a8eb9e7ff48b6e9d89281f4b55b97ecc55c44c974e8d4553b503b733', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 163.314806526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2606522efe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:16:23.000Z'}}, {'blockNum': '0x94d9a6', 'uniqueId': '0xa266f5a9653b1a57ee3bcbd70be4835c52005ee7dd11b6cf29ff7ee9b1479468:log:80', 'hash': '0xa266f5a9653b1a57ee3bcbd70be4835c52005ee7dd11b6cf29ff7ee9b1479468', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x53abc6bdc6472a5e34e456220c6ef9fede01cf05', 'value': 49.26563645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b7875f462', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:17:19.000Z'}}, {'blockNum': '0x94d9a9', 'uniqueId': '0xcfc11df0560fca2fd53dfa9e3c25148f58b427bcfaa929ada13f12d7f7b798a5:log:29', 'hash': '0xcfc11df0560fca2fd53dfa9e3c25148f58b427bcfaa929ada13f12d7f7b798a5', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 575.678938885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8609237f05', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:18:32.000Z'}}, {'blockNum': '0x94d9ab', 'uniqueId': '0x7cf394a51f0d099c1722707e240b188ea948c4b4b7846cee48304c1661e662ad:log:196', 'hash': '0x7cf394a51f0d099c1722707e240b188ea948c4b4b7846cee48304c1661e662ad', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xeda9c316c39f5a1a9f95ff23bc3d5e63eb793a9d', 'value': 465.112345869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c4adb2d0d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:19:06.000Z'}}, {'blockNum': '0x94d9ac', 'uniqueId': '0x4c9355a2ab066e21fc1310456cdf46387cff73694daadcdfe231ee6db0a0964e:log:22', 'hash': '0x4c9355a2ab066e21fc1310456cdf46387cff73694daadcdfe231ee6db0a0964e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 247.324917889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3995b6c081', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:19:13.000Z'}}, {'blockNum': '0x94d9c8', 'uniqueId': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435:log:53', 'hash': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 205.158779026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fc46a8892', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:26:48.000Z'}}, {'blockNum': '0x94d9c8', 'uniqueId': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435:log:55', 'hash': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 205.158779026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fc46a8892', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:26:48.000Z'}}, {'blockNum': '0x94d9c8', 'uniqueId': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435:log:61', 'hash': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 205.158779026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fc46a8892', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:26:48.000Z'}}, {'blockNum': '0x94d9cd', 'uniqueId': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de:log:90', 'hash': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 205.535217153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fdada8601', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:29:11.000Z'}}, {'blockNum': '0x94d9cd', 'uniqueId': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de:log:92', 'hash': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 205.535217153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fdada8601', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:29:11.000Z'}}, {'blockNum': '0x94d9cd', 'uniqueId': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de:log:98', 'hash': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 205.535217153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fdada8601', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:29:11.000Z'}}, {'blockNum': '0x94d9d2', 'uniqueId': '0xb354b0080dee7c91268aa1848014750d5b598b53266f28f19c2a755a7a9f9a13:log:23', 'hash': '0xb354b0080dee7c91268aa1848014750d5b598b53266f28f19c2a755a7a9f9a13', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5125.13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04a9498d9680', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:30:02.000Z'}}, {'blockNum': '0x94d9df', 'uniqueId': '0xe842a68324cc3d4107779ca966a2b39e62eb903fac543ec7f6b01f4a17dfeff0:log:34', 'hash': '0xe842a68324cc3d4107779ca966a2b39e62eb903fac543ec7f6b01f4a17dfeff0', 'from': '0x3ade2f2e035d88756834c7dd39df0be9364b3c95', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 237.843251084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37608fff8c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:35:51.000Z'}}, {'blockNum': '0x94d9df', 'uniqueId': '0xe842a68324cc3d4107779ca966a2b39e62eb903fac543ec7f6b01f4a17dfeff0:log:35', 'hash': '0xe842a68324cc3d4107779ca966a2b39e62eb903fac543ec7f6b01f4a17dfeff0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 237.843251084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37608fff8c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:35:51.000Z'}}, {'blockNum': '0x94da06', 'uniqueId': '0x166b0003ee9235c3476017e7e3e31715ab76a57caa41e61fb7212a27d59ed7b0:log:2', 'hash': '0x166b0003ee9235c3476017e7e3e31715ab76a57caa41e61fb7212a27d59ed7b0', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xeb0b08da4a91b06089a5643caca482af97a12c15', 'value': 256.71802041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3bc5961f3a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:44:10.000Z'}}, {'blockNum': '0x94da65', 'uniqueId': '0x8d0bdda1f54b0274da9d5881394530b1b7615b400bd728b71c2f7a772ce40245:log:26', 'hash': '0x8d0bdda1f54b0274da9d5881394530b1b7615b400bd728b71c2f7a772ce40245', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0174876e8000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:05:15.000Z'}}, {'blockNum': '0x94da72', 'uniqueId': '0xbb35bcbe6df5771d9b8cd2fa7a99945c1227c082d0ce8e1d2fa34b2ca504d21a:log:24', 'hash': '0xbb35bcbe6df5771d9b8cd2fa7a99945c1227c082d0ce8e1d2fa34b2ca504d21a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 744.821393913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xad6ad089f9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:09:24.000Z'}}, {'blockNum': '0x94da73', 'uniqueId': '0xc5c47e2d8d973007255c5dceb30feda12f628bda83697a5bdc94e839bfbd2c4f:log:15', 'hash': '0xc5c47e2d8d973007255c5dceb30feda12f628bda83697a5bdc94e839bfbd2c4f', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 325.895302577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4be0dfadb1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:09:31.000Z'}}, {'blockNum': '0x94da74', 'uniqueId': '0xce8494334dd94e55668ddf69dc3da003fafc5d07a3ade242f6427ba92a3462ca:log:56', 'hash': '0xce8494334dd94e55668ddf69dc3da003fafc5d07a3ade242f6427ba92a3462ca', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 323.2375555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b4275ad2c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:10:05.000Z'}}, {'blockNum': '0x94db0c', 'uniqueId': '0xfadec83f670e003b8b7888e4138c9bbe7eadae549e314bd3f9166efe5c7b05d0:log:11', 'hash': '0xfadec83f670e003b8b7888e4138c9bbe7eadae549e314bd3f9166efe5c7b05d0', 'from': '0xe5a3a82ff06d736012b2b6353d626c43b2f16ccb', 'to': '0x0329763285eb7fabe2a2e930e5cd13eb01910161', 'value': 383.35771565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5941e684c2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:40:38.000Z'}}, {'blockNum': '0x94db17', 'uniqueId': '0xac56a069652f33f6078c43663288b83fc7406d9872976cf9ca07a3b9c62b9f22:log:66', 'hash': '0xac56a069652f33f6078c43663288b83fc7406d9872976cf9ca07a3b9c62b9f22', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 724.507913727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa8b0096dff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:44:03.000Z'}}, {'blockNum': '0x94db17', 'uniqueId': '0xac56a069652f33f6078c43663288b83fc7406d9872976cf9ca07a3b9c62b9f22:log:68', 'hash': '0xac56a069652f33f6078c43663288b83fc7406d9872976cf9ca07a3b9c62b9f22', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x2bed2a2dfafde551dce4b3d245d889f9081ab7a1', 'value': 724.507913727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa8b0096dff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:44:03.000Z'}}, {'blockNum': '0x94dc01', 'uniqueId': '0x3324b6ba1e48f7595e444047cc29b38b0103852577892adbe1acccf239b7d3d2:log:2', 'hash': '0x3324b6ba1e48f7595e444047cc29b38b0103852577892adbe1acccf239b7d3d2', 'from': '0x3df5e139f4f852b913f81236e6b9b770f77e59dd', 'to': '0x92c6de05df797d43c9ab7d48d10962e3a01e10da', 'value': 302.543186928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4670faabf0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:33:54.000Z'}}, {'blockNum': '0x94dc42', 'uniqueId': '0xf79eba2a186d2711aba88d4483e5b0f997541412b7eb2f300a9ab4f84d4a7931:log:135', 'hash': '0xf79eba2a186d2711aba88d4483e5b0f997541412b7eb2f300a9ab4f84d4a7931', 'from': '0x92c6de05df797d43c9ab7d48d10962e3a01e10da', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 302.543186928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4670faabf0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:48:20.000Z'}}, {'blockNum': '0x94dc42', 'uniqueId': '0xf79eba2a186d2711aba88d4483e5b0f997541412b7eb2f300a9ab4f84d4a7931:log:137', 'hash': '0xf79eba2a186d2711aba88d4483e5b0f997541412b7eb2f300a9ab4f84d4a7931', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 302.543186928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4670faabf0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:48:20.000Z'}}, {'blockNum': '0x94dc45', 'uniqueId': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda:log:70', 'hash': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 153.307117722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x23b1d0f89a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:49:49.000Z'}}, {'blockNum': '0x94dc45', 'uniqueId': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda:log:75', 'hash': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 153.307117722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x23b1d0f89a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:49:49.000Z'}}, {'blockNum': '0x94dc45', 'uniqueId': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda:log:76', 'hash': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 153.307149969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x23b1d17691', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:49:49.000Z'}}, {'blockNum': '0x94dc61', 'uniqueId': '0xbca2aea9eecff5f8964f68d5465c5fc0ade9440d4f86f7ac2e30987a33e51b18:log:8', 'hash': '0xbca2aea9eecff5f8964f68d5465c5fc0ade9440d4f86f7ac2e30987a33e51b18', 'from': '0x333edcbdaf922f0456ab748570257478f0c8b5c9', 'to': '0x36f4a0ccd6fde033611aa6eb1879008528ec5150', 'value': 83.572329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x13754c8a28', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:54:12.000Z'}}, {'blockNum': '0x94dc75', 'uniqueId': '0x47cd5360e3d45b74290fc4a32b14514020e1f01a1e5e1fd7d52299c778ff9bf8:log:4', 'hash': '0x47cd5360e3d45b74290fc4a32b14514020e1f01a1e5e1fd7d52299c778ff9bf8', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 247.152671161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x398b7279b9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:58:29.000Z'}}, {'blockNum': '0x94dc7b', 'uniqueId': '0x7ea4a627dd03014705ffdfb4cac935846f3c5bfcf292fa5010b23219348a39ed:log:8', 'hash': '0x7ea4a627dd03014705ffdfb4cac935846f3c5bfcf292fa5010b23219348a39ed', 'from': '0x36f4a0ccd6fde033611aa6eb1879008528ec5150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83.572329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x13754c8a28', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:59:20.000Z'}}, {'blockNum': '0x94dc7b', 'uniqueId': '0xe4a6c34e037244aad71944d7b913b4c9a4a2d181666a20decec625d0b2051ce7:log:20', 'hash': '0xe4a6c34e037244aad71944d7b913b4c9a4a2d181666a20decec625d0b2051ce7', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 331.656877629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4d384a563d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:59:20.000Z'}}, {'blockNum': '0x94dc8d', 'uniqueId': '0x50ddbc31727f12cc1ea064b9ecf488264d47974cc11c3244ad16ff7b4e6f936b:log:26', 'hash': '0x50ddbc31727f12cc1ea064b9ecf488264d47974cc11c3244ad16ff7b4e6f936b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 1499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d035cce00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:02:25.000Z'}}, {'blockNum': '0x94dc93', 'uniqueId': '0xa3369a50e74804a541a49c1a0be676228c11116c9aee4f98b73b4135a27456ad:log:11', 'hash': '0xa3369a50e74804a541a49c1a0be676228c11116c9aee4f98b73b4135a27456ad', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 487.284229106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x71746743f2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:05:22.000Z'}}, {'blockNum': '0x94dc9f', 'uniqueId': '0x731bacae758aced3885071a209d427c80a7ea5f2c6b16bbd0e93d0f26a4321ec:log:64', 'hash': '0x731bacae758aced3885071a209d427c80a7ea5f2c6b16bbd0e93d0f26a4321ec', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 403.296541841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5de658dc91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:08:15.000Z'}}, {'blockNum': '0x94dca0', 'uniqueId': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5:log:61', 'hash': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5', 'from': '0x3042d98434814af5c9674ef80f9340bee086ee92', 'to': '0x5526db6c807fb3fae9bafd4a44832c246a8d406e', 'value': 154.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2402745100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:08:42.000Z'}}, {'blockNum': '0x94dca0', 'uniqueId': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5:log:63', 'hash': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5', 'from': '0x5526db6c807fb3fae9bafd4a44832c246a8d406e', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 154.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2402745100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:08:42.000Z'}}, {'blockNum': '0x94dca0', 'uniqueId': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5:log:64', 'hash': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 154.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2402745100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:08:42.000Z'}}, {'blockNum': '0x94dca2', 'uniqueId': '0xc6a6fe4ad58994a442926240e401b0b34cdeb121995dc9952763883de9097bb2:log:20', 'hash': '0xc6a6fe4ad58994a442926240e401b0b34cdeb121995dc9952763883de9097bb2', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 459.364606537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6af443a249', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:09:16.000Z'}}, {'blockNum': '0x94dca2', 'uniqueId': '0xc6a6fe4ad58994a442926240e401b0b34cdeb121995dc9952763883de9097bb2:log:25', 'hash': '0xc6a6fe4ad58994a442926240e401b0b34cdeb121995dc9952763883de9097bb2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 459.364606537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6af443a249', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:09:16.000Z'}}, {'blockNum': '0x94dcb6', 'uniqueId': '0xef018033a31bbb3ad4cbb3a17c95cf3aba276197af1a01907da4b586c2c4d301:log:10', 'hash': '0xef018033a31bbb3ad4cbb3a17c95cf3aba276197af1a01907da4b586c2c4d301', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 240.777828444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x380f7a185c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:16:15.000Z'}}, {'blockNum': '0x94dcb7', 'uniqueId': '0x0510ee5d9d0cd81f280d39ec5ace9df3b9a1cbeb8a6f5e5a308df10bd30bb024:log:43', 'hash': '0x0510ee5d9d0cd81f280d39ec5ace9df3b9a1cbeb8a6f5e5a308df10bd30bb024', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 239.884219942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37da36b626', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:16:45.000Z'}}, {'blockNum': '0x94dcf1', 'uniqueId': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d:log:29', 'hash': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d', 'from': '0xd4bc78ae16e43e16cbe29db734dbb27f69c15fcf', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 3345.571389241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x030af3981f39', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:29.000Z'}}, {'blockNum': '0x94dcf1', 'uniqueId': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d:log:30', 'hash': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'value': 3345.571389241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x030af3981f39', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:29.000Z'}}, {'blockNum': '0x94dcf1', 'uniqueId': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d:log:32', 'hash': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d', 'from': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'to': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'value': 3345.571389241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x030af3981f39', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:29.000Z'}}, {'blockNum': '0x94dcf1', 'uniqueId': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d:log:33', 'hash': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d', 'from': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 3345.571389241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x030af3981f39', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:29.000Z'}}, {'blockNum': '0x94dcf2', 'uniqueId': '0x2e6cf1c9115bd57b233903da07cfe4f19d96094a61c99ff90b0a159346b7bb07:log:0', 'hash': '0x2e6cf1c9115bd57b233903da07cfe4f19d96094a61c99ff90b0a159346b7bb07', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x7e38f441d3615a052b1514f1a1e12eb67eb406dd', 'value': 882.64669245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcd81d7b262', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:31.000Z'}}, {'blockNum': '0x94dcf2', 'uniqueId': '0x54fec7a86bae93b448ea433f549aec73812a08f1e3dd9a039c39ff6a686d3697:log:2', 'hash': '0x54fec7a86bae93b448ea433f549aec73812a08f1e3dd9a039c39ff6a686d3697', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 2039.811432433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01daee3c5ff1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:31.000Z'}}, {'blockNum': '0x94dcf2', 'uniqueId': '0x315fb33e3ae21ad6fbdb0a5473285f0dec97609f1790e4656496ced8d537156b:log:5', 'hash': '0x315fb33e3ae21ad6fbdb0a5473285f0dec97609f1790e4656496ced8d537156b', 'from': '0x7e38f441d3615a052b1514f1a1e12eb67eb406dd', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 882.64669245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcd81d7b262', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:31.000Z'}}, {'blockNum': '0x94dcf3', 'uniqueId': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389:log:129', 'hash': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 405.837496583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5e7dccc107', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:28:20.000Z'}}, {'blockNum': '0x94dcf3', 'uniqueId': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389:log:132', 'hash': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 405.837496583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5e7dccc107', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:28:20.000Z'}}, {'blockNum': '0x94dcf3', 'uniqueId': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389:log:134', 'hash': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 405.837496583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5e7dccc107', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:28:20.000Z'}}, {'blockNum': '0x94dcfb', 'uniqueId': '0x7f0400aec56c35f2864cbd75d4d02934d9021b24fdde2f488999db5805834def:log:1', 'hash': '0x7f0400aec56c35f2864cbd75d4d02934d9021b24fdde2f488999db5805834def', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 580.19275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x87162ec9b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:30:44.000Z'}}, {'blockNum': '0x94dcfb', 'uniqueId': '0xf4dd4d61c4704d038515c01374eb0c77de8a0219b8aec301faed4dcfc3f5539e:log:43', 'hash': '0xf4dd4d61c4704d038515c01374eb0c77de8a0219b8aec301faed4dcfc3f5539e', 'from': '0x88eaaa81e689abb337bc2d1db7aa7a39d2af98cb', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3f18dbd600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:30:44.000Z'}}, {'blockNum': '0x94dcfb', 'uniqueId': '0xf4dd4d61c4704d038515c01374eb0c77de8a0219b8aec301faed4dcfc3f5539e:log:44', 'hash': '0xf4dd4d61c4704d038515c01374eb0c77de8a0219b8aec301faed4dcfc3f5539e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3f18dbd600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:30:44.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xa577f5b5f8dba709e74cce10bf8b58dc63cd6b000d1fd1dbaa4159b3995eb4e7:log:29', 'hash': '0xa577f5b5f8dba709e74cce10bf8b58dc63cd6b000d1fd1dbaa4159b3995eb4e7', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 401.743538974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5d89c7eb1e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xa577f5b5f8dba709e74cce10bf8b58dc63cd6b000d1fd1dbaa4159b3995eb4e7:log:34', 'hash': '0xa577f5b5f8dba709e74cce10bf8b58dc63cd6b000d1fd1dbaa4159b3995eb4e7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6e316492ed3d5cba0d8940babc589989d7f59193', 'value': 401.743538974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5d89c7eb1e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e:log:58', 'hash': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 242.291165248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3869adc840', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e:log:60', 'hash': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 242.291165248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3869adc840', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e:log:61', 'hash': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 242.291165248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3869adc840', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd19', 'uniqueId': '0x8e77fe09afa2284915c52b1e540984602abb6e447f75ccc7734846e60572dd7f:log:41', 'hash': '0x8e77fe09afa2284915c52b1e540984602abb6e447f75ccc7734846e60572dd7f', 'from': '0x6e316492ed3d5cba0d8940babc589989d7f59193', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 401.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5d8991eb00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:45.000Z'}}, {'blockNum': '0x94dd1d', 'uniqueId': '0x8259ed0d16aa51a5e2d5b2ee953ffd98c37fae94d1096de5eb2c560a25547034:log:32', 'hash': '0x8259ed0d16aa51a5e2d5b2ee953ffd98c37fae94d1096de5eb2c560a25547034', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x6f72c0dbc7992d23d48e4cee274e7c24a4b552f2', 'value': 580.19275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x87162ec9b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:36:43.000Z'}}, {'blockNum': '0x94dd1f', 'uniqueId': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19:log:10', 'hash': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 352.60647778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5218fbddd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:37:07.000Z'}}, {'blockNum': '0x94dd1f', 'uniqueId': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19:log:12', 'hash': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 352.606468207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5218fbb86f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:37:07.000Z'}}, {'blockNum': '0x94dd1f', 'uniqueId': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19:log:13', 'hash': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 352.606468207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5218fbb86f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:37:07.000Z'}}, {'blockNum': '0x94dd2f', 'uniqueId': '0x739206575c6a5bb5a7e5cd2470b4fdc536f72af860a3cc4cfda9ea76b531b130:log:10', 'hash': '0x739206575c6a5bb5a7e5cd2470b4fdc536f72af860a3cc4cfda9ea76b531b130', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x434dcb3948062f0abac568b7a4c397e773189300', 'value': 493.65396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x72f011a540', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:42:43.000Z'}}, {'blockNum': '0x94dd57', 'uniqueId': '0xd56c531b1c125a21ce9509fd925d41484faa6854079272c23686873efc693999:log:29', 'hash': '0xd56c531b1c125a21ce9509fd925d41484faa6854079272c23686873efc693999', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 401.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5d8991eb00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:49:43.000Z'}}, {'blockNum': '0x94dd5b', 'uniqueId': '0x373a192169e92dcdff5a944fc5d4aca982aad5845b6fc602eafdcc604227a1d2:log:27', 'hash': '0x373a192169e92dcdff5a944fc5d4aca982aad5845b6fc602eafdcc604227a1d2', 'from': '0xbcf8cf9055ee8f904d0d8ce0e8ee0bf6d4a58633', 'to': '0x738696765dbcb15bbab8dc7b2255d5d30374e592', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:50:45.000Z'}}, {'blockNum': '0x94dd63', 'uniqueId': '0x51e417d018ff792ea250f402b3762205829bee68c10ced760aae81ecdd7a499e:log:27', 'hash': '0x51e417d018ff792ea250f402b3762205829bee68c10ced760aae81ecdd7a499e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 190.219881811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c49fd0d53', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:51:54.000Z'}}, {'blockNum': '0x94dd77', 'uniqueId': '0xcbe2f6f43dfe190dcd65f3b08b83295e513019d51999c4131eeb47676d60b0fd:log:9', 'hash': '0xcbe2f6f43dfe190dcd65f3b08b83295e513019d51999c4131eeb47676d60b0fd', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 273.893757678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3fc55712ee', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:55:09.000Z'}}, {'blockNum': '0x94dd79', 'uniqueId': '0x6c2d85703f56b93984aeb4f068eaf629c34e13e512d7b1e9f26df34bd14429da:log:2', 'hash': '0x6c2d85703f56b93984aeb4f068eaf629c34e13e512d7b1e9f26df34bd14429da', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 215.169467925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3219198615', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:55:32.000Z'}}, {'blockNum': '0x94dd79', 'uniqueId': '0x6c2d85703f56b93984aeb4f068eaf629c34e13e512d7b1e9f26df34bd14429da:log:4', 'hash': '0x6c2d85703f56b93984aeb4f068eaf629c34e13e512d7b1e9f26df34bd14429da', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 215.169467925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3219198615', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:55:32.000Z'}}, {'blockNum': '0x94dd7e', 'uniqueId': '0xded3b95e6792eda65a97ee7d4863b4906f2c47a77dbb7d70011bdbfbbb716b42:log:64', 'hash': '0xded3b95e6792eda65a97ee7d4863b4906f2c47a77dbb7d70011bdbfbbb716b42', 'from': '0x738696765dbcb15bbab8dc7b2255d5d30374e592', 'to': '0x48fbb939d0717a8945fd44af70e62c5672a1ac76', 'value': 1473.1672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0156ff9b8f00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:56:46.000Z'}}, {'blockNum': '0x94dd82', 'uniqueId': '0xfffaf562f582c05752174dc5854385404a2b18b9abff3c18f1e4fe59d7303ac9:log:20', 'hash': '0xfffaf562f582c05752174dc5854385404a2b18b9abff3c18f1e4fe59d7303ac9', 'from': '0x434dcb3948062f0abac568b7a4c397e773189300', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 493.65396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x72f011a540', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:57:37.000Z'}}, {'blockNum': '0x94dd82', 'uniqueId': '0x191ba24047ae13ef36f877b0ba7256c705ccb7b69ce4cc1751ffd1dc53e14f82:log:147', 'hash': '0x191ba24047ae13ef36f877b0ba7256c705ccb7b69ce4cc1751ffd1dc53e14f82', 'from': '0x738696765dbcb15bbab8dc7b2255d5d30374e592', 'to': '0xbcf8cf9055ee8f904d0d8ce0e8ee0bf6d4a58633', 'value': 26.8328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x063f5c0900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:57:37.000Z'}}, {'blockNum': '0x94ddfa', 'uniqueId': '0xec72a203e018b08f79857aca7dcfe918cae297944e27b4e0e021071163130139:log:20', 'hash': '0xec72a203e018b08f79857aca7dcfe918cae297944e27b4e0e021071163130139', 'from': '0xb0b91143de6bbb74057d120db7bd7b939a4bae5c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 56.394914261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0d216619d5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:22:45.000Z'}}, {'blockNum': '0x94de2f', 'uniqueId': '0x16e59403228fc4236c42ec31113677851fbdcadc7f995f8d45f1728ffb1c059e:log:0', 'hash': '0x16e59403228fc4236c42ec31113677851fbdcadc7f995f8d45f1728ffb1c059e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1793.36987682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a18d2ca954', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:31:44.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989:log:2', 'hash': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989:log:4', 'hash': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989:log:9', 'hash': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0xc32f4758dc2cbbd9e87d82375b4886ef238b89c0cecead89115b167f9572e878:log:108', 'hash': '0xc32f4758dc2cbbd9e87d82375b4886ef238b89c0cecead89115b167f9572e878', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 595.79873354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8ab85f32e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0xc32f4758dc2cbbd9e87d82375b4886ef238b89c0cecead89115b167f9572e878:log:113', 'hash': '0xc32f4758dc2cbbd9e87d82375b4886ef238b89c0cecead89115b167f9572e878', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 595.79873354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8ab85f32e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0x1cd112606a232f3c6eccd89eae7d076bee0ac444ebb8d113adfe33c0e0dee8c8:log:132', 'hash': '0x1cd112606a232f3c6eccd89eae7d076bee0ac444ebb8d113adfe33c0e0dee8c8', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1793.36987682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a18d2ca954', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de33', 'uniqueId': '0x4f999702dc177948ca1cdaec915874fda3ec598c6078da19cb13e7f93d9c6680:log:97', 'hash': '0x4f999702dc177948ca1cdaec915874fda3ec598c6078da19cb13e7f93d9c6680', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 595.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8ab7d9ef80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:33:04.000Z'}}, {'blockNum': '0x94de34', 'uniqueId': '0xbdd5728054b8a0adff42b95787423216d0424b368a5b1998cb4dcc8feb2e3610:log:74', 'hash': '0xbdd5728054b8a0adff42b95787423216d0424b368a5b1998cb4dcc8feb2e3610', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 394.000742948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5bbc463a24', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:33:25.000Z'}}, {'blockNum': '0x94de40', 'uniqueId': '0x018c6f7df9b33d7de4b67c1a6381d40d4c195fc9a7ed264840c8083bb8a2a40a:log:18', 'hash': '0x018c6f7df9b33d7de4b67c1a6381d40d4c195fc9a7ed264840c8083bb8a2a40a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 162.994105963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x25f334ae6b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:36:36.000Z'}}, {'blockNum': '0x94de4a', 'uniqueId': '0x7a5401cb52d335e57e96b579d725ccbb77162e10db2a5c14ef7a272e9e895d5a:log:2', 'hash': '0x7a5401cb52d335e57e96b579d725ccbb77162e10db2a5c14ef7a272e9e895d5a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 989.790742948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe6742029a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:38:52.000Z'}}, {'blockNum': '0x94de4a', 'uniqueId': '0x2e72702f3fe01ab5b5c904baa871d35090d389d891babf77e2553c7544baa664:log:6', 'hash': '0x2e72702f3fe01ab5b5c904baa871d35090d389d891babf77e2553c7544baa664', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1793.36987682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a18d2ca954', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:38:52.000Z'}}, {'blockNum': '0x94de4c', 'uniqueId': '0x66907922ac8cdd7868db01ea54cdd39cf9147cdf69ea6641b6d697e7a8f12c38:log:1', 'hash': '0x66907922ac8cdd7868db01ea54cdd39cf9147cdf69ea6641b6d697e7a8f12c38', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 587.976652424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x88e623b688', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:39:40.000Z'}}, {'blockNum': '0x94de4d', 'uniqueId': '0x5a737a1f57b2af8a954ee77a768d8c0d9294717944a176b16bb51618c0aa1cf9:log:55', 'hash': '0x5a737a1f57b2af8a954ee77a768d8c0d9294717944a176b16bb51618c0aa1cf9', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 388.172177416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a60dd6008', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:39:48.000Z'}}, {'blockNum': '0x94de4d', 'uniqueId': '0x5a737a1f57b2af8a954ee77a768d8c0d9294717944a176b16bb51618c0aa1cf9:log:60', 'hash': '0x5a737a1f57b2af8a954ee77a768d8c0d9294717944a176b16bb51618c0aa1cf9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 388.172177416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a60dd6008', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:39:48.000Z'}}, {'blockNum': '0x94de4d', 'uniqueId': '0x1653e714930e9f6c828f17fa0275d109a2ff1408dfa086e223c166d199c90f6a:log:69', 'hash': '0x1653e714930e9f6c828f17fa0275d109a2ff1408dfa086e223c166d199c90f6a', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 587.976652424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x88e623b688', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:39:48.000Z'}}, {'blockNum': '0x94de4e', 'uniqueId': '0xf8c6c567a4f83610354ada6d362635639a751982167037083e5f0e6654b2ec68:log:37', 'hash': '0xf8c6c567a4f83610354ada6d362635639a751982167037083e5f0e6654b2ec68', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 388.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a60bc2680', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:40:06.000Z'}}, {'blockNum': '0x94de51', 'uniqueId': '0x07eaa61c1c1ed6ac5847f6ea07d6ad67b83ef414fe91de476c19f6434562b242:log:21', 'hash': '0x07eaa61c1c1ed6ac5847f6ea07d6ad67b83ef414fe91de476c19f6434562b242', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 196.166273257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2dac6bc8e9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:40:30.000Z'}}, {'blockNum': '0x94de51', 'uniqueId': '0x07eaa61c1c1ed6ac5847f6ea07d6ad67b83ef414fe91de476c19f6434562b242:log:23', 'hash': '0x07eaa61c1c1ed6ac5847f6ea07d6ad67b83ef414fe91de476c19f6434562b242', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 196.166273257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2dac6bc8e9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:40:30.000Z'}}, {'blockNum': '0x94de68', 'uniqueId': '0x13ea5b1ed9d573bfd06369e0be5a810e555a3150bcda35e66950b05d6b49618f:log:61', 'hash': '0x13ea5b1ed9d573bfd06369e0be5a810e555a3150bcda35e66950b05d6b49618f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 83.869285592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1386ffbcd8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:46:16.000Z'}}, {'blockNum': '0x94de68', 'uniqueId': '0x13ea5b1ed9d573bfd06369e0be5a810e555a3150bcda35e66950b05d6b49618f:log:63', 'hash': '0x13ea5b1ed9d573bfd06369e0be5a810e555a3150bcda35e66950b05d6b49618f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x960759201bd70a436cab133b0834a65224c8c229', 'value': 83.869285592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1386ffbcd8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:46:16.000Z'}}, {'blockNum': '0x94de68', 'uniqueId': '0x586686f585de73a4299e4341a63b6f7f7ef99967977be7283bffafd3924d0726:log:83', 'hash': '0x586686f585de73a4299e4341a63b6f7f7ef99967977be7283bffafd3924d0726', 'from': '0x0c14c14a498af21861c7fb6e2cd2298829781616', 'to': '0x7188fc756628b7b05108a3ab185ed49a9a3b7a17', 'value': 8160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x076be5e6c000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:46:16.000Z'}}, {'blockNum': '0x94de70', 'uniqueId': '0x3298b187e7f3bcb6eebf0eaa414e200a3846d8ca6f9e8ade869383c2eb03db4a:log:12', 'hash': '0x3298b187e7f3bcb6eebf0eaa414e200a3846d8ca6f9e8ade869383c2eb03db4a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 394.786698512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5beb1ef510', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:47:57.000Z'}}, {'blockNum': '0x94de75', 'uniqueId': '0x20238fbb7f55ecd378ed1fb73296c05f8702ffa2e81ee702160feebb0e0b7dd7:log:10', 'hash': '0x20238fbb7f55ecd378ed1fb73296c05f8702ffa2e81ee702160feebb0e0b7dd7', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 587.976652424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x88e623b688', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:48:30.000Z'}}, {'blockNum': '0x94de75', 'uniqueId': '0x87c51a75b2c6022325948aabbe49d31ddaa936d916b418a1983300db6aacd298:log:13', 'hash': '0x87c51a75b2c6022325948aabbe49d31ddaa936d916b418a1983300db6aacd298', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 388.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a60bc2680', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:48:30.000Z'}}, {'blockNum': '0x94de75', 'uniqueId': '0x36634b8ffe5d50032b4abccc2058bcce9ab7e9e311ad6381bd19a5cb2bc2d708:log:80', 'hash': '0x36634b8ffe5d50032b4abccc2058bcce9ab7e9e311ad6381bd19a5cb2bc2d708', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 166.470144022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x26c264d016', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:48:30.000Z'}}, {'blockNum': '0x94de75', 'uniqueId': '0x36634b8ffe5d50032b4abccc2058bcce9ab7e9e311ad6381bd19a5cb2bc2d708:log:82', 'hash': '0x36634b8ffe5d50032b4abccc2058bcce9ab7e9e311ad6381bd19a5cb2bc2d708', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 166.470144022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x26c264d016', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:48:30.000Z'}}, {'blockNum': '0x94de80', 'uniqueId': '0xa2173b9456bb38d4a789923e2e4d2f3c4809af25f02fdce56457fdfb42a68ed2:log:18', 'hash': '0xa2173b9456bb38d4a789923e2e4d2f3c4809af25f02fdce56457fdfb42a68ed2', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 397.524233494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5c8e4a6d16', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:51:58.000Z'}}, {'blockNum': '0x94de81', 'uniqueId': '0xc51beb89f2d512e776dc0c2f1e755b7f385a4f3cb5c987f0f7885c9bc1604823:log:12', 'hash': '0xc51beb89f2d512e776dc0c2f1e755b7f385a4f3cb5c987f0f7885c9bc1604823', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 138.128718016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x20291cf8c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:52:15.000Z'}}, {'blockNum': '0x94de81', 'uniqueId': '0xc51beb89f2d512e776dc0c2f1e755b7f385a4f3cb5c987f0f7885c9bc1604823:log:14', 'hash': '0xc51beb89f2d512e776dc0c2f1e755b7f385a4f3cb5c987f0f7885c9bc1604823', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 138.128718016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x20291cf8c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:52:15.000Z'}}, {'blockNum': '0x94de84', 'uniqueId': '0xbc4baf7b9fc2993a1677136618536b1554e889306acaeb4d0eba8a8c194e4a20:log:51', 'hash': '0xbc4baf7b9fc2993a1677136618536b1554e889306acaeb4d0eba8a8c194e4a20', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 320.380155992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4a98253858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:52:48.000Z'}}, {'blockNum': '0x94de8a', 'uniqueId': '0xe3418404008324da5fba73bf30f329d404bf4114ddc9be17b843837e343019fb:log:97', 'hash': '0xe3418404008324da5fba73bf30f329d404bf4114ddc9be17b843837e343019fb', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 230.176142163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3597913353', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:54:04.000Z'}}, {'blockNum': '0x94de8a', 'uniqueId': '0xe3418404008324da5fba73bf30f329d404bf4114ddc9be17b843837e343019fb:log:99', 'hash': '0xe3418404008324da5fba73bf30f329d404bf4114ddc9be17b843837e343019fb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 230.176142163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3597913353', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:54:04.000Z'}}, {'blockNum': '0x94de9f', 'uniqueId': '0xc273dd104740c7681120e09bc08e0de27915808ba5624b34d8eedb909e6b9d46:log:0', 'hash': '0xc273dd104740c7681120e09bc08e0de27915808ba5624b34d8eedb909e6b9d46', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x43d06e7ced701878ea09c8f6d68da9b8cee802d4', 'value': 61.230041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e419847a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:57:50.000Z'}}, {'blockNum': '0x94dea4', 'uniqueId': '0xbf89fa8377df719360d2f8313682555a5d1f09d7bb7066fc97c8d0e06c7a8e3c:log:12', 'hash': '0xbf89fa8377df719360d2f8313682555a5d1f09d7bb7066fc97c8d0e06c7a8e3c', 'from': '0x7188fc756628b7b05108a3ab185ed49a9a3b7a17', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x076be5e6c000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:58:57.000Z'}}, {'blockNum': '0x94ded4', 'uniqueId': '0x53c6c7df6de7c102c76255112a07008c4436767963e9580970935310a6240eb4:log:7', 'hash': '0x53c6c7df6de7c102c76255112a07008c4436767963e9580970935310a6240eb4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 558.26610587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81fb40c00e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:09:14.000Z'}}, {'blockNum': '0x94ded4', 'uniqueId': '0x2b6c01340d395654b75d8dd6ce08c627627ba111fe4f97a1fde90e85cb0b73b0:log:9', 'hash': '0x2b6c01340d395654b75d8dd6ce08c627627ba111fe4f97a1fde90e85cb0b73b0', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x0fec2704223b4b00fae55e948c674ea1f6d344de', 'value': 2866.14609736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x029b539eb8d0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:09:14.000Z'}}, {'blockNum': '0x94ded7', 'uniqueId': '0x2b1b6c040cd77f0795cc5e165909da020d8125ccbf853cd82e19be79cb150df7:log:70', 'hash': '0x2b1b6c040cd77f0795cc5e165909da020d8125ccbf853cd82e19be79cb150df7', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 237.759197523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x375b8d7153', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:10:01.000Z'}}, {'blockNum': '0x94dedb', 'uniqueId': '0xf549d3d14e54f1e525d24e16e14c6e87674b43c15be8a4569129eee96785e422:log:62', 'hash': '0xf549d3d14e54f1e525d24e16e14c6e87674b43c15be8a4569129eee96785e422', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 122.660621485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1c8f248cad', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:11:02.000Z'}}, {'blockNum': '0x94dedb', 'uniqueId': '0xf549d3d14e54f1e525d24e16e14c6e87674b43c15be8a4569129eee96785e422:log:67', 'hash': '0xf549d3d14e54f1e525d24e16e14c6e87674b43c15be8a4569129eee96785e422', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 122.660621485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1c8f248cad', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:11:02.000Z'}}, {'blockNum': '0x94dee5', 'uniqueId': '0x44f0207c582313d8f42a59c59ecb871c5946a10ed1869f5d508c544b4adc97f4:log:39', 'hash': '0x44f0207c582313d8f42a59c59ecb871c5946a10ed1869f5d508c544b4adc97f4', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 158.018610793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x24caa4a669', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:13:48.000Z'}}, {'blockNum': '0x94dee9', 'uniqueId': '0xaab310ddb4a6fa81e2e813bc10a0495ef29603ba23004118fed71be57aa32fc9:log:55', 'hash': '0xaab310ddb4a6fa81e2e813bc10a0495ef29603ba23004118fed71be57aa32fc9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 157.63038865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x24b380d9aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:14:33.000Z'}}, {'blockNum': '0x94dee9', 'uniqueId': '0xd5f6ec9b19726b2371b5fbd55f154d5cdd783f2b0cb6b8b2aac44edbf07e8166:log:80', 'hash': '0xd5f6ec9b19726b2371b5fbd55f154d5cdd783f2b0cb6b8b2aac44edbf07e8166', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xa24f3832508f3e8d218a9ea48aff3c56ba5f9f01', 'value': 180.979226874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a2333d8fa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:14:33.000Z'}}, {'blockNum': '0x94deee', 'uniqueId': '0xdfe6e2462b3da4b22d091fd2de3a7c3ff6172e10c7a2f432a97856c8192f8613:log:30', 'hash': '0xdfe6e2462b3da4b22d091fd2de3a7c3ff6172e10c7a2f432a97856c8192f8613', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd5f2884d9f7fc4fbdcfecd153f4866b6f86788a2', 'value': 558.26610587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81fb40c00e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:15:29.000Z'}}, {'blockNum': '0x94def2', 'uniqueId': '0xeca3933afac70347f8b8443e0784c0706b79bcd130a4c752cf64773d83cca351:log:81', 'hash': '0xeca3933afac70347f8b8443e0784c0706b79bcd130a4c752cf64773d83cca351', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 392.03801314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b474958d4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:16:23.000Z'}}, {'blockNum': '0x94def2', 'uniqueId': '0xeca3933afac70347f8b8443e0784c0706b79bcd130a4c752cf64773d83cca351:log:86', 'hash': '0xeca3933afac70347f8b8443e0784c0706b79bcd130a4c752cf64773d83cca351', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 392.03801314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b474958d4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:16:23.000Z'}}, {'blockNum': '0x94def4', 'uniqueId': '0x7bf258f4f15cadb7492091496007831420439e27b4739d9d28515d8be058c441:log:47', 'hash': '0x7bf258f4f15cadb7492091496007831420439e27b4739d9d28515d8be058c441', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 392.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b46cf1380', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:17:22.000Z'}}, {'blockNum': '0x94def7', 'uniqueId': '0x2f6e2cb4a4670276a4116c5d67535eb3e61adc2cc5b1e7669ef96da6a7a34d43:log:22', 'hash': '0x2f6e2cb4a4670276a4116c5d67535eb3e61adc2cc5b1e7669ef96da6a7a34d43', 'from': '0x71309886e56a439f67dc5f8eba0f8e5296249eda', 'to': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:18:04.000Z'}}, {'blockNum': '0x94defc', 'uniqueId': '0xc851e55a8815fed4bb3387e7a9c58d86f99d7b4fcd43d6c962ef56e09cb155ba:log:21', 'hash': '0xc851e55a8815fed4bb3387e7a9c58d86f99d7b4fcd43d6c962ef56e09cb155ba', 'from': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:19:18.000Z'}}, {'blockNum': '0x94deff', 'uniqueId': '0xed07d3477c66a18542decca8ae147c4564e6afe3b8d98c152ee28dc794b3abe9:log:73', 'hash': '0xed07d3477c66a18542decca8ae147c4564e6afe3b8d98c152ee28dc794b3abe9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 156.800096549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2482039925', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:19:42.000Z'}}, {'blockNum': '0x94df09', 'uniqueId': '0x414ad5aa8a76f3c94f6e3a49f09520bc356648eaedca20d25baa700eb8318674:log:12', 'hash': '0x414ad5aa8a76f3c94f6e3a49f09520bc356648eaedca20d25baa700eb8318674', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:14.000Z'}}, {'blockNum': '0x94df0a', 'uniqueId': '0x5cd897fbca07b88383370b7cfe8df82c538b9fd5347793e2d00a865163dbd189:log:0', 'hash': '0x5cd897fbca07b88383370b7cfe8df82c538b9fd5347793e2d00a865163dbd189', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 542.73701719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7e5da5a966', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:16.000Z'}}, {'blockNum': '0x94df0b', 'uniqueId': '0xdf0e7e2685a8af0eaefb9265c88fbe8aa97615c6f6dd6e4efb0606fdc93ae3b5:log:14', 'hash': '0xdf0e7e2685a8af0eaefb9265c88fbe8aa97615c6f6dd6e4efb0606fdc93ae3b5', 'from': '0x71309886e56a439f67dc5f8eba0f8e5296249eda', 'to': '0xc2b4048b0b143f99e79cb3526e380686ddd5ac6c', 'value': 362.52642894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5468424f0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:27.000Z'}}, {'blockNum': '0x94df0b', 'uniqueId': '0x9922e0f24aa71cda84d4a4943d75f745c1c762d34b5e6ea2c9eb398351d8728d:log:39', 'hash': '0x9922e0f24aa71cda84d4a4943d75f745c1c762d34b5e6ea2c9eb398351d8728d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1916.361804218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01be301089ba', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:27.000Z'}}, {'blockNum': '0x94df0b', 'uniqueId': '0x9922e0f24aa71cda84d4a4943d75f745c1c762d34b5e6ea2c9eb398351d8728d:log:41', 'hash': '0x9922e0f24aa71cda84d4a4943d75f745c1c762d34b5e6ea2c9eb398351d8728d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'value': 1916.361804218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01be301089ba', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:27.000Z'}}, {'blockNum': '0x94df11', 'uniqueId': '0xaf15134d72775e12f162bc37d88064ae82d9f7fe785bee5915edd08f4c1c2aaf:log:9', 'hash': '0xaf15134d72775e12f162bc37d88064ae82d9f7fe785bee5915edd08f4c1c2aaf', 'from': '0xc2b4048b0b143f99e79cb3526e380686ddd5ac6c', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 362.52642894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5468424f0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:22:20.000Z'}}, {'blockNum': '0x94df16', 'uniqueId': '0x0cb7b23f8e2526786be41151e16a72d4b8d9b33e721c51cc7094f5815bb0754a:log:19', 'hash': '0x0cb7b23f8e2526786be41151e16a72d4b8d9b33e721c51cc7094f5815bb0754a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2109.287774593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01eb1b593981', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:22:53.000Z'}}, {'blockNum': '0x94df16', 'uniqueId': '0x0cb7b23f8e2526786be41151e16a72d4b8d9b33e721c51cc7094f5815bb0754a:log:21', 'hash': '0x0cb7b23f8e2526786be41151e16a72d4b8d9b33e721c51cc7094f5815bb0754a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'value': 2109.287774593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01eb1b593981', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:22:53.000Z'}}, {'blockNum': '0x94df21', 'uniqueId': '0xcf055420e40604d0c2d6520327ce6dbfcc3dc3196e7d986d480e7d963d6c5800:log:31', 'hash': '0xcf055420e40604d0c2d6520327ce6dbfcc3dc3196e7d986d480e7d963d6c5800', 'from': '0xa2a2775296e1a69a33ded88506c49f94ae38effe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:25:53.000Z'}}, {'blockNum': '0x94df21', 'uniqueId': '0xcf055420e40604d0c2d6520327ce6dbfcc3dc3196e7d986d480e7d963d6c5800:log:32', 'hash': '0xcf055420e40604d0c2d6520327ce6dbfcc3dc3196e7d986d480e7d963d6c5800', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:25:53.000Z'}}, {'blockNum': '0x94df2a', 'uniqueId': '0xcc94318741b5b47baf68ea34083a1a7ec26686a1517661a57e7ab905833d5242:log:62', 'hash': '0xcc94318741b5b47baf68ea34083a1a7ec26686a1517661a57e7ab905833d5242', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x8bf3af4ef2609199a01d1bcf74f8324db56a00a8', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:27:59.000Z'}}, {'blockNum': '0x94df2a', 'uniqueId': '0x2ffbd041093651d97e755dfe832c1f0d1bb697fafc9e0d06f75699d997ccd228:log:63', 'hash': '0x2ffbd041093651d97e755dfe832c1f0d1bb697fafc9e0d06f75699d997ccd228', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x61b10035446372670fe9ffaa4191016b783a1f1b', 'value': 542.73701719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7e5da5a966', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:27:59.000Z'}}, {'blockNum': '0x94df31', 'uniqueId': '0x47d9e955aa44149075213cfc3f1b424d59eabc67332b739c19b0f6e4e278bd1a:log:6', 'hash': '0x47d9e955aa44149075213cfc3f1b424d59eabc67332b739c19b0f6e4e278bd1a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 392.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b46cf1380', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:29:04.000Z'}}, {'blockNum': '0x94df31', 'uniqueId': '0x7846caf54fa308a224d2b51a036a6433cb687b1c0257bd45a5a1a2da105ce50c:log:12', 'hash': '0x7846caf54fa308a224d2b51a036a6433cb687b1c0257bd45a5a1a2da105ce50c', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1862.52642894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01b1a739e70c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:29:04.000Z'}}, {'blockNum': '0x94df32', 'uniqueId': '0xafaee6bc634853143acc1974706b35b30597cf28f26b6021beef85c0534f2c70:log:29', 'hash': '0xafaee6bc634853143acc1974706b35b30597cf28f26b6021beef85c0534f2c70', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 317.187266514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x49d9d597d2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:29:13.000Z'}}, {'blockNum': '0x94df40', 'uniqueId': '0x17b11f1ea02f8ef3162aa6375ff4b2cedf86f14d34913cb5eba4f3bcb1d7db9d:log:77', 'hash': '0x17b11f1ea02f8ef3162aa6375ff4b2cedf86f14d34913cb5eba4f3bcb1d7db9d', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 129.435081449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e22ee9ae9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:31:36.000Z'}}, {'blockNum': '0x94df40', 'uniqueId': '0x17b11f1ea02f8ef3162aa6375ff4b2cedf86f14d34913cb5eba4f3bcb1d7db9d:log:79', 'hash': '0x17b11f1ea02f8ef3162aa6375ff4b2cedf86f14d34913cb5eba4f3bcb1d7db9d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 129.435081449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e22ee9ae9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:31:36.000Z'}}, {'blockNum': '0x94df48', 'uniqueId': '0x14010c749de6022483fb8d31d864439d7b6f95b704c12c07ccdaf5ef7303c2cf:log:44', 'hash': '0x14010c749de6022483fb8d31d864439d7b6f95b704c12c07ccdaf5ef7303c2cf', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 560.286240378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8273a98e7a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:13.000Z'}}, {'blockNum': '0x94df48', 'uniqueId': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae:log:82', 'hash': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 99.147846686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1715ac141e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:13.000Z'}}, {'blockNum': '0x94df48', 'uniqueId': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae:log:85', 'hash': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 99.147846686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1715ac141e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:13.000Z'}}, {'blockNum': '0x94df48', 'uniqueId': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae:log:87', 'hash': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 99.147846686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1715ac141e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:13.000Z'}}, {'blockNum': '0x94df49', 'uniqueId': '0x1493a656eed2caf10b92f4efea6c65e5efcf7674a480998adba775362164ebd7:log:3', 'hash': '0x1493a656eed2caf10b92f4efea6c65e5efcf7674a480998adba775362164ebd7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 2532.804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x024db6e1f900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:22.000Z'}}, {'blockNum': '0x94df50', 'uniqueId': '0xb8d973c38c695a69191ad7a3dbf6291a039b5c3b3c3ee1b08ac5e000abc8036c:log:38', 'hash': '0xb8d973c38c695a69191ad7a3dbf6291a039b5c3b3c3ee1b08ac5e000abc8036c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 241.712559991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x384730f777', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:35:04.000Z'}}, {'blockNum': '0x94df51', 'uniqueId': '0xfe5e59105df09e2412ec1e147de7c59f5936b170aa1efe742568c6990ee074ff:log:24', 'hash': '0xfe5e59105df09e2412ec1e147de7c59f5936b170aa1efe742568c6990ee074ff', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 247.888076236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39b747ddcc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:35:30.000Z'}}, {'blockNum': '0x94df51', 'uniqueId': '0xfe5e59105df09e2412ec1e147de7c59f5936b170aa1efe742568c6990ee074ff:log:26', 'hash': '0xfe5e59105df09e2412ec1e147de7c59f5936b170aa1efe742568c6990ee074ff', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 247.888076236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39b747ddcc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:35:30.000Z'}}, {'blockNum': '0x94df7b', 'uniqueId': '0xf4431b7e5c3e108f409f1992698711b8d01300c0bb41c3df30d0fc8df7c0a3bf:log:174', 'hash': '0xf4431b7e5c3e108f409f1992698711b8d01300c0bb41c3df30d0fc8df7c0a3bf', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1396.436162798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01452214d8ee', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:44:01.000Z'}}, {'blockNum': '0x94df92', 'uniqueId': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712:log:14', 'hash': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:49:14.000Z'}}, {'blockNum': '0x94df92', 'uniqueId': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712:log:16', 'hash': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:49:14.000Z'}}, {'blockNum': '0x94df92', 'uniqueId': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712:log:21', 'hash': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:49:14.000Z'}}, {'blockNum': '0x94df94', 'uniqueId': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032:log:35', 'hash': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 411.882411345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5fe61ad551', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:50:01.000Z'}}, {'blockNum': '0x94df94', 'uniqueId': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032:log:37', 'hash': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 411.882411345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5fe61ad551', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:50:01.000Z'}}, {'blockNum': '0x94df94', 'uniqueId': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032:log:42', 'hash': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 411.882411345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5fe61ad551', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:50:01.000Z'}}, {'blockNum': '0x94df94', 'uniqueId': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032:log:44', 'hash': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 411.882411345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5fe61ad551', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:50:01.000Z'}}, {'blockNum': '0x94df9d', 'uniqueId': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e:log:44', 'hash': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1078.376513039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfb143fbe0f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:52:51.000Z'}}, {'blockNum': '0x94df9d', 'uniqueId': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e:log:46', 'hash': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1078.376513039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfb143fbe0f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:52:51.000Z'}}, {'blockNum': '0x94df9d', 'uniqueId': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e:log:51', 'hash': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1071.654664783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf983987a4f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:52:51.000Z'}}, {'blockNum': '0x94dfa6', 'uniqueId': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7:log:14', 'hash': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 322.193229261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b043685cd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:53:57.000Z'}}, {'blockNum': '0x94dfa6', 'uniqueId': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7:log:16', 'hash': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 322.193221389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b0436670d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:53:57.000Z'}}, {'blockNum': '0x94dfa6', 'uniqueId': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7:log:18', 'hash': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 322.193221389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b0436670d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:53:57.000Z'}}, {'blockNum': '0x94dfa8', 'uniqueId': '0xecf96c8c0a95f5913978956f17d8c5c4b534ffa68f1a1613b81a2a79003ad8df:log:28', 'hash': '0xecf96c8c0a95f5913978956f17d8c5c4b534ffa68f1a1613b81a2a79003ad8df', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 223.18296992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x33f6bddc40', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:54:14.000Z'}}, {'blockNum': '0x94dfa9', 'uniqueId': '0x497020f7e1aec3a410657cbaf8642f4a6a3de3e13d6594692ea880d4805f613b:log:3', 'hash': '0x497020f7e1aec3a410657cbaf8642f4a6a3de3e13d6594692ea880d4805f613b', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 223.18296992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x33f6bddc40', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:54:40.000Z'}}, {'blockNum': '0x94dfa9', 'uniqueId': '0x497020f7e1aec3a410657cbaf8642f4a6a3de3e13d6594692ea880d4805f613b:log:5', 'hash': '0x497020f7e1aec3a410657cbaf8642f4a6a3de3e13d6594692ea880d4805f613b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 223.18296992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x33f6bddc40', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:54:40.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c:log:35', 'hash': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 632.453320153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x934127cdd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c:log:37', 'hash': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 632.453320153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x934127cdd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c:log:42', 'hash': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 632.453320153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x934127cdd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5:log:168', 'hash': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 421.635546769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x622b6fde91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5:log:170', 'hash': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 421.635546769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x622b6fde91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5:log:176', 'hash': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 421.635546769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x622b6fde91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5:log:178', 'hash': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 421.635546769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x622b6fde91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfb0', 'uniqueId': '0x9ca03c69a63f83ad12ffbf291a09276a91428072fc2f0be1f8976b4e1ab4a9c4:log:29', 'hash': '0x9ca03c69a63f83ad12ffbf291a09276a91428072fc2f0be1f8976b4e1ab4a9c4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5688.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x052c6d45f080', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:56:49.000Z'}}, {'blockNum': '0x94dfb4', 'uniqueId': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a:log:54', 'hash': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 317.337340769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x49e2c78b61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:57:22.000Z'}}, {'blockNum': '0x94dfb4', 'uniqueId': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a:log:56', 'hash': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 317.337340769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x49e2c78b61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:57:22.000Z'}}, {'blockNum': '0x94dfb4', 'uniqueId': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a:log:60', 'hash': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 317.337340769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x49e2c78b61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:57:22.000Z'}}, {'blockNum': '0x94dfb8', 'uniqueId': '0x278eaf3e24173ad963ac57e75e482d8dd079262c321afa9fab7f66f6711efcc7:log:32', 'hash': '0x278eaf3e24173ad963ac57e75e482d8dd079262c321afa9fab7f66f6711efcc7', 'from': '0x8e002411fb80b6c9b65e8d271ab26f66fcc7016c', 'to': '0x379d44c14123419dad055beaf79eda54989504d7', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0246139ca800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:57:59.000Z'}}, {'blockNum': '0x94dfc4', 'uniqueId': '0x1e1e617424ff4218366b5ffac38f13c4a4789c2aa598be453b7bff17c6a266a6:log:82', 'hash': '0x1e1e617424ff4218366b5ffac38f13c4a4789c2aa598be453b7bff17c6a266a6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 424.203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x62c47818c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:00:39.000Z'}}, {'blockNum': '0x94dfc4', 'uniqueId': '0x0c762fd50d3d5cb4ff86f4ae6cd1b0bb46fe84008d483c06b9d3960be1bdd043:log:143', 'hash': '0x0c762fd50d3d5cb4ff86f4ae6cd1b0bb46fe84008d483c06b9d3960be1bdd043', 'from': '0x8bf3af4ef2609199a01d1bcf74f8324db56a00a8', 'to': '0xb9cb20947d73faa2f88fd7c2f379752406a94857', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:00:39.000Z'}}, {'blockNum': '0x94dfca', 'uniqueId': '0x193cb53490cb977589e0f7c9d7c21b010b780251f0dc506e02d6e2119e6de766:log:14', 'hash': '0x193cb53490cb977589e0f7c9d7c21b010b780251f0dc506e02d6e2119e6de766', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 424.203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x62c47818c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:18.000Z'}}, {'blockNum': '0x94dfca', 'uniqueId': '0x193cb53490cb977589e0f7c9d7c21b010b780251f0dc506e02d6e2119e6de766:log:16', 'hash': '0x193cb53490cb977589e0f7c9d7c21b010b780251f0dc506e02d6e2119e6de766', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 424.203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x62c47818c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:18.000Z'}}, {'blockNum': '0x94dfca', 'uniqueId': '0xf18fbe1c96ad2165b7683af691920604fdf8cdd54becf25fbe44b76b1e87bb2d:log:247', 'hash': '0xf18fbe1c96ad2165b7683af691920604fdf8cdd54becf25fbe44b76b1e87bb2d', 'from': '0xb9cb20947d73faa2f88fd7c2f379752406a94857', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:18.000Z'}}, {'blockNum': '0x94dfcc', 'uniqueId': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4:log:198', 'hash': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 346.030708359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5091099687', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:58.000Z'}}, {'blockNum': '0x94dfcc', 'uniqueId': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4:log:203', 'hash': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 346.030708359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5091099687', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:58.000Z'}}, {'blockNum': '0x94dfcc', 'uniqueId': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4:log:204', 'hash': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 346.058688309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5092b48735', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:58.000Z'}}, {'blockNum': '0x94dfe5', 'uniqueId': '0xe664cc8e717f1238fc8b22a6f3c98321c32e82659aeee8fb6b8340a07a053303:log:13', 'hash': '0xe664cc8e717f1238fc8b22a6f3c98321c32e82659aeee8fb6b8340a07a053303', 'from': '0x379d44c14123419dad055beaf79eda54989504d7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0246139ca800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:14.000Z'}}, {'blockNum': '0x94dfe5', 'uniqueId': '0xfba90f2fad61c09eeafe04560fc0a60f75552fe49cb359139f7efd198ba05f42:log:200', 'hash': '0xfba90f2fad61c09eeafe04560fc0a60f75552fe49cb359139f7efd198ba05f42', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:14.000Z'}}, {'blockNum': '0x94dfe5', 'uniqueId': '0xfba90f2fad61c09eeafe04560fc0a60f75552fe49cb359139f7efd198ba05f42:log:201', 'hash': '0xfba90f2fad61c09eeafe04560fc0a60f75552fe49cb359139f7efd198ba05f42', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:14.000Z'}}, {'blockNum': '0x94dfe6', 'uniqueId': '0x9e0e74e6232b8a78d6094b688d1a1d6619f07205c18421bc6907c1a94e28cb58:log:28', 'hash': '0x9e0e74e6232b8a78d6094b688d1a1d6619f07205c18421bc6907c1a94e28cb58', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:40.000Z'}}, {'blockNum': '0x94dfe7', 'uniqueId': '0x65636f42c487d71417d2125a9687ae3737bda23b6c38a65213e559c7d00afb7b:log:207', 'hash': '0x65636f42c487d71417d2125a9687ae3737bda23b6c38a65213e559c7d00afb7b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:43.000Z'}}, {'blockNum': '0x94dfe7', 'uniqueId': '0x65636f42c487d71417d2125a9687ae3737bda23b6c38a65213e559c7d00afb7b:log:208', 'hash': '0x65636f42c487d71417d2125a9687ae3737bda23b6c38a65213e559c7d00afb7b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:43.000Z'}}, {'blockNum': '0x94dff1', 'uniqueId': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5:log:101', 'hash': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 320.814142758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ab2035526', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:11:36.000Z'}}, {'blockNum': '0x94dff1', 'uniqueId': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5:log:103', 'hash': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 320.814142758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ab2035526', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:11:36.000Z'}}, {'blockNum': '0x94dff1', 'uniqueId': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5:log:108', 'hash': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 320.176654472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4a8c040888', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:11:36.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0xf2180f0313d07a668dd93ad2762e86d7290060196a8fd878c146de52da43158a:log:23', 'hash': '0xf2180f0313d07a668dd93ad2762e86d7290060196a8fd878c146de52da43158a', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0xf2180f0313d07a668dd93ad2762e86d7290060196a8fd878c146de52da43158a:log:24', 'hash': '0xf2180f0313d07a668dd93ad2762e86d7290060196a8fd878c146de52da43158a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0xfad7c365d03822ddfa0c0c700a8b2c82583f1c2f2bbacf9989aaaa066d72356b:log:31', 'hash': '0xfad7c365d03822ddfa0c0c700a8b2c82583f1c2f2bbacf9989aaaa066d72356b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0xfad7c365d03822ddfa0c0c700a8b2c82583f1c2f2bbacf9989aaaa066d72356b:log:32', 'hash': '0xfad7c365d03822ddfa0c0c700a8b2c82583f1c2f2bbacf9989aaaa066d72356b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0x5a3943178de4d31065e4b131023346638fa9b8a78cfcdb2d97f35c9433feb588:log:39', 'hash': '0x5a3943178de4d31065e4b131023346638fa9b8a78cfcdb2d97f35c9433feb588', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0x5a3943178de4d31065e4b131023346638fa9b8a78cfcdb2d97f35c9433feb588:log:40', 'hash': '0x5a3943178de4d31065e4b131023346638fa9b8a78cfcdb2d97f35c9433feb588', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94e004', 'uniqueId': '0x8b7fb019f7cf70417293892c73d98d87961c86aa246a819b0956572f7ddb4e3d:log:151', 'hash': '0x8b7fb019f7cf70417293892c73d98d87961c86aa246a819b0956572f7ddb4e3d', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:16:14.000Z'}}, {'blockNum': '0x94e004', 'uniqueId': '0x8b7fb019f7cf70417293892c73d98d87961c86aa246a819b0956572f7ddb4e3d:log:152', 'hash': '0x8b7fb019f7cf70417293892c73d98d87961c86aa246a819b0956572f7ddb4e3d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:16:14.000Z'}}, {'blockNum': '0x94e008', 'uniqueId': '0xa4238cfea91220f405a01fbaf94ee61d285b5e95ac44bf7e87e67ab2f8884638:log:33', 'hash': '0xa4238cfea91220f405a01fbaf94ee61d285b5e95ac44bf7e87e67ab2f8884638', 'from': '0x88eaaa81e689abb337bc2d1db7aa7a39d2af98cb', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:17:20.000Z'}}, {'blockNum': '0x94e008', 'uniqueId': '0xa4238cfea91220f405a01fbaf94ee61d285b5e95ac44bf7e87e67ab2f8884638:log:34', 'hash': '0xa4238cfea91220f405a01fbaf94ee61d285b5e95ac44bf7e87e67ab2f8884638', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:17:20.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:89', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 42.33997605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09dba8c372', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:102', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 25.411384609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05eaa2f521', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:107', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 25.411384609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05eaa2f521', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:108', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.598211607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x537e1e7817', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:110', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 358.598211607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x537e1e7817', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:115', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 426.349572266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x63446a30aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x162ac6006fa6a3279bae0bb2f3db3b6761b832e7e7e2fd866da94fa71298feaa:log:142', 'hash': '0x162ac6006fa6a3279bae0bb2f3db3b6761b832e7e7e2fd866da94fa71298feaa', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x162ac6006fa6a3279bae0bb2f3db3b6761b832e7e7e2fd866da94fa71298feaa:log:143', 'hash': '0x162ac6006fa6a3279bae0bb2f3db3b6761b832e7e7e2fd866da94fa71298feaa', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e012', 'uniqueId': '0xfb477eae2d6507f284ed8d59c0ce36ddbd9a167000742fc50e485b69392ada2a:log:0', 'hash': '0xfb477eae2d6507f284ed8d59c0ce36ddbd9a167000742fc50e485b69392ada2a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5446.78713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04f42dcfe290', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:20:23.000Z'}}, {'blockNum': '0x94e026', 'uniqueId': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7:log:78', 'hash': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 321.451310866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ad7fdbf12', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:25:24.000Z'}}, {'blockNum': '0x94e026', 'uniqueId': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7:log:80', 'hash': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 321.451310866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ad7fdbf12', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:25:24.000Z'}}, {'blockNum': '0x94e026', 'uniqueId': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7:log:85', 'hash': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 321.450989414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ad7f8d766', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:25:24.000Z'}}, {'blockNum': '0x94e028', 'uniqueId': '0x0a7c756fc6bfddbb946e9ea6f28613a3a16dc3dc85e9f8655b108a0181ff69c3:log:16', 'hash': '0x0a7c756fc6bfddbb946e9ea6f28613a3a16dc3dc85e9f8655b108a0181ff69c3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1b29b9e57f715f36383aaf74618781c2cac610c7', 'value': 769.608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb330362200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:26:10.000Z'}}, {'blockNum': '0x94e037', 'uniqueId': '0x7f5f9c481a39abd49b5a83c65602934270aa41e3ec3f06e96dfa54b6142604bb:log:0', 'hash': '0x7f5f9c481a39abd49b5a83c65602934270aa41e3ec3f06e96dfa54b6142604bb', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5446.78713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04f42dcfe290', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:29:08.000Z'}}, {'blockNum': '0x94e0b2', 'uniqueId': '0x1bf2e9a5afe826b1ef72443ebc80fd0bcfb18d54f65e72b69ce466a5be92a4ab:log:105', 'hash': '0x1bf2e9a5afe826b1ef72443ebc80fd0bcfb18d54f65e72b69ce466a5be92a4ab', 'from': '0x242331a4f5ef4d6c581d7e415cc6de12d09bc8b3', 'to': '0x4e55c9b8953ab1957ad0a59d413631a66798c6a2', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02cb417800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:55:25.000Z'}}, {'blockNum': '0x94e0cf', 'uniqueId': '0xe85da37a36c076eaa727102aee2ca3ae7ad5f0c36b740f2b9c0a3c70c74f24dc:log:26', 'hash': '0xe85da37a36c076eaa727102aee2ca3ae7ad5f0c36b740f2b9c0a3c70c74f24dc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x51b912e07894f9266ba08f150e73fd692cf40b81', 'value': 503.24474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x752bb955a0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:01:04.000Z'}}, {'blockNum': '0x94e0e0', 'uniqueId': '0x4727fbcded9dc62f9f32d4af9b457fb93328db8150a3317be5341678ed71dae7:log:31', 'hash': '0x4727fbcded9dc62f9f32d4af9b457fb93328db8150a3317be5341678ed71dae7', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 306.131729306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4746df7b9a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:04:58.000Z'}}, {'blockNum': '0x94e119', 'uniqueId': '0x15fb326ef1794b05584695861adfda147db7e018a9fc7c4a8f025b5038ee1eb6:log:56', 'hash': '0x15fb326ef1794b05584695861adfda147db7e018a9fc7c4a8f025b5038ee1eb6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8a31b86e8561c727cf36a660dd6869e4eaf18e4f', 'value': 9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0218711a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:17:10.000Z'}}, {'blockNum': '0x94e120', 'uniqueId': '0xfe52a0c2f51e2e560dc9164ca32e88a05e9e88118fb78acecb4eca0cd5649dd0:log:25', 'hash': '0xfe52a0c2f51e2e560dc9164ca32e88a05e9e88118fb78acecb4eca0cd5649dd0', 'from': '0x7871a803f0099a6215066778ef21d2e7be42e4c1', 'to': '0x4bb921c646a2d7ffeb9830586eae0e37d1e9704e', 'value': 207.884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3066da1b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:18:45.000Z'}}, {'blockNum': '0x94e151', 'uniqueId': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b:log:88', 'hash': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3db33b1a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:28:28.000Z'}}, {'blockNum': '0x94e151', 'uniqueId': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b:log:90', 'hash': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 116.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b25e6ce00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:28:28.000Z'}}, {'blockNum': '0x94e151', 'uniqueId': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b:log:93', 'hash': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 148.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x228d544c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:28:28.000Z'}}, {'blockNum': '0x94e151', 'uniqueId': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b:log:95', 'hash': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 148.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x228d544c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:28:28.000Z'}}, {'blockNum': '0x94e155', 'uniqueId': '0x94db820f6d98e736c6e6d7212333b143f7d14c1ff757c843a8b8e7c076f73b65:log:12', 'hash': '0x94db820f6d98e736c6e6d7212333b143f7d14c1ff757c843a8b8e7c076f73b65', 'from': '0x4bb921c646a2d7ffeb9830586eae0e37d1e9704e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 207.884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3066da1b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:29:20.000Z'}}, {'blockNum': '0x94e157', 'uniqueId': '0x5151ca7c1c46a9dcbb239ba7b24e1667ffc8e6fcbb7b85eda7caafede9155c86:log:78', 'hash': '0x5151ca7c1c46a9dcbb239ba7b24e1667ffc8e6fcbb7b85eda7caafede9155c86', 'from': '0x2eebd0e324dd36553e8d80d02e4d0ac88f20668e', 'to': '0x4ecc7e9ca50032177731640c6ce9ce7118306d61', 'value': 485.244826529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70fad873a1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:29:24.000Z'}}, {'blockNum': '0x94e162', 'uniqueId': '0x7bbb92e8f2ac1d62d9be45ef746373e3caa279f6fb83703521a78bb569eb705a:log:82', 'hash': '0x7bbb92e8f2ac1d62d9be45ef746373e3caa279f6fb83703521a78bb569eb705a', 'from': '0xed49854c0e40c3eb686af34a2760956d86945942', 'to': '0x493d8ccf45efcd6d73fe495982b5f35259183582', 'value': 297.56046642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4547fc63f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:30:56.000Z'}}, {'blockNum': '0x94e165', 'uniqueId': '0x903ef4ff67b94a2b1ee860247dbc50cc0a6b025b9c9b3fac0098ccad1cb30b51:log:8', 'hash': '0x903ef4ff67b94a2b1ee860247dbc50cc0a6b025b9c9b3fac0098ccad1cb30b51', 'from': '0x493d8ccf45efcd6d73fe495982b5f35259183582', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 297.56046642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4547fc63f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:31:56.000Z'}}, {'blockNum': '0x94e17d', 'uniqueId': '0x10ddf036052c127570e937f9d6a6261afb9873a57e795691e61c4d1d6985bdbd:log:65', 'hash': '0x10ddf036052c127570e937f9d6a6261afb9873a57e795691e61c4d1d6985bdbd', 'from': '0x4ecc7e9ca50032177731640c6ce9ce7118306d61', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 485.244826529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70fad873a1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:35:19.000Z'}}, {'blockNum': '0x94e182', 'uniqueId': '0xd41c358e70bd4689de3e07cf83b9cf7ff224db689f4ebd06b313f9763dcd13c6:log:35', 'hash': '0xd41c358e70bd4689de3e07cf83b9cf7ff224db689f4ebd06b313f9763dcd13c6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x505d081d3d71d8d90872e147f916788133819498', 'value': 823.4686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xbfba8daac0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:37:44.000Z'}}, {'blockNum': '0x94e187', 'uniqueId': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611:log:35', 'hash': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 171.100876137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x27d6682d69', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:38:58.000Z'}}, {'blockNum': '0x94e187', 'uniqueId': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611:log:37', 'hash': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 171.100876137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x27d6682d69', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:38:58.000Z'}}, {'blockNum': '0x94e187', 'uniqueId': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611:log:41', 'hash': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 171.100876137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x27d6682d69', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:38:58.000Z'}}, {'blockNum': '0x94e189', 'uniqueId': '0xd6877452d6926e1b1ead8b4a9e6c7c9186d1ad6a0ba03ae0bfeb620a8f3205b2:log:44', 'hash': '0xd6877452d6926e1b1ead8b4a9e6c7c9186d1ad6a0ba03ae0bfeb620a8f3205b2', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 297.56046642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4547fc63f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:39:04.000Z'}}, {'blockNum': '0x94e191', 'uniqueId': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0:log:31', 'hash': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 214.72565265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31fea570aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:41:25.000Z'}}, {'blockNum': '0x94e191', 'uniqueId': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0:log:33', 'hash': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 214.72565265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31fea570aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:41:25.000Z'}}, {'blockNum': '0x94e191', 'uniqueId': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0:log:39', 'hash': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 214.72565265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31fea570aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:41:25.000Z'}}, {'blockNum': '0x94e1a6', 'uniqueId': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913:log:113', 'hash': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 185.079155641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1793cbb9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:47:03.000Z'}}, {'blockNum': '0x94e1a6', 'uniqueId': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913:log:115', 'hash': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 185.079155641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1793cbb9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:47:03.000Z'}}, {'blockNum': '0x94e1a6', 'uniqueId': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913:log:120', 'hash': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 185.078970561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1790f8c1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:47:03.000Z'}}, {'blockNum': '0x94e1a6', 'uniqueId': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913:log:122', 'hash': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 185.078970561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1790f8c1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:47:03.000Z'}}, {'blockNum': '0x94e1b7', 'uniqueId': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59:log:227', 'hash': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 171.950433616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x28090b6550', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:52:30.000Z'}}, {'blockNum': '0x94e1b7', 'uniqueId': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59:log:229', 'hash': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 171.950433616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x28090b6550', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:52:30.000Z'}}, {'blockNum': '0x94e1b7', 'uniqueId': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59:log:233', 'hash': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 171.950433616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x28090b6550', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:52:30.000Z'}}, {'blockNum': '0x94e21e', 'uniqueId': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549:log:62', 'hash': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 323.999983301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b6fe766c5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:13:50.000Z'}}, {'blockNum': '0x94e21e', 'uniqueId': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549:log:64', 'hash': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 323.999983301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b6fe766c5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:13:50.000Z'}}, {'blockNum': '0x94e21e', 'uniqueId': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549:log:68', 'hash': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 323.999983301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b6fe766c5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:13:50.000Z'}}, {'blockNum': '0x94e255', 'uniqueId': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1:log:127', 'hash': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 173.479637077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2864313055', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:24:22.000Z'}}, {'blockNum': '0x94e255', 'uniqueId': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1:log:129', 'hash': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 173.479637077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2864313055', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:24:22.000Z'}}, {'blockNum': '0x94e255', 'uniqueId': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1:log:133', 'hash': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 173.479637077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2864313055', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:24:22.000Z'}}, {'blockNum': '0x94e25f', 'uniqueId': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80:log:36', 'hash': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 217.061935715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3289e64a63', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:26:20.000Z'}}, {'blockNum': '0x94e25f', 'uniqueId': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80:log:38', 'hash': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 217.061935715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3289e64a63', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:26:20.000Z'}}, {'blockNum': '0x94e25f', 'uniqueId': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80:log:44', 'hash': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 217.061935715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3289e64a63', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:26:20.000Z'}}, {'blockNum': '0x94e25f', 'uniqueId': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80:log:46', 'hash': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 217.061935715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3289e64a63', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:26:20.000Z'}}, {'blockNum': '0x94e278', 'uniqueId': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93:log:66', 'hash': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 173.649548572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x286e51d51c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:31:43.000Z'}}, {'blockNum': '0x94e278', 'uniqueId': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93:log:68', 'hash': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 173.649548572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x286e51d51c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:31:43.000Z'}}, {'blockNum': '0x94e278', 'uniqueId': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93:log:72', 'hash': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 173.649548572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x286e51d51c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:31:43.000Z'}}, {'blockNum': '0x94e2c2', 'uniqueId': '0xf87458595914582a0cf12653006dd9c45b0a58fe8685167831ee4c69e336a73f:log:92', 'hash': '0xf87458595914582a0cf12653006dd9c45b0a58fe8685167831ee4c69e336a73f', 'from': '0x91ebfee4f90adb3c64d5f171cd8d1efece9cfad8', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 11.823529411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02c0bcbdc3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:45:42.000Z'}}]}}
Number of returned transfers:  899
Answer is complete
 
symbol             GRS
group              BPF
date        2020-04-02
hour             16:00
exchange       binance
Name: 819, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: GRS, Contract: 
Datetime timestamps:  2020-04-02 16:00:00 2020-04-02 04:00:00 2020-04-03 04:00:00
Unix timestamps:  1585792800.0 1585879200.0
Hex Block Numbers:  0x9560fc 0x957a48
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GVT
group              BPF
date        2020-04-04
hour             15:59
exchange       binance
Name: 820, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-04-04 15:59:00 2020-04-04 03:59:00 2020-04-05 03:59:00
Unix timestamps:  1585965540.0 1586051940.0
Hex Block Numbers:  0x9593d5 0x95ad3b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ARN
group              BPF
date        2020-04-07
hour             18:00
exchange       binance
Name: 821, dtype: object
HERE
 Symbol: ARN, Contract: 
Datetime timestamps:  2020-04-07 18:00:00 2020-04-07 06:00:00 2020-04-08 06:00:00
Unix timestamps:  1586232000.0 1586318400.0
Hex Block Numbers:  0x95e1e0 0x95fb66
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ELF
group              BPF
date        2020-04-10
hour             15:58
exchange       binance
Name: 822, dtype: object
HERE
 Symbol: ELF, Contract: 0xbf2179859fc6d5bee9bf9158632dc51678a4100e
Datetime timestamps:  2020-04-10 15:58:00 2020-04-10 03:58:00 2020-04-11 03:58:00
Unix timestamps:  1586483880.0 1586570280.0
Hex Block Numbers:  0x962c22 0x964547
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x962c57', 'uniqueId': '0x3119e929dc01f10f3e98fa6ce85db263a01309a49cee15877c0c8386d9574586:log:40', 'hash': '0x3119e929dc01f10f3e98fa6ce85db263a01309a49cee15877c0c8386d9574586', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 7042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017dbf61b9e28cc80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T02:07:59.000Z'}}, {'blockNum': '0x962c7a', 'uniqueId': '0x826cc28d1ad13a5ff20808e9b9b308e25848f30d9fcc432441ce9a1d660886c3:log:3', 'hash': '0x826cc28d1ad13a5ff20808e9b9b308e25848f30d9fcc432441ce9a1d660886c3', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 7042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017dbf61b9e28cc80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T02:13:32.000Z'}}, {'blockNum': '0x962cfe', 'uniqueId': '0x189e5c0b9bcab23ba02960f4f83846201a71bd6ac3ce8d3e7f769a9b934d6893:log:38', 'hash': '0x189e5c0b9bcab23ba02960f4f83846201a71bd6ac3ce8d3e7f769a9b934d6893', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x0009131cc00f5ec45b60f368f5a4caf442b1fee3', 'value': 81116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x112d4ea2c50349f00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T02:39:22.000Z'}}, {'blockNum': '0x962d10', 'uniqueId': '0xeafc981cdd3c0d2a52e51649efa23bc00477619bcfa4c67d0a20067b262b4b21:log:1', 'hash': '0xeafc981cdd3c0d2a52e51649efa23bc00477619bcfa4c67d0a20067b262b4b21', 'from': '0x0009131cc00f5ec45b60f368f5a4caf442b1fee3', 'to': '0xc1da8f69e4881efe341600620268934ef01a3e63', 'value': 81116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x112d4ea2c50349f00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T02:44:52.000Z'}}, {'blockNum': '0x962e28', 'uniqueId': '0x54f0c47a6d61a3b5fe14761546156442a0dff6ac776b21430f8e4ef2831d7a46:log:26', 'hash': '0x54f0c47a6d61a3b5fe14761546156442a0dff6ac776b21430f8e4ef2831d7a46', 'from': '0x82ea4ef1a2f1a55560726d5b2140252d80399e68', 'to': '0xbf79e9e31b530441dc3c9daeb985a0f2f64392b1', 'value': 712.5485238700002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x26a098e337444e0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T03:48:32.000Z'}}, {'blockNum': '0x962e29', 'uniqueId': '0x1cbba9fd87f11da74c12d8534a7af979bb3a75137b8217469e9f97f86edcf6d2:log:12', 'hash': '0x1cbba9fd87f11da74c12d8534a7af979bb3a75137b8217469e9f97f86edcf6d2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbc30fbd012fe308e620ca508fdae04dbc0f72d08', 'value': 1497.307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x512b4f0f6d71cf8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T03:49:09.000Z'}}, {'blockNum': '0x962e42', 'uniqueId': '0x7027d4c7c0f855c4f1fa7a901c5327b25134991160419bb4237bf6d4c1fa3990:log:15', 'hash': '0x7027d4c7c0f855c4f1fa7a901c5327b25134991160419bb4237bf6d4c1fa3990', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 4691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xfe4cb3de044d6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T03:53:51.000Z'}}, {'blockNum': '0x962e4e', 'uniqueId': '0xedec2a84cdf2212cb0f8e3692fd4a8afae273da5adbb5549b4f2f82b7ef4033f:log:5', 'hash': '0xedec2a84cdf2212cb0f8e3692fd4a8afae273da5adbb5549b4f2f82b7ef4033f', 'from': '0x7fa8335128d6941aa79deb197fb768bbf1033895', 'to': '0x6aeb1f80da6843b4681ce3ddb593599abaa76440', 'value': 0.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T03:57:44.000Z'}}, {'blockNum': '0x962e66', 'uniqueId': '0x02728b8282fc9f7ffc40b307b7e5e38529d24dd3474c2a825fcc2609bf092838:log:180', 'hash': '0x02728b8282fc9f7ffc40b307b7e5e38529d24dd3474c2a825fcc2609bf092838', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 4691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xfe4cb3de044d6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:02:42.000Z'}}, {'blockNum': '0x962e6d', 'uniqueId': '0x0a3b7434d72a5ead938741d0764bf6f30b3e4d912371c21d8fa18a8af1d8eba7:log:175', 'hash': '0x0a3b7434d72a5ead938741d0764bf6f30b3e4d912371c21d8fa18a8af1d8eba7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 15507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0348a2db04648e6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:05:49.000Z'}}, {'blockNum': '0x962e6f', 'uniqueId': '0xc41cffd6f1b2d641c789c9939f3aee7a98852e7e2d0d967db081858584f75ff6:log:159', 'hash': '0xc41cffd6f1b2d641c789c9939f3aee7a98852e7e2d0d967db081858584f75ff6', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:05:59.000Z'}}, {'blockNum': '0x962e8e', 'uniqueId': '0xe9cd4af59dcacb1b777b7fa69235cca8a8ff43493c97ae604e25608378a25cd4:log:25', 'hash': '0xe9cd4af59dcacb1b777b7fa69235cca8a8ff43493c97ae604e25608378a25cd4', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0348a2db04648e6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:12:05.000Z'}}, {'blockNum': '0x962ea0', 'uniqueId': '0xc0248bbe28892042e915948f69df1876ac8ec0b00739554c382000ff12a8d0bd:log:11', 'hash': '0xc0248bbe28892042e915948f69df1876ac8ec0b00739554c382000ff12a8d0bd', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 17955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03cd57ae1a553aac0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:15:58.000Z'}}, {'blockNum': '0x962eaa', 'uniqueId': '0x2472d7fdb0037661f999547ef748688f5dbb5844e625c0ea00759af9c5dda2db:log:4', 'hash': '0x2472d7fdb0037661f999547ef748688f5dbb5844e625c0ea00759af9c5dda2db', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 13119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02c72eb2c08f1d9c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:18:28.000Z'}}, {'blockNum': '0x962eaa', 'uniqueId': '0xd9d673e7484af24f495ca2961651faa2844c107a1475cf57453d06a907a89f84:log:8', 'hash': '0xd9d673e7484af24f495ca2961651faa2844c107a1475cf57453d06a907a89f84', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 13728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02e8324561f052800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:18:28.000Z'}}, {'blockNum': '0x962ec6', 'uniqueId': '0x3e9617da068d6755991b0f349321dfa2f37070b0cc8e8a8b61db377c47416336:log:15', 'hash': '0x3e9617da068d6755991b0f349321dfa2f37070b0cc8e8a8b61db377c47416336', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb0da6794da4e6f7244b96256adb8973d07428a20', 'value': 12460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a3753c701737300000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:25:47.000Z'}}, {'blockNum': '0x962eea', 'uniqueId': '0xd694c719787b933f1a396f828563f7151e330604e810b9384b2ca7e566182ee3:log:17', 'hash': '0xd694c719787b933f1a396f828563f7151e330604e810b9384b2ca7e566182ee3', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02c72eb2c08f1d9c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:32:12.000Z'}}, {'blockNum': '0x962eea', 'uniqueId': '0x450b9bb8c9c784a015bfbe5b237e503a2fc134ba38d66589299999081d6ce53d:log:21', 'hash': '0x450b9bb8c9c784a015bfbe5b237e503a2fc134ba38d66589299999081d6ce53d', 'from': '0x0289ef6aaefb5e7456788c7da65c056f0b4856f7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:32:12.000Z'}}, {'blockNum': '0x962eea', 'uniqueId': '0x822baeea98a7d7dd43728f7a39400f0f0ebe94b3c7976fd24290700f90b2d2ca:log:43', 'hash': '0x822baeea98a7d7dd43728f7a39400f0f0ebe94b3c7976fd24290700f90b2d2ca', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02e8324561f052800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:32:12.000Z'}}, {'blockNum': '0x962efe', 'uniqueId': '0xa2cc1da61319a1f46c4386ac04dcde1e35c755da041a05dba0b6284ea537e04b:log:155', 'hash': '0xa2cc1da61319a1f46c4386ac04dcde1e35c755da041a05dba0b6284ea537e04b', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 11505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x026faff2dfe5c5240000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:36:23.000Z'}}, {'blockNum': '0x962f02', 'uniqueId': '0xc6d87634aa4331bf0b65c54e7c6d0cb41ae0e0ffeccca64e7238839952cda7df:log:30', 'hash': '0xc6d87634aa4331bf0b65c54e7c6d0cb41ae0e0ffeccca64e7238839952cda7df', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 7228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0187d4a6786a2b700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:37:45.000Z'}}, {'blockNum': '0x962f12', 'uniqueId': '0xdc42942346bed7fa78ee262f0b23ff58a01ef726176218a6dbd532265d83d6d5:log:37', 'hash': '0xdc42942346bed7fa78ee262f0b23ff58a01ef726176218a6dbd532265d83d6d5', 'from': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x026faff2dfe5c5240000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T04:42:04.000Z'}}, {'blockNum': '0x962f7a', 'uniqueId': '0xf6c26ec849733ceeef4c9047960f65bb967f794a6a9343ba470d5e210297142b:log:25', 'hash': '0xf6c26ec849733ceeef4c9047960f65bb967f794a6a9343ba470d5e210297142b', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x057b0071749184f7ef17ebdce2d642d1d8e8833c', 'value': 5992.2672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0144d769a601f89c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:04:14.000Z'}}, {'blockNum': '0x962f7c', 'uniqueId': '0x99c03655e5ba67ce19bb7c2a14c0ca76988968e57c22b37b9f97b16d884d018c:log:9', 'hash': '0x99c03655e5ba67ce19bb7c2a14c0ca76988968e57c22b37b9f97b16d884d018c', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2621.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8e15f59b3daa560000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:04:44.000Z'}}, {'blockNum': '0x962f7d', 'uniqueId': '0x50a08a86fef778f856c2200de1253884a9cac04c2bdfe2acd54d20418d501719:log:58', 'hash': '0x50a08a86fef778f856c2200de1253884a9cac04c2bdfe2acd54d20418d501719', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2621.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8e15f59b3daa560000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:05:04.000Z'}}, {'blockNum': '0x962f7d', 'uniqueId': '0x50a08a86fef778f856c2200de1253884a9cac04c2bdfe2acd54d20418d501719:log:60', 'hash': '0x50a08a86fef778f856c2200de1253884a9cac04c2bdfe2acd54d20418d501719', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 2621.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8e15f59b3daa560000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:05:04.000Z'}}, {'blockNum': '0x962f80', 'uniqueId': '0x409d17996b7cbd87fc6633073a79c34b967cddd70b5a9f5dda2d943f7bc8a345:log:14', 'hash': '0x409d17996b7cbd87fc6633073a79c34b967cddd70b5a9f5dda2d943f7bc8a345', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 4587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xf8a969a5084ccc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:05:45.000Z'}}, {'blockNum': '0x962f8d', 'uniqueId': '0xa10144f78a051108f8b89a0beb561ff37c4fb9420f197fefb32047f868f0491f:log:1', 'hash': '0xa10144f78a051108f8b89a0beb561ff37c4fb9420f197fefb32047f868f0491f', 'from': '0x057b0071749184f7ef17ebdce2d642d1d8e8833c', 'to': '0xc1da8f69e4881efe341600620268934ef01a3e63', 'value': 5992.2672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0144d769a601f89c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:09:59.000Z'}}, {'blockNum': '0x962f92', 'uniqueId': '0xae9f8c74f80745934bfaf17a14777e0a55ab689178c0401c865cee6bf1d61951:log:1', 'hash': '0xae9f8c74f80745934bfaf17a14777e0a55ab689178c0401c865cee6bf1d61951', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb0da6794da4e6f7244b96256adb8973d07428a20', 'value': 19014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0406c041e382ad580000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:10:48.000Z'}}, {'blockNum': '0x962fe2', 'uniqueId': '0xb9ff38039679963a66810cfe5996efdf79292b2215e9509bec0ae381da9663d0:log:13', 'hash': '0xb9ff38039679963a66810cfe5996efdf79292b2215e9509bec0ae381da9663d0', 'from': '0xc89722f4afcf759c4f81765b61674006e475e978', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 800000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xa968163f0a57b4000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:26:18.000Z'}}, {'blockNum': '0x962feb', 'uniqueId': '0x343a063a406eee8836fe72fceaf3d9b6e8f50f11a4d9e77960d98f285d41255c:log:152', 'hash': '0x343a063a406eee8836fe72fceaf3d9b6e8f50f11a4d9e77960d98f285d41255c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5ef9d31556dd8430d1943f8dda11401977c42abf', 'value': 6001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0145509ac956df240000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:28:46.000Z'}}, {'blockNum': '0x963014', 'uniqueId': '0x90225466d78a80a5353eb578b5c0824dd3bcd14d5fca5c8b289c5aaf4b3e37a4:log:2', 'hash': '0x90225466d78a80a5353eb578b5c0824dd3bcd14d5fca5c8b289c5aaf4b3e37a4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 13154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02c9146bbb1f00480000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:40:03.000Z'}}, {'blockNum': '0x963015', 'uniqueId': '0xa4b8e98b60b07881689c3d229ef097aa0d5ef380f3b49eef56882943a3717682:log:126', 'hash': '0xa4b8e98b60b07881689c3d229ef097aa0d5ef380f3b49eef56882943a3717682', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1976.1964287588453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x6b213c159e66853b64', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:40:07.000Z'}}, {'blockNum': '0x963015', 'uniqueId': '0xa4b8e98b60b07881689c3d229ef097aa0d5ef380f3b49eef56882943a3717682:log:128', 'hash': '0xa4b8e98b60b07881689c3d229ef097aa0d5ef380f3b49eef56882943a3717682', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'value': 1976.1964287588453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x6b213c159e66853b64', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:40:07.000Z'}}, {'blockNum': '0x963015', 'uniqueId': '0xa4b8e98b60b07881689c3d229ef097aa0d5ef380f3b49eef56882943a3717682:log:134', 'hash': '0xa4b8e98b60b07881689c3d229ef097aa0d5ef380f3b49eef56882943a3717682', 'from': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1976.1964287588453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x6b213c159e66853b64', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:40:07.000Z'}}, {'blockNum': '0x963015', 'uniqueId': '0xa4b8e98b60b07881689c3d229ef097aa0d5ef380f3b49eef56882943a3717682:log:136', 'hash': '0xa4b8e98b60b07881689c3d229ef097aa0d5ef380f3b49eef56882943a3717682', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 1976.1964287588453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x6b213c159e66853b64', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:40:07.000Z'}}, {'blockNum': '0x963022', 'uniqueId': '0x9aa60e1cf5d634691c54e540d145fe2a3243c186b4eb0156c9d40a8932119cba:log:37', 'hash': '0x9aa60e1cf5d634691c54e540d145fe2a3243c186b4eb0156c9d40a8932119cba', 'from': '0xb0da6794da4e6f7244b96256adb8973d07428a20', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 31474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06aa357e5399e4880000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:44:08.000Z'}}, {'blockNum': '0x963022', 'uniqueId': '0x9395195ad7fee45b7f76e819b66f3f260c7566188537f2cda006f66ae8120b23:log:38', 'hash': '0x9395195ad7fee45b7f76e819b66f3f260c7566188537f2cda006f66ae8120b23', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 7228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0187d4a6786a2b700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:44:08.000Z'}}, {'blockNum': '0x963022', 'uniqueId': '0xc02b0086b93e232b1943351b8a1699430f6825ec67970988836fec65d498e357:log:39', 'hash': '0xc02b0086b93e232b1943351b8a1699430f6825ec67970988836fec65d498e357', 'from': '0x5ef9d31556dd8430d1943f8dda11401977c42abf', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 6001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0145509ac956df240000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:44:08.000Z'}}, {'blockNum': '0x963059', 'uniqueId': '0x1ed207cfaf0f9de5714de32e048039e879beb5bb293f95b6712aee8cce257d5b:log:33', 'hash': '0x1ed207cfaf0f9de5714de32e048039e879beb5bb293f95b6712aee8cce257d5b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 66680.712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e1ec4c5a2724ef40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T05:57:42.000Z'}}, {'blockNum': '0x963066', 'uniqueId': '0x16b623aa67febaad68d608c9d568c9de48fc4b1e83227d2d22373bbe241ac68d:log:1', 'hash': '0x16b623aa67febaad68d608c9d568c9de48fc4b1e83227d2d22373bbe241ac68d', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0xc1da8f69e4881efe341600620268934ef01a3e63', 'value': 66680.712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e1ec4c5a2724ef40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T06:00:58.000Z'}}, {'blockNum': '0x963072', 'uniqueId': '0xfe7cbab46e2e2df00d5dbf6ee3373e6f4e28cdbb0f2746952e5725d7cd586cb1:log:88', 'hash': '0xfe7cbab46e2e2df00d5dbf6ee3373e6f4e28cdbb0f2746952e5725d7cd586cb1', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xc89722f4afcf759c4f81765b61674006e475e978', 'value': 484267.98604895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x668c385a3dc42fb19c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T06:03:43.000Z'}}, {'blockNum': '0x963092', 'uniqueId': '0x56af41866c0a03d0a5bdf30811c5f6e540392fbc428bc9d56848c2a8945c498c:log:50', 'hash': '0x56af41866c0a03d0a5bdf30811c5f6e540392fbc428bc9d56848c2a8945c498c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 55596.224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0bc5e0997e94b6e00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T06:12:45.000Z'}}, {'blockNum': '0x963097', 'uniqueId': '0xd0a2f60ce9f125a0bfa95bffad588819b23023298ccbac4e0b97123d532a7a55:log:7', 'hash': '0xd0a2f60ce9f125a0bfa95bffad588819b23023298ccbac4e0b97123d532a7a55', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T06:13:59.000Z'}}, {'blockNum': '0x9630e7', 'uniqueId': '0x2496a614774c84d4b4d1520a4d161681e6031b568bf6349a72471c434d21167b:log:2', 'hash': '0x2496a614774c84d4b4d1520a4d161681e6031b568bf6349a72471c434d21167b', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 6886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01754a7264688bd80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T06:31:03.000Z'}}, {'blockNum': '0x963114', 'uniqueId': '0xd4f5bb5c4490017b9b790c721f2a8d25a0ee898a9c54ea09286b86241e92b189:log:10', 'hash': '0xd4f5bb5c4490017b9b790c721f2a8d25a0ee898a9c54ea09286b86241e92b189', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 22265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04b6fcf20ef968440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T06:40:05.000Z'}}, {'blockNum': '0x96313c', 'uniqueId': '0xcb37fd18fa0adbd97ee871786e1c6cdc1a59b3ea8b799ddceee8c64728ac80f3:log:20', 'hash': '0xcb37fd18fa0adbd97ee871786e1c6cdc1a59b3ea8b799ddceee8c64728ac80f3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb0da6794da4e6f7244b96256adb8973d07428a20', 'value': 10009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x021e96c7360b94c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T06:48:41.000Z'}}, {'blockNum': '0x963141', 'uniqueId': '0x54a7e1256edf04fbfefbaf71917a38650e58eb9b302fcf019c28f6eed98d75b0:log:25', 'hash': '0x54a7e1256edf04fbfefbaf71917a38650e58eb9b302fcf019c28f6eed98d75b0', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x5ef9d31556dd8430d1943f8dda11401977c42abf', 'value': 13872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02f000ac26fe7ac00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T06:49:47.000Z'}}, {'blockNum': '0x963153', 'uniqueId': '0xfd4436ac0e76d36f221db54bb7b6c7b9d635423fec4a42002ab1fc3c7bf3cc94:log:10', 'hash': '0xfd4436ac0e76d36f221db54bb7b6c7b9d635423fec4a42002ab1fc3c7bf3cc94', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 22265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04b6fcf20ef968440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T06:55:01.000Z'}}, {'blockNum': '0x96319b', 'uniqueId': '0xf5bc21eef28787aa2460abda2138517638d4990f6d156301fd91712de0e88e3f:log:2', 'hash': '0xf5bc21eef28787aa2460abda2138517638d4990f6d156301fd91712de0e88e3f', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x3e209053f0a5a82e82f79950b5ed14ec63741d74', 'value': 92173.266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1384b906f01b56550000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T07:12:52.000Z'}}, {'blockNum': '0x9631bb', 'uniqueId': '0x4558673860f316aad67a89ba3ab8b237adf39a5c9c147d1c337e94fbd75be5dd:log:0', 'hash': '0x4558673860f316aad67a89ba3ab8b237adf39a5c9c147d1c337e94fbd75be5dd', 'from': '0x3154f72f0a0b9023f1c18505c2b73f9cd1990cae', 'to': '0x00045fac42175ec36663b505e2d6c4b483bf75a9', 'value': 0.1234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01b667a56d488000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T07:18:18.000Z'}}, {'blockNum': '0x9631d6', 'uniqueId': '0x1b17c9afc190061e61e230477e4f741819e4dff51b11701c01b376c665189a33:log:122', 'hash': '0x1b17c9afc190061e61e230477e4f741819e4dff51b11701c01b376c665189a33', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 78.35580392627485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x043f67bc862bc512cc', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T07:25:20.000Z'}}, {'blockNum': '0x9631d6', 'uniqueId': '0x1b17c9afc190061e61e230477e4f741819e4dff51b11701c01b376c665189a33:log:124', 'hash': '0x1b17c9afc190061e61e230477e4f741819e4dff51b11701c01b376c665189a33', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1e7420a37182424817c3ebd04159b3cf64132d12', 'value': 78.35580392627485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x043f67bc862bc512cc', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T07:25:20.000Z'}}, {'blockNum': '0x9631e5', 'uniqueId': '0xc5cacdab3ec263d923b04b22f0d0ca9f575782f6df193d988778d58bed00fc35:log:24', 'hash': '0xc5cacdab3ec263d923b04b22f0d0ca9f575782f6df193d988778d58bed00fc35', 'from': '0x1e7420a37182424817c3ebd04159b3cf64132d12', 'to': '0xd5462a7a8712ae3353fd89b32ab8c2258a348538', 'value': 78.35580392627485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x043f67bc862bc512cc', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T07:28:06.000Z'}}, {'blockNum': '0x96329e', 'uniqueId': '0xec24bcf62c45cdebdc0b249e4d9d549504f5d6fd4019e6a54e5f9f393582c096:log:29', 'hash': '0xec24bcf62c45cdebdc0b249e4d9d549504f5d6fd4019e6a54e5f9f393582c096', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 11351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x026756c4f7d312fc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:05:44.000Z'}}, {'blockNum': '0x9632a2', 'uniqueId': '0xd1c459591d4b09e777ad690c4e49cfac9abd7104f8e50829c6c93847d32824a5:log:9', 'hash': '0xd1c459591d4b09e777ad690c4e49cfac9abd7104f8e50829c6c93847d32824a5', 'from': '0x3e209053f0a5a82e82f79950b5ed14ec63741d74', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 92173.266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1384b906f01b56550000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:06:28.000Z'}}, {'blockNum': '0x9632a3', 'uniqueId': '0xad0f6cb35937c156c912a377c0a3abf543bf53e16cb6e2f3fae3d3028e39b86b:log:7', 'hash': '0xad0f6cb35937c156c912a377c0a3abf543bf53e16cb6e2f3fae3d3028e39b86b', 'from': '0xb0da6794da4e6f7244b96256adb8973d07428a20', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x021e96c7360b94c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:06:39.000Z'}}, {'blockNum': '0x9632a3', 'uniqueId': '0x197c441b3436eb7f560548df89a5dc9abf7112bbe24cf86a404762d6fc939446:log:8', 'hash': '0x197c441b3436eb7f560548df89a5dc9abf7112bbe24cf86a404762d6fc939446', 'from': '0x5ef9d31556dd8430d1943f8dda11401977c42abf', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 13872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02f000ac26fe7ac00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:06:39.000Z'}}, {'blockNum': '0x9632bd', 'uniqueId': '0x0c3a8f9456a238e23959fa6f0fc1551a8135854686fd5543dce614465174a8ae:log:85', 'hash': '0x0c3a8f9456a238e23959fa6f0fc1551a8135854686fd5543dce614465174a8ae', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x026756c4f7d312fc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:12:08.000Z'}}, {'blockNum': '0x9632cc', 'uniqueId': '0x5524e8f74fe30f4ed55319c98244240435e545effecde62ddd55cc317facb4b0:log:6', 'hash': '0x5524e8f74fe30f4ed55319c98244240435e545effecde62ddd55cc317facb4b0', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 19425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x041d080735f06ae40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:15:36.000Z'}}, {'blockNum': '0x9632d0', 'uniqueId': '0xfd8c02677f1d25a2f2b1c1bb56da4e63e25771f2f341ca6ec99c0292d2f15715:log:65', 'hash': '0xfd8c02677f1d25a2f2b1c1bb56da4e63e25771f2f341ca6ec99c0292d2f15715', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x1717373356e1b76af9ab4d6f31390581c23f28dd', 'value': 11357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0267aa094008ff540000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:16:42.000Z'}}, {'blockNum': '0x9632da', 'uniqueId': '0xb7c446586d2ec10e9854387a189d955ea260528ed9a32f4192675a1548d73621:log:0', 'hash': '0xb7c446586d2ec10e9854387a189d955ea260528ed9a32f4192675a1548d73621', 'from': '0x1717373356e1b76af9ab4d6f31390581c23f28dd', 'to': '0xc1da8f69e4881efe341600620268934ef01a3e63', 'value': 11357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0267aa094008ff540000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:20:00.000Z'}}, {'blockNum': '0x96337b', 'uniqueId': '0xd350991895d0aeec43ecdfdcffa755b1109c82dcbf1bc41a5f252c5e409e54ad:log:12', 'hash': '0xd350991895d0aeec43ecdfdcffa755b1109c82dcbf1bc41a5f252c5e409e54ad', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 7042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017dbf61b9e28cc80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:53:50.000Z'}}, {'blockNum': '0x963380', 'uniqueId': '0x6f4e93a3a9c60a911b1323ed9948397365c20bd5ea6531f608600fe693c41676:log:8', 'hash': '0x6f4e93a3a9c60a911b1323ed9948397365c20bd5ea6531f608600fe693c41676', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 7042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017dbf61b9e28cc80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T08:54:17.000Z'}}, {'blockNum': '0x96342d', 'uniqueId': '0xc885fd6ac0f03b0dc4ac2ec18918259d8ad7dda2cd01173b6b4ba308ceba266e:log:5', 'hash': '0xc885fd6ac0f03b0dc4ac2ec18918259d8ad7dda2cd01173b6b4ba308ceba266e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xe8450ff7a64704ebb9083846a171fdec395b5369', 'value': 2639.9962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8f1d4e9c99c51a8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T09:36:52.000Z'}}, {'blockNum': '0x9634d2', 'uniqueId': '0xe4f0fc59c6231e3e289b3b8bb16ce06099c63b2e6a7d04280b1c03f5767d8bbd:log:28', 'hash': '0xe4f0fc59c6231e3e289b3b8bb16ce06099c63b2e6a7d04280b1c03f5767d8bbd', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x7b8d73c853da362d0aef58ca774c58c7adc9621e', 'value': 833105.4772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xb06abd08bb6835750000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T10:16:11.000Z'}}, {'blockNum': '0x9634fb', 'uniqueId': '0x2ed69772be53a65cec3876d0d29273f9ab30392681d1fd92c341de00d45d29f5:log:52', 'hash': '0x2ed69772be53a65cec3876d0d29273f9ab30392681d1fd92c341de00d45d29f5', 'from': '0xe8450ff7a64704ebb9083846a171fdec395b5369', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2639.9962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8f1d4e9c99c51a7fff', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T10:27:25.000Z'}}, {'blockNum': '0x96353f', 'uniqueId': '0x0246b6947b51faada51b8be428b976cb2ff8823eb31031aa63f802817f65c96c:log:11', 'hash': '0x0246b6947b51faada51b8be428b976cb2ff8823eb31031aa63f802817f65c96c', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x7180b6300954c7e7eb71048e4922a6d1525453a2', 'value': 42464.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x08fe0726273614dc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T10:44:13.000Z'}}, {'blockNum': '0x96358a', 'uniqueId': '0x6cf3bfa59bc4cae6b429b73dd136ebe121665944bdde39d0e2e7e8867a7fd7bf:log:20', 'hash': '0x6cf3bfa59bc4cae6b429b73dd136ebe121665944bdde39d0e2e7e8867a7fd7bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 11587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x027421ed6571632c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:01:53.000Z'}}, {'blockNum': '0x96358c', 'uniqueId': '0x85e84154a218e65eda4974877667185dea513aded09ff66d102fcd3381436ba8:log:46', 'hash': '0x85e84154a218e65eda4974877667185dea513aded09ff66d102fcd3381436ba8', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5307.744253350381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x011fbbbf9cc9b25f6de3', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:02:21.000Z'}}, {'blockNum': '0x9635d9', 'uniqueId': '0x4004b59b7fd141d47e56c226cc2868138109f7d1eb25a3f76ac09eec77e7a51c:log:8', 'hash': '0x4004b59b7fd141d47e56c226cc2868138109f7d1eb25a3f76ac09eec77e7a51c', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x3b9a273c24a9675e6f229aa1fe8e6f430bb7726a', 'value': 77646.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x107134a7af1e79060000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:17:58.000Z'}}, {'blockNum': '0x9635e9', 'uniqueId': '0x712e31c16501d4fa8032c474ac5b01684b2ce8cd06e49880be0b8fb50b0025ab:log:10', 'hash': '0x712e31c16501d4fa8032c474ac5b01684b2ce8cd06e49880be0b8fb50b0025ab', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x51a902316bd65de7b9507def5db17977a7b39d0d', 'value': 44887.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x09815b0fbae2a2ed0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:22:23.000Z'}}, {'blockNum': '0x9635e9', 'uniqueId': '0x35a2e110ffaf83ce7202edb65199bc4dbc7864fc30cb6d8274c7980bffab1de0:log:11', 'hash': '0x35a2e110ffaf83ce7202edb65199bc4dbc7864fc30cb6d8274c7980bffab1de0', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x93978aa0dd951626825c919fa82b1b7578908577', 'value': 20621.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x045de93dfeea3de60000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:22:23.000Z'}}, {'blockNum': '0x9635fd', 'uniqueId': '0xad3ef4f3ea693a007aeda5a918f867085aeded2eb00160c8b1be7024ccd1d182:log:36', 'hash': '0xad3ef4f3ea693a007aeda5a918f867085aeded2eb00160c8b1be7024ccd1d182', 'from': '0x3b9a273c24a9675e6f229aa1fe8e6f430bb7726a', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 77646.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x107134a7af1e79060000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:26:27.000Z'}}, {'blockNum': '0x96360d', 'uniqueId': '0xa84c89c7cdb92a355e907fdffaa60fe726170b8c278e4b245c8f1a0cd1224e73:log:15', 'hash': '0xa84c89c7cdb92a355e907fdffaa60fe726170b8c278e4b245c8f1a0cd1224e73', 'from': '0x51a902316bd65de7b9507def5db17977a7b39d0d', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 44887.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x09815b0fbae2a2ed0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:30:00.000Z'}}, {'blockNum': '0x96360e', 'uniqueId': '0xb1f0029d5314fca7166f1e72fb1471ad6191adac321405103d3001e143d1b585:log:72', 'hash': '0xb1f0029d5314fca7166f1e72fb1471ad6191adac321405103d3001e143d1b585', 'from': '0x93978aa0dd951626825c919fa82b1b7578908577', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 20621.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x045de93dfeea3de60000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:30:07.000Z'}}, {'blockNum': '0x963633', 'uniqueId': '0x7e5f2b33903913d17490cedda48c2f3b119f485e51488ee0b99ea76d0957f012:log:22', 'hash': '0x7e5f2b33903913d17490cedda48c2f3b119f485e51488ee0b99ea76d0957f012', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x9cd45709c07a47b68536b654666e0c3684ffa610', 'value': 19408.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x041c23998b25dff60000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:38:56.000Z'}}, {'blockNum': '0x963637', 'uniqueId': '0x9260d611676f6d82f0d212153d9e94dc3e6a4ae703003ca93f136be68616dd09:log:5', 'hash': '0x9260d611676f6d82f0d212153d9e94dc3e6a4ae703003ca93f136be68616dd09', 'from': '0x7180b6300954c7e7eb71048e4922a6d1525453a2', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 42464.92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x08fe0726273614dc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:39:25.000Z'}}, {'blockNum': '0x963639', 'uniqueId': '0xbb797f2425da1d88010a1414365be7a1e187924c21e41a7cbf20c4946832a270:log:6', 'hash': '0xbb797f2425da1d88010a1414365be7a1e187924c21e41a7cbf20c4946832a270', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x3f1e00514abc337c1ff161e9f644d4878f925058', 'value': 10163.32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0226f465fc6c3f0c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:39:39.000Z'}}, {'blockNum': '0x963646', 'uniqueId': '0xf1da667606cc3753115bd4e04b97e51b1365ae4050e67dbc9939c23e2cf90af7:log:15', 'hash': '0xf1da667606cc3753115bd4e04b97e51b1365ae4050e67dbc9939c23e2cf90af7', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x73ebd284f978b93babd624eeb6e334cdbb218605', 'value': 6062.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0148a4fa75ec17a20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:42:11.000Z'}}, {'blockNum': '0x963648', 'uniqueId': '0x6ae1353c9b749841e8cabd54da192a113d39b62bf510eb46fed738ed199a033f:log:3', 'hash': '0x6ae1353c9b749841e8cabd54da192a113d39b62bf510eb46fed738ed199a033f', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'value': 72524.9472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0f5b95d3f8c2e8f00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:42:21.000Z'}}, {'blockNum': '0x96364a', 'uniqueId': '0x10968c091a7e306bc8447a0eb71220ccbc771cdb25e8e407999761cd8fbaa317:log:2', 'hash': '0x10968c091a7e306bc8447a0eb71220ccbc771cdb25e8e407999761cd8fbaa317', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0xe2813421d29b63f0f801a1195e5d8bed02407da2', 'value': 23686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0504054832318e580000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:42:43.000Z'}}, {'blockNum': '0x96364d', 'uniqueId': '0xcdc61bd15bb44a5777b2498fd0f7275ddfdad531d230835b667c9073ca199b0c:log:23', 'hash': '0xcdc61bd15bb44a5777b2498fd0f7275ddfdad531d230835b667c9073ca199b0c', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x79b96e6580635b726c1802e65015af011665c5b9', 'value': 26251.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x058f180d80db60390000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:42:54.000Z'}}, {'blockNum': '0x96364d', 'uniqueId': '0x3bbe7a71023868867e6a3fb8c4c18c68bbbf1656ed60300feeccade6a467c568:log:24', 'hash': '0x3bbe7a71023868867e6a3fb8c4c18c68bbbf1656ed60300feeccade6a467c568', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x727774bfe705badfd90e3a5eddacf2c83d98b3ec', 'value': 35666.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x078d7c8901a00cfd0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:42:54.000Z'}}, {'blockNum': '0x963654', 'uniqueId': '0x92e34590c77ed4d6513ae39322e47d344ac045d28ee746901b21546245ddabc5:log:12', 'hash': '0x92e34590c77ed4d6513ae39322e47d344ac045d28ee746901b21546245ddabc5', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x8dda2a75cd29b0d91b47eb94c34010aa88aec5b4', 'value': 43674.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x093f9547c02bd53c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:44:17.000Z'}}, {'blockNum': '0x963657', 'uniqueId': '0x9b71f26b7464655cc6ac5ccf586ee7af212ec1c836f5a174933f44770a165f97:log:51', 'hash': '0x9b71f26b7464655cc6ac5ccf586ee7af212ec1c836f5a174933f44770a165f97', 'from': '0x9cd45709c07a47b68536b654666e0c3684ffa610', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 19408.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x041c23998b25dff60000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:44:53.000Z'}}, {'blockNum': '0x96365a', 'uniqueId': '0xcd7b194d043d24dd059f33242aea08669bb31cf0f4f5889a119311eaeb7d0b4f:log:56', 'hash': '0xcd7b194d043d24dd059f33242aea08669bb31cf0f4f5889a119311eaeb7d0b4f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 7557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0199aa71454c4af40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:45:46.000Z'}}, {'blockNum': '0x96365c', 'uniqueId': '0x91542fb48f9e3f5e8dc3a1f9aa4e86b20f81c74402f30375778bb424f6146f98:log:6', 'hash': '0x91542fb48f9e3f5e8dc3a1f9aa4e86b20f81c74402f30375778bb424f6146f98', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0xf422858d3c14b8e3e0532a2290eb5173afdfc741', 'value': 52652.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0b264c38f9195ee20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:45:58.000Z'}}, {'blockNum': '0x96366e', 'uniqueId': '0x33f6d3cd3afd74edb408c37eca2a59625ca9496936b9364625dde0457de44b8f:log:26', 'hash': '0x33f6d3cd3afd74edb408c37eca2a59625ca9496936b9364625dde0457de44b8f', 'from': '0xe2813421d29b63f0f801a1195e5d8bed02407da2', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 23686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0504054832318e580000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:48:42.000Z'}}, {'blockNum': '0x963670', 'uniqueId': '0xe0d09f1804a062cddf590f2fed14a51a241d52749f7e2e798dc202266443d138:log:58', 'hash': '0xe0d09f1804a062cddf590f2fed14a51a241d52749f7e2e798dc202266443d138', 'from': '0x79b96e6580635b726c1802e65015af011665c5b9', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 26251.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x058f180d80db60390000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:48:54.000Z'}}, {'blockNum': '0x963671', 'uniqueId': '0x2d7ad79313b467e6ce0c6f0c7b4dece64fb2024858690ae92f6ee47a56c30eb7:log:4', 'hash': '0x2d7ad79313b467e6ce0c6f0c7b4dece64fb2024858690ae92f6ee47a56c30eb7', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0xb1c412ed8ef2320161e22fc8be98f0739de76ff6', 'value': 51924.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0afed59bff0ca9c50000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:49:24.000Z'}}, {'blockNum': '0x963672', 'uniqueId': '0xf2d4465c2a3b603db7a7f64b8b018958805ebdc0d2e4c282c91a8d0c57455668:log:38', 'hash': '0xf2d4465c2a3b603db7a7f64b8b018958805ebdc0d2e4c282c91a8d0c57455668', 'from': '0x3f1e00514abc337c1ff161e9f644d4878f925058', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 10163.32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0226f465fc6c3f0c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:49:31.000Z'}}, {'blockNum': '0x963678', 'uniqueId': '0xc8e10b3bb19c840830769b0db32e9f107e71431dbfbc85d9e69cdbd9ee809e74:log:43', 'hash': '0xc8e10b3bb19c840830769b0db32e9f107e71431dbfbc85d9e69cdbd9ee809e74', 'from': '0x8dda2a75cd29b0d91b47eb94c34010aa88aec5b4', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 43674.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x093f9547c02bd53c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:17.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:12', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0x9737bd6ead5e23a32f79256bff66ce5df1be8e57', 'value': 6593.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01656a5630fe82b30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:13', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0x2d8c465842d8d218ad6a795ec16fd9ce7c3ca486', 'value': 4944.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010c0fb7c30246160000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:14', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0x1cd94f20f6fa76b1bc50bdc6411a6623894decc0', 'value': 6593.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01656a5630fe82b30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:15', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0x2c713f5ece75f6d8c9162fe3e44b5843acf54779', 'value': 8241.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01bec4f49efabf500000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:16', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0x28d858647ea13cb5c93f14730a334705e0d12301', 'value': 5769.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0138bd18bd799c450000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:17', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0x179e35f7d80ba38a771698f11048334694dc963d', 'value': 13186.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02cad4cfe8ef75270000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:18', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0x796199fe0c3aedcdb6cb66502a0c54993d6db737', 'value': 6593.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01656a5630fe82b30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:19', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0x2bb61c616f7516eda59f429858dbd68aa89c7695', 'value': 7417.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x019217b72b75d8e20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:20', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0xc2e1181cdc9086ed4ac86e6c7173105ec1fd009f', 'value': 7417.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x019217b72b75d8e20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367c', 'uniqueId': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d:log:21', 'hash': '0x8feea6c416ab0c253cb8109f51f1249b2592c19bca4525747607433173306b8d', 'from': '0x284cbb123f5c47c864095f3b69875d9d222752ae', 'to': '0xb33855b2a43a71279fce40af63d91f0fbab24dd6', 'value': 5769.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0138bd18bd799c450000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:49.000Z'}}, {'blockNum': '0x96367e', 'uniqueId': '0xc534e8a12e6bb7b247d40840a867cc5b9ea49e88322c099184154173640348e4:log:23', 'hash': '0xc534e8a12e6bb7b247d40840a867cc5b9ea49e88322c099184154173640348e4', 'from': '0x73ebd284f978b93babd624eeb6e334cdbb218605', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 6062.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0148a4fa75ec17a20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:58.000Z'}}, {'blockNum': '0x96367e', 'uniqueId': '0xb39bd6d5b6613771427f2f3ef157dad6127c46aea3ac55ad6e4fd6692c995da6:log:34', 'hash': '0xb39bd6d5b6613771427f2f3ef157dad6127c46aea3ac55ad6e4fd6692c995da6', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 7557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0199aa71454c4af40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:50:58.000Z'}}, {'blockNum': '0x963690', 'uniqueId': '0xd13c19646bc1a824b8127b061b5e7bb4dd43edab8f2184fa659d6c92c8255302:log:7', 'hash': '0xd13c19646bc1a824b8127b061b5e7bb4dd43edab8f2184fa659d6c92c8255302', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x4e26613163d11d563a453aa084e9ef5e02d49254', 'value': 23777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0508f429240e0ee40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:53:54.000Z'}}, {'blockNum': '0x963690', 'uniqueId': '0x53e2472f759b4d7966a9fc51a93c64f3b5c596b9c93b87f055f85689e0ae396c:log:8', 'hash': '0x53e2472f759b4d7966a9fc51a93c64f3b5c596b9c93b87f055f85689e0ae396c', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x983a47e23a96ea42a0cafb5b6b09e095e33e92a2', 'value': 50274.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0aa5626d437128b70000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:53:54.000Z'}}, {'blockNum': '0x963691', 'uniqueId': '0x866002c45c351bcedc63d72acb96bbf4ae00705b10ba93b5334a63b0f55ce2af:log:133', 'hash': '0x866002c45c351bcedc63d72acb96bbf4ae00705b10ba93b5334a63b0f55ce2af', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1950.7907222948859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x69c0a8e231ea5e47f5', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:54:06.000Z'}}, {'blockNum': '0x963691', 'uniqueId': '0x866002c45c351bcedc63d72acb96bbf4ae00705b10ba93b5334a63b0f55ce2af:log:138', 'hash': '0x866002c45c351bcedc63d72acb96bbf4ae00705b10ba93b5334a63b0f55ce2af', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'value': 1950.7907222948859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x69c0a8e231ea5e47f5', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:54:06.000Z'}}, {'blockNum': '0x963691', 'uniqueId': '0x866002c45c351bcedc63d72acb96bbf4ae00705b10ba93b5334a63b0f55ce2af:log:140', 'hash': '0x866002c45c351bcedc63d72acb96bbf4ae00705b10ba93b5334a63b0f55ce2af', 'from': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1950.7907222948859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x69c0a8e231ea5e47f5', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:54:06.000Z'}}, {'blockNum': '0x963691', 'uniqueId': '0x866002c45c351bcedc63d72acb96bbf4ae00705b10ba93b5334a63b0f55ce2af:log:141', 'hash': '0x866002c45c351bcedc63d72acb96bbf4ae00705b10ba93b5334a63b0f55ce2af', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1950.7907222948859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x69c0a8e231ea5e47f5', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:54:06.000Z'}}, {'blockNum': '0x963694', 'uniqueId': '0x81897908a03235f3bc9a9082eae215e168874288aa4bc2e9e27ecc6d9adab1cf:log:150', 'hash': '0x81897908a03235f3bc9a9082eae215e168874288aa4bc2e9e27ecc6d9adab1cf', 'from': '0xf422858d3c14b8e3e0532a2290eb5173afdfc741', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 52652.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0b264c38f9195ee20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:55:08.000Z'}}, {'blockNum': '0x963696', 'uniqueId': '0x4187a92e250fb904398493801625794b947e0e96b2f825647057788772e75972:log:72', 'hash': '0x4187a92e250fb904398493801625794b947e0e96b2f825647057788772e75972', 'from': '0x80e2db1120835fdddc6ea4d215d8b3efb2dec7b9', 'to': '0xdc93324fe53120ac9dbbfc0718c585c686dca6c3', 'value': 1874.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x659a9523beb3a20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:55:42.000Z'}}, {'blockNum': '0x9636ac', 'uniqueId': '0xbb7006060e1f8ec07acb42bd2e96b49933c15425ef90b441d550f9ca60310cd5:log:97', 'hash': '0xbb7006060e1f8ec07acb42bd2e96b49933c15425ef90b441d550f9ca60310cd5', 'from': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 11473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x026df3dc0970d8a40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T11:59:17.000Z'}}, {'blockNum': '0x9636b3', 'uniqueId': '0x5852071e2516ddaad806c48ccfc663fcb78d6e15a007039dca953a8a26f4a5e0:log:68', 'hash': '0x5852071e2516ddaad806c48ccfc663fcb78d6e15a007039dca953a8a26f4a5e0', 'from': '0x4e26613163d11d563a453aa084e9ef5e02d49254', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 23777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0508f429240e0ee40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:01:09.000Z'}}, {'blockNum': '0x9636b5', 'uniqueId': '0x9747d800c9b7fe511929e5872665c42a031f2a2150743acfdacc236345e39cc6:log:146', 'hash': '0x9747d800c9b7fe511929e5872665c42a031f2a2150743acfdacc236345e39cc6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 7109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x018161318ae75bf40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:01:38.000Z'}}, {'blockNum': '0x9636b7', 'uniqueId': '0xfedc1f1859692ac90281e2b9d7d3d8f32a602ee09377a006c16b5c3204c90729:log:2', 'hash': '0xfedc1f1859692ac90281e2b9d7d3d8f32a602ee09377a006c16b5c3204c90729', 'from': '0x2c713f5ece75f6d8c9162fe3e44b5843acf54779', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8241.44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01bec4f49efabf500000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:02:08.000Z'}}, {'blockNum': '0x9636b7', 'uniqueId': '0xb7456a00ab595b0eeb92f0bba84ba2496ce858632f0367b2c6b9ac0d0d06fbc2:log:3', 'hash': '0xb7456a00ab595b0eeb92f0bba84ba2496ce858632f0367b2c6b9ac0d0d06fbc2', 'from': '0x179e35f7d80ba38a771698f11048334694dc963d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13186.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02cad4cfe8ef75270000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:02:08.000Z'}}, {'blockNum': '0x9636b7', 'uniqueId': '0xe3309e39f25297653b9d14c6acff27fe3e34f25f79d3f185491d0210be161a38:log:4', 'hash': '0xe3309e39f25297653b9d14c6acff27fe3e34f25f79d3f185491d0210be161a38', 'from': '0x9737bd6ead5e23a32f79256bff66ce5df1be8e57', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6593.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01656a5630fe82b30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:02:08.000Z'}}, {'blockNum': '0x9636b9', 'uniqueId': '0x55c9627870b8875d1dadfd952174d55c80694e02df5f228e164ca5b18f9d0428:log:34', 'hash': '0x55c9627870b8875d1dadfd952174d55c80694e02df5f228e164ca5b18f9d0428', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x04792200e808219c8399809eed94ee2a1fcf2800', 'value': 10915.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x024fbbafcbefff230000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:02:17.000Z'}}, {'blockNum': '0x9636b9', 'uniqueId': '0x713b6f81d7b1c57c5a52e1fa99934627a92964d82af78b0420db18b620d56522:log:64', 'hash': '0x713b6f81d7b1c57c5a52e1fa99934627a92964d82af78b0420db18b620d56522', 'from': '0x1cd94f20f6fa76b1bc50bdc6411a6623894decc0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6593.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01656a5630fe82b30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:02:17.000Z'}}, {'blockNum': '0x9636d8', 'uniqueId': '0x0da5045286037a82415681469ed5de08e35a47643489f37eb493224dc2aae7e6:log:56', 'hash': '0x0da5045286037a82415681469ed5de08e35a47643489f37eb493224dc2aae7e6', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 7109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x018161318ae75bf40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:09:39.000Z'}}, {'blockNum': '0x9636dd', 'uniqueId': '0x7d2e3871cc118d868c60c5d9a1449e116db6bda700ccde9caed022e18bc4674a:log:15', 'hash': '0x7d2e3871cc118d868c60c5d9a1449e116db6bda700ccde9caed022e18bc4674a', 'from': '0x04792200e808219c8399809eed94ee2a1fcf2800', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 10915.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x024fbbafcbefff230000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:10:28.000Z'}}, {'blockNum': '0x9636de', 'uniqueId': '0x58b6eddcef0b49b84aae4cf35390eddc40736ebe6973daeeab9c7aeb09685b83:log:1', 'hash': '0x58b6eddcef0b49b84aae4cf35390eddc40736ebe6973daeeab9c7aeb09685b83', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0xb09d55b7fd986320a15f2fc08eb8c372e0d14411', 'value': 18195.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03da5dd1906f12450000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:10:31.000Z'}}, {'blockNum': '0x9636e0', 'uniqueId': '0xf40a7713787ed5905474fd371089e6b1607c14fae48d5723a3e35c66941bad63:log:51', 'hash': '0xf40a7713787ed5905474fd371089e6b1607c14fae48d5723a3e35c66941bad63', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1b05d1e20814a9eec5e175e4058fccef62d0bf9a', 'value': 166.821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x090b1b3fa4fb708000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:10:57.000Z'}}, {'blockNum': '0x9636e1', 'uniqueId': '0x132ea6774092b837bcbe7cc6aff8fc7dd6879c25f65fc03a971800584eaa7fd6:log:4', 'hash': '0x132ea6774092b837bcbe7cc6aff8fc7dd6879c25f65fc03a971800584eaa7fd6', 'from': '0x46499f2dff9f551bc71646a0448396b1c4702343', 'to': '0x3af36d561a933bdefc8a51aed16dade162c6ec1f', 'value': 36394.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07b4f325fbacc21a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:11:34.000Z'}}, {'blockNum': '0x9636e5', 'uniqueId': '0x8a787c2ec9ded9b7359f6ed51a0df3c986a2b2d4fa486b97051942ee38ff4f24:log:19', 'hash': '0x8a787c2ec9ded9b7359f6ed51a0df3c986a2b2d4fa486b97051942ee38ff4f24', 'from': '0xc2e1181cdc9086ed4ac86e6c7173105ec1fd009f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7417.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x019217b72b75d8e20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:12:04.000Z'}}, {'blockNum': '0x9636f6', 'uniqueId': '0xf61f49718db5147e55aa2510750d2f29516393b9d0faa2c49b053c2007ba2daf:log:45', 'hash': '0xf61f49718db5147e55aa2510750d2f29516393b9d0faa2c49b053c2007ba2daf', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5f86fe0e62d1f0226f535ebe5d98a5d3edc9a615', 'value': 91883.878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x137508f63b59a1970000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:16:14.000Z'}}, {'blockNum': '0x9636f6', 'uniqueId': '0x72811d96e51680c5df087d9609de7c07e8b1fed39755c1a8725fe24af8d46f9a:log:70', 'hash': '0x72811d96e51680c5df087d9609de7c07e8b1fed39755c1a8725fe24af8d46f9a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc5801627881444fcaafbf9170ea9ff553d0f3e85', 'value': 7405.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0191712e9b0a00320000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:16:14.000Z'}}, {'blockNum': '0x9636f9', 'uniqueId': '0x5bd49ad1d83ce4974ce9847bc266d20e3a3c1ce6b505fedd262ef599b9def147:log:44', 'hash': '0x5bd49ad1d83ce4974ce9847bc266d20e3a3c1ce6b505fedd262ef599b9def147', 'from': '0x2bb61c616f7516eda59f429858dbd68aa89c7695', 'to': '0xae5b0c0150ed23e901aa4d214af9626b2208b1e6', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017b7883c06916600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:17:27.000Z'}}, {'blockNum': '0x9636fc', 'uniqueId': '0xd90b76d6a9685545989abde0973adb43f0ae001bb59cbea74bf1cb8f7f83e05e:log:83', 'hash': '0xd90b76d6a9685545989abde0973adb43f0ae001bb59cbea74bf1cb8f7f83e05e', 'from': '0xdc93324fe53120ac9dbbfc0718c585c686dca6c3', 'to': '0xccf2eddb539316062604c75198cbcc8813264c3b', 'value': 1874.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x659a9523beb3a20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:17:54.000Z'}}, {'blockNum': '0x963705', 'uniqueId': '0x9d625139e235d0dcbb9c4df9621d5d741f71529bc81f47564e364cdc62e449c2:log:46', 'hash': '0x9d625139e235d0dcbb9c4df9621d5d741f71529bc81f47564e364cdc62e449c2', 'from': '0x3af36d561a933bdefc8a51aed16dade162c6ec1f', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 36394.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07b4f325fbacc21a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:20:08.000Z'}}, {'blockNum': '0x963715', 'uniqueId': '0x03b1c267e261f9c837c73d954cf75014dbff6cf5743174408b8f5489fa619f9d:log:41', 'hash': '0x03b1c267e261f9c837c73d954cf75014dbff6cf5743174408b8f5489fa619f9d', 'from': '0xb09d55b7fd986320a15f2fc08eb8c372e0d14411', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 18195.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03da5dd1906f12450000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:22:13.000Z'}}, {'blockNum': '0x963719', 'uniqueId': '0xb076262450286aeb326844fab02dc4396b5d2ced3890201471d9260f1934432a:log:23', 'hash': '0xb076262450286aeb326844fab02dc4396b5d2ced3890201471d9260f1934432a', 'from': '0xc5801627881444fcaafbf9170ea9ff553d0f3e85', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 7405.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0191712e9b0a00320000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:22:56.000Z'}}, {'blockNum': '0x963719', 'uniqueId': '0xd4c8796543cd42b4bbe77a997a8aeafbcb164b0aece4d031316653398794e891:log:59', 'hash': '0xd4c8796543cd42b4bbe77a997a8aeafbcb164b0aece4d031316653398794e891', 'from': '0x5f86fe0e62d1f0226f535ebe5d98a5d3edc9a615', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 91883.878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x137508f63b59a1970000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:22:56.000Z'}}, {'blockNum': '0x963720', 'uniqueId': '0x46f3a09e4f2e78b2825d25effb9ed869448275709a77fd4f9f3cb38cce662ef7:log:51', 'hash': '0x46f3a09e4f2e78b2825d25effb9ed869448275709a77fd4f9f3cb38cce662ef7', 'from': '0xccf2eddb539316062604c75198cbcc8813264c3b', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1874.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x659a9523beb3a20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:24:19.000Z'}}, {'blockNum': '0x96378b', 'uniqueId': '0x84b31e496668a2d8aa956f0bb48024da925f058e061ca86a79adcc408470e31f:log:110', 'hash': '0x84b31e496668a2d8aa956f0bb48024da925f058e061ca86a79adcc408470e31f', 'from': '0x28d858647ea13cb5c93f14730a334705e0d12301', 'to': '0x8687671a1a0eb7a9e66cf2682a97729d09dbb937', 'value': 5769.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0138bd18bd799c450000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:46:40.000Z'}}, {'blockNum': '0x963795', 'uniqueId': '0x25a671ed8a0b1012936c7e23b029a188b425b52166c87132931061a04b2d1cf6:log:5', 'hash': '0x25a671ed8a0b1012936c7e23b029a188b425b52166c87132931061a04b2d1cf6', 'from': '0x983a47e23a96ea42a0cafb5b6b09e095e33e92a2', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 50274.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0aa5626d437128b70000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:49:47.000Z'}}, {'blockNum': '0x963795', 'uniqueId': '0xc62fc771660928e5711c11f53f5df2a95b63f10b19b212ab9b7fe6701bb31eb2:log:6', 'hash': '0xc62fc771660928e5711c11f53f5df2a95b63f10b19b212ab9b7fe6701bb31eb2', 'from': '0x727774bfe705badfd90e3a5eddacf2c83d98b3ec', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 35666.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x078d7c8901a00cfd0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:49:47.000Z'}}, {'blockNum': '0x963795', 'uniqueId': '0x3c72fb2bdbc93501742e44ef53d7cc1118746e609c537e4372931faa54fb5f2a:log:12', 'hash': '0x3c72fb2bdbc93501742e44ef53d7cc1118746e609c537e4372931faa54fb5f2a', 'from': '0xae5b0c0150ed23e901aa4d214af9626b2208b1e6', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017b7883c06916600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:49:47.000Z'}}, {'blockNum': '0x963795', 'uniqueId': '0x36b85fbe296dd312b2dfa9a74a618162fe2b479499e4dbca7dca9d042d264b85:log:13', 'hash': '0x36b85fbe296dd312b2dfa9a74a618162fe2b479499e4dbca7dca9d042d264b85', 'from': '0xb1c412ed8ef2320161e22fc8be98f0739de76ff6', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 51924.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0afed59bff0ca9c50000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:49:47.000Z'}}, {'blockNum': '0x9637a1', 'uniqueId': '0xa08563099fa670b81cd8af9a728867509869ac63c00c6edf52c304cd860a27e8:log:15', 'hash': '0xa08563099fa670b81cd8af9a728867509869ac63c00c6edf52c304cd860a27e8', 'from': '0x8687671a1a0eb7a9e66cf2682a97729d09dbb937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5769.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0138bd18bd799c450000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T12:52:02.000Z'}}, {'blockNum': '0x963830', 'uniqueId': '0x3291022c8d8c4482c7ae4d5cb53967ea1ab085fa0d8a0adec9fa335b8aeedd12:log:8', 'hash': '0x3291022c8d8c4482c7ae4d5cb53967ea1ab085fa0d8a0adec9fa335b8aeedd12', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 10387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02331494fb50be6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T13:24:51.000Z'}}, {'blockNum': '0x963834', 'uniqueId': '0xd6acffbedd0e2d2d4ecd73d23baa5d087446e07361cdf1c799c96b30d28c5eae:log:44', 'hash': '0xd6acffbedd0e2d2d4ecd73d23baa5d087446e07361cdf1c799c96b30d28c5eae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 16205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x036e798d2a3af5140000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T13:25:59.000Z'}}, {'blockNum': '0x963853', 'uniqueId': '0x899e2bfee687964f00d395d32e4430b5842f765f101130c9cfaf3949725a8786:log:40', 'hash': '0x899e2bfee687964f00d395d32e4430b5842f765f101130c9cfaf3949725a8786', 'from': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 10387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02331494fb50be6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T13:31:14.000Z'}}, {'blockNum': '0x963882', 'uniqueId': '0xb487562f5d92bbd925a2a9024a36660f692e994334517832c9f20f87656af98e:log:55', 'hash': '0xb487562f5d92bbd925a2a9024a36660f692e994334517832c9f20f87656af98e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 19216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0411b3920d44c2400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T13:42:29.000Z'}}, {'blockNum': '0x96388c', 'uniqueId': '0xe297a1355eb96dc793c9bdfae603cd4d0956e9d2bf9e456d7aebce0f0a4bef14:log:1', 'hash': '0xe297a1355eb96dc793c9bdfae603cd4d0956e9d2bf9e456d7aebce0f0a4bef14', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 6891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01758fd5f5ead0cc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T13:43:53.000Z'}}, {'blockNum': '0x9638a7', 'uniqueId': '0xa15a0c6086e5587c9fd9979cf81a49c77f15d5ac3a223b36bf7aca14477b067b:log:86', 'hash': '0xa15a0c6086e5587c9fd9979cf81a49c77f15d5ac3a223b36bf7aca14477b067b', 'from': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 19216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0411b3920d44c2400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T13:48:10.000Z'}}, {'blockNum': '0x9638b0', 'uniqueId': '0x19d15a144a2d658a08cfa666c3e858e54da924c84a0d3df1a7749a0663e1676a:log:35', 'hash': '0x19d15a144a2d658a08cfa666c3e858e54da924c84a0d3df1a7749a0663e1676a', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 6891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01758fd5f5ead0cc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T13:50:50.000Z'}}, {'blockNum': '0x9639c3', 'uniqueId': '0x69434400a1f5fd348393cf0be0e1f899983c5fab50307550589c21035086f22f:log:9', 'hash': '0x69434400a1f5fd348393cf0be0e1f899983c5fab50307550589c21035086f22f', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 112127.034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x17be6b2f748352f90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T14:51:43.000Z'}}, {'blockNum': '0x9639ce', 'uniqueId': '0x87439225ebe10327ffb44052099bbeaf40f8bd2cba9b180e24c9f2393f63d804:log:0', 'hash': '0x87439225ebe10327ffb44052099bbeaf40f8bd2cba9b180e24c9f2393f63d804', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0xc1da8f69e4881efe341600620268934ef01a3e63', 'value': 112127.034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x17be6b2f748352f90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T14:54:07.000Z'}}, {'blockNum': '0x9639f2', 'uniqueId': '0xa42e864d4cd001a8002f050728bb0c051d2138aebde027726b697d0c7b751577:log:36', 'hash': '0xa42e864d4cd001a8002f050728bb0c051d2138aebde027726b697d0c7b751577', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 66723.33567099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e21144b5561cd068c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:01:03.000Z'}}, {'blockNum': '0x963a1c', 'uniqueId': '0xc8a5d1e0643fbb71e34b85d2f70165db19d55fecd2f11f5a03f6c6674ced3598:log:6', 'hash': '0xc8a5d1e0643fbb71e34b85d2f70165db19d55fecd2f11f5a03f6c6674ced3598', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x95efdeb15f14abed2cf684bd237bf971bc0e2b4b', 'value': 21749.82135582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x049b0f67d7a04000b800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:10:49.000Z'}}, {'blockNum': '0x963a53', 'uniqueId': '0x47ef313efe31ad2e1cd78ba7ebb1971eeb295334bf8d0a08f87b2d8a5a35a20a:log:155', 'hash': '0x47ef313efe31ad2e1cd78ba7ebb1971eeb295334bf8d0a08f87b2d8a5a35a20a', 'from': '0x95efdeb15f14abed2cf684bd237bf971bc0e2b4b', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 21749.82135582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x049b0f67d7a04000b800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:20:37.000Z'}}, {'blockNum': '0x963a91', 'uniqueId': '0xa0026fcb47615f032361919f544f8fb2323dfc029ed8beb4718cc20eec547d21:log:12', 'hash': '0xa0026fcb47615f032361919f544f8fb2323dfc029ed8beb4718cc20eec547d21', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 15589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x034d14d589f02c740000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:36:36.000Z'}}, {'blockNum': '0x963aa6', 'uniqueId': '0x42b943e91da8409e73af758c2e0717d0b345fa95e19508d59c4b3f02a02a4598:log:44', 'hash': '0x42b943e91da8409e73af758c2e0717d0b345fa95e19508d59c4b3f02a02a4598', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1925.2612289107403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x685e5de73920b03f1d', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:41:17.000Z'}}, {'blockNum': '0x963aa6', 'uniqueId': '0x42b943e91da8409e73af758c2e0717d0b345fa95e19508d59c4b3f02a02a4598:log:49', 'hash': '0x42b943e91da8409e73af758c2e0717d0b345fa95e19508d59c4b3f02a02a4598', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'value': 1925.2612289107403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x685e5de73920b03f1d', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:41:17.000Z'}}, {'blockNum': '0x963aa6', 'uniqueId': '0x42b943e91da8409e73af758c2e0717d0b345fa95e19508d59c4b3f02a02a4598:log:51', 'hash': '0x42b943e91da8409e73af758c2e0717d0b345fa95e19508d59c4b3f02a02a4598', 'from': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1925.2612289107403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x685e5de73920b03f1d', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:41:17.000Z'}}, {'blockNum': '0x963aa6', 'uniqueId': '0x42b943e91da8409e73af758c2e0717d0b345fa95e19508d59c4b3f02a02a4598:log:52', 'hash': '0x42b943e91da8409e73af758c2e0717d0b345fa95e19508d59c4b3f02a02a4598', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1925.2612289107403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x685e5de73920b03f1d', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:41:17.000Z'}}, {'blockNum': '0x963ac8', 'uniqueId': '0x20dc152dcbc4bc7935fb3952adcc4e6756e7c6640b9c9c2ee7d7fd00d37ed9d6:log:85', 'hash': '0x20dc152dcbc4bc7935fb3952adcc4e6756e7c6640b9c9c2ee7d7fd00d37ed9d6', 'from': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 15589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x034d14d589f02c740000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:50:00.000Z'}}, {'blockNum': '0x963ae9', 'uniqueId': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08:log:11', 'hash': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 5048.596962346499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0111af5b7ca41b34b702', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:18.000Z'}}, {'blockNum': '0x963ae9', 'uniqueId': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08:log:13', 'hash': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'value': 5048.596962346499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0111af5b7ca41b34b702', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:18.000Z'}}, {'blockNum': '0x963ae9', 'uniqueId': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08:log:18', 'hash': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08', 'from': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'to': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'value': 5048.596962346499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0111af5b7ca41b34b702', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:18.000Z'}}, {'blockNum': '0x963ae9', 'uniqueId': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08:log:19', 'hash': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08', 'from': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 5048.596962346499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0111af5b7ca41b34b702', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:18.000Z'}}, {'blockNum': '0x963ae9', 'uniqueId': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08:log:20', 'hash': '0x7a7aee1f3b7b5408a39d50ad9da8fe36d5c74ef7157e1efb264f1f51e9e3ac08', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 5048.596962346499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0111af5b7ca41b34b702', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:18.000Z'}}, {'blockNum': '0x963ae9', 'uniqueId': '0xa49e48b05d74312b51812cd8b001b43639f2389f7a9574d8e7ae723be762bd83:log:36', 'hash': '0xa49e48b05d74312b51812cd8b001b43639f2389f7a9574d8e7ae723be762bd83', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2534.3964977587184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8963d11ae7467c0942', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:18.000Z'}}, {'blockNum': '0x963ae9', 'uniqueId': '0xa49e48b05d74312b51812cd8b001b43639f2389f7a9574d8e7ae723be762bd83:log:41', 'hash': '0xa49e48b05d74312b51812cd8b001b43639f2389f7a9574d8e7ae723be762bd83', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2534.3964977587184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8963d11ae7467c0942', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:18.000Z'}}, {'blockNum': '0x963aea', 'uniqueId': '0x279060412fe31e75b15e71b8175ee9e497d5e61fadfe5f466263be1beab49463:log:11', 'hash': '0x279060412fe31e75b15e71b8175ee9e497d5e61fadfe5f466263be1beab49463', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'value': 20759.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0465643cf4d00a0d0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:29.000Z'}}, {'blockNum': '0x963aea', 'uniqueId': '0x639051c3cbe185818ecbe135020f635328a16da231d846f31855f5c72740a163:log:30', 'hash': '0x639051c3cbe185818ecbe135020f635328a16da231d846f31855f5c72740a163', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 17585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03b948e60aad4c240000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:29.000Z'}}, {'blockNum': '0x963aeb', 'uniqueId': '0xfd03bb72d9c70301e787b7d821e7b3e6ddc857297309c699a0d7c32b2e1bf9ee:log:56', 'hash': '0xfd03bb72d9c70301e787b7d821e7b3e6ddc857297309c699a0d7c32b2e1bf9ee', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1751.8960615036453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5ef87119fe92ab6d6e', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:50.000Z'}}, {'blockNum': '0x963aeb', 'uniqueId': '0xfd03bb72d9c70301e787b7d821e7b3e6ddc857297309c699a0d7c32b2e1bf9ee:log:61', 'hash': '0xfd03bb72d9c70301e787b7d821e7b3e6ddc857297309c699a0d7c32b2e1bf9ee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 1751.8960615036453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5ef87119fe92ab6d6e', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:50.000Z'}}, {'blockNum': '0x963aeb', 'uniqueId': '0x7e06705a57f48df5e53ffc6f658994fa410faec1c470cef4e7bafa54855690e5:log:76', 'hash': '0x7e06705a57f48df5e53ffc6f658994fa410faec1c470cef4e7bafa54855690e5', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1733.946680755853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5dff58174de0477da5', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:50.000Z'}}, {'blockNum': '0x963aeb', 'uniqueId': '0x7e06705a57f48df5e53ffc6f658994fa410faec1c470cef4e7bafa54855690e5:log:81', 'hash': '0x7e06705a57f48df5e53ffc6f658994fa410faec1c470cef4e7bafa54855690e5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'value': 1733.946680755853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5dff58174de0477da5', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:58:50.000Z'}}, {'blockNum': '0x963aec', 'uniqueId': '0x8819335d1b209ab533e21f7833b25214be74a9c744fda5644b6a2b716e6da03a:log:12', 'hash': '0x8819335d1b209ab533e21f7833b25214be74a9c744fda5644b6a2b716e6da03a', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 5048.596962346499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0111af5b7ca41b34b702', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:09.000Z'}}, {'blockNum': '0x963aec', 'uniqueId': '0x32cc334e5368e93e2c63c3ad0067569a9b29ab1435d8a38c557dced2ddba5e1d:log:43', 'hash': '0x32cc334e5368e93e2c63c3ad0067569a9b29ab1435d8a38c557dced2ddba5e1d', 'from': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'to': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'value': 1734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5e001584dfcf580000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:09.000Z'}}, {'blockNum': '0x963aec', 'uniqueId': '0x724526138fbeb3d208e473c133e39ae348cf0151d2ad155099eb3318389f3795:log:49', 'hash': '0x724526138fbeb3d208e473c133e39ae348cf0151d2ad155099eb3318389f3795', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 1752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5ef9e25d8194600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:09.000Z'}}, {'blockNum': '0x963aec', 'uniqueId': '0x2f889e981a355bd520dd3ec04ebc412b9c7de18d296b443a1edadc36421ddbfc:log:75', 'hash': '0x2f889e981a355bd520dd3ec04ebc412b9c7de18d296b443a1edadc36421ddbfc', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1724.8520986746184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5d8121a51623a863de', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:09.000Z'}}, {'blockNum': '0x963aec', 'uniqueId': '0x2f889e981a355bd520dd3ec04ebc412b9c7de18d296b443a1edadc36421ddbfc:log:80', 'hash': '0x2f889e981a355bd520dd3ec04ebc412b9c7de18d296b443a1edadc36421ddbfc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 1724.8520986746184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5d8121a51623a863de', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:09.000Z'}}, {'blockNum': '0x963aec', 'uniqueId': '0x4871965051b28e58ef2320ea4d51cf13ed529ec38a2f8f866b0a003a95f895ef:log:81', 'hash': '0x4871965051b28e58ef2320ea4d51cf13ed529ec38a2f8f866b0a003a95f895ef', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3030.7500881349833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xa44c1b4b8e7d83f965', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:09.000Z'}}, {'blockNum': '0x963aec', 'uniqueId': '0x4871965051b28e58ef2320ea4d51cf13ed529ec38a2f8f866b0a003a95f895ef:log:83', 'hash': '0x4871965051b28e58ef2320ea4d51cf13ed529ec38a2f8f866b0a003a95f895ef', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 3030.7500881349833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xa44c1b4b8e7d83f965', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:09.000Z'}}, {'blockNum': '0x963aec', 'uniqueId': '0x4871965051b28e58ef2320ea4d51cf13ed529ec38a2f8f866b0a003a95f895ef:log:88', 'hash': '0x4871965051b28e58ef2320ea4d51cf13ed529ec38a2f8f866b0a003a95f895ef', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3030.7500881349833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xa44c1b4b8e7d83f965', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:09.000Z'}}, {'blockNum': '0x963aec', 'uniqueId': '0x4871965051b28e58ef2320ea4d51cf13ed529ec38a2f8f866b0a003a95f895ef:log:90', 'hash': '0x4871965051b28e58ef2320ea4d51cf13ed529ec38a2f8f866b0a003a95f895ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 3030.7500881349833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xa44c1b4b8e7d83f965', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:09.000Z'}}, {'blockNum': '0x963aee', 'uniqueId': '0xfe6e2f2a464cfa68ca225feae3b4564e8f54a2a7cd5ff2a88e755e1618cf6815:log:25', 'hash': '0xfe6e2f2a464cfa68ca225feae3b4564e8f54a2a7cd5ff2a88e755e1618cf6815', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6904.803423932649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01764f6592d9ae7b89ee', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:28.000Z'}}, {'blockNum': '0x963aee', 'uniqueId': '0xfe6e2f2a464cfa68ca225feae3b4564e8f54a2a7cd5ff2a88e755e1618cf6815:log:30', 'hash': '0xfe6e2f2a464cfa68ca225feae3b4564e8f54a2a7cd5ff2a88e755e1618cf6815', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 6904.803423932649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01764f6592d9ae7b89ee', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:28.000Z'}}, {'blockNum': '0x963af1', 'uniqueId': '0x8591b43c173c37d907ed86ca702866897e049c41af85ec2e5ee26d8d81ca9743:log:0', 'hash': '0x8591b43c173c37d907ed86ca702866897e049c41af85ec2e5ee26d8d81ca9743', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0xd5377e975fb7c21c1ee2c2f91be9ddf48e7e1732', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T15:59:53.000Z'}}, {'blockNum': '0x963af2', 'uniqueId': '0x564f7428c51c682456ba5a20ebec8016f711dc625bf5c55a544b15023cfc4a60:log:1', 'hash': '0x564f7428c51c682456ba5a20ebec8016f711dc625bf5c55a544b15023cfc4a60', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb8ad327503ab62602b7a68992c46ca9a15f192fa', 'value': 15743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03556e037202de9c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:19.000Z'}}, {'blockNum': '0x963af2', 'uniqueId': '0xbfd730d0a1b6023df14c14ee9d1d6ba0fdf27a58c2b13612920d5ddb5fc39d60:log:4', 'hash': '0xbfd730d0a1b6023df14c14ee9d1d6ba0fdf27a58c2b13612920d5ddb5fc39d60', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 13095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02c5e1a19fb76c3c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:19.000Z'}}, {'blockNum': '0x963af2', 'uniqueId': '0xc29d26d6d0aa1027ff7103407158e93bb47939a3ee6ff2e5752674603fe4e680:log:5', 'hash': '0xc29d26d6d0aa1027ff7103407158e93bb47939a3ee6ff2e5752674603fe4e680', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 24269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0523a0084553c3140000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:19.000Z'}}, {'blockNum': '0x963af3', 'uniqueId': '0x4dc3ac4bd11623f80f39c6dbeee48c7e4b73b71c47ecb1aca0f293a4fe5dd9cc:log:23', 'hash': '0x4dc3ac4bd11623f80f39c6dbeee48c7e4b73b71c47ecb1aca0f293a4fe5dd9cc', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4443.352309811207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xf0dfe687e240700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:23.000Z'}}, {'blockNum': '0x963af3', 'uniqueId': '0x4dc3ac4bd11623f80f39c6dbeee48c7e4b73b71c47ecb1aca0f293a4fe5dd9cc:log:25', 'hash': '0x4dc3ac4bd11623f80f39c6dbeee48c7e4b73b71c47ecb1aca0f293a4fe5dd9cc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 4443.352309811207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xf0dfe687e240700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:23.000Z'}}, {'blockNum': '0x963af4', 'uniqueId': '0x80f5160cb88d5b665b74fc8e3e77b4707524274113634eeed73eb2e43dbd2a55:log:13', 'hash': '0x80f5160cb88d5b665b74fc8e3e77b4707524274113634eeed73eb2e43dbd2a55', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xa268e17941b52956bf286f844de0326de11d7380', 'value': 19395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x041b67b1cce2cd2c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:28.000Z'}}, {'blockNum': '0x963af4', 'uniqueId': '0xa07c5362c64f2c9fe88c5cadc8b287e831e5a0b06e9fa449c36b4511332e2334:log:25', 'hash': '0xa07c5362c64f2c9fe88c5cadc8b287e831e5a0b06e9fa449c36b4511332e2334', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 15187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x033749f6a3d3516c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:28.000Z'}}, {'blockNum': '0x963af4', 'uniqueId': '0x7fa0b7213645dc3ad8347d5873740a8863839015614bc91d6d21c1bde6ccafd4:log:26', 'hash': '0x7fa0b7213645dc3ad8347d5873740a8863839015614bc91d6d21c1bde6ccafd4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 8621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01d358689ffc02940000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:28.000Z'}}, {'blockNum': '0x963af4', 'uniqueId': '0x192edd7d30173ba78a1221ee4b8a76460204b186681741dd5af82b02df797c53:log:31', 'hash': '0x192edd7d30173ba78a1221ee4b8a76460204b186681741dd5af82b02df797c53', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3af768337630b9d1e601d591a79c9725d7afe09c', 'value': 18506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03eb3657570282e80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:28.000Z'}}, {'blockNum': '0x963af4', 'uniqueId': '0x4550ff341b60824ce04159045c2a67e827467645eb8e617a0644d7415f8a3ae4:log:162', 'hash': '0x4550ff341b60824ce04159045c2a67e827467645eb8e617a0644d7415f8a3ae4', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2232.0697118285057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x79003098e5569c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:28.000Z'}}, {'blockNum': '0x963af4', 'uniqueId': '0x4550ff341b60824ce04159045c2a67e827467645eb8e617a0644d7415f8a3ae4:log:164', 'hash': '0x4550ff341b60824ce04159045c2a67e827467645eb8e617a0644d7415f8a3ae4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 2232.0697118285057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x79003098e5569c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:00:28.000Z'}}, {'blockNum': '0x963afd', 'uniqueId': '0x1ba2217b2877b3872ff920806954535b38116338acd5b69d77444063d6ccf89a:log:20', 'hash': '0x1ba2217b2877b3872ff920806954535b38116338acd5b69d77444063d6ccf89a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x66ffcbfd5e5a300000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:03:01.000Z'}}, {'blockNum': '0x963aff', 'uniqueId': '0x4f192b542658bc3a6a7014821f76bcc3472d13c2e3d3a84340014f11947bd5d8:log:0', 'hash': '0x4f192b542658bc3a6a7014821f76bcc3472d13c2e3d3a84340014f11947bd5d8', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x1186bf84da1e6fff6b65a6ccb104e96f7680cd99', 'value': 30809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x068628c3baec11c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:03:25.000Z'}}, {'blockNum': '0x963b04', 'uniqueId': '0xb39e2e0d081b049eed569a415d9862ec64c11c68798906082b2921ee60bb4d56:log:21', 'hash': '0xb39e2e0d081b049eed569a415d9862ec64c11c68798906082b2921ee60bb4d56', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 13614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02e2043405efc7f80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:04:33.000Z'}}, {'blockNum': '0x963b0c', 'uniqueId': '0xbf30a7de3d467accdfa32475a538cd8e8436043bdb49aa538654e2823b223dbd:log:4', 'hash': '0xbf30a7de3d467accdfa32475a538cd8e8436043bdb49aa538654e2823b223dbd', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 16735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x038b34c76a2b821c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:06:58.000Z'}}, {'blockNum': '0x963b0d', 'uniqueId': '0x7072a41daa8b6bad1c44f83f96ed6f9e3cea079fa8cf26dd9760b57f9b344c7c:log:3', 'hash': '0x7072a41daa8b6bad1c44f83f96ed6f9e3cea079fa8cf26dd9760b57f9b344c7c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 14052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02f9c2ac9d502d100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:07:04.000Z'}}, {'blockNum': '0x963b0d', 'uniqueId': '0xd8f2dc6cd49a5bf64700523ca5f4447906e53c610307bc4458108013f22127b9:log:166', 'hash': '0xd8f2dc6cd49a5bf64700523ca5f4447906e53c610307bc4458108013f22127b9', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x89a3b407cd2ccc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:07:04.000Z'}}, {'blockNum': '0x963b0d', 'uniqueId': '0xd8f2dc6cd49a5bf64700523ca5f4447906e53c610307bc4458108013f22127b9:log:168', 'hash': '0xd8f2dc6cd49a5bf64700523ca5f4447906e53c610307bc4458108013f22127b9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 2539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x89a3b407cd2ccc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:07:04.000Z'}}, {'blockNum': '0x963b0e', 'uniqueId': '0x317252a0c9ea9730c7e218483c8f3366952c89e09ed9cc504b163a4a4f4af6b4:log:7', 'hash': '0x317252a0c9ea9730c7e218483c8f3366952c89e09ed9cc504b163a4a4f4af6b4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2233.99216808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x791ade88abc525a000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:07:26.000Z'}}, {'blockNum': '0x963b14', 'uniqueId': '0x837792d2af8259c0ba438531ab4ff2f29ea97633c400c9d74e3297f60aa76891:log:102', 'hash': '0x837792d2af8259c0ba438531ab4ff2f29ea97633c400c9d74e3297f60aa76891', 'from': '0xd5377e975fb7c21c1ee2c2f91be9ddf48e7e1732', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:08:04.000Z'}}, {'blockNum': '0x963b17', 'uniqueId': '0x85789e28371933633f0c62996b74bb68ffdacab394933cd486cdd1677edec4ba:log:5', 'hash': '0x85789e28371933633f0c62996b74bb68ffdacab394933cd486cdd1677edec4ba', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:09:12.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0x4f575972dba1aebf19cb288eee9d828494b05ecf13a7eabf2b61dcf5b32096ad:log:6', 'hash': '0x4f575972dba1aebf19cb288eee9d828494b05ecf13a7eabf2b61dcf5b32096ad', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5ef9e25d8194600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0x58d2e8b49111798f2f6b69bb03c18ec74e2f3ff733ddc1619bde2127af0f6452:log:7', 'hash': '0x58d2e8b49111798f2f6b69bb03c18ec74e2f3ff733ddc1619bde2127af0f6452', 'from': '0x1186bf84da1e6fff6b65a6ccb104e96f7680cd99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x068628c3baec11c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0xc69ac2ad093ff31e97e6277a1d40b91c612abc8e8f4c431306a316b0c33713fb:log:9', 'hash': '0xc69ac2ad093ff31e97e6277a1d40b91c612abc8e8f4c431306a316b0c33713fb', 'from': '0xa0a0bce5c90dc9e7cdfc75ffdf007bf1c72cc183', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20759.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0465643cf4d00a0d0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0x8df75e343574a9919d41a579c7e9df3d444bc5b0359c124b05aa595e7c685ce9:log:11', 'hash': '0x8df75e343574a9919d41a579c7e9df3d444bc5b0359c124b05aa595e7c685ce9', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x058ca14eaaa94eb80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0x2d3b62ce112ef4acebf8881c16eed74d2100682f0c250a4fad96590ea8700fb5:log:13', 'hash': '0x2d3b62ce112ef4acebf8881c16eed74d2100682f0c250a4fad96590ea8700fb5', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5048.596962346499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0111af5b7ca41b34b702', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0xb0019e82fcc22b3e5932b529a16dda507d152769efc172381556cf3e6d59312c:log:14', 'hash': '0xb0019e82fcc22b3e5932b529a16dda507d152769efc172381556cf3e6d59312c', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x033749f6a3d3516c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0xd8ea9cc2a7654ae8837a5dd0878f5588315197f1887b868926ce3b33327650ad:log:15', 'hash': '0xd8ea9cc2a7654ae8837a5dd0878f5588315197f1887b868926ce3b33327650ad', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02c5e1a19fb76c3c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0x8d338d5fb3bac042862c5c59ca055e7a3f0639bfdefccb89bead32b1f49ed4b2:log:16', 'hash': '0x8d338d5fb3bac042862c5c59ca055e7a3f0639bfdefccb89bead32b1f49ed4b2', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02f9c2ac9d502d100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0x377fdf7621ccf2095df9483311ecfd00f4cde896587a39a94034558caf07ccb8:log:17', 'hash': '0x377fdf7621ccf2095df9483311ecfd00f4cde896587a39a94034558caf07ccb8', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x038b34c76a2b821c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b28', 'uniqueId': '0x959ed6a8de70ef9efe2ddb9470d02c42f0968e3d037cf160c4d25749a9fabbcc:log:74', 'hash': '0x959ed6a8de70ef9efe2ddb9470d02c42f0968e3d037cf160c4d25749a9fabbcc', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 13614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02e2043405efc7f80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:12:00.000Z'}}, {'blockNum': '0x963b43', 'uniqueId': '0x29dbb11a695e7fd142b4cdfcef9f8ce9a02eaba6430327eff59d8b3fd9b83362:log:37', 'hash': '0x29dbb11a695e7fd142b4cdfcef9f8ce9a02eaba6430327eff59d8b3fd9b83362', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ef9d31556dd8430d1943f8dda11401977c42abf', 'value': 18710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03f64568ee2be6980000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:17:54.000Z'}}, {'blockNum': '0x963b46', 'uniqueId': '0x95dca7913904b88dd2ccd774067cf3671440afb838531c46031592a3c66b6ee0:log:6', 'hash': '0x95dca7913904b88dd2ccd774067cf3671440afb838531c46031592a3c66b6ee0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 29125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x062ade91e522f3f40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:19:22.000Z'}}, {'blockNum': '0x963b4c', 'uniqueId': '0x671be3306076c2cd0dd378ab4ef1d71edd83818dc9e024495d750fd26be4fb05:log:10', 'hash': '0x671be3306076c2cd0dd378ab4ef1d71edd83818dc9e024495d750fd26be4fb05', 'from': '0xa268e17941b52956bf286f844de0326de11d7380', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 19395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x041b67b1cce2cd2c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:20:29.000Z'}}, {'blockNum': '0x963b4c', 'uniqueId': '0x7a34d13f3d85f0fa420d914808e485005cf0ac13fb859c806c8c26e9dfd78c0b:log:11', 'hash': '0x7a34d13f3d85f0fa420d914808e485005cf0ac13fb859c806c8c26e9dfd78c0b', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 66723.33567099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e21144b5561cd068c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:20:29.000Z'}}, {'blockNum': '0x963b4c', 'uniqueId': '0xf4d117c60bba496f364917d5d48e6ec9944269f189adf897170ddd72f7698377:log:14', 'hash': '0xf4d117c60bba496f364917d5d48e6ec9944269f189adf897170ddd72f7698377', 'from': '0xb8ad327503ab62602b7a68992c46ca9a15f192fa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 15743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03556e037202de9c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:20:29.000Z'}}, {'blockNum': '0x963b4c', 'uniqueId': '0xa95d87cc73d9c31ae337c5e206fd5d8514366747428ebc4ebabba07b41002856:log:15', 'hash': '0xa95d87cc73d9c31ae337c5e206fd5d8514366747428ebc4ebabba07b41002856', 'from': '0x3af768337630b9d1e601d591a79c9725d7afe09c', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 18506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03eb3657570282e80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:20:29.000Z'}}, {'blockNum': '0x963b4c', 'uniqueId': '0x28ba01571dee435748a2b6f6abbc9051cc44f2fb73ee5b294ceb7126f71eae64:log:25', 'hash': '0x28ba01571dee435748a2b6f6abbc9051cc44f2fb73ee5b294ceb7126f71eae64', 'from': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5e001584dfcf580000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:20:29.000Z'}}, {'blockNum': '0x963b50', 'uniqueId': '0x7254760300261bc12d056f420b3768c92826fa3c51073cc6dbf68051ec071289:log:45', 'hash': '0x7254760300261bc12d056f420b3768c92826fa3c51073cc6dbf68051ec071289', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0523a0084553c3140000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:21:43.000Z'}}, {'blockNum': '0x963b50', 'uniqueId': '0xcf89eada8a74a00b56d535e595c5e7d73042e1966220518638445369919cc681:log:46', 'hash': '0xcf89eada8a74a00b56d535e595c5e7d73042e1966220518638445369919cc681', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:21:43.000Z'}}, {'blockNum': '0x963b61', 'uniqueId': '0xf40dcc2999c21ccd842860605d2d72253686e88097ed5e7aecec6e812b14c50c:log:98', 'hash': '0xf40dcc2999c21ccd842860605d2d72253686e88097ed5e7aecec6e812b14c50c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 4103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xde6c90395fd3bc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:27:09.000Z'}}, {'blockNum': '0x963b61', 'uniqueId': '0x3e4fc1ff49f59a1036d387e31ca7ede24e62c74ef61748a24ae7580ccf4d525a:log:101', 'hash': '0x3e4fc1ff49f59a1036d387e31ca7ede24e62c74ef61748a24ae7580ccf4d525a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6c14f95f0ca1afa9c0d525c4506f2ac5faadaf1f', 'value': 2144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x7439fa2099e5800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:27:09.000Z'}}, {'blockNum': '0x963b66', 'uniqueId': '0x511d987127175a38a3e4b35ba7449e59697cd226bcef60293c2415e4b05d494c:log:2', 'hash': '0x511d987127175a38a3e4b35ba7449e59697cd226bcef60293c2415e4b05d494c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 87461.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x12854b47267103130000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:28:20.000Z'}}, {'blockNum': '0x963b6c', 'uniqueId': '0x5151095825ed33f6dbe26f3e7440b5fd59fdd2896ee99659413ebcfc09c0b4c6:log:14', 'hash': '0x5151095825ed33f6dbe26f3e7440b5fd59fdd2896ee99659413ebcfc09c0b4c6', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 34975.904162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07680c2d250e84842000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:30:08.000Z'}}, {'blockNum': '0x963b6e', 'uniqueId': '0xedca6aeaaaafffad5a7256beeb22d2ad101d876d8e42d23d17bc29dfd9555d2f:log:1', 'hash': '0xedca6aeaaaafffad5a7256beeb22d2ad101d876d8e42d23d17bc29dfd9555d2f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 19376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x041a60043d8d60c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:30:35.000Z'}}, {'blockNum': '0x963b75', 'uniqueId': '0x2903e909c08919c38b27c9ec683736defabfebc37da5a59977d4bb70afa95689:log:22', 'hash': '0x2903e909c08919c38b27c9ec683736defabfebc37da5a59977d4bb70afa95689', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 8571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01d0a284f0e5510c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:31:01.000Z'}}, {'blockNum': '0x963b78', 'uniqueId': '0x5ca8cd0cf9b2d4587fe65510357a7b36ecc8a391bf018db5ec64eb7d50d60a6b:log:96', 'hash': '0x5ca8cd0cf9b2d4587fe65510357a7b36ecc8a391bf018db5ec64eb7d50d60a6b', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x1717373356e1b76af9ab4d6f31390581c23f28dd', 'value': 10977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0253107a0d5c86e40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:31:23.000Z'}}, {'blockNum': '0x963b79', 'uniqueId': '0xe663ca5e59770b84c7629010261e8b1b913a8755a041a9c3970f3bd2458cfcae:log:39', 'hash': '0xe663ca5e59770b84c7629010261e8b1b913a8755a041a9c3970f3bd2458cfcae', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 7837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01a8d83919cb60540000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:31:44.000Z'}}, {'blockNum': '0x963b7a', 'uniqueId': '0x70251dcfac403c6dadada761197ec191634a09e7ce580bdcdcef7b11919498b5:log:7', 'hash': '0x70251dcfac403c6dadada761197ec191634a09e7ce580bdcdcef7b11919498b5', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xde6c90395fd3bc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:32:02.000Z'}}, {'blockNum': '0x963b7e', 'uniqueId': '0x04f9ae448c9003e0f9738298b356ceb0ab0091775a7ba5ee14626a20138fb978:log:6', 'hash': '0x04f9ae448c9003e0f9738298b356ceb0ab0091775a7ba5ee14626a20138fb978', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 13967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02f5270ff3a998dc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:32:48.000Z'}}, {'blockNum': '0x963b82', 'uniqueId': '0x174313d6361e38f4812dc30c1821697704efac18f652f8dd848b79da80fdfac4:log:10', 'hash': '0x174313d6361e38f4812dc30c1821697704efac18f652f8dd848b79da80fdfac4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf2d54c3d1a47a04df02e3c0fe47d271a8daba37e', 'value': 21154.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x047ac8b0d406bab30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:33:54.000Z'}}, {'blockNum': '0x963b95', 'uniqueId': '0x0a5c708be925654ae06d2305bd2f57d6fc770aa67eff0222fa39ee90c87bebc9:log:0', 'hash': '0x0a5c708be925654ae06d2305bd2f57d6fc770aa67eff0222fa39ee90c87bebc9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 22851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04d6c1544636932c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:37:54.000Z'}}, {'blockNum': '0x963b99', 'uniqueId': '0x0f517524e9b21c7ed03424e1fba8b50c8fe6235572b785194f24c3f27a0ae019:log:48', 'hash': '0x0f517524e9b21c7ed03424e1fba8b50c8fe6235572b785194f24c3f27a0ae019', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 8571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01d0a284f0e5510c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:39:01.000Z'}}, {'blockNum': '0x963b9f', 'uniqueId': '0x8299a5030b45d3da2670edba14b386eef71bcd44607b8dcc084f042aa07f7839:log:0', 'hash': '0x8299a5030b45d3da2670edba14b386eef71bcd44607b8dcc084f042aa07f7839', 'from': '0x1717373356e1b76af9ab4d6f31390581c23f28dd', 'to': '0xc1da8f69e4881efe341600620268934ef01a3e63', 'value': 10977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0253107a0d5c86e40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:40:04.000Z'}}, {'blockNum': '0x963ba1', 'uniqueId': '0x139a41e8e2651d5900660a7fd7fb2670a700d0d0fa1b6e3330e37fbd2527073b:log:39', 'hash': '0x139a41e8e2651d5900660a7fd7fb2670a700d0d0fa1b6e3330e37fbd2527073b', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 60027.99935704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0cb61fd66d41b2086000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:41:00.000Z'}}, {'blockNum': '0x963ba6', 'uniqueId': '0xcdb9e00f56de25ed43676984d82c0ac1b443e8e4c835b2c45f61c5c026e513c0:log:1', 'hash': '0xcdb9e00f56de25ed43676984d82c0ac1b443e8e4c835b2c45f61c5c026e513c0', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04d6c1544636932c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:41:59.000Z'}}, {'blockNum': '0x963ba6', 'uniqueId': '0x7b88835cad3ead2cc5d96c6927b6aebb7cfa931cb6c6f95de11dc382a38a058c:log:4', 'hash': '0x7b88835cad3ead2cc5d96c6927b6aebb7cfa931cb6c6f95de11dc382a38a058c', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02f5270ff3a998dc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:41:59.000Z'}}, {'blockNum': '0x963ba7', 'uniqueId': '0xf5b064d12eb720da382f9cad324d439df2b29d25c593ff81fc001ed5aa37631f:log:11', 'hash': '0xf5b064d12eb720da382f9cad324d439df2b29d25c593ff81fc001ed5aa37631f', 'from': '0x6c14f95f0ca1afa9c0d525c4506f2ac5faadaf1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x7439fa2099e5800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:42:19.000Z'}}, {'blockNum': '0x963baa', 'uniqueId': '0x5feebc2c7b8bc57dc2ce6c86f90ce319536629bad2ac19e890900b7b9a8ff8db:log:16', 'hash': '0x5feebc2c7b8bc57dc2ce6c86f90ce319536629bad2ac19e890900b7b9a8ff8db', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 40016.99958091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0879536dcbafe80fcc00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:43:09.000Z'}}, {'blockNum': '0x963baf', 'uniqueId': '0xe9e0407c0d3f8918425c7e6617be3001ccd946f9da49d196e933fc44ec757028:log:29', 'hash': '0xe9e0407c0d3f8918425c7e6617be3001ccd946f9da49d196e933fc44ec757028', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 55596.224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0bc5e0997e94b6e00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:44:29.000Z'}}, {'blockNum': '0x963baf', 'uniqueId': '0xac2f8d757297e4b2653f1dc67f3da01b47b46ac572f1fb8fc55c949b377410ae:log:56', 'hash': '0xac2f8d757297e4b2653f1dc67f3da01b47b46ac572f1fb8fc55c949b377410ae', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 8480, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01cbb3a3ff08d0800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:44:29.000Z'}}, {'blockNum': '0x963bb0', 'uniqueId': '0x3512207c4b6456e66800d6fb8de3e72b142bdc7a291b9179fb400c95cb17aa55:log:4', 'hash': '0x3512207c4b6456e66800d6fb8de3e72b142bdc7a291b9179fb400c95cb17aa55', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:44:54.000Z'}}, {'blockNum': '0x963bb0', 'uniqueId': '0x71ae284895f12869cf7aec93bfb10438a8a4d053aecfc8750d26126ac992b982:log:6', 'hash': '0x71ae284895f12869cf7aec93bfb10438a8a4d053aecfc8750d26126ac992b982', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 87461.438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x12854b47267103130000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:44:54.000Z'}}, {'blockNum': '0x963bb1', 'uniqueId': '0x4ff1d9378cc4508647f04406126e11172744ec97780442e671c2161b0185c991:log:11', 'hash': '0x4ff1d9378cc4508647f04406126e11172744ec97780442e671c2161b0185c991', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1b2c4352fa9fb5567c49ac78ceb7209d23f6632e', 'value': 25767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0574d4f55c95423c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:45:01.000Z'}}, {'blockNum': '0x963bb3', 'uniqueId': '0xb5607b371961a88d6c66543917c87473fd5cc29eb9b3af656de9e52d54023521:log:3', 'hash': '0xb5607b371961a88d6c66543917c87473fd5cc29eb9b3af656de9e52d54023521', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 34975.904162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07680c2d250e84842000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:45:11.000Z'}}, {'blockNum': '0x963bb6', 'uniqueId': '0xfd4908a4d15beca6daa70c1f684d9de3b932433fde094bc4977ef995a7a8eb26:log:11', 'hash': '0xfd4908a4d15beca6daa70c1f684d9de3b932433fde094bc4977ef995a7a8eb26', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 228033.566162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x3049b971bab9b9b72000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:45:52.000Z'}}, {'blockNum': '0x963bb8', 'uniqueId': '0x9a4377acf2025fd64b595cd0f2cc1dc4dbecc0ea2202ce9f7813e691f210dd11:log:0', 'hash': '0x9a4377acf2025fd64b595cd0f2cc1dc4dbecc0ea2202ce9f7813e691f210dd11', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0xc1da8f69e4881efe341600620268934ef01a3e63', 'value': 40016.99958091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0879536dcbafe80fcc00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:46:16.000Z'}}, {'blockNum': '0x963bd3', 'uniqueId': '0x31867fca8de8049fa330db5751bbfc10e676d2f42531f90a8c52a919a227b51d:log:64', 'hash': '0x31867fca8de8049fa330db5751bbfc10e676d2f42531f90a8c52a919a227b51d', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 8480, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01cbb3a3ff08d0800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:55:20.000Z'}}, {'blockNum': '0x963bd5', 'uniqueId': '0xcf0965b3ff4f3d28073570f5295179f14fd0f413a508171e47f5f300e3bb4cf8:log:53', 'hash': '0xcf0965b3ff4f3d28073570f5295179f14fd0f413a508171e47f5f300e3bb4cf8', 'from': '0x1b2c4352fa9fb5567c49ac78ceb7209d23f6632e', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 25767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0574d4f55c95423c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T16:55:54.000Z'}}, {'blockNum': '0x963c22', 'uniqueId': '0x48625fd5b5464213e7275cb8729dd2036832a4cb293d29cb09382d367331090c:log:71', 'hash': '0x48625fd5b5464213e7275cb8729dd2036832a4cb293d29cb09382d367331090c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 17297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03a9ac188090fba40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T17:10:04.000Z'}}, {'blockNum': '0x963c26', 'uniqueId': '0x96cba5c9792ed12c25e955d2ef4ef681db953fd3cb7f6fbe416a314a6deeb497:log:15', 'hash': '0x96cba5c9792ed12c25e955d2ef4ef681db953fd3cb7f6fbe416a314a6deeb497', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T17:12:07.000Z'}}, {'blockNum': '0x963c45', 'uniqueId': '0x166134c9529bcb8d4400a2c2bcdeef8ea7ba66507180d278c8a4598035c74be2:log:20', 'hash': '0x166134c9529bcb8d4400a2c2bcdeef8ea7ba66507180d278c8a4598035c74be2', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 17297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03a9ac188090fba40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T17:19:42.000Z'}}, {'blockNum': '0x963c4d', 'uniqueId': '0x1e847a2dc60111344242965b511f9cdd4bfec32d6f05633ed9c32ba35e819d87:log:20', 'hash': '0x1e847a2dc60111344242965b511f9cdd4bfec32d6f05633ed9c32ba35e819d87', 'from': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T17:22:04.000Z'}}, {'blockNum': '0x963c68', 'uniqueId': '0x5bd7e11383839fa9443fcfb1342ed16acd308e913812d0eecb3e32d19941c77b:log:67', 'hash': '0x5bd7e11383839fa9443fcfb1342ed16acd308e913812d0eecb3e32d19941c77b', 'from': '0xf2d54c3d1a47a04df02e3c0fe47d271a8daba37e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 21154.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x047ac8b0d406bab30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T17:27:56.000Z'}}, {'blockNum': '0x963c78', 'uniqueId': '0xf108455f29083e8d71e522948a68548d59c7030d9a9b7af733631f1231571661:log:4', 'hash': '0xf108455f29083e8d71e522948a68548d59c7030d9a9b7af733631f1231571661', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 29125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x062ade91e522f3f40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T17:30:47.000Z'}}, {'blockNum': '0x963c78', 'uniqueId': '0x37b20ebac7d9b5807ae4050029194c583df297d50202b178d7f6b0006e3d56d9:log:7', 'hash': '0x37b20ebac7d9b5807ae4050029194c583df297d50202b178d7f6b0006e3d56d9', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 60027.99935704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0cb61fd66d41b2086000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T17:30:47.000Z'}}, {'blockNum': '0x963c78', 'uniqueId': '0xf3f331e6d153a70db8a7756a6868a1da2a42dd6d5902d7a325d767f84a9bf558:log:10', 'hash': '0xf3f331e6d153a70db8a7756a6868a1da2a42dd6d5902d7a325d767f84a9bf558', 'from': '0x5ef9d31556dd8430d1943f8dda11401977c42abf', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 18710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03f64568ee2be6980000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T17:30:47.000Z'}}, {'blockNum': '0x963cf7', 'uniqueId': '0xe3000cf33e10b32e2ef6409d244c799cf7847b3c73e255ebd1227ce3ce3d13f6:log:2', 'hash': '0xe3000cf33e10b32e2ef6409d244c799cf7847b3c73e255ebd1227ce3ce3d13f6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 5412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x012562966dfebe100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:04:14.000Z'}}, {'blockNum': '0x963d17', 'uniqueId': '0xc21f45a21e3a95080c41638c837b935f9c86cab546a0b41e5055ddc937a21e35:log:4', 'hash': '0xc21f45a21e3a95080c41638c837b935f9c86cab546a0b41e5055ddc937a21e35', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 17873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03c8e5b394c99ca40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:11:32.000Z'}}, {'blockNum': '0x963d1a', 'uniqueId': '0x6ac895ca1b148dc3c193374011d1a810c6e91092a317f5b0270e7b2958f8c195:log:36', 'hash': '0x6ac895ca1b148dc3c193374011d1a810c6e91092a317f5b0270e7b2958f8c195', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 5412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x012562966dfebe100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:12:10.000Z'}}, {'blockNum': '0x963d20', 'uniqueId': '0x7b19e314f3940505e5acb5cc13674ec39833bafc2a8e2e7fff6baa538a13e569:log:4', 'hash': '0x7b19e314f3940505e5acb5cc13674ec39833bafc2a8e2e7fff6baa538a13e569', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 9234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f4937e1c2bd5080000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:14:34.000Z'}}, {'blockNum': '0x963d20', 'uniqueId': '0xc0817660a235afa7705d9209086fa90dee9b2b199277f077cdd90fcc6b423028:log:5', 'hash': '0xc0817660a235afa7705d9209086fa90dee9b2b199277f077cdd90fcc6b423028', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 7807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01a737e3b0bdc29c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:14:34.000Z'}}, {'blockNum': '0x963d2e', 'uniqueId': '0x25dc5efaf22400d1fb3bda1d697a45653b7d7053e276d708f9b643edadec40e8:log:7', 'hash': '0x25dc5efaf22400d1fb3bda1d697a45653b7d7053e276d708f9b643edadec40e8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 28330, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05ffc5ba853a20680000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:16:53.000Z'}}, {'blockNum': '0x963d3b', 'uniqueId': '0x5b49cde46bc7ba6fc652386b983fec318a8e2d96b6d1ff8831c63710258566fe:log:41', 'hash': '0x5b49cde46bc7ba6fc652386b983fec318a8e2d96b6d1ff8831c63710258566fe', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 17873, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03c8e5b394c99ca40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:19:39.000Z'}}, {'blockNum': '0x963d3e', 'uniqueId': '0x15a6fbf0cd6732cdd6c36cabb3225a595b9054ea33d50ff19b066ed265c5ff04:log:24', 'hash': '0x15a6fbf0cd6732cdd6c36cabb3225a595b9054ea33d50ff19b066ed265c5ff04', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2483.214729300743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x869d86efa9dc92a49a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:20:02.000Z'}}, {'blockNum': '0x963d3e', 'uniqueId': '0x15a6fbf0cd6732cdd6c36cabb3225a595b9054ea33d50ff19b066ed265c5ff04:log:29', 'hash': '0x15a6fbf0cd6732cdd6c36cabb3225a595b9054ea33d50ff19b066ed265c5ff04', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2483.214729300743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x869d86efa9dc92a49a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:20:02.000Z'}}, {'blockNum': '0x963d44', 'uniqueId': '0x1fcbb66a59a2e878298006940249326363acaae69ced05d9fa5b2d50b3b60913:log:8', 'hash': '0x1fcbb66a59a2e878298006940249326363acaae69ced05d9fa5b2d50b3b60913', 'from': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 9234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f4937e1c2bd5080000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:20:44.000Z'}}, {'blockNum': '0x963d4d', 'uniqueId': '0xaa1243c120b3662870c29401472d101aeb7685e47055f283c235e175eb1b33b4:log:2', 'hash': '0xaa1243c120b3662870c29401472d101aeb7685e47055f283c235e175eb1b33b4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 9305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f86cd0c7ff41c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:22:33.000Z'}}, {'blockNum': '0x963d51', 'uniqueId': '0x56a5af7d3938fdc99c5436cffd3400e94fa498f57e2753cfc0a4e8e438e59dc8:log:90', 'hash': '0x56a5af7d3938fdc99c5436cffd3400e94fa498f57e2753cfc0a4e8e438e59dc8', 'from': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 36137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07a6fd9e35f7e3040000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:23:51.000Z'}}, {'blockNum': '0x963d69', 'uniqueId': '0x3e6ea9bedc2aa8c0c959038d22eee6a6b42cf5bfa0a7eb0b29f1e229b60c64fc:log:13', 'hash': '0x3e6ea9bedc2aa8c0c959038d22eee6a6b42cf5bfa0a7eb0b29f1e229b60c64fc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 26766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05aafcde53a779780000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:31:22.000Z'}}, {'blockNum': '0x963d71', 'uniqueId': '0xf51dad976faccaa9621ebf384b8e18decc6dbbc69969fb617ee9b9d6775c3f1e:log:46', 'hash': '0xf51dad976faccaa9621ebf384b8e18decc6dbbc69969fb617ee9b9d6775c3f1e', 'from': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 9305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f86cd0c7ff41c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:33:01.000Z'}}, {'blockNum': '0x963d81', 'uniqueId': '0xb7df3167113983ccb23c71c4986cec1f9728e4df936eecfd03ed5fa214e279d8:log:5', 'hash': '0xb7df3167113983ccb23c71c4986cec1f9728e4df936eecfd03ed5fa214e279d8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 23008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04df442452643b800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:35:47.000Z'}}, {'blockNum': '0x963d8f', 'uniqueId': '0xbfdb054b67921451f8cd202607d658f84d2da7540d588edf5aa2050bd817df06:log:4', 'hash': '0xbfdb054b67921451f8cd202607d658f84d2da7540d588edf5aa2050bd817df06', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 26766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05aafcde53a779780000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:37:37.000Z'}}, {'blockNum': '0x963da4', 'uniqueId': '0x08b79265d34c7d8eb6a37cd30c31bbc077816edb696c9956235e3b3646079c11:log:12', 'hash': '0x08b79265d34c7d8eb6a37cd30c31bbc077816edb696c9956235e3b3646079c11', 'from': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 23008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04df442452643b800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:39:41.000Z'}}, {'blockNum': '0x963dab', 'uniqueId': '0x6037a91e183b932914a470bb9e5046c193c9652e81afdbc2cd460e922fd9acf2:log:3', 'hash': '0x6037a91e183b932914a470bb9e5046c193c9652e81afdbc2cd460e922fd9acf2', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 7837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01a8d83919cb60540000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T18:40:56.000Z'}}, {'blockNum': '0x963e13', 'uniqueId': '0xafa642484ad1f53d103b2c70b79f52c6afceded6fb1bf9a4b3e74fe6dee08aef:log:46', 'hash': '0xafa642484ad1f53d103b2c70b79f52c6afceded6fb1bf9a4b3e74fe6dee08aef', 'from': '0xc6a34f064a5ebded3f04ff67c1ca1cad9cc84d4e', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1647.115827376203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x594a52ee347a36068e', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:02:04.000Z'}}, {'blockNum': '0x963e13', 'uniqueId': '0xafa642484ad1f53d103b2c70b79f52c6afceded6fb1bf9a4b3e74fe6dee08aef:log:47', 'hash': '0xafa642484ad1f53d103b2c70b79f52c6afceded6fb1bf9a4b3e74fe6dee08aef', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1647.115827376203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x594a52ee347a36068e', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:02:04.000Z'}}, {'blockNum': '0x963e23', 'uniqueId': '0x1676b6dac65b71f156153469102eba84f2eb5dfad765578b7789cd767f6cd9cb:log:17', 'hash': '0x1676b6dac65b71f156153469102eba84f2eb5dfad765578b7789cd767f6cd9cb', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x6b7f772b7be15a5b274ce17e1bcb33144adc24f2', 'value': 2480, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8670e9ec6598c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:05:39.000Z'}}, {'blockNum': '0x963e47', 'uniqueId': '0x4a00b70cce5fa685c8b73d2a95e1271c36d9288379a834d2f9724b636e64d044:log:32', 'hash': '0x4a00b70cce5fa685c8b73d2a95e1271c36d9288379a834d2f9724b636e64d044', 'from': '0x6b7f772b7be15a5b274ce17e1bcb33144adc24f2', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 2480, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8670e9ec6598c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:15:19.000Z'}}, {'blockNum': '0x963e63', 'uniqueId': '0x7cebea9d0c8caf1dcfa76a49ddd4975044a61c9967e5f4aff19e00baca8bceac:log:154', 'hash': '0x7cebea9d0c8caf1dcfa76a49ddd4975044a61c9967e5f4aff19e00baca8bceac', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xffff46e05a09314daae9176fc32dba0f4172dcdb', 'value': 5.179806463937686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x47e25e89004727b7', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:19:46.000Z'}}, {'blockNum': '0x963e63', 'uniqueId': '0xdb70dec63178607fc1e56bf4f5a647f832794c5180b908584204f94092e8a931:log:155', 'hash': '0xdb70dec63178607fc1e56bf4f5a647f832794c5180b908584204f94092e8a931', 'from': '0xffff46e05a09314daae9176fc32dba0f4172dcdb', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 5.179806463937686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x47e25e89004727b7', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:19:46.000Z'}}, {'blockNum': '0x963e8c', 'uniqueId': '0x5a19fce89f5f1ebadc43c705c5fa841c3302c1989d2a46fe170b2f9e278e3839:log:29', 'hash': '0x5a19fce89f5f1ebadc43c705c5fa841c3302c1989d2a46fe170b2f9e278e3839', 'from': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 27792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05e29b7a8fac58400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:29:12.000Z'}}, {'blockNum': '0x963e8c', 'uniqueId': '0xe0616fa971cafe6be91ee056c165675756753de6df31be2cd2488bfd02f9c222:log:58', 'hash': '0xe0616fa971cafe6be91ee056c165675756753de6df31be2cd2488bfd02f9c222', 'from': '0x796199fe0c3aedcdb6cb66502a0c54993d6db737', 'to': '0xe470f3ec98c8753dc96d6f092226fed968ba9f40', 'value': 6593.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01656a5630fe82b30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:29:12.000Z'}}, {'blockNum': '0x963e8d', 'uniqueId': '0xc9846e927260ec1f7ea718d9e6bd54a3f5e9101f6f79047c4f9dbfa143fb0237:log:24', 'hash': '0xc9846e927260ec1f7ea718d9e6bd54a3f5e9101f6f79047c4f9dbfa143fb0237', 'from': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 13154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02c9146bbb1f00480000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:29:26.000Z'}}, {'blockNum': '0x963e97', 'uniqueId': '0x229113d5f728b985a694a8995aca397478eb902901ee410d2dc2f63dbe0f4bbd:log:31', 'hash': '0x229113d5f728b985a694a8995aca397478eb902901ee410d2dc2f63dbe0f4bbd', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01d7d843dc3b480000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:31:33.000Z'}}, {'blockNum': '0x963e9f', 'uniqueId': '0xee59c1ee1f16f4da107f2fe2b28041f98158715ab0a681808f09a9aab03e144b:log:28', 'hash': '0xee59c1ee1f16f4da107f2fe2b28041f98158715ab0a681808f09a9aab03e144b', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 11281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02638b5302b34da40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:34:39.000Z'}}, {'blockNum': '0x963ea3', 'uniqueId': '0xae95d047d9f1787b1cd7ccf740d34cfe4da10943dcb84b52e0660847dcbfeced:log:37', 'hash': '0xae95d047d9f1787b1cd7ccf740d34cfe4da10943dcb84b52e0660847dcbfeced', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 11335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x026678b98c989cbc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:36:07.000Z'}}, {'blockNum': '0x963eaf', 'uniqueId': '0x5a6a0007d148cd0d1a3b1526df5afae1ba1cf242882d00cc78828ed35ccbd907:log:22', 'hash': '0x5a6a0007d148cd0d1a3b1526df5afae1ba1cf242882d00cc78828ed35ccbd907', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 251034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x35289495a4dd82280000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:39:12.000Z'}}, {'blockNum': '0x963ec0', 'uniqueId': '0x5fb0a1f079c7063be0b1185acea8a0966305f574eaff46f8ace4b5529fed2314:log:0', 'hash': '0x5fb0a1f079c7063be0b1185acea8a0966305f574eaff46f8ace4b5529fed2314', 'from': '0xe470f3ec98c8753dc96d6f092226fed968ba9f40', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6593.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01656a5630fe82b30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:41:55.000Z'}}, {'blockNum': '0x963ec6', 'uniqueId': '0x9552d300c72b5726e136c42eeb48dea07ab9155a6ae01e9d7a9a49f20c29b3f2:log:12', 'hash': '0x9552d300c72b5726e136c42eeb48dea07ab9155a6ae01e9d7a9a49f20c29b3f2', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 11335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x026678b98c989cbc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:43:29.000Z'}}, {'blockNum': '0x963ed3', 'uniqueId': '0x951897eddc8aea2e118cfd9133a5a14fbef4998b6d5d0a70db3e88f56e47bf9a:log:4', 'hash': '0x951897eddc8aea2e118cfd9133a5a14fbef4998b6d5d0a70db3e88f56e47bf9a', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 251068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x352a6c6de8b9bd700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:47:02.000Z'}}, {'blockNum': '0x963ef1', 'uniqueId': '0xa3ca4a89a663ed13bb430383a1cd5b734a120c4eb159f8d989c5412279e7ffd3:log:18', 'hash': '0xa3ca4a89a663ed13bb430383a1cd5b734a120c4eb159f8d989c5412279e7ffd3', 'from': '0x9924acaba408457d573876c5c4e9c6fa0b039684', 'to': '0x2ecddfbf28b164df05b5e8ed2ab69582e2ccfc0a', 'value': 450.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1866646d449b51f823', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T19:53:23.000Z'}}, {'blockNum': '0x963f39', 'uniqueId': '0xbd81b5629de26ded656487d4e74cc46d55feec30adb7ca8a8f23ae1be8a98249:log:1', 'hash': '0xbd81b5629de26ded656487d4e74cc46d55feec30adb7ca8a8f23ae1be8a98249', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 19481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0420112f2d3d08c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T20:11:29.000Z'}}, {'blockNum': '0x963f71', 'uniqueId': '0x7ed622311f0de1e08ccbb8c4f8f3b7e52abd7b8a8ff568aebbdaea1527ebb9b1:log:88', 'hash': '0x7ed622311f0de1e08ccbb8c4f8f3b7e52abd7b8a8ff568aebbdaea1527ebb9b1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 116033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1892295a4ad174640000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T20:23:33.000Z'}}, {'blockNum': '0x963f96', 'uniqueId': '0xe87e7e1f4b5ec979236b3212964fb1b528bee2e6a6b8206ba16ac95747443a06:log:22', 'hash': '0xe87e7e1f4b5ec979236b3212964fb1b528bee2e6a6b8206ba16ac95747443a06', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 116033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1892295a4ad174640000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T20:31:22.000Z'}}, {'blockNum': '0x964046', 'uniqueId': '0x6b2205bfda0cb9a895ccba75e633a9f4940ea1adbae171adb501ecff5bea2117:log:16', 'hash': '0x6b2205bfda0cb9a895ccba75e633a9f4940ea1adbae171adb501ecff5bea2117', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1517.151758866879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x523eb5ce7993680000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T21:07:43.000Z'}}, {'blockNum': '0x964046', 'uniqueId': '0x6b2205bfda0cb9a895ccba75e633a9f4940ea1adbae171adb501ecff5bea2117:log:18', 'hash': '0x6b2205bfda0cb9a895ccba75e633a9f4940ea1adbae171adb501ecff5bea2117', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 1517.151758866879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x523eb5ce7993680000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T21:07:43.000Z'}}, {'blockNum': '0x964054', 'uniqueId': '0xd9af804eca4d41f4cbdef8ee4ac32bbc84d273013005c2f4567be6df4715c014:log:0', 'hash': '0xd9af804eca4d41f4cbdef8ee4ac32bbc84d273013005c2f4567be6df4715c014', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x5ef9d31556dd8430d1943f8dda11401977c42abf', 'value': 29247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06317ba8f6c0b99c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T21:11:39.000Z'}}, {'blockNum': '0x9640ff', 'uniqueId': '0x68c9e695879b2ee99d743e3491e547de0a0248216a3737bfb85f69b357878d94:log:2', 'hash': '0x68c9e695879b2ee99d743e3491e547de0a0248216a3737bfb85f69b357878d94', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 8589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01d19c51c98716140000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T21:50:43.000Z'}}, {'blockNum': '0x964167', 'uniqueId': '0xaaa4382d22577cd1092756b4a7999ba457a7b1e75336eb6424c3cbce567a46f5:log:1', 'hash': '0xaaa4382d22577cd1092756b4a7999ba457a7b1e75336eb6424c3cbce567a46f5', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 19481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0420112f2d3d08c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T22:10:45.000Z'}}, {'blockNum': '0x964167', 'uniqueId': '0x72b2905c4228b0e3d10e6e7b8deeaff652e3d44ebe235097c82782a08ef3bac5:log:5', 'hash': '0x72b2905c4228b0e3d10e6e7b8deeaff652e3d44ebe235097c82782a08ef3bac5', 'from': '0x5ef9d31556dd8430d1943f8dda11401977c42abf', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 29247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06317ba8f6c0b99c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T22:10:45.000Z'}}, {'blockNum': '0x96417a', 'uniqueId': '0xcd3a087990290d04a9103d0b3431c811ad2abfd7b82807a771516414c95c5a3c:log:2', 'hash': '0xcd3a087990290d04a9103d0b3431c811ad2abfd7b82807a771516414c95c5a3c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0b82b5e416c3337fcdaaffea8845d3f0b0c0a8ea', 'value': 1967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x6aa19bce63295c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T22:15:50.000Z'}}, {'blockNum': '0x964193', 'uniqueId': '0x6162d0f088f66232b3e91b22cc3b07ab2e8f6468e8d8e109d1d4d2545e5028b5:log:10', 'hash': '0x6162d0f088f66232b3e91b22cc3b07ab2e8f6468e8d8e109d1d4d2545e5028b5', 'from': '0x0b82b5e416c3337fcdaaffea8845d3f0b0c0a8ea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x6aa19bce63295c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-10T22:22:00.000Z'}}, {'blockNum': '0x9643ef', 'uniqueId': '0xdcfff46e4c74d13e4b1393784573392e4e26c6dc6d893c918cf026d1d5a309ac:log:0', 'hash': '0xdcfff46e4c74d13e4b1393784573392e4e26c6dc6d893c918cf026d1d5a309ac', 'from': '0xd062a7b10ef416bab86e4dd4dc426971be824ecd', 'to': '0x4177fe1726458f002c423d8072d31536cfba551f', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-11T00:37:13.000Z'}}, {'blockNum': '0x964424', 'uniqueId': '0x3435687904551306e8cbda0b2f36c9c519df819c9cdf3d68b35b672f2e35256f:log:12', 'hash': '0x3435687904551306e8cbda0b2f36c9c519df819c9cdf3d68b35b672f2e35256f', 'from': '0x4177fe1726458f002c423d8072d31536cfba551f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-11T00:52:00.000Z'}}]}}
Number of returned transfers:  310
Answer is complete
 
symbol             GVT
group              BPF
date        2020-04-15
hour             15:56
exchange       binance
Name: 823, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-04-15 15:56:00 2020-04-15 03:56:00 2020-04-16 03:56:00
Unix timestamps:  1586915760.0 1587002160.0
Hex Block Numbers:  0x96ab04 0x96c468
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BNT
group              BPF
date        2020-04-24
hour             15:59
exchange       binance
Name: 824, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2020-04-24 15:59:00 2020-04-24 03:59:00 2020-04-25 03:59:00
Unix timestamps:  1587693540.0 1587779940.0
Hex Block Numbers:  0x978e4d 0x97a794
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x978e70', 'uniqueId': '0x5666d1ea13188003373046941b0ac94cb674acd70028aff18c65c62688eeb7c5:log:72', 'hash': '0x5666d1ea13188003373046941b0ac94cb674acd70028aff18c65c62688eeb7c5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 895.0888726672596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3085da7b4e88dc3770', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:07:58.000Z'}}, {'blockNum': '0x978e70', 'uniqueId': '0x5666d1ea13188003373046941b0ac94cb674acd70028aff18c65c62688eeb7c5:log:78', 'hash': '0x5666d1ea13188003373046941b0ac94cb674acd70028aff18c65c62688eeb7c5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 895.0888726672596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3085da7b4e88dc3770', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:07:58.000Z'}}, {'blockNum': '0x978e82', 'uniqueId': '0x9bc676da953634ebf9601e8a0cf12cb797e118c8983c9ff8914c8ec226d4f67c:log:132', 'hash': '0x9bc676da953634ebf9601e8a0cf12cb797e118c8983c9ff8914c8ec226d4f67c', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 370.4310546438196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1414c379921a2ecc28', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:11:50.000Z'}}, {'blockNum': '0x978e82', 'uniqueId': '0x9bc676da953634ebf9601e8a0cf12cb797e118c8983c9ff8914c8ec226d4f67c:log:138', 'hash': '0x9bc676da953634ebf9601e8a0cf12cb797e118c8983c9ff8914c8ec226d4f67c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 370.4310546438196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1414c379921a2ecc28', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:11:50.000Z'}}, {'blockNum': '0x978e86', 'uniqueId': '0x90b8724716f4bcd9abed722bb6c1b2417ea9390459d0f0f9764b0d02a2513037:log:115', 'hash': '0x90b8724716f4bcd9abed722bb6c1b2417ea9390459d0f0f9764b0d02a2513037', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 23.324072844142723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0143afc0acee76392a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:13:35.000Z'}}, {'blockNum': '0x978e86', 'uniqueId': '0x90b8724716f4bcd9abed722bb6c1b2417ea9390459d0f0f9764b0d02a2513037:log:121', 'hash': '0x90b8724716f4bcd9abed722bb6c1b2417ea9390459d0f0f9764b0d02a2513037', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 23.324072844142723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0143afc0acee76392a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:13:35.000Z'}}, {'blockNum': '0x978e8a', 'uniqueId': '0x1e595652c75f85d6b047dfdb07f0e987c467c0b3f14bd4f2cce2dac0815436fc:log:100', 'hash': '0x1e595652c75f85d6b047dfdb07f0e987c467c0b3f14bd4f2cce2dac0815436fc', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 451.1881896049755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18757e73f2c0280f6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:14:22.000Z'}}, {'blockNum': '0x978e8a', 'uniqueId': '0x1e595652c75f85d6b047dfdb07f0e987c467c0b3f14bd4f2cce2dac0815436fc:log:106', 'hash': '0x1e595652c75f85d6b047dfdb07f0e987c467c0b3f14bd4f2cce2dac0815436fc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 451.1881896049755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18757e73f2c0280f6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:14:22.000Z'}}, {'blockNum': '0x978ec6', 'uniqueId': '0x3a704af4bde80b559c56445e4ab1fda44231dd1f1375e8bdc78d31343aa78b8a:log:3', 'hash': '0x3a704af4bde80b559c56445e4ab1fda44231dd1f1375e8bdc78d31343aa78b8a', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 884.2692860438627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fefb39698f0b8685e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:28:17.000Z'}}, {'blockNum': '0x978ec6', 'uniqueId': '0x3a704af4bde80b559c56445e4ab1fda44231dd1f1375e8bdc78d31343aa78b8a:log:9', 'hash': '0x3a704af4bde80b559c56445e4ab1fda44231dd1f1375e8bdc78d31343aa78b8a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 884.2692860438627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fefb39698f0b8685e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:28:17.000Z'}}, {'blockNum': '0x978ed6', 'uniqueId': '0x15a253c68f9d4054cdb8a8ec59997a04c72db6e895852c702c881f435743dbed:log:143', 'hash': '0x15a253c68f9d4054cdb8a8ec59997a04c72db6e895852c702c881f435743dbed', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 21.978201626437077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01310241ef09b1c234', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:31:50.000Z'}}, {'blockNum': '0x978ed6', 'uniqueId': '0x15a253c68f9d4054cdb8a8ec59997a04c72db6e895852c702c881f435743dbed:log:149', 'hash': '0x15a253c68f9d4054cdb8a8ec59997a04c72db6e895852c702c881f435743dbed', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 21.978201626437077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01310241ef09b1c234', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:31:50.000Z'}}, {'blockNum': '0x978edb', 'uniqueId': '0x64f679b27bc7cc8b20df1f3707bfd2d52073643f5dcffc642492688a7489c51d:log:4', 'hash': '0x64f679b27bc7cc8b20df1f3707bfd2d52073643f5dcffc642492688a7489c51d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 895.2507845029071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x308819b543718e805e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:33:00.000Z'}}, {'blockNum': '0x978edb', 'uniqueId': '0x64f679b27bc7cc8b20df1f3707bfd2d52073643f5dcffc642492688a7489c51d:log:10', 'hash': '0x64f679b27bc7cc8b20df1f3707bfd2d52073643f5dcffc642492688a7489c51d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 895.2507845029071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x308819b543718e805e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:33:00.000Z'}}, {'blockNum': '0x978f0d', 'uniqueId': '0xc797c7928565569bcf1e014a3d12d587a95bdacb502066ee4ed78bb549803e06:log:102', 'hash': '0xc797c7928565569bcf1e014a3d12d587a95bdacb502066ee4ed78bb549803e06', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 85.03984116949222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049c2a34fbb739121a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:42:59.000Z'}}, {'blockNum': '0x978f0d', 'uniqueId': '0xc797c7928565569bcf1e014a3d12d587a95bdacb502066ee4ed78bb549803e06:log:108', 'hash': '0xc797c7928565569bcf1e014a3d12d587a95bdacb502066ee4ed78bb549803e06', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4886d62cb84e24dd007dbd1f24f62591fe2c7d8a', 'value': 85.03984116949222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049c2a34fbb739121a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:42:59.000Z'}}, {'blockNum': '0x978f3f', 'uniqueId': '0x1c598851ace95f77fa849ecd183edebbe2f1405e5b2c1b675e86b8b865637587:log:90', 'hash': '0x1c598851ace95f77fa849ecd183edebbe2f1405e5b2c1b675e86b8b865637587', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 447.5523851952522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1843097b19d5cd80d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:52:44.000Z'}}, {'blockNum': '0x978f3f', 'uniqueId': '0x1c598851ace95f77fa849ecd183edebbe2f1405e5b2c1b675e86b8b865637587:log:96', 'hash': '0x1c598851ace95f77fa849ecd183edebbe2f1405e5b2c1b675e86b8b865637587', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 447.5523851952522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1843097b19d5cd80d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:52:44.000Z'}}, {'blockNum': '0x978f46', 'uniqueId': '0x900a2eafaca1a27f605f7e987a3fc3335b1599e65832e04872a6484e1cc768a7:log:181', 'hash': '0x900a2eafaca1a27f605f7e987a3fc3335b1599e65832e04872a6484e1cc768a7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8941.975115315381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e4bed54ec3c3dd5133', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:54:15.000Z'}}, {'blockNum': '0x978f46', 'uniqueId': '0x900a2eafaca1a27f605f7e987a3fc3335b1599e65832e04872a6484e1cc768a7:log:186', 'hash': '0x900a2eafaca1a27f605f7e987a3fc3335b1599e65832e04872a6484e1cc768a7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 8941.975115315381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e4bed54ec3c3dd5133', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:54:15.000Z'}}, {'blockNum': '0x978f4a', 'uniqueId': '0xac60acabd0c6cf96551ea828aa635b40161dd3873e74f42a890b54bec19aba2f:log:138', 'hash': '0xac60acabd0c6cf96551ea828aa635b40161dd3873e74f42a890b54bec19aba2f', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 827.6956950392915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cde95d1518904bbec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:55:19.000Z'}}, {'blockNum': '0x978f4a', 'uniqueId': '0xac60acabd0c6cf96551ea828aa635b40161dd3873e74f42a890b54bec19aba2f:log:144', 'hash': '0xac60acabd0c6cf96551ea828aa635b40161dd3873e74f42a890b54bec19aba2f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 827.6956950392915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cde95d1518904bbec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:55:19.000Z'}}, {'blockNum': '0x978f4a', 'uniqueId': '0x28fad3fe0871aa36c3e4f500aff41025ec22dbbf7e18690dcdc5279305134f6d:log:164', 'hash': '0x28fad3fe0871aa36c3e4f500aff41025ec22dbbf7e18690dcdc5279305134f6d', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 862.6806363767605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ec4194c1b54bd7c25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:55:19.000Z'}}, {'blockNum': '0x978f4a', 'uniqueId': '0x28fad3fe0871aa36c3e4f500aff41025ec22dbbf7e18690dcdc5279305134f6d:log:170', 'hash': '0x28fad3fe0871aa36c3e4f500aff41025ec22dbbf7e18690dcdc5279305134f6d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 862.6806363767605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ec4194c1b54bd7c25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:55:19.000Z'}}, {'blockNum': '0x978f53', 'uniqueId': '0x858727bfc1c1fa6b5dec61df328126b3c64dd37e316b7783d5e0c48fffd3bb94:log:134', 'hash': '0x858727bfc1c1fa6b5dec61df328126b3c64dd37e316b7783d5e0c48fffd3bb94', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 79.95377697735196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045594e08c31de85b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:57:21.000Z'}}, {'blockNum': '0x978f53', 'uniqueId': '0x858727bfc1c1fa6b5dec61df328126b3c64dd37e316b7783d5e0c48fffd3bb94:log:140', 'hash': '0x858727bfc1c1fa6b5dec61df328126b3c64dd37e316b7783d5e0c48fffd3bb94', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 79.95377697735196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045594e08c31de85b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:57:21.000Z'}}, {'blockNum': '0x978f69', 'uniqueId': '0x9e80dc2def300bfeb71bb2b921d5e34625167d5d01909c6243beef5169c5395e:log:120', 'hash': '0x9e80dc2def300bfeb71bb2b921d5e34625167d5d01909c6243beef5169c5395e', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 358.29787450321254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136c61c2846578c793', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:01:21.000Z'}}, {'blockNum': '0x978f69', 'uniqueId': '0x9e80dc2def300bfeb71bb2b921d5e34625167d5d01909c6243beef5169c5395e:log:126', 'hash': '0x9e80dc2def300bfeb71bb2b921d5e34625167d5d01909c6243beef5169c5395e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 358.29787450321254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136c61c2846578c793', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:01:21.000Z'}}, {'blockNum': '0x978f88', 'uniqueId': '0xf861503a806006dbf763d4d6876cacd9fe18366f2fca16bec729e76cfbdc7752:log:74', 'hash': '0xf861503a806006dbf763d4d6876cacd9fe18366f2fca16bec729e76cfbdc7752', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 670.260799110489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455bcb598da26fbc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:08:34.000Z'}}, {'blockNum': '0x978f88', 'uniqueId': '0xf861503a806006dbf763d4d6876cacd9fe18366f2fca16bec729e76cfbdc7752:log:80', 'hash': '0xf861503a806006dbf763d4d6876cacd9fe18366f2fca16bec729e76cfbdc7752', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 670.260799110489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455bcb598da26fbc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:08:34.000Z'}}, {'blockNum': '0x978f8f', 'uniqueId': '0x2cf58aec87a3bb7a7b8ac99e33b1236a7799f45524311339dfd22595f257fcfc:log:177', 'hash': '0x2cf58aec87a3bb7a7b8ac99e33b1236a7799f45524311339dfd22595f257fcfc', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 448.6831034872471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1852ba99658d31af54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:10:56.000Z'}}, {'blockNum': '0x978f8f', 'uniqueId': '0x2cf58aec87a3bb7a7b8ac99e33b1236a7799f45524311339dfd22595f257fcfc:log:183', 'hash': '0x2cf58aec87a3bb7a7b8ac99e33b1236a7799f45524311339dfd22595f257fcfc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 448.6831034872471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1852ba99658d31af54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:10:56.000Z'}}, {'blockNum': '0x978f9a', 'uniqueId': '0x796e92430674131f811490fb25a01f9c5490ae8fc5806f26cbf06eade5f83b86:log:75', 'hash': '0x796e92430674131f811490fb25a01f9c5490ae8fc5806f26cbf06eade5f83b86', 'from': '0x5dcf7ae55c91e0216d9ff5bec88924640f1f9581', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 646.4253637533745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x230af43b6ce28e8502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:13:59.000Z'}}, {'blockNum': '0x978f9a', 'uniqueId': '0x796e92430674131f811490fb25a01f9c5490ae8fc5806f26cbf06eade5f83b86:log:81', 'hash': '0x796e92430674131f811490fb25a01f9c5490ae8fc5806f26cbf06eade5f83b86', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 646.4253637533745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x230af43b6ce28e8502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:13:59.000Z'}}, {'blockNum': '0x978fa0', 'uniqueId': '0x33b7cf16dabaa0ecdfd185438a6515e123069e96dde8e4450b994863f002d4e3:log:20', 'hash': '0x33b7cf16dabaa0ecdfd185438a6515e123069e96dde8e4450b994863f002d4e3', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 675.3639257261934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249c8ea8376f0e54ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:15:20.000Z'}}, {'blockNum': '0x978fa0', 'uniqueId': '0x33b7cf16dabaa0ecdfd185438a6515e123069e96dde8e4450b994863f002d4e3:log:26', 'hash': '0x33b7cf16dabaa0ecdfd185438a6515e123069e96dde8e4450b994863f002d4e3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 675.3639257261934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249c8ea8376f0e54ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:15:20.000Z'}}, {'blockNum': '0x978fa2', 'uniqueId': '0x5fd9bdeec9f1d7a26c96334072bd3c7af4b278e2e02166b9e1a2e0460d73a839:log:37', 'hash': '0x5fd9bdeec9f1d7a26c96334072bd3c7af4b278e2e02166b9e1a2e0460d73a839', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1117.311850181178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c91d117f7c79528f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:15:50.000Z'}}, {'blockNum': '0x978fa2', 'uniqueId': '0x5fd9bdeec9f1d7a26c96334072bd3c7af4b278e2e02166b9e1a2e0460d73a839:log:43', 'hash': '0x5fd9bdeec9f1d7a26c96334072bd3c7af4b278e2e02166b9e1a2e0460d73a839', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 1117.311850181178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c91d117f7c79528f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:15:50.000Z'}}, {'blockNum': '0x978fb9', 'uniqueId': '0x86465daa71a3fb794d59a03b37693eaee82ea5385e55315ae8d45804983a70c4:log:11', 'hash': '0x86465daa71a3fb794d59a03b37693eaee82ea5385e55315ae8d45804983a70c4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 958.7151794640808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33f8d8883b5b69e148', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:20:39.000Z'}}, {'blockNum': '0x978fb9', 'uniqueId': '0x86465daa71a3fb794d59a03b37693eaee82ea5385e55315ae8d45804983a70c4:log:17', 'hash': '0x86465daa71a3fb794d59a03b37693eaee82ea5385e55315ae8d45804983a70c4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 958.7151794640808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33f8d8883b5b69e148', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:20:39.000Z'}}, {'blockNum': '0x978fba', 'uniqueId': '0x9f60a8a9ad3b92bb29757cf9b217bbf6b59f7a101de303df6628c9a38a30ddf4:log:101', 'hash': '0x9f60a8a9ad3b92bb29757cf9b217bbf6b59f7a101de303df6628c9a38a30ddf4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8926.949309011661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e3ee4eeb8aa6d9e63a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:20:45.000Z'}}, {'blockNum': '0x978fba', 'uniqueId': '0x9f60a8a9ad3b92bb29757cf9b217bbf6b59f7a101de303df6628c9a38a30ddf4:log:106', 'hash': '0x9f60a8a9ad3b92bb29757cf9b217bbf6b59f7a101de303df6628c9a38a30ddf4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 8926.949309011661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e3ee4eeb8aa6d9e63a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:20:45.000Z'}}, {'blockNum': '0x978fc2', 'uniqueId': '0xef4785fdfd7023fcca48f0611cdfa96cd0bf44f897771fe9bbc544c70aff0649:log:78', 'hash': '0xef4785fdfd7023fcca48f0611cdfa96cd0bf44f897771fe9bbc544c70aff0649', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 622.4586584302929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21be5963ea3fcf80c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:22:27.000Z'}}, {'blockNum': '0x978fc2', 'uniqueId': '0xef4785fdfd7023fcca48f0611cdfa96cd0bf44f897771fe9bbc544c70aff0649:log:84', 'hash': '0xef4785fdfd7023fcca48f0611cdfa96cd0bf44f897771fe9bbc544c70aff0649', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 622.4586584302929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21be5963ea3fcf80c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:22:27.000Z'}}, {'blockNum': '0x978fc3', 'uniqueId': '0x46fe3255febb2a2343490f2ee1767ef867a23c5c0c5cc4347ffc150a49d1443b:log:136', 'hash': '0x46fe3255febb2a2343490f2ee1767ef867a23c5c0c5cc4347ffc150a49d1443b', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 449.15769225107243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185950ad5ce7654859', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:22:45.000Z'}}, {'blockNum': '0x978fc3', 'uniqueId': '0x46fe3255febb2a2343490f2ee1767ef867a23c5c0c5cc4347ffc150a49d1443b:log:142', 'hash': '0x46fe3255febb2a2343490f2ee1767ef867a23c5c0c5cc4347ffc150a49d1443b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 449.15769225107243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185950ad5ce7654859', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:22:45.000Z'}}, {'blockNum': '0x978fcb', 'uniqueId': '0x10669f4dc999abf8b078c2fe88af5140ef12ed8414fcbf818b467e8cd1e8b3ea:log:59', 'hash': '0x10669f4dc999abf8b078c2fe88af5140ef12ed8414fcbf818b467e8cd1e8b3ea', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2675.350802363212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9107f364221f88e543', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:24:22.000Z'}}, {'blockNum': '0x978fcb', 'uniqueId': '0x10669f4dc999abf8b078c2fe88af5140ef12ed8414fcbf818b467e8cd1e8b3ea:log:65', 'hash': '0x10669f4dc999abf8b078c2fe88af5140ef12ed8414fcbf818b467e8cd1e8b3ea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'value': 2675.350802363212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9107f364221f88e543', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:24:22.000Z'}}, {'blockNum': '0x978fd3', 'uniqueId': '0x39ef978b796ccb98cdf77c97599edf0d74b3bf0a52e39d540ce3522c98faa225:log:146', 'hash': '0x39ef978b796ccb98cdf77c97599edf0d74b3bf0a52e39d540ce3522c98faa225', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1249.4822588235265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bc0cb65bf8fc2e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:26:02.000Z'}}, {'blockNum': '0x978fd3', 'uniqueId': '0x39ef978b796ccb98cdf77c97599edf0d74b3bf0a52e39d540ce3522c98faa225:log:152', 'hash': '0x39ef978b796ccb98cdf77c97599edf0d74b3bf0a52e39d540ce3522c98faa225', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1249.4822588235265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bc0cb65bf8fc2e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:26:02.000Z'}}, {'blockNum': '0x978fd5', 'uniqueId': '0xc5aa397c301d697af66ebc6d414c5da73dd19fed7eb1aad5aa07e990bcd17434:log:154', 'hash': '0xc5aa397c301d697af66ebc6d414c5da73dd19fed7eb1aad5aa07e990bcd17434', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5017.919877862049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011005a096d62af0be8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:26:17.000Z'}}, {'blockNum': '0x978fd5', 'uniqueId': '0xc5aa397c301d697af66ebc6d414c5da73dd19fed7eb1aad5aa07e990bcd17434:log:159', 'hash': '0xc5aa397c301d697af66ebc6d414c5da73dd19fed7eb1aad5aa07e990bcd17434', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ea3f91651db0b87bf639fac5fc2c0c3ef87eaea', 'value': 5017.919877862049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011005a096d62af0be8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:26:17.000Z'}}, {'blockNum': '0x978fe9', 'uniqueId': '0xb748d7b53d28401f3b1f808e235d82bbbb74f2775d6c15cd75128d401fc92725:log:21', 'hash': '0xb748d7b53d28401f3b1f808e235d82bbbb74f2775d6c15cd75128d401fc92725', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 44.70915231473555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026c76d126a8a56143', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:31:51.000Z'}}, {'blockNum': '0x978fe9', 'uniqueId': '0xb748d7b53d28401f3b1f808e235d82bbbb74f2775d6c15cd75128d401fc92725:log:27', 'hash': '0xb748d7b53d28401f3b1f808e235d82bbbb74f2775d6c15cd75128d401fc92725', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 44.70915231473555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026c76d126a8a56143', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:31:51.000Z'}}, {'blockNum': '0x978fe9', 'uniqueId': '0xeefcee9d05a097068d651669cde63eaed11757c7c37fccba1ffce5f4914a5419:log:152', 'hash': '0xeefcee9d05a097068d651669cde63eaed11757c7c37fccba1ffce5f4914a5419', 'from': '0x46989597338d1db0f7adccd124af2fe4ca841068', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 474.34920433641526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19b6eae822593697c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:31:51.000Z'}}, {'blockNum': '0x978fe9', 'uniqueId': '0xeefcee9d05a097068d651669cde63eaed11757c7c37fccba1ffce5f4914a5419:log:158', 'hash': '0xeefcee9d05a097068d651669cde63eaed11757c7c37fccba1ffce5f4914a5419', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 474.34920433641526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19b6eae822593697c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:31:51.000Z'}}, {'blockNum': '0x978fec', 'uniqueId': '0x8883d616e0baca4ebbb51e636d903482d1736222b43fe32bd4fef584f4421742:log:139', 'hash': '0x8883d616e0baca4ebbb51e636d903482d1736222b43fe32bd4fef584f4421742', 'from': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2664.665440559845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9073a95c2fc555643c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:32:19.000Z'}}, {'blockNum': '0x978fec', 'uniqueId': '0x8883d616e0baca4ebbb51e636d903482d1736222b43fe32bd4fef584f4421742:log:145', 'hash': '0x8883d616e0baca4ebbb51e636d903482d1736222b43fe32bd4fef584f4421742', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2664.665440559845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9073a95c2fc555643c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:32:19.000Z'}}, {'blockNum': '0x979015', 'uniqueId': '0x3e495cf9fa9adfd1a8795989ee6ce0baab5cbf9fd33fd1eeafcfb465fc80357b:log:126', 'hash': '0x3e495cf9fa9adfd1a8795989ee6ce0baab5cbf9fd33fd1eeafcfb465fc80357b', 'from': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 214.52122621549435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ba1147ea92bc17a3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:40:50.000Z'}}, {'blockNum': '0x979015', 'uniqueId': '0x3e495cf9fa9adfd1a8795989ee6ce0baab5cbf9fd33fd1eeafcfb465fc80357b:log:132', 'hash': '0x3e495cf9fa9adfd1a8795989ee6ce0baab5cbf9fd33fd1eeafcfb465fc80357b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 214.52122621549435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ba1147ea92bc17a3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:40:50.000Z'}}, {'blockNum': '0x979021', 'uniqueId': '0x18e691a1656cee1b421b86c816025039d364ea6d8627b7db519f4a46857ec302:log:114', 'hash': '0x18e691a1656cee1b421b86c816025039d364ea6d8627b7db519f4a46857ec302', 'from': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 176.61786609842108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x099310b57477e51ee5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:44:25.000Z'}}, {'blockNum': '0x979021', 'uniqueId': '0x18e691a1656cee1b421b86c816025039d364ea6d8627b7db519f4a46857ec302:log:120', 'hash': '0x18e691a1656cee1b421b86c816025039d364ea6d8627b7db519f4a46857ec302', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 176.61786609842108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x099310b57477e51ee5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:44:25.000Z'}}, {'blockNum': '0x97902b', 'uniqueId': '0x35248c188c7e778cda36e5f730b60058b661f6cc61068e336397dba6db245226:log:104', 'hash': '0x35248c188c7e778cda36e5f730b60058b661f6cc61068e336397dba6db245226', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'value': 71.78325109474142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e431568bf4bb6633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:47:16.000Z'}}, {'blockNum': '0x97902b', 'uniqueId': '0x35248c188c7e778cda36e5f730b60058b661f6cc61068e336397dba6db245226:log:108', 'hash': '0x35248c188c7e778cda36e5f730b60058b661f6cc61068e336397dba6db245226', 'from': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'to': '0xf5d162ae2e34be14b474e0d29cd1079fa13c9893', 'value': 71.78325109474142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e431568bf4bb6633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:47:16.000Z'}}, {'blockNum': '0x979062', 'uniqueId': '0x1d4dde4970021ebf550ed1a746d66c9f4c233ec18adbe2f21faa5a5dea3ef67e:log:199', 'hash': '0x1d4dde4970021ebf550ed1a746d66c9f4c233ec18adbe2f21faa5a5dea3ef67e', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'value': 71.70957125807504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e32b9320291febcf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:57:17.000Z'}}, {'blockNum': '0x979062', 'uniqueId': '0x1d4dde4970021ebf550ed1a746d66c9f4c233ec18adbe2f21faa5a5dea3ef67e:log:203', 'hash': '0x1d4dde4970021ebf550ed1a746d66c9f4c233ec18adbe2f21faa5a5dea3ef67e', 'from': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'to': '0xf5d162ae2e34be14b474e0d29cd1079fa13c9893', 'value': 71.70957125807504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e32b9320291febcf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:57:17.000Z'}}, {'blockNum': '0x979062', 'uniqueId': '0x9892d8378651a5c99969fb527af5a71ae8910162a9fb3e6ffe168f3a5efbe79d:log:210', 'hash': '0x9892d8378651a5c99969fb527af5a71ae8910162a9fb3e6ffe168f3a5efbe79d', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'value': 71.6228881102671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e1f79d431004c97d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:57:17.000Z'}}, {'blockNum': '0x979062', 'uniqueId': '0x9892d8378651a5c99969fb527af5a71ae8910162a9fb3e6ffe168f3a5efbe79d:log:214', 'hash': '0x9892d8378651a5c99969fb527af5a71ae8910162a9fb3e6ffe168f3a5efbe79d', 'from': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'to': '0xf5d162ae2e34be14b474e0d29cd1079fa13c9893', 'value': 71.6228881102671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e1f79d431004c97d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:57:17.000Z'}}, {'blockNum': '0x97908d', 'uniqueId': '0x2c206ee2aed065e96861775200abc829dabd1de68f1955606312cecf08aef7e1:log:59', 'hash': '0x2c206ee2aed065e96861775200abc829dabd1de68f1955606312cecf08aef7e1', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50d3b2a217736b9cf92ee286e2539bc2ceb2da33', 'value': 1396.19646283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4bb01e4593f707cc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:04:51.000Z'}}, {'blockNum': '0x979093', 'uniqueId': '0xa53fc529775f8cab6b267ab3dce78f07207da84e95600ac91c35ca4f82915bab:log:183', 'hash': '0xa53fc529775f8cab6b267ab3dce78f07207da84e95600ac91c35ca4f82915bab', 'from': '0xf5d162ae2e34be14b474e0d29cd1079fa13c9893', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 214.90059475262046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ba6584855da1e13bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:29.000Z'}}, {'blockNum': '0x979095', 'uniqueId': '0x2143d0cd17944c196f52bd8d6e34c09c9d55dcb2e04da29008c30e26d054d278:log:67', 'hash': '0x2143d0cd17944c196f52bd8d6e34c09c9d55dcb2e04da29008c30e26d054d278', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 448.75572660772565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853bc9bbd6fcc95d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:47.000Z'}}, {'blockNum': '0x979095', 'uniqueId': '0x2143d0cd17944c196f52bd8d6e34c09c9d55dcb2e04da29008c30e26d054d278:log:73', 'hash': '0x2143d0cd17944c196f52bd8d6e34c09c9d55dcb2e04da29008c30e26d054d278', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 448.75572660772565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853bc9bbd6fcc95d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:47.000Z'}}, {'blockNum': '0x979097', 'uniqueId': '0xb8c6d2ef52cc73ae6f29335e2312b18f19c5b0c23fa42e011caff250a43c2817:log:53', 'hash': '0xb8c6d2ef52cc73ae6f29335e2312b18f19c5b0c23fa42e011caff250a43c2817', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 660.2082571013268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23ca3ae7e680596ea0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:52.000Z'}}, {'blockNum': '0x979097', 'uniqueId': '0xb8c6d2ef52cc73ae6f29335e2312b18f19c5b0c23fa42e011caff250a43c2817:log:59', 'hash': '0xb8c6d2ef52cc73ae6f29335e2312b18f19c5b0c23fa42e011caff250a43c2817', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 660.2082571013268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23ca3ae7e680596ea0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:52.000Z'}}, {'blockNum': '0x9790a5', 'uniqueId': '0xe4766c4fb30355f5d51a63bcd29f2eb8d2b7519a92e719ea356231d6eaf36e86:log:171', 'hash': '0xe4766c4fb30355f5d51a63bcd29f2eb8d2b7519a92e719ea356231d6eaf36e86', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 151.4452622451302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0835b9a79edcdd3b66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:09:39.000Z'}}, {'blockNum': '0x9790a5', 'uniqueId': '0xe4766c4fb30355f5d51a63bcd29f2eb8d2b7519a92e719ea356231d6eaf36e86:log:177', 'hash': '0xe4766c4fb30355f5d51a63bcd29f2eb8d2b7519a92e719ea356231d6eaf36e86', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 151.4452622451302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0835b9a79edcdd3b66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:09:39.000Z'}}, {'blockNum': '0x9790a7', 'uniqueId': '0xaa5fb5fd4a38936c2804f0c93d8f13fca00b82235dd309e989a4012af895973d:log:200', 'hash': '0xaa5fb5fd4a38936c2804f0c93d8f13fca00b82235dd309e989a4012af895973d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 668.592453862224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x243e958e6edc9cca4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:10:33.000Z'}}, {'blockNum': '0x9790a7', 'uniqueId': '0xaa5fb5fd4a38936c2804f0c93d8f13fca00b82235dd309e989a4012af895973d:log:206', 'hash': '0xaa5fb5fd4a38936c2804f0c93d8f13fca00b82235dd309e989a4012af895973d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 668.592453862224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x243e958e6edc9cca4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:10:33.000Z'}}, {'blockNum': '0x9790ac', 'uniqueId': '0x8cd07759a7f0587076c6531730d76b634f80b46f3a76c602d22f6bd3df36458a:log:89', 'hash': '0x8cd07759a7f0587076c6531730d76b634f80b46f3a76c602d22f6bd3df36458a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 0.8186281003879458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c59eb86c6bcf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:10:56.000Z'}}, {'blockNum': '0x9790ac', 'uniqueId': '0x8cd07759a7f0587076c6531730d76b634f80b46f3a76c602d22f6bd3df36458a:log:95', 'hash': '0x8cd07759a7f0587076c6531730d76b634f80b46f3a76c602d22f6bd3df36458a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 0.8186281003879458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c59eb86c6bcf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:10:56.000Z'}}, {'blockNum': '0x979115', 'uniqueId': '0xecf84d1bbd6c4cef013aba42210b5ada5ad17df423017b3fa4eaa2dc6bf4fbbb:log:124', 'hash': '0xecf84d1bbd6c4cef013aba42210b5ada5ad17df423017b3fa4eaa2dc6bf4fbbb', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x721d53e6465a1fe13ee3a1345c7b060aa965c591', 'value': 961.8167960873856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3423e3b01e20ef7525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:33:39.000Z'}}, {'blockNum': '0x97912b', 'uniqueId': '0xf70c96b395ee10c19cd43bf8e174ce226e66ea890537d1d2a10bbe1549dc338b:log:40', 'hash': '0xf70c96b395ee10c19cd43bf8e174ce226e66ea890537d1d2a10bbe1549dc338b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1522.3563600390821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5286f043aa762a8cf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:38:32.000Z'}}, {'blockNum': '0x97912b', 'uniqueId': '0xf70c96b395ee10c19cd43bf8e174ce226e66ea890537d1d2a10bbe1549dc338b:log:46', 'hash': '0xf70c96b395ee10c19cd43bf8e174ce226e66ea890537d1d2a10bbe1549dc338b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 1522.3563600390821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5286f043aa762a8cf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:38:32.000Z'}}, {'blockNum': '0x97912b', 'uniqueId': '0x2e5c042f3dc147a3611eafc11ec39b783e765c59743c6387b994c6a1ff0bc44a:log:58', 'hash': '0x2e5c042f3dc147a3611eafc11ec39b783e765c59743c6387b994c6a1ff0bc44a', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 904.2363704995608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3104ccec1ea6d55382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:38:32.000Z'}}, {'blockNum': '0x97912b', 'uniqueId': '0x2e5c042f3dc147a3611eafc11ec39b783e765c59743c6387b994c6a1ff0bc44a:log:64', 'hash': '0x2e5c042f3dc147a3611eafc11ec39b783e765c59743c6387b994c6a1ff0bc44a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 904.2363704995608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3104ccec1ea6d55382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:38:32.000Z'}}, {'blockNum': '0x979130', 'uniqueId': '0x38f4abcbcb0968cbbeaf5cba75834460cb179236e6d366956cdfd76ae47a9add:log:119', 'hash': '0x38f4abcbcb0968cbbeaf5cba75834460cb179236e6d366956cdfd76ae47a9add', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x721d53e6465a1fe13ee3a1345c7b060aa965c591', 'value': 8.888636153774668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b5ac77ce36efaa9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:39:49.000Z'}}, {'blockNum': '0x979170', 'uniqueId': '0xc48fa831aad65ef21ef128060dc8121beb23a77b6aa75b77260beef50a1e5c3a:log:86', 'hash': '0xc48fa831aad65ef21ef128060dc8121beb23a77b6aa75b77260beef50a1e5c3a', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 447.6704489844103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1844aced7ddb67fcc9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:53:37.000Z'}}, {'blockNum': '0x979170', 'uniqueId': '0xc48fa831aad65ef21ef128060dc8121beb23a77b6aa75b77260beef50a1e5c3a:log:92', 'hash': '0xc48fa831aad65ef21ef128060dc8121beb23a77b6aa75b77260beef50a1e5c3a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 447.6704489844103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1844aced7ddb67fcc9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:53:37.000Z'}}, {'blockNum': '0x979183', 'uniqueId': '0x359c8c6600251ffaae0f77cf45658d00fafb51453ec2b8fcd97585e18322ca00:log:40', 'hash': '0x359c8c6600251ffaae0f77cf45658d00fafb51453ec2b8fcd97585e18322ca00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x73f53b93af625891f9b770063c4c884ee27ec0f6', 'value': 4596.649205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf92f5281db32b85000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:58:03.000Z'}}, {'blockNum': '0x97918a', 'uniqueId': '0x4bc8836683aca6e4c2d0b73b884763bc3d2acebf66501c81e1e6efea024d674c:log:22', 'hash': '0x4bc8836683aca6e4c2d0b73b884763bc3d2acebf66501c81e1e6efea024d674c', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 464.7760781294787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1932105491cec73db7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:00:19.000Z'}}, {'blockNum': '0x97918a', 'uniqueId': '0x4bc8836683aca6e4c2d0b73b884763bc3d2acebf66501c81e1e6efea024d674c:log:28', 'hash': '0x4bc8836683aca6e4c2d0b73b884763bc3d2acebf66501c81e1e6efea024d674c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 464.7760781294787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1932105491cec73db7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:00:19.000Z'}}, {'blockNum': '0x9791a2', 'uniqueId': '0x9f609e2473e79c3b815cda08fe1614f93568a4294a528e20486718417fc6a381:log:11', 'hash': '0x9f609e2473e79c3b815cda08fe1614f93568a4294a528e20486718417fc6a381', 'from': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 714.2532619939338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b8415581ec70496c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:05:51.000Z'}}, {'blockNum': '0x9791a2', 'uniqueId': '0x9f609e2473e79c3b815cda08fe1614f93568a4294a528e20486718417fc6a381:log:17', 'hash': '0x9f609e2473e79c3b815cda08fe1614f93568a4294a528e20486718417fc6a381', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 714.2532619939338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b8415581ec70496c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:05:51.000Z'}}, {'blockNum': '0x9791da', 'uniqueId': '0x9baf1d8138d37f45ccc8746cbb9dd6eb5ab96fe3b75923830eda2c9a71e5d139:log:150', 'hash': '0x9baf1d8138d37f45ccc8746cbb9dd6eb5ab96fe3b75923830eda2c9a71e5d139', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.67045081591016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ef06e606e45e13ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:21:38.000Z'}}, {'blockNum': '0x9791da', 'uniqueId': '0x9baf1d8138d37f45ccc8746cbb9dd6eb5ab96fe3b75923830eda2c9a71e5d139:log:156', 'hash': '0x9baf1d8138d37f45ccc8746cbb9dd6eb5ab96fe3b75923830eda2c9a71e5d139', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6909f6ae629e4500742221e86bf1ecac5d71d68d', 'value': 35.67045081591016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ef06e606e45e13ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:21:38.000Z'}}, {'blockNum': '0x9791e4', 'uniqueId': '0xb6e58b43f11f4ef8f5d950d6d23d14a535ee7c4a53cd86fabcf25cb6d91f0fda:log:206', 'hash': '0xb6e58b43f11f4ef8f5d950d6d23d14a535ee7c4a53cd86fabcf25cb6d91f0fda', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 30.83898965131601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01abfa19b226a36d63', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:23:54.000Z'}}, {'blockNum': '0x9791e4', 'uniqueId': '0xb6e58b43f11f4ef8f5d950d6d23d14a535ee7c4a53cd86fabcf25cb6d91f0fda:log:212', 'hash': '0xb6e58b43f11f4ef8f5d950d6d23d14a535ee7c4a53cd86fabcf25cb6d91f0fda', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6909f6ae629e4500742221e86bf1ecac5d71d68d', 'value': 30.83898965131601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01abfa19b226a36d63', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:23:54.000Z'}}, {'blockNum': '0x9791f8', 'uniqueId': '0x79c7bd8cdbc4e68a4730efc698657481f3ba0dfdbff6410c62f2edc96826ec28:log:97', 'hash': '0x79c7bd8cdbc4e68a4730efc698657481f3ba0dfdbff6410c62f2edc96826ec28', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 445.8574163401267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x182b83bde852b18175', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:26:38.000Z'}}, {'blockNum': '0x9791f8', 'uniqueId': '0x79c7bd8cdbc4e68a4730efc698657481f3ba0dfdbff6410c62f2edc96826ec28:log:103', 'hash': '0x79c7bd8cdbc4e68a4730efc698657481f3ba0dfdbff6410c62f2edc96826ec28', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 445.8574163401267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x182b83bde852b18175', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:26:38.000Z'}}, {'blockNum': '0x9791fe', 'uniqueId': '0x73202bacb035b10a485a9dd0770c8adee27a8beb947e706f28fbf2758687bfa1:log:44', 'hash': '0x73202bacb035b10a485a9dd0770c8adee27a8beb947e706f28fbf2758687bfa1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 907.8404318997528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3136d11ede39f91f5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:27:28.000Z'}}, {'blockNum': '0x9791fe', 'uniqueId': '0x73202bacb035b10a485a9dd0770c8adee27a8beb947e706f28fbf2758687bfa1:log:50', 'hash': '0x73202bacb035b10a485a9dd0770c8adee27a8beb947e706f28fbf2758687bfa1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 907.8404318997528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3136d11ede39f91f5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:27:28.000Z'}}, {'blockNum': '0x97920c', 'uniqueId': '0x2ce6e06ce8ac2c5dba56db845bbd639f393f8c4c9f189f59f88295edce03baee:log:134', 'hash': '0x2ce6e06ce8ac2c5dba56db845bbd639f393f8c4c9f189f59f88295edce03baee', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 319.31147283594447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x114f563cc2754336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:30:31.000Z'}}, {'blockNum': '0x97920c', 'uniqueId': '0x2ce6e06ce8ac2c5dba56db845bbd639f393f8c4c9f189f59f88295edce03baee:log:140', 'hash': '0x2ce6e06ce8ac2c5dba56db845bbd639f393f8c4c9f189f59f88295edce03baee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 319.31147283594447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x114f563cc2754336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:30:31.000Z'}}, {'blockNum': '0x979231', 'uniqueId': '0xa40bf89962c51de04d5a4a2380ca760cf50f12f8d48915f2292853f1ea8f56dd:log:33', 'hash': '0xa40bf89962c51de04d5a4a2380ca760cf50f12f8d48915f2292853f1ea8f56dd', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 320.04062627366727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x115974b5f2af7c9f25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:36:43.000Z'}}, {'blockNum': '0x979231', 'uniqueId': '0xa40bf89962c51de04d5a4a2380ca760cf50f12f8d48915f2292853f1ea8f56dd:log:39', 'hash': '0xa40bf89962c51de04d5a4a2380ca760cf50f12f8d48915f2292853f1ea8f56dd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 320.04062627366727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x115974b5f2af7c9f25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:36:43.000Z'}}, {'blockNum': '0x979255', 'uniqueId': '0xc106419c25e7996bbf525a983af8528c0e4a0508f6e5ae1640a7748a3bffae93:log:48', 'hash': '0xc106419c25e7996bbf525a983af8528c0e4a0508f6e5ae1640a7748a3bffae93', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 317.74674013213576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11399f30a7e24f46a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:44:13.000Z'}}, {'blockNum': '0x979255', 'uniqueId': '0xc106419c25e7996bbf525a983af8528c0e4a0508f6e5ae1640a7748a3bffae93:log:54', 'hash': '0xc106419c25e7996bbf525a983af8528c0e4a0508f6e5ae1640a7748a3bffae93', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 317.74674013213576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11399f30a7e24f46a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:44:13.000Z'}}, {'blockNum': '0x979282', 'uniqueId': '0x59f7b9736339d842a78f7ebcfc7a0aea3471db5d08e27e5aa0ff33467e91d5c8:log:41', 'hash': '0x59f7b9736339d842a78f7ebcfc7a0aea3471db5d08e27e5aa0ff33467e91d5c8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 668.7124079592771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24403fb80c7ccf3fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:54:46.000Z'}}, {'blockNum': '0x979282', 'uniqueId': '0x59f7b9736339d842a78f7ebcfc7a0aea3471db5d08e27e5aa0ff33467e91d5c8:log:47', 'hash': '0x59f7b9736339d842a78f7ebcfc7a0aea3471db5d08e27e5aa0ff33467e91d5c8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 668.7124079592771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24403fb80c7ccf3fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:54:46.000Z'}}, {'blockNum': '0x97928e', 'uniqueId': '0x0902a3071655cb180b91da084b79e46b5dd658803a9159499cc9f6013ceb3241:log:30', 'hash': '0x0902a3071655cb180b91da084b79e46b5dd658803a9159499cc9f6013ceb3241', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 94.50356512777267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x051f801bc848e221bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:56:08.000Z'}}, {'blockNum': '0x97928e', 'uniqueId': '0x0902a3071655cb180b91da084b79e46b5dd658803a9159499cc9f6013ceb3241:log:36', 'hash': '0x0902a3071655cb180b91da084b79e46b5dd658803a9159499cc9f6013ceb3241', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 94.50356512777267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x051f801bc848e221bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:56:08.000Z'}}, {'blockNum': '0x9792bd', 'uniqueId': '0x1a1cc616214b4e2a4779bda3c13cebfe6cbbcf8d046afbd2789795a7ece83db5:log:106', 'hash': '0x1a1cc616214b4e2a4779bda3c13cebfe6cbbcf8d046afbd2789795a7ece83db5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4544.588016566564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf65cd402cedb12ea1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:05:41.000Z'}}, {'blockNum': '0x9792bd', 'uniqueId': '0x1a1cc616214b4e2a4779bda3c13cebfe6cbbcf8d046afbd2789795a7ece83db5:log:111', 'hash': '0x1a1cc616214b4e2a4779bda3c13cebfe6cbbcf8d046afbd2789795a7ece83db5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6cfa3f888d41aa9ac6052a5408261a250e20a29c', 'value': 4544.588016566564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf65cd402cedb12ea1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:05:41.000Z'}}, {'blockNum': '0x9792c6', 'uniqueId': '0xcce57c17fa4aff729db81c2410c16869f685f65325cd5e6ddde4adc6e470979f:log:28', 'hash': '0xcce57c17fa4aff729db81c2410c16869f685f65325cd5e6ddde4adc6e470979f', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 448.3606733284427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184e4118e024c96d2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:06:50.000Z'}}, {'blockNum': '0x9792c6', 'uniqueId': '0xcce57c17fa4aff729db81c2410c16869f685f65325cd5e6ddde4adc6e470979f:log:34', 'hash': '0xcce57c17fa4aff729db81c2410c16869f685f65325cd5e6ddde4adc6e470979f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 448.3606733284427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184e4118e024c96d2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:06:50.000Z'}}, {'blockNum': '0x9792cf', 'uniqueId': '0x30c72af62dc53b53de5e449038720a9299afa8eed43ef12ae2281ab44b235280:log:45', 'hash': '0x30c72af62dc53b53de5e449038720a9299afa8eed43ef12ae2281ab44b235280', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 343.52066890898254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x129f4e94527c7ab261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:08:41.000Z'}}, {'blockNum': '0x9792cf', 'uniqueId': '0x30c72af62dc53b53de5e449038720a9299afa8eed43ef12ae2281ab44b235280:log:51', 'hash': '0x30c72af62dc53b53de5e449038720a9299afa8eed43ef12ae2281ab44b235280', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 343.52066890898254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x129f4e94527c7ab261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:08:41.000Z'}}, {'blockNum': '0x9792db', 'uniqueId': '0xcd2ee052d0612e9e603ad0cc505e48a09a1c5f66728364cc3d8425b44f60bc79:log:74', 'hash': '0xcd2ee052d0612e9e603ad0cc505e48a09a1c5f66728364cc3d8425b44f60bc79', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 140.00948860847367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x079705a0165c2c9e93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:11:05.000Z'}}, {'blockNum': '0x9792db', 'uniqueId': '0xcd2ee052d0612e9e603ad0cc505e48a09a1c5f66728364cc3d8425b44f60bc79:log:80', 'hash': '0xcd2ee052d0612e9e603ad0cc505e48a09a1c5f66728364cc3d8425b44f60bc79', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 140.00948860847367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x079705a0165c2c9e93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:11:05.000Z'}}, {'blockNum': '0x9792e8', 'uniqueId': '0x1c24ecea92b1df2f7685be2ef98fd54f0aa6e488ea416ed637f84d937f8cc0ef:log:32', 'hash': '0x1c24ecea92b1df2f7685be2ef98fd54f0aa6e488ea416ed637f84d937f8cc0ef', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 377.45014159589516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14762c47f704393d22', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:13:13.000Z'}}, {'blockNum': '0x9792e8', 'uniqueId': '0x1c24ecea92b1df2f7685be2ef98fd54f0aa6e488ea416ed637f84d937f8cc0ef:log:38', 'hash': '0x1c24ecea92b1df2f7685be2ef98fd54f0aa6e488ea416ed637f84d937f8cc0ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 377.45014159589516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14762c47f704393d22', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:13:13.000Z'}}, {'blockNum': '0x97930e', 'uniqueId': '0xb0119e7409476a6244f66206e7df6292fcbc26fef4c7d9f79534684005eb79a7:log:86', 'hash': '0xb0119e7409476a6244f66206e7df6292fcbc26fef4c7d9f79534684005eb79a7', 'from': '0x7599da2dd9e1341f4fe76133342ae7c75fa24129', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18.855896009229344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0105ad99847fd217c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:20:57.000Z'}}, {'blockNum': '0x97930e', 'uniqueId': '0xb0119e7409476a6244f66206e7df6292fcbc26fef4c7d9f79534684005eb79a7:log:92', 'hash': '0xb0119e7409476a6244f66206e7df6292fcbc26fef4c7d9f79534684005eb79a7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 18.855896009229344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0105ad99847fd217c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:20:57.000Z'}}, {'blockNum': '0x979321', 'uniqueId': '0xb5b73b2d4cbfb430a780b3fe8ed202f5744d8ff0577477cc21368fc2578ffc32:log:28', 'hash': '0xb5b73b2d4cbfb430a780b3fe8ed202f5744d8ff0577477cc21368fc2578ffc32', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 245.9470464000551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d55336f9e17cc7b6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:25:07.000Z'}}, {'blockNum': '0x979321', 'uniqueId': '0xb5b73b2d4cbfb430a780b3fe8ed202f5744d8ff0577477cc21368fc2578ffc32:log:34', 'hash': '0xb5b73b2d4cbfb430a780b3fe8ed202f5744d8ff0577477cc21368fc2578ffc32', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 245.9470464000551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d55336f9e17cc7b6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:25:07.000Z'}}, {'blockNum': '0x979324', 'uniqueId': '0x10590842e376ec257824c58bd4791152488b384807745f28d7667ad451f1c0fa:log:150', 'hash': '0x10590842e376ec257824c58bd4791152488b384807745f28d7667ad451f1c0fa', 'from': '0xfbbaf86d76ef7c86f1aea216242ef8e203a8be7e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 75.32793960253517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04156299f6c730245e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:26:40.000Z'}}, {'blockNum': '0x979324', 'uniqueId': '0x10590842e376ec257824c58bd4791152488b384807745f28d7667ad451f1c0fa:log:156', 'hash': '0x10590842e376ec257824c58bd4791152488b384807745f28d7667ad451f1c0fa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 75.32793960253517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04156299f6c730245e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:26:40.000Z'}}, {'blockNum': '0x97933a', 'uniqueId': '0xf419e4cc3a8701626a0b1b5dbf8d5375aaac89af4a81ac05006b1d823e5bccd8:log:60', 'hash': '0xf419e4cc3a8701626a0b1b5dbf8d5375aaac89af4a81ac05006b1d823e5bccd8', 'from': '0x1c29f12d94ad2e6b5321ce226b4550f83ce88fca', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9.720568150008505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86e6653b0c3ba309', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:29:26.000Z'}}, {'blockNum': '0x97933a', 'uniqueId': '0xf419e4cc3a8701626a0b1b5dbf8d5375aaac89af4a81ac05006b1d823e5bccd8:log:66', 'hash': '0xf419e4cc3a8701626a0b1b5dbf8d5375aaac89af4a81ac05006b1d823e5bccd8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 9.720568150008505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86e6653b0c3ba309', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:29:26.000Z'}}, {'blockNum': '0x97935a', 'uniqueId': '0x7b3fe1eb14bb455c3d591db7d752a25ff0ba1c1544123b7f3e0bf78068f47cef:log:120', 'hash': '0x7b3fe1eb14bb455c3d591db7d752a25ff0ba1c1544123b7f3e0bf78068f47cef', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 47.69332723190367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0295e0bc6d66152110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:37:57.000Z'}}, {'blockNum': '0x97935a', 'uniqueId': '0x7b3fe1eb14bb455c3d591db7d752a25ff0ba1c1544123b7f3e0bf78068f47cef:log:126', 'hash': '0x7b3fe1eb14bb455c3d591db7d752a25ff0ba1c1544123b7f3e0bf78068f47cef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 47.69332723190367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0295e0bc6d66152110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:37:57.000Z'}}, {'blockNum': '0x979394', 'uniqueId': '0x78355f1366d6e40642afed6efffa6723934bfb676cbb577ab41b7a51dd40b93a:log:103', 'hash': '0x78355f1366d6e40642afed6efffa6723934bfb676cbb577ab41b7a51dd40b93a', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 629.9924569262982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2226e6d1bb3b962924', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:53:47.000Z'}}, {'blockNum': '0x979394', 'uniqueId': '0x78355f1366d6e40642afed6efffa6723934bfb676cbb577ab41b7a51dd40b93a:log:109', 'hash': '0x78355f1366d6e40642afed6efffa6723934bfb676cbb577ab41b7a51dd40b93a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 629.9924569262982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2226e6d1bb3b962924', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:53:47.000Z'}}, {'blockNum': '0x979396', 'uniqueId': '0x3ea0845adfb42ef5018ac3bae0b5e43152d5ce8adca71242f7fc32bf6d5773ea:log:133', 'hash': '0x3ea0845adfb42ef5018ac3bae0b5e43152d5ce8adca71242f7fc32bf6d5773ea', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 384.59656186699937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d95977568f0ac437', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:54:33.000Z'}}, {'blockNum': '0x979396', 'uniqueId': '0x3ea0845adfb42ef5018ac3bae0b5e43152d5ce8adca71242f7fc32bf6d5773ea:log:139', 'hash': '0x3ea0845adfb42ef5018ac3bae0b5e43152d5ce8adca71242f7fc32bf6d5773ea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 384.59656186699937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d95977568f0ac437', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:54:33.000Z'}}, {'blockNum': '0x9793b1', 'uniqueId': '0xbd422d51ac040ca9476dff9e2e06fdaa7ce4d3fa8798a51f59817b94a4aff2c1:log:100', 'hash': '0xbd422d51ac040ca9476dff9e2e06fdaa7ce4d3fa8798a51f59817b94a4aff2c1', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 445.5960584586744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1827e3364c8f7b3d51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:59:42.000Z'}}, {'blockNum': '0x9793b1', 'uniqueId': '0xbd422d51ac040ca9476dff9e2e06fdaa7ce4d3fa8798a51f59817b94a4aff2c1:log:106', 'hash': '0xbd422d51ac040ca9476dff9e2e06fdaa7ce4d3fa8798a51f59817b94a4aff2c1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 445.5960584586744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1827e3364c8f7b3d51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:59:42.000Z'}}, {'blockNum': '0x9793c0', 'uniqueId': '0xeaf5fc4cb6487dc6b48cd6011516dc5db3241852b004542575bbfca0ab9b9c34:log:35', 'hash': '0xeaf5fc4cb6487dc6b48cd6011516dc5db3241852b004542575bbfca0ab9b9c34', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 2527.6947151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8906cf971537b59800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:03:06.000Z'}}, {'blockNum': '0x9793c9', 'uniqueId': '0xc78516e77561a9af5fa27c8d200316485af81c30eafe45846bbe1ad42c410f4b:log:76', 'hash': '0xc78516e77561a9af5fa27c8d200316485af81c30eafe45846bbe1ad42c410f4b', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 448.81486306290043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18548eb4085bc437b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:03:50.000Z'}}, {'blockNum': '0x9793c9', 'uniqueId': '0xc78516e77561a9af5fa27c8d200316485af81c30eafe45846bbe1ad42c410f4b:log:82', 'hash': '0xc78516e77561a9af5fa27c8d200316485af81c30eafe45846bbe1ad42c410f4b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 448.81486306290043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18548eb4085bc437b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:03:50.000Z'}}, {'blockNum': '0x9793d7', 'uniqueId': '0x749fdf35853b82467fc8feba16117dd0b44fe155e11f6d7253234effba3dec14:log:98', 'hash': '0x749fdf35853b82467fc8feba16117dd0b44fe155e11f6d7253234effba3dec14', 'from': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 74.50468749900227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0409f5d2899f845457', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:06:01.000Z'}}, {'blockNum': '0x9793d7', 'uniqueId': '0x749fdf35853b82467fc8feba16117dd0b44fe155e11f6d7253234effba3dec14:log:104', 'hash': '0x749fdf35853b82467fc8feba16117dd0b44fe155e11f6d7253234effba3dec14', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 74.50468749900227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0409f5d2899f845457', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:06:01.000Z'}}, {'blockNum': '0x9793e1', 'uniqueId': '0xca7a53f7e0983153b9c404a77a32a49f83d19a18d363635e115d4a0109393d64:log:50', 'hash': '0xca7a53f7e0983153b9c404a77a32a49f83d19a18d363635e115d4a0109393d64', 'from': '0x86a43a57cc762472b01d50009c4ed7c1ccd77c28', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 0.13962994829812905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f010b2bc50ee94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:07:43.000Z'}}, {'blockNum': '0x9793e1', 'uniqueId': '0xca7a53f7e0983153b9c404a77a32a49f83d19a18d363635e115d4a0109393d64:log:56', 'hash': '0xca7a53f7e0983153b9c404a77a32a49f83d19a18d363635e115d4a0109393d64', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 0.13962994829812905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f010b2bc50ee94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:07:43.000Z'}}, {'blockNum': '0x9793ed', 'uniqueId': '0xc14fc14deb3a77957002c7ecf7cf0d8c9c3379a927ffdfb2d8a554b4babb820f:log:29', 'hash': '0xc14fc14deb3a77957002c7ecf7cf0d8c9c3379a927ffdfb2d8a554b4babb820f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 71.30234730753513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03dd84d319a5294531', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:11:27.000Z'}}, {'blockNum': '0x9793ed', 'uniqueId': '0xc14fc14deb3a77957002c7ecf7cf0d8c9c3379a927ffdfb2d8a554b4babb820f:log:35', 'hash': '0xc14fc14deb3a77957002c7ecf7cf0d8c9c3379a927ffdfb2d8a554b4babb820f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 71.30234730753513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03dd84d319a5294531', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:11:27.000Z'}}, {'blockNum': '0x9793f3', 'uniqueId': '0x32a91ef840a5ec01ac96a4ea4ef22b2ba0148bfeceb12ffa2bf8aafd4e65d245:log:58', 'hash': '0x32a91ef840a5ec01ac96a4ea4ef22b2ba0148bfeceb12ffa2bf8aafd4e65d245', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 597.5323409905659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20646d5244d643de8f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:13:01.000Z'}}, {'blockNum': '0x9793f3', 'uniqueId': '0x32a91ef840a5ec01ac96a4ea4ef22b2ba0148bfeceb12ffa2bf8aafd4e65d245:log:64', 'hash': '0x32a91ef840a5ec01ac96a4ea4ef22b2ba0148bfeceb12ffa2bf8aafd4e65d245', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 597.5323409905659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20646d5244d643de8f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:13:01.000Z'}}, {'blockNum': '0x979401', 'uniqueId': '0x8cddc84235baf736047b5b17057b2c45abcddd89ab78d284c3ccfb36b69362ec:log:42', 'hash': '0x8cddc84235baf736047b5b17057b2c45abcddd89ab78d284c3ccfb36b69362ec', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 352.3768886357046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131a36313dcc8dd00f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:16:01.000Z'}}, {'blockNum': '0x979401', 'uniqueId': '0x8cddc84235baf736047b5b17057b2c45abcddd89ab78d284c3ccfb36b69362ec:log:48', 'hash': '0x8cddc84235baf736047b5b17057b2c45abcddd89ab78d284c3ccfb36b69362ec', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x810c99c5de0a673e4bc86090f9bfe96a6d1b49a7', 'value': 352.3768886357046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131a36313dcc8dd00f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:16:01.000Z'}}, {'blockNum': '0x979401', 'uniqueId': '0xaa3ac0fdaf747a4d5762a4a78014d66ac7074abee14ffc704dd84bcddf5fb5f5:log:165', 'hash': '0xaa3ac0fdaf747a4d5762a4a78014d66ac7074abee14ffc704dd84bcddf5fb5f5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6769.582705270958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016efad513a8575c9c10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:16:01.000Z'}}, {'blockNum': '0x979401', 'uniqueId': '0xaa3ac0fdaf747a4d5762a4a78014d66ac7074abee14ffc704dd84bcddf5fb5f5:log:171', 'hash': '0xaa3ac0fdaf747a4d5762a4a78014d66ac7074abee14ffc704dd84bcddf5fb5f5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xdba193795e33b445b8c215252b0055a58db4f0af', 'value': 6769.582705270958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016efad513a8575c9c10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:16:01.000Z'}}, {'blockNum': '0x979416', 'uniqueId': '0xeecba8d9186bb6e0ab6dcded729c9f29c080492b062c30d1e05e41621d9a6152:log:137', 'hash': '0xeecba8d9186bb6e0ab6dcded729c9f29c080492b062c30d1e05e41621d9a6152', 'from': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 73.23416867077403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f85408651286c79b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:19:57.000Z'}}, {'blockNum': '0x979416', 'uniqueId': '0xeecba8d9186bb6e0ab6dcded729c9f29c080492b062c30d1e05e41621d9a6152:log:143', 'hash': '0xeecba8d9186bb6e0ab6dcded729c9f29c080492b062c30d1e05e41621d9a6152', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 73.23416867077403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f85408651286c79b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:19:57.000Z'}}, {'blockNum': '0x979421', 'uniqueId': '0x87573cebe4e4753922caa7f6562f6284ccb51a9b8b7be2838688dcf0c8a914df:log:10', 'hash': '0x87573cebe4e4753922caa7f6562f6284ccb51a9b8b7be2838688dcf0c8a914df', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 71.20726011609422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03dc3301cda8a303e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:21:34.000Z'}}, {'blockNum': '0x979421', 'uniqueId': '0x87573cebe4e4753922caa7f6562f6284ccb51a9b8b7be2838688dcf0c8a914df:log:16', 'hash': '0x87573cebe4e4753922caa7f6562f6284ccb51a9b8b7be2838688dcf0c8a914df', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 71.20726011609422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03dc3301cda8a303e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:21:34.000Z'}}, {'blockNum': '0x97942e', 'uniqueId': '0x2378e0e4dc3765fcf9271122c43d67fa6e3c93779486fe7aeb8bc5e076c871be:log:83', 'hash': '0x2378e0e4dc3765fcf9271122c43d67fa6e3c93779486fe7aeb8bc5e076c871be', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 447.5996277920765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1843b151fe0fc783c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:24:59.000Z'}}, {'blockNum': '0x97942e', 'uniqueId': '0x2378e0e4dc3765fcf9271122c43d67fa6e3c93779486fe7aeb8bc5e076c871be:log:87', 'hash': '0x2378e0e4dc3765fcf9271122c43d67fa6e3c93779486fe7aeb8bc5e076c871be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 447.5996277920765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1843b151fe0fc783c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:24:59.000Z'}}, {'blockNum': '0x979436', 'uniqueId': '0x51aaa18e8d49c24b23b42fe92cae4d965b1d3aa4b1837693dd50f0107fb237c7:log:41', 'hash': '0x51aaa18e8d49c24b23b42fe92cae4d965b1d3aa4b1837693dd50f0107fb237c7', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2881.3406867241974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9c32a2789413dde239', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:26:21.000Z'}}, {'blockNum': '0x979436', 'uniqueId': '0x51aaa18e8d49c24b23b42fe92cae4d965b1d3aa4b1837693dd50f0107fb237c7:log:47', 'hash': '0x51aaa18e8d49c24b23b42fe92cae4d965b1d3aa4b1837693dd50f0107fb237c7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2881.3406867241974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9c32a2789413dde239', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:26:21.000Z'}}, {'blockNum': '0x979438', 'uniqueId': '0x18c27deec4d76d4a1eabb2bd85eb512e4e8cdf30c524ad837e2085c5241273e9:log:115', 'hash': '0x18c27deec4d76d4a1eabb2bd85eb512e4e8cdf30c524ad837e2085c5241273e9', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 600.1691522776875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208905282a02e32582', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:27:08.000Z'}}, {'blockNum': '0x979438', 'uniqueId': '0x18c27deec4d76d4a1eabb2bd85eb512e4e8cdf30c524ad837e2085c5241273e9:log:121', 'hash': '0x18c27deec4d76d4a1eabb2bd85eb512e4e8cdf30c524ad837e2085c5241273e9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 600.1691522776875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208905282a02e32582', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:27:08.000Z'}}, {'blockNum': '0x979446', 'uniqueId': '0x5c378967cc459c78da3f9909110992d9f5394ddc5250d2ce6e8b442a861c46bf:log:92', 'hash': '0x5c378967cc459c78da3f9909110992d9f5394ddc5250d2ce6e8b442a861c46bf', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 667.9077693954799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2435151189c5190ce7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:31:23.000Z'}}, {'blockNum': '0x979446', 'uniqueId': '0x5c378967cc459c78da3f9909110992d9f5394ddc5250d2ce6e8b442a861c46bf:log:98', 'hash': '0x5c378967cc459c78da3f9909110992d9f5394ddc5250d2ce6e8b442a861c46bf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 667.9077693954799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2435151189c5190ce7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:31:23.000Z'}}, {'blockNum': '0x979455', 'uniqueId': '0xe68ca1df425893df3d648c2f7f20793597790f8137e72640787112d03bce6a97:log:76', 'hash': '0xe68ca1df425893df3d648c2f7f20793597790f8137e72640787112d03bce6a97', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 667.8113102918311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2433be607e94c17fec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:34:37.000Z'}}, {'blockNum': '0x979455', 'uniqueId': '0xe68ca1df425893df3d648c2f7f20793597790f8137e72640787112d03bce6a97:log:82', 'hash': '0xe68ca1df425893df3d648c2f7f20793597790f8137e72640787112d03bce6a97', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 667.8113102918311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2433be607e94c17fec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:34:37.000Z'}}, {'blockNum': '0x979470', 'uniqueId': '0x3a3dd2521fcb3ebb1e3b25e98007687f5df8ef391b4240dc5508319ef6be196d:log:88', 'hash': '0x3a3dd2521fcb3ebb1e3b25e98007687f5df8ef391b4240dc5508319ef6be196d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 881.3632464476527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fc75f42fb4566981c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:40:26.000Z'}}, {'blockNum': '0x979470', 'uniqueId': '0x3a3dd2521fcb3ebb1e3b25e98007687f5df8ef391b4240dc5508319ef6be196d:log:94', 'hash': '0x3a3dd2521fcb3ebb1e3b25e98007687f5df8ef391b4240dc5508319ef6be196d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 881.3632464476527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fc75f42fb4566981c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:40:26.000Z'}}, {'blockNum': '0x979494', 'uniqueId': '0x864a69e8d9b4b54c598a566b4b244dad51eb91323f07855e9c7cf34537f3694a:log:137', 'hash': '0x864a69e8d9b4b54c598a566b4b244dad51eb91323f07855e9c7cf34537f3694a', 'from': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 89.4217130180717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8f9be36a1163f5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:46:57.000Z'}}, {'blockNum': '0x979494', 'uniqueId': '0x864a69e8d9b4b54c598a566b4b244dad51eb91323f07855e9c7cf34537f3694a:log:141', 'hash': '0x864a69e8d9b4b54c598a566b4b244dad51eb91323f07855e9c7cf34537f3694a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 89.4217130180717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8f9be36a1163f5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:46:57.000Z'}}, {'blockNum': '0x979495', 'uniqueId': '0x3db905a984d6e3b0e65a8a0018f64ff1680b52cd971d0c88a0f74e41c74122b9:log:50', 'hash': '0x3db905a984d6e3b0e65a8a0018f64ff1680b52cd971d0c88a0f74e41c74122b9', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1358.153147029825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49a029436b7b9a29ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:47:04.000Z'}}, {'blockNum': '0x979495', 'uniqueId': '0x3db905a984d6e3b0e65a8a0018f64ff1680b52cd971d0c88a0f74e41c74122b9:log:56', 'hash': '0x3db905a984d6e3b0e65a8a0018f64ff1680b52cd971d0c88a0f74e41c74122b9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 1358.153147029825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49a029436b7b9a29ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:47:04.000Z'}}, {'blockNum': '0x979499', 'uniqueId': '0xbf336f24ab3353722aa51773fb6bf367939b1b4645508e189b0aac19363f817c:log:116', 'hash': '0xbf336f24ab3353722aa51773fb6bf367939b1b4645508e189b0aac19363f817c', 'from': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 96.22968148580277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0537748176f241fef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:48:48.000Z'}}, {'blockNum': '0x979499', 'uniqueId': '0xbf336f24ab3353722aa51773fb6bf367939b1b4645508e189b0aac19363f817c:log:120', 'hash': '0xbf336f24ab3353722aa51773fb6bf367939b1b4645508e189b0aac19363f817c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 96.22968148580277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0537748176f241fef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:48:48.000Z'}}, {'blockNum': '0x9794ae', 'uniqueId': '0x6036218cae71959c3766d4cea6384d0eb5b871cfcb11fd4faa6f97c7ecd6ef85:log:32', 'hash': '0x6036218cae71959c3766d4cea6384d0eb5b871cfcb11fd4faa6f97c7ecd6ef85', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 463.957284517826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1926b3641e2fdc116c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:55:04.000Z'}}, {'blockNum': '0x9794ae', 'uniqueId': '0x6036218cae71959c3766d4cea6384d0eb5b871cfcb11fd4faa6f97c7ecd6ef85:log:38', 'hash': '0x6036218cae71959c3766d4cea6384d0eb5b871cfcb11fd4faa6f97c7ecd6ef85', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 463.957284517826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1926b3641e2fdc116c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:55:04.000Z'}}, {'blockNum': '0x9794b6', 'uniqueId': '0xf8828dece4f4a1ae48b68d0761ace398dc2271f9aed288e2454fe6d7e9c2cc0d:log:85', 'hash': '0xf8828dece4f4a1ae48b68d0761ace398dc2271f9aed288e2454fe6d7e9c2cc0d', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1348.7265601774384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x491d574c9f2eba6c17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:57:05.000Z'}}, {'blockNum': '0x9794b6', 'uniqueId': '0xf8828dece4f4a1ae48b68d0761ace398dc2271f9aed288e2454fe6d7e9c2cc0d:log:91', 'hash': '0xf8828dece4f4a1ae48b68d0761ace398dc2271f9aed288e2454fe6d7e9c2cc0d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1348.7265601774384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x491d574c9f2eba6c17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:57:05.000Z'}}, {'blockNum': '0x9794d7', 'uniqueId': '0x5fb627cc64c7124eac559410e02540629bef3ac180a4340a7c0fbdd302112f99:log:40', 'hash': '0x5fb627cc64c7124eac559410e02540629bef3ac180a4340a7c0fbdd302112f99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 586.09675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc5b9f0d9f0ece000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:04:23.000Z'}}, {'blockNum': '0x9794ef', 'uniqueId': '0x325a34063fe04232bca79a3a85a171c46f0ecd1f5de3e8a1f02acabd60bdb849:log:22', 'hash': '0x325a34063fe04232bca79a3a85a171c46f0ecd1f5de3e8a1f02acabd60bdb849', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x457e9b392de472d0171d1c5acade5b3451138d71', 'value': 586.09674999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc5b9f0d79ce0fc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:10:29.000Z'}}, {'blockNum': '0x979508', 'uniqueId': '0xea3e9da6b5e32fbdd295a3270571daae4cdc7a2fdd22187a5498638b37241683:log:105', 'hash': '0xea3e9da6b5e32fbdd295a3270571daae4cdc7a2fdd22187a5498638b37241683', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1937.11555054653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6902e0e9f1ab26d620', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:15:58.000Z'}}, {'blockNum': '0x979508', 'uniqueId': '0xea3e9da6b5e32fbdd295a3270571daae4cdc7a2fdd22187a5498638b37241683:log:111', 'hash': '0xea3e9da6b5e32fbdd295a3270571daae4cdc7a2fdd22187a5498638b37241683', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 1937.11555054653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6902e0e9f1ab26d620', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:15:58.000Z'}}, {'blockNum': '0x97950c', 'uniqueId': '0x67a093cf3143ec5123ce86627ce7921b3e5722a51d2863658baa050f2161844d:log:35', 'hash': '0x67a093cf3143ec5123ce86627ce7921b3e5722a51d2863658baa050f2161844d', 'from': '0x457e9b392de472d0171d1c5acade5b3451138d71', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 586.09674999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc5b9f0d79ce0fc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:16:34.000Z'}}, {'blockNum': '0x979537', 'uniqueId': '0x68610b21f496727a0ef392a681eff7c4ccf71a67e60cd4ab82df94fe344134d1:log:38', 'hash': '0x68610b21f496727a0ef392a681eff7c4ccf71a67e60cd4ab82df94fe344134d1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd1ed9b54ca79b2ef87d13e1662ed5eb4ebbba894', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:27:17.000Z'}}, {'blockNum': '0x979537', 'uniqueId': '0xc39af2e0a97c86cf74089adb3b4f65826954c60c5691aecfbc72d884c972ceee:log:55', 'hash': '0xc39af2e0a97c86cf74089adb3b4f65826954c60c5691aecfbc72d884c972ceee', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.1063818174306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3040b51e46f82a0a99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:27:17.000Z'}}, {'blockNum': '0x979537', 'uniqueId': '0xc39af2e0a97c86cf74089adb3b4f65826954c60c5691aecfbc72d884c972ceee:log:61', 'hash': '0xc39af2e0a97c86cf74089adb3b4f65826954c60c5691aecfbc72d884c972ceee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 890.1063818174306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3040b51e46f82a0a99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:27:17.000Z'}}, {'blockNum': '0x979545', 'uniqueId': '0x762d869a0260a715708fa5cc142b3b2092929b0b732a1405c06cc08aeda9adcc:log:111', 'hash': '0x762d869a0260a715708fa5cc142b3b2092929b0b732a1405c06cc08aeda9adcc', 'from': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1249.6904780775417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bef074aae7f444c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:29:55.000Z'}}, {'blockNum': '0x979545', 'uniqueId': '0x762d869a0260a715708fa5cc142b3b2092929b0b732a1405c06cc08aeda9adcc:log:117', 'hash': '0x762d869a0260a715708fa5cc142b3b2092929b0b732a1405c06cc08aeda9adcc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1249.6904780775417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bef074aae7f444c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:29:55.000Z'}}, {'blockNum': '0x97956e', 'uniqueId': '0xac203124f211639ed4aca18369c0d6a86076fb1155056b7bd0e25f590a85bbed:log:72', 'hash': '0xac203124f211639ed4aca18369c0d6a86076fb1155056b7bd0e25f590a85bbed', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 367.74434752643464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13ef7a5faea6efd683', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:38:30.000Z'}}, {'blockNum': '0x97956e', 'uniqueId': '0xac203124f211639ed4aca18369c0d6a86076fb1155056b7bd0e25f590a85bbed:log:78', 'hash': '0xac203124f211639ed4aca18369c0d6a86076fb1155056b7bd0e25f590a85bbed', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 367.74434752643464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13ef7a5faea6efd683', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:38:30.000Z'}}, {'blockNum': '0x97957b', 'uniqueId': '0x1c0ef676c1235cbd5ddd9da9266180a79e3c24d22d02adc1a84cc2f436142fb5:log:62', 'hash': '0x1c0ef676c1235cbd5ddd9da9266180a79e3c24d22d02adc1a84cc2f436142fb5', 'from': '0x9db89726ae2683d21a71ff1417638e72e6d8c0d9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 403.5564197057794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e0786996bf6da518', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:41:39.000Z'}}, {'blockNum': '0x97957b', 'uniqueId': '0x1c0ef676c1235cbd5ddd9da9266180a79e3c24d22d02adc1a84cc2f436142fb5:log:68', 'hash': '0x1c0ef676c1235cbd5ddd9da9266180a79e3c24d22d02adc1a84cc2f436142fb5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 403.5564197057794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e0786996bf6da518', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:41:39.000Z'}}, {'blockNum': '0x979596', 'uniqueId': '0x6ab79827cd258bfbe7ca4a53b8e04b70e5ccf930fcd51467cb11cd58d2a89c4a:log:47', 'hash': '0x6ab79827cd258bfbe7ca4a53b8e04b70e5ccf930fcd51467cb11cd58d2a89c4a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.1751273841535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3041a95a0184920018', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:49:14.000Z'}}, {'blockNum': '0x979596', 'uniqueId': '0x6ab79827cd258bfbe7ca4a53b8e04b70e5ccf930fcd51467cb11cd58d2a89c4a:log:53', 'hash': '0x6ab79827cd258bfbe7ca4a53b8e04b70e5ccf930fcd51467cb11cd58d2a89c4a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 890.1751273841535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3041a95a0184920018', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:49:14.000Z'}}, {'blockNum': '0x9795b8', 'uniqueId': '0x63938b482a1c439e26d3464d4b0ca415c2cf73ba9b17c3deed38a616b6c4b2a6:log:135', 'hash': '0x63938b482a1c439e26d3464d4b0ca415c2cf73ba9b17c3deed38a616b6c4b2a6', 'from': '0x810c99c5de0a673e4bc86090f9bfe96a6d1b49a7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 464.8023439783726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19326da5384fd2ef5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:55:16.000Z'}}, {'blockNum': '0x9795b8', 'uniqueId': '0x63938b482a1c439e26d3464d4b0ca415c2cf73ba9b17c3deed38a616b6c4b2a6:log:141', 'hash': '0x63938b482a1c439e26d3464d4b0ca415c2cf73ba9b17c3deed38a616b6c4b2a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 464.8023439783726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19326da5384fd2ef5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:55:16.000Z'}}, {'blockNum': '0x9795c9', 'uniqueId': '0xf1e405db367a97617c5c99c8f315817b3cc00020b95ff5d130c9be4b10034aa4:log:56', 'hash': '0xf1e405db367a97617c5c99c8f315817b3cc00020b95ff5d130c9be4b10034aa4', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 532.1611158141676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cd938135292f7839b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:59:41.000Z'}}, {'blockNum': '0x9795c9', 'uniqueId': '0xf1e405db367a97617c5c99c8f315817b3cc00020b95ff5d130c9be4b10034aa4:log:62', 'hash': '0xf1e405db367a97617c5c99c8f315817b3cc00020b95ff5d130c9be4b10034aa4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 532.1611158141676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cd938135292f7839b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:59:41.000Z'}}, {'blockNum': '0x9795db', 'uniqueId': '0xa70d8528cc4f28c012b8941297db458531b9a03fa5ea638a03ecb47bb980bc5e:log:89', 'hash': '0xa70d8528cc4f28c012b8941297db458531b9a03fa5ea638a03ecb47bb980bc5e', 'from': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 804.3429507133494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b9a8034150ab956d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:02:17.000Z'}}, {'blockNum': '0x9795db', 'uniqueId': '0xa70d8528cc4f28c012b8941297db458531b9a03fa5ea638a03ecb47bb980bc5e:log:95', 'hash': '0xa70d8528cc4f28c012b8941297db458531b9a03fa5ea638a03ecb47bb980bc5e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 804.3429507133494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b9a8034150ab956d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:02:17.000Z'}}, {'blockNum': '0x9795f4', 'uniqueId': '0xdada61ae50a4093f2b8466305e526ce452838454e830db6661cd7b0469921207:log:99', 'hash': '0xdada61ae50a4093f2b8466305e526ce452838454e830db6661cd7b0469921207', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 224.85421445868684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c307aa4b8b388483d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:07:37.000Z'}}, {'blockNum': '0x9795f4', 'uniqueId': '0xdada61ae50a4093f2b8466305e526ce452838454e830db6661cd7b0469921207:log:105', 'hash': '0xdada61ae50a4093f2b8466305e526ce452838454e830db6661cd7b0469921207', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 224.85421445868684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c307aa4b8b388483d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:07:37.000Z'}}, {'blockNum': '0x97960e', 'uniqueId': '0x62220bbe9b25167d25332f7a4b9c93df31c0554bd956c23e7f7b3e71ac151982:log:126', 'hash': '0x62220bbe9b25167d25332f7a4b9c93df31c0554bd956c23e7f7b3e71ac151982', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 123.76069078087394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06b5864c8d8ef40579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:14:01.000Z'}}, {'blockNum': '0x97960e', 'uniqueId': '0x62220bbe9b25167d25332f7a4b9c93df31c0554bd956c23e7f7b3e71ac151982:log:132', 'hash': '0x62220bbe9b25167d25332f7a4b9c93df31c0554bd956c23e7f7b3e71ac151982', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 123.76069078087394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06b5864c8d8ef40579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:14:01.000Z'}}, {'blockNum': '0x979616', 'uniqueId': '0x7f625b689c95cebf0a8155cb4a38ece24b34b6c87292e399c0ff67a1c7df1848:log:243', 'hash': '0x7f625b689c95cebf0a8155cb4a38ece24b34b6c87292e399c0ff67a1c7df1848', 'from': '0xdba193795e33b445b8c215252b0055a58db4f0af', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1632.04095848994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58791e3cd2b0e9645f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:48.000Z'}}, {'blockNum': '0x979616', 'uniqueId': '0x7f625b689c95cebf0a8155cb4a38ece24b34b6c87292e399c0ff67a1c7df1848:log:249', 'hash': '0x7f625b689c95cebf0a8155cb4a38ece24b34b6c87292e399c0ff67a1c7df1848', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1632.04095848994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58791e3cd2b0e9645f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:48.000Z'}}, {'blockNum': '0x979617', 'uniqueId': '0x914f4e99096663af5de8682134290b8f64a1e94320856639478eb8100e7b656d:log:32', 'hash': '0x914f4e99096663af5de8682134290b8f64a1e94320856639478eb8100e7b656d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.5805969917384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304749de773be1ab78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:49.000Z'}}, {'blockNum': '0x979617', 'uniqueId': '0x914f4e99096663af5de8682134290b8f64a1e94320856639478eb8100e7b656d:log:38', 'hash': '0x914f4e99096663af5de8682134290b8f64a1e94320856639478eb8100e7b656d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbdc7310289dcd30d16e284d6f207a8e2f76a37ad', 'value': 890.5805969917384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304749de773be1ab78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:49.000Z'}}, {'blockNum': '0x979618', 'uniqueId': '0x1f684a248fa5f1d0f15f7359356782f187c8d5fe28992868d52bb24ade6af185:log:24', 'hash': '0x1f684a248fa5f1d0f15f7359356782f187c8d5fe28992868d52bb24ade6af185', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xecab1d996f242dbae8b0791df9951452e19402f7', 'value': 243.6594633291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d35744eef4552eb00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:56.000Z'}}, {'blockNum': '0x97962b', 'uniqueId': '0x25bd24d255aeea61ae9e9bacd044f64af077de414eeaa888291811cbf3d544aa:log:113', 'hash': '0x25bd24d255aeea61ae9e9bacd044f64af077de414eeaa888291811cbf3d544aa', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 44.52453197673859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0269e6e9ee88063a26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:19:41.000Z'}}, {'blockNum': '0x97962b', 'uniqueId': '0x25bd24d255aeea61ae9e9bacd044f64af077de414eeaa888291811cbf3d544aa:log:119', 'hash': '0x25bd24d255aeea61ae9e9bacd044f64af077de414eeaa888291811cbf3d544aa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 44.52453197673859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0269e6e9ee88063a26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:19:41.000Z'}}, {'blockNum': '0x97962b', 'uniqueId': '0xfea911d7f5ed45d2daddb3b5fe9063f6f6ff3ba066e00cad0512950bd3959ab9:log:139', 'hash': '0xfea911d7f5ed45d2daddb3b5fe9063f6f6ff3ba066e00cad0512950bd3959ab9', 'from': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1995.503046570194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c2d2af83a323151ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:19:41.000Z'}}, {'blockNum': '0x97962b', 'uniqueId': '0xfea911d7f5ed45d2daddb3b5fe9063f6f6ff3ba066e00cad0512950bd3959ab9:log:145', 'hash': '0xfea911d7f5ed45d2daddb3b5fe9063f6f6ff3ba066e00cad0512950bd3959ab9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1995.503046570194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c2d2af83a323151ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:19:41.000Z'}}, {'blockNum': '0x97963b', 'uniqueId': '0x9a9344dd41aa45f5b7e9ffeeb0dd52412addb78ceffaee89e089030b567665f5:log:47', 'hash': '0x9a9344dd41aa45f5b7e9ffeeb0dd52412addb78ceffaee89e089030b567665f5', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 873.4528246091803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f5997cc3b0bc3c666', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:22:32.000Z'}}, {'blockNum': '0x97963b', 'uniqueId': '0x9a9344dd41aa45f5b7e9ffeeb0dd52412addb78ceffaee89e089030b567665f5:log:51', 'hash': '0x9a9344dd41aa45f5b7e9ffeeb0dd52412addb78ceffaee89e089030b567665f5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 873.4528246091803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f5997cc3b0bc3c666', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:22:32.000Z'}}, {'blockNum': '0x979642', 'uniqueId': '0x8142b7db2206b28e19d0b9c21c7ea91bcbeef1a5adf37b2b4f8f48ad6de4a528:log:60', 'hash': '0x8142b7db2206b28e19d0b9c21c7ea91bcbeef1a5adf37b2b4f8f48ad6de4a528', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 686.2526661117174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2533ab3be7f9a9bba6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:23:58.000Z'}}, {'blockNum': '0x979642', 'uniqueId': '0x8142b7db2206b28e19d0b9c21c7ea91bcbeef1a5adf37b2b4f8f48ad6de4a528:log:66', 'hash': '0x8142b7db2206b28e19d0b9c21c7ea91bcbeef1a5adf37b2b4f8f48ad6de4a528', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 686.2526661117174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2533ab3be7f9a9bba6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:23:58.000Z'}}, {'blockNum': '0x979651', 'uniqueId': '0x232ee0ef712a7cb85cc5dc25d4d1ce2908a77a1df5e05245c3d7993758e3be01:log:41', 'hash': '0x232ee0ef712a7cb85cc5dc25d4d1ce2908a77a1df5e05245c3d7993758e3be01', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 877.592911325385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f930c5729f6759fa4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:27:24.000Z'}}, {'blockNum': '0x979651', 'uniqueId': '0x232ee0ef712a7cb85cc5dc25d4d1ce2908a77a1df5e05245c3d7993758e3be01:log:47', 'hash': '0x232ee0ef712a7cb85cc5dc25d4d1ce2908a77a1df5e05245c3d7993758e3be01', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 877.592911325385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f930c5729f6759fa4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:27:24.000Z'}}, {'blockNum': '0x97965a', 'uniqueId': '0xf166ef84e5df868c7aded607e0f4fb9640a8ad76d8b7826ba4ac11b82ff7cb15:log:140', 'hash': '0xf166ef84e5df868c7aded607e0f4fb9640a8ad76d8b7826ba4ac11b82ff7cb15', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 267.3038545374758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7d960f771eee29de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:29:42.000Z'}}, {'blockNum': '0x97965a', 'uniqueId': '0xf166ef84e5df868c7aded607e0f4fb9640a8ad76d8b7826ba4ac11b82ff7cb15:log:146', 'hash': '0xf166ef84e5df868c7aded607e0f4fb9640a8ad76d8b7826ba4ac11b82ff7cb15', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 267.3038545374758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7d960f771eee29de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:29:42.000Z'}}, {'blockNum': '0x97965b', 'uniqueId': '0xac6557aa7d92a81ab8838aca4031a6a958abc1e4aed7062e113cf7492b0e9606:log:88', 'hash': '0xac6557aa7d92a81ab8838aca4031a6a958abc1e4aed7062e113cf7492b0e9606', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.639347723172655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ee9865edca552b15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:29:47.000Z'}}, {'blockNum': '0x97965b', 'uniqueId': '0xac6557aa7d92a81ab8838aca4031a6a958abc1e4aed7062e113cf7492b0e9606:log:94', 'hash': '0xac6557aa7d92a81ab8838aca4031a6a958abc1e4aed7062e113cf7492b0e9606', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 35.639347723172655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ee9865edca552b15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:29:47.000Z'}}, {'blockNum': '0x97965e', 'uniqueId': '0x3ebf8e072c4fc99adc2332b156cbec0bc70e7cfb11f833aa7fcf86da0ba8c9ef:log:49', 'hash': '0x3ebf8e072c4fc99adc2332b156cbec0bc70e7cfb11f833aa7fcf86da0ba8c9ef', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 897.2969408472743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30a47f1d9e1e79dc40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:32:09.000Z'}}, {'blockNum': '0x97965e', 'uniqueId': '0x3ebf8e072c4fc99adc2332b156cbec0bc70e7cfb11f833aa7fcf86da0ba8c9ef:log:55', 'hash': '0x3ebf8e072c4fc99adc2332b156cbec0bc70e7cfb11f833aa7fcf86da0ba8c9ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 897.2969408472743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30a47f1d9e1e79dc40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:32:09.000Z'}}, {'blockNum': '0x97966e', 'uniqueId': '0x1e979dcef47125b2c4a9865b8c84b8ff712c9d8948d6e6e768c555c229fd6bd6:log:103', 'hash': '0x1e979dcef47125b2c4a9865b8c84b8ff712c9d8948d6e6e768c555c229fd6bd6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 647.6510370745054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x231bf6b2d1273d07ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:35:29.000Z'}}, {'blockNum': '0x97966e', 'uniqueId': '0x1e979dcef47125b2c4a9865b8c84b8ff712c9d8948d6e6e768c555c229fd6bd6:log:109', 'hash': '0x1e979dcef47125b2c4a9865b8c84b8ff712c9d8948d6e6e768c555c229fd6bd6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 647.6510370745054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x231bf6b2d1273d07ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:35:29.000Z'}}, {'blockNum': '0x97966e', 'uniqueId': '0xf89f21d80e70c91c1a26f51ccadac9521d0e1532b247e58719a9f083c7a075a2:log:124', 'hash': '0xf89f21d80e70c91c1a26f51ccadac9521d0e1532b247e58719a9f083c7a075a2', 'from': '0x8591afdf50093938a7f608e2f15b114dcddd8b9a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4093.646806382491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddeac30155a4a6c592', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:35:29.000Z'}}, {'blockNum': '0x97966e', 'uniqueId': '0xf89f21d80e70c91c1a26f51ccadac9521d0e1532b247e58719a9f083c7a075a2:log:130', 'hash': '0xf89f21d80e70c91c1a26f51ccadac9521d0e1532b247e58719a9f083c7a075a2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 4093.646806382491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddeac30155a4a6c592', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:35:29.000Z'}}, {'blockNum': '0x979691', 'uniqueId': '0x44f0c2a5eed3f515616e30d3d49696aa7114f28a627bff70b73bf3cda163792f:log:164', 'hash': '0x44f0c2a5eed3f515616e30d3d49696aa7114f28a627bff70b73bf3cda163792f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2674.67156589794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90fe86422ab886a8d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:41:54.000Z'}}, {'blockNum': '0x979691', 'uniqueId': '0x44f0c2a5eed3f515616e30d3d49696aa7114f28a627bff70b73bf3cda163792f:log:170', 'hash': '0x44f0c2a5eed3f515616e30d3d49696aa7114f28a627bff70b73bf3cda163792f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 2674.67156589794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90fe86422ab886a8d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:41:54.000Z'}}, {'blockNum': '0x9796ac', 'uniqueId': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06:log:85', 'hash': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 696.8497361655915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25c6bb96f976c1a880', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:48:19.000Z'}}, {'blockNum': '0x9796ac', 'uniqueId': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06:log:90', 'hash': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 696.8497361655915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25c6bb96f976c1a880', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:48:19.000Z'}}, {'blockNum': '0x9796ac', 'uniqueId': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06:log:92', 'hash': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 696.8497361655915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25c6bb96f976c1a880', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:48:19.000Z'}}, {'blockNum': '0x9796ac', 'uniqueId': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06:log:94', 'hash': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 696.8497361655915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25c6bb96f976c1a880', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:48:19.000Z'}}, {'blockNum': '0x9796d4', 'uniqueId': '0x92f043d4ef54dce6798e5622d3c0d23d6d6f654131817dc1854272b3e3a4cd42:log:94', 'hash': '0x92f043d4ef54dce6798e5622d3c0d23d6d6f654131817dc1854272b3e3a4cd42', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 356.488085690909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135344192e59a4bfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:56:38.000Z'}}, {'blockNum': '0x9796d4', 'uniqueId': '0x92f043d4ef54dce6798e5622d3c0d23d6d6f654131817dc1854272b3e3a4cd42:log:100', 'hash': '0x92f043d4ef54dce6798e5622d3c0d23d6d6f654131817dc1854272b3e3a4cd42', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 356.488085690909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135344192e59a4bfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:56:38.000Z'}}, {'blockNum': '0x9796d9', 'uniqueId': '0x022a1d15ca90d50901af867148366cd69a9efee8f87c8d3f7755d645a762fc1a:log:46', 'hash': '0x022a1d15ca90d50901af867148366cd69a9efee8f87c8d3f7755d645a762fc1a', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 202.65931459136777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0afc7684e2c29d1f7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:58:37.000Z'}}, {'blockNum': '0x9796d9', 'uniqueId': '0x022a1d15ca90d50901af867148366cd69a9efee8f87c8d3f7755d645a762fc1a:log:52', 'hash': '0x022a1d15ca90d50901af867148366cd69a9efee8f87c8d3f7755d645a762fc1a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 202.65931459136777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0afc7684e2c29d1f7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:58:37.000Z'}}, {'blockNum': '0x9796da', 'uniqueId': '0x5180e3c7e8b19344086db6f27c303ea48b38ce65f79f8977d995017f6fc48969:log:12', 'hash': '0x5180e3c7e8b19344086db6f27c303ea48b38ce65f79f8977d995017f6fc48969', 'from': '0x8f20a07e0541ca2db9152d7e521aee5d639b211d', 'to': '0x1d939bde3f98c8e69397dd257e1490e43b94c795', 'value': 643.696088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e513e59684958000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:58:40.000Z'}}, {'blockNum': '0x9796fe', 'uniqueId': '0x0307f12643f3a05cebca666450ec5b057050bda44926fd89cbea0ffb2a8205c0:log:114', 'hash': '0x0307f12643f3a05cebca666450ec5b057050bda44926fd89cbea0ffb2a8205c0', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 891.1389440000006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304f09841c8cc109fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:48.000Z'}}, {'blockNum': '0x9796fe', 'uniqueId': '0x0307f12643f3a05cebca666450ec5b057050bda44926fd89cbea0ffb2a8205c0:log:120', 'hash': '0x0307f12643f3a05cebca666450ec5b057050bda44926fd89cbea0ffb2a8205c0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8591afdf50093938a7f608e2f15b114dcddd8b9a', 'value': 891.1389440000006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304f09841c8cc109fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:48.000Z'}}, {'blockNum': '0x9796ff', 'uniqueId': '0x461cfdffb6efee84a0a096cdf97ee5849f54acf9540e72d2263f51787a1f254f:log:106', 'hash': '0x461cfdffb6efee84a0a096cdf97ee5849f54acf9540e72d2263f51787a1f254f', 'from': '0xdba193795e33b445b8c215252b0055a58db4f0af', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1611.9710068480265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5762977223cd639368', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:58.000Z'}}, {'blockNum': '0x9796ff', 'uniqueId': '0x461cfdffb6efee84a0a096cdf97ee5849f54acf9540e72d2263f51787a1f254f:log:112', 'hash': '0x461cfdffb6efee84a0a096cdf97ee5849f54acf9540e72d2263f51787a1f254f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1611.9710068480265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5762977223cd639368', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:58.000Z'}}, {'blockNum': '0x9796ff', 'uniqueId': '0x713b7cee963444e4a5c3fe6f68b6ff07bd29e2e5128edb1e045b91212aa4a93e:log:126', 'hash': '0x713b7cee963444e4a5c3fe6f68b6ff07bd29e2e5128edb1e045b91212aa4a93e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 190.02944606569793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a4d303660aa2d456c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:58.000Z'}}, {'blockNum': '0x9796ff', 'uniqueId': '0x713b7cee963444e4a5c3fe6f68b6ff07bd29e2e5128edb1e045b91212aa4a93e:log:132', 'hash': '0x713b7cee963444e4a5c3fe6f68b6ff07bd29e2e5128edb1e045b91212aa4a93e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 190.02944606569793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a4d303660aa2d456c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:58.000Z'}}, {'blockNum': '0x979716', 'uniqueId': '0x86869534d6f5ec8d2e90aa41b49f29037bab3d6fbc055abb69280676acb3e6d3:log:176', 'hash': '0x86869534d6f5ec8d2e90aa41b49f29037bab3d6fbc055abb69280676acb3e6d3', 'from': '0x8b2b3d18230661157d399226686d91b2fc340a30', 'to': '0xb8b7016d62db206269149f71fa0c2b5e9cd828b1', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a2241af62c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:11:58.000Z'}}, {'blockNum': '0x979718', 'uniqueId': '0x27a5eb93cb9001ff8e3110f676e75a852a83233762498ae6cf4fb446d7a35dae:log:46', 'hash': '0x27a5eb93cb9001ff8e3110f676e75a852a83233762498ae6cf4fb446d7a35dae', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 956.3792957938898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d86dce68ed0ab810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:12:07.000Z'}}, {'blockNum': '0x979718', 'uniqueId': '0x27a5eb93cb9001ff8e3110f676e75a852a83233762498ae6cf4fb446d7a35dae:log:52', 'hash': '0x27a5eb93cb9001ff8e3110f676e75a852a83233762498ae6cf4fb446d7a35dae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 956.3792957938898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d86dce68ed0ab810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:12:07.000Z'}}, {'blockNum': '0x979725', 'uniqueId': '0x295795f7fac255480cc10bd8a32dbdaed11ce6fed02ae8cce5b8e2836c8a7428:log:165', 'hash': '0x295795f7fac255480cc10bd8a32dbdaed11ce6fed02ae8cce5b8e2836c8a7428', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1077.2706500293175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a66222c93bf9dba58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:15:05.000Z'}}, {'blockNum': '0x979725', 'uniqueId': '0x295795f7fac255480cc10bd8a32dbdaed11ce6fed02ae8cce5b8e2836c8a7428:log:169', 'hash': '0x295795f7fac255480cc10bd8a32dbdaed11ce6fed02ae8cce5b8e2836c8a7428', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1077.2706500293175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a66222c93bf9dba58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:15:05.000Z'}}, {'blockNum': '0x97972e', 'uniqueId': '0xb3831336f769e5d9111c6ac11df9134090e45df8972a92fe3388ed94a8dab346:log:93', 'hash': '0xb3831336f769e5d9111c6ac11df9134090e45df8972a92fe3388ed94a8dab346', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8.91716754432553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bc024a2ea2a5e8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:17:16.000Z'}}, {'blockNum': '0x97972e', 'uniqueId': '0xb3831336f769e5d9111c6ac11df9134090e45df8972a92fe3388ed94a8dab346:log:99', 'hash': '0xb3831336f769e5d9111c6ac11df9134090e45df8972a92fe3388ed94a8dab346', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 8.91716754432553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bc024a2ea2a5e8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:17:16.000Z'}}, {'blockNum': '0x979749', 'uniqueId': '0x2c9d663175b1438c70982e3e73da9de4a280a48d8f2fe01234ff983466c2c7a8:log:152', 'hash': '0x2c9d663175b1438c70982e3e73da9de4a280a48d8f2fe01234ff983466c2c7a8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8908.566242608596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2ef31260bb1c79e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:22:48.000Z'}}, {'blockNum': '0x979749', 'uniqueId': '0x2c9d663175b1438c70982e3e73da9de4a280a48d8f2fe01234ff983466c2c7a8:log:157', 'hash': '0x2c9d663175b1438c70982e3e73da9de4a280a48d8f2fe01234ff983466c2c7a8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 8908.566242608596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2ef31260bb1c79e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:22:48.000Z'}}, {'blockNum': '0x97974d', 'uniqueId': '0xee1ed1c0a4b8502dabc541d60e507412d223628bf8a92ea3c678302d72d4bcae:log:124', 'hash': '0xee1ed1c0a4b8502dabc541d60e507412d223628bf8a92ea3c678302d72d4bcae', 'from': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8.881552335211701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b419ccada55a290', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:24:14.000Z'}}, {'blockNum': '0x97974d', 'uniqueId': '0xee1ed1c0a4b8502dabc541d60e507412d223628bf8a92ea3c678302d72d4bcae:log:130', 'hash': '0xee1ed1c0a4b8502dabc541d60e507412d223628bf8a92ea3c678302d72d4bcae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 8.881552335211701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b419ccada55a290', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:24:14.000Z'}}, {'blockNum': '0x979774', 'uniqueId': '0x7a84020e23385975385f830d76af824d5a8b8879225bcc4695af14f0bc41fa09:log:75', 'hash': '0x7a84020e23385975385f830d76af824d5a8b8879225bcc4695af14f0bc41fa09', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 531.5026178396547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cd0149ee752d127a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:33:24.000Z'}}, {'blockNum': '0x979774', 'uniqueId': '0x7a84020e23385975385f830d76af824d5a8b8879225bcc4695af14f0bc41fa09:log:81', 'hash': '0x7a84020e23385975385f830d76af824d5a8b8879225bcc4695af14f0bc41fa09', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 531.5026178396547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cd0149ee752d127a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:33:24.000Z'}}, {'blockNum': '0x97978c', 'uniqueId': '0x51662e520b395ca8350fc0af2541ab28de210d5d439fd54548da9cd1da95fe8c:log:18', 'hash': '0x51662e520b395ca8350fc0af2541ab28de210d5d439fd54548da9cd1da95fe8c', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 873.3007439731426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f577b7fb2ab84b8a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:39:35.000Z'}}, {'blockNum': '0x97978c', 'uniqueId': '0x51662e520b395ca8350fc0af2541ab28de210d5d439fd54548da9cd1da95fe8c:log:24', 'hash': '0x51662e520b395ca8350fc0af2541ab28de210d5d439fd54548da9cd1da95fe8c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 873.3007439731426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f577b7fb2ab84b8a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:39:35.000Z'}}, {'blockNum': '0x97979d', 'uniqueId': '0xb67c1db9ee328258ed6ae0daa567a32c3d2478d236f589c3375f50e5a645d20b:log:73', 'hash': '0xb67c1db9ee328258ed6ae0daa567a32c3d2478d236f589c3375f50e5a645d20b', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 879.4005724874672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac227169d6a3abaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:42:49.000Z'}}, {'blockNum': '0x97979d', 'uniqueId': '0xb67c1db9ee328258ed6ae0daa567a32c3d2478d236f589c3375f50e5a645d20b:log:79', 'hash': '0xb67c1db9ee328258ed6ae0daa567a32c3d2478d236f589c3375f50e5a645d20b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 879.4005724874672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac227169d6a3abaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:42:49.000Z'}}, {'blockNum': '0x9797a5', 'uniqueId': '0x4dad27361a8c88e64b7dbe087e93a4d208fe5dac6f129925f5ee62fa7d7ae4db:log:23', 'hash': '0x4dad27361a8c88e64b7dbe087e93a4d208fe5dac6f129925f5ee62fa7d7ae4db', 'from': '0x1d939bde3f98c8e69397dd257e1490e43b94c795', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 643.696088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e513e59684958000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:44:24.000Z'}}, {'blockNum': '0x9797a5', 'uniqueId': '0xaa4e347845e6a4fcd89d5333ccac06aebe0598245d969300fce0137f66bf19f5:log:33', 'hash': '0xaa4e347845e6a4fcd89d5333ccac06aebe0598245d969300fce0137f66bf19f5', 'from': '0xb8b7016d62db206269149f71fa0c2b5e9cd828b1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a2241af62c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:44:24.000Z'}}, {'blockNum': '0x9797ac', 'uniqueId': '0x6d30eb590fae12a9a619e0421df5675d4e0a10189ed617a38e8896b5df438e98:log:75', 'hash': '0x6d30eb590fae12a9a619e0421df5675d4e0a10189ed617a38e8896b5df438e98', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 358.958901495866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13758e33109186dd8f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:46:05.000Z'}}, {'blockNum': '0x9797ac', 'uniqueId': '0x6d30eb590fae12a9a619e0421df5675d4e0a10189ed617a38e8896b5df438e98:log:81', 'hash': '0x6d30eb590fae12a9a619e0421df5675d4e0a10189ed617a38e8896b5df438e98', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 358.958901495866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13758e33109186dd8f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:46:05.000Z'}}, {'blockNum': '0x9797e1', 'uniqueId': '0x3c8b78808a5931a53320a1ff2f91e29b706f70bbf7b8e19eff56293828f68ba3:log:125', 'hash': '0x3c8b78808a5931a53320a1ff2f91e29b706f70bbf7b8e19eff56293828f68ba3', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 583.79497191365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fa5c861e08c41691f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:57:30.000Z'}}, {'blockNum': '0x9797e1', 'uniqueId': '0x3c8b78808a5931a53320a1ff2f91e29b706f70bbf7b8e19eff56293828f68ba3:log:131', 'hash': '0x3c8b78808a5931a53320a1ff2f91e29b706f70bbf7b8e19eff56293828f68ba3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 583.79497191365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fa5c861e08c41691f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:57:30.000Z'}}, {'blockNum': '0x9797f0', 'uniqueId': '0xc0c4a53f52400b35a41358c7123b43dc908ff4618261753fad70350680221209:log:12', 'hash': '0xc0c4a53f52400b35a41358c7123b43dc908ff4618261753fad70350680221209', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 748.9087089008005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28993236db5ca47f6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:59:58.000Z'}}, {'blockNum': '0x9797f0', 'uniqueId': '0xc0c4a53f52400b35a41358c7123b43dc908ff4618261753fad70350680221209:log:18', 'hash': '0xc0c4a53f52400b35a41358c7123b43dc908ff4618261753fad70350680221209', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 748.9087089008005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28993236db5ca47f6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:59:58.000Z'}}, {'blockNum': '0x9797f3', 'uniqueId': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e:log:84', 'hash': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 772.5066257745189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e0aedb39f5d04b4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:00:37.000Z'}}, {'blockNum': '0x9797f3', 'uniqueId': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e:log:89', 'hash': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 772.5066257745189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e0aedb39f5d04b4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:00:37.000Z'}}, {'blockNum': '0x9797f3', 'uniqueId': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e:log:91', 'hash': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 772.5066257745189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e0aedb39f5d04b4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:00:37.000Z'}}, {'blockNum': '0x9797f3', 'uniqueId': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e:log:93', 'hash': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 772.5066257745189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e0aedb39f5d04b4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:00:37.000Z'}}, {'blockNum': '0x9797fa', 'uniqueId': '0x93a5b41932ec50881155a003c190c843f11bed1f569d4dd69ed8015d3e0a6d60:log:125', 'hash': '0x93a5b41932ec50881155a003c190c843f11bed1f569d4dd69ed8015d3e0a6d60', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4.451291040799663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dc6299e1ebe2136', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:02:28.000Z'}}, {'blockNum': '0x9797fa', 'uniqueId': '0x93a5b41932ec50881155a003c190c843f11bed1f569d4dd69ed8015d3e0a6d60:log:131', 'hash': '0x93a5b41932ec50881155a003c190c843f11bed1f569d4dd69ed8015d3e0a6d60', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 4.451291040799663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dc6299e1ebe2136', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:02:28.000Z'}}, {'blockNum': '0x9797fe', 'uniqueId': '0xb64f4fecda23e08609370017ac7f5f97ff0fe77995b2d1063d0487e42b89c2a3:log:28', 'hash': '0xb64f4fecda23e08609370017ac7f5f97ff0fe77995b2d1063d0487e42b89c2a3', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 412.89628704166137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x166216497233f303fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:03:33.000Z'}}, {'blockNum': '0x9797fe', 'uniqueId': '0xb64f4fecda23e08609370017ac7f5f97ff0fe77995b2d1063d0487e42b89c2a3:log:34', 'hash': '0xb64f4fecda23e08609370017ac7f5f97ff0fe77995b2d1063d0487e42b89c2a3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 412.89628704166137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x166216497233f303fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:03:33.000Z'}}, {'blockNum': '0x979839', 'uniqueId': '0x32fa18d53a24d97459cd3ec5c42f0bc18cd73bee57f28c9ccbd6f0df1c9de540:log:87', 'hash': '0x32fa18d53a24d97459cd3ec5c42f0bc18cd73bee57f28c9ccbd6f0df1c9de540', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 66.60945131013565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039c644f0df850299f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:14:14.000Z'}}, {'blockNum': '0x979839', 'uniqueId': '0x32fa18d53a24d97459cd3ec5c42f0bc18cd73bee57f28c9ccbd6f0df1c9de540:log:93', 'hash': '0x32fa18d53a24d97459cd3ec5c42f0bc18cd73bee57f28c9ccbd6f0df1c9de540', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'value': 66.60945131013565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039c644f0df850299f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:14:14.000Z'}}, {'blockNum': '0x97984b', 'uniqueId': '0x28af95a5f2213d4926c7b292675e589c88b3bb964c22b217d421ef970a136ac9:log:49', 'hash': '0x28af95a5f2213d4926c7b292675e589c88b3bb964c22b217d421ef970a136ac9', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 358.776734632259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1373070344766296e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:17:19.000Z'}}, {'blockNum': '0x97984b', 'uniqueId': '0x28af95a5f2213d4926c7b292675e589c88b3bb964c22b217d421ef970a136ac9:log:55', 'hash': '0x28af95a5f2213d4926c7b292675e589c88b3bb964c22b217d421ef970a136ac9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 358.776734632259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1373070344766296e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:17:19.000Z'}}, {'blockNum': '0x979851', 'uniqueId': '0x2ff9755ad8a51161924de117090b9150faec64afdd481b5150a3f07e2f681426:log:104', 'hash': '0x2ff9755ad8a51161924de117090b9150faec64afdd481b5150a3f07e2f681426', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9.037482687465882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7d6b969f22258238', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:18:33.000Z'}}, {'blockNum': '0x979851', 'uniqueId': '0x2ff9755ad8a51161924de117090b9150faec64afdd481b5150a3f07e2f681426:log:110', 'hash': '0x2ff9755ad8a51161924de117090b9150faec64afdd481b5150a3f07e2f681426', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 9.037482687465882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7d6b969f22258238', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:18:33.000Z'}}, {'blockNum': '0x97986b', 'uniqueId': '0x7e64f23f9b0621a313c83ca49a3eea8ac3a1beddce831a5d3ee4be14c3dbc94b:log:33', 'hash': '0x7e64f23f9b0621a313c83ca49a3eea8ac3a1beddce831a5d3ee4be14c3dbc94b', 'from': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 895.9945338849782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30926c0962c9d233fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:24:26.000Z'}}, {'blockNum': '0x97986b', 'uniqueId': '0x7e64f23f9b0621a313c83ca49a3eea8ac3a1beddce831a5d3ee4be14c3dbc94b:log:39', 'hash': '0x7e64f23f9b0621a313c83ca49a3eea8ac3a1beddce831a5d3ee4be14c3dbc94b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 895.9945338849782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30926c0962c9d233fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:24:26.000Z'}}, {'blockNum': '0x979873', 'uniqueId': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e:log:82', 'hash': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2454.105524897925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85098e447c8061e7cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:25:57.000Z'}}, {'blockNum': '0x979873', 'uniqueId': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e:log:87', 'hash': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 2454.105524897925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85098e447c8061e7cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:25:57.000Z'}}, {'blockNum': '0x979873', 'uniqueId': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e:log:88', 'hash': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2453.8601143454352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85062664e39b1893c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:25:57.000Z'}}, {'blockNum': '0x979873', 'uniqueId': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e:log:90', 'hash': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf0caa308be55d93503546d8f2a0e954dc8cba563', 'value': 2453.8601143454352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85062664e39b1893c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:25:57.000Z'}}, {'blockNum': '0x979883', 'uniqueId': '0x862f841abdd2a1faef3532c740af4939e58d06de3b1bcfada09d55b86b3b6a16:log:38', 'hash': '0x862f841abdd2a1faef3532c740af4939e58d06de3b1bcfada09d55b86b3b6a16', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 863.4313732114128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ece847347c1fdc666', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:29:43.000Z'}}, {'blockNum': '0x979883', 'uniqueId': '0x862f841abdd2a1faef3532c740af4939e58d06de3b1bcfada09d55b86b3b6a16:log:44', 'hash': '0x862f841abdd2a1faef3532c740af4939e58d06de3b1bcfada09d55b86b3b6a16', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 863.4313732114128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ece847347c1fdc666', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:29:43.000Z'}}, {'blockNum': '0x97988f', 'uniqueId': '0x2385dab3088b512c313b83298c5341197aafdc49b5b7c5b78d9ac62e1a8d2c77:log:79', 'hash': '0x2385dab3088b512c313b83298c5341197aafdc49b5b7c5b78d9ac62e1a8d2c77', 'from': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 793.5746554991797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b050f88a345996109', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:34:32.000Z'}}, {'blockNum': '0x97988f', 'uniqueId': '0x2385dab3088b512c313b83298c5341197aafdc49b5b7c5b78d9ac62e1a8d2c77:log:85', 'hash': '0x2385dab3088b512c313b83298c5341197aafdc49b5b7c5b78d9ac62e1a8d2c77', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 793.5746554991797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b050f88a345996109', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:34:32.000Z'}}, {'blockNum': '0x979891', 'uniqueId': '0x28d3254b56622f05b3a0d8da1998a5d0acbecf32739dce482ede7bda683074a5:log:51', 'hash': '0x28d3254b56622f05b3a0d8da1998a5d0acbecf32739dce482ede7bda683074a5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 667.7589107194041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x243304375c67dc7e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:35:37.000Z'}}, {'blockNum': '0x979891', 'uniqueId': '0x28d3254b56622f05b3a0d8da1998a5d0acbecf32739dce482ede7bda683074a5:log:57', 'hash': '0x28d3254b56622f05b3a0d8da1998a5d0acbecf32739dce482ede7bda683074a5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'value': 667.7589107194041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x243304375c67dc7e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:35:37.000Z'}}, {'blockNum': '0x979897', 'uniqueId': '0x59df8163384dde393d69520aeeff705d6496cd64bb36e6d053c7f48501cc99b0:log:17', 'hash': '0x59df8163384dde393d69520aeeff705d6496cd64bb36e6d053c7f48501cc99b0', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1472.2157260625925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcf18f2b8809faf47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:37:16.000Z'}}, {'blockNum': '0x979897', 'uniqueId': '0x59df8163384dde393d69520aeeff705d6496cd64bb36e6d053c7f48501cc99b0:log:23', 'hash': '0x59df8163384dde393d69520aeeff705d6496cd64bb36e6d053c7f48501cc99b0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1472.2157260625925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcf18f2b8809faf47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:37:16.000Z'}}, {'blockNum': '0x97989a', 'uniqueId': '0x18814d2729938c23933a62171377d1b2bd421ed8412a702c7f81fcf5bac976ac:log:117', 'hash': '0x18814d2729938c23933a62171377d1b2bd421ed8412a702c7f81fcf5bac976ac', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x5ce0eb4fc4cc6e81cf6760fb1a10f21e16e0d044', 'value': 8.943785303194375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c1eb558d8428eae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:37:33.000Z'}}, {'blockNum': '0x9798bb', 'uniqueId': '0x8cefb997a6426e9f5154016ce954baa8e909779de80f1d61807c6af8b031b1f2:log:19', 'hash': '0x8cefb997a6426e9f5154016ce954baa8e909779de80f1d61807c6af8b031b1f2', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 23.617758550540472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0147c32244fbe8d5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:43:43.000Z'}}, {'blockNum': '0x9798bb', 'uniqueId': '0x8cefb997a6426e9f5154016ce954baa8e909779de80f1d61807c6af8b031b1f2:log:25', 'hash': '0x8cefb997a6426e9f5154016ce954baa8e909779de80f1d61807c6af8b031b1f2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 23.617758550540472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0147c32244fbe8d5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:43:43.000Z'}}, {'blockNum': '0x9798d7', 'uniqueId': '0x1ff48c1eafdf7f22a9f5343eba83c351e39503eaf7c83aec450449a5740da739:log:9', 'hash': '0x1ff48c1eafdf7f22a9f5343eba83c351e39503eaf7c83aec450449a5740da739', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6efac91a4feaa06ff83130d854a3bb225f090e09', 'value': 82.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x047978fcaf30be0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:50:59.000Z'}}, {'blockNum': '0x9798ee', 'uniqueId': '0x582ae8508019e43219af1fea0ca7e4d2a6c9b8e4a4c31be25c26c4956ee052d4:log:88', 'hash': '0x582ae8508019e43219af1fea0ca7e4d2a6c9b8e4a4c31be25c26c4956ee052d4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 970.6176548868416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x349e069e911ce28a42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:56:45.000Z'}}, {'blockNum': '0x9798ee', 'uniqueId': '0x582ae8508019e43219af1fea0ca7e4d2a6c9b8e4a4c31be25c26c4956ee052d4:log:94', 'hash': '0x582ae8508019e43219af1fea0ca7e4d2a6c9b8e4a4c31be25c26c4956ee052d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 970.6176548868416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x349e069e911ce28a42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:56:45.000Z'}}, {'blockNum': '0x979927', 'uniqueId': '0xdc8ed533b329fee00e515b63eb0e812ee61c430b34420ad728fbc0673e79a7df:log:131', 'hash': '0xdc8ed533b329fee00e515b63eb0e812ee61c430b34420ad728fbc0673e79a7df', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2526.384886947502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x88f4a2255165436514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:10:43.000Z'}}, {'blockNum': '0x979927', 'uniqueId': '0xdc8ed533b329fee00e515b63eb0e812ee61c430b34420ad728fbc0673e79a7df:log:137', 'hash': '0xdc8ed533b329fee00e515b63eb0e812ee61c430b34420ad728fbc0673e79a7df', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 2526.384886947502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x88f4a2255165436514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:10:43.000Z'}}, {'blockNum': '0x979927', 'uniqueId': '0x5f50262d4610a59ab40a7353822987c28885f07290a448984335fd29039c8b00:log:157', 'hash': '0x5f50262d4610a59ab40a7353822987c28885f07290a448984335fd29039c8b00', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2131.7783571558493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x73905e212ffc376c01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:10:43.000Z'}}, {'blockNum': '0x979927', 'uniqueId': '0x5f50262d4610a59ab40a7353822987c28885f07290a448984335fd29039c8b00:log:163', 'hash': '0x5f50262d4610a59ab40a7353822987c28885f07290a448984335fd29039c8b00', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2131.7783571558493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x73905e212ffc376c01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:10:43.000Z'}}, {'blockNum': '0x97992a', 'uniqueId': '0x024b5e000a7fe2adcc8b4da8f42bfb3908bcd626e10783aa0a0fd98784a4d6d3:log:107', 'hash': '0x024b5e000a7fe2adcc8b4da8f42bfb3908bcd626e10783aa0a0fd98784a4d6d3', 'from': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1341.2147941001315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48b518252c6d044af9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:11:41.000Z'}}, {'blockNum': '0x97992a', 'uniqueId': '0x024b5e000a7fe2adcc8b4da8f42bfb3908bcd626e10783aa0a0fd98784a4d6d3:log:113', 'hash': '0x024b5e000a7fe2adcc8b4da8f42bfb3908bcd626e10783aa0a0fd98784a4d6d3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1341.2147941001315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48b518252c6d044af9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:11:41.000Z'}}, {'blockNum': '0x979934', 'uniqueId': '0x1c24844e52c3fb8c64659f5c7b0a782aada0b374c6ada98bfba587f82a514ea5:log:45', 'hash': '0x1c24844e52c3fb8c64659f5c7b0a782aada0b374c6ada98bfba587f82a514ea5', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 887.3019775685055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3019c9df78a0640706', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:06.000Z'}}, {'blockNum': '0x979934', 'uniqueId': '0x1c24844e52c3fb8c64659f5c7b0a782aada0b374c6ada98bfba587f82a514ea5:log:51', 'hash': '0x1c24844e52c3fb8c64659f5c7b0a782aada0b374c6ada98bfba587f82a514ea5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 887.3019775685055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3019c9df78a0640706', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:06.000Z'}}, {'blockNum': '0x979934', 'uniqueId': '0x5760e96887e7f38ee96038d3976cfd0704ef7bae37b97fbc2963a7fc066eafd1:log:75', 'hash': '0x5760e96887e7f38ee96038d3976cfd0704ef7bae37b97fbc2963a7fc066eafd1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 44.53643854653895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026a1136e4d777f5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:06.000Z'}}, {'blockNum': '0x979934', 'uniqueId': '0x5760e96887e7f38ee96038d3976cfd0704ef7bae37b97fbc2963a7fc066eafd1:log:81', 'hash': '0x5760e96887e7f38ee96038d3976cfd0704ef7bae37b97fbc2963a7fc066eafd1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 44.53643854653895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026a1136e4d777f5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:06.000Z'}}, {'blockNum': '0x979936', 'uniqueId': '0x98a061a484f92b73aba8134d719a9c289ea6e74caf728d7b5b640dfe218ee2c1:log:26', 'hash': '0x98a061a484f92b73aba8134d719a9c289ea6e74caf728d7b5b640dfe218ee2c1', 'from': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 910.4656197279961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315b3fa949fd167482', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:30.000Z'}}, {'blockNum': '0x979936', 'uniqueId': '0x98a061a484f92b73aba8134d719a9c289ea6e74caf728d7b5b640dfe218ee2c1:log:32', 'hash': '0x98a061a484f92b73aba8134d719a9c289ea6e74caf728d7b5b640dfe218ee2c1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 910.4656197279961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315b3fa949fd167482', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:30.000Z'}}, {'blockNum': '0x979957', 'uniqueId': '0xebd7aee686cec541943fb87970c5fca958d64897e216400c2e9cbafe8606a297:log:128', 'hash': '0xebd7aee686cec541943fb87970c5fca958d64897e216400c2e9cbafe8606a297', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 48.28006021515179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029e053af78a979620', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:22:52.000Z'}}, {'blockNum': '0x979957', 'uniqueId': '0xebd7aee686cec541943fb87970c5fca958d64897e216400c2e9cbafe8606a297:log:134', 'hash': '0xebd7aee686cec541943fb87970c5fca958d64897e216400c2e9cbafe8606a297', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 48.28006021515179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029e053af78a979620', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:22:52.000Z'}}, {'blockNum': '0x97995b', 'uniqueId': '0xd41390222e9b3b8ea17b5438052b2943dfc2b6e7119d8458497959ee1db57154:log:70', 'hash': '0xd41390222e9b3b8ea17b5438052b2943dfc2b6e7119d8458497959ee1db57154', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.804325550801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304a64b667a4eb4e42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:23:52.000Z'}}, {'blockNum': '0x97995b', 'uniqueId': '0xd41390222e9b3b8ea17b5438052b2943dfc2b6e7119d8458497959ee1db57154:log:76', 'hash': '0xd41390222e9b3b8ea17b5438052b2943dfc2b6e7119d8458497959ee1db57154', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 890.804325550801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304a64b667a4eb4e42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:23:52.000Z'}}, {'blockNum': '0x979978', 'uniqueId': '0x9c4935ef49a4046def38ba1a7c2783a8bf0ad907a50a8072e9c7fdf260e30f6b:log:189', 'hash': '0x9c4935ef49a4046def38ba1a7c2783a8bf0ad907a50a8072e9c7fdf260e30f6b', 'from': '0xb3b93f1e4bac9607f89b6e765007d4cf4d87d0f0', 'to': '0xbf79e9e31b530441dc3c9daeb985a0f2f64392b1', 'value': 57.32799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031b95f8410f8c2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:30:29.000Z'}}, {'blockNum': '0x97998a', 'uniqueId': '0x836b0f1499f2ba9eb326b42802f7dd28c2020c7a285ca4b7e4b029de5d3ffeb1:log:56', 'hash': '0x836b0f1499f2ba9eb326b42802f7dd28c2020c7a285ca4b7e4b029de5d3ffeb1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 89.07100369415849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d41bc5f101d2b44c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:33:24.000Z'}}, {'blockNum': '0x97998a', 'uniqueId': '0x836b0f1499f2ba9eb326b42802f7dd28c2020c7a285ca4b7e4b029de5d3ffeb1:log:62', 'hash': '0x836b0f1499f2ba9eb326b42802f7dd28c2020c7a285ca4b7e4b029de5d3ffeb1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'value': 89.07100369415849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d41bc5f101d2b44c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:33:24.000Z'}}, {'blockNum': '0x9799c2', 'uniqueId': '0xc76c4791848ec1e40f3a83cb8b42e8dcc0cb797e9165fd2643e0cc1142d5dc74:log:76', 'hash': '0xc76c4791848ec1e40f3a83cb8b42e8dcc0cb797e9165fd2643e0cc1142d5dc74', 'from': '0x4ea3f91651db0b87bf639fac5fc2c0c3ef87eaea', 'to': '0xf5b1720531bfd034b0bd03b1d9ccca9ee4206f19', 'value': 5018.039818076523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110074ab3d380f9271f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:45:27.000Z'}}, {'blockNum': '0x9799c4', 'uniqueId': '0xf37ec207f70ec054398f858f91f27f4a260e0eee3f21329e3bda72bb0a336978:log:115', 'hash': '0xf37ec207f70ec054398f858f91f27f4a260e0eee3f21329e3bda72bb0a336978', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 596.7314419338953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20594ff4d1f8772f12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:45:38.000Z'}}, {'blockNum': '0x9799c4', 'uniqueId': '0xf37ec207f70ec054398f858f91f27f4a260e0eee3f21329e3bda72bb0a336978:log:121', 'hash': '0xf37ec207f70ec054398f858f91f27f4a260e0eee3f21329e3bda72bb0a336978', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'value': 596.7314419338953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20594ff4d1f8772f12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:45:38.000Z'}}, {'blockNum': '0x9799cd', 'uniqueId': '0x96c4173d8cc9777552bda7248aae7a7a9362e3184f57f39c2c2b72ecc8d80577:log:59', 'hash': '0x96c4173d8cc9777552bda7248aae7a7a9362e3184f57f39c2c2b72ecc8d80577', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1988.56252226111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6bccd9462404444d06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:48:24.000Z'}}, {'blockNum': '0x9799cd', 'uniqueId': '0x96c4173d8cc9777552bda7248aae7a7a9362e3184f57f39c2c2b72ecc8d80577:log:65', 'hash': '0x96c4173d8cc9777552bda7248aae7a7a9362e3184f57f39c2c2b72ecc8d80577', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1988.56252226111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6bccd9462404444d06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:48:24.000Z'}}, {'blockNum': '0x9799d4', 'uniqueId': '0x91adafd98760cfed16ccfecf54dd2c21ba3dc901c43087cd14b7f64cfa14dc3c:log:29', 'hash': '0x91adafd98760cfed16ccfecf54dd2c21ba3dc901c43087cd14b7f64cfa14dc3c', 'from': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 34.18359985670772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01da648af50b2854e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:49:34.000Z'}}, {'blockNum': '0x9799d4', 'uniqueId': '0x91adafd98760cfed16ccfecf54dd2c21ba3dc901c43087cd14b7f64cfa14dc3c:log:35', 'hash': '0x91adafd98760cfed16ccfecf54dd2c21ba3dc901c43087cd14b7f64cfa14dc3c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 34.18359985670772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01da648af50b2854e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:49:34.000Z'}}, {'blockNum': '0x9799d9', 'uniqueId': '0x7d352b880ce38dc9dcc0a451fc8288d41cfab477fb2e8531fe8bb163e6c73af8:log:65', 'hash': '0x7d352b880ce38dc9dcc0a451fc8288d41cfab477fb2e8531fe8bb163e6c73af8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 668.1832099266861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2438e7a13df06402b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:50:28.000Z'}}, {'blockNum': '0x9799d9', 'uniqueId': '0x7d352b880ce38dc9dcc0a451fc8288d41cfab477fb2e8531fe8bb163e6c73af8:log:71', 'hash': '0x7d352b880ce38dc9dcc0a451fc8288d41cfab477fb2e8531fe8bb163e6c73af8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 668.1832099266861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2438e7a13df06402b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:50:28.000Z'}}, {'blockNum': '0x9799dc', 'uniqueId': '0xd337df0d5aa0385b0a61b9c97ff9e468b9872c326215e3bcdd8457771c436854:log:63', 'hash': '0xd337df0d5aa0385b0a61b9c97ff9e468b9872c326215e3bcdd8457771c436854', 'from': '0xb2ecd60764a3a800358bb252976bd57c05554b71', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8.062154776068411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6fe2870dbfc6cec6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:51:27.000Z'}}, {'blockNum': '0x9799dc', 'uniqueId': '0xd337df0d5aa0385b0a61b9c97ff9e468b9872c326215e3bcdd8457771c436854:log:69', 'hash': '0xd337df0d5aa0385b0a61b9c97ff9e468b9872c326215e3bcdd8457771c436854', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 8.062154776068411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6fe2870dbfc6cec6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:51:27.000Z'}}, {'blockNum': '0x979a0f', 'uniqueId': '0xc67607285ff63b67d494dc3b60039a28e01d7fc079ff7879c8c85c154a6823d5:log:130', 'hash': '0xc67607285ff63b67d494dc3b60039a28e01d7fc079ff7879c8c85c154a6823d5', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 283.61697805624095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5ff9eae0000014d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:04:01.000Z'}}, {'blockNum': '0x979a0f', 'uniqueId': '0xc67607285ff63b67d494dc3b60039a28e01d7fc079ff7879c8c85c154a6823d5:log:136', 'hash': '0xc67607285ff63b67d494dc3b60039a28e01d7fc079ff7879c8c85c154a6823d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 283.61697805624095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5ff9eae0000014d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:04:01.000Z'}}, {'blockNum': '0x979a1b', 'uniqueId': '0x624c93bad563d16d754c2f57083a4f42e50f9a2ef9a7b7a8dc737547dfe4e4d4:log:108', 'hash': '0x624c93bad563d16d754c2f57083a4f42e50f9a2ef9a7b7a8dc737547dfe4e4d4', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1438.4275949829778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4dfa3164855fda7102', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:06:58.000Z'}}, {'blockNum': '0x979a1b', 'uniqueId': '0x624c93bad563d16d754c2f57083a4f42e50f9a2ef9a7b7a8dc737547dfe4e4d4:log:114', 'hash': '0x624c93bad563d16d754c2f57083a4f42e50f9a2ef9a7b7a8dc737547dfe4e4d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1438.4275949829778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4dfa3164855fda7102', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:06:58.000Z'}}, {'blockNum': '0x979a44', 'uniqueId': '0x91da9bbcc81f349c3addc23266d02b9a4273d0dcfffb748ba038293da8964709:log:35', 'hash': '0x91da9bbcc81f349c3addc23266d02b9a4273d0dcfffb748ba038293da8964709', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 565.5511276659721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ea8993a31a3dd0c2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:15:42.000Z'}}, {'blockNum': '0x979a44', 'uniqueId': '0x91da9bbcc81f349c3addc23266d02b9a4273d0dcfffb748ba038293da8964709:log:41', 'hash': '0x91da9bbcc81f349c3addc23266d02b9a4273d0dcfffb748ba038293da8964709', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 565.5511276659721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ea8993a31a3dd0c2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:15:42.000Z'}}, {'blockNum': '0x979a4f', 'uniqueId': '0x7457a5a9899a04a8a54d23cd805cbb1ff626bc94c87f9a839129aa24c60d5924:log:11', 'hash': '0x7457a5a9899a04a8a54d23cd805cbb1ff626bc94c87f9a839129aa24c60d5924', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xba67c4f3f719d0526826861c2156d8b9caea2f79', 'value': 13952.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f45e63b6465cb60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:17:09.000Z'}}, {'blockNum': '0x979a75', 'uniqueId': '0x5494b99309247e15828c7b83c5ca3009ffd423e4212538e025f72787dc85623e:log:102', 'hash': '0x5494b99309247e15828c7b83c5ca3009ffd423e4212538e025f72787dc85623e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 181.15952280347327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09d217ea2a5c4d5c27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:25:00.000Z'}}, {'blockNum': '0x979a75', 'uniqueId': '0x5494b99309247e15828c7b83c5ca3009ffd423e4212538e025f72787dc85623e:log:108', 'hash': '0x5494b99309247e15828c7b83c5ca3009ffd423e4212538e025f72787dc85623e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 181.15952280347327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09d217ea2a5c4d5c27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:25:00.000Z'}}, {'blockNum': '0x979a76', 'uniqueId': '0xb4fb195d760710c5e266f8f69f642f78bbb3e1b9eb13fb892fac9abb4f001570:log:13', 'hash': '0xb4fb195d760710c5e266f8f69f642f78bbb3e1b9eb13fb892fac9abb4f001570', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 601.7322068122165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209eb63dfb5a0e700c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:25:15.000Z'}}, {'blockNum': '0x979a76', 'uniqueId': '0xb4fb195d760710c5e266f8f69f642f78bbb3e1b9eb13fb892fac9abb4f001570:log:19', 'hash': '0xb4fb195d760710c5e266f8f69f642f78bbb3e1b9eb13fb892fac9abb4f001570', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 601.7322068122165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209eb63dfb5a0e700c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:25:15.000Z'}}, {'blockNum': '0x979a80', 'uniqueId': '0x93d1ae455f2d1e6971c41b9f0a86ea3879e5bd02da955156f079c13f3db5b45a:log:119', 'hash': '0x93d1ae455f2d1e6971c41b9f0a86ea3879e5bd02da955156f079c13f3db5b45a', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 900.5927796959827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30d23c4996a4ac664f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:26:50.000Z'}}, {'blockNum': '0x979a80', 'uniqueId': '0x93d1ae455f2d1e6971c41b9f0a86ea3879e5bd02da955156f079c13f3db5b45a:log:125', 'hash': '0x93d1ae455f2d1e6971c41b9f0a86ea3879e5bd02da955156f079c13f3db5b45a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 900.5927796959827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30d23c4996a4ac664f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:26:50.000Z'}}, {'blockNum': '0x979ace', 'uniqueId': '0xcdf38fce3b86443e3069e992a8a39108be6ad26c38472819f7c6c770ffe3f3ae:log:114', 'hash': '0xcdf38fce3b86443e3069e992a8a39108be6ad26c38472819f7c6c770ffe3f3ae', 'from': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 37.56305162042637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02094ac46e632cc7f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:43:49.000Z'}}, {'blockNum': '0x979ace', 'uniqueId': '0xcdf38fce3b86443e3069e992a8a39108be6ad26c38472819f7c6c770ffe3f3ae:log:120', 'hash': '0xcdf38fce3b86443e3069e992a8a39108be6ad26c38472819f7c6c770ffe3f3ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 37.56305162042637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02094ac46e632cc7f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:43:49.000Z'}}, {'blockNum': '0x979ada', 'uniqueId': '0x36f248af8881ae4aab17f508bf9ea6c28e79ca968dd9dbde8cd159abe5adf25a:log:31', 'hash': '0x36f248af8881ae4aab17f508bf9ea6c28e79ca968dd9dbde8cd159abe5adf25a', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2700.1112121612023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x925f9209a885dc7cc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:46:42.000Z'}}, {'blockNum': '0x979ada', 'uniqueId': '0x36f248af8881ae4aab17f508bf9ea6c28e79ca968dd9dbde8cd159abe5adf25a:log:37', 'hash': '0x36f248af8881ae4aab17f508bf9ea6c28e79ca968dd9dbde8cd159abe5adf25a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2700.1112121612023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x925f9209a885dc7cc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:46:42.000Z'}}, {'blockNum': '0x979b03', 'uniqueId': '0x26d0c23d2ae8337b5bbc271b4baa6e14027342d90d4486eea6caface048e9093:log:108', 'hash': '0x26d0c23d2ae8337b5bbc271b4baa6e14027342d90d4486eea6caface048e9093', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 285.2918475743369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f77383fd3ef3cfa67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:56:02.000Z'}}, {'blockNum': '0x979b03', 'uniqueId': '0x26d0c23d2ae8337b5bbc271b4baa6e14027342d90d4486eea6caface048e9093:log:114', 'hash': '0x26d0c23d2ae8337b5bbc271b4baa6e14027342d90d4486eea6caface048e9093', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 285.2918475743369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f77383fd3ef3cfa67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:56:02.000Z'}}, {'blockNum': '0x979b05', 'uniqueId': '0x704577d0b78b3a9c641783dfe9b26673c08f58086a82a457431bef6bbc6e7920:log:153', 'hash': '0x704577d0b78b3a9c641783dfe9b26673c08f58086a82a457431bef6bbc6e7920', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 150.66266073224304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082add4bb0e48a4609', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:56:11.000Z'}}, {'blockNum': '0x979b05', 'uniqueId': '0x704577d0b78b3a9c641783dfe9b26673c08f58086a82a457431bef6bbc6e7920:log:159', 'hash': '0x704577d0b78b3a9c641783dfe9b26673c08f58086a82a457431bef6bbc6e7920', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 150.66266073224304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082add4bb0e48a4609', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:56:11.000Z'}}, {'blockNum': '0x979b20', 'uniqueId': '0xb7f5453d8a4de5e1e42f391923a830298c93d2def42886ff5b6540668c2b1820:log:193', 'hash': '0xb7f5453d8a4de5e1e42f391923a830298c93d2def42886ff5b6540668c2b1820', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 426.3927166012929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x171d633c9f99ddc605', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:02:26.000Z'}}, {'blockNum': '0x979b20', 'uniqueId': '0xb7f5453d8a4de5e1e42f391923a830298c93d2def42886ff5b6540668c2b1820:log:199', 'hash': '0xb7f5453d8a4de5e1e42f391923a830298c93d2def42886ff5b6540668c2b1820', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 426.3927166012929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x171d633c9f99ddc605', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:02:26.000Z'}}, {'blockNum': '0x979b26', 'uniqueId': '0x3d878baac149e81b6aad40098f1bd9c1ba680f476ea4d717da6ed846681418d9:log:23', 'hash': '0x3d878baac149e81b6aad40098f1bd9c1ba680f476ea4d717da6ed846681418d9', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.89734184778862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f22cfa37e234806e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:03:22.000Z'}}, {'blockNum': '0x979b26', 'uniqueId': '0x3d878baac149e81b6aad40098f1bd9c1ba680f476ea4d717da6ed846681418d9:log:29', 'hash': '0x3d878baac149e81b6aad40098f1bd9c1ba680f476ea4d717da6ed846681418d9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 35.89734184778862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f22cfa37e234806e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:03:22.000Z'}}, {'blockNum': '0x979b34', 'uniqueId': '0x3c7ed22a3431e27875e16a781bfeecd0da07229ba2754d371bcc2c0e7656fab2:log:149', 'hash': '0x3c7ed22a3431e27875e16a781bfeecd0da07229ba2754d371bcc2c0e7656fab2', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 267.43642226984264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7f6d091d93563056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:06:48.000Z'}}, {'blockNum': '0x979b34', 'uniqueId': '0x3c7ed22a3431e27875e16a781bfeecd0da07229ba2754d371bcc2c0e7656fab2:log:155', 'hash': '0x3c7ed22a3431e27875e16a781bfeecd0da07229ba2754d371bcc2c0e7656fab2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 267.43642226984264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7f6d091d93563056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:06:48.000Z'}}, {'blockNum': '0x979b35', 'uniqueId': '0xed9b3847e05f88575c14a3c7b89d115b3e51fa5561b4462a2154428b50e8e828:log:64', 'hash': '0xed9b3847e05f88575c14a3c7b89d115b3e51fa5561b4462a2154428b50e8e828', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 788.9445878166435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ac4ce3a9c96040982', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:07:19.000Z'}}, {'blockNum': '0x979b35', 'uniqueId': '0xed9b3847e05f88575c14a3c7b89d115b3e51fa5561b4462a2154428b50e8e828:log:70', 'hash': '0xed9b3847e05f88575c14a3c7b89d115b3e51fa5561b4462a2154428b50e8e828', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 788.9445878166435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ac4ce3a9c96040982', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:07:19.000Z'}}, {'blockNum': '0x979b3e', 'uniqueId': '0x0eeaf1fd60a4ef75e6cb69e4c4f315bb13e35b0a814078dc3945c1e61978e337:log:119', 'hash': '0x0eeaf1fd60a4ef75e6cb69e4c4f315bb13e35b0a814078dc3945c1e61978e337', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 983.8293237918797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35555fe57003c0ab4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:08:28.000Z'}}, {'blockNum': '0x979b3e', 'uniqueId': '0x0eeaf1fd60a4ef75e6cb69e4c4f315bb13e35b0a814078dc3945c1e61978e337:log:125', 'hash': '0x0eeaf1fd60a4ef75e6cb69e4c4f315bb13e35b0a814078dc3945c1e61978e337', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 983.8293237918797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35555fe57003c0ab4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:08:28.000Z'}}, {'blockNum': '0x979b40', 'uniqueId': '0x1368a11de989119e10b972a2645969cdd11c5fe6c5c2cf2df1b64fcf0cb897f0:log:69', 'hash': '0x1368a11de989119e10b972a2645969cdd11c5fe6c5c2cf2df1b64fcf0cb897f0', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 332.279403011445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12034d948c140b0b23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:08:40.000Z'}}, {'blockNum': '0x979b40', 'uniqueId': '0x1368a11de989119e10b972a2645969cdd11c5fe6c5c2cf2df1b64fcf0cb897f0:log:75', 'hash': '0x1368a11de989119e10b972a2645969cdd11c5fe6c5c2cf2df1b64fcf0cb897f0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 332.279403011445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12034d948c140b0b23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:08:40.000Z'}}, {'blockNum': '0x979b5a', 'uniqueId': '0x539e778e9406be47431c528042940d5564212e3209f0ed55508a9c654053fa04:log:129', 'hash': '0x539e778e9406be47431c528042940d5564212e3209f0ed55508a9c654053fa04', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 62.39960884672778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0361f7f1a388880bc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:16:11.000Z'}}, {'blockNum': '0x979b5a', 'uniqueId': '0x539e778e9406be47431c528042940d5564212e3209f0ed55508a9c654053fa04:log:135', 'hash': '0x539e778e9406be47431c528042940d5564212e3209f0ed55508a9c654053fa04', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'value': 62.39960884672778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0361f7f1a388880bc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:16:11.000Z'}}, {'blockNum': '0x979b8a', 'uniqueId': '0x540dcd8866f96d3d1c9b14ed506065a9a1bc3e9c631124550c77a1c4241a186a:log:22', 'hash': '0x540dcd8866f96d3d1c9b14ed506065a9a1bc3e9c631124550c77a1c4241a186a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 49.91908117099654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b4c433d7a723b350', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:29:04.000Z'}}, {'blockNum': '0x979b8a', 'uniqueId': '0x540dcd8866f96d3d1c9b14ed506065a9a1bc3e9c631124550c77a1c4241a186a:log:28', 'hash': '0x540dcd8866f96d3d1c9b14ed506065a9a1bc3e9c631124550c77a1c4241a186a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'value': 49.91908117099654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b4c433d7a723b350', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:29:04.000Z'}}, {'blockNum': '0x979b9e', 'uniqueId': '0xba53da39cbe206dc8ced6c69eca912314f6895c2fa3d65e2295b3e29c38bc7c9:log:71', 'hash': '0xba53da39cbe206dc8ced6c69eca912314f6895c2fa3d65e2295b3e29c38bc7c9', 'from': '0x3a706af4bfc1d30394256a434e092e23f611e39b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 466.35252821851066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1947f10192b9a94878', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:33:30.000Z'}}, {'blockNum': '0x979b9e', 'uniqueId': '0xba53da39cbe206dc8ced6c69eca912314f6895c2fa3d65e2295b3e29c38bc7c9:log:77', 'hash': '0xba53da39cbe206dc8ced6c69eca912314f6895c2fa3d65e2295b3e29c38bc7c9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 466.35252821851066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1947f10192b9a94878', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:33:30.000Z'}}, {'blockNum': '0x979ba3', 'uniqueId': '0x39b9dcc1c10a25d84df96c1acff2d0f5a107670aed45683b7263ed5272b1bd7a:log:98', 'hash': '0x39b9dcc1c10a25d84df96c1acff2d0f5a107670aed45683b7263ed5272b1bd7a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1337.052137047643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x487b536aa395aba3ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:34:42.000Z'}}, {'blockNum': '0x979ba3', 'uniqueId': '0x39b9dcc1c10a25d84df96c1acff2d0f5a107670aed45683b7263ed5272b1bd7a:log:104', 'hash': '0x39b9dcc1c10a25d84df96c1acff2d0f5a107670aed45683b7263ed5272b1bd7a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1337.052137047643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x487b536aa395aba3ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:34:42.000Z'}}, {'blockNum': '0x979ba8', 'uniqueId': '0xa9ec446010253a88136cdd89859e2e923282d3a9c9952db2042807468b5b8506:log:48', 'hash': '0xa9ec446010253a88136cdd89859e2e923282d3a9c9952db2042807468b5b8506', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 672.3669489494596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2472f741b77dbded13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:35:30.000Z'}}, {'blockNum': '0x979ba8', 'uniqueId': '0xa9ec446010253a88136cdd89859e2e923282d3a9c9952db2042807468b5b8506:log:54', 'hash': '0xa9ec446010253a88136cdd89859e2e923282d3a9c9952db2042807468b5b8506', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 672.3669489494596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2472f741b77dbded13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:35:30.000Z'}}, {'blockNum': '0x979bb9', 'uniqueId': '0xeb43d0ae837813222f29935adbc61b27dfac8ea76b7ea70d79d66839f7b61d4e:log:67', 'hash': '0xeb43d0ae837813222f29935adbc61b27dfac8ea76b7ea70d79d66839f7b61d4e', 'from': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1047.251245258426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38c587d2fcd5f82943', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:38:36.000Z'}}, {'blockNum': '0x979bb9', 'uniqueId': '0xeb43d0ae837813222f29935adbc61b27dfac8ea76b7ea70d79d66839f7b61d4e:log:73', 'hash': '0xeb43d0ae837813222f29935adbc61b27dfac8ea76b7ea70d79d66839f7b61d4e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 1047.251245258426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38c587d2fcd5f82943', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:38:36.000Z'}}, {'blockNum': '0x979bbe', 'uniqueId': '0xfcc46501212caf2f3ebe12273815771518354fa75287f70b4e4935691b2582a3:log:97', 'hash': '0xfcc46501212caf2f3ebe12273815771518354fa75287f70b4e4935691b2582a3', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 267.36409136878797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7e6c108b53b0e6db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:39:11.000Z'}}, {'blockNum': '0x979bbe', 'uniqueId': '0xfcc46501212caf2f3ebe12273815771518354fa75287f70b4e4935691b2582a3:log:103', 'hash': '0xfcc46501212caf2f3ebe12273815771518354fa75287f70b4e4935691b2582a3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 267.36409136878797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7e6c108b53b0e6db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:39:11.000Z'}}, {'blockNum': '0x979bc1', 'uniqueId': '0xc6ff55891759a854ef896f67469dc7b828c68ac002eb2d9b7ae360596c6f2776:log:54', 'hash': '0xc6ff55891759a854ef896f67469dc7b828c68ac002eb2d9b7ae360596c6f2776', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 445.57247206415104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18278f6a99246255e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:39:50.000Z'}}, {'blockNum': '0x979bc1', 'uniqueId': '0xc6ff55891759a854ef896f67469dc7b828c68ac002eb2d9b7ae360596c6f2776:log:60', 'hash': '0xc6ff55891759a854ef896f67469dc7b828c68ac002eb2d9b7ae360596c6f2776', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 445.57247206415104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18278f6a99246255e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:39:50.000Z'}}, {'blockNum': '0x979bcc', 'uniqueId': '0x77a626fcfaa05900296e887addb16a1b361f5f9377bfadf105ec90813fb86bbe:log:120', 'hash': '0x77a626fcfaa05900296e887addb16a1b361f5f9377bfadf105ec90813fb86bbe', 'from': '0xcbe2ac42af1ca49e74ad25ac8b07f74919b103bc', 'to': '0x26ee03f93d7a8dbabdc5183a5ac5dc8b768d728c', 'value': 0.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:42:11.000Z'}}, {'blockNum': '0x979beb', 'uniqueId': '0x831333a6de7f6d38fcb4513ed495d66aafafb6a4203845da5690bfebc012c8d8:log:92', 'hash': '0x831333a6de7f6d38fcb4513ed495d66aafafb6a4203845da5690bfebc012c8d8', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 528.7884748316691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caa6a0c37ce380450', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:50:45.000Z'}}, {'blockNum': '0x979beb', 'uniqueId': '0x831333a6de7f6d38fcb4513ed495d66aafafb6a4203845da5690bfebc012c8d8:log:98', 'hash': '0x831333a6de7f6d38fcb4513ed495d66aafafb6a4203845da5690bfebc012c8d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 528.7884748316691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caa6a0c37ce380450', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:50:45.000Z'}}, {'blockNum': '0x979bf6', 'uniqueId': '0xafa6b88c2115dbadc56b87d66e87abe3a67c775a8dbec85e84512010111c2b5c:log:125', 'hash': '0xafa6b88c2115dbadc56b87d66e87abe3a67c775a8dbec85e84512010111c2b5c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8903.452095318078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2a8380c2e4d5f9088', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:53:38.000Z'}}, {'blockNum': '0x979bf6', 'uniqueId': '0xafa6b88c2115dbadc56b87d66e87abe3a67c775a8dbec85e84512010111c2b5c:log:130', 'hash': '0xafa6b88c2115dbadc56b87d66e87abe3a67c775a8dbec85e84512010111c2b5c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 8903.452095318078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2a8380c2e4d5f9088', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:53:38.000Z'}}, {'blockNum': '0x979c1b', 'uniqueId': '0xc1941b337ccd02d2b44bee2bd55e9c285b1534a45cd4769b7f03ea3fedc03a68:log:20', 'hash': '0xc1941b337ccd02d2b44bee2bd55e9c285b1534a45cd4769b7f03ea3fedc03a68', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 671.1047025740735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246172db5375d4968d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:03:28.000Z'}}, {'blockNum': '0x979c1b', 'uniqueId': '0xc1941b337ccd02d2b44bee2bd55e9c285b1534a45cd4769b7f03ea3fedc03a68:log:26', 'hash': '0xc1941b337ccd02d2b44bee2bd55e9c285b1534a45cd4769b7f03ea3fedc03a68', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 671.1047025740735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246172db5375d4968d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:03:28.000Z'}}, {'blockNum': '0x979c2e', 'uniqueId': '0xebb55763b5d3fb9ec2e6dcb65585eeb3709c51a697b21c2e5f96f8f733bc0f94:log:89', 'hash': '0xebb55763b5d3fb9ec2e6dcb65585eeb3709c51a697b21c2e5f96f8f733bc0f94', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 444.6982987436273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181b6dba984271162f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:07:23.000Z'}}, {'blockNum': '0x979c2e', 'uniqueId': '0xebb55763b5d3fb9ec2e6dcb65585eeb3709c51a697b21c2e5f96f8f733bc0f94:log:95', 'hash': '0xebb55763b5d3fb9ec2e6dcb65585eeb3709c51a697b21c2e5f96f8f733bc0f94', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 444.6982987436273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181b6dba984271162f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:07:23.000Z'}}, {'blockNum': '0x979c30', 'uniqueId': '0x764558b7ee96c0d79fb2e9dc5959ea58c40392740e963b3e9e2864baf60caeed:log:64', 'hash': '0x764558b7ee96c0d79fb2e9dc5959ea58c40392740e963b3e9e2864baf60caeed', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 889.4468574347057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30378e04586f241cd0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:08:01.000Z'}}, {'blockNum': '0x979c30', 'uniqueId': '0x764558b7ee96c0d79fb2e9dc5959ea58c40392740e963b3e9e2864baf60caeed:log:70', 'hash': '0x764558b7ee96c0d79fb2e9dc5959ea58c40392740e963b3e9e2864baf60caeed', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 889.4468574347057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30378e04586f241cd0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:08:01.000Z'}}, {'blockNum': '0x979c32', 'uniqueId': '0x9afc3a9e39af4a3d17f61dbe2748e16d0577a789572187654940854a0b5eb5d5:log:104', 'hash': '0x9afc3a9e39af4a3d17f61dbe2748e16d0577a789572187654940854a0b5eb5d5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 622.5109709008284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21bf133dd46f6840be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:08:07.000Z'}}, {'blockNum': '0x979c32', 'uniqueId': '0x9afc3a9e39af4a3d17f61dbe2748e16d0577a789572187654940854a0b5eb5d5:log:110', 'hash': '0x9afc3a9e39af4a3d17f61dbe2748e16d0577a789572187654940854a0b5eb5d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 622.5109709008284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21bf133dd46f6840be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:08:07.000Z'}}, {'blockNum': '0x979c3c', 'uniqueId': '0x9d69ddfcf85caebe621fde003326c00193e362aa8ff4f520ee3831d70b272125:log:12', 'hash': '0x9d69ddfcf85caebe621fde003326c00193e362aa8ff4f520ee3831d70b272125', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 889.260775456941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3034f8ebc5c75fea87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:10:25.000Z'}}, {'blockNum': '0x979c3c', 'uniqueId': '0x9d69ddfcf85caebe621fde003326c00193e362aa8ff4f520ee3831d70b272125:log:18', 'hash': '0x9d69ddfcf85caebe621fde003326c00193e362aa8ff4f520ee3831d70b272125', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 889.260775456941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3034f8ebc5c75fea87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:10:25.000Z'}}, {'blockNum': '0x979c46', 'uniqueId': '0xf343430e304163decfd85c272a8f1975a09e162299a45285f0f48765bcfb4879:log:75', 'hash': '0xf343430e304163decfd85c272a8f1975a09e162299a45285f0f48765bcfb4879', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1004.6252864153274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3675f9ff4308a7c65f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:14:06.000Z'}}, {'blockNum': '0x979c46', 'uniqueId': '0xf343430e304163decfd85c272a8f1975a09e162299a45285f0f48765bcfb4879:log:81', 'hash': '0xf343430e304163decfd85c272a8f1975a09e162299a45285f0f48765bcfb4879', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 1004.6252864153274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3675f9ff4308a7c65f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:14:06.000Z'}}, {'blockNum': '0x979c48', 'uniqueId': '0x1e3c92487ba4f0373fe6a0859a57a2535c36263e7d450901b83a7a27fb8d060d:log:53', 'hash': '0x1e3c92487ba4f0373fe6a0859a57a2535c36263e7d450901b83a7a27fb8d060d', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 912.4674078336056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31770770f7138c18c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:14:50.000Z'}}, {'blockNum': '0x979c48', 'uniqueId': '0x1e3c92487ba4f0373fe6a0859a57a2535c36263e7d450901b83a7a27fb8d060d:log:59', 'hash': '0x1e3c92487ba4f0373fe6a0859a57a2535c36263e7d450901b83a7a27fb8d060d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 912.4674078336056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31770770f7138c18c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:14:50.000Z'}}, {'blockNum': '0x979c4a', 'uniqueId': '0x992a4cac7049003f48a8516cebe3943069f96d44cd15c3fe2a427d3a5aef4ecd:log:29', 'hash': '0x992a4cac7049003f48a8516cebe3943069f96d44cd15c3fe2a427d3a5aef4ecd', 'from': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 548.8607926190866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dc0f93ee5e0001b64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:15:19.000Z'}}, {'blockNum': '0x979c4a', 'uniqueId': '0x992a4cac7049003f48a8516cebe3943069f96d44cd15c3fe2a427d3a5aef4ecd:log:35', 'hash': '0x992a4cac7049003f48a8516cebe3943069f96d44cd15c3fe2a427d3a5aef4ecd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 548.8607926190866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dc0f93ee5e0001b64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:15:19.000Z'}}, {'blockNum': '0x979c4d', 'uniqueId': '0xc2f04c287a08167408f270d120c490bd8d191f91c7dcd09e5036c97c548b7b7f:log:34', 'hash': '0xc2f04c287a08167408f270d120c490bd8d191f91c7dcd09e5036c97c548b7b7f', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 713.2459990645019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26aa46d135bc3ae3ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:16:14.000Z'}}, {'blockNum': '0x979c4d', 'uniqueId': '0xc2f04c287a08167408f270d120c490bd8d191f91c7dcd09e5036c97c548b7b7f:log:40', 'hash': '0xc2f04c287a08167408f270d120c490bd8d191f91c7dcd09e5036c97c548b7b7f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 713.2459990645019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26aa46d135bc3ae3ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:16:14.000Z'}}, {'blockNum': '0x979c51', 'uniqueId': '0x932c534f7000b7a63d1aab522a12f0832df31f036cc38db982ea50ffd586416b:log:20', 'hash': '0x932c534f7000b7a63d1aab522a12f0832df31f036cc38db982ea50ffd586416b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1248.3320923139324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43ac1680033c14793b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:17:31.000Z'}}, {'blockNum': '0x979c51', 'uniqueId': '0x932c534f7000b7a63d1aab522a12f0832df31f036cc38db982ea50ffd586416b:log:26', 'hash': '0x932c534f7000b7a63d1aab522a12f0832df31f036cc38db982ea50ffd586416b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 1248.3320923139324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43ac1680033c14793b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:17:31.000Z'}}, {'blockNum': '0x979c58', 'uniqueId': '0xa7e8a05bc554a235a510353aa1f49ad87b8ad87415aa786305448e17c1cea016:log:42', 'hash': '0xa7e8a05bc554a235a510353aa1f49ad87b8ad87415aa786305448e17c1cea016', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 755.0180040057908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28edfaca62ed9e3acf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:18:15.000Z'}}, {'blockNum': '0x979c58', 'uniqueId': '0xa7e8a05bc554a235a510353aa1f49ad87b8ad87415aa786305448e17c1cea016:log:48', 'hash': '0xa7e8a05bc554a235a510353aa1f49ad87b8ad87415aa786305448e17c1cea016', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 755.0180040057908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28edfaca62ed9e3acf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:18:15.000Z'}}, {'blockNum': '0x979c67', 'uniqueId': '0x2e04c0bfd358cb86bf484b74a4dbdda7a1ac8ab52a2e30cb241fbf59641afafd:log:14', 'hash': '0x2e04c0bfd358cb86bf484b74a4dbdda7a1ac8ab52a2e30cb241fbf59641afafd', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1026.9717162264626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x37ac1876c75392dea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:22:47.000Z'}}, {'blockNum': '0x979c67', 'uniqueId': '0x2e04c0bfd358cb86bf484b74a4dbdda7a1ac8ab52a2e30cb241fbf59641afafd:log:20', 'hash': '0x2e04c0bfd358cb86bf484b74a4dbdda7a1ac8ab52a2e30cb241fbf59641afafd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1026.9717162264626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x37ac1876c75392dea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:22:47.000Z'}}, {'blockNum': '0x979c67', 'uniqueId': '0x44af8d5a7e9bd9a09900d594f021b2baa8dc209f1a99dcfe63f87253b372cb0e:log:77', 'hash': '0x44af8d5a7e9bd9a09900d594f021b2baa8dc209f1a99dcfe63f87253b372cb0e', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1266.3271323536023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44a5d1b9963f8ab346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:22:47.000Z'}}, {'blockNum': '0x979c67', 'uniqueId': '0x44af8d5a7e9bd9a09900d594f021b2baa8dc209f1a99dcfe63f87253b372cb0e:log:83', 'hash': '0x44af8d5a7e9bd9a09900d594f021b2baa8dc209f1a99dcfe63f87253b372cb0e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1266.3271323536023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44a5d1b9963f8ab346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:22:47.000Z'}}, {'blockNum': '0x979c6a', 'uniqueId': '0xc9c9209b8a5affc87bb99cc50e4307bb758caf50e58231edb11183c6dc196aae:log:36', 'hash': '0xc9c9209b8a5affc87bb99cc50e4307bb758caf50e58231edb11183c6dc196aae', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 495.12114961211523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad72fae4ed52a4c30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:23:23.000Z'}}, {'blockNum': '0x979c6a', 'uniqueId': '0xc9c9209b8a5affc87bb99cc50e4307bb758caf50e58231edb11183c6dc196aae:log:42', 'hash': '0xc9c9209b8a5affc87bb99cc50e4307bb758caf50e58231edb11183c6dc196aae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 495.12114961211523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad72fae4ed52a4c30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:23:23.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0x43783095e9139e3924ba9f8600cb4518e8f0516df171596404666c7b0e89271f:log:15', 'hash': '0x43783095e9139e3924ba9f8600cb4518e8f0516df171596404666c7b0e89271f', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 832.6279791660806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d2308cf9975947f42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0x43783095e9139e3924ba9f8600cb4518e8f0516df171596404666c7b0e89271f:log:21', 'hash': '0x43783095e9139e3924ba9f8600cb4518e8f0516df171596404666c7b0e89271f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 832.6279791660806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d2308cf9975947f42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166:log:33', 'hash': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1724.5905010230344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d7d8043688ae8e4ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166:log:38', 'hash': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1724.5905010230344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d7d8043688ae8e4ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166:log:40', 'hash': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1724.5905010230344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d7d8043688ae8e4ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166:log:42', 'hash': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 1724.5905010230344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d7d8043688ae8e4ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xbc779d82992151c49899e18261398c936a5708d13a78ed82f4963c695e34d9f6:log:140', 'hash': '0xbc779d82992151c49899e18261398c936a5708d13a78ed82f4963c695e34d9f6', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 700.4760970739225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f90f0301df3105a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xbc779d82992151c49899e18261398c936a5708d13a78ed82f4963c695e34d9f6:log:146', 'hash': '0xbc779d82992151c49899e18261398c936a5708d13a78ed82f4963c695e34d9f6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 700.4760970739225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f90f0301df3105a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c71', 'uniqueId': '0x8a4e331ed21ca9f279c89189ab5548682d1f1dd944748531d861d8957327beef:log:150', 'hash': '0x8a4e331ed21ca9f279c89189ab5548682d1f1dd944748531d861d8957327beef', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1726.2342066564036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d944fe0f92330c21d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:46.000Z'}}, {'blockNum': '0x979c71', 'uniqueId': '0x8a4e331ed21ca9f279c89189ab5548682d1f1dd944748531d861d8957327beef:log:156', 'hash': '0x8a4e331ed21ca9f279c89189ab5548682d1f1dd944748531d861d8957327beef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1726.2342066564036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d944fe0f92330c21d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:46.000Z'}}, {'blockNum': '0x979c88', 'uniqueId': '0x7235d1b4408c4ddd0a9180146829f091e1a7e95754fca170096cf699112c7f3c:log:95', 'hash': '0x7235d1b4408c4ddd0a9180146829f091e1a7e95754fca170096cf699112c7f3c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 88.97812222042081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d2d1cabbb17965f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:29:43.000Z'}}, {'blockNum': '0x979c88', 'uniqueId': '0x7235d1b4408c4ddd0a9180146829f091e1a7e95754fca170096cf699112c7f3c:log:101', 'hash': '0x7235d1b4408c4ddd0a9180146829f091e1a7e95754fca170096cf699112c7f3c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'value': 88.97812222042081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d2d1cabbb17965f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:29:43.000Z'}}, {'blockNum': '0x979c9c', 'uniqueId': '0x056e51e9af64f25cb27952c94d23e0cffa27d1a070bcb7a8447338f1244cb2ce:log:98', 'hash': '0x056e51e9af64f25cb27952c94d23e0cffa27d1a070bcb7a8447338f1244cb2ce', 'from': '0xcbe2ac42af1ca49e74ad25ac8b07f74919b103bc', 'to': '0xcbfdb2ec3c40f5135f704f139d39434e1f01da29', 'value': 0.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:33:27.000Z'}}, {'blockNum': '0x979caa', 'uniqueId': '0xc1af745313e08356a5d46d85efdd9d361ef5a447ea27ad627fd3a3ac1a1d36d5:log:43', 'hash': '0xc1af745313e08356a5d46d85efdd9d361ef5a447ea27ad627fd3a3ac1a1d36d5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 444.8649021278686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181dbd9f7d7286afd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:35:51.000Z'}}, {'blockNum': '0x979caa', 'uniqueId': '0xc1af745313e08356a5d46d85efdd9d361ef5a447ea27ad627fd3a3ac1a1d36d5:log:49', 'hash': '0xc1af745313e08356a5d46d85efdd9d361ef5a447ea27ad627fd3a3ac1a1d36d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 444.8649021278686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181dbd9f7d7286afd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:35:51.000Z'}}, {'blockNum': '0x979cb3', 'uniqueId': '0x051f1b292e696ffea7580a7c333e08fb42f07bdc672c9b979a0db6ff72147584:log:25', 'hash': '0x051f1b292e696ffea7580a7c333e08fb42f07bdc672c9b979a0db6ff72147584', 'from': '0xa0f75491720835b36edc92d06ddc468d201e9b73', 'to': '0x230e89c9412eaa085819e23329062b5c828d87af', 'value': 13262.64274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02cef824478985674000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:36:54.000Z'}}, {'blockNum': '0x979cc3', 'uniqueId': '0x0d1664d4dae3ebc22a5e0cb05a73910be6b68fda196951f84ab695d7dbb1be57:log:36', 'hash': '0x0d1664d4dae3ebc22a5e0cb05a73910be6b68fda196951f84ab695d7dbb1be57', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.587344048389845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01eddfa4dcb7e36ab7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:39:18.000Z'}}, {'blockNum': '0x979cc3', 'uniqueId': '0x0d1664d4dae3ebc22a5e0cb05a73910be6b68fda196951f84ab695d7dbb1be57:log:42', 'hash': '0x0d1664d4dae3ebc22a5e0cb05a73910be6b68fda196951f84ab695d7dbb1be57', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 35.587344048389845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01eddfa4dcb7e36ab7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:39:18.000Z'}}, {'blockNum': '0x979ce6', 'uniqueId': '0xd73fac18a508ecdf436d38c5f02c04b536c81d46b54261dc3cd64f4d90b65b28:log:104', 'hash': '0xd73fac18a508ecdf436d38c5f02c04b536c81d46b54261dc3cd64f4d90b65b28', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1779.0175646413536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6070d40966fc697124', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:46:14.000Z'}}, {'blockNum': '0x979ce6', 'uniqueId': '0xd73fac18a508ecdf436d38c5f02c04b536c81d46b54261dc3cd64f4d90b65b28:log:110', 'hash': '0xd73fac18a508ecdf436d38c5f02c04b536c81d46b54261dc3cd64f4d90b65b28', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 1779.0175646413536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6070d40966fc697124', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:46:14.000Z'}}, {'blockNum': '0x979ced', 'uniqueId': '0x7563488811272ca3c450bdbbc8f52f26b759ed5463720b415c9cae5e4d8785a9:log:116', 'hash': '0x7563488811272ca3c450bdbbc8f52f26b759ed5463720b415c9cae5e4d8785a9', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8.004032908029423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f140985cda16bee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:47:54.000Z'}}, {'blockNum': '0x979ced', 'uniqueId': '0x7563488811272ca3c450bdbbc8f52f26b759ed5463720b415c9cae5e4d8785a9:log:122', 'hash': '0x7563488811272ca3c450bdbbc8f52f26b759ed5463720b415c9cae5e4d8785a9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 8.004032908029423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f140985cda16bee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:47:54.000Z'}}, {'blockNum': '0x979cf6', 'uniqueId': '0xe556e0f5931c0a421f38a97633c40cba7fe47284e6b817d38e4eaed4f7e97271:log:107', 'hash': '0xe556e0f5931c0a421f38a97633c40cba7fe47284e6b817d38e4eaed4f7e97271', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2933.8769278086716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9f0bb8b17eee3a5700', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:49:09.000Z'}}, {'blockNum': '0x979cf6', 'uniqueId': '0xe556e0f5931c0a421f38a97633c40cba7fe47284e6b817d38e4eaed4f7e97271:log:113', 'hash': '0xe556e0f5931c0a421f38a97633c40cba7fe47284e6b817d38e4eaed4f7e97271', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 2933.8769278086716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9f0bb8b17eee3a5700', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:49:09.000Z'}}, {'blockNum': '0x979cf6', 'uniqueId': '0xb7c888eb6eab433aa8bb5b0b4477370ddd9313b2e65fb9a1ade5eacb7d8efaaf:log:133', 'hash': '0xb7c888eb6eab433aa8bb5b0b4477370ddd9313b2e65fb9a1ade5eacb7d8efaaf', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2351.194442704427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7f7560a87a45e54cc2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:49:09.000Z'}}, {'blockNum': '0x979cf6', 'uniqueId': '0xb7c888eb6eab433aa8bb5b0b4477370ddd9313b2e65fb9a1ade5eacb7d8efaaf:log:139', 'hash': '0xb7c888eb6eab433aa8bb5b0b4477370ddd9313b2e65fb9a1ade5eacb7d8efaaf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2351.194442704427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7f7560a87a45e54cc2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:49:09.000Z'}}, {'blockNum': '0x979cfe', 'uniqueId': '0x6bcf6c318f3e477195209fc93686e2fad5d514c4dd6f4a607324ef6f10fb85b5:log:15', 'hash': '0x6bcf6c318f3e477195209fc93686e2fad5d514c4dd6f4a607324ef6f10fb85b5', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 835.218491084948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d46fc2876ec163b77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:50:29.000Z'}}, {'blockNum': '0x979cfe', 'uniqueId': '0x6bcf6c318f3e477195209fc93686e2fad5d514c4dd6f4a607324ef6f10fb85b5:log:21', 'hash': '0x6bcf6c318f3e477195209fc93686e2fad5d514c4dd6f4a607324ef6f10fb85b5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 835.218491084948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d46fc2876ec163b77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:50:29.000Z'}}, {'blockNum': '0x979cff', 'uniqueId': '0xf7e74900f90820a6bd746300002d4cebea71d204deb9c23d507a35a08e7a0b6c:log:18', 'hash': '0xf7e74900f90820a6bd746300002d4cebea71d204deb9c23d507a35a08e7a0b6c', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 682.7024683278044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25026665d4d9252a74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:50:38.000Z'}}, {'blockNum': '0x979cff', 'uniqueId': '0xf7e74900f90820a6bd746300002d4cebea71d204deb9c23d507a35a08e7a0b6c:log:24', 'hash': '0xf7e74900f90820a6bd746300002d4cebea71d204deb9c23d507a35a08e7a0b6c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 682.7024683278044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25026665d4d9252a74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:50:38.000Z'}}, {'blockNum': '0x979d06', 'uniqueId': '0xa6f011e65c52924c9d1adaa1d1099fee0461feb0c23eb17d5f326fd7b61f0704:log:29', 'hash': '0xa6f011e65c52924c9d1adaa1d1099fee0461feb0c23eb17d5f326fd7b61f0704', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 44254.57189885862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x095f0b8eef3db4930cd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:07.000Z'}}, {'blockNum': '0x979d06', 'uniqueId': '0xa6f011e65c52924c9d1adaa1d1099fee0461feb0c23eb17d5f326fd7b61f0704:log:34', 'hash': '0xa6f011e65c52924c9d1adaa1d1099fee0461feb0c23eb17d5f326fd7b61f0704', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 44254.57189885862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x095f0b8eef3db4930cd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:07.000Z'}}, {'blockNum': '0x979d07', 'uniqueId': '0x501df930413bbe761bfc1ae7bbd2367c3f6e6d2b956e44dee09baa3c421e8fb1:log:106', 'hash': '0x501df930413bbe761bfc1ae7bbd2367c3f6e6d2b956e44dee09baa3c421e8fb1', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2361.4011189545345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8003060e7326f4e66b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:15.000Z'}}, {'blockNum': '0x979d07', 'uniqueId': '0x501df930413bbe761bfc1ae7bbd2367c3f6e6d2b956e44dee09baa3c421e8fb1:log:112', 'hash': '0x501df930413bbe761bfc1ae7bbd2367c3f6e6d2b956e44dee09baa3c421e8fb1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2361.4011189545345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8003060e7326f4e66b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:15.000Z'}}, {'blockNum': '0x979d07', 'uniqueId': '0x56f513410be83c5f067077275f0bdca5875e4703cbfd72ffa80284bc0914e15f:log:140', 'hash': '0x56f513410be83c5f067077275f0bdca5875e4703cbfd72ffa80284bc0914e15f', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 899.1265538247169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30bde334ed4b63438e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:15.000Z'}}, {'blockNum': '0x979d07', 'uniqueId': '0x56f513410be83c5f067077275f0bdca5875e4703cbfd72ffa80284bc0914e15f:log:146', 'hash': '0x56f513410be83c5f067077275f0bdca5875e4703cbfd72ffa80284bc0914e15f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 899.1265538247169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30bde334ed4b63438e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:15.000Z'}}, {'blockNum': '0x979d08', 'uniqueId': '0x81c9f07497726c152d22f05c8341bbf1a5ff4cd72b4ed878b209065b626b4639:log:6', 'hash': '0x81c9f07497726c152d22f05c8341bbf1a5ff4cd72b4ed878b209065b626b4639', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x00413793a34097c1a89f70a0c6917d67948eca8a', 'value': 711.1583312180724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x268d4dee5d50ca161f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:16.000Z'}}, {'blockNum': '0x979d0a', 'uniqueId': '0x0feb2af5025c455637271479fc42a6efa15225f0852ede8435773e087d0eb5a3:log:146', 'hash': '0x0feb2af5025c455637271479fc42a6efa15225f0852ede8435773e087d0eb5a3', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:30.000Z'}}, {'blockNum': '0x979d0a', 'uniqueId': '0x4ed24c2875c6d57e8285ba60b4d242510f102fd6e3ca90571c59bf810fed36be:log:152', 'hash': '0x4ed24c2875c6d57e8285ba60b4d242510f102fd6e3ca90571c59bf810fed36be', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1447.7351035133022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e7b5c4e374dc168d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:30.000Z'}}, {'blockNum': '0x979d0a', 'uniqueId': '0x4ed24c2875c6d57e8285ba60b4d242510f102fd6e3ca90571c59bf810fed36be:log:158', 'hash': '0x4ed24c2875c6d57e8285ba60b4d242510f102fd6e3ca90571c59bf810fed36be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1447.7351035133022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e7b5c4e374dc168d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:30.000Z'}}, {'blockNum': '0x979d0b', 'uniqueId': '0xd43ace2f36578d7d2d93861d3eb2dcb6dc322b6663601e7d21251006e1ac0b5d:log:0', 'hash': '0xd43ace2f36578d7d2d93861d3eb2dcb6dc322b6663601e7d21251006e1ac0b5d', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50ca540462d794927f4c642611f0da56231e2113', 'value': 2236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7936bbc92a0d700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:48.000Z'}}, {'blockNum': '0x979d0c', 'uniqueId': '0x6d87c06be93e015da25bfb039a94eb732862d6df2f46fbb3cc1589eca00ed49e:log:74', 'hash': '0x6d87c06be93e015da25bfb039a94eb732862d6df2f46fbb3cc1589eca00ed49e', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1001.9791815566455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x36514124e99c7b5a7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:50.000Z'}}, {'blockNum': '0x979d0c', 'uniqueId': '0x6d87c06be93e015da25bfb039a94eb732862d6df2f46fbb3cc1589eca00ed49e:log:80', 'hash': '0x6d87c06be93e015da25bfb039a94eb732862d6df2f46fbb3cc1589eca00ed49e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1001.9791815566455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x36514124e99c7b5a7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:50.000Z'}}, {'blockNum': '0x979d12', 'uniqueId': '0x9a0d16581d05b57ff4488a1bdf876eb94cc171dfa00a5f73c6d3856241f17a64:log:4', 'hash': '0x9a0d16581d05b57ff4488a1bdf876eb94cc171dfa00a5f73c6d3856241f17a64', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 882.6351844048625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd90617d089391b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:29.000Z'}}, {'blockNum': '0x979d12', 'uniqueId': '0x9a0d16581d05b57ff4488a1bdf876eb94cc171dfa00a5f73c6d3856241f17a64:log:9', 'hash': '0x9a0d16581d05b57ff4488a1bdf876eb94cc171dfa00a5f73c6d3856241f17a64', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 882.6351844048625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd90617d089391b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:29.000Z'}}, {'blockNum': '0x979d13', 'uniqueId': '0xf3859b26879d796af898b43a52f833e997b2793255519128cd24bae642894125:log:11', 'hash': '0xf3859b26879d796af898b43a52f833e997b2793255519128cd24bae642894125', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 882.6351844048625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd90617d089391b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:32.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7:log:20', 'hash': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7:log:25', 'hash': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7:log:26', 'hash': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7:log:27', 'hash': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x50be17452a84a5beb5a1aa3860f5eaad903e5ceb4d682c84d4e71d417bcef2a0:log:92', 'hash': '0x50be17452a84a5beb5a1aa3860f5eaad903e5ceb4d682c84d4e71d417bcef2a0', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 8908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2e7557364abb00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a:log:63', 'hash': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 750.4491801959572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28ae9311568b23bb95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a:log:68', 'hash': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 750.4491801959572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28ae9311568b23bb95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a:log:69', 'hash': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 750.4491801959572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28ae9311568b23bb95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a:log:70', 'hash': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 750.4491801959572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28ae9311568b23bb95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0x76d25374b0e8277f47f41175a7f7469b2d4b5da11963c0902a9643e3ad3b6a6a:log:87', 'hash': '0x76d25374b0e8277f47f41175a7f7469b2d4b5da11963c0902a9643e3ad3b6a6a', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 820.4625488700397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7a3485334e4856ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0x76d25374b0e8277f47f41175a7f7469b2d4b5da11963c0902a9643e3ad3b6a6a:log:93', 'hash': '0x76d25374b0e8277f47f41175a7f7469b2d4b5da11963c0902a9643e3ad3b6a6a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 820.4625488700397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7a3485334e4856ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35:log:22', 'hash': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 855.31860395979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e5dee1aa1164dcedd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35:log:27', 'hash': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 855.31860395979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e5dee1aa1164dcedd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35:log:28', 'hash': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 855.31860395979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e5dee1aa1164dcedd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35:log:29', 'hash': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 855.31860395979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e5dee1aa1164dcedd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x9c09253be25617cc22264bfd6263079dd4fd248b3bf5e59d5b8f24da663b9f4f:log:89', 'hash': '0x9c09253be25617cc22264bfd6263079dd4fd248b3bf5e59d5b8f24da663b9f4f', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 810.3948483423217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bee7cdce952a36840', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x9c09253be25617cc22264bfd6263079dd4fd248b3bf5e59d5b8f24da663b9f4f:log:95', 'hash': '0x9c09253be25617cc22264bfd6263079dd4fd248b3bf5e59d5b8f24da663b9f4f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 810.3948483423217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bee7cdce952a36840', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d1a', 'uniqueId': '0x30f2732a2aba761cc664331feadc1e92851c2adc1df25405fe2664b4eb862163:log:18', 'hash': '0x30f2732a2aba761cc664331feadc1e92851c2adc1df25405fe2664b4eb862163', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:21.000Z'}}, {'blockNum': '0x979d1f', 'uniqueId': '0x8e624dbf9f321432f8828ed007916573bb1fda2b4fbfbba87179664901fa0d91:log:4', 'hash': '0x8e624dbf9f321432f8828ed007916573bb1fda2b4fbfbba87179664901fa0d91', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 11611.725310657754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0275790f587c5fb4ef88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:24.000Z'}}, {'blockNum': '0x979d1f', 'uniqueId': '0x8e624dbf9f321432f8828ed007916573bb1fda2b4fbfbba87179664901fa0d91:log:9', 'hash': '0x8e624dbf9f321432f8828ed007916573bb1fda2b4fbfbba87179664901fa0d91', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 11611.725310657754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0275790f587c5fb4ef88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:24.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x6c8ee8a2b7cd4b405adbbfede9daf2e800e788d8033acdf5b687a17f23dec38a:log:135', 'hash': '0x6c8ee8a2b7cd4b405adbbfede9daf2e800e788d8033acdf5b687a17f23dec38a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 43616.53710267488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093c750bfc90ada19a6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x6c8ee8a2b7cd4b405adbbfede9daf2e800e788d8033acdf5b687a17f23dec38a:log:140', 'hash': '0x6c8ee8a2b7cd4b405adbbfede9daf2e800e788d8033acdf5b687a17f23dec38a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 43616.53710267488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093c750bfc90ada19a6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:141', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0xe9519677e6ec8d2d6bfab92a059529fea6075d37', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:144', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0xe9519677e6ec8d2d6bfab92a059529fea6075d37', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:145', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:146', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:148', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0xa3e495c1a2f117513232e81ae553739f1011755b8dae827dd09b5cd82b004af5:log:161', 'hash': '0xa3e495c1a2f117513232e81ae553739f1011755b8dae827dd09b5cd82b004af5', 'from': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 11600.113585347097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0274d7ea35d65ca00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0xa3e495c1a2f117513232e81ae553739f1011755b8dae827dd09b5cd82b004af5:log:163', 'hash': '0xa3e495c1a2f117513232e81ae553739f1011755b8dae827dd09b5cd82b004af5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 11600.113585347097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0274d7ea35d65ca00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x97d256d36aabcd8f20aae796bf61434841cacfda6f94e040e521fe4ca48d2f13:log:14', 'hash': '0x97d256d36aabcd8f20aae796bf61434841cacfda6f94e040e521fe4ca48d2f13', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1540.4378918880755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5381dec5151c536631', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x97d256d36aabcd8f20aae796bf61434841cacfda6f94e040e521fe4ca48d2f13:log:20', 'hash': '0x97d256d36aabcd8f20aae796bf61434841cacfda6f94e040e521fe4ca48d2f13', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1540.4378918880755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5381dec5151c536631', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x345ddf44c6baf9563cd9d131058d349646a7601864a94c586cf798048b45cad5:log:38', 'hash': '0x345ddf44c6baf9563cd9d131058d349646a7601864a94c586cf798048b45cad5', 'from': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1049.8181524173629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38e9274f72d9cce812', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x345ddf44c6baf9563cd9d131058d349646a7601864a94c586cf798048b45cad5:log:44', 'hash': '0x345ddf44c6baf9563cd9d131058d349646a7601864a94c586cf798048b45cad5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1049.8181524173629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38e9274f72d9cce812', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0xdd504f813a3bcce22b9c647f6e041af33b9e17759042b16f37f8b17653ff71aa:log:62', 'hash': '0xdd504f813a3bcce22b9c647f6e041af33b9e17759042b16f37f8b17653ff71aa', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 691.5135220360122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x257cad8c7effc313ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0xdd504f813a3bcce22b9c647f6e041af33b9e17759042b16f37f8b17653ff71aa:log:68', 'hash': '0xdd504f813a3bcce22b9c647f6e041af33b9e17759042b16f37f8b17653ff71aa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 691.5135220360122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x257cad8c7effc313ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x0595928b48c4bf5934349330ffd10290ed989a8d23cdac071fcb4ccf3302a7af:log:87', 'hash': '0x0595928b48c4bf5934349330ffd10290ed989a8d23cdac071fcb4ccf3302a7af', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2207.824483650935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77afb83e53382fb42c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x0595928b48c4bf5934349330ffd10290ed989a8d23cdac071fcb4ccf3302a7af:log:93', 'hash': '0x0595928b48c4bf5934349330ffd10290ed989a8d23cdac071fcb4ccf3302a7af', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2207.824483650935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77afb83e53382fb42c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x8f3a875b6d662def65b86eb8fcf4e104e29bce112b46fdbcdf2b24bfac2f0766:log:109', 'hash': '0x8f3a875b6d662def65b86eb8fcf4e104e29bce112b46fdbcdf2b24bfac2f0766', 'from': '0x247ac58cd31541c65b3aaa47e047745107d13873', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 357.74696445276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1364bc88bec10e7cd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x8f3a875b6d662def65b86eb8fcf4e104e29bce112b46fdbcdf2b24bfac2f0766:log:115', 'hash': '0x8f3a875b6d662def65b86eb8fcf4e104e29bce112b46fdbcdf2b24bfac2f0766', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 357.74696445276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1364bc88bec10e7cd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x38bfdadc34502ff4fb420e67055fa9433bd1874530da05c13c5baca6186810d8:log:126', 'hash': '0x38bfdadc34502ff4fb420e67055fa9433bd1874530da05c13c5baca6186810d8', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1526.7387389620849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x52c3c19a13d6e8e4e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x38bfdadc34502ff4fb420e67055fa9433bd1874530da05c13c5baca6186810d8:log:132', 'hash': '0x38bfdadc34502ff4fb420e67055fa9433bd1874530da05c13c5baca6186810d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1526.7387389620849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x52c3c19a13d6e8e4e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0xe921a80409fa8eecfde9dd22f10403c8c040300cca6dfdc16ee4d99e4bfd122c:log:151', 'hash': '0xe921a80409fa8eecfde9dd22f10403c8c040300cca6dfdc16ee4d99e4bfd122c', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 880.5235995447251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fbbb83c926ba62eb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0xe921a80409fa8eecfde9dd22f10403c8c040300cca6dfdc16ee4d99e4bfd122c:log:157', 'hash': '0xe921a80409fa8eecfde9dd22f10403c8c040300cca6dfdc16ee4d99e4bfd122c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 880.5235995447251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fbbb83c926ba62eb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d22', 'uniqueId': '0x9ff52888bc73b9047c9a4587771563e4ef62c1bbf8d5553b0da3d3c7308dafa5:log:11', 'hash': '0x9ff52888bc73b9047c9a4587771563e4ef62c1bbf8d5553b0da3d3c7308dafa5', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x00413793a34097c1a89f70a0c6917d67948eca8a', 'value': 1724.9250073255039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d8224ab1e40ba3aa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:12.000Z'}}, {'blockNum': '0x979d22', 'uniqueId': '0x1e1a181f697830fa922219419e38432de894270be39df06459ad9723832810be:log:31', 'hash': '0x1e1a181f697830fa922219419e38432de894270be39df06459ad9723832810be', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 938.0112274191795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32d985518a9058678b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:12.000Z'}}, {'blockNum': '0x979d22', 'uniqueId': '0x1e1a181f697830fa922219419e38432de894270be39df06459ad9723832810be:log:37', 'hash': '0x1e1a181f697830fa922219419e38432de894270be39df06459ad9723832810be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 938.0112274191795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32d985518a9058678b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:12.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3:log:5', 'hash': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 589.4139669397347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff3c3101528b8ec11', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3:log:10', 'hash': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 589.4139669397347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff3c3101528b8ec11', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3:log:11', 'hash': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 589.4139669397347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff3c3101528b8ec11', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96:log:20', 'hash': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6972.625822986134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0179fc9f237374381c99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96:log:25', 'hash': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 6972.625822986134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0179fc9f237374381c99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96:log:26', 'hash': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 6971.928560403835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0179f2f1f6d39f238610', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96:log:28', 'hash': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3911c614be43ac656d818092236be68e413d2708', 'value': 6971.928560403835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0179f2f1f6d39f238610', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:38', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 16864.563218160467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03923ad46ea1ad354d6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:43', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 16864.563218160467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03923ad46ea1ad354d6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:44', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 16864.563218160467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03923ad46ea1ad354d6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:45', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 512.7785131922544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bcc3b3cee6d481dd5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:47', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 17377.34173135272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ae070fab901a7d6b3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b:log:99', 'hash': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 582.3601051506269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f91deb6288e3e3b35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b:log:104', 'hash': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 582.3601051506269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f91deb6288e3e3b35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b:log:105', 'hash': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 582.3601051506269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f91deb6288e3e3b35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:8', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3946.3539718974707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5eea9bcc2e49bce35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:13', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 3946.3539718974707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5eea9bcc2e49bce35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:14', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 3946.3539718974707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5eea9bcc2e49bce35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:15', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 385.4582904154112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14e54ef0e323f1793a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:17', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x8c7ad1c843edd4b24d3b66259ee50b75d22d7612', 'value': 4331.812262312882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xead3f8ada6088d476f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x675b981645f04c07c999e7c42535b453fc20d1aec069a052c9fb297b07b42ecc:log:40', 'hash': '0x675b981645f04c07c999e7c42535b453fc20d1aec069a052c9fb297b07b42ecc', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x3911c614be43ac656d818092236be68e413d2708', 'value': 4748.68708663368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01016d4591abbd18a863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82:log:51', 'hash': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17306.20204624031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03aa2bccbcde0bdd671c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82:log:56', 'hash': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 17306.20204624031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03aa2bccbcde0bdd671c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82:log:57', 'hash': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 17306.20204624031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03aa2bccbcde0bdd671c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82:log:58', 'hash': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 17306.20204624031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03aa2bccbcde0bdd671c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0xb15e6190f5ad65b8a44673d51c20b1d67cbcc4b0e110f12402f5ae344735a557:log:97', 'hash': '0xb15e6190f5ad65b8a44673d51c20b1d67cbcc4b0e110f12402f5ae344735a557', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 620.71966503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21a6373ea18c9bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0xa24e8337240b5be61667a10c8d8613d44635124652695460e8cc04ceec949146:log:98', 'hash': '0xa24e8337240b5be61667a10c8d8613d44635124652695460e8cc04ceec949146', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50ca540462d794927f4c642611f0da56231e2113', 'value': 3492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbd4d3c2a9750100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x3380e746a7574d18c71c3f2a0cef0bbb29906f7d98708dec6b80547bfc93f71d:log:140', 'hash': '0x3380e746a7574d18c71c3f2a0cef0bbb29906f7d98708dec6b80547bfc93f71d', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 884.3102638497604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ff0452bb1dced640a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x3380e746a7574d18c71c3f2a0cef0bbb29906f7d98708dec6b80547bfc93f71d:log:146', 'hash': '0x3380e746a7574d18c71c3f2a0cef0bbb29906f7d98708dec6b80547bfc93f71d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 884.3102638497604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ff0452bb1dced640a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0xff85009a4eeae9073fb9a345559a2c8813a824d96ba0f3df7238938205d3a689:log:170', 'hash': '0xff85009a4eeae9073fb9a345559a2c8813a824d96ba0f3df7238938205d3a689', 'from': '0x46989597338d1db0f7adccd124af2fe4ca841068', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 604.5100269010258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20c5430aa295784ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0xff85009a4eeae9073fb9a345559a2c8813a824d96ba0f3df7238938205d3a689:log:176', 'hash': '0xff85009a4eeae9073fb9a345559a2c8813a824d96ba0f3df7238938205d3a689', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 604.5100269010258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20c5430aa295784ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f:log:200', 'hash': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f', 'from': '0x46989597338d1db0f7adccd124af2fe4ca841068', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 640.1046750377897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22b33ca286e64e8259', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f:log:205', 'hash': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 640.1046750377897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22b33ca286e64e8259', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f:log:206', 'hash': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 640.1046750377897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22b33ca286e64e8259', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:4', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2932.9869175716863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9eff5ebde69844dea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:9', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 2932.9869175716863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9eff5ebde69844dea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:10', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2932.693618879929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9efb4cbc4b68ff06aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:12', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xe8bea818de87dd3e5ce9547120936c822b5b9502', 'value': 2932.693618879929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9efb4cbc4b68ff06aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:15', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0xe8bea818de87dd3e5ce9547120936c822b5b9502', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 2932.693618879929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9efb4cbc4b68ff06aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x7e2cacf6d922d6b0b1550409d08ffa8f553da03c8ba4e5a2ddc85e4b724cf302:log:62', 'hash': '0x7e2cacf6d922d6b0b1550409d08ffa8f553da03c8ba4e5a2ddc85e4b724cf302', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2976.032002972377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa154bd9b0292c875a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x7e2cacf6d922d6b0b1550409d08ffa8f553da03c8ba4e5a2ddc85e4b724cf302:log:68', 'hash': '0x7e2cacf6d922d6b0b1550409d08ffa8f553da03c8ba4e5a2ddc85e4b724cf302', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2976.032002972377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa154bd9b0292c875a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xd4e7c99904a3d8dc1135a5558df5445122759b177fad18f51e76743d971215d4:log:86', 'hash': '0xd4e7c99904a3d8dc1135a5558df5445122759b177fad18f51e76743d971215d4', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 584.8424027678913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb4519ab08617a56d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xd4e7c99904a3d8dc1135a5558df5445122759b177fad18f51e76743d971215d4:log:92', 'hash': '0xd4e7c99904a3d8dc1135a5558df5445122759b177fad18f51e76743d971215d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 584.8424027678913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb4519ab08617a56d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xcd6ce23d5c3f5edbee30ec95bf71cbf86b9102a2cbc10ece4623215fd6d2b43a:log:111', 'hash': '0xcd6ce23d5c3f5edbee30ec95bf71cbf86b9102a2cbc10ece4623215fd6d2b43a', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2851.2479694653452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a9103a9ab67b6fcfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xcd6ce23d5c3f5edbee30ec95bf71cbf86b9102a2cbc10ece4623215fd6d2b43a:log:117', 'hash': '0xcd6ce23d5c3f5edbee30ec95bf71cbf86b9102a2cbc10ece4623215fd6d2b43a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2851.2479694653452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a9103a9ab67b6fcfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x134570f46919e2dc78bb5393f85dc663f0a37f391b6622deb9d9965820285949:log:130', 'hash': '0x134570f46919e2dc78bb5393f85dc663f0a37f391b6622deb9d9965820285949', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1503.2905534844626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x517e58e99e91c1461d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x134570f46919e2dc78bb5393f85dc663f0a37f391b6622deb9d9965820285949:log:136', 'hash': '0x134570f46919e2dc78bb5393f85dc663f0a37f391b6622deb9d9965820285949', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1503.2905534844626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x517e58e99e91c1461d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xa67493633981a3e1ed1ee864003bf2f15702b5f7ed7951a62d007c81b17181aa:log:147', 'hash': '0xa67493633981a3e1ed1ee864003bf2f15702b5f7ed7951a62d007c81b17181aa', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.027758212192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x303f9dca865af4ff8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xa67493633981a3e1ed1ee864003bf2f15702b5f7ed7951a62d007c81b17181aa:log:153', 'hash': '0xa67493633981a3e1ed1ee864003bf2f15702b5f7ed7951a62d007c81b17181aa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 890.027758212192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x303f9dca865af4ff8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xcdafdac04f7fed04a84e329328d8b990eacd579de6560392fa276b371cb53ce6:log:164', 'hash': '0xcdafdac04f7fed04a84e329328d8b990eacd579de6560392fa276b371cb53ce6', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 707.9975234273542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2661707c6cefbfe5aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xcdafdac04f7fed04a84e329328d8b990eacd579de6560392fa276b371cb53ce6:log:170', 'hash': '0xcdafdac04f7fed04a84e329328d8b990eacd579de6560392fa276b371cb53ce6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 707.9975234273542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2661707c6cefbfe5aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x4886928fbf7593fe528f91a636385eb87872568af79e24c6eff1a01bc07946da:log:188', 'hash': '0x4886928fbf7593fe528f91a636385eb87872568af79e24c6eff1a01bc07946da', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 860.701908675764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ea8a371bf179d60a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x4886928fbf7593fe528f91a636385eb87872568af79e24c6eff1a01bc07946da:log:194', 'hash': '0x4886928fbf7593fe528f91a636385eb87872568af79e24c6eff1a01bc07946da', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 860.701908675764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ea8a371bf179d60a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788:log:6', 'hash': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 43063.4441822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091e795733e228de39a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788:log:11', 'hash': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd524262fec411a64b019330be56e9dd19de63a9b', 'value': 43063.4441822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091e795733e228de39a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788:log:12', 'hash': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788', 'from': '0xd524262fec411a64b019330be56e9dd19de63a9b', 'to': '0x23bb4e19767c51afd9bebdd5cb23ced735b97618', 'value': 43063.4441822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091e795733e228de39a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x5d037a8ec1df8867cb0d838f095cfb12dbaf52909ab06da5b31997b0bdddfb76:log:38', 'hash': '0x5d037a8ec1df8867cb0d838f095cfb12dbaf52909ab06da5b31997b0bdddfb76', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 861.696494535834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb670ec510fb65e55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x5d037a8ec1df8867cb0d838f095cfb12dbaf52909ab06da5b31997b0bdddfb76:log:44', 'hash': '0x5d037a8ec1df8867cb0d838f095cfb12dbaf52909ab06da5b31997b0bdddfb76', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 861.696494535834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb670ec510fb65e55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445:log:6', 'hash': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1581.5831950587262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55bce04051aab8fc6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445:log:11', 'hash': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'value': 1581.5831950587262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55bce04051aab8fc6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445:log:13', 'hash': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445', 'from': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 1581.5831950587262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55bce04051aab8fc6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0x608cc87cab4db555bb416d3c2471b0bf41f6162bdabe3aa9a5cb1bb8039c797f:log:294', 'hash': '0x608cc87cab4db555bb416d3c2471b0bf41f6162bdabe3aa9a5cb1bb8039c797f', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 341.07206877821056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x127d536779fcd6e335', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0x608cc87cab4db555bb416d3c2471b0bf41f6162bdabe3aa9a5cb1bb8039c797f:log:300', 'hash': '0x608cc87cab4db555bb416d3c2471b0bf41f6162bdabe3aa9a5cb1bb8039c797f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 341.07206877821056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x127d536779fcd6e335', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0x01fe638657bc682128402d4d484a43668aafe47eaffe5e135377181628633b0e:log:313', 'hash': '0x01fe638657bc682128402d4d484a43668aafe47eaffe5e135377181628633b0e', 'from': '0x8c7ad1c843edd4b24d3b66259ee50b75d22d7612', 'to': '0x7b7fd165678171446e248b6d4425be265e4b3875', 'value': 4331.812262312882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xead3f8ada6088d476f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x8a0bbdc23578f9c14dbfc6da07aaa6c1d9e778a7a64cf32c71da3dfd8dfb2526:log:24', 'hash': '0x8a0bbdc23578f9c14dbfc6da07aaa6c1d9e778a7a64cf32c71da3dfd8dfb2526', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4549.833640028199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf6a5a0358dcb4c2796', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x8a0bbdc23578f9c14dbfc6da07aaa6c1d9e778a7a64cf32c71da3dfd8dfb2526:log:30', 'hash': '0x8a0bbdc23578f9c14dbfc6da07aaa6c1d9e778a7a64cf32c71da3dfd8dfb2526', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 4549.833640028199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf6a5a0358dcb4c2796', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x9d655ef948fbd34888aa34ecc2174b9c375dad59f5aceeed9e52d62aca1f6c20:log:39', 'hash': '0x9d655ef948fbd34888aa34ecc2174b9c375dad59f5aceeed9e52d62aca1f6c20', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 34683.543777593026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075832dc686e265ad25b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61:log:47', 'hash': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17127.40702147083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a07a853522dc127a5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61:log:52', 'hash': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 17127.40702147083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a07a853522dc127a5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61:log:53', 'hash': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 17125.694280768683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a062c0548ac43dfef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61:log:55', 'hash': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xc640caba272414689b21ebcd60d97b912359504d', 'value': 17125.694280768683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a062c0548ac43dfef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x5568950e2985461bb607d014757f063e57e5ac465ba73ef02796830be8229cae:log:107', 'hash': '0x5568950e2985461bb607d014757f063e57e5ac465ba73ef02796830be8229cae', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1071.5592522359211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a16df368b5946c242', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x5568950e2985461bb607d014757f063e57e5ac465ba73ef02796830be8229cae:log:113', 'hash': '0x5568950e2985461bb607d014757f063e57e5ac465ba73ef02796830be8229cae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1071.5592522359211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a16df368b5946c242', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x095eaddbd110e85d590499081e6b0e4b1b479d0492b0671dc4650fb6bde3a094:log:139', 'hash': '0x095eaddbd110e85d590499081e6b0e4b1b479d0492b0671dc4650fb6bde3a094', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 603.2396655080753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20b3a1cfadca492200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x095eaddbd110e85d590499081e6b0e4b1b479d0492b0671dc4650fb6bde3a094:log:143', 'hash': '0x095eaddbd110e85d590499081e6b0e4b1b479d0492b0671dc4650fb6bde3a094', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 603.2396655080753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20b3a1cfadca492200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x70eac9b10ebb5eaf2d40113bbb7ed05ce629ebda2b9fed2f1360b7c4ea014b75:log:157', 'hash': '0x70eac9b10ebb5eaf2d40113bbb7ed05ce629ebda2b9fed2f1360b7c4ea014b75', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1312.2452401727328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47230f9d5d24e53fcc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x70eac9b10ebb5eaf2d40113bbb7ed05ce629ebda2b9fed2f1360b7c4ea014b75:log:163', 'hash': '0x70eac9b10ebb5eaf2d40113bbb7ed05ce629ebda2b9fed2f1360b7c4ea014b75', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1312.2452401727328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47230f9d5d24e53fcc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0xe6f480bbf788039c3a42c3b494dafc7877bde02a36d7f994dff1194619cd53d7:log:179', 'hash': '0xe6f480bbf788039c3a42c3b494dafc7877bde02a36d7f994dff1194619cd53d7', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 516.7080439847815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c02c3bc5e1bd19e45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0xe6f480bbf788039c3a42c3b494dafc7877bde02a36d7f994dff1194619cd53d7:log:185', 'hash': '0xe6f480bbf788039c3a42c3b494dafc7877bde02a36d7f994dff1194619cd53d7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 516.7080439847815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c02c3bc5e1bd19e45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x58556eaae18178df6f81bbc25e51adea8e0aadf4d11d6ba6714462c59250a9c1:log:196', 'hash': '0x58556eaae18178df6f81bbc25e51adea8e0aadf4d11d6ba6714462c59250a9c1', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1352.7014986347974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4954811e16b1a6a7c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x58556eaae18178df6f81bbc25e51adea8e0aadf4d11d6ba6714462c59250a9c1:log:202', 'hash': '0x58556eaae18178df6f81bbc25e51adea8e0aadf4d11d6ba6714462c59250a9c1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1352.7014986347974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4954811e16b1a6a7c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0x05c48cd7525fc21736c5de8930e2db231d2a835d7214a6b89ef9c5d1cc866689:log:2', 'hash': '0x05c48cd7525fc21736c5de8930e2db231d2a835d7214a6b89ef9c5d1cc866689', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x3911c614be43ac656d818092236be68e413d2708', 'value': 1977.0171501621594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b2c9fdf62fe9e1cb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793:log:10', 'hash': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793:log:15', 'hash': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793:log:16', 'hash': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793:log:17', 'hash': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0x2ec2f7b5775ca076e58ba8dc46624dc1b0e94f5de907484c833fb00a1f830db9:log:172', 'hash': '0x2ec2f7b5775ca076e58ba8dc46624dc1b0e94f5de907484c833fb00a1f830db9', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 743.6748011764021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28508fa38310b13aee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0x2ec2f7b5775ca076e58ba8dc46624dc1b0e94f5de907484c833fb00a1f830db9:log:178', 'hash': '0x2ec2f7b5775ca076e58ba8dc46624dc1b0e94f5de907484c833fb00a1f830db9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 743.6748011764021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28508fa38310b13aee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b:log:5', 'hash': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1076.8456228908992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a603c2ca58a4bda79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b:log:10', 'hash': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'value': 1076.8456228908992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a603c2ca58a4bda79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b:log:11', 'hash': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b', 'from': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 1076.8456228908992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a603c2ca58a4bda79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0xce6340c16eb9077542b4601dd27d17d2e57fb58fa78c5f97595b9305cb1f8965:log:29', 'hash': '0xce6340c16eb9077542b4601dd27d17d2e57fb58fa78c5f97595b9305cb1f8965', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 650.1892826934545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233f305bc25d63e619', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0xce6340c16eb9077542b4601dd27d17d2e57fb58fa78c5f97595b9305cb1f8965:log:35', 'hash': '0xce6340c16eb9077542b4601dd27d17d2e57fb58fa78c5f97595b9305cb1f8965', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 650.1892826934545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233f305bc25d63e619', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x6d0c9063f0dca6808912939085478c3f1df77c38b94d3921b542f06af3f37cbd:log:58', 'hash': '0x6d0c9063f0dca6808912939085478c3f1df77c38b94d3921b542f06af3f37cbd', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1091.5246089145153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b2bf268a99ada63f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x6d0c9063f0dca6808912939085478c3f1df77c38b94d3921b542f06af3f37cbd:log:64', 'hash': '0x6d0c9063f0dca6808912939085478c3f1df77c38b94d3921b542f06af3f37cbd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1091.5246089145153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b2bf268a99ada63f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d30', 'uniqueId': '0xf7d23472f2d71e45f4104a744e56fa4a0acf28876371ff3912070a3ad60844fa:log:7', 'hash': '0xf7d23472f2d71e45f4104a744e56fa4a0acf28876371ff3912070a3ad60844fa', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 853.8855088076929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e4a0aba2e68381b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:34.000Z'}}, {'blockNum': '0x979d30', 'uniqueId': '0xf7d23472f2d71e45f4104a744e56fa4a0acf28876371ff3912070a3ad60844fa:log:13', 'hash': '0xf7d23472f2d71e45f4104a744e56fa4a0acf28876371ff3912070a3ad60844fa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 853.8855088076929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e4a0aba2e68381b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:34.000Z'}}, {'blockNum': '0x979d30', 'uniqueId': '0xa1f21e22356292d01323d33dc23ceee97b85697cf6ac574ea4093790aede31d6:log:103', 'hash': '0xa1f21e22356292d01323d33dc23ceee97b85697cf6ac574ea4093790aede31d6', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 883.3490898727548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fe2ee650e2227f4ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:34.000Z'}}, {'blockNum': '0x979d30', 'uniqueId': '0xa1f21e22356292d01323d33dc23ceee97b85697cf6ac574ea4093790aede31d6:log:109', 'hash': '0xa1f21e22356292d01323d33dc23ceee97b85697cf6ac574ea4093790aede31d6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 883.3490898727548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fe2ee650e2227f4ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:34.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x70d9315f0ba703c2f3cee214cfac8393df4b1dc9e4439079fb12614443d50805:log:1', 'hash': '0x70d9315f0ba703c2f3cee214cfac8393df4b1dc9e4439079fb12614443d50805', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0xb5a62a38ce74f7a870789aa4666408b2773ecbd3', 'value': 2530.372676435277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x892bf99eba971e5eaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0xed4865363b39f7f82f85c3b174be0fd574af69084ed5859e6329223107f8000f:log:6', 'hash': '0xed4865363b39f7f82f85c3b174be0fd574af69084ed5859e6329223107f8000f', 'from': '0x23bb4e19767c51afd9bebdd5cb23ced735b97618', 'to': '0x895a00f33d4257f599779e1a6f96816ea6cca8bd', 'value': 43063.4441822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091e795733e228de39a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0xfef7fb25348c6f8d7f0387e61417c2f54c7c8d0040d2c1ca8cf82e214686aa3d:log:16', 'hash': '0xfef7fb25348c6f8d7f0387e61417c2f54c7c8d0040d2c1ca8cf82e214686aa3d', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 803.6451635773846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b90d12a610ab253b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x9749bbc80af37fb70b7c2c9dfb44d34b32e5a86dd362634bbab4df0bc8415e20:log:19', 'hash': '0x9749bbc80af37fb70b7c2c9dfb44d34b32e5a86dd362634bbab4df0bc8415e20', 'from': '0xb5a62a38ce74f7a870789aa4666408b2773ecbd3', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 2530.372676435277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x892bf99eba971e5eaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c:log:38', 'hash': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c', 'from': '0x1c29f12d94ad2e6b5321ce226b4550f83ce88fca', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 376.81533059261864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x146d5cfab8866adc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c:log:43', 'hash': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 376.81533059261864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x146d5cfab8866adc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c:log:44', 'hash': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 376.81533059261864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x146d5cfab8866adc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0xbafcaa65dec5015423d8a201efc6a82446a85950d1731035ddd2712d403c68c4:log:81', 'hash': '0xbafcaa65dec5015423d8a201efc6a82446a85950d1731035ddd2712d403c68c4', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2376.869526108125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x80d9b0e0cd05d35d59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0xbafcaa65dec5015423d8a201efc6a82446a85950d1731035ddd2712d403c68c4:log:87', 'hash': '0xbafcaa65dec5015423d8a201efc6a82446a85950d1731035ddd2712d403c68c4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2376.869526108125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x80d9b0e0cd05d35d59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x41c92b2d8cb73495c59af2d7330f436e780dbf29b6810ec589a1c8ec1c7e5104:log:98', 'hash': '0x41c92b2d8cb73495c59af2d7330f436e780dbf29b6810ec589a1c8ec1c7e5104', 'from': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1745.9632561136325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5ea61b8aecf16e0032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x41c92b2d8cb73495c59af2d7330f436e780dbf29b6810ec589a1c8ec1c7e5104:log:104', 'hash': '0x41c92b2d8cb73495c59af2d7330f436e780dbf29b6810ec589a1c8ec1c7e5104', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1745.9632561136325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5ea61b8aecf16e0032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d32', 'uniqueId': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348:log:5', 'hash': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 42618.292457208445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0906579e9470b2f8a2cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:50.000Z'}}, {'blockNum': '0x979d32', 'uniqueId': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348:log:10', 'hash': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 42618.292457208445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0906579e9470b2f8a2cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:50.000Z'}}, {'blockNum': '0x979d32', 'uniqueId': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348:log:11', 'hash': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x4c39ada0340c1eb3cee343f44819323dd29081a9', 'value': 42618.292457208445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0906579e9470b2f8a2cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:50.000Z'}}, {'blockNum': '0x979d33', 'uniqueId': '0x67c894b655af0425ab92720d96980e895fa9b0be94a2d81b37f6c02df8a9a922:log:68', 'hash': '0x67c894b655af0425ab92720d96980e895fa9b0be94a2d81b37f6c02df8a9a922', 'from': '0xc640caba272414689b21ebcd60d97b912359504d', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 17125.694280768683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a062c0548ac43dfef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:22.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0x4beffa55983b52237be7851ef3574ff8e921bfac77817a6e94b92da5e4ebd5ae:log:42', 'hash': '0x4beffa55983b52237be7851ef3574ff8e921bfac77817a6e94b92da5e4ebd5ae', 'from': '0xfbbaf86d76ef7c86f1aea216242ef8e203a8be7e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 502.0313666843334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b3715b41f8b91cab9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0x4beffa55983b52237be7851ef3574ff8e921bfac77817a6e94b92da5e4ebd5ae:log:48', 'hash': '0x4beffa55983b52237be7851ef3574ff8e921bfac77817a6e94b92da5e4ebd5ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 502.0313666843334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b3715b41f8b91cab9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96:log:66', 'hash': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 879.3950549003848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac0ed7327c9225f8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96:log:71', 'hash': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 879.3950549003848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac0ed7327c9225f8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96:log:72', 'hash': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 879.3950549003848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac0ed7327c9225f8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0x554a242fcd1e909b4755bf95a8f7152224f379c292ff73a2fa6101514edff610:log:102', 'hash': '0x554a242fcd1e909b4755bf95a8f7152224f379c292ff73a2fa6101514edff610', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 802.512223541195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b8118276b31ccdb43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0x554a242fcd1e909b4755bf95a8f7152224f379c292ff73a2fa6101514edff610:log:108', 'hash': '0x554a242fcd1e909b4755bf95a8f7152224f379c292ff73a2fa6101514edff610', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 802.512223541195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b8118276b31ccdb43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xdc0ec7567b2df0b06fadbc713f0055925112b936b14c5ab1f36ab524b238820d:log:126', 'hash': '0xdc0ec7567b2df0b06fadbc713f0055925112b936b14c5ab1f36ab524b238820d', 'from': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 874.2063676325859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f640ceb9e34d25604', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xdc0ec7567b2df0b06fadbc713f0055925112b936b14c5ab1f36ab524b238820d:log:132', 'hash': '0xdc0ec7567b2df0b06fadbc713f0055925112b936b14c5ab1f36ab524b238820d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 874.2063676325859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f640ceb9e34d25604', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0a97859b50907217d9124d16b10c490e70f6141ca15ec50c9a41faaa3941177:log:166', 'hash': '0xc0a97859b50907217d9124d16b10c490e70f6141ca15ec50c9a41faaa3941177', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 945.2237923005101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x333d9d7f1647833877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0a97859b50907217d9124d16b10c490e70f6141ca15ec50c9a41faaa3941177:log:172', 'hash': '0xc0a97859b50907217d9124d16b10c490e70f6141ca15ec50c9a41faaa3941177', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 945.2237923005101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x333d9d7f1647833877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xcc00e3a6eced9591cf221989a544707169f6977f1b4c1f989e7618066addf4ae:log:6', 'hash': '0xcc00e3a6eced9591cf221989a544707169f6977f1b4c1f989e7618066addf4ae', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2414.3778064501007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82e2390f0b65155e89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xcc00e3a6eced9591cf221989a544707169f6977f1b4c1f989e7618066addf4ae:log:12', 'hash': '0xcc00e3a6eced9591cf221989a544707169f6977f1b4c1f989e7618066addf4ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2414.3778064501007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82e2390f0b65155e89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f:log:35', 'hash': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f:log:40', 'hash': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f:log:41', 'hash': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f:log:42', 'hash': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0xce0c61abf9866fef5767e102cf227f294b3459e5', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d36', 'uniqueId': '0xc703867045aaac2f6237011591c3d5e5634a9c68352dba584c112c50ee7abaa6:log:7', 'hash': '0xc703867045aaac2f6237011591c3d5e5634a9c68352dba584c112c50ee7abaa6', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 840.9863310575797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d9707a45c3e192061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:45.000Z'}}, {'blockNum': '0x979d36', 'uniqueId': '0xc703867045aaac2f6237011591c3d5e5634a9c68352dba584c112c50ee7abaa6:log:13', 'hash': '0xc703867045aaac2f6237011591c3d5e5634a9c68352dba584c112c50ee7abaa6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 840.9863310575797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d9707a45c3e192061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:45.000Z'}}, {'blockNum': '0x979d36', 'uniqueId': '0x161762774af4ab9369f6fa6814db3be1f1c1700fef4ab8b700382c411e60b3ae:log:56', 'hash': '0x161762774af4ab9369f6fa6814db3be1f1c1700fef4ab8b700382c411e60b3ae', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 550.711933904789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ddaa9d216eb58f0f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:45.000Z'}}, {'blockNum': '0x979d36', 'uniqueId': '0x161762774af4ab9369f6fa6814db3be1f1c1700fef4ab8b700382c411e60b3ae:log:62', 'hash': '0x161762774af4ab9369f6fa6814db3be1f1c1700fef4ab8b700382c411e60b3ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 550.711933904789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ddaa9d216eb58f0f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:45.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0x3de6b8765b52d1a19b557e9e019f3f73b226caa2dcc8684b244960580c11df99:log:12', 'hash': '0x3de6b8765b52d1a19b557e9e019f3f73b226caa2dcc8684b244960580c11df99', 'from': '0x9db89726ae2683d21a71ff1417638e72e6d8c0d9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 479.82766320372656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a02f24d72a7e47bb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0x3de6b8765b52d1a19b557e9e019f3f73b226caa2dcc8684b244960580c11df99:log:18', 'hash': '0x3de6b8765b52d1a19b557e9e019f3f73b226caa2dcc8684b244960580c11df99', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 479.82766320372656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a02f24d72a7e47bb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0x498ea1ca7f46ae8e4f7d5eb3bf598403708b63d62dcf1b949d5d2365ceb7ca30:log:44', 'hash': '0x498ea1ca7f46ae8e4f7d5eb3bf598403708b63d62dcf1b949d5d2365ceb7ca30', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1225.4174121080753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x426e1533c5c84a94cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0x498ea1ca7f46ae8e4f7d5eb3bf598403708b63d62dcf1b949d5d2365ceb7ca30:log:48', 'hash': '0x498ea1ca7f46ae8e4f7d5eb3bf598403708b63d62dcf1b949d5d2365ceb7ca30', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1225.4174121080753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x426e1533c5c84a94cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0xbe8054d5e7c24749ad5426c2cd1a6347acb68e408bdc81828a48aaa4b3597684:log:154', 'hash': '0xbe8054d5e7c24749ad5426c2cd1a6347acb68e408bdc81828a48aaa4b3597684', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 520.7336170351498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3aa171ba806823ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0xbe8054d5e7c24749ad5426c2cd1a6347acb68e408bdc81828a48aaa4b3597684:log:160', 'hash': '0xbe8054d5e7c24749ad5426c2cd1a6347acb68e408bdc81828a48aaa4b3597684', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 520.7336170351498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3aa171ba806823ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0xfa975abab9fc56b6161e241abf376491ffcae76b4008c28d7201dca9548ba21e:log:193', 'hash': '0xfa975abab9fc56b6161e241abf376491ffcae76b4008c28d7201dca9548ba21e', 'from': '0x8bb76c5ae6b7d6bd1678510edd06444acdf8f72b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 167.65702913171984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0916b56bb5d57aa5fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0xfa975abab9fc56b6161e241abf376491ffcae76b4008c28d7201dca9548ba21e:log:197', 'hash': '0xfa975abab9fc56b6161e241abf376491ffcae76b4008c28d7201dca9548ba21e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 167.65702913171984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0916b56bb5d57aa5fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d39', 'uniqueId': '0xc45d2a871c62f020bb7378cd6b97732cb66b1d21ed19cd46e0de13063e8ca630:log:13', 'hash': '0xc45d2a871c62f020bb7378cd6b97732cb66b1d21ed19cd46e0de13063e8ca630', 'from': '0x247ac58cd31541c65b3aaa47e047745107d13873', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 348.6481455357524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e6770925d136f273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:51.000Z'}}, {'blockNum': '0x979d39', 'uniqueId': '0xc45d2a871c62f020bb7378cd6b97732cb66b1d21ed19cd46e0de13063e8ca630:log:19', 'hash': '0xc45d2a871c62f020bb7378cd6b97732cb66b1d21ed19cd46e0de13063e8ca630', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 348.6481455357524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e6770925d136f273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:51.000Z'}}, {'blockNum': '0x979d39', 'uniqueId': '0x5581009a8b38e38fee42d242aed72260803df2245254cf83b439e7bb3516bed8:log:123', 'hash': '0x5581009a8b38e38fee42d242aed72260803df2245254cf83b439e7bb3516bed8', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 215.38857979344246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bad1df42500041b1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:51.000Z'}}, {'blockNum': '0x979d39', 'uniqueId': '0x5581009a8b38e38fee42d242aed72260803df2245254cf83b439e7bb3516bed8:log:129', 'hash': '0x5581009a8b38e38fee42d242aed72260803df2245254cf83b439e7bb3516bed8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 215.38857979344246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bad1df42500041b1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:51.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x00653efe3d64b7ddb1655753c104970286c30e08c97dae7bd8c2286712f0c420:log:4', 'hash': '0x00653efe3d64b7ddb1655753c104970286c30e08c97dae7bd8c2286712f0c420', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x8248cdb5cbe25aa810e5325ce42dadd19d676125f1837087ddc3b58c615deb35:log:16', 'hash': '0x8248cdb5cbe25aa810e5325ce42dadd19d676125f1837087ddc3b58c615deb35', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 16969.250293994573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0397e7a7a3725f80e33c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x8248cdb5cbe25aa810e5325ce42dadd19d676125f1837087ddc3b58c615deb35:log:21', 'hash': '0x8248cdb5cbe25aa810e5325ce42dadd19d676125f1837087ddc3b58c615deb35', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 16969.250293994573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0397e7a7a3725f80e33c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0xb1d3386f973ca5a82bf738317021adf8a7f6836e5fa2cb94f07d085347514239:log:41', 'hash': '0xb1d3386f973ca5a82bf738317021adf8a7f6836e5fa2cb94f07d085347514239', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 340.36651303791666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x127388c444d7621fae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0xb1d3386f973ca5a82bf738317021adf8a7f6836e5fa2cb94f07d085347514239:log:47', 'hash': '0xb1d3386f973ca5a82bf738317021adf8a7f6836e5fa2cb94f07d085347514239', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 340.36651303791666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x127388c444d7621fae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x542cad8057899e7f32d602c84f32e6057a01499c1d0bb05a9115263b700f9c11:log:148', 'hash': '0x542cad8057899e7f32d602c84f32e6057a01499c1d0bb05a9115263b700f9c11', 'from': '0xfa15985038633f5497eb4554b4224ad8510179e2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 245.56341770064296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4fe0835915b1aca3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x542cad8057899e7f32d602c84f32e6057a01499c1d0bb05a9115263b700f9c11:log:154', 'hash': '0x542cad8057899e7f32d602c84f32e6057a01499c1d0bb05a9115263b700f9c11', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 245.56341770064296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4fe0835915b1aca3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x3b8a052fbcf96e5f738b4ad1d25e77b333541da3adae69150e254463e6034ab7:log:167', 'hash': '0x3b8a052fbcf96e5f738b4ad1d25e77b333541da3adae69150e254463e6034ab7', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 190.4671236874799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a534327db0ea0f43f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x3b8a052fbcf96e5f738b4ad1d25e77b333541da3adae69150e254463e6034ab7:log:173', 'hash': '0x3b8a052fbcf96e5f738b4ad1d25e77b333541da3adae69150e254463e6034ab7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 190.4671236874799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a534327db0ea0f43f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xd1162118c28a051d5a51784bd0caf9facc81aba85db8154b9d6f51904b8d44cd:log:13', 'hash': '0xd1162118c28a051d5a51784bd0caf9facc81aba85db8154b9d6f51904b8d44cd', 'from': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 882.9066495727927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fdcca87f2509a1159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xd1162118c28a051d5a51784bd0caf9facc81aba85db8154b9d6f51904b8d44cd:log:19', 'hash': '0xd1162118c28a051d5a51784bd0caf9facc81aba85db8154b9d6f51904b8d44cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 882.9066495727927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fdcca87f2509a1159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x959b0402bb75bdc8da26e288a9e9b2a7fc012408f0d942711888ac12151fa243:log:44', 'hash': '0x959b0402bb75bdc8da26e288a9e9b2a7fc012408f0d942711888ac12151fa243', 'from': '0x3911c614be43ac656d818092236be68e413d2708', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 13697.632797199674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e68cd767e25ada4b29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x4c3fde2c211ca5e6d34cc3fd34ac591a98f1bbb0be11f6b1cf7746e39d484798:log:59', 'hash': '0x4c3fde2c211ca5e6d34cc3fd34ac591a98f1bbb0be11f6b1cf7746e39d484798', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 909.0294217306655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31475142d1db131cc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x4c3fde2c211ca5e6d34cc3fd34ac591a98f1bbb0be11f6b1cf7746e39d484798:log:65', 'hash': '0x4c3fde2c211ca5e6d34cc3fd34ac591a98f1bbb0be11f6b1cf7746e39d484798', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 909.0294217306655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31475142d1db131cc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xe8e68c2b82281243cf00527bea2b2277ab1b00023563d2290057cc3cc8cc7293:log:84', 'hash': '0xe8e68c2b82281243cf00527bea2b2277ab1b00023563d2290057cc3cc8cc7293', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 432.4834223869906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1771e9c543fdcb80ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xe8e68c2b82281243cf00527bea2b2277ab1b00023563d2290057cc3cc8cc7293:log:90', 'hash': '0xe8e68c2b82281243cf00527bea2b2277ab1b00023563d2290057cc3cc8cc7293', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 432.4834223869906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1771e9c543fdcb80ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x5d866bac32e12e1c4e79b4cd73585d83438846bc4204eb7e4f9825128c3dbbb7:log:118', 'hash': '0x5d866bac32e12e1c4e79b4cd73585d83438846bc4204eb7e4f9825128c3dbbb7', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 885.59643503277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30021e9192408f74e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x5d866bac32e12e1c4e79b4cd73585d83438846bc4204eb7e4f9825128c3dbbb7:log:124', 'hash': '0x5d866bac32e12e1c4e79b4cd73585d83438846bc4204eb7e4f9825128c3dbbb7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 885.59643503277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30021e9192408f74e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xcfcd7cf3ca285d773e258c8248f5bcd74e6caff3403af44ebd35862c3e51ba68:log:135', 'hash': '0xcfcd7cf3ca285d773e258c8248f5bcd74e6caff3403af44ebd35862c3e51ba68', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 701.0869682304073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26018943166cfe981e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xcfcd7cf3ca285d773e258c8248f5bcd74e6caff3403af44ebd35862c3e51ba68:log:141', 'hash': '0xcfcd7cf3ca285d773e258c8248f5bcd74e6caff3403af44ebd35862c3e51ba68', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 701.0869682304073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26018943166cfe981e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x7f570a03e89108316091d6c276efe5eccf9c4edb899ad5326f3e3951e461cac6:log:168', 'hash': '0x7f570a03e89108316091d6c276efe5eccf9c4edb899ad5326f3e3951e461cac6', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 478.41400293028886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19ef53f8eb488e29c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x7f570a03e89108316091d6c276efe5eccf9c4edb899ad5326f3e3951e461cac6:log:174', 'hash': '0x7f570a03e89108316091d6c276efe5eccf9c4edb899ad5326f3e3951e461cac6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 478.41400293028886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19ef53f8eb488e29c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0x3902f6a586b884b08b00b1ac6c64ff2fd29cabf79ddaf9a3c0e8a1d30bd5cad8:log:107', 'hash': '0x3902f6a586b884b08b00b1ac6c64ff2fd29cabf79ddaf9a3c0e8a1d30bd5cad8', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 1406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c382b6eb157380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0x0412a4fb11504195a516d2b55a4b41c24ded442ded619435d95cbd4962715703:log:153', 'hash': '0x0412a4fb11504195a516d2b55a4b41c24ded442ded619435d95cbd4962715703', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 156.73032725403718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x087f11fa3ea39c0868', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0x0412a4fb11504195a516d2b55a4b41c24ded442ded619435d95cbd4962715703:log:159', 'hash': '0x0412a4fb11504195a516d2b55a4b41c24ded442ded619435d95cbd4962715703', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 156.73032725403718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x087f11fa3ea39c0868', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0xc503c25c6a5cb47abcedf6594bc5ecf0c57ffe009058978850430dae98b93d0d:log:172', 'hash': '0xc503c25c6a5cb47abcedf6594bc5ecf0c57ffe009058978850430dae98b93d0d', 'from': '0xda764901e0a424a3356633d592a179de65e310fe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 166.3608337891536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0904b868e9ec4d1959', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0xc503c25c6a5cb47abcedf6594bc5ecf0c57ffe009058978850430dae98b93d0d:log:178', 'hash': '0xc503c25c6a5cb47abcedf6594bc5ecf0c57ffe009058978850430dae98b93d0d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 166.3608337891536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0904b868e9ec4d1959', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0xa259477c188758cd03d9ae1de766fb15b960b54a420615590f9c33c42c9f0751:log:10', 'hash': '0xa259477c188758cd03d9ae1de766fb15b960b54a420615590f9c33c42c9f0751', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1700.3473406508094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c2d0f417edf9bc404', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0xa259477c188758cd03d9ae1de766fb15b960b54a420615590f9c33c42c9f0751:log:16', 'hash': '0xa259477c188758cd03d9ae1de766fb15b960b54a420615590f9c33c42c9f0751', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1700.3473406508094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c2d0f417edf9bc404', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0x97cb8a8eb1e8d05d67abad994157659a83dba40c8b09c21dc05fd2f79e9a676d:log:110', 'hash': '0x97cb8a8eb1e8d05d67abad994157659a83dba40c8b09c21dc05fd2f79e9a676d', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 992.0816851521406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35c7e62c5f30433f73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0x97cb8a8eb1e8d05d67abad994157659a83dba40c8b09c21dc05fd2f79e9a676d:log:116', 'hash': '0x97cb8a8eb1e8d05d67abad994157659a83dba40c8b09c21dc05fd2f79e9a676d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 992.0816851521406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35c7e62c5f30433f73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0xf44a1f3aa03db3fc6c898a39e14a75d155ed1ab14188a35dff488041e9cae0f6:log:139', 'hash': '0xf44a1f3aa03db3fc6c898a39e14a75d155ed1ab14188a35dff488041e9cae0f6', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 590.4250818328936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2001cb43b88a90e5b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0xf44a1f3aa03db3fc6c898a39e14a75d155ed1ab14188a35dff488041e9cae0f6:log:143', 'hash': '0xf44a1f3aa03db3fc6c898a39e14a75d155ed1ab14188a35dff488041e9cae0f6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 590.4250818328936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2001cb43b88a90e5b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3f', 'uniqueId': '0xfa44a207d74fb968583f4220d91a9f791b56aae04921e8703a5a063263b5433e:log:42', 'hash': '0xfa44a207d74fb968583f4220d91a9f791b56aae04921e8703a5a063263b5433e', 'from': '0xa260306fe5e57cae7bdcc7ff0488061eace32b58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 511.6634038191026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbcc192dd54db94db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:45.000Z'}}, {'blockNum': '0x979d3f', 'uniqueId': '0xfa44a207d74fb968583f4220d91a9f791b56aae04921e8703a5a063263b5433e:log:48', 'hash': '0xfa44a207d74fb968583f4220d91a9f791b56aae04921e8703a5a063263b5433e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 511.6634038191026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbcc192dd54db94db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:45.000Z'}}, {'blockNum': '0x979d3f', 'uniqueId': '0x462e05797d4263979aaa4d97ccd3cc4c8244e3b155576f7e45549f39b0b6efce:log:75', 'hash': '0x462e05797d4263979aaa4d97ccd3cc4c8244e3b155576f7e45549f39b0b6efce', 'from': '0x2727da5fb75aa61876ad90ec09c031c01919176b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 175.39961759133823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0982289ee46f122e66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:45.000Z'}}, {'blockNum': '0x979d3f', 'uniqueId': '0x462e05797d4263979aaa4d97ccd3cc4c8244e3b155576f7e45549f39b0b6efce:log:81', 'hash': '0x462e05797d4263979aaa4d97ccd3cc4c8244e3b155576f7e45549f39b0b6efce', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 175.39961759133823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0982289ee46f122e66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:45.000Z'}}, {'blockNum': '0x979d43', 'uniqueId': '0xd3f9495f75f8adf096c7f747727eee3763d009bd3f3129a6b1172369b300f5aa:log:12', 'hash': '0xd3f9495f75f8adf096c7f747727eee3763d009bd3f3129a6b1172369b300f5aa', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 834.4855808476868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d3cd0567ca3e293e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:04:14.000Z'}}, {'blockNum': '0x979d43', 'uniqueId': '0xd3f9495f75f8adf096c7f747727eee3763d009bd3f3129a6b1172369b300f5aa:log:18', 'hash': '0xd3f9495f75f8adf096c7f747727eee3763d009bd3f3129a6b1172369b300f5aa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 834.4855808476868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d3cd0567ca3e293e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:04:14.000Z'}}, {'blockNum': '0x979d45', 'uniqueId': '0x18704f732da45e25dbe435c7b935c2500ede758625bf2384d2e56c8af9bba7b8:log:15', 'hash': '0x18704f732da45e25dbe435c7b935c2500ede758625bf2384d2e56c8af9bba7b8', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 843.7776951759429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2dbdc48f3c97e7fb6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:03.000Z'}}, {'blockNum': '0x979d45', 'uniqueId': '0x18704f732da45e25dbe435c7b935c2500ede758625bf2384d2e56c8af9bba7b8:log:21', 'hash': '0x18704f732da45e25dbe435c7b935c2500ede758625bf2384d2e56c8af9bba7b8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 843.7776951759429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2dbdc48f3c97e7fb6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:03.000Z'}}, {'blockNum': '0x979d46', 'uniqueId': '0xde7725bb604e79292179606f4d32c98c524c3267a73409749448b3a10ae4c3ff:log:80', 'hash': '0xde7725bb604e79292179606f4d32c98c524c3267a73409749448b3a10ae4c3ff', 'from': '0xa260306fe5e57cae7bdcc7ff0488061eace32b58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 705.1839705040895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x263a64bcf2dbcb5b6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:11.000Z'}}, {'blockNum': '0x979d46', 'uniqueId': '0xde7725bb604e79292179606f4d32c98c524c3267a73409749448b3a10ae4c3ff:log:86', 'hash': '0xde7725bb604e79292179606f4d32c98c524c3267a73409749448b3a10ae4c3ff', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 705.1839705040895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x263a64bcf2dbcb5b6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:11.000Z'}}, {'blockNum': '0x979d46', 'uniqueId': '0x8a388a0484ee1195226dcb8878a50f5c89c15bbb10a43baed68c76aecff12c52:log:153', 'hash': '0x8a388a0484ee1195226dcb8878a50f5c89c15bbb10a43baed68c76aecff12c52', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:11.000Z'}}, {'blockNum': '0x979d46', 'uniqueId': '0x8a388a0484ee1195226dcb8878a50f5c89c15bbb10a43baed68c76aecff12c52:log:155', 'hash': '0x8a388a0484ee1195226dcb8878a50f5c89c15bbb10a43baed68c76aecff12c52', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:11.000Z'}}, {'blockNum': '0x979d47', 'uniqueId': '0xa511e7317d14ceaf43a72e1156287c9e7f31348ba81477e52b21c6986286cc79:log:6', 'hash': '0xa511e7317d14ceaf43a72e1156287c9e7f31348ba81477e52b21c6986286cc79', 'from': '0xce0c61abf9866fef5767e102cf227f294b3459e5', 'to': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:17.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79:log:0', 'hash': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79', 'from': '0x4c39ada0340c1eb3cee343f44819323dd29081a9', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 42618.29245000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0906579e8de25a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79:log:2', 'hash': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 426.18292450000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x171a79e7d19fa00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79:log:5', 'hash': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 42192.109525500004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ef3d24a610bae00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79:log:7', 'hash': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 42192.109525500004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ef3d24a610bae00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x565a7f91008997927374f921c3b5ffddbabdc088480493d27f31864fb7aff0c9:log:73', 'hash': '0x565a7f91008997927374f921c3b5ffddbabdc088480493d27f31864fb7aff0c9', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 831.1923726602068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d0f1c8316a9bcd565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x565a7f91008997927374f921c3b5ffddbabdc088480493d27f31864fb7aff0c9:log:79', 'hash': '0x565a7f91008997927374f921c3b5ffddbabdc088480493d27f31864fb7aff0c9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 831.1923726602068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d0f1c8316a9bcd565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x1c2e925f2bc8575eacc7053255fd9469a7b64bdf8dba5467759f431417e734e6:log:151', 'hash': '0x1c2e925f2bc8575eacc7053255fd9469a7b64bdf8dba5467759f431417e734e6', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 16969.250293994573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0397e7a7a3725f80e33c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x1c2e925f2bc8575eacc7053255fd9469a7b64bdf8dba5467759f431417e734e6:log:153', 'hash': '0x1c2e925f2bc8575eacc7053255fd9469a7b64bdf8dba5467759f431417e734e6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 16969.250293994573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0397e7a7a3725f80e33c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0xaa3800b91b66e5376d79fa8deeef6f362cbd077cb541023b6d72ad56e0388674:log:12', 'hash': '0xaa3800b91b66e5376d79fa8deeef6f362cbd077cb541023b6d72ad56e0388674', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 818.2944730945924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5c1df7c5049e2cb5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0xaa3800b91b66e5376d79fa8deeef6f362cbd077cb541023b6d72ad56e0388674:log:18', 'hash': '0xaa3800b91b66e5376d79fa8deeef6f362cbd077cb541023b6d72ad56e0388674', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 818.2944730945924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5c1df7c5049e2cb5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x29fe31dc056b7b6289d3d8c198faf85cd55d763afed02fef59b6e9ee0fcdb60e:log:64', 'hash': '0x29fe31dc056b7b6289d3d8c198faf85cd55d763afed02fef59b6e9ee0fcdb60e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 904.0240238938998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3101da8401c7242bd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x29fe31dc056b7b6289d3d8c198faf85cd55d763afed02fef59b6e9ee0fcdb60e:log:70', 'hash': '0x29fe31dc056b7b6289d3d8c198faf85cd55d763afed02fef59b6e9ee0fcdb60e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 904.0240238938998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3101da8401c7242bd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x4cb93e2453fcdcd6a0f5e3f78cd87bfbac344165602414b47b8f1f3af41ad325:log:113', 'hash': '0x4cb93e2453fcdcd6a0f5e3f78cd87bfbac344165602414b47b8f1f3af41ad325', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1914.370963453003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67c73be87d0a8cf2c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x4cb93e2453fcdcd6a0f5e3f78cd87bfbac344165602414b47b8f1f3af41ad325:log:119', 'hash': '0x4cb93e2453fcdcd6a0f5e3f78cd87bfbac344165602414b47b8f1f3af41ad325', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 1914.370963453003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67c73be87d0a8cf2c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182:log:131', 'hash': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 928.6844868163133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3258161460ce4acb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182:log:133', 'hash': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 928.6844868163133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3258161460ce4acb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182:log:138', 'hash': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 928.6844868163133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3258161460ce4acb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182:log:140', 'hash': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 928.6844868163133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3258161460ce4acb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x736bae3521d023214819c4d8e541d71105d15361d713eb6ac4750cfe02f42d6a:log:155', 'hash': '0x736bae3521d023214819c4d8e541d71105d15361d713eb6ac4750cfe02f42d6a', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 871.3382205883593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f3c3f3713ce1cd38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x736bae3521d023214819c4d8e541d71105d15361d713eb6ac4750cfe02f42d6a:log:161', 'hash': '0x736bae3521d023214819c4d8e541d71105d15361d713eb6ac4750cfe02f42d6a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 871.3382205883593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f3c3f3713ce1cd38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x50b1b844b145e81d008f85f4ba30a00b328f6d8bd3478cc19e2c494c34a4704a:log:201', 'hash': '0x50b1b844b145e81d008f85f4ba30a00b328f6d8bd3478cc19e2c494c34a4704a', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 73109.40855805165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f7b44dbd54ce4700a3a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x50b1b844b145e81d008f85f4ba30a00b328f6d8bd3478cc19e2c494c34a4704a:log:203', 'hash': '0x50b1b844b145e81d008f85f4ba30a00b328f6d8bd3478cc19e2c494c34a4704a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 73109.40855805165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f7b44dbd54ce4700a3a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4c', 'uniqueId': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf:log:10', 'hash': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4422.029254319902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xefb7fbd1e38b41074f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:43.000Z'}}, {'blockNum': '0x979d4c', 'uniqueId': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf:log:15', 'hash': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 4422.029254319902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xefb7fbd1e38b41074f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:43.000Z'}}, {'blockNum': '0x979d4c', 'uniqueId': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf:log:17', 'hash': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4422.029254319902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xefb7fbd1e38b41074f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:43.000Z'}}, {'blockNum': '0x979d4c', 'uniqueId': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf:log:19', 'hash': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 4422.029254319902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xefb7fbd1e38b41074f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:43.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0xe786e58c295961f035dff1afb32fe89ecb535446a0befb75d0513f7c115e58b3:log:7', 'hash': '0xe786e58c295961f035dff1afb32fe89ecb535446a0befb75d0513f7c115e58b3', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3150.250408525272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xaac681b7cfce089112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0xe786e58c295961f035dff1afb32fe89ecb535446a0befb75d0513f7c115e58b3:log:13', 'hash': '0xe786e58c295961f035dff1afb32fe89ecb535446a0befb75d0513f7c115e58b3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 3150.250408525272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xaac681b7cfce089112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x53758633ae621401eba7f9e9323d5a291ada99be62f3d4a69e328f6746895c5d:log:25', 'hash': '0x53758633ae621401eba7f9e9323d5a291ada99be62f3d4a69e328f6746895c5d', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 818.202677446192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5ad7d81d1dc9728c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x53758633ae621401eba7f9e9323d5a291ada99be62f3d4a69e328f6746895c5d:log:31', 'hash': '0x53758633ae621401eba7f9e9323d5a291ada99be62f3d4a69e328f6746895c5d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 818.202677446192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5ad7d81d1dc9728c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0xa736eeabb738fbbec573d11ef05f4053b0aa578999fc219e4e81b57f4cd6b14e:log:43', 'hash': '0xa736eeabb738fbbec573d11ef05f4053b0aa578999fc219e4e81b57f4cd6b14e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1538.9226596480023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x536cd795635e8a1ba5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0xa736eeabb738fbbec573d11ef05f4053b0aa578999fc219e4e81b57f4cd6b14e:log:49', 'hash': '0xa736eeabb738fbbec573d11ef05f4053b0aa578999fc219e4e81b57f4cd6b14e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 1538.9226596480023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x536cd795635e8a1ba5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x930aab4f8b9d906514e15b4fea7c8bbcb1fc08d71f06e66a5f8a990c09c29e04:log:72', 'hash': '0x930aab4f8b9d906514e15b4fea7c8bbcb1fc08d71f06e66a5f8a990c09c29e04', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1504.0473326829726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5188d9884a7658a2bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x930aab4f8b9d906514e15b4fea7c8bbcb1fc08d71f06e66a5f8a990c09c29e04:log:78', 'hash': '0x930aab4f8b9d906514e15b4fea7c8bbcb1fc08d71f06e66a5f8a990c09c29e04', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 1504.0473326829726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5188d9884a7658a2bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x557ada38107b921f92ab7131617e2c537d2172052a3154175d000945c41af4f6:log:92', 'hash': '0x557ada38107b921f92ab7131617e2c537d2172052a3154175d000945c41af4f6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1728.9211682782548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5db999e25506bceb37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x557ada38107b921f92ab7131617e2c537d2172052a3154175d000945c41af4f6:log:98', 'hash': '0x557ada38107b921f92ab7131617e2c537d2172052a3154175d000945c41af4f6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 1728.9211682782548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5db999e25506bceb37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x8fdd34f11b38a14f26e8304c89caba72bdcd104e60161ade6ff6ac5098f952e1:log:113', 'hash': '0x8fdd34f11b38a14f26e8304c89caba72bdcd104e60161ade6ff6ac5098f952e1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1166.248377476575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f38f2904426edeb05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x8fdd34f11b38a14f26e8304c89caba72bdcd104e60161ade6ff6ac5098f952e1:log:119', 'hash': '0x8fdd34f11b38a14f26e8304c89caba72bdcd104e60161ade6ff6ac5098f952e1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 1166.248377476575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f38f2904426edeb05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x02ecf830770a5e1798ef7a2298aab14a250e3fdd2229acc51efe126f3e02334e:log:134', 'hash': '0x02ecf830770a5e1798ef7a2298aab14a250e3fdd2229acc51efe126f3e02334e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2571.5080360439147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8b66d7c65933e9e328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x02ecf830770a5e1798ef7a2298aab14a250e3fdd2229acc51efe126f3e02334e:log:140', 'hash': '0x02ecf830770a5e1798ef7a2298aab14a250e3fdd2229acc51efe126f3e02334e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 2571.5080360439147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8b66d7c65933e9e328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x285c1e30f3230662f195cc6a6144d6f175fc3fbff11d7008321cd55ce7f0b7a7:log:151', 'hash': '0x285c1e30f3230662f195cc6a6144d6f175fc3fbff11d7008321cd55ce7f0b7a7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 850.3110466026467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e186fafbe7d61cdff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x285c1e30f3230662f195cc6a6144d6f175fc3fbff11d7008321cd55ce7f0b7a7:log:157', 'hash': '0x285c1e30f3230662f195cc6a6144d6f175fc3fbff11d7008321cd55ce7f0b7a7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'value': 850.3110466026467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e186fafbe7d61cdff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x209be533b8237a1068345fac78b0b8d6116a964134af2a378ba01112b1d973f7:log:202', 'hash': '0x209be533b8237a1068345fac78b0b8d6116a964134af2a378ba01112b1d973f7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 522.1471612165502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c4e3f5cac1718af75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x209be533b8237a1068345fac78b0b8d6116a964134af2a378ba01112b1d973f7:log:208', 'hash': '0x209be533b8237a1068345fac78b0b8d6116a964134af2a378ba01112b1d973f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 522.1471612165502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c4e3f5cac1718af75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xac5549ad96854cbaf01304b96a459ee7ce2ea6e163992fafbc8e85b645213d98:log:15', 'hash': '0xac5549ad96854cbaf01304b96a459ee7ce2ea6e163992fafbc8e85b645213d98', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 835.3489020243742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d48cb7885e3688bed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xac5549ad96854cbaf01304b96a459ee7ce2ea6e163992fafbc8e85b645213d98:log:21', 'hash': '0xac5549ad96854cbaf01304b96a459ee7ce2ea6e163992fafbc8e85b645213d98', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 835.3489020243742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d48cb7885e3688bed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xcc368e2ebc8c8d6ee00c094f6b8934a7bf5c7c32b4660cf343f9f2241260b815:log:90', 'hash': '0xcc368e2ebc8c8d6ee00c094f6b8934a7bf5c7c32b4660cf343f9f2241260b815', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1324.4726304273802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47ccc0080457383337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xcc368e2ebc8c8d6ee00c094f6b8934a7bf5c7c32b4660cf343f9f2241260b815:log:96', 'hash': '0xcc368e2ebc8c8d6ee00c094f6b8934a7bf5c7c32b4660cf343f9f2241260b815', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1324.4726304273802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47ccc0080457383337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee:log:113', 'hash': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 988.6974339853676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3598eee5ddbe0eb02f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee:log:118', 'hash': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 988.6974339853676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3598eee5ddbe0eb02f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee:log:119', 'hash': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 988.6974339853676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3598eee5ddbe0eb02f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d52', 'uniqueId': '0x34fc1168e71ca74265da13be728b53a65a915cae8bc1bccacac4b9bcb7eeadee:log:161', 'hash': '0x34fc1168e71ca74265da13be728b53a65a915cae8bc1bccacac4b9bcb7eeadee', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 48.03454065151432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a9cf83982924764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:08.000Z'}}, {'blockNum': '0x979d52', 'uniqueId': '0x34fc1168e71ca74265da13be728b53a65a915cae8bc1bccacac4b9bcb7eeadee:log:167', 'hash': '0x34fc1168e71ca74265da13be728b53a65a915cae8bc1bccacac4b9bcb7eeadee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 48.03454065151432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a9cf83982924764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:08.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd659d9878bed5b5ea9ea793cd5e6468bbd25b087357044cd9cda05feab0ffd63:log:11', 'hash': '0xd659d9878bed5b5ea9ea793cd5e6468bbd25b087357044cd9cda05feab0ffd63', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 807.7768577132912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bca27e44e15f9977e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd659d9878bed5b5ea9ea793cd5e6468bbd25b087357044cd9cda05feab0ffd63:log:17', 'hash': '0xd659d9878bed5b5ea9ea793cd5e6468bbd25b087357044cd9cda05feab0ffd63', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 807.7768577132912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bca27e44e15f9977e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de:log:45', 'hash': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4381.046514006067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed7f3be0b593075bf0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de:log:50', 'hash': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 4381.046514006067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed7f3be0b593075bf0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de:log:51', 'hash': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 4380.608409354666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed79276ad999d96806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de:log:53', 'hash': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x5a6fc2de011d93842411aa5f91a0a4acd3feffde', 'value': 4380.608409354666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed79276ad999d96806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d57', 'uniqueId': '0x2077dd04f8319c1c8df3513b96955cfffc24ed971e4600c7efe7619cbcc9a1ae:log:7', 'hash': '0x2077dd04f8319c1c8df3513b96955cfffc24ed971e4600c7efe7619cbcc9a1ae', 'from': '0x5a6fc2de011d93842411aa5f91a0a4acd3feffde', 'to': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'value': 4380.608409354666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed79276ad999d96806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:21.000Z'}}, {'blockNum': '0x979d58', 'uniqueId': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88:log:13', 'hash': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:28.000Z'}}, {'blockNum': '0x979d58', 'uniqueId': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88:log:18', 'hash': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:28.000Z'}}, {'blockNum': '0x979d58', 'uniqueId': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88:log:19', 'hash': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:28.000Z'}}, {'blockNum': '0x979d58', 'uniqueId': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88:log:20', 'hash': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:28.000Z'}}, {'blockNum': '0x979d59', 'uniqueId': '0xbb074e2cbbb860743d6a8664cb7d174007130275e356194a54d539693767ba32:log:7', 'hash': '0xbb074e2cbbb860743d6a8664cb7d174007130275e356194a54d539693767ba32', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 839.2853400378364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d7f6c820a442b41d9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:34.000Z'}}, {'blockNum': '0x979d59', 'uniqueId': '0xbb074e2cbbb860743d6a8664cb7d174007130275e356194a54d539693767ba32:log:13', 'hash': '0xbb074e2cbbb860743d6a8664cb7d174007130275e356194a54d539693767ba32', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 839.2853400378364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d7f6c820a442b41d9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:34.000Z'}}, {'blockNum': '0x979d59', 'uniqueId': '0x5e427401860b9038b1662dae7026d2738e785c05da6b4883f913d932e6b432a7:log:26', 'hash': '0x5e427401860b9038b1662dae7026d2738e785c05da6b4883f913d932e6b432a7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0eee7bce7d0a676794fb8186af5dbe7b6713806a', 'value': 17121.23428075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a024db3a27b85a4c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:34.000Z'}}, {'blockNum': '0x979d59', 'uniqueId': '0x739ae334aac73084785819a205eb3a26ec6a614f78d368be875074b4dd624cbe:log:29', 'hash': '0x739ae334aac73084785819a205eb3a26ec6a614f78d368be875074b4dd624cbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x23bb4e19767c51afd9bebdd5cb23ced735b97618', 'value': 29170.56418228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062d56e66382c4805000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:34.000Z'}}, {'blockNum': '0x979d5b', 'uniqueId': '0xe47f27d8742a6122f040fe63677e0cd6998bf2749eac354a9e049809b1b82212:log:125', 'hash': '0xe47f27d8742a6122f040fe63677e0cd6998bf2749eac354a9e049809b1b82212', 'from': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 619.1929689690458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21910754a7037196c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:02.000Z'}}, {'blockNum': '0x979d5b', 'uniqueId': '0xe47f27d8742a6122f040fe63677e0cd6998bf2749eac354a9e049809b1b82212:log:131', 'hash': '0xe47f27d8742a6122f040fe63677e0cd6998bf2749eac354a9e049809b1b82212', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 619.1929689690458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21910754a7037196c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:02.000Z'}}, {'blockNum': '0x979d5d', 'uniqueId': '0x9f1667b68e55d37012925c31b0b1532cfa95a2582f1820277aff91118cf4eb0c:log:10', 'hash': '0x9f1667b68e55d37012925c31b0b1532cfa95a2582f1820277aff91118cf4eb0c', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 831.395210001895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d11ed22937c3d2fd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:17.000Z'}}, {'blockNum': '0x979d5d', 'uniqueId': '0x9f1667b68e55d37012925c31b0b1532cfa95a2582f1820277aff91118cf4eb0c:log:16', 'hash': '0x9f1667b68e55d37012925c31b0b1532cfa95a2582f1820277aff91118cf4eb0c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 831.395210001895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d11ed22937c3d2fd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:17.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0x49948aecf8a93ce84074938c33cc366f35824153c5a3d9dd3fcf73f1bc1cdcdf:log:14', 'hash': '0x49948aecf8a93ce84074938c33cc366f35824153c5a3d9dd3fcf73f1bc1cdcdf', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8:log:60', 'hash': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3279.259499035638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1c4de141c889b0a2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8:log:65', 'hash': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'value': 3279.259499035638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1c4de141c889b0a2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8:log:67', 'hash': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8', 'from': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3279.259499035638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1c4de141c889b0a2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8:log:68', 'hash': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3279.259499035638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1c4de141c889b0a2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5f', 'uniqueId': '0x0ad8c5c693b3f2aecbdf18d7a0e2965fb6472c4481b7b920c3852e682aaef325:log:1', 'hash': '0x0ad8c5c693b3f2aecbdf18d7a0e2965fb6472c4481b7b920c3852e682aaef325', 'from': '0x0eee7bce7d0a676794fb8186af5dbe7b6713806a', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 17121.23428075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a024db3a27b85a4c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:45.000Z'}}, {'blockNum': '0x979d5f', 'uniqueId': '0x504ef15ce8a2c470aa79d8764ce973816c715a4714a8291b1768ffde984519b7:log:71', 'hash': '0x504ef15ce8a2c470aa79d8764ce973816c715a4714a8291b1768ffde984519b7', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1653.18209981909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x599e82a8d9ef37511c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:45.000Z'}}, {'blockNum': '0x979d5f', 'uniqueId': '0x504ef15ce8a2c470aa79d8764ce973816c715a4714a8291b1768ffde984519b7:log:77', 'hash': '0x504ef15ce8a2c470aa79d8764ce973816c715a4714a8291b1768ffde984519b7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1653.18209981909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x599e82a8d9ef37511c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:45.000Z'}}, {'blockNum': '0x979d62', 'uniqueId': '0x987cc205d66f89ed398a97415a85afa754c601e22895b2fe84f39b654122f605:log:50', 'hash': '0x987cc205d66f89ed398a97415a85afa754c601e22895b2fe84f39b654122f605', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 3956.342796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd679492b5c07bcc000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:00.000Z'}}, {'blockNum': '0x979d63', 'uniqueId': '0xaae7f8fab5e46f8698305561dcc7f51ab625ea7a73e27c27e218e79ee14c7fff:log:3', 'hash': '0xaae7f8fab5e46f8698305561dcc7f51ab625ea7a73e27c27e218e79ee14c7fff', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 831.5542558625403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d14222df197018802', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:28.000Z'}}, {'blockNum': '0x979d63', 'uniqueId': '0xaae7f8fab5e46f8698305561dcc7f51ab625ea7a73e27c27e218e79ee14c7fff:log:9', 'hash': '0xaae7f8fab5e46f8698305561dcc7f51ab625ea7a73e27c27e218e79ee14c7fff', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 831.5542558625403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d14222df197018802', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:28.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0x9c91ab0b82d9ebcd6ca80a5c7ac8965dfcbe75e4174316ffa4de789ee850a699:log:7', 'hash': '0x9c91ab0b82d9ebcd6ca80a5c7ac8965dfcbe75e4174316ffa4de789ee850a699', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 838.4172411919986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d736066bd3c1478e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0x9c91ab0b82d9ebcd6ca80a5c7ac8965dfcbe75e4174316ffa4de789ee850a699:log:13', 'hash': '0x9c91ab0b82d9ebcd6ca80a5c7ac8965dfcbe75e4174316ffa4de789ee850a699', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 838.4172411919986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d736066bd3c1478e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0xaad1877738b11619867ac7182ea816f183fb1b9db78714c6014c84a87241d646:log:26', 'hash': '0xaad1877738b11619867ac7182ea816f183fb1b9db78714c6014c84a87241d646', 'from': '0x23bb4e19767c51afd9bebdd5cb23ced735b97618', 'to': '0x895a00f33d4257f599779e1a6f96816ea6cca8bd', 'value': 29170.56418228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062d56e66382c4805000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0xac783ed62184696575745086bd34317581eec88582ed767f03facb37ae942404:log:150', 'hash': '0xac783ed62184696575745086bd34317581eec88582ed767f03facb37ae942404', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 305.5043188531024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108fb95f5d9ad7326a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0xac783ed62184696575745086bd34317581eec88582ed767f03facb37ae942404:log:156', 'hash': '0xac783ed62184696575745086bd34317581eec88582ed767f03facb37ae942404', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 305.5043188531024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108fb95f5d9ad7326a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d66', 'uniqueId': '0xc823b5ddc026723a581619e142edb13754056196bb5ebd7ce8ba4d37ff387c9e:log:4', 'hash': '0xc823b5ddc026723a581619e142edb13754056196bb5ebd7ce8ba4d37ff387c9e', 'from': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 826.0871178042024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cc84300d885c1098c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:57.000Z'}}, {'blockNum': '0x979d66', 'uniqueId': '0xc823b5ddc026723a581619e142edb13754056196bb5ebd7ce8ba4d37ff387c9e:log:10', 'hash': '0xc823b5ddc026723a581619e142edb13754056196bb5ebd7ce8ba4d37ff387c9e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 826.0871178042024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cc84300d885c1098c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:57.000Z'}}, {'blockNum': '0x979d68', 'uniqueId': '0xae950fff182c742972a29502f7b501484b0daf9b7aacd80730f651f85d118c43:log:100', 'hash': '0xae950fff182c742972a29502f7b501484b0daf9b7aacd80730f651f85d118c43', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2181.9733773553244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7648f6aa1d3f78665a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:13:13.000Z'}}, {'blockNum': '0x979d68', 'uniqueId': '0xae950fff182c742972a29502f7b501484b0daf9b7aacd80730f651f85d118c43:log:106', 'hash': '0xae950fff182c742972a29502f7b501484b0daf9b7aacd80730f651f85d118c43', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 2181.9733773553244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7648f6aa1d3f78665a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:13:13.000Z'}}, {'blockNum': '0x979d6c', 'uniqueId': '0xdd073f91403d3219c071a9b432aebf38641991631fb257fe5ae12b4b63834252:log:72', 'hash': '0xdd073f91403d3219c071a9b432aebf38641991631fb257fe5ae12b4b63834252', 'from': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 558.7202316255228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e49cd026fcf4211e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:14:56.000Z'}}, {'blockNum': '0x979d6c', 'uniqueId': '0xdd073f91403d3219c071a9b432aebf38641991631fb257fe5ae12b4b63834252:log:78', 'hash': '0xdd073f91403d3219c071a9b432aebf38641991631fb257fe5ae12b4b63834252', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 558.7202316255228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e49cd026fcf4211e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:14:56.000Z'}}, {'blockNum': '0x979d74', 'uniqueId': '0x7880bbb44fe0b6d3995e667b3b4ff24642711fdaec054ef36d6141cc224e4244:log:8', 'hash': '0x7880bbb44fe0b6d3995e667b3b4ff24642711fdaec054ef36d6141cc224e4244', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 451.64481250908733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187bd4b40f6c0caeba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:16:43.000Z'}}, {'blockNum': '0x979d74', 'uniqueId': '0x7880bbb44fe0b6d3995e667b3b4ff24642711fdaec054ef36d6141cc224e4244:log:14', 'hash': '0x7880bbb44fe0b6d3995e667b3b4ff24642711fdaec054ef36d6141cc224e4244', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 451.64481250908733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187bd4b40f6c0caeba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:16:43.000Z'}}, {'blockNum': '0x979d75', 'uniqueId': '0x3de2c2fd7718f9bd72ff62b3b6d8cf1978f60e72c9ad405bd82125f8b9fd6a1c:log:141', 'hash': '0x3de2c2fd7718f9bd72ff62b3b6d8cf1978f60e72c9ad405bd82125f8b9fd6a1c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 436.2800825085805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a69a3787d60dd4a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:16:51.000Z'}}, {'blockNum': '0x979d75', 'uniqueId': '0x3de2c2fd7718f9bd72ff62b3b6d8cf1978f60e72c9ad405bd82125f8b9fd6a1c:log:147', 'hash': '0x3de2c2fd7718f9bd72ff62b3b6d8cf1978f60e72c9ad405bd82125f8b9fd6a1c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'value': 436.2800825085805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a69a3787d60dd4a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:16:51.000Z'}}, {'blockNum': '0x979d78', 'uniqueId': '0x580580fac056a4b574df9fe4afd5bb6d99bfee401f967389c567e4b9c3b0e21b:log:4', 'hash': '0x580580fac056a4b574df9fe4afd5bb6d99bfee401f967389c567e4b9c3b0e21b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x758316d92d49fa4bad98675860a8b64e35b70fb8', 'value': 210.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b66d8812680088000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:17:19.000Z'}}, {'blockNum': '0x979d81', 'uniqueId': '0x040a2c26ca29b14b381982a0c1b37e7f8e3f0ce704c5fab56a96dd00bea8fde2:log:16', 'hash': '0x040a2c26ca29b14b381982a0c1b37e7f8e3f0ce704c5fab56a96dd00bea8fde2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x206fa533745f133904480948283f3515dc625e7b', 'value': 2440.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x84465b7c1d30240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:19:26.000Z'}}, {'blockNum': '0x979d84', 'uniqueId': '0x0916b25e264823b31764844a35fc57865c6224974dd470e98023dd7f98cf3f8a:log:4', 'hash': '0x0916b25e264823b31764844a35fc57865c6224974dd470e98023dd7f98cf3f8a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1395.7242773511148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ba990bb62fdfad307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:19:58.000Z'}}, {'blockNum': '0x979d84', 'uniqueId': '0x0916b25e264823b31764844a35fc57865c6224974dd470e98023dd7f98cf3f8a:log:10', 'hash': '0x0916b25e264823b31764844a35fc57865c6224974dd470e98023dd7f98cf3f8a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 1395.7242773511148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ba990bb62fdfad307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:19:58.000Z'}}, {'blockNum': '0x979d86', 'uniqueId': '0x5947a165bb4b92efcb6745cf60802002301cc8e742b761e9d0af1f983ddd7c24:log:20', 'hash': '0x5947a165bb4b92efcb6745cf60802002301cc8e742b761e9d0af1f983ddd7c24', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 747.975159371972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288c3d9481ae952f2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:20:34.000Z'}}, {'blockNum': '0x979d86', 'uniqueId': '0x5947a165bb4b92efcb6745cf60802002301cc8e742b761e9d0af1f983ddd7c24:log:26', 'hash': '0x5947a165bb4b92efcb6745cf60802002301cc8e742b761e9d0af1f983ddd7c24', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 747.975159371972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288c3d9481ae952f2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:20:34.000Z'}}, {'blockNum': '0x979d8a', 'uniqueId': '0x7a9001e7682c11951f070c9c586bfc27fd92e42334dedfdb28ae148444b1131b:log:50', 'hash': '0x7a9001e7682c11951f070c9c586bfc27fd92e42334dedfdb28ae148444b1131b', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 703.3120262956904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26206a419beed1591b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:21:14.000Z'}}, {'blockNum': '0x979d8a', 'uniqueId': '0x7a9001e7682c11951f070c9c586bfc27fd92e42334dedfdb28ae148444b1131b:log:56', 'hash': '0x7a9001e7682c11951f070c9c586bfc27fd92e42334dedfdb28ae148444b1131b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'value': 703.3120262956904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26206a419beed1591b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:21:14.000Z'}}, {'blockNum': '0x979d8e', 'uniqueId': '0xa717b7bfeb8c2f1784896ac8b2546b197e236918c4fb3f4fc5e974a5889856e1:log:60', 'hash': '0xa717b7bfeb8c2f1784896ac8b2546b197e236918c4fb3f4fc5e974a5889856e1', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 879.7415214736579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fb0ddbcb5bf110f4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:22:15.000Z'}}, {'blockNum': '0x979d8e', 'uniqueId': '0xa717b7bfeb8c2f1784896ac8b2546b197e236918c4fb3f4fc5e974a5889856e1:log:66', 'hash': '0xa717b7bfeb8c2f1784896ac8b2546b197e236918c4fb3f4fc5e974a5889856e1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 879.7415214736579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fb0ddbcb5bf110f4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:22:15.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0x7fc89d63f8da933b2a3cc61282f8efeb60b57163dc00661e5a1a908ab714fbd0:log:64', 'hash': '0x7fc89d63f8da933b2a3cc61282f8efeb60b57163dc00661e5a1a908ab714fbd0', 'from': '0xfc4f81d2a20196fd849184d003d59527ddd6ba92', 'to': '0x3c963a8e3823e30466733fe8210a89b81daebec3', 'value': 1626.09906223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5826a861a7f6f6dc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5:log:99', 'hash': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 837.6838544617927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d6932e364cb2de090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5:log:101', 'hash': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 837.6838544617927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d6932e364cb2de090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5:log:106', 'hash': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 837.6838544617927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d6932e364cb2de090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5:log:108', 'hash': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 837.6838544617927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d6932e364cb2de090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d95', 'uniqueId': '0x7b3f3ac7504296852dc9bd0c0b271d953b5b434a6486c0e7ec665743b12b0014:log:78', 'hash': '0x7b3f3ac7504296852dc9bd0c0b271d953b5b434a6486c0e7ec665743b12b0014', 'from': '0x206fa533745f133904480948283f3515dc625e7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2440.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x84465b7c1d30240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:25:43.000Z'}}, {'blockNum': '0x979dac', 'uniqueId': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e:log:43', 'hash': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 717.3504468052608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26e33cbeaf0f529342', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:30:00.000Z'}}, {'blockNum': '0x979dac', 'uniqueId': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e:log:45', 'hash': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 717.3504468052608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26e33cbeaf0f529342', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:30:00.000Z'}}, {'blockNum': '0x979dac', 'uniqueId': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e:log:50', 'hash': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 717.3504468052608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26e33cbeaf0f529342', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:30:00.000Z'}}, {'blockNum': '0x979dac', 'uniqueId': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e:log:52', 'hash': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 717.3504468052608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26e33cbeaf0f529342', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:30:00.000Z'}}, {'blockNum': '0x979dbc', 'uniqueId': '0x249eb19ac463b9d610121302c1cb7d0bac0b46922058a3a3713d057ce13de6a6:log:116', 'hash': '0x249eb19ac463b9d610121302c1cb7d0bac0b46922058a3a3713d057ce13de6a6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 872.1941767660342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f48202eaf97b9541d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:33:37.000Z'}}, {'blockNum': '0x979dbc', 'uniqueId': '0x249eb19ac463b9d610121302c1cb7d0bac0b46922058a3a3713d057ce13de6a6:log:122', 'hash': '0x249eb19ac463b9d610121302c1cb7d0bac0b46922058a3a3713d057ce13de6a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3a706af4bfc1d30394256a434e092e23f611e39b', 'value': 872.1941767660342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f48202eaf97b9541d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:33:37.000Z'}}, {'blockNum': '0x979dc0', 'uniqueId': '0x3a131ea93cab741856aa7bc8f5df8374f68ab57850d99cd5b56aa8554d739273:log:26', 'hash': '0x3a131ea93cab741856aa7bc8f5df8374f68ab57850d99cd5b56aa8554d739273', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x38c50d46b9d8b040f3007dded8f0def82e409989', 'value': 267.296747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7d7ccf329875b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:35:45.000Z'}}, {'blockNum': '0x979dc4', 'uniqueId': '0x59627793242a4019963097ca6f2b7794194e7adc39d8dbca9ee9244bcb1dda1d:log:111', 'hash': '0x59627793242a4019963097ca6f2b7794194e7adc39d8dbca9ee9244bcb1dda1d', 'from': '0x3a706af4bfc1d30394256a434e092e23f611e39b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 311.78692163498374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e6e9a94f21c2c336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:37:38.000Z'}}, {'blockNum': '0x979dc4', 'uniqueId': '0x59627793242a4019963097ca6f2b7794194e7adc39d8dbca9ee9244bcb1dda1d:log:117', 'hash': '0x59627793242a4019963097ca6f2b7794194e7adc39d8dbca9ee9244bcb1dda1d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 311.78692163498374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e6e9a94f21c2c336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:37:38.000Z'}}, {'blockNum': '0x979dca', 'uniqueId': '0xa2985d9ffef14ee45eb0cc5f8155b275e0fd1998329b16543c25fb924fece9f0:log:47', 'hash': '0xa2985d9ffef14ee45eb0cc5f8155b275e0fd1998329b16543c25fb924fece9f0', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 553.5221739463957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e01a9cc84a0e505de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:38:14.000Z'}}, {'blockNum': '0x979dca', 'uniqueId': '0xa2985d9ffef14ee45eb0cc5f8155b275e0fd1998329b16543c25fb924fece9f0:log:53', 'hash': '0xa2985d9ffef14ee45eb0cc5f8155b275e0fd1998329b16543c25fb924fece9f0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 553.5221739463957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e01a9cc84a0e505de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:38:14.000Z'}}, {'blockNum': '0x979dcc', 'uniqueId': '0x9fba8059c20ba079cd9f28ababeb64e101512686065c7539cfb40ac0acbc2abb:log:118', 'hash': '0x9fba8059c20ba079cd9f28ababeb64e101512686065c7539cfb40ac0acbc2abb', 'from': '0x3a706af4bfc1d30394256a434e092e23f611e39b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 325.24471721539464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11a1ad5b1647f99756', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:39:03.000Z'}}, {'blockNum': '0x979dcc', 'uniqueId': '0x9fba8059c20ba079cd9f28ababeb64e101512686065c7539cfb40ac0acbc2abb:log:124', 'hash': '0x9fba8059c20ba079cd9f28ababeb64e101512686065c7539cfb40ac0acbc2abb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 325.24471721539464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11a1ad5b1647f99756', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:39:03.000Z'}}, {'blockNum': '0x979dd0', 'uniqueId': '0x145573e8183001a172bef97a9e01a3828d426e7a0fa87879b4f952be4b251302:log:119', 'hash': '0x145573e8183001a172bef97a9e01a3828d426e7a0fa87879b4f952be4b251302', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1736.167726612565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5e1e2ad4be477135b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:39:48.000Z'}}, {'blockNum': '0x979dd0', 'uniqueId': '0x145573e8183001a172bef97a9e01a3828d426e7a0fa87879b4f952be4b251302:log:125', 'hash': '0x145573e8183001a172bef97a9e01a3828d426e7a0fa87879b4f952be4b251302', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 1736.167726612565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5e1e2ad4be477135b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:39:48.000Z'}}, {'blockNum': '0x979dd1', 'uniqueId': '0xab7eccbeb3d47a7ffcdc687349837abfbaa0f23e8b5505cb84512cfe288e85ae:log:6', 'hash': '0xab7eccbeb3d47a7ffcdc687349837abfbaa0f23e8b5505cb84512cfe288e85ae', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 870.815888535792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f34ff84d7ce0b93d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:40:09.000Z'}}, {'blockNum': '0x979dd1', 'uniqueId': '0xab7eccbeb3d47a7ffcdc687349837abfbaa0f23e8b5505cb84512cfe288e85ae:log:12', 'hash': '0xab7eccbeb3d47a7ffcdc687349837abfbaa0f23e8b5505cb84512cfe288e85ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 870.815888535792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f34ff84d7ce0b93d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:40:09.000Z'}}, {'blockNum': '0x979dd2', 'uniqueId': '0xefa14a2f4b55b1d18d397730bb016995a10e2de541b18fdb6e4f5fc719e0a85e:log:80', 'hash': '0xefa14a2f4b55b1d18d397730bb016995a10e2de541b18fdb6e4f5fc719e0a85e', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 47.70690192594308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029610f68a263c6a7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:40:26.000Z'}}, {'blockNum': '0x979dd2', 'uniqueId': '0xefa14a2f4b55b1d18d397730bb016995a10e2de541b18fdb6e4f5fc719e0a85e:log:86', 'hash': '0xefa14a2f4b55b1d18d397730bb016995a10e2de541b18fdb6e4f5fc719e0a85e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 47.70690192594308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029610f68a263c6a7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:40:26.000Z'}}, {'blockNum': '0x979dda', 'uniqueId': '0x00afaa2b7b71a4f760cb78c15508cd1c47a9a1c4b3516371f398dff82de5db2c:log:82', 'hash': '0x00afaa2b7b71a4f760cb78c15508cd1c47a9a1c4b3516371f398dff82de5db2c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 436.04715310166443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a35eaf7819144dd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:42:29.000Z'}}, {'blockNum': '0x979dda', 'uniqueId': '0x00afaa2b7b71a4f760cb78c15508cd1c47a9a1c4b3516371f398dff82de5db2c:log:88', 'hash': '0x00afaa2b7b71a4f760cb78c15508cd1c47a9a1c4b3516371f398dff82de5db2c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 436.04715310166443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a35eaf7819144dd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:42:29.000Z'}}, {'blockNum': '0x979de1', 'uniqueId': '0x0826641993fc15e407499ec9d06289d66b9d1f14a60616133c04a07085f33142:log:26', 'hash': '0x0826641993fc15e407499ec9d06289d66b9d1f14a60616133c04a07085f33142', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 553.4475084019768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e00a08899dcd9a14b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:44:00.000Z'}}, {'blockNum': '0x979de1', 'uniqueId': '0x0826641993fc15e407499ec9d06289d66b9d1f14a60616133c04a07085f33142:log:32', 'hash': '0x0826641993fc15e407499ec9d06289d66b9d1f14a60616133c04a07085f33142', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 553.4475084019768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e00a08899dcd9a14b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:44:00.000Z'}}, {'blockNum': '0x979de4', 'uniqueId': '0xcb60b0565d9aad16f8ebc07622ec641ac17b2e7a7d7b6b5859522b2a78e084cd:log:25', 'hash': '0xcb60b0565d9aad16f8ebc07622ec641ac17b2e7a7d7b6b5859522b2a78e084cd', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 135.9639112024287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075ee0d8def5847774', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:44:26.000Z'}}, {'blockNum': '0x979de4', 'uniqueId': '0xcb60b0565d9aad16f8ebc07622ec641ac17b2e7a7d7b6b5859522b2a78e084cd:log:31', 'hash': '0xcb60b0565d9aad16f8ebc07622ec641ac17b2e7a7d7b6b5859522b2a78e084cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 135.9639112024287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075ee0d8def5847774', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:44:26.000Z'}}, {'blockNum': '0x979df3', 'uniqueId': '0xebd047b61358a8f9c44dae8cab68093eef3d67b5ea986f0b465ce45d2ec39794:log:21', 'hash': '0xebd047b61358a8f9c44dae8cab68093eef3d67b5ea986f0b465ce45d2ec39794', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 839.6850427549628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d84f8898b2a3f079e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:47:28.000Z'}}, {'blockNum': '0x979df3', 'uniqueId': '0xebd047b61358a8f9c44dae8cab68093eef3d67b5ea986f0b465ce45d2ec39794:log:27', 'hash': '0xebd047b61358a8f9c44dae8cab68093eef3d67b5ea986f0b465ce45d2ec39794', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 839.6850427549628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d84f8898b2a3f079e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:47:28.000Z'}}, {'blockNum': '0x979dfe', 'uniqueId': '0x543c5319bd59e798daca42847c089acec1b1ca0cc2676ff7d54284adb20029f1:log:52', 'hash': '0x543c5319bd59e798daca42847c089acec1b1ca0cc2676ff7d54284adb20029f1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 436.0456480379261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a359569f2397b37b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:50:04.000Z'}}, {'blockNum': '0x979dfe', 'uniqueId': '0x543c5319bd59e798daca42847c089acec1b1ca0cc2676ff7d54284adb20029f1:log:58', 'hash': '0x543c5319bd59e798daca42847c089acec1b1ca0cc2676ff7d54284adb20029f1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'value': 436.0456480379261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a359569f2397b37b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:50:04.000Z'}}, {'blockNum': '0x979e0f', 'uniqueId': '0x7f0b33fb403642593c25a2e0e8f06ed8c549254a9789c4d28c292c865c284b22:log:65', 'hash': '0x7f0b33fb403642593c25a2e0e8f06ed8c549254a9789c4d28c292c865c284b22', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 436.0041024708647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a2c5bd2604e77a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:52:56.000Z'}}, {'blockNum': '0x979e0f', 'uniqueId': '0x7f0b33fb403642593c25a2e0e8f06ed8c549254a9789c4d28c292c865c284b22:log:71', 'hash': '0x7f0b33fb403642593c25a2e0e8f06ed8c549254a9789c4d28c292c865c284b22', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 436.0041024708647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a2c5bd2604e77a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:52:56.000Z'}}, {'blockNum': '0x979e17', 'uniqueId': '0x5e7fe1cb6cd0d0bdfc6518f9bea3ee95eb53caa50dc289ebe8a084f1e7e44f1a:log:27', 'hash': '0x5e7fe1cb6cd0d0bdfc6518f9bea3ee95eb53caa50dc289ebe8a084f1e7e44f1a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 697.5201440511072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25d0095b64f58bc1f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:55:18.000Z'}}, {'blockNum': '0x979e17', 'uniqueId': '0x5e7fe1cb6cd0d0bdfc6518f9bea3ee95eb53caa50dc289ebe8a084f1e7e44f1a:log:33', 'hash': '0x5e7fe1cb6cd0d0bdfc6518f9bea3ee95eb53caa50dc289ebe8a084f1e7e44f1a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 697.5201440511072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25d0095b64f58bc1f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:55:18.000Z'}}, {'blockNum': '0x979e1d', 'uniqueId': '0xdbe78c8e4c1b7de66605dddbd2c94e8b7974c8d2575336f88201a79b0134f003:log:7', 'hash': '0xdbe78c8e4c1b7de66605dddbd2c94e8b7974c8d2575336f88201a79b0134f003', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 800.4609952115718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b64a0ba1eed6574f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:56:33.000Z'}}, {'blockNum': '0x979e1d', 'uniqueId': '0xdbe78c8e4c1b7de66605dddbd2c94e8b7974c8d2575336f88201a79b0134f003:log:13', 'hash': '0xdbe78c8e4c1b7de66605dddbd2c94e8b7974c8d2575336f88201a79b0134f003', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'value': 800.4609952115718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b64a0ba1eed6574f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:56:33.000Z'}}, {'blockNum': '0x979e1f', 'uniqueId': '0x4350f2195733db8b78e27f4f12a2806da73247485fec9f3e2dfecf96e3d154b8:log:34', 'hash': '0x4350f2195733db8b78e27f4f12a2806da73247485fec9f3e2dfecf96e3d154b8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 871.5755548937807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f3f8a655ee5c5d47f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:56:56.000Z'}}, {'blockNum': '0x979e1f', 'uniqueId': '0x4350f2195733db8b78e27f4f12a2806da73247485fec9f3e2dfecf96e3d154b8:log:40', 'hash': '0x4350f2195733db8b78e27f4f12a2806da73247485fec9f3e2dfecf96e3d154b8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 871.5755548937807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f3f8a655ee5c5d47f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:56:56.000Z'}}, {'blockNum': '0x979e24', 'uniqueId': '0x75c496b3e298212a583f972315f530c051a727f54adb67078875d0affe44673e:log:22', 'hash': '0x75c496b3e298212a583f972315f530c051a727f54adb67078875d0affe44673e', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 578.2344559871192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f589d761a537bc3aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:57:46.000Z'}}, {'blockNum': '0x979e24', 'uniqueId': '0x75c496b3e298212a583f972315f530c051a727f54adb67078875d0affe44673e:log:28', 'hash': '0x75c496b3e298212a583f972315f530c051a727f54adb67078875d0affe44673e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 578.2344559871192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f589d761a537bc3aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:57:46.000Z'}}, {'blockNum': '0x979e51', 'uniqueId': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39:log:55', 'hash': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1270.5331259171603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e0306a72dafc3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:05:56.000Z'}}, {'blockNum': '0x979e51', 'uniqueId': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39:log:60', 'hash': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1270.5331259171603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e0306a72dafc3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:05:56.000Z'}}, {'blockNum': '0x979e51', 'uniqueId': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39:log:62', 'hash': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1270.5331259171603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e0306a72dafc3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:05:56.000Z'}}, {'blockNum': '0x979e51', 'uniqueId': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39:log:64', 'hash': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 1270.5331259171603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e0306a72dafc3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:05:56.000Z'}}, {'blockNum': '0x979e53', 'uniqueId': '0xbda8788eeb76f90850804291af0534ab18652f7b02c23a07b14a866b5e569449:log:13', 'hash': '0xbda8788eeb76f90850804291af0534ab18652f7b02c23a07b14a866b5e569449', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 730.5761608144661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x279ac7eb809ae8138d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:06:25.000Z'}}, {'blockNum': '0x979e53', 'uniqueId': '0xbda8788eeb76f90850804291af0534ab18652f7b02c23a07b14a866b5e569449:log:19', 'hash': '0xbda8788eeb76f90850804291af0534ab18652f7b02c23a07b14a866b5e569449', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 730.5761608144661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x279ac7eb809ae8138d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:06:25.000Z'}}, {'blockNum': '0x979e5b', 'uniqueId': '0x7382a8ed2ecff672cb38080ab6340e61223d8dbe672c73b8333203375247bf30:log:84', 'hash': '0x7382a8ed2ecff672cb38080ab6340e61223d8dbe672c73b8333203375247bf30', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 34.86684797318217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e3dfed7fc7125851', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:06:55.000Z'}}, {'blockNum': '0x979e5b', 'uniqueId': '0x7382a8ed2ecff672cb38080ab6340e61223d8dbe672c73b8333203375247bf30:log:90', 'hash': '0x7382a8ed2ecff672cb38080ab6340e61223d8dbe672c73b8333203375247bf30', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa260306fe5e57cae7bdcc7ff0488061eace32b58', 'value': 34.86684797318217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e3dfed7fc7125851', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:06:55.000Z'}}, {'blockNum': '0x979e61', 'uniqueId': '0x3056086934524e3d9abdf965cc6016d5cb10c18b494afe8d3af9cc13ab800ad6:log:53', 'hash': '0x3056086934524e3d9abdf965cc6016d5cb10c18b494afe8d3af9cc13ab800ad6', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 175.00857254472206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x097cbb597e88569689', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:07:41.000Z'}}, {'blockNum': '0x979e61', 'uniqueId': '0x3056086934524e3d9abdf965cc6016d5cb10c18b494afe8d3af9cc13ab800ad6:log:59', 'hash': '0x3056086934524e3d9abdf965cc6016d5cb10c18b494afe8d3af9cc13ab800ad6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 175.00857254472206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x097cbb597e88569689', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:07:41.000Z'}}, {'blockNum': '0x979e66', 'uniqueId': '0x502a61cc6b33aafac65862eca33ee9e32e8addb7276eeeaeda28eb242bfe68db:log:31', 'hash': '0x502a61cc6b33aafac65862eca33ee9e32e8addb7276eeeaeda28eb242bfe68db', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 174.84555127629102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x097a782e83acac6588', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:08:56.000Z'}}, {'blockNum': '0x979e66', 'uniqueId': '0x502a61cc6b33aafac65862eca33ee9e32e8addb7276eeeaeda28eb242bfe68db:log:37', 'hash': '0x502a61cc6b33aafac65862eca33ee9e32e8addb7276eeeaeda28eb242bfe68db', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 174.84555127629102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x097a782e83acac6588', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:08:56.000Z'}}, {'blockNum': '0x979e6b', 'uniqueId': '0x6fba49127026be243b4cf7dd4bc005192a1347a6e30c880852cc98579ce5006c:log:78', 'hash': '0x6fba49127026be243b4cf7dd4bc005192a1347a6e30c880852cc98579ce5006c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 348.6804616756336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e6e9d881775853bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:10:26.000Z'}}, {'blockNum': '0x979e6b', 'uniqueId': '0x6fba49127026be243b4cf7dd4bc005192a1347a6e30c880852cc98579ce5006c:log:84', 'hash': '0x6fba49127026be243b4cf7dd4bc005192a1347a6e30c880852cc98579ce5006c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 348.6804616756336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e6e9d881775853bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:10:26.000Z'}}, {'blockNum': '0x979e8d', 'uniqueId': '0x7399b4d84e5b60751925a8e206858df1a0bdd7bc8a8f16a0d3623aa1dce47a45:log:39', 'hash': '0x7399b4d84e5b60751925a8e206858df1a0bdd7bc8a8f16a0d3623aa1dce47a45', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 87.16596596643095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b9abb838ace7b46f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:16:16.000Z'}}, {'blockNum': '0x979e8d', 'uniqueId': '0x7399b4d84e5b60751925a8e206858df1a0bdd7bc8a8f16a0d3623aa1dce47a45:log:45', 'hash': '0x7399b4d84e5b60751925a8e206858df1a0bdd7bc8a8f16a0d3623aa1dce47a45', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 87.16596596643095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b9abb838ace7b46f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:16:16.000Z'}}, {'blockNum': '0x979e8d', 'uniqueId': '0x69729d5a0d3ca8226b28ed536e6cc7d7f310ec692089bcdc1a4565c817a713da:log:154', 'hash': '0x69729d5a0d3ca8226b28ed536e6cc7d7f310ec692089bcdc1a4565c817a713da', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 490.11442349651446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a91b4376ebd1b9126', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:16:16.000Z'}}, {'blockNum': '0x979e8d', 'uniqueId': '0x69729d5a0d3ca8226b28ed536e6cc7d7f310ec692089bcdc1a4565c817a713da:log:160', 'hash': '0x69729d5a0d3ca8226b28ed536e6cc7d7f310ec692089bcdc1a4565c817a713da', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 490.11442349651446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a91b4376ebd1b9126', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:16:16.000Z'}}, {'blockNum': '0x979e96', 'uniqueId': '0xb282e2a39524fc715af02b920a03db5211060f3de917ceff2a50a8ab6e6b7807:log:44', 'hash': '0xb282e2a39524fc715af02b920a03db5211060f3de917ceff2a50a8ab6e6b7807', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 782.8214816629057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a6fd49601a675aaca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:18:38.000Z'}}, {'blockNum': '0x979e96', 'uniqueId': '0xb282e2a39524fc715af02b920a03db5211060f3de917ceff2a50a8ab6e6b7807:log:50', 'hash': '0xb282e2a39524fc715af02b920a03db5211060f3de917ceff2a50a8ab6e6b7807', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 782.8214816629057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a6fd49601a675aaca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:18:38.000Z'}}, {'blockNum': '0x979e9a', 'uniqueId': '0xd84db712f04854c62830423efa2c1900c7694cc081fa02afc6dfb4bfc1fa0383:log:18', 'hash': '0xd84db712f04854c62830423efa2c1900c7694cc081fa02afc6dfb4bfc1fa0383', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 527.1568020972259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c93c52e82d00bdd9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:20:23.000Z'}}, {'blockNum': '0x979e9a', 'uniqueId': '0xd84db712f04854c62830423efa2c1900c7694cc081fa02afc6dfb4bfc1fa0383:log:24', 'hash': '0xd84db712f04854c62830423efa2c1900c7694cc081fa02afc6dfb4bfc1fa0383', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 527.1568020972259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c93c52e82d00bdd9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:20:23.000Z'}}, {'blockNum': '0x979e9c', 'uniqueId': '0x7ea3a0e13826c4b12d96ef79c63f57c529b75e2b042d83208b3dcbacc475e95f:log:21', 'hash': '0x7ea3a0e13826c4b12d96ef79c63f57c529b75e2b042d83208b3dcbacc475e95f', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 477.4119823627521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e16c148596e4739f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:20:43.000Z'}}, {'blockNum': '0x979e9c', 'uniqueId': '0x7ea3a0e13826c4b12d96ef79c63f57c529b75e2b042d83208b3dcbacc475e95f:log:27', 'hash': '0x7ea3a0e13826c4b12d96ef79c63f57c529b75e2b042d83208b3dcbacc475e95f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 477.4119823627521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e16c148596e4739f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:20:43.000Z'}}, {'blockNum': '0x979ead', 'uniqueId': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5:log:74', 'hash': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3344.39048326379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb54cbdd1302f2e7aef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:25:22.000Z'}}, {'blockNum': '0x979ead', 'uniqueId': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5:log:79', 'hash': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 3344.39048326379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb54cbdd1302f2e7aef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:25:22.000Z'}}, {'blockNum': '0x979ead', 'uniqueId': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5:log:80', 'hash': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3344.0560442154633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb54819a6a54cab04fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:25:22.000Z'}}, {'blockNum': '0x979ead', 'uniqueId': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5:log:82', 'hash': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf120b35dca4751fcf2163edf3e79acc3edf96c20', 'value': 3344.0560442154633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb54819a6a54cab04fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:25:22.000Z'}}, {'blockNum': '0x979eb2', 'uniqueId': '0x224691c98cce5b3ce83e5544bdf0351685ccfa6d4f8435e33affff5a091317f7:log:75', 'hash': '0x224691c98cce5b3ce83e5544bdf0351685ccfa6d4f8435e33affff5a091317f7', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 881.7269466156666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fcc6b625b7c9f9dae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:04.000Z'}}, {'blockNum': '0x979eb2', 'uniqueId': '0x224691c98cce5b3ce83e5544bdf0351685ccfa6d4f8435e33affff5a091317f7:log:81', 'hash': '0x224691c98cce5b3ce83e5544bdf0351685ccfa6d4f8435e33affff5a091317f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 881.7269466156666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fcc6b625b7c9f9dae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:04.000Z'}}, {'blockNum': '0x979eb2', 'uniqueId': '0x6846c7ae47a2b435af1921b0c5530db674b76068d8b57685fa134e1fd3a43a18:log:113', 'hash': '0x6846c7ae47a2b435af1921b0c5530db674b76068d8b57685fa134e1fd3a43a18', 'from': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 101.61503498609025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0582311ff0b8cca75f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:04.000Z'}}, {'blockNum': '0x979eb2', 'uniqueId': '0x6846c7ae47a2b435af1921b0c5530db674b76068d8b57685fa134e1fd3a43a18:log:117', 'hash': '0x6846c7ae47a2b435af1921b0c5530db674b76068d8b57685fa134e1fd3a43a18', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 101.61503498609025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0582311ff0b8cca75f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:04.000Z'}}, {'blockNum': '0x979eb3', 'uniqueId': '0xb00edbe103b3caad6e2608685cee03b8492ab5b89a8bed57d79de99b2421f33f:log:141', 'hash': '0xb00edbe103b3caad6e2608685cee03b8492ab5b89a8bed57d79de99b2421f33f', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 445.0779410670696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1820b27d46c8ed3039', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:09.000Z'}}, {'blockNum': '0x979eb3', 'uniqueId': '0xb00edbe103b3caad6e2608685cee03b8492ab5b89a8bed57d79de99b2421f33f:log:147', 'hash': '0xb00edbe103b3caad6e2608685cee03b8492ab5b89a8bed57d79de99b2421f33f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 445.0779410670696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1820b27d46c8ed3039', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:09.000Z'}}, {'blockNum': '0x979ebf', 'uniqueId': '0xc82d10f5210625b5e76a8bbbec713035cf64816dbdaff8a6ec27e9e49329d042:log:123', 'hash': '0xc82d10f5210625b5e76a8bbbec713035cf64816dbdaff8a6ec27e9e49329d042', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 867.7206843678837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0a0b250d268ef65b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:25.000Z'}}, {'blockNum': '0x979ebf', 'uniqueId': '0xc82d10f5210625b5e76a8bbbec713035cf64816dbdaff8a6ec27e9e49329d042:log:129', 'hash': '0xc82d10f5210625b5e76a8bbbec713035cf64816dbdaff8a6ec27e9e49329d042', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 867.7206843678837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0a0b250d268ef65b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:25.000Z'}}, {'blockNum': '0x979ec2', 'uniqueId': '0x47d9cbca2fdb054c460e70849c84d366a7d3715206f123b7ffd96afb77ffd6ea:log:11', 'hash': '0x47d9cbca2fdb054c460e70849c84d366a7d3715206f123b7ffd96afb77ffd6ea', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1111.896326400621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c46a949c83ad02b0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:45.000Z'}}, {'blockNum': '0x979ec2', 'uniqueId': '0x47d9cbca2fdb054c460e70849c84d366a7d3715206f123b7ffd96afb77ffd6ea:log:17', 'hash': '0x47d9cbca2fdb054c460e70849c84d366a7d3715206f123b7ffd96afb77ffd6ea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 1111.896326400621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c46a949c83ad02b0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:45.000Z'}}, {'blockNum': '0x979ec3', 'uniqueId': '0xad8c1bd9c7e0be66856e77d980395a7c50140811aba9589856ab89f04f827b01:log:4', 'hash': '0xad8c1bd9c7e0be66856e77d980395a7c50140811aba9589856ab89f04f827b01', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 452.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x188df1a92b052f0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:49.000Z'}}, {'blockNum': '0x979ec3', 'uniqueId': '0xdac8bf6e36169c18271a300fa07666abf58cad12a7009817b1ae66a695a57ea1:log:154', 'hash': '0xdac8bf6e36169c18271a300fa07666abf58cad12a7009817b1ae66a695a57ea1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 609.8452548556805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x210f4d94314e67a740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:49.000Z'}}, {'blockNum': '0x979ec3', 'uniqueId': '0xdac8bf6e36169c18271a300fa07666abf58cad12a7009817b1ae66a695a57ea1:log:160', 'hash': '0xdac8bf6e36169c18271a300fa07666abf58cad12a7009817b1ae66a695a57ea1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 609.8452548556805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x210f4d94314e67a740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:49.000Z'}}, {'blockNum': '0x979ec5', 'uniqueId': '0x8bec661954e4e105beac7b84b0f002d17ed75fc858e46f1935c736a62839a04b:log:129', 'hash': '0x8bec661954e4e105beac7b84b0f002d17ed75fc858e46f1935c736a62839a04b', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 881.2298268528374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fc5854291225bbf2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:34.000Z'}}, {'blockNum': '0x979ec5', 'uniqueId': '0x8bec661954e4e105beac7b84b0f002d17ed75fc858e46f1935c736a62839a04b:log:135', 'hash': '0x8bec661954e4e105beac7b84b0f002d17ed75fc858e46f1935c736a62839a04b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 881.2298268528374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fc5854291225bbf2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:34.000Z'}}, {'blockNum': '0x979ec6', 'uniqueId': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72:log:135', 'hash': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 511.7796267023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbe5e7af60bfe3633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:39.000Z'}}, {'blockNum': '0x979ec6', 'uniqueId': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72:log:140', 'hash': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 511.7796267023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbe5e7af60bfe3633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:39.000Z'}}, {'blockNum': '0x979ec6', 'uniqueId': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72:log:142', 'hash': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 511.7796267023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbe5e7af60bfe3633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:39.000Z'}}, {'blockNum': '0x979ec6', 'uniqueId': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72:log:144', 'hash': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 511.7796267023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbe5e7af60bfe3633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:39.000Z'}}, {'blockNum': '0x979ed5', 'uniqueId': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024:log:90', 'hash': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 928.6264556920712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x325747e960cbecbc6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:32:49.000Z'}}, {'blockNum': '0x979ed5', 'uniqueId': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024:log:92', 'hash': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 928.6264556920712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x325747e960cbecbc6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:32:49.000Z'}}, {'blockNum': '0x979ed5', 'uniqueId': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024:log:97', 'hash': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 928.6264556920712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x325747e960cbecbc6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:32:49.000Z'}}, {'blockNum': '0x979ed5', 'uniqueId': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024:log:99', 'hash': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 928.6264556920712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x325747e960cbecbc6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:32:49.000Z'}}, {'blockNum': '0x979ee2', 'uniqueId': '0x2a13d7f1c32b4c5a94ea057ee80f377c0123dbab3ee9f1c74ce6552a634aff9e:log:114', 'hash': '0x2a13d7f1c32b4c5a94ea057ee80f377c0123dbab3ee9f1c74ce6552a634aff9e', 'from': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 932.5495146075652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x328db96aad2ee07573', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:36:24.000Z'}}, {'blockNum': '0x979ee2', 'uniqueId': '0x2a13d7f1c32b4c5a94ea057ee80f377c0123dbab3ee9f1c74ce6552a634aff9e:log:120', 'hash': '0x2a13d7f1c32b4c5a94ea057ee80f377c0123dbab3ee9f1c74ce6552a634aff9e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 932.5495146075652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x328db96aad2ee07573', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:36:24.000Z'}}, {'blockNum': '0x979ee5', 'uniqueId': '0x812fd18a0cdf208661809f66d80fae5d932f66a1d3068c924e10ffc4128d1d00:log:2', 'hash': '0x812fd18a0cdf208661809f66d80fae5d932f66a1d3068c924e10ffc4128d1d00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2479.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8665cfc0a2ac700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:37:33.000Z'}}, {'blockNum': '0x979ee5', 'uniqueId': '0x22b45ca85c20c52763fbad27243cc3e7c543fbd3b60935f57cb25eee71d627fe:log:3', 'hash': '0x22b45ca85c20c52763fbad27243cc3e7c543fbd3b60935f57cb25eee71d627fe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 39995.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878299e0c8c16c20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:37:33.000Z'}}, {'blockNum': '0x979ee7', 'uniqueId': '0xfd0d38df02334698607e8db23849abe481d701c59072c53e798305be5efbe7be:log:10', 'hash': '0xfd0d38df02334698607e8db23849abe481d701c59072c53e798305be5efbe7be', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 653.5213106596711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x236d6e198a6965ff95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:37:57.000Z'}}, {'blockNum': '0x979ee7', 'uniqueId': '0xfd0d38df02334698607e8db23849abe481d701c59072c53e798305be5efbe7be:log:16', 'hash': '0xfd0d38df02334698607e8db23849abe481d701c59072c53e798305be5efbe7be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'value': 653.5213106596711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x236d6e198a6965ff95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:37:57.000Z'}}, {'blockNum': '0x979eea', 'uniqueId': '0x13f7f5ce1e6087b385ccbacbb80b3dfe28a21f52376a88314f428b8ea19c36a2:log:27', 'hash': '0x13f7f5ce1e6087b385ccbacbb80b3dfe28a21f52376a88314f428b8ea19c36a2', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 376.2826186891166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1465f86811268e41d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:39:44.000Z'}}, {'blockNum': '0x979eea', 'uniqueId': '0x13f7f5ce1e6087b385ccbacbb80b3dfe28a21f52376a88314f428b8ea19c36a2:log:33', 'hash': '0x13f7f5ce1e6087b385ccbacbb80b3dfe28a21f52376a88314f428b8ea19c36a2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 376.2826186891166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1465f86811268e41d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:39:44.000Z'}}, {'blockNum': '0x979eec', 'uniqueId': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda:log:81', 'hash': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 731.8103500787654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27abe8a4196711f389', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:33.000Z'}}, {'blockNum': '0x979eec', 'uniqueId': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda:log:83', 'hash': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 731.8103500787654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27abe8a4196711f389', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:33.000Z'}}, {'blockNum': '0x979eec', 'uniqueId': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda:log:88', 'hash': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 731.8103500787654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27abe8a4196711f389', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:33.000Z'}}, {'blockNum': '0x979eec', 'uniqueId': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda:log:90', 'hash': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'value': 731.8103500787654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27abe8a4196711f389', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:33.000Z'}}, {'blockNum': '0x979eed', 'uniqueId': '0x15e2e5227abbfd65203b1b20d4403050eb8d5fbaae7e8f2947a66564b1585d52:log:81', 'hash': '0x15e2e5227abbfd65203b1b20d4403050eb8d5fbaae7e8f2947a66564b1585d52', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:53.000Z'}}, {'blockNum': '0x979eed', 'uniqueId': '0x15e2e5227abbfd65203b1b20d4403050eb8d5fbaae7e8f2947a66564b1585d52:log:83', 'hash': '0x15e2e5227abbfd65203b1b20d4403050eb8d5fbaae7e8f2947a66564b1585d52', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:53.000Z'}}, {'blockNum': '0x979eee', 'uniqueId': '0x5bce015fdad2abe1200f0e7a23748d87665d3ff41f0260ca4344fe34be8730d4:log:30', 'hash': '0x5bce015fdad2abe1200f0e7a23748d87665d3ff41f0260ca4344fe34be8730d4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1435.576368826505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4dd29fcd7028fb5350', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:41:03.000Z'}}, {'blockNum': '0x979eee', 'uniqueId': '0x5bce015fdad2abe1200f0e7a23748d87665d3ff41f0260ca4344fe34be8730d4:log:36', 'hash': '0x5bce015fdad2abe1200f0e7a23748d87665d3ff41f0260ca4344fe34be8730d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 1435.576368826505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4dd29fcd7028fb5350', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:41:03.000Z'}}, {'blockNum': '0x979ef0', 'uniqueId': '0xa7800dbc21dc804457a7c853c3c8d57a9570c490ccfdc17a95298f6cee6de52d:log:25', 'hash': '0xa7800dbc21dc804457a7c853c3c8d57a9570c490ccfdc17a95298f6cee6de52d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 931.9564306193905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32857e5bee79bf8c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:41:24.000Z'}}, {'blockNum': '0x979ef0', 'uniqueId': '0xa7800dbc21dc804457a7c853c3c8d57a9570c490ccfdc17a95298f6cee6de52d:log:31', 'hash': '0xa7800dbc21dc804457a7c853c3c8d57a9570c490ccfdc17a95298f6cee6de52d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 931.9564306193905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32857e5bee79bf8c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:41:24.000Z'}}, {'blockNum': '0x979ef4', 'uniqueId': '0x6ea58c240d3847ca26725415dbd33824f1b01c4a7d26cbadfc8cba6b6766ca6d:log:47', 'hash': '0x6ea58c240d3847ca26725415dbd33824f1b01c4a7d26cbadfc8cba6b6766ca6d', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 454.68815557416036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a610d4741f606cb5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:22.000Z'}}, {'blockNum': '0x979ef4', 'uniqueId': '0x6ea58c240d3847ca26725415dbd33824f1b01c4a7d26cbadfc8cba6b6766ca6d:log:53', 'hash': '0x6ea58c240d3847ca26725415dbd33824f1b01c4a7d26cbadfc8cba6b6766ca6d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 454.68815557416036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a610d4741f606cb5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:22.000Z'}}, {'blockNum': '0x979ef5', 'uniqueId': '0xebf5fda15804dba3349ab640f43e51d6a3ffa9b393c5454d567ad103695c2fd1:log:274', 'hash': '0xebf5fda15804dba3349ab640f43e51d6a3ffa9b393c5454d567ad103695c2fd1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.02699341435057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e618e0edec5003b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:26.000Z'}}, {'blockNum': '0x979ef5', 'uniqueId': '0xebf5fda15804dba3349ab640f43e51d6a3ffa9b393c5454d567ad103695c2fd1:log:280', 'hash': '0xebf5fda15804dba3349ab640f43e51d6a3ffa9b393c5454d567ad103695c2fd1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa260306fe5e57cae7bdcc7ff0488061eace32b58', 'value': 35.02699341435057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e618e0edec5003b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:26.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0xf9e91a32fe397ae582315b40116472abcf1bf8564e8f0eea1e97114e504cb28b:log:151', 'hash': '0xf9e91a32fe397ae582315b40116472abcf1bf8564e8f0eea1e97114e504cb28b', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1162.8105893126506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f093d1625332a2dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0xf9e91a32fe397ae582315b40116472abcf1bf8564e8f0eea1e97114e504cb28b:log:157', 'hash': '0xf9e91a32fe397ae582315b40116472abcf1bf8564e8f0eea1e97114e504cb28b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 1162.8105893126506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f093d1625332a2dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584:log:174', 'hash': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 971.7405500238416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ad9bf1be9dc88502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584:log:179', 'hash': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 971.7405500238416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ad9bf1be9dc88502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584:log:181', 'hash': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 971.7405500238416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ad9bf1be9dc88502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584:log:183', 'hash': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 971.7405500238416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ad9bf1be9dc88502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x4db2c760fdb9206d2c87f18fffd5ad3f48bcdd53acce5adf413c84ec7a27b2ce:log:195', 'hash': '0x4db2c760fdb9206d2c87f18fffd5ad3f48bcdd53acce5adf413c84ec7a27b2ce', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1753.3772694124025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5f0cff68bd5aa2cac6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x4db2c760fdb9206d2c87f18fffd5ad3f48bcdd53acce5adf413c84ec7a27b2ce:log:201', 'hash': '0x4db2c760fdb9206d2c87f18fffd5ad3f48bcdd53acce5adf413c84ec7a27b2ce', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 1753.3772694124025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5f0cff68bd5aa2cac6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979efe', 'uniqueId': '0xcd0b2a1b924dfdcfd1ebd82f5f0fbb0639e4804cc5514cedf8027dad9d72a4d8:log:168', 'hash': '0xcd0b2a1b924dfdcfd1ebd82f5f0fbb0639e4804cc5514cedf8027dad9d72a4d8', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 87.64660552829041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c0574b5b3a89a4e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:43:52.000Z'}}, {'blockNum': '0x979efe', 'uniqueId': '0xcd0b2a1b924dfdcfd1ebd82f5f0fbb0639e4804cc5514cedf8027dad9d72a4d8:log:174', 'hash': '0xcd0b2a1b924dfdcfd1ebd82f5f0fbb0639e4804cc5514cedf8027dad9d72a4d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 87.64660552829041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c0574b5b3a89a4e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:43:52.000Z'}}, {'blockNum': '0x979f05', 'uniqueId': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86:log:81', 'hash': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 906.9939381937716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x312b11c553d059c538', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:44:36.000Z'}}, {'blockNum': '0x979f05', 'uniqueId': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86:log:83', 'hash': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 906.9939381937716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x312b11c553d059c538', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:44:36.000Z'}}, {'blockNum': '0x979f05', 'uniqueId': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86:log:88', 'hash': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 906.9939381937716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x312b11c553d059c538', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:44:36.000Z'}}, {'blockNum': '0x979f05', 'uniqueId': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86:log:90', 'hash': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 906.9939381937716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x312b11c553d059c538', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:44:36.000Z'}}, {'blockNum': '0x979f0b', 'uniqueId': '0x093f6f18e647fa52bfa64d499d144ea760fc3c6c190b29da0ae003538fd5b526:log:170', 'hash': '0x093f6f18e647fa52bfa64d499d144ea760fc3c6c190b29da0ae003538fd5b526', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 14995.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032ce8ec143959220000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:45:58.000Z'}}, {'blockNum': '0x979f0b', 'uniqueId': '0x093f6f18e647fa52bfa64d499d144ea760fc3c6c190b29da0ae003538fd5b526:log:172', 'hash': '0x093f6f18e647fa52bfa64d499d144ea760fc3c6c190b29da0ae003538fd5b526', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 14995.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032ce8ec143959220000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:45:58.000Z'}}, {'blockNum': '0x979f0d', 'uniqueId': '0x6756baece4a6d26c3941ebad59dc7e579d6c15500bc0fc8e631420fccc9e92ef:log:5', 'hash': '0x6756baece4a6d26c3941ebad59dc7e579d6c15500bc0fc8e631420fccc9e92ef', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 617.9271923982127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x217f7663914decb2ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:12.000Z'}}, {'blockNum': '0x979f0d', 'uniqueId': '0x6756baece4a6d26c3941ebad59dc7e579d6c15500bc0fc8e631420fccc9e92ef:log:11', 'hash': '0x6756baece4a6d26c3941ebad59dc7e579d6c15500bc0fc8e631420fccc9e92ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'value': 617.9271923982127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x217f7663914decb2ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:12.000Z'}}, {'blockNum': '0x979f0d', 'uniqueId': '0x497a3ecc14350a4e4ea81835bf70283b93b6ce608b6613c0a22198a2b8300549:log:26', 'hash': '0x497a3ecc14350a4e4ea81835bf70283b93b6ce608b6613c0a22198a2b8300549', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 597.7273994083032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2067224eddc9f11591', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:12.000Z'}}, {'blockNum': '0x979f0d', 'uniqueId': '0x497a3ecc14350a4e4ea81835bf70283b93b6ce608b6613c0a22198a2b8300549:log:32', 'hash': '0x497a3ecc14350a4e4ea81835bf70283b93b6ce608b6613c0a22198a2b8300549', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 597.7273994083032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2067224eddc9f11591', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:12.000Z'}}, {'blockNum': '0x979f0e', 'uniqueId': '0x47ce5a81b0a4302b337735d5564994ed07bd3554eb74bcdf20a5eff3628d6781:log:35', 'hash': '0x47ce5a81b0a4302b337735d5564994ed07bd3554eb74bcdf20a5eff3628d6781', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 772.613883494984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e22be98e0d8e0a20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:18.000Z'}}, {'blockNum': '0x979f0e', 'uniqueId': '0x47ce5a81b0a4302b337735d5564994ed07bd3554eb74bcdf20a5eff3628d6781:log:41', 'hash': '0x47ce5a81b0a4302b337735d5564994ed07bd3554eb74bcdf20a5eff3628d6781', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'value': 772.613883494984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e22be98e0d8e0a20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:18.000Z'}}, {'blockNum': '0x979f12', 'uniqueId': '0x2324924bc14f718ca607b1d16898302fe6df4004b4b06b18f496f861f5b3bed3:log:54', 'hash': '0x2324924bc14f718ca607b1d16898302fe6df4004b4b06b18f496f861f5b3bed3', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 504.5537251856517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b5a16ebd0eed4e4d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:47:07.000Z'}}, {'blockNum': '0x979f12', 'uniqueId': '0x2324924bc14f718ca607b1d16898302fe6df4004b4b06b18f496f861f5b3bed3:log:60', 'hash': '0x2324924bc14f718ca607b1d16898302fe6df4004b4b06b18f496f861f5b3bed3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 504.5537251856517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b5a16ebd0eed4e4d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:47:07.000Z'}}, {'blockNum': '0x979f13', 'uniqueId': '0xd61197b8a5a7b6aa703d5d63f6fcb635ff3fb31b95b47aff1a05cc1a8ba9e2a6:log:22', 'hash': '0xd61197b8a5a7b6aa703d5d63f6fcb635ff3fb31b95b47aff1a05cc1a8ba9e2a6', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 183.9588088674025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f8f0fa02658109c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:47:27.000Z'}}, {'blockNum': '0x979f13', 'uniqueId': '0xd61197b8a5a7b6aa703d5d63f6fcb635ff3fb31b95b47aff1a05cc1a8ba9e2a6:log:28', 'hash': '0xd61197b8a5a7b6aa703d5d63f6fcb635ff3fb31b95b47aff1a05cc1a8ba9e2a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 183.9588088674025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f8f0fa02658109c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:47:27.000Z'}}, {'blockNum': '0x979f1c', 'uniqueId': '0x223ee414e6f440f5d09e85825d7b984e432877b96f3fe00e55becadfad32567e:log:103', 'hash': '0x223ee414e6f440f5d09e85825d7b984e432877b96f3fe00e55becadfad32567e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 439.06283514935177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cd388a505101a6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:49:22.000Z'}}, {'blockNum': '0x979f1c', 'uniqueId': '0x223ee414e6f440f5d09e85825d7b984e432877b96f3fe00e55becadfad32567e:log:109', 'hash': '0x223ee414e6f440f5d09e85825d7b984e432877b96f3fe00e55becadfad32567e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 439.06283514935177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cd388a505101a6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:49:22.000Z'}}, {'blockNum': '0x979f20', 'uniqueId': '0xe7fcc545cd11c45aceaa0422c4762fc481b277e63e1b84596cce2514ab6fb5df:log:55', 'hash': '0xe7fcc545cd11c45aceaa0422c4762fc481b277e63e1b84596cce2514ab6fb5df', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 439.49417847603735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d334fac8b455b5b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:50:03.000Z'}}, {'blockNum': '0x979f20', 'uniqueId': '0xe7fcc545cd11c45aceaa0422c4762fc481b277e63e1b84596cce2514ab6fb5df:log:61', 'hash': '0xe7fcc545cd11c45aceaa0422c4762fc481b277e63e1b84596cce2514ab6fb5df', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 439.49417847603735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d334fac8b455b5b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:50:03.000Z'}}, {'blockNum': '0x979f24', 'uniqueId': '0x4bf0432046e7833b11566a2657fb04e984effee2abb9ca9039c114bc687ffe93:log:27', 'hash': '0x4bf0432046e7833b11566a2657fb04e984effee2abb9ca9039c114bc687ffe93', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 39995.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878299e0c8c16c20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:50:49.000Z'}}, {'blockNum': '0x979f27', 'uniqueId': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce:log:84', 'hash': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1279.684669071531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455f313a75e9eb9fa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:52:15.000Z'}}, {'blockNum': '0x979f27', 'uniqueId': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce:log:89', 'hash': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1279.684669071531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455f313a75e9eb9fa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:52:15.000Z'}}, {'blockNum': '0x979f27', 'uniqueId': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce:log:91', 'hash': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1279.684669071531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455f313a75e9eb9fa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:52:15.000Z'}}, {'blockNum': '0x979f27', 'uniqueId': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce:log:93', 'hash': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 1279.684669071531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455f313a75e9eb9fa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:52:15.000Z'}}, {'blockNum': '0x979f2c', 'uniqueId': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7:log:30', 'hash': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 769.490141150049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29b6d2267145dd2274', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:53:03.000Z'}}, {'blockNum': '0x979f2c', 'uniqueId': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7:log:35', 'hash': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 769.490141150049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29b6d2267145dd2274', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:53:03.000Z'}}, {'blockNum': '0x979f2c', 'uniqueId': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7:log:37', 'hash': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 769.490141150049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29b6d2267145dd2274', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:53:03.000Z'}}, {'blockNum': '0x979f2c', 'uniqueId': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7:log:39', 'hash': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 769.490141150049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29b6d2267145dd2274', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:53:03.000Z'}}, {'blockNum': '0x979f37', 'uniqueId': '0x35e2029483a1cb67d806028b37883206ad067ba801fb0662c15716cf212d92a2:log:80', 'hash': '0x35e2029483a1cb67d806028b37883206ad067ba801fb0662c15716cf212d92a2', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1078.2901764086387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a7448426ade33c5ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:56:08.000Z'}}, {'blockNum': '0x979f37', 'uniqueId': '0x35e2029483a1cb67d806028b37883206ad067ba801fb0662c15716cf212d92a2:log:86', 'hash': '0x35e2029483a1cb67d806028b37883206ad067ba801fb0662c15716cf212d92a2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 1078.2901764086387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a7448426ade33c5ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:56:08.000Z'}}, {'blockNum': '0x979f3b', 'uniqueId': '0x6c2c8dfda4a935a9528fee833a18ec0870fe7ec81bcab27262b9db6c53adcc78:log:50', 'hash': '0x6c2c8dfda4a935a9528fee833a18ec0870fe7ec81bcab27262b9db6c53adcc78', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 394.0784221372004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155cefcd044e42e3c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:57:13.000Z'}}, {'blockNum': '0x979f3b', 'uniqueId': '0x6c2c8dfda4a935a9528fee833a18ec0870fe7ec81bcab27262b9db6c53adcc78:log:56', 'hash': '0x6c2c8dfda4a935a9528fee833a18ec0870fe7ec81bcab27262b9db6c53adcc78', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'value': 394.0784221372004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155cefcd044e42e3c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:57:13.000Z'}}, {'blockNum': '0x979f3f', 'uniqueId': '0xa7757e8d0e6a46b699e6e84506bef82bb95aadb0b5185a02def1660f259731ef:log:11', 'hash': '0xa7757e8d0e6a46b699e6e84506bef82bb95aadb0b5185a02def1660f259731ef', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 658.2939238497545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23afa9d3f35ea9b3c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:57:43.000Z'}}, {'blockNum': '0x979f3f', 'uniqueId': '0xa7757e8d0e6a46b699e6e84506bef82bb95aadb0b5185a02def1660f259731ef:log:17', 'hash': '0xa7757e8d0e6a46b699e6e84506bef82bb95aadb0b5185a02def1660f259731ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 658.2939238497545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23afa9d3f35ea9b3c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:57:43.000Z'}}, {'blockNum': '0x979f42', 'uniqueId': '0xa7f9bfbd66d04aa316aacd891504d35344145481500b254fcc22747e54f67698:log:34', 'hash': '0xa7f9bfbd66d04aa316aacd891504d35344145481500b254fcc22747e54f67698', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 434.2622499376651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x178a996f7f906dfb25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:58:00.000Z'}}, {'blockNum': '0x979f42', 'uniqueId': '0xa7f9bfbd66d04aa316aacd891504d35344145481500b254fcc22747e54f67698:log:40', 'hash': '0xa7f9bfbd66d04aa316aacd891504d35344145481500b254fcc22747e54f67698', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x46989597338d1db0f7adccd124af2fe4ca841068', 'value': 434.2622499376651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x178a996f7f906dfb25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:58:00.000Z'}}, {'blockNum': '0x979f48', 'uniqueId': '0xc4750c2df1c816a9e8bba1fba938a13d3e8e80b0f3b850daf4982d755b0f5f08:log:60', 'hash': '0xc4750c2df1c816a9e8bba1fba938a13d3e8e80b0f3b850daf4982d755b0f5f08', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 520.1897268350042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c331528791fe96d9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:59:57.000Z'}}, {'blockNum': '0x979f48', 'uniqueId': '0xc4750c2df1c816a9e8bba1fba938a13d3e8e80b0f3b850daf4982d755b0f5f08:log:66', 'hash': '0xc4750c2df1c816a9e8bba1fba938a13d3e8e80b0f3b850daf4982d755b0f5f08', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 520.1897268350042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c331528791fe96d9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:59:57.000Z'}}, {'blockNum': '0x979f49', 'uniqueId': '0x406f964f23b7de383dc8de8689d0e1191490c658abe082b7cd781ebb10583f80:log:36', 'hash': '0x406f964f23b7de383dc8de8689d0e1191490c658abe082b7cd781ebb10583f80', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 476.52984753763457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19d52e1b9277c30cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:00:05.000Z'}}, {'blockNum': '0x979f49', 'uniqueId': '0x406f964f23b7de383dc8de8689d0e1191490c658abe082b7cd781ebb10583f80:log:42', 'hash': '0x406f964f23b7de383dc8de8689d0e1191490c658abe082b7cd781ebb10583f80', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'value': 476.52984753763457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19d52e1b9277c30cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:00:05.000Z'}}, {'blockNum': '0x979f4f', 'uniqueId': '0xe26b0f1ddc523729ec644498d816fefd2ffe62453b7643d953c2ae7945d35c76:log:11', 'hash': '0xe26b0f1ddc523729ec644498d816fefd2ffe62453b7643d953c2ae7945d35c76', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 520.14625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c327ab285a586a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:01:14.000Z'}}, {'blockNum': '0x979f5b', 'uniqueId': '0x197590c46fac10620fb0df6cb96168e67fc96939b92bce4686c875a9fce20e75:log:118', 'hash': '0x197590c46fac10620fb0df6cb96168e67fc96939b92bce4686c875a9fce20e75', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 249.58305254974545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d87a91ff2413a8151', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:04:16.000Z'}}, {'blockNum': '0x979f5b', 'uniqueId': '0x197590c46fac10620fb0df6cb96168e67fc96939b92bce4686c875a9fce20e75:log:124', 'hash': '0x197590c46fac10620fb0df6cb96168e67fc96939b92bce4686c875a9fce20e75', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 249.58305254974545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d87a91ff2413a8151', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:04:16.000Z'}}, {'blockNum': '0x979f5e', 'uniqueId': '0xc7b5b662deeedd16fb22c1be17bda73bce715dcc0400c7a336e53d38bcb8b085:log:233', 'hash': '0xc7b5b662deeedd16fb22c1be17bda73bce715dcc0400c7a336e53d38bcb8b085', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 877.7252528318552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94e2831018a73cfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:04:51.000Z'}}, {'blockNum': '0x979f5e', 'uniqueId': '0xc7b5b662deeedd16fb22c1be17bda73bce715dcc0400c7a336e53d38bcb8b085:log:239', 'hash': '0xc7b5b662deeedd16fb22c1be17bda73bce715dcc0400c7a336e53d38bcb8b085', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'value': 877.7252528318552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94e2831018a73cfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:04:51.000Z'}}, {'blockNum': '0x979f60', 'uniqueId': '0x6426c1a20da43511ee37ee6dbaa91e2bec97d84fcd4e052d851ad5612d20f191:log:101', 'hash': '0x6426c1a20da43511ee37ee6dbaa91e2bec97d84fcd4e052d851ad5612d20f191', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2213.943418444254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7804a311199fc4ba93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:05:33.000Z'}}, {'blockNum': '0x979f60', 'uniqueId': '0x6426c1a20da43511ee37ee6dbaa91e2bec97d84fcd4e052d851ad5612d20f191:log:107', 'hash': '0x6426c1a20da43511ee37ee6dbaa91e2bec97d84fcd4e052d851ad5612d20f191', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 2213.943418444254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7804a311199fc4ba93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:05:33.000Z'}}, {'blockNum': '0x979f62', 'uniqueId': '0xb6368180e01233414a597d51fe19523a1c9d6e62a251f80cb4f6982e065b34d1:log:82', 'hash': '0xb6368180e01233414a597d51fe19523a1c9d6e62a251f80cb4f6982e065b34d1', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5cebfc89d0c93384bd8909a0148004898fad2446', 'value': 520.14625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c327ab285a586a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:07:18.000Z'}}, {'blockNum': '0x979f63', 'uniqueId': '0x1980dc5699391f91874b8d4350a44433ee5f360a11cbee615f49e40feb3259a8:log:19', 'hash': '0x1980dc5699391f91874b8d4350a44433ee5f360a11cbee615f49e40feb3259a8', 'from': '0xd58b7f2be5e3472857fb9af49cbd327b8ae9680a', 'to': '0x22a795d002c02274bc6da229d50eb631ae98f998', 'value': 280.736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f37fea098d0100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:07:35.000Z'}}, {'blockNum': '0x979f64', 'uniqueId': '0x1d7ef3eeae72c985b7bbf41a42bd669d02f2de87296a10ed20da9d27931d41be:log:129', 'hash': '0x1d7ef3eeae72c985b7bbf41a42bd669d02f2de87296a10ed20da9d27931d41be', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1315.6385750763257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x475227297ae17c2dc9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:07:47.000Z'}}, {'blockNum': '0x979f64', 'uniqueId': '0x1d7ef3eeae72c985b7bbf41a42bd669d02f2de87296a10ed20da9d27931d41be:log:135', 'hash': '0x1d7ef3eeae72c985b7bbf41a42bd669d02f2de87296a10ed20da9d27931d41be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1315.6385750763257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x475227297ae17c2dc9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:07:47.000Z'}}, {'blockNum': '0x979f66', 'uniqueId': '0x73f6bbe5dc795f326baf133ad704a8fcc93729f43e9d252652d422209d376525:log:23', 'hash': '0x73f6bbe5dc795f326baf133ad704a8fcc93729f43e9d252652d422209d376525', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 304.37222979229006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108003625ce7045796', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:08:13.000Z'}}, {'blockNum': '0x979f66', 'uniqueId': '0x73f6bbe5dc795f326baf133ad704a8fcc93729f43e9d252652d422209d376525:log:29', 'hash': '0x73f6bbe5dc795f326baf133ad704a8fcc93729f43e9d252652d422209d376525', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9db89726ae2683d21a71ff1417638e72e6d8c0d9', 'value': 304.37222979229006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108003625ce7045796', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:08:13.000Z'}}, {'blockNum': '0x979f6c', 'uniqueId': '0x18cdeb6cbb93585c96f6cf8f4d04290853bd8680e4988d6e2974c86d26fb9813:log:115', 'hash': '0x18cdeb6cbb93585c96f6cf8f4d04290853bd8680e4988d6e2974c86d26fb9813', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 166.62066382824287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09085382f52a3173db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:09:48.000Z'}}, {'blockNum': '0x979f6c', 'uniqueId': '0x18cdeb6cbb93585c96f6cf8f4d04290853bd8680e4988d6e2974c86d26fb9813:log:121', 'hash': '0x18cdeb6cbb93585c96f6cf8f4d04290853bd8680e4988d6e2974c86d26fb9813', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'value': 166.62066382824287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09085382f52a3173db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:09:48.000Z'}}, {'blockNum': '0x979f84', 'uniqueId': '0x2d11b7438b0bc5bb48b0f3ff992981626b0da063b6d2b49a2db99bce0cea5f66:log:74', 'hash': '0x2d11b7438b0bc5bb48b0f3ff992981626b0da063b6d2b49a2db99bce0cea5f66', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:15:02.000Z'}}, {'blockNum': '0x979f84', 'uniqueId': '0x2d11b7438b0bc5bb48b0f3ff992981626b0da063b6d2b49a2db99bce0cea5f66:log:76', 'hash': '0x2d11b7438b0bc5bb48b0f3ff992981626b0da063b6d2b49a2db99bce0cea5f66', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:15:02.000Z'}}, {'blockNum': '0x979f8f', 'uniqueId': '0x0465cf6c8cb11b0d736a5f529065f21b564e208f89bb7f5c2aeb1d3d0a025a80:log:36', 'hash': '0x0465cf6c8cb11b0d736a5f529065f21b564e208f89bb7f5c2aeb1d3d0a025a80', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:18:20.000Z'}}, {'blockNum': '0x979f8f', 'uniqueId': '0x0465cf6c8cb11b0d736a5f529065f21b564e208f89bb7f5c2aeb1d3d0a025a80:log:38', 'hash': '0x0465cf6c8cb11b0d736a5f529065f21b564e208f89bb7f5c2aeb1d3d0a025a80', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:18:20.000Z'}}, {'blockNum': '0x979f99', 'uniqueId': '0x628ba52e6c8afb3c72fddf7f24497681c6bc082f1cf3cb0d814030d24ef28460:log:8', 'hash': '0x628ba52e6c8afb3c72fddf7f24497681c6bc082f1cf3cb0d814030d24ef28460', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:19:48.000Z'}}, {'blockNum': '0x979f99', 'uniqueId': '0x628ba52e6c8afb3c72fddf7f24497681c6bc082f1cf3cb0d814030d24ef28460:log:10', 'hash': '0x628ba52e6c8afb3c72fddf7f24497681c6bc082f1cf3cb0d814030d24ef28460', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:19:48.000Z'}}], 'pageKey': 'fd1ebd63-e3b5-472a-8d61-f40527d46c47'}}
Answer is paginated. Downloading more pages...
Number of returned transfers:  1001
Answer is complete
 
symbol             MDA
group              BPF
date        2020-05-04
hour             19:01
exchange       binance
Name: 825, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2020-05-04 19:01:00 2020-05-04 07:01:00 2020-05-05 07:01:00
Unix timestamps:  1588568460.0 1588654860.0
Hex Block Numbers:  0x988d77 0x98a6f7
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x988f5d', 'uniqueId': '0x96c9cad93e97a203bf0ee94333b73e6702ce08c1521ef5b31ebdcdcc1bc88d0b:log:23', 'hash': '0x96c9cad93e97a203bf0ee94333b73e6702ce08c1521ef5b31ebdcdcc1bc88d0b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 2421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x833e1fd0fe04b40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T06:44:30.000Z'}}, {'blockNum': '0x988f93', 'uniqueId': '0xd1307b77658f4569c57963178a26cc6c33d2afd4d526154d7eaa094f0ea813bb:log:38', 'hash': '0xd1307b77658f4569c57963178a26cc6c33d2afd4d526154d7eaa094f0ea813bb', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x833e1fd0fe04b40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T07:00:18.000Z'}}, {'blockNum': '0x989077', 'uniqueId': '0xfd71d876ae6e800bfa8f701a3b847dfd3ecd708bbe3c7e091dd0703bf190d821:log:159', 'hash': '0xfd71d876ae6e800bfa8f701a3b847dfd3ecd708bbe3c7e091dd0703bf190d821', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 11569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x027328208ccf9e240000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T07:48:08.000Z'}}, {'blockNum': '0x9890a3', 'uniqueId': '0xd2928876cb473e3a4971431ff6bcf4192e376ac03353cc164ee84f7367619a14:log:79', 'hash': '0xd2928876cb473e3a4971431ff6bcf4192e376ac03353cc164ee84f7367619a14', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x027328208ccf9e240000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T08:00:18.000Z'}}, {'blockNum': '0x989295', 'uniqueId': '0xa58f1907dd3b57a0ef9880cd9aa58a30251cf51fadba6d7cd9964fe384568014:log:18', 'hash': '0xa58f1907dd3b57a0ef9880cd9aa58a30251cf51fadba6d7cd9964fe384568014', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 4488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf34b82fd8e91200000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T09:49:37.000Z'}}, {'blockNum': '0x9893fc', 'uniqueId': '0x1ed22079383c66762fc86b664f6596316cc85e1d60363d5dd665e8abae53791d:log:124', 'hash': '0x1ed22079383c66762fc86b664f6596316cc85e1d60363d5dd665e8abae53791d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 2583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8c06536eadf1fc0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T11:06:16.000Z'}}, {'blockNum': '0x989414', 'uniqueId': '0x646c6370c93f169f5e851b4b2b07885a31b27a988dac7f74dde651262c050e34:log:117', 'hash': '0x646c6370c93f169f5e851b4b2b07885a31b27a988dac7f74dde651262c050e34', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 1868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6543b526e96db00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T11:11:38.000Z'}}, {'blockNum': '0x989473', 'uniqueId': '0xa9fe69d31973ee487fabb67833d0861c13cc736bef5e3a19dcd3c1d868ab89c5:log:98', 'hash': '0xa9fe69d31973ee487fabb67833d0861c13cc736bef5e3a19dcd3c1d868ab89c5', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6543b526e96db00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T11:30:34.000Z'}}, {'blockNum': '0x989533', 'uniqueId': '0xb694615a7f3b4b316fb5fd10329dda46ef738d314e8f896ea05b7b02a2a8828c:log:7', 'hash': '0xb694615a7f3b4b316fb5fd10329dda46ef738d314e8f896ea05b7b02a2a8828c', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8c06536eadf1fc0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T12:12:13.000Z'}}, {'blockNum': '0x989548', 'uniqueId': '0xaacd4ff02949c7a08690f6c7260461e09b2a7c6161672a167d3161e415cba854:log:130', 'hash': '0xaacd4ff02949c7a08690f6c7260461e09b2a7c6161672a167d3161e415cba854', 'from': '0xd9227fdb1893b1470bb750782d29270592c6888b', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 7839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a8f3fa8732af1c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T12:16:23.000Z'}}, {'blockNum': '0x989548', 'uniqueId': '0x1a43e4d1fd11026a4f41276832fd433008fdceb8000d43386acf51654f8d1150:log:161', 'hash': '0x1a43e4d1fd11026a4f41276832fd433008fdceb8000d43386acf51654f8d1150', 'from': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x897a11e3b236a00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T12:16:23.000Z'}}, {'blockNum': '0x9897f6', 'uniqueId': '0x096d25ea154dc3ee5fb71355d062a2fad6423575e6a180ecc20a03b2478c37be:log:25', 'hash': '0x096d25ea154dc3ee5fb71355d062a2fad6423575e6a180ecc20a03b2478c37be', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf68d91b84819d5495bb53f47b1ca2c863289171d', 'value': 959.184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x33ff5a1e067e480000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T14:48:29.000Z'}}, {'blockNum': '0x989800', 'uniqueId': '0xe7a0cbbf79c011de2f74f7d1870bdcc8358d72d7816369af87c13413b2886bfd:log:16', 'hash': '0xe7a0cbbf79c011de2f74f7d1870bdcc8358d72d7816369af87c13413b2886bfd', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 2581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8bea920146a3340000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T14:50:33.000Z'}}, {'blockNum': '0x989851', 'uniqueId': '0xdedce963d2b10964b2950497f5b55706ffa709179d06ceffd49f5cb2b6805bea:log:10', 'hash': '0xdedce963d2b10964b2950497f5b55706ffa709179d06ceffd49f5cb2b6805bea', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe3b361aa264cca2e367a2af894cccb925d603c5f', 'value': 5999.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01453758d8fb6bee0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T15:07:29.000Z'}}, {'blockNum': '0x98993e', 'uniqueId': '0x753f1f72841c07083646e35ecb8cd8d1844d80917b9c9992659125e5b5e0954b:log:65', 'hash': '0x753f1f72841c07083646e35ecb8cd8d1844d80917b9c9992659125e5b5e0954b', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8bea920146a3340000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T16:00:07.000Z'}}, {'blockNum': '0x989ade', 'uniqueId': '0xa0299cc94169f994c5409017ce04e14ce5b83d61ef2e8e7032d3a7b9f0f3812d:log:1', 'hash': '0xa0299cc94169f994c5409017ce04e14ce5b83d61ef2e8e7032d3a7b9f0f3812d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x144769d175da9836db34ea5c989e71c38dcd23c9', 'value': 12713.957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x02b13998f2119f108000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T17:35:36.000Z'}}, {'blockNum': '0x989c70', 'uniqueId': '0x483f9e180ced81989222f26f64c7ce7225370b77182798f6b1d181b0368b7cdb:log:66', 'hash': '0x483f9e180ced81989222f26f64c7ce7225370b77182798f6b1d181b0368b7cdb', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 2140, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x74027745cb47f00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:01:56.000Z'}}, {'blockNum': '0x989c70', 'uniqueId': '0x2fdfe8359a2fba3cdfa92a89f82414e041c8ee5603ae54e64126dd74991a99e0:log:67', 'hash': '0x2fdfe8359a2fba3cdfa92a89f82414e041c8ee5603ae54e64126dd74991a99e0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 7185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01857fe7c83d0da40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:01:56.000Z'}}, {'blockNum': '0x989c70', 'uniqueId': '0xaaddbc2b3cb93febb9819de6fee0920e6cc89b206ea3c154df1d75498aa99ce8:log:68', 'hash': '0xaaddbc2b3cb93febb9819de6fee0920e6cc89b206ea3c154df1d75498aa99ce8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 5760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0138400eca364a000000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:01:56.000Z'}}, {'blockNum': '0x989c70', 'uniqueId': '0x4642de277ac3ecd65b79153050f3cb64ff8da332e024e61590758795b4e5a691:log:69', 'hash': '0x4642de277ac3ecd65b79153050f3cb64ff8da332e024e61590758795b4e5a691', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 7693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a109d254bd38140000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:01:56.000Z'}}, {'blockNum': '0x989c70', 'uniqueId': '0x94421dd42b59aed7a0f4dd77b23174dc4561f4a924724899a61e826e492a1041:log:70', 'hash': '0x94421dd42b59aed7a0f4dd77b23174dc4561f4a924724899a61e826e492a1041', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 4479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf2ce9c913dae9c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:01:56.000Z'}}, {'blockNum': '0x989c74', 'uniqueId': '0x760cc52fc1787611e79720099572e173b345fa504f591fd7fd838256ea74510e:log:30', 'hash': '0x760cc52fc1787611e79720099572e173b345fa504f591fd7fd838256ea74510e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 21004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0472a10e1c09e0b00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:03:09.000Z'}}, {'blockNum': '0x989c88', 'uniqueId': '0x1a44fe428675fe0636cea8a2f9b67986bf777c23f526f52440725e3cddb78d1f:log:17', 'hash': '0x1a44fe428675fe0636cea8a2f9b67986bf777c23f526f52440725e3cddb78d1f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 4895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01095bc5752db11c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:07:10.000Z'}}, {'blockNum': '0x989cdb', 'uniqueId': '0xb8eb8cff0eb9fae75f81bcab308ca0744ed10e1c8682452e065c872d8a445560:log:78', 'hash': '0xb8eb8cff0eb9fae75f81bcab308ca0744ed10e1c8682452e065c872d8a445560', 'from': '0x31dc6615ae5914cf472ffb5b46e07eea9cdb4863', 'to': '0xae473cd4d4eb2b5c9a8ab68d6899733d2dd91283', 'value': 214.487375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0ba09c3b28e0fff000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:24:50.000Z'}}, {'blockNum': '0x989cf2', 'uniqueId': '0x9e0a056f5341edde411b83c83ede61ee176a523ea0b6d67bcee68918c13cf897:log:18', 'hash': '0x9e0a056f5341edde411b83c83ede61ee176a523ea0b6d67bcee68918c13cf897', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0472a10e1c09e0b00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:29:59.000Z'}}, {'blockNum': '0x989cf2', 'uniqueId': '0xe402056ca89c0235b01541c94f47a316544a88c2c3f3b542f4a88c1a3e9092ea:log:50', 'hash': '0xe402056ca89c0235b01541c94f47a316544a88c2c3f3b542f4a88c1a3e9092ea', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01857fe7c83d0da40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:29:59.000Z'}}, {'blockNum': '0x989cf2', 'uniqueId': '0xe0935d0531340eee9b8b1e2a26469001d21208f4537ce6bb5c2f6c9ece24794c:log:57', 'hash': '0xe0935d0531340eee9b8b1e2a26469001d21208f4537ce6bb5c2f6c9ece24794c', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x02a0a397539936e00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:29:59.000Z'}}, {'blockNum': '0x989cf2', 'uniqueId': '0xbca61c0ebd3ba2332cb9aa8059a34fd0ccd94fc2a6805a732f232611fb0a6892:log:69', 'hash': '0xbca61c0ebd3ba2332cb9aa8059a34fd0ccd94fc2a6805a732f232611fb0a6892', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0138400eca364a000000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:29:59.000Z'}}, {'blockNum': '0x989d3b', 'uniqueId': '0x8e1cecf1436315f0e716c116d35a1e8b3c139d6aca165e55a38060b9a782fe1c:log:108', 'hash': '0x8e1cecf1436315f0e716c116d35a1e8b3c139d6aca165e55a38060b9a782fe1c', 'from': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 4488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xf34b82fd8e91200000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:47:21.000Z'}}, {'blockNum': '0x989d7f', 'uniqueId': '0x2d6ad8118b17085517eba10d34b85b6a55bf262aafd3eaa0ddb2df5cf60ef114:log:17', 'hash': '0x2d6ad8118b17085517eba10d34b85b6a55bf262aafd3eaa0ddb2df5cf60ef114', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x017d5e3cbaf8f90c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T19:59:58.000Z'}}, {'blockNum': '0x989e06', 'uniqueId': '0xce2cc7a423f837278a7126924f3a1e5ac9ca5f2f860038e066f90e1afaa375f4:log:8', 'hash': '0xce2cc7a423f837278a7126924f3a1e5ac9ca5f2f860038e066f90e1afaa375f4', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x03654253d6edccac0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T20:30:07.000Z'}}, {'blockNum': '0x989eac', 'uniqueId': '0xf4ec852846730c3f89f99a0c1fda7ae70d4a04d65f54b95da2363583e11f5be4:log:8', 'hash': '0xf4ec852846730c3f89f99a0c1fda7ae70d4a04d65f54b95da2363583e11f5be4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 6818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01719ac1dcb015480000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T21:06:33.000Z'}}, {'blockNum': '0x989f28', 'uniqueId': '0x00d50a6915062c093a74eab52dd3b46f019e35f9a066ee2a64f330b7cc41d3f5:log:20', 'hash': '0x00d50a6915062c093a74eab52dd3b46f019e35f9a066ee2a64f330b7cc41d3f5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 3042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa4e83b02cb12480000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T21:35:29.000Z'}}, {'blockNum': '0x989f3f', 'uniqueId': '0xa00c9053a04b6f91acde39d4df86a26e0878704fe3ee23ac3eabd4f6407b1d8c:log:103', 'hash': '0xa00c9053a04b6f91acde39d4df86a26e0878704fe3ee23ac3eabd4f6407b1d8c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 2186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x7680d81a135be80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T21:39:04.000Z'}}, {'blockNum': '0x989f6d', 'uniqueId': '0xbd47b72668a5453ec3987a84ae53fc2916363dec730b76d938fa33f14743860a:log:2', 'hash': '0xbd47b72668a5453ec3987a84ae53fc2916363dec730b76d938fa33f14743860a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 7166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0184783a38e7a1380000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T21:51:14.000Z'}}, {'blockNum': '0x989fb4', 'uniqueId': '0x4d462801b85e852715ea16f33b2edf46d7bca69341cfb24982371bc54787a811:log:26', 'hash': '0x4d462801b85e852715ea16f33b2edf46d7bca69341cfb24982371bc54787a811', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 3360, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xb6255df5f500800000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T22:05:55.000Z'}}, {'blockNum': '0x989fed', 'uniqueId': '0xbf5f861e89deecc7d1d47439b6e6fb46d08a6907fc7175d98c18fbd15cf99e64:log:3', 'hash': '0xbf5f861e89deecc7d1d47439b6e6fb46d08a6907fc7175d98c18fbd15cf99e64', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa4e83b02cb12480000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T22:19:27.000Z'}}, {'blockNum': '0x98a01b', 'uniqueId': '0x95ce73135460bd46989caaca6020a0163d18b5bc0e65691bfc5b5449d8b7b1dc:log:2', 'hash': '0x95ce73135460bd46989caaca6020a0163d18b5bc0e65691bfc5b5449d8b7b1dc', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x7680d81a135be80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T22:30:07.000Z'}}, {'blockNum': '0x98a01c', 'uniqueId': '0x0035b9c348176ccff6c0922c0b2ea95ecc12e4edbc5cafceea0dffa68d63f1ef:log:70', 'hash': '0x0035b9c348176ccff6c0922c0b2ea95ecc12e4edbc5cafceea0dffa68d63f1ef', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3360, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xb6255df5f500800000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T22:30:30.000Z'}}, {'blockNum': '0x98a063', 'uniqueId': '0xf4fb2e1cc45d4e6bd72bc17e4ccff703f5758951bda1707a98519bf234eceb61:log:158', 'hash': '0xf4fb2e1cc45d4e6bd72bc17e4ccff703f5758951bda1707a98519bf234eceb61', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 11052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0257214f93fe91300000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T22:48:11.000Z'}}, {'blockNum': '0x98a099', 'uniqueId': '0x7acea6466bdc86fcca17e3136e4282608c880b533ef84dbe3880e8bbdb96e657:log:50', 'hash': '0x7acea6466bdc86fcca17e3136e4282608c880b533ef84dbe3880e8bbdb96e657', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0257214f93fe91300000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-04T22:59:52.000Z'}}, {'blockNum': '0x98a39c', 'uniqueId': '0xd266f3681e44468bca3c81ab561504c37079473fa45b76ac56a268e690bcdf5c:log:8', 'hash': '0xd266f3681e44468bca3c81ab561504c37079473fa45b76ac56a268e690bcdf5c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 13808.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x02ec890c95de60c40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-05T01:44:26.000Z'}}, {'blockNum': '0x98a3a4', 'uniqueId': '0x2e9c2f4e2376ad224e6da96ad99bb04d1135a607db59e133455a489f228edf03:log:2', 'hash': '0x2e9c2f4e2376ad224e6da96ad99bb04d1135a607db59e133455a489f228edf03', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 3511.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xbe5577d5b67b800000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-05T01:46:36.000Z'}}, {'blockNum': '0x98a43d', 'uniqueId': '0xb65773719a101d6f3e10101d47cd23fa5e6473c747a19b3b63bf990073251366:log:166', 'hash': '0xb65773719a101d6f3e10101d47cd23fa5e6473c747a19b3b63bf990073251366', 'from': '0x144769d175da9836db34ea5c989e71c38dcd23c9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12713.957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x02b13998f2119f108000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-05T02:20:57.000Z'}}, {'blockNum': '0x98a43d', 'uniqueId': '0xcd23ae26d13e928335f879eb2dce74d4393cd1ac3e289e62688df3466294a236:log:169', 'hash': '0xcd23ae26d13e928335f879eb2dce74d4393cd1ac3e289e62688df3466294a236', 'from': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 19965.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x043a5b37acdcfa730000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-05T02:20:57.000Z'}}, {'blockNum': '0x98a43d', 'uniqueId': '0x01489d86c04a131716c28600e75fdf862facf59eed6ae0067ca701169d402114:log:170', 'hash': '0x01489d86c04a131716c28600e75fdf862facf59eed6ae0067ca701169d402114', 'from': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 6818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01719ac1dcb015480000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-05T02:20:57.000Z'}}, {'blockNum': '0x98a4d2', 'uniqueId': '0x5752640757fc0896d2a8470b42977219e1fb774e58964e342109b138f9e49a1e:log:36', 'hash': '0x5752640757fc0896d2a8470b42977219e1fb774e58964e342109b138f9e49a1e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc3efb06951655e3cbb8bc10421f74c931958cafe', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-05-05T02:53:57.000Z'}}]}}
Number of returned transfers:  47
Answer is complete
 
symbol             ONG
group              BPF
date        2020-05-26
hour             16:00
exchange       binance
Name: 826, dtype: object
HERE
{'ontology': ''}
No contract for ethereum specified
 Symbol: ONG, Contract: 
Datetime timestamps:  2020-05-26 16:00:00 2020-05-26 04:00:00 2020-05-27 04:00:00
Unix timestamps:  1590458400.0 1590544800.0
Hex Block Numbers:  0x9ab3a2 0x9accfd
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIA
group              BPF
date        2020-05-29
hour             15:59
exchange       binance
Name: 827, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2020-05-29 15:59:00 2020-05-29 03:59:00 2020-05-30 03:59:00
Unix timestamps:  1590717540.0 1590803940.0
Hex Block Numbers:  0x9aff28 0x9b1859
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NAS
group              BPF
date        2020-05-30
hour             16:00
exchange       binance
Name: 828, dtype: object
HERE
 Symbol: NAS, Contract: 0x5d65d971895edc438f465c17db6992698a52318d
Datetime timestamps:  2020-05-30 16:00:00 2020-05-30 04:00:00 2020-05-31 04:00:00
Unix timestamps:  1590804000.0 1590890400.0
Hex Block Numbers:  0x9b185f 0x9b3197
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            CTXC
group              BPF
date        2020-06-03
hour             16:00
exchange       binance
Name: 829, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CTXC, Contract: 
Datetime timestamps:  2020-06-03 16:00:00 2020-06-03 04:00:00 2020-06-04 04:00:00
Unix timestamps:  1591149600.0 1591236000.0
Hex Block Numbers:  0x9b7cf3 0x9b960d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             PPT
group              BPF
date        2020-06-08
hour             16:05
exchange       binance
Name: 830, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-06-08 16:05:00 2020-06-08 04:05:00 2020-06-09 04:05:00
Unix timestamps:  1591581900.0 1591668300.0
Hex Block Numbers:  0x9bfaeb 0x9c1417
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9bfaf8', 'uniqueId': '0xaa774a412cedfd955ac2d886257bc4f00f16d622ec4b1d55d0c27122b93ec7e8:log:69', 'hash': '0xaa774a412cedfd955ac2d886257bc4f00f16d622ec4b1d55d0c27122b93ec7e8', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:07:31.000Z'}}, {'blockNum': '0x9bfafa', 'uniqueId': '0xcde101316e0f0c2b2a6b2e2059f5927a7986d1f0dc3eb7c7e82efdbec89c1609:log:16', 'hash': '0xcde101316e0f0c2b2a6b2e2059f5927a7986d1f0dc3eb7c7e82efdbec89c1609', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x213423341652d5daaa4fcbee71641f874b9903ea', 'value': 338.95888712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07e45a3748', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:07:47.000Z'}}, {'blockNum': '0x9bfbc3', 'uniqueId': '0x89e2d24bd87543bd61d63b13e80ce72744bea090e80aab711254c980522a9d99:log:14', 'hash': '0x89e2d24bd87543bd61d63b13e80ce72744bea090e80aab711254c980522a9d99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x847c0d83f3f35a3d4eb8f121406c5445cb235264', 'value': 107.91089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028332f368', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:50:47.000Z'}}, {'blockNum': '0x9bfc53', 'uniqueId': '0x7bde4a7038e391c91be8994fd6dfde3a5037b890080d056f5e61f93d9a13242d:log:80', 'hash': '0x7bde4a7038e391c91be8994fd6dfde3a5037b890080d056f5e61f93d9a13242d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 114.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02a7abf8c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T03:24:26.000Z'}}, {'blockNum': '0x9bfc5b', 'uniqueId': '0x1593a1bc92e1a21208f6cff7a8dd62fef8b6ead230f47f1f1d8c556713f1beec:log:14', 'hash': '0x1593a1bc92e1a21208f6cff7a8dd62fef8b6ead230f47f1f1d8c556713f1beec', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xde75a7a52a7a68b2e14e168d4dfdda58208df304', 'value': 114.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02a7abf8c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T03:26:24.000Z'}}, {'blockNum': '0x9bfdbc', 'uniqueId': '0x705851dd64c871b3695c6328b2ede458d13f6414218a4243f3bf0d1358845398:log:76', 'hash': '0x705851dd64c871b3695c6328b2ede458d13f6414218a4243f3bf0d1358845398', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x5d1d240f781f1caa0771a047f31379cb36cc0ed3', 'value': 173.44137612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0409ca898c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:44:43.000Z'}}, {'blockNum': '0x9bfdd3', 'uniqueId': '0x627be615b1b0b2684fdefc4c993d96a1128b22a65201edc3489e7f2c41f6a449:log:12', 'hash': '0x627be615b1b0b2684fdefc4c993d96a1128b22a65201edc3489e7f2c41f6a449', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 259.509212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x060acba1f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:49:57.000Z'}}, {'blockNum': '0x9bfded', 'uniqueId': '0x5239eaa6267a906ab25312ee2fe403f65fc2689c68ed0db02e1c6b51be191fc6:log:137', 'hash': '0x5239eaa6267a906ab25312ee2fe403f65fc2689c68ed0db02e1c6b51be191fc6', 'from': '0x9276d54352c9bf8440a34cc98303d8141c9055be', 'to': '0xcd4ad53757e734dbb2b073e1b277471520f8617e', 'value': 1483.59965968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x228af16d10', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:54:59.000Z'}}, {'blockNum': '0x9bfe2d', 'uniqueId': '0xcdc281865bb168aba509f47be3ac94c1498a17ea8b02068e4ec091cf7735811c:log:154', 'hash': '0xcdc281865bb168aba509f47be3ac94c1498a17ea8b02068e4ec091cf7735811c', 'from': '0xf9b7818d61e7562e4636da7e7892d6d2ef8e525c', 'to': '0xa24c6a0df9e8581699056e19acdc46da70a3f291', 'value': 139.67965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03408e3b48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T05:09:54.000Z'}}, {'blockNum': '0x9bfebf', 'uniqueId': '0x89eb8014d73249e7c006ca9cf7f314b3a72e352835c9f77aa11719d77a8c747d:log:40', 'hash': '0x89eb8014d73249e7c006ca9cf7f314b3a72e352835c9f77aa11719d77a8c747d', 'from': '0xe569448c95e19bdfce0f50c0ef5c04b647e23050', 'to': '0x4314ede64153cf0be702514c2990a5f67b656202', 'value': 207.37079432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04d406b888', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T05:38:45.000Z'}}, {'blockNum': '0x9bff2c', 'uniqueId': '0xde56cf3bd16009a91a1083eba73bd937b5f8bbfa3542977c52687d8323034855:log:71', 'hash': '0xde56cf3bd16009a91a1083eba73bd937b5f8bbfa3542977c52687d8323034855', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf6e9ed8be6b06a20ceb4504b5b2654a099be0413', 'value': 7356.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xab48d49920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T06:05:52.000Z'}}, {'blockNum': '0x9c001f', 'uniqueId': '0x5e4dc95bd9828143bfccc0f5954bbfd570a4672311f535fb82800c4419dc2eef:log:118', 'hash': '0x5e4dc95bd9828143bfccc0f5954bbfd570a4672311f535fb82800c4419dc2eef', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'value': 3181.94460841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4a15de28a9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:00:42.000Z'}}, {'blockNum': '0x9c0038', 'uniqueId': '0x248c03acee1ef7a1a91d32b0496bc64ee160873c29249e95d15a659927beb215:log:153', 'hash': '0x248c03acee1ef7a1a91d32b0496bc64ee160873c29249e95d15a659927beb215', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xb2d553ab61ec7ec3d3df58d460fdcfef38b42192', 'value': 7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29b92700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:06:59.000Z'}}, {'blockNum': '0x9c00e1', 'uniqueId': '0xfbfaf4248e72b3570cfabb2b876a15d25e46b037e31092d14b5c03ff72d8ecf9:log:82', 'hash': '0xfbfaf4248e72b3570cfabb2b876a15d25e46b037e31092d14b5c03ff72d8ecf9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 106.12286332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02788aa37c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:47:20.000Z'}}, {'blockNum': '0x9c00e7', 'uniqueId': '0x649716641a2a5570be0f8d3d406ff781cb18f7311fbb7b1c4a4427222433b26a:log:163', 'hash': '0x649716641a2a5570be0f8d3d406ff781cb18f7311fbb7b1c4a4427222433b26a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbd62be0448ecf0f9a79eb09f2dcb75647b41bb5f', 'value': 106.12286332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02788aa37c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:48:51.000Z'}}, {'blockNum': '0x9c0121', 'uniqueId': '0x73d06fb2793b56fe784c7fb81220035c96414dd475fb850eb166dfba981991a0:log:24', 'hash': '0x73d06fb2793b56fe784c7fb81220035c96414dd475fb850eb166dfba981991a0', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x698fa6437475f3f86df33ea0cb612ad529954811', 'value': 108.31243952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028597aab0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:01:33.000Z'}}, {'blockNum': '0x9c0200', 'uniqueId': '0x847d61aa8b094d69d330a17d3fd4ae541d13802c60504b42029643d24b9f9d26:log:42', 'hash': '0x847d61aa8b094d69d330a17d3fd4ae541d13802c60504b42029643d24b9f9d26', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:51:23.000Z'}}, {'blockNum': '0x9c020b', 'uniqueId': '0x03345e0a69bdf4423c0c0893cebf39088f0637d30aa81846b112405570b38101:log:139', 'hash': '0x03345e0a69bdf4423c0c0893cebf39088f0637d30aa81846b112405570b38101', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xec4f69ea443bc2219dcb10cc8d007e4123a9ce6b', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:54:22.000Z'}}, {'blockNum': '0x9c02e6', 'uniqueId': '0xee6fb3f62eac86957c4647fc0e2b6f4cd9666d8e38ad3c8d24d7d3ccbd3ec943:log:165', 'hash': '0xee6fb3f62eac86957c4647fc0e2b6f4cd9666d8e38ad3c8d24d7d3ccbd3ec943', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x334ae73b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:42:16.000Z'}}, {'blockNum': '0x9c02e9', 'uniqueId': '0xca9cf0e6c511f9da8c363c13d18969f6d3253527aeb46c089384a3f05fbde5b7:log:4', 'hash': '0xca9cf0e6c511f9da8c363c13d18969f6d3253527aeb46c089384a3f05fbde5b7', 'from': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'to': '0x0c4fe355d6cb9de761afbc008cfa74c07711df9f', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:43:32.000Z'}}, {'blockNum': '0x9c02fb', 'uniqueId': '0x4e11b3d880a0286d25e25b7ac3a21c0919873bcd6e2d928a4d585cad02bc8c51:log:46', 'hash': '0x4e11b3d880a0286d25e25b7ac3a21c0919873bcd6e2d928a4d585cad02bc8c51', 'from': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'to': '0x4b16cc10e4e1c979fab50c4e67b81ec62ceb9c60', 'value': 2145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x31f1324100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:48:32.000Z'}}, {'blockNum': '0x9c0341', 'uniqueId': '0xd6040de59d2eff8c7dff43da2d262d06ebc934740125969bf071a42c5ab99343:log:22', 'hash': '0xd6040de59d2eff8c7dff43da2d262d06ebc934740125969bf071a42c5ab99343', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3dc044f6957c2cb036d9cde1153f724295dc5bf5', 'value': 8186.13821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbe992f9e48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:02:17.000Z'}}, {'blockNum': '0x9c035b', 'uniqueId': '0xc0ed033a3a9036139c6b1b3267e449f6e664528969577fdd6dbdc67b1911a576:log:10', 'hash': '0xc0ed033a3a9036139c6b1b3267e449f6e664528969577fdd6dbdc67b1911a576', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 38603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0382cbcf6b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:08:39.000Z'}}, {'blockNum': '0x9c037c', 'uniqueId': '0xb3ae67553cee762bf4e35502bfb6cd2f8d76b00854f98536f217465bf8341a7d:log:46', 'hash': '0xb3ae67553cee762bf4e35502bfb6cd2f8d76b00854f98536f217465bf8341a7d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'value': 1000.13375754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174943010a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:16:59.000Z'}}, {'blockNum': '0x9c0388', 'uniqueId': '0x69a214d5dec424cf06952e42e78dedc94556b01f675ba7f33599c4881aa47487:log:90', 'hash': '0x69a214d5dec424cf06952e42e78dedc94556b01f675ba7f33599c4881aa47487', 'from': '0x1fd7730672009e7ebbe31c01c6fb22d14950354c', 'to': '0xcde6edc4fc380c8fdda959437606eb82009b5456', 'value': 2001.13331511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e97af1d37', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:19:17.000Z'}}, {'blockNum': '0x9c03d5', 'uniqueId': '0x09fed3619eb39f4fdf1dae98281ae68a998561b888c7eff4a4903ec747f26187:log:4', 'hash': '0x09fed3619eb39f4fdf1dae98281ae68a998561b888c7eff4a4903ec747f26187', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:37:50.000Z'}}, {'blockNum': '0x9c0400', 'uniqueId': '0x78db6097c440b6b1c585a7f5615db8bf42e9a237f99792c52700ceed27830da5:log:38', 'hash': '0x78db6097c440b6b1c585a7f5615db8bf42e9a237f99792c52700ceed27830da5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'value': 3000.1115179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45da0ee1ae', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:46:07.000Z'}}, {'blockNum': '0x9c041f', 'uniqueId': '0x83b0f4f0374aa549d316d2f9c2574cddfb7046a29e23e9bb782a2c5044aa6fd7:log:12', 'hash': '0x83b0f4f0374aa549d316d2f9c2574cddfb7046a29e23e9bb782a2c5044aa6fd7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x168dd267b78d175024f70de1244a654f2909b0bb', 'value': 130.846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x030be726c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:52:52.000Z'}}, {'blockNum': '0x9c0420', 'uniqueId': '0x1917936160854817a34489ddf702806d344357b0c8664ebca54e690c195d5796:log:65', 'hash': '0x1917936160854817a34489ddf702806d344357b0c8664ebca54e690c195d5796', 'from': '0xe184a8d3a892930221284832d68c77f0d84b9382', 'to': '0x5ab1e75aeefa5883463e170d7229e5f51ece8ad1', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:52:56.000Z'}}, {'blockNum': '0x9c0459', 'uniqueId': '0xfb9ed49759798004346860dab88812ff919a8f364a46954da71330f75ea5a29b:log:203', 'hash': '0xfb9ed49759798004346860dab88812ff919a8f364a46954da71330f75ea5a29b', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:06:38.000Z'}}, {'blockNum': '0x9c04f3', 'uniqueId': '0xeba72424a744dff1539f35c8401150bcdc0a2aa1823aa11cd8290bb33c7ae286:log:74', 'hash': '0xeba72424a744dff1539f35c8401150bcdc0a2aa1823aa11cd8290bb33c7ae286', 'from': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'to': '0xc1eaeb22ac0f9c1022cc8e7866dc50fbf8c2bdd1', 'value': 45.53773145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x010f6d1059', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:39:19.000Z'}}, {'blockNum': '0x9c0517', 'uniqueId': '0x6128c13360ffe035b465958ac54f5ee326529ff7571205cae5a65492ddee9f24:log:67', 'hash': '0x6128c13360ffe035b465958ac54f5ee326529ff7571205cae5a65492ddee9f24', 'from': '0xec4f69ea443bc2219dcb10cc8d007e4123a9ce6b', 'to': '0x698fa6437475f3f86df33ea0cb612ad529954811', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:48:43.000Z'}}, {'blockNum': '0x9c05c5', 'uniqueId': '0x009f3f63ac7bb662aec3c3af80314c2d4c63394f151b801b264782516e5a3fef:log:9', 'hash': '0x009f3f63ac7bb662aec3c3af80314c2d4c63394f151b801b264782516e5a3fef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8df0a8d77e274e6fa79dd02c81a29e02b08f36ef', 'value': 2251.80299435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x346dcab0ab', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T12:29:33.000Z'}}, {'blockNum': '0x9c0633', 'uniqueId': '0x2158615eec41bdc2e95caefcb795ac437c7d161b5ef6e3df60728f1eaec8745e:log:148', 'hash': '0x2158615eec41bdc2e95caefcb795ac437c7d161b5ef6e3df60728f1eaec8745e', 'from': '0x18297afcbada55d7168598d197048bff5d0070ac', 'to': '0x0812341e41a6edfb3c34382d631f0617612ec50f', 'value': 1901.224067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2c442db32c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T12:53:25.000Z'}}, {'blockNum': '0x9c0655', 'uniqueId': '0xcc78d61464f75820f13862a3b22e8a98efda0a1ebae9f3af4c337a0ecfc42def:log:212', 'hash': '0xcc78d61464f75820f13862a3b22e8a98efda0a1ebae9f3af4c337a0ecfc42def', 'from': '0x414120ec6fd7d6ba58738c4e3149dd57e4216ca1', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 99.14647891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024ef58553', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:01:21.000Z'}}, {'blockNum': '0x9c065a', 'uniqueId': '0xa1fe0516399c38e080ee3e9587f131588be5348d0838df49221f45a7f15dd3db:log:38', 'hash': '0xa1fe0516399c38e080ee3e9587f131588be5348d0838df49221f45a7f15dd3db', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0812341e41a6edfb3c34382d631f0617612ec50f', 'value': 553.72107241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ce46f4de9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:02:35.000Z'}}, {'blockNum': '0x9c069b', 'uniqueId': '0x495065846a9994a8e006798a7dc31a216a068be9423ada5af169f2c8dcf2964a:log:30', 'hash': '0x495065846a9994a8e006798a7dc31a216a068be9423ada5af169f2c8dcf2964a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x15709a7060cd2190b76a74b73959114fd3fdfe1d', 'value': 391.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0920620380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:15:11.000Z'}}, {'blockNum': '0x9c072f', 'uniqueId': '0x982fc77537b19dbea065040c0a69dd3c3a25335106b604614c3ebcf2eb3fd93b:log:109', 'hash': '0x982fc77537b19dbea065040c0a69dd3c3a25335106b604614c3ebcf2eb3fd93b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 2962.837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44fbe27b20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:45:55.000Z'}}, {'blockNum': '0x9c0752', 'uniqueId': '0x9caff2ef68817514c1e8e213372a230b86de8a24c0c9a4d52cc3c41c1a756141:log:92', 'hash': '0x9caff2ef68817514c1e8e213372a230b86de8a24c0c9a4d52cc3c41c1a756141', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2c5aaf5100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:53:15.000Z'}}, {'blockNum': '0x9c075a', 'uniqueId': '0xe297911a83d22a0acd9af845d5660a9a6d88849616be36acc331797ae0c89cd8:log:169', 'hash': '0xe297911a83d22a0acd9af845d5660a9a6d88849616be36acc331797ae0c89cd8', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf648c64943c25bacb238b166bbc27ad4365d4927', 'value': 469.86850437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0af0a27085', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:55:59.000Z'}}, {'blockNum': '0x9c0765', 'uniqueId': '0x9c336b367dfdb92879c06b06367320d5066f37bb43e29cbf03a7893a57479b08:log:128', 'hash': '0x9c336b367dfdb92879c06b06367320d5066f37bb43e29cbf03a7893a57479b08', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0x0d5152803744465e358c4baaa7b5d9c022e9471d', 'value': 39.71990652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xecbfc47c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:59:53.000Z'}}, {'blockNum': '0x9c0775', 'uniqueId': '0x3eabd6eb0c5794b28471b2a277cc9314e39a899540ca4937f7b6debbbca3d426:log:69', 'hash': '0x3eabd6eb0c5794b28471b2a277cc9314e39a899540ca4937f7b6debbbca3d426', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x9ae2c02c243e3223402bbccbfcf77132e0b4b6fc', 'value': 773.45851918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12022c0a0e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:04:05.000Z'}}, {'blockNum': '0x9c077a', 'uniqueId': '0x7d621164130b2287b8271b4abba7b23e7887e18d49d62edf60602c3ece2dd4cf:log:161', 'hash': '0x7d621164130b2287b8271b4abba7b23e7887e18d49d62edf60602c3ece2dd4cf', 'from': '0x0d5152803744465e358c4baaa7b5d9c022e9471d', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 39.71990652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xecbfc47c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:05:04.000Z'}}, {'blockNum': '0x9c07ec', 'uniqueId': '0xf14701ff02c2f748da8ebfa78413a0f0102154393f8d00f1852a192a02cc319a:log:167', 'hash': '0xf14701ff02c2f748da8ebfa78413a0f0102154393f8d00f1852a192a02cc319a', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5fa5968c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:31:05.000Z'}}, {'blockNum': '0x9c081a', 'uniqueId': '0x54313e64dc44fb1baeafd5328960a0810cc190c4569276c46aa9eb3edcd6265d:log:62', 'hash': '0x54313e64dc44fb1baeafd5328960a0810cc190c4569276c46aa9eb3edcd6265d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb47f2e40da0e388e1a8776334ec72924541cb268', 'value': 35560.381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033bf4634420', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:43:15.000Z'}}, {'blockNum': '0x9c084d', 'uniqueId': '0x8c536d92a3ff02e28ecd4302b749594a3d55a33e2088b2cdbe70093139ea27b9:log:71', 'hash': '0x8c536d92a3ff02e28ecd4302b749594a3d55a33e2088b2cdbe70093139ea27b9', 'from': '0x6f4a21a9dd493c1c6958f66dddbdfee92927ad38', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x067ef83700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:57:57.000Z'}}, {'blockNum': '0x9c0863', 'uniqueId': '0x8657148d93dc815a20abe7b765509c60046a0b8a5a42512de98f14f16694c0b0:log:25', 'hash': '0x8657148d93dc815a20abe7b765509c60046a0b8a5a42512de98f14f16694c0b0', 'from': '0x414120ec6fd7d6ba58738c4e3149dd57e4216ca1', 'to': '0xf3c1c794cf73d4d4ccbd97f2bcadee31d39a6847', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:03:04.000Z'}}, {'blockNum': '0x9c0868', 'uniqueId': '0x4857fc1638b7df999dca58c4bb3cd69036c387bd6d03e43be1f16bce159799a5:log:0', 'hash': '0x4857fc1638b7df999dca58c4bb3cd69036c387bd6d03e43be1f16bce159799a5', 'from': '0xf3c1c794cf73d4d4ccbd97f2bcadee31d39a6847', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:04:28.000Z'}}, {'blockNum': '0x9c08c7', 'uniqueId': '0x2858034c4dadbdf5b8d59f34a659f16df20e3bea1862e646455b0892c13ff980:log:31', 'hash': '0x2858034c4dadbdf5b8d59f34a659f16df20e3bea1862e646455b0892c13ff980', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24ff2d9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:26:03.000Z'}}, {'blockNum': '0x9c08d4', 'uniqueId': '0x6b928bed43a5ad0d00d248cc29ae1bea01586c42d8e8cadfd0d07305062a2ca6:log:52', 'hash': '0x6b928bed43a5ad0d00d248cc29ae1bea01586c42d8e8cadfd0d07305062a2ca6', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2962.837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44fbe27b20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:29:27.000Z'}}, {'blockNum': '0x9c0911', 'uniqueId': '0x3395bcd85ce2a76e733f17952b27a802e9d42dd3fde3bda2101323185aa013fb:log:58', 'hash': '0x3395bcd85ce2a76e733f17952b27a802e9d42dd3fde3bda2101323185aa013fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 823.67125897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x132d769989', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:40:02.000Z'}}, {'blockNum': '0x9c0919', 'uniqueId': '0x58062af473099d6f618cd073ab4c491bd5761ffc1e8d9f7a3ea5a40c3db25272:log:117', 'hash': '0x58062af473099d6f618cd073ab4c491bd5761ffc1e8d9f7a3ea5a40c3db25272', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x91d7ad5b71150f754a03747b9e4c4d17b3a0ed4d', 'value': 823.67125897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x132d769989', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:42:15.000Z'}}, {'blockNum': '0x9c092d', 'uniqueId': '0x9582217b1cbaf3a6d847dae35ad37fd128cfc43a587c8b273e93607fd353c6df:log:37', 'hash': '0x9582217b1cbaf3a6d847dae35ad37fd128cfc43a587c8b273e93607fd353c6df', 'from': '0x2be9dd83cf54d2d0b81e2e7efbb78e8e2b78700e', 'to': '0x86debe91fefbda4001fcdc8b3da72b0e4cdab0d4', 'value': 21885.03033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8cf224a8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:45:30.000Z'}}, {'blockNum': '0x9c0986', 'uniqueId': '0xe53e67e01c117e73ee1f8c5560fa7e24c822e3c549078dc88546e74abe2a3a21:log:123', 'hash': '0xe53e67e01c117e73ee1f8c5560fa7e24c822e3c549078dc88546e74abe2a3a21', 'from': '0x106f9c54536d33bdba8b371fbab696e86f51f941', 'to': '0xf7c8adddc63b1df0de12b5307126117f2afd5c17', 'value': 1193.69923701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1bcb007c75', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:59:05.000Z'}}, {'blockNum': '0x9c09a5', 'uniqueId': '0x3b41264ac0af01bb7e22b0efcc9a62c1928245038fecb310c833944877ca9234:log:1', 'hash': '0x3b41264ac0af01bb7e22b0efcc9a62c1928245038fecb310c833944877ca9234', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 3685.287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x55ce05b260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:05:43.000Z'}}, {'blockNum': '0x9c09a5', 'uniqueId': '0xaf5f1750a1277c2e27c6c3f953e38558e84b960623afd9e0781a935aff8d26ae:log:2', 'hash': '0xaf5f1750a1277c2e27c6c3f953e38558e84b960623afd9e0781a935aff8d26ae', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 528.869719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c504f25fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:05:43.000Z'}}, {'blockNum': '0x9c09ab', 'uniqueId': '0xe0a635ad87524b166978ac5a4570fc7945061aaf227a13d1ce735de7852e1694:log:27', 'hash': '0xe0a635ad87524b166978ac5a4570fc7945061aaf227a13d1ce735de7852e1694', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 590.67657473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0dc0b4ed01', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:06:31.000Z'}}, {'blockNum': '0x9c09ab', 'uniqueId': '0x20e038ed04c94d8e219ed1b3ded4d2e6758a1aa75ba49da11b2b271941870090:log:46', 'hash': '0x20e038ed04c94d8e219ed1b3ded4d2e6758a1aa75ba49da11b2b271941870090', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x275f253b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:06:31.000Z'}}, {'blockNum': '0x9c09ae', 'uniqueId': '0xaf8a1c73c05b7e539c89c7d1849f00eeea297aebd3b4e9a11516881a254b68d5:log:3', 'hash': '0xaf8a1c73c05b7e539c89c7d1849f00eeea297aebd3b4e9a11516881a254b68d5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe55494e7434408e7074eb03d8ca124f9151fce1d', 'value': 1837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ac55f8d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:07:34.000Z'}}, {'blockNum': '0x9c09b2', 'uniqueId': '0x02d85876c7c7077c46c8c95d57391d82e83bd56604dfc161d6827879a294dea7:log:3', 'hash': '0x02d85876c7c7077c46c8c95d57391d82e83bd56604dfc161d6827879a294dea7', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 11.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x42758cc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:36.000Z'}}, {'blockNum': '0x9c09b2', 'uniqueId': '0xc11da8e7664431c78265d44517552dc7ddf822123b93336dcb33ff5e9541663c:log:134', 'hash': '0xc11da8e7664431c78265d44517552dc7ddf822123b93336dcb33ff5e9541663c', 'from': '0x54a5a4a492048080000ef50f90c69810716b207d', 'to': '0xd137e8cc2a71c4d9e28940d21cedbd80b7506981', 'value': 218.575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0516cefb60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:36.000Z'}}, {'blockNum': '0x9c09b4', 'uniqueId': '0xaccfc11f03ff851d6cde9b19033abe47894fed892b6f738635669f4841e6c057:log:50', 'hash': '0xaccfc11f03ff851d6cde9b19033abe47894fed892b6f738635669f4841e6c057', 'from': '0xafb8cc48ca7c4aa79788912f564398434c8af68e', 'to': '0xa06a9a3cd5a748e6786d53c605507d68ef02315f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:49.000Z'}}, {'blockNum': '0x9c09b5', 'uniqueId': '0x64a904d0386a331e481b3b53a4fd5b33ab1f20614cc1347c925d7ed4a6450775:log:44', 'hash': '0x64a904d0386a331e481b3b53a4fd5b33ab1f20614cc1347c925d7ed4a6450775', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x90c72d9f8a299896b295b04813a9526c584fd7bc', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:04.000Z'}}, {'blockNum': '0x9c09b7', 'uniqueId': '0xf05b9c71d80e64e1dd222d5b25d3f2cfa129cb394bbd364fc2a8764312fda5b1:log:2', 'hash': '0xf05b9c71d80e64e1dd222d5b25d3f2cfa129cb394bbd364fc2a8764312fda5b1', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf122f0d45acf90e9d494c04eeb0719bab65b7be8', 'value': 7925.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb88767a8a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:09.000Z'}}, {'blockNum': '0x9c09b8', 'uniqueId': '0xe6353e3cea72af11ef8c3da512b73a7793ad2a86353079cd07e8e210f637f553:log:112', 'hash': '0xe6353e3cea72af11ef8c3da512b73a7793ad2a86353079cd07e8e210f637f553', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf648c64943c25bacb238b166bbc27ad4365d4927', 'value': 40.40922022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf0db93a6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:11.000Z'}}, {'blockNum': '0x9c09bc', 'uniqueId': '0x56796eb5db0f95cb589452f3678b845185019b1076381febf542252723c96b5e:log:39', 'hash': '0x56796eb5db0f95cb589452f3678b845185019b1076381febf542252723c96b5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'value': 104.25775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026d6cb398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:18.000Z'}}, {'blockNum': '0x9c09bc', 'uniqueId': '0x42687dcfdd945d447072d6b48f0330a67d3cca2ecdb1104f064caed684c22c59:log:56', 'hash': '0x42687dcfdd945d447072d6b48f0330a67d3cca2ecdb1104f064caed684c22c59', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'value': 1345.16605763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1f51d08343', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:18.000Z'}}, {'blockNum': '0x9c09be', 'uniqueId': '0xb8ce97c94f67e4788d1dede4df4e24a785df9b2ea4f788e3ac55f8cc5f61778b:log:24', 'hash': '0xb8ce97c94f67e4788d1dede4df4e24a785df9b2ea4f788e3ac55f8cc5f61778b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 7304.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaa14e51dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:24.000Z'}}, {'blockNum': '0x9c09c1', 'uniqueId': '0xdd07436167468e1bd68f1fc46c98b43d125962d81a120c04dde4d62e9e08f8cd:log:107', 'hash': '0xdd07436167468e1bd68f1fc46c98b43d125962d81a120c04dde4d62e9e08f8cd', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x8752f02f5d99c80f6e4948bba6a0bfc8e9df0fbd', 'value': 1345.16605763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1f51d08343', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:11:10.000Z'}}, {'blockNum': '0x9c09c4', 'uniqueId': '0xc97193efe004751246addc214e9f09898a31b7f11341da0b3b3c2edf0d3c135b:log:11', 'hash': '0xc97193efe004751246addc214e9f09898a31b7f11341da0b3b3c2edf0d3c135b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7039b74e59ecaed4d7501016bea9f7805c137b98', 'value': 215.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05059cd240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:00.000Z'}}, {'blockNum': '0x9c09c4', 'uniqueId': '0x70b992094772629cab822f46e179563d375c5354ca527970c9c40e0105d2413f:log:14', 'hash': '0x70b992094772629cab822f46e179563d375c5354ca527970c9c40e0105d2413f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1432.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x215d39f480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:00.000Z'}}, {'blockNum': '0x9c09c8', 'uniqueId': '0x09834911e70eff47b8bb9c62b2690e8f8ce908be1e0faee437f2e15e464d82cd:log:57', 'hash': '0x09834911e70eff47b8bb9c62b2690e8f8ce908be1e0faee437f2e15e464d82cd', 'from': '0x7039b74e59ecaed4d7501016bea9f7805c137b98', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 215.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05059cd240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:46.000Z'}}, {'blockNum': '0x9c09c9', 'uniqueId': '0xaee7c2f2fef5b176f618e2bf65afee8f1370b13cc071823612d2a90fdb895109:log:4', 'hash': '0xaee7c2f2fef5b176f618e2bf65afee8f1370b13cc071823612d2a90fdb895109', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'value': 811.0148356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12e2066e28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:00.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x7bc8a0482d14d1709644c2bd95162e5349ec751af776b081d18ffef214fc42f8:log:10', 'hash': '0x7bc8a0482d14d1709644c2bd95162e5349ec751af776b081d18ffef214fc42f8', 'from': '0xb12157c9d242ab7e0560ba8aef0e1b75caa8b6d8', 'to': '0x8fc5a4f0ee65ab422ba1bc27094103318d61c8a2', 'value': 1693.264701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x276ca4e3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x66305fa9f703f9285b9bc51445b794c3d8b8d688f15fb8b67b455ca5ee977162:log:32', 'hash': '0x66305fa9f703f9285b9bc51445b794c3d8b8d688f15fb8b67b455ca5ee977162', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x328c2b1b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x7c2a1324e332453af6f8a2bfde9dec35ad488b94a2dc50f4ec16ed1fcc83d842:log:90', 'hash': '0x7c2a1324e332453af6f8a2bfde9dec35ad488b94a2dc50f4ec16ed1fcc83d842', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x8752f02f5d99c80f6e4948bba6a0bfc8e9df0fbd', 'value': 811.0148356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12e2066e28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09ce', 'uniqueId': '0xd057450683858abfe502b84c0454c1065f191939d5049f82753ab004a63a948d:log:2', 'hash': '0xd057450683858abfe502b84c0454c1065f191939d5049f82753ab004a63a948d', 'from': '0x8fc5a4f0ee65ab422ba1bc27094103318d61c8a2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1693.264701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x276ca4e3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:05.000Z'}}, {'blockNum': '0x9c09cf', 'uniqueId': '0x4f169e1ebf04fab6c9c89714c5a8f3b20e9cde34fb2397570112502ceeffc72a:log:22', 'hash': '0x4f169e1ebf04fab6c9c89714c5a8f3b20e9cde34fb2397570112502ceeffc72a', 'from': '0x72e5263ff33d2494692d7f94a758aa9f82062f73', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 3374.98636507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4e947c80db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:12.000Z'}}, {'blockNum': '0x9c09cf', 'uniqueId': '0xa4ed05e078b59e9fff6cd93aed656e224a7b2dc2a9fd8ce15557b2a898540d95:log:32', 'hash': '0xa4ed05e078b59e9fff6cd93aed656e224a7b2dc2a9fd8ce15557b2a898540d95', 'from': '0x06450acadae3710f5d6d49993af84cda952ec72e', 'to': '0x28b5966e6b106fee16be8015b932ef73648cb957', 'value': 1000.15614622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749652a9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:12.000Z'}}, {'blockNum': '0x9c09d1', 'uniqueId': '0x7af50a561d5efb8625e936d2cbfbfc7025d2cc111b0574f14c641b77db231c3a:log:18', 'hash': '0x7af50a561d5efb8625e936d2cbfbfc7025d2cc111b0574f14c641b77db231c3a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 3338.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4db80c5de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:40.000Z'}}, {'blockNum': '0x9c09d5', 'uniqueId': '0x07b25f8887decc6aab1f17ea2e740ed31475a1aaf8436eb833ecfeff699d1e89:log:0', 'hash': '0x07b25f8887decc6aab1f17ea2e740ed31475a1aaf8436eb833ecfeff699d1e89', 'from': '0x28b5966e6b106fee16be8015b932ef73648cb957', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1000.15614622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749652a9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:16:06.000Z'}}, {'blockNum': '0x9c09d9', 'uniqueId': '0x72c87a3c1650da41ee2b0ec3116aa5aa6cd8d9f28cbc7b3110942f39260c4980:log:57', 'hash': '0x72c87a3c1650da41ee2b0ec3116aa5aa6cd8d9f28cbc7b3110942f39260c4980', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'value': 139.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342588780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:16:39.000Z'}}, {'blockNum': '0x9c09dc', 'uniqueId': '0xa78c1fb9d23a7cc2dab90c0c059951b8a01e3abaef6b26586c451dd127f6a19f:log:74', 'hash': '0xa78c1fb9d23a7cc2dab90c0c059951b8a01e3abaef6b26586c451dd127f6a19f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb1c0e08d9f85e373938bc5a3ee0f4f462da11f7a', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:17:03.000Z'}}, {'blockNum': '0x9c09df', 'uniqueId': '0x9bb4fd9a0366b0e50ddbe3c5149b4c26ea1343b6a4586f7e85e42a8b7ac1cc93:log:22', 'hash': '0x9bb4fd9a0366b0e50ddbe3c5149b4c26ea1343b6a4586f7e85e42a8b7ac1cc93', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x5934e7eb0d5229560879e76ef4252117458d89dc', 'value': 116.7013097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b798111a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:18:00.000Z'}}, {'blockNum': '0x9c09e1', 'uniqueId': '0x7dcc62ae8d559cd6ce9049f7b7e46a12a6c32638a54e1e580b9838639d04b8ff:log:46', 'hash': '0x7dcc62ae8d559cd6ce9049f7b7e46a12a6c32638a54e1e580b9838639d04b8ff', 'from': '0xb1c0e08d9f85e373938bc5a3ee0f4f462da11f7a', 'to': '0xf3fc538c9a8c6b86bc158055ba84448f23819fa9', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:18:33.000Z'}}, {'blockNum': '0x9c09f1', 'uniqueId': '0x72bbe95fd04d9b855a6fcf59a712392b881e5d77cd718b6bb91bd04863cf452c:log:25', 'hash': '0x72bbe95fd04d9b855a6fcf59a712392b881e5d77cd718b6bb91bd04863cf452c', 'from': '0xa7dc0fd1bffe36874c3d94c2d3d3ee6e30ab48c5', 'to': '0xa5d4827cce6f52f776e5b96e2a46eb8e87d27ea5', 'value': 630.92936319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0eb0a1ce7f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:21:25.000Z'}}, {'blockNum': '0x9c09f4', 'uniqueId': '0xb0c1eb08875aff4393bf977f4eaad39b5aa92c6cd43f094101a18cf121cc237b:log:33', 'hash': '0xb0c1eb08875aff4393bf977f4eaad39b5aa92c6cd43f094101a18cf121cc237b', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0xa84460d2bd20f37adeb38cf1c26dfd1a2b868a4a', 'value': 405.451515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0970adea0c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:21:42.000Z'}}, {'blockNum': '0x9c09f8', 'uniqueId': '0x69899f7ec0c6bd717ca81dba5f770d3187a466a93ed43d498226cfac0f57e1e8:log:161', 'hash': '0x69899f7ec0c6bd717ca81dba5f770d3187a466a93ed43d498226cfac0f57e1e8', 'from': '0xc4ca8fe6ddb499dcf2f6a7eae8909345413bcb4c', 'to': '0x926cf35549c98e7fd0e7b2419753c33f0957263b', 'value': 5555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8156615300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:09.000Z'}}, {'blockNum': '0x9c09fa', 'uniqueId': '0x1a7d3effae33ce9891543f2a296886388b990cfdcf17371ae082a9bdab33385b:log:30', 'hash': '0x1a7d3effae33ce9891543f2a296886388b990cfdcf17371ae082a9bdab33385b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x39589fbf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:21.000Z'}}, {'blockNum': '0x9c09fa', 'uniqueId': '0xea8a2c4ff8c2966f464ce1399d65bef82319ea71b9fb0f279228bb8cca0e9d89:log:70', 'hash': '0xea8a2c4ff8c2966f464ce1399d65bef82319ea71b9fb0f279228bb8cca0e9d89', 'from': '0x90c72d9f8a299896b295b04813a9526c584fd7bc', 'to': '0xff70c95dbb3e6d63221e7f420948b78b97df6c26', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:21.000Z'}}, {'blockNum': '0x9c09ff', 'uniqueId': '0xf0e5754b8c107dbec21de9a445794155dd95f5f7b520ef80258418f0ff874633:log:61', 'hash': '0xf0e5754b8c107dbec21de9a445794155dd95f5f7b520ef80258418f0ff874633', 'from': '0x43bacfb2e5c522def447b0b75c9fe532948e1541', 'to': '0x3d5618d80bda015cc644b500167f2518b2f6eed7', 'value': 1504.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2304fc50e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:24:21.000Z'}}, {'blockNum': '0x9c0a0e', 'uniqueId': '0xed850938a97e2bca650e97b4c314222ee80dd149d746a9cdd77c1c135e06dffe:log:31', 'hash': '0xed850938a97e2bca650e97b4c314222ee80dd149d746a9cdd77c1c135e06dffe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb4cf686ea7a0e1cbc83c6d922106c4df5249ce43', 'value': 74.895944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01be6a2420', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:28.000Z'}}, {'blockNum': '0x9c0a0f', 'uniqueId': '0xad89dae06d5f4d07bc39ce0f3e7bd937cbf5073a52a09af1f37ba84eea049156:log:32', 'hash': '0xad89dae06d5f4d07bc39ce0f3e7bd937cbf5073a52a09af1f37ba84eea049156', 'from': '0x0e1d7ef634df68c59cb0a91125c7669201649d26', 'to': '0xc8093f5232ac6be142a3704e95834df71dc69fa6', 'value': 8204.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbf0406ad60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:49.000Z'}}, {'blockNum': '0x9c0a0f', 'uniqueId': '0x06aa430fbb97e70b65ed9c4181c42ce6a2e1fe531efe47682af30c0b4ea7d0ba:log:97', 'hash': '0x06aa430fbb97e70b65ed9c4181c42ce6a2e1fe531efe47682af30c0b4ea7d0ba', 'from': '0x2257a0ad17d3da25928452f3eb13012291a5325f', 'to': '0x5d2914536b1e50412a166f8fddf67121f66d34ca', 'value': 147.55518404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036f7f57c4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:49.000Z'}}, {'blockNum': '0x9c0a1c', 'uniqueId': '0x60b8d4d93caf788dbfa2c8a380dc57d8a389063ded26a2d46c0686d0dcffbcb7:log:13', 'hash': '0x60b8d4d93caf788dbfa2c8a380dc57d8a389063ded26a2d46c0686d0dcffbcb7', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1432.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x215d39f480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:29:22.000Z'}}, {'blockNum': '0x9c0a1d', 'uniqueId': '0xe7a4925231c742ece41fa7f728d40fac142c0686729aa9c69a5d6d599c9b6003:log:120', 'hash': '0xe7a4925231c742ece41fa7f728d40fac142c0686729aa9c69a5d6d599c9b6003', 'from': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 139.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342588780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:29:45.000Z'}}, {'blockNum': '0x9c0a23', 'uniqueId': '0xf4ad37f12132d9668cb70be75219480f5805ce17b596d352f8fe8f9b75a260e9:log:15', 'hash': '0xf4ad37f12132d9668cb70be75219480f5805ce17b596d352f8fe8f9b75a260e9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 213.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb6b9180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:30:58.000Z'}}, {'blockNum': '0x9c0a23', 'uniqueId': '0x5c116eeb01f97b07cf4129fe776b41621c27ae8f4e41a71e0f9a7631ad27ff96:log:16', 'hash': '0x5c116eeb01f97b07cf4129fe776b41621c27ae8f4e41a71e0f9a7631ad27ff96', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'value': 433.849719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a19f2227c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:30:58.000Z'}}, {'blockNum': '0x9c0a24', 'uniqueId': '0x150d38679fe114bca7f0c49cd7263b5220dc58a3c7fca622a54c4f3585c28d98:log:126', 'hash': '0x150d38679fe114bca7f0c49cd7263b5220dc58a3c7fca622a54c4f3585c28d98', 'from': '0x926cf35549c98e7fd0e7b2419753c33f0957263b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87cf63a900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:31:07.000Z'}}, {'blockNum': '0x9c0a25', 'uniqueId': '0x429e0522f456afc5753121925087c5264f77376bbdce3de70ccc6054d9863089:log:151', 'hash': '0x429e0522f456afc5753121925087c5264f77376bbdce3de70ccc6054d9863089', 'from': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3374.98636507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4e947c80db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:31:13.000Z'}}, {'blockNum': '0x9c0a29', 'uniqueId': '0x75df4c06aea860a3c8204a8a7fbc494ec593dec9746b7f0357a91d651303f07e:log:68', 'hash': '0x75df4c06aea860a3c8204a8a7fbc494ec593dec9746b7f0357a91d651303f07e', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x24e82e47e44425200ebc56b328cf745456b46cf2', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:32:40.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x4e132f6bc69faa49e0c9e6b4830dd21ad704f5614485b76e0a4eb28e48d62786:log:49', 'hash': '0x4e132f6bc69faa49e0c9e6b4830dd21ad704f5614485b76e0a4eb28e48d62786', 'from': '0x24e82e47e44425200ebc56b328cf745456b46cf2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x18313b5a9d6f2ca433c83a1dc4064002263c7f682cf69a5d484a7a9388b66df6:log:63', 'hash': '0x18313b5a9d6f2ca433c83a1dc4064002263c7f682cf69a5d484a7a9388b66df6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 3099.785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x482c288ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x29a18f105e78a3be1bc57b0c473f55411299145369a76ac05d6273e0be6c8037:log:64', 'hash': '0x29a18f105e78a3be1bc57b0c473f55411299145369a76ac05d6273e0be6c8037', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1429.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x214b585180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0xad70fab61f21423eb5e9a30df33d6a2e71cafc02101f863369e11723ee17085c:log:65', 'hash': '0xad70fab61f21423eb5e9a30df33d6a2e71cafc02101f863369e11723ee17085c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 452.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a8bf8a080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0xcb7681c7521516a21383c367cfcb5e57245119f53af0a80160695a485c7bcbcc:log:78', 'hash': '0xcb7681c7521516a21383c367cfcb5e57245119f53af0a80160695a485c7bcbcc', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x660be3721b97db19c56af5c487f5df6fe23ac4b4', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2b', 'uniqueId': '0x474192de9c1cd263a49a0bb7e163c715a2290af3a594d9c65a6124d0a3602218:log:52', 'hash': '0x474192de9c1cd263a49a0bb7e163c715a2290af3a594d9c65a6124d0a3602218', 'from': '0x660be3721b97db19c56af5c487f5df6fe23ac4b4', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:22.000Z'}}, {'blockNum': '0x9c0a2b', 'uniqueId': '0xc3e2c33a1dc678c0c6b330d196dddfda172417cec8dcbf4c52f528f110e20902:log:129', 'hash': '0xc3e2c33a1dc678c0c6b330d196dddfda172417cec8dcbf4c52f528f110e20902', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x0e62e4f3b5f5a32d108e73037a7900686291c6cd', 'value': 3467.9610187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x50bea890ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:22.000Z'}}, {'blockNum': '0x9c0a2d', 'uniqueId': '0x5a41af836586c43347b8bb88a77aefcc1d1b790e33915890a7127cfbb55b5eb2:log:6', 'hash': '0x5a41af836586c43347b8bb88a77aefcc1d1b790e33915890a7127cfbb55b5eb2', 'from': '0x0e62e4f3b5f5a32d108e73037a7900686291c6cd', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3467.9610187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x50bea890ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:34:26.000Z'}}, {'blockNum': '0x9c0a2d', 'uniqueId': '0xb3d65cad94513535450e8676c1e9fc643d8b4c738d2c720f97e17f8f63f6e102:log:36', 'hash': '0xb3d65cad94513535450e8676c1e9fc643d8b4c738d2c720f97e17f8f63f6e102', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xae5432464b0dcbbb596ac664f49d6d0ea883b0be', 'value': 1790.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29ad59c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:34:26.000Z'}}, {'blockNum': '0x9c0a2e', 'uniqueId': '0xc57b5e13238b26425a7de269951ba2d68821c595d535b2d628a5e8acf711c493:log:99', 'hash': '0xc57b5e13238b26425a7de269951ba2d68821c595d535b2d628a5e8acf711c493', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 289.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c06a5d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:35:14.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xca1a7ac54adde72f1a0f26d06e2b9948c65a02fd48ae607a48d9263c803cfb75:log:6', 'hash': '0xca1a7ac54adde72f1a0f26d06e2b9948c65a02fd48ae607a48d9263c803cfb75', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 780.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x122d003680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0x066240a110abc2408ec928384180c6d80bffd610f2bab8553d6e4837ec72955a:log:8', 'hash': '0x066240a110abc2408ec928384180c6d80bffd610f2bab8553d6e4837ec72955a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x15709a7060cd2190b76a74b73959114fd3fdfe1d', 'value': 106.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027da68680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xc5a8225b45299ef369b28a29f7181ac11a9902f3add090b0a230ca2a7ce68437:log:9', 'hash': '0xc5a8225b45299ef369b28a29f7181ac11a9902f3add090b0a230ca2a7ce68437', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 1820.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a65e2f880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xe8fda1c64b7e921c3c07af4bee107e2a209fc4b41a515dec8413d84aa59b652e:log:14', 'hash': '0xe8fda1c64b7e921c3c07af4bee107e2a209fc4b41a515dec8413d84aa59b652e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 871.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x144d67e380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xe77041d02e655b48d1e6898c38a522987d863f1665ecd92993e9f18a76a9c433:log:15', 'hash': '0xe77041d02e655b48d1e6898c38a522987d863f1665ecd92993e9f18a76a9c433', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 8290.76742325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc108d320b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0xf3d5c6c8b33c2089a50f8377eb84dc598d9631f2770ccda80d92b7b4e91c8a69:log:34', 'hash': '0xf3d5c6c8b33c2089a50f8377eb84dc598d9631f2770ccda80d92b7b4e91c8a69', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 780.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x122d003680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0xb755a62d3f4e0e1eb0818d571b8428e280770fbbda82a7ab5007bd248db1bc11:log:35', 'hash': '0xb755a62d3f4e0e1eb0818d571b8428e280770fbbda82a7ab5007bd248db1bc11', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 8290.76742325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc108d320b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0x60cd0dd87a27a0cfa4e46aed6fd0a1370f8a37cf7f3b640605c25a3b48c64072:log:51', 'hash': '0x60cd0dd87a27a0cfa4e46aed6fd0a1370f8a37cf7f3b640605c25a3b48c64072', 'from': '0x91bbeb418a36ff9e238d1c5b4e02efb35077e18c', 'to': '0x1a0d6bb7c147014a2c5e0ea446180e2b797e8ec6', 'value': 1635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26115c0300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0xd5d1eae07e6d6af063ddafddc26e860251901bf172706244a2d8f1d28b9b1964:log:112', 'hash': '0xd5d1eae07e6d6af063ddafddc26e860251901bf172706244a2d8f1d28b9b1964', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'value': 136.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033076e480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x6fd6cb09958b9533ac60002a77a698b18bee4727ad133cba3bfeb9b6654e33ed:log:113', 'hash': '0x6fd6cb09958b9533ac60002a77a698b18bee4727ad133cba3bfeb9b6654e33ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbdaf17832a7141b591d9407490328fa5df364cb5', 'value': 242.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a6ceb0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x1e2bce45e5d1bd2d4d40d1ab528c5be2cdd46262161cf6bd770c65208b32256c:log:114', 'hash': '0x1e2bce45e5d1bd2d4d40d1ab528c5be2cdd46262161cf6bd770c65208b32256c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x83f5f66a111a446d29bc28c82b292b42cbe892ef', 'value': 3.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17b8ff80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x2cf126b70436ded34755d8858b2b1d72c47b98fea69223a268c0f70921aa9453:log:115', 'hash': '0x2cf126b70436ded34755d8858b2b1d72c47b98fea69223a268c0f70921aa9453', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x74f7477556d7b099ceb5781d5a7a109947b72a15', 'value': 1990.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e5b2a6280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x8eba1126ecc4828130478c1b08dad3595b4b6b30b7ed3e0796c97eff76413593:log:116', 'hash': '0x8eba1126ecc4828130478c1b08dad3595b4b6b30b7ed3e0796c97eff76413593', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1e580bafb4649412d0c4fe1611d58d31bb3135f2', 'value': 1976.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e07d38bc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x9829954cd8d7531ed341faf8080b5a820127670edc21f785dbd34807046fec02:log:119', 'hash': '0x9829954cd8d7531ed341faf8080b5a820127670edc21f785dbd34807046fec02', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x93c476aa875bfb62b5e776ce0ae48b47926e36c2', 'value': 75.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c467bc20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a44', 'uniqueId': '0x3b8f524c484080f8d76763e11437b8b96ff232bb9fcafe8a593e7f94f2d622a5:log:48', 'hash': '0x3b8f524c484080f8d76763e11437b8b96ff232bb9fcafe8a593e7f94f2d622a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x639928b207057fbd1eba5fa915d3d9951a48a62d', 'value': 451.77695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a84cced39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:40:43.000Z'}}, {'blockNum': '0x9c0a44', 'uniqueId': '0x65e26edc29d0e084de485be05ec62ba184b62f4538f775b49c70eb48a321de11:log:50', 'hash': '0x65e26edc29d0e084de485be05ec62ba184b62f4538f775b49c70eb48a321de11', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'value': 474.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b0f19f680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:40:43.000Z'}}, {'blockNum': '0x9c0a45', 'uniqueId': '0x34728c79314fcc55e0778bb254814f47a84fee4e544b311adafe43f13a7a9bbf:log:84', 'hash': '0x34728c79314fcc55e0778bb254814f47a84fee4e544b311adafe43f13a7a9bbf', 'from': '0xa8c4b9f13c5da3c08901ae1e907fb89c5f75f605', 'to': '0xee83d407ea7b42b12e3871c0a2b84ff196522e32', 'value': 52.29109486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0137ade0ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:41:06.000Z'}}, {'blockNum': '0x9c0a46', 'uniqueId': '0xf3139d29d13bf6eafa9b9eb186c58aa9dc9c1649e83096af37a9c33948ed1455:log:2', 'hash': '0xf3139d29d13bf6eafa9b9eb186c58aa9dc9c1649e83096af37a9c33948ed1455', 'from': '0xee83d407ea7b42b12e3871c0a2b84ff196522e32', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 52.29109486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0137ade0ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:41:39.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xfeeb2dcce043573dd775e21a0ced1d1d505a7cfc60456441992c33e59ed2bde2:log:98', 'hash': '0xfeeb2dcce043573dd775e21a0ced1d1d505a7cfc60456441992c33e59ed2bde2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xaca27a35838da5421fe925eb621a7679d6d2bdde', 'value': 889.652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14b6bd3880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xa53f9267c6d3e7c8df6f0ad0e9157e213a54b10d177d791293457b0637e05827:log:99', 'hash': '0xa53f9267c6d3e7c8df6f0ad0e9157e213a54b10d177d791293457b0637e05827', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 145.114595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0360f34cac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xa66ac49c0aeca1ce0666b49993c4f106686f6490e0619ec4bf9ab4e6b6204e89:log:105', 'hash': '0xa66ac49c0aeca1ce0666b49993c4f106686f6490e0619ec4bf9ab4e6b6204e89', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x67e5f5db4c866f1b5b31ac097179bcd85a01aa0e', 'value': 2206.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3362a03a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0x2f4cbf577bc815b62acfc62bf18777b5c3e357e258ab55e973596377887a3b55:log:110', 'hash': '0x2f4cbf577bc815b62acfc62bf18777b5c3e357e258ab55e973596377887a3b55', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbb4b1591816121b6e0a03fe9def951a0833f7892', 'value': 1210.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c3200d680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0x51357113472ccabaab043776fbe13bdf3e7eefe13663efc69dd32467605d1578:log:167', 'hash': '0x51357113472ccabaab043776fbe13bdf3e7eefe13663efc69dd32467605d1578', 'from': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'to': '0xd4dd74430083a862ee72be896d56091ddd48b829', 'value': 4000.24527544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d2351e2b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a4f', 'uniqueId': '0x987b4417fc0d07ef834cd348c48abc9bd42872407d576ea3a26d74ee89a94a6a:log:50', 'hash': '0x987b4417fc0d07ef834cd348c48abc9bd42872407d576ea3a26d74ee89a94a6a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x945c1f396e3ae46f6a430172051d5deef7add6be', 'value': 145.114595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0360f34cac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:21.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x940f7e4d843af31b63707ea72d01d8ef0599b9de725e285d61187f25fe0c4a2e:log:78', 'hash': '0x940f7e4d843af31b63707ea72d01d8ef0599b9de725e285d61187f25fe0c4a2e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 3059.869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x473e3d9020', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0xa3c06bd5e03b815ef2f0d4a555acc372fd661ceff202576ffe14e2427b8bf74c:log:80', 'hash': '0xa3c06bd5e03b815ef2f0d4a555acc372fd661ceff202576ffe14e2427b8bf74c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1414.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20f1f02280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x188794cc933ac238e30ebd54d3e6e3a2cd59886f82264634fef400107eee9215:log:85', 'hash': '0x188794cc933ac238e30ebd54d3e6e3a2cd59886f82264634fef400107eee9215', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1788f3be0b0f5da8f455375940cab89c4cc803e3', 'value': 718.258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10b926bb40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x5d5d2bc068b58a6173c7412ca578e3356a57441960a0538f8660bf0cd826002b:log:97', 'hash': '0x5d5d2bc068b58a6173c7412ca578e3356a57441960a0538f8660bf0cd826002b', 'from': '0x67e5f5db4c866f1b5b31ac097179bcd85a01aa0e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2206.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3362a03a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0xe9971b510f9818381c477174f98f3481d7aedbe3272ac2995d0b5e153193119f:log:123', 'hash': '0xe9971b510f9818381c477174f98f3481d7aedbe3272ac2995d0b5e153193119f', 'from': '0xbc4db589f05cf12cd649936f9393b3b55fe366e5', 'to': '0xf48f04ebe14e9fa09faad777c77c9fde2b2caac7', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a54', 'uniqueId': '0x3a6fb4dfc82f4e231ec00ab8a755ebd2425a2db98429bd4e0a47e50f983aeab3:log:10', 'hash': '0x3a6fb4dfc82f4e231ec00ab8a755ebd2425a2db98429bd4e0a47e50f983aeab3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 769.806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ec66bcc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:45:40.000Z'}}, {'blockNum': '0x9c0a58', 'uniqueId': '0x32e5864b588eebb38fffc506e38e6b0747e1e6498786b1dc1d90a751a027cfac:log:116', 'hash': '0x32e5864b588eebb38fffc506e38e6b0747e1e6498786b1dc1d90a751a027cfac', 'from': '0xf48f04ebe14e9fa09faad777c77c9fde2b2caac7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:46:46.000Z'}}, {'blockNum': '0x9c0a5e', 'uniqueId': '0x9b27ed464e80da0d018233cad5e14c19a06067b9dbf891f545f76abcf1895ff7:log:3', 'hash': '0x9b27ed464e80da0d018233cad5e14c19a06067b9dbf891f545f76abcf1895ff7', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3059.869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x473e3d9020', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:48:36.000Z'}}, {'blockNum': '0x9c0a5e', 'uniqueId': '0x2520949abce9dcfeae2ca80ad52cc4bb612b28ea791733e033bf70389c10430a:log:8', 'hash': '0x2520949abce9dcfeae2ca80ad52cc4bb612b28ea791733e033bf70389c10430a', 'from': '0xdcfffaad53ae360bc67763a3f597e6c46dee65f9', 'to': '0xbaec2b066edcea546b2454fb6fc3d25e1daf23d6', 'value': 312.17713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0744b87f68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:48:36.000Z'}}, {'blockNum': '0x9c0a66', 'uniqueId': '0x443c3f80c1bb4f5e4d0540de6c394259a5be9b811d9a18f575a568f897e37db0:log:184', 'hash': '0x443c3f80c1bb4f5e4d0540de6c394259a5be9b811d9a18f575a568f897e37db0', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5694.312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8494be9100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:49:43.000Z'}}, {'blockNum': '0x9c0a67', 'uniqueId': '0xb82bc207ab9ab9a08e572176d2e372f13a164805eff31d7634ca106b2cf39be6:log:133', 'hash': '0xb82bc207ab9ab9a08e572176d2e372f13a164805eff31d7634ca106b2cf39be6', 'from': '0xe55494e7434408e7074eb03d8ca124f9151fce1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x54c60d1900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:49:46.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x0815321b3d7e309ee2969c69d558fca9d812d7156c72c2b42341d121d6e6694b:log:154', 'hash': '0x0815321b3d7e309ee2969c69d558fca9d812d7156c72c2b42341d121d6e6694b', 'from': '0xff70c95dbb3e6d63221e7f420948b78b97df6c26', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x3a18c3839ad4859944c8a260a80338a00c1cca1aab9fd5cfaf48a613fa5c4cd8:log:175', 'hash': '0x3a18c3839ad4859944c8a260a80338a00c1cca1aab9fd5cfaf48a613fa5c4cd8', 'from': '0xc8093f5232ac6be142a3704e95834df71dc69fa6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8204.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbf0406ad60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x650107f44b73b8c3b743f79223f715f292d8f4f55c919618d7c86764b4c6556e:log:176', 'hash': '0x650107f44b73b8c3b743f79223f715f292d8f4f55c919618d7c86764b4c6556e', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5336.02145266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7c3d2a93f2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a71', 'uniqueId': '0x4ddb6eb22ed138b17bb3efe17013a28de69f3dc577c384156f9974db2dcb3619:log:68', 'hash': '0x4ddb6eb22ed138b17bb3efe17013a28de69f3dc577c384156f9974db2dcb3619', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb8431daa00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:57.000Z'}}, {'blockNum': '0x9c0a77', 'uniqueId': '0xf30e0d8fe97399ee56bdcdeb2da0e23d324d1cd7b306910a164f8ccb139c1ca9:log:36', 'hash': '0xf30e0d8fe97399ee56bdcdeb2da0e23d324d1cd7b306910a164f8ccb139c1ca9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1490cccbc69bae1a545af45bb2a15571d620a0e7', 'value': 70.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a6a1f840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:51:58.000Z'}}, {'blockNum': '0x9c0a7e', 'uniqueId': '0xec5ade60ce6a900c8eb14b4ff80b68f4930eb1e82d6ad9a8c27e17078ef86607:log:60', 'hash': '0xec5ade60ce6a900c8eb14b4ff80b68f4930eb1e82d6ad9a8c27e17078ef86607', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 1973.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2df22158c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:53:57.000Z'}}, {'blockNum': '0x9c0a7e', 'uniqueId': '0x43ac48debdb0cc486605b902b71dd542d016bc1feab30672573e77537448b410:log:99', 'hash': '0x43ac48debdb0cc486605b902b71dd542d016bc1feab30672573e77537448b410', 'from': '0xa1946e4585b3cc4e510d220ed11635b5d56c5ffa', 'to': '0xfe6bb8e57c0b86c6f8ee728bcd5116057e8991ea', 'value': 1068.30267762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18df948572', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:53:57.000Z'}}, {'blockNum': '0x9c0a7f', 'uniqueId': '0xd371431f9331669fa43a2064139263a5fc21522e402c3859364a8a323367e6cd:log:9', 'hash': '0xd371431f9331669fa43a2064139263a5fc21522e402c3859364a8a323367e6cd', 'from': '0xfe6bb8e57c0b86c6f8ee728bcd5116057e8991ea', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1068.30267762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18df948572', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:54:38.000Z'}}, {'blockNum': '0x9c0a81', 'uniqueId': '0x1c023357b0a5710f4175712fd63377f98cfc3ae95addb6e0cb1e6034226542ad:log:74', 'hash': '0x1c023357b0a5710f4175712fd63377f98cfc3ae95addb6e0cb1e6034226542ad', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x8236a838771b65e8b8add286a5f3a656fdc69599', 'value': 1763.209335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x290d8bee7c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:04.000Z'}}, {'blockNum': '0x9c0a83', 'uniqueId': '0xbef170810b1179f1c2fa0f24c8311169e956c10b76e63efdf9edceda7992f5c0:log:80', 'hash': '0xbef170810b1179f1c2fa0f24c8311169e956c10b76e63efdf9edceda7992f5c0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x27a133f9c6edb42b2f5ae58f82b607dfcfdb92a6', 'value': 52.10524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0136924960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:55.000Z'}}, {'blockNum': '0x9c0a83', 'uniqueId': '0x433ae2e6c8a1779005f75320524a428cc308839db691f7af3a53a69def4286bd:log:85', 'hash': '0x433ae2e6c8a1779005f75320524a428cc308839db691f7af3a53a69def4286bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 41291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03c16189eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:55.000Z'}}, {'blockNum': '0x9c0a88', 'uniqueId': '0x116a89394a7221955b95c74f132b3645f70d224924c977ca2fc9c0f21231ffd6:log:172', 'hash': '0x116a89394a7221955b95c74f132b3645f70d224924c977ca2fc9c0f21231ffd6', 'from': '0x15d223b307e180d83fb06f2e14f73d74adaf0064', 'to': '0x01702e0c202b2270de5116f0748f3e1a1827b100', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0773594000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:56:36.000Z'}}, {'blockNum': '0x9c0a8c', 'uniqueId': '0x4193fd76994bcd453916afea6cddfeb1262657edef3f7a0e97500aa33e6c2203:log:109', 'hash': '0x4193fd76994bcd453916afea6cddfeb1262657edef3f7a0e97500aa33e6c2203', 'from': '0xf95ad025b48580394375a7848ca6d4301ce2f2c5', 'to': '0xc1da812b30905eea37078ea0de6f647e1e347c59', 'value': 623.437101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e83f98594', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:56:50.000Z'}}, {'blockNum': '0x9c0a90', 'uniqueId': '0x9a50cd6b719e1554fd50fed14894cb6123051e8767533cc1ef466ad4993d728f:log:122', 'hash': '0x9a50cd6b719e1554fd50fed14894cb6123051e8767533cc1ef466ad4993d728f', 'from': '0xc1da812b30905eea37078ea0de6f647e1e347c59', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 623.437101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e83f98594', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:58:08.000Z'}}, {'blockNum': '0x9c0aab', 'uniqueId': '0xb114bcc8778c98e613cec59e70e018e7ef60b6d5257db60ce2d0cde905cd445a:log:126', 'hash': '0xb114bcc8778c98e613cec59e70e018e7ef60b6d5257db60ce2d0cde905cd445a', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8588.55479118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc7f7c6974e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:04:10.000Z'}}, {'blockNum': '0x9c0ac1', 'uniqueId': '0xb7aed3aaa7ada096fb531fa96a07d8af1ab4cef8ca79071a7047283493a02b63:log:17', 'hash': '0xb7aed3aaa7ada096fb531fa96a07d8af1ab4cef8ca79071a7047283493a02b63', 'from': '0xbbdebd4c0e4f2a0ea8d231a98bbb44d09f0c62e4', 'to': '0x2749335c22337103d273490327bfa44c5f1bcf6c', 'value': 9155.5477889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd52b513f0a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:07:13.000Z'}}, {'blockNum': '0x9c0aca', 'uniqueId': '0x17136cde5c8cd02fea21116f5e1ce5452ed6d6a4369fbfef2c5a48418762cc9f:log:106', 'hash': '0x17136cde5c8cd02fea21116f5e1ce5452ed6d6a4369fbfef2c5a48418762cc9f', 'from': '0x2749335c22337103d273490327bfa44c5f1bcf6c', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 9155.5477889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd52b513f0a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:09:04.000Z'}}, {'blockNum': '0x9c0ae7', 'uniqueId': '0x539b41ee6a9ba22093174a0fec44f08bb3d3fd060050e54a34d7b4dae81abd2f:log:83', 'hash': '0x539b41ee6a9ba22093174a0fec44f08bb3d3fd060050e54a34d7b4dae81abd2f', 'from': '0x95151e4615c5c0924b918c85ad8d8a94d6644ab3', 'to': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:14:38.000Z'}}, {'blockNum': '0x9c0af1', 'uniqueId': '0x432c76fe7680b03f8efae82a9f3259e25eaf542b7d2e8110ff15cd2b8c924e2d:log:29', 'hash': '0x432c76fe7680b03f8efae82a9f3259e25eaf542b7d2e8110ff15cd2b8c924e2d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:16:09.000Z'}}, {'blockNum': '0x9c0af8', 'uniqueId': '0x75e5b43e9dfb67ebc90017b4b51f5c169041e19fcdef05e312558aa161b889fb:log:53', 'hash': '0x75e5b43e9dfb67ebc90017b4b51f5c169041e19fcdef05e312558aa161b889fb', 'from': '0x9eca6eb9de167ef520c8764339e5ea1978e4adda', 'to': '0xbc505c9d6faa965809bfd73fdaa6b5b8705d7613', 'value': 186.4894027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0457903eee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:17:18.000Z'}}, {'blockNum': '0x9c0afd', 'uniqueId': '0xfa118d006a536ef75e0c720e7b5543821126e80ab9262d93c0d48e4708249723:log:7', 'hash': '0xfa118d006a536ef75e0c720e7b5543821126e80ab9262d93c0d48e4708249723', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 39712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x039c9df72000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:18:05.000Z'}}, {'blockNum': '0x9c0afe', 'uniqueId': '0x42fd02e74be4bb6cc9288bfee9f7c000bcd9d736989ab8468efb247e3fb0622c:log:15', 'hash': '0x42fd02e74be4bb6cc9288bfee9f7c000bcd9d736989ab8468efb247e3fb0622c', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:18:20.000Z'}}, {'blockNum': '0x9c0b00', 'uniqueId': '0x84feb3c99fb260a733c29af63c47b061b132864cf1597858689c958396d4ba30:log:46', 'hash': '0x84feb3c99fb260a733c29af63c47b061b132864cf1597858689c958396d4ba30', 'from': '0x4ea1e3f926db1af6120a592136c4c38e1ab97acb', 'to': '0x1341e58c8c8ed0e8bb1fbb4eaf481156722cd973', 'value': 1271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d9989da80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:19:25.000Z'}}, {'blockNum': '0x9c0b01', 'uniqueId': '0xda82c1ca4189afae05aed43b9a170785dfe4d38d3bc2aef795ed07f8b42ed4b3:log:40', 'hash': '0xda82c1ca4189afae05aed43b9a170785dfe4d38d3bc2aef795ed07f8b42ed4b3', 'from': '0xbc505c9d6faa965809bfd73fdaa6b5b8705d7613', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 186.4894027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0457903eee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:19:32.000Z'}}, {'blockNum': '0x9c0b23', 'uniqueId': '0xddbbed3e45cbbeb8f250290219760620cc676add20f8b0463b220753bb19c2f5:log:41', 'hash': '0xddbbed3e45cbbeb8f250290219760620cc676add20f8b0463b220753bb19c2f5', 'from': '0xa7f94985c44852c5cc9b399293e5948b62ca0566', 'to': '0x4f447d7f98a97619cd29469a5d4af1decdba4041', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0da475abf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:26:58.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x4e381d5e9d29a9e1fb8ed7e11a2772eae0f921cbbfa710db6accbff17a99e1f4:log:3', 'hash': '0x4e381d5e9d29a9e1fb8ed7e11a2772eae0f921cbbfa710db6accbff17a99e1f4', 'from': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 908.829719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15290c18fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x78143afff00e22b50474259036fcb0fd23ccad3e4e690f10d9a48f32fcd706c1:log:5', 'hash': '0x78143afff00e22b50474259036fcb0fd23ccad3e4e690f10d9a48f32fcd706c1', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3869.591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5a188f4860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x4952e807a45b8761aa535bec5025fb6ccddcc9caed7f58ca8d4660c40c7defe2:log:6', 'hash': '0x4952e807a45b8761aa535bec5025fb6ccddcc9caed7f58ca8d4660c40c7defe2', 'from': '0xae5432464b0dcbbb596ac664f49d6d0ea883b0be', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1790.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29ad59c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x78b50db19f1e53f631c0c2aea976bf96a21073f5f1f8b94a28b50a97bb0bf666:log:7', 'hash': '0x78b50db19f1e53f631c0c2aea976bf96a21073f5f1f8b94a28b50a97bb0bf666', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2844.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x423d487400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x2c1a93731eee25f52292fa22b19193eb8d2d10418bd0f46136fffe2b4a96b3b0:log:8', 'hash': '0x2c1a93731eee25f52292fa22b19193eb8d2d10418bd0f46136fffe2b4a96b3b0', 'from': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3649.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x54fb196b80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0xcca50995cc19f62536d4d2bcadfcff315b0a6f892e364735a05c14e0f6d6113a:log:38', 'hash': '0xcca50995cc19f62536d4d2bcadfcff315b0a6f892e364735a05c14e0f6d6113a', 'from': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 136.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033076e480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x97a39af2a361e1335f116ce97d38cc2aba39c28ceb24d060697f3a5d4291c5d4:log:39', 'hash': '0x97a39af2a361e1335f116ce97d38cc2aba39c28ceb24d060697f3a5d4291c5d4', 'from': '0x1e580bafb4649412d0c4fe1611d58d31bb3135f2', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1976.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e07d38bc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x34b5611c7f465547de606f6b3308eb4e0f12fc39fc05eedd3f7a662eeaf374a8:log:41', 'hash': '0x34b5611c7f465547de606f6b3308eb4e0f12fc39fc05eedd3f7a662eeaf374a8', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x9a96a1a0bff6504f807113c6c59020145e04fc8e', 'value': 327.703357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07a143a3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x40def877db2d9ec99f9a7c0891ba273a7880b7ab00d72d63b48c695376dbe047:log:43', 'hash': '0x40def877db2d9ec99f9a7c0891ba273a7880b7ab00d72d63b48c695376dbe047', 'from': '0x74f7477556d7b099ceb5781d5a7a109947b72a15', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1990.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e5b2a6280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x83a116c3f2999b140e3b0969e143ddce38a462c9456986a1ba804a7477b5efd7:log:44', 'hash': '0x83a116c3f2999b140e3b0969e143ddce38a462c9456986a1ba804a7477b5efd7', 'from': '0x83f5f66a111a446d29bc28c82b292b42cbe892ef', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17b8ff80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b29', 'uniqueId': '0xcfd9b0754e8d6359a9a99cfe742847ee9bf5c117b53bec17a62ea55793702bc4:log:3', 'hash': '0xcfd9b0754e8d6359a9a99cfe742847ee9bf5c117b53bec17a62ea55793702bc4', 'from': '0xbb4b1591816121b6e0a03fe9def951a0833f7892', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1210.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c3200d680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:31.000Z'}}, {'blockNum': '0x9c0b29', 'uniqueId': '0xac2d35aed19be40a1eb8f0f67c7bd7e41a066a6d65aec0ad0eb38e04e0ffb14c:log:4', 'hash': '0xac2d35aed19be40a1eb8f0f67c7bd7e41a066a6d65aec0ad0eb38e04e0ffb14c', 'from': '0xaca27a35838da5421fe925eb621a7679d6d2bdde', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 889.652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14b6bd3880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:31.000Z'}}, {'blockNum': '0x9c0b2b', 'uniqueId': '0xc89b1aee576917cf0c7654070cc8662ca2c0ae7a378ef98aa57c5c8a5aa8324b:log:55', 'hash': '0xc89b1aee576917cf0c7654070cc8662ca2c0ae7a378ef98aa57c5c8a5aa8324b', 'from': '0x1788f3be0b0f5da8f455375940cab89c4cc803e3', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 718.258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10b926bb40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:38.000Z'}}, {'blockNum': '0x9c0b3b', 'uniqueId': '0xc336dc2858d47f9e934f71dfb87b41dc89d005094b470548a38d87d7cf9426e9:log:119', 'hash': '0xc336dc2858d47f9e934f71dfb87b41dc89d005094b470548a38d87d7cf9426e9', 'from': '0x4f447d7f98a97619cd29469a5d4af1decdba4041', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0da475abf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:31:15.000Z'}}, {'blockNum': '0x9c0b72', 'uniqueId': '0x5a0c11800b1f5e8d5355b9bfbf32c7e22e88271cae77455fa58be1b90ab4e2e1:log:65', 'hash': '0x5a0c11800b1f5e8d5355b9bfbf32c7e22e88271cae77455fa58be1b90ab4e2e1', 'from': '0x6a065f496a93cad6cc08e58c1fbeb39af467a72e', 'to': '0x54d367de1ed2e44afc3c7ba7a270306ba1d35558', 'value': 59.058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0160035b40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:41:47.000Z'}}, {'blockNum': '0x9c0b79', 'uniqueId': '0xccf8c9e6f3ac1f069656e88ae7503102fc465deaa9bdacddf97fec2c7e6c4f91:log:15', 'hash': '0xccf8c9e6f3ac1f069656e88ae7503102fc465deaa9bdacddf97fec2c7e6c4f91', 'from': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 104.25775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026d6cb398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:42:54.000Z'}}, {'blockNum': '0x9c0b83', 'uniqueId': '0x22dd9cee32aaf94b02f19524fe7d0f9577a4df6beb40510d8ca701a95d222ca1:log:9', 'hash': '0x22dd9cee32aaf94b02f19524fe7d0f9577a4df6beb40510d8ca701a95d222ca1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1067.25282263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18d95291d7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:44:13.000Z'}}, {'blockNum': '0x9c0b8c', 'uniqueId': '0xb2e21209ddf26b5fdf5d6dc19279695be1d51e51b50ecf643b31cd03aed0e2fe:log:36', 'hash': '0xb2e21209ddf26b5fdf5d6dc19279695be1d51e51b50ecf643b31cd03aed0e2fe', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xa1946e4585b3cc4e510d220ed11635b5d56c5ffa', 'value': 1067.25282263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18d95291d7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:45:51.000Z'}}, {'blockNum': '0x9c0ba2', 'uniqueId': '0x64afd949486b50af2102df0f71461d724a58d05d9a1effa43c89e42e23c7c884:log:14', 'hash': '0x64afd949486b50af2102df0f71461d724a58d05d9a1effa43c89e42e23c7c884', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1255.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d3e396380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:50:09.000Z'}}, {'blockNum': '0x9c0ba8', 'uniqueId': '0x0c984984a10e697506fc856da6c4ad97b729aa0826b29b3f74100a27142b6f9c:log:27', 'hash': '0x0c984984a10e697506fc856da6c4ad97b729aa0826b29b3f74100a27142b6f9c', 'from': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7304.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaa14e51dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:51:10.000Z'}}, {'blockNum': '0x9c0baa', 'uniqueId': '0x83717a47c46bd16b55d2f6d70034feb5a8f2dc022ab4123b20c9797423f8ecff:log:15', 'hash': '0x83717a47c46bd16b55d2f6d70034feb5a8f2dc022ab4123b20c9797423f8ecff', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8791e0edc2322725e711408567eb513dc6db949d', 'value': 2461.56386422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3950106076', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:51:21.000Z'}}, {'blockNum': '0x9c0bbb', 'uniqueId': '0xc5e719f0d80950a163a3c4308a22092d02ba0bebc350defa621027b8597ec169:log:111', 'hash': '0xc5e719f0d80950a163a3c4308a22092d02ba0bebc350defa621027b8597ec169', 'from': '0xd78828beb41c129a1d6888df45c48d14ce7d98b8', 'to': '0xc5a7e0a4789e955687e5e2972dcf1620ab788527', 'value': 977.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16c40459e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:55:01.000Z'}}, {'blockNum': '0x9c0bda', 'uniqueId': '0x44cedabf7c4883d7b368a277fc5b48ba82da092502159056ea1132a735e80c10:log:5', 'hash': '0x44cedabf7c4883d7b368a277fc5b48ba82da092502159056ea1132a735e80c10', 'from': '0x1e6dab54518c0f91d74a509fa8d4f28ce912c765', 'to': '0x25cd9117c27307c238271c46e4f9d35087a7622a', 'value': 312.25041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0745285068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:00:10.000Z'}}, {'blockNum': '0x9c0bde', 'uniqueId': '0x95022ba4b61b65912ab641af98adef1137c125eb25e6a265a486af16a32ab95a:log:8', 'hash': '0x95022ba4b61b65912ab641af98adef1137c125eb25e6a265a486af16a32ab95a', 'from': '0x25cd9117c27307c238271c46e4f9d35087a7622a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 312.25041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0745285068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:01:19.000Z'}}, {'blockNum': '0x9c0bec', 'uniqueId': '0xb4e683ac4eaff6113a1f7d6106e1dd612b0990b71816ea2a6bf47aef49e7c819:log:11', 'hash': '0xb4e683ac4eaff6113a1f7d6106e1dd612b0990b71816ea2a6bf47aef49e7c819', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ce99085dedd17d8f571c413c3ebfe4049c6f7a9', 'value': 196.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x049617a080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:05:18.000Z'}}, {'blockNum': '0x9c0c03', 'uniqueId': '0x3a53a14d2061aa07bc033bc5d170f927f2978e2d3143ad360e20a209debc3906:log:137', 'hash': '0x3a53a14d2061aa07bc033bc5d170f927f2978e2d3143ad360e20a209debc3906', 'from': '0xf122f0d45acf90e9d494c04eeb0719bab65b7be8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7925.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb88767a8a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:09:27.000Z'}}, {'blockNum': '0x9c0c05', 'uniqueId': '0x5543bd4e81eed4670d9d0627bfc126521753c6576c0ba88d787cbb9f2ecfe6f6:log:68', 'hash': '0x5543bd4e81eed4670d9d0627bfc126521753c6576c0ba88d787cbb9f2ecfe6f6', 'from': '0x86debe91fefbda4001fcdc8b3da72b0e4cdab0d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21885.03033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8cf224a8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:09:43.000Z'}}, {'blockNum': '0x9c0c1d', 'uniqueId': '0x12668461df4943923e6fe913dfc01e2d6bfcb85f4175f76fafcea530b494a0d3:log:10', 'hash': '0x12668461df4943923e6fe913dfc01e2d6bfcb85f4175f76fafcea530b494a0d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc51231d1307ffeb4cb099aba99fdec58f64f4729', 'value': 51.234129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01316113a4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:15:46.000Z'}}, {'blockNum': '0x9c0c53', 'uniqueId': '0x79921ee457f3b184d1253797bd3b16bb5c83b0dc1ba230a753a91f0d07873d10:log:0', 'hash': '0x79921ee457f3b184d1253797bd3b16bb5c83b0dc1ba230a753a91f0d07873d10', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1255.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d3e396380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:28:31.000Z'}}, {'blockNum': '0x9c0c5b', 'uniqueId': '0xc3b1e5eb3a5aab7d711e338b8e727402f80a498850f9fd0a45a547d5948a33d8:log:2', 'hash': '0xc3b1e5eb3a5aab7d711e338b8e727402f80a498850f9fd0a45a547d5948a33d8', 'from': '0xbdaf17832a7141b591d9407490328fa5df364cb5', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 242.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a6ceb0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:31.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0x7dfe9d3db70a70b026399f87cc24f14ba38644e87de89d5f421543748da290bf:log:8', 'hash': '0x7dfe9d3db70a70b026399f87cc24f14ba38644e87de89d5f421543748da290bf', 'from': '0x639928b207057fbd1eba5fa915d3d9951a48a62d', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 451.77695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a84cced39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0xe0e4e55d0767fdb9030654df2c46bce3abedbda1f230a2fd5f22c6afa1c3f437:log:13', 'hash': '0xe0e4e55d0767fdb9030654df2c46bce3abedbda1f230a2fd5f22c6afa1c3f437', 'from': '0x93c476aa875bfb62b5e776ce0ae48b47926e36c2', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 75.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c467bc20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0xd739db4794d57aec19a5761db7e2abf364732428e44b36c4c8ac4e0d4066c081:log:17', 'hash': '0xd739db4794d57aec19a5761db7e2abf364732428e44b36c4c8ac4e0d4066c081', 'from': '0x1490cccbc69bae1a545af45bb2a15571d620a0e7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 70.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a6a1f840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0ca4', 'uniqueId': '0xf353e01631b783f1bd8b11b9e9d6b3d1ee52f1d28148d98d7b98e0fa989925a9:log:13', 'hash': '0xf353e01631b783f1bd8b11b9e9d6b3d1ee52f1d28148d98d7b98e0fa989925a9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2fb9e343a8a2c4c4bcd4670ce61a14afe762c661', 'value': 141.94648981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034e112795', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:46:24.000Z'}}, {'blockNum': '0x9c0cbc', 'uniqueId': '0x601dc575c62234ee45ced86244497f317aa4a4a3e6491df1f35e8c78753399cf:log:2', 'hash': '0x601dc575c62234ee45ced86244497f317aa4a4a3e6491df1f35e8c78753399cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 17100.76754495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018e28847a3f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:51:15.000Z'}}, {'blockNum': '0x9c0cc1', 'uniqueId': '0xbd46f210af82eeed877a2b9f5c4a719cf128bf053fd35526961eaa3dba7ad4f5:log:5', 'hash': '0xbd46f210af82eeed877a2b9f5c4a719cf128bf053fd35526961eaa3dba7ad4f5', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 17100.76754495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018e28847a3f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:51:56.000Z'}}, {'blockNum': '0x9c0ce1', 'uniqueId': '0xff1b1cfde1ec6c0ae4665ab2a66a287f104987d4d21eb77d8cd02c490d58caca:log:7', 'hash': '0xff1b1cfde1ec6c0ae4665ab2a66a287f104987d4d21eb77d8cd02c490d58caca', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbdbb09a328e40b8d741925f756b1765d2d0f1581', 'value': 448.13695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a6f1aba39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:58:19.000Z'}}, {'blockNum': '0x9c0ce9', 'uniqueId': '0xe3cb9cb5a9b7034173069586903fc79a0de12af05b77e00814eee0ffd7a198a0:log:28', 'hash': '0xe3cb9cb5a9b7034173069586903fc79a0de12af05b77e00814eee0ffd7a198a0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6efa4c6cb722a7f82a3671027b0fb7ccd69e41f2', 'value': 59.854003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164c1f5ec', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:00:14.000Z'}}, {'blockNum': '0x9c0ce9', 'uniqueId': '0x5900dab5975501eed53a5829a74c0dd5d237eba1913951f3fb4e68525c4c8d9b:log:34', 'hash': '0x5900dab5975501eed53a5829a74c0dd5d237eba1913951f3fb4e68525c4c8d9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6efa4c6cb722a7f82a3671027b0fb7ccd69e41f2', 'value': 70.656459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a525334c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:00:14.000Z'}}, {'blockNum': '0x9c0d40', 'uniqueId': '0xe47ba092229f829ec87eb9e559db7f5842a705a543602e6bab23ed9bf8a2ad02:log:2', 'hash': '0xe47ba092229f829ec87eb9e559db7f5842a705a543602e6bab23ed9bf8a2ad02', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2cd5e1c37351a664d9b367ba0fbe415882246373', 'value': 104.64917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026fc1f608', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:19:07.000Z'}}, {'blockNum': '0x9c0d70', 'uniqueId': '0x5fc40516bb977bf95182ed6c2f3b0435894bc305a6c4272a84a9e1033971acc2:log:88', 'hash': '0x5fc40516bb977bf95182ed6c2f3b0435894bc305a6c4272a84a9e1033971acc2', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 13291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013574888b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:29:54.000Z'}}, {'blockNum': '0x9c0d71', 'uniqueId': '0xd8970a835f378117fc9125143ee35961621de71cfe23f9ef3d422f24b294ba87:log:100', 'hash': '0xd8970a835f378117fc9125143ee35961621de71cfe23f9ef3d422f24b294ba87', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3338.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4db80c5de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:30:19.000Z'}}, {'blockNum': '0x9c0d82', 'uniqueId': '0xed1aa34a0d85b5b8229fab776d328a89c9bd992cf192852863e6821898bd2aea:log:13', 'hash': '0xed1aa34a0d85b5b8229fab776d328a89c9bd992cf192852863e6821898bd2aea', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b40e323b5522fe5261cc12b4022af535d9d63c8', 'value': 383.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08f0b2fb80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:35:36.000Z'}}, {'blockNum': '0x9c0d96', 'uniqueId': '0x9cedf710b3e1cd834902b2f80ef9a1821424aa6dbe090ee45cd4e6a71da834a3:log:105', 'hash': '0x9cedf710b3e1cd834902b2f80ef9a1821424aa6dbe090ee45cd4e6a71da834a3', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11764.65940841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0111ead5a169', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:40:22.000Z'}}, {'blockNum': '0x9c0da1', 'uniqueId': '0x66390fc44cb823f793ae6508956c29f512a9ade0a8df83a5c09d7a402274fa1f:log:32', 'hash': '0x66390fc44cb823f793ae6508956c29f512a9ade0a8df83a5c09d7a402274fa1f', 'from': '0x000614ff2c0fd4216379a139d9363dcc24d905b7', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 174.896328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0412769e20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:41:41.000Z'}}, {'blockNum': '0x9c0da2', 'uniqueId': '0xa5af928ceda38eda605d2aed66e9329057c0caca6755740cffcc3ccd7d8d76df:log:0', 'hash': '0xa5af928ceda38eda605d2aed66e9329057c0caca6755740cffcc3ccd7d8d76df', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2fac7bb714aae67c4fcd926af0687541ca5944b4', 'value': 76.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ca5c1680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:42:07.000Z'}}, {'blockNum': '0x9c0daf', 'uniqueId': '0xde58edfafb1b1c2487ad58a5bedbb6a556cecc99254799aea2ec174df78031c5:log:0', 'hash': '0xde58edfafb1b1c2487ad58a5bedbb6a556cecc99254799aea2ec174df78031c5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 36.94999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdc3d39bf', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:44:17.000Z'}}, {'blockNum': '0x9c0db4', 'uniqueId': '0x2023a83bf105850d0438b19ac6c481dd1a0012d57aaead1b607f787cc07a6887:log:139', 'hash': '0x2023a83bf105850d0438b19ac6c481dd1a0012d57aaead1b607f787cc07a6887', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x90319fbe0635475600665f93992a9480f0a1ebe0', 'value': 36.94999998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdc3d39be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:45:52.000Z'}}, {'blockNum': '0x9c0dc1', 'uniqueId': '0xed5b2d0c15781e2890cc9e7169f8b52a5b3256b211d388bfcc4e2d63f62ed197:log:2', 'hash': '0xed5b2d0c15781e2890cc9e7169f8b52a5b3256b211d388bfcc4e2d63f62ed197', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 471.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0af967c380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:50:38.000Z'}}, {'blockNum': '0x9c0dd5', 'uniqueId': '0x7d6b652dea8e3b9ceff12f2c6334cc358c95c66bd0561ba5e5cbfeddbb1edb0a:log:7', 'hash': '0x7d6b652dea8e3b9ceff12f2c6334cc358c95c66bd0561ba5e5cbfeddbb1edb0a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ca3f0a00a8e9274d398896d42e37c050ec45235', 'value': 821.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x131e7717e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:54:10.000Z'}}, {'blockNum': '0x9c0df2', 'uniqueId': '0x884c303dfc9f889297da018ed133454101a3078c45fc6233e00a12bb67b72242:log:33', 'hash': '0x884c303dfc9f889297da018ed133454101a3078c45fc6233e00a12bb67b72242', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xc9abeb1c2498b320a4b3a50ca430af57cef391fc', 'value': 20.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7b432d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:01:21.000Z'}}, {'blockNum': '0x9c0e18', 'uniqueId': '0x5cc52011e1958ae75cc671d2ee03c54756e6ca909df2cc20ed2f420abfe91da8:log:1', 'hash': '0x5cc52011e1958ae75cc671d2ee03c54756e6ca909df2cc20ed2f420abfe91da8', 'from': '0x72e5263ff33d2494692d7f94a758aa9f82062f73', 'to': '0x447f2963a0556c21b6b346facdce605c54809371', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fc23ac000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:11:20.000Z'}}, {'blockNum': '0x9c0e4d', 'uniqueId': '0x802b711f1e18cfe690626f1f6a7c6d40a38968e3af920e7450d192d00e440984:log:38', 'hash': '0x802b711f1e18cfe690626f1f6a7c6d40a38968e3af920e7450d192d00e440984', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 298.05367495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f089d0c7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:25:11.000Z'}}, {'blockNum': '0x9c0e57', 'uniqueId': '0x84184a960edddd154bc25529b7d4c550836b4c5106f9932786f07b67cb40696e:log:196', 'hash': '0x84184a960edddd154bc25529b7d4c550836b4c5106f9932786f07b67cb40696e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x502dafac138ffd710747c4827d6b3d9659da032d', 'value': 298.05367495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f089d0c7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:29:19.000Z'}}, {'blockNum': '0x9c0e5e', 'uniqueId': '0xeaf17fecf13a9426a9522075b123ba606299c220c6ee595802b003c8826311bd:log:107', 'hash': '0xeaf17fecf13a9426a9522075b123ba606299c220c6ee595802b003c8826311bd', 'from': '0x447f2963a0556c21b6b346facdce605c54809371', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7dba821800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:30:20.000Z'}}, {'blockNum': '0x9c0e7b', 'uniqueId': '0x450221672a50801062446eea9e49a9dda6aad09ac1ca108380bc14e313f1efa0:log:123', 'hash': '0x450221672a50801062446eea9e49a9dda6aad09ac1ca108380bc14e313f1efa0', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3046.079208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x46ec0c02a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:37:49.000Z'}}, {'blockNum': '0x9c0e91', 'uniqueId': '0x9153c2f72baedb2fa399e789603a24ec2eaa4348b16419b1f309bc797157158d:log:12', 'hash': '0x9153c2f72baedb2fa399e789603a24ec2eaa4348b16419b1f309bc797157158d', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xf704927b3a783e893e3062a62767a896c5540f45', 'value': 17.60557181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x68eff87d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:44:58.000Z'}}, {'blockNum': '0x9c0ea7', 'uniqueId': '0xdb6e65c3df26ab70c02fd5a3e52be2a4f826bd96812deed68f69201d7983d273:log:25', 'hash': '0xdb6e65c3df26ab70c02fd5a3e52be2a4f826bd96812deed68f69201d7983d273', 'from': '0xf704927b3a783e893e3062a62767a896c5540f45', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 17.60557181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x68eff87d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:51:00.000Z'}}, {'blockNum': '0x9c0eb8', 'uniqueId': '0x255c644cb7873fe38d91b02780f9ad5cbaad8395eb25ffd6b23e1ad4a3ee5f12:log:17', 'hash': '0x255c644cb7873fe38d91b02780f9ad5cbaad8395eb25ffd6b23e1ad4a3ee5f12', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 360.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0865fb33df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:55:32.000Z'}}, {'blockNum': '0x9c0ebd', 'uniqueId': '0xd0e6348ed74addd58f9f3cd69105229bea4e0777143b6a19041fa0c7a7e54876:log:18', 'hash': '0xd0e6348ed74addd58f9f3cd69105229bea4e0777143b6a19041fa0c7a7e54876', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x15d223b307e180d83fb06f2e14f73d74adaf0064', 'value': 329.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07ae6ab5c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:56:35.000Z'}}, {'blockNum': '0x9c0ec3', 'uniqueId': '0x317fb0d25ea5dd62492f748fb911dc97ad773eb31030f05384a63c0c77a676aa:log:93', 'hash': '0x317fb0d25ea5dd62492f748fb911dc97ad773eb31030f05384a63c0c77a676aa', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x2770e756f02671f93f0aef728772911342c259c6', 'value': 360.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0865fb33df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:57:41.000Z'}}, {'blockNum': '0x9c0ec8', 'uniqueId': '0x14a5fd7709c75180cb63f637acd9be6b0449b575a160ded9ab8b1bb4a7d26559:log:24', 'hash': '0x14a5fd7709c75180cb63f637acd9be6b0449b575a160ded9ab8b1bb4a7d26559', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x2fb9e343a8a2c4c4bcd4670ce61a14afe762c661', 'value': 63.65531597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x017b6a4dcd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:58:53.000Z'}}, {'blockNum': '0x9c0edb', 'uniqueId': '0x4d19be42e9b9e0af3039722d2f461e3c92ead1a6c6e322a1bc2307e7933b86d4:log:0', 'hash': '0x4d19be42e9b9e0af3039722d2f461e3c92ead1a6c6e322a1bc2307e7933b86d4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 8027.219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbae5f425e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:03:16.000Z'}}, {'blockNum': '0x9c0f0c', 'uniqueId': '0xc86a45a95a2f9003e31e9b09c8aa10128211e1e59d75e0dd58200fc668e89635:log:0', 'hash': '0xc86a45a95a2f9003e31e9b09c8aa10128211e1e59d75e0dd58200fc668e89635', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 290.50089863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c3853187', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:14:22.000Z'}}, {'blockNum': '0x9c0f0c', 'uniqueId': '0x5dd035e665c8636ecad3203e9e5102d006f1d1eaafd6e9777b4ba401aab393a8:log:3', 'hash': '0x5dd035e665c8636ecad3203e9e5102d006f1d1eaafd6e9777b4ba401aab393a8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2af50e9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:14:22.000Z'}}, {'blockNum': '0x9c0f13', 'uniqueId': '0xc4ae6ec6c5e3ad872c347b11b2b6ffa811042feab3981bb5c204fc3214130515:log:108', 'hash': '0xc4ae6ec6c5e3ad872c347b11b2b6ffa811042feab3981bb5c204fc3214130515', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1259fc9a8d8fcf968bc5aaad27442163aadf3d60', 'value': 290.50089863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c3853187', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:15:53.000Z'}}, {'blockNum': '0x9c0f3d', 'uniqueId': '0x2897490ff82dbce21b1b069053338c34fa7ccc140ebff2885180da1d6260f6dd:log:101', 'hash': '0x2897490ff82dbce21b1b069053338c34fa7ccc140ebff2885180da1d6260f6dd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb23ddb7735557aacff5acf8415f00068349ce3eb', 'value': 100.47548019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0256e16a73', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:24:15.000Z'}}, {'blockNum': '0x9c0f55', 'uniqueId': '0x0a31081dffd58b27e91d84523476575035067c62f1eca48d39445b1830128522:log:106', 'hash': '0x0a31081dffd58b27e91d84523476575035067c62f1eca48d39445b1830128522', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8027.219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbae5f425e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:30:28.000Z'}}, {'blockNum': '0x9c0f5f', 'uniqueId': '0x3ea6efdadae51bbca3cfe77c864352c0ecf1393577a9898db0e24a80e3878dbc:log:30', 'hash': '0x3ea6efdadae51bbca3cfe77c864352c0ecf1393577a9898db0e24a80e3878dbc', 'from': '0x0617169670775a5b2e4db26e24852a3d714bd165', 'to': '0x74454231249dba1a7885cdfb0512e81c21f18503', 'value': 327.22372899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x079e67c923', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:32:29.000Z'}}, {'blockNum': '0x9c0f64', 'uniqueId': '0x1caca6502aa377fa0ae684cdd1bc737011d5c87ef7540e38e97d9e6282338cdd:log:5', 'hash': '0x1caca6502aa377fa0ae684cdd1bc737011d5c87ef7540e38e97d9e6282338cdd', 'from': '0xbd56cf2fbdc8b89f43b011e441d53204ec9aecee', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 134.50797292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0321bae0ec', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:33:26.000Z'}}, {'blockNum': '0x9c0f6a', 'uniqueId': '0xd1d1f26f5640aeea8396c7a340bf3715277a6eed3acd397e0cfdc42467360c08:log:6', 'hash': '0xd1d1f26f5640aeea8396c7a340bf3715277a6eed3acd397e0cfdc42467360c08', 'from': '0x74454231249dba1a7885cdfb0512e81c21f18503', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 327.22372899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x079e67c923', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:13.000Z'}}, {'blockNum': '0x9c0f6e', 'uniqueId': '0x70380336c77fbe20630dfc9e34232cce3d8aff76041e3547131fb0ea2863aed9:log:57', 'hash': '0x70380336c77fbe20630dfc9e34232cce3d8aff76041e3547131fb0ea2863aed9', 'from': '0x1dd0755ad6d572b48c592e84e3a56b62263ee73f', 'to': '0xbe55164cfb1acab25c59568f06e7af2b81b3528e', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:44.000Z'}}, {'blockNum': '0x9c0f6e', 'uniqueId': '0x04d860f9364a8c3885ba0d252a40da9f093948ac3cdc11dc79707368050cdd6f:log:58', 'hash': '0x04d860f9364a8c3885ba0d252a40da9f093948ac3cdc11dc79707368050cdd6f', 'from': '0xc016ab3a4367ce6f2cecac15f6404d6f1531b969', 'to': '0xe673362cfceb7ada97ca69571ef75de274a6e33f', 'value': 240.48533886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x059967817e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:44.000Z'}}, {'blockNum': '0x9c0f7b', 'uniqueId': '0x159966c0713bef796ffcc90f396e12031bfb1e8f0f08c03da94bddb5327e2bde:log:8', 'hash': '0x159966c0713bef796ffcc90f396e12031bfb1e8f0f08c03da94bddb5327e2bde', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x27738019da260c847083eae79a0fdf2a42551974', 'value': 120.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d118d480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:38:44.000Z'}}, {'blockNum': '0x9c0fd7', 'uniqueId': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064:log:0', 'hash': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064', 'from': '0x16e3ebd91b3a6708cb34b28862abec99956f9a3e', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 15.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5e887080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:23.000Z'}}, {'blockNum': '0x9c0fd7', 'uniqueId': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064:log:1', 'hash': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064', 'from': '0x16e3ebd91b3a6708cb34b28862abec99956f9a3e', 'to': '0xdccac55b294c75b72d6117ade54c3563442478a4', 'value': 2950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44af5ec600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:23.000Z'}}, {'blockNum': '0x9c0fdb', 'uniqueId': '0x12f1d95b74fb2253d257214110028563bae9d1f39732f82e342d179c33126429:log:0', 'hash': '0x12f1d95b74fb2253d257214110028563bae9d1f39732f82e342d179c33126429', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 11.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x432ca7c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:45.000Z'}}, {'blockNum': '0x9c0fdc', 'uniqueId': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e:log:0', 'hash': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 11.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x432ca7c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:54.000Z'}}, {'blockNum': '0x9c0fdc', 'uniqueId': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e:log:1', 'hash': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x39db9c3c2b8d7d5c7f8b3470b936af26a464e7a3', 'value': 9900.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe6823528c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:54.000Z'}}, {'blockNum': '0x9c0fde', 'uniqueId': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227:log:0', 'hash': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227', 'from': '0x1c76f494fde175655e55e9b50f2d7a159219dc9b', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 14.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x56b989c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:02:28.000Z'}}, {'blockNum': '0x9c0fde', 'uniqueId': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227:log:1', 'hash': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227', 'from': '0x1c76f494fde175655e55e9b50f2d7a159219dc9b', 'to': '0x36cfb5a6be6b130cfceb934d3ca72c1d72c3a7d8', 'value': 171335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f95342e6700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:02:28.000Z'}}, {'blockNum': '0x9c0fe0', 'uniqueId': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd:log:0', 'hash': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 16.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x61ee30c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:09.000Z'}}, {'blockNum': '0x9c0fe0', 'uniqueId': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd:log:1', 'hash': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0xb7e27ef96256502677eb2e15f65848a8a50d3a49', 'value': 12907.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012c86c13dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:09.000Z'}}, {'blockNum': '0x9c0fe3', 'uniqueId': '0xba98c6d6549f2f3987247d6a029b782b93579f52ae0485e37538840e21e766ca:log:0', 'hash': '0xba98c6d6549f2f3987247d6a029b782b93579f52ae0485e37538840e21e766ca', 'from': '0xfa17a2003132c9dfc95c42ebcb9f5b8fb24db5f8', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 12.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x497e1640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:55.000Z'}}, {'blockNum': '0x9c0fe3', 'uniqueId': '0x52dc227ffb7bd1d969c968f86baabbc539d6eb2a4bf901f7b00a1d352d98da48:log:5', 'hash': '0x52dc227ffb7bd1d969c968f86baabbc539d6eb2a4bf901f7b00a1d352d98da48', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xbc9990df22f469960b52dadfcfdac1ce13778d52', 'value': 67.63671368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0193256f48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:55.000Z'}}, {'blockNum': '0x9c0fe5', 'uniqueId': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934:log:0', 'hash': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934', 'from': '0x171967273368510f92632cb5d8b081fde729f1d9', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 18.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6dd9f2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:04:27.000Z'}}, {'blockNum': '0x9c0fe5', 'uniqueId': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934:log:1', 'hash': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934', 'from': '0x171967273368510f92632cb5d8b081fde729f1d9', 'to': '0x5fe1eddb81a6e2ad3c10391c74c4f3e55c30f6f9', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x800e8dfc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:04:27.000Z'}}, {'blockNum': '0x9c0fe8', 'uniqueId': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660:log:0', 'hash': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660', 'from': '0x846f88d4f838fc7192d2d35d6fe55338312618da', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 31.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbb1956c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:05:49.000Z'}}, {'blockNum': '0x9c0fe8', 'uniqueId': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660:log:1', 'hash': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660', 'from': '0x846f88d4f838fc7192d2d35d6fe55338312618da', 'to': '0xb0ad48e5a9a926fec232dc7c22ed72c725acb1f8', 'value': 1224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c7f9bc800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:05:49.000Z'}}, {'blockNum': '0x9c0fe9', 'uniqueId': '0xe4a4abf953a812e973a6e10fc40c00ea06370b1e82105c4b552e4848b80b6853:log:0', 'hash': '0xe4a4abf953a812e973a6e10fc40c00ea06370b1e82105c4b552e4848b80b6853', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:05.000Z'}}, {'blockNum': '0x9c0fec', 'uniqueId': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6:log:0', 'hash': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6', 'from': '0x697c9ea5b3a5179df20f8230cf79ccd02d044089', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 31.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbb1956c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:22.000Z'}}, {'blockNum': '0x9c0fec', 'uniqueId': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6:log:1', 'hash': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6', 'from': '0x697c9ea5b3a5179df20f8230cf79ccd02d044089', 'to': '0x0000000000000000000000000000000000000000', 'value': 239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05908d0f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:22.000Z'}}, {'blockNum': '0x9c0fed', 'uniqueId': '0x34579330997886cc31d7b1e4cecb6d5a56f28dd8f1b3d3fd7803145ed1d800f9:log:6', 'hash': '0x34579330997886cc31d7b1e4cecb6d5a56f28dd8f1b3d3fd7803145ed1d800f9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb4cf686ea7a0e1cbc83c6d922106c4df5249ce43', 'value': 61.91881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0171109b28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:25.000Z'}}, {'blockNum': '0x9c1004', 'uniqueId': '0xf4522ec639cbbf4574d8f6fd6cd4324bdd3045634728471e08d4a974beaa5c24:log:40', 'hash': '0xf4522ec639cbbf4574d8f6fd6cd4324bdd3045634728471e08d4a974beaa5c24', 'from': '0xa6373b90c7f362ede18462748392d6c69668ee96', 'to': '0x7639d45c0ce0d655d3e7b66bc4c84cd9792fc9b2', 'value': 9940.40493477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe7716e35a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:12:10.000Z'}}, {'blockNum': '0x9c1007', 'uniqueId': '0x326790e3e7a79b33de29e64e9ca9fe41b218a6acc78e049f2a3b4b2df67a273f:log:0', 'hash': '0x326790e3e7a79b33de29e64e9ca9fe41b218a6acc78e049f2a3b4b2df67a273f', 'from': '0x7639d45c0ce0d655d3e7b66bc4c84cd9792fc9b2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 9940.40493477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe7716e35a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:12:41.000Z'}}, {'blockNum': '0x9c1027', 'uniqueId': '0x21686e8ec20cf6ab68db5f8812f585947187c1451537587cf5915f8d33a6bdda:log:23', 'hash': '0x21686e8ec20cf6ab68db5f8812f585947187c1451537587cf5915f8d33a6bdda', 'from': '0x2578753e8e09a7f9fbb393938fd273ad81973da5', 'to': '0xc5cb147b5e119ae7503b0e9040daeb85ea360ae0', 'value': 170.33222108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f74257dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:19:28.000Z'}}, {'blockNum': '0x9c1029', 'uniqueId': '0xed5d14177e9a4fd870a2c9b971ead6c8aa3a3a97485ef65188af68de6bc90b79:log:0', 'hash': '0xed5d14177e9a4fd870a2c9b971ead6c8aa3a3a97485ef65188af68de6bc90b79', 'from': '0xc5cb147b5e119ae7503b0e9040daeb85ea360ae0', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 170.33222108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f74257dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:19:47.000Z'}}, {'blockNum': '0x9c105c', 'uniqueId': '0x0362d84b345801fb0dee5a31376636b42be3c66ee502fe0f55a31249278536cc:log:72', 'hash': '0x0362d84b345801fb0dee5a31376636b42be3c66ee502fe0f55a31249278536cc', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10110.73715585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xeb68b08d81', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:30:18.000Z'}}, {'blockNum': '0x9c1097', 'uniqueId': '0x8523597fb409df40bf42986aea87085dd68dff043d373fcd8bcbe9fddafd9505:log:4', 'hash': '0x8523597fb409df40bf42986aea87085dd68dff043d373fcd8bcbe9fddafd9505', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xd7a7e33d0fa9d8b85db3be2aaa89b191d6f2f74c', 'value': 152.51896491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x038d1578ab', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:43:16.000Z'}}, {'blockNum': '0x9c109e', 'uniqueId': '0xffeaf59e3c03eb7ee42ac7ace7350ac00d53ede29139675f244f14bea70a1a79:log:3', 'hash': '0xffeaf59e3c03eb7ee42ac7ace7350ac00d53ede29139675f244f14bea70a1a79', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2391.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x37abfebe00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:44:02.000Z'}}, {'blockNum': '0x9c10a0', 'uniqueId': '0x62e5b41ccfbe91750eef3e16b90f49afd2dd6b63c46dc05ddb00cbc7b36c1b53:log:12', 'hash': '0x62e5b41ccfbe91750eef3e16b90f49afd2dd6b63c46dc05ddb00cbc7b36c1b53', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2391.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x37abfebe00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:44:13.000Z'}}, {'blockNum': '0x9c10a6', 'uniqueId': '0x436adc997eb834877b3099210bf61fa394a591bacbf38d99597145a1e296cae7:log:89', 'hash': '0x436adc997eb834877b3099210bf61fa394a591bacbf38d99597145a1e296cae7', 'from': '0xd7a7e33d0fa9d8b85db3be2aaa89b191d6f2f74c', 'to': '0xdf0ac221172ca54350ecdde54f0d755c5ca0c3d9', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:46:11.000Z'}}, {'blockNum': '0x9c10d8', 'uniqueId': '0x6214177573b956c5474be1fed397a2d7268b8ad993f3de7b0f2ad016ffc7e444:log:22', 'hash': '0x6214177573b956c5474be1fed397a2d7268b8ad993f3de7b0f2ad016ffc7e444', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 3326.273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7221cea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:00:39.000Z'}}, {'blockNum': '0x9c10da', 'uniqueId': '0x329254e70bf3c96a3cb5eed04d05d125412ef54935126c16d2c4af5e176b7870:log:15', 'hash': '0x329254e70bf3c96a3cb5eed04d05d125412ef54935126c16d2c4af5e176b7870', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2006b6eddef65c0868901da4d71895bc34cb26c7', 'value': 121.37093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d36d5788', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:02:21.000Z'}}, {'blockNum': '0x9c10da', 'uniqueId': '0xab2cc6258bad527a0d3f58fe0aa04d861cb23ffe296a78b62fdd162223c4127e:log:22', 'hash': '0xab2cc6258bad527a0d3f58fe0aa04d861cb23ffe296a78b62fdd162223c4127e', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3326.273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7221cea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:02:21.000Z'}}, {'blockNum': '0x9c10e0', 'uniqueId': '0xacd53eb2662ae5ebf0050eaa4fdea9b65c74684c6e16f08d9847dd0175ec9b5b:log:22', 'hash': '0xacd53eb2662ae5ebf0050eaa4fdea9b65c74684c6e16f08d9847dd0175ec9b5b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 476.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b19853300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:04:36.000Z'}}, {'blockNum': '0x9c10fa', 'uniqueId': '0x5721d31f0e39f6fcdd88f7e9d840214df6bbcf0104892299c9e92535c424799a:log:14', 'hash': '0x5721d31f0e39f6fcdd88f7e9d840214df6bbcf0104892299c9e92535c424799a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xfbc584988f90d2b4f37a83c6a8c8faf0b43ecc2b', 'value': 1056.63491943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x189a08ef67', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:12.000Z'}}, {'blockNum': '0x9c10fc', 'uniqueId': '0x773f9e1b900f76c957e2a14cab50103d3b4b9c7cee4a4f74035c0fc0be713c1a:log:14', 'hash': '0x773f9e1b900f76c957e2a14cab50103d3b4b9c7cee4a4f74035c0fc0be713c1a', 'from': '0xfbc584988f90d2b4f37a83c6a8c8faf0b43ecc2b', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1056.63491942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x189a08ef66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:26.000Z'}}, {'blockNum': '0x9c10fd', 'uniqueId': '0x8c9fd4368018872182915433f5aa86d59f8a7187cbd1232a1350ec190b0ba578:log:5', 'hash': '0x8c9fd4368018872182915433f5aa86d59f8a7187cbd1232a1350ec190b0ba578', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 476.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b19853300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:37.000Z'}}, {'blockNum': '0x9c1106', 'uniqueId': '0xce6adf6a4eb77638b7b647e1ce2ab3813606fe6f329bcca823323bb8717e79c2:log:4', 'hash': '0xce6adf6a4eb77638b7b647e1ce2ab3813606fe6f329bcca823323bb8717e79c2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2239135542266b1231754f7f560bf2639a7ddb9a', 'value': 709.267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10838f8de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:13:46.000Z'}}, {'blockNum': '0x9c1106', 'uniqueId': '0x0d33b3f6fb5a9c6c6bfc22f1debc40e6b8a9b32009a87c724a7e66146838b5ad:log:6', 'hash': '0x0d33b3f6fb5a9c6c6bfc22f1debc40e6b8a9b32009a87c724a7e66146838b5ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7ff0d2adfc9c4cb688139898dd1f12c6fbb0c7c9', 'value': 1362.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbbfe6e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:13:46.000Z'}}, {'blockNum': '0x9c1107', 'uniqueId': '0xd8934fc5fae4fc9ccb168b297bed87100b13e3067bc345fec136d313155dcc73:log:14', 'hash': '0xd8934fc5fae4fc9ccb168b297bed87100b13e3067bc345fec136d313155dcc73', 'from': '0x2239135542266b1231754f7f560bf2639a7ddb9a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 709.267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10838f8de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:14:13.000Z'}}, {'blockNum': '0x9c1107', 'uniqueId': '0x6bac4edcbb4ea409d196e09fedcbc8ac69609d9c34fbc2aa54f3387cce14121f:log:18', 'hash': '0x6bac4edcbb4ea409d196e09fedcbc8ac69609d9c34fbc2aa54f3387cce14121f', 'from': '0x7ff0d2adfc9c4cb688139898dd1f12c6fbb0c7c9', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1362.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbbfe6e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:14:13.000Z'}}, {'blockNum': '0x9c1124', 'uniqueId': '0x4bf4ccbe6d91a009c2be466863fffcf0c15c58060975b5e9bd95120accfebcb4:log:5', 'hash': '0x4bf4ccbe6d91a009c2be466863fffcf0c15c58060975b5e9bd95120accfebcb4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'value': 612.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e42365880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:21:47.000Z'}}, {'blockNum': '0x9c112d', 'uniqueId': '0xa90570997d3a1d7597117b0de21a6c15bb7e5115bf9a906ee0565fa9712a5989:log:3', 'hash': '0xa90570997d3a1d7597117b0de21a6c15bb7e5115bf9a906ee0565fa9712a5989', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 2938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4467d83a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:23:55.000Z'}}, {'blockNum': '0x9c112d', 'uniqueId': '0xdfee7d6e7e6dd2d2a5365921a84034c6e7994f572f8edd4589a6c915aa5d39ae:log:5', 'hash': '0xdfee7d6e7e6dd2d2a5365921a84034c6e7994f572f8edd4589a6c915aa5d39ae', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf84bd1d10fef6feeb7afa3561871716fe3d035c9', 'value': 41.700444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf88dd3f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:23:55.000Z'}}, {'blockNum': '0x9c1130', 'uniqueId': '0xb4a8c9a06f1702c2b8a69b27f4b29c646b54cdddfbe7fcae07f705f6b32aded5:log:7', 'hash': '0xb4a8c9a06f1702c2b8a69b27f4b29c646b54cdddfbe7fcae07f705f6b32aded5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'value': 443.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a55705c60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:25:22.000Z'}}, {'blockNum': '0x9c1144', 'uniqueId': '0x51b4cacdae2adf2c775f695c9a24d796010e2fbdb293fa932cd75ded41b4fced:log:96', 'hash': '0x51b4cacdae2adf2c775f695c9a24d796010e2fbdb293fa932cd75ded41b4fced', 'from': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1056.235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1897a6b4e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:29:01.000Z'}}, {'blockNum': '0x9c1149', 'uniqueId': '0xafcef7f54562898253fa0ba8297605ea357e37b6c8d0cc9ce90ca1739aeb49d3:log:12', 'hash': '0xafcef7f54562898253fa0ba8297605ea357e37b6c8d0cc9ce90ca1739aeb49d3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 709.067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10825e60e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:30:17.000Z'}}, {'blockNum': '0x9c114c', 'uniqueId': '0x736054cf93736621b30e749501f81b68990e48f16c704ad3a5106ca273a388a1:log:14', 'hash': '0x736054cf93736621b30e749501f81b68990e48f16c704ad3a5106ca273a388a1', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4467d83a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:31:36.000Z'}}, {'blockNum': '0x9c1161', 'uniqueId': '0x8cea89f008f6e1aa69aa61a09f632541a79a13df1d18a3c864051d7569e5e199:log:1', 'hash': '0x8cea89f008f6e1aa69aa61a09f632541a79a13df1d18a3c864051d7569e5e199', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9dcb9a3da34e628ed2dcf2e0ab05c0d3d62b2f8', 'value': 34.769243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcf3da78c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:36:17.000Z'}}, {'blockNum': '0x9c1164', 'uniqueId': '0x5e4ca9d6107272cbb4bca2f149df7487f69ad856d62a7cf592d5dc7c71dc9d69:log:25', 'hash': '0x5e4ca9d6107272cbb4bca2f149df7487f69ad856d62a7cf592d5dc7c71dc9d69', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x33d3fe7200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:37:00.000Z'}}, {'blockNum': '0x9c1177', 'uniqueId': '0x272b4ef226a5c84afe7a7cfd45eeb1f753b6f4e27007a55eb924e1fe481598d9:log:136', 'hash': '0x272b4ef226a5c84afe7a7cfd45eeb1f753b6f4e27007a55eb924e1fe481598d9', 'from': '0x32435ff043ac194c8b3406c8d56520c0d18cd15e', 'to': '0x29b6e2749e038d2b984ce547759988070fc20631', 'value': 1686.818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2746380140', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:42:28.000Z'}}, {'blockNum': '0x9c11e7', 'uniqueId': '0x217566785bce9c238024d81f7568c9a3ddf0f40f8102ea9c9e2c0c7dc61d729b:log:161', 'hash': '0x217566785bce9c238024d81f7568c9a3ddf0f40f8102ea9c9e2c0c7dc61d729b', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5ec90d0700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:05:08.000Z'}}, {'blockNum': '0x9c120b', 'uniqueId': '0xe2d0d4651ad8db4ebcf46e5163cde7a879c345007fc72afd24d3a8b161333400:log:134', 'hash': '0xe2d0d4651ad8db4ebcf46e5163cde7a879c345007fc72afd24d3a8b161333400', 'from': '0xb36db036f4c9bededba071d0792bedaf17b89f08', 'to': '0x9ae79d587caeae8981b1203c63e20f1be7c1fa1e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:13:15.000Z'}}, {'blockNum': '0x9c1264', 'uniqueId': '0x3673b156e790c2dabf0a6127519aa99c41e982af6a5026dcdce9954fc9bc1df4:log:0', 'hash': '0x3673b156e790c2dabf0a6127519aa99c41e982af6a5026dcdce9954fc9bc1df4', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'value': 89.74844279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0216f14177', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:27:34.000Z'}}, {'blockNum': '0x9c1280', 'uniqueId': '0x39d3729a4d7b2bd2ab64b9b3d2249baeb4a4efadf14588386cd58165ca914986:log:22', 'hash': '0x39d3729a4d7b2bd2ab64b9b3d2249baeb4a4efadf14588386cd58165ca914986', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd3e8a790b2fbbe53a9db03845bdc0dca3064dc69', 'value': 47.575063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011b91c8fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:33:06.000Z'}}, {'blockNum': '0x9c12b7', 'uniqueId': '0x0b1f1fdc7023d61b55d97786a2816cbdf86a189fc8408d41c99d664075c6d92d:log:15', 'hash': '0x0b1f1fdc7023d61b55d97786a2816cbdf86a189fc8408d41c99d664075c6d92d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18c5ef2800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:43:46.000Z'}}, {'blockNum': '0x9c1302', 'uniqueId': '0x5a515c2eecc3008d1bd81839c8389ff273e149addb2e983059d095a1cea4b260:log:137', 'hash': '0x5a515c2eecc3008d1bd81839c8389ff273e149addb2e983059d095a1cea4b260', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x18a052ff51cf8bfb6b9028eda22b855f1f87df3c', 'value': 491.34842318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b70aa31ce', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:03:49.000Z'}}, {'blockNum': '0x9c1315', 'uniqueId': '0x54457c5332fa99fbbab83f0c9b0889609519eb05e725a345e7b9cd8ae5acec2f:log:196', 'hash': '0x54457c5332fa99fbbab83f0c9b0889609519eb05e725a345e7b9cd8ae5acec2f', 'from': '0x9ae79d587caeae8981b1203c63e20f1be7c1fa1e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:08:20.000Z'}}, {'blockNum': '0x9c1319', 'uniqueId': '0x7520cdb05ed493b946f988dcb78c008567e92a6ed5f9019058f05ccdb9a416d6:log:135', 'hash': '0x7520cdb05ed493b946f988dcb78c008567e92a6ed5f9019058f05ccdb9a416d6', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x0f0c138a6364464d5de4ecf746894443526516e6', 'value': 396.3901736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x093aab6790', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:10:11.000Z'}}, {'blockNum': '0x9c1357', 'uniqueId': '0x234f47bdd482e6be3ca64c84d875c3e74fb28a6bee4c0a3d837fee791871a711:log:153', 'hash': '0x234f47bdd482e6be3ca64c84d875c3e74fb28a6bee4c0a3d837fee791871a711', 'from': '0xe184a8d3a892930221284832d68c77f0d84b9382', 'to': '0x5ab1e75aeefa5883463e170d7229e5f51ece8ad1', 'value': 102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025ff7a600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:24:36.000Z'}}, {'blockNum': '0x9c13e8', 'uniqueId': '0x3afde15545ce85ff251fb14495e61a298921248f04055ee275acce337975e290:log:104', 'hash': '0x3afde15545ce85ff251fb14495e61a298921248f04055ee275acce337975e290', 'from': '0x263dd9b9fa838e6cbe0142b816f6396719502bf1', 'to': '0x6d512f2c26dae6f89c065ef4ee24b625bd8e3544', 'value': 46.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011711a680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:52:24.000Z'}}, {'blockNum': '0x9c1400', 'uniqueId': '0x04430164bd1a2808e72fa78d0f2f9e71ee27d00227242b020117d46cbbe2c619:log:65', 'hash': '0x04430164bd1a2808e72fa78d0f2f9e71ee27d00227242b020117d46cbbe2c619', 'from': '0x58ada76e6afbcd711932f3896e355796f16a6710', 'to': '0x831e5466242fe0e200ff920fc52a69a68b6df171', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:58:16.000Z'}}, {'blockNum': '0x9c140b', 'uniqueId': '0xd7480c85c14163a886ea91d7bce93a71215f574d2cf49a2e4a1a14efe4c4d665:log:12', 'hash': '0xd7480c85c14163a886ea91d7bce93a71215f574d2cf49a2e4a1a14efe4c4d665', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 500.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba9c68540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:00:34.000Z'}}, {'blockNum': '0x9c140b', 'uniqueId': '0xb064a81915548b3434987573bb60399e9edd83f13d053e77196fb16f3ccf1bc8:log:14', 'hash': '0xb064a81915548b3434987573bb60399e9edd83f13d053e77196fb16f3ccf1bc8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 298.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f3bc2ec0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:00:34.000Z'}}, {'blockNum': '0x9c1412', 'uniqueId': '0x16b05d6745770571b10b2225bff96e7da43bb411c6a7f477c2d1d8ee5fac4de4:log:6', 'hash': '0x16b05d6745770571b10b2225bff96e7da43bb411c6a7f477c2d1d8ee5fac4de4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1421.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x21195631c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:02:52.000Z'}}, {'blockNum': '0x9c1416', 'uniqueId': '0x7dbb6991adccf54e2a02f1bd76c2b353bc38808b1a33d72ef0d86f3b31b65f10:log:49', 'hash': '0x7dbb6991adccf54e2a02f1bd76c2b353bc38808b1a33d72ef0d86f3b31b65f10', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 385.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08fa4ba5c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:03:44.000Z'}}]}}
Number of returned transfers:  309
Answer is complete
 
symbol             QSP
group              BPF
date        2020-06-13
hour             16:00
exchange       binance
Name: 831, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2020-06-13 16:00:00 2020-06-13 04:00:00 2020-06-14 04:00:00
Unix timestamps:  1592013600.0 1592100000.0
Hex Block Numbers:  0x9c78bc 0x9c9223
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9c78cc', 'uniqueId': '0xe0f3acb9ac4e9da824f213316acb54e65f50b88d8748a92432faa146cf7de6b2:log:5', 'hash': '0xe0f3acb9ac4e9da824f213316acb54e65f50b88d8748a92432faa146cf7de6b2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd7fb052e6580c5a24b74953d76281d79d7820977', 'value': 9597.327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x020845aae9aea9618000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:03:07.000Z'}}, {'blockNum': '0x9c796f', 'uniqueId': '0x154bfe084b5ca472dc85f4693ae84887e400d7f9017e3a60096272a876c3d521:log:7', 'hash': '0x154bfe084b5ca472dc85f4693ae84887e400d7f9017e3a60096272a876c3d521', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x386e96e10447095a99b919defc955c6d4835c279', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:38:27.000Z'}}, {'blockNum': '0x9c7973', 'uniqueId': '0x3e0a39a246de933b902350265c7f3e346462e0c7519cb3feb80a8b32b6e56527:log:105', 'hash': '0x3e0a39a246de933b902350265c7f3e346462e0c7519cb3feb80a8b32b6e56527', 'from': '0x4adf9e849705bc6b7b363e95c32343942d0c2063', 'to': '0x565ed33632dd634f05458bf4afd41da25931e1d5', 'value': 27566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05d65b19451291f80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:39:48.000Z'}}, {'blockNum': '0x9c79ae', 'uniqueId': '0x1782e3700995859c8445e3c9a00f4cf2293b0541a49b2aeedcf01fd9c7f67a0b:log:1', 'hash': '0x1782e3700995859c8445e3c9a00f4cf2293b0541a49b2aeedcf01fd9c7f67a0b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 20206.787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04476980945aa5338000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:52:57.000Z'}}, {'blockNum': '0x9c79ba', 'uniqueId': '0xa71ef361a1ff2a0f2b1441e62cb60a9d7d9c1acc10846a3286e390c653d8c572:log:41', 'hash': '0xa71ef361a1ff2a0f2b1441e62cb60a9d7d9c1acc10846a3286e390c653d8c572', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0024fd7d0c646d101b7b6889e791e3b5acf21628', 'value': 20206.787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04476980945aa5338000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:55:39.000Z'}}, {'blockNum': '0x9c7a49', 'uniqueId': '0xa57ca6293cb4bbc759dd966f3b749d20ebda1e4131fe36bbc202678519af5476:log:0', 'hash': '0xa57ca6293cb4bbc759dd966f3b749d20ebda1e4131fe36bbc202678519af5476', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x447449d92bbd7112f8bc1a8a9b9423f88b86ebeb', 'value': 51929.59600001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aff1bea0b37bdf1e400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T03:26:26.000Z'}}, {'blockNum': '0x9c7b5b', 'uniqueId': '0x3d1c7859b7da4fbd01540e5672e90e423d89ba0fda96d2563dc411d20cec8568:log:154', 'hash': '0x3d1c7859b7da4fbd01540e5672e90e423d89ba0fda96d2563dc411d20cec8568', 'from': '0x94c7c34a3cdb736f029cb5d068f7eb43866e6911', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 87892.7258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x129cac99377b12ca8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T04:30:32.000Z'}}, {'blockNum': '0x9c7bc0', 'uniqueId': '0xf9b265f977150941dc8c579d78f55f9664a7ac7681811c798f1f8c4b9806c69b:log:8', 'hash': '0xf9b265f977150941dc8c579d78f55f9664a7ac7681811c798f1f8c4b9806c69b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 17793.59824999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03c497c7e5d78a38bc00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T04:52:26.000Z'}}, {'blockNum': '0x9c7bcd', 'uniqueId': '0x993da0860cde7ecef63aa875ce3c1bcf162a4d47386d609d6df78ced413e1805:log:85', 'hash': '0x993da0860cde7ecef63aa875ce3c1bcf162a4d47386d609d6df78ced413e1805', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4d46513b4d234797bd57c79a6c7f56e96ad887f1', 'value': 17793.59824999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03c497c7e5d78a38bc00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T04:54:46.000Z'}}, {'blockNum': '0x9c7c40', 'uniqueId': '0x283652d3bb98f21edfd0b9aa1da1d44514f14aefa3ce9ab27fc98dd5d0b7b939:log:17', 'hash': '0x283652d3bb98f21edfd0b9aa1da1d44514f14aefa3ce9ab27fc98dd5d0b7b939', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad5646dee0a4c919e2e6c13419ba79dd75f82a00', 'value': 199938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a56a923831362c80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:23:54.000Z'}}, {'blockNum': '0x9c7c4a', 'uniqueId': '0x29b48453d2b95cfc2ab9e984aae850d2b76615da9ee2d2ac52499cb1ad39fafc:log:9', 'hash': '0x29b48453d2b95cfc2ab9e984aae850d2b76615da9ee2d2ac52499cb1ad39fafc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 502316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6a5e9adc47c52d300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:25:48.000Z'}}, {'blockNum': '0x9c7c66', 'uniqueId': '0xd809a7e5fc6bb4ed3fb64e33c867fa471562f399bd464b175af7e797d45fe1f4:log:21', 'hash': '0xd809a7e5fc6bb4ed3fb64e33c867fa471562f399bd464b175af7e797d45fe1f4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad5646dee0a4c919e2e6c13419ba79dd75f82a00', 'value': 249938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x34ed2a8773b8de080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:31:19.000Z'}}, {'blockNum': '0x9c7cc7', 'uniqueId': '0x9567f315c74039829a4c60317eeec761d9642afe04c9f5b546d0148bd46a3deb:log:17', 'hash': '0x9567f315c74039829a4c60317eeec761d9642afe04c9f5b546d0148bd46a3deb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ff181dab3b8ef3edd07476fa40788dd0700e950', 'value': 790.95872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2ae0c1dd293da80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:52:17.000Z'}}, {'blockNum': '0x9c7cc7', 'uniqueId': '0x9436a8865474464dba44a14bfb665dd0ec337a2bd51f0bd98255b076935fde47:log:21', 'hash': '0x9436a8865474464dba44a14bfb665dd0ec337a2bd51f0bd98255b076935fde47', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd50c125a789128dbd0d4febdbf9599096c68e15c', 'value': 1030.4061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x37dbc1d89fdfa14000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:52:17.000Z'}}, {'blockNum': '0x9c7d4e', 'uniqueId': '0xfdd04f0d00ff2254d07a50aeb2e75ea6c3f935e8c4415e770942c90f540e72c6:log:29', 'hash': '0xfdd04f0d00ff2254d07a50aeb2e75ea6c3f935e8c4415e770942c90f540e72c6', 'from': '0x2ff181dab3b8ef3edd07476fa40788dd0700e950', 'to': '0x6d25c3711ecc16f54ae1771e61eb8d08c3977db5', 'value': 790.95872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2ae0c1dd293da80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T06:26:12.000Z'}}, {'blockNum': '0x9c7d83', 'uniqueId': '0xc8683397f9365dfc4937ae3417b817053c498c8ae44a4218b14c27b13fdb61e1:log:34', 'hash': '0xc8683397f9365dfc4937ae3417b817053c498c8ae44a4218b14c27b13fdb61e1', 'from': '0x35f05827f3df3a5c57bd7f5547d966c353282f9d', 'to': '0xa37f430953bb573364f354b2dd218a442c46d65a', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T06:37:25.000Z'}}, {'blockNum': '0x9c7def', 'uniqueId': '0x0b667b1b23706ce8d4cde56fe498c29705d2ef67550018c02d1bdbabcf5fa324:log:171', 'hash': '0x0b667b1b23706ce8d4cde56fe498c29705d2ef67550018c02d1bdbabcf5fa324', 'from': '0xa37f430953bb573364f354b2dd218a442c46d65a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:00:33.000Z'}}, {'blockNum': '0x9c7e20', 'uniqueId': '0xb19419b6f8f6de9d9ba76d0ad2380f58b44a1de8a47f01ee164511b9490cdd51:log:18', 'hash': '0xb19419b6f8f6de9d9ba76d0ad2380f58b44a1de8a47f01ee164511b9490cdd51', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 9836.57049999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02153dd6915b56805c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:10:25.000Z'}}, {'blockNum': '0x9c7e2a', 'uniqueId': '0x32bb315f7ed5d1a71d6252ec8e7f97fed1f3965278e066c2d2c093a6e211fc24:log:96', 'hash': '0x32bb315f7ed5d1a71d6252ec8e7f97fed1f3965278e066c2d2c093a6e211fc24', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x3badc34afe50d98ca792f41676f089f4dbf5cf30', 'value': 9836.57049999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02153dd6915b56805c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:12:45.000Z'}}, {'blockNum': '0x9c7e8e', 'uniqueId': '0x13d8016e049ced73b529d35e3114fc8a0aeb741fd8c314a17315f3522970e549:log:98', 'hash': '0x13d8016e049ced73b529d35e3114fc8a0aeb741fd8c314a17315f3522970e549', 'from': '0x2b9b77c697de4913bd81577f16980fd0d5014b36', 'to': '0x813e323abd2678fb02059064111722b3e38e5296', 'value': 2550, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8a3c5be1855e180000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:34:24.000Z'}}, {'blockNum': '0x9c7f21', 'uniqueId': '0x252c074233a52915f0946c55956dabc0f502225e780803af43d2743abbafcaae:log:116', 'hash': '0x252c074233a52915f0946c55956dabc0f502225e780803af43d2743abbafcaae', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 97247.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1497ce52265773fd8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T08:05:25.000Z'}}, {'blockNum': '0x9c7ff5', 'uniqueId': '0x9caa8a9004c3ccc20a07cc0f5c58c8ae49ec6294a86a5aa05ba60b4d54a8708f:log:154', 'hash': '0x9caa8a9004c3ccc20a07cc0f5c58c8ae49ec6294a86a5aa05ba60b4d54a8708f', 'from': '0xdb38317eb5e13a45d513a975661ac65b1bc37042', 'to': '0x0ae280667ede02c11fc31da99b51e04df73d1190', 'value': 30408.257113424326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06706f56fecef1f87144', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T08:47:40.000Z'}}, {'blockNum': '0x9c8089', 'uniqueId': '0xba771658d998ae6996e3a114d8a90d14a392baf82f9f76e624b22994689b077c:log:148', 'hash': '0xba771658d998ae6996e3a114d8a90d14a392baf82f9f76e624b22994689b077c', 'from': '0x3bbaecc7118b0b78a45a74e1687c3c907db70dbc', 'to': '0x62567ac7cd7084943e79ce61e06a5d5b9e3987a1', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T09:20:23.000Z'}}, {'blockNum': '0x9c80b1', 'uniqueId': '0x30b444830f046eef608c0743248684fae571157d9b6e1833bdeacd4b8a197122:log:171', 'hash': '0x30b444830f046eef608c0743248684fae571157d9b6e1833bdeacd4b8a197122', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97247.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1497ce52265773fd8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T09:30:52.000Z'}}, {'blockNum': '0x9c81b3', 'uniqueId': '0x73f91edc41d78d431f114a60aab020d14539a9664c6cae915255f9a80f6c9ae1:log:5', 'hash': '0x73f91edc41d78d431f114a60aab020d14539a9664c6cae915255f9a80f6c9ae1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1540.4387119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5381e1aee103cc9800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T10:29:14.000Z'}}, {'blockNum': '0x9c81bb', 'uniqueId': '0xf044eedf062e7d32e34362fb766207169b0732980958c56d633ff134a13717e0:log:61', 'hash': '0xf044eedf062e7d32e34362fb766207169b0732980958c56d633ff134a13717e0', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x59776535aae70f06e7fb91d304c665415c8dd0f5', 'value': 1540.4387119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5381e1aee103cc9800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T10:31:31.000Z'}}, {'blockNum': '0x9c81cd', 'uniqueId': '0xe5380116a6dec96ca79cf4172afd40e054661f5bf30cab9c966b350ef782f8e6:log:8', 'hash': '0xe5380116a6dec96ca79cf4172afd40e054661f5bf30cab9c966b350ef782f8e6', 'from': '0x5988bb26dd5b712bb76bfe3f95e2c49490062264', 'to': '0x28762f08fb9c74733deb36435cbb60edda033e63', 'value': 1433.3018185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4db30ef9f79de82800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T10:36:58.000Z'}}, {'blockNum': '0x9c824f', 'uniqueId': '0x7c113743826418eded166bb23ae49fd62210f7229399cff84bc2e4de0b2c774a:log:23', 'hash': '0x7c113743826418eded166bb23ae49fd62210f7229399cff84bc2e4de0b2c774a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'value': 20466.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04557f68d53329460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:04:45.000Z'}}, {'blockNum': '0x9c827f', 'uniqueId': '0x9ff246f15a2903535538a11eaefc8c6816d307bca88308567eb075a102f3244f:log:15', 'hash': '0x9ff246f15a2903535538a11eaefc8c6816d307bca88308567eb075a102f3244f', 'from': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'to': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'value': 20466.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04557f68d53329460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:15:30.000Z'}}, {'blockNum': '0x9c82be', 'uniqueId': '0x83ee7ee3fc2a6c66e310fcf984b8c7c79e3cf9b2d641bacdd46fba934845897c:log:3', 'hash': '0x83ee7ee3fc2a6c66e310fcf984b8c7c79e3cf9b2d641bacdd46fba934845897c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 114541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x184147b17bc5e1940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:30:32.000Z'}}, {'blockNum': '0x9c82c6', 'uniqueId': '0x933325564fc42f0fa45245e4925f0ca22882ad93336c3ba1089bf325782691e2:log:0', 'hash': '0x933325564fc42f0fa45245e4925f0ca22882ad93336c3ba1089bf325782691e2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 13530.85827251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02dd82614549ca306c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:31:37.000Z'}}, {'blockNum': '0x9c82cd', 'uniqueId': '0x2c172595a2c60256080ab770f214be8bc9af24687f9474b02f2dfd2e35cafde6:log:31', 'hash': '0x2c172595a2c60256080ab770f214be8bc9af24687f9474b02f2dfd2e35cafde6', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'value': 13530.85827251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02dd82614549ca306c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:33:22.000Z'}}, {'blockNum': '0x9c834e', 'uniqueId': '0x1cc60d7bfb903a2a4fe1d4476ebed03627e0d8c53b1e05c878356110238c8b2c:log:9', 'hash': '0x1cc60d7bfb903a2a4fe1d4476ebed03627e0d8c53b1e05c878356110238c8b2c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf3a2dbd2e3cbf4af38df56da6a2978f01ae6b7f3', 'value': 785.152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a902c40161f800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:58:51.000Z'}}, {'blockNum': '0x9c835b', 'uniqueId': '0xc7f6ea1fbecdc91a1ae5eefa4a267dcca2dc7cb42c33eeaf1a5e19f054dca968:log:103', 'hash': '0xc7f6ea1fbecdc91a1ae5eefa4a267dcca2dc7cb42c33eeaf1a5e19f054dca968', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x184147b17bc5e1940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:00:34.000Z'}}, {'blockNum': '0x9c83c1', 'uniqueId': '0xcc06bc44ed7599f55603b60979f02f71f91a589ab94b85a20f1f74f4e38e1be3:log:22', 'hash': '0xcc06bc44ed7599f55603b60979f02f71f91a589ab94b85a20f1f74f4e38e1be3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 95066.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1421921a3790f6640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:28:01.000Z'}}, {'blockNum': '0x9c83cb', 'uniqueId': '0xbdac68765bc19fd7382f8d34f5fcb5459765af732b77694e2921ff63b0ef775f:log:77', 'hash': '0xbdac68765bc19fd7382f8d34f5fcb5459765af732b77694e2921ff63b0ef775f', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x24bc2bb99f5b5cbaf5ca666aced4ad2087d3199c', 'value': 95066.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1421921a3790f6640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:30:14.000Z'}}, {'blockNum': '0x9c83df', 'uniqueId': '0xdb0ec28382e385b402fdf458bf4f2273c3c92c093ec8d2b88cd7a37050e139d1:log:7', 'hash': '0xdb0ec28382e385b402fdf458bf4f2273c3c92c093ec8d2b88cd7a37050e139d1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2ae1b8dccf3dc99d8726192003e41fb54f273b9d', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:33:55.000Z'}}, {'blockNum': '0x9c83e3', 'uniqueId': '0x7bc726f50976f2530bf1ca4fe8b0f845f7e57f2404c0ac0c3e17c31b35c439e1:log:1', 'hash': '0x7bc726f50976f2530bf1ca4fe8b0f845f7e57f2404c0ac0c3e17c31b35c439e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 95517.26175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x143a004a617ba4496000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:34:43.000Z'}}, {'blockNum': '0x9c83e8', 'uniqueId': '0x7310ce4c1ca2dc9bb804818d911e83ddd48f92ae541345067674152a7ac2501d:log:18', 'hash': '0x7310ce4c1ca2dc9bb804818d911e83ddd48f92ae541345067674152a7ac2501d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x733043b3cda5511338b7fe52d9c6b0519af6ec9b', 'value': 1330.0047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x481985e3fbabf9c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:36:24.000Z'}}, {'blockNum': '0x9c83e9', 'uniqueId': '0x0c5a49036c90e3b00f5543e59e1a47b879f360df681051fbc1a825e74f11a3ed:log:22', 'hash': '0x0c5a49036c90e3b00f5543e59e1a47b879f360df681051fbc1a825e74f11a3ed', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x2ff3373d3c335e40111f1fce8f20d7b69dbb860e', 'value': 95517.26175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x143a004a617ba4496000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:37:30.000Z'}}, {'blockNum': '0x9c8469', 'uniqueId': '0x6126b365d6f9f9ec86f6c0b84ae46f6520ebbebf43328c3d404cdefbc5c154de:log:42', 'hash': '0x6126b365d6f9f9ec86f6c0b84ae46f6520ebbebf43328c3d404cdefbc5c154de', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8c3ab8b54403e12bd07d5fd8c0f79d526e7d983a', 'value': 1494.328334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5101f8b67b6f46e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T13:08:35.000Z'}}, {'blockNum': '0x9c8498', 'uniqueId': '0x1a3441f9d3739e3362904169820eabb2b5698195eb659b482f8859458985b155:log:18', 'hash': '0x1a3441f9d3739e3362904169820eabb2b5698195eb659b482f8859458985b155', 'from': '0x2254d8eee1b396ac5aae9d209b8db0e5af379ae4', 'to': '0xc3b79c1c46e15138576476eedf2d3d8b7e9f63f7', 'value': 1814.148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x62585c6a3b615a0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T13:21:03.000Z'}}, {'blockNum': '0x9c849a', 'uniqueId': '0x796a906c4c62720df138c3f9c85f362fb7debe4e6c4cccb510a5a951e00cae0e:log:1', 'hash': '0x796a906c4c62720df138c3f9c85f362fb7debe4e6c4cccb510a5a951e00cae0e', 'from': '0xc3b79c1c46e15138576476eedf2d3d8b7e9f63f7', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1814.148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x62585c6a3b615a0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T13:21:42.000Z'}}, {'blockNum': '0x9c85bd', 'uniqueId': '0xec86fc5a9b3a3da9d77a81b66eea795b5b0f47462157bb77c6160517a462c5d1:log:27', 'hash': '0xec86fc5a9b3a3da9d77a81b66eea795b5b0f47462157bb77c6160517a462c5d1', 'from': '0x7728156d25f977a2c76f10628404085b1433cb0e', 'to': '0x6401186196a8baa871c32863f78551de0485ceb7', 'value': 4992.151103631555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010ea0038333e9226918', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T14:22:56.000Z'}}, {'blockNum': '0x9c85c0', 'uniqueId': '0x4db6dfe463acbabb843f173de4ac97ffec4d78d8730d3d3b079ed0a46950b1b9:log:1', 'hash': '0x4db6dfe463acbabb843f173de4ac97ffec4d78d8730d3d3b079ed0a46950b1b9', 'from': '0x6401186196a8baa871c32863f78551de0485ceb7', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 4992.151103631555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010ea0038333e9226918', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T14:23:20.000Z'}}, {'blockNum': '0x9c86f7', 'uniqueId': '0x32c772a84abd97482063f5bf9677f9c72bdaf81b5663003414209d3fe3553293:log:56', 'hash': '0x32c772a84abd97482063f5bf9677f9c72bdaf81b5663003414209d3fe3553293', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x0339ad2632830cbaa2e9a06c8ebd43b2d581d976', 'value': 688.12345663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x254da19df87d111c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:30:37.000Z'}}, {'blockNum': '0x9c8701', 'uniqueId': '0x5b91b51d8e934c608ad14a06999f19d42965d0aaf4aa9bc1cea92aa555150445:log:62', 'hash': '0x5b91b51d8e934c608ad14a06999f19d42965d0aaf4aa9bc1cea92aa555150445', 'from': '0xeecee4ce45f1f7962822fcc036522639c005cc7e', 'to': '0xc1afbe5f81c54c573ebeb4b599bf5ad5e739b55a', 'value': 31088.539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06955025c25c6daf8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:32:57.000Z'}}, {'blockNum': '0x9c8702', 'uniqueId': '0xa8ee59bc681fde2c340102b775bf6f1516b5728d0daaa44af63038590e0e450c:log:0', 'hash': '0xa8ee59bc681fde2c340102b775bf6f1516b5728d0daaa44af63038590e0e450c', 'from': '0xc1afbe5f81c54c573ebeb4b599bf5ad5e739b55a', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 31088.539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06955025c25c6daf8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:33:24.000Z'}}, {'blockNum': '0x9c873f', 'uniqueId': '0x8ff3efb686f13d4ee717d0a97b737c57741fb2dfeaa608d79b0577c73e8de3f8:log:34', 'hash': '0x8ff3efb686f13d4ee717d0a97b737c57741fb2dfeaa608d79b0577c73e8de3f8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xab561d89e4c76549cc6ee339b4839d1d46555180', 'value': 74881.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0fdb53d1b27a23630000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:49:22.000Z'}}, {'blockNum': '0x9c8776', 'uniqueId': '0x4b7e174e9bd17189703633a47bc971a05024add6f031078fac355ad472a87db6:log:56', 'hash': '0x4b7e174e9bd17189703633a47bc971a05024add6f031078fac355ad472a87db6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 134237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1c6d009a19e47f540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:02:45.000Z'}}, {'blockNum': '0x9c8776', 'uniqueId': '0xf082cde3abeecd0eb3fd5816cd6180ccf45c6c27e5c7b919103a6023e11993ff:log:98', 'hash': '0xf082cde3abeecd0eb3fd5816cd6180ccf45c6c27e5c7b919103a6023e11993ff', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'value': 29033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0625e1d03c92cc040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:02:45.000Z'}}, {'blockNum': '0x9c8781', 'uniqueId': '0xe6f153d666a781ea5554aac6892176cdd272270382c23263dd4c7194e2abd8e2:log:154', 'hash': '0xe6f153d666a781ea5554aac6892176cdd272270382c23263dd4c7194e2abd8e2', 'from': '0xc77ad9bfdc6a35069d26ff14e1e384fbef9ddc0e', 'to': '0x3a377ec1a46e9bbfea8ca7e414b886e287929827', 'value': 7175.722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0184ff25b4653b910000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:05:09.000Z'}}, {'blockNum': '0x9c8783', 'uniqueId': '0xa8d4f0578ba80a11abee6c5bab31dce5e25145149323c8d9cd6cb667f0847bc1:log:174', 'hash': '0xa8d4f0578ba80a11abee6c5bab31dce5e25145149323c8d9cd6cb667f0847bc1', 'from': '0x004e8ca00f51a5b91db3ec8908f3cff467d353a1', 'to': '0x211885d8df538ba3850b989363edd05630e10ef2', 'value': 4400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xee86442fcd06c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:05:12.000Z'}}, {'blockNum': '0x9c8797', 'uniqueId': '0xaaa708fc79196e9bbff9bd5dffefa8e9e0b07a177c23e0ab582a908e9fced6da:log:126', 'hash': '0xaaa708fc79196e9bbff9bd5dffefa8e9e0b07a177c23e0ab582a908e9fced6da', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 156836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x213618ba87424c100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:08:08.000Z'}}, {'blockNum': '0x9c8798', 'uniqueId': '0x9245cb91c6ed7fe410dbddcafe4936a3751066025908d1b8d151f1ebc2f10535:log:2', 'hash': '0x9245cb91c6ed7fe410dbddcafe4936a3751066025908d1b8d151f1ebc2f10535', 'from': '0x70c890146ff61b05ea7b0f9d61320cff0f51e5e6', 'to': '0x595af8896be7bb71b7b2ab1c0f7e5a0c13854850', 'value': 5672.206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01337dabd85d575b0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:08:54.000Z'}}, {'blockNum': '0x9c87a5', 'uniqueId': '0x23042ed4dd7943f31c62407590c1aa4d4876a177c49c7d87df09f2106bddba87:log:105', 'hash': '0x23042ed4dd7943f31c62407590c1aa4d4876a177c49c7d87df09f2106bddba87', 'from': '0x3a565ea133b7ee11ab9cf9d03bde38af1fdd1080', 'to': '0xadbfa6ebd7d34203f803294593fd147c8fd7d445', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:12:50.000Z'}}, {'blockNum': '0x9c87a8', 'uniqueId': '0x60d92c46d86ec8bae2bb7b5a4fa90b3db6ffa58f3f5bc9480355bb3d614f4004:log:29', 'hash': '0x60d92c46d86ec8bae2bb7b5a4fa90b3db6ffa58f3f5bc9480355bb3d614f4004', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b87506a3e7b0d400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:13:08.000Z'}}, {'blockNum': '0x9c87ae', 'uniqueId': '0xb9ee63e9789e7af3373f03c7c527b0cfc7b01d23bfc4a8b65a94611ec2cec41f:log:7', 'hash': '0xb9ee63e9789e7af3373f03c7c527b0cfc7b01d23bfc4a8b65a94611ec2cec41f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'value': 44790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x097c121dac68d2180000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:14:29.000Z'}}, {'blockNum': '0x9c87bf', 'uniqueId': '0x31acc2dc51b1b87891e70352118d6d71ec44e8102333f9faf83595cfac65eb1c:log:13', 'hash': '0x31acc2dc51b1b87891e70352118d6d71ec44e8102333f9faf83595cfac65eb1c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f7cdc7b2ddf073ea55eb925158972bea125db20', 'value': 1234.0929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x42e67aba0babaa4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:17:44.000Z'}}, {'blockNum': '0x9c87c2', 'uniqueId': '0xcb8a5f8c28c8a55d7d410998ce8a63e46a8d3f1e3492061b0f37b387faa14374:log:22', 'hash': '0xcb8a5f8c28c8a55d7d410998ce8a63e46a8d3f1e3492061b0f37b387faa14374', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'value': 16852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03918c7aea4702d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:18:09.000Z'}}, {'blockNum': '0x9c87c7', 'uniqueId': '0x7b463face6a20b6980e29c502f6ea24addac2399a6535bf6ae46b180cd20e92c:log:32', 'hash': '0x7b463face6a20b6980e29c502f6ea24addac2399a6535bf6ae46b180cd20e92c', 'from': '0x82db9fc4956fa40efe1e35d881004612b5cb2cc2', 'to': '0x90c5b6392804b2b7257aa195b86a58d9c254d946', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:19:09.000Z'}}, {'blockNum': '0x9c87cd', 'uniqueId': '0x02f1fbd0b7bdb796fc11e65464c19b0ff8f60942e91b6f8fd9a29af4d0ff853e:log:8', 'hash': '0x02f1fbd0b7bdb796fc11e65464c19b0ff8f60942e91b6f8fd9a29af4d0ff853e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 6956.72628859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01791ff8a528348e8c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:20:41.000Z'}}, {'blockNum': '0x9c87ce', 'uniqueId': '0x51c9755106ae0c5e01a344e609d06d5303115fc21c3f0d304b3c0782318267b1:log:38', 'hash': '0x51c9755106ae0c5e01a344e609d06d5303115fc21c3f0d304b3c0782318267b1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'value': 8446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c9dbcbbb2c95380000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:20:59.000Z'}}, {'blockNum': '0x9c87cf', 'uniqueId': '0x2d829b2e61a7a6963ae00e909e2cfd3f8149536270ab57f5b05e56d14467db59:log:64', 'hash': '0x2d829b2e61a7a6963ae00e909e2cfd3f8149536270ab57f5b05e56d14467db59', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:21:15.000Z'}}, {'blockNum': '0x9c87de', 'uniqueId': '0xa6222a825a6941ad0fe76b665cef6be528cda372031608f5c75ccefcdeda8c76:log:35', 'hash': '0xa6222a825a6941ad0fe76b665cef6be528cda372031608f5c75ccefcdeda8c76', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 160000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x21e19e0c9bab24000000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:23:41.000Z'}}, {'blockNum': '0x9c87e8', 'uniqueId': '0x1037bfb7d0767e24a642d23ed6e90afb53ce20fcacef3afab5957bfb668a4fd8:log:85', 'hash': '0x1037bfb7d0767e24a642d23ed6e90afb53ce20fcacef3afab5957bfb668a4fd8', 'from': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 16852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03918c7aea4702d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:28:24.000Z'}}, {'blockNum': '0x9c87ec', 'uniqueId': '0x82185709e4e6156aca4ebd587c407c0cfeed3d9cd7b43805ee5405e11af304b6:log:38', 'hash': '0x82185709e4e6156aca4ebd587c407c0cfeed3d9cd7b43805ee5405e11af304b6', 'from': '0xb3da5bef490a34a174838312d1ce22d7b323845f', 'to': '0x0b46bbc1957673d48e630192a06926f576f1144e', 'value': 7152.815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0183c13fb1430db18000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:28:45.000Z'}}, {'blockNum': '0x9c87f3', 'uniqueId': '0x0b0c7da54cee2e3c87bc29dd3defadc00562b0362c8579729c54d6b478b9a252:log:154', 'hash': '0x0b0c7da54cee2e3c87bc29dd3defadc00562b0362c8579729c54d6b478b9a252', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 67818.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e5c73aea855150d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:31:13.000Z'}}, {'blockNum': '0x9c87f7', 'uniqueId': '0x92d7a1c1539bc6ee58db807a24238369104ef06c8bf1b3cf9b808540472a0278:log:17', 'hash': '0x92d7a1c1539bc6ee58db807a24238369104ef06c8bf1b3cf9b808540472a0278', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 536836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71adf01878f8c1900000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:32:08.000Z'}}, {'blockNum': '0x9c87f7', 'uniqueId': '0xa60eae0a609749f27770a66467ed6a3630eeca0b75329bc549f102b1908ab3af:log:47', 'hash': '0xa60eae0a609749f27770a66467ed6a3630eeca0b75329bc549f102b1908ab3af', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 134237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1c6d009a19e47f540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:32:08.000Z'}}, {'blockNum': '0x9c87fc', 'uniqueId': '0x1d4b6f35b430c6e4a9f19f65f96d0066b0470d15b075fe215faa1474406cf144:log:20', 'hash': '0x1d4b6f35b430c6e4a9f19f65f96d0066b0470d15b075fe215faa1474406cf144', 'from': '0x2934588cf0ab0a92df6b7466c3b72174f6930920', 'to': '0x65a4c9053ac5706dd9b073308cab4f55c6343261', 'value': 1720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5d3dcb870ca7e00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:33:04.000Z'}}, {'blockNum': '0x9c8806', 'uniqueId': '0x54b3165c1345d585615b3c5e3a3e9569f228a3b288b32aa8d0a50ccf17ba6e0d:log:59', 'hash': '0x54b3165c1345d585615b3c5e3a3e9569f228a3b288b32aa8d0a50ccf17ba6e0d', 'from': '0xbd2e270101cc9b33ec6b700e4a467105ab92ce8e', 'to': '0x5e98156d2aac9700b11452093674aff4bd0e1d25', 'value': 970.6865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x349efb34d51f364000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:35:17.000Z'}}, {'blockNum': '0x9c880a', 'uniqueId': '0x1be7157ebc29f602da43c434e653fb33460cba461a3affb78da6a9c6d4f3ad9f:log:0', 'hash': '0x1be7157ebc29f602da43c434e653fb33460cba461a3affb78da6a9c6d4f3ad9f', 'from': '0x5e98156d2aac9700b11452093674aff4bd0e1d25', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 970.6865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x349efb34d51f364000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:35:53.000Z'}}, {'blockNum': '0x9c8810', 'uniqueId': '0xaaba93305baf5dec485c66686ff0d57f87f50605ee4d6d5d0a5b4e8588a798e9:log:30', 'hash': '0xaaba93305baf5dec485c66686ff0d57f87f50605ee4d6d5d0a5b4e8588a798e9', 'from': '0x724c94d87502066004d90b45846c40ceda0e585d', 'to': '0xceaeaaf20143ada0f828b15fc7a6493c437f80a9', 'value': 21002.081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0472866c73b4b4b68000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:37:16.000Z'}}, {'blockNum': '0x9c8829', 'uniqueId': '0xccec284c49f775900d93e6080c01782fc325d250fa0c60d38dc9ddf9d56e71ee:log:3', 'hash': '0xccec284c49f775900d93e6080c01782fc325d250fa0c60d38dc9ddf9d56e71ee', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1d5215753fc92d404b053ba82c0c45d97ae389d0', 'value': 14230.076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030369f9a7d37b860000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:42:03.000Z'}}, {'blockNum': '0x9c882c', 'uniqueId': '0x0e6d314e762e17a0a4487f0dec1ec86548954ce56bbf43b8f326cb0784b9883f:log:98', 'hash': '0x0e6d314e762e17a0a4487f0dec1ec86548954ce56bbf43b8f326cb0784b9883f', 'from': '0x27970d7f5e4241fa3e79eefcfcd302c60b8ff0d5', 'to': '0x204df2e86f100084fc8b1bb371fb70b76f7641f4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:42:49.000Z'}}, {'blockNum': '0x9c8835', 'uniqueId': '0xf179cdeafd0c0bb97100a016f415a736f11016a060a65e0de26a0ba6153375f1:log:13', 'hash': '0xf179cdeafd0c0bb97100a016f415a736f11016a060a65e0de26a0ba6153375f1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 9359.1389098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01fb5c24d39eb5ae1000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:44:09.000Z'}}, {'blockNum': '0x9c8836', 'uniqueId': '0xc106bf220ea64627205a7d1e01f6f5909a53b3fd680d6f315218fc51bc1a713f:log:43', 'hash': '0xc106bf220ea64627205a7d1e01f6f5909a53b3fd680d6f315218fc51bc1a713f', 'from': '0x1d5215753fc92d404b053ba82c0c45d97ae389d0', 'to': '0x2cca3aaaa0ef0025f13dac095c7d3d45aa237107', 'value': 14230.076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030369f9a7d37b860000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:44:40.000Z'}}, {'blockNum': '0x9c883d', 'uniqueId': '0x8cc17190a513390ddd634b3618c52d9b292bd6c9b6e6e349a5b4dcdcf9153358:log:102', 'hash': '0x8cc17190a513390ddd634b3618c52d9b292bd6c9b6e6e349a5b4dcdcf9153358', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'value': 9359.1389098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01fb5c24d39eb5ae1000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:46:19.000Z'}}, {'blockNum': '0x9c8865', 'uniqueId': '0xb90280d9424b47b45b92ba383aa7acb4a11a6e016ae57d1db4f08999911a78f6:log:125', 'hash': '0xb90280d9424b47b45b92ba383aa7acb4a11a6e016ae57d1db4f08999911a78f6', 'from': '0x11197295953c6480b5d7ff245b6fae4d5b8eca15', 'to': '0xba4de7a610081cd1227714b1382af7df73349cb0', 'value': 481686.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6600489ae67267e88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:54:43.000Z'}}, {'blockNum': '0x9c887c', 'uniqueId': '0x20fccee727f48168a8aa5de1ba54f9c2e927e159ee866f4dd8167fc2ab631eb8:log:154', 'hash': '0x20fccee727f48168a8aa5de1ba54f9c2e927e159ee866f4dd8167fc2ab631eb8', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67818.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e5c73aea855150d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:00:12.000Z'}}, {'blockNum': '0x9c887e', 'uniqueId': '0x8883b69ad428b885ff0f5dfa6b27d78633f00191a50d8a4a3c7e0fe999cacac3:log:102', 'hash': '0x8883b69ad428b885ff0f5dfa6b27d78633f00191a50d8a4a3c7e0fe999cacac3', 'from': '0xba4de7a610081cd1227714b1382af7df73349cb0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 481686.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6600489ae67267e88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:00:43.000Z'}}, {'blockNum': '0x9c8899', 'uniqueId': '0x3e40bad08eb4640a5c82c0e9e09064180df97595d2a71924ac780a782bbfe888:log:11', 'hash': '0x3e40bad08eb4640a5c82c0e9e09064180df97595d2a71924ac780a782bbfe888', 'from': '0x0a7faa0b8fcd494bc288dd5f0eddf196534d4f40', 'to': '0x9229b25ee89606e39c13de9ca1be912f44942981', 'value': 6254.96636114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015315188d3987690800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:05:24.000Z'}}, {'blockNum': '0x9c889a', 'uniqueId': '0x39d0a069776fd1f7604703971c24a68e9059a8245df144864ba44b382d31a650:log:17', 'hash': '0x39d0a069776fd1f7604703971c24a68e9059a8245df144864ba44b382d31a650', 'from': '0x9229b25ee89606e39c13de9ca1be912f44942981', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 6254.96636114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015315188d3987690800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:05:38.000Z'}}, {'blockNum': '0x9c88bc', 'uniqueId': '0x19dca3badebc528dec19f6b35311da9fa97404d4cf1b050be520a6ce33ba92a5:log:12', 'hash': '0x19dca3badebc528dec19f6b35311da9fa97404d4cf1b050be520a6ce33ba92a5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5ce46986746feb1ba14d669c3000afb7864d4808', 'value': 3678.5246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc769c8aa0a97e38000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:11:46.000Z'}}, {'blockNum': '0x9c88c2', 'uniqueId': '0xb7c5592fa590cf90be9c9fefb96d47095dc2df256ae7a2b40a68268e1f3bd020:log:151', 'hash': '0xb7c5592fa590cf90be9c9fefb96d47095dc2df256ae7a2b40a68268e1f3bd020', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xef8cc5c755f0fde796616cff09707ec61fcc277c', 'value': 6956.72628859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01791ff8a528348e8c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:14:26.000Z'}}, {'blockNum': '0x9c88c8', 'uniqueId': '0x466f01cac34cfae8d4c0e79712d7688c9e4de7019c681c4379b9d87c3370fc73:log:0', 'hash': '0x466f01cac34cfae8d4c0e79712d7688c9e4de7019c681c4379b9d87c3370fc73', 'from': '0xa4d27c22fd25b2885c31d7f3ae48d9ed62dbd775', 'to': '0x104199942df7babb1a596bb6218d64180f46026a', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:16:36.000Z'}}, {'blockNum': '0x9c88d4', 'uniqueId': '0x7d6ac2c08a86f771c1849cba14a4c55f08d0a4b5cda823456283c3a830bdc488:log:7', 'hash': '0x7d6ac2c08a86f771c1849cba14a4c55f08d0a4b5cda823456283c3a830bdc488', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'value': 54674.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b93eec9176abfdc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:19:18.000Z'}}, {'blockNum': '0x9c88d7', 'uniqueId': '0x39da6b25b4860a7976e3d59d8a5f3063a0eab249067c26dd6ece6a7030f98c10:log:2', 'hash': '0x39da6b25b4860a7976e3d59d8a5f3063a0eab249067c26dd6ece6a7030f98c10', 'from': '0xa4d27c22fd25b2885c31d7f3ae48d9ed62dbd775', 'to': '0x104199942df7babb1a596bb6218d64180f46026a', 'value': 355563.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4b4b269f20e1adb98000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:19:56.000Z'}}, {'blockNum': '0x9c88fd', 'uniqueId': '0x20043edd0c0e6c1bf9b634e33f7d5a83236aff44310d81e0c5b93bfabc18c8f8:log:16', 'hash': '0x20043edd0c0e6c1bf9b634e33f7d5a83236aff44310d81e0c5b93bfabc18c8f8', 'from': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'to': '0xb282348b0407ee762fadf2bc97e502606b37b4ea', 'value': 42658.94764517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x09088bd2d27da83ef400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:27:48.000Z'}}, {'blockNum': '0x9c88fe', 'uniqueId': '0x46a68ccaa82303812f30f728d7c4166a77e848e7f0cb2307172aff02fb49d69d:log:16', 'hash': '0x46a68ccaa82303812f30f728d7c4166a77e848e7f0cb2307172aff02fb49d69d', 'from': '0xb282348b0407ee762fadf2bc97e502606b37b4ea', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 42658.94764517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x09088bd2d27da83ef400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:28:09.000Z'}}, {'blockNum': '0x9c8906', 'uniqueId': '0xbc3a62b7fd075b1a031359771672263561de75a9d8c5130361c97fcddf8e2748:log:169', 'hash': '0xbc3a62b7fd075b1a031359771672263561de75a9d8c5130361c97fcddf8e2748', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108631.36883235155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1700eb15ff5d531e8918', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:30:30.000Z'}}, {'blockNum': '0x9c8906', 'uniqueId': '0x3cd0013baccb64a5ed633e9912e8cc602c43dc73bfc6a5f1bdf287ba6adfc7b0:log:215', 'hash': '0x3cd0013baccb64a5ed633e9912e8cc602c43dc73bfc6a5f1bdf287ba6adfc7b0', 'from': '0x104199942df7babb1a596bb6218d64180f46026a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 405563.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x55e1a803118728f98000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:30:30.000Z'}}, {'blockNum': '0x9c891a', 'uniqueId': '0xeaa7c101655be681fb483f216908aee2e252d7f97f99fe9996a9d616ad089256:log:16', 'hash': '0xeaa7c101655be681fb483f216908aee2e252d7f97f99fe9996a9d616ad089256', 'from': '0x6517e7592d28927e7ba4f03ab54079b527d6739d', 'to': '0x0ecdbc4732fda07a357698c0fa61c4070283a161', 'value': 8680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01d68b32bb6396a00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:34:05.000Z'}}, {'blockNum': '0x9c891e', 'uniqueId': '0xc9a79b217873d4b90e7f43b364255be9c22a70ac520c9f3630295b0b62b51d31:log:12', 'hash': '0xc9a79b217873d4b90e7f43b364255be9c22a70ac520c9f3630295b0b62b51d31', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3798.10275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xcde54397ea0843e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:34:45.000Z'}}, {'blockNum': '0x9c8927', 'uniqueId': '0x5859d1831a8e96806c20a07673c976a399c6233ac6692ab211983c09f4083beb:log:30', 'hash': '0x5859d1831a8e96806c20a07673c976a399c6233ac6692ab211983c09f4083beb', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb2581d299300ca1ccb6b3276d44212927c0e92cc', 'value': 3798.10275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xcde54397ea0843e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:37:21.000Z'}}, {'blockNum': '0x9c8950', 'uniqueId': '0x6fd1b60e8950d8aaa10ef41b1f0661ce401d0246bba68732c83f478661f6a79d:log:4', 'hash': '0x6fd1b60e8950d8aaa10ef41b1f0661ce401d0246bba68732c83f478661f6a79d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2676.84928794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x911cbf14d379092800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:45:34.000Z'}}, {'blockNum': '0x9c895a', 'uniqueId': '0x4d4bd57db617fd43c1e3c50397da29b60d866dd8134d097d52ad0ca00f69665e:log:12', 'hash': '0x4d4bd57db617fd43c1e3c50397da29b60d866dd8134d097d52ad0ca00f69665e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1233.26057572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x42daedb785d4551000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:46:36.000Z'}}, {'blockNum': '0x9c895c', 'uniqueId': '0x575d107f522289453dfc02a3c8899fcbb98916c780c886a5aec1dce7d09e140d:log:41', 'hash': '0x575d107f522289453dfc02a3c8899fcbb98916c780c886a5aec1dce7d09e140d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'value': 2676.84928794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x911cbf14d379092800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:47:02.000Z'}}, {'blockNum': '0x9c895f', 'uniqueId': '0xa67a0f6b92ac93faaf6d62cb449a5ae0ec582c910c7bd83b3b458cad63631793:log:47', 'hash': '0xa67a0f6b92ac93faaf6d62cb449a5ae0ec582c910c7bd83b3b458cad63631793', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x803c2e0b620cb13a283e290ad873a53859e364b8', 'value': 1233.26057572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x42daedb785d4551000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:48:11.000Z'}}, {'blockNum': '0x9c89b0', 'uniqueId': '0x23457299370e46334b2067d0d8683411621b7554e6f182c1ea5cc4096bb3f07c:log:11', 'hash': '0x23457299370e46334b2067d0d8683411621b7554e6f182c1ea5cc4096bb3f07c', 'from': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'to': '0x8b30a005b52c7620e4255217a460b7f0271f8e09', 'value': 6492.04388256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015fef351add9c928000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:06:25.000Z'}}, {'blockNum': '0x9c89b6', 'uniqueId': '0x9f6f6a88699c87e707552d7e25fe84bd18d39caa83e89b9bb0af807da153ae8d:log:13', 'hash': '0x9f6f6a88699c87e707552d7e25fe84bd18d39caa83e89b9bb0af807da153ae8d', 'from': '0x8b30a005b52c7620e4255217a460b7f0271f8e09', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 6492.04388256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015fef351add9c928000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:07:51.000Z'}}, {'blockNum': '0x9c89bc', 'uniqueId': '0x728c926027dc81b3ab61c35ba8089e76197a1a93f4d212a5d520b1e329d83dba:log:73', 'hash': '0x728c926027dc81b3ab61c35ba8089e76197a1a93f4d212a5d520b1e329d83dba', 'from': '0xa85f11d4d6119848a0d2b2b8e270a6846383f39f', 'to': '0x1800d3561821aa3cf1099f6dae57cc8cb76c25af', 'value': 203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b0130e075bc4c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:08:59.000Z'}}, {'blockNum': '0x9c8a2b', 'uniqueId': '0xcec8b647305e8f39fdfd0526410f41f5deb933814a94f3c290a8a2644dcc4fed:log:0', 'hash': '0xcec8b647305e8f39fdfd0526410f41f5deb933814a94f3c290a8a2644dcc4fed', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3981.34929357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd7d4521868c8419400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:31:08.000Z'}}, {'blockNum': '0x9c8a2e', 'uniqueId': '0xca2db492fca7913ddaaddfb8b8e0c51918b1e0c4e79254a7c1491eebb35a6b9c:log:120', 'hash': '0xca2db492fca7913ddaaddfb8b8e0c51918b1e0c4e79254a7c1491eebb35a6b9c', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x73ab27780645cfe28944bcf57f7fbbe173a14aba', 'value': 3981.34929357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd7d4521868c8419400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:32:36.000Z'}}, {'blockNum': '0x9c8ac1', 'uniqueId': '0x2b020195467aa76c28d29f67086b80a4e14e16c21bd1aa5298a0e5c9cffefd8c:log:17', 'hash': '0x2b020195467aa76c28d29f67086b80a4e14e16c21bd1aa5298a0e5c9cffefd8c', 'from': '0x3800f01c9fe41853feba563ef535c7785cf30f7a', 'to': '0xcd43f8b479a74a5e439ce01d4d61dc93349ce247', 'value': 5571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x012e0127e793b52c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:05:24.000Z'}}, {'blockNum': '0x9c8ad0', 'uniqueId': '0xef6c451e32b8b4f0211f01a6d171cd289c7a0cd43ee96cf6530d9d357771280e:log:12', 'hash': '0xef6c451e32b8b4f0211f01a6d171cd289c7a0cd43ee96cf6530d9d357771280e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'value': 25795.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05766135fecd81f68000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:08:25.000Z'}}, {'blockNum': '0x9c8adb', 'uniqueId': '0xa1262592f30d86dce0b5e461151efaee229e4ad8350be964f5d94c26918974c9:log:7', 'hash': '0xa1262592f30d86dce0b5e461151efaee229e4ad8350be964f5d94c26918974c9', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0x7106e6c8a1da7dff55fa257c9bc8a9e8d83a39ba', 'value': 80, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04563918244f400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:10:26.000Z'}}, {'blockNum': '0x9c8af6', 'uniqueId': '0x44b821b0d997515417eacf1a59af43799b0a52d916de6bcdf51aa73922256e7e:log:6', 'hash': '0x44b821b0d997515417eacf1a59af43799b0a52d916de6bcdf51aa73922256e7e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 9164.04630335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01f0c8b0a7b2d8591c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:15:17.000Z'}}, {'blockNum': '0x9c8b11', 'uniqueId': '0x6843b6603c2f46bdecca71dc86c8bc9b01aa529e767dd9d5eccdb3b0117079fc:log:31', 'hash': '0x6843b6603c2f46bdecca71dc86c8bc9b01aa529e767dd9d5eccdb3b0117079fc', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'value': 64663.722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0db16d69abeae3d10000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:19:53.000Z'}}, {'blockNum': '0x9c8b2d', 'uniqueId': '0xd8cf37ebdf975e9db9629e9a7f4cee96190f145489b7fa93b28a1317f9525d6f:log:31', 'hash': '0xd8cf37ebdf975e9db9629e9a7f4cee96190f145489b7fa93b28a1317f9525d6f', 'from': '0x02cf9a4202133cc76a916e428e182ce8cc548230', 'to': '0x31209f88b283c3f3eec80893f1cf68ec0ba2bdb1', 'value': 6772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x016f1c61086801500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:26:37.000Z'}}, {'blockNum': '0x9c8b3f', 'uniqueId': '0x101bd6f10ef0ef2e0abc75fc7a9bcd5452866aaa27d88a16911c6a189bb81513:log:28', 'hash': '0x101bd6f10ef0ef2e0abc75fc7a9bcd5452866aaa27d88a16911c6a189bb81513', 'from': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'to': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'value': 25795.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05766135fecd81f68000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:31:06.000Z'}}, {'blockNum': '0x9c8b74', 'uniqueId': '0x69a776996363ad6e10bcb49dd60c7352a9ee2ac478163c0d0449d3d9bedd9965:log:23', 'hash': '0x69a776996363ad6e10bcb49dd60c7352a9ee2ac478163c0d0449d3d9bedd9965', 'from': '0x78353563d4af772b5527d2ee6aedd5c3912ef0b9', 'to': '0xa3614758859fd2986f1e1ad6106d30334ec022f9', 'value': 15891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x035d73ed11dfa46c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:42:57.000Z'}}, {'blockNum': '0x9c8b79', 'uniqueId': '0x2b1a92f8cc0f4d9c2367d66c0af62f50a98cd382288196073d36e39ec6e07e4d:log:6', 'hash': '0x2b1a92f8cc0f4d9c2367d66c0af62f50a98cd382288196073d36e39ec6e07e4d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:43:42.000Z'}}, {'blockNum': '0x9c8ba8', 'uniqueId': '0x76342c77b5f0c6ec39fe902179438c5992f979ed527d8365998570efebbb8fc1:log:17', 'hash': '0x76342c77b5f0c6ec39fe902179438c5992f979ed527d8365998570efebbb8fc1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3690.18375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc80b9649318ce26000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:55:22.000Z'}}, {'blockNum': '0x9c8bbb', 'uniqueId': '0x89d1c67174b8d474ddefb8b85f41ac4eacad0efded6ad7dd0865203f5698f987:log:64', 'hash': '0x89d1c67174b8d474ddefb8b85f41ac4eacad0efded6ad7dd0865203f5698f987', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd221e5ed32b5102324024212e1dee75d9287713f', 'value': 3690.18375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc80b9649318ce26000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:59:57.000Z'}}, {'blockNum': '0x9c8bd1', 'uniqueId': '0xff04a3bc3675ec1bf48726240c1ef500bcf08f2f06325cb2e2a000f3ad23861a:log:59', 'hash': '0xff04a3bc3675ec1bf48726240c1ef500bcf08f2f06325cb2e2a000f3ad23861a', 'from': '0x7099437a7a29a7aa471344d03662eff9017caa7c', 'to': '0x6dd78d7e8dd6a0e73e4324788e1e145c4d4f579b', 'value': 2624.285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8e4345377131fc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:04:24.000Z'}}, {'blockNum': '0x9c8bf9', 'uniqueId': '0xbae967b773ef887b3a37233bc8a770473d48876c8a53c7fe7a3cfc29dee17b4d:log:29', 'hash': '0xbae967b773ef887b3a37233bc8a770473d48876c8a53c7fe7a3cfc29dee17b4d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3093.48376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa7b2b611bd97bf0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:13:01.000Z'}}, {'blockNum': '0x9c8bf9', 'uniqueId': '0xfa2a00d6a2ae116e83bc46f2e11587ca3ea02bed55ae79a849783946b944c246:log:32', 'hash': '0xfa2a00d6a2ae116e83bc46f2e11587ca3ea02bed55ae79a849783946b944c246', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7844ecc25735e201401d24dbffddcf04d1f6effe', 'value': 9928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021a32ad67339e200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:13:01.000Z'}}, {'blockNum': '0x9c8c06', 'uniqueId': '0x668fbc4a3e915246a43fc2fb9712fc64b1e4d1db872d404b3af30238f898129b:log:6', 'hash': '0x668fbc4a3e915246a43fc2fb9712fc64b1e4d1db872d404b3af30238f898129b', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 3093.48376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa7b2b611bd97bf0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:15:11.000Z'}}, {'blockNum': '0x9c8c19', 'uniqueId': '0x00b4d4ce9ba4c7a6b123a3dafce83c8700f00dd99de8eb08ebdd42173683cd01:log:2', 'hash': '0x00b4d4ce9ba4c7a6b123a3dafce83c8700f00dd99de8eb08ebdd42173683cd01', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3029.90053018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa440510f19029f2800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:17:35.000Z'}}, {'blockNum': '0x9c8c21', 'uniqueId': '0x8054217d0c3662fabea8a7f4f52fbbf4f594bb7fb21ba358aab4e1ad80832fff:log:99', 'hash': '0x8054217d0c3662fabea8a7f4f52fbbf4f594bb7fb21ba358aab4e1ad80832fff', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 3029.90053018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa440510f19029f2800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:19:48.000Z'}}, {'blockNum': '0x9c8c25', 'uniqueId': '0x0bceefb67c4709bce16c192c4eaeb64ab8aa7f21708debdf82429af8db27f200:log:4', 'hash': '0x0bceefb67c4709bce16c192c4eaeb64ab8aa7f21708debdf82429af8db27f200', 'from': '0x5908fb11e93bbaf4d70861bc7910304f6b79e16f', 'to': '0xb4321a4f869a095a401d4926c9d2786431c11aaa', 'value': 1358.049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x499eb7423f7e768000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:20:20.000Z'}}, {'blockNum': '0x9c8c33', 'uniqueId': '0x3a5241cce9976f6553a785408556135b5b36ce678120fb720e996febd2df209a:log:4', 'hash': '0x3a5241cce9976f6553a785408556135b5b36ce678120fb720e996febd2df209a', 'from': '0xd7f7fd77aa3eddaf50dd76d93bec345069ac5d3b', 'to': '0x069b0fa80ed82bbd89dc0edf46bbcf502ae66034', 'value': 1265.19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x449609d1bc70770000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:22:57.000Z'}}, {'blockNum': '0x9c8c40', 'uniqueId': '0x9f1d40fd04899762bc09e4a2f9ad3a67c4d62c7989f61390b990a195f70f4fd4:log:90', 'hash': '0x9f1d40fd04899762bc09e4a2f9ad3a67c4d62c7989f61390b990a195f70f4fd4', 'from': '0x069b0fa80ed82bbd89dc0edf46bbcf502ae66034', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1265.19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x449609d1bc70770000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:25:27.000Z'}}, {'blockNum': '0x9c8c56', 'uniqueId': '0x4d3ba13d4bd2a39a93feb65ca050eeeb672fb38b9b293a6cde6c89e793ac21d7:log:8', 'hash': '0x4d3ba13d4bd2a39a93feb65ca050eeeb672fb38b9b293a6cde6c89e793ac21d7', 'from': '0xd7f7fd77aa3eddaf50dd76d93bec345069ac5d3b', 'to': '0x4c33589dea197d19db9d4dcd2d2a87ef8551e76d', 'value': 1059.0089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3968b367ae2d2c4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:29:27.000Z'}}, {'blockNum': '0x9c8c58', 'uniqueId': '0xa1cf408a80fcc77ebb95507343e528b79a3fbf341e77ffc8ed8c7a76fa2421ed:log:8', 'hash': '0xa1cf408a80fcc77ebb95507343e528b79a3fbf341e77ffc8ed8c7a76fa2421ed', 'from': '0x4c33589dea197d19db9d4dcd2d2a87ef8551e76d', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1059.0089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3968b367ae2d2c4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:29:50.000Z'}}, {'blockNum': '0x9c8c63', 'uniqueId': '0xfb177669075dc93789f51b9b8a205b5ab771c0508ffe908349c0d61cb9f8a645:log:0', 'hash': '0xfb177669075dc93789f51b9b8a205b5ab771c0508ffe908349c0d61cb9f8a645', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2189.441024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x76b099132c1b800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:32:03.000Z'}}, {'blockNum': '0x9c8c63', 'uniqueId': '0x20ed19e83dcbc301f143aa0fbdd7d0320a3e738a4dc7da48b69c98aa31e1a5dd:log:1', 'hash': '0x20ed19e83dcbc301f143aa0fbdd7d0320a3e738a4dc7da48b69c98aa31e1a5dd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd850865e614c2d635c669a3087287b781f4a98cf', 'value': 9112.9407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01ee037514388b95c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:32:03.000Z'}}, {'blockNum': '0x9c8c64', 'uniqueId': '0x12187794d995f82161e4e44410eb6a349f3dffe1965ed575468e2d1692c70972:log:48', 'hash': '0x12187794d995f82161e4e44410eb6a349f3dffe1965ed575468e2d1692c70972', 'from': '0x48659871d1c7134b74d82733d325c7e294ba8fe8', 'to': '0x7cfce8016324b79d238a2650811b765e2872c326', 'value': 5639.259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0131b470966ce08f8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:32:31.000Z'}}, {'blockNum': '0x9c8c6f', 'uniqueId': '0xa2d9c98c7d97fb7658a33ae523ad4c191a9ec036324788391264af187f655a74:log:38', 'hash': '0xa2d9c98c7d97fb7658a33ae523ad4c191a9ec036324788391264af187f655a74', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd850865e614c2d635c669a3087287b781f4a98cf', 'value': 2189.441024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x76b099132c1b800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:33:58.000Z'}}, {'blockNum': '0x9c8c72', 'uniqueId': '0x100907b89e160e90f61cc3b67afaa751227708b85b076d26607a7b00e8c7b9b7:log:3', 'hash': '0x100907b89e160e90f61cc3b67afaa751227708b85b076d26607a7b00e8c7b9b7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2409.38835904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x829cfafb0f6c870000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:34:27.000Z'}}, {'blockNum': '0x9c8c9b', 'uniqueId': '0x0508fb1542eea864ad70008d6cef111d31b1ab705208a4221b1d9862051dde85:log:0', 'hash': '0x0508fb1542eea864ad70008d6cef111d31b1ab705208a4221b1d9862051dde85', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0adff4ee43c9ede9a92a6ca7ba5da262d4bcd535', 'value': 146184.627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1ef4af3bf926d94b8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:43:10.000Z'}}, {'blockNum': '0x9c8c9c', 'uniqueId': '0x7acbcf8f664a94289ba4437087347fd9d7989db9e080c5c9497b0a5958204b48:log:56', 'hash': '0x7acbcf8f664a94289ba4437087347fd9d7989db9e080c5c9497b0a5958204b48', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd850865e614c2d635c669a3087287b781f4a98cf', 'value': 2409.38835904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x829cfafb0f6c870000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:43:34.000Z'}}, {'blockNum': '0x9c8cb8', 'uniqueId': '0xc4098ea51fb70e93234276cce18a45acee6796ab5acc057f23e29d18feee67bc:log:148', 'hash': '0xc4098ea51fb70e93234276cce18a45acee6796ab5acc057f23e29d18feee67bc', 'from': '0x1dd640eebfb39d4ff4cb1c57c6227aca35c06501', 'to': '0xee852f23c3edcf51a500a13d369c07e320ba5c8d', 'value': 2700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x925e06eec972b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:51:48.000Z'}}, {'blockNum': '0x9c8ce8', 'uniqueId': '0xe0339413905e11154a1902e40773ac5e289ce9cf6e084ff40e2a37664100927b:log:1', 'hash': '0xe0339413905e11154a1902e40773ac5e289ce9cf6e084ff40e2a37664100927b', 'from': '0x1cf60cdcfb5b4c632506a4d7629f93d530d41761', 'to': '0x0f1b1f7096bd59c8101abbeeba67d90892e9b8c8', 'value': 3063.0963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa60d001fdec95ac000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:02:32.000Z'}}, {'blockNum': '0x9c8d01', 'uniqueId': '0x1396937d65623cc9cef3b9052738cd8ec30053d9108167f8fa3a4c04767d9ab1:log:2', 'hash': '0x1396937d65623cc9cef3b9052738cd8ec30053d9108167f8fa3a4c04767d9ab1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 9825.57875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0214a54c06fa48a5e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:08:38.000Z'}}, {'blockNum': '0x9c8d09', 'uniqueId': '0x3b2716c80c628a94ad7b499b2ac457856c3422e9559cd1a68b92e3bbbad2e8bf:log:83', 'hash': '0x3b2716c80c628a94ad7b499b2ac457856c3422e9559cd1a68b92e3bbbad2e8bf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xfc3438e2b36d0eff3b55151af2f13e01e5b6e375', 'value': 9825.57875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0214a54c06fa48a5e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:10:47.000Z'}}, {'blockNum': '0x9c8d15', 'uniqueId': '0x7a49250075d563b4d385ef26ce2a5890ec97d43719253d947f7dc9805f008398:log:7', 'hash': '0x7a49250075d563b4d385ef26ce2a5890ec97d43719253d947f7dc9805f008398', 'from': '0xb2db2177e83584448c9ffa2df0ca06e51eeecf29', 'to': '0x3679c8f9da6d1cd172772dfa7d34e3e3b6743753', 'value': 19000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0405fdf7e5af85e00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:13:27.000Z'}}, {'blockNum': '0x9c8d15', 'uniqueId': '0x42bc12b6382896f009dff6986095a39950035557c817b7e072b7fac645e74584:log:150', 'hash': '0x42bc12b6382896f009dff6986095a39950035557c817b7e072b7fac645e74584', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 64690.321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0db2de8c4d7d706e8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:13:27.000Z'}}, {'blockNum': '0x9c8d18', 'uniqueId': '0xf3c09ca364a601b26cac76e3b5a717c620cecd9e9d1160dc6fafd5e684cfbf1a:log:6', 'hash': '0xf3c09ca364a601b26cac76e3b5a717c620cecd9e9d1160dc6fafd5e684cfbf1a', 'from': '0x3679c8f9da6d1cd172772dfa7d34e3e3b6743753', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 19000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0405fdf7e5af85e00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:13:45.000Z'}}, {'blockNum': '0x9c8d1f', 'uniqueId': '0x639bca3b68108ee8b5f3b7eb4e5d124e932f310b74f17ba43b5937b8b4420765:log:144', 'hash': '0x639bca3b68108ee8b5f3b7eb4e5d124e932f310b74f17ba43b5937b8b4420765', 'from': '0xf90870e0779c71e0055690b7f82e41e930b46dff', 'to': '0x47af91ac16f0467132c33bd8db20006559eea4fa', 'value': 17301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03a9e39b5b5f99340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:15:28.000Z'}}, {'blockNum': '0x9c8d30', 'uniqueId': '0xecb71032db05cead46a713ebc9459ba1c1448e0c3dc4366f7d1321c530f8d902:log:1', 'hash': '0xecb71032db05cead46a713ebc9459ba1c1448e0c3dc4366f7d1321c530f8d902', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 78958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10b8525ea6963cf80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:20:25.000Z'}}, {'blockNum': '0x9c8d38', 'uniqueId': '0xe5fb3b6e9e3a8e8d3ad79b78516078a4e901412a70f72a95a760d2301b4591ea:log:110', 'hash': '0xe5fb3b6e9e3a8e8d3ad79b78516078a4e901412a70f72a95a760d2301b4591ea', 'from': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 64690.321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0db2de8c4d7d706e8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:21:49.000Z'}}, {'blockNum': '0x9c8d40', 'uniqueId': '0x3f0b2bf56780cd9fbf86d78326619fb712ebde68813572d9e0484a4cf14ad8f7:log:26', 'hash': '0x3f0b2bf56780cd9fbf86d78326619fb712ebde68813572d9e0484a4cf14ad8f7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 385558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x51a5241c922aaa980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:24:11.000Z'}}, {'blockNum': '0x9c8d55', 'uniqueId': '0xa33d76917644b1fedb6996ee4c4b52c3c556f8cf9773cb829e4553006ba4c7b1:log:85', 'hash': '0xa33d76917644b1fedb6996ee4c4b52c3c556f8cf9773cb829e4553006ba4c7b1', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 78958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10b8525ea6963cf80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:29:01.000Z'}}, {'blockNum': '0x9c8d96', 'uniqueId': '0xe5310d41ed72decc9dfdac051fe963873e102a39162f961c1f1dc0eb526c9142:log:15', 'hash': '0xe5310d41ed72decc9dfdac051fe963873e102a39162f961c1f1dc0eb526c9142', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4282cffc9d892decdd328a84368eba03bfcf2ecb', 'value': 7052.3281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017e4eb6821d457e4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:42:02.000Z'}}, {'blockNum': '0x9c8dc3', 'uniqueId': '0x9e9c4638367fa6cdc09dcbeae09af243e5d3daef87e51009b5ae3c379aef16bc:log:6', 'hash': '0x9e9c4638367fa6cdc09dcbeae09af243e5d3daef87e51009b5ae3c379aef16bc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1529.24091949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52e67b2202b12f1400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:51:47.000Z'}}, {'blockNum': '0x9c8dc3', 'uniqueId': '0x75d2ac890e798264dfebc9cc956379bc5e9667078595976927d3740c7223b1fa:log:32', 'hash': '0x75d2ac890e798264dfebc9cc956379bc5e9667078595976927d3740c7223b1fa', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x209f11edb294862f6da0aed1c4eb768955df45cf', 'value': 334157.2132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x46c2b2e6349b57310000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:51:47.000Z'}}, {'blockNum': '0x9c8dce', 'uniqueId': '0x41b2554cd9838b6a43c40d775d6a80c7c42afe3dd027e2f97c6c414d60b9240a:log:170', 'hash': '0x41b2554cd9838b6a43c40d775d6a80c7c42afe3dd027e2f97c6c414d60b9240a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1b04a630284c06364f3c90e3eee4f79fe38f5240', 'value': 1529.24091949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52e67b2202b12f1400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:54:26.000Z'}}, {'blockNum': '0x9c8e1d', 'uniqueId': '0x54d477605ae9b415c8be42fe214f9eea67e2617baf99227af0914b7d9d345181:log:9', 'hash': '0x54d477605ae9b415c8be42fe214f9eea67e2617baf99227af0914b7d9d345181', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'value': 75885.292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1011bffae87dd7fe0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:11:06.000Z'}}, {'blockNum': '0x9c8e2c', 'uniqueId': '0x6470e3ed9bc785a75f69e40a162633a3a6dd826f3e38900e1a4c27fea6894eb4:log:2', 'hash': '0x6470e3ed9bc785a75f69e40a162633a3a6dd826f3e38900e1a4c27fea6894eb4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x72962fc4d5d695f6d49bd885e0e635b0524ff554', 'value': 25599.486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x056bc03c151c39730000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:15:08.000Z'}}, {'blockNum': '0x9c8e42', 'uniqueId': '0xf5be0fa76eb7550d988a2008d065fc3dc66e9880b604ea76ba753881fa51d793:log:5', 'hash': '0xf5be0fa76eb7550d988a2008d065fc3dc66e9880b604ea76ba753881fa51d793', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf7b222eef7f3e9b157a164cd4582579f8d04c0a6', 'value': 1465.471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4f717ede1a14798000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:19:28.000Z'}}, {'blockNum': '0x9c8e55', 'uniqueId': '0xf66c808fc034b2ec90212164172a8e2a2c5b6b6e72e6039fbf7c61bfd87df032:log:38', 'hash': '0xf66c808fc034b2ec90212164172a8e2a2c5b6b6e72e6039fbf7c61bfd87df032', 'from': '0x531fc93910152101af92588a5adf469faf64caf1', 'to': '0x546dd903751e499922cce5d0bef4fecd011a9e1e', 'value': 1616.1124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x579c10a14500010000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:24:15.000Z'}}, {'blockNum': '0x9c8e5f', 'uniqueId': '0x246c2dc719c3ff5b2344d412246d47e130420a29051487244a80ca225da5d10a:log:3', 'hash': '0x246c2dc719c3ff5b2344d412246d47e130420a29051487244a80ca225da5d10a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 89179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12e2673d2968708c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:25:55.000Z'}}, {'blockNum': '0x9c8e62', 'uniqueId': '0x8d96bfa67534b67ae13392355e430fe428c763a9898150b99b337b6c8c7817cc:log:23', 'hash': '0x8d96bfa67534b67ae13392355e430fe428c763a9898150b99b337b6c8c7817cc', 'from': '0x546dd903751e499922cce5d0bef4fecd011a9e1e', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1616.1124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x579c10a14500010000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:27:02.000Z'}}, {'blockNum': '0x9c8e7d', 'uniqueId': '0x4408fc0e2b8ca792ff275b07aff384a9b0c5e81812391869a385eeec1f1644ae:log:10', 'hash': '0x4408fc0e2b8ca792ff275b07aff384a9b0c5e81812391869a385eeec1f1644ae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xac91420c1ca0013582768adc8fb1bd319c248fcc', 'value': 17465.018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b2c7d0595e6b390000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:31:19.000Z'}}, {'blockNum': '0x9c8e83', 'uniqueId': '0x2cb63288c4d8570a3eadfaca06db05326f14d2ec87316e0d4479efdfbb1a4b30:log:114', 'hash': '0x2cb63288c4d8570a3eadfaca06db05326f14d2ec87316e0d4479efdfbb1a4b30', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 89179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12e2673d2968708c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:33:31.000Z'}}, {'blockNum': '0x9c8f08', 'uniqueId': '0x9dcb538022ec4aeaeb378af118e2a8cdf8785c211c7fb32cdaa01b7ba28f5d6c:log:35', 'hash': '0x9dcb538022ec4aeaeb378af118e2a8cdf8785c211c7fb32cdaa01b7ba28f5d6c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x33fb6127fc779fed3521633539693975889b962d', 'value': 3191.1159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xacfda11bcb18f3c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:07:17.000Z'}}, {'blockNum': '0x9c8f14', 'uniqueId': '0x08ec19c12f5f615c998099260f1171819b46e9b0ccfc7bbfb1e6e54a85379a5f:log:2', 'hash': '0x08ec19c12f5f615c998099260f1171819b46e9b0ccfc7bbfb1e6e54a85379a5f', 'from': '0xe726cfe2e0316f79a88da388000ba24abdff4095', 'to': '0xb776d762b8369053c52121c5cfea38fb19b9666f', 'value': 218956.31340918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2e5da541b561c8ef1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:10:54.000Z'}}, {'blockNum': '0x9c8f17', 'uniqueId': '0x20043b496b28578f0d512b2e87fa7a11c454aa9eb51826d7d6389c7655c66159:log:3', 'hash': '0x20043b496b28578f0d512b2e87fa7a11c454aa9eb51826d7d6389c7655c66159', 'from': '0xb776d762b8369053c52121c5cfea38fb19b9666f', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 218956.31340918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2e5da541b561c8ef1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:11:08.000Z'}}, {'blockNum': '0x9c8f2f', 'uniqueId': '0x438c3799acd12895b329860796259b420052e92ff4af7bae927d66df21135e89:log:10', 'hash': '0x438c3799acd12895b329860796259b420052e92ff4af7bae927d66df21135e89', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 16420.3637919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x037a26530deac5ba1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:16:00.000Z'}}, {'blockNum': '0x9c8f40', 'uniqueId': '0x992a5089a2adf23c1143baaa0bf6db975f065c20462a1240e14f44b69171617b:log:25', 'hash': '0x992a5089a2adf23c1143baaa0bf6db975f065c20462a1240e14f44b69171617b', 'from': '0x37834333483c803fd8e91725cd589860dd264997', 'to': '0xef02df6daf5c0947c7f306bf1310c5632d763d08', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:20:26.000Z'}}, {'blockNum': '0x9c8f44', 'uniqueId': '0xe64e8a2799fcdb3d22d071e34743f583aa6cf26bb7bc37b4da3710cccb05020e:log:90', 'hash': '0xe64e8a2799fcdb3d22d071e34743f583aa6cf26bb7bc37b4da3710cccb05020e', 'from': '0xef02df6daf5c0947c7f306bf1310c5632d763d08', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:21:05.000Z'}}, {'blockNum': '0x9c8f6f', 'uniqueId': '0x6086781335a6292ffd360fa9222b2a9720dd5b703fb9f167565f4aeaa81c7656:log:121', 'hash': '0x6086781335a6292ffd360fa9222b2a9720dd5b703fb9f167565f4aeaa81c7656', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245507.36619174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x33fcfb221d9d188dd800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:29:14.000Z'}}, {'blockNum': '0x9c8f77', 'uniqueId': '0x2625bfa843ee7c5f2fa5b4b5c4b3575e336f720a637add8ed409db721aba2a5c:log:32', 'hash': '0x2625bfa843ee7c5f2fa5b4b5c4b3575e336f720a637add8ed409db721aba2a5c', 'from': '0xa20bd670bff99f29a813965007217ff2e9f2cec2', 'to': '0xa9a78f358a4bbf97db23283e26de31e55a0e09dd', 'value': 990.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x35b8dc2677b28f0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:31:43.000Z'}}, {'blockNum': '0x9c8f7b', 'uniqueId': '0x80f6ab34bff3698a52aa2a1e492f2a780ff25cfd6f7d137ebd0ee8838c90af2a:log:13', 'hash': '0x80f6ab34bff3698a52aa2a1e492f2a780ff25cfd6f7d137ebd0ee8838c90af2a', 'from': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'to': '0xbd67aa90de68d34dd4b687fb90d335cdec8e07bd', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:32:36.000Z'}}, {'blockNum': '0x9c8f7f', 'uniqueId': '0x62f4ce3b86bcca2ac8c86fc816d09fe4e5ba1effcabc9cc84cbc35e04832d5ee:log:30', 'hash': '0x62f4ce3b86bcca2ac8c86fc816d09fe4e5ba1effcabc9cc84cbc35e04832d5ee', 'from': '0xbd67aa90de68d34dd4b687fb90d335cdec8e07bd', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:33:22.000Z'}}, {'blockNum': '0x9c8f9c', 'uniqueId': '0x26e0d9966c25f48ff2120bb94b76b350231091fbbc9bebd27169d3daff9168b5:log:51', 'hash': '0x26e0d9966c25f48ff2120bb94b76b350231091fbbc9bebd27169d3daff9168b5', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4caaa1a9f79b26ea8f1425151111669836ab2262', 'value': 16420.3637919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x037a26530deac5ba1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:41:22.000Z'}}, {'blockNum': '0x9c8fd9', 'uniqueId': '0xdf271130060821d81cd6f13e591014d8e9466157aaefd3ad1827b70233caae16:log:0', 'hash': '0xdf271130060821d81cd6f13e591014d8e9466157aaefd3ad1827b70233caae16', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5464.77713475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01283f047a6ccabcac00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:53:37.000Z'}}, {'blockNum': '0x9c8fe1', 'uniqueId': '0x575fb85bda3d9be9df695159d3fc9a33a8ab7ecb6db82481a834a760a51a6c04:log:123', 'hash': '0x575fb85bda3d9be9df695159d3fc9a33a8ab7ecb6db82481a834a760a51a6c04', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xc6eaa24a7e404284b1d063e4474d13119890cb83', 'value': 5464.77713475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01283f047a6ccabcac00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:55:03.000Z'}}, {'blockNum': '0x9c8ffe', 'uniqueId': '0xfc4660addec8490b08ddaceb436caa1576bf12a6095fa9f8840a7d308533d374:log:5', 'hash': '0xfc4660addec8490b08ddaceb436caa1576bf12a6095fa9f8840a7d308533d374', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xee35ba740c5ae393523186e6a4d7d0dcaa3ac0c0', 'value': 2657.278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x900d23e62344730000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T00:00:14.000Z'}}, {'blockNum': '0x9c90ad', 'uniqueId': '0x6e73c2e733ae64cad38d3369bef5baf08ecac9b9c4889e8dd449e5ba26cc244c:log:59', 'hash': '0x6e73c2e733ae64cad38d3369bef5baf08ecac9b9c4889e8dd449e5ba26cc244c', 'from': '0x2d55c64b69e0c056b55e80398cde1fa47ca2cbbb', 'to': '0x8352eef02ba4a1d847d0d7654b5c387025c1d133', 'value': 1128.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3d30e661fe658d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T00:39:34.000Z'}}, {'blockNum': '0x9c910a', 'uniqueId': '0xd3fe76de1e8c0c59f2ebf2fc1c6b3e122de75a643aacb2de035f1b1ee83f1103:log:9', 'hash': '0xd3fe76de1e8c0c59f2ebf2fc1c6b3e122de75a643aacb2de035f1b1ee83f1103', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 8328.9966177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c3840c36e1fe7de800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T00:59:05.000Z'}}, {'blockNum': '0x9c9110', 'uniqueId': '0xa65cba450fe16775bbcc1136df0b5b70566f64dda4b367e60a6ae6d132e01b86:log:191', 'hash': '0xa65cba450fe16775bbcc1136df0b5b70566f64dda4b367e60a6ae6d132e01b86', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0aa03e6c410e519f6b394ec9f600c2694ffdd692', 'value': 8328.9966177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c3840c36e1fe7de800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:01:35.000Z'}}, {'blockNum': '0x9c9114', 'uniqueId': '0xa2ba55a620194ab51c8649ca6c0c35159e893bb881ef558a829a3173e0555ffd:log:2', 'hash': '0xa2ba55a620194ab51c8649ca6c0c35159e893bb881ef558a829a3173e0555ffd', 'from': '0x0aa03e6c410e519f6b394ec9f600c2694ffdd692', 'to': '0xd6679341b036839ff82a5de124b7189fda814d3b', 'value': 8328.9966177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c3840c36e1fe7de800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:02:34.000Z'}}, {'blockNum': '0x9c9151', 'uniqueId': '0x70f9936d23cf0a05b99f2b2d8d510755fac3e77dc6d17a383b2365f3017b21d8:log:113', 'hash': '0x70f9936d23cf0a05b99f2b2d8d510755fac3e77dc6d17a383b2365f3017b21d8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2085a3e6af52837ab36b76c5f627769c4105e8c5', 'value': 15773.1524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x035710764a0e94190000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:15:36.000Z'}}, {'blockNum': '0x9c9152', 'uniqueId': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8:log:49', 'hash': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8', 'from': '0x82db9fc4956fa40efe1e35d881004612b5cb2cc2', 'to': '0x16d4f26c15f3658ec65b1126ff27dd3df2a2996b', 'value': 342.29860709269826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x128e58f1933748cad4', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:16:13.000Z'}}, {'blockNum': '0x9c9152', 'uniqueId': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8:log:54', 'hash': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8', 'from': '0x16d4f26c15f3658ec65b1126ff27dd3df2a2996b', 'to': '0x0a05e2e9d6333387d4f634b08fff5210292f5561', 'value': 342.29860709269826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x128e58f1933748cad4', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:16:13.000Z'}}, {'blockNum': '0x9c917b', 'uniqueId': '0x523a57b4279912783f30f25f3f9c3c6b50e41c08de3757659694a59c02198965:log:1', 'hash': '0x523a57b4279912783f30f25f3f9c3c6b50e41c08de3757659694a59c02198965', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5522.767047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x012b63ca085f640f7000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:23:55.000Z'}}, {'blockNum': '0x9c9184', 'uniqueId': '0x5b6186bbf48fff41e9b5530ac82414dd04396fe503df0dcacf5174b714251026:log:87', 'hash': '0x5b6186bbf48fff41e9b5530ac82414dd04396fe503df0dcacf5174b714251026', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 5522.767047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x012b63ca085f640f7000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:25:46.000Z'}}, {'blockNum': '0x9c9190', 'uniqueId': '0x16a04e364f9d90618be2b01417682e379e6bce819583e1260c59f030e12bb98e:log:3', 'hash': '0x16a04e364f9d90618be2b01417682e379e6bce819583e1260c59f030e12bb98e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2205.69404781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7792276a371c841400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:28:06.000Z'}}, {'blockNum': '0x9c919b', 'uniqueId': '0x72da542e9a4139e8ed4b6b830bdd2be7f5b8ad9b3f39ddc76146262d2b4c6789:log:38', 'hash': '0x72da542e9a4139e8ed4b6b830bdd2be7f5b8ad9b3f39ddc76146262d2b4c6789', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 2205.69404781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7792276a371c841400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:30:20.000Z'}}, {'blockNum': '0x9c91ec', 'uniqueId': '0x1884d5e35bb8cf77bfea142c9e5146a3e7131d5dfc9f49308df4c2b66cd2a0ad:log:1', 'hash': '0x1884d5e35bb8cf77bfea142c9e5146a3e7131d5dfc9f49308df4c2b66cd2a0ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'value': 49753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a891d93a94ef9c40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:48:18.000Z'}}, {'blockNum': '0x9c920f', 'uniqueId': '0x7b0baf7c2d4e621cab385d1878912a75b5d1f5ab3ff289b635df9bad9eceafac:log:99', 'hash': '0x7b0baf7c2d4e621cab385d1878912a75b5d1f5ab3ff289b635df9bad9eceafac', 'from': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 49753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a891d93a94ef9c40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:56:02.000Z'}}, {'blockNum': '0x9c921f', 'uniqueId': '0x51f1d874c8974d59fe0c0b98966fee7081b25f4f288b41700b2982fc4f92a03f:log:1', 'hash': '0x51f1d874c8974d59fe0c0b98966fee7081b25f4f288b41700b2982fc4f92a03f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 413602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x579568cafaafc9480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:59:13.000Z'}}]}}
Number of returned transfers:  186
Answer is complete
 
symbol             GXS
group              BPF
date        2020-06-15
hour             16:00
exchange       binance
Name: 832, dtype: object
HERE
 Symbol: GXS, Contract: 
Datetime timestamps:  2020-06-15 16:00:00 2020-06-15 04:00:00 2020-06-16 04:00:00
Unix timestamps:  1592186400.0 1592272800.0
Hex Block Numbers:  0x9cab7f 0x9cc4e9
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GVT
group              BPF
date        2020-07-04
hour             16:00
exchange       binance
Name: 833, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-07-04 16:00:00 2020-07-04 04:00:00 2020-07-05 04:00:00
Unix timestamps:  1593828000.0 1593914400.0
Hex Block Numbers:  0x9e8a72 0x9ea3ae
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ADX
group              BPF
date        2020-07-07
hour             16:00
exchange       binance
Name: 834, dtype: object
HERE
 Symbol: ADX, Contract: 0xade00c28244d5ce17d72e40330b1c318cd12b7c3
Datetime timestamps:  2020-07-07 16:00:00 2020-07-07 04:00:00 2020-07-08 04:00:00
Unix timestamps:  1594087200.0 1594173600.0
Hex Block Numbers:  0x9ed635 0x9eef98
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            CTXC
group              BPF
date        2020-07-10
hour             17:00
exchange       binance
Name: 835, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CTXC, Contract: 
Datetime timestamps:  2020-07-10 17:00:00 2020-07-10 05:00:00 2020-07-11 05:00:00
Unix timestamps:  1594350000.0 1594436400.0
Hex Block Numbers:  0x9f2312 0x9f3c36
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SYS
group              BPF
date        2020-07-16
hour             18:00
exchange       binance
Name: 836, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SYS, Contract: 
Datetime timestamps:  2020-07-16 18:00:00 2020-07-16 06:00:00 2020-07-17 06:00:00
Unix timestamps:  1594872000.0 1594958400.0
Hex Block Numbers:  0x9fbba3 0x9fd49b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NXS
group              BPF
date        2020-07-21
hour             16:00
exchange       binance
Name: 837, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-07-21 16:00:00 2020-07-21 04:00:00 2020-07-22 04:00:00
Unix timestamps:  1595296800.0 1595383200.0
Hex Block Numbers:  0xa037a1 0xa050a1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ELF
group              BPF
date        2020-07-24
hour             17:00
exchange       binance
Name: 838, dtype: object
HERE
 Symbol: ELF, Contract: 0xbf2179859fc6d5bee9bf9158632dc51678a4100e
Datetime timestamps:  2020-07-24 17:00:00 2020-07-24 05:00:00 2020-07-25 05:00:00
Unix timestamps:  1595559600.0 1595646000.0
Hex Block Numbers:  0xa0846c 0xa09d99
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa08534', 'uniqueId': '0xac22d37c109453aff8cd35a7e971a475633f456df255c5d31e10241eb7cd5f55:log:218', 'hash': '0xac22d37c109453aff8cd35a7e971a475633f456df255c5d31e10241eb7cd5f55', 'from': '0xce4f252cbe4669944d72d91805a7748fd475b87f', 'to': '0x96007e5288b97b47f31d666f74643d9b20bbd99c', 'value': 2012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x6d121bebf795f00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T03:44:22.000Z'}}, {'blockNum': '0xa085e5', 'uniqueId': '0x8ed9d688e9c815c1a88812b53f81b259db17465869f9e72e4bfd61cbe4675106:log:78', 'hash': '0x8ed9d688e9c815c1a88812b53f81b259db17465869f9e72e4bfd61cbe4675106', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xd5377e975fb7c21c1ee2c2f91be9ddf48e7e1732', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T04:21:43.000Z'}}, {'blockNum': '0xa085f2', 'uniqueId': '0xde49be321466105a231eed323520bd9c53958f483e75ab6a8a53ede392878ca8:log:171', 'hash': '0xde49be321466105a231eed323520bd9c53958f483e75ab6a8a53ede392878ca8', 'from': '0x05f51aab068caa6ab7eeb672f88c180f67f17ec7', 'to': '0x8bd7a9cadf045af8bdbd31c019f67ed4b7f876e7', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T04:25:42.000Z'}}, {'blockNum': '0xa08609', 'uniqueId': '0xe82eb7eac8d8d82da641936b76e55d0e310bd69454bae8f7533fcbc5475ac4d7:log:36', 'hash': '0xe82eb7eac8d8d82da641936b76e55d0e310bd69454bae8f7533fcbc5475ac4d7', 'from': '0xd5377e975fb7c21c1ee2c2f91be9ddf48e7e1732', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T04:29:37.000Z'}}, {'blockNum': '0xa086d7', 'uniqueId': '0xf669bead51863376a2d28516baf47a637e088e4045aa2a31e82e9cd96216cb4f:log:50', 'hash': '0xf669bead51863376a2d28516baf47a637e088e4045aa2a31e82e9cd96216cb4f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49993.99997161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a962e1f8e9d7f0a8400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:17:08.000Z'}}, {'blockNum': '0xa08712', 'uniqueId': '0x9d8d51a6632ee92931cd21d8611e74ce72b2d3829b270fe44915f17c2c2fc562:log:44', 'hash': '0x9d8d51a6632ee92931cd21d8611e74ce72b2d3829b270fe44915f17c2c2fc562', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 28576.58418277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x060d23c584ff5440f400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:29:06.000Z'}}, {'blockNum': '0xa08712', 'uniqueId': '0xdf787866e65a2c8444356f5db90b3a45a7a13f72c0ab644b04c9f5b13196362a:log:45', 'hash': '0xdf787866e65a2c8444356f5db90b3a45a7a13f72c0ab644b04c9f5b13196362a', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 119999.99994867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x19693689461128956c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:29:06.000Z'}}, {'blockNum': '0xa08718', 'uniqueId': '0x5c45c910aa13db2d6b3fbb5bb2bf0b3f4d76d3ae8e1c62632aac4d17e2944b09:log:170', 'hash': '0x5c45c910aa13db2d6b3fbb5bb2bf0b3f4d76d3ae8e1c62632aac4d17e2944b09', 'from': '0x1186bf84da1e6fff6b65a6ccb104e96f7680cd99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1316c52e935213e40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:30:10.000Z'}}, {'blockNum': '0xa08749', 'uniqueId': '0x15cf2cd86c30f147f2d24f50fcff2b80a8ebaec00085b32481a166e9bd7c9110:log:104', 'hash': '0x15cf2cd86c30f147f2d24f50fcff2b80a8ebaec00085b32481a166e9bd7c9110', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 119987.99998122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x19689000d33ff3156800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:42:00.000Z'}}, {'blockNum': '0xa0875c', 'uniqueId': '0x85b4659bcf6b488e3fd53a3c47d7099402dd63a00342a3e22adc72928a7491a6:log:3', 'hash': '0x85b4659bcf6b488e3fd53a3c47d7099402dd63a00342a3e22adc72928a7491a6', 'from': '0x3556167ad6fa2dc4e1702f663d3ef1eb5954d594', 'to': '0x6f31d347457962c9811ff953742870ef5a755de3', 'value': 30388.2449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x066f599d54ba6bce4000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:47:48.000Z'}}, {'blockNum': '0xa08785', 'uniqueId': '0x8a115cc8111d3209d06c5e678a9d1ef49bd58524f518841b097214b3964d0885:log:78', 'hash': '0x8a115cc8111d3209d06c5e678a9d1ef49bd58524f518841b097214b3964d0885', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 29988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0659a719ccc43e100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:56:27.000Z'}}, {'blockNum': '0xa08791', 'uniqueId': '0xd218ce90ce61cc5c7b35cd8c7c8fcf3cb932d955dc92a867f06262428d0f7cdb:log:39', 'hash': '0xd218ce90ce61cc5c7b35cd8c7c8fcf3cb932d955dc92a867f06262428d0f7cdb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x22ef7c2a9bd156b02742c5ed7121049eb8f18950', 'value': 488.886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1a80a7fac55d9f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:58:42.000Z'}}, {'blockNum': '0xa087be', 'uniqueId': '0x723b64fe37cfb103a4ea9aaff159604b9c92dba620754313b57b2cce9ed20bfa:log:71', 'hash': '0x723b64fe37cfb103a4ea9aaff159604b9c92dba620754313b57b2cce9ed20bfa', 'from': '0x993b51bafcba586c36c728b1450fffeca30d49e1', 'to': '0x11b2beb8c79db9ff2246da1c0ab55e170912cbe7', 'value': 3648.9947308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xc5cff97e75be23e000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:08:40.000Z'}}, {'blockNum': '0xa087c4', 'uniqueId': '0x707cd0c4eac94fe5be508ad305aa5dec2c6531e8436d519767bf089e3e4233e7:log:2', 'hash': '0x707cd0c4eac94fe5be508ad305aa5dec2c6531e8436d519767bf089e3e4233e7', 'from': '0x1528d286b3c434c41062792ff8e7d67e313db2dd', 'to': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'value': 1170000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xf7c1d3bc325377400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:10:00.000Z'}}, {'blockNum': '0xa087c7', 'uniqueId': '0xae1276d9097390f20bae065db2bbb5faa5dfdd54125b8ed59cf1b3c139d5d218:log:56', 'hash': '0xae1276d9097390f20bae065db2bbb5faa5dfdd54125b8ed59cf1b3c139d5d218', 'from': '0x11b2beb8c79db9ff2246da1c0ab55e170912cbe7', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 3648.9947308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xc5cff97e75be23e000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:10:34.000Z'}}, {'blockNum': '0xa08848', 'uniqueId': '0xa10bd8cdc26b7f2e17a2f3ed8999dd4dafa21091a9c82683d260b824716012aa:log:91', 'hash': '0xa10bd8cdc26b7f2e17a2f3ed8999dd4dafa21091a9c82683d260b824716012aa', 'from': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'to': '0x1528d286b3c434c41062792ff8e7d67e313db2dd', 'value': 1600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0152d02c7e14af68000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:39:11.000Z'}}, {'blockNum': '0xa0884f', 'uniqueId': '0x69f8b511da0ae24b4cc60c14c8f28e47e8772c8e59a0a0182dfb9eb08059e650:log:199', 'hash': '0x69f8b511da0ae24b4cc60c14c8f28e47e8772c8e59a0a0182dfb9eb08059e650', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 119987.99990031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1968900089a99f465c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:40:11.000Z'}}, {'blockNum': '0xa088a9', 'uniqueId': '0x6bebc90135bad7aa10a6f0ed6c15ff14cde9363acd95ece14bff8af1749c24fe:log:27', 'hash': '0x6bebc90135bad7aa10a6f0ed6c15ff14cde9363acd95ece14bff8af1749c24fe', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 12205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0295a26673237a940000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:04:46.000Z'}}, {'blockNum': '0xa088b8', 'uniqueId': '0x0e03e25c3a0db826eb68ebe3ce221fc56038c8947d12f7c985bdbcdbf30bdacb:log:152', 'hash': '0x0e03e25c3a0db826eb68ebe3ce221fc56038c8947d12f7c985bdbcdbf30bdacb', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 10781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0248706e2bd05e540000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:08:21.000Z'}}, {'blockNum': '0xa088bb', 'uniqueId': '0x7afc28b6534681688a21310849a79cbc466b0975a041278de0e92bd993a08de0:log:151', 'hash': '0x7afc28b6534681688a21310849a79cbc466b0975a041278de0e92bd993a08de0', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xc3b93abca41063b68c699d9948268d6e1bb71232', 'value': 2628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8e76d38c425e900000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:08:39.000Z'}}, {'blockNum': '0xa088d4', 'uniqueId': '0x4e3eb5f539c21f2539445297a76d82591bd5eead2fde8cb4c818a1ad8b90a874:log:220', 'hash': '0x4e3eb5f539c21f2539445297a76d82591bd5eead2fde8cb4c818a1ad8b90a874', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 99992.44382418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x152c99eaf36b3b010800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:14:03.000Z'}}, {'blockNum': '0xa088e7', 'uniqueId': '0xb0c9de7aa80e162007e89fbab5b402045890a6940374f962183258eed92c3c6f:log:102', 'hash': '0xb0c9de7aa80e162007e89fbab5b402045890a6940374f962183258eed92c3c6f', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'value': 1281.0114874844496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x45719b08c70160a40d', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:17:27.000Z'}}, {'blockNum': '0xa088f2', 'uniqueId': '0x3bfc597d887b9861bf0f285ff37abc8dc53033b6c16a864458afc12e5ba41e6f:log:80', 'hash': '0x3bfc597d887b9861bf0f285ff37abc8dc53033b6c16a864458afc12e5ba41e6f', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 119987.99990031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1968900089a99f465c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:18:35.000Z'}}, {'blockNum': '0xa08909', 'uniqueId': '0xaca5609fc1818abedbc438122f8fa25ec4f9a1b493535bc9e0ce1f1edb4c88f2:log:83', 'hash': '0xaca5609fc1818abedbc438122f8fa25ec4f9a1b493535bc9e0ce1f1edb4c88f2', 'from': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'to': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'value': 1281.3387229840487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x4576259bbb00e036c8', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:22:29.000Z'}}, {'blockNum': '0xa08929', 'uniqueId': '0x72ed613b67806a2d81bf153656d44f86cbe667144d0d5fdff71509a1ed843092:log:111', 'hash': '0x72ed613b67806a2d81bf153656d44f86cbe667144d0d5fdff71509a1ed843092', 'from': '0x2a759e373dd5227d1d4d26490d8b4a274bac9b47', 'to': '0x827eae6a366a5a7cccac948fbd865de19c26b7f0', 'value': 1587.78124997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5612e42a6c0f8e7400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:30:34.000Z'}}, {'blockNum': '0xa08930', 'uniqueId': '0xd5342f9b2635e85167982b2f4de82a63883793829641367d69ffe45debe288e8:log:24', 'hash': '0xd5342f9b2635e85167982b2f4de82a63883793829641367d69ffe45debe288e8', 'from': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1281.3387229840487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x4576259bbb00e036c8', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:31:53.000Z'}}, {'blockNum': '0xa0896e', 'uniqueId': '0xe1595135a1bcf620fccf5c9cbaab8623799b4313b263af38b9c4c46641612ca4:log:195', 'hash': '0xe1595135a1bcf620fccf5c9cbaab8623799b4313b263af38b9c4c46641612ca4', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x00016eac5b94e269250a3e78c7b667769711c675', 'value': 1294.6337504233854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x462ea708bf199acbf8', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:46:04.000Z'}}, {'blockNum': '0xa08986', 'uniqueId': '0x98e00c0df092369372317db660b465ff811746462613ce0b4f75f85bbc1641a0:log:17', 'hash': '0x98e00c0df092369372317db660b465ff811746462613ce0b4f75f85bbc1641a0', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 5199.234816201758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0119d9e0a69bdd227a6c', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:52:26.000Z'}}, {'blockNum': '0xa08987', 'uniqueId': '0x3a5a65a98ed5394295ae38ba8253e070a3fd32df4c2a28f9e10166a7fc962db5:log:46', 'hash': '0x3a5a65a98ed5394295ae38ba8253e070a3fd32df4c2a28f9e10166a7fc962db5', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 5188.836346569354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01194991dd9256000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:52:37.000Z'}}, {'blockNum': '0xa0898d', 'uniqueId': '0x090b3edd56b416c064b50bf045cd7c988e85fb86feafc622da4563af4e6e87e0:log:219', 'hash': '0x090b3edd56b416c064b50bf045cd7c988e85fb86feafc622da4563af4e6e87e0', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'value': 1287.3883663673353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x45ca1a4255cf77c30c', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:53:58.000Z'}}, {'blockNum': '0xa0899a', 'uniqueId': '0xca500eab5498819f857c08ad28e75128c105f806c2bacda6c4a02fadfa6f53dc:log:2', 'hash': '0xca500eab5498819f857c08ad28e75128c105f806c2bacda6c4a02fadfa6f53dc', 'from': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'to': '0xb2f15baa32022b55727b04ee6bc9498dca2cc4df', 'value': 5456.62338588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0127cddc8b0732a4f000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:58:31.000Z'}}, {'blockNum': '0xa089ee', 'uniqueId': '0x70e2b0a35669051b87d3d30f654e124a5d66cb79b8bd88ad2ed424687544b81a:log:16', 'hash': '0x70e2b0a35669051b87d3d30f654e124a5d66cb79b8bd88ad2ed424687544b81a', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'value': 94832.58401767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1414e27a6f81c6a6bc00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T08:14:35.000Z'}}, {'blockNum': '0xa08a0a', 'uniqueId': '0x86b51cf99474de6bd0031c8995dbed760077b303ad2c86b226d591ee73f3fa86:log:12', 'hash': '0x86b51cf99474de6bd0031c8995dbed760077b303ad2c86b226d591ee73f3fa86', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 5113.50727859585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0115342b415c380ef0aa', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T08:21:22.000Z'}}, {'blockNum': '0xa08a0c', 'uniqueId': '0x3efcf27ac60ca1bcd6dad22249b1067cda92853e7115d27f4724f3c150104813:log:5', 'hash': '0x3efcf27ac60ca1bcd6dad22249b1067cda92853e7115d27f4724f3c150104813', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 5103.280264038659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0114a63d99ce35f00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T08:21:37.000Z'}}, {'blockNum': '0xa08b13', 'uniqueId': '0x8903f0886b743c3b3150df9f4d99030b0ad396149577b3e4acb15c8f49cc2e00:log:49', 'hash': '0x8903f0886b743c3b3150df9f4d99030b0ad396149577b3e4acb15c8f49cc2e00', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49993.99991178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a962e1f58333d24e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:23:59.000Z'}}, {'blockNum': '0xa08b28', 'uniqueId': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62:log:111', 'hash': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'value': 9732.493211228617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020f9979c2a7468d3f1a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:28:38.000Z'}}, {'blockNum': '0xa08b28', 'uniqueId': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62:log:119', 'hash': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62', 'from': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 9732.493211228617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020f9979c2a7468d3f1a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:28:38.000Z'}}, {'blockNum': '0xa08b28', 'uniqueId': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62:log:123', 'hash': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x7d8c89aef5ddda740fadfb6e21c8d09bd4502bc5', 'value': 9732.493211228617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020f9979c2a7468d3f1a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:28:38.000Z'}}, {'blockNum': '0xa08b40', 'uniqueId': '0xe550a4f379499e7891fd75c6bc2cc95525f4ea39fe392beeea5b7289d610e53f:log:214', 'hash': '0xe550a4f379499e7891fd75c6bc2cc95525f4ea39fe392beeea5b7289d610e53f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 17285.1139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03a90724979772dec000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:34:57.000Z'}}, {'blockNum': '0xa08b42', 'uniqueId': '0x40a18c89e92e18c4c33b0223613f863cd9854716572e51c09d9026a17024ca57:log:38', 'hash': '0x40a18c89e92e18c4c33b0223613f863cd9854716572e51c09d9026a17024ca57', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x30aa93aef6d887895621e80df8122787da3b29a9', 'value': 105.3164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05b58f03cf4ef30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:36:06.000Z'}}, {'blockNum': '0xa08b67', 'uniqueId': '0x3e5afc20e9e2b8349b59ae2cb762b70bed071cfaa378f79aa95d5901e443306b:log:75', 'hash': '0x3e5afc20e9e2b8349b59ae2cb762b70bed071cfaa378f79aa95d5901e443306b', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 9008.73627316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01e85d54961bce345000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:44:35.000Z'}}, {'blockNum': '0xa08b67', 'uniqueId': '0xcff47ba9803663aeea812572ec23305784bb38aad49397409c8992bf1832b103:log:76', 'hash': '0xcff47ba9803663aeea812572ec23305784bb38aad49397409c8992bf1832b103', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 119999.99995828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x196936894ecea9385000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:44:35.000Z'}}, {'blockNum': '0xa08bc0', 'uniqueId': '0x244915350345967d95ebbee9b327e0c906ce22d3d4010a37a5954b68725b7aa6:log:90', 'hash': '0x244915350345967d95ebbee9b327e0c906ce22d3d4010a37a5954b68725b7aa6', 'from': '0x16a7e432985af479056187ded7831223112c3880', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 6572.2496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x016448490dede3200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:02:46.000Z'}}, {'blockNum': '0xa08bc0', 'uniqueId': '0xfe11b4c1b10ccc6f81ab74af03b4e7f61e87a5dfd1e56152042656c4afc68ed3:log:92', 'hash': '0xfe11b4c1b10ccc6f81ab74af03b4e7f61e87a5dfd1e56152042656c4afc68ed3', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 119987.99998122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x19689000d33ff3156800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:02:46.000Z'}}, {'blockNum': '0xa08bc0', 'uniqueId': '0x43e68065ad9cbfe3f93b7c7038b948272f4f75b1ba9183e34560f42df1836b91:log:94', 'hash': '0x43e68065ad9cbfe3f93b7c7038b948272f4f75b1ba9183e34560f42df1836b91', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 29988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0659a719ccc43e100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:02:46.000Z'}}, {'blockNum': '0xa08bc0', 'uniqueId': '0xdb5921ca77c48be846ef9cb6de5796a526c16ce0c72bd9592ef26e39371e34a4:log:96', 'hash': '0xdb5921ca77c48be846ef9cb6de5796a526c16ce0c72bd9592ef26e39371e34a4', 'from': '0xb2f15baa32022b55727b04ee6bc9498dca2cc4df', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 5456.62338588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0127cddc8b0732a4f000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:02:46.000Z'}}, {'blockNum': '0xa08bc6', 'uniqueId': '0xdb758fc1b51a1eaec361c78cc4879fc61339c7a2697322f08c994df5d93da562:log:22', 'hash': '0xdb758fc1b51a1eaec361c78cc4879fc61339c7a2697322f08c994df5d93da562', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 162004.8729671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x224e4d4038f946ea5800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:03:56.000Z'}}, {'blockNum': '0xa08bce', 'uniqueId': '0xdc3f1bf5f09033ab4956f01c7e49a166d3abdf70af190d0e68d96d88e4daf64f:log:59', 'hash': '0xdc3f1bf5f09033ab4956f01c7e49a166d3abdf70af190d0e68d96d88e4daf64f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2d3ae3a093e4692d233df9e4a304a640e00df23f', 'value': 22284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04b8049f9e4ed4b00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:05:21.000Z'}}, {'blockNum': '0xa08bd8', 'uniqueId': '0xfea48090962ef7bc332c6046b30f095a95ea76ae345dd82928ad442be70f5f98:log:62', 'hash': '0xfea48090962ef7bc332c6046b30f095a95ea76ae345dd82928ad442be70f5f98', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 11598.6162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0274c3226dcc33108000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:07:36.000Z'}}, {'blockNum': '0xa08bdd', 'uniqueId': '0x8b8a5c5cecad06ae4ebc9818de6cc1c08a8ab037f6093d96a24af169ac793391:log:125', 'hash': '0x8b8a5c5cecad06ae4ebc9818de6cc1c08a8ab037f6093d96a24af169ac793391', 'from': '0x00016eac5b94e269250a3e78c7b667769711c675', 'to': '0x18f7810e89d5b21af0656ad7eef72082314053fe', 'value': 1294.633751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x462ea709455a847000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:08:02.000Z'}}, {'blockNum': '0xa08bdd', 'uniqueId': '0x7fb9961bb70346c01c57c0dd241c322cebb8ceaaeb71f24820129510eced16c9:log:188', 'hash': '0x7fb9961bb70346c01c57c0dd241c322cebb8ceaaeb71f24820129510eced16c9', 'from': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 94832.58401767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1414e27a6f81c6a6bc00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:08:02.000Z'}}, {'blockNum': '0xa08bdf', 'uniqueId': '0xe21968ff8283cbe22b50eca7e4447106f51e95c7c6f0959aa2d85c3c99f7da3e:log:209', 'hash': '0xe21968ff8283cbe22b50eca7e4447106f51e95c7c6f0959aa2d85c3c99f7da3e', 'from': '0x30aa93aef6d887895621e80df8122787da3b29a9', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 105.3164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05b58f03cf4ef30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:08:11.000Z'}}, {'blockNum': '0xa08be1', 'uniqueId': '0x4323f94119637cc0de3acba609a3af57ead1a32b2fc5f2dbea62079ee11181ed:log:92', 'hash': '0x4323f94119637cc0de3acba609a3af57ead1a32b2fc5f2dbea62079ee11181ed', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6a05ddedbba43d511a2e95ad43b500c240586278', 'value': 11598.6162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0274c3226dcc33108000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:08:23.000Z'}}, {'blockNum': '0xa08be6', 'uniqueId': '0x412874ea69031058f6f34c90c41925a4b082ca23599f45332d382cd72d8d5ead:log:81', 'hash': '0x412874ea69031058f6f34c90c41925a4b082ca23599f45332d382cd72d8d5ead', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 6523.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0161a16e616687408000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:09:40.000Z'}}, {'blockNum': '0xa08be8', 'uniqueId': '0xa9e38f11724b7c2988be1c57b274a8c94d62f863247e391637cf2b4e6dc370c7:log:113', 'hash': '0xa9e38f11724b7c2988be1c57b274a8c94d62f863247e391637cf2b4e6dc370c7', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xefff06dcc2972f827ff1b0c64550f91beb82ad03', 'value': 6523.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0161a16e616687408000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:09:57.000Z'}}, {'blockNum': '0xa08c04', 'uniqueId': '0xfe06b89e231ce707298f1ffef82313f6cc30c70d0764e893038ada22a4c156ef:log:132', 'hash': '0xfe06b89e231ce707298f1ffef82313f6cc30c70d0764e893038ada22a4c156ef', 'from': '0x6a05ddedbba43d511a2e95ad43b500c240586278', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 11598.6162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0274c3226dcc33108000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:16:54.000Z'}}, {'blockNum': '0xa08c11', 'uniqueId': '0x882621ac476d59b0f46eaae024729c0fe1b4fe3b9443d9103a260c48bedd45cb:log:53', 'hash': '0x882621ac476d59b0f46eaae024729c0fe1b4fe3b9443d9103a260c48bedd45cb', 'from': '0xefff06dcc2972f827ff1b0c64550f91beb82ad03', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 6523.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0161a16e616687408000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:20:07.000Z'}}, {'blockNum': '0xa08c24', 'uniqueId': '0x3c348a6dd463183f86c0dd62a0b8eb2417a216be07d419b9e36f7b2c1f4e31f1:log:127', 'hash': '0x3c348a6dd463183f86c0dd62a0b8eb2417a216be07d419b9e36f7b2c1f4e31f1', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x4bbb752f8516ae74f25559ddf59f0b5da0737085', 'value': 13374.365385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02d5069ad93b95799000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:24:15.000Z'}}, {'blockNum': '0xa08c2c', 'uniqueId': '0xdf38459809793ff975fa0c2f980fbed3de134285ae509023800acd0f8f6baa7f:log:65', 'hash': '0xdf38459809793ff975fa0c2f980fbed3de134285ae509023800acd0f8f6baa7f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x53249e3256953e17fe8975459cfd6c4aa97e12d5', 'value': 10292.53006645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022df58c5b465bea3400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:27:54.000Z'}}, {'blockNum': '0xa08c37', 'uniqueId': '0x747ebf68aa90bceefc6f54190d2c31528e4f7e8f69961cdef2973aed64b57148:log:31', 'hash': '0x747ebf68aa90bceefc6f54190d2c31528e4f7e8f69961cdef2973aed64b57148', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2d3ae3a093e4692d233df9e4a304a640e00df23f', 'value': 19760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x042f31164b0876c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:30:58.000Z'}}, {'blockNum': '0xa08c3f', 'uniqueId': '0x36b085cf80488a6df0c0c0219f31501af1c378f7462646e18094810a80d8e0a5:log:2', 'hash': '0x36b085cf80488a6df0c0c0219f31501af1c378f7462646e18094810a80d8e0a5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc273c464896e56a4800fb53409b9dced960bafed', 'value': 25400.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0560f0167eed29620000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:32:19.000Z'}}, {'blockNum': '0xa08c4e', 'uniqueId': '0xa48d8b0e02eb231fba96637363dba20b92c34744dd7a3c3c1112492a45503dc0:log:171', 'hash': '0xa48d8b0e02eb231fba96637363dba20b92c34744dd7a3c3c1112492a45503dc0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 10229.367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022a88fc10fda7458000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:34:55.000Z'}}, {'blockNum': '0xa08c55', 'uniqueId': '0xefa1cb9ec7dbb0508fee68977f9ccf1baf1ec2ee211922cfb5bec25905f0a1b3:log:94', 'hash': '0xefa1cb9ec7dbb0508fee68977f9ccf1baf1ec2ee211922cfb5bec25905f0a1b3', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 10229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022a83e4386f6eb40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:37:18.000Z'}}, {'blockNum': '0xa08c6b', 'uniqueId': '0x354254508d6f8926081cc9f355ce84f52a17a4c81cded439be42e81e83d971d5:log:49', 'hash': '0x354254508d6f8926081cc9f355ce84f52a17a4c81cded439be42e81e83d971d5', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 85863.06730092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x122ea56db428bae43000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:43:04.000Z'}}, {'blockNum': '0xa08c76', 'uniqueId': '0x068a8d6c73bac641ba49598d2d97ce9176770e06a029879030e4b9c896bc907c:log:72', 'hash': '0x068a8d6c73bac641ba49598d2d97ce9176770e06a029879030e4b9c896bc907c', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 20483.1889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0456655963f6cc3e4000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:45:30.000Z'}}, {'blockNum': '0xa08ca5', 'uniqueId': '0x38fb9acb2262fd47cd58b6f9fac0c5dd2e14245445edc5eddf75dfb068f7a80a:log:168', 'hash': '0x38fb9acb2262fd47cd58b6f9fac0c5dd2e14245445edc5eddf75dfb068f7a80a', 'from': '0x53249e3256953e17fe8975459cfd6c4aa97e12d5', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 10292.53006645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022df58c5b465bea3400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:55:28.000Z'}}, {'blockNum': '0xa08ca5', 'uniqueId': '0x6d83aaeec92349b11d20aedb0662802ff1776a8eaf6c119c43ac765bf66b276b:log:212', 'hash': '0x6d83aaeec92349b11d20aedb0662802ff1776a8eaf6c119c43ac765bf66b276b', 'from': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'to': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'value': 1287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x45c4b6812e87bc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:55:28.000Z'}}, {'blockNum': '0xa08cc2', 'uniqueId': '0x96846c55661addfc16429e1446b71da179a6919189c2734fa47f48c2c871f357:log:227', 'hash': '0x96846c55661addfc16429e1446b71da179a6919189c2734fa47f48c2c871f357', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27568.38774092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05d67c3c3ac9da3bb000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:02:08.000Z'}}, {'blockNum': '0xa08cc2', 'uniqueId': '0x570711851b340cab3a8cd71b21ce96a1ba5ad7ef286075f718fa64317881c1ff:log:228', 'hash': '0x570711851b340cab3a8cd71b21ce96a1ba5ad7ef286075f718fa64317881c1ff', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 119999.99998618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x19693689682ea2cf2800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:02:08.000Z'}}, {'blockNum': '0xa08cc6', 'uniqueId': '0x9101cfdb858ef68559d23ddface8137aa5a2b9f35abba8563d2b06e7e7fd4678:log:85', 'hash': '0x9101cfdb858ef68559d23ddface8137aa5a2b9f35abba8563d2b06e7e7fd4678', 'from': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x45c4b6812e87bc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:02:45.000Z'}}, {'blockNum': '0xa08d05', 'uniqueId': '0x1d18b72764c495a8db92fe67db92c3c9d405691fdf2113eb922fc2aa5d18d8e9:log:49', 'hash': '0x1d18b72764c495a8db92fe67db92c3c9d405691fdf2113eb922fc2aa5d18d8e9', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:16:14.000Z'}}, {'blockNum': '0xa08d1b', 'uniqueId': '0x45d3144a577bd2352e26c8e2208546205743d61a901d29508c2a665b0554e148:log:71', 'hash': '0x45d3144a577bd2352e26c8e2208546205743d61a901d29508c2a665b0554e148', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 15457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0345ecf7554ddce40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:20:37.000Z'}}, {'blockNum': '0xa08d3c', 'uniqueId': '0x7c1baacbe14e17856fabf01189ef772f89c1bff6d005e6d382a4023cb8859af7:log:23', 'hash': '0x7c1baacbe14e17856fabf01189ef772f89c1bff6d005e6d382a4023cb8859af7', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 47437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a0b909ec8009d140000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:30:30.000Z'}}, {'blockNum': '0xa08d42', 'uniqueId': '0xc51ddd9ba1a74f960bc46ed6dd5da8b224f0753fdc617b0aace2848f432ed151:log:124', 'hash': '0xc51ddd9ba1a74f960bc46ed6dd5da8b224f0753fdc617b0aace2848f432ed151', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 15457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0345ecf7554ddce40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:31:35.000Z'}}, {'blockNum': '0xa08d4d', 'uniqueId': '0x1190fe9ffd3d3f4b18ab24a7be5e84af76b322ce36f1f1db994addcaf575fb80:log:22', 'hash': '0x1190fe9ffd3d3f4b18ab24a7be5e84af76b322ce36f1f1db994addcaf575fb80', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x94c04be3ce84ae8b3dc7aec2474431b997dcdb58', 'value': 229366.5424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x3091fc34a4c694440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:33:36.000Z'}}, {'blockNum': '0xa08dba', 'uniqueId': '0x7acc935fa3325ec240014284f4184d848c895ac2daa2e8c6dc23c8fb2536a478:log:89', 'hash': '0x7acc935fa3325ec240014284f4184d848c895ac2daa2e8c6dc23c8fb2536a478', 'from': '0x94c04be3ce84ae8b3dc7aec2474431b997dcdb58', 'to': '0x246073ff205b9cea3cc5782cddf61e57375a586b', 'value': 229366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x3091f4ada6d976180000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:57:49.000Z'}}, {'blockNum': '0xa08dcf', 'uniqueId': '0xfaf4757a94a41f0cdf8101c787f0831a69c8d763bd22be5fd7d213a935ab3b24:log:162', 'hash': '0xfaf4757a94a41f0cdf8101c787f0831a69c8d763bd22be5fd7d213a935ab3b24', 'from': '0x8bd7a9cadf045af8bdbd31c019f67ed4b7f876e7', 'to': '0xb84844becf02d9f9839f2e6860411e0083bf1c7b', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T12:01:43.000Z'}}, {'blockNum': '0xa08ecd', 'uniqueId': '0xcef0ffd9e150b312dd1682068dc79da46bbbd80f6eacc66977d8fd0678dcfc3d:log:154', 'hash': '0xcef0ffd9e150b312dd1682068dc79da46bbbd80f6eacc66977d8fd0678dcfc3d', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 6944.287549274464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017873595da72060e66f', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T12:56:39.000Z'}}, {'blockNum': '0xa08ee2', 'uniqueId': '0xb33d7db8520fc7ed8f095de0a61406523a5950b7a66fef848f1ae359820de3ad:log:210', 'hash': '0xb33d7db8520fc7ed8f095de0a61406523a5950b7a66fef848f1ae359820de3ad', 'from': '0xc273c464896e56a4800fb53409b9dced960bafed', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47437.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a0b9173f1af3b9a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:26.000Z'}}, {'blockNum': '0xa08ee2', 'uniqueId': '0xee4fd078ec44d4544ad8a792e378600afbcfb499c8c0d7dd837f1a3a5ea2e0b7:log:222', 'hash': '0xee4fd078ec44d4544ad8a792e378600afbcfb499c8c0d7dd837f1a3a5ea2e0b7', 'from': '0x593065a46a507dc0da5146020efc1476067aab8c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06d2b43371d355540000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:26.000Z'}}, {'blockNum': '0xa08ee2', 'uniqueId': '0x8abebd0a56d13512af9e79cda3d5d3591b4e21fd2ae2fe3e956ccdbd4d3cb168:log:274', 'hash': '0x8abebd0a56d13512af9e79cda3d5d3591b4e21fd2ae2fe3e956ccdbd4d3cb168', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42755.63397402897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x090dc99daa526b840000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:26.000Z'}}, {'blockNum': '0xa08ee2', 'uniqueId': '0xe7df71449bb8f35a52646cca6f6d52cee063e2580f5cfd9ef685e556639d2e96:log:294', 'hash': '0xe7df71449bb8f35a52646cca6f6d52cee063e2580f5cfd9ef685e556639d2e96', 'from': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06e978df3091f5640000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:26.000Z'}}, {'blockNum': '0xa08ee3', 'uniqueId': '0xeac48997611854fab07dddbdef5c34fb8697ed91a5d3f5cde547db40f4d3499f:log:16', 'hash': '0xeac48997611854fab07dddbdef5c34fb8697ed91a5d3f5cde547db40f4d3499f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 15227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x033975132fe5790c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:30.000Z'}}, {'blockNum': '0xa08f00', 'uniqueId': '0x6e4dfe88372f0da8f11c54c56bc42d8a65d0ff09463a32ed10f209150c1404ec:log:47', 'hash': '0x6e4dfe88372f0da8f11c54c56bc42d8a65d0ff09463a32ed10f209150c1404ec', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x4b8a339be06ff31752a806995b72e76e93dd9106', 'value': 62116.2217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d2753be824d76c44000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:09:50.000Z'}}, {'blockNum': '0xa08f16', 'uniqueId': '0x7457bfe64d47a3cb6eed2b89b704c587e62382883e5dcfd17a7b72f87415a315:log:73', 'hash': '0x7457bfe64d47a3cb6eed2b89b704c587e62382883e5dcfd17a7b72f87415a315', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xc3efb06951655e3cbb8bc10421f74c931958cafe', 'value': 119022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1934320f7a6adef80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:14:08.000Z'}}, {'blockNum': '0xa08f8c', 'uniqueId': '0xd60811a6f9cd80fa1eb9f7b49304fede98fb1dec956d426d56f8c4f0662ad9b8:log:46', 'hash': '0xd60811a6f9cd80fa1eb9f7b49304fede98fb1dec956d426d56f8c4f0662ad9b8', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 12071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x028e5ec6d119dc3c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:40:24.000Z'}}, {'blockNum': '0xa08f91', 'uniqueId': '0xb63b8ada9294e0e619d5c8768343521f12a9e8dbe0dd24452ebadea336838d7e:log:90', 'hash': '0xb63b8ada9294e0e619d5c8768343521f12a9e8dbe0dd24452ebadea336838d7e', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:41:10.000Z'}}, {'blockNum': '0xa08f92', 'uniqueId': '0x640bef339e488e986dbd5990558171f516e49716648d54f0486f947a5b95ccef:log:227', 'hash': '0x640bef339e488e986dbd5990558171f516e49716648d54f0486f947a5b95ccef', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 11219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02602ee6c330c36c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:41:39.000Z'}}, {'blockNum': '0xa08f95', 'uniqueId': '0xd4e23ac5ba7ad024b0f6042936bf7f46b326798ffb776ed06aa861f0858436b7:log:87', 'hash': '0xd4e23ac5ba7ad024b0f6042936bf7f46b326798ffb776ed06aa861f0858436b7', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 31200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x069b5afac750bb800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:42:09.000Z'}}, {'blockNum': '0xa08f95', 'uniqueId': '0x0dd94790e358413383ac98e9de13d796309b594ca8c9ddbee7911092d5401896:log:88', 'hash': '0x0dd94790e358413383ac98e9de13d796309b594ca8c9ddbee7911092d5401896', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 110655.08755952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x176e9fd3339a57e9c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:42:09.000Z'}}, {'blockNum': '0xa08fa2', 'uniqueId': '0x8fab3508db7fdecba355fe4a4907add8750fbb3bf2e2e8b10ce15168354bd1c4:log:150', 'hash': '0x8fab3508db7fdecba355fe4a4907add8750fbb3bf2e2e8b10ce15168354bd1c4', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 61541.63474743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d082dbf953b79b1fc00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:45:32.000Z'}}, {'blockNum': '0xa08fa7', 'uniqueId': '0xdbb3fb2b92f067ea98252db43dbae7089ca928904faaf7e50c02e840f934ed5f:log:53', 'hash': '0xdbb3fb2b92f067ea98252db43dbae7089ca928904faaf7e50c02e840f934ed5f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 15567.0857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x034be4b64e31f31c4000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:46:23.000Z'}}, {'blockNum': '0xa08fa7', 'uniqueId': '0xe10d1a583bc83e2cfda525ea7e2ec63f07d0f3bc202a3d1524d503d2699f71fa:log:54', 'hash': '0xe10d1a583bc83e2cfda525ea7e2ec63f07d0f3bc202a3d1524d503d2699f71fa', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 7042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017dbf61b9e28cc80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:46:23.000Z'}}, {'blockNum': '0xa08fc1', 'uniqueId': '0x21bf36597f14b16e57dec1679b962d19ce57a6a8649f4a60fc424fe3ace4307d:log:84', 'hash': '0x21bf36597f14b16e57dec1679b962d19ce57a6a8649f4a60fc424fe3ace4307d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x4b8a339be06ff31752a806995b72e76e93dd9106', 'value': 64195.158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d9806c7f079dbaf0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:51:33.000Z'}}, {'blockNum': '0xa08fd3', 'uniqueId': '0x737af360fed584aaa20c8438d5144783ebb8838824b529ecc8a9e2fb459a1bae:log:40', 'hash': '0x737af360fed584aaa20c8438d5144783ebb8838824b529ecc8a9e2fb459a1bae', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 4089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xddaa463b8cac440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:54:23.000Z'}}, {'blockNum': '0xa08fde', 'uniqueId': '0x28f74b4f38f6b15f6aec34ca21d568da81bd2eebc4642d2de3b768e1d35e0dfd:log:27', 'hash': '0x28f74b4f38f6b15f6aec34ca21d568da81bd2eebc4642d2de3b768e1d35e0dfd', 'from': '0x22ef7c2a9bd156b02742c5ed7121049eb8f18950', 'to': '0x20312e96b1a0568ac31c6630844a962383cc66c2', 'value': 488.886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1a80a7fac55d9f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:56:26.000Z'}}, {'blockNum': '0xa0900f', 'uniqueId': '0x255d9deb2db1f731585c87d67d75ae50e04e27bef9a6e3885eaf9b2cc6b6779c:log:198', 'hash': '0x255d9deb2db1f731585c87d67d75ae50e04e27bef9a6e3885eaf9b2cc6b6779c', 'from': '0x7d8c89aef5ddda740fadfb6e21c8d09bd4502bc5', 'to': '0xd123dd500789c4a2e69b237be875a0b0f0af0e2b', 'value': 9732.493211228617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020f9979c2a7468d3f1a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T14:07:23.000Z'}}, {'blockNum': '0xa090dc', 'uniqueId': '0xb45bab37d75b95df33d9c58c4d5bfd468f02d805df3a2bb855bacad566892667:log:28', 'hash': '0xb45bab37d75b95df33d9c58c4d5bfd468f02d805df3a2bb855bacad566892667', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xcac9848277f980b84ff42fa26847bae5112ad5d6', 'value': 136.7243533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07696e7aedff81c800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T14:52:01.000Z'}}, {'blockNum': '0xa090fd', 'uniqueId': '0x3d5d0a847ca38c0360df78336a3dd8e4b6e0b09f075bca8a2b43fbe415e52ede:log:56', 'hash': '0x3d5d0a847ca38c0360df78336a3dd8e4b6e0b09f075bca8a2b43fbe415e52ede', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 119000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x193300bfc6fa7c600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:00:13.000Z'}}, {'blockNum': '0xa09167', 'uniqueId': '0x2dc9712b31c41512ceb4fa0dfc7775357ac922e6dccf2a46aa892aa39e0d940f:log:40', 'hash': '0x2dc9712b31c41512ceb4fa0dfc7775357ac922e6dccf2a46aa892aa39e0d940f', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 5009.4918698850415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010f90aa4a3c293c2f8d', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:25:33.000Z'}}, {'blockNum': '0xa09167', 'uniqueId': '0x3946fc229fecd2288889320a43f8efcb81d9a55e85ed1528ee1cfbc2cb4d51d3:log:223', 'hash': '0x3946fc229fecd2288889320a43f8efcb81d9a55e85ed1528ee1cfbc2cb4d51d3', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'value': 1241.3051099276902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x434a91a4c34d2f6cd6', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:25:33.000Z'}}, {'blockNum': '0xa09169', 'uniqueId': '0xf142fc730a587d62c1627877b7c0b80ccc2dc2ac1d383210388226a17ceddd80:log:37', 'hash': '0xf142fc730a587d62c1627877b7c0b80ccc2dc2ac1d383210388226a17ceddd80', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 4999.472886145271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010f059fb59b45d00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:26:32.000Z'}}, {'blockNum': '0xa09170', 'uniqueId': '0x6d137309600daa00ac5b07f1a3579b66e8aac4ee8cdced4eb8f55b470c666750:log:13', 'hash': '0x6d137309600daa00ac5b07f1a3579b66e8aac4ee8cdced4eb8f55b470c666750', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 19565.6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0424a8748cf2473a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:27:42.000Z'}}, {'blockNum': '0xa09170', 'uniqueId': '0xc233a3afdb2df77c494e618a73ca081b5f0c395a14a8466563440fbcae7a548e:log:180', 'hash': '0xc233a3afdb2df77c494e618a73ca081b5f0c395a14a8466563440fbcae7a548e', 'from': '0x013dc51767a671ca7c4ff9592d5d453fd432b5c6', 'to': '0x5c2340a1a65184f1e192ecd7885832eec9f0efc7', 'value': 147.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07fc32b992370a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:27:42.000Z'}}, {'blockNum': '0xa0917a', 'uniqueId': '0x1005a68ae92c577cf06ab3eed53db03a8a588b8a1b935c8117a4bb6f205cd900:log:24', 'hash': '0x1005a68ae92c577cf06ab3eed53db03a8a588b8a1b935c8117a4bb6f205cd900', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 12697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02b04e4594692ec40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:29:42.000Z'}}, {'blockNum': '0xa09181', 'uniqueId': '0x3f1cc3ef2af0cfa7974c5d27f520e8329daf6088124409adfaa6c64e2aef5478:log:18', 'hash': '0x3f1cc3ef2af0cfa7974c5d27f520e8329daf6088124409adfaa6c64e2aef5478', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 14884.1615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0326df3c28952549c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:32:15.000Z'}}, {'blockNum': '0xa09199', 'uniqueId': '0xabe34f5d2f93f45125d4b12320fa6b94c01d0f3105cdc5176f2ae87e7fb11861:log:58', 'hash': '0xabe34f5d2f93f45125d4b12320fa6b94c01d0f3105cdc5176f2ae87e7fb11861', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 19565.6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0424a8748cf2473a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:36:15.000Z'}}, {'blockNum': '0xa0919b', 'uniqueId': '0x11dd4a79d487a18f87738c00db2361040c6be34d71b75950bdaceb8d9874d054:log:0', 'hash': '0x11dd4a79d487a18f87738c00db2361040c6be34d71b75950bdaceb8d9874d054', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 19565.6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0424a8748cf2473a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:36:34.000Z'}}, {'blockNum': '0xa091a8', 'uniqueId': '0xb218dfcea963981252ca8ac8deee4d3c682f82dda1066e0e78b450f6b1e5704a:log:74', 'hash': '0xb218dfcea963981252ca8ac8deee4d3c682f82dda1066e0e78b450f6b1e5704a', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 14884.1615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0326df3c28952549c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:40:09.000Z'}}, {'blockNum': '0xa091a9', 'uniqueId': '0x303d2d51036be4f182d26dc3b3dc6548fff98487e78a428707030137144c3265:log:74', 'hash': '0x303d2d51036be4f182d26dc3b3dc6548fff98487e78a428707030137144c3265', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 8008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01b21d5323cc30200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:40:21.000Z'}}, {'blockNum': '0xa091ab', 'uniqueId': '0xe176318f6879dc2d1f7cc5d38c62eb427a8c2380de050a7711418da2d08fd467:log:0', 'hash': '0xe176318f6879dc2d1f7cc5d38c62eb427a8c2380de050a7711418da2d08fd467', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 14884.1615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0326df3c28952549c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:40:33.000Z'}}, {'blockNum': '0xa091af', 'uniqueId': '0x67e452ba26f73a2e528c2cfa1b75b4d679288f7fb8dada6505019a36d71776e1:log:94', 'hash': '0x67e452ba26f73a2e528c2cfa1b75b4d679288f7fb8dada6505019a36d71776e1', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 8008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01b21d5323cc30200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:41:15.000Z'}}, {'blockNum': '0xa091cc', 'uniqueId': '0xfb2d42f9eec6dc4af1ed453ea6ddeff4d5809b3190fb15a1b27baae10d2b3eed:log:82', 'hash': '0xfb2d42f9eec6dc4af1ed453ea6ddeff4d5809b3190fb15a1b27baae10d2b3eed', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 12467.9706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a3e3d9b28f85ea8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:47:59.000Z'}}, {'blockNum': '0xa091cd', 'uniqueId': '0x1f8bf8629225a71ef954a9d022b9fbdf581de24b275fa7b261aa69638ecf9bd1:log:86', 'hash': '0x1f8bf8629225a71ef954a9d022b9fbdf581de24b275fa7b261aa69638ecf9bd1', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 10063.8854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02219077528cc7fd8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:48:19.000Z'}}, {'blockNum': '0xa091ce', 'uniqueId': '0xa816a2a1f2d3ff3eea668930588cf9143948da55f2c302d63fffe04eb2925ecf:log:149', 'hash': '0xa816a2a1f2d3ff3eea668930588cf9143948da55f2c302d63fffe04eb2925ecf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb4ffd0326834cd68b95785a17c9a8715986d3140', 'value': 5709.017418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01357c88460017c6a000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:48:36.000Z'}}, {'blockNum': '0xa09214', 'uniqueId': '0xb08e132aa6a31c371610a2c27c825a6f99379778942c83fae320edf1e8bce060:log:136', 'hash': '0xb08e132aa6a31c371610a2c27c825a6f99379778942c83fae320edf1e8bce060', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 146059.69202294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1eede969c573166b1800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:04:14.000Z'}}, {'blockNum': '0xa0926c', 'uniqueId': '0x2eff97488c4708478d18357a8320428186d904e553910f4a57eb1163b4fb2a32:log:8', 'hash': '0x2eff97488c4708478d18357a8320428186d904e553910f4a57eb1163b4fb2a32', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 25049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x054de8b4f0b5c7c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:21:32.000Z'}}, {'blockNum': '0xa0928f', 'uniqueId': '0x0b8c3760e10473584898ea4c5fd8dacffc42de62596f0f797ca8ceaa7e50e3d6:log:29', 'hash': '0x0b8c3760e10473584898ea4c5fd8dacffc42de62596f0f797ca8ceaa7e50e3d6', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 13518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02dccfef829102780000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:29:34.000Z'}}, {'blockNum': '0xa09297', 'uniqueId': '0x7b01100ac7957968feb89a15111d92e08e3f0a2748301466d6bd89af797da219:log:217', 'hash': '0x7b01100ac7957968feb89a15111d92e08e3f0a2748301466d6bd89af797da219', 'from': '0x5c2340a1a65184f1e192ecd7885832eec9f0efc7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 147.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07fc32b992370a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:30:51.000Z'}}, {'blockNum': '0xa092c6', 'uniqueId': '0x30bdc17bc954ac7cc96c62360717f9fb411d96dbe3fab2af7ec31f9e0d683b8b:log:26', 'hash': '0x30bdc17bc954ac7cc96c62360717f9fb411d96dbe3fab2af7ec31f9e0d683b8b', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x4b8a339be06ff31752a806995b72e76e93dd9106', 'value': 69845.0223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0eca4e661f0fe0b1c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:40:27.000Z'}}, {'blockNum': '0xa092cf', 'uniqueId': '0xfb54b3619027862f2bb05186ae0d7d8b06540f0df6f003579b53fea6828e9e53:log:125', 'hash': '0xfb54b3619027862f2bb05186ae0d7d8b06540f0df6f003579b53fea6828e9e53', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 74664.04416107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fcf8bc3016edfe04c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:42:40.000Z'}}, {'blockNum': '0xa092d7', 'uniqueId': '0xb46ff4d79087ecef49e2957ce8f3cb6b527058add2feba6304bf571b8fff77a1:log:136', 'hash': '0xb46ff4d79087ecef49e2957ce8f3cb6b527058add2feba6304bf571b8fff77a1', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93107.17381426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x13b7599a011edf1e8800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:44:21.000Z'}}, {'blockNum': '0xa092da', 'uniqueId': '0x53c9294a4c78bb1f875a704700aff5c83aec376afa5f0eba1618d9d8bc655ee7:log:0', 'hash': '0x53c9294a4c78bb1f875a704700aff5c83aec376afa5f0eba1618d9d8bc655ee7', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 12390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x029fa9ca7af771d80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:44:41.000Z'}}, {'blockNum': '0xa092eb', 'uniqueId': '0x72ae14fd8e536bf1edf0b38a35554619cb60c2fd1c963624c8e5c1b214865632:log:7', 'hash': '0x72ae14fd8e536bf1edf0b38a35554619cb60c2fd1c963624c8e5c1b214865632', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 22992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04de6618e729c5400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:48:06.000Z'}}, {'blockNum': '0xa092f6', 'uniqueId': '0x20a9da808a34952cf1d96ad55a8e745e8467af2c5ab8f6daa715c032000f1dda:log:83', 'hash': '0x20a9da808a34952cf1d96ad55a8e745e8467af2c5ab8f6daa715c032000f1dda', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 16199.4348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x036e2c519a50e5130000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:49:45.000Z'}}, {'blockNum': '0xa092fa', 'uniqueId': '0x0793d3f47db59125ab10ea46ffb7184822acc8d88967855c40d2ee621086052d:log:89', 'hash': '0x0793d3f47db59125ab10ea46ffb7184822acc8d88967855c40d2ee621086052d', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 21159.8109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x047b135da0112a994000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:50:09.000Z'}}, {'blockNum': '0xa09301', 'uniqueId': '0xbaa17718056de811efb067e840012ad52756cb052c3d4932e76dbf041713dd9e:log:13', 'hash': '0xbaa17718056de811efb067e840012ad52756cb052c3d4932e76dbf041713dd9e', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 4943.670748603324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010bff36b12a1e8c3b42', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:53:25.000Z'}}, {'blockNum': '0xa09303', 'uniqueId': '0x4dc2389c5f505928abc592ed8cc95f9eea5b58e62c5d258e255394d38648f171:log:103', 'hash': '0x4dc2389c5f505928abc592ed8cc95f9eea5b58e62c5d258e255394d38648f171', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 157419.18176633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2155b6005de81c92c400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:53:49.000Z'}}, {'blockNum': '0xa09304', 'uniqueId': '0x2f23d39acae08e8ddba22db9ca42f26f4c7c6d4ef5c53efe25a4ce184feefcf7:log:25', 'hash': '0x2f23d39acae08e8ddba22db9ca42f26f4c7c6d4ef5c53efe25a4ce184feefcf7', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 4933.783407106116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010b75ffcc754c800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:53:57.000Z'}}, {'blockNum': '0xa09309', 'uniqueId': '0x641c5851ff0a8ba2fa58d37bb82e869612eaf24e6fbc2402948a1b827a13233d:log:127', 'hash': '0x641c5851ff0a8ba2fa58d37bb82e869612eaf24e6fbc2402948a1b827a13233d', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 10755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0247079b9d915e2c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:54:33.000Z'}}, {'blockNum': '0xa0930a', 'uniqueId': '0x15cbe0860caa6ec623b6ed87464111223815a9bcc257cdf151ba9f0c73ebbd7c:log:264', 'hash': '0x15cbe0860caa6ec623b6ed87464111223815a9bcc257cdf151ba9f0c73ebbd7c', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 220035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2e981f0a509b342c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:55:04.000Z'}}, {'blockNum': '0xa0930b', 'uniqueId': '0x6ab75e190a061cec6bd5a314c4c42e6cf8e242dc32a701f1c4a5b042efaa33a4:log:107', 'hash': '0x6ab75e190a061cec6bd5a314c4c42e6cf8e242dc32a701f1c4a5b042efaa33a4', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xc3b93abca41063b68c699d9948268d6e1bb71232', 'value': 8216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01bd63e795c431600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:55:20.000Z'}}, {'blockNum': '0xa0931f', 'uniqueId': '0xdd6de4d01eb5f53efb7ec0f2a6d0ae183406734c1e95e90807d7ee661e8b9d21:log:53', 'hash': '0xdd6de4d01eb5f53efb7ec0f2a6d0ae183406734c1e95e90807d7ee661e8b9d21', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 5972.644361055694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0143c71751f44092c1e5', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:59:59.000Z'}}, {'blockNum': '0xa0931f', 'uniqueId': '0xdbc6f05d0a82f1a26587da62ea18b276bce54e7068b1b2701b98c9c06d8f0802:log:78', 'hash': '0xdbc6f05d0a82f1a26587da62ea18b276bce54e7068b1b2701b98c9c06d8f0802', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 7136.121135272937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0182d9932bbd94a7aa6b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:59:59.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xb195b000adc08d9348348a20a4c5c1b848176be121369110806919eb12d56a46:log:21', 'hash': '0xb195b000adc08d9348348a20a4c5c1b848176be121369110806919eb12d56a46', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5467b732a913340000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0x2a83d32a31f276647bb20a9b55fdfb5976b6c58b6a2c9f7ff0456c01072bd6b4:log:22', 'hash': '0x2a83d32a31f276647bb20a9b55fdfb5976b6c58b6a2c9f7ff0456c01072bd6b4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 1605.14840089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5703e8ae2b32c14400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xac851a5a324f2414706bd600700088e780a3563cd50597f1f79bd9d093969d9d:log:40', 'hash': '0xac851a5a324f2414706bd600700088e780a3563cd50597f1f79bd9d093969d9d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 13421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02d78dca487e95940000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xbe7c55449e6959f13393ae0b4a5ed36dc7bf30c44397ef808f0b3934b83458be:log:44', 'hash': '0xbe7c55449e6959f13393ae0b4a5ed36dc7bf30c44397ef808f0b3934b83458be', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa268e17941b52956bf286f844de0326de11d7380', 'value': 28216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05f997a9293995e00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0x793acd1c9f66aeabacd3b9429519fa8956a41a2eb24c5b906af238e2382f8007:log:48', 'hash': '0x793acd1c9f66aeabacd3b9429519fa8956a41a2eb24c5b906af238e2382f8007', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x4b8a339be06ff31752a806995b72e76e93dd9106', 'value': 74265.6287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fb9f2a2f27c4b0dc000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xbb4a98648c2af6a5fb7fa909b758eaf1c7a0eb3b037d05501f86e130a46f302e:log:49', 'hash': '0xbb4a98648c2af6a5fb7fa909b758eaf1c7a0eb3b037d05501f86e130a46f302e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 18181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03d9980f64ef00f40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0x5f8cb0875019a4baec3a19cbe36cfd0e4ef3640bdeb3e56b4d4de4d7479a0091:log:50', 'hash': '0x5f8cb0875019a4baec3a19cbe36cfd0e4ef3640bdeb3e56b4d4de4d7479a0091', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 10689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x024373ac834036640000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xd46964f4c95816a80d4c1439586a2a76d8f000ba4efbf0210447cc82872254ba:log:104', 'hash': '0xd46964f4c95816a80d4c1439586a2a76d8f000ba4efbf0210447cc82872254ba', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 7136.121135272937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0182d9932bbd94a7aa6b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09322', 'uniqueId': '0xc86859aa692d1d7ae6c551be5ba14d1fc4d2e52afc1831e2f46bba3d999613f7:log:155', 'hash': '0xc86859aa692d1d7ae6c551be5ba14d1fc4d2e52afc1831e2f46bba3d999613f7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 17222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03a59b42f9eef1580000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:45.000Z'}}, {'blockNum': '0xa09324', 'uniqueId': '0x15e58d28b4abd27411adb26d2154a3143283c0177b91b5bd00479381048bb5e6:log:76', 'hash': '0x15e58d28b4abd27411adb26d2154a3143283c0177b91b5bd00479381048bb5e6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1186bf84da1e6fff6b65a6ccb104e96f7680cd99', 'value': 24124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x051bc3c0c991f3700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:01:08.000Z'}}, {'blockNum': '0xa09327', 'uniqueId': '0x326b46e501f2333922fc1dd0e05b05517c2073f77edd8ce383c7b69020674d32:log:21', 'hash': '0x326b46e501f2333922fc1dd0e05b05517c2073f77edd8ce383c7b69020674d32', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 11441.242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x026c3b20f4b3afc90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:01:26.000Z'}}, {'blockNum': '0xa09329', 'uniqueId': '0xc5f629a23493189cf574a963edec29262b02407514551a34897d022812fa0830:log:17', 'hash': '0xc5f629a23493189cf574a963edec29262b02407514551a34897d022812fa0830', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 17508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03b51c4f16a3f3100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:02:04.000Z'}}, {'blockNum': '0xa0932d', 'uniqueId': '0xeeaf3368476ddad6a01e32ad975a31b0f0662628073352501decfcb2f70a1606:log:8', 'hash': '0xeeaf3368476ddad6a01e32ad975a31b0f0662628073352501decfcb2f70a1606', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xef8aeaad8f5a5b88a0509d82a92093f1ce66eaf4', 'value': 23416.0072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04f562611513a5420000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:03:14.000Z'}}, {'blockNum': '0xa0932d', 'uniqueId': '0x294649dbdf8ddb647873eed34a3d17f34337fff6b9121ebfc427c6d704af046b:log:179', 'hash': '0x294649dbdf8ddb647873eed34a3d17f34337fff6b9121ebfc427c6d704af046b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 16567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0382194f8445a87c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:03:14.000Z'}}, {'blockNum': '0xa0932d', 'uniqueId': '0xc38e01c471483b563e3ee4ed786449afc1072efd116e3be8771342d1f49f613e:log:180', 'hash': '0xc38e01c471483b563e3ee4ed786449afc1072efd116e3be8771342d1f49f613e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 15471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0346af415321045c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:03:14.000Z'}}, {'blockNum': '0xa0932e', 'uniqueId': '0x2e62a20207db5b6e3bc0fa77c640f53a11ef1e8d539c42f2e1ba926fb8f6bcf7:log:103', 'hash': '0x2e62a20207db5b6e3bc0fa77c640f53a11ef1e8d539c42f2e1ba926fb8f6bcf7', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:03:21.000Z'}}, {'blockNum': '0xa09332', 'uniqueId': '0x93a4bd6f130e412f0f16cc5a29f76f34922ac200a671872b4f7400e48d1469b5:log:151', 'hash': '0x93a4bd6f130e412f0f16cc5a29f76f34922ac200a671872b4f7400e48d1469b5', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xedc4416096e431d612c098e361f9c95088386765', 'value': 14427.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030e211d408eae560000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:04:02.000Z'}}, {'blockNum': '0xa09334', 'uniqueId': '0xcddbf9d5884f9de142661bdd39a5de51235362b2de43765980e1e17c0137c7d3:log:212', 'hash': '0xcddbf9d5884f9de142661bdd39a5de51235362b2de43765980e1e17c0137c7d3', 'from': '0xa268e17941b52956bf286f844de0326de11d7380', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 28216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05f997a9293995e00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:04:28.000Z'}}, {'blockNum': '0xa09335', 'uniqueId': '0x7ef5f806316e66475ee13859f8a14d74ac8ddb3843d3f9bfd814cc3f11209489:log:93', 'hash': '0x7ef5f806316e66475ee13859f8a14d74ac8ddb3843d3f9bfd814cc3f11209489', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7c762febdc507d84f5cc183dccb6377c16a26b16', 'value': 9684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020cf87f43f812d00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:05:10.000Z'}}, {'blockNum': '0xa09337', 'uniqueId': '0x2e886c83194374217976e5b7a1e30d6c93add7c6a0257be87db59cc67531269f:log:14', 'hash': '0x2e886c83194374217976e5b7a1e30d6c93add7c6a0257be87db59cc67531269f', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x14d23d2e929610bf61a9aa7a63fbcf0dc82169f7', 'value': 67468.0283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e4972fb05ea7dd4c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:05:40.000Z'}}, {'blockNum': '0xa09338', 'uniqueId': '0xbd5a4dd85b41472e63228dd33f57d360fe2556c8615f424c44dd1af7675f4cce:log:77', 'hash': '0xbd5a4dd85b41472e63228dd33f57d360fe2556c8615f424c44dd1af7675f4cce', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 20392.086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0451750adf19104f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:06:17.000Z'}}, {'blockNum': '0xa09338', 'uniqueId': '0xe1155b4adb954dd21f77750acc43e0e4b8b1b197ac6bae5a517400597c736935:log:78', 'hash': '0xe1155b4adb954dd21f77750acc43e0e4b8b1b197ac6bae5a517400597c736935', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 16434.4642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x037aea01c4607a448000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:06:17.000Z'}}, {'blockNum': '0xa09338', 'uniqueId': '0xc9e43e243dfb86781ddfa2759eb6de4f93ffddf8e6f00edff98f988def658cc4:log:79', 'hash': '0xc9e43e243dfb86781ddfa2759eb6de4f93ffddf8e6f00edff98f988def658cc4', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'value': 89744.54062573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x13010fb1142591561400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:06:17.000Z'}}, {'blockNum': '0xa0933d', 'uniqueId': '0x29e877aaa3397fddfd0d262b5af1e6b70f386572294a4b43c469686aa4c508c5:log:9', 'hash': '0x29e877aaa3397fddfd0d262b5af1e6b70f386572294a4b43c469686aa4c508c5', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 9320.088582437773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f93e3631c8116cfa87', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:07:33.000Z'}}, {'blockNum': '0xa09348', 'uniqueId': '0xb29368c54769de639ee270e727119d48d328ec869e2813a379d3798319e76ea5:log:45', 'hash': '0xb29368c54769de639ee270e727119d48d328ec869e2813a379d3798319e76ea5', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 85084.96043007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x12047706c7b539e41c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:09:33.000Z'}}, {'blockNum': '0xa0934a', 'uniqueId': '0xf5bbe1195e33a59f039b738d68e53942e0b2908f55d29d3b830bdf177e88f3d9:log:3', 'hash': '0xf5bbe1195e33a59f039b738d68e53942e0b2908f55d29d3b830bdf177e88f3d9', 'from': '0x274f3c32c90517975e29dfc209a23f315c1e5fc7', 'to': '0x1d1dea5e2dff2c1b87ae449f09c7ea93cb86b828', 'value': 1329.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x481284d601d1d60000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:10:05.000Z'}}, {'blockNum': '0xa0934d', 'uniqueId': '0x7a74e3d2d87198cb78138bf50fb3af57f328aab7151ee7b999b21555fa7ec76b:log:7', 'hash': '0x7a74e3d2d87198cb78138bf50fb3af57f328aab7151ee7b999b21555fa7ec76b', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xe9d4f0df57ae5352efb097e3a1eb3de166d52685', 'value': 22.6845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x013acf888ff7594000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:10:32.000Z'}}, {'blockNum': '0xa0934e', 'uniqueId': '0xfc74bbd200916fe90fb58ed2ccc3f69534532652d7c331711115eb46444fabb4:log:46', 'hash': '0xfc74bbd200916fe90fb58ed2ccc3f69534532652d7c331711115eb46444fabb4', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x04ac42be8c7b4dd9d6e2c3f96677e2c1676364bf', 'value': 14445.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030f1487d9a05eb00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:10:45.000Z'}}, {'blockNum': '0xa09359', 'uniqueId': '0x3d1b8bb1698399c3729920b264c02d4378437f26f2c83aff80a867e134a4b2ac:log:159', 'hash': '0x3d1b8bb1698399c3729920b264c02d4378437f26f2c83aff80a867e134a4b2ac', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 33043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06ff43be16aed06c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:13:54.000Z'}}, {'blockNum': '0xa0935b', 'uniqueId': '0xe0c62905326bec6ab6e42fa7fd92c4fefd0d09638915b669151d3df0385dd151:log:4', 'hash': '0xe0c62905326bec6ab6e42fa7fd92c4fefd0d09638915b669151d3df0385dd151', 'from': '0x274f3c32c90517975e29dfc209a23f315c1e5fc7', 'to': '0x60904a4237ab04d0ff6530dd22101c5bcb4d70fd', 'value': 739.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x281803096e66e80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:14:05.000Z'}}, {'blockNum': '0xa09361', 'uniqueId': '0xbdff207e0b14f12fd6ff46adf3b9be17edb8f11d173ee283a9ddf615332b8f15:log:94', 'hash': '0xbdff207e0b14f12fd6ff46adf3b9be17edb8f11d173ee283a9ddf615332b8f15', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x9ba805247b91cc87c027eb7128c3bba672c486f3', 'value': 778.0959194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2a2e40042a59f99000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:15:23.000Z'}}, {'blockNum': '0xa09367', 'uniqueId': '0xe6b9ce3b1a59b5257a3ce9e688ec72d7c1cf96b3226aae2eca972afc6b5c286d:log:14', 'hash': '0xe6b9ce3b1a59b5257a3ce9e688ec72d7c1cf96b3226aae2eca972afc6b5c286d', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 9320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f93cfb7c8610a00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:16:27.000Z'}}, {'blockNum': '0xa09367', 'uniqueId': '0xd5c0bd7846344b456eaee3f5b18650745bf41ebbfd576832fd7d1b045d9b72b5:log:386', 'hash': '0xd5c0bd7846344b456eaee3f5b18650745bf41ebbfd576832fd7d1b045d9b72b5', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x86778961cb054cc693264bf2021a4e94c61ff9f0', 'value': 3789.1571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xcd691e42a2a14ac000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:16:27.000Z'}}, {'blockNum': '0xa0936d', 'uniqueId': '0x8ef50c98bbb43ddec3e6f147cf4991cff8639e6a93745269393e99419ef7d15f:log:127', 'hash': '0x8ef50c98bbb43ddec3e6f147cf4991cff8639e6a93745269393e99419ef7d15f', 'from': '0xedc4416096e431d612c098e361f9c95088386765', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 14427.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030e211d408eae560000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:17:12.000Z'}}, {'blockNum': '0xa09371', 'uniqueId': '0xa6e41795628c333f178c9c0c952cdb0e4526dd1b17d1ac0edc351413acb08fd6:log:70', 'hash': '0xa6e41795628c333f178c9c0c952cdb0e4526dd1b17d1ac0edc351413acb08fd6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 4127.242121617426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xdfbcfd8a8b8c38ee7b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:17:57.000Z'}}, {'blockNum': '0xa09371', 'uniqueId': '0xa6e41795628c333f178c9c0c952cdb0e4526dd1b17d1ac0edc351413acb08fd6:log:72', 'hash': '0xa6e41795628c333f178c9c0c952cdb0e4526dd1b17d1ac0edc351413acb08fd6', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x6ce21f4505fdb5b2bc704d5173f5ec59968b86ed', 'value': 4127.242121617426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xdfbcfd8a8b8c38ee7b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:17:57.000Z'}}, {'blockNum': '0xa09380', 'uniqueId': '0x9c37f610082b27d64bd7ac49a1d8fe2a4f551f9a155e1208d4497da78fa2919b:log:1', 'hash': '0x9c37f610082b27d64bd7ac49a1d8fe2a4f551f9a155e1208d4497da78fa2919b', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 8984.835957475156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01e711a59b9f5f600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:20:58.000Z'}}, {'blockNum': '0xa0938b', 'uniqueId': '0x5e975677551fa0cb1244dc0b93576b70b995414c290bebafb8b8a134e2c5dc33:log:80', 'hash': '0x5e975677551fa0cb1244dc0b93576b70b995414c290bebafb8b8a134e2c5dc33', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2194aa800da59270eebd4438dbca1c2dc153f05c', 'value': 209598.8349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2c626027cf5427314000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:22:42.000Z'}}, {'blockNum': '0xa0938d', 'uniqueId': '0xa83ef6e2f2b0a713df3e4662a6200902af721b0b932ec9c680fedf86916a0eb7:log:206', 'hash': '0xa83ef6e2f2b0a713df3e4662a6200902af721b0b932ec9c680fedf86916a0eb7', 'from': '0x8a200eff6c4e8ba991a22bac9af26f666500d71c', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1950ed49ba5b6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:23:30.000Z'}}, {'blockNum': '0xa0938d', 'uniqueId': '0x28601c2a1db7802005fe9416c1512b784c68d3303c1ef76af58d0eb42e8937d1:log:207', 'hash': '0x28601c2a1db7802005fe9416c1512b784c68d3303c1ef76af58d0eb42e8937d1', 'from': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 4817.578139350254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01052953c11dbb369ee7', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:23:30.000Z'}}, {'blockNum': '0xa0938d', 'uniqueId': '0x815ca809af728f96f7ebce725300093ede057dfe287acc0fbf5048f19e58a00e:log:208', 'hash': '0x815ca809af728f96f7ebce725300093ede057dfe287acc0fbf5048f19e58a00e', 'from': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 10332.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02301c1445a883040000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:23:30.000Z'}}, {'blockNum': '0xa0938d', 'uniqueId': '0x6d3c1f2100cf52130139c1ada9b74ab2861b2a9050faa3f1ecef0b9bdea42822:log:209', 'hash': '0x6d3c1f2100cf52130139c1ada9b74ab2861b2a9050faa3f1ecef0b9bdea42822', 'from': '0xc3cfe7f716ebd9146d572ece954a7f88d919014c', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 325.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x11a5384d6d55a60000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:23:30.000Z'}}, {'blockNum': '0xa09397', 'uniqueId': '0xb25389fced5c46e175680e7bba849cbc7de62c47b4a87b1109b1777cbcc58122:log:45', 'hash': '0xb25389fced5c46e175680e7bba849cbc7de62c47b4a87b1109b1777cbcc58122', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf2d54c3d1a47a04df02e3c0fe47d271a8daba37e', 'value': 23905.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x050ff125760f7a7f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:25:35.000Z'}}, {'blockNum': '0xa09398', 'uniqueId': '0x5f3f680554f8e89d6c1749250854aeb7c17e942a2ccf5da4b95eff1452444408:log:117', 'hash': '0x5f3f680554f8e89d6c1749250854aeb7c17e942a2ccf5da4b95eff1452444408', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 16857.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0391d8ced7231b760000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:26:05.000Z'}}, {'blockNum': '0xa0939a', 'uniqueId': '0x982b4234f250a8cce90f03cc45491de2dedd5dc4e63066ede015f05a705c94cf:log:61', 'hash': '0x982b4234f250a8cce90f03cc45491de2dedd5dc4e63066ede015f05a705c94cf', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 23101.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04e45029f720685e0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:27:01.000Z'}}, {'blockNum': '0xa093a2', 'uniqueId': '0x32ea721f5b1b203750271776b7485e2de98304bf3b5fc6d7de2cc6fbbcf5678b:log:22', 'hash': '0x32ea721f5b1b203750271776b7485e2de98304bf3b5fc6d7de2cc6fbbcf5678b', 'from': '0x86778961cb054cc693264bf2021a4e94c61ff9f0', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 3789.1571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xcd691e42a2a14ac000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:28:39.000Z'}}, {'blockNum': '0xa093a3', 'uniqueId': '0xba964bd3fe8b41342b1a40a38b447bc2b0e022650b8f2910eb6ba4ce9d43853e:log:44', 'hash': '0xba964bd3fe8b41342b1a40a38b447bc2b0e022650b8f2910eb6ba4ce9d43853e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x3f19beb8dd1ab00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:28:54.000Z'}}, {'blockNum': '0xa093b4', 'uniqueId': '0x6b3b3f79cfb01069bc7e4c4b5524b238065006f26d49ece3e5542afee2db1246:log:346', 'hash': '0x6b3b3f79cfb01069bc7e4c4b5524b238065006f26d49ece3e5542afee2db1246', 'from': '0x2194aa800da59270eebd4438dbca1c2dc153f05c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 209598.8349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2c626027cf5427314000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:32:18.000Z'}}, {'blockNum': '0xa093c6', 'uniqueId': '0xae661830217313654ff3c3c65f96bf8c5a0389b24f0b686f883b1e99c2d4de83:log:156', 'hash': '0xae661830217313654ff3c3c65f96bf8c5a0389b24f0b686f883b1e99c2d4de83', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 14355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030a2fa4dbf34c6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:37:06.000Z'}}, {'blockNum': '0xa09405', 'uniqueId': '0x0be69b00e23412c624303b1437b30e77f9032074d5fe43e01a85ea7425605ad7:log:109', 'hash': '0x0be69b00e23412c624303b1437b30e77f9032074d5fe43e01a85ea7425605ad7', 'from': '0x04ac42be8c7b4dd9d6e2c3f96677e2c1676364bf', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 14445.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030f1487d9a05eb00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:53:17.000Z'}}, {'blockNum': '0xa09409', 'uniqueId': '0x0d65cfad023308ad0354e3f2aa694ad1a47967efa001415a1df2af6d06c81803:log:31', 'hash': '0x0d65cfad023308ad0354e3f2aa694ad1a47967efa001415a1df2af6d06c81803', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 11060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02579055499bcc500000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:54:36.000Z'}}, {'blockNum': '0xa0940b', 'uniqueId': '0x15ebe29e02e77739af4543ba312a908e6b2002806f0a6e75d28d0af1cd9a2253:log:6', 'hash': '0x15ebe29e02e77739af4543ba312a908e6b2002806f0a6e75d28d0af1cd9a2253', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x2a023b4045aa6770e76936f77816742b2ed074a4', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2e963951560b51800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:55:06.000Z'}}, {'blockNum': '0xa0940d', 'uniqueId': '0x38b0c5b45068be897603ef9f08e55d9675422a6f1198dbb8d2601d4152fb5641:log:79', 'hash': '0x38b0c5b45068be897603ef9f08e55d9675422a6f1198dbb8d2601d4152fb5641', 'from': '0x14d23d2e929610bf61a9aa7a63fbcf0dc82169f7', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 67468.0283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e4972fb05ea7dd4c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:55:25.000Z'}}, {'blockNum': '0xa09436', 'uniqueId': '0xa6d67849b79b5af94734302502e97f44cf6acabe76f31d1476614aa5a9c4149b:log:253', 'hash': '0xa6d67849b79b5af94734302502e97f44cf6acabe76f31d1476614aa5a9c4149b', 'from': '0xb1eeecece92d95b3fe1fcd77a299b1e2ac0782f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 91345.2227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1357d59e2deb101ec000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:04:39.000Z'}}, {'blockNum': '0xa09437', 'uniqueId': '0x50586cc11f43956c933766f5e80280432db99e156024b9559814dfe7236ac908:log:211', 'hash': '0x50586cc11f43956c933766f5e80280432db99e156024b9559814dfe7236ac908', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33497.60137238034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0717e89a9a480fd6ab05', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:04:50.000Z'}}, {'blockNum': '0xa09447', 'uniqueId': '0x83fd5f86eeee4e2d53085d55c48a5dcacdb625ac286c17d99c7c769f04c04240:log:69', 'hash': '0x83fd5f86eeee4e2d53085d55c48a5dcacdb625ac286c17d99c7c769f04c04240', 'from': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'to': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'value': 1241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x434655ace673c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:08:33.000Z'}}, {'blockNum': '0xa09463', 'uniqueId': '0x2cb4e49882b8bf32d38eebc7d5c501c2d0d6e2fe9752e3b75ca3761db38e6f7c:log:156', 'hash': '0x2cb4e49882b8bf32d38eebc7d5c501c2d0d6e2fe9752e3b75ca3761db38e6f7c', 'from': '0x49f52c2f9a29be529db99fc15944a1730215a94d', 'to': '0x2c22bf99552f6a08d3b476ea98d2f2bdf32c0050', 'value': 42.2041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0249b31557d5104000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:13:51.000Z'}}, {'blockNum': '0xa0946b', 'uniqueId': '0x6df26e85916f1eb8ae6ed2471d819958c2d1609df54f2722aa6ccf0dd4f8e843:log:130', 'hash': '0x6df26e85916f1eb8ae6ed2471d819958c2d1609df54f2722aa6ccf0dd4f8e843', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xfb90fb348c8e4593e92b9aceb204abf75c85e297', 'value': 701.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x26088463d11e4f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:16:16.000Z'}}, {'blockNum': '0xa0946d', 'uniqueId': '0x04302d2da048d7cec918851247c5fdfc3eb37588368445e926d8a17d8cbfb3c7:log:5', 'hash': '0x04302d2da048d7cec918851247c5fdfc3eb37588368445e926d8a17d8cbfb3c7', 'from': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x434655ace673c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:16:55.000Z'}}, {'blockNum': '0xa09472', 'uniqueId': '0x23ec3f085dbcb5047c6e98086799e669d298196dd9f19b2ece29c2fb5e3c3faf:log:129', 'hash': '0x23ec3f085dbcb5047c6e98086799e669d298196dd9f19b2ece29c2fb5e3c3faf', 'from': '0xfb90fb348c8e4593e92b9aceb204abf75c85e297', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x26005449f15cd40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:18:08.000Z'}}, {'blockNum': '0xa09504', 'uniqueId': '0x7e7d00f627f7bee353fe1d3452dfab2b7641187f26a5884b3124bb02e71e3d51:log:60', 'hash': '0x7e7d00f627f7bee353fe1d3452dfab2b7641187f26a5884b3124bb02e71e3d51', 'from': '0x593065a46a507dc0da5146020efc1476067aab8c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06f3ef48ee0327c80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:47:12.000Z'}}, {'blockNum': '0xa09504', 'uniqueId': '0x6d907917a02e4915bab2787056ea911fa41d2e2811b536103b123f203b097001:log:220', 'hash': '0x6d907917a02e4915bab2787056ea911fa41d2e2811b536103b123f203b097001', 'from': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 155496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x20ed747e32e21ca00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:47:12.000Z'}}, {'blockNum': '0xa09508', 'uniqueId': '0x518293516cb5464111e2bc58b65bc70c1b58f92b867ff0dd89f075b181b6b910:log:251', 'hash': '0x518293516cb5464111e2bc58b65bc70c1b58f92b867ff0dd89f075b181b6b910', 'from': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 112953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x17eb31c4295b89440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:48:08.000Z'}}, {'blockNum': '0xa09508', 'uniqueId': '0xc2c239366838104592b1073ee8b314c1a88b3a0ee5602f034658b6e618921c51:log:287', 'hash': '0xc2c239366838104592b1073ee8b314c1a88b3a0ee5602f034658b6e618921c51', 'from': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 106807.9018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x169e1165ba954cee8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:48:08.000Z'}}, {'blockNum': '0xa0950a', 'uniqueId': '0xd47055806fd2f1c33135509c65a8cd8091ede5987680e9a4c31c23651c2599d2:log:89', 'hash': '0xd47055806fd2f1c33135509c65a8cd8091ede5987680e9a4c31c23651c2599d2', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75549.984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fff92a597078d500000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:48:22.000Z'}}, {'blockNum': '0xa0950a', 'uniqueId': '0xe8f4de48c420dcaad541384baf0385cf9cbb13d78d3e2a87920784daf37f2353:log:135', 'hash': '0xe8f4de48c420dcaad541384baf0385cf9cbb13d78d3e2a87920784daf37f2353', 'from': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0b2c8f1b672764800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:48:22.000Z'}}, {'blockNum': '0xa09513', 'uniqueId': '0x86a29af1b85670bf7cb3eb6ecfed4465ac0c79e11cedbe5dde2032450ab5fb25:log:123', 'hash': '0x86a29af1b85670bf7cb3eb6ecfed4465ac0c79e11cedbe5dde2032450ab5fb25', 'from': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 89744.54062573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x13010fb1142591561400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:50:04.000Z'}}, {'blockNum': '0xa09517', 'uniqueId': '0x49c2a10a0204a1404229bba5573a25dddf24205df7976f917a7fa4a44138e0f1:log:43', 'hash': '0x49c2a10a0204a1404229bba5573a25dddf24205df7976f917a7fa4a44138e0f1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc3efb06951655e3cbb8bc10421f74c931958cafe', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:50:26.000Z'}}, {'blockNum': '0xa0954a', 'uniqueId': '0x549181228a45b515f0ae5508797588231c77bae423d37082ef976f4d578dcd74:log:83', 'hash': '0x549181228a45b515f0ae5508797588231c77bae423d37082ef976f4d578dcd74', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xbca2953830044a94bce5491604e775417e8528fd', 'value': 63.518337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03717e76f7888d1000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:00:20.000Z'}}, {'blockNum': '0xa09555', 'uniqueId': '0x5a42d08cee51ecb9599c87f3f25a216fff48645c17519c7e7f8a0002db131643:log:187', 'hash': '0x5a42d08cee51ecb9599c87f3f25a216fff48645c17519c7e7f8a0002db131643', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2a3e165fe0ba4e6e1b876d89137ecfd0df31f95d', 'value': 67161.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e38d8a3e44012498000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:02:32.000Z'}}, {'blockNum': '0xa09564', 'uniqueId': '0x72101008fb132f7832a86d4a402c0b6b4b41a936f3fed78773089a9967c60ace:log:10', 'hash': '0x72101008fb132f7832a86d4a402c0b6b4b41a936f3fed78773089a9967c60ace', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 5915.01700533781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0140a759d34062f6dc3b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:05:37.000Z'}}, {'blockNum': '0xa0956d', 'uniqueId': '0xa7d559016ccb3403b328d305d18c915a6691301d42ba2240a59d465870d979a7:log:9', 'hash': '0xa7d559016ccb3403b328d305d18c915a6691301d42ba2240a59d465870d979a7', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xd9227fdb1893b1470bb750782d29270592c6888b', 'value': 25787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0575ea83a29e560c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:06:31.000Z'}}, {'blockNum': '0xa09570', 'uniqueId': '0x392519d286940bf7a4f89aaa19c966d7970d84502829fec4de871f7f0b755fea:log:260', 'hash': '0x392519d286940bf7a4f89aaa19c966d7970d84502829fec4de871f7f0b755fea', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2d3ae3a093e4692d233df9e4a304a640e00df23f', 'value': 23408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04f4f341cb19c7c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:06:49.000Z'}}, {'blockNum': '0xa09570', 'uniqueId': '0x920c09fe8d02e83c845f3d0ea5ad048e3619f138e0589d344ee5a0b7aab661ed:log:264', 'hash': '0x920c09fe8d02e83c845f3d0ea5ad048e3619f138e0589d344ee5a0b7aab661ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf2d54c3d1a47a04df02e3c0fe47d271a8daba37e', 'value': 23952.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0512734585e957d20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:06:49.000Z'}}, {'blockNum': '0xa09570', 'uniqueId': '0x45575dc06ee4f9b263302778e80afc4e3a99517b4ff6abfb71a3f7c834c459ea:log:265', 'hash': '0x45575dc06ee4f9b263302778e80afc4e3a99517b4ff6abfb71a3f7c834c459ea', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc3efb06951655e3cbb8bc10421f74c931958cafe', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:06:49.000Z'}}, {'blockNum': '0xa09584', 'uniqueId': '0x62e0b5838067a29ab4ede0730bb6e459bf8e5714c4fc75910958ce1b301c5b88:log:124', 'hash': '0x62e0b5838067a29ab4ede0730bb6e459bf8e5714c4fc75910958ce1b301c5b88', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb5fd7226a411c2f2063dcad2a23730b506c7084c', 'value': 350, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x12f939c99edab80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:11:46.000Z'}}, {'blockNum': '0xa09592', 'uniqueId': '0x52096f0cd3afb9ec712c4fca195ff0cb4430d6abf36c214b5ee8be8353e0285b:log:92', 'hash': '0x52096f0cd3afb9ec712c4fca195ff0cb4430d6abf36c214b5ee8be8353e0285b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x014cf55f6a4a11380000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:15:55.000Z'}}, {'blockNum': '0xa095b2', 'uniqueId': '0xb111f83d30993d302db678a4bbb7b1d916d42489a7fdecd5064dac12b3b3ae67:log:137', 'hash': '0xb111f83d30993d302db678a4bbb7b1d916d42489a7fdecd5064dac12b3b3ae67', 'from': '0xb5fd7226a411c2f2063dcad2a23730b506c7084c', 'to': '0x4305ead3fb3c132882e89a268a24ce38fe10bc58', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:20:43.000Z'}}, {'blockNum': '0xa095c3', 'uniqueId': '0xbd8a01d8d7bba60a570c9ab62776c7ae828dd48041b193769bb711b2b82d4532:log:55', 'hash': '0xbd8a01d8d7bba60a570c9ab62776c7ae828dd48041b193769bb711b2b82d4532', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 119999.99997409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x196936895d2fb6a76400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:24:03.000Z'}}, {'blockNum': '0xa095c3', 'uniqueId': '0x2717398bce19439a5eb5688232279d44431d9aca0cd8d857ca8dae97d135cc1b:log:56', 'hash': '0x2717398bce19439a5eb5688232279d44431d9aca0cd8d857ca8dae97d135cc1b', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 102878.02855642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x15c907734ce872e02800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:24:03.000Z'}}, {'blockNum': '0xa095c5', 'uniqueId': '0x89b2059326098bed40b18855609b03f897d985b8f577c46c5187835526fcc1a1:log:51', 'hash': '0x89b2059326098bed40b18855609b03f897d985b8f577c46c5187835526fcc1a1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 20790.5192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04670e69f382227a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:24:55.000Z'}}, {'blockNum': '0xa095e5', 'uniqueId': '0x1e79e86e044d99cb092d4c5b33e0fa4524bf53fea983d8b678c6d8d110e3d52d:log:66', 'hash': '0x1e79e86e044d99cb092d4c5b33e0fa4524bf53fea983d8b678c6d8d110e3d52d', 'from': '0x96fd8f0e71c4b77f2dc4d755ec5218f2cf4590fd', 'to': '0x1fb84d8aadf3e1b27c76eaf7a231012d1c13e7e1', 'value': 575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1f2bba5d84f99c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:32:34.000Z'}}, {'blockNum': '0xa095ed', 'uniqueId': '0xa450ed3db1ee454869930dfa3834048d7f3531dfdfe2d8a454e5e76dd1132ff6:log:119', 'hash': '0xa450ed3db1ee454869930dfa3834048d7f3531dfdfe2d8a454e5e76dd1132ff6', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 20790.5192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04670e69f382227a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:33:54.000Z'}}, {'blockNum': '0xa095ef', 'uniqueId': '0x99f2380ec381f71a39103bbe075e49eed2ac432b4e11780263e4506223a458f6:log:29', 'hash': '0x99f2380ec381f71a39103bbe075e49eed2ac432b4e11780263e4506223a458f6', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 20790.5192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04670e69f382227a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:34:11.000Z'}}, {'blockNum': '0xa09634', 'uniqueId': '0x140996e2ab689f299678177a72410a2f39242408c84b1b717d713b21d007a1cb:log:73', 'hash': '0x140996e2ab689f299678177a72410a2f39242408c84b1b717d713b21d007a1cb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 16116.8704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0369b281edf5ffd00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:49:59.000Z'}}, {'blockNum': '0xa0963f', 'uniqueId': '0x7dae413e7430103996869b92283c7b0f32e41243003f54ba7c5bbe151bcb22a8:log:60', 'hash': '0x7dae413e7430103996869b92283c7b0f32e41243003f54ba7c5bbe151bcb22a8', 'from': '0xbc87965ca0f6c46cb24b2202b6ae03c82156008c', 'to': '0xf82f1b81527be8adb2016802454cc1166c0a0b60', 'value': 97.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x054ea2ab4db6be0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:53:01.000Z'}}, {'blockNum': '0xa09654', 'uniqueId': '0xe035cf877e34f712319136ef89e563b17e878d34ee17bdc80c78d1781fbc8327:log:27', 'hash': '0xe035cf877e34f712319136ef89e563b17e878d34ee17bdc80c78d1781fbc8327', 'from': '0xf82f1b81527be8adb2016802454cc1166c0a0b60', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 97.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x054ea2ab4db6be0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:56:42.000Z'}}, {'blockNum': '0xa09659', 'uniqueId': '0x823245ec9e0e5dea2f24308434f4c704c530cb5091a8c1c8518ae0989604bc35:log:27', 'hash': '0x823245ec9e0e5dea2f24308434f4c704c530cb5091a8c1c8518ae0989604bc35', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 8767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01db4290d271799c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:57:06.000Z'}}, {'blockNum': '0xa0965b', 'uniqueId': '0xf891eff7cf2fba8ff5e615ce34e3457c194b21d9ced6e87588ef717d7644574a:log:236', 'hash': '0xf891eff7cf2fba8ff5e615ce34e3457c194b21d9ced6e87588ef717d7644574a', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 16116.8704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0369b281edf5ffd00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:57:29.000Z'}}, {'blockNum': '0xa0965c', 'uniqueId': '0x425ebe532f1d6ea5cc40ce0ab636d50f2f9cc78fb7b886c4e336b5839c3b159f:log:0', 'hash': '0x425ebe532f1d6ea5cc40ce0ab636d50f2f9cc78fb7b886c4e336b5839c3b159f', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 16116.8704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0369b281edf5ffd00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:58:16.000Z'}}, {'blockNum': '0xa09660', 'uniqueId': '0xd91175eb3574e70af0a4dfd72755053ea052ab373b1b7faeb45a4d74bbe0de7a:log:257', 'hash': '0xd91175eb3574e70af0a4dfd72755053ea052ab373b1b7faeb45a4d74bbe0de7a', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 11551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02722e53b42dd91c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:00:32.000Z'}}, {'blockNum': '0xa09662', 'uniqueId': '0x3389754e8f9969e97eee6b2f3eb2b9f59d9e8b88cc7c0a0cb2bd74bd665c07cf:log:188', 'hash': '0x3389754e8f9969e97eee6b2f3eb2b9f59d9e8b88cc7c0a0cb2bd74bd665c07cf', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'value': 2089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x713eb2e000ef040000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:00:48.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:37', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x81dcaf33ac0aaa9d5f58eb20cdc81a38620d814f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:38', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:40', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'to': '0xef7c96ac993fa077035c65581253f43b9814e3b4', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:42', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0xef7c96ac993fa077035c65581253f43b9814e3b4', 'to': '0x9021c84f3900b610ab8625d26d739e3b7bff86ab', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:44', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x9021c84f3900b610ab8625d26d739e3b7bff86ab', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:45', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096e3', 'uniqueId': '0x3cb6076b56d5bba8d88178a68c3c4e3b0010976121391eb2dac963f1bd037b6a:log:23', 'hash': '0x3cb6076b56d5bba8d88178a68c3c4e3b0010976121391eb2dac963f1bd037b6a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'value': 109987.99996106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761ff72f6331e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:30:39.000Z'}}, {'blockNum': '0xa096e6', 'uniqueId': '0x49c16cd4e703c1d80ce798f39cbd29460c7ef7df153e3cd92ee2f80c51665a3a:log:126', 'hash': '0x49c16cd4e703c1d80ce798f39cbd29460c7ef7df153e3cd92ee2f80c51665a3a', 'from': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x071964d614effab40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:30:59.000Z'}}, {'blockNum': '0xa09709', 'uniqueId': '0x32902c25118a6875a3d90441aef77fdaeba9beb1ff4f116c0033f755dee19124:log:149', 'hash': '0x32902c25118a6875a3d90441aef77fdaeba9beb1ff4f116c0033f755dee19124', 'from': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 109987.99996106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761ff72f6331e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:38:23.000Z'}}, {'blockNum': '0xa0970f', 'uniqueId': '0x83b8a5280158a29651ab604a27cd01331f327071bad41bac2a68ec25de89778f:log:0', 'hash': '0x83b8a5280158a29651ab604a27cd01331f327071bad41bac2a68ec25de89778f', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 109987.99996106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761ff72f6331e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:39:31.000Z'}}, {'blockNum': '0xa0971d', 'uniqueId': '0xff5a705e0c129be60eeb41fc2782d7a8ec7df66a3bb83c39f71719693f5f9076:log:40', 'hash': '0xff5a705e0c129be60eeb41fc2782d7a8ec7df66a3bb83c39f71719693f5f9076', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd988784f42430342ff4fedadc661aa59574f5136', 'value': 321.2266561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1169ea55ca8b10e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:42:14.000Z'}}, {'blockNum': '0xa097b6', 'uniqueId': '0x686e46b24f683e57d346435902cf1c7b03caa231419a16e0659488fb97a0777c:log:4', 'hash': '0x686e46b24f683e57d346435902cf1c7b03caa231419a16e0659488fb97a0777c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 109987.9999248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761fd634f2c68000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:14:04.000Z'}}, {'blockNum': '0xa097e3', 'uniqueId': '0x98d9973f2e9f9173b1a790d93dbfc3e7bb5b20e91a1c83119e156885c9232a42:log:11', 'hash': '0x98d9973f2e9f9173b1a790d93dbfc3e7bb5b20e91a1c83119e156885c9232a42', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 100127.61915704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1533edda3477267de000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:21:36.000Z'}}, {'blockNum': '0xa097fa', 'uniqueId': '0x1d5ed1bb602b2eb1b160ac4abaa70ccf52c80538894eaf4282fc7ee1f00a2966:log:47', 'hash': '0x1d5ed1bb602b2eb1b160ac4abaa70ccf52c80538894eaf4282fc7ee1f00a2966', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 109987.9999248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761fd634f2c68000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:26:49.000Z'}}, {'blockNum': '0xa097fc', 'uniqueId': '0x31eb7b7e9944e6b5f44bd61db092bc584b46df7e776c9cf9e23582888e33c3ec:log:111', 'hash': '0x31eb7b7e9944e6b5f44bd61db092bc584b46df7e776c9cf9e23582888e33c3ec', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 4802.38649999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01045680359b536c5c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:28:16.000Z'}}, {'blockNum': '0xa0982d', 'uniqueId': '0x43d211598b2add5cdb511682975ac280b8d872de001e49acd4d4976939c06ff3:log:144', 'hash': '0x43d211598b2add5cdb511682975ac280b8d872de001e49acd4d4976939c06ff3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x444f8a1d7e5c13d1bd856206f38eb415091623f0', 'value': 4802.38649999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01045680359b536c5c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:37:15.000Z'}}, {'blockNum': '0xa098d1', 'uniqueId': '0x95afb0c031e1c73d1ed503fc0d8c4a71dcb839e6572b0390d4760764cdc7c2b5:log:13', 'hash': '0x95afb0c031e1c73d1ed503fc0d8c4a71dcb839e6572b0390d4760764cdc7c2b5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 25662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x056f23ca6ce59a380000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:15:15.000Z'}}, {'blockNum': '0xa098f9', 'uniqueId': '0x0b53c95a456519db1dcc7a0f2c26b77cf8e4ed17409ac5a76af829914783967c:log:81', 'hash': '0x0b53c95a456519db1dcc7a0f2c26b77cf8e4ed17409ac5a76af829914783967c', 'from': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x713eb2e000ef040000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:24:40.000Z'}}, {'blockNum': '0xa09919', 'uniqueId': '0x8ac4066208cd0f3079eb0cacb38a5878a6b48b936769c8c62340b1fbfe223ae7:log:26', 'hash': '0x8ac4066208cd0f3079eb0cacb38a5878a6b48b936769c8c62340b1fbfe223ae7', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 15637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x034faef7cb9f8f340000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:32:14.000Z'}}, {'blockNum': '0xa0992f', 'uniqueId': '0x3ae9bc4705a8766d4fff57d147877dbb6e66d95454ee12c4c41ebde012f70824:log:85', 'hash': '0x3ae9bc4705a8766d4fff57d147877dbb6e66d95454ee12c4c41ebde012f70824', 'from': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'to': '0x1476ac3a5fe25c2a5edf4889b877f4f9639b8a21', 'value': 186.73247743936523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a1f6f06e14a01f9f9', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:36:17.000Z'}}, {'blockNum': '0xa09966', 'uniqueId': '0xebbde5142610efb8af1d06e1990c7dc93363a598edbb561ad3034b04a800dd78:log:39', 'hash': '0xebbde5142610efb8af1d06e1990c7dc93363a598edbb561ad3034b04a800dd78', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 18158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03d858defacaf6f80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:51:34.000Z'}}, {'blockNum': '0xa0998f', 'uniqueId': '0xcb7252ac653522fab6ff0258678a8b0d58eea222a63cc9970135be1a1e2360a2:log:46', 'hash': '0xcb7252ac653522fab6ff0258678a8b0d58eea222a63cc9970135be1a1e2360a2', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:58:50.000Z'}}, {'blockNum': '0xa099b3', 'uniqueId': '0x782b3602c4155a3dcda4c99b3ddc67fcfeb18a09b9331b1075db6a6267463c17:log:59', 'hash': '0x782b3602c4155a3dcda4c99b3ddc67fcfeb18a09b9331b1075db6a6267463c17', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:06:45.000Z'}}, {'blockNum': '0xa09a0e', 'uniqueId': '0x22375eb351d45dc5914064187d8ec2d8ffa5abd44b73f81b20d5c2ba8a566aa1:log:32', 'hash': '0x22375eb351d45dc5914064187d8ec2d8ffa5abd44b73f81b20d5c2ba8a566aa1', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 14355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030a2fa4dbf34c6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:28:47.000Z'}}, {'blockNum': '0xa09a1d', 'uniqueId': '0xeafabed1c005f9caaf12dafa298e345f345b22714ad0e14e69cf0f58e2dcbe16:log:63', 'hash': '0xeafabed1c005f9caaf12dafa298e345f345b22714ad0e14e69cf0f58e2dcbe16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2a3e165fe0ba4e6e1b876d89137ecfd0df31f95d', 'value': 17694.276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03bf356861b537ba0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:31:25.000Z'}}, {'blockNum': '0xa09a24', 'uniqueId': '0x867fe9f2751c042d1d46ede716a67caed7140024d800637c1b4b4f5bd2bd99af:log:41', 'hash': '0x867fe9f2751c042d1d46ede716a67caed7140024d800637c1b4b4f5bd2bd99af', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xedc4416096e431d612c098e361f9c95088386765', 'value': 12956.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02be60aaff18daaa0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:33:12.000Z'}}, {'blockNum': '0xa09a24', 'uniqueId': '0x7b93bf21ecb4c3cbf2896df8ea19c74e050fa387c0aea3175b3146907962ab3e:log:209', 'hash': '0x7b93bf21ecb4c3cbf2896df8ea19c74e050fa387c0aea3175b3146907962ab3e', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 54880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0b9f0cfeb14c5d800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:33:12.000Z'}}, {'blockNum': '0xa09a2d', 'uniqueId': '0x70a5308716e1847560c726b467414f79f2c177decbd6ab5579691ff338b5be26:log:117', 'hash': '0x70a5308716e1847560c726b467414f79f2c177decbd6ab5579691ff338b5be26', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 12424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a181a2bed3ad200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:35:45.000Z'}}, {'blockNum': '0xa09a32', 'uniqueId': '0xdc6b9bef512acfb29ae77d522874c8788269a00b62241bf44fc024dc9e9d8b92:log:40', 'hash': '0xdc6b9bef512acfb29ae77d522874c8788269a00b62241bf44fc024dc9e9d8b92', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 7163.712975254245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0184587d140405f44d54', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:37:47.000Z'}}, {'blockNum': '0xa09a49', 'uniqueId': '0x5614099557b60a06e15db28110eb50f61c276c3c74333bf6e319cdc7771ab1b2:log:28', 'hash': '0x5614099557b60a06e15db28110eb50f61c276c3c74333bf6e319cdc7771ab1b2', 'from': '0xedc4416096e431d612c098e361f9c95088386765', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 12956.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02be60aaff18daaa0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:42:44.000Z'}}, {'blockNum': '0xa09a52', 'uniqueId': '0x14f1f66f9946234c3a5ef7b95af3b0b7da647d87860fa5fddcab7347f14d9af9:log:20', 'hash': '0x14f1f66f9946234c3a5ef7b95af3b0b7da647d87860fa5fddcab7347f14d9af9', 'from': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 12424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a181a2bed3ad200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:43:35.000Z'}}, {'blockNum': '0xa09a73', 'uniqueId': '0x3c0312aaad0f10bb11719a7945c3743170586ed0bed2d7c47430063694d26864:log:79', 'hash': '0x3c0312aaad0f10bb11719a7945c3743170586ed0bed2d7c47430063694d26864', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 220.49416045385826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0bf3f89eb464344bae', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:47:54.000Z'}}, {'blockNum': '0xa09a73', 'uniqueId': '0x3c0312aaad0f10bb11719a7945c3743170586ed0bed2d7c47430063694d26864:log:81', 'hash': '0x3c0312aaad0f10bb11719a7945c3743170586ed0bed2d7c47430063694d26864', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0xfa2cf9a3b971e9c8b975118a18293447ae3bd84a', 'value': 220.49416045385826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0bf3f89eb464344bae', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:47:54.000Z'}}, {'blockNum': '0xa09a7c', 'uniqueId': '0x71d857bb0f4c99103f9818bcf31879da21cc577b2441ffedd4efbb805d97d669:log:58', 'hash': '0x71d857bb0f4c99103f9818bcf31879da21cc577b2441ffedd4efbb805d97d669', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5f86fe0e62d1f0226f535ebe5d98a5d3edc9a615', 'value': 63747.541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d7fc2d8e68d71a88000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:50:15.000Z'}}, {'blockNum': '0xa09a7e', 'uniqueId': '0x62388eb9e020759b31354fa565627a1f3ac153f520a3a845c2b7ee728600d3bb:log:1', 'hash': '0x62388eb9e020759b31354fa565627a1f3ac153f520a3a845c2b7ee728600d3bb', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 10169.367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022748513ee26bd58000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:50:42.000Z'}}, {'blockNum': '0xa09a84', 'uniqueId': '0xa7d72b1e4f02f908aa3daf747f39dc1cbc6d77df2b30880918ed3af5e05a5b65:log:74', 'hash': '0xa7d72b1e4f02f908aa3daf747f39dc1cbc6d77df2b30880918ed3af5e05a5b65', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 8723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01d8dff16b90b46c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:51:38.000Z'}}, {'blockNum': '0xa09a86', 'uniqueId': '0x5e2ca350a345cacc0ba173b8aa5c4b43a23e09bbf3515c540b8db58ca4b8af93:log:113', 'hash': '0x5e2ca350a345cacc0ba173b8aa5c4b43a23e09bbf3515c540b8db58ca4b8af93', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'value': 1446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x4e6347fac37ed80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:52:18.000Z'}}, {'blockNum': '0xa09aaa', 'uniqueId': '0xd30227661064283949dc20481184c53d6afd39ccbe7f28d439830bb67ce05978:log:185', 'hash': '0xd30227661064283949dc20481184c53d6afd39ccbe7f28d439830bb67ce05978', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 8723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01d8dff16b90b46c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:02:02.000Z'}}, {'blockNum': '0xa09abc', 'uniqueId': '0x2d765d5adfb47664730a8e10d2e06e4ef187debe324ff054aebdd69aad2cbacd:log:140', 'hash': '0x2d765d5adfb47664730a8e10d2e06e4ef187debe324ff054aebdd69aad2cbacd', 'from': '0x5f86fe0e62d1f0226f535ebe5d98a5d3edc9a615', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 63747.541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d7fc2d8e68d71a88000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:05:48.000Z'}}, {'blockNum': '0xa09abf', 'uniqueId': '0x86180e6d612f7694c84bb8f8be173d2f874857ffc5a22d8d6c312e148f47ce1a:log:12', 'hash': '0x86180e6d612f7694c84bb8f8be173d2f874857ffc5a22d8d6c312e148f47ce1a', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:06:12.000Z'}}, {'blockNum': '0xa09acc', 'uniqueId': '0x57eb7fa7c62feb8f37e707178e42f3523a6675af52550259fb09b81b2e4dde27:log:1', 'hash': '0x57eb7fa7c62feb8f37e707178e42f3523a6675af52550259fb09b81b2e4dde27', 'from': '0x1528d286b3c434c41062792ff8e7d67e313db2dd', 'to': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'value': 1500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x013da329b6336471800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:09:29.000Z'}}, {'blockNum': '0xa09ad2', 'uniqueId': '0xe671dff4bb9e1d88be9eb11c041f029f3804839e3102fb14b4f3f3101913f0aa:log:48', 'hash': '0xe671dff4bb9e1d88be9eb11c041f029f3804839e3102fb14b4f3f3101913f0aa', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 20242.6607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04495b59906fe421c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:12:31.000Z'}}, {'blockNum': '0xa09ad3', 'uniqueId': '0x9082150c24c7b752ae561d38c722ecddc29b87ca0f79763317083b0f22aacb72:log:103', 'hash': '0x9082150c24c7b752ae561d38c722ecddc29b87ca0f79763317083b0f22aacb72', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'value': 1230.8031609074235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x42b8d339c54aecc892', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:12:58.000Z'}}, {'blockNum': '0xa09ae0', 'uniqueId': '0x60cb6b5e0ee5469a6ed2dd3458e133a0dfdd5f17c2a445105f3b7cf7344f2bc2:log:90', 'hash': '0x60cb6b5e0ee5469a6ed2dd3458e133a0dfdd5f17c2a445105f3b7cf7344f2bc2', 'from': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'to': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'value': 1231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x42bb8e89e1e9dc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:15:18.000Z'}}, {'blockNum': '0xa09ae3', 'uniqueId': '0x3cae3b4e3ce49cef8a7e84ee3393765cd75bc4a642826d45211ebdd2d175c2e7:log:180', 'hash': '0x3cae3b4e3ce49cef8a7e84ee3393765cd75bc4a642826d45211ebdd2d175c2e7', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:16:22.000Z'}}, {'blockNum': '0xa09ae4', 'uniqueId': '0xde0249e651f162a86f971c862c3a9a453ac0394ef1fd526a3bcad27ec2d61d62:log:72', 'hash': '0xde0249e651f162a86f971c862c3a9a453ac0394ef1fd526a3bcad27ec2d61d62', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 4879.090318852932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01087efaea77e4645270', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:16:26.000Z'}}, {'blockNum': '0xa09ae4', 'uniqueId': '0xb48cbdffc4acc1736d7f051a1ccdf7f0b223dfc7f4715138be569f0f56cda7a4:log:95', 'hash': '0xb48cbdffc4acc1736d7f051a1ccdf7f0b223dfc7f4715138be569f0f56cda7a4', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x04ac42be8c7b4dd9d6e2c3f96677e2c1676364bf', 'value': 14411.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030d3dcbcd57a1700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:16:26.000Z'}}, {'blockNum': '0xa09ae6', 'uniqueId': '0xef78e82f5a74f4e83eb52ab0814e2c2bdac6db1347c3dd099a50ae7ec74bbe71:log:18', 'hash': '0xef78e82f5a74f4e83eb52ab0814e2c2bdac6db1347c3dd099a50ae7ec74bbe71', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 4869.332138215228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0107f78ee4e11ff00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:17:11.000Z'}}, {'blockNum': '0xa09aef', 'uniqueId': '0xcf7c38c2925fb1bc903d6a4ca213b9b2a67c9f4b4f4d50a9fa397c792dae287a:log:77', 'hash': '0xcf7c38c2925fb1bc903d6a4ca213b9b2a67c9f4b4f4d50a9fa397c792dae287a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 12455.9706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a33d512223ad3a8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:19:02.000Z'}}, {'blockNum': '0xa09aef', 'uniqueId': '0xcbfee4b22dadbab393e1d665e1df8b1aeed4ceb75c86687a7f80370639d5969e:log:95', 'hash': '0xcbfee4b22dadbab393e1d665e1df8b1aeed4ceb75c86687a7f80370639d5969e', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'value': 51505.2098096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0ae81a5f6b88c49b8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:19:02.000Z'}}, {'blockNum': '0xa09afd', 'uniqueId': '0xc980a5f8a5e0892e28b3a5ca1a884eb634efec14d8ba58178c319500991c0979:log:53', 'hash': '0xc980a5f8a5e0892e28b3a5ca1a884eb634efec14d8ba58178c319500991c0979', 'from': '0xe2df1c049d724c24f125d3b2845298b9080ea84b', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0c93a592cfb2a00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:22:12.000Z'}}, {'blockNum': '0xa09afd', 'uniqueId': '0xc980a5f8a5e0892e28b3a5ca1a884eb634efec14d8ba58178c319500991c0979:log:54', 'hash': '0xc980a5f8a5e0892e28b3a5ca1a884eb634efec14d8ba58178c319500991c0979', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0c93a592cfb2a00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:22:12.000Z'}}, {'blockNum': '0xa09b03', 'uniqueId': '0xcc243635d98b6e567a8967839663c6637181d7eb4e227011ace5332d947943f9:log:260', 'hash': '0xcc243635d98b6e567a8967839663c6637181d7eb4e227011ace5332d947943f9', 'from': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x42bb8e89e1e9dc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:22:57.000Z'}}, {'blockNum': '0xa09b0b', 'uniqueId': '0x227cc804e649c38ec9b5959ee6868ffa6f8ac8e2e8f34ca00a490d83d955e5f2:log:194', 'hash': '0x227cc804e649c38ec9b5959ee6868ffa6f8ac8e2e8f34ca00a490d83d955e5f2', 'from': '0x96a15af55a5bac6d635f15d7ad9dfb3888950702', 'to': '0x51857761dfb5bdced0b0cfcbcef651de796dd688', 'value': 2610.919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8d89c7a5421e1d8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:24:23.000Z'}}, {'blockNum': '0xa09b15', 'uniqueId': '0x1ab3d8158cfb5574af214359d07b7741876c1cbb8c22373e074236408a2b1e6a:log:66', 'hash': '0x1ab3d8158cfb5574af214359d07b7741876c1cbb8c22373e074236408a2b1e6a', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 12455.9706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a33d512223ad3a8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:27:09.000Z'}}, {'blockNum': '0xa09b17', 'uniqueId': '0x75ab2d7c3aa85b0badcfe05a71c0ac932da5686315f9008d8a3af6650dc1fb56:log:0', 'hash': '0x75ab2d7c3aa85b0badcfe05a71c0ac932da5686315f9008d8a3af6650dc1fb56', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 12455.9706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a33d512223ad3a8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:28:07.000Z'}}, {'blockNum': '0xa09b6d', 'uniqueId': '0xaa77252b04c21669fa56e6da2bdf3ec69aad7830225cc39ce20d17985b147f43:log:266', 'hash': '0xaa77252b04c21669fa56e6da2bdf3ec69aad7830225cc39ce20d17985b147f43', 'from': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 51505.2098096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0ae81a5f6b88c49b8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:51:23.000Z'}}, {'blockNum': '0xa09b8d', 'uniqueId': '0xe206ff0c4937dc3eef73dabff1124a4646fd300d61bc070a591b52c9521f1eda:log:165', 'hash': '0xe206ff0c4937dc3eef73dabff1124a4646fd300d61bc070a591b52c9521f1eda', 'from': '0x04ac42be8c7b4dd9d6e2c3f96677e2c1676364bf', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 14411.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030d3dcbcd57a1700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:56:50.000Z'}}, {'blockNum': '0xa09bd3', 'uniqueId': '0x586ef106bb578d08661c25bef97b909708f3b0f274d793f8a919c6dcb3db18d6:log:8', 'hash': '0x586ef106bb578d08661c25bef97b909708f3b0f274d793f8a919c6dcb3db18d6', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xfa99514af542b29adc5e741795ac7967e4394254', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:11:55.000Z'}}, {'blockNum': '0xa09be0', 'uniqueId': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9:log:48', 'hash': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 9697.106439660656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020dae62b16646441632', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:15:47.000Z'}}, {'blockNum': '0xa09be0', 'uniqueId': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9:log:50', 'hash': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x8a3960472b3d63894b68df3f10f58f11828d6fd9', 'value': 9697.106439660656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020dae62b16646441632', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:15:47.000Z'}}, {'blockNum': '0xa09be0', 'uniqueId': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9:log:54', 'hash': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9', 'from': '0x8a3960472b3d63894b68df3f10f58f11828d6fd9', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 9697.106439660656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020dae62b166464413e6', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:15:47.000Z'}}, {'blockNum': '0xa09be9', 'uniqueId': '0xd1c7d298a421f8cb306dde43f3f16cf61a6ed48dfa8e021bbec16bcb47f4ea79:log:31', 'hash': '0xd1c7d298a421f8cb306dde43f3f16cf61a6ed48dfa8e021bbec16bcb47f4ea79', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 12409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a0b1780a4cde440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:19:47.000Z'}}, {'blockNum': '0xa09c08', 'uniqueId': '0x0404a276627687d0ddc2f00fea807bc01a81fe71bb38f82c139b4af1cb210899:log:35', 'hash': '0x0404a276627687d0ddc2f00fea807bc01a81fe71bb38f82c139b4af1cb210899', 'from': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x4e6347fac37ed80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:28:15.000Z'}}, {'blockNum': '0xa09c0d', 'uniqueId': '0xa505b4a468c2ab825a70f7124fee4ed6e99f5baeb2ab9122f10e0f217edf7a15:log:23', 'hash': '0xa505b4a468c2ab825a70f7124fee4ed6e99f5baeb2ab9122f10e0f217edf7a15', 'from': '0xfa99514af542b29adc5e741795ac7967e4394254', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:29:42.000Z'}}, {'blockNum': '0xa09c15', 'uniqueId': '0x2d2cc369e4c1e48dae5345e59f7bfb9cbf2b7a40d324e51758dadef82024c1a5:log:77', 'hash': '0x2d2cc369e4c1e48dae5345e59f7bfb9cbf2b7a40d324e51758dadef82024c1a5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 4886.1648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0108e1288596e1940000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:32:23.000Z'}}, {'blockNum': '0xa09c15', 'uniqueId': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501:log:157', 'hash': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 11633.160900438148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0276a289dbd20b20b080', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:32:23.000Z'}}, {'blockNum': '0xa09c15', 'uniqueId': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501:log:159', 'hash': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 11633.160900438148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0276a289dbd20b20b080', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:32:23.000Z'}}, {'blockNum': '0xa09c15', 'uniqueId': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501:log:163', 'hash': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 11633.16090043815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0276a289dbd20b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:32:23.000Z'}}, {'blockNum': '0xa09c18', 'uniqueId': '0xb06dc16672b3df2afd42eb054b7329b18fef1a9bb89b44221722d1846c288e61:log:12', 'hash': '0xb06dc16672b3df2afd42eb054b7329b18fef1a9bb89b44221722d1846c288e61', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 4886.1648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0108e1288596e1940000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:34:11.000Z'}}, {'blockNum': '0xa09c1f', 'uniqueId': '0x192c137abfda3643fdd99ed9e6c80ccff28a989857e7b7762bba8fd0ef40077f:log:106', 'hash': '0x192c137abfda3643fdd99ed9e6c80ccff28a989857e7b7762bba8fd0ef40077f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'value': 129477.29810217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1b6afa780fcc31938400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:35:54.000Z'}}, {'blockNum': '0xa09c20', 'uniqueId': '0x772313c069914b19a34a9c37d6dacfc27407f4e95a2ce984230260cb1dcd5b42:log:46', 'hash': '0x772313c069914b19a34a9c37d6dacfc27407f4e95a2ce984230260cb1dcd5b42', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x854d7aefa8dd8c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:36:50.000Z'}}, {'blockNum': '0xa09c35', 'uniqueId': '0xdfd55987e864557264728715624a1ce90f18cc5cdde7888ac48a265a2c94625b:log:78', 'hash': '0xdfd55987e864557264728715624a1ce90f18cc5cdde7888ac48a265a2c94625b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63a8e1414a255c5170f06cf100fca0ea4659f370', 'value': 19968.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x043a840119caad528000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:40:58.000Z'}}, {'blockNum': '0xa09c47', 'uniqueId': '0x5321efac51875b075e6a90a4f42f8f0a3804c6f4a0f89f138fafcc509d342fa0:log:6', 'hash': '0x5321efac51875b075e6a90a4f42f8f0a3804c6f4a0f89f138fafcc509d342fa0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 9153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f02f644d53de640000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:45:29.000Z'}}, {'blockNum': '0xa09c68', 'uniqueId': '0xa72549dcaeb78d8f08c7e7056f531cc83ac5ed0283d12d89734afb608aefb1e3:log:52', 'hash': '0xa72549dcaeb78d8f08c7e7056f531cc83ac5ed0283d12d89734afb608aefb1e3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 23609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04ffd8b13e2835440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:52:11.000Z'}}, {'blockNum': '0xa09c73', 'uniqueId': '0x9ca4b972c3ab3d2cfbdbc14b345761a28320018aa99d3127b9138de5e608918f:log:44', 'hash': '0x9ca4b972c3ab3d2cfbdbc14b345761a28320018aa99d3127b9138de5e608918f', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 75095.02832914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fe6e8de5ad73d7a0800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:55:33.000Z'}}, {'blockNum': '0xa09c74', 'uniqueId': '0x3795d8f5390dbe220dcf0d804922dba593ebacca0fa12a35353befed44a13d0c:log:1', 'hash': '0x3795d8f5390dbe220dcf0d804922dba593ebacca0fa12a35353befed44a13d0c', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 22847.48641395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04d69091825105276c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:56:20.000Z'}}, {'blockNum': '0xa09c86', 'uniqueId': '0xc53930e1c00b20968125132b20cc9a1cba32dd99bdbaa7238ed34c01a93c691b:log:45', 'hash': '0xc53930e1c00b20968125132b20cc9a1cba32dd99bdbaa7238ed34c01a93c691b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 16311.2708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03743c5ae3c891a90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:59:56.000Z'}}, {'blockNum': '0xa09c8a', 'uniqueId': '0xf836dd5a51692f5e8f7b5a0fbf34919074606c67b083d9f6c3b66b31012569bd:log:78', 'hash': '0xf836dd5a51692f5e8f7b5a0fbf34919074606c67b083d9f6c3b66b31012569bd', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:01:04.000Z'}}, {'blockNum': '0xa09c8e', 'uniqueId': '0x0170b08d057c87c57314516e58f1d6c2786c45edabeff1e3397e09d055832cd3:log:23', 'hash': '0x0170b08d057c87c57314516e58f1d6c2786c45edabeff1e3397e09d055832cd3', 'from': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 23609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04ffd8b13e2835440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:01:46.000Z'}}, {'blockNum': '0xa09c91', 'uniqueId': '0x74b4123c499670a8c2df5fbca76efab0039e8b5d55070d6d76202b11b0138683:log:53', 'hash': '0x74b4123c499670a8c2df5fbca76efab0039e8b5d55070d6d76202b11b0138683', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 21833.3935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x049f9733bdf936a1c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:02:04.000Z'}}, {'blockNum': '0xa09c95', 'uniqueId': '0xbd4acf4e93f69b7c2bc6bd12c09ba46c5b03efa2f26b5fcb88252e1d2299adce:log:11', 'hash': '0xbd4acf4e93f69b7c2bc6bd12c09ba46c5b03efa2f26b5fcb88252e1d2299adce', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 19207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x041136aba0f3dfbc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:03:27.000Z'}}, {'blockNum': '0xa09c9e', 'uniqueId': '0xaeb7480d928c69ec52582177bb88001d24bfca81c9584d91e9f933f903db1427:log:77', 'hash': '0xaeb7480d928c69ec52582177bb88001d24bfca81c9584d91e9f933f903db1427', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 13687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02e5f9481f2a837c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:04:35.000Z'}}, {'blockNum': '0xa09c9e', 'uniqueId': '0xd903bfe4ff2e9b05e6729c1fed08f4aca30443cefee987e279caf346cd05032a:log:127', 'hash': '0xd903bfe4ff2e9b05e6729c1fed08f4aca30443cefee987e279caf346cd05032a', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 75095.02832914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fe6e8de5ad73d7a0800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:04:35.000Z'}}, {'blockNum': '0xa09c9f', 'uniqueId': '0xa034cc5a175b328b30d8d65b80038137f6869658d8c0418eb9927a7792cfb298:log:74', 'hash': '0xa034cc5a175b328b30d8d65b80038137f6869658d8c0418eb9927a7792cfb298', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 22847.48641395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04d69091825105276c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:05:03.000Z'}}, {'blockNum': '0xa09ca3', 'uniqueId': '0xfc065721e405b53691d40d58a1f6c2715fa6bdff4fffe56f096102ba246db783:log:1', 'hash': '0xfc065721e405b53691d40d58a1f6c2715fa6bdff4fffe56f096102ba246db783', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 75095.02832914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fe6e8de5ad73d7a0800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:05:19.000Z'}}, {'blockNum': '0xa09cab', 'uniqueId': '0x0c83745e1884d2c75edb8886f1235794a8c3484eab005a29decab1a047bf9afd:log:0', 'hash': '0x0c83745e1884d2c75edb8886f1235794a8c3484eab005a29decab1a047bf9afd', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 22847.48641395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04d69091825105276c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:06:34.000Z'}}, {'blockNum': '0xa09cab', 'uniqueId': '0x871ebf749963e07e3a93670b342c003dfd7244910f0bb980f564196e3e40b3a8:log:164', 'hash': '0x871ebf749963e07e3a93670b342c003dfd7244910f0bb980f564196e3e40b3a8', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 16311.2708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03743c5ae3c891a90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:06:34.000Z'}}, {'blockNum': '0xa09cb0', 'uniqueId': '0x10a0976c013f2f8aeed27a224c9590b6d021a0ccc6a53db5e3d9230442632178:log:79', 'hash': '0x10a0976c013f2f8aeed27a224c9590b6d021a0ccc6a53db5e3d9230442632178', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:07:53.000Z'}}, {'blockNum': '0xa09cb4', 'uniqueId': '0x2d1f93407293386a149e1cb777442b67d59ddcbce11597ab67eeee7f6e175da1:log:22', 'hash': '0x2d1f93407293386a149e1cb777442b67d59ddcbce11597ab67eeee7f6e175da1', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 16311.2708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03743c5ae3c891a90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:08:23.000Z'}}, {'blockNum': '0xa09cb8', 'uniqueId': '0x76ac5e540107a610c2fbeb6df9a6fe8c6865a1b111e6345198795f2069a2e6ba:log:97', 'hash': '0x76ac5e540107a610c2fbeb6df9a6fe8c6865a1b111e6345198795f2069a2e6ba', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 21833.3935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x049f9733bdf936a1c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:09:19.000Z'}}, {'blockNum': '0xa09cbb', 'uniqueId': '0x8592b99cbdf6391037b3a0801c6806a6e56209c9c91cd5d301d72ab90dc640ef:log:0', 'hash': '0x8592b99cbdf6391037b3a0801c6806a6e56209c9c91cd5d301d72ab90dc640ef', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 51833.3935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0af9e4d61b294d61c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:09:51.000Z'}}, {'blockNum': '0xa09ceb', 'uniqueId': '0x232bc5de2fc8549c74612aca4a26776c84ac499c18b160ea63a575838b177ce8:log:30', 'hash': '0x232bc5de2fc8549c74612aca4a26776c84ac499c18b160ea63a575838b177ce8', 'from': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 129477.29810217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1b6afa780fcc31938400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:20:12.000Z'}}, {'blockNum': '0xa09cf3', 'uniqueId': '0x2839f8c6c25cef4573fde01a8e6caa2ba718c3bf7e15d4142fc7661d7be49bdd:log:60', 'hash': '0x2839f8c6c25cef4573fde01a8e6caa2ba718c3bf7e15d4142fc7661d7be49bdd', 'from': '0xc89722f4afcf759c4f81765b61674006e475e978', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 1500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x013da329b6336471800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:21:54.000Z'}}, {'blockNum': '0xa09cfd', 'uniqueId': '0x24097ba2cb2f6cfc10a099458e07a6443465e45ab0542e5fd145dd1f21aa1c87:log:3', 'hash': '0x24097ba2cb2f6cfc10a099458e07a6443465e45ab0542e5fd145dd1f21aa1c87', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 12191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0294e01c7550531c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:24:54.000Z'}}, {'blockNum': '0xa09d07', 'uniqueId': '0x8c01e418e4dddaf627fc815a1a62e58973bdd34420b2ec5d3234d264295eda9e:log:134', 'hash': '0x8c01e418e4dddaf627fc815a1a62e58973bdd34420b2ec5d3234d264295eda9e', 'from': '0x5efee358e543536c45db23f5eefbdddcb8fe90fd', 'to': '0x7a66d3e9f52d3f2329f8f67eb8157f0ffa64a240', 'value': 1005.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x367f3388becc710000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:26:38.000Z'}}, {'blockNum': '0xa09d17', 'uniqueId': '0x5ab459ef48776673f1335aeba61c4cc5b5c3f1600cbc9ff2f7acfc6a9c6f0649:log:71', 'hash': '0x5ab459ef48776673f1335aeba61c4cc5b5c3f1600cbc9ff2f7acfc6a9c6f0649', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x17c684e2f608dec780518bb0589cf0c858fe5e80', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:32:08.000Z'}}, {'blockNum': '0xa09d28', 'uniqueId': '0x8f4fb33c63e356d4d251581225aa4bdd7168b6a6f37f883db90101428b85e6d2:log:171', 'hash': '0x8f4fb33c63e356d4d251581225aa4bdd7168b6a6f37f883db90101428b85e6d2', 'from': '0xbdc7988ba348f4448ab6115b71bc76f37360c6d3', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:36:51.000Z'}}, {'blockNum': '0xa09d28', 'uniqueId': '0x8f4fb33c63e356d4d251581225aa4bdd7168b6a6f37f883db90101428b85e6d2:log:172', 'hash': '0x8f4fb33c63e356d4d251581225aa4bdd7168b6a6f37f883db90101428b85e6d2', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:36:51.000Z'}}, {'blockNum': '0xa09d2c', 'uniqueId': '0x377fef8c0c149f5fcbc75c8517e95c0440487ed500f61d8ed560c5f97509e706:log:252', 'hash': '0x377fef8c0c149f5fcbc75c8517e95c0440487ed500f61d8ed560c5f97509e706', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 10063.8854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02219077528cc7fd8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:38:13.000Z'}}, {'blockNum': '0xa09d5e', 'uniqueId': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5:log:32', 'hash': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x8a3960472b3d63894b68df3f10f58f11828d6fd9', 'value': 10025.37220174883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x021f79fcf4cacadc2ef0', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:49:03.000Z'}}, {'blockNum': '0xa09d5e', 'uniqueId': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5:log:40', 'hash': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5', 'from': '0x8a3960472b3d63894b68df3f10f58f11828d6fd9', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 10054.167470582875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0221099a4d3b9beaa87c', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:49:03.000Z'}}, {'blockNum': '0xa09d5e', 'uniqueId': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5:log:41', 'hash': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 10054.167470582875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0221099a4d3b9beaa87c', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:49:03.000Z'}}, {'blockNum': '0xa09d61', 'uniqueId': '0x8f378e5cd2421601ba504d496bd8d66201d6f666f452117b377baa8fb03c4f35:log:128', 'hash': '0x8f378e5cd2421601ba504d496bd8d66201d6f666f452117b377baa8fb03c4f35', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 15020.961811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x032e49b87ea353403000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:49:19.000Z'}}, {'blockNum': '0xa09d66', 'uniqueId': '0xdd42a2d975e73e6605f75ac1ddebe01324b8f81a47cf6a626b6672bc5ad3e12d:log:104', 'hash': '0xdd42a2d975e73e6605f75ac1ddebe01324b8f81a47cf6a626b6672bc5ad3e12d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 1591.5213896073167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5646cbcf9b2c2b4e20', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:50:31.000Z'}}, {'blockNum': '0xa09d66', 'uniqueId': '0xdd42a2d975e73e6605f75ac1ddebe01324b8f81a47cf6a626b6672bc5ad3e12d:log:106', 'hash': '0xdd42a2d975e73e6605f75ac1ddebe01324b8f81a47cf6a626b6672bc5ad3e12d', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x4ea4c5c2f037dd30af66df3bc6e4e352911abd2f', 'value': 1591.5213896073167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5646cbcf9b2c2b4e20', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:50:31.000Z'}}, {'blockNum': '0xa09d7d', 'uniqueId': '0xe00ac3ac716c2bb524d7f1864aab1987bbb478ae8efd33b8894dffce973eeec2:log:94', 'hash': '0xe00ac3ac716c2bb524d7f1864aab1987bbb478ae8efd33b8894dffce973eeec2', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8f03b2f832a06dacd4f94ef8cd28b276bd387626', 'value': 36.9949086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020168515d410b3000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:54:44.000Z'}}]}}
Number of returned transfers:  333
Answer is complete
 
symbol             VIB
group              BPF
date        2020-07-30
hour             18:00
exchange       binance
Name: 839, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2020-07-30 18:00:00 2020-07-30 06:00:00 2020-07-31 06:00:00
Unix timestamps:  1596081600.0 1596168000.0
Hex Block Numbers:  0xa11d05 0xa135c0
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa11e2c', 'uniqueId': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059:log:16', 'hash': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 51995.428947153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b02ad87a7d8ad68aed0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T05:06:50.000Z'}}, {'blockNum': '0xa11e2c', 'uniqueId': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059:log:21', 'hash': '0x556eaafcf0311544435d760c84d5f20fa80e2ab08d9708a26a5dcd96d9db3059', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 51995.428947153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b02ad87a7d8ad68aed0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T05:06:50.000Z'}}, {'blockNum': '0xa11e2d', 'uniqueId': '0xd7e1367a9459dd35ed079788c1cb1a798357aede0ace035414eb357b8a5fba9f:log:4', 'hash': '0xd7e1367a9459dd35ed079788c1cb1a798357aede0ace035414eb357b8a5fba9f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 51891.43808925869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0afd0a5de98f07000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T05:06:58.000Z'}}, {'blockNum': '0xa1208f', 'uniqueId': '0x8e4a341baa3aa0380b9925afe29a180ecd31195030e49291876f74e9613866e1:log:14', 'hash': '0x8e4a341baa3aa0380b9925afe29a180ecd31195030e49291876f74e9613866e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'value': 874.44060897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2f674d1cdf911b6400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T07:27:22.000Z'}}, {'blockNum': '0xa12098', 'uniqueId': '0x9ed56f9f00fec76fb131b2985c6cffda6f1b197f312a510dd56f5c3f9dfc6cee:log:3', 'hash': '0x9ed56f9f00fec76fb131b2985c6cffda6f1b197f312a510dd56f5c3f9dfc6cee', 'from': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'to': '0x599b67eb4ca7eda16dd1fbc2d6bf4f06db2a381c', 'value': 1772.74214637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6019bd45bbab621400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T07:28:12.000Z'}}, {'blockNum': '0xa120c4', 'uniqueId': '0xa1bcbe91f1f030ecd4e03fd5bfd10bb16b3027bbb8b054a7b435b5379c9ca00f:log:36', 'hash': '0xa1bcbe91f1f030ecd4e03fd5bfd10bb16b3027bbb8b054a7b435b5379c9ca00f', 'from': '0x599b67eb4ca7eda16dd1fbc2d6bf4f06db2a381c', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1772.74214637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6019bd45bbab621400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T07:36:45.000Z'}}, {'blockNum': '0xa123a1', 'uniqueId': '0x73a1b0f2eb717bc20c92ebad242e37fc8028f8bcaba6dd58663691cf25b69da2:log:49', 'hash': '0x73a1b0f2eb717bc20c92ebad242e37fc8028f8bcaba6dd58663691cf25b69da2', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x7383ea966e36b0d58f80e804fde29fffc52507a8', 'value': 1344.1733994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x48de273904b6441000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T10:31:10.000Z'}}, {'blockNum': '0xa12592', 'uniqueId': '0x862695a575f3fbed53d9ce2db5a815226ead289ffcf91420c4abb85f0fb98ac3:log:194', 'hash': '0x862695a575f3fbed53d9ce2db5a815226ead289ffcf91420c4abb85f0fb98ac3', 'from': '0x7383ea966e36b0d58f80e804fde29fffc52507a8', 'to': '0xd3092c77aef5c384686dc0ccc8f3462035d0f6e6', 'value': 3170.3885614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xabddfacf27a0b5b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T12:27:19.000Z'}}, {'blockNum': '0xa12596', 'uniqueId': '0x59fbfeebc499b5014858cabb7e2a54a604239f9075333ff5c4166ef247e5481a:log:306', 'hash': '0x59fbfeebc499b5014858cabb7e2a54a604239f9075333ff5c4166ef247e5481a', 'from': '0xd3092c77aef5c384686dc0ccc8f3462035d0f6e6', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 3170.3885614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xabddfacf27a0b5b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T12:28:20.000Z'}}, {'blockNum': '0xa12658', 'uniqueId': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03:log:77', 'hash': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 47713.714808225144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a1a90cf43fc3b000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T13:09:28.000Z'}}, {'blockNum': '0xa12658', 'uniqueId': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03:log:79', 'hash': '0x95d950cb90d7deaba135ab61f06b8f909e31e059f815f11b267a44621258db03', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 47713.714808225144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a1a90cf43fc3b000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T13:09:28.000Z'}}, {'blockNum': '0xa12666', 'uniqueId': '0xaad3fcea904e2c8795e9a1d99f0073a796985b42616c853030cdd210c4764018:log:72', 'hash': '0xaad3fcea904e2c8795e9a1d99f0073a796985b42616c853030cdd210c4764018', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 47850.96175894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a22017e627eb3a99800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T13:12:52.000Z'}}, {'blockNum': '0xa12870', 'uniqueId': '0x268e924c239a7190689b50cc728c5793ffff2873d45debf0ec9e55ea86c30896:log:25', 'hash': '0x268e924c239a7190689b50cc728c5793ffff2873d45debf0ec9e55ea86c30896', 'from': '0x776b38a4b6f92c1b28d465cbc5e248a3efffe87c', 'to': '0x13d25c62d041f62695bee4695d776e387766a726', 'value': 80.893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04629daae917ac8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:09:17.000Z'}}, {'blockNum': '0xa128c6', 'uniqueId': '0xde983a05c4b5512561f84a34b5d394d60da5e4fe3846444d6422add319db8e63:log:40', 'hash': '0xde983a05c4b5512561f84a34b5d394d60da5e4fe3846444d6422add319db8e63', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb24d403b659274cff5a2c00f4b51f2113d402b80', 'value': 1334.51945224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x48582d8339a6132000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:29:21.000Z'}}, {'blockNum': '0xa12929', 'uniqueId': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55:log:180', 'hash': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 47592.325558372766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a13fc32046471000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:51:25.000Z'}}, {'blockNum': '0xa12929', 'uniqueId': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55:log:182', 'hash': '0x1af98f458a5b7156f6b706f865c929249702e7db09be94f300bbea9e704e0b55', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 47592.325558372766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a13fc32046471000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:51:25.000Z'}}, {'blockNum': '0xa12934', 'uniqueId': '0xd8397914fa5b709ee5e9d1267e6e1073c56fda728ee4b0441ad520fc498202a9:log:7', 'hash': '0xd8397914fa5b709ee5e9d1267e6e1073c56fda728ee4b0441ad520fc498202a9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 47728.96129285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a1b6465a8f8e51f7400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T15:54:13.000Z'}}, {'blockNum': '0xa12b53', 'uniqueId': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7:log:38', 'hash': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 101548.37817363147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1580f2d8328d2ed2d4d6', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T17:59:54.000Z'}}, {'blockNum': '0xa12b53', 'uniqueId': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7:log:43', 'hash': '0xec056333f5cee5c9c810ccfb8c2042094651a339d36dc404a4ed3160d0a31fa7', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 101548.37817363147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1580f2d8328d2ed2d4d6', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T17:59:54.000Z'}}, {'blockNum': '0xa12b54', 'uniqueId': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708:log:39', 'hash': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 45806.6257272118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09b32ea1ccfea0866bef', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:12.000Z'}}, {'blockNum': '0xa12b54', 'uniqueId': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708:log:44', 'hash': '0x4db8cc6da9690f7a4b8413f7b2aef8d5902246a6e1e0ec3fb2323c47b0bd9708', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 45806.6257272118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09b32ea1ccfea0866bef', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:12.000Z'}}, {'blockNum': '0xa12b55', 'uniqueId': '0xda17d27172b3e6ffe2e1bcde23a6c122dda4e4ad6bef19fcb0b716f6a3233be8:log:179', 'hash': '0xda17d27172b3e6ffe2e1bcde23a6c122dda4e4ad6bef19fcb0b716f6a3233be8', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 3059.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa5db178013039e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:33.000Z'}}, {'blockNum': '0xa12b56', 'uniqueId': '0xa3d6fd35108f89f3f33b1352338f30950ec565141f66d040bc7ba233196355a6:log:268', 'hash': '0xa3d6fd35108f89f3f33b1352338f30950ec565141f66d040bc7ba233196355a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 1586.62959709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5602e8ac3abe99d400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:00:38.000Z'}}, {'blockNum': '0xa12b58', 'uniqueId': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad:log:28', 'hash': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 44732.30676412806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0978f176200e47f6ccf5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:14.000Z'}}, {'blockNum': '0xa12b58', 'uniqueId': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad:log:33', 'hash': '0x74c746f5df1c10aaf0144169b04822a83a4419442e1832f9438e043a8eacccad', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 44732.30676412806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0978f176200e47f6ccf5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:14.000Z'}}, {'blockNum': '0xa12b58', 'uniqueId': '0x26c353adf1158df0f7993708f40a9ad5b7c367ad164bea46cf5aefbc49a08155:log:179', 'hash': '0x26c353adf1158df0f7993708f40a9ad5b7c367ad164bea46cf5aefbc49a08155', 'from': '0xdc79bb9a038834ee96202e8dd0c4ba6d568dcea5', 'to': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'value': 53900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b69ecc3498f92b00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:14.000Z'}}, {'blockNum': '0xa12b5a', 'uniqueId': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1:log:22', 'hash': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 43695.35603575001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0940bae11698abd893df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:46.000Z'}}, {'blockNum': '0xa12b5a', 'uniqueId': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1:log:27', 'hash': '0x65d9258b5dff850faec38318a723f674d3b47d285de6b5e7429d23415d489ac1', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 43695.35603575001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0940bae11698abd893df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:01:46.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8:log:25', 'hash': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 138604.31619654296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1d59c14a179d90004a72', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8:log:30', 'hash': '0x76afa1ed3719d520826b6c3de6f8333ffa8c072ff0e8551b094ed16951e6f9a8', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xc640caba272414689b21ebcd60d97b912359504d', 'value': 138604.31619654296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1d59c14a179d90004a72', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x26a347c420b59d775e0fc3e94aec44864d48422b914b92123322e56870783839:log:118', 'hash': '0x26a347c420b59d775e0fc3e94aec44864d48422b914b92123322e56870783839', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 234935.39244669044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x31bfdf86613564f9b952', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180:log:134', 'hash': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5e', 'uniqueId': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180:log:139', 'hash': '0x1a9fde0dfb9491583b2e5b73024d36e32c31d3c3cb5ad4d0bf222c603c36c180', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:02:30.000Z'}}, {'blockNum': '0xa12b5f', 'uniqueId': '0x90c164a849cc7752b0c6d6485983299872944a4e73c6d7c4e7764926f5d9e589:log:285', 'hash': '0x90c164a849cc7752b0c6d6485983299872944a4e73c6d7c4e7764926f5d9e589', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 11101.54716981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0259d0ea7c6ca8323400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:03:12.000Z'}}, {'blockNum': '0xa12b62', 'uniqueId': '0xc5e952f1df98ec9428fd5ba88a36d53a4d5a456ee45ef47b3db34a2d94254c83:log:54', 'hash': '0xc5e952f1df98ec9428fd5ba88a36d53a4d5a456ee45ef47b3db34a2d94254c83', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xaec886a56346d6c7b113c91cb6c03adcc29d18d3', 'value': 20950.12195428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x046fb558d6ea13d51000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:03:42.000Z'}}, {'blockNum': '0xa12b69', 'uniqueId': '0xf0bc427f8a929c36a08e5cf222dd5714fead570fc41a9f085f03bbf682a59dbb:log:25', 'hash': '0xf0bc427f8a929c36a08e5cf222dd5714fead570fc41a9f085f03bbf682a59dbb', 'from': '0xc640caba272414689b21ebcd60d97b912359504d', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:04:30.000Z'}}, {'blockNum': '0xa12b69', 'uniqueId': '0x092f7f151d6e99549eb93df3bd1bf6da801bcf8c34bc2cb991154100fc9ae3d4:log:54', 'hash': '0x092f7f151d6e99549eb93df3bd1bf6da801bcf8c34bc2cb991154100fc9ae3d4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xeeb85ea2657ac57f8eb3b371b8b0de191bc82607', 'value': 257150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3674212280e893380000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:04:30.000Z'}}, {'blockNum': '0xa12b79', 'uniqueId': '0x39d941c1b58bf3849d85750ff18fafdf6e8bd897462f9e5266fac648e283d4d6:log:279', 'hash': '0x39d941c1b58bf3849d85750ff18fafdf6e8bd897462f9e5266fac648e283d4d6', 'from': '0x43fd7a871b29f32ba8ab905c912c905a139e8c37', 'to': '0x134fa523f1037db8808712f08b874606695873ae', 'value': 583096.173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x7b79b4f5df921e048000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:07:51.000Z'}}, {'blockNum': '0xa12b81', 'uniqueId': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e:log:33', 'hash': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e', 'from': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:09:12.000Z'}}, {'blockNum': '0xa12b81', 'uniqueId': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e:log:35', 'hash': '0x874da94263aa40abb6ec5f634edb70a23b24fc7ee6e88b1b99fc8c94b4f7143e', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 65507.34844835332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ddf2914e4f86be5b6c1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:09:12.000Z'}}, {'blockNum': '0xa12b8d', 'uniqueId': '0xd31684165aeaedccd71f6fbbc295a85066947077539f690d2e345b2bc206a6f1:log:12', 'hash': '0xd31684165aeaedccd71f6fbbc295a85066947077539f690d2e345b2bc206a6f1', 'from': '0xc640caba272414689b21ebcd60d97b912359504d', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 138504.31619654296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1d545582b9702cf04a72', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:12:17.000Z'}}, {'blockNum': '0xa12b98', 'uniqueId': '0xcccbe3473a440d2323fab1c81e96ba1b05e5d15d7d3b36f9eaeeb872c270fb12:log:153', 'hash': '0xcccbe3473a440d2323fab1c81e96ba1b05e5d15d7d3b36f9eaeeb872c270fb12', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'value': 3411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb8e9225bbf596c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:14:58.000Z'}}, {'blockNum': '0xa12b99', 'uniqueId': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709:log:35', 'hash': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 65873.46461966219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0df301f6d3025b2d9ede', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:15:42.000Z'}}, {'blockNum': '0xa12b99', 'uniqueId': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709:log:40', 'hash': '0xcb1bd2f62e567fc58551138e959566133196dd0a1a40e46fbf29117c9e6fe709', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 65873.46461966219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0df301f6d3025b2d9ede', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:15:42.000Z'}}, {'blockNum': '0xa12b9d', 'uniqueId': '0x208ae3fe5095e7ee3590a528168b592391c896b56f1c765168b3b6b6c883b98a:log:15', 'hash': '0x208ae3fe5095e7ee3590a528168b592391c896b56f1c765168b3b6b6c883b98a', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 65873.46461966219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0df301f6d3025b2d9ede', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:16:52.000Z'}}, {'blockNum': '0xa12bad', 'uniqueId': '0x5b3e605d5fcc95f23f6a51ae52e848417834f023cf2f5f267d01c03a0337a5f6:log:25', 'hash': '0x5b3e605d5fcc95f23f6a51ae52e848417834f023cf2f5f267d01c03a0337a5f6', 'from': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb8e9225bbf596c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:20:55.000Z'}}, {'blockNum': '0xa12bae', 'uniqueId': '0x2c17b3b67de7cb06017795517c6f779d88184c60f055c0b3e24fff2e25ba2dbf:log:192', 'hash': '0x2c17b3b67de7cb06017795517c6f779d88184c60f055c0b3e24fff2e25ba2dbf', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xec601f7395e98b14cc26a4c0412aabc0c9291ee4', 'value': 291.95686278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fd3b723d83b5d5800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:21:55.000Z'}}, {'blockNum': '0xa12bb3', 'uniqueId': '0x6086b207187d8bfe2449a8b45b5c23b92e940d5f412d446cb114f6542cb42bc1:log:193', 'hash': '0x6086b207187d8bfe2449a8b45b5c23b92e940d5f412d446cb114f6542cb42bc1', 'from': '0xce1bc88d09d47ba294135ed6d526cfaca21cc76b', 'to': '0x26d84508264b0d266c098ca2350c67f29fad704e', 'value': 56689.182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0c01207054d75c430000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:23:03.000Z'}}, {'blockNum': '0xa12bd4', 'uniqueId': '0x441ee5bd42b7e30d049fccce8610afa3f168407b7126c7b1f1412f9d5dd84c38:log:42', 'hash': '0x441ee5bd42b7e30d049fccce8610afa3f168407b7126c7b1f1412f9d5dd84c38', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 91032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1346dac79bcb0f600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:30:59.000Z'}}, {'blockNum': '0xa12be5', 'uniqueId': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23:log:10', 'hash': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 71441.07007190151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0f20d402df6208000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:33:51.000Z'}}, {'blockNum': '0xa12be5', 'uniqueId': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23:log:12', 'hash': '0xc5aa4e6c8ce2e6c09504ba280f8d4920eea5232b9ccf4021b2cc98b341f59d23', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 71441.07007190151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0f20d402df6208000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:33:51.000Z'}}, {'blockNum': '0xa12be8', 'uniqueId': '0x583a82b3f7afab030e03149cba2137a0086973ccd13fc377338beacf8094586b:log:80', 'hash': '0x583a82b3f7afab030e03149cba2137a0086973ccd13fc377338beacf8094586b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 3405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb895de13896d140000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:34:20.000Z'}}, {'blockNum': '0xa12c04', 'uniqueId': '0x863ce71ef168c9211f4883f81833dd3a19f7808fb4b6ed288508e5e6a6b6c71e:log:38', 'hash': '0x863ce71ef168c9211f4883f81833dd3a19f7808fb4b6ed288508e5e6a6b6c71e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x73a379715459e794a1c4372df0f8a1772eb3c80a', 'value': 1194.2292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x40bd426a1a3eed0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:40:38.000Z'}}, {'blockNum': '0xa12c59', 'uniqueId': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a:log:26', 'hash': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 21410.233178640345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0488a6ac47b244468193', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:56:31.000Z'}}, {'blockNum': '0xa12c59', 'uniqueId': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a:log:31', 'hash': '0x2ddbf36be32a13c781f516a3009ee23c06a2fbc549283ed9c43642a800b24c1a', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 21410.233178640345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0488a6ac47b244468193', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T18:56:31.000Z'}}, {'blockNum': '0xa12c9b', 'uniqueId': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56:log:123', 'hash': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 41743.34301504236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08d6e941ba7893800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:09:11.000Z'}}, {'blockNum': '0xa12c9b', 'uniqueId': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56:log:125', 'hash': '0x781b56c139e282037859dd62eb339ae3a289125f1bc6c828a1748c27d7cc5e56', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 41743.34301504236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08d6e941ba7893800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:09:11.000Z'}}, {'blockNum': '0xa12cc3', 'uniqueId': '0xeb39f7b145b0f0588baa44ca4bd1429923e8a7cb5ecae5ddb72721ee1fc3ffbc:log:0', 'hash': '0xeb39f7b145b0f0588baa44ca4bd1429923e8a7cb5ecae5ddb72721ee1fc3ffbc', 'from': '0x4732d5923fc114fa73ed0f96c81502615a918688', 'to': '0x3b45b6faeed933e958655a89b75d7fe7465d8164', 'value': 2773.85874999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x965f05ec951705fc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:18:23.000Z'}}, {'blockNum': '0xa12ccc', 'uniqueId': '0x32e2d717d97d7f420a11602e44719138c4afa33b05d329bb25f572d2b1e56e21:log:38', 'hash': '0x32e2d717d97d7f420a11602e44719138c4afa33b05d329bb25f572d2b1e56e21', 'from': '0x3b45b6faeed933e958655a89b75d7fe7465d8164', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2773.85874999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x965f05ec951705fc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:20:45.000Z'}}, {'blockNum': '0xa12ce1', 'uniqueId': '0xf73ed081658026bf5e91d2c4d9e466efd5692b82c559406983203c7fcf6187ef:log:38', 'hash': '0xf73ed081658026bf5e91d2c4d9e466efd5692b82c559406983203c7fcf6187ef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb63150b1ece82008da567df900c21da3647d9620', 'value': 11371.845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0268780d48e20a008000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:25:24.000Z'}}, {'blockNum': '0xa12ce1', 'uniqueId': '0x0cbc41a174d090b5b1b8decfbabd86005f2bd5ea85c951ad2000a8d3c338f9c4:log:39', 'hash': '0x0cbc41a174d090b5b1b8decfbabd86005f2bd5ea85c951ad2000a8d3c338f9c4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x72962fc4d5d695f6d49bd885e0e635b0524ff554', 'value': 1256.0136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4416b0b28e03920000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:25:24.000Z'}}, {'blockNum': '0xa12ce5', 'uniqueId': '0xb71b16a3b854dc18c1241868cb83b90f3f27971ed8a671cc566fd8ded54b7d96:log:46', 'hash': '0xb71b16a3b854dc18c1241868cb83b90f3f27971ed8a671cc566fd8ded54b7d96', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x211f540ec883ac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:26:02.000Z'}}, {'blockNum': '0xa12ceb', 'uniqueId': '0x195b4bd708d0102d6d80cb1e60ef2ee045ec04e3729a1b5c6c501ad835a72d2d:log:125', 'hash': '0x195b4bd708d0102d6d80cb1e60ef2ee045ec04e3729a1b5c6c501ad835a72d2d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x21db968168db8c071b72d13afa0b4cd89e6b63c9', 'value': 1132.51717735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3d64d5447776d0bc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:28:01.000Z'}}, {'blockNum': '0xa12cf0', 'uniqueId': '0xdc496852ee18a4fe640303a9fd0d441705c865ddff4d4ba9fd4225e6aab73815:log:182', 'hash': '0xdc496852ee18a4fe640303a9fd0d441705c865ddff4d4ba9fd4225e6aab73815', 'from': '0x19ac1f3c91cfafefa8cf37397120c8633360f42b', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:28:37.000Z'}}, {'blockNum': '0xa12d4d', 'uniqueId': '0xdf0f4e94d373d7d279e5c967c3fe002ca5a51705e6972a5eb7995adacfd0638a:log:24', 'hash': '0xdf0f4e94d373d7d279e5c967c3fe002ca5a51705e6972a5eb7995adacfd0638a', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:49:08.000Z'}}, {'blockNum': '0xa12d4e', 'uniqueId': '0xeed799ffa17813675f16e4a7bbbc157c2ac36403e1b287292bc48ee72210e688:log:62', 'hash': '0xeed799ffa17813675f16e4a7bbbc157c2ac36403e1b287292bc48ee72210e688', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa1c3519e1725a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T19:49:24.000Z'}}, {'blockNum': '0xa12d9e', 'uniqueId': '0x9f31bf2506d844df7a8373e2b74b323f67c97ec0635a0858a392552d68042714:log:71', 'hash': '0x9f31bf2506d844df7a8373e2b74b323f67c97ec0635a0858a392552d68042714', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x84afecbe08de370d1687662ceb312c2abed5a593', 'value': 83.00000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x047fdb3c419977e400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T20:08:40.000Z'}}, {'blockNum': '0xa12ddc', 'uniqueId': '0x3727a4a290536a95873dd9dedfb28a5e6cc401898d34105d7b217dd888cdd6d6:log:32', 'hash': '0x3727a4a290536a95873dd9dedfb28a5e6cc401898d34105d7b217dd888cdd6d6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x15d9c7f547c3192ac0502202c175b132459e1fb6', 'value': 4480.375584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2e1b39f99cd520000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T20:21:36.000Z'}}, {'blockNum': '0xa12deb', 'uniqueId': '0x2ea285c6c2863391197ecf43ddb73469548a1460460b1a4026752837e06d974f:log:113', 'hash': '0x2ea285c6c2863391197ecf43ddb73469548a1460460b1a4026752837e06d974f', 'from': '0xa07def8a7ccbe1ba41fbf44022f10834d41b5e94', 'to': '0xc4086b1b7f80dcb778cb5e2a6f9f3c55e5088b62', 'value': 3823.217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xcf41cb553a6a9e8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T20:25:44.000Z'}}, {'blockNum': '0xa12ece', 'uniqueId': '0x6e98336a8c8db1e71cad55576e1e8b7f2531ad1587349b20815fedae7fd2a530:log:17', 'hash': '0x6e98336a8c8db1e71cad55576e1e8b7f2531ad1587349b20815fedae7fd2a530', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xaf1d587a74c39c67554c7b85d638256912e137ad', 'value': 25216.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0556ff6326ef91e18000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:16:42.000Z'}}, {'blockNum': '0xa12ee6', 'uniqueId': '0xba8b9fe4da95ab497ce282d162721339aeeda04c6f160e24157991472d58d5ec:log:42', 'hash': '0xba8b9fe4da95ab497ce282d162721339aeeda04c6f160e24157991472d58d5ec', 'from': '0x7728156d25f977a2c76f10628404085b1433cb0e', 'to': '0x0b69adc6abc3ec9531f789cb633f3e224a7ce2d8', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:23:11.000Z'}}, {'blockNum': '0xa12ee8', 'uniqueId': '0xa43b11be697609647873767c4545ce5bbf4f3adf3b4b39f24b27a4f8ef62b183:log:16', 'hash': '0xa43b11be697609647873767c4545ce5bbf4f3adf3b4b39f24b27a4f8ef62b183', 'from': '0x0b69adc6abc3ec9531f789cb633f3e224a7ce2d8', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:23:20.000Z'}}, {'blockNum': '0xa12f06', 'uniqueId': '0x72cccb75c547d7c07e078180af2c7346b7bd297e24ace7c4f71145721beabfc7:log:24', 'hash': '0x72cccb75c547d7c07e078180af2c7346b7bd297e24ace7c4f71145721beabfc7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 691.61159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x257e09f4ca2d1a6000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:31:08.000Z'}}, {'blockNum': '0xa12f08', 'uniqueId': '0xa9cb5107b1baffa971c7186eba96fb2cdfa019af11f1cc53bbacb6e59b100cf5:log:125', 'hash': '0xa9cb5107b1baffa971c7186eba96fb2cdfa019af11f1cc53bbacb6e59b100cf5', 'from': '0x29dc02525e01fc1460d2c2309dc63d716a1cc86f', 'to': '0x791e589ff47c30b30aad340949794aa1d4246448', 'value': 153555.6768904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x20844519bef9774b4000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T21:31:37.000Z'}}, {'blockNum': '0xa12fa1', 'uniqueId': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad:log:58', 'hash': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 39630.899742761045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x086465379e8907f299d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:08:41.000Z'}}, {'blockNum': '0xa12fa1', 'uniqueId': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad:log:63', 'hash': '0xa16c7a30591e3647d6a6f59d9ade952e326379fecc7aac261e6be5d54affd5ad', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 39630.899742761045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x086465379e8907f299d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:08:41.000Z'}}, {'blockNum': '0xa12fcc', 'uniqueId': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2:log:78', 'hash': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 30994.18247776134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x069032b00d4ea936d184', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:16:56.000Z'}}, {'blockNum': '0xa12fcc', 'uniqueId': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2:log:83', 'hash': '0x51cf53bc7f026b05aa52823c6d1c12c545e191201b3bc3e14fee14b9c96fa1a2', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 30994.18247776134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x069032b00d4ea936d184', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:16:56.000Z'}}, {'blockNum': '0xa12fe8', 'uniqueId': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc:log:2', 'hash': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 48481.97818242231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a44369b106240000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:22:20.000Z'}}, {'blockNum': '0xa12fe8', 'uniqueId': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc:log:4', 'hash': '0xb3d1be0e3c76bdc313e3a0cefc41f319725305da041ee32a4a8dd41fe5df5bbc', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 48481.97818242231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a44369b106240000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:22:20.000Z'}}, {'blockNum': '0xa12fe8', 'uniqueId': '0x9a733b3ea74dcbe9505f0964e4908dba47d3da3e463b62d6fcee6f4f4f9dd140:log:29', 'hash': '0x9a733b3ea74dcbe9505f0964e4908dba47d3da3e463b62d6fcee6f4f4f9dd140', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1235.95664235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x43005811d6a0444c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:22:20.000Z'}}, {'blockNum': '0xa12ff3', 'uniqueId': '0x20305c4b960e6c38eee849018ad787bac876d8e5e1b57d95b266dca778082f07:log:132', 'hash': '0x20305c4b960e6c38eee849018ad787bac876d8e5e1b57d95b266dca778082f07', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 1235.95664235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x43005811d6a0444c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:23:43.000Z'}}, {'blockNum': '0xa12ff9', 'uniqueId': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84:log:39', 'hash': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 48423.22128010875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4107309d097a08292c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:25:19.000Z'}}, {'blockNum': '0xa12ff9', 'uniqueId': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84:log:44', 'hash': '0x4640b0722ef61f971196b90b7b96295d2e70bfe1d434d1c4a28c8352f1a9db84', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 48423.22128010875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4107309d097a08292c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:25:19.000Z'}}, {'blockNum': '0xa13000', 'uniqueId': '0xba606507b59da5d661b81f1f52352ea0e64a8431d271cd935219d5c8289135b5:log:115', 'hash': '0xba606507b59da5d661b81f1f52352ea0e64a8431d271cd935219d5c8289135b5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2921.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9e5ff5033ac7b60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:27:08.000Z'}}, {'blockNum': '0xa13001', 'uniqueId': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25:log:89', 'hash': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 51708.31710276712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af31d0d7a8fa9ba92a4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:27:35.000Z'}}, {'blockNum': '0xa13001', 'uniqueId': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25:log:94', 'hash': '0xbe3a5f46fe8a46aab4dfcfb0d680a1b3deff19fa3ded99fd300b3254712f4b25', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 51708.31710276712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af31d0d7a8fa9ba92a4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:27:35.000Z'}}, {'blockNum': '0xa13006', 'uniqueId': '0xc2f37c362425f3e54c3782f8a305b41a89147f645e463d62fb040425ea6564dd:log:5', 'hash': '0xc2f37c362425f3e54c3782f8a305b41a89147f645e463d62fb040425ea6564dd', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 51708.31710276712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af31d0d7a8fa9ba92a4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:28:31.000Z'}}, {'blockNum': '0xa13009', 'uniqueId': '0xe9f024477931cd5030c56b425ca53bd192c65a12ba6b6c00f8fa4f08d7e276c5:log:68', 'hash': '0xe9f024477931cd5030c56b425ca53bd192c65a12ba6b6c00f8fa4f08d7e276c5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1559.51493763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x548a9e0d1c379dac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:02.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:141', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:146', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:147', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300d', 'uniqueId': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0:log:151', 'hash': '0x2b94d1d14369c84d85ed7188e663d9a478f183324c8b4d78020243f1fb9a91a0', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x2bde5d7733a578c3ff1c79c25b990917b316d084', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:29:58.000Z'}}, {'blockNum': '0xa1300f', 'uniqueId': '0x22f3aedff19a7626937d6f74aefb5571bc5ecf8480109a64355faa694d0f816f:log:172', 'hash': '0x22f3aedff19a7626937d6f74aefb5571bc5ecf8480109a64355faa694d0f816f', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 1559.51493763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x548a9e0d1c379dac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:30:40.000Z'}}, {'blockNum': '0xa13017', 'uniqueId': '0x5f47983459a2df3f7924ee8360f3b81cd744353e97530457329165121bd64e3b:log:45', 'hash': '0x5f47983459a2df3f7924ee8360f3b81cd744353e97530457329165121bd64e3b', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'value': 6915.40386948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0176e281ebe97d319000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:32:12.000Z'}}, {'blockNum': '0xa13018', 'uniqueId': '0x32498a2febc3e4a50c925132931917dca5d1f051f35863ce93e10feacfc8db2e:log:25', 'hash': '0x32498a2febc3e4a50c925132931917dca5d1f051f35863ce93e10feacfc8db2e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 824.8943411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2cb7b568c0bf683800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:32:33.000Z'}}, {'blockNum': '0xa13018', 'uniqueId': '0xa94223ea81f22c7c50fe4a66d6b9d251dd134532eea835e51dc3e6e40a9a7e99:log:26', 'hash': '0xa94223ea81f22c7c50fe4a66d6b9d251dd134532eea835e51dc3e6e40a9a7e99', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 786.1308698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2a9dc1e4fbb5db9000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:32:33.000Z'}}, {'blockNum': '0xa13027', 'uniqueId': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd:log:6', 'hash': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 40372.12240378733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x088c93bf81929d800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:34:45.000Z'}}, {'blockNum': '0xa13027', 'uniqueId': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd:log:8', 'hash': '0x118a64a53b137271d2881d6fba111b892cdec37196767a6f1604d0ed844da9fd', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 40372.12240378733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x088c93bf81929d800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:34:45.000Z'}}, {'blockNum': '0xa1303d', 'uniqueId': '0x60aba2382c8c424ef7222735edf1b70736fae759214c98ee8464af822eee207b:log:7', 'hash': '0x60aba2382c8c424ef7222735edf1b70736fae759214c98ee8464af822eee207b', 'from': '0x2bde5d7733a578c3ff1c79c25b990917b316d084', 'to': '0xece4870ceb3571bc66720a3283d526fe3871f913', 'value': 50163.15200512546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a9f59944ce44305bb23', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:39:35.000Z'}}, {'blockNum': '0xa1305a', 'uniqueId': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d:log:53', 'hash': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 39968.401179749446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0876b0fd9751254aeae9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:46:07.000Z'}}, {'blockNum': '0xa1305a', 'uniqueId': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d:log:55', 'hash': '0xf0fb10ad229356782e0bc13b37ac721ba29a1795b8d1f19414bffed745222d9d', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 39968.401179749446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0876b0fd9751254aeae9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:46:07.000Z'}}, {'blockNum': '0xa1306c', 'uniqueId': '0x627c6661dad47ec62160a0cc5bcfe8820a18e0c1ad4d344442cb01a717aa7768:log:77', 'hash': '0x627c6661dad47ec62160a0cc5bcfe8820a18e0c1ad4d344442cb01a717aa7768', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x47a542c63bd8cebd016aecf4d0a737cfa9067b3c', 'value': 1066.3165667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x39ce1d73d38b9fb800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:50:13.000Z'}}, {'blockNum': '0xa13075', 'uniqueId': '0x424a54c176ec1fd2efe95659896a7a589b4e4e260e72a19a7cf3940b61e88990:log:34', 'hash': '0x424a54c176ec1fd2efe95659896a7a589b4e4e260e72a19a7cf3940b61e88990', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd756f9b34d9a746b9029f06531e5123fe6b2779e', 'value': 5449.09664997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x012765683498a8eaf400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T22:52:44.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0xe9eb70894018ded72eb5e0de408a6c117f1f673099836e6228f0d630cb7b695b:log:211', 'hash': '0xe9eb70894018ded72eb5e0de408a6c117f1f673099836e6228f0d630cb7b695b', 'from': '0x53f3900b1f9764998f9df9d3c83d7c260f5444ea', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0201db8cf61b07bc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0x330539b5d92841b3bedcdb3dd0f18a3a556461b236b3316ba9c96be58ab38482:log:212', 'hash': '0x330539b5d92841b3bedcdb3dd0f18a3a556461b236b3316ba9c96be58ab38482', 'from': '0xe5592ba2dca5ae6793e17d5d190f8cd5c131ec01', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x020f239bd00a3a700000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0x0ea9e5db4bc06cd16790326865ef96d58bfced460004b4a9e9b70ca8fab0eff1:log:213', 'hash': '0x0ea9e5db4bc06cd16790326865ef96d58bfced460004b4a9e9b70ca8fab0eff1', 'from': '0xb12127552734c9d8ebe649332f98dba800fa2c16', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b2', 'uniqueId': '0xfc01a31d6f5261c209b396b802690aed249afca12388e96821b870c3dd5aa76e:log:214', 'hash': '0xfc01a31d6f5261c209b396b802690aed249afca12388e96821b870c3dd5aa76e', 'from': '0xc7eb2136e8904a94c044a4543b799f413f067754', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:07:59.000Z'}}, {'blockNum': '0xa130b8', 'uniqueId': '0x5cc77a189b17a34830bc914961f2a31d96bb2a913e1c914e754120f1b4a27525:log:96', 'hash': '0x5cc77a189b17a34830bc914961f2a31d96bb2a913e1c914e754120f1b4a27525', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 6500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01605d9ee98627100000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:09:09.000Z'}}, {'blockNum': '0xa130b9', 'uniqueId': '0xd533be0207ba5cd174b95ffb891bf594116f8011004d79c4cdb9d1ede05a960e:log:62', 'hash': '0xd533be0207ba5cd174b95ffb891bf594116f8011004d79c4cdb9d1ede05a960e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd756f9b34d9a746b9029f06531e5123fe6b2779e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:10:00.000Z'}}, {'blockNum': '0xa1314e', 'uniqueId': '0x50e2e9cda852072124b0199507ba1df9a4b604625aa566fb43ebae70ef4febe8:log:128', 'hash': '0x50e2e9cda852072124b0199507ba1df9a4b604625aa566fb43ebae70ef4febe8', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3732.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xca599e594ecc960000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:43:10.000Z'}}, {'blockNum': '0xa1314f', 'uniqueId': '0x0db7683214b26370aad7cba35c0c41d56512f241a63fb82dc0f70ec88cf8d14d:log:92', 'hash': '0x0db7683214b26370aad7cba35c0c41d56512f241a63fb82dc0f70ec88cf8d14d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2871.3805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9ba868c7862b854000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-30T23:43:39.000Z'}}, {'blockNum': '0xa131bf', 'uniqueId': '0x55141b9b9afc35e092b18035c1e419caed9dbcdc177ff507fb7314b75b84225c:log:75', 'hash': '0x55141b9b9afc35e092b18035c1e419caed9dbcdc177ff507fb7314b75b84225c', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x2b8f8806bd55425d25ede208337da00905f8f8ce', 'value': 3018.3657394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa3a03d3fff4a455000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:04:02.000Z'}}, {'blockNum': '0xa131c8', 'uniqueId': '0x3ecbd7ad182ac115f9e7e4afe07f293d82c7e122761de873e819d208f5dd11ca:log:31', 'hash': '0x3ecbd7ad182ac115f9e7e4afe07f293d82c7e122761de873e819d208f5dd11ca', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 3459.481661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xbb89f3d18f6354d000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:07:03.000Z'}}, {'blockNum': '0xa131ce', 'uniqueId': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b:log:29', 'hash': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 53554.383763457314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b57305fc1941c8f0507', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:08:38.000Z'}}, {'blockNum': '0xa131ce', 'uniqueId': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b:log:34', 'hash': '0xa79f1fbb8477cfcb69a8da812d621681c39acbaed87b5b5ebb9262a1d531154b', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 53554.383763457314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b57305fc1941c8f0507', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:08:38.000Z'}}, {'blockNum': '0xa131da', 'uniqueId': '0x6452a82a557989b0e46cbc2e9063c18ccba7afe79c76d7d9d29ec0cc383f3751:log:74', 'hash': '0x6452a82a557989b0e46cbc2e9063c18ccba7afe79c76d7d9d29ec0cc383f3751', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x81d8d46d2e1343960ae282088343a255331743ce', 'value': 1402.2815918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4c0490fe22c451b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:11:54.000Z'}}, {'blockNum': '0xa13206', 'uniqueId': '0x517613ce5f2276487af2aead5c552098b0262181c3ef22ba2e7eb8dab30c7112:log:92', 'hash': '0x517613ce5f2276487af2aead5c552098b0262181c3ef22ba2e7eb8dab30c7112', 'from': '0x7728156d25f977a2c76f10628404085b1433cb0e', 'to': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:22:41.000Z'}}, {'blockNum': '0xa13207', 'uniqueId': '0xc98eb80e1d5ab09cf8e2c377fa982a89907a8b1be73458a1941ef9458d3afc0f:log:56', 'hash': '0xc98eb80e1d5ab09cf8e2c377fa982a89907a8b1be73458a1941ef9458d3afc0f', 'from': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3633.64095148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc4fae5e98425cd3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:23:09.000Z'}}, {'blockNum': '0xa13216', 'uniqueId': '0x6867503b14a2a18572dacb69d1eaab4b899f4a55db2fb38bf634a2de9052b442:log:55', 'hash': '0x6867503b14a2a18572dacb69d1eaab4b899f4a55db2fb38bf634a2de9052b442', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:27:02.000Z'}}, {'blockNum': '0xa1321f', 'uniqueId': '0xb61138ce92cd45b29dd6be4c494151603af02bd82c3850eee9d207198ef82a71:log:259', 'hash': '0xb61138ce92cd45b29dd6be4c494151603af02bd82c3850eee9d207198ef82a71', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5fba47b0855d9863162aafbbafd08c1e770edb42', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:28:44.000Z'}}, {'blockNum': '0xa13257', 'uniqueId': '0x960827a11ca7563b36c49e84fbb8230320a48a4e854065ec17e440ca206ec0ff:log:29', 'hash': '0x960827a11ca7563b36c49e84fbb8230320a48a4e854065ec17e440ca206ec0ff', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:45:19.000Z'}}, {'blockNum': '0xa1325e', 'uniqueId': '0x0f77ae3763676c69a5b676bb8228bcf27cd30bde3569e66d04bc2668fe0ce84b:log:74', 'hash': '0x0f77ae3763676c69a5b676bb8228bcf27cd30bde3569e66d04bc2668fe0ce84b', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf057964df79946e3f65d054f1e1700d7085be1fe', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:46:55.000Z'}}, {'blockNum': '0xa13263', 'uniqueId': '0xf121e6c54bb331e2753403c7e30246312142ddee4f2e02bb5eafffed89f42203:log:79', 'hash': '0xf121e6c54bb331e2753403c7e30246312142ddee4f2e02bb5eafffed89f42203', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 3768.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xcc4d380a9256a60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:47:37.000Z'}}, {'blockNum': '0xa13266', 'uniqueId': '0x39cd1efbd508df857d701eac80dbe54e7ba6edf8ca52dfece9b083798ddba65f:log:226', 'hash': '0x39cd1efbd508df857d701eac80dbe54e7ba6edf8ca52dfece9b083798ddba65f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6029c0470a11fd0a3049f8d453ca477556630afd', 'value': 2899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9d27b4f470916c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:48:03.000Z'}}, {'blockNum': '0xa1326b', 'uniqueId': '0x51fc9a296270b6fe1cbf943b64c3a9f935012940f4a8044423972b0b5d133e25:log:30', 'hash': '0x51fc9a296270b6fe1cbf943b64c3a9f935012940f4a8044423972b0b5d133e25', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'value': 3898.4993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd3568bca3729024000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:49:47.000Z'}}, {'blockNum': '0xa13271', 'uniqueId': '0x7ee5a8f989186ad9d4a91e65a5a98cead999faf4aa8e0cd52eb6c0d5715f5ede:log:40', 'hash': '0x7ee5a8f989186ad9d4a91e65a5a98cead999faf4aa8e0cd52eb6c0d5715f5ede', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 206081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2ba3ac63a4111b640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:50:54.000Z'}}, {'blockNum': '0xa1327e', 'uniqueId': '0x913746da96bb663a455fe33861acdf53d3123c90822339187c45dce021ada1a2:log:32', 'hash': '0x913746da96bb663a455fe33861acdf53d3123c90822339187c45dce021ada1a2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3648.82167634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc5cd92ae586f0b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:53:13.000Z'}}, {'blockNum': '0xa13284', 'uniqueId': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435:log:26', 'hash': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 37676.45088886445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07fa71ca7107b7c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:54:34.000Z'}}, {'blockNum': '0xa13284', 'uniqueId': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435:log:28', 'hash': '0xdbe8f1cd5ace5bcf275e0704d380db58fc536258a35112df352167dfa1e77435', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 37676.45088886445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07fa71ca7107b7c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:54:34.000Z'}}, {'blockNum': '0xa13286', 'uniqueId': '0x01fa97fe8f03e54d74dea8eb41e8900dfe14071b082f2501f002b8a4222af0d3:log:44', 'hash': '0x01fa97fe8f03e54d74dea8eb41e8900dfe14071b082f2501f002b8a4222af0d3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x8fab7e51fd5b566450e725766fd1a3ad1fc97115', 'value': 3648.82167634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc5cd92ae586f0b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:54:51.000Z'}}, {'blockNum': '0xa13293', 'uniqueId': '0xaf7b70a36a56f48cb3c71e36cae55af517b39d5387e7fc19da7586f7b90a88e4:log:144', 'hash': '0xaf7b70a36a56f48cb3c71e36cae55af517b39d5387e7fc19da7586f7b90a88e4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 14403.55374821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x030cd1766cb2d73af400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T00:57:39.000Z'}}, {'blockNum': '0xa1329c', 'uniqueId': '0xab75642d0aa15bcfc1ee34df14d70c21ee3a18c217b2dd5a6e3e30d9644910b1:log:105', 'hash': '0xab75642d0aa15bcfc1ee34df14d70c21ee3a18c217b2dd5a6e3e30d9644910b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 804.70195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2b9f7ba0080625e000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:00:21.000Z'}}, {'blockNum': '0xa1329c', 'uniqueId': '0x71c0357c64c6662622bd20377072cb294820b90ff05760faae686e783bb2c328:log:202', 'hash': '0x71c0357c64c6662622bd20377072cb294820b90ff05760faae686e783bb2c328', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'value': 14403.55374821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x030cd1766cb2d73af400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:00:21.000Z'}}, {'blockNum': '0xa132ab', 'uniqueId': '0xc3d9e23d5748e29d301e738fcf45313615209a8985992437d0d6ed5416c3b423:log:35', 'hash': '0xc3d9e23d5748e29d301e738fcf45313615209a8985992437d0d6ed5416c3b423', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x47a542c63bd8cebd016aecf4d0a737cfa9067b3c', 'value': 979.5358988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3519ca9627acfae000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:04:17.000Z'}}, {'blockNum': '0xa132b2', 'uniqueId': '0x43641558161f1fb2991c5ea8670a1e0ac6bde37f5235ccf4f7c2d5521e7b8770:log:114', 'hash': '0x43641558161f1fb2991c5ea8670a1e0ac6bde37f5235ccf4f7c2d5521e7b8770', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 2160.581057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x752015e017ab011000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:06:09.000Z'}}, {'blockNum': '0xa132b4', 'uniqueId': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc:log:100', 'hash': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 37174.24832288791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07df3854840ec686deb3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:06:43.000Z'}}, {'blockNum': '0xa132b4', 'uniqueId': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc:log:105', 'hash': '0xf5be2e139f19e9b5d62e500cd98e5c855ccb206f3d886915e05c018cdcf61acc', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 37174.24832288791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07df3854840ec686deb3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:06:43.000Z'}}, {'blockNum': '0xa132d7', 'uniqueId': '0xfe764b2d47cd4841db203fe821ac410daabd6a36ea71405566cd73838759d291:log:31', 'hash': '0xfe764b2d47cd4841db203fe821ac410daabd6a36ea71405566cd73838759d291', 'from': '0x1c8ff99d90eda11f7d88d4ff247c89edfb74f8a1', 'to': '0x8003740dd12b7d1eb0e531606ba04f2b0cfabcd5', 'value': 194915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x29465d02b411ffac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:16:26.000Z'}}, {'blockNum': '0xa132df', 'uniqueId': '0x43382de31abfa353d6eb7ddcac2f67e001aec906902a59902e4259a0e5f5c3e4:log:120', 'hash': '0x43382de31abfa353d6eb7ddcac2f67e001aec906902a59902e4259a0e5f5c3e4', 'from': '0x8003740dd12b7d1eb0e531606ba04f2b0cfabcd5', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 194915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x29465d02b411ffac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:17:45.000Z'}}, {'blockNum': '0xa132e4', 'uniqueId': '0xe3fabb3a1a111e86e5f40fe502dc2c0fa92a9be56e95175c343faf202950bb6b:log:35', 'hash': '0xe3fabb3a1a111e86e5f40fe502dc2c0fa92a9be56e95175c343faf202950bb6b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 615.78223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2161b1f3a183e36000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:18:50.000Z'}}, {'blockNum': '0xa132e6', 'uniqueId': '0xe86387786fa0f74200fcd9b608902e90bdce95aa019e7a5b4c1634d1427bf657:log:23', 'hash': '0xe86387786fa0f74200fcd9b608902e90bdce95aa019e7a5b4c1634d1427bf657', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x47a542c63bd8cebd016aecf4d0a737cfa9067b3c', 'value': 1026.186774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x37a133c9fb820f6000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:19:27.000Z'}}, {'blockNum': '0xa132f3', 'uniqueId': '0x1a730d2fe8c901e725e9aa5784538ed951df17b0c2223106d20386434f2ef44d:log:49', 'hash': '0x1a730d2fe8c901e725e9aa5784538ed951df17b0c2223106d20386434f2ef44d', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xcad2ce7031d6c4cf127b5266fbeda7d29ee7d037', 'value': 10705.11866091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0244535d7ff2b9ea4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:22:13.000Z'}}, {'blockNum': '0xa132f6', 'uniqueId': '0xb837934f67b1b368f928732072065b5f867c2efcd2c5a46d52dba9a93b52ae85:log:62', 'hash': '0xb837934f67b1b368f928732072065b5f867c2efcd2c5a46d52dba9a93b52ae85', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb5e9b91cbdb6f20a2402c9e7778c000ede848074', 'value': 601.59785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x209cd8e92c48bba000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:22:53.000Z'}}, {'blockNum': '0xa132f9', 'uniqueId': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9:log:32', 'hash': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 45320.95881191826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0998daa64eb571800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:23:43.000Z'}}, {'blockNum': '0xa132f9', 'uniqueId': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9:log:34', 'hash': '0x5707624294965c4cb6310ff6aee311accf2ea0153a8c7ad475f86902ab8609a9', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 45320.95881191826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0998daa64eb571800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:23:43.000Z'}}, {'blockNum': '0xa13308', 'uniqueId': '0x92c3b91cbab7e0a35d02c1aaae4c8f56787ffe8de37a9bb710b9d72014f10092:log:2', 'hash': '0x92c3b91cbab7e0a35d02c1aaae4c8f56787ffe8de37a9bb710b9d72014f10092', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x4c0c9ae0f86e213aec513187011a3573eeafa01c', 'value': 6401.52770884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015b070b0e714c6c9000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:26:24.000Z'}}, {'blockNum': '0xa1330e', 'uniqueId': '0x27d39e9e7bb172b0da4c388ad1bbd75a024a2bfa889fc5ccff82eff902d71d40:log:118', 'hash': '0x27d39e9e7bb172b0da4c388ad1bbd75a024a2bfa889fc5ccff82eff902d71d40', 'from': '0xcad2ce7031d6c4cf127b5266fbeda7d29ee7d037', 'to': '0xc94eb594e8c11c65b3f81bfdf61a5682084cb06a', 'value': 10705.11866091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0244535d7ff2b9ea4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:28:40.000Z'}}, {'blockNum': '0xa1332c', 'uniqueId': '0x49ce84b0d0aef44eb46aeb7418d9e6762157772afe3e21c01df1b2632d0bbce1:log:59', 'hash': '0x49ce84b0d0aef44eb46aeb7418d9e6762157772afe3e21c01df1b2632d0bbce1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 79925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10ecbe30c73387b40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T01:34:19.000Z'}}, {'blockNum': '0xa133b6', 'uniqueId': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e:log:52', 'hash': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 7731.222385562515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a31c4385e5b9d5e3ba', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:06:54.000Z'}}, {'blockNum': '0xa133b6', 'uniqueId': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e:log:54', 'hash': '0xe4d0fd0cf5429df7e450dba64a72797e89a46dc5467000f52e92fcc04feb274e', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7731.222385562515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a31c4385e5b9d5e3ba', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:06:54.000Z'}}, {'blockNum': '0xa13401', 'uniqueId': '0x5d22a24f5fe057e5080a0737936cebdd5ecb10e956260468533848f0695405b4:log:199', 'hash': '0x5d22a24f5fe057e5080a0737936cebdd5ecb10e956260468533848f0695405b4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 16276.01157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03725308f0e8eddd2000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:22:17.000Z'}}, {'blockNum': '0xa13402', 'uniqueId': '0xb195051e06f123fe76f6ccbfa3a51f58a368b6b5099f29f02115620604a41234:log:24', 'hash': '0xb195051e06f123fe76f6ccbfa3a51f58a368b6b5099f29f02115620604a41234', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xa51eea2f9ba9be60c960170012c8632ce7a76e62', 'value': 14578.4132661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03164c2039c62cbe0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:23:12.000Z'}}, {'blockNum': '0xa13435', 'uniqueId': '0x3f993ed75c817deef4fcd95fed50ec07ecfbf4aa565e449c9b766ec6a59a284d:log:253', 'hash': '0x3f993ed75c817deef4fcd95fed50ec07ecfbf4aa565e449c9b766ec6a59a284d', 'from': '0x2b8f8806bd55425d25ede208337da00905f8f8ce', 'to': '0xbd2c32cf60da2ec939ea674b80dc5cdd21852a2b', 'value': 3018.3657394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa3a03d3fff4a455000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:34:05.000Z'}}, {'blockNum': '0xa1343b', 'uniqueId': '0xa0aa0e956a43ff65267df8723c0d15d88dfbfc4dd4fc867ed2aefb0d74f12e04:log:42', 'hash': '0xa0aa0e956a43ff65267df8723c0d15d88dfbfc4dd4fc867ed2aefb0d74f12e04', 'from': '0xbd2c32cf60da2ec939ea674b80dc5cdd21852a2b', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 3018.3657394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa3a03d3fff4a455000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:35:34.000Z'}}, {'blockNum': '0xa13470', 'uniqueId': '0x0b6a00588c32f8557c147cebd3af188d625ce3c405ffa7c946ecaf84107ce950:log:12', 'hash': '0x0b6a00588c32f8557c147cebd3af188d625ce3c405ffa7c946ecaf84107ce950', 'from': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'to': '0x5821c4892521530d6d6f49c9fb5214ecd813aae6', 'value': 15002.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x032d434ee73777408000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:45:53.000Z'}}, {'blockNum': '0xa13471', 'uniqueId': '0x4871f1c6b9b0f8574973bbad78911b7c219dd530fcd3e87a1e284a3e5a791f89:log:80', 'hash': '0x4871f1c6b9b0f8574973bbad78911b7c219dd530fcd3e87a1e284a3e5a791f89', 'from': '0x5821c4892521530d6d6f49c9fb5214ecd813aae6', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 15002.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x032d434ee73777408000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:45:59.000Z'}}, {'blockNum': '0xa13471', 'uniqueId': '0xb7d33fd416a1b061977a2e5daf9ab2365f75181207d1ae8a44fa0278b6aaaa0d:log:189', 'hash': '0xb7d33fd416a1b061977a2e5daf9ab2365f75181207d1ae8a44fa0278b6aaaa0d', 'from': '0x17c980113aeda8034d1ba0df506a12cd9e0b6334', 'to': '0x415ad5489d25d61a7fad58406036951f6d929991', 'value': 3300.00004821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb2e4b34fb288fcb400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:45:59.000Z'}}, {'blockNum': '0xa13473', 'uniqueId': '0x0e8a27eb65392f4442d25f656969d7c6b9768623190757cb148ebd3603913ca8:log:7', 'hash': '0x0e8a27eb65392f4442d25f656969d7c6b9768623190757cb148ebd3603913ca8', 'from': '0x415ad5489d25d61a7fad58406036951f6d929991', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3300.00004821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb2e4b34fb288fcb400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T02:46:58.000Z'}}, {'blockNum': '0xa134b8', 'uniqueId': '0x43f8dd66276b49a979258a3ea776e25c9c2458daed1605aeba3eac88e6fd3d65:log:4', 'hash': '0x43f8dd66276b49a979258a3ea776e25c9c2458daed1605aeba3eac88e6fd3d65', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1fc534bd170174ef9e00dd790df8c99ee3c541c0', 'value': 639.08075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x22a506ec214c38e000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:02:50.000Z'}}, {'blockNum': '0xa134c6', 'uniqueId': '0x6bb2a1805238085a09282c8e944a7a95519c0bc614b647a3ffc0ed8c9dc9b038:log:33', 'hash': '0x6bb2a1805238085a09282c8e944a7a95519c0bc614b647a3ffc0ed8c9dc9b038', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 98160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x14c943a6b607d7c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:06:11.000Z'}}, {'blockNum': '0xa13551', 'uniqueId': '0xf0993ece0171051b0c4db06d97280b5e3baa279c1e7d9f320d3d35146f3b4767:log:124', 'hash': '0xf0993ece0171051b0c4db06d97280b5e3baa279c1e7d9f320d3d35146f3b4767', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1143.90905225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3e02ed5654db010400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:36:34.000Z'}}, {'blockNum': '0xa13557', 'uniqueId': '0xb1e6414f98e614fa49adf16f8a08a01f22fa99bd4aee718a85f840d565d7ad7a:log:57', 'hash': '0xb1e6414f98e614fa49adf16f8a08a01f22fa99bd4aee718a85f840d565d7ad7a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbdb090818dc1e8b77c8b7fe31e7343abc5db2d03', 'value': 1143.90905225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3e02ed5654db010400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:38:24.000Z'}}, {'blockNum': '0xa1357f', 'uniqueId': '0x7388220577bd5a18365b9da74146c090c315b924ce1e61a3149208cde9fc14d5:log:12', 'hash': '0x7388220577bd5a18365b9da74146c090c315b924ce1e61a3149208cde9fc14d5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1192.51155671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x40a56c1ea177a47c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-31T03:48:47.000Z'}}]}}
Number of returned transfers:  164
Answer is complete
 
symbol             NXS
group              BPF
date        2020-08-02
hour             16:00
exchange       binance
Name: 840, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-08-02 16:00:00 2020-08-02 04:00:00 2020-08-03 04:00:00
Unix timestamps:  1596333600.0 1596420000.0
Hex Block Numbers:  0xa1669a 0xa17fb0
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             PPT
group              BPF
date        2020-08-04
hour             18:00
exchange       binance
Name: 841, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-08-04 18:00:00 2020-08-04 06:00:00 2020-08-05 06:00:00
Unix timestamps:  1596513600.0 1596600000.0
Hex Block Numbers:  0xa19b32 0xa1b459
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa19b3b', 'uniqueId': '0x9632547eb752e61fd2845023430266e3d2fd4251041f716a6d906fe60c4ccf3c:log:113', 'hash': '0x9632547eb752e61fd2845023430266e3d2fd4251041f716a6d906fe60c4ccf3c', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0xcf30e8ffbfb50cf340f29af334a74eee9a878b83', 'value': 140.8040339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034741e7be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:02:09.000Z'}}, {'blockNum': '0xa19b3c', 'uniqueId': '0x25ceb90ebafe0389f1485228ef4018b53ad65fc94a67548a238c22ea90499223:log:146', 'hash': '0x25ceb90ebafe0389f1485228ef4018b53ad65fc94a67548a238c22ea90499223', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0xb9c26242912d05773b100dd54dc035239e2eb79d', 'value': 1054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x188a545e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:02:17.000Z'}}, {'blockNum': '0xa19b42', 'uniqueId': '0xb2881bc599f74625d7a8653d7648a265dd444dbd32161ec9efc3e0180fb61656:log:37', 'hash': '0xb2881bc599f74625d7a8653d7648a265dd444dbd32161ec9efc3e0180fb61656', 'from': '0xb9c26242912d05773b100dd54dc035239e2eb79d', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 1054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x188a545e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:03:31.000Z'}}, {'blockNum': '0xa19b43', 'uniqueId': '0x37bff7dd08cc4b1e122b9542642d08d220be486edb020570293f083c540d47ae:log:29', 'hash': '0x37bff7dd08cc4b1e122b9542642d08d220be486edb020570293f083c540d47ae', 'from': '0xcf30e8ffbfb50cf340f29af334a74eee9a878b83', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 140.8040339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034741e7be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:03:37.000Z'}}, {'blockNum': '0xa19c49', 'uniqueId': '0xe9fc8a8ac9981b446e1ffb8d363087d6f76593a1af6a8f5102d4b33fa0ebe533:log:9', 'hash': '0xe9fc8a8ac9981b446e1ffb8d363087d6f76593a1af6a8f5102d4b33fa0ebe533', 'from': '0x7e0d57959c438b7ca4f697f9719c32edbac57ee1', 'to': '0x1b4808b4ece681f043c74d41c32c32a3e0b7c060', 'value': 14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53724e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:05:57.000Z'}}, {'blockNum': '0xa19cad', 'uniqueId': '0x865ee03a269de534a5aec5835ea82be67cd924f0a96ce4ab87e35cc8429aa384:log:82', 'hash': '0x865ee03a269de534a5aec5835ea82be67cd924f0a96ce4ab87e35cc8429aa384', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2504.636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a50cb3d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:26:25.000Z'}}, {'blockNum': '0xa19d17', 'uniqueId': '0x637f0fb01ea2aa53726947e09beae4e57a8d1414633134945bf5f69b40cc543d:log:205', 'hash': '0x637f0fb01ea2aa53726947e09beae4e57a8d1414633134945bf5f69b40cc543d', 'from': '0x6ba29682abdf39ad6cf291e547cb59e82b0bbdc6', 'to': '0x91ed9ed1137951be5fc49fcb52639149ea528542', 'value': 33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc4b20100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:51:44.000Z'}}, {'blockNum': '0xa19de0', 'uniqueId': '0x9c145838a0facf085b57864b5180e831b56f5fab032777d1fa52c42764c541a3:log:149', 'hash': '0x9c145838a0facf085b57864b5180e831b56f5fab032777d1fa52c42764c541a3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x59c3106583946e7424c20598f169f6a9969db0bd', 'value': 208.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04d8d97880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T06:35:25.000Z'}}, {'blockNum': '0xa19e0d', 'uniqueId': '0xc8ce5e6a0ace8d741ff8efe7dc75a3d960ff52d7c0e3080ef457bfe6033677fb:log:94', 'hash': '0xc8ce5e6a0ace8d741ff8efe7dc75a3d960ff52d7c0e3080ef457bfe6033677fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab33ab33fbf77da6555d05c7d0f0874c7cb835ca', 'value': 5101.77316868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76c8f01004', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T06:47:38.000Z'}}, {'blockNum': '0xa19e78', 'uniqueId': '0x8430d7145033be43aa155d7ff997f30f4a4a512226c78c00db29f07063fb0f80:log:52', 'hash': '0x8430d7145033be43aa155d7ff997f30f4a4a512226c78c00db29f07063fb0f80', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1f1d77efdbbbc586174d8d9032d2b83c1ac192c6', 'value': 249.90766037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d190d3d5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T07:14:48.000Z'}}, {'blockNum': '0xa19fb0', 'uniqueId': '0x8efdf13f08fa0b00f6bf56014742cf7e6fc4adcb3cc74c86043a1cd8f21a7ec8:log:74', 'hash': '0x8efdf13f08fa0b00f6bf56014742cf7e6fc4adcb3cc74c86043a1cd8f21a7ec8', 'from': '0xfa839459188b6eeb856765e8f091f9c4dae843f8', 'to': '0x59f6c2698e7cb4dca3236a65d95f6a51c79b0e34', 'value': 5502.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x801ec46000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:27:34.000Z'}}, {'blockNum': '0xa19fb8', 'uniqueId': '0xb243e1cef7be7dc8465ec07dbd9d96e86609d96ddd55c98927a6905e62724cf4:log:83', 'hash': '0xb243e1cef7be7dc8465ec07dbd9d96e86609d96ddd55c98927a6905e62724cf4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb445ad9c7d2343acb6209a4997cdce4ad05933bc', 'value': 368.53461538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0894a33222', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:29:00.000Z'}}, {'blockNum': '0xa19ff5', 'uniqueId': '0xe4648b4f3445dd69d2a963696f4974c6a1821f1c23c99a6a73b0de2235c13b8b:log:59', 'hash': '0xe4648b4f3445dd69d2a963696f4974c6a1821f1c23c99a6a73b0de2235c13b8b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2312.791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x35d94f0060', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:40:40.000Z'}}, {'blockNum': '0xa19ffb', 'uniqueId': '0x4f6795376859cf0a4dd16c1c9db1dd38252572384a3961971506ca34bbd62d53:log:82', 'hash': '0x4f6795376859cf0a4dd16c1c9db1dd38252572384a3961971506ca34bbd62d53', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1328.565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1eeedd4f20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:42:00.000Z'}}, {'blockNum': '0xa1a011', 'uniqueId': '0xb2d3bf56347a92daf081b96a17370cee0b98bfe7eac717f720cb4761eec19252:log:76', 'hash': '0xb2d3bf56347a92daf081b96a17370cee0b98bfe7eac717f720cb4761eec19252', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3928.795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5b79716ae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:48:03.000Z'}}, {'blockNum': '0xa1a05a', 'uniqueId': '0xb395aa88f2515531e29d3e304c1245fd0e0062e5440ec8b4321636a345ad9165:log:38', 'hash': '0xb395aa88f2515531e29d3e304c1245fd0e0062e5440ec8b4321636a345ad9165', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 116.79014201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b81f9d39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:06:57.000Z'}}, {'blockNum': '0xa1a071', 'uniqueId': '0x2e0dabf648385dea43b347881d5c915ce715f42aa063b011e374ef86985ecd1c:log:105', 'hash': '0x2e0dabf648385dea43b347881d5c915ce715f42aa063b011e374ef86985ecd1c', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x6a4583839ea1e750407bb37e33ba276b3786ab2c', 'value': 116.79014201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b81f9d39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:12:55.000Z'}}, {'blockNum': '0xa1a0a8', 'uniqueId': '0x2805a88a4c067e6c1385ce3550375c8f80bca04877303275a36b01d7029f56f4:log:21', 'hash': '0x2805a88a4c067e6c1385ce3550375c8f80bca04877303275a36b01d7029f56f4', 'from': '0xd7a99b3d848be7ccb0ef3f97428b94556aa670bd', 'to': '0xf3874a84d9e45d8e0168d2e0d80e18719bf0f07f', 'value': 100.81065516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258e0da2c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:17.000Z'}}, {'blockNum': '0xa1a0ab', 'uniqueId': '0xc7ab64fe79a41efc7e0bb1b4956c431ae9b609ad5814f5fba51d0d37a9220545:log:52', 'hash': '0xc7ab64fe79a41efc7e0bb1b4956c431ae9b609ad5814f5fba51d0d37a9220545', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 106.20211471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027903910f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:49.000Z'}}, {'blockNum': '0xa1a0ac', 'uniqueId': '0x3d0983530ca36145261a6124c64d74720451d3b967a096f156caa8ec0a01871e:log:28', 'hash': '0x3d0983530ca36145261a6124c64d74720451d3b967a096f156caa8ec0a01871e', 'from': '0xf3874a84d9e45d8e0168d2e0d80e18719bf0f07f', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 100.81065516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258e0da2c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:54.000Z'}}, {'blockNum': '0xa1a0b2', 'uniqueId': '0xcfa6839010cfaa70faa8a2c49e550e46a22f326b4533f5291c6ef6610f9191a8:log:88', 'hash': '0xcfa6839010cfaa70faa8a2c49e550e46a22f326b4533f5291c6ef6610f9191a8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd010f5b0994119425652c224b81d4cc17971c835', 'value': 106.20211471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027903910f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:27:17.000Z'}}, {'blockNum': '0xa1a16e', 'uniqueId': '0x27341f7d18c76e20f72ff2ccbcacbd144d33dfa9d5b3b13030e23eb55234552a:log:174', 'hash': '0x27341f7d18c76e20f72ff2ccbcacbd144d33dfa9d5b3b13030e23eb55234552a', 'from': '0x9586dfb843b02de79dcffb5b4e7738eba721827a', 'to': '0xf849a4874d529166da7515e22efbf2f1a8bf116c', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:07:22.000Z'}}, {'blockNum': '0xa1a1c7', 'uniqueId': '0x4a346cc1d441c4facd5587f9648c52e7f26767e520562962be87c761199aa82d:log:37', 'hash': '0x4a346cc1d441c4facd5587f9648c52e7f26767e520562962be87c761199aa82d', 'from': '0x9586dfb843b02de79dcffb5b4e7738eba721827a', 'to': '0xf849a4874d529166da7515e22efbf2f1a8bf116c', 'value': 7.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a057240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:27:01.000Z'}}, {'blockNum': '0xa1a1f1', 'uniqueId': '0xebd18e07d07dd491ef695a8201dfbfb9cda1a2b84b30ad4304ca886613b64ea8:log:46', 'hash': '0xebd18e07d07dd491ef695a8201dfbfb9cda1a2b84b30ad4304ca886613b64ea8', 'from': '0x59f6c2698e7cb4dca3236a65d95f6a51c79b0e34', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 5502.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x801ec46000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:37:33.000Z'}}, {'blockNum': '0xa1a238', 'uniqueId': '0x486f523b5253dfe210b5aa78a07dfb1693ca13b3f1536aa556e2b5694bf55725:log:104', 'hash': '0x486f523b5253dfe210b5aa78a07dfb1693ca13b3f1536aa556e2b5694bf55725', 'from': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'to': '0x4eebe2a7a91fe38fcd22c8fb17e605243a26fc58', 'value': 69.43564357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019dde6245', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:52:49.000Z'}}, {'blockNum': '0xa1a2c8', 'uniqueId': '0xecee9d6ee332adae214b8533b3c86eb6e88d3848b2944993cd793f85aecd4c1b:log:41', 'hash': '0xecee9d6ee332adae214b8533b3c86eb6e88d3848b2944993cd793f85aecd4c1b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1355911d3327533471548423898ec3e05fdd7e2e', 'value': 1833.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aaf8a41a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:25:34.000Z'}}, {'blockNum': '0xa1a2f1', 'uniqueId': '0x80cc03f5ee335771afa2fe37de2ce8dc80ae315739332fb991702b4a980bf70c:log:92', 'hash': '0x80cc03f5ee335771afa2fe37de2ce8dc80ae315739332fb991702b4a980bf70c', 'from': '0x1355911d3327533471548423898ec3e05fdd7e2e', 'to': '0x3a6c03a03fee972766742eb7f891ff755f6335d1', 'value': 1833.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aaf8a41a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:32:37.000Z'}}, {'blockNum': '0xa1a357', 'uniqueId': '0x68c6d5f1433db0d116a5e7ea9b3a8006bb29eb9efdafea3a32d4294b0d4551fe:log:6', 'hash': '0x68c6d5f1433db0d116a5e7ea9b3a8006bb29eb9efdafea3a32d4294b0d4551fe', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xc19a2756366d18187ea039642f09bb7515253f45', 'value': 142.31753973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03504754f5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:57:47.000Z'}}, {'blockNum': '0xa1a36a', 'uniqueId': '0x5882cbc9fdc87e934038a92ba862ce78cb1a2920a1a30a484e5f80e685a27d85:log:27', 'hash': '0x5882cbc9fdc87e934038a92ba862ce78cb1a2920a1a30a484e5f80e685a27d85', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 142.317539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03504754ac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T12:02:17.000Z'}}, {'blockNum': '0xa1a3a5', 'uniqueId': '0x77ee8b3ab7059baad555211b0b2d5a783b8344fd254d3eb12c010b46801e3179:log:227', 'hash': '0x77ee8b3ab7059baad555211b0b2d5a783b8344fd254d3eb12c010b46801e3179', 'from': '0x2cd197c63040796000a6ae0b66ec65b94cea4d84', 'to': '0x4246af949ef88ebd605751fc0ffeaa2bebdcb60d', 'value': 37.27231999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xde290bff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T12:16:27.000Z'}}, {'blockNum': '0xa1a543', 'uniqueId': '0xf32c7864872f5a17266ec044f9683433efa5890de6442382a4b544a547ca8981:log:172', 'hash': '0xf32c7864872f5a17266ec044f9683433efa5890de6442382a4b544a547ca8981', 'from': '0x4eebe2a7a91fe38fcd22c8fb17e605243a26fc58', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 69.43564357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019dde6245', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T13:36:34.000Z'}}, {'blockNum': '0xa1a5d9', 'uniqueId': '0xc8f2e997b86d3913fbe82250ec3bf359403143e5a6d441c6e151028873c3a821:log:110', 'hash': '0xc8f2e997b86d3913fbe82250ec3bf359403143e5a6d441c6e151028873c3a821', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0x4e90d437329eea593529f84c3600cac76ccb3256', 'value': 948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1612853400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T14:05:55.000Z'}}, {'blockNum': '0xa1a5e5', 'uniqueId': '0x52c7d04c1705145b858ad2385d24aee8dbaacb2e3fd07aad060bcfd617583958:log:6', 'hash': '0x52c7d04c1705145b858ad2385d24aee8dbaacb2e3fd07aad060bcfd617583958', 'from': '0x4e90d437329eea593529f84c3600cac76ccb3256', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1612853400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T14:08:13.000Z'}}, {'blockNum': '0xa1a7ec', 'uniqueId': '0xf358f57dd362938b7d05bc7edb357539bc39cac92d82fad3cbc0c34775586f61:log:7', 'hash': '0xf358f57dd362938b7d05bc7edb357539bc39cac92d82fad3cbc0c34775586f61', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9a8b70704ab430f93272813a9fc3075af36b2de8', 'value': 3545.623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528d8f5860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:03:13.000Z'}}, {'blockNum': '0xa1a7f1', 'uniqueId': '0xc31c9903a68dc2706e8168c5c0408e1bcaededa00f99ccbe0c23381e56f382ab:log:127', 'hash': '0xc31c9903a68dc2706e8168c5c0408e1bcaededa00f99ccbe0c23381e56f382ab', 'from': '0x9a8b70704ab430f93272813a9fc3075af36b2de8', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 3545.623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528d8f5860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:04:13.000Z'}}, {'blockNum': '0xa1a81e', 'uniqueId': '0xdc7d6d878b7e1dfdc936152c912402734d24fd47b4e5ace6992ca7429806862b:log:55', 'hash': '0xdc7d6d878b7e1dfdc936152c912402734d24fd47b4e5ace6992ca7429806862b', 'from': '0x8da4a02499a4abd011a5b61af52150d99e92c068', 'to': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'value': 200.75900756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ac9def54', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:15:01.000Z'}}, {'blockNum': '0xa1a81f', 'uniqueId': '0xd758f8d1346c9c813a7950b6f2cf5a4e2c2f45b9a6877ff49d7be094d6174e5c:log:95', 'hash': '0xd758f8d1346c9c813a7950b6f2cf5a4e2c2f45b9a6877ff49d7be094d6174e5c', 'from': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 200.75900756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ac9def54', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:15:28.000Z'}}, {'blockNum': '0xa1a82e', 'uniqueId': '0xffb940effa905ba6f8791c4f97e4d6238af68bb44f87e996ae69d49e6625bee3:log:5', 'hash': '0xffb940effa905ba6f8791c4f97e4d6238af68bb44f87e996ae69d49e6625bee3', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x3f83fbff779590d8475e7ddf11c1af11731abbcf', 'value': 3546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528fce9a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:19:06.000Z'}}, {'blockNum': '0xa1a877', 'uniqueId': '0xe79596be32ec0d9919c60ee316524d11d606fe9831555ef14001e4c9a6bdebe9:log:157', 'hash': '0xe79596be32ec0d9919c60ee316524d11d606fe9831555ef14001e4c9a6bdebe9', 'from': '0x3f83fbff779590d8475e7ddf11c1af11731abbcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528fce9a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:36:05.000Z'}}, {'blockNum': '0xa1a8c4', 'uniqueId': '0x37d6b17169589a0b44bda4f01dfa0815ea677118513e1b394fce5e8237e9b108:log:27', 'hash': '0x37d6b17169589a0b44bda4f01dfa0815ea677118513e1b394fce5e8237e9b108', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x641704311dd7e7b6ff340e2fc2a98f2002bb8e6f', 'value': 4992.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x743bd19fc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:54:02.000Z'}}, {'blockNum': '0xa1a8eb', 'uniqueId': '0xd28d7ae9780a56c346b01f58aefe3176fca6ccb4c18e4f2035d28976b895c64e:log:101', 'hash': '0xd28d7ae9780a56c346b01f58aefe3176fca6ccb4c18e4f2035d28976b895c64e', 'from': '0xee155572635ae7d1f4e30ec3179ce65b5342cb17', 'to': '0x1ac963003b29fcdca2d5f509e46063eb88b55a27', 'value': 204447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12982714bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:00:34.000Z'}}, {'blockNum': '0xa1a95a', 'uniqueId': '0x8510a4ffb0774ea094cc24c62fdf8bd73141cf49c20c9d1b82dea002a8fbf81e:log:2', 'hash': '0x8510a4ffb0774ea094cc24c62fdf8bd73141cf49c20c9d1b82dea002a8fbf81e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9db81f3235c5e3823547178165a24f1d81fa5cb3', 'value': 797.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1290b82ac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:24:20.000Z'}}, {'blockNum': '0xa1a974', 'uniqueId': '0xbbf8223f803bf8a9af948f11a6dbcddd150162359613a0bf11fe2b4488a19388:log:273', 'hash': '0xbbf8223f803bf8a9af948f11a6dbcddd150162359613a0bf11fe2b4488a19388', 'from': '0x1ac963003b29fcdca2d5f509e46063eb88b55a27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 204447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12982714bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:30:54.000Z'}}, {'blockNum': '0xa1a9f0', 'uniqueId': '0xab8de5f3f2dc0b8abd0ab993587a814945a5fb881df4b3c0d2bcf1f151a43645:log:119', 'hash': '0xab8de5f3f2dc0b8abd0ab993587a814945a5fb881df4b3c0d2bcf1f151a43645', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 308.451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x072e82dfe0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:00:23.000Z'}}, {'blockNum': '0xa1a9f4', 'uniqueId': '0x2d6c032630f5edaef16095f4c410c42e4b44009dbefd0a434e9a27b5b05636e7:log:101', 'hash': '0x2d6c032630f5edaef16095f4c410c42e4b44009dbefd0a434e9a27b5b05636e7', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f0a75c600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:00:56.000Z'}}, {'blockNum': '0xa1a9f8', 'uniqueId': '0x01a9fdf504af5f2a79d1b059870339cfd183e04ca83d8ac3249374ed5c746a2c:log:123', 'hash': '0x01a9fdf504af5f2a79d1b059870339cfd183e04ca83d8ac3249374ed5c746a2c', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1042.60071783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1846627167', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:01:27.000Z'}}, {'blockNum': '0xa1a9fa', 'uniqueId': '0xee6f3be3f7f97429287219201b4486e72f68562c82181fcd2ef16b5fb0f9680d:log:8', 'hash': '0xee6f3be3f7f97429287219201b4486e72f68562c82181fcd2ef16b5fb0f9680d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1831.382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aa3e329c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:02:10.000Z'}}, {'blockNum': '0xa1a9fb', 'uniqueId': '0x457c42bca555ff764e6e4fc3750791775c509e8a29a85c628ec637f74967155d:log:42', 'hash': '0x457c42bca555ff764e6e4fc3750791775c509e8a29a85c628ec637f74967155d', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 15.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5a4d10c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:02:26.000Z'}}, {'blockNum': '0xa1aa01', 'uniqueId': '0x16df7e25844cabe32e4a02a85b503dee3f227d5b5c75241f02bee845bd351258:log:82', 'hash': '0x16df7e25844cabe32e4a02a85b503dee3f227d5b5c75241f02bee845bd351258', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 558.40524141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0d005ac76d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:03:56.000Z'}}, {'blockNum': '0xa1aa08', 'uniqueId': '0x51cc8a17c9d5bc30bb38e436d44d1fefb444c3e70d3ccc8835a1096a9ae4e765:log:15', 'hash': '0x51cc8a17c9d5bc30bb38e436d44d1fefb444c3e70d3ccc8835a1096a9ae4e765', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'value': 7569.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb04004cae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:05:48.000Z'}}, {'blockNum': '0xa1aa08', 'uniqueId': '0x72f9660a01661d724cd154dd7cf271bb666d5de4d0c473f1c6056894ea931916:log:16', 'hash': '0x72f9660a01661d724cd154dd7cf271bb666d5de4d0c473f1c6056894ea931916', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3ae203c100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:05:48.000Z'}}, {'blockNum': '0xa1aa16', 'uniqueId': '0x7799d24ab671b0bf6c96a3b99a592f2586f8ff337146c4c343f30661f0c57ff5:log:12', 'hash': '0x7799d24ab671b0bf6c96a3b99a592f2586f8ff337146c4c343f30661f0c57ff5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 1787.48203421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x299e39219d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:09:35.000Z'}}, {'blockNum': '0xa1aa28', 'uniqueId': '0x01c979045c770eccb6f59627bc468d9be98d680acec107f657c1e31f08e7cace:log:2', 'hash': '0x01c979045c770eccb6f59627bc468d9be98d680acec107f657c1e31f08e7cace', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 42.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xfb3bcbc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:13:41.000Z'}}, {'blockNum': '0xa1aa3a', 'uniqueId': '0x267ebb576f7d40e5c28675bf7e8b61cb2abca4ab71ed5fd42a12566f55372561:log:6', 'hash': '0x267ebb576f7d40e5c28675bf7e8b61cb2abca4ab71ed5fd42a12566f55372561', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:17:55.000Z'}}, {'blockNum': '0xa1aa3b', 'uniqueId': '0x35829d3bb1efdd81bfe0f8d04e47e58992e1ad474abbb156623f54fd0264c765:log:87', 'hash': '0x35829d3bb1efdd81bfe0f8d04e47e58992e1ad474abbb156623f54fd0264c765', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 616.506789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e5aaab474', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:17:59.000Z'}}, {'blockNum': '0xa1aa6f', 'uniqueId': '0x7948853b3d0a86ce0f1256831bc871abba4c9d089599cd2a807dab46a94bbf4b:log:183', 'hash': '0x7948853b3d0a86ce0f1256831bc871abba4c9d089599cd2a807dab46a94bbf4b', 'from': '0x31ab026b0d7cbe541bfe92f418636a7d69357aa7', 'to': '0xee458347b8bcb1335bd1cfc950a52f404c45b354', 'value': 203.717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04be3f7920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:27:53.000Z'}}, {'blockNum': '0xa1aa76', 'uniqueId': '0xe40f21a3c2bcc2c8a18d1ae6adae583cc1a7fd49c8763ca121ca973dbc8466a5:log:68', 'hash': '0xe40f21a3c2bcc2c8a18d1ae6adae583cc1a7fd49c8763ca121ca973dbc8466a5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'value': 344.97699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0808391cb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:29:35.000Z'}}, {'blockNum': '0xa1aa77', 'uniqueId': '0x923bc4b7dff2f3ad26a49371bc1a503c358760ba93e0418b3be4ab3ee475dc15:log:174', 'hash': '0x923bc4b7dff2f3ad26a49371bc1a503c358760ba93e0418b3be4ab3ee475dc15', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 17384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0194c0b6e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:30:14.000Z'}}, {'blockNum': '0xa1aa7e', 'uniqueId': '0xb1bf89c4506fe4a2eabca94cb2b0ae4129d05f0a504ce2981037205b3177cd90:log:15', 'hash': '0xb1bf89c4506fe4a2eabca94cb2b0ae4129d05f0a504ce2981037205b3177cd90', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 37607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036b9b300700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:31:49.000Z'}}, {'blockNum': '0xa1aa7f', 'uniqueId': '0xe2bf42d3a9c0e30cb5aa88c8faa1065c447b9c65f7874b8f367992c9908e8a05:log:210', 'hash': '0xe2bf42d3a9c0e30cb5aa88c8faa1065c447b9c65f7874b8f367992c9908e8a05', 'from': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7569.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb04004cae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:32:11.000Z'}}, {'blockNum': '0xa1aaa0', 'uniqueId': '0xaabb8d67c7f0021ab933aaa810ae160265820391fe6b26376e64f057cdad6cee:log:88', 'hash': '0xaabb8d67c7f0021ab933aaa810ae160265820391fe6b26376e64f057cdad6cee', 'from': '0x06450acadae3710f5d6d49993af84cda952ec72e', 'to': '0x399427f9bfe909a2602db7274e936bfeedb03c40', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1742810700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:40:35.000Z'}}, {'blockNum': '0xa1aaa4', 'uniqueId': '0x2273a872e2f755da3b619b66d8f883fa74453ae9193ca29be784b60c8fb51884:log:153', 'hash': '0x2273a872e2f755da3b619b66d8f883fa74453ae9193ca29be784b60c8fb51884', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x3e5f35f16b4c7e19e69a070fda32ecd405d495bf', 'value': 1398.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20903efac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:41:47.000Z'}}, {'blockNum': '0xa1aaa5', 'uniqueId': '0x4bd8921cc8eb780905cf6fbfa61a376c8b512dd888c1310b3ce3f469aafa7765:log:64', 'hash': '0x4bd8921cc8eb780905cf6fbfa61a376c8b512dd888c1310b3ce3f469aafa7765', 'from': '0x1446378b0e6de34eab5f7cb0203cef1365acb9ba', 'to': '0x962da0bab76747ba9927a08165e13f1e16da9fd6', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:41:58.000Z'}}, {'blockNum': '0xa1aaa7', 'uniqueId': '0x409f0d503113ef66f0a02ed0b3efd2a03be710b27da0a39a05affbd8f38f5ca0:log:20', 'hash': '0x409f0d503113ef66f0a02ed0b3efd2a03be710b27da0a39a05affbd8f38f5ca0', 'from': '0xbab72d80f70061fa92972d434bbb0aabb6a957de', 'to': '0x5b444b835243d4a2dc7793e3f78f93ae7004646c', 'value': 843.2508205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a22aa3c2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:42:46.000Z'}}, {'blockNum': '0xa1aaa8', 'uniqueId': '0x15b66ddfd795275b375e4f605221087f6b4add7a3b66ee8520030ef33fc3c589:log:36', 'hash': '0x15b66ddfd795275b375e4f605221087f6b4add7a3b66ee8520030ef33fc3c589', 'from': '0x5b444b835243d4a2dc7793e3f78f93ae7004646c', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 843.2508205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a22aa3c2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:43:00.000Z'}}, {'blockNum': '0xa1aab4', 'uniqueId': '0x9c037230c4c980c162431bb71e717b4ad3e2e1de9f97dbdf27e69e3a4c66bdc2:log:16', 'hash': '0x9c037230c4c980c162431bb71e717b4ad3e2e1de9f97dbdf27e69e3a4c66bdc2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5321bd1db60c1f705c2e5bb5d667df0b1ee90ff3', 'value': 667.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f8aa24600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:45:40.000Z'}}, {'blockNum': '0xa1aad0', 'uniqueId': '0xb455f9c4e2def29e86b178804d15673bd234461275547713d00f30dcc7e3fe16:log:122', 'hash': '0xb455f9c4e2def29e86b178804d15673bd234461275547713d00f30dcc7e3fe16', 'from': '0x3b63cc5790c8b06787c55aa2aaaa7a0af14ed7ac', 'to': '0x71025d59ab9def0146e8b4861ba594cad7d4ee1e', 'value': 1000.084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1748f71480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:53:23.000Z'}}, {'blockNum': '0xa1aad3', 'uniqueId': '0x1a0d8dc1cbfbb936ffd1b442a012639b855d5401d69e57ab4b3f1357e38f4193:log:153', 'hash': '0x1a0d8dc1cbfbb936ffd1b442a012639b855d5401d69e57ab4b3f1357e38f4193', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe992fe5238f6f57686c22a0628db5c793414aa68', 'value': 999.27334816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1744221fa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:54:32.000Z'}}, {'blockNum': '0xa1aad7', 'uniqueId': '0x7dc6f7d4367375dc3738eac24d814e4b3516ab5e7e0f10e88b63a95e25ace9f8:log:219', 'hash': '0x7dc6f7d4367375dc3738eac24d814e4b3516ab5e7e0f10e88b63a95e25ace9f8', 'from': '0xe992fe5238f6f57686c22a0628db5c793414aa68', 'to': '0x1cf1420df55d748f4ce161ee795f2c837dcf5819', 'value': 999.27334816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1744221fa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:55:08.000Z'}}, {'blockNum': '0xa1aae8', 'uniqueId': '0x1b71017bb127d0f06737d875427d3b1dfc75a3c82279ddaa9966c0b7e67170a2:log:163', 'hash': '0x1b71017bb127d0f06737d875427d3b1dfc75a3c82279ddaa9966c0b7e67170a2', 'from': '0x453cf3463ffae86f22d2cdfc2c5cf2fb858885f7', 'to': '0x63c29c12b5561a695f56eb2b22c24c7de6a28cd6', 'value': 990.7171763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17112270fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:59:00.000Z'}}, {'blockNum': '0xa1aaf5', 'uniqueId': '0x45cad63c6bce1496a13da52cfefd7954707e73201f1d1c04ca69ba97770a6486:log:1', 'hash': '0x45cad63c6bce1496a13da52cfefd7954707e73201f1d1c04ca69ba97770a6486', 'from': '0x63c29c12b5561a695f56eb2b22c24c7de6a28cd6', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 990.7171763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17112270fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:00:37.000Z'}}, {'blockNum': '0xa1aaf5', 'uniqueId': '0x69d2945cc81a5d21883103b839fb0f042b29abe424295618fd7b8e00c9aa898e:log:46', 'hash': '0x69d2945cc81a5d21883103b839fb0f042b29abe424295618fd7b8e00c9aa898e', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2506.68284172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a5cfe790c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:00:37.000Z'}}, {'blockNum': '0xa1aaf7', 'uniqueId': '0xb40693d6ee132a01c7a6db079e396113c0669dd6fdfa51a5778d629225ab99f1:log:101', 'hash': '0xb40693d6ee132a01c7a6db079e396113c0669dd6fdfa51a5778d629225ab99f1', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x57f9cb5d7f7813c3f96c0757147154850059b733', 'value': 189.7213706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x046ad3d664', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:05.000Z'}}, {'blockNum': '0xa1aaf7', 'uniqueId': '0x5b8524d0821991249ba17c99bbe3984ab15b49558b95575e131b7b01ddcca534:log:218', 'hash': '0x5b8524d0821991249ba17c99bbe3984ab15b49558b95575e131b7b01ddcca534', 'from': '0x3d83b7d658457b4e7cd59e116c42fc97b79d5a0e', 'to': '0x9c833b63a894529df923314c2ecb1e884f67f685', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:05.000Z'}}, {'blockNum': '0xa1aaf8', 'uniqueId': '0x4293608abba6e2198f22d40794b974c71e2dba06c2bb631adb5c72422399b4f9:log:44', 'hash': '0x4293608abba6e2198f22d40794b974c71e2dba06c2bb631adb5c72422399b4f9', 'from': '0x8e9269041d059d1651c99ecfb5c49dd1a62ba7d9', 'to': '0xef677ac98187c38a1c5295254d504c2509a17f06', 'value': 2511.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a7b7ea300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:38.000Z'}}, {'blockNum': '0xa1ab05', 'uniqueId': '0x398ad8982236c2c4c9d043b63bb3ce7ab443b8b2f3ac49e3605fcf8718e29ff5:log:33', 'hash': '0x398ad8982236c2c4c9d043b63bb3ce7ab443b8b2f3ac49e3605fcf8718e29ff5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x147523af2347f6e60b18ed985243bcec6e57d6fa', 'value': 2012.73480912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2edcd596d0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:04:23.000Z'}}, {'blockNum': '0xa1ab13', 'uniqueId': '0xacf1ea97a558efe2c2af05ff8a58e63104d1a3d37ef98e6547841a404ec74a9b:log:49', 'hash': '0xacf1ea97a558efe2c2af05ff8a58e63104d1a3d37ef98e6547841a404ec74a9b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbf097fe8ae6d6b2af43a065c04d65505066d6e26', 'value': 759.41561207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ae784377', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:08:05.000Z'}}, {'blockNum': '0xa1ab1d', 'uniqueId': '0xaf9679cd66fd48eb0299dc2ec9413ee6f6100fa1fb16cc6daae664f68a467be7:log:40', 'hash': '0xaf9679cd66fd48eb0299dc2ec9413ee6f6100fa1fb16cc6daae664f68a467be7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 1112.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19e51c0080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:10:59.000Z'}}, {'blockNum': '0xa1ab24', 'uniqueId': '0x711dd23b7e1343baa58a6b574436b9fd93852e5127ef4d7d46c40704a90a53e7:log:18', 'hash': '0x711dd23b7e1343baa58a6b574436b9fd93852e5127ef4d7d46c40704a90a53e7', 'from': '0x8e9269041d059d1651c99ecfb5c49dd1a62ba7d9', 'to': '0x415ad5489d25d61a7fad58406036951f6d929991', 'value': 93.58571818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022dd0792a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:11:54.000Z'}}, {'blockNum': '0xa1ab27', 'uniqueId': '0x8063c721ff98cb9647a92eae71b52de155980e201f364d3097c48d9bbaed8e3e:log:68', 'hash': '0x8063c721ff98cb9647a92eae71b52de155980e201f364d3097c48d9bbaed8e3e', 'from': '0x962da0bab76747ba9927a08165e13f1e16da9fd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:12:07.000Z'}}, {'blockNum': '0xa1ab29', 'uniqueId': '0xed77e7852b81c7ec6363563004010b9a62c4f80d4debd05a457e4e71ed0efa93:log:62', 'hash': '0xed77e7852b81c7ec6363563004010b9a62c4f80d4debd05a457e4e71ed0efa93', 'from': '0x415ad5489d25d61a7fad58406036951f6d929991', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 93.58571818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022dd0792a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:12:17.000Z'}}, {'blockNum': '0xa1ab2c', 'uniqueId': '0x7776eee081179e8179d1fc48fce623b93d7aebe83c295b9df6942f3e5e3f3308:log:10', 'hash': '0x7776eee081179e8179d1fc48fce623b93d7aebe83c295b9df6942f3e5e3f3308', 'from': '0xbf097fe8ae6d6b2af43a065c04d65505066d6e26', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 759.41561206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ae784376', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:13:14.000Z'}}, {'blockNum': '0xa1ab2c', 'uniqueId': '0xd2fd586b44b2f3dd367d1d6a6cf8480db59383b1d8d0468d0bcf30db625d9b1f:log:17', 'hash': '0xd2fd586b44b2f3dd367d1d6a6cf8480db59383b1d8d0468d0bcf30db625d9b1f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x15a5e61bbc3aa98c9d3bf7932855bfcec74bd6bb', 'value': 685.63676202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff6b6ac2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:13:14.000Z'}}, {'blockNum': '0xa1ab40', 'uniqueId': '0xae11e1f95d2ab2c463f5a1091bd193dd129b005f792b4bef00f097fa781f9ec7:log:35', 'hash': '0xae11e1f95d2ab2c463f5a1091bd193dd129b005f792b4bef00f097fa781f9ec7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 16552.17993658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae37ba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:17:10.000Z'}}, {'blockNum': '0xa1ab5d', 'uniqueId': '0xfbe3598c1d32d6d3da78fc4da38318ac8581e2c121f954ab4e08b984980d1c60:log:17', 'hash': '0xfbe3598c1d32d6d3da78fc4da38318ac8581e2c121f954ab4e08b984980d1c60', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16552.17993658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae37ba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:24:48.000Z'}}, {'blockNum': '0xa1ab93', 'uniqueId': '0x868bdd448fdad9ad069bf8f793afc5f3c231b2a9cbe503c180b73f744713612b:log:47', 'hash': '0x868bdd448fdad9ad069bf8f793afc5f3c231b2a9cbe503c180b73f744713612b', 'from': '0x8222c672525c00b41bba09cf4dd274e3cc1a3d3d', 'to': '0xc00eede43acce3bf33316e3b16c1887fc4cd2249', 'value': 250.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d6a56500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:35:43.000Z'}}, {'blockNum': '0xa1aba4', 'uniqueId': '0xee3fa180075d429ad20ee2890d79fc6a602be2eef4263ec706f3919257a2b923:log:143', 'hash': '0xee3fa180075d429ad20ee2890d79fc6a602be2eef4263ec706f3919257a2b923', 'from': '0x9c833b63a894529df923314c2ecb1e884f67f685', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:40:22.000Z'}}, {'blockNum': '0xa1abab', 'uniqueId': '0x64197711b2326bb25133a95fab9591246b4569b9bef13be4fa311a1d24a027f9:log:67', 'hash': '0x64197711b2326bb25133a95fab9591246b4569b9bef13be4fa311a1d24a027f9', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 1108.99276747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19d21cabcb', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:42:22.000Z'}}, {'blockNum': '0xa1abb7', 'uniqueId': '0xa6a77e2b281bacbdecc664e1156b1b188b4ce7960da9fb5d636d4603f59de07d:log:26', 'hash': '0xa6a77e2b281bacbdecc664e1156b1b188b4ce7960da9fb5d636d4603f59de07d', 'from': '0x15a5e61bbc3aa98c9d3bf7932855bfcec74bd6bb', 'to': '0x20c8d3e224375d2061a9969e790e8fad4fa32af1', 'value': 685.63676202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff6b6ac2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:45:34.000Z'}}, {'blockNum': '0xa1abd2', 'uniqueId': '0xc6bf715dbb485490b088dccad66335bd18937b85cea2c599543dfddd545e4dd6:log:44', 'hash': '0xc6bf715dbb485490b088dccad66335bd18937b85cea2c599543dfddd545e4dd6', 'from': '0xbeaa2b0d51398ef7191253710b4c80db8c4236c2', 'to': '0x28581879cad8c188f7687fadc1d35c10d9146e21', 'value': 170.27313444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f6e82f24', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:50:00.000Z'}}, {'blockNum': '0xa1abe1', 'uniqueId': '0xc4be7f5ac018aa3da8a9891f9ead26ea8725eb8b74a787fe148eb1f90dab14c9:log:124', 'hash': '0xc4be7f5ac018aa3da8a9891f9ead26ea8725eb8b74a787fe148eb1f90dab14c9', 'from': '0x28581879cad8c188f7687fadc1d35c10d9146e21', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 170.27313444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f6e82f24', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:52:49.000Z'}}, {'blockNum': '0xa1abed', 'uniqueId': '0xf13442df7876272bb35e24331bd2da3732f0a43e86ab9a0c55dd57d903656d39:log:13', 'hash': '0xf13442df7876272bb35e24331bd2da3732f0a43e86ab9a0c55dd57d903656d39', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9b37ff7ea63b8f58dc345c8bd9dd8cb20edb4f01', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:55:36.000Z'}}, {'blockNum': '0xa1ac00', 'uniqueId': '0xdbe8de02a8ca474fb4a1c8d6b3884c1092cacec2c14f12729eae8689ff37197b:log:72', 'hash': '0xdbe8de02a8ca474fb4a1c8d6b3884c1092cacec2c14f12729eae8689ff37197b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2064.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x300e755240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:00:31.000Z'}}, {'blockNum': '0xa1ac05', 'uniqueId': '0xc6586f21365eef81be1d98391c74b139e1333d0cfbb8bedad6be36ded3143b9e:log:33', 'hash': '0xc6586f21365eef81be1d98391c74b139e1333d0cfbb8bedad6be36ded3143b9e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:03:19.000Z'}}, {'blockNum': '0xa1ac05', 'uniqueId': '0x2359b90df14b0096ceee134ccf16ea4701d1c7d1bcc1fbea92ea93ad18729e01:log:92', 'hash': '0x2359b90df14b0096ceee134ccf16ea4701d1c7d1bcc1fbea92ea93ad18729e01', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 458.22961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aab42e568', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:03:19.000Z'}}, {'blockNum': '0xa1ac2d', 'uniqueId': '0x3779524b9bdd761a48e43ea8d3469fb2a74223dbe28545ff8e3fe4a4388ec602:log:69', 'hash': '0x3779524b9bdd761a48e43ea8d3469fb2a74223dbe28545ff8e3fe4a4388ec602', 'from': '0x0c86b0b5e07259f8ff70f03cb39c758ee03f0645', 'to': '0x87eb0d4a2e07e0685a8eb5ccd3610fc10d32c527', 'value': 9.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3af2f140', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:13:52.000Z'}}, {'blockNum': '0xa1ac3a', 'uniqueId': '0xfd3ead419a2c255ac916d486a3d736790842246b3e8373c4d60dafdbce3d31a9:log:172', 'hash': '0xfd3ead419a2c255ac916d486a3d736790842246b3e8373c4d60dafdbce3d31a9', 'from': '0x5d51295e28773c997d0472c6f8273d22c5e84c82', 'to': '0x146bc877c1b80ee73d8c5a06e982ac26762b1c00', 'value': 150.8584643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03832fbf9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:16:40.000Z'}}, {'blockNum': '0xa1ac41', 'uniqueId': '0xd525d35c634cb92a7dd7e27859b21bca647505cc47355fe72797eceed9b571e5:log:0', 'hash': '0xd525d35c634cb92a7dd7e27859b21bca647505cc47355fe72797eceed9b571e5', 'from': '0x146bc877c1b80ee73d8c5a06e982ac26762b1c00', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 150.8584643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03832fbf9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:17:48.000Z'}}, {'blockNum': '0xa1ac56', 'uniqueId': '0x3e61f04b8c31e5da816e6c7b54513bd45024391d00f3660b2a6cba5debedee94:log:119', 'hash': '0x3e61f04b8c31e5da816e6c7b54513bd45024391d00f3660b2a6cba5debedee94', 'from': '0x175e485af54c94ae8369528eec5e460cee661aa1', 'to': '0x136147be70d81e41b7c0fa59bc0e38d7cb0b1a1d', 'value': 1271.29584701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d9983843d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:21:33.000Z'}}, {'blockNum': '0xa1ac62', 'uniqueId': '0x5a200083f030cb35dbf83b79faa92030283e74d216cd303ad5f25afb162df712:log:99', 'hash': '0x5a200083f030cb35dbf83b79faa92030283e74d216cd303ad5f25afb162df712', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 826.016786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x133b719708', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:23:42.000Z'}}, {'blockNum': '0xa1ac6f', 'uniqueId': '0xb2b4de64e958b7b2d1eeeb0f496f99eccd7b5aa67ff99e5b32dffa5778c2e4fa:log:191', 'hash': '0xb2b4de64e958b7b2d1eeeb0f496f99eccd7b5aa67ff99e5b32dffa5778c2e4fa', 'from': '0x8cb7c49f98ae135fd403983ef791e41850d05b0e', 'to': '0x1c1f255543b2107b2d124a6ee12c77f86f2a9a85', 'value': 213.99692437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb856495', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:27:02.000Z'}}, {'blockNum': '0xa1ac70', 'uniqueId': '0x2a6c7a4fa422617d0bcf17f8c5063d8bcafa927d54502b8964ab1219b036467b:log:38', 'hash': '0x2a6c7a4fa422617d0bcf17f8c5063d8bcafa927d54502b8964ab1219b036467b', 'from': '0x1c1f255543b2107b2d124a6ee12c77f86f2a9a85', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 213.99692437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb856495', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:28:11.000Z'}}, {'blockNum': '0xa1ac70', 'uniqueId': '0x274ba6701eaac258652352dc7cad25e016b9d696ae709c1470f9f87fae189e21:log:48', 'hash': '0x274ba6701eaac258652352dc7cad25e016b9d696ae709c1470f9f87fae189e21', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0x1b7a57b4784412a7bbb9b42f356cd86b48c43ea8', 'value': 615.77341991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e564bac27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:28:11.000Z'}}, {'blockNum': '0xa1ac72', 'uniqueId': '0x348c63686131cb8b759d8eb80171812cc2da9a8b1319049bc703ffa75058288e:log:138', 'hash': '0x348c63686131cb8b759d8eb80171812cc2da9a8b1319049bc703ffa75058288e', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0xac8054e60353cc79cbc87d602abcb7ba80a780a7', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:30:08.000Z'}}, {'blockNum': '0xa1ac76', 'uniqueId': '0x90a86d0fba5e03c1e932cf10c88e89095b35005b80ccb8ce589eb58f88a3e6d3:log:3', 'hash': '0x90a86d0fba5e03c1e932cf10c88e89095b35005b80ccb8ce589eb58f88a3e6d3', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:31:05.000Z'}}, {'blockNum': '0xa1ac79', 'uniqueId': '0x61011111efb9e3c7df68d891aeecae393436f885862217059abf22cd4b546faa:log:223', 'hash': '0x61011111efb9e3c7df68d891aeecae393436f885862217059abf22cd4b546faa', 'from': '0xac8054e60353cc79cbc87d602abcb7ba80a780a7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:31:15.000Z'}}, {'blockNum': '0xa1ac8b', 'uniqueId': '0x5208b0bbe023497db0035c659f2fe3960c86cdf2acae4541a225c5a667caf8a8:log:128', 'hash': '0x5208b0bbe023497db0035c659f2fe3960c86cdf2acae4541a225c5a667caf8a8', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x8951d793d9866c5f100998da96dfaba2926ee492', 'value': 639.76468014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee54b6e2e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:34:05.000Z'}}, {'blockNum': '0xa1ac91', 'uniqueId': '0x7410edb552f76858c7d3b23d68c75804e1a894d380a27225589120a523b810ee:log:259', 'hash': '0x7410edb552f76858c7d3b23d68c75804e1a894d380a27225589120a523b810ee', 'from': '0x8951d793d9866c5f100998da96dfaba2926ee492', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 639.76468014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee54b6e2e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:35:34.000Z'}}, {'blockNum': '0xa1acb4', 'uniqueId': '0xcf51e9f8c35fea27f5f3e05f570b7a7471ed7211832049b24cc08339605d37b2:log:64', 'hash': '0xcf51e9f8c35fea27f5f3e05f570b7a7471ed7211832049b24cc08339605d37b2', 'from': '0x1583963e9060e93fe9076068e13c9d57a36a3a08', 'to': '0xcf0827f3ecd7855eb0cef14b17f1a5332f7dff6e', 'value': 198.65261596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a00fd61c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:42:18.000Z'}}, {'blockNum': '0xa1acb8', 'uniqueId': '0xf045cd66303f239cb8300cc2bf2f390ea4a3ada8fd3ad2e92ed838aa75f3699c:log:68', 'hash': '0xf045cd66303f239cb8300cc2bf2f390ea4a3ada8fd3ad2e92ed838aa75f3699c', 'from': '0xcf0827f3ecd7855eb0cef14b17f1a5332f7dff6e', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 198.65261596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a00fd61c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:43:35.000Z'}}, {'blockNum': '0xa1ad07', 'uniqueId': '0xac80a0c1c23d00d7b1b50717da37b225b0b2b1a8f966f6a2dcc92c4c7324a0da:log:149', 'hash': '0xac80a0c1c23d00d7b1b50717da37b225b0b2b1a8f966f6a2dcc92c4c7324a0da', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3564.07509263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52fb8b010f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:00:44.000Z'}}, {'blockNum': '0xa1ad0f', 'uniqueId': '0xb84fb8c03c1269d015e1b1baede332b22e775bddbed8f5334d7e41c756aabf21:log:35', 'hash': '0xb84fb8c03c1269d015e1b1baede332b22e775bddbed8f5334d7e41c756aabf21', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:02:40.000Z'}}, {'blockNum': '0xa1ad26', 'uniqueId': '0x6dd1f2dfb556dd92fd639abe1bbfe9ae403c7e1033b5c37de33c7efe44978b03:log:8', 'hash': '0x6dd1f2dfb556dd92fd639abe1bbfe9ae403c7e1033b5c37de33c7efe44978b03', 'from': '0x7e0d57959c438b7ca4f697f9719c32edbac57ee1', 'to': '0x357e29eac34fd2893b5df6c8cde3272fa7022d42', 'value': 6734.4223219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9ccc48f77e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:06:47.000Z'}}, {'blockNum': '0xa1ad2c', 'uniqueId': '0x5ca1cfd2f79bb8fe4121cc9129bba98dac3fa568c235431b6df1126f9454e1f9:log:28', 'hash': '0x5ca1cfd2f79bb8fe4121cc9129bba98dac3fa568c235431b6df1126f9454e1f9', 'from': '0x5321bd1db60c1f705c2e5bb5d667df0b1ee90ff3', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 667.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f8aa24600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:07:30.000Z'}}, {'blockNum': '0xa1ad30', 'uniqueId': '0xe9c1f1f6cc33112e677720b75770695a6c89cec5aceea4f2d5d5ba0dd15b8fd1:log:15', 'hash': '0xe9c1f1f6cc33112e677720b75770695a6c89cec5aceea4f2d5d5ba0dd15b8fd1', 'from': '0x80b5b304c0eac3041b4507bb1c879d8e5745dcac', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1664.24094282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26bfa6264a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:09:23.000Z'}}, {'blockNum': '0xa1ad43', 'uniqueId': '0x835717ab14db11c636a1931f32c7306fba14d7297b17df15f5971f4e596ab991:log:52', 'hash': '0x835717ab14db11c636a1931f32c7306fba14d7297b17df15f5971f4e596ab991', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 1092.261049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x196e621844', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:14:14.000Z'}}, {'blockNum': '0xa1ad48', 'uniqueId': '0xca553f3099c7b796923597e03ddf2be59d9ae59b827c4c8976d4b67fd8cf51a3:log:56', 'hash': '0xca553f3099c7b796923597e03ddf2be59d9ae59b827c4c8976d4b67fd8cf51a3', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1927.812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ce2a7aa80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:15:22.000Z'}}, {'blockNum': '0xa1ad54', 'uniqueId': '0xf2d92219ae0cb8c67ad168684857acee59a699ba2c083fccb10afd6a32317d58:log:17', 'hash': '0xf2d92219ae0cb8c67ad168684857acee59a699ba2c083fccb10afd6a32317d58', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 1477.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2265fd7f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:18:53.000Z'}}, {'blockNum': '0xa1ad64', 'uniqueId': '0xfaf1acbb3e9130678a97c7ac95b4c1add0b2b4259eb20d777edeadcd91b64908:log:66', 'hash': '0xfaf1acbb3e9130678a97c7ac95b4c1add0b2b4259eb20d777edeadcd91b64908', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xfe22dc8a10cd4055239d4c314df55278142a5471', 'value': 1262.207289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d63577a44', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:21:14.000Z'}}, {'blockNum': '0xa1ad6e', 'uniqueId': '0xcfa986da1224978ad87387e01d821530930791fa5d5f20be0dd8ea883ed566a5:log:5', 'hash': '0xcfa986da1224978ad87387e01d821530930791fa5d5f20be0dd8ea883ed566a5', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1477.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2265fd7f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:23:34.000Z'}}, {'blockNum': '0xa1ad8f', 'uniqueId': '0xbe12e0699809272b8f2d27655b2df7e5d982da1a9ff9e17a39952917437a7bbe:log:166', 'hash': '0xbe12e0699809272b8f2d27655b2df7e5d982da1a9ff9e17a39952917437a7bbe', 'from': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4801.22798668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fc98c824c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:30:52.000Z'}}, {'blockNum': '0xa1adaa', 'uniqueId': '0xaebb8bba471f8588265cd973b7776a55b4998aae1aa4016474f6115331a91189:log:35', 'hash': '0xaebb8bba471f8588265cd973b7776a55b4998aae1aa4016474f6115331a91189', 'from': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'to': '0x1e5eb041caccb99a9891cd27d5cb39bea1cdf027', 'value': 220.63488862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0523161f5e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:34:03.000Z'}}, {'blockNum': '0xa1adb6', 'uniqueId': '0xdd93777d8c13275e67183590cc6afb72d8c8543c6207cd7cc0c1f9512e3aa3cb:log:36', 'hash': '0xdd93777d8c13275e67183590cc6afb72d8c8543c6207cd7cc0c1f9512e3aa3cb', 'from': '0xb27334f24f94ff7bcedfd90e6bd14ba95b71f4e4', 'to': '0xf1b7e886ce565dabf18aebd90e0706e03605617f', 'value': 9437.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdbbeadd0a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:37:47.000Z'}}, {'blockNum': '0xa1add6', 'uniqueId': '0xcb44533eb4f4f84318deda0c4f0c392c4682f14ea541b8cfbfff8f21dce9b5df:log:50', 'hash': '0xcb44533eb4f4f84318deda0c4f0c392c4682f14ea541b8cfbfff8f21dce9b5df', 'from': '0x1203de80e5eef81899a99ec3fe9e7e5630ba9cc8', 'to': '0xb39c99249de77392aade86dd589223bd5d5cc09c', 'value': 789.63309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12629479c8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:45:37.000Z'}}, {'blockNum': '0xa1ae01', 'uniqueId': '0x620741bc9aecd4f7fd9f88bb36b235fd9b5eb25e76ba7b003e4f3742fd034c49:log:75', 'hash': '0x620741bc9aecd4f7fd9f88bb36b235fd9b5eb25e76ba7b003e4f3742fd034c49', 'from': '0x27f7a9a19b02a1b2db366d465a2966f925c53be5', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1848.20614296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2b082ac498', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:54:21.000Z'}}, {'blockNum': '0xa1ae4c', 'uniqueId': '0x7f2999fc41eb0c0ec1f484ec5970d8111d3b94cf298809a6ba74cd847ed0b86b:log:4', 'hash': '0x7f2999fc41eb0c0ec1f484ec5970d8111d3b94cf298809a6ba74cd847ed0b86b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 767.74488414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e01db95e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:13:28.000Z'}}, {'blockNum': '0xa1ae56', 'uniqueId': '0xcce2fa7681d059a9372666b3ba746e8a4f5cd54298708db1b86e925f4d236867:log:91', 'hash': '0xcce2fa7681d059a9372666b3ba746e8a4f5cd54298708db1b86e925f4d236867', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xaae374c03680420ccfec622ee6a8e0ecc5cce28d', 'value': 28.7940905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba04b9a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:07.000Z'}}, {'blockNum': '0xa1ae56', 'uniqueId': '0x23076c1fa64dfd133df1104471ad72bedaf0e3e367dfbd50c944203b3b48e8b6:log:166', 'hash': '0x23076c1fa64dfd133df1104471ad72bedaf0e3e367dfbd50c944203b3b48e8b6', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x34d52438bf89a0fa3cda628be00cb48cbca139d5', 'value': 767.74488414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e01db95e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:07.000Z'}}, {'blockNum': '0xa1ae57', 'uniqueId': '0xdc6be451a8729f48f5480b3d5ce8a2e29da5acc4b9ba662b3d786f4b438cd963:log:118', 'hash': '0xdc6be451a8729f48f5480b3d5ce8a2e29da5acc4b9ba662b3d786f4b438cd963', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 2352.21750592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x36c44f1340', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:36.000Z'}}, {'blockNum': '0xa1ae5e', 'uniqueId': '0x00ce56d6bb357c0104d906df475ff3d2a816fa572115866e9365b3c6c5da9a7e:log:48', 'hash': '0x00ce56d6bb357c0104d906df475ff3d2a816fa572115866e9365b3c6c5da9a7e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd236d0493e20407d6b9a4d8fc64cebf772d5cdb4', 'value': 20.6459829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7b0f4512', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:17:25.000Z'}}, {'blockNum': '0xa1ae62', 'uniqueId': '0xbf832a20e020a9a11aa6c25ff2a8167944d745e4c7f4bf9f56860dbdcc774340:log:47', 'hash': '0xbf832a20e020a9a11aa6c25ff2a8167944d745e4c7f4bf9f56860dbdcc774340', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 958.312363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x164ffc9ecc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:18:41.000Z'}}, {'blockNum': '0xa1ae70', 'uniqueId': '0x9df4504b9b0586db08b4870a9e1ac19068fcac0eab4a36ce667b03e35c43aaf9:log:1', 'hash': '0x9df4504b9b0586db08b4870a9e1ac19068fcac0eab4a36ce667b03e35c43aaf9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2121.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x31666fcb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:22:20.000Z'}}, {'blockNum': '0xa1ae8d', 'uniqueId': '0x6e586eb055b805b53b161c1e44db61b8d78c5223bf850ee79756378bd81ab333:log:82', 'hash': '0x6e586eb055b805b53b161c1e44db61b8d78c5223bf850ee79756378bd81ab333', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 16815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01878135cf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:30:02.000Z'}}, {'blockNum': '0xa1ae9a', 'uniqueId': '0xdbbaa7c46eae7edcb0823fd42a7b4b1bec5c3cf34e9e9ff043908fc3a9761550:log:39', 'hash': '0xdbbaa7c46eae7edcb0823fd42a7b4b1bec5c3cf34e9e9ff043908fc3a9761550', 'from': '0xf779f407e59bd00799e690cf73ebd8753bc91307', 'to': '0xa19b86b565edfb7476dbc604004514c616ee3f03', 'value': 1430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x214b76d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:33:56.000Z'}}, {'blockNum': '0xa1ae9c', 'uniqueId': '0x2fa85ee43a1f867836df9a7a42b708daaded98ac2b44e781a32c06a96eb1accb:log:11', 'hash': '0x2fa85ee43a1f867836df9a7a42b708daaded98ac2b44e781a32c06a96eb1accb', 'from': '0x2cd0cd7fac0c41f919e8337c35282a5eb671fa90', 'to': '0xaf5d8a6adb591d492aaa2a06d2632e635eff6801', 'value': 331.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07b812a240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:45.000Z'}}, {'blockNum': '0xa1ae9d', 'uniqueId': '0xa9ae44344e13d0628abb2156aae89b53ae0c4eacf910b6e3baa856436d3ef4a5:log:117', 'hash': '0xa9ae44344e13d0628abb2156aae89b53ae0c4eacf910b6e3baa856436d3ef4a5', 'from': '0x357e29eac34fd2893b5df6c8cde3272fa7022d42', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6734.4223219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9ccc48f77e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:58.000Z'}}, {'blockNum': '0xa1ae9d', 'uniqueId': '0xaaef74d03123c6faa7644d26e1dc6446fcaf9b2a3b46ef21b5772b99a78fe129:log:123', 'hash': '0xaaef74d03123c6faa7644d26e1dc6446fcaf9b2a3b46ef21b5772b99a78fe129', 'from': '0xf1b7e886ce565dabf18aebd90e0706e03605617f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9437.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdbbeadd0a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:58.000Z'}}, {'blockNum': '0xa1ae9e', 'uniqueId': '0x9ec916648fe56bdc49a0cca83657aa2d420210ffc158e76973f8570ea8fcbc4b:log:87', 'hash': '0x9ec916648fe56bdc49a0cca83657aa2d420210ffc158e76973f8570ea8fcbc4b', 'from': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2352.21750592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x36c44f1340', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:35:08.000Z'}}, {'blockNum': '0xa1aea3', 'uniqueId': '0xb0391ba87a6040ca310138199e950e0285cbfe245af681034eff53b607272395:log:57', 'hash': '0xb0391ba87a6040ca310138199e950e0285cbfe245af681034eff53b607272395', 'from': '0xaf5d8a6adb591d492aaa2a06d2632e635eff6801', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 331.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07b812a240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:35:57.000Z'}}, {'blockNum': '0xa1aed0', 'uniqueId': '0xee81568bf866932651d8eb5d427bb25a9aa0197b81effa88aed5d2cbba049ae3:log:10', 'hash': '0xee81568bf866932651d8eb5d427bb25a9aa0197b81effa88aed5d2cbba049ae3', 'from': '0x161da8b1cba591ebf11edd0aaa65e4568df395b4', 'to': '0xb406d97c3bc7dc2e9b1c0755ad1f110f0d43fff3', 'value': 423.02299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09d969df5f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:46:38.000Z'}}, {'blockNum': '0xa1aee4', 'uniqueId': '0x8fc93953e8b5997daefff49349e7d901fa57ee3ef9c69443c40a90800c9b9a75:log:3', 'hash': '0x8fc93953e8b5997daefff49349e7d901fa57ee3ef9c69443c40a90800c9b9a75', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:51:11.000Z'}}, {'blockNum': '0xa1af1c', 'uniqueId': '0x9630e0182963395f5b238c062eb49ca28dfc41e92e6eb7fd6ede01199080a61c:log:25', 'hash': '0x9630e0182963395f5b238c062eb49ca28dfc41e92e6eb7fd6ede01199080a61c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 136.15535641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032b8c9619', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:04:10.000Z'}}, {'blockNum': '0xa1af27', 'uniqueId': '0xe5237059ad9af74445343f3ef358ed778c370759601928fbe1ba6c399b8606f8:log:29', 'hash': '0xe5237059ad9af74445343f3ef358ed778c370759601928fbe1ba6c399b8606f8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x857059f0371b79d51bb22c5376af84358bc8ec0d', 'value': 136.15535641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032b8c9619', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:05:40.000Z'}}, {'blockNum': '0xa1af4c', 'uniqueId': '0xaf5e9212f73b8ccd8d0c1243bcc63cf2fdd97931712d6f00094454976c716244:log:16', 'hash': '0xaf5e9212f73b8ccd8d0c1243bcc63cf2fdd97931712d6f00094454976c716244', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 19617.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c8c0d6f580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:11:30.000Z'}}, {'blockNum': '0xa1af4c', 'uniqueId': '0x8e422438f51affc2f69b03f06a5bb7d2c73ab6c2586f34980ae6ddebf00451ce:log:17', 'hash': '0x8e422438f51affc2f69b03f06a5bb7d2c73ab6c2586f34980ae6ddebf00451ce', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2519.141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3aa7401d20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:11:30.000Z'}}, {'blockNum': '0xa1afa2', 'uniqueId': '0xceac27066b9e2b8229183b4e0ef6926bad15ecb437cadee82803a2fb16968813:log:209', 'hash': '0xceac27066b9e2b8229183b4e0ef6926bad15ecb437cadee82803a2fb16968813', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19617.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c8c0d6f580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:32:17.000Z'}}, {'blockNum': '0xa1afc8', 'uniqueId': '0xbb5082095328f57994397ccd6ad5ee243cdc0d08aa38ad31363bdfe7c3043d3e:log:12', 'hash': '0xbb5082095328f57994397ccd6ad5ee243cdc0d08aa38ad31363bdfe7c3043d3e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2507.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a61741260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:40:16.000Z'}}, {'blockNum': '0xa1afc8', 'uniqueId': '0xc72615f0b2bcc5cf04a202d3c241626392ba66705067671164bf9be8a3d4b316:log:15', 'hash': '0xc72615f0b2bcc5cf04a202d3c241626392ba66705067671164bf9be8a3d4b316', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 16552.1799155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae2f7e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:40:16.000Z'}}, {'blockNum': '0xa1afd5', 'uniqueId': '0x7f0d41b61348b0894ab8fd4bd9e04ef7a6222d7db424a0a5726a1902655db7e2:log:14', 'hash': '0x7f0d41b61348b0894ab8fd4bd9e04ef7a6222d7db424a0a5726a1902655db7e2', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd44f8a53c9650d3be610372b3df8243075735cdd', 'value': 145.66153577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036435dd69', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:42:29.000Z'}}, {'blockNum': '0xa1afd6', 'uniqueId': '0xb2026cecc4cf3d1fa9c4e34bfc03ed6fccf5d40875eb7287d225f09ad9335312:log:29', 'hash': '0xb2026cecc4cf3d1fa9c4e34bfc03ed6fccf5d40875eb7287d225f09ad9335312', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 15329.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164ed2e1e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:42:36.000Z'}}, {'blockNum': '0xa1afda', 'uniqueId': '0x0cbebb2024857b25842edc9c81db0aacb516676a041ac3160688df6c1d6162bb:log:1', 'hash': '0x0cbebb2024857b25842edc9c81db0aacb516676a041ac3160688df6c1d6162bb', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16552.1799155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae2f7e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:43:21.000Z'}}, {'blockNum': '0xa1afda', 'uniqueId': '0x12facbfa25bef0a494dbc4c9751908a9b3d76b461ca8383f6c580a063fa27de8:log:2', 'hash': '0x12facbfa25bef0a494dbc4c9751908a9b3d76b461ca8383f6c580a063fa27de8', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2507.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a61741260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:43:21.000Z'}}, {'blockNum': '0xa1afdf', 'uniqueId': '0xcc4393188ae325c70e62f8cb1ac7d96e4b4fe68c4b5ae28e9b7be2dd2a351101:log:3', 'hash': '0xcc4393188ae325c70e62f8cb1ac7d96e4b4fe68c4b5ae28e9b7be2dd2a351101', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 15329.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164ed2e1e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:45:48.000Z'}}, {'blockNum': '0xa1b001', 'uniqueId': '0x21d5cd7f3f560cb00c845eedf91131d4811f264cf1da9155923c61d36bfa6406:log:30', 'hash': '0x21d5cd7f3f560cb00c845eedf91131d4811f264cf1da9155923c61d36bfa6406', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'value': 3130.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x48e5d53300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:54:40.000Z'}}, {'blockNum': '0xa1b015', 'uniqueId': '0x8433666200ee7263b56d7af58f9eca2737bf25ffc140c7ccb3b2cacb37e0ab29:log:105', 'hash': '0x8433666200ee7263b56d7af58f9eca2737bf25ffc140c7ccb3b2cacb37e0ab29', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbf767800b7c5659cfe5f4c4eb79cdc62740da3cf', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:01:32.000Z'}}, {'blockNum': '0xa1b028', 'uniqueId': '0xe4c38d332d60e5ad09375ed80c7cc508e4d6716a6ae410577ebee3e5684ff064:log:46', 'hash': '0xe4c38d332d60e5ad09375ed80c7cc508e4d6716a6ae410577ebee3e5684ff064', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2503.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a4c990580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:08:17.000Z'}}, {'blockNum': '0xa1b030', 'uniqueId': '0xf81d819075101edf73d224813b858eedde0cd29a455fc6a938ace88edd2cf22d:log:133', 'hash': '0xf81d819075101edf73d224813b858eedde0cd29a455fc6a938ace88edd2cf22d', 'from': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3130.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x48e5d53300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:10:41.000Z'}}, {'blockNum': '0xa1b094', 'uniqueId': '0xb8a1b00e95a81e69baae7196801956c46e8e42b64900dad433bf51b32a3387e7:log:18', 'hash': '0xb8a1b00e95a81e69baae7196801956c46e8e42b64900dad433bf51b32a3387e7', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x3645250b59efbdd11561bfe25a8d2833b9a58868', 'value': 109.58522944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028d2dca40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:30:38.000Z'}}, {'blockNum': '0xa1b095', 'uniqueId': '0xc43ddc36a41e16dae82346f7aadfc09d7f4255d8071a2ac1f2bc9bf4706d658f:log:242', 'hash': '0xc43ddc36a41e16dae82346f7aadfc09d7f4255d8071a2ac1f2bc9bf4706d658f', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29958.782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b9884182c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:30:47.000Z'}}, {'blockNum': '0xa1b097', 'uniqueId': '0x31169283bd1cf62cf7e4ce8704604a2e44130a669867da6d72c8658d2979a498:log:192', 'hash': '0x31169283bd1cf62cf7e4ce8704604a2e44130a669867da6d72c8658d2979a498', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49679.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0484b3db7c20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:31:00.000Z'}}, {'blockNum': '0xa1b0a3', 'uniqueId': '0x9bc6b2b547b17c20c980d2c23a616386a8e51e0ca5a562f4a204aba3640a1b60:log:60', 'hash': '0x9bc6b2b547b17c20c980d2c23a616386a8e51e0ca5a562f4a204aba3640a1b60', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4c09984091d0dc4b86502d03727059528bdb4141', 'value': 986.18500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16f61ee3a1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:33:41.000Z'}}, {'blockNum': '0xa1b0d9', 'uniqueId': '0xd9ccdd7401dad344f6014f840791feb653282af6400b8dcf8be7d084ea15c9c6:log:22', 'hash': '0xd9ccdd7401dad344f6014f840791feb653282af6400b8dcf8be7d084ea15c9c6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd0072ee2bed1b15cc7c6e01efc7a9e40dad66d1c', 'value': 571.59282869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0d4ef570b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:44:35.000Z'}}, {'blockNum': '0xa1b15c', 'uniqueId': '0x4551901515939df6edede3b133c5aa3aeb429ec14f432f52763180aa5627dfe7:log:93', 'hash': '0x4551901515939df6edede3b133c5aa3aeb429ec14f432f52763180aa5627dfe7', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2050.573412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2fbe5eb710', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:09:45.000Z'}}, {'blockNum': '0xa1b194', 'uniqueId': '0x20532199e5407def7145d89e731f3b7ad9a4db1b3fd847434a50c52d4f82fd1b:log:44', 'hash': '0x20532199e5407def7145d89e731f3b7ad9a4db1b3fd847434a50c52d4f82fd1b', 'from': '0xa96b536eef496e21f5432fd258b6f78cf3673f74', 'to': '0x8b453d020ecec6433beb4a09589a3c90033b9104', 'value': 82.93640992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ee56eb20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:22:33.000Z'}}, {'blockNum': '0xa1b1b0', 'uniqueId': '0xb4b39d0172ff347701a60df1df049f7e47ecee702132d08c8e1918af2386f7f2:log:5', 'hash': '0xb4b39d0172ff347701a60df1df049f7e47ecee702132d08c8e1918af2386f7f2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8b453d020ecec6433beb4a09589a3c90033b9104', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:26:36.000Z'}}, {'blockNum': '0xa1b1b0', 'uniqueId': '0x8174bf1936ae8746801997a8a13b548224a244e5c818156e7a6aa00a11f41d44:log:8', 'hash': '0x8174bf1936ae8746801997a8a13b548224a244e5c818156e7a6aa00a11f41d44', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe23937a89f8d9f0a50bc655cee409258d632b3de', 'value': 193.78164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0483075120', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:26:36.000Z'}}, {'blockNum': '0xa1b21e', 'uniqueId': '0x20ada5c551fddb64342e44dbcb9deb3a76af47a00bc0e11872a77520c5af74b2:log:60', 'hash': '0x20ada5c551fddb64342e44dbcb9deb3a76af47a00bc0e11872a77520c5af74b2', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x04d5e5aa341773695ecab47bbd68175732766884', 'value': 319.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0771803a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:53:08.000Z'}}, {'blockNum': '0xa1b221', 'uniqueId': '0xb78e623a511273c0e077345d0c5a4c684c9310f6c4dd1e28920ef48a3e77ccc0:log:48', 'hash': '0xb78e623a511273c0e077345d0c5a4c684c9310f6c4dd1e28920ef48a3e77ccc0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x818fc66be24f3221fb13bae9109bfc05c7b9ddb4', 'value': 0.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0493e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:54:25.000Z'}}, {'blockNum': '0xa1b226', 'uniqueId': '0x69c6582f04c89b40d7d0e198242f3dd8196ea22cea2a8c907e11d35e72762169:log:101', 'hash': '0x69c6582f04c89b40d7d0e198242f3dd8196ea22cea2a8c907e11d35e72762169', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x992a93edfa32a04f838d6cd5b3287c7b947cccae', 'value': 58.372926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015bee0438', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:56:27.000Z'}}, {'blockNum': '0xa1b244', 'uniqueId': '0x3bfbabeea1c3f5a9a8a3edb0eed34ffdff8b69e4f32c27cb60cdf8473069bedf:log:168', 'hash': '0x3bfbabeea1c3f5a9a8a3edb0eed34ffdff8b69e4f32c27cb60cdf8473069bedf', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3512.44708578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x51c7d0eae2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:01:59.000Z'}}, {'blockNum': '0xa1b264', 'uniqueId': '0xc811cb3f77e6d838e4bc49360292b370b53c50c407ec1a7f78fd28c94f04f6c7:log:17', 'hash': '0xc811cb3f77e6d838e4bc49360292b370b53c50c407ec1a7f78fd28c94f04f6c7', 'from': '0x818fc66be24f3221fb13bae9109bfc05c7b9ddb4', 'to': '0xeb1584075e174c9998bd9cd672f812c05945089b', 'value': 188.447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04633b4d60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:09:19.000Z'}}, {'blockNum': '0xa1b2bc', 'uniqueId': '0xf11f959ce02d20fe90691f0fc79516724d4bb53a667c7f70c7bf198f2253c9eb:log:95', 'hash': '0xf11f959ce02d20fe90691f0fc79516724d4bb53a667c7f70c7bf198f2253c9eb', 'from': '0x18b2e69083d6f20337c62667998045252565af56', 'to': '0x5355be56a8b2b4d82894d0ecd48b3e22a6aa35b9', 'value': 510.08, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0be0505000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:29:57.000Z'}}, {'blockNum': '0xa1b2ea', 'uniqueId': '0x75ba2e34146d8eaaef7205e21858a571eb0176643dfb736d798c28c849044266:log:47', 'hash': '0x75ba2e34146d8eaaef7205e21858a571eb0176643dfb736d798c28c849044266', 'from': '0x38b706fc6b521996fdbd57d5808f9a8d6f2906e5', 'to': '0x845eb3acc1f315392ff405da89bad19c701e12db', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:40:14.000Z'}}, {'blockNum': '0xa1b2f2', 'uniqueId': '0x21c7428990bb06b64b060fad5fe71639f6a7e4ace04c998bb2511c9044b42696:log:17', 'hash': '0x21c7428990bb06b64b060fad5fe71639f6a7e4ace04c998bb2511c9044b42696', 'from': '0xbf767800b7c5659cfe5f4c4eb79cdc62740da3cf', 'to': '0xbd1b449e02510600095b7219c685cf9d42084d4a', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:41:38.000Z'}}, {'blockNum': '0xa1b2fc', 'uniqueId': '0xef8c2fc1e3e85249bf770834b1392041794d875c0aa0395a396f370b38cf5068:log:75', 'hash': '0xef8c2fc1e3e85249bf770834b1392041794d875c0aa0395a396f370b38cf5068', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe2065d6cece3157c9f100dce3568bffc1c05a16', 'value': 42.896386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xffaeb0c8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:43:02.000Z'}}, {'blockNum': '0xa1b2fd', 'uniqueId': '0x7d8715a06cee0db9d3b5b623b88b59e0bc6bf8808bad47d01133015d40cc6289:log:45', 'hash': '0x7d8715a06cee0db9d3b5b623b88b59e0bc6bf8808bad47d01133015d40cc6289', 'from': '0xbd1b449e02510600095b7219c685cf9d42084d4a', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:43:35.000Z'}}, {'blockNum': '0xa1b30b', 'uniqueId': '0x31f89b25dd3781ce81c8631a6bf63e7c54ab5c6d70e1123ae809985c222b5fdc:log:33', 'hash': '0x31f89b25dd3781ce81c8631a6bf63e7c54ab5c6d70e1123ae809985c222b5fdc', 'from': '0x38b706fc6b521996fdbd57d5808f9a8d6f2906e5', 'to': '0x845eb3acc1f315392ff405da89bad19c701e12db', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:46:36.000Z'}}, {'blockNum': '0xa1b313', 'uniqueId': '0xa1dc078dcda7074111fbaebfc96bfb8a1a7106df15eecb5e67d343e059580e70:log:22', 'hash': '0xa1dc078dcda7074111fbaebfc96bfb8a1a7106df15eecb5e67d343e059580e70', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:47:28.000Z'}}, {'blockNum': '0xa1b394', 'uniqueId': '0xe517080822db4631689e7ce1fc649445502cca7f4e5c9c3069ad96e8c9438b0e:log:164', 'hash': '0xe517080822db4631689e7ce1fc649445502cca7f4e5c9c3069ad96e8c9438b0e', 'from': '0xaae374c03680420ccfec622ee6a8e0ecc5cce28d', 'to': '0x7d9927449f7db9a8c107959300acc75ae6e14419', 'value': 28.7940905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba04b9a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:13:52.000Z'}}, {'blockNum': '0xa1b3d0', 'uniqueId': '0xc415b22abd15929b1d55d2f6215421de7f4606b9128c7de253f3c39276494ff3:log:130', 'hash': '0xc415b22abd15929b1d55d2f6215421de7f4606b9128c7de253f3c39276494ff3', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x0706ba9e814171830e0cd30b64bbaad0ebd5b0f4', 'value': 16.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6516e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:26:34.000Z'}}, {'blockNum': '0xa1b3d9', 'uniqueId': '0x28018df0700a55c73ea4b6a0e4fceb3f2938953a3ef06df64afca59a088d6b3d:log:118', 'hash': '0x28018df0700a55c73ea4b6a0e4fceb3f2938953a3ef06df64afca59a088d6b3d', 'from': '0x6f4f230d0d3be76929a9068163ac2f07e1ab419e', 'to': '0xc922a08d7caac245e2d5dc81671b7aa91cbdb30a', 'value': 16172.27386313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01788a438dc9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:29:13.000Z'}}, {'blockNum': '0xa1b3dd', 'uniqueId': '0x0eb7da6b7c63b1136b4806d728a56f2d9ef0f05aba87e2b54187642133a4f8e3:log:50', 'hash': '0x0eb7da6b7c63b1136b4806d728a56f2d9ef0f05aba87e2b54187642133a4f8e3', 'from': '0xc922a08d7caac245e2d5dc81671b7aa91cbdb30a', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 16172.2738631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01788a438dc6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:29:59.000Z'}}, {'blockNum': '0xa1b3e2', 'uniqueId': '0x126e4c79d7b592bd8b4aa0a1a15801d072d96d877f29bf6514864ef7edc3afec:log:189', 'hash': '0x126e4c79d7b592bd8b4aa0a1a15801d072d96d877f29bf6514864ef7edc3afec', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3ae203c100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:30:35.000Z'}}, {'blockNum': '0xa1b3ef', 'uniqueId': '0x67aa59e96606072f6cbf58d0245f615595d55ccfee858259a06ae15438ce61e4:log:12', 'hash': '0x67aa59e96606072f6cbf58d0245f615595d55ccfee858259a06ae15438ce61e4', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x0706ba9e814171830e0cd30b64bbaad0ebd5b0f4', 'value': 3045.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x46e8a777c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:32:59.000Z'}}]}}
Number of returned transfers:  184
Answer is complete
 
symbol             RDN
group              BPF
date        2020-08-25
hour             18:00
exchange       binance
Name: 842, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-08-25 18:00:00 2020-08-25 06:00:00 2020-08-26 06:00:00
Unix timestamps:  1598328000.0 1598414400.0
Hex Block Numbers:  0xa3af89 0xa3c8c1
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa3af92', 'uniqueId': '0x5b5f1766a2b18b3a6d710a79e614b187fe7e2a5768e0df12367630b6e5e29ba5:log:141', 'hash': '0x5b5f1766a2b18b3a6d710a79e614b187fe7e2a5768e0df12367630b6e5e29ba5', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12606.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02ab6a37c06abb060000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:02:18.000Z'}}, {'blockNum': '0xa3afb9', 'uniqueId': '0xa198d77ba72da8ee014c6b81591a71907d2afe0dfcfcdf750b87c060ca995d87:log:77', 'hash': '0xa198d77ba72da8ee014c6b81591a71907d2afe0dfcfcdf750b87c060ca995d87', 'from': '0xde056f077b0568cbc995dd44e2360b2d9bfd43bc', 'to': '0xccb1d9e0564cf24c8295d12a47445835561df253', 'value': 380.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x149dfc837bcbc98000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:10:28.000Z'}}, {'blockNum': '0xa3afc2', 'uniqueId': '0x806f79a7be4cb76ed6578988925cca3a8c54fe75bc4de8ae42c26a2c3ad96797:log:69', 'hash': '0x806f79a7be4cb76ed6578988925cca3a8c54fe75bc4de8ae42c26a2c3ad96797', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6278.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01545a2a08aa04bf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:12:34.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x08c50a20c1b324ee0901b92dd5f0763c5fae8646a0df8612089dbfc0a8513ae6:log:232', 'hash': '0x08c50a20c1b324ee0901b92dd5f0763c5fae8646a0df8612089dbfc0a8513ae6', 'from': '0x7ef08b22f03f0686ce8f38f0c56f2e6e9eefb1fb', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1841.5291041194982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x63d459a35b7a05fa0b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b:log:241', 'hash': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 750.1416094495095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28aa4e5b5fadd1e174', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b:log:247', 'hash': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 750.1416094495095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28aa4e5b5fadd1e174', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe3', 'uniqueId': '0xeae232ab680d756b2c5677218f305fa9832788d2a18cec3678342df42e712354:log:112', 'hash': '0xeae232ab680d756b2c5677218f305fa9832788d2a18cec3678342df42e712354', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xa085e5bf56ef8babd4bec8173dc07b144724023a', 'value': 1954.94495572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x69fa4faf7c2c5ad000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:54.000Z'}}, {'blockNum': '0xa3aff1', 'uniqueId': '0xeaae50060d7c2d1d0f837966f529eb3bf4db1209aa5238acef3a1b02acebd665:log:151', 'hash': '0xeaae50060d7c2d1d0f837966f529eb3bf4db1209aa5238acef3a1b02acebd665', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1186.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x404df87e30a81d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:20:39.000Z'}}, {'blockNum': '0xa3aff2', 'uniqueId': '0x3ca0bf4bbca895beea7aa84475bef8a8cf47d72e2a7574157e933d7bddcbf8b9:log:117', 'hash': '0x3ca0bf4bbca895beea7aa84475bef8a8cf47d72e2a7574157e933d7bddcbf8b9', 'from': '0x0f29ea2b1103ff6c491d0e262f54aaa0e810dd06', 'to': '0xf07e40317c1b6a0a668809805f1d6046a13f7517', 'value': 350.84769418999997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1304fd66febbd408b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:20:50.000Z'}}, {'blockNum': '0xa3b024', 'uniqueId': '0xf0dc24f2530ae990667aebad615b8831ef732f2ca659a7b87a590f28e898695b:log:58', 'hash': '0xf0dc24f2530ae990667aebad615b8831ef732f2ca659a7b87a590f28e898695b', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6278.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01545a2a08aa04bf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:32:35.000Z'}}, {'blockNum': '0xa3b038', 'uniqueId': '0xa070576e527ce7c4a9c84e0292da48a2eacff267dfde1c5754daaac79169eb10:log:48', 'hash': '0xa070576e527ce7c4a9c84e0292da48a2eacff267dfde1c5754daaac79169eb10', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1210.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x419a9461b51be68000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:37:10.000Z'}}, {'blockNum': '0xa3b04e', 'uniqueId': '0x569b45fdbdf0f8ee32ffa38284a7d1b4d015a489b2f84e6a96f4ee8d4ce0287a:log:227', 'hash': '0x569b45fdbdf0f8ee32ffa38284a7d1b4d015a489b2f84e6a96f4ee8d4ce0287a', 'from': '0x73e909dd03cc8119a193dae6175a09dea040f719', 'to': '0x81d252fc425340da5e3293e0c4f35de9673062ff', 'value': 2296.295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7c7b7ea835299d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:44:20.000Z'}}, {'blockNum': '0xa3b1cf', 'uniqueId': '0x8c594c7ea7fed2ebc4c397683d714bcaa26e957aa75493507c7561eb79bf1ee7:log:193', 'hash': '0x8c594c7ea7fed2ebc4c397683d714bcaa26e957aa75493507c7561eb79bf1ee7', 'from': '0xcfb7e61debdcbb20e45661ee6de51f4852978625', 'to': '0x11d2ddb2fe0cb09cd0430032bfeee28100739fe5', 'value': 270.69793740414815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0eacb043d9952d71b3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:09:19.000Z'}}, {'blockNum': '0xa3b1d3', 'uniqueId': '0x2b7290204b8fb8862371b01652a200d76afc60550065640913b9ca2896adad0a:log:224', 'hash': '0x2b7290204b8fb8862371b01652a200d76afc60550065640913b9ca2896adad0a', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xaa656d7e71434ef36e49ed935619414e8a95ac39', 'value': 19.435649755889123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010db94c7a7eadc0be', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:10:07.000Z'}}, {'blockNum': '0xa3b231', 'uniqueId': '0x488495722ecd93dee4967843a6cfd20db936e100ba6d8c15f56f009e1edec71c:log:83', 'hash': '0x488495722ecd93dee4967843a6cfd20db936e100ba6d8c15f56f009e1edec71c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6426.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c6013a886ca8f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:35:51.000Z'}}, {'blockNum': '0xa3b243', 'uniqueId': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c:log:50', 'hash': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c', 'from': '0xc1e42f862d202b4a0ed552c1145735ee088f6ccf', 'to': '0xce10c4d313052a9b85790ea129bd8604854fb637', 'value': 44085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0955da4687a8d7b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:39:39.000Z'}}, {'blockNum': '0xa3b243', 'uniqueId': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c:log:54', 'hash': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c', 'from': '0xce10c4d313052a9b85790ea129bd8604854fb637', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 44085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0955da4687a8d7b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:39:39.000Z'}}, {'blockNum': '0xa3b2f0', 'uniqueId': '0xc17e1904cae8f891a3119b8b7f3c125458b73d230858f88dafe57603b3552617:log:177', 'hash': '0xc17e1904cae8f891a3119b8b7f3c125458b73d230858f88dafe57603b3552617', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6426.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c6013a886ca8f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T07:16:42.000Z'}}, {'blockNum': '0xa3b2fa', 'uniqueId': '0xad5c4dc6d7f5f4320cd244ecbce1db119aca70660a4364f2b8561c0aad0c62fd:log:113', 'hash': '0xad5c4dc6d7f5f4320cd244ecbce1db119aca70660a4364f2b8561c0aad0c62fd', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6192.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014fb8b93b3d1ae10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T07:18:06.000Z'}}, {'blockNum': '0xa3b3b3', 'uniqueId': '0xa5f258f1751d0612dfab68a710f781d623f04af299c81412dbab4d15fa01bde9:log:144', 'hash': '0xa5f258f1751d0612dfab68a710f781d623f04af299c81412dbab4d15fa01bde9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 13389.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d5d71d00f8af7b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:00:20.000Z'}}, {'blockNum': '0xa3b3d9', 'uniqueId': '0x2a91a7d17c34b9e536fb8b19b4367de15f51a12f8d9d19213dcc06884dddae41:log:3', 'hash': '0x2a91a7d17c34b9e536fb8b19b4367de15f51a12f8d9d19213dcc06884dddae41', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 5590.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012f0e3f05d827ff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:10:49.000Z'}}, {'blockNum': '0xa3b400', 'uniqueId': '0x1c28888abc4831abc11ed39167cb16c273762ad798786579394befd52ed53d61:log:214', 'hash': '0x1c28888abc4831abc11ed39167cb16c273762ad798786579394befd52ed53d61', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 5590.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012f0e3f05d827ff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:16:49.000Z'}}, {'blockNum': '0xa3b486', 'uniqueId': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc:log:28', 'hash': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:44:30.000Z'}}, {'blockNum': '0xa3b486', 'uniqueId': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc:log:31', 'hash': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc', 'from': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'to': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:44:30.000Z'}}, {'blockNum': '0xa3b491', 'uniqueId': '0xace984b18c69f19a47e7536f8dd60a2865d9d03a82ab2f12d221e43d30c4408b:log:110', 'hash': '0xace984b18c69f19a47e7536f8dd60a2865d9d03a82ab2f12d221e43d30c4408b', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13389.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d5d71d00f8af7b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:47:19.000Z'}}, {'blockNum': '0xa3b5d5', 'uniqueId': '0x41b2df04ff05310e101ab2055991a94d0687e3b29814ff607738f300bcd22332:log:212', 'hash': '0x41b2df04ff05310e101ab2055991a94d0687e3b29814ff607738f300bcd22332', 'from': '0x9f479998c09f80346412894e7cdd46dec1c36a6e', 'to': '0x1c62ff66af8aad410065e02338f5bfbbe23e1f10', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T09:57:46.000Z'}}, {'blockNum': '0xa3b62b', 'uniqueId': '0xaeff2294ce962bbf8882c9701401455fb9b0c5a2180a28fc6e61db966edf2378:log:89', 'hash': '0xaeff2294ce962bbf8882c9701401455fb9b0c5a2180a28fc6e61db966edf2378', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'value': 727.1390274133923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x276b14c4e282477210', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:46.000Z'}}, {'blockNum': '0xa3b62b', 'uniqueId': '0x8bbccd87b93a85c0ffda9262820bafd17892ee67ba8307bd12cbd6f10a2e3e00:log:93', 'hash': '0x8bbccd87b93a85c0ffda9262820bafd17892ee67ba8307bd12cbd6f10a2e3e00', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 680.0358673752519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24dd64ba64b28a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:46.000Z'}}, {'blockNum': '0xa3b62d', 'uniqueId': '0x9940ef50c997e0dcf2e99227cc955c43e8213dac1a82aec97b2d5b29afa6bd5b:log:184', 'hash': '0x9940ef50c997e0dcf2e99227cc955c43e8213dac1a82aec97b2d5b29afa6bd5b', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x4900d62465100ec25e7480ca31da2f3f634ba58d', 'value': 519.2758435283765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c266664729e350d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:53.000Z'}}, {'blockNum': '0xa3b68b', 'uniqueId': '0xe4229f056c8fdc2a368682dbe56d80d1c58cbdaf21218a55bdcdfb72853f7d45:log:15', 'hash': '0xe4229f056c8fdc2a368682dbe56d80d1c58cbdaf21218a55bdcdfb72853f7d45', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6009.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0145c50a0de320ab0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:41:20.000Z'}}, {'blockNum': '0xa3b695', 'uniqueId': '0x30b5a10719e850bb04d64760450f2135b59d424e4bb021b67f8066036a54a858:log:18', 'hash': '0x30b5a10719e850bb04d64760450f2135b59d424e4bb021b67f8066036a54a858', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 105317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x164d3efa829e96740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:43:37.000Z'}}, {'blockNum': '0xa3b69a', 'uniqueId': '0x300542852e618b17f644199a323465e5af178ec5c009def9c781d76d55a1b994:log:106', 'hash': '0x300542852e618b17f644199a323465e5af178ec5c009def9c781d76d55a1b994', 'from': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'to': '0xd29a5c212723b0a51ded27623f48ce56ca2770f5', 'value': 1047.1390274133923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38c3f92573bf477210', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:44:10.000Z'}}, {'blockNum': '0xa3b6a7', 'uniqueId': '0x627ade68b7f174feb2ddc5814bfbf6a4d0a1a88bedb70e8c96c0300bec12747f:log:72', 'hash': '0x627ade68b7f174feb2ddc5814bfbf6a4d0a1a88bedb70e8c96c0300bec12747f', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6009.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0145c50a0de320ab0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:46:41.000Z'}}, {'blockNum': '0xa3b6df', 'uniqueId': '0xa7ba1b3bea2231c4020ee8215574c4d29d9a4f9b7175dde022c3907a2cc9817d:log:1', 'hash': '0xa7ba1b3bea2231c4020ee8215574c4d29d9a4f9b7175dde022c3907a2cc9817d', 'from': '0x67d484739466bca5e3d0d5eddb957746a5750561', 'to': '0x3ce4285cb7aa1617af7535f7a32ad7b2970c9b27', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04a89f54ef0121c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:57:44.000Z'}}, {'blockNum': '0xa3b76e', 'uniqueId': '0x540c6da8b5954d0377b4797f2bac7274b2d2234021cf5931ad39c79d84be532f:log:80', 'hash': '0x540c6da8b5954d0377b4797f2bac7274b2d2234021cf5931ad39c79d84be532f', 'from': '0x3ce4285cb7aa1617af7535f7a32ad7b2970c9b27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04a89f54ef0121c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:30:00.000Z'}}, {'blockNum': '0xa3b777', 'uniqueId': '0x854422f17e2657ad7f039e36bf383dda6acf123c8560a7cd7af26c361606461b:log:90', 'hash': '0x854422f17e2657ad7f039e36bf383dda6acf123c8560a7cd7af26c361606461b', 'from': '0x00c4e9a1a6fcf839f1f5c45c6bfbd96cf0d873b2', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 699.7577643709647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25ef16fb3848d8064f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:32:26.000Z'}}, {'blockNum': '0xa3b7e5', 'uniqueId': '0xeacd83159851d2c46a7ddd2812cbe56fca0db923e5aac1e2d92ab350a64eea45:log:84', 'hash': '0xeacd83159851d2c46a7ddd2812cbe56fca0db923e5aac1e2d92ab350a64eea45', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 3017.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa39b065b00f1270000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:57:14.000Z'}}, {'blockNum': '0xa3b837', 'uniqueId': '0xe03a5e0eb26350ee6fcccd0c0b888691010cca7819141529762b1420227729cc:log:162', 'hash': '0xe03a5e0eb26350ee6fcccd0c0b888691010cca7819141529762b1420227729cc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 11298.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02647ca8b39071af0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:16:54.000Z'}}, {'blockNum': '0xa3b84e', 'uniqueId': '0xd9c346a5fc92602f6bcc3aa8f34fc0320df11760174d1fd5b464870ff3e9c3a7:log:3', 'hash': '0xd9c346a5fc92602f6bcc3aa8f34fc0320df11760174d1fd5b464870ff3e9c3a7', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 945.6509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x33438ae346dc714000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:22:47.000Z'}}, {'blockNum': '0xa3b871', 'uniqueId': '0xda8693738124b7e753e517ea74623f5cd0045c3b6703f5f70ccada7c98ee8f1b:log:260', 'hash': '0xda8693738124b7e753e517ea74623f5cd0045c3b6703f5f70ccada7c98ee8f1b', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11298.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02647ca8b39071af0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:32:36.000Z'}}, {'blockNum': '0xa3b8eb', 'uniqueId': '0x97cf923152e32d8352e9a9c45b145f95fb46347f61abaad2ee8a6792988a8b0d:log:263', 'hash': '0x97cf923152e32d8352e9a9c45b145f95fb46347f61abaad2ee8a6792988a8b0d', 'from': '0x00c4e9a1a6fcf839f1f5c45c6bfbd96cf0d873b2', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:01:55.000Z'}}, {'blockNum': '0xa3b8ec', 'uniqueId': '0x5cb357feb055d79ffcd6ae54ef370cbdb496e9c82615bd4ef01af7ed9e46f5ff:log:57', 'hash': '0x5cb357feb055d79ffcd6ae54ef370cbdb496e9c82615bd4ef01af7ed9e46f5ff', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 848.4132190741533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2dfe193fa97c921edc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:02:18.000Z'}}, {'blockNum': '0xa3b9ae', 'uniqueId': '0x18fa6f62fa0ed357a803a9cbd36ffa70774801af9612ebe01b32f7c8d0e5e335:log:119', 'hash': '0x18fa6f62fa0ed357a803a9cbd36ffa70774801af9612ebe01b32f7c8d0e5e335', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 7374.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018fc43839cea8df0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:41:47.000Z'}}, {'blockNum': '0xa3b9d0', 'uniqueId': '0x77b662ffa32e8990dcd3e4d013911286fd68fdbda703a24b9af2fa73b5d0aed5:log:79', 'hash': '0x77b662ffa32e8990dcd3e4d013911286fd68fdbda703a24b9af2fa73b5d0aed5', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7374.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018fc43839cea8df0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:47:30.000Z'}}, {'blockNum': '0xa3b9d0', 'uniqueId': '0x767e3ba402f007d447d1284197d93f17575591a85e028625e297d7c842551dc7:log:80', 'hash': '0x767e3ba402f007d447d1284197d93f17575591a85e028625e297d7c842551dc7', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 945.6509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x33438ae346dc714000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:47:30.000Z'}}, {'blockNum': '0xa3ba3f', 'uniqueId': '0x959e8e30d138ae04b6f002f09498fd4ecce7a07fd24611e0c60ea79571f656e4:log:62', 'hash': '0x959e8e30d138ae04b6f002f09498fd4ecce7a07fd24611e0c60ea79571f656e4', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1862.8129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x64fbb8def1bb424000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:12:00.000Z'}}, {'blockNum': '0xa3ba94', 'uniqueId': '0xf18e4d82e2f8e58696d1a3cb82802ebcfd7ff3539212c722d8ae9dbadccfe64e:log:41', 'hash': '0xf18e4d82e2f8e58696d1a3cb82802ebcfd7ff3539212c722d8ae9dbadccfe64e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 449.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186013963aae0a4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:30:37.000Z'}}, {'blockNum': '0xa3bac5', 'uniqueId': '0x8a5694fca74970f43fe9457dfefd8540870f6bc4c5ad53b0bfef832708fd2c5b:log:40', 'hash': '0x8a5694fca74970f43fe9457dfefd8540870f6bc4c5ad53b0bfef832708fd2c5b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5778e79e8c30c1407cbd0332c8877c5258a21067', 'value': 3512.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbe6ed2a48870238000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:42:29.000Z'}}, {'blockNum': '0xa3bad9', 'uniqueId': '0x4c8a5688b37a299d57a971e5f0af7a05ab8f9580d9fbcca7b46c573e0333d353:log:123', 'hash': '0x4c8a5688b37a299d57a971e5f0af7a05ab8f9580d9fbcca7b46c573e0333d353', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2312.4578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7d5bcc752c694c8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:47:01.000Z'}}, {'blockNum': '0xa3bb27', 'uniqueId': '0xdf2238e899623ddc089fb08d58bd25309bf639a1da8ab7761c413920549dc35a:log:10', 'hash': '0xdf2238e899623ddc089fb08d58bd25309bf639a1da8ab7761c413920549dc35a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 322.8989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11811f56c220614000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:04:29.000Z'}}, {'blockNum': '0xa3bb58', 'uniqueId': '0x701a626aac5acd8d1a1ff8ad09460114c592b3be5171c7324f87a75dcae281e8:log:74', 'hash': '0x701a626aac5acd8d1a1ff8ad09460114c592b3be5171c7324f87a75dcae281e8', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1214.1129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x41d13381e7775c4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:14:11.000Z'}}, {'blockNum': '0xa3bbb7', 'uniqueId': '0xa1efb0a9e863d04d4c3e5272be457f86e1937813406be399ab48d1cccaf0aa62:log:130', 'hash': '0xa1efb0a9e863d04d4c3e5272be457f86e1937813406be399ab48d1cccaf0aa62', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15548.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034ae141d61963d70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:34:48.000Z'}}, {'blockNum': '0xa3bbe0', 'uniqueId': '0xb066b46d5423ec5ecc990f95dd654900192279155a7b11f049f1a6d6720debec:log:222', 'hash': '0xb066b46d5423ec5ecc990f95dd654900192279155a7b11f049f1a6d6720debec', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15548.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034ae141d61963d70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:47:08.000Z'}}, {'blockNum': '0xa3bbf1', 'uniqueId': '0xdddcb19f76835fb4c7ad650d7bb62ee9dbde49533cf7b635229ce8d03e83738f:log:272', 'hash': '0xdddcb19f76835fb4c7ad650d7bb62ee9dbde49533cf7b635229ce8d03e83738f', 'from': '0x808df01373f8629a87d07d778aa8c1dd1c6e46a1', 'to': '0xa82e07c32d1538e11a3002ab5a2c869202983020', 'value': 141.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07aa2e2fe2387b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:49:36.000Z'}}, {'blockNum': '0xa3bc0e', 'uniqueId': '0xcc60b80c4f583064790982964b3aa467d1c86a92ac03041265125f0d4a5cc687:log:217', 'hash': '0xcc60b80c4f583064790982964b3aa467d1c86a92ac03041265125f0d4a5cc687', 'from': '0xdedd6d6eb6056470d687c832c477b8770ac20ed5', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1273.9444928689836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x450f88069dfcec49de', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:58:53.000Z'}}, {'blockNum': '0xa3bc0e', 'uniqueId': '0x711fee7aba97238077b45efbffdde7c6079b1d909676a45e8c0be1a0033350f6:log:225', 'hash': '0x711fee7aba97238077b45efbffdde7c6079b1d909676a45e8c0be1a0033350f6', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 778.871482903924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2a39035f102a1ea7a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:58:53.000Z'}}, {'blockNum': '0xa3bc0f', 'uniqueId': '0xb6664b6f45f3f2c96bc89a9445ec5177e82fe1fb053b24e7ba7fb348a5b5f730:log:4', 'hash': '0xb6664b6f45f3f2c96bc89a9445ec5177e82fe1fb053b24e7ba7fb348a5b5f730', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'value': 460.1355907640875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18f1aa01e5a7f2cca0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:59:14.000Z'}}, {'blockNum': '0xa3bcef', 'uniqueId': '0x27ee417f5648ea2270dfcc3977cf34825d8d7a825c6a6a167df71d43cef397f9:log:149', 'hash': '0x27ee417f5648ea2270dfcc3977cf34825d8d7a825c6a6a167df71d43cef397f9', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1537.0118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x535252d8a997bd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:46:44.000Z'}}, {'blockNum': '0xa3bcfa', 'uniqueId': '0x49c0b0bc16a5c3e625207741099c6cba330d9339c17a6b948e7008cbd2aeeeaf:log:48', 'hash': '0x49c0b0bc16a5c3e625207741099c6cba330d9339c17a6b948e7008cbd2aeeeaf', 'from': '0x4a4f1c998b89c0dc000983ffd997420dad282ca1', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:48:47.000Z'}}, {'blockNum': '0xa3bd15', 'uniqueId': '0x186ddd9025f8511685a3abeae95b15785359982a1b93b5147b8cfd6fc5758544:log:128', 'hash': '0x186ddd9025f8511685a3abeae95b15785359982a1b93b5147b8cfd6fc5758544', 'from': '0x1d5b6d9658d958037672f3c0914b784426ac40c1', 'to': '0x3021026e4ff227571a5a563ad19ea657c7027e59', 'value': 27.829513029183406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0182364aa72894ff19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:54:15.000Z'}}, {'blockNum': '0xa3bd44', 'uniqueId': '0x69ce99ec44d041350e752266543287e1f063fe785ddd60307959fff9f6bea9e9:log:166', 'hash': '0x69ce99ec44d041350e752266543287e1f063fe785ddd60307959fff9f6bea9e9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 12279.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0299aac4d200e3e30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:03:08.000Z'}}, {'blockNum': '0xa3bd80', 'uniqueId': '0x86226588d38a8337a2f29a64a7bbe9a7d912ba134084a620ed1e0531a95fed6d:log:25', 'hash': '0x86226588d38a8337a2f29a64a7bbe9a7d912ba134084a620ed1e0531a95fed6d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 1997.743355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c4c4224dfe416b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:14:17.000Z'}}, {'blockNum': '0xa3bd95', 'uniqueId': '0xe3ac98e430783fb3c31ddffed201567b9259608d1534b676c3e53c407d6948e0:log:152', 'hash': '0xe3ac98e430783fb3c31ddffed201567b9259608d1534b676c3e53c407d6948e0', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x5f5ca0899ea0e4ffd3277c922f5d88bf548e7e33', 'value': 1999.0919649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c5ef95e6ef229e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:17:30.000Z'}}, {'blockNum': '0xa3bd9d', 'uniqueId': '0xfff5e03ae970714f85d9e2662d827bb7d8b4c5309e5c507918328dc733a54c75:log:149', 'hash': '0xfff5e03ae970714f85d9e2662d827bb7d8b4c5309e5c507918328dc733a54c75', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12279.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0299aac4d200e3e30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:19:45.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x80178ffce3ff91ac15732a2eafee1728aa43696b38161ee71f598869a1fb7339:log:4', 'hash': '0x80178ffce3ff91ac15732a2eafee1728aa43696b38161ee71f598869a1fb7339', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'value': 4341.597023541895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeb5bc32224fbf1ee8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0:log:15', 'hash': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xf443253607dbde5bda77c358c9b9f244d819e25c', 'value': 1590.4497191036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5637ec78f6029193e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0:log:16', 'hash': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0', 'from': '0xf443253607dbde5bda77c358c9b9f244d819e25c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1590.4497191036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5637ec78f6029193e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b:log:28', 'hash': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b', 'from': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 769.9791610885267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x29bd9b7f7c4ee91350', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b:log:31', 'hash': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 769.9791610885267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x29bd9b7f7c4ee91350', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be51', 'uniqueId': '0xec006ec654178bc863ea67b59e1b2845577fa141b229b0868dc9ba558f11cbb1:log:5', 'hash': '0xec006ec654178bc863ea67b59e1b2845577fa141b229b0868dc9ba558f11cbb1', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1174.457902785993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3faae0a80a095e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:25.000Z'}}, {'blockNum': '0xa3be51', 'uniqueId': '0xed08be20aee8a2a361d4ba49ea809895e99fa5ee917995fb75b3cf0a6525ffe4:log:95', 'hash': '0xed08be20aee8a2a361d4ba49ea809895e99fa5ee917995fb75b3cf0a6525ffe4', 'from': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 4341.597023541895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeb5bc32224fbf1ee8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:25.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0x19577533e5d6d3b41d1a47218caa1c45d7a8a7a58d8a87f50a322232f36ea386:log:2', 'hash': '0x19577533e5d6d3b41d1a47218caa1c45d7a8a7a58d8a87f50a322232f36ea386', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'value': 3192.7976726639913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad14f7f71eef1deb19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe:log:12', 'hash': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 1167.5473956730366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3f4af99a6ef3c93dc3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe:log:13', 'hash': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1167.5473956730366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3f4af99a6ef3c93dc3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be53', 'uniqueId': '0x132b1d35ebeb25c030e06e79c777cd0da320074b576dc8c4770701b664652b18:log:155', 'hash': '0x132b1d35ebeb25c030e06e79c777cd0da320074b576dc8c4770701b664652b18', 'from': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 3192.7976726639913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad14f7f71eef1deb19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:24.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0x0b256fba0b2e453c780f5cc39ba0fdc14754c280b09d1f466fdc627578e9d815:log:61', 'hash': '0x0b256fba0b2e453c780f5cc39ba0fdc14754c280b09d1f466fdc627578e9d815', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1236.8283391281877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x430c70f57090000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0x3958bcc9554fe99428b042b8af5243fd884ecabf5c6a53dc4430c1eb4d944b72:log:111', 'hash': '0x3958bcc9554fe99428b042b8af5243fd884ecabf5c6a53dc4430c1eb4d944b72', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 342.10713515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x128bb0b2db8e4d4c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0xa94813c4e2f56aceacae972a79d30f1cc8e451a0dd574ad4e4c6ba5f46eebbde:log:112', 'hash': '0xa94813c4e2f56aceacae972a79d30f1cc8e451a0dd574ad4e4c6ba5f46eebbde', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 302.5086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10662670f0d4bb8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be55', 'uniqueId': '0x6de6467183a651c80a57f7ebe15a0d6b62f045b51542a2f813e63925f91d2121:log:112', 'hash': '0x6de6467183a651c80a57f7ebe15a0d6b62f045b51542a2f813e63925f91d2121', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6293.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01552a54bd30d39b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:03:03.000Z'}}, {'blockNum': '0xa3be5d', 'uniqueId': '0x6d2747c39d8b6be1f462cd504c93c65cdf8cb3b03c93cd2b1f551f98494a095a:log:28', 'hash': '0x6d2747c39d8b6be1f462cd504c93c65cdf8cb3b03c93cd2b1f551f98494a095a', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:04:14.000Z'}}, {'blockNum': '0xa3be5d', 'uniqueId': '0xcc5aaa2c1bbd96406c5054eec33f7623d44430756ec641995a56a617ef780233:log:161', 'hash': '0xcc5aaa2c1bbd96406c5054eec33f7623d44430756ec641995a56a617ef780233', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6c14f95f0ca1afa9c0d525c4506f2ac5faadaf1f', 'value': 1056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x393ef1a5127c800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:04:14.000Z'}}, {'blockNum': '0xa3be6d', 'uniqueId': '0xa0d800a0c76998def6c8f0d6fc5319fd3ed51eca8c5b061abe2f81b926112705:log:171', 'hash': '0xa0d800a0c76998def6c8f0d6fc5319fd3ed51eca8c5b061abe2f81b926112705', 'from': '0x20aaad6c45ea50f5c1a690fb8a32a2e244abf371', 'to': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'value': 510.6943105412933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1baf4ea9a9b2d07606', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:09:09.000Z'}}, {'blockNum': '0xa3be8d', 'uniqueId': '0x17af0a080840168f8abbd0358af4361a8ff987f89111ae70751748abed4ebb74:log:29', 'hash': '0x17af0a080840168f8abbd0358af4361a8ff987f89111ae70751748abed4ebb74', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 756.518590743924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2902cdf21306b61198', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:15:56.000Z'}}, {'blockNum': '0xa3be90', 'uniqueId': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac:log:223', 'hash': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 693.9065243018865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x259de33360d3e81b32', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:16:33.000Z'}}, {'blockNum': '0xa3be90', 'uniqueId': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac:log:228', 'hash': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 693.9062911053323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x259de25f4986220000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:16:33.000Z'}}, {'blockNum': '0xa3bea8', 'uniqueId': '0x17859523f7c491e61af445091e959eac7f620dfbfb040c9cff26c4dd35bab9d4:log:177', 'hash': '0x17859523f7c491e61af445091e959eac7f620dfbfb040c9cff26c4dd35bab9d4', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 15804.30218338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0358c0c08d009f5d4800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:30.000Z'}}, {'blockNum': '0xa3bea8', 'uniqueId': '0x0cdfda221e1120c2b720ab6524d19a3079aab5af014228b55347d9fe7e808523:log:178', 'hash': '0x0cdfda221e1120c2b720ab6524d19a3079aab5af014228b55347d9fe7e808523', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 9766.95868271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021177c7b65c1eb3dc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:30.000Z'}}, {'blockNum': '0xa3bea9', 'uniqueId': '0x128707f98d508f527cebf4d40177717cb5115936d4fa7c260221e0787207e4d2:log:17', 'hash': '0x128707f98d508f527cebf4d40177717cb5115936d4fa7c260221e0787207e4d2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 1930.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68a44b36d510860000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:40.000Z'}}, {'blockNum': '0xa3beba', 'uniqueId': '0xb8f82894ab4f05b55019507c4c93363cb239e4b90f2059319260bfae53353102:log:101', 'hash': '0xb8f82894ab4f05b55019507c4c93363cb239e4b90f2059319260bfae53353102', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xfb2de6b9eba1c83cd249bad8fcc70a9d97592e04', 'value': 1643.2106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x591420c698dc7e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:25:07.000Z'}}, {'blockNum': '0xa3bed9', 'uniqueId': '0xfb55d191bd7b0db389b92cd9031f39c7cd0bc47087f2f26062ef637b9020634d:log:48', 'hash': '0xfb55d191bd7b0db389b92cd9031f39c7cd0bc47087f2f26062ef637b9020634d', 'from': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26341.1005180309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0593f434200469d24b85', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:30:18.000Z'}}, {'blockNum': '0xa3bf1a', 'uniqueId': '0x3898aebaaf5409778660edf4b6533d62dfa517a429aaf59e51702e486123ca66:log:145', 'hash': '0x3898aebaaf5409778660edf4b6533d62dfa517a429aaf59e51702e486123ca66', 'from': '0x63c410a066d5d12217b713ccac5f600a06ba45e6', 'to': '0xad13e2628410e99b87fc838a83e520a369cf8ed0', 'value': 4215.410378417814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe484921cf838cfdd78', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:45:09.000Z'}}, {'blockNum': '0xa3bf45', 'uniqueId': '0xb3de2d3d0b518a8d677b20bd276462f12997dc62cc81931d6dee9efcf0f5dab6:log:17', 'hash': '0xb3de2d3d0b518a8d677b20bd276462f12997dc62cc81931d6dee9efcf0f5dab6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:53:05.000Z'}}, {'blockNum': '0xa3bf46', 'uniqueId': '0x3cf29f6c4b9692ae76430bf186354b77bdd1ecf9166e1593762cf40e742010ad:log:90', 'hash': '0x3cf29f6c4b9692ae76430bf186354b77bdd1ecf9166e1593762cf40e742010ad', 'from': '0x7ee13b84900a0f0706fa639da8a14daf79ae12d1', 'to': '0x0257b51a38a9a58fab2b3878ca590eeb4529ad7b', 'value': 297.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1020a451c706b60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:53:31.000Z'}}, {'blockNum': '0xa3bf5b', 'uniqueId': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4:log:180', 'hash': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 396.14235619932043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1579945e1c72c1f3c7', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:58:08.000Z'}}, {'blockNum': '0xa3bf5b', 'uniqueId': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4:log:186', 'hash': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 396.14227755477896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x157994169596cc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:58:08.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:103', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:104', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:105', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x6cb2291a3c3794fca0f5b6e34a8e6ea7933ca667', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:107', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x6cb2291a3c3794fca0f5b6e34a8e6ea7933ca667', 'to': '0x480ea104ff7063ed0af41c98d8ef2457afe2a41c', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:108', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x480ea104ff7063ed0af41c98d8ef2457afe2a41c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:116', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 833.3366928430046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d2cdeaaef0618596b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:120', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 578.9604571569954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1f62b0bc5200798695', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf69', 'uniqueId': '0xb8a5dfd1bf04c35fcfa39a5a366d968fb4d45d700d9ba554c6d7464611eb7f13:log:295', 'hash': '0xb8a5dfd1bf04c35fcfa39a5a366d968fb4d45d700d9ba554c6d7464611eb7f13', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:46.000Z'}}, {'blockNum': '0xa3bf8c', 'uniqueId': '0x6cfe3d131ca655572ef089d60a4b8db0172dfd5b08767cb025dff1bf1208e824:log:170', 'hash': '0x6cfe3d131ca655572ef089d60a4b8db0172dfd5b08767cb025dff1bf1208e824', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x38d8a38ef107861320a4e04d5c892c3a559e4bbc', 'value': 24.823626215241642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01587f3c85848d749a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:08:29.000Z'}}, {'blockNum': '0xa3bfb3', 'uniqueId': '0x245214c0dbd06dcaac70f79436c0ed147999f7c84af123d345bcb6808ca0eff2:log:210', 'hash': '0x245214c0dbd06dcaac70f79436c0ed147999f7c84af123d345bcb6808ca0eff2', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6293.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01552a54bd30d39b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:16:34.000Z'}}, {'blockNum': '0xa3c024', 'uniqueId': '0x2cb6f14c9474a6cebe3aa167c75176f1c98bf48db6e34e2d93912ba3e15411ea:log:81', 'hash': '0x2cb6f14c9474a6cebe3aa167c75176f1c98bf48db6e34e2d93912ba3e15411ea', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x31e3d3084dba7065e1a873c7f01768801d3e19b3', 'value': 411.0120713126595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1647f035393c96ca43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:39:53.000Z'}}, {'blockNum': '0xa3c029', 'uniqueId': '0xa11ac4fc1cb0fdb842150048295e3a5647de6a9c99982d74d055e34d4446344d:log:45', 'hash': '0xa11ac4fc1cb0fdb842150048295e3a5647de6a9c99982d74d055e34d4446344d', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xccc9bde7524b71e93af6572559452f5dc69fe85a', 'value': 146.593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07f262f4d126d631e0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:41:32.000Z'}}, {'blockNum': '0xa3c2fd', 'uniqueId': '0x1afec71a73aa9b2f802855cbe902e640e06c6609ad8a6afd52065af34f73b399:log:234', 'hash': '0x1afec71a73aa9b2f802855cbe902e640e06c6609ad8a6afd52065af34f73b399', 'from': '0x02ec30889bd132f7cff78833cc6bad389646bb99', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T22:23:28.000Z'}}, {'blockNum': '0xa3c3ad', 'uniqueId': '0xed84e2cd8a1f474587426c67f96fca527a0eebdcf8cbccb30a52796deef28c21:log:69', 'hash': '0xed84e2cd8a1f474587426c67f96fca527a0eebdcf8cbccb30a52796deef28c21', 'from': '0xdac6008346a4718b59b1abdf6d7511395bdd1f56', 'to': '0xd9a0691574dc09d6cec1b1134524385d2ca63b4a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T23:04:49.000Z'}}, {'blockNum': '0xa3c3b6', 'uniqueId': '0x5b36e9fe4a981acee49a1fcf245736becce167cfbb8739b4c716e2cb190a5647:log:240', 'hash': '0x5b36e9fe4a981acee49a1fcf245736becce167cfbb8739b4c716e2cb190a5647', 'from': '0xd9a0691574dc09d6cec1b1134524385d2ca63b4a', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T23:06:32.000Z'}}, {'blockNum': '0xa3c4f7', 'uniqueId': '0x1595998200632dd841fe6ac5aea6800a21c02730e02bc700092cabd43dd7cf93:log:6', 'hash': '0x1595998200632dd841fe6ac5aea6800a21c02730e02bc700092cabd43dd7cf93', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x22a70b1619668d5fe45192b70aa2a89291166058', 'value': 1533.0077574300003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x531ac1a128cd5c2940', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:20:08.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:204', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'value': 213.34338032704113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b90bbf210d659094d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:207', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0x4b30796bf2cc2092ae7341e2999ad73d7d456013', 'value': 4.266867606540822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3b36f57b377ca924', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:208', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0xe3f5ea1e1212e02039ec2df87e567ba1c79f3a03', 'value': 1.0667169016352056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ecdbd5ecddf2a4a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:209', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0xf4f5a319fca9ca06c918b28b43f92e347fd8c091', 'value': 208.00979581886511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b46b73f36d0fd35df', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c5b1', 'uniqueId': '0xc068762faaebe54f6b80952585382bc466db8319f8c789a50114c816e9c52f50:log:200', 'hash': '0xc068762faaebe54f6b80952585382bc466db8319f8c789a50114c816e9c52f50', 'from': '0x7532001d3e8c79f64ca8725eb959dfeb88b57c90', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 548.0877969503358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1db63f036ec7304803', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T01:06:58.000Z'}}, {'blockNum': '0xa3c608', 'uniqueId': '0x94650cc837745dd8b63ec24b3ab659e70170a98848dbc0c7c45f5108ea293057:log:39', 'hash': '0x94650cc837745dd8b63ec24b3ab659e70170a98848dbc0c7c45f5108ea293057', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x79338fa41fce2ea394c5f273f4bcaf4936010b20', 'value': 737.77922115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27febe54b6ce1cac00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T01:25:52.000Z'}}, {'blockNum': '0xa3c6fd', 'uniqueId': '0x558a5e3dcff00ba08c0a7ccb4bf5e94b446c1a79027046cbfde6d18f8564a732:log:97', 'hash': '0x558a5e3dcff00ba08c0a7ccb4bf5e94b446c1a79027046cbfde6d18f8564a732', 'from': '0x5e1102507c1f9e1e2e7218f791a5ded8ab93ee90', 'to': '0x7909021779e05396aabf314fbb3639a44142147c', 'value': 145.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07e71a999fdc720000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T02:16:44.000Z'}}]}}
Number of returned transfers:  118
Answer is complete
 
symbol             QLC
group              BPF
date        2020-09-06
hour             16:00
exchange       binance
Name: 843, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: QLC, Contract: 
Datetime timestamps:  2020-09-06 16:00:00 2020-09-06 04:00:00 2020-09-07 04:00:00
Unix timestamps:  1599357600.0 1599444000.0
Hex Block Numbers:  0xa4df75 0xa4f93a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            STPT
group              BPF
date        2020-09-08
hour             16:00
exchange       binance
Name: 844, dtype: object
HERE
 Symbol: STPT, Contract: 0xde7d85157d9714eadf595045cc12ca4a5f3e2adb
Datetime timestamps:  2020-09-08 16:00:00 2020-09-08 04:00:00 2020-09-09 04:00:00
Unix timestamps:  1599530400.0 1599616800.0
Hex Block Numbers:  0xa5126a 0xa52c09
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa51271', 'uniqueId': '0x2f80dfdcbc94a42da88fd37d32a2329393ae69ea196a73644f30501d94bf7aaf:log:97', 'hash': '0x2f80dfdcbc94a42da88fd37d32a2329393ae69ea196a73644f30501d94bf7aaf', 'from': '0xc1dbfbce3fb34a4fe57810550302bafdb20e2b4d', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 162369.4139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x22621045c80690ecc000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T02:01:13.000Z'}}, {'blockNum': '0xa51289', 'uniqueId': '0xb0380ebb843c4d6bb492eb15c827615affea7620eda210f68d54e3d92fc99e6b:log:30', 'hash': '0xb0380ebb843c4d6bb492eb15c827615affea7620eda210f68d54e3d92fc99e6b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 1030245.99990248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60620eece2a000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T02:06:32.000Z'}}, {'blockNum': '0xa512d5', 'uniqueId': '0x3d0c61f3a570d974acd9b771a84331e485b43563b0a7fe4a08135c02678c55b4:log:68', 'hash': '0x3d0c61f3a570d974acd9b771a84331e485b43563b0a7fe4a08135c02678c55b4', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99994061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa50f51ea59400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T02:23:43.000Z'}}, {'blockNum': '0xa512dc', 'uniqueId': '0x4b0d52d78df23a7605930f9cbeb775912644673e32c0fcabfaa1673c48b73bb0:log:110', 'hash': '0x4b0d52d78df23a7605930f9cbeb775912644673e32c0fcabfaa1673c48b73bb0', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 142594.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1e3216bc72783ae90000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T02:25:19.000Z'}}, {'blockNum': '0xa512e3', 'uniqueId': '0xa365a4f9c74c7d042d44f1a6c7da876e9d0842c3dd42159419df9c7b26374cce:log:31', 'hash': '0xa365a4f9c74c7d042d44f1a6c7da876e9d0842c3dd42159419df9c7b26374cce', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 178506.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25ccdb655b9a91860000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T02:26:33.000Z'}}, {'blockNum': '0xa51311', 'uniqueId': '0xd987088bf078a0207416ed8f8daed89ede48b6af8329f45fa712830bb8a7f1c3:log:11', 'hash': '0xd987088bf078a0207416ed8f8daed89ede48b6af8329f45fa712830bb8a7f1c3', 'from': '0x3e9afaa4a062a49d64b8ab057b3cb51892e17ecb', 'to': '0x70bc2a3e453cb42e7f29b3147f004bec2ace8627', 'value': 78321.556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1095d1ef589c98420000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T02:35:02.000Z'}}, {'blockNum': '0xa51364', 'uniqueId': '0x733e55a6e46b035c898f97d9cef68b085d1e07a49c11cf9a797d22864cd11898:log:34', 'hash': '0x733e55a6e46b035c898f97d9cef68b085d1e07a49c11cf9a797d22864cd11898', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 7024.4843834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x017ccc4dc16393d89000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T02:51:27.000Z'}}, {'blockNum': '0xa5138a', 'uniqueId': '0x238d4e9f7907fff688f42718422fd245921a8259c238be8b2a2254de7e53ad08:log:11', 'hash': '0x238d4e9f7907fff688f42718422fd245921a8259c238be8b2a2254de7e53ad08', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 340400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x48151ef8438138c00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:01:18.000Z'}}, {'blockNum': '0xa51394', 'uniqueId': '0xf9c6485435dc3c3ccda06a5588efd321e9e00d44dc40c6043eff2fc8b01f2fd4:log:48', 'hash': '0xf9c6485435dc3c3ccda06a5588efd321e9e00d44dc40c6043eff2fc8b01f2fd4', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0x561c75466c1568c2b581c5538b84039a44d186e7', 'value': 63344.20516882647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0d69e5702d10a4463cd3', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:04:08.000Z'}}, {'blockNum': '0xa5139c', 'uniqueId': '0x1d20cc684e52d61c6e936abb6a7341e3039fe05677e90a0c79eb7ef81f4da87d:log:180', 'hash': '0x1d20cc684e52d61c6e936abb6a7341e3039fe05677e90a0c79eb7ef81f4da87d', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0x8568e5cf0723c1a0f8b124b058ca12f0af1ae43d', 'value': 28347.011056255626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0600b1cdeec35b1bc5e8', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:06:02.000Z'}}, {'blockNum': '0xa513b0', 'uniqueId': '0xe4f28a19f0ada1fdf3105c59e33de82897908e25eb4cb8b9b9b2341a01606c22:log:88', 'hash': '0xe4f28a19f0ada1fdf3105c59e33de82897908e25eb4cb8b9b9b2341a01606c22', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 839834.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb1d787fe4e9151280000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:10:46.000Z'}}, {'blockNum': '0xa513b9', 'uniqueId': '0x64f4c321c50381a9faee908c6b068738005e45cfabf3f10270c551585fcdf92d:log:282', 'hash': '0x64f4c321c50381a9faee908c6b068738005e45cfabf3f10270c551585fcdf92d', 'from': '0x561c75466c1568c2b581c5538b84039a44d186e7', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 22006.796167107474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x04a8fda5c4fb24e3a915', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:13:07.000Z'}}, {'blockNum': '0xa513bd', 'uniqueId': '0x764e5a1f64008a1f23edb58654ed964b7430aa79fbbc522fadbb5b64b0a539c1:log:92', 'hash': '0x764e5a1f64008a1f23edb58654ed964b7430aa79fbbc522fadbb5b64b0a539c1', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0xcb6ea5f79a6ad76c9bb6ddd99af6e6d2f086e8e7', 'value': 14180.892714981492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0300bf6b86af9c8d3aab', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:14:04.000Z'}}, {'blockNum': '0xa513c2', 'uniqueId': '0xe13954b6f8c93d5a268d2aba032f025b8ddaaf2bd3e349e14fa59c99e05b65ea:log:201', 'hash': '0xe13954b6f8c93d5a268d2aba032f025b8ddaaf2bd3e349e14fa59c99e05b65ea', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 76529.39930913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1034aac3c184be5c6400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:14:29.000Z'}}, {'blockNum': '0xa513c2', 'uniqueId': '0x1b3df965fa3bb253d4c7255698221167875739bf27133f6f3cc52be759061460:log:203', 'hash': '0x1b3df965fa3bb253d4c7255698221167875739bf27133f6f3cc52be759061460', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xadaa407ab760c7d8b297c56d8a5431a169af6f91', 'value': 12500.93679999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x02a5ad592aca045a1c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:14:29.000Z'}}, {'blockNum': '0xa513c9', 'uniqueId': '0xaa50ac5c229403aba094540ca466150136078d6a04aec7b5ed3a2739a5cdca69:log:52', 'hash': '0xaa50ac5c229403aba094540ca466150136078d6a04aec7b5ed3a2739a5cdca69', 'from': '0xadaa407ab760c7d8b297c56d8a5431a169af6f91', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 12500.93679999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x02a5ad592aca045a1c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:16:20.000Z'}}, {'blockNum': '0xa513ca', 'uniqueId': '0x2528ca08f4ee4eaa4f5078f5e400467b0995715ce1dc88e9817e64c9732a61fd:log:135', 'hash': '0x2528ca08f4ee4eaa4f5078f5e400467b0995715ce1dc88e9817e64c9732a61fd', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 76529.39930913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1034aac3c184be5c6400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:17:08.000Z'}}, {'blockNum': '0xa513da', 'uniqueId': '0xe1251cffb2212a21be027eeff7373bcb41d67195754215ac8876535b6884eea3:log:41', 'hash': '0xe1251cffb2212a21be027eeff7373bcb41d67195754215ac8876535b6884eea3', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x085bc169b2f01d53f57c41de2eb21d6a6a4541eb', 'value': 444067.11972215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x5e08ed428adc2b2afc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:21:18.000Z'}}, {'blockNum': '0xa513de', 'uniqueId': '0xbb6e9c2831d8453b4740192f0ba71e39dd5e8e4b987fcfee0ecc498117a2819e:log:191', 'hash': '0xbb6e9c2831d8453b4740192f0ba71e39dd5e8e4b987fcfee0ecc498117a2819e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 818880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xad6792e14bd0c3000000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:22:12.000Z'}}, {'blockNum': '0xa513de', 'uniqueId': '0xb767a34a66b7d73cc47a3394157880df8df5dd63e711eb6f52ce6d2fecea5854:log:192', 'hash': '0xb767a34a66b7d73cc47a3394157880df8df5dd63e711eb6f52ce6d2fecea5854', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 98646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14e39c418f179f980000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:22:12.000Z'}}, {'blockNum': '0xa513e1', 'uniqueId': '0x196b81f316e99e126a6e0e832912fb583aa37a06203a27f4b7500c69cc235819:log:252', 'hash': '0x196b81f316e99e126a6e0e832912fb583aa37a06203a27f4b7500c69cc235819', 'from': '0xe19ff0f87a9a45e645f521c4b3d5134081da4f72', 'to': '0x737379f23cffde7d3de3b9b88a28a523ad92ec8f', 'value': 14374.626759050772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x030b40051d51ede7e23a', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:22:54.000Z'}}, {'blockNum': '0xa513f6', 'uniqueId': '0x958cd0aba3d466f0475d2d6ae005b6d02b9cbaed6c502b1aea8544e31ce655c1:log:44', 'hash': '0x958cd0aba3d466f0475d2d6ae005b6d02b9cbaed6c502b1aea8544e31ce655c1', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x085bc169b2f01d53f57c41de2eb21d6a6a4541eb', 'value': 240300.64730248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x32e2b964b235edd12000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:27:24.000Z'}}, {'blockNum': '0xa513f8', 'uniqueId': '0x6a4f4e0327a7803041f18c8277c21dc24bec716eeb7494a917c380ff6af597f0:log:143', 'hash': '0x6a4f4e0327a7803041f18c8277c21dc24bec716eeb7494a917c380ff6af597f0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbb879307511f899bedff5b7d0cdf67638f8e7b6a', 'value': 52746.62664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0b2b667df9798bf50000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:28:54.000Z'}}, {'blockNum': '0xa513f8', 'uniqueId': '0xdb666781c03c6b564a4636a2876c440e8eb0e5ddba43ed35920408fcf4dbbe30:log:167', 'hash': '0xdb666781c03c6b564a4636a2876c440e8eb0e5ddba43ed35920408fcf4dbbe30', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x490fd815bb919eb220795ca64ae3beaab6f4bf7f', 'value': 81270.31902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1135ac3e1015ec56c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:28:54.000Z'}}, {'blockNum': '0xa513fe', 'uniqueId': '0xd99d37bb24b82cacb048e74dc5701015bd407f4064fc39c6941c34b36ce91165:log:84', 'hash': '0xd99d37bb24b82cacb048e74dc5701015bd407f4064fc39c6941c34b36ce91165', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 839834.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb1d787fe4e9151280000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:30:10.000Z'}}, {'blockNum': '0xa51402', 'uniqueId': '0x4e1729d9f276c6e5d80b15adf5a29ba571bddd6f5d8c6ff944d73c4220f7afbe:log:139', 'hash': '0x4e1729d9f276c6e5d80b15adf5a29ba571bddd6f5d8c6ff944d73c4220f7afbe', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 98646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14e39c418f179f980000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:30:38.000Z'}}, {'blockNum': '0xa51402', 'uniqueId': '0xa43eb0b850ecb42148de61c91f41c31473db037bd4558bdb2edc7b811f7903ab:log:140', 'hash': '0xa43eb0b850ecb42148de61c91f41c31473db037bd4558bdb2edc7b811f7903ab', 'from': '0x3423940069110f235a4c3e1112abe0246170903b', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 818880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xad6792e14bd0c3000000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:30:38.000Z'}}, {'blockNum': '0xa5140d', 'uniqueId': '0xcbdafd3782ee7237acb9620eadbcec8e23bca42aabe59415a26a2e3562c3e5d3:log:62', 'hash': '0xcbdafd3782ee7237acb9620eadbcec8e23bca42aabe59415a26a2e3562c3e5d3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0c85c808664fa844bc23b9384beeb67379b2a640', 'value': 316569.3273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x430941f3632b85c04000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:33:19.000Z'}}, {'blockNum': '0xa51415', 'uniqueId': '0x5cf5c7b3047340a32bebd625bc2f626214297efe2a6c3993f8050c8a5fb795d5:log:255', 'hash': '0x5cf5c7b3047340a32bebd625bc2f626214297efe2a6c3993f8050c8a5fb795d5', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 178506.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25ccdb655b9a91860000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:35:42.000Z'}}, {'blockNum': '0xa5141b', 'uniqueId': '0x1b9894ad26b1ad83d9c6f28624a8efe7ece7e98112a735c9ef6849cf7b8e4917:log:24', 'hash': '0x1b9894ad26b1ad83d9c6f28624a8efe7ece7e98112a735c9ef6849cf7b8e4917', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x0624eae31407dfb1556b3fa49ab9c4d11058300c', 'value': 44041.0309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09537814e82af6134000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:37:12.000Z'}}, {'blockNum': '0xa5141b', 'uniqueId': '0x193279a19ae341e45a34e19bfae765b3508c68e4cca516ed5836db4470c38725:log:30', 'hash': '0x193279a19ae341e45a34e19bfae765b3508c68e4cca516ed5836db4470c38725', 'from': '0x085bc169b2f01d53f57c41de2eb21d6a6a4541eb', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 684367.76702463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x90eba6a73d1218fc1c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:37:12.000Z'}}, {'blockNum': '0xa5141d', 'uniqueId': '0x7e8ab367eb051f3c46a4b2491dd990dfc76ba06f4bf84fc22267af1a9fdb3d58:log:143', 'hash': '0x7e8ab367eb051f3c46a4b2491dd990dfc76ba06f4bf84fc22267af1a9fdb3d58', 'from': '0x490fd815bb919eb220795ca64ae3beaab6f4bf7f', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 81270.31902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1135ac3e1015ec56c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:37:25.000Z'}}, {'blockNum': '0xa51420', 'uniqueId': '0xd9da25cf5b5c2ec29b50fbc0a94337ce1c08256f210c6fecd2ee547ed404eb0b:log:71', 'hash': '0xd9da25cf5b5c2ec29b50fbc0a94337ce1c08256f210c6fecd2ee547ed404eb0b', 'from': '0xbb879307511f899bedff5b7d0cdf67638f8e7b6a', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 52746.62664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0b2b667df9798bf50000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:38:02.000Z'}}, {'blockNum': '0xa51428', 'uniqueId': '0x6e5116a7fbcdcd77914bbd3c34b6fe5adb268caa35b65eae3435b73ed43a53ac:log:54', 'hash': '0x6e5116a7fbcdcd77914bbd3c34b6fe5adb268caa35b65eae3435b73ed43a53ac', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 122694.6641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x19fb4a8376c254ae4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:39:41.000Z'}}, {'blockNum': '0xa5142d', 'uniqueId': '0x0be9cd3a16db9b6a7ff37ec9566d44b4bbf62e2a8d908abd1f51da283489cdd5:log:58', 'hash': '0x0be9cd3a16db9b6a7ff37ec9566d44b4bbf62e2a8d908abd1f51da283489cdd5', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 984760.83248339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xd087fddfe9242e3cec00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:40:40.000Z'}}, {'blockNum': '0xa51431', 'uniqueId': '0xfb164f6ac81c19c57e3e7a9dbdd8cff0f09b84ab23338a25fbc4208464c0da09:log:198', 'hash': '0xfb164f6ac81c19c57e3e7a9dbdd8cff0f09b84ab23338a25fbc4208464c0da09', 'from': '0x0c85c808664fa844bc23b9384beeb67379b2a640', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 316569.3273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x430941f3632b85c04000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:41:20.000Z'}}, {'blockNum': '0xa5143e', 'uniqueId': '0x521cc3d96eeab9da0504050d0fdc1de2a8e55ff614ba780144ec31fdebe945b9:log:12', 'hash': '0x521cc3d96eeab9da0504050d0fdc1de2a8e55ff614ba780144ec31fdebe945b9', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x084231b97924ea600000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:44:05.000Z'}}, {'blockNum': '0xa5143e', 'uniqueId': '0x7ae3694d1b7f60088547b8d530f552858423d2529c2626314a907ec43d0695af:log:13', 'hash': '0x7ae3694d1b7f60088547b8d530f552858423d2529c2626314a907ec43d0695af', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 178506.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25ccdb655b9a91860000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:44:05.000Z'}}, {'blockNum': '0xa51441', 'uniqueId': '0x6c0a50b622f4ec293bbb273ee330e2c5e3774420ac394bc410da7d05d3729b1f:log:105', 'hash': '0x6c0a50b622f4ec293bbb273ee330e2c5e3774420ac394bc410da7d05d3729b1f', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99990248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60620eece2a000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:45:01.000Z'}}, {'blockNum': '0xa51443', 'uniqueId': '0x9f5fdb3295cba9a0762c8dec830f711a0c9e014a4a10e07cc7a74ec9fff5d0e1:log:20', 'hash': '0x9f5fdb3295cba9a0762c8dec830f711a0c9e014a4a10e07cc7a74ec9fff5d0e1', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1030245.99990248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60620eece2a000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:45:26.000Z'}}, {'blockNum': '0xa5144e', 'uniqueId': '0x393612dafb89329577d9bda1c75a2ba67e008232b452e8934be1e36f3b4fe7cd:log:61', 'hash': '0x393612dafb89329577d9bda1c75a2ba67e008232b452e8934be1e36f3b4fe7cd', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 762502.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa1775ae8191045580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:48:30.000Z'}}, {'blockNum': '0xa51455', 'uniqueId': '0x0cc46eb36dec9a24023b11410e0c5f8729ec4d5ddc6f6d6b2db8626e1004a1b5:log:61', 'hash': '0x0cc46eb36dec9a24023b11410e0c5f8729ec4d5ddc6f6d6b2db8626e1004a1b5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 1030245.99993038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf607b6ee6797800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:49:46.000Z'}}, {'blockNum': '0xa5145b', 'uniqueId': '0x101331424765b34b4f2bab7a87926cf5358ff5939257109a8c9d421f5f1f102b:log:43', 'hash': '0x101331424765b34b4f2bab7a87926cf5358ff5939257109a8c9d421f5f1f102b', 'from': '0x986a2fca9eda0e06fbf7839b89bfc006ee2a23dd', 'to': '0xc8808ca0892e98072f051432d9eb060ba1e7f3a5', 'value': 27538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x05d4d685496c43080000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:50:56.000Z'}}, {'blockNum': '0xa51461', 'uniqueId': '0xfb8c4386d7579dda1a2c5b1d0f37c6edcf0d39826604a47658c96c3f1a11b36d:log:163', 'hash': '0xfb8c4386d7579dda1a2c5b1d0f37c6edcf0d39826604a47658c96c3f1a11b36d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc3cbb7c63a46fd707f415ee7aa68ff954155dc0e', 'value': 34048.654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0735c7fecf7fe71b0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:51:49.000Z'}}, {'blockNum': '0xa51478', 'uniqueId': '0xc2f84abe11a8daacda9b25908dc80d57296161e809d830fbd7641136f131143d:log:32', 'hash': '0xc2f84abe11a8daacda9b25908dc80d57296161e809d830fbd7641136f131143d', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 131419.2554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1bd4408a513e482e8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:57:30.000Z'}}, {'blockNum': '0xa5147d', 'uniqueId': '0x97e60c822a5b6b895adf4a3959c4f46b557b0d66cd2396c9d2b7eec6878ff476:log:146', 'hash': '0x97e60c822a5b6b895adf4a3959c4f46b557b0d66cd2396c9d2b7eec6878ff476', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x9d0aa2c882ee3e27de5d2bfd25f8db8ef0c0cb09', 'value': 1094003.2481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xe7aa08f02d5306b24000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:58:23.000Z'}}, {'blockNum': '0xa5147e', 'uniqueId': '0x8eab8de0402b5cdaeb17942de737b74257ac51cb2779331862aff54f514c1b25:log:61', 'hash': '0x8eab8de0402b5cdaeb17942de737b74257ac51cb2779331862aff54f514c1b25', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 179115.5613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25eddfc0b76f24394000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T03:58:55.000Z'}}, {'blockNum': '0xa51482', 'uniqueId': '0x652fb17693d8b6fe36484461f2e29c46f99c8142db46c279e82dc630d18f353d:log:38', 'hash': '0x652fb17693d8b6fe36484461f2e29c46f99c8142db46c279e82dc630d18f353d', 'from': '0x9d0aa2c882ee3e27de5d2bfd25f8db8ef0c0cb09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1094003.2481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xe7aa08f02d5306b24000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:00:02.000Z'}}, {'blockNum': '0xa51482', 'uniqueId': '0x1592c0f68832a41c3e07435288f9e59ed4e9868bf9bb585c05536740a9402ba2:log:41', 'hash': '0x1592c0f68832a41c3e07435288f9e59ed4e9868bf9bb585c05536740a9402ba2', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 762502.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa1775ae8191045580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:00:02.000Z'}}, {'blockNum': '0xa51484', 'uniqueId': '0x2ba8a4f29a0ea97a0386791914b70fe5b85a75791f51a80cae37717095352d21:log:106', 'hash': '0x2ba8a4f29a0ea97a0386791914b70fe5b85a75791f51a80cae37717095352d21', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:00:29.000Z'}}, {'blockNum': '0xa51486', 'uniqueId': '0x0adf9290b63761519d06ad9960a640507750839e1f632ccd89ceed4a880f3ab7:log:161', 'hash': '0x0adf9290b63761519d06ad9960a640507750839e1f632ccd89ceed4a880f3ab7', 'from': '0xc3cbb7c63a46fd707f415ee7aa68ff954155dc0e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 34048.654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0735c7fecf7fe71b0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:01:18.000Z'}}, {'blockNum': '0xa51487', 'uniqueId': '0x75039fa7b1f641b1ce167812699abd78b1368c4a377bf78c024d86e49851b550:log:16', 'hash': '0x75039fa7b1f641b1ce167812699abd78b1368c4a377bf78c024d86e49851b550', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x084231b97924ea600000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:01:26.000Z'}}, {'blockNum': '0xa51488', 'uniqueId': '0x118d0d56d6d3dbcdcd630e4a5941be5d40e08f491b7c9815a61cb18f38a8903c:log:166', 'hash': '0x118d0d56d6d3dbcdcd630e4a5941be5d40e08f491b7c9815a61cb18f38a8903c', 'from': '0x430571c14cc95ffd5bbdf3c462564f0c1f6227e2', 'to': '0x33b0cde1fe3e40cf4b4be6a03addc6d3b729df35', 'value': 1224417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x010347c75074b416e40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:01:56.000Z'}}, {'blockNum': '0xa51499', 'uniqueId': '0xa7ab0cb1d30344f73f9f5199312b0a037f3246f942c27a68a7a4fcfc54e376f9:log:18', 'hash': '0xa7ab0cb1d30344f73f9f5199312b0a037f3246f942c27a68a7a4fcfc54e376f9', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99995487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa5ded48e19c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:05:00.000Z'}}, {'blockNum': '0xa5149a', 'uniqueId': '0xaf8bedf8d1b0c7a5cf1cee266e9807dfa6ab8d9fdec826de65b29e5914ac08bf:log:34', 'hash': '0xaf8bedf8d1b0c7a5cf1cee266e9807dfa6ab8d9fdec826de65b29e5914ac08bf', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99993038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf607b6ee6797800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:05:14.000Z'}}, {'blockNum': '0xa5149d', 'uniqueId': '0xc2e17828cfe302be8d98bf9fa93149ea4da07ffb1416f36572928681913a6a3b:log:44', 'hash': '0xc2e17828cfe302be8d98bf9fa93149ea4da07ffb1416f36572928681913a6a3b', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1030245.99993038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf607b6ee6797800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:06:08.000Z'}}, {'blockNum': '0xa514b2', 'uniqueId': '0x95ec19aad7aaae85fc09545ee257b64e4663ab48d850fd616c1937e3da5caa08:log:49', 'hash': '0x95ec19aad7aaae85fc09545ee257b64e4663ab48d850fd616c1937e3da5caa08', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 178243.9776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25bea0196221eb980000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:10:34.000Z'}}, {'blockNum': '0xa514d9', 'uniqueId': '0xab480a042df42b60f9db04600e268825656d599231a8497c12fedbb089b93277:log:24', 'hash': '0xab480a042df42b60f9db04600e268825656d599231a8497c12fedbb089b93277', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:18:28.000Z'}}, {'blockNum': '0xa514dc', 'uniqueId': '0x8e17f02420a2d3b2adb6e3675bb1872e911cde3fab20c7910947f85fea8d5131:log:139', 'hash': '0x8e17f02420a2d3b2adb6e3675bb1872e911cde3fab20c7910947f85fea8d5131', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'value': 108619.7868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x17004a5a5a4e17930000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:19:05.000Z'}}, {'blockNum': '0xa514e9', 'uniqueId': '0xa7b34f535d185ccb8d7456ac1db4bb68f507e71ce2b49eb5d7a0580df8809039:log:105', 'hash': '0xa7b34f535d185ccb8d7456ac1db4bb68f507e71ce2b49eb5d7a0580df8809039', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'value': 67430.88159223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e476f776802c7bcfc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:21:35.000Z'}}, {'blockNum': '0xa514ee', 'uniqueId': '0x2d4c88b8700f33e0f64a333f40ab9ae2188a8f579f4e74201dc8b96a86d5466f:log:2', 'hash': '0x2d4c88b8700f33e0f64a333f40ab9ae2188a8f579f4e74201dc8b96a86d5466f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 1030245.99995952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6095ef95d2c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:23:16.000Z'}}, {'blockNum': '0xa5151e', 'uniqueId': '0x4a4dc34ca7012eccda361a605a542bd90ac0fbc86ca11597e3ad8eaa6cf5f096:log:45', 'hash': '0x4a4dc34ca7012eccda361a605a542bd90ac0fbc86ca11597e3ad8eaa6cf5f096', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x79ca77d6dbbf5456f6f773bc1ab7c154d372d8b1', 'value': 361674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x4c9663071105a4e80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:32:11.000Z'}}, {'blockNum': '0xa51542', 'uniqueId': '0x28fdab210e28f112a8ee52fb16b4f465758fd478d63c768ba6fb89984f8e0085:log:26', 'hash': '0x28fdab210e28f112a8ee52fb16b4f465758fd478d63c768ba6fb89984f8e0085', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99993286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa49e8aea65800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:41:16.000Z'}}, {'blockNum': '0xa51542', 'uniqueId': '0x9726da5efdede9284d5d5ce8b70b1a41c0f2bee5b70ef76158368454dd419c89:log:68', 'hash': '0x9726da5efdede9284d5d5ce8b70b1a41c0f2bee5b70ef76158368454dd419c89', 'from': '0x79ca77d6dbbf5456f6f773bc1ab7c154d372d8b1', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 361674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x4c9663071105a4e80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:41:16.000Z'}}, {'blockNum': '0xa5155a', 'uniqueId': '0x3b206be3fd18564ef45978737326c6ab869c0871d7027aabfb1ba992fa5ce0f1:log:106', 'hash': '0x3b206be3fd18564ef45978737326c6ab869c0871d7027aabfb1ba992fa5ce0f1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x33b0cde1fe3e40cf4b4be6a03addc6d3b729df35', 'value': 355008.5868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x4b2d0dd66a7ea5330000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:45:31.000Z'}}, {'blockNum': '0xa51565', 'uniqueId': '0x8e096fc08e1c637108febb0fabf69031be002fa8ffae7a7ea73ddaa0c4ea2c60:log:126', 'hash': '0x8e096fc08e1c637108febb0fabf69031be002fa8ffae7a7ea73ddaa0c4ea2c60', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc065be5828b3c46bbd800b8b402698055d4aeafb', 'value': 218880.68132498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2e598ba691849d800800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:47:58.000Z'}}, {'blockNum': '0xa51583', 'uniqueId': '0x2d211150665191c281a24d3ae2cce0a5a719ac037ba7175ddc8558c916a402a2:log:86', 'hash': '0x2d211150665191c281a24d3ae2cce0a5a719ac037ba7175ddc8558c916a402a2', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 175703.2762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2534e4c8c40ba1f28000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:55:10.000Z'}}, {'blockNum': '0xa51584', 'uniqueId': '0xaee146cfbbb2c3c7fdcf0d1af84b334ea83c0a2d331a89895d8aadd4b35a3e06:log:47', 'hash': '0xaee146cfbbb2c3c7fdcf0d1af84b334ea83c0a2d331a89895d8aadd4b35a3e06', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99995952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6095ef95d2c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:55:30.000Z'}}, {'blockNum': '0xa51585', 'uniqueId': '0x18c8d8bc3154b56f3282cc4ee9f3f44b183c9ec1b8d622d1c29b93b47daa2cdd:log:34', 'hash': '0x18c8d8bc3154b56f3282cc4ee9f3f44b183c9ec1b8d622d1c29b93b47daa2cdd', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 178243.9776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25bea0196221eb980000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:55:56.000Z'}}, {'blockNum': '0xa51587', 'uniqueId': '0x54ed8ccb4ca60710bf36f41c0a2175e9bed5f44f366691145eaf5df4f896e27a:log:30', 'hash': '0x54ed8ccb4ca60710bf36f41c0a2175e9bed5f44f366691145eaf5df4f896e27a', 'from': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 108619.7868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x17004a5a5a4e17930000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:56:19.000Z'}}, {'blockNum': '0xa51588', 'uniqueId': '0xa726ec42351ec8ff96e984464df8721e42ea119dd73e825be1e9f2e51c29e3a8:log:6', 'hash': '0xa726ec42351ec8ff96e984464df8721e42ea119dd73e825be1e9f2e51c29e3a8', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1208489.97755952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xffe85f79f811816ac000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:56:27.000Z'}}, {'blockNum': '0xa51588', 'uniqueId': '0x4b95ab01dcb5113a9eea27ae9f846b50808cf5df921cbb1f150ee128df17098c:log:9', 'hash': '0x4b95ab01dcb5113a9eea27ae9f846b50808cf5df921cbb1f150ee128df17098c', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:56:27.000Z'}}, {'blockNum': '0xa51588', 'uniqueId': '0x870ab46512788da6c18a0b4df27927cab8bb0b95906648580a7ede4465e5fc56:log:11', 'hash': '0x870ab46512788da6c18a0b4df27927cab8bb0b95906648580a7ede4465e5fc56', 'from': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 67430.88159223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e476f776802c7bcfc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:56:27.000Z'}}, {'blockNum': '0xa5158f', 'uniqueId': '0x6b57739c8d68188103d975ed6436e2a1ecc40265f3c89821cfb67a3ce09c1d21:log:27', 'hash': '0x6b57739c8d68188103d975ed6436e2a1ecc40265f3c89821cfb67a3ce09c1d21', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x8a38e3b618ac4855cb2130d4e86626a48b91f521', 'value': 256154.35909223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x363e27d76e6c5ce8bc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T04:57:25.000Z'}}, {'blockNum': '0xa515a0', 'uniqueId': '0xbd13f7fc7d4cb93d14ac54762ec950906b7c7d5f6ff5bbe52d07006be34e5db0:log:43', 'hash': '0xbd13f7fc7d4cb93d14ac54762ec950906b7c7d5f6ff5bbe52d07006be34e5db0', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 340400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x48151ef8438138c00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:00:20.000Z'}}, {'blockNum': '0xa515a0', 'uniqueId': '0x69548780b119707b4300809187298cba58a00475f245ee1fefbeac21b94e2de4:log:46', 'hash': '0x69548780b119707b4300809187298cba58a00475f245ee1fefbeac21b94e2de4', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1609788.1026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0154e2c9b413cb85648000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:00:20.000Z'}}, {'blockNum': '0xa515a0', 'uniqueId': '0xd161656b31ad2f6ba5801625e2d21bcdd2c95b1e8b689b6f729f8c47c2a914a6:log:67', 'hash': '0xd161656b31ad2f6ba5801625e2d21bcdd2c95b1e8b689b6f729f8c47c2a914a6', 'from': '0x268737253715badc5016befa6113ecc68370b780', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 223907.90392933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2f6a126114ceb560f400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:00:20.000Z'}}, {'blockNum': '0xa515a0', 'uniqueId': '0x3ca0bbda15cf21b50e040345bb76d98325f078a460cb516af96dfbb37ee8d518:log:71', 'hash': '0x3ca0bbda15cf21b50e040345bb76d98325f078a460cb516af96dfbb37ee8d518', 'from': '0xc065be5828b3c46bbd800b8b402698055d4aeafb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 345288.62812498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x491e2250461cb9930800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:00:20.000Z'}}, {'blockNum': '0xa515a0', 'uniqueId': '0x83611d109b080f712df37dd93cd1685b042ba1af0b7ee9ad2fc434612c438389:log:88', 'hash': '0x83611d109b080f712df37dd93cd1685b042ba1af0b7ee9ad2fc434612c438389', 'from': '0x33b0cde1fe3e40cf4b4be6a03addc6d3b729df35', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1579425.5868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x014e74d526df32bc170000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:00:20.000Z'}}, {'blockNum': '0xa515a3', 'uniqueId': '0x29174f9fd99d514791862ce3209d3c2a903f3d56838b240e2aa872c398b27b59:log:311', 'hash': '0x29174f9fd99d514791862ce3209d3c2a903f3d56838b240e2aa872c398b27b59', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 1030245.99995518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6091fd19aa3800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:00:43.000Z'}}, {'blockNum': '0xa515a6', 'uniqueId': '0x4c424810a9b743b1a05c5620926a5aa4500118596afe9830b69f8e3c7829456d:log:156', 'hash': '0x4c424810a9b743b1a05c5620926a5aa4500118596afe9830b69f8e3c7829456d', 'from': '0x9ce7456ec06b1457c91bd4619a08dbe8adc926fd', 'to': '0x605e0ebb227fcacaa43b1480db3c0df8b044c10a', 'value': 5850, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x013d210f055f23280000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:01:19.000Z'}}, {'blockNum': '0xa515da', 'uniqueId': '0xc59c75e08bae2bca4961862d239450d58939bc3fe4446b56490924b1555b88c5:log:119', 'hash': '0xc59c75e08bae2bca4961862d239450d58939bc3fe4446b56490924b1555b88c5', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 129907.0227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1b82461884beda52c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:13:33.000Z'}}, {'blockNum': '0xa515ee', 'uniqueId': '0x05ea3199f685712bb4b9b6e93d02d2dc64030236cc9d6659ea5f402602ae1e95:log:84', 'hash': '0x05ea3199f685712bb4b9b6e93d02d2dc64030236cc9d6659ea5f402602ae1e95', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 98600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14e11de0bacf8ba00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:19:06.000Z'}}, {'blockNum': '0xa515f3', 'uniqueId': '0x9bfe5275c8d2f6dd269aabaf2d440bb240971c8bc6ba4023d6e186d1bdd4ab48:log:32', 'hash': '0x9bfe5275c8d2f6dd269aabaf2d440bb240971c8bc6ba4023d6e186d1bdd4ab48', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99996727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa69346279fc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:19:46.000Z'}}, {'blockNum': '0xa5160d', 'uniqueId': '0x4fa45b02c5b093c9430a359f6b7b285501a6c2793c3bb37effc1e7206ddab86f:log:140', 'hash': '0x4fa45b02c5b093c9430a359f6b7b285501a6c2793c3bb37effc1e7206ddab86f', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x5ca51af7787d547b23328ca30eb4dae4e41bc4a6', 'value': 16693.98991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0388fba64e98814f6000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:25:13.000Z'}}, {'blockNum': '0xa5161c', 'uniqueId': '0xedcd0683517c3f10814f3c738905063e5a0b3af47e9becfb416c90671d3614ad:log:66', 'hash': '0xedcd0683517c3f10814f3c738905063e5a0b3af47e9becfb416c90671d3614ad', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6216827.34251292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x052476e2b27c92fca0f000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:30:06.000Z'}}, {'blockNum': '0xa5161e', 'uniqueId': '0xf0d1d4562110b578979af9acd1969cb8a38c7bfdece8d202ef914649c954e4b3:log:275', 'hash': '0xf0d1d4562110b578979af9acd1969cb8a38c7bfdece8d202ef914649c954e4b3', 'from': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 835138.7625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb0d8f6893af329044000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:30:35.000Z'}}, {'blockNum': '0xa51642', 'uniqueId': '0x61b28fcabba7e409759a8860f208bb10952fe91638f2fcd34a5fb250f9aae939:log:61', 'hash': '0x61b28fcabba7e409759a8860f208bb10952fe91638f2fcd34a5fb250f9aae939', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:39:01.000Z'}}, {'blockNum': '0xa51646', 'uniqueId': '0xf82eea31ad83235981d850cdb2fa16a873c37259916551aed6bcad01da75e9c1:log:28', 'hash': '0xf82eea31ad83235981d850cdb2fa16a873c37259916551aed6bcad01da75e9c1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 98500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14dbb2195ca228900000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:40:30.000Z'}}, {'blockNum': '0xa5165a', 'uniqueId': '0x3f726994950c44a9313132f48b69cba7f5cc7c06e9ab4332f01b6fa61fde405a:log:85', 'hash': '0x3f726994950c44a9313132f48b69cba7f5cc7c06e9ab4332f01b6fa61fde405a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbef19794002226eded90a1b82df80b10dcce5aa7', 'value': 4808.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0104ae59f3ed2d200000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:43:37.000Z'}}, {'blockNum': '0xa5166a', 'uniqueId': '0x6647fb2c976775d2ebd0442669bcd0732e0f7bba6e8938db6a2e2eb77db7c8eb:log:29', 'hash': '0x6647fb2c976775d2ebd0442669bcd0732e0f7bba6e8938db6a2e2eb77db7c8eb', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 80257.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10fec733942e2fc0c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:46:25.000Z'}}, {'blockNum': '0xa516a0', 'uniqueId': '0x1c00a16a963bba6a43b5d6b467d38742f7c6366d49e41c752ba2d9c84f0d2864:log:50', 'hash': '0x1c00a16a963bba6a43b5d6b467d38742f7c6366d49e41c752ba2d9c84f0d2864', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0x3b66a6271ff878afe7bf4cfcd7215bcc1225566c', 'value': 84503.71821560882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x11e4f4ab9d356e285821', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:58:25.000Z'}}, {'blockNum': '0xa516a6', 'uniqueId': '0x7cea818440b3ffec31ec2424a479a9d69ae5b091c6d6f8cd72ca4f2206cddaf1:log:117', 'hash': '0x7cea818440b3ffec31ec2424a479a9d69ae5b091c6d6f8cd72ca4f2206cddaf1', 'from': '0x3b66a6271ff878afe7bf4cfcd7215bcc1225566c', 'to': '0x91c0c690838fde6e5601e7c86910a6d75723ca01', 'value': 84503.7182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x11e4f4ab8f0337ab8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T05:59:05.000Z'}}, {'blockNum': '0xa516aa', 'uniqueId': '0x7c4e56ff5f2be76536d6c978fac2bd7bcaf362458d3a31fc9d533c3d390e2e6f:log:121', 'hash': '0x7c4e56ff5f2be76536d6c978fac2bd7bcaf362458d3a31fc9d533c3d390e2e6f', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 247100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3453515e08172f700000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:00:17.000Z'}}, {'blockNum': '0xa516b6', 'uniqueId': '0x77aae292b83c602c99e83351b349b51e48a0d92fe547e9fc3a764b04655b87c2:log:24', 'hash': '0x77aae292b83c602c99e83351b349b51e48a0d92fe547e9fc3a764b04655b87c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x449c9c58e697e603390700669a6ab1a2c88455fe', 'value': 68140.52440629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e6de7bd238cb69e3400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:03:42.000Z'}}, {'blockNum': '0xa516c6', 'uniqueId': '0xf16f36c41fa9b6f90ddb8ff8f964a48b8580afe8cbaf6f4f5d1f2f23df97f975:log:118', 'hash': '0xf16f36c41fa9b6f90ddb8ff8f964a48b8580afe8cbaf6f4f5d1f2f23df97f975', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2e82ef5965cccedb31f5e08c26d59c75d5b1f7e5', 'value': 756174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa02046515a7136780000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:07:54.000Z'}}, {'blockNum': '0xa516cb', 'uniqueId': '0x4d56c60d46a5948d49adb66975cb332cef4cd5a4d3d02ddbe1ad7d19fc98bc66:log:153', 'hash': '0x4d56c60d46a5948d49adb66975cb332cef4cd5a4d3d02ddbe1ad7d19fc98bc66', 'from': '0x91c0c690838fde6e5601e7c86910a6d75723ca01', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 84503.7182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x11e4f4ab8f0337ab8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:08:37.000Z'}}, {'blockNum': '0xa516d6', 'uniqueId': '0xc9ecddbeb5d41a6a2b016855af5d030e810b8df4c9d693d0532d47a3d028500c:log:15', 'hash': '0xc9ecddbeb5d41a6a2b016855af5d030e810b8df4c9d693d0532d47a3d028500c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 99765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x152045802a604db40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:10:22.000Z'}}, {'blockNum': '0xa516db', 'uniqueId': '0xc9af390c513c5c1a75605800d97f891fb060e50f7056bcfa3db3536338f426e5:log:136', 'hash': '0xc9af390c513c5c1a75605800d97f891fb060e50f7056bcfa3db3536338f426e5', 'from': '0x2e82ef5965cccedb31f5e08c26d59c75d5b1f7e5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 756174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa02046515a7136780000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:11:27.000Z'}}, {'blockNum': '0xa516de', 'uniqueId': '0x8275eb0dbbf275fbc140707c89bb39f16545f2104f6f35c68be7a113e680a6eb:log:54', 'hash': '0x8275eb0dbbf275fbc140707c89bb39f16545f2104f6f35c68be7a113e680a6eb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2e63880dce9ff8142cfa4d955379a210248a9f07', 'value': 108542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x16fc12d81fd651380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:12:33.000Z'}}, {'blockNum': '0xa516e3', 'uniqueId': '0x7bc1e125b00eb81e19c1b2f1a49b385df7767cb97fef4b5caaf108ee97c4b956:log:90', 'hash': '0x7bc1e125b00eb81e19c1b2f1a49b385df7767cb97fef4b5caaf108ee97c4b956', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 178506.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25ccdb655b9a91860000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:15:03.000Z'}}, {'blockNum': '0xa516e3', 'uniqueId': '0x7966480f8bc8326268998e948f31a06de69ecc43f396a56d460ff2b03108992a:log:92', 'hash': '0x7966480f8bc8326268998e948f31a06de69ecc43f396a56d460ff2b03108992a', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 505474.77126975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x6b09d79e2db86b891c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:15:03.000Z'}}, {'blockNum': '0xa516e8', 'uniqueId': '0xbf963f540172d69a1ca881369fc9e0daa142ed98c69461ab62d687e488d68bef:log:49', 'hash': '0xbf963f540172d69a1ca881369fc9e0daa142ed98c69461ab62d687e488d68bef', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 432889.95927532, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x5bab02ffbb9a2aaa3000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:15:44.000Z'}}, {'blockNum': '0xa516e8', 'uniqueId': '0x454205fd54c7fb6aec5edd145f89ba049de17e7cb017414eee6f6fb564be1817:log:50', 'hash': '0x454205fd54c7fb6aec5edd145f89ba049de17e7cb017414eee6f6fb564be1817', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99995518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6091fd19aa3800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:15:44.000Z'}}, {'blockNum': '0xa516e8', 'uniqueId': '0xf891c7a4d0c84904b5bd3da23922404032bbde0854234da9fd02539e11dec641:log:53', 'hash': '0xf891c7a4d0c84904b5bd3da23922404032bbde0854234da9fd02539e11dec641', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:15:44.000Z'}}, {'blockNum': '0xa516e8', 'uniqueId': '0xec6b51f6ea0da7109ffc8c140dbf18af0e01e7df57c40a3802948887cdf00ca0:log:55', 'hash': '0xec6b51f6ea0da7109ffc8c140dbf18af0e01e7df57c40a3802948887cdf00ca0', 'from': '0x449c9c58e697e603390700669a6ab1a2c88455fe', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 68140.52440629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e6de7bd238cb69e3400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:15:44.000Z'}}, {'blockNum': '0xa516e9', 'uniqueId': '0x9a487d8a7f6d7c9c0c84beebfe488f6fd1a186afdc6daae4c96f7e2f3be847ba:log:20', 'hash': '0x9a487d8a7f6d7c9c0c84beebfe488f6fd1a186afdc6daae4c96f7e2f3be847ba', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 117710.7359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x18ed1c9d92d7a8adc000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:16:12.000Z'}}, {'blockNum': '0xa516ee', 'uniqueId': '0xf13aedc39f882b5f18db66060559fff35ebcf99d0ac7178ded4b06c248705e47:log:33', 'hash': '0xf13aedc39f882b5f18db66060559fff35ebcf99d0ac7178ded4b06c248705e47', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1178490.21506147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xf98e152361a54de12c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:16:51.000Z'}}, {'blockNum': '0xa516ee', 'uniqueId': '0xf88e1931c9d165eb293c582710b4aa424a34c6c819664db6f425247b46edd560:log:47', 'hash': '0xf88e1931c9d165eb293c582710b4aa424a34c6c819664db6f425247b46edd560', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x551a20a221f8d33ce3f0a2c136ac59e78f6ea68c', 'value': 275.87188612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef47dd2cb539d9000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:16:51.000Z'}}, {'blockNum': '0xa516f2', 'uniqueId': '0x8c46e0fd3ec6bf8e32df7f2096dc9145e2fd7c111867e32e582a110aa7ae7015:log:54', 'hash': '0x8c46e0fd3ec6bf8e32df7f2096dc9145e2fd7c111867e32e582a110aa7ae7015', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x52442ca6cec911de4ecf523a24ed86bfd5cda327', 'value': 23969.7312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x051366d7e9523da80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:17:48.000Z'}}, {'blockNum': '0xa516f9', 'uniqueId': '0xf8b3f3fdea570597f667d6a95ae715ed2bd44c503fa4647a298a2537af7557f2:log:36', 'hash': '0xf8b3f3fdea570597f667d6a95ae715ed2bd44c503fa4647a298a2537af7557f2', 'from': '0x2e63880dce9ff8142cfa4d955379a210248a9f07', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 108542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x16fc12d81fd651380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:19:01.000Z'}}, {'blockNum': '0xa516fa', 'uniqueId': '0x18be652dd538e6da3eeea8b51c32b661b3f4d979ee512049dbd0c86e7466f274:log:64', 'hash': '0x18be652dd538e6da3eeea8b51c32b661b3f4d979ee512049dbd0c86e7466f274', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 99765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x152045802a604db40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:19:11.000Z'}}, {'blockNum': '0xa51702', 'uniqueId': '0xa1eb3a882a57584fd074beb87652fb596cd9e8a2c729316c8164348adb62f713:log:98', 'hash': '0xa1eb3a882a57584fd074beb87652fb596cd9e8a2c729316c8164348adb62f713', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0x010f7ec243bb5e7ed2b54cce49ca147e540e56fc', 'value': 13656.088163464812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x02e44c4b379d80a3fc1b', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:21:01.000Z'}}, {'blockNum': '0xa51703', 'uniqueId': '0xd0e2268bb9034e8482d21c5fe1cd5b21e04573e9de3e9e390b22fa82515778c5:log:177', 'hash': '0xd0e2268bb9034e8482d21c5fe1cd5b21e04573e9de3e9e390b22fa82515778c5', 'from': '0x551a20a221f8d33ce3f0a2c136ac59e78f6ea68c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 275.87188612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef47dd2cb539d9000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:21:16.000Z'}}, {'blockNum': '0xa51703', 'uniqueId': '0xa599b40e563eadabbb4a5ee520a3f1eb47692e4bd60a08eed9ef04e1e68dd8c0:log:181', 'hash': '0xa599b40e563eadabbb4a5ee520a3f1eb47692e4bd60a08eed9ef04e1e68dd8c0', 'from': '0x52442ca6cec911de4ecf523a24ed86bfd5cda327', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 23969.7312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x051366d7e9523da80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:21:16.000Z'}}, {'blockNum': '0xa51713', 'uniqueId': '0x391a75e59e5f2ae8c9c5062118dbf477555df547368561922a3a0c6aa9056538:log:180', 'hash': '0x391a75e59e5f2ae8c9c5062118dbf477555df547368561922a3a0c6aa9056538', 'from': '0x010f7ec243bb5e7ed2b54cce49ca147e540e56fc', 'to': '0x9e5720313a7d58eb37f1f4f98af9889483ad6bd3', 'value': 13656.088163464812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x02e44c4b379d80a3fc1b', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:24:18.000Z'}}, {'blockNum': '0xa51720', 'uniqueId': '0xb05e4cbb71fdc52c7401b7b6632d50e8faacb93bc08c0d74a8875bdec9d81923:log:39', 'hash': '0xb05e4cbb71fdc52c7401b7b6632d50e8faacb93bc08c0d74a8875bdec9d81923', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 491005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x67f96f33dc0441d40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:27:02.000Z'}}, {'blockNum': '0xa51728', 'uniqueId': '0x5e4f23337531658a584018d8fad611380f9246fa6c3824667ae3a0c975452a89:log:52', 'hash': '0x5e4f23337531658a584018d8fad611380f9246fa6c3824667ae3a0c975452a89', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 938364.73054507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xc6b4da9de95296334c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:30:24.000Z'}}, {'blockNum': '0xa51730', 'uniqueId': '0x7efa9cf89aadf820288763ec0c56edf81e19b1f2832755ed97d105e1740faba4:log:33', 'hash': '0x7efa9cf89aadf820288763ec0c56edf81e19b1f2832755ed97d105e1740faba4', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 178506.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25ccdb655b9a91860000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:31:25.000Z'}}, {'blockNum': '0xa51730', 'uniqueId': '0x8c944ae3b66178ea48f2736135e6de1b68f0d91d4d1b37357042645c61d1ca14:log:58', 'hash': '0x8c944ae3b66178ea48f2736135e6de1b68f0d91d4d1b37357042645c61d1ca14', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 99582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x151659dd8ff3a5380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:31:25.000Z'}}, {'blockNum': '0xa51746', 'uniqueId': '0x073de2f3a4e0ebe08d80d64772b09c2cc322ec8ad666e7ffab066b6c3d75b64b:log:74', 'hash': '0x073de2f3a4e0ebe08d80d64772b09c2cc322ec8ad666e7ffab066b6c3d75b64b', 'from': '0x3423940069110f235a4c3e1112abe0246170903b', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 491005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x67f96f33dc0441d40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:34:51.000Z'}}, {'blockNum': '0xa51753', 'uniqueId': '0xcbdf0f6def20a945e5b4d0663963c132ba9c53c934c61a6038a797d19b905667:log:52', 'hash': '0xcbdf0f6def20a945e5b4d0663963c132ba9c53c934c61a6038a797d19b905667', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 99582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x151659dd8ff3a5380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:36:13.000Z'}}, {'blockNum': '0xa5175e', 'uniqueId': '0x74ed7a18cf2f342528c567acf6e2639537b0a02854a2f148975fafad67ec60eb:log:106', 'hash': '0x74ed7a18cf2f342528c567acf6e2639537b0a02854a2f148975fafad67ec60eb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x381856eca3328afd5627d19d348c222edc36d52b', 'value': 23301.7312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x04ef307b2c8974b80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:38:42.000Z'}}, {'blockNum': '0xa5176c', 'uniqueId': '0x9d8ea6ba0b767825ba598e49292c85e96ddd5b7529959a18e032c849bf6a8c86:log:40', 'hash': '0x9d8ea6ba0b767825ba598e49292c85e96ddd5b7529959a18e032c849bf6a8c86', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 99437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x150e7d961431d5940000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:41:14.000Z'}}, {'blockNum': '0xa5176d', 'uniqueId': '0x8aca3f56a0c116768484ba6400701e88e079c13fe154694abb5a1f36cdd4357a:log:26', 'hash': '0x8aca3f56a0c116768484ba6400701e88e079c13fe154694abb5a1f36cdd4357a', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x961e37b618d58c2928c67b98482e95433f8adfb7', 'value': 14993.46541015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x032ccc21a7bf41407c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:41:41.000Z'}}, {'blockNum': '0xa51777', 'uniqueId': '0xffb8d6b8da4acf87bd421e5f1c657a1a1cea5947944b7f15e99a2286d460eac4:log:4', 'hash': '0xffb8d6b8da4acf87bd421e5f1c657a1a1cea5947944b7f15e99a2286d460eac4', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbef19794002226eded90a1b82df80b10dcce5aa7', 'value': 119734.7141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x195ad4f49c3f0f334000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:43:42.000Z'}}, {'blockNum': '0xa51781', 'uniqueId': '0xdcea3f2005ac5fa18e688054ce5c6a8637f301200f766281129159560078b0e0:log:292', 'hash': '0xdcea3f2005ac5fa18e688054ce5c6a8637f301200f766281129159560078b0e0', 'from': '0x381856eca3328afd5627d19d348c222edc36d52b', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 23301.7312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x04ef307b2c8974b80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:45:54.000Z'}}, {'blockNum': '0xa51794', 'uniqueId': '0x40ac64f60d7a847b4404d098937e0d64e349028bc58a30d5b0aaae6dc7f4654b:log:164', 'hash': '0x40ac64f60d7a847b4404d098937e0d64e349028bc58a30d5b0aaae6dc7f4654b', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 99437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x150e7d961431d5940000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:51:04.000Z'}}, {'blockNum': '0xa51795', 'uniqueId': '0x19f8731353f4e3e7020a4167bc95d5573e29770ba236cf34cc6ea8cb582f6088:log:12', 'hash': '0x19f8731353f4e3e7020a4167bc95d5573e29770ba236cf34cc6ea8cb582f6088', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 815410.42642697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xacab7cdfcdbbbb070400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:51:11.000Z'}}, {'blockNum': '0xa51796', 'uniqueId': '0xff94d974223ec4aee329e64d60ff4bb558371ad7880be09d771a4bdce3b01d03:log:5', 'hash': '0xff94d974223ec4aee329e64d60ff4bb558371ad7880be09d771a4bdce3b01d03', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 181518.89368897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x267028b091cd3800e400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:51:38.000Z'}}, {'blockNum': '0xa51798', 'uniqueId': '0xebd9961e01266c085f5e79e15b5ee37b374fe6a92063731ed29d7e0e9c51fee5:log:13', 'hash': '0xebd9961e01266c085f5e79e15b5ee37b374fe6a92063731ed29d7e0e9c51fee5', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 142447.6568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1e2a1a5ad39184d60000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:52:24.000Z'}}, {'blockNum': '0xa517a4', 'uniqueId': '0x0a033bd0717bb52a700d3c48e128667e066a38d8b83c7e9fa6bd2e51603c5676:log:136', 'hash': '0x0a033bd0717bb52a700d3c48e128667e066a38d8b83c7e9fa6bd2e51603c5676', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 99200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1501a48cefdfde000000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:54:32.000Z'}}, {'blockNum': '0xa517aa', 'uniqueId': '0xe0b930c7a6d4c3de5ae6c1a0f307f1b446651bd4469bf9370e78708556b54cba:log:73', 'hash': '0xe0b930c7a6d4c3de5ae6c1a0f307f1b446651bd4469bf9370e78708556b54cba', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 180432.8048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2635482db7a1047c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:56:08.000Z'}}, {'blockNum': '0xa517aa', 'uniqueId': '0x498f93b661f0808487a3b401505426d52cc85976e7e257b9bb8c84f376738a95:log:85', 'hash': '0x498f93b661f0808487a3b401505426d52cc85976e7e257b9bb8c84f376738a95', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 561001.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x76cbf6c91b1de3040000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:56:08.000Z'}}, {'blockNum': '0xa517b6', 'uniqueId': '0x53b55a62cc57fca3af3bc50eb4de541f3c102ea5c30714b5700e4e7db9989295:log:30', 'hash': '0x53b55a62cc57fca3af3bc50eb4de541f3c102ea5c30714b5700e4e7db9989295', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x084231b97924ea600000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:58:40.000Z'}}, {'blockNum': '0xa517b6', 'uniqueId': '0x78f15c808639354eec6e6cf60ab441df7ab9645b86dece555056ff2c9a5ab916:log:67', 'hash': '0x78f15c808639354eec6e6cf60ab441df7ab9645b86dece555056ff2c9a5ab916', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x11ad1da771774115a29789da557c2e1bc53d2e53', 'value': 74957.0689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0fdf6e4c00fa741a4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:58:40.000Z'}}, {'blockNum': '0xa517ba', 'uniqueId': '0x1c77748e75df1c9b233b393e3eedc8ec3365b5254687a21a51ac06cbd9663343:log:14', 'hash': '0x1c77748e75df1c9b233b393e3eedc8ec3365b5254687a21a51ac06cbd9663343', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x4275fe065175d66bf0e7d79a2587b88512b1597a', 'value': 87924.5674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x129e667d4dfa0ade8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T06:59:54.000Z'}}, {'blockNum': '0xa517ca', 'uniqueId': '0xda5b5fce8c6ca38b013f3f49315fd3961de065ce2bda4c4522c453de6f84ba92:log:90', 'hash': '0xda5b5fce8c6ca38b013f3f49315fd3961de065ce2bda4c4522c453de6f84ba92', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x0627d157e611a31ed86a74ad59ab9b0783e4c22a', 'value': 45760.79264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09b0b291f70275c40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:02:25.000Z'}}, {'blockNum': '0xa517cc', 'uniqueId': '0xa4d3c8e8fd6e96532c0425afc2b7d085c596f4058ae503aaba9e890f95c8d99e:log:72', 'hash': '0xa4d3c8e8fd6e96532c0425afc2b7d085c596f4058ae503aaba9e890f95c8d99e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 102000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15996e5b3cd6b3c00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:02:56.000Z'}}, {'blockNum': '0xa517e7', 'uniqueId': '0x7453795ad1450f600504198c310bc45ab903e5901c8742392ea3ec34fbae41dc:log:114', 'hash': '0x7453795ad1450f600504198c310bc45ab903e5901c8742392ea3ec34fbae41dc', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc19d84eab75f3a42d10e93ff1c9a39e3e3513b08', 'value': 207034.0661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2bd756d69c74ca4f4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:07:13.000Z'}}, {'blockNum': '0xa517f3', 'uniqueId': '0x7a3aa9bc7abf4104967cfa231f9c339b9ad7db5813a720f26522606299d35345:log:35', 'hash': '0x7a3aa9bc7abf4104967cfa231f9c339b9ad7db5813a720f26522606299d35345', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 985757.89913193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xd0be0af43b4d8e308400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:10:06.000Z'}}, {'blockNum': '0xa517f7', 'uniqueId': '0xce224e7b1a8bcdcdf436d1e72bf6456e7f1a706b2d3035bbfdb1a1e96b70e700:log:1', 'hash': '0xce224e7b1a8bcdcdf436d1e72bf6456e7f1a706b2d3035bbfdb1a1e96b70e700', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x868dffefaba2b1391ed4b8a18c7de5731bdccf71', 'value': 242167.17899352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3347e8b95de71e2e6000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:11:40.000Z'}}, {'blockNum': '0xa51801', 'uniqueId': '0x66b90d5d043538f228e606003955ab958cd3dd86fea2f93cabbe09c2597480f0:log:52', 'hash': '0x66b90d5d043538f228e606003955ab958cd3dd86fea2f93cabbe09c2597480f0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 566065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x77de71f49717b6240000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:12:41.000Z'}}, {'blockNum': '0xa51809', 'uniqueId': '0xbba794b1c3247b30bc1a272608a4cd4a6aab3f77d1cfde88b5ab68e510e952bc:log:41', 'hash': '0xbba794b1c3247b30bc1a272608a4cd4a6aab3f77d1cfde88b5ab68e510e952bc', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 99846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1524a999f93844580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:14:36.000Z'}}, {'blockNum': '0xa51811', 'uniqueId': '0x4d303bd641639f0ba5d1964e5268c71acd0c857695f75cdcf514f57ba594a5ee:log:32', 'hash': '0x4d303bd641639f0ba5d1964e5268c71acd0c857695f75cdcf514f57ba594a5ee', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xebf67ad040712b359d77d38a2b8400c72fb97d50', 'value': 153818.12226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x20927f43002169654000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:17:24.000Z'}}, {'blockNum': '0xa5181e', 'uniqueId': '0x86ca141e444354297432037e362b01d06b1efc4ca570d4a46dfc75f1ab28b16b:log:21', 'hash': '0x86ca141e444354297432037e362b01d06b1efc4ca570d4a46dfc75f1ab28b16b', 'from': '0x868dffefaba2b1391ed4b8a18c7de5731bdccf71', 'to': '0xc7807e24338b41a34d849492920f2b9d0e4de2cd', 'value': 242167.17899352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3347e8b95de71e2e6000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:21:29.000Z'}}, {'blockNum': '0xa51820', 'uniqueId': '0xca2ca91aab81a8a7712cde25426b0542b3d4d148eea116f4f35be240b45f6211:log:65', 'hash': '0xca2ca91aab81a8a7712cde25426b0542b3d4d148eea116f4f35be240b45f6211', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 1030245.99995921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6095a768622400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:21:48.000Z'}}, {'blockNum': '0xa51825', 'uniqueId': '0x042bf9fd37cd9a7322c83b7c310e69cacd476b8caa24de2c532e7168c2f375c0:log:83', 'hash': '0x042bf9fd37cd9a7322c83b7c310e69cacd476b8caa24de2c532e7168c2f375c0', 'from': '0x3423940069110f235a4c3e1112abe0246170903b', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 566065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x77de71f49717b6240000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:22:20.000Z'}}, {'blockNum': '0xa5182d', 'uniqueId': '0x4fa65b9d03bd497eadd26635641902447e651f67aedc3d00d22f6d5fe9b0e546:log:169', 'hash': '0x4fa65b9d03bd497eadd26635641902447e651f67aedc3d00d22f6d5fe9b0e546', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 99846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1524a999f93844580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:24:50.000Z'}}, {'blockNum': '0xa51835', 'uniqueId': '0x461935dcb539bf64a4574880b1167d47bf94589113eec0b4cd7e4c19f335ec5d:log:91', 'hash': '0x461935dcb539bf64a4574880b1167d47bf94589113eec0b4cd7e4c19f335ec5d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbef19794002226eded90a1b82df80b10dcce5aa7', 'value': 846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2ddc9bc5b32c780000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:25:58.000Z'}}, {'blockNum': '0xa51835', 'uniqueId': '0x96e1a2bac297713326092743d7e5203a73fc29a218b12f83b424960d7d93018f:log:160', 'hash': '0x96e1a2bac297713326092743d7e5203a73fc29a218b12f83b424960d7d93018f', 'from': '0xebf67ad040712b359d77d38a2b8400c72fb97d50', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 153818.12226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x20927f43002169654000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:25:58.000Z'}}, {'blockNum': '0xa5184c', 'uniqueId': '0xcf44e67ef01b4e0353255dddfd7b71ccf6bbe4e3f3c1d7ae6452144df270c6c8:log:39', 'hash': '0xcf44e67ef01b4e0353255dddfd7b71ccf6bbe4e3f3c1d7ae6452144df270c6c8', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99995921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6095a768622400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:30:05.000Z'}}, {'blockNum': '0xa5184e', 'uniqueId': '0x29cac5593cfcdf627ce3c97a8e583407e22a247fa4c71c11ff8e1ff0b1d22d00:log:179', 'hash': '0x29cac5593cfcdf627ce3c97a8e583407e22a247fa4c71c11ff8e1ff0b1d22d00', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1030245.99995921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6095a768622400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:30:27.000Z'}}, {'blockNum': '0xa5185f', 'uniqueId': '0xd269bbf2f82868544d076c9c2f055be033af7e8a040fe7588daa13aa639f55a9:log:45', 'hash': '0xd269bbf2f82868544d076c9c2f055be033af7e8a040fe7588daa13aa639f55a9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1b884f62a7e47cea5d6ed340bba982de725af67c', 'value': 57523.265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0c2e57aa6a2e1c668000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:33:42.000Z'}}, {'blockNum': '0xa5186d', 'uniqueId': '0x06327ed81e335436732766f1f31c0cbecb15448538800f1787088b0f9adb76f1:log:97', 'hash': '0x06327ed81e335436732766f1f31c0cbecb15448538800f1787088b0f9adb76f1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 101500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x157e537665f3c4700000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:37:08.000Z'}}, {'blockNum': '0xa5186d', 'uniqueId': '0xbaa7b24d885dc78c517a4c2ec1c5ee0fb920abea5a09d726422f5519f6ff4c39:log:224', 'hash': '0xbaa7b24d885dc78c517a4c2ec1c5ee0fb920abea5a09d726422f5519f6ff4c39', 'from': '0x1b884f62a7e47cea5d6ed340bba982de725af67c', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 57523.265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0c2e57aa6a2e1c668000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:37:08.000Z'}}, {'blockNum': '0xa51872', 'uniqueId': '0x2e92eaaeb9595f718251228a043569b070d91228aab8475d5c59756eb8bdfe5f:log:53', 'hash': '0x2e92eaaeb9595f718251228a043569b070d91228aab8475d5c59756eb8bdfe5f', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99991736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa3bcfcea7e000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:37:54.000Z'}}, {'blockNum': '0xa51878', 'uniqueId': '0x7489dbd38b51b12cd1b297d72a87efa512f2d842c5afed79afc0309026e8b103:log:18', 'hash': '0x7489dbd38b51b12cd1b297d72a87efa512f2d842c5afed79afc0309026e8b103', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 548827.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x74380298c7bbad8c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:39:19.000Z'}}, {'blockNum': '0xa5187f', 'uniqueId': '0xb0ed24099e382f9507f9d149162ec489c5828d3ed3d8031d72e0b1e598a76fe0:log:94', 'hash': '0xb0ed24099e382f9507f9d149162ec489c5828d3ed3d8031d72e0b1e598a76fe0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x34e5749be797e6d5856d64cc36b469ea8c3888d6', 'value': 659.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x23c5f3c1b330460000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:40:34.000Z'}}, {'blockNum': '0xa51881', 'uniqueId': '0x9ea8f9c884e560e902d912c0d726a18cda63b649994f8997a42d694d71678dc7:log:84', 'hash': '0x9ea8f9c884e560e902d912c0d726a18cda63b649994f8997a42d694d71678dc7', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x896b6d82d0ba81dd27c16f6956e55371278e9dcc', 'value': 76802.52120908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10437917aa7611e3b000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:41:35.000Z'}}, {'blockNum': '0xa51887', 'uniqueId': '0x1affc10db22cb2fa00124797551c1029466d7d53034fd50c8686d0d3a4de4149:log:14', 'hash': '0x1affc10db22cb2fa00124797551c1029466d7d53034fd50c8686d0d3a4de4149', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbef19794002226eded90a1b82df80b10dcce5aa7', 'value': 63937.843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0d8a13d16b4a100b8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:42:44.000Z'}}, {'blockNum': '0xa5188b', 'uniqueId': '0xfae5408460bbfc3954affbe268f9c68df0e511ddaf415c39d3c381a8d7cc4848:log:21', 'hash': '0xfae5408460bbfc3954affbe268f9c68df0e511ddaf415c39d3c381a8d7cc4848', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 131505.4684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1bd8ecfc6bf79cef0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:44:02.000Z'}}, {'blockNum': '0xa51891', 'uniqueId': '0x25cc854d368a5412740bcea6cda5a4843b6f13ada0f91d87b92e1443bfd101c4:log:5', 'hash': '0x25cc854d368a5412740bcea6cda5a4843b6f13ada0f91d87b92e1443bfd101c4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x34e5749be797e6d5856d64cc36b469ea8c3888d6', 'value': 7905.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x01ac91a087ce65aa0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:44:51.000Z'}}, {'blockNum': '0xa51894', 'uniqueId': '0x00d62f8cd7211553d3946df4e2cde297bd1a825298a74332baaaf90cf490674a:log:39', 'hash': '0x00d62f8cd7211553d3946df4e2cde297bd1a825298a74332baaaf90cf490674a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 101400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1578e7af07c661600000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:45:01.000Z'}}, {'blockNum': '0xa518ab', 'uniqueId': '0xf7a20175d275add86bc5aaa3a62ce95087bf8f2525743d7896da5a4c8618537b:log:67', 'hash': '0xf7a20175d275add86bc5aaa3a62ce95087bf8f2525743d7896da5a4c8618537b', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 180387.6419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2632d56add5cbdfec000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:49:24.000Z'}}, {'blockNum': '0xa518de', 'uniqueId': '0x647da2d0a6e5969dbc71a110b905e27ff9583055080e353545909a6ec42472eb:log:26', 'hash': '0x647da2d0a6e5969dbc71a110b905e27ff9583055080e353545909a6ec42472eb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x57574c66772a6107d6388274b3c98e1b6e6fa884', 'value': 66236.0435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e06a9c1c5a6b52ac000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T07:59:19.000Z'}}, {'blockNum': '0xa518e0', 'uniqueId': '0xe11d702c65cb32b794449bd5a5c76d5a6f597aa1d9108d059552a6b597b1aa0f:log:70', 'hash': '0xe11d702c65cb32b794449bd5a5c76d5a6f597aa1d9108d059552a6b597b1aa0f', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 404100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x55924e0d9a70b7900000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:00:05.000Z'}}, {'blockNum': '0xa518fc', 'uniqueId': '0x123ba7961156a619e3a29197ec91dcd3081fcc8b8f5d00a7edeb613e0b26c37a:log:5', 'hash': '0x123ba7961156a619e3a29197ec91dcd3081fcc8b8f5d00a7edeb613e0b26c37a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 101000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x156338918f10d5200000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:03:56.000Z'}}, {'blockNum': '0xa518ff', 'uniqueId': '0x288c641d7542f105296a6d748334ec3821d9ed34f67932d87256b15db1f3431a:log:135', 'hash': '0x288c641d7542f105296a6d748334ec3821d9ed34f67932d87256b15db1f3431a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x11ad1da771774115a29789da557c2e1bc53d2e53', 'value': 153626.83906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x208820ac8f313d654000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:04:13.000Z'}}, {'blockNum': '0xa51913', 'uniqueId': '0xb864b8933ab703004e4195954b3970c0ac8eb75a9cdc4e6fe8cc1eabe69e2c19:log:43', 'hash': '0xb864b8933ab703004e4195954b3970c0ac8eb75a9cdc4e6fe8cc1eabe69e2c19', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 705000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x954a20678dea16a00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:09:13.000Z'}}, {'blockNum': '0xa51919', 'uniqueId': '0x8d8848776c6f2839d149e0b390398e9847b5aa50f9ce56b3dff158cde8c7b53b:log:108', 'hash': '0x8d8848776c6f2839d149e0b390398e9847b5aa50f9ce56b3dff158cde8c7b53b', 'from': '0x57574c66772a6107d6388274b3c98e1b6e6fa884', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 66236.0435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e06a9c1c5a6b52ac000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:10:32.000Z'}}, {'blockNum': '0xa51920', 'uniqueId': '0x300325f83485fdc9701afd246721efe4b29c6f72e3753a69df7dc7a975ca4b4c:log:200', 'hash': '0x300325f83485fdc9701afd246721efe4b29c6f72e3753a69df7dc7a975ca4b4c', 'from': '0x167a9333bf582556f35bd4d16a7e80e191aa6476', 'to': '0x94525e2f9934dd797c6e3ac8544ed9c60241a1ae', 'value': 13677.7536107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x02e578f659165202f800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:11:49.000Z'}}, {'blockNum': '0xa5192a', 'uniqueId': '0x942d3d896c4271456c4053ecca2c1699e837923fd3da226d5fdca84019ca22d7:log:92', 'hash': '0x942d3d896c4271456c4053ecca2c1699e837923fd3da226d5fdca84019ca22d7', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 101000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x156338918f10d5200000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:14:33.000Z'}}, {'blockNum': '0xa51930', 'uniqueId': '0x2732dfaab6719d4af74e1489d72c3198f087e30fb519bf8e346d46d5daa38bb7:log:8', 'hash': '0x2732dfaab6719d4af74e1489d72c3198f087e30fb519bf8e346d46d5daa38bb7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 178352.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25c482377387df5e0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:15:38.000Z'}}, {'blockNum': '0xa51957', 'uniqueId': '0x31deea48101edc2e7c06aad80d0072158db04ec18aac03865d2f71a5e93b1928:log:0', 'hash': '0x31deea48101edc2e7c06aad80d0072158db04ec18aac03865d2f71a5e93b1928', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 178352.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25c482377387df5e0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:24:23.000Z'}}, {'blockNum': '0xa51957', 'uniqueId': '0xa8f2336a5bdbe3496aa2d374dfb35936636b637f0d7f152b610783ba8878d977:log:3', 'hash': '0xa8f2336a5bdbe3496aa2d374dfb35936636b637f0d7f152b610783ba8878d977', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 96000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14542ba12a337c000000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:24:23.000Z'}}, {'blockNum': '0xa5195a', 'uniqueId': '0xeb4f986554e5090e765620b5145f16e53ba149512f784382a15e2dbf3d45b45e:log:50', 'hash': '0xeb4f986554e5090e765620b5145f16e53ba149512f784382a15e2dbf3d45b45e', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 178352.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25c482377387df5e0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:24:47.000Z'}}, {'blockNum': '0xa51970', 'uniqueId': '0xbf55ec7e9bb6146875b6c8b0d0c14cfa57dcb8bbb50d713fcc47d7ab680e015b:log:189', 'hash': '0xbf55ec7e9bb6146875b6c8b0d0c14cfa57dcb8bbb50d713fcc47d7ab680e015b', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 298000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3f1a9cc4485526400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:30:16.000Z'}}, {'blockNum': '0xa51970', 'uniqueId': '0x1984fe9ca5cc16b937a5dba3b7fe0d5beb142469795898a95bd1c2ba56795b7f:log:199', 'hash': '0x1984fe9ca5cc16b937a5dba3b7fe0d5beb142469795898a95bd1c2ba56795b7f', 'from': '0x11ad1da771774115a29789da557c2e1bc53d2e53', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 331211.59312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x4623043574692d7a0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:30:16.000Z'}}, {'blockNum': '0xa5197a', 'uniqueId': '0x6d9a427b59e53a8d7f063fb2331c42ecb3ef7596f3db6b7231e83efcdd69d56b:log:143', 'hash': '0x6d9a427b59e53a8d7f063fb2331c42ecb3ef7596f3db6b7231e83efcdd69d56b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdc39d6947d9565e18788655439ff87b61095a30a', 'value': 6512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0161042779f1ffc00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:33:26.000Z'}}, {'blockNum': '0xa5197a', 'uniqueId': '0x62626056ea64c8cfe2c2183b11e799d0273de71afa305f7c999b13fc62c426df:log:145', 'hash': '0x62626056ea64c8cfe2c2183b11e799d0273de71afa305f7c999b13fc62c426df', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 132159.0142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1bfc5ac1866ee56b8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:33:26.000Z'}}, {'blockNum': '0xa5198a', 'uniqueId': '0x08069abfbcd343ebc6eec06a1044684368c29940df6a5778644b40bf1afdf79e:log:10', 'hash': '0x08069abfbcd343ebc6eec06a1044684368c29940df6a5778644b40bf1afdf79e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 3751156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x031a56930083bafb500000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:36:22.000Z'}}, {'blockNum': '0xa5199f', 'uniqueId': '0xc3b508640d767ea29ded83ed0c1b91c8ac963e028e428b386f6e37abc3c152cf:log:109', 'hash': '0xc3b508640d767ea29ded83ed0c1b91c8ac963e028e428b386f6e37abc3c152cf', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 132159.0142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1bfc5ac1866ee56b8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:42:02.000Z'}}, {'blockNum': '0xa519a3', 'uniqueId': '0x33f03c9453453d58ce77f1cd585518c173b8acc3e24328778dcd06ccacbeaefb:log:45', 'hash': '0x33f03c9453453d58ce77f1cd585518c173b8acc3e24328778dcd06ccacbeaefb', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 132159.0142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1bfc5ac1866ee56b8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T08:43:55.000Z'}}, {'blockNum': '0xa519da', 'uniqueId': '0x1e37b6ea604e12bb546cec0c301ceb08a74bca7fa6622ad2f71e43d69ec3167a:log:215', 'hash': '0x1e37b6ea604e12bb546cec0c301ceb08a74bca7fa6622ad2f71e43d69ec3167a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 1030245.99995673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf609365fcdd4400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:00:46.000Z'}}, {'blockNum': '0xa519df', 'uniqueId': '0x1e77af211d65b3f6f61ad3d5b1eb1b353bdcd10d6ffe90bc652ff53a65d26f87:log:297', 'hash': '0x1e77af211d65b3f6f61ad3d5b1eb1b353bdcd10d6ffe90bc652ff53a65d26f87', 'from': '0x986a2fca9eda0e06fbf7839b89bfc006ee2a23dd', 'to': '0xa9b3675db4c6b57abbb3472f03cf07e0e386a181', 'value': 18788.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x03fa84df93009e340000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:02:09.000Z'}}, {'blockNum': '0xa519e9', 'uniqueId': '0x24d57b437bdd8ea4918636cd07560cd6ad3701e0e32c5437843395074064a9b6:log:40', 'hash': '0x24d57b437bdd8ea4918636cd07560cd6ad3701e0e32c5437843395074064a9b6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x95cfc47294193637a456373b2cf1aa92fdf3cda8', 'value': 250.96618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0d9adafb08c0be4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:05:19.000Z'}}, {'blockNum': '0xa519f6', 'uniqueId': '0x46ace75317362b9fb1b9f8ed5bd8461a95540bdaeebbdbfdc0caac033755862d:log:32', 'hash': '0x46ace75317362b9fb1b9f8ed5bd8461a95540bdaeebbdbfdc0caac033755862d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x182775f14f7fa8dfdf16012134557c87e32b973c', 'value': 88.1568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x04c76bde8677280000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:08:20.000Z'}}, {'blockNum': '0xa51a00', 'uniqueId': '0xce3e191c7903f1a82b6fec96379da84a96336c18091194c236389a4862b267af:log:94', 'hash': '0xce3e191c7903f1a82b6fec96379da84a96336c18091194c236389a4862b267af', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99995673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf609365fcdd4400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:09:39.000Z'}}, {'blockNum': '0xa51a02', 'uniqueId': '0xd29b9ad3b03861dbadd5c4ab06373b3a5053d4287d61c8fdc38b6fa93a08aaca:log:19', 'hash': '0xd29b9ad3b03861dbadd5c4ab06373b3a5053d4287d61c8fdc38b6fa93a08aaca', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1030245.99995673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf609365fcdd4400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:11:04.000Z'}}, {'blockNum': '0xa51a14', 'uniqueId': '0x165faba3fa6e5fd5ef2834866dc1dbf7f7eec9115a0bfed4040d0899f684bb99:log:267', 'hash': '0x165faba3fa6e5fd5ef2834866dc1dbf7f7eec9115a0bfed4040d0899f684bb99', 'from': '0x95cfc47294193637a456373b2cf1aa92fdf3cda8', 'to': '0x520d4cee24dc34b03fb7c877dfdab73bdac44099', 'value': 250.96618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0d9adafb08c0be4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:17:35.000Z'}}, {'blockNum': '0xa51a21', 'uniqueId': '0x700156926096459c13329770aede236d9087464632ae6f933339ab433dadb34f:log:20', 'hash': '0x700156926096459c13329770aede236d9087464632ae6f933339ab433dadb34f', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99990496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa3088b50f8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:19:35.000Z'}}, {'blockNum': '0xa51a53', 'uniqueId': '0xe7609ad513b331931595bfbd8ed6b9c85d7fa0002727ef233902802e8c45361a:log:47', 'hash': '0xe7609ad513b331931595bfbd8ed6b9c85d7fa0002727ef233902802e8c45361a', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3582495.21907019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x02f69f7479072f04efcc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:30:14.000Z'}}, {'blockNum': '0xa51a69', 'uniqueId': '0x0deb1328ff863da334b62096b8bd6f8c91ce5a522122f482cf8fc67658046af8:log:43', 'hash': '0x0deb1328ff863da334b62096b8bd6f8c91ce5a522122f482cf8fc67658046af8', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 134206.9916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1c6b6026d915797f0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:35:42.000Z'}}, {'blockNum': '0xa51a7c', 'uniqueId': '0xca9dbfb575b520bcae0ff13e13e1dbbe2e514d49a09dcc8d60b350e61aec3a02:log:42', 'hash': '0xca9dbfb575b520bcae0ff13e13e1dbbe2e514d49a09dcc8d60b350e61aec3a02', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 1030245.99993937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60839c0c3b2400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:40:15.000Z'}}, {'blockNum': '0xa51a86', 'uniqueId': '0xdf436870a8289efcad1620d64216ff8b60185fb3ffee09597502c551e39dbe96:log:35', 'hash': '0xdf436870a8289efcad1620d64216ff8b60185fb3ffee09597502c551e39dbe96', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 4131909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x036af73c57dbe0cdf40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:42:14.000Z'}}, {'blockNum': '0xa51a87', 'uniqueId': '0xb09b7303142cdbaaf1de46f44f017645ea3b025d072d081cee8a46d8acf8f556:log:44', 'hash': '0xb09b7303142cdbaaf1de46f44f017645ea3b025d072d081cee8a46d8acf8f556', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 185304.1202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x273d5b42929806608000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:42:30.000Z'}}, {'blockNum': '0xa51a93', 'uniqueId': '0x9540ffdd036f47b1aaaf4295a77db81ec37d63d68c34978a17284220c0ca6e14:log:103', 'hash': '0x9540ffdd036f47b1aaaf4295a77db81ec37d63d68c34978a17284220c0ca6e14', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:44:53.000Z'}}, {'blockNum': '0xa51a9b', 'uniqueId': '0xed7f225f545b9e4c4fbde28645e93f0cbfcea1e48ae1ecf7ca6019442c3121ce:log:8', 'hash': '0xed7f225f545b9e4c4fbde28645e93f0cbfcea1e48ae1ecf7ca6019442c3121ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 38846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0839d88b911238380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:47:06.000Z'}}, {'blockNum': '0xa51a9b', 'uniqueId': '0xc4b343a7cdd138f83d31b6e1362e04af0fd69890ad3c275d086377cacb601ffa:log:11', 'hash': '0xc4b343a7cdd138f83d31b6e1362e04af0fd69890ad3c275d086377cacb601ffa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb2c730941f7e45d4e6911555b6cc9da6e45d8c1f', 'value': 931000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xc5259c72f6989fe00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:47:06.000Z'}}, {'blockNum': '0xa51aa2', 'uniqueId': '0x9778d6fcd098257ef6c9500e7d678d83ec2e88e6ed707d4a1638c114e06f90de:log:48', 'hash': '0x9778d6fcd098257ef6c9500e7d678d83ec2e88e6ed707d4a1638c114e06f90de', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99993937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60839c0c3b2400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:48:25.000Z'}}, {'blockNum': '0xa51aa5', 'uniqueId': '0x03568c8d0fc9ede29be8d1f863751c4572198d50842fd5cb1e927adf035bb4ad:log:12', 'hash': '0x03568c8d0fc9ede29be8d1f863751c4572198d50842fd5cb1e927adf035bb4ad', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1030245.99993937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60839c0c3b2400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:49:05.000Z'}}, {'blockNum': '0xa51aa5', 'uniqueId': '0x28b9e04b1ed1041f92b3436174d8ac2e916dd0a40dd30df8c3c192d55d2202e7:log:164', 'hash': '0x28b9e04b1ed1041f92b3436174d8ac2e916dd0a40dd30df8c3c192d55d2202e7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ab91562139c0c591cba4e6e2f91821fc65aebd4', 'value': 49846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0a8e28360892c9180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:49:05.000Z'}}, {'blockNum': '0xa51aae', 'uniqueId': '0xe89b97d5c7503bb7c0f990ea72d0847876cb9ea6a97d6ec1f7edadf1c049ba77:log:41', 'hash': '0xe89b97d5c7503bb7c0f990ea72d0847876cb9ea6a97d6ec1f7edadf1c049ba77', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 185304.1202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x273d5b42929806608000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:51:02.000Z'}}, {'blockNum': '0xa51ab1', 'uniqueId': '0xeda3f7994a43772a7ff74a1623380c606cd9d02c868306f0e0d1f3acb2df797c:log:32', 'hash': '0xeda3f7994a43772a7ff74a1623380c606cd9d02c868306f0e0d1f3acb2df797c', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 185304.1202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x273d5b42929806608000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:51:26.000Z'}}, {'blockNum': '0xa51ab6', 'uniqueId': '0x82bffa0e118274b697034d8ab4c26da83f191827cebd861de583d482c8273826:log:116', 'hash': '0x82bffa0e118274b697034d8ab4c26da83f191827cebd861de583d482c8273826', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 186654.3606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x27868d9c1c837bb98000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:52:26.000Z'}}, {'blockNum': '0xa51ab8', 'uniqueId': '0x7f7eac3d74e4bd1d86ac1baa6841c6af3f6bcd8ff8ee24781494571a785733e0:log:59', 'hash': '0x7f7eac3d74e4bd1d86ac1baa6841c6af3f6bcd8ff8ee24781494571a785733e0', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:54:05.000Z'}}, {'blockNum': '0xa51ab9', 'uniqueId': '0xc3a184f91c3ff4783317eb97665b454948deef908ef8d0e4dde500232d3a6255:log:18', 'hash': '0xc3a184f91c3ff4783317eb97665b454948deef908ef8d0e4dde500232d3a6255', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 100871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x155c3a557e897bbc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:54:43.000Z'}}, {'blockNum': '0xa51abe', 'uniqueId': '0xbb2726783f11d3aa633773620536bc6f11156108fc4d1fb967001b6614edaeec:log:70', 'hash': '0xbb2726783f11d3aa633773620536bc6f11156108fc4d1fb967001b6614edaeec', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:55:15.000Z'}}, {'blockNum': '0xa51ac3', 'uniqueId': '0x0c5f4df534ca0db538f3e1247a3e406f6cb01a2c77a155eeabccddb5bf475162:log:4', 'hash': '0x0c5f4df534ca0db538f3e1247a3e406f6cb01a2c77a155eeabccddb5bf475162', 'from': '0xb2c730941f7e45d4e6911555b6cc9da6e45d8c1f', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 931000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xc5259c72f6989fe00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:56:02.000Z'}}, {'blockNum': '0xa51ac5', 'uniqueId': '0x3b0eae5fe008956359295d342ab348c15ade01242dc9bc90ebc2a3264ae0c723:log:181', 'hash': '0x3b0eae5fe008956359295d342ab348c15ade01242dc9bc90ebc2a3264ae0c723', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 38846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0839d88b911238380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:56:17.000Z'}}, {'blockNum': '0xa51ac5', 'uniqueId': '0x1b12058e3339eca1a41716a5037062a2417e858f0c283793568d97b692454d2f:log:183', 'hash': '0x1b12058e3339eca1a41716a5037062a2417e858f0c283793568d97b692454d2f', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 931000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xc5259c72f6989fe00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:56:17.000Z'}}, {'blockNum': '0xa51ac6', 'uniqueId': '0xeb4a67bced99a40cb27519ba98a2180228a2f44b64d9accb5abf9622939053a5:log:48', 'hash': '0xeb4a67bced99a40cb27519ba98a2180228a2f44b64d9accb5abf9622939053a5', 'from': '0x51ab3998cc6339a1a8261b0aa55a80229867d8f1', 'to': '0xd588f5ad7b0df85888dde4ebc83b707550e6ac5b', 'value': 3477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xbc7d11761081340000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T09:57:08.000Z'}}, {'blockNum': '0xa51add', 'uniqueId': '0x3d244aa5b5b8b22e74d5aa7cfa84bc614987eb32c622ff90a598a8e7d1b4769f:log:103', 'hash': '0x3d244aa5b5b8b22e74d5aa7cfa84bc614987eb32c622ff90a598a8e7d1b4769f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 105165.4767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1645082b9c130781c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:01:22.000Z'}}, {'blockNum': '0xa51ade', 'uniqueId': '0xf911ff17f53fa74a203c7b0ac09ac08c5e7888833c82efa859e9d0bf0bf342a7:log:17', 'hash': '0xf911ff17f53fa74a203c7b0ac09ac08c5e7888833c82efa859e9d0bf0bf342a7', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 100871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x155c3a557e897bbc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:01:27.000Z'}}, {'blockNum': '0xa51ae5', 'uniqueId': '0x6c49dc1711960fbe13d29a35722f77aec2ea5344fef0cb98ab6eebb0a50ad526:log:139', 'hash': '0x6c49dc1711960fbe13d29a35722f77aec2ea5344fef0cb98ab6eebb0a50ad526', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x847dea517d0d061342f13c13dc44b25d5675cb90', 'value': 172912.42658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x249d99f72535e0094000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:03:42.000Z'}}, {'blockNum': '0xa51b03', 'uniqueId': '0x8b0bb5164b4169418859095bd7e2aff275bd70162e3422cb5c5efae3531bc402:log:42', 'hash': '0x8b0bb5164b4169418859095bd7e2aff275bd70162e3422cb5c5efae3531bc402', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 122500.0662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x19f0bdecd7bba3b18000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:10:15.000Z'}}, {'blockNum': '0xa51b04', 'uniqueId': '0x406ff1b16f11e7dd628d6d08e2e21ca57b56cf362b6cd65038a6c41b28e80eb2:log:26', 'hash': '0x406ff1b16f11e7dd628d6d08e2e21ca57b56cf362b6cd65038a6c41b28e80eb2', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 105165.4767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1645082b9c130781c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:10:37.000Z'}}, {'blockNum': '0xa51b07', 'uniqueId': '0xa5da2ddf335a246d3d7209a7198e0d4f451268213027746ad51e1fe8b5d68d4f:log:31', 'hash': '0xa5da2ddf335a246d3d7209a7198e0d4f451268213027746ad51e1fe8b5d68d4f', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 144011.4767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1e7ee0b72d253fb9c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:11:01.000Z'}}, {'blockNum': '0xa51b10', 'uniqueId': '0xa25b5c3aab184a4181a05f7794e0c32bf011e5a1224df08ac2dc36ef97ac3e6f:log:108', 'hash': '0xa25b5c3aab184a4181a05f7794e0c32bf011e5a1224df08ac2dc36ef97ac3e6f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 100719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1553fce903de185c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:12:18.000Z'}}, {'blockNum': '0xa51b30', 'uniqueId': '0xe628a9473f1ce73d49a95a135c6ddf559be9810b7f42e89775dda9a593984718:log:137', 'hash': '0xe628a9473f1ce73d49a95a135c6ddf559be9810b7f42e89775dda9a593984718', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 122500.0662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x19f0bdecd7bba3b18000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:19:12.000Z'}}, {'blockNum': '0xa51b32', 'uniqueId': '0x48ab2f78ac4ad16a0a68f171b7908bec71bf51d2a739996bc6d8627f7ef7af36:log:210', 'hash': '0x48ab2f78ac4ad16a0a68f171b7908bec71bf51d2a739996bc6d8627f7ef7af36', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 122500.0662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x19f0bdecd7bba3b18000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:19:45.000Z'}}, {'blockNum': '0xa51b35', 'uniqueId': '0xf86eb73ba153d0e13560694e54e87c0737925ff0af0d255b9c53f6a8b08638d7:log:248', 'hash': '0xf86eb73ba153d0e13560694e54e87c0737925ff0af0d255b9c53f6a8b08638d7', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 100719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1553fce903de185c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:21:43.000Z'}}, {'blockNum': '0xa51b36', 'uniqueId': '0x8159563435f059e8c116b7580d125ff05e4189f448487f3bf59163c64e6115e8:log:1', 'hash': '0x8159563435f059e8c116b7580d125ff05e4189f448487f3bf59163c64e6115e8', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 80257.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10fec733942e2fc0c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:21:52.000Z'}}, {'blockNum': '0xa51b53', 'uniqueId': '0x67433b2e0c770ababd6f37931c6d882e2a8e9efb5430aad3919f19d9ea8d462e:log:61', 'hash': '0x67433b2e0c770ababd6f37931c6d882e2a8e9efb5430aad3919f19d9ea8d462e', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x5795d7c176979c2db31f88e0b6e6f543e0396378', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:27:11.000Z'}}, {'blockNum': '0xa51b66', 'uniqueId': '0x51b5e17abca70c827332ed90d68d596834afc985cfa217dde49134efc4adcdf8:log:58', 'hash': '0x51b5e17abca70c827332ed90d68d596834afc985cfa217dde49134efc4adcdf8', 'from': '0x5795d7c176979c2db31f88e0b6e6f543e0396378', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:31:33.000Z'}}, {'blockNum': '0xa51b85', 'uniqueId': '0xad500d539c5a8282365c5f0146af6cdea45039493e754ea826c8849229c82dd8:log:22', 'hash': '0xad500d539c5a8282365c5f0146af6cdea45039493e754ea826c8849229c82dd8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe7620ddfe7aa55d250744623423fedb7f184a521', 'value': 76224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10241c7f73f08f000000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:37:47.000Z'}}, {'blockNum': '0xa51b87', 'uniqueId': '0xf2ef1c439e6a3dd50f98f1df92d222493b83e2c22936ab4bd2857701990e4c76:log:83', 'hash': '0xf2ef1c439e6a3dd50f98f1df92d222493b83e2c22936ab4bd2857701990e4c76', 'from': '0xe7620ddfe7aa55d250744623423fedb7f184a521', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 76224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10241c7f73f08f000000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:38:40.000Z'}}, {'blockNum': '0xa51b88', 'uniqueId': '0x10b67706aa7db843ad73b708b994fef5342fd3b0eee157b60c794b5d0121e3f9:log:54', 'hash': '0x10b67706aa7db843ad73b708b994fef5342fd3b0eee157b60c794b5d0121e3f9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 371601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x4eb087d3c1859ba40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:38:42.000Z'}}, {'blockNum': '0xa51b89', 'uniqueId': '0xce1648c0e6fc076f33d489b56dadaeda1019514f41fd88a7a4b8102e64f67f50:log:43', 'hash': '0xce1648c0e6fc076f33d489b56dadaeda1019514f41fd88a7a4b8102e64f67f50', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 416088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x581c2cf92f4b4e600000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:38:43.000Z'}}, {'blockNum': '0xa51b91', 'uniqueId': '0xd1510591036bb6d7a991e4d7fbffbf06dbdee55a6198807ce70e7fadf0f8153b:log:114', 'hash': '0xd1510591036bb6d7a991e4d7fbffbf06dbdee55a6198807ce70e7fadf0f8153b', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x42980dd002b7905906abe8cbcd6cc16986106cf4', 'value': 11488.42213813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x026ec9e27a5c2c4c3400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:40:23.000Z'}}, {'blockNum': '0xa51b93', 'uniqueId': '0x07b7784c4132d3ade6eb29d21f06485ab60de9f1adea24f9a35dff216626f00c:log:22', 'hash': '0x07b7784c4132d3ade6eb29d21f06485ab60de9f1adea24f9a35dff216626f00c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 99960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x152ad7ab5538cee00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:41:18.000Z'}}, {'blockNum': '0xa51b93', 'uniqueId': '0x8e0e7217ca62232343607604d9cdec6a71c6a3684b07e661a78138bc90973a6e:log:23', 'hash': '0x8e0e7217ca62232343607604d9cdec6a71c6a3684b07e661a78138bc90973a6e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 35846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0797372e87c09c580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:41:18.000Z'}}, {'blockNum': '0xa51b93', 'uniqueId': '0xa7822dec5109a82604f4b085298224db274bf34cf942a5515272bee5255fdd4f:log:25', 'hash': '0xa7822dec5109a82604f4b085298224db274bf34cf942a5515272bee5255fdd4f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 1035882.24834123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xdb5b4a094efa34a3cc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:41:18.000Z'}}, {'blockNum': '0xa51b9e', 'uniqueId': '0xddb17237901f1f0a1151a8ba7263cc3cb27f95ab6ec8596743d23b4a93814c2e:log:119', 'hash': '0xddb17237901f1f0a1151a8ba7263cc3cb27f95ab6ec8596743d23b4a93814c2e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1dc009918a0fe19ff6832c55bf55acc4c8794a53', 'value': 70293.52120908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee29e92549f084fb000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:43:13.000Z'}}, {'blockNum': '0xa51bae', 'uniqueId': '0xb81d9b7b10b66c4eaa6600915f8dffa7d859840833b78c2e138a8e4e8c69f0c3:log:65', 'hash': '0xb81d9b7b10b66c4eaa6600915f8dffa7d859840833b78c2e138a8e4e8c69f0c3', 'from': '0x3423940069110f235a4c3e1112abe0246170903b', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 787689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa6ccb4ccf0d0ea040000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:46:51.000Z'}}, {'blockNum': '0xa51bb4', 'uniqueId': '0x616fa546c173de98c467d93869a60581cbdda78aed203fa97d8b64614aa9f367:log:183', 'hash': '0x616fa546c173de98c467d93869a60581cbdda78aed203fa97d8b64614aa9f367', 'from': '0x42980dd002b7905906abe8cbcd6cc16986106cf4', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 11488.42213813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x026ec9e27a5c2c4c3400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:48:03.000Z'}}, {'blockNum': '0xa51bb7', 'uniqueId': '0x7ee6189426fc2f65b5ebc8ecdf63eaa3d21d026f63b241527cd9a0b890bb6a37:log:32', 'hash': '0x7ee6189426fc2f65b5ebc8ecdf63eaa3d21d026f63b241527cd9a0b890bb6a37', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 3815646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0327fe9589a91108b80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:48:29.000Z'}}, {'blockNum': '0xa51bb7', 'uniqueId': '0x3997a0a8e8b5e8da9916374699e90ce27efe2af7e38084a18065c0ff725af76e:log:144', 'hash': '0x3997a0a8e8b5e8da9916374699e90ce27efe2af7e38084a18065c0ff725af76e', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 99960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x152ad7ab5538cee00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:48:29.000Z'}}, {'blockNum': '0xa51bb9', 'uniqueId': '0x5856141e8857e5d6e0ca1f29f193e10552d739283ce0e40508e88ef0e511b806:log:66', 'hash': '0x5856141e8857e5d6e0ca1f29f193e10552d739283ce0e40508e88ef0e511b806', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1035882.24834123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xdb5b4a094efa34a3cc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:49:02.000Z'}}, {'blockNum': '0xa51bb9', 'uniqueId': '0xceb9e79d5e7e305229fba9c86e1fa172a967c71215d68f9de28f8257e9ae3101:log:70', 'hash': '0xceb9e79d5e7e305229fba9c86e1fa172a967c71215d68f9de28f8257e9ae3101', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 35846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0797372e87c09c580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:49:02.000Z'}}, {'blockNum': '0xa51bba', 'uniqueId': '0xf2fa457acfb7a879186cbf9e24a5715312bd667ac43869c3aa392d4de84b8fd7:log:39', 'hash': '0xf2fa457acfb7a879186cbf9e24a5715312bd667ac43869c3aa392d4de84b8fd7', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1071728.24834123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xe2f28137d6bad0fbcc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:49:16.000Z'}}, {'blockNum': '0xa51bbe', 'uniqueId': '0xe598ab9698586923401353b95dd04033c55c8a32f33a8dcb56b4e97510e0c71a:log:56', 'hash': '0xe598ab9698586923401353b95dd04033c55c8a32f33a8dcb56b4e97510e0c71a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:50:05.000Z'}}, {'blockNum': '0xa51bbf', 'uniqueId': '0x0830469771fcc7e5a7896211400c52ea2e2d3ea1d658fc1c78ce06493396c4c3:log:167', 'hash': '0x0830469771fcc7e5a7896211400c52ea2e2d3ea1d658fc1c78ce06493396c4c3', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x896b6d82d0ba81dd27c16f6956e55371278e9dcc', 'value': 70102.23800908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0ed83ffbe3aedc4fb000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:50:18.000Z'}}, {'blockNum': '0xa51bc3', 'uniqueId': '0xe5e8be187955250d21a99874a8c9177c85b159078d920a7e4c7dcdbee95274c6:log:76', 'hash': '0xe5e8be187955250d21a99874a8c9177c85b159078d920a7e4c7dcdbee95274c6', 'from': '0x1dc009918a0fe19ff6832c55bf55acc4c8794a53', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 70293.52120908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee29e92549f084fb000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:51:21.000Z'}}, {'blockNum': '0xa51bd4', 'uniqueId': '0x59fadd0a7a5d6b4689cfb080ac75697100020d0f97c4d3c26d5ec258a77e0774:log:52', 'hash': '0x59fadd0a7a5d6b4689cfb080ac75697100020d0f97c4d3c26d5ec258a77e0774', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 170672.6184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x24242e61fc8345da0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:55:24.000Z'}}, {'blockNum': '0xa51be2', 'uniqueId': '0x64cef17d67ca74190f72ff0723eb6fd0e45eddf1b3e17ccbaaa013c0e476152d:log:11', 'hash': '0x64cef17d67ca74190f72ff0723eb6fd0e45eddf1b3e17ccbaaa013c0e476152d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'value': 11067.13893813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0257f367e4039c743400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T10:58:17.000Z'}}, {'blockNum': '0xa51c0b', 'uniqueId': '0x6ebff4a1f2f80c893d210831a68940b3e1922a6889274f256f294fc1904d79c9:log:49', 'hash': '0x6ebff4a1f2f80c893d210831a68940b3e1922a6889274f256f294fc1904d79c9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe82db53a5c108a544d5195b8e2ff6de8c6eb715f', 'value': 67112.666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e362f5684db2c090000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:06:41.000Z'}}, {'blockNum': '0xa51c22', 'uniqueId': '0x5395c1360fbb1a6d3bdace0f8e9b16203be154a1156c7fb760031388cabb138f:log:37', 'hash': '0x5395c1360fbb1a6d3bdace0f8e9b16203be154a1156c7fb760031388cabb138f', 'from': '0xe82db53a5c108a544d5195b8e2ff6de8c6eb715f', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 67112.666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e362f5684db2c090000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:12:36.000Z'}}, {'blockNum': '0xa51c43', 'uniqueId': '0x189419f3b561bc456ce9ea4ff7ccb7a39ea35934fe48360100e385b2dfe6144f:log:20', 'hash': '0x189419f3b561bc456ce9ea4ff7ccb7a39ea35934fe48360100e385b2dfe6144f', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 100409.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15433b6931007a188000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:21:21.000Z'}}, {'blockNum': '0xa51c68', 'uniqueId': '0x964082769c7c1cbaaeb96b194c6ba9a3b948badf40aee1a1b7c9f9ee5a4de5f2:log:45', 'hash': '0x964082769c7c1cbaaeb96b194c6ba9a3b948badf40aee1a1b7c9f9ee5a4de5f2', 'from': '0x167a9333bf582556f35bd4d16a7e80e191aa6476', 'to': '0x7dc7123f0a92d972ad025daae11ccac1e8b11fb1', 'value': 50261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0aa4a77e35cf24340000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:29:12.000Z'}}, {'blockNum': '0xa51cb2', 'uniqueId': '0x6a1ec1d4778e31984d729aa5d69eadc3647feaa9289da87242443710da05bd53:log:39', 'hash': '0x6a1ec1d4778e31984d729aa5d69eadc3647feaa9289da87242443710da05bd53', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 120974.7909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x199e0e7a6ba34a534000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:45:24.000Z'}}, {'blockNum': '0xa51cb7', 'uniqueId': '0x06b38eddf142a8ab61902e328fc6725050e713b57d13201fb7d0d476f2c0503b:log:18', 'hash': '0x06b38eddf142a8ab61902e328fc6725050e713b57d13201fb7d0d476f2c0503b', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 170672.6184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x24242e61fc8345da0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:45:51.000Z'}}, {'blockNum': '0xa51cb7', 'uniqueId': '0x2da67c459a0dce96fb143794874d093d47c03690439d0104ebed690d54ea0be3:log:20', 'hash': '0x2da67c459a0dce96fb143794874d093d47c03690439d0104ebed690d54ea0be3', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:45:51.000Z'}}, {'blockNum': '0xa51cb8', 'uniqueId': '0x7d6b903ca4e1146567d1fb5d5908959465be2ca85876caf3bc56fdacd1d35949:log:46', 'hash': '0x7d6b903ca4e1146567d1fb5d5908959465be2ca85876caf3bc56fdacd1d35949', 'from': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 11067.13893813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0257f367e4039c743400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:46:06.000Z'}}, {'blockNum': '0xa51cb9', 'uniqueId': '0x486b5810df42833837122fb30a337e1222e923ebe922a64f985777ad6775ee17:log:31', 'hash': '0x486b5810df42833837122fb30a337e1222e923ebe922a64f985777ad6775ee17', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 250776.3091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x351a9c67a89ec372c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:46:26.000Z'}}, {'blockNum': '0xa51cc3', 'uniqueId': '0xd606d510b77dbe79a8cf0a24d6e38d502f1105523bdabe78823f2cdeb5d5e60a:log:88', 'hash': '0xd606d510b77dbe79a8cf0a24d6e38d502f1105523bdabe78823f2cdeb5d5e60a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 99779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x152107ca2833752c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:48:29.000Z'}}, {'blockNum': '0xa51cdc', 'uniqueId': '0xa4a9ac6596284a4192346362d323eab77201b082c3d7b7d9a2c836f10e2d852a:log:33', 'hash': '0xa4a9ac6596284a4192346362d323eab77201b082c3d7b7d9a2c836f10e2d852a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:52:53.000Z'}}, {'blockNum': '0xa51cdc', 'uniqueId': '0xeb89876ed2e223d8dc8809a06f51fed911c75cfb343e5168d0950c46a46633c3:log:34', 'hash': '0xeb89876ed2e223d8dc8809a06f51fed911c75cfb343e5168d0950c46a46633c3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8ab91562139c0c591cba4e6e2f91821fc65aebd4', 'value': 54846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0b9d35266d7022380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:52:53.000Z'}}, {'blockNum': '0xa51ce9', 'uniqueId': '0xcf67b1206e1c391911c53bf5b13df056da61fd122cfdc01cc942645663581b5e:log:206', 'hash': '0xcf67b1206e1c391911c53bf5b13df056da61fd122cfdc01cc942645663581b5e', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 99779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x152107ca2833752c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:55:31.000Z'}}, {'blockNum': '0xa51cf5', 'uniqueId': '0xf1ee93b71b9d2eeea3f57ccc2271d7be7fbb34a75e63c4fc2c663e131428ede2:log:44', 'hash': '0xf1ee93b71b9d2eeea3f57ccc2271d7be7fbb34a75e63c4fc2c663e131428ede2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 100064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15307af58e34cf800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:57:38.000Z'}}, {'blockNum': '0xa51cfd', 'uniqueId': '0x15c5bc0dbc63b174036787342def93e43612f982b74bb9bbfeaa1f626fe4f97f:log:243', 'hash': '0x15c5bc0dbc63b174036787342def93e43612f982b74bb9bbfeaa1f626fe4f97f', 'from': '0x51ab3998cc6339a1a8261b0aa55a80229867d8f1', 'to': '0x5bb35d290ecc0f00a8c84b03e66d974b01d64afb', 'value': 40690, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x089dcf2f9723f4880000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T11:59:08.000Z'}}, {'blockNum': '0xa51d09', 'uniqueId': '0xb9b20f45a2fb9de1d40bef15739071d92d08df2a8ac18daf42cd7e5fc9ba3b42:log:204', 'hash': '0xb9b20f45a2fb9de1d40bef15739071d92d08df2a8ac18daf42cd7e5fc9ba3b42', 'from': '0x986a2fca9eda0e06fbf7839b89bfc006ee2a23dd', 'to': '0xf9696457d3873621c1daa8661a4e81a4b764e518', 'value': 10345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0230cdb701d748040000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:00:41.000Z'}}, {'blockNum': '0xa51d15', 'uniqueId': '0xd35f30ea3f1cc59acc38c0bed5893ca776c2a6f3d11ee202c6664593f2644110:log:161', 'hash': '0xd35f30ea3f1cc59acc38c0bed5893ca776c2a6f3d11ee202c6664593f2644110', 'from': '0x9539cb41e712887ce2b8c1c62e8d7d20873951a8', 'to': '0x347243e2921bfb2ac09a2c58a30616ff1d902ad7', 'value': 2295.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x7c6dafb4faba1a0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:04:32.000Z'}}, {'blockNum': '0xa51d1b', 'uniqueId': '0x7eae2f757b6b7845f988dfbe198ec4a207f776758d7afa7cc4d5c775355ec544:log:57', 'hash': '0x7eae2f757b6b7845f988dfbe198ec4a207f776758d7afa7cc4d5c775355ec544', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 100064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15307af58e34cf800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:05:18.000Z'}}, {'blockNum': '0xa51d21', 'uniqueId': '0x0e385a317e191cf833aee15aa91da6db6dfbab43b0b1f21f92ffe8dae412ba96:log:16', 'hash': '0x0e385a317e191cf833aee15aa91da6db6dfbab43b0b1f21f92ffe8dae412ba96', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xcee011dad112c1fe8f5015538b7c3d61be7af950', 'value': 80, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x04563918244f400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:06:58.000Z'}}, {'blockNum': '0xa51d7d', 'uniqueId': '0x5988929110be22e49eec89d4cabf86a96a9d7d3d327eeaf67c58f02a2cb121d2:log:125', 'hash': '0x5988929110be22e49eec89d4cabf86a96a9d7d3d327eeaf67c58f02a2cb121d2', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 171285.9246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x24456db74ffa2e878000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:27:55.000Z'}}, {'blockNum': '0xa51d85', 'uniqueId': '0xee0451085ce12f94059985c6e6b70b6e29a4ea9902d7b38688ec34b2bbd9cc7e:log:87', 'hash': '0xee0451085ce12f94059985c6e6b70b6e29a4ea9902d7b38688ec34b2bbd9cc7e', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1109829.4336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xeb03f961e2d990900000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:30:04.000Z'}}, {'blockNum': '0xa51d9c', 'uniqueId': '0x37316fb3cb3cb5243da8084f83722d051e5e4b9cf69d31a6816976fede50697d:log:85', 'hash': '0x37316fb3cb3cb5243da8084f83722d051e5e4b9cf69d31a6816976fede50697d', 'from': '0x51ab3998cc6339a1a8261b0aa55a80229867d8f1', 'to': '0x5d3cb3719f2e230b0d82796709a1b3911ae5740d', 'value': 22800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x04d3fd8fe06c3a400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:33:37.000Z'}}, {'blockNum': '0xa51d9f', 'uniqueId': '0x5a0b66ee06c5f2c90990615136bc3a4f1bae674f48ae6007f53357c076f4c4b3:log:255', 'hash': '0x5a0b66ee06c5f2c90990615136bc3a4f1bae674f48ae6007f53357c076f4c4b3', 'from': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'to': '0x51ab3998cc6339a1a8261b0aa55a80229867d8f1', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:34:03.000Z'}}, {'blockNum': '0xa51dec', 'uniqueId': '0x589cea04c7b2c085a76e4da30511d36b72cc1c8b8349f47dd521630d82826611:log:20', 'hash': '0x589cea04c7b2c085a76e4da30511d36b72cc1c8b8349f47dd521630d82826611', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbb5dfe9534253e5689627eca157a624bbb4b2510', 'value': 42716.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x090bad8816bc10f00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:52:33.000Z'}}, {'blockNum': '0xa51def', 'uniqueId': '0xcf6109622f762d5e4a472ebfe008787e80f4c086b44d1cac9fb9fbcab6ffd737:log:40', 'hash': '0xcf6109622f762d5e4a472ebfe008787e80f4c086b44d1cac9fb9fbcab6ffd737', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 99500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1511e7e30a6807300000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:53:01.000Z'}}, {'blockNum': '0xa51dfa', 'uniqueId': '0x94b679aba899a7e741262bf49e6f50f048d3d9a7982a5f4202c9e81222d83499:log:45', 'hash': '0x94b679aba899a7e741262bf49e6f50f048d3d9a7982a5f4202c9e81222d83499', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 178352.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25c482377387df5e0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:56:09.000Z'}}, {'blockNum': '0xa51e00', 'uniqueId': '0x06a711404bd83322915105f1b18fee08c3ccf38cfd069d0f1dff0fa7f31563c7:log:129', 'hash': '0x06a711404bd83322915105f1b18fee08c3ccf38cfd069d0f1dff0fa7f31563c7', 'from': '0xbb5dfe9534253e5689627eca157a624bbb4b2510', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 42716.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x090bad8816bc10f00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:57:26.000Z'}}, {'blockNum': '0xa51e08', 'uniqueId': '0x2e2df53f7bd0c168ca2c6e0208a3d4cace0b8fd2c3f64257b19d06c7cace1bfe:log:36', 'hash': '0x2e2df53f7bd0c168ca2c6e0208a3d4cace0b8fd2c3f64257b19d06c7cace1bfe', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x9fc33a1675f40ad57cd3bac572bac321523cc8f7', 'value': 383188.59541081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x5124b20479f1204a4400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T12:59:23.000Z'}}, {'blockNum': '0xa51e26', 'uniqueId': '0xeb62305f1b89730796d6d177843c9c64c4d929321bae67a8706fbf0de232aea2:log:45', 'hash': '0xeb62305f1b89730796d6d177843c9c64c4d929321bae67a8706fbf0de232aea2', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 100409.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15433b6931007a188000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:05:51.000Z'}}, {'blockNum': '0xa51e28', 'uniqueId': '0x8b5cc4e9e88146c8c90bee388bd199859e7c2a0e2e9081bf4a0b2ed758f982d5:log:56', 'hash': '0x8b5cc4e9e88146c8c90bee388bd199859e7c2a0e2e9081bf4a0b2ed758f982d5', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 178352.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25c482377387df5e0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:06:35.000Z'}}, {'blockNum': '0xa51e28', 'uniqueId': '0x11488928b1096eeeb3ebff4fa4f343d7bd16a4fe25f70bc0fb9230e67df16a4e:log:58', 'hash': '0x11488928b1096eeeb3ebff4fa4f343d7bd16a4fe25f70bc0fb9230e67df16a4e', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 80103.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f66e05ac1b7d98c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:06:35.000Z'}}, {'blockNum': '0xa51e2d', 'uniqueId': '0x5245296b5ee7ab39193082b5c595bc12df954f87423d48bcce244febac2aab3a:log:21', 'hash': '0x5245296b5ee7ab39193082b5c595bc12df954f87423d48bcce244febac2aab3a', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 269523.33443813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3912e3a503a6f96af400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:07:18.000Z'}}, {'blockNum': '0xa51e2d', 'uniqueId': '0x89c91b9c9a51702f81e4865fd13c0de7fb176eea62e065ad510de95067a95f80:log:58', 'hash': '0x89c91b9c9a51702f81e4865fd13c0de7fb176eea62e065ad510de95067a95f80', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdb6bd3dc0f781cc293a646f2f31d3184d30898a8', 'value': 21515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x048e549acca5014c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:07:18.000Z'}}, {'blockNum': '0xa51e32', 'uniqueId': '0xce46a829b2edd6bb7eb1c2ca1838990a476f49697ce45cc84d84b9bdf2e2d620:log:150', 'hash': '0xce46a829b2edd6bb7eb1c2ca1838990a476f49697ce45cc84d84b9bdf2e2d620', 'from': '0x8a38e3b618ac4855cb2130d4e86626a48b91f521', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 4000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x034f086f3b33b684000000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:08:03.000Z'}}, {'blockNum': '0xa51e37', 'uniqueId': '0x5cac52a8232d218f60258da29e7300f0f59e062a3cba6bd6ef892d0f56b7c740:log:106', 'hash': '0x5cac52a8232d218f60258da29e7300f0f59e062a3cba6bd6ef892d0f56b7c740', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36a389e0f291749e7507c751e494ae03c074365f', 'value': 42700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x090ac58a15b43bb00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:09:19.000Z'}}, {'blockNum': '0xa51e43', 'uniqueId': '0x6095754fdd9526b0a5573236213bf342933e12ca4dd7c7048cecee555866efd0:log:43', 'hash': '0x6095754fdd9526b0a5573236213bf342933e12ca4dd7c7048cecee555866efd0', 'from': '0xdb6bd3dc0f781cc293a646f2f31d3184d30898a8', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 21515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x048e549acca5014c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:11:37.000Z'}}, {'blockNum': '0xa51e46', 'uniqueId': '0x4b6ce608bf8f280f9aa42bec2085d993492c920b7d40774945c1baf13efeb7e7:log:97', 'hash': '0x4b6ce608bf8f280f9aa42bec2085d993492c920b7d40774945c1baf13efeb7e7', 'from': '0x36a389e0f291749e7507c751e494ae03c074365f', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 42700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x090ac58a15b43bb00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:12:30.000Z'}}, {'blockNum': '0xa51e55', 'uniqueId': '0xca57abe0ad403694740bd469400807c0fe1ca1abf04745e6522a946c9d56235c:log:130', 'hash': '0xca57abe0ad403694740bd469400807c0fe1ca1abf04745e6522a946c9d56235c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe69982dcd9cf51e1b725aae3cd5c71a7f3667894', 'value': 42100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08ea3edde0a3e9500000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:15:14.000Z'}}, {'blockNum': '0xa51e6b', 'uniqueId': '0xbcfc3bd3822283209728e9cc4ec30ee1b23574a6463168629521015496a1b502:log:147', 'hash': '0xbcfc3bd3822283209728e9cc4ec30ee1b23574a6463168629521015496a1b502', 'from': '0xe69982dcd9cf51e1b725aae3cd5c71a7f3667894', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 42100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08ea3edde0a3e9500000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:19:15.000Z'}}, {'blockNum': '0xa51e82', 'uniqueId': '0xe42d7c5347fb718908ad757afb7a70b7ad551884f196b6bb36eab2ab01239feb:log:40', 'hash': '0xe42d7c5347fb718908ad757afb7a70b7ad551884f196b6bb36eab2ab01239feb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4f12c309fde980afc523aa9b17dbcfa1ff51034d', 'value': 49868.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0a8f633ca24dba760000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:25:30.000Z'}}, {'blockNum': '0xa51e82', 'uniqueId': '0x4a87f44d1bad2586dd5714c66f120f6f2637288d7f94dc7953b1d6344e2c3b15:log:41', 'hash': '0x4a87f44d1bad2586dd5714c66f120f6f2637288d7f94dc7953b1d6344e2c3b15', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 99335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1508f60d489d23bc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:25:30.000Z'}}, {'blockNum': '0xa51e82', 'uniqueId': '0xaa7379ee292da02dce675ac1c4c8b18c3bdd542b563449f20384a04ca10aba14:log:55', 'hash': '0xaa7379ee292da02dce675ac1c4c8b18c3bdd542b563449f20384a04ca10aba14', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xe45d0fdb2b910a002e8a2e33ac446826cd8a9444', 'value': 92414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1391c5e1e9a4b5380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:25:30.000Z'}}, {'blockNum': '0xa51e93', 'uniqueId': '0x67d3c54e967f5b633070c538ab9eccefe6fadec48d3e2bf83c84a48009c4b21e:log:107', 'hash': '0x67d3c54e967f5b633070c538ab9eccefe6fadec48d3e2bf83c84a48009c4b21e', 'from': '0x4f12c309fde980afc523aa9b17dbcfa1ff51034d', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 64442.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0da5721dc9f1396e0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:29:17.000Z'}}, {'blockNum': '0xa51e94', 'uniqueId': '0xb00f52c66afbfae7603b7ec45175cd493fe860e5a49438ca2c88bcf1b34bc9dc:log:126', 'hash': '0xb00f52c66afbfae7603b7ec45175cd493fe860e5a49438ca2c88bcf1b34bc9dc', 'from': '0x986a2fca9eda0e06fbf7839b89bfc006ee2a23dd', 'to': '0xbaba55af21e34f5209a83086c5c0156532a8d168', 'value': 2080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x70c1cc73b00c800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:30:09.000Z'}}, {'blockNum': '0xa51ea5', 'uniqueId': '0x861de8af5587000fbc0dcc50acf6231e5fd67c00754573d8fa7c260dfb7389ae:log:216', 'hash': '0x861de8af5587000fbc0dcc50acf6231e5fd67c00754573d8fa7c260dfb7389ae', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 99335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1508f60d489d23bc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:35:52.000Z'}}, {'blockNum': '0xa51eaa', 'uniqueId': '0xd6975fac9afaa0d872a657595ad67bf25cb9372c2a3a2561144e1b3f5022702a:log:52', 'hash': '0xd6975fac9afaa0d872a657595ad67bf25cb9372c2a3a2561144e1b3f5022702a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x33146e84212e818f272a525681a93f50a12b7f81', 'value': 45801.9334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09b2ed834e41ab5d8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:36:45.000Z'}}, {'blockNum': '0xa51eab', 'uniqueId': '0x8cbf6212c3eeffe9b6213f2d855c39b318c3bc219469f34ae4ca2bf8957fac60:log:10', 'hash': '0x8cbf6212c3eeffe9b6213f2d855c39b318c3bc219469f34ae4ca2bf8957fac60', 'from': '0xbaba55af21e34f5209a83086c5c0156532a8d168', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 2080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x70c1cc73b00c800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:37:08.000Z'}}, {'blockNum': '0xa51ec6', 'uniqueId': '0xa80017c794efaee622fa537ebe52b96d3a6570eff2c0537939c82f590c6933a0:log:112', 'hash': '0xa80017c794efaee622fa537ebe52b96d3a6570eff2c0537939c82f590c6933a0', 'from': '0x33146e84212e818f272a525681a93f50a12b7f81', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 45801.9334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09b2ed834e41ab5d8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:41:35.000Z'}}, {'blockNum': '0xa51ed3', 'uniqueId': '0x45fcb21207ce1c69791446b6c95e4e883905e4b305508a1f9c4fdeae764cce59:log:137', 'hash': '0x45fcb21207ce1c69791446b6c95e4e883905e4b305508a1f9c4fdeae764cce59', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 117816.8722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x18f2dd8d755bb2f88000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:46:22.000Z'}}, {'blockNum': '0xa51ee8', 'uniqueId': '0x6d15a8683d865910cf0e173710f58fe6e5177b45893290fe009faa47969afe79:log:50', 'hash': '0x6d15a8683d865910cf0e173710f58fe6e5177b45893290fe009faa47969afe79', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0019144dde2343576581376638268dd2b29b729a', 'value': 43102.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09209b83279403080000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:51:39.000Z'}}, {'blockNum': '0xa51eff', 'uniqueId': '0x7e14bf45bc8539b475e22b749c6262ec2c1af82cd533fc198adfd0efd95f64cd:log:4', 'hash': '0x7e14bf45bc8539b475e22b749c6262ec2c1af82cd533fc198adfd0efd95f64cd', 'from': '0x0019144dde2343576581376638268dd2b29b729a', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 43102.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09209b83279403080000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T13:56:35.000Z'}}, {'blockNum': '0xa51f19', 'uniqueId': '0x6e0e0ba5d54abe9d03af5a3d9e47c50c30f64c482c380813593f138012a60f35:log:179', 'hash': '0x6e0e0ba5d54abe9d03af5a3d9e47c50c30f64c482c380813593f138012a60f35', 'from': '0x8568e5cf0723c1a0f8b124b058ca12f0af1ae43d', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 28347.011056255626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0600b1cdeec35b1bc5e8', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:00:48.000Z'}}, {'blockNum': '0xa51f1f', 'uniqueId': '0x353992b5de0b9a265913700342ee2ff9e64c83919f9372ee07748e6f776be393:log:105', 'hash': '0x353992b5de0b9a265913700342ee2ff9e64c83919f9372ee07748e6f776be393', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xf16f5240503dd8fe1995e06ca71b28b931bc31eb', 'value': 46084.53654266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09c23f6b5b35cdb4a800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:02:07.000Z'}}, {'blockNum': '0xa51f35', 'uniqueId': '0xe6f6abd4a3959871a789bc93a0299651db340f1d4a0d4f8342c4ae5df7d93ed2:log:12', 'hash': '0xe6f6abd4a3959871a789bc93a0299651db340f1d4a0d4f8342c4ae5df7d93ed2', 'from': '0xf16f5240503dd8fe1995e06ca71b28b931bc31eb', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 46084.53654266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09c23f6b5b35cdb4a800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:06:36.000Z'}}, {'blockNum': '0xa51f50', 'uniqueId': '0x043cb5a45864945886ab59c51199ac2a896aa94cc8d7d1c258d4ac6d1bfcfaff:log:324', 'hash': '0x043cb5a45864945886ab59c51199ac2a896aa94cc8d7d1c258d4ac6d1bfcfaff', 'from': '0xca835a0b30588395bf06c9c1fbb15239dbbd947b', 'to': '0x37c52b4fcbdc0bd05b3985db3bb82ab35d0014b8', 'value': 42895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091557b5408cbcdc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:12:20.000Z'}}, {'blockNum': '0xa51f66', 'uniqueId': '0x460dfce3be8d5c2a32a2317633c316176244bf6556e195e0555a8f45c25618e3:log:98', 'hash': '0x460dfce3be8d5c2a32a2317633c316176244bf6556e195e0555a8f45c25618e3', 'from': '0x37c52b4fcbdc0bd05b3985db3bb82ab35d0014b8', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 42895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091557b5408cbcdc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:17:37.000Z'}}, {'blockNum': '0xa51f73', 'uniqueId': '0xd56436d05f5bb51daded15e81a392214f8bb46f08b9e93d5dcb5ec3a31692085:log:108', 'hash': '0xd56436d05f5bb51daded15e81a392214f8bb46f08b9e93d5dcb5ec3a31692085', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 178297.7184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25c189e70f0064e80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:19:13.000Z'}}, {'blockNum': '0xa51f73', 'uniqueId': '0x14b79eb947ac35aaabd10f73d1135d44605721b0c77b7dad9843e98353a33ab6:log:131', 'hash': '0x14b79eb947ac35aaabd10f73d1135d44605721b0c77b7dad9843e98353a33ab6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x28d386fb43a24be9b220ae76abe32a884499bee6', 'value': 43008.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b81d87ba6ff000000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:19:13.000Z'}}, {'blockNum': '0xa51f7d', 'uniqueId': '0x9c3b488d11f4516dc35301031a10a753467d13482df847b3790af937de284aab:log:122', 'hash': '0x9c3b488d11f4516dc35301031a10a753467d13482df847b3790af937de284aab', 'from': '0x561c75466c1568c2b581c5538b84039a44d186e7', 'to': '0x19ddf57568395a674b282aed034bb9b290a35e75', 'value': 41337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08c0e21d573002440000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:21:26.000Z'}}, {'blockNum': '0xa51f82', 'uniqueId': '0x651f22bf892e42f92201b6cd71f6eb168d718189ccecb29df286d3ae45fb3eb0:log:101', 'hash': '0x651f22bf892e42f92201b6cd71f6eb168d718189ccecb29df286d3ae45fb3eb0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1144b7daece76c8de8d0985aa1d896b3684e092b', 'value': 43001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b16c0e6f00c440000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:22:34.000Z'}}, {'blockNum': '0xa51f8c', 'uniqueId': '0x0855ea23ac47773efb19013c5ea3989ebb402e64f1a1ed0c1f143b077fe7d3c3:log:76', 'hash': '0x0855ea23ac47773efb19013c5ea3989ebb402e64f1a1ed0c1f143b077fe7d3c3', 'from': '0x28d386fb43a24be9b220ae76abe32a884499bee6', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 43008.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b81d87ba6ff000000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:24:16.000Z'}}, {'blockNum': '0xa51f92', 'uniqueId': '0x27406d84ba31d917d11755df338158d27b2f5835c802b58cac40f6821ade2b4b:log:96', 'hash': '0x27406d84ba31d917d11755df338158d27b2f5835c802b58cac40f6821ade2b4b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcc596261d9eb39f8a9a550f44b7353617d8f781e', 'value': 31347.84386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x06a35eb9aeacce154000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:25:09.000Z'}}, {'blockNum': '0xa51f93', 'uniqueId': '0xe91b2ac268360ffd60e974622303252a93a64780515accd8f8113f1d337a54fe:log:24', 'hash': '0xe91b2ac268360ffd60e974622303252a93a64780515accd8f8113f1d337a54fe', 'from': '0x19ddf57568395a674b282aed034bb9b290a35e75', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 41337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08c0e21d573002440000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:25:37.000Z'}}, {'blockNum': '0xa51f9f', 'uniqueId': '0xd6fbc123dccc2247d1199246aaf9dfb5eef4e45dfa749f63fafe6d254ff7a49b:log:162', 'hash': '0xd6fbc123dccc2247d1199246aaf9dfb5eef4e45dfa749f63fafe6d254ff7a49b', 'from': '0x1144b7daece76c8de8d0985aa1d896b3684e092b', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 43001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b16c0e6f00c440000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:27:31.000Z'}}, {'blockNum': '0xa51fa2', 'uniqueId': '0x0ef39a5226ebcf849a39784c5541ea2fc2f2b033dfa8d35ad498007a438e100f:log:72', 'hash': '0x0ef39a5226ebcf849a39784c5541ea2fc2f2b033dfa8d35ad498007a438e100f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xdf35e4883c1f8943c930c5b87fab9854100179e1', 'value': 42722.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x090c00cc5ef1fd480000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:29:32.000Z'}}, {'blockNum': '0xa51fb4', 'uniqueId': '0x55de61a7f0456fd7c59b626f93ccc10fec90abebf5780fb46f6fa886da8ab81c:log:222', 'hash': '0x55de61a7f0456fd7c59b626f93ccc10fec90abebf5780fb46f6fa886da8ab81c', 'from': '0xdf35e4883c1f8943c930c5b87fab9854100179e1', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 42722.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x090c00cc5ef1fd480000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:32:18.000Z'}}, {'blockNum': '0xa51fbe', 'uniqueId': '0x1784ec3634b239b5fdc9111c8cd87c7639d0ea46979c5a4276277e08a78adf36:log:216', 'hash': '0x1784ec3634b239b5fdc9111c8cd87c7639d0ea46979c5a4276277e08a78adf36', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 100255.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x153ae23b48edc7f08000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:36:04.000Z'}}, {'blockNum': '0xa51fc9', 'uniqueId': '0xc0b1c6f655be26e55af6e23233c0c14b7a42b1109697ba730e74dfa592edaded:log:50', 'hash': '0xc0b1c6f655be26e55af6e23233c0c14b7a42b1109697ba730e74dfa592edaded', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa5cb63d8dd152fc4ccbf984464d070940fd590bb', 'value': 44801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x097caac5862103640000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:38:18.000Z'}}, {'blockNum': '0xa51fd0', 'uniqueId': '0xa2d5d6568eab23988f52e443f4d6f705ca043f18fd7a7cd08da25738e137c79c:log:32', 'hash': '0xa2d5d6568eab23988f52e443f4d6f705ca043f18fd7a7cd08da25738e137c79c', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xcfef4feee2afaa18798b3c8eabb33c1958b70591', 'value': 44920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09831e3a73a3d2e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:39:34.000Z'}}, {'blockNum': '0xa51fe3', 'uniqueId': '0xf89617df054389895ce2ed54c7455f09207708075bd560a0ed5d19b43e8a7dde:log:116', 'hash': '0xf89617df054389895ce2ed54c7455f09207708075bd560a0ed5d19b43e8a7dde', 'from': '0xa5cb63d8dd152fc4ccbf984464d070940fd590bb', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 44801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x097caac5862103640000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:42:36.000Z'}}, {'blockNum': '0xa51fe5', 'uniqueId': '0x0f0fe89b63e270098869334fcebfdffbbc3b5c28e4bbdef7d1ca12be9195c7fa:log:3', 'hash': '0x0f0fe89b63e270098869334fcebfdffbbc3b5c28e4bbdef7d1ca12be9195c7fa', 'from': '0xcfef4feee2afaa18798b3c8eabb33c1958b70591', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 44920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x09831e3a73a3d2e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:43:37.000Z'}}, {'blockNum': '0xa51fe9', 'uniqueId': '0x74c5cb285d8ab600394ee00d2af5de9a0eb3deb284a0a1d02e810339aef9f006:log:38', 'hash': '0x74c5cb285d8ab600394ee00d2af5de9a0eb3deb284a0a1d02e810339aef9f006', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'value': 11097.06486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x025992b61f6689e5c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:44:15.000Z'}}, {'blockNum': '0xa51ff1', 'uniqueId': '0x31f43e63e7cc83a3ac75fe4edb6264f8d6d3be84e097850a9fee6fdf0336d5ea:log:46', 'hash': '0x31f43e63e7cc83a3ac75fe4edb6264f8d6d3be84e097850a9fee6fdf0336d5ea', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x48dac900a154c05bd517a81115f73dc6234b4888', 'value': 43000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b08e0303c64e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:45:56.000Z'}}, {'blockNum': '0xa51ff4', 'uniqueId': '0xbeb30b6f48b01434ea9230dde207541f145b803dcc01b70cae079bcfbab3e96c:log:3', 'hash': '0xbeb30b6f48b01434ea9230dde207541f145b803dcc01b70cae079bcfbab3e96c', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 132876.2353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1c233c32bce208564000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:46:22.000Z'}}, {'blockNum': '0xa51ff6', 'uniqueId': '0xdfbf4d7f9be0d7ef58cfb9309f66bd135254bb58cfec5e2dc3ed17abfa3e40cb:log:19', 'hash': '0xdfbf4d7f9be0d7ef58cfb9309f66bd135254bb58cfec5e2dc3ed17abfa3e40cb', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 100409.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15433b6931007a188000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:46:29.000Z'}}, {'blockNum': '0xa52003', 'uniqueId': '0x12aa9618b5a00ce52f00cd62d7434e9150b8e573f0c91f35afabb4f843e8d276:log:104', 'hash': '0x12aa9618b5a00ce52f00cd62d7434e9150b8e573f0c91f35afabb4f843e8d276', 'from': '0x48dac900a154c05bd517a81115f73dc6234b4888', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 43000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b08e0303c64e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:49:14.000Z'}}, {'blockNum': '0xa52012', 'uniqueId': '0x357e52d5212a05abea176ea0db01b71f6bf8d04f8b2b48635173e87740de496b:log:97', 'hash': '0x357e52d5212a05abea176ea0db01b71f6bf8d04f8b2b48635173e87740de496b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6948c6a84699a8d4a7379306ade8d3b1749febb0', 'value': 12846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x02b8620feaf99bf80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:52:40.000Z'}}, {'blockNum': '0xa52014', 'uniqueId': '0x67948aaeda73b9ea499679f7d8f150e4cd4b928da256b2ad82e91ebdb9385509:log:248', 'hash': '0x67948aaeda73b9ea499679f7d8f150e4cd4b928da256b2ad82e91ebdb9385509', 'from': '0x3e9afaa4a062a49d64b8ab057b3cb51892e17ecb', 'to': '0x70bc2a3e453cb42e7f29b3147f004bec2ace8627', 'value': 76897.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1048a01e25ba90898000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:52:57.000Z'}}, {'blockNum': '0xa5201f', 'uniqueId': '0x56b68ee9c9194441a7672164712f35f05950608a68ac02b20cad9e0ddf9ba205:log:32', 'hash': '0x56b68ee9c9194441a7672164712f35f05950608a68ac02b20cad9e0ddf9ba205', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'value': 23686.07638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x050406578d661e49c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T14:55:57.000Z'}}, {'blockNum': '0xa5202f', 'uniqueId': '0x2fc02cda8e9b6b9bf3070d1436f2b62ad3f0d33bdf077ef6ccb768e745c74b80:log:10', 'hash': '0x2fc02cda8e9b6b9bf3070d1436f2b62ad3f0d33bdf077ef6ccb768e745c74b80', 'from': '0x70bc2a3e453cb42e7f29b3147f004bec2ace8627', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 259314.772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x36e97b61997473220000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:00:18.000Z'}}, {'blockNum': '0xa5203c', 'uniqueId': '0x30df1be9edb7f3ee0b56be41304b8ccada60fe22ba9bee448acfcca28c4f38ef:log:20', 'hash': '0x30df1be9edb7f3ee0b56be41304b8ccada60fe22ba9bee448acfcca28c4f38ef', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x618a9b095f7b7b663749bb1f7149346cce6866cc', 'value': 8625.2484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x01d3935df94682590000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:03:16.000Z'}}, {'blockNum': '0xa5204e', 'uniqueId': '0xff54718c6629655bb1d5c352befc66aff82317536f108b4cf186f69ab9c51b0e:log:51', 'hash': '0xff54718c6629655bb1d5c352befc66aff82317536f108b4cf186f69ab9c51b0e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 844482.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d37ff37c6880c80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:06:17.000Z'}}, {'blockNum': '0xa52051', 'uniqueId': '0xb7f225774a5a194530ba3d7ebd612ca79a074afa2090119a1a7cb71ccaf16acf:log:64', 'hash': '0xb7f225774a5a194530ba3d7ebd612ca79a074afa2090119a1a7cb71ccaf16acf', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 99000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14f6ccfe338517e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:06:53.000Z'}}, {'blockNum': '0xa5205f', 'uniqueId': '0x0291873f7c340e3a1e357adb01421156e7909f727695eac4e7938dcf7851b709:log:62', 'hash': '0x0291873f7c340e3a1e357adb01421156e7909f727695eac4e7938dcf7851b709', 'from': '0x51ab3998cc6339a1a8261b0aa55a80229867d8f1', 'to': '0xb1a1010359723aea26892da1a19bafd2a1b930cb', 'value': 10805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0249bd7f4ca80fb40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:09:06.000Z'}}, {'blockNum': '0xa52064', 'uniqueId': '0x90b4056fe256874ba074daddc2f7422247558843c8f30ae1520b2338917cb615:log:13', 'hash': '0x90b4056fe256874ba074daddc2f7422247558843c8f30ae1520b2338917cb615', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x3d0c6aca9e4041fb6486e15ad57b075c5b7a9b45', 'value': 47370.83979749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0a07fa768659f09ef400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:10:16.000Z'}}, {'blockNum': '0xa52065', 'uniqueId': '0x6fbb660fae08e77f42955a47baa385ce2f8482dc6b9c93a501dba02bbc06e2c2:log:138', 'hash': '0x6fbb660fae08e77f42955a47baa385ce2f8482dc6b9c93a501dba02bbc06e2c2', 'from': '0x51ab3998cc6339a1a8261b0aa55a80229867d8f1', 'to': '0x8a54e128efb303cf61c5fb7b2037c0b39bb5bcf9', 'value': 10885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x024e13b864cc5ef40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:10:38.000Z'}}, {'blockNum': '0xa52074', 'uniqueId': '0xea8465fd5cb5213c3c6fcabd544000aeb8d0c86f60bacdf0880a51960ca4607f:log:133', 'hash': '0xea8465fd5cb5213c3c6fcabd544000aeb8d0c86f60bacdf0880a51960ca4607f', 'from': '0x3d0c6aca9e4041fb6486e15ad57b075c5b7a9b45', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 47370.83979749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0a07fa768659f09ef400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:14:18.000Z'}}, {'blockNum': '0xa52080', 'uniqueId': '0x53436f512312cf32d4b9b80a1d76e2668cee00ba49b0f6ad3638ebbd2886af45:log:168', 'hash': '0x53436f512312cf32d4b9b80a1d76e2668cee00ba49b0f6ad3638ebbd2886af45', 'from': '0x51ab3998cc6339a1a8261b0aa55a80229867d8f1', 'to': '0xed939ae44d40a58d2a11fd7b8224c36cd3304df7', 'value': 1601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x56ca569989d8640000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:15:51.000Z'}}, {'blockNum': '0xa52081', 'uniqueId': '0xce6ff652d5b93597474424523319b9f6f1a2d90da8ca7ef1ae3107bcffa1b9f8:log:276', 'hash': '0xce6ff652d5b93597474424523319b9f6f1a2d90da8ca7ef1ae3107bcffa1b9f8', 'from': '0xb1a1010359723aea26892da1a19bafd2a1b930cb', 'to': '0xaf81da727c50fb97e89075812bf97fee746b0193', 'value': 10805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0249bd7f4ca80fb40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:16:27.000Z'}}, {'blockNum': '0xa52088', 'uniqueId': '0xe3841334cdd2c8f2537491371d12190949dae43fd101bfc4871b451773a06b7d:log:55', 'hash': '0xe3841334cdd2c8f2537491371d12190949dae43fd101bfc4871b451773a06b7d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x479ee8922182242a92b2b263342d1e9f7391bb3f', 'value': 43000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b08e0303c64e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:18:23.000Z'}}, {'blockNum': '0xa52097', 'uniqueId': '0x3b143abcb848350747bfebecfa1a51962b8aeb85a18ec978b602bc49aab6e58f:log:81', 'hash': '0x3b143abcb848350747bfebecfa1a51962b8aeb85a18ec978b602bc49aab6e58f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x30c82b8dd91722d059916268358554fda27e136e', 'value': 297185.91052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3eee7b017380e7c78000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:20:48.000Z'}}, {'blockNum': '0xa520a0', 'uniqueId': '0x2d01733427fe6374b69e38c470c6d664e5105a62de9b2e9f969e3a512531e798:log:10', 'hash': '0x2d01733427fe6374b69e38c470c6d664e5105a62de9b2e9f969e3a512531e798', 'from': '0x479ee8922182242a92b2b263342d1e9f7391bb3f', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 43000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b08e0303c64e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:22:35.000Z'}}, {'blockNum': '0xa520a6', 'uniqueId': '0x3249563608eccf0041a9dcaa0c02f844d5ba3d0a3688c10c0d9f54dab4a6f4c4:log:25', 'hash': '0x3249563608eccf0041a9dcaa0c02f844d5ba3d0a3688c10c0d9f54dab4a6f4c4', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 159624.8272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x21cd477b11d1b7540000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:23:51.000Z'}}, {'blockNum': '0xa520c3', 'uniqueId': '0x7a29e60a2d2b252f9dc0bd15b4013f3442995aae351bf493c747987ae610bf93:log:43', 'hash': '0x7a29e60a2d2b252f9dc0bd15b4013f3442995aae351bf493c747987ae610bf93', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 844482.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb2d37ff37c6880c80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:30:03.000Z'}}, {'blockNum': '0xa520c4', 'uniqueId': '0x45104b8b23c09755179c2d844e78ad9df544549dc1f71979559916419edf41da:log:21', 'hash': '0x45104b8b23c09755179c2d844e78ad9df544549dc1f71979559916419edf41da', 'from': '0x30c82b8dd91722d059916268358554fda27e136e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 297185.91052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3eee7b017380e7c78000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:30:20.000Z'}}, {'blockNum': '0xa520ce', 'uniqueId': '0xb850f7c24d91e57483f218bbd597fc0d18f8e3961720c142824ae8b03f7d1b80:log:164', 'hash': '0xb850f7c24d91e57483f218bbd597fc0d18f8e3961720c142824ae8b03f7d1b80', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 99000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14f6ccfe338517e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:32:23.000Z'}}, {'blockNum': '0xa520db', 'uniqueId': '0xb5a731d092796d3d72fc9f35fa46e6f8ed7b5964d5c2170907a449cd5ef3f695:log:125', 'hash': '0xb5a731d092796d3d72fc9f35fa46e6f8ed7b5964d5c2170907a449cd5ef3f695', 'from': '0xed939ae44d40a58d2a11fd7b8224c36cd3304df7', 'to': '0xcfa3e97f04d9b7ecdab669d5ebffc897a3faff18', 'value': 1601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x56ca569989d8640000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:36:54.000Z'}}, {'blockNum': '0xa520f7', 'uniqueId': '0xcb653ff89db5e1841564fe9040a38fde8dbb05b18dbcf564d4f34311181ef39c:log:58', 'hash': '0xcb653ff89db5e1841564fe9040a38fde8dbb05b18dbcf564d4f34311181ef39c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf87eef5115cedd55563c65787258848a78324956', 'value': 8601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x01d242da59f2eec40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:45:04.000Z'}}, {'blockNum': '0xa520fa', 'uniqueId': '0x63af67810b068b69a98405500fc45cb0f4b5ece8fb01e67713383e393c5e3851:log:91', 'hash': '0x63af67810b068b69a98405500fc45cb0f4b5ece8fb01e67713383e393c5e3851', 'from': '0x51ab3998cc6339a1a8261b0aa55a80229867d8f1', 'to': '0x284a5dd5b0e0d5fa143e62c56bc2c71ecf006e32', 'value': 3870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xd1cb09efdc79b80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:45:36.000Z'}}, {'blockNum': '0xa52104', 'uniqueId': '0x75413a726d47ddc1f0ebe51accb3f3d3782ab56b05bf3e412db8545a56b5ff85:log:53', 'hash': '0x75413a726d47ddc1f0ebe51accb3f3d3782ab56b05bf3e412db8545a56b5ff85', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8b4c3e950828ca111c30a114c425cfda901f8c76', 'value': 43000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b08e0303c64e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:47:10.000Z'}}, {'blockNum': '0xa5211e', 'uniqueId': '0xcaf1c3b44b332399936a71a76f1f141049a188d27cd79f51daf43596b0ac6b07:log:140', 'hash': '0xcaf1c3b44b332399936a71a76f1f141049a188d27cd79f51daf43596b0ac6b07', 'from': '0x8b4c3e950828ca111c30a114c425cfda901f8c76', 'to': '0xf53e2edf6d35c163e23f196faa49ab7181322d1e', 'value': 43000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x091b08e0303c64e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:52:21.000Z'}}, {'blockNum': '0xa5212c', 'uniqueId': '0xf0d782ef4be53ab7398826c223187db4147e52c76c7e4bc89cc99d2a1287222e:log:5', 'hash': '0xf0d782ef4be53ab7398826c223187db4147e52c76c7e4bc89cc99d2a1287222e', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 128662.5364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1b3ecf6104776e1d0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:54:22.000Z'}}, {'blockNum': '0xa52130', 'uniqueId': '0x91e52fa8e32c5345ab8395003604f36d1939e5707b6bc7f2796ffc14183ce6da:log:154', 'hash': '0x91e52fa8e32c5345ab8395003604f36d1939e5707b6bc7f2796ffc14183ce6da', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 297500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3eff81df717236f00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:54:54.000Z'}}, {'blockNum': '0xa52131', 'uniqueId': '0xd4af6ad33bb286499ccfcc976b315b118b1018e7872f6006b105143554196db9:log:30', 'hash': '0xd4af6ad33bb286499ccfcc976b315b118b1018e7872f6006b105143554196db9', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 99000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14f6ccfe338517e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:55:35.000Z'}}, {'blockNum': '0xa52134', 'uniqueId': '0xf79721cf718429c704db2c5db94e2ec1dcd3b437f1ce242681fc33e3d14863a6:log:100', 'hash': '0xf79721cf718429c704db2c5db94e2ec1dcd3b437f1ce242681fc33e3d14863a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7dfcca256202da5aeef6ffdd3571d5eeb38548ea', 'value': 140807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1dd129aaf88a6bbc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T15:56:13.000Z'}}, {'blockNum': '0xa52149', 'uniqueId': '0xfa7cd57e7040a78813fd76084ee7d834b792484d59f5197247ade9cf5a2bca23:log:2', 'hash': '0xfa7cd57e7040a78813fd76084ee7d834b792484d59f5197247ade9cf5a2bca23', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0xb030e677d106eb8d7f2a23726b111da974718a45', 'value': 149307.89583951383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1f9dff4be6e6eda1a76c', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:00:56.000Z'}}, {'blockNum': '0xa5214d', 'uniqueId': '0xb7cf4ba243fe8ab6d99bd3a70715bfbdae5051f95cfb75de92a9eaf110348b0e:log:70', 'hash': '0xb7cf4ba243fe8ab6d99bd3a70715bfbdae5051f95cfb75de92a9eaf110348b0e', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x084231b97924ea600000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:01:22.000Z'}}, {'blockNum': '0xa52151', 'uniqueId': '0xa2e17a9716005666f4f1b4905569be901a0b2635c924e3a04570dc7cdd7d8cfc:log:29', 'hash': '0xa2e17a9716005666f4f1b4905569be901a0b2635c924e3a04570dc7cdd7d8cfc', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 178506.5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x25ccdb655b9a91860000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:02:11.000Z'}}, {'blockNum': '0xa52153', 'uniqueId': '0x6818e2cc3a3086751d9b7871d0c57fdcf54b883d339ace28b95ba77de9dea5da:log:109', 'hash': '0x6818e2cc3a3086751d9b7871d0c57fdcf54b883d339ace28b95ba77de9dea5da', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 133692.2992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1c4f795c1e3db83c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:02:24.000Z'}}, {'blockNum': '0xa52155', 'uniqueId': '0x8280c83384fa99884abf0f560b40427f4c2c5bb73c204d36ef71f5139f651f55:log:99', 'hash': '0x8280c83384fa99884abf0f560b40427f4c2c5bb73c204d36ef71f5139f651f55', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc065be5828b3c46bbd800b8b402698055d4aeafb', 'value': 102757.4368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15c27de7515dd4580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:03:00.000Z'}}, {'blockNum': '0xa52156', 'uniqueId': '0x197e052be33767b15140a42730cca202c9ec7586ebf684192a5a42f9c3541cc0:log:60', 'hash': '0x197e052be33767b15140a42730cca202c9ec7586ebf684192a5a42f9c3541cc0', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:03:27.000Z'}}, {'blockNum': '0xa52156', 'uniqueId': '0x5a791771fa859b77b371aeda4e7e7dcfceda274fffced2613101fbc0ee03d783:log:69', 'hash': '0x5a791771fa859b77b371aeda4e7e7dcfceda274fffced2613101fbc0ee03d783', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x8354cfd898a0fb0fcab26170069929ce9fb19a0a', 'value': 1255163.71754216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0109ca8fbc7234ed36a000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:03:27.000Z'}}, {'blockNum': '0xa5215a', 'uniqueId': '0x3a9a8117596baf4a38ff3c4e6a1b1674372e8f654cde025a622ebd47787dfa5f:log:14', 'hash': '0x3a9a8117596baf4a38ff3c4e6a1b1674372e8f654cde025a622ebd47787dfa5f', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99992759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa451daa2bfc00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:04:13.000Z'}}, {'blockNum': '0xa5215c', 'uniqueId': '0x07f11bded2c8816ee9a51d14f1613c87eb497b178897f7a390b9c169d234c42d:log:53', 'hash': '0x07f11bded2c8816ee9a51d14f1613c87eb497b178897f7a390b9c169d234c42d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc4441893f33c073e0397867d8f431c0d3d77c114', 'value': 59830.1253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0cab65c88ec2ab734000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:04:37.000Z'}}, {'blockNum': '0xa5215c', 'uniqueId': '0x3144900fe4f9b52bb7a7748bffe2e51e3c2680cce31b98884a6efe1cd5777a81:log:54', 'hash': '0x3144900fe4f9b52bb7a7748bffe2e51e3c2680cce31b98884a6efe1cd5777a81', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:04:37.000Z'}}, {'blockNum': '0xa5215f', 'uniqueId': '0xfc5061a30d107ac6585519e3df49d89b65e7466d463152cc18ac689c74ba7b1b:log:148', 'hash': '0xfc5061a30d107ac6585519e3df49d89b65e7466d463152cc18ac689c74ba7b1b', 'from': '0x986a2fca9eda0e06fbf7839b89bfc006ee2a23dd', 'to': '0xda75a9f5d461facecd208a30839fda1e95876813', 'value': 3509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xbe39284c856db40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:04:49.000Z'}}, {'blockNum': '0xa52161', 'uniqueId': '0x72bbb9d95a3fa9ef65366d08038172a790cf1ecbea2f394037f8821f43b0b579:log:35', 'hash': '0x72bbb9d95a3fa9ef65366d08038172a790cf1ecbea2f394037f8821f43b0b579', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0x5b8149f0c8c3942724f4e404390c14d7277b5214', 'value': 54755.10688952292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0b9847c13b080d6fa89f', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:05:20.000Z'}}, {'blockNum': '0xa52163', 'uniqueId': '0x00745774fc2efa62665c5306f3e82b1e0d36b992b12948bff49e1cecd9cc65a2:log:24', 'hash': '0x00745774fc2efa62665c5306f3e82b1e0d36b992b12948bff49e1cecd9cc65a2', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xbcf2c7c300d9a9521e08201160216a06db0fc376', 'value': 44104.4068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0956e79955701ac10000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:05:24.000Z'}}, {'blockNum': '0xa5216b', 'uniqueId': '0x9f664c00f14fb860eae664bfacb233836e1aaec7d817a38097c3aeb14096f5b0:log:187', 'hash': '0x9f664c00f14fb860eae664bfacb233836e1aaec7d817a38097c3aeb14096f5b0', 'from': '0x284a5dd5b0e0d5fa143e62c56bc2c71ecf006e32', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 3870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xd1cb09efdc79b80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:06:42.000Z'}}, {'blockNum': '0xa5216c', 'uniqueId': '0xfb29348ac34f7b5ef6a2f3dcfc29f6b8f174f699f0231e1f97a8a7a55b0929e7:log:26', 'hash': '0xfb29348ac34f7b5ef6a2f3dcfc29f6b8f174f699f0231e1f97a8a7a55b0929e7', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 794457.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa83ba39db437acc40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:06:55.000Z'}}, {'blockNum': '0xa5216c', 'uniqueId': '0x5dff68d4915eea99206870c7687f9eb6fb911a53cc3a2ddb03196776a105b7dc:log:243', 'hash': '0x5dff68d4915eea99206870c7687f9eb6fb911a53cc3a2ddb03196776a105b7dc', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0x5b8149f0c8c3942724f4e404390c14d7277b5214', 'value': 43940.310961020536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x094e024fcd4d9811ea09', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:06:55.000Z'}}, {'blockNum': '0xa52171', 'uniqueId': '0x5a0d4b0e11f7d0d95fccaf901540f46f28511351a9f2a31fc3775af5939728cf:log:377', 'hash': '0x5a0d4b0e11f7d0d95fccaf901540f46f28511351a9f2a31fc3775af5939728cf', 'from': '0x8a54e128efb303cf61c5fb7b2037c0b39bb5bcf9', 'to': '0xaf81da727c50fb97e89075812bf97fee746b0193', 'value': 10885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x024e13b864cc5ef40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:08:08.000Z'}}, {'blockNum': '0xa52183', 'uniqueId': '0x6e80ff0ae14af61da37362fad83c01e11c6522f64942b338252ac8142ff63539:log:38', 'hash': '0x6e80ff0ae14af61da37362fad83c01e11c6522f64942b338252ac8142ff63539', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x6fdae4c56b8d01d58d068939d5cb762b4f394d73', 'value': 310549.1551269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x41c2e7475bf988cf8800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:10:59.000Z'}}, {'blockNum': '0xa52186', 'uniqueId': '0x6aad29d0b61dbb298fc0989827cae85192d281de5779430b888f90dfb66057fb:log:36', 'hash': '0x6aad29d0b61dbb298fc0989827cae85192d281de5779430b888f90dfb66057fb', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x8e976f8fdac54648119110e54336b0aba61c8d40', 'value': 349920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x4a1933827c620f800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:11:18.000Z'}}, {'blockNum': '0xa52186', 'uniqueId': '0x20e38b67796c94343f4f5ed80599007b92e3cf1acd31c867933d8bd6e08a611c:log:37', 'hash': '0x20e38b67796c94343f4f5ed80599007b92e3cf1acd31c867933d8bd6e08a611c', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x085bc169b2f01d53f57c41de2eb21d6a6a4541eb', 'value': 737077.55915145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x9c150df6bbf744990400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:11:18.000Z'}}, {'blockNum': '0xa5218a', 'uniqueId': '0x8c760d6fb919e81023f5ff3cbe13a545f7bd5618c4bb9c126f3184ba7991af8a:log:40', 'hash': '0x8c760d6fb919e81023f5ff3cbe13a545f7bd5618c4bb9c126f3184ba7991af8a', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x8e976f8fdac54648119110e54336b0aba61c8d40', 'value': 199920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2a55af56aa719dc00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:11:50.000Z'}}, {'blockNum': '0xa5218a', 'uniqueId': '0x80d99fdaa0090821f850e87d1e7651f74913ed585b6efcca48f45fce697ed4a5:log:41', 'hash': '0x80d99fdaa0090821f850e87d1e7651f74913ed585b6efcca48f45fce697ed4a5', 'from': '0x9fc33a1675f40ad57cd3bac572bac321523cc8f7', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 383188.59541081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x5124b20479f1204a4400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:11:50.000Z'}}, {'blockNum': '0xa5218a', 'uniqueId': '0xe37c3f943b31f1b4491e0306a972680a11415430b4940c955ad14d05a77a5aa3:log:43', 'hash': '0xe37c3f943b31f1b4491e0306a972680a11415430b4940c955ad14d05a77a5aa3', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 100255.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x153ae23b48edc7f08000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:11:50.000Z'}}, {'blockNum': '0xa5218d', 'uniqueId': '0x9c18bd9361f86dd5d81c85f445c7ed0b9d0526527878ec3d9954174eb90b854c:log:27', 'hash': '0x9c18bd9361f86dd5d81c85f445c7ed0b9d0526527878ec3d9954174eb90b854c', 'from': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 23686.07638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x050406578d661e49c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:26.000Z'}}, {'blockNum': '0xa5218d', 'uniqueId': '0x2182ada46cda52a9ba526c3513dc87ab150287286fbfb81bd92a8314c15ab668:log:29', 'hash': '0x2182ada46cda52a9ba526c3513dc87ab150287286fbfb81bd92a8314c15ab668', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 483444.50441081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x665f943fc2dee83ac400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:26.000Z'}}, {'blockNum': '0xa5218e', 'uniqueId': '0xcf59b5f1d615843b2ed9b309aacd01fca32caf63a4273b4991373ee9108404aa:log:34', 'hash': '0xcf59b5f1d615843b2ed9b309aacd01fca32caf63a4273b4991373ee9108404aa', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xf3c820eecef7da3e26986800b2f3c92c27160c0d', 'value': 118507.40910628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x19184cad5eff9f941000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:44.000Z'}}, {'blockNum': '0xa5218e', 'uniqueId': '0x060eabbc364d09c061315a767ab06616be1ea84314c954456b19e0e48b00e7f9:log:35', 'hash': '0x060eabbc364d09c061315a767ab06616be1ea84314c954456b19e0e48b00e7f9', 'from': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 11097.06486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x025992b61f6689e5c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:44.000Z'}}, {'blockNum': '0xa5218e', 'uniqueId': '0xcbe43cb522cc732de2c2e5596a47146ebb4bc4fe1aef1ab1e93c29e0f2d56889:log:37', 'hash': '0xcbe43cb522cc732de2c2e5596a47146ebb4bc4fe1aef1ab1e93c29e0f2d56889', 'from': '0xaf81da727c50fb97e89075812bf97fee746b0193', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 10805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0249bd7f4ca80fb40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:44.000Z'}}, {'blockNum': '0xa52190', 'uniqueId': '0xc5c1c3af34d0877a896133595cdc03a2da4623e8597c7796fcd087a79f58cfc6:log:20', 'hash': '0xc5c1c3af34d0877a896133595cdc03a2da4623e8597c7796fcd087a79f58cfc6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 199846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2a51ac61da833ad80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:57.000Z'}}, {'blockNum': '0xa52190', 'uniqueId': '0x953c62e44812c94f12bdd3ebb08183f91838a698bcea030a9dab303e4ec5a09e:log:22', 'hash': '0x953c62e44812c94f12bdd3ebb08183f91838a698bcea030a9dab303e4ec5a09e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'value': 81061.92108128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x112a6023daf59b1d8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:57.000Z'}}, {'blockNum': '0xa52190', 'uniqueId': '0x39a24aabed71975d1445367a8f85028f195150d710d0c87b3b6a7d9cd3393c69:log:23', 'hash': '0x39a24aabed71975d1445367a8f85028f195150d710d0c87b3b6a7d9cd3393c69', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6a5f4b794e13220f02722641ff767b94be9c28ef', 'value': 63653.444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0d7aa8fd33998bba0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:57.000Z'}}, {'blockNum': '0xa52190', 'uniqueId': '0xfec54715e0aef60c0507d7532d5034d103e35264d9e1adfb817a9f6bd028dba9:log:24', 'hash': '0xfec54715e0aef60c0507d7532d5034d103e35264d9e1adfb817a9f6bd028dba9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4afd5c242e2b32233040b2615b8fc4ed377da78d', 'value': 102634.34336498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15bbd1a396648e9d8800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:57.000Z'}}, {'blockNum': '0xa52190', 'uniqueId': '0x3e4875343aba0c0c5b704923de9e7d22f53503dfa3ccb89a5be6faf618b33631:log:25', 'hash': '0x3e4875343aba0c0c5b704923de9e7d22f53503dfa3ccb89a5be6faf618b33631', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa8ed4fa6ae93ed029d57944d7d337743b5c1d5e4', 'value': 219081.90680001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2e64743710eb67e2e400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:57.000Z'}}, {'blockNum': '0xa52190', 'uniqueId': '0x817c818565eda669546c585eb06f7d7ce29950dddd9468a1287fb2a94598f848:log:26', 'hash': '0x817c818565eda669546c585eb06f7d7ce29950dddd9468a1287fb2a94598f848', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x806a1e9735d20872cd3d09c01e8ad09c646bffae', 'value': 41419.99774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08c561f08bfa067ec000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:57.000Z'}}, {'blockNum': '0xa52190', 'uniqueId': '0x9a4f851eaca9309a70c1f2fd3f582a3ce63af4bab9fd8788591c49e09b8cbefe:log:27', 'hash': '0x9a4f851eaca9309a70c1f2fd3f582a3ce63af4bab9fd8788591c49e09b8cbefe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x86778961cb054cc693264bf2021a4e94c61ff9f0', 'value': 83201.6284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x119e5e8b50ae143f0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:12:57.000Z'}}, {'blockNum': '0xa5219a', 'uniqueId': '0xb57db0b1270b1679047022c119a1b3fbe8908026c1ba80b9b8a5df6a5d5ad907:log:0', 'hash': '0xb57db0b1270b1679047022c119a1b3fbe8908026c1ba80b9b8a5df6a5d5ad907', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 970252.97500403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xcd7584e831962f696c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:14:29.000Z'}}, {'blockNum': '0xa5219b', 'uniqueId': '0xb61a515216ddc821a2f91c6fdbe12ee7f2a4e784691e312614d409d3931614d4:log:204', 'hash': '0xb61a515216ddc821a2f91c6fdbe12ee7f2a4e784691e312614d409d3931614d4', 'from': '0xaf81da727c50fb97e89075812bf97fee746b0193', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 10885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x024e13b864cc5ef40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:14:47.000Z'}}, {'blockNum': '0xa5219b', 'uniqueId': '0x55df4dfea853ea2126c7720bb93c043cf0348eca8e783d3d9853eb3044fb73a5:log:206', 'hash': '0x55df4dfea853ea2126c7720bb93c043cf0348eca8e783d3d9853eb3044fb73a5', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xa5faf9f887ae9266be65546d9019fd1ac6783e26', 'value': 99920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1528ac8ec926a7400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:14:47.000Z'}}, {'blockNum': '0xa5219b', 'uniqueId': '0x4ad330fb89a47b667198beb92808555b19c5d100011101a379358f96d3d5fc30:log:207', 'hash': '0x4ad330fb89a47b667198beb92808555b19c5d100011101a379358f96d3d5fc30', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x327505be3a0d6d0bec629f61b53e6fc151036314', 'value': 859289.16676796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb5f628b8d255727b7000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:14:47.000Z'}}, {'blockNum': '0xa5219d', 'uniqueId': '0x2adb48b19546d5526299ba3b832627f2b7400786e92e6822427b64c5b4eb70de:log:194', 'hash': '0x2adb48b19546d5526299ba3b832627f2b7400786e92e6822427b64c5b4eb70de', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x791524caed565978420342b9f12731f104053554', 'value': 71633.141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b3d87e2da65f88000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:15:07.000Z'}}, {'blockNum': '0xa5219d', 'uniqueId': '0xeb99e87d782cce08805a0402b490d0e2c89e2c5061946c7b369f6a1feb1bb351:log:197', 'hash': '0xeb99e87d782cce08805a0402b490d0e2c89e2c5061946c7b369f6a1feb1bb351', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 919691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xc2c08c8bf83f034c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:15:07.000Z'}}, {'blockNum': '0xa521a6', 'uniqueId': '0x174d4e62d685fc515589103bb5ab00b40f502cdfce1324eec39c5c220471cad9:log:209', 'hash': '0x174d4e62d685fc515589103bb5ab00b40f502cdfce1324eec39c5c220471cad9', 'from': '0x6fdae4c56b8d01d58d068939d5cb762b4f394d73', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 310549.1551269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x41c2e7475bf988cf8800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:17:58.000Z'}}, {'blockNum': '0xa521a9', 'uniqueId': '0xf8c62d979eefbd18254f071f2741e868f7fb74590421326a6b9ac8c44095a83d:log:84', 'hash': '0xf8c62d979eefbd18254f071f2741e868f7fb74590421326a6b9ac8c44095a83d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0e1abd55cfc466232eaa1f8636a3f0c88d362a2c', 'value': 149696.00000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1fb30952dc9bff0be400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:18:40.000Z'}}, {'blockNum': '0xa521a9', 'uniqueId': '0x4f753e1447792c88f41eee0110301662d7c30fd461ba5689efb45493f0b60c8f:log:85', 'hash': '0x4f753e1447792c88f41eee0110301662d7c30fd461ba5689efb45493f0b60c8f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 199846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2a51ac61da833ad80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:18:40.000Z'}}, {'blockNum': '0xa521a9', 'uniqueId': '0x0c224727da8934871c3463d6cd8deb9e636b79257b776f46b32a51cb28813920:log:86', 'hash': '0x0c224727da8934871c3463d6cd8deb9e636b79257b776f46b32a51cb28813920', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5309cd4fe10bb4dd369b0365aeb671e2ea9e1853', 'value': 27746.9711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x05e02a93c5b251a9c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:18:40.000Z'}}, {'blockNum': '0xa521a9', 'uniqueId': '0x4cf9f89b94bb6203f4a03f371f2a0a7f87dad5bd188a7d0fef841009ff20cd15:log:93', 'hash': '0x4cf9f89b94bb6203f4a03f371f2a0a7f87dad5bd188a7d0fef841009ff20cd15', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x99c65b30d1cab6893d5358d4543854534f68db09', 'value': 435043.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x5c1fc6ee68a1b1860000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:18:40.000Z'}}, {'blockNum': '0xa521a9', 'uniqueId': '0xbe0a88bca760dc8baa1fd5b4ff5ecb19c23552e78580d67938879f42ea3a8ec2:log:94', 'hash': '0xbe0a88bca760dc8baa1fd5b4ff5ecb19c23552e78580d67938879f42ea3a8ec2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb99e59e368bc9805195caf33cda789cbf493f751', 'value': 4999.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x010f06000983856e0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:18:40.000Z'}}, {'blockNum': '0xa521a9', 'uniqueId': '0x952d6d77642f19618e36bec10e980e4efb108159849f3ef3d13cdec815990f18:log:95', 'hash': '0x952d6d77642f19618e36bec10e980e4efb108159849f3ef3d13cdec815990f18', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6036a254f3ddb16ff67152750965028bd81389a7', 'value': 399846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x54abb1f19d1927d80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:18:40.000Z'}}, {'blockNum': '0xa521a9', 'uniqueId': '0x0c746200d48ef4ed79990761a6b3fbb01b2ee10cf7989dca330924bd3e44dcfa:log:96', 'hash': '0x0c746200d48ef4ed79990761a6b3fbb01b2ee10cf7989dca330924bd3e44dcfa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6a5f4b794e13220f02722641ff767b94be9c28ef', 'value': 87348.3101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x127f29501cc4cd294000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:18:40.000Z'}}, {'blockNum': '0xa521a9', 'uniqueId': '0x68f687efaf9bacebdef9f3a64d78f2a9246d0f9859a23e720c32f8bd2ac381de:log:241', 'hash': '0x68f687efaf9bacebdef9f3a64d78f2a9246d0f9859a23e720c32f8bd2ac381de', 'from': '0x085bc169b2f01d53f57c41de2eb21d6a6a4541eb', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 737077.55915145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x9c150df6bbf744990400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:18:40.000Z'}}, {'blockNum': '0xa521ae', 'uniqueId': '0x8785ffef7c01612e77fc398f81d7ee0767b636bd4a553f6fc069b49580114f2b:log:191', 'hash': '0x8785ffef7c01612e77fc398f81d7ee0767b636bd4a553f6fc069b49580114f2b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd09ee7b930e829ec9349a1d8fd3e6441d508a3a0', 'value': 66825.78426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e26a20dd64a6e104000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:20:26.000Z'}}, {'blockNum': '0xa521ae', 'uniqueId': '0xba7674f89d3c6d753ed45f97deb0fd052fed8d9982dcf2797e4b388894c9bc08:log:192', 'hash': '0xba7674f89d3c6d753ed45f97deb0fd052fed8d9982dcf2797e4b388894c9bc08', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5309cd4fe10bb4dd369b0365aeb671e2ea9e1853', 'value': 39577.3289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08617dc5c0dfe5644000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:20:26.000Z'}}, {'blockNum': '0xa521b0', 'uniqueId': '0xda679aadc834c8a6f3074b67035d2a2fb5bbb1b169b0775801b6c8cde7184183:log:221', 'hash': '0xda679aadc834c8a6f3074b67035d2a2fb5bbb1b169b0775801b6c8cde7184183', 'from': '0x8e976f8fdac54648119110e54336b0aba61c8d40', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 549840, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x746ee2d926d3ad400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:21:54.000Z'}}, {'blockNum': '0xa521b3', 'uniqueId': '0x0b75291642d4135e9913c936fe4b59f23c2092f7b67e5acd7fff9d52a06f95b7:log:65', 'hash': '0x0b75291642d4135e9913c936fe4b59f23c2092f7b67e5acd7fff9d52a06f95b7', 'from': '0xf3c820eecef7da3e26986800b2f3c92c27160c0d', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 118507.40910628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x19184cad5eff9f941000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:22:07.000Z'}}, {'blockNum': '0xa521b5', 'uniqueId': '0x61d0bfc160d0e94d414696563c423057122c57da3481ccf265b74fe28b2a092a:log:192', 'hash': '0x61d0bfc160d0e94d414696563c423057122c57da3481ccf265b74fe28b2a092a', 'from': '0x806a1e9735d20872cd3d09c01e8ad09c646bffae', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 41419.99774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08c561f08bfa067ec000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:22:34.000Z'}}, {'blockNum': '0xa521b5', 'uniqueId': '0x8260bb0ebd42bf4c62c0ebcc12d65d18893a3d5a4a117615b88f67ebc617b4a6:log:193', 'hash': '0x8260bb0ebd42bf4c62c0ebcc12d65d18893a3d5a4a117615b88f67ebc617b4a6', 'from': '0x86778961cb054cc693264bf2021a4e94c61ff9f0', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 83201.6284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x119e5e8b50ae143f0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:22:34.000Z'}}, {'blockNum': '0xa521b5', 'uniqueId': '0x354b851bc99f370b8f827b597cab7fd245ab6ef5503476ad45642ef35a19bee4:log:195', 'hash': '0x354b851bc99f370b8f827b597cab7fd245ab6ef5503476ad45642ef35a19bee4', 'from': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 81061.92108128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x112a6023daf59b1d8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:22:34.000Z'}}, {'blockNum': '0xa521b5', 'uniqueId': '0x99a582a5b3fabdbbf29457eb9eac6eb4c4b794c7d3a409aa055779cb11320f72:log:196', 'hash': '0x99a582a5b3fabdbbf29457eb9eac6eb4c4b794c7d3a409aa055779cb11320f72', 'from': '0xa8ed4fa6ae93ed029d57944d7d337743b5c1d5e4', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 219081.90680001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2e64743710eb67e2e400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:22:34.000Z'}}, {'blockNum': '0xa521ba', 'uniqueId': '0x8a3af5311d4bae965d5ef574e923d1a2c61b89ad0c804fc973002038309fc456:log:89', 'hash': '0x8a3af5311d4bae965d5ef574e923d1a2c61b89ad0c804fc973002038309fc456', 'from': '0x5309cd4fe10bb4dd369b0365aeb671e2ea9e1853', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 67324.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e41a8598692370e0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:23:01.000Z'}}, {'blockNum': '0xa521bb', 'uniqueId': '0x7d0ed7370344a68a73b0d93686615cae24b9fbe5f8f2e6e901920f3429e096f8:log:26', 'hash': '0x7d0ed7370344a68a73b0d93686615cae24b9fbe5f8f2e6e901920f3429e096f8', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 125768.6628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1aa1eed0b1aa7d410000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:23:12.000Z'}}, {'blockNum': '0xa521bd', 'uniqueId': '0x135efe6cfd02f2c73f640bbd073c3320fb20049f0940edcb39ae2da103816cd0:log:177', 'hash': '0x135efe6cfd02f2c73f640bbd073c3320fb20049f0940edcb39ae2da103816cd0', 'from': '0x51ab3998cc6339a1a8261b0aa55a80229867d8f1', 'to': '0x28a9f3c29244f02faadbda86ac2bd9b0a6053061', 'value': 2884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x9c578a3fe9c2900000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:23:35.000Z'}}, {'blockNum': '0xa521be', 'uniqueId': '0xc429e230afb98ef67cd9ff13452295ee68e4a9271c75b05424de774247f13770:log:110', 'hash': '0xc429e230afb98ef67cd9ff13452295ee68e4a9271c75b05424de774247f13770', 'from': '0xa5faf9f887ae9266be65546d9019fd1ac6783e26', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 99920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1528ac8ec926a7400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:24:10.000Z'}}, {'blockNum': '0xa521be', 'uniqueId': '0xeff97d50949aa1be6cba9c5b816cbb5d744a72bed2c6133291a3a6409f54e8c6:log:111', 'hash': '0xeff97d50949aa1be6cba9c5b816cbb5d744a72bed2c6133291a3a6409f54e8c6', 'from': '0x327505be3a0d6d0bec629f61b53e6fc151036314', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 859289.16676796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb5f628b8d255727b7000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:24:10.000Z'}}, {'blockNum': '0xa521c2', 'uniqueId': '0x5a7a1e4ebe4ececec8baf5bd24875f891f7ada0db1fa9cb416da4d49a5414ec8:log:157', 'hash': '0x5a7a1e4ebe4ececec8baf5bd24875f891f7ada0db1fa9cb416da4d49a5414ec8', 'from': '0x3423940069110f235a4c3e1112abe0246170903b', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 919691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xc2c08c8bf83f034c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:24:44.000Z'}}, {'blockNum': '0xa521cb', 'uniqueId': '0x6416b5a61f0454820f600263677a8acac1d6db18f0054b6443a56161cd566abe:log:88', 'hash': '0x6416b5a61f0454820f600263677a8acac1d6db18f0054b6443a56161cd566abe', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x8354cfd898a0fb0fcab26170069929ce9fb19a0a', 'value': 859129.20472285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb5ed7ccd79d24bebd400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:27:15.000Z'}}, {'blockNum': '0xa521cb', 'uniqueId': '0x9e8e963900e826b2a2fd1574c649d0b860574178680bc0b2fad4cc34e0be77d8:log:198', 'hash': '0x9e8e963900e826b2a2fd1574c649d0b860574178680bc0b2fad4cc34e0be77d8', 'from': '0x4afd5c242e2b32233040b2615b8fc4ed377da78d', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 102634.34336498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15bbd1a396648e9d8800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:27:15.000Z'}}, {'blockNum': '0xa521cf', 'uniqueId': '0x637030f3d7f998c5284cba5e916d41c56d4db74a9727bef558d7369bd117a12f:log:27', 'hash': '0x637030f3d7f998c5284cba5e916d41c56d4db74a9727bef558d7369bd117a12f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2e82ef5965cccedb31f5e08c26d59c75d5b1f7e5', 'value': 986505.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xd0e68b74f51a009d4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:27:48.000Z'}}, {'blockNum': '0xa521cf', 'uniqueId': '0x9347dae60aa20a65e91fc4631f73765e3c4dd4cc99785d4431f9ac02ec43e1c0:log:65', 'hash': '0x9347dae60aa20a65e91fc4631f73765e3c4dd4cc99785d4431f9ac02ec43e1c0', 'from': '0x6036a254f3ddb16ff67152750965028bd81389a7', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 399846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x54abb1f19d1927d80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:27:48.000Z'}}, {'blockNum': '0xa521cf', 'uniqueId': '0x012e8ad08a8d85a635bbc0323619a4266ccebd4edacd0dc0195df82288287e01:log:66', 'hash': '0x012e8ad08a8d85a635bbc0323619a4266ccebd4edacd0dc0195df82288287e01', 'from': '0x6a5f4b794e13220f02722641ff767b94be9c28ef', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 151001.7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1ff9d24d505e58e34000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:27:48.000Z'}}, {'blockNum': '0xa521cf', 'uniqueId': '0x98812eae8dcdac3ee032349e066872a634740977c72e1330543055e7ade7aac5:log:67', 'hash': '0x98812eae8dcdac3ee032349e066872a634740977c72e1330543055e7ade7aac5', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 399692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x54a358c3b50675b00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:27:48.000Z'}}, {'blockNum': '0xa521cf', 'uniqueId': '0x7f7221ea5969cbeab3c55d5a3663cc8f95ecce5f2c7a883eafc6815d0830e298:log:69', 'hash': '0x7f7221ea5969cbeab3c55d5a3663cc8f95ecce5f2c7a883eafc6815d0830e298', 'from': '0x0e1abd55cfc466232eaa1f8636a3f0c88d362a2c', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 149696.00000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1fb30952dc9bff0be400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:27:48.000Z'}}, {'blockNum': '0xa521d0', 'uniqueId': '0x1c4273840681856dceb498243d8ef7de62a0cccaf339adac9b5fc3ffc20f7278:log:41', 'hash': '0x1c4273840681856dceb498243d8ef7de62a0cccaf339adac9b5fc3ffc20f7278', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x30716256c590991775a48ab28dd4b899d6c95031', 'value': 375209.95322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x4f742c1d3a0ee9d04000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:27:53.000Z'}}, {'blockNum': '0xa521d1', 'uniqueId': '0x141b1d9a24129b53cc8b968ff256e02a4cd03da491651a74c98949517fb4b4af:log:187', 'hash': '0x141b1d9a24129b53cc8b968ff256e02a4cd03da491651a74c98949517fb4b4af', 'from': '0xd09ee7b930e829ec9349a1d8fd3e6441d508a3a0', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 66825.78426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0e26a20dd64a6e104000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:28:09.000Z'}}, {'blockNum': '0xa521d6', 'uniqueId': '0xee995065ecf26630bc736c009e20f5713798e2658903b27327d24bbf6adced32:log:88', 'hash': '0xee995065ecf26630bc736c009e20f5713798e2658903b27327d24bbf6adced32', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 173903.858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x24d358d71cdf25250000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:29:48.000Z'}}, {'blockNum': '0xa521d9', 'uniqueId': '0xb37ffc5a3bbca52e9b1fe9a922932ed60653e8b65f7100a78fd84330aaf4f731:log:73', 'hash': '0xb37ffc5a3bbca52e9b1fe9a922932ed60653e8b65f7100a78fd84330aaf4f731', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x36d80d5cbbdb00f5d265587e8f062fce81e54dcd', 'value': 199840.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2a515982d2e6a6994000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:30:18.000Z'}}, {'blockNum': '0xa521d9', 'uniqueId': '0x5939efa168fb154dcda3cc3b92bc1a2075ca142086c587f3ffc51ee598d9520c:log:86', 'hash': '0x5939efa168fb154dcda3cc3b92bc1a2075ca142086c587f3ffc51ee598d9520c', 'from': '0x8354cfd898a0fb0fcab26170069929ce9fb19a0a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2259770.04493033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x01de86612d914e9ff28400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:30:18.000Z'}}, {'blockNum': '0xa521d9', 'uniqueId': '0xf9001527015e1f9e5b3ad1eacf452bfd4a7210cbeda763c9213a30df4bbe7fad:log:97', 'hash': '0xf9001527015e1f9e5b3ad1eacf452bfd4a7210cbeda763c9213a30df4bbe7fad', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 499000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x69aad81db8b0f1e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:30:18.000Z'}}, {'blockNum': '0xa521d9', 'uniqueId': '0x3ca83f34f084262a0f554e557ae98f39d48a91860477d63e8adbe06622765e39:log:99', 'hash': '0x3ca83f34f084262a0f554e557ae98f39d48a91860477d63e8adbe06622765e39', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 794457.7168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa83ba39db437acc40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:30:18.000Z'}}, {'blockNum': '0xa521d9', 'uniqueId': '0x4116b3dc84dd501319082c85ad5ad663293e08289658e804f6d298c0b3fd509e:log:107', 'hash': '0x4116b3dc84dd501319082c85ad5ad663293e08289658e804f6d298c0b3fd509e', 'from': '0xc4441893f33c073e0397867d8f431c0d3d77c114', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 259825.7787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x37052f0617ace3bcc000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:30:18.000Z'}}, {'blockNum': '0xa521d9', 'uniqueId': '0xaa9da5c748c97e635fc8f92eaa6b92580b3494623458efe42c755744243101db:log:117', 'hash': '0xaa9da5c748c97e635fc8f92eaa6b92580b3494623458efe42c755744243101db', 'from': '0x30716256c590991775a48ab28dd4b899d6c95031', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 579803.87282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x7ac73b1dfd36f7674000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:30:18.000Z'}}, {'blockNum': '0xa521da', 'uniqueId': '0x160c7137542b90f0c0939fc6633138666530955ff8c9bf210e73312730e1765d:log:146', 'hash': '0x160c7137542b90f0c0939fc6633138666530955ff8c9bf210e73312730e1765d', 'from': '0x791524caed565978420342b9f12731f104053554', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 71633.141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0f2b3d87e2da65f88000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:30:48.000Z'}}, {'blockNum': '0xa521de', 'uniqueId': '0xf0f5e38c5eb82275cb54c31080a133cb2f2920c6d77c88acf660e06cb9adde80:log:28', 'hash': '0xf0f5e38c5eb82275cb54c31080a133cb2f2920c6d77c88acf660e06cb9adde80', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 99800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15222b3924f030600000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:31:30.000Z'}}, {'blockNum': '0xa521e1', 'uniqueId': '0xae47436ff378bb7a696a96945935ab2df3765ea7f7a1cc9437e953c44f89ab2a:log:78', 'hash': '0xae47436ff378bb7a696a96945935ab2df3765ea7f7a1cc9437e953c44f89ab2a', 'from': '0x28a9f3c29244f02faadbda86ac2bd9b0a6053061', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 2884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x9c578a3fe9c2900000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:31:55.000Z'}}, {'blockNum': '0xa521e6', 'uniqueId': '0x1a41b26190d8a4d4486b64bd77a26757237228a1e3b575bdbcd373aa420c67ef:log:25', 'hash': '0x1a41b26190d8a4d4486b64bd77a26757237228a1e3b575bdbcd373aa420c67ef', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x36d80d5cbbdb00f5d265587e8f062fce81e54dcd', 'value': 200435.37514678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2a719f9affdd9c741800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:32:45.000Z'}}, {'blockNum': '0xa521e6', 'uniqueId': '0xa26051d78690d7ae2be941e7a742a393d79a3141c5e0508704bdefa9d05eec90:log:91', 'hash': '0xa26051d78690d7ae2be941e7a742a393d79a3141c5e0508704bdefa9d05eec90', 'from': '0x99c65b30d1cab6893d5358d4543854534f68db09', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 435043.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x5c1fc6ee68a1b1860000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:32:45.000Z'}}, {'blockNum': '0xa521e7', 'uniqueId': '0xc7136b714d7293f4e0cda0ecfb8acb50a2ece24efbdbad4431df19c0f57067c6:log:0', 'hash': '0xc7136b714d7293f4e0cda0ecfb8acb50a2ece24efbdbad4431df19c0f57067c6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x5aa8cf233e40e08fbe99095c35e1b68d5550c1fa', 'value': 251200.50431274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x35319b4bcb1fe8676800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:32:57.000Z'}}, {'blockNum': '0xa521ea', 'uniqueId': '0x993b8feacad2da0404165ca2861ae6c093c3bb198fca697573c91379380e274c:log:24', 'hash': '0x993b8feacad2da0404165ca2861ae6c093c3bb198fca697573c91379380e274c', 'from': '0x2e82ef5965cccedb31f5e08c26d59c75d5b1f7e5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 986505.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xd0e68b74f51a009d4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:33:15.000Z'}}, {'blockNum': '0xa521f3', 'uniqueId': '0x75ae84648241834f0ceded8e6b7e1d964f473896bfceedc614d3f39364cb3dd1:log:62', 'hash': '0x75ae84648241834f0ceded8e6b7e1d964f473896bfceedc614d3f39364cb3dd1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x769c7a35d08e8d49252bcfc987f4248bc75e0bbf', 'value': 14446.79192249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x030f2983471edf0fc400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:34:49.000Z'}}, {'blockNum': '0xa52202', 'uniqueId': '0xcdbf8b422c87872c1042e7195b8530e47795492e2842090f8a095116d0e52376:log:198', 'hash': '0xcdbf8b422c87872c1042e7195b8530e47795492e2842090f8a095116d0e52376', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x26aa2e1c7723e259add8da7df660880b81c7d8c1', 'value': 59720.0289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0ca56de39246b2224000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:37:37.000Z'}}, {'blockNum': '0xa52207', 'uniqueId': '0x8e8bb0096b07cb9734888c5f391148378ec983dce27447672ea50c3e6fd876ef:log:191', 'hash': '0x8e8bb0096b07cb9734888c5f391148378ec983dce27447672ea50c3e6fd876ef', 'from': '0x26aa2e1c7723e259add8da7df660880b81c7d8c1', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 59720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0ca56d7ce5e118200000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:39:27.000Z'}}, {'blockNum': '0xa5220f', 'uniqueId': '0xa475fcff6bf4f112ec8ec23e3a89228d5e39f5b25b7bbb7ceafb9bb7c78ff66b:log:86', 'hash': '0xa475fcff6bf4f112ec8ec23e3a89228d5e39f5b25b7bbb7ceafb9bb7c78ff66b', 'from': '0x769c7a35d08e8d49252bcfc987f4248bc75e0bbf', 'to': '0x986a2fca9eda0e06fbf7839b89bfc006ee2a23dd', 'value': 14446.79192249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x030f2983471edf0fc400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:40:56.000Z'}}, {'blockNum': '0xa52214', 'uniqueId': '0xbd1403841c4dbd2cbe9e83ede49adc9ad2d268feadc48cadffc951dee0ccff3b:log:74', 'hash': '0xbd1403841c4dbd2cbe9e83ede49adc9ad2d268feadc48cadffc951dee0ccff3b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 100255.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x153ae23b48edc7f08000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:42:06.000Z'}}, {'blockNum': '0xa52239', 'uniqueId': '0x9baaeaf487a3cee65b81078150bc948d34cc0f08ec9cb0fe2bc7f106b64ad947:log:58', 'hash': '0x9baaeaf487a3cee65b81078150bc948d34cc0f08ec9cb0fe2bc7f106b64ad947', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 100255.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x153ae23b48edc7f08000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:51:51.000Z'}}, {'blockNum': '0xa5223b', 'uniqueId': '0xd629f4408f5e158600453763ee85bd6f491b2b83a34fb884b5684b5943fb26ae:log:61', 'hash': '0xd629f4408f5e158600453763ee85bd6f491b2b83a34fb884b5684b5943fb26ae', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 159613.05024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x21cca40ae718a1580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:52:38.000Z'}}, {'blockNum': '0xa5224f', 'uniqueId': '0xf600d5ea318c0c3db78921226a19ffef0e477a40755b3f2a6c57d1f118a5e9a9:log:24', 'hash': '0xf600d5ea318c0c3db78921226a19ffef0e477a40755b3f2a6c57d1f118a5e9a9', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x0627d157e611a31ed86a74ad59ab9b0783e4c22a', 'value': 37220.61526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x07e1bbccf7b2d791c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:55:50.000Z'}}, {'blockNum': '0xa52252', 'uniqueId': '0x1b766a25e26caf4a74d302c73c0955055a596e2539ad4c2370d4b46c5c17557d:log:19', 'hash': '0x1b766a25e26caf4a74d302c73c0955055a596e2539ad4c2370d4b46c5c17557d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 99000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14f6ccfe338517e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:56:11.000Z'}}, {'blockNum': '0xa52253', 'uniqueId': '0x5c63a72d1e2ccac42c8e34ad4cc40a716c5d4dfc04a2f16d94e49b22d67b11f8:log:9', 'hash': '0x5c63a72d1e2ccac42c8e34ad4cc40a716c5d4dfc04a2f16d94e49b22d67b11f8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 718451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x98234e873f7649ec0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:56:33.000Z'}}, {'blockNum': '0xa5225b', 'uniqueId': '0x4386267bdfb1d5513068f0a1a2b6ad03db41f332df1db1a3864cd243a32aa694:log:119', 'hash': '0x4386267bdfb1d5513068f0a1a2b6ad03db41f332df1db1a3864cd243a32aa694', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x5aa8cf233e40e08fbe99095c35e1b68d5550c1fa', 'value': 147400.1385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1f3693d84e5887844000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T16:58:34.000Z'}}, {'blockNum': '0xa52266', 'uniqueId': '0x32290f7c4f46ed20c0b2acdb1ae094e5512dc0f373764bb4b7a9e7b1e71aeed5:log:96', 'hash': '0x32290f7c4f46ed20c0b2acdb1ae094e5512dc0f373764bb4b7a9e7b1e71aeed5', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 718451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x98234e873f7649ec0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T17:00:15.000Z'}}, {'blockNum': '0xa52266', 'uniqueId': '0x7be2c507b4cd34ce690e6cbbd085fdbfcbf0494859508dca25797a065a967ad0:log:116', 'hash': '0x7be2c507b4cd34ce690e6cbbd085fdbfcbf0494859508dca25797a065a967ad0', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 705000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x954a20678dea16a00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T17:00:15.000Z'}}, {'blockNum': '0xa52266', 'uniqueId': '0x0b43342ce55e438a45abbcfeca1578a5999a0ae46b9d9c711e5eb7260511dfb3:log:120', 'hash': '0x0b43342ce55e438a45abbcfeca1578a5999a0ae46b9d9c711e5eb7260511dfb3', 'from': '0x5aa8cf233e40e08fbe99095c35e1b68d5550c1fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 398600.64281274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x54682f2419786feba800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T17:00:15.000Z'}}, {'blockNum': '0xa52266', 'uniqueId': '0x668d6e77ec440d2d81dcc8c7b592e0f5e85f87ebc8783fb7eb4dc266f10e7b47:log:124', 'hash': '0x668d6e77ec440d2d81dcc8c7b592e0f5e85f87ebc8783fb7eb4dc266f10e7b47', 'from': '0x36d80d5cbbdb00f5d265587e8f062fce81e54dcd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 400275.40364678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x54c2f91dd2c4430d5800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T17:00:15.000Z'}}, {'blockNum': '0xa522ca', 'uniqueId': '0x5f3bdbd94f5fecb74c20ecd8da17d70c0bedc38d7f211d4a914be153ac522961:log:62', 'hash': '0x5f3bdbd94f5fecb74c20ecd8da17d70c0bedc38d7f211d4a914be153ac522961', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 808031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xab1b72c29847ee1c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T17:21:54.000Z'}}, {'blockNum': '0xa522f9', 'uniqueId': '0xcfff5bf3c06be919ee029f397f47d70157cce8a958568ebc87b087a5c3115d18:log:94', 'hash': '0xcfff5bf3c06be919ee029f397f47d70157cce8a958568ebc87b087a5c3115d18', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2067336.3769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x01b5c68790e4fdd0f84000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T17:30:19.000Z'}}, {'blockNum': '0xa522f9', 'uniqueId': '0x0a72d5d5cff5f6353f0b72c9094628e008a762ee56c4e21f2c77aab18c9c8929:log:203', 'hash': '0x0a72d5d5cff5f6353f0b72c9094628e008a762ee56c4e21f2c77aab18c9c8929', 'from': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1446177.6309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x01323d724b46134caf4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T17:30:19.000Z'}}, {'blockNum': '0xa52304', 'uniqueId': '0x9d284d156bdb04c6cf53c25d929ac14cf7d031b1d3164b5f08469bb330e9027c:log:63', 'hash': '0x9d284d156bdb04c6cf53c25d929ac14cf7d031b1d3164b5f08469bb330e9027c', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 111721.5023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x17a86f4d6ff646b1c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T17:32:21.000Z'}}, {'blockNum': '0xa5232a', 'uniqueId': '0xaeaae3ee5cd5bb8c429e5b24b59f5ff5d63f5816e8ad85cbffc337089d288034:log:78', 'hash': '0xaeaae3ee5cd5bb8c429e5b24b59f5ff5d63f5816e8ad85cbffc337089d288034', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 172856.2017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x249a8db03ebe1d124000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T17:40:43.000Z'}}, {'blockNum': '0xa52382', 'uniqueId': '0x087720d1235912133e58477e0f25459b04080e3cc3a9101146a07f70a8c6e5cb:log:54', 'hash': '0x087720d1235912133e58477e0f25459b04080e3cc3a9101146a07f70a8c6e5cb', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1770156.97493162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0176d866e276b3d9956800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:00:12.000Z'}}, {'blockNum': '0xa5238b', 'uniqueId': '0xa5d3ed96227fbe1a564a5aeb69a0dd30268378da9c2a5ed88a0cdae7c3eb1cee:log:150', 'hash': '0xa5d3ed96227fbe1a564a5aeb69a0dd30268378da9c2a5ed88a0cdae7c3eb1cee', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0x9e927c44dac4bbeaad1fe9ae2b4f5f8fa77e7aee', 'value': 150863.83247148822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1ff2584141fa2866c998', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:01:55.000Z'}}, {'blockNum': '0xa523a8', 'uniqueId': '0x1d23456e4bbc8965d8b5720cf7d2406000bc8f9d69763bb1003a8ee018aee6ce:log:207', 'hash': '0x1d23456e4bbc8965d8b5720cf7d2406000bc8f9d69763bb1003a8ee018aee6ce', 'from': '0x167a9333bf582556f35bd4d16a7e80e191aa6476', 'to': '0x7dc7123f0a92d972ad025daae11ccac1e8b11fb1', 'value': 59407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0c9475bd84396edc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:09:30.000Z'}}, {'blockNum': '0xa523a9', 'uniqueId': '0xffd68e8b0f585f6cc5fa34a3896b30a06651afffd6056464575d4baf1eba3d33:log:9', 'hash': '0xffd68e8b0f585f6cc5fa34a3896b30a06651afffd6056464575d4baf1eba3d33', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xf0a06b2ba90670514b3c72d9703710cf61b28a62', 'value': 14529.51496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0313a5868b7353ed0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:10:00.000Z'}}, {'blockNum': '0xa523cd', 'uniqueId': '0xe8cd6e0ea01109d6fb6483fb5208ca3b74ce9597ed06406a2d98ec6efc18654f:log:5', 'hash': '0xe8cd6e0ea01109d6fb6483fb5208ca3b74ce9597ed06406a2d98ec6efc18654f', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 1028580.86635952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xd9cf7b01aafde670c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:18:35.000Z'}}, {'blockNum': '0xa523dd', 'uniqueId': '0xd4afaae45d43ce9190739020543c8d4462a6abe992e123f2bcb5080e4da99527:log:165', 'hash': '0xd4afaae45d43ce9190739020543c8d4462a6abe992e123f2bcb5080e4da99527', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd81411d334a2edb6cd18a0fbe51b706222d656bb', 'value': 100242.5595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x153a28f8556852dcc000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:21:46.000Z'}}, {'blockNum': '0xa523ff', 'uniqueId': '0x5ff0f6341aa6873ec888cdde720fc441f201020f9d200693b34b9e0a493cc46e:log:113', 'hash': '0x5ff0f6341aa6873ec888cdde720fc441f201020f9d200693b34b9e0a493cc46e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 671866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x8e45edc8855ec5a80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:29:45.000Z'}}, {'blockNum': '0xa523ff', 'uniqueId': '0x672c5b347b1f2efeb4ed14614421d0ca6b5ba267e5b6a2e79265fbb0835ebc8f:log:156', 'hash': '0x672c5b347b1f2efeb4ed14614421d0ca6b5ba267e5b6a2e79265fbb0835ebc8f', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 808031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xab1b72c29847ee1c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:29:45.000Z'}}, {'blockNum': '0xa523ff', 'uniqueId': '0xef8d7c23dbd50e4b7b9e3aeed0b10d911f31d71265352607fd425a82b2fbbf61:log:159', 'hash': '0xef8d7c23dbd50e4b7b9e3aeed0b10d911f31d71265352607fd425a82b2fbbf61', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1028580.86635952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xd9cf7b01aafde670c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:29:45.000Z'}}, {'blockNum': '0xa52405', 'uniqueId': '0xec77da59a43ef875f902be14a505311cb4a9288bb2e5c5325c663e9d0465e1e4:log:97', 'hash': '0xec77da59a43ef875f902be14a505311cb4a9288bb2e5c5325c663e9d0465e1e4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd81411d334a2edb6cd18a0fbe51b706222d656bb', 'value': 15922.2077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x035f250517ad99614000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:32:00.000Z'}}, {'blockNum': '0xa5240f', 'uniqueId': '0x842078bf0d139875f745e0c742397570129e54a3477dbba9da1813a44a47c9f7:log:74', 'hash': '0x842078bf0d139875f745e0c742397570129e54a3477dbba9da1813a44a47c9f7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'value': 223203.55331274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2f43e38d02d40f11e800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:34:14.000Z'}}, {'blockNum': '0xa5240f', 'uniqueId': '0x6adb9c4b6c224b095eb0fe6f85f7e78aa50071d2b838baebf60b3369c3e6184b:log:75', 'hash': '0x6adb9c4b6c224b095eb0fe6f85f7e78aa50071d2b838baebf60b3369c3e6184b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:34:14.000Z'}}, {'blockNum': '0xa52410', 'uniqueId': '0xf8c0516b9eb9de6bdb7e5f5478c68efb2c48176414040d5abf5853ff96de791e:log:44', 'hash': '0xf8c0516b9eb9de6bdb7e5f5478c68efb2c48176414040d5abf5853ff96de791e', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x8c5c5affd146bca03510cbd1520a6a30eac73935', 'value': 182121.72727272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2690d6afb045e672a000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:34:55.000Z'}}, {'blockNum': '0xa52423', 'uniqueId': '0x30d742f2fbc2c2128a03c3ca11ad6f2bacd8e7654f9d81cf0107ff2bb2064c86:log:80', 'hash': '0x30d742f2fbc2c2128a03c3ca11ad6f2bacd8e7654f9d81cf0107ff2bb2064c86', 'from': '0x3423940069110f235a4c3e1112abe0246170903b', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 671866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x8e45edc8855ec5a80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:39:06.000Z'}}, {'blockNum': '0xa5242e', 'uniqueId': '0xa2d74607ddffa8b7eee4ff268cb0198c3d48cae7e11c73abb66227ddcfdde6f1:log:32', 'hash': '0xa2d74607ddffa8b7eee4ff268cb0198c3d48cae7e11c73abb66227ddcfdde6f1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 37670910.320890926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1f292023f5e56b51a4d119', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:41:49.000Z'}}, {'blockNum': '0xa5242f', 'uniqueId': '0xe7646e9d06558b2f76e645db3fd74cc344ea481d3059ebcfdecbd2b7c2c66a8a:log:38', 'hash': '0xe7646e9d06558b2f76e645db3fd74cc344ea481d3059ebcfdecbd2b7c2c66a8a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:42:02.000Z'}}, {'blockNum': '0xa52432', 'uniqueId': '0xf46e5a5bcd4d2bde0db67c329f3eeeaee77471ba7f6d88c120a4d52b1ff2c638:log:216', 'hash': '0xf46e5a5bcd4d2bde0db67c329f3eeeaee77471ba7f6d88c120a4d52b1ff2c638', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:42:42.000Z'}}, {'blockNum': '0xa52432', 'uniqueId': '0x4c9a188ed3ca469a9bcf8801747f48e13ff53ca47bcc5cf86d5a7c261679adc1:log:218', 'hash': '0x4c9a188ed3ca469a9bcf8801747f48e13ff53ca47bcc5cf86d5a7c261679adc1', 'from': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 223203.55331274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2f43e38d02d40f11e800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:42:42.000Z'}}, {'blockNum': '0xa52434', 'uniqueId': '0x35c1fadb0b0aa3db49e09086203800dcda7e3a6aabdf75b174b651e2f9cb5ba8:log:91', 'hash': '0x35c1fadb0b0aa3db49e09086203800dcda7e3a6aabdf75b174b651e2f9cb5ba8', 'from': '0x8c5c5affd146bca03510cbd1520a6a30eac73935', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 182121.72727272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2690d6afb045e672a000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:43:07.000Z'}}, {'blockNum': '0xa5244a', 'uniqueId': '0x21bb717aa61d6932dc4440dcaf22e13220d5ecf9324809336bd9fe30c17e7f51:log:46', 'hash': '0x21bb717aa61d6932dc4440dcaf22e13220d5ecf9324809336bd9fe30c17e7f51', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 632464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x85edf130261d00400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:48:50.000Z'}}, {'blockNum': '0xa5245c', 'uniqueId': '0xfa6f09ad0b68367d0906109f5e4a792b773aaff6b5a85c90ad2e400b62427ad0:log:128', 'hash': '0xfa6f09ad0b68367d0906109f5e4a792b773aaff6b5a85c90ad2e400b62427ad0', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:51:36.000Z'}}, {'blockNum': '0xa52464', 'uniqueId': '0x3c924befb5b813e9853a1a6ea645c59474885739427e2a8083ba746e21baa940:log:21', 'hash': '0x3c924befb5b813e9853a1a6ea645c59474885739427e2a8083ba746e21baa940', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:53:20.000Z'}}, {'blockNum': '0xa5246e', 'uniqueId': '0x4d3b3aa6ec39e6954308c0f3b4dc01c2d3cd0a02247b5c13d1f0f834d209b040:log:71', 'hash': '0x4d3b3aa6ec39e6954308c0f3b4dc01c2d3cd0a02247b5c13d1f0f834d209b040', 'from': '0x3423940069110f235a4c3e1112abe0246170903b', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 632464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x85edf130261d00400000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:54:58.000Z'}}, {'blockNum': '0xa52488', 'uniqueId': '0x7198be20cd9219257e30d1ec3cbb4cfae769228e501a1622cb799028fc1499b2:log:110', 'hash': '0x7198be20cd9219257e30d1ec3cbb4cfae769228e501a1622cb799028fc1499b2', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T18:59:46.000Z'}}, {'blockNum': '0xa52491', 'uniqueId': '0xfebb3eb916f80ff54e553edf0a4896e53be69c801e42c6f2233ef6e3191d1025:log:68', 'hash': '0xfebb3eb916f80ff54e553edf0a4896e53be69c801e42c6f2233ef6e3191d1025', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:00:56.000Z'}}, {'blockNum': '0xa524b4', 'uniqueId': '0x98a23fdfbba1148e0d2645e69bff89aa4c25c1719ca187579353e7f495d8bfc0:log:61', 'hash': '0x98a23fdfbba1148e0d2645e69bff89aa4c25c1719ca187579353e7f495d8bfc0', 'from': '0xc7807e24338b41a34d849492920f2b9d0e4de2cd', 'to': '0xb71ffd9d54583f9d60f49878e10383a0d8d37b69', 'value': 239014.84426122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x329d054aa4a94294e800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:09:35.000Z'}}, {'blockNum': '0xa524b4', 'uniqueId': '0x222bdc355e7bf985b3734b3713f7c0c2dd6b056e446739652814f26561516915:log:94', 'hash': '0x222bdc355e7bf985b3734b3713f7c0c2dd6b056e446739652814f26561516915', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb5e88f5315f72aa9d55229b1969a15e35dbcaae3', 'value': 186825.17388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x278fd01ec9aa830f8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:09:35.000Z'}}, {'blockNum': '0xa524b5', 'uniqueId': '0x31d82675b72711a790398bfc1f49d2a66c41560e9e01697ba5d211ba8848daba:log:160', 'hash': '0x31d82675b72711a790398bfc1f49d2a66c41560e9e01697ba5d211ba8848daba', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:10:28.000Z'}}, {'blockNum': '0xa524bc', 'uniqueId': '0xd4d8c3a0fc19a13d3e0e9a979b988769161e7aa734a81643e17c0b8dce9fe344:log:23', 'hash': '0xd4d8c3a0fc19a13d3e0e9a979b988769161e7aa734a81643e17c0b8dce9fe344', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:12:21.000Z'}}, {'blockNum': '0xa524d7', 'uniqueId': '0x4251c1283d92caecc032178d4f5904cdc3893b29ddcceb4c95213ab0db532403:log:242', 'hash': '0x4251c1283d92caecc032178d4f5904cdc3893b29ddcceb4c95213ab0db532403', 'from': '0xb71ffd9d54583f9d60f49878e10383a0d8d37b69', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 239014.84426122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x329d054aa4a94294e800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:19:10.000Z'}}, {'blockNum': '0xa524d7', 'uniqueId': '0xcc3e6731ba5d0724f64ed1ee5fb0768da09049ad174bf3fc41e026bd95672d23:log:244', 'hash': '0xcc3e6731ba5d0724f64ed1ee5fb0768da09049ad174bf3fc41e026bd95672d23', 'from': '0xb5e88f5315f72aa9d55229b1969a15e35dbcaae3', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 186825.17388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x278fd01ec9aa830f8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:19:10.000Z'}}, {'blockNum': '0xa524df', 'uniqueId': '0x342991f1dedca06132fa161bd45beb7919fb7ba70c4399a4b65ea14a5ea8ee82:log:204', 'hash': '0x342991f1dedca06132fa161bd45beb7919fb7ba70c4399a4b65ea14a5ea8ee82', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b83e069dac87180000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:20:26.000Z'}}, {'blockNum': '0xa524f6', 'uniqueId': '0x5d7946e7a5075a5e2093065fd1b834406a79df9e390d158c9ca8cb81f3bd6aeb:log:32', 'hash': '0x5d7946e7a5075a5e2093065fd1b834406a79df9e390d158c9ca8cb81f3bd6aeb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x03a0438d7c5fcf0ad9ed974962e97522b6680d01', 'value': 42168.2354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08edf1d2b769e4008000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:24:51.000Z'}}, {'blockNum': '0xa524f6', 'uniqueId': '0x0cd8c46c1f052a0ffe2c1ed517138a3418bb5487acae31ecf166f3b8cdb81259:log:220', 'hash': '0x0cd8c46c1f052a0ffe2c1ed517138a3418bb5487acae31ecf166f3b8cdb81259', 'from': '0x847dea517d0d061342f13c13dc44b25d5675cb90', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 172912.42658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x249d99f72535e0094000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:24:51.000Z'}}, {'blockNum': '0xa524ff', 'uniqueId': '0x2a903272e974c8e8562f6762217b44f7c2a0bb67e2c13696974ce47c6e21d423:log:99', 'hash': '0x2a903272e974c8e8562f6762217b44f7c2a0bb67e2c13696974ce47c6e21d423', 'from': '0x03a0438d7c5fcf0ad9ed974962e97522b6680d01', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 42168.2354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x08edf1d2b769e4008000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:27:28.000Z'}}, {'blockNum': '0xa52510', 'uniqueId': '0x8665375eec9fbb3fb3f4e56a71488260c9ab28074d4d84da9555e1e6e29e5687:log:24', 'hash': '0x8665375eec9fbb3fb3f4e56a71488260c9ab28074d4d84da9555e1e6e29e5687', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'value': 1030245.99998773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60af97bcda3400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:32:14.000Z'}}, {'blockNum': '0xa52515', 'uniqueId': '0x3862d037511dd366e70e1e219ba4b5f6d01301d9ae04f1ce7cbac0df4eab3aee:log:55', 'hash': '0x3862d037511dd366e70e1e219ba4b5f6d01301d9ae04f1ce7cbac0df4eab3aee', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xcea4e535d03086dbaa04c71675129654e92cc055', 'value': 65852.7272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0df1e22cb5b2b01a0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:34:47.000Z'}}, {'blockNum': '0xa52525', 'uniqueId': '0x81902872675eef214a01cf8ad635484b89b6ccdbd458b8b649c0eeaa26177c7d:log:1', 'hash': '0x81902872675eef214a01cf8ad635484b89b6ccdbd458b8b649c0eeaa26177c7d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd252db04b58f4406db5671296564a54355227ab2', 'value': 186665.1985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x27872404112456ee4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:37:29.000Z'}}, {'blockNum': '0xa52535', 'uniqueId': '0xd389c23a214007bbe13604c2bcfa69c14b431c090544599aef6225abc8c2a6c3:log:75', 'hash': '0xd389c23a214007bbe13604c2bcfa69c14b431c090544599aef6225abc8c2a6c3', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xfe22dc8a10cd4055239d4c314df55278142a5471', 'value': 22114.54274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x04aed4ee7e2935ad4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:39:10.000Z'}}, {'blockNum': '0xa52536', 'uniqueId': '0xdb184c8da7d208889a268c90f4dc78f6d41c12a8dab29a203e6d319fa9c17110:log:124', 'hash': '0xdb184c8da7d208889a268c90f4dc78f6d41c12a8dab29a203e6d319fa9c17110', 'from': '0xcea4e535d03086dbaa04c71675129654e92cc055', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 65852.7272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0df1e22cb5b2b01a0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:39:49.000Z'}}, {'blockNum': '0xa52536', 'uniqueId': '0xe3ac6a104bea6974ddfc9c8588f83f15f41676b3186d94ff919165b1256b34f0:log:256', 'hash': '0xe3ac6a104bea6974ddfc9c8588f83f15f41676b3186d94ff919165b1256b34f0', 'from': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99998773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60af97bcda3400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:39:49.000Z'}}, {'blockNum': '0xa52538', 'uniqueId': '0x86c016039f80c1d088df35bbf375766681c84ae0bcaacb765bf980ec11b6a9dd:log:2', 'hash': '0x86c016039f80c1d088df35bbf375766681c84ae0bcaacb765bf980ec11b6a9dd', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1030245.99998773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60af97bcda3400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:40:04.000Z'}}, {'blockNum': '0xa52582', 'uniqueId': '0xa1589ffb80ca199572f397284f343532ff19253d0a4cfdce5ca6ec32b9e21245:log:44', 'hash': '0xa1589ffb80ca199572f397284f343532ff19253d0a4cfdce5ca6ec32b9e21245', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99991085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa35e4146b1400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:56:38.000Z'}}, {'blockNum': '0xa52584', 'uniqueId': '0x748f30a05130731df102f849a8b4bc7127bab7f6018a33b43d0261d3f073423a:log:23', 'hash': '0x748f30a05130731df102f849a8b4bc7127bab7f6018a33b43d0261d3f073423a', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xeca53f38dd5c31f421fd047ca6c92fe1a722a1a3', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x084231b97924ea600000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T19:57:02.000Z'}}, {'blockNum': '0xa52595', 'uniqueId': '0xd092c5cb48b51682350244d08508d448eb6576466ed0ab6cdb35546f9f6193c3:log:65', 'hash': '0xd092c5cb48b51682350244d08508d448eb6576466ed0ab6cdb35546f9f6193c3', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 128795.7214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1b4607b1305278838000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:01:38.000Z'}}, {'blockNum': '0xa525b5', 'uniqueId': '0x029bc8d1b94b391c43505184b1fd22cf2f903392ded807a37ca6c0b1e14d5249:log:10', 'hash': '0x029bc8d1b94b391c43505184b1fd22cf2f903392ded807a37ca6c0b1e14d5249', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 712009.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x96c61636fb3d679d4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:07:25.000Z'}}, {'blockNum': '0xa525d0', 'uniqueId': '0xd9b5df9412763a017358b604a89a3b256288baacc70df831d76d57dd80436121:log:5', 'hash': '0xd9b5df9412763a017358b604a89a3b256288baacc70df831d76d57dd80436121', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 80146.0099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f8b951ac4a684ec000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:11:30.000Z'}}, {'blockNum': '0xa525f8', 'uniqueId': '0x0858d6f5130ec1dc315682d194ad1b0dfff84926b8a1db807dc6b42f923e4abe:log:42', 'hash': '0x0858d6f5130ec1dc315682d194ad1b0dfff84926b8a1db807dc6b42f923e4abe', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 80146.0099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f8b951ac4a684ec000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:20:59.000Z'}}, {'blockNum': '0xa525fb', 'uniqueId': '0xb63828698d5048df69d8aec356b402182fb1384c01222c5d68deda1ef9976a09:log:43', 'hash': '0xb63828698d5048df69d8aec356b402182fb1384c01222c5d68deda1ef9976a09', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 80146.0099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10f8b951ac4a684ec000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:21:41.000Z'}}, {'blockNum': '0xa525ff', 'uniqueId': '0xc3a92e68f31cffb3c4d66d0b3892edd9c149d90a136223fd36bc9de6ef069152:log:222', 'hash': '0xc3a92e68f31cffb3c4d66d0b3892edd9c149d90a136223fd36bc9de6ef069152', 'from': '0x5b8149f0c8c3942724f4e404390c14d7277b5214', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 98695.41785054345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14e64a110855a58192a8', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:22:56.000Z'}}, {'blockNum': '0xa5261c', 'uniqueId': '0x8d236048795cea12532895fd6b90ebca66d814b94e22b5267986cd1a96c3af4a:log:12', 'hash': '0x8d236048795cea12532895fd6b90ebca66d814b94e22b5267986cd1a96c3af4a', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 712009.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x96c61636fb3d679d4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:30:01.000Z'}}, {'blockNum': '0xa5261c', 'uniqueId': '0xad6387d914c41c15a61735df7e35a02b7bd6fbe3188063b84670abf1cbacd7be:log:32', 'hash': '0xad6387d914c41c15a61735df7e35a02b7bd6fbe3188063b84670abf1cbacd7be', 'from': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 240517.2237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x32ee76fea048bf354000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:30:01.000Z'}}, {'blockNum': '0xa52684', 'uniqueId': '0x52f4eb85db2c1df1d51cf126d9934659529b53d6418768a0d0e8f0961641514c:log:102', 'hash': '0x52f4eb85db2c1df1d51cf126d9934659529b53d6418768a0d0e8f0961641514c', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0x3a9b7ca34045b8012ca61b48c3e4c5d089b06298', 'value': 435.8457040566143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x17a092fea14685fcaa', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:51:52.000Z'}}, {'blockNum': '0xa526a8', 'uniqueId': '0x5c359d3a91c17db1a6c23286e19669df3b1ed5d2430e8addb041b5a510ddfd8c:log:11', 'hash': '0x5c359d3a91c17db1a6c23286e19669df3b1ed5d2430e8addb041b5a510ddfd8c', 'from': '0x4558ef17b852c4c19b765c8880ab31d669e1e03f', 'to': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'value': 26501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x059c9f4133af32f40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T20:59:58.000Z'}}, {'blockNum': '0xa52778', 'uniqueId': '0x8bafbe2d33a9577bc76648870b601356f523fcd1a276cc1e5b158fcf116bc1ad:log:151', 'hash': '0x8bafbe2d33a9577bc76648870b601356f523fcd1a276cc1e5b158fcf116bc1ad', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 754621.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x9fcc1682433018ed4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T21:47:58.000Z'}}, {'blockNum': '0xa527ba', 'uniqueId': '0xb6d2d59f7126f931ea1e689c753ad9c53e0c916117133c59cc70ea266cc61dac:log:109', 'hash': '0xb6d2d59f7126f931ea1e689c753ad9c53e0c916117133c59cc70ea266cc61dac', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 754621.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x9fcc1682433018ed4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T21:59:50.000Z'}}, {'blockNum': '0xa52820', 'uniqueId': '0x3a114c745ece2056368a0a451725348d6b540bcea1c7d222e4b5a959d512ad51:log:224', 'hash': '0x3a114c745ece2056368a0a451725348d6b540bcea1c7d222e4b5a959d512ad51', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 9800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x021342520d5fec200000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:19:37.000Z'}}, {'blockNum': '0xa52827', 'uniqueId': '0xf0a8246380684f9038ada36a9b4210d303898a685ba43a0b578c78061df32646:log:90', 'hash': '0xf0a8246380684f9038ada36a9b4210d303898a685ba43a0b578c78061df32646', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc19d84eab75f3a42d10e93ff1c9a39e3e3513b08', 'value': 64335.1285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0d9f9d430ca1697f4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:21:24.000Z'}}, {'blockNum': '0xa52835', 'uniqueId': '0x1d672c35d13c85f993e62e8b76fa515f9e8179e6e88635f748695d4889dad188:log:25', 'hash': '0x1d672c35d13c85f993e62e8b76fa515f9e8179e6e88635f748695d4889dad188', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc19d84eab75f3a42d10e93ff1c9a39e3e3513b08', 'value': 174087.0785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x24dd478916e0ba9a4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:23:49.000Z'}}, {'blockNum': '0xa52836', 'uniqueId': '0xfdc8dff65c4bcde10393e2ab7f66b138a4203a2af52a68c4c895a11603e00b56:log:101', 'hash': '0xfdc8dff65c4bcde10393e2ab7f66b138a4203a2af52a68c4c895a11603e00b56', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'value': 65892.1385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0df4051dc63cec744000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:23:52.000Z'}}, {'blockNum': '0xa5283d', 'uniqueId': '0xf0494fe6d3ae7e2ae4ff7a5ffb15a333c5499910518bcb4e9daf63061dcd3baf:log:12', 'hash': '0xf0494fe6d3ae7e2ae4ff7a5ffb15a333c5499910518bcb4e9daf63061dcd3baf', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 609733.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x811db196c4b63c0d4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:25:42.000Z'}}, {'blockNum': '0xa52852', 'uniqueId': '0xe20e96e11223f584d30f022fe80d88773740257751e618abb20a37a002aaa8ee:log:196', 'hash': '0xe20e96e11223f584d30f022fe80d88773740257751e618abb20a37a002aaa8ee', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 609733.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x811db196c4b63c0d4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:29:42.000Z'}}, {'blockNum': '0xa52852', 'uniqueId': '0x4793796477326cef84aa2efd44287fd004b3513f95b0ae8c4653d29ca54e1ee2:log:204', 'hash': '0x4793796477326cef84aa2efd44287fd004b3513f95b0ae8c4653d29ca54e1ee2', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 208600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2c2c3a8965d534600000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:29:42.000Z'}}, {'blockNum': '0xa52853', 'uniqueId': '0x2920c99ff60e87727a26dd3cd76c1af89de078873eaa6c2b343c95a5ab34562b:log:20', 'hash': '0x2920c99ff60e87727a26dd3cd76c1af89de078873eaa6c2b343c95a5ab34562b', 'from': '0xc19d84eab75f3a42d10e93ff1c9a39e3e3513b08', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 445456.2731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x5e543ba2bff6ee68c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:30:23.000Z'}}, {'blockNum': '0xa5285d', 'uniqueId': '0xa7e81f28f193449cd7409f871b3e128ebb094700f524520f58b4e5eea4a006ff:log:73', 'hash': '0xa7e81f28f193449cd7409f871b3e128ebb094700f524520f58b4e5eea4a006ff', 'from': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 65892.1385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0df4051dc63cec744000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:31:46.000Z'}}, {'blockNum': '0xa52862', 'uniqueId': '0x5b96f23d1e5c56ded5763569016e15904ec373d52d6f84f6c18a8243c40abda9:log:93', 'hash': '0x5b96f23d1e5c56ded5763569016e15904ec373d52d6f84f6c18a8243c40abda9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 1030245.99997254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60a1c70a4c5800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:33:47.000Z'}}, {'blockNum': '0xa52869', 'uniqueId': '0xce840f785da434a7369195d4d9b8200f6bc7b0ca6de8c0c6d9b8b293dd29f229:log:65', 'hash': '0xce840f785da434a7369195d4d9b8200f6bc7b0ca6de8c0c6d9b8b293dd29f229', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'value': 77575.42614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x106d5f4d961b6c51c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:34:28.000Z'}}, {'blockNum': '0xa52872', 'uniqueId': '0x8ca91dcba890e4188bc8664118083ef866684bf0d13e367f308d818490cbcd1d:log:228', 'hash': '0x8ca91dcba890e4188bc8664118083ef866684bf0d13e367f308d818490cbcd1d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'value': 92642.5185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x139e2936b6a686524000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:35:50.000Z'}}, {'blockNum': '0xa52872', 'uniqueId': '0xae111683dc4b7056a69d227af6a4556992e6edea54230d873f87cf6ae4bc3a9c:log:229', 'hash': '0xae111683dc4b7056a69d227af6a4556992e6edea54230d873f87cf6ae4bc3a9c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xd252db04b58f4406db5671296564a54355227ab2', 'value': 195670.83447764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x296f565230e6b4ccd000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:35:50.000Z'}}, {'blockNum': '0xa52888', 'uniqueId': '0x0c80bffef8360cdaac9fda94374d00c1565321015efa3383d485ec9f3983b6f1:log:39', 'hash': '0x0c80bffef8360cdaac9fda94374d00c1565321015efa3383d485ec9f3983b6f1', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99997254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf60a1c70a4c5800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:39:35.000Z'}}, {'blockNum': '0xa5288a', 'uniqueId': '0x8d6e7556c69df084a68e3b2fb77cf4b7c362c4151e94ca2870e83a7b76dd0e3a:log:16', 'hash': '0x8d6e7556c69df084a68e3b2fb77cf4b7c362c4151e94ca2870e83a7b76dd0e3a', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1096138.13847254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xe81dc47e6803f6c09800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:40:06.000Z'}}, {'blockNum': '0xa5288c', 'uniqueId': '0x26f8b79d4d469408cf673eb1e95ef570e32604bc212f538016122653491dca3e:log:102', 'hash': '0x26f8b79d4d469408cf673eb1e95ef570e32604bc212f538016122653491dca3e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 97800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b5bfa5c96473200000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:40:32.000Z'}}, {'blockNum': '0xa52892', 'uniqueId': '0x3c32c17e369ebe2838afbf8c91f56462a1423e0da5051ea2d935529e1dbfbdb5:log:11', 'hash': '0x3c32c17e369ebe2838afbf8c91f56462a1423e0da5051ea2d935529e1dbfbdb5', 'from': '0x29b094d033cc8b306b0d6f8bc732226b60f2239a', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 77575.42614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x106d5f4d961b6c51c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:42:12.000Z'}}, {'blockNum': '0xa52893', 'uniqueId': '0xf179c21a9411bb4e7e505c027d499cc083fc6f7fe8d640fdd7ed6f09bc2336e9:log:117', 'hash': '0xf179c21a9411bb4e7e505c027d499cc083fc6f7fe8d640fdd7ed6f09bc2336e9', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 77575.42614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x106d5f4d961b6c51c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:42:24.000Z'}}, {'blockNum': '0xa52894', 'uniqueId': '0xc98afbbd45d37115014d791e8dcb0969cb5b671a888ecb1c90a0146ad02371eb:log:149', 'hash': '0xc98afbbd45d37115014d791e8dcb0969cb5b671a888ecb1c90a0146ad02371eb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 4704567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x03e43b168dbbc27a7c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:43:39.000Z'}}, {'blockNum': '0xa5289a', 'uniqueId': '0xcc6565aa0d6e4e41d2e8d1e5a6ec9f596488743eaf2e1fa5db7dbed0a550b52a:log:92', 'hash': '0xcc6565aa0d6e4e41d2e8d1e5a6ec9f596488743eaf2e1fa5db7dbed0a550b52a', 'from': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 92642.5185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x139e2936b6a686524000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:45:35.000Z'}}, {'blockNum': '0xa5289e', 'uniqueId': '0x730236cba2ccf7319471689ed7b806c30a0c000e6b045ad0fae2e7a7f176ff48:log:25', 'hash': '0x730236cba2ccf7319471689ed7b806c30a0c000e6b045ad0fae2e7a7f176ff48', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 92642.5185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x139e2936b6a686524000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:46:56.000Z'}}, {'blockNum': '0xa528b0', 'uniqueId': '0x19bc9a0f254f919168ec9102ba95c9aa4ab403aafcdc1f0e62a6d33fd60e5758:log:57', 'hash': '0x19bc9a0f254f919168ec9102ba95c9aa4ab403aafcdc1f0e62a6d33fd60e5758', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 97800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b5bfa5c96473200000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:51:57.000Z'}}, {'blockNum': '0xa528b6', 'uniqueId': '0x46a692bf8d5ab15353ff4fc27cc8de806c836de681ca27b0c58c6175c477dcef:log:161', 'hash': '0x46a692bf8d5ab15353ff4fc27cc8de806c836de681ca27b0c58c6175c477dcef', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc19d84eab75f3a42d10e93ff1c9a39e3e3513b08', 'value': 229840.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x30aba7253016bd594000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:52:44.000Z'}}, {'blockNum': '0xa528b8', 'uniqueId': '0x1440a1bc5925b7bfc749a10fefe6c2ccdb1084e1ff837580f7601d851be8a5b6:log:3', 'hash': '0x1440a1bc5925b7bfc749a10fefe6c2ccdb1084e1ff837580f7601d851be8a5b6', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc19d84eab75f3a42d10e93ff1c9a39e3e3513b08', 'value': 199840.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2a515982d2e6a6994000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:54:08.000Z'}}, {'blockNum': '0xa528be', 'uniqueId': '0x59aca11b9c3f92360ad3a945ff31b6b8566c00f3bd6e3399fb1c07a8d32a202f:log:132', 'hash': '0x59aca11b9c3f92360ad3a945ff31b6b8566c00f3bd6e3399fb1c07a8d32a202f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x896b6d82d0ba81dd27c16f6956e55371278e9dcc', 'value': 34129.2285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x073a2630f058fdd14000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:55:07.000Z'}}, {'blockNum': '0xa528be', 'uniqueId': '0x2b540053203ad353c07073a399a4ceaf719840c608bd4feddaecec1094a5a78f:log:133', 'hash': '0x2b540053203ad353c07073a399a4ceaf719840c608bd4feddaecec1094a5a78f', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc19d84eab75f3a42d10e93ff1c9a39e3e3513b08', 'value': 199840.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2a515982d2e6a6994000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:55:07.000Z'}}, {'blockNum': '0xa528c4', 'uniqueId': '0xf25f5f26ae32b43062d72e6c327058b2e13c4aea3a0b75266693b9c8c3a7c2cb:log:140', 'hash': '0xf25f5f26ae32b43062d72e6c327058b2e13c4aea3a0b75266693b9c8c3a7c2cb', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc19d84eab75f3a42d10e93ff1c9a39e3e3513b08', 'value': 169997.6785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x23ff97b5c572982e4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:56:33.000Z'}}, {'blockNum': '0xa528c8', 'uniqueId': '0xafc0454f780a74e2d0a44821f30be7b8c523e5fb26a5cd9804649807e4901dbc:log:10', 'hash': '0xafc0454f780a74e2d0a44821f30be7b8c523e5fb26a5cd9804649807e4901dbc', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x50c8dc986fb8027b3deb2f73f9d553511712a59c', 'value': 56661.2583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0bff9ceb6ba329afc000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:58:23.000Z'}}, {'blockNum': '0xa528c8', 'uniqueId': '0x622eecb70cd849e8d4ef158c3371c05ab966e1a71feebce1307a483814f69f09:log:11', 'hash': '0x622eecb70cd849e8d4ef158c3371c05ab966e1a71feebce1307a483814f69f09', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 497796.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x696993a7b45b07a94000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:58:23.000Z'}}, {'blockNum': '0xa528c9', 'uniqueId': '0x26c33cadb7706d89005f6c0c6dea0be43d9a453403f5a9179b7c25848b15d6ae:log:5', 'hash': '0x26c33cadb7706d89005f6c0c6dea0be43d9a453403f5a9179b7c25848b15d6ae', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x8251de103b09eb52c7897ac978c92f16159e7b9f', 'value': 263551.1743669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x37cf23463cba8db20800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T22:58:24.000Z'}}, {'blockNum': '0xa528d0', 'uniqueId': '0x32091511b7fd4a428eef759b41f9750c840b352e1b37520d2f04c0499c5845b7:log:46', 'hash': '0x32091511b7fd4a428eef759b41f9750c840b352e1b37520d2f04c0499c5845b7', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 497796.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x696993a7b45b07a94000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:00:13.000Z'}}, {'blockNum': '0xa528d0', 'uniqueId': '0xa209c8d85df99607fc441d1117c41c5cf5cb908005b3747e45162a022f5c9628:log:63', 'hash': '0xa209c8d85df99607fc441d1117c41c5cf5cb908005b3747e45162a022f5c9628', 'from': '0xc19d84eab75f3a42d10e93ff1c9a39e3e3513b08', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 799517.764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa94df1e09b56a2ba0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:00:13.000Z'}}, {'blockNum': '0xa528d0', 'uniqueId': '0x6d1a1f01fcab6d101940e6be2f18f1a94bd97a67f1fb7be3321bec9eb5650855:log:64', 'hash': '0x6d1a1f01fcab6d101940e6be2f18f1a94bd97a67f1fb7be3321bec9eb5650855', 'from': '0xd252db04b58f4406db5671296564a54355227ab2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 382336.03297764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x50f67a56420b0bbb1000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:00:13.000Z'}}, {'blockNum': '0xa528f5', 'uniqueId': '0xa9b9d49edd5cf5145a505bc49a3b84fcca2edc1cbc594568b0c1674e6aa2ad14:log:6', 'hash': '0xa9b9d49edd5cf5145a505bc49a3b84fcca2edc1cbc594568b0c1674e6aa2ad14', 'from': '0x8251de103b09eb52c7897ac978c92f16159e7b9f', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 263551.1743669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x37cf23463cba8db20800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:08:23.000Z'}}, {'blockNum': '0xa528f6', 'uniqueId': '0x66e8629335404e8da84cc4ed64a822da374c44d8e9466da83bfcddf38834e73a:log:13', 'hash': '0x66e8629335404e8da84cc4ed64a822da374c44d8e9466da83bfcddf38834e73a', 'from': '0x604db14f07a11032ee1856cc219ae6aa58575344', 'to': '0x9d355624dd7949daa4eb257fea2fa4f941a55562', 'value': 22412.585265357662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x04befd1a3fe0757eb1f2', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:08:29.000Z'}}, {'blockNum': '0xa528f8', 'uniqueId': '0xb56918f6fb687c58337832207c14025e50f67299c52825c749e0e050ecdc70e2:log:21', 'hash': '0xb56918f6fb687c58337832207c14025e50f67299c52825c749e0e050ecdc70e2', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 263551.1743669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x37cf23463cba8db20800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:08:50.000Z'}}, {'blockNum': '0xa528fb', 'uniqueId': '0xc6d395b2d4aa9018597011cfe48106ab19f4bc15cc2d1e25336ca516d04a3957:log:24', 'hash': '0xc6d395b2d4aa9018597011cfe48106ab19f4bc15cc2d1e25336ca516d04a3957', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 180460.0423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2636c22cc1918a2fc000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:09:36.000Z'}}, {'blockNum': '0xa52921', 'uniqueId': '0x33afec20bcc9681aab863caad029384bd85bb3e101227016b5758a14df27f4f4:log:8', 'hash': '0x33afec20bcc9681aab863caad029384bd85bb3e101227016b5758a14df27f4f4', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 180460.0423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2636c22cc1918a2fc000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:17:31.000Z'}}, {'blockNum': '0xa52924', 'uniqueId': '0x5edd8c51ad2946f788c77018e444b46187e877bc37fdd1fab2a49af781ee77c3:log:9', 'hash': '0x5edd8c51ad2946f788c77018e444b46187e877bc37fdd1fab2a49af781ee77c3', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 180460.0423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2636c22cc1918a2fc000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:18:03.000Z'}}, {'blockNum': '0xa52927', 'uniqueId': '0xac1f476d42a024e0b483b653eb8f37b9530f6033512c44aef8030174649d61ae:log:17', 'hash': '0xac1f476d42a024e0b483b653eb8f37b9530f6033512c44aef8030174649d61ae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 129777.4939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b4085c76b23b4c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:18:32.000Z'}}, {'blockNum': '0xa52930', 'uniqueId': '0x4aaa55dc33fb27393af93bcafd7f7e25344ea69bdeaa4548de2c29a751b4e7d3:log:45', 'hash': '0x4aaa55dc33fb27393af93bcafd7f7e25344ea69bdeaa4548de2c29a751b4e7d3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 1030245.9999375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6081e8a78b9800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:20:40.000Z'}}, {'blockNum': '0xa5293a', 'uniqueId': '0x5fcc2a0021fb5190e4c4de7ccc1cf8e048a1967e582fa7989f3feb274296ffba:log:51', 'hash': '0x5fcc2a0021fb5190e4c4de7ccc1cf8e048a1967e582fa7989f3feb274296ffba', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x50c8dc986fb8027b3deb2f73f9d553511712a59c', 'value': 28754.1344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0616c3c69adddfd80000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:22:19.000Z'}}, {'blockNum': '0xa52951', 'uniqueId': '0x33b45f0a78f40a771f114dc6afe0d9902fb9bd744a8224988d5cb4110023d083:log:42', 'hash': '0x33b45f0a78f40a771f114dc6afe0d9902fb9bd744a8224988d5cb4110023d083', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 129777.4939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b4085c76b23b4c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:28:14.000Z'}}, {'blockNum': '0xa52953', 'uniqueId': '0x9d8e21004626cc6e71690a36f976b46d802c27e19a80cb530d0d57ffc49e891e:log:61', 'hash': '0x9d8e21004626cc6e71690a36f976b46d802c27e19a80cb530d0d57ffc49e891e', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 129777.4939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b4085c76b23b4c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:28:34.000Z'}}, {'blockNum': '0xa52957', 'uniqueId': '0x6f0fe1b652a37b8dbe89fb58be33456cbafc384740f6808bccf582268769cf40:log:100', 'hash': '0x6f0fe1b652a37b8dbe89fb58be33456cbafc384740f6808bccf582268769cf40', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 38846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0839d88b911238380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:29:16.000Z'}}, {'blockNum': '0xa52958', 'uniqueId': '0xd13a06f7d8be388a79c25b6049d0c882b98efb4701274ebc92ff5cdbe143cdff:log:30', 'hash': '0xd13a06f7d8be388a79c25b6049d0c882b98efb4701274ebc92ff5cdbe143cdff', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.9999375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6081e8a78b9800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:29:59.000Z'}}, {'blockNum': '0xa5295a', 'uniqueId': '0xd0074220fcaf1b48af8b8973e5098b57037d2d656c86994be5a63064b2d615f9:log:14', 'hash': '0xd0074220fcaf1b48af8b8973e5098b57037d2d656c86994be5a63064b2d615f9', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 799903.99991085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa35e4146b1400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:30:07.000Z'}}, {'blockNum': '0xa5295b', 'uniqueId': '0x6035872fa32d4e774c41008b93e28789c6e73b78ced73ada5e6d6a852fa041fc:log:47', 'hash': '0x6035872fa32d4e774c41008b93e28789c6e73b78ced73ada5e6d6a852fa041fc', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1030245.9999375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf6081e8a78b9800', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:30:26.000Z'}}, {'blockNum': '0xa52977', 'uniqueId': '0x5c2a20225411a38a8767cb3c70dc48fff6376475ef4a5008f35502b9551f19f9:log:108', 'hash': '0x5c2a20225411a38a8767cb3c70dc48fff6376475ef4a5008f35502b9551f19f9', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99995704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa5fe686f5e000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:36:06.000Z'}}, {'blockNum': '0xa52980', 'uniqueId': '0x2e803336d8443a15c5a259ca872ee4ebdb115d76e2f682753283fe5386e3ac3a:log:74', 'hash': '0x2e803336d8443a15c5a259ca872ee4ebdb115d76e2f682753283fe5386e3ac3a', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 38846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0839d88b911238380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:38:05.000Z'}}, {'blockNum': '0xa5298a', 'uniqueId': '0xc11e27b55c5f0e6b551933250c6ff8c4514013dde8ae6313de4cbe2fc16b12d1:log:83', 'hash': '0xc11e27b55c5f0e6b551933250c6ff8c4514013dde8ae6313de4cbe2fc16b12d1', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2e82ef5965cccedb31f5e08c26d59c75d5b1f7e5', 'value': 224061.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2f725f68d68b06ed4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:41:39.000Z'}}, {'blockNum': '0xa5299a', 'uniqueId': '0xceecf925735594ddfae580533131948cd9b2ec87cd6bfe93fc4ea35d0a929b98:log:47', 'hash': '0xceecf925735594ddfae580533131948cd9b2ec87cd6bfe93fc4ea35d0a929b98', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 80257.6907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x10fec733942e2fc0c000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:44:50.000Z'}}, {'blockNum': '0xa5299a', 'uniqueId': '0x4584260d25bf9dbb1f0a4aa8459a10539dc824027a87bb0d6bbcd5ee36166880:log:66', 'hash': '0x4584260d25bf9dbb1f0a4aa8459a10539dc824027a87bb0d6bbcd5ee36166880', 'from': '0x2e82ef5965cccedb31f5e08c26d59c75d5b1f7e5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 224061.0285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2f725f68d68b06ed4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:44:50.000Z'}}, {'blockNum': '0xa529a0', 'uniqueId': '0xa8605a414089b4219714b6bdfb817e1a54a3fd95499c40eb8c37bbf624f2b7a3:log:41', 'hash': '0xa8605a414089b4219714b6bdfb817e1a54a3fd95499c40eb8c37bbf624f2b7a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2e82ef5965cccedb31f5e08c26d59c75d5b1f7e5', 'value': 613655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x81f24de090775dfc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:45:51.000Z'}}, {'blockNum': '0xa529a5', 'uniqueId': '0x73c3435f87aa0befc25e0eced95d849e105382a53ff59eca0ffd44126c1cc43e:log:114', 'hash': '0x73c3435f87aa0befc25e0eced95d849e105382a53ff59eca0ffd44126c1cc43e', 'from': '0x2e82ef5965cccedb31f5e08c26d59c75d5b1f7e5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 613655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x81f24de090775dfc0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:46:56.000Z'}}, {'blockNum': '0xa529af', 'uniqueId': '0xaffa02f320cf0313ab0b2386b22523aa5313ce4fe6bba5e252569c76bef22560:log:61', 'hash': '0xaffa02f320cf0313ab0b2386b22523aa5313ce4fe6bba5e252569c76bef22560', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 97500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14a57c4faedc49f00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:49:07.000Z'}}, {'blockNum': '0xa529de', 'uniqueId': '0xefb5b06ab70a542bc113ec2f2a5a2ac075e109ee9adba2eae7b53c59a6209a20:log:122', 'hash': '0xefb5b06ab70a542bc113ec2f2a5a2ac075e109ee9adba2eae7b53c59a6209a20', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'value': 615678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x825ff8a4562725380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-08T23:58:26.000Z'}}, {'blockNum': '0xa529e3', 'uniqueId': '0x56b6ae94dc4fe9c23ac030c163b643be42f6f6757f999bfdfd65c75cb9c2ad43:log:24', 'hash': '0x56b6ae94dc4fe9c23ac030c163b643be42f6f6757f999bfdfd65c75cb9c2ad43', 'from': '0x3ffdb56d2d6d2472e51cff6c62af18f493e9c12f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 615678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x825ff8a4562725380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:00:13.000Z'}}, {'blockNum': '0xa529e4', 'uniqueId': '0xcb237c5b5027ec733edb757a7e8ed7a767753c63865814bec99c685d478e3e2c:log:26', 'hash': '0xcb237c5b5027ec733edb757a7e8ed7a767753c63865814bec99c685d478e3e2c', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 293100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3e10fb9b41a530300000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:00:20.000Z'}}, {'blockNum': '0xa529f0', 'uniqueId': '0x9bc178c657fa6a075d9a14165ed633569fb7dab848b1fee8e7badf54753d7b55:log:65', 'hash': '0x9bc178c657fa6a075d9a14165ed633569fb7dab848b1fee8e7badf54753d7b55', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 171285.8974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x24456d56adb8aca38000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:03:16.000Z'}}, {'blockNum': '0xa529f8', 'uniqueId': '0x802b3ddb05e2d46021e330c4188dab5e13ca2ab022cea3322852be1474699e2c:log:123', 'hash': '0x802b3ddb05e2d46021e330c4188dab5e13ca2ab022cea3322852be1474699e2c', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'value': 159979.1677458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x21e07cf192d8fe5c5000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:04:57.000Z'}}, {'blockNum': '0xa52a17', 'uniqueId': '0x7da52a6eb4bdaa54a448d83b511798109da529f5be7cf6576948cca5996e0540:log:17', 'hash': '0x7da52a6eb4bdaa54a448d83b511798109da529f5be7cf6576948cca5996e0540', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'value': 126786.47459839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1ad91bca97b422b41c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:12:30.000Z'}}, {'blockNum': '0xa52a1e', 'uniqueId': '0x15426c8024426dd1feb034ed4af76e1e5b0a6bb37279897041cad7d06d46e4bf:log:101', 'hash': '0x15426c8024426dd1feb034ed4af76e1e5b0a6bb37279897041cad7d06d46e4bf', 'from': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 159979.1677458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x21e07cf192d8fe5c5000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:14:34.000Z'}}, {'blockNum': '0xa52a1f', 'uniqueId': '0x956b59595e91efb14325584937cbc0f9396c06c6e4167588ae3f74402609b73d:log:30', 'hash': '0x956b59595e91efb14325584937cbc0f9396c06c6e4167588ae3f74402609b73d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 100255.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x153ae23b48edc7f08000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:15:05.000Z'}}, {'blockNum': '0xa52a20', 'uniqueId': '0x88b30eb68659a0a0bdac839bdb8dabf355e00fc230e414af87083857a9700aa6:log:25', 'hash': '0x88b30eb68659a0a0bdac839bdb8dabf355e00fc230e414af87083857a9700aa6', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 198825.1677458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2a1a557d23eb36945000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:15:18.000Z'}}, {'blockNum': '0xa52a2a', 'uniqueId': '0x08c3af943fdd9ef5eb465221ac98d45a772feba48d24a2f2298c8b8c9de9247c:log:86', 'hash': '0x08c3af943fdd9ef5eb465221ac98d45a772feba48d24a2f2298c8b8c9de9247c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 1030245.99993348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf607e40acdf9000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:17:12.000Z'}}, {'blockNum': '0xa52a2a', 'uniqueId': '0x88482683e42345421d0253376ae0d4b4eb5c58e6d18b1f286cdba90295636972:log:87', 'hash': '0x88482683e42345421d0253376ae0d4b4eb5c58e6d18b1f286cdba90295636972', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 38846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0839d88b911238380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:17:12.000Z'}}, {'blockNum': '0xa52a38', 'uniqueId': '0x205dfb666bd89536e7b852a9fb8ce22a63da6de558a841ed70e5eb52c5f4d8ed:log:79', 'hash': '0x205dfb666bd89536e7b852a9fb8ce22a63da6de558a841ed70e5eb52c5f4d8ed', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 97700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14b053de6b3710100000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:20:44.000Z'}}, {'blockNum': '0xa52a3c', 'uniqueId': '0x763f52171738b472fd1aba897684b8ba4741defb10aa9e5651327a10ebeff4e1:log:26', 'hash': '0x763f52171738b472fd1aba897684b8ba4741defb10aa9e5651327a10ebeff4e1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 138481.6672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1d531b315314f7480000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:21:35.000Z'}}, {'blockNum': '0xa52a3c', 'uniqueId': '0xcf85eb4042f64b2c4502e7352e6bc0d2ec58a8787e9548f7410d530508a23a63:log:27', 'hash': '0xcf85eb4042f64b2c4502e7352e6bc0d2ec58a8787e9548f7410d530508a23a63', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa3db01d242221ec0356d91f756f6690239cfeded', 'value': 835000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb0d170d1cc6523e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:21:35.000Z'}}, {'blockNum': '0xa52a3f', 'uniqueId': '0x84d618b7ca5ad64f79705bf7d213a665fbcb6d6123b1907956369be510cbbb53:log:10', 'hash': '0x84d618b7ca5ad64f79705bf7d213a665fbcb6d6123b1907956369be510cbbb53', 'from': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 126786.47459839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1ad91bca97b422b41c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:22:11.000Z'}}, {'blockNum': '0xa52a40', 'uniqueId': '0x2622d47cbb89eb014a183b387df495c3144299047e8da0d2eb0948cb4629210e:log:42', 'hash': '0x2622d47cbb89eb014a183b387df495c3144299047e8da0d2eb0948cb4629210e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc186ab99539ad3ab4b9212f0bb9b9d1c44152fd9', 'value': 33252.92564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x070aa50bc80776f48000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:22:27.000Z'}}, {'blockNum': '0xa52a41', 'uniqueId': '0x8eb716e15b5f740e13fae115cd7ff339d3cf7f03d6dc03e2d7174f1590aff0e6:log:31', 'hash': '0x8eb716e15b5f740e13fae115cd7ff339d3cf7f03d6dc03e2d7174f1590aff0e6', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 126786.47459839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1ad91bca97b422b41c00', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:22:38.000Z'}}, {'blockNum': '0xa52a41', 'uniqueId': '0x628b5e23f40b85207e24d18669de31c0d6c8e3eccf3e7492cf5f0b6ea73cc692:log:57', 'hash': '0x628b5e23f40b85207e24d18669de31c0d6c8e3eccf3e7492cf5f0b6ea73cc692', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x9fc33a1675f40ad57cd3bac572bac321523cc8f7', 'value': 191267.91548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2880a78ba43655a58000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:22:38.000Z'}}, {'blockNum': '0xa52a44', 'uniqueId': '0x36bfde150f329d51cb50caad60afeece378c5887823d62dd16d971321ce17114:log:60', 'hash': '0x36bfde150f329d51cb50caad60afeece378c5887823d62dd16d971321ce17114', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 5233291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0454314608d7f30b4c0000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:23:07.000Z'}}, {'blockNum': '0xa52a46', 'uniqueId': '0x9ad9b45fe2d829d0f2d2b35bab47f2162aa089d93db1f2a92f3ec82fdaf3c0dd:log:23', 'hash': '0x9ad9b45fe2d829d0f2d2b35bab47f2162aa089d93db1f2a92f3ec82fdaf3c0dd', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 100255.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x153ae23b48edc7f08000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:23:35.000Z'}}, {'blockNum': '0xa52a47', 'uniqueId': '0xfaaf115964f31461b4da5c34bcab21519269286076ade1d14d69256c01d080d4:log:12', 'hash': '0xfaaf115964f31461b4da5c34bcab21519269286076ade1d14d69256c01d080d4', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 100255.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x153ae23b48edc7f08000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:23:54.000Z'}}, {'blockNum': '0xa52a54', 'uniqueId': '0x4039cd58852296cb256eeafce88fbf31d56f2f935314f75249da93944dbd3063:log:177', 'hash': '0x4039cd58852296cb256eeafce88fbf31d56f2f935314f75249da93944dbd3063', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 1030245.99993348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xda29bf607e40acdf9000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:26:32.000Z'}}, {'blockNum': '0xa52a54', 'uniqueId': '0x6fd39764772a2a6fc5376c9fe0a3e217bc0f19dfb43b6febe11a773f1b30225e:log:179', 'hash': '0x6fd39764772a2a6fc5376c9fe0a3e217bc0f19dfb43b6febe11a773f1b30225e', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 38846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0839d88b911238380000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:26:32.000Z'}}, {'blockNum': '0xa52a55', 'uniqueId': '0xdfadf441bf28a8e81fa77e7045172fb063cafda6d26e9831cd72d6b9a0aadb6b:log:50', 'hash': '0xdfadf441bf28a8e81fa77e7045172fb063cafda6d26e9831cd72d6b9a0aadb6b', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 1069091.99993348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xe26397ec0f52e5179000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:27:52.000Z'}}, {'blockNum': '0xa52a55', 'uniqueId': '0x462b1d038139a23684b990217937e0ff8ccc4e0764d7e3b0cdc4ee3f072259fe:log:101', 'hash': '0x462b1d038139a23684b990217937e0ff8ccc4e0764d7e3b0cdc4ee3f072259fe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 172799.2914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x249777e63e6a94288000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:27:52.000Z'}}, {'blockNum': '0xa52a5c', 'uniqueId': '0xea53ecda9a4766874c6c5f85e1d7d8ab8d72ba1c0fd23acd6cb63820e7bc89a3:log:65', 'hash': '0xea53ecda9a4766874c6c5f85e1d7d8ab8d72ba1c0fd23acd6cb63820e7bc89a3', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 799903.99995704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa5fe686f5e000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:30:07.000Z'}}, {'blockNum': '0xa52a64', 'uniqueId': '0x4092e205704121884ac762ebaa7b604ed0beaeb2cc84cb9246b592facb5924a5:log:33', 'hash': '0x4092e205704121884ac762ebaa7b604ed0beaeb2cc84cb9246b592facb5924a5', 'from': '0xa3db01d242221ec0356d91f756f6690239cfeded', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 835000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xb0d170d1cc6523e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:32:04.000Z'}}, {'blockNum': '0xa52a64', 'uniqueId': '0x447fa4d2f975db8b941bfe5f1e32471cba8573f52966c35b0248169aa7cc9317:log:35', 'hash': '0x447fa4d2f975db8b941bfe5f1e32471cba8573f52966c35b0248169aa7cc9317', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 138481.6672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1d531b315314f7480000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:32:04.000Z'}}, {'blockNum': '0xa52a67', 'uniqueId': '0xd94634cad0fa1c5a66dce1ada82155f61f19c7b5eeb285ec7af451bdc8e8c791:log:77', 'hash': '0xd94634cad0fa1c5a66dce1ada82155f61f19c7b5eeb285ec7af451bdc8e8c791', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 973481.6672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xce248c031f7a1b280000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:32:41.000Z'}}, {'blockNum': '0xa52a6d', 'uniqueId': '0xbf42110733048c35f93a7f955eb939fdcbd9cf2bc789fa0d9638f0925ab59c92:log:35', 'hash': '0xbf42110733048c35f93a7f955eb939fdcbd9cf2bc789fa0d9638f0925ab59c92', 'from': '0x9fc33a1675f40ad57cd3bac572bac321523cc8f7', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 191267.91548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2880a78ba43655a58000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:33:29.000Z'}}, {'blockNum': '0xa52a70', 'uniqueId': '0xc52859a26a59d2147c0826b43570c6a6ef977f4a1723bb970d9c7d6a7cfb81ce:log:26', 'hash': '0xc52859a26a59d2147c0826b43570c6a6ef977f4a1723bb970d9c7d6a7cfb81ce', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 191267.91548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x2880a78ba43655a58000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:33:57.000Z'}}, {'blockNum': '0xa52a7f', 'uniqueId': '0x496c16827c27b6ab09500847025859c8eb89c6b9e7839eca73177898308e7599:log:31', 'hash': '0x496c16827c27b6ab09500847025859c8eb89c6b9e7839eca73177898308e7599', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 100409.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x15433b6931007a188000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:37:03.000Z'}}, {'blockNum': '0xa52a83', 'uniqueId': '0xd14f7d8f4017946dc561e8531e01956493fe88d5efdd1bf8277d9a9791208b45:log:51', 'hash': '0xd14f7d8f4017946dc561e8531e01956493fe88d5efdd1bf8277d9a9791208b45', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3423940069110f235a4c3e1112abe0246170903b', 'value': 758689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa0a89cf44166b1e40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:37:40.000Z'}}, {'blockNum': '0xa52a83', 'uniqueId': '0xb43a1533aa53328e5f57d5ab3c4d7f023f34615cd62e10f2e0afa0033993acaa:log:78', 'hash': '0xb43a1533aa53328e5f57d5ab3c4d7f023f34615cd62e10f2e0afa0033993acaa', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 112062.1926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x17bae75486c1e7f58000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:37:40.000Z'}}, {'blockNum': '0xa52a83', 'uniqueId': '0xe8f9f4d60eb8b123914049a5d512f5fdc8ea9cba4eb493198ef811b09bb59334:log:79', 'hash': '0xe8f9f4d60eb8b123914049a5d512f5fdc8ea9cba4eb493198ef811b09bb59334', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 172799.2914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x249777e63e6a94288000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:37:40.000Z'}}, {'blockNum': '0xa52a84', 'uniqueId': '0xa1b1b444042cfb6402c24d9eebb24f60c70aaae97b793dc5b5a523f0708f1cf8:log:7', 'hash': '0xa1b1b444042cfb6402c24d9eebb24f60c70aaae97b793dc5b5a523f0708f1cf8', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 172799.2914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x249777e63e6a94288000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:38:21.000Z'}}, {'blockNum': '0xa52a85', 'uniqueId': '0x0e8b2b9715ec8bd604a570e6a4cd6c2a7015beff18f7c90fbaec29f3b9e1e67e:log:0', 'hash': '0x0e8b2b9715ec8bd604a570e6a4cd6c2a7015beff18f7c90fbaec29f3b9e1e67e', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0xd8e1643fb50ea8810f41dce43782096354d7b165', 'value': 149920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbf2df2b9cc22800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:38:44.000Z'}}, {'blockNum': '0xa52a89', 'uniqueId': '0x02638199cf87812fd8aabe9e69a3a3b4bcf95c320c205bab61ed7e27f7765704:log:40', 'hash': '0x02638199cf87812fd8aabe9e69a3a3b4bcf95c320c205bab61ed7e27f7765704', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 799903.99994681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa5698ab71c400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:39:19.000Z'}}, {'blockNum': '0xa52a91', 'uniqueId': '0xd6c35c18821b69e3789ce79555fe366d485b62d7f771de9c15c456900d22cd90:log:20', 'hash': '0xd6c35c18821b69e3789ce79555fe366d485b62d7f771de9c15c456900d22cd90', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x0c2e90ea44a30bc2cc83f4953052f657339d929d', 'value': 1544.58864468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x53bb7934c14d72d000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:41:08.000Z'}}, {'blockNum': '0xa52a97', 'uniqueId': '0x317f43903c61df30bd0f63a7b72c20010438c329d6b907876bb68e04b289e093:log:58', 'hash': '0x317f43903c61df30bd0f63a7b72c20010438c329d6b907876bb68e04b289e093', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdae40325796270a693a301620e71212e13b0a56f', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x12bac6937669760000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:42:36.000Z'}}, {'blockNum': '0xa52a97', 'uniqueId': '0xdce1e0b2835982f8410bd0e14d8273c95a22c95e9949d40fadc21fd6cfa33d39:log:60', 'hash': '0xdce1e0b2835982f8410bd0e14d8273c95a22c95e9949d40fadc21fd6cfa33d39', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0f1ab515993ff1abc2a6fdbe04cccd1e2b646a29', 'value': 72724.049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0f6660eba8f98dce8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:42:36.000Z'}}, {'blockNum': '0xa52a97', 'uniqueId': '0x1ab49f59aad25f721e7d14d0721d95a39a10273e9255db80974ffc5b57422efb:log:62', 'hash': '0x1ab49f59aad25f721e7d14d0721d95a39a10273e9255db80974ffc5b57422efb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x490fd815bb919eb220795ca64ae3beaab6f4bf7f', 'value': 54910.1117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba0aee0f0e8e0a14000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:42:36.000Z'}}, {'blockNum': '0xa52a97', 'uniqueId': '0xcfbcfc1de47fadc6eabebb96f499aedfd0d958a5e0ef9c7003c0306e5b757c11:log:63', 'hash': '0xcfbcfc1de47fadc6eabebb96f499aedfd0d958a5e0ef9c7003c0306e5b757c11', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xaa3dd89bfbc653f51754522f1862ad5de864d65f', 'value': 297031.91052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3ee621d38b6e359f8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:42:36.000Z'}}, {'blockNum': '0xa52a9e', 'uniqueId': '0xef4d5362f4ac0a7ccf72208c8c3822fc9040e0ebf6e9fcf19a31a1fe5ea4b7f5:log:2', 'hash': '0xef4d5362f4ac0a7ccf72208c8c3822fc9040e0ebf6e9fcf19a31a1fe5ea4b7f5', 'from': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'to': '0x0c2e90ea44a30bc2cc83f4953052f657339d929d', 'value': 13821.2978022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x02ed4109c2ba0a287000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:44:12.000Z'}}, {'blockNum': '0xa52aa1', 'uniqueId': '0x01e85621dfea0b24ca42b3ecbca575bdb80fcd3b4b79252fa3f5810ebd5dd692:log:44', 'hash': '0x01e85621dfea0b24ca42b3ecbca575bdb80fcd3b4b79252fa3f5810ebd5dd692', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'value': 59846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0cac4216d24d7b580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:44:44.000Z'}}, {'blockNum': '0xa52aa7', 'uniqueId': '0x16f9bd3365b08957cffb83a377a516a920e6d1e379b19bbb1b08646cdd0d3914:log:40', 'hash': '0x16f9bd3365b08957cffb83a377a516a920e6d1e379b19bbb1b08646cdd0d3914', 'from': '0x3423940069110f235a4c3e1112abe0246170903b', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 758689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa0a89cf44166b1e40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:46:07.000Z'}}, {'blockNum': '0xa52aa8', 'uniqueId': '0xc21c57d2be10acbdcc3edc496ad4284bfd989a00fc1bf8e78c239dc528982bea:log:189', 'hash': '0xc21c57d2be10acbdcc3edc496ad4284bfd989a00fc1bf8e78c239dc528982bea', 'from': '0xd8e1643fb50ea8810f41dce43782096354d7b165', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 149920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbf2df2b9cc22800000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:46:12.000Z'}}, {'blockNum': '0xa52ab2', 'uniqueId': '0xf97b8f3cf0ca220c43ef64ee21d36611abd89d8a7b25f12df0e21473dfd95ff7:log:52', 'hash': '0xf97b8f3cf0ca220c43ef64ee21d36611abd89d8a7b25f12df0e21473dfd95ff7', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x3cca540d2b9857626f5af53e4d68072532e4373c', 'value': 72564.0835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0f5db4f40a42240ec000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:48:50.000Z'}}, {'blockNum': '0xa52aba', 'uniqueId': '0x85c3c799b70a1453b9f6b7d9b61870d349c6403a3a45ab20197ffc1cce7327d7:log:197', 'hash': '0x85c3c799b70a1453b9f6b7d9b61870d349c6403a3a45ab20197ffc1cce7327d7', 'from': '0x490fd815bb919eb220795ca64ae3beaab6f4bf7f', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 54910.1117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba0aee0f0e8e0a14000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:51:45.000Z'}}, {'blockNum': '0xa52aba', 'uniqueId': '0x1b96bc6c4881655ac97e58dbae78283c85aa0670d7391550c0e027586c2a1fae:log:198', 'hash': '0x1b96bc6c4881655ac97e58dbae78283c85aa0670d7391550c0e027586c2a1fae', 'from': '0xdae40325796270a693a301620e71212e13b0a56f', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 345.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x12bac6937669760000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:51:45.000Z'}}, {'blockNum': '0xa52aba', 'uniqueId': '0x4e16b3b43da413d310d034e0898ea8d922bf5d6aaf77c745a7ff1b429c058952:log:225', 'hash': '0x4e16b3b43da413d310d034e0898ea8d922bf5d6aaf77c745a7ff1b429c058952', 'from': '0x0f1ab515993ff1abc2a6fdbe04cccd1e2b646a29', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 72724.049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0f6660eba8f98dce8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:51:45.000Z'}}, {'blockNum': '0xa52aba', 'uniqueId': '0x8440be792079074485064d469c10eb677c4b48f22613e839475fde9eed2790a5:log:226', 'hash': '0x8440be792079074485064d469c10eb677c4b48f22613e839475fde9eed2790a5', 'from': '0xaa3dd89bfbc653f51754522f1862ad5de864d65f', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 297031.91052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x3ee621d38b6e359f8000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:51:45.000Z'}}, {'blockNum': '0xa52ac0', 'uniqueId': '0xff10f07dc37687c183e98cd83464b5dde425a1e9650029044b8c5f7cfe52b175:log:54', 'hash': '0xff10f07dc37687c183e98cd83464b5dde425a1e9650029044b8c5f7cfe52b175', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 99000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x14f6ccfe338517e00000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:53:13.000Z'}}, {'blockNum': '0xa52ac1', 'uniqueId': '0x09aaa971d163e0cbc74fc2de145936f16e9e14924a2612e9616908666a3d8152:log:89', 'hash': '0x09aaa971d163e0cbc74fc2de145936f16e9e14924a2612e9616908666a3d8152', 'from': '0x0c2e90ea44a30bc2cc83f4953052f657339d929d', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 15365.88644688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0340fc82f77b579b4000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:53:40.000Z'}}, {'blockNum': '0xa52ac4', 'uniqueId': '0xa7f9ae0a11b92a2201f5f1072c1abacf44e883d85b57dcbfa93a1686c536b362:log:141', 'hash': '0xa7f9ae0a11b92a2201f5f1072c1abacf44e883d85b57dcbfa93a1686c536b362', 'from': '0x341fa93538b6ebb70832511ef03c2e51e7794b3e', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 59846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0cac4216d24d7b580000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:54:26.000Z'}}, {'blockNum': '0xa52ad1', 'uniqueId': '0xf8345724481821195351aae24d22c23aae14e966befe479d3b91a113a14099e2:log:36', 'hash': '0xf8345724481821195351aae24d22c23aae14e966befe479d3b91a113a14099e2', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xc1010ebab7f2a41a0a0274042c9103faf3ff6a39', 'value': 15205.91494688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0338507607cc11348000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T00:56:45.000Z'}}, {'blockNum': '0xa52adf', 'uniqueId': '0x86dd0463df290c258c6a94cc663f757480bb1d811eb87234502c10b2c3ff4d9e:log:38', 'hash': '0x86dd0463df290c258c6a94cc663f757480bb1d811eb87234502c10b2c3ff4d9e', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 799903.99994681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0xa962e1fa5698ab71c400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T01:00:07.000Z'}}, {'blockNum': '0xa52ae2', 'uniqueId': '0x33efc93c3b46aac62678edce7c8c38184ffb807a691b27c2ebaba72847572536:log:23', 'hash': '0x33efc93c3b46aac62678edce7c8c38184ffb807a691b27c2ebaba72847572536', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xefaf2a923c4715f81d4f69c7fa37bb16078e76a8', 'value': 421070.72728397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x592a4a349071bd279400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T01:00:43.000Z'}}, {'blockNum': '0xa52afb', 'uniqueId': '0x1b768b4f254a4790a52573b7f5abafb32bc129f7eecd082c07a54fe21244a5b8:log:122', 'hash': '0x1b768b4f254a4790a52573b7f5abafb32bc129f7eecd082c07a54fe21244a5b8', 'from': '0xc1010ebab7f2a41a0a0274042c9103faf3ff6a39', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 15205.91494688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x0338507607cc11348000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T01:05:37.000Z'}}, {'blockNum': '0xa52b09', 'uniqueId': '0x5aecfd1652d77bff1d161d86fd08c0536bab921c493111402c04b32aae21a870:log:101', 'hash': '0x5aecfd1652d77bff1d161d86fd08c0536bab921c493111402c04b32aae21a870', 'from': '0xefaf2a923c4715f81d4f69c7fa37bb16078e76a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 421070.72728397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x592a4a349071bd279400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T01:09:09.000Z'}}, {'blockNum': '0xa52b0c', 'uniqueId': '0xfd5b9a037c700e94fbe3578577ec1a2d4a288ca5e941dd22328c2208402baf6f:log:21', 'hash': '0xfd5b9a037c700e94fbe3578577ec1a2d4a288ca5e941dd22328c2208402baf6f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbdbb72fb33d8636e575084519f9022033e9fb15f', 'value': 10001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x021e27c1806e59a40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T01:09:50.000Z'}}, {'blockNum': '0xa52b0c', 'uniqueId': '0x96ada58e725365760c6231a0f57afff396cbf1111e883d7b72dca0d719705be7:log:98', 'hash': '0x96ada58e725365760c6231a0f57afff396cbf1111e883d7b72dca0d719705be7', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xce98a2eb166bf0024a43fb21e71277ff30f64b5a', 'value': 436276.64223085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x5c629aaa983dce5c1400', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T01:09:50.000Z'}}, {'blockNum': '0xa52b15', 'uniqueId': '0xe92d7c6a6eb25cb4175e2b168fb4e704dd3554b5f8875ce78cdabb6f30e9a828:log:163', 'hash': '0xe92d7c6a6eb25cb4175e2b168fb4e704dd3554b5f8875ce78cdabb6f30e9a828', 'from': '0x1d2eba7757939ccd715ea23686c56ad05e3f80c5', 'to': '0xf88354d4da5f1adbef394746d4ec2b46ecb1d3bf', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x06c6b935b8bbd40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T01:13:07.000Z'}}, {'blockNum': '0xa52b49', 'uniqueId': '0x1585008ec4c269f7d4b869d1f40faaeab725e44810ab1fb104ca0afd258723e1:log:343', 'hash': '0x1585008ec4c269f7d4b869d1f40faaeab725e44810ab1fb104ca0afd258723e1', 'from': '0xbdbb72fb33d8636e575084519f9022033e9fb15f', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 10001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x021e27c1806e59a40000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T01:24:08.000Z'}}, {'blockNum': '0xa52bee', 'uniqueId': '0x8e39a4a8de1f3996b3e2fd0d119b2d2f33a61a5e80fb41183a3258128588006b:log:53', 'hash': '0x8e39a4a8de1f3996b3e2fd0d119b2d2f33a61a5e80fb41183a3258128588006b', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcf60100293d0a4e3d6fb68b4dd55d701367a4da1', 'value': 264605.52987384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'STPT', 'category': 'erc20', 'rawContract': {'value': '0x38084b657813654ce000', 'address': '0xde7d85157d9714eadf595045cc12ca4a5f3e2adb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-09T01:55:03.000Z'}}]}}
Number of returned transfers:  636
Answer is complete
 
symbol             QSP
group              BPF
date        2020-09-10
hour             18:00
exchange       binance
Name: 845, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2020-09-10 18:00:00 2020-09-10 06:00:00 2020-09-11 06:00:00
Unix timestamps:  1599710400.0 1599796800.0
Hex Block Numbers:  0xa54764 0xa56107
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa548ca', 'uniqueId': '0x7bf7adbf52072a133c6cc2f08fdb16bb48e4c110fa0b48839fbe77bc310e8677:log:79', 'hash': '0x7bf7adbf52072a133c6cc2f08fdb16bb48e4c110fa0b48839fbe77bc310e8677', 'from': '0x5e667d65d45cd511e7cdfbbc592196631c86c773', 'to': '0xea33e88bc886d9709a895f512781cdf0ff12efc5', 'value': 3074.98999864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa6b20f07c49019e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T05:19:26.000Z'}}, {'blockNum': '0xa54958', 'uniqueId': '0xc35a81542f0ec1974305f50d0f78bcd14e4f037bf627c622929479eb0a5dac2d:log:248', 'hash': '0xc35a81542f0ec1974305f50d0f78bcd14e4f037bf627c622929479eb0a5dac2d', 'from': '0x10bd28a045defee8e75f03a9f5d014dd6b0313fa', 'to': '0xdf10158541bb7b0ebbec23c424f5024e497dbc6a', 'value': 497.0330700640846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1af1b82fd4479a8465', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T05:49:04.000Z'}}, {'blockNum': '0xa54a16', 'uniqueId': '0x672dabb3e35a3f0b669421d3fabe9e92bb0c74bd13ae914b22b853756c07f3d3:log:168', 'hash': '0x672dabb3e35a3f0b669421d3fabe9e92bb0c74bd13ae914b22b853756c07f3d3', 'from': '0xf5490f4e055aacad9f0d51a16838788078686082', 'to': '0xd3a08888778ad7d5e61aaefaa0b91f84ecefafc1', 'value': 2600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8cf23f909c0fa00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T06:33:05.000Z'}}, {'blockNum': '0xa54a88', 'uniqueId': '0xbf66dc4e56424830ce129087f4a1c8fbc5ad1eaebd99ab32e0d299e9579fa4c3:log:4', 'hash': '0xbf66dc4e56424830ce129087f4a1c8fbc5ad1eaebd99ab32e0d299e9579fa4c3', 'from': '0xbc9dd9a2f7f48f4e895f5527a1e3880400faa2e3', 'to': '0xa90e24f3d4acc3fe642ae2e8fde06be03923dc4a', 'value': 750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x28a857425466f80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T07:03:46.000Z'}}, {'blockNum': '0xa54bff', 'uniqueId': '0xdf4589ab31376a50c6a6f9c54d37914cdefa133778246d76488d3bbb8ad333d5:log:339', 'hash': '0xdf4589ab31376a50c6a6f9c54d37914cdefa133778246d76488d3bbb8ad333d5', 'from': '0xa163e2cef5095a49d9174b6c36a2ac9790def114', 'to': '0xa7792a7fe379c0603ddc7e2ac3cc3a479995fd29', 'value': 1692.973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5bc6b855be9f648000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T08:26:09.000Z'}}, {'blockNum': '0xa54cad', 'uniqueId': '0xcf7e3c6461f22b96218f2916c397c13a104469735278d4a5a1d1d5c2358db40d:log:52', 'hash': '0xcf7e3c6461f22b96218f2916c397c13a104469735278d4a5a1d1d5c2358db40d', 'from': '0x46e56e4c807257caa443895aa43113beb96f7c80', 'to': '0xfbd2b1430831265168761393f5ef652a3b3a467c', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T09:08:49.000Z'}}, {'blockNum': '0xa54caf', 'uniqueId': '0xb2b99afbdf33b6bb7d1d5714b66410aea6233cabaf8041b4e75401cbff39b660:log:69', 'hash': '0xb2b99afbdf33b6bb7d1d5714b66410aea6233cabaf8041b4e75401cbff39b660', 'from': '0xfbd2b1430831265168761393f5ef652a3b3a467c', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T09:09:46.000Z'}}, {'blockNum': '0xa54fcb', 'uniqueId': '0x63fb4129255985df8cd96aa96cb5c1a8f2fdd828b9df7b4f58e8d6462c610fdd:log:17', 'hash': '0x63fb4129255985df8cd96aa96cb5c1a8f2fdd828b9df7b4f58e8d6462c610fdd', 'from': '0xb809a8bb26205d0175159aa279100d73ccf88019', 'to': '0xf88db2e3c660a1c81ad2c931fab6018a2ef85d6e', 'value': 655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2381f375a948dc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T12:02:58.000Z'}}, {'blockNum': '0xa550d9', 'uniqueId': '0x68d8d17dc539936f58d947630f99789395422c1103de517e166b38924462992d:log:70', 'hash': '0x68d8d17dc539936f58d947630f99789395422c1103de517e166b38924462992d', 'from': '0x4aef5b44b4c2375c6fd9ef7fe93659be99855d15', 'to': '0x85bf95ed670ec5e28e05c4ce32a8e40e953d32eb', 'value': 291.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0fce11ac4d49230000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T12:58:31.000Z'}}, {'blockNum': '0xa551e2', 'uniqueId': '0x11f090bec9086f83b2d9b95af80e074f81dceffd44cb8ae53d86f8fa04aded6d:log:179', 'hash': '0x11f090bec9086f83b2d9b95af80e074f81dceffd44cb8ae53d86f8fa04aded6d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ba514533859993267bd02246b7151af5c5d4627', 'value': 67996.50864537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e66191e6005686f4400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T13:59:05.000Z'}}, {'blockNum': '0xa551fa', 'uniqueId': '0x85a1dbb2d3c72d2d5f9a93145871ff5aff317eef1b3cf83cde8b105dda412b14:log:222', 'hash': '0x85a1dbb2d3c72d2d5f9a93145871ff5aff317eef1b3cf83cde8b105dda412b14', 'from': '0x916ed5586bb328e0ec1a428af060dc3d10919d84', 'to': '0x965e69ea946bb17754896aece59776567ba083f5', 'value': 1400.00004522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4be4e74f9c04e96800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:03:14.000Z'}}, {'blockNum': '0xa55256', 'uniqueId': '0x35d8d404f42b97d30f16bfaf477b1b6b8f5cebfb0efaad985dc79c6bb68fd979:log:326', 'hash': '0x35d8d404f42b97d30f16bfaf477b1b6b8f5cebfb0efaad985dc79c6bb68fd979', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 19516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0421f6e827cceb700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:25:23.000Z'}}, {'blockNum': '0xa552a2', 'uniqueId': '0x017d223844b7b5394161faede3c9be2f3f01aff14d161d5cef1256eb7c3842e5:log:300', 'hash': '0x017d223844b7b5394161faede3c9be2f3f01aff14d161d5cef1256eb7c3842e5', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 19516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0421f6e827cceb700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:41:00.000Z'}}, {'blockNum': '0xa552e1', 'uniqueId': '0xa7fcf2c997aa9e1d8b72d282c2201a1bd4a045be21ba65f8145ad7c86b09d20c:log:117', 'hash': '0xa7fcf2c997aa9e1d8b72d282c2201a1bd4a045be21ba65f8145ad7c86b09d20c', 'from': '0x43238608111fe51641ad1aa6a29d5f19a74037e7', 'to': '0x52ca04c6d2b22028b10e1c9e3c50e66fbc4ff3ce', 'value': 1132.140284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3d5f9a45f631dbc000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T14:56:41.000Z'}}, {'blockNum': '0xa553a4', 'uniqueId': '0x9f0eced6b699d4967a61dcc77a23053c6e212608b570cf169d58d01d673f11ed:log:95', 'hash': '0x9f0eced6b699d4967a61dcc77a23053c6e212608b570cf169d58d01d673f11ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe2a90a2cdb4895f2b636c9554999c6f048104a76', 'value': 761.98016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x294e99566047500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T15:34:01.000Z'}}, {'blockNum': '0xa5543c', 'uniqueId': '0xe70ac19bbd08d0cff397b777a3a1f4aad99c531af052953b0de5b9a8ae9760a0:log:155', 'hash': '0xe70ac19bbd08d0cff397b777a3a1f4aad99c531af052953b0de5b9a8ae9760a0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xc767a51199c410028ca360313fb419b9f1755381', 'value': 63042.997167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d5991566345b085f000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:09:16.000Z'}}, {'blockNum': '0xa55476', 'uniqueId': '0xafe438ef7a0dead99046639e145fd8155418fba7ec1a157f837e8c3ff6a80e88:log:113', 'hash': '0xafe438ef7a0dead99046639e145fd8155418fba7ec1a157f837e8c3ff6a80e88', 'from': '0xc767a51199c410028ca360313fb419b9f1755381', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 63042.997167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d5991566345b085f000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:22:55.000Z'}}, {'blockNum': '0xa554b9', 'uniqueId': '0x2ee017b7f3af2cff24b3f5e76fcef52ec0309d12bd70c8335738d27250e7d01b:log:25', 'hash': '0x2ee017b7f3af2cff24b3f5e76fcef52ec0309d12bd70c8335738d27250e7d01b', 'from': '0x80b5b304c0eac3041b4507bb1c879d8e5745dcac', 'to': '0xab3f245f647844882f3734c5f18a56deb3ea5bf2', 'value': 8477.05308691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01cb8abe75314719ec00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:37:44.000Z'}}, {'blockNum': '0xa554bf', 'uniqueId': '0x886fb25b8c70e1c57630413dcf1cc5a8e5cd39e4a05ada7bf266aef76049d610:log:13', 'hash': '0x886fb25b8c70e1c57630413dcf1cc5a8e5cd39e4a05ada7bf266aef76049d610', 'from': '0xab3f245f647844882f3734c5f18a56deb3ea5bf2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 8477.05308691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01cb8abe75314719ec00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:39:03.000Z'}}, {'blockNum': '0xa554ec', 'uniqueId': '0x36295705d97cd3220ce798b8a6377143533c39f69bce69bc0c526657f1eb1e2e:log:226', 'hash': '0x36295705d97cd3220ce798b8a6377143533c39f69bce69bc0c526657f1eb1e2e', 'from': '0xbdde2c395cf206f061dfa9e0574dc2c535bdc866', 'to': '0xcf9d83b04f61e15f3d173a5bd857b25c49ed991b', 'value': 5129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01160b2c7564b2840000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T16:47:45.000Z'}}, {'blockNum': '0xa5554f', 'uniqueId': '0x581f7973256fc2a603932cccae4cd6d09f11bda8a43e30d10164b00c901347a4:log:86', 'hash': '0x581f7973256fc2a603932cccae4cd6d09f11bda8a43e30d10164b00c901347a4', 'from': '0x901b68e2099f83dcd6e443c86146969ef837ed37', 'to': '0xff152f5a5031f04879b1677dd0adac7100fd397c', 'value': 6977.432264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017a3f530c1665948000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T17:04:52.000Z'}}, {'blockNum': '0xa55567', 'uniqueId': '0xeb8a08261d1009f39cacded2d08247afd348adff068ff7cbf6b8f2a0991c94bc:log:11', 'hash': '0xeb8a08261d1009f39cacded2d08247afd348adff068ff7cbf6b8f2a0991c94bc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x615dc707447425d413ae52d88361fca08fcc4d8f', 'value': 4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3782dace9d900000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T17:10:32.000Z'}}, {'blockNum': '0xa55729', 'uniqueId': '0xb63230b1c754e2d798fc278e33ba3ed207a2efe8004ab081f1aa1dcb1a9c07cb:log:321', 'hash': '0xb63230b1c754e2d798fc278e33ba3ed207a2efe8004ab081f1aa1dcb1a9c07cb', 'from': '0x42f8ceaa89716aa27641b3c7ac6ebbed438dc4d2', 'to': '0xf85ecef24e975f4ccb2d565e1c2c7217c09a9dce', 'value': 108624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x170084d2a561ef400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T18:48:14.000Z'}}, {'blockNum': '0xa557a5', 'uniqueId': '0xa3c9321bd75857077ab663065fea52bfd8d5eaae81b16ad0e071c361206e44db:log:178', 'hash': '0xa3c9321bd75857077ab663065fea52bfd8d5eaae81b16ad0e071c361206e44db', 'from': '0x51519e8e257bb13da00d049f5e83fb5c5f1e90a5', 'to': '0x1e2fe4656a727e378ab943d2f78d0f7de4a9a5e2', 'value': 19885.021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0435f81a1c24b6dc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T19:12:04.000Z'}}, {'blockNum': '0xa558cb', 'uniqueId': '0x53b59dbb3c20fef18ea44ce1c11d53193e4eeb2e82f933bffb18c6f9f0b0b3a5:log:16', 'hash': '0x53b59dbb3c20fef18ea44ce1c11d53193e4eeb2e82f933bffb18c6f9f0b0b3a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 4849.60825431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0106e5d594f81dca7c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:15:12.000Z'}}, {'blockNum': '0xa558d3', 'uniqueId': '0xa6fcc062cddec883747dabe33348d828036d29a9fae4c20adab290900f4d4b5d:log:235', 'hash': '0xa6fcc062cddec883747dabe33348d828036d29a9fae4c20adab290900f4d4b5d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1b56397606cf6c002f7448c0cdbcf0ff6a66caaa', 'value': 4801.10825431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010444c2f7eee7587c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:17:27.000Z'}}, {'blockNum': '0xa5592d', 'uniqueId': '0xd48a44f27db2dae4f47e5725e02299bfc48086888f365c7e182f1f772003d159:log:90', 'hash': '0xd48a44f27db2dae4f47e5725e02299bfc48086888f365c7e182f1f772003d159', 'from': '0x8a5c8e3c71dc4c17a8baecec1a964ee117626e7c', 'to': '0xe6d40c83026565bfe4cf8556ffd91adffc29ebf4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:36:36.000Z'}}, {'blockNum': '0xa55949', 'uniqueId': '0xcaf09be6608f5dcacf5a0bda799b1c5f68e703793f02f4625db189485dccde5f:log:96', 'hash': '0xcaf09be6608f5dcacf5a0bda799b1c5f68e703793f02f4625db189485dccde5f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5398e5e01484b1eb6c9c1af59eb2c58b640c4199', 'value': 4231.667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xe5662d3c2ad6eb8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T20:44:59.000Z'}}, {'blockNum': '0xa55be1', 'uniqueId': '0x36f41a7e2be66246375879edd8466674cbf2cb967eddb1a493c8fafe3ada4aab:log:26', 'hash': '0x36f41a7e2be66246375879edd8466674cbf2cb967eddb1a493c8fafe3ada4aab', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac254864d699b72bedb911ab3629b25beb31b693', 'value': 5494.403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0129da28b1e7c0938000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-10T23:18:19.000Z'}}, {'blockNum': '0xa55d1d', 'uniqueId': '0xbb739e9ed3f9e3f09f30403767e008c437c6c307133ad8b2d1449fbe7b0327ec:log:260', 'hash': '0xbb739e9ed3f9e3f09f30403767e008c437c6c307133ad8b2d1449fbe7b0327ec', 'from': '0x7fe3239b89a39212ca944118c2f2e3d8b513d369', 'to': '0x5ead215dac720e5127bd314374b68a4b6f38d0d9', 'value': 1345.44958279334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x48efdd230d9a8c881e', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T00:21:42.000Z'}}, {'blockNum': '0xa55e40', 'uniqueId': '0x4f541ecd74b6fc7087a348250ccadd115d3753be4ca9905c316a49af1f4ee52b:log:46', 'hash': '0x4f541ecd74b6fc7087a348250ccadd115d3753be4ca9905c316a49af1f4ee52b', 'from': '0x97ab7b00c9b1ddf0d8e11dafe81acb5bc06f909a', 'to': '0x769c8be7616097e7314899700ac85d60976f427c', 'value': 3589.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc293ceb579104d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T01:27:41.000Z'}}, {'blockNum': '0xa55efa', 'uniqueId': '0xa2e7257c3b3b7d7c9953446014ea47d721c6b11f4f3b15f6185d4a3b774f3e31:log:183', 'hash': '0xa2e7257c3b3b7d7c9953446014ea47d721c6b11f4f3b15f6185d4a3b774f3e31', 'from': '0x916ed5586bb328e0ec1a428af060dc3d10919d84', 'to': '0xed9510f826a20b07e427472c9faef10a8e19de6c', 'value': 20024.2791545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x043d84b275d6ffd3a800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:07:27.000Z'}}, {'blockNum': '0xa55f14', 'uniqueId': '0x578ba75a79ed4ff60cdc3d0ca53e42a004eebc0f7b8621dd5232338f9d83bfa5:log:85', 'hash': '0x578ba75a79ed4ff60cdc3d0ca53e42a004eebc0f7b8621dd5232338f9d83bfa5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 32481.398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06e0d1f2fb2d837f0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:13:00.000Z'}}, {'blockNum': '0xa55f16', 'uniqueId': '0xe6475e46bd3ceef5d644c37c2ee0c8bed60ed7b4c5acaca97b0e6f78c87e79a5:log:0', 'hash': '0xe6475e46bd3ceef5d644c37c2ee0c8bed60ed7b4c5acaca97b0e6f78c87e79a5', 'from': '0x016d574d8f9728f3b0073e37c3972e32683b31f1', 'to': '0x6dd4b492f020c6afb31e06c8564a7527aac8e8ed', 'value': 3957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd6826806ea5cb40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:13:42.000Z'}}, {'blockNum': '0xa55f1e', 'uniqueId': '0x0a82ad46b41fd55f0a136307ed64ab3c28f5d95953bc3c6ff34d7b0327d44180:log:136', 'hash': '0x0a82ad46b41fd55f0a136307ed64ab3c28f5d95953bc3c6ff34d7b0327d44180', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9a340d72007fe5a8076db602687fbed636363dd', 'value': 1914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x67c215fb3181a80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:14:59.000Z'}}, {'blockNum': '0xa55f88', 'uniqueId': '0x7e7d3e51a79453a118312bef5db6ff100ed949e01ae2b45c4ab68a40b4e87243:log:13', 'hash': '0x7e7d3e51a79453a118312bef5db6ff100ed949e01ae2b45c4ab68a40b4e87243', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5fafae3633d0d7e7a006629e16414b2985a904c8', 'value': 95405.413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1433f013cbf542d08000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:40:11.000Z'}}, {'blockNum': '0xa55fe8', 'uniqueId': '0x32df0a1f1819a005746c3d71d022efd95eaf8b35351d78eff88fa81f31ed3646:log:55', 'hash': '0x32df0a1f1819a005746c3d71d022efd95eaf8b35351d78eff88fa81f31ed3646', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5fafae3633d0d7e7a006629e16414b2985a904c8', 'value': 154914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x20cde79ed6738f480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T02:58:50.000Z'}}, {'blockNum': '0xa56047', 'uniqueId': '0xe03beee665f9fc5dc12aa98adf74105f52a5d80213631ea4dae5924b61e036a4:log:147', 'hash': '0xe03beee665f9fc5dc12aa98adf74105f52a5d80213631ea4dae5924b61e036a4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x86925ddeea557ee955aafc75e08450ab5d90229c', 'value': 3461.988266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xbbacbd1186ec8ca000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:18:41.000Z'}}, {'blockNum': '0xa56074', 'uniqueId': '0x76ef80f69084c87f7a1bbda1d589a15736dc0079cc4d3969c33227dc1a8b802d:log:115', 'hash': '0x76ef80f69084c87f7a1bbda1d589a15736dc0079cc4d3969c33227dc1a8b802d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 23241.649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04ebeeac51f750be8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:28:43.000Z'}}, {'blockNum': '0xa5609b', 'uniqueId': '0x47cc831f0c8460624b2564ce68c5bcfd69539a6f960b41a01300a2db4f3decc2:log:55', 'hash': '0x47cc831f0c8460624b2564ce68c5bcfd69539a6f960b41a01300a2db4f3decc2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2057.89244169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6f8efea0891db70400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:36:34.000Z'}}, {'blockNum': '0xa560a1', 'uniqueId': '0x4b6caed6747fbe878d2706055270ebe5a375a0eeefafe6045aeed42668a47fc4:log:145', 'hash': '0x4b6caed6747fbe878d2706055270ebe5a375a0eeefafe6045aeed42668a47fc4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4fcdcdc5ad5d26568de9cea8d8b566600695024a', 'value': 2014.89244169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6d3a3ff05bffeb0400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:38:40.000Z'}}, {'blockNum': '0xa560d8', 'uniqueId': '0xd841874260ee89d273de410d99906976a6331ef375ea4a83fb48e1730f1d02ff:log:108', 'hash': '0xd841874260ee89d273de410d99906976a6331ef375ea4a83fb48e1730f1d02ff', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xecc9b11609852d42f89ee2b0c9bc11af9c806bfe', 'value': 22891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04d8ec70d248bacc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:50:46.000Z'}}, {'blockNum': '0xa560e2', 'uniqueId': '0x5faaea6d5c51c0f7e0687b0ad6df5a9dd9c89e5c2d71caa6a8ceab40812820d0:log:151', 'hash': '0x5faaea6d5c51c0f7e0687b0ad6df5a9dd9c89e5c2d71caa6a8ceab40812820d0', 'from': '0xe28a24ce2f3bbbd0020cfcfbc1e011dd025d5d25', 'to': '0x0a05e2e9d6333387d4f634b08fff5210292f5561', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5de9ffb72', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:52:43.000Z'}}, {'blockNum': '0xa560e4', 'uniqueId': '0x08ece819af067efa0a3adf1a8ae8a828d3cbf5f0db44a57343da402fa38d87b8:log:145', 'hash': '0x08ece819af067efa0a3adf1a8ae8a828d3cbf5f0db44a57343da402fa38d87b8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6f9b3fcf1f2c006d2cb7594dc95ecf094f87111a', 'value': 16897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0393fcfb07db6f640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-09-11T03:52:59.000Z'}}]}}
Number of returned transfers:  44
Answer is complete
 
symbol             GVT
group              BPF
date        2020-09-17
hour             18:00
exchange       binance
Name: 846, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-09-17 18:00:00 2020-09-17 06:00:00 2020-09-18 06:00:00
Unix timestamps:  1600315200.0 1600401600.0
Hex Block Numbers:  0xa5f9af 0xa61337
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RDN
group              BPF
date        2020-10-17
hour             16:00
exchange       binance
Name: 847, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-10-17 16:00:00 2020-10-17 04:00:00 2020-10-18 04:00:00
Unix timestamps:  1602900000.0 1602986400.0
Hex Block Numbers:  0xa8ec89 0xa905eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa8ecb4', 'uniqueId': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755:log:224', 'hash': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T02:08:16.000Z'}}, {'blockNum': '0xa8f093', 'uniqueId': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4:log:185', 'hash': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4', 'from': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T05:43:33.000Z'}}, {'blockNum': '0xa8f1fe', 'uniqueId': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56:log:4', 'hash': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1920.9350643831335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68225447819cca98f3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:06:47.000Z'}}, {'blockNum': '0xa8f201', 'uniqueId': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f:log:56', 'hash': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:16.000Z'}}, {'blockNum': '0xa8f202', 'uniqueId': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b:log:151', 'hash': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:54.000Z'}}, {'blockNum': '0xa8f245', 'uniqueId': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187:log:214', 'hash': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187', 'from': '0x6d377c45cf8c9d19bb6cfdb0c93ccf979026d3f8', 'to': '0xf8622783483722aa2b8d3f689a18d3a79466cb8e', 'value': 1534.9389518395485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x53358e9c3e32b613c3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:23:04.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:181', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:182', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f449', 'uniqueId': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998:log:14', 'hash': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3751.993885394774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcb655fffd9d93247fd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:20:35.000Z'}}, {'blockNum': '0xa8f44b', 'uniqueId': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75:log:169', 'hash': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3744.4898976239847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcafd3c7abb34680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:21:04.000Z'}}, {'blockNum': '0xa8f458', 'uniqueId': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69:log:18', 'hash': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:24:29.000Z'}}, {'blockNum': '0xa8f46d', 'uniqueId': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3:log:45', 'hash': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3', 'from': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:30:03.000Z'}}, {'blockNum': '0xa8f595', 'uniqueId': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9:log:32', 'hash': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 17678.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03be5a78c54aef2a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:34:47.000Z'}}, {'blockNum': '0xa8f5cc', 'uniqueId': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e:log:137', 'hash': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e', 'from': '0x4569cd9d62f1db5b59fd504e7e80777274299329', 'to': '0x88793a5eaf644825d78f5730c2f482437e3aeb4d', 'value': 53187.0905255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4347280ba8cbc95800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:46:15.000Z'}}, {'blockNum': '0xa8f60b', 'uniqueId': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d:log:139', 'hash': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d', 'from': '0x2cedc44ec7fc775caa42acbfb3deae7ed4af24fa', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:59:37.000Z'}}, {'blockNum': '0xa8f60e', 'uniqueId': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460:log:60', 'hash': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20115.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0442727a311a51800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:00:16.000Z'}}, {'blockNum': '0xa8f63e', 'uniqueId': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548:log:11', 'hash': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3671.6538336414615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc70a6ecc70f081bc09', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:08:59.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:46', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 915.2487882567699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da0e3b93f7af2d3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:47', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 915.2486178129188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da048b4b2480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:96', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 802.7683055095091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a5f09cb48c2e26', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:97', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 802.7681757273997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a57a9374040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f644', 'uniqueId': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120:log:240', 'hash': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3664.3105259741783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc6a486210637b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:43.000Z'}}, {'blockNum': '0xa8f68c', 'uniqueId': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23:log:305', 'hash': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23', 'from': '0x21821de67396f6811e02350e8cdab0805e7dceee', 'to': '0xd44efb5e3e0056de640240943e0c65c9e8865c9f', 'value': 102.9988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0595653ee393810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:23.000Z'}}, {'blockNum': '0xa8f68d', 'uniqueId': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea:log:44', 'hash': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19127.96132155865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040cedc9d5acd2e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:25.000Z'}}, {'blockNum': '0xa8f6f6', 'uniqueId': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4:log:208', 'hash': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4', 'from': '0xafd3e0b651e9379971aaf34683553c7553a06e60', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:52:18.000Z'}}, {'blockNum': '0xa8f761', 'uniqueId': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f:log:77', 'hash': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2bec9497ff7851c94e105143865da680feb91d09', 'value': 3731.0985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xca4364ad8afccc4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:13:15.000Z'}}, {'blockNum': '0xa8f7f9', 'uniqueId': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1:log:325', 'hash': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1', 'from': '0xe0782ace187e676f08a32e96b32d77712ef0b073', 'to': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:43:05.000Z'}}, {'blockNum': '0xa8f81c', 'uniqueId': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920:log:220', 'hash': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920', 'from': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:50:42.000Z'}}, {'blockNum': '0xa8f8eb', 'uniqueId': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea:log:51', 'hash': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea', 'from': '0x7946632863fbb0a914b3c0e5f74e1c3c98ca64df', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bdd2ed4b616c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:34:04.000Z'}}, {'blockNum': '0xa8f908', 'uniqueId': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487:log:46', 'hash': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9221.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01f3e8cbbb56e3ba0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:41:42.000Z'}}, {'blockNum': '0xa8f978', 'uniqueId': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313:log:280', 'hash': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313', 'from': '0x20990b7688861fd6d8f45efc1ffb051bb030532c', 'to': '0xca499253c4928a5bd1ee59df395e8a5a59a2e78d', 'value': 1436.496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ddf62fd1e35880000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:05:42.000Z'}}, {'blockNum': '0xa8f980', 'uniqueId': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21:log:33', 'hash': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:07:44.000Z'}}, {'blockNum': '0xa8f987', 'uniqueId': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8:log:10', 'hash': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:08:59.000Z'}}, {'blockNum': '0xa8fa2f', 'uniqueId': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0:log:63', 'hash': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8210.20036828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01bd136b2771deaff000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:51:54.000Z'}}, {'blockNum': '0xa8fa3e', 'uniqueId': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01:log:97', 'hash': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 8425.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8bde9d451502c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:55:16.000Z'}}, {'blockNum': '0xa8fa42', 'uniqueId': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14:log:55', 'hash': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2687.8488746452704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x91b56576a7fcc638f2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:57:20.000Z'}}, {'blockNum': '0xa8fa45', 'uniqueId': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558:log:80', 'hash': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2682.4731768959796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x916acb2608ee700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:58:00.000Z'}}, {'blockNum': '0xa8fa51', 'uniqueId': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728:log:244', 'hash': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17647.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03bca6b58fa833e60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:00:21.000Z'}}, {'blockNum': '0xa8fa95', 'uniqueId': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e:log:35', 'hash': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9347.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01fac02c32b402060000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:12:35.000Z'}}, {'blockNum': '0xa8faca', 'uniqueId': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7:log:240', 'hash': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7', 'from': '0x365cc1f75cf0b70fe780880941d50d29913c0bd9', 'to': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'value': 460.3016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18f3f7ca6ae7f20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:25:24.000Z'}}, {'blockNum': '0xa8fad9', 'uniqueId': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048:log:8', 'hash': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 7894.37634788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01abf47ad632c8f71000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:28:16.000Z'}}, {'blockNum': '0xa8fae1', 'uniqueId': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd:log:190', 'hash': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd', 'from': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16104.57671616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x036907e5fda4a7a70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:12.000Z'}}, {'blockNum': '0xa8fae2', 'uniqueId': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437:log:191', 'hash': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2645.4825284988124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f6971f74d71e909dc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:36.000Z'}}, {'blockNum': '0xa8fae3', 'uniqueId': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc:log:25', 'hash': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 6379.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0159dae5ffd752a60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:31:33.000Z'}}, {'blockNum': '0xa8fae6', 'uniqueId': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f:log:116', 'hash': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2640.1915634418147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f2004ae9dac900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:32:33.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:270', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.1690587715337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1a68792eb236a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:271', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.1688955867392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1121d27340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:211', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.6411287288056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7ec7a7933d7b15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:212', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.640969434666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7e36c704a20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8fb53', 'uniqueId': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88:log:2', 'hash': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2631.747487065685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8eaad54be3f51a7746', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:58:56.000Z'}}, {'blockNum': '0xa8fb56', 'uniqueId': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85:log:86', 'hash': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2626.483992091554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8e61c99b1942f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:59:40.000Z'}}, {'blockNum': '0xa8fb58', 'uniqueId': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27:log:10', 'hash': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 4789.840710473679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0103a8649c83184dfaf0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:02.000Z'}}, {'blockNum': '0xa8fb59', 'uniqueId': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac:log:6', 'hash': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:09.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20:log:54', 'hash': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3201.3953312184785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad8c48fc0617700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:140', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 939.6958340005638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e63e4d360a9081', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:141', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 939.6956546240192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e59b28dad20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d:log:234', 'hash': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5b', 'uniqueId': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e:log:12', 'hash': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8354.3388098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c4e3bdc4543cb3d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:43.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:27', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:28', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962:log:229', 'hash': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:84', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:85', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5f', 'uniqueId': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db:log:27', 'hash': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 3693.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc83dc5c968a9e40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:06.000Z'}}, {'blockNum': '0xa8fb65', 'uniqueId': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a:log:141', 'hash': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:58.000Z'}}, {'blockNum': '0xa8fb6e', 'uniqueId': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310:log:155', 'hash': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3509.380443638334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbe3e6fe7fe9da893e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:04:54.000Z'}}, {'blockNum': '0xa8fb79', 'uniqueId': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f:log:110', 'hash': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f', 'from': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'to': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:06:51.000Z'}}, {'blockNum': '0xa8fb7b', 'uniqueId': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda:log:57', 'hash': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 1993.8410352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c161a51b11d1d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:23.000Z'}}, {'blockNum': '0xa8fb7c', 'uniqueId': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907:log:37', 'hash': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907', 'from': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:31.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b:log:80', 'hash': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b', 'from': '0xd11c25af01d25e5ff28a6a5760db795dafbb3d9d', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 11568.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x027322c1a65c86108000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:89', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:95', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:259', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 974.7458636748125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750f6965a899802', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:264', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 974.7458352341208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750dcb87d360000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbe3', 'uniqueId': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd:log:157', 'hash': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd', 'from': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20749.25970527027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0464d1d2c7a760d0bc82', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:12.000Z'}}, {'blockNum': '0xa8fbe4', 'uniqueId': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac:log:57', 'hash': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19421.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x041cd8d7fbf3fe900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:25.000Z'}}, {'blockNum': '0xa8fd1a', 'uniqueId': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900:log:69', 'hash': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:38:01.000Z'}}, {'blockNum': '0xa8fd23', 'uniqueId': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f:log:168', 'hash': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:41:08.000Z'}}, {'blockNum': '0xa8fd71', 'uniqueId': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab:log:64', 'hash': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'value': 12386.9501916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f776262a6d76000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:54:38.000Z'}}, {'blockNum': '0xa8fd9a', 'uniqueId': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87:log:42', 'hash': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:03:43.000Z'}}, {'blockNum': '0xa8fd9e', 'uniqueId': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744:log:118', 'hash': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:05:01.000Z'}}, {'blockNum': '0xa8fdd7', 'uniqueId': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901:log:72', 'hash': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 11686.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279813752637c620000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:18:22.000Z'}}, {'blockNum': '0xa8fddb', 'uniqueId': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2:log:50', 'hash': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:19:33.000Z'}}, {'blockNum': '0xa8fde5', 'uniqueId': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5:log:191', 'hash': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:21:35.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:118', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x175789024955c56b06a618806fc13df71d08a377', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:124', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x175789024955c56b06a618806fc13df71d08a377', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdfe', 'uniqueId': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed:log:33', 'hash': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:28:22.000Z'}}, {'blockNum': '0xa8fe07', 'uniqueId': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112:log:61', 'hash': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:30:17.000Z'}}, {'blockNum': '0xa8fe2e', 'uniqueId': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9:log:24', 'hash': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:40:49.000Z'}}, {'blockNum': '0xa8fe35', 'uniqueId': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1:log:260', 'hash': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:43:34.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:105', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:110', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe68', 'uniqueId': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14:log:5', 'hash': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:55:04.000Z'}}, {'blockNum': '0xa8fe6f', 'uniqueId': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b:log:209', 'hash': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:56:04.000Z'}}, {'blockNum': '0xa8fe96', 'uniqueId': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf:log:34', 'hash': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1883.10000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66154320eaee21e400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:04:02.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:355', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:359', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa900ab', 'uniqueId': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0:log:269', 'hash': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0', 'from': '0x6a12a09de38346d13f55879e31476b0c53cd2f08', 'to': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T21:07:05.000Z'}}, {'blockNum': '0xa901ad', 'uniqueId': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68:log:35', 'hash': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:02:46.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f:log:45', 'hash': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f', 'from': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:60', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 941.1110033730682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489ef59172daa71', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:65', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 941.1109779568085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489d83b680c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901ba', 'uniqueId': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5:log:0', 'hash': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xbd0e6a324df058e2581506101a50a7596fe623ed', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:04:38.000Z'}}, {'blockNum': '0xa901c3', 'uniqueId': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c:log:130', 'hash': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c', 'from': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:06:40.000Z'}}, {'blockNum': '0xa904bd', 'uniqueId': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54:log:264', 'hash': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x9198b2637af936766e85a888d6097492a50bf3e8', 'value': 267.26938943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e7d1b9da1f6b11c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T00:46:56.000Z'}}]}}
Number of returned transfers:  105
Answer is complete
 
symbol             OAX
group              BPF
date        2020-10-18
hour             18:00
exchange       binance
Name: 848, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-10-18 18:00:00 2020-10-18 06:00:00 2020-10-19 06:00:00
Unix timestamps:  1602993600.0 1603080000.0
Hex Block Numbers:  0xa907f1 0xa92179
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa908ed', 'uniqueId': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c:log:88', 'hash': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T04:56:29.000Z'}}, {'blockNum': '0xa909a8', 'uniqueId': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d:log:0', 'hash': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d', 'from': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'to': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T05:33:11.000Z'}}, {'blockNum': '0xa90b9a', 'uniqueId': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b:log:16', 'hash': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 2650.3261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8faca9c9eba6694000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:25:36.000Z'}}, {'blockNum': '0xa90bbd', 'uniqueId': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e:log:16', 'hash': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 189569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x28248e5b606469640000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:35:12.000Z'}}, {'blockNum': '0xa916d6', 'uniqueId': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd:log:2', 'hash': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:03.000Z'}}, {'blockNum': '0xa916d9', 'uniqueId': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384:log:0', 'hash': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:56.000Z'}}, {'blockNum': '0xa917f0', 'uniqueId': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb:log:59', 'hash': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:01:22.000Z'}}, {'blockNum': '0xa917f5', 'uniqueId': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9:log:6', 'hash': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9', 'from': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:02:47.000Z'}}, {'blockNum': '0xa91807', 'uniqueId': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4:log:32', 'hash': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:06:07.000Z'}}, {'blockNum': '0xa9180f', 'uniqueId': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a:log:16', 'hash': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:08:50.000Z'}}, {'blockNum': '0xa9182b', 'uniqueId': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c:log:23', 'hash': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c', 'from': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'to': '0xee61f5fb0db81d3a09392375ee96f723c0620e07', 'value': 6237.16825793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01521e18fca7539ee400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:16:33.000Z'}}, {'blockNum': '0xa91bd7', 'uniqueId': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084:log:134', 'hash': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T22:47:53.000Z'}}, {'blockNum': '0xa91c37', 'uniqueId': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532:log:248', 'hash': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 1109.7472995507262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3c28d6693f8a0c9a5a', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T23:10:16.000Z'}}]}}
Number of returned transfers:  13
Answer is complete
 
symbol            DUSK
group              BPF
date        2020-10-30
hour             16:01
exchange       binance
Name: 849, dtype: object
HERE
 Symbol: DUSK, Contract: 0x940a2db1b7008b6c776d4faaca729d6d4a4aa551
Datetime timestamps:  2020-10-30 16:01:00 2020-10-30 04:01:00 2020-10-31 04:01:00
Unix timestamps:  1604026860.0 1604113260.0
Hex Block Numbers:  0xaa3892 0xaa51e5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaa3b48', 'uniqueId': '0xf245c666372cab91278da76ae392db6c57efec035cc88b9390a810806065005e:log:209', 'hash': '0xf245c666372cab91278da76ae392db6c57efec035cc88b9390a810806065005e', 'from': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'to': '0x6e730912c4b90960e2de76791376969fb99d39a8', 'value': 2162.725649173735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x753dd8ff4fda8bcdbb', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T05:34:59.000Z'}}, {'blockNum': '0xaa3cb6', 'uniqueId': '0x05d597e6a6c78b55c207aa53540d765b234f7b5396540983c48d131eb4411cea:log:14', 'hash': '0x05d597e6a6c78b55c207aa53540d765b234f7b5396540983c48d131eb4411cea', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9eda3fb4166f753809282c4810ad26f40e78fbd4', 'value': 4923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x010ae05970d4000c0000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T06:56:54.000Z'}}, {'blockNum': '0xaa3f60', 'uniqueId': '0x8e86d0ec105bab556b5e491b850b787b9fc75697bbcd35ffa4839bd6be6fc2fa:log:169', 'hash': '0x8e86d0ec105bab556b5e491b850b787b9fc75697bbcd35ffa4839bd6be6fc2fa', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 16030.17169771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0364ff524393dd044c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T09:27:32.000Z'}}, {'blockNum': '0xaa3f69', 'uniqueId': '0x5d19e01cbb9ecba59f7d3dc88e456e0eaa7a3e5be65386b2f4c36d14149d9365:log:142', 'hash': '0x5d19e01cbb9ecba59f7d3dc88e456e0eaa7a3e5be65386b2f4c36d14149d9365', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36076.53608867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x07a3b6833ef717a62c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T09:30:36.000Z'}}, {'blockNum': '0xaa3f74', 'uniqueId': '0x1d62986c3985f5b0f77ea65416924f1d220e38dd42084d0603e5295ed05efa0b:log:264', 'hash': '0x1d62986c3985f5b0f77ea65416924f1d220e38dd42084d0603e5295ed05efa0b', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 14713.45545501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x031d9e36751a847cd400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T09:33:31.000Z'}}, {'blockNum': '0xaa40de', 'uniqueId': '0x7f0ab2872067dd3260358662ce7f3ecd642f2d217278544ac3683aeb9d5407f3:log:46', 'hash': '0x7f0ab2872067dd3260358662ce7f3ecd642f2d217278544ac3683aeb9d5407f3', 'from': '0xf10eb00e6cd7a611df9fde16f8781e76c1ab5ab7', 'to': '0x83ec27ea3450136a482ca149c860b9eb6c2a6758', 'value': 5100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x011478b7c30abc300000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T10:49:22.000Z'}}, {'blockNum': '0xaa411a', 'uniqueId': '0xf39b8eac43e74e6cfef76068acb28bbf196ab5b2d48de9edfb3d9fcdab623e6a:log:34', 'hash': '0xf39b8eac43e74e6cfef76068acb28bbf196ab5b2d48de9edfb3d9fcdab623e6a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x40782aa0ec6b6df1a52582bcc5e4ed2aac0e440d', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T11:04:34.000Z'}}, {'blockNum': '0xaa412e', 'uniqueId': '0xea10886bb98108117af4b354883998ea7bfc85812b430c677f6dabee16f18340:log:188', 'hash': '0xea10886bb98108117af4b354883998ea7bfc85812b430c677f6dabee16f18340', 'from': '0x40782aa0ec6b6df1a52582bcc5e4ed2aac0e440d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T11:10:15.000Z'}}, {'blockNum': '0xaa419f', 'uniqueId': '0xeb2a51a01aec0bdf434e6dae43fb4b7a25233ef5b1fe031374ae0907b3618ba0:log:14', 'hash': '0xeb2a51a01aec0bdf434e6dae43fb4b7a25233ef5b1fe031374ae0907b3618ba0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x40782aa0ec6b6df1a52582bcc5e4ed2aac0e440d', 'value': 6529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0161f0139be01d640000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T11:35:34.000Z'}}, {'blockNum': '0xaa41b3', 'uniqueId': '0x1f6152c1d493525aa859849c428626e5d0ad4257a147f1a725984ba0f6e5c9cc:log:320', 'hash': '0x1f6152c1d493525aa859849c428626e5d0ad4257a147f1a725984ba0f6e5c9cc', 'from': '0x40782aa0ec6b6df1a52582bcc5e4ed2aac0e440d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0161f0139be01d640000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T11:40:56.000Z'}}, {'blockNum': '0xaa4332', 'uniqueId': '0xa805c45dc0fa4fef43055684dbdc2031fb6bf1503c241c3fb7aac273ceacdc26:log:43', 'hash': '0xa805c45dc0fa4fef43055684dbdc2031fb6bf1503c241c3fb7aac273ceacdc26', 'from': '0xf10eb00e6cd7a611df9fde16f8781e76c1ab5ab7', 'to': '0x83ec27ea3450136a482ca149c860b9eb6c2a6758', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T13:10:30.000Z'}}, {'blockNum': '0xaa4394', 'uniqueId': '0x7e9ce3276e16c31ac9ea74a03efa0720f0ce82817f7ec10d29881ca74e9bbbe6:log:47', 'hash': '0x7e9ce3276e16c31ac9ea74a03efa0720f0ce82817f7ec10d29881ca74e9bbbe6', 'from': '0x83ec27ea3450136a482ca149c860b9eb6c2a6758', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0aaee6651871b9080000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T13:30:12.000Z'}}, {'blockNum': '0xaa44b2', 'uniqueId': '0x02151d1131e9ac749b507458a11b2d0ab4c065795a5a6ed1c2c8de311443e569:log:314', 'hash': '0x02151d1131e9ac749b507458a11b2d0ab4c065795a5a6ed1c2c8de311443e569', 'from': '0xfda0572937e0e4b5dfb8327a8c8a9f7dde86b78d', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 1382.91890789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x4af7daebb52298f400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T14:36:27.000Z'}}, {'blockNum': '0xaa463f', 'uniqueId': '0xd35d02a909deaa676d480c190815a1d47d59f558a3d777ce912f00b8300ecd8f:log:77', 'hash': '0xd35d02a909deaa676d480c190815a1d47d59f558a3d777ce912f00b8300ecd8f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 4684.79963991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xfdf6a7c35da9767c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:01:45.000Z'}}, {'blockNum': '0xaa4647', 'uniqueId': '0x08c9e003200a0331a03f0533d9bfb778345852f17f967ccd85d6133a0625a80b:log:148', 'hash': '0x08c9e003200a0331a03f0533d9bfb778345852f17f967ccd85d6133a0625a80b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3f3c5446d7703c5a7091754677f149560a061c66', 'value': 5383.01333831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0123d0511ec415303c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:03:22.000Z'}}, {'blockNum': '0xaa4649', 'uniqueId': '0xe86f52ae4c4a509d14d4779606610910cbca3c565915a05f89cdb101e656d079:log:224', 'hash': '0xe86f52ae4c4a509d14d4779606610910cbca3c565915a05f89cdb101e656d079', 'from': '0xfd899d1e1a3b6128cf1165587d15a5b2177be540', 'to': '0xc6ab923dbc55548004c8ee1aceecf87c31b665e4', 'value': 68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03afb087b876900000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:03:47.000Z'}}, {'blockNum': '0xaa464b', 'uniqueId': '0x439a472d68b174c0781f9b1bcc7c411440d42a71afcc957fd1c195eb08ae57db:log:203', 'hash': '0x439a472d68b174c0781f9b1bcc7c411440d42a71afcc957fd1c195eb08ae57db', 'from': '0xfc6ed1944c6f8ab954b60604632ace1e2f55b8cd', 'to': '0xf7f91abb419fbc55aa303242e689ca7b2f4791a7', 'value': 68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03afb087b876900000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:04:01.000Z'}}, {'blockNum': '0xaa4657', 'uniqueId': '0x504b98646cbcccda4c151dc6e8834e9f5639fb905c1ce76e38d4fbcae61b1510:log:148', 'hash': '0x504b98646cbcccda4c151dc6e8834e9f5639fb905c1ce76e38d4fbcae61b1510', 'from': '0x1cf0d30bd8934ccb290f7888660ce0c82e08031e', 'to': '0x298d9df2486d3f310e358150ae76b76ac8bbc798', 'value': 68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03afb087b876900000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:06:23.000Z'}}, {'blockNum': '0xaa465c', 'uniqueId': '0x33647bbe42ff4b996473dcccaa52b316ad8e9a1952c3998c5eec42a3ecd75f82:log:49', 'hash': '0x33647bbe42ff4b996473dcccaa52b316ad8e9a1952c3998c5eec42a3ecd75f82', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 17150.1582102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03a1b641aabe900ff000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:07:44.000Z'}}, {'blockNum': '0xaa465c', 'uniqueId': '0xde02dc4e037087fb00ef857592d0de08172d6401c4bb4ca60460272813b58136:log:50', 'hash': '0xde02dc4e037087fb00ef857592d0de08172d6401c4bb4ca60460272813b58136', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 1715.01582102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x5cf8a02aaca8019800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:07:44.000Z'}}, {'blockNum': '0xaa4661', 'uniqueId': '0x7cca82b533dbbdb75f31da9dabc274383fe9edb4c1e684f330220f95db36ed87:log:50', 'hash': '0x7cca82b533dbbdb75f31da9dabc274383fe9edb4c1e684f330220f95db36ed87', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 10589.73377182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x023e121406a7f89eb800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:08:27.000Z'}}, {'blockNum': '0xaa4663', 'uniqueId': '0xf37a8618f0048789e3cf81a2e37c7db4399322a054fa0a8cc32f5c7b5ade2bd9:log:62', 'hash': '0xf37a8618f0048789e3cf81a2e37c7db4399322a054fa0a8cc32f5c7b5ade2bd9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 11827.92281005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0281316728b83a551400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:09:14.000Z'}}, {'blockNum': '0xaa4668', 'uniqueId': '0x6559c54f4ee5f7f59c33b5500f37b89aa9f63461f636f641d5db1cbdbea1d50c:log:15', 'hash': '0x6559c54f4ee5f7f59c33b5500f37b89aa9f63461f636f641d5db1cbdbea1d50c', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 6004.41848839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0145800bb26b09e33c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:09:48.000Z'}}, {'blockNum': '0xaa46c2', 'uniqueId': '0x3c9418dc844ee03dccfb57fa793b29d0a1367a1c1b3353c96756df7cc20eb6f1:log:0', 'hash': '0x3c9418dc844ee03dccfb57fa793b29d0a1367a1c1b3353c96756df7cc20eb6f1', 'from': '0xc99df6b7a5130dce61ba98614a2457daa8d92d1c', 'to': '0xf0b07b2e88136b8489d2a6b872ba9a6e5fc0eb0e', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:28:51.000Z'}}, {'blockNum': '0xaa46c6', 'uniqueId': '0x256966d0b7d44e4b897bf0f7db86884db453d681728dc08c3bbbb0a3af85fdc8:log:172', 'hash': '0x256966d0b7d44e4b897bf0f7db86884db453d681728dc08c3bbbb0a3af85fdc8', 'from': '0xf0b07b2e88136b8489d2a6b872ba9a6e5fc0eb0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:30:02.000Z'}}, {'blockNum': '0xaa46c9', 'uniqueId': '0x58ef59a2ccf0d21e045a098db76763d322831e80ff7efca72af76e4b8bb8a05b:log:20', 'hash': '0x58ef59a2ccf0d21e045a098db76763d322831e80ff7efca72af76e4b8bb8a05b', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50172.78174644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a9fdf380398bf105000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:30:42.000Z'}}, {'blockNum': '0xaa46d1', 'uniqueId': '0x0e2a62f03b4bee253aab29e73faa7b94af2385f4893177901af206db15b2728b:log:168', 'hash': '0x0e2a62f03b4bee253aab29e73faa7b94af2385f4893177901af206db15b2728b', 'from': '0xa7363c8aded763c76d0e426dac42fd99fb7a6f4c', 'to': '0x43a80e4661b8b1a12d129e5d5bc75886fb481673', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:33:11.000Z'}}, {'blockNum': '0xaa4701', 'uniqueId': '0x6fa19d8e50f041b75ac0a4e672df09ff179595e3fe7a0727784929fa2a413911:log:146', 'hash': '0x6fa19d8e50f041b75ac0a4e672df09ff179595e3fe7a0727784929fa2a413911', 'from': '0x8329d2ddac106e0f2c804fe6d9c1c6a0c465ef57', 'to': '0xa1ae88078c1ef9c663f0c9fc417c39633f52a2f6', 'value': 990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x35ab028ac154b80000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:42:13.000Z'}}, {'blockNum': '0xaa4707', 'uniqueId': '0xa4025ecf0505119c678d9c971de72e3cf45c7456524d12bfb6c46738d42079c0:log:22', 'hash': '0xa4025ecf0505119c678d9c971de72e3cf45c7456524d12bfb6c46738d42079c0', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 18122.60779043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03d66db497b472f02c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:43:52.000Z'}}, {'blockNum': '0xaa4707', 'uniqueId': '0xe32b4d3cac0a82280728a644e6dd026b102a7b331cc1c472c504396d2fad3648:log:23', 'hash': '0xe32b4d3cac0a82280728a644e6dd026b102a7b331cc1c472c504396d2fad3648', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 13591.95584282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x02e0d24771c6c1312800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:43:52.000Z'}}, {'blockNum': '0xaa4707', 'uniqueId': '0x37ff168c996109bd03d9411f1038d31481b46769f585a04bf30fde9c5b3ff109:log:24', 'hash': '0x37ff168c996109bd03d9411f1038d31481b46769f585a04bf30fde9c5b3ff109', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 20387.93376423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04513b6b2aaa21c9bc00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:43:52.000Z'}}, {'blockNum': '0xaa4707', 'uniqueId': '0xed4c4ec18e86aeb5aae1389866666fedc087273aea79645f9f28b9c5a98310be:log:25', 'hash': '0xed4c4ec18e86aeb5aae1389866666fedc087273aea79645f9f28b9c5a98310be', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 20387.93376424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04513b6b2aac75d5a000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:43:52.000Z'}}, {'blockNum': '0xaa471c', 'uniqueId': '0x040d21a55eacb572b4c66a6bedbacb10e18589f8a03ab5f1bbf7be60b99eeffc:log:22', 'hash': '0x040d21a55eacb572b4c66a6bedbacb10e18589f8a03ab5f1bbf7be60b99eeffc', 'from': '0xc99df6b7a5130dce61ba98614a2457daa8d92d1c', 'to': '0xf0b07b2e88136b8489d2a6b872ba9a6e5fc0eb0e', 'value': 512717.1382833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x6c9273a688d6d1f26800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:49:37.000Z'}}, {'blockNum': '0xaa474b', 'uniqueId': '0xc744c354d6c11be5511bd7a990f3d3e219e839f013d1c0d5842cff96ceb5fa99:log:150', 'hash': '0xc744c354d6c11be5511bd7a990f3d3e219e839f013d1c0d5842cff96ceb5fa99', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 72490.43116172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0f59b6d25ed1cbc0b000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:00:42.000Z'}}, {'blockNum': '0xaa474b', 'uniqueId': '0xc0efef3d971a332d031043fb57982005f95462addc66c627889388ae71062697:log:178', 'hash': '0xc0efef3d971a332d031043fb57982005f95462addc66c627889388ae71062697', 'from': '0xf0b07b2e88136b8489d2a6b872ba9a6e5fc0eb0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 512717.1382833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x6c9273a688d6d1f26800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:00:42.000Z'}}, {'blockNum': '0xaa474b', 'uniqueId': '0xc4ce81b5d6b664131fdc4c524c38a79eda28842faf69e517ef7f10faff693e39:log:180', 'hash': '0xc4ce81b5d6b664131fdc4c524c38a79eda28842faf69e517ef7f10faff693e39', 'from': '0x43a80e4661b8b1a12d129e5d5bc75886fb481673', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:00:42.000Z'}}, {'blockNum': '0xaa4751', 'uniqueId': '0x1d84af21cf834ba8d86b418342b77e30de13bc9674e5a8e91d189dabdbec05cc:log:238', 'hash': '0x1d84af21cf834ba8d86b418342b77e30de13bc9674e5a8e91d189dabdbec05cc', 'from': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'to': '0xa1ae88078c1ef9c663f0c9fc417c39633f52a2f6', 'value': 470.6695331022297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x1983da16a4755c595e', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:02:14.000Z'}}, {'blockNum': '0xaa476c', 'uniqueId': '0x1a6001dc3f7fb3aa4dba8c3879c825115bcc33560dddde40d54d4b1189b2e5f7:log:27', 'hash': '0x1a6001dc3f7fb3aa4dba8c3879c825115bcc33560dddde40d54d4b1189b2e5f7', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 2871.049103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x9ba3cf6bb55ae3f000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:06:53.000Z'}}, {'blockNum': '0xaa478f', 'uniqueId': '0x2655500f8cb482a986d48e142737e42286a018f9ab4471ec7b04e02c1c4d4d81:log:34', 'hash': '0x2655500f8cb482a986d48e142737e42286a018f9ab4471ec7b04e02c1c4d4d81', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 2940.30309779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x9f64e7090be997ec00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:15:56.000Z'}}, {'blockNum': '0xaa47c0', 'uniqueId': '0xfc3a8cf6467c87acf23a0d13643b882c925f75704765d3e422688c4ec59807b9:log:46', 'hash': '0xfc3a8cf6467c87acf23a0d13643b882c925f75704765d3e422688c4ec59807b9', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 7567.92591089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x019a4211e75d50f9a400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:26:52.000Z'}}, {'blockNum': '0xaa4814', 'uniqueId': '0x6da9e75ebc0f4acdf7ddf7cf84e87497e9a4a95b4eb8bf85fbb53ad4837074e3:log:56', 'hash': '0x6da9e75ebc0f4acdf7ddf7cf84e87497e9a4a95b4eb8bf85fbb53ad4837074e3', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 23291.29255028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04ee9f9da3ec45635000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:42:53.000Z'}}, {'blockNum': '0xaa4819', 'uniqueId': '0x8c7afe6c2e7cbd96c2d9f731d99dc09f1e4336943b8ec0c94ffbf7cf0beed1dc:log:48', 'hash': '0x8c7afe6c2e7cbd96c2d9f731d99dc09f1e4336943b8ec0c94ffbf7cf0beed1dc', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 4658.25851005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xfc8652ba610ea65400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:44:04.000Z'}}, {'blockNum': '0xaa481c', 'uniqueId': '0x9df7920efab13dfde2d4a4ffba8d45784395c4913521afa3be2d1376fc841790:log:23', 'hash': '0x9df7920efab13dfde2d4a4ffba8d45784395c4913521afa3be2d1376fc841790', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 22222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04b4a8335ecc4a780000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:45:04.000Z'}}, {'blockNum': '0xaa482c', 'uniqueId': '0xe051f57d206f161f18d1639338eae9022088a12d2be131881f13026686cebbde:log:53', 'hash': '0xe051f57d206f161f18d1639338eae9022088a12d2be131881f13026686cebbde', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 3988.83127243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xd83c276c8a8f89cc00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:48:26.000Z'}}, {'blockNum': '0xaa485f', 'uniqueId': '0x0fe946aeff4c921972feea37e53342b41a1b01276bcdb48f296bf8a1637821f5:log:0', 'hash': '0x0fe946aeff4c921972feea37e53342b41a1b01276bcdb48f296bf8a1637821f5', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67539.66044444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0e4d551385c2c380f000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T18:00:37.000Z'}}, {'blockNum': '0xaa4954', 'uniqueId': '0xd0753f46f029b10b1abbdcd8d66b55f5ec53404cb572b17ecf4ffd535a16008a:log:8', 'hash': '0xd0753f46f029b10b1abbdcd8d66b55f5ec53404cb572b17ecf4ffd535a16008a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf244119b1db015e41a87ba19be257e9408c0faea', 'value': 760.49667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x293a02ec14b977e000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T18:53:32.000Z'}}, {'blockNum': '0xaa4995', 'uniqueId': '0x64d7a50a166c79a2630c40e0c1b1266249a06c8ce16f4579506cc679a6164742:log:1', 'hash': '0x64d7a50a166c79a2630c40e0c1b1266249a06c8ce16f4579506cc679a6164742', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 5269.16433623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x011da458369272147c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T19:06:20.000Z'}}, {'blockNum': '0xaa4a26', 'uniqueId': '0xfbfd4c2d472212ee246c77b2a35c198f40c884befdabb638496d974ae5ad60f1:log:228', 'hash': '0xfbfd4c2d472212ee246c77b2a35c198f40c884befdabb638496d974ae5ad60f1', 'from': '0xef771dad76b0e4cdc8a6a014a87c6ec3cde8047e', 'to': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T19:41:12.000Z'}}, {'blockNum': '0xaa4a35', 'uniqueId': '0x621bbb334dbc878cd45d966104ab59406e7447f6ade4625ed0fd36de67f42aa1:log:83', 'hash': '0x621bbb334dbc878cd45d966104ab59406e7447f6ade4625ed0fd36de67f42aa1', 'from': '0xef771dad76b0e4cdc8a6a014a87c6ec3cde8047e', 'to': '0x8329d2ddac106e0f2c804fe6d9c1c6a0c465ef57', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T19:43:50.000Z'}}, {'blockNum': '0xaa4b9e', 'uniqueId': '0xd87aacca6c1a1454b05045c4ba3b909478a1b2a50b0fad60d59424ff93310f42:log:149', 'hash': '0xd87aacca6c1a1454b05045c4ba3b909478a1b2a50b0fad60d59424ff93310f42', 'from': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'to': '0x2310a0a2a3a6ec82c82c8a09583b70841bff533a', 'value': 100543.48680884973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x154a792ce66cd5c2984c', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T21:07:37.000Z'}}, {'blockNum': '0xaa4bb1', 'uniqueId': '0xeddbe85b7254da2e602f4fdf658078c6bd4e3369b204df55b17ed7ff49115bfe:log:173', 'hash': '0xeddbe85b7254da2e602f4fdf658078c6bd4e3369b204df55b17ed7ff49115bfe', 'from': '0x2310a0a2a3a6ec82c82c8a09583b70841bff533a', 'to': '0x447b19e8f8918b8b0a26ff7f6295179f860edee7', 'value': 102281.21372864394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x15a8acfb191b2c7e25e3', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T21:12:57.000Z'}}, {'blockNum': '0xaa4bfd', 'uniqueId': '0x60ecaca58df19f4ce1a3811f4b1eeb148250eaade760ec7ee319907bbf5f3c67:log:144', 'hash': '0x60ecaca58df19f4ce1a3811f4b1eeb148250eaade760ec7ee319907bbf5f3c67', 'from': '0x447b19e8f8918b8b0a26ff7f6295179f860edee7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102281.21372864394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x15a8acfb191b2c7e25e3', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T21:30:06.000Z'}}, {'blockNum': '0xaa4d30', 'uniqueId': '0xb5327c2adc10e2c115a6d11c41d7dc54a973aa4ca612e8418ab918c194f76cee:log:55', 'hash': '0xb5327c2adc10e2c115a6d11c41d7dc54a973aa4ca612e8418ab918c194f76cee', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x67655e8fcd903f75aceb82bb3f782687ce985d35', 'value': 48346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a3cd78783e9fb280000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T22:38:17.000Z'}}, {'blockNum': '0xaa4dbd', 'uniqueId': '0xc969d3737b51f3699ce4dfd3bce708f4d24375a251e15ec9f6ed3fc9ac6d02b6:log:13', 'hash': '0xc969d3737b51f3699ce4dfd3bce708f4d24375a251e15ec9f6ed3fc9ac6d02b6', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 4381.53016514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xed85f226da6452c800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T23:08:28.000Z'}}, {'blockNum': '0xaa4e83', 'uniqueId': '0x822197f1e4d63af7f12ad9c5f6875360936b6fae2c025a2148b4c43374fc9c29:log:172', 'hash': '0x822197f1e4d63af7f12ad9c5f6875360936b6fae2c025a2148b4c43374fc9c29', 'from': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'to': '0x69e6becd42187a9b76104246e1efc360d95598f6', 'value': 1188.327477534335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x406b5b48c9e604b41f', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T23:44:08.000Z'}}, {'blockNum': '0xaa4fad', 'uniqueId': '0x35b3259e30ae20e8dbfd47a2ee823522a88b339e98ccaea5c5d8506ada7b8834:log:231', 'hash': '0x35b3259e30ae20e8dbfd47a2ee823522a88b339e98ccaea5c5d8506ada7b8834', 'from': '0x67655e8fcd903f75aceb82bb3f782687ce985d35', 'to': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'value': 48346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a3cd78783e9fb280000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-31T00:48:40.000Z'}}, {'blockNum': '0xaa513f', 'uniqueId': '0x16015c561cc0272949e210ebd0c35ca13ff7094d82662145267d3c3603d77681:log:36', 'hash': '0x16015c561cc0272949e210ebd0c35ca13ff7094d82662145267d3c3603d77681', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 21629.5959425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04948af15f3166e2e800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-31T02:25:27.000Z'}}, {'blockNum': '0xaa5158', 'uniqueId': '0x479f95cf0010ec377b511c4c7a48ffe0a94b754ab669ad6bedf259e916ba7b34:log:97', 'hash': '0x479f95cf0010ec377b511c4c7a48ffe0a94b754ab669ad6bedf259e916ba7b34', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31280.29044387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x069fb53bbc9e3d4a2c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-31T02:30:40.000Z'}}]}}
Number of returned transfers:  58
Answer is complete
 
symbol           YOYOW
group              BPF
date        2020-11-01
hour             18:00
exchange       binance
Name: 850, dtype: object
HERE
 Symbol: YOYOW, Contract: 
Datetime timestamps:  2020-11-01 18:00:00 2020-11-01 06:00:00 2020-11-02 06:00:00
Unix timestamps:  1604206800.0 1604293200.0
Hex Block Numbers:  0xaa6d88 0xaa86bb
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            ARDR
group              BPF
date        2020-11-02
hour             16:00
exchange       binance
Name: 851, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: ARDR, Contract: 
Datetime timestamps:  2020-11-02 16:00:00 2020-11-02 04:00:00 2020-11-03 04:00:00
Unix timestamps:  1604286000.0 1604372400.0
Hex Block Numbers:  0xaa84b5 0xaa9e5a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            APPC
group              BPF
date        2020-11-04
hour             17:00
exchange       binance
Name: 852, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2020-11-04 17:00:00 2020-11-04 05:00:00 2020-11-05 05:00:00
Unix timestamps:  1604462400.0 1604548800.0
Hex Block Numbers:  0xaab8ab 0xaad22a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaab95d', 'uniqueId': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec:log:133', 'hash': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec', 'from': '0x330a72b49e06256bfe20a765f77d816a422b00a7', 'to': '0x47fef156fa29ae4ecb47e0c675eb4f9c55055d6a', 'value': 2758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x9582f0537d5f580000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T04:37:47.000Z'}}, {'blockNum': '0xaaba2a', 'uniqueId': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0:log:20', 'hash': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1375.65880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a9319d9778d99e000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:19:59.000Z'}}, {'blockNum': '0xaaba31', 'uniqueId': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc:log:90', 'hash': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x40abb42d126d918f6aa47e473fb8521d675529ca', 'value': 1329.15880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x480dc8a9d5a5efe000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:21:25.000Z'}}, {'blockNum': '0xaaba87', 'uniqueId': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653:log:3', 'hash': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653', 'from': '0xae5f5e76a6f539d69c1a3a8657b0d294fa59a883', 'to': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:38:41.000Z'}}, {'blockNum': '0xaaba8c', 'uniqueId': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3:log:133', 'hash': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3', 'from': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:40:40.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:98', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 128.9440879163896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06fd756cc8ef244638', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:99', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 15.169892696045837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xd2864908949adb15', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:100', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 7.5849463480229184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x694324844a4d6d8a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabc4d', 'uniqueId': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda:log:17', 'hash': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda', 'from': '0xbb9fb488edef50ec8ecc82b191703b5fb32393e2', 'to': '0x9553c0540ac0f923522849d6c603029b3d4e3cae', 'value': 640.58597771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x22b9ea90c1dcd8cc00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T07:28:10.000Z'}}, {'blockNum': '0xaac444', 'uniqueId': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0:log:37', 'hash': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x312b274e820f4c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:02:30.000Z'}}, {'blockNum': '0xaac463', 'uniqueId': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8:log:18', 'hash': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 58885.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0c7831392df6b2850000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:11:40.000Z'}}, {'blockNum': '0xaac49d', 'uniqueId': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39:log:84', 'hash': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39', 'from': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 59792.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ca95c607c78c1d10000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:24:24.000Z'}}, {'blockNum': '0xaac66c', 'uniqueId': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4:log:28', 'hash': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 127318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1af5ec3028535f980000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:01:47.000Z'}}, {'blockNum': '0xaac6ac', 'uniqueId': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a:log:47', 'hash': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 10442.71900933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x023619d6ab16cdbf7400', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:13:22.000Z'}}, {'blockNum': '0xaac6d0', 'uniqueId': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6:log:44', 'hash': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 34655.58244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0756aed1c808f1168000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:21:45.000Z'}}, {'blockNum': '0xaac6d3', 'uniqueId': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d:log:184', 'hash': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:22:49.000Z'}}, {'blockNum': '0xaac6ee', 'uniqueId': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20:log:44', 'hash': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:33.000Z'}}, {'blockNum': '0xaac6ef', 'uniqueId': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378:log:151', 'hash': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 349455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x49fffe56a00f02dc0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:35.000Z'}}, {'blockNum': '0xaac70b', 'uniqueId': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330:log:22', 'hash': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 124764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1a6b78516bff63f00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:34:24.000Z'}}, {'blockNum': '0xaac713', 'uniqueId': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a:log:106', 'hash': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:35:51.000Z'}}, {'blockNum': '0xaac734', 'uniqueId': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c:log:105', 'hash': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:42:34.000Z'}}, {'blockNum': '0xaac757', 'uniqueId': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4:log:297', 'hash': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:50:27.000Z'}}, {'blockNum': '0xaac764', 'uniqueId': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc:log:65', 'hash': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 298607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x3f3b84957c4f0c5c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:53:15.000Z'}}, {'blockNum': '0xaac78f', 'uniqueId': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd:log:125', 'hash': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:05:17.000Z'}}, {'blockNum': '0xaac7b3', 'uniqueId': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03:log:133', 'hash': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:13:18.000Z'}}, {'blockNum': '0xaac7d5', 'uniqueId': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80:log:98', 'hash': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80', 'from': '0x62d5f2ec17bd962f6c1a7939a672b69460c320f4', 'to': '0x3eab04cb1eedb641875e60c7f151c4188bbcf72e', 'value': 126.362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06d9a0018163e90000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:19:24.000Z'}}, {'blockNum': '0xaac7f7', 'uniqueId': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50:log:22', 'hash': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:26:37.000Z'}}, {'blockNum': '0xaac81b', 'uniqueId': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d:log:71', 'hash': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:34:25.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6:log:242', 'hash': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6', 'from': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 15903.8301648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x035e25faf8c836248000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c:log:243', 'hash': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c', 'from': '0x1df69368c49492c7aa0da26e14d95154f9998da6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 37725.9786619995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07fd212070497e84aa89', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac885', 'uniqueId': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7:log:72', 'hash': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 54279.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b7e7c9b95f17c5a0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:58:29.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec:log:97', 'hash': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 25033.519009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x054d11dd696ad9bf1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1:log:111', 'hash': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 27552.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x05d5a3e9730256d00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac8b4', 'uniqueId': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d:log:35', 'hash': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:08:37.000Z'}}, {'blockNum': '0xaac8c2', 'uniqueId': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec:log:221', 'hash': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 52586.319009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b22b5c6dc6d308f1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:12:08.000Z'}}, {'blockNum': '0xaac8d7', 'uniqueId': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15:log:201', 'hash': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:18:03.000Z'}}, {'blockNum': '0xaac91c', 'uniqueId': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82:log:6', 'hash': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2046.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6ef0e48b2da4ea0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:34:47.000Z'}}, {'blockNum': '0xaac996', 'uniqueId': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269:log:148', 'hash': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf9f7b61ac292e4899a3fae2164133fb02e82471e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:00:15.000Z'}}, {'blockNum': '0xaac99d', 'uniqueId': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff:log:34', 'hash': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 52468.707209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b1c5595cf75e6459000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:01:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:180', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:181', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:182', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:51', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:52', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:53', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:163', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:164', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:165', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:171', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:172', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:173', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaace35', 'uniqueId': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4:log:46', 'hash': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 2511.9109267687422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x882bc44f38c1200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T00:17:01.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf:log:117', 'hash': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf', 'from': '0x652807251031638120c9498a38c8773ee87bdf9b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 252082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x356164819452c3880000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0:log:166', 'hash': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0', 'from': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 349456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a000c3756c2aa400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}]}}
Number of returned transfers:  54
Answer is complete
 
symbol             OAX
group              BPF
date        2020-11-05
hour             16:00
exchange       binance
Name: 853, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-11-05 16:00:00 2020-11-05 04:00:00 2020-11-06 04:00:00
Unix timestamps:  1604545200.0 1604631600.0
Hex Block Numbers:  0xaad105 0xaaeaa5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaad3ae', 'uniqueId': '0xb35afbd7401147f5fbf8c40124299df23680421681248c9b6ebb6950bbee60da:log:266', 'hash': '0xb35afbd7401147f5fbf8c40124299df23680421681248c9b6ebb6950bbee60da', 'from': '0xf41301e41b133caa67377ac9aa8fef864575ecfa', 'to': '0xa454f742c357bdf5ccb2ea70b1fc0b9c533cb4b5', 'value': 862.67688216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x2ec40bf5aaa0516000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T05:29:52.000Z'}}, {'blockNum': '0xaad663', 'uniqueId': '0x15b8e3aedfd8aeca20f64c252ac75c500f590bcbafc9bc36d3ee052c485a7b98:log:8', 'hash': '0x15b8e3aedfd8aeca20f64c252ac75c500f590bcbafc9bc36d3ee052c485a7b98', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 3927.8403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xd4edbbf6429bbec000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T08:11:04.000Z'}}, {'blockNum': '0xaade29', 'uniqueId': '0xf16460425c7dbbc9b2edcd0ce35f5d2c3082bb73e70ddec9985ea31649b2858a:log:167', 'hash': '0xf16460425c7dbbc9b2edcd0ce35f5d2c3082bb73e70ddec9985ea31649b2858a', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 8591.006725976658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01d1b82b1c2bde598ef0', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T15:22:58.000Z'}}, {'blockNum': '0xaaded6', 'uniqueId': '0x0c69f95a48e3c26b886f7c445a016afba96edd0e8d0821f3fe55a875ef9a9c3c:log:56', 'hash': '0x0c69f95a48e3c26b886f7c445a016afba96edd0e8d0821f3fe55a875ef9a9c3c', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 13030.11651969649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x02c25d313225da6f9dd4', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:00:03.000Z'}}, {'blockNum': '0xaadedf', 'uniqueId': '0x79b643352dfe5d63e002ee75f2ee9ffcdb6eb902f7116e94eba5e040e1c36ce7:log:287', 'hash': '0x79b643352dfe5d63e002ee75f2ee9ffcdb6eb902f7116e94eba5e040e1c36ce7', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x30ff6cedaff3e06a6649ea89147ab8eea2b4ad9d', 'value': 3040.8085791886388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa4d7b23be0b3171d02', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:02:35.000Z'}}, {'blockNum': '0xaadf35', 'uniqueId': '0x40e9143b342d4637a44f40ef44a529e741ea7181c79c42ced3a454f7ca60278c:log:34', 'hash': '0x40e9143b342d4637a44f40ef44a529e741ea7181c79c42ced3a454f7ca60278c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 602.25525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x20a5f876fd6c132000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:21:07.000Z'}}, {'blockNum': '0xaadf36', 'uniqueId': '0x75f83694b3bd625f4724065b0c146faf37339cec393be3b3c0eb47901e0180dd:log:166', 'hash': '0x75f83694b3bd625f4724065b0c146faf37339cec393be3b3c0eb47901e0180dd', 'from': '0x30ff6cedaff3e06a6649ea89147ab8eea2b4ad9d', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 3040.8085791886388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa4d7b23be0b3171d02', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:21:25.000Z'}}, {'blockNum': '0xaadf40', 'uniqueId': '0xa19f722dddb2709ae192df4cacbda497108dd2d23c1c83dfbc1e4f5cdb468805:log:140', 'hash': '0xa19f722dddb2709ae192df4cacbda497108dd2d23c1c83dfbc1e4f5cdb468805', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb5b39ec5146317c0c45d39aadb06b8dfc2cb15df', 'value': 572.75525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1f0c936949a20d2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:22:55.000Z'}}, {'blockNum': '0xaadf44', 'uniqueId': '0x779a82ba3e71c6fcccb4879c9eb649e81b5cba916db21503fddd2b17f45d3bae:log:206', 'hash': '0x779a82ba3e71c6fcccb4879c9eb649e81b5cba916db21503fddd2b17f45d3bae', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0xe95e8ce71b549d1e2c576b54ea9a099510e4afb1', 'value': 3339.030394106752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb5025af47fb57e2d56', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T16:24:04.000Z'}}, {'blockNum': '0xaae0ac', 'uniqueId': '0x2bd7320082436f72421d061d0ba2037da8cb5a0bfd9b89104918cef164cd692f:log:199', 'hash': '0x2bd7320082436f72421d061d0ba2037da8cb5a0bfd9b89104918cef164cd692f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf5b9707e7c487853d8ba152665ea49a9e0c6c01d', 'value': 9968.962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021c6b23a92cf7ad0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T17:45:35.000Z'}}, {'blockNum': '0xaae0b1', 'uniqueId': '0x8050f09442fb38c06704e7bf9bdcf9652b05141426db16c797958cecad0ec079:log:44', 'hash': '0x8050f09442fb38c06704e7bf9bdcf9652b05141426db16c797958cecad0ec079', 'from': '0xf5b9707e7c487853d8ba152665ea49a9e0c6c01d', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 9968.962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x021c6b23a92cf7ad0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T17:46:30.000Z'}}, {'blockNum': '0xaae2d9', 'uniqueId': '0x4826d1a8cb0783368930dc2802f12de8931068fc2ed3a0646bccc7823f9e3e7b:log:145', 'hash': '0x4826d1a8cb0783368930dc2802f12de8931068fc2ed3a0646bccc7823f9e3e7b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 7167.493591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01848cf4860183f07000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T19:45:17.000Z'}}, {'blockNum': '0xaae3dd', 'uniqueId': '0x3cb71f88e6072ff097ca2ece7cc13d40a7a00db1e7c4e16268e16366d0de07d9:log:43', 'hash': '0x3cb71f88e6072ff097ca2ece7cc13d40a7a00db1e7c4e16268e16366d0de07d9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 7337.60272597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x018dc5b192fbfbc4b400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T20:41:18.000Z'}}, {'blockNum': '0xaae3e0', 'uniqueId': '0xeccf03f1e17ffedc70f691b541b49d19c25f9e1acc1b77f028af3c9b873c1dff:log:10', 'hash': '0xeccf03f1e17ffedc70f691b541b49d19c25f9e1acc1b77f028af3c9b873c1dff', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 7337.60272597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x018dc5b192fbfbc4b400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T20:42:06.000Z'}}, {'blockNum': '0xaae510', 'uniqueId': '0x4dbda37ee872f0dd76ceb0cf63219350c5c7fe43f69d8b71ba7830e4da0ae54e:log:261', 'hash': '0x4dbda37ee872f0dd76ceb0cf63219350c5c7fe43f69d8b71ba7830e4da0ae54e', 'from': '0x03737b6a1fb7f5e4ceb19e3023a7f06ea75220b7', 'to': '0x8b08db00c4899b68f65fe0bd54759e5fa636727b', 'value': 698.39161807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x25dc217465b4a15c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T21:46:28.000Z'}}]}}
Number of returned transfers:  15
Answer is complete
 
symbol             NXS
group              BPF
date        2020-11-06
hour             20:00
exchange       binance
Name: 854, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-11-06 20:00:00 2020-11-06 08:00:00 2020-11-07 08:00:00
Unix timestamps:  1604646000.0 1604732400.0
Hex Block Numbers:  0xaaeeef 0xab0872
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group              BPF
date        2020-11-09
hour             16:00
exchange       binance
Name: 855, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2020-11-09 16:00:00 2020-11-09 04:00:00 2020-11-10 04:00:00
Unix timestamps:  1604890800.0 1604977200.0
Hex Block Numbers:  0xab36f5 0xab5077
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xab378a', 'uniqueId': '0x3e8ab2a9b6725e7935dd9a5da4acc65cd284f8bcab3135d9d736421b9027053b:log:283', 'hash': '0x3e8ab2a9b6725e7935dd9a5da4acc65cd284f8bcab3135d9d736421b9027053b', 'from': '0x6e981b7536e23f9616278b46cefd576dca0e1432', 'to': '0x99b72e22980b5ed5c07799aa2e2d84a1e59544b4', 'value': 707.1266203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x26555a6aa53c067800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T03:32:40.000Z'}}, {'blockNum': '0xab3796', 'uniqueId': '0x545c03f9382cf78cfab44c88c113c38ca8148f4c6b4e0af8b73384706e1c8cbd:log:90', 'hash': '0x545c03f9382cf78cfab44c88c113c38ca8148f4c6b4e0af8b73384706e1c8cbd', 'from': '0x99b72e22980b5ed5c07799aa2e2d84a1e59544b4', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 707.1266203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x26555a6aa53c067800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T03:35:07.000Z'}}, {'blockNum': '0xab3b5c', 'uniqueId': '0x61c05f58d762ccfe1729287caddc73e5ca9ac504eaf04bf10bf6008c6dfd58f5:log:10', 'hash': '0x61c05f58d762ccfe1729287caddc73e5ca9ac504eaf04bf10bf6008c6dfd58f5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcbadc4dc889b6f863f537a5569b0f0a1722e5c80', 'value': 246.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d5fa676ed68de0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:12:38.000Z'}}, {'blockNum': '0xab3b63', 'uniqueId': '0xfe4c750fd9cbc76d648af58fa7f92d84f0ac114f69111e648a1cc89425d440eb:log:200', 'hash': '0xfe4c750fd9cbc76d648af58fa7f92d84f0ac114f69111e648a1cc89425d440eb', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x14068732cb0dfac17d1aa4305b84dea7368cc442', 'value': 396.39474966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x157d150ca05a319800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:15:09.000Z'}}, {'blockNum': '0xab3bbd', 'uniqueId': '0x8c901b71f5888a3fe5a12ab9b812daac64bcbdd532fac35de31fdb6ef1935642:log:23', 'hash': '0x8c901b71f5888a3fe5a12ab9b812daac64bcbdd532fac35de31fdb6ef1935642', 'from': '0x0aeee23d16084d763e7a65577020c1f3d18804f2', 'to': '0x661d635e7e0d879fdc80b40c3c9ffe0aef0fd8c3', 'value': 318.1624117444008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x113f63f3c8ea947900', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:32:57.000Z'}}, {'blockNum': '0xab3bc8', 'uniqueId': '0x1fed7c43c07275fe5030a5178430082cd67f47848cdc0a5f8bef4fd1efe4d1e0:log:24', 'hash': '0x1fed7c43c07275fe5030a5178430082cd67f47848cdc0a5f8bef4fd1efe4d1e0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0aeee23d16084d763e7a65577020c1f3d18804f2', 'value': 324.56340507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x119838d94cf0910c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:35:38.000Z'}}, {'blockNum': '0xab3bde', 'uniqueId': '0xc4bb7b630d9eb05fa91a7acf2fda0d9978e5af29fa6733a8a2f8c21920250550:log:32', 'hash': '0xc4bb7b630d9eb05fa91a7acf2fda0d9978e5af29fa6733a8a2f8c21920250550', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2d7b76c6c998bc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:40:16.000Z'}}, {'blockNum': '0xab3bf6', 'uniqueId': '0x62e0bbc5f3904370e236f7c5db6d57219d9ecd83f532dace3f25e53273a5f767:log:37', 'hash': '0x62e0bbc5f3904370e236f7c5db6d57219d9ecd83f532dace3f25e53273a5f767', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xfe17c9c6700b2cd13c41c4d614e2bdfc3289443b', 'value': 1000.72745324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x363fe21ca3f7883000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:46:31.000Z'}}, {'blockNum': '0xab3c04', 'uniqueId': '0x45a836567983e77ee52243d9f76b8a5bd7ac79f4421a964c673ccf2e082fde9f:log:199', 'hash': '0x45a836567983e77ee52243d9f76b8a5bd7ac79f4421a964c673ccf2e082fde9f', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 7670.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x019fcecbbb0246b60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:49:45.000Z'}}, {'blockNum': '0xab3c05', 'uniqueId': '0x28e4b00d773b0bb2e583c416d27374f8e9e54ed77fe7b6fa332e8a332d426cde:log:316', 'hash': '0x28e4b00d773b0bb2e583c416d27374f8e9e54ed77fe7b6fa332e8a332d426cde', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5cdef4ecf808564ec67e1899d97691894a6285bb', 'value': 5900.295475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x013fdb0c716843b23000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:50:27.000Z'}}, {'blockNum': '0xab3f7c', 'uniqueId': '0xae6a9189178115675a36d4a459453afc8fd2baccb416a11de1dd142e4df3e7fa:log:59', 'hash': '0xae6a9189178115675a36d4a459453afc8fd2baccb416a11de1dd142e4df3e7fa', 'from': '0xd729d01ce174469d3d3ccb71e155bbf401e4c916', 'to': '0x2602973f99cfd6234f9c29bc3edc0439b8eab3dc', 'value': 6750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x016deb1154f79eb80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T11:02:40.000Z'}}, {'blockNum': '0xab3f94', 'uniqueId': '0x0171e7910fb5bad3b54faa16284534c275803ac1d68f4fc3f7fde484782b7ba4:log:62', 'hash': '0x0171e7910fb5bad3b54faa16284534c275803ac1d68f4fc3f7fde484782b7ba4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5db81c3e053052a1567699b317fa74a057311658', 'value': 151.8155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x083add00e5a250c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T11:06:23.000Z'}}, {'blockNum': '0xab40a3', 'uniqueId': '0xbd3c393c20c0703d500b838635dc3b08efde2af429110e9f642d3dadfce4b978:log:257', 'hash': '0xbd3c393c20c0703d500b838635dc3b08efde2af429110e9f642d3dadfce4b978', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x17a7e9c62937f7f57aee43644439d89693d1e7b9', 'value': 350.61156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1301b67c33498e8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T12:09:18.000Z'}}, {'blockNum': '0xab41bd', 'uniqueId': '0xa71213dddd5243e0fe3c180dc40eab11b10b3dd557733e5862ab791fb9ae280b:log:148', 'hash': '0xa71213dddd5243e0fe3c180dc40eab11b10b3dd557733e5862ab791fb9ae280b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x7b82eb5d8bb3ef07ce20c0036a5f90335ad8d0e4', 'value': 1014.11304196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36f9a546a9549b9000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T13:11:44.000Z'}}, {'blockNum': '0xab4346', 'uniqueId': '0x8cb75f07ccc71043235ddbee324f3a6884e4706abe070dc0c08d2d6b91102673:log:146', 'hash': '0x8cb75f07ccc71043235ddbee324f3a6884e4706abe070dc0c08d2d6b91102673', 'from': '0x14aaf7b864f021750faa4f62397272acadbb8017', 'to': '0x592faed4893eb9d74ab5041ec1750b5ce1b0c885', 'value': 55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02fb474098f67c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T14:39:21.000Z'}}, {'blockNum': '0xab43ec', 'uniqueId': '0xac2398abfc1b3dd47f60a635c5fe267abbab2df7581816ffba98942f99d92e3d:log:283', 'hash': '0xac2398abfc1b3dd47f60a635c5fe267abbab2df7581816ffba98942f99d92e3d', 'from': '0x3e0f0e21be0b72ee9716a459ba53fc2412eaefd0', 'to': '0x3ecb272d08257e409da760f04d51adf5dd4531f2', 'value': 7106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0181378f66cc65c80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T15:16:13.000Z'}}, {'blockNum': '0xab459b', 'uniqueId': '0x8c570fd9ed6a9571c71a358e587672a860734696312eff9a0b299bc5f37fd71d:log:43', 'hash': '0x8c570fd9ed6a9571c71a358e587672a860734696312eff9a0b299bc5f37fd71d', 'from': '0xefec8619ec93f07de9700ebca30c0273543970c1', 'to': '0x1e5f455d82f214ee9f3f6b43bf4fed1bb1eb0512', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a2a15d09519be000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T16:47:50.000Z'}}, {'blockNum': '0xab45a1', 'uniqueId': '0x19038eed256e1fca9f54d82c20db426ca33b2956468654473030a93a34a50849:log:222', 'hash': '0x19038eed256e1fca9f54d82c20db426ca33b2956468654473030a93a34a50849', 'from': '0x1e5f455d82f214ee9f3f6b43bf4fed1bb1eb0512', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a2a15d09519be000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T16:49:06.000Z'}}, {'blockNum': '0xab45e5', 'uniqueId': '0x16eaacca5b07cf77d95ce40ca6528a97e6c0cfdab8170119c37e9566edc5756e:log:137', 'hash': '0x16eaacca5b07cf77d95ce40ca6528a97e6c0cfdab8170119c37e9566edc5756e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a2a15d09519be000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T17:02:01.000Z'}}, {'blockNum': '0xab46b2', 'uniqueId': '0xf32ea12be372189c47bb97aad23a1f3fd4116d3549cbe661caffa2884ee88c55:log:24', 'hash': '0xf32ea12be372189c47bb97aad23a1f3fd4116d3549cbe661caffa2884ee88c55', 'from': '0x555a1b0bd59e7afcf81aa065aa1888c568856c5e', 'to': '0xc36316df88cc038241984f4814cb0d6e92f089f1', 'value': 4330, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xeabad23aad41680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T17:45:16.000Z'}}, {'blockNum': '0xab46fe', 'uniqueId': '0x8a6553d94d22ec92a6361884682f96d70b0bceb89c5a9e2655ea6c1c264206a0:log:295', 'hash': '0x8a6553d94d22ec92a6361884682f96d70b0bceb89c5a9e2655ea6c1c264206a0', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 17162.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a260253db52c100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:01:26.000Z'}}, {'blockNum': '0xab4701', 'uniqueId': '0xd01ac588d8f2d770bdccc8fbdd001c6b9e62fd5440798fdda0ffe1aa9f5af7c0:log:197', 'hash': '0xd01ac588d8f2d770bdccc8fbdd001c6b9e62fd5440798fdda0ffe1aa9f5af7c0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x067cb079ede97730d6ff0bbc1db6b6ff7a508c15', 'value': 13201.854225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02cbac8817374ee61000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:02:59.000Z'}}, {'blockNum': '0xab471e', 'uniqueId': '0x9d8ad87e45a0862494fa7aa1a568235182352fbcf51fbf3a417f01e41ce6a22d:log:108', 'hash': '0x9d8ad87e45a0862494fa7aa1a568235182352fbcf51fbf3a417f01e41ce6a22d', 'from': '0xd48f79e01c8916c0dd113d1f4a9acdb65f5453fa', 'to': '0xfaee8e1c3eeaebac0cb17ba4fee8260cbc7e5787', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:09:46.000Z'}}, {'blockNum': '0xab4724', 'uniqueId': '0x7ccc6a755ac16d15dd18319959734e686d441d65bdd46800941a8a147cad1cbb:log:108', 'hash': '0x7ccc6a755ac16d15dd18319959734e686d441d65bdd46800941a8a147cad1cbb', 'from': '0xfaee8e1c3eeaebac0cb17ba4fee8260cbc7e5787', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:11:18.000Z'}}, {'blockNum': '0xab472a', 'uniqueId': '0x6d35b75689246fefe4ea2a237182610261cc46c4044bc071ad8262a1d5cc7b35:log:119', 'hash': '0x6d35b75689246fefe4ea2a237182610261cc46c4044bc071ad8262a1d5cc7b35', 'from': '0xd48f79e01c8916c0dd113d1f4a9acdb65f5453fa', 'to': '0x4a2d06eb05c4e433670b406bee87383edb7d3e63', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:12:23.000Z'}}, {'blockNum': '0xab4778', 'uniqueId': '0x3b7045a2432169b3ef3b838c2a53768f94039fdfa975d5a1d6a3e43d29b24ca3:log:71', 'hash': '0x3b7045a2432169b3ef3b838c2a53768f94039fdfa975d5a1d6a3e43d29b24ca3', 'from': '0x4a2d06eb05c4e433670b406bee87383edb7d3e63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:30:04.000Z'}}, {'blockNum': '0xab478c', 'uniqueId': '0x193c295ac4b42fc988624b895cda27021048f7e6b38bbad48e47bb99f32d3cb3:log:26', 'hash': '0x193c295ac4b42fc988624b895cda27021048f7e6b38bbad48e47bb99f32d3cb3', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xb3ca078b8b10e05b0b47239f51c2a8f61b5ed1e6', 'value': 491.0157066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a9e3637a3d66d1000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:35:24.000Z'}}, {'blockNum': '0xab47ae', 'uniqueId': '0xd0ee2e21a0e72504c522083ea10c09577f30d8df6feb0967b723e7aa2bc84690:log:6', 'hash': '0xd0ee2e21a0e72504c522083ea10c09577f30d8df6feb0967b723e7aa2bc84690', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 665.73146019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2416e143d8ab0e2c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:41:53.000Z'}}, {'blockNum': '0xab47da', 'uniqueId': '0x205dff76e3b57d3f6da2a3b955d091620f9da227b65e89ad17847704d3f24720:log:38', 'hash': '0x205dff76e3b57d3f6da2a3b955d091620f9da227b65e89ad17847704d3f24720', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xee1745034f4ee4112b4146af1d920259ce329a87', 'value': 68.5402302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03b72fd039a6803000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:51:22.000Z'}}, {'blockNum': '0xab47de', 'uniqueId': '0xae408b477e3b09ef0065982dd95db8f4e1b6267cca00802b9f66ff589bac2e12:log:96', 'hash': '0xae408b477e3b09ef0065982dd95db8f4e1b6267cca00802b9f66ff589bac2e12', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x3b859cd60b571a36a2255e7230ff3b60a7d30380', 'value': 639.23146019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x22a71e5a3fd7342c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:52:53.000Z'}}, {'blockNum': '0xab47e7', 'uniqueId': '0xb30bbb25f6433e4ed3577bf469f96cfc0ba9620cfd591c46230dc7b5f0fe62a4:log:70', 'hash': '0xb30bbb25f6433e4ed3577bf469f96cfc0ba9620cfd591c46230dc7b5f0fe62a4', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xe82348b3fc43bd1ea8b41baf992ce2def73084fd', 'value': 1298.4503549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x46639e564bf6634800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:55:22.000Z'}}, {'blockNum': '0xab480b', 'uniqueId': '0xe93947560ed8441670f4012725141aee9dcdaab25e699bd63b11ee69f0850a5b:log:41', 'hash': '0xe93947560ed8441670f4012725141aee9dcdaab25e699bd63b11ee69f0850a5b', 'from': '0xd729d01ce174469d3d3ccb71e155bbf401e4c916', 'to': '0xdff20bfcb608b5026d68b48f59bf7475aebbecc1', 'value': 720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x270801d946c9400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T19:03:37.000Z'}}, {'blockNum': '0xab4839', 'uniqueId': '0x1740760539855e1377370be402877929f58250f0f18118534cb04bb8c5571ef2:log:68', 'hash': '0x1740760539855e1377370be402877929f58250f0f18118534cb04bb8c5571ef2', 'from': '0x3b859cd60b571a36a2255e7230ff3b60a7d30380', 'to': '0xaaa7e573156b6fa43ccf8546c9bbfc694b83ae3d', 'value': 639.23146019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x22a71e5a3fd7342c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T19:11:45.000Z'}}, {'blockNum': '0xab493d', 'uniqueId': '0xc46f833ef4d5cf49771df27b015e50fccb93ee214c87b772c0340798a2df3584:log:115', 'hash': '0xc46f833ef4d5cf49771df27b015e50fccb93ee214c87b772c0340798a2df3584', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2ef3123163f544b2f3bca86c59f82f65767b20f5', 'value': 6043.36884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01479c9724d6f0808000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T20:12:23.000Z'}}, {'blockNum': '0xab495c', 'uniqueId': '0x6a988f90865b9752e120912ba183166f7e3a1efd6505c4ae40a28682500f9944:log:256', 'hash': '0x6a988f90865b9752e120912ba183166f7e3a1efd6505c4ae40a28682500f9944', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 7882.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01ab4fa992b9a09a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T20:18:04.000Z'}}, {'blockNum': '0xab495e', 'uniqueId': '0x6991f6182453fdafda60187132de41bdadf3f31b34fd2fe07e16b4a37cfc6d19:log:245', 'hash': '0x6991f6182453fdafda60187132de41bdadf3f31b34fd2fe07e16b4a37cfc6d19', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2ef3123163f544b2f3bca86c59f82f65767b20f5', 'value': 6063.511662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0148b420d2ba346ce000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T20:18:33.000Z'}}, {'blockNum': '0xab49d3', 'uniqueId': '0x7a7ee8e1e33ef66747cee81f81795e4d77cb2ecb5e1ad99933f13c9f6b438c1e:log:170', 'hash': '0x7a7ee8e1e33ef66747cee81f81795e4d77cb2ecb5e1ad99933f13c9f6b438c1e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x16996cc65c72d33f913c57a23e485542cfffd0cd', 'value': 1815.06088178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6265079f5fcc2d8800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T20:48:55.000Z'}}, {'blockNum': '0xab4ada', 'uniqueId': '0x015703db3b86450f1ca72fa76601b739f17e0d3c859051a1bb0019b4d9f034b5:log:57', 'hash': '0x015703db3b86450f1ca72fa76601b739f17e0d3c859051a1bb0019b4d9f034b5', 'from': '0xb59ef8992e39d4dce8c59c6d71bbdd0d5ea2085e', 'to': '0x2a5edd0c777e94450a83d1cd07cf519edfb60292', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T21:49:41.000Z'}}, {'blockNum': '0xab4b00', 'uniqueId': '0x6996ffc2b96e83c71017b5cbe2ad509c1610efbfa3de8c15dc72884187d8d030:log:24', 'hash': '0x6996ffc2b96e83c71017b5cbe2ad509c1610efbfa3de8c15dc72884187d8d030', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbf5c78d85c72ccf6c5daee956c1c69b82866ec27', 'value': 985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x35659ef93f0fc40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T21:56:32.000Z'}}, {'blockNum': '0xab4b9c', 'uniqueId': '0x02128c5f692ed502fcc3e37fc82eb7a487532babbff8ecf4b9f45ab97bf3f795:log:19', 'hash': '0x02128c5f692ed502fcc3e37fc82eb7a487532babbff8ecf4b9f45ab97bf3f795', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x652c60553b3d8d621d2927ff18035b9db45405db', 'value': 186.961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a229ae6f02bce8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:28:17.000Z'}}, {'blockNum': '0xab4bd2', 'uniqueId': '0x600c006b38f0d11d3208237766e7280c759e4d0d19bde8da1b87f601acdf38ff:log:42', 'hash': '0x600c006b38f0d11d3208237766e7280c759e4d0d19bde8da1b87f601acdf38ff', 'from': '0x592faed4893eb9d74ab5041ec1750b5ce1b0c885', 'to': '0x14aaf7b864f021750faa4f62397272acadbb8017', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:38:48.000Z'}}, {'blockNum': '0xab4bd4', 'uniqueId': '0xc75f953505c4c7b61464d8af413439402b612d66e1ad216ee8c8d74e08690bfd:log:75', 'hash': '0xc75f953505c4c7b61464d8af413439402b612d66e1ad216ee8c8d74e08690bfd', 'from': '0x9ba9056a7baf3aa0469415008b956d1d15a45af2', 'to': '0xf82c4ddea68fd14efbcce34537db11f7e4cd6104', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:39:00.000Z'}}, {'blockNum': '0xab4be0', 'uniqueId': '0x472da35362974344259499a13b357364d648033ca82cab29c5fcd3137bef06ff:log:21', 'hash': '0x472da35362974344259499a13b357364d648033ca82cab29c5fcd3137bef06ff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9d409ad8f97e4a6088f1fbb9cbb9a4f8053446e4', 'value': 3027.9326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa42501910688f38000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:40:34.000Z'}}, {'blockNum': '0xab4c1e', 'uniqueId': '0xfd1002beacae9eadadd4d3e7610a202dc276ed19d6b39370ef036a1d6921c642:log:34', 'hash': '0xfd1002beacae9eadadd4d3e7610a202dc276ed19d6b39370ef036a1d6921c642', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x6bc71b14ab4506301629f591c8322a560d08d5b6', 'value': 1026.9227489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x37ab6a7f413029e800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:53:07.000Z'}}, {'blockNum': '0xab4ef6', 'uniqueId': '0x789a521b54c7df63d3d3e651f2d9ef1af75bcb15fa66ee9faeeea33feb314868:log:106', 'hash': '0x789a521b54c7df63d3d3e651f2d9ef1af75bcb15fa66ee9faeeea33feb314868', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x519e166df7a9329a461a7b52181edcbb24310260', 'value': 1392.58054846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4b7deff69dccf33800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-10T01:37:29.000Z'}}, {'blockNum': '0xab4fa2', 'uniqueId': '0xc38f01e2332b2741d83fa98819b928bce9163e7f89c4ac2e63cc436cc865383d:log:19', 'hash': '0xc38f01e2332b2741d83fa98819b928bce9163e7f89c4ac2e63cc436cc865383d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc8feb541cb4c465a03af274bef8a085356e8feb0', 'value': 1314.639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x474447f53e7ac18000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-10T02:11:25.000Z'}}]}}
Number of returned transfers:  46
Answer is complete
 
symbol            BCPT
group              BPF
date        2020-11-14
hour             18:00
exchange       binance
Name: 856, dtype: object
HERE
 Symbol: BCPT, Contract: 
Datetime timestamps:  2020-11-14 18:00:00 2020-11-14 06:00:00 2020-11-15 06:00:00
Unix timestamps:  1605330000.0 1605416400.0
Hex Block Numbers:  0xabb836 0xabd1dd
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            APPC
group              BPF
date        2020-11-18
hour             18:00
exchange       binance
Name: 857, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2020-11-18 18:00:00 2020-11-18 06:00:00 2020-11-19 06:00:00
Unix timestamps:  1605675600.0 1605762000.0
Hex Block Numbers:  0xac1e2f 0xac377d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xac21dd', 'uniqueId': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e:log:76', 'hash': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 377.30992545063793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14743a221faa647ecb', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:34:11.000Z'}}, {'blockNum': '0xac21dd', 'uniqueId': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e:log:77', 'hash': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 44.3894029941927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x026806d6d68c844b26', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:34:11.000Z'}}, {'blockNum': '0xac21dd', 'uniqueId': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e:log:78', 'hash': '0x3a08b658190549492f1f2bb49879b344e78b194cc7b151425eeba12a3d50da6e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 22.19470149709635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0134036b6b46422593', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:34:11.000Z'}}, {'blockNum': '0xac2209', 'uniqueId': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3:log:215', 'hash': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 377.30992545063793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14743a221faa647ecb', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:42:51.000Z'}}, {'blockNum': '0xac2209', 'uniqueId': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3:log:216', 'hash': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 44.3894029941927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x026806d6d68c844b26', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:42:51.000Z'}}, {'blockNum': '0xac2209', 'uniqueId': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3:log:217', 'hash': '0x17c7d7dab88022e917b74e273b6168a956bc8c86b503ec9b2136e32371d952d3', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 22.19470149709635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0134036b6b46422593', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:42:51.000Z'}}, {'blockNum': '0xac2224', 'uniqueId': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e:log:102', 'hash': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 377.30992545063793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14743a221faa647ecb', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:48:24.000Z'}}, {'blockNum': '0xac2224', 'uniqueId': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e:log:103', 'hash': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 44.3894029941927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x026806d6d68c844b26', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:48:24.000Z'}}, {'blockNum': '0xac2224', 'uniqueId': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e:log:104', 'hash': '0x85f41cb1c2100815044e098d927047ba1dc4a22b96aa6d2d9850e94adfe0a67e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 22.19470149709635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0134036b6b46422593', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:48:24.000Z'}}, {'blockNum': '0xac2244', 'uniqueId': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0:log:95', 'hash': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 377.30992545063793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14743a221faa647ecb', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:54:58.000Z'}}, {'blockNum': '0xac2244', 'uniqueId': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0:log:96', 'hash': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 44.3894029941927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x026806d6d68c844b26', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:54:58.000Z'}}, {'blockNum': '0xac2244', 'uniqueId': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0:log:97', 'hash': '0xcc4001a47ac0a3d8549fc2e2a631bbbdfcd2e72adf46782b0ec09d3a1f3ebab0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 22.19470149709635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0134036b6b46422593', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T08:54:58.000Z'}}, {'blockNum': '0xac2276', 'uniqueId': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793:log:205', 'hash': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:04:03.000Z'}}, {'blockNum': '0xac2276', 'uniqueId': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793:log:206', 'hash': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:04:03.000Z'}}, {'blockNum': '0xac2276', 'uniqueId': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793:log:207', 'hash': '0x702a2824123a4768b241de8d90965dd1ba3d275eea9d242278c0f941ceed4793', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:04:03.000Z'}}, {'blockNum': '0xac228c', 'uniqueId': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d:log:255', 'hash': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:09:19.000Z'}}, {'blockNum': '0xac228c', 'uniqueId': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d:log:256', 'hash': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:09:19.000Z'}}, {'blockNum': '0xac228c', 'uniqueId': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d:log:257', 'hash': '0xfbcbb486d0d5d9727b0ce070b3290a6a2d9a90bbfe0df45fc5347f4a4b9f7d1d', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:09:19.000Z'}}, {'blockNum': '0xac22a4', 'uniqueId': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6:log:183', 'hash': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:14:37.000Z'}}, {'blockNum': '0xac22a4', 'uniqueId': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6:log:184', 'hash': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:14:37.000Z'}}, {'blockNum': '0xac22a4', 'uniqueId': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6:log:185', 'hash': '0xcf8f8d93d037a9d3d94c26ee4bdd6c3b791f17ca75e4cca24693469ae49c3df6', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:14:37.000Z'}}, {'blockNum': '0xac22be', 'uniqueId': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e:log:112', 'hash': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:21:04.000Z'}}, {'blockNum': '0xac22be', 'uniqueId': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e:log:113', 'hash': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:21:04.000Z'}}, {'blockNum': '0xac22be', 'uniqueId': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e:log:114', 'hash': '0xab539e86d713a981ee971e46a536151040f6aca2e9f9f272cac75c05bdbafc8e', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:21:04.000Z'}}, {'blockNum': '0xac22cb', 'uniqueId': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9:log:285', 'hash': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:25:06.000Z'}}, {'blockNum': '0xac22cb', 'uniqueId': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9:log:286', 'hash': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:25:06.000Z'}}, {'blockNum': '0xac22cb', 'uniqueId': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9:log:287', 'hash': '0x4b4b87df4d1ad77801a67817d4aadaabf5e7d4d15d016cdb9984666e203eece9', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:25:06.000Z'}}, {'blockNum': '0xac22d7', 'uniqueId': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f:log:13', 'hash': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 370.40030475783635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1414563ab65b43d176', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:29:32.000Z'}}, {'blockNum': '0xac22d7', 'uniqueId': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f:log:14', 'hash': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 43.57650644209839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x025cbed9bb19cbbe4a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:29:32.000Z'}}, {'blockNum': '0xac22d7', 'uniqueId': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f:log:15', 'hash': '0x8f38de09977cfba0d2471b08b8d1af1c9b369e502f8328e9a7d872e8eea3fe9f', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 21.788253221049196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012e5f6cdd8ce5df25', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T09:29:32.000Z'}}, {'blockNum': '0xac24f2', 'uniqueId': '0xaf70feb3401c73fe9ddde4f331d8165dfd155e4be7678aeb7e59475f64bc4086:log:292', 'hash': '0xaf70feb3401c73fe9ddde4f331d8165dfd155e4be7678aeb7e59475f64bc4086', 'from': '0x90ac0aac98403a214e07bfd22386442cfcb2ab05', 'to': '0x035c0ed3be0df3b92ddecb8bd61accdad862cd4e', 'value': 5602.282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x012fb347e4d67cf10000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-18T11:22:35.000Z'}}, {'blockNum': '0xac3277', 'uniqueId': '0xf5f30333654d1b8a2244f25e8fc83ab43d9c08b64a7cbcc6b703598207baa072:log:161', 'hash': '0xf5f30333654d1b8a2244f25e8fc83ab43d9c08b64a7cbcc6b703598207baa072', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 5243.677506142923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x011c42a4cda493200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T00:21:29.000Z'}}, {'blockNum': '0xac3410', 'uniqueId': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56:log:238', 'hash': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 751.1319337095499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x28b80cb20a91fac0f4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T01:53:56.000Z'}}, {'blockNum': '0xac3410', 'uniqueId': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56:log:239', 'hash': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 88.36846278935882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x04ca5bd8b5f30e710d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T01:53:56.000Z'}}, {'blockNum': '0xac3410', 'uniqueId': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56:log:240', 'hash': '0x6a278635b64236781471bbcccf79b41111dd4f1d360f7455d1564aefd78a9c56', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 44.18423139467941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x02652dec5af9873886', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T01:53:56.000Z'}}, {'blockNum': '0xac3416', 'uniqueId': '0x773fb1e8756e4c1cbd37697d1f4d6e58c980ac90720839df7b1abb6713e6101c:log:201', 'hash': '0x773fb1e8756e4c1cbd37697d1f4d6e58c980ac90720839df7b1abb6713e6101c', 'from': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'to': '0x479ce5e60eec7fadb2d80270d1957140f6bc6ed6', 'value': 4856.3833616409875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x010743db9930d06bebcc', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T01:55:24.000Z'}}, {'blockNum': '0xac3575', 'uniqueId': '0xb403325a38bcf5729684e6f83458f333962163a1ed5c529aa9ef730a4e0a5ba3:log:61', 'hash': '0xb403325a38bcf5729684e6f83458f333962163a1ed5c529aa9ef730a4e0a5ba3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2121.63889663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x7303a7878f72dc1c00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T03:08:38.000Z'}}, {'blockNum': '0xac3581', 'uniqueId': '0xc19105a88b2aff67dde2f267f3dd8cec7f848295a32453f1bfba3f312aade6e5:log:189', 'hash': '0xc19105a88b2aff67dde2f267f3dd8cec7f848295a32453f1bfba3f312aade6e5', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x800ddb89f5d6f701b39017b0381a4d2d864085dc', 'value': 2035.63889663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6e5a2a273537441c00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T03:11:23.000Z'}}, {'blockNum': '0xac3655', 'uniqueId': '0x17e4bad490400269dd3f088e7832a0429e003269cfdc6d6cae9ae187b0fd567b:log:5', 'hash': '0x17e4bad490400269dd3f088e7832a0429e003269cfdc6d6cae9ae187b0fd567b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x471193ccf81e75dd93bc4d1a89e732bd620a07d4', 'value': 2256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x7a4c4a0f3321400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T03:56:24.000Z'}}, {'blockNum': '0xac3685', 'uniqueId': '0xdb247eae9920d67be509d6972f0635a0b03d4b98524ec3a95a176b94f40b2bba:log:7', 'hash': '0xdb247eae9920d67be509d6972f0635a0b03d4b98524ec3a95a176b94f40b2bba', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x471193ccf81e75dd93bc4d1a89e732bd620a07d4', 'value': 43114.795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x092141f9f486a3d78000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T04:08:30.000Z'}}, {'blockNum': '0xac3748', 'uniqueId': '0xa214cf0942dfe1d2fd5fb8f6f003dfbd14803c950449768c16991b8d00dbcdbb:log:34', 'hash': '0xa214cf0942dfe1d2fd5fb8f6f003dfbd14803c950449768c16991b8d00dbcdbb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x471193ccf81e75dd93bc4d1a89e732bd620a07d4', 'value': 9579.402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x02074ce885272a810000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-19T04:47:48.000Z'}}]}}
Number of returned transfers:  41
Answer is complete
 
symbol             MDA
group              BPF
date        2020-11-27
hour             21:00
exchange       binance
Name: 858, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2020-11-27 21:00:00 2020-11-27 09:00:00 2020-11-28 09:00:00
Unix timestamps:  1606464000.0 1606550400.0
Hex Block Numbers:  0xad0655 0xad1f82
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xad0c32', 'uniqueId': '0x835c52def0fd31c0322b5c8a5dc2e10f1c619d55b68dddf392c517d0a27d99bc:log:44', 'hash': '0x835c52def0fd31c0322b5c8a5dc2e10f1c619d55b68dddf392c517d0a27d99bc', 'from': '0xcc8f00c34c7e926109000a7e54a72397e2f147c7', 'to': '0x976af184cd76fdc3fc64c14b4663ea95966d0a54', 'value': 58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0324e964b3eca80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T13:38:47.000Z'}}, {'blockNum': '0xad1023', 'uniqueId': '0xc351fe8f9de3ce96bed3e3ec324dcde5bf4d39965e18eff95ad029f091921d0e:log:61', 'hash': '0xc351fe8f9de3ce96bed3e3ec324dcde5bf4d39965e18eff95ad029f091921d0e', 'from': '0x3dc46c6abab0ba6aecabf494a3573f98795d86a4', 'to': '0xaebc82059e5c76ac167d08d4dbc1d058f7bcde74', 'value': 32.704366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01c5dd3f9a125ce000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T17:23:44.000Z'}}, {'blockNum': '0xad13cb', 'uniqueId': '0xb2c54add2565b6241036e81c35e38501c2877af7ded37d2aed2a26268b555a05:log:46', 'hash': '0xb2c54add2565b6241036e81c35e38501c2877af7ded37d2aed2a26268b555a05', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 5750.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0137b6aaecaa1da20000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T21:00:44.000Z'}}, {'blockNum': '0xad13cc', 'uniqueId': '0xf354e662609b79c6f72bb27b7e57f81eb522ff3636c7eb4edf67e9b6b10fd219:log:40', 'hash': '0xf354e662609b79c6f72bb27b7e57f81eb522ff3636c7eb4edf67e9b6b10fd219', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 7577.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x019ac162d0cdbc4e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T21:00:49.000Z'}}, {'blockNum': '0xad1432', 'uniqueId': '0xda892298ae3c005aa6e692864742e8b5019b1e575d15acfe4a5d2bf12219dc96:log:192', 'hash': '0xda892298ae3c005aa6e692864742e8b5019b1e575d15acfe4a5d2bf12219dc96', 'from': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'to': '0x5466b7c161ec8ed2213cbebc4baaf9be0119d0a9', 'value': 359992.1445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x4c3b3698069fd7eb4000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-27T21:25:16.000Z'}}, {'blockNum': '0xad1b9a', 'uniqueId': '0x2aef5237bd8507b364da10371cb1cc1c0e9f718149b9b587628a1e708803d21b:log:6', 'hash': '0x2aef5237bd8507b364da10371cb1cc1c0e9f718149b9b587628a1e708803d21b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0e96a32fc8a91d01fa157fee31948c034f737c21', 'value': 8590, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01d1aa32803abd780000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-28T04:12:50.000Z'}}, {'blockNum': '0xad1c9c', 'uniqueId': '0xeccfb283b1b0d751d6c12c1bc7d49f529204143ca74221839211cf7cf03550ee:log:40', 'hash': '0xeccfb283b1b0d751d6c12c1bc7d49f529204143ca74221839211cf7cf03550ee', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe07cc845fe401f5c7fa8bfb71e940b774ca77632', 'value': 8409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01c7da51533563c40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-28T05:14:41.000Z'}}]}}
Number of returned transfers:  7
Answer is complete
 
symbol            NEBL
group              BPF
date        2020-12-02
hour             18:00
exchange       binance
Name: 859, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2020-12-02 18:00:00 2020-12-02 06:00:00 2020-12-03 06:00:00
Unix timestamps:  1606885200.0 1606971600.0
Hex Block Numbers:  0xad820e 0xad9bbe
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             PNT
group              BPF
date        2020-12-04
hour             23:01
exchange       binance
Name: 860, dtype: object
HERE
 Symbol: PNT, Contract: 0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed
Datetime timestamps:  2020-12-04 23:01:00 2020-12-04 11:01:00 2020-12-05 11:01:00
Unix timestamps:  1607076060.0 1607162460.0
Hex Block Numbers:  0xadba73 0xadd3e2
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xadba7d', 'uniqueId': '0x55aea0aed4d0f03b68be285dadcb44b73071111a514eaf0cd972f5870a8b1f9e:log:187', 'hash': '0x55aea0aed4d0f03b68be285dadcb44b73071111a514eaf0cd972f5870a8b1f9e', 'from': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'to': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:03:18.000Z'}}, {'blockNum': '0xadba9f', 'uniqueId': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066:log:238', 'hash': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 10.010012176944546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8aeab50a241d3e7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:09:36.000Z'}}, {'blockNum': '0xadba9f', 'uniqueId': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066:log:242', 'hash': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x2a24a7a4beb9e6d0431c9bc1800045b8fc27a966', 'value': 0.010010012176944545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x23900d94010da1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:09:36.000Z'}}, {'blockNum': '0xadba9f', 'uniqueId': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066:log:245', 'hash': '0xdcbb7c23ba5f91728cb3510f554259d74cb7d93dafd91d6d23eca1396dc7d066', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x05589789fc4ed59dffb358830f1840c5d7cfdd8a', 'value': 10.0000021647676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8ac724fc901c30de', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:09:36.000Z'}}, {'blockNum': '0xadbaa9', 'uniqueId': '0xf4e2abd9478bda8cdb7bb8d52c6c1eac0cb716ba9df16163b70659854a55a4c6:log:138', 'hash': '0xf4e2abd9478bda8cdb7bb8d52c6c1eac0cb716ba9df16163b70659854a55a4c6', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb9d50e7dad77100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:11:52.000Z'}}, {'blockNum': '0xadbaae', 'uniqueId': '0xac640f65e4e55bd18cb7e40f100aa2a48ed47c03f0c125ab795ad0ec446678e9:log:112', 'hash': '0xac640f65e4e55bd18cb7e40f100aa2a48ed47c03f0c125ab795ad0ec446678e9', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x922786b796df041f9a91cdbd08bfeffd73227240', 'value': 13000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02c0bb3dd30c4e200000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:12:27.000Z'}}, {'blockNum': '0xadbac6', 'uniqueId': '0xfa6d91ae915447a8d221102afe3785317f07215bc35d3db3d008170130ab94de:log:355', 'hash': '0xfa6d91ae915447a8d221102afe3785317f07215bc35d3db3d008170130ab94de', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x7805db2add00f2565cc3be38d5ecd21687615988', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:16:38.000Z'}}, {'blockNum': '0xadbacd', 'uniqueId': '0x66941efef1cbb71506f7c2c705c4dfb11167b836aec21b63acc464a4bb93a9cc:log:39', 'hash': '0x66941efef1cbb71506f7c2c705c4dfb11167b836aec21b63acc464a4bb93a9cc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb92e85ed419e600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:17:43.000Z'}}, {'blockNum': '0xadbad0', 'uniqueId': '0x0afe107f2636ea0811ab9e5cdbe496b8e8d0405e89720a44ef4a99a45151e618:log:258', 'hash': '0x0afe107f2636ea0811ab9e5cdbe496b8e8d0405e89720a44ef4a99a45151e618', 'from': '0x7805db2add00f2565cc3be38d5ecd21687615988', 'to': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:18:02.000Z'}}, {'blockNum': '0xadbaf7', 'uniqueId': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5:log:228', 'hash': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 3850.4273548942706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd0bb69eed67feb1173', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:26:20.000Z'}}, {'blockNum': '0xadbaf7', 'uniqueId': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5:log:232', 'hash': '0x2393191299ec58e54a42fc2f373f76e2b5205c7c6390ad036353cd0ff9e7f5a5', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3850.4273548942706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd0bb69eed67feb1173', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:26:20.000Z'}}, {'blockNum': '0xadbb81', 'uniqueId': '0xa5122ceabe254bbcaafcd0576a81a44cf24e739579a88e9ff119724f1e9831e3:log:39', 'hash': '0xa5122ceabe254bbcaafcd0576a81a44cf24e739579a88e9ff119724f1e9831e3', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb92e85ed419e600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T10:58:33.000Z'}}, {'blockNum': '0xadbbc9', 'uniqueId': '0x79ae532899b28aa7da911cad5f3b4fc5196ded4bb539d12c49427f66764f4e5a:log:11', 'hash': '0x79ae532899b28aa7da911cad5f3b4fc5196ded4bb539d12c49427f66764f4e5a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x16109b23adf914cbaf1b68e86be0d67f711fb6d5', 'value': 3314.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb3b04973202c0b0000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T11:14:16.000Z'}}, {'blockNum': '0xadbc6c', 'uniqueId': '0x1188db1b81cf713900ccd6974968ad65a5bd42a718b4119e160d0cd1f85ec252:log:68', 'hash': '0x1188db1b81cf713900ccd6974968ad65a5bd42a718b4119e160d0cd1f85ec252', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x399129e800be4ec6c0c46d78fdb743bb038c7ad7', 'value': 61.954703130515576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x035bcb523f4329944d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T11:51:26.000Z'}}, {'blockNum': '0xadbcb2', 'uniqueId': '0x9346122d98ddf555942a820192be938fe19af2d015cdb238c22ac5ad56d53d80:log:139', 'hash': '0x9346122d98ddf555942a820192be938fe19af2d015cdb238c22ac5ad56d53d80', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xd1fd56c522ea55675c888a4d6858b0ad16d88366', 'value': 57.377049180327866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x031c443a3b9d8f79b4', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:07:20.000Z'}}, {'blockNum': '0xadbcd3', 'uniqueId': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737:log:45', 'hash': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 2353.4042185795533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x7f940b5bed9c0a76dc', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:13:41.000Z'}}, {'blockNum': '0xadbcd3', 'uniqueId': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737:log:49', 'hash': '0xbd852c5b61e0ddaaa2e192f7c38a60b8c21b38ef0b916c9fe4b9fdd667fb9737', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2353.4042185795533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x7f940b5bed9c0a76dc', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:13:41.000Z'}}, {'blockNum': '0xadbd5a', 'uniqueId': '0x1a6c74c2c5ee86afc7aaf6b9f4c6cfe823bab87cbd869187271a1c1e7dc6b898:log:155', 'hash': '0x1a6c74c2c5ee86afc7aaf6b9f4c6cfe823bab87cbd869187271a1c1e7dc6b898', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xf08e2e3df499ea1d3086e0f04beda6aebce55949', 'value': 31.973862295081968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01bbb9fa5a439dde6d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T12:41:51.000Z'}}, {'blockNum': '0xadbe28', 'uniqueId': '0x2531b2217f9aecb5bc15d52fa59fb19fca211c346f4d9248f49471e258e314c1:log:41', 'hash': '0x2531b2217f9aecb5bc15d52fa59fb19fca211c346f4d9248f49471e258e314c1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab7a0c9238d4ef8c2d2b23e52a88e67cbafbf2cf', 'value': 1302.47423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x469b7603617a6d6000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T13:21:24.000Z'}}, {'blockNum': '0xadbf3f', 'uniqueId': '0xd50a9603b7bc97eefe5522002e249ca5aec5bc4573074d391f8967d7e714d0b7:log:180', 'hash': '0xd50a9603b7bc97eefe5522002e249ca5aec5bc4573074d391f8967d7e714d0b7', 'from': '0xaa298fa032ae863e0156f1e1b54a7ad1a27534a4', 'to': '0x55d2bdf6117e41d65ee2b828a04f67ae485a61d5', 'value': 56.62142024453181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0311c7b1b8216e174a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:27:33.000Z'}}, {'blockNum': '0xadbf4a', 'uniqueId': '0x1619a44b3f0769d885f80f969e421c4a22edc328ecd5c4d1892b785b469fc6f7:log:69', 'hash': '0x1619a44b3f0769d885f80f969e421c4a22edc328ecd5c4d1892b785b469fc6f7', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3112.316721665546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa8b8123098172999f6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:30:04.000Z'}}, {'blockNum': '0xadbf4c', 'uniqueId': '0xbf31622da0bd57e2388ed51905ad53dc6cb13f1698b0f95804241d51cea9fe22:log:46', 'hash': '0xbf31622da0bd57e2388ed51905ad53dc6cb13f1698b0f95804241d51cea9fe22', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3106.0920882222144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa861afd974f8600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:31:25.000Z'}}, {'blockNum': '0xadbf67', 'uniqueId': '0x887d8fdd448b63549202744bcd80cf0d8789118538b4b6dcb6d43366265aadad:log:289', 'hash': '0x887d8fdd448b63549202744bcd80cf0d8789118538b4b6dcb6d43366265aadad', 'from': '0x55d2bdf6117e41d65ee2b828a04f67ae485a61d5', 'to': '0xf6592340ecac4e51d5027eda4530f249d954d5e1', 'value': 76.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0429d069189e000000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T14:39:26.000Z'}}, {'blockNum': '0xadc030', 'uniqueId': '0x31830ed18d1721e500e905be105e91f8ca3b3087365104d19b947fb3c13be307:log:205', 'hash': '0x31830ed18d1721e500e905be105e91f8ca3b3087365104d19b947fb3c13be307', 'from': '0x14e942eab884e47a940768f4c7e5225089e51001', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 951.2119974204392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x3390b7dfeaaf0eb4ec', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:20:46.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:78', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 671.4981816329425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2466e8c6720045f8fd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:80', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:82', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 671.4981816329425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2466e8c6720045f8fd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc0de', 'uniqueId': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d:log:113', 'hash': '0x5dde4c16f1683e0f5dd30d66585211694b8a5710289c0bf9843e0b90e873c24d', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 671.4981816329425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2466e8c6720045f8fd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T15:57:28.000Z'}}, {'blockNum': '0xadc101', 'uniqueId': '0xdbdce24eac05c0218dea987bba9def5e683fa367f796c28ba3ba4a06f85c8be0:log:90', 'hash': '0xdbdce24eac05c0218dea987bba9def5e683fa367f796c28ba3ba4a06f85c8be0', 'from': '0x5cb53c4834b394e8894bb40253a1e984f87fe0dc', 'to': '0x22ab60db2853bbe799ddaa8bc11eeb5c944025ba', 'value': 50.15031331974153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7f9b441adbc1cac', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:04:46.000Z'}}, {'blockNum': '0xadc146', 'uniqueId': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df:log:325', 'hash': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 621.7115962048188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21b3fb4ac771514bed', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:22:48.000Z'}}, {'blockNum': '0xadc146', 'uniqueId': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df:log:329', 'hash': '0x6f958e8db082d10c1f468f791bd0bd5bc64e2b93f1682c3603568c15625639df', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 621.7115962048188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21b3fb4ac771514bed', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:22:48.000Z'}}, {'blockNum': '0xadc176', 'uniqueId': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77:log:144', 'hash': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77', 'from': '0xa3a39829c967e7391c18bfb17247ce88487632ad', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 14.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xcaf6700370168000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:33:10.000Z'}}, {'blockNum': '0xadc176', 'uniqueId': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77:log:148', 'hash': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 14.551874999999994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xc9f2a5369ee31a3f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:33:10.000Z'}}, {'blockNum': '0xadc176', 'uniqueId': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77:log:156', 'hash': '0x3df24f297642760a7045aa55c0cfa9f2ba53b1b964890b857f3abf8d6f7f1b77', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0xa3a39829c967e7391c18bfb17247ce88487632ad', 'value': 0.07312500000000557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0103caccd13365c1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T16:33:10.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:138', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 367.5356060035717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec94c65f86d124f9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:140', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:142', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 367.5356060035717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec94c65f86d124f9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc23f', 'uniqueId': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d:log:173', 'hash': '0x50ff15a9f379adeb8b868a086072346813019f8111ade7025cdfef5cb55eed0d', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 367.5356060035717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec94c65f86d124f9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:15:18.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:127', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 603.9502151442456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd7e30ceed802640', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:129', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:131', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 603.9502151442456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd7e30ceed802640', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2a9', 'uniqueId': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097:log:162', 'hash': '0x6f4910abcf4c541f991aff6a00b4e2734338d96ca28b45b7dfda72c40d3b7097', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 603.9502151442456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd7e30ceed802640', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:26.000Z'}}, {'blockNum': '0xadc2ab', 'uniqueId': '0x12d3e6dd6788a3aa4001d350b06f266cf1d10ebee9be2df0c2aa6055f35ba746:log:164', 'hash': '0x12d3e6dd6788a3aa4001d350b06f266cf1d10ebee9be2df0c2aa6055f35ba746', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x5cb53c4834b394e8894bb40253a1e984f87fe0dc', 'value': 21.563094290189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x012b3f8002c10631b6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:38:50.000Z'}}, {'blockNum': '0xadc2bb', 'uniqueId': '0xc1c05a7c7705e97161e9a499583fe8016294f8c52becfed58f385bfd51fc3569:log:262', 'hash': '0xc1c05a7c7705e97161e9a499583fe8016294f8c52becfed58f385bfd51fc3569', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x369987decd26db2b72c1218ea6692b79fde04d24', 'value': 569.0740918843089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1ed97d4f7c2a3cc30f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:42:06.000Z'}}, {'blockNum': '0xadc2c7', 'uniqueId': '0xacb67c095b0ba29028347c5f8d4d5d0d181041a8058cac80f7a94bcf12d57753:log:39', 'hash': '0xacb67c095b0ba29028347c5f8d4d5d0d181041a8058cac80f7a94bcf12d57753', 'from': '0x369987decd26db2b72c1218ea6692b79fde04d24', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 569.674456152831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1ee1d23b9b3b551225', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T17:45:54.000Z'}}, {'blockNum': '0xadc494', 'uniqueId': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5:log:67', 'hash': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 608.9273534175942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21029089b2aa72bacd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:25:38.000Z'}}, {'blockNum': '0xadc494', 'uniqueId': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5:log:71', 'hash': '0x0e1ec6975e37de12a54b880dec96b72159e93fc926906c716698b7f46ee1f3a5', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 608.9273534175942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21029089b2aa72bacd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:25:38.000Z'}}, {'blockNum': '0xadc4ba', 'uniqueId': '0xd951869b39360ee65b1b6e95cc70d223ef0d5f5756d02d2de37472bed268ed57:log:67', 'hash': '0xd951869b39360ee65b1b6e95cc70d223ef0d5f5756d02d2de37472bed268ed57', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x53fe88ceb39f23db1fcd4d6beb55965f6ac1764f', 'value': 526.8922360856963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1c901941200f2d84f3', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:34:21.000Z'}}, {'blockNum': '0xadc4ca', 'uniqueId': '0x50b20168443d1db9ddba2798082f6805f41403b9c2d50a739d74dea6f02db5de:log:295', 'hash': '0x50b20168443d1db9ddba2798082f6805f41403b9c2d50a739d74dea6f02db5de', 'from': '0x53fe88ceb39f23db1fcd4d6beb55965f6ac1764f', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 526.8922360856963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1c901941200f2d84f3', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:36:53.000Z'}}, {'blockNum': '0xadc4e1', 'uniqueId': '0x29143fbd90fa294e4023481797e8e60c82efb74746061b9405d769d94ba0fdaf:log:101', 'hash': '0x29143fbd90fa294e4023481797e8e60c82efb74746061b9405d769d94ba0fdaf', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0xbcb127e3e3977a152a5873ea707beff0ae88e66b', 'value': 46.9148287270636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x028b12f4296eeae40e', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:42:08.000Z'}}, {'blockNum': '0xadc4e5', 'uniqueId': '0x15efa0d0afae7f787e7cc97b8f3118a711b2ad887f04b8789d92701411d5a030:log:21', 'hash': '0x15efa0d0afae7f787e7cc97b8f3118a711b2ad887f04b8789d92701411d5a030', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0xbcb127e3e3977a152a5873ea707beff0ae88e66b', 'value': 127.83830002246144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x06ee1ce08dd8a036e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:42:49.000Z'}}, {'blockNum': '0xadc4fa', 'uniqueId': '0xd16bc0a11921ceee201547e234cb4ff57ccadfda1362e2ea65226727b1aa8583:log:167', 'hash': '0xd16bc0a11921ceee201547e234cb4ff57ccadfda1362e2ea65226727b1aa8583', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'value': 160.3717526487514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x08b19aeb591ba32728', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:47:51.000Z'}}, {'blockNum': '0xadc500', 'uniqueId': '0x7fdfe1cea216637622e313f737e3e5cd266bb3e2ef5af69bdd6eaa5ef789c4d7:log:126', 'hash': '0x7fdfe1cea216637622e313f737e3e5cd266bb3e2ef5af69bdd6eaa5ef789c4d7', 'from': '0xaa298fa032ae863e0156f1e1b54a7ad1a27534a4', 'to': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'value': 64.00429711227304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03783cf11d43980a10', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:48:46.000Z'}}, {'blockNum': '0xadc50b', 'uniqueId': '0xfd0155dac21b52a18a3217007029b607c48fed7836ff658442bc9dcb2748111b:log:28', 'hash': '0xfd0155dac21b52a18a3217007029b607c48fed7836ff658442bc9dcb2748111b', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'value': 77.09701650169806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x042defa007e2246da1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:51:42.000Z'}}, {'blockNum': '0xadc514', 'uniqueId': '0xbff8211a93c9b2ff561584b8e5ca5152672a2cd25526c57f8103977e8af69d59:log:3', 'hash': '0xbff8211a93c9b2ff561584b8e5ca5152672a2cd25526c57f8103977e8af69d59', 'from': '0x8dbf963519ee01bc8fa32cbc8df8ab2ca27e2ae1', 'to': '0xcda67a0135d5481cb4c92237b862a080c8bc39d4', 'value': 301.4730662627225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1057c77c7e415f9ed9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:52:45.000Z'}}, {'blockNum': '0xadc515', 'uniqueId': '0x759d6442a9445d1c8d1d9c3aacd323c188afe3d4650eede2080e8029299cde18:log:216', 'hash': '0x759d6442a9445d1c8d1d9c3aacd323c188afe3d4650eede2080e8029299cde18', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0xc2a3110379f2331842c1f5fb05a2a45ebe41ce0f', 'value': 110.77402916907609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x06014c689f918a2ad1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:52:48.000Z'}}, {'blockNum': '0xadc521', 'uniqueId': '0xf2b409ed52a25736bbb5bfb6cc0e7d2c4b5448b2c1546269e32bba20fba4ba28:log:211', 'hash': '0xf2b409ed52a25736bbb5bfb6cc0e7d2c4b5448b2c1546269e32bba20fba4ba28', 'from': '0xc2a3110379f2331842c1f5fb05a2a45ebe41ce0f', 'to': '0xcda67a0135d5481cb4c92237b862a080c8bc39d4', 'value': 110.77402916907609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x06014c689f918a2ad1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:54:59.000Z'}}, {'blockNum': '0xadc53a', 'uniqueId': '0x876094076e927cf48811e9e133c42d1484a2891a582102c769aae85a59db87f3:log:206', 'hash': '0x876094076e927cf48811e9e133c42d1484a2891a582102c769aae85a59db87f3', 'from': '0xbcb127e3e3977a152a5873ea707beff0ae88e66b', 'to': '0x3f91b71d1fee38acc7f8c160332fc4d6d2e42f62', 'value': 174.75312874952505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x09792fd4b7478b1af4', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T19:59:52.000Z'}}, {'blockNum': '0xadc545', 'uniqueId': '0x18e34254a09ea25d73b76a05ee0e1be69af626a5f99eb0bf52934652f5f273c4:log:206', 'hash': '0x18e34254a09ea25d73b76a05ee0e1be69af626a5f99eb0bf52934652f5f273c4', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xb0694e56742b6ee22921948c89622bac3f7ef2e9', 'value': 10.38295081967213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x9017a6c25ee8864c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:02:29.000Z'}}, {'blockNum': '0xadc549', 'uniqueId': '0xa572aa49713fb3f3ada5d9e1b79905cbb410e64e7ac2793824015785c84f6b20:log:77', 'hash': '0xa572aa49713fb3f3ada5d9e1b79905cbb410e64e7ac2793824015785c84f6b20', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0xb0694e56742b6ee22921948c89622bac3f7ef2e9', 'value': 131.44168176297143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x07201ea927d1d9f181', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:03:59.000Z'}}, {'blockNum': '0xadc550', 'uniqueId': '0x3f6eecb366035b5af724ac438ec76670a5501d3f72a59918a1295c6a8f58b87e:log:102', 'hash': '0x3f6eecb366035b5af724ac438ec76670a5501d3f72a59918a1295c6a8f58b87e', 'from': '0xb0694e56742b6ee22921948c89622bac3f7ef2e9', 'to': '0x18faa01efc7f2ee4ded961087c79f56eba8656ea', 'value': 141.82463258264355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x07b0364fea30c277cd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:05:15.000Z'}}, {'blockNum': '0xadc551', 'uniqueId': '0x550b314dcfcfb8ae819afa865ddfab4776e55c31330109ca1ed56f7d08700951:log:116', 'hash': '0x550b314dcfcfb8ae819afa865ddfab4776e55c31330109ca1ed56f7d08700951', 'from': '0x18faa01efc7f2ee4ded961087c79f56eba8656ea', 'to': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'value': 141.82463258264355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x07b0364fea30c277cd', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:05:24.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:99', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 367.534668636074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec9171d7a6180ed5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:101', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:103', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 367.534668636074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec9171d7a6180ed5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5b1', 'uniqueId': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494:log:134', 'hash': '0xe0cf2a804e764b57e85071a279cb3352fc5a8cfe4685dd8bc0d07165d06e7494', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 367.534668636074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x13ec9171d7a6180ed5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:26:48.000Z'}}, {'blockNum': '0xadc5cc', 'uniqueId': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e:log:172', 'hash': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e', 'from': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 792.3647048133639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2af444ece64dcee52e', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:33:59.000Z'}}, {'blockNum': '0xadc5cc', 'uniqueId': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e:log:176', 'hash': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 789.9052240116742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad2231824313327a9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:33:59.000Z'}}, {'blockNum': '0xadc5cc', 'uniqueId': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e:log:184', 'hash': '0xc0f3ff5016935b08b08659d8d63635fa3e1a78a3ce85c085394e3e974d69907e', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0xde97a98325170168cbd4548bcc2fdbf06d98167d', 'value': 2.459480801689714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2221d4c21c9bbd85', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T20:33:59.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:51', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 266.21413483396526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0e6e76992b26718c7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:53', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:55', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'value': 266.21413483396526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0e6e76992b26718c7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc67e', 'uniqueId': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc:log:86', 'hash': '0x84ed52509988f76adc741ba863ae5a376d15e187b6035e2f867434867de64bbc', 'from': '0xb30ba7ab0e8295d0da8bd0b6f2340e0bc7351eff', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 266.21413483396526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0e6e76992b26718c7f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:13:32.000Z'}}, {'blockNum': '0xadc6ba', 'uniqueId': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888:log:126', 'hash': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 706.9920889963752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x26537c7723384c4319', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:27:53.000Z'}}, {'blockNum': '0xadc6ba', 'uniqueId': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888:log:130', 'hash': '0x303b05fa241a77b27a4f284db8750fc1941ced485c0cb63b9a32ee99d4bfc888', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 706.9920889963752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x26537c7723384c4319', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T21:27:53.000Z'}}, {'blockNum': '0xadc7b8', 'uniqueId': '0x6692c5302887f0fe7c23d0d1f3149dcbce23a7563734036d430571a69f943681:log:253', 'hash': '0x6692c5302887f0fe7c23d0d1f3149dcbce23a7563734036d430571a69f943681', 'from': '0x9a376c8e244cdbb07eb7856da3cac7f5794b58fa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:45.000Z'}}, {'blockNum': '0xadc7b9', 'uniqueId': '0x789db0c6a49404c57c28d4e888f525184fcab4b91549e1fe5dc0fe09d8d35451:log:2', 'hash': '0x789db0c6a49404c57c28d4e888f525184fcab4b91549e1fe5dc0fe09d8d35451', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'value': 1394.087866538311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4b92db086c2a33536b', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:50.000Z'}}, {'blockNum': '0xadc7b9', 'uniqueId': '0x9ce37b828c7dadf5c6c1500655e658d6784893d594e8041c44c567370acaf277:log:8', 'hash': '0x9ce37b828c7dadf5c6c1500655e658d6784893d594e8041c44c567370acaf277', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 12680.63920584683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02af6b385ccfcfd10809', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:50.000Z'}}, {'blockNum': '0xadc7b9', 'uniqueId': '0xd3a3f5a985a6e6a288faa9abecf6647d123c7706588339744ac6b2b4e9d43a7b:log:12', 'hash': '0xd3a3f5a985a6e6a288faa9abecf6647d123c7706588339744ac6b2b4e9d43a7b', 'from': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1394.087866538311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4b92db086c2a33536b', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:50.000Z'}}, {'blockNum': '0xadc7ba', 'uniqueId': '0xb184b71f85e48d65a3f571effbc4e8f8001f8084b4d0b9449cf07ea4521c67ba:log:15', 'hash': '0xb184b71f85e48d65a3f571effbc4e8f8001f8084b4d0b9449cf07ea4521c67ba', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xbb767a28ca7f6238e42be69619d8735d5970bc3d', 'value': 2652.401531753656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8fc977341ab6a6a174', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:29:59.000Z'}}, {'blockNum': '0xadc7bb', 'uniqueId': '0x368f053d8c7d8b21727dc5df33585953fcafedabfb1858687d6ba3d06dd41979:log:139', 'hash': '0x368f053d8c7d8b21727dc5df33585953fcafedabfb1858687d6ba3d06dd41979', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 12655.277927435136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02ae0b43007755000000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:30:14.000Z'}}, {'blockNum': '0xadc805', 'uniqueId': '0x2d923e33e511579099679f42939fbe722ef30a209feccda6719c61afbedc9cac:log:171', 'hash': '0x2d923e33e511579099679f42939fbe722ef30a209feccda6719c61afbedc9cac', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb92e85ed419e600000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:46:43.000Z'}}, {'blockNum': '0xadc818', 'uniqueId': '0x1a86540af0e5f0aa62321255b2dd1b468c4c5b62890c074e0ad1daf69a69481d:log:91', 'hash': '0x1a86540af0e5f0aa62321255b2dd1b468c4c5b62890c074e0ad1daf69a69481d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 3404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb887fd5cd5c5b00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:51:29.000Z'}}, {'blockNum': '0xadc820', 'uniqueId': '0x46dbc4e25d4f0f85d35069394fed71cef15bc4076f27c820b5364b09fac14202:log:222', 'hash': '0x46dbc4e25d4f0f85d35069394fed71cef15bc4076f27c820b5364b09fac14202', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 3404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xb887fd5cd5c5b00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T22:53:49.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x11e5442f6ad6dadb0a732672a6fe325674d820e48a9c868dc818f06ff3686cbe:log:2', 'hash': '0x11e5442f6ad6dadb0a732672a6fe325674d820e48a9c868dc818f06ff3686cbe', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x000000000000084e91743124a982076c59f10084', 'value': 28898.851601114035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x061e9c2162890a9d398c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x805a1d9ecffe6c3e7fe59701499a3d542c128b0f5bc32934893ac06013ba06c3:log:8', 'hash': '0x805a1d9ecffe6c3e7fe59701499a3d542c128b0f5bc32934893ac06013ba06c3', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 15473.955553150341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d8458f0f5d3fd97e', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x7a71d213c09971564b57e7a8bd2d5607296f1de8ded12908226eabbe99988d17:log:12', 'hash': '0x7a71d213c09971564b57e7a8bd2d5607296f1de8ded12908226eabbe99988d17', 'from': '0x000000000000084e91743124a982076c59f10084', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 28898.851601114035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x061e9c2162890a9d398c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83b', 'uniqueId': '0x0c6e0404f7d9d2e2c7cae69c4445367d2cbc9a2e866c97b84e194278d4d25f1a:log:19', 'hash': '0x0c6e0404f7d9d2e2c7cae69c4445367d2cbc9a2e866c97b84e194278d4d25f1a', 'from': '0xbb767a28ca7f6238e42be69619d8735d5970bc3d', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2652.401531753656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8fc977341ab6a6a174', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:09.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0xf38bdaf909a642ce3efdd76d40a5f7dda9069f20974c557c3c1cf7e46776a633:log:2', 'hash': '0xf38bdaf909a642ce3efdd76d40a5f7dda9069f20974c557c3c1cf7e46776a633', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0000000071e801062eb0544403f66176bba42dc0', 'value': 3984.6140758657557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd801a0ee9c17c1c001', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0x6f102e43fb0bc0d389ccfaff2760571504fbe6a932bb12bfc0e813c84da8eb7e:log:10', 'hash': '0x6f102e43fb0bc0d389ccfaff2760571504fbe6a932bb12bfc0e813c84da8eb7e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xf0eaf0c77c1362ad4de668755be5559eb47cfb9f', 'value': 12146.26362095979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02927344e999a61e1380', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0x236ba357e4214e729c095ca411d61b5eea256dd8e2637662cf48ecae1b0c2e6f:log:14', 'hash': '0x236ba357e4214e729c095ca411d61b5eea256dd8e2637662cf48ecae1b0c2e6f', 'from': '0x0000000071e801062eb0544403f66176bba42dc0', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3984.6140758657557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd801a0ee9c17c1c001', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83c', 'uniqueId': '0x66ac01a8f355942384a469c1bf0dc346fcda503de97160ca5ceb70483812ea9a:log:51', 'hash': '0x66ac01a8f355942384a469c1bf0dc346fcda503de97160ca5ceb70483812ea9a', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 3902.6452798983332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd3901544f7770fed50', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:43.000Z'}}, {'blockNum': '0xadc83d', 'uniqueId': '0x42b5afd9178ce8cd5fa91c414a61d71c203271fd082354e34af141fa20a30d90:log:24', 'hash': '0x42b5afd9178ce8cd5fa91c414a61d71c203271fd082354e34af141fa20a30d90', 'from': '0xf0eaf0c77c1362ad4de668755be5559eb47cfb9f', 'to': '0x7e8eda0099a86709ef44c1f27a446c92620d6c71', 'value': 12146.26362095979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02927344e999a61e1380', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:01:59.000Z'}}, {'blockNum': '0xadc83e', 'uniqueId': '0xfdca9721560b9c72741788552dad5dd3401e82b926f582240bf4e2602e1d298d:log:16', 'hash': '0xfdca9721560b9c72741788552dad5dd3401e82b926f582240bf4e2602e1d298d', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0000000071e801062eb0544403f66176bba42dc0', 'value': 2787.583890514025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x971d7f6b2b89d95bb1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:13.000Z'}}, {'blockNum': '0xadc83e', 'uniqueId': '0x58bf57a7ba7234ff92f5cde99fb4e7c878ebe6fea6e892a9a8915b2137cdfaf5:log:22', 'hash': '0x58bf57a7ba7234ff92f5cde99fb4e7c878ebe6fea6e892a9a8915b2137cdfaf5', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 12792.461861400954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b57b123d939033c312', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:13.000Z'}}, {'blockNum': '0xadc83e', 'uniqueId': '0xac1af40f1d310488b0a72357df3e4675b7d57f0b3a620dcbb0e04bf528087395:log:26', 'hash': '0xac1af40f1d310488b0a72357df3e4675b7d57f0b3a620dcbb0e04bf528087395', 'from': '0x0000000071e801062eb0544403f66176bba42dc0', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2787.583890514025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x971d7f6b2b89d95bb1', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:13.000Z'}}, {'blockNum': '0xadc841', 'uniqueId': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436:log:5', 'hash': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436', 'from': '0x6e352003c12f491f56c11459cd20596d3866b321', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 209.57105637627777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c61f56b4f660e12', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:33.000Z'}}, {'blockNum': '0xadc841', 'uniqueId': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436:log:7', 'hash': '0x19f09ab0a9a0a3cf7d749e5614c334c9c3df79abc6e1500aa29b8338f46ca436', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 209.57085764132216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c6140abb8f70000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:33.000Z'}}, {'blockNum': '0xadc841', 'uniqueId': '0x6343badf931f554f714d3e1ca56076a9650a99878feae45dea33d14db62a27f5:log:186', 'hash': '0x6343badf931f554f714d3e1ca56076a9650a99878feae45dea33d14db62a27f5', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'value': 1252.1448477172103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43e10020d9dfe9626d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:02:33.000Z'}}, {'blockNum': '0xadc844', 'uniqueId': '0x7583c58a55deec361e67dafa1d41cd4dd20adde184161244f5847d0f9eaa3f74:log:281', 'hash': '0x7583c58a55deec361e67dafa1d41cd4dd20adde184161244f5847d0f9eaa3f74', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x7613486b70026dcf33dc9c7998c57eb0746111aa', 'value': 622.9081478932818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21c4964c333b8c04c6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:03:06.000Z'}}, {'blockNum': '0xadc845', 'uniqueId': '0xce57b456300cc38453060fc079fae9b5567c971caa36cd3c00b40e518af5c1bd:log:143', 'hash': '0xce57b456300cc38453060fc079fae9b5567c971caa36cd3c00b40e518af5c1bd', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0x82a2ee453f0435978488a9a35d7a923e0c2b3831', 'value': 12792.461861400954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b57b123d939033c312', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:03:34.000Z'}}, {'blockNum': '0xadc845', 'uniqueId': '0x323c62e0688d71d04b57e40ab0eb3f6bb13a51619f42d259d907001eb1326291:log:148', 'hash': '0x323c62e0688d71d04b57e40ab0eb3f6bb13a51619f42d259d907001eb1326291', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 6716.219561661776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016c16451b466befc751', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:03:34.000Z'}}, {'blockNum': '0xadc846', 'uniqueId': '0x761dcc7a8a4474536361e9eb623eef050fb84f47cee9e94658e7d1b683d0cf37:log:103', 'hash': '0x761dcc7a8a4474536361e9eb623eef050fb84f47cee9e94658e7d1b683d0cf37', 'from': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'to': '0x08bb919869aa4d40528c4c2c521096e35846b44e', 'value': 1252.1448477172103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43e10020d9dfe9626d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:03.000Z'}}, {'blockNum': '0xadc849', 'uniqueId': '0xcace13915a1198a15829ee4196745498f4070af9a3cdc5987f592e6eb251d1a6:log:9', 'hash': '0xcace13915a1198a15829ee4196745498f4070af9a3cdc5987f592e6eb251d1a6', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'value': 1633.0233133062934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x5886c04352e10d1e89', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:24.000Z'}}, {'blockNum': '0xadc849', 'uniqueId': '0xc868538b6172ecb1163477b1a3be07661489dd7ccda32bb143a7cd72dd569564:log:88', 'hash': '0xc868538b6172ecb1163477b1a3be07661489dd7ccda32bb143a7cd72dd569564', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x08bf8d6fa77f7bc937e62dcb7a5d1201890c48fa', 'value': 9261.426267874835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01f6101bc97e273fa362', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:24.000Z'}}, {'blockNum': '0xadc849', 'uniqueId': '0xc40e62d017b2255280bde3c6d4465dc025b408d6aa323ec5bf80a6f45df5e01f:log:93', 'hash': '0xc40e62d017b2255280bde3c6d4465dc025b408d6aa323ec5bf80a6f45df5e01f', 'from': '0x00000000000f75712e0cfa682f7bfc795112cbd2', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1633.0233133062934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x5886c04352e10d1e89', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:04:24.000Z'}}, {'blockNum': '0xadc84a', 'uniqueId': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1:log:200', 'hash': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1', 'from': '0x6e352003c12f491f56c11459cd20596d3866b321', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 226.30066976086863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0c448d7c27b98eaa93', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:05:12.000Z'}}, {'blockNum': '0xadc84a', 'uniqueId': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1:log:202', 'hash': '0x00ffd0209f3ec414515cb7af11a44eebdfaa674d4f192d71ed8f4c6fc02df2c1', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 226.30041375353835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0c448c93515f938000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:05:12.000Z'}}, {'blockNum': '0xadc84a', 'uniqueId': '0x974f6cb002c34cfee0a5ed83d037f9ff27371ec70f30fdc5f8badc09b383a127:log:273', 'hash': '0x974f6cb002c34cfee0a5ed83d037f9ff27371ec70f30fdc5f8badc09b383a127', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xe0f8d1c45b8f180000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:05:12.000Z'}}, {'blockNum': '0xadc84e', 'uniqueId': '0x14e1881c3aa8f0b57157951da42417d9d3b5999dab90634559f0d527aa4cc52d:log:219', 'hash': '0x14e1881c3aa8f0b57157951da42417d9d3b5999dab90634559f0d527aa4cc52d', 'from': '0x22ab60db2853bbe799ddaa8bc11eeb5c944025ba', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 105.40010658971966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x05b6b86682788c66e5', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:03.000Z'}}, {'blockNum': '0xadc84e', 'uniqueId': '0x866f5efe3e2e3b54be7a0e3e1f616576c7c83d4f07993b1ea2ad0fabe5471060:log:338', 'hash': '0x866f5efe3e2e3b54be7a0e3e1f616576c7c83d4f07993b1ea2ad0fabe5471060', 'from': '0x7613486b70026dcf33dc9c7998c57eb0746111aa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 622.9081478932818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x21c4964c333b8c04c6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:03.000Z'}}, {'blockNum': '0xadc850', 'uniqueId': '0x71037cce6121c5c54b85453417bc2dac0c8e4ddf3f9377be44c5db054b49614b:log:35', 'hash': '0x71037cce6121c5c54b85453417bc2dac0c8e4ddf3f9377be44c5db054b49614b', 'from': '0x08bf8d6fa77f7bc937e62dcb7a5d1201890c48fa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 9261.426267874835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01f6101bc97e273fa362', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:44.000Z'}}, {'blockNum': '0xadc850', 'uniqueId': '0xcd7ffd05f167f338573df041ded8e01071297b6e52f25e872c4d11ff1b8a0182:log:120', 'hash': '0xcd7ffd05f167f338573df041ded8e01071297b6e52f25e872c4d11ff1b8a0182', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x714870e30c5ab75645e1c13318f318860ed48692', 'value': 6898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0175f0faf4d464880000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:44.000Z'}}, {'blockNum': '0xadc850', 'uniqueId': '0xa8dad3e586bc984b62e2ebcea94a7a0d314c405f1b23fd3b76d62006bda6ccd3:log:122', 'hash': '0xa8dad3e586bc984b62e2ebcea94a7a0d314c405f1b23fd3b76d62006bda6ccd3', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x89fd69fb01792c6127ec440509f491a6c364150f', 'value': 6544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0162c03e5066ec400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:06:44.000Z'}}, {'blockNum': '0xadc85f', 'uniqueId': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5:log:266', 'hash': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5', 'from': '0x7354b71dfa14d0bbc66fd447c5fea71f63379e19', 'to': '0x4d4d05e1205e3a412ae1469c99e0d954113aa76f', 'value': 0.3379930908752916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x04b0caece62877d0', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:10:56.000Z'}}, {'blockNum': '0xadc85f', 'uniqueId': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5:log:270', 'hash': '0x3f6b2b761d8a738e123f0bc78f617504a0820ae202bbc39abbb4c04909ed3aa5', 'from': '0x7354b71dfa14d0bbc66fd447c5fea71f63379e19', 'to': '0x7354b71dfa14d0bbc66fd447c5fea71f63379e19', 'value': 221.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0bff394cf9d1d28000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:10:56.000Z'}}, {'blockNum': '0xadc861', 'uniqueId': '0x0cabbe70908f952906acff1571249a719ad1cad2ef350ad6fcd0bdbe34051039:log:123', 'hash': '0x0cabbe70908f952906acff1571249a719ad1cad2ef350ad6fcd0bdbe34051039', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 5842.838, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x013cbdaa7c5149cf0000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:11:34.000Z'}}, {'blockNum': '0xadc861', 'uniqueId': '0xe811a65cae3072596e6723ecba82bf5ac3f6e1f60fb1e35ec5cdad847d4c9141:log:141', 'hash': '0xe811a65cae3072596e6723ecba82bf5ac3f6e1f60fb1e35ec5cdad847d4c9141', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:11:34.000Z'}}, {'blockNum': '0xadc864', 'uniqueId': '0x7d6f4873799adebd251626e1efccc8ae06a5f2bb247716ea5032b6e90f8bec71:log:147', 'hash': '0x7d6f4873799adebd251626e1efccc8ae06a5f2bb247716ea5032b6e90f8bec71', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:12:35.000Z'}}, {'blockNum': '0xadc86a', 'uniqueId': '0x4591f257f59a42caa1a8a46fa0e5d52da8b7784508c6fe90f83b1ddb4fd6abe1:log:39', 'hash': '0x4591f257f59a42caa1a8a46fa0e5d52da8b7784508c6fe90f83b1ddb4fd6abe1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'value': 1241.78144771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43512def73c0dbac00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:14:36.000Z'}}, {'blockNum': '0xadc86a', 'uniqueId': '0xee7af7522004ea372c3cb69be96eb6f9be1b1989897cb095f708987a264b2974:log:42', 'hash': '0xee7af7522004ea372c3cb69be96eb6f9be1b1989897cb095f708987a264b2974', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 12786.7057354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b52b305f79cef31000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:14:36.000Z'}}, {'blockNum': '0xadc86b', 'uniqueId': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54:log:81', 'hash': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 5713.383611233288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0135b9201b9ceaa2d9e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:05.000Z'}}, {'blockNum': '0xadc86b', 'uniqueId': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54:log:85', 'hash': '0x44590000417b9b7c74c4e6eee81655ae448ddbe153bd5367ad705135153bae54', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x41d500e248616056995ab8176a9ede1945e90101', 'value': 5713.383611233288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0135b9201b9ceaa2d9e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:05.000Z'}}, {'blockNum': '0xadc86c', 'uniqueId': '0x1bc0704733a3947cf86c152acddc95b6c836f878cb54a410fe59e0f5fe9d9c16:log:130', 'hash': '0x1bc0704733a3947cf86c152acddc95b6c836f878cb54a410fe59e0f5fe9d9c16', 'from': '0xbb3c80f634a150a3c6d6a9d779c380473dfbcdc7', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1241.78144771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x43512def73c0dbac00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:19.000Z'}}, {'blockNum': '0xadc86d', 'uniqueId': '0x217dcdf405ddbec92176011ec78a5da99b821941ddc2e7cb56fc52e66ac9048e:log:292', 'hash': '0x217dcdf405ddbec92176011ec78a5da99b821941ddc2e7cb56fc52e66ac9048e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x613158bd6d63e35b991097f705a13b165d083e00', 'value': 120.23403667924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0684951b5521f53aa6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:15:31.000Z'}}, {'blockNum': '0xadc873', 'uniqueId': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0:log:246', 'hash': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:16:49.000Z'}}, {'blockNum': '0xadc873', 'uniqueId': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0:log:249', 'hash': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:16:49.000Z'}}, {'blockNum': '0xadc873', 'uniqueId': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0:log:251', 'hash': '0x3dcadbe406264af838c3ccb676fd78c12176e4c3d55e887c1a6d75af04b7dbe0', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 13847.9955235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02eeb38b1ecc6909b800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:16:49.000Z'}}, {'blockNum': '0xadc874', 'uniqueId': '0xf3da35642a7c5eb2b5702e285e47a96ec746eefa149dfee29b91938e116e32c9:log:53', 'hash': '0xf3da35642a7c5eb2b5702e285e47a96ec746eefa149dfee29b91938e116e32c9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 19969.024539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x043a85e2a1cb4988b000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:02.000Z'}}, {'blockNum': '0xadc876', 'uniqueId': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f:log:312', 'hash': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:36.000Z'}}, {'blockNum': '0xadc876', 'uniqueId': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f:log:315', 'hash': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:36.000Z'}}, {'blockNum': '0xadc876', 'uniqueId': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f:log:317', 'hash': '0xed6ae57b962984b8d8ddd286511504823cb62b66101d20da1ff13038ac9e8e0f', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 6784.197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x016fc5a57b48a6c08000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:36.000Z'}}, {'blockNum': '0xadc877', 'uniqueId': '0x038e5de22f1497b2d9f968b981152770a42ccc2475151e433e1f936505bd8fc0:log:251', 'hash': '0x038e5de22f1497b2d9f968b981152770a42ccc2475151e433e1f936505bd8fc0', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0x82a2ee453f0435978488a9a35d7a923e0c2b3831', 'value': 12786.7057354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02b52b305f79cef31000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:17:43.000Z'}}, {'blockNum': '0xadc87a', 'uniqueId': '0x8e27afee198a18150db05a7d5903c6773f34ba533bc882ff40f55fa9d61fc5f1:log:1', 'hash': '0x8e27afee198a18150db05a7d5903c6773f34ba533bc882ff40f55fa9d61fc5f1', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 19969.024539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x043a85e2a1cb4988b000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:18:33.000Z'}}, {'blockNum': '0xadc87a', 'uniqueId': '0x1c58639c1e47b48508311f240a5a623be1e6b586528fb176f0a2de9971876c9f:log:274', 'hash': '0x1c58639c1e47b48508311f240a5a623be1e6b586528fb176f0a2de9971876c9f', 'from': '0x41d500e248616056995ab8176a9ede1945e90101', 'to': '0xcd9ae85c8db98bd0298452fc7279b5ce5662e840', 'value': 5713.383611233288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0135b9201b9ceaa2d9e6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:18:33.000Z'}}, {'blockNum': '0xadc87e', 'uniqueId': '0x88fa328125931b3da1d85eef3242dd97dea5c72a5123c6ae39dce3349a01bca1:log:81', 'hash': '0x88fa328125931b3da1d85eef3242dd97dea5c72a5123c6ae39dce3349a01bca1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'value': 1188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4066cfd9b4cc100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:19:10.000Z'}}, {'blockNum': '0xadc87f', 'uniqueId': '0xeba085ef685d6d28fa55d430ea599daff49418edb53cd73e03282894ff919aa3:log:162', 'hash': '0xeba085ef685d6d28fa55d430ea599daff49418edb53cd73e03282894ff919aa3', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 5293.963111717925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x011efc7f297d208856b7', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:19:30.000Z'}}, {'blockNum': '0xadc883', 'uniqueId': '0x49b241c0fe739025aef5c34d2d7701376c90ddb63619e9bad614a239785680ca:log:18', 'hash': '0x49b241c0fe739025aef5c34d2d7701376c90ddb63619e9bad614a239785680ca', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'value': 15820.92983866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0359a781d961eb69a800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:20:07.000Z'}}, {'blockNum': '0xadc883', 'uniqueId': '0xcdf446d4feafc9fc0b79cc419dbe522755b62bfb01647be286718136bd3b9512:log:20', 'hash': '0xcdf446d4feafc9fc0b79cc419dbe522755b62bfb01647be286718136bd3b9512', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'value': 3496.0621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xbd859ba504e62d4000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:20:07.000Z'}}, {'blockNum': '0xadc889', 'uniqueId': '0xd01569d41743dc71b357a42469cc10a9d402742943c8f23911a5187174faa097:log:191', 'hash': '0xd01569d41743dc71b357a42469cc10a9d402742943c8f23911a5187174faa097', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xf71a09ffad24f1a263fbc0a6def8f0766f327de4', 'value': 445.387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1824fc7cbd10e78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:22:07.000Z'}}, {'blockNum': '0xadc893', 'uniqueId': '0x3f18f6a51c91726723efc1450db4a009600549888de8871bf3c90b698ceab22a:log:4', 'hash': '0x3f18f6a51c91726723efc1450db4a009600549888de8871bf3c90b698ceab22a', 'from': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1188.513699197655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x406df0e067a1aeb18b', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:23:38.000Z'}}, {'blockNum': '0xadc89a', 'uniqueId': '0x33b2e04c9554d803223163c4b0978eb6cc3c9eac959b5fb17ce96381593af65c:log:50', 'hash': '0x33b2e04c9554d803223163c4b0978eb6cc3c9eac959b5fb17ce96381593af65c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x351e17de911fdb2c0fb4bd6950857e0d8e0a84be', 'value': 3961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd6b9eae1b8fa440000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:25:45.000Z'}}, {'blockNum': '0xadc8ac', 'uniqueId': '0x7533ff03b162af99abe07e7ca5b757a7f8f97157a40306cc1d3a80fe05df68c9:log:169', 'hash': '0x7533ff03b162af99abe07e7ca5b757a7f8f97157a40306cc1d3a80fe05df68c9', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xccb586177f8e2461a81cacdb8b793b2e265df169', 'value': 69.02163302460254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03bdde198b28cded5f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:29:10.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0xbb503edf995aa99ff85b82c01b4043a4b1863f5d62d9fb7e1a532fb8124d202a:log:112', 'hash': '0xbb503edf995aa99ff85b82c01b4043a4b1863f5d62d9fb7e1a532fb8124d202a', 'from': '0x8129a73c9e93343eed2f5e0a5886d040e772703d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18374.00662994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03e40e90b04565ed0800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0x51bc8ca970650e3547c169f890045db2d5b0f17ddfa3e4e476e9022934160121:log:115', 'hash': '0x51bc8ca970650e3547c169f890045db2d5b0f17ddfa3e4e476e9022934160121', 'from': '0x82a2ee453f0435978488a9a35d7a923e0c2b3831', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25579.167596800955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x056aa6429d0d5f26d312', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0x4654a40269ff3062debef3f804195105b0f5b968137479c7d3d6f949a04736aa:log:118', 'hash': '0x4654a40269ff3062debef3f804195105b0f5b968137479c7d3d6f949a04736aa', 'from': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19982.1726777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x043b3c5a3447a899a800', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8b6', 'uniqueId': '0x142bcb10a60d4c229fbe00a154ef2510d1d1af4e50337f6fbdd7f9d5de6da0dc:log:121', 'hash': '0x142bcb10a60d4c229fbe00a154ef2510d1d1af4e50337f6fbdd7f9d5de6da0dc', 'from': '0x714870e30c5ab75645e1c13318f318860ed48692', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0175f0faf4d464880000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:31:22.000Z'}}, {'blockNum': '0xadc8c9', 'uniqueId': '0xbe78d46364642024794a74157b1315ba755a89abd457b4f1e57f3c588e3ce561:log:134', 'hash': '0xbe78d46364642024794a74157b1315ba755a89abd457b4f1e57f3c588e3ce561', 'from': '0x351e17de911fdb2c0fb4bd6950857e0d8e0a84be', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 3961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xd6b9eae1b8fa440000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:36:16.000Z'}}, {'blockNum': '0xadc8d3', 'uniqueId': '0x52048d7c4a181b4ba0e1492e627f52ad83c55432e7a1feb8ccbd91b249e16234:log:323', 'hash': '0x52048d7c4a181b4ba0e1492e627f52ad83c55432e7a1feb8ccbd91b249e16234', 'from': '0x613158bd6d63e35b991097f705a13b165d083e00', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 120.23403667924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0684951b5521f53aa6', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:37:50.000Z'}}, {'blockNum': '0xadc8d4', 'uniqueId': '0xfeb86c9b070cedde2f90b56ab3e88e3e5c034241880f853e6af28d3c374cf51a:log:32', 'hash': '0xfeb86c9b070cedde2f90b56ab3e88e3e5c034241880f853e6af28d3c374cf51a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 13955.019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02f480cae3a3fae78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:38:14.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:233', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 13955.019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02f480cae3a3fae78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:236', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 13955.019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02f480cae3a3fae78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:238', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 13815.46881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x02ecf025053442a2a000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8d8', 'uniqueId': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d:log:247', 'hash': '0xa721e342e673c5d7818311cc2d52ca427bd2063182fd557282b168fcfa32ae6d', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x6e352003c12f491f56c11459cd20596d3866b321', 'value': 139.55019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0790a5de6fb844e000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:39:07.000Z'}}, {'blockNum': '0xadc8e1', 'uniqueId': '0xdf4983862263ab66de4b27d9134fae6e353f145b9d1123a04fc4949f098c8fd2:log:1', 'hash': '0xdf4983862263ab66de4b27d9134fae6e353f145b9d1123a04fc4949f098c8fd2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 14466.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03103b1d4da935e78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:40:34.000Z'}}, {'blockNum': '0xadc8ed', 'uniqueId': '0x2ba9335998dd7fc32e8f95527107f1487808bf67a7cd93501f6908cef1abaf24:log:34', 'hash': '0x2ba9335998dd7fc32e8f95527107f1487808bf67a7cd93501f6908cef1abaf24', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x444a7786ea391eac153dd6dd727c8b69d5168f88', 'value': 8320.04961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01c307e20ec86d4ea000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:42:26.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0xf6bdc0be8468ee3c25300f2d0618b8daab0d8e3f3d1f2c7650e1d19ca9ddda07:log:127', 'hash': '0xf6bdc0be8468ee3c25300f2d0618b8daab0d8e3f3d1f2c7650e1d19ca9ddda07', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 14466.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03103b1d4da935e78000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755:log:254', 'hash': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755', 'from': '0xb710659faa700169f6eeef3645a1b369da6ea802', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 2966.9730652860117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa0d705cb2e3c95fe21', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755:log:257', 'hash': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x10908c875d865c66f271f5d3949848971c9595c9', 'value': 2966.9730652860117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa0d705cb2e3c95fe21', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8ee', 'uniqueId': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755:log:260', 'hash': '0x0f6d1d16874ee313ae78abc600ded29f579dc5933b619b0ad416ad34216d3755', 'from': '0x10908c875d865c66f271f5d3949848971c9595c9', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2966.9730652860117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xa0d705cb2e3c95fe21', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:43:12.000Z'}}, {'blockNum': '0xadc8f9', 'uniqueId': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923:log:128', 'hash': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923', 'from': '0xb710659faa700169f6eeef3645a1b369da6ea802', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:20.000Z'}}, {'blockNum': '0xadc8f9', 'uniqueId': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923:log:131', 'hash': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x10908c875d865c66f271f5d3949848971c9595c9', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:20.000Z'}}, {'blockNum': '0xadc8f9', 'uniqueId': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923:log:134', 'hash': '0xfb1e849ab4b90f201a8a87322cc85530d2df407d4a673959e240146a3b777923', 'from': '0x10908c875d865c66f271f5d3949848971c9595c9', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:20.000Z'}}, {'blockNum': '0xadc8fb', 'uniqueId': '0x5a0b8df205fabdd3c775d935c649aeb28a79d01a6a3b61d34a481ccdf818e494:log:6', 'hash': '0x5a0b8df205fabdd3c775d935c649aeb28a79d01a6a3b61d34a481ccdf818e494', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x94edc4a3065a7a42db6c57614e513992b2eb3ee4', 'value': 2590.882202259523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8c73b6a3df70a6b0a0', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:30.000Z'}}, {'blockNum': '0xadc8fb', 'uniqueId': '0x9b8aab86fba1497d2a180d21dfddbe312cf3d181d72e7e1a868b5d964975866b:log:62', 'hash': '0x9b8aab86fba1497d2a180d21dfddbe312cf3d181d72e7e1a868b5d964975866b', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 4097.257184042096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xde1cdda4aff66c5e0c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:30.000Z'}}, {'blockNum': '0xadc8fb', 'uniqueId': '0x45cf5103aec773128ad46320f65057497d0e6cec505253bcd102745af8db0821:log:66', 'hash': '0x45cf5103aec773128ad46320f65057497d0e6cec505253bcd102745af8db0821', 'from': '0x94edc4a3065a7a42db6c57614e513992b2eb3ee4', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 2590.882202259523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8c73b6a3df70a6b0a0', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:46:30.000Z'}}, {'blockNum': '0xadc8ff', 'uniqueId': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649:log:169', 'hash': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649', 'from': '0xb710659faa700169f6eeef3645a1b369da6ea802', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:47:46.000Z'}}, {'blockNum': '0xadc8ff', 'uniqueId': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649:log:172', 'hash': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x10908c875d865c66f271f5d3949848971c9595c9', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:47:46.000Z'}}, {'blockNum': '0xadc8ff', 'uniqueId': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649:log:175', 'hash': '0x39fed1e0ce83358799cfc5d61140698e2b5a0a68edc8696628654a0728cca649', 'from': '0x10908c875d865c66f271f5d3949848971c9595c9', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4450.459597929018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xf14288b0c55ae0fd32', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:47:46.000Z'}}, {'blockNum': '0xadc906', 'uniqueId': '0x20b580c341ae2afb6f1e426133ac4352b37bf063436d35efe24f081003fb9fad:log:264', 'hash': '0x20b580c341ae2afb6f1e426133ac4352b37bf063436d35efe24f081003fb9fad', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x444a7786ea391eac153dd6dd727c8b69d5168f88', 'value': 2584.5013168989644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x8c1b292e71dc0e9fc4', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:48:39.000Z'}}, {'blockNum': '0xadc90e', 'uniqueId': '0x354ef5f88e972fcd2fbc763d5093f8dda8bff24be655d1fbb74d1d058cb38bd6:log:236', 'hash': '0x354ef5f88e972fcd2fbc763d5093f8dda8bff24be655d1fbb74d1d058cb38bd6', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x22ab60db2853bbe799ddaa8bc11eeb5c944025ba', 'value': 79.55241369375157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x045002f2c488fbb5e9', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:50:34.000Z'}}, {'blockNum': '0xadc911', 'uniqueId': '0x27502b0ea509076a2d273d016f8c81fa36270ae4e666c03d9d21984d37843c6c:log:18', 'hash': '0x27502b0ea509076a2d273d016f8c81fa36270ae4e666c03d9d21984d37843c6c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 79912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x10ec09c7801407a00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-04T23:50:54.000Z'}}, {'blockNum': '0xadc97f', 'uniqueId': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431:log:248', 'hash': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 1467.5329875470197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4f8e1c84d9dbdece7c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T00:19:36.000Z'}}, {'blockNum': '0xadc97f', 'uniqueId': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431:log:252', 'hash': '0xfae6ba27b2e7ee8e9a9edda7cf008e14d45cebbc732d344fa375801103505431', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1467.5329875470197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4f8e1c84d9dbdece7c', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T00:19:36.000Z'}}, {'blockNum': '0xadca52', 'uniqueId': '0x9f286c5e1675c8d6664674abf56cbb5d88195642604baffe57b6a57316d46855:log:43', 'hash': '0x9f286c5e1675c8d6664674abf56cbb5d88195642604baffe57b6a57316d46855', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 4150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0xe0f8d1c45b8f180000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:01:32.000Z'}}, {'blockNum': '0xadca6f', 'uniqueId': '0xb3db3d78bd0afd54ec6a6afc30c763bc591a0c8d6fc59344be5117d45c5035c9:log:58', 'hash': '0xb3db3d78bd0afd54ec6a6afc30c763bc591a0c8d6fc59344be5117d45c5035c9', 'from': '0xccb586177f8e2461a81cacdb8b793b2e265df169', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 69.02163302460254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x03bdde198b28cded5f', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:06:03.000Z'}}, {'blockNum': '0xadca76', 'uniqueId': '0xdba1f1aad24d90d71bfdeb59369e8d6a80824c4fdf8303b851bdf4fca1ae2000:log:229', 'hash': '0xdba1f1aad24d90d71bfdeb59369e8d6a80824c4fdf8303b851bdf4fca1ae2000', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x17b77f7f76ccb8cc55f7db8f4560e45a830e92cf', 'value': 1620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x57d20428df44d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:08:03.000Z'}}, {'blockNum': '0xadcafb', 'uniqueId': '0x051a23c488312fed753408799b6ada9800a057a2ecbbd91c956554c39857c790:log:104', 'hash': '0x051a23c488312fed753408799b6ada9800a057a2ecbbd91c956554c39857c790', 'from': '0x9a376c8e244cdbb07eb7856da3cac7f5794b58fa', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:41:59.000Z'}}, {'blockNum': '0xadcafd', 'uniqueId': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e:log:107', 'hash': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 167.77163720140814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x09184c972477a48444', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:42:15.000Z'}}, {'blockNum': '0xadcafd', 'uniqueId': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e:log:114', 'hash': '0xea2e64acd5dcfe186e096aee2be7a57d3bf9900474a8c0aefd621057b809af0e', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0x6e352003c12f491f56c11459cd20596d3866b321', 'value': 167.77163652622173, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x09184c968743658000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:42:15.000Z'}}, {'blockNum': '0xadcb4e', 'uniqueId': '0x375323b2efd21d5dfcd15f6eb18bd8e60a05eb258202bb34125608f06bc9ade9:log:52', 'hash': '0x375323b2efd21d5dfcd15f6eb18bd8e60a05eb258202bb34125608f06bc9ade9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x607e0591d76eb0ba42f3510e57a82cc7dada6763', 'value': 586.48192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1fcb1256ecf5100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T01:57:24.000Z'}}, {'blockNum': '0xadcb60', 'uniqueId': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be:log:270', 'hash': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xca9af520706a57cecde6f596852eabb5a0e6bb0e', 'value': 603.9461671500414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd6fcf2dd4e90c54', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:01:42.000Z'}}, {'blockNum': '0xadcb60', 'uniqueId': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be:log:304', 'hash': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be', 'from': '0xca9af520706a57cecde6f596852eabb5a0e6bb0e', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 603.9461671500414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd6fcf2dd4e90c54', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:01:42.000Z'}}, {'blockNum': '0xadcb60', 'uniqueId': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be:log:308', 'hash': '0xff442cb35ba290ab7203330e9a35771482da546a239d8ab5350d179c7c4879be', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'value': 603.9461671500414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x20bd6fcf2dd4e90c54', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:01:42.000Z'}}, {'blockNum': '0xadcba5', 'uniqueId': '0x0b5f65f3e8b6012a8a77422ce9f670f02b89271638c90a21464f25c8c13fa8f6:log:30', 'hash': '0x0b5f65f3e8b6012a8a77422ce9f670f02b89271638c90a21464f25c8c13fa8f6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x306d55cb0b6b115fb9e47e638e137b6b2c9f14f4', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:14:21.000Z'}}, {'blockNum': '0xadcbc3', 'uniqueId': '0x0831ea9bb4758cbf4a98a546b94bececc283ca8f87ea7b4c8f2a4eaf950bb670:log:121', 'hash': '0x0831ea9bb4758cbf4a98a546b94bececc283ca8f87ea7b4c8f2a4eaf950bb670', 'from': '0x306d55cb0b6b115fb9e47e638e137b6b2c9f14f4', 'to': '0x444a5e0d2515f322e7278f6ee95cb34d8de98f09', 'value': 1300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x46791fc84e07d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:20:19.000Z'}}, {'blockNum': '0xadcbd2', 'uniqueId': '0xa279f408d243b29ff0e376c6ee8c611e0620d0435b6de7c52bc222156ea1ea6f:log:145', 'hash': '0xa279f408d243b29ff0e376c6ee8c611e0620d0435b6de7c52bc222156ea1ea6f', 'from': '0x444a5e0d2515f322e7278f6ee95cb34d8de98f09', 'to': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'value': 1376.76394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4aa2701505a3364000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:24:09.000Z'}}, {'blockNum': '0xadcc68', 'uniqueId': '0xe8b8768ed4df2772110527c717ccff75c9dff6a69df95f4f90d00d8982af39d2:log:168', 'hash': '0xe8b8768ed4df2772110527c717ccff75c9dff6a69df95f4f90d00d8982af39d2', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 15473.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d831d47fcbc30000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:58:19.000Z'}}, {'blockNum': '0xadcc6b', 'uniqueId': '0xdc2fd943fe1be2bcb0d6961b6e110a030a4f7eac95bcb4a16fb7e7dd6cc7c673:log:8', 'hash': '0xdc2fd943fe1be2bcb0d6961b6e110a030a4f7eac95bcb4a16fb7e7dd6cc7c673', 'from': '0xf43a28ceea7080ef2d9972e92f7d52af203763c4', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 1376.76394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x4aa2701505a3364000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T02:58:31.000Z'}}, {'blockNum': '0xadcff1', 'uniqueId': '0x1064dc9e3e4bde249db0d32ed26f842f7f6722137f2cd167a423bd12aca106ea:log:139', 'hash': '0x1064dc9e3e4bde249db0d32ed26f842f7f6722137f2cd167a423bd12aca106ea', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe6ebea9bb68b98196af4ad072bfb8436c566fe1a', 'value': 32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01bc16d674ec800000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:17:04.000Z'}}, {'blockNum': '0xadd055', 'uniqueId': '0x3a7e9c395873093953edaf5a350d93d740d0a47e1149188e2fd7e2271e06b905:log:98', 'hash': '0x3a7e9c395873093953edaf5a350d93d740d0a47e1149188e2fd7e2271e06b905', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0xf63a7b334cc687700d8bc5031ba52d26bd77411a', 'value': 821.675660071205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2c8b0a5b6918cb47ed', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:39:56.000Z'}}, {'blockNum': '0xadd057', 'uniqueId': '0x58a3c36793b8917dc4998e294d91168dc2f819120ef039751e133119f6f84914:log:118', 'hash': '0x58a3c36793b8917dc4998e294d91168dc2f819120ef039751e133119f6f84914', 'from': '0x607e0591d76eb0ba42f3510e57a82cc7dada6763', 'to': '0x137b4b67380f0f14321c413278fc2393c822cb55', 'value': 586.48192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1fcb1256ecf5100000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:40:20.000Z'}}, {'blockNum': '0xadd05a', 'uniqueId': '0xcf48e56dbe0ed6222660febd82b6375e78da6de82aa4b773092bc8edbfffefc9:log:175', 'hash': '0xcf48e56dbe0ed6222660febd82b6375e78da6de82aa4b773092bc8edbfffefc9', 'from': '0xf63a7b334cc687700d8bc5031ba52d26bd77411a', 'to': '0x757f6a0e982969a69d99e38cdce55c2333b30654', 'value': 821.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2c8af63f9b13370000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:41:00.000Z'}}, {'blockNum': '0xadd05d', 'uniqueId': '0xd7c5c69175d21c5bc40e507c2917bdd4f11e666d67852609a4981075c3402c76:log:30', 'hash': '0xd7c5c69175d21c5bc40e507c2917bdd4f11e666d67852609a4981075c3402c76', 'from': '0x757f6a0e982969a69d99e38cdce55c2333b30654', 'to': '0xabfd88db78d2503af372cb9c21cdc2f181232b4f', 'value': 821.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x2c8af63f9b13370000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:41:24.000Z'}}, {'blockNum': '0xadd07a', 'uniqueId': '0xf20db87fd893aecbc17ee704414b983d19f86cf6a969e4a511c38111b7d910d9:log:203', 'hash': '0xf20db87fd893aecbc17ee704414b983d19f86cf6a969e4a511c38111b7d910d9', 'from': '0xd495826cabb093e7dca498d1a98e4dc55e0c29db', 'to': '0xcbb3f70eaa5554df93c960a593a2b5fc42b69c7a', 'value': 95.08196721311475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x052787016a1b0b0432', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:46:53.000Z'}}, {'blockNum': '0xadd0bd', 'uniqueId': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c:log:77', 'hash': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c', 'from': '0xea8ddc2f50626f1f8f8c11242d1876710d65ff44', 'to': '0xd32b219fb28454484fb86d22a4c13a197195fc73', 'value': 2.1716087440667198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x1e231aa5a53a9fb8', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:59:32.000Z'}}, {'blockNum': '0xadd0bd', 'uniqueId': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c:log:82', 'hash': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 1520.4461795407888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x526c6df09f8c82b9b2', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:59:32.000Z'}}, {'blockNum': '0xadd0bd', 'uniqueId': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c:log:88', 'hash': '0x6c8887fefcf4854805cafd8adc26d0fd157e2e7359ee444701a534152420499c', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0xd32b219fb28454484fb86d22a4c13a197195fc73', 'value': 1520.4461795407888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x526c6df09f8c82b9b2', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T06:59:32.000Z'}}, {'blockNum': '0xadd0ee', 'uniqueId': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090:log:158', 'hash': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'value': 20.020028473701352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0115d56dd3802cc578', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:12:19.000Z'}}, {'blockNum': '0xadd0ee', 'uniqueId': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090:log:162', 'hash': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x2a24a7a4beb9e6d0431c9bc1800045b8fc27a966', 'value': 0.02002002847370135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x47201c1d9173e8', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:12:19.000Z'}}, {'blockNum': '0xadd0ee', 'uniqueId': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090:log:165', 'hash': '0xa48a87e64b68ae3932548273f04ae3ae55fdd628a9a6115a0b415377918b8090', 'from': '0x35596efadd677a83ca34f2b361a42704dabe7b91', 'to': '0x4d2cc143027f42da5905bd106f3db8e0f5bc076f', 'value': 20.000008445227653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e4db7629b5190', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:12:19.000Z'}}, {'blockNum': '0xadd0f2', 'uniqueId': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691:log:34', 'hash': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691', 'from': '0x4d2cc143027f42da5905bd106f3db8e0f5bc076f', 'to': '0x99dec4a119f5e2b45808b04a3efa3f88cff62494', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:13:27.000Z'}}, {'blockNum': '0xadd0f2', 'uniqueId': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691:log:37', 'hash': '0xe3f247223342ea354f14169d99ed106cd116aac2c18be658d2f851dfebb5b691', 'from': '0x99dec4a119f5e2b45808b04a3efa3f88cff62494', 'to': '0x0000000000000000000000000000000000000000', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:13:27.000Z'}}, {'blockNum': '0xadd16a', 'uniqueId': '0xa6283a572a13d57851ce83b8b618b9d616b26d91395a80e58d724d38548b998d:log:162', 'hash': '0xa6283a572a13d57851ce83b8b618b9d616b26d91395a80e58d724d38548b998d', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0xe173e352cebd8c23e04a6fe7ba670bb22cc61add', 'value': 8.39344262295082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x747b7f985f9b4758', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:40:21.000Z'}}, {'blockNum': '0xadd1a5', 'uniqueId': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03:log:148', 'hash': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'value': 1.0933046720471544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2c32ce80a5449a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:54:07.000Z'}}, {'blockNum': '0xadd1a5', 'uniqueId': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03:log:150', 'hash': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03', 'from': '0x94743cfaa3fdc62e9693572314b5ee377eba5d11', 'to': '0x9424b1412450d0f8fc2255faf6046b98213b76bd', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:54:07.000Z'}}, {'blockNum': '0xadd1a5', 'uniqueId': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03:log:152', 'hash': '0x4bd2d537bffa4caf788decfe6ee7ccad0a1e2a3849be3fe01636947bee08ec03', 'from': '0xad6a626ae2b43dcb1b39430ce496d2fa0365ba9c', 'to': '0x75559167905e8a1471c42d22b8cd1892e8df5634', 'value': 1.0933046720471544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0f2c32ce80a5449a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:54:07.000Z'}}, {'blockNum': '0xadd1b6', 'uniqueId': '0x003ea04540e8e78a4bd604e8105e618469fb89d0d55faa2fab5f82431ad9f2a2:log:247', 'hash': '0x003ea04540e8e78a4bd604e8105e618469fb89d0d55faa2fab5f82431ad9f2a2', 'from': '0x142aa41e242f19451d9ea6a8e7dff7da661857db', 'to': '0x841a465f81d2b77b6952a11c893404591976a93d', 'value': 45.90163934426229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x027d0361c94ad92e2a', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T07:56:48.000Z'}}, {'blockNum': '0xadd21e', 'uniqueId': '0x850f214d9fc994af86a26942962c22f487e504a4bc9dd9ea68738d62d1ba7cce:log:6', 'hash': '0x850f214d9fc994af86a26942962c22f487e504a4bc9dd9ea68738d62d1ba7cce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x66774e6456b06e0f9c0ebc6647c3bd83ab41e991', 'value': 988.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x359d21d40b59481c00', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T08:19:15.000Z'}}, {'blockNum': '0xadd26a', 'uniqueId': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e:log:95', 'hash': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e', 'from': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'to': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'value': 430.35206373961114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x175455a9de43c9865d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T08:35:59.000Z'}}, {'blockNum': '0xadd26a', 'uniqueId': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e:log:99', 'hash': '0x17beb84a7171c5a98cf9ac418dc61e11a920c07bded3b91fc77dea1d12b23b0e', 'from': '0xe30835d2f659fc5100b5a588d0c42199638f7220', 'to': '0x77bbc2b409c2c75e4999e8e3eb8309efff37cf2d', 'value': 430.35206373961114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x175455a9de43c9865d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T08:35:59.000Z'}}, {'blockNum': '0xadd379', 'uniqueId': '0xff5dfedb86562ea16090c3d7b894ce138b70208945dff578ae0f9ef28558b568:log:227', 'hash': '0xff5dfedb86562ea16090c3d7b894ce138b70208945dff578ae0f9ef28558b568', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x89fd69fb01792c6127ec440509f491a6c364150f', 'value': 6389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x015a592fb1a092b40000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T09:37:21.000Z'}}, {'blockNum': '0xadd3c7', 'uniqueId': '0x11b7c57a68ae8ce1a54d63668dbe2ef49d979199aed13535317b17ccbd8bcd5c:log:173', 'hash': '0x11b7c57a68ae8ce1a54d63668dbe2ef49d979199aed13535317b17ccbd8bcd5c', 'from': '0x7c43ea3bb6921e9b1ac53ba06f196efd296b3fa8', 'to': '0x5c92f30bf7d3ae7051753600d4b1203f6b78efa7', 'value': 233.15705400710928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x0ca3b4414cea50eb3d', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T09:55:16.000Z'}}, {'blockNum': '0xadd3d0', 'uniqueId': '0x2b6f09a3f483a7c3c4fdcdd4886ed9592a81e838fca784383e520935aac235f5:log:7', 'hash': '0x2b6f09a3f483a7c3c4fdcdd4886ed9592a81e838fca784383e520935aac235f5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x919d8ce0dba4e3aede19dcd019cecff9e640f588', 'value': 997.9947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PNT', 'category': 'erc20', 'rawContract': {'value': '0x3619f56c0c2688c000', 'address': '0x89ab32156e46f46d02ade3fecbe5fc4243b9aaed', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-05T09:57:56.000Z'}}]}}
Number of returned transfers:  214
Answer is complete
 
symbol             BRD
group              BPF
date        2020-12-06
hour             18:00
exchange       binance
Name: 861, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2020-12-06 18:00:00 2020-12-06 06:00:00 2020-12-07 06:00:00
Unix timestamps:  1607230800.0 1607317200.0
Hex Block Numbers:  0xade808 0xae017c
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xadeab1', 'uniqueId': '0x8ea8516cd02789c99825d516ecde41e816532cf6815aa68cbb736439224224a6:log:4', 'hash': '0x8ea8516cd02789c99825d516ecde41e816532cf6815aa68cbb736439224224a6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 511.235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1bb6cf93dc62d38000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T07:32:48.000Z'}}, {'blockNum': '0xadec5a', 'uniqueId': '0x13e3a488183181927e1b628ac9065331375bf1cc27bc4ecee62cd345079cfd47:log:91', 'hash': '0x13e3a488183181927e1b628ac9065331375bf1cc27bc4ecee62cd345079cfd47', 'from': '0x26e79ec23f54804ea2726d7c15f53b0edb94a893', 'to': '0x276b8d13388003d90dc1b520b4171543efdfcdb5', 'value': 984.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3562d86e4e54b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T09:10:09.000Z'}}, {'blockNum': '0xadee3d', 'uniqueId': '0x9615b035cc3f9bd27c3362d2ca6cc92e1f8baf17ec40410ad81aacbd87289812:log:256', 'hash': '0x9615b035cc3f9bd27c3362d2ca6cc92e1f8baf17ec40410ad81aacbd87289812', 'from': '0xe7b448ea473a6d6304c170685ae6f809a76e84a7', 'to': '0x780ba06aa6f51dda07decbe4fcc75b01a9c8f5e6', 'value': 446.847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x18393f7300ccf98000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T10:54:46.000Z'}}, {'blockNum': '0xadefcd', 'uniqueId': '0x711062dd19ac5f401003e6ef6382ee2e3277c8ade1927a2396969bb6cb849fe9:log:88', 'hash': '0x711062dd19ac5f401003e6ef6382ee2e3277c8ade1927a2396969bb6cb849fe9', 'from': '0x592faed4893eb9d74ab5041ec1750b5ce1b0c885', 'to': '0x14aaf7b864f021750faa4f62397272acadbb8017', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T12:16:32.000Z'}}, {'blockNum': '0xadeffe', 'uniqueId': '0x135263e4a4b5d6fedd4eb1fe2644aec04cc7ee1904af4570640aceb0d8d0c216:log:56', 'hash': '0x135263e4a4b5d6fedd4eb1fe2644aec04cc7ee1904af4570640aceb0d8d0c216', 'from': '0x56e8835d90b32169045a1cc518c8dab94901c74c', 'to': '0x7d42ca8be425c3fb1f2ec6643f056448a93d9217', 'value': 1086.81111604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3aea88b7ddc6089aca', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T12:26:58.000Z'}}, {'blockNum': '0xadf018', 'uniqueId': '0xf5fb52d507a6ea78cc372e0b99c87345fad992cf557355bf0d18a605a2dff41c:log:61', 'hash': '0xf5fb52d507a6ea78cc372e0b99c87345fad992cf557355bf0d18a605a2dff41c', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x34a4e158ecc24b7bb35a6bdc107c087a6c402c39', 'value': 446.9924985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x183b445d1e34d3a800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T12:32:46.000Z'}}, {'blockNum': '0xadf1d5', 'uniqueId': '0x72ac2d0ab425ac8b7e133d6f3fdecd05cf4fa6b2cd5cbe0fe55c8b6532a6b621:log:307', 'hash': '0x72ac2d0ab425ac8b7e133d6f3fdecd05cf4fa6b2cd5cbe0fe55c8b6532a6b621', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x4c93b006ec07f0332441007f118e8afa3d04155b', 'value': 1046.5177953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x38bb5a1622ed75e800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T14:06:21.000Z'}}, {'blockNum': '0xadf207', 'uniqueId': '0xb2ce7ed7b7e784f640c13596192cee08de5f6c82559998e2f8dd8b291d761ac9:log:135', 'hash': '0xb2ce7ed7b7e784f640c13596192cee08de5f6c82559998e2f8dd8b291d761ac9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x1b06baa84f0a6b4904283a968636a9a11318f9b5', 'value': 692.14858431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x25857dbe45030f1c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T14:18:46.000Z'}}, {'blockNum': '0xadf309', 'uniqueId': '0xda036428ae4e781359dc6c50efc2e4664d5079e6d71c49be389add513435d83c:log:242', 'hash': '0xda036428ae4e781359dc6c50efc2e4664d5079e6d71c49be389add513435d83c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x6e06977bf13468ac94963ba771d1709de0ddb15b', 'value': 817.28257497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2c4e12fbc95b684400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T15:16:19.000Z'}}, {'blockNum': '0xadf46a', 'uniqueId': '0x93d344aa7323a05434b8b38095cb026924a6c885de367744f3aa918e92d9be8b:log:178', 'hash': '0x93d344aa7323a05434b8b38095cb026924a6c885de367744f3aa918e92d9be8b', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x248faf5e9c2ecd215ed7e9c3d6829b29cc2078e3', 'value': 109.6993112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05f2623e531507c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T16:33:46.000Z'}}, {'blockNum': '0xadf4a1', 'uniqueId': '0x807528783b3063996971e3aa08249cad873e97d0a2de6a3578d8c6f0fdfc8662:log:33', 'hash': '0x807528783b3063996971e3aa08249cad873e97d0a2de6a3578d8c6f0fdfc8662', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x072906b547e17afc03ab0155be6fbd82073336d2', 'value': 1318.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x477b874fa6dd960000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T16:46:34.000Z'}}, {'blockNum': '0xadf4cc', 'uniqueId': '0x322d4fde8e6abdc18720fc6ad3b263aebd6221c9f9af646adfd470f830bd0178:log:88', 'hash': '0x322d4fde8e6abdc18720fc6ad3b263aebd6221c9f9af646adfd470f830bd0178', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ab0054db56f06b6159a922d7fef3e836ea6155a', 'value': 370.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x141b6907d5a8230000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T16:58:27.000Z'}}, {'blockNum': '0xadf501', 'uniqueId': '0x0a08ceb9fe567d3a81ca389bc279197c7da3a89badbe58213b460249836ae478:log:206', 'hash': '0x0a08ceb9fe567d3a81ca389bc279197c7da3a89badbe58213b460249836ae478', 'from': '0x20eaa680695652de0580e9d4b0b630a06e4efd65', 'to': '0x0cc541ea13f06e6c103baed1abb923879a76fd96', 'value': 20781.80444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04669578e7760bb18000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T17:13:22.000Z'}}, {'blockNum': '0xadf57d', 'uniqueId': '0x4b83d3c2b7c33391d5d8db23aaecad9df8cdd0f4d4417c1c19f869df431f9277:log:174', 'hash': '0x4b83d3c2b7c33391d5d8db23aaecad9df8cdd0f4d4417c1c19f869df431f9277', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x575e9ae034091c4496c92a83c61ba69d6ce13429', 'value': 11189.76025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x025e991e4d7bfc31a000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T17:36:38.000Z'}}, {'blockNum': '0xadf581', 'uniqueId': '0xd3b8a1f9dcc0a7b7b5bfa35f4d6986e56cd86fd014e15b2d9dd4fa61ab07a930:log:325', 'hash': '0xd3b8a1f9dcc0a7b7b5bfa35f4d6986e56cd86fd014e15b2d9dd4fa61ab07a930', 'from': '0x53588033cccceff65c4fbe05852b1aee7cf8bb7f', 'to': '0x563d06f6d21c70452022f7d377d56a2fca615b02', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T17:38:13.000Z'}}, {'blockNum': '0xadf5c1', 'uniqueId': '0x667755d7396ca41b6841d9cc1dec836a73e22b40e7519244c0da6e3240003173:log:192', 'hash': '0x667755d7396ca41b6841d9cc1dec836a73e22b40e7519244c0da6e3240003173', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0x68842ccd38fac9a4f79606efffcf9e8bad7bd3e7', 'value': 726.1296427853569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x275d12b6e9de7b3c3a', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T17:57:00.000Z'}}, {'blockNum': '0xadf5dc', 'uniqueId': '0xb7c427f4ae2a5423ecb364a9b5fc673b34aead76dde70b66ebbc077803bb8236:log:68', 'hash': '0xb7c427f4ae2a5423ecb364a9b5fc673b34aead76dde70b66ebbc077803bb8236', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0xa45f83bdf99dcfa04f743b11a1d91658cd4658c6', 'value': 835.9924582291947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2d51b9d77b48bb7f94', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:05:22.000Z'}}, {'blockNum': '0xadf5e2', 'uniqueId': '0xaac5ddf25ad4abc3b3d1cf5ea48fa4b368c7f8db1b219322a8c095155b576d3d:log:99', 'hash': '0xaac5ddf25ad4abc3b3d1cf5ea48fa4b368c7f8db1b219322a8c095155b576d3d', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0xb728944511b1a06b92777c8c6ec79bf75706df6c', 'value': 175.23435421734888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x097fdd7cbab20dda73', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:06:32.000Z'}}, {'blockNum': '0xadf5f3', 'uniqueId': '0x9ae0b6ad5f265a913f9da2a110e78e658f5de1fe812e2761f94125cafdf8c899:log:4', 'hash': '0x9ae0b6ad5f265a913f9da2a110e78e658f5de1fe812e2761f94125cafdf8c899', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0xaac4a322483a080002141a8d3930e6d3e2af9f36', 'value': 56.8630303908277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03152210de0186dc2f', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:10:57.000Z'}}, {'blockNum': '0xadf5fc', 'uniqueId': '0x16e51ca0b3c58f4232f7e429b3c9a5a9c20d7a12d617fdcce42462ff32969de4:log:135', 'hash': '0x16e51ca0b3c58f4232f7e429b3c9a5a9c20d7a12d617fdcce42462ff32969de4', 'from': '0x1c976ea0d60f04b4354ec4ead3f0ce069bd1b3a5', 'to': '0x0c81129b231f49db3f3dccaf08c88b582d656112', 'value': 8291.268077755329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01c1787583b28e33dd67', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:12:24.000Z'}}, {'blockNum': '0xadf605', 'uniqueId': '0x7161abee19a329054444cd6c7a24e7acbcbb357cdce9d6d06c63bda01991987d:log:144', 'hash': '0x7161abee19a329054444cd6c7a24e7acbcbb357cdce9d6d06c63bda01991987d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2e3381202988d535e8185e7089f633f7c9998e83', 'value': 1249.689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43beeb345d29228000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:14:29.000Z'}}, {'blockNum': '0xadf608', 'uniqueId': '0xc09319ac3d88ab5642d44c8c1e46553367d161d86769dc7beccd2dca7a64b003:log:87', 'hash': '0xc09319ac3d88ab5642d44c8c1e46553367d161d86769dc7beccd2dca7a64b003', 'from': '0x2e3381202988d535e8185e7089f633f7c9998e83', 'to': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'value': 1249.689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x43beeb345d29228000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:15:30.000Z'}}, {'blockNum': '0xadf608', 'uniqueId': '0x525b5101f7365b4e2cdea36ff07778f7b9c432de3fcfc29775c5fbaf4963f78e:log:152', 'hash': '0x525b5101f7365b4e2cdea36ff07778f7b9c432de3fcfc29775c5fbaf4963f78e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd8603e06de7042e9f1c9404286d9c14288ba9b75', 'value': 161.951371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08c786d9de8e7fb000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:15:30.000Z'}}, {'blockNum': '0xadf615', 'uniqueId': '0x6f6b3383e37f6d737be6c5182eb70d64638c025f37e773219dea5b93ded2c0b4:log:253', 'hash': '0x6f6b3383e37f6d737be6c5182eb70d64638c025f37e773219dea5b93ded2c0b4', 'from': '0xaac4a322483a080002141a8d3930e6d3e2af9f36', 'to': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'value': 56.8630303908277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03152210de0186dc2f', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:18:37.000Z'}}, {'blockNum': '0xadf616', 'uniqueId': '0xafd0299c58f8a0909022e9c996d68b4883395112b22692f7c4b6082a5543daeb:log:266', 'hash': '0xafd0299c58f8a0909022e9c996d68b4883395112b22692f7c4b6082a5543daeb', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd8603e06de7042e9f1c9404286d9c14288ba9b75', 'value': 863.6092002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2ed0fc37fbf834d000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:19:13.000Z'}}, {'blockNum': '0xadf66e', 'uniqueId': '0xe29568a28b37721eac5f01abf509f78fe8b10ae7f22731373c93b2262056b9ca:log:83', 'hash': '0xe29568a28b37721eac5f01abf509f78fe8b10ae7f22731373c93b2262056b9ca', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5c26597acf077bdca6f3ac11234fba249f00bf43', 'value': 316.82486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x112cd4038f58ddc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:38:34.000Z'}}, {'blockNum': '0xadf683', 'uniqueId': '0xdc36322d66323ab7d6f675289385cd7bf8c17225dbbe4e3ae7bc2ba1f6ab3206:log:53', 'hash': '0xdc36322d66323ab7d6f675289385cd7bf8c17225dbbe4e3ae7bc2ba1f6ab3206', 'from': '0xd8603e06de7042e9f1c9404286d9c14288ba9b75', 'to': '0xb728944511b1a06b92777c8c6ec79bf75706df6c', 'value': 1025.5605712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x37988311da86b48000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:42:56.000Z'}}, {'blockNum': '0xadf687', 'uniqueId': '0x1897bd64080465a8ee3280c268ae420ef5f58a9b9446ef034f4b89c33124f378:log:166', 'hash': '0x1897bd64080465a8ee3280c268ae420ef5f58a9b9446ef034f4b89c33124f378', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x9cf7eec34a55d1a8a128d5aee7eab4633faf38b0', 'value': 385.41309891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x14e4ae6373d90aac00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T18:43:44.000Z'}}, {'blockNum': '0xadf6d7', 'uniqueId': '0x5f51baf2bde9f4e9f6d5f5cbcb08222f2023e2cb731af9b9dab8b55f792f2f19:log:128', 'hash': '0x5f51baf2bde9f4e9f6d5f5cbcb08222f2023e2cb731af9b9dab8b55f792f2f19', 'from': '0xb728944511b1a06b92777c8c6ec79bf75706df6c', 'to': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'value': 1200.7949254173488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4118608e9538c25a73', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:03:20.000Z'}}, {'blockNum': '0xadf6db', 'uniqueId': '0x0326bb63c97d5ceae590ec4353183bb6f4f802b6da20f4084f83d003f9e00254:log:181', 'hash': '0x0326bb63c97d5ceae590ec4353183bb6f4f802b6da20f4084f83d003f9e00254', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0xd74ae0816128e512f37bddc4e784fd77ea06e6c1', 'value': 370.7164155697143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1418b947d226e95d38', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:03:39.000Z'}}, {'blockNum': '0xadf6db', 'uniqueId': '0x18243eb42a307c3d37672bf880920c26706eee470103deff72b2ada51101ca2a:log:192', 'hash': '0x18243eb42a307c3d37672bf880920c26706eee470103deff72b2ada51101ca2a', 'from': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'to': '0x68842ccd38fac9a4f79606efffcf9e8bad7bd3e7', 'value': 1432.9902521989775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4daebc1211357bb340', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:03:39.000Z'}}, {'blockNum': '0xadf6db', 'uniqueId': '0xefbd098451d3363699147a6ce732af0e660f7a32df73342f42420cd6d32ddcc3:log:195', 'hash': '0xefbd098451d3363699147a6ce732af0e660f7a32df73342f42420cd6d32ddcc3', 'from': '0xd74ae0816128e512f37bddc4e784fd77ea06e6c1', 'to': '0xabbc922ce3afa60c75a2b56ec798da7ecea68b27', 'value': 370.7164155697143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1418b947d226e95d38', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:03:39.000Z'}}, {'blockNum': '0xadf78e', 'uniqueId': '0xf43adc284cebd9d31b8021d465b2757c4d2219bbec33c79d5b91ecd12a5c5205:log:22', 'hash': '0xf43adc284cebd9d31b8021d465b2757c4d2219bbec33c79d5b91ecd12a5c5205', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2369.264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x8070249f19f1180000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:42:21.000Z'}}, {'blockNum': '0xadf794', 'uniqueId': '0xba7bf7a2b1c0e984b5116ad0c5736c736b1b99636adb81fba4c6d959090f9ef8:log:75', 'hash': '0xba7bf7a2b1c0e984b5116ad0c5736c736b1b99636adb81fba4c6d959090f9ef8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0f3617c50abc8841c31c9b21b3abb932a3ba7642', 'value': 2339.264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7ecfcf360c53600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:44:07.000Z'}}, {'blockNum': '0xadf7b8', 'uniqueId': '0xbe97bd3a9bf0b87a0927800a261d8269cfa3f67faf24cf0d41f96b374567e3e5:log:176', 'hash': '0xbe97bd3a9bf0b87a0927800a261d8269cfa3f67faf24cf0d41f96b374567e3e5', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xc3e79db09526db7a0409f8dbfe19a19966449168', 'value': 77.8936865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0438fdf72c5e23e800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:50:34.000Z'}}, {'blockNum': '0xadf7d9', 'uniqueId': '0xf8f874f84a2c0d7a3a3b2e36c1a77a94dd9f19c5d521912175e0bd47012b18f8:log:140', 'hash': '0xf8f874f84a2c0d7a3a3b2e36c1a77a94dd9f19c5d521912175e0bd47012b18f8', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa50fea8ddcfc79e9e97c0be31536f5f8ba81c03a', 'value': 354.50804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1337c9901dabf88000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T19:57:04.000Z'}}, {'blockNum': '0xadf866', 'uniqueId': '0x93014e9595082acc4744e775e998eb78d0bad4b52d4993ea5599286854ac7de9:log:216', 'hash': '0x93014e9595082acc4744e775e998eb78d0bad4b52d4993ea5599286854ac7de9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x575e9ae034091c4496c92a83c61ba69d6ce13429', 'value': 14591.10965099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0316fc52d89030d44c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T20:28:10.000Z'}}, {'blockNum': '0xadf890', 'uniqueId': '0x854ec6ff1885d80620d97e99e0df7fd1987e7b9a8ca79ba55cb49a46f0c20c13:log:122', 'hash': '0x854ec6ff1885d80620d97e99e0df7fd1987e7b9a8ca79ba55cb49a46f0c20c13', 'from': '0xee19eab54909fb256c923115dd28ae6fda5aa6c9', 'to': '0x5b473e1879585fba9de397c12d9e03cdca317c51', 'value': 601.23989999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2097e137890f55dc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T20:34:57.000Z'}}, {'blockNum': '0xadf970', 'uniqueId': '0xb8c7305ea0ddbdfdb187e5b6e697a0c2bc3ed931cd99f3b5737a3c2d796cd2c6:log:228', 'hash': '0xb8c7305ea0ddbdfdb187e5b6e697a0c2bc3ed931cd99f3b5737a3c2d796cd2c6', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x22036ad73e8784f76daaae495f0cd16f9c5b8ee9', 'value': 5749.653108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0137b0773ec21cab4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T21:22:29.000Z'}}, {'blockNum': '0xadfa09', 'uniqueId': '0xa360a70fe43a344a026693d64aa948b2cc7be69fcf3c4eaecfc97ebcc803d3ef:log:213', 'hash': '0xa360a70fe43a344a026693d64aa948b2cc7be69fcf3c4eaecfc97ebcc803d3ef', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xa7adc8259e3c5b0f04629d86f93e86357f0487c6', 'value': 55.3450851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0300113daae943b800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T21:56:14.000Z'}}, {'blockNum': '0xadfa16', 'uniqueId': '0xf41f01a945c7fc383d50bc390bfff13e7443af3eaae2a56a9e27fcb2587bb3de:log:185', 'hash': '0xf41f01a945c7fc383d50bc390bfff13e7443af3eaae2a56a9e27fcb2587bb3de', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2f9d8f76c66c33efcc9c851e9946fcb292bfc224', 'value': 1004.32898705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3671dd548f17242400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T21:58:57.000Z'}}, {'blockNum': '0xadfa38', 'uniqueId': '0xf1bc08deb8dff9a8e7f307ee380fbe2edafc57fd24633cf77acca7ead21bfb08:log:274', 'hash': '0xf1bc08deb8dff9a8e7f307ee380fbe2edafc57fd24633cf77acca7ead21bfb08', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 21561.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0490d72571562de20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T22:07:44.000Z'}}, {'blockNum': '0xadfaad', 'uniqueId': '0xbde2562499f7311afb3302ea138283bc55dbea776b90f5405305e68eff7f9003:log:214', 'hash': '0xbde2562499f7311afb3302ea138283bc55dbea776b90f5405305e68eff7f9003', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xde2ec036ae7fd7078d2db6178b2224edf620d2a9', 'value': 56.4991645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0310155ac470dc4800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-06T22:34:41.000Z'}}, {'blockNum': '0xadfc57', 'uniqueId': '0xd91dc482e79e9c7090e584eb440c6809b0aca9c60b209e2c48cf60f50c2cc13d:log:84', 'hash': '0xd91dc482e79e9c7090e584eb440c6809b0aca9c60b209e2c48cf60f50c2cc13d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd15e784962aa98b65e127a657c67b91cd4721eca', 'value': 268.671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0e908f230520f98000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T00:08:55.000Z'}}, {'blockNum': '0xadfd38', 'uniqueId': '0x1b86df4da19d999b1b95f1c1807aaf489ebb8dbdf1ab5d1e78bf2430ed46f4cb:log:229', 'hash': '0x1b86df4da19d999b1b95f1c1807aaf489ebb8dbdf1ab5d1e78bf2430ed46f4cb', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x62c6ac7e068056443af2e23212fcd8a2dc142292', 'value': 1359.191901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x49ae93a8a6f4e6d000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:01:49.000Z'}}, {'blockNum': '0xadfd4d', 'uniqueId': '0xf954c9292740c61b6841e1fe8086e0df2021c375198d26ac316a494d2e7af28f:log:171', 'hash': '0xf954c9292740c61b6841e1fe8086e0df2021c375198d26ac316a494d2e7af28f', 'from': '0x2e38084dbe3abf067a7aeab7f30afec2b233810a', 'to': '0x415902d2438a2317caf53d087c6a88656b3e12b9', 'value': 7500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01969368974c05b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:06:19.000Z'}}, {'blockNum': '0xadfd80', 'uniqueId': '0x285acd1847be02836f47c29df0c8c5ffa436f2183bb576cb432ce634d33ddb5e:log:5', 'hash': '0x285acd1847be02836f47c29df0c8c5ffa436f2183bb576cb432ce634d33ddb5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xabfa7424cba43d4d26b08703c1d38c6d50b9adb8', 'value': 82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0471fa858b9e080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:16:16.000Z'}}, {'blockNum': '0xadfd9c', 'uniqueId': '0xbf390caaeaa715404bd758f85303db18260d7234d027f4101aeaf537d982e22b:log:305', 'hash': '0xbf390caaeaa715404bd758f85303db18260d7234d027f4101aeaf537d982e22b', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x543cae942867ecd6a92101eb4d62b558be2b4d13', 'value': 55.5114989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x030260762313fcc800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:23:33.000Z'}}, {'blockNum': '0xadfdf9', 'uniqueId': '0x0ddae3019f51a1640141711444869ec2b022319b1e9f7a66f79dc557c31ec1e1:log:231', 'hash': '0x0ddae3019f51a1640141711444869ec2b022319b1e9f7a66f79dc557c31ec1e1', 'from': '0x543cae942867ecd6a92101eb4d62b558be2b4d13', 'to': '0xa993a6d866dd95713ad6a9714274379d52aa884e', 'value': 119.9970464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06814b25ede0110000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:45:03.000Z'}}, {'blockNum': '0xadfe06', 'uniqueId': '0x89849ed39e27d084563f1bb2154189c33ba1cde08549d34184aa635f847b47c8:log:40', 'hash': '0x89849ed39e27d084563f1bb2154189c33ba1cde08549d34184aa635f847b47c8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad2090487c25060eb6d69ba852b647f63c79e94a', 'value': 15946.846874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03607af505e31e6ba000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:49:05.000Z'}}, {'blockNum': '0xadfe0c', 'uniqueId': '0x3e48e587ba639e1ab5adab16736847ece5a7bce75ea69540f648acb80d08b8b0:log:240', 'hash': '0x3e48e587ba639e1ab5adab16736847ece5a7bce75ea69540f648acb80d08b8b0', 'from': '0xa993a6d866dd95713ad6a9714274379d52aa884e', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 119.9970464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06814b25ede0110000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T01:50:32.000Z'}}, {'blockNum': '0xadfe3c', 'uniqueId': '0x40afa32334a7a9d17986a7e725382c4698c358fbbf67779b2c80867b7069026e:log:106', 'hash': '0x40afa32334a7a9d17986a7e725382c4698c358fbbf67779b2c80867b7069026e', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63314.887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d684e911dda05cd8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T02:02:33.000Z'}}, {'blockNum': '0xae0092', 'uniqueId': '0xa5c9f25010b7b966c3de2484f8aab7c87008a98d457be7f3ccde858ddf94d0b7:log:262', 'hash': '0xa5c9f25010b7b966c3de2484f8aab7c87008a98d457be7f3ccde858ddf94d0b7', 'from': '0x415902d2438a2317caf53d087c6a88656b3e12b9', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 7500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01969368974c05b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T04:13:47.000Z'}}, {'blockNum': '0xae0092', 'uniqueId': '0x1dab1b44d7a34b3903be2f57e189714124a74beff9998319479289d8f4de5a8a:log:263', 'hash': '0x1dab1b44d7a34b3903be2f57e189714124a74beff9998319479289d8f4de5a8a', 'from': '0xfdf386f6bdfd8fed762c6dd5c13c375e62860dd5', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 7887.8871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01ab9a6c65a20e1bc000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T04:13:47.000Z'}}, {'blockNum': '0xae0092', 'uniqueId': '0x943dcc0711ff34d6bc2baa1296e7e9964d842ff0f99892c45ccb25802fc8a680:log:264', 'hash': '0x943dcc0711ff34d6bc2baa1296e7e9964d842ff0f99892c45ccb25802fc8a680', 'from': '0x0cc541ea13f06e6c103baed1abb923879a76fd96', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 20781.80444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04669578e7760bb18000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T04:13:47.000Z'}}, {'blockNum': '0xae00ed', 'uniqueId': '0x4130aa47d33488917b72dcbd13b37e217324b53c03076c12ee00d30915bff336:log:269', 'hash': '0x4130aa47d33488917b72dcbd13b37e217324b53c03076c12ee00d30915bff336', 'from': '0xfa8bdd04101ee2db005ffc2f5ac3d46979d20852', 'to': '0x813186be6a095fae1c814cdf011cc07517efd1c9', 'value': 570.0156168662155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1ee68e4777b7f00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-07T04:33:04.000Z'}}]}}
Number of returned transfers:  56
Answer is complete
 
symbol            PIVX
group              BPF
date        2020-12-11
hour             18:00
exchange       binance
Name: 862, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: PIVX, Contract: 
Datetime timestamps:  2020-12-11 18:00:00 2020-12-11 06:00:00 2020-12-12 06:00:00
Unix timestamps:  1607662800.0 1607749200.0
Hex Block Numbers:  0xae66f8 0xae8020
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            NEBL
group              BPF
date        2020-12-15
hour             18:00
exchange       binance
Name: 863, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2020-12-15 18:00:00 2020-12-15 06:00:00 2020-12-16 06:00:00
Unix timestamps:  1608008400.0 1608094800.0
Hex Block Numbers:  0xaecc89 0xaee5df
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIB
group              BPF
date        2020-12-20
hour             18:00
exchange       binance
Name: 864, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2020-12-20 18:00:00 2020-12-20 06:00:00 2020-12-21 06:00:00
Unix timestamps:  1608440400.0 1608526800.0
Hex Block Numbers:  0xaf4bb0 0xaf650e
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaf4eb4', 'uniqueId': '0xb23e7f8c82b760d53f215d470220acf089be20144fa6e66aac7f6482c7468f7a:log:5', 'hash': '0xb23e7f8c82b760d53f215d470220acf089be20144fa6e66aac7f6482c7468f7a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 56053.821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0bdeaf089da0cb4c8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T07:48:31.000Z'}}, {'blockNum': '0xaf4ebe', 'uniqueId': '0xb744e0cb239a220fffb6ea36c6ee5acbb2d692a99797bb05ce6b7f221c5de016:log:44', 'hash': '0xb744e0cb239a220fffb6ea36c6ee5acbb2d692a99797bb05ce6b7f221c5de016', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 47389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a08f67c86513a540000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T07:51:12.000Z'}}, {'blockNum': '0xaf4ece', 'uniqueId': '0xe5407d7fbe2bbe04e42af483ebb206ef0ad48126074de16debda3f4bdf03b234:log:22', 'hash': '0xe5407d7fbe2bbe04e42af483ebb206ef0ad48126074de16debda3f4bdf03b234', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x933e1047abc84c0f08bd083fbebb193ff7b3fc82', 'value': 15387.57316376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03422979a99540796000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T07:55:42.000Z'}}, {'blockNum': '0xaf4edc', 'uniqueId': '0x13260e8e6566de55e416df56ae726cf822caeb4b61be52c8e4a4f2da93e7df7f:log:28', 'hash': '0x13260e8e6566de55e416df56ae726cf822caeb4b61be52c8e4a4f2da93e7df7f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x933e1047abc84c0f08bd083fbebb193ff7b3fc82', 'value': 17215.89407108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03a546865bee64f59000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T07:57:55.000Z'}}, {'blockNum': '0xaf4ef0', 'uniqueId': '0xeb0a158a51bd083254b7c3d9a95722742e6df36f67d088f83d1fe0c04b99444c:log:268', 'hash': '0xeb0a158a51bd083254b7c3d9a95722742e6df36f67d088f83d1fe0c04b99444c', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56053.821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0bdeaf089da0cb4c8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T08:02:39.000Z'}}, {'blockNum': '0xaf5016', 'uniqueId': '0xc765a86ab73a0123c31573a9fa17957d72dca40af65112655527a97619cb9074:log:62', 'hash': '0xc765a86ab73a0123c31573a9fa17957d72dca40af65112655527a97619cb9074', 'from': '0x4fbb9136f1755f69bd9dc94582b77ac33bf22626', 'to': '0xf3eb77da487027b4cd7b6fa772ba5e3ea4eda0ae', 'value': 2446.6100516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x84a188ff3c0e20a000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T09:05:05.000Z'}}, {'blockNum': '0xaf5024', 'uniqueId': '0xa6fd17c3de85d733f3a47c9f33c5c8a217489c60fd6166433b25c53add4810d1:log:162', 'hash': '0xa6fd17c3de85d733f3a47c9f33c5c8a217489c60fd6166433b25c53add4810d1', 'from': '0xf3eb77da487027b4cd7b6fa772ba5e3ea4eda0ae', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 2446.6100516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x84a188ff3c0e20a000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T09:08:53.000Z'}}, {'blockNum': '0xaf50bf', 'uniqueId': '0xb3231ff826be691123c717da7551d36344c2d66bbbccb3130b7817e1421860d3:log:103', 'hash': '0xb3231ff826be691123c717da7551d36344c2d66bbbccb3130b7817e1421860d3', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x2c7b75ba038d73090beb3f1a951373c26acca8b4', 'value': 76977.30103565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x104cf2a658b4131e9400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T09:40:39.000Z'}}, {'blockNum': '0xaf5125', 'uniqueId': '0x7ece3c2cf7024a3615d1a9976625e69594ae5c7e33e36f7442f3ce58bdd855ba:log:306', 'hash': '0x7ece3c2cf7024a3615d1a9976625e69594ae5c7e33e36f7442f3ce58bdd855ba', 'from': '0x2c7b75ba038d73090beb3f1a951373c26acca8b4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 76977.30103565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x104cf2a658b4131e9400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:01:38.000Z'}}, {'blockNum': '0xaf5150', 'uniqueId': '0x9f6142a80b19a34c4289bd7c678d80e0a87c9126ef3e3caedc225f87f28c890d:log:20', 'hash': '0x9f6142a80b19a34c4289bd7c678d80e0a87c9126ef3e3caedc225f87f28c890d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9f1ac2ef934721c3714d2e0da78747185548e9c3', 'value': 133235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1c36af0efeb751ec0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:10:16.000Z'}}, {'blockNum': '0xaf5168', 'uniqueId': '0xac5c81031c9f493017d340000d0f518f00ae59267f13121d5d99e0ef715cecd7:log:3', 'hash': '0xac5c81031c9f493017d340000d0f518f00ae59267f13121d5d99e0ef715cecd7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9f1ac2ef934721c3714d2e0da78747185548e9c3', 'value': 41861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08dd4a134eeaa2f40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:15:53.000Z'}}, {'blockNum': '0xaf5183', 'uniqueId': '0xdb5020c48298cda505ae04bd1daf18d8e66846ff18a74fd04d9b0e72dbf6fd00:log:7', 'hash': '0xdb5020c48298cda505ae04bd1daf18d8e66846ff18a74fd04d9b0e72dbf6fd00', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 23694.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05047b3e43289d2a0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:22:42.000Z'}}, {'blockNum': '0xaf5183', 'uniqueId': '0xdb5020c48298cda505ae04bd1daf18d8e66846ff18a74fd04d9b0e72dbf6fd00:log:9', 'hash': '0xdb5020c48298cda505ae04bd1daf18d8e66846ff18a74fd04d9b0e72dbf6fd00', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 23694.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05047b3e43289d2a0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:22:42.000Z'}}, {'blockNum': '0xaf5191', 'uniqueId': '0x9d33888457d1d771634e159b48cf788eeaf7b3ebe5a55ea508f9344f3571aa34:log:35', 'hash': '0x9d33888457d1d771634e159b48cf788eeaf7b3ebe5a55ea508f9344f3571aa34', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 133218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1c35c322dcc934480000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:24:18.000Z'}}, {'blockNum': '0xaf51a3', 'uniqueId': '0xd4c014ac8d1777dc9f13b18a97cf19339710be59564cb549a423a637c3067824:log:65', 'hash': '0xd4c014ac8d1777dc9f13b18a97cf19339710be59564cb549a423a637c3067824', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 23694.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05047b3e43289d2a0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:28:25.000Z'}}, {'blockNum': '0xaf51af', 'uniqueId': '0xa35b0bdc1b3c5181cf30d316d023c44185bb951d89606d203ba08fa6e5bbe79b:log:20', 'hash': '0xa35b0bdc1b3c5181cf30d316d023c44185bb951d89606d203ba08fa6e5bbe79b', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 133218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1c35c322dcc934480000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:32:04.000Z'}}, {'blockNum': '0xaf51cb', 'uniqueId': '0x60f57f8331a4c50981abbbdb0112b7692ff6a3dc8f6fe86647bee2f93d4da7ca:log:222', 'hash': '0x60f57f8331a4c50981abbbdb0112b7692ff6a3dc8f6fe86647bee2f93d4da7ca', 'from': '0xb9164fb930965146411bb0c849bfd55ac4d9b3f5', 'to': '0x7a29b818cd15bfa5d33347d2af4cdd6001605e7b', 'value': 444.73549437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x181bf1dfd1e3965400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:37:41.000Z'}}, {'blockNum': '0xaf51e0', 'uniqueId': '0x6382d80e1c707cbc62c36664e466867d488e4a6e6ceb67350802eb734b0bb6aa:log:92', 'hash': '0x6382d80e1c707cbc62c36664e466867d488e4a6e6ceb67350802eb734b0bb6aa', 'from': '0x7a29b818cd15bfa5d33347d2af4cdd6001605e7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 444.73549437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x181bf1dfd1e3965400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:42:20.000Z'}}, {'blockNum': '0xaf521a', 'uniqueId': '0x56937493faeb2723e84c56777ea2ab32743b4c70de3ed231ec4bbdcb6bfca362:log:4', 'hash': '0x56937493faeb2723e84c56777ea2ab32743b4c70de3ed231ec4bbdcb6bfca362', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 17848.67796998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03c7942a5f5916275800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T10:53:29.000Z'}}, {'blockNum': '0xaf543a', 'uniqueId': '0xbf16204371246538353046331652d1141c1a327a52e1804414af152f8f1e5cdb:log:54', 'hash': '0xbf16204371246538353046331652d1141c1a327a52e1804414af152f8f1e5cdb', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 31148.463144574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06988fc3165c00216b05', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:05:01.000Z'}}, {'blockNum': '0xaf543a', 'uniqueId': '0xbf16204371246538353046331652d1141c1a327a52e1804414af152f8f1e5cdb:log:59', 'hash': '0xbf16204371246538353046331652d1141c1a327a52e1804414af152f8f1e5cdb', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 31148.463144574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06988fc3165c00216b05', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:05:01.000Z'}}, {'blockNum': '0xaf544d', 'uniqueId': '0x4a3bc15c9601af7528896c8704aa2d89cf2b014211ccbbcaa25f7c855a9966ee:log:65', 'hash': '0x4a3bc15c9601af7528896c8704aa2d89cf2b014211ccbbcaa25f7c855a9966ee', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 30350.577278175202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x066d4edf0e400ae93938', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:08:44.000Z'}}, {'blockNum': '0xaf544d', 'uniqueId': '0x4a3bc15c9601af7528896c8704aa2d89cf2b014211ccbbcaa25f7c855a9966ee:log:70', 'hash': '0x4a3bc15c9601af7528896c8704aa2d89cf2b014211ccbbcaa25f7c855a9966ee', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 30350.577278175202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x066d4edf0e400ae93938', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:08:44.000Z'}}, {'blockNum': '0xaf544f', 'uniqueId': '0xe84b6029aa2c6cde2ad6c59c143cc3e9bb27a5bfa590d1076627360f1966ead9:log:118', 'hash': '0xe84b6029aa2c6cde2ad6c59c143cc3e9bb27a5bfa590d1076627360f1966ead9', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 61499.0404227492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0d05dea2249c0b0aa43d', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:09:23.000Z'}}, {'blockNum': '0xaf54b2', 'uniqueId': '0x47b534f932604ac8224f0a9891d15dd329241c9b200421410041fadc4482e459:log:220', 'hash': '0x47b534f932604ac8224f0a9891d15dd329241c9b200421410041fadc4482e459', 'from': '0x1660386e976c96bb1f84e5aff4600147dd53e7a7', 'to': '0x0b15e65d4b9934ea2a61d4fdb28aebdbf817cac5', 'value': 397.6937001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x158f1bd92b5f3b2800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:30:37.000Z'}}, {'blockNum': '0xaf54b7', 'uniqueId': '0x74ec7d9d79d4d82db4f6f4b6982771749474172b36cca59e4c9a52ed0000867d:log:223', 'hash': '0x74ec7d9d79d4d82db4f6f4b6982771749474172b36cca59e4c9a52ed0000867d', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 85193.5404227492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x120a59e067c4a834a43d', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T13:31:21.000Z'}}, {'blockNum': '0xaf5593', 'uniqueId': '0x298bd3ac881b34225d5c6948e45a5d878be1a8a5d875ee20c5e162cb64cd0007:log:160', 'hash': '0x298bd3ac881b34225d5c6948e45a5d878be1a8a5d875ee20c5e162cb64cd0007', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 59824.12054754315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cab1273643728dd5196', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:23:29.000Z'}}, {'blockNum': '0xaf5593', 'uniqueId': '0x298bd3ac881b34225d5c6948e45a5d878be1a8a5d875ee20c5e162cb64cd0007:log:165', 'hash': '0x298bd3ac881b34225d5c6948e45a5d878be1a8a5d875ee20c5e162cb64cd0007', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 59824.12054754315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cab1273643728dd5196', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:23:29.000Z'}}, {'blockNum': '0xaf5594', 'uniqueId': '0x205205658f0f5ad08883fbd633f297a08356ddac918ee84296b15b41ba38f578:log:83', 'hash': '0x205205658f0f5ad08883fbd633f297a08356ddac918ee84296b15b41ba38f578', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 59824.12054754315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cab1273643728dd5196', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:24:08.000Z'}}, {'blockNum': '0xaf55b2', 'uniqueId': '0x5e700dd41b6bcd8392fe50a163c0c8de93731981fb2681639b427128f5f04885:log:208', 'hash': '0x5e700dd41b6bcd8392fe50a163c0c8de93731981fb2681639b427128f5f04885', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59824.12054754315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cab1273643728dd5196', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:31:19.000Z'}}, {'blockNum': '0xaf55f3', 'uniqueId': '0x6cf09683c458f524eb5d96be808775617a13905f5f926376b788b885bb53741b:log:45', 'hash': '0x6cf09683c458f524eb5d96be808775617a13905f5f926376b788b885bb53741b', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 38388.42628669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08210a6f2d25293d5400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T14:42:46.000Z'}}, {'blockNum': '0xaf5649', 'uniqueId': '0xc3977246ec5c69647b427dc3f54a36f917588a7d5df433120da7b9b818bf3e1d:log:78', 'hash': '0xc3977246ec5c69647b427dc3f54a36f917588a7d5df433120da7b9b818bf3e1d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x933e1047abc84c0f08bd083fbebb193ff7b3fc82', 'value': 11151.68897131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025c88c5f339ddd84c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:00:43.000Z'}}, {'blockNum': '0xaf564c', 'uniqueId': '0xc5aa12824ef7f09a592770d1e7d54b7a813b1c6fb16207a43cba9728f27a8f07:log:107', 'hash': '0xc5aa12824ef7f09a592770d1e7d54b7a813b1c6fb16207a43cba9728f27a8f07', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56237.10425667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0be89e998c7e3f64ac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:01:57.000Z'}}, {'blockNum': '0xaf5677', 'uniqueId': '0xfe72f2dcdfa94e4f88befd29ef7509a9fd5ce2e3c4bab28b035052bb15510ad0:log:38', 'hash': '0xfe72f2dcdfa94e4f88befd29ef7509a9fd5ce2e3c4bab28b035052bb15510ad0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x933e1047abc84c0f08bd083fbebb193ff7b3fc82', 'value': 4990.14734008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010e8434b6de78cbe000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:13:07.000Z'}}, {'blockNum': '0xaf5699', 'uniqueId': '0xbd4e8fb4729e872b9721557e57077aa96526fde8fca840829307beffdf863210:log:6', 'hash': '0xbd4e8fb4729e872b9721557e57077aa96526fde8fca840829307beffdf863210', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 48361.33833875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a3dac643dbdb983ec00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:20:12.000Z'}}, {'blockNum': '0xaf56ba', 'uniqueId': '0xe46ff4fbc0e1f927cccb40266174291ef0c329666011c028d151f3bd78640eb1:log:0', 'hash': '0xe46ff4fbc0e1f927cccb40266174291ef0c329666011c028d151f3bd78640eb1', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 80190.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10fb224577b3bf8d0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:26:51.000Z'}}, {'blockNum': '0xaf56cf', 'uniqueId': '0xcc8d5fce91004d0fe6191cf9ab5db250c863e47ec7d9db7393c4539b20e6ce77:log:245', 'hash': '0xcc8d5fce91004d0fe6191cf9ab5db250c863e47ec7d9db7393c4539b20e6ce77', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48361.33833875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a3dac643dbdb983ec00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:31:27.000Z'}}, {'blockNum': '0xaf56d0', 'uniqueId': '0xe0b87e2f73eac1382a4abe85fca1668e66540df68cbcb3b95db17ca311adfc3e:log:34', 'hash': '0xe0b87e2f73eac1382a4abe85fca1668e66540df68cbcb3b95db17ca311adfc3e', 'from': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 191508.02475545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x288dabbb26149f514400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:31:45.000Z'}}, {'blockNum': '0xaf5702', 'uniqueId': '0xd274e575477c2ce0fc1432249c40b1198e9d8ab2d53cdcbc90c50e8f5f9f289d:log:59', 'hash': '0xd274e575477c2ce0fc1432249c40b1198e9d8ab2d53cdcbc90c50e8f5f9f289d', 'from': '0x44f01795f55047b4cd5a62145148f874ae827aee', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1693.17750069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5bc98ede09e72a3400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:42:57.000Z'}}, {'blockNum': '0xaf570d', 'uniqueId': '0x624867e6f25402b8fa37a1426d517ce74e465c3f2085efa601440fad0362ad50:log:2', 'hash': '0x624867e6f25402b8fa37a1426d517ce74e465c3f2085efa601440fad0362ad50', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x116a5f765c6302f00ee355227a7c0673e9f258d0', 'value': 152934.2956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x206295b3ef9329730000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:45:17.000Z'}}, {'blockNum': '0xaf574a', 'uniqueId': '0x2b9d73abf9c9731fc84d8eb8c20c8b8b286c74d3668c6c4df1c1407e4dd4b825:log:107', 'hash': '0x2b9d73abf9c9731fc84d8eb8c20c8b8b286c74d3668c6c4df1c1407e4dd4b825', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 345640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x49312e93f0cb7fa00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T15:57:59.000Z'}}, {'blockNum': '0xaf5754', 'uniqueId': '0x9ab805092e844e01495c9481466edfeddc08c0e5f9fd0f318b255d0fa2422155:log:31', 'hash': '0x9ab805092e844e01495c9481466edfeddc08c0e5f9fd0f318b255d0fa2422155', 'from': '0x78e78c851804c98809bab2622679d94812ddea30', 'to': '0xbb4e4bbeb67187a4cc0b8bd45d3cd1a858a3d836', 'value': 11026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0255b87d05bf91080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T16:00:25.000Z'}}, {'blockNum': '0xaf5768', 'uniqueId': '0x923249211c9ca476a9043b5e034092159dc4e6830f3d43a4131b4283273e190c:log:46', 'hash': '0x923249211c9ca476a9043b5e034092159dc4e6830f3d43a4131b4283273e190c', 'from': '0xbb4e4bbeb67187a4cc0b8bd45d3cd1a858a3d836', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 11026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0255b87d05bf91080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T16:04:11.000Z'}}, {'blockNum': '0xaf57fb', 'uniqueId': '0xca707a65f88382693ab34d130c10fe7ce87e569cdc501343f0210ad4933a4587:log:7', 'hash': '0xca707a65f88382693ab34d130c10fe7ce87e569cdc501343f0210ad4933a4587', 'from': '0x844ecfa12ccef8f98c3ab217054fe15ef5831d13', 'to': '0xc1bffdbcf970c07ea60ca5e1ef81ef337a72d267', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T16:34:57.000Z'}}, {'blockNum': '0xaf5867', 'uniqueId': '0x85a66a833cc0b9732c82863f3a7e4d325cee3b67efa40f6c8c2f4bf025f08807:log:172', 'hash': '0x85a66a833cc0b9732c82863f3a7e4d325cee3b67efa40f6c8c2f4bf025f08807', 'from': '0x9ffb9aeafd1b596945774e70fec17d3d9306b030', 'to': '0x87bb3d8aad7e985bfbe6ca612c9617307da4d0ea', 'value': 3812.51336576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xcead406298e1b60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T16:59:06.000Z'}}, {'blockNum': '0xaf587c', 'uniqueId': '0x0086acc9bbee1c2263f3e14e983f0daa96f6dd5be3250ce7f3debc6f04875ae2:log:250', 'hash': '0x0086acc9bbee1c2263f3e14e983f0daa96f6dd5be3250ce7f3debc6f04875ae2', 'from': '0xed2f5085a8a2dfc42f77ea254ade8162f2b6a78e', 'to': '0x072910cc466f22a8ba9bdef1d42bf0b873adfa83', 'value': 8710.87626897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01d837b1466d80e42400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:03:29.000Z'}}, {'blockNum': '0xaf58a2', 'uniqueId': '0x4710763e56ae92ea1fcca3a53dfe5373bac4e4b6a94cb5104edec6b09d69eb3b:log:87', 'hash': '0x4710763e56ae92ea1fcca3a53dfe5373bac4e4b6a94cb5104edec6b09d69eb3b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x54c5ce9dbc5e60e10219b0e9468122095dbba067', 'value': 1164.98235977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3f2760c3dea72c0400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:13:22.000Z'}}, {'blockNum': '0xaf5924', 'uniqueId': '0xd3bf17de55b77d1b867b93ea9e12e0abb9380f7191840d4ada23eb0f804762c2:log:270', 'hash': '0xd3bf17de55b77d1b867b93ea9e12e0abb9380f7191840d4ada23eb0f804762c2', 'from': '0x844ecfa12ccef8f98c3ab217054fe15ef5831d13', 'to': '0xc1bffdbcf970c07ea60ca5e1ef81ef337a72d267', 'value': 77023.37918912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x104f721cd526e0670000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:38:19.000Z'}}, {'blockNum': '0xaf597f', 'uniqueId': '0x774f98bdd6d5c21cc4e8395f87f9955b0007a64ffdbffbb27bcdb26abc93edca:log:6', 'hash': '0x774f98bdd6d5c21cc4e8395f87f9955b0007a64ffdbffbb27bcdb26abc93edca', 'from': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 20698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04620a73b94bcb280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:57:29.000Z'}}, {'blockNum': '0xaf5986', 'uniqueId': '0xf9311879ed5d57e35c2b4a9e8bcf52ea17b357a57d4bc14435d28dccf1df5dd5:log:51', 'hash': '0xf9311879ed5d57e35c2b4a9e8bcf52ea17b357a57d4bc14435d28dccf1df5dd5', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 35816.30106107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07959b06b425b3ac8c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:58:46.000Z'}}, {'blockNum': '0xaf5989', 'uniqueId': '0x6e26ae047295eac2d759ab93b1991a5646ec8a203167dbb015b3c7a4959e370f:log:94', 'hash': '0x6e26ae047295eac2d759ab93b1991a5646ec8a203167dbb015b3c7a4959e370f', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 189801.93441516606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x28312ef8a8d8aa7d05dc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:59:18.000Z'}}, {'blockNum': '0xaf5989', 'uniqueId': '0x6e26ae047295eac2d759ab93b1991a5646ec8a203167dbb015b3c7a4959e370f:log:99', 'hash': '0x6e26ae047295eac2d759ab93b1991a5646ec8a203167dbb015b3c7a4959e370f', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 189801.93441516606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x28312ef8a8d8aa7d05dc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T17:59:18.000Z'}}, {'blockNum': '0xaf598b', 'uniqueId': '0xb59d13b85b55299f107c8270dcd33d63ee9e2c88ba0454d70e577dfd41a4ec2f:log:80', 'hash': '0xb59d13b85b55299f107c8270dcd33d63ee9e2c88ba0454d70e577dfd41a4ec2f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 189422.33054633572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x281c9ae8cd5f66000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:00:52.000Z'}}, {'blockNum': '0xaf5991', 'uniqueId': '0xa311b96e5139ea80df39e2797a6088bb21adbd9784f372c881d07b6997efe382:log:70', 'hash': '0xa311b96e5139ea80df39e2797a6088bb21adbd9784f372c881d07b6997efe382', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 75007.08533013538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fe2246a0f30243aad22', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:34.000Z'}}, {'blockNum': '0xaf5991', 'uniqueId': '0xa311b96e5139ea80df39e2797a6088bb21adbd9784f372c881d07b6997efe382:log:75', 'hash': '0xa311b96e5139ea80df39e2797a6088bb21adbd9784f372c881d07b6997efe382', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 75007.08533013538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fe2246a0f30243aad22', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:34.000Z'}}, {'blockNum': '0xaf5991', 'uniqueId': '0xeb76b560a80ab76c27eddf2938f5656e95e69238cff469128bf9a958b48abb77:log:88', 'hash': '0xeb76b560a80ab76c27eddf2938f5656e95e69238cff469128bf9a958b48abb77', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x078459b62b8910680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:34.000Z'}}, {'blockNum': '0xaf5992', 'uniqueId': '0x8b35e17287e27c8d0d69ec9263a33e81f7cd69e2d7e777c7512d51672f89f74a:log:95', 'hash': '0x8b35e17287e27c8d0d69ec9263a33e81f7cd69e2d7e777c7512d51672f89f74a', 'from': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 191508.02475545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x288dabbb26149f514400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:49.000Z'}}, {'blockNum': '0xaf5992', 'uniqueId': '0x90616f991426bd8032f6e8ca2c0e23d961370556f0add57d9f974986265c2e49:log:126', 'hash': '0x90616f991426bd8032f6e8ca2c0e23d961370556f0add57d9f974986265c2e49', 'from': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 42987.56637345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x091a5c5312c3ce426400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:49.000Z'}}, {'blockNum': '0xaf5992', 'uniqueId': '0xf586c390e5bfa0e4c6138a0ba5e02f161c448cd3218321f2acf6414ba33bcbbf:log:170', 'hash': '0xf586c390e5bfa0e4c6138a0ba5e02f161c448cd3218321f2acf6414ba33bcbbf', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 75007.08533013538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fe2246a0f30243aad22', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:01:49.000Z'}}, {'blockNum': '0xaf5999', 'uniqueId': '0xf55e47430a44e11936d9d65c68ddcefac641d81da32acc6dbc05f68cb5765f2b:log:33', 'hash': '0xf55e47430a44e11936d9d65c68ddcefac641d81da32acc6dbc05f68cb5765f2b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 66620.034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0e1b7ab212eeadcd0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:03:29.000Z'}}, {'blockNum': '0xaf59a0', 'uniqueId': '0xd6798ce2ee7ac896708615a2adde03dc17cc53eeab7a922c12863c71836b59a4:log:204', 'hash': '0xd6798ce2ee7ac896708615a2adde03dc17cc53eeab7a922c12863c71836b59a4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 45788.94594594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09b239469999745c4800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:05:23.000Z'}}, {'blockNum': '0xaf59ab', 'uniqueId': '0x15568e5b33e040735fe31b12e35fb512872e92702ab55d3750b84241f783afb1:log:29', 'hash': '0x15568e5b33e040735fe31b12e35fb512872e92702ab55d3750b84241f783afb1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 74760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fd4bf6aa08b4b200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:08:10.000Z'}}, {'blockNum': '0xaf59ac', 'uniqueId': '0x8251a280852457c364be090de70accef0111ecbfa6a277a01c00f6cbc9ea12cd:log:4', 'hash': '0x8251a280852457c364be090de70accef0111ecbfa6a277a01c00f6cbc9ea12cd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 102472.938736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15b311b3277e6dff0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:08:22.000Z'}}, {'blockNum': '0xaf59ae', 'uniqueId': '0xbadfe8395b167c6c0812b63f583457056cc3e0b931b95b53a85bdb7eceb9bb7c:log:51', 'hash': '0xbadfe8395b167c6c0812b63f583457056cc3e0b931b95b53a85bdb7eceb9bb7c', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 102463.71654040775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15b291b75576c9000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:08:39.000Z'}}, {'blockNum': '0xaf59ae', 'uniqueId': '0xbadfe8395b167c6c0812b63f583457056cc3e0b931b95b53a85bdb7eceb9bb7c:log:53', 'hash': '0xbadfe8395b167c6c0812b63f583457056cc3e0b931b95b53a85bdb7eceb9bb7c', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 102463.71654040775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15b291b75576c9000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:08:39.000Z'}}, {'blockNum': '0xaf59af', 'uniqueId': '0xc681f13c1aed8102badb4a07ec16f6a68dcf83af44b9ac60499d1b980e03a591:log:100', 'hash': '0xc681f13c1aed8102badb4a07ec16f6a68dcf83af44b9ac60499d1b980e03a591', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 74760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fd4bf6aa08b4b200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:09:20.000Z'}}, {'blockNum': '0xaf59af', 'uniqueId': '0xc681f13c1aed8102badb4a07ec16f6a68dcf83af44b9ac60499d1b980e03a591:log:102', 'hash': '0xc681f13c1aed8102badb4a07ec16f6a68dcf83af44b9ac60499d1b980e03a591', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 74760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0fd4bf6aa08b4b200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:09:20.000Z'}}, {'blockNum': '0xaf59bc', 'uniqueId': '0x88ba15f78479aa6dd647986d3a242b0df44410080e2767db82a90e242ee60ae7:log:24', 'hash': '0x88ba15f78479aa6dd647986d3a242b0df44410080e2767db82a90e242ee60ae7', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 15649.32161271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x035059f6f519aeb0fc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:12:12.000Z'}}, {'blockNum': '0xaf59bc', 'uniqueId': '0x0a1a80803e7c24c6d1badfb6a6fed8c20c4a372bae1890ff1d6caa3e0fdce18b:log:25', 'hash': '0x0a1a80803e7c24c6d1badfb6a6fed8c20c4a372bae1890ff1d6caa3e0fdce18b', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 60826.14202603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce1644acdf6412a4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:12:12.000Z'}}, {'blockNum': '0xaf59bd', 'uniqueId': '0x23d4f05ec51d499f952a9ce07587b169e4c4220fecaa57c8dcc0de38eb911c11:log:9', 'hash': '0x23d4f05ec51d499f952a9ce07587b169e4c4220fecaa57c8dcc0de38eb911c11', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeba7c01407af376aa2457d9be119e7afc98cc82b', 'value': 989.25611809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x35a0afbe196c546400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:12:34.000Z'}}, {'blockNum': '0xaf59bd', 'uniqueId': '0x0940e38e81fbcca2c9a3671e3aeca803a481d93b6461a2bac4d9402b823190c0:log:10', 'hash': '0x0940e38e81fbcca2c9a3671e3aeca803a481d93b6461a2bac4d9402b823190c0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2c38b7622241958dc0a097d405c468a9176418a3', 'value': 126086.53999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1ab32a3f5edf0d021c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:12:34.000Z'}}, {'blockNum': '0xaf59ce', 'uniqueId': '0x9940534edfb4d8e4bb3bee6c4350c0cc22afcfa011d526de4178fa52882cf2f7:log:42', 'hash': '0x9940534edfb4d8e4bb3bee6c4350c0cc22afcfa011d526de4178fa52882cf2f7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 101849.94471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15914bebc19c55866000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:16:48.000Z'}}, {'blockNum': '0xaf59db', 'uniqueId': '0x525fcff764fbb5210a1e1b9839b776636767a03246addaa427817c35d6276c1d:log:150', 'hash': '0x525fcff764fbb5210a1e1b9839b776636767a03246addaa427817c35d6276c1d', 'from': '0xd05fa4f70c7d3414c1827b021a2647f35cf0dd27', 'to': '0xf7eca23d3a36b82bd7663a7c3b13ea92443b65a7', 'value': 2100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x71d75ab9b920500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:19:21.000Z'}}, {'blockNum': '0xaf59e1', 'uniqueId': '0xa24f57bfa1a661b7ad8512cb0d128d3c34d1ff5c8e64701ee9d72581dfab093d:log:22', 'hash': '0xa24f57bfa1a661b7ad8512cb0d128d3c34d1ff5c8e64701ee9d72581dfab093d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9f1ac2ef934721c3714d2e0da78747185548e9c3', 'value': 76228.52932525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10245b5ad941d5751400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:21:23.000Z'}}, {'blockNum': '0xaf59e1', 'uniqueId': '0x672e4002c5df0a7b7b46b0f1fd8175917b60fc32a668b9656e7cecbed6c77026:log:282', 'hash': '0x672e4002c5df0a7b7b46b0f1fd8175917b60fc32a668b9656e7cecbed6c77026', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 102238.77077442259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15a65ff76f1d3f0265dc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:21:23.000Z'}}, {'blockNum': '0xaf59e1', 'uniqueId': '0x672e4002c5df0a7b7b46b0f1fd8175917b60fc32a668b9656e7cecbed6c77026:log:284', 'hash': '0x672e4002c5df0a7b7b46b0f1fd8175917b60fc32a668b9656e7cecbed6c77026', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 102238.77077442259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15a65ff76f1d3f0265dc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:21:23.000Z'}}, {'blockNum': '0xaf59ec', 'uniqueId': '0xba96961ffabcfa68e1cc39e025db3d3c842c685442b59da10c6a4952516237d9:log:223', 'hash': '0xba96961ffabcfa68e1cc39e025db3d3c842c685442b59da10c6a4952516237d9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xeba7c01407af376aa2457d9be119e7afc98cc82b', 'value': 3234.29253013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xaf54d350231207b400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:23:53.000Z'}}, {'blockNum': '0xaf5a0d', 'uniqueId': '0xec0e2e2d30db3b31edfe67d45a3114928e4da8771c8959c465291ee7be927abc:log:18', 'hash': '0xec0e2e2d30db3b31edfe67d45a3114928e4da8771c8959c465291ee7be927abc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x61a11f3d1f3b4dbd3f780f004773e620daf065c4', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:31:35.000Z'}}, {'blockNum': '0xaf5a0e', 'uniqueId': '0x020c0b5cb72722c6495502f86abecabd31b33123ac7274288802d51cf8796eba:log:39', 'hash': '0x020c0b5cb72722c6495502f86abecabd31b33123ac7274288802d51cf8796eba', 'from': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42987.56637345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x091a5c5312c3ce426400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:31:46.000Z'}}, {'blockNum': '0xaf5a1b', 'uniqueId': '0xb38abd30b439fef200d73d60b2b638ea80c21967751f394f08294f304936455e:log:199', 'hash': '0xb38abd30b439fef200d73d60b2b638ea80c21967751f394f08294f304936455e', 'from': '0x2c38b7622241958dc0a097d405c468a9176418a3', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 126086.53999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1ab32a3f5edf0d021c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:35:12.000Z'}}, {'blockNum': '0xaf5a1b', 'uniqueId': '0xb38abd30b439fef200d73d60b2b638ea80c21967751f394f08294f304936455e:log:201', 'hash': '0xb38abd30b439fef200d73d60b2b638ea80c21967751f394f08294f304936455e', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 126086.53999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1ab32a3f5edf0d021c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:35:12.000Z'}}, {'blockNum': '0xaf5a2e', 'uniqueId': '0xeaf7c305441539b6c9a780686739e93672a186b3c92e2f323bdb6be45706cc61:log:110', 'hash': '0xeaf7c305441539b6c9a780686739e93672a186b3c92e2f323bdb6be45706cc61', 'from': '0x61a11f3d1f3b4dbd3f780f004773e620daf065c4', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:40:03.000Z'}}, {'blockNum': '0xaf5a36', 'uniqueId': '0xe38b1230ba1857269e6c8424177279d52842af94f995f0565ba7acceb34d7ae7:log:100', 'hash': '0xe38b1230ba1857269e6c8424177279d52842af94f995f0565ba7acceb34d7ae7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:41:25.000Z'}}, {'blockNum': '0xaf5a37', 'uniqueId': '0xbe80a447ae78e5a24064bfad44ce6b0c2a9a1b5718d10ca5ce4fcc67a9edbc86:log:274', 'hash': '0xbe80a447ae78e5a24064bfad44ce6b0c2a9a1b5718d10ca5ce4fcc67a9edbc86', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0fa703211740ce4d0471d05492c5d6e0e8b34f43', 'value': 48615.55230507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4b7451ad39d03b4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:41:44.000Z'}}, {'blockNum': '0xaf5a3f', 'uniqueId': '0xbd6745103c46bd9cf6d97474238c1f3d3c2e554a1cc08583b37f87183fab4fdf:log:207', 'hash': '0xbd6745103c46bd9cf6d97474238c1f3d3c2e554a1cc08583b37f87183fab4fdf', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 60980.17816038338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce9bdf91609b4a783df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:44:21.000Z'}}, {'blockNum': '0xaf5a3f', 'uniqueId': '0xbd6745103c46bd9cf6d97474238c1f3d3c2e554a1cc08583b37f87183fab4fdf:log:212', 'hash': '0xbd6745103c46bd9cf6d97474238c1f3d3c2e554a1cc08583b37f87183fab4fdf', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 60980.17816038338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce9bdf91609b4a783df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:44:21.000Z'}}, {'blockNum': '0xaf5a41', 'uniqueId': '0x5153a3639c19e90ec9335ab638dbf918436a313e7e08b84358faaeab70d0b090:log:282', 'hash': '0x5153a3639c19e90ec9335ab638dbf918436a313e7e08b84358faaeab70d0b090', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 60980.17816038338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce9bdf91609b4a783df', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T18:44:26.000Z'}}, {'blockNum': '0xaf5a88', 'uniqueId': '0x8d4c1d79aacf226c17bf671542501c0cd81ec2ae46646d406d68721392468f5f:log:37', 'hash': '0x8d4c1d79aacf226c17bf671542501c0cd81ec2ae46646d406d68721392468f5f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9b652388a3498d8c9fed3bcf030fc4fe55075e85', 'value': 59753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ca737747309ac040000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T19:03:32.000Z'}}, {'blockNum': '0xaf5ad0', 'uniqueId': '0x3bc0db1d299141ee17f5a72cd8917de6a543d655ef2fc254fb30682e63cbde4a:log:279', 'hash': '0x3bc0db1d299141ee17f5a72cd8917de6a543d655ef2fc254fb30682e63cbde4a', 'from': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 98621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x14e2414fb78c46d40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T19:18:12.000Z'}}, {'blockNum': '0xaf5b45', 'uniqueId': '0xad0a4d069716859c07d0abe403f175b270d779546b5294c5d69f2fca067f6901:log:297', 'hash': '0xad0a4d069716859c07d0abe403f175b270d779546b5294c5d69f2fca067f6901', 'from': '0xeca7ba09375ced5a1833598ebf0c14af6fc5fb33', 'to': '0x1ba61170405cac6f084a27592e0a923f9c7e2c80', 'value': 67697.954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0e55e9d733de0edd0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T19:40:37.000Z'}}, {'blockNum': '0xaf5b87', 'uniqueId': '0x83df6ea9e9614934568e708e6fe2636775e9d79d8665a2a5b37e39865a3f182c:log:86', 'hash': '0x83df6ea9e9614934568e708e6fe2636775e9d79d8665a2a5b37e39865a3f182c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 60733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0cdc57afdac676d40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T19:53:12.000Z'}}, {'blockNum': '0xaf5ba4', 'uniqueId': '0x54de0b482cbc5bbc0c8348088fc8603ba273f8b79c7ea1f788f2610ff435d27f:log:107', 'hash': '0x54de0b482cbc5bbc0c8348088fc8603ba273f8b79c7ea1f788f2610ff435d27f', 'from': '0x1ba61170405cac6f084a27592e0a923f9c7e2c80', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67697.954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0e55e9d733de0edd0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T20:01:38.000Z'}}, {'blockNum': '0xaf5c33', 'uniqueId': '0x494dbe1a809a4a5217f26c64901d3966ea875b4de934039fafd053382f846ab7:log:84', 'hash': '0x494dbe1a809a4a5217f26c64901d3966ea875b4de934039fafd053382f846ab7', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 135987.26349051876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1ccbe2632539d8e23101', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T20:31:33.000Z'}}, {'blockNum': '0xaf5c81', 'uniqueId': '0x42d9a2e352ee372af6f0b25ad1ec3dd931f5d84dbb4e3aff3499325e68c60173:log:86', 'hash': '0x42d9a2e352ee372af6f0b25ad1ec3dd931f5d84dbb4e3aff3499325e68c60173', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x08f5ed82b37e919c425bb4bd9f90b94c476df862', 'value': 150330.26009148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1fd56b735d58eb297000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T20:48:39.000Z'}}, {'blockNum': '0xaf5c8b', 'uniqueId': '0x8f9e9477d5a042dbe6b56fc6690df86c98aa7559706c6a475f90d544a714013e:log:197', 'hash': '0x8f9e9477d5a042dbe6b56fc6690df86c98aa7559706c6a475f90d544a714013e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4721331516e5459373c7ff534b5c6e1aab941b96', 'value': 3089.55091975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa77c21d05ecc233c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T20:51:07.000Z'}}, {'blockNum': '0xaf5d21', 'uniqueId': '0xcd43619ee5b75445618c8c644927809445300dce7b3f6f8f849de9520344a2f7:log:63', 'hash': '0xcd43619ee5b75445618c8c644927809445300dce7b3f6f8f849de9520344a2f7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc0bf6f647ab7731f9f7daba8f99ba977ad0f6694', 'value': 9847.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0215dc29b3abca978000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T21:24:37.000Z'}}, {'blockNum': '0xaf5d3d', 'uniqueId': '0x587bb60efcff78cb86c1d72ef00d0c80944abffd7422e63cc476aeeefdb35bb6:log:175', 'hash': '0x587bb60efcff78cb86c1d72ef00d0c80944abffd7422e63cc476aeeefdb35bb6', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x14e2414fb78c46d40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T21:31:41.000Z'}}, {'blockNum': '0xaf5d3d', 'uniqueId': '0xff62166079cc0f121f2bd9bbea6556f320d8a8233ab738c934c78e92df9f0f0a:log:179', 'hash': '0xff62166079cc0f121f2bd9bbea6556f320d8a8233ab738c934c78e92df9f0f0a', 'from': '0x0fa703211740ce4d0471d05492c5d6e0e8b34f43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48615.55230507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a4b7451ad39d03b4c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T21:31:41.000Z'}}, {'blockNum': '0xaf5dd9', 'uniqueId': '0xd1fd07c450b72fcb5b8ba41585265e92546685e2ac185f7728a08be0a0872ec8:log:375', 'hash': '0xd1fd07c450b72fcb5b8ba41585265e92546685e2ac185f7728a08be0a0872ec8', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x3ff5977ec3a41ed273493238a40ebd48d1d9621d', 'value': 124719.42218061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1a690dad317221779400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:03:23.000Z'}}, {'blockNum': '0xaf5ead', 'uniqueId': '0xafdf1724bafe6285562b1fc7d7b1a65b4f9895e0ba16adcab5d179eb78bda35d:log:249', 'hash': '0xafdf1724bafe6285562b1fc7d7b1a65b4f9895e0ba16adcab5d179eb78bda35d', 'from': '0xec3a04957d8e171a173bb85346a92b1e20ce2458', 'to': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'value': 3071.690572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xa684451cb84870c000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:49:09.000Z'}}, {'blockNum': '0xaf5ead', 'uniqueId': '0x3fabffadb8e3934904b517f89a25b8872b5ec4c2ab57f650bf6d8979a0838506:log:250', 'hash': '0x3fabffadb8e3934904b517f89a25b8872b5ec4c2ab57f650bf6d8979a0838506', 'from': '0x98c9e94d787c03991fa0128e6f8501455e4ebf60', 'to': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'value': 3923.9125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd4b7399cf876f74000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:49:09.000Z'}}, {'blockNum': '0xaf5ead', 'uniqueId': '0xbda4fbd988d4c4769f6de52b10bac653e9096a812a7c0a9fb7f4250e807ab56a:log:251', 'hash': '0xbda4fbd988d4c4769f6de52b10bac653e9096a812a7c0a9fb7f4250e807ab56a', 'from': '0x2f210e4bf0fcaf253a74179391a8ae9f75a18841', 'to': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'value': 2901.46324085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x9d49e424f125e73400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:49:09.000Z'}}, {'blockNum': '0xaf5ead', 'uniqueId': '0x8f04444cf86390561769053bb4e03551ebde110b1d8d945cd18c833f59e3dc52:log:252', 'hash': '0x8f04444cf86390561769053bb4e03551ebde110b1d8d945cd18c833f59e3dc52', 'from': '0x96e2edf82cc2d664f8c768d2af44e5dca6998467', 'to': '0xdc6fbf8f4805612e7708f4881eba7e5d2fde7f6d', 'value': 19792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0430ed2d217d63400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-20T22:49:09.000Z'}}, {'blockNum': '0xaf6087', 'uniqueId': '0xdc58c29f699d8e7e5c16f5427fd7b12efbc905796f313d9f816abb552f9f2430:log:83', 'hash': '0xdc58c29f699d8e7e5c16f5427fd7b12efbc905796f313d9f816abb552f9f2430', 'from': '0x3ff5977ec3a41ed273493238a40ebd48d1d9621d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 124719.42218061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1a690dad317221779400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T00:31:55.000Z'}}, {'blockNum': '0xaf614b', 'uniqueId': '0xdc4dea545086ded49ffbcf37e45ed64e2c4d5a0bf919a0067c71adfcc1b89906:log:26', 'hash': '0xdc4dea545086ded49ffbcf37e45ed64e2c4d5a0bf919a0067c71adfcc1b89906', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 76211.52932525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10236f6eb753b7d11400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T01:21:21.000Z'}}, {'blockNum': '0xaf6190', 'uniqueId': '0xf42903fe65f14dffdcadc49b555faf3d1157bb57aa12cf91958614d8151d841b:log:41', 'hash': '0xf42903fe65f14dffdcadc49b555faf3d1157bb57aa12cf91958614d8151d841b', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 27263.03083404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05c5ee8e91d4d3ccb000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T01:39:23.000Z'}}, {'blockNum': '0xaf6197', 'uniqueId': '0x807db7162e55e108859501e509e2d83ce3cbb366449d49c12acdd171c8bfa25d:log:21', 'hash': '0x807db7162e55e108859501e509e2d83ce3cbb366449d49c12acdd171c8bfa25d', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 39659.98856966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0865f8e7e47b0cd35800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T01:40:38.000Z'}}, {'blockNum': '0xaf6485', 'uniqueId': '0x46197c457ce8fd8f50481ed9e7a23ba5625cf430ed30196a73b49ee4225de157:log:97', 'hash': '0x46197c457ce8fd8f50481ed9e7a23ba5625cf430ed30196a73b49ee4225de157', 'from': '0x3e4e29d65247bafc8e45a2d4f4c39d610b1c71aa', 'to': '0x5fa5cf3f80d3842d2ecf951b181dc580e14fc114', 'value': 20394.3691368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045194ba33ebc1ee4000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T04:30:36.000Z'}}, {'blockNum': '0xaf648d', 'uniqueId': '0xabfa5e67745dd8ad1ded50c1f223f9d7c447d9783224a180b6df3e4c6cac14a0:log:162', 'hash': '0xabfa5e67745dd8ad1ded50c1f223f9d7c447d9783224a180b6df3e4c6cac14a0', 'from': '0x5fa5cf3f80d3842d2ecf951b181dc580e14fc114', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 20394.3691368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045194ba33ebc1ee4000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T04:33:08.000Z'}}, {'blockNum': '0xaf64ab', 'uniqueId': '0x6ed6ef573ade9facee7e2fcdd070949cf3a705a20017b5b217506facb2cf0dc3:log:140', 'hash': '0x6ed6ef573ade9facee7e2fcdd070949cf3a705a20017b5b217506facb2cf0dc3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x28bea00544765e1cc38d61b3c4d21fe5ae5ad90e', 'value': 921.887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x31f9c08e2222898000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T04:39:23.000Z'}}, {'blockNum': '0xaf64e7', 'uniqueId': '0xb7b33a86776df8d25c48e0f60db86c22a6371b6e4c80255fe98ad51c75a17bb3:log:83', 'hash': '0xb7b33a86776df8d25c48e0f60db86c22a6371b6e4c80255fe98ad51c75a17bb3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x063d41e7f7ddd0d8fc72cc881d5562a5c581dbe7', 'value': 4795.08152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0103f11fb50260230000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-21T04:52:15.000Z'}}]}}
Number of returned transfers:  111
Answer is complete
 
symbol             NAS
group              BPF
date        2020-12-23
hour             18:00
exchange       binance
Name: 865, dtype: object
HERE
 Symbol: NAS, Contract: 0x5d65d971895edc438f465c17db6992698a52318d
Datetime timestamps:  2020-12-23 18:00:00 2020-12-23 06:00:00 2020-12-24 06:00:00
Unix timestamps:  1608699600.0 1608786000.0
Hex Block Numbers:  0xaf9834 0xafb1ae
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xafa58f', 'uniqueId': '0x3b9e0197b1d3f4b993a1107aa17dfcba9e4e83155f09cee01df57dbe43fd4b86:log:92', 'hash': '0x3b9e0197b1d3f4b993a1107aa17dfcba9e4e83155f09cee01df57dbe43fd4b86', 'from': '0xb8f634754218fdc1027092e66edc8c5ee1fbc9f2', 'to': '0x4a8472a7136cdbf7b86124fd21d31fa822d88ee7', 'value': 5239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'NAS', 'category': 'erc20', 'rawContract': {'value': '0x011c01baf6969f7c0000', 'address': '0x5d65d971895edc438f465c17db6992698a52318d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-23T17:27:27.000Z'}}]}}
Number of returned transfers:  1
Answer is complete
 
symbol             DLT
group              BPF
date        2020-12-26
hour             21:00
exchange       binance
Name: 866, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2020-12-26 21:00:00 2020-12-26 09:00:00 2020-12-27 09:00:00
Unix timestamps:  1608969600.0 1609056000.0
Hex Block Numbers:  0xafe799 0xb00113
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xafebb4', 'uniqueId': '0x741b9990d1867021bbcc3c19240b5d60132f796bed66d68b984b4b464cd9b4e2:log:0', 'hash': '0x741b9990d1867021bbcc3c19240b5d60132f796bed66d68b984b4b464cd9b4e2', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x5ca51af7787d547b23328ca30eb4dae4e41bc4a6', 'value': 1820.53539418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x62b100ff6594a62800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T11:47:40.000Z'}}, {'blockNum': '0xaff418', 'uniqueId': '0xd48a3fc8005188276011e9f88f3a96c0a9f2b99f01747179971f53fc1121eaa2:log:52', 'hash': '0xd48a3fc8005188276011e9f88f3a96c0a9f2b99f01747179971f53fc1121eaa2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x39e1fc43f1f85dd5442d4a2d2f25ef6704cf96af', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T19:45:32.000Z'}}, {'blockNum': '0xaff43c', 'uniqueId': '0x76d7feeb0d1a14f247358f62d4ca57b740c6aae3faccd2b2e4d08ca101b175db:log:60', 'hash': '0x76d7feeb0d1a14f247358f62d4ca57b740c6aae3faccd2b2e4d08ca101b175db', 'from': '0x39e1fc43f1f85dd5442d4a2d2f25ef6704cf96af', 'to': '0x9ce7456ec06b1457c91bd4619a08dbe8adc926fd', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T19:53:55.000Z'}}, {'blockNum': '0xaff548', 'uniqueId': '0x046888b531880c0c9e8824a162337696a47b392f956fcebeeec563beb233815d:log:216', 'hash': '0x046888b531880c0c9e8824a162337696a47b392f956fcebeeec563beb233815d', 'from': '0xa5f09b4a58c8e84ee3250d3d5000747cac6589e2', 'to': '0x463f5d0c30cadc302ac8d6ce434f4a1c9dd27555', 'value': 4185.892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xe2eaebc431956a0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T20:54:35.000Z'}}, {'blockNum': '0xaff563', 'uniqueId': '0x8d583be9abe12e0fadc398caf325b0ff69a1853d3854580ef81dbb5f4664cc25:log:267', 'hash': '0x8d583be9abe12e0fadc398caf325b0ff69a1853d3854580ef81dbb5f4664cc25', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4694e135b556980000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:01:00.000Z'}}, {'blockNum': '0xaff569', 'uniqueId': '0x74f869ea56858c12e3cda06e6eadaaa2723186ca89e26a7e88eaf4182141797a:log:1', 'hash': '0x74f869ea56858c12e3cda06e6eadaaa2723186ca89e26a7e88eaf4182141797a', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 7648.83369837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x019ea4e41b68e52c1400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:02:54.000Z'}}, {'blockNum': '0xaff57c', 'uniqueId': '0xb6354259a92ffd86835c21ec919de0cf5974e5768ce0d2c08081d4f8c8ca96df:log:225', 'hash': '0xb6354259a92ffd86835c21ec919de0cf5974e5768ce0d2c08081d4f8c8ca96df', 'from': '0x2c529bfca95d8cce2c8fd87448115f0463c5d84c', 'to': '0xa9de49a9a3adb9d3964ef3e514d491fefb993873', 'value': 18010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x03d052f55aee31280000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:18.000Z'}}, {'blockNum': '0xaff57f', 'uniqueId': '0x2664195eb274f7f8cd8939b3928028c449e90d6ff6c078640805fa47c6b2542e:log:106', 'hash': '0x2664195eb274f7f8cd8939b3928028c449e90d6ff6c078640805fa47c6b2542e', 'from': '0x9ce7456ec06b1457c91bd4619a08dbe8adc926fd', 'to': '0x605e0ebb227fcacaa43b1480db3c0df8b044c10a', 'value': 12655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02ae07679aefb85c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:41.000Z'}}, {'blockNum': '0xaff580', 'uniqueId': '0x5aee95392cb6396a1f303a548cabd186b58c974831d98d0807cb64e18089bc06:log:8', 'hash': '0x5aee95392cb6396a1f303a548cabd186b58c974831d98d0807cb64e18089bc06', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0x287e6d4dd4d57ede08b9353e13d51d9f7f1f95fa', 'value': 14380.459167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x030b90f5fd72ccc4f000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:58.000Z'}}, {'blockNum': '0xaff580', 'uniqueId': '0x4ef055bd7ee8548f9b09c7d3e73875e6299695ee4f4ffe5b3b436ffa9d6ab612:log:149', 'hash': '0x4ef055bd7ee8548f9b09c7d3e73875e6299695ee4f4ffe5b3b436ffa9d6ab612', 'from': '0x787c87ff468db69e29305a263f5315ef30a48cf7', 'to': '0xe431fda6e29b2d1b6ef5105dd01b8531a0b8c3fb', 'value': 1651.0324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5980ad644164a50000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:07:58.000Z'}}, {'blockNum': '0xaff589', 'uniqueId': '0xbdacda543704900db404424f997c0f8089b1139162b092dc20403c23f2c25a3e:log:244', 'hash': '0xbdacda543704900db404424f997c0f8089b1139162b092dc20403c23f2c25a3e', 'from': '0xdd701212f6fe99e550ae650a13990de34816ed7f', 'to': '0x1fc0fbafe0170a1afcbb546f7330e4c8fcc70dd5', 'value': 1310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4703e6eb5291b80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:09:05.000Z'}}, {'blockNum': '0xaff58a', 'uniqueId': '0xfd1c847b831e1a457620706997d6d795c7dabfc633b03075e1e0b4f4e9269d23:log:294', 'hash': '0xfd1c847b831e1a457620706997d6d795c7dabfc633b03075e1e0b4f4e9269d23', 'from': '0x1a19564d2358e6fe30ab78ead75c37b771973f2c', 'to': '0x7159ec883c7b9f5ee88241c4d5e203a2a9a38f4a', 'value': 2929.731, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x9ed22f661eb1f38000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:09:26.000Z'}}, {'blockNum': '0xaff58c', 'uniqueId': '0x1971f858a1b1fca5136112906616fe4fa8cdee889aac21314fc95c91da280e06:log:198', 'hash': '0x1971f858a1b1fca5136112906616fe4fa8cdee889aac21314fc95c91da280e06', 'from': '0x1fc0fbafe0170a1afcbb546f7330e4c8fcc70dd5', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x4703e6eb5291b80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:10:13.000Z'}}, {'blockNum': '0xaff58d', 'uniqueId': '0xa27740d08de8670cc7b58a4ca6c39795cc35b91137d5905badc900b45a3f49d0:log:305', 'hash': '0xa27740d08de8670cc7b58a4ca6c39795cc35b91137d5905badc900b45a3f49d0', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf7e68bef461390d8def9b9e6a093245c92466ea0', 'value': 1172.966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3f962c5a5c1ad70000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:10:35.000Z'}}, {'blockNum': '0xaff595', 'uniqueId': '0xf9044bc04c8859206dc83641ad258bb49427740aa5486278cb75c81575e7a76d:log:113', 'hash': '0xf9044bc04c8859206dc83641ad258bb49427740aa5486278cb75c81575e7a76d', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xfe2da586531d5ce345c9110bb65d423ec8827165', 'value': 772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x29d9a6f5c4c9900000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:11:46.000Z'}}, {'blockNum': '0xaff5b5', 'uniqueId': '0x450fe96ec083a0a24211c53ae6491201f438d3afa60da8f661160b6a4d70724f:log:15', 'hash': '0x450fe96ec083a0a24211c53ae6491201f438d3afa60da8f661160b6a4d70724f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 13959, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02f4b80a3e0c5dbc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:18:23.000Z'}}, {'blockNum': '0xaff5b5', 'uniqueId': '0xa311167c65b147d51a99c7f0bfb079e815b827bb304bbc7ae085ffe9a3cc664d:log:17', 'hash': '0xa311167c65b147d51a99c7f0bfb079e815b827bb304bbc7ae085ffe9a3cc664d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8beb76d8c49016f8612ff9c7b1e0eafdcd25dad0', 'value': 2241.625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x7984cbccdc9b028000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:18:23.000Z'}}, {'blockNum': '0xaff5cc', 'uniqueId': '0x21e2a392a92d851f892823791319d673cc5c7bc3f93486004af903f4722fafd3:log:184', 'hash': '0x21e2a392a92d851f892823791319d673cc5c7bc3f93486004af903f4722fafd3', 'from': '0x81c9b436543df12d5c59c2797ea74a2f4c6e77e1', 'to': '0x761d44af7d6dab2666e0b14d597d83e48b8eb18e', 'value': 1339.806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x48a18b1a6751030000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:23:14.000Z'}}, {'blockNum': '0xaff5d0', 'uniqueId': '0xd2a0c87360813f80f4cd8d3fec13a55fe807d1791aec54bb7b0cb2b72dc96985:log:18', 'hash': '0xd2a0c87360813f80f4cd8d3fec13a55fe807d1791aec54bb7b0cb2b72dc96985', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1931ed5d0e15450a31a5a922f742e5e59c92c8d1', 'value': 1263.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x44800737239ab20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:24:03.000Z'}}, {'blockNum': '0xaff5d1', 'uniqueId': '0xc1cb4d6e62d3104277614ab829b17d50e70928c0d020b275e209e4609db21061:log:21', 'hash': '0xc1cb4d6e62d3104277614ab829b17d50e70928c0d020b275e209e4609db21061', 'from': '0x54a6cf34c1733cf7483f96efd9bffce81eac2874', 'to': '0x1cd27e8beaf4029eaad08e77050a3fcc383078dc', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:24:24.000Z'}}, {'blockNum': '0xaff5d1', 'uniqueId': '0x363f7efda790fb32d7aa4768aa13be234a23fe4da3854bb5eb2fe00dadac2538:log:273', 'hash': '0x363f7efda790fb32d7aa4768aa13be234a23fe4da3854bb5eb2fe00dadac2538', 'from': '0xe5dbfeb3777df64bb6a4c54e1a4f2394eabf9409', 'to': '0x90735a8768a33d1a71f60c754921b77446e43faf', 'value': 2850, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x9a7fb1fc0d87480000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:24:24.000Z'}}, {'blockNum': '0xaff5f2', 'uniqueId': '0x6f97dcc4676c6706e1c5225f95eb7f85bcb5594a4a2d42b51e563f0343228b3d:log:13', 'hash': '0x6f97dcc4676c6706e1c5225f95eb7f85bcb5594a4a2d42b51e563f0343228b3d', 'from': '0x1d035c78958af98a7e2f9d86abeb175ab713e41a', 'to': '0xaa56ecc5122a1cd97b12287afc7c62c5fa1b6755', 'value': 551.421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1de480edf242ac8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:30:02.000Z'}}, {'blockNum': '0xaff613', 'uniqueId': '0x81836b53db5f9219c96a7fb62b07268478b6ebf487a2d63eab29b99eb5755d0a:log:326', 'hash': '0x81836b53db5f9219c96a7fb62b07268478b6ebf487a2d63eab29b99eb5755d0a', 'from': '0x9930eda98d5b95d3b3a48c3032460375a5a7b506', 'to': '0xfe8cebba2f585688d8a3571198f32ef5144ed317', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:38:05.000Z'}}, {'blockNum': '0xaff617', 'uniqueId': '0x5aa10e84c5d61ad16e910b41bce220912d0f8f20c5ed0c151ab5e2cd11a59d71:log:85', 'hash': '0x5aa10e84c5d61ad16e910b41bce220912d0f8f20c5ed0c151ab5e2cd11a59d71', 'from': '0x1b0fa0ee9a1c2f211c072b3cfd973cbc1bf0f8a9', 'to': '0xeca95e89f92e31749ca1d6eaecdc57dfb3eb1674', 'value': 5492.475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0129bf67101ec99f8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:38:50.000Z'}}, {'blockNum': '0xaff631', 'uniqueId': '0x84b7a468d2f12a8797e6cfbe4cb7af50cbc40c5b458a64bd9eedbcb803a9481f:log:39', 'hash': '0x84b7a468d2f12a8797e6cfbe4cb7af50cbc40c5b458a64bd9eedbcb803a9481f', 'from': '0x753328fbeaacd9ca88d64c6b587e0bc0d98da6be', 'to': '0xa5ba8159ac80b4a955c9fab0ab1fe1b7a8f3e903', 'value': 4900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0109a12906aff6100000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:42:14.000Z'}}, {'blockNum': '0xaff655', 'uniqueId': '0xc829a0df860aecdf9ea29defd65b637868ff3cd02cea4447b2a930ea1d63f65c:log:111', 'hash': '0xc829a0df860aecdf9ea29defd65b637868ff3cd02cea4447b2a930ea1d63f65c', 'from': '0x1c05602f5445b5ff22d1eb9c59d19f7553a82b4c', 'to': '0x92744df2f0b8d25a05836a2fe51d25702576e4ea', 'value': 1788.0788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x60ee9402f3d6bd0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:49:35.000Z'}}, {'blockNum': '0xaff65e', 'uniqueId': '0xe2a5cbe91df3da3f9b1913e66406f232eff39965f883b4ffbabe9f60b263b7b4:log:293', 'hash': '0xe2a5cbe91df3da3f9b1913e66406f232eff39965f883b4ffbabe9f60b263b7b4', 'from': '0x9930eda98d5b95d3b3a48c3032460375a5a7b506', 'to': '0x128dfab0ce72f8beb487e79f81e68287fb042270', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:52:15.000Z'}}, {'blockNum': '0xaff667', 'uniqueId': '0xb9ab7f26ab52b6cea9fd166098e167cdb87e966a4c7e26f62c8d6c3c8e5b9320:log:254', 'hash': '0xb9ab7f26ab52b6cea9fd166098e167cdb87e966a4c7e26f62c8d6c3c8e5b9320', 'from': '0x128dfab0ce72f8beb487e79f81e68287fb042270', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:55:07.000Z'}}, {'blockNum': '0xaff66f', 'uniqueId': '0x8f399890ccfd54742d4348e744f62fc40726bf13b22eee92954163585a52deb8:log:172', 'hash': '0x8f399890ccfd54742d4348e744f62fc40726bf13b22eee92954163585a52deb8', 'from': '0x9f158387d4265cd9e515b53c241ff0c7697bea6a', 'to': '0x3bbc15f8e5bb6c1a473ca987f9ae1abecb64660e', 'value': 3846.1538461538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xd0801b6147cba72200', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T21:56:30.000Z'}}, {'blockNum': '0xaff6bd', 'uniqueId': '0x11d3b960634025c13d04c094fd7920a9c82269863b30234d89e5a9d6ec7f736f:log:2', 'hash': '0x11d3b960634025c13d04c094fd7920a9c82269863b30234d89e5a9d6ec7f736f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 5818.045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x013b65980e2d2d8c8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:13:11.000Z'}}, {'blockNum': '0xaff6cb', 'uniqueId': '0x6737a8e368782eb93dc996815c3854e7217a7e323ecb9fca70a14555cc03c809:log:8', 'hash': '0x6737a8e368782eb93dc996815c3854e7217a7e323ecb9fca70a14555cc03c809', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe94c2c237076cfe280d84e28b8a4ac15acfdb35c', 'value': 412.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x165bfa12b6e6840000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:16:32.000Z'}}, {'blockNum': '0xaff6de', 'uniqueId': '0xfc68e02da95673e4dd7f9cea070590cb437bc69a4dfb028f5851ef35627e5b48:log:139', 'hash': '0xfc68e02da95673e4dd7f9cea070590cb437bc69a4dfb028f5851ef35627e5b48', 'from': '0xb5fecdf757d13d4ec3724a7b461c5b61c7a3b364', 'to': '0x2c8c81eeee09581bcbcf09dec3ce3b72e31b41e6', 'value': 6419.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x015bff8052e59a9d8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:20:23.000Z'}}, {'blockNum': '0xaff6fa', 'uniqueId': '0x7412f25a1a807beb73613016791649f4dc100873836c9c6da029e85bd396125e:log:20', 'hash': '0x7412f25a1a807beb73613016791649f4dc100873836c9c6da029e85bd396125e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5c02af0f4a2da2959941289038ee1cd10fc5ce15', 'value': 15352.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0340459c2a5cf1079c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:24:20.000Z'}}, {'blockNum': '0xaff6ff', 'uniqueId': '0x05544d653bf566544c687cd9ba071f2bf31234be220222ea0ef5fc5d8bb81f28:log:92', 'hash': '0x05544d653bf566544c687cd9ba071f2bf31234be220222ea0ef5fc5d8bb81f28', 'from': '0x149e0caaa66c66f36ed689f17623efc7b90779aa', 'to': '0x7b06f7d399084c73b4e31b40c21501745c846fd2', 'value': 10375.284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x023271fd6363b1f20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:25:24.000Z'}}, {'blockNum': '0xaff702', 'uniqueId': '0xf59cdd72c259eff081b38ee8aefc8081e34339af209071a48da4637478019fe6:log:128', 'hash': '0xf59cdd72c259eff081b38ee8aefc8081e34339af209071a48da4637478019fe6', 'from': '0xea075c1d004d56b5e7643e1b2a4656ef72af1af1', 'to': '0xd001286827be9f2b4321f3e34de2af60959b8344', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:26:10.000Z'}}, {'blockNum': '0xaff70c', 'uniqueId': '0xcb1bd28f6d0ce8304aec4c92594e4108f0aebfa7ae0c09056beaf0074f3d8ea4:log:166', 'hash': '0xcb1bd28f6d0ce8304aec4c92594e4108f0aebfa7ae0c09056beaf0074f3d8ea4', 'from': '0x7b06f7d399084c73b4e31b40c21501745c846fd2', 'to': '0x2fd44501a7193910af2f420a8f5ced77f9655d8b', 'value': 10375.284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x023271fd6363b1f20000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:28:09.000Z'}}, {'blockNum': '0xaff734', 'uniqueId': '0x4f7600d21bb9a7d4b0b1582b59643a82c1c864d55ec908a9b68ee2b2d0b8e61d:log:79', 'hash': '0x4f7600d21bb9a7d4b0b1582b59643a82c1c864d55ec908a9b68ee2b2d0b8e61d', 'from': '0xea075c1d004d56b5e7643e1b2a4656ef72af1af1', 'to': '0xd001286827be9f2b4321f3e34de2af60959b8344', 'value': 9554.5403505292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0205f3e232ae95310c00', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:38:32.000Z'}}, {'blockNum': '0xaff754', 'uniqueId': '0x064bcaec36703118b15d6bde078266d57bf129efa223148446e589ace0ec830e:log:290', 'hash': '0x064bcaec36703118b15d6bde078266d57bf129efa223148446e589ace0ec830e', 'from': '0x4ffb72b66eba24521736924f87dfe10677d82286', 'to': '0xd1226edbaaa328b9122c7b2067e5c7cec792d8be', 'value': 1899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x66f1eb46aab2cc0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:45:38.000Z'}}, {'blockNum': '0xaff763', 'uniqueId': '0xe85c6f0e20fb72b3f7b0847524b6c1da46c5336e2d1591c2b75ce9d1a1eeeb4f:log:50', 'hash': '0xe85c6f0e20fb72b3f7b0847524b6c1da46c5336e2d1591c2b75ce9d1a1eeeb4f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 7250.611, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01890e70e11dd3cb8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:48:46.000Z'}}, {'blockNum': '0xaff768', 'uniqueId': '0x9cfbfae74e3dafe62435625c8af4d288fbd8c10c7fd3df6757907bd842bd2abc:log:17', 'hash': '0x9cfbfae74e3dafe62435625c8af4d288fbd8c10c7fd3df6757907bd842bd2abc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 190658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x285f9744929f79c80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:50:12.000Z'}}, {'blockNum': '0xaff781', 'uniqueId': '0x42e36af6b5acefa76b320cdaf391e56039f2e0b28ea7a51f0cacb4b1e977385b:log:4', 'hash': '0x42e36af6b5acefa76b320cdaf391e56039f2e0b28ea7a51f0cacb4b1e977385b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x85aa1e68eefe8171b0cb677599fe2dee2b4b7288', 'value': 2711.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x92f8d5742f682b8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T22:56:13.000Z'}}, {'blockNum': '0xaff7ac', 'uniqueId': '0x124cda6871e34bced7da8d6a09cc796960935e9225b55280aa9ddd2533985dec:log:53', 'hash': '0x124cda6871e34bced7da8d6a09cc796960935e9225b55280aa9ddd2533985dec', 'from': '0xbb9e54a8550f43609ccb42c3c14030d636a24025', 'to': '0xb1cb24eb8150c34e4766d7b493094365d3c3e85b', 'value': 227.80297090909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0c5966bb1706f42c80', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:07:23.000Z'}}, {'blockNum': '0xaff7db', 'uniqueId': '0x163b23237f3febe4577305fd415db2195ddce1c47f96ecc0afbc9b9d1a6912d1:log:233', 'hash': '0x163b23237f3febe4577305fd415db2195ddce1c47f96ecc0afbc9b9d1a6912d1', 'from': '0x85aa1e68eefe8171b0cb677599fe2dee2b4b7288', 'to': '0x55dd02d2965e3eb261b4a063a484de0a265de7a4', 'value': 2711.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x92f8d5742f682b8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:18:31.000Z'}}, {'blockNum': '0xaff821', 'uniqueId': '0x5b097be9e23ab8054190d3d539389582c8c7262862a48ee9adc815b17d04c562:log:2', 'hash': '0x5b097be9e23ab8054190d3d539389582c8c7262862a48ee9adc815b17d04c562', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x93c541f45db0b8edab35928b7f6f92f37086eaa4', 'value': 9249.755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01f56e231d32994f8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:30:33.000Z'}}, {'blockNum': '0xaff86f', 'uniqueId': '0x811c1ecf3e61708c9452365c744e062330e612045ca8dab8f93c7405e1a661a2:log:3', 'hash': '0x811c1ecf3e61708c9452365c744e062330e612045ca8dab8f93c7405e1a661a2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 9304.555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01f866a3d2dad4b78000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:48:01.000Z'}}, {'blockNum': '0xaff87d', 'uniqueId': '0x9d49ced48b98a746d60e9d42e28870111f8eb14c48321db32228b77f9b9aa5f3:log:260', 'hash': '0x9d49ced48b98a746d60e9d42e28870111f8eb14c48321db32228b77f9b9aa5f3', 'from': '0x6d7dd712c2b1d04aa8c636e7be92b3ac4cdc506b', 'to': '0xb4143cdc3bf6377c7cd2c629ceaa3ab30efb713a', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:50:48.000Z'}}, {'blockNum': '0xaff89d', 'uniqueId': '0x948f28df2f5c458c878392ab45fa77194cf4c3150b9ea03e1e91ff833e92b4e9:log:144', 'hash': '0x948f28df2f5c458c878392ab45fa77194cf4c3150b9ea03e1e91ff833e92b4e9', 'from': '0xa9edadfe5bce820650d86671261eeaccece2f80b', 'to': '0x91ee5c39b2df87f507107828ab0fc7b8af1b0d3f', 'value': 1186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x404b0e6c4d7d480000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-26T23:57:28.000Z'}}, {'blockNum': '0xaff911', 'uniqueId': '0xb7ab7388f19f78e412bf4184241082da165d9cb21ec2e0dfb4f1ddaeea8b0354:log:57', 'hash': '0xb7ab7388f19f78e412bf4184241082da165d9cb21ec2e0dfb4f1ddaeea8b0354', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 796.072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x2b27b7e23ad2c40000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:19:47.000Z'}}, {'blockNum': '0xaff937', 'uniqueId': '0x2f411971fc0a58f45e8c667f04f15d7f4575fedef366630c78bb60d6dec724e5:log:198', 'hash': '0x2f411971fc0a58f45e8c667f04f15d7f4575fedef366630c78bb60d6dec724e5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 1767.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x5fcb705780c0c60000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:28:32.000Z'}}, {'blockNum': '0xaff9bb', 'uniqueId': '0xe43863c4cce420a68ac77e5a771e1c48a572e8bf6e1ff1b6f84abaa56681f97e:log:195', 'hash': '0xe43863c4cce420a68ac77e5a771e1c48a572e8bf6e1ff1b6f84abaa56681f97e', 'from': '0xfccb8d2c00c329137236e76ae3c177cf2430701b', 'to': '0x37f763af58adc9636d9b2ff054df4c091f3d2ab6', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:56:53.000Z'}}, {'blockNum': '0xaff9bd', 'uniqueId': '0x182655d26634578af1ea9d0621a6fe343d22ca26ece466fc1f10c4b75414f8c7:log:256', 'hash': '0x182655d26634578af1ea9d0621a6fe343d22ca26ece466fc1f10c4b75414f8c7', 'from': '0x37f763af58adc9636d9b2ff054df4c091f3d2ab6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T00:57:27.000Z'}}, {'blockNum': '0xaffa1f', 'uniqueId': '0xd7a614c37e80798531c035fd01035bdeaa61ed19a2c5038ab445737a20a2dbfd:log:161', 'hash': '0xd7a614c37e80798531c035fd01035bdeaa61ed19a2c5038ab445737a20a2dbfd', 'from': '0x6d0bfa463e0e900817ab0334b9b460f454209d86', 'to': '0x032d074590d74b66ce6714b5eeaaadde67645c7f', 'value': 8168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01bac9c55414cea00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T01:18:17.000Z'}}, {'blockNum': '0xaffaab', 'uniqueId': '0x32c40346ec80caefd6109b08f198f97567c1b832d051f80ad9047b259c198902:log:188', 'hash': '0x32c40346ec80caefd6109b08f198f97567c1b832d051f80ad9047b259c198902', 'from': '0x6d7dd712c2b1d04aa8c636e7be92b3ac4cdc506b', 'to': '0xb4143cdc3bf6377c7cd2c629ceaa3ab30efb713a', 'value': 30294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x066a3db42f8253980000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T01:49:14.000Z'}}, {'blockNum': '0xaffaf2', 'uniqueId': '0x58ebd7eebf85d5443fde6bf84e94c070cbc13ce7f2fe032d45ba271f79a8bb5a:log:23', 'hash': '0x58ebd7eebf85d5443fde6bf84e94c070cbc13ce7f2fe032d45ba271f79a8bb5a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x54fc6bcf943bbe0dac876953aa7f4ac1f0bdbfc8', 'value': 18401.528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x03e58c803c86b44c0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T02:07:02.000Z'}}, {'blockNum': '0xaffbf8', 'uniqueId': '0xd16d93935f0594fee03ff511a704e9379751382c654540257ec0c297f88a807f:log:0', 'hash': '0xd16d93935f0594fee03ff511a704e9379751382c654540257ec0c297f88a807f', 'from': '0xeba46dc65c1631a1f6f40400f9fd5c9e84987981', 'to': '0xc6ea8d76c140bf42d27f18762d417169ab183907', 'value': 24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014d1120d7b1600000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T03:05:54.000Z'}}, {'blockNum': '0xaffc51', 'uniqueId': '0xc3bb0a3dcb908f5f0cec9f5973adb7b837609210d5b20e398d5a65f301e3c7f9:log:293', 'hash': '0xc3bb0a3dcb908f5f0cec9f5973adb7b837609210d5b20e398d5a65f301e3c7f9', 'from': '0xb0db5e93533a6905cc640c440b7b0f0f420b8308', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 76657.2527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x103b99163f1e55e1c000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T03:23:53.000Z'}}, {'blockNum': '0xaffc78', 'uniqueId': '0xb1e745b2dcf6753358a2e220481ce6da142d23f4741f70be625d51626cc465a0:log:71', 'hash': '0xb1e745b2dcf6753358a2e220481ce6da142d23f4741f70be625d51626cc465a0', 'from': '0x57f41fd7f13f05984f7e82e55eb9db53219e3cbd', 'to': '0x4956124cbe45f6addb87fd6a94f4985d527cbab0', 'value': 238942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x3299125fd706eab80000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T03:33:32.000Z'}}, {'blockNum': '0xafff41', 'uniqueId': '0x7323a6f5f2e3676101852511e7c7544e6124bd01168dbc50a0a0e958bfa06373:log:0', 'hash': '0x7323a6f5f2e3676101852511e7c7544e6124bd01168dbc50a0a0e958bfa06373', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 6650.291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01688353cdbf894b8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T06:16:28.000Z'}}, {'blockNum': '0xafff73', 'uniqueId': '0x5f45899f9440861357d4d9848bb9553d677bec50ef79f72b1607020bb09cc6da:log:298', 'hash': '0x5f45899f9440861357d4d9848bb9553d677bec50ef79f72b1607020bb09cc6da', 'from': '0xdb4bfbcf8485dc5cc3a3d929494acaa3d01887ca', 'to': '0x39773de84ed46ddb45b1d6c786199ff9e7576dd8', 'value': 536.38000769231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1d13c49722116db180', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T06:26:11.000Z'}}, {'blockNum': '0xb0006e', 'uniqueId': '0xc3dedac8c4bc018cabd001428eaf23c521460446d62e08b7be65170b6423f62b:log:159', 'hash': '0xc3dedac8c4bc018cabd001428eaf23c521460446d62e08b7be65170b6423f62b', 'from': '0x1aa6bbdb653b3ac6057a4aefa50bcc4077d55920', 'to': '0x76be5f4144e0e580b55895c55c7e9e5fc526e434', 'value': 547.52, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x1dae5dcb1d5de00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-27T07:23:27.000Z'}}]}}
Number of returned transfers:  60
Answer is complete
 
symbol             EVX
group              BPF
date        2020-12-29
hour             18:00
exchange       binance
Name: 867, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2020-12-29 18:00:00 2020-12-29 06:00:00 2020-12-30 06:00:00
Unix timestamps:  1609218000.0 1609304400.0
Hex Block Numbers:  0xb03101 0xb04a4d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb03160', 'uniqueId': '0x7c686afdb4a0399b3a4637015d31670a8efe044c1e897a5581d2a7f331e7029c:log:94', 'hash': '0x7c686afdb4a0399b3a4637015d31670a8efe044c1e897a5581d2a7f331e7029c', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 19965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0be66ad0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T05:19:06.000Z'}}, {'blockNum': '0xb0318b', 'uniqueId': '0xad75f0e4d30f5c1869b56957cd5bbaa3a895fb480ff5079e31c65e1de0580a29:log:26', 'hash': '0xad75f0e4d30f5c1869b56957cd5bbaa3a895fb480ff5079e31c65e1de0580a29', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6aa0463281f723c1b9581cda63ae2863084fdbe0', 'value': 53.6169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x082e69', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T05:30:18.000Z'}}, {'blockNum': '0xb031bf', 'uniqueId': '0x8317a19601e2a48840e10e0811f3d18fdce2f896ee975fc4dbb2f7fcb9c2aff0:log:261', 'hash': '0x8317a19601e2a48840e10e0811f3d18fdce2f896ee975fc4dbb2f7fcb9c2aff0', 'from': '0x6aa0463281f723c1b9581cda63ae2863084fdbe0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 53.6169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x082e69', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T05:41:25.000Z'}}, {'blockNum': '0xb031ce', 'uniqueId': '0x8db7054414924672dd35f1a977925e2ae790bab90e6d16fbefe8bd1b7f392297:log:0', 'hash': '0x8db7054414924672dd35f1a977925e2ae790bab90e6d16fbefe8bd1b7f392297', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6aa0463281f723c1b9581cda63ae2863084fdbe0', 'value': 2180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014ca440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T05:45:40.000Z'}}, {'blockNum': '0xb0320b', 'uniqueId': '0xde8d529334c555b14671e55d51f2e08246108ce6023724d2d4596f66a382748f:log:268', 'hash': '0xde8d529334c555b14671e55d51f2e08246108ce6023724d2d4596f66a382748f', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x185bf640', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T06:00:36.000Z'}}, {'blockNum': '0xb0320f', 'uniqueId': '0xad1df94ba71760eff5bf33126aeccf25435ff1bd9a67140ee088f6f325d420a4:log:22', 'hash': '0xad1df94ba71760eff5bf33126aeccf25435ff1bd9a67140ee088f6f325d420a4', 'from': '0x6aa0463281f723c1b9581cda63ae2863084fdbe0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014ca440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T06:01:31.000Z'}}, {'blockNum': '0xb03228', 'uniqueId': '0xfd267ba877ad4ddb78f93a93f7c8eaae84d6700ac90f960d030e5842e2ea1fbb:log:45', 'hash': '0xfd267ba877ad4ddb78f93a93f7c8eaae84d6700ac90f960d030e5842e2ea1fbb', 'from': '0x488e13518f3872d69c8d4ba27e958e793014ce27', 'to': '0xa2842aa3b62dc76b9dfdfb567f8870af54656ba4', 'value': 135.814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x14b93c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T06:06:23.000Z'}}, {'blockNum': '0xb03399', 'uniqueId': '0x5fd6b1ae531aaff448e4ffb6be6b1da89ae265f9a790795911a2f303f9b33486:log:150', 'hash': '0x5fd6b1ae531aaff448e4ffb6be6b1da89ae265f9a790795911a2f303f9b33486', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 21072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c8f5500', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T07:26:07.000Z'}}, {'blockNum': '0xb033aa', 'uniqueId': '0x0a36a8a046db83567b7a97a9c3e0ae4bc1df5a7027875fa6bc167f305157df5d:log:61', 'hash': '0x0a36a8a046db83567b7a97a9c3e0ae4bc1df5a7027875fa6bc167f305157df5d', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c8f5500', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T07:30:16.000Z'}}, {'blockNum': '0xb03781', 'uniqueId': '0x9d73c0155338ee9b69da7b89664b0106a609ee147a430c2908374d5eb43f79b9:log:204', 'hash': '0x9d73c0155338ee9b69da7b89664b0106a609ee147a430c2908374d5eb43f79b9', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0db9a430', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:04:30.000Z'}}, {'blockNum': '0xb03785', 'uniqueId': '0x4411ad130f57a9c5cc236318a9f84ffdc72d49952a2018a009f0344ddf73b764:log:103', 'hash': '0x4411ad130f57a9c5cc236318a9f84ffdc72d49952a2018a009f0344ddf73b764', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 30163.4297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11fa92f9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:05:20.000Z'}}, {'blockNum': '0xb03785', 'uniqueId': '0x78c3e1d42f86af97aa010e10238d3461e8f7ba5ade834bbcaaab6a85f167956f:log:104', 'hash': '0x78c3e1d42f86af97aa010e10238d3461e8f7ba5ade834bbcaaab6a85f167956f', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 13675.3484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0826b14c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:05:20.000Z'}}, {'blockNum': '0xb03788', 'uniqueId': '0x9f925e518a3f65c0eaf464a1b2a2c6dc50d9cd9e293bdb8468c1bc31725e89fc:log:173', 'hash': '0x9f925e518a3f65c0eaf464a1b2a2c6dc50d9cd9e293bdb8468c1bc31725e89fc', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 20650.8839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f1327', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:05:40.000Z'}}, {'blockNum': '0xb037f7', 'uniqueId': '0xad1ca76a15fc1033f852da877921b3614d8139522ad65c135164828f4986c69a:log:97', 'hash': '0xad1ca76a15fc1033f852da877921b3614d8139522ad65c135164828f4986c69a', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20650.8839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f1327', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:31:34.000Z'}}, {'blockNum': '0xb037f9', 'uniqueId': '0xa84d4aabeece0583cb1eca16427fd8787f3b5ee94bbc369b125110342f51bde4:log:151', 'hash': '0xa84d4aabeece0583cb1eca16427fd8787f3b5ee94bbc369b125110342f51bde4', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 20954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c7d53a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T11:31:38.000Z'}}, {'blockNum': '0xb03938', 'uniqueId': '0xdb4d774d08a46d70ab5571fc509ceb1fa73e88b9b1dca08082531c4be968f70f:log:287', 'hash': '0xdb4d774d08a46d70ab5571fc509ceb1fa73e88b9b1dca08082531c4be968f70f', 'from': '0x102bb711506222cc3603866db4af79a1faa59faa', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1165.205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb1cbd2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T12:42:17.000Z'}}, {'blockNum': '0xb03b20', 'uniqueId': '0xc1804ac63cea763eefd0eed02729e1958b213f899569be57a8aa8aa649e7c3c2:log:247', 'hash': '0xc1804ac63cea763eefd0eed02729e1958b213f899569be57a8aa8aa649e7c3c2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 20986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c8235a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T14:27:01.000Z'}}, {'blockNum': '0xb03c8f', 'uniqueId': '0xbd219ed1848752ae41556d56190fbfb9c271e040c1facaf31bad8ca0e71c520c:log:301', 'hash': '0xbd219ed1848752ae41556d56190fbfb9c271e040c1facaf31bad8ca0e71c520c', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 33435.5695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13eddcef', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T15:48:20.000Z'}}, {'blockNum': '0xb03e93', 'uniqueId': '0x7f5cf0b3dd17e5f8eeeff285bc5954b94d8e9e743516046f417a57aeabbe828e:log:23', 'hash': '0x7f5cf0b3dd17e5f8eeeff285bc5954b94d8e9e743516046f417a57aeabbe828e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 21990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d1b6860', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T17:50:48.000Z'}}, {'blockNum': '0xb03ecd', 'uniqueId': '0x9076a318ac82b11446ad31a78edc079603feb46e9ed85123f45806b97ace8d6d:log:44', 'hash': '0x9076a318ac82b11446ad31a78edc079603feb46e9ed85123f45806b97ace8d6d', 'from': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'to': '0x51f1bdb4a5161416be55020eef4d735909f47292', 'value': 105.8153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x102569', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:02:04.000Z'}}, {'blockNum': '0xb03ed6', 'uniqueId': '0xc614e38ff8d6ceae6606e68512f334d083ed9c4a6f8409ec3c016d9a366cf5ba:log:306', 'hash': '0xc614e38ff8d6ceae6606e68512f334d083ed9c4a6f8409ec3c016d9a366cf5ba', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 21227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0ca6fbb0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:03:58.000Z'}}, {'blockNum': '0xb03edd', 'uniqueId': '0xd5190db1ba960eae52dbc47ec2e3ce0ba5dd9d22723fb599b58d40243a508e98:log:238', 'hash': '0xd5190db1ba960eae52dbc47ec2e3ce0ba5dd9d22723fb599b58d40243a508e98', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xf795b99220c119675d82e5ce37606a035121a5b5', 'value': 3971.7991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x025e0c67', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:06:41.000Z'}}, {'blockNum': '0xb03ee3', 'uniqueId': '0x3fb544017beb0271888f4236b9e3825fdea8dface791843e03e482538cc86bfd:log:248', 'hash': '0x3fb544017beb0271888f4236b9e3825fdea8dface791843e03e482538cc86bfd', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 20619.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4a497e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:07:57.000Z'}}, {'blockNum': '0xb03f0d', 'uniqueId': '0x5d6d06a1a78030333028df3c323d796479a684577a1b7bdba993dd67b281164d:log:263', 'hash': '0x5d6d06a1a78030333028df3c323d796479a684577a1b7bdba993dd67b281164d', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 19916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bdef0c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:16:16.000Z'}}, {'blockNum': '0xb03f4a', 'uniqueId': '0x94e82be267f271a93ba5c589c1040924c1ace8663ec9297fc86823f1adc0b83b:log:107', 'hash': '0x94e82be267f271a93ba5c589c1040924c1ace8663ec9297fc86823f1adc0b83b', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20619.507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4a497e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T18:30:40.000Z'}}, {'blockNum': '0xb03fff', 'uniqueId': '0xbf7c201677d882ccd865986446094212206a205789a79f28bb15c520136ef1ba:log:2', 'hash': '0xbf7c201677d882ccd865986446094212206a205789a79f28bb15c520136ef1ba', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0x6aa88686a48bdb35dba3fef81663841795da5e26', 'value': 18.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02db40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T19:10:24.000Z'}}, {'blockNum': '0xb04000', 'uniqueId': '0x341b384d0f7d060e9e121a26225671753de04419cd85e10e5261738ca95010fa:log:0', 'hash': '0x341b384d0f7d060e9e121a26225671753de04419cd85e10e5261738ca95010fa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c1a4c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T19:10:25.000Z'}}, {'blockNum': '0xb0402e', 'uniqueId': '0x930930e46003112bcb65d1a5b48c1ff0e2202cee6958f28fd3c7d66293ac2971:log:34', 'hash': '0x930930e46003112bcb65d1a5b48c1ff0e2202cee6958f28fd3c7d66293ac2971', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c1a4c10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T19:21:25.000Z'}}, {'blockNum': '0xb04236', 'uniqueId': '0x432465cb9eb0f39b6af1bdad751736dd834629e8cd63463f0229582db49fbc72:log:16', 'hash': '0x432465cb9eb0f39b6af1bdad751736dd834629e8cd63463f0229582db49fbc72', 'from': '0x1bf7e5f8692ee2012db277890abae5014c1cc668', 'to': '0x05d6bf130cefb47a4cedcebde2f00ac2dc234c10', 'value': 711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6c7d70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T21:21:51.000Z'}}, {'blockNum': '0xb043ad', 'uniqueId': '0x9d3ec2e3ac951c2761ea7721013da9423733423ef8f9776442fae3702586a4df:log:91', 'hash': '0x9d3ec2e3ac951c2761ea7721013da9423733423ef8f9776442fae3702586a4df', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x57119fa8816cdc4e59a2cb70d61368085d7a82db', 'value': 175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1ab3f0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T22:45:31.000Z'}}, {'blockNum': '0xb0442d', 'uniqueId': '0x56a210d5a248d578d8ed2a89a88b3ed8581cb6e8e6e6e8e1dc56f71a26063de2:log:5', 'hash': '0x56a210d5a248d578d8ed2a89a88b3ed8581cb6e8e6e6e8e1dc56f71a26063de2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 13655.3484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0823a40c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T23:13:02.000Z'}}, {'blockNum': '0xb04465', 'uniqueId': '0xf2f5b76040a7b65abb70188325ad6a44d51ff53db7d0a4790d9ab405af817cd8:log:164', 'hash': '0xf2f5b76040a7b65abb70188325ad6a44d51ff53db7d0a4790d9ab405af817cd8', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13655.3484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0823a40c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-29T23:26:41.000Z'}}, {'blockNum': '0xb0453c', 'uniqueId': '0x2b0391a1fbd853233eddafe7e603aa16f20ee568e4cbcab64b8da87ae4153bfa:log:10', 'hash': '0x2b0391a1fbd853233eddafe7e603aa16f20ee568e4cbcab64b8da87ae4153bfa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 13645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08220fd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:19:56.000Z'}}, {'blockNum': '0xb0453c', 'uniqueId': '0x9df9227be085cde43c60d97244e60b4c95d1e58302ae61efc7d0dbccc9eca0cf:log:11', 'hash': '0x9df9227be085cde43c60d97244e60b4c95d1e58302ae61efc7d0dbccc9eca0cf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c814b40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:19:56.000Z'}}, {'blockNum': '0xb04554', 'uniqueId': '0x45301ee88945c81d1d5159b1f6256e215a96208b0725fd5916be1edbdd4ed9f9:log:14', 'hash': '0x45301ee88945c81d1d5159b1f6256e215a96208b0725fd5916be1edbdd4ed9f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 106985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3fc49d90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:24:40.000Z'}}, {'blockNum': '0xb04558', 'uniqueId': '0xf151e573cd922001f9de69e87f58c9322a2ca9660fdb06cf9c556fd5f33841cf:log:163', 'hash': '0xf151e573cd922001f9de69e87f58c9322a2ca9660fdb06cf9c556fd5f33841cf', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c814b40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:26:00.000Z'}}, {'blockNum': '0xb04558', 'uniqueId': '0xc8e7ae09fc593bcc8c0150536b7b7e31b1ba365ad055fcfdf0cd9ce00abe170d:log:164', 'hash': '0xc8e7ae09fc593bcc8c0150536b7b7e31b1ba365ad055fcfdf0cd9ce00abe170d', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08220fd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T00:26:00.000Z'}}, {'blockNum': '0xb04686', 'uniqueId': '0x290fd851ce04909a10d03a9ffca2431e77d8abbb363e76569a4aff2291bb3eba:log:26', 'hash': '0x290fd851ce04909a10d03a9ffca2431e77d8abbb363e76569a4aff2291bb3eba', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x54a9cf11298366adc3c901ed44f35aa1ee9116c6', 'value': 544.5098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5315ea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T01:35:02.000Z'}}, {'blockNum': '0xb046a3', 'uniqueId': '0xfce2efe9a6d17880ecfbb482e4cc9ac18aa69020d2f777aea8b4cac7ce8b4d62:log:0', 'hash': '0xfce2efe9a6d17880ecfbb482e4cc9ac18aa69020d2f777aea8b4cac7ce8b4d62', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 33415.0409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13eabb09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T01:42:06.000Z'}}, {'blockNum': '0xb046a3', 'uniqueId': '0xec29a45c4e53322fd63c9b4619cea1c2af389f2ea6b5dcab85c87e3ea01738fa:log:1', 'hash': '0xec29a45c4e53322fd63c9b4619cea1c2af389f2ea6b5dcab85c87e3ea01738fa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 21093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c928950', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T01:42:06.000Z'}}, {'blockNum': '0xb04775', 'uniqueId': '0x5fe020870e657ec8d115c6b1f0a063a29b54f81c6389a25bddc27f1f11c1d987:log:151', 'hash': '0x5fe020870e657ec8d115c6b1f0a063a29b54f81c6389a25bddc27f1f11c1d987', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20914.3909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c774865', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T02:27:29.000Z'}}, {'blockNum': '0xb047b5', 'uniqueId': '0x46dba761b5aaa63d4a4552582300435b7291fbe93b6624c0b7873cd9857c93e7:log:70', 'hash': '0x46dba761b5aaa63d4a4552582300435b7291fbe93b6624c0b7873cd9857c93e7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c513a90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T02:41:02.000Z'}}, {'blockNum': '0xb04806', 'uniqueId': '0xc0ecadeeba58df68982dad826fd1f07f24da95092b5bb8542feb606d45696e4c:log:162', 'hash': '0xc0ecadeeba58df68982dad826fd1f07f24da95092b5bb8542feb606d45696e4c', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 41758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x18e3c3e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T02:56:16.000Z'}}, {'blockNum': '0xb048e0', 'uniqueId': '0x7a49513a7dc9af9529b8dc1d9a807f00a90a028ec9aa58c49d778ec051b6d521:log:186', 'hash': '0x7a49513a7dc9af9529b8dc1d9a807f00a90a028ec9aa58c49d778ec051b6d521', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 33415.0409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13eabb09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T03:47:37.000Z'}}, {'blockNum': '0xb048e0', 'uniqueId': '0x6dee6436433e7f7122ca90e047d39a9793b327d3066941cb483e2d97e64ace6e:log:187', 'hash': '0x6dee6436433e7f7122ca90e047d39a9793b327d3066941cb483e2d97e64ace6e', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20914.3909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c774865', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T03:47:37.000Z'}}, {'blockNum': '0xb048f2', 'uniqueId': '0x148c270c1a054a13adf2f107d090a3f6cb7b58f688af07754854f7c797aa6d31:log:85', 'hash': '0x148c270c1a054a13adf2f107d090a3f6cb7b58f688af07754854f7c797aa6d31', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4a83d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T03:52:05.000Z'}}, {'blockNum': '0xb048fa', 'uniqueId': '0x43f81f517fd97cced4922cfd70efea2cc6d5fac58d5f5c497ae657ea046f8a90:log:88', 'hash': '0x43f81f517fd97cced4922cfd70efea2cc6d5fac58d5f5c497ae657ea046f8a90', 'from': '0x54a9cf11298366adc3c901ed44f35aa1ee9116c6', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 544.5098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5315ea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T03:54:14.000Z'}}, {'blockNum': '0xb0491d', 'uniqueId': '0x1bca246b5d27ed31b6c51691adda48e3c813fb6fd8efae50b6c55c261aa54456:log:78', 'hash': '0x1bca246b5d27ed31b6c51691adda48e3c813fb6fd8efae50b6c55c261aa54456', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 109422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x413878e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T04:01:32.000Z'}}, {'blockNum': '0xb04925', 'uniqueId': '0xde994a80639f649b912316db5ffc39bf76133676244d4a63d387be5296a4e6b4:log:185', 'hash': '0xde994a80639f649b912316db5ffc39bf76133676244d4a63d387be5296a4e6b4', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4a83d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-12-30T04:04:06.000Z'}}]}}
Number of returned transfers:  49
Answer is complete
 
symbol            IDEX
group              BPF
date        2020-12-31
hour             17:00
exchange       binance
Name: 868, dtype: object
HERE
 Symbol: IDEX, Contract: 0xb705268213d593b8fd88d3fdeff93aff5cbdcfae
Datetime timestamps:  2020-12-31 17:00:00 2020-12-31 05:00:00 2021-01-01 05:00:00
Unix timestamps:  1609387200.0 1609473600.0
Hex Block Numbers:  0xb062b6 0xb07c45
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb064be', 'uniqueId': '0xf6f88ecc5db86d5cc957b546aa2d11c8ed8319c0f466890231b5861e3b7e4477:log:153', 'hash': '0xf6f88ecc5db86d5cc957b546aa2d11c8ed8319c0f466890231b5861e3b7e4477', 'from': '0x8645fb015e160c3f9c085c2f2a57065d7321afc3', 'to': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'value': 197119.9880523943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x29bde55deb320e427f0f', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T05:55:11.000Z'}}, {'blockNum': '0xb06500', 'uniqueId': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6:log:228', 'hash': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T06:14:04.000Z'}}, {'blockNum': '0xb06500', 'uniqueId': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6:log:233', 'hash': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T06:14:04.000Z'}}, {'blockNum': '0xb06670', 'uniqueId': '0x716b0f3533b84222302943eab7cccf09c99dd2db2933e2a0197866328b1d0802:log:89', 'hash': '0x716b0f3533b84222302943eab7cccf09c99dd2db2933e2a0197866328b1d0802', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 69831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ec98bcce7815ebc0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T07:35:28.000Z'}}, {'blockNum': '0xb0674e', 'uniqueId': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc:log:62', 'hash': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 32150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06cedae0c5ffe8980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:25:30.000Z'}}, {'blockNum': '0xb0674e', 'uniqueId': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc:log:67', 'hash': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 32150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06cedae0c5ffe8980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:25:30.000Z'}}, {'blockNum': '0xb06773', 'uniqueId': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883:log:252', 'hash': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:32:44.000Z'}}, {'blockNum': '0xb06773', 'uniqueId': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883:log:253', 'hash': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x6632eda2685eabfb7b3b45669cfa5441349485d3', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:32:44.000Z'}}, {'blockNum': '0xb0677d', 'uniqueId': '0xbacb5695f9be72ac8c2c8cfd048fec0b6d5f02f43b3ef98f406e622880494b3f:log:319', 'hash': '0xbacb5695f9be72ac8c2c8cfd048fec0b6d5f02f43b3ef98f406e622880494b3f', 'from': '0x6632eda2685eabfb7b3b45669cfa5441349485d3', 'to': '0xdd4c4ad3dff94841bd8b9020a2238e2864fc1a22', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:35:02.000Z'}}, {'blockNum': '0xb06806', 'uniqueId': '0x061b54e2c575b5e2d839dbcc6dd46053e0a53886ca6732213d534af8217ac4aa:log:49', 'hash': '0x061b54e2c575b5e2d839dbcc6dd46053e0a53886ca6732213d534af8217ac4aa', 'from': '0xdd4c4ad3dff94841bd8b9020a2238e2864fc1a22', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T09:00:32.000Z'}}, {'blockNum': '0xb06a70', 'uniqueId': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71:log:90', 'hash': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71', 'from': '0x8b91c0dd24c4fd4f973e49ed8568921e31cf38b7', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T11:13:54.000Z'}}, {'blockNum': '0xb06a70', 'uniqueId': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71:log:95', 'hash': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T11:13:54.000Z'}}, {'blockNum': '0xb06bd3', 'uniqueId': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a:log:208', 'hash': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:28:09.000Z'}}, {'blockNum': '0xb06bd3', 'uniqueId': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a:log:209', 'hash': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xccc18ec56dcefec8c39ea8022a099798e31e5264', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:28:09.000Z'}}, {'blockNum': '0xb06bd9', 'uniqueId': '0xcb49191614cc10f05cea4d85da79ae734f291c33036bceeb0463b680fa4d5cf0:log:175', 'hash': '0xcb49191614cc10f05cea4d85da79ae734f291c33036bceeb0463b680fa4d5cf0', 'from': '0xccc18ec56dcefec8c39ea8022a099798e31e5264', 'to': '0x9ea39651739f6c025d0770695a822b7187605f42', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:29:37.000Z'}}, {'blockNum': '0xb06c72', 'uniqueId': '0xc5cc9e8ee1a15fdd662718843b23419e8a9fcdbb7e28cb766431a25a10d7b4fe:log:46', 'hash': '0xc5cc9e8ee1a15fdd662718843b23419e8a9fcdbb7e28cb766431a25a10d7b4fe', 'from': '0x9ea39651739f6c025d0770695a822b7187605f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:01:19.000Z'}}, {'blockNum': '0xb06c76', 'uniqueId': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97:log:144', 'hash': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:02:03.000Z'}}, {'blockNum': '0xb06c76', 'uniqueId': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97:log:145', 'hash': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x6521a235cb318948a40c27c60f4e5d637998fe08', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:02:03.000Z'}}, {'blockNum': '0xb06c80', 'uniqueId': '0xbc952c6ccc2728f471560576958bab591891284e872d685e98cb2d282c6b9322:log:198', 'hash': '0xbc952c6ccc2728f471560576958bab591891284e872d685e98cb2d282c6b9322', 'from': '0x6521a235cb318948a40c27c60f4e5d637998fe08', 'to': '0x7594530b7d298c28de863010f0ff25e15aef9ccf', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:04:08.000Z'}}, {'blockNum': '0xb06cf4', 'uniqueId': '0xa849f6e941a05933f6991b1b3fe817e9c74ce49c92201fc9482c0eeb64d89e1a:log:32', 'hash': '0xa849f6e941a05933f6991b1b3fe817e9c74ce49c92201fc9482c0eeb64d89e1a', 'from': '0x7594530b7d298c28de863010f0ff25e15aef9ccf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:30:30.000Z'}}, {'blockNum': '0xb06d17', 'uniqueId': '0x8bd9f421ea52c659ab3bd69ffe01f7734b58b50e29c2eea44962988dbc4cd8eb:log:29', 'hash': '0x8bd9f421ea52c659ab3bd69ffe01f7734b58b50e29c2eea44962988dbc4cd8eb', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 41984.80376968497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08e40032a7812a1770eb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:40:42.000Z'}}, {'blockNum': '0xb06d95', 'uniqueId': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc:log:179', 'hash': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 20954.836775318676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x046ff6c73fab39b7ca10', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T14:07:48.000Z'}}, {'blockNum': '0xb06d95', 'uniqueId': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc:log:180', 'hash': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 20954.8359520322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x046ff6c452e4e7c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T14:07:48.000Z'}}, {'blockNum': '0xb06f67', 'uniqueId': '0x0d3d3f167e21dfcb07398c592d58bbc9dcef6a642703c29e30facedd43313cd8:log:233', 'hash': '0x0d3d3f167e21dfcb07398c592d58bbc9dcef6a642703c29e30facedd43313cd8', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T15:51:03.000Z'}}, {'blockNum': '0xb06f83', 'uniqueId': '0xe35a04ecfe7d87e1168f8d110b781d3f701dd3b655ecdbefd62ddf1bbd5376e0:log:60', 'hash': '0xe35a04ecfe7d87e1168f8d110b781d3f701dd3b655ecdbefd62ddf1bbd5376e0', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:00:38.000Z'}}, {'blockNum': '0xb07076', 'uniqueId': '0x7fc1b3ecd48c0ba53f47197ff0d4eb89b8885d650c8b7eb3e74c88da066ead1e:log:88', 'hash': '0x7fc1b3ecd48c0ba53f47197ff0d4eb89b8885d650c8b7eb3e74c88da066ead1e', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 32843.69407889556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06f475d137680a7d8339', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:30.000Z'}}, {'blockNum': '0xb07078', 'uniqueId': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc:log:94', 'hash': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 25732.384259344133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0572f4918bdbcc3dad48', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:59.000Z'}}, {'blockNum': '0xb07078', 'uniqueId': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc:log:95', 'hash': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 25732.383010734346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0572f48d1c412d800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:59.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0xde064d44427b04772fbc6242f25c0d690dc91d8f356c7fc97607b4b563f7b1fd:log:7', 'hash': '0xde064d44427b04772fbc6242f25c0d690dc91d8f356c7fc97607b4b563f7b1fd', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 45336.95216870385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0999b89a1ff80484e7ac', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa:log:14', 'hash': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 35552.304501192295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07874b5683a6f815d8f1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa:log:15', 'hash': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 35552.304501192295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07874b5683a6f815d8f1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb07083', 'uniqueId': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d:log:309', 'hash': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:25.000Z'}}, {'blockNum': '0xb07083', 'uniqueId': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d:log:310', 'hash': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:25.000Z'}}, {'blockNum': '0xb07085', 'uniqueId': '0xb7b24216f8194d799b442930e5d157a9e50bef165c9641c4d1f84595a182983b:log:143', 'hash': '0xb7b24216f8194d799b442930e5d157a9e50bef165c9641c4d1f84595a182983b', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:35.000Z'}}, {'blockNum': '0xb07088', 'uniqueId': '0x2eb8e3627eddd10d74f1f4da15d9d9c0ae14d03552a3f37b4d27ee7c6b44dce4:log:61', 'hash': '0x2eb8e3627eddd10d74f1f4da15d9d9c0ae14d03552a3f37b4d27ee7c6b44dce4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 12499.909064288897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a59f15ea9d39290f9d', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:56:20.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081:log:7', 'hash': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 374743.80349516025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcb91564dc0a4c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081:log:8', 'hash': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 374743.80349516025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcb91564dc0a4c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210:log:11', 'hash': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xfe7f0897239ce9cc6645d9323e6fe428591b821c', 'value': 78979.55866239427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x10b97d8e67cfcf57e8fd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210:log:17', 'hash': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210', 'from': '0xfe7f0897239ce9cc6645d9323e6fe428591b821c', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 78979.55866239427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x10b97d8e67cfcf57e8fd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xdfbd384ad1e0c29b856f35f18e7891887488e9d84bccbb8b22a25ae7db398a22:log:72', 'hash': '0xdfbd384ad1e0c29b856f35f18e7891887488e9d84bccbb8b22a25ae7db398a22', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 11179.942543947493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x025e10decdd89344a4bd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xaa89b82a4783e661e56df4ceaf1f9ef6d90e9d9b538e53d3eb3c465fdbd50dc1:log:185', 'hash': '0xaa89b82a4783e661e56df4ceaf1f9ef6d90e9d9b538e53d3eb3c465fdbd50dc1', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 27790.868296863675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05e28bc5f1aab04ac588', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xf01029d76553f7294f294c02ee8aa8c7693b9356681d1ead15f845ab381eeae4:log:16', 'hash': '0xf01029d76553f7294f294c02ee8aa8c7693b9356681d1ead15f845ab381eeae4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x97f0b8d84194f1b1c57655e0dcc8ee6af1d6248d', 'value': 18207.23707430216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03db042c35005ea598a4', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09:log:23', 'hash': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 26178.254195504018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x058b2041c479d0481c04', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09:log:24', 'hash': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 26178.25286121645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x058b203d06f2c7c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0x2acd2f5eacfe3edd1cd924fe44a5b1edd08807e86eb24bd79854e563a07267f4:log:84', 'hash': '0x2acd2f5eacfe3edd1cd924fe44a5b1edd08807e86eb24bd79854e563a07267f4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 88444.99698166132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x12ba9ce69924c2542f8e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b:log:91', 'hash': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'value': 101702.17356914104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1589492f33ecace102dc', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b:log:92', 'hash': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b', 'from': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 101702.17356914104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1589492f33ecace102dc', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0x78a18ccccee32349fa5453e5e4113813e9ffdaadffdb99395b4079ec41d3291e:log:335', 'hash': '0x78a18ccccee32349fa5453e5e4113813e9ffdaadffdb99395b4079ec41d3291e', 'from': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07098', 'uniqueId': '0x48583e3f53f32a87c8462e2bddedd9939e2c96821671c3f2865432c7a1bc3401:log:142', 'hash': '0x48583e3f53f32a87c8462e2bddedd9939e2c96821671c3f2865432c7a1bc3401', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x639fc46a3cd1c1deff7f123f651350712e8e2b5a', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:51.000Z'}}, {'blockNum': '0xb07099', 'uniqueId': '0x5902cb2c417688c449b2c9312b5405f2945148c848199ab506c15bae905a69e3:log:0', 'hash': '0x5902cb2c417688c449b2c9312b5405f2945148c848199ab506c15bae905a69e3', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 374743.8035042302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcc1552afcd64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:17.000Z'}}, {'blockNum': '0xb0709b', 'uniqueId': '0x535754ca07b45c5a28e5852ba3f3971698d3cc9ad021655d39b0675d528fb616:log:1', 'hash': '0x535754ca07b45c5a28e5852ba3f3971698d3cc9ad021655d39b0675d528fb616', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:40.000Z'}}, {'blockNum': '0xb0709b', 'uniqueId': '0xab3acf638f62a5166e4c4f294ad8da3292a1371dbb943654f2409c855d0d4f4b:log:56', 'hash': '0xab3acf638f62a5166e4c4f294ad8da3292a1371dbb943654f2409c855d0d4f4b', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 11830.020825450492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02814e84ce9c51ff432d', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:40.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x746ef6db20e3e1e4ef660e790053757afb1a7e5d7e2e71e489ab6bc0403bd1f3:log:11', 'hash': '0x746ef6db20e3e1e4ef660e790053757afb1a7e5d7e2e71e489ab6bc0403bd1f3', 'from': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c:log:305', 'hash': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 21507.8676843016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x048df19fb94e342f2641', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c:log:306', 'hash': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 21507.866779279437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x048df19c82314fc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709d', 'uniqueId': '0xe5b6e409159c9a547c63bf05ff540769de7122be00fb63802ec6d9b3d5977392:log:17', 'hash': '0xe5b6e409159c9a547c63bf05ff540769de7122be00fb63802ec6d9b3d5977392', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x61fd0d043d519f5a2bd05785000f30db96809429', 'value': 16638.047790046825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e471f3a1f7', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:00.000Z'}}, {'blockNum': '0xb0709d', 'uniqueId': '0x50b7ab79dd533e1d7c0fa5af577b83cbaecbd7704d5a7402342ab09b8972dc9b:log:264', 'hash': '0x50b7ab79dd533e1d7c0fa5af577b83cbaecbd7704d5a7402342ab09b8972dc9b', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xb4fee33a0edef5a7fb0da42a9b8fe3b4f73dfb8b', 'value': 22863.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d773f85871ae58a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:00.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x70f520061e1187cfb90a9efa3fb4ff0423d747460fc7376351aab05a69a33a46:log:43', 'hash': '0x70f520061e1187cfb90a9efa3fb4ff0423d747460fc7376351aab05a69a33a46', 'from': '0x639fc46a3cd1c1deff7f123f651350712e8e2b5a', 'to': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880:log:160', 'hash': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880:log:161', 'hash': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x78b566c3611eb6de644439ad72f1755b859499fb', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3:log:164', 'hash': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 38478.786317350125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0825f06e7e48573c4117', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3:log:170', 'hash': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 38478.786317350125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0825f06e7e48573c4117', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb070a1', 'uniqueId': '0x6d1d097e7747a19c77855d4463ec4012328ce1554958086d96366f0f59af38b6:log:19', 'hash': '0x6d1d097e7747a19c77855d4463ec4012328ce1554958086d96366f0f59af38b6', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 59036.44045169382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c805f318a5937d6d141', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:04.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:242', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 47331.97522324073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a05df1bd1fc266ccf54', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:249', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 96595.32833061428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1474717844b5cab574e8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:250', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:252', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0xfe744aef67324ccb15819206c3d91f2e58d53e4e', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598:log:265', 'hash': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'value': 41615.53925688159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cffb9f918e9ec99265', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598:log:266', 'hash': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598', 'from': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 41615.53925688159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cffb9f918e9ec99265', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x3c82755756bb035bcdc3f6ab445f79153beee4b0017d0257d539f75943f1af80:log:22', 'hash': '0x3c82755756bb035bcdc3f6ab445f79153beee4b0017d0257d539f75943f1af80', 'from': '0x61fd0d043d519f5a2bd05785000f30db96809429', 'to': '0x94b521f9ee971ac9b8f158ce6e25ff06d6b6c7df', 'value': 16638.0477900468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e470883400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29:log:239', 'hash': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29', 'from': '0xf81521e83369fd9b661b804ba342993b2bcef430', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 2333.156600233402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x7e7b0d5e519dfe3780', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29:log:241', 'hash': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 2333.1523688657467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x7e7afe55e98ffc0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a7', 'uniqueId': '0xf57e370cf999fdc57dd35f6e0a1b62802e08084bf2a0032794d686a277042f5b:log:34', 'hash': '0xf57e370cf999fdc57dd35f6e0a1b62802e08084bf2a0032794d686a277042f5b', 'from': '0x78b566c3611eb6de644439ad72f1755b859499fb', 'to': '0x2e4ba6698b2c6549ca554785adb6e58186aff6c6', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:11.000Z'}}, {'blockNum': '0xb070a7', 'uniqueId': '0x6e10470cf2c38062ae9eaea6d12612db91d162a236584540f066c25bcbc67c8b:log:38', 'hash': '0x6e10470cf2c38062ae9eaea6d12612db91d162a236584540f066c25bcbc67c8b', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 59036.44045169382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c805f318a5937d6d141', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:11.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x4a0cd84d82083dd03e26c398b233d4b0a2637342880dbb43e9121d66875d5125:log:61', 'hash': '0x4a0cd84d82083dd03e26c398b233d4b0a2637342880dbb43e9121d66875d5125', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 21978.707620276513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04a777d73475309e8ac1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67:log:68', 'hash': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 26286.437447768243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0590fd99e33b0fd9e109', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67:log:69', 'hash': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 26286.437447768243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0590fd99e33b0fd9e109', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0xb385af39dd61b0e1d3c3abea8ab107bb6ac1ce98a4468ad8a2e432ab9d1dcd05:log:95', 'hash': '0xb385af39dd61b0e1d3c3abea8ab107bb6ac1ce98a4468ad8a2e432ab9d1dcd05', 'from': '0xfe744aef67324ccb15819206c3d91f2e58d53e4e', 'to': '0xf6e8eb93a97aaaf8b16c82f50223045def46d196', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0xb33dcefaa82b528a18bf08836317b19e4c8c07c6371c95ac1c6d295b2eb9ca90:log:39', 'hash': '0xb33dcefaa82b528a18bf08836317b19e4c8c07c6371c95ac1c6d295b2eb9ca90', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 44125.16523853139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x095807ae1f4c9df105a5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e:log:46', 'hash': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 35447.41641643528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07819bb92e495eadec9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e:log:47', 'hash': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 35447.41641643528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07819bb92e495eadec9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0xca2cabd7bc5c07ae8316f92ff384f007adfeae874c659caa77aac6930489a9a9:log:132', 'hash': '0xca2cabd7bc5c07ae8316f92ff384f007adfeae874c659caa77aac6930489a9a9', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x6faa5a80097158dbe98ef3f0136586b3f2857052', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xa385162b082da58de8c72757f56931bceaa77d116d2b52058cba87da05d10caf:log:27', 'hash': '0xa385162b082da58de8c72757f56931bceaa77d116d2b52058cba87da05d10caf', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3:log:35', 'hash': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 32243.752777417754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06d3eff58c566c21cef5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3:log:36', 'hash': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 32243.752777417754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06d3eff58c566c21cef5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070b0', 'uniqueId': '0xe6781c705556ada8299e5e9494d935608a6a8050a6cdf9e2be1a7ae232b744fc:log:120', 'hash': '0xe6781c705556ada8299e5e9494d935608a6a8050a6cdf9e2be1a7ae232b744fc', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:09.000Z'}}, {'blockNum': '0xb070b1', 'uniqueId': '0x0bbd25e0aa999cd6b65e8fc0dc983714db103a097226f7cae3a6233059b724be:log:35', 'hash': '0x0bbd25e0aa999cd6b65e8fc0dc983714db103a097226f7cae3a6233059b724be', 'from': '0x6faa5a80097158dbe98ef3f0136586b3f2857052', 'to': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:43.000Z'}}, {'blockNum': '0xb070b1', 'uniqueId': '0x816479eba873edbe7180415bfda935d7cf0f05fcd5ed8b10f01b779708d99cc8:log:192', 'hash': '0x816479eba873edbe7180415bfda935d7cf0f05fcd5ed8b10f01b779708d99cc8', 'from': '0x94b521f9ee971ac9b8f158ce6e25ff06d6b6c7df', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 16638.0477900468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e470883400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:43.000Z'}}, {'blockNum': '0xb070b2', 'uniqueId': '0x1c1cc36598e967a0e2cc2a7c8bdb337e917c75060fd205aab72c61e36e511949:log:25', 'hash': '0x1c1cc36598e967a0e2cc2a7c8bdb337e917c75060fd205aab72c61e36e511949', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:56.000Z'}}, {'blockNum': '0xb070bc', 'uniqueId': '0x5edd02b6e35e9d33c65b5929e14da80dc574d71fecd59889d22d21bdbb424642:log:151', 'hash': '0x5edd02b6e35e9d33c65b5929e14da80dc574d71fecd59889d22d21bdbb424642', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0xd5d21b9232ab1e6c7622bf2375f0365bc3a6b10d', 'value': 45817.84679395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b3ca5b09bdc3f72c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:10:14.000Z'}}, {'blockNum': '0xb070bd', 'uniqueId': '0xf132bfabeb777ea76a0ce1d5ee118deb2ab06a0ac845ed8ef5ffb6a954fa1ff8:log:283', 'hash': '0xf132bfabeb777ea76a0ce1d5ee118deb2ab06a0ac845ed8ef5ffb6a954fa1ff8', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:10:51.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x94f032c67307de4061954fdd45dedb35030be7ce988acd11510c79e804539a53:log:316', 'hash': '0x94f032c67307de4061954fdd45dedb35030be7ce988acd11510c79e804539a53', 'from': '0xd5d21b9232ab1e6c7622bf2375f0365bc3a6b10d', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 45817.84679395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b3ca5b09bdc3f72c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2:log:324', 'hash': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'value': 41604.26901791843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cf5f37a2eeb19d19e6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2:log:330', 'hash': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2', 'from': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 41604.26901791843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cf5f37a2eeb19d19e6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c1', 'uniqueId': '0x8484dc69cd8f52aa2e32a589b492daf9eb2e15dfe93410142e0eed2689be4e9b:log:181', 'hash': '0x8484dc69cd8f52aa2e32a589b492daf9eb2e15dfe93410142e0eed2689be4e9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:19.000Z'}}, {'blockNum': '0xb070c1', 'uniqueId': '0xef2b2ee229e0daead0b206647728614dd8867678380887c5441b65147afad96a:log:187', 'hash': '0xef2b2ee229e0daead0b206647728614dd8867678380887c5441b65147afad96a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:19.000Z'}}, {'blockNum': '0xb070c2', 'uniqueId': '0x7d7dbeec8b707dbf5316e9ebbfa179b98125c7dc27a1bcaf97022ccb269c188d:log:230', 'hash': '0x7d7dbeec8b707dbf5316e9ebbfa179b98125c7dc27a1bcaf97022ccb269c188d', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:54.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51:log:6', 'hash': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51:log:11', 'hash': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04:log:22', 'hash': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 45212.07594751183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0992f398aa6ad1452c19', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04:log:23', 'hash': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 45212.071874338406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0992f38a31e33a000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x9ba48c941388f27f70887109e596c09de6d895c8788aae21095a7afd62f1caad:log:118', 'hash': '0x9ba48c941388f27f70887109e596c09de6d895c8788aae21095a7afd62f1caad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 24770.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x053ed4e954b99c44a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x5881d0d427b23db168727a3430d4566d857c1cee62871ec89821a4236119544c:log:119', 'hash': '0x5881d0d427b23db168727a3430d4566d857c1cee62871ec89821a4236119544c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 58867.44045169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c7735d8edbed317a400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c8', 'uniqueId': '0x098af8b5f794660179c8662f20bf03f3518110c015d60a2875ee97c8f9d89fa4:log:146', 'hash': '0x098af8b5f794660179c8662f20bf03f3518110c015d60a2875ee97c8f9d89fa4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 65006.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dc40601e9edfb7d8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:14:23.000Z'}}, {'blockNum': '0xb070cc', 'uniqueId': '0x3ba52a8956772a550b21332389ec8d23867be96fa597d08f2da2c6e71245c86f:log:69', 'hash': '0x3ba52a8956772a550b21332389ec8d23867be96fa597d08f2da2c6e71245c86f', 'from': '0xf05f2aa4a4f883b2458ead1d082808ec8b371045', 'to': '0x11e0205ce7e4c6dceabf3019a38de4344c69ec06', 'value': 12522.210342336253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a6d493f8d74af59ef8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:35.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xaec9441f8a5c9ffa38bd09a136d5d8317724f10f26887b82baf859642a43bcab:log:101', 'hash': '0xaec9441f8a5c9ffa38bd09a136d5d8317724f10f26887b82baf859642a43bcab', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 58867.44045169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c7735d8edbed317a400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37:log:109', 'hash': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'value': 40718.85917455671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x089f5faff97f501330a2', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37:log:115', 'hash': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37', 'from': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 40718.85917455671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x089f5faff97f501330a2', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:187', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:189', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:193', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cf', 'uniqueId': '0xb7f02a1e51e83e308b607b294d7a3cc818adaed69ba5378f280dc23bc3ccd5fc:log:221', 'hash': '0xb7f02a1e51e83e308b607b294d7a3cc818adaed69ba5378f280dc23bc3ccd5fc', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x92818156fb6f4d496ac7d2c97496d6daaee88c21', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:03.000Z'}}, {'blockNum': '0xb070d0', 'uniqueId': '0x8ace6e7e55bc1bdf2c6aac385d38215120aab498f88172437b4b572f26edd0c1:log:226', 'hash': '0x8ace6e7e55bc1bdf2c6aac385d38215120aab498f88172437b4b572f26edd0c1', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xd859ecc3db5bd54d6e670100606f62d03c095436', 'value': 3960.072549134777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xd6ad0bea131207d4ea', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:12.000Z'}}, {'blockNum': '0xb070d1', 'uniqueId': '0x2d820a43cfd52e533aa9f5c0f88d6284b9990d089616d35f1683de6966e21164:log:59', 'hash': '0x2d820a43cfd52e533aa9f5c0f88d6284b9990d089616d35f1683de6966e21164', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:18.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:1', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65006.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dc40601e9edfb7d8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:3', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 22752.36565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d16880ab79b19f2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:10', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 42254.39335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08f29d813e7449de6000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d7', 'uniqueId': '0x24bec413f41fa5b9d06d7f6979eb9ea14db853c7b5bba66e202c3dd5fc61838d:log:137', 'hash': '0x24bec413f41fa5b9d06d7f6979eb9ea14db853c7b5bba66e202c3dd5fc61838d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x597cb045431f8da34e0ba935d0083e24710e5d62', 'value': 173487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x24bcc28c896b9c700000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:33.000Z'}}, {'blockNum': '0xb070d7', 'uniqueId': '0xbcdd861946ecfa86e19036916830f98fe5e360f49f0b26f2b17385435055730c:log:145', 'hash': '0xbcdd861946ecfa86e19036916830f98fe5e360f49f0b26f2b17385435055730c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:33.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972:log:0', 'hash': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972:log:5', 'hash': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764:log:13', 'hash': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'value': 63950.222731398106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d8abf9f0f67beaad9de', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764:log:14', 'hash': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764', 'from': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 63950.222731398106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d8abf9f0f67beaad9de', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070dc', 'uniqueId': '0xbe4bdfed166a5dbd31bcb2bac441e20a4baa71268c26d48626fc173f9580fc4e:log:48', 'hash': '0xbe4bdfed166a5dbd31bcb2bac441e20a4baa71268c26d48626fc173f9580fc4e', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 28191.09682218131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05f83e0f4cf10876b0ad', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:50.000Z'}}, {'blockNum': '0xb070dd', 'uniqueId': '0x5b6d5d054d5033f7f6c92ed668dafb755eb82a8bb01078ad79efceeb36e80978:log:19', 'hash': '0x5b6d5d054d5033f7f6c92ed668dafb755eb82a8bb01078ad79efceeb36e80978', 'from': '0x92818156fb6f4d496ac7d2c97496d6daaee88c21', 'to': '0x672c890388d818c77b407606faa7b5abbe8c7313', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:01.000Z'}}, {'blockNum': '0xb070de', 'uniqueId': '0x17a31ccb257257331e6dec79f83216e0b41579edddd063dfc5f4bd7c7be6e82d:log:52', 'hash': '0x17a31ccb257257331e6dec79f83216e0b41579edddd063dfc5f4bd7c7be6e82d', 'from': '0x597cb045431f8da34e0ba935d0083e24710e5d62', 'to': '0x5655fc94e524636d846bf64e287f24830666b603', 'value': 173487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x24bcc28c896b9c700000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:09.000Z'}}, {'blockNum': '0xb070de', 'uniqueId': '0xe7ad7eb476328dbc058cf9488e6f5775ef63bd81b86a4c61f8c82621d6f5e949:log:230', 'hash': '0xe7ad7eb476328dbc058cf9488e6f5775ef63bd81b86a4c61f8c82621d6f5e949', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 24770.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x053ed4e954b99c44a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:09.000Z'}}, {'blockNum': '0xb070df', 'uniqueId': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005:log:41', 'hash': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65419.64483571896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dda67f311f3fe6f24b1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:54.000Z'}}, {'blockNum': '0xb070df', 'uniqueId': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005:log:42', 'hash': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 65419.64483571896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dda67f311f3fe6f24b1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:54.000Z'}}, {'blockNum': '0xb070e6', 'uniqueId': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d:log:182', 'hash': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 63894.824060845305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d87becf720d5e3e0599', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:21:55.000Z'}}, {'blockNum': '0xb070e6', 'uniqueId': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d:log:183', 'hash': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 63894.824060845305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d87becf720d5e3e0599', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:21:55.000Z'}}, {'blockNum': '0xb07100', 'uniqueId': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf:log:88', 'hash': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf', 'from': '0x2ce5c5197b4605faf0cf1d1c3f9cf58fbd5db77d', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 45753.70145139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b05029008a1f6b6c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:27:53.000Z'}}, {'blockNum': '0xb07100', 'uniqueId': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf:log:90', 'hash': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 45753.70145139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b05029008a1f6b6c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:27:53.000Z'}}, {'blockNum': '0xb07108', 'uniqueId': '0x3907760f75742b122c224680ec3256fdeeda9248ba14eef8274a0c5ae6b91524:log:81', 'hash': '0x3907760f75742b122c224680ec3256fdeeda9248ba14eef8274a0c5ae6b91524', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 33649.52020544156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x072024e6b80cd97d04f5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:28:47.000Z'}}, {'blockNum': '0xb0710a', 'uniqueId': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351:log:200', 'hash': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 19178.027247771606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x040fa497bc4e1cd11db0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:29:05.000Z'}}, {'blockNum': '0xb0710a', 'uniqueId': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351:log:201', 'hash': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 19178.026527283888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x040fa4952d067e800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:29:05.000Z'}}, {'blockNum': '0xb0710f', 'uniqueId': '0xea8231350efacd7ae535ac23dd1f57c2e9a75bf802c8739658f28ca511e11456:log:128', 'hash': '0xea8231350efacd7ae535ac23dd1f57c2e9a75bf802c8739658f28ca511e11456', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 26478.493994819706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x059b66ebcf36fe7d194e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:08.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xbd3212208c096fd18bc1604f1e74381cb26db2296afc9f0eb00972854e6b58d8:log:124', 'hash': '0xbd3212208c096fd18bc1604f1e74381cb26db2296afc9f0eb00972854e6b58d8', 'from': '0x11e0205ce7e4c6dceabf3019a38de4344c69ec06', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12522.210342336253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a6d493f8d74af59ef8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xb81e4d1f5432e2b7c1b4699358d64f97a874ab4f52544a030454a1d6856c9fa4:log:125', 'hash': '0xb81e4d1f5432e2b7c1b4699358d64f97a874ab4f52544a030454a1d6856c9fa4', 'from': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xfd52af0604358a430ce2eeb0600d664520691f372fd5fa25d0d64ba545ba4caf:log:127', 'hash': '0xfd52af0604358a430ce2eeb0600d664520691f372fd5fa25d0d64ba545ba4caf', 'from': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 374743.8035042302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcc1552afcd64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x182c07a719870fcfb997ff2294d777b356a780363f92df0076a9e2b1b4ca0d69:log:129', 'hash': '0x182c07a719870fcfb997ff2294d777b356a780363f92df0076a9e2b1b4ca0d69', 'from': '0x672c890388d818c77b407606faa7b5abbe8c7313', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xd6f3727c5f7083e2218d0b58402054d360394b0c45b9ae79b30746cd56205751:log:131', 'hash': '0xd6f3727c5f7083e2218d0b58402054d360394b0c45b9ae79b30746cd56205751', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x5af9247d670f382fee5c3f00c5e54a900341abb2af889921f8f19b47ab8c3c71:log:135', 'hash': '0x5af9247d670f382fee5c3f00c5e54a900341abb2af889921f8f19b47ab8c3c71', 'from': '0x2e4ba6698b2c6549ca554785adb6e58186aff6c6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x5335adfd68da59fba3e5f89921184aeafe7a99bd0101a32d926358daf4a7e8a8:log:136', 'hash': '0x5335adfd68da59fba3e5f89921184aeafe7a99bd0101a32d926358daf4a7e8a8', 'from': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xaee7eea28fe7b4c9bf8dcf614cde2c47d7b83ce3eb8264d9ba17fdcb0c5c14f8:log:138', 'hash': '0xaee7eea28fe7b4c9bf8dcf614cde2c47d7b83ce3eb8264d9ba17fdcb0c5c14f8', 'from': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07112', 'uniqueId': '0x200183da79ae67572a75d5a9a942fe7ea3a26ed6de62bc21716667a47f588ce7:log:162', 'hash': '0x200183da79ae67572a75d5a9a942fe7ea3a26ed6de62bc21716667a47f588ce7', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:06.000Z'}}, {'blockNum': '0xb07113', 'uniqueId': '0xdfae12e1c25aac5fa4f56b96242f812fa46ae33166b2528abdc48e0440756b71:log:54', 'hash': '0xdfae12e1c25aac5fa4f56b96242f812fa46ae33166b2528abdc48e0440756b71', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:13.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3:log:60', 'hash': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3', 'from': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3:log:62', 'hash': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6:log:116', 'hash': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 21028.194797765216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0473f0d34c6aa0e97896', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6:log:117', 'hash': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 21028.193931490907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0473f0d0388b6c400000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07115', 'uniqueId': '0x49003ef73afbb2762b674bfbee7c7fb1d5edecdc6c966838637c46533fa4b147:log:65', 'hash': '0x49003ef73afbb2762b674bfbee7c7fb1d5edecdc6c966838637c46533fa4b147', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 12499.841773292255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a59e26d9cf29accd6a', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:47.000Z'}}, {'blockNum': '0xb07119', 'uniqueId': '0xad77eb98320b1428d8b8cc80a7635980dbb8adacd738de0f73484b6b7dcf141c:log:304', 'hash': '0xad77eb98320b1428d8b8cc80a7635980dbb8adacd738de0f73484b6b7dcf141c', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:06.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:10', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 129314.46889656427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b6226c284015cad2a4a', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:12', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 38794.34066896928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08370ba0c1339bcd8caf', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:19', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 90520.12822759499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x132b1b21c2cdc0df9d9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb07120', 'uniqueId': '0x96b79000261b5a8235ecfe6a60658ac5a2b73ec4770509905787e03712b884e2:log:224', 'hash': '0x96b79000261b5a8235ecfe6a60658ac5a2b73ec4770509905787e03712b884e2', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x50490a0beb4fa6505025d08cd51f6e1bedb7f3a7', 'value': 17510.051400537875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03b538c7208f931d9a1c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:33:16.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x98fd72652d7da886769bb4fe89e2a6f6dd585ade334cd2eca796350fcbc15080:log:254', 'hash': '0x98fd72652d7da886769bb4fe89e2a6f6dd585ade334cd2eca796350fcbc15080', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeaebc5aa6dc6309a91cb8aebb434668b2412b6de', 'value': 25691.540293606475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0570bdbea16bb8ccdb14', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942:log:261', 'hash': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xb8db34f834e9df42f2002ceb7b829dad89d08e14', 'value': 22467.90133903241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04c1fcc46bce8e1d0943', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942:log:263', 'hash': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942', 'from': '0xb8db34f834e9df42f2002ceb7b829dad89d08e14', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 22467.90133903241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04c1fcc46bce8e1d0943', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb0715d', 'uniqueId': '0x6e4a8bbf08de75320a78654cf112432c6500c9aedfef1e008d1e8d1b5631b350:log:293', 'hash': '0x6e4a8bbf08de75320a78654cf112432c6500c9aedfef1e008d1e8d1b5631b350', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:46:03.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x1a74605f5105b7c510d3c5aec91ade539b05cbd297c8840e65463b12974583aa:log:119', 'hash': '0x1a74605f5105b7c510d3c5aec91ade539b05cbd297c8840e65463b12974583aa', 'from': '0x50490a0beb4fa6505025d08cd51f6e1bedb7f3a7', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 17510.051400537875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03b538c7208f931d9a1c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35:log:128', 'hash': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'value': 17358.283368010663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03acfe92c3142ebef7c0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35:log:132', 'hash': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35', 'from': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 17358.283368010663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03acfe92c3142ebef7c0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb0716e', 'uniqueId': '0x68faa4d2bc0632a10f6e01c9a4c3a39bec8dca121ca3ee45c8ff6ad8cbd3098e:log:13', 'hash': '0x68faa4d2bc0632a10f6e01c9a4c3a39bec8dca121ca3ee45c8ff6ad8cbd3098e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:48:56.000Z'}}, {'blockNum': '0xb07171', 'uniqueId': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01:log:24', 'hash': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:50:08.000Z'}}, {'blockNum': '0xb07171', 'uniqueId': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01:log:29', 'hash': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:50:08.000Z'}}, {'blockNum': '0xb0717a', 'uniqueId': '0x1114f74a81757b9b51532ecd3e442a101ae4fa5928a4149e4966fad75b8d4b86:log:126', 'hash': '0x1114f74a81757b9b51532ecd3e442a101ae4fa5928a4149e4966fad75b8d4b86', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:51:24.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0xcf6dc6b2381cd1a970d5d2da7114fe5651776c43cbb3850a055ae044c68b2bc7:log:24', 'hash': '0xcf6dc6b2381cd1a970d5d2da7114fe5651776c43cbb3850a055ae044c68b2bc7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0x2d3fd09426a96b354c9a5396b0230deeca2424065fc0d88ac49567278e0c46ae:log:25', 'hash': '0x2d3fd09426a96b354c9a5396b0230deeca2424065fc0d88ac49567278e0c46ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 36703.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07c5b1ff3d0d70440000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0x2499ab99ed39169fc932073f01030a29f92a3e462fe616898fbb2fce86a3b848:log:26', 'hash': '0x2499ab99ed39169fc932073f01030a29f92a3e462fe616898fbb2fce86a3b848', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 24832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce4000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07184', 'uniqueId': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900:log:106', 'hash': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:54:06.000Z'}}, {'blockNum': '0xb07184', 'uniqueId': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900:log:111', 'hash': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:54:06.000Z'}}, {'blockNum': '0xb07187', 'uniqueId': '0x98544ee0f200eea4e9ed6ded50041b2ad2e2b0d4686c8d0230c23d4014c76e68:log:58', 'hash': '0x98544ee0f200eea4e9ed6ded50041b2ad2e2b0d4686c8d0230c23d4014c76e68', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 24832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce4000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:55:25.000Z'}}, {'blockNum': '0xb0718b', 'uniqueId': '0x63f98776d808a02d3c68e7c1fd3643db205a48be5739b254f3e4aa1669f52a37:log:100', 'hash': '0x63f98776d808a02d3c68e7c1fd3643db205a48be5739b254f3e4aa1669f52a37', 'from': '0x541e0950fad1688bfc02897d7bb66066f5333100', 'to': '0x233c09204a9bd98d2a80c3bf91a0fb37e9a96b16', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:03.000Z'}}, {'blockNum': '0xb07191', 'uniqueId': '0x88dcf35ca8575863106cce7e2dc5b11e167687f347de2acd3f979aeff1a95f6d:log:6', 'hash': '0x88dcf35ca8575863106cce7e2dc5b11e167687f347de2acd3f979aeff1a95f6d', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 36703.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07c5b1ff3d0d70440000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:44.000Z'}}, {'blockNum': '0xb07193', 'uniqueId': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784:log:15', 'hash': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'value': 14858.682853402133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03257da5d27e55b42bbb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:56.000Z'}}, {'blockNum': '0xb07193', 'uniqueId': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784:log:21', 'hash': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784', 'from': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 14858.682853402133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03257da5d27e55b42bbb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:56.000Z'}}, {'blockNum': '0xb07198', 'uniqueId': '0xf8af9784d3705c35bb98caa2233c9b895a39ed55d1ce50740cc846f27798b629:log:24', 'hash': '0xf8af9784d3705c35bb98caa2233c9b895a39ed55d1ce50740cc846f27798b629', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:57:38.000Z'}}, {'blockNum': '0xb0719b', 'uniqueId': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa:log:18', 'hash': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:58:00.000Z'}}, {'blockNum': '0xb0719b', 'uniqueId': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa:log:23', 'hash': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:58:00.000Z'}}, {'blockNum': '0xb071a0', 'uniqueId': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c:log:178', 'hash': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c', 'from': '0x233c09204a9bd98d2a80c3bf91a0fb37e9a96b16', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:59:29.000Z'}}, {'blockNum': '0xb071a0', 'uniqueId': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c:log:183', 'hash': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:59:29.000Z'}}, {'blockNum': '0xb071a5', 'uniqueId': '0x93f635e6a7e2fc17cd98a585accd70be02c2cd2e193bd679fd66cf124a54bd8e:log:230', 'hash': '0x93f635e6a7e2fc17cd98a585accd70be02c2cd2e193bd679fd66cf124a54bd8e', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:00:59.000Z'}}, {'blockNum': '0xb071aa', 'uniqueId': '0x4cb9a09cec9ff17841d7d536c610bbbd60d2874313694d46a649d1dc7dc970a2:log:74', 'hash': '0x4cb9a09cec9ff17841d7d536c610bbbd60d2874313694d46a649d1dc7dc970a2', 'from': '0xeaebc5aa6dc6309a91cb8aebb434668b2412b6de', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 25691.540293606475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0570bdbea16bb8ccdb14', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:02:15.000Z'}}, {'blockNum': '0xb071ee', 'uniqueId': '0xd49d98e356bac6e9afea08bf2f507dd4d4945da8543d779a7ec803131b5c7341:log:90', 'hash': '0xd49d98e356bac6e9afea08bf2f507dd4d4945da8543d779a7ec803131b5c7341', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xb038c7996493d4818a6df1c9db2b3f835a7f14c5', 'value': 28091.404705658024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05f2d68dc127b31d0f8f', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:18:42.000Z'}}, {'blockNum': '0xb071f2', 'uniqueId': '0x4442fbf3729f45deca8058432a8acf32e8cc7d8e5205464950f043496557029f:log:19', 'hash': '0x4442fbf3729f45deca8058432a8acf32e8cc7d8e5205464950f043496557029f', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:19:26.000Z'}}, {'blockNum': '0xb071f7', 'uniqueId': '0x29d9177a4ba781737dd6b4629fccdc2347c53fdceb814b7886e8b1ec048788da:log:14', 'hash': '0x29d9177a4ba781737dd6b4629fccdc2347c53fdceb814b7886e8b1ec048788da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 69366.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0eb0580450a6afa20000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:20:43.000Z'}}, {'blockNum': '0xb071f7', 'uniqueId': '0x0a842e7c14245472bd028e853e3634424882fc68162125a33833a2d92adb5588:log:22', 'hash': '0x0a842e7c14245472bd028e853e3634424882fc68162125a33833a2d92adb5588', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 798658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xa91f5641489035c80000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:20:43.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:25', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 69366.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0eb0580450a6afa20000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:27', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 24278.135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05241ece4f6d8a458000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:34', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 45087.965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x098c39360139255c8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb07202', 'uniqueId': '0x74600e4010d71114761714f1910e8bed013117cdd03fc2a30bee1dcd992391c0:log:1', 'hash': '0x74600e4010d71114761714f1910e8bed013117cdd03fc2a30bee1dcd992391c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:23:23.000Z'}}, {'blockNum': '0xb07206', 'uniqueId': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0:log:69', 'hash': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:24:03.000Z'}}, {'blockNum': '0xb07206', 'uniqueId': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0:log:74', 'hash': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:24:03.000Z'}}, {'blockNum': '0xb0720a', 'uniqueId': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66:log:262', 'hash': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 1938.7009858124068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x6918e182eb1820f7b5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:25:10.000Z'}}, {'blockNum': '0xb0720a', 'uniqueId': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66:log:263', 'hash': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xf81521e83369fd9b661b804ba342993b2bcef430', 'value': 1938.7009786893623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x6918e17c70a1980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:25:10.000Z'}}, {'blockNum': '0xb0722e', 'uniqueId': '0xabd8e07a1199f6562562f7ae4e0704885e43712fade8af3bf3df51577f75ca8b:log:0', 'hash': '0xabd8e07a1199f6562562f7ae4e0704885e43712fade8af3bf3df51577f75ca8b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8541390869ce254d4470ec3c8a1506d7c38b54e5', 'value': 14803.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03227a6447c5bf2a0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:34:28.000Z'}}, {'blockNum': '0xb0723a', 'uniqueId': '0x142d7a635881d3ea46fe0f319cf5698e1d834d4a3d6e3f2f4cc7ce3659839d05:log:258', 'hash': '0x142d7a635881d3ea46fe0f319cf5698e1d834d4a3d6e3f2f4cc7ce3659839d05', 'from': '0x8541390869ce254d4470ec3c8a1506d7c38b54e5', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 14803.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03227a6447c5bf2a0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:36:28.000Z'}}, {'blockNum': '0xb07259', 'uniqueId': '0x343e972e5f789cf612b3dff3c108327e005341e89ef426edef985993ec03c4c7:log:1', 'hash': '0x343e972e5f789cf612b3dff3c108327e005341e89ef426edef985993ec03c4c7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 83976.0842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x11c85a4707898d368000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:43:10.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:28', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 83976.0842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x11c85a4707898d368000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:30', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 20994.02105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04721691c1e2634da000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:37', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 62982.06315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5643b545a729e8e000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb072c5', 'uniqueId': '0x10904e8533f6dc42eab3961cc88a9f0d70392e88127719138bdb05ffaa122697:log:15', 'hash': '0x10904e8533f6dc42eab3961cc88a9f0d70392e88127719138bdb05ffaa122697', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 397794.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x543c78bbe1076e5e8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:06:30.000Z'}}, {'blockNum': '0xb07336', 'uniqueId': '0x5fda6100732dc6638f1b22be81ee258e554de76d10de97514e3f1dd3ff547720:log:18', 'hash': '0x5fda6100732dc6638f1b22be81ee258e554de76d10de97514e3f1dd3ff547720', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 884160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xbb3a68de3f8d5f000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:33:28.000Z'}}, {'blockNum': '0xb07336', 'uniqueId': '0xa832e459a97ff90401e67b9c7adf6adceb25e31380d28e72bce4ebba91ebd8f4:log:19', 'hash': '0xa832e459a97ff90401e67b9c7adf6adceb25e31380d28e72bce4ebba91ebd8f4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 884160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xbb3a68de3f8d5f000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:33:28.000Z'}}, {'blockNum': '0xb0735b', 'uniqueId': '0xcf7654001053893082cfcbc8e673a8d2494a274798c095a9f9012f531933617c:log:10', 'hash': '0xcf7654001053893082cfcbc8e673a8d2494a274798c095a9f9012f531933617c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa4f59c5fea4f76a09a91e8aa2afc49c328cd8230', 'value': 4709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xff4680b6a612740000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:42:17.000Z'}}, {'blockNum': '0xb0750d', 'uniqueId': '0x40cb2bb42ed0b0c4a4c3054258551e0d8d7650edf87658caa3b7a7869a1641c1:log:48', 'hash': '0x40cb2bb42ed0b0c4a4c3054258551e0d8d7650edf87658caa3b7a7869a1641c1', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x13edf543ea6e777c51b55b09c2a1d63f118f6dee', 'value': 10669.26445413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x024261c9c4d8709cf400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:20:47.000Z'}}, {'blockNum': '0xb07521', 'uniqueId': '0xa05230501dc76af3bc371bf85be59d53005c5d4d5f890abd0e51e7b1764787d8:log:1', 'hash': '0xa05230501dc76af3bc371bf85be59d53005c5d4d5f890abd0e51e7b1764787d8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:25:47.000Z'}}, {'blockNum': '0xb07523', 'uniqueId': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e:log:198', 'hash': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:26:13.000Z'}}, {'blockNum': '0xb07523', 'uniqueId': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e:log:203', 'hash': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:26:13.000Z'}}, {'blockNum': '0xb0754c', 'uniqueId': '0xa3d383ec169ee4e0ae4ff62c91d2b44c7a3bad29738fbb0e5d34f3991653d58e:log:7', 'hash': '0xa3d383ec169ee4e0ae4ff62c91d2b44c7a3bad29738fbb0e5d34f3991653d58e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 390350.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x52a8ebb84395f0410000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:34:43.000Z'}}, {'blockNum': '0xb07563', 'uniqueId': '0x8dbaf47b5af8c1ca4dc9be3db5331f9ec81e8403f28342c57f013e5ed6914339:log:25', 'hash': '0x8dbaf47b5af8c1ca4dc9be3db5331f9ec81e8403f28342c57f013e5ed6914339', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:38:58.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:97', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:99', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:100', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 28938.8061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0620c69c479587594000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:107', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 35369.6519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x077d64861e9a5017c000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb0757f', 'uniqueId': '0x3f99ed5a27a7e0d7d6b652dfa7aa69a02cc93162d9f66e72f7aa19df8e7eec0b:log:5', 'hash': '0x3f99ed5a27a7e0d7d6b652dfa7aa69a02cc93162d9f66e72f7aa19df8e7eec0b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:46:45.000Z'}}, {'blockNum': '0xb07585', 'uniqueId': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe:log:179', 'hash': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:47:26.000Z'}}, {'blockNum': '0xb07585', 'uniqueId': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe:log:184', 'hash': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:47:26.000Z'}}, {'blockNum': '0xb07588', 'uniqueId': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639:log:252', 'hash': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 837.5136115324192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2d66d61059f85704ec', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:48:03.000Z'}}, {'blockNum': '0xb07588', 'uniqueId': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639:log:255', 'hash': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x63945320845eb2d8208d848c5b528d9a5e4ec33d', 'value': 837.5136115324192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2d66d61059f85704ec', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:48:03.000Z'}}, {'blockNum': '0xb07599', 'uniqueId': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46:log:136', 'hash': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46', 'from': '0x93972cb878afe60e66d14ad98c779ce9fdc1f356', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:51:56.000Z'}}, {'blockNum': '0xb07599', 'uniqueId': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46:log:138', 'hash': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:51:56.000Z'}}, {'blockNum': '0xb075a0', 'uniqueId': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003:log:131', 'hash': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:00.000Z'}}, {'blockNum': '0xb075a0', 'uniqueId': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003:log:132', 'hash': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:00.000Z'}}, {'blockNum': '0xb075a3', 'uniqueId': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6:log:17', 'hash': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:29.000Z'}}, {'blockNum': '0xb075a3', 'uniqueId': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6:log:19', 'hash': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:29.000Z'}}, {'blockNum': '0xb075c4', 'uniqueId': '0xee120afc7beea5fe015e66152bcbe6633f7f4eacac65211a096cffec31df01b4:log:184', 'hash': '0xee120afc7beea5fe015e66152bcbe6633f7f4eacac65211a096cffec31df01b4', 'from': '0xb4fee33a0edef5a7fb0da42a9b8fe3b4f73dfb8b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22863.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d773f85871ae58a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T22:00:22.000Z'}}, {'blockNum': '0xb076f0', 'uniqueId': '0x2c75e5d81215ce25312ad865d60c3697e8d6815b8deb8c64c0056a2ebeec4630:log:15', 'hash': '0x2c75e5d81215ce25312ad865d60c3697e8d6815b8deb8c64c0056a2ebeec4630', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:11:29.000Z'}}, {'blockNum': '0xb076f6', 'uniqueId': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9:log:236', 'hash': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:13:02.000Z'}}, {'blockNum': '0xb076f6', 'uniqueId': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9:log:241', 'hash': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:13:02.000Z'}}, {'blockNum': '0xb0770b', 'uniqueId': '0x484f7eddcdc67ff80f81c0d71eba63a312296c9edfb89dcebe7900fdbcef3ee5:log:0', 'hash': '0x484f7eddcdc67ff80f81c0d71eba63a312296c9edfb89dcebe7900fdbcef3ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:24.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:212', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:214', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:218', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 72375.7918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0f537fe18ab875a38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:221', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 38971.5802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0840a7520f9e66ba8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:87', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x8a2b589bfd3db6659deda06006e6d65951103360', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 17186.281028565863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03a3ab8fb2a9476509b3', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:89', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x11ededebf63bef0ea2d2d071bdf88f71543ec6fb', 'value': 150.37995899995133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0826f0eff699e79aa5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:90', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 17035.901069565913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x039b849ec2b2ad7d6f0e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea:log:235', 'hash': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea:log:236', 'hash': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x0489076a0d17394835af93cd62acff703b6814a9', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79:log:240', 'hash': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 33353.990790631324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07101f9b530fee5c4187', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79:log:246', 'hash': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 33353.990790631324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07101f9b530fee5c4187', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb07819', 'uniqueId': '0xa029bfd55bdef7b354c0a6e9826be2f36eb8a3b7e63561ac92f08caf166d8838:log:23', 'hash': '0xa029bfd55bdef7b354c0a6e9826be2f36eb8a3b7e63561ac92f08caf166d8838', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xae20a4f057acdd672bb51071d52321d8a7565d1b', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:13:24.000Z'}}, {'blockNum': '0xb07828', 'uniqueId': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4:log:241', 'hash': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4', 'from': '0xae20a4f057acdd672bb51071d52321d8a7565d1b', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:16:33.000Z'}}, {'blockNum': '0xb07828', 'uniqueId': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4:log:243', 'hash': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:16:33.000Z'}}, {'blockNum': '0xb079ca', 'uniqueId': '0xdb2d54f076de629c3d9eb0c1a79cc7c8db814293b868495ff806668669abeacb:log:8', 'hash': '0xdb2d54f076de629c3d9eb0c1a79cc7c8db814293b868495ff806668669abeacb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x44742ce969585e16640cc4bf81308618ed4fec1b', 'value': 7214.977391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x01871fecde86a5a1f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T01:48:13.000Z'}}, {'blockNum': '0xb07af2', 'uniqueId': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5:log:161', 'hash': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 36500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07baab4146b63dd00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T02:47:14.000Z'}}, {'blockNum': '0xb07af2', 'uniqueId': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5:log:166', 'hash': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 36500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07baab4146b63dd00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T02:47:14.000Z'}}]}}
Number of returned transfers:  250
Answer is complete
 
symbol            NEBL
group              BPF
date        2021-01-02
hour             21:00
exchange       binance
Name: 869, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2021-01-02 21:00:00 2021-01-02 09:00:00 2021-01-03 09:00:00
Unix timestamps:  1609574400.0 1609660800.0
Hex Block Numbers:  0xb09a05 0xb0b35c
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             MDA
group              BPF
date        2021-01-03
hour             17:00
exchange       binance
Name: 870, dtype: object
HERE
 Symbol: MDA, Contract: 0x51db5ad35c671a87207d88fc11d593ac0c8415bd
Datetime timestamps:  2021-01-03 17:00:00 2021-01-03 05:00:00 2021-01-04 05:00:00
Unix timestamps:  1609646400.0 1609732800.0
Hex Block Numbers:  0xb0af5a 0xb0c8c4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb0af7f', 'uniqueId': '0x056c0f9a11113370cdf185af0d3c15931a5c83017daa63b2efb4c8b0e27a9d9d:log:0', 'hash': '0x056c0f9a11113370cdf185af0d3c15931a5c83017daa63b2efb4c8b0e27a9d9d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x021afda9886dce1cca8cecd130e4f2891b2b91d1', 'value': 124.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x06c4d997efd7268000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T04:09:34.000Z'}}, {'blockNum': '0xb0b05c', 'uniqueId': '0x45d8ea3f0bce32a9f94964cf0ee445e5107a24247e3ccd0f8f8adcb6a8194704:log:4', 'hash': '0x45d8ea3f0bce32a9f94964cf0ee445e5107a24247e3ccd0f8f8adcb6a8194704', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf5721f2a084c5c3b7302a19d78d931ddbfb256a1', 'value': 127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x06e27aa3200a9c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T05:04:54.000Z'}}, {'blockNum': '0xb0b366', 'uniqueId': '0x17301abfbbc2a7f57323f80a8f2dc58fb320678cd2f084c4336df9df92bfa90b:log:15', 'hash': '0x17301abfbbc2a7f57323f80a8f2dc58fb320678cd2f084c4336df9df92bfa90b', 'from': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x029167eec8667a1c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T08:01:47.000Z'}}, {'blockNum': '0xb0b3e3', 'uniqueId': '0xad04470e8a7ae9013a3ae4439d0788f62e3c38780ea98e3edc173ec15c71a62b:log:292', 'hash': '0xad04470e8a7ae9013a3ae4439d0788f62e3c38780ea98e3edc173ec15c71a62b', 'from': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'to': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T08:26:35.000Z'}}, {'blockNum': '0xb0b3f5', 'uniqueId': '0x0581b42c6a335508abca5c88e05fea386eed082e3e563109ef339fc3f8638510:log:125', 'hash': '0x0581b42c6a335508abca5c88e05fea386eed082e3e563109ef339fc3f8638510', 'from': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T08:30:38.000Z'}}, {'blockNum': '0xb0b95b', 'uniqueId': '0x6b7f7aa78ed558d9c2cd057c9613d5ea40c7927a891b3f4532624b20cc667ea6:log:323', 'hash': '0x6b7f7aa78ed558d9c2cd057c9613d5ea40c7927a891b3f4532624b20cc667ea6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 7753.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a44ea6f7418c220000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T13:28:15.000Z'}}, {'blockNum': '0xb0b95b', 'uniqueId': '0xf6a3e6ca702c3cff833561e0405f03393cb56ada4adc4a8fce66d1d0dbc7f4e5:log:327', 'hash': '0xf6a3e6ca702c3cff833561e0405f03393cb56ada4adc4a8fce66d1d0dbc7f4e5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9970489e171254210edc739ac2577730a037755f', 'value': 5470.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x012888e3182b08420000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T13:28:15.000Z'}}, {'blockNum': '0xb0b95b', 'uniqueId': '0x0bb5d0e88643577f2288ef7c368aa65a379dcacec318afc97e0ec93d4c0c405b:log:329', 'hash': '0x0bb5d0e88643577f2288ef7c368aa65a379dcacec318afc97e0ec93d4c0c405b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x702188aab6bd5412eb0104b2f92d6de23f4dcf1f', 'value': 6844.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x017304f7b06772fa0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T13:28:15.000Z'}}, {'blockNum': '0xb0b961', 'uniqueId': '0x1c038604029b34f8ff924b75bc89a57e6c06be7a6789c3761bd400a089c303a8:log:305', 'hash': '0x1c038604029b34f8ff924b75bc89a57e6c06be7a6789c3761bd400a089c303a8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 4955.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010ca360a2a2c03e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T13:28:54.000Z'}}, {'blockNum': '0xb0bb05', 'uniqueId': '0xb510d3e674285b1889e52dc08a548707a77c2d8a426e52b308ff8c43b690bcba:log:127', 'hash': '0xb510d3e674285b1889e52dc08a548707a77c2d8a426e52b308ff8c43b690bcba', 'from': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7753.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a44ea6f7418c220000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:01:28.000Z'}}, {'blockNum': '0xb0bb71', 'uniqueId': '0xbf5d7e7c0fbf79f79d1faf3a26f6433b8fed2ec35b5cc13469f5d7dc29a521cc:log:186', 'hash': '0xbf5d7e7c0fbf79f79d1faf3a26f6433b8fed2ec35b5cc13469f5d7dc29a521cc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 6999.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x017b77207af0b8d60000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:23:34.000Z'}}, {'blockNum': '0xb0bbb1', 'uniqueId': '0x355af07a347da5347c49efa73ac795555de629325894ba6ebfe88b89f647dc6a:log:116', 'hash': '0x355af07a347da5347c49efa73ac795555de629325894ba6ebfe88b89f647dc6a', 'from': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6999.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x017b77207af0b8d60000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:37:13.000Z'}}, {'blockNum': '0xb0bbe7', 'uniqueId': '0x74c95932b8832011b4ac107741f0684d6494fea4b23231c0be1d49e1e135c524:log:199', 'hash': '0x74c95932b8832011b4ac107741f0684d6494fea4b23231c0be1d49e1e135c524', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 7166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0184783a38e7a1380000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:49:22.000Z'}}, {'blockNum': '0xb0bbf7', 'uniqueId': '0x5a5820c5080bf392d07502da066a76fbc0d89bcfbfed1f106574047fa33159a0:log:80', 'hash': '0x5a5820c5080bf392d07502da066a76fbc0d89bcfbfed1f106574047fa33159a0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9970489e171254210edc739ac2577730a037755f', 'value': 5186.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0119239868dd55520000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:52:41.000Z'}}, {'blockNum': '0xb0bbf8', 'uniqueId': '0x63479339a535434a2663a925812fe66060a16fe21e7807d8796ea23cabdd3b22:log:46', 'hash': '0x63479339a535434a2663a925812fe66060a16fe21e7807d8796ea23cabdd3b22', 'from': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'to': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:52:44.000Z'}}, {'blockNum': '0xb0bc08', 'uniqueId': '0xbb33409281fa584bdf002b3611f6ee17dbd104da83b83c15b033b8e8f3706c88:log:204', 'hash': '0xbb33409281fa584bdf002b3611f6ee17dbd104da83b83c15b033b8e8f3706c88', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 7779.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a5b8dccaf8e9d40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:55:41.000Z'}}, {'blockNum': '0xb0bc0b', 'uniqueId': '0x09f646cc1d413e65145287b19c4c8e09eac5a5b21d4299ad94d438ab21ef83e5:log:206', 'hash': '0x09f646cc1d413e65145287b19c4c8e09eac5a5b21d4299ad94d438ab21ef83e5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x702188aab6bd5412eb0104b2f92d6de23f4dcf1f', 'value': 7063.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x017ee6fa8708609a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T15:56:42.000Z'}}, {'blockNum': '0xb0bcb4', 'uniqueId': '0x1fa58870e541e26080006074c4799840d47a328ebc6833d0871217215d618093:log:206', 'hash': '0x1fa58870e541e26080006074c4799840d47a328ebc6833d0871217215d618093', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa77c77d0fda651bbc15a3a1a6ea4ab905e4ef422', 'value': 1495.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x51123b4e805cae0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:40:11.000Z'}}, {'blockNum': '0xb0bcb5', 'uniqueId': '0x3fc857d5e4ed5ac306746b6e632771243219d5c8cc15f1aa366efa1a709a9b68:log:148', 'hash': '0x3fc857d5e4ed5ac306746b6e632771243219d5c8cc15f1aa366efa1a709a9b68', 'from': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'to': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:40:31.000Z'}}, {'blockNum': '0xb0bcbc', 'uniqueId': '0x2f9dc86cb901c3d948598ebd029b5ba33a1dfd37b6890374191a64c490dc7391:log:242', 'hash': '0x2f9dc86cb901c3d948598ebd029b5ba33a1dfd37b6890374191a64c490dc7391', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'value': 14881.479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0326ba02010b8b4d8000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:42:56.000Z'}}, {'blockNum': '0xb0bcc5', 'uniqueId': '0xff06c55fb6bd5a83085e468e33cf234fff8e1b0b1183d97a096371bfaf1d7252:log:92', 'hash': '0xff06c55fb6bd5a83085e468e33cf234fff8e1b0b1183d97a096371bfaf1d7252', 'from': '0x637dfddd8219c39974b367dfb2557d3aa814f20c', 'to': '0x5458074d2747a65d853eeef1e8e9035cb3992877', 'value': 39000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x084231b97924ea600000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:44:54.000Z'}}, {'blockNum': '0xb0bcde', 'uniqueId': '0x4b7686a15bf760e609e5933fc5a5e6afb2c6a8162b20d9e8545d530668dafea7:log:201', 'hash': '0x4b7686a15bf760e609e5933fc5a5e6afb2c6a8162b20d9e8545d530668dafea7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 6824.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0171f0ccafd6bcb40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:48:17.000Z'}}, {'blockNum': '0xb0bcde', 'uniqueId': '0x36112a8911b38e7855072ae7cec1e0b4d275eb69d3789c78cf54c54f3fe880aa:log:208', 'hash': '0x36112a8911b38e7855072ae7cec1e0b4d275eb69d3789c78cf54c54f3fe880aa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5aa8cf233e40e08fbe99095c35e1b68d5550c1fa', 'value': 11728.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x027bcda261be68f20000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:48:17.000Z'}}, {'blockNum': '0xb0bcdf', 'uniqueId': '0x1320cb8d94a7137a9662eff13d00f8d23ef9375834f0ca3b93c318c824763f00:log:192', 'hash': '0x1320cb8d94a7137a9662eff13d00f8d23ef9375834f0ca3b93c318c824763f00', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9aa32cadf2f3e7d360385105fd0b22f576e32cfe', 'value': 7314.7316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x018c884b03174cb50000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:48:42.000Z'}}, {'blockNum': '0xb0bce5', 'uniqueId': '0x6ee848c130118fbd14b563fc812bec32e83f2e17dd0e57eeb1c63765d84ef22c:log:131', 'hash': '0x6ee848c130118fbd14b563fc812bec32e83f2e17dd0e57eeb1c63765d84ef22c', 'from': '0x9970489e171254210edc739ac2577730a037755f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13911.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x02f2279ee2a789c20000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:49:44.000Z'}}, {'blockNum': '0xb0bcee', 'uniqueId': '0x768f80e96b611bc06d99e81eb2aabad30610d0f49629a2faa814155d704e74da:log:288', 'hash': '0x768f80e96b611bc06d99e81eb2aabad30610d0f49629a2faa814155d704e74da', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5aa8cf233e40e08fbe99095c35e1b68d5550c1fa', 'value': 4175.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xe25ab3f740bb8e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:52:08.000Z'}}, {'blockNum': '0xb0bcf6', 'uniqueId': '0xbac5fe130af5838eebd3c7ca7905f338cc462fad2d63e6325802fdbe25b36d43:log:199', 'hash': '0xbac5fe130af5838eebd3c7ca7905f338cc462fad2d63e6325802fdbe25b36d43', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 1374.25354311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x4a7f995c59e9843c00', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:53:20.000Z'}}, {'blockNum': '0xb0bcf6', 'uniqueId': '0xb65fe07abb3544442c7fb0fd92b19ef3548bb0aac50761772a491a959ce5b82c:log:288', 'hash': '0xb65fe07abb3544442c7fb0fd92b19ef3548bb0aac50761772a491a959ce5b82c', 'from': '0x744fdd3366652120d970f59a2799ae88f08a44f0', 'to': '0x5458074d2747a65d853eeef1e8e9035cb3992877', 'value': 99900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x15279700831d93700000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:53:20.000Z'}}, {'blockNum': '0xb0bd00', 'uniqueId': '0x3f39c247faca6b47dc73bcedc87162090dab2cc55c7a4a6fb14c79c4408ec25b:log:88', 'hash': '0x3f39c247faca6b47dc73bcedc87162090dab2cc55c7a4a6fb14c79c4408ec25b', 'from': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:55:22.000Z'}}, {'blockNum': '0xb0bd02', 'uniqueId': '0xa252ee7e534eaac0900a0e920a1940302928167ee7e52ca7ad299142700b05a3:log:222', 'hash': '0xa252ee7e534eaac0900a0e920a1940302928167ee7e52ca7ad299142700b05a3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 714.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x26b7841c0197fc0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:55:48.000Z'}}, {'blockNum': '0xb0bd09', 'uniqueId': '0x36640e2ad2fd88ed3d7b69de56757d7811a79a78519d7a923de07cf1b3cf3fcd:log:237', 'hash': '0x36640e2ad2fd88ed3d7b69de56757d7811a79a78519d7a923de07cf1b3cf3fcd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'value': 4381.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xed84002f66a0bb0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:57:33.000Z'}}, {'blockNum': '0xb0bd09', 'uniqueId': '0x788b4677e88bd15cbce116b38f4a6cffbdc3db34dc084bb075455d22ee5b1877:log:239', 'hash': '0x788b4677e88bd15cbce116b38f4a6cffbdc3db34dc084bb075455d22ee5b1877', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8051cd54161d25bc37134dbcbc09af514c0255d8', 'value': 14256.3339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0304d66074c17b40c000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:57:33.000Z'}}, {'blockNum': '0xb0bd09', 'uniqueId': '0x32f85d754d6a50f2ce5f253a01addae43afa8306fea00d13a305028f27724cd3:log:243', 'hash': '0x32f85d754d6a50f2ce5f253a01addae43afa8306fea00d13a305028f27724cd3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x4275fe065175d66bf0e7d79a2587b88512b1597a', 'value': 2852.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x9aa3c70a47074c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:57:33.000Z'}}, {'blockNum': '0xb0bd0a', 'uniqueId': '0xde7b976ebe9c5866028be040c576bf0b415116ce2d6e77e37669969f8cfefbd4:log:171', 'hash': '0xde7b976ebe9c5866028be040c576bf0b415116ce2d6e77e37669969f8cfefbd4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 7748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a4051995562e900000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:57:36.000Z'}}, {'blockNum': '0xb0bd0d', 'uniqueId': '0x9c26778b908e28bf6ea59be437a79f1d25b7af8839683cf5f97dc39ac5c759d1:log:248', 'hash': '0x9c26778b908e28bf6ea59be437a79f1d25b7af8839683cf5f97dc39ac5c759d1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 4326.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xea8d064629329e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T16:58:01.000Z'}}, {'blockNum': '0xb0bd1a', 'uniqueId': '0xb19acab4e737b94c83fa2e3fc124e74fb8c4c9b27b7f205b2b162371ef750a90:log:68', 'hash': '0xb19acab4e737b94c83fa2e3fc124e74fb8c4c9b27b7f205b2b162371ef750a90', 'from': '0xbe68fe9f0ac8d88dc3f81b6263e47a3754bed711', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x152ce70673e3a7b80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:00:55.000Z'}}, {'blockNum': '0xb0bd1a', 'uniqueId': '0xfd165c4975b138bbaf1b0be1537bf9aea5dbc306e4cba0a1c1a2f6961fb2e56a:log:69', 'hash': '0xfd165c4975b138bbaf1b0be1537bf9aea5dbc306e4cba0a1c1a2f6961fb2e56a', 'from': '0x5458074d2747a65d853eeef1e8e9035cb3992877', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 138900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1d69c8b9fc427dd00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:00:55.000Z'}}, {'blockNum': '0xb0bd1a', 'uniqueId': '0x7a569961bc2cc3c3fb5987b40a349451de01f8a9d9baa62f8e3363c9984c91c3:log:76', 'hash': '0x7a569961bc2cc3c3fb5987b40a349451de01f8a9d9baa62f8e3363c9984c91c3', 'from': '0x9aa32cadf2f3e7d360385105fd0b22f576e32cfe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7314.7316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x018c884b03174cb50000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:00:55.000Z'}}, {'blockNum': '0xb0bd24', 'uniqueId': '0x0843dc0e6eb3f0b28cf32f1e9d143742e51654d843cc035cbdae360485936066:log:241', 'hash': '0x0843dc0e6eb3f0b28cf32f1e9d143742e51654d843cc035cbdae360485936066', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa77c77d0fda651bbc15a3a1a6ea4ab905e4ef422', 'value': 1995.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6c2e836adba9880000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:03:02.000Z'}}, {'blockNum': '0xb0bd24', 'uniqueId': '0xaa1765f3ea8d3ac47b4f2b2c01622f3843facc142ee1f1dad08deefd5b4152c2:log:247', 'hash': '0xaa1765f3ea8d3ac47b4f2b2c01622f3843facc142ee1f1dad08deefd5b4152c2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'value': 4946.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x010c241e403871e90000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:03:02.000Z'}}, {'blockNum': '0xb0bd43', 'uniqueId': '0x9d0cd4266cb597566c8d676997a65f95bdceba0ecc7764da2c35b74b77692b94:log:119', 'hash': '0x9d0cd4266cb597566c8d676997a65f95bdceba0ecc7764da2c35b74b77692b94', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2cbfb6e19ec316c46ae2a777c8fffe91bdcd334e', 'value': 386.603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x14f531c43084578000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:10:15.000Z'}}, {'blockNum': '0xb0bd51', 'uniqueId': '0x093d35ef5daf7be822d9e2a3581f2a8638c0820c4d66c338cd5e5e0063ea5326:log:9', 'hash': '0x093d35ef5daf7be822d9e2a3581f2a8638c0820c4d66c338cd5e5e0063ea5326', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63675b1f88cf053a19e721221a93afb81e04f380', 'value': 7305.0316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x018c01adb07bdb6b0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:12:50.000Z'}}, {'blockNum': '0xb0bd59', 'uniqueId': '0x0a136c7addad2f4ace0e172ca4991ba6952fa358003bc69b9725836d6e3859ff:log:27', 'hash': '0x0a136c7addad2f4ace0e172ca4991ba6952fa358003bc69b9725836d6e3859ff', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01e72fadd4d5538c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:16:30.000Z'}}, {'blockNum': '0xb0bd84', 'uniqueId': '0xf64b0bda2a530674050c3dca08bab5e0747420bf9614cd918da4b0830a45e35f:log:11', 'hash': '0xf64b0bda2a530674050c3dca08bab5e0747420bf9614cd918da4b0830a45e35f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 68241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0e735a1e27afb7a40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:26:08.000Z'}}, {'blockNum': '0xb0bd84', 'uniqueId': '0x21a541ff5ad17d1cf9d67170d485bb9c0d669348ad1ddc2c9167442bc5ada9a5:log:12', 'hash': '0x21a541ff5ad17d1cf9d67170d485bb9c0d669348ad1ddc2c9167442bc5ada9a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 70825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0eff6e524d1151040000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:26:08.000Z'}}, {'blockNum': '0xb0bd98', 'uniqueId': '0x78d1bd5c452b8210b7c7c108b4fba9a5681e54c865b31984c85bef8bfe50ec52:log:8', 'hash': '0x78d1bd5c452b8210b7c7c108b4fba9a5681e54c865b31984c85bef8bfe50ec52', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 7947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01aecec79afd4d4c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:30:54.000Z'}}, {'blockNum': '0xb0bdaf', 'uniqueId': '0x9a3ed5a0c4365c16ef8a0630658c4923aa501b11a92cf4ec0cc96fa233cc41c4:log:72', 'hash': '0x9a3ed5a0c4365c16ef8a0630658c4923aa501b11a92cf4ec0cc96fa233cc41c4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 9156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01f05906716ed4900000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:34:54.000Z'}}, {'blockNum': '0xb0bde8', 'uniqueId': '0xa56ba10d6d5792cbb32d0b032873d72135b1d24a9027bb4b7b374d3d84161258:log:2', 'hash': '0xa56ba10d6d5792cbb32d0b032873d72135b1d24a9027bb4b7b374d3d84161258', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 11996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x028a4df14a77d1f00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:46:10.000Z'}}, {'blockNum': '0xb0bdeb', 'uniqueId': '0x427862a71fbf8a482adf88db8aee964c5a33eb74a35ecaa85ce1f49dc871c0d8:log:18', 'hash': '0x427862a71fbf8a482adf88db8aee964c5a33eb74a35ecaa85ce1f49dc871c0d8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 6365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01590c1e90c8e1540000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:47:10.000Z'}}, {'blockNum': '0xb0bdf8', 'uniqueId': '0x1411f6866d20ad84c557ea1892b04743e45a95a6fa2cb4091135d90bd131cab3:log:33', 'hash': '0x1411f6866d20ad84c557ea1892b04743e45a95a6fa2cb4091135d90bd131cab3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x72a9906fce1f9b5b89c7ee44761960ed249fb572', 'value': 1986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6ba9495db895c80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T17:49:27.000Z'}}, {'blockNum': '0xb0be2e', 'uniqueId': '0xcba25963bceebbcaa266daba732a226c53798c6940293a891cbc704eaf7d91a6:log:37', 'hash': '0xcba25963bceebbcaa266daba732a226c53798c6940293a891cbc704eaf7d91a6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01bd8d89b9df278c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:01:42.000Z'}}, {'blockNum': '0xb0beb2', 'uniqueId': '0xa45642b5b2374f4dac22122e088aa387f87075a711f7f4b21e3913dbbf05e3b3:log:15', 'hash': '0xa45642b5b2374f4dac22122e088aa387f87075a711f7f4b21e3913dbbf05e3b3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01ba077b5641a7280000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:28:38.000Z'}}, {'blockNum': '0xb0bec7', 'uniqueId': '0x0015bf0f49432b6db35f9da0ff58a06a1d123d05a2e0e1a7f6a0274866e4a8f6:log:172', 'hash': '0x0015bf0f49432b6db35f9da0ff58a06a1d123d05a2e0e1a7f6a0274866e4a8f6', 'from': '0x5aa8cf233e40e08fbe99095c35e1b68d5550c1fa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x035e285658ff24800000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:32:45.000Z'}}, {'blockNum': '0xb0becb', 'uniqueId': '0xa460c135546496331ada3b88945fbce74d4834707c70a57c85380a8e97f35231:log:9', 'hash': '0xa460c135546496331ada3b88945fbce74d4834707c70a57c85380a8e97f35231', 'from': '0x593065a46a507dc0da5146020efc1476067aab8c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9282.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01f73066e8cbf2dc0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:33:26.000Z'}}, {'blockNum': '0xb0bf18', 'uniqueId': '0x1067e2900bfc34cb5ffb06d81a45f8c464b7d4cd669468c21cead84f5ca03cfe:log:279', 'hash': '0x1067e2900bfc34cb5ffb06d81a45f8c464b7d4cd669468c21cead84f5ca03cfe', 'from': '0x9970489e171254210edc739ac2577730a037755f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5186.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0119239868dd55520000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T18:47:43.000Z'}}, {'blockNum': '0xb0bf4f', 'uniqueId': '0x5c3c6261d4fa0e46f0289c8f9a942b67b9b7f9476a53ffec0ff2e74ee16adfa4:log:0', 'hash': '0x5c3c6261d4fa0e46f0289c8f9a942b67b9b7f9476a53ffec0ff2e74ee16adfa4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8166d621bd886b41d10590165f07275d14dd63be', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x8ac7230489e80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T19:02:33.000Z'}}, {'blockNum': '0xb0bf67', 'uniqueId': '0x2e1add5389a8f4db3cb3f0a8f5ade64cdb2ab71d134bb3e2b19d3de234eb2a73:log:39', 'hash': '0x2e1add5389a8f4db3cb3f0a8f5ade64cdb2ab71d134bb3e2b19d3de234eb2a73', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8166d621bd886b41d10590165f07275d14dd63be', 'value': 2008.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x6cdc58b57e12130000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T19:09:13.000Z'}}, {'blockNum': '0xb0c092', 'uniqueId': '0x57a6c70fcbea323b05209f2e3c8fa01f0ff74100160a56c61cc2a803d0ad8f29:log:18', 'hash': '0x57a6c70fcbea323b05209f2e3c8fa01f0ff74100160a56c61cc2a803d0ad8f29', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x298a338e98a4f5a6d09dae82158836343ce5ed16', 'value': 5586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x012ed1529c1a84080000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:11:31.000Z'}}, {'blockNum': '0xb0c136', 'uniqueId': '0x0458daf0fe8b348dc1ef6e6c7789a03c3848a9adca9993f87b2561bc91b3e7ea:log:43', 'hash': '0x0458daf0fe8b348dc1ef6e6c7789a03c3848a9adca9993f87b2561bc91b3e7ea', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'value': 138890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x1d693df2d93df3e80000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:45:33.000Z'}}, {'blockNum': '0xb0c146', 'uniqueId': '0x51359f8af0841c37903e4af322a9fa42781d3a88992366155b64eca4abc4eca0:log:0', 'hash': '0x51359f8af0841c37903e4af322a9fa42781d3a88992366155b64eca4abc4eca0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'value': 63990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0d8ce7a44e731e180000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:50:15.000Z'}}, {'blockNum': '0xb0c156', 'uniqueId': '0x8a63e8b730a1eef65f0f541041fd173fc9c18f004c02bcd18760e201b1773190:log:0', 'hash': '0x8a63e8b730a1eef65f0f541041fd173fc9c18f004c02bcd18760e201b1773190', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x44d2753cde48dd1e973537c82ce96b1af5a5126b', 'value': 209990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x2c7794a9694c15580000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:53:49.000Z'}}, {'blockNum': '0xb0c16c', 'uniqueId': '0x27be726c520eef8cfb4113d32960ec81f12ccb8815d4a174c10346804ed3de69:log:3', 'hash': '0x27be726c520eef8cfb4113d32960ec81f12ccb8815d4a174c10346804ed3de69', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 75164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0feaa60af40f74f00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T20:58:52.000Z'}}, {'blockNum': '0xb0c196', 'uniqueId': '0x9c90fe4cafd4d6ca665082df880f03f7ef23f458949d78876a166954cbb79dad:log:142', 'hash': '0x9c90fe4cafd4d6ca665082df880f03f7ef23f458949d78876a166954cbb79dad', 'from': '0xa898987c66463684f935ff77d7a976ae7a81fef7', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 3017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0xa38d492b3fb9840000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T21:09:21.000Z'}}, {'blockNum': '0xb0c2b3', 'uniqueId': '0x79f5ecc54289e3303ead2ade76db2ad390b6828887697e26f60cfdd8ec079074:log:199', 'hash': '0x79f5ecc54289e3303ead2ade76db2ad390b6828887697e26f60cfdd8ec079074', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9970489e171254210edc739ac2577730a037755f', 'value': 1922.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x68327ef6471a520000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:18:28.000Z'}}, {'blockNum': '0xb0c2b3', 'uniqueId': '0x8e93302ff5e10a0fa6eba6f1fd89273a3d6c05a65018bf1cd5eb501af368e506:log:201', 'hash': '0x8e93302ff5e10a0fa6eba6f1fd89273a3d6c05a65018bf1cd5eb501af368e506', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 16326.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x03751540f6605d320000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:18:28.000Z'}}, {'blockNum': '0xb0c2b3', 'uniqueId': '0x055813142f5650bbae7b9c08db0a1a9b67bea613a6ad816432a110e316fa2db0:log:202', 'hash': '0x055813142f5650bbae7b9c08db0a1a9b67bea613a6ad816432a110e316fa2db0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 9164.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01f0d4899847598a0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:18:28.000Z'}}, {'blockNum': '0xb0c2ba', 'uniqueId': '0xec35b06e4fbe05edb7155d3a5e8c3cb4e811e440e79f4a4fb4bea8c8904205c8:log:129', 'hash': '0xec35b06e4fbe05edb7155d3a5e8c3cb4e811e440e79f4a4fb4bea8c8904205c8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 8148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01b9b4370e0bbad00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:21:09.000Z'}}, {'blockNum': '0xb0c2e5', 'uniqueId': '0x00156da9e663c1955fd81066d670b3162693e7b55d4ae3ca05055da17f4be32f:log:39', 'hash': '0x00156da9e663c1955fd81066d670b3162693e7b55d4ae3ca05055da17f4be32f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 8098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01b6fe535ef509480000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-03T22:29:05.000Z'}}, {'blockNum': '0xb0c4be', 'uniqueId': '0xfae3b497d93c6a47c42f1182059619c9251852bd527ec4a79c591337fcbeb0f0:log:154', 'hash': '0xfae3b497d93c6a47c42f1182059619c9251852bd527ec4a79c591337fcbeb0f0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01d1ef9611bd026c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T00:13:58.000Z'}}, {'blockNum': '0xb0c508', 'uniqueId': '0xaa53a9096da524aca2cd27a8c602a2af15e875cdf85230d04f8af3538a4989ae:log:59', 'hash': '0xaa53a9096da524aca2cd27a8c602a2af15e875cdf85230d04f8af3538a4989ae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 8504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01cd00b51fe081e00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T00:28:52.000Z'}}, {'blockNum': '0xb0c596', 'uniqueId': '0x4192f4ed0d02d08be3a23f805bf7d93b0ef3128eeb675a8c8a67342a1bce4391:log:234', 'hash': '0x4192f4ed0d02d08be3a23f805bf7d93b0ef3128eeb675a8c8a67342a1bce4391', 'from': '0x298a338e98a4f5a6d09dae82158836343ce5ed16', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 10025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x021f74d2a1460b040000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:05:29.000Z'}}, {'blockNum': '0xb0c596', 'uniqueId': '0xa984ef3b34cdf089737490769f9a812471f6c54d0c3523731560401d6980f384:log:240', 'hash': '0xa984ef3b34cdf089737490769f9a812471f6c54d0c3523731560401d6980f384', 'from': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 15521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x034965250237b5e40000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:05:29.000Z'}}, {'blockNum': '0xb0c59b', 'uniqueId': '0x356994d5ccf23592ce488bdf8ebdc42a7b05551359dfba402c31c513bf72c674:log:191', 'hash': '0x356994d5ccf23592ce488bdf8ebdc42a7b05551359dfba402c31c513bf72c674', 'from': '0x9567ecee987734bc038dc620eb838703ca4a0eb3', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 1107.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x3c09a66636a91e0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:06:54.000Z'}}, {'blockNum': '0xb0c59b', 'uniqueId': '0x021791b8a834cad383b94f76290c71e3ee1a8f4009527c333202db66a64da47a:log:192', 'hash': '0x021791b8a834cad383b94f76290c71e3ee1a8f4009527c333202db66a64da47a', 'from': '0x746d028d6b0f7d69662517dde9d008fb35d7acf1', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 2177.881809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x76102e7e5f86221000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:06:54.000Z'}}, {'blockNum': '0xb0c5b0', 'uniqueId': '0xf73433f00603aec9e116184ffb8c3b281cc6ff84ebf9d84a405f4d6e47e937af:log:132', 'hash': '0xf73433f00603aec9e116184ffb8c3b281cc6ff84ebf9d84a405f4d6e47e937af', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 9136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01ef43782b65c0c00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:10:57.000Z'}}, {'blockNum': '0xb0c5c0', 'uniqueId': '0x735d7b273eb0bbd42a83144c91e3940af894944f8bd69a56a40f0bc046ed27ba:log:109', 'hash': '0x735d7b273eb0bbd42a83144c91e3940af894944f8bd69a56a40f0bc046ed27ba', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x298a338e98a4f5a6d09dae82158836343ce5ed16', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:14:02.000Z'}}, {'blockNum': '0xb0c5c1', 'uniqueId': '0x896d8a3d99fa65e40494796c7a5172d62d07389ae4a6861b6c544ef337c742af:log:31', 'hash': '0x896d8a3d99fa65e40494796c7a5172d62d07389ae4a6861b6c544ef337c742af', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 9263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01f625f2ce85cb5c0000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:14:12.000Z'}}, {'blockNum': '0xb0c614', 'uniqueId': '0x18596ea8027de705ed4f1443cd8a9ee2b3d31b8aafeee15593ea70a0e3d9568a:log:75', 'hash': '0x18596ea8027de705ed4f1443cd8a9ee2b3d31b8aafeee15593ea70a0e3d9568a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 7724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MDA', 'category': 'erc20', 'rawContract': {'value': '0x01a2b808747e7d300000', 'address': '0x51db5ad35c671a87207d88fc11d593ac0c8415bd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-04T01:33:18.000Z'}}]}}
Number of returned transfers:  78
Answer is complete
 
symbol            CTXC
group              BPF
date        2021-01-07
hour             15:59
exchange       binance
Name: 871, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CTXC, Contract: 
Datetime timestamps:  2021-01-07 15:59:00 2021-01-07 03:59:00 2021-01-08 03:59:00
Unix timestamps:  1609988340.0 1610074740.0
Hex Block Numbers:  0xb113fc 0xb12d39
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIB
group              BPF
date        2021-01-08
hour             17:00
exchange       binance
Name: 872, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2021-01-08 17:00:00 2021-01-08 05:00:00 2021-01-09 05:00:00
Unix timestamps:  1610078400.0 1610164800.0
Hex Block Numbers:  0xb12e51 0xb1480f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb12e84', 'uniqueId': '0xf256211905b3d61b8af70453002194ecb1dd0b7410b5f4ee9e6a184bab7a76ff:log:11', 'hash': '0xf256211905b3d61b8af70453002194ecb1dd0b7410b5f4ee9e6a184bab7a76ff', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbf2a254e46155bdc493395647985a1b7d09b08f0', 'value': 1079.45720918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3a847a648a306e9800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T04:11:30.000Z'}}, {'blockNum': '0xb12eae', 'uniqueId': '0x830b0904d3827de1e8910e65f34ecb8dd0b9ac67f714ac25466ac5ce7180cf8f:log:130', 'hash': '0x830b0904d3827de1e8910e65f34ecb8dd0b9ac67f714ac25466ac5ce7180cf8f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xe68f495e84e319897f861793a908b846f6f9b977', 'value': 27484.79124999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05d1f419d5336a6b3c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T04:20:42.000Z'}}, {'blockNum': '0xb12ef2', 'uniqueId': '0x243c432fda041e754c924c2588fc6588c88fc231aa0bcb0ecff0edaa729c788b:log:106', 'hash': '0x243c432fda041e754c924c2588fc6588c88fc231aa0bcb0ecff0edaa729c788b', 'from': '0x812d27a544e9f6e11c506cef2938cf707d28bbe8', 'to': '0xfc7b2a8c157d741b68d33c16d2a3945835411813', 'value': 37263.75489499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07e4127bbd288e880c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T04:36:37.000Z'}}, {'blockNum': '0xb12f61', 'uniqueId': '0x742151c0f07c9f1cadfdf8de8067fb440cffd314a3c991302c301ebc053e07d2:log:27', 'hash': '0x742151c0f07c9f1cadfdf8de8067fb440cffd314a3c991302c301ebc053e07d2', 'from': '0xfc7b2a8c157d741b68d33c16d2a3945835411813', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37263.75489499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x07e4127bbd288e880c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:03:01.000Z'}}, {'blockNum': '0xb12fe8', 'uniqueId': '0x07a8792413ee5daa491f8eb5569d6472627608a095d788265fd6a183cc18723b:log:196', 'hash': '0x07a8792413ee5daa491f8eb5569d6472627608a095d788265fd6a183cc18723b', 'from': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 287015.20705111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3cc720241d3e9a227c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:32:10.000Z'}}, {'blockNum': '0xb13047', 'uniqueId': '0x00b629d69447ba30472713b857a458ac48d02e5c690cd49f5e09b7425be767f1:log:244', 'hash': '0x00b629d69447ba30472713b857a458ac48d02e5c690cd49f5e09b7425be767f1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 174577.73591831193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x24f7e0c66937d65dcd76', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:52:27.000Z'}}, {'blockNum': '0xb13047', 'uniqueId': '0x00b629d69447ba30472713b857a458ac48d02e5c690cd49f5e09b7425be767f1:log:249', 'hash': '0x00b629d69447ba30472713b857a458ac48d02e5c690cd49f5e09b7425be767f1', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'value': 174577.73591831193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x24f7e0c66937d65dcd76', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:52:27.000Z'}}, {'blockNum': '0xb1304c', 'uniqueId': '0x95b0552c19326f5222395cc84c5819d6830e3a9f7415364b7ee9e9c20b8f836f:log:117', 'hash': '0x95b0552c19326f5222395cc84c5819d6830e3a9f7415364b7ee9e9c20b8f836f', 'from': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'to': '0x1843f1255f8fcef77639b63aa741ba372ec01d09', 'value': 174577.73591831193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x24f7e0c66937d65dcd76', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T05:53:48.000Z'}}, {'blockNum': '0xb13078', 'uniqueId': '0x81b74c8debc23e378f1d97c3ae07144f9b99373d615d5883c8bdf64399a73add:log:180', 'hash': '0x81b74c8debc23e378f1d97c3ae07144f9b99373d615d5883c8bdf64399a73add', 'from': '0x1843f1255f8fcef77639b63aa741ba372ec01d09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 174577.73591831193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x24f7e0c66937d65dcd76', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:02:47.000Z'}}, {'blockNum': '0xb13094', 'uniqueId': '0x279fff1bb23a23664145536531e21f844e66e36f70b33be64a6c9eb59eded00d:log:92', 'hash': '0x279fff1bb23a23664145536531e21f844e66e36f70b33be64a6c9eb59eded00d', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 159737.69898690272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x21d365e435fca2b5315a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:07:49.000Z'}}, {'blockNum': '0xb13094', 'uniqueId': '0x279fff1bb23a23664145536531e21f844e66e36f70b33be64a6c9eb59eded00d:log:97', 'hash': '0x279fff1bb23a23664145536531e21f844e66e36f70b33be64a6c9eb59eded00d', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'value': 159737.69898690272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x21d365e435fca2b5315a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:07:49.000Z'}}, {'blockNum': '0xb13098', 'uniqueId': '0xb94ababde975a2850403e9106ff63dec642a2a2f937e5b0b6188543e6053b35c:log:17', 'hash': '0xb94ababde975a2850403e9106ff63dec642a2a2f937e5b0b6188543e6053b35c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x76d03117f5b2a5e1e45e3d1e72d709ae2593ac72', 'value': 436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x17a2b729f916500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:08:28.000Z'}}, {'blockNum': '0xb13098', 'uniqueId': '0x5d0896dd41828de39bb448b72f3aafaa3ed8d151c1e2afb263d1044a83f64d61:log:97', 'hash': '0x5d0896dd41828de39bb448b72f3aafaa3ed8d151c1e2afb263d1044a83f64d61', 'from': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'to': '0x1843f1255f8fcef77639b63aa741ba372ec01d09', 'value': 159737.69898690272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x21d365e435fca2b5315a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:08:28.000Z'}}, {'blockNum': '0xb13174', 'uniqueId': '0xd8b4aebcc2388f1ad83094725994ac37e3ea8b780ea9036c01aae66af475214e:log:38', 'hash': '0xd8b4aebcc2388f1ad83094725994ac37e3ea8b780ea9036c01aae66af475214e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x76d03117f5b2a5e1e45e3d1e72d709ae2593ac72', 'value': 3366.231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb67bd6eb719bf58000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T06:54:41.000Z'}}, {'blockNum': '0xb131bc', 'uniqueId': '0xe9b388a558354c43375e858ff81e9ac9f6bb416a39a1545102860c65d1aac1c7:log:270', 'hash': '0xe9b388a558354c43375e858ff81e9ac9f6bb416a39a1545102860c65d1aac1c7', 'from': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'to': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'value': 49000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a604b9a42df9ca00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:10:06.000Z'}}, {'blockNum': '0xb131be', 'uniqueId': '0xb632f1902199ae78bbe303dbf1bf4c65632283d06014c1d2e4588f28304095e3:log:215', 'hash': '0xb632f1902199ae78bbe303dbf1bf4c65632283d06014c1d2e4588f28304095e3', 'from': '0xffe3db266852a7e09123d913371fceb62e6ecd70', 'to': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'value': 13157.51728272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02c9453ba11e9c804000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:10:54.000Z'}}, {'blockNum': '0xb131be', 'uniqueId': '0x55f57a857587566f949621be33cbf6b13261558ee02497bbfbfaa8409c5c0299:log:216', 'hash': '0x55f57a857587566f949621be33cbf6b13261558ee02497bbfbfaa8409c5c0299', 'from': '0xb63faa36f97448921f5751a2272ba51318181517', 'to': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'value': 6983.59992562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x017a94eafba7387d8800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:10:54.000Z'}}, {'blockNum': '0xb131be', 'uniqueId': '0xead3133dcb8fde7f30548b0da0159bb7470d825e0b2acabe3a0f71b033ad880e:log:217', 'hash': '0xead3133dcb8fde7f30548b0da0159bb7470d825e0b2acabe3a0f71b033ad880e', 'from': '0xdc79bb9a038834ee96202e8dd0c4ba6d568dcea5', 'to': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'value': 11770.67090916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027e16df8c319a031000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:10:54.000Z'}}, {'blockNum': '0xb131da', 'uniqueId': '0xc113e311845793752cfc77d13180506fdd67b0f3d89cfe1426d4ff3264aa618c:log:174', 'hash': '0xc113e311845793752cfc77d13180506fdd67b0f3d89cfe1426d4ff3264aa618c', 'from': '0x4679e51edc6998ccff619874f5b0a8b522ff4220', 'to': '0xb367eaf5e0100749d26d1831bf17948bb2b0b2a8', 'value': 1300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x011349242670ce84800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:17:27.000Z'}}, {'blockNum': '0xb13221', 'uniqueId': '0x613507f8564a2b1086fffa7d87c2ca62746f0d84942822538fd8feda042a04d9:log:92', 'hash': '0x613507f8564a2b1086fffa7d87c2ca62746f0d84942822538fd8feda042a04d9', 'from': '0xb367eaf5e0100749d26d1831bf17948bb2b0b2a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x011349242670ce84800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:32:09.000Z'}}, {'blockNum': '0xb13221', 'uniqueId': '0xc2f87512f6568259e7e2a7eeaf7d93bdeec1bd8a3d1bded318d4684681e4c315:log:109', 'hash': '0xc2f87512f6568259e7e2a7eeaf7d93bdeec1bd8a3d1bded318d4684681e4c315', 'from': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a604b9a42df9ca00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:32:09.000Z'}}, {'blockNum': '0xb13245', 'uniqueId': '0xcbcc9683a91ea51929831e7d9edd28a87e0f1d454ed46ab48ea99ef0f9f2c8bb:log:61', 'hash': '0xcbcc9683a91ea51929831e7d9edd28a87e0f1d454ed46ab48ea99ef0f9f2c8bb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2180683.7581959385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdc71a78e17bc0240cf7', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T07:40:24.000Z'}}, {'blockNum': '0xb132a7', 'uniqueId': '0x5631faca162a6de868258f82d45ea1d07da6feba797bdc8adfef7ae9bcd94c09:log:226', 'hash': '0x5631faca162a6de868258f82d45ea1d07da6feba797bdc8adfef7ae9bcd94c09', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xffa89fd0dd3195269b52b7fe746f4b24a7ad0d53', 'value': 1030.57815629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x37de251ce89e739400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T08:03:56.000Z'}}, {'blockNum': '0xb13363', 'uniqueId': '0xb11d3bd0541fc95ce05aec9b603f8e2767b4a0ca2d42c27405ff5e863b0fd4cb:log:171', 'hash': '0xb11d3bd0541fc95ce05aec9b603f8e2767b4a0ca2d42c27405ff5e863b0fd4cb', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 71755.62777127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0f31e160505c46d7bc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T08:43:17.000Z'}}, {'blockNum': '0xb133b8', 'uniqueId': '0xea31e4ec0a85f57c0230cd55e5935d500ac6eee7e017c8570eada67460d34488:log:125', 'hash': '0xea31e4ec0a85f57c0230cd55e5935d500ac6eee7e017c8570eada67460d34488', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 49764.251075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0a89b9b78269060b3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:01:55.000Z'}}, {'blockNum': '0xb1343f', 'uniqueId': '0xd4929955256595fb85bc85e8fa78879f49ecc7f2e1379e9333b5c6fa65a2967d:log:28', 'hash': '0xd4929955256595fb85bc85e8fa78879f49ecc7f2e1379e9333b5c6fa65a2967d', 'from': '0x57d483d326f72240b6947a4f33b2b15f644d596a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29099.57590717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06297dbd5f69073f5400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:32:05.000Z'}}, {'blockNum': '0xb1343f', 'uniqueId': '0x4b02aebbf1108ba37fb01c95f3caca7cf43fa6703244a6963357e3c748c0359c:log:33', 'hash': '0x4b02aebbf1108ba37fb01c95f3caca7cf43fa6703244a6963357e3c748c0359c', 'from': '0x1843f1255f8fcef77639b63aa741ba372ec01d09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 159737.69898690272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x21d365e435fca2b5315a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:32:05.000Z'}}, {'blockNum': '0xb1345e', 'uniqueId': '0x4b6666a395953c7d0bb5b3a61c17f8a2298496a7b0bd423c579d1ddde1fdfc1d:log:51', 'hash': '0x4b6666a395953c7d0bb5b3a61c17f8a2298496a7b0bd423c579d1ddde1fdfc1d', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 16379.9513889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0377f57d5b80aecbe800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:37:57.000Z'}}, {'blockNum': '0xb13465', 'uniqueId': '0x08fd07b04f4a673d55b2fd3836e3addbb0445cf4c2d15d854997b0b0871c9c6c:log:108', 'hash': '0x08fd07b04f4a673d55b2fd3836e3addbb0445cf4c2d15d854997b0b0871c9c6c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x92926db386b329010d1d1938539a9d5c6d3b2905', 'value': 16100.03463259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0368c8dd44b385aa0c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T09:40:14.000Z'}}, {'blockNum': '0xb1356c', 'uniqueId': '0xfe6b3b6872650c4a59fd8eff1118672aba85739d9c21067b3cbe9000308e39d4:log:27', 'hash': '0xfe6b3b6872650c4a59fd8eff1118672aba85739d9c21067b3cbe9000308e39d4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 110132.079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1752459f89bcd1918000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:32:37.000Z'}}, {'blockNum': '0xb13572', 'uniqueId': '0xb569be33c404bd9e4160abd125b06445449a1b17dc0dbe2f497ab63b1baea621:log:187', 'hash': '0xb569be33c404bd9e4160abd125b06445449a1b17dc0dbe2f497ab63b1baea621', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 110132.079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1752459f89bcd1918000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:33:17.000Z'}}, {'blockNum': '0xb13572', 'uniqueId': '0xb569be33c404bd9e4160abd125b06445449a1b17dc0dbe2f497ab63b1baea621:log:189', 'hash': '0xb569be33c404bd9e4160abd125b06445449a1b17dc0dbe2f497ab63b1baea621', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 110132.079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1752459f89bcd1918000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:33:17.000Z'}}, {'blockNum': '0xb135a5', 'uniqueId': '0x6b5fde222d0ce3d9afa2210fcf2959c8665f52fe529d26bda16b8975aed1bb97:log:11', 'hash': '0x6b5fde222d0ce3d9afa2210fcf2959c8665f52fe529d26bda16b8975aed1bb97', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfc7f623bc12dbeb984a9d618e9b07693ff35283f', 'value': 9038.516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01e9fa9b6de3cc920000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:43:39.000Z'}}, {'blockNum': '0xb135b6', 'uniqueId': '0x38bcc94716d099baebda80b7f84d0facb37bb45bd54713d840878080c853f68b:log:40', 'hash': '0x38bcc94716d099baebda80b7f84d0facb37bb45bd54713d840878080c853f68b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 264210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x37f2da51136ce5080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T10:46:11.000Z'}}, {'blockNum': '0xb1362f', 'uniqueId': '0xe54c231bbe795091119874e0660dccfac168ee1392587d54b0b18eea12a79214:log:56', 'hash': '0xe54c231bbe795091119874e0660dccfac168ee1392587d54b0b18eea12a79214', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xb017fdb028ff4d2666cb244d2ab24bf967e800a8', 'value': 80137.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x10f83c5d64f2032b0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:12:46.000Z'}}, {'blockNum': '0xb13656', 'uniqueId': '0x5e8dcfba280396bebe791cc719c9ef0934f3c8ac6fd6b260c534fa6b893bb9e5:log:103', 'hash': '0x5e8dcfba280396bebe791cc719c9ef0934f3c8ac6fd6b260c534fa6b893bb9e5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb358ece567e4f2e64744559511f5486e60e2599d', 'value': 1961.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6a56ab26ff6e400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:22:01.000Z'}}, {'blockNum': '0xb136a4', 'uniqueId': '0x1aff3c1dd43c908a90d204e4b7a45010ff989e6cba43ab870b4cfa734b37c281:log:275', 'hash': '0x1aff3c1dd43c908a90d204e4b7a45010ff989e6cba43ab870b4cfa734b37c281', 'from': '0x28475624d6366ac49367105a6010e0f3da05610d', 'to': '0x36c86318d9469186ae2b4749a5ffde6516e354e1', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:39:56.000Z'}}, {'blockNum': '0xb136a7', 'uniqueId': '0xdc8a49b683bcb33b81b12d55bbacf854c22b4285e39001b2230520ff9e470e37:log:47', 'hash': '0xdc8a49b683bcb33b81b12d55bbacf854c22b4285e39001b2230520ff9e470e37', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0x57d483d326f72240b6947a4f33b2b15f644d596a', 'value': 28554.42857142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x060bf04cf9dc29e41800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:40:09.000Z'}}, {'blockNum': '0xb136b3', 'uniqueId': '0x687bad99127ae84e1d652ea29cd9025fbc5529c7f4220b7b1939e3ccfb4aa7b2:log:182', 'hash': '0x687bad99127ae84e1d652ea29cd9025fbc5529c7f4220b7b1939e3ccfb4aa7b2', 'from': '0x28475624d6366ac49367105a6010e0f3da05610d', 'to': '0x57cc0647b15ed45f78016333c5c878162fdf5624', 'value': 44000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09513ea9de0243800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:43:24.000Z'}}, {'blockNum': '0xb136d3', 'uniqueId': '0x96345420974d83a777220eaa003dfad51227e35fbb4edeb34ed93384d2f71f85:log:60', 'hash': '0x96345420974d83a777220eaa003dfad51227e35fbb4edeb34ed93384d2f71f85', 'from': '0x677d71e06d5a37cc025a232a4a557c1dd2947167', 'to': '0x56bc3be4ed86a03216b1a825b5f0a7bcc47c667b', 'value': 6860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0173e19fd6298bb00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:49:14.000Z'}}, {'blockNum': '0xb136eb', 'uniqueId': '0x430c75743ae9ce0b45a47fd77c768f06996a864aadcf4f2409ee099bd70d14cd:log:305', 'hash': '0x430c75743ae9ce0b45a47fd77c768f06996a864aadcf4f2409ee099bd70d14cd', 'from': '0x2d5922ff4c677b17d0ee8c0736eb8e581b07f4a3', 'to': '0x56bc3be4ed86a03216b1a825b5f0a7bcc47c667b', 'value': 20116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04427d945cdd3dd00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:53:47.000Z'}}, {'blockNum': '0xb136f7', 'uniqueId': '0x793703641393a95597875f3dbf6df2a560553d4472d2fd983969a41b8a4850db:log:2', 'hash': '0x793703641393a95597875f3dbf6df2a560553d4472d2fd983969a41b8a4850db', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x24db60f1ee1fee4b473d0077e4ce0b844d134453', 'value': 102087.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x159e2aea0ae950bb0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T11:56:53.000Z'}}, {'blockNum': '0xb13715', 'uniqueId': '0x009e6d3b5e736c612cd6abeb2f0b384628dbe9d4d42e75438f60dbc2c627d178:log:99', 'hash': '0x009e6d3b5e736c612cd6abeb2f0b384628dbe9d4d42e75438f60dbc2c627d178', 'from': '0x57d483d326f72240b6947a4f33b2b15f644d596a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28554.42857142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x060bf04cf9dc29e41800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:01:55.000Z'}}, {'blockNum': '0xb1372b', 'uniqueId': '0x6230ff9599a5abee971495072ba6531d06e87c11b78f98fff914281405d9169a:log:52', 'hash': '0x6230ff9599a5abee971495072ba6531d06e87c11b78f98fff914281405d9169a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe15ea7d216419f92bc33c8065b861ca3d124ee5c', 'value': 1295.98614367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x46416bb33d2eb59c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:06:06.000Z'}}, {'blockNum': '0xb1373a', 'uniqueId': '0xcf98b2dabdb3c98bb6fd4f8e26d31073b45cafc358fce0aeb060481b22e16e6d:log:83', 'hash': '0xcf98b2dabdb3c98bb6fd4f8e26d31073b45cafc358fce0aeb060481b22e16e6d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:09:53.000Z'}}, {'blockNum': '0xb13740', 'uniqueId': '0xb0360d5fd963fa5b3b3eb194d1d6b04f6330b7987a7da84a943b32696c1d23c4:log:79', 'hash': '0xb0360d5fd963fa5b3b3eb194d1d6b04f6330b7987a7da84a943b32696c1d23c4', 'from': '0x51831fc3f1581f3782ee9960e1570fbb3b60f21d', 'to': '0xeaefd4ed7829aec7a641c3a5df75c2389924364f', 'value': 5482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01292e08631e83680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:10:45.000Z'}}, {'blockNum': '0xb1375b', 'uniqueId': '0xdb9a8e336013744e386d285ae2cb1ac06ddc1a0a562db79888b9ff9466b7e5bb:log:157', 'hash': '0xdb9a8e336013744e386d285ae2cb1ac06ddc1a0a562db79888b9ff9466b7e5bb', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 113237.26541846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x17fa9abdcd581d559800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:16:04.000Z'}}, {'blockNum': '0xb137be', 'uniqueId': '0xcf9ab9bbb0f49474fc2613cad89022068548ade1a35a824947f8a4c9237d26c1:log:161', 'hash': '0xcf9ab9bbb0f49474fc2613cad89022068548ade1a35a824947f8a4c9237d26c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x065e6011baf40687ef01055b03b2fdd2e8de495e', 'value': 13435.692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d859aec0a7259e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T12:41:04.000Z'}}, {'blockNum': '0xb138b8', 'uniqueId': '0xb387e6b351e0c82794354ac6bb95645b9d70fb55b678c00bd0520d8e0a18465f:log:69', 'hash': '0xb387e6b351e0c82794354ac6bb95645b9d70fb55b678c00bd0520d8e0a18465f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf9bc073b7d66b91d6d63a0928c75c68994f9c2a3', 'value': 3310.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xb372f2748b38d10000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T13:36:42.000Z'}}, {'blockNum': '0xb138d7', 'uniqueId': '0x9b9e7fa9da5ccdfe668db12f614b905d4b23b1d6103880974376df1f7d8b5b94:log:73', 'hash': '0x9b9e7fa9da5ccdfe668db12f614b905d4b23b1d6103880974376df1f7d8b5b94', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xca700ad52bcd62263ef0351fc883488f0802ded8', 'value': 1473.08844695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4fdb3579be729b7c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T13:45:50.000Z'}}, {'blockNum': '0xb13947', 'uniqueId': '0xfef0586811d07b91539e40d0a347045a6737624b87a95a78de6713c67746bb53:log:95', 'hash': '0xfef0586811d07b91539e40d0a347045a6737624b87a95a78de6713c67746bb53', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0391e2d5ba0ef1762bb03137800064e264646ff7', 'value': 1538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x536009a353a6c80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:10:56.000Z'}}, {'blockNum': '0xb1399e', 'uniqueId': '0xd9dff71087ab0a1f51db3e32c03d2294c68119f9d6f9fc2817c5d0d85b422b22:log:90', 'hash': '0xd9dff71087ab0a1f51db3e32c03d2294c68119f9d6f9fc2817c5d0d85b422b22', 'from': '0x141f70af1302a566b8d8fe84c6d9b91cf0bbc71f', 'to': '0xd563d5be02dc6ebec61fdd45bffbc17a6fe1673b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:29:16.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0x145d8ee71f2db96f4658ad543e1ba77f822ff73b27980a7b1c10cb28ba906d27:log:136', 'hash': '0x145d8ee71f2db96f4658ad543e1ba77f822ff73b27980a7b1c10cb28ba906d27', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 262094.672063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x37802e3e94362c26f000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0xc3b17d6bcc9f1c579ad250803b8d2f90deefd22e7f4ba8d2fd4fae09f6b387d3:log:137', 'hash': '0xc3b17d6bcc9f1c579ad250803b8d2f90deefd22e7f4ba8d2fd4fae09f6b387d3', 'from': '0xb017fdb028ff4d2666cb244d2ab24bf967e800a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 303009.536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x402a2e0b5aac61800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0x4062702ec720cd35ad24ce62b5435addc934dfb012566cf4e3d60cbc32a2c5f6:log:138', 'hash': '0x4062702ec720cd35ad24ce62b5435addc934dfb012566cf4e3d60cbc32a2c5f6', 'from': '0xea0ee266edbacf515c2e3b8eb8a78de2685efa28', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 362433.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4cbf8cf20361d7b28000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0xb107edde84aaa92a230e87f05720c383401d4090ba0e8496cd18cecdc0e3d098:log:154', 'hash': '0xb107edde84aaa92a230e87f05720c383401d4090ba0e8496cd18cecdc0e3d098', 'from': '0x56bc3be4ed86a03216b1a825b5f0a7bcc47c667b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05b65f343306c9800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0xd34296089aa3c2e66b1648baccbc5d3cc3aab7b174797a8164a002e5e02a0614:log:168', 'hash': '0xd34296089aa3c2e66b1648baccbc5d3cc3aab7b174797a8164a002e5e02a0614', 'from': '0x6077086bfc37c9edfee8d42e8ba5734e858a115b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50596.0134565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ab6d0bd1984be7b8800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b2', 'uniqueId': '0x7ef8d6c7dbbe7ee5e07ff27e2d38bcf2fd3002956993cc29c7df7d1635f136e6:log:185', 'hash': '0x7ef8d6c7dbbe7ee5e07ff27e2d38bcf2fd3002956993cc29c7df7d1635f136e6', 'from': '0x74f2ec09c41ac09c0dfc5cba6baa0142d01be978', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0445da009c5fc8080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:00.000Z'}}, {'blockNum': '0xb139b3', 'uniqueId': '0x46ea5d32855fa1198f35b86708da6ae3e9c396cb236f5676765c2f84b2a49aa0:log:53', 'hash': '0x46ea5d32855fa1198f35b86708da6ae3e9c396cb236f5676765c2f84b2a49aa0', 'from': '0xc7a6409499951930f23b71bd60c897637f686e46', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08b1989415499e1c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:32:29.000Z'}}, {'blockNum': '0xb139c7', 'uniqueId': '0xb44dcc35b260e2d690ed719b3b2439c17f819563385d43dae091987ad93f8efe:log:220', 'hash': '0xb44dcc35b260e2d690ed719b3b2439c17f819563385d43dae091987ad93f8efe', 'from': '0x141f70af1302a566b8d8fe84c6d9b91cf0bbc71f', 'to': '0xd563d5be02dc6ebec61fdd45bffbc17a6fe1673b', 'value': 187767.6067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x27c2e700c23ba4b6c000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:36:14.000Z'}}, {'blockNum': '0xb139fa', 'uniqueId': '0xd8c3372938c392003950bdc68442eea4056ffb50689f1e8dcf65042992713d8c:log:211', 'hash': '0xd8c3372938c392003950bdc68442eea4056ffb50689f1e8dcf65042992713d8c', 'from': '0x7044eed65c3d8e0133ac62a9d0c34c9bb2d84e70', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 9796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02130acf32914e900000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T14:47:59.000Z'}}, {'blockNum': '0xb13a4f', 'uniqueId': '0xc5f4e97812a9e30c5d94b1427c608b229fa5c78b8003e5e7560dce9f7f7a45ff:log:115', 'hash': '0xc5f4e97812a9e30c5d94b1427c608b229fa5c78b8003e5e7560dce9f7f7a45ff', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 30902.7791236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x068b3e361af92737a000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T15:05:28.000Z'}}, {'blockNum': '0xb13ac6', 'uniqueId': '0x3d8f94fda486cbe29a66def747499e5d6511517929e8af96526b401cb637e4b2:log:152', 'hash': '0x3d8f94fda486cbe29a66def747499e5d6511517929e8af96526b401cb637e4b2', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30902.7791236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x068b3e361af92737a000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T15:31:53.000Z'}}, {'blockNum': '0xb13ba1', 'uniqueId': '0x5eb0cc0eb4173ed5c2e77a3c852c2da72b3f26083a46a224d83c96e07bc8d60a:log:303', 'hash': '0x5eb0cc0eb4173ed5c2e77a3c852c2da72b3f26083a46a224d83c96e07bc8d60a', 'from': '0x0da95e86c16a98c89d1ff1e70270b42155c649d1', 'to': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'value': 1500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013da329b6336471800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T16:21:09.000Z'}}, {'blockNum': '0xb13c47', 'uniqueId': '0x711b3249d82fbeb63c944a06cb52aa205c00ddc96f66c3fe5d593e8655a68399:log:59', 'hash': '0x711b3249d82fbeb63c944a06cb52aa205c00ddc96f66c3fe5d593e8655a68399', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 16537.76825177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x038083a37c2223ae4400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T16:57:06.000Z'}}, {'blockNum': '0xb13c4e', 'uniqueId': '0xf8045e32e4fa3454e6b6ebd357e58304f4ba3103e74c56b079c7b398a453c392:log:41', 'hash': '0xf8045e32e4fa3454e6b6ebd357e58304f4ba3103e74c56b079c7b398a453c392', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 82925.09795247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x118f60e9cfc5c6ccdc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T16:58:56.000Z'}}, {'blockNum': '0xb13c5b', 'uniqueId': '0xbb7af851fc03f3b682bd7ef76870f66439d9baa280dbc62ee4a0ca3a698f9e60:log:147', 'hash': '0xbb7af851fc03f3b682bd7ef76870f66439d9baa280dbc62ee4a0ca3a698f9e60', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:01:46.000Z'}}, {'blockNum': '0xb13c5b', 'uniqueId': '0x747f2d55a3ee149f79c6dbc66f0ba767278b834a98419fd1de5af141fda8acc1:log:148', 'hash': '0x747f2d55a3ee149f79c6dbc66f0ba767278b834a98419fd1de5af141fda8acc1', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99462.86620424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x150fe48d4be7ea7b2000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:01:46.000Z'}}, {'blockNum': '0xb13c67', 'uniqueId': '0x47a540ed2962f0edaa8b06495312ac164e8caa448deb61e0b6bcfbe69788b5ac:log:171', 'hash': '0x47a540ed2962f0edaa8b06495312ac164e8caa448deb61e0b6bcfbe69788b5ac', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 42821.436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x09115acd6c4efc060000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:03:53.000Z'}}, {'blockNum': '0xb13c87', 'uniqueId': '0x0134df53665923107a571eb95cbbdf72950563628da2abd764de4dd2c4a0d8d5:log:136', 'hash': '0x0134df53665923107a571eb95cbbdf72950563628da2abd764de4dd2c4a0d8d5', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 103800.24789081771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15fb05d08b6a4fcd025a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:10:56.000Z'}}, {'blockNum': '0xb13c87', 'uniqueId': '0x0134df53665923107a571eb95cbbdf72950563628da2abd764de4dd2c4a0d8d5:log:141', 'hash': '0x0134df53665923107a571eb95cbbdf72950563628da2abd764de4dd2c4a0d8d5', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 103800.24789081771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15fb05d08b6a4fcd025a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:10:56.000Z'}}, {'blockNum': '0xb13c8d', 'uniqueId': '0x6ad2c63237a22dcf5f4225c0c31a32d53fadedf2a54fdba95e6e17ce1ecd4eff:log:103', 'hash': '0x6ad2c63237a22dcf5f4225c0c31a32d53fadedf2a54fdba95e6e17ce1ecd4eff', 'from': '0xa4db240294d86f7c3a0637b3087c61d126de7369', 'to': '0x76d03117f5b2a5e1e45e3d1e72d709ae2593ac72', 'value': 1525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x52aba05c3426b40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:12:45.000Z'}}, {'blockNum': '0xb13c8d', 'uniqueId': '0x8f1984e8da092ecc064466eb6aaad5a1a8e610c8965d6d838a54dfda7c75c30b:log:105', 'hash': '0x8f1984e8da092ecc064466eb6aaad5a1a8e610c8965d6d838a54dfda7c75c30b', 'from': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'to': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'value': 51800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af815688fd672600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:12:45.000Z'}}, {'blockNum': '0xb13c94', 'uniqueId': '0x08de0ee540e6966ab6710fb7aa1a83b3a41e728150e349adf8a2bd8d644ee65f:log:71', 'hash': '0x08de0ee540e6966ab6710fb7aa1a83b3a41e728150e349adf8a2bd8d644ee65f', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 103800.24789081771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15fb05d08b6a4fcd025a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:13:53.000Z'}}, {'blockNum': '0xb13cdc', 'uniqueId': '0x20b230f28ac6fa7e0308b41076e72870b61147e433bf2afd7ba8a1a5f609765d:log:183', 'hash': '0x20b230f28ac6fa7e0308b41076e72870b61147e433bf2afd7ba8a1a5f609765d', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 103800.24789081771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15fb05d08b6a4fcd025a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:31:37.000Z'}}, {'blockNum': '0xb13cdc', 'uniqueId': '0xde65cc5ac6713d78b8b66ba1d88c248cee3952388ae38fb6a516df979b8256aa:log:199', 'hash': '0xde65cc5ac6713d78b8b66ba1d88c248cee3952388ae38fb6a516df979b8256aa', 'from': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0af815688fd672600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:31:37.000Z'}}, {'blockNum': '0xb13d0c', 'uniqueId': '0x5e7269b5005dd2bb3290901b492e9139dc6acd566eaaf6085f53f5fb404b63b1:log:31', 'hash': '0x5e7269b5005dd2bb3290901b492e9139dc6acd566eaaf6085f53f5fb404b63b1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdde9f9afd06dad6e0415797fcd90ec378de1711c', 'value': 1381.31818471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4ae1a40274d2f6bc00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:43:55.000Z'}}, {'blockNum': '0xb13d24', 'uniqueId': '0xb3dc8921034ccb8cbbd6d685ad9cea134decb06e34eb63d552bbc0920023be7d:log:15', 'hash': '0xb3dc8921034ccb8cbbd6d685ad9cea134decb06e34eb63d552bbc0920023be7d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 100689.022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15525ce1c3b2a3b30000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:49:14.000Z'}}, {'blockNum': '0xb13d31', 'uniqueId': '0xe7b4fb357a1f701faf6479e27f7b6de0b619baa19ffc579eac472236f4ee15f0:log:119', 'hash': '0xe7b4fb357a1f701faf6479e27f7b6de0b619baa19ffc579eac472236f4ee15f0', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 100689.022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15525ce1c3b2a3b30000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:51:43.000Z'}}, {'blockNum': '0xb13d31', 'uniqueId': '0xe7b4fb357a1f701faf6479e27f7b6de0b619baa19ffc579eac472236f4ee15f0:log:121', 'hash': '0xe7b4fb357a1f701faf6479e27f7b6de0b619baa19ffc579eac472236f4ee15f0', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 100689.022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15525ce1c3b2a3b30000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T17:51:43.000Z'}}, {'blockNum': '0xb13dd6', 'uniqueId': '0xaee808a4d8bf87651193949e4369d8145a8b694f622bdf21bbcfa64c1b85087c:log:9', 'hash': '0xaee808a4d8bf87651193949e4369d8145a8b694f622bdf21bbcfa64c1b85087c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdf626fd3a0331a5de42f60fe0d62cf9f521cb544', 'value': 4816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0105136d13bd09400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T18:26:39.000Z'}}, {'blockNum': '0xb13ded', 'uniqueId': '0xcdff6484ca6c6194e4c58279c5c82b1cdb4c8906203359d3d189d136c1a5aaa5:log:128', 'hash': '0xcdff6484ca6c6194e4c58279c5c82b1cdb4c8906203359d3d189d136c1a5aaa5', 'from': '0xd563d5be02dc6ebec61fdd45bffbc17a6fe1673b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 188767.6067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x27f91cca70018356c000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T18:31:35.000Z'}}, {'blockNum': '0xb13e7f', 'uniqueId': '0x43ac93ad22bc6f77c13fd739f0b78fd6ad830707a11028d1c8f2b084edaa8184:log:82', 'hash': '0x43ac93ad22bc6f77c13fd739f0b78fd6ad830707a11028d1c8f2b084edaa8184', 'from': '0x6b11bda202802402f6e92a426e440ba6abb01ee6', 'to': '0xc42a1b69cf0e8f6a5bb35379f657a2426b17a3dc', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T19:01:19.000Z'}}, {'blockNum': '0xb13f20', 'uniqueId': '0xccd140a0491c1bba2fa4f734ced5fe882869fb7272dfd625be0a9f72adc1c7c6:log:129', 'hash': '0xccd140a0491c1bba2fa4f734ced5fe882869fb7272dfd625be0a9f72adc1c7c6', 'from': '0xdf626fd3a0331a5de42f60fe0d62cf9f521cb544', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 4816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0105136d13bd09400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T19:39:19.000Z'}}, {'blockNum': '0xb13f76', 'uniqueId': '0xace3a601c54e8376e2a65acc98efd9f2ac04b17fd980c2b0f161bbc1f20225c5:log:2', 'hash': '0xace3a601c54e8376e2a65acc98efd9f2ac04b17fd980c2b0f161bbc1f20225c5', 'from': '0xe15ea7d216419f92bc33c8065b861ca3d124ee5c', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 2632.01395238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x8eae87f8ae99cbd800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T19:58:55.000Z'}}, {'blockNum': '0xb13f9b', 'uniqueId': '0xd9b24975994de0da84894197344ae8bfcc088b293730b6915983cab86fbb8d87:log:240', 'hash': '0xd9b24975994de0da84894197344ae8bfcc088b293730b6915983cab86fbb8d87', 'from': '0x11dbe59b28df4b5b573788f55290e4b63366a4cf', 'to': '0x54bc994762ec3f4c473273830c37f7f4a2862290', 'value': 21193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x047cdff4feac75840000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T20:07:51.000Z'}}, {'blockNum': '0xb1406f', 'uniqueId': '0xd2e600115c3a5585219b6f08451d414db8060164bb21b867adbbf3c86cf2d985:log:274', 'hash': '0xd2e600115c3a5585219b6f08451d414db8060164bb21b867adbbf3c86cf2d985', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 114807.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x184fbc110f0dbfbc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T20:53:45.000Z'}}, {'blockNum': '0xb1409b', 'uniqueId': '0x3110157e1424aee9c73f8a0d5f3f15bcb6132de62e58cbce091413d43a4c8b11:log:247', 'hash': '0x3110157e1424aee9c73f8a0d5f3f15bcb6132de62e58cbce091413d43a4c8b11', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'value': 114807.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x184fbc110f0dbfbc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T21:03:54.000Z'}}, {'blockNum': '0xb1409b', 'uniqueId': '0x3110157e1424aee9c73f8a0d5f3f15bcb6132de62e58cbce091413d43a4c8b11:log:249', 'hash': '0x3110157e1424aee9c73f8a0d5f3f15bcb6132de62e58cbce091413d43a4c8b11', 'from': '0x2f9ec37d6ccfff1cab21733bdadede11c823ccb0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 114807.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x184fbc110f0dbfbc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T21:03:54.000Z'}}, {'blockNum': '0xb1409f', 'uniqueId': '0x7606b3363b7093297b2407fae2df2068a5b964b6e3e641ae97daf4142e2f2eb3:log:90', 'hash': '0x7606b3363b7093297b2407fae2df2068a5b964b6e3e641ae97daf4142e2f2eb3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x64ccb08295c77e4ece7050d1ef2dff59c5c838af', 'value': 15426.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03444ca1ec3deb201c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T21:04:56.000Z'}}, {'blockNum': '0xb140a4', 'uniqueId': '0xa21a00a1cfb7a28653994e7b33bf197d22ee2eff028c961a9e94c0562b137ce1:log:33', 'hash': '0xa21a00a1cfb7a28653994e7b33bf197d22ee2eff028c961a9e94c0562b137ce1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9131fa69ec46ba5ffaeae6bc5071093b70d2c854', 'value': 1648.60674769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x595f03be54c67d2400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T21:06:16.000Z'}}, {'blockNum': '0xb143ad', 'uniqueId': '0xc58b25ed5210f966a1c3dc7c232a309ca9a8f98da46e8f0dec5b3c6e50cfed8d:log:29', 'hash': '0xc58b25ed5210f966a1c3dc7c232a309ca9a8f98da46e8f0dec5b3c6e50cfed8d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0c3d570975cde0a4c5246fbdaa41ca7fb1dbe640', 'value': 3560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc0fcecb24fc6a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-08T23:56:56.000Z'}}, {'blockNum': '0xb14410', 'uniqueId': '0xff39aeecbc001c39c7af6f043eb00d268f58a0fed7ba3de9ffd61242dce5c94c:log:130', 'hash': '0xff39aeecbc001c39c7af6f043eb00d268f58a0fed7ba3de9ffd61242dce5c94c', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'value': 114549.09117214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1841b7fb19f726d0b800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T00:18:43.000Z'}}, {'blockNum': '0xb1444a', 'uniqueId': '0x363dd132ee699c0da7db5a894599d3de8bf6a5eb44325792c1b00b4d95b70cf1:log:256', 'hash': '0x363dd132ee699c0da7db5a894599d3de8bf6a5eb44325792c1b00b4d95b70cf1', 'from': '0xd363b2ce42c2ba4453acb9a7efbe6b7a3bfd7aae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114549.09117214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1841b7fb19f726d0b800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T00:32:02.000Z'}}, {'blockNum': '0xb1448b', 'uniqueId': '0x162fe7ca9ee095123c7d620c097f001785aabf319c8f38b3b03f4927bb0e8d3e:log:19', 'hash': '0x162fe7ca9ee095123c7d620c097f001785aabf319c8f38b3b03f4927bb0e8d3e', 'from': '0xa2e03427a42c9b4b223977a297d819c2d9752359', 'to': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'value': 27260.2135325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05c5c7758101e6f04800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T00:48:03.000Z'}}, {'blockNum': '0xb144c7', 'uniqueId': '0xbff855403e47b80c51ff119a24626d64a4fb4325524524dcbbe06da2e9ee8e2f:log:55', 'hash': '0xbff855403e47b80c51ff119a24626d64a4fb4325524524dcbbe06da2e9ee8e2f', 'from': '0xe701d3cae40e6187aefbed9c986aff02f22fb941', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27260.2135325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05c5c7758101e6f04800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T01:01:48.000Z'}}, {'blockNum': '0xb1460d', 'uniqueId': '0x88bf992462a4ca9075d18ef3f0af93827ec8f8f92d9aa0da457cbc0b67c3265b:log:26', 'hash': '0x88bf992462a4ca9075d18ef3f0af93827ec8f8f92d9aa0da457cbc0b67c3265b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9cbcc39b5b848066d2fb5cabac8ac6d75e967744', 'value': 55526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0bc2120bbaa4c3d80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T02:05:37.000Z'}}, {'blockNum': '0xb14753', 'uniqueId': '0x62e78b95f6d9166c21f5432cb401198d47ef5c604eeee6daa6b2e0db1bca7f38:log:0', 'hash': '0x62e78b95f6d9166c21f5432cb401198d47ef5c604eeee6daa6b2e0db1bca7f38', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x68e564b54c99e0f6e922aa027b3d0f85d4f45352', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-09T03:19:50.000Z'}}]}}
Number of returned transfers:  98
Answer is complete
 
symbol             EVX
group              BPF
date        2021-01-09
hour             21:00
exchange       binance
Name: 873, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2021-01-09 21:00:00 2021-01-09 09:00:00 2021-01-10 09:00:00
Unix timestamps:  1610179200.0 1610265600.0
Hex Block Numbers:  0xb14c3a 0xb16588
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb14d1c', 'uniqueId': '0xa4674af2a28f9550b1c57ecc1fdb0672e60e5b834ac0f2f5aaeb2103248a251f:log:6', 'hash': '0xa4674af2a28f9550b1c57ecc1fdb0672e60e5b834ac0f2f5aaeb2103248a251f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdd9e7f8f62d19c4838cac904473a1abd66d6ef4c', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0f1b30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T08:47:54.000Z'}}, {'blockNum': '0xb14e9e', 'uniqueId': '0x3c839f4be8bfc289d0a0036e1a67e02b62afe20d2e873a97689f3470019a3ce2:log:247', 'hash': '0x3c839f4be8bfc289d0a0036e1a67e02b62afe20d2e873a97689f3470019a3ce2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 30256.8269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1208d34d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:19:30.000Z'}}, {'blockNum': '0xb14ed7', 'uniqueId': '0xfe7d69f29b2ce597498f18d61bc829d3183d721ca455ed9d62d894711e220444:log:3', 'hash': '0xfe7d69f29b2ce597498f18d61bc829d3183d721ca455ed9d62d894711e220444', 'from': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30256.8269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1208d34d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:30:32.000Z'}}, {'blockNum': '0xb14f0e', 'uniqueId': '0x07339679c8f082ae64ed5ecd73f54baa25c2e29e63a2fb64263a8736b377664a:log:40', 'hash': '0x07339679c8f082ae64ed5ecd73f54baa25c2e29e63a2fb64263a8736b377664a', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 24032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e52fe00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:45:53.000Z'}}, {'blockNum': '0xb14f2f', 'uniqueId': '0x76b54247455a0a5ecb8744a8dcefa0ffb09049ca4f0b969c093080767d2a64c7:log:61', 'hash': '0x76b54247455a0a5ecb8744a8dcefa0ffb09049ca4f0b969c093080767d2a64c7', 'from': '0x00a44dac55183a0ba3ea487d1a796f94d71a76f9', 'to': '0xc0b7a17250862977e5e3eeede7989456ae9eb20f', 'value': 5750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x036d6160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T10:52:54.000Z'}}, {'blockNum': '0xb14f4a', 'uniqueId': '0x076b9a1969503d94ab00913d82dd4dea3e7d2127a047f53189dd2a6c7c1209d8:log:189', 'hash': '0x076b9a1969503d94ab00913d82dd4dea3e7d2127a047f53189dd2a6c7c1209d8', 'from': '0xc0b7a17250862977e5e3eeede7989456ae9eb20f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x036d6160', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T11:00:08.000Z'}}, {'blockNum': '0xb14f53', 'uniqueId': '0xf906751f2be953d609bf019b88faed0d8c4199c3434410acbb66edbf79f17dd6:log:286', 'hash': '0xf906751f2be953d609bf019b88faed0d8c4199c3434410acbb66edbf79f17dd6', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 20636.0857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4cd119', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T11:02:55.000Z'}}, {'blockNum': '0xb1503e', 'uniqueId': '0x8d73e7c02bfefc0af131922810753641536de637151f3f4b6e8450ea3a03ed88:log:279', 'hash': '0x8d73e7c02bfefc0af131922810753641536de637151f3f4b6e8450ea3a03ed88', 'from': '0x09ac86553d401187849ca545fe4446ac4f455a89', 'to': '0x8a96c6bd8bb76140c1d438a4ea8841622dd3d766', 'value': 46.3789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0713ad', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T11:57:22.000Z'}}, {'blockNum': '0xb15060', 'uniqueId': '0x6a608c2d33d9a7cb8aad17de5c6940fea00105c1738890548286638643893699:log:257', 'hash': '0x6a608c2d33d9a7cb8aad17de5c6940fea00105c1738890548286638643893699', 'from': '0x8a96c6bd8bb76140c1d438a4ea8841622dd3d766', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 46.3789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0713ad', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T12:06:00.000Z'}}, {'blockNum': '0xb15074', 'uniqueId': '0x0973cf1a6e39246dadc191427544bf9b9eefe7b95ea84f5fd8ad406c6d435743:log:260', 'hash': '0x0973cf1a6e39246dadc191427544bf9b9eefe7b95ea84f5fd8ad406c6d435743', 'from': '0x6b11bda202802402f6e92a426e440ba6abb01ee6', 'to': '0xc42a1b69cf0e8f6a5bb35379f657a2426b17a3dc', 'value': 134.563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x14885e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T12:10:47.000Z'}}, {'blockNum': '0xb1526d', 'uniqueId': '0xe8f88534eb82fb3f624f3e39e3401d9d98b1818ba70858bf0ebda9cc16da008e:log:72', 'hash': '0xe8f88534eb82fb3f624f3e39e3401d9d98b1818ba70858bf0ebda9cc16da008e', 'from': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14096.5877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0866f7f5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:00:27.000Z'}}, {'blockNum': '0xb152f9', 'uniqueId': '0xb345db715fa5e6d1ddb7253a259ef16bb0aacb8c6172e9cb3c752e8f86b0a87f:log:45', 'hash': '0xb345db715fa5e6d1ddb7253a259ef16bb0aacb8c6172e9cb3c752e8f86b0a87f', 'from': '0x388711a9742bc1650c269da06e1136119e88976d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17860.472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0aa54ab0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:30:58.000Z'}}, {'blockNum': '0xb15325', 'uniqueId': '0xcaac821089c96703d9a9f0dcf6b34e1a6b056d13608b97225394e8ec9c6dddb5:log:229', 'hash': '0xcaac821089c96703d9a9f0dcf6b34e1a6b056d13608b97225394e8ec9c6dddb5', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x6c9494ddbcebf71e958faf7a741ce7e964bacdc8', 'value': 821.4265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x7d56f9', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:41:53.000Z'}}, {'blockNum': '0xb15365', 'uniqueId': '0x187a9fef0c89829d32ac1554a1de7b6d0b7d0ea6c01f1dfd901d969e43064332:log:281', 'hash': '0x187a9fef0c89829d32ac1554a1de7b6d0b7d0ea6c01f1dfd901d969e43064332', 'from': '0xa2d3aecb21f387d49009eaa0ff6e8c20e1518b6a', 'to': '0x5243f68d25ba1d7be4deb2938ab8fb720321a565', 'value': 327.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x31f510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T14:54:09.000Z'}}, {'blockNum': '0xb153b5', 'uniqueId': '0xa41a3652b33916a5d1b21c0c124cac877ff370e83d928987913a4918686400f6:log:182', 'hash': '0xa41a3652b33916a5d1b21c0c124cac877ff370e83d928987913a4918686400f6', 'from': '0x5243f68d25ba1d7be4deb2938ab8fb720321a565', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 327.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x31f510', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T15:11:55.000Z'}}, {'blockNum': '0xb1542a', 'uniqueId': '0xc1e612e34248a8235e3affe551db063c168e9fabd15649e1478daf7e1185ded0:log:292', 'hash': '0xc1e612e34248a8235e3affe551db063c168e9fabd15649e1478daf7e1185ded0', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e4b5ce0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T15:43:08.000Z'}}, {'blockNum': '0xb1544c', 'uniqueId': '0xc638195b883fd2c8617fdf7206bdc868bc6321bcb3159e2d1cfb518d4491f90d:log:223', 'hash': '0xc638195b883fd2c8617fdf7206bdc868bc6321bcb3159e2d1cfb518d4491f90d', 'from': '0x413b16d28f0099bc30f59f78bf14b63bdad01101', 'to': '0x5fa9ced8772612eda6a64aa073ed59bec363674f', 'value': 1196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb67ec0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T15:50:56.000Z'}}, {'blockNum': '0xb1548c', 'uniqueId': '0x3f1fed8d6bd1701724041c88ca6c8a54fd9a686f7cf582ee636285ca5649e806:log:292', 'hash': '0x3f1fed8d6bd1701724041c88ca6c8a54fd9a686f7cf582ee636285ca5649e806', 'from': '0x5fa9ced8772612eda6a64aa073ed59bec363674f', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb67ec0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T16:02:52.000Z'}}, {'blockNum': '0xb154e1', 'uniqueId': '0x8371da92b697e5bb6d1f4c74a3ba3661bb7f86807955c70a74f61863c8e63035:log:145', 'hash': '0x8371da92b697e5bb6d1f4c74a3ba3661bb7f86807955c70a74f61863c8e63035', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e4b5ce0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T16:20:47.000Z'}}, {'blockNum': '0xb155bb', 'uniqueId': '0x5f21b8b145d42f19a6dbcb5faedb644ccab76899fc06e589e5167312671f6aad:log:216', 'hash': '0x5f21b8b145d42f19a6dbcb5faedb644ccab76899fc06e589e5167312671f6aad', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 24816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0eca9f00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:08:35.000Z'}}, {'blockNum': '0xb155d5', 'uniqueId': '0xac94c856b8912c7828fb67bfbdcbab8899f3ea6c570c5b029c1bbd9c6ea0343d:log:322', 'hash': '0xac94c856b8912c7828fb67bfbdcbab8899f3ea6c570c5b029c1bbd9c6ea0343d', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 30419.1619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12219883', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:14:52.000Z'}}, {'blockNum': '0xb15614', 'uniqueId': '0xc6b46f4574500516c52bde3b941bf2cf0863fc3afe249020918ebfde15e6d8fe:log:60', 'hash': '0xc6b46f4574500516c52bde3b941bf2cf0863fc3afe249020918ebfde15e6d8fe', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 20680.5621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c539a75', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:29:33.000Z'}}, {'blockNum': '0xb1561e', 'uniqueId': '0x28f966b1db7026c6fbf4000e4ae9172c8f6a9e48d5e867fdc99047b8240436b9:log:83', 'hash': '0x28f966b1db7026c6fbf4000e4ae9172c8f6a9e48d5e867fdc99047b8240436b9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 723.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6e5de8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:31:50.000Z'}}, {'blockNum': '0xb15630', 'uniqueId': '0xbb4cd01582742dedd00644ff908617f4a7e502871c5cd673730d06aae65ce166:log:232', 'hash': '0xbb4cd01582742dedd00644ff908617f4a7e502871c5cd673730d06aae65ce166', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20680.5621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c539a75', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:37:00.000Z'}}, {'blockNum': '0xb15644', 'uniqueId': '0x8431c8eb155fc6713d9e0dacfa109dd6a796b05d980c53e7a6116413cf467d98:log:125', 'hash': '0x8431c8eb155fc6713d9e0dacfa109dd6a796b05d980c53e7a6116413cf467d98', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e2425d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:40:40.000Z'}}, {'blockNum': '0xb15648', 'uniqueId': '0x6a3ee601b30d00fdc33196fe8ac7a1083d3585219b78f2f53c69cd1cd15e0faf:log:145', 'hash': '0x6a3ee601b30d00fdc33196fe8ac7a1083d3585219b78f2f53c69cd1cd15e0faf', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 723.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6e5de8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T17:41:05.000Z'}}, {'blockNum': '0xb158e5', 'uniqueId': '0x9829fdfe798ee7c45e56c7bff7612037183b70cac9469e846bcc38b67669613b:log:223', 'hash': '0x9829fdfe798ee7c45e56c7bff7612037183b70cac9469e846bcc38b67669613b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 22768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d921f00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:06:35.000Z'}}, {'blockNum': '0xb15979', 'uniqueId': '0x56513875661a89640cbd9f4e5c96c3385a179307df76f44269a37f3571a27d79:log:302', 'hash': '0x56513875661a89640cbd9f4e5c96c3385a179307df76f44269a37f3571a27d79', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 14244.963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x087d9bde', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:36:32.000Z'}}, {'blockNum': '0xb159d7', 'uniqueId': '0x814806287051cbecb561bcc31b01e15466bf3e48314e813bb5dc330997829c62:log:125', 'hash': '0x814806287051cbecb561bcc31b01e15466bf3e48314e813bb5dc330997829c62', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x36f2b710c09ca5b4cb287e9bdcd357202993ab0f', 'value': 18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02bf20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:54:46.000Z'}}, {'blockNum': '0xb159dc', 'uniqueId': '0x7bb354998cf21f9da6017d724e95f6d88cf9034d6950504950f21b8e49d8d950:log:176', 'hash': '0x7bb354998cf21f9da6017d724e95f6d88cf9034d6950504950f21b8e49d8d950', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 2461.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01779db5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T20:56:52.000Z'}}, {'blockNum': '0xb159fa', 'uniqueId': '0x825c6e3c8732b41e12e9ef8dd75268af86e30bd46e98adedf15ab56be96792a5:log:288', 'hash': '0x825c6e3c8732b41e12e9ef8dd75268af86e30bd46e98adedf15ab56be96792a5', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 7161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0444ae90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:03:21.000Z'}}, {'blockNum': '0xb15a07', 'uniqueId': '0xebe5e56b443772ea91a68560534c4a220eff017ab7279e25f7a5efd3f3c49eda:log:90', 'hash': '0xebe5e56b443772ea91a68560534c4a220eff017ab7279e25f7a5efd3f3c49eda', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 2269.7799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x015a5747', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:06:37.000Z'}}, {'blockNum': '0xb15a0a', 'uniqueId': '0xb4d8f0a0096c9aefef6f8b6212367a322231e65939feb92d46e5c249e59bae53:log:22', 'hash': '0xb4d8f0a0096c9aefef6f8b6212367a322231e65939feb92d46e5c249e59bae53', 'from': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'to': '0xb2a75fed542098dbeafcf6fe7d6d414480eea0ec', 'value': 107.0146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x105442', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:07:59.000Z'}}, {'blockNum': '0xb15a17', 'uniqueId': '0x5989cd38e7c320155133af449bd417d1eaa1729a43af6be07781c8e291cb1f8a:log:52', 'hash': '0x5989cd38e7c320155133af449bd417d1eaa1729a43af6be07781c8e291cb1f8a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 438.4802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x42e822', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:09:28.000Z'}}, {'blockNum': '0xb15a20', 'uniqueId': '0x7d7bba9c07f09cfbc698bb07e9ab8f6dd80d044436330ec6ce640e32a6cf574d:log:274', 'hash': '0x7d7bba9c07f09cfbc698bb07e9ab8f6dd80d044436330ec6ce640e32a6cf574d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbd47e5b28b273a41137a580c818bdb1cb6941fb6', 'value': 426.9802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4126ea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:11:57.000Z'}}, {'blockNum': '0xb15a42', 'uniqueId': '0x922550a8dcb9f2811792b19f66c4e6a975988e413d3b4bd9f48f5f1c545bdbae:log:187', 'hash': '0x922550a8dcb9f2811792b19f66c4e6a975988e413d3b4bd9f48f5f1c545bdbae', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcc1c5ae653c9ebc0974e45316839a33a90f821b2', 'value': 706.3402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6bc76a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:19:30.000Z'}}, {'blockNum': '0xb15a45', 'uniqueId': '0xb8e7ad1ea69f25da3c5857a88f88e3ba765a93d39cf92c5091df18a102b4e813:log:176', 'hash': '0xb8e7ad1ea69f25da3c5857a88f88e3ba765a93d39cf92c5091df18a102b4e813', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2386eb34987da185705f1d59a57d0fc9c8cebe6f', 'value': 60.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x092c0c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:21:10.000Z'}}, {'blockNum': '0xb15a60', 'uniqueId': '0xd40ef6a8d5a2545db2c0648f39cf771dc974c1f8df777b791ae9f6d3ffe7a87d:log:217', 'hash': '0xd40ef6a8d5a2545db2c0648f39cf771dc974c1f8df777b791ae9f6d3ffe7a87d', 'from': '0x14e8bd1cfd3605d663952dedb9b4fbfa4b510f22', 'to': '0xce2cc69cc301c799e314828eea7fc4cbbaf87c70', 'value': 1001.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x98d726', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:26:44.000Z'}}, {'blockNum': '0xb15a64', 'uniqueId': '0x4faddb42bf1bf8cf54e9df1688f3ba58dde75ac8b79249f84f391212f67c51dc:log:95', 'hash': '0x4faddb42bf1bf8cf54e9df1688f3ba58dde75ac8b79249f84f391212f67c51dc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x668877a76f7b9d74c9af8a9b7c204a186460bf92', 'value': 3779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0240a130', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:27:10.000Z'}}, {'blockNum': '0xb15a65', 'uniqueId': '0xcbb102bbe6bfaf1c858e392c51a2376d924feddcc1b33dff587e1954639e5a21:log:24', 'hash': '0xcbb102bbe6bfaf1c858e392c51a2376d924feddcc1b33dff587e1954639e5a21', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdffd616e83d9f3132da91f915c2863751dc31049', 'value': 2970.3983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01c53f2f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:27:37.000Z'}}, {'blockNum': '0xb15a71', 'uniqueId': '0xe0600054042c70ce413daa2e6915a37ae7c5d00ce62880c37e65d51607c9cf19:log:67', 'hash': '0xe0600054042c70ce413daa2e6915a37ae7c5d00ce62880c37e65d51607c9cf19', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0444ae90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:31:22.000Z'}}, {'blockNum': '0xb15a7e', 'uniqueId': '0xcbcb73d7e53f4af73f2f160a6c165fd41c24fe0bce515b62fe58978640c5e946:log:54', 'hash': '0xcbcb73d7e53f4af73f2f160a6c165fd41c24fe0bce515b62fe58978640c5e946', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3d3e4515af535072ad03f63a1a7b41e0607c98a2', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01285360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:34:26.000Z'}}, {'blockNum': '0xb15a7e', 'uniqueId': '0xe99a3f9c03c03a58410a667aba6399cdef61f5a5117f59293db9782f9608d851:log:55', 'hash': '0xe99a3f9c03c03a58410a667aba6399cdef61f5a5117f59293db9782f9608d851', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4483954b2cf526cc45b471c4141b2efe72b9068c', 'value': 460.516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4644e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:34:26.000Z'}}, {'blockNum': '0xb15a82', 'uniqueId': '0xb7c5ada3f9a8040c4790a6db7048a9b37cf4454f90ee40729deddfc3019626b6:log:80', 'hash': '0xb7c5ada3f9a8040c4790a6db7048a9b37cf4454f90ee40729deddfc3019626b6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x30a60a977758ae98d4bb143c8711d1bfb1f1e962', 'value': 5381.1653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033519c5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:35:22.000Z'}}, {'blockNum': '0xb15a82', 'uniqueId': '0x4673be76e774e57c0aa68d611010f1b41fcd89cfd71e774213a042085fb8329a:log:82', 'hash': '0x4673be76e774e57c0aa68d611010f1b41fcd89cfd71e774213a042085fb8329a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 4857.9674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e5445a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:35:22.000Z'}}, {'blockNum': '0xb15a82', 'uniqueId': '0xdd558b52288145d80d84874a7f97af862e8e465c532eb196302062f4a196882a:log:83', 'hash': '0xdd558b52288145d80d84874a7f97af862e8e465c532eb196302062f4a196882a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 5277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032534d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:35:22.000Z'}}, {'blockNum': '0xb15a8e', 'uniqueId': '0x899622ccc5563d9e16efbc343aea9582e3e39ae1c27ce6d1a4d0e8298431ed1f:log:55', 'hash': '0x899622ccc5563d9e16efbc343aea9582e3e39ae1c27ce6d1a4d0e8298431ed1f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdb697f324cabe355b878ec646c68b1b364ee50f4', 'value': 1074.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa40452', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:37:08.000Z'}}, {'blockNum': '0xb15a9f', 'uniqueId': '0x1721e96e279b95bdd63e1fcb60bf967a4e338692c8deddb4d83397d04ffacc2e:log:54', 'hash': '0x1721e96e279b95bdd63e1fcb60bf967a4e338692c8deddb4d83397d04ffacc2e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xef31edc28d9cc1cecd58e379cc5887072afb0b6e', 'value': 8273.673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ee765a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:40:10.000Z'}}, {'blockNum': '0xb15aa0', 'uniqueId': '0xc5107a4ff919302c2e40566ddb66f02e3bc9b92bcaf14b8d39010d509243f337:log:13', 'hash': '0xc5107a4ff919302c2e40566ddb66f02e3bc9b92bcaf14b8d39010d509243f337', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5672297d55d924a9043ff2b587c5cce73b2ffd44', 'value': 439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x42fc70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:40:40.000Z'}}, {'blockNum': '0xb15aa8', 'uniqueId': '0x6a9b02e6ea7b7aec1ba8f86b67cd576452c034acd415919362de5048bd0ad63f:log:143', 'hash': '0x6a9b02e6ea7b7aec1ba8f86b67cd576452c034acd415919362de5048bd0ad63f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b7da51869785987efb679d36e7dad1e406f397a', 'value': 2200.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fcfbc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:41:40.000Z'}}, {'blockNum': '0xb15aab', 'uniqueId': '0x2797c150e2f3472b25c457d5c212c96bf7294239fd397508dbf7b64ba4492e61:log:286', 'hash': '0x2797c150e2f3472b25c457d5c212c96bf7294239fd397508dbf7b64ba4492e61', 'from': '0x1d4051d87e326256b489ef99db4a238e88591e7c', 'to': '0x335757884399448f6505158ca824e1b280ca26f6', 'value': 1935.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x012757d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:17.000Z'}}, {'blockNum': '0xb15aaf', 'uniqueId': '0x842f3d49054a223cd715f51611020f58ff4333baa9bf4a888b6b740db4f0c912:log:94', 'hash': '0x842f3d49054a223cd715f51611020f58ff4333baa9bf4a888b6b740db4f0c912', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbd6f3546771f120ef90b49fa86b79da3efff2a7e', 'value': 1043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9f2630', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:45.000Z'}}, {'blockNum': '0xb15aaf', 'uniqueId': '0x5c6195b63b532bfc540a98b3579bb1768fee4c74df176d9d2c147f8a7655c340:log:95', 'hash': '0x5c6195b63b532bfc540a98b3579bb1768fee4c74df176d9d2c147f8a7655c340', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 5337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x032e5c90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:45.000Z'}}, {'blockNum': '0xb15ab0', 'uniqueId': '0xfa3b210a159ad973dc876a4a0d163f3c3b004990de11c38cdceef48ff7411e2c:log:27', 'hash': '0xfa3b210a159ad973dc876a4a0d163f3c3b004990de11c38cdceef48ff7411e2c', 'from': '0x3d3e4515af535072ad03f63a1a7b41e0607c98a2', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01285360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:42:57.000Z'}}, {'blockNum': '0xb15ab3', 'uniqueId': '0xb8f462c8aa689908cff62aa9cfa76a4c22cb8e53338c2cf52258a3e0da3d215f:log:142', 'hash': '0xb8f462c8aa689908cff62aa9cfa76a4c22cb8e53338c2cf52258a3e0da3d215f', 'from': '0x30a60a977758ae98d4bb143c8711d1bfb1f1e962', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 5381.1653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x033519c5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:43:09.000Z'}}, {'blockNum': '0xb15ab3', 'uniqueId': '0x298acf56c0898206e93ca593c13c467d91d2e8310f2c6541d91741ada90f1578:log:186', 'hash': '0x298acf56c0898206e93ca593c13c467d91d2e8310f2c6541d91741ada90f1578', 'from': '0xdb697f324cabe355b878ec646c68b1b364ee50f4', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 1074.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa40452', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:43:09.000Z'}}, {'blockNum': '0xb15ab6', 'uniqueId': '0xd1a8d9dc62102d6b48f68cb0c5a6b69e9411f1697c3915eaf70e23c06aafdd97:log:201', 'hash': '0xd1a8d9dc62102d6b48f68cb0c5a6b69e9411f1697c3915eaf70e23c06aafdd97', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 9977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f25e90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:43:36.000Z'}}, {'blockNum': '0xb15abb', 'uniqueId': '0xe75615199eca1ceae0ce22dfc77a7e6b5d4e0c714e381eeb2a676aa4e8501b2c:log:253', 'hash': '0xe75615199eca1ceae0ce22dfc77a7e6b5d4e0c714e381eeb2a676aa4e8501b2c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'value': 727.2131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6ef6c3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:45:14.000Z'}}, {'blockNum': '0xb15abe', 'uniqueId': '0xa3474ba1619bbb6ac3f12a0dccfdb7b9fed49c0cc917b8ad3c6048c55347dc1f:log:5', 'hash': '0xa3474ba1619bbb6ac3f12a0dccfdb7b9fed49c0cc917b8ad3c6048c55347dc1f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 4875.097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e7e17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:07.000Z'}}, {'blockNum': '0xb15abe', 'uniqueId': '0xbfc557b5bc4b92102f9d65a6fe9e45a9bd6e628410122f27d6c23ae9f89e12e5:log:167', 'hash': '0xbfc557b5bc4b92102f9d65a6fe9e45a9bd6e628410122f27d6c23ae9f89e12e5', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c45eff0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:07.000Z'}}, {'blockNum': '0xb15abe', 'uniqueId': '0xc1a2252c206854edc57db87b58b5a7fd12d197ff781549bf8d10f1967ec29c1a:log:168', 'hash': '0xc1a2252c206854edc57db87b58b5a7fd12d197ff781549bf8d10f1967ec29c1a', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4857.9674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e5445a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:07.000Z'}}, {'blockNum': '0xb15abf', 'uniqueId': '0x0361d7129244b8e4d172ccc12802bb6e734da20fbbf836dec8905ae20bcec063:log:63', 'hash': '0x0361d7129244b8e4d172ccc12802bb6e734da20fbbf836dec8905ae20bcec063', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:13.000Z'}}, {'blockNum': '0xb15ac2', 'uniqueId': '0xb1e8e3e9239360a8c9adc17589170f6a3f26b68f1f192eea91069f244dd057c6:log:137', 'hash': '0xb1e8e3e9239360a8c9adc17589170f6a3f26b68f1f192eea91069f244dd057c6', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x038dc8d5b540712a791f6b17df4e13298debbdcb', 'value': 10217.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0617068c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:46:25.000Z'}}, {'blockNum': '0xb15ac5', 'uniqueId': '0xdf22da59c77948675f48ffb69e97e2c079bf4479acba7c155384f52f095c82e3:log:62', 'hash': '0xdf22da59c77948675f48ffb69e97e2c079bf4479acba7c155384f52f095c82e3', 'from': '0xef31edc28d9cc1cecd58e379cc5887072afb0b6e', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 8273.673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ee765a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:47:14.000Z'}}, {'blockNum': '0xb15ad3', 'uniqueId': '0x63a22488bc575ab86adbaca9db7734c275652864ea56bc1144dd0aa4740e7895:log:176', 'hash': '0x63a22488bc575ab86adbaca9db7734c275652864ea56bc1144dd0aa4740e7895', 'from': '0xbd6f3546771f120ef90b49fa86b79da3efff2a7e', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9f2630', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:49:23.000Z'}}, {'blockNum': '0xb15ad8', 'uniqueId': '0x1cf39cf5ac2845f0e557b6d77ddb4d1ffa7957bc221fad75823250f937d416d6:log:259', 'hash': '0x1cf39cf5ac2845f0e557b6d77ddb4d1ffa7957bc221fad75823250f937d416d6', 'from': '0x6b7da51869785987efb679d36e7dad1e406f397a', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 2200.774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fcfbc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:50:53.000Z'}}, {'blockNum': '0xb15adb', 'uniqueId': '0x91933f4b7444a3fd532faf1a3f65f023df97d1b71f5e3d2904c560ca0e55e9fc:log:114', 'hash': '0x91933f4b7444a3fd532faf1a3f65f023df97d1b71f5e3d2904c560ca0e55e9fc', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4875.097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02e7e17a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:51:40.000Z'}}, {'blockNum': '0xb15ae0', 'uniqueId': '0xcb4e256ff9c80c303289a1546a670405818561e03d36c5507e6351f1a622fdd2:log:250', 'hash': '0xcb4e256ff9c80c303289a1546a670405818561e03d36c5507e6351f1a622fdd2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 10194.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0613841c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:52:26.000Z'}}, {'blockNum': '0xb15ae5', 'uniqueId': '0xb9c49eedbcdff45a6da46312897f9dfffae6243fc9f38c7a6114ebec1bea12d8:log:154', 'hash': '0xb9c49eedbcdff45a6da46312897f9dfffae6243fc9f38c7a6114ebec1bea12d8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:53:58.000Z'}}, {'blockNum': '0xb15ae9', 'uniqueId': '0xbb2c376e357df8338e44f1f60aeba27348daeda8621300165ac73036e91b7508:log:202', 'hash': '0xbb2c376e357df8338e44f1f60aeba27348daeda8621300165ac73036e91b7508', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 14977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08ed4f10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:55:18.000Z'}}, {'blockNum': '0xb15aef', 'uniqueId': '0x474369c3b6f700629e8129e75d9fd5e7b84e83f140b11df0c83cdd6aaae09776:log:143', 'hash': '0x474369c3b6f700629e8129e75d9fd5e7b84e83f140b11df0c83cdd6aaae09776', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 14977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08ed4f10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:57:08.000Z'}}, {'blockNum': '0xb15af4', 'uniqueId': '0x30924f8262c3fe1a118bf321283a474359a501a3c529035741d64df7ed05c857:log:83', 'hash': '0x30924f8262c3fe1a118bf321283a474359a501a3c529035741d64df7ed05c857', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T21:58:00.000Z'}}, {'blockNum': '0xb15afe', 'uniqueId': '0xbe7eb7dc4572d4c2ffbebc3b43dee99c5f553249499c5c90d8bf9c84c53e97c4:log:125', 'hash': '0xbe7eb7dc4572d4c2ffbebc3b43dee99c5f553249499c5c90d8bf9c84c53e97c4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'value': 727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6eee70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:01:48.000Z'}}, {'blockNum': '0xb15afe', 'uniqueId': '0x1f62d674b734188eba47c20233fa523827ddbf7ec7975f6ae89e35d55ab82f21:log:126', 'hash': '0x1f62d674b734188eba47c20233fa523827ddbf7ec7975f6ae89e35d55ab82f21', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xcfe0d8f798ac82ce98bbf437e36546235d353912', 'value': 429.547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x418b2e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:01:48.000Z'}}, {'blockNum': '0xb15aff', 'uniqueId': '0x620346cdc5dfa9cefe7f543bc4cb7f89992a4807bcbb3da2f58c7c633b154d8f:log:169', 'hash': '0x620346cdc5dfa9cefe7f543bc4cb7f89992a4807bcbb3da2f58c7c633b154d8f', 'from': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:17.000Z'}}, {'blockNum': '0xb15aff', 'uniqueId': '0x7844e8faf79ed5badd874022a5e80accaef92aca3149a0417a221a2a7fa89114:log:173', 'hash': '0x7844e8faf79ed5badd874022a5e80accaef92aca3149a0417a221a2a7fa89114', 'from': '0x038dc8d5b540712a791f6b17df4e13298debbdcb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10217.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0617068c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:17.000Z'}}, {'blockNum': '0xb15aff', 'uniqueId': '0x0f1374cc9cde9e3ff81d4f8dc1eaa3dbfa95185734535ccc3f2ecbac710edc15:log:174', 'hash': '0x0f1374cc9cde9e3ff81d4f8dc1eaa3dbfa95185734535ccc3f2ecbac710edc15', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x88939c46b2f562102d5e1e4ec67c150c865e506a', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x124f80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:17.000Z'}}, {'blockNum': '0xb15b01', 'uniqueId': '0x369318e296c35b32c2257c9f69a55503cbe6148018d90dfeeb1042474a7b7a02:log:161', 'hash': '0x369318e296c35b32c2257c9f69a55503cbe6148018d90dfeeb1042474a7b7a02', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 14269.7988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08816604', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:02:40.000Z'}}, {'blockNum': '0xb15b06', 'uniqueId': '0x772a48769029dcde3727f8ef9655988d6339d8f34c6bb82fda27db98cb33bdc6:log:242', 'hash': '0x772a48769029dcde3727f8ef9655988d6339d8f34c6bb82fda27db98cb33bdc6', 'from': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 727.2131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6ef6c3', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:03:41.000Z'}}, {'blockNum': '0xb15b13', 'uniqueId': '0x2006af6975b56a365965bfaa0fe59a0c80c61e25ce1c57d36c252641867822a9:log:286', 'hash': '0x2006af6975b56a365965bfaa0fe59a0c80c61e25ce1c57d36c252641867822a9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 625100.3259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x017496bd7b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:05:48.000Z'}}, {'blockNum': '0xb15b14', 'uniqueId': '0xe1d5eaa964bf439e9a0d1a8320b96fcd14651274c907cb94c37f59a7a6c38334:log:234', 'hash': '0xe1d5eaa964bf439e9a0d1a8320b96fcd14651274c907cb94c37f59a7a6c38334', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 29954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11da9e20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:06:09.000Z'}}, {'blockNum': '0xb15b14', 'uniqueId': '0x0694242544d6ab8461decb6f7e8f2024ecacb69a75d2fa2d46e0028d070aa30e:log:235', 'hash': '0x0694242544d6ab8461decb6f7e8f2024ecacb69a75d2fa2d46e0028d070aa30e', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10194.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0613841c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:06:09.000Z'}}, {'blockNum': '0xb15b17', 'uniqueId': '0x7564529681a6bb6e5b6b8e5136fcaf8bdb0bcece36a77f3ef367c70ef692288b:log:264', 'hash': '0x7564529681a6bb6e5b6b8e5136fcaf8bdb0bcece36a77f3ef367c70ef692288b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 23602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0e116120', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:07:04.000Z'}}, {'blockNum': '0xb15b18', 'uniqueId': '0x95e8d759d891253124c5e3fe8d35112f76da7655c1c1f15bb922cd9f16141f92:log:64', 'hash': '0x95e8d759d891253124c5e3fe8d35112f76da7655c1c1f15bb922cd9f16141f92', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 7977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c13190', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:07:15.000Z'}}, {'blockNum': '0xb15b18', 'uniqueId': '0xdce9dc1edf6048370974bdf7fc85bb85af9ed65065d4b0a297876e99372c40cd:log:65', 'hash': '0xdce9dc1edf6048370974bdf7fc85bb85af9ed65065d4b0a297876e99372c40cd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:07:15.000Z'}}, {'blockNum': '0xb15b1c', 'uniqueId': '0xd30b550ec50b71cfdd373562c8329ac2255da74d3fbf433a9e572e357b6d4b49:log:41', 'hash': '0xd30b550ec50b71cfdd373562c8329ac2255da74d3fbf433a9e572e357b6d4b49', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 10768.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x066b18bc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:08:24.000Z'}}, {'blockNum': '0xb15b28', 'uniqueId': '0xcedf8433fa469f06d8e9ad198766792ce9bdff6bc6bdd9414027cb2f573ab219:log:16', 'hash': '0xcedf8433fa469f06d8e9ad198766792ce9bdff6bc6bdd9414027cb2f573ab219', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xa444bbd83293de79e5802daa8b81bd0277fe68fd', 'value': 1805.6404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011384d4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:10:20.000Z'}}, {'blockNum': '0xb15b2a', 'uniqueId': '0xf667a52d8b845493cd76bd81e89febd112410a9094b2ee947f3b253ca1ca9d5e:log:41', 'hash': '0xf667a52d8b845493cd76bd81e89febd112410a9094b2ee947f3b253ca1ca9d5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 22199.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0d3b6555', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:10:29.000Z'}}, {'blockNum': '0xb15b2c', 'uniqueId': '0x0d41d5de8bb34f25ea8211eb0dbffae6cedcc8b62782c1a56d052c5bb2f63ede:log:54', 'hash': '0x0d41d5de8bb34f25ea8211eb0dbffae6cedcc8b62782c1a56d052c5bb2f63ede', 'from': '0x5d0ba857f0c51612f04e4d59d3d0edf2574fd476', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0165a0bc00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:10:41.000Z'}}, {'blockNum': '0xb15b30', 'uniqueId': '0x18b6d0c863eadc160714e3032b94f5e8b83a5384c4ff9485f7d9cb603fb2b995:log:269', 'hash': '0x18b6d0c863eadc160714e3032b94f5e8b83a5384c4ff9485f7d9cb603fb2b995', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30176.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11fc96e5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:11:34.000Z'}}, {'blockNum': '0xb15b30', 'uniqueId': '0x2f7f12fbd87f2084c1ca84839b7860db5e4e7195ba8ee74490ca7babe86adf6d:log:270', 'hash': '0x2f7f12fbd87f2084c1ca84839b7860db5e4e7195ba8ee74490ca7babe86adf6d', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10768.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x066b18bc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:11:34.000Z'}}, {'blockNum': '0xb15b30', 'uniqueId': '0x7c1af6cf1dee8c9a0293f62ace38b0bc0e04dde136fc77793c80110f3b26d09a:log:271', 'hash': '0x7c1af6cf1dee8c9a0293f62ace38b0bc0e04dde136fc77793c80110f3b26d09a', 'from': '0xaf757dd70852214eca1b8efc7075c1dfd1fc9aa0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6eee70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:11:34.000Z'}}, {'blockNum': '0xb15b3f', 'uniqueId': '0xcdd0bfc1b79ff895ef8e89d00d1e422c5055fec37bc2738b8450f01c1c64c810:log:229', 'hash': '0xcdd0bfc1b79ff895ef8e89d00d1e422c5055fec37bc2738b8450f01c1c64c810', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 31473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12c26610', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:13:31.000Z'}}, {'blockNum': '0xb15b49', 'uniqueId': '0x85c51b6beddc397a30bea59fd3024b69901f66709bc7f3742d626b3eadc8ce9a:log:21', 'hash': '0x85c51b6beddc397a30bea59fd3024b69901f66709bc7f3742d626b3eadc8ce9a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 1752.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x010b6cf0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:15:57.000Z'}}, {'blockNum': '0xb15b49', 'uniqueId': '0x17e3e13a5428a45148d454657c542e81fe0488731204729d467e6f47c1aad2e4:log:22', 'hash': '0x17e3e13a5428a45148d454657c542e81fe0488731204729d467e6f47c1aad2e4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:15:57.000Z'}}, {'blockNum': '0xb15b4a', 'uniqueId': '0x46b34b4b5f35fc04a8f0e1f280987cbcf44c0191eb068eaf1976c893280eb08d:log:286', 'hash': '0x46b34b4b5f35fc04a8f0e1f280987cbcf44c0191eb068eaf1976c893280eb08d', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:15:58.000Z'}}, {'blockNum': '0xb15b4e', 'uniqueId': '0x959a6ad5cc631051a67e4e10d14f5346e493750b0fdbb4e5a1f4c230e1e5ae0a:log:273', 'hash': '0x959a6ad5cc631051a67e4e10d14f5346e493750b0fdbb4e5a1f4c230e1e5ae0a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15088.1998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe46ce', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:16:48.000Z'}}, {'blockNum': '0xb15b54', 'uniqueId': '0xe13bc5f44fbd627590adbad353f84074ca21fcbc8377bed76c1023aad4f2e917:log:174', 'hash': '0xe13bc5f44fbd627590adbad353f84074ca21fcbc8377bed76c1023aad4f2e917', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 11660.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f338aa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:18:06.000Z'}}, {'blockNum': '0xb15b5b', 'uniqueId': '0xadde4577526f166d8ca190b693631afb298f960ce63f9956eca76364b112957f:log:75', 'hash': '0xadde4577526f166d8ca190b693631afb298f960ce63f9956eca76364b112957f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 18977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b4fa910', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:19:19.000Z'}}, {'blockNum': '0xb15b5b', 'uniqueId': '0x3c73540a04866cea131ae93aaf85c34c7a38fccbb266ddb3fafd921004a58762:log:76', 'hash': '0x3c73540a04866cea131ae93aaf85c34c7a38fccbb266ddb3fafd921004a58762', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa614221a6234c588876a278b2fa3f6371595dfb3', 'value': 50023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dd0e770', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:19:19.000Z'}}, {'blockNum': '0xb15b65', 'uniqueId': '0x75364ead34467abb6443bfa6e8ee16c4cc3bdb8371524a08b69ec7665918804a:log:205', 'hash': '0x75364ead34467abb6443bfa6e8ee16c4cc3bdb8371524a08b69ec7665918804a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12799d40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:22:13.000Z'}}, {'blockNum': '0xb15b82', 'uniqueId': '0x2ba8fd49f22683532464937ae82e8cb247049cf5d87567839534d19e163d507c:log:154', 'hash': '0x2ba8fd49f22683532464937ae82e8cb247049cf5d87567839534d19e163d507c', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 217381.6373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8191ce35', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:30:22.000Z'}}, {'blockNum': '0xb15ba1', 'uniqueId': '0xe58b462277e315ef3872d66461961bd9b1ef5d91d644e59c56a2cd0d0c6a1948:log:62', 'hash': '0xe58b462277e315ef3872d66461961bd9b1ef5d91d644e59c56a2cd0d0c6a1948', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x36f2b710c09ca5b4cb287e9bdcd357202993ab0f', 'value': 8793.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x053dd65a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:37:07.000Z'}}, {'blockNum': '0xb15ba2', 'uniqueId': '0x191fa53a9e249ff589464095c97ec4118593f4afb8317c47b19e2704f8ea1b98:log:71', 'hash': '0x191fa53a9e249ff589464095c97ec4118593f4afb8317c47b19e2704f8ea1b98', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15088.1998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe46ce', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:37:08.000Z'}}, {'blockNum': '0xb15ba2', 'uniqueId': '0x48ff7b6637cbb9b63d5f5179353716b0e1e4410b2138b480be57a8c5347e16ae:log:72', 'hash': '0x48ff7b6637cbb9b63d5f5179353716b0e1e4410b2138b480be57a8c5347e16ae', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:37:08.000Z'}}, {'blockNum': '0xb15bb4', 'uniqueId': '0xc2c2d5590a5c4b2351c1c46d5bfa2edd47c6e760cf7c9b2f01d25ef964602bbc:log:70', 'hash': '0xc2c2d5590a5c4b2351c1c46d5bfa2edd47c6e760cf7c9b2f01d25ef964602bbc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 113514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x43a8dca0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:40:36.000Z'}}, {'blockNum': '0xb15bb5', 'uniqueId': '0x28c9918e7666e82b0fe21006df2646aabf79ba07af0a61a4a83889d7505e19db:log:126', 'hash': '0x28c9918e7666e82b0fe21006df2646aabf79ba07af0a61a4a83889d7505e19db', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7928.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04b9cef0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:40:38.000Z'}}, {'blockNum': '0xb15bb9', 'uniqueId': '0x1a01ee71e0583d46cff04fe5db0ace96d5d1b2e25c21e633594d9324de6221b5:log:148', 'hash': '0x1a01ee71e0583d46cff04fe5db0ace96d5d1b2e25c21e633594d9324de6221b5', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 81446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x308bac60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:41:07.000Z'}}, {'blockNum': '0xb15bb9', 'uniqueId': '0x148a6e22a62d1bfb38ec9460e91d3c0133e3d260b74ac34237eaefd0ff42d201:log:149', 'hash': '0x148a6e22a62d1bfb38ec9460e91d3c0133e3d260b74ac34237eaefd0ff42d201', 'from': '0xa614221a6234c588876a278b2fa3f6371595dfb3', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 50023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dd0e770', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:41:07.000Z'}}, {'blockNum': '0xb15bb9', 'uniqueId': '0x5802c776e508640d8e5384fcc052fca1486293d3f299dec33aad62cae1ecd046:log:150', 'hash': '0x5802c776e508640d8e5384fcc052fca1486293d3f299dec33aad62cae1ecd046', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11660.305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f338aa', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:41:07.000Z'}}, {'blockNum': '0xb15bc0', 'uniqueId': '0x3b9b96f132f7f86ef341b7e0305a8bd7adb1562a1e24d68d1aaf89ec47af676a:log:186', 'hash': '0x3b9b96f132f7f86ef341b7e0305a8bd7adb1562a1e24d68d1aaf89ec47af676a', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'value': 29982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11dee3e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:42:29.000Z'}}, {'blockNum': '0xb15bd5', 'uniqueId': '0x97ea56db26934ada570149429d77144dd7d8c473956ae7ba73e6babbaeb11c6d:log:293', 'hash': '0x97ea56db26934ada570149429d77144dd7d8c473956ae7ba73e6babbaeb11c6d', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 9681.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05c53be0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:49:29.000Z'}}, {'blockNum': '0xb15bec', 'uniqueId': '0x94fc3ee7a220c210e85e72b5e05492e796c1e054dea08baee95db7d209932b45:log:80', 'hash': '0x94fc3ee7a220c210e85e72b5e05492e796c1e054dea08baee95db7d209932b45', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'value': 49982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1dcaa5e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T22:54:34.000Z'}}, {'blockNum': '0xb15c09', 'uniqueId': '0x110ad3174559d586af6df207d0f559c6539883bf83ecbb2938dd075fc8ae3df9:log:166', 'hash': '0x110ad3174559d586af6df207d0f559c6539883bf83ecbb2938dd075fc8ae3df9', 'from': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 79964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2fa989c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:01:06.000Z'}}, {'blockNum': '0xb15c09', 'uniqueId': '0x6fc03d4e47c2afe192c2bab8da3a33b4df015f33f76ed60ffff6fa6aff0bfd68:log:167', 'hash': '0x6fc03d4e47c2afe192c2bab8da3a33b4df015f33f76ed60ffff6fa6aff0bfd68', 'from': '0x36f2b710c09ca5b4cb287e9bdcd357202993ab0f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8811.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0540957a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:01:06.000Z'}}, {'blockNum': '0xb15c1c', 'uniqueId': '0x45dba61e2a1b07f24708f657666f830e22c44ed3b162830e747094413f2b7892:log:396', 'hash': '0x45dba61e2a1b07f24708f657666f830e22c44ed3b162830e747094413f2b7892', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 11989.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07258666', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:05:13.000Z'}}, {'blockNum': '0xb15c2a', 'uniqueId': '0x17ae797f93eed5f7c3e414dd26aadf40872501f6da84a5bc128edd81dc72eab2:log:334', 'hash': '0x17ae797f93eed5f7c3e414dd26aadf40872501f6da84a5bc128edd81dc72eab2', 'from': '0x22b0ac0be4633f57fa4457268ad365c11227e172', 'to': '0x1cbc7f14a99efd6c0f72e029c60d4b7d48aa272a', 'value': 746.966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x71fa5c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:08:38.000Z'}}, {'blockNum': '0xb15c2e', 'uniqueId': '0x0e2fd9f56b0b5884248ea729bedbf611c7f7ff484c30d00bd9860d750e2649aa:log:111', 'hash': '0x0e2fd9f56b0b5884248ea729bedbf611c7f7ff484c30d00bd9860d750e2649aa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe2e0d798dbddb1c66d499ade2f065303e9f3a3ad', 'value': 503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4cc070', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:09:54.000Z'}}, {'blockNum': '0xb15c4d', 'uniqueId': '0xe44af12791e59938cdf6b23a22c607373beb0142e8580b012f6f7f82bfa991c8:log:196', 'hash': '0xe44af12791e59938cdf6b23a22c607373beb0142e8580b012f6f7f82bfa991c8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 41737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x18e08f90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:16:17.000Z'}}, {'blockNum': '0xb15c61', 'uniqueId': '0x77e7b9fdfb7111079d39ef86cbf8e1cfee2b23cd4a1322da0789f8375183f662:log:46', 'hash': '0x77e7b9fdfb7111079d39ef86cbf8e1cfee2b23cd4a1322da0789f8375183f662', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 119352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4723ab80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:20:41.000Z'}}, {'blockNum': '0xb15c63', 'uniqueId': '0xab032a768e9c28374a098a67792a19c74105d93017d257d762d379f22f23c6f7:log:352', 'hash': '0xab032a768e9c28374a098a67792a19c74105d93017d257d762d379f22f23c6f7', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11989.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07258666', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:21:25.000Z'}}, {'blockNum': '0xb15c73', 'uniqueId': '0x5865d12d05f0cf41b51fd76a5b4b987b0c80cecf317c544d339b682c031095a9:log:116', 'hash': '0x5865d12d05f0cf41b51fd76a5b4b987b0c80cecf317c544d339b682c031095a9', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 41737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x18e08f90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:25:53.000Z'}}, {'blockNum': '0xb15c79', 'uniqueId': '0xaa9fc428067ae72e2e595b2d282c9f78660321b4a12c50a9f13627c3079ce286:log:17', 'hash': '0xaa9fc428067ae72e2e595b2d282c9f78660321b4a12c50a9f13627c3079ce286', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 37977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x16a2d490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:28:01.000Z'}}, {'blockNum': '0xb15c87', 'uniqueId': '0x03d55e8da625d98bd3c7f4de2b474f46149fe89c9d54560ba8b3fdb080fc6122:log:307', 'hash': '0x03d55e8da625d98bd3c7f4de2b474f46149fe89c9d54560ba8b3fdb080fc6122', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 37977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x16a2d490', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:31:24.000Z'}}, {'blockNum': '0xb15c95', 'uniqueId': '0xc2ffe2fd66ce0727ac595c42921d4d2da831eabd4fec3d06daa9d1317a344884:log:263', 'hash': '0xc2ffe2fd66ce0727ac595c42921d4d2da831eabd4fec3d06daa9d1317a344884', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fc4330', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:34:19.000Z'}}, {'blockNum': '0xb15cb1', 'uniqueId': '0xc699135fbeb4e5e9a7a34ca4aaebaf754b1de531869ca4db829e18faf123767c:log:163', 'hash': '0xc699135fbeb4e5e9a7a34ca4aaebaf754b1de531869ca4db829e18faf123767c', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fc4330', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:41:32.000Z'}}, {'blockNum': '0xb15cb7', 'uniqueId': '0x8ab9c16ba102d0fef09ee2cb57819bd6203950f8a79b16971e31cc67db51967a:log:229', 'hash': '0x8ab9c16ba102d0fef09ee2cb57819bd6203950f8a79b16971e31cc67db51967a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2357c44eba59ebbb3a4c079388206b52b347b0af', 'value': 77, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bbfd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-09T23:42:17.000Z'}}, {'blockNum': '0xb15d01', 'uniqueId': '0x860e77a18459c36594eb096fc07496d5c8d1ae6e3ecfdd7e50a5c37f6829a301:log:48', 'hash': '0x860e77a18459c36594eb096fc07496d5c8d1ae6e3ecfdd7e50a5c37f6829a301', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12259.705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x074eaeba', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:00:07.000Z'}}, {'blockNum': '0xb15d02', 'uniqueId': '0x398c7f0c0f5f5b077c6a0b443d9832de9f17516fb996ede870fc1b39028573a3:log:89', 'hash': '0x398c7f0c0f5f5b077c6a0b443d9832de9f17516fb996ede870fc1b39028573a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 8030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c947e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:00:09.000Z'}}, {'blockNum': '0xb15d1f', 'uniqueId': '0xd2c02254eeae23607f9f970585414f0c36a2be9d838fbac7e3cdd3eecac38919:log:125', 'hash': '0xd2c02254eeae23607f9f970585414f0c36a2be9d838fbac7e3cdd3eecac38919', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12259.705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x074eaeba', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:07:03.000Z'}}, {'blockNum': '0xb15d1f', 'uniqueId': '0xb0decef9c57033efe4afbe26868a36a4a27eb816e0a630c5f9a39a46e2d8b182:log:126', 'hash': '0xb0decef9c57033efe4afbe26868a36a4a27eb816e0a630c5f9a39a46e2d8b182', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 8030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c947e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:07:03.000Z'}}, {'blockNum': '0xb15d22', 'uniqueId': '0x266675c4308f6efbfada1aec8ffa0e4cd8a6d4ed4296a02af7538daa223d82c6:log:211', 'hash': '0x266675c4308f6efbfada1aec8ffa0e4cd8a6d4ed4296a02af7538daa223d82c6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc70c36336037ed70c55440453b8acc64225b22f6', 'value': 4747.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02d45e7a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:08:02.000Z'}}, {'blockNum': '0xb15d2b', 'uniqueId': '0x99e314f072274c3d9569f597413988095f87511b54f3492b855b8a5ec8d0cc99:log:126', 'hash': '0x99e314f072274c3d9569f597413988095f87511b54f3492b855b8a5ec8d0cc99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1206b730', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:10:24.000Z'}}, {'blockNum': '0xb15d2f', 'uniqueId': '0x918d1e9e4e863880ca9eca4434d4e2d3cbfbf5c5b96080ccb4af8b957c976577:log:83', 'hash': '0x918d1e9e4e863880ca9eca4434d4e2d3cbfbf5c5b96080ccb4af8b957c976577', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x115120f2e6b2866c731d9f9186a7775707843e98', 'value': 1107.2439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa8f3b7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:11:05.000Z'}}, {'blockNum': '0xb15d38', 'uniqueId': '0xabf2a8e23f6abf6d9893a80c62031e47a8cdcdb50cc36f880c4811efd7bd17dc:log:159', 'hash': '0xabf2a8e23f6abf6d9893a80c62031e47a8cdcdb50cc36f880c4811efd7bd17dc', 'from': '0xc70c36336037ed70c55440453b8acc64225b22f6', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 4747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02d455b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:12:53.000Z'}}, {'blockNum': '0xb15d41', 'uniqueId': '0x9165cf5ecb9fddd36365d23b7fe6ee2c06c2426fba4a8bc921504e3240d1c5f8:log:153', 'hash': '0x9165cf5ecb9fddd36365d23b7fe6ee2c06c2426fba4a8bc921504e3240d1c5f8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fa4760', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:14:15.000Z'}}, {'blockNum': '0xb15d47', 'uniqueId': '0xd32a43a25e35bc763c214ac5bac021462e43c608607d87828b741a0420373dbf:log:112', 'hash': '0xd32a43a25e35bc763c214ac5bac021462e43c608607d87828b741a0420373dbf', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1206b730', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:16:02.000Z'}}, {'blockNum': '0xb15d59', 'uniqueId': '0xb8ce6e3f04ebfdacb0cb2bb327a1709222f1443b5f23acc476c61348c9e58982:log:297', 'hash': '0xb8ce6e3f04ebfdacb0cb2bb327a1709222f1443b5f23acc476c61348c9e58982', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf20f71e5e5862c6aa009ae4d65d9d1d330d0a7e4', 'value': 7224.9581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044e70ed', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:20:10.000Z'}}, {'blockNum': '0xb15d5a', 'uniqueId': '0x7e4cf56b503ff0926bf9de3104aeed24169356cf56ffca2acba107f345f57c9d:log:33', 'hash': '0x7e4cf56b503ff0926bf9de3104aeed24169356cf56ffca2acba107f345f57c9d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:21:03.000Z'}}, {'blockNum': '0xb15d6d', 'uniqueId': '0xe55c442232541da9d20376784b9f58be70686423ca9731709c6815a72abff9c6:log:179', 'hash': '0xe55c442232541da9d20376784b9f58be70686423ca9731709c6815a72abff9c6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e09190', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:25:42.000Z'}}, {'blockNum': '0xb15d6d', 'uniqueId': '0x5a1fc941b0de0a202a9180a8d4274a4aea287da2fd90bddc73d2aa5c5c1fd8e2:log:181', 'hash': '0x5a1fc941b0de0a202a9180a8d4274a4aea287da2fd90bddc73d2aa5c5c1fd8e2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x166b8f9de0fdee735a08704b9eec47cad599ef60', 'value': 985.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x96733c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:25:42.000Z'}}, {'blockNum': '0xb15d6e', 'uniqueId': '0x64611e8ab3193cc923b0f57f8bd3ea870e4edc540256fb5e93cfef36e7fa6930:log:137', 'hash': '0x64611e8ab3193cc923b0f57f8bd3ea870e4edc540256fb5e93cfef36e7fa6930', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fa4760', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:25:48.000Z'}}, {'blockNum': '0xb15d70', 'uniqueId': '0x963e3c42df5336376261e2637ac5db0f166d4e0bd1bb0101379f3113b23a0ecf:log:217', 'hash': '0x963e3c42df5336376261e2637ac5db0f166d4e0bd1bb0101379f3113b23a0ecf', 'from': '0x115120f2e6b2866c731d9f9186a7775707843e98', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1107.2439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa8f3b7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:26:16.000Z'}}, {'blockNum': '0xb15d7b', 'uniqueId': '0x1fca774e1dd9bb298876c88fa5011aef32124a2307f40960a25b13dbd09ab072:log:208', 'hash': '0x1fca774e1dd9bb298876c88fa5011aef32124a2307f40960a25b13dbd09ab072', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20612.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4948a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:28:43.000Z'}}, {'blockNum': '0xb15d8f', 'uniqueId': '0xaea210c5d57c4936311f84e2d3261fa1ba71a63c0a299bedcefdba92faea0b29:log:72', 'hash': '0xaea210c5d57c4936311f84e2d3261fa1ba71a63c0a299bedcefdba92faea0b29', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:32:05.000Z'}}, {'blockNum': '0xb15d8f', 'uniqueId': '0xdaa10214496f6efff275c9100384ab9e98472f5e328627f16121745cda97ce55:log:73', 'hash': '0xdaa10214496f6efff275c9100384ab9e98472f5e328627f16121745cda97ce55', 'from': '0xf20f71e5e5862c6aa009ae4d65d9d1d330d0a7e4', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7224.9581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044e70ed', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:32:05.000Z'}}, {'blockNum': '0xb15d92', 'uniqueId': '0xb12d4a68241a7279e8ed3852b5359d22737dcd5b1962d14a6f8a28ef28974760:log:21', 'hash': '0xb12d4a68241a7279e8ed3852b5359d22737dcd5b1962d14a6f8a28ef28974760', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:32:17.000Z'}}, {'blockNum': '0xb15d9e', 'uniqueId': '0x55686289a1c298f31df6ba170a4b3196acb69228408cb74d907bc5220abc8962:log:30', 'hash': '0x55686289a1c298f31df6ba170a4b3196acb69228408cb74d907bc5220abc8962', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f872a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:34:40.000Z'}}, {'blockNum': '0xb15da1', 'uniqueId': '0x9702ed37b4176b9c3af0884f3e6b801355d2be26fbae6ebc858f02916e4283f4:log:218', 'hash': '0x9702ed37b4176b9c3af0884f3e6b801355d2be26fbae6ebc858f02916e4283f4', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xa97776574b43f8aad31f6e11fe60346f790a0565', 'value': 1732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01084840', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:35:38.000Z'}}, {'blockNum': '0xb15da5', 'uniqueId': '0xd0bac325ad1f95bb20255d5c02bc2571ba00de75f172f3d1e3466ab6078f4848:log:6', 'hash': '0xd0bac325ad1f95bb20255d5c02bc2571ba00de75f172f3d1e3466ab6078f4848', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12442.528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x076a9440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:36:56.000Z'}}, {'blockNum': '0xb15dc3', 'uniqueId': '0x1b803d8eaed11e020127edca7600cc45731b82dfc03d82a33ec143e54e622b00:log:174', 'hash': '0x1b803d8eaed11e020127edca7600cc45731b82dfc03d82a33ec143e54e622b00', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 29993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e09190', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:41:36.000Z'}}, {'blockNum': '0xb15dc3', 'uniqueId': '0xa892385f12c83d087fe84b3c9b55398efb96b8ac9f928657e91740eba9d5eea2:log:176', 'hash': '0xa892385f12c83d087fe84b3c9b55398efb96b8ac9f928657e91740eba9d5eea2', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20612.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4948a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:41:36.000Z'}}, {'blockNum': '0xb15dc3', 'uniqueId': '0x15da1aa449f8a302f9d99df6d28e42e31c4e6d49ad39419dd56de922e3720455:log:178', 'hash': '0x15da1aa449f8a302f9d99df6d28e42e31c4e6d49ad39419dd56de922e3720455', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:41:36.000Z'}}, {'blockNum': '0xb15dda', 'uniqueId': '0xced4f3fbe7d7dee784c6e5702e48eafaa0f68f439d94c414612e20f613592ee6:log:241', 'hash': '0xced4f3fbe7d7dee784c6e5702e48eafaa0f68f439d94c414612e20f613592ee6', 'from': '0xa97776574b43f8aad31f6e11fe60346f790a0565', 'to': '0x3ee9b4c7598a2ab4e6237734b2944e6914b02c1c', 'value': 1732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01084840', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:46:21.000Z'}}, {'blockNum': '0xb15ddc', 'uniqueId': '0x70a13ae96a6263172b4cc2f6310658b0ecee70e33edf84b74e77ff2aaf1737d1:log:87', 'hash': '0x70a13ae96a6263172b4cc2f6310658b0ecee70e33edf84b74e77ff2aaf1737d1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 105415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x3ed50d70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:46:42.000Z'}}, {'blockNum': '0xb15ddd', 'uniqueId': '0x97b243a28449b3268e245aeb63a9a73e80f5e3736b2486a4850b7df133d82ec3:log:136', 'hash': '0x97b243a28449b3268e245aeb63a9a73e80f5e3736b2486a4850b7df133d82ec3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 120803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x48011330', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:12.000Z'}}, {'blockNum': '0xb15ddd', 'uniqueId': '0x3e0c6ee4285ef01eec5d7fc417080f9661043e842f49d8e7108ff102345d36d7:log:137', 'hash': '0x3e0c6ee4285ef01eec5d7fc417080f9661043e842f49d8e7108ff102345d36d7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 115415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x44caee70', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:12.000Z'}}, {'blockNum': '0xb15de2', 'uniqueId': '0xdd2b6eb948bd158e9a6b85a1e13965a2cfdd5036692077d3df20a149b638cd02:log:207', 'hash': '0xdd2b6eb948bd158e9a6b85a1e13965a2cfdd5036692077d3df20a149b638cd02', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f872a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:39.000Z'}}, {'blockNum': '0xb15de2', 'uniqueId': '0xeac26c6e3091d0039d41b013bb755eadfff7c21f0e47cd19ab53396d5269565a:log:210', 'hash': '0xeac26c6e3091d0039d41b013bb755eadfff7c21f0e47cd19ab53396d5269565a', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12442.528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x076a9440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:47:39.000Z'}}, {'blockNum': '0xb15df8', 'uniqueId': '0xf711a358126096ce8d673e3e4fb860df5d05216c7c1076f41146b2ae82bc4e70:log:362', 'hash': '0xf711a358126096ce8d673e3e4fb860df5d05216c7c1076f41146b2ae82bc4e70', 'from': '0x375f6832e2eff62823fa952706a2cae1230d8b09', 'to': '0x085a16f8d09daac0ee897dc62526e22e3185240d', 'value': 501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4c7250', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:53:19.000Z'}}, {'blockNum': '0xb15e08', 'uniqueId': '0x1bd7a7f872029017c48d602a3dcad00df59df5855405e60fc2479af27ed04c2a:log:15', 'hash': '0x1bd7a7f872029017c48d602a3dcad00df59df5855405e60fc2479af27ed04c2a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11fbe1c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:57:21.000Z'}}, {'blockNum': '0xb15e0e', 'uniqueId': '0x09453cb0996d5fc208fbc7f0a7f3f44bae5705a813acef470954ade3bf2caea6:log:18', 'hash': '0x09453cb0996d5fc208fbc7f0a7f3f44bae5705a813acef470954ade3bf2caea6', 'from': '0x3ee9b4c7598a2ab4e6237734b2944e6914b02c1c', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01084840', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:58:21.000Z'}}, {'blockNum': '0xb15e17', 'uniqueId': '0xfa58e140dbe2c38c4a879d6a2fa15e0f3214e1bfe6fdd49aa8a4eac3ede922b1:log:168', 'hash': '0xfa58e140dbe2c38c4a879d6a2fa15e0f3214e1bfe6fdd49aa8a4eac3ede922b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1645.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfb0f72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T00:59:52.000Z'}}, {'blockNum': '0xb15e19', 'uniqueId': '0xdbc97c9fd02593ba52eae3137808f6f5aca8a9924885dca63e14b474e1a9615f:log:61', 'hash': '0xdbc97c9fd02593ba52eae3137808f6f5aca8a9924885dca63e14b474e1a9615f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c5890', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:00:44.000Z'}}, {'blockNum': '0xb15e31', 'uniqueId': '0x2addca04f888bed6db9a7c8dde4cd61b62163c7ec48764d6eddd914915b79df6:log:56', 'hash': '0x2addca04f888bed6db9a7c8dde4cd61b62163c7ec48764d6eddd914915b79df6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 32493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x135e09d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:05:38.000Z'}}, {'blockNum': '0xb15e32', 'uniqueId': '0xbc983a5cd4a508b8092c22ad1bc6f8afe1b9bc5d35b1265ac3406cc0f611bad9:log:84', 'hash': '0xbc983a5cd4a508b8092c22ad1bc6f8afe1b9bc5d35b1265ac3406cc0f611bad9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12504.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0774075a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:05:56.000Z'}}, {'blockNum': '0xb15e40', 'uniqueId': '0xbcee3e381d252ce8a0f24860a1026b49ae93442e2a1a7ea883624283821620cb:log:105', 'hash': '0xbcee3e381d252ce8a0f24860a1026b49ae93442e2a1a7ea883624283821620cb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 28053.0374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10b88dc6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:08:48.000Z'}}, {'blockNum': '0xb15e40', 'uniqueId': '0x54cc3d12c1e3988d21932f46a3b24423858f8209abf8edaa78c19fb30215f224:log:106', 'hash': '0x54cc3d12c1e3988d21932f46a3b24423858f8209abf8edaa78c19fb30215f224', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:08:48.000Z'}}, {'blockNum': '0xb15e4c', 'uniqueId': '0x0b8770b9f85028b4360b938864f35020709c7aede257b79a224d0af2259ae2b9:log:72', 'hash': '0x0b8770b9f85028b4360b938864f35020709c7aede257b79a224d0af2259ae2b9', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 62665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2559eb90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:11:35.000Z'}}, {'blockNum': '0xb15e4c', 'uniqueId': '0xc3f93c570b2aecf509eb8cfd53c65bcadd6c373e88d15009346e893de40c686a:log:73', 'hash': '0xc3f93c570b2aecf509eb8cfd53c65bcadd6c373e88d15009346e893de40c686a', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c5890', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:11:35.000Z'}}, {'blockNum': '0xb15e4c', 'uniqueId': '0x0d13055cf54acdb21394ba29bd89181677611d18902af5d4904741281a17ac43:log:74', 'hash': '0x0d13055cf54acdb21394ba29bd89181677611d18902af5d4904741281a17ac43', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1645.349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfb0f72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:11:35.000Z'}}, {'blockNum': '0xb15e66', 'uniqueId': '0x6d371b2a7fbffa8421a60b35870af09f372e253316a75d46d959145a5362f27e:log:294', 'hash': '0x6d371b2a7fbffa8421a60b35870af09f372e253316a75d46d959145a5362f27e', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12504.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0774075a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:16:30.000Z'}}, {'blockNum': '0xb15e7e', 'uniqueId': '0x245eedb5547599d84f370b491339fb5bbe5a580018a86e1529af54bfad7f3272:log:208', 'hash': '0x245eedb5547599d84f370b491339fb5bbe5a580018a86e1529af54bfad7f3272', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 28053.0374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x10b88dc6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:21:32.000Z'}}, {'blockNum': '0xb15e7e', 'uniqueId': '0xd21f74e98cd151d6bd731994c953bf65c5436577f966820b0368d913267b2c99:log:209', 'hash': '0xd21f74e98cd151d6bd731994c953bf65c5436577f966820b0368d913267b2c99', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:21:32.000Z'}}, {'blockNum': '0xb15e99', 'uniqueId': '0xb5f3c53b7fe7662b32330bc1303f6b5e9765f9d1ff130e951720af65575e6cc5:log:150', 'hash': '0xb5f3c53b7fe7662b32330bc1303f6b5e9765f9d1ff130e951720af65575e6cc5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4be360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:27:20.000Z'}}, {'blockNum': '0xb15ea6', 'uniqueId': '0xe9832984a6244f51d943dca99aba9424777ab51232551e52017d63cee84c8d1a:log:152', 'hash': '0xe9832984a6244f51d943dca99aba9424777ab51232551e52017d63cee84c8d1a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 1238.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbcfed0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:31:16.000Z'}}, {'blockNum': '0xb15eb4', 'uniqueId': '0xd77e8271bbc20302d6de95794565a9626d9d12f953d325551274c09a04c6137f:log:169', 'hash': '0xd77e8271bbc20302d6de95794565a9626d9d12f953d325551274c09a04c6137f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1660.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfd58f4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:33:32.000Z'}}, {'blockNum': '0xb15ec1', 'uniqueId': '0xc21aa388cfe511f3ee75a24b0f4f65edb2024ddedb6aa871dbb957d53d07ad25:log:82', 'hash': '0xc21aa388cfe511f3ee75a24b0f4f65edb2024ddedb6aa871dbb957d53d07ad25', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 31585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12d37d10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:36:34.000Z'}}, {'blockNum': '0xb15eda', 'uniqueId': '0x6c0e03843a0f16f23f93cb2335035c07885c101cc36df93b84019bf767328142:log:93', 'hash': '0x6c0e03843a0f16f23f93cb2335035c07885c101cc36df93b84019bf767328142', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4be360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:41:26.000Z'}}, {'blockNum': '0xb15eda', 'uniqueId': '0x4c2ff4e60a300e2ee05b4b36d2e80c7129b8453745d15241586f9c4e5f82d4dc:log:94', 'hash': '0x4c2ff4e60a300e2ee05b4b36d2e80c7129b8453745d15241586f9c4e5f82d4dc', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1660.338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xfd58f4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:41:26.000Z'}}, {'blockNum': '0xb15eda', 'uniqueId': '0x20bd4014736cc33ae367f948011459c2a7c694ed6fdbccc1a654618ec1008853:log:95', 'hash': '0x20bd4014736cc33ae367f948011459c2a7c694ed6fdbccc1a654618ec1008853', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1238.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xbcfed0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:41:26.000Z'}}, {'blockNum': '0xb15eee', 'uniqueId': '0x60ded14451e189237cbcdbad09fa2edfffa05400fe9f349eb1b71f8b0251caf7:log:171', 'hash': '0x60ded14451e189237cbcdbad09fa2edfffa05400fe9f349eb1b71f8b0251caf7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c3180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:44:18.000Z'}}, {'blockNum': '0xb15ef0', 'uniqueId': '0x3bc8d20bfff14715a3ee482f5150fc5a8ca2dde084bf425cbdc831278a9605b2:log:200', 'hash': '0x3bc8d20bfff14715a3ee482f5150fc5a8ca2dde084bf425cbdc831278a9605b2', 'from': '0x22734e9fcc8285b0e2f46e53c9fb3ee92a28d01f', 'to': '0x43d5648ba63ba5f3d546b1e8cd19e64ad39aab2e', 'value': 540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5265c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:45:01.000Z'}}, {'blockNum': '0xb15ef3', 'uniqueId': '0x2608458f77516bbfa1473a6a7e68581e1f7f42e8cbb42eeece0bf62507270c65:log:267', 'hash': '0x2608458f77516bbfa1473a6a7e68581e1f7f42e8cbb42eeece0bf62507270c65', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 31585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12d37d10', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:45:57.000Z'}}, {'blockNum': '0xb15ef4', 'uniqueId': '0x0eb5255a27bc18de8efa0605d6ecc4cee0a81d259ff26dc8d4676bf7117bd018:log:43', 'hash': '0x0eb5255a27bc18de8efa0605d6ecc4cee0a81d259ff26dc8d4676bf7117bd018', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4c3180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T01:46:17.000Z'}}, {'blockNum': '0xb15f54', 'uniqueId': '0xa3529b9e67e21f376d7eb26a5dca129111e0fd779fdc9bd7dd30eab11b50782f:log:118', 'hash': '0xa3529b9e67e21f376d7eb26a5dca129111e0fd779fdc9bd7dd30eab11b50782f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12050980', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:09:02.000Z'}}, {'blockNum': '0xb15f77', 'uniqueId': '0x4d72f1edff13c938e2f6621c6668503deeacc176ae1b6260e7ecacb47d0053d7:log:226', 'hash': '0x4d72f1edff13c938e2f6621c6668503deeacc176ae1b6260e7ecacb47d0053d7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4ca6b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:16:46.000Z'}}, {'blockNum': '0xb15f83', 'uniqueId': '0x959bdab2cdd8ea8716256323a78851744857a19fdc1641c0fda6ac8ce9eac79b:log:136', 'hash': '0x959bdab2cdd8ea8716256323a78851744857a19fdc1641c0fda6ac8ce9eac79b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 1017.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9b3660', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:19:35.000Z'}}, {'blockNum': '0xb15f87', 'uniqueId': '0x55af6e76472b1c552617709537050d5ca3e1366a1fdd9ea2c0f18178caebe5dd:log:176', 'hash': '0x55af6e76472b1c552617709537050d5ca3e1366a1fdd9ea2c0f18178caebe5dd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 118934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x46e3e360', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:20:36.000Z'}}, {'blockNum': '0xb15f8c', 'uniqueId': '0x6f3f2d584214cbdb796a37c05016a9a1394ffd5bbbd3b51375c3dafb9d778a4d:log:147', 'hash': '0x6f3f2d584214cbdb796a37c05016a9a1394ffd5bbbd3b51375c3dafb9d778a4d', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12050980', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:21:39.000Z'}}, {'blockNum': '0xb15f9f', 'uniqueId': '0x45e7c7930b84a73f6dc492ec9a8f4f35ab6d6285081f9772266de92e766c3694:log:201', 'hash': '0x45e7c7930b84a73f6dc492ec9a8f4f35ab6d6285081f9772266de92e766c3694', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4ca6b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:26:16.000Z'}}, {'blockNum': '0xb15f9f', 'uniqueId': '0x74c77b1bd4c17cbfc217389ab1e4bf23ccdac90cd256032919f4385ab97068c8:log:202', 'hash': '0x74c77b1bd4c17cbfc217389ab1e4bf23ccdac90cd256032919f4385ab97068c8', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1017.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x9b3660', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:26:16.000Z'}}, {'blockNum': '0xb15fc3', 'uniqueId': '0x4e905520cf804859bb057274266a857a828fe00000f3d29418f61a14364e23d9:log:158', 'hash': '0x4e905520cf804859bb057274266a857a828fe00000f3d29418f61a14364e23d9', 'from': '0x668877a76f7b9d74c9af8a9b7c204a186460bf92', 'to': '0xaf0f7108b52f05f8afd024fd8aeec7e0e7058a68', 'value': 3779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0240a130', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:35:20.000Z'}}, {'blockNum': '0xb15fd9', 'uniqueId': '0xe5a51fd5d80c1ba6abf1e2cd98aa55e571ec63e63a4dc945291dd0da6d8fa54d:log:111', 'hash': '0xe5a51fd5d80c1ba6abf1e2cd98aa55e571ec63e63a4dc945291dd0da6d8fa54d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4d1be0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:41:48.000Z'}}, {'blockNum': '0xb15fde', 'uniqueId': '0xfd3cc48527ae42c3b0a50ac844e6d792b83fc432591cdd644e94bbd960a5ab2f:log:65', 'hash': '0xfd3cc48527ae42c3b0a50ac844e6d792b83fc432591cdd644e94bbd960a5ab2f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 35936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x156b6600', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:43:56.000Z'}}, {'blockNum': '0xb15fed', 'uniqueId': '0x1ff12208aeb0095af6c157eb456dece450629613d97428a70f1e6140859e65da:log:176', 'hash': '0x1ff12208aeb0095af6c157eb456dece450629613d97428a70f1e6140859e65da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:47:46.000Z'}}, {'blockNum': '0xb15ff1', 'uniqueId': '0x627e2e9241bf74f81cf34c2bb0cf1439d778385fa3e4080fb0c244427a148b7e:log:60', 'hash': '0x627e2e9241bf74f81cf34c2bb0cf1439d778385fa3e4080fb0c244427a148b7e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'value': 4674.9086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c9559e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:49:30.000Z'}}, {'blockNum': '0xb15ff8', 'uniqueId': '0x30eb8bdc0db5649ff10a78a282dde348f5da3a11dd77f0b15772b44c039d0ab1:log:99', 'hash': '0x30eb8bdc0db5649ff10a78a282dde348f5da3a11dd77f0b15772b44c039d0ab1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 948.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x90c298', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:50:37.000Z'}}, {'blockNum': '0xb15ffb', 'uniqueId': '0x2f93463e3ec5d9f0e6a13cae57c962afe76ca3b1162bf56ce13cc806d183369e:log:225', 'hash': '0x2f93463e3ec5d9f0e6a13cae57c962afe76ca3b1162bf56ce13cc806d183369e', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 35936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x156b6600', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:51:11.000Z'}}, {'blockNum': '0xb15ffb', 'uniqueId': '0x872090d24155a3c1cc9947a941f619ab7c027e0a712eb185d024b1c7984bfc81:log:226', 'hash': '0x872090d24155a3c1cc9947a941f619ab7c027e0a712eb185d024b1c7984bfc81', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4d1be0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:51:11.000Z'}}, {'blockNum': '0xb16012', 'uniqueId': '0xb19bde4897591e0b18e1fda0619ef9133c127e4de3b52bc1f67e6a4afbacafc0:log:10', 'hash': '0xb19bde4897591e0b18e1fda0619ef9133c127e4de3b52bc1f67e6a4afbacafc0', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:55:53.000Z'}}, {'blockNum': '0xb16013', 'uniqueId': '0xe964a6fffad0cc03700c82258bdcfe1055a27c4bac4f1d1ff748a397381274e4:log:125', 'hash': '0xe964a6fffad0cc03700c82258bdcfe1055a27c4bac4f1d1ff748a397381274e4', 'from': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4674.9086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c9559e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T02:55:55.000Z'}}, {'blockNum': '0xb1602e', 'uniqueId': '0x8f8c66db455645c6091c8fd01850c12a4f0aed4985f0f16c426d8597ff9c5bee:log:40', 'hash': '0x8f8c66db455645c6091c8fd01850c12a4f0aed4985f0f16c426d8597ff9c5bee', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 2526.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x018173c8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:01:38.000Z'}}, {'blockNum': '0xb16034', 'uniqueId': '0xdcd63e0a5899b4d7bab5c0beb6352d673d37ba292e99a9b7d025c553da94ad99:log:37', 'hash': '0xdcd63e0a5899b4d7bab5c0beb6352d673d37ba292e99a9b7d025c553da94ad99', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 31640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12dbe180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:03:01.000Z'}}, {'blockNum': '0xb16042', 'uniqueId': '0x4e426e2d0baf8c9e172b70df2ea25e15bb4e19cc3790e40c86f6168f76505a9d:log:72', 'hash': '0x4e426e2d0baf8c9e172b70df2ea25e15bb4e19cc3790e40c86f6168f76505a9d', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 3474.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02123660', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:05:55.000Z'}}, {'blockNum': '0xb1605d', 'uniqueId': '0xc0e1217930ad5d829610a4e132ed09e98611f8c7bc58405035e9887b6ccfcc83:log:300', 'hash': '0xc0e1217930ad5d829610a4e132ed09e98611f8c7bc58405035e9887b6ccfcc83', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 31640, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x12dbe180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:11:49.000Z'}}, {'blockNum': '0xb16063', 'uniqueId': '0x5075d7af39d1f2f86b19d4dd36bc5f60bd5d33b97d3f7aae9c707caa0996864e:log:137', 'hash': '0x5075d7af39d1f2f86b19d4dd36bc5f60bd5d33b97d3f7aae9c707caa0996864e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4bbc50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:12:40.000Z'}}, {'blockNum': '0xb16074', 'uniqueId': '0x2684baf748bcbba453a2167391e93dbe22827555281c3b48a8c6aadf829a4dec:log:102', 'hash': '0x2684baf748bcbba453a2167391e93dbe22827555281c3b48a8c6aadf829a4dec', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 32417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13527110', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:15:54.000Z'}}, {'blockNum': '0xb16083', 'uniqueId': '0x7f6c55cbf71bc3142fd20b6ce4c1ede6e4f6a997e5f47543f708469c98f221ff:log:112', 'hash': '0x7f6c55cbf71bc3142fd20b6ce4c1ede6e4f6a997e5f47543f708469c98f221ff', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7510.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047a06d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:19:23.000Z'}}, {'blockNum': '0xb1608c', 'uniqueId': '0x2ec34aedf11720b0557b0d46d0baa00392446193151ff3be8ea890e7184cb957:log:102', 'hash': '0x2ec34aedf11720b0557b0d46d0baa00392446193151ff3be8ea890e7184cb957', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 32417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13527110', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:22:10.000Z'}}, {'blockNum': '0xb1608c', 'uniqueId': '0xa686a924452fce17dcb8528f0737be02a74220ecb2c986c647a43c6ae6ca78d0:log:103', 'hash': '0xa686a924452fce17dcb8528f0737be02a74220ecb2c986c647a43c6ae6ca78d0', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4bbc50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:22:10.000Z'}}, {'blockNum': '0xb1608c', 'uniqueId': '0xa59aba2c319da86c103d6b766c7a44c3edd524d246fed3bc181d0a8a260b4560:log:104', 'hash': '0xa59aba2c319da86c103d6b766c7a44c3edd524d246fed3bc181d0a8a260b4560', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7510.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047a06d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:22:10.000Z'}}, {'blockNum': '0xb160b0', 'uniqueId': '0xbde9c275d5f7b2e04b8c661d5ee27c41d3c6d61e2372790daf431d93bd65831c:log:60', 'hash': '0xbde9c275d5f7b2e04b8c661d5ee27c41d3c6d61e2372790daf431d93bd65831c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20600.1634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4755e2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:31:25.000Z'}}, {'blockNum': '0xb160b8', 'uniqueId': '0xa9b45715b754ece85217f01284ec20cff0389d98fd1506edf4e0574221bf6f4e:log:26', 'hash': '0xa9b45715b754ece85217f01284ec20cff0389d98fd1506edf4e0574221bf6f4e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:32:53.000Z'}}, {'blockNum': '0xb160c8', 'uniqueId': '0x52c74d6fe4a3a1be58831814fd0c3a373ed40593b86fd5a66e69b533b945ebd4:log:133', 'hash': '0x52c74d6fe4a3a1be58831814fd0c3a373ed40593b86fd5a66e69b533b945ebd4', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20600.1634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4755e2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:37:34.000Z'}}, {'blockNum': '0xb160ca', 'uniqueId': '0xc0dc5d525fd02982c6eb6c31e76f16f670c3af19d57ab56e1286dd909a24f5a5:log:166', 'hash': '0xc0dc5d525fd02982c6eb6c31e76f16f670c3af19d57ab56e1286dd909a24f5a5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x123f2c50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:37:38.000Z'}}, {'blockNum': '0xb160df', 'uniqueId': '0xbbda20cf53faaffff353a48d6f551e4b93b69863017c7fafd9d0c7d5cdcee5fe:log:107', 'hash': '0xbbda20cf53faaffff353a48d6f551e4b93b69863017c7fafd9d0c7d5cdcee5fe', 'from': '0x01d9ddc1173044201ec6e96b2f222edd37f6c290', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:41:22.000Z'}}, {'blockNum': '0xb160e9', 'uniqueId': '0x1b24a7d09193a642afdd556c430e6b812568334acc8224beed8783fa99de2b86:log:28', 'hash': '0x1b24a7d09193a642afdd556c430e6b812568334acc8224beed8783fa99de2b86', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7520.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047b9928', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:42:46.000Z'}}, {'blockNum': '0xb160f9', 'uniqueId': '0x819ffd1a1a13bf0d18769244e1a202cbd4f493175304a11c49816f40133ff491:log:28', 'hash': '0x819ffd1a1a13bf0d18769244e1a202cbd4f493175304a11c49816f40133ff491', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x123f2c50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:45:59.000Z'}}, {'blockNum': '0xb16100', 'uniqueId': '0x976ec3ad8ef324a4973a821f2b4ecf1e3a3b1fc25dc5c06132b5b4099da12637:log:115', 'hash': '0x976ec3ad8ef324a4973a821f2b4ecf1e3a3b1fc25dc5c06132b5b4099da12637', 'from': '0x688ce0199ff85bc4288d38ee86a20a1cea4ae512', 'to': '0x3eccea963b453963d3e7a053515f337d7e35992f', 'value': 58.439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08eac6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:46:47.000Z'}}, {'blockNum': '0xb16114', 'uniqueId': '0x4517dbcf6004e96114d3c4c4d5e5f5edf718bd732a2df482f2e4b6f8d57f42e6:log:232', 'hash': '0x4517dbcf6004e96114d3c4c4d5e5f5edf718bd732a2df482f2e4b6f8d57f42e6', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7520.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x047b9928', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T03:51:46.000Z'}}, {'blockNum': '0xb16146', 'uniqueId': '0x66484770613b92eaca1e3f079e5341adcc3ac6d527a6b70f2765f83aa1b6c04e:log:20', 'hash': '0x66484770613b92eaca1e3f079e5341adcc3ac6d527a6b70f2765f83aa1b6c04e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7492.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04773bf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:01:14.000Z'}}, {'blockNum': '0xb1614b', 'uniqueId': '0x7f76348cd4521fe84ab2385fdd2f13c559cd85762f05c69e004a2630b5378399:log:157', 'hash': '0x7f76348cd4521fe84ab2385fdd2f13c559cd85762f05c69e004a2630b5378399', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20651.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f385e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:02:34.000Z'}}, {'blockNum': '0xb16166', 'uniqueId': '0x56602af9c0aaca9a729999866f96af75f42b8e20419d787d524bd00357dfc611:log:207', 'hash': '0x56602af9c0aaca9a729999866f96af75f42b8e20419d787d524bd00357dfc611', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11f61560', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:08:45.000Z'}}, {'blockNum': '0xb16177', 'uniqueId': '0x1d6f6b7016fcb1f9b19c3443612c24db695f7eaa153a7dfd1d9f56730a8c152e:log:219', 'hash': '0x1d6f6b7016fcb1f9b19c3443612c24db695f7eaa153a7dfd1d9f56730a8c152e', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20651.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4f385e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:12:20.000Z'}}, {'blockNum': '0xb16184', 'uniqueId': '0xdfd362de2b8ad0c27e7eaa175aea49b13e869a7ecf11cc8a296de628d6053bc7:log:181', 'hash': '0xdfd362de2b8ad0c27e7eaa175aea49b13e869a7ecf11cc8a296de628d6053bc7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0900fe20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:14:37.000Z'}}, {'blockNum': '0xb1619a', 'uniqueId': '0xef5d0c186a4eb65f35aa044d6b5f3d5b0b14534baf5c438af327447595582c21:log:67', 'hash': '0xef5d0c186a4eb65f35aa044d6b5f3d5b0b14534baf5c438af327447595582c21', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'value': 4708.261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ce6c72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:20:21.000Z'}}, {'blockNum': '0xb1619c', 'uniqueId': '0xc8154bd1e799aa0c229a79dd2ad8aa46d2fd2fd558ec5d9865c142948c8e5f17:log:192', 'hash': '0xc8154bd1e799aa0c229a79dd2ad8aa46d2fd2fd558ec5d9865c142948c8e5f17', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7492.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04773bf8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:20:54.000Z'}}, {'blockNum': '0xb1619d', 'uniqueId': '0x497776a66b4cc28e0d4a977076e9ad8750b17c65d488876e44200f96c13ab54c:log:39', 'hash': '0x497776a66b4cc28e0d4a977076e9ad8750b17c65d488876e44200f96c13ab54c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7371.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0464c180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:21:15.000Z'}}, {'blockNum': '0xb1619f', 'uniqueId': '0x873ead121eca6ae03842096abb8b66bf1d97ad7423baef28e491d41c22fdc93f:log:300', 'hash': '0x873ead121eca6ae03842096abb8b66bf1d97ad7423baef28e491d41c22fdc93f', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11f61560', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:22:36.000Z'}}, {'blockNum': '0xb161a6', 'uniqueId': '0x1e1102656e7442cd69eb5b58f1ddcfbecee4102075f1d0f364f127b77309beaf:log:71', 'hash': '0x1e1102656e7442cd69eb5b58f1ddcfbecee4102075f1d0f364f127b77309beaf', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1242d5d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:23:15.000Z'}}, {'blockNum': '0xb161b5', 'uniqueId': '0x71f117ba11c017337b24ab999161fb7afa6dfc748b1687b4d7378909514edd75:log:265', 'hash': '0x71f117ba11c017337b24ab999161fb7afa6dfc748b1687b4d7378909514edd75', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1242d5d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:26:11.000Z'}}, {'blockNum': '0xb161b6', 'uniqueId': '0xa502c660598ee8ef63c54d535fbb00d84c06e77d01eaba15777ea729ff8b9e8e:log:43', 'hash': '0xa502c660598ee8ef63c54d535fbb00d84c06e77d01eaba15777ea729ff8b9e8e', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0900fe20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:26:37.000Z'}}, {'blockNum': '0xb161c7', 'uniqueId': '0x97467ca8b7278bd79d7fb848cbce2e7d5114943f56bff892cfa7153c4f8b30a8:log:70', 'hash': '0x97467ca8b7278bd79d7fb848cbce2e7d5114943f56bff892cfa7153c4f8b30a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 20804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c667040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:28:30.000Z'}}, {'blockNum': '0xb161d2', 'uniqueId': '0x9b2089474ed5dcfc100347f927a6ca17c25433b30c0b82750e5b3980946562a6:log:238', 'hash': '0x9b2089474ed5dcfc100347f927a6ca17c25433b30c0b82750e5b3980946562a6', 'from': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 20804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c667040', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:02.000Z'}}, {'blockNum': '0xb161d2', 'uniqueId': '0x53bd63d3393580e5033818aad9bd79607cbe075b5736919abb7956720a82224c:log:240', 'hash': '0x53bd63d3393580e5033818aad9bd79607cbe075b5736919abb7956720a82224c', 'from': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4708.261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ce6c72', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:02.000Z'}}, {'blockNum': '0xb161e7', 'uniqueId': '0xab9b01436f6964e8301464f357f5565a95c275651bee4dd6e66b6f8a80a14d32:log:40', 'hash': '0xab9b01436f6964e8301464f357f5565a95c275651bee4dd6e66b6f8a80a14d32', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 29997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e12dd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:35:50.000Z'}}, {'blockNum': '0xb16207', 'uniqueId': '0xf02c796e13c2c42e614c02dc6f42d910bae7499a06fa38286020bf4bb99a4f8d:log:41', 'hash': '0xf02c796e13c2c42e614c02dc6f42d910bae7499a06fa38286020bf4bb99a4f8d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1585.418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf1ea64', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:42:44.000Z'}}, {'blockNum': '0xb16214', 'uniqueId': '0xd0a40facf08652e2fc98b3ca5bc785585d7d45a873f3267226e7b667e34d7f3c:log:82', 'hash': '0xd0a40facf08652e2fc98b3ca5bc785585d7d45a873f3267226e7b667e34d7f3c', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 29997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x11e12dd0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:46:11.000Z'}}, {'blockNum': '0xb1621b', 'uniqueId': '0x90d1c2e68f70710b2cfbdb8c2be4f4d5c544c2f2d4be2b9dd4576938a2821b88:log:51', 'hash': '0x90d1c2e68f70710b2cfbdb8c2be4f4d5c544c2f2d4be2b9dd4576938a2821b88', 'from': '0xe10941f8c4258ec4caed4e4bdbee0fcefa000823', 'to': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:47:28.000Z'}}, {'blockNum': '0xb1621d', 'uniqueId': '0x32232dbbf953f0252f149f0d3407765f75466bab3b7cd99702fd7f3c28d42175:log:28', 'hash': '0x32232dbbf953f0252f149f0d3407765f75466bab3b7cd99702fd7f3c28d42175', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8fe0d5ae54c3ededc340b215d874d3f23134248a', 'value': 103.4247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fc807', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:47:46.000Z'}}, {'blockNum': '0xb1622b', 'uniqueId': '0x518c100a73243a936b77e6cb9ade43aa2fde24e436512f3d6d196a0458e90516:log:101', 'hash': '0x518c100a73243a936b77e6cb9ade43aa2fde24e436512f3d6d196a0458e90516', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1585.418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf1ea64', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:51:22.000Z'}}, {'blockNum': '0xb16238', 'uniqueId': '0xa289ef9c8d04fa961154519bca6b8dafb2a5e042a16fdb1ae6e23058a409c945:log:190', 'hash': '0xa289ef9c8d04fa961154519bca6b8dafb2a5e042a16fdb1ae6e23058a409c945', 'from': '0x65b84795becff238d7864c23f6b13bedffa1a812', 'to': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'value': 693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x69be50', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:53:58.000Z'}}, {'blockNum': '0xb1623a', 'uniqueId': '0xcdb50d068166aec3488ef5b2fd5518f7b7bf73cc03ea40f77107499170e8d17f:log:102', 'hash': '0xcdb50d068166aec3488ef5b2fd5518f7b7bf73cc03ea40f77107499170e8d17f', 'from': '0x90fc780e2a7add0ef532cb33d2b733ba2fa6277a', 'to': '0x136fdadd377fc44c7b0459bf031d9527578ec802', 'value': 375.5765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x394ef5', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:54:05.000Z'}}, {'blockNum': '0xb16240', 'uniqueId': '0x337d358a8c4de2f4f59297eb55c0b08e586ca78a9bc09ca435256abadcfb5aed:log:148', 'hash': '0x337d358a8c4de2f4f59297eb55c0b08e586ca78a9bc09ca435256abadcfb5aed', 'from': '0x8fe0d5ae54c3ededc340b215d874d3f23134248a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 103.4247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0fc807', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:56:17.000Z'}}, {'blockNum': '0xb16240', 'uniqueId': '0xcb7c21326936e2d7baa768640c420c07463760da25a6122714f92ec670a72c32:log:151', 'hash': '0xcb7c21326936e2d7baa768640c420c07463760da25a6122714f92ec670a72c32', 'from': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:56:17.000Z'}}, {'blockNum': '0xb16249', 'uniqueId': '0xdc447d7fa558cd63268dc939849f32528365db10fa8941222ce2569adb6e028b:log:19', 'hash': '0xdc447d7fa558cd63268dc939849f32528365db10fa8941222ce2569adb6e028b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 11648.1736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f15ec8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T04:57:51.000Z'}}, {'blockNum': '0xb16258', 'uniqueId': '0x0b9ccb20c1281749cc211d6717c5e98adf3d335a670925a03fe8ce274a3cb288:log:224', 'hash': '0x0b9ccb20c1281749cc211d6717c5e98adf3d335a670925a03fe8ce274a3cb288', 'from': '0x44269eee0305b110be271c0570ab2be5b7843215', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5193.927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031887c6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:22.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0x7650c06b391e2b4301daf4a72dadf188dc0bb9d0aecfb061e8d8522fbfed3e2e:log:41', 'hash': '0x7650c06b391e2b4301daf4a72dadf188dc0bb9d0aecfb061e8d8522fbfed3e2e', 'from': '0x1bc975bcda00d3ca908af56843b3bb1731d4bbcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0x659df72351cdc9d285aaf73d05b58f6cade7395b25492a37430b9f197de9151e:log:45', 'hash': '0x659df72351cdc9d285aaf73d05b58f6cade7395b25492a37430b9f197de9151e', 'from': '0xe60c68e1c5918dc0a284de7148b52b45a90654a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4812.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02de458e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0x82ebf1d2a47d343ba1dcf79025ca6001fe90e5b148902016df1458923bbfed9b:log:50', 'hash': '0x82ebf1d2a47d343ba1dcf79025ca6001fe90e5b148902016df1458923bbfed9b', 'from': '0x45ce011dab9bf83a5e22b987bfa279f10872e260', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x035ff3e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb16259', 'uniqueId': '0xac3a365b217091fe38b7d0f71de07cb96d5b9b68d216ed039c9b190fefb801eb:log:61', 'hash': '0xac3a365b217091fe38b7d0f71de07cb96d5b9b68d216ed039c9b190fefb801eb', 'from': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5180.8452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031688c4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:49.000Z'}}, {'blockNum': '0xb1625b', 'uniqueId': '0x5475e3c42b7c197ed08193df87f9fddb8b5f2f19637d9b47c7a0c77cfd7939ed:log:13', 'hash': '0x5475e3c42b7c197ed08193df87f9fddb8b5f2f19637d9b47c7a0c77cfd7939ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 33001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x13ab8d90', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:00:58.000Z'}}, {'blockNum': '0xb1626f', 'uniqueId': '0x11ab0d4de25292ae9f8cc7dce579251c7b85a9be5bbc2bcd97312ffebfd59640:log:190', 'hash': '0x11ab0d4de25292ae9f8cc7dce579251c7b85a9be5bbc2bcd97312ffebfd59640', 'from': '0xe10941f8c4258ec4caed4e4bdbee0fcefa000823', 'to': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'value': 175.8479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1ad50f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:04:40.000Z'}}, {'blockNum': '0xb16271', 'uniqueId': '0x22ddf55d623f7443fe8c437be875a23a106c4e9a8572d0516d9c5ff6c3e3d473:log:177', 'hash': '0x22ddf55d623f7443fe8c437be875a23a106c4e9a8572d0516d9c5ff6c3e3d473', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:05:36.000Z'}}, {'blockNum': '0xb16272', 'uniqueId': '0xfa307587e7a7af8f48b16d3b86f1faf364d218a6274067e8078af521ed413128:log:319', 'hash': '0xfa307587e7a7af8f48b16d3b86f1faf364d218a6274067e8078af521ed413128', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11648.1736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x06f15ec8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:06:05.000Z'}}, {'blockNum': '0xb16284', 'uniqueId': '0x3ff23b965237742646c3e00d8a47a6db66fac1fbd53aa1f5bba294e7ac3f1188:log:100', 'hash': '0x3ff23b965237742646c3e00d8a47a6db66fac1fbd53aa1f5bba294e7ac3f1188', 'from': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'to': '0xf977814e90da44bfa03b6295a0616a897441acec', 'value': 4955201.3767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b8987b9c7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:10:33.000Z'}}, {'blockNum': '0xb16288', 'uniqueId': '0xb333730bee395b34e4267d51825b849da3391ef1a9118fa27ff53b06b3d00e47:log:170', 'hash': '0xb333730bee395b34e4267d51825b849da3391ef1a9118fa27ff53b06b3d00e47', 'from': '0x2a011f32e77c3a8d3731e4ceaa8c52c8b231c12a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 175.8479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1ad50f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:11:30.000Z'}}, {'blockNum': '0xb1629a', 'uniqueId': '0xf947b20fb0ae493a3b59525d7ad140c440d969f97a2a6a3475ad2c91b55b0643:log:7', 'hash': '0xf947b20fb0ae493a3b59525d7ad140c440d969f97a2a6a3475ad2c91b55b0643', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 32395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x134f15b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:15:03.000Z'}}, {'blockNum': '0xb1629a', 'uniqueId': '0x9b78ddfb02bf6942ea9d1682bed9e3625fe49fe0ac4a6ae5d2ef81c2131db834:log:14', 'hash': '0x9b78ddfb02bf6942ea9d1682bed9e3625fe49fe0ac4a6ae5d2ef81c2131db834', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ca21ff780d37951892ad694867270daf311c603', 'value': 2140.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0146aa36', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:15:03.000Z'}}, {'blockNum': '0xb1629e', 'uniqueId': '0xdb51a0982b9228a15b0a636f464f1cf23a42cb4baf9b798920c1ff8b7cab6e6b:log:87', 'hash': '0xdb51a0982b9228a15b0a636f464f1cf23a42cb4baf9b798920c1ff8b7cab6e6b', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1255201.3767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ec2887c7', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:16:19.000Z'}}, {'blockNum': '0xb1629e', 'uniqueId': '0xae686423a12fd0c209e4e9b698b35a0aa1d004a94e975ffc14537a321453371b:log:242', 'hash': '0xae686423a12fd0c209e4e9b698b35a0aa1d004a94e975ffc14537a321453371b', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 65396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x26faa340', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:16:19.000Z'}}, {'blockNum': '0xb162ad', 'uniqueId': '0x4879aa8208a6fc3c6bbe64b326701a798887c3473066dce4b9b848176cf6b52e:log:10', 'hash': '0x4879aa8208a6fc3c6bbe64b326701a798887c3473066dce4b9b848176cf6b52e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 248612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x942f2e40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:19:17.000Z'}}, {'blockNum': '0xb162ad', 'uniqueId': '0x1aa7f51851877b8827ff112b6cd926fc54f52c4c77b0c04a6d5c410d7208d9fe:log:11', 'hash': '0x1aa7f51851877b8827ff112b6cd926fc54f52c4c77b0c04a6d5c410d7208d9fe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 230363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x894e9ab0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:19:17.000Z'}}, {'blockNum': '0xb162ad', 'uniqueId': '0xdd9c4f145eec8f80165650c8c176ce530e4b344e0b46acb89ec5f73af3c6c3d4:log:12', 'hash': '0xdd9c4f145eec8f80165650c8c176ce530e4b344e0b46acb89ec5f73af3c6c3d4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 243528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x91276c80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:19:17.000Z'}}, {'blockNum': '0xb162ba', 'uniqueId': '0x9f17d06f36eb3704a138211a77928aa306ef8b66f0dacb820104fa85e5d6a4f9:log:15', 'hash': '0x9f17d06f36eb3704a138211a77928aa306ef8b66f0dacb820104fa85e5d6a4f9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa647bc744c8cf76c3e27bf9b9bca1af091385035', 'value': 3880.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02500e04', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:20:52.000Z'}}, {'blockNum': '0xb162bc', 'uniqueId': '0x10c803dd0582121103709423126bddad57f1200cc14bad214b9be319cd4fb2b8:log:44', 'hash': '0x10c803dd0582121103709423126bddad57f1200cc14bad214b9be319cd4fb2b8', 'from': '0x2ca21ff780d37951892ad694867270daf311c603', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2140.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0146aa36', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:21:26.000Z'}}, {'blockNum': '0xb162c2', 'uniqueId': '0x011c6e4993588d119674c8087372716d954a98822f2753bf4a8196c9917d3052:log:111', 'hash': '0x011c6e4993588d119674c8087372716d954a98822f2753bf4a8196c9917d3052', 'from': '0x1bb90f54ef1a1e2632bbce7f9347855e28bcae57', 'to': '0x47ebe1200e4442d38c3531e79c2a7ea1f7d82312', 'value': 852.964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x8226e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:22:01.000Z'}}, {'blockNum': '0xb162de', 'uniqueId': '0x304e170c442d8791901f2db5b6aa49ad69b0cea56762b89244cc2f6ae31065f6:log:111', 'hash': '0x304e170c442d8791901f2db5b6aa49ad69b0cea56762b89244cc2f6ae31065f6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'value': 1607.463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf54786', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:26:16.000Z'}}, {'blockNum': '0xb162e8', 'uniqueId': '0x82e041f9ecb52bf2d91098687ca583df4656ca3526acd42ad780941175cbc1b0:log:57', 'hash': '0x82e041f9ecb52bf2d91098687ca583df4656ca3526acd42ad780941175cbc1b0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12001.2774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07273fe6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:07.000Z'}}, {'blockNum': '0xb162ea', 'uniqueId': '0xa0ce09dc278054ebac93881bb7e810a4c89515823a7a97a23fe0e3520b21ca4f:log:7', 'hash': '0xa0ce09dc278054ebac93881bb7e810a4c89515823a7a97a23fe0e3520b21ca4f', 'from': '0xa139913d52b99094a96d972c89fd2340d3e5a872', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4680.302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02ca284c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:31.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x5742f20972ae3b9f27409a91b2e656ac88fef6b529cc5d6485198e1dae76126d:log:222', 'hash': '0x5742f20972ae3b9f27409a91b2e656ac88fef6b529cc5d6485198e1dae76126d', 'from': '0x85a4f76b227aa5d300fca5996ed9a598e9f99013', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4006.7918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0263634e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x4ba5d320d36febbf08a0686d667b083ec86c5939da8b005503cc13d7d0268b7f:log:223', 'hash': '0x4ba5d320d36febbf08a0686d667b083ec86c5939da8b005503cc13d7d0268b7f', 'from': '0xd5eb1561221ee2180d9f4d4652aca3e117888162', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02625a00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0xc12019f0e6f74274dd486f3a90dc246df7458214e60b2a787811865948946c00:log:224', 'hash': '0xc12019f0e6f74274dd486f3a90dc246df7458214e60b2a787811865948946c00', 'from': '0xbef53d1475912e99aa7ca804e940819fc5dc0e72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02aea540', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x29a1d97ebc64041de3870cef1795a5dd811811abbeb7e01312338451e08d684d:log:226', 'hash': '0x29a1d97ebc64041de3870cef1795a5dd811811abbeb7e01312338451e08d684d', 'from': '0xfc7c1aa14a1041035bdec339ca1b043f69f2c1a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4098.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x027167b6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x90bc9698d5acd8017cdbf42dfabf85f4dd246e4239cd98844d14341014c97f18:log:230', 'hash': '0x90bc9698d5acd8017cdbf42dfabf85f4dd246e4239cd98844d14341014c97f18', 'from': '0xf795b99220c119675d82e5ce37606a035121a5b5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3971.7991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x025e0c67', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb162eb', 'uniqueId': '0x81ef28512f05bccde07646413edae7286b39e98c0073d918a3b48cb1289b9a11:log:231', 'hash': '0x81ef28512f05bccde07646413edae7286b39e98c0073d918a3b48cb1289b9a11', 'from': '0x577b7fde2cde3ca178986845ad9641d66d10f59c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02625a00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:30:33.000Z'}}, {'blockNum': '0xb16303', 'uniqueId': '0x988ba4e1ca51596a6d5d51f056aeb01e0d5b8ea443f99080e5daaad2baa2ed4f:log:295', 'hash': '0x988ba4e1ca51596a6d5d51f056aeb01e0d5b8ea443f99080e5daaad2baa2ed4f', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12001.2774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07273fe6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:36:11.000Z'}}, {'blockNum': '0xb16303', 'uniqueId': '0x257745839b9ac2b4b4701f34dd506af8865081778d96f3b6cb763ac861828ac5:log:296', 'hash': '0x257745839b9ac2b4b4701f34dd506af8865081778d96f3b6cb763ac861828ac5', 'from': '0xd8195ba557aac24c01d1fab6e8e8faa24d3455f0', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1607.463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xf54786', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T05:36:11.000Z'}}, {'blockNum': '0xb1635d', 'uniqueId': '0x117f3be9d660e013dff0910ce906712ea62c0c9ac72ff44eaa0c63f1016c8e41:log:39', 'hash': '0x117f3be9d660e013dff0910ce906712ea62c0c9ac72ff44eaa0c63f1016c8e41', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20636.0857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c4cd119', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:00:32.000Z'}}, {'blockNum': '0xb1635d', 'uniqueId': '0x63d98f630b5c52bba529053f0707ecbe7f04b83de8bd65c74c6948de66a184eb:log:77', 'hash': '0x63d98f630b5c52bba529053f0707ecbe7f04b83de8bd65c74c6948de66a184eb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1212ec30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:00:32.000Z'}}, {'blockNum': '0xb1638c', 'uniqueId': '0x90fbdec9283d7360f3e4e35faaf0abd006aeba154ae10894abb6f4c9fcd42fbe:log:20', 'hash': '0x90fbdec9283d7360f3e4e35faaf0abd006aeba154ae10894abb6f4c9fcd42fbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 12960.0009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07b98a09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:09:37.000Z'}}, {'blockNum': '0xb16390', 'uniqueId': '0x13af7190e12837a31f9c87f95ab23f4b7e770833566e8c59f46252dcbbaa4827:log:8', 'hash': '0x13af7190e12837a31f9c87f95ab23f4b7e770833566e8c59f46252dcbbaa4827', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe8d20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:10:13.000Z'}}, {'blockNum': '0xb16398', 'uniqueId': '0x363702e69ebc703d03cbf8195b8d71ab797a4b046209dfa82a290d72886fef4c:log:115', 'hash': '0x363702e69ebc703d03cbf8195b8d71ab797a4b046209dfa82a290d72886fef4c', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1212ec30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:11:21.000Z'}}, {'blockNum': '0xb163a9', 'uniqueId': '0x3215e83624c333944912fe61f0eb32e9d4aefdf29d346784d8eeddaac2430727:log:49', 'hash': '0x3215e83624c333944912fe61f0eb32e9d4aefdf29d346784d8eeddaac2430727', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08fe8d20', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:15:57.000Z'}}, {'blockNum': '0xb163a9', 'uniqueId': '0x54c19dc495caa07bdc41a837a20545140b0b67c79f8a45d00af7971c13e82566:log:50', 'hash': '0x54c19dc495caa07bdc41a837a20545140b0b67c79f8a45d00af7971c13e82566', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12960.0009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07b98a09', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:15:57.000Z'}}, {'blockNum': '0xb163cd', 'uniqueId': '0x00aeafcf538d0bd6e041e2fb13dfccfaf6d85d39db89cadd538d93be86cf86e2:log:121', 'hash': '0x00aeafcf538d0bd6e041e2fb13dfccfaf6d85d39db89cadd538d93be86cf86e2', 'from': '0x33ce729ec6d76a138ce3d550db1e6504d3c41c29', 'to': '0x8358d831ef282b8f485d627f3f6a517e799a6071', 'value': 377.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x399a18', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:23:12.000Z'}}, {'blockNum': '0xb163e8', 'uniqueId': '0x6be39aed1852a34e36aa08c18cbb2441415b2a3bdfde5661d74c7d690537b236:log:6', 'hash': '0x6be39aed1852a34e36aa08c18cbb2441415b2a3bdfde5661d74c7d690537b236', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 7002.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x042c8ae0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:27:23.000Z'}}, {'blockNum': '0xb163eb', 'uniqueId': '0x498bb50964db0d58ae27b958eabe63556c83e048edbde315ffd731eef9484342:log:77', 'hash': '0x498bb50964db0d58ae27b958eabe63556c83e048edbde315ffd731eef9484342', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 13125.1434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07d2bcea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:27:57.000Z'}}, {'blockNum': '0xb16412', 'uniqueId': '0x6881d5b47926c747ab837f615681e99c93e02ab3c1e2fa1bed9edd780a7d87de:log:77', 'hash': '0x6881d5b47926c747ab837f615681e99c93e02ab3c1e2fa1bed9edd780a7d87de', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 14374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08914c60', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:36:03.000Z'}}, {'blockNum': '0xb16412', 'uniqueId': '0x9d250371d72549da3327699bb752c6420239104fda57ab7f6a3d2cc456ac5b81:log:78', 'hash': '0x9d250371d72549da3327699bb752c6420239104fda57ab7f6a3d2cc456ac5b81', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13125.1434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07d2bcea', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:36:03.000Z'}}, {'blockNum': '0xb1643c', 'uniqueId': '0xebb0c41bc27777285e9a4a12abaacfd9329b7b011954c8f135608ee6c50fbbd0:log:42', 'hash': '0xebb0c41bc27777285e9a4a12abaacfd9329b7b011954c8f135608ee6c50fbbd0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbc6b64e8760bb98b6e96d13377c816a1625ca66e', 'value': 590.4817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5a19b1', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:44:14.000Z'}}, {'blockNum': '0xb16459', 'uniqueId': '0x3983b93513def30a5c0f321b23d33669e96b611eb41b6d7afa9e04bd3c4fbad2:log:213', 'hash': '0x3983b93513def30a5c0f321b23d33669e96b611eb41b6d7afa9e04bd3c4fbad2', 'from': '0xbc6b64e8760bb98b6e96d13377c816a1625ca66e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 590.4817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x5a19b1', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:51:48.000Z'}}, {'blockNum': '0xb16466', 'uniqueId': '0xd0bd3eb8680318395781c79602ff65aeb49e9ba93528ba699e1cb5aabe7bf5be:log:40', 'hash': '0xd0bd3eb8680318395781c79602ff65aeb49e9ba93528ba699e1cb5aabe7bf5be', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'value': 4701.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02cd5b48', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:54:14.000Z'}}, {'blockNum': '0xb16478', 'uniqueId': '0x995481f61e5dadf0b5f3b89b285155d5a5c94cbc440271fe848757e93fa48b76:log:6', 'hash': '0x995481f61e5dadf0b5f3b89b285155d5a5c94cbc440271fe848757e93fa48b76', 'from': '0x9f3fa770caea12bbe7ac34c3ede71708fa2a14d1', 'to': '0x6f53c92afa1315946fb969671c7e7a54932b8e85', 'value': 900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x895440', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:57:37.000Z'}}, {'blockNum': '0xb1647c', 'uniqueId': '0x4c6876b9b989cebc318112ccdff606a1b1423e1927c1bf215542b0c2593d1ba9:log:76', 'hash': '0x4c6876b9b989cebc318112ccdff606a1b1423e1927c1bf215542b0c2593d1ba9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'value': 30445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x122589d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T06:58:00.000Z'}}, {'blockNum': '0xb16484', 'uniqueId': '0x023f66d0fbe7a5e27cdcb979c9e802dd14863eee0587097c0be54e5b6d3317b0:log:158', 'hash': '0x023f66d0fbe7a5e27cdcb979c9e802dd14863eee0587097c0be54e5b6d3317b0', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4094.0299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0270b30b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:00:30.000Z'}}, {'blockNum': '0xb1648a', 'uniqueId': '0x374d7c611ec98d7e431bce3b839b0deee14132793d259693d85eaf54f94c189e:log:203', 'hash': '0x374d7c611ec98d7e431bce3b839b0deee14132793d259693d85eaf54f94c189e', 'from': '0x11e43f92c0c98839bfddd9c0640d037015b69e2b', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 4701.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02cd5b48', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:02:42.000Z'}}, {'blockNum': '0xb16497', 'uniqueId': '0x8b4df978c92d4d53f6cebd3fdf92bd6a143297fdafa61758de125b8a339b4a8b:log:14', 'hash': '0x8b4df978c92d4d53f6cebd3fdf92bd6a143297fdafa61758de125b8a339b4a8b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 5469.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03429070', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:04:26.000Z'}}, {'blockNum': '0xb1649f', 'uniqueId': '0xcd9cc2a6de422f97ade9750b1ea8398aa870ed41c87b87d282bebaf57f3e99b0:log:194', 'hash': '0xcd9cc2a6de422f97ade9750b1ea8398aa870ed41c87b87d282bebaf57f3e99b0', 'from': '0x8dc71c6a23ea84dbd5c5972c0aa80569244ea34e', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 30445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x122589d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:05:52.000Z'}}, {'blockNum': '0xb164b7', 'uniqueId': '0x533a7a485bd7e21a136b71d0c6fd6989a7b81bce9b716353da8422ad56fa19f4:log:260', 'hash': '0x533a7a485bd7e21a136b71d0c6fd6989a7b81bce9b716353da8422ad56fa19f4', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 5469.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03429070', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:11:19.000Z'}}, {'blockNum': '0xb164d6', 'uniqueId': '0xc210543977f073007ee87dc03d613caca2513935dc0df56e9c3814db402ea176:log:128', 'hash': '0xc210543977f073007ee87dc03d613caca2513935dc0df56e9c3814db402ea176', 'from': '0xaf0f7108b52f05f8afd024fd8aeec7e0e7058a68', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0240a130', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:19:42.000Z'}}, {'blockNum': '0xb16506', 'uniqueId': '0xad9576afe9775d435c707f9309040b661eda3e656433de3a8d3d0c70b510c9f6:log:14', 'hash': '0xad9576afe9775d435c707f9309040b661eda3e656433de3a8d3d0c70b510c9f6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x021ae57e099edd362922f57b399b8aac2d19cf35', 'value': 732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6fb1c0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:29:43.000Z'}}, {'blockNum': '0xb16513', 'uniqueId': '0xf0603a425418a863a53a9853a31a901cd67f2b079b0b902d7050bcaa9c3d0fbb:log:34', 'hash': '0xf0603a425418a863a53a9853a31a901cd67f2b079b0b902d7050bcaa9c3d0fbb', 'from': '0x021ae57e099edd362922f57b399b8aac2d19cf35', 'to': '0x031565e3720ae669b360e8d13c7df047947a6537', 'value': 721.4248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6e14a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:33:02.000Z'}}, {'blockNum': '0xb1654f', 'uniqueId': '0x1cb41a5e2fa20aaf89ef8eb5c5f4238010b28af7e7a52e5f38935d20b558af7b:log:67', 'hash': '0x1cb41a5e2fa20aaf89ef8eb5c5f4238010b28af7e7a52e5f38935d20b558af7b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 6514.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e208a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:46:33.000Z'}}, {'blockNum': '0xb16573', 'uniqueId': '0xf3b23bef823b1624267fd2a5ff9fea3e799f1b903d78ef3c9758edfacace13db:log:262', 'hash': '0xf3b23bef823b1624267fd2a5ff9fea3e799f1b903d78ef3c9758edfacace13db', 'from': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6514.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e208a8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2021-01-10T07:56:14.000Z'}}]}}
Number of returned transfers:  306
Answer is complete
 
symbol             RCN
group              BPF
date        2021-01-10
hour             17:00
exchange       binance
Name: 874, dtype: object
HERE
 Symbol: RCN, Contract: 0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6
Datetime timestamps:  2021-01-10 17:00:00 2021-01-10 05:00:00 2021-01-11 05:00:00
Unix timestamps:  1610251200.0 1610337600.0
Hex Block Numbers:  0xb1613f 0xb17ada
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb16147', 'uniqueId': '0xab3fcbedaa17c4421f5d6df09b74b011790429989d1c3d2e92b8e1fa82689b1d:log:42', 'hash': '0xab3fcbedaa17c4421f5d6df09b74b011790429989d1c3d2e92b8e1fa82689b1d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x21045c09ad2f743a02cca7fc7bc55e9ce81483a8', 'value': 4579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xf83a63ef6b11ac0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:01:45.000Z'}}, {'blockNum': '0xb16147', 'uniqueId': '0xd88bafd5be0f14ef112ad4e7d76efe4dd7a698cbca8267038e5ad9df1150e71c:log:175', 'hash': '0xd88bafd5be0f14ef112ad4e7d76efe4dd7a698cbca8267038e5ad9df1150e71c', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ba58e545582d4600000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:01:45.000Z'}}, {'blockNum': '0xb16161', 'uniqueId': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8:log:210', 'hash': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'value': 521.2257406513496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1c4175d18cd1939efc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:07:51.000Z'}}, {'blockNum': '0xb16161', 'uniqueId': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8:log:212', 'hash': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8', 'from': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 521.2257406513496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1c4175d18cd1939efc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:07:51.000Z'}}, {'blockNum': '0xb16161', 'uniqueId': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8:log:213', 'hash': '0xfc1baf53c4dc4946d71870c90c7517739cf45c94c5f65e582fd5bcda591527e8', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0x9b3644eed5e442678b2d505e0acfbb80a4f9e9ad', 'value': 521.2257406513496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1c4175d18cd1939efc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:07:51.000Z'}}, {'blockNum': '0xb1618e', 'uniqueId': '0x8cfbf721a2e8d4ebcb0b00c91e253e53c29fbd1fc323747c74fa5438ea32b256:log:18', 'hash': '0x8cfbf721a2e8d4ebcb0b00c91e253e53c29fbd1fc323747c74fa5438ea32b256', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x000906be4787eb60019d9e7b89ce1bd6908a4a15', 'value': 13364.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d483a9a090e96d0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:17:09.000Z'}}, {'blockNum': '0xb1619f', 'uniqueId': '0x03e6fdfcbf54fcae3e3ecf75d5d5a45c43395652e250bb348dddbf2937d3a50d:log:241', 'hash': '0x03e6fdfcbf54fcae3e3ecf75d5d5a45c43395652e250bb348dddbf2937d3a50d', 'from': '0x9b3644eed5e442678b2d505e0acfbb80a4f9e9ad', 'to': '0xf044ed1ada426092f1ddfb5b0ee83feb73ac5dbc', 'value': 521.2257406513496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1c4175d18cd1939efc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:22:36.000Z'}}, {'blockNum': '0xb161a9', 'uniqueId': '0x3fc84ca274f8fb4bca89e50f50fdc0a64578c56012fc86c3bc73e4069c075a9c:log:44', 'hash': '0x3fc84ca274f8fb4bca89e50f50fdc0a64578c56012fc86c3bc73e4069c075a9c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xca1640f4db07c2275a72715ff841fcc6ab7e2907', 'value': 5698.098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0134e4feb52ed3c50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:23:56.000Z'}}, {'blockNum': '0xb161af', 'uniqueId': '0xff608a3f28bdb39113daf0fe68592a36663641f3528b990a362009c5715a1854:log:11', 'hash': '0xff608a3f28bdb39113daf0fe68592a36663641f3528b990a362009c5715a1854', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x436d1fcecadeb4bb6e1f6a6f72af223c3825425b', 'value': 561.65450385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1e7285a37a7d842400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:25:06.000Z'}}, {'blockNum': '0xb161bf', 'uniqueId': '0xc4884d32074c91f601b663cf280268eb8d0242df70acc12615925704b9b6df38:log:117', 'hash': '0xc4884d32074c91f601b663cf280268eb8d0242df70acc12615925704b9b6df38', 'from': '0xca1640f4db07c2275a72715ff841fcc6ab7e2907', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5698.098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0134e4feb52ed3c50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:27:49.000Z'}}, {'blockNum': '0xb161c7', 'uniqueId': '0xf2b1b8d3d4483bcda9154b78fa997164926dd7cb2215f819bfeb93b7fb4dad7a:log:56', 'hash': '0xf2b1b8d3d4483bcda9154b78fa997164926dd7cb2215f819bfeb93b7fb4dad7a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x95f3f91ef92059db1e2acab78ec96d1e57ce7065', 'value': 1800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6194049f30f7200000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:28:30.000Z'}}, {'blockNum': '0xb161d3', 'uniqueId': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f:log:92', 'hash': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'value': 498.67431022995066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b087f0b107d2716a9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:22.000Z'}}, {'blockNum': '0xb161d3', 'uniqueId': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f:log:94', 'hash': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f', 'from': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 498.67431022995066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b087f0b107d2716a9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:22.000Z'}}, {'blockNum': '0xb161d3', 'uniqueId': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f:log:95', 'hash': '0x44144ff7f1326831a07f737c4a099c91a0320de19b62f342ba3534f0b337350f', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0xf044ed1ada426092f1ddfb5b0ee83feb73ac5dbc', 'value': 498.67431022995066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b087f0b107d2716a9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:31:22.000Z'}}, {'blockNum': '0xb16208', 'uniqueId': '0x64059b6b745c621c52c00c8d9dba3d895bc13860b4141518ba6071e0fb517a13:log:35', 'hash': '0x64059b6b745c621c52c00c8d9dba3d895bc13860b4141518ba6071e0fb517a13', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa0aee7fa7b01ddcfefc23d0717f379e621f1e7bb', 'value': 1718.46577498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x5d2880dd85bd422800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:43:27.000Z'}}, {'blockNum': '0xb16224', 'uniqueId': '0x73a0673cd260759403d75020d2d6ab13f32842edbeb8e7d585f832b45a569aab:log:149', 'hash': '0x73a0673cd260759403d75020d2d6ab13f32842edbeb8e7d585f832b45a569aab', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'value': 17276.608210413033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a8911a4ffa31e776d3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:49:43.000Z'}}, {'blockNum': '0xb16224', 'uniqueId': '0x73a0673cd260759403d75020d2d6ab13f32842edbeb8e7d585f832b45a569aab:log:153', 'hash': '0x73a0673cd260759403d75020d2d6ab13f32842edbeb8e7d585f832b45a569aab', 'from': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 17276.608210413033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a8911a4ffa31e776d3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:49:43.000Z'}}, {'blockNum': '0xb1624f', 'uniqueId': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d:log:155', 'hash': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x3b4503cba9add1194dd8098440e4be91c4c37806', 'value': 572.0438040588053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f02b3d8f9383fa0fe', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:58:34.000Z'}}, {'blockNum': '0xb1624f', 'uniqueId': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d:log:158', 'hash': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d', 'from': '0x3b4503cba9add1194dd8098440e4be91c4c37806', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 572.0438040588053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f02b3d8f9383fa0fe', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:58:34.000Z'}}, {'blockNum': '0xb1624f', 'uniqueId': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d:log:159', 'hash': '0x1c56e426c8e53e1fd71bc7c595457d1c796ea85712f6ff89a1c82322c1930f0d', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0xf044ed1ada426092f1ddfb5b0ee83feb73ac5dbc', 'value': 572.0438040588053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f02b3d8f9383fa0fe', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T04:58:34.000Z'}}, {'blockNum': '0xb1626f', 'uniqueId': '0x8382774db11b9a54509e331ca60319c67a69c09df78aa903309d001705a7040c:log:0', 'hash': '0x8382774db11b9a54509e331ca60319c67a69c09df78aa903309d001705a7040c', 'from': '0xcfad194906a22cfad317c38720a93b7b2e12d84e', 'to': '0x4e1f5de4955effbf3115142c36183646a785461d', 'value': 17296.64999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a9a73d0d6960351c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:04:40.000Z'}}, {'blockNum': '0xb162c8', 'uniqueId': '0x2c805e2976f578820980722f3f3577e272ad98d9ddb83626c29b13df6fdba696:log:12', 'hash': '0x2c805e2976f578820980722f3f3577e272ad98d9ddb83626c29b13df6fdba696', 'from': '0xfc60bb0bdb2d6428268d483ce2b8576634f99c2e', 'to': '0xe65ce5dcf46b5802a3c446011cfbfe72fd27c5a9', 'value': 45969.583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09bc041e5535fbb18000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:23:10.000Z'}}, {'blockNum': '0xb162d8', 'uniqueId': '0xa6a83a72124be932baf7d0fb0ed5e01c1652d7f99a782d831c4029d65eb0a61a:log:16', 'hash': '0xa6a83a72124be932baf7d0fb0ed5e01c1652d7f99a782d831c4029d65eb0a61a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x57b36c27601ac652a1994f17be7c18ce88344dcf', 'value': 24790.986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x053fec0b12ba12210000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:25:02.000Z'}}, {'blockNum': '0xb16320', 'uniqueId': '0xe5084e90c2c66417854471591093b0b142b8e41eeee4e6d729cc7cf46f8b2a98:log:57', 'hash': '0xe5084e90c2c66417854471591093b0b142b8e41eeee4e6d729cc7cf46f8b2a98', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x90a74fde710900c95a90580db780ac33e70ff63a', 'value': 21535.245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x048f6d8f7ce1c7148000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:43:20.000Z'}}, {'blockNum': '0xb1632b', 'uniqueId': '0xc56d7686b38e69741e38504152d3b2ff266eaa9213e72ef5a45d43b7c7c912bf:log:334', 'hash': '0xc56d7686b38e69741e38504152d3b2ff266eaa9213e72ef5a45d43b7c7c912bf', 'from': '0xd59b3a95c34b12df4d36db0c8e957d03a44f56ab', 'to': '0xf1f919f84763b2af900fcf1b8227f7053e5172e0', 'value': 5214.1268843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011aa88be7a483caf800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:46:25.000Z'}}, {'blockNum': '0xb1633e', 'uniqueId': '0x59a60194e1c6eec72bac982ab5e64b822bf7e87bf99a2d4fc1d5f006e0f556a5:log:227', 'hash': '0x59a60194e1c6eec72bac982ab5e64b822bf7e87bf99a2d4fc1d5f006e0f556a5', 'from': '0xf1f919f84763b2af900fcf1b8227f7053e5172e0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5214.1268843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011aa88be7a483caf800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:52:37.000Z'}}, {'blockNum': '0xb16349', 'uniqueId': '0x36356a47f46e8e23d874e426e0557854b0906f8bf476d5c7460800b30daeb677:log:246', 'hash': '0x36356a47f46e8e23d874e426e0557854b0906f8bf476d5c7460800b30daeb677', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x34c504f5168eb18cf6c4d07e7ef22be7ab379007', 'value': 3770.1121534131426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcc60d1049e755d7a89', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T05:56:30.000Z'}}, {'blockNum': '0xb163b9', 'uniqueId': '0xd2b527facfccdc026fe5c35a2e08918274c49cd7db73fc38145fd9002435f905:log:24', 'hash': '0xd2b527facfccdc026fe5c35a2e08918274c49cd7db73fc38145fd9002435f905', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x687591102413ed41b8bd9961c5f0d9be893b266f', 'value': 4029.277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xda6d738379bb9c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T06:19:41.000Z'}}, {'blockNum': '0xb163f8', 'uniqueId': '0x4731303e32fa6e445d7feaa5f7b2b05911f8bb017914db52685a2b2e0d747cff:log:257', 'hash': '0x4731303e32fa6e445d7feaa5f7b2b05911f8bb017914db52685a2b2e0d747cff', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46672.05944629103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09e218f0033b9b67f513', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T06:31:16.000Z'}}, {'blockNum': '0xb1648d', 'uniqueId': '0x3b3547c08964d6ce9b0b98df2a898d8875b76889e026bd99445cf94e4f3d2dc6:log:62', 'hash': '0x3b3547c08964d6ce9b0b98df2a898d8875b76889e026bd99445cf94e4f3d2dc6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf4c2b79d368c0903f392d5b9386ca877b3488c0c', 'value': 801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2b6c1ba81ebfe40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:03:01.000Z'}}, {'blockNum': '0xb164d5', 'uniqueId': '0x6dc29e94f783fa340fee0423423e995c827e91555e0c713221c4af415ce44d1c:log:16', 'hash': '0x6dc29e94f783fa340fee0423423e995c827e91555e0c713221c4af415ce44d1c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3d174671c4ca381718da50c24c8fdc86e57f48f4', 'value': 2345.39620579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7f24e92eb96deb2c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:19:19.000Z'}}, {'blockNum': '0xb164fd', 'uniqueId': '0xdd05fec0af4693295e7ffc1c243732c3dc51d9db65466e6dcb247956688547f5:log:202', 'hash': '0xdd05fec0af4693295e7ffc1c243732c3dc51d9db65466e6dcb247956688547f5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb2ff4a933378a31ed915c63cb4f74708225fcbd7', 'value': 1228.87183323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x429e05c57b0d380c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:27:43.000Z'}}, {'blockNum': '0xb16503', 'uniqueId': '0x390777abfaabf3e943ee909324537034fa8603cd44356cd6dbaed2b4658296c8:log:15', 'hash': '0x390777abfaabf3e943ee909324537034fa8603cd44356cd6dbaed2b4658296c8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x976f77036e4f70615f02bf657af906f954a09517', 'value': 5231.26566503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011b966515e952c0bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:29:02.000Z'}}, {'blockNum': '0xb16556', 'uniqueId': '0xe89f2e3a51957ccbbd5cb003fdd33637d5d3551de51230cb878746c73368bdb7:log:40', 'hash': '0xe89f2e3a51957ccbbd5cb003fdd33637d5d3551de51230cb878746c73368bdb7', 'from': '0x78bf491d83382e0cd4d1537c61616d350972be26', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 6025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01469dabea2e90840000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:50:04.000Z'}}, {'blockNum': '0xb1655c', 'uniqueId': '0xc3f664781f897c4c826550a47f8f9d698ae53bf8e9f162510504a09a7581a23a:log:201', 'hash': '0xc3f664781f897c4c826550a47f8f9d698ae53bf8e9f162510504a09a7581a23a', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x5da78a8ac3e96dfed4ac1c2eee318127a99caf39', 'value': 3756.657465993421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcba6185db25cf1a530', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:51:34.000Z'}}, {'blockNum': '0xb16572', 'uniqueId': '0x50d7be6ea42799f623be8e90b61d76b7542658fc1102afc7addd82ac8e0e29ad:log:201', 'hash': '0x50d7be6ea42799f623be8e90b61d76b7542658fc1102afc7addd82ac8e0e29ad', 'from': '0x8b23a983df98c03c05d7547dd938c1b36ed8b394', 'to': '0x7e1bd3919c4807793c8b5cfc5d5868a2ce8d801a', 'value': 2000.6877971258186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6c751ee7633f336b61', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T07:56:10.000Z'}}, {'blockNum': '0xb165b0', 'uniqueId': '0xf3add17c4c72101523e4575e0ea5dee9ce3b3277a01b79af12708683fe52ae26:log:145', 'hash': '0xf3add17c4c72101523e4575e0ea5dee9ce3b3277a01b79af12708683fe52ae26', 'from': '0x71da7f16c8a77fc69509c2297b4f6b599484c043', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 9000.123347790612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e5cd541e4ed31c2d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:08:59.000Z'}}, {'blockNum': '0xb165e1', 'uniqueId': '0x11fbd23af256dcb032122e740abc8f04e2343417969c7411232f07d053b01bdb:log:165', 'hash': '0x11fbd23af256dcb032122e740abc8f04e2343417969c7411232f07d053b01bdb', 'from': '0x0fc249e18613e5ed1a500ceaa79841483a2c114e', 'to': '0x0636e0cb8c1111efecdee8553b8beb4a45de5ebf', 'value': 7754.214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01a45b562569d8d70000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:18:58.000Z'}}, {'blockNum': '0xb165f7', 'uniqueId': '0x847cce0da37769b324d1174f3b32af45dbec0910b49b7194e481b095fc838582:log:45', 'hash': '0x847cce0da37769b324d1174f3b32af45dbec0910b49b7194e481b095fc838582', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb53bf7ffec6068bb770aad54b619360b86e1ce44', 'value': 2830.968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x997792bce3820c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:23:46.000Z'}}, {'blockNum': '0xb16606', 'uniqueId': '0x767904880cff2c4425124faa6671f7d5653cc5834eaaf7a614832eb3d07948af:log:11', 'hash': '0x767904880cff2c4425124faa6671f7d5653cc5834eaaf7a614832eb3d07948af', 'from': '0xb53bf7ffec6068bb770aad54b619360b86e1ce44', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2830.968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x997792bce3820c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:26:58.000Z'}}, {'blockNum': '0xb16668', 'uniqueId': '0x33536765cf9424f9fdc4ffafe89620dcd9948bed9c0cf9a1f142dc469ceb65b4:log:21', 'hash': '0x33536765cf9424f9fdc4ffafe89620dcd9948bed9c0cf9a1f142dc469ceb65b4', 'from': '0xf092032446bc5a368832c2eeb50d56272e2ee449', 'to': '0xa55d18fafedf627187914ec1cbddfa3d14972c0a', 'value': 52063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b06574442676a1c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:48:16.000Z'}}, {'blockNum': '0xb16677', 'uniqueId': '0x5bd0674ba95cdbdc0c3dd39620cf29477281968bd42992d1367d58a3de694697:log:5', 'hash': '0x5bd0674ba95cdbdc0c3dd39620cf29477281968bd42992d1367d58a3de694697', 'from': '0xbbc3482468f8abd858c544527fcd155c700afd92', 'to': '0x3e29080444ac0043a5163e2a3d5f17a818c1b105', 'value': 973.71653543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x34c9080e009535bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:52:38.000Z'}}, {'blockNum': '0xb1667a', 'uniqueId': '0x5deb235a656742609643983b6a473845eeae956ef496dd6b96b6865efd78fce3:log:47', 'hash': '0x5deb235a656742609643983b6a473845eeae956ef496dd6b96b6865efd78fce3', 'from': '0x3e29080444ac0043a5163e2a3d5f17a818c1b105', 'to': '0x8b4f9ba2360703a2864caec3de1786630b687396', 'value': 973.71653543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x34c9080e009535bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:52:55.000Z'}}, {'blockNum': '0xb16682', 'uniqueId': '0x40cf373f76c35a4a27612d22c8eab914502c0773855f4fdec83f4d66f894678d:log:96', 'hash': '0x40cf373f76c35a4a27612d22c8eab914502c0773855f4fdec83f4d66f894678d', 'from': '0xa55d18fafedf627187914ec1cbddfa3d14972c0a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 52063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b06574442676a1c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:55:12.000Z'}}, {'blockNum': '0xb16689', 'uniqueId': '0xff56a51b285f2aec8e5a3da0baeb19cb6b5302c893de9aced66c281069e56366:log:54', 'hash': '0xff56a51b285f2aec8e5a3da0baeb19cb6b5302c893de9aced66c281069e56366', 'from': '0x8b4f9ba2360703a2864caec3de1786630b687396', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 973.71653543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x34c9080e009535bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:56:33.000Z'}}, {'blockNum': '0xb1668e', 'uniqueId': '0x8477b1b3f04c8aa1b5a112031a8f43dbf70a68e9bfa8fb7a6663c22bead185d2:log:157', 'hash': '0x8477b1b3f04c8aa1b5a112031a8f43dbf70a68e9bfa8fb7a6663c22bead185d2', 'from': '0x8e60925d0a404c5cbb1f486f0531c7c8fe220044', 'to': '0x1fa670e1b5b89ca468b655acb80e2553c58d82df', 'value': 11500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x026f6a8f4e6380300000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T08:58:40.000Z'}}, {'blockNum': '0xb166a8', 'uniqueId': '0xa2c391dc441a47ff27c817ae9b2d80454a4d93fb2795a07a595d430fa6808c83:log:81', 'hash': '0xa2c391dc441a47ff27c817ae9b2d80454a4d93fb2795a07a595d430fa6808c83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'value': 31199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069b4d1a109d141c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:05:19.000Z'}}, {'blockNum': '0xb166b3', 'uniqueId': '0x2a771602b3cd1cc77d19e8a436d73039d5511e7721479f13bdfaffe58c83afd7:log:17', 'hash': '0x2a771602b3cd1cc77d19e8a436d73039d5511e7721479f13bdfaffe58c83afd7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'value': 15479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03471e4708be3f7c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:07:43.000Z'}}, {'blockNum': '0xb166bd', 'uniqueId': '0xa357bd49c0125c6b2d5f072843aa8ae41c7e7c657d51f53be9f5de816130121b:log:189', 'hash': '0xa357bd49c0125c6b2d5f072843aa8ae41c7e7c657d51f53be9f5de816130121b', 'from': '0x1920b4fcd44c11937ec2c0018c0794b51e976c48', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 31199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069b4d1a109d141c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:10:34.000Z'}}, {'blockNum': '0xb166cd', 'uniqueId': '0x8fe78e455cc7060d1a5e0fba1c3c9187f4c9ddc2f250275a2a159ba20ccaccdc:log:129', 'hash': '0x8fe78e455cc7060d1a5e0fba1c3c9187f4c9ddc2f250275a2a159ba20ccaccdc', 'from': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 15479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03471e4708be3f7c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:13:38.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x0931dea325e4d43000e87480b2676b335848eabf17c9de2593b3bc7c37fd66db:log:181', 'hash': '0x0931dea325e4d43000e87480b2676b335848eabf17c9de2593b3bc7c37fd66db', 'from': '0xd774b07b322d2fded7327e4b75452b6baa6d672f', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1291.79426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x46073f23402c994000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x605a0c5db02e5d135dd1e4a08c9796bf8e2b79ffa7ebf7d89f6fc50a6d55b341:log:182', 'hash': '0x605a0c5db02e5d135dd1e4a08c9796bf8e2b79ffa7ebf7d89f6fc50a6d55b341', 'from': '0xf1ecb43cac302ee84b23c0893effb22d72915d48', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1353.08466628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x4959d26708275e9000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0xe8b65f344a72b3fa4e1aa94e9d054287e0622f3f6f821bd23952008c4524725b:log:183', 'hash': '0xe8b65f344a72b3fa4e1aa94e9d054287e0622f3f6f821bd23952008c4524725b', 'from': '0x788e88b172e8f3e960b74eebbc85bfe74be07889', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1108.59362565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3c18d3bcf2aa9f7400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0xc0c7052738fad09207811c58bcd6b256fb0420b23a956978c35ceb83d909baa2:log:184', 'hash': '0xc0c7052738fad09207811c58bcd6b256fb0420b23a956978c35ceb83d909baa2', 'from': '0x6d429aa467d8b2b5dfe2e9ee44d1c28b0ecd84ef', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 2320.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7dcda0869dca020000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0xa956638f3589c215e4e58ffd724516909f2845639de6ce2066f753e25ca857eb:log:185', 'hash': '0xa956638f3589c215e4e58ffd724516909f2845639de6ce2066f753e25ca857eb', 'from': '0xdbb4a816e6b27a94e1096dd9eeae6b22cc011a48', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1170.674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3f765d8880d9a50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x0b85133d0a4e804ad7667d92880499e93cb2df96d8d697f39a3b78720c9d5b0b:log:186', 'hash': '0x0b85133d0a4e804ad7667d92880499e93cb2df96d8d697f39a3b78720c9d5b0b', 'from': '0x612265f1f87beadfea097bf7628680665aa4ba87', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1563.38611041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x54c057383e47ad6400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0xb893b37e2b9d28faa204ab4caffe54b7789c414f442b3246c1fa849971a8684b:log:187', 'hash': '0xb893b37e2b9d28faa204ab4caffe54b7789c414f442b3246c1fa849971a8684b', 'from': '0x0960f43b801d0fb3c28c55bf988c44369f8e4dd9', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 917.35916111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x31baea70a703e35c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x655223db06eef6055da82cf12b947b40ec45a71e44beb401072bd71d75b6a26f:log:188', 'hash': '0x655223db06eef6055da82cf12b947b40ec45a71e44beb401072bd71d75b6a26f', 'from': '0x4e1f5de4955effbf3115142c36183646a785461d', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 17296.64999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a9a73d0d6960351c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x4ea243d0c01fd35893cb9f5f156af69a6f834b766737fad8976fc594eb12bdaa:log:189', 'hash': '0x4ea243d0c01fd35893cb9f5f156af69a6f834b766737fad8976fc594eb12bdaa', 'from': '0x955d56ad03f82892efd86f1fa36417ebb48c40d5', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1825.60177275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x62f75063dd07268c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x9ed8cb8326233a1b97243b447efc34035c38829f64ee8f8b1b2d13925e1ac1e0:log:190', 'hash': '0x9ed8cb8326233a1b97243b447efc34035c38829f64ee8f8b1b2d13925e1ac1e0', 'from': '0x9e59a5b25bb1577573119573b1fff9d4c898ef5d', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 3421.83576861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb97f82bde34cccd400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16711', 'uniqueId': '0x26f915caad650259099df3236ff969ba212a169d4adbfb48f5e8ea248e1d5db9:log:191', 'hash': '0x26f915caad650259099df3236ff969ba212a169d4adbfb48f5e8ea248e1d5db9', 'from': '0x1fa670e1b5b89ca468b655acb80e2553c58d82df', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 11500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x026f6a8f4e6380300000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:27:08.000Z'}}, {'blockNum': '0xb16716', 'uniqueId': '0x381331b08822472634f743199f9f94ed9e2e48e1884e9066804f0b09ba156123:log:150', 'hash': '0x381331b08822472634f743199f9f94ed9e2e48e1884e9066804f0b09ba156123', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 43769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0944b8e501e638440000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:29:05.000Z'}}, {'blockNum': '0xb16719', 'uniqueId': '0x48b1ff10a45ef8e06d4d5b70f612b98fbced602bc423c63affbfe9b20d7412f8:log:96', 'hash': '0x48b1ff10a45ef8e06d4d5b70f612b98fbced602bc423c63affbfe9b20d7412f8', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 41567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08cd5a017c98661c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:29:32.000Z'}}, {'blockNum': '0xb16779', 'uniqueId': '0xab649e0c7d2753214c65b6ba633b8527869dee4f9b96cabfbe27156da7f49d6c:log:76', 'hash': '0xab649e0c7d2753214c65b6ba633b8527869dee4f9b96cabfbe27156da7f49d6c', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 20555.12429859879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x045a4ba743dc0d400000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:47:55.000Z'}}, {'blockNum': '0xb16786', 'uniqueId': '0x17aa37c3591869121be6a74d531a2212778b7042e3f671981c4de341524de07a:log:135', 'hash': '0x17aa37c3591869121be6a74d531a2212778b7042e3f671981c4de341524de07a', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0000000000000eb4ec62758aae93400b3e5f7f18', 'value': 2265.946852038697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7ad654606da12cb904', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:49:39.000Z'}}, {'blockNum': '0xb16786', 'uniqueId': '0x17aa37c3591869121be6a74d531a2212778b7042e3f671981c4de341524de07a:log:139', 'hash': '0x17aa37c3591869121be6a74d531a2212778b7042e3f671981c4de341524de07a', 'from': '0x0000000000000eb4ec62758aae93400b3e5f7f18', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2265.946852038697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7ad654606da12cb904', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:49:39.000Z'}}, {'blockNum': '0xb1678e', 'uniqueId': '0x2ebd8c3bd953dffdab9811d4ea6af14ffca8e3eed64b467853f8be82282a3b57:log:110', 'hash': '0x2ebd8c3bd953dffdab9811d4ea6af14ffca8e3eed64b467853f8be82282a3b57', 'from': '0xd4fd094ce623fb0f0df42ca148ad05cec5e98737', 'to': '0x61484516f836c8a385d77674d7d87cc92b46e53f', 'value': 940.49579743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x32fc0048cd62e39c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:51:34.000Z'}}, {'blockNum': '0xb1679a', 'uniqueId': '0x831beb2c0b13d645011a8b5206abffe43ba2393d92f7522a0ac059592dc4d719:log:153', 'hash': '0x831beb2c0b13d645011a8b5206abffe43ba2393d92f7522a0ac059592dc4d719', 'from': '0x61484516f836c8a385d77674d7d87cc92b46e53f', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 940.49579743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x32fc0048cd62e39c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T09:55:19.000Z'}}, {'blockNum': '0xb167bd', 'uniqueId': '0x7bc126bf1c0b304ce450c75df3cc8dce5ebe1749c1d4bc9df6e83952505451ae:log:108', 'hash': '0x7bc126bf1c0b304ce450c75df3cc8dce5ebe1749c1d4bc9df6e83952505451ae', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08cd5a017c98661c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T10:02:36.000Z'}}, {'blockNum': '0xb167d4', 'uniqueId': '0x04e813dd3740361ff710708d2f16646cb111d13d397a0e0162c3446e1549205d:log:49', 'hash': '0x04e813dd3740361ff710708d2f16646cb111d13d397a0e0162c3446e1549205d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8f3f0eb2cff3f038438ebc3503e6b0acbc7270e0', 'value': 1769.84833314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x5ff19461eeb6e84800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T10:06:57.000Z'}}, {'blockNum': '0xb16838', 'uniqueId': '0xb73e5429af1e9f047a82aaade629892d9ebef5f68912c24daba8cc262cab44c7:log:108', 'hash': '0xb73e5429af1e9f047a82aaade629892d9ebef5f68912c24daba8cc262cab44c7', 'from': '0x453675469e49f72c8834d72e061abe0bb1e9e5f0', 'to': '0x9ffb03301fa801068509a715799be56e036f026c', 'value': 4947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x010c2d6a91abb16c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T10:29:15.000Z'}}, {'blockNum': '0xb168ef', 'uniqueId': '0xd9982c71f6182f48e22fdfcbaedd10a529a36db5e4ec536fd101c8f2f9200dca:log:89', 'hash': '0xd9982c71f6182f48e22fdfcbaedd10a529a36db5e4ec536fd101c8f2f9200dca', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x27619acbb4f7a72cdb637a93a4e08903e19b6e0a', 'value': 9910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x021938e08e91d9180000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T11:08:38.000Z'}}, {'blockNum': '0xb1691f', 'uniqueId': '0xf255cdf675c2707d62b5a4b1ddc96349814032845c16bb9529fa5b58214ab2e5:log:90', 'hash': '0xf255cdf675c2707d62b5a4b1ddc96349814032845c16bb9529fa5b58214ab2e5', 'from': '0x27619acbb4f7a72cdb637a93a4e08903e19b6e0a', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 9910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x021938e08e91d9180000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T11:19:07.000Z'}}, {'blockNum': '0xb16936', 'uniqueId': '0x8227aef8efeb50a305cf015625c0b407c7a4a3441ece9bcf363c6e035742a82a:log:16', 'hash': '0x8227aef8efeb50a305cf015625c0b407c7a4a3441ece9bcf363c6e035742a82a', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 25351.266043208307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x055e4b7da588adc00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T11:22:26.000Z'}}, {'blockNum': '0xb169ae', 'uniqueId': '0xcf4abaade42816e40ec5a6041a2d53e9f7af05e6b202830cc14eae4d4de8989a:log:35', 'hash': '0xcf4abaade42816e40ec5a6041a2d53e9f7af05e6b202830cc14eae4d4de8989a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9d2ccedd926d6c3b464ed088471706c7c1706bae', 'value': 6246.549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0152a04813dd6f888000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T11:49:48.000Z'}}, {'blockNum': '0xb16a21', 'uniqueId': '0x0085efce426c82c027ba7eda08dc198c028cd305de0987a98150957f728648e6:log:279', 'hash': '0x0085efce426c82c027ba7eda08dc198c028cd305de0987a98150957f728648e6', 'from': '0xcf87be32ea6c1f558121a02f70265812b9a7e0cb', 'to': '0x1db1d9f0b754d582e0272508888ff3d6b2dea555', 'value': 10669.22531983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0242613ebc682e945c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T12:13:29.000Z'}}, {'blockNum': '0xb16b8a', 'uniqueId': '0xe512212cd31a6a45359fb91c23d84ecb94b415c83711407d8e76e3d5b5d90162:log:111', 'hash': '0xe512212cd31a6a45359fb91c23d84ecb94b415c83711407d8e76e3d5b5d90162', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0xdd8745c5f92b39c678d09a65498a145457781316', 'value': 305.99308909658237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x109681d54ffe3eccf4', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T13:33:49.000Z'}}, {'blockNum': '0xb16bab', 'uniqueId': '0x59dada1d9a693f01886b4c438696ac08c0490fdad6db5c84b217d8a91170689a:log:169', 'hash': '0x59dada1d9a693f01886b4c438696ac08c0490fdad6db5c84b217d8a91170689a', 'from': '0x58e5bf4cad53c5bb72bd380bf268aee450292419', 'to': '0x60bd5b67ce8ff6cfad6a6a531a8406d2cbfa4423', 'value': 52990.27042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b389bba908135614000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T13:41:34.000Z'}}, {'blockNum': '0xb16beb', 'uniqueId': '0x5baa35c072c2e9f5109cbb2613da9594ebc4069d8fd03d18928a853d9e673010:log:24', 'hash': '0x5baa35c072c2e9f5109cbb2613da9594ebc4069d8fd03d18928a853d9e673010', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 31839.02915142408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06bdff4a62d0632882be', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T13:54:54.000Z'}}, {'blockNum': '0xb16c25', 'uniqueId': '0xec1c24aafc6cd2d92d7d1c4a74db8bfeb643afbe9bd5f680c31a7081fc68a172:log:27', 'hash': '0xec1c24aafc6cd2d92d7d1c4a74db8bfeb643afbe9bd5f680c31a7081fc68a172', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 12456.42640293492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02a343a4787e64ab14e2', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:05:11.000Z'}}, {'blockNum': '0xb16c55', 'uniqueId': '0xf8d09f9c4ad235411f50c3a55635fd3438f771322e0a2f2120d3bdc6b7ebd1cc:log:226', 'hash': '0xf8d09f9c4ad235411f50c3a55635fd3438f771322e0a2f2120d3bdc6b7ebd1cc', 'from': '0x60bd5b67ce8ff6cfad6a6a531a8406d2cbfa4423', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 52990.27042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b389bba908135614000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:14:43.000Z'}}, {'blockNum': '0xb16c5c', 'uniqueId': '0xe68b2c294ae1f4def92325a9d11f58b48b8bbe2d150cfa8323a4d31dedd1987b:log:91', 'hash': '0xe68b2c294ae1f4def92325a9d11f58b48b8bbe2d150cfa8323a4d31dedd1987b', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 52990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b3897f9d6f28d380000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:17:15.000Z'}}, {'blockNum': '0xb16c5e', 'uniqueId': '0x41ecbd8bf6c145f8e5c2aa65fe75c4bfb0d1846dd736134b88e7b3f99c1d0ef0:log:309', 'hash': '0x41ecbd8bf6c145f8e5c2aa65fe75c4bfb0d1846dd736134b88e7b3f99c1d0ef0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 47190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09fe2cce80aa1b980000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:17:37.000Z'}}, {'blockNum': '0xb16c9a', 'uniqueId': '0xa5e4c03f875fb1044875e7429472f40b299c26cfd49d75db0a141adbb446ab44:log:87', 'hash': '0xa5e4c03f875fb1044875e7429472f40b299c26cfd49d75db0a141adbb446ab44', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7aa1c67ee350f8128c9e6b1af587cac9d30371e2', 'value': 26441.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05996338fccef27f0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:30:29.000Z'}}, {'blockNum': '0xb16c9d', 'uniqueId': '0x8da90c3c23ef48c360c519617151699fc41feb55d02385918df0c169d494e33c:log:134', 'hash': '0x8da90c3c23ef48c360c519617151699fc41feb55d02385918df0c169d494e33c', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47190, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09fe2cce80aa1b980000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:31:24.000Z'}}, {'blockNum': '0xb16cb2', 'uniqueId': '0xe5d65063ea7548326c7df3d2f77b5c1f8569bfa57d351f9fe95fd3efb44199ab:log:93', 'hash': '0xe5d65063ea7548326c7df3d2f77b5c1f8569bfa57d351f9fe95fd3efb44199ab', 'from': '0x79afa7098d254a1ac6ced66d80f4cabcc5d7565c', 'to': '0xaa6fc6923cb222df4f4f96c972c0141023d60b30', 'value': 6256.599509632082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01532bc2a9201f6d106d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:34:48.000Z'}}, {'blockNum': '0xb16cca', 'uniqueId': '0x277e2281f4868b32608a8ef160b6af7a2283c0b5f6561051aae4725b9d0b04ad:log:37', 'hash': '0x277e2281f4868b32608a8ef160b6af7a2283c0b5f6561051aae4725b9d0b04ad', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 36429.77638458345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07b6dcb4e08d1a730a1a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:39:34.000Z'}}, {'blockNum': '0xb16ccb', 'uniqueId': '0x05983bb515556e8a8d06638c3e69e440a95a56fa9b2c3d8ac90bf54d892c3a5c:log:81', 'hash': '0x05983bb515556e8a8d06638c3e69e440a95a56fa9b2c3d8ac90bf54d892c3a5c', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 36356.91683181428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07b2e993bf5586800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:39:52.000Z'}}, {'blockNum': '0xb16ccf', 'uniqueId': '0x9f22f490785d03354690c20cac14ce381e4ade8347e1f456df1c9e3e9a3833ee:log:236', 'hash': '0x9f22f490785d03354690c20cac14ce381e4ade8347e1f456df1c9e3e9a3833ee', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 14569.860652955971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0315d56f3d6eed8ac93f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:40:44.000Z'}}, {'blockNum': '0xb16cd7', 'uniqueId': '0x9e1f21211d7d8829bdf215136e99c1608becba41743e07792726b20ab98c4b2a:log:259', 'hash': '0x9e1f21211d7d8829bdf215136e99c1608becba41743e07792726b20ab98c4b2a', 'from': '0x87bc8ba9b0accbb61e70ddd8cd139446561433fa', 'to': '0x78566a0be290706fcd275f5af016f34b6618a711', 'value': 7073.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x017f7a7fdfb66b010000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:42:01.000Z'}}, {'blockNum': '0xb16cd9', 'uniqueId': '0xc2dddf0bea26e503ca31aaf3766a88968a602d2a1cc1b212c08164d988fc9631:log:6', 'hash': '0xc2dddf0bea26e503ca31aaf3766a88968a602d2a1cc1b212c08164d988fc9631', 'from': '0x78566a0be290706fcd275f5af016f34b6618a711', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 7073.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x017f7a7fdfb66b010000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:42:48.000Z'}}, {'blockNum': '0xb16cdc', 'uniqueId': '0x243a79d03e1b1835f0fdcace47100f18bb02b6ef2f555234c76779cf499f012d:log:72', 'hash': '0x243a79d03e1b1835f0fdcace47100f18bb02b6ef2f555234c76779cf499f012d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x2ab26a16e7f6e1e331254bd6708797635f2a6e0e', 'value': 35691.96627059268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078edd88caf64c5093c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:43:22.000Z'}}, {'blockNum': '0xb16cdc', 'uniqueId': '0xbffa59371ab34367c0dfd90ca06aafd80cc9c071131b320623de99c733818bcf:log:81', 'hash': '0xbffa59371ab34367c0dfd90ca06aafd80cc9c071131b320623de99c733818bcf', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 24557.489411580515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x053343a08cad6103c30b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:43:22.000Z'}}, {'blockNum': '0xb16cdc', 'uniqueId': '0xbffa59371ab34367c0dfd90ca06aafd80cc9c071131b320623de99c733818bcf:log:87', 'hash': '0xbffa59371ab34367c0dfd90ca06aafd80cc9c071131b320623de99c733818bcf', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 24557.489411580515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x053343a08cad6103c30b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:43:22.000Z'}}, {'blockNum': '0xb16ce0', 'uniqueId': '0xb6255b4a18c893a35bee2bda3d90b4fe7890e7e3b24d3f6caaf6aa7d8dcc4f71:log:35', 'hash': '0xb6255b4a18c893a35bee2bda3d90b4fe7890e7e3b24d3f6caaf6aa7d8dcc4f71', 'from': '0x2ab26a16e7f6e1e331254bd6708797635f2a6e0e', 'to': '0x5a8490dccfe4fef824df37b3e133d9c4537e9751', 'value': 35691.96627059268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078edd88caf64c5093c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:44:00.000Z'}}, {'blockNum': '0xb16cec', 'uniqueId': '0x7b3a0d15df6a964fe6743611769c05da011644b2edc3f758d4f5372157ff644e:log:147', 'hash': '0x7b3a0d15df6a964fe6743611769c05da011644b2edc3f758d4f5372157ff644e', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 46292.97320847457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09cd8c0f266c79ec02b8', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:47:00.000Z'}}, {'blockNum': '0xb16cf6', 'uniqueId': '0x19c802b604f7c79933eb3e3783b077ffc374f34228c0914681103f8a8ad18bd0:log:1', 'hash': '0x19c802b604f7c79933eb3e3783b077ffc374f34228c0914681103f8a8ad18bd0', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 49104.44829158528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0a65f51d22adf58712c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:49:15.000Z'}}, {'blockNum': '0xb16cf6', 'uniqueId': '0xc51bfde57dc9a7ca4c5518fe42a6e9a0ec23199383d4b230b24d361ce56bb83f:log:8', 'hash': '0xc51bfde57dc9a7ca4c5518fe42a6e9a0ec23199383d4b230b24d361ce56bb83f', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 23176.917606639323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04e86c5836aa8982c7d3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:49:15.000Z'}}, {'blockNum': '0xb16cf7', 'uniqueId': '0xbf90e675376380a0669914bf78b8caab61ad7ca293dae42074402d8967f8bfbe:log:44', 'hash': '0xbf90e675376380a0669914bf78b8caab61ad7ca293dae42074402d8967f8bfbe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71d1d49a0690062843a65a872ba2329c4e07b0f8', 'value': 33806.961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0728add4c88b449e8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:49:29.000Z'}}, {'blockNum': '0xb16cf8', 'uniqueId': '0x3696ef8a1ae07abdda196403b9c042ec1e5fb421096aed23faa17da4886dd86c:log:140', 'hash': '0x3696ef8a1ae07abdda196403b9c042ec1e5fb421096aed23faa17da4886dd86c', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 46292.97320847457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09cd8c0f266c79ec02b8', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T14:50:03.000Z'}}, {'blockNum': '0xb16d26', 'uniqueId': '0x644d12479d3c798af80ad1baf947829de4af00a77f1c8225091a59568e1ae8c4:log:25', 'hash': '0x644d12479d3c798af80ad1baf947829de4af00a77f1c8225091a59568e1ae8c4', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 67787.69925686107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e5ac74e677de7b86b6b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:13.000Z'}}, {'blockNum': '0xb16d26', 'uniqueId': '0xb94296555ac35f61074f199694f51f075204a449b9a7ad8cf23cc384db35514d:log:132', 'hash': '0xb94296555ac35f61074f199694f51f075204a449b9a7ad8cf23cc384db35514d', 'from': '0xacf98af36845ec9aeda29feed2907ea287388cf3', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 2049.8109160877425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6f1ed747d16fee13b0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:13.000Z'}}, {'blockNum': '0xb16d26', 'uniqueId': '0x212d796432d70553ed09290cfec8245b2cd0b4096daee9141e01f0cd1c470d95:log:143', 'hash': '0x212d796432d70553ed09290cfec8245b2cd0b4096daee9141e01f0cd1c470d95', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 20705.606359354104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04627402f0d41282084d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:13.000Z'}}, {'blockNum': '0xb16d27', 'uniqueId': '0x18c31da6426274b2288451f38a6e4e9909e54ea6db5fb51bbf22ab1669e7d87e:log:15', 'hash': '0x18c31da6426274b2288451f38a6e4e9909e54ea6db5fb51bbf22ab1669e7d87e', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 24721.999765667548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x053c2eaabc1b3083d526', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:26.000Z'}}, {'blockNum': '0xb16d27', 'uniqueId': '0x318d49d60880707c81429660d92c7caba193a052eb529e323cf02e53512f48cb:log:22', 'hash': '0x318d49d60880707c81429660d92c7caba193a052eb529e323cf02e53512f48cb', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 67652.12385834736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e536dd1d4da53800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:26.000Z'}}, {'blockNum': '0xb16d28', 'uniqueId': '0x4290b35d88e4e4690a681b8b1ab30db3157966a44f29900514c0fd92017e6ad3:log:10', 'hash': '0x4290b35d88e4e4690a681b8b1ab30db3157966a44f29900514c0fd92017e6ad3', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 27025.678269718763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05b910a0de2104800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:43.000Z'}}, {'blockNum': '0xb16d29', 'uniqueId': '0xcdb4a822379e668cc4166aa4bb795b949e3235b9fe4a83a569c6ca6bea76aa96:log:15', 'hash': '0xcdb4a822379e668cc4166aa4bb795b949e3235b9fe4a83a569c6ca6bea76aa96', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 22531.87376558937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04c5749022d1e9b14d78', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:49.000Z'}}, {'blockNum': '0xb16d2a', 'uniqueId': '0xef1a618cf79d879f77783b4dfbcf4c3b612acff7d337c6c4c90e547e9d36e277:log:38', 'hash': '0xef1a618cf79d879f77783b4dfbcf4c3b612acff7d337c6c4c90e547e9d36e277', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 21869.983984904713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04a192ff42212f66162d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:00:58.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0x3ac244bda18c505fc123dee89c95513af2aac5ca97b64b8643ec46daa9b5edb0:log:34', 'hash': '0x3ac244bda18c505fc123dee89c95513af2aac5ca97b64b8643ec46daa9b5edb0', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'value': 31192.28622901671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069aefedf579b1e9f108', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0x3ac244bda18c505fc123dee89c95513af2aac5ca97b64b8643ec46daa9b5edb0:log:40', 'hash': '0x3ac244bda18c505fc123dee89c95513af2aac5ca97b64b8643ec46daa9b5edb0', 'from': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 31192.28622901671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069aefedf579b1e9f108', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0x12d34e3725d4ddf8720758fc50f0aaa6efc91ee80ede2081ad78f9ba92c1ef32:log:59', 'hash': '0x12d34e3725d4ddf8720758fc50f0aaa6efc91ee80ede2081ad78f9ba92c1ef32', 'from': '0x5a8490dccfe4fef824df37b3e133d9c4537e9751', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35691.96627059268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078edd88caf64c5093c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0xb3e84ab1518ac32dd1c20a04f56c9902446194060d21ada47cbfb78e75c9c22b:log:61', 'hash': '0xb3e84ab1518ac32dd1c20a04f56c9902446194060d21ada47cbfb78e75c9c22b', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46292.97320847457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09cd8c0f266c79ec02b8', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2b', 'uniqueId': '0xd067def21b666ed313891d5258192d103431b82ef8824f45ddcb9edec47c1714:log:64', 'hash': '0xd067def21b666ed313891d5258192d103431b82ef8824f45ddcb9edec47c1714', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13044.54206656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02c32563089724bb0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:19.000Z'}}, {'blockNum': '0xb16d2c', 'uniqueId': '0x400356ab003b6cc205e786da77e0d000e70380d8bd61530d2886b79e45081377:log:12', 'hash': '0x400356ab003b6cc205e786da77e0d000e70380d8bd61530d2886b79e45081377', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x97f0b8d84194f1b1c57655e0dcc8ee6af1d6248d', 'value': 55424.72394904649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0bbc948eeae2897c75fb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:01:28.000Z'}}, {'blockNum': '0xb16d30', 'uniqueId': '0xe94ef044811022d3d9893635d7b3ea0585bac0ca18cf556703d4615f42aaa643:log:36', 'hash': '0xe94ef044811022d3d9893635d7b3ea0585bac0ca18cf556703d4615f42aaa643', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 47253.87353125692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0a01a33adeed1a35229e', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:02:20.000Z'}}, {'blockNum': '0xb16d92', 'uniqueId': '0x8c1cd4af0047ca78d9e0224abd819a125bf01e94579d7e921a746017166fc4ab:log:304', 'hash': '0x8c1cd4af0047ca78d9e0224abd819a125bf01e94579d7e921a746017166fc4ab', 'from': '0x3e9d321504e4c4bcdadd10ed64f1744bb739aa48', 'to': '0xf772cb614baa695d6ff475720dbee6279c84c9f4', 'value': 14240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0303f3b2c93f1a800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:21:52.000Z'}}, {'blockNum': '0xb16d95', 'uniqueId': '0x5b1b4239b23a88c94272dad072056a113fddb005cce4c4631de57d7f78b7ccad:log:24', 'hash': '0x5b1b4239b23a88c94272dad072056a113fddb005cce4c4631de57d7f78b7ccad', 'from': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'to': '0x080b52f3bda198c1443dbbfbb331fbec824e4068', 'value': 8252.34488935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01bf5c4a92111500bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:22:26.000Z'}}, {'blockNum': '0xb16d9f', 'uniqueId': '0x9221d69d22546fa08447812105c176fc4667ec0ab1b238c8c7c94b98cc41b3fb:log:12', 'hash': '0x9221d69d22546fa08447812105c176fc4667ec0ab1b238c8c7c94b98cc41b3fb', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 45444.55419305471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x099f8de14f0416cff544', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:18.000Z'}}, {'blockNum': '0xb16da0', 'uniqueId': '0xd3a8e72fb4dc45e081f4111259e58a5099731daf29b4a58dcc4c60306ca384f1:log:8', 'hash': '0xd3a8e72fb4dc45e081f4111259e58a5099731daf29b4a58dcc4c60306ca384f1', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 26495.637997984668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x059c54d78b42b2400000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:49.000Z'}}, {'blockNum': '0xb16da0', 'uniqueId': '0xe150269a33b0a7eed15ccfcf576bad924ebb42b498ef81ba13cc0b3e55247585:log:14', 'hash': '0xe150269a33b0a7eed15ccfcf576bad924ebb42b498ef81ba13cc0b3e55247585', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 45444.55419305471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x099f8de14f0416cff544', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:49.000Z'}}, {'blockNum': '0xb16da0', 'uniqueId': '0x01e23c24e2ae0aade376d0d0256bf779d4d84c8b635dfa043c32fde8e54b441d:log:295', 'hash': '0x01e23c24e2ae0aade376d0d0256bf779d4d84c8b635dfa043c32fde8e54b441d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x2ab26a16e7f6e1e331254bd6708797635f2a6e0e', 'value': 88038.88427176338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x12a498f46b2b351a7e20', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:49.000Z'}}, {'blockNum': '0xb16da1', 'uniqueId': '0x6750c8e8d7ffc1d5e3d7e9f2e69c70f487f383e3e7a39af2086d1390e4017e7f:log:8', 'hash': '0x6750c8e8d7ffc1d5e3d7e9f2e69c70f487f383e3e7a39af2086d1390e4017e7f', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 39743.456996976995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x086a7f4350e40b000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:26:57.000Z'}}, {'blockNum': '0xb16da4', 'uniqueId': '0xfc3620f4ff92abd4c4d71762419379b61e39f6883a4dc1197ec6d00544d57720:log:32', 'hash': '0xfc3620f4ff92abd4c4d71762419379b61e39f6883a4dc1197ec6d00544d57720', 'from': '0x2ab26a16e7f6e1e331254bd6708797635f2a6e0e', 'to': '0x5a8490dccfe4fef824df37b3e133d9c4537e9751', 'value': 88038.88427176338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x12a498f46b2b351a7e20', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:27:30.000Z'}}, {'blockNum': '0xb16db6', 'uniqueId': '0x1196ed97e2051ea79474a0175787d4a9dc6b9224d0228cfaa3bca2a45a3aa68b:log:6', 'hash': '0x1196ed97e2051ea79474a0175787d4a9dc6b9224d0228cfaa3bca2a45a3aa68b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x000906be4787eb60019d9e7b89ce1bd6908a4a15', 'value': 13953.28264537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02f468b21e4ddda64400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:30:37.000Z'}}, {'blockNum': '0xb16db9', 'uniqueId': '0x9d9fcb87057dad9314ac16c2d7b7a02f8262778d5ad5464674fda9bee14950a4:log:81', 'hash': '0x9d9fcb87057dad9314ac16c2d7b7a02f8262778d5ad5464674fda9bee14950a4', 'from': '0x5a8490dccfe4fef824df37b3e133d9c4537e9751', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 88038.88427176338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x12a498f46b2b351a7e20', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:31:08.000Z'}}, {'blockNum': '0xb16db9', 'uniqueId': '0xa76312d0a64bcdd87afa9260cb9af151a87c836b24e05ca1aa9204e22f21ad34:log:82', 'hash': '0xa76312d0a64bcdd87afa9260cb9af151a87c836b24e05ca1aa9204e22f21ad34', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49104.44829158528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0a65f51d22adf58712c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:31:08.000Z'}}, {'blockNum': '0xb16dc0', 'uniqueId': '0x19f4ff4cacca878835424f651a591f97409e361e3c28718f40c28dd09f4844df:log:25', 'hash': '0x19f4ff4cacca878835424f651a591f97409e361e3c28718f40c28dd09f4844df', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 20336.342963721887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x044e6f73d2f135b1a0af', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:33:51.000Z'}}, {'blockNum': '0xb16dc2', 'uniqueId': '0xb375650f9f80e9416a16fcc306d0858d18b01a30468d8b73e8b0db8008e7645c:log:8', 'hash': '0xb375650f9f80e9416a16fcc306d0858d18b01a30468d8b73e8b0db8008e7645c', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 35673.431698790104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078ddc50c41ba8084594', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:34:08.000Z'}}, {'blockNum': '0xb16dc2', 'uniqueId': '0x4e7826efa953dbec7206424e0c2cbe23767d8d842f844555e940573a8a8b15c7:log:203', 'hash': '0x4e7826efa953dbec7206424e0c2cbe23767d8d842f844555e940573a8a8b15c7', 'from': '0xd06cfbb59d2e8918f84d99d981039d7706dca288', 'to': '0x4243d27518c4922ff04f2635dcb7a97bbd2499c8', 'value': 8100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01b71a14cc5c58100000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:34:08.000Z'}}, {'blockNum': '0xb16dc5', 'uniqueId': '0x76ed64fb11bdcb195150f977ea05683813774cf52cab4995b61a51a9ed3f0a7a:log:49', 'hash': '0x76ed64fb11bdcb195150f977ea05683813774cf52cab4995b61a51a9ed3f0a7a', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'value': 35673.431698790104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078ddc50c41ba8084594', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:35:30.000Z'}}, {'blockNum': '0xb16dc7', 'uniqueId': '0xe2cbd0d1a4a00cb1037ae58c093514a06a848319b79a544e560eddf9b44e2da9:log:0', 'hash': '0xe2cbd0d1a4a00cb1037ae58c093514a06a848319b79a544e560eddf9b44e2da9', 'from': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'to': '0x8df42c6216ce86945807364fbc75b11a6a862527', 'value': 1089.81520616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3b143963ea01e6a000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:35:43.000Z'}}, {'blockNum': '0xb16dc8', 'uniqueId': '0xe48b2fa116a6f78d5df2a9694d39f08582a3c499a436d078be1a7daa5be8d1eb:log:79', 'hash': '0xe48b2fa116a6f78d5df2a9694d39f08582a3c499a436d078be1a7daa5be8d1eb', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 28735.411421573222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0615bff1392fa68298f1', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:35:47.000Z'}}, {'blockNum': '0xb16ddc', 'uniqueId': '0x84ff38bc7fa3451bea2e7a1b18fc0cea30c4add1e7cd81d1eb4b77e13f88dc63:log:256', 'hash': '0x84ff38bc7fa3451bea2e7a1b18fc0cea30c4add1e7cd81d1eb4b77e13f88dc63', 'from': '0x6a71a2483254bf17ddd5f8698a8b3525e3c3187e', 'to': '0xdae1739d01df26a8d9cd63a9b3abf7c244d21954', 'value': 4481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xf2ea5dfea4fd640000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:40:28.000Z'}}, {'blockNum': '0xb16deb', 'uniqueId': '0xbcd51a976b4165b49a19ce497866d8b265e1ecf9f5457d24fc98667cbb0a86fc:log:52', 'hash': '0xbcd51a976b4165b49a19ce497866d8b265e1ecf9f5457d24fc98667cbb0a86fc', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 26445.371838107636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05999b42452c84c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:42:25.000Z'}}, {'blockNum': '0xb16e0b', 'uniqueId': '0xb0ddace1820ca8e2a119f6cc5226531bd019597487f57f9ba15cda6a03843c56:log:141', 'hash': '0xb0ddace1820ca8e2a119f6cc5226531bd019597487f57f9ba15cda6a03843c56', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7de46ae81b2b961e444a7e45a4026accb098b0a2', 'value': 1093.70342035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3b4a2f1a1e877bec00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:50:31.000Z'}}, {'blockNum': '0xb16e0d', 'uniqueId': '0x0c1b0656f7ea50442c97536735b85f7de9a50cdaec15f8ac9239cd4f2a14ec1d:log:186', 'hash': '0x0c1b0656f7ea50442c97536735b85f7de9a50cdaec15f8ac9239cd4f2a14ec1d', 'from': '0x91db806cc7d001043653de9773e8d9c0235bfb33', 'to': '0xdae1739d01df26a8d9cd63a9b3abf7c244d21954', 'value': 4416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xef644f9b077d000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:51:21.000Z'}}, {'blockNum': '0xb16e1c', 'uniqueId': '0x75ac5bfe2d1cf90e23f1af717a63330bcfc3b4a4d05e4e79cde2617aa0a0dc05:log:81', 'hash': '0x75ac5bfe2d1cf90e23f1af717a63330bcfc3b4a4d05e4e79cde2617aa0a0dc05', 'from': '0xa7d1d040a4a37872badab0c7c9f68274ef84a138', 'to': '0x63f2db6f7ddbee712778c4bd390d525b4d545771', 'value': 20182.95133457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04461eb748eea8fe2400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:54:43.000Z'}}, {'blockNum': '0xb16e33', 'uniqueId': '0xe5acbe845cb1721fd55a55d7b6cb3d6e89558a12489580e296d80adda8d464d5:log:150', 'hash': '0xe5acbe845cb1721fd55a55d7b6cb3d6e89558a12489580e296d80adda8d464d5', 'from': '0x8bad18aeb13a87ea527cb12c75008ed4c6357841', 'to': '0x0f6b5e135874dc17f42b335a9f0b83929fe65ea2', 'value': 14628.03682852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0318fcca88e0d2441000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T15:58:59.000Z'}}, {'blockNum': '0xb16e3c', 'uniqueId': '0x764f9ee93c7a87e2be6e02a7475c08afd00171d1f17d82a020692c74056383ae:log:214', 'hash': '0x764f9ee93c7a87e2be6e02a7475c08afd00171d1f17d82a020692c74056383ae', 'from': '0xa98093db1a80fee0df160770bce70b0602f2b4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35673.431698790104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x078ddc50c41ba8084594', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:01:05.000Z'}}, {'blockNum': '0xb16e40', 'uniqueId': '0x3d1758d49b27572ce6ae5ddd172f91abc5c44310aa75eca89248387f66b2103b:log:52', 'hash': '0x3d1758d49b27572ce6ae5ddd172f91abc5c44310aa75eca89248387f66b2103b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc3f6670275caa23930cecd8e557da350752db84f', 'value': 578.22863294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f5888c612846f3800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:02:34.000Z'}}, {'blockNum': '0xb16e41', 'uniqueId': '0x91a255cba4589694f169fce67a02e5304402e934726c78a17a7c57a91b56f6e4:log:257', 'hash': '0x91a255cba4589694f169fce67a02e5304402e934726c78a17a7c57a91b56f6e4', 'from': '0x2a859e4a3c2ef3babe741c4e4c66f9ab7362c42a', 'to': '0x32875b3b6cedf78743de48d4c5f5758a31d1b8ae', 'value': 73115.76880247258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f7b9d1ff5e7363611f0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:02:54.000Z'}}, {'blockNum': '0xb16e43', 'uniqueId': '0xc68837d2e72a3d1046d0bd9fa2dd1a373a95445688a4a127908530c451d52130:log:205', 'hash': '0xc68837d2e72a3d1046d0bd9fa2dd1a373a95445688a4a127908530c451d52130', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x3f64333d8d2b86a77f436dce43cf2059b93d9ac6', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:03:31.000Z'}}, {'blockNum': '0xb16e52', 'uniqueId': '0xd825f9677d9a568e1af260c39dba8fbba698a960bb6242acd400ed19049ac892:log:70', 'hash': '0xd825f9677d9a568e1af260c39dba8fbba698a960bb6242acd400ed19049ac892', 'from': '0x5f82d3b98502ddb40f3043c5f47a8dd61d3b9856', 'to': '0x21d3cfe9af26a13041d92c9df18bacac828fffec', 'value': 1071.47830177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3a15bf9e8643a66400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:05:51.000Z'}}, {'blockNum': '0xb16e52', 'uniqueId': '0x6b279ece08381ea3755ef66134e6bece30d8b596c8fea7dfb625738c2be90c4e:log:90', 'hash': '0x6b279ece08381ea3755ef66134e6bece30d8b596c8fea7dfb625738c2be90c4e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xe8c53d3086c28b59b044a965b93dfd9bcd7e8372', 'value': 53373.0379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b4d5bb1d39360d0c000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:05:51.000Z'}}, {'blockNum': '0xb16e7a', 'uniqueId': '0x53bd184f7a5d411398ac61a69ae95d653ca8e8f423f5abf82d7b0c21787d5352:log:94', 'hash': '0x53bd184f7a5d411398ac61a69ae95d653ca8e8f423f5abf82d7b0c21787d5352', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x13dc08f5ddbcbfdf6ebc04c909c3052a2aa7a111', 'value': 78596.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x10a4b9f73cbcac850000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:18:08.000Z'}}, {'blockNum': '0xb16e97', 'uniqueId': '0x63bb0293901ea5ef7e223cbc4a49a51e59872a482b90f8a92ca538bdf71d8d76:log:73', 'hash': '0x63bb0293901ea5ef7e223cbc4a49a51e59872a482b90f8a92ca538bdf71d8d76', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x68a5d88c4e01947f35be9078c8b25b2a2cde0575', 'value': 6041.94423473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x014788d1ede4f900a400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:24:09.000Z'}}, {'blockNum': '0xb16eb6', 'uniqueId': '0xa5eea6678974e7bac00cc2478b87bbaf1bf6021b3bfd5dfb33da3932e53502e1:log:54', 'hash': '0xa5eea6678974e7bac00cc2478b87bbaf1bf6021b3bfd5dfb33da3932e53502e1', 'from': '0x32875b3b6cedf78743de48d4c5f5758a31d1b8ae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 73115.76880247258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f7b9d1ff5e7363611f0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:31:16.000Z'}}, {'blockNum': '0xb16ebd', 'uniqueId': '0xa1a76d9387467d8114e13b74b2c84b17872e2bc0885e5f2a6be0c6c50d7b2a2e:log:186', 'hash': '0xa1a76d9387467d8114e13b74b2c84b17872e2bc0885e5f2a6be0c6c50d7b2a2e', 'from': '0x13dc08f5ddbcbfdf6ebc04c909c3052a2aa7a111', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 78650.56667145884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x10a7a7e00f215925132e', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:32:55.000Z'}}, {'blockNum': '0xb16ebd', 'uniqueId': '0xb7301d23739e546bc0fa5ea8c81553ae93195e7d87cfee64eab8c592cb87afe5:log:195', 'hash': '0xb7301d23739e546bc0fa5ea8c81553ae93195e7d87cfee64eab8c592cb87afe5', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 32854.86780961377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06f510e2484b2cecddbc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:32:55.000Z'}}, {'blockNum': '0xb16ebd', 'uniqueId': '0x08106d1f16b851e894e5468370e0bb910b6089f49a6542733bacf346f5f1fac5:log:206', 'hash': '0x08106d1f16b851e894e5468370e0bb910b6089f49a6542733bacf346f5f1fac5', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'value': 23683.15208772521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0503ddc261118c2aaaaa', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:32:55.000Z'}}, {'blockNum': '0xb16ebe', 'uniqueId': '0xfa4c3f339052a751edcfc9f5375fd0d59b2b41298fa5644629b12e479ff96fb0:log:4', 'hash': '0xfa4c3f339052a751edcfc9f5375fd0d59b2b41298fa5644629b12e479ff96fb0', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'value': 26717.6542009144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05a85def8b8869c3ed3a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:32:56.000Z'}}, {'blockNum': '0xb16ebf', 'uniqueId': '0x63807f3efbb5256d472469f3741ff011f0baf12e67fd1f0944948e908a0aaa39:log:5', 'hash': '0x63807f3efbb5256d472469f3741ff011f0baf12e67fd1f0944948e908a0aaa39', 'from': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 23683.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0503ddbaf64b247b0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:33:01.000Z'}}, {'blockNum': '0xb16ee4', 'uniqueId': '0x126d8548a83d499314c60c59f767ac8c8975202daa78661dbdadcb78121c8631:log:183', 'hash': '0x126d8548a83d499314c60c59f767ac8c8975202daa78661dbdadcb78121c8631', 'from': '0x4281596933f41572693346fda1b93680bd37540c', 'to': '0x565350a3e0be1f2964a98f3a34461eb6eb98da98', 'value': 2698.424132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9248285330b1c84000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:42:25.000Z'}}, {'blockNum': '0xb16efd', 'uniqueId': '0x3fd9ed76265f96fd4d0a0e8277154dd6fe31e1a5d9ce057895662d60526f222d:log:58', 'hash': '0x3fd9ed76265f96fd4d0a0e8277154dd6fe31e1a5d9ce057895662d60526f222d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 15772.62052482398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03570914b067008f39e3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:48:34.000Z'}}, {'blockNum': '0xb16f10', 'uniqueId': '0x535c175714c9d02a97baf4098782153505864e32f56eb6b3ef2dcbb981e11898:log:9', 'hash': '0x535c175714c9d02a97baf4098782153505864e32f56eb6b3ef2dcbb981e11898', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 33862.33084943823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x072bae3e013efd503cad', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:52:19.000Z'}}, {'blockNum': '0xb16f10', 'uniqueId': '0x640f0208682e61c6cb1faaf89b128143cfa889d41e5e65be6e01d402f5f99b55:log:109', 'hash': '0x640f0208682e61c6cb1faaf89b128143cfa889d41e5e65be6e01d402f5f99b55', 'from': '0xf092032446bc5a368832c2eeb50d56272e2ee449', 'to': '0xabf88bf1513449b01fbbb6af049bdd6f284747d8', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0c7e657b0c9a4ee00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:52:19.000Z'}}, {'blockNum': '0xb16f12', 'uniqueId': '0xb33e190966a506d0f69d20393660aa2ead392b4f72e9bf4789c989b47222c7c1:log:263', 'hash': '0xb33e190966a506d0f69d20393660aa2ead392b4f72e9bf4789c989b47222c7c1', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 25982.03291451631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05807d23bd0adbadd33c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:53:24.000Z'}}, {'blockNum': '0xb16f12', 'uniqueId': '0xb33e190966a506d0f69d20393660aa2ead392b4f72e9bf4789c989b47222c7c1:log:266', 'hash': '0xb33e190966a506d0f69d20393660aa2ead392b4f72e9bf4789c989b47222c7c1', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 25982.03291451631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05807d23bd0adbadd33c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:53:24.000Z'}}, {'blockNum': '0xb16f1a', 'uniqueId': '0x3ee35e9caa124eb63a0333bbcfaa3d1e431c4fdc68ceab7094282b7dbd6d8eb5:log:145', 'hash': '0x3ee35e9caa124eb63a0333bbcfaa3d1e431c4fdc68ceab7094282b7dbd6d8eb5', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x15b4d77b7b4ebd9b8a359d76734ac7939138f5ab', 'value': 63426.62946455771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0d6e5d4e195476b55f04', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:56:03.000Z'}}, {'blockNum': '0xb16f1a', 'uniqueId': '0x5903199efb4b324be9f1e8b0e04d1f4c68de839f2776b5795dba5a346b8d04c0:log:148', 'hash': '0x5903199efb4b324be9f1e8b0e04d1f4c68de839f2776b5795dba5a346b8d04c0', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 38539.219144646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0829371b0685ab800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:56:03.000Z'}}, {'blockNum': '0xb16f1c', 'uniqueId': '0xa6f0c624688160020f6b1694b3cf68c8efeebbf9d07223d7a0024248b5a1451c:log:1', 'hash': '0xa6f0c624688160020f6b1694b3cf68c8efeebbf9d07223d7a0024248b5a1451c', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 33862.33084943823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x072bae3e013efd503cad', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:56:12.000Z'}}, {'blockNum': '0xb16f29', 'uniqueId': '0xda40e4becb86d667d3edc86b4b94ff59249d905d113729e787539001d5ff49e3:log:21', 'hash': '0xda40e4becb86d667d3edc86b4b94ff59249d905d113729e787539001d5ff49e3', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 33888.15979497654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x072d14b0da5d931fd448', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T16:59:04.000Z'}}, {'blockNum': '0xb16f2e', 'uniqueId': '0x1d1359bf9986cf76710fd62a7015679e9938359187700c8a954e78f517d70c8b:log:19', 'hash': '0x1d1359bf9986cf76710fd62a7015679e9938359187700c8a954e78f517d70c8b', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 31426.306661461713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06a79f9d8ce4058956c9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:00:12.000Z'}}, {'blockNum': '0xb16f2f', 'uniqueId': '0xa6074fe43c3eaf36b08e7f99f37da0e724ba1315f9ed22f507903e373f48a48a:log:63', 'hash': '0xa6074fe43c3eaf36b08e7f99f37da0e724ba1315f9ed22f507903e373f48a48a', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 33888.15979497654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x072d14b0da5d931fd448', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:00:22.000Z'}}, {'blockNum': '0xb16f31', 'uniqueId': '0x3c6d2114ad50ae016af3b0061a11297089449c78b091abb09b9d0529418fa3e2:log:113', 'hash': '0x3c6d2114ad50ae016af3b0061a11297089449c78b091abb09b9d0529418fa3e2', 'from': '0xabf88bf1513449b01fbbb6af049bdd6f284747d8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0c7e657b0c9a4ee00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:01:20.000Z'}}, {'blockNum': '0xb16f34', 'uniqueId': '0xc7509b7aaa686001584d2bdc4cd6c4641d4666800db99a5213b1bf5f66218b4d:log:85', 'hash': '0xc7509b7aaa686001584d2bdc4cd6c4641d4666800db99a5213b1bf5f66218b4d', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 32897.80778509671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06f764cbb87d59653bca', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:01:35.000Z'}}, {'blockNum': '0xb16f34', 'uniqueId': '0x4f284a9b131630fb2bcd8afffe63f447e497b7175fb44a67e930a30a51ddb694:log:93', 'hash': '0x4f284a9b131630fb2bcd8afffe63f447e497b7175fb44a67e930a30a51ddb694', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 31363.454048138792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06a4375c3614b7c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:01:35.000Z'}}, {'blockNum': '0xb16f3a', 'uniqueId': '0x71a9eabdfcbef944759fabe9f6d4f24483de67b648095c33977757972fd5e1b4:log:194', 'hash': '0x71a9eabdfcbef944759fabe9f6d4f24483de67b648095c33977757972fd5e1b4', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x15b4d77b7b4ebd9b8a359d76734ac7939138f5ab', 'value': 60607.49143899191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0cd589e7df82e10c24a3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:02:44.000Z'}}, {'blockNum': '0xb16f3a', 'uniqueId': '0xa07f258a1871038ac1ec72218febc8721c4a72baeea8891db529fdd8e47cb66c:log:198', 'hash': '0xa07f258a1871038ac1ec72218febc8721c4a72baeea8891db529fdd8e47cb66c', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x7c651d7084b4ba899391d2d4d5d3d47fff823351', 'value': 22452.035931622697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04c120972bd38564a716', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:02:44.000Z'}}, {'blockNum': '0xb16f3a', 'uniqueId': '0xa07f258a1871038ac1ec72218febc8721c4a72baeea8891db529fdd8e47cb66c:log:199', 'hash': '0xa07f258a1871038ac1ec72218febc8721c4a72baeea8891db529fdd8e47cb66c', 'from': '0x7c651d7084b4ba899391d2d4d5d3d47fff823351', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 22452.035931622697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04c120972bd38564a716', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:02:44.000Z'}}, {'blockNum': '0xb16f3b', 'uniqueId': '0x5b7248c4066aa6cc3955f1fe51a50f890918b157a5befd52de469c31a5b212ce:log:0', 'hash': '0x5b7248c4066aa6cc3955f1fe51a50f890918b157a5befd52de469c31a5b212ce', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 42370.86112718337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08f8edd1e8bad4000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:03:04.000Z'}}, {'blockNum': '0xb16f3b', 'uniqueId': '0xe5416320f8487f3e087861691a37369bd9e3a37c68f9d6c8973d3cb8a6273df8:log:4', 'hash': '0xe5416320f8487f3e087861691a37369bd9e3a37c68f9d6c8973d3cb8a6273df8', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 32897.80778509671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06f764cbb87d59653bca', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:03:04.000Z'}}, {'blockNum': '0xb16f3b', 'uniqueId': '0x1a9b39081ada771e32001007f544d800259374973fbaacbd886af4704da2bbb1:log:18', 'hash': '0x1a9b39081ada771e32001007f544d800259374973fbaacbd886af4704da2bbb1', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x7c651d7084b4ba899391d2d4d5d3d47fff823351', 'value': 29731.501295977465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x064bbf7758724aca96f9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:03:04.000Z'}}, {'blockNum': '0xb16f3b', 'uniqueId': '0x1a9b39081ada771e32001007f544d800259374973fbaacbd886af4704da2bbb1:log:19', 'hash': '0x1a9b39081ada771e32001007f544d800259374973fbaacbd886af4704da2bbb1', 'from': '0x7c651d7084b4ba899391d2d4d5d3d47fff823351', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 29731.501295977465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x064bbf7758724aca96f9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:03:04.000Z'}}, {'blockNum': '0xb16f3f', 'uniqueId': '0x91de4f5f1b91f97920ebb5271f76a5249aab6d949ac575d746a0d090fcd90715:log:12', 'hash': '0x91de4f5f1b91f97920ebb5271f76a5249aab6d949ac575d746a0d090fcd90715', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'value': 42020.96583194098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08e5f60c1b8814fa9807', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:04:03.000Z'}}, {'blockNum': '0xb16f44', 'uniqueId': '0xe8e3c0a75e871f07cb34679144dfe5cc729cf51aa8f34d0e2bc05e0ab7fab9b5:log:35', 'hash': '0xe8e3c0a75e871f07cb34679144dfe5cc729cf51aa8f34d0e2bc05e0ab7fab9b5', 'from': '0xf092032446bc5a368832c2eeb50d56272e2ee449', 'to': '0xcfa3e97f04d9b7ecdab669d5ebffc897a3faff18', 'value': 23489.38071602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04f95ca42d25baca8800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:05:42.000Z'}}, {'blockNum': '0xb16f44', 'uniqueId': '0xeb0d39471b6757172b6d0ca90ae2929494d0314eb0848bb9662af7b955ab39e7:log:73', 'hash': '0xeb0d39471b6757172b6d0ca90ae2929494d0314eb0848bb9662af7b955ab39e7', 'from': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'to': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'value': 34638.666693435196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0755c410fa285f4d3819', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:05:42.000Z'}}, {'blockNum': '0xb16f44', 'uniqueId': '0xeb0d39471b6757172b6d0ca90ae2929494d0314eb0848bb9662af7b955ab39e7:log:79', 'hash': '0xeb0d39471b6757172b6d0ca90ae2929494d0314eb0848bb9662af7b955ab39e7', 'from': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 34638.666693435196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0755c410fa285f4d3819', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:05:42.000Z'}}, {'blockNum': '0xb16f49', 'uniqueId': '0x0018ae06098c3ecfc416b583ab9f23bdfb569c29215bbe44d3ad62e57ae4bc37:log:58', 'hash': '0x0018ae06098c3ecfc416b583ab9f23bdfb569c29215bbe44d3ad62e57ae4bc37', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 21838.59292428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x049fdf5bcecef492b000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:06:44.000Z'}}, {'blockNum': '0xb16f4c', 'uniqueId': '0x7b3929530b1c7636677d9ae4888b79de7a2996d4a35401d5f542ab2d180e0541:log:79', 'hash': '0x7b3929530b1c7636677d9ae4888b79de7a2996d4a35401d5f542ab2d180e0541', 'from': '0x8a0f69b5f97d5c5a2573314e91ef9d7f46ba6da1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 42020.96583194098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08e5f60c1b8814fa9807', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:07:21.000Z'}}, {'blockNum': '0xb16f51', 'uniqueId': '0x91a625771557a96c22753d17f868206f900035a8f37365a3bcc54eb0fe160a3c:log:42', 'hash': '0x91a625771557a96c22753d17f868206f900035a8f37365a3bcc54eb0fe160a3c', 'from': '0x0087366b4a4e44fcb96b7d0897d68c3daf45780a', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 9857.396500061132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02165edb6214a295b6dc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:07:51.000Z'}}, {'blockNum': '0xb16f51', 'uniqueId': '0x6bcdb8b45d527a44c05302e36f83a576f96f783714d37556244d69007b8f21be:log:266', 'hash': '0x6bcdb8b45d527a44c05302e36f83a576f96f783714d37556244d69007b8f21be', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 21838.59292428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x049fdf5bcecef492b000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:07:51.000Z'}}, {'blockNum': '0xb16f53', 'uniqueId': '0x0bc54a8988241747b6374ee2952cf9920ae8d112d144b0a97af12999433af338:log:55', 'hash': '0x0bc54a8988241747b6374ee2952cf9920ae8d112d144b0a97af12999433af338', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 71122.922657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f0f94d43325b28f1000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:08:06.000Z'}}, {'blockNum': '0xb16f53', 'uniqueId': '0xe8b4299614d10c7c182db26712305c9aba6c9e0d900a03151fdad77266a7bee2:log:172', 'hash': '0xe8b4299614d10c7c182db26712305c9aba6c9e0d900a03151fdad77266a7bee2', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0xcb0298f7cf0c74ff95bcd52f9840966ebd73bc2f', 'value': 14000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02f6f10780d22cc00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:08:06.000Z'}}, {'blockNum': '0xb16f5c', 'uniqueId': '0xd4a72eaa8a1f8ef22210a8ce2e1ac376406a811f3ba27ade67f6f62347f2f2c5:log:20', 'hash': '0xd4a72eaa8a1f8ef22210a8ce2e1ac376406a811f3ba27ade67f6f62347f2f2c5', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 71112.96609502078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f0f0aa762c77e800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:09:13.000Z'}}, {'blockNum': '0xb16f68', 'uniqueId': '0xb3da80f7cc3efe8643e352395effeed8070e299f3419e91e1aa0f8cd945feaa4:log:36', 'hash': '0xb3da80f7cc3efe8643e352395effeed8070e299f3419e91e1aa0f8cd945feaa4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 23740.03799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0506f335bce0fedb1c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:12:39.000Z'}}, {'blockNum': '0xb16f6c', 'uniqueId': '0xab4e8f5838b3ebfe936bc0383ad121eb2877a92631353ef354dcb26bde9d5f7b:log:61', 'hash': '0xab4e8f5838b3ebfe936bc0383ad121eb2877a92631353ef354dcb26bde9d5f7b', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 23740.03799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0506f335bce0fedb1c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:13:01.000Z'}}, {'blockNum': '0xb16f7d', 'uniqueId': '0x49ea16df686b7a9f916c0dbac80ce89ddf22459d977e719f0e66a5aead374094:log:114', 'hash': '0x49ea16df686b7a9f916c0dbac80ce89ddf22459d977e719f0e66a5aead374094', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 23537.24100001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04fbf4d60fdc940e6400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:17:03.000Z'}}, {'blockNum': '0xb16f7d', 'uniqueId': '0xfd5955aeab763ee427ea609f4107bf2a5fd24b7609cff4c8657e2ec0ca71b057:log:115', 'hash': '0xfd5955aeab763ee427ea609f4107bf2a5fd24b7609cff4c8657e2ec0ca71b057', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7f25e5272ed9e475d8ada9435007fd72c08e5794', 'value': 7999.84919799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ac35ac8de788fc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:17:03.000Z'}}, {'blockNum': '0xb16f7f', 'uniqueId': '0x8ac7e29d8f9c82efe9b5f0b19141539ae677393108d31a2bbc7a0ff797da2d32:log:340', 'hash': '0x8ac7e29d8f9c82efe9b5f0b19141539ae677393108d31a2bbc7a0ff797da2d32', 'from': '0xaa6fc6923cb222df4f4f96c972c0141023d60b30', 'to': '0x31fcdc68b27c61709eb962c1e40fa9dc1cff289b', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:17:34.000Z'}}, {'blockNum': '0xb16f80', 'uniqueId': '0xa984bbbaaed6451ade898399be050247d44018570e314c9a3fa4688d7e7d58d3:log:177', 'hash': '0xa984bbbaaed6451ade898399be050247d44018570e314c9a3fa4688d7e7d58d3', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 23537.24100001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04fbf4d60fdc940e6400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:17:47.000Z'}}, {'blockNum': '0xb16f83', 'uniqueId': '0xc27198d775a12675d02c61ea8263a88bd46c4d32ea653767348b6f418c54f5f5:log:114', 'hash': '0xc27198d775a12675d02c61ea8263a88bd46c4d32ea653767348b6f418c54f5f5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 23790.987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0509b644f272d8478000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:18:23.000Z'}}, {'blockNum': '0xb16f83', 'uniqueId': '0xd2ecd2237e745394fbee4db6487790e19b168a12bf436625b976bce30ca61e35:log:124', 'hash': '0xd2ecd2237e745394fbee4db6487790e19b168a12bf436625b976bce30ca61e35', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9d7756b5b8eb31a2b2336ba443978dfac3670eff', 'value': 6930.41087903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0177b2c5879655d69c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:18:23.000Z'}}, {'blockNum': '0xb16f85', 'uniqueId': '0x2a2b48873b2189266b4983bc26b08fbf004d2ed7276e3d80e204237fd941a326:log:151', 'hash': '0x2a2b48873b2189266b4983bc26b08fbf004d2ed7276e3d80e204237fd941a326', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 23790.987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0509b644f272d8478000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:18:54.000Z'}}, {'blockNum': '0xb16f90', 'uniqueId': '0x48c34fd0e9f9a044314dfdc08831a27b65b0dd1f4f2b3df13c717bc39732dfd8:log:197', 'hash': '0x48c34fd0e9f9a044314dfdc08831a27b65b0dd1f4f2b3df13c717bc39732dfd8', 'from': '0x260ce905725a52c1846b1f523397aa931325a251', 'to': '0x3eb8284ae19d93422573b8ff11a1b171e6d6b875', 'value': 1137.3727336651018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3da837ab359b5d9d81', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:21:42.000Z'}}, {'blockNum': '0xb16fba', 'uniqueId': '0x75ff1eb6878a7260d6b16c0da01a8b514b3858708af8d08e4f23bdaca8aa27bc:log:128', 'hash': '0x75ff1eb6878a7260d6b16c0da01a8b514b3858708af8d08e4f23bdaca8aa27bc', 'from': '0xcfa3e97f04d9b7ecdab669d5ebffc897a3faff18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23489.38071602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04f95ca42d25baca8800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:31:11.000Z'}}, {'blockNum': '0xb16fbc', 'uniqueId': '0xf946e0bb089a8854db0b149cf70204255d52bcc89fb894476f089a340e9b1296:log:192', 'hash': '0xf946e0bb089a8854db0b149cf70204255d52bcc89fb894476f089a340e9b1296', 'from': '0x15b4d77b7b4ebd9b8a359d76734ac7939138f5ab', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 70548.28375075238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ef06e1cb27b8267f6f4', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:31:45.000Z'}}, {'blockNum': '0xb16fbd', 'uniqueId': '0x029e5b1459beb8ecadd8d0aa1e80acaf0c4e44d67168a110806c0c2e0e7ccf8e:log:30', 'hash': '0x029e5b1459beb8ecadd8d0aa1e80acaf0c4e44d67168a110806c0c2e0e7ccf8e', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 29646.713291283817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x064726cbd76757acbe60', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:31:48.000Z'}}, {'blockNum': '0xb16fbf', 'uniqueId': '0xbdbc0c89334a75ffa43e3ff7c9cebd6a7e67d8151d94cb960549f8d0961338cb:log:77', 'hash': '0xbdbc0c89334a75ffa43e3ff7c9cebd6a7e67d8151d94cb960549f8d0961338cb', 'from': '0x15b4d77b7b4ebd9b8a359d76734ac7939138f5ab', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 53485.837152797234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b537919465bd5598cb3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:32:22.000Z'}}, {'blockNum': '0xb16fbf', 'uniqueId': '0x9082bcae44ac23fbdfc3bb91acd6c38d48b3b60096b9b1c402d47fb389a5723f:log:84', 'hash': '0x9082bcae44ac23fbdfc3bb91acd6c38d48b3b60096b9b1c402d47fb389a5723f', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 44684.88884297059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09765f67d3fe760e6ab6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:32:22.000Z'}}, {'blockNum': '0xb16fbf', 'uniqueId': '0x9082bcae44ac23fbdfc3bb91acd6c38d48b3b60096b9b1c402d47fb389a5723f:log:88', 'hash': '0x9082bcae44ac23fbdfc3bb91acd6c38d48b3b60096b9b1c402d47fb389a5723f', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 44684.88884297059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09765f67d3fe760e6ab6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:32:22.000Z'}}, {'blockNum': '0xb16fc1', 'uniqueId': '0x5b2f7989940e7dbce6b76280f7f7141a14120d74d1caaa900924e0f4eceab6c3:log:200', 'hash': '0x5b2f7989940e7dbce6b76280f7f7141a14120d74d1caaa900924e0f4eceab6c3', 'from': '0xf18f68a2f75f29ad85acea9ca9df11bd5a5beb3f', 'to': '0x6d97ac463e7a5ae00c7122894c8a69e8e7b612c9', 'value': 1588.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x561e40f33c898c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:32:45.000Z'}}, {'blockNum': '0xb16fe3', 'uniqueId': '0x71824e597f92398917156d80a8ea956b9351b5633ba8e0d590f0fa436eb6d886:log:108', 'hash': '0x71824e597f92398917156d80a8ea956b9351b5633ba8e0d590f0fa436eb6d886', 'from': '0x5eec053151a3d211df7147e90777e508088956f2', 'to': '0xa1bfb54f9f86e5342b2f97c43ca94a6121562d89', 'value': 1334.543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x4858812bc9c4218000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:38:36.000Z'}}, {'blockNum': '0xb17048', 'uniqueId': '0x254fa7a2bcc46fce4fbdd965a61bca446244989ddde96d7abb06116edeeb4af5:log:27', 'hash': '0x254fa7a2bcc46fce4fbdd965a61bca446244989ddde96d7abb06116edeeb4af5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfb4e792e2aa967554957e4c896704a549140d049', 'value': 1072.86812898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3a2909470222df4800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T17:59:20.000Z'}}, {'blockNum': '0xb17055', 'uniqueId': '0xcdc988710ffab74cae06c33122f168412622a8ff4a06e0b19d94d65da5ae2952:log:136', 'hash': '0xcdc988710ffab74cae06c33122f168412622a8ff4a06e0b19d94d65da5ae2952', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23683.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0503ddbaf64b247b0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:01:10.000Z'}}, {'blockNum': '0xb1706e', 'uniqueId': '0x16cfc0ff027a66a067a65a95d7c2ceb2bb440935318a460eb3dc12c2b7aff61f:log:18', 'hash': '0x16cfc0ff027a66a067a65a95d7c2ceb2bb440935318a460eb3dc12c2b7aff61f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x80b3ce9fdd7f78616ee0318dbb94d5721540a40a', 'value': 202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0af35029c214e80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:07:07.000Z'}}, {'blockNum': '0xb17086', 'uniqueId': '0x2a57841641a18ae4cc84bc2d53111cef84a6f9e4fcfd665eead13d5f390d3d1b:log:14', 'hash': '0x2a57841641a18ae4cc84bc2d53111cef84a6f9e4fcfd665eead13d5f390d3d1b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x80b3ce9fdd7f78616ee0318dbb94d5721540a40a', 'value': 14219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0302d043cc825f4c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:12:40.000Z'}}, {'blockNum': '0xb170a9', 'uniqueId': '0xcec01b654061bc438b42c4654bdad7e9a24cb923c8b0e5e5e0f5ce17515c0d78:log:132', 'hash': '0xcec01b654061bc438b42c4654bdad7e9a24cb923c8b0e5e5e0f5ce17515c0d78', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd89d5d97823e95795f8c16ef1f5ff484774cee76', 'value': 25483.293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056573bb9f3a267c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:21:25.000Z'}}, {'blockNum': '0xb170aa', 'uniqueId': '0xd3788fe01eda376029a1fbd14c673f1f6676940bde7a712dec8e342ec3fe4134:log:27', 'hash': '0xd3788fe01eda376029a1fbd14c673f1f6676940bde7a712dec8e342ec3fe4134', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 50596.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ab6d2b3f694f43f8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:21:39.000Z'}}, {'blockNum': '0xb170ae', 'uniqueId': '0x44662d0d89d5f92cada875d0a6396cd6e0cf0dbcfeb6622b9c7f1cda8fc3b937:log:213', 'hash': '0x44662d0d89d5f92cada875d0a6396cd6e0cf0dbcfeb6622b9c7f1cda8fc3b937', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 50596.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ab6d2b3f694f43f8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:22:03.000Z'}}, {'blockNum': '0xb170b6', 'uniqueId': '0x1a1a0a805dcfc6d461c9898cfebb6e54edea2aa7fa3177852f0c68d8aaacc0f5:log:274', 'hash': '0x1a1a0a805dcfc6d461c9898cfebb6e54edea2aa7fa3177852f0c68d8aaacc0f5', 'from': '0x6c78b4d219deea25002f998018380fae87c0fe4d', 'to': '0x2b86d0a954c27ea5df3868c66f4d24b6cfb0f302', 'value': 390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x15245655b102580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:24:52.000Z'}}, {'blockNum': '0xb170ba', 'uniqueId': '0xcce5ed29a2cffe8bdb2cd5769dad84d236dfef951af655b081daa42e103eae24:log:123', 'hash': '0xcce5ed29a2cffe8bdb2cd5769dad84d236dfef951af655b081daa42e103eae24', 'from': '0xd89d5d97823e95795f8c16ef1f5ff484774cee76', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 25483.293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056573bb9f3a267c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:25:22.000Z'}}, {'blockNum': '0xb170be', 'uniqueId': '0x12e9ae20a7f28e399b626a4e88813ac39b270f42d60f086052145c9078087fe6:log:53', 'hash': '0x12e9ae20a7f28e399b626a4e88813ac39b270f42d60f086052145c9078087fe6', 'from': '0x6c78b4d219deea25002f998018380fae87c0fe4d', 'to': '0x2b86d0a954c27ea5df3868c66f4d24b6cfb0f302', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:26:26.000Z'}}, {'blockNum': '0xb170be', 'uniqueId': '0x972f5e625ff2114263c694d941ff465f5291d2fbf0ce7081bfa89b5caf47149c:log:145', 'hash': '0x972f5e625ff2114263c694d941ff465f5291d2fbf0ce7081bfa89b5caf47149c', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 19105.7895532955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x040bba17e3e92b6f9412', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:26:26.000Z'}}, {'blockNum': '0xb170e7', 'uniqueId': '0xd83494d13005a5634f34357b88716c4fa685d33b34f08ae122870908515bd1c2:log:177', 'hash': '0xd83494d13005a5634f34357b88716c4fa685d33b34f08ae122870908515bd1c2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x07c748b04fd9588bbf6b24943ac16a4adf19b1c2', 'value': 4361.86864007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xec751661f920893c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:34:19.000Z'}}, {'blockNum': '0xb170ed', 'uniqueId': '0x25aebba6a812fa1c5d070725f4977149293511ff5780672b597ec21866c07717:log:87', 'hash': '0x25aebba6a812fa1c5d070725f4977149293511ff5780672b597ec21866c07717', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1db460ac2c9844703632191c0588c3659deda9db', 'value': 802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2b79fc5ed267480000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:36:05.000Z'}}, {'blockNum': '0xb170fd', 'uniqueId': '0xe3e4659035c3e6bf4ec4137c0dc90a1c790b6b826bdb543af64d96934db9df65:log:194', 'hash': '0xe3e4659035c3e6bf4ec4137c0dc90a1c790b6b826bdb543af64d96934db9df65', 'from': '0x1db460ac2c9844703632191c0588c3659deda9db', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2b79fc5ed267480000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:40:10.000Z'}}, {'blockNum': '0xb17100', 'uniqueId': '0x56dfdf31a149e55dc02e363e69da743de35d52fb74795f608572b2642700699e:log:113', 'hash': '0x56dfdf31a149e55dc02e363e69da743de35d52fb74795f608572b2642700699e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 50820.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ac302152e2c40ad0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:41:00.000Z'}}, {'blockNum': '0xb17103', 'uniqueId': '0xe2e2ec28a900b952031180b0c4fd6dc1e529b319261ab1f858d0a393e2ee2f95:log:124', 'hash': '0xe2e2ec28a900b952031180b0c4fd6dc1e529b319261ab1f858d0a393e2ee2f95', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 50820.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ac302152e2c40ad0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:42:25.000Z'}}, {'blockNum': '0xb17103', 'uniqueId': '0x19c94db4a4a7cc6099768a002a21708b28edfc216edac94e44da04a94791bdcc:log:178', 'hash': '0x19c94db4a4a7cc6099768a002a21708b28edfc216edac94e44da04a94791bdcc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ea7a829be59f41634002813e4f8c5d6dd664d47', 'value': 34028.433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0734af5f632293ee8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:42:25.000Z'}}, {'blockNum': '0xb17109', 'uniqueId': '0xa4692b1f03e656d140407800a884fddb64f5bf565ec1e02478c8fc508f915b76:log:150', 'hash': '0xa4692b1f03e656d140407800a884fddb64f5bf565ec1e02478c8fc508f915b76', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 20647.53261580174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x045f4e138ec162d4fd4b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:43:52.000Z'}}, {'blockNum': '0xb1712c', 'uniqueId': '0x78d8358079e979ce611370e5228f7530a16d45f6f444c8ce1d2740633e24ca60:log:1', 'hash': '0x78d8358079e979ce611370e5228f7530a16d45f6f444c8ce1d2740633e24ca60', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb155b38f48d6984c8d2f13467c4f6a9c088a5b9d', 'value': 918.17209476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x31c6328f7ffe199000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:51:33.000Z'}}, {'blockNum': '0xb17139', 'uniqueId': '0xf3af21529a6f35a09afb40633111c0a953725416a0a4d941802bba5a1a7e8309:log:305', 'hash': '0xf3af21529a6f35a09afb40633111c0a953725416a0a4d941802bba5a1a7e8309', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 417176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x58572801aad2b7600000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:53:49.000Z'}}, {'blockNum': '0xb17139', 'uniqueId': '0x1faa7e9d0adf66222c5b62da3405b0e822a2bd82fb6418540de57ec68c89e861:log:315', 'hash': '0x1faa7e9d0adf66222c5b62da3405b0e822a2bd82fb6418540de57ec68c89e861', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6199a4ac62c622a29a4158089f67a3b28fa67051', 'value': 282301.21870733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x3bc794693e5b77409400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:53:49.000Z'}}, {'blockNum': '0xb17147', 'uniqueId': '0xe277db15d4ac17caddc771e42e52b4d9630558b3467c422fa93e02d2631ba124:log:96', 'hash': '0xe277db15d4ac17caddc771e42e52b4d9630558b3467c422fa93e02d2631ba124', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'value': 38064.978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x080f81b0061a63150000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T18:56:56.000Z'}}, {'blockNum': '0xb17158', 'uniqueId': '0xe739fb17d07da25b31d6a8942bbac410df3004fdd2f9bc190e50baa65136c9d4:log:56', 'hash': '0xe739fb17d07da25b31d6a8942bbac410df3004fdd2f9bc190e50baa65136c9d4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 2188.868044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x76a8a570e5e818c000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:00:02.000Z'}}, {'blockNum': '0xb1715f', 'uniqueId': '0xcf43402b05ea16ce2a4a3dd074d711642dd6978e1d2c0b1b575f3c52da34bea0:log:124', 'hash': '0xcf43402b05ea16ce2a4a3dd074d711642dd6978e1d2c0b1b575f3c52da34bea0', 'from': '0xa6256de4c5ff4037c7f3952b3eb6f66f4b94e2e2', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 38064.978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x080f81b0061a63150000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:01:09.000Z'}}, {'blockNum': '0xb171b5', 'uniqueId': '0x5dec8864b9486128494242edbcdcc0fb04633fd33144e92597ebee9679654369:log:156', 'hash': '0x5dec8864b9486128494242edbcdcc0fb04633fd33144e92597ebee9679654369', 'from': '0x2d552982a23068d77ba19467b4e89700ec831b8a', 'to': '0x81ae7c82f7b049b64d8b4f2c412ccc75c07c6b94', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x18650127cc3dc80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:19:38.000Z'}}, {'blockNum': '0xb171f4', 'uniqueId': '0x9265f84dcd7aef607c3e826bfe3cdbd39d850a0661930fbf9b2295f5412620de:log:10', 'hash': '0x9265f84dcd7aef607c3e826bfe3cdbd39d850a0661930fbf9b2295f5412620de', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1f06244d905d5934d4af5092a087fff8caf637f6', 'value': 2467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x85bc80a54618ac0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:33:05.000Z'}}, {'blockNum': '0xb1721d', 'uniqueId': '0xd782dcd8f029ed5d5742af3df69a2d0792599c4a404be2eb16a9333601edad7b:log:12', 'hash': '0xd782dcd8f029ed5d5742af3df69a2d0792599c4a404be2eb16a9333601edad7b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x050fea966f0d4c7ba422ee5ec38283915a360502', 'value': 2135.36162385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x73c2187342c48b2400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:43:27.000Z'}}, {'blockNum': '0xb17240', 'uniqueId': '0xea67e483e86f0f0426d72bcfb0ff56edcc50bd6dff3ce56abd53a3e878272add:log:155', 'hash': '0xea67e483e86f0f0426d72bcfb0ff56edcc50bd6dff3ce56abd53a3e878272add', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x2dcaa7660358bfcfb3d7238802e2374745ca6841', 'value': 24824.42912811631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0541bc28ee8f30bb46cb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:48:31.000Z'}}, {'blockNum': '0xb17249', 'uniqueId': '0xaff3ae653e2f087d77fbda880a86a03b309813a2355e861562b602785a3159f0:log:47', 'hash': '0xaff3ae653e2f087d77fbda880a86a03b309813a2355e861562b602785a3159f0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc53cd15b28a3fb1fd2d565aabee03c428bb846f3', 'value': 27635.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05da1a98574227b38000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:50:16.000Z'}}, {'blockNum': '0xb17249', 'uniqueId': '0xde74f1baf4005328ec2611eadc7ac2e60f81a286aea725b3bb76692a2ebe0a11:log:48', 'hash': '0xde74f1baf4005328ec2611eadc7ac2e60f81a286aea725b3bb76692a2ebe0a11', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9d92455dffcfea338da52999a1365f2e67d4288a', 'value': 9002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01e7ffd8895c22680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:50:16.000Z'}}, {'blockNum': '0xb17261', 'uniqueId': '0xf24b1b58ea465dae650d8cf6b5c167d87d1ec33088ba6adcd2f5ec1a583cd240:log:35', 'hash': '0xf24b1b58ea465dae650d8cf6b5c167d87d1ec33088ba6adcd2f5ec1a583cd240', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x97a944de317ec641ae6dffa0abc69bf1963a709b', 'value': 26431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0598d3cf3e8f6d9c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:56:59.000Z'}}, {'blockNum': '0xb17261', 'uniqueId': '0xb23040c13b40ed99b2083eb84b1975a8c34e6a384395ee01392eaf5d1f415129:log:277', 'hash': '0xb23040c13b40ed99b2083eb84b1975a8c34e6a384395ee01392eaf5d1f415129', 'from': '0xc53cd15b28a3fb1fd2d565aabee03c428bb846f3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 27635.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05da1a98574227b38000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:56:59.000Z'}}, {'blockNum': '0xb1726a', 'uniqueId': '0x9f397499cc88b02c1e9859c275999b5cecd47a7b9b27d8aa2daf79a6b11f4c3e:log:78', 'hash': '0x9f397499cc88b02c1e9859c275999b5cecd47a7b9b27d8aa2daf79a6b11f4c3e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc0f39f4f5bdd746c0ccd557baaf59028b4885c51', 'value': 6369.426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0159498ae055b1350000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T19:59:05.000Z'}}, {'blockNum': '0xb17273', 'uniqueId': '0x03d4f4949ac165c49a816bd157cf0c07152298dd20dfd04ad47f00ab93605845:log:82', 'hash': '0x03d4f4949ac165c49a816bd157cf0c07152298dd20dfd04ad47f00ab93605845', 'from': '0x97a944de317ec641ae6dffa0abc69bf1963a709b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 26431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0598d3cf3e8f6d9c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:01:06.000Z'}}, {'blockNum': '0xb1727c', 'uniqueId': '0x651b67137876a5be359b3a724bd2ec2c7be666289d3a36462aef0fc1006f16b7:log:301', 'hash': '0x651b67137876a5be359b3a724bd2ec2c7be666289d3a36462aef0fc1006f16b7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x218b16dfb00817ff3e6b0a2c072b04ed212ccf10', 'value': 5466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01284ffcf7e40d280000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:02:06.000Z'}}, {'blockNum': '0xb17284', 'uniqueId': '0x0175057fc64e0261b0bcf553e878d75f0ed9b867499cf443bf18c57d306ae05c:log:286', 'hash': '0x0175057fc64e0261b0bcf553e878d75f0ed9b867499cf443bf18c57d306ae05c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 6676.853052759705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0169f3f32c0058b21840', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:03:50.000Z'}}, {'blockNum': '0xb1728d', 'uniqueId': '0xe6e883541c2ce947c2c8e77a8d384071f44686ced6a2e0142823fe794f85a5e5:log:224', 'hash': '0xe6e883541c2ce947c2c8e77a8d384071f44686ced6a2e0142823fe794f85a5e5', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf39353e7f9d186e92b60364ce0fd8d2e1ad8c411', 'value': 6592.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0165657abdd93b500000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:05:47.000Z'}}, {'blockNum': '0xb172a2', 'uniqueId': '0xbc85618f845343c98bd5cf175714ac769ef3f62af4f7d7ccfd9b77703025fd18:log:96', 'hash': '0xbc85618f845343c98bd5cf175714ac769ef3f62af4f7d7ccfd9b77703025fd18', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 381257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x50bbfbbf09d75f840000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:11:01.000Z'}}, {'blockNum': '0xb172a2', 'uniqueId': '0xe2df8e35b6f82c09d00a8b6a8b854fc33ff1635bb91979d27b9e11d483a946e2:log:131', 'hash': '0xe2df8e35b6f82c09d00a8b6a8b854fc33ff1635bb91979d27b9e11d483a946e2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 414058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x57ae21106ab1f3680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:11:01.000Z'}}, {'blockNum': '0xb172ad', 'uniqueId': '0x9212cb3d00cfad4fbf22a7c6fc82e0d082b6bd8cdb3164edc8021b1f145a0b21:log:210', 'hash': '0x9212cb3d00cfad4fbf22a7c6fc82e0d082b6bd8cdb3164edc8021b1f145a0b21', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6020584a915ce6879ce8ce7e86d3313fffde9023', 'value': 746.05499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x287197cdb8dc019c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:14:10.000Z'}}, {'blockNum': '0xb172e2', 'uniqueId': '0xf64e556a174283e2cfc03b01362df71fd7272fd1ec165a075a03392489f7c1b4:log:200', 'hash': '0xf64e556a174283e2cfc03b01362df71fd7272fd1ec165a075a03392489f7c1b4', 'from': '0x11200e4b0202b1e43be39a407e7b59696387a62c', 'to': '0x1e62bab7f2cd4f08be67f4ddb30e3ee9b2d213b0', 'value': 294.75925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ffa9b382c6e8f2000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:24:42.000Z'}}, {'blockNum': '0xb1735f', 'uniqueId': '0xb4db4eff21ba23e76d0d0af01497cd5d1ac05cd1b5a76787aaef398613ae93eb:log:239', 'hash': '0xb4db4eff21ba23e76d0d0af01497cd5d1ac05cd1b5a76787aaef398613ae93eb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 25675.10099999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056fd99a86f9c8909c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:53:28.000Z'}}, {'blockNum': '0xb17368', 'uniqueId': '0x9dee0d4821d9fdac029ada4170bbf18117e0d454ca0cc174b060b46e0ba01d3f:log:267', 'hash': '0x9dee0d4821d9fdac029ada4170bbf18117e0d454ca0cc174b060b46e0ba01d3f', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 25675.10099999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x056fd99a86f9c8909c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T20:55:18.000Z'}}, {'blockNum': '0xb1737c', 'uniqueId': '0x51473683c7b84e4ffd5e4784ef68e521b6fcce7a727c35c130a69e5520ea0500:log:101', 'hash': '0x51473683c7b84e4ffd5e4784ef68e521b6fcce7a727c35c130a69e5520ea0500', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd629ebf7c740f23567d782edb3f190efa7fa2cce', 'value': 5797.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x013a4f62cde3d94b0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:00:30.000Z'}}, {'blockNum': '0xb1739e', 'uniqueId': '0x5d9e08d965c2151882ab8022117eef10f7d1c7caf18ed3901049e3d1565fd908:log:141', 'hash': '0x5d9e08d965c2151882ab8022117eef10f7d1c7caf18ed3901049e3d1565fd908', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x80af8ae8018a11af6520f6621ab79d58bd4029d4', 'value': 31662.64121005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06b46f6a88ad7aa11400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:08:07.000Z'}}, {'blockNum': '0xb173d1', 'uniqueId': '0xd15d5c6d04610b653c5349b9c0b7fcb7620db81793d41f1bedd3852a50b89251:log:80', 'hash': '0xd15d5c6d04610b653c5349b9c0b7fcb7620db81793d41f1bedd3852a50b89251', 'from': '0x80af8ae8018a11af6520f6621ab79d58bd4029d4', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 31662.64121005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06b46f6a88ad7aa11400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:20:43.000Z'}}, {'blockNum': '0xb17418', 'uniqueId': '0xe49262d6b9fbf611a554f17599d8f7e21bec16c79d4c61af03bc61ab6332983e:log:217', 'hash': '0xe49262d6b9fbf611a554f17599d8f7e21bec16c79d4c61af03bc61ab6332983e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x29eefb0e6ee2c8095d8fdd1c232a30bdd13f92af', 'value': 64801.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0db8ec67d047bb3c1c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:37:46.000Z'}}, {'blockNum': '0xb1742b', 'uniqueId': '0x3f9851b9a05c6e32190809aaab77793ef350595d8cd0838bbd7f30c948de5b48:log:177', 'hash': '0x3f9851b9a05c6e32190809aaab77793ef350595d8cd0838bbd7f30c948de5b48', 'from': '0x5fe983bfcff1bb6a19555b0e9c49f462fb9e4e8f', 'to': '0x0c2f56116ce6f3f3e0435aa4d2024d3e78cc4e56', 'value': 2460.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x85624c01b658a20000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:41:06.000Z'}}, {'blockNum': '0xb17435', 'uniqueId': '0xe549a840c4c77630b9f741bd6687dbbbf8ae845eb04cb84e647a9f1737accba1:log:84', 'hash': '0xe549a840c4c77630b9f741bd6687dbbbf8ae845eb04cb84e647a9f1737accba1', 'from': '0x29eefb0e6ee2c8095d8fdd1c232a30bdd13f92af', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 64801.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0db8ec67d047bb3c1c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:42:44.000Z'}}, {'blockNum': '0xb1743c', 'uniqueId': '0x94be4a61c4c738e365f75864fbff93e2cdeb3fae9780c53713e6f05c209fd273:log:73', 'hash': '0x94be4a61c4c738e365f75864fbff93e2cdeb3fae9780c53713e6f05c209fd273', 'from': '0x86365a2af36c3198f6a84deb427f2c566f6dc646', 'to': '0x0b92b8bc9c58050f13e1371965d03243023125ec', 'value': 1192.81522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x40a9a2f2c8bb6b4000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:44:43.000Z'}}, {'blockNum': '0xb17475', 'uniqueId': '0xa0096df8daffadd87440beccd35003ceb06756b1e9827a1259b720af2f7d28fe:log:268', 'hash': '0xa0096df8daffadd87440beccd35003ceb06756b1e9827a1259b720af2f7d28fe', 'from': '0x45b713f6530c0a1a4336af5c00b8dfe92486b2ef', 'to': '0x5d602e0f041052a8943cdd71ced8c7f6256ece4a', 'value': 3764.14924998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcc0e10878a12f25800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T21:55:48.000Z'}}, {'blockNum': '0xb1748d', 'uniqueId': '0xc2e5ca092ff194c71dea9af99408d67864aed5e9e14c178a3187952872db22df:log:31', 'hash': '0xc2e5ca092ff194c71dea9af99408d67864aed5e9e14c178a3187952872db22df', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf9561f693a50e88954486a281f50f5275619dd51', 'value': 687.35387016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2542f37f2754c52000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:00:51.000Z'}}, {'blockNum': '0xb1749e', 'uniqueId': '0x09db37ccb9e09b4cc94c6f74fff1b47c59544596d9edfa273b07beca331089aa:log:9', 'hash': '0x09db37ccb9e09b4cc94c6f74fff1b47c59544596d9edfa273b07beca331089aa', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9fb2aa415c5630d5e93a0a6ba748d0dd85eccd9e', 'value': 198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0abbcd4ef377580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:04:41.000Z'}}, {'blockNum': '0xb174bd', 'uniqueId': '0x3bcc11c8961d104d522a897f5a523ad529696062c3cc9a0bc41ba2022f4576e5:log:4', 'hash': '0x3bcc11c8961d104d522a897f5a523ad529696062c3cc9a0bc41ba2022f4576e5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe240177e7e1458a1caea3fe946354279845b72c0', 'value': 6462.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x015e52e2d897a46c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:12:12.000Z'}}, {'blockNum': '0xb174c3', 'uniqueId': '0x677d589fe3ff8714d030dd1b0d1df2caf7c57e11db98821a14cc3d45f2877576:log:12', 'hash': '0x677d589fe3ff8714d030dd1b0d1df2caf7c57e11db98821a14cc3d45f2877576', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x34ca98de8f4c98ec68f4f96842ead7299e75c30d', 'value': 1002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x36518b1b2d2d680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:13:02.000Z'}}, {'blockNum': '0xb174c4', 'uniqueId': '0x19a55a6bb0af566248a601e4129176ed37e4c7f1679f68000e859c621325211d:log:2', 'hash': '0x19a55a6bb0af566248a601e4129176ed37e4c7f1679f68000e859c621325211d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf5cb955ad2c297c6d26818f53c25b0475d93646b', 'value': 44757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x097a48261f403e340000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:13:19.000Z'}}, {'blockNum': '0xb174d3', 'uniqueId': '0xe8087180cb555ec9dd8407e431dcacf2da246fbf4da35b063172d78057456948:log:215', 'hash': '0xe8087180cb555ec9dd8407e431dcacf2da246fbf4da35b063172d78057456948', 'from': '0xe240177e7e1458a1caea3fe946354279845b72c0', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6462.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x015e52e2d897a46c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:16:51.000Z'}}, {'blockNum': '0xb174d3', 'uniqueId': '0x8390cb192614b39fb468ca49915d6f9df1c10575b9cc83803fcb611d070c0978:log:220', 'hash': '0x8390cb192614b39fb468ca49915d6f9df1c10575b9cc83803fcb611d070c0978', 'from': '0x34ca98de8f4c98ec68f4f96842ead7299e75c30d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x36518b1b2d2d680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:16:51.000Z'}}, {'blockNum': '0xb174d3', 'uniqueId': '0x4d59cede3256174b97013bf326900b198366695a12996cb159dc8a20b95b9151:log:256', 'hash': '0x4d59cede3256174b97013bf326900b198366695a12996cb159dc8a20b95b9151', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0x05782c01765dcc39b564c2370881c948e25b6c37', 'value': 6355.213736401698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0158844ec5e45232a926', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:16:51.000Z'}}, {'blockNum': '0xb174e8', 'uniqueId': '0xd01836106e729d05567fce8ed90f416781b1e7c33edf9a2dc26d882138a86c39:log:84', 'hash': '0xd01836106e729d05567fce8ed90f416781b1e7c33edf9a2dc26d882138a86c39', 'from': '0x05e5a0d03b4520a0ffdb0b8419438c0e4a662f43', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 3107.042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xa86ede9d2f9b3d0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:20:22.000Z'}}, {'blockNum': '0xb17532', 'uniqueId': '0x30cf93a67117b3bc5161dad24cbc3f7caa24918269d3d83a2fde223fb0738677:log:169', 'hash': '0x30cf93a67117b3bc5161dad24cbc3f7caa24918269d3d83a2fde223fb0738677', 'from': '0xf772cb614baa695d6ff475720dbee6279c84c9f4', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 14240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0303f3b2c93f1a800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:37:55.000Z'}}, {'blockNum': '0xb17532', 'uniqueId': '0xdd0716f4e6ccfae52ea5e11a3ec718b20fe95e71c621fdfc5429d79f348d2c12:log:170', 'hash': '0xdd0716f4e6ccfae52ea5e11a3ec718b20fe95e71c621fdfc5429d79f348d2c12', 'from': '0x080b52f3bda198c1443dbbfbb331fbec824e4068', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 8252.34488935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01bf5c4a92111500bc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:37:55.000Z'}}, {'blockNum': '0xb17532', 'uniqueId': '0x4cdbc6e4a4035d422bb9e8fa3420d542422d81a2b4791f9c824eaa8d1a6745e0:log:171', 'hash': '0x4cdbc6e4a4035d422bb9e8fa3420d542422d81a2b4791f9c824eaa8d1a6745e0', 'from': '0x63f2db6f7ddbee712778c4bd390d525b4d545771', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 20182.95133457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04461eb748eea8fe2400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:37:55.000Z'}}, {'blockNum': '0xb17532', 'uniqueId': '0x8c4bd86021ec1f7cb72d018f8059bf7c6bfdaf7b5d76e77c54aa1f395459e993:log:172', 'hash': '0x8c4bd86021ec1f7cb72d018f8059bf7c6bfdaf7b5d76e77c54aa1f395459e993', 'from': '0x5d602e0f041052a8943cdd71ced8c7f6256ece4a', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 3764.14924998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcc0e10878a12f25800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:37:55.000Z'}}, {'blockNum': '0xb17540', 'uniqueId': '0xfd30a52e812f8e7e24eb53f08dadf3ebc93b2bee7fd263c6c363c7c26c0932bf:log:246', 'hash': '0xfd30a52e812f8e7e24eb53f08dadf3ebc93b2bee7fd263c6c363c7c26c0932bf', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 46440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09d584773e55b4a00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:41:21.000Z'}}, {'blockNum': '0xb1754a', 'uniqueId': '0x40fc56ba1886372f47f2953dfe6b66e255598c46d0fde69efaced8988dd67f7a:log:29', 'hash': '0x40fc56ba1886372f47f2953dfe6b66e255598c46d0fde69efaced8988dd67f7a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7ccaec2e731523bbb767df79b05c751240e8b7f6', 'value': 12360.42899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x029e0f692f21a0b89c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:43:36.000Z'}}, {'blockNum': '0xb17552', 'uniqueId': '0xae21ee70a1e7412dd6c825b457f3a3a5f3ed90d56d8188aaf81dec9e0ca4aed0:log:18', 'hash': '0xae21ee70a1e7412dd6c825b457f3a3a5f3ed90d56d8188aaf81dec9e0ca4aed0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9fb2aa415c5630d5e93a0a6ba748d0dd85eccd9e', 'value': 4607.793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xf9c9f9385dcb7e8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:46:10.000Z'}}, {'blockNum': '0xb17557', 'uniqueId': '0xfce416fd19504948412e8c77d5505705e9136fe62744ca85a65737437559aa17:log:359', 'hash': '0xfce416fd19504948412e8c77d5505705e9136fe62744ca85a65737437559aa17', 'from': '0x8cfa6878b19c4277820c43ee22b6f75414af4c11', 'to': '0x17accd0fbcfe34dfa075ffc01b19a37387c90676', 'value': 3960.726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd6b61d702c9dcf0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:46:59.000Z'}}, {'blockNum': '0xb17565', 'uniqueId': '0xd3745661777391ddb08dc024cb45e751ed710de2420c5428b2adce8c2edf030d:log:91', 'hash': '0xd3745661777391ddb08dc024cb45e751ed710de2420c5428b2adce8c2edf030d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 52310.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b13c62eb580d7e80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:49:59.000Z'}}, {'blockNum': '0xb17566', 'uniqueId': '0x40d1ce453fff9ab00720404d2b80efa5320ff86d278d5a64231d262a3e9c057a:log:0', 'hash': '0x40d1ce453fff9ab00720404d2b80efa5320ff86d278d5a64231d262a3e9c057a', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 52310.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b13c62eb580d7e80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:50:07.000Z'}}, {'blockNum': '0xb17566', 'uniqueId': '0x47fc820f4057457cf0b5811156a4e801dc14f92af859c35aa837d1e4af041fde:log:323', 'hash': '0x47fc820f4057457cf0b5811156a4e801dc14f92af859c35aa837d1e4af041fde', 'from': '0x2fc304da58327b595df660101f890d96b2d0513f', 'to': '0x92579792a89e3b0125d4e1273cdcea85442f5721', 'value': 28000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05ede20f01a459800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:50:07.000Z'}}, {'blockNum': '0xb1756d', 'uniqueId': '0x6463059a9a8779060d598102e85a1f2b404907829122fc70ad18d8c3c240ad48:log:161', 'hash': '0x6463059a9a8779060d598102e85a1f2b404907829122fc70ad18d8c3c240ad48', 'from': '0x17accd0fbcfe34dfa075ffc01b19a37387c90676', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3960.726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd6b61d702c9dcf0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:51:33.000Z'}}, {'blockNum': '0xb17572', 'uniqueId': '0xecdd03e511db9d417c807a2a830f98b79ac6aa773e7f9b31b33d082e95399ced:log:35', 'hash': '0xecdd03e511db9d417c807a2a830f98b79ac6aa773e7f9b31b33d082e95399ced', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xab8fd6726562da863192baffa24a381a5c508fb8', 'value': 1566.234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x54e7dcf4bc93290000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:53:02.000Z'}}, {'blockNum': '0xb17582', 'uniqueId': '0x19825267e7849282dfcafe143c1a255cc38ffd7fe0e2ec627397f2dfac74c932:log:201', 'hash': '0x19825267e7849282dfcafe143c1a255cc38ffd7fe0e2ec627397f2dfac74c932', 'from': '0xab8fd6726562da863192baffa24a381a5c508fb8', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1566.234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x54e7dcf4bc93290000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:58:35.000Z'}}, {'blockNum': '0xb1758a', 'uniqueId': '0x71506de094a1bdff16ced593a4ba962cc960e7e8a4a7a8b660c59c9d361bfc1c:log:165', 'hash': '0x71506de094a1bdff16ced593a4ba962cc960e7e8a4a7a8b660c59c9d361bfc1c', 'from': '0x0d67f2149c4dcf9f64de691393e5dce52f078993', 'to': '0xece4cd91ba08059af6cc64990c818f24f9510ef1', 'value': 612.89367439, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x21399bbd9b9be0a000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T22:59:42.000Z'}}, {'blockNum': '0xb175dd', 'uniqueId': '0xcac72cdb21004122e982450ebbf895c0b8efc5800c6b2fba6928821e76a67dbb:log:248', 'hash': '0xcac72cdb21004122e982450ebbf895c0b8efc5800c6b2fba6928821e76a67dbb', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x9814e96844f7aa22eda9835c69e5b1ea7518a2ff', 'value': 165011.10894802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x22f14527e9e64d810800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:19:47.000Z'}}, {'blockNum': '0xb175e9', 'uniqueId': '0x949527c3160b11fa546410863233960badc9e009a198895f8b797dc33857a9b6:log:2', 'hash': '0x949527c3160b11fa546410863233960badc9e009a198895f8b797dc33857a9b6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 67186.99629158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e3a36e0c33ab924d800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:12.000Z'}}, {'blockNum': '0xb175ea', 'uniqueId': '0x26bf66b8639f35d51d44b80246b4b5357a3db0cbe2a5fe5cd0773cfbd78f60fa:log:10', 'hash': '0x26bf66b8639f35d51d44b80246b4b5357a3db0cbe2a5fe5cd0773cfbd78f60fa', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 67186.99629158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e3a36e0c33ab924d800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:18.000Z'}}, {'blockNum': '0xb175ea', 'uniqueId': '0xe625bd5621964c482cb14031f41e8e3dabfe5c95b77059417cacdb4c16e97abf:log:16', 'hash': '0xe625bd5621964c482cb14031f41e8e3dabfe5c95b77059417cacdb4c16e97abf', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 53419.77635714265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b4fe4522eb74a41a01e', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:18.000Z'}}, {'blockNum': '0xb175ea', 'uniqueId': '0xe625bd5621964c482cb14031f41e8e3dabfe5c95b77059417cacdb4c16e97abf:log:20', 'hash': '0xe625bd5621964c482cb14031f41e8e3dabfe5c95b77059417cacdb4c16e97abf', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0xa5620fd71b2f2324ee60b148ad75807a91ebe496', 'value': 53419.77635714265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b4fe4522eb74a41a01e', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:18.000Z'}}, {'blockNum': '0xb175ed', 'uniqueId': '0x248d892272a84080afa4a5610f9192b97944d1b0c07bbd964d3d80377a1a2be4:log:156', 'hash': '0x248d892272a84080afa4a5610f9192b97944d1b0c07bbd964d3d80377a1a2be4', 'from': '0x9fb2aa415c5630d5e93a0a6ba748d0dd85eccd9e', 'to': '0x5af4ba384f81f490409e06e0f8f782153b0fcdce', 'value': 60.68206642663538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034a2201e85c426bba', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:22:50.000Z'}}, {'blockNum': '0xb175f2', 'uniqueId': '0x52ca089ca636345937ceac493a8921bf48fe7f6565357ff634230a97c4125f1e:log:197', 'hash': '0x52ca089ca636345937ceac493a8921bf48fe7f6565357ff634230a97c4125f1e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 4109.342896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xdec496b7ae22fb0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:24:26.000Z'}}, {'blockNum': '0xb175f3', 'uniqueId': '0x28da862e501fe45e9fa01bb7e2a325c5b3320e8619fe8ae5a6a8d838e4b2014b:log:245', 'hash': '0x28da862e501fe45e9fa01bb7e2a325c5b3320e8619fe8ae5a6a8d838e4b2014b', 'from': '0x9fb2aa415c5630d5e93a0a6ba748d0dd85eccd9e', 'to': '0x5af4ba384f81f490409e06e0f8f782153b0fcdce', 'value': 4745.1109335733645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01013ba48568e6941446', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:24:43.000Z'}}, {'blockNum': '0xb17607', 'uniqueId': '0x92ab21233993da8fe8a4e7f641a5e9cc57cf47fd2b36480494594634921faa18:log:8', 'hash': '0x92ab21233993da8fe8a4e7f641a5e9cc57cf47fd2b36480494594634921faa18', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 53952.08800001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b6cbfa109988b47e400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:27:42.000Z'}}, {'blockNum': '0xb17609', 'uniqueId': '0xb165a67b5c9a2f9499d59e735a60c69d402b6110530b4c135b844c3a02098b3f:log:125', 'hash': '0xb165a67b5c9a2f9499d59e735a60c69d402b6110530b4c135b844c3a02098b3f', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 53952.08800001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b6cbfa109988b47e400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:28:06.000Z'}}, {'blockNum': '0xb1760f', 'uniqueId': '0x080a69fbdcdb9642139ec8dfcfa1f7b2396044108e4ae9ee39cf846d31d33755:log:258', 'hash': '0x080a69fbdcdb9642139ec8dfcfa1f7b2396044108e4ae9ee39cf846d31d33755', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 14723.26042783048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x031e2648b7ef51a4ca0a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:28:51.000Z'}}, {'blockNum': '0xb17616', 'uniqueId': '0x120d43c35329653f45b114530511ceb2350a48869c419f2d279bf444406c6910:log:104', 'hash': '0x120d43c35329653f45b114530511ceb2350a48869c419f2d279bf444406c6910', 'from': '0xf65b529b0c128e56590da2457fe9cd3a06be5339', 'to': '0xe444fbae06f47fd3ae6392dd8de367c1f3993817', 'value': 1457.82026815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x4f0752020505751c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-10T23:31:01.000Z'}}, {'blockNum': '0xb17716', 'uniqueId': '0xfd9e1ec7ef419d1c4b705c3c5cae9f7c383a93c243f0fcfcfa1b99567d663e3d:log:38', 'hash': '0xfd9e1ec7ef419d1c4b705c3c5cae9f7c383a93c243f0fcfcfa1b99567d663e3d', 'from': '0xcfe48ddaf52c004f409234779aed9774435b4769', 'to': '0x8e1772a840f297bdd126aa3642d982c4e6b4e446', 'value': 2031.68195196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6e234042fecc0a7000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:29:45.000Z'}}, {'blockNum': '0xb17724', 'uniqueId': '0xaac118f2c1e82106ed93aad1f4522a511cc70b135b7bd46a44104982b0b7f852:log:185', 'hash': '0xaac118f2c1e82106ed93aad1f4522a511cc70b135b7bd46a44104982b0b7f852', 'from': '0x8e1772a840f297bdd126aa3642d982c4e6b4e446', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2031.68195196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6e234042fecc0a7000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:32:26.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:269', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x3b4503cba9add1194dd8098440e4be91c4c37806', 'value': 81451.0619230438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x113f788dd8c97ad96524', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:272', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0x3b4503cba9add1194dd8098440e4be91c4c37806', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 81451.0619230438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x113f788dd8c97ad96524', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:273', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0x482579f93dc13e6b434e38b5a0447ca543d88a46', 'value': 346.16701317293615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x12c4084868cad37be2', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:274', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0x6f52a45c54518e5726dfd76d6472ce4f8cd3dc06', 'value': 61.08829644228285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034fc539f4600733fb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb1772f', 'uniqueId': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378:log:276', 'hash': '0x066d5d6094340289d912c0dcc36e46635c4e56b5817cff11b3e85f504d857378', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0x36fee39920fb5dc096a3f0f47a00c8f3a294c334', 'value': 81043.80661342858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x112964c0566c4ffeb547', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:56.000Z'}}, {'blockNum': '0xb17730', 'uniqueId': '0x85467adf8ba681b408e73d5a32753b6dd1fece277909a9743dae8a8b982262d6:log:186', 'hash': '0x85467adf8ba681b408e73d5a32753b6dd1fece277909a9743dae8a8b982262d6', 'from': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 17244.143894180488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a6ce91e45dfd2d4c21', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:33:58.000Z'}}, {'blockNum': '0xb17736', 'uniqueId': '0x7eab6821523c90413f3eea6e53f46299687483e8747cabf6ff00d67412b51797:log:16', 'hash': '0x7eab6821523c90413f3eea6e53f46299687483e8747cabf6ff00d67412b51797', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 59204.538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0c897c03ffe9fbb90000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T00:35:00.000Z'}}, {'blockNum': '0xb1781a', 'uniqueId': '0xf307318dbbd9be6ef78486723028984d949d46478c7e440f9ca9f4bcc8425091:log:134', 'hash': '0xf307318dbbd9be6ef78486723028984d949d46478c7e440f9ca9f4bcc8425091', 'from': '0x000906be4787eb60019d9e7b89ce1bd6908a4a15', 'to': '0x462ffbfe4ef60725fc6230c14c0fad15b5042d77', 'value': 17296.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a9a73d0d6bb4410000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:25:48.000Z'}}, {'blockNum': '0xb17839', 'uniqueId': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484:log:21', 'hash': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484', 'from': '0x998899462fd6f7a07525f416a7366f3971419609', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 18399.25031133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03e56ce442bfa003d400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:34:40.000Z'}}, {'blockNum': '0xb17839', 'uniqueId': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484:log:22', 'hash': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x11ededebf63bef0ea2d2d071bdf88f71543ec6fb', 'value': 160.9934402241375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08ba3b98e76fccd560', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:34:40.000Z'}}, {'blockNum': '0xb17839', 'uniqueId': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484:log:23', 'hash': '0x33474abbb3db27c001607d7bc67c04d56fe6774ccf6128c61182fc4aa0518484', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 18238.256871105863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03dcb2a8a9d83036fea0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:34:40.000Z'}}, {'blockNum': '0xb17852', 'uniqueId': '0x70b213d7ea9da9ecb98d2bca27c3576602bb95012c62e31db1a7dab8241a06df:log:6', 'hash': '0x70b213d7ea9da9ecb98d2bca27c3576602bb95012c62e31db1a7dab8241a06df', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 555954.049656898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x75ba54550026f3cd49d5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T01:39:25.000Z'}}, {'blockNum': '0xb178bf', 'uniqueId': '0x129d047ffef8bd46604992eb1a531195dea805e5c2e27632c4cdb66d913a894c:log:328', 'hash': '0x129d047ffef8bd46604992eb1a531195dea805e5c2e27632c4cdb66d913a894c', 'from': '0x97f0b8d84194f1b1c57655e0dcc8ee6af1d6248d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55424.72394904649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0bbc948eeae2897c75fb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:01:36.000Z'}}, {'blockNum': '0xb17904', 'uniqueId': '0xeb5d4987c4acfc82ac316848403a6559d984bbaa3dca90556c62896c3613431e:log:75', 'hash': '0xeb5d4987c4acfc82ac316848403a6559d984bbaa3dca90556c62896c3613431e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x15fac9da65e3ad2c944314c7e0243e877fa109ba', 'value': 4246.194906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xe62fcab9b3c32fa000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:16:45.000Z'}}, {'blockNum': '0xb1794b', 'uniqueId': '0xd61fa6d7c3f499c50871472ab2e08a5ff9e1523373cac6e84d4832a2548513fa:log:87', 'hash': '0xd61fa6d7c3f499c50871472ab2e08a5ff9e1523373cac6e84d4832a2548513fa', 'from': '0x108803bdad7ee8bde969cf7166cbe5185f0917d6', 'to': '0x4f91a47ee8dd4c20dbf1752f711797620c5121b1', 'value': 12819.48050432018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02b6f207be2919c515ce', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:31:00.000Z'}}, {'blockNum': '0xb17961', 'uniqueId': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7:log:169', 'hash': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'value': 609.3897162424287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2108fb2e3cc60ce824', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:35:10.000Z'}}, {'blockNum': '0xb17961', 'uniqueId': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7:log:171', 'hash': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7', 'from': '0xd98c3b08221ca4d39bd3050b48f21e79746e46eb', 'to': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'value': 609.3897162424287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2108fb2e3cc60ce824', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:35:10.000Z'}}, {'blockNum': '0xb17961', 'uniqueId': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7:log:172', 'hash': '0x772778d4e875ad22c772f5fed7b6a6369abd8fa7ab15ba9c003008dcd493fbb7', 'from': '0x9509665d015bfe3c77aa5ad6ca20c8afa1d98989', 'to': '0xf044ed1ada426092f1ddfb5b0ee83feb73ac5dbc', 'value': 609.3897162424287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2108fb2e3cc60ce824', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:35:10.000Z'}}, {'blockNum': '0xb179b1', 'uniqueId': '0xaef98e0111c129a2029856239216304ffbea36c2f4a28763bbe233e306348cdc:log:165', 'hash': '0xaef98e0111c129a2029856239216304ffbea36c2f4a28763bbe233e306348cdc', 'from': '0x4f91a47ee8dd4c20dbf1752f711797620c5121b1', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 12819.48050432018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02b6f207be2919c515ce', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T02:59:07.000Z'}}, {'blockNum': '0xb179dc', 'uniqueId': '0xad20ec1a8e440446bd68183152dfa6f3260af31ca16ca8d40b368e623228e8b8:log:35', 'hash': '0xad20ec1a8e440446bd68183152dfa6f3260af31ca16ca8d40b368e623228e8b8', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x31cfd1e93e836a7a9f608554a8f24b826ad72758', 'value': 9787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02128de8c6406c0c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T03:08:32.000Z'}}, {'blockNum': '0xb17a41', 'uniqueId': '0xab7893aa88a823e46dff278b1eff6d15ab0487971b61066f1370c607cab98762:log:146', 'hash': '0xab7893aa88a823e46dff278b1eff6d15ab0487971b61066f1370c607cab98762', 'from': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'to': '0x8a46eb07ed7c3d6f883990d32aad0f8231901a64', 'value': 31093.20119078327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069590d9302d55a4a0d7', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T03:29:21.000Z'}}, {'blockNum': '0xb17a4a', 'uniqueId': '0x3b26dd69cb2319d46cada096ff22df7c23b768cade7efd04cf9496f0fa185c7f:log:22', 'hash': '0x3b26dd69cb2319d46cada096ff22df7c23b768cade7efd04cf9496f0fa185c7f', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xf0936e53d924d7f442a04c038082a46c77ecc8d8', 'value': 59204.538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0c897c03ffe9fbb90000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-11T03:30:50.000Z'}}]}}
Number of returned transfers:  314
Answer is complete
 
symbol             ONG
group              BPF
date        2021-01-11
hour             16:00
exchange       binance
Name: 875, dtype: object
HERE
{'ontology': ''}
No contract for ethereum specified
 Symbol: ONG, Contract: 
Datetime timestamps:  2021-01-11 16:00:00 2021-01-11 04:00:00 2021-01-12 04:00:00
Unix timestamps:  1610334000.0 1610420400.0
Hex Block Numbers:  0xb179b6 0xb19351
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NXS
group              BPF
date        2021-01-15
hour             17:00
exchange       binance
Name: 876, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2021-01-15 17:00:00 2021-01-15 05:00:00 2021-01-16 05:00:00
Unix timestamps:  1610683200.0 1610769600.0
Hex Block Numbers:  0xb1e081 0xb1fa74
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             DLT
group               CW
date        2020-01-04
hour             20:00
exchange       binance
Name: 877, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2020-01-04 20:00:00 2020-01-04 08:00:00 2020-01-05 08:00:00
Unix timestamps:  1578121200.0 1578207600.0
Hex Block Numbers:  0x8c91ba 0x8cab41
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8c9c91', 'uniqueId': '0x940ab12c7403758c541616f66b7b3253c1893b3d828f50cce3c9b2ece0f2b28a:log:20', 'hash': '0x940ab12c7403758c541616f66b7b3253c1893b3d828f50cce3c9b2ece0f2b28a', 'from': '0x31876ddfe92556bc0829e1ab642f02e457f79ff3', 'to': '0x762a15b949f08ff812006a51a620e146512563c1', 'value': 3991.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xd866bdbc01e1d60000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T16:59:34.000Z'}}, {'blockNum': '0x8c9e1e', 'uniqueId': '0x89a3ecda878d3d62c99e12fcc7c921e1c1dd4600b6b280bf35bfd02bb0ca4de6:log:75', 'hash': '0x89a3ecda878d3d62c99e12fcc7c921e1c1dd4600b6b280bf35bfd02bb0ca4de6', 'from': '0xf477c4089012a67bd0ab70e5bbe75129145a1ae6', 'to': '0x9ae7d2f9a2ad9177051a7baa168d02aa95acc463', 'value': 22362.082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x04bc403a9b9c9cbd0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T18:30:34.000Z'}}, {'blockNum': '0x8c9e56', 'uniqueId': '0xdd27d7379deb3122355fc767a9123bb848bf02d27275e9e76c71aeb6d8b5459b:log:21', 'hash': '0xdd27d7379deb3122355fc767a9123bb848bf02d27275e9e76c71aeb6d8b5459b', 'from': '0x9ae7d2f9a2ad9177051a7baa168d02aa95acc463', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22362.082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x04bc403a9b9c9cbd0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T18:42:36.000Z'}}, {'blockNum': '0x8c9feb', 'uniqueId': '0x2fbf6d0a0600cc2f0783c0dea5500132b3109f0f58009e41f1d114e0308c28a7:log:9', 'hash': '0x2fbf6d0a0600cc2f0783c0dea5500132b3109f0f58009e41f1d114e0308c28a7', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xd00c0b32349b6215eb8b9f00e4e503f46b46b225', 'value': 420.00308225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x16c4b6b208e06be400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T20:07:34.000Z'}}, {'blockNum': '0x8ca09a', 'uniqueId': '0xb49027c38323314247a2d93b689d0530ed9d2fb5dfd8a223053db8f01cb0745d:log:3', 'hash': '0xb49027c38323314247a2d93b689d0530ed9d2fb5dfd8a223053db8f01cb0745d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 7545.3225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0199086274eb06544000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T20:48:48.000Z'}}, {'blockNum': '0x8ca0d1', 'uniqueId': '0xc461f3ff5d4042011ca91e33bc08fcbf18cfef8e85be0095e9fefbe5fbe25c3a:log:3', 'hash': '0xc461f3ff5d4042011ca91e33bc08fcbf18cfef8e85be0095e9fefbe5fbe25c3a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xad439fdcc9312e024289a85714b27537bf95ea21', 'value': 7545.3225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0199086274eb06544000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T20:59:30.000Z'}}, {'blockNum': '0x8ca14d', 'uniqueId': '0x4de721324f3687d9d0bb5215ea0cb99a0d5209afd67347aafc0378e3761d8029:log:52', 'hash': '0x4de721324f3687d9d0bb5215ea0cb99a0d5209afd67347aafc0378e3761d8029', 'from': '0x276b1bd8618809290f1a26402f3e8e539c63064b', 'to': '0xb890f76cfe6d7750952b57b453aa8e2b3d3474f5', 'value': 9234.02699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01f493de0884e1e00000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T21:24:29.000Z'}}, {'blockNum': '0x8ca150', 'uniqueId': '0xe90ad055d376b98bc6ebd15c6e27786cbe21e20eae1990b2ef53a79b0ccc9cfe:log:23', 'hash': '0xe90ad055d376b98bc6ebd15c6e27786cbe21e20eae1990b2ef53a79b0ccc9cfe', 'from': '0xb890f76cfe6d7750952b57b453aa8e2b3d3474f5', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 9234.02699998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01f493de08828ddfb800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T21:25:27.000Z'}}, {'blockNum': '0x8ca177', 'uniqueId': '0xba9de12916b287b43f720b98c97b50796d62e296cfc2cea85c3bb83b188a4f92:log:3', 'hash': '0xba9de12916b287b43f720b98c97b50796d62e296cfc2cea85c3bb83b188a4f92', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10395.89081581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x02338ff7813064e61400', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T21:32:57.000Z'}}, {'blockNum': '0x8ca1ab', 'uniqueId': '0xe614d2817d10c16f0b523c9590496d7585615b65217fef969a427d563322ba98:log:2', 'hash': '0xe614d2817d10c16f0b523c9590496d7585615b65217fef969a427d563322ba98', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 2732.246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x941d87bcf0b5ef0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T21:44:08.000Z'}}, {'blockNum': '0x8ca334', 'uniqueId': '0xb3459c8c73994fa3e01baf00913509e40e6e046ebc65e4a9e0c37f17a19b8766:log:2', 'hash': '0xb3459c8c73994fa3e01baf00913509e40e6e046ebc65e4a9e0c37f17a19b8766', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x26ee12bcc93cfdb2ba02a54752fddf39174fbf9c', 'value': 920.5595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x31e75453eaaf34c000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T23:13:27.000Z'}}, {'blockNum': '0x8ca37d', 'uniqueId': '0x21a81972e0d750fc5639fae979bd92fb1f382f5d9dbbc3e6b1bdbb8049acfa43:log:238', 'hash': '0x21a81972e0d750fc5639fae979bd92fb1f382f5d9dbbc3e6b1bdbb8049acfa43', 'from': '0x26ee12bcc93cfdb2ba02a54752fddf39174fbf9c', 'to': '0xacd19c064f42716c488a34eca089cbcfdb3f1127', 'value': 920.5595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x31e75453eaaf34c000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-04T23:31:35.000Z'}}, {'blockNum': '0x8caaed', 'uniqueId': '0x7efd3fdf4598f366c86720d57d19a60ff7c8df7d011e34b836ab404cc959e92c:log:103', 'hash': '0x7efd3fdf4598f366c86720d57d19a60ff7c8df7d011e34b836ab404cc959e92c', 'from': '0x90311693adcc842982c00d751ca708facb65a81a', 'to': '0x4cb482f426688bbdbeec5cf988305cd045b4cdb3', 'value': 3713.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xc9499d29272eee0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-05T06:41:22.000Z'}}]}}
Number of returned transfers:  13
Answer is complete
 
symbol             VIB
group               CW
date        2020-01-12
hour             20:00
exchange       binance
Name: 878, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2020-01-12 20:00:00 2020-01-12 08:00:00 2020-01-13 08:00:00
Unix timestamps:  1578812400.0 1578898800.0
Hex Block Numbers:  0x8d5dfc 0x8d775a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8d5ece', 'uniqueId': '0xece4d12e7f40e51dab42c9f065aab8547032d8941da13007b7d14c163077a22e:log:38', 'hash': '0xece4d12e7f40e51dab42c9f065aab8547032d8941da13007b7d14c163077a22e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8921.041479999092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01e39c52185b0ee58ba5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T07:44:33.000Z'}}, {'blockNum': '0x8d5ece', 'uniqueId': '0xece4d12e7f40e51dab42c9f065aab8547032d8941da13007b7d14c163077a22e:log:43', 'hash': '0xece4d12e7f40e51dab42c9f065aab8547032d8941da13007b7d14c163077a22e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 8921.041479999092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01e39c52185b0ee58ba5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T07:44:33.000Z'}}, {'blockNum': '0x8d604a', 'uniqueId': '0x938393f73d7fb232d5c795906acabb341a63d7bf3c059bacd69d5423a573e65c:log:24', 'hash': '0x938393f73d7fb232d5c795906acabb341a63d7bf3c059bacd69d5423a573e65c', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 10443.515771701874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x023624e5563eafa37221', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T09:08:19.000Z'}}, {'blockNum': '0x8d604a', 'uniqueId': '0x938393f73d7fb232d5c795906acabb341a63d7bf3c059bacd69d5423a573e65c:log:29', 'hash': '0x938393f73d7fb232d5c795906acabb341a63d7bf3c059bacd69d5423a573e65c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 10443.515771701874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x023624e5563eafa37221', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T09:08:19.000Z'}}, {'blockNum': '0x8d604d', 'uniqueId': '0xfcea67f5c3a9dfddf94027b2e647bd9a1a08658444b22aa4a1da7d7dd5c8025d:log:100', 'hash': '0xfcea67f5c3a9dfddf94027b2e647bd9a1a08658444b22aa4a1da7d7dd5c8025d', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 10443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02361dbcf29d5c4c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T09:09:17.000Z'}}, {'blockNum': '0x8d606b', 'uniqueId': '0x7c563f0f67a77f1f161c9e2325b529f3ce60e629920bd1e39baf6a7df2a1e9a1:log:8', 'hash': '0x7c563f0f67a77f1f161c9e2325b529f3ce60e629920bd1e39baf6a7df2a1e9a1', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02361dbcf29d5c4c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T09:17:09.000Z'}}, {'blockNum': '0x8d6965', 'uniqueId': '0x26301e9f7c6e6f50273f610d07206d7d5914b526de91dadd68752a0fbdb69a34:log:78', 'hash': '0x26301e9f7c6e6f50273f610d07206d7d5914b526de91dadd68752a0fbdb69a34', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 10305.362992525488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022ea7a4118c7a3169db', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T17:50:51.000Z'}}, {'blockNum': '0x8d6965', 'uniqueId': '0x26301e9f7c6e6f50273f610d07206d7d5914b526de91dadd68752a0fbdb69a34:log:83', 'hash': '0x26301e9f7c6e6f50273f610d07206d7d5914b526de91dadd68752a0fbdb69a34', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 10305.362992525488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022ea7a4118c7a3169db', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T17:50:51.000Z'}}, {'blockNum': '0x8d6967', 'uniqueId': '0x91146f204568e9a856f3c6a75536271c16c199c4b59ff51a8eb7b1baed1f36dd:log:46', 'hash': '0x91146f204568e9a856f3c6a75536271c16c199c4b59ff51a8eb7b1baed1f36dd', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 10305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022ea29a75c520640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T17:51:20.000Z'}}, {'blockNum': '0x8d6989', 'uniqueId': '0xfad208ab1a66d6e40a42130a0083fcd38e538330a817e2baba583033df4531d5:log:4', 'hash': '0xfad208ab1a66d6e40a42130a0083fcd38e538330a817e2baba583033df4531d5', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022ea29a75c520640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T17:57:03.000Z'}}, {'blockNum': '0x8d6b08', 'uniqueId': '0x27c55f518b45363e644bd99f49973f38543ac07bea1f4cbe2a4334b9903cabc7:log:91', 'hash': '0x27c55f518b45363e644bd99f49973f38543ac07bea1f4cbe2a4334b9903cabc7', 'from': '0x344fad0e6830d2c2cb2fab81fee939512961ce94', 'to': '0xf0e059d58a370159eca877cd15fdc9c770805dcc', 'value': 1050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x38ebad5cdc90280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T19:19:05.000Z'}}, {'blockNum': '0x8d6bbf', 'uniqueId': '0xc27ea8be4531f6a3b8dbeb86a389428ad3c85082e668c939d39ed21a417434d9:log:11', 'hash': '0xc27ea8be4531f6a3b8dbeb86a389428ad3c85082e668c939d39ed21a417434d9', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 19549.863652933833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0423ccdc04b9f9aea461', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T19:59:59.000Z'}}, {'blockNum': '0x8d6bbf', 'uniqueId': '0xc27ea8be4531f6a3b8dbeb86a389428ad3c85082e668c939d39ed21a417434d9:log:16', 'hash': '0xc27ea8be4531f6a3b8dbeb86a389428ad3c85082e668c939d39ed21a417434d9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 19549.863652933833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0423ccdc04b9f9aea461', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T19:59:59.000Z'}}, {'blockNum': '0x8d6bc0', 'uniqueId': '0xd2c896769e6c55112f7d63d0780f920732743790ffa97c151c32a09424ca96b1:log:11', 'hash': '0xd2c896769e6c55112f7d63d0780f920732743790ffa97c151c32a09424ca96b1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 614.1821719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x214b7d67443566d800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:00:37.000Z'}}, {'blockNum': '0x8d6bc1', 'uniqueId': '0x026a259bc86675ca9a20cb30a75ef36e9f538dc377ab255442098f82a4d732e6:log:55', 'hash': '0x026a259bc86675ca9a20cb30a75ef36e9f538dc377ab255442098f82a4d732e6', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 27928.380208499282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05ea002264bae19fcad1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:14.000Z'}}, {'blockNum': '0x8d6bc1', 'uniqueId': '0x026a259bc86675ca9a20cb30a75ef36e9f538dc377ab255442098f82a4d732e6:log:60', 'hash': '0x026a259bc86675ca9a20cb30a75ef36e9f538dc377ab255442098f82a4d732e6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 27928.380208499282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05ea002264bae19fcad1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:14.000Z'}}, {'blockNum': '0x8d6bc1', 'uniqueId': '0x0b94ac265a07df460b2d5bd88159bdd34aa8438aa2d4d9adac4700c3cf3de3c7:log:135', 'hash': '0x0b94ac265a07df460b2d5bd88159bdd34aa8438aa2d4d9adac4700c3cf3de3c7', 'from': '0xdc79bb9a038834ee96202e8dd0c4ba6d568dcea5', 'to': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'value': 15400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0342d5eea74d97a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:14.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x3f0ea3e00b87badce39df6d45c013e6633427a7dbe3088dedfebfa92c14d5f00:log:11', 'hash': '0x3f0ea3e00b87badce39df6d45c013e6633427a7dbe3088dedfebfa92c14d5f00', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18231.447711332592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03dc5429ab1b6fa17615', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x3f0ea3e00b87badce39df6d45c013e6633427a7dbe3088dedfebfa92c14d5f00:log:16', 'hash': '0x3f0ea3e00b87badce39df6d45c013e6633427a7dbe3088dedfebfa92c14d5f00', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 18231.447711332592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03dc5429ab1b6fa17615', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x9ef5bcc87eeddd8eb428e39c19e87c13843e0adcc01b11b2725510dfc685dcf2:log:164', 'hash': '0x9ef5bcc87eeddd8eb428e39c19e87c13843e0adcc01b11b2725510dfc685dcf2', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18278.162153367943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03dedc74b4a275212555', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x9ef5bcc87eeddd8eb428e39c19e87c13843e0adcc01b11b2725510dfc685dcf2:log:169', 'hash': '0x9ef5bcc87eeddd8eb428e39c19e87c13843e0adcc01b11b2725510dfc685dcf2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 18278.162153367943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03dedc74b4a275212555', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x30d7c8233b8303e12ae926175aa4c772331ca1831300ca5e66383302589affa4:log:189', 'hash': '0x30d7c8233b8303e12ae926175aa4c772331ca1831300ca5e66383302589affa4', 'from': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18213.216263621263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03db57268e0210c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc2', 'uniqueId': '0x30d7c8233b8303e12ae926175aa4c772331ca1831300ca5e66383302589affa4:log:191', 'hash': '0x30d7c8233b8303e12ae926175aa4c772331ca1831300ca5e66383302589affa4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 18213.216263621263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03db57268e0210c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:01:18.000Z'}}, {'blockNum': '0x8d6bc5', 'uniqueId': '0x3a4ed830f5e4f12e9e380e13f3a3cec3b0c9735b337b37d7c52c9a3fc78c997c:log:98', 'hash': '0x3a4ed830f5e4f12e9e380e13f3a3cec3b0c9735b337b37d7c52c9a3fc78c997c', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 20002.98510697557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043c5d2ece6fe3e888a5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:11.000Z'}}, {'blockNum': '0x8d6bc5', 'uniqueId': '0x3a4ed830f5e4f12e9e380e13f3a3cec3b0c9735b337b37d7c52c9a3fc78c997c:log:103', 'hash': '0x3a4ed830f5e4f12e9e380e13f3a3cec3b0c9735b337b37d7c52c9a3fc78c997c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x82d5cbe057f17bf58c728829c7aed242fe5b4623', 'value': 20002.98510697557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043c5d2ece6fe3e888a5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:11.000Z'}}, {'blockNum': '0x8d6bc5', 'uniqueId': '0x7bfb1f750267e98eddac3a968807ef1dd1ef3b736ae3525b9f483889aeb39f4b:log:125', 'hash': '0x7bfb1f750267e98eddac3a968807ef1dd1ef3b736ae3525b9f483889aeb39f4b', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 18278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03deda349f016dd80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:11.000Z'}}, {'blockNum': '0x8d6bc7', 'uniqueId': '0x4366b26665d30afce4fcf9357a079e5fd8afe6237cc19b09aa3c541188058fec:log:0', 'hash': '0x4366b26665d30afce4fcf9357a079e5fd8afe6237cc19b09aa3c541188058fec', 'from': '0x82d5cbe057f17bf58c728829c7aed242fe5b4623', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 20002.98510697557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043c5d2ece6fe3e888a5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:21.000Z'}}, {'blockNum': '0x8d6bc7', 'uniqueId': '0x8d56b68fb4560898ce69261d25c51b42772dc12e4e980ede0c3c6478384d877a:log:80', 'hash': '0x8d56b68fb4560898ce69261d25c51b42772dc12e4e980ede0c3c6478384d877a', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 11870.811611365181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0283849aca47fbf8c69c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:21.000Z'}}, {'blockNum': '0x8d6bc7', 'uniqueId': '0x8d56b68fb4560898ce69261d25c51b42772dc12e4e980ede0c3c6478384d877a:log:85', 'hash': '0x8d56b68fb4560898ce69261d25c51b42772dc12e4e980ede0c3c6478384d877a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 11870.811611365181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0283849aca47fbf8c69c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:02:21.000Z'}}, {'blockNum': '0x8d6bc9', 'uniqueId': '0xdd5892ea9cf08e28562cc7f77c12ae08260b98950cac5cbcb16bc07ced69ecc1:log:1', 'hash': '0xdd5892ea9cf08e28562cc7f77c12ae08260b98950cac5cbcb16bc07ced69ecc1', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 11870.811611365181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0283849aca47fbf8c69c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:03:13.000Z'}}, {'blockNum': '0x8d6bca', 'uniqueId': '0x5f5f24db84ed673edc6ea2b69d0b33cacca9dfb306e86206d359115bad59b76c:log:9', 'hash': '0x5f5f24db84ed673edc6ea2b69d0b33cacca9dfb306e86206d359115bad59b76c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 10516.8098182929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x023a1e0e194a78ced590', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:03:35.000Z'}}, {'blockNum': '0x8d6bca', 'uniqueId': '0x5f5f24db84ed673edc6ea2b69d0b33cacca9dfb306e86206d359115bad59b76c:log:11', 'hash': '0x5f5f24db84ed673edc6ea2b69d0b33cacca9dfb306e86206d359115bad59b76c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 10516.8098182929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x023a1e0e194a78ced590', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:03:35.000Z'}}, {'blockNum': '0x8d6bcc', 'uniqueId': '0xd7ad8547770097d90d958ab470e69f6adaef5af593bd15c2d12f82eed8dbd44c:log:31', 'hash': '0xd7ad8547770097d90d958ab470e69f6adaef5af593bd15c2d12f82eed8dbd44c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 11024.153407517082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02559edc9bab33c3f8d2', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:04:03.000Z'}}, {'blockNum': '0x8d6bcc', 'uniqueId': '0xd7ad8547770097d90d958ab470e69f6adaef5af593bd15c2d12f82eed8dbd44c:log:33', 'hash': '0xd7ad8547770097d90d958ab470e69f6adaef5af593bd15c2d12f82eed8dbd44c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 11024.153407517082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02559edc9bab33c3f8d2', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:04:03.000Z'}}, {'blockNum': '0x8d6bda', 'uniqueId': '0x56a91cac2787af49e5c61b1265bb68885c4b419a3c7d9c2197cb49674e5d6839:log:5', 'hash': '0x56a91cac2787af49e5c61b1265bb68885c4b419a3c7d9c2197cb49674e5d6839', 'from': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20002.98510697557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043c5d2ece6fe3e888a5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:07:27.000Z'}}, {'blockNum': '0x8d6bda', 'uniqueId': '0x377640f72c945d42d20e5c9ab9458f8b8ea7926426176c36f3cdea7e21ef00a0:log:7', 'hash': '0x377640f72c945d42d20e5c9ab9458f8b8ea7926426176c36f3cdea7e21ef00a0', 'from': '0x49a453ce4dca928c4e92017d17292a209c485a00', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0342d5eea74d97a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:07:27.000Z'}}, {'blockNum': '0x8d6be3', 'uniqueId': '0x1a6a41790e6fddc3238821bb2ebc7898524e3dbffb51a55c078d401229c6ca81:log:10', 'hash': '0x1a6a41790e6fddc3238821bb2ebc7898524e3dbffb51a55c078d401229c6ca81', 'from': '0x344fad0e6830d2c2cb2fab81fee939512961ce94', 'to': '0xb07fb5a474c3756a8c2e2ac44023eee733f48929', 'value': 1050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x38ebad5cdc90280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:09:01.000Z'}}, {'blockNum': '0x8d6bef', 'uniqueId': '0x0154173a7f525b0b0c1d0a2e1e2c8e72bef49b9d3e50147697051692192101a4:log:20', 'hash': '0x0154173a7f525b0b0c1d0a2e1e2c8e72bef49b9d3e50147697051692192101a4', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 12506.896461117942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a6000e230264ff75cc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:12:13.000Z'}}, {'blockNum': '0x8d6bef', 'uniqueId': '0x0154173a7f525b0b0c1d0a2e1e2c8e72bef49b9d3e50147697051692192101a4:log:22', 'hash': '0x0154173a7f525b0b0c1d0a2e1e2c8e72bef49b9d3e50147697051692192101a4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 12506.896461117942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a6000e230264ff75cc', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:12:13.000Z'}}, {'blockNum': '0x8d6c07', 'uniqueId': '0xa2e254d111e859551f54d48c4f847f948d17c7eada797c7e7c83be187497ecea:log:3', 'hash': '0xa2e254d111e859551f54d48c4f847f948d17c7eada797c7e7c83be187497ecea', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03deda349f016dd80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:17:05.000Z'}}, {'blockNum': '0x8d6c07', 'uniqueId': '0xcd3f4b7ba87418c96d5695d2be5ff713404e4fe48f36c379bef55185d048a98e:log:4', 'hash': '0xcd3f4b7ba87418c96d5695d2be5ff713404e4fe48f36c379bef55185d048a98e', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11870.811611365181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0283849aca47fbf8c69c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:17:05.000Z'}}, {'blockNum': '0x8d6c08', 'uniqueId': '0xba21236609da7862449473d22cca7899bd579ba1b4bc5bd543e1a265b10e6b11:log:19', 'hash': '0xba21236609da7862449473d22cca7899bd579ba1b4bc5bd543e1a265b10e6b11', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5091.149151341526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0113fde33b14b3138fda', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:17:13.000Z'}}, {'blockNum': '0x8d6c08', 'uniqueId': '0xba21236609da7862449473d22cca7899bd579ba1b4bc5bd543e1a265b10e6b11:log:21', 'hash': '0xba21236609da7862449473d22cca7899bd579ba1b4bc5bd543e1a265b10e6b11', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5091.149151341526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0113fde33b14b3138fda', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:17:13.000Z'}}, {'blockNum': '0x8d6c35', 'uniqueId': '0x60e1cde1d094094b087feea9e902a7c0602b2dba5413f739c2ab9d21ea3d9779:log:80', 'hash': '0x60e1cde1d094094b087feea9e902a7c0602b2dba5413f739c2ab9d21ea3d9779', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2717.8942385362975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x93565c09ed8ccecfdf', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:28:51.000Z'}}, {'blockNum': '0x8d6c35', 'uniqueId': '0x60e1cde1d094094b087feea9e902a7c0602b2dba5413f739c2ab9d21ea3d9779:log:82', 'hash': '0x60e1cde1d094094b087feea9e902a7c0602b2dba5413f739c2ab9d21ea3d9779', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 2717.8942385362975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x93565c09ed8ccecfdf', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:28:51.000Z'}}, {'blockNum': '0x8d6c49', 'uniqueId': '0x8a35dcdef17e726ba9ca051b66b63c421f78bcb34f8561f4c811008f869a4f4e:log:1', 'hash': '0x8a35dcdef17e726ba9ca051b66b63c421f78bcb34f8561f4c811008f869a4f4e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 18264.36961136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03de1d0bc0c1201fc000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:32:29.000Z'}}, {'blockNum': '0x8d6c4b', 'uniqueId': '0xa67e1053cd8f927db2f9f422258016931e9eb5ad92334dc29793aae7f9fc742e:log:56', 'hash': '0xa67e1053cd8f927db2f9f422258016931e9eb5ad92334dc29793aae7f9fc742e', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18264.36961136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03de1d0bc0c1201fc000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:32:55.000Z'}}, {'blockNum': '0x8d6c4b', 'uniqueId': '0xa67e1053cd8f927db2f9f422258016931e9eb5ad92334dc29793aae7f9fc742e:log:58', 'hash': '0xa67e1053cd8f927db2f9f422258016931e9eb5ad92334dc29793aae7f9fc742e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 18264.36961136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03de1d0bc0c1201fc000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:32:55.000Z'}}, {'blockNum': '0x8d6c4e', 'uniqueId': '0x83c9d4ee09a43ef4028f210a3ec6a62e1f7e196053938d8ff2521498dba64987:log:52', 'hash': '0x83c9d4ee09a43ef4028f210a3ec6a62e1f7e196053938d8ff2521498dba64987', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6779.421433890561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016f835f433594453c11', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:33:42.000Z'}}, {'blockNum': '0x8d6c4e', 'uniqueId': '0x83c9d4ee09a43ef4028f210a3ec6a62e1f7e196053938d8ff2521498dba64987:log:57', 'hash': '0x83c9d4ee09a43ef4028f210a3ec6a62e1f7e196053938d8ff2521498dba64987', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 6779.421433890561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016f835f433594453c11', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:33:42.000Z'}}, {'blockNum': '0x8d6c58', 'uniqueId': '0x07badddb620577d859463d2cc38fca4363abf04eda1ccb02cc571fc05f2edb54:log:31', 'hash': '0x07badddb620577d859463d2cc38fca4363abf04eda1ccb02cc571fc05f2edb54', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9518.961623429423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x020406212ae38e6b5cb1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:36:24.000Z'}}, {'blockNum': '0x8d6c58', 'uniqueId': '0x07badddb620577d859463d2cc38fca4363abf04eda1ccb02cc571fc05f2edb54:log:36', 'hash': '0x07badddb620577d859463d2cc38fca4363abf04eda1ccb02cc571fc05f2edb54', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 9518.961623429423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x020406212ae38e6b5cb1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:36:24.000Z'}}, {'blockNum': '0x8d6c5c', 'uniqueId': '0x56f41cb400012b9e69bb1da1ccd9ee1a321ebe4fc66d5bddf7dca6abcc166a34:log:35', 'hash': '0x56f41cb400012b9e69bb1da1ccd9ee1a321ebe4fc66d5bddf7dca6abcc166a34', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 9518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0203f8c8cb7987f80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:37:16.000Z'}}, {'blockNum': '0x8d6c86', 'uniqueId': '0x08466c84d3fa0e6636f13227056db5f72ab4ce5c8774b5b5a6e73727e3504166:log:3', 'hash': '0x08466c84d3fa0e6636f13227056db5f72ab4ce5c8774b5b5a6e73727e3504166', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0203f8c8cb7987f80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:47:06.000Z'}}, {'blockNum': '0x8d6ca1', 'uniqueId': '0x115987fe04ca6310299284964f7e88ba9be3a8642bf2031c394a71564c987780:log:9', 'hash': '0x115987fe04ca6310299284964f7e88ba9be3a8642bf2031c394a71564c987780', 'from': '0x1657e36d67e3ca976cb3990cb611b061244a5680', 'to': '0x470a89caaaf2186792e0e6bad1b48032180ad2cf', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T20:52:15.000Z'}}, {'blockNum': '0x8d6cc9', 'uniqueId': '0x34d6e004d3c71774c627a57cd4e20897786ab8f5fc75bbce87bc5a65af0594ea:log:108', 'hash': '0x34d6e004d3c71774c627a57cd4e20897786ab8f5fc75bbce87bc5a65af0594ea', 'from': '0x58815d9b02743300221ceda606b8ecd11372bff5', 'to': '0x8487db809b567231617a1559d9d35a423ee43e64', 'value': 144300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1e8e84c7d9d563300000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T21:01:26.000Z'}}, {'blockNum': '0x8d6ce2', 'uniqueId': '0x56622a519e047006a080a75ccf6fadbe44a8f061e89dd1f616e51cc9516641d7:log:12', 'hash': '0x56622a519e047006a080a75ccf6fadbe44a8f061e89dd1f616e51cc9516641d7', 'from': '0x8487db809b567231617a1559d9d35a423ee43e64', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 145107.46999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1eba4aad90aa3fcf1c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T21:07:12.000Z'}}, {'blockNum': '0x8d6df0', 'uniqueId': '0x410e8d32e671330517a4746f901e0073062ad81f946e20e85b11037b3a73f9a6:log:30', 'hash': '0x410e8d32e671330517a4746f901e0073062ad81f946e20e85b11037b3a73f9a6', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 10873.052948505163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024d6debf0c30fd76be7', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:03:17.000Z'}}, {'blockNum': '0x8d6df0', 'uniqueId': '0x410e8d32e671330517a4746f901e0073062ad81f946e20e85b11037b3a73f9a6:log:35', 'hash': '0x410e8d32e671330517a4746f901e0073062ad81f946e20e85b11037b3a73f9a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0958d18592cbff1503a4e02d526888ab0ae0e5f3', 'value': 10873.052948505163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024d6debf0c30fd76be7', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:03:17.000Z'}}, {'blockNum': '0x8d6df1', 'uniqueId': '0x55ebd93de7fcf67fdc599b4bbd073d69bc5212ec3633b73b8d80b7853ebecebe:log:13', 'hash': '0x55ebd93de7fcf67fdc599b4bbd073d69bc5212ec3633b73b8d80b7853ebecebe', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6779.421433890561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016f835f433594453c11', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:03:28.000Z'}}, {'blockNum': '0x8d6df1', 'uniqueId': '0x55ebd93de7fcf67fdc599b4bbd073d69bc5212ec3633b73b8d80b7853ebecebe:log:15', 'hash': '0x55ebd93de7fcf67fdc599b4bbd073d69bc5212ec3633b73b8d80b7853ebecebe', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6779.421433890561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016f835f433594453c11', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:03:28.000Z'}}, {'blockNum': '0x8d6df6', 'uniqueId': '0xd7c2dddb25cf2072c9d084d1100775f96465a205f122b4ba3f8eef17263f0381:log:32', 'hash': '0xd7c2dddb25cf2072c9d084d1100775f96465a205f122b4ba3f8eef17263f0381', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9561.271475306101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0206514bf500e73b3f67', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:04:31.000Z'}}, {'blockNum': '0x8d6df6', 'uniqueId': '0xd7c2dddb25cf2072c9d084d1100775f96465a205f122b4ba3f8eef17263f0381:log:37', 'hash': '0xd7c2dddb25cf2072c9d084d1100775f96465a205f122b4ba3f8eef17263f0381', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0958d18592cbff1503a4e02d526888ab0ae0e5f3', 'value': 9561.271475306101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0206514bf500e73b3f67', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:04:31.000Z'}}, {'blockNum': '0x8d6e00', 'uniqueId': '0x86e4b94cc1becd8610d4bb20cb7d77b50fd18d1ef0c074fed37cffbc1afa2548:log:64', 'hash': '0x86e4b94cc1becd8610d4bb20cb7d77b50fd18d1ef0c074fed37cffbc1afa2548', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6347.5705470877065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01581a3cb5b4c6b00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:07:00.000Z'}}, {'blockNum': '0x8d6e00', 'uniqueId': '0x86e4b94cc1becd8610d4bb20cb7d77b50fd18d1ef0c074fed37cffbc1afa2548:log:66', 'hash': '0x86e4b94cc1becd8610d4bb20cb7d77b50fd18d1ef0c074fed37cffbc1afa2548', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6347.5705470877065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01581a3cb5b4c6b00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:07:00.000Z'}}, {'blockNum': '0x8d6e05', 'uniqueId': '0x0fe329a72da9c9ba0b25b7d91516429cee67a86f26f95700c30b085546cf04b1:log:5', 'hash': '0x0fe329a72da9c9ba0b25b7d91516429cee67a86f26f95700c30b085546cf04b1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 6350.25092374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01583f6f5211f6e19800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:07:41.000Z'}}, {'blockNum': '0x8d6e11', 'uniqueId': '0xbe07b0b9d5792ec2ae2c16a5b3f9fe071908bbad1cee0647fc5d7d264b4f6de6:log:4', 'hash': '0xbe07b0b9d5792ec2ae2c16a5b3f9fe071908bbad1cee0647fc5d7d264b4f6de6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 6318.633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015688a5e3f294ca8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:10:09.000Z'}}, {'blockNum': '0x8d6e25', 'uniqueId': '0x123c18b438b63b32d919d09804c9bec67d2d3d0d38514c614a06f475c3257561:log:13', 'hash': '0x123c18b438b63b32d919d09804c9bec67d2d3d0d38514c614a06f475c3257561', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6318.633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015688a5e3f294ca8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:14:09.000Z'}}, {'blockNum': '0x8d6e25', 'uniqueId': '0x123c18b438b63b32d919d09804c9bec67d2d3d0d38514c614a06f475c3257561:log:15', 'hash': '0x123c18b438b63b32d919d09804c9bec67d2d3d0d38514c614a06f475c3257561', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6318.633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015688a5e3f294ca8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:14:09.000Z'}}, {'blockNum': '0x8d6e4c', 'uniqueId': '0x55a58c874b00c7cb0ca4c0eb22133171fec5f2f810a7538eb71f32ec93015fb2:log:2', 'hash': '0x55a58c874b00c7cb0ca4c0eb22133171fec5f2f810a7538eb71f32ec93015fb2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc6ae17a1ff6ea40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:23:52.000Z'}}, {'blockNum': '0x8d6e5e', 'uniqueId': '0x39b0cac13a631c57a1fe0fb46ff661ed9795d56c219ae12e390442e64af69470:log:2', 'hash': '0x39b0cac13a631c57a1fe0fb46ff661ed9795d56c219ae12e390442e64af69470', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc6ae17a1ff6ea40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:27:07.000Z'}}, {'blockNum': '0x8d6e9f', 'uniqueId': '0x00890b269d4d787a0c46b6879e9678d1e9f087b30e69d9c20449ed28d1436bcb:log:10', 'hash': '0x00890b269d4d787a0c46b6879e9678d1e9f087b30e69d9c20449ed28d1436bcb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7b90e91c9d511292aa6b721996faf69d3ce6a0ea', 'value': 3841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd038953d8283640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:39:48.000Z'}}, {'blockNum': '0x8d6ea0', 'uniqueId': '0xc7b8b506b7b77c5e2ac63a42bcd31e94b1a9474c3be0f4715b568ed0718d5cc4:log:43', 'hash': '0xc7b8b506b7b77c5e2ac63a42bcd31e94b1a9474c3be0f4715b568ed0718d5cc4', 'from': '0x7b90e91c9d511292aa6b721996faf69d3ce6a0ea', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd038953d8283640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:40:26.000Z'}}, {'blockNum': '0x8d6ea0', 'uniqueId': '0xc7b8b506b7b77c5e2ac63a42bcd31e94b1a9474c3be0f4715b568ed0718d5cc4:log:45', 'hash': '0xc7b8b506b7b77c5e2ac63a42bcd31e94b1a9474c3be0f4715b568ed0718d5cc4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 3841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd038953d8283640000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:40:26.000Z'}}, {'blockNum': '0x8d6ee6', 'uniqueId': '0xb03acf8abd6de169b3263380af689d30b4d646b9bca6660a252f5b963ff75425:log:2', 'hash': '0xb03acf8abd6de169b3263380af689d30b4d646b9bca6660a252f5b963ff75425', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 6482.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f6a5449e841b08000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:53:30.000Z'}}, {'blockNum': '0x8d6ee8', 'uniqueId': '0x83942893d21943ab496837455ea7883361a4eb63e0b7bfcae5d6a9b14647a724:log:7', 'hash': '0x83942893d21943ab496837455ea7883361a4eb63e0b7bfcae5d6a9b14647a724', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6482.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f6a5449e841b08000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:53:59.000Z'}}, {'blockNum': '0x8d6ee8', 'uniqueId': '0x83942893d21943ab496837455ea7883361a4eb63e0b7bfcae5d6a9b14647a724:log:9', 'hash': '0x83942893d21943ab496837455ea7883361a4eb63e0b7bfcae5d6a9b14647a724', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6482.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f6a5449e841b08000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-12T22:53:59.000Z'}}, {'blockNum': '0x8d700d', 'uniqueId': '0x0930c26d7bbd5525d59126c1963c17e799d3189734ac0e0e2db09107c362d23c:log:2', 'hash': '0x0930c26d7bbd5525d59126c1963c17e799d3189734ac0e0e2db09107c362d23c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 6550.401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016319133bfcf3868000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T00:03:16.000Z'}}, {'blockNum': '0x8d7015', 'uniqueId': '0x6419fac01e0d7da46494f956f51071629eaf0914d75b151ecc789c6e01f4c95c:log:83', 'hash': '0x6419fac01e0d7da46494f956f51071629eaf0914d75b151ecc789c6e01f4c95c', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6550.401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016319133bfcf3868000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T00:04:39.000Z'}}, {'blockNum': '0x8d7015', 'uniqueId': '0x6419fac01e0d7da46494f956f51071629eaf0914d75b151ecc789c6e01f4c95c:log:85', 'hash': '0x6419fac01e0d7da46494f956f51071629eaf0914d75b151ecc789c6e01f4c95c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6550.401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x016319133bfcf3868000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T00:04:39.000Z'}}, {'blockNum': '0x8d7174', 'uniqueId': '0x855ab33e566b79d33db74e67a782f92c933b0d302b9565f626ae3687ffc24a77:log:57', 'hash': '0x855ab33e566b79d33db74e67a782f92c933b0d302b9565f626ae3687ffc24a77', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 15983.003388586792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x036270bac456a46ee50f', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:23:28.000Z'}}, {'blockNum': '0x8d7174', 'uniqueId': '0x855ab33e566b79d33db74e67a782f92c933b0d302b9565f626ae3687ffc24a77:log:62', 'hash': '0x855ab33e566b79d33db74e67a782f92c933b0d302b9565f626ae3687ffc24a77', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 15983.003388586792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x036270bac456a46ee50f', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:23:28.000Z'}}, {'blockNum': '0x8d7179', 'uniqueId': '0x1ecd6c89c5404574d58729b3d7575253e1f41c8f9d1e5fe795008e4e938f5661:log:3', 'hash': '0x1ecd6c89c5404574d58729b3d7575253e1f41c8f9d1e5fe795008e4e938f5661', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 15983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x036270aeba6fcc5c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:23:46.000Z'}}, {'blockNum': '0x8d71b6', 'uniqueId': '0xed05ca774e9f39d15108f3855128feb89e8106ae414625f539e03a37c4a3a8b0:log:25', 'hash': '0xed05ca774e9f39d15108f3855128feb89e8106ae414625f539e03a37c4a3a8b0', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x036270aeba6fcc5c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:36:53.000Z'}}, {'blockNum': '0x8d71e9', 'uniqueId': '0x97d114f6586b933dad80f74a7927f118b16e62953a30fe36c8e71275e34712d3:log:1', 'hash': '0x97d114f6586b933dad80f74a7927f118b16e62953a30fe36c8e71275e34712d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5b98e34f2c825778a416e86395f2c9d84a5588f4', 'value': 361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1391e1a3570c040000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T01:48:13.000Z'}}, {'blockNum': '0x8d7635', 'uniqueId': '0x11828d33d091a539f82965c2b58bcee74dc8c50016eb6745fa594ea38b846c27:log:16', 'hash': '0x11828d33d091a539f82965c2b58bcee74dc8c50016eb6745fa594ea38b846c27', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4423.246847521097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xefc8e1947449683142', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T05:54:28.000Z'}}, {'blockNum': '0x8d7635', 'uniqueId': '0x11828d33d091a539f82965c2b58bcee74dc8c50016eb6745fa594ea38b846c27:log:21', 'hash': '0x11828d33d091a539f82965c2b58bcee74dc8c50016eb6745fa594ea38b846c27', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 4423.246847521097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xefc8e1947449683142', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T05:54:28.000Z'}}, {'blockNum': '0x8d7698', 'uniqueId': '0x1bfe84b85baaebdc5fe44d764569a74f2fb53cc4954fa94a21f1c39c658ca2b6:log:101', 'hash': '0x1bfe84b85baaebdc5fe44d764569a74f2fb53cc4954fa94a21f1c39c658ca2b6', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9332.806563527185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f9eeb58a3317ea5da5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:16:35.000Z'}}, {'blockNum': '0x8d7698', 'uniqueId': '0x1bfe84b85baaebdc5fe44d764569a74f2fb53cc4954fa94a21f1c39c658ca2b6:log:106', 'hash': '0x1bfe84b85baaebdc5fe44d764569a74f2fb53cc4954fa94a21f1c39c658ca2b6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 9332.806563527185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f9eeb58a3317ea5da5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:16:35.000Z'}}, {'blockNum': '0x8d769d', 'uniqueId': '0xe132bb4792c636747aaaed7e321f570c100a0cb0b34b5704d7067bfe503cea60:log:57', 'hash': '0xe132bb4792c636747aaaed7e321f570c100a0cb0b34b5704d7067bfe503cea60', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 9332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f9e3840cf1e9500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:18:08.000Z'}}, {'blockNum': '0x8d76a0', 'uniqueId': '0x006f2c13a248102cf1cce569b96658ea9c3c104c6fcc4186e75fb7e89c3a0bdd:log:126', 'hash': '0x006f2c13a248102cf1cce569b96658ea9c3c104c6fcc4186e75fb7e89c3a0bdd', 'from': '0x470a89caaaf2186792e0e6bad1b48032180ad2cf', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:19:42.000Z'}}, {'blockNum': '0x8d76a0', 'uniqueId': '0x006f2c13a248102cf1cce569b96658ea9c3c104c6fcc4186e75fb7e89c3a0bdd:log:128', 'hash': '0x006f2c13a248102cf1cce569b96658ea9c3c104c6fcc4186e75fb7e89c3a0bdd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:19:42.000Z'}}, {'blockNum': '0x8d76c3', 'uniqueId': '0x9d896435107a3fd6f1c9dee9a5dcd811060a5044026289800dcabfa220c078a4:log:19', 'hash': '0x9d896435107a3fd6f1c9dee9a5dcd811060a5044026289800dcabfa220c078a4', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f9e3840cf1e9500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:27:16.000Z'}}, {'blockNum': '0x8d76ef', 'uniqueId': '0x5e73af04c66d4f45268957ee2d3c4b78d2bc997c55af7627856f2154d5ec3d40:log:38', 'hash': '0x5e73af04c66d4f45268957ee2d3c4b78d2bc997c55af7627856f2154d5ec3d40', 'from': '0xeb9026ac08978d42be31454fe14a0cd3ae2aff30', 'to': '0x0c5ad9e1ddb876c748e925c0d3e1d0ec53a302d3', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:37:05.000Z'}}, {'blockNum': '0x8d770a', 'uniqueId': '0xd663e71d97feefd04465975be49f8d660c5eaf7ec9c69174a68aae6cc28c5a62:log:23', 'hash': '0xd663e71d97feefd04465975be49f8d660c5eaf7ec9c69174a68aae6cc28c5a62', 'from': '0xeb9026ac08978d42be31454fe14a0cd3ae2aff30', 'to': '0x0c5ad9e1ddb876c748e925c0d3e1d0ec53a302d3', 'value': 4216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe48cc0deacb6e00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:43:16.000Z'}}, {'blockNum': '0x8d771e', 'uniqueId': '0x7ea2eedb5abe4ab554b87679e24315124a1a83b45f7f70fca46e4a9f9aed26c3:log:5', 'hash': '0x7ea2eedb5abe4ab554b87679e24315124a1a83b45f7f70fca46e4a9f9aed26c3', 'from': '0x0c5ad9e1ddb876c748e925c0d3e1d0ec53a302d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xffa7a5b58fa6300000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-13T06:47:11.000Z'}}]}}
Number of returned transfers:  96
Answer is complete
 
symbol             OAX
group               CW
date        2020-01-14
hour             19:00
exchange       binance
Name: 879, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-01-14 19:00:00 2020-01-14 07:00:00 2020-01-15 07:00:00
Unix timestamps:  1578981600.0 1579068000.0
Hex Block Numbers:  0x8d8fdf 0x8da97a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8d9bb4', 'uniqueId': '0x97fa3fe09703411e70fccb8a19ed48b7ed95f0325766a50b8e03538e8f19be8f:log:14', 'hash': '0x97fa3fe09703411e70fccb8a19ed48b7ed95f0325766a50b8e03538e8f19be8f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 8004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01b1e5d048fd92900000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-14T17:13:20.000Z'}}, {'blockNum': '0x8d9d8b', 'uniqueId': '0x9a1c6db347c79bd92187f2073d480cbf1df2485987c61eefc171fd7d48e54dc5:log:132', 'hash': '0x9a1c6db347c79bd92187f2073d480cbf1df2485987c61eefc171fd7d48e54dc5', 'from': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 8004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01b1e5d048fd92900000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-14T18:59:08.000Z'}}, {'blockNum': '0x8d9da1', 'uniqueId': '0xbc14971838d05292212cfcbe22e09f1aa1dc6956a5ed6b182ec47b7b60ddcab1:log:9', 'hash': '0xbc14971838d05292212cfcbe22e09f1aa1dc6956a5ed6b182ec47b7b60ddcab1', 'from': '0x7586d2c1406bc053cae0fede125a10543afe20ee', 'to': '0xbf2209a0eca697fa5e3a5e726c05fe61127aebda', 'value': 4786.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01037e31d67257d80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-14T19:04:17.000Z'}}, {'blockNum': '0x8da6db', 'uniqueId': '0xa46a95d71c0e500c436dfe3a48783e2d5976bcd559241f22f4039a1bbc3bc857:log:161', 'hash': '0xa46a95d71c0e500c436dfe3a48783e2d5976bcd559241f22f4039a1bbc3bc857', 'from': '0xedbb72e6b3cf66a792bff7faac5ea769fe810517', 'to': '0x2b439a32a84898227ca1ab04d564b70714a143db', 'value': 220.65827761, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0bf63fae637d94a400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-15T03:35:31.000Z'}}, {'blockNum': '0x8da74f', 'uniqueId': '0x77ce48485b3a0fb2119f42d82ffc7c9d6ccc2ea60036cf644348367f62db185f:log:193', 'hash': '0x77ce48485b3a0fb2119f42d82ffc7c9d6ccc2ea60036cf644348367f62db185f', 'from': '0x3acc6ec5c585a0f69bcbb46269902ca14debc3ab', 'to': '0x9c617977a1466a68266e2d6db673d434f719bb85', 'value': 2111.43542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x72760d7fa02db5c000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-15T04:01:40.000Z'}}]}}
Number of returned transfers:  5
Answer is complete
 
symbol             RDN
group               CW
date        2020-02-01
hour             13:00
exchange       binance
Name: 880, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-02-01 13:00:00 2020-02-01 01:00:00 2020-02-02 01:00:00
Unix timestamps:  1580515200.0 1580601600.0
Hex Block Numbers:  0x8f5402 0x8f6d5a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8f5492', 'uniqueId': '0x22f112962063ffc771c21e3a2ca7cdf1eb407bc24fd9aac36b1b74b1a1475f53:log:1', 'hash': '0x22f112962063ffc771c21e3a2ca7cdf1eb407bc24fd9aac36b1b74b1a1475f53', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T00:32:20.000Z'}}, {'blockNum': '0x8f54c6', 'uniqueId': '0x585d66fab4b88dd0e701a1c3e4a702d69656dbc099efd226eee5eecdcc49a7d1:log:11', 'hash': '0x585d66fab4b88dd0e701a1c3e4a702d69656dbc099efd226eee5eecdcc49a7d1', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T00:43:55.000Z'}}, {'blockNum': '0x8f553e', 'uniqueId': '0xc2469904ea686463a396a496e30260120c1a20016072dbb97647f8ac6e24d9ce:log:0', 'hash': '0xc2469904ea686463a396a496e30260120c1a20016072dbb97647f8ac6e24d9ce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0336a7c64e142eafdcfe633e454fa8f28058e599', 'value': 4778.899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0103108bd8ced57b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:10:30.000Z'}}, {'blockNum': '0x8f5584', 'uniqueId': '0x98fed7fbdb9f0e2af4d39bae4c5104347de1a6a10da3398ab414f2c807714cd2:log:31', 'hash': '0x98fed7fbdb9f0e2af4d39bae4c5104347de1a6a10da3398ab414f2c807714cd2', 'from': '0x0336a7c64e142eafdcfe633e454fa8f28058e599', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 4778.899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0103108bd8ced57b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:25:51.000Z'}}, {'blockNum': '0x8f55b7', 'uniqueId': '0xb4d18a459833b37b44effc439a5a01f357e78f7d6cc8094cb542852628123bb1:log:0', 'hash': '0xb4d18a459833b37b44effc439a5a01f357e78f7d6cc8094cb542852628123bb1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1d87155635b6bfabe547efc72b72da6bf0eac7f6', 'value': 18935.2293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04027b1825349c7b4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:37:24.000Z'}}, {'blockNum': '0x8f55dc', 'uniqueId': '0x98fe0918f8e440450a1de4c4eb27d70d9a4ffd3e9f9ca2a18c0b912ddc87c981:log:118', 'hash': '0x98fe0918f8e440450a1de4c4eb27d70d9a4ffd3e9f9ca2a18c0b912ddc87c981', 'from': '0x1d87155635b6bfabe547efc72b72da6bf0eac7f6', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 18935.2293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04027b1825349c7b4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:45:22.000Z'}}, {'blockNum': '0x8f5610', 'uniqueId': '0x903be76a878ae9e6a0b99efdac8c0d36fcdc0af6481935f7199f04b6a3af3371:log:1', 'hash': '0x903be76a878ae9e6a0b99efdac8c0d36fcdc0af6481935f7199f04b6a3af3371', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 38183.79450123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0815f299087477fecc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:56:28.000Z'}}, {'blockNum': '0x8f5612', 'uniqueId': '0x350ae1e0b86d07a0c0e54e90517f0efd25e14f1892f77defba615c6fb6c4ca9d:log:2', 'hash': '0x350ae1e0b86d07a0c0e54e90517f0efd25e14f1892f77defba615c6fb6c4ca9d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 3967.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd70f208b31032a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T01:57:01.000Z'}}, {'blockNum': '0x8f562b', 'uniqueId': '0x1dcd0788a7f9ec042b161a976a4b079e2bc944663abe41bb2a614461fdb8ff57:log:2', 'hash': '0x1dcd0788a7f9ec042b161a976a4b079e2bc944663abe41bb2a614461fdb8ff57', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38183.79450123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0815f299087477fecc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:04:26.000Z'}}, {'blockNum': '0x8f563c', 'uniqueId': '0x9f2d226d3dbd8bb107a6be580ffd797a14c561a9866b8fd739a689aedc956865:log:1', 'hash': '0x9f2d226d3dbd8bb107a6be580ffd797a14c561a9866b8fd739a689aedc956865', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19729.4384217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042d88f5c17dcbf6a800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:08:42.000Z'}}, {'blockNum': '0x8f565b', 'uniqueId': '0xc7b2bd5caded6f75aaffefc87cfe48c575b9fcbf3db86988c7d526e249042cb2:log:35', 'hash': '0xc7b2bd5caded6f75aaffefc87cfe48c575b9fcbf3db86988c7d526e249042cb2', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3967.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd70f208b31032a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:14:42.000Z'}}, {'blockNum': '0x8f565c', 'uniqueId': '0x04697fb0eb7a2718aca4ccb8bdb544d3d28354974d5e7c288a0339bd4842dce3:log:0', 'hash': '0x04697fb0eb7a2718aca4ccb8bdb544d3d28354974d5e7c288a0339bd4842dce3', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19729.4384217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042d88f5c17dcbf6a800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:15:07.000Z'}}, {'blockNum': '0x8f566d', 'uniqueId': '0x8efe72ac3e4ecfbd2f99d4af6932c730818db26c4104d3d2cf51bee81c1d8765:log:0', 'hash': '0x8efe72ac3e4ecfbd2f99d4af6932c730818db26c4104d3d2cf51bee81c1d8765', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:18:14.000Z'}}, {'blockNum': '0x8f566d', 'uniqueId': '0x1956be6093df894870f0c72265bd2f6d28a08d86d1bc3e1dab928e3c8dcc682b:log:1', 'hash': '0x1956be6093df894870f0c72265bd2f6d28a08d86d1bc3e1dab928e3c8dcc682b', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6cec9a87af46e3607278075a0a38dbc64b4e1e9d', 'value': 9999.9811693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e199de34eb1e0c800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:18:14.000Z'}}, {'blockNum': '0x8f5688', 'uniqueId': '0xa9ec616305bdd8bbfe5da23e4a6aeeb692355718e346c1384e3edd076a85f31b:log:47', 'hash': '0xa9ec616305bdd8bbfe5da23e4a6aeeb692355718e346c1384e3edd076a85f31b', 'from': '0x6cec9a87af46e3607278075a0a38dbc64b4e1e9d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9999.9811693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021e199de34eb1e0c800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:24:01.000Z'}}, {'blockNum': '0x8f5688', 'uniqueId': '0x117ac5d706038616c6884535297d0b31a2794f06153b1c793f342a1ad974385a:log:50', 'hash': '0x117ac5d706038616c6884535297d0b31a2794f06153b1c793f342a1ad974385a', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T02:24:01.000Z'}}, {'blockNum': '0x8f5ed8', 'uniqueId': '0x4797a4c1c2e88aaa9d4287ef9e40bc82c3b1e4f5f94bf01a2d1a38073d49532d:log:1', 'hash': '0x4797a4c1c2e88aaa9d4287ef9e40bc82c3b1e4f5f94bf01a2d1a38073d49532d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 12111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029089e35d2c03dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:11:24.000Z'}}, {'blockNum': '0x8f5ed8', 'uniqueId': '0x9d9d79eacb3239d3149289b36c93ab2a7093b8b84a54c5c4670fc90675e8f317:log:2', 'hash': '0x9d9d79eacb3239d3149289b36c93ab2a7093b8b84a54c5c4670fc90675e8f317', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:11:24.000Z'}}, {'blockNum': '0x8f5ed8', 'uniqueId': '0x8cd31b04b508b2e09c37bbc783b6e0e10beb68faeb732b181a24052d40b77660:log:3', 'hash': '0x8cd31b04b508b2e09c37bbc783b6e0e10beb68faeb732b181a24052d40b77660', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4503.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf41f25dfc249d50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:11:24.000Z'}}, {'blockNum': '0x8f5ed8', 'uniqueId': '0xcf19d118073b2b7c6c4938f42abb75411b4d536f10f55c7d5006cb2d7a7bf499:log:4', 'hash': '0xcf19d118073b2b7c6c4938f42abb75411b4d536f10f55c7d5006cb2d7a7bf499', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 19402.58043968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x041bd0e4ee9cacd90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:11:24.000Z'}}, {'blockNum': '0x8f5efd', 'uniqueId': '0xb835ff7eaf0337dcd9eff3c8ae88451c6b3fd0f7b8aeb08613396d05420d3da5:log:0', 'hash': '0xb835ff7eaf0337dcd9eff3c8ae88451c6b3fd0f7b8aeb08613396d05420d3da5', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 3800.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xce0d0e1c990c810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:19:59.000Z'}}, {'blockNum': '0x8f5f13', 'uniqueId': '0x764e5de7c6c72a4e0ce71c78527d6eb69c9533d60db07ef30968d08355bbd1d3:log:32', 'hash': '0x764e5de7c6c72a4e0ce71c78527d6eb69c9533d60db07ef30968d08355bbd1d3', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029089e35d2c03dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:23:59.000Z'}}, {'blockNum': '0x8f5f13', 'uniqueId': '0xb6b18472db3cbd1c1495cb670aaa3bc4ee8244e640bf0cc5c0ea4bbdced61319:log:33', 'hash': '0xb6b18472db3cbd1c1495cb670aaa3bc4ee8244e640bf0cc5c0ea4bbdced61319', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19402.58043968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x041bd0e4ee9cacd90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:23:59.000Z'}}, {'blockNum': '0x8f5f13', 'uniqueId': '0xc282cd8a396671c36ea3c13df411a655230c3d79f96168d253f4d9ce7c479001:log:36', 'hash': '0xc282cd8a396671c36ea3c13df411a655230c3d79f96168d253f4d9ce7c479001', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:23:59.000Z'}}, {'blockNum': '0x8f5f13', 'uniqueId': '0x174a68a2764a0013f9437d80b7a8fd3040c5d178b4603e71121fc553afe5447a:log:42', 'hash': '0x174a68a2764a0013f9437d80b7a8fd3040c5d178b4603e71121fc553afe5447a', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8304.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c22c33fc5b56560000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:23:59.000Z'}}, {'blockNum': '0x8f5f5a', 'uniqueId': '0x39738f2a9975c47d7a13f3650bb8c09567bbfd630568bba4c13a20dcd5d25bd9:log:17', 'hash': '0x39738f2a9975c47d7a13f3650bb8c09567bbfd630568bba4c13a20dcd5d25bd9', 'from': '0xdc5680ffa94a83b297d78952fb0a766df40f196a', 'to': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:38:24.000Z'}}, {'blockNum': '0x8f5f9a', 'uniqueId': '0xb09fc38746d7e756fa63b60cea66d73d8f4c825f8973851aa87549e37cd269f3:log:62', 'hash': '0xb09fc38746d7e756fa63b60cea66d73d8f4c825f8973851aa87549e37cd269f3', 'from': '0x30216cc74cc4cebe96ebd7ed64d39e5cb89ed3a2', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 6667.6712185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01697486be63bc77a800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T10:55:23.000Z'}}, {'blockNum': '0x8f5fea', 'uniqueId': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00:log:193', 'hash': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 361.28276363866036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1395ce375f09c38c21', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:10:43.000Z'}}, {'blockNum': '0x8f5fea', 'uniqueId': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00:log:195', 'hash': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 361.28276363866036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1395ce375f09c38c21', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:10:43.000Z'}}, {'blockNum': '0x8f5fea', 'uniqueId': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00:log:196', 'hash': '0x9972dbf1fb9d0c17adc5f2560d6e9a6179fee39bd3ab02bd6eab60ec277b7d00', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 361.28276363866036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1395ce375f09c38c21', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:10:43.000Z'}}, {'blockNum': '0x8f6007', 'uniqueId': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812:log:53', 'hash': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 595.0204727963962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2041915f746a2e263c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:20:14.000Z'}}, {'blockNum': '0x8f6007', 'uniqueId': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812:log:58', 'hash': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 595.0204727963962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2041915f746a2e263c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:20:14.000Z'}}, {'blockNum': '0x8f6007', 'uniqueId': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812:log:59', 'hash': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 594.9723149594536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2040e648283e0fe6e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:20:14.000Z'}}, {'blockNum': '0x8f6007', 'uniqueId': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812:log:60', 'hash': '0x52c9224700ac24534a69a68668f70c9fb2578a34b42d5ab2eedd854a8d092812', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 594.9723149594536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2040e648283e0fe6e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:20:14.000Z'}}, {'blockNum': '0x8f607a', 'uniqueId': '0x743d157fb0a3dd6603db6c879a213fe173695191da11afa428328d76a54bb8eb:log:3', 'hash': '0x743d157fb0a3dd6603db6c879a213fe173695191da11afa428328d76a54bb8eb', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:47:18.000Z'}}, {'blockNum': '0x8f607a', 'uniqueId': '0xc736e03f5a8a00e3ce70c4d24d728469f45599071dfaaadaa171cd819f61c6e5:log:4', 'hash': '0xc736e03f5a8a00e3ce70c4d24d728469f45599071dfaaadaa171cd819f61c6e5', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 37982.20332759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x080b04f5501aedb47c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:47:18.000Z'}}, {'blockNum': '0x8f607a', 'uniqueId': '0x63517a855935ebaa379c7338b961d880d54ee4a6642d064674eb53ede63377fe:log:5', 'hash': '0x63517a855935ebaa379c7338b961d880d54ee4a6642d064674eb53ede63377fe', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4484.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf3205a0d08cda90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:47:18.000Z'}}, {'blockNum': '0x8f608e', 'uniqueId': '0x9b498c4fb8c494433a4d057acb6015e911bd02662d844336e8c883cb07a3d7a9:log:14', 'hash': '0x9b498c4fb8c494433a4d057acb6015e911bd02662d844336e8c883cb07a3d7a9', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:54:10.000Z'}}, {'blockNum': '0x8f608e', 'uniqueId': '0x84e126dd3faa36524034a1d8d22450e7a4f817af37d6293051cc92f78c893475:log:16', 'hash': '0x84e126dd3faa36524034a1d8d22450e7a4f817af37d6293051cc92f78c893475', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4484.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf3205a0d08cda90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:54:10.000Z'}}, {'blockNum': '0x8f608e', 'uniqueId': '0x72510a69ec67b14408f638933c59d43fdf3a3284cf50f6b4505c217c8989d7c7:log:17', 'hash': '0x72510a69ec67b14408f638933c59d43fdf3a3284cf50f6b4505c217c8989d7c7', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37982.20332759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x080b04f5501aedb47c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:54:10.000Z'}}, {'blockNum': '0x8f6091', 'uniqueId': '0x7c146affa62188363ccc0fdfdd4a4abe1aad17c4b1c886239227fcfe97dc275c:log:6', 'hash': '0x7c146affa62188363ccc0fdfdd4a4abe1aad17c4b1c886239227fcfe97dc275c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19668.6408589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042a3d396c3e7c75c800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:56:09.000Z'}}, {'blockNum': '0x8f609a', 'uniqueId': '0xec122fcade7233a9e087db4c356143ed89def9d93ab97d521f84891a12b59f6d:log:0', 'hash': '0xec122fcade7233a9e087db4c356143ed89def9d93ab97d521f84891a12b59f6d', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19668.6408589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042a3d396c3e7c75c800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T11:58:19.000Z'}}, {'blockNum': '0x8f60be', 'uniqueId': '0xf932c609c624598032ea6f13e6d2cdeaf405b0d8e2984a13205947b58baff92e:log:2', 'hash': '0xf932c609c624598032ea6f13e6d2cdeaf405b0d8e2984a13205947b58baff92e', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:06:37.000Z'}}, {'blockNum': '0x8f60be', 'uniqueId': '0xc88f043bf22cb3c448536ebcdb79da4242178d30a350ef6045c29529af592e6b:log:3', 'hash': '0xc88f043bf22cb3c448536ebcdb79da4242178d30a350ef6045c29529af592e6b', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 12110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02907c02a6785c780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:06:37.000Z'}}, {'blockNum': '0x8f60e4', 'uniqueId': '0xda311ab4db9ce5e056734556363ad9c90d8ddb9db451faa395db507b55959b85:log:19', 'hash': '0xda311ab4db9ce5e056734556363ad9c90d8ddb9db451faa395db507b55959b85', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02907c02a6785c780000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:14:00.000Z'}}, {'blockNum': '0x8f60e4', 'uniqueId': '0x7b58c6fc895ec0a5a2894bb1c274bb28da816b9d682d5918393d0a9e2952b40a:log:20', 'hash': '0x7b58c6fc895ec0a5a2894bb1c274bb28da816b9d682d5918393d0a9e2952b40a', 'from': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:14:00.000Z'}}, {'blockNum': '0x8f60f7', 'uniqueId': '0xd1748b4f0a7437486c7259a677bcc2fb1687042a55bf513e810a1a141188e49f:log:27', 'hash': '0xd1748b4f0a7437486c7259a677bcc2fb1687042a55bf513e810a1a141188e49f', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0x5730031c1ea817f3d9ebec0e109fc1987ec41d6e', 'value': 3083.7869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa72c23e6f25f0d4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T12:19:44.000Z'}}, {'blockNum': '0x8f61b1', 'uniqueId': '0xe97ab758b27f08f869876b0c080801381a0dac72fe26519fd9d8ddece25437c9:log:0', 'hash': '0xe97ab758b27f08f869876b0c080801381a0dac72fe26519fd9d8ddece25437c9', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 3061.3738230942604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa5f518a84024ee8c74', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:08.000Z'}}, {'blockNum': '0x8f61b1', 'uniqueId': '0x0699648f36873a70bb9f65915907dc9792748431bb1f9bdad9a3f36bd6f8f59d:log:5', 'hash': '0x0699648f36873a70bb9f65915907dc9792748431bb1f9bdad9a3f36bd6f8f59d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2817.6519128844634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x98bec67e357257d0b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:08.000Z'}}, {'blockNum': '0x8f61b1', 'uniqueId': '0x0699648f36873a70bb9f65915907dc9792748431bb1f9bdad9a3f36bd6f8f59d:log:7', 'hash': '0x0699648f36873a70bb9f65915907dc9792748431bb1f9bdad9a3f36bd6f8f59d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2817.6519128844634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x98bec67e357257d0b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:08.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0x74acb01dadfc6920787bc4a22944cb269faa5d1f84c119a61af6bf3279a7a8d2:log:1', 'hash': '0x74acb01dadfc6920787bc4a22944cb269faa5d1f84c119a61af6bf3279a7a8d2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2611.1168464743278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8d8c868994147ad290', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1:log:14', 'hash': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1422.3635483932262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d1b426f42325fd95e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1:log:19', 'hash': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1422.3635483932262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d1b426f42325fd95e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1:log:20', 'hash': '0x5a51a39bc74368c24d39964c992bc9e8985de58d57266de00527b71b831efdd1', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1422.5857374256464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4d1e57cf01a0c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765:log:157', 'hash': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2828.9507375775293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x995b93fb6743eeb698', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765:log:159', 'hash': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'value': 2828.9507375775293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x995b93fb6743eeb698', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b2', 'uniqueId': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765:log:164', 'hash': '0xd41e35a397d6f0edffbd2fbe6fe88cece47ed1bf77fe06c09319868a7e623765', 'from': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 2828.9507375775293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x995b93fb6743eeb698', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:00:38.000Z'}}, {'blockNum': '0x8f61b3', 'uniqueId': '0x4403a79fdee1431956a952153c925baf4f6201fa6fb4235c436bb158395c03de:log:188', 'hash': '0x4403a79fdee1431956a952153c925baf4f6201fa6fb4235c436bb158395c03de', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 969.5644606282488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x348f68ebf7fdf9abeb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:09.000Z'}}, {'blockNum': '0x8f61b3', 'uniqueId': '0x4403a79fdee1431956a952153c925baf4f6201fa6fb4235c436bb158395c03de:log:193', 'hash': '0x4403a79fdee1431956a952153c925baf4f6201fa6fb4235c436bb158395c03de', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 969.5644606282488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x348f68ebf7fdf9abeb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:09.000Z'}}, {'blockNum': '0x8f61b5', 'uniqueId': '0xd4069cc7ffec7b1447c86c8c99747a9b5a1221102dc305b5f047ef631a35c897:log:0', 'hash': '0xd4069cc7ffec7b1447c86c8c99747a9b5a1221102dc305b5f047ef631a35c897', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 8241.18198102147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01bec15ff415e6afa63f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:33.000Z'}}, {'blockNum': '0x8f61b5', 'uniqueId': '0x0535ea22450f2a2795c21210b5f55059b35166f7fb8c73ea0156509fbc7639aa:log:2', 'hash': '0x0535ea22450f2a2795c21210b5f55059b35166f7fb8c73ea0156509fbc7639aa', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 3061.3738230942604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa5f518a84024ee8c74', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:33.000Z'}}, {'blockNum': '0x8f61b5', 'uniqueId': '0xa3b6df6c7e2d3b3d1a2fcd967e317759cf6289bfae192c6998f4f77d9849600b:log:12', 'hash': '0xa3b6df6c7e2d3b3d1a2fcd967e317759cf6289bfae192c6998f4f77d9849600b', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3487938e0499840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:33.000Z'}}, {'blockNum': '0x8f61b5', 'uniqueId': '0x65fc40ec1337d501c4164bd96a792b2119a27b57eb6ccb639d5fd02360f185d6:log:13', 'hash': '0x65fc40ec1337d501c4164bd96a792b2119a27b57eb6ccb639d5fd02360f185d6', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 5428.768759358792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01264b4d07c986d2a340', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:33.000Z'}}, {'blockNum': '0x8f61b6', 'uniqueId': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67:log:11', 'hash': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2356.890813040764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7fc46e3b1e2c53eda5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:45.000Z'}}, {'blockNum': '0x8f61b6', 'uniqueId': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67:log:16', 'hash': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 2356.890813040764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7fc46e3b1e2c53eda5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:45.000Z'}}, {'blockNum': '0x8f61b6', 'uniqueId': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67:log:18', 'hash': '0x5acf2fd161f3a75b4b48d5ec3c2eb1cce0f59de6ce3949b8a66b40cbabf1ed67', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 2356.890813040764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7fc46e3b1e2c53eda5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:01:45.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0x77cb6fd6e7c4e11b424386da9f7e05b4fc372a8dfd8a22e9fb572e254cb29011:log:28', 'hash': '0x77cb6fd6e7c4e11b424386da9f7e05b4fc372a8dfd8a22e9fb572e254cb29011', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 5428.768759358792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01264b4d07c986d2a340', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0x0427778c4ba41ddc9f4a4ae8f446b933097310fc8bba611c8653e86b58ca145e:log:29', 'hash': '0x0427778c4ba41ddc9f4a4ae8f446b933097310fc8bba611c8653e86b58ca145e', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2541.390791356247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x89c4e1d3df7dfc2811', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8:log:134', 'hash': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8:log:136', 'hash': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x01da73c4ec1355f953ad0aaca3ef20e342aea92a', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b7', 'uniqueId': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8:log:142', 'hash': '0xed4223dfc6dfba054732cd084b08af37e41829184cf8448b332194ba6f3f83b8', 'from': '0x01da73c4ec1355f953ad0aaca3ef20e342aea92a', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:00.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94:log:36', 'hash': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 656.3935593604075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23954a6084235de179', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94:log:41', 'hash': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 656.3935593604075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23954a6084235de179', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94:log:42', 'hash': '0xd7f4342a9f7e7dab298ee62dad9bd87368e44293a54bca93a3e5d2c909969a94', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 656.3935593604075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23954a6084235de179', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xeec4b833dcce68e007f4af6e5acd5ace765c12903725934da69d3a726c7d0df7:log:44', 'hash': '0xeec4b833dcce68e007f4af6e5acd5ace765c12903725934da69d3a726c7d0df7', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1261.8044970789997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x44670e18c44031839c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44:log:58', 'hash': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 649.0852084928102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x232fdde61f9650b6a6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44:log:63', 'hash': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 649.0852084928102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x232fdde61f9650b6a6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b8', 'uniqueId': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44:log:64', 'hash': '0xfa115269747348d4494f95131e1a149dc8ea034467c868b88579f41fa0162f44', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 649.0852084928102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x232fdde61f9650b6a6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:06.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xd135736a43a690b4d26d0954b5aeae9f5396a62afbedf5cce61c370cf798ecd4:log:0', 'hash': '0xd135736a43a690b4d26d0954b5aeae9f5396a62afbedf5cce61c370cf798ecd4', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2452.764361209665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x84f6f17f37b7fc3740', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346:log:13', 'hash': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1591.7799014482475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x564a623ac17d1742e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346:log:18', 'hash': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 1591.7799014482475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x564a623ac17d1742e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346:log:20', 'hash': '0x82f6371afaafe3ba96ae91fd5ad7c503494b31e00886ce2218bbc91d1fdba346', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1591.7799014482475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x564a623ac17d1742e9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xdd999e64337f15e629a5370abf32681eb747e5503a70f612deb372d7c8e0ab79:log:35', 'hash': '0xdd999e64337f15e629a5370abf32681eb747e5503a70f612deb372d7c8e0ab79', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 5353.804013018926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01223af4c02bddd92b10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x747b27d90a50bc3972d384ee24ac8b0ec7874cc7967eecf862df17e210d6e3b0:log:89', 'hash': '0x747b27d90a50bc3972d384ee24ac8b0ec7874cc7967eecf862df17e210d6e3b0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 7167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0184861aef9b489c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xec0a714c9768dbd75220a3a0fe88c44af421da0e24014749bc529173074ed874:log:106', 'hash': '0xec0a714c9768dbd75220a3a0fe88c44af421da0e24014749bc529173074ed874', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1219.3554604844267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4219f4d2e3731c5aed', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece:log:140', 'hash': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece:log:142', 'hash': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece:log:147', 'hash': '0x80272aedc98dbbc5aa518fde8041d9d484620ccd1b2ddf4cd28124e7b58c8ece', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151:log:159', 'hash': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151:log:161', 'hash': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61b9', 'uniqueId': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151:log:166', 'hash': '0xf216382e0954f5e5f54e8bfc90dc14e3b55071f8839c33a923484f596f299151', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 941.4282961217658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3308f12f6bff1b00f5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:20.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x55388dc4277867ee3b9adfa3f3bf4b4f619aeda0389b26fca0231a259020d77d:log:9', 'hash': '0x55388dc4277867ee3b9adfa3f3bf4b4f619aeda0389b26fca0231a259020d77d', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 2452.764361209665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x84f6f17f37b7fc3740', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x4c252c1877aac2fd93027a856f9dbf064ee0a785e0f926847e6fe146d2a37dec:log:18', 'hash': '0x4c252c1877aac2fd93027a856f9dbf064ee0a785e0f926847e6fe146d2a37dec', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 499.5697117706035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b14ec260587198517', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x12646eda99adcab879e075d65730da4a24139059b68273053557dd15d262d691:log:33', 'hash': '0x12646eda99adcab879e075d65730da4a24139059b68273053557dd15d262d691', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1223.8609468226473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42587b86d78d2049ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41:log:41', 'hash': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 545.0165144538103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d8b9fa04644e9e139', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41:log:46', 'hash': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'value': 545.0165144538103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d8b9fa04644e9e139', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61bb', 'uniqueId': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41:log:48', 'hash': '0x8526dd0dbbdf5072820612ecb7cf66162eb3009c2008427363c14f97a7889c41', 'from': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 545.0165144538103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d8b9fa04644e9e139', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:02:51.000Z'}}, {'blockNum': '0x8f61be', 'uniqueId': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda:log:88', 'hash': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 295.3347770444899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x100297e6f8a40224b4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:03:00.000Z'}}, {'blockNum': '0x8f61be', 'uniqueId': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda:log:93', 'hash': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 295.3347770444899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x100297e6f8a40224b4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:03:00.000Z'}}, {'blockNum': '0x8f61be', 'uniqueId': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda:log:94', 'hash': '0x666085571f4444561d97fd63fdd1d46f07834d772ed5393bee4ff5376d953bda', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 295.3347656327517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x100297dc97a3690000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:03:00.000Z'}}, {'blockNum': '0x8f61c2', 'uniqueId': '0x5a194038a2ec96af1f6a2c3f3eb973192a8be1050d02bc66bb436a4a172776a3:log:17', 'hash': '0x5a194038a2ec96af1f6a2c3f3eb973192a8be1050d02bc66bb436a4a172776a3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 4654.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xfc5317d98c0f9d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:01.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x8d875d1cca7005f92d3bdbdeaaae5cefd8bbcd6c4e6e3696585bc5039a2f4dd5:log:0', 'hash': '0x8d875d1cca7005f92d3bdbdeaaae5cefd8bbcd6c4e6e3696585bc5039a2f4dd5', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'value': 2391.683128676547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x81a7455dd9dc6faf33', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf:log:20', 'hash': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 533.6529977428285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cedec4e0847a0bd04', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf:log:25', 'hash': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'value': 533.6529977428285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cedec4e0847a0bd04', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf:log:27', 'hash': '0x9cbc747a657636943662ad08cb908cb757d9e426cb362a96c3f921caa32bbdcf', 'from': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 533.6529977428285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1cedec4e0847a0bd04', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c4', 'uniqueId': '0x6e922eafc6b6f0e30db3dddf670c9f049c0c91371584099b67f61e627a04c334:log:61', 'hash': '0x6e922eafc6b6f0e30db3dddf670c9f049c0c91371584099b67f61e627a04c334', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 379.74425065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14960297feb2268400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:29.000Z'}}, {'blockNum': '0x8f61c5', 'uniqueId': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160:log:11', 'hash': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 842.0032322254481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2da5246695b091cbc0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:41.000Z'}}, {'blockNum': '0x8f61c5', 'uniqueId': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160:log:16', 'hash': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 842.0032322254481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2da5246695b091cbc0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:41.000Z'}}, {'blockNum': '0x8f61c5', 'uniqueId': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160:log:17', 'hash': '0x5b2b349892e1508dac398b75872f6208278c843aa6543e25c08b5f8df38c4160', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 842.0767880259197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2da629b9320eda0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:41.000Z'}}, {'blockNum': '0x8f61c5', 'uniqueId': '0xb69b0ee91dea3d770d0d9b6ba4957cd7aaae9b787f68034038620136ebe00979:log:37', 'hash': '0xb69b0ee91dea3d770d0d9b6ba4957cd7aaae9b787f68034038620136ebe00979', 'from': '0x4a243aacbf35be0f4e9fbf254d25e4a01847b99d', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 2391.683128676547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x81a7455dd9dc6faf33', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:41.000Z'}}, {'blockNum': '0x8f61c6', 'uniqueId': '0x14fc3edde23a8ab5ffe53e129c1ae875725483be5cd6e50fc541df4a24d69220:log:4', 'hash': '0x14fc3edde23a8ab5ffe53e129c1ae875725483be5cd6e50fc541df4a24d69220', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3952.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd64697d4c036c50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:04:52.000Z'}}, {'blockNum': '0x8f61c9', 'uniqueId': '0x532d4338ddb412cdff5909c1de996ef79a56867887b6a50ff9b7f19152c966f7:log:71', 'hash': '0x532d4338ddb412cdff5909c1de996ef79a56867887b6a50ff9b7f19152c966f7', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 839.3031443654762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d7fabc2fb549a8339', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:05:25.000Z'}}, {'blockNum': '0x8f61c9', 'uniqueId': '0x532d4338ddb412cdff5909c1de996ef79a56867887b6a50ff9b7f19152c966f7:log:76', 'hash': '0x532d4338ddb412cdff5909c1de996ef79a56867887b6a50ff9b7f19152c966f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 839.3031443654762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d7fabc2fb549a8339', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:05:25.000Z'}}, {'blockNum': '0x8f61cb', 'uniqueId': '0x1d0d65d2ff6cff5ac0cd17102f5f9056747914c28da3c4cb0483d76494e8ad0d:log:4', 'hash': '0x1d0d65d2ff6cff5ac0cd17102f5f9056747914c28da3c4cb0483d76494e8ad0d', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d7b76c6c998bc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:05:48.000Z'}}, {'blockNum': '0x8f61cf', 'uniqueId': '0x4387cbf54ed4837e700e90ffb1a957594158cdb377c17423d53cbe6fe8889cc6:log:2', 'hash': '0x4387cbf54ed4837e700e90ffb1a957594158cdb377c17423d53cbe6fe8889cc6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 7413.3638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0191e116fa6a4bfd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:06:39.000Z'}}, {'blockNum': '0x8f61d0', 'uniqueId': '0x5d6f9246ff92a392138f6c4727208ac1a22ae34baabda94bd615c3c502c4a0f6:log:4', 'hash': '0x5d6f9246ff92a392138f6c4727208ac1a22ae34baabda94bd615c3c502c4a0f6', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'value': 19995.6313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043bf720d5f476404000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:06:45.000Z'}}, {'blockNum': '0x8f61d2', 'uniqueId': '0x64f4e40398b6456b2376fa867bb6bbe7e63143ba7f2ef493dc50dec1c9627dfd:log:11', 'hash': '0x64f4e40398b6456b2376fa867bb6bbe7e63143ba7f2ef493dc50dec1c9627dfd', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x0f0e13770e415e86e99385fde42a7f28faa1e645', 'value': 1929.94752461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x689f66f85523819400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:07:04.000Z'}}, {'blockNum': '0x8f61d7', 'uniqueId': '0x791131f04da6df4206a97bfb75fb92f12b0bd6ca146ec1bcd99bbc8e4242fdef:log:15', 'hash': '0x791131f04da6df4206a97bfb75fb92f12b0bd6ca146ec1bcd99bbc8e4242fdef', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 19995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043bee5e01f31f8c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:08:28.000Z'}}, {'blockNum': '0x8f61d7', 'uniqueId': '0x61255a32b711e746c47b18759fdc906685c09b963294acd0c169638fd61d4660:log:16', 'hash': '0x61255a32b711e746c47b18759fdc906685c09b963294acd0c169638fd61d4660', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'value': 15601.28900255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034dbf60d8a5c1129c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:08:28.000Z'}}, {'blockNum': '0x8f61e2', 'uniqueId': '0x496bf00f186686ddcdff763ced3da8ff781c75c5ee6437121dc0849b18353674:log:58', 'hash': '0x496bf00f186686ddcdff763ced3da8ff781c75c5ee6437121dc0849b18353674', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 14995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x032ce16d9d15c66c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:12:25.000Z'}}, {'blockNum': '0x8f61e4', 'uniqueId': '0xdbf36140fbf458978b1cf17506e8265979b2adf560955fcd6e728f74808b119c:log:3', 'hash': '0xdbf36140fbf458978b1cf17506e8265979b2adf560955fcd6e728f74808b119c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2823.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9912921672fec10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:12:54.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0x9c661ac49cd95a31a2d3eb63b58f3b076d156b170d830fcff6c9d462a041cab7:log:1', 'hash': '0x9c661ac49cd95a31a2d3eb63b58f3b076d156b170d830fcff6c9d462a041cab7', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0184861aef9b489c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0x158d98495e1021acaf4bbdf1f078bf47bc000ddc55922bd6c8cdfa983f020f8f:log:2', 'hash': '0x158d98495e1021acaf4bbdf1f078bf47bc000ddc55922bd6c8cdfa983f020f8f', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0768cfcb9f08e5f80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0x8970893f0bbb39d9a8f64d8d11c7ac701a44cabee95462324aab055e24ab6944:log:3', 'hash': '0x8970893f0bbb39d9a8f64d8d11c7ac701a44cabee95462324aab055e24ab6944', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4654.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xfc5317d98c0f9d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0xb8fb7856ae72e991dfb687bef2e699e44e6a38c31260f4f4e5d830cbb3fefad4:log:4', 'hash': '0xb8fb7856ae72e991dfb687bef2e699e44e6a38c31260f4f4e5d830cbb3fefad4', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21055.78902162272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04756fc5acd07fea5803', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0xc5f84e5d44809b94aa443b2525fa2cc037fe494ecd50c5b73839331db67110d4:log:5', 'hash': '0xc5f84e5d44809b94aa443b2525fa2cc037fe494ecd50c5b73839331db67110d4', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3705.0209043860737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc8d97e727f406e2888', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61e9', 'uniqueId': '0x1e15ec039a384c8efbdb489414f19a04822589020ce7efb923741dd26134ff04:log:8', 'hash': '0x1e15ec039a384c8efbdb489414f19a04822589020ce7efb923741dd26134ff04', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 379.74425065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x14960297feb2268400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:04.000Z'}}, {'blockNum': '0x8f61ea', 'uniqueId': '0x8a538b81563c5f123f59699e82655e2271e0ff60045cca7ef15903f087249189:log:0', 'hash': '0x8a538b81563c5f123f59699e82655e2271e0ff60045cca7ef15903f087249189', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'value': 11044.10765199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0256b3c8534b75605c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:14:22.000Z'}}, {'blockNum': '0x8f61f7', 'uniqueId': '0x729f27b3c571a56c220ef40dacae547879717e72ad765a32c449705320724c21:log:11', 'hash': '0x729f27b3c571a56c220ef40dacae547879717e72ad765a32c449705320724c21', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 25287.15247037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x055ad1bc7ab9c95b5400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:16:09.000Z'}}, {'blockNum': '0x8f61f7', 'uniqueId': '0xeb0a98e748e0434e793d247deefea476ec2f636447e26720d0e574d39732a449:log:12', 'hash': '0xeb0a98e748e0434e793d247deefea476ec2f636447e26720d0e574d39732a449', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x73a829cc7c1d25eabbcdcc5a25997c1a0bd4e21f', 'value': 4361.9700748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec767ec0529a12e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:16:09.000Z'}}, {'blockNum': '0x8f61f7', 'uniqueId': '0xdacf4fffd16d88f537cc66c9e03de8a5a1a32eef4fa7aa9d100fd0b7838f8c9b:log:121', 'hash': '0xdacf4fffd16d88f537cc66c9e03de8a5a1a32eef4fa7aa9d100fd0b7838f8c9b', 'from': '0x0f0e13770e415e86e99385fde42a7f28faa1e645', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 2316.91822636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7d99b31350c7e33000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:16:09.000Z'}}, {'blockNum': '0x8f61f7', 'uniqueId': '0xc09c479f99128e4e68d3c9efd0788a3f1bd563ce7684efa0c2326fd3c4745fd8:log:149', 'hash': '0xc09c479f99128e4e68d3c9efd0788a3f1bd563ce7684efa0c2326fd3c4745fd8', 'from': '0x5769b4b1c9494335b295d44a66eb1fe41e78a423', 'to': '0x88d531da71124781791532a36ea8395529577cae', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:16:09.000Z'}}, {'blockNum': '0x8f61ff', 'uniqueId': '0xf707a26b7d798c59ad4a2be0ad4efc0358616f035c3d8bc5270c37027613ce9b:log:15', 'hash': '0xf707a26b7d798c59ad4a2be0ad4efc0358616f035c3d8bc5270c37027613ce9b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 6423.42342816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c36e84727d6ae8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:18:39.000Z'}}, {'blockNum': '0x8f6201', 'uniqueId': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395:log:21', 'hash': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 486.1068083258246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1a5a164eab07acbca2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:19:18.000Z'}}, {'blockNum': '0x8f6201', 'uniqueId': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395:log:23', 'hash': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 486.1068083258246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1a5a164eab07acbca2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:19:18.000Z'}}, {'blockNum': '0x8f6201', 'uniqueId': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395:log:28', 'hash': '0xc4f0ad84de5c5dcd85f35950e3bea1799bd25b8ca5daf490122005923e465395', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 486.1063222190163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1a5a14948e780aa5e1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:19:18.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6:log:50', 'hash': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 621.2254824028387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21ad3c44da09e10494', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6:log:52', 'hash': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 621.2254824028387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21ad3c44da09e10494', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6:log:57', 'hash': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 620.643265455882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21a527d19f88500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6:log:59', 'hash': '0x74ce2955be76f08126886df495a35a9824fcd8249ff65fa2744dbafd1b6386a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 620.643265455882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21a527d19f88500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327:log:114', 'hash': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 430.3759575103771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1754aa8d204aa21e23', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327:log:116', 'hash': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 430.3759575103771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1754aa8d204aa21e23', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f620d', 'uniqueId': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327:log:121', 'hash': '0x266ff1132f20c348ca9f30d284d9eab2b8bb1868ce66be3987ab7c35a1fc4327', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 429.9721761249215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x174f1008186ba3b6b4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:21:21.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87:log:30', 'hash': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 311.36656523072304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10e1144162f6bdb696', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87:log:32', 'hash': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 311.36656523072304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10e1144162f6bdb696', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87:log:37', 'hash': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 311.36625386415784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10e11326334939be13', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87:log:39', 'hash': '0xfa08b611bf7ce4793b3d61c512e1fff8d503c44dd48c622d86738344abb5fc87', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 311.36625386415784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10e11326334939be13', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981:log:54', 'hash': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 559.2798171103403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e51910e786b4562f8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981:log:56', 'hash': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 559.2798171103403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e51910e786b4562f8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981:log:61', 'hash': '0xeb5ea462cd665c82d0793e196be36a028531452229d672056495a2488d052981', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 559.2792578305232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1e518f11cef0712fb4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0x7bc1c3d2293038fd2f00637a805424e5ffa08422347d536dff261c55f4694015:log:151', 'hash': '0x7bc1c3d2293038fd2f00637a805424e5ffa08422347d536dff261c55f4694015', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7413.3638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0191e116fa6a4bfd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xe51a7decbf9a59042f165144b289a5d01e08af33484f3c76fe3beb5e5c42cf6f:log:152', 'hash': '0xe51a7decbf9a59042f165144b289a5d01e08af33484f3c76fe3beb5e5c42cf6f', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31710.57589853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x06b708a4c1e1a009d400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0xd3a525fc7bb549ef60bb4921a6f1ff24387369ee1df8d9dc3df457f7b78c3bee:log:153', 'hash': '0xd3a525fc7bb549ef60bb4921a6f1ff24387369ee1df8d9dc3df457f7b78c3bee', 'from': '0x5f303ac5e61a84a5750c83a44dd80a33f0c8c72f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19995.6313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x043bf720d5f476404000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0x9ff7a56dee550812e157393853987667c7a72caaaed531d52393ba406797e2da:log:154', 'hash': '0x9ff7a56dee550812e157393853987667c7a72caaaed531d52393ba406797e2da', 'from': '0x73a829cc7c1d25eabbcdcc5a25997c1a0bd4e21f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4361.9700748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec767ec0529a12e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0x17d521d4a8fc94549dd3ae90323e709f577a9fd5f88144f47dc8661372e6659a:log:155', 'hash': '0x17d521d4a8fc94549dd3ae90323e709f577a9fd5f88144f47dc8661372e6659a', 'from': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26645.39665454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05a473292bf13672f800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6217', 'uniqueId': '0x8ac219072d3314e6af5e28afe765cd3d4de69c8bb32844c54163d3e23747a03e:log:156', 'hash': '0x8ac219072d3314e6af5e28afe765cd3d4de69c8bb32844c54163d3e23747a03e', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x62030a54ce32400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:23:47.000Z'}}, {'blockNum': '0x8f6218', 'uniqueId': '0xf8400769f6d19a61eec9112306e36192b2bbf5736653a0c36358285d172cc1ae:log:16', 'hash': '0xf8400769f6d19a61eec9112306e36192b2bbf5736653a0c36358285d172cc1ae', 'from': '0x88d531da71124781791532a36ea8395529577cae', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:24.000Z'}}, {'blockNum': '0x8f6219', 'uniqueId': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2:log:162', 'hash': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 425.78815018059015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1714ff62aabcbffedc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:25.000Z'}}, {'blockNum': '0x8f6219', 'uniqueId': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2:log:164', 'hash': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 425.78815018059015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1714ff62aabcbffedc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:25.000Z'}}, {'blockNum': '0x8f6219', 'uniqueId': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2:log:169', 'hash': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 425.7881501805902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1714ff62aabcc10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:25.000Z'}}, {'blockNum': '0x8f6219', 'uniqueId': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2:log:171', 'hash': '0xd46f617fadfe8a0aebaa95959fcb6a1db61a3baf18278927ff34faf92acf27e2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 425.7881501805902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1714ff62aabcc10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:25.000Z'}}, {'blockNum': '0x8f621a', 'uniqueId': '0x272e4c436b03b6ca8850826612a7951fb6d1afe71526b82c84a87a3a7a98e83f:log:1', 'hash': '0x272e4c436b03b6ca8850826612a7951fb6d1afe71526b82c84a87a3a7a98e83f', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 7229.35766306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0187e77ddbc64b684800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:34.000Z'}}, {'blockNum': '0x8f621a', 'uniqueId': '0xc30d48a508bf500aa0691be98d55a0836c232e29e6fd9bc0b2c2bd50d2e4f8f3:log:3', 'hash': '0xc30d48a508bf500aa0691be98d55a0836c232e29e6fd9bc0b2c2bd50d2e4f8f3', 'from': '0x0d9a115b6c0688bbf5b41d17452e31688f3ce013', 'to': '0xbd70f3578f88a051ff7b56dfaf125abb65de27a3', 'value': 212244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2cf1c5320b17e7d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:24:34.000Z'}}, {'blockNum': '0x8f621f', 'uniqueId': '0xb6f81143cca5fec3a85b5414e1e4d739bdd25db55397a1e1248480ef4cd40652:log:4', 'hash': '0xb6f81143cca5fec3a85b5414e1e4d739bdd25db55397a1e1248480ef4cd40652', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1731.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5de006c01cf8310000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:27:15.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb:log:52', 'hash': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 686.039716223742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2530b6af1c7dedba10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb:log:54', 'hash': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'value': 686.039716223742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2530b6af1c7dedba10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb:log:59', 'hash': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb', 'from': '0x1200563cfaeb481e1f0542a246f0cefcde4c4753', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 686.039716223742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2530b6af1c7dedba10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb:log:61', 'hash': '0x1fbbc9c4a8db3b4b1d49930897d68cdf4fa7212b5d4f8ad11e4eb0c83689adcb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 686.039716223742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2530b6af1c7dedba10', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92:log:73', 'hash': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 503.3459045733044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b4953e15e5779cb23', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92:log:75', 'hash': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 503.3459045733044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b4953e15e5779cb23', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f6221', 'uniqueId': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92:log:80', 'hash': '0xbb9c0d1cd1c9ba2b5df777520245b09dee7baa5cb11d1987dd259d7bb220bf92', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 503.3454012273998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b49521793fda26faa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:28:23.000Z'}}, {'blockNum': '0x8f623a', 'uniqueId': '0x2c14cea5acec35e9285f83641240caef3c61e5f3ee2e5171e88c8f828deeb1bd:log:1', 'hash': '0x2c14cea5acec35e9285f83641240caef3c61e5f3ee2e5171e88c8f828deeb1bd', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 4997.55783126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010eeb0c1155b3dc9800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:33:43.000Z'}}, {'blockNum': '0x8f623a', 'uniqueId': '0x9aee15b13ed0e12bf522145cb4a06fe98c29dc7e98e1dc42c7a2c5e315f4b150:log:34', 'hash': '0x9aee15b13ed0e12bf522145cb4a06fe98c29dc7e98e1dc42c7a2c5e315f4b150', 'from': '0xbd70f3578f88a051ff7b56dfaf125abb65de27a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 212244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2cf1c5320b17e7d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:33:43.000Z'}}, {'blockNum': '0x8f6242', 'uniqueId': '0x7d03efcc41911473d8ccbff3a83a823d31a1a823722ab43c05afbd2a1d3422ab:log:19', 'hash': '0x7d03efcc41911473d8ccbff3a83a823d31a1a823722ab43c05afbd2a1d3422ab', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 499.5697117706035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b14ec260587198517', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:36:04.000Z'}}, {'blockNum': '0x8f6254', 'uniqueId': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625:log:50', 'hash': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 738.9909139301296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x280f8f20e0b6a4c613', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:39:05.000Z'}}, {'blockNum': '0x8f6254', 'uniqueId': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625:log:52', 'hash': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 738.9909139301296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x280f8f20e0b6a4c613', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:39:05.000Z'}}, {'blockNum': '0x8f6254', 'uniqueId': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625:log:57', 'hash': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 738.9909139301295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x280f8f20e0b6a40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:39:05.000Z'}}, {'blockNum': '0x8f6254', 'uniqueId': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625:log:59', 'hash': '0x3460943a5a1c94ecbefc2158904010b39d422a85e5eeab9fd354856e3bb7d625', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 738.9909139301295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x280f8f20e0b6a40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:39:05.000Z'}}, {'blockNum': '0x8f625f', 'uniqueId': '0xb767bd2816b8c1a19249a8da5557acebf5d653c3fdcb0340feb174a09097c061:log:0', 'hash': '0xb767bd2816b8c1a19249a8da5557acebf5d653c3fdcb0340feb174a09097c061', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 632907.3933663494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8605fa81d39bf961ce90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:11.000Z'}}, {'blockNum': '0x8f6260', 'uniqueId': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0:log:40', 'hash': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 450.49800159057645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186bea699b1dabc9dd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:16.000Z'}}, {'blockNum': '0x8f6260', 'uniqueId': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0:log:42', 'hash': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 450.49800159057645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186bea699b1dabc9dd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:16.000Z'}}, {'blockNum': '0x8f6260', 'uniqueId': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0:log:47', 'hash': '0xb59b7fa49aeb2552130501bf0e1d3912e7f208df80e12b8ef1c063668f88bea0', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 450.4975510925749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186be8cfe1605070ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:16.000Z'}}, {'blockNum': '0x8f6261', 'uniqueId': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2:log:146', 'hash': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 599.7510583705698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x208337c9f88261a29f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:28.000Z'}}, {'blockNum': '0x8f6261', 'uniqueId': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2:log:148', 'hash': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 599.7510583705698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x208337c9f88261a29f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:28.000Z'}}, {'blockNum': '0x8f6261', 'uniqueId': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2:log:153', 'hash': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 599.7504586195114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x208335a8801597f295', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:28.000Z'}}, {'blockNum': '0x8f6261', 'uniqueId': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2:log:155', 'hash': '0x14b8bdf3f946973f46a7d6a314f3281aed97c7eff85f538dfacc447e0b877dc2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 599.7504586195114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x208335a8801597f295', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:41:28.000Z'}}, {'blockNum': '0x8f6266', 'uniqueId': '0xd38e796124e524442ae15760471efa17b613c64fd34722e1a8dcb6d2d63376a6:log:0', 'hash': '0xd38e796124e524442ae15760471efa17b613c64fd34722e1a8dcb6d2d63376a6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2486.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x86cdc193f3a41d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:07.000Z'}}, {'blockNum': '0x8f6266', 'uniqueId': '0x808b9b66905b70cce47f523791b25eecf7c2e111e6c7a29a69de9b5eb9c886dc:log:3', 'hash': '0x808b9b66905b70cce47f523791b25eecf7c2e111e6c7a29a69de9b5eb9c886dc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1308.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x46f1b8dd4361f50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:07.000Z'}}, {'blockNum': '0x8f6269', 'uniqueId': '0x684fc2f50663d8885bcb5a8ada8625b4b3b2ebc9daf91c44f74af425b6a19961:log:6', 'hash': '0x684fc2f50663d8885bcb5a8ada8625b4b3b2ebc9daf91c44f74af425b6a19961', 'from': '0xdc5680ffa94a83b297d78952fb0a766df40f196a', 'to': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'value': 360000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4c3ba39c5e4111000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:52.000Z'}}, {'blockNum': '0x8f6269', 'uniqueId': '0x38ad95a23de510de020d63c60f036cf00329fd479fcec09791b26450f299f264:log:15', 'hash': '0x38ad95a23de510de020d63c60f036cf00329fd479fcec09791b26450f299f264', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1308.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x46f1b8dd4361f50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:52.000Z'}}, {'blockNum': '0x8f6269', 'uniqueId': '0x38ad95a23de510de020d63c60f036cf00329fd479fcec09791b26450f299f264:log:17', 'hash': '0x38ad95a23de510de020d63c60f036cf00329fd479fcec09791b26450f299f264', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1308.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x46f1b8dd4361f50000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:42:52.000Z'}}, {'blockNum': '0x8f626d', 'uniqueId': '0x606428bf1764a7fb463eddb1b27ac4483d622db33f1b391466a405217366ea79:log:30', 'hash': '0x606428bf1764a7fb463eddb1b27ac4483d622db33f1b391466a405217366ea79', 'from': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12226.91549432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0296d289ed1bff44e000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:44:26.000Z'}}, {'blockNum': '0x8f6298', 'uniqueId': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965:log:44', 'hash': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 455.20608765493415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18ad40e4efdbadde2e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:54:25.000Z'}}, {'blockNum': '0x8f6298', 'uniqueId': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965:log:46', 'hash': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 455.20608765493415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18ad40e4efdbadde2e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:54:25.000Z'}}, {'blockNum': '0x8f6298', 'uniqueId': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965:log:51', 'hash': '0x324fcef7463ea6b9c1b750cc706fcbc4e177467fcce592d9a2807fdaaf2dd965', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 455.20563244884653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18ad3f46edee866017', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:54:25.000Z'}}, {'blockNum': '0x8f629d', 'uniqueId': '0x43af6bde48a9b4150da1e9df6e10d2386bf7fd150b04811cbaddf620bf079862:log:0', 'hash': '0x43af6bde48a9b4150da1e9df6e10d2386bf7fd150b04811cbaddf620bf079862', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'value': 6832.5354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01726479f9f9d97e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:27.000Z'}}, {'blockNum': '0x8f629d', 'uniqueId': '0xe62a90de7a5acc16f4e1b1182153194bb729fa22fc2a98ea76698ec2b78f59a3:log:2', 'hash': '0xe62a90de7a5acc16f4e1b1182153194bb729fa22fc2a98ea76698ec2b78f59a3', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x65deb91454617008ebd9be734d22f9b478e3d4e5', 'value': 10539.46992735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x023b5886fa6b80c99c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:27.000Z'}}, {'blockNum': '0x8f629d', 'uniqueId': '0xcf5ecdd28c49b5a40f3ae1671fd549655dc729542c4d811c35778e4dfe13bc21:log:4', 'hash': '0xcf5ecdd28c49b5a40f3ae1671fd549655dc729542c4d811c35778e4dfe13bc21', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 16271.4656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x037213f26947cc480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:27.000Z'}}, {'blockNum': '0x8f629d', 'uniqueId': '0x7e091cc876510a6ed445235448ce577dcd29a37d2552e5f2bf688b8f85a8746d:log:7', 'hash': '0x7e091cc876510a6ed445235448ce577dcd29a37d2552e5f2bf688b8f85a8746d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:27.000Z'}}, {'blockNum': '0x8f629e', 'uniqueId': '0x60d6c4841f684307e9c948fecdf90a0a37e25d150bc1c1d624e7c272d63486c1:log:0', 'hash': '0x60d6c4841f684307e9c948fecdf90a0a37e25d150bc1c1d624e7c272d63486c1', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x896b6d82d0ba81dd27c16f6956e55371278e9dcc', 'value': 10391.4198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x023351eb43ff90b18000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:31.000Z'}}, {'blockNum': '0x8f629e', 'uniqueId': '0x3fc291baba25c9000a319e2e166acfd0cb02c2f423ce4812d06f3341820a5fac:log:1', 'hash': '0x3fc291baba25c9000a319e2e166acfd0cb02c2f423ce4812d06f3341820a5fac', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:31.000Z'}}, {'blockNum': '0x8f629e', 'uniqueId': '0x1f4f3026d10a4edf6092defb5d54a925e1d156bb7a3fa20e171c0913ef94a700:log:2', 'hash': '0x1f4f3026d10a4edf6092defb5d54a925e1d156bb7a3fa20e171c0913ef94a700', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xc0e9e730e308e506e78280cc98042feca794745f', 'value': 66910.1132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e2b345a6a6d474b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:31.000Z'}}, {'blockNum': '0x8f629e', 'uniqueId': '0x67dd3a455668cfa7d2458ca0acd837f5e795484632f1708cfb924622ea66945e:log:3', 'hash': '0x67dd3a455668cfa7d2458ca0acd837f5e795484632f1708cfb924622ea66945e', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 12109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02906e21efc4b5140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:55:31.000Z'}}, {'blockNum': '0x8f62a0', 'uniqueId': '0x7f7b1342e3b2bedd11016b31bcce252bf0ed50ebf0f8d4443aaf06331ae42c5d:log:1', 'hash': '0x7f7b1342e3b2bedd11016b31bcce252bf0ed50ebf0f8d4443aaf06331ae42c5d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 19723.74806541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042d39fd8c982d1a9400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:56:04.000Z'}}, {'blockNum': '0x8f62a0', 'uniqueId': '0x2baed909b80ff5c644ec0720758aa8a308de5146c7b4c4fa93a7f21895b7f316:log:2', 'hash': '0x2baed909b80ff5c644ec0720758aa8a308de5146c7b4c4fa93a7f21895b7f316', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4498.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf3e3c0426f73290000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:56:04.000Z'}}, {'blockNum': '0x8f62a0', 'uniqueId': '0xbb528fdf0350c189c1a94d553ce110ec9ed83dd18641049511939fd080d52b38:log:3', 'hash': '0xbb528fdf0350c189c1a94d553ce110ec9ed83dd18641049511939fd080d52b38', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T13:56:04.000Z'}}, {'blockNum': '0x8f62b4', 'uniqueId': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7:log:97', 'hash': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 508.96937633074793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b975e772332575dad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:01:07.000Z'}}, {'blockNum': '0x8f62b4', 'uniqueId': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7:log:99', 'hash': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 508.96937633074793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b975e772332575dad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:01:07.000Z'}}, {'blockNum': '0x8f62b4', 'uniqueId': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7:log:104', 'hash': '0xb3c6fd94c6be340275cf65fe08f695d249f9fbd566eb2a7a896ea4036772b3a7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 508.9693763307479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b975e772332560000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:01:07.000Z'}}, {'blockNum': '0x8f62bc', 'uniqueId': '0xae61c69d061258d7f084c9ee584b6384a3a7a2d0c1b3ab9b300b8e97c0b72c3d:log:5', 'hash': '0xae61c69d061258d7f084c9ee584b6384a3a7a2d0c1b3ab9b300b8e97c0b72c3d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1349.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x492ab6200930f90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:03:00.000Z'}}, {'blockNum': '0x8f62bf', 'uniqueId': '0x785adec5a600d1aedcb3d7deec590def0a41e831b77d5135a7d88f0cf53a8231:log:36', 'hash': '0x785adec5a600d1aedcb3d7deec590def0a41e831b77d5135a7d88f0cf53a8231', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1349.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x492ab6200930f90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:03:15.000Z'}}, {'blockNum': '0x8f62bf', 'uniqueId': '0x785adec5a600d1aedcb3d7deec590def0a41e831b77d5135a7d88f0cf53a8231:log:38', 'hash': '0x785adec5a600d1aedcb3d7deec590def0a41e831b77d5135a7d88f0cf53a8231', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1349.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x492ab6200930f90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:03:15.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x1e56ee8e87686ec4e68859d285f6d32f59c7ddaafea14c65720ffc1cbd5825ea:log:34', 'hash': '0x1e56ee8e87686ec4e68859d285f6d32f59c7ddaafea14c65720ffc1cbd5825ea', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4498.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf3e3c0426f73290000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x8e7ec5a2501610f7171f8d4da6f99f7096476000d9458b18f4195f335ae74ae8:log:37', 'hash': '0x8e7ec5a2501610f7171f8d4da6f99f7096476000d9458b18f4195f335ae74ae8', 'from': '0x896b6d82d0ba81dd27c16f6956e55371278e9dcc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10391.4198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x023351eb43ff90b18000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x45100c1aa3cba9c53a31768ab68269d0ea98e86db949639a420f2048d47cbc8c:log:40', 'hash': '0x45100c1aa3cba9c53a31768ab68269d0ea98e86db949639a420f2048d47cbc8c', 'from': '0x65deb91454617008ebd9be734d22f9b478e3d4e5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10539.46992735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x023b5886fa6b80c99c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x1a94e0637235c456c59df9fc5738515663185388fc072fc0aebc285573352c3e:log:41', 'hash': '0x1a94e0637235c456c59df9fc5738515663185388fc072fc0aebc285573352c3e', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02906e21efc4b5140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x10dc34295fbc34631d9466b2b52abb0760dfe8e6a201753b26795e95f020e377:log:42', 'hash': '0x10dc34295fbc34631d9466b2b52abb0760dfe8e6a201753b26795e95f020e377', 'from': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 116271.4656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x189f16ba4a92c2c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0x86462eca408c9ec1ce8ad609656b009db28980ae564c7f8378ad4127c95121bb:log:43', 'hash': '0x86462eca408c9ec1ce8ad609656b009db28980ae564c7f8378ad4127c95121bb', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0xc4192d1fd1e82a286aedb9e0039eb033ce955cd7f92eeaa03bc970a1031d0b6e:log:44', 'hash': '0xc4192d1fd1e82a286aedb9e0039eb033ce955cd7f92eeaa03bc970a1031d0b6e', 'from': '0xc0e9e730e308e506e78280cc98042feca794745f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66910.1132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e2b345a6a6d474b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0xcbaeee0ccc4caca0338d4945a953808963c8e5f0982dda31296cc4fc4daa68a2:log:45', 'hash': '0xcbaeee0ccc4caca0338d4945a953808963c8e5f0982dda31296cc4fc4daa68a2', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19723.74806541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042d39fd8c982d1a9400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62c5', 'uniqueId': '0xabacb36ee2f5153e4821033259bc6b1d096e02832578ce86a50bd40a1dc27496:log:46', 'hash': '0xabacb36ee2f5153e4821033259bc6b1d096e02832578ce86a50bd40a1dc27496', 'from': '0xea55a4145d0c97bf58490cdb1b71d4b4a8b6b274', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6832.5354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01726479f9f9d97e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:04:27.000Z'}}, {'blockNum': '0x8f62e5', 'uniqueId': '0x27f4b76c8ad46c64ac3b0d60cbd8fe9d9d4127f48587c45c44b6d3913479770d:log:2', 'hash': '0x27f4b76c8ad46c64ac3b0d60cbd8fe9d9d4127f48587c45c44b6d3913479770d', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4502.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf41499cfc91c890000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:10:12.000Z'}}, {'blockNum': '0x8f62e5', 'uniqueId': '0xba802211f8e5f4981c36d56ec0b86a631fef38fccc16b0d2dc99b9c9345733cc:log:7', 'hash': '0xba802211f8e5f4981c36d56ec0b86a631fef38fccc16b0d2dc99b9c9345733cc', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 7901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ac5066c6b539540000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:10:12.000Z'}}, {'blockNum': '0x8f62f9', 'uniqueId': '0x966f837758a8041d7f7a2d8798f3ac93a0bde5f6a557ee7d432a1b9b28ebe5c8:log:44', 'hash': '0x966f837758a8041d7f7a2d8798f3ac93a0bde5f6a557ee7d432a1b9b28ebe5c8', 'from': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:14:02.000Z'}}, {'blockNum': '0x8f62fa', 'uniqueId': '0x7993f0b3f955f6617319da3f3ba7f7e3a9b6ba09946ef728c3e683b08256e124:log:0', 'hash': '0x7993f0b3f955f6617319da3f3ba7f7e3a9b6ba09946ef728c3e683b08256e124', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 36490.99254185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07ba2e405b3f7ddd8400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:15:08.000Z'}}, {'blockNum': '0x8f62fa', 'uniqueId': '0x3a17064505e2b2c0981816ce848fe081740773e46e33bdd0169cf77c86f900a5:log:1', 'hash': '0x3a17064505e2b2c0981816ce848fe081740773e46e33bdd0169cf77c86f900a5', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:15:08.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0x705feba762301fd4c3569a7988154754c7b3bfd77d025e845eb6172762d92ce1:log:1', 'hash': '0x705feba762301fd4c3569a7988154754c7b3bfd77d025e845eb6172762d92ce1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19765.85096045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042f8249149007dc1400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0x14d281817922a3d10bb3801d3c43b596326ec71858ae1c67f5c242880b418cb4:log:9', 'hash': '0x14d281817922a3d10bb3801d3c43b596326ec71858ae1c67f5c242880b418cb4', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ac5066c6b539540000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0x9a835a663af4d436e73146b426558db4d8370fd25184f5bfd6dc7c5b25f15f42:log:10', 'hash': '0x9a835a663af4d436e73146b426558db4d8370fd25184f5bfd6dc7c5b25f15f42', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0x81b6b35768b56742a62fd479ebcf11094f8f6a86acdd253de1421909ae8b176b:log:12', 'hash': '0x81b6b35768b56742a62fd479ebcf11094f8f6a86acdd253de1421909ae8b176b', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36490.99254185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07ba2e405b3f7ddd8400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f632d', 'uniqueId': '0xc74361706d81991a23d5f02b6ac5c9c6d8cd5a65bfd77e49a8b008f4d073f6e8:log:13', 'hash': '0xc74361706d81991a23d5f02b6ac5c9c6d8cd5a65bfd77e49a8b008f4d073f6e8', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4502.49, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf41499cfc91c890000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:24:01.000Z'}}, {'blockNum': '0x8f6343', 'uniqueId': '0xc77e6f0a6690babd5c12223331f59caa6092f634684432a498f18d857392b759:log:0', 'hash': '0xc77e6f0a6690babd5c12223331f59caa6092f634684432a498f18d857392b759', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19765.85096045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042f8249149007dc1400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:29:53.000Z'}}, {'blockNum': '0x8f635b', 'uniqueId': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736:log:6', 'hash': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 737.0490528869993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27f49c408c27b166b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:36:04.000Z'}}, {'blockNum': '0x8f635b', 'uniqueId': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736:log:8', 'hash': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 737.0490528869993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27f49c408c27b166b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:36:04.000Z'}}, {'blockNum': '0x8f635b', 'uniqueId': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736:log:13', 'hash': '0xefffd82eb009bfbffd23ccbdb3ed7f870546f55e80274a66f8584ba052173736', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 737.0490528869993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27f49c408c27b20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:36:04.000Z'}}, {'blockNum': '0x8f6371', 'uniqueId': '0x95d732a0d61851d25800b621536962b432de252a5e69ee012837888b89aad097:log:2', 'hash': '0x95d732a0d61851d25800b621536962b432de252a5e69ee012837888b89aad097', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2752.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x95393f6a9f92050000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T14:40:48.000Z'}}, {'blockNum': '0x8f63cf', 'uniqueId': '0xc7e6edb41a331e5253fe6d6b84b9b7337c928123af825eda1e9f1d286810a604:log:60', 'hash': '0xc7e6edb41a331e5253fe6d6b84b9b7337c928123af825eda1e9f1d286810a604', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17.510791836331986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf302d4662460c6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:01:09.000Z'}}, {'blockNum': '0x8f63cf', 'uniqueId': '0xc7e6edb41a331e5253fe6d6b84b9b7337c928123af825eda1e9f1d286810a604:log:65', 'hash': '0xc7e6edb41a331e5253fe6d6b84b9b7337c928123af825eda1e9f1d286810a604', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9b7a6c630865bc5e1839fe3585faf7a4414b866f', 'value': 17.510791836331986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xf302d4662460c6f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:01:09.000Z'}}, {'blockNum': '0x8f648c', 'uniqueId': '0xdace659a9fcae77c28a2818e7a02c00b480a7ff8774c894b6fd98ebdca21a769:log:104', 'hash': '0xdace659a9fcae77c28a2818e7a02c00b480a7ff8774c894b6fd98ebdca21a769', 'from': '0xe281360f7c5e564585b9469fe3e690250b4008a7', 'to': '0x102fccbea5e0eb78d5ca46ea965f74d876b1de8a', 'value': 52.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d9f8bd50318c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:40:57.000Z'}}, {'blockNum': '0x8f64e6', 'uniqueId': '0xe13d867c51058457ea3198fd0236ff44237f07454c0c07e54569ac1cc835e964:log:6', 'hash': '0xe13d867c51058457ea3198fd0236ff44237f07454c0c07e54569ac1cc835e964', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:59:38.000Z'}}, {'blockNum': '0x8f64e6', 'uniqueId': '0x0854da91cdfe7d5763d86bc58e816f680eefb95717b8944efd63eb9065f29141:log:10', 'hash': '0x0854da91cdfe7d5763d86bc58e816f680eefb95717b8944efd63eb9065f29141', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 4053.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xdbbceb42e6c7210000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T15:59:38.000Z'}}, {'blockNum': '0x8f64f8', 'uniqueId': '0x2e709d8a0e67c72cf6f7d1ee492cb9ed0e2c79d0b2ae766259994dfcba0b2ab5:log:17', 'hash': '0x2e709d8a0e67c72cf6f7d1ee492cb9ed0e2c79d0b2ae766259994dfcba0b2ab5', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:04:12.000Z'}}, {'blockNum': '0x8f64f8', 'uniqueId': '0x3b62e83acf6eef099495acc0a9ae5cbec79c8f0acca246ca74741689487aa873:log:18', 'hash': '0x3b62e83acf6eef099495acc0a9ae5cbec79c8f0acca246ca74741689487aa873', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4053.45, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xdbbceb42e6c7210000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:04:12.000Z'}}, {'blockNum': '0x8f6509', 'uniqueId': '0x49fc49bac3adaedfdb4694dca7e5922224b2ce5d7d09737b5a3947cdb2079292:log:90', 'hash': '0x49fc49bac3adaedfdb4694dca7e5922224b2ce5d7d09737b5a3947cdb2079292', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x460b94fe8b7899b4a5f7ea74e90536e2c5f70fcd', 'value': 969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3487938e0499840000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:06:43.000Z'}}, {'blockNum': '0x8f6509', 'uniqueId': '0xf885bbaf6e58ee72f4d19186babb6fd9afe8332dd58e25b7ad2b32723824b540:log:91', 'hash': '0xf885bbaf6e58ee72f4d19186babb6fd9afe8332dd58e25b7ad2b32723824b540', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 7958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01af676f74b57e980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:06:43.000Z'}}, {'blockNum': '0x8f652e', 'uniqueId': '0xfc12954181a27a1c50ae9a10a32f039567093b84930392c04dc49337a278d517:log:118', 'hash': '0xfc12954181a27a1c50ae9a10a32f039567093b84930392c04dc49337a278d517', 'from': '0x460b94fe8b7899b4a5f7ea74e90536e2c5f70fcd', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 1935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68e584f7ee3cdc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:13:40.000Z'}}, {'blockNum': '0x8f652f', 'uniqueId': '0x1c70183d1863554bbc85dde064e9b941227695fd8bc46ca24a51ba972f49f387:log:6', 'hash': '0x1c70183d1863554bbc85dde064e9b941227695fd8bc46ca24a51ba972f49f387', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01af676f74b57e980000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:13:53.000Z'}}, {'blockNum': '0x8f6549', 'uniqueId': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730:log:106', 'hash': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 473.2069140096483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x19a710ad2253e724ad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:20:52.000Z'}}, {'blockNum': '0x8f6549', 'uniqueId': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730:log:108', 'hash': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 473.2069140096483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x19a710ad2253e724ad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:20:52.000Z'}}, {'blockNum': '0x8f6549', 'uniqueId': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730:log:113', 'hash': '0x5ca2f32e3c79fb32ce52824bb9828571db9e0da825547caa2f6b53d295b9a730', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 473.2064408027343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x19a70efec141e35a7c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:20:52.000Z'}}, {'blockNum': '0x8f656e', 'uniqueId': '0xbb60bb46425d32eadfd8187d4bc755eaffc3cd890df2b020ff46379bce2c1401:log:178', 'hash': '0xbb60bb46425d32eadfd8187d4bc755eaffc3cd890df2b020ff46379bce2c1401', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 6940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017837d8ee4ddaf00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:29:03.000Z'}}, {'blockNum': '0x8f6584', 'uniqueId': '0x83b3242783b2a0fce8c2d0a79cf588b8b9e1c346353b5067e22f1640ca636536:log:4', 'hash': '0x83b3242783b2a0fce8c2d0a79cf588b8b9e1c346353b5067e22f1640ca636536', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x017837d8ee4ddaf00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T16:34:04.000Z'}}, {'blockNum': '0x8f661c', 'uniqueId': '0xb71d9ebd4bb69388ce7155ac1cc7a9c82b660b86a6c1b90a3a1dd9c61c225204:log:5', 'hash': '0xb71d9ebd4bb69388ce7155ac1cc7a9c82b660b86a6c1b90a3a1dd9c61c225204', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x310e14d934daf738e1e5a4ffba53207a3cded234', 'value': 132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0727de34a24f900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:10:37.000Z'}}, {'blockNum': '0x8f6624', 'uniqueId': '0xa80ad7f1728776bcfb911553705e20c6f718c5825d887b590c740ec6ccf951c6:log:11', 'hash': '0xa80ad7f1728776bcfb911553705e20c6f718c5825d887b590c740ec6ccf951c6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 1127.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d21d7b03e08410000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:13:06.000Z'}}, {'blockNum': '0x8f6627', 'uniqueId': '0x921a287754ea4a63b8593a60dafc58767c5de8ffa4dae5ee68bf296bffb5546b:log:2', 'hash': '0x921a287754ea4a63b8593a60dafc58767c5de8ffa4dae5ee68bf296bffb5546b', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 38257.22730279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0819edaec068fd8bbc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:13:36.000Z'}}, {'blockNum': '0x8f6627', 'uniqueId': '0x2d7f117ebe0ca04e53d440b9cf6ff3d2f90723e35be7049fc42256c457661ffa:log:3', 'hash': '0x2d7f117ebe0ca04e53d440b9cf6ff3d2f90723e35be7049fc42256c457661ffa', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'value': 12043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x028cda32d5738d4c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:13:36.000Z'}}, {'blockNum': '0x8f6658', 'uniqueId': '0xa39f6f93684bd55c49b3eab00e2087b0d6855918f2ba24df80a7be692727200a:log:8', 'hash': '0xa39f6f93684bd55c49b3eab00e2087b0d6855918f2ba24df80a7be692727200a', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38257.22730279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0819edaec068fd8bbc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:23:54.000Z'}}, {'blockNum': '0x8f6658', 'uniqueId': '0x7c04f8a009acbcb2d76aa656e3168c07e73f6c42bc1e52c232eb07a1ad1212d4:log:10', 'hash': '0x7c04f8a009acbcb2d76aa656e3168c07e73f6c42bc1e52c232eb07a1ad1212d4', 'from': '0xf0b9828d5fa4fc6fe5525c69f088d34e4101e385', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x028cda32d5738d4c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:23:54.000Z'}}, {'blockNum': '0x8f668c', 'uniqueId': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b:log:59', 'hash': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 437.9991879126457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x17be75b4c992d0ef32', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:36:18.000Z'}}, {'blockNum': '0x8f668c', 'uniqueId': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b:log:61', 'hash': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 437.9991879126457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x17be75b4c992d0ef32', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:36:18.000Z'}}, {'blockNum': '0x8f668c', 'uniqueId': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b:log:66', 'hash': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 437.9991879126456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x17be75b4c992cf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:36:18.000Z'}}, {'blockNum': '0x8f668c', 'uniqueId': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b:log:68', 'hash': '0xa7fc2777c055b3a7b46edf9fc6b6569ab03058bb332758f10f2fc90c4a262b5b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 437.9991879126456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x17be75b4c992cf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:36:18.000Z'}}, {'blockNum': '0x8f6692', 'uniqueId': '0x286ed2f3a37675d5070c9dbd8ab08ea6d044493c00f8bd2d61d47cec343d8289:log:4', 'hash': '0x286ed2f3a37675d5070c9dbd8ab08ea6d044493c00f8bd2d61d47cec343d8289', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd95c915528a9aa941fbab42c9673c8e514d5826c', 'value': 4646.032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xfbdca5704479a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:37:41.000Z'}}, {'blockNum': '0x8f66a7', 'uniqueId': '0x2d1d510b0584fc5927d40de331140d4d258d7d09ea258127e977306d27bd5451:log:0', 'hash': '0x2d1d510b0584fc5927d40de331140d4d258d7d09ea258127e977306d27bd5451', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 879.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2fb026b233df610000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:42:02.000Z'}}, {'blockNum': '0x8f66d8', 'uniqueId': '0xe8c2b8853b9268babdc484d953cd6adab49b9db267cdd87baf7aa6c426e48a62:log:0', 'hash': '0xe8c2b8853b9268babdc484d953cd6adab49b9db267cdd87baf7aa6c426e48a62', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19712.88417626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042ca33942f8cc222800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:52:58.000Z'}}, {'blockNum': '0x8f66e2', 'uniqueId': '0x11992c500b72c9bf9c6d1ec9ce0bb2b198fea0f674a72d0ed05706fc3791e964:log:0', 'hash': '0x11992c500b72c9bf9c6d1ec9ce0bb2b198fea0f674a72d0ed05706fc3791e964', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19712.88417626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042ca33942f8cc222800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T17:54:11.000Z'}}, {'blockNum': '0x8f6725', 'uniqueId': '0x8fd081fedb31c674ca4a86620a502bb9556371403e12feef01aa03f259df9509:log:38', 'hash': '0x8fd081fedb31c674ca4a86620a502bb9556371403e12feef01aa03f259df9509', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1592.3507609543735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56524e5473bc63ad0e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:08:43.000Z'}}, {'blockNum': '0x8f672c', 'uniqueId': '0xb4042f5b7cc88c676967798038a84585def198129165f7fb36e3711763b1fa7a:log:219', 'hash': '0xb4042f5b7cc88c676967798038a84585def198129165f7fb36e3711763b1fa7a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 265.4930908496242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e6474ef7c2c5cc874', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:09:35.000Z'}}, {'blockNum': '0x8f673c', 'uniqueId': '0xa51fe4de527d99bfd44123769ca61386ca24e6106c97159fd1b2a2972ce53435:log:157', 'hash': '0xa51fe4de527d99bfd44123769ca61386ca24e6106c97159fd1b2a2972ce53435', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 535.55702966807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d0858c8faf8a57f6c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:14:26.000Z'}}, {'blockNum': '0x8f6749', 'uniqueId': '0x497868d9e58065964cfa2dc415765851d33d6f30604b9d025949e48e5cc56ca7:log:111', 'hash': '0x497868d9e58065964cfa2dc415765851d33d6f30604b9d025949e48e5cc56ca7', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 1127.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d21d7b03e08410000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:17:04.000Z'}}, {'blockNum': '0x8f6752', 'uniqueId': '0xb71e0556d5cf01f520a0c5e36a34933aeeef8c6b1bb673a92e320dbe417ff84e:log:3', 'hash': '0xb71e0556d5cf01f520a0c5e36a34933aeeef8c6b1bb673a92e320dbe417ff84e', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 37144.04136479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07dd951fd7b603889c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:19:01.000Z'}}, {'blockNum': '0x8f6753', 'uniqueId': '0x3b2f9563d6c8051d6cd5cec7de07d4fbf1df7eee5b763ed26617e360160d19fc:log:2', 'hash': '0x3b2f9563d6c8051d6cd5cec7de07d4fbf1df7eee5b763ed26617e360160d19fc', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'value': 3892.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd30797560238610000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:19:28.000Z'}}, {'blockNum': '0x8f6765', 'uniqueId': '0xe4c5314e21f49c62f6dcd2233354ef011b35c66327698f48144cf7cebbc77d14:log:9', 'hash': '0xe4c5314e21f49c62f6dcd2233354ef011b35c66327698f48144cf7cebbc77d14', 'from': '0x6f4a67682d0d88a03dc457cbb1a2fc58b481be94', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3892.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd30797560238610000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:23:58.000Z'}}, {'blockNum': '0x8f6765', 'uniqueId': '0x95dc0439653dd1c44fdd5c5d0c331baf55a87f0ef1b7a3d9e06587a72fbf382c:log:10', 'hash': '0x95dc0439653dd1c44fdd5c5d0c331baf55a87f0ef1b7a3d9e06587a72fbf382c', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37144.04136479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07dd951fd7b603889c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:23:58.000Z'}}, {'blockNum': '0x8f6782', 'uniqueId': '0x99f02886ebd61c2ed98ff19d16d7bc95584cc70f97413882bbe83265e5044912:log:19', 'hash': '0x99f02886ebd61c2ed98ff19d16d7bc95584cc70f97413882bbe83265e5044912', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 270.8330695862537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0eae9059da854dbb0c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:31:15.000Z'}}, {'blockNum': '0x8f6792', 'uniqueId': '0xc7f16f924a0623aad1165b394461a4804fab2129b38fb96d097ff4925f62fe9f:log:27', 'hash': '0xc7f16f924a0623aad1165b394461a4804fab2129b38fb96d097ff4925f62fe9f', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 266.24599857563857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e6ee7cd12a21887e4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:33:20.000Z'}}, {'blockNum': '0x8f679e', 'uniqueId': '0x8460f3769679e83e7f04a7ab7df15b10233869e898ad8bb972b2368034b91058:log:2', 'hash': '0x8460f3769679e83e7f04a7ab7df15b10233869e898ad8bb972b2368034b91058', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19711.81277998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042c945ae5bb510ef800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:36:27.000Z'}}, {'blockNum': '0x8f67b0', 'uniqueId': '0x5cc35861a0e3abb4823c3cb2632adcc99160d4f6748ffe8725ebda45b6a2e876:log:1', 'hash': '0x5cc35861a0e3abb4823c3cb2632adcc99160d4f6748ffe8725ebda45b6a2e876', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19711.81277998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042c945ae5bb510ef800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T18:40:06.000Z'}}, {'blockNum': '0x8f6885', 'uniqueId': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf:log:119', 'hash': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 320.2326257852666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x115c1ed47c8d69239e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T19:24:45.000Z'}}, {'blockNum': '0x8f6885', 'uniqueId': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf:log:121', 'hash': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 320.23261418073605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x115c1ec9eea97e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T19:24:45.000Z'}}, {'blockNum': '0x8f6885', 'uniqueId': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf:log:122', 'hash': '0xa6b9380187add6feedc227c6cae5bbd23ac1d37edc1b466334b3976e508428cf', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 320.23261418073605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x115c1ec9eea97e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T19:24:45.000Z'}}, {'blockNum': '0x8f6935', 'uniqueId': '0xe4e9c1cb3a058189905d8d02a263fb213d320f9f1c90db5f6319d570aa992c0c:log:4', 'hash': '0xe4e9c1cb3a058189905d8d02a263fb213d320f9f1c90db5f6319d570aa992c0c', 'from': '0xdc5680ffa94a83b297d78952fb0a766df40f196a', 'to': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b87506a3e7b0d400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:05:46.000Z'}}, {'blockNum': '0x8f69a4', 'uniqueId': '0x6118beac243885e5e84de04380efcf418f1bb48a31d2c3a5de4be32d266c3f7c:log:0', 'hash': '0x6118beac243885e5e84de04380efcf418f1bb48a31d2c3a5de4be32d266c3f7c', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:27:09.000Z'}}, {'blockNum': '0x8f69a5', 'uniqueId': '0x16c5a5398323487a44a4481af6af6fcb90933f111ab1dd91947c08d6dc275150:log:1', 'hash': '0x16c5a5398323487a44a4481af6af6fcb90933f111ab1dd91947c08d6dc275150', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 38260.24215766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x081a1785aaf0e5409800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:27:16.000Z'}}, {'blockNum': '0x8f69c2', 'uniqueId': '0x91070df915e798003048fc18a5c2ef8d276c83e6fd5686cfaa9fa2954f492cf7:log:4', 'hash': '0x91070df915e798003048fc18a5c2ef8d276c83e6fd5686cfaa9fa2954f492cf7', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38260.24215766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x081a1785aaf0e5409800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:34:14.000Z'}}, {'blockNum': '0x8f69c2', 'uniqueId': '0x8d447a797b6b07502e1ff384671192021c366cb8730a54ae5f76cc526cf58f7c:log:5', 'hash': '0x8d447a797b6b07502e1ff384671192021c366cb8730a54ae5f76cc526cf58f7c', 'from': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:34:14.000Z'}}, {'blockNum': '0x8f69d6', 'uniqueId': '0x5e2d9cce0123974fc411ae8bddd2b05a5629a26da1fef26b2fa75f13a05f1461:log:78', 'hash': '0x5e2d9cce0123974fc411ae8bddd2b05a5629a26da1fef26b2fa75f13a05f1461', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 539.1599381804845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1d3a58e32ef158e5d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:37:04.000Z'}}, {'blockNum': '0x8f6a01', 'uniqueId': '0x39112bda870375dd2c48621f9addf9d8978458cf52b3c2cecb044f609cfba378:log:4', 'hash': '0x39112bda870375dd2c48621f9addf9d8978458cf52b3c2cecb044f609cfba378', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 19714.89984185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042cbf325825820fc400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:48:04.000Z'}}, {'blockNum': '0x8f6a25', 'uniqueId': '0xcde76168b44c73902826e1363eeda546b341348f8ff7b4b3e2853c435f00832a:log:0', 'hash': '0xcde76168b44c73902826e1363eeda546b341348f8ff7b4b3e2853c435f00832a', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x31d03f07178bcd74f9099afebd23b0ae30184ab5', 'value': 19714.89984185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x042cbf325825820fc400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T20:55:04.000Z'}}, {'blockNum': '0x8f6adb', 'uniqueId': '0x905510ec4b52839a96e87f10eef5ebe33949a3db4b4732d5d5597db0886b372e:log:8', 'hash': '0x905510ec4b52839a96e87f10eef5ebe33949a3db4b4732d5d5597db0886b372e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 247.5536312455798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0d6b7f2c05c2d34c31', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T21:36:02.000Z'}}, {'blockNum': '0x8f6bef', 'uniqueId': '0xfaa9cbfdd36f813640d300373577dfe90ee1897c9cf0407e1ed8758746034891:log:2', 'hash': '0xfaa9cbfdd36f813640d300373577dfe90ee1897c9cf0407e1ed8758746034891', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1378.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4abd2ad263274d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T22:37:49.000Z'}}, {'blockNum': '0x8f6bf1', 'uniqueId': '0xc0ada27183a0ce7793a16895b8c18453d61c02c8da1139e45d629dfe45e73976:log:25', 'hash': '0xc0ada27183a0ce7793a16895b8c18453d61c02c8da1139e45d629dfe45e73976', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1378.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4abd2ad263274d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T22:38:42.000Z'}}, {'blockNum': '0x8f6bf1', 'uniqueId': '0xc0ada27183a0ce7793a16895b8c18453d61c02c8da1139e45d629dfe45e73976:log:27', 'hash': '0xc0ada27183a0ce7793a16895b8c18453d61c02c8da1139e45d629dfe45e73976', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1378.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4abd2ad263274d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T22:38:42.000Z'}}, {'blockNum': '0x8f6c53', 'uniqueId': '0xdca4eda3055a62e409f21a95ee8c86166d2e15e0f218f9c2853a7f6ab83af8e3:log:273', 'hash': '0xdca4eda3055a62e409f21a95ee8c86166d2e15e0f218f9c2853a7f6ab83af8e3', 'from': '0xffb5d974cba1e8c3761427f017c9666c9f14c32b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 144.854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07da40c987d66f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T22:59:51.000Z'}}, {'blockNum': '0x8f6c76', 'uniqueId': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a:log:25', 'hash': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 407.9663811301152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x161dabbe23aa246711', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:09:01.000Z'}}, {'blockNum': '0x8f6c76', 'uniqueId': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a:log:27', 'hash': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 407.9663811301152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x161dabbe23aa246711', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:09:01.000Z'}}, {'blockNum': '0x8f6c76', 'uniqueId': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a:log:32', 'hash': '0x74489c1286edbf496b2a7cb3f550c08b971119be92cc429b52d63ace1179e13a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 407.9659731637341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x161daa4b1896ea258e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:09:01.000Z'}}, {'blockNum': '0x8f6c91', 'uniqueId': '0x3603bd73be7d8cecb5166924b7440dd8ef5eaa22c69231d5f4274a2415f32beb:log:159', 'hash': '0x3603bd73be7d8cecb5166924b7440dd8ef5eaa22c69231d5f4274a2415f32beb', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x659d1cba2a41ddae1093d2f535b2aa486a1494d1', 'value': 17512.94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03b560dd7e77997e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:15:26.000Z'}}, {'blockNum': '0x8f6cb2', 'uniqueId': '0x619befa200451a3968fdb8740b27349e2253d54c8b42625544a1f7d65701747d:log:1', 'hash': '0x619befa200451a3968fdb8740b27349e2253d54c8b42625544a1f7d65701747d', 'from': '0x659d1cba2a41ddae1093d2f535b2aa486a1494d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17512.94, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03b560dd7e77997e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:24:04.000Z'}}, {'blockNum': '0x8f6d3d', 'uniqueId': '0x3b243938b54ebe7f955b5532a9e2393bad57d934ed661395dc1cf15b59e2b8a3:log:34', 'hash': '0x3b243938b54ebe7f955b5532a9e2393bad57d934ed661395dc1cf15b59e2b8a3', 'from': '0x05d8f3cebd4ab23a61fa082ba340b5a2bed97a41', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 13.686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbdee707d0bff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-01T23:53:17.000Z'}}]}}
Number of returned transfers:  300
Answer is complete
 
symbol             WPR
group               CW
date        2020-02-10
hour             20:00
exchange       binance
Name: 881, dtype: object
HERE
 Symbol: WPR, Contract: 0x4cf488387f035ff08c371515562cba712f9015d4
Datetime timestamps:  2020-02-10 20:00:00 2020-02-10 08:00:00 2020-02-11 08:00:00
Unix timestamps:  1581318000.0 1581404400.0
Hex Block Numbers:  0x904023 0x9059dd
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x904058', 'uniqueId': '0xac06c00af6d8a37ed1ccf9763468ec2ec520ad9f9d4a3f6a94b1f43a2634fbf7:log:9', 'hash': '0xac06c00af6d8a37ed1ccf9763468ec2ec520ad9f9d4a3f6a94b1f43a2634fbf7', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 80902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1121b4ca0ad55c580000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T07:13:00.000Z'}}, {'blockNum': '0x9040a7', 'uniqueId': '0x6d1f15aecf2e86d8bd7f024530a9cc2a1dfa8706b22d40e47cfc8ba0c9b07540:log:31', 'hash': '0x6d1f15aecf2e86d8bd7f024530a9cc2a1dfa8706b22d40e47cfc8ba0c9b07540', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1121b4ca0ad55c580000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T07:29:22.000Z'}}, {'blockNum': '0x9040f4', 'uniqueId': '0x8fc3fed42f14bef670ca45cc50210a3f4aaf8d61562d5c972e5eaa1e70f2b149:log:37', 'hash': '0x8fc3fed42f14bef670ca45cc50210a3f4aaf8d61562d5c972e5eaa1e70f2b149', 'from': '0x42d852676229551ef51e1720e56f61c6d4cd06ba', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 314637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x42a08185c1ba94140000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T07:47:09.000Z'}}, {'blockNum': '0x904126', 'uniqueId': '0x872d49bff7b4c387fafeb05b583c9b5c9ea19400997219184c302243a9ffd470:log:78', 'hash': '0x872d49bff7b4c387fafeb05b583c9b5c9ea19400997219184c302243a9ffd470', 'from': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 314637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x42a08185c1ba94140000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T07:59:36.000Z'}}, {'blockNum': '0x904149', 'uniqueId': '0x67c08b5deebb6944bcadb75841c46b98f01302107d85cc844d5a4857646ff037:log:1', 'hash': '0x67c08b5deebb6944bcadb75841c46b98f01302107d85cc844d5a4857646ff037', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 1982884.1118693554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01a3e45cf3b6e5a324c2d2', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T08:08:50.000Z'}}, {'blockNum': '0x90414d', 'uniqueId': '0xe01108fbcaefa447a115a8329c3530db5db3f5966b22d66bf3b7b524ad6a99f7:log:136', 'hash': '0xe01108fbcaefa447a115a8329c3530db5db3f5966b22d66bf3b7b524ad6a99f7', 'from': '0xcdb50e3ce185a536f0ba671c45340c6be4c2de4f', 'to': '0xcd2946877654f7c25cdd23dd59da1ca2d92a5b25', 'value': 1626.176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x5827b9b82679a00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T08:09:13.000Z'}}, {'blockNum': '0x904175', 'uniqueId': '0xec3096e4f16482386f7898b4d4a307ea3d40579b7693f5d72a751aa9654854cd:log:4', 'hash': '0xec3096e4f16482386f7898b4d4a307ea3d40579b7693f5d72a751aa9654854cd', 'from': '0xcd2946877654f7c25cdd23dd59da1ca2d92a5b25', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1626.176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x5827b9b82679a00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T08:19:09.000Z'}}, {'blockNum': '0x904207', 'uniqueId': '0xa80bef5d6cfe9e2ff5ac81b8483169b1ec6136e90052f53ed5cfc30bdc432b3c:log:79', 'hash': '0xa80bef5d6cfe9e2ff5ac81b8483169b1ec6136e90052f53ed5cfc30bdc432b3c', 'from': '0x2a2820d424ed72e9466c89e9c7737df344be75dd', 'to': '0xd8ec88fbaffbdb5253612ba381beda03c1c9eec5', 'value': 152.351049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x08424ba7e003219000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T08:52:30.000Z'}}, {'blockNum': '0x904312', 'uniqueId': '0x6ad037e50d1d1e4a3689baab8621efbb5198d086b5b93befe4d10bae322b7d0e:log:76', 'hash': '0x6ad037e50d1d1e4a3689baab8621efbb5198d086b5b93befe4d10bae322b7d0e', 'from': '0x8078ef3b2d8e864f0f24f1c3592651f31b4610d5', 'to': '0x20b029cb9ec3cddf7efc7ea9463ae46ce142f725', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T09:43:42.000Z'}}, {'blockNum': '0x90432e', 'uniqueId': '0xf131e4fdacbee74f1a298620f4a4024ac6d78a564c6d6172ecd53d0ad247b9ab:log:30', 'hash': '0xf131e4fdacbee74f1a298620f4a4024ac6d78a564c6d6172ecd53d0ad247b9ab', 'from': '0x20b029cb9ec3cddf7efc7ea9463ae46ce142f725', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T09:49:07.000Z'}}, {'blockNum': '0x9043b7', 'uniqueId': '0xbb5a0b509b958f44a31473c5033184d3098de04caf903aea1b95f82a731874da:log:8', 'hash': '0xbb5a0b509b958f44a31473c5033184d3098de04caf903aea1b95f82a731874da', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xac4acf8aebc20827067c61ca3ddbef83c405fc09', 'value': 65568.236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0de27610ee98d37e0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T10:18:34.000Z'}}, {'blockNum': '0x904462', 'uniqueId': '0x8fed25f0f060763bd0a7843c1ed05685885bc0d340174a43794d66196c800505:log:15', 'hash': '0x8fed25f0f060763bd0a7843c1ed05685885bc0d340174a43794d66196c800505', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xac4acf8aebc20827067c61ca3ddbef83c405fc09', 'value': 70159.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0edb5c98ba4bc71c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T10:56:20.000Z'}}, {'blockNum': '0x9044a7', 'uniqueId': '0x9ef2a2d56e8a7a87742a359672b472940f8f793cb70e386f8c59b701ef0f25a9:log:0', 'hash': '0x9ef2a2d56e8a7a87742a359672b472940f8f793cb70e386f8c59b701ef0f25a9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xac4acf8aebc20827067c61ca3ddbef83c405fc09', 'value': 23237.609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04ebb69b5b5ef42a8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:11:04.000Z'}}, {'blockNum': '0x90452c', 'uniqueId': '0x3b9a61cfc1064d72c049d812ad448d71738c53a9de92879051e4be2f82502ab1:log:80', 'hash': '0x3b9a61cfc1064d72c049d812ad448d71738c53a9de92879051e4be2f82502ab1', 'from': '0x11ce0091087622aa93c95424eefe2aaf3df9dba3', 'to': '0x73654ad779936826d9df2945ad5ffb7d04da3850', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:38:56.000Z'}}, {'blockNum': '0x90455b', 'uniqueId': '0xc9ad8840a9e471dab646581fc1a0470a08f6b49798b613b860fa238380628330:log:29', 'hash': '0xc9ad8840a9e471dab646581fc1a0470a08f6b49798b613b860fa238380628330', 'from': '0x0aa202d23ac9bb0f4f269feb60d16f34fc21995f', 'to': '0xaff11b7b4b56f688769ac7af3b526cc58949d675', 'value': 6206.003228036126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01506d988f15a4cdc297', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:48:48.000Z'}}, {'blockNum': '0x90455c', 'uniqueId': '0xca38c4d3fe6b2b6446644b02e925bd25abe9ae404e8783fef565f743b3676f48:log:50', 'hash': '0xca38c4d3fe6b2b6446644b02e925bd25abe9ae404e8783fef565f743b3676f48', 'from': '0x73654ad779936826d9df2945ad5ffb7d04da3850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:49:05.000Z'}}, {'blockNum': '0x90459a', 'uniqueId': '0x6fbab0a3fceac8b39908ea130acc6b93dfd0ed40c76b3589f7547610bdfb3944:log:30', 'hash': '0x6fbab0a3fceac8b39908ea130acc6b93dfd0ed40c76b3589f7547610bdfb3944', 'from': '0xaff11b7b4b56f688769ac7af3b526cc58949d675', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6206.003228036126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01506d988f15a4cdc297', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T11:59:14.000Z'}}, {'blockNum': '0x9045b6', 'uniqueId': '0x4988cecc50d7f7e800e02c12bee41d330a41a617aa7fdc919a1a26ca24b1a36c:log:25', 'hash': '0x4988cecc50d7f7e800e02c12bee41d330a41a617aa7fdc919a1a26ca24b1a36c', 'from': '0xfe47e763ccfed7d796ff72b603c78ace6725e272', 'to': '0x377c1cd7b27cde8f1c2ee51657b116d17f20e201', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T12:05:40.000Z'}}, {'blockNum': '0x9045f4', 'uniqueId': '0x2a862a46079f909b4ad3933711e7ec43a9dcc770146795c2da254d6e53511a05:log:19', 'hash': '0x2a862a46079f909b4ad3933711e7ec43a9dcc770146795c2da254d6e53511a05', 'from': '0x377c1cd7b27cde8f1c2ee51657b116d17f20e201', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T12:19:07.000Z'}}, {'blockNum': '0x9046d1', 'uniqueId': '0x22a4b5562fa7d90ac9f62085629c15ff75de9563e371779fe4855fe4fe440e93:log:1', 'hash': '0x22a4b5562fa7d90ac9f62085629c15ff75de9563e371779fe4855fe4fe440e93', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6e7c9cd92d01ac5e139a983cc5a06b24e64d3d6c', 'value': 24870.1066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0544360fe93a59e68000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T13:15:02.000Z'}}, {'blockNum': '0x904713', 'uniqueId': '0x7615a278eeb0748eb356fe63932d0ec08187144fb5d94e75ce45c5dff2d8d158:log:26', 'hash': '0x7615a278eeb0748eb356fe63932d0ec08187144fb5d94e75ce45c5dff2d8d158', 'from': '0x6e7c9cd92d01ac5e139a983cc5a06b24e64d3d6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24870.1066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0544360fe93a59e68000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T13:29:01.000Z'}}, {'blockNum': '0x904786', 'uniqueId': '0x62f6dc75a3f5a9987a3e5ed0fe7258c00a49dac6692b3366be41d2ea3c0cd36f:log:25', 'hash': '0x62f6dc75a3f5a9987a3e5ed0fe7258c00a49dac6692b3366be41d2ea3c0cd36f', 'from': '0x10d6bc851e1c64234a9b38b0277fff131e64e192', 'to': '0xdb3b046cf0735a79622babcad10f1060218774a7', 'value': 2060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x6fac3e2da6f8b00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T13:53:08.000Z'}}, {'blockNum': '0x90478c', 'uniqueId': '0xbef4121298a11961c847455ae974f073a240efa8212ad3a1fa45ce407edc0273:log:27', 'hash': '0xbef4121298a11961c847455ae974f073a240efa8212ad3a1fa45ce407edc0273', 'from': '0x1c0d46340a1df3a67c93d92037350f2d99756a6d', 'to': '0xdb3b046cf0735a79622babcad10f1060218774a7', 'value': 19192.28782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04106a7f7730ec20c000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T13:54:15.000Z'}}, {'blockNum': '0x9047b1', 'uniqueId': '0x2061e457c361e568725a87523d90562c3bb2ed9400722301c20438752b8ca0a6:log:53', 'hash': '0x2061e457c361e568725a87523d90562c3bb2ed9400722301c20438752b8ca0a6', 'from': '0xdb3b046cf0735a79622babcad10f1060218774a7', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 22060.96718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x04abed6bde324b0cc000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T14:00:40.000Z'}}, {'blockNum': '0x9048ec', 'uniqueId': '0x4721b762f8b4c18e09a1904802f7a548875c7685b937b176b7b96f3edc95c44f:log:0', 'hash': '0x4721b762f8b4c18e09a1904802f7a548875c7685b937b176b7b96f3edc95c44f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 31642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06b350f6397fbe280000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T15:10:58.000Z'}}, {'blockNum': '0x904910', 'uniqueId': '0x63926e134d2856b87a6bc6e4346de9ca229c2422307011baa998e231438efc94:log:137', 'hash': '0x63926e134d2856b87a6bc6e4346de9ca229c2422307011baa998e231438efc94', 'from': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 31642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06b350f6397fbe280000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T15:20:35.000Z'}}, {'blockNum': '0x904925', 'uniqueId': '0xd3ff364ec2177d4ae9ac5af19677766bf6c2ef182da946891419d5d25933d60e:log:113', 'hash': '0xd3ff364ec2177d4ae9ac5af19677766bf6c2ef182da946891419d5d25933d60e', 'from': '0x4bae9c13d53c982d04e921c1fb77ed6369b5ce4b', 'to': '0x915d6f41640bdde7bb054dd2ce06c4ddf67c457f', 'value': 3891.8482741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xd2fa3e9965e7960800', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T15:26:51.000Z'}}, {'blockNum': '0x9049ff', 'uniqueId': '0x77786cc063f6ebd8fbf345d26a6cb62cb89889e0b4f28bc0324ef27e7e2a3b69:log:25', 'hash': '0x77786cc063f6ebd8fbf345d26a6cb62cb89889e0b4f28bc0324ef27e7e2a3b69', 'from': '0x915d6f41640bdde7bb054dd2ce06c4ddf67c457f', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 3891.8482741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0xd2fa3e9965e7960800', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T16:13:12.000Z'}}, {'blockNum': '0x904b0e', 'uniqueId': '0xf27bbc9ecf90f4e8380a970f955239826c5a33dc465a9f772715c484f4025ecc:log:22', 'hash': '0xf27bbc9ecf90f4e8380a970f955239826c5a33dc465a9f772715c484f4025ecc', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x22d09786f0c0f987748f54631181f661fa3bcf6c', 'value': 2.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1db2cea96b560000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T17:10:27.000Z'}}, {'blockNum': '0x904c19', 'uniqueId': '0x97276b457fa027c4dba6f3083215306677604dc472112463f28b63177d1e4299:log:62', 'hash': '0x97276b457fa027c4dba6f3083215306677604dc472112463f28b63177d1e4299', 'from': '0x9ab9c3c1a3edd182491c8db18e12a2aa9599ada5', 'to': '0x672710abca4aebcdc57ed2fc9f444cf3fddcb652', 'value': 596.27502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x2052fa6b7d52f0c000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T18:03:56.000Z'}}, {'blockNum': '0x904d4a', 'uniqueId': '0xaec439e441dfe756950151300a1dded6e15df8932d0a08eb63b8556d1f863e4a:log:191', 'hash': '0xaec439e441dfe756950151300a1dded6e15df8932d0a08eb63b8556d1f863e4a', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'value': 11615.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0275b2fed252fbf60000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T19:08:46.000Z'}}, {'blockNum': '0x904d9d', 'uniqueId': '0xbdf998deaee05c91ab46624ff8afc7e489bbc5a320d6e8ea7bf7cbece7935074:log:5', 'hash': '0xbdf998deaee05c91ab46624ff8afc7e489bbc5a320d6e8ea7bf7cbece7935074', 'from': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11615.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0275b2fed252fbf60000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T19:29:07.000Z'}}, {'blockNum': '0x904e11', 'uniqueId': '0xeb1177d040e07903f1f6b7fad4b067fc2c9658dd8b97a389ecd2f981322496d3:log:3', 'hash': '0xeb1177d040e07903f1f6b7fad4b067fc2c9658dd8b97a389ecd2f981322496d3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5f6034ba1ffef3c88d76200c0a47e3882af51e1d', 'value': 19819.031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0432644e88c5fed58000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T19:53:48.000Z'}}, {'blockNum': '0x904e35', 'uniqueId': '0xde1f04cdbbb16ef0e26cc5f833adfc74cdedfe0b01da251d785893bb38accce0:log:49', 'hash': '0xde1f04cdbbb16ef0e26cc5f833adfc74cdedfe0b01da251d785893bb38accce0', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 26801.91397473501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05acef466565320eff80', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:00:55.000Z'}}, {'blockNum': '0x904e39', 'uniqueId': '0x54240d8a77f7e26329d3774afbf64909a97e0d9d9b12e156574255e52bf94d30:log:73', 'hash': '0x54240d8a77f7e26329d3774afbf64909a97e0d9d9b12e156574255e52bf94d30', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 26801.91397473501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05acef466565320eff80', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:02:01.000Z'}}, {'blockNum': '0x904e3a', 'uniqueId': '0xfab9412a6849fca41fdcf1d0b4d7080d7d7cf0914417b01a0b9717df20e9f2e0:log:5', 'hash': '0xfab9412a6849fca41fdcf1d0b4d7080d7d7cf0914417b01a0b9717df20e9f2e0', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 103189.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15d9e7359da83fd20000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:02:14.000Z'}}, {'blockNum': '0x904e42', 'uniqueId': '0xb25de5c509b198a2b02a91018f38d3208204aa239fa51082aba0a4ea44cdd42a:log:61', 'hash': '0xb25de5c509b198a2b02a91018f38d3208204aa239fa51082aba0a4ea44cdd42a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 13331.232342541029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02d2b0037fa51c9a23f0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:05:14.000Z'}}, {'blockNum': '0x904e44', 'uniqueId': '0x729e3e4e5447322c65464607a62bccc74a49238f27421b3a605a9cef933a2807:log:4', 'hash': '0x729e3e4e5447322c65464607a62bccc74a49238f27421b3a605a9cef933a2807', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 145621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1ed621569ee026340000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:06:45.000Z'}}, {'blockNum': '0x904e45', 'uniqueId': '0x620348fd0a89d1dfe13ed913b6b373ce0141753ced38c32a8018e8410021e451:log:26', 'hash': '0x620348fd0a89d1dfe13ed913b6b373ce0141753ced38c32a8018e8410021e451', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 13331.232342541029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02d2b0037fa51c9a23f0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:06:58.000Z'}}, {'blockNum': '0x904e46', 'uniqueId': '0xfd3f755fa35a6208ae1a8799d39ad7187d5c5d8745c8f16914eb8f4928802cde:log:83', 'hash': '0xfd3f755fa35a6208ae1a8799d39ad7187d5c5d8745c8f16914eb8f4928802cde', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 9822.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x021477cb91396746bdc0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:07:51.000Z'}}, {'blockNum': '0x904e4c', 'uniqueId': '0x828cd121566b388f7869dc5336a20088b310b5b4aecdc6552e12c902d60f693e:log:1', 'hash': '0x828cd121566b388f7869dc5336a20088b310b5b4aecdc6552e12c902d60f693e', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 115734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1881f3e4e6fcf2980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:08:31.000Z'}}, {'blockNum': '0x904e4d', 'uniqueId': '0x2634c1eba54a5fd711a2ee4f89501e7a3c05d4c1abbea16025392920a68a3704:log:2', 'hash': '0x2634c1eba54a5fd711a2ee4f89501e7a3c05d4c1abbea16025392920a68a3704', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 197104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x29bd077cf24051c00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:08:46.000Z'}}, {'blockNum': '0x904e4d', 'uniqueId': '0xf4002cffa700eeb88d50985266ed48f2054d9f78e9ba966555b3ea28bff05714:log:3', 'hash': '0xf4002cffa700eeb88d50985266ed48f2054d9f78e9ba966555b3ea28bff05714', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 61661.342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0d0eab052d3562830000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:08:46.000Z'}}, {'blockNum': '0x904e4e', 'uniqueId': '0x02b09b74baef8a08cc4614eb0a8baac25533bd2764a9dddad7e002a8178200f3:log:7', 'hash': '0x02b09b74baef8a08cc4614eb0a8baac25533bd2764a9dddad7e002a8178200f3', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26801.91397473501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05acef466565320eff80', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:09:14.000Z'}}, {'blockNum': '0x904e4e', 'uniqueId': '0xaef44c5d2b34a8336407786ffbc32fb9f7617d4de078433be5667a4ea150665d:log:8', 'hash': '0xaef44c5d2b34a8336407786ffbc32fb9f7617d4de078433be5667a4ea150665d', 'from': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13331.232342541029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02d2b0037fa51c9a23f0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:09:14.000Z'}}, {'blockNum': '0x904e4f', 'uniqueId': '0xcd1a09fadaa1acb7369ff325a828a2362cd95d2d154119af824f129c01c7ef1e:log:47', 'hash': '0xcd1a09fadaa1acb7369ff325a828a2362cd95d2d154119af824f129c01c7ef1e', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0xec0aa21553524f464e835a7a496c3ff709a016bb', 'value': 63104.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0d5ce6dc58079db20000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:09:21.000Z'}}, {'blockNum': '0x904e56', 'uniqueId': '0x48c8f466b6f4b3a47878bf3e9825004a93df9c3970a167e76cd0a5a6d8fffd95:log:27', 'hash': '0x48c8f466b6f4b3a47878bf3e9825004a93df9c3970a167e76cd0a5a6d8fffd95', 'from': '0x61d1b4ee647ed7b337ebf13917ecdaa8a17f30f7', 'to': '0xf2b79c13636e9ce3f766ecbfce3748aee810adb5', 'value': 460376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x617d08709769e2600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:11:53.000Z'}}, {'blockNum': '0x904e58', 'uniqueId': '0x85c4edce79c74174917c98502849245008327fcda0c38cd5bceb8aa920df3371:log:30', 'hash': '0x85c4edce79c74174917c98502849245008327fcda0c38cd5bceb8aa920df3371', 'from': '0xf2b79c13636e9ce3f766ecbfce3748aee810adb5', 'to': '0x328a21786314ec74ff13a1aab8ad3eb056724e45', 'value': 460376.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x617d1471b054a5168000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:12:33.000Z'}}, {'blockNum': '0x904e58', 'uniqueId': '0xba723231886a7cd2cab57c957165a80369f50d1176c2853df783a091756eb387:log:32', 'hash': '0xba723231886a7cd2cab57c957165a80369f50d1176c2853df783a091756eb387', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0xcdfbb4c66852b62ca488943942f9c544029deb91', 'value': 7940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01ae6da29c13b9900000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:12:33.000Z'}}, {'blockNum': '0x904e69', 'uniqueId': '0x9e318e266c98d82ffd75675ea4e156295f07725acce4bf868a74e69ba1ecd184:log:49', 'hash': '0x9e318e266c98d82ffd75675ea4e156295f07725acce4bf868a74e69ba1ecd184', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 9356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01fb30952dc99ab00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:15:53.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x1d3f277c22511352cfed0409a88720a4aa8d23d82793aea57c470b3685d88879:log:16', 'hash': '0x1d3f277c22511352cfed0409a88720a4aa8d23d82793aea57c470b3685d88879', 'from': '0x328a21786314ec74ff13a1aab8ad3eb056724e45', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 460376.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x617d1471b054a5168000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x1b500cd597336d8cd72d76d99e93c51c3ff1cc35c1d981bfdbf6d6b79a359a48:log:21', 'hash': '0x1b500cd597336d8cd72d76d99e93c51c3ff1cc35c1d981bfdbf6d6b79a359a48', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 61661.342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0d0eab052d3562830000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0xe3f86152fceb814d1c7084dc262e2031df38ffe8a3afefcfa496a0c04a7aec98:log:22', 'hash': '0xe3f86152fceb814d1c7084dc262e2031df38ffe8a3afefcfa496a0c04a7aec98', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 103189.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15d9e7359da83fd20000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x46201997ed4b1e34498b195df3a98a340d101f35683a8ac03d2955fb1de2da3a:log:26', 'hash': '0x46201997ed4b1e34498b195df3a98a340d101f35683a8ac03d2955fb1de2da3a', 'from': '0xec0aa21553524f464e835a7a496c3ff709a016bb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63104.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0d5ce6dc58079db20000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0xf527fd28e728e218ac58d0047e7804d747d2461cd771cf42ca2f79ed3da70668:log:28', 'hash': '0xf527fd28e728e218ac58d0047e7804d747d2461cd771cf42ca2f79ed3da70668', 'from': '0xcdfbb4c66852b62ca488943942f9c544029deb91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01ae6da29c13b9900000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0xcf5a58a7dc5294048bdc9b00c9850696149d529d1cea1c57762fadb54b41dbd6:log:29', 'hash': '0xcf5a58a7dc5294048bdc9b00c9850696149d529d1cea1c57762fadb54b41dbd6', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19178.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x040fa860bf0301f6bdc0', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0xd3d19e5d5228d99fa986eabddeb694143e5395351e14fdee848f9f23cefe8145:log:32', 'hash': '0xd3d19e5d5228d99fa986eabddeb694143e5395351e14fdee848f9f23cefe8145', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 197104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x29bd077cf24051c00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x1b3fb8ebb12b8a05ee62cdc44cef38da823101b948c0af434c28518f9533349e:log:34', 'hash': '0x1b3fb8ebb12b8a05ee62cdc44cef38da823101b948c0af434c28518f9533349e', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 115734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1881f3e4e6fcf2980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e7e', 'uniqueId': '0x83003888d2e079f65f02897795ee7420ca2ed5910ad1afb951afe871135bece6:log:40', 'hash': '0x83003888d2e079f65f02897795ee7420ca2ed5910ad1afb951afe871135bece6', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x060e11201967bf009810e23659c580a825a92628', 'value': 29982.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0659605a10c6e51f0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:19:00.000Z'}}, {'blockNum': '0x904e89', 'uniqueId': '0x75a3c755c83293d455f17d094c7743a8fad63115bd68870f56941013361085a4:log:1', 'hash': '0x75a3c755c83293d455f17d094c7743a8fad63115bd68870f56941013361085a4', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 69171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ea5c475e055d0ec0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:21:32.000Z'}}, {'blockNum': '0x904e91', 'uniqueId': '0x09d7ded8f93ab6ab8c5c40046ab13285c95e1414f3bbcdf50c261f148d674785:log:0', 'hash': '0x09d7ded8f93ab6ab8c5c40046ab13285c95e1414f3bbcdf50c261f148d674785', 'from': '0x53b88d86582555eaca01b205a2f620eca477562a', 'to': '0x323ae8c3404090c4ffe35c16fc9ee5f6fb4da7d3', 'value': 2938.84724379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x9f50b2cd8c06c30c00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:22:45.000Z'}}, {'blockNum': '0x904e95', 'uniqueId': '0x6c7c451ab88f06322ac7d9ca7a0299227b7486978249977251b810067a660d0b:log:73', 'hash': '0x6c7c451ab88f06322ac7d9ca7a0299227b7486978249977251b810067a660d0b', 'from': '0x5f6034ba1ffef3c88d76200c0a47e3882af51e1d', 'to': '0x1f8de64e08d33f20d21ec80b2dc1eb81f691860e', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:23:10.000Z'}}, {'blockNum': '0x904ea2', 'uniqueId': '0xaff89dbd1aac1c9e81810c14dd5b39ba9f835632b2a1a4101d03adec8c429468:log:37', 'hash': '0xaff89dbd1aac1c9e81810c14dd5b39ba9f835632b2a1a4101d03adec8c429468', 'from': '0x060e11201967bf009810e23659c580a825a92628', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 29982.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0659605a10c6e51f0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:24:52.000Z'}}, {'blockNum': '0x904ebe', 'uniqueId': '0xda2468a1b3e83a7aebee1338c13f491d515817cc9eefd54a25b26ceeec404a78:log:20', 'hash': '0xda2468a1b3e83a7aebee1338c13f491d515817cc9eefd54a25b26ceeec404a78', 'from': '0x1f8de64e08d33f20d21ec80b2dc1eb81f691860e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:28:53.000Z'}}, {'blockNum': '0x904ebe', 'uniqueId': '0xdf75e9589e2ab14f092a31d87131aee718d4e281a790ffcdc1021cd001cd5cbf:log:35', 'hash': '0xdf75e9589e2ab14f092a31d87131aee718d4e281a790ffcdc1021cd001cd5cbf', 'from': '0x323ae8c3404090c4ffe35c16fc9ee5f6fb4da7d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2938.84724379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x9f50b2cd8c06c30c00', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:28:53.000Z'}}, {'blockNum': '0x904ebe', 'uniqueId': '0x4c6ee6cbaa62727998b40c9bc6cb8e0adc521be1658ee0fbfd2349748620321a:log:41', 'hash': '0x4c6ee6cbaa62727998b40c9bc6cb8e0adc521be1658ee0fbfd2349748620321a', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ea5c475e055d0ec0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:28:53.000Z'}}, {'blockNum': '0x904edc', 'uniqueId': '0x287ab2cdebcebba433f7fa127c94e700b6fe3e4a877b5ade6f3ee9aa777a2bfa:log:0', 'hash': '0x287ab2cdebcebba433f7fa127c94e700b6fe3e4a877b5ade6f3ee9aa777a2bfa', 'from': '0x06dab868bf9b2b3f75908360283fb2b894812dfb', 'to': '0x496c4996464c813c054e93493360baa1f9e343aa', 'value': 41205.353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x08b9bf253e2ee86a8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:37:40.000Z'}}, {'blockNum': '0x904ef5', 'uniqueId': '0xcd6f996cdd95d18fb3de3f4595743909961f56f4e40af7597a810ed99316a545:log:7', 'hash': '0xcd6f996cdd95d18fb3de3f4595743909961f56f4e40af7597a810ed99316a545', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:41:50.000Z'}}, {'blockNum': '0x904eff', 'uniqueId': '0x3e40ef0fee5a6af87bd9054ac1c791cc26f5b0f681d699397bfaa826a0697414:log:40', 'hash': '0x3e40ef0fee5a6af87bd9054ac1c791cc26f5b0f681d699397bfaa826a0697414', 'from': '0x496c4996464c813c054e93493360baa1f9e343aa', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 41205.353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x08b9bf253e2ee86a8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:42:29.000Z'}}, {'blockNum': '0x904eff', 'uniqueId': '0x51d829e86aa325becb068a2b366d4f0fdaba49abd32fa75f9d33429075e1943c:log:41', 'hash': '0x51d829e86aa325becb068a2b366d4f0fdaba49abd32fa75f9d33429075e1943c', 'from': '0xa79a45ed456fbccb48f192b31846b07f96fcb0d4', 'to': '0x173a8b18ee40f0cfa067ecc22444dc7e487755e4', 'value': 5400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0124bc0ddd92e5600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:42:29.000Z'}}, {'blockNum': '0x904f1e', 'uniqueId': '0x4fe34fdec0c8decc3b858a1cd42e735f840a074107cbac356d1abb5a2111c32e:log:3', 'hash': '0x4fe34fdec0c8decc3b858a1cd42e735f840a074107cbac356d1abb5a2111c32e', 'from': '0x5f58d619ae9714743fd0cc2bdd5b871d6a44c680', 'to': '0x36111519695021fda7b390854cea4bb0a5930d05', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:50:39.000Z'}}, {'blockNum': '0x904f20', 'uniqueId': '0x8a6199adf088427ebb3c0774084a0d8eed6a85ab137be2120c455e2c802090f2:log:2', 'hash': '0x8a6199adf088427ebb3c0774084a0d8eed6a85ab137be2120c455e2c802090f2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 82365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x117103fe2786f8d40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:52:05.000Z'}}, {'blockNum': '0x904f22', 'uniqueId': '0xee1d205bd72708e4e40a787e2387225f0125984c45e55c9f018e68ebc0425831:log:106', 'hash': '0xee1d205bd72708e4e40a787e2387225f0125984c45e55c9f018e68ebc0425831', 'from': '0xad1d10f870110838342f0d8771fd6351c864ec3e', 'to': '0x6f65fa3437ad48f83031c8d6e1d5742166fea585', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:52:57.000Z'}}, {'blockNum': '0x904f2b', 'uniqueId': '0x88b26f6b347715055705499d94507b39734a909da9de2eb87e66e7a4f3176e91:log:71', 'hash': '0x88b26f6b347715055705499d94507b39734a909da9de2eb87e66e7a4f3176e91', 'from': '0xf9865219a179120be194cef843ff3957bd49ed83', 'to': '0xd46548c6fc01b70e767dc0b33ec62ab77c3e58d1', 'value': 20004.02668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c6ba3379594ab8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:55:07.000Z'}}, {'blockNum': '0x904f30', 'uniqueId': '0x3cd87277e9c1d2383eaaaa1e1dcb0914f96f9dfd2cf74de4e364c74edf83551d:log:5', 'hash': '0x3cd87277e9c1d2383eaaaa1e1dcb0914f96f9dfd2cf74de4e364c74edf83551d', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 139370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1d8343496a17cf680000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:56:48.000Z'}}, {'blockNum': '0x904f33', 'uniqueId': '0xcad1ad964e7873a95a4874b32f6c2a6d95a86c72b14105adf661629efc2cd0ae:log:1', 'hash': '0xcad1ad964e7873a95a4874b32f6c2a6d95a86c72b14105adf661629efc2cd0ae', 'from': '0x15f82ce2a2e0c79b70d286f26350acd382499e14', 'to': '0xcd9b0f8da28a263dc7f23376a5dde0b3113e792a', 'value': 89917.49442165424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x130a6fe86530fce147b5', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:56:56.000Z'}}, {'blockNum': '0x904f37', 'uniqueId': '0x8480c3da12e93ec00c13148cb13d8c28c4df36a6ce4ec24c26bd2f2aef28c1d5:log:2', 'hash': '0x8480c3da12e93ec00c13148cb13d8c28c4df36a6ce4ec24c26bd2f2aef28c1d5', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:58:56.000Z'}}, {'blockNum': '0x904f37', 'uniqueId': '0xef1efe71f5a976da4706742250f53485eadd57d9f06544e6b9c6c8aeeae95c37:log:3', 'hash': '0xef1efe71f5a976da4706742250f53485eadd57d9f06544e6b9c6c8aeeae95c37', 'from': '0x173a8b18ee40f0cfa067ecc22444dc7e487755e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0124bc0ddd92e5600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:58:56.000Z'}}, {'blockNum': '0x904f38', 'uniqueId': '0x0a73c2b65ae3627186323ae571ee3e260822dfb11f5dd1abab85ad9cdb13f66b:log:0', 'hash': '0x0a73c2b65ae3627186323ae571ee3e260822dfb11f5dd1abab85ad9cdb13f66b', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x117103fe2786f8d40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:59:06.000Z'}}, {'blockNum': '0x904f38', 'uniqueId': '0x14a491abd8486e0d54018f38cf36a006a07f601078f340a071e835d6126ead75:log:8', 'hash': '0x14a491abd8486e0d54018f38cf36a006a07f601078f340a071e835d6126ead75', 'from': '0x36111519695021fda7b390854cea4bb0a5930d05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0144b7f2ef9eadd80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T20:59:06.000Z'}}, {'blockNum': '0x904f47', 'uniqueId': '0xf5c07dc917c6fc7109dd890d34283698c09c21f54e4cc2b5f176cacf32847847:log:0', 'hash': '0xf5c07dc917c6fc7109dd890d34283698c09c21f54e4cc2b5f176cacf32847847', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:01:36.000Z'}}, {'blockNum': '0x904f59', 'uniqueId': '0x08a0672b7231de129b061bc7bf894939d995fa3f33337cb53b321fac6f1812f8:log:3', 'hash': '0x08a0672b7231de129b061bc7bf894939d995fa3f33337cb53b321fac6f1812f8', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 248010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3484a6277ab434e80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:05:50.000Z'}}, {'blockNum': '0x904f59', 'uniqueId': '0x834818de5211bd5b66298aea9eb9d2e99a07d0df39487d5b55d4cd0301603e78:log:4', 'hash': '0x834818de5211bd5b66298aea9eb9d2e99a07d0df39487d5b55d4cd0301603e78', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 113225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x17f9f086483d63840000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:05:50.000Z'}}, {'blockNum': '0x904f5c', 'uniqueId': '0x6a73ff28a32645a54478d95540779bff58d737e37e81109ad772244dd0b30207:log:10', 'hash': '0x6a73ff28a32645a54478d95540779bff58d737e37e81109ad772244dd0b30207', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 31512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06ac44d97244bd600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:06:35.000Z'}}, {'blockNum': '0x904f6c', 'uniqueId': '0x93e47ee81c29fb2fb515f1ddd50d1bdf46389a5298f2749d683befa1d4f542a5:log:0', 'hash': '0x93e47ee81c29fb2fb515f1ddd50d1bdf46389a5298f2749d683befa1d4f542a5', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:09:05.000Z'}}, {'blockNum': '0x904f6c', 'uniqueId': '0x8c1f93fb70fef4e9070859f037981358b2d3ccf0eeaca7ca380062c66dbddac6:log:5', 'hash': '0x8c1f93fb70fef4e9070859f037981358b2d3ccf0eeaca7ca380062c66dbddac6', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 139370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1d8343496a17cf680000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:09:05.000Z'}}, {'blockNum': '0x904f6d', 'uniqueId': '0x25c184174a38731ac0fd23418eeb4eae042e8d6db9da1466aae5ab023115ec3e:log:18', 'hash': '0x25c184174a38731ac0fd23418eeb4eae042e8d6db9da1466aae5ab023115ec3e', 'from': '0xcd9b0f8da28a263dc7f23376a5dde0b3113e792a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 89917.49442165424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x130a6fe86530fce147b5', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:09:35.000Z'}}, {'blockNum': '0x904f6d', 'uniqueId': '0xef07f9b7bcae533fa2e22d1c1fd659e343a7ca3714ae8882d9ad03db78c93a3f:log:19', 'hash': '0xef07f9b7bcae533fa2e22d1c1fd659e343a7ca3714ae8882d9ad03db78c93a3f', 'from': '0xd46548c6fc01b70e767dc0b33ec62ab77c3e58d1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20004.02668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x043c6ba3379594ab8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:09:35.000Z'}}, {'blockNum': '0x904f6e', 'uniqueId': '0x801c275aba8167566282c307f9805f731cb0aa2fa2f4b4572773db1599b2061f:log:78', 'hash': '0x801c275aba8167566282c307f9805f731cb0aa2fa2f4b4572773db1599b2061f', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 24609.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05361831d238a2aa0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:10:03.000Z'}}, {'blockNum': '0x904f7b', 'uniqueId': '0x63c7109c8c1aa1db1fc31b0b74011786ca9c37a94de27038be07a414cfe3699f:log:2', 'hash': '0x63c7109c8c1aa1db1fc31b0b74011786ca9c37a94de27038be07a414cfe3699f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 8368.59603245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c5a99998ca8d9b1400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:12:56.000Z'}}, {'blockNum': '0x904f88', 'uniqueId': '0xface6e45f8955ca1318bfef0fe927ee5f42b7a39c9ce9cfbc8394cef323da45a:log:60', 'hash': '0xface6e45f8955ca1318bfef0fe927ee5f42b7a39c9ce9cfbc8394cef323da45a', 'from': '0xad66ece9bf8c71870aecdaf01b06dcf4b3c2f579', 'to': '0xaf09984a8114124939b4153c96c7f4ce0f0c88ee', 'value': 8330, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c391f8f1c4bbe80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:16:10.000Z'}}, {'blockNum': '0x904f8a', 'uniqueId': '0xfbdbd995531554342016d2b6c062e7a8d30240c24d591a1a8e75f25890e265f7:log:11', 'hash': '0xfbdbd995531554342016d2b6c062e7a8d30240c24d591a1a8e75f25890e265f7', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'value': 29982.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0659605a10c6e51f0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:16:18.000Z'}}, {'blockNum': '0x904f90', 'uniqueId': '0xb7e2eccd876425bd063d6a5996b7ce5a44da03d75b3e43ae068f26ca6de7c74d:log:46', 'hash': '0xb7e2eccd876425bd063d6a5996b7ce5a44da03d75b3e43ae068f26ca6de7c74d', 'from': '0x5dcacc7ba7a2abca17fe23ef06c6450eb3e58a3a', 'to': '0x8feaa6cb615a910aa6558237f442108f87e51b76', 'value': 150050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1fc63a0f810723480000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:18:18.000Z'}}, {'blockNum': '0x904f91', 'uniqueId': '0xb0b21d1b410feb4dde20597ee64b06b9423be20c4974d172e524dcd48277e1f5:log:6', 'hash': '0xb0b21d1b410feb4dde20597ee64b06b9423be20c4974d172e524dcd48277e1f5', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8368.59603245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c5a99998ca8d9b1400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:17.000Z'}}, {'blockNum': '0x904f91', 'uniqueId': '0x6b2a9773fa7d9b6584c75443b59192e09f482c06b6588d5463f85c6afabbce05:log:9', 'hash': '0x6b2a9773fa7d9b6584c75443b59192e09f482c06b6588d5463f85c6afabbce05', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24609.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x05361831d238a2aa0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:17.000Z'}}, {'blockNum': '0x904f91', 'uniqueId': '0xd6d7953f5b936190a91595f032d89b2d5000d2086992f57eb3d0b4756073e58e:log:10', 'hash': '0xd6d7953f5b936190a91595f032d89b2d5000d2086992f57eb3d0b4756073e58e', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 248010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3484a6277ab434e80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:17.000Z'}}, {'blockNum': '0x904f91', 'uniqueId': '0xb19cc86f1549d87b116122f9e0d52cfcbf4ba7ffb246b5c5f0fe5d8f918d82a2:log:11', 'hash': '0xb19cc86f1549d87b116122f9e0d52cfcbf4ba7ffb246b5c5f0fe5d8f918d82a2', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x17f9f086483d63840000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:17.000Z'}}, {'blockNum': '0x904f94', 'uniqueId': '0x4478cce21f90f88c7ecdfba820794ebd6371c55fad270a2b0a08d7a74c3c45d1:log:34', 'hash': '0x4478cce21f90f88c7ecdfba820794ebd6371c55fad270a2b0a08d7a74c3c45d1', 'from': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 31512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06ac44d97244bd600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:19:55.000Z'}}, {'blockNum': '0x904f98', 'uniqueId': '0x4a42d73e097be85b1acf08e3ecb5337c222d3b3ada651ecd3c6371e196440073:log:0', 'hash': '0x4a42d73e097be85b1acf08e3ecb5337c222d3b3ada651ecd3c6371e196440073', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:21:07.000Z'}}, {'blockNum': '0x904f9e', 'uniqueId': '0x7c0e9cbb79421beaa7b1dc2e5d539437222cfe3076e80957ca4219caae2b619f:log:0', 'hash': '0x7c0e9cbb79421beaa7b1dc2e5d539437222cfe3076e80957ca4219caae2b619f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 1951281.4275232065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x019d332d9ac045b4c68b7c', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:21:38.000Z'}}, {'blockNum': '0x904fa7', 'uniqueId': '0x2d736b365380e839dc719c3afaee9b59776cf51375cde3e06aef395e6ca77b1c:log:8', 'hash': '0x2d736b365380e839dc719c3afaee9b59776cf51375cde3e06aef395e6ca77b1c', 'from': '0xfd90a87ee40ef261b7bb9d53f9eb70238cb8dcf8', 'to': '0x11cb43f6cc738da53cd4a8420416fca9d701fe14', 'value': 160.423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x08b250fc8ae27d8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:22:52.000Z'}}, {'blockNum': '0x904fbb', 'uniqueId': '0xd62bf57502a7ca26e91b1e9b9c1d240ad88c8419671abcf524fd06a3e3ab6e96:log:49', 'hash': '0xd62bf57502a7ca26e91b1e9b9c1d240ad88c8419671abcf524fd06a3e3ab6e96', 'from': '0x16a9e0ffae29f114d851c071e949ade2e1c88eb3', 'to': '0x84b2cd428667e09f35aabee85cfe8b75b202bda6', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:26:49.000Z'}}, {'blockNum': '0x904fc8', 'uniqueId': '0x3f7ee67f20d1490c695f7e53972967b51f3689164b8fc5411542229a0a19d72e:log:6', 'hash': '0x3f7ee67f20d1490c695f7e53972967b51f3689164b8fc5411542229a0a19d72e', 'from': '0xaf09984a8114124939b4153c96c7f4ce0f0c88ee', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8330, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01c391f8f1c4bbe80000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:28:54.000Z'}}, {'blockNum': '0x904fc8', 'uniqueId': '0x773e1820d05b32cd6b4a4fb9d8ed13f31cd5420138df86c68f2ed332772d55c3:log:7', 'hash': '0x773e1820d05b32cd6b4a4fb9d8ed13f31cd5420138df86c68f2ed332772d55c3', 'from': '0x6e07bf1e7725e322b691247cedf48e1589e886eb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29982.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0659605a10c6e51f0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:28:54.000Z'}}, {'blockNum': '0x904fc8', 'uniqueId': '0xbb317b37fba9e4913703d165d2fa76e08320321f3e630d76f6db96574f383ca0:log:23', 'hash': '0xbb317b37fba9e4913703d165d2fa76e08320321f3e630d76f6db96574f383ca0', 'from': '0x8feaa6cb615a910aa6558237f442108f87e51b76', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1fc63a0f810723480000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:28:54.000Z'}}, {'blockNum': '0x904fc8', 'uniqueId': '0x172424f5c320253bf4855f5edc5e599680a8e5314b33f10742752ee9b5468066:log:24', 'hash': '0x172424f5c320253bf4855f5edc5e599680a8e5314b33f10742752ee9b5468066', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:28:54.000Z'}}, {'blockNum': '0x904ff0', 'uniqueId': '0x8352579849589a7e03e7682aaa3a39e5cabd08868dc0fcf07f3ed3f5485df2a0:log:4', 'hash': '0x8352579849589a7e03e7682aaa3a39e5cabd08868dc0fcf07f3ed3f5485df2a0', 'from': '0x84b2cd428667e09f35aabee85cfe8b75b202bda6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:39:09.000Z'}}, {'blockNum': '0x904ffb', 'uniqueId': '0x0aaf6b6cc74a2fd08f9edaaf1dca7af46b814fe267c669c9418b372e46b38837:log:5', 'hash': '0x0aaf6b6cc74a2fd08f9edaaf1dca7af46b814fe267c669c9418b372e46b38837', 'from': '0x7237aad952597ffb76a5e4ddda4d417814f941e0', 'to': '0x0c333fd44e5447d99ab51fc8a2ee41dcc09fa4a4', 'value': 963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34344f45cead2c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:42:30.000Z'}}, {'blockNum': '0x905039', 'uniqueId': '0xe310906caabadf95da887364e38db3b3ca1cfbf42b29fdbd6d77ff2123e23a74:log:4', 'hash': '0xe310906caabadf95da887364e38db3b3ca1cfbf42b29fdbd6d77ff2123e23a74', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 81686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x114c34f99105fe980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:55:05.000Z'}}, {'blockNum': '0x90504e', 'uniqueId': '0x09e0b0559d90039268beb3e5321853642b1845aa95a839fbcf580423cf428a8c:log:2', 'hash': '0x09e0b0559d90039268beb3e5321853642b1845aa95a839fbcf580423cf428a8c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x06197c485e83880bc1741b4fc1fc81c329e7dd4a', 'value': 1967.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x6aae193f9e73360000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:58:47.000Z'}}, {'blockNum': '0x90504e', 'uniqueId': '0x21c328619ddb522bff879086be34fd18cfb50a627ad67179ce4eb9e183408a60:log:38', 'hash': '0x21c328619ddb522bff879086be34fd18cfb50a627ad67179ce4eb9e183408a60', 'from': '0x01368f7aa6f1ad5d0ce99b0f37e994e874f630b4', 'to': '0xdb02ed2a11a835951fa47d443b0ea6c666f35199', 'value': 24986.50676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x054a85705a0890888000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:58:47.000Z'}}, {'blockNum': '0x905050', 'uniqueId': '0x817975cf2d308eda4f8980def7aafc1a9c9a0c06007a040801b3f3ce06cea070:log:6', 'hash': '0x817975cf2d308eda4f8980def7aafc1a9c9a0c06007a040801b3f3ce06cea070', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 81686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x114c34f99105fe980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T21:59:06.000Z'}}, {'blockNum': '0x905055', 'uniqueId': '0x7c4ca192f77ef3c1bd0e420e9ccc7b579af5197bcac3f3ed5cdb56c4309b6e00:log:153', 'hash': '0x7c4ca192f77ef3c1bd0e420e9ccc7b579af5197bcac3f3ed5cdb56c4309b6e00', 'from': '0x06197c485e83880bc1741b4fc1fc81c329e7dd4a', 'to': '0x0c333fd44e5447d99ab51fc8a2ee41dcc09fa4a4', 'value': 1967.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x6aae193f9e73360000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:00:57.000Z'}}, {'blockNum': '0x905057', 'uniqueId': '0xbab70c7b648c96c809dabb69dc0418c45cdbd16fcd13da9cf5f66c5da2b6c2b1:log:220', 'hash': '0xbab70c7b648c96c809dabb69dc0418c45cdbd16fcd13da9cf5f66c5da2b6c2b1', 'from': '0x0c333fd44e5447d99ab51fc8a2ee41dcc09fa4a4', 'to': '0x372c31ea1b3e0f9fd53448c6696f475355a6afff', 'value': 2269.01624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x7b00ed0884487b0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:01:10.000Z'}}, {'blockNum': '0x905081', 'uniqueId': '0xb920c0ebdcbb1728c06ca2a8a037cf02186422379660d880e0f41e4c8bbc6982:log:12', 'hash': '0xb920c0ebdcbb1728c06ca2a8a037cf02186422379660d880e0f41e4c8bbc6982', 'from': '0xdb02ed2a11a835951fa47d443b0ea6c666f35199', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24986.50676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x054a85705a0890888000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:09:19.000Z'}}, {'blockNum': '0x905081', 'uniqueId': '0xd56e51010c64d3916262a4fa95fbdf54537022a5d597707350eeaa09b1ddc247:log:17', 'hash': '0xd56e51010c64d3916262a4fa95fbdf54537022a5d597707350eeaa09b1ddc247', 'from': '0x372c31ea1b3e0f9fd53448c6696f475355a6afff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2269.01624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x7b00ed0884487b0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:09:19.000Z'}}, {'blockNum': '0x9050e4', 'uniqueId': '0xeb0caf22891492c16cd15a13092eccbd084c80e6609729ae217df4cf251a8008:log:0', 'hash': '0xeb0caf22891492c16cd15a13092eccbd084c80e6609729ae217df4cf251a8008', 'from': '0xb163211a6de7ccf5247c9488ed5bc932db0b9960', 'to': '0xddf1daf6d13b4e8bc8282d8a84e5a623f2a1efc4', 'value': 5000.52410937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x010f1436678f4f6dc400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:29:29.000Z'}}, {'blockNum': '0x90510c', 'uniqueId': '0xbfd1c9a973e135e531a72ea24774a87a4b82d720b5f713792229971212e3b547:log:21', 'hash': '0xbfd1c9a973e135e531a72ea24774a87a4b82d720b5f713792229971212e3b547', 'from': '0xddf1daf6d13b4e8bc8282d8a84e5a623f2a1efc4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000.52410937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x010f1436678f4f6dc400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:39:27.000Z'}}, {'blockNum': '0x905118', 'uniqueId': '0xaf943f1c665e04134a43d559724414f9c5995815bc278af0a865b685a48ffe95:log:44', 'hash': '0xaf943f1c665e04134a43d559724414f9c5995815bc278af0a865b685a48ffe95', 'from': '0x3df96ce06e53fe9a2e9e2db7b5200e272e7eb1d6', 'to': '0xdb349eaeba85a7469a2946efc49650f602b811f9', 'value': 5600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x012f939c99edab800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:42:15.000Z'}}, {'blockNum': '0x905134', 'uniqueId': '0x3281d26a5621fcbd17f83b1463b62807bfff49dca35a513b5dc207cf43521b17:log:8', 'hash': '0x3281d26a5621fcbd17f83b1463b62807bfff49dca35a513b5dc207cf43521b17', 'from': '0xdb349eaeba85a7469a2946efc49650f602b811f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x012f939c99edab800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:49:06.000Z'}}, {'blockNum': '0x90513a', 'uniqueId': '0x9db0c8c52e1549dd6bf1fa98edc48b0fd6c20611f6d29a6b2e8b63840492278a:log:1', 'hash': '0x9db0c8c52e1549dd6bf1fa98edc48b0fd6c20611f6d29a6b2e8b63840492278a', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:50:02.000Z'}}, {'blockNum': '0x905146', 'uniqueId': '0x0d2b6200fbcdaae26439e11e7a8ebf7c28037e6516108b1b6fd517bc524a5db9:log:1', 'hash': '0x0d2b6200fbcdaae26439e11e7a8ebf7c28037e6516108b1b6fd517bc524a5db9', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 290352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3d7c0372112c5ac00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:52:02.000Z'}}, {'blockNum': '0x905147', 'uniqueId': '0x10b5c498d18bd86d5eba67f014f06e77ed58f5433d10ce718a3d7a521e6d58d3:log:0', 'hash': '0x10b5c498d18bd86d5eba67f014f06e77ed58f5433d10ce718a3d7a521e6d58d3', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 102845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15c73d164bd638d40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:52:10.000Z'}}, {'blockNum': '0x905166', 'uniqueId': '0x43328391401ca1cb58e841d2d9e91c5b7ada0acd9da24c0472c78d0348f72ec6:log:14', 'hash': '0x43328391401ca1cb58e841d2d9e91c5b7ada0acd9da24c0472c78d0348f72ec6', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15c73d164bd638d40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:59:08.000Z'}}, {'blockNum': '0x905166', 'uniqueId': '0x1483f640c1b45ccc9e737839008a9584c6ecd3f88a7a2e1798466d5b8da4821e:log:15', 'hash': '0x1483f640c1b45ccc9e737839008a9584c6ecd3f88a7a2e1798466d5b8da4821e', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:59:08.000Z'}}, {'blockNum': '0x905166', 'uniqueId': '0x86947dee5c92cf87467fdfe875436a6409ceca36b50b60c53e39468f9e9d9582:log:16', 'hash': '0x86947dee5c92cf87467fdfe875436a6409ceca36b50b60c53e39468f9e9d9582', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 290352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3d7c0372112c5ac00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T22:59:08.000Z'}}, {'blockNum': '0x905179', 'uniqueId': '0xc53b14ed5ff0596a14431f529dd3fcd41dd7ef25a71baf5bade5e14471908b9c:log:205', 'hash': '0xc53b14ed5ff0596a14431f529dd3fcd41dd7ef25a71baf5bade5e14471908b9c', 'from': '0xc2a3c3c1a32d03df3d9b341cdb64643c373a7648', 'to': '0xd945a0c2a1ed9caa1f8b9a1e9bce27b6b15c1a83', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:03:18.000Z'}}, {'blockNum': '0x905198', 'uniqueId': '0x602ee4006e23414818b6682c6dce313e07525379bddf16464587dfd51fb952c1:log:8', 'hash': '0x602ee4006e23414818b6682c6dce313e07525379bddf16464587dfd51fb952c1', 'from': '0xd945a0c2a1ed9caa1f8b9a1e9bce27b6b15c1a83', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:09:03.000Z'}}, {'blockNum': '0x90519d', 'uniqueId': '0xfb80936e8f1fa2fa72dd000eb3e709b09608eb679018537250b6a37a13005761:log:12', 'hash': '0xfb80936e8f1fa2fa72dd000eb3e709b09608eb679018537250b6a37a13005761', 'from': '0x6d714e76af538fe76aa81a75b556686ad6002023', 'to': '0x1b6d67cc4daebdafe59cefb3dadba60cc0634ae2', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:09:33.000Z'}}, {'blockNum': '0x9051ad', 'uniqueId': '0xe7f0ce28cb2f2e6eec572ebdb743aee97414ad03525261adcf6d94b991c96eec:log:15', 'hash': '0xe7f0ce28cb2f2e6eec572ebdb743aee97414ad03525261adcf6d94b991c96eec', 'from': '0xa00324154554a9e75c2c06ff0d98264e09e9286a', 'to': '0x2be12b8d9f8b9c05b79ba8f59895626f2ef67f59', 'value': 104375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x161a2e1a398ca47c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:11:34.000Z'}}, {'blockNum': '0x9051ca', 'uniqueId': '0xcfa140621442a2853fdc1c405b1cb0f965e0e2dcba684d70824240229a3d58be:log:6', 'hash': '0xcfa140621442a2853fdc1c405b1cb0f965e0e2dcba684d70824240229a3d58be', 'from': '0x45f1feb77c871a9c31d6f36e6617f690384fa03e', 'to': '0x07a49e66f5bafb6c5e9c3464a4116238c18a11d3', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:18:08.000Z'}}, {'blockNum': '0x9051cf', 'uniqueId': '0x5acc212028b502a0b402d2c09179356e3077132751c589aa74d47e7f2d955b35:log:23', 'hash': '0x5acc212028b502a0b402d2c09179356e3077132751c589aa74d47e7f2d955b35', 'from': '0x1b6d67cc4daebdafe59cefb3dadba60cc0634ae2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:18:35.000Z'}}, {'blockNum': '0x9051cf', 'uniqueId': '0x428be1523b1093b515daed2d64f06db63077e1967a83a82e6f4370cbc5e32986:log:30', 'hash': '0x428be1523b1093b515daed2d64f06db63077e1967a83a82e6f4370cbc5e32986', 'from': '0x2be12b8d9f8b9c05b79ba8f59895626f2ef67f59', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 104375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x161a2e1a398ca47c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:18:35.000Z'}}, {'blockNum': '0x9051f7', 'uniqueId': '0x453fb0b1d2697091a56695c369d3f24d331668fee2438ea4ac70ef8d3efa0cf2:log:10', 'hash': '0x453fb0b1d2697091a56695c369d3f24d331668fee2438ea4ac70ef8d3efa0cf2', 'from': '0x07a49e66f5bafb6c5e9c3464a4116238c18a11d3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:29:18.000Z'}}, {'blockNum': '0x905214', 'uniqueId': '0x1097d0e51bfbb7c2c786a0facf9cc2db68736b8becd0b2f5b543092cb439b535:log:5', 'hash': '0x1097d0e51bfbb7c2c786a0facf9cc2db68736b8becd0b2f5b543092cb439b535', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 31382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06a538bcab09bc980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:35:30.000Z'}}, {'blockNum': '0x905238', 'uniqueId': '0xa6a39f2ac9c1e43a9e61c3dd9b2feb5e32dafaf509ae8a83fdce27cc3a10b70e:log:31', 'hash': '0xa6a39f2ac9c1e43a9e61c3dd9b2feb5e32dafaf509ae8a83fdce27cc3a10b70e', 'from': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 31382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x06a538bcab09bc980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:41:59.000Z'}}, {'blockNum': '0x90523b', 'uniqueId': '0x9a7236716f56cf9d7f5fecd719d03e6bb132724881a3564f8073d5eab2693033:log:4', 'hash': '0x9a7236716f56cf9d7f5fecd719d03e6bb132724881a3564f8073d5eab2693033', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:42:30.000Z'}}, {'blockNum': '0x905242', 'uniqueId': '0xe7faecd7cfd7c8027efc53b9dcbe8ce4a529574eed4b818999a5877a71588d63:log:4', 'hash': '0xe7faecd7cfd7c8027efc53b9dcbe8ce4a529574eed4b818999a5877a71588d63', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 102998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x15cf88637d3543980000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:44:03.000Z'}}, {'blockNum': '0x905250', 'uniqueId': '0xdf1c278f11d746dc7307a1dabdbe51ee87e5e908a00bc63d6b4c942b2bc8c520:log:5', 'hash': '0xdf1c278f11d746dc7307a1dabdbe51ee87e5e908a00bc63d6b4c942b2bc8c520', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:49:05.000Z'}}, {'blockNum': '0x905273', 'uniqueId': '0x1cd3cb446566b136b03c440ea4e6150799651b0c603bc91efd3d7100292b9401:log:8', 'hash': '0x1cd3cb446566b136b03c440ea4e6150799651b0c603bc91efd3d7100292b9401', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:57:35.000Z'}}, {'blockNum': '0x905273', 'uniqueId': '0xcfda4f6963a5513033d270bbb74b63abca9ccbbd538db1e55e10d29a447b2378:log:10', 'hash': '0xcfda4f6963a5513033d270bbb74b63abca9ccbbd538db1e55e10d29a447b2378', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 85635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1222485be253202c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:57:35.000Z'}}, {'blockNum': '0x905278', 'uniqueId': '0xcad034e492bf94887d63d8f29e5d688fe5f36a9bee2d9a1681badb603364efcb:log:4', 'hash': '0xcad034e492bf94887d63d8f29e5d688fe5f36a9bee2d9a1681badb603364efcb', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 188633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x27f1d0bf5f8863c40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-10T23:59:12.000Z'}}, {'blockNum': '0x90528f', 'uniqueId': '0x3567857fdb25f23e71dd50d6b57ae609079bdd355475cd0bf31ca79eba98d44c:log:7', 'hash': '0x3567857fdb25f23e71dd50d6b57ae609079bdd355475cd0bf31ca79eba98d44c', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:04:29.000Z'}}, {'blockNum': '0x905298', 'uniqueId': '0x32a220b85f36b8371eba638fcccd1d4eab5886e16fdc723dfdc8fa88348aaeee:log:13', 'hash': '0x32a220b85f36b8371eba638fcccd1d4eab5886e16fdc723dfdc8fa88348aaeee', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 131062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1bc0e2a02bc376180000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:06:23.000Z'}}, {'blockNum': '0x905298', 'uniqueId': '0xc4ac5ec3642ca11ae60e90aca9a924f96a74854f951d2e85113e0b0335940333:log:14', 'hash': '0xc4ac5ec3642ca11ae60e90aca9a924f96a74854f951d2e85113e0b0335940333', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 298841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3f4833fc7c860dc40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:06:23.000Z'}}, {'blockNum': '0x9052a6', 'uniqueId': '0x9b3615d9c7fb59711e8566c08274edd5ba1a9d4e23874f7f07bdf2da8376a39a:log:8', 'hash': '0x9b3615d9c7fb59711e8566c08274edd5ba1a9d4e23874f7f07bdf2da8376a39a', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:09:06.000Z'}}, {'blockNum': '0x9052cd', 'uniqueId': '0x2b5aedfd779d4532f3fb3ff7af9dcd83acab31670dbe6f52f2e0881cc6a75399:log:41', 'hash': '0x2b5aedfd779d4532f3fb3ff7af9dcd83acab31670dbe6f52f2e0881cc6a75399', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 131062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1bc0e2a02bc376180000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:19:15.000Z'}}, {'blockNum': '0x9052cd', 'uniqueId': '0x2add7b1cb050b6c9c35b5d5e56af3c4dc1d55a6832f4872697f6789b29841ede:log:49', 'hash': '0x2add7b1cb050b6c9c35b5d5e56af3c4dc1d55a6832f4872697f6789b29841ede', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 298841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x3f4833fc7c860dc40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:19:15.000Z'}}, {'blockNum': '0x9052d8', 'uniqueId': '0x3083fadda1b294cab9e2c9745ea207fc8d85239b52900817f0fdade3b78a1c60:log:0', 'hash': '0x3083fadda1b294cab9e2c9745ea207fc8d85239b52900817f0fdade3b78a1c60', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 31251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x069e1ebf2d1b146c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:22:13.000Z'}}, {'blockNum': '0x9052f7', 'uniqueId': '0x853d68586f79c9f623ac6d276a4b7f059355c8a3d747040311c1de07bfc43311:log:9', 'hash': '0x853d68586f79c9f623ac6d276a4b7f059355c8a3d747040311c1de07bfc43311', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 1927212.94910937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x01981a6c5e4326e9084400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:28:41.000Z'}}, {'blockNum': '0x9052fc', 'uniqueId': '0xdc0971173b516d21c909262899e77b4647281d97fbc93d5dba2686f32b70a58a:log:61', 'hash': '0xdc0971173b516d21c909262899e77b4647281d97fbc93d5dba2686f32b70a58a', 'from': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 31251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x069e1ebf2d1b146c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T00:29:33.000Z'}}, {'blockNum': '0x9053fd', 'uniqueId': '0x429cf6225120f1f47a92ecdf4fc282ea51be50145d5158833d15c7b07bda5b78:log:1', 'hash': '0x429cf6225120f1f47a92ecdf4fc282ea51be50145d5158833d15c7b07bda5b78', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x837b96ef6c7bdcb31326f05305fef6317763e8d4', 'value': 6029.863971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0146e12c360935513000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T01:27:59.000Z'}}, {'blockNum': '0x9053fd', 'uniqueId': '0x477f85cd690fe93fc3ecc1e188c5e45ad95247bdf35808dfed7bb02529a51cdf:log:48', 'hash': '0x477f85cd690fe93fc3ecc1e188c5e45ad95247bdf35808dfed7bb02529a51cdf', 'from': '0xc667fb59867acfcf6f88b3efc0479787699f3aa1', 'to': '0x812d8baf456f9b4ffeffe7ae9472642caab70eb8', 'value': 5769.02158881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0138bd41e96fb3b06400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T01:27:59.000Z'}}, {'blockNum': '0x9054e6', 'uniqueId': '0x3b0178da9ce444047223f32b311adf6bd353dca5130989a07d87c497cb123d9a:log:11', 'hash': '0x3b0178da9ce444047223f32b311adf6bd353dca5130989a07d87c497cb123d9a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:17:31.000Z'}}, {'blockNum': '0x90551b', 'uniqueId': '0x375007085e3d5b08cfb119a5028a805b80bb31c10a603ead1c6193a4abb3a211:log:48', 'hash': '0x375007085e3d5b08cfb119a5028a805b80bb31c10a603ead1c6193a4abb3a211', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:28:59.000Z'}}, {'blockNum': '0x905525', 'uniqueId': '0xd026eff3e84a26ad0275cd88fd3e2a4e18f298c3c824ff840e2627a495cc9b1e:log:19', 'hash': '0xd026eff3e84a26ad0275cd88fd3e2a4e18f298c3c824ff840e2627a495cc9b1e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:31:50.000Z'}}, {'blockNum': '0x90553f', 'uniqueId': '0x82a9e793ffabad2ea572f933b102dc9911d2fa120765b5366ef0cb168302729f:log:82', 'hash': '0x82a9e793ffabad2ea572f933b102dc9911d2fa120765b5366ef0cb168302729f', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:38:21.000Z'}}, {'blockNum': '0x905548', 'uniqueId': '0xf97318fceb08c5d4fcad12c4d3673056f70813569a0cd8d607311d31ee0d3b6e:log:124', 'hash': '0xf97318fceb08c5d4fcad12c4d3673056f70813569a0cd8d607311d31ee0d3b6e', 'from': '0x59da3eb1e16992366f3b4ebb5a2dc98a49d598db', 'to': '0x99cc0c239f652c18bc9cf923f372a6285363965d', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:40:48.000Z'}}, {'blockNum': '0x905574', 'uniqueId': '0x792b82b213d80c408034d22aa6f1099f4b953d2a3c0438e3326a04380ed7974c:log:16', 'hash': '0x792b82b213d80c408034d22aa6f1099f4b953d2a3c0438e3326a04380ed7974c', 'from': '0x99cc0c239f652c18bc9cf923f372a6285363965d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T02:49:23.000Z'}}, {'blockNum': '0x9055a6', 'uniqueId': '0x56827483f48ad0ec0a75228afc8a2a2b053f141373611e5a45061b69ec5d933e:log:26', 'hash': '0x56827483f48ad0ec0a75228afc8a2a2b053f141373611e5a45061b69ec5d933e', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x8d8fa71288e1924e2235fb2c30ce30ca1cbbf709', 'value': 971.5432465251762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34aadefb4206e2bfbf', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:02:46.000Z'}}, {'blockNum': '0x9055a6', 'uniqueId': '0x62f4d390135adc12fb934868aa70f8f7a03198a60c977562d93d6aabe59188a8:log:83', 'hash': '0x62f4d390135adc12fb934868aa70f8f7a03198a60c977562d93d6aabe59188a8', 'from': '0x9b73ba83c001bcd70e90460f44851ffbe67e36b4', 'to': '0x87e592bfef534099b3e183d97d76c60f5fd2b7c9', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835c0000000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:02:46.000Z'}}, {'blockNum': '0x9055ad', 'uniqueId': '0x8fa51d957c986382d03f72e1e076aef747173bfa89792fe6cc3927b1aa60de78:log:59', 'hash': '0x8fa51d957c986382d03f72e1e076aef747173bfa89792fe6cc3927b1aa60de78', 'from': '0x8d8fa71288e1924e2235fb2c30ce30ca1cbbf709', 'to': '0x28488ec5c81b3adfcb79e9acfc614d7959a71270', 'value': 971.5432465251762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34aadefb4206e2bfbf', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:04:40.000Z'}}, {'blockNum': '0x9055ad', 'uniqueId': '0x41e24a1746fa25622ae256000b77f0e4e79a3aa513cb261c3ad1140dff12f3d6:log:107', 'hash': '0x41e24a1746fa25622ae256000b77f0e4e79a3aa513cb261c3ad1140dff12f3d6', 'from': '0x87e592bfef534099b3e183d97d76c60f5fd2b7c9', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:04:40.000Z'}}, {'blockNum': '0x9055f1', 'uniqueId': '0x99925b2d918d1c6c87bea8b9d15d09c0a48ec9d1a9db43a5346d727b1325843c:log:47', 'hash': '0x99925b2d918d1c6c87bea8b9d15d09c0a48ec9d1a9db43a5346d727b1325843c', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:19:23.000Z'}}, {'blockNum': '0x90564a', 'uniqueId': '0xd8501b163f973bd01a635064279562ebd59c4fce64648bece84e35b48022376a:log:89', 'hash': '0xd8501b163f973bd01a635064279562ebd59c4fce64648bece84e35b48022376a', 'from': '0xf1f4c9abfb0d9415c67aea512cc63515280eb1fd', 'to': '0x517649a2cdc0f67d0447b84d202d64385ebb0bb0', 'value': 1650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x59725991ece2880000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:38:04.000Z'}}, {'blockNum': '0x905672', 'uniqueId': '0x3f24b6255970118701dfdebbe9141dbeeb11188a7ae4ef5e5fad4c3226d702ad:log:53', 'hash': '0x3f24b6255970118701dfdebbe9141dbeeb11188a7ae4ef5e5fad4c3226d702ad', 'from': '0x9cf69363d733b2ff6c3ef168478bf444068f9b96', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:48:29.000Z'}}, {'blockNum': '0x905672', 'uniqueId': '0xe8bd7ec9c02a03aca8ac0e079df80b806a492a90c47f557b8ce1b01d172861a2:log:56', 'hash': '0xe8bd7ec9c02a03aca8ac0e079df80b806a492a90c47f557b8ce1b01d172861a2', 'from': '0xc4f2e11845e1f1410163c4d5de0810eed416e008', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 555.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1e1bb92d5d5bf40000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:48:29.000Z'}}, {'blockNum': '0x905674', 'uniqueId': '0xf6db9198e0d232b3ce1c0fd5c8d386fba018914118306de13ac8e5e449ee5b71:log:26', 'hash': '0xf6db9198e0d232b3ce1c0fd5c8d386fba018914118306de13ac8e5e449ee5b71', 'from': '0x8d046773ef3da3aaebffd3b79bf76e59f8c0c116', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 632.531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x224a218935069b8000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:48:48.000Z'}}, {'blockNum': '0x905675', 'uniqueId': '0xb50f6067b17ec8c301142d0df8e6b95c0ac0542bc413f857243b002881c9ecbc:log:88', 'hash': '0xb50f6067b17ec8c301142d0df8e6b95c0ac0542bc413f857243b002881c9ecbc', 'from': '0x01a532a41aef3e5b4f01505b3c91da9395077dcf', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 683.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x25103e579a26920000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:49:05.000Z'}}, {'blockNum': '0x905677', 'uniqueId': '0x6c8672fd38195598723176a99ff600aebaaf3e4f1f4f77a07eece8c1b442030c:log:12', 'hash': '0x6c8672fd38195598723176a99ff600aebaaf3e4f1f4f77a07eece8c1b442030c', 'from': '0x6a3514487168de575f20e849af50ccf368a1c580', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 533.88006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1cf112fdf3c43bc000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:49:19.000Z'}}, {'blockNum': '0x905692', 'uniqueId': '0xe06f9cb56f34f1eda84f86c7a6d43c1a4b3985addabae2c5007232b3136f54af:log:84', 'hash': '0xe06f9cb56f34f1eda84f86c7a6d43c1a4b3985addabae2c5007232b3136f54af', 'from': '0x4505a79a165079afa9e941fdfaa24103b2e308e0', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 541.913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1d608dba5266428000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:55:10.000Z'}}, {'blockNum': '0x905692', 'uniqueId': '0xecb1082149a6c8233a22a27249627ddda9121f6575a7f45fe47ad448062ba8ba:log:98', 'hash': '0xecb1082149a6c8233a22a27249627ddda9121f6575a7f45fe47ad448062ba8ba', 'from': '0x812d8baf456f9b4ffeffe7ae9472642caab70eb8', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 5769.02158881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0138bd41e96fb3b06400', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T03:55:10.000Z'}}, {'blockNum': '0x9056d7', 'uniqueId': '0x67ebde9e736a7f6fe5ba35874375499241052ad15a1bc1247473de817883805e:log:4', 'hash': '0x67ebde9e736a7f6fe5ba35874375499241052ad15a1bc1247473de817883805e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb6e41688d40eff755840a14a9cfabbb770607e58', 'value': 69912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ecdefe6b65955600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T04:10:35.000Z'}}, {'blockNum': '0x9056fa', 'uniqueId': '0xa2816fa63a431c9231aa1fa27a9d32378c30632a07aef4f79183d899e0e75c53:log:107', 'hash': '0xa2816fa63a431c9231aa1fa27a9d32378c30632a07aef4f79183d899e0e75c53', 'from': '0xb6e41688d40eff755840a14a9cfabbb770607e58', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 69912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ecdefe6b65955600000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T04:17:18.000Z'}}, {'blockNum': '0x9057b8', 'uniqueId': '0x0dee5a50fab87ca1ce29070cfca8508d66262d77770ff72492faf024148472c9:log:25', 'hash': '0x0dee5a50fab87ca1ce29070cfca8508d66262d77770ff72492faf024148472c9', 'from': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 145621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1ed621569ee026340000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T04:59:13.000Z'}}, {'blockNum': '0x9057ee', 'uniqueId': '0xf16fca820469d42fef23e00a88f06cf9ec9933fc035ea65428fc4c1e4a974fa4:log:1', 'hash': '0xf16fca820469d42fef23e00a88f06cf9ec9933fc035ea65428fc4c1e4a974fa4', 'from': '0xddda3cc16abd5bcaac77cf17e074f9c9038d2a20', 'to': '0x1a1b339dd7476e05c36d049d0ecef0a41eea6d72', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T05:12:35.000Z'}}, {'blockNum': '0x905810', 'uniqueId': '0x91d79365d2cf3b8c448200f388fb90670033349bc9e23ca2561a67ac9f5ee0f3:log:47', 'hash': '0x91d79365d2cf3b8c448200f388fb90670033349bc9e23ca2561a67ac9f5ee0f3', 'from': '0x1a1b339dd7476e05c36d049d0ecef0a41eea6d72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T05:19:06.000Z'}}, {'blockNum': '0x905848', 'uniqueId': '0x44e53d9867461399bb43d9e5173edc57a8478d1322c17b21664b82afbec85c1e:log:130', 'hash': '0x44e53d9867461399bb43d9e5173edc57a8478d1322c17b21664b82afbec85c1e', 'from': '0xf9ab9df4f77994006752be4b56cce9c8f7aad547', 'to': '0xbabb03a9145ef7831853aa0a90a3c45623080ab1', 'value': 58990.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0c7ddf1691e929fe0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T05:30:25.000Z'}}, {'blockNum': '0x905878', 'uniqueId': '0x029f9f4b59394cf2b3bd9166137d9a1964e1dbef6c485f903d7350d9f283db60:log:3', 'hash': '0x029f9f4b59394cf2b3bd9166137d9a1964e1dbef6c485f903d7350d9f283db60', 'from': '0xbabb03a9145ef7831853aa0a90a3c45623080ab1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58990.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0c7ddf1691e929fe0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T05:39:20.000Z'}}, {'blockNum': '0x90597c', 'uniqueId': '0x2512965ada11f84d3891028996073cb06b6159e343af89df23f6a6019b0fb715:log:63', 'hash': '0x2512965ada11f84d3891028996073cb06b6159e343af89df23f6a6019b0fb715', 'from': '0xc8d837745b286c654ea6c7f12cf6116435d66335', 'to': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'value': 9509.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02038435fffad6b00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:37:59.000Z'}}, {'blockNum': '0x9059af', 'uniqueId': '0x3846a0207be9cc3d434ebf737ab192aec0722c294f16fceb341b1fd359709e9c:log:30', 'hash': '0x3846a0207be9cc3d434ebf737ab192aec0722c294f16fceb341b1fd359709e9c', 'from': '0x598ab3235e54363c8d3f1452044f25de66a65584', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9509.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x02038435fffad6b00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:49:28.000Z'}}, {'blockNum': '0x9059c7', 'uniqueId': '0x9cf0e2dea1b52d84284eaa7f4778536c1c343f3b3d0d0fc961c3d6312b8240e7:log:10', 'hash': '0x9cf0e2dea1b52d84284eaa7f4778536c1c343f3b3d0d0fc961c3d6312b8240e7', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 142127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x1e18b85906e1875c0000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:53:39.000Z'}}, {'blockNum': '0x9059c8', 'uniqueId': '0xed85a58521d5319dd1d3ca53ffe00d7ba5f433ee50ecb2ce8c9b5a1138c83ab8:log:16', 'hash': '0xed85a58521d5319dd1d3ca53ffe00d7ba5f433ee50ecb2ce8c9b5a1138c83ab8', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:53:51.000Z'}}, {'blockNum': '0x9059da', 'uniqueId': '0x50fb03b4dd6aa94da738b2b4b20cafd0a7432961d33ac159cc2a28a6cccd53b8:log:11', 'hash': '0x50fb03b4dd6aa94da738b2b4b20cafd0a7432961d33ac159cc2a28a6cccd53b8', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 235792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'WPR', 'category': 'erc20', 'rawContract': {'value': '0x31ee4f57c0713a400000', 'address': '0x4cf488387f035ff08c371515562cba712f9015d4', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-11T06:59:33.000Z'}}]}}
Number of returned transfers:  184
Answer is complete
 
symbol             DNT
group               CW
date        2020-02-27
hour             16:00
exchange       binance
Name: 882, dtype: object
HERE
{'binance-smart-chain': '0x2456493e757fdeedf569781f053998a72adfad03'}
No contract for ethereum specified
{'binance-smart-chain': '0x44836708ff32246635d8d08c785f4e779e294598'}
No contract for ethereum specified
 Symbol: DNT, Contract: 0x0abdace70d3790235af448c88547603b945604ea
Datetime timestamps:  2020-02-27 16:00:00 2020-02-27 04:00:00 2020-02-28 04:00:00
Unix timestamps:  1582772400.0 1582858800.0
Hex Block Numbers:  0x91ebe6 0x92051b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x91f039', 'uniqueId': '0x859e11714c189c9e7b765829e919920ad202767c24fe0382bf66c39c931fd52d:log:30', 'hash': '0x859e11714c189c9e7b765829e919920ad202767c24fe0382bf66c39c931fd52d', 'from': '0x9a51ad4d2404225d955387d4f4b6cc4354b54fee', 'to': '0x812fbb2b44e7bbb3ad02801b0338e30145884e01', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T06:59:47.000Z'}}, {'blockNum': '0x91f0f6', 'uniqueId': '0xe803a0abe7d49657f9cf35ebd0a6a936443c61351465bd92ea01ec5324e49886:log:87', 'hash': '0xe803a0abe7d49657f9cf35ebd0a6a936443c61351465bd92ea01ec5324e49886', 'from': '0x7ebd11352b56b5b7dd341375d25152410bbc9e90', 'to': '0x34f5bf1413239747aec5f4f0faaf1fb409de07dd', 'value': 13898.711523845737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02f1735e8c68753e5f77', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T07:45:58.000Z'}}, {'blockNum': '0x91f116', 'uniqueId': '0x79c1b0bd11f13b1c3e110a91ad1e9c4a1917122f9855c159be2fc733f5e099fd:log:29', 'hash': '0x79c1b0bd11f13b1c3e110a91ad1e9c4a1917122f9855c159be2fc733f5e099fd', 'from': '0x34f5bf1413239747aec5f4f0faaf1fb409de07dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13898.711523845737, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02f1735e8c68753e5f77', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T07:53:50.000Z'}}, {'blockNum': '0x91f300', 'uniqueId': '0x0c9861e89a1c88e80b8efae9e0f9687e5dd97cca2d8572aa25ea2124261a3752:log:99', 'hash': '0x0c9861e89a1c88e80b8efae9e0f9687e5dd97cca2d8572aa25ea2124261a3752', 'from': '0x6024297b6b6988c6cdd5281e160fc72d9b42ec8a', 'to': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'value': 2596.755591859829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8cc5391c988258f054', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T09:33:18.000Z'}}, {'blockNum': '0x91f396', 'uniqueId': '0x42f20ea0ac7faad2371cab6c151240b4d9f20047e454dcda94d1a8ed07d22044:log:39', 'hash': '0x42f20ea0ac7faad2371cab6c151240b4d9f20047e454dcda94d1a8ed07d22044', 'from': '0x9397edd1f5e19e90b9b535dd06741f1b02ad0316', 'to': '0x20f24f079165b3f36c953059f2fd2d5a707fb566', 'value': 4.53096e-13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06e9e8', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T10:08:29.000Z'}}, {'blockNum': '0x91f9a6', 'uniqueId': '0x696612decf4716cd18fb1e02aea601ad679ef3a6a317993e5970c5194203d7fc:log:18', 'hash': '0x696612decf4716cd18fb1e02aea601ad679ef3a6a317993e5970c5194203d7fc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 32632.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06e90927d8388b7f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T16:01:13.000Z'}}, {'blockNum': '0x91f9c9', 'uniqueId': '0x4b9050791f9508ccd866c47b2f7926ef1d78f56e7c404a764b120dcafeed216a:log:14', 'hash': '0x4b9050791f9508ccd866c47b2f7926ef1d78f56e7c404a764b120dcafeed216a', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32632.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06e90927d8388b7f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T16:14:20.000Z'}}, {'blockNum': '0x91fce4', 'uniqueId': '0x2c000d8a12cad8ea4e9f074781609e8fa9fbfe1f34fb45cba2d4164f8cb0d84d:log:95', 'hash': '0x2c000d8a12cad8ea4e9f074781609e8fa9fbfe1f34fb45cba2d4164f8cb0d84d', 'from': '0xbfd7e906e41f9ef0eaed535a58f977c015d27566', 'to': '0x76e8aa16f9f3809e1895b985d56488838db17005', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T19:12:36.000Z'}}, {'blockNum': '0x91fd4c', 'uniqueId': '0x81fb05e1932b0feb1096bbe85c58dd1546a6a0cf955419d7fd6977a4da115c1b:log:102', 'hash': '0x81fb05e1932b0feb1096bbe85c58dd1546a6a0cf955419d7fd6977a4da115c1b', 'from': '0x76e8aa16f9f3809e1895b985d56488838db17005', 'to': '0xbfd7e906e41f9ef0eaed535a58f977c015d27566', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T19:37:38.000Z'}}, {'blockNum': '0x91ff15', 'uniqueId': '0x457c893b645cebb09acf7b65e124a9a43c27ada9024a7376b8f515c53057c586:log:85', 'hash': '0x457c893b645cebb09acf7b65e124a9a43c27ada9024a7376b8f515c53057c586', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x7e99bdfa33deb33053d7d4a3f72c96ef8a603a09', 'value': 405.7436842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x15fed3230ec7461000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T21:15:36.000Z'}}, {'blockNum': '0x91fff0', 'uniqueId': '0x3a6fd3a8535d5c502abbf5049643dbfb91da12e906c1c034dc4ad6aa292de9c1:log:76', 'hash': '0x3a6fd3a8535d5c502abbf5049643dbfb91da12e906c1c034dc4ad6aa292de9c1', 'from': '0x11140497fa9cf6476c749f8993b37984a84bc1c6', 'to': '0x01726c3f4da9333c9fd73cd06ad4b4abcd02513b', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-27T22:02:48.000Z'}}, {'blockNum': '0x9204bb', 'uniqueId': '0x343cb200214a68252e05d0747dac2f749b528fa7d14a398f10c0861ad4dd071c:log:14', 'hash': '0x343cb200214a68252e05d0747dac2f749b528fa7d14a398f10c0861ad4dd071c', 'from': '0x412ce78c6cb4c227e1d1522ba484b4cc8c051b13', 'to': '0x80b50f90a32961b6317e811d79b23e60a22c777a', 'value': 4299.34262912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe9115d5e4a879a0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-28T02:37:56.000Z'}}, {'blockNum': '0x920505', 'uniqueId': '0x866923bdb927ffe46bd00e601c06c1dce4aba41456915af0098569ce7270bafa:log:55', 'hash': '0x866923bdb927ffe46bd00e601c06c1dce4aba41456915af0098569ce7270bafa', 'from': '0x80b50f90a32961b6317e811d79b23e60a22c777a', 'to': '0xe3441c47dfe5d823c2c3f320c59f879c1db34373', 'value': 750.291801651219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x28ac63f262acbfeac0', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-02-28T02:56:05.000Z'}}]}}
Number of returned transfers:  13
Answer is complete
 
symbol             DNT
group               CW
date        2020-03-04
hour             19:00
exchange       binance
Name: 883, dtype: object
HERE
{'binance-smart-chain': '0x2456493e757fdeedf569781f053998a72adfad03'}
No contract for ethereum specified
{'binance-smart-chain': '0x44836708ff32246635d8d08c785f4e779e294598'}
No contract for ethereum specified
 Symbol: DNT, Contract: 0x0abdace70d3790235af448c88547603b945604ea
Datetime timestamps:  2020-03-04 19:00:00 2020-03-04 07:00:00 2020-03-05 07:00:00
Unix timestamps:  1583301600.0 1583388000.0
Hex Block Numbers:  0x928789 0x92a126
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x929059', 'uniqueId': '0xfe9526025f6786742231990f4ab1bc4fd789b41c439c6348e0ad0dd582cf0461:log:60', 'hash': '0xfe9526025f6786742231990f4ab1bc4fd789b41c439c6348e0ad0dd582cf0461', 'from': '0x51b553a31cf3027f9f5a212027ac1717b21782b6', 'to': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'value': 9999.999999999905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9baac9dcba2', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T14:24:19.000Z'}}, {'blockNum': '0x929116', 'uniqueId': '0xdc935feb296f026327732de9e17e9a43e3850026641d577163fc1f8632596c93:log:2', 'hash': '0xdc935feb296f026327732de9e17e9a43e3850026641d577163fc1f8632596c93', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8342a0147c2b4f571c9c3dcb935f0944b7ab1c98', 'value': 134059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1c635a5b10fa1bcc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:06:26.000Z'}}, {'blockNum': '0x9291ae', 'uniqueId': '0x760c43b6be8ef7ad15658221050aaa1c1e73d121ad86b39e8d54536a9d72779e:log:103', 'hash': '0x760c43b6be8ef7ad15658221050aaa1c1e73d121ad86b39e8d54536a9d72779e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x72edea79986f81bb58b0b7b5d1244fb65277ad40', 'value': 3350.752693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb5a508ed3c20845000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:44:08.000Z'}}, {'blockNum': '0x9291bb', 'uniqueId': '0x91e4edb8c480f1b4d7c52d4d02f21ee3203b6e0a0908de041a4e086db1dfb109:log:16', 'hash': '0x91e4edb8c480f1b4d7c52d4d02f21ee3203b6e0a0908de041a4e086db1dfb109', 'from': '0x72edea79986f81bb58b0b7b5d1244fb65277ad40', 'to': '0x9ab7b033ad985f046d6390edb9e0a2f3ba8b92eb', 'value': 3884.8142957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd298a0e34f95d0c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:46:40.000Z'}}, {'blockNum': '0x9291c6', 'uniqueId': '0x2c49d8e9bce02c5c35f8c407180b3a12962deda3ef1798fdd7201047c3d71e86:log:15', 'hash': '0x2c49d8e9bce02c5c35f8c407180b3a12962deda3ef1798fdd7201047c3d71e86', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 8197.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01bc69b0284b1d150000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:48:29.000Z'}}, {'blockNum': '0x9291cb', 'uniqueId': '0x3872ff9c70e9883f3e1b4f716549b5870b49dd962d7796009c990c605efe1713:log:33', 'hash': '0x3872ff9c70e9883f3e1b4f716549b5870b49dd962d7796009c990c605efe1713', 'from': '0x9ab7b033ad985f046d6390edb9e0a2f3ba8b92eb', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 3884.8142957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd298a0e34f95d0c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:48:50.000Z'}}, {'blockNum': '0x9291e4', 'uniqueId': '0xe7dbb99f70eb49e8a4d1c381c4837227aa4ae3165b18e37356066877c75b33e1:log:11', 'hash': '0xe7dbb99f70eb49e8a4d1c381c4837227aa4ae3165b18e37356066877c75b33e1', 'from': '0xa305fab8bda7e1638235b054889b3217441dd645', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9798.8738157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021332b10ab87b00c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T15:54:00.000Z'}}, {'blockNum': '0x9292cd', 'uniqueId': '0x352590655f35903b9ebf9903f1498ade9e6b894aaa3f4a34866f859b2b5b10ee:log:145', 'hash': '0x352590655f35903b9ebf9903f1498ade9e6b894aaa3f4a34866f859b2b5b10ee', 'from': '0xbabf61e96b89671a82815ee37fa150d9688a4cbb', 'to': '0xada7b20529432295f459129aff723f2216168758', 'value': 10630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x024040e267d8a2580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T16:42:04.000Z'}}, {'blockNum': '0x9292d1', 'uniqueId': '0x3c2d91db89ea21025c8768ea8ad8a98d5c2b932cf21460724ea2679499acfe47:log:44', 'hash': '0x3c2d91db89ea21025c8768ea8ad8a98d5c2b932cf21460724ea2679499acfe47', 'from': '0xada7b20529432295f459129aff723f2216168758', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 10630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x024040e267d8a2580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T16:42:35.000Z'}}, {'blockNum': '0x929309', 'uniqueId': '0xbc9cdc2394e0fef9f199f1479acea1207b4f9a0d4c4739cc509070c93da393b5:log:8', 'hash': '0xbc9cdc2394e0fef9f199f1479acea1207b4f9a0d4c4739cc509070c93da393b5', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x024040e267d8a2580000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T16:54:22.000Z'}}, {'blockNum': '0x929353', 'uniqueId': '0xf910ff094d30fd9e48d125115f9fc037a2f83798507a43dae2b0b6fa6ce3801a:log:51', 'hash': '0xf910ff094d30fd9e48d125115f9fc037a2f83798507a43dae2b0b6fa6ce3801a', 'from': '0x003681a32ca032d3dbd2d22a26085dcd8ab2dad9', 'to': '0x517b60d34422bdf1039e3a10714a4ba7c330456a', 'value': 6499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01604fbe32d27fac0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T17:08:31.000Z'}}, {'blockNum': '0x9293c7', 'uniqueId': '0x6b4adc5e58b99df8382ddf1b458e7407e610915590e94716fe6c803121345543:log:0', 'hash': '0x6b4adc5e58b99df8382ddf1b458e7407e610915590e94716fe6c803121345543', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5297.54783185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011f2e3ea574cc092400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T17:34:25.000Z'}}, {'blockNum': '0x9293f1', 'uniqueId': '0x5f4b8a7605fbbdd7b1327ab63fd22b4f4ddee7473bde3ce936c7f753f12779e7:log:19', 'hash': '0x5f4b8a7605fbbdd7b1327ab63fd22b4f4ddee7473bde3ce936c7f753f12779e7', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4128e5a3e79ab657cf6d19945a33e5ec275c1837', 'value': 5297.54783185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x011f2e3ea574cc092400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T17:43:51.000Z'}}, {'blockNum': '0x929569', 'uniqueId': '0x5112ea8dea78ec7659b150162dbfc0447f266f1fa321bad69562d302f3951e26:log:20', 'hash': '0x5112ea8dea78ec7659b150162dbfc0447f266f1fa321bad69562d302f3951e26', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 13278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02cfcd443a2414b80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T19:01:23.000Z'}}, {'blockNum': '0x929664', 'uniqueId': '0x3543c663d0e7b77babfb16b5cb147a9b82214eccb8f782785697a8bf26910efa:log:3', 'hash': '0x3543c663d0e7b77babfb16b5cb147a9b82214eccb8f782785697a8bf26910efa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6b5bd08139e6afeb4976ac879c6b62ea8602bbab', 'value': 4425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xefe13607585f840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T20:00:26.000Z'}}, {'blockNum': '0x9297ab', 'uniqueId': '0x4d46e17e9b6e100c881cb381339a257fd6741c8e91f5d910296ad7b5c3dd5ade:log:227', 'hash': '0x4d46e17e9b6e100c881cb381339a257fd6741c8e91f5d910296ad7b5c3dd5ade', 'from': '0x4068b46a88b98c55a98a3014c133c410422fae22', 'to': '0x5b652254d61bbe4659fd7c97a1b1b9c80c28a1a9', 'value': 1538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x536009a353a6c80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T21:19:55.000Z'}}, {'blockNum': '0x9297b2', 'uniqueId': '0x3611c7824e9f4cb0ecd8d31d9dd7a657e8ea523c4410896354ae030ebdb35dc5:log:82', 'hash': '0x3611c7824e9f4cb0ecd8d31d9dd7a657e8ea523c4410896354ae030ebdb35dc5', 'from': '0x5b652254d61bbe4659fd7c97a1b1b9c80c28a1a9', 'to': '0xa8b8dd7983f94c0facf2c0c01f47c16bf0669f6d', 'value': 1538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x536009a353a6c80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T21:22:21.000Z'}}, {'blockNum': '0x9298ab', 'uniqueId': '0x848e0d6712c3a713a00497f88ac26f04441c879bf166d4dc81c84fb3895c65e5:log:2', 'hash': '0x848e0d6712c3a713a00497f88ac26f04441c879bf166d4dc81c84fb3895c65e5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 4974.456535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010daa73c6c83f807000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T22:16:21.000Z'}}, {'blockNum': '0x9298e7', 'uniqueId': '0xf8327f927cb6785ea45c019d5c46683248312bd618b14cd8805d57e5299227ad:log:80', 'hash': '0xf8327f927cb6785ea45c019d5c46683248312bd618b14cd8805d57e5299227ad', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xc4feb08b7c92bdce4d3cafdd83bdcbb155f9224f', 'value': 4974.456535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010daa73c6c83f807000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T22:31:41.000Z'}}, {'blockNum': '0x92992a', 'uniqueId': '0xa88912e362bb2cc87b809998c54fcbc4068da64ef89325b34958f7c9ee17c0c1:log:1', 'hash': '0xa88912e362bb2cc87b809998c54fcbc4068da64ef89325b34958f7c9ee17c0c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 588381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7c9832ab0bdb77540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T22:43:57.000Z'}}, {'blockNum': '0x929958', 'uniqueId': '0xbc1c439cb08f7c1700cb7269b8cee5dd3d31895abf5b24b962ac2b131efa73b8:log:4', 'hash': '0xbc1c439cb08f7c1700cb7269b8cee5dd3d31895abf5b24b962ac2b131efa73b8', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 588381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7c9832ab0bdb77540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T22:54:04.000Z'}}, {'blockNum': '0x929991', 'uniqueId': '0xfc80177495c6e420fb7b48b39f33bd14c8bdc7dd0b43547a60e4dc148a64d407:log:23', 'hash': '0xfc80177495c6e420fb7b48b39f33bd14c8bdc7dd0b43547a60e4dc148a64d407', 'from': '0xdec6a98c55dd22c99e69f6a8d201571665bf789f', 'to': '0x2de4ba86f208afc85ab69244a61045426aaf17bc', 'value': 707.50776665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x265aa4853b3b364400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:05:19.000Z'}}, {'blockNum': '0x929a03', 'uniqueId': '0x113bf53f544cfcfbcfc374b6aab5155f970f788788de6bb89644877798581951:log:33', 'hash': '0x113bf53f544cfcfbcfc374b6aab5155f970f788788de6bb89644877798581951', 'from': '0x3be7bbf8d472f588e10e65d616556ccf39430bb4', 'to': '0x6348dbea8987c27f8462755e493f64d99c28dd05', 'value': 702.24, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x261189a75f7e500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:27:08.000Z'}}, {'blockNum': '0x929a58', 'uniqueId': '0x890a07a58b73594a7cb62d641c07cad31a39864c75e90ad11efb565c0c35aee9:log:52', 'hash': '0x890a07a58b73594a7cb62d641c07cad31a39864c75e90ad11efb565c0c35aee9', 'from': '0xe882255f82f779bd13be94259b45bbe2f3c1235f', 'to': '0x0907f71f26cb10bdc6dcf3f288844af2cc036ca8', 'value': 5857.6094674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x013d8aa947a7be125000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:44:29.000Z'}}, {'blockNum': '0x929a65', 'uniqueId': '0x3f3e701570cbfca5ce39be64e2048e69cbaa4427982d22ca07b9e4c15a952926:log:1', 'hash': '0x3f3e701570cbfca5ce39be64e2048e69cbaa4427982d22ca07b9e4c15a952926', 'from': '0x0907f71f26cb10bdc6dcf3f288844af2cc036ca8', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 5857.6094674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x013d8aa947a7be125000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:46:27.000Z'}}, {'blockNum': '0x929a77', 'uniqueId': '0x277799034fc0733ed2b57473fd52773f9d116ae88e570957c16b5d892794af31:log:29', 'hash': '0x277799034fc0733ed2b57473fd52773f9d116ae88e570957c16b5d892794af31', 'from': '0xb7b9bc16bf37d9edd7585bfd5ae8afb20182bb93', 'to': '0x54f0c8d3ffd30dac671ba7397bbdf3c4dc8fb1cb', 'value': 2220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7858b05def97300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:50:18.000Z'}}, {'blockNum': '0x929a80', 'uniqueId': '0x1a00047de1e0b75783ee03da0d13150453fc738c67450cec8b4e6255a1b09180:log:72', 'hash': '0x1a00047de1e0b75783ee03da0d13150453fc738c67450cec8b4e6255a1b09180', 'from': '0x54f0c8d3ffd30dac671ba7397bbdf3c4dc8fb1cb', 'to': '0x9bfe83c0934726940d0da985d28adbbf0aeca9b7', 'value': 2220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7858b05def97300000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:51:47.000Z'}}, {'blockNum': '0x929aaa', 'uniqueId': '0x8ef081158136f763b5e5418aecf57f60a3ee8847d4b939283a93473cfd452fd2:log:1', 'hash': '0x8ef081158136f763b5e5418aecf57f60a3ee8847d4b939283a93473cfd452fd2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe6edbe51c7f302de0969ec48299b14797f42bc38', 'value': 32257.20929182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06d4aab4b0e408e2b800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-04T23:58:26.000Z'}}, {'blockNum': '0x929c4d', 'uniqueId': '0xc3063ddb5212605c0fd008465e49a0451ae38f311b4111e4e7a7a38f111fd308:log:23', 'hash': '0xc3063ddb5212605c0fd008465e49a0451ae38f311b4111e4e7a7a38f111fd308', 'from': '0x6eae38c3c47dfaeb11012b64d1f8c486148f02c8', 'to': '0xe861bab196d2fa49e88acce440507ef183c1ce28', 'value': 1060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3976747fe11a100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T01:31:24.000Z'}}, {'blockNum': '0x929c55', 'uniqueId': '0x8a399f61e6ccf6fe2608007a5eab1164a06a5c732ede6672c61c6431b98aee2b:log:111', 'hash': '0x8a399f61e6ccf6fe2608007a5eab1164a06a5c732ede6672c61c6431b98aee2b', 'from': '0xe861bab196d2fa49e88acce440507ef183c1ce28', 'to': '0x09f901dbf16627c4ad96ada28a3722d917056486', 'value': 1060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3976747fe11a100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T01:33:06.000Z'}}, {'blockNum': '0x929e7e', 'uniqueId': '0xeeb20fd9b435593bd5bc151bf547365cd89ead0faf53ed64d22480ccd4d89c33:log:1', 'hash': '0xeeb20fd9b435593bd5bc151bf547365cd89ead0faf53ed64d22480ccd4d89c33', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7db2f920c207f01742f35cb1a7a491dbceeffd4a', 'value': 2724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x93ab180fa124100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T03:34:40.000Z'}}, {'blockNum': '0x929f88', 'uniqueId': '0x798c8000b4a12a135b7ec50888dadb228e22172d0163d2fc03af813acc2b4cca:log:6', 'hash': '0x798c8000b4a12a135b7ec50888dadb228e22172d0163d2fc03af813acc2b4cca', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 73353.31784441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0f887dc7b0f4dc68c400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T04:28:47.000Z'}}, {'blockNum': '0x929fa1', 'uniqueId': '0x542b3674227ea9c97557cbd3f9e3f81f77954f9b5f42c23b33e89b09e3ce2486:log:164', 'hash': '0x542b3674227ea9c97557cbd3f9e3f81f77954f9b5f42c23b33e89b09e3ce2486', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0ca22dc3e55504bb40f8fc489342e9980a8b0530', 'value': 73353.31784441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0f887dc7b0f4dc68c400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-05T04:34:00.000Z'}}]}}
Number of returned transfers:  33
Answer is complete
 
symbol             POA
group               CW
date        2020-03-12
hour             19:00
exchange       binance
Name: 884, dtype: object
HERE
 Symbol: POA, Contract: 
Datetime timestamps:  2020-03-12 19:00:00 2020-03-12 07:00:00 2020-03-13 07:00:00
Unix timestamps:  1583992800.0 1584079200.0
Hex Block Numbers:  0x9352f9 0x936c14
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             TNB
group               CW
date        2020-03-21
hour             16:00
exchange       binance
Name: 885, dtype: object
HERE
 Symbol: TNB, Contract: 
Datetime timestamps:  2020-03-21 16:00:00 2020-03-21 04:00:00 2020-03-22 04:00:00
Unix timestamps:  1584759600.0 1584846000.0
Hex Block Numbers:  0x94335e 0x944c43
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EVX
group               CW
date        2020-03-21
hour             16:39
exchange       binance
Name: 886, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2020-03-21 16:39:00 2020-03-21 04:39:00 2020-03-22 04:39:00
Unix timestamps:  1584761940.0 1584848340.0
Hex Block Numbers:  0x94340a 0x944cec
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9434ef', 'uniqueId': '0x82d93d102904d69f69a277e330dc7c2ef81ba4dd345eb3745aa28b2b586ebb9f:log:24', 'hash': '0x82d93d102904d69f69a277e330dc7c2ef81ba4dd345eb3745aa28b2b586ebb9f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc8020367e66caca17d724cc940ee90b22c954cb9', 'value': 1847.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0119f95a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T04:30:06.000Z'}}, {'blockNum': '0x9435c4', 'uniqueId': '0x0db612fc3fa41d02ceba627b3bb170bb382aeba06d9da1b43e2b503c613b92ae:log:52', 'hash': '0x0db612fc3fa41d02ceba627b3bb170bb382aeba06d9da1b43e2b503c613b92ae', 'from': '0xc8020367e66caca17d724cc940ee90b22c954cb9', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1847.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0119f95a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T05:15:32.000Z'}}, {'blockNum': '0x943951', 'uniqueId': '0xead78d496953f1b1f588de00b37a5300774a5670c4d21160a2cd49a169d3afd4:log:43', 'hash': '0xead78d496953f1b1f588de00b37a5300774a5670c4d21160a2cd49a169d3afd4', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 4581.2001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02bb0921', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T08:46:05.000Z'}}, {'blockNum': '0x943964', 'uniqueId': '0xcc47135e753a3694caaf2b4b12d59e39663ae13cbd29d1ced9f636199d9edad8:log:22', 'hash': '0xcc47135e753a3694caaf2b4b12d59e39663ae13cbd29d1ced9f636199d9edad8', 'from': '0x3178b39cde153c851796cba961f9775df7787d63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4581.2001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02bb0921', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T08:51:01.000Z'}}, {'blockNum': '0x9439fd', 'uniqueId': '0xea00bbac84693460b24135f5bcda50e0aabe7980de49640437e5ac56eef1af63:log:70', 'hash': '0xea00bbac84693460b24135f5bcda50e0aabe7980de49640437e5ac56eef1af63', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6b60ae938cd0ba56931f22584ce9e2ede15f8f88', 'value': 4572.1097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02b9a609', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T09:24:54.000Z'}}, {'blockNum': '0x943a11', 'uniqueId': '0x4242f1e1ea7490b746f30b16cc6c3958bb99bd05cf9e100f0b6319590284a315:log:61', 'hash': '0x4242f1e1ea7490b746f30b16cc6c3958bb99bd05cf9e100f0b6319590284a315', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 29299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1176ac30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T09:30:45.000Z'}}, {'blockNum': '0x943d77', 'uniqueId': '0x3942cb9c52eb4612ed81d649a3e8e36d853780d9494cf2f4fa84c4fd273e7b9d:log:7', 'hash': '0x3942cb9c52eb4612ed81d649a3e8e36d853780d9494cf2f4fa84c4fd273e7b9d', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 5997.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x039315b8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T12:42:45.000Z'}}, {'blockNum': '0x943d91', 'uniqueId': '0xcf1e3265ab5367975f2584a8714e5f97371318b06669f9f01aa013b0b099e2ab:log:31', 'hash': '0xcf1e3265ab5367975f2584a8714e5f97371318b06669f9f01aa013b0b099e2ab', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xe865333aad27852c5fb83e412a3d199f0b5340a2', 'value': 12266.2086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x074facc6', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T12:49:05.000Z'}}, {'blockNum': '0x943d9f', 'uniqueId': '0xc5dbd924bb25363833d5cb6773572aa9e8b0ace19a904af5d8ab43cad5d3105e:log:21', 'hash': '0xc5dbd924bb25363833d5cb6773572aa9e8b0ace19a904af5d8ab43cad5d3105e', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5997.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x039315b8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T12:51:11.000Z'}}, {'blockNum': '0x943f37', 'uniqueId': '0x19cb1dd43cdf5354e4b1c1e7fd8b5668cd45376aff5a5e1db192e7e4626c2bb9:log:71', 'hash': '0x19cb1dd43cdf5354e4b1c1e7fd8b5668cd45376aff5a5e1db192e7e4626c2bb9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2f5587f618a2ea0de0aee108430d083d8ef37d97', 'value': 1743.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x010a0c98', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T14:23:29.000Z'}}, {'blockNum': '0x943f3c', 'uniqueId': '0xc55c51d02e13e171709d4f8589c0bb4466158175bd4620c53730869772cbc616:log:10', 'hash': '0xc55c51d02e13e171709d4f8589c0bb4466158175bd4620c53730869772cbc616', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 9659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05c1d8b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T14:24:08.000Z'}}, {'blockNum': '0x943f84', 'uniqueId': '0xb8c38e816ff0bdde99ba7a93a3f402877e232fb97b7dcfd14f8c1543321cc36c:log:43', 'hash': '0xb8c38e816ff0bdde99ba7a93a3f402877e232fb97b7dcfd14f8c1543321cc36c', 'from': '0x2f5587f618a2ea0de0aee108430d083d8ef37d97', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1743.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x010a0c98', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T14:41:38.000Z'}}, {'blockNum': '0x94409c', 'uniqueId': '0x38d92faa4990bd80c95607ad4b406491cf5adaa25055bf2fec7a38ca55e8b8c0:log:5', 'hash': '0x38d92faa4990bd80c95607ad4b406491cf5adaa25055bf2fec7a38ca55e8b8c0', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05c1d8b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T15:41:07.000Z'}}, {'blockNum': '0x9440fb', 'uniqueId': '0x6f4a3958e86041aa98c80716432792139d209bafc92cbc602e56eea0f9156b09:log:15', 'hash': '0x6f4a3958e86041aa98c80716432792139d209bafc92cbc602e56eea0f9156b09', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc8020367e66caca17d724cc940ee90b22c954cb9', 'value': 1483.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xe255cc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:04:37.000Z'}}, {'blockNum': '0x944134', 'uniqueId': '0x3ab3b086dc2fd752df994c3c339690715bac7a6542416121092734329a9fb5fc:log:13', 'hash': '0x3ab3b086dc2fd752df994c3c339690715bac7a6542416121092734329a9fb5fc', 'from': '0xc8020367e66caca17d724cc940ee90b22c954cb9', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1483.31, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xe255cc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:16:22.000Z'}}, {'blockNum': '0x9441c0', 'uniqueId': '0xed854e3fd173041e54b70df84286a540ef5ab107571f6b75bb74e76e85a75fe5:log:0', 'hash': '0xed854e3fd173041e54b70df84286a540ef5ab107571f6b75bb74e76e85a75fe5', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 5226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031d6ca0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:44:14.000Z'}}, {'blockNum': '0x9441ca', 'uniqueId': '0x88fe81005af5244aa264c9c94db94b5b32f94fa1a3362eab981713118d1b95d2:log:2', 'hash': '0x88fe81005af5244aa264c9c94db94b5b32f94fa1a3362eab981713118d1b95d2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xfef5cb1565ee004c8307d9e681fb76333bab384b', 'value': 112869.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4346759c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:46:15.000Z'}}, {'blockNum': '0x9441d4', 'uniqueId': '0x8d55baee2b3782eda7909c635f0d7139315d347f42ab38502dd9fce019fb6f18:log:3', 'hash': '0x8d55baee2b3782eda7909c635f0d7139315d347f42ab38502dd9fce019fb6f18', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x1d0c66c2a360f459bb16d9e1794d83da2861229c', 'value': 5359.9295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0331dc3f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:48:25.000Z'}}, {'blockNum': '0x9441d8', 'uniqueId': '0x213affa86854bcdb2d252fb8360def582bf6e56780409cc7467f159d366fd862:log:4', 'hash': '0x213affa86854bcdb2d252fb8360def582bf6e56780409cc7467f159d366fd862', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x8df28cfe4fa1a16c80b0f48ad170920a3840b627', 'value': 265.5474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2884f2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:50:07.000Z'}}, {'blockNum': '0x9441da', 'uniqueId': '0xaf3102bd2020e7825c9dfb219f467854032d272cc2334a2d0cf879e0a9f82e8b:log:1', 'hash': '0xaf3102bd2020e7825c9dfb219f467854032d272cc2334a2d0cf879e0a9f82e8b', 'from': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031d6ca0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:51:01.000Z'}}, {'blockNum': '0x9441df', 'uniqueId': '0x11750a4b512e37f18ee6664146ad2914bb1714f2aa377339383ba27e66296c02:log:89', 'hash': '0x11750a4b512e37f18ee6664146ad2914bb1714f2aa377339383ba27e66296c02', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2f5587f618a2ea0de0aee108430d083d8ef37d97', 'value': 124.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x130650', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:52:35.000Z'}}, {'blockNum': '0x9441ea', 'uniqueId': '0x5e3c93123d589c30e02b181e272d1bbe5c5fdc1bcf1e3505510812dd2ca01852:log:0', 'hash': '0x5e3c93123d589c30e02b181e272d1bbe5c5fdc1bcf1e3505510812dd2ca01852', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x056557d879a381ea93931f282e48c5be02f74c95', 'value': 1860.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011bd428', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:54:42.000Z'}}, {'blockNum': '0x9441fd', 'uniqueId': '0xf4db6e03bfe4f0068641ce5b450dd7a92364a508f20bc22d1fe48cf2ffa31626:log:3', 'hash': '0xf4db6e03bfe4f0068641ce5b450dd7a92364a508f20bc22d1fe48cf2ffa31626', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x1d0c66c2a360f459bb16d9e1794d83da2861229c', 'value': 8481.3313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x050e2601', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:57:57.000Z'}}, {'blockNum': '0x9441fe', 'uniqueId': '0x5cf0a518bee80ca5d5b83a767b16c2fc2a8a3f0bade0d8fb27ae5b0f7f115aba:log:5', 'hash': '0x5cf0a518bee80ca5d5b83a767b16c2fc2a8a3f0bade0d8fb27ae5b0f7f115aba', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'value': 9997.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f56fb8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T16:58:17.000Z'}}, {'blockNum': '0x944209', 'uniqueId': '0x24b4342cc4ca999bb1c144bbbae9b16fa98a078778b7ef00372f3a498abe0174:log:5', 'hash': '0x24b4342cc4ca999bb1c144bbbae9b16fa98a078778b7ef00372f3a498abe0174', 'from': '0x2f5587f618a2ea0de0aee108430d083d8ef37d97', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 124.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x130650', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:01:05.000Z'}}, {'blockNum': '0x944209', 'uniqueId': '0xd45ea2113ad85abf4c9aed3904583adab34153da4d3830a6ddcfbe56dce54ad9:log:7', 'hash': '0xd45ea2113ad85abf4c9aed3904583adab34153da4d3830a6ddcfbe56dce54ad9', 'from': '0x8df28cfe4fa1a16c80b0f48ad170920a3840b627', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 265.5474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2884f2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:01:05.000Z'}}, {'blockNum': '0x944209', 'uniqueId': '0xdc40153386105cec5df17b83be562d5bab3807391991efaaefaa07db4d0804fe:log:8', 'hash': '0xdc40153386105cec5df17b83be562d5bab3807391991efaaefaa07db4d0804fe', 'from': '0x1d0c66c2a360f459bb16d9e1794d83da2861229c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13841.2608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08400240', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:01:05.000Z'}}, {'blockNum': '0x944209', 'uniqueId': '0x2d651331f5104bd6d47bebd7aad54bfa9a691aa48e2e7cbe6f2a5a00149e9ac3:log:9', 'hash': '0x2d651331f5104bd6d47bebd7aad54bfa9a691aa48e2e7cbe6f2a5a00149e9ac3', 'from': '0xfef5cb1565ee004c8307d9e681fb76333bab384b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 112869.11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x4346759c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:01:05.000Z'}}, {'blockNum': '0x944209', 'uniqueId': '0x142f4c9a860d98e4eab1fbeb6e96e80824b0c4153c88ff8d01d4dee8ee5c7049:log:10', 'hash': '0x142f4c9a860d98e4eab1fbeb6e96e80824b0c4153c88ff8d01d4dee8ee5c7049', 'from': '0x056557d879a381ea93931f282e48c5be02f74c95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1860.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x011bd428', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:01:05.000Z'}}, {'blockNum': '0x94420c', 'uniqueId': '0x85eafa6acd3216b20fac8b716866fb2aa1088445b5b6b0ae49ed9813132e524a:log:7', 'hash': '0x85eafa6acd3216b20fac8b716866fb2aa1088445b5b6b0ae49ed9813132e524a', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xfef5cb1565ee004c8307d9e681fb76333bab384b', 'value': 15317.3659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x09213e9b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:01:27.000Z'}}, {'blockNum': '0x944222', 'uniqueId': '0x290c5caa012b3538e35809f5e9cfa8711ef8de5dc24d7d80cee804f3b58cad09:log:2', 'hash': '0x290c5caa012b3538e35809f5e9cfa8711ef8de5dc24d7d80cee804f3b58cad09', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x32d43e0d0997450072e90e6d5ad100730faee025', 'value': 6575.118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03eb488c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:06:07.000Z'}}, {'blockNum': '0x944232', 'uniqueId': '0xa88573e0dc7e4a6e6c8759866250245e6f693ce593affb0e2b9ff1c2aea2bcf5:log:39', 'hash': '0xa88573e0dc7e4a6e6c8759866250245e6f693ce593affb0e2b9ff1c2aea2bcf5', 'from': '0x32d43e0d0997450072e90e6d5ad100730faee025', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6575.118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03eb488c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:11:28.000Z'}}, {'blockNum': '0x944232', 'uniqueId': '0xfcfd9b3cbc38a7cd885f515bb2950780abaf23a8797c5d70c93f15773b29fa39:log:40', 'hash': '0xfcfd9b3cbc38a7cd885f515bb2950780abaf23a8797c5d70c93f15773b29fa39', 'from': '0xfef5cb1565ee004c8307d9e681fb76333bab384b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15317.3659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x09213e9b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:11:28.000Z'}}, {'blockNum': '0x944241', 'uniqueId': '0x0526df86afe33d2b4e8084c66550423a04315a8a5033af661fb9f0da3856eaf4:log:84', 'hash': '0x0526df86afe33d2b4e8084c66550423a04315a8a5033af661fb9f0da3856eaf4', 'from': '0x152625a9feafa5fd927628298e161b48939e2a2b', 'to': '0xcecb403c00ae9b5e0cc772c976476345a83b7307', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1e8480', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:14:16.000Z'}}, {'blockNum': '0x94425d', 'uniqueId': '0x5716c642451ac096b0e7f94bfb829303d39ce7f5f17fee6fd2fdf74cb7301cc1:log:3', 'hash': '0x5716c642451ac096b0e7f94bfb829303d39ce7f5f17fee6fd2fdf74cb7301cc1', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x8df28cfe4fa1a16c80b0f48ad170920a3840b627', 'value': 281.7834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2aff2a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:20:33.000Z'}}, {'blockNum': '0x944260', 'uniqueId': '0x891635f24ee1935440dac5f93d2e97d1b6e9286e30756fad1fdc8a41e31d4c8f:log:11', 'hash': '0x891635f24ee1935440dac5f93d2e97d1b6e9286e30756fad1fdc8a41e31d4c8f', 'from': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9997.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05f56fb8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:20:54.000Z'}}, {'blockNum': '0x94427f', 'uniqueId': '0xc32fbb06c7f4fc290152d813f0a694bd4cfa71b34d03ff314d372fce90c06be9:log:9', 'hash': '0xc32fbb06c7f4fc290152d813f0a694bd4cfa71b34d03ff314d372fce90c06be9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8dd72971de627fc23bf87beac2d75c158d2badf6', 'value': 106.688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x104780', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:28:43.000Z'}}, {'blockNum': '0x944286', 'uniqueId': '0x361e07b3fd7008da8ae682df78880bf2e69f4151a063e5802e5b28bf2c243c8b:log:25', 'hash': '0x361e07b3fd7008da8ae682df78880bf2e69f4151a063e5802e5b28bf2c243c8b', 'from': '0x8df28cfe4fa1a16c80b0f48ad170920a3840b627', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 281.7834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2aff2a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T17:30:58.000Z'}}, {'blockNum': '0x944322', 'uniqueId': '0xee2036a6309a27a07eebfbb987a8981f1f1e4011fcc197252b30bfa1d4dd68fa:log:191', 'hash': '0xee2036a6309a27a07eebfbb987a8981f1f1e4011fcc197252b30bfa1d4dd68fa', 'from': '0x152625a9feafa5fd927628298e161b48939e2a2b', 'to': '0xcecb403c00ae9b5e0cc772c976476345a83b7307', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01312d00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T18:05:33.000Z'}}, {'blockNum': '0x9443ba', 'uniqueId': '0xae3f1ab5cf358e4bfa01818a140330ca11041f9aa88246a2632fb3265f6f1859:log:128', 'hash': '0xae3f1ab5cf358e4bfa01818a140330ca11041f9aa88246a2632fb3265f6f1859', 'from': '0xcecb403c00ae9b5e0cc772c976476345a83b7307', 'to': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb71b00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T18:39:38.000Z'}}, {'blockNum': '0x9443be', 'uniqueId': '0xec1a60bf31c2f27bbabf7b996896055aaeabdb77c47871e298d6499b330e9f59:log:87', 'hash': '0xec1a60bf31c2f27bbabf7b996896055aaeabdb77c47871e298d6499b330e9f59', 'from': '0x969d04d4dc89a9d8e0858241f79be32f95e353e4', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xb71b00', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T18:40:37.000Z'}}, {'blockNum': '0x9443c0', 'uniqueId': '0x5311473d102f7b059c1e80e534259d934b6705b79d84c277f40cec96383fa9a5:log:11', 'hash': '0x5311473d102f7b059c1e80e534259d934b6705b79d84c277f40cec96383fa9a5', 'from': '0xcecb403c00ae9b5e0cc772c976476345a83b7307', 'to': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T18:42:09.000Z'}}, {'blockNum': '0x9443c3', 'uniqueId': '0xe4bfc435a9b66b3bacbb053fb48488cd825b354e4e1a2098612131239c30cbde:log:29', 'hash': '0xe4bfc435a9b66b3bacbb053fb48488cd825b354e4e1a2098612131239c30cbde', 'from': '0xf5cdd2c4d6df4055c63478db8046db2c61fa6b61', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T18:42:48.000Z'}}, {'blockNum': '0x9443e2', 'uniqueId': '0xee4859cd7b099e533d91e1a2a40191fecb21e4f2f17e12c03e761469e7cb97e2:log:27', 'hash': '0xee4859cd7b099e533d91e1a2a40191fecb21e4f2f17e12c03e761469e7cb97e2', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014fb180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T18:51:06.000Z'}}, {'blockNum': '0x944422', 'uniqueId': '0x7d3c7c2306bae7bfbafe76090c9580d0a9e3a5cad1f0445141fb4a427b718619:log:0', 'hash': '0x7d3c7c2306bae7bfbafe76090c9580d0a9e3a5cad1f0445141fb4a427b718619', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 6510.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e15cc8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T19:05:22.000Z'}}, {'blockNum': '0x944436', 'uniqueId': '0x3583bec3de9f80348fc48a26aa375abe8f9c6295702e4021c80c612f757ca4b5:log:11', 'hash': '0x3583bec3de9f80348fc48a26aa375abe8f9c6295702e4021c80c612f757ca4b5', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0x4b327ee5f2970fb995063f0ee3cd258abbc0210a', 'value': 78.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0bfdec', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T19:10:21.000Z'}}, {'blockNum': '0x944446', 'uniqueId': '0x3ed30b5a5d3dd24ba6687914f504d950928d4d13c1e840264828690ae12b29ca:log:83', 'hash': '0x3ed30b5a5d3dd24ba6687914f504d950928d4d13c1e840264828690ae12b29ca', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 6510.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e15cc8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T19:13:39.000Z'}}, {'blockNum': '0x94456b', 'uniqueId': '0x20ba4ac3b86634c3d2268fe35a9d7fc422990661d592db144b252ba5b31aecf8:log:0', 'hash': '0x20ba4ac3b86634c3d2268fe35a9d7fc422990661d592db144b252ba5b31aecf8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 76.0121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b9939', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T20:21:38.000Z'}}, {'blockNum': '0x944589', 'uniqueId': '0xf2dfbe237133fcdaa40a1d7248804c32d369902f1eaedd8b512acda02764d6ea:log:77', 'hash': '0xf2dfbe237133fcdaa40a1d7248804c32d369902f1eaedd8b512acda02764d6ea', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x2a67ffccc228009ffed7ad63ce36aab160fbcec7', 'value': 76.0121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b9939', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T20:27:18.000Z'}}, {'blockNum': '0x944619', 'uniqueId': '0xc4c1e00aad120a7ea51e9960469b1763e60ff036d864e79c8c694899abb0175d:log:6', 'hash': '0xc4c1e00aad120a7ea51e9960469b1763e60ff036d864e79c8c694899abb0175d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 7930.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ba0988', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T21:01:34.000Z'}}, {'blockNum': '0x94463c', 'uniqueId': '0xcc2bb2585c6ca95b1c3bd718db115c8c4abed6db557c5e51cafff813952531df:log:45', 'hash': '0xcc2bb2585c6ca95b1c3bd718db115c8c4abed6db557c5e51cafff813952531df', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 7930.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04ba0988', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-21T21:06:25.000Z'}}, {'blockNum': '0x944a09', 'uniqueId': '0x5d6b2fa6eacaf836cdda9aba1b400b6bbb5f5fa270e0752030cd85acf66ba610:log:4', 'hash': '0x5d6b2fa6eacaf836cdda9aba1b400b6bbb5f5fa270e0752030cd85acf66ba610', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 6873.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0418c078', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T00:40:49.000Z'}}, {'blockNum': '0x944a17', 'uniqueId': '0x679e946def2a784af1167d0ce78b9fc98d533f7a775ec91396d4f0b2d50f3791:log:34', 'hash': '0x679e946def2a784af1167d0ce78b9fc98d533f7a775ec91396d4f0b2d50f3791', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 26013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0f8144d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T00:44:19.000Z'}}, {'blockNum': '0x944a40', 'uniqueId': '0xa2a671446df84d842d288de26c460498b2cb32795bcdb5e727e93c9c384e1cab:log:19', 'hash': '0xa2a671446df84d842d288de26c460498b2cb32795bcdb5e727e93c9c384e1cab', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 6873.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0418c078', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T00:53:25.000Z'}}, {'blockNum': '0x944a6d', 'uniqueId': '0xf4c91057befc79c057999f299e8b5636feffb515dc9c3366f93a480538551167:log:0', 'hash': '0xf4c91057befc79c057999f299e8b5636feffb515dc9c3366f93a480538551167', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 7991.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c374dc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T01:05:04.000Z'}}, {'blockNum': '0x944a91', 'uniqueId': '0xb8da7d906025ee34971062faaeebcd220b84654f82fb9047f04807549fae106d:log:25', 'hash': '0xb8da7d906025ee34971062faaeebcd220b84654f82fb9047f04807549fae106d', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 7991.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04c374dc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T01:11:52.000Z'}}, {'blockNum': '0x944b12', 'uniqueId': '0x3d54561f13cd99a5f0ab77f773d84c95ac1d9b5f735c0bc8ee758db7fc23990b:log:4', 'hash': '0x3d54561f13cd99a5f0ab77f773d84c95ac1d9b5f735c0bc8ee758db7fc23990b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x056557d879a381ea93931f282e48c5be02f74c95', 'value': 992.1041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x976211', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T01:46:14.000Z'}}, {'blockNum': '0x944b21', 'uniqueId': '0x629ffbb12dd5941f75af0c8e24ee75fc051f93a569814e61bc54e63a0c713604:log:12', 'hash': '0x629ffbb12dd5941f75af0c8e24ee75fc051f93a569814e61bc54e63a0c713604', 'from': '0x056557d879a381ea93931f282e48c5be02f74c95', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 992.1041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x976211', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T01:51:03.000Z'}}, {'blockNum': '0x944c4a', 'uniqueId': '0x4878cab87b60b3896f81d46beec2fd2bb53e27180d33e9eb8b42db56c440e34a:log:23', 'hash': '0x4878cab87b60b3896f81d46beec2fd2bb53e27180d33e9eb8b42db56c440e34a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 8564.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x051ae3ac', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T03:01:05.000Z'}}, {'blockNum': '0x944c6f', 'uniqueId': '0x2195744f5bced5047370d737f5a60753e5bf100d46d1366e2f43d646cf4f70bc:log:33', 'hash': '0x2195744f5bced5047370d737f5a60753e5bf100d46d1366e2f43d646cf4f70bc', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 8564.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x051ae3ac', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T03:09:32.000Z'}}, {'blockNum': '0x944cc1', 'uniqueId': '0x8b97083d3af3568a35455229c550c3fdd2ac42c0d15766a939fd0b796e0cd1eb:log:14', 'hash': '0x8b97083d3af3568a35455229c550c3fdd2ac42c0d15766a939fd0b796e0cd1eb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8d2c369d8511f4256a31afc3fde1ee3289020cf1', 'value': 11764.0029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07030b5d', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-03-22T03:27:44.000Z'}}]}}
Number of returned transfers:  61
Answer is complete
 
symbol             TCT
group               CW
date        2020-03-23
hour             16:00
exchange       binance
Name: 887, dtype: object
HERE
 Symbol: TCT, Contract: 0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7
Datetime timestamps:  2020-03-23 16:00:00 2020-03-23 04:00:00 2020-03-24 04:00:00
Unix timestamps:  1584932400.0 1585018800.0
Hex Block Numbers:  0x94650b 0x947e4d
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9468cd', 'uniqueId': '0x5956b1f99dd0c98336ad6693695e3522b89c03f8c4547047adb8fb2de6d34c05:log:1', 'hash': '0x5956b1f99dd0c98336ad6693695e3522b89c03f8c4547047adb8fb2de6d34c05', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'value': 168419.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x23aa08240bfcc8d00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T06:43:40.000Z'}}, {'blockNum': '0x94692c', 'uniqueId': '0x73156a4291d1af79114a8c747d9a932f6e0eef93cb340079394e0ea500dababa:log:110', 'hash': '0x73156a4291d1af79114a8c747d9a932f6e0eef93cb340079394e0ea500dababa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbc7cffea9b4540e82613f5638822c98c70b5d298', 'value': 59878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0cadfe2da8c267d80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T07:03:54.000Z'}}, {'blockNum': '0x946ae2', 'uniqueId': '0xd0d80fb2c4a0c5211dedcfa2487b92dbdb22d74e2c8558c41d736b3b0db96d88:log:48', 'hash': '0xd0d80fb2c4a0c5211dedcfa2487b92dbdb22d74e2c8558c41d736b3b0db96d88', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 168409.524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x23a97fa38e19ce120000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T08:41:28.000Z'}}, {'blockNum': '0x946af8', 'uniqueId': '0xb861790b0112ba931c926e0ed3b6c12a6fa46d9aeef0311cad2bd210f33cabb3:log:34', 'hash': '0xb861790b0112ba931c926e0ed3b6c12a6fa46d9aeef0311cad2bd210f33cabb3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 276371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x3a861a181faf9a6c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T08:44:48.000Z'}}, {'blockNum': '0x946b11', 'uniqueId': '0xf7be6f84cc4a9b837815dc0ebfab06e992e8261390121dc09fb1c7930d3b6621:log:16', 'hash': '0xf7be6f84cc4a9b837815dc0ebfab06e992e8261390121dc09fb1c7930d3b6621', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbe84eac3f62657f54f1da954c0ca5b30ee44546b', 'value': 84150.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x11d1d0c47748ffab8000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T08:49:24.000Z'}}, {'blockNum': '0x946b1a', 'uniqueId': '0xbac9fc18bc3080641ab0211363092e3a96987edc6c2f7f7544c77fa9090eaf5d:log:35', 'hash': '0xbac9fc18bc3080641ab0211363092e3a96987edc6c2f7f7544c77fa9090eaf5d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x105cea6aeb16814042d9a9a637bd6432d61bb5c2', 'value': 9003.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x01e819ba58fa8c828000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T08:51:30.000Z'}}, {'blockNum': '0x946b35', 'uniqueId': '0xb66218f71b68732dbb353c4438c4a14e023f72c569f2b04bdd1cbcab2f17aa3b:log:50', 'hash': '0xb66218f71b68732dbb353c4438c4a14e023f72c569f2b04bdd1cbcab2f17aa3b', 'from': '0x6a3eb79e1c4023f1610ff046c5dc30f9790d326f', 'to': '0xfd4b9942e2e7e9f351644951b2af395dbca0ff6f', 'value': 458.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x18d993f34aef100000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T08:58:02.000Z'}}, {'blockNum': '0x946bda', 'uniqueId': '0xc1751904de5cd51f9f47987e0aa5e9d16730d0c8932e25757c8d98494faca029:log:24', 'hash': '0xc1751904de5cd51f9f47987e0aa5e9d16730d0c8932e25757c8d98494faca029', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 168409.524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x23a97fa38e19ce120000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T09:33:14.000Z'}}, {'blockNum': '0x946bda', 'uniqueId': '0x05d28c4f34160c8bc1e48069e5f130f9d0c7a8d8e4c6e0e91915d71e3870142e:log:26', 'hash': '0x05d28c4f34160c8bc1e48069e5f130f9d0c7a8d8e4c6e0e91915d71e3870142e', 'from': '0x105cea6aeb16814042d9a9a637bd6432d61bb5c2', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 9003.865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x01e819ba58fa8c827fff', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T09:33:14.000Z'}}, {'blockNum': '0x946bda', 'uniqueId': '0x5dedbb82c48dbdc6148afc23b041ead4e8ce29aa9c0741b70c17250823241bb8:log:31', 'hash': '0x5dedbb82c48dbdc6148afc23b041ead4e8ce29aa9c0741b70c17250823241bb8', 'from': '0xbe84eac3f62657f54f1da954c0ca5b30ee44546b', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 84150.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x11d1d0c47748ffab7fff', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T09:33:14.000Z'}}, {'blockNum': '0x946bda', 'uniqueId': '0xb18fc07db72e6e70c566b74d5d8829a00d6664d139515ffc6ff3ea0eb2e7b6b3:log:33', 'hash': '0xb18fc07db72e6e70c566b74d5d8829a00d6664d139515ffc6ff3ea0eb2e7b6b3', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 276371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x3a861a181faf9a6c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T09:33:14.000Z'}}, {'blockNum': '0x946c47', 'uniqueId': '0x0cad0e9c3c4040e0351583a29d8a13b4de6e49290d2f1ccf02733424fd5328e3:log:31', 'hash': '0x0cad0e9c3c4040e0351583a29d8a13b4de6e49290d2f1ccf02733424fd5328e3', 'from': '0xfd4b9942e2e7e9f351644951b2af395dbca0ff6f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 458.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x18d993f34aef100000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T10:00:04.000Z'}}, {'blockNum': '0x946ec8', 'uniqueId': '0x2cfbed87fbb3993ef5d8cccfccafdbc27546f77ec2d7581c228c48c25be011c6:log:39', 'hash': '0x2cfbed87fbb3993ef5d8cccfccafdbc27546f77ec2d7581c228c48c25be011c6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 150875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1ff2f33c49fd948c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T12:13:42.000Z'}}, {'blockNum': '0x946ec8', 'uniqueId': '0x9babaad1a58239f9ad329254f3b38ee4d7487a9ea1b2541b811356eeaa9a6a71:log:40', 'hash': '0x9babaad1a58239f9ad329254f3b38ee4d7487a9ea1b2541b811356eeaa9a6a71', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 332135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x4655130db559fd3c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T12:13:42.000Z'}}, {'blockNum': '0x946f46', 'uniqueId': '0x7de0b1d5d1e55560f50ebf163692d82405783137e600e7d8389b08ad88555304:log:31', 'hash': '0x7de0b1d5d1e55560f50ebf163692d82405783137e600e7d8389b08ad88555304', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe136f1ac19ac3f77443644d00e469166d04dd9a8', 'value': 10720.113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0245237417e8371e8000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T12:45:53.000Z'}}, {'blockNum': '0x946f71', 'uniqueId': '0xa0d89d92a0361316e6a3de41e98ed5874c659f272224e3d84812f06a537c7c2c:log:39', 'hash': '0xa0d89d92a0361316e6a3de41e98ed5874c659f272224e3d84812f06a537c7c2c', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'value': 54954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0ba30ff3813ac0680000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T12:57:01.000Z'}}, {'blockNum': '0x946f82', 'uniqueId': '0x5cdc52055fa17d599e7f0b33d99c926b8e18cf58a098635989d15ab0f55a42c1:log:167', 'hash': '0x5cdc52055fa17d599e7f0b33d99c926b8e18cf58a098635989d15ab0f55a42c1', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1ff2f33c49fd948c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:00:50.000Z'}}, {'blockNum': '0x946f87', 'uniqueId': '0xdb09e8731a4712cad9d6cb829f890f477c7fd0beb79c888da02f728bb666171d:log:188', 'hash': '0xdb09e8731a4712cad9d6cb829f890f477c7fd0beb79c888da02f728bb666171d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 70059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0ed5e7ef9f8273cc0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:01:37.000Z'}}, {'blockNum': '0x946fa5', 'uniqueId': '0xb9cbde96567ec6a15ba2017175881b2dd6172418633050fca35670df98620832:log:55', 'hash': '0xb9cbde96567ec6a15ba2017175881b2dd6172418633050fca35670df98620832', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 141042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1ddde6f2af7514880000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:07:53.000Z'}}, {'blockNum': '0x946fdd', 'uniqueId': '0xde9c1679ab9d28ffbcca5a40de0faabb82277796d1c65c7fde2036be2873305d:log:91', 'hash': '0xde9c1679ab9d28ffbcca5a40de0faabb82277796d1c65c7fde2036be2873305d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 57882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0c41ca1d280548280000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:21:28.000Z'}}, {'blockNum': '0x946fe3', 'uniqueId': '0x7013e0d3d0010e33c58f5e088978f09343886099cf294d3c368af19797abadef:log:117', 'hash': '0x7013e0d3d0010e33c58f5e088978f09343886099cf294d3c368af19797abadef', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 156143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x2110876bf2ee2a5c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:23:45.000Z'}}, {'blockNum': '0x946fff', 'uniqueId': '0x1ba8d6e9b6733451f29462bced022ac9e55ec338d715cac99cbdc032fe948bc2:log:62', 'hash': '0x1ba8d6e9b6733451f29462bced022ac9e55ec338d715cac99cbdc032fe948bc2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 2656303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x02327e79632388db5c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:30:37.000Z'}}, {'blockNum': '0x947004', 'uniqueId': '0x1bd8a312955cea191b91523db12137b14080f6606f9f8a9ce67f5db43ed7722e:log:145', 'hash': '0x1bd8a312955cea191b91523db12137b14080f6606f9f8a9ce67f5db43ed7722e', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 141042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1ddde6f2af7514880000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:32:29.000Z'}}, {'blockNum': '0x94701f', 'uniqueId': '0x7d1c5f868b69511e80b1913d4fabbfae27bd24b93839320faea27cae2d9b47cd:log:2', 'hash': '0x7d1c5f868b69511e80b1913d4fabbfae27bd24b93839320faea27cae2d9b47cd', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe0b0bb31bf20a8cf535cff171b98ad2866465e98', 'value': 199950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x2a574fac137f3b780000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:38:29.000Z'}}, {'blockNum': '0x94704b', 'uniqueId': '0xce2511ca5de03c01f31133b5e9758e012a40749d8bf55adf8acb9a70631b00e8:log:2', 'hash': '0xce2511ca5de03c01f31133b5e9758e012a40749d8bf55adf8acb9a70631b00e8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 127446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1afcdc8b822711980000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:47:25.000Z'}}, {'blockNum': '0x94705b', 'uniqueId': '0xf9e2baf985b4449413ea1ec3cf0bf23008829eeacb28293cabcd61a6c0dc16bf:log:80', 'hash': '0xf9e2baf985b4449413ea1ec3cf0bf23008829eeacb28293cabcd61a6c0dc16bf', 'from': '0xe136f1ac19ac3f77443644d00e469166d04dd9a8', 'to': '0x84ea0f3c72c2563ff324557778099fed65e9efaf', 'value': 10720.113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0245237417e8371e8000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:50:35.000Z'}}, {'blockNum': '0x947063', 'uniqueId': '0x88b93ca9c10f65ec6772b3ce14ce5727bbace376fe4179d9be6cbb9c27af3dbb:log:13', 'hash': '0x88b93ca9c10f65ec6772b3ce14ce5727bbace376fe4179d9be6cbb9c27af3dbb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2090c509a5ae6392f4f3e5802ede2108b72ad8c3', 'value': 15291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x033ced40dccf520c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:51:24.000Z'}}, {'blockNum': '0x947064', 'uniqueId': '0x9d2c43a3565c0bae0a6f0d896bdc83c53cfddb51a3070519e38af960d816756c:log:139', 'hash': '0x9d2c43a3565c0bae0a6f0d896bdc83c53cfddb51a3070519e38af960d816756c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 2580470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x02226f8f1abbfcf6180000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:51:38.000Z'}}, {'blockNum': '0x947070', 'uniqueId': '0x47b9a4e26bffca88f8fd33eeb6168c23d17663e60539ab8a45b15d69bf745968:log:45', 'hash': '0x47b9a4e26bffca88f8fd33eeb6168c23d17663e60539ab8a45b15d69bf745968', 'from': '0x2090c509a5ae6392f4f3e5802ede2108b72ad8c3', 'to': '0xd4dcd2459bb78d7a645aa7e196857d421b10d93f', 'value': 15291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x033ced40dccf520c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:55:21.000Z'}}, {'blockNum': '0x94707a', 'uniqueId': '0x06a3fe064a3307ba3d963c08838c063f9804ae75a26fa3f1e8e6ec5a44e3472d:log:145', 'hash': '0x06a3fe064a3307ba3d963c08838c063f9804ae75a26fa3f1e8e6ec5a44e3472d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x4a0f1ef7c7642bb80c309fbeb5d48d8946cb1848', 'value': 334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x121b2e5e6464780000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T13:57:34.000Z'}}, {'blockNum': '0x947091', 'uniqueId': '0x703cd528940a637d6d91e850cc22444dfd4c4a165bf65d44d6b1fefce9807ded:log:50', 'hash': '0x703cd528940a637d6d91e850cc22444dfd4c4a165bf65d44d6b1fefce9807ded', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 207773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x2bff659b2f7774540000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T14:03:47.000Z'}}, {'blockNum': '0x9470b6', 'uniqueId': '0x8ac4b0bfb68eac6a31eeb1ec0661ba637410bee5f761aca3a7b73d573b394674:log:125', 'hash': '0x8ac4b0bfb68eac6a31eeb1ec0661ba637410bee5f761aca3a7b73d573b394674', 'from': '0x4a0f1ef7c7642bb80c309fbeb5d48d8946cb1848', 'to': '0x6a3eb79e1c4023f1610ff046c5dc30f9790d326f', 'value': 334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x121b2e5e6464780000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T14:14:44.000Z'}}, {'blockNum': '0x9470fa', 'uniqueId': '0xfa1c4d93fb23a8cad42d199957d2f2393f9048d2f071b6b7b024b62f04607f44:log:31', 'hash': '0xfa1c4d93fb23a8cad42d199957d2f2393f9048d2f071b6b7b024b62f04607f44', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 156143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x2110876bf2ee2a5c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T14:31:11.000Z'}}, {'blockNum': '0x9470fa', 'uniqueId': '0xb49a887e6dd72a6a5794535b6d4829425275b13108ba3e8ab71973eba4a2204e:log:32', 'hash': '0xb49a887e6dd72a6a5794535b6d4829425275b13108ba3e8ab71973eba4a2204e', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 393101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x533e0c43d9a3ce140000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T14:31:11.000Z'}}, {'blockNum': '0x947189', 'uniqueId': '0x4db8fa5c7ad7dd2eceb89a67bc58e79a3d9ea284d51ea985a36296874fe7afc3:log:38', 'hash': '0x4db8fa5c7ad7dd2eceb89a67bc58e79a3d9ea284d51ea985a36296874fe7afc3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 162903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x227efd446aea52fc0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T15:05:30.000Z'}}, {'blockNum': '0x947200', 'uniqueId': '0x8806431291063c5e07f1bd6c23b0aa5eb6a7ef62f73f9fbbb95667ab591faa1e:log:41', 'hash': '0x8806431291063c5e07f1bd6c23b0aa5eb6a7ef62f73f9fbbb95667ab591faa1e', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 162903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x227efd446aea52fc0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T15:30:13.000Z'}}, {'blockNum': '0x94721f', 'uniqueId': '0xafcdca0151d0b3b0cb9b6ec5e6abef0cc0c8cddb27e7d5ea09a220bfae989542:log:61', 'hash': '0xafcdca0151d0b3b0cb9b6ec5e6abef0cc0c8cddb27e7d5ea09a220bfae989542', 'from': '0xbc7cffea9b4540e82613f5638822c98c70b5d298', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 59878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0cadfe2da8c267d80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T15:36:08.000Z'}}, {'blockNum': '0x94721f', 'uniqueId': '0x93c068d1f309196480b358f311ab18131117e2a09ec700d4dbf54c9a6c543e8b:log:62', 'hash': '0x93c068d1f309196480b358f311ab18131117e2a09ec700d4dbf54c9a6c543e8b', 'from': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 168419.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x23aa08240bfcc8d00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T15:36:08.000Z'}}, {'blockNum': '0x947281', 'uniqueId': '0x6bcf5ee24434772076b4d928759ec91b94e9c845b1bd876f39f73d4f0557915e:log:42', 'hash': '0x6bcf5ee24434772076b4d928759ec91b94e9c845b1bd876f39f73d4f0557915e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 51519.81345903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0ae8e50a01514017dc00', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:00:20.000Z'}}, {'blockNum': '0x94728b', 'uniqueId': '0x34593659cd00395a94c91405a465c87bcd2309013c85c67aa640fda99c43bff4:log:0', 'hash': '0x34593659cd00395a94c91405a465c87bcd2309013c85c67aa640fda99c43bff4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 378398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x5020ff26a178f5b80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:02:35.000Z'}}, {'blockNum': '0x94728b', 'uniqueId': '0x9368e5429345395708ee07fc9976a0b823a42ee4a096061530bf3f349c738c69:log:1', 'hash': '0x9368e5429345395708ee07fc9976a0b823a42ee4a096061530bf3f349c738c69', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 70188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0edce62bb009cd300000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:02:35.000Z'}}, {'blockNum': '0x94728b', 'uniqueId': '0x7f5dd74818d3c3bc936671b26189a5faa69ce3b521a9295515dd09d9d73a3067:log:76', 'hash': '0x7f5dd74818d3c3bc936671b26189a5faa69ce3b521a9295515dd09d9d73a3067', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0624eae31407dfb1556b3fa49ab9c4d11058300c', 'value': 58926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0c7a62863cabebf80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:02:35.000Z'}}, {'blockNum': '0x94728d', 'uniqueId': '0xc30473b75a34686443029c05e8b3919fe9e9007b235ea03b6d1ee930bc26f0b5:log:22', 'hash': '0xc30473b75a34686443029c05e8b3919fe9e9007b235ea03b6d1ee930bc26f0b5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:02:46.000Z'}}, {'blockNum': '0x94728e', 'uniqueId': '0x2cab4d66c049e5611f1620acdc585a26613ae3959943ecb0c6c536bc4b991a02:log:11', 'hash': '0x2cab4d66c049e5611f1620acdc585a26613ae3959943ecb0c6c536bc4b991a02', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 105788.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1666d0da7f8d3eb40000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:02:54.000Z'}}, {'blockNum': '0x94728e', 'uniqueId': '0x87d2589cfbdd07825342c4f51cf220bc4bda965d4468de2abb3c85cd9f7c06e9:log:119', 'hash': '0x87d2589cfbdd07825342c4f51cf220bc4bda965d4468de2abb3c85cd9f7c06e9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8236a838771b65e8b8add286a5f3a656fdc69599', 'value': 149268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1f9bd5a1683dcfd00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:02:54.000Z'}}, {'blockNum': '0x947294', 'uniqueId': '0xb5c8a4656d581df0689e3c9eb331e61e3288b39fab9ffd7a73ed4c251757a20c:log:45', 'hash': '0xb5c8a4656d581df0689e3c9eb331e61e3288b39fab9ffd7a73ed4c251757a20c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 53280.113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0b48521a435ce81e8000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:04:30.000Z'}}, {'blockNum': '0x947297', 'uniqueId': '0x03f17a1199a2276216dd295563db9060a7ff356ed55d2951fc16c6f96374455a:log:79', 'hash': '0x03f17a1199a2276216dd295563db9060a7ff356ed55d2951fc16c6f96374455a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 22500.17369012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x04c3bca2d82280a85000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:05:16.000Z'}}, {'blockNum': '0x94729a', 'uniqueId': '0x076db97a30cc06fd961cdcd87c095c419407dccafacdfd3e578a8841311243ae:log:18', 'hash': '0x076db97a30cc06fd961cdcd87c095c419407dccafacdfd3e578a8841311243ae', 'from': '0xd4dcd2459bb78d7a645aa7e196857d421b10d93f', 'to': '0x5b23e489e138c59bf8d9918bc9468e34f629fe7e', 'value': 39974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0876feb098abc8d80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:06:11.000Z'}}, {'blockNum': '0x9472a4', 'uniqueId': '0x8d4fe75ad10cdafafd5be6d204eab41dbb132acaaafb6d524683b96cfd1d24fe:log:8', 'hash': '0x8d4fe75ad10cdafafd5be6d204eab41dbb132acaaafb6d524683b96cfd1d24fe', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 226000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x2fdb7c0b68ae89400000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:08:10.000Z'}}, {'blockNum': '0x9472ab', 'uniqueId': '0x4f7567552b8d0153f8aa6c5ff7dcbfdbf6a8a7330baa3045ea33f57fb121e919:log:0', 'hash': '0x4f7567552b8d0153f8aa6c5ff7dcbfdbf6a8a7330baa3045ea33f57fb121e919', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 81863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1155cd57e33cbabc0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:10:18.000Z'}}, {'blockNum': '0x9472ad', 'uniqueId': '0x497be1856a08b143bc9f3afc5b54508c5646dd1442cac60ae2e418a36b4e09f1:log:127', 'hash': '0x497be1856a08b143bc9f3afc5b54508c5646dd1442cac60ae2e418a36b4e09f1', 'from': '0xe0b0bb31bf20a8cf535cff171b98ad2866465e98', 'to': '0x84ea0f3c72c2563ff324557778099fed65e9efaf', 'value': 199950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x2a574fac137f3b780000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:10:29.000Z'}}, {'blockNum': '0x9472b3', 'uniqueId': '0xc209496e83cc0871ee5bba9f0b338d03f6c1b1a06b5457fad9ad66976eaee8e9:log:53', 'hash': '0xc209496e83cc0871ee5bba9f0b338d03f6c1b1a06b5457fad9ad66976eaee8e9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8236a838771b65e8b8add286a5f3a656fdc69599', 'value': 781185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0xa56c1fab2c7c25640000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:11:16.000Z'}}, {'blockNum': '0x9472b6', 'uniqueId': '0x2a5479f557897323f75527fcfbf07b66e1efa22d3415a2b972d6706a63cfa26f:log:39', 'hash': '0x2a5479f557897323f75527fcfbf07b66e1efa22d3415a2b972d6706a63cfa26f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8236a838771b65e8b8add286a5f3a656fdc69599', 'value': 94658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x140b6ba3686bfdc80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:11:56.000Z'}}, {'blockNum': '0x9472c0', 'uniqueId': '0x4d15d6335ea36503db997b86e1af98660eb48ea661d95b73d9cf0a9099d11ce3:log:76', 'hash': '0x4d15d6335ea36503db997b86e1af98660eb48ea661d95b73d9cf0a9099d11ce3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:13:28.000Z'}}, {'blockNum': '0x9472c5', 'uniqueId': '0x44fb83e1e9ec4d2498bcbebcdea80219e956d8b51ab5e73e393dddcbba0aae09:log:0', 'hash': '0x44fb83e1e9ec4d2498bcbebcdea80219e956d8b51ab5e73e393dddcbba0aae09', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:15:35.000Z'}}, {'blockNum': '0x9472d1', 'uniqueId': '0xe9c01aa9d5f2682351d2d39348cbf90c2234317ef44a6e0fd61ab5ddce5fc194:log:21', 'hash': '0xe9c01aa9d5f2682351d2d39348cbf90c2234317ef44a6e0fd61ab5ddce5fc194', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 79269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x10c92e5c9ad697740000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:18:47.000Z'}}, {'blockNum': '0x9472d3', 'uniqueId': '0x8f5d8eb0face23b83d39e5517fb15243d94302c770aafb2f82edd8257ea2d436:log:114', 'hash': '0x8f5d8eb0face23b83d39e5517fb15243d94302c770aafb2f82edd8257ea2d436', 'from': '0xb9ee1e551f538a464e8f8c41e9904498505b49b0', 'to': '0x5cce1bac15b562d68fae1d33625a7b0287beb521', 'value': 37205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x07e0e3186b7638340000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:20:03.000Z'}}, {'blockNum': '0x9472f1', 'uniqueId': '0x53801247cc41486a0bf7e5794bebdb8a29bcdacf3f64bf566a3d3138c2d52b03:log:5', 'hash': '0x53801247cc41486a0bf7e5794bebdb8a29bcdacf3f64bf566a3d3138c2d52b03', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x96885fcf26f060054584e25ae38f364e8e088725', 'value': 4878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x01086fd9533f93780000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:27:22.000Z'}}, {'blockNum': '0x947301', 'uniqueId': '0xa49ef52b584395eba7c02660254fff7dacc3331746ce87a01c217b09c88d21cb:log:40', 'hash': '0xa49ef52b584395eba7c02660254fff7dacc3331746ce87a01c217b09c88d21cb', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 231320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x30fbe1e02e1d1f600000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:30:04.000Z'}}, {'blockNum': '0x947301', 'uniqueId': '0xce19d6de8f2afbb85be0617e837e3411e7c2ccc7fde38f25c49ce9fc630e07aa:log:43', 'hash': '0xce19d6de8f2afbb85be0617e837e3411e7c2ccc7fde38f25c49ce9fc630e07aa', 'from': '0x8236a838771b65e8b8add286a5f3a656fdc69599', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1025111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0xd91360effd25f2fc0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:30:04.000Z'}}, {'blockNum': '0x947301', 'uniqueId': '0xd732c9e3938dcf8a6adb2dc815b288187fa72112a723b8b92a1de7c02e17411b:log:46', 'hash': '0xd732c9e3938dcf8a6adb2dc815b288187fa72112a723b8b92a1de7c02e17411b', 'from': '0x0624eae31407dfb1556b3fa49ab9c4d11058300c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0c7a62863cabebf80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:30:04.000Z'}}, {'blockNum': '0x947306', 'uniqueId': '0x4a765dfdbc38b41024502021b2c7eafc859a0216e0cddf9bc202b05cd27c609f:log:53', 'hash': '0x4a765dfdbc38b41024502021b2c7eafc859a0216e0cddf9bc202b05cd27c609f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0627d157e611a31ed86a74ad59ab9b0783e4c22a', 'value': 44018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x09523876b6a408880000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:31:24.000Z'}}, {'blockNum': '0x94730a', 'uniqueId': '0x51691273e418babea5d40caa6724a6a40bb00a602231f0582ee277f7cbbfee9e:log:0', 'hash': '0x51691273e418babea5d40caa6724a6a40bb00a602231f0582ee277f7cbbfee9e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 161581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x223752d4ef2be8940000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:32:33.000Z'}}, {'blockNum': '0x94731a', 'uniqueId': '0x050aa0000ab2db77f610c48e9e908dc8407aa12219120461bac58e12223a8a8d:log:2', 'hash': '0x050aa0000ab2db77f610c48e9e908dc8407aa12219120461bac58e12223a8a8d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x84e6f42b435732a6f3dfbd0d518019f469a24dbe', 'value': 5122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0115aa07767b1ec80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:35:07.000Z'}}, {'blockNum': '0x94736a', 'uniqueId': '0xe018b210a9679abb29d517e5b089f7f90ea7d067f226159f04bab2fb125b0fc2:log:6', 'hash': '0xe018b210a9679abb29d517e5b089f7f90ea7d067f226159f04bab2fb125b0fc2', 'from': '0x5cce1bac15b562d68fae1d33625a7b0287beb521', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 37205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x07e0e3186b7638340000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:52:11.000Z'}}, {'blockNum': '0x94736a', 'uniqueId': '0x1c3b5f9e25d394bca09e66f599efd9eaea70a698337309e30681033df9cef3ca:log:7', 'hash': '0x1c3b5f9e25d394bca09e66f599efd9eaea70a698337309e30681033df9cef3ca', 'from': '0x5b23e489e138c59bf8d9918bc9468e34f629fe7e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 39974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0876feb098abc8d80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T16:52:11.000Z'}}, {'blockNum': '0x947389', 'uniqueId': '0x10c2912833ca1ca215e4a3e90bdc86de1e811c738143e626bdd6638e6851a105:log:21', 'hash': '0x10c2912833ca1ca215e4a3e90bdc86de1e811c738143e626bdd6638e6851a105', 'from': '0x0627d157e611a31ed86a74ad59ab9b0783e4c22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x09523876b6a408880000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T17:00:05.000Z'}}, {'blockNum': '0x94739d', 'uniqueId': '0x4149cab2e67136d31cbd2abadda666dd8b58cebf745f6d3cc8ba0375de857115:log:21', 'hash': '0x4149cab2e67136d31cbd2abadda666dd8b58cebf745f6d3cc8ba0375de857115', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 101769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x158ce89660baa8840000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T17:06:29.000Z'}}, {'blockNum': '0x9473d3', 'uniqueId': '0xa673522874fcc735bfdcfbdc41578550c1260e0b6180663707667a2b87165244:log:18', 'hash': '0xa673522874fcc735bfdcfbdc41578550c1260e0b6180663707667a2b87165244', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe1bfab17d08963e789deb1bbe68ec230ee9c0e87', 'value': 229980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x30b33da3d9bceff00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T17:16:51.000Z'}}, {'blockNum': '0x947409', 'uniqueId': '0xe6669f23450a18cb296020259541aaa991cbe71a5adf1124669a15328321fd44:log:32', 'hash': '0xe6669f23450a18cb296020259541aaa991cbe71a5adf1124669a15328321fd44', 'from': '0xe1bfab17d08963e789deb1bbe68ec230ee9c0e87', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 229980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x30b33da3d9bceff00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T17:30:00.000Z'}}, {'blockNum': '0x94755a', 'uniqueId': '0xa48facd07c787bb95d71f12e3f510731eb24e7d9b0e537c2c4c9708116b08030:log:0', 'hash': '0xa48facd07c787bb95d71f12e3f510731eb24e7d9b0e537c2c4c9708116b08030', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 126088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1ab33e8255251d200000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T18:48:12.000Z'}}, {'blockNum': '0x94758f', 'uniqueId': '0x731bab237885e4f53d112e9184bebbb325efede3ad7bae10bf4cc1032dbce032:log:3', 'hash': '0x731bab237885e4f53d112e9184bebbb325efede3ad7bae10bf4cc1032dbce032', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 214149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x2d590a6199f886f40000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T18:56:43.000Z'}}, {'blockNum': '0x94758f', 'uniqueId': '0x72053e3c17084ed25091c5a4c21dcb77f68b59cf972f2044e9fed6d48f07d7f5:log:4', 'hash': '0x72053e3c17084ed25091c5a4c21dcb77f68b59cf972f2044e9fed6d48f07d7f5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 93170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x13bac17d742f08880000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T18:56:43.000Z'}}, {'blockNum': '0x947594', 'uniqueId': '0xca032cc6e4ca7aca7e7637aaab079092835efb6f01ff5da1886b50cd8160bc63:log:9', 'hash': '0xca032cc6e4ca7aca7e7637aaab079092835efb6f01ff5da1886b50cd8160bc63', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 309097.152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x417430affd19f9e00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T18:58:11.000Z'}}, {'blockNum': '0x947594', 'uniqueId': '0xb6576cf6b09175bdb58b35a39987b26f7d4788967f1a08e0a7de6e19894a1643:log:10', 'hash': '0xb6576cf6b09175bdb58b35a39987b26f7d4788967f1a08e0a7de6e19894a1643', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 113012.826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x17ee7004cf62c5c90000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T18:58:11.000Z'}}, {'blockNum': '0x94759e', 'uniqueId': '0xbd34b29a5509b2f1b1d1fc7f459b91534ad87ad585e94d39e478f1a371aa90ab:log:8', 'hash': '0xbd34b29a5509b2f1b1d1fc7f459b91534ad87ad585e94d39e478f1a371aa90ab', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 520532.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x6e3a1d47427f0bcb0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:01:12.000Z'}}, {'blockNum': '0x9475a2', 'uniqueId': '0x0bb09b5d9e922099414631575577a2c5d623a766cee8ae8f69c68c31e376574b:log:11', 'hash': '0x0bb09b5d9e922099414631575577a2c5d623a766cee8ae8f69c68c31e376574b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x426140c47913342756936b6570d47aae4e7a9139', 'value': 3464.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0xbbce11bde007870000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:02:17.000Z'}}, {'blockNum': '0x9475bb', 'uniqueId': '0xe5150db056f528d3e2497b693be0cbb80f6d44b87f0b3a8b809c371e13bfb1be:log:0', 'hash': '0xe5150db056f528d3e2497b693be0cbb80f6d44b87f0b3a8b809c371e13bfb1be', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 150575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1fe2afe62f756b5c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:06:35.000Z'}}, {'blockNum': '0x9475bb', 'uniqueId': '0x3475c1484b56ab579092389072f2a7f2db8925dc4da9203ad10c9566319cf4f6:log:1', 'hash': '0x3475c1484b56ab579092389072f2a7f2db8925dc4da9203ad10c9566319cf4f6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 122863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1a046aa4b7ed625c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:06:35.000Z'}}, {'blockNum': '0x9475d0', 'uniqueId': '0xa2cfa4736d300bb579aa384743a2a8c8c763402c67e49ad41010ad4b5dc0ee4b:log:95', 'hash': '0xa2cfa4736d300bb579aa384743a2a8c8c763402c67e49ad41010ad4b5dc0ee4b', 'from': '0x426140c47913342756936b6570d47aae4e7a9139', 'to': '0xb9ee1e551f538a464e8f8c41e9904498505b49b0', 'value': 3464.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0xbbce11bde007870000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:10:23.000Z'}}, {'blockNum': '0x9475e7', 'uniqueId': '0x3ae8806b6cce8b9ae6475c9eb3ba2e52bff38237a96bc3cf29a790d5448aa6ef:log:1', 'hash': '0x3ae8806b6cce8b9ae6475c9eb3ba2e52bff38237a96bc3cf29a790d5448aa6ef', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x426140c47913342756936b6570d47aae4e7a9139', 'value': 19878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x043596aa81d79ed80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:16:55.000Z'}}, {'blockNum': '0x947613', 'uniqueId': '0x3f67eeb2eaacca96ffc4873c273de54f7d29318dbc2fb96544a56ee80d153b2d:log:56', 'hash': '0x3f67eeb2eaacca96ffc4873c273de54f7d29318dbc2fb96544a56ee80d153b2d', 'from': '0x426140c47913342756936b6570d47aae4e7a9139', 'to': '0xb9ee1e551f538a464e8f8c41e9904498505b49b0', 'value': 19878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x043596aa81d79ed80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:25:23.000Z'}}, {'blockNum': '0x94762d', 'uniqueId': '0xb9c2ee69d99764fb674b6e17f7b58f2c3d005a068d5bbb44a4f6bbefcb6874c6:log:12', 'hash': '0xb9c2ee69d99764fb674b6e17f7b58f2c3d005a068d5bbb44a4f6bbefcb6874c6', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 829629.486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0xafae4df73f9905ab0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:29:50.000Z'}}, {'blockNum': '0x94762e', 'uniqueId': '0x6f4c08616935668da59d000c1154b68ec582f13c1713e3d27230f9bdd3c651a1:log:1', 'hash': '0x6f4c08616935668da59d000c1154b68ec582f13c1713e3d27230f9bdd3c651a1', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 216033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x2dbf2c222c1c6ae40000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:30:13.000Z'}}, {'blockNum': '0x9476b2', 'uniqueId': '0x553b54401f3774f8aadd61c3b51547cb66a8bc7220f6034660e61404e10af6a9:log:2', 'hash': '0x553b54401f3774f8aadd61c3b51547cb66a8bc7220f6034660e61404e10af6a9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 115322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x186b9e3edddb8da80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T19:53:38.000Z'}}, {'blockNum': '0x9476fe', 'uniqueId': '0xc084575051543acb4da5e90e724c90806995c6ec22567311d20335596016356f:log:62', 'hash': '0xc084575051543acb4da5e90e724c90806995c6ec22567311d20335596016356f', 'from': '0xb9ee1e551f538a464e8f8c41e9904498505b49b0', 'to': '0x5cba1a344a4a184c2d67cb0a756db4a57d10b438', 'value': 23142.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x04e68d2d835ce03f0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T20:10:04.000Z'}}, {'blockNum': '0x947898', 'uniqueId': '0x6de2e58a757ea9b1867f23ec71e08853cefb45494b02d5e90f59042bd4b567a6:log:0', 'hash': '0x6de2e58a757ea9b1867f23ec71e08853cefb45494b02d5e90f59042bd4b567a6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 146337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1efcf1d59d5851e40000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T21:37:40.000Z'}}, {'blockNum': '0x947898', 'uniqueId': '0x8fc36460c40273bde2cf9f35ea9584ce48afa827cd0fee34fc70f456bfb9a493:log:1', 'hash': '0x8fc36460c40273bde2cf9f35ea9584ce48afa827cd0fee34fc70f456bfb9a493', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 77854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x107c794abfd45db80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T21:37:40.000Z'}}, {'blockNum': '0x947900', 'uniqueId': '0x678c988d270710e961b351437c349e9f8bc5b2804185d7462935c92218e6a048:log:8', 'hash': '0x678c988d270710e961b351437c349e9f8bc5b2804185d7462935c92218e6a048', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 134684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1c853bf91d95c6f00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T21:58:17.000Z'}}, {'blockNum': '0x947908', 'uniqueId': '0x0049140679bf8e64487eee301471a7e08b74574bf94438ebc02d80fbdaa9275f:log:16', 'hash': '0x0049140679bf8e64487eee301471a7e08b74574bf94438ebc02d80fbdaa9275f', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x107c794abfd45db80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T22:00:17.000Z'}}, {'blockNum': '0x9479bf', 'uniqueId': '0x5e3ccd6b027280fc328676ef115b1beecd5f35fad5a5d470c1597b30a1097c98:log:16', 'hash': '0x5e3ccd6b027280fc328676ef115b1beecd5f35fad5a5d470c1597b30a1097c98', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'value': 134824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1c8cd2dd07d551a00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T22:39:08.000Z'}}, {'blockNum': '0x9479c8', 'uniqueId': '0x2fb6f15f309712056e205b5c3332db397ce84114a0102e86a5fd1d9ce45af160:log:3', 'hash': '0x2fb6f15f309712056e205b5c3332db397ce84114a0102e86a5fd1d9ce45af160', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 134684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1c853bf91d95c6f00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T22:41:01.000Z'}}, {'blockNum': '0x947a26', 'uniqueId': '0xf21b8d92da219891b6c759b84f5eca64b1003e70b104399e3815e73fff75eeb2:log:46', 'hash': '0xf21b8d92da219891b6c759b84f5eca64b1003e70b104399e3815e73fff75eeb2', 'from': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 54954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0ba30ff3813ac0680000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T23:02:18.000Z'}}, {'blockNum': '0x947b21', 'uniqueId': '0x03cd05777f5772789253bf0696f6b473940f55785b38d6c7fe109221763f0389:log:108', 'hash': '0x03cd05777f5772789253bf0696f6b473940f55785b38d6c7fe109221763f0389', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 109758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x173dfe3bf5316c380000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T23:58:08.000Z'}}, {'blockNum': '0x947b24', 'uniqueId': '0x5eb1736455557ee508d8aec785f86a8088eab95071db9e3af846bd103776b9b6:log:14', 'hash': '0x5eb1736455557ee508d8aec785f86a8088eab95071db9e3af846bd103776b9b6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 145230, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1ec0ef1f927b7c780000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-23T23:59:08.000Z'}}, {'blockNum': '0x947b3a', 'uniqueId': '0x94b33cd6b68dc5a5521cec4fe2a7a3e3bf09943b338be774ee43dd9e759fcd02:log:75', 'hash': '0x94b33cd6b68dc5a5521cec4fe2a7a3e3bf09943b338be774ee43dd9e759fcd02', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 44562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x096fb5faf467bd080000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T00:03:31.000Z'}}, {'blockNum': '0x947bac', 'uniqueId': '0xa6d573f685a8de1416ee9273934d9683b620da90db77c9e4420ce83b475623d3:log:157', 'hash': '0xa6d573f685a8de1416ee9273934d9683b620da90db77c9e4420ce83b475623d3', 'from': '0x2e4e31cc232ebe60980f2c6add3a5350ce1bfc0a', 'to': '0x642c6fad23fe40656d30ef6fc2a9a0a94a34471c', 'value': 35990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x079f05954ccec4980000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T00:26:37.000Z'}}, {'blockNum': '0x947bbb', 'uniqueId': '0x9fbb321ca31324fdeb35e8f57b8f3932339fce962c0b7c6e267526f586ee2760:log:11', 'hash': '0x9fbb321ca31324fdeb35e8f57b8f3932339fce962c0b7c6e267526f586ee2760', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 145230, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1ec0ef1f927b7c780000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T00:30:15.000Z'}}, {'blockNum': '0x947bfb', 'uniqueId': '0x3117655e4b47daa9b4f4a31faef788fb62e7b17898c761a491d4385b2b1a7356:log:57', 'hash': '0x3117655e4b47daa9b4f4a31faef788fb62e7b17898c761a491d4385b2b1a7356', 'from': '0x6a3eb79e1c4023f1610ff046c5dc30f9790d326f', 'to': '0xdc1bfbf072693262657524a83d160f027d7c3463', 'value': 389.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x151ec93fcf8c300000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T00:44:27.000Z'}}, {'blockNum': '0x947c3d', 'uniqueId': '0x48b5c55d43cb43ab2b951759eab55df11c51f06a7e5c3f690fc4afa2db65598d:log:18', 'hash': '0x48b5c55d43cb43ab2b951759eab55df11c51f06a7e5c3f690fc4afa2db65598d', 'from': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 44562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x096fb5faf467bd080000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T01:01:08.000Z'}}, {'blockNum': '0x947c3d', 'uniqueId': '0xcd0ef8c93880c0fead5c9406fbe7d6c3e0d6803bd84128ad9f9e468844bb912c:log:19', 'hash': '0xcd0ef8c93880c0fead5c9406fbe7d6c3e0d6803bd84128ad9f9e468844bb912c', 'from': '0x642c6fad23fe40656d30ef6fc2a9a0a94a34471c', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 35990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x079f05954ccec4980000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T01:01:08.000Z'}}, {'blockNum': '0x947c4f', 'uniqueId': '0x06778c3aec90a1263b9e08f8bb0a22dbae3412524593573a6b0abecf6302eda2:log:156', 'hash': '0x06778c3aec90a1263b9e08f8bb0a22dbae3412524593573a6b0abecf6302eda2', 'from': '0xdc1bfbf072693262657524a83d160f027d7c3463', 'to': '0x84ea0f3c72c2563ff324557778099fed65e9efaf', 'value': 389.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x151ec93fcf8c300000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T01:05:37.000Z'}}]}}
Number of returned transfers:  102
Answer is complete
 
symbol             OAX
group               CW
date        2020-03-24
hour             15:58
exchange       binance
Name: 888, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-03-24 15:58:00 2020-03-24 03:58:00 2020-03-25 03:58:00
Unix timestamps:  1585018680.0 1585105080.0
Hex Block Numbers:  0x947e45 0x9496f2
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9487dd', 'uniqueId': '0x221b8863ebf33ef4620d2a4daec555f4cbc6a438ffe62ee785351231c9cbfda3:log:93', 'hash': '0x221b8863ebf33ef4620d2a4daec555f4cbc6a438ffe62ee785351231c9cbfda3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9549a90b81b430ac1c125dec1e35026a4fddc708', 'value': 1853.651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x647c93436fa39b8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T12:15:43.000Z'}}, {'blockNum': '0x948f79', 'uniqueId': '0x4361da98845b81de78e314df1b52fd187a7943d3a6884e9e085cb3e4592711c7:log:17', 'hash': '0x4361da98845b81de78e314df1b52fd187a7943d3a6884e9e085cb3e4592711c7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1018.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x373c13f7a2ed820000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:52:51.000Z'}}]}}
Number of returned transfers:  2
Answer is complete
 
symbol             EDO
group               CW
date        2020-03-26
hour             15:59
exchange       binance
Name: 889, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2020-03-26 15:59:00 2020-03-26 03:59:00 2020-03-27 03:59:00
Unix timestamps:  1585191540.0 1585277940.0
Hex Block Numbers:  0x94aff5 0x94c96b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RLC
group               CW
date        2020-03-27
hour             15:57
exchange       binance
Name: 890, dtype: object
HERE
 Symbol: RLC, Contract: 0x607f4c5bb672230e8672085532f7e901544a7375
Datetime timestamps:  2020-03-27 15:57:00 2020-03-27 03:57:00 2020-03-28 03:57:00
Unix timestamps:  1585277820.0 1585364220.0
Hex Block Numbers:  0x94c961 0x94e2ef
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x94c971', 'uniqueId': '0x0f78b16348f5f1841c998000fe75c0c253b80eb95b01c65f81b6cc3511cc8826:log:89', 'hash': '0x0f78b16348f5f1841c998000fe75c0c253b80eb95b01c65f81b6cc3511cc8826', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x74c8c6ce9766c5f77e3e1ad5c75fe7da07199fc8', 'value': 5.240130945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0138560d81', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:00:21.000Z'}}, {'blockNum': '0x94c971', 'uniqueId': '0x95ca0e1d878db5a8b7d4035387ce5a0fef96292b7015d73488e22c11638126a3:log:99', 'hash': '0x95ca0e1d878db5a8b7d4035387ce5a0fef96292b7015d73488e22c11638126a3', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 96.595462374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x167d89c8e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:00:21.000Z'}}, {'blockNum': '0x94c9a1', 'uniqueId': '0xda6eb68d7412442192c4434e5bc397fb23f137e5beb9ab9d389fef25ffd21238:log:146', 'hash': '0xda6eb68d7412442192c4434e5bc397fb23f137e5beb9ab9d389fef25ffd21238', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 18.911791636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04673b0a14', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:11:29.000Z'}}, {'blockNum': '0x94c9a1', 'uniqueId': '0xda6eb68d7412442192c4434e5bc397fb23f137e5beb9ab9d389fef25ffd21238:log:148', 'hash': '0xda6eb68d7412442192c4434e5bc397fb23f137e5beb9ab9d389fef25ffd21238', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1e7420a37182424817c3ebd04159b3cf64132d12', 'value': 18.911791636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04673b0a14', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:11:29.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x8f8397e49618fd53ad51cfc9c30759f0ed9715044e0afcb31d674c1dca1369a4:log:19', 'hash': '0x8f8397e49618fd53ad51cfc9c30759f0ed9715044e0afcb31d674c1dca1369a4', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x8f8397e49618fd53ad51cfc9c30759f0ed9715044e0afcb31d674c1dca1369a4:log:20', 'hash': '0x8f8397e49618fd53ad51cfc9c30759f0ed9715044e0afcb31d674c1dca1369a4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x523fe171f2825f1bdf2aa1637d6760943ad3839faa952c6a817cdf5cfc070411:log:32', 'hash': '0x523fe171f2825f1bdf2aa1637d6760943ad3839faa952c6a817cdf5cfc070411', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x523fe171f2825f1bdf2aa1637d6760943ad3839faa952c6a817cdf5cfc070411:log:33', 'hash': '0x523fe171f2825f1bdf2aa1637d6760943ad3839faa952c6a817cdf5cfc070411', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0xa33de809f8d4440c6005ce9d905495c9641e8bc87ebe2f9b46aff297173a2809:log:45', 'hash': '0xa33de809f8d4440c6005ce9d905495c9641e8bc87ebe2f9b46aff297173a2809', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0xa33de809f8d4440c6005ce9d905495c9641e8bc87ebe2f9b46aff297173a2809:log:46', 'hash': '0xa33de809f8d4440c6005ce9d905495c9641e8bc87ebe2f9b46aff297173a2809', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x6798d599f1d404583180360dc615bbd3c511c11894dd886f49ca5659ba6c6b7c:log:58', 'hash': '0x6798d599f1d404583180360dc615bbd3c511c11894dd886f49ca5659ba6c6b7c', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c1', 'uniqueId': '0x6798d599f1d404583180360dc615bbd3c511c11894dd886f49ca5659ba6c6b7c:log:59', 'hash': '0x6798d599f1d404583180360dc615bbd3c511c11894dd886f49ca5659ba6c6b7c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:18:54.000Z'}}, {'blockNum': '0x94c9c4', 'uniqueId': '0xd33863fd6dc081c5039979bfbe89d24096f0357fbc8c44e3f258f0946ddc2b09:log:0', 'hash': '0xd33863fd6dc081c5039979bfbe89d24096f0357fbc8c44e3f258f0946ddc2b09', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 6584.145698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05fcfdaa5cd0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:19:28.000Z'}}, {'blockNum': '0x94c9ce', 'uniqueId': '0x34b6cdd2b1e9990b0608d7a9c4891f58b0ff935e90147fa1edb8ccb94ddc2011:log:148', 'hash': '0x34b6cdd2b1e9990b0608d7a9c4891f58b0ff935e90147fa1edb8ccb94ddc2011', 'from': '0x475a24c7c7679e3399cf55e90cb3d50a6aceea7b', 'to': '0xa2e30f39c11f4150bd468a5de91ce8b5dba08abd', 'value': 12207.007147269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b1a2a532505', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:21:10.000Z'}}, {'blockNum': '0x94c9f3', 'uniqueId': '0xb43febb6f89e145c7c8121082aab9328b41cd8f0f5330006deca8dc6a0fcfaca:log:34', 'hash': '0xb43febb6f89e145c7c8121082aab9328b41cd8f0f5330006deca8dc6a0fcfaca', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6584.145698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05fcfdaa5cd0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:29:08.000Z'}}, {'blockNum': '0x94c9f3', 'uniqueId': '0xee2a3ef4418e1e792ad4d6edb8f93b2960c934d8ef4169d878f7b12973b13284:log:40', 'hash': '0xee2a3ef4418e1e792ad4d6edb8f93b2960c934d8ef4169d878f7b12973b13284', 'from': '0xa2e30f39c11f4150bd468a5de91ce8b5dba08abd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12207.007147269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b1a2a532505', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:29:08.000Z'}}, {'blockNum': '0x94ca13', 'uniqueId': '0xbdad07553f9d4bdcc8535860b8462dc0f3a98136984bc3f5d58a1cb27c0869ed:log:58', 'hash': '0xbdad07553f9d4bdcc8535860b8462dc0f3a98136984bc3f5d58a1cb27c0869ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4a62dfdfdb35408ede6390d7c652943381668e0b', 'value': 110.517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x19bb539740', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T03:37:07.000Z'}}, {'blockNum': '0x94cab5', 'uniqueId': '0xf3f9013c97c16b936b82628ee81ddfa388cb8268c5fa8272c0bb988a442c3bdd:log:59', 'hash': '0xf3f9013c97c16b936b82628ee81ddfa388cb8268c5fa8272c0bb988a442c3bdd', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x5bc124b3f28c301f497d3d44eb5c3225651143cb', 'value': 1100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:17:33.000Z'}}, {'blockNum': '0x94cad4', 'uniqueId': '0x3cd0d9b874d8da2a2e8b592bd3ea2acd2882f21ab4e172ae0d6d1d674b6215d0:log:43', 'hash': '0x3cd0d9b874d8da2a2e8b592bd3ea2acd2882f21ab4e172ae0d6d1d674b6215d0', 'from': '0x5bc124b3f28c301f497d3d44eb5c3225651143cb', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:24:02.000Z'}}, {'blockNum': '0x94cad4', 'uniqueId': '0x3cd0d9b874d8da2a2e8b592bd3ea2acd2882f21ab4e172ae0d6d1d674b6215d0:log:44', 'hash': '0x3cd0d9b874d8da2a2e8b592bd3ea2acd2882f21ab4e172ae0d6d1d674b6215d0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01001d1bf800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:24:02.000Z'}}, {'blockNum': '0x94cb0f', 'uniqueId': '0x4b264ddf04c54e936d8957b8ea94fb6883bdda9e15a743fcc34d49a906618f94:log:20', 'hash': '0x4b264ddf04c54e936d8957b8ea94fb6883bdda9e15a743fcc34d49a906618f94', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 237.843251084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37608fff8c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:40:13.000Z'}}, {'blockNum': '0x94cb0f', 'uniqueId': '0x4b264ddf04c54e936d8957b8ea94fb6883bdda9e15a743fcc34d49a906618f94:log:22', 'hash': '0x4b264ddf04c54e936d8957b8ea94fb6883bdda9e15a743fcc34d49a906618f94', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3ade2f2e035d88756834c7dd39df0be9364b3c95', 'value': 237.843251084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37608fff8c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:40:13.000Z'}}, {'blockNum': '0x94cb2f', 'uniqueId': '0x17fbedb560e7cd11a424492c3d230b7ab502505780ee3c32e6df12e41a3b07cf:log:90', 'hash': '0x17fbedb560e7cd11a424492c3d230b7ab502505780ee3c32e6df12e41a3b07cf', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x71a06ff7244c8bae35867a023d6eeb78d8e60669', 'value': 37.762551261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x08cad2cddd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:45:30.000Z'}}, {'blockNum': '0x94cb4f', 'uniqueId': '0x3706f20f4609e66615fbee1698b867851950c2fb8d5755b28d2a3483ea953e34:log:156', 'hash': '0x3706f20f4609e66615fbee1698b867851950c2fb8d5755b28d2a3483ea953e34', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 190.529801417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c5c760cc9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:52:24.000Z'}}, {'blockNum': '0x94cb63', 'uniqueId': '0x0c660ca0f66850916b2135aa03b2844194cbfb81c8b8365f58a8a3869ae2c75b:log:65', 'hash': '0x0c660ca0f66850916b2135aa03b2844194cbfb81c8b8365f58a8a3869ae2c75b', 'from': '0x997e906b5102a9416e866af55dfb530519d3530d', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 391.723576229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b348b6ba5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T04:56:01.000Z'}}, {'blockNum': '0x94cbb5', 'uniqueId': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5:log:31', 'hash': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 191.045723869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c7b3666dd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:12:42.000Z'}}, {'blockNum': '0x94cbb5', 'uniqueId': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5:log:33', 'hash': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 191.045723869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c7b3666dd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:12:42.000Z'}}, {'blockNum': '0x94cbb5', 'uniqueId': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5:log:37', 'hash': '0x3dfb35efaa9ee0e21d0cf557857e8159dbc6a3138cd961c6b033d818c5dadeb5', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 191.045723869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c7b3666dd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:12:42.000Z'}}, {'blockNum': '0x94cbcc', 'uniqueId': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f:log:79', 'hash': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 191.431285371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c92319a7b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:18:11.000Z'}}, {'blockNum': '0x94cbcc', 'uniqueId': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f:log:81', 'hash': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 191.431285371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c92319a7b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:18:11.000Z'}}, {'blockNum': '0x94cbcc', 'uniqueId': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f:log:85', 'hash': '0xa69fe5125cce647f33849af1292e78d2ea563ec39f0e5d865b5210f94c57c07f', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 191.431285371, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c92319a7b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:18:11.000Z'}}, {'blockNum': '0x94cc16', 'uniqueId': '0xb7f655df5a60b8a86deeb5fe380e554a4fd32528d895b4bb733e0a2c1d0f7f6d:log:10', 'hash': '0xb7f655df5a60b8a86deeb5fe380e554a4fd32528d895b4bb733e0a2c1d0f7f6d', 'from': '0x897cda859e56a553683df8b8e33e0cb2aa8d5e9d', 'to': '0x75ca9399496053bbea8867c9df4e88877efceb9f', 'value': 2437.946548715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0237a0f021eb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:32:16.000Z'}}, {'blockNum': '0x94cc7b', 'uniqueId': '0x082cce44b52ccef999da66402664e39a18db60704adc07af2da1b148697234c0:log:72', 'hash': '0x082cce44b52ccef999da66402664e39a18db60704adc07af2da1b148697234c0', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 385.087431007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x59a8ffe15f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T05:51:09.000Z'}}, {'blockNum': '0x94ccfb', 'uniqueId': '0x3800e7080ebd6f056416afadaafb2e9e1c3dbc34a3ab9b1baae2d3bb0031c0af:log:60', 'hash': '0x3800e7080ebd6f056416afadaafb2e9e1c3dbc34a3ab9b1baae2d3bb0031c0af', 'from': '0xff76be47165d7dc5359625a3d804f70e311849b3', 'to': '0x9c36b28bf5b696fe06ff8625db8fa610ce96c60a', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:18:38.000Z'}}, {'blockNum': '0x94cd70', 'uniqueId': '0xfd5f07749f8ab8168fc671860d4a4f2e0a7b6f206a02b4189b01d2f87c5f9950:log:66', 'hash': '0xfd5f07749f8ab8168fc671860d4a4f2e0a7b6f206a02b4189b01d2f87c5f9950', 'from': '0xa698cade532bf7491f0f887284f8e10e2de97198', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1093.572737115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfe9e03b85b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:44:33.000Z'}}, {'blockNum': '0x94cd70', 'uniqueId': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e:log:129', 'hash': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 242.476847785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3874bf12a9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:44:33.000Z'}}, {'blockNum': '0x94cd70', 'uniqueId': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e:log:132', 'hash': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 242.476847785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3874bf12a9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:44:33.000Z'}}, {'blockNum': '0x94cd70', 'uniqueId': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e:log:134', 'hash': '0x6b9f727b0ee25e59b219ae605e131be9165d2d77f4354d10b3bae9fd3fc6ea2e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 242.476847785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3874bf12a9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T06:44:33.000Z'}}, {'blockNum': '0x94ce12', 'uniqueId': '0x6ba13a0dc5ff804a02ed4a664d95f6a355c09c24189b0ccc5f400a1b8bfe98d0:log:49', 'hash': '0x6ba13a0dc5ff804a02ed4a664d95f6a355c09c24189b0ccc5f400a1b8bfe98d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 240.253010467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37f0320223', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T07:19:53.000Z'}}, {'blockNum': '0x94ce12', 'uniqueId': '0x6ba13a0dc5ff804a02ed4a664d95f6a355c09c24189b0ccc5f400a1b8bfe98d0:log:51', 'hash': '0x6ba13a0dc5ff804a02ed4a664d95f6a355c09c24189b0ccc5f400a1b8bfe98d0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x259158ccbc4d55b47a4241cf282c71ac690635c9', 'value': 240.253010467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37f0320223', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T07:19:53.000Z'}}, {'blockNum': '0x94ce29', 'uniqueId': '0xefc69aaa2f0a977805517b2e0fd8e87ad157a829e31113185d42c73b601120d3:log:157', 'hash': '0xefc69aaa2f0a977805517b2e0fd8e87ad157a829e31113185d42c73b601120d3', 'from': '0x259158ccbc4d55b47a4241cf282c71ac690635c9', 'to': '0xb1b7565cb8113dc9e7d14109aa5c53be03b9341d', 'value': 240.253010467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37f0320223', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T07:24:32.000Z'}}, {'blockNum': '0x94cea5', 'uniqueId': '0xb5ebc5e363c492f3810d38244f20c0b3ed55c6ecf9dcdefe50b7abf57457d954:log:76', 'hash': '0xb5ebc5e363c492f3810d38244f20c0b3ed55c6ecf9dcdefe50b7abf57457d954', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc6bfd30a6b368cc5869c6803ed3a3ca29b221aab', 'value': 150.63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x23123f6580', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T07:55:10.000Z'}}, {'blockNum': '0x94ced5', 'uniqueId': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70:log:171', 'hash': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 193.386758116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d06bfbfe4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:05:42.000Z'}}, {'blockNum': '0x94ced5', 'uniqueId': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70:log:173', 'hash': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 193.386758116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d06bfbfe4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:05:42.000Z'}}, {'blockNum': '0x94ced5', 'uniqueId': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70:log:174', 'hash': '0x29861a1a1ba5a5f65ad8f0cab96fc9b291ab44aadcb6953043dc34779e4cef70', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 193.386758116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d06bfbfe4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:05:42.000Z'}}, {'blockNum': '0x94cf6e', 'uniqueId': '0x00ff39cc1797597f6817d41f88926cfbdbf770bc6088992278481a1216f176d0:log:117', 'hash': '0x00ff39cc1797597f6817d41f88926cfbdbf770bc6088992278481a1216f176d0', 'from': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'to': '0x2bbe23f7f801423f5612416fe75905b20d40f5a7', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:42:22.000Z'}}, {'blockNum': '0x94cf8e', 'uniqueId': '0xb434b5681a93a8b0494ff39857f5148cdc776eb4b95e5a9c4e0c2eda02d188d9:log:29', 'hash': '0xb434b5681a93a8b0494ff39857f5148cdc776eb4b95e5a9c4e0c2eda02d188d9', 'from': '0x2bbe23f7f801423f5612416fe75905b20d40f5a7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T08:48:56.000Z'}}, {'blockNum': '0x94cfdf', 'uniqueId': '0xa4c90fed4bfe9f9c8de0234204660a69b7e59f6936840379b7444347d5c61a80:log:34', 'hash': '0xa4c90fed4bfe9f9c8de0234204660a69b7e59f6936840379b7444347d5c61a80', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1017.489524328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xece71a0668', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:05:46.000Z'}}, {'blockNum': '0x94cfdf', 'uniqueId': '0xa4c90fed4bfe9f9c8de0234204660a69b7e59f6936840379b7444347d5c61a80:log:36', 'hash': '0xa4c90fed4bfe9f9c8de0234204660a69b7e59f6936840379b7444347d5c61a80', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce3f17ff0f62bc9b2e27c64ed9b6838828ac73ba', 'value': 1017.489524328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xece71a0668', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:05:46.000Z'}}, {'blockNum': '0x94cff9', 'uniqueId': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c:log:145', 'hash': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 192.860544685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ce7625ead', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:11:19.000Z'}}, {'blockNum': '0x94cff9', 'uniqueId': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c:log:147', 'hash': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 192.860544685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ce7625ead', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:11:19.000Z'}}, {'blockNum': '0x94cff9', 'uniqueId': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c:log:148', 'hash': '0xa1014583a6e992e6786606234778cdbf240ca048fb9777d6ce17a55d9efb216c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 192.860544685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2ce7625ead', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:11:19.000Z'}}, {'blockNum': '0x94d0b0', 'uniqueId': '0x3e142cbece5bd9048caf0ddf9dbee5fb0f50f6d7fab64cf5705efe59fdadab0f:log:9', 'hash': '0x3e142cbece5bd9048caf0ddf9dbee5fb0f50f6d7fab64cf5705efe59fdadab0f', 'from': '0xe3bc413df54de29765c0ee49bfa12ad591ea8ecc', 'to': '0xc7b74e47f2f02cc24107092cc8ba202751d41d80', 'value': 133.505134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1f1586adb0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T09:51:50.000Z'}}, {'blockNum': '0x94d0e4', 'uniqueId': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174:log:133', 'hash': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x239f82ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:02:56.000Z'}}, {'blockNum': '0x94d0e4', 'uniqueId': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174:log:135', 'hash': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x239f82ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:02:56.000Z'}}, {'blockNum': '0x94d0e4', 'uniqueId': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174:log:136', 'hash': '0x792cc4b2426d6ee157fd26a988182189e6ecf059c880cc6420ef2a49bd7cb174', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x239f82ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:02:56.000Z'}}, {'blockNum': '0x94d163', 'uniqueId': '0xe055d3b243ebd855d589a9da4f38b57fb31b324492ba17dbc3c4b957297a4386:log:8', 'hash': '0xe055d3b243ebd855d589a9da4f38b57fb31b324492ba17dbc3c4b957297a4386', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x08db2f565f057fc12ba6151e7e7190d003cba7bd', 'value': 150.86661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x232059c750', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:31:53.000Z'}}, {'blockNum': '0x94d165', 'uniqueId': '0x288f05853f3f6a1e524d34d414ae0f285b78294a01af4f5d635b9f88f52d13ff:log:30', 'hash': '0x288f05853f3f6a1e524d34d414ae0f285b78294a01af4f5d635b9f88f52d13ff', 'from': '0x3dd1023508a279c7b59c316ffa470e10482e6b05', 'to': '0x9799c2b49b938ed4a416bf26491c76d4fff3f58e', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:31:59.000Z'}}, {'blockNum': '0x94d168', 'uniqueId': '0x4dd8341e284511c0b36124bb4693c5b011fffd225cd75518f9e0822632a4cba5:log:102', 'hash': '0x4dd8341e284511c0b36124bb4693c5b011fffd225cd75518f9e0822632a4cba5', 'from': '0x9799c2b49b938ed4a416bf26491c76d4fff3f58e', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:32:48.000Z'}}, {'blockNum': '0x94d180', 'uniqueId': '0xa3d4958bbc113aad00af20fea00d62371a97e91991f37b2d24fccb02283a10d7:log:138', 'hash': '0xa3d4958bbc113aad00af20fea00d62371a97e91991f37b2d24fccb02283a10d7', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T10:38:46.000Z'}}, {'blockNum': '0x94d27c', 'uniqueId': '0x89d4b4c08f73f21642712fc4048f9d1b21fbf5ccda49d77de10b3a839784f2a3:log:9', 'hash': '0x89d4b4c08f73f21642712fc4048f9d1b21fbf5ccda49d77de10b3a839784f2a3', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x1723c4892acebbfbe6d41376e9b6c3f98d10453d', 'value': 339.3235798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f0142ed98', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:32:03.000Z'}}, {'blockNum': '0x94d290', 'uniqueId': '0xb9cf4f968c2a3f96f21eabed8fd56ff598516bbb5f1d7d286b0a39fa9ef24d9b:log:18', 'hash': '0xb9cf4f968c2a3f96f21eabed8fd56ff598516bbb5f1d7d286b0a39fa9ef24d9b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 424.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x62f22f9680', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:36:59.000Z'}}, {'blockNum': '0x94d2c9', 'uniqueId': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9:log:59', 'hash': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 192.336477178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2cc825bbfa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:46:57.000Z'}}, {'blockNum': '0x94d2c9', 'uniqueId': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9:log:61', 'hash': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 192.336477178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2cc825bbfa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:46:57.000Z'}}, {'blockNum': '0x94d2c9', 'uniqueId': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9:log:62', 'hash': '0x17ab66b705e607b048244915fbae5e2fde22db9de407ecaf25cb92b33809cfd9', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 192.336477178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2cc825bbfa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:46:57.000Z'}}, {'blockNum': '0x94d2d2', 'uniqueId': '0xb8ff86ac4ccaec72fff6be2eeeaff2f85b5c6158ff4772af63e6d8f588da713e:log:28', 'hash': '0xb8ff86ac4ccaec72fff6be2eeeaff2f85b5c6158ff4772af63e6d8f588da713e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x67fd24105d31cdbd00004db1a8a444dce7314003', 'value': 1111.63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0102d24faf80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:49:01.000Z'}}, {'blockNum': '0x94d2f3', 'uniqueId': '0x782027610397665262847f7633daf5382e063d2ae9a77d6b9c516d12cbc0f14b:log:16', 'hash': '0x782027610397665262847f7633daf5382e063d2ae9a77d6b9c516d12cbc0f14b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 426.187200929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x633abc99a1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:55:31.000Z'}}, {'blockNum': '0x94d2f3', 'uniqueId': '0x782027610397665262847f7633daf5382e063d2ae9a77d6b9c516d12cbc0f14b:log:18', 'hash': '0x782027610397665262847f7633daf5382e063d2ae9a77d6b9c516d12cbc0f14b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xc6e1dfff01ecfc22a0a79d366f80f0338645f50c', 'value': 426.187200929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x633abc99a1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T11:55:31.000Z'}}, {'blockNum': '0x94d335', 'uniqueId': '0x9baf8f91f930fc03de62b737865ef910f42baad8a1db42396119ba1b544cb48b:log:29', 'hash': '0x9baf8f91f930fc03de62b737865ef910f42baad8a1db42396119ba1b544cb48b', 'from': '0xc6e1dfff01ecfc22a0a79d366f80f0338645f50c', 'to': '0xf45ff21fd96e6fbe8699f8780e83dab4d1660c5b', 'value': 426.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x633a4eb900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:11:23.000Z'}}, {'blockNum': '0x94d3c5', 'uniqueId': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305:log:134', 'hash': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 358.273603117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x536ac5562d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:45:54.000Z'}}, {'blockNum': '0x94d3c5', 'uniqueId': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305:log:136', 'hash': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.271185887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x536aa073df', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:45:54.000Z'}}, {'blockNum': '0x94d3c5', 'uniqueId': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305:log:137', 'hash': '0xd82ab13afb8374a877e1fff8b6ee1356c0449a02a429937740bf5a4bcc9b7305', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 358.271185887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x536aa073df', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:45:54.000Z'}}, {'blockNum': '0x94d3d3', 'uniqueId': '0x522e9ce91c35f7fd45b104d3f070ade55a13ca22d0fa0da3c2dcbf53e6a3b627:log:112', 'hash': '0x522e9ce91c35f7fd45b104d3f070ade55a13ca22d0fa0da3c2dcbf53e6a3b627', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 238.476984785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37865601d1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:48:52.000Z'}}, {'blockNum': '0x94d3d3', 'uniqueId': '0x522e9ce91c35f7fd45b104d3f070ade55a13ca22d0fa0da3c2dcbf53e6a3b627:log:117', 'hash': '0x522e9ce91c35f7fd45b104d3f070ade55a13ca22d0fa0da3c2dcbf53e6a3b627', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 238.476984785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37865601d1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:48:52.000Z'}}, {'blockNum': '0x94d3d4', 'uniqueId': '0x31da9bef89f21e3b7934d9e7559bbf9194223fbe4337edac95cea0530199fcdb:log:116', 'hash': '0x31da9bef89f21e3b7934d9e7559bbf9194223fbe4337edac95cea0530199fcdb', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 238.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3785eb6d80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:49:02.000Z'}}, {'blockNum': '0x94d3db', 'uniqueId': '0x28d4383b7f99c639212e4e16c6ac4b6dcb11979b2ad936655b8c673b4e0e0ce4:log:13', 'hash': '0x28d4383b7f99c639212e4e16c6ac4b6dcb11979b2ad936655b8c673b4e0e0ce4', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 760.294556704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb105164420', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:50:43.000Z'}}, {'blockNum': '0x94d3dc', 'uniqueId': '0x5e9e8528a3f46872598bf78ca06e4efd5864e5844b1ad4d789a575d1147b4d33:log:14', 'hash': '0x5e9e8528a3f46872598bf78ca06e4efd5864e5844b1ad4d789a575d1147b4d33', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 503.88742747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x755207f78e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:05.000Z'}}, {'blockNum': '0x94d3dc', 'uniqueId': '0x5e9e8528a3f46872598bf78ca06e4efd5864e5844b1ad4d789a575d1147b4d33:log:16', 'hash': '0x5e9e8528a3f46872598bf78ca06e4efd5864e5844b1ad4d789a575d1147b4d33', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 503.88742747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x755207f78e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:05.000Z'}}, {'blockNum': '0x94d3dd', 'uniqueId': '0xaa5171eaed8bba9019bb1950f2a1b6834e69730352c2d83193037e4e435833b0:log:10', 'hash': '0xaa5171eaed8bba9019bb1950f2a1b6834e69730352c2d83193037e4e435833b0', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x39abec1a4d790c51d62882aa19e699b7bd5d3a9b', 'value': 126.688012465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d7f31a8b1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:07.000Z'}}, {'blockNum': '0x94d3dd', 'uniqueId': '0x61239620296338158e87805bfed23d29fffd2aceab168a635081bf3e3d70b60d:log:19', 'hash': '0x61239620296338158e87805bfed23d29fffd2aceab168a635081bf3e3d70b60d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1391.155057662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0143e74d93fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:07.000Z'}}, {'blockNum': '0x94d3dd', 'uniqueId': '0x6359ae81c9b9e43cebe4fa39ab7a046e934cab012538f2c1ef65381be2b2615e:log:22', 'hash': '0x6359ae81c9b9e43cebe4fa39ab7a046e934cab012538f2c1ef65381be2b2615e', 'from': '0x39abec1a4d790c51d62882aa19e699b7bd5d3a9b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 126.688012465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d7f31a8b1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:07.000Z'}}, {'blockNum': '0x94d3de', 'uniqueId': '0xb0838ab4f40ab5853c5752912e76498c0830e197e01dee51599c6bf100387adf:log:43', 'hash': '0xb0838ab4f40ab5853c5752912e76498c0830e197e01dee51599c6bf100387adf', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 469.777969923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d60f2f303', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:15.000Z'}}, {'blockNum': '0x94d3de', 'uniqueId': '0xb0838ab4f40ab5853c5752912e76498c0830e197e01dee51599c6bf100387adf:log:48', 'hash': '0xb0838ab4f40ab5853c5752912e76498c0830e197e01dee51599c6bf100387adf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 469.777969923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d60f2f303', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:51:15.000Z'}}, {'blockNum': '0x94d3df', 'uniqueId': '0xf3b9ae3f5143eeb7331fc1ad5a4cff680e008adb74283143a986cfdeb7229ffa:log:5', 'hash': '0xf3b9ae3f5143eeb7331fc1ad5a4cff680e008adb74283143a986cfdeb7229ffa', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 469.777969923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d60f2f303', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:52:10.000Z'}}, {'blockNum': '0x94d3df', 'uniqueId': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273:log:13', 'hash': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 728.847492294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa9b2b224c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:52:10.000Z'}}, {'blockNum': '0x94d3df', 'uniqueId': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273:log:15', 'hash': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 728.847492294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa9b2b224c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:52:10.000Z'}}, {'blockNum': '0x94d3df', 'uniqueId': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273:log:19', 'hash': '0xba295d8f58de121ed2c8613c3da67b1912265b3b28c6bb4c49961f12ac0f3273', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 728.847492294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa9b2b224c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:52:10.000Z'}}, {'blockNum': '0x94d3ec', 'uniqueId': '0xf3a5e656cb509601b4c6b9cf96f37e51330f9d973c53e781cff58c58cbc7bf99:log:99', 'hash': '0xf3a5e656cb509601b4c6b9cf96f37e51330f9d973c53e781cff58c58cbc7bf99', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 231.634899718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x35ee841306', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:54:26.000Z'}}, {'blockNum': '0x94d3ec', 'uniqueId': '0xf3a5e656cb509601b4c6b9cf96f37e51330f9d973c53e781cff58c58cbc7bf99:log:104', 'hash': '0xf3a5e656cb509601b4c6b9cf96f37e51330f9d973c53e781cff58c58cbc7bf99', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 231.634899718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x35ee841306', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:54:26.000Z'}}, {'blockNum': '0x94d3ef', 'uniqueId': '0x1440b5f4bbfa7365e65618ef40b20578da695acbce68e69939f03fac1d1efd76:log:55', 'hash': '0x1440b5f4bbfa7365e65618ef40b20578da695acbce68e69939f03fac1d1efd76', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 231.63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x35ee394f80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:55:08.000Z'}}, {'blockNum': '0x94d3f1', 'uniqueId': '0xdc79bd2c3158e8b75edaa7b91e430bf3a53783e90a44cce661c3ed4dca2d726c:log:103', 'hash': '0xdc79bd2c3158e8b75edaa7b91e430bf3a53783e90a44cce661c3ed4dca2d726c', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 693.689678117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa183207925', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:55:20.000Z'}}, {'blockNum': '0x94d3f4', 'uniqueId': '0xd644b2bfb481384350a593c59e38a0bca44e9ddd3c60918c969797adeef02902:log:10', 'hash': '0xd644b2bfb481384350a593c59e38a0bca44e9ddd3c60918c969797adeef02902', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 693.689678117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa183207925', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:56:37.000Z'}}, {'blockNum': '0x94d3fe', 'uniqueId': '0x0b01bf78a7507bf70691d0b870839d7564246d976cd4d04eb78a12612792b77a:log:18', 'hash': '0x0b01bf78a7507bf70691d0b870839d7564246d976cd4d04eb78a12612792b77a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1861.255057662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01b15b7250fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:59:25.000Z'}}, {'blockNum': '0x94d3fe', 'uniqueId': '0x101d086f1c10b489d90e3ffe8b6e1a385b02d06b55046f2e8c0cbef0c9071295:log:26', 'hash': '0x101d086f1c10b489d90e3ffe8b6e1a385b02d06b55046f2e8c0cbef0c9071295', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 469.777969923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d60f2f303', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T12:59:25.000Z'}}, {'blockNum': '0x94d40f', 'uniqueId': '0xf371e2be862ab8ec7f7d59b662d7c7936b3cc886e27b15a1a6a7e436c6ece27d:log:7', 'hash': '0xf371e2be862ab8ec7f7d59b662d7c7936b3cc886e27b15a1a6a7e436c6ece27d', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 393.442519789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b9b006aed', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:02:42.000Z'}}, {'blockNum': '0x94d412', 'uniqueId': '0x890948856bf18db3f4da5ae970df784c37724ab6dfaf6b56cfad7f99f5c75aa6:log:87', 'hash': '0x890948856bf18db3f4da5ae970df784c37724ab6dfaf6b56cfad7f99f5c75aa6', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 280.621653185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x41565a9cc1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:03:08.000Z'}}, {'blockNum': '0x94d416', 'uniqueId': '0xc96fc6d288bb0f90b51715adef38abbf1cfc4d7e182be417be2002d233b865e5:log:17', 'hash': '0xc96fc6d288bb0f90b51715adef38abbf1cfc4d7e182be417be2002d233b865e5', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 281.961608243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x41a638b433', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:04:03.000Z'}}, {'blockNum': '0x94d427', 'uniqueId': '0x0c25b5e3650cb70a778d8a65ed304b0c3c0fc2271875dad69d302c7d65fbe95d:log:12', 'hash': '0x0c25b5e3650cb70a778d8a65ed304b0c3c0fc2271875dad69d302c7d65fbe95d', 'from': '0x9cc0bd1f4e9ee7082821ee9da13c4c192b7afb15', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:07:10.000Z'}}, {'blockNum': '0x94d427', 'uniqueId': '0x0c25b5e3650cb70a778d8a65ed304b0c3c0fc2271875dad69d302c7d65fbe95d:log:13', 'hash': '0x0c25b5e3650cb70a778d8a65ed304b0c3c0fc2271875dad69d302c7d65fbe95d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:07:10.000Z'}}, {'blockNum': '0x94d463', 'uniqueId': '0xcede3733088cae28f66858b0fff8011f9c57e88a34881f8cd378e820c503bcc4:log:31', 'hash': '0xcede3733088cae28f66858b0fff8011f9c57e88a34881f8cd378e820c503bcc4', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 693.689678117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa183207925', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:19:12.000Z'}}, {'blockNum': '0x94d4ba', 'uniqueId': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715:log:72', 'hash': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 348.076042721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x510af2e9e1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:43:48.000Z'}}, {'blockNum': '0x94d4ba', 'uniqueId': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715:log:74', 'hash': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 348.073713804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x510acf608c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:43:48.000Z'}}, {'blockNum': '0x94d4ba', 'uniqueId': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715:log:75', 'hash': '0x2865356779a1d324791275998d4e5f86563b559d0f1446d2edcf9f232e0cc715', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 348.073713804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x510acf608c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:43:48.000Z'}}, {'blockNum': '0x94d4cd', 'uniqueId': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e:log:137', 'hash': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e', 'from': '0x88eaaa81e689abb337bc2d1db7aa7a39d2af98cb', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x47036aaa00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:50:09.000Z'}}, {'blockNum': '0x94d4cd', 'uniqueId': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e:log:139', 'hash': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 304.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x46f13cbbc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:50:09.000Z'}}, {'blockNum': '0x94d4cd', 'uniqueId': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e:log:140', 'hash': '0x578c2618a2aa8f83be72ac82fcc24bd428132e0671c97c7ed8f27129c0472e5e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 304.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x46f13cbbc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:50:09.000Z'}}, {'blockNum': '0x94d4e1', 'uniqueId': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768:log:39', 'hash': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768', 'from': '0x88eaaa81e689abb337bc2d1db7aa7a39d2af98cb', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x47036aaa00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:55:27.000Z'}}, {'blockNum': '0x94d4e1', 'uniqueId': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768:log:41', 'hash': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 304.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x46f13cbbc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:55:27.000Z'}}, {'blockNum': '0x94d4e1', 'uniqueId': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768:log:42', 'hash': '0x3b86d35fd1a432b148716c22db8def8a99faeb6e21410e71e327929d6ac25768', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 304.695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x46f13cbbc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T13:55:27.000Z'}}, {'blockNum': '0x94d50a', 'uniqueId': '0x2aefc22dc53170135f1efabfe00bcd69d743b9e19a13583731a29e301c70a031:log:42', 'hash': '0x2aefc22dc53170135f1efabfe00bcd69d743b9e19a13583731a29e301c70a031', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 185.425625077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b2c3a7ff5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:07:14.000Z'}}, {'blockNum': '0x94d530', 'uniqueId': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81:log:100', 'hash': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 346.343604185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50a3afffd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:16:53.000Z'}}, {'blockNum': '0x94d530', 'uniqueId': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81:log:103', 'hash': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 346.343604185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50a3afffd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:16:53.000Z'}}, {'blockNum': '0x94d530', 'uniqueId': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81:log:104', 'hash': '0x5a4d1e16ff53648d59bda3db32768ff78dff3416f52ce54e086bc00e5178ef81', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 346.343604185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50a3afffd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:16:53.000Z'}}, {'blockNum': '0x94d539', 'uniqueId': '0xd5c8092bb86408625f425be595f5354750b21fc9cb7f08a7c91b86efe67b6561:log:79', 'hash': '0xd5c8092bb86408625f425be595f5354750b21fc9cb7f08a7c91b86efe67b6561', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 458.479133992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6abf7c6528', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:18:38.000Z'}}, {'blockNum': '0x94d539', 'uniqueId': '0xd5c8092bb86408625f425be595f5354750b21fc9cb7f08a7c91b86efe67b6561:log:84', 'hash': '0xd5c8092bb86408625f425be595f5354750b21fc9cb7f08a7c91b86efe67b6561', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 458.479133992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6abf7c6528', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:18:38.000Z'}}, {'blockNum': '0x94d53b', 'uniqueId': '0x1a172e68efba1c9ddbe4f5e3af04a36916ee64c6dd9fed72fae24ec46c892ec8:log:11', 'hash': '0x1a172e68efba1c9ddbe4f5e3af04a36916ee64c6dd9fed72fae24ec46c892ec8', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 458.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6abef10580', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:18:50.000Z'}}, {'blockNum': '0x94d56f', 'uniqueId': '0x898bd6356ef32a12ee919d7c47833fee6562477e895bf0dffaf47d31b042f2c7:log:100', 'hash': '0x898bd6356ef32a12ee919d7c47833fee6562477e895bf0dffaf47d31b042f2c7', 'from': '0x2b7f82eb4936d0d4e72f4b9db1528cf03e2e7aee', 'to': '0x27f048cae935a84a2127ee924cc3921feb8820fb', 'value': 59.59884409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0de05e30ba', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:31:56.000Z'}}, {'blockNum': '0x94d5d1', 'uniqueId': '0x7ca197dc10631c261e2b97850f527be04189903a3a7b84aa5d8f0647d2487736:log:54', 'hash': '0x7ca197dc10631c261e2b97850f527be04189903a3a7b84aa5d8f0647d2487736', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5ac1a7cfd53c88e28a2ee4a928246404052be79f', 'value': 197.4996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2dfbe4bc80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T14:56:17.000Z'}}, {'blockNum': '0x94d5eb', 'uniqueId': '0x9a140aa98149bc0884a320d01ee8e489a3daaade5de70701813586b32dfdcb27:log:47', 'hash': '0x9a140aa98149bc0884a320d01ee8e489a3daaade5de70701813586b32dfdcb27', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 550.570618081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x803090ece1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:02:48.000Z'}}, {'blockNum': '0x94d606', 'uniqueId': '0xa0d239155e9db2c3e54431785f3098492ccdc4b823f8a46ca67e676287079ea1:log:127', 'hash': '0xa0d239155e9db2c3e54431785f3098492ccdc4b823f8a46ca67e676287079ea1', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xc044938f12d0ac9346917d0f71c5c539ea2715d2', 'value': 106.958591471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x18e73a95ef', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:08:59.000Z'}}, {'blockNum': '0x94d608', 'uniqueId': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5:log:76', 'hash': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 341.358702487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f7a906f97', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:09:10.000Z'}}, {'blockNum': '0x94d608', 'uniqueId': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5:log:78', 'hash': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 341.358702487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f7a906f97', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:09:10.000Z'}}, {'blockNum': '0x94d608', 'uniqueId': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5:log:79', 'hash': '0xb6c9ec031ca822d7c9f10907eb8744949af22e7301da8abe7f1122af87d601d5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 341.358702487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f7a906f97', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:09:10.000Z'}}, {'blockNum': '0x94d6ad', 'uniqueId': '0x9c035b2207b3cf14055759b956f38096bf1977521a2bb456838ab6b24bbc2c03:log:67', 'hash': '0x9c035b2207b3cf14055759b956f38096bf1977521a2bb456838ab6b24bbc2c03', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x73a50acc57681be8706d7fb83a4e8549b4ddb428', 'value': 65.4491303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0f3d12793c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:42:36.000Z'}}, {'blockNum': '0x94d6e4', 'uniqueId': '0xcaf3cf4628e40934d21c76b53b021ceaa41c92976dfdc092a08b6dfdab2db9ea:log:0', 'hash': '0xcaf3cf4628e40934d21c76b53b021ceaa41c92976dfdc092a08b6dfdab2db9ea', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 677.671833563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9dc8638fdb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:38.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0x20742837e5c7ea6588afe03428d6c7029eaea856c65757d8b3b071ef094ea959:log:1', 'hash': '0x20742837e5c7ea6588afe03428d6c7029eaea856c65757d8b3b071ef094ea959', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 537.345244806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7d1c45be86', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39:log:83', 'hash': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 226.145504724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x34a7528dd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39:log:88', 'hash': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 226.145504724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x34a7528dd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39:log:89', 'hash': '0xe278c109de0b32b6a9ec0b5fed069f89cf451f92934fc3a140c292374d7b5d39', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 226.145504724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x34a7528dd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0xfb0aadf697134b63494cc9ab37a15e425dcee0570bf7327dfd2bc15dd92a645a:log:92', 'hash': '0xfb0aadf697134b63494cc9ab37a15e425dcee0570bf7327dfd2bc15dd92a645a', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1329.453266794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01358996f76a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda:log:94', 'hash': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 337.900861356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4eac75f7ac', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda:log:96', 'hash': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 337.900861356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4eac75f7ac', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e5', 'uniqueId': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda:log:101', 'hash': '0x6dc2c584689fea11e26430522be6420369bc4128f59bd2609796b520856d2eda', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 337.900861356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4eac75f7ac', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:47.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2:log:3', 'hash': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 357.218221594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x532bdd7e1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2:log:5', 'hash': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 357.218221594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x532bdd7e1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2:log:10', 'hash': '0x9f063ae426f793d7d4bbdd7878d8d935c1514faeae464e0b9bc3b4d935a9bea2', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 357.218221594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x532bdd7e1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9ecdbd15490514a3b6eed3ee8819269aa42e9b2d8400780cf617beda6650046d:log:12', 'hash': '0x9ecdbd15490514a3b6eed3ee8819269aa42e9b2d8400780cf617beda6650046d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1336.328451103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01372361f41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x9ecdbd15490514a3b6eed3ee8819269aa42e9b2d8400780cf617beda6650046d:log:14', 'hash': '0x9ecdbd15490514a3b6eed3ee8819269aa42e9b2d8400780cf617beda6650046d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1336.328451103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01372361f41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x71391b008b26379b576601142d08307e1d6ea63327d350371e3eb792779e4003:log:46', 'hash': '0x71391b008b26379b576601142d08307e1d6ea63327d350371e3eb792779e4003', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 665.652291558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9afbf7e7e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x71391b008b26379b576601142d08307e1d6ea63327d350371e3eb792779e4003:log:51', 'hash': '0x71391b008b26379b576601142d08307e1d6ea63327d350371e3eb792779e4003', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 665.652291558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9afbf7e7e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e7', 'uniqueId': '0x636ec3a7a77f0e4398205f4b0948480804f529621b9c1a470f19f3b3c8612e5e:log:90', 'hash': '0x636ec3a7a77f0e4398205f4b0948480804f529621b9c1a470f19f3b3c8612e5e', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 677.671833563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9dc8638fdb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:56:58.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0x4fe2a3246482a419f6051792ee60a83f315cafb3ff777dc5766b1f0729e89f13:log:0', 'hash': '0x4fe2a3246482a419f6051792ee60a83f315cafb3ff777dc5766b1f0729e89f13', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 2609.031316065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x025f76628261', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0x92ac1592e09865dbbd51e4faae0414914824c1d715400694d74b58470e0351e7:log:117', 'hash': '0x92ac1592e09865dbbd51e4faae0414914824c1d715400694d74b58470e0351e7', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1275.86029939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01290f332e7e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0x92ac1592e09865dbbd51e4faae0414914824c1d715400694d74b58470e0351e7:log:122', 'hash': '0x92ac1592e09865dbbd51e4faae0414914824c1d715400694d74b58470e0351e7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 1275.86029939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01290f332e7e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0xd84ff5a33328066601f2b0dfd69d223f338b410d491abeaa32b2247356a19e90:log:126', 'hash': '0xd84ff5a33328066601f2b0dfd69d223f338b410d491abeaa32b2247356a19e90', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1336.328451103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01372361f41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6e9', 'uniqueId': '0x4a6c591d358726fa302c551a1bdfd6b418299c3162c9f5ba2ec6874b8289dd5d:log:137', 'hash': '0x4a6c591d358726fa302c551a1bdfd6b418299c3162c9f5ba2ec6874b8289dd5d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xbd924e0fd0e52fff25012a751a55eca04746a27e', 'value': 2161.166064639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f72f891bff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:10.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0x25cbf977a5d09e1744b25162353ac785bd1d1e90583a35894cfe8665c8313295:log:0', 'hash': '0x25cbf977a5d09e1744b25162353ac785bd1d1e90583a35894cfe8665c8313295', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 2430.674162447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0235ef78530f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0xa10adb3faa49c4b3b9d322a4f7276db651726ef93c62d6338c4368c787089608:log:29', 'hash': '0xa10adb3faa49c4b3b9d322a4f7276db651726ef93c62d6338c4368c787089608', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 594.137078981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8a55545cc5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0xa10adb3faa49c4b3b9d322a4f7276db651726ef93c62d6338c4368c787089608:log:31', 'hash': '0xa10adb3faa49c4b3b9d322a4f7276db651726ef93c62d6338c4368c787089608', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 594.137078981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8a55545cc5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0x4dc29b31265c40ffee054a08b09c8f743a6717c0f0151d7cf8d1fa12c3af7200:log:111', 'hash': '0x4dc29b31265c40ffee054a08b09c8f743a6717c0f0151d7cf8d1fa12c3af7200', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1336.328451103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01372361f41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0x39260c016efa5011315dfe054e76028e7ae7f17a53966c475b37e48b25a8a837:log:139', 'hash': '0x39260c016efa5011315dfe054e76028e7ae7f17a53966c475b37e48b25a8a837', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1275.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01290f2e9d00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6eb', 'uniqueId': '0x7cddfcdf234d098f56def1b8347398705bc91735885c6bd16eda2895211a5a1e:log:152', 'hash': '0x7cddfcdf234d098f56def1b8347398705bc91735885c6bd16eda2895211a5a1e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1181.830290878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01132a931dbe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:57:51.000Z'}}, {'blockNum': '0x94d6ec', 'uniqueId': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea:log:11', 'hash': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 857.099865398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc78f220d36', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:01.000Z'}}, {'blockNum': '0x94d6ec', 'uniqueId': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea:log:16', 'hash': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 857.099865398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc78f220d36', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:01.000Z'}}, {'blockNum': '0x94d6ec', 'uniqueId': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea:log:17', 'hash': '0x7c6d4a5fcc0be8c4a9eaa40ca66eda0b607b1101879b0c654f4e160b0d1b3aea', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 857.099873625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc78f222d59', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:01.000Z'}}, {'blockNum': '0x94d6ec', 'uniqueId': '0x7d8ed9e7eaecee8bf6063cbeea5f012464d8908f10f1004f13de106940033cfc:log:191', 'hash': '0x7d8ed9e7eaecee8bf6063cbeea5f012464d8908f10f1004f13de106940033cfc', 'from': '0xbd924e0fd0e52fff25012a751a55eca04746a27e', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 2161.166064639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f72f891bff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:01.000Z'}}, {'blockNum': '0x94d6ed', 'uniqueId': '0xd653b1844affe3a88d724fa89d7a2344195c151411c1883bd89b8cf29642424a:log:38', 'hash': '0xd653b1844affe3a88d724fa89d7a2344195c151411c1883bd89b8cf29642424a', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 2609.031316065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x025f76628261', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:28.000Z'}}, {'blockNum': '0x94d6ed', 'uniqueId': '0x5386ff299b27b4eab7ce030f34df38e1f5fc003ef1d438fce32bed97870628d0:log:42', 'hash': '0x5386ff299b27b4eab7ce030f34df38e1f5fc003ef1d438fce32bed97870628d0', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1215.480434124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x011b00478dcc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:28.000Z'}}, {'blockNum': '0x94d6ee', 'uniqueId': '0xac08ddb18f236e43e4ea3a10775699f07a1a1296e6a341e877590c8c7b28ef6f:log:34', 'hash': '0xac08ddb18f236e43e4ea3a10775699f07a1a1296e6a341e877590c8c7b28ef6f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa5d1ad34accbf152f44810b897b374a5c1f44dbe', 'value': 1945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c4db08ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:36.000Z'}}, {'blockNum': '0x94d6ee', 'uniqueId': '0xc183326a4c5f4cd902788737b2aa99fb44756756966a39951a554a5695712cac:log:35', 'hash': '0xc183326a4c5f4cd902788737b2aa99fb44756756966a39951a554a5695712cac', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1633.635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017c5c3bdec0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:36.000Z'}}, {'blockNum': '0x94d6ee', 'uniqueId': '0x5c2fa678923a427fc7902409dc951b5a61f9ff9752251c1fbdd2284800c14d1b:log:147', 'hash': '0x5c2fa678923a427fc7902409dc951b5a61f9ff9752251c1fbdd2284800c14d1b', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1688.482790325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0189216abbb5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:58:36.000Z'}}, {'blockNum': '0x94d6f0', 'uniqueId': '0xa5da4ebfd154e5ef1bfc9049642a24e0388f5b3f60489244726957cd7cad1bf7:log:111', 'hash': '0xa5da4ebfd154e5ef1bfc9049642a24e0388f5b3f60489244726957cd7cad1bf7', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 394.365136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5bd1fe6f1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:16.000Z'}}, {'blockNum': '0x94d6f0', 'uniqueId': '0xa5da4ebfd154e5ef1bfc9049642a24e0388f5b3f60489244726957cd7cad1bf7:log:116', 'hash': '0xa5da4ebfd154e5ef1bfc9049642a24e0388f5b3f60489244726957cd7cad1bf7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 394.365136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5bd1fe6f1a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:16.000Z'}}, {'blockNum': '0x94d6f0', 'uniqueId': '0xd9514642a15d6dd2acc2d373bfecb2fe4ad0a899fd8e1ba0d0149d674c4a881f:log:132', 'hash': '0xd9514642a15d6dd2acc2d373bfecb2fe4ad0a899fd8e1ba0d0149d674c4a881f', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1193.047291773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0115c728f77d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:16.000Z'}}, {'blockNum': '0x94d6f0', 'uniqueId': '0x9c8606dd0e53e54f725c24d5576f48c8a727b5abd4aaa1d0c09240b74dd5e286:log:135', 'hash': '0x9c8606dd0e53e54f725c24d5576f48c8a727b5abd4aaa1d0c09240b74dd5e286', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1171.229816075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0110b2bcb50b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:16.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0xccba6362daf4ebe4d3ecfabb8accb6ef279612a0f2671e45734621d5e8984676:log:43', 'hash': '0xccba6362daf4ebe4d3ecfabb8accb6ef279612a0f2671e45734621d5e8984676', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 665.652291558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9afbf7e7e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0xccba6362daf4ebe4d3ecfabb8accb6ef279612a0f2671e45734621d5e8984676:log:45', 'hash': '0xccba6362daf4ebe4d3ecfabb8accb6ef279612a0f2671e45734621d5e8984676', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 665.652291558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9afbf7e7e6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43:log:71', 'hash': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 596.113394538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8acb208b6a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43:log:76', 'hash': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 596.113394538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8acb208b6a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43:log:77', 'hash': '0x92368702dc15fab0a1b5bbd82aa14e31b8905b683d641b3d6fbe64aa6ca40a43', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 596.113394538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8acb208b6a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x39db845b147c101943bff951611b02e5183e14ca4ab4e76910236cf739609a68:log:82', 'hash': '0x39db845b147c101943bff951611b02e5183e14ca4ab4e76910236cf739609a68', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 389.27596707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5aa2a7de5e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x82567d71b09bacc11ef92d418ca475f496f2e108bb3bfb9429cd1115f50c311a:log:84', 'hash': '0x82567d71b09bacc11ef92d418ca475f496f2e108bb3bfb9429cd1115f50c311a', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 386.906528083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a156d1953', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x7a82c2f18dfd0f2774eb914b1b42acfebf86a962b607a43bf8f8147be94cb557:log:87', 'hash': '0x7a82c2f18dfd0f2774eb914b1b42acfebf86a962b607a43bf8f8147be94cb557', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 394.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5bd1b00e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x283b2f81ee9381d8855d934ecfd0279bae68447fd03458c344aca8ad7df8c83d:log:88', 'hash': '0x283b2f81ee9381d8855d934ecfd0279bae68447fd03458c344aca8ad7df8c83d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1146.727781081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x010afe4d52d9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9:log:104', 'hash': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 628.545035783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9258341e07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9:log:109', 'hash': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 628.545035783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9258341e07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f1', 'uniqueId': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9:log:111', 'hash': '0x3b0a17a0d635d50d7e08403dff7a8414c62b52e151662d2beffa1bb05dc97bc9', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 628.545035783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9258341e07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T15:59:35.000Z'}}, {'blockNum': '0x94d6f4', 'uniqueId': '0xc2276d2d4787031fc0df181991c57b282a6469891abf8e27c979c00eca0c27fd:log:20', 'hash': '0xc2276d2d4787031fc0df181991c57b282a6469891abf8e27c979c00eca0c27fd', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 1884.329070505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01b6bac3cfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:17.000Z'}}, {'blockNum': '0x94d6f4', 'uniqueId': '0xc2276d2d4787031fc0df181991c57b282a6469891abf8e27c979c00eca0c27fd:log:22', 'hash': '0xc2276d2d4787031fc0df181991c57b282a6469891abf8e27c979c00eca0c27fd', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 1884.329070505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01b6bac3cfa9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:17.000Z'}}, {'blockNum': '0x94d6f4', 'uniqueId': '0x32af6f9a5bc8b53d420d4abbec4766f2f508b44e9e58bf2ecf01bd549dba481c:log:202', 'hash': '0x32af6f9a5bc8b53d420d4abbec4766f2f508b44e9e58bf2ecf01bd549dba481c', 'from': '0xc044938f12d0ac9346917d0f71c5c539ea2715d2', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 106.958591471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x18e73a95ef', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:17.000Z'}}, {'blockNum': '0x94d6f7', 'uniqueId': '0x6bd5e7a36d07d8f652ebec1d927a8daf58b71506f728198525eaea726d8ae0ed:log:3', 'hash': '0x6bd5e7a36d07d8f652ebec1d927a8daf58b71506f728198525eaea726d8ae0ed', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1639.50554939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017dba25584e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:42.000Z'}}, {'blockNum': '0x94d6f7', 'uniqueId': '0x4eda142618c79b65b9d2db40eb6136ac7d6033371d5b1c8f55b057833ebf80b6:log:4', 'hash': '0x4eda142618c79b65b9d2db40eb6136ac7d6033371d5b1c8f55b057833ebf80b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 360.96724295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x540b5304c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:42.000Z'}}, {'blockNum': '0x94d6f7', 'uniqueId': '0xed97f4ea049ef42db2c2202390f0d0b80f245e1826ffec704f34ae19d21540cc:log:5', 'hash': '0xed97f4ea049ef42db2c2202390f0d0b80f245e1826ffec704f34ae19d21540cc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab2169f600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:42.000Z'}}, {'blockNum': '0x94d6f7', 'uniqueId': '0xc5156dc2abd905316355fcfbfd3780bee3ff16ff0bdc159b550f2240d7afb0d2:log:6', 'hash': '0xc5156dc2abd905316355fcfbfd3780bee3ff16ff0bdc159b550f2240d7afb0d2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 997.05938135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8255ec866', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:42.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x62d2ef7c48aea106bdba86746758a305dd60d96434faeeabbab56e06b8d7d7d0:log:56', 'hash': '0x62d2ef7c48aea106bdba86746758a305dd60d96434faeeabbab56e06b8d7d7d0', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1112.7408093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x010314854a54', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x62d2ef7c48aea106bdba86746758a305dd60d96434faeeabbab56e06b8d7d7d0:log:61', 'hash': '0x62d2ef7c48aea106bdba86746758a305dd60d96434faeeabbab56e06b8d7d7d0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 1112.7408093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x010314854a54', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd:log:62', 'hash': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 222.346617342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x33c4e421fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd:log:64', 'hash': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 220.478926636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3355916f2c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6f8', 'uniqueId': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd:log:66', 'hash': '0x15ca7e2e68b38fd0cb06518987db9c12dff6744a517ffd7c69d72359fad170fd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 220.478926636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3355916f2c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:00:49.000Z'}}, {'blockNum': '0x94d6fb', 'uniqueId': '0xf6d4980d7041f3ce0d410cd974cd39558d89cc0adcbb7a3a37a9a50b371a862f:log:6', 'hash': '0xf6d4980d7041f3ce0d410cd974cd39558d89cc0adcbb7a3a37a9a50b371a862f', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce0c61abf9866fef5767e102cf227f294b3459e5', 'value': 736.694152049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab8664ab71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:11.000Z'}}, {'blockNum': '0x94d6fb', 'uniqueId': '0x8aa4528fd9ec1bebd52b32539ca69bf3aa27b50b019eb369a0f7f9273d05e1bd:log:9', 'hash': '0x8aa4528fd9ec1bebd52b32539ca69bf3aa27b50b019eb369a0f7f9273d05e1bd', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 1804.092015862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a40c4384f6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:11.000Z'}}, {'blockNum': '0x94d6fb', 'uniqueId': '0x8aa4528fd9ec1bebd52b32539ca69bf3aa27b50b019eb369a0f7f9273d05e1bd:log:11', 'hash': '0x8aa4528fd9ec1bebd52b32539ca69bf3aa27b50b019eb369a0f7f9273d05e1bd', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 1804.092015862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a40c4384f6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:11.000Z'}}, {'blockNum': '0x94d6fb', 'uniqueId': '0xe90777d70dbbfd854e8ed2ac4dac1e23ef94a4e8b2a617ba29d9e1d53adf9e05:log:139', 'hash': '0xe90777d70dbbfd854e8ed2ac4dac1e23ef94a4e8b2a617ba29d9e1d53adf9e05', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0290d0b3f200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:11.000Z'}}, {'blockNum': '0x94d6fc', 'uniqueId': '0x423625f27d17553caf0544476dbe406ba0a3a5848dada50d638e2fd857d815d5:log:109', 'hash': '0x423625f27d17553caf0544476dbe406ba0a3a5848dada50d638e2fd857d815d5', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1749.447110438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0197532c6f26', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:33.000Z'}}, {'blockNum': '0x94d6fc', 'uniqueId': '0x423625f27d17553caf0544476dbe406ba0a3a5848dada50d638e2fd857d815d5:log:114', 'hash': '0x423625f27d17553caf0544476dbe406ba0a3a5848dada50d638e2fd857d815d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'value': 1749.447110438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0197532c6f26', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:33.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a:log:26', 'hash': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 1318.845878225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x013311570fd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a:log:29', 'hash': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1318.845878225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x013311570fd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a:log:31', 'hash': '0xe4adfd0db7382d99732d8ebfbe81e283d6139f42986c0d574dece4bad32dc53a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 1318.845878225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x013311570fd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab:log:86', 'hash': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 474.749661779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6e8948f253', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab:log:91', 'hash': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 474.749661779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6e8948f253', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab:log:93', 'hash': '0xce407a01024336862b3097850430d245dad0ad31d9beb7d095433920e1e1ebab', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 474.749661779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6e8948f253', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fd', 'uniqueId': '0x0ce92f63db66c58d63061922b4f79c4c85093a2b84322ed101ec8c62cd52912b:log:95', 'hash': '0x0ce92f63db66c58d63061922b4f79c4c85093a2b84322ed101ec8c62cd52912b', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1112.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01031478f100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:47.000Z'}}, {'blockNum': '0x94d6fe', 'uniqueId': '0xa370c02099d5b0ed0e6cc26b3d21f6de0f5749dea3371579617dd1ae1aef4bdc:log:24', 'hash': '0xa370c02099d5b0ed0e6cc26b3d21f6de0f5749dea3371579617dd1ae1aef4bdc', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 346.544301027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50afa663e3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:56.000Z'}}, {'blockNum': '0x94d6fe', 'uniqueId': '0xa370c02099d5b0ed0e6cc26b3d21f6de0f5749dea3371579617dd1ae1aef4bdc:log:29', 'hash': '0xa370c02099d5b0ed0e6cc26b3d21f6de0f5749dea3371579617dd1ae1aef4bdc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 346.544301027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50afa663e3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:01:56.000Z'}}, {'blockNum': '0x94d6ff', 'uniqueId': '0xf8e3d8db023d46b0d38ad869a3ecf0d43684112a73361eeabfdb2458d84fc52e:log:93', 'hash': '0xf8e3d8db023d46b0d38ad869a3ecf0d43684112a73361eeabfdb2458d84fc52e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1042.786291308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf2cae80e6c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:00.000Z'}}, {'blockNum': '0x94d6ff', 'uniqueId': '0x409d13c6f90ea270c631863b1f49968ca4a7792941d60e285682ac8fc7e7c658:log:98', 'hash': '0x409d13c6f90ea270c631863b1f49968ca4a7792941d60e285682ac8fc7e7c658', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 346.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x50af64c300', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:00.000Z'}}, {'blockNum': '0x94d701', 'uniqueId': '0x61e50f863746fbdbcc426f189001ea43c79ba2e5886e54f27984bf33195b9093:log:13', 'hash': '0x61e50f863746fbdbcc426f189001ea43c79ba2e5886e54f27984bf33195b9093', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x71f4f9b59277a0bb3cf938e9d22b28cffc3cbadf', 'value': 1085.952494007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfcd7d009b7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:24.000Z'}}, {'blockNum': '0x94d701', 'uniqueId': '0x0448c18ad0d52afbe31c0218422f721f9ce8d9cfccb02a0680ea0c65bf6145a2:log:15', 'hash': '0x0448c18ad0d52afbe31c0218422f721f9ce8d9cfccb02a0680ea0c65bf6145a2', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1006.526702934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xea59aaa556', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:24.000Z'}}, {'blockNum': '0x94d701', 'uniqueId': '0x567e5d6cb041eedf7270364274a2c4c9a581f948152ca3138db98ea43bb8d3ae:log:18', 'hash': '0x567e5d6cb041eedf7270364274a2c4c9a581f948152ca3138db98ea43bb8d3ae', 'from': '0x71f4f9b59277a0bb3cf938e9d22b28cffc3cbadf', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1085.952494007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfcd7d009b7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:24.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xe1e925ec8511dfcd9cd5532ad57bfb8fa2372fd4b74919b2d724b16d10aed5df:log:7', 'hash': '0xe1e925ec8511dfcd9cd5532ad57bfb8fa2372fd4b74919b2d724b16d10aed5df', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 933.59190086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd95e69e2bc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0x6a2e6691d9fdc458b93d6b485d5995a0670706f96060c6b6398787d2fb31bc85:log:8', 'hash': '0x6a2e6691d9fdc458b93d6b485d5995a0670706f96060c6b6398787d2fb31bc85', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4917.2057559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0478e04d67fc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0x71b58a764d2084486121a74b4989fad2dd0e08d25e686a1a4eb38b0a6fc0c2e9:log:9', 'hash': '0x71b58a764d2084486121a74b4989fad2dd0e08d25e686a1a4eb38b0a6fc0c2e9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x22b1179200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xaef6fdde79083a8beb2092fd3100a56e4a7903f71ea7408ad59fa993a4ec5b54:log:10', 'hash': '0xaef6fdde79083a8beb2092fd3100a56e4a7903f71ea7408ad59fa993a4ec5b54', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2416b84e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0x1992e3e17ac65f01775c56845c0b9702895291203318507212b431030b628caa:log:11', 'hash': '0x1992e3e17ac65f01775c56845c0b9702895291203318507212b431030b628caa', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 325.95567463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4be478e206', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xdaee4e87124ad3cecb123b12b9234e66d5bab68bab6c87e61773ae33c9f568b5:log:24', 'hash': '0xdaee4e87124ad3cecb123b12b9234e66d5bab68bab6c87e61773ae33c9f568b5', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 508.89964355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x767cc8509e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xdaee4e87124ad3cecb123b12b9234e66d5bab68bab6c87e61773ae33c9f568b5:log:29', 'hash': '0xdaee4e87124ad3cecb123b12b9234e66d5bab68bab6c87e61773ae33c9f568b5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 508.89964355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x767cc8509e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0xa0a66aae3add7298a30da613789cd82116e54fc4ce2fcbb8235bbc064c84e18e:log:138', 'hash': '0xa0a66aae3add7298a30da613789cd82116e54fc4ce2fcbb8235bbc064c84e18e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 1007.813334293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xeaa65b1515', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d702', 'uniqueId': '0x097fb62aebeb490704d2436c699b9c21cd144da50ff2f06d99245cee5ff9d479:log:140', 'hash': '0x097fb62aebeb490704d2436c699b9c21cd144da50ff2f06d99245cee5ff9d479', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 990.858766846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe6b3c8e9fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:32.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84:log:2', 'hash': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 888.715372048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xceeb906610', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84:log:16', 'hash': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 744.990390819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xad74e33a23', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84:log:21', 'hash': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 744.990390819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xad74e33a23', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84:log:22', 'hash': '0xa32264174b86c9a4d6e7dfa0dd780c12fb9860552849729246a77e5f684c0d84', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x4c39ada0340c1eb3cee343f44819323dd29081a9', 'value': 1633.705762867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017c6073a033', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0x4e8618a6b63b729b8c867667c61754e4e193037bb5a253a61b884dfce30c547a:log:49', 'hash': '0x4e8618a6b63b729b8c867667c61754e4e193037bb5a253a61b884dfce30c547a', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 24.925224383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05cda8bdbf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0x4e8618a6b63b729b8c867667c61754e4e193037bb5a253a61b884dfce30c547a:log:51', 'hash': '0x4e8618a6b63b729b8c867667c61754e4e193037bb5a253a61b884dfce30c547a', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 24.925224383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05cda8bdbf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d703', 'uniqueId': '0x0814d3f63c879fad222c2f5c982082bbdcf0e46cd05a0e92fac4af12a44a0113:log:56', 'hash': '0x0814d3f63c879fad222c2f5c982082bbdcf0e46cd05a0e92fac4af12a44a0113', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 209.439324293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x30c38e7885', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:02:45.000Z'}}, {'blockNum': '0x94d705', 'uniqueId': '0x8dbfc2e8f82b9da0e93f00c4238bcb8a691f7eae185cb486d90117134fbd01fb:log:5', 'hash': '0x8dbfc2e8f82b9da0e93f00c4238bcb8a691f7eae185cb486d90117134fbd01fb', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1909.927144683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01bcb0876ceb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:08.000Z'}}, {'blockNum': '0x94d707', 'uniqueId': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4:log:35', 'hash': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 415.361056904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x60b572c088', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:24.000Z'}}, {'blockNum': '0x94d707', 'uniqueId': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4:log:37', 'hash': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 415.361056904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x60b572c088', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:24.000Z'}}, {'blockNum': '0x94d707', 'uniqueId': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4:log:39', 'hash': '0x36d52e3a3cbb6f6835f9e2fb470c138dcb660cff78784aab62fccee28b4875f4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 415.361056904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x60b572c088', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:24.000Z'}}, {'blockNum': '0x94d708', 'uniqueId': '0x2596752e75dd2faa8a0ac7b8d1878d522cbdf56932ffb43d4fe23ff7de8645de:log:10', 'hash': '0x2596752e75dd2faa8a0ac7b8d1878d522cbdf56932ffb43d4fe23ff7de8645de', 'from': '0x69a3e8aca3e25ef6a81859968725709fe60438ee', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 749.31977059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xae76f051de', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:28.000Z'}}, {'blockNum': '0x94d70d', 'uniqueId': '0xec13f2be80b5f4fbdd464ff986ecd3173abe7e5a7eda88086d666f6e48fa2ad8:log:25', 'hash': '0xec13f2be80b5f4fbdd464ff986ecd3173abe7e5a7eda88086d666f6e48fa2ad8', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 660.666782598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x99d2cf1386', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:57.000Z'}}, {'blockNum': '0x94d70d', 'uniqueId': '0xa6f911f17fc015f22c29d69aad4075ecfc4c302265079dcc96f84f30e86866d5:log:31', 'hash': '0xa6f911f17fc015f22c29d69aad4075ecfc4c302265079dcc96f84f30e86866d5', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 508.89964355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x767cc8509e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:03:57.000Z'}}, {'blockNum': '0x94d70f', 'uniqueId': '0xb3cdac799beb9c874d8d480a19f9527f0af017e96916bf149403a505f5e7f87a:log:7', 'hash': '0xb3cdac799beb9c874d8d480a19f9527f0af017e96916bf149403a505f5e7f87a', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 3688.421086367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x035ac707549f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:25.000Z'}}, {'blockNum': '0x94d70f', 'uniqueId': '0xd5be6a2f2619961d0c6bc74df1df1aa510d10fe28b946ccd1a5062363e8f426b:log:80', 'hash': '0xd5be6a2f2619961d0c6bc74df1df1aa510d10fe28b946ccd1a5062363e8f426b', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 65.658302365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0f498a2f9d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:25.000Z'}}, {'blockNum': '0x94d70f', 'uniqueId': '0x6bde0242fcf5284a778a73ca20ce864c2077f38c9ec2d66c889999f262e1890a:log:154', 'hash': '0x6bde0242fcf5284a778a73ca20ce864c2077f38c9ec2d66c889999f262e1890a', 'from': '0x3dc1ad2e534ccb562399c88759d36ef7b91b415a', 'to': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'value': 92.29969866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x157d7da1e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:25.000Z'}}, {'blockNum': '0x94d70f', 'uniqueId': '0x2854bb9850477d471437ac0086ac754deb0317f105b90c400a86df3d7585271b:log:171', 'hash': '0x2854bb9850477d471437ac0086ac754deb0317f105b90c400a86df3d7585271b', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 976.115728247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe34507ff77', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:25.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xaba2a7e3190e07886dcd4a61f6e7fc15ee05ac2ad787ee9a5401b1689f39b1a3:log:44', 'hash': '0xaba2a7e3190e07886dcd4a61f6e7fc15ee05ac2ad787ee9a5401b1689f39b1a3', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 964.897261164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe0a85bc66c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xaba2a7e3190e07886dcd4a61f6e7fc15ee05ac2ad787ee9a5401b1689f39b1a3:log:49', 'hash': '0xaba2a7e3190e07886dcd4a61f6e7fc15ee05ac2ad787ee9a5401b1689f39b1a3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 964.897261164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe0a85bc66c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d:log:50', 'hash': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 481.962184889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70372f50b9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d:log:52', 'hash': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 481.962184889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70372f50b9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d710', 'uniqueId': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d:log:54', 'hash': '0xcfaa1d930c1e551d4a7cf70d9738a10a192788ca7eb4814936a48d9b96a07a1d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 481.962184889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70372f50b9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:34.000Z'}}, {'blockNum': '0x94d711', 'uniqueId': '0xd3376f97b7ee349e1baad606b97d7a0f7ee5fb6209005f89349675d9c449881b:log:2', 'hash': '0xd3376f97b7ee349e1baad606b97d7a0f7ee5fb6209005f89349675d9c449881b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 8295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x078b54874600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:38.000Z'}}, {'blockNum': '0x94d711', 'uniqueId': '0x05ae5058512552ac044389e0cabba475d313c97fff6bcd4cbb5c83a0cf5df508:log:27', 'hash': '0x05ae5058512552ac044389e0cabba475d313c97fff6bcd4cbb5c83a0cf5df508', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 952.021570019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xdda8e851e3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:38.000Z'}}, {'blockNum': '0x94d713', 'uniqueId': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41:log:10', 'hash': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:54.000Z'}}, {'blockNum': '0x94d713', 'uniqueId': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41:log:12', 'hash': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:54.000Z'}}, {'blockNum': '0x94d713', 'uniqueId': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41:log:17', 'hash': '0x108b5afde7b4db6188e87d6e3bd8e5643a36a9699990788e6bd7641c80af7d41', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:54.000Z'}}, {'blockNum': '0x94d713', 'uniqueId': '0x7ba1d5b5b83ce610bafe970c6ed2dc688ec9ac1a22c2df76890086aeb34adbae:log:58', 'hash': '0x7ba1d5b5b83ce610bafe970c6ed2dc688ec9ac1a22c2df76890086aeb34adbae', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 964.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe0a7ecfa80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:04:54.000Z'}}, {'blockNum': '0x94d714', 'uniqueId': '0x729a5d38b603bc3e588ee07c407291cff5fc575b1c33649655b6713c19893068:log:9', 'hash': '0x729a5d38b603bc3e588ee07c407291cff5fc575b1c33649655b6713c19893068', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 2380.893035477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x022a58489bd5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:18.000Z'}}, {'blockNum': '0x94d714', 'uniqueId': '0x8ea8d353e57cb8441b210e83d040cfb0a557222e51f62e6c09c6efc53847ae7d:log:22', 'hash': '0x8ea8d353e57cb8441b210e83d040cfb0a557222e51f62e6c09c6efc53847ae7d', 'from': '0xce0c61abf9866fef5767e102cf227f294b3459e5', 'to': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'value': 736.694152049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab8664ab71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:18.000Z'}}, {'blockNum': '0x94d714', 'uniqueId': '0xd1494d2393053fc59a06b8d7656fa5878e9865cda9e2d40e23072dd6af5d63c2:log:184', 'hash': '0xd1494d2393053fc59a06b8d7656fa5878e9865cda9e2d40e23072dd6af5d63c2', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 476.656771015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6efaf51fc7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:18.000Z'}}, {'blockNum': '0x94d714', 'uniqueId': '0xd1494d2393053fc59a06b8d7656fa5878e9865cda9e2d40e23072dd6af5d63c2:log:189', 'hash': '0xd1494d2393053fc59a06b8d7656fa5878e9865cda9e2d40e23072dd6af5d63c2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 476.656771015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6efaf51fc7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:18.000Z'}}, {'blockNum': '0x94d715', 'uniqueId': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4:log:24', 'hash': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4', 'from': '0x82edff5e4c6e8e2aee22e6c4edfc46c1b29ce0da', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 1607.110724929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01762f438d41', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:20.000Z'}}, {'blockNum': '0x94d715', 'uniqueId': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4:log:26', 'hash': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1605.503614205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0175cf78fcfd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:20.000Z'}}, {'blockNum': '0x94d715', 'uniqueId': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4:log:27', 'hash': '0x88a5ba123ae344e530e90e2d1234a5b37c4c3829f73bafbd4c6870da95d24bd4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1605.503614205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0175cf78fcfd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:20.000Z'}}, {'blockNum': '0x94d715', 'uniqueId': '0xfbcc5578e14dc47bc4cc6a765dfe1cb8c53909b32d4469d725ab399bb3687696:log:209', 'hash': '0xfbcc5578e14dc47bc4cc6a765dfe1cb8c53909b32d4469d725ab399bb3687696', 'from': '0xeca0f4bd861713af4f248ced18c15af76440b00a', 'to': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:20.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9:log:0', 'hash': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 615.358464187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8f463900bb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9:log:2', 'hash': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 615.35843194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8f463882c4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9:log:4', 'hash': '0x5c16f75b77f0fac9f249db781559e82db08cb6eb3ca27c71a4d91af6f2d9bac9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 615.35843194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8f463882c4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x89707baf42ad152dc5707f2460dabcd41f00645326762ef20afe4dce17697669:log:129', 'hash': '0x89707baf42ad152dc5707f2460dabcd41f00645326762ef20afe4dce17697669', 'from': '0x337f64f81cb64f6f7a0937d6eeb8f7fc15a6ac98', 'to': '0x176dd5eaaa10df472f02609ce973e461e8982214', 'value': 1756.13318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198e1b1c260', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d716', 'uniqueId': '0x849f414d4ff78c69d202295ae1d5f4c865b862e046e5f4db82551c965476ae03:log:130', 'hash': '0x849f414d4ff78c69d202295ae1d5f4c865b862e046e5f4db82551c965476ae03', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 476.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6efa8dce80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:28.000Z'}}, {'blockNum': '0x94d717', 'uniqueId': '0xc4733d9814ebb34842ab0cda6bde21be2e5463419cc0ed231ebe592ec18a9cbc:log:66', 'hash': '0xc4733d9814ebb34842ab0cda6bde21be2e5463419cc0ed231ebe592ec18a9cbc', 'from': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:53.000Z'}}, {'blockNum': '0x94d717', 'uniqueId': '0xc4733d9814ebb34842ab0cda6bde21be2e5463419cc0ed231ebe592ec18a9cbc:log:67', 'hash': '0xc4733d9814ebb34842ab0cda6bde21be2e5463419cc0ed231ebe592ec18a9cbc', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:05:53.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41:log:0', 'hash': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41', 'from': '0x4c39ada0340c1eb3cee343f44819323dd29081a9', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 1633.70576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017c60739500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41:log:2', 'hash': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1123.17271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0105824f7670', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41:log:5', 'hash': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 510.53305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x76de241e90', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41:log:7', 'hash': '0xdbbad569b15c1485cdb9bcd12b151d83983df75f51b6be893479cef12fa40c41', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 510.53305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x76de241e90', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d719', 'uniqueId': '0xc90dc3e60fdcf48651346782831a67a1c21380b633b560312d2b9599457b3e6c:log:76', 'hash': '0xc90dc3e60fdcf48651346782831a67a1c21380b633b560312d2b9599457b3e6c', 'from': '0x460831ee2d52c51ffdb39621d121a07d7fad3e1c', 'to': '0x3fa83ef735b31d099fd005adb82574097448255b', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:03.000Z'}}, {'blockNum': '0x94d71a', 'uniqueId': '0x5b21bebb1807e30f8e0ab2db2ea63900a1c28ea9ee4dd38ad6e50a6833017090:log:26', 'hash': '0x5b21bebb1807e30f8e0ab2db2ea63900a1c28ea9ee4dd38ad6e50a6833017090', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 956.899176547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xdecba2b063', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:10.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0x27eb74885579b178385d632af62d6768d6163a90d32f3eed61796d7dba3a3044:log:28', 'hash': '0x27eb74885579b178385d632af62d6768d6163a90d32f3eed61796d7dba3a3044', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 3502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x032f5f774c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0x054a11740a5cc5ba32cdd672ee6d9df997a92c75d0ba55f2d50659f0121302c5:log:30', 'hash': '0x054a11740a5cc5ba32cdd672ee6d9df997a92c75d0ba55f2d50659f0121302c5', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 494.677545083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x732d14507b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372:log:32', 'hash': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 255.141066632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3b6797b788', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372:log:34', 'hash': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 255.141066632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3b6797b788', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372:log:36', 'hash': '0xb5bc57d6befb3c824aeb228141e577f80f626e0ecabaf3142b4daa73b59af372', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 255.141066632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3b6797b788', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0x15fe4fc08a5cf83472221d48aae15c82a5a5cda65209487aac9759df95dbfca5:log:166', 'hash': '0x15fe4fc08a5cf83472221d48aae15c82a5a5cda65209487aac9759df95dbfca5', 'from': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71c', 'uniqueId': '0x15fe4fc08a5cf83472221d48aae15c82a5a5cda65209487aac9759df95dbfca5:log:167', 'hash': '0x15fe4fc08a5cf83472221d48aae15c82a5a5cda65209487aac9759df95dbfca5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:06:38.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275:log:24', 'hash': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 974.976651015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe301230f07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275:log:26', 'hash': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 974.976651015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe301230f07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275:log:31', 'hash': '0x838b61a3b32f84306239a8299d2e0b2b3ab1f5f4e04d8614ee959c4b1e9a1275', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 974.976651015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe301230f07', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x78e41d7a284fd6d4b3eb4cecc22744c7eaac1031f08415fe4018ad63a38f5156:log:35', 'hash': '0x78e41d7a284fd6d4b3eb4cecc22744c7eaac1031f08415fe4018ad63a38f5156', 'from': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 92.29969866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x157d7da1e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d71f', 'uniqueId': '0x78e41d7a284fd6d4b3eb4cecc22744c7eaac1031f08415fe4018ad63a38f5156:log:37', 'hash': '0x78e41d7a284fd6d4b3eb4cecc22744c7eaac1031f08415fe4018ad63a38f5156', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 92.29969866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x157d7da1e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:07:48.000Z'}}, {'blockNum': '0x94d721', 'uniqueId': '0x61dd3155e57e64c1cb6a039fc79cd8d2c53f2a9a24c1c5182d308b4416b38485:log:3', 'hash': '0x61dd3155e57e64c1cb6a039fc79cd8d2c53f2a9a24c1c5182d308b4416b38485', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1033.149863844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf08c87d7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:03.000Z'}}, {'blockNum': '0x94d721', 'uniqueId': '0x61dd3155e57e64c1cb6a039fc79cd8d2c53f2a9a24c1c5182d308b4416b38485:log:5', 'hash': '0x61dd3155e57e64c1cb6a039fc79cd8d2c53f2a9a24c1c5182d308b4416b38485', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1033.149863844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf08c87d7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:03.000Z'}}, {'blockNum': '0x94d721', 'uniqueId': '0xd56567f1437ed1713f57e1aa01b5b8c27f14595ca898e72ecac383ecf21fa880:log:22', 'hash': '0xd56567f1437ed1713f57e1aa01b5b8c27f14595ca898e72ecac383ecf21fa880', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1069.26139915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf8f4f2246e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:03.000Z'}}, {'blockNum': '0x94d722', 'uniqueId': '0xceacdf6aaa45c9eece3aad72680e8de5c0e8d78c193ca0f6cbde705b111b9660:log:9', 'hash': '0xceacdf6aaa45c9eece3aad72680e8de5c0e8d78c193ca0f6cbde705b111b9660', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 405.381795824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5e62a34ff0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:08.000Z'}}, {'blockNum': '0x94d722', 'uniqueId': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0:log:13', 'hash': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 137.753315179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2012bcc76b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:08.000Z'}}, {'blockNum': '0x94d722', 'uniqueId': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0:log:15', 'hash': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 137.753315179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2012bcc76b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:08.000Z'}}, {'blockNum': '0x94d722', 'uniqueId': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0:log:19', 'hash': '0xe1c28a8b268c2a4492ef6d260faee3ee0034a6ca3b12c27e1648c2536decdaf0', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 137.753315179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2012bcc76b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:08.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xe456ca802af696124fc358e897d65eaa9b05e223208a2e167bc1928bc0fa6c7d:log:9', 'hash': '0xe456ca802af696124fc358e897d65eaa9b05e223208a2e167bc1928bc0fa6c7d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1499.334819917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d1751c04d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a:log:11', 'hash': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1267.114214684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012705e4851c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a:log:13', 'hash': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1267.114214684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012705e4851c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a:log:18', 'hash': '0xa3203cf16853e0bbb6741cda3089df6f13ee0c7383380bfbe54596070cc9337a', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1267.114214684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012705e4851c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xf659726d02c5160e53249935cfcc478a164d1aabfef6c1a7d4452a35adcfd26d:log:52', 'hash': '0xf659726d02c5160e53249935cfcc478a164d1aabfef6c1a7d4452a35adcfd26d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1982.887435908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01cdad4d1e84', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4:log:71', 'hash': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 827.265559048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc09cdeaa08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4:log:73', 'hash': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 827.265559048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc09cdeaa08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4:log:78', 'hash': '0xdf0ffca684d310a35eb87019c15a45e455b8bea2955ffc6c7ed3150067c346a4', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 827.265559048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc09cdeaa08', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745:log:93', 'hash': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 335.179338818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4e0a3ed442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745:log:98', 'hash': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 335.179338818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4e0a3ed442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d723', 'uniqueId': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745:log:99', 'hash': '0x37f9579e17b58eaea2c51987e27c3b76a1668ec731d34e63cb64b8b5206cd745', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 335.179338818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4e0a3ed442', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:16.000Z'}}, {'blockNum': '0x94d724', 'uniqueId': '0x243142d8a1dd5f362bca59fffe73a6b464ddbffb4c8f20c935fd68108d84ae23:log:21', 'hash': '0x243142d8a1dd5f362bca59fffe73a6b464ddbffb4c8f20c935fd68108d84ae23', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1033.149863844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf08c87d7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:42.000Z'}}, {'blockNum': '0x94d725', 'uniqueId': '0xc92f3fe581e6556583a215845663fbac3c91c243a93c967446138960250783f3:log:5', 'hash': '0xc92f3fe581e6556583a215845663fbac3c91c243a93c967446138960250783f3', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 132.427073512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1ed544c7e8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:08:44.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0xff6caddd398a9c6850a21c120e392ef5f2ec80ed8d5b8da43958abe6aac642bd:log:6', 'hash': '0xff6caddd398a9c6850a21c120e392ef5f2ec80ed8d5b8da43958abe6aac642bd', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab2169f600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0xde58ce4ec740088aa2abb2163902be4e460ac8f3d6c0bf75338e49f5c6aef032:log:7', 'hash': '0xde58ce4ec740088aa2abb2163902be4e460ac8f3d6c0bf75338e49f5c6aef032', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8813.31826213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x080402b44d72', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0x4d381bc5600f3d4437465529c52779babb40be74d30cd9342bc128ca123deb3f:log:10', 'hash': '0x4d381bc5600f3d4437465529c52779babb40be74d30cd9342bc128ca123deb3f', 'from': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3688.421086367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x035ac707549f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0x1cc27350042e2164f6abf0de05e852747deb03f33466a47bda57330a15745da8:log:11', 'hash': '0x1cc27350042e2164f6abf0de05e852747deb03f33466a47bda57330a15745da8', 'from': '0xa5d1ad34accbf152f44810b897b374a5c1f44dbe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c4db08ba00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0xdd6d782811f5504c8cc48caf4e650b901c10d4e9176057b9af8cac18336646cc:log:14', 'hash': '0xdd6d782811f5504c8cc48caf4e650b901c10d4e9176057b9af8cac18336646cc', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19019.583769525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x114c5788cbb5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0x6b4ce35cb4b892f81d2e1a7d41665f154aedcbe24576b48a732cf20fb8427600:log:18', 'hash': '0x6b4ce35cb4b892f81d2e1a7d41665f154aedcbe24576b48a732cf20fb8427600', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x078b54874600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d727', 'uniqueId': '0xf573824b3e13779840a75fd8ddd8370248d2b4359f73eb25aa082eb4e670d059:log:27', 'hash': '0xf573824b3e13779840a75fd8ddd8370248d2b4359f73eb25aa082eb4e670d059', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 935.259522186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd9c1cfc48a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:06.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0xba5285d6bd698f10500af118f80c2769f549aa6986ab5b019adbe1f511e48ed3:log:4', 'hash': '0xba5285d6bd698f10500af118f80c2769f549aa6986ab5b019adbe1f511e48ed3', 'from': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 749.31977059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xae76f051de', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0x388f022e181bca326cea00802ae56f60527c352b7ecca02dac17cf694b03e100:log:8', 'hash': '0x388f022e181bca326cea00802ae56f60527c352b7ecca02dac17cf694b03e100', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0290d0b3f200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0x6a58aafb3f08284048426e6708533d734cff1b5b54dec99adde11439ccfec715:log:9', 'hash': '0x6a58aafb3f08284048426e6708533d734cff1b5b54dec99adde11439ccfec715', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2416b84e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0x6768ba1481dbc1c28af7d23b1e6957cdd4b5f68a802447a4c46f86b73136c3f9:log:10', 'hash': '0x6768ba1481dbc1c28af7d23b1e6957cdd4b5f68a802447a4c46f86b73136c3f9', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8680.992706003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x07e5337c8dd3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d728', 'uniqueId': '0x6013dabd3b47b6fbb15eb800d9b3e17f1841257dfdef1f4d050af9e61c7b70cd:log:31', 'hash': '0x6013dabd3b47b6fbb15eb800d9b3e17f1841257dfdef1f4d050af9e61c7b70cd', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1499.334819917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d1751c04d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:14.000Z'}}, {'blockNum': '0x94d729', 'uniqueId': '0xb2f72b2965f990b391e95a3464f2adfe1450b62560aface18779f1f42eb82d54:log:32', 'hash': '0xb2f72b2965f990b391e95a3464f2adfe1450b62560aface18779f1f42eb82d54', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 340.41911055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f428f6696', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:22.000Z'}}, {'blockNum': '0x94d729', 'uniqueId': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2:log:117', 'hash': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 168.708994847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2747d6f71f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:22.000Z'}}, {'blockNum': '0x94d729', 'uniqueId': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2:log:120', 'hash': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 168.708994847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2747d6f71f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:22.000Z'}}, {'blockNum': '0x94d729', 'uniqueId': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2:log:122', 'hash': '0x65ca7e336e93cba39aa01f211bd0c73f2e57c5361c6b2307e464c453efcc7cf2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 168.708994847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2747d6f71f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:22.000Z'}}, {'blockNum': '0x94d72b', 'uniqueId': '0xe216432229904519484205e51435c70e2d3dacd6ff1b4af75cc4375e915444ce:log:33', 'hash': '0xe216432229904519484205e51435c70e2d3dacd6ff1b4af75cc4375e915444ce', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1002.277129239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe95c5f4c17', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:09:50.000Z'}}, {'blockNum': '0x94d72c', 'uniqueId': '0xc832ceee543cf487349afe37f53034d9fa0727abe94ab4fa6f0b5e5f236dabdd:log:70', 'hash': '0xc832ceee543cf487349afe37f53034d9fa0727abe94ab4fa6f0b5e5f236dabdd', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1573.490359562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x016e5b557d0a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:03.000Z'}}, {'blockNum': '0x94d72c', 'uniqueId': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40:log:92', 'hash': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40', 'from': '0x406156ecc9ddcc7986f8da71575a2a651956a5fb', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 1257.143412548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0124b3962744', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:03.000Z'}}, {'blockNum': '0x94d72c', 'uniqueId': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40:log:94', 'hash': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1257.143412548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0124b3962744', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:03.000Z'}}, {'blockNum': '0x94d72c', 'uniqueId': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40:log:95', 'hash': '0xc293ddaa4684360f6c8ebd79d1651e076223b27e826e6d0e4f82b7fc2d67eb40', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1257.143412548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0124b3962744', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:03.000Z'}}, {'blockNum': '0x94d72d', 'uniqueId': '0xf26def26ba6741f6f8d984dd64d824c7b913e7523aa319395dca1590e4a3ee73:log:39', 'hash': '0xf26def26ba6741f6f8d984dd64d824c7b913e7523aa319395dca1590e4a3ee73', 'from': '0xff280f02c21c7884b0a8dd4757c383cf02fd8c70', 'to': '0xc0caec0bccd1c8f4e6bcc8f27aa91e90ebe4ecbb', 'value': 219.56363098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x331f032184', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:19.000Z'}}, {'blockNum': '0x94d72d', 'uniqueId': '0x46af751ffa7bf9423d18b2f098bffe59077d58940358830c8da29351a3ebab90:log:142', 'hash': '0x46af751ffa7bf9423d18b2f098bffe59077d58940358830c8da29351a3ebab90', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1002.277129239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe95c5f4c17', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:19.000Z'}}, {'blockNum': '0x94d72d', 'uniqueId': '0x1ecc5f09b883b3bec45d4937b4d7a168e5150170055ce2cd00781c77c748570b:log:188', 'hash': '0x1ecc5f09b883b3bec45d4937b4d7a168e5150170055ce2cd00781c77c748570b', 'from': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:19.000Z'}}, {'blockNum': '0x94d72d', 'uniqueId': '0x1ecc5f09b883b3bec45d4937b4d7a168e5150170055ce2cd00781c77c748570b:log:189', 'hash': '0x1ecc5f09b883b3bec45d4937b4d7a168e5150170055ce2cd00781c77c748570b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:19.000Z'}}, {'blockNum': '0x94d72f', 'uniqueId': '0x770b01c0a82ee1c77bf05082bc7b46c2a64219de42bfb77960dc04a01f314e8d:log:38', 'hash': '0x770b01c0a82ee1c77bf05082bc7b46c2a64219de42bfb77960dc04a01f314e8d', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 207.828072356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x306384b7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:39.000Z'}}, {'blockNum': '0x94d72f', 'uniqueId': '0x770b01c0a82ee1c77bf05082bc7b46c2a64219de42bfb77960dc04a01f314e8d:log:40', 'hash': '0x770b01c0a82ee1c77bf05082bc7b46c2a64219de42bfb77960dc04a01f314e8d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 207.828072356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x306384b7a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:11:39.000Z'}}, {'blockNum': '0x94d731', 'uniqueId': '0x303ab75eb8ade26afbb5448fc367e239bd50ea9f8b21983339306cdce063c62e:log:175', 'hash': '0x303ab75eb8ade26afbb5448fc367e239bd50ea9f8b21983339306cdce063c62e', 'from': '0x6f37e792f80f3dcd0c62ff801f126ca1de9f4f06', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:12.000Z'}}, {'blockNum': '0x94d731', 'uniqueId': '0x303ab75eb8ade26afbb5448fc367e239bd50ea9f8b21983339306cdce063c62e:log:176', 'hash': '0x303ab75eb8ade26afbb5448fc367e239bd50ea9f8b21983339306cdce063c62e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:12.000Z'}}, {'blockNum': '0x94d733', 'uniqueId': '0xcdd53e7e43c9de8143a7a2069a8e4472458006188b4b74dbaa0656505b9ce55f:log:132', 'hash': '0xcdd53e7e43c9de8143a7a2069a8e4472458006188b4b74dbaa0656505b9ce55f', 'from': '0xde3e3729351e96e0de1618bc2a562c5bdd7a231c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 8.8888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0211d05300', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:44.000Z'}}, {'blockNum': '0x94d735', 'uniqueId': '0x54d6e5d169e81dd672d97a4d42839d5ae13bcaae97f41d979094fc021d3a0357:log:3', 'hash': '0x54d6e5d169e81dd672d97a4d42839d5ae13bcaae97f41d979094fc021d3a0357', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 209.387642365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x30c079ddfd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:52.000Z'}}, {'blockNum': '0x94d736', 'uniqueId': '0x3248834874ffc1f2c4b410b5e75c794c087d50371a3aca13805be4cd163b0f9a:log:0', 'hash': '0x3248834874ffc1f2c4b410b5e75c794c087d50371a3aca13805be4cd163b0f9a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5640.253432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0521394d60c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:55.000Z'}}, {'blockNum': '0x94d736', 'uniqueId': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509:log:7', 'hash': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 867.595574499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xca00b9dce3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:55.000Z'}}, {'blockNum': '0x94d736', 'uniqueId': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509:log:9', 'hash': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 867.595574499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xca00b9dce3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:55.000Z'}}, {'blockNum': '0x94d736', 'uniqueId': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509:log:15', 'hash': '0x4580bfbf9aef6ae1365e1e5f8d7782245033974f3c7235712c42e415058c8509', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 867.595574499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xca00b9dce3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:12:55.000Z'}}, {'blockNum': '0x94d738', 'uniqueId': '0x3d315917f94fca71aceb5d906bc8cdb86821925a2bf369b96eb234591d472ae4:log:61', 'hash': '0x3d315917f94fca71aceb5d906bc8cdb86821925a2bf369b96eb234591d472ae4', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 306.334247514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4752f1aa5a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:03.000Z'}}, {'blockNum': '0x94d739', 'uniqueId': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664:log:121', 'hash': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 172.060948263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x280fa1b727', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:31.000Z'}}, {'blockNum': '0x94d739', 'uniqueId': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664:log:124', 'hash': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 172.060948263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x280fa1b727', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:31.000Z'}}, {'blockNum': '0x94d739', 'uniqueId': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664:log:126', 'hash': '0x367cb30f9cd6e50672d6a946ad119dc0be3f0f4714c24b42ee1084050ac97664', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 172.060948263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x280fa1b727', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:31.000Z'}}, {'blockNum': '0x94d73c', 'uniqueId': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84:log:20', 'hash': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 138.815291919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x205209420f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:39.000Z'}}, {'blockNum': '0x94d73c', 'uniqueId': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84:log:22', 'hash': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 138.815291919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x205209420f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:39.000Z'}}, {'blockNum': '0x94d73c', 'uniqueId': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84:log:26', 'hash': '0x641bb413b96d6970ffa21b522483ece9c1df6d953b34069a38dd8f10866d8a84', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 138.815291919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x205209420f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:13:39.000Z'}}, {'blockNum': '0x94d741', 'uniqueId': '0xb00cb854705e6306939e6b383d00cd66be4f7409abd9e4db2ce0043ce16b6ba3:log:4', 'hash': '0xb00cb854705e6306939e6b383d00cd66be4f7409abd9e4db2ce0043ce16b6ba3', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 627.393428678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x92138ffcc6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:14:50.000Z'}}, {'blockNum': '0x94d741', 'uniqueId': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc:log:13', 'hash': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 355.799846367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x52d752cddf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:14:50.000Z'}}, {'blockNum': '0x94d741', 'uniqueId': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc:log:15', 'hash': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 355.799846367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x52d752cddf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:14:50.000Z'}}, {'blockNum': '0x94d741', 'uniqueId': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc:log:20', 'hash': '0x794ece11c5a29e245fe0587b7cc415b1408e054af2062343a13e76c17fcd11bc', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 355.799846367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x52d752cddf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:14:50.000Z'}}, {'blockNum': '0x94d742', 'uniqueId': '0xb2bfa7922e5bd098413cd81b42c89fec474cac49da7e81a11b4210627add2708:log:82', 'hash': '0xb2bfa7922e5bd098413cd81b42c89fec474cac49da7e81a11b4210627add2708', 'from': '0xc9a9ca58da3f657a5833a52815aed9b4ff631f96', 'to': '0x25673fa58a432d0385014533bdb9550f8307793b', 'value': 1241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0120f15d3a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:15:21.000Z'}}, {'blockNum': '0x94d744', 'uniqueId': '0xeced4a78b4adc174fc9375ab3808107ac4204411e966537d3e0cc744ad500900:log:105', 'hash': '0xeced4a78b4adc174fc9375ab3808107ac4204411e966537d3e0cc744ad500900', 'from': '0xb59cc943ff7c1ef0526c7ca153251d3e69c9c374', 'to': '0xa778e4466057d56744f2bd18a7ad129f50bd56eb', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:15:38.000Z'}}, {'blockNum': '0x94d745', 'uniqueId': '0x200fa3007db2a9a54c41208495bbaecdd5989ba4c294485367c82bb478abc774:log:38', 'hash': '0x200fa3007db2a9a54c41208495bbaecdd5989ba4c294485367c82bb478abc774', 'from': '0xb6933dcdea76ca3e750e66140001a229c75bf69b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 699.636816753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e59a9b71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:13.000Z'}}, {'blockNum': '0x94d745', 'uniqueId': '0x200fa3007db2a9a54c41208495bbaecdd5989ba4c294485367c82bb478abc774:log:39', 'hash': '0x200fa3007db2a9a54c41208495bbaecdd5989ba4c294485367c82bb478abc774', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 699.636816753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2e59a9b71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:13.000Z'}}, {'blockNum': '0x94d746', 'uniqueId': '0xb193a114f638c236bc4f3cf3e6e7c6ce84247108042870ec50f63f9f814b27ae:log:10', 'hash': '0xb193a114f638c236bc4f3cf3e6e7c6ce84247108042870ec50f63f9f814b27ae', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1257.300673567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0124bcf5c41f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:18.000Z'}}, {'blockNum': '0x94d746', 'uniqueId': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276:log:13', 'hash': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 261.941891625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3cfcf41229', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:18.000Z'}}, {'blockNum': '0x94d746', 'uniqueId': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276:log:15', 'hash': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 261.941891625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3cfcf41229', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:18.000Z'}}, {'blockNum': '0x94d746', 'uniqueId': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276:log:17', 'hash': '0xd3c89b7aef1d2f4bb229de99c9126eb5b3dbebbcfeab7cb046fdb9d439df5276', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 261.941891625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3cfcf41229', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:18.000Z'}}, {'blockNum': '0x94d748', 'uniqueId': '0x44a1fc69f9dd21e8ea8b5b30c91e4dbed11aef62c3f16f9b1288e9f3075b5b0e:log:27', 'hash': '0x44a1fc69f9dd21e8ea8b5b30c91e4dbed11aef62c3f16f9b1288e9f3075b5b0e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa5d1ad34accbf152f44810b897b374a5c1f44dbe', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c428385c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:32.000Z'}}, {'blockNum': '0x94d749', 'uniqueId': '0xd69832c21b606dc3c06e5d0562ce07c156899461f0a272c4f2e902258a7dddc8:log:54', 'hash': '0xd69832c21b606dc3c06e5d0562ce07c156899461f0a272c4f2e902258a7dddc8', 'from': '0x9c85522547c835fde63800143e940f2b4e1f2195', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2022.712167604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d6f30a4cb4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:48.000Z'}}, {'blockNum': '0x94d749', 'uniqueId': '0xd69832c21b606dc3c06e5d0562ce07c156899461f0a272c4f2e902258a7dddc8:log:55', 'hash': '0xd69832c21b606dc3c06e5d0562ce07c156899461f0a272c4f2e902258a7dddc8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2022.712167604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d6f30a4cb4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:16:48.000Z'}}, {'blockNum': '0x94d74a', 'uniqueId': '0xb40496ad6248191e236b59ade4f43e8fc786ce3dd80fe258d422b75e14e15866:log:9', 'hash': '0xb40496ad6248191e236b59ade4f43e8fc786ce3dd80fe258d422b75e14e15866', 'from': '0xdde8b84f3b544933c4ea58802d4af5564ad061d8', 'to': '0x0dc30f687eb2a06a83765c3dc696051ea9c7db79', 'value': 833.81663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc2235812f0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:17:26.000Z'}}, {'blockNum': '0x94d74d', 'uniqueId': '0x3bb6ce6a215300bb9fe21d2c9e088b711324002a267d551483de1c97e1ce6049:log:102', 'hash': '0x3bb6ce6a215300bb9fe21d2c9e088b711324002a267d551483de1c97e1ce6049', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 832.458749655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc1d26876d7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:18:12.000Z'}}, {'blockNum': '0x94d74d', 'uniqueId': '0x5870f000d5e873e76ebf5dd5b0cccfdba67c2d3d3aa4a1f39e63b95dd070fbea:log:130', 'hash': '0x5870f000d5e873e76ebf5dd5b0cccfdba67c2d3d3aa4a1f39e63b95dd070fbea', 'from': '0xa1acaddd259649d470b42c95738e5e89c8d8a233', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37e11d6000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:18:12.000Z'}}, {'blockNum': '0x94d751', 'uniqueId': '0xbaa450b089b310cab065c95f0bfa39457a93d66e1cd5cf4d84e7fdc282087071:log:4', 'hash': '0xbaa450b089b310cab065c95f0bfa39457a93d66e1cd5cf4d84e7fdc282087071', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 8111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x07607d461600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:18:54.000Z'}}, {'blockNum': '0x94d751', 'uniqueId': '0x4a2fc053c715d4c5a56bfb88f1d1624bb13aca5d6945896f615696e360547728:log:25', 'hash': '0x4a2fc053c715d4c5a56bfb88f1d1624bb13aca5d6945896f615696e360547728', 'from': '0x6576a8a62c376b4807f226950e73d6b99cb5eab7', 'to': '0x8696493b25f9ba554fe44bc7bc403ac2b6276769', 'value': 7821.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x071d2cf99480', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:18:54.000Z'}}, {'blockNum': '0x94d752', 'uniqueId': '0x482037acb9757d288789ef0bcac354ce0f3d5563921e6baa771c17837c887deb:log:1', 'hash': '0x482037acb9757d288789ef0bcac354ce0f3d5563921e6baa771c17837c887deb', 'from': '0x3fa83ef735b31d099fd005adb82574097448255b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x065dd0837000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:03.000Z'}}, {'blockNum': '0x94d752', 'uniqueId': '0x612f36a28a90d4b50f778cfc44dbc59cdff9a94eb2afe791a8427c9de9273cde:log:2', 'hash': '0x612f36a28a90d4b50f778cfc44dbc59cdff9a94eb2afe791a8427c9de9273cde', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5640.253432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0521394d60c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:03.000Z'}}, {'blockNum': '0x94d753', 'uniqueId': '0x15bf87634dc0764e0bb9feb75e54d8db39d1862c2138acb7619de2dc8ed43805:log:1', 'hash': '0x15bf87634dc0764e0bb9feb75e54d8db39d1862c2138acb7619de2dc8ed43805', 'from': '0x176dd5eaaa10df472f02609ce973e461e8982214', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1756.13318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0198e1b1c260', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:06.000Z'}}, {'blockNum': '0x94d753', 'uniqueId': '0x51901a33e8e5ba690335bac0be8f51cb9ba7519ad462d9a95d87621593548a9e:log:3', 'hash': '0x51901a33e8e5ba690335bac0be8f51cb9ba7519ad462d9a95d87621593548a9e', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 360.96724295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x540b5304c6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:06.000Z'}}, {'blockNum': '0x94d753', 'uniqueId': '0x2e98c706c71154b8611a02750511dc4a1ee80c85d5a50fc144c5215e4bd59701:log:4', 'hash': '0x2e98c706c71154b8611a02750511dc4a1ee80c85d5a50fc144c5215e4bd59701', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 508.89964355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x767cc8509e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:06.000Z'}}, {'blockNum': '0x94d753', 'uniqueId': '0xe0760a60f319f04e4dad16d81875ec0c9766284950c82d1dd5f6f2bde7bf58b9:log:5', 'hash': '0xe0760a60f319f04e4dad16d81875ec0c9766284950c82d1dd5f6f2bde7bf58b9', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x22b1179200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:06.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0x07d090f92166b6a6c610bc7b2d2a2f51b7fed74e6df9480593f5320fdcfcd669:log:2', 'hash': '0x07d090f92166b6a6c610bc7b2d2a2f51b7fed74e6df9480593f5320fdcfcd669', 'from': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x032f5f774c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0xf1a1a04871f40394fb26ae2113f4e5d06cd9580c5ded0fd3371337d95b0097be:log:4', 'hash': '0xf1a1a04871f40394fb26ae2113f4e5d06cd9580c5ded0fd3371337d95b0097be', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2501.611949156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x024673b10c64', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe:log:69', 'hash': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 278.42282364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x40d34b22d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe:log:71', 'hash': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 278.42282364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x40d34b22d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d754', 'uniqueId': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe:log:76', 'hash': '0x7af1991ab5bbfa2545f6e405b51bf6ad1bca55a41f558094d0b4138a60216ebe', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 278.422545215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x40d346e33f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:08.000Z'}}, {'blockNum': '0x94d755', 'uniqueId': '0xbcf6d9ef96e72846211323c1c3881ebd5380bf7c8485c83aadc74473334437e0:log:3', 'hash': '0xbcf6d9ef96e72846211323c1c3881ebd5380bf7c8485c83aadc74473334437e0', 'from': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 736.694152049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab8664ab71', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:20.000Z'}}, {'blockNum': '0x94d756', 'uniqueId': '0xfecb5926b1b3bc47d30e3f5c4caeb8529202f9555d59cfb11916c3bd4b1e15d1:log:69', 'hash': '0xfecb5926b1b3bc47d30e3f5c4caeb8529202f9555d59cfb11916c3bd4b1e15d1', 'from': '0xb59cc943ff7c1ef0526c7ca153251d3e69c9c374', 'to': '0xa778e4466057d56744f2bd18a7ad129f50bd56eb', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:34.000Z'}}, {'blockNum': '0x94d757', 'uniqueId': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7:log:89', 'hash': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:59.000Z'}}, {'blockNum': '0x94d757', 'uniqueId': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7:log:91', 'hash': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:59.000Z'}}, {'blockNum': '0x94d757', 'uniqueId': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7:log:97', 'hash': '0x9fcd64d6838b169d47ec4671f5ad65691a231b9a238965135516d42dee29dfa7', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:19:59.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0x050a797ab9a008b6733ffb7b76d46dc99b7b2bef211ac9cae0c38d81269bcab9:log:63', 'hash': '0x050a797ab9a008b6733ffb7b76d46dc99b7b2bef211ac9cae0c38d81269bcab9', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 285.755720988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x42885e451c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355:log:95', 'hash': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355', 'from': '0x406156ecc9ddcc7986f8da71575a2a651956a5fb', 'to': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'value': 808.163622353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xbc2a4e3dd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355:log:97', 'hash': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355', 'from': '0x52d35e8f0ffa18337b093aec3dfff40445d8f4f4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 808.163622353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xbc2a4e3dd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355:log:98', 'hash': '0x86a3dc7fb84aa8362b5e51845625c88b5b01d81f41765f2abb2f32e4148bd355', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 808.163622353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xbc2a4e3dd1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f:log:111', 'hash': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f:log:113', 'hash': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f:log:119', 'hash': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d75e', 'uniqueId': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f:log:121', 'hash': '0xee236935bb368425cac1a93a6982de3ecc1983fffb755d23d4c3350727b9c73f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 352.13023963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x51fc990c8e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:19.000Z'}}, {'blockNum': '0x94d760', 'uniqueId': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab:log:4', 'hash': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:45.000Z'}}, {'blockNum': '0x94d760', 'uniqueId': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab:log:6', 'hash': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:45.000Z'}}, {'blockNum': '0x94d760', 'uniqueId': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab:log:11', 'hash': '0x79cd42579498c8aced5cd403b9f7f6269e466c417ddc43b1913dff073f880eab', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:45.000Z'}}, {'blockNum': '0x94d763', 'uniqueId': '0xaf6f55e062f1d4bde5f4457795311d0a6f0d12f722df1e2f0e54a1d8a67b36fc:log:20', 'hash': '0xaf6f55e062f1d4bde5f4457795311d0a6f0d12f722df1e2f0e54a1d8a67b36fc', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 546.703028667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7f4a0a31bb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:21:57.000Z'}}, {'blockNum': '0x94d767', 'uniqueId': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd:log:127', 'hash': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 268.939067069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3e9e047ebd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:33.000Z'}}, {'blockNum': '0x94d767', 'uniqueId': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd:log:129', 'hash': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 268.939067069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3e9e047ebd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:33.000Z'}}, {'blockNum': '0x94d767', 'uniqueId': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd:log:135', 'hash': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 268.939067069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3e9e047ebd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:33.000Z'}}, {'blockNum': '0x94d767', 'uniqueId': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd:log:137', 'hash': '0x1b1e76e75f64626ea0c7216a2325ad32a423c518bcd4962763976a48922b95cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 268.939067069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3e9e047ebd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:33.000Z'}}, {'blockNum': '0x94d768', 'uniqueId': '0x3127ba416c44d922b863a6590a01be82ab8179aff96bed1d8feb0b5689e8db2a:log:151', 'hash': '0x3127ba416c44d922b863a6590a01be82ab8179aff96bed1d8feb0b5689e8db2a', 'from': '0xb66f441be2e20de9d8a7ed63d913f4039503cfb0', 'to': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1fd512913000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:22:41.000Z'}}, {'blockNum': '0x94d76a', 'uniqueId': '0x36bb4b5e9a33824d294121aea5b01c8aa51e119d2cfff07791a92e6ec778477c:log:78', 'hash': '0x36bb4b5e9a33824d294121aea5b01c8aa51e119d2cfff07791a92e6ec778477c', 'from': '0xc1816f198fa2cd9cd1fb49a1797f25c2755d2f37', 'to': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'value': 39020.892044675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x237d4268bd83', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:23:19.000Z'}}, {'blockNum': '0x94d772', 'uniqueId': '0x1a6e3c07f3bf7674a9f3efbde3f073f73e2e8320d39a0970bb8e142c3fb57d0f:log:3', 'hash': '0x1a6e3c07f3bf7674a9f3efbde3f073f73e2e8320d39a0970bb8e142c3fb57d0f', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:24:07.000Z'}}, {'blockNum': '0x94d772', 'uniqueId': '0x1a6e3c07f3bf7674a9f3efbde3f073f73e2e8320d39a0970bb8e142c3fb57d0f:log:4', 'hash': '0x1a6e3c07f3bf7674a9f3efbde3f073f73e2e8320d39a0970bb8e142c3fb57d0f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:24:07.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0x540915dfc1b3852fd63e0764f5be6ba8eec3944f3cdb1ac9880ed9f217f507c2:log:31', 'hash': '0x540915dfc1b3852fd63e0764f5be6ba8eec3944f3cdb1ac9880ed9f217f507c2', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0x540915dfc1b3852fd63e0764f5be6ba8eec3944f3cdb1ac9880ed9f217f507c2:log:32', 'hash': '0x540915dfc1b3852fd63e0764f5be6ba8eec3944f3cdb1ac9880ed9f217f507c2', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0xdefd0991d036019618e6e073b6d0568bbc734b64ab7b7d610731b9c85fb0426b:log:39', 'hash': '0xdefd0991d036019618e6e073b6d0568bbc734b64ab7b7d610731b9c85fb0426b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0xdefd0991d036019618e6e073b6d0568bbc734b64ab7b7d610731b9c85fb0426b:log:40', 'hash': '0xdefd0991d036019618e6e073b6d0568bbc734b64ab7b7d610731b9c85fb0426b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0xfcb42f2a731092f35de6d31009f3aeb2be01510918a01b74437777bfd1999951:log:47', 'hash': '0xfcb42f2a731092f35de6d31009f3aeb2be01510918a01b74437777bfd1999951', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d778', 'uniqueId': '0xfcb42f2a731092f35de6d31009f3aeb2be01510918a01b74437777bfd1999951:log:48', 'hash': '0xfcb42f2a731092f35de6d31009f3aeb2be01510918a01b74437777bfd1999951', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:00.000Z'}}, {'blockNum': '0x94d779', 'uniqueId': '0x9e77ae3793bb69846bee02b3a7078eec9e2ac527464139ad92738879ef883623:log:51', 'hash': '0x9e77ae3793bb69846bee02b3a7078eec9e2ac527464139ad92738879ef883623', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:01.000Z'}}, {'blockNum': '0x94d779', 'uniqueId': '0x9e77ae3793bb69846bee02b3a7078eec9e2ac527464139ad92738879ef883623:log:52', 'hash': '0x9e77ae3793bb69846bee02b3a7078eec9e2ac527464139ad92738879ef883623', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:01.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0x641ef6f35c818c8f3cafe7005ff0479f27d208bf3d9552a06726a45f9124cefe:log:0', 'hash': '0x641ef6f35c818c8f3cafe7005ff0479f27d208bf3d9552a06726a45f9124cefe', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5558.206647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x050e1eeecad8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0xe79c93a9b8b76fde951a1e50fcf87013be674a2ccdeb82d9d0ed0fe6037e3665:log:97', 'hash': '0xe79c93a9b8b76fde951a1e50fcf87013be674a2ccdeb82d9d0ed0fe6037e3665', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0xe79c93a9b8b76fde951a1e50fcf87013be674a2ccdeb82d9d0ed0fe6037e3665:log:98', 'hash': '0xe79c93a9b8b76fde951a1e50fcf87013be674a2ccdeb82d9d0ed0fe6037e3665', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0x78d727c175d394c3a0621ec95d139298b2bf24d5c595670fdd4a5e8d431c947d:log:105', 'hash': '0x78d727c175d394c3a0621ec95d139298b2bf24d5c595670fdd4a5e8d431c947d', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77a', 'uniqueId': '0x78d727c175d394c3a0621ec95d139298b2bf24d5c595670fdd4a5e8d431c947d:log:106', 'hash': '0x78d727c175d394c3a0621ec95d139298b2bf24d5c595670fdd4a5e8d431c947d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:25.000Z'}}, {'blockNum': '0x94d77b', 'uniqueId': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432:log:175', 'hash': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 340.875082261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f5dbcfa15', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:52.000Z'}}, {'blockNum': '0x94d77b', 'uniqueId': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432:log:177', 'hash': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 340.875082261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f5dbcfa15', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:52.000Z'}}, {'blockNum': '0x94d77b', 'uniqueId': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432:log:182', 'hash': '0xdf3cce329417750a4727480ac117efddf5affdcf947eeece8c8f7739cc577432', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 340.874741385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f5db7c689', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:25:52.000Z'}}, {'blockNum': '0x94d77e', 'uniqueId': '0x79939575ba6c98dbb545eacdbcc21dcda80bf36b2a8b1de64fb93085bd69d43f:log:22', 'hash': '0x79939575ba6c98dbb545eacdbcc21dcda80bf36b2a8b1de64fb93085bd69d43f', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:14.000Z'}}, {'blockNum': '0x94d77e', 'uniqueId': '0x79939575ba6c98dbb545eacdbcc21dcda80bf36b2a8b1de64fb93085bd69d43f:log:23', 'hash': '0x79939575ba6c98dbb545eacdbcc21dcda80bf36b2a8b1de64fb93085bd69d43f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:14.000Z'}}, {'blockNum': '0x94d77e', 'uniqueId': '0xfe3f68eefd7a21ff27b39019bb32e650804618d958a1cec2ebbca3c5f70cb080:log:150', 'hash': '0xfe3f68eefd7a21ff27b39019bb32e650804618d958a1cec2ebbca3c5f70cb080', 'from': '0xae688057b84e0aaa78893d5777c8064a76612b80', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:14.000Z'}}, {'blockNum': '0x94d77e', 'uniqueId': '0xfe3f68eefd7a21ff27b39019bb32e650804618d958a1cec2ebbca3c5f70cb080:log:151', 'hash': '0xfe3f68eefd7a21ff27b39019bb32e650804618d958a1cec2ebbca3c5f70cb080', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:14.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x6ec7bcd9e16e3e5025d8d84dae5f73ff56cb6a2c51fbdf0533259b74deeff24e:log:32', 'hash': '0x6ec7bcd9e16e3e5025d8d84dae5f73ff56cb6a2c51fbdf0533259b74deeff24e', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x6ec7bcd9e16e3e5025d8d84dae5f73ff56cb6a2c51fbdf0533259b74deeff24e:log:33', 'hash': '0x6ec7bcd9e16e3e5025d8d84dae5f73ff56cb6a2c51fbdf0533259b74deeff24e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f:log:89', 'hash': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 324.69402976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b9945b5c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f:log:91', 'hash': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 324.69402976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b9945b5c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d781', 'uniqueId': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f:log:96', 'hash': '0x329be30c0881d8d186a42fc1f92c54768bffc49f9a1d10bf7684b99551e7b16f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 324.693705065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b9940c169', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:26:45.000Z'}}, {'blockNum': '0x94d782', 'uniqueId': '0x8174a7703dc91fd599774d02686e15f07459ff400180d06e0134d0a0284153ab:log:31', 'hash': '0x8174a7703dc91fd599774d02686e15f07459ff400180d06e0134d0a0284153ab', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:09.000Z'}}, {'blockNum': '0x94d782', 'uniqueId': '0x8174a7703dc91fd599774d02686e15f07459ff400180d06e0134d0a0284153ab:log:32', 'hash': '0x8174a7703dc91fd599774d02686e15f07459ff400180d06e0134d0a0284153ab', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:09.000Z'}}, {'blockNum': '0x94d783', 'uniqueId': '0xac9d6a106a4cc70d9b099b8d86ee064e8797639fbb57ffaa9e2919452543c8be:log:68', 'hash': '0xac9d6a106a4cc70d9b099b8d86ee064e8797639fbb57ffaa9e2919452543c8be', 'from': '0x649bfd8c7a0f11dfbb342cf1ceaf2167a936387c', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 144.003321361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2187444e11', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:16.000Z'}}, {'blockNum': '0x94d783', 'uniqueId': '0xac9d6a106a4cc70d9b099b8d86ee064e8797639fbb57ffaa9e2919452543c8be:log:69', 'hash': '0xac9d6a106a4cc70d9b099b8d86ee064e8797639fbb57ffaa9e2919452543c8be', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 144.003321361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2187444e11', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:16.000Z'}}, {'blockNum': '0x94d787', 'uniqueId': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1:log:46', 'hash': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 181.87478463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a5894f976', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:35.000Z'}}, {'blockNum': '0x94d787', 'uniqueId': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1:log:48', 'hash': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 181.87478463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a5894f976', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:35.000Z'}}, {'blockNum': '0x94d787', 'uniqueId': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1:log:54', 'hash': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 181.87478463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a5894f976', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:35.000Z'}}, {'blockNum': '0x94d787', 'uniqueId': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1:log:56', 'hash': '0x9df9240d67fff51cb83312629848433f26e592b2177da337bb1f9da4150e9cd1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 181.87478463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a5894f976', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:35.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0x366738d82410bb74bc0b69f27f0529cb0894ce7eae2d677011750217d95abb30:log:11', 'hash': '0x366738d82410bb74bc0b69f27f0529cb0894ce7eae2d677011750217d95abb30', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0x366738d82410bb74bc0b69f27f0529cb0894ce7eae2d677011750217d95abb30:log:12', 'hash': '0x366738d82410bb74bc0b69f27f0529cb0894ce7eae2d677011750217d95abb30', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49:log:126', 'hash': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 90.828552171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1525cdb7eb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49:log:128', 'hash': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 90.828552171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1525cdb7eb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49:log:133', 'hash': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 90.828461341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1525cc551d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d788', 'uniqueId': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49:log:135', 'hash': '0xcddc7126e7896d4ece8c815377495adf3ab7ade412ad8af4d7d98b2ce3bbdf49', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 90.828461341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1525cc551d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:27:43.000Z'}}, {'blockNum': '0x94d789', 'uniqueId': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3:log:59', 'hash': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 343.109677165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4fe2ee306d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:19.000Z'}}, {'blockNum': '0x94d789', 'uniqueId': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3:log:61', 'hash': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 343.109677165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4fe2ee306d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:19.000Z'}}, {'blockNum': '0x94d789', 'uniqueId': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3:log:66', 'hash': '0x47d37a00dc26220cbc1b04e2a735883d59d05569f687a5ea395e32c78ce8eaa3', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 343.109677165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4fe2ee306d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:19.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x751a62806f2096bc718d67d1a2ac6d191b0f95ccc3a8733bdedca4cf540f5297:log:0', 'hash': '0x751a62806f2096bc718d67d1a2ac6d191b0f95ccc3a8733bdedca4cf540f5297', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5462.621195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04f7dd988af8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x9fa8b061799e635643015f736b4788b0993582de9690e3ee276f4f6906482dc3:log:32', 'hash': '0x9fa8b061799e635643015f736b4788b0993582de9690e3ee276f4f6906482dc3', 'from': '0x2aac5b538c72868db7ad595851e8df93430a3eb6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0xe24ccb7d3772bbbd5aee3f6089c9c5c730e07d6071f39683e17cfdc268d95c2b:log:33', 'hash': '0xe24ccb7d3772bbbd5aee3f6089c9c5c730e07d6071f39683e17cfdc268d95c2b', 'from': '0x25673fa58a432d0385014533bdb9550f8307793b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0120f15d3a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x0fa0c6faa4e2b1e4c8dc4f230331366f13e8b711c347fdb820aa4db3c948efe9:log:35', 'hash': '0x0fa0c6faa4e2b1e4c8dc4f230331366f13e8b711c347fdb820aa4db3c948efe9', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x07607d461600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x166020e1dc87113c333001ba74198e6574f418973f1559dcf14f8ddffe023669:log:37', 'hash': '0x166020e1dc87113c333001ba74198e6574f418973f1559dcf14f8ddffe023669', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5558.206647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x050e1eeecad8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0xf33835d42ae519868862091a238d11af39489413291b05dad04d3448e0ff9bd2:log:38', 'hash': '0xf33835d42ae519868862091a238d11af39489413291b05dad04d3448e0ff9bd2', 'from': '0x8696493b25f9ba554fe44bc7bc403ac2b6276769', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7821.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x071d2cf99480', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x894c2c2fbab69f2b087b4ae5ebd9ee24ba0a171bcf9665db6f67888f6107561b:log:48', 'hash': '0x894c2c2fbab69f2b087b4ae5ebd9ee24ba0a171bcf9665db6f67888f6107561b', 'from': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1fd512913000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x7030e14fb13320fd7f8d0635e02f4f160569040e90c5b8989e96fb21382261d6:log:54', 'hash': '0x7030e14fb13320fd7f8d0635e02f4f160569040e90c5b8989e96fb21382261d6', 'from': '0x0dc30f687eb2a06a83765c3dc696051ea9c7db79', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 833.81663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc2235812f0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0x29c5b5e8dbedf51e22ed53be95ef0eb49cc7ab50284fb8a485eea99d7a3f3486:log:55', 'hash': '0x29c5b5e8dbedf51e22ed53be95ef0eb49cc7ab50284fb8a485eea99d7a3f3486', 'from': '0xa778e4466057d56744f2bd18a7ad129f50bd56eb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x12309ce54000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78a', 'uniqueId': '0xed1785354b97144b704f7b8fd551fcd425ce7a72f5f4f19a45556790d98c5ede:log:61', 'hash': '0xed1785354b97144b704f7b8fd551fcd425ce7a72f5f4f19a45556790d98c5ede', 'from': '0xa5d1ad34accbf152f44810b897b374a5c1f44dbe', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01c428385c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:28:28.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0xdd572b101db02d126c4444d1debde26ace83754f723673c94e25ea4cb74a70eb:log:24', 'hash': '0xdd572b101db02d126c4444d1debde26ace83754f723673c94e25ea4cb74a70eb', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0xdd572b101db02d126c4444d1debde26ace83754f723673c94e25ea4cb74a70eb:log:25', 'hash': '0xdd572b101db02d126c4444d1debde26ace83754f723673c94e25ea4cb74a70eb', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x678e285082e023514570811917838749663d502ce8f477c3092e58724903d72d:log:36', 'hash': '0x678e285082e023514570811917838749663d502ce8f477c3092e58724903d72d', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x678e285082e023514570811917838749663d502ce8f477c3092e58724903d72d:log:37', 'hash': '0x678e285082e023514570811917838749663d502ce8f477c3092e58724903d72d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0:log:150', 'hash': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2164.519228261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f7f7665365', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0:log:152', 'hash': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 2164.519228261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f7f7665365', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78b', 'uniqueId': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0:log:158', 'hash': '0x95d5b607abc9a2bed830db1f6a5c3f813fcbb365c58f1cef020ac5bcb9eb5eb0', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 2164.519228261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01f7f7665365', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:29:47.000Z'}}, {'blockNum': '0x94d78c', 'uniqueId': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6:log:95', 'hash': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 635.63414496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x93febf56c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:27.000Z'}}, {'blockNum': '0x94d78c', 'uniqueId': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6:log:97', 'hash': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 635.63414496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x93febf56c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:27.000Z'}}, {'blockNum': '0x94d78c', 'uniqueId': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6:log:102', 'hash': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 635.63414496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x93febf56c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:27.000Z'}}, {'blockNum': '0x94d78c', 'uniqueId': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6:log:104', 'hash': '0x55383204ff6bb7e824d9938c412a40417d962f163aed857ddfbd0666de4cd6c6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 635.63414496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x93febf56c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:27.000Z'}}, {'blockNum': '0x94d78d', 'uniqueId': '0x74c8cd19f8a7586536e587d61039d4080e341a7db77a43c30d25b4c52d1e659e:log:135', 'hash': '0x74c8cd19f8a7586536e587d61039d4080e341a7db77a43c30d25b4c52d1e659e', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:34.000Z'}}, {'blockNum': '0x94d78d', 'uniqueId': '0x74c8cd19f8a7586536e587d61039d4080e341a7db77a43c30d25b4c52d1e659e:log:136', 'hash': '0x74c8cd19f8a7586536e587d61039d4080e341a7db77a43c30d25b4c52d1e659e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:34.000Z'}}, {'blockNum': '0x94d78e', 'uniqueId': '0xd037ab4eb33abda141a43585eb6869658e505ef3df23bdb7371e957de49baf96:log:57', 'hash': '0xd037ab4eb33abda141a43585eb6869658e505ef3df23bdb7371e957de49baf96', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:47.000Z'}}, {'blockNum': '0x94d78e', 'uniqueId': '0xd037ab4eb33abda141a43585eb6869658e505ef3df23bdb7371e957de49baf96:log:58', 'hash': '0xd037ab4eb33abda141a43585eb6869658e505ef3df23bdb7371e957de49baf96', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a352944000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:30:47.000Z'}}, {'blockNum': '0x94d797', 'uniqueId': '0x3e2fef7f17a2fcfbdbd19ba9369e812ec369c2e82b245c2bce70be6ab2c8220b:log:47', 'hash': '0x3e2fef7f17a2fcfbdbd19ba9369e812ec369c2e82b245c2bce70be6ab2c8220b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:07.000Z'}}, {'blockNum': '0x94d797', 'uniqueId': '0x3e2fef7f17a2fcfbdbd19ba9369e812ec369c2e82b245c2bce70be6ab2c8220b:log:48', 'hash': '0x3e2fef7f17a2fcfbdbd19ba9369e812ec369c2e82b245c2bce70be6ab2c8220b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:07.000Z'}}, {'blockNum': '0x94d79a', 'uniqueId': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8:log:146', 'hash': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 862.231529101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc8c101068d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:33.000Z'}}, {'blockNum': '0x94d79a', 'uniqueId': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8:log:148', 'hash': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 862.231529101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc8c101068d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:33.000Z'}}, {'blockNum': '0x94d79a', 'uniqueId': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8:log:154', 'hash': '0x5393de4220aea3455d0f1077b121db9dac42282b71e5741173b37d66d82f8af8', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 862.231529101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc8c101068d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:33.000Z'}}, {'blockNum': '0x94d79b', 'uniqueId': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924:log:26', 'hash': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:34.000Z'}}, {'blockNum': '0x94d79b', 'uniqueId': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924:log:28', 'hash': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:34.000Z'}}, {'blockNum': '0x94d79b', 'uniqueId': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924:log:33', 'hash': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:34.000Z'}}, {'blockNum': '0x94d79b', 'uniqueId': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924:log:35', 'hash': '0xdd4ba7f10ec8dc3ae369655e05225da84706ca19c582421d56cbab5537a90924', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:33:34.000Z'}}, {'blockNum': '0x94d79d', 'uniqueId': '0x337375c2478001e16e742460a20f70d1e65661ba69c6f13f1e3111c3197239c5:log:30', 'hash': '0x337375c2478001e16e742460a20f70d1e65661ba69c6f13f1e3111c3197239c5', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0174876e8000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:02.000Z'}}, {'blockNum': '0x94d79d', 'uniqueId': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564:log:59', 'hash': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 191.607006467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c9caae503', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:02.000Z'}}, {'blockNum': '0x94d79d', 'uniqueId': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564:log:61', 'hash': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 191.607006467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c9caae503', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:02.000Z'}}, {'blockNum': '0x94d79d', 'uniqueId': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564:log:67', 'hash': '0x3b556568342278f9b610917aa1321aa2243b7f8da9972029c3d9e7786b6c7564', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 191.607006467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c9caae503', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:02.000Z'}}, {'blockNum': '0x94d7a6', 'uniqueId': '0x78c19350f8d6d8ebd549e50b42e9ae9d7e7d44237f99ced29af2dc8fb6de4c37:log:0', 'hash': '0x78c19350f8d6d8ebd549e50b42e9ae9d7e7d44237f99ced29af2dc8fb6de4c37', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 8787.535215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x07fe01ea3998', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:34:58.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f:log:128', 'hash': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 263.898184309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d718eba75', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f:log:130', 'hash': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 263.898184309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d718eba75', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f:log:135', 'hash': '0x41f0b2388cdb47203c6bcc60661f7d3a25ebdcd6bcc88602234e353ff2a8329f', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 263.898184309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d718eba75', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0xf516ecc77136de5352a2e5b43d5b84a4f88d52ca1b713075d5c39e93a9112aee:log:144', 'hash': '0xf516ecc77136de5352a2e5b43d5b84a4f88d52ca1b713075d5c39e93a9112aee', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 456.122267415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6a33017717', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x38ab3106f0f23dd96a14b496ed388da1a139b7e2263cee19e7b3a5cf3bcea0b6:log:160', 'hash': '0x38ab3106f0f23dd96a14b496ed388da1a139b7e2263cee19e7b3a5cf3bcea0b6', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ab', 'uniqueId': '0x38ab3106f0f23dd96a14b496ed388da1a139b7e2263cee19e7b3a5cf3bcea0b6:log:161', 'hash': '0x38ab3106f0f23dd96a14b496ed388da1a139b7e2263cee19e7b3a5cf3bcea0b6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:16.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x9f9bc3f54aa50e93f393862c6ab959315ddc37f9fc42d6c8f58e6b8f85a0e8cd:log:3', 'hash': '0x9f9bc3f54aa50e93f393862c6ab959315ddc37f9fc42d6c8f58e6b8f85a0e8cd', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1371.175253089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x013f4069f461', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009:log:7', 'hash': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 751.370500801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xaef12bfac1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009:log:9', 'hash': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 751.370500801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xaef12bfac1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009:log:15', 'hash': '0x8cb6dd2d17a8f512b44327d25939a20dd0646a66eb6c3827200989c628c2b009', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 751.370500801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xaef12bfac1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0xe4e14b702d539c7c91fb06e6ea433604597e35423174613a928e5a5c012a2451:log:17', 'hash': '0xe4e14b702d539c7c91fb06e6ea433604597e35423174613a928e5a5c012a2451', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2254.111502405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x020cd383f045', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0xe4e14b702d539c7c91fb06e6ea433604597e35423174613a928e5a5c012a2451:log:19', 'hash': '0xe4e14b702d539c7c91fb06e6ea433604597e35423174613a928e5a5c012a2451', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 2254.111502405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x020cd383f045', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x5d78ee8f3521b6e4f302808edea57a45547f998ba4665dd5e3e3a695a2b8143b:log:149', 'hash': '0x5d78ee8f3521b6e4f302808edea57a45547f998ba4665dd5e3e3a695a2b8143b', 'from': '0x84e1e40ef85c9bdbdd4c40abaa9d8c26db13a257', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x5d78ee8f3521b6e4f302808edea57a45547f998ba4665dd5e3e3a695a2b8143b:log:150', 'hash': '0x5d78ee8f3521b6e4f302808edea57a45547f998ba4665dd5e3e3a695a2b8143b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x49523cbdcc8038404fcaaefc4ea8f530509abe5e5ae5aaa67ed250edb8250145:log:175', 'hash': '0x49523cbdcc8038404fcaaefc4ea8f530509abe5e5ae5aaa67ed250edb8250145', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 375.175058568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x575a2d1488', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ad', 'uniqueId': '0x49523cbdcc8038404fcaaefc4ea8f530509abe5e5ae5aaa67ed250edb8250145:log:180', 'hash': '0x49523cbdcc8038404fcaaefc4ea8f530509abe5e5ae5aaa67ed250edb8250145', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 375.175058568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x575a2d1488', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:36:36.000Z'}}, {'blockNum': '0x94d7ae', 'uniqueId': '0x9b6ebf45d3168c146370336b35d03d9934a6a03c13430119514b4daae38833e6:log:0', 'hash': '0x9b6ebf45d3168c146370336b35d03d9934a6a03c13430119514b4daae38833e6', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1186.182693194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01142dff814a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:10.000Z'}}, {'blockNum': '0x94d7ae', 'uniqueId': '0x15615e69b61a8e74c4455e0aa1096e0b42dfb033df31cf9e846c817b414cf12b:log:6', 'hash': '0x15615e69b61a8e74c4455e0aa1096e0b42dfb033df31cf9e846c817b414cf12b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 561.555528036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x82bf515964', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:10.000Z'}}, {'blockNum': '0x94d7ae', 'uniqueId': '0x15615e69b61a8e74c4455e0aa1096e0b42dfb033df31cf9e846c817b414cf12b:log:8', 'hash': '0x15615e69b61a8e74c4455e0aa1096e0b42dfb033df31cf9e846c817b414cf12b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 561.555528036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x82bf515964', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:10.000Z'}}, {'blockNum': '0x94d7ae', 'uniqueId': '0xc9936a10f4ad5988e592f4d79a697c401b8dd041efe12c87847525a8444d2959:log:63', 'hash': '0xc9936a10f4ad5988e592f4d79a697c401b8dd041efe12c87847525a8444d2959', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 2254.111502405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x020cd383f045', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:10.000Z'}}, {'blockNum': '0x94d7af', 'uniqueId': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd:log:64', 'hash': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 185.131410275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1ab12363', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:19.000Z'}}, {'blockNum': '0x94d7af', 'uniqueId': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd:log:69', 'hash': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 185.131410275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1ab12363', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:19.000Z'}}, {'blockNum': '0x94d7af', 'uniqueId': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd:log:71', 'hash': '0x5b867084fccb4dd1ee09bb11740a0ba5ae4dcdc630a90fecf88075a581e1f1cd', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 185.131410275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1ab12363', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:19.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xdece74170329690e42ae0cf45a9499a1143d82071467d96a7cf7cbc54c72578f:log:2', 'hash': '0xdece74170329690e42ae0cf45a9499a1143d82071467d96a7cf7cbc54c72578f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xdece74170329690e42ae0cf45a9499a1143d82071467d96a7cf7cbc54c72578f:log:4', 'hash': '0xdece74170329690e42ae0cf45a9499a1143d82071467d96a7cf7cbc54c72578f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0x36eaebd1e32548ecd78f277c831400ce277b34c19d13552f96bb06a9c4a65a86:log:34', 'hash': '0x36eaebd1e32548ecd78f277c831400ce277b34c19d13552f96bb06a9c4a65a86', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 513.421959193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x778a556019', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xba7f92b014d4e0adc2b9777c1c7f8e087491b9bac473f2737de22aa98166298a:log:53', 'hash': '0xba7f92b014d4e0adc2b9777c1c7f8e087491b9bac473f2737de22aa98166298a', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 561.555528036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x82bf515964', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0x7694ddebb71b25229f271deaa294cf09196350510887e8e99a7704777db0491b:log:66', 'hash': '0x7694ddebb71b25229f271deaa294cf09196350510887e8e99a7704777db0491b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2020.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d6866e3a80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0x7694ddebb71b25229f271deaa294cf09196350510887e8e99a7704777db0491b:log:67', 'hash': '0x7694ddebb71b25229f271deaa294cf09196350510887e8e99a7704777db0491b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2020.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d6866e3a80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6:log:74', 'hash': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 935.925880061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd9e98794fd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6:log:76', 'hash': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 935.925880061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd9e98794fd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6:log:82', 'hash': '0xf6ee7b4a98c59c54d20d88e6b8e47c8fd6430e30857e324c1aaf14dc8e3ecaf6', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 935.925880061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd9e98794fd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0x54bd5ecb48c1bc00ff50becccb24139169e3a2a213a582d32fdd74fdf44d2b90:log:199', 'hash': '0x54bd5ecb48c1bc00ff50becccb24139169e3a2a213a582d32fdd74fdf44d2b90', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 375.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5759dfe480', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b0', 'uniqueId': '0xac3828104304eab364ff023f46df94f3d3a25979ca7553686a335cab317d1dfe:log:200', 'hash': '0xac3828104304eab364ff023f46df94f3d3a25979ca7553686a335cab317d1dfe', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 369.651393913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5610f0a579', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:26.000Z'}}, {'blockNum': '0x94d7b1', 'uniqueId': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c:log:5', 'hash': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 280.777764018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415fa8acb2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:40.000Z'}}, {'blockNum': '0x94d7b1', 'uniqueId': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c:log:7', 'hash': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 280.777764018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415fa8acb2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:40.000Z'}}, {'blockNum': '0x94d7b1', 'uniqueId': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c:log:12', 'hash': '0xc0d48ddd28fb57a832d0cd12632cdb34c8c1a8144dd9c173047aa1c1e8a9076c', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 280.77748324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415fa463e8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:40.000Z'}}, {'blockNum': '0x94d7b3', 'uniqueId': '0x5e040b9c6ba94752e4989060b51cac2f0c89990033fa836e07a0efa6145e99d3:log:2', 'hash': '0x5e040b9c6ba94752e4989060b51cac2f0c89990033fa836e07a0efa6145e99d3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:51.000Z'}}, {'blockNum': '0x94d7b3', 'uniqueId': '0x5e040b9c6ba94752e4989060b51cac2f0c89990033fa836e07a0efa6145e99d3:log:4', 'hash': '0x5e040b9c6ba94752e4989060b51cac2f0c89990033fa836e07a0efa6145e99d3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:51.000Z'}}, {'blockNum': '0x94d7b3', 'uniqueId': '0x3f95959230dc66d6be0844efd3058213a85f6528c6c4861d377c66703806c82d:log:25', 'hash': '0x3f95959230dc66d6be0844efd3058213a85f6528c6c4861d377c66703806c82d', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:51.000Z'}}, {'blockNum': '0x94d7b5', 'uniqueId': '0xd88451ef5f9c69ce9408de2d5c94fc45c66845905f1a204470942da9879b0069:log:135', 'hash': '0xd88451ef5f9c69ce9408de2d5c94fc45c66845905f1a204470942da9879b0069', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1114.094610063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01036536a68f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:37:57.000Z'}}, {'blockNum': '0x94d7b9', 'uniqueId': '0x60a8ba2f7f4c9172c62badca8fcbc38d76ff570cafc7525b1fc123c897842ea0:log:2', 'hash': '0x60a8ba2f7f4c9172c62badca8fcbc38d76ff570cafc7525b1fc123c897842ea0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xab7583a7f1f890664383e03e42c9ed73afc6e268', 'value': 21399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x137657cb2600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:38:56.000Z'}}, {'blockNum': '0x94d7ba', 'uniqueId': '0x5bf398024a56a1c260d8956ba5ea39a839c8910af8191a94d86a6dc94d38bf94:log:9', 'hash': '0x5bf398024a56a1c260d8956ba5ea39a839c8910af8191a94d86a6dc94d38bf94', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14250.15641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0cf5df82c490', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:39:04.000Z'}}, {'blockNum': '0x94d7bf', 'uniqueId': '0x4f9a1ed19ac2bb8f2f9fc56674d42adf7a753f659b2d305623c7562911b51399:log:10', 'hash': '0x4f9a1ed19ac2bb8f2f9fc56674d42adf7a753f659b2d305623c7562911b51399', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdde8b84f3b544933c4ea58802d4af5564ad061d8', 'value': 879.17421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xccb2ddd1d0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:15.000Z'}}, {'blockNum': '0x94d7bf', 'uniqueId': '0x3f71c3435e03d33f93fabcba5b6558b813632c0025f5ee1e6e735b6688f35b9e:log:41', 'hash': '0x3f71c3435e03d33f93fabcba5b6558b813632c0025f5ee1e6e735b6688f35b9e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 829.950856944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc13ced0ef0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:15.000Z'}}, {'blockNum': '0x94d7c0', 'uniqueId': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9:log:4', 'hash': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 280.742602858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415d90286a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:31.000Z'}}, {'blockNum': '0x94d7c0', 'uniqueId': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9:log:7', 'hash': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 280.742602858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415d90286a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:31.000Z'}}, {'blockNum': '0x94d7c0', 'uniqueId': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9:log:9', 'hash': '0x11133f6c9f8a55f98bf34410ff7a9a0c80c3e9b9aec7a676bdd6ebdbdd05dda9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 280.742602858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x415d90286a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:31.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x00e6d32be214ac83c155dc046ade542efc5e1deed6a34d6069c9daf258b4274f:log:39', 'hash': '0x00e6d32be214ac83c155dc046ade542efc5e1deed6a34d6069c9daf258b4274f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 531.151648383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7bab1af67f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403:log:66', 'hash': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2883354c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403:log:68', 'hash': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 167.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x26e45c2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403:log:71', 'hash': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x019ed92c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7c1', 'uniqueId': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403:log:73', 'hash': '0x7d125ab963cfc6d6bebad8b22be1bd548738908c4ab1d239b653b3b4a5b89403', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 6.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x019ed92c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:40:33.000Z'}}, {'blockNum': '0x94d7cc', 'uniqueId': '0xaae2ab8c02606e6ccd8a9217f3e3220c164459f06f6b7e9d2681fd6697209795:log:44', 'hash': '0xaae2ab8c02606e6ccd8a9217f3e3220c164459f06f6b7e9d2681fd6697209795', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 601.364715419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8c0421579b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:42:44.000Z'}}, {'blockNum': '0x94d7d2', 'uniqueId': '0x95ecbcc32aaf3b997bc3e23fd16b951bd9a43ef245fb4fc70800ff499b96cecc:log:35', 'hash': '0x95ecbcc32aaf3b997bc3e23fd16b951bd9a43ef245fb4fc70800ff499b96cecc', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 303.081548781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4691116bed', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:44:27.000Z'}}, {'blockNum': '0x94d7d5', 'uniqueId': '0xfd9a9c36f1620f7c84edf1de6a61804bee0577172e959a2f791ae25b40484d9b:log:124', 'hash': '0xfd9a9c36f1620f7c84edf1de6a61804bee0577172e959a2f791ae25b40484d9b', 'from': '0x84e1e40ef85c9bdbdd4c40abaa9d8c26db13a257', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:44:38.000Z'}}, {'blockNum': '0x94d7d5', 'uniqueId': '0xfd9a9c36f1620f7c84edf1de6a61804bee0577172e959a2f791ae25b40484d9b:log:125', 'hash': '0xfd9a9c36f1620f7c84edf1de6a61804bee0577172e959a2f791ae25b40484d9b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:44:38.000Z'}}, {'blockNum': '0x94d7e5', 'uniqueId': '0xaa64928797fece6e66fca1b4ecda39a49c81a6c6bed3d6e8a66d6f60dd60ec4a:log:10', 'hash': '0xaa64928797fece6e66fca1b4ecda39a49c81a6c6bed3d6e8a66d6f60dd60ec4a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac05014363912f96c01d8b23015721180ab4e83c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:47:55.000Z'}}, {'blockNum': '0x94d7e8', 'uniqueId': '0x4d1f1890d9d7c51d976bad3c081a3940d78f4961170bbb5f4b7f7d553c2eeb57:log:4', 'hash': '0x4d1f1890d9d7c51d976bad3c081a3940d78f4961170bbb5f4b7f7d553c2eeb57', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 152.330112721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2377950ed1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:48:43.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0xb9fe00ef5a9c120c250e7d1e3f32461d3c5291660883e3ea6fcd311551bf4882:log:0', 'hash': '0xb9fe00ef5a9c120c250e7d1e3f32461d3c5291660883e3ea6fcd311551bf4882', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1079.205119934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfb45a347be', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598:log:4', 'hash': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598:log:6', 'hash': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x41314cf000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598:log:9', 'hash': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3339059800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ec', 'uniqueId': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598:log:11', 'hash': '0x345a7323d14d88c5f15fdd720cd6774c2588504edf94b86f6e1166180990d598', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3339059800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:00.000Z'}}, {'blockNum': '0x94d7ed', 'uniqueId': '0x30c55db844e99e75bdf260d2c5111fbccba8233475e6364f1eafae610f69e90d:log:13', 'hash': '0x30c55db844e99e75bdf260d2c5111fbccba8233475e6364f1eafae610f69e90d', 'from': '0xab7583a7f1f890664383e03e42c9ed73afc6e268', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x137657cb2600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:03.000Z'}}, {'blockNum': '0x94d7ed', 'uniqueId': '0x5f628554abe13abc791c995f474a8a96b676fc31ad07aca59143d52d9704429c:log:19', 'hash': '0x5f628554abe13abc791c995f474a8a96b676fc31ad07aca59143d52d9704429c', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5043.856250567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04965d4296c7', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:03.000Z'}}, {'blockNum': '0x94d7ed', 'uniqueId': '0x5685d2f47c0f283978fcd92e7a7daa47b74b7168b67e66ce2991d558c63ea9c7:log:40', 'hash': '0x5685d2f47c0f283978fcd92e7a7daa47b74b7168b67e66ce2991d558c63ea9c7', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 311.825521489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x489a3fdb51', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:03.000Z'}}, {'blockNum': '0x94d7ed', 'uniqueId': '0x5685d2f47c0f283978fcd92e7a7daa47b74b7168b67e66ce2991d558c63ea9c7:log:42', 'hash': '0x5685d2f47c0f283978fcd92e7a7daa47b74b7168b67e66ce2991d558c63ea9c7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 311.825521489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x489a3fdb51', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:49:03.000Z'}}, {'blockNum': '0x94d7ff', 'uniqueId': '0xea4ef60e28f5a6d678674444688495dc081ba50223e59f5b53f00996d230513d:log:11', 'hash': '0xea4ef60e28f5a6d678674444688495dc081ba50223e59f5b53f00996d230513d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8990a4600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:52:34.000Z'}}, {'blockNum': '0x94d7ff', 'uniqueId': '0xc5e2588f5d6b58bdd4b5f2f2e3041931bf64406ffc69a158badedd82a9b0322d:log:47', 'hash': '0xc5e2588f5d6b58bdd4b5f2f2e3041931bf64406ffc69a158badedd82a9b0322d', 'from': '0x80bb0d87dce1a94329586ce9c7d39692bbf44af6', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 59.2427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0dcb23dce0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:52:34.000Z'}}, {'blockNum': '0x94d806', 'uniqueId': '0x804464f86747fa3f7ab83482f727a811ad29830278afb986a1200fcadfdf204d:log:49', 'hash': '0x804464f86747fa3f7ab83482f727a811ad29830278afb986a1200fcadfdf204d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 90.685751614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x151d4ac13e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:54:01.000Z'}}, {'blockNum': '0x94d806', 'uniqueId': '0x804464f86747fa3f7ab83482f727a811ad29830278afb986a1200fcadfdf204d:log:51', 'hash': '0x804464f86747fa3f7ab83482f727a811ad29830278afb986a1200fcadfdf204d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3f7fd83811c050f38e8e8b7a1a681f58e59424b1', 'value': 90.685751614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x151d4ac13e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:54:01.000Z'}}, {'blockNum': '0x94d809', 'uniqueId': '0xd8b75f8030278cb0a0ee950e3614d2d4b6644492bf023eefd210d2ea9a58da62:log:78', 'hash': '0xd8b75f8030278cb0a0ee950e3614d2d4b6644492bf023eefd210d2ea9a58da62', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 120.960618176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1c29d08ec0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:54:37.000Z'}}, {'blockNum': '0x94d809', 'uniqueId': '0xd8b75f8030278cb0a0ee950e3614d2d4b6644492bf023eefd210d2ea9a58da62:log:80', 'hash': '0xd8b75f8030278cb0a0ee950e3614d2d4b6644492bf023eefd210d2ea9a58da62', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3f7fd83811c050f38e8e8b7a1a681f58e59424b1', 'value': 120.960618176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1c29d08ec0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:54:37.000Z'}}, {'blockNum': '0x94d81d', 'uniqueId': '0xd49159bff7456e5923df829108df357c6a729f43418838bb471f8367e2448ef9:log:143', 'hash': '0xd49159bff7456e5923df829108df357c6a729f43418838bb471f8367e2448ef9', 'from': '0x9a05ace8cfd3a81f0794f2175b820b3f2f92cf7e', 'to': '0x06f146bc38c1e59542fc663b8b1bd377c60122b9', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T16:58:22.000Z'}}, {'blockNum': '0x94d839', 'uniqueId': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e:log:33', 'hash': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x41e41d4e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:03:01.000Z'}}, {'blockNum': '0x94d839', 'uniqueId': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e:log:35', 'hash': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 152.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2394c82500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:03:01.000Z'}}, {'blockNum': '0x94d839', 'uniqueId': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e:log:38', 'hash': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 130.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e4f552900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:03:01.000Z'}}, {'blockNum': '0x94d839', 'uniqueId': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e:log:40', 'hash': '0xfa06c67e0d8d82ef0745d8ca5c5f7eb04c434af4adaf7e9d94090f4cf6731a6e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 130.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e4f552900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:03:01.000Z'}}, {'blockNum': '0x94d83d', 'uniqueId': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7:log:177', 'hash': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 195.371387733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d7d0acb55', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:12.000Z'}}, {'blockNum': '0x94d83d', 'uniqueId': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7:log:179', 'hash': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 195.371387733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d7d0acb55', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:12.000Z'}}, {'blockNum': '0x94d83d', 'uniqueId': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7:log:185', 'hash': '0xd445b3c44a20ead745788a7246857b4c99ec01384fe6f61d9b05a534bdfee4c7', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 195.371387733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d7d0acb55', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:12.000Z'}}, {'blockNum': '0x94d83e', 'uniqueId': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5:log:24', 'hash': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3b5f2f3600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:19.000Z'}}, {'blockNum': '0x94d83e', 'uniqueId': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5:log:26', 'hash': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 193.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d1f615200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:19.000Z'}}, {'blockNum': '0x94d83e', 'uniqueId': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5:log:29', 'hash': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 61.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e3fcde400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:19.000Z'}}, {'blockNum': '0x94d83e', 'uniqueId': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5:log:31', 'hash': '0xd93de218ac09423c0b546f87d6b19ef35caecf7ed3208db7d494838ddfd2c0c5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 61.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e3fcde400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:19.000Z'}}, {'blockNum': '0x94d841', 'uniqueId': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb:log:25', 'hash': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3deed5e400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:41.000Z'}}, {'blockNum': '0x94d841', 'uniqueId': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb:log:27', 'hash': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 148.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x22aeb53800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:41.000Z'}}, {'blockNum': '0x94d841', 'uniqueId': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb:log:30', 'hash': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 117.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b4020ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:41.000Z'}}, {'blockNum': '0x94d841', 'uniqueId': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb:log:32', 'hash': '0xe38df75d33fbb8d31533f353079ca9da9200cabcfbae3ab702d5b4dc895489fb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 117.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b4020ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:04:41.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xf321965fdd6cba07cc57ab16de013dd7f61e3b72114d4092b613dfb0c18ed6c2:log:103', 'hash': '0xf321965fdd6cba07cc57ab16de013dd7f61e3b72114d4092b613dfb0c18ed6c2', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 920.722080058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd65f50013a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d:log:108', 'hash': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d:log:110', 'hash': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5625b7f400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d:log:113', 'hash': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e449a9400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d84c', 'uniqueId': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d:log:115', 'hash': '0xecdf0dd43d74927fc28921ad7e2a3063883fc6f67eff604d1ca125aa8d2b5f6d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e449a9400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:06:18.000Z'}}, {'blockNum': '0x94d850', 'uniqueId': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678:log:63', 'hash': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 138.769837846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x204f53af16', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:07:58.000Z'}}, {'blockNum': '0x94d850', 'uniqueId': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678:log:65', 'hash': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 138.769644477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x204f50bbbd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:07:58.000Z'}}, {'blockNum': '0x94d850', 'uniqueId': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678:log:67', 'hash': '0x9bf6784bdb79ef4e26ce5fe043e0a9c0a5499e211b6e57a510aadaaf91ecd678', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 138.769644477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x204f50bbbd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:07:58.000Z'}}, {'blockNum': '0x94d859', 'uniqueId': '0x86451180aab38ef78c79bd6837890377bc2842ce4724ccb4394de11b79e43e7b:log:5', 'hash': '0x86451180aab38ef78c79bd6837890377bc2842ce4724ccb4394de11b79e43e7b', 'from': '0x06f146bc38c1e59542fc663b8b1bd377c60122b9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:09:18.000Z'}}, {'blockNum': '0x94d86d', 'uniqueId': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8:log:24', 'hash': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 187.260498032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b99987070', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:11:46.000Z'}}, {'blockNum': '0x94d86d', 'uniqueId': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8:log:26', 'hash': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 187.260498032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b99987070', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:11:46.000Z'}}, {'blockNum': '0x94d86d', 'uniqueId': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8:log:31', 'hash': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 187.26031077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b999594f2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:11:46.000Z'}}, {'blockNum': '0x94d86d', 'uniqueId': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8:log:33', 'hash': '0x9a46bf3e6215fbcd9b3d15e3bb5e084ebb595e05b18106f0cf0a610b2329d9b8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 187.26031077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b999594f2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:11:46.000Z'}}, {'blockNum': '0x94d872', 'uniqueId': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef:log:118', 'hash': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 174.051258242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2886436f82', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:12:14.000Z'}}, {'blockNum': '0x94d872', 'uniqueId': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef:log:120', 'hash': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 174.051258242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2886436f82', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:12:14.000Z'}}, {'blockNum': '0x94d872', 'uniqueId': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef:log:125', 'hash': '0x1d366d8c7639566a0c3939c7179b68a77dc8e536f66e3b11f7e77fcb5d0558ef', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 174.051258242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2886436f82', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:12:14.000Z'}}, {'blockNum': '0x94d87d', 'uniqueId': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc:log:75', 'hash': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 160.513217205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x255f5552b5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:13:50.000Z'}}, {'blockNum': '0x94d87d', 'uniqueId': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc:log:77', 'hash': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 160.513217205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x255f5552b5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:13:50.000Z'}}, {'blockNum': '0x94d87d', 'uniqueId': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc:log:81', 'hash': '0xd62ce81283b48f696f5d8bd8ecd8d799ec204bfa2c1122fe611741dd758e6efc', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 160.513217205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x255f5552b5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:13:50.000Z'}}, {'blockNum': '0x94d885', 'uniqueId': '0xf09b5c497ab2e4b8ee42280fa7aec2b940a90e403edf54ab700e4e61a864f1f8:log:6', 'hash': '0xf09b5c497ab2e4b8ee42280fa7aec2b940a90e403edf54ab700e4e61a864f1f8', 'from': '0xfceb891f5b6a85aca7f295221e9a9432a4f2cbac', 'to': '0x6c9394176649b5bff8def41c5a802a949c62790c', 'value': 248.23805674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39cc242524', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:15:26.000Z'}}, {'blockNum': '0x94d88b', 'uniqueId': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168:log:31', 'hash': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 301.474598821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4631494fa5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:16:42.000Z'}}, {'blockNum': '0x94d88b', 'uniqueId': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168:log:33', 'hash': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 301.474598821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4631494fa5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:16:42.000Z'}}, {'blockNum': '0x94d88b', 'uniqueId': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168:log:38', 'hash': '0xa605f87ea34806c661515be92737d91d4e2070f0de2527106e718f174d218168', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 301.474297345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x463144b601', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:16:42.000Z'}}, {'blockNum': '0x94d88f', 'uniqueId': '0xd60fe667e436b2c2a80e0c93d3cd9654fb4e4dd5ebab6abddcfea34b958b54f8:log:3', 'hash': '0xd60fe667e436b2c2a80e0c93d3cd9654fb4e4dd5ebab6abddcfea34b958b54f8', 'from': '0x6c9394176649b5bff8def41c5a802a949c62790c', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 248.23805674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39cc242524', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:08.000Z'}}, {'blockNum': '0x94d890', 'uniqueId': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d:log:65', 'hash': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 201.770835886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2efa7a9fae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:20.000Z'}}, {'blockNum': '0x94d890', 'uniqueId': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d:log:67', 'hash': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 201.770835886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2efa7a9fae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:20.000Z'}}, {'blockNum': '0x94d890', 'uniqueId': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d:log:73', 'hash': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 201.770835886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2efa7a9fae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:20.000Z'}}, {'blockNum': '0x94d890', 'uniqueId': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d:log:75', 'hash': '0xc20d12eeef3a03f70018ad1ca4c4b72637865b495defa70f623ebccceecc283d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 201.770835886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2efa7a9fae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:17:20.000Z'}}, {'blockNum': '0x94d8a3', 'uniqueId': '0x21385451745f2bc299c3c69dd54739e48528c939c3f4783c7364bdc30724ec79:log:58', 'hash': '0x21385451745f2bc299c3c69dd54739e48528c939c3f4783c7364bdc30724ec79', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 288.287388578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x431f4473a2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:21:52.000Z'}}, {'blockNum': '0x94d8bc', 'uniqueId': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83:log:9', 'hash': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:27:47.000Z'}}, {'blockNum': '0x94d8bc', 'uniqueId': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83:log:11', 'hash': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:27:47.000Z'}}, {'blockNum': '0x94d8bc', 'uniqueId': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83:log:16', 'hash': '0x516dc2dedfd71faf9b54d14ed283c962dc28cc24fb066aaf6797aa69fc498e83', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:27:47.000Z'}}, {'blockNum': '0x94d8c5', 'uniqueId': '0xf7c20e427e942975c2be11a247a28d1941c515bc34f6dd542638de1a9d985e7e:log:4', 'hash': '0xf7c20e427e942975c2be11a247a28d1941c515bc34f6dd542638de1a9d985e7e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7773fb60c4cb3c0896a5d42d1f026437bafefc3f', 'value': 497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x73b7822a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:29:08.000Z'}}, {'blockNum': '0x94d8d4', 'uniqueId': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc:log:38', 'hash': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 262.698230375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d2a08e267', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:31:39.000Z'}}, {'blockNum': '0x94d8d4', 'uniqueId': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc:log:40', 'hash': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 262.698230375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d2a08e267', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:31:39.000Z'}}, {'blockNum': '0x94d8d4', 'uniqueId': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc:log:45', 'hash': '0xae84e126305dc2be582973c081025863ae0e803db15c49fd80edffb21c07a2cc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 262.697967675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3d2a04e03b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:31:39.000Z'}}, {'blockNum': '0x94d8db', 'uniqueId': '0x59ffa273cc923425ebbbc649f8de34ae7ba44d3157c56716bd346b233c88f7ed:log:30', 'hash': '0x59ffa273cc923425ebbbc649f8de34ae7ba44d3157c56716bd346b233c88f7ed', 'from': '0xa2a2775296e1a69a33ded88506c49f94ae38effe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:34:20.000Z'}}, {'blockNum': '0x94d8db', 'uniqueId': '0x59ffa273cc923425ebbbc649f8de34ae7ba44d3157c56716bd346b233c88f7ed:log:31', 'hash': '0x59ffa273cc923425ebbbc649f8de34ae7ba44d3157c56716bd346b233c88f7ed', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:34:20.000Z'}}, {'blockNum': '0x94d8e3', 'uniqueId': '0x44f72e32d2e1f6e858f905c8e1e78d8cd09aa278144a201e5b4f1ba8b550a0db:log:8', 'hash': '0x44f72e32d2e1f6e858f905c8e1e78d8cd09aa278144a201e5b4f1ba8b550a0db', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 181.760474628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a51c4be04', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:36:23.000Z'}}, {'blockNum': '0x94d8e4', 'uniqueId': '0xc7129950bfdb785f1bede556da1a11671d531efe8882842b01b4b13a3ecf167f:log:3', 'hash': '0xc7129950bfdb785f1bede556da1a11671d531efe8882842b01b4b13a3ecf167f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd40c3d39dd5b210304aa0cf11afa5f6f735fd093', 'value': 2017.19841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01d5aa650910', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:36:29.000Z'}}, {'blockNum': '0x94d8eb', 'uniqueId': '0x6520ec0ac4757846d8cf07a27304508be0a527dca38a173393d40149cac8fa7a:log:10', 'hash': '0x6520ec0ac4757846d8cf07a27304508be0a527dca38a173393d40149cac8fa7a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 26466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x181218875400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:37:54.000Z'}}, {'blockNum': '0x94d900', 'uniqueId': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72:log:75', 'hash': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 315.736039491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x498355a043', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:42:55.000Z'}}, {'blockNum': '0x94d900', 'uniqueId': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72:log:77', 'hash': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 315.736039491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x498355a043', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:42:55.000Z'}}, {'blockNum': '0x94d900', 'uniqueId': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72:log:82', 'hash': '0x52e4aa0dd13bbb580f0224aaffbcc228bbcceb17845a723b4e8ff64bb766ae72', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 315.736039491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x498355a043', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:42:55.000Z'}}, {'blockNum': '0x94d907', 'uniqueId': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71:log:6', 'hash': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:21.000Z'}}, {'blockNum': '0x94d907', 'uniqueId': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71:log:8', 'hash': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:21.000Z'}}, {'blockNum': '0x94d907', 'uniqueId': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71:log:13', 'hash': '0xf142059caebe777c1add50b6a160e83a540ecc010de67d8882b2e6fc7df00c71', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:21.000Z'}}, {'blockNum': '0x94d908', 'uniqueId': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d:log:147', 'hash': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 203.502921816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f61b82858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:29.000Z'}}, {'blockNum': '0x94d908', 'uniqueId': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d:log:149', 'hash': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 203.502921816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f61b82858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:29.000Z'}}, {'blockNum': '0x94d908', 'uniqueId': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d:log:155', 'hash': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 203.502921816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f61b82858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:29.000Z'}}, {'blockNum': '0x94d908', 'uniqueId': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d:log:157', 'hash': '0x04843b875551b250a28faad9761d71332641351f2430c67435c37e0af55ac05d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 203.502921816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f61b82858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:45:29.000Z'}}, {'blockNum': '0x94d912', 'uniqueId': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030:log:91', 'hash': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 163.825872719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2624c86f4f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:47:15.000Z'}}, {'blockNum': '0x94d912', 'uniqueId': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030:log:93', 'hash': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 163.825872719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2624c86f4f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:47:15.000Z'}}, {'blockNum': '0x94d912', 'uniqueId': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030:log:97', 'hash': '0x1861866d67f61e3e6f2170b10731e8ef8d7112875be1b9d3673defed2a3e1030', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 163.825872719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2624c86f4f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:47:15.000Z'}}, {'blockNum': '0x94d91b', 'uniqueId': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22:log:104', 'hash': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 307.521756402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4799b99cf2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:49:09.000Z'}}, {'blockNum': '0x94d91b', 'uniqueId': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22:log:106', 'hash': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 307.521756402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4799b99cf2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:49:09.000Z'}}, {'blockNum': '0x94d91b', 'uniqueId': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22:log:111', 'hash': '0xc774c9b43f1c617c9d2436f18d7bf17556f80c902ce270b3484e7d3aa29f1b22', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 307.521448878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4799b4ebae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:49:09.000Z'}}, {'blockNum': '0x94d921', 'uniqueId': '0xf76eccf76ef3478aa11dc29ad842ec3647a6aeb92fa8a509e2ac406c43172f76:log:11', 'hash': '0xf76eccf76ef3478aa11dc29ad842ec3647a6aeb92fa8a509e2ac406c43172f76', 'from': '0xa2645e4a498efa4fb9d864fd72b7f2b00d7d1bb4', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 197.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e0f963d80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:50:57.000Z'}}, {'blockNum': '0x94d921', 'uniqueId': '0xf76eccf76ef3478aa11dc29ad842ec3647a6aeb92fa8a509e2ac406c43172f76:log:12', 'hash': '0xf76eccf76ef3478aa11dc29ad842ec3647a6aeb92fa8a509e2ac406c43172f76', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 197.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2e0f963d80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:50:57.000Z'}}, {'blockNum': '0x94d922', 'uniqueId': '0xfccfb0e230541757ae482fed7dfdb99f05b3b3c417bb3be527213e286d415f19:log:49', 'hash': '0xfccfb0e230541757ae482fed7dfdb99f05b3b3c417bb3be527213e286d415f19', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 265.829523005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3de4ac9e3d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:51:08.000Z'}}, {'blockNum': '0x94d92d', 'uniqueId': '0x7c95e37e527ecf4de9ecbcd213fcaae3904af53a97e96d3e50e1a8ab436016e6:log:31', 'hash': '0x7c95e37e527ecf4de9ecbcd213fcaae3904af53a97e96d3e50e1a8ab436016e6', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 248.657904302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39e52a82ae', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:52:13.000Z'}}, {'blockNum': '0x94d935', 'uniqueId': '0x38308c69d2a6f18ec1701c77b7f29451e212dc271b6187617b2509490ac0ddd6:log:81', 'hash': '0x38308c69d2a6f18ec1701c77b7f29451e212dc271b6187617b2509490ac0ddd6', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 242.738257616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x388453ded0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T17:53:18.000Z'}}, {'blockNum': '0x94d962', 'uniqueId': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7:log:160', 'hash': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 162.922421215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x25eeeedbdf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:02:23.000Z'}}, {'blockNum': '0x94d962', 'uniqueId': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7:log:162', 'hash': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 162.922421215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x25eeeedbdf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:02:23.000Z'}}, {'blockNum': '0x94d962', 'uniqueId': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7:log:166', 'hash': '0xe8cf3d7b0475136589ecac163352831817454ae8fd32bc752ace80c4309a4ea7', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 162.922421215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x25eeeedbdf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:02:23.000Z'}}, {'blockNum': '0x94d967', 'uniqueId': '0x8a26a6757887dcbc8e25db81e128eec4d18005b4e788b06a6d04528a4cedfd97:log:13', 'hash': '0x8a26a6757887dcbc8e25db81e128eec4d18005b4e788b06a6d04528a4cedfd97', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 564.28899878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x83623ecd7c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:03:38.000Z'}}, {'blockNum': '0x94d9a1', 'uniqueId': '0x2da207c8a8eb9e7ff48b6e9d89281f4b55b97ecc55c44c974e8d4553b503b733:log:17', 'hash': '0x2da207c8a8eb9e7ff48b6e9d89281f4b55b97ecc55c44c974e8d4553b503b733', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 163.314806526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2606522efe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:16:23.000Z'}}, {'blockNum': '0x94d9a6', 'uniqueId': '0xa266f5a9653b1a57ee3bcbd70be4835c52005ee7dd11b6cf29ff7ee9b1479468:log:80', 'hash': '0xa266f5a9653b1a57ee3bcbd70be4835c52005ee7dd11b6cf29ff7ee9b1479468', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x53abc6bdc6472a5e34e456220c6ef9fede01cf05', 'value': 49.26563645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0b7875f462', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:17:19.000Z'}}, {'blockNum': '0x94d9a9', 'uniqueId': '0xcfc11df0560fca2fd53dfa9e3c25148f58b427bcfaa929ada13f12d7f7b798a5:log:29', 'hash': '0xcfc11df0560fca2fd53dfa9e3c25148f58b427bcfaa929ada13f12d7f7b798a5', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 575.678938885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8609237f05', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:18:32.000Z'}}, {'blockNum': '0x94d9ab', 'uniqueId': '0x7cf394a51f0d099c1722707e240b188ea948c4b4b7846cee48304c1661e662ad:log:196', 'hash': '0x7cf394a51f0d099c1722707e240b188ea948c4b4b7846cee48304c1661e662ad', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xeda9c316c39f5a1a9f95ff23bc3d5e63eb793a9d', 'value': 465.112345869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6c4adb2d0d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:19:06.000Z'}}, {'blockNum': '0x94d9ac', 'uniqueId': '0x4c9355a2ab066e21fc1310456cdf46387cff73694daadcdfe231ee6db0a0964e:log:22', 'hash': '0x4c9355a2ab066e21fc1310456cdf46387cff73694daadcdfe231ee6db0a0964e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 247.324917889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3995b6c081', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:19:13.000Z'}}, {'blockNum': '0x94d9c8', 'uniqueId': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435:log:53', 'hash': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 205.158779026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fc46a8892', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:26:48.000Z'}}, {'blockNum': '0x94d9c8', 'uniqueId': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435:log:55', 'hash': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 205.158779026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fc46a8892', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:26:48.000Z'}}, {'blockNum': '0x94d9c8', 'uniqueId': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435:log:61', 'hash': '0xef8aa9e29680fc86ffc85c10a2b61b67ce9d34b3f32d09269257e21e1904a435', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 205.158779026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fc46a8892', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:26:48.000Z'}}, {'blockNum': '0x94d9cd', 'uniqueId': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de:log:90', 'hash': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 205.535217153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fdada8601', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:29:11.000Z'}}, {'blockNum': '0x94d9cd', 'uniqueId': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de:log:92', 'hash': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 205.535217153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fdada8601', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:29:11.000Z'}}, {'blockNum': '0x94d9cd', 'uniqueId': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de:log:98', 'hash': '0x50d658ad245eaa80c01c5f1c19793f0112b41899aa616c35263204020c0ea0de', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 205.535217153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2fdada8601', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:29:11.000Z'}}, {'blockNum': '0x94d9d2', 'uniqueId': '0xb354b0080dee7c91268aa1848014750d5b598b53266f28f19c2a755a7a9f9a13:log:23', 'hash': '0xb354b0080dee7c91268aa1848014750d5b598b53266f28f19c2a755a7a9f9a13', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5125.13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04a9498d9680', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:30:02.000Z'}}, {'blockNum': '0x94d9df', 'uniqueId': '0xe842a68324cc3d4107779ca966a2b39e62eb903fac543ec7f6b01f4a17dfeff0:log:34', 'hash': '0xe842a68324cc3d4107779ca966a2b39e62eb903fac543ec7f6b01f4a17dfeff0', 'from': '0x3ade2f2e035d88756834c7dd39df0be9364b3c95', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 237.843251084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37608fff8c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:35:51.000Z'}}, {'blockNum': '0x94d9df', 'uniqueId': '0xe842a68324cc3d4107779ca966a2b39e62eb903fac543ec7f6b01f4a17dfeff0:log:35', 'hash': '0xe842a68324cc3d4107779ca966a2b39e62eb903fac543ec7f6b01f4a17dfeff0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 237.843251084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37608fff8c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:35:51.000Z'}}, {'blockNum': '0x94da06', 'uniqueId': '0x166b0003ee9235c3476017e7e3e31715ab76a57caa41e61fb7212a27d59ed7b0:log:2', 'hash': '0x166b0003ee9235c3476017e7e3e31715ab76a57caa41e61fb7212a27d59ed7b0', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0xeb0b08da4a91b06089a5643caca482af97a12c15', 'value': 256.71802041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3bc5961f3a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T18:44:10.000Z'}}, {'blockNum': '0x94da65', 'uniqueId': '0x8d0bdda1f54b0274da9d5881394530b1b7615b400bd728b71c2f7a772ce40245:log:26', 'hash': '0x8d0bdda1f54b0274da9d5881394530b1b7615b400bd728b71c2f7a772ce40245', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0174876e8000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:05:15.000Z'}}, {'blockNum': '0x94da72', 'uniqueId': '0xbb35bcbe6df5771d9b8cd2fa7a99945c1227c082d0ce8e1d2fa34b2ca504d21a:log:24', 'hash': '0xbb35bcbe6df5771d9b8cd2fa7a99945c1227c082d0ce8e1d2fa34b2ca504d21a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 744.821393913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xad6ad089f9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:09:24.000Z'}}, {'blockNum': '0x94da73', 'uniqueId': '0xc5c47e2d8d973007255c5dceb30feda12f628bda83697a5bdc94e839bfbd2c4f:log:15', 'hash': '0xc5c47e2d8d973007255c5dceb30feda12f628bda83697a5bdc94e839bfbd2c4f', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 325.895302577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4be0dfadb1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:09:31.000Z'}}, {'blockNum': '0x94da74', 'uniqueId': '0xce8494334dd94e55668ddf69dc3da003fafc5d07a3ade242f6427ba92a3462ca:log:56', 'hash': '0xce8494334dd94e55668ddf69dc3da003fafc5d07a3ade242f6427ba92a3462ca', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 323.2375555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b4275ad2c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:10:05.000Z'}}, {'blockNum': '0x94db0c', 'uniqueId': '0xfadec83f670e003b8b7888e4138c9bbe7eadae549e314bd3f9166efe5c7b05d0:log:11', 'hash': '0xfadec83f670e003b8b7888e4138c9bbe7eadae549e314bd3f9166efe5c7b05d0', 'from': '0xe5a3a82ff06d736012b2b6353d626c43b2f16ccb', 'to': '0x0329763285eb7fabe2a2e930e5cd13eb01910161', 'value': 383.35771565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5941e684c2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:40:38.000Z'}}, {'blockNum': '0x94db17', 'uniqueId': '0xac56a069652f33f6078c43663288b83fc7406d9872976cf9ca07a3b9c62b9f22:log:66', 'hash': '0xac56a069652f33f6078c43663288b83fc7406d9872976cf9ca07a3b9c62b9f22', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 724.507913727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa8b0096dff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:44:03.000Z'}}, {'blockNum': '0x94db17', 'uniqueId': '0xac56a069652f33f6078c43663288b83fc7406d9872976cf9ca07a3b9c62b9f22:log:68', 'hash': '0xac56a069652f33f6078c43663288b83fc7406d9872976cf9ca07a3b9c62b9f22', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x2bed2a2dfafde551dce4b3d245d889f9081ab7a1', 'value': 724.507913727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa8b0096dff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T19:44:03.000Z'}}, {'blockNum': '0x94dc01', 'uniqueId': '0x3324b6ba1e48f7595e444047cc29b38b0103852577892adbe1acccf239b7d3d2:log:2', 'hash': '0x3324b6ba1e48f7595e444047cc29b38b0103852577892adbe1acccf239b7d3d2', 'from': '0x3df5e139f4f852b913f81236e6b9b770f77e59dd', 'to': '0x92c6de05df797d43c9ab7d48d10962e3a01e10da', 'value': 302.543186928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4670faabf0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:33:54.000Z'}}, {'blockNum': '0x94dc42', 'uniqueId': '0xf79eba2a186d2711aba88d4483e5b0f997541412b7eb2f300a9ab4f84d4a7931:log:135', 'hash': '0xf79eba2a186d2711aba88d4483e5b0f997541412b7eb2f300a9ab4f84d4a7931', 'from': '0x92c6de05df797d43c9ab7d48d10962e3a01e10da', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 302.543186928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4670faabf0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:48:20.000Z'}}, {'blockNum': '0x94dc42', 'uniqueId': '0xf79eba2a186d2711aba88d4483e5b0f997541412b7eb2f300a9ab4f84d4a7931:log:137', 'hash': '0xf79eba2a186d2711aba88d4483e5b0f997541412b7eb2f300a9ab4f84d4a7931', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 302.543186928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4670faabf0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:48:20.000Z'}}, {'blockNum': '0x94dc45', 'uniqueId': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda:log:70', 'hash': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 153.307117722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x23b1d0f89a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:49:49.000Z'}}, {'blockNum': '0x94dc45', 'uniqueId': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda:log:75', 'hash': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 153.307117722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x23b1d0f89a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:49:49.000Z'}}, {'blockNum': '0x94dc45', 'uniqueId': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda:log:76', 'hash': '0x49d81006093bf7c27a0a51a3f96938a5e17f80fad0b8e8d632ea6207bd1a1fda', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 153.307149969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x23b1d17691', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:49:49.000Z'}}, {'blockNum': '0x94dc61', 'uniqueId': '0xbca2aea9eecff5f8964f68d5465c5fc0ade9440d4f86f7ac2e30987a33e51b18:log:8', 'hash': '0xbca2aea9eecff5f8964f68d5465c5fc0ade9440d4f86f7ac2e30987a33e51b18', 'from': '0x333edcbdaf922f0456ab748570257478f0c8b5c9', 'to': '0x36f4a0ccd6fde033611aa6eb1879008528ec5150', 'value': 83.572329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x13754c8a28', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:54:12.000Z'}}, {'blockNum': '0x94dc75', 'uniqueId': '0x47cd5360e3d45b74290fc4a32b14514020e1f01a1e5e1fd7d52299c778ff9bf8:log:4', 'hash': '0x47cd5360e3d45b74290fc4a32b14514020e1f01a1e5e1fd7d52299c778ff9bf8', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 247.152671161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x398b7279b9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:58:29.000Z'}}, {'blockNum': '0x94dc7b', 'uniqueId': '0x7ea4a627dd03014705ffdfb4cac935846f3c5bfcf292fa5010b23219348a39ed:log:8', 'hash': '0x7ea4a627dd03014705ffdfb4cac935846f3c5bfcf292fa5010b23219348a39ed', 'from': '0x36f4a0ccd6fde033611aa6eb1879008528ec5150', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 83.572329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x13754c8a28', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:59:20.000Z'}}, {'blockNum': '0x94dc7b', 'uniqueId': '0xe4a6c34e037244aad71944d7b913b4c9a4a2d181666a20decec625d0b2051ce7:log:20', 'hash': '0xe4a6c34e037244aad71944d7b913b4c9a4a2d181666a20decec625d0b2051ce7', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 331.656877629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4d384a563d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T20:59:20.000Z'}}, {'blockNum': '0x94dc8d', 'uniqueId': '0x50ddbc31727f12cc1ea064b9ecf488264d47974cc11c3244ad16ff7b4e6f936b:log:26', 'hash': '0x50ddbc31727f12cc1ea064b9ecf488264d47974cc11c3244ad16ff7b4e6f936b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 1499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d035cce00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:02:25.000Z'}}, {'blockNum': '0x94dc93', 'uniqueId': '0xa3369a50e74804a541a49c1a0be676228c11116c9aee4f98b73b4135a27456ad:log:11', 'hash': '0xa3369a50e74804a541a49c1a0be676228c11116c9aee4f98b73b4135a27456ad', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 487.284229106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x71746743f2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:05:22.000Z'}}, {'blockNum': '0x94dc9f', 'uniqueId': '0x731bacae758aced3885071a209d427c80a7ea5f2c6b16bbd0e93d0f26a4321ec:log:64', 'hash': '0x731bacae758aced3885071a209d427c80a7ea5f2c6b16bbd0e93d0f26a4321ec', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 403.296541841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5de658dc91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:08:15.000Z'}}, {'blockNum': '0x94dca0', 'uniqueId': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5:log:61', 'hash': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5', 'from': '0x3042d98434814af5c9674ef80f9340bee086ee92', 'to': '0x5526db6c807fb3fae9bafd4a44832c246a8d406e', 'value': 154.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2402745100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:08:42.000Z'}}, {'blockNum': '0x94dca0', 'uniqueId': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5:log:63', 'hash': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5', 'from': '0x5526db6c807fb3fae9bafd4a44832c246a8d406e', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 154.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2402745100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:08:42.000Z'}}, {'blockNum': '0x94dca0', 'uniqueId': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5:log:64', 'hash': '0x0dd5e7bb17a2c288f1cec8fc13f90143e4143e16af7a3af4d3c43b75c97a63f5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 154.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2402745100', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:08:42.000Z'}}, {'blockNum': '0x94dca2', 'uniqueId': '0xc6a6fe4ad58994a442926240e401b0b34cdeb121995dc9952763883de9097bb2:log:20', 'hash': '0xc6a6fe4ad58994a442926240e401b0b34cdeb121995dc9952763883de9097bb2', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 459.364606537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6af443a249', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:09:16.000Z'}}, {'blockNum': '0x94dca2', 'uniqueId': '0xc6a6fe4ad58994a442926240e401b0b34cdeb121995dc9952763883de9097bb2:log:25', 'hash': '0xc6a6fe4ad58994a442926240e401b0b34cdeb121995dc9952763883de9097bb2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 459.364606537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6af443a249', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:09:16.000Z'}}, {'blockNum': '0x94dcb6', 'uniqueId': '0xef018033a31bbb3ad4cbb3a17c95cf3aba276197af1a01907da4b586c2c4d301:log:10', 'hash': '0xef018033a31bbb3ad4cbb3a17c95cf3aba276197af1a01907da4b586c2c4d301', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 240.777828444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x380f7a185c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:16:15.000Z'}}, {'blockNum': '0x94dcb7', 'uniqueId': '0x0510ee5d9d0cd81f280d39ec5ace9df3b9a1cbeb8a6f5e5a308df10bd30bb024:log:43', 'hash': '0x0510ee5d9d0cd81f280d39ec5ace9df3b9a1cbeb8a6f5e5a308df10bd30bb024', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 239.884219942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x37da36b626', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:16:45.000Z'}}, {'blockNum': '0x94dcf1', 'uniqueId': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d:log:29', 'hash': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d', 'from': '0xd4bc78ae16e43e16cbe29db734dbb27f69c15fcf', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 3345.571389241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x030af3981f39', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:29.000Z'}}, {'blockNum': '0x94dcf1', 'uniqueId': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d:log:30', 'hash': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'value': 3345.571389241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x030af3981f39', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:29.000Z'}}, {'blockNum': '0x94dcf1', 'uniqueId': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d:log:32', 'hash': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d', 'from': '0x64d04c6da4b0bc0109d7fc29c9d09c802c061898', 'to': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'value': 3345.571389241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x030af3981f39', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:29.000Z'}}, {'blockNum': '0x94dcf1', 'uniqueId': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d:log:33', 'hash': '0xa3345369b690f11cf7e775940bc7ce23e842b5652e5084eff187f0e3d040109d', 'from': '0x0a236b41add0073df05eac5fc8505ad745c7859d', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 3345.571389241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x030af3981f39', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:29.000Z'}}, {'blockNum': '0x94dcf2', 'uniqueId': '0x2e6cf1c9115bd57b233903da07cfe4f19d96094a61c99ff90b0a159346b7bb07:log:0', 'hash': '0x2e6cf1c9115bd57b233903da07cfe4f19d96094a61c99ff90b0a159346b7bb07', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x7e38f441d3615a052b1514f1a1e12eb67eb406dd', 'value': 882.64669245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcd81d7b262', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:31.000Z'}}, {'blockNum': '0x94dcf2', 'uniqueId': '0x54fec7a86bae93b448ea433f549aec73812a08f1e3dd9a039c39ff6a686d3697:log:2', 'hash': '0x54fec7a86bae93b448ea433f549aec73812a08f1e3dd9a039c39ff6a686d3697', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 2039.811432433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01daee3c5ff1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:31.000Z'}}, {'blockNum': '0x94dcf2', 'uniqueId': '0x315fb33e3ae21ad6fbdb0a5473285f0dec97609f1790e4656496ced8d537156b:log:5', 'hash': '0x315fb33e3ae21ad6fbdb0a5473285f0dec97609f1790e4656496ced8d537156b', 'from': '0x7e38f441d3615a052b1514f1a1e12eb67eb406dd', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 882.64669245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcd81d7b262', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:27:31.000Z'}}, {'blockNum': '0x94dcf3', 'uniqueId': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389:log:129', 'hash': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 405.837496583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5e7dccc107', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:28:20.000Z'}}, {'blockNum': '0x94dcf3', 'uniqueId': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389:log:132', 'hash': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 405.837496583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5e7dccc107', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:28:20.000Z'}}, {'blockNum': '0x94dcf3', 'uniqueId': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389:log:134', 'hash': '0xbe1bd05491a22058bb770a9cffa1f869ca757915b79fee1a5c8202b2b6d95389', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 405.837496583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5e7dccc107', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:28:20.000Z'}}, {'blockNum': '0x94dcfb', 'uniqueId': '0x7f0400aec56c35f2864cbd75d4d02934d9021b24fdde2f488999db5805834def:log:1', 'hash': '0x7f0400aec56c35f2864cbd75d4d02934d9021b24fdde2f488999db5805834def', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 580.19275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x87162ec9b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:30:44.000Z'}}, {'blockNum': '0x94dcfb', 'uniqueId': '0xf4dd4d61c4704d038515c01374eb0c77de8a0219b8aec301faed4dcfc3f5539e:log:43', 'hash': '0xf4dd4d61c4704d038515c01374eb0c77de8a0219b8aec301faed4dcfc3f5539e', 'from': '0x88eaaa81e689abb337bc2d1db7aa7a39d2af98cb', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3f18dbd600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:30:44.000Z'}}, {'blockNum': '0x94dcfb', 'uniqueId': '0xf4dd4d61c4704d038515c01374eb0c77de8a0219b8aec301faed4dcfc3f5539e:log:44', 'hash': '0xf4dd4d61c4704d038515c01374eb0c77de8a0219b8aec301faed4dcfc3f5539e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3f18dbd600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:30:44.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xa577f5b5f8dba709e74cce10bf8b58dc63cd6b000d1fd1dbaa4159b3995eb4e7:log:29', 'hash': '0xa577f5b5f8dba709e74cce10bf8b58dc63cd6b000d1fd1dbaa4159b3995eb4e7', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 401.743538974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5d89c7eb1e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xa577f5b5f8dba709e74cce10bf8b58dc63cd6b000d1fd1dbaa4159b3995eb4e7:log:34', 'hash': '0xa577f5b5f8dba709e74cce10bf8b58dc63cd6b000d1fd1dbaa4159b3995eb4e7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6e316492ed3d5cba0d8940babc589989d7f59193', 'value': 401.743538974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5d89c7eb1e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e:log:58', 'hash': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 242.291165248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3869adc840', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e:log:60', 'hash': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 242.291165248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3869adc840', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd17', 'uniqueId': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e:log:61', 'hash': '0xe897c7ec5f913778857b3b0754eafd5ebfbfa0b033157b249e768601a6ddbd9e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 242.291165248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3869adc840', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:41.000Z'}}, {'blockNum': '0x94dd19', 'uniqueId': '0x8e77fe09afa2284915c52b1e540984602abb6e447f75ccc7734846e60572dd7f:log:41', 'hash': '0x8e77fe09afa2284915c52b1e540984602abb6e447f75ccc7734846e60572dd7f', 'from': '0x6e316492ed3d5cba0d8940babc589989d7f59193', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 401.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5d8991eb00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:35:45.000Z'}}, {'blockNum': '0x94dd1d', 'uniqueId': '0x8259ed0d16aa51a5e2d5b2ee953ffd98c37fae94d1096de5eb2c560a25547034:log:32', 'hash': '0x8259ed0d16aa51a5e2d5b2ee953ffd98c37fae94d1096de5eb2c560a25547034', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x6f72c0dbc7992d23d48e4cee274e7c24a4b552f2', 'value': 580.19275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x87162ec9b0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:36:43.000Z'}}, {'blockNum': '0x94dd1f', 'uniqueId': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19:log:10', 'hash': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 352.60647778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5218fbddd4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:37:07.000Z'}}, {'blockNum': '0x94dd1f', 'uniqueId': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19:log:12', 'hash': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 352.606468207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5218fbb86f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:37:07.000Z'}}, {'blockNum': '0x94dd1f', 'uniqueId': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19:log:13', 'hash': '0xb8a064fed34d5255d7c7f28347f0e8fa8730eeb8938a3baaf67209092083aa19', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 352.606468207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5218fbb86f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:37:07.000Z'}}, {'blockNum': '0x94dd2f', 'uniqueId': '0x739206575c6a5bb5a7e5cd2470b4fdc536f72af860a3cc4cfda9ea76b531b130:log:10', 'hash': '0x739206575c6a5bb5a7e5cd2470b4fdc536f72af860a3cc4cfda9ea76b531b130', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x434dcb3948062f0abac568b7a4c397e773189300', 'value': 493.65396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x72f011a540', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:42:43.000Z'}}, {'blockNum': '0x94dd57', 'uniqueId': '0xd56c531b1c125a21ce9509fd925d41484faa6854079272c23686873efc693999:log:29', 'hash': '0xd56c531b1c125a21ce9509fd925d41484faa6854079272c23686873efc693999', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 401.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5d8991eb00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:49:43.000Z'}}, {'blockNum': '0x94dd5b', 'uniqueId': '0x373a192169e92dcdff5a944fc5d4aca982aad5845b6fc602eafdcc604227a1d2:log:27', 'hash': '0x373a192169e92dcdff5a944fc5d4aca982aad5845b6fc602eafdcc604227a1d2', 'from': '0xbcf8cf9055ee8f904d0d8ce0e8ee0bf6d4a58633', 'to': '0x738696765dbcb15bbab8dc7b2255d5d30374e592', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:50:45.000Z'}}, {'blockNum': '0x94dd63', 'uniqueId': '0x51e417d018ff792ea250f402b3762205829bee68c10ced760aae81ecdd7a499e:log:27', 'hash': '0x51e417d018ff792ea250f402b3762205829bee68c10ced760aae81ecdd7a499e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 190.219881811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2c49fd0d53', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:51:54.000Z'}}, {'blockNum': '0x94dd77', 'uniqueId': '0xcbe2f6f43dfe190dcd65f3b08b83295e513019d51999c4131eeb47676d60b0fd:log:9', 'hash': '0xcbe2f6f43dfe190dcd65f3b08b83295e513019d51999c4131eeb47676d60b0fd', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 273.893757678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3fc55712ee', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:55:09.000Z'}}, {'blockNum': '0x94dd79', 'uniqueId': '0x6c2d85703f56b93984aeb4f068eaf629c34e13e512d7b1e9f26df34bd14429da:log:2', 'hash': '0x6c2d85703f56b93984aeb4f068eaf629c34e13e512d7b1e9f26df34bd14429da', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 215.169467925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3219198615', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:55:32.000Z'}}, {'blockNum': '0x94dd79', 'uniqueId': '0x6c2d85703f56b93984aeb4f068eaf629c34e13e512d7b1e9f26df34bd14429da:log:4', 'hash': '0x6c2d85703f56b93984aeb4f068eaf629c34e13e512d7b1e9f26df34bd14429da', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 215.169467925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3219198615', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:55:32.000Z'}}, {'blockNum': '0x94dd7e', 'uniqueId': '0xded3b95e6792eda65a97ee7d4863b4906f2c47a77dbb7d70011bdbfbbb716b42:log:64', 'hash': '0xded3b95e6792eda65a97ee7d4863b4906f2c47a77dbb7d70011bdbfbbb716b42', 'from': '0x738696765dbcb15bbab8dc7b2255d5d30374e592', 'to': '0x48fbb939d0717a8945fd44af70e62c5672a1ac76', 'value': 1473.1672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0156ff9b8f00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:56:46.000Z'}}, {'blockNum': '0x94dd82', 'uniqueId': '0xfffaf562f582c05752174dc5854385404a2b18b9abff3c18f1e4fe59d7303ac9:log:20', 'hash': '0xfffaf562f582c05752174dc5854385404a2b18b9abff3c18f1e4fe59d7303ac9', 'from': '0x434dcb3948062f0abac568b7a4c397e773189300', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 493.65396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x72f011a540', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:57:37.000Z'}}, {'blockNum': '0x94dd82', 'uniqueId': '0x191ba24047ae13ef36f877b0ba7256c705ccb7b69ce4cc1751ffd1dc53e14f82:log:147', 'hash': '0x191ba24047ae13ef36f877b0ba7256c705ccb7b69ce4cc1751ffd1dc53e14f82', 'from': '0x738696765dbcb15bbab8dc7b2255d5d30374e592', 'to': '0xbcf8cf9055ee8f904d0d8ce0e8ee0bf6d4a58633', 'value': 26.8328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x063f5c0900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T21:57:37.000Z'}}, {'blockNum': '0x94ddfa', 'uniqueId': '0xec72a203e018b08f79857aca7dcfe918cae297944e27b4e0e021071163130139:log:20', 'hash': '0xec72a203e018b08f79857aca7dcfe918cae297944e27b4e0e021071163130139', 'from': '0xb0b91143de6bbb74057d120db7bd7b939a4bae5c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 56.394914261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0d216619d5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:22:45.000Z'}}, {'blockNum': '0x94de2f', 'uniqueId': '0x16e59403228fc4236c42ec31113677851fbdcadc7f995f8d45f1728ffb1c059e:log:0', 'hash': '0x16e59403228fc4236c42ec31113677851fbdcadc7f995f8d45f1728ffb1c059e', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 1793.36987682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a18d2ca954', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:31:44.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989:log:2', 'hash': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989:log:4', 'hash': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989:log:9', 'hash': '0x01e8ab65aa3344ee95f14c8c4a9f485c2fe02c5bd6c900f747a3195970c96989', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0xc32f4758dc2cbbd9e87d82375b4886ef238b89c0cecead89115b167f9572e878:log:108', 'hash': '0xc32f4758dc2cbbd9e87d82375b4886ef238b89c0cecead89115b167f9572e878', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 595.79873354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8ab85f32e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0xc32f4758dc2cbbd9e87d82375b4886ef238b89c0cecead89115b167f9572e878:log:113', 'hash': '0xc32f4758dc2cbbd9e87d82375b4886ef238b89c0cecead89115b167f9572e878', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 595.79873354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8ab85f32e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de30', 'uniqueId': '0x1cd112606a232f3c6eccd89eae7d076bee0ac444ebb8d113adfe33c0e0dee8c8:log:132', 'hash': '0x1cd112606a232f3c6eccd89eae7d076bee0ac444ebb8d113adfe33c0e0dee8c8', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 1793.36987682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a18d2ca954', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:32:41.000Z'}}, {'blockNum': '0x94de33', 'uniqueId': '0x4f999702dc177948ca1cdaec915874fda3ec598c6078da19cb13e7f93d9c6680:log:97', 'hash': '0x4f999702dc177948ca1cdaec915874fda3ec598c6078da19cb13e7f93d9c6680', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 595.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8ab7d9ef80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:33:04.000Z'}}, {'blockNum': '0x94de34', 'uniqueId': '0xbdd5728054b8a0adff42b95787423216d0424b368a5b1998cb4dcc8feb2e3610:log:74', 'hash': '0xbdd5728054b8a0adff42b95787423216d0424b368a5b1998cb4dcc8feb2e3610', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 394.000742948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5bbc463a24', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:33:25.000Z'}}, {'blockNum': '0x94de40', 'uniqueId': '0x018c6f7df9b33d7de4b67c1a6381d40d4c195fc9a7ed264840c8083bb8a2a40a:log:18', 'hash': '0x018c6f7df9b33d7de4b67c1a6381d40d4c195fc9a7ed264840c8083bb8a2a40a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 162.994105963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x25f334ae6b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:36:36.000Z'}}, {'blockNum': '0x94de4a', 'uniqueId': '0x7a5401cb52d335e57e96b579d725ccbb77162e10db2a5c14ef7a272e9e895d5a:log:2', 'hash': '0x7a5401cb52d335e57e96b579d725ccbb77162e10db2a5c14ef7a272e9e895d5a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 989.790742948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe6742029a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:38:52.000Z'}}, {'blockNum': '0x94de4a', 'uniqueId': '0x2e72702f3fe01ab5b5c904baa871d35090d389d891babf77e2553c7544baa664:log:6', 'hash': '0x2e72702f3fe01ab5b5c904baa871d35090d389d891babf77e2553c7544baa664', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1793.36987682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a18d2ca954', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:38:52.000Z'}}, {'blockNum': '0x94de4c', 'uniqueId': '0x66907922ac8cdd7868db01ea54cdd39cf9147cdf69ea6641b6d697e7a8f12c38:log:1', 'hash': '0x66907922ac8cdd7868db01ea54cdd39cf9147cdf69ea6641b6d697e7a8f12c38', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'value': 587.976652424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x88e623b688', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:39:40.000Z'}}, {'blockNum': '0x94de4d', 'uniqueId': '0x5a737a1f57b2af8a954ee77a768d8c0d9294717944a176b16bb51618c0aa1cf9:log:55', 'hash': '0x5a737a1f57b2af8a954ee77a768d8c0d9294717944a176b16bb51618c0aa1cf9', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 388.172177416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a60dd6008', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:39:48.000Z'}}, {'blockNum': '0x94de4d', 'uniqueId': '0x5a737a1f57b2af8a954ee77a768d8c0d9294717944a176b16bb51618c0aa1cf9:log:60', 'hash': '0x5a737a1f57b2af8a954ee77a768d8c0d9294717944a176b16bb51618c0aa1cf9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 388.172177416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a60dd6008', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:39:48.000Z'}}, {'blockNum': '0x94de4d', 'uniqueId': '0x1653e714930e9f6c828f17fa0275d109a2ff1408dfa086e223c166d199c90f6a:log:69', 'hash': '0x1653e714930e9f6c828f17fa0275d109a2ff1408dfa086e223c166d199c90f6a', 'from': '0x8cc5f8809eaa7173567b8cc5aeb3b993e1c5cfff', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 587.976652424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x88e623b688', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:39:48.000Z'}}, {'blockNum': '0x94de4e', 'uniqueId': '0xf8c6c567a4f83610354ada6d362635639a751982167037083e5f0e6654b2ec68:log:37', 'hash': '0xf8c6c567a4f83610354ada6d362635639a751982167037083e5f0e6654b2ec68', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 388.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a60bc2680', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:40:06.000Z'}}, {'blockNum': '0x94de51', 'uniqueId': '0x07eaa61c1c1ed6ac5847f6ea07d6ad67b83ef414fe91de476c19f6434562b242:log:21', 'hash': '0x07eaa61c1c1ed6ac5847f6ea07d6ad67b83ef414fe91de476c19f6434562b242', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 196.166273257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2dac6bc8e9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:40:30.000Z'}}, {'blockNum': '0x94de51', 'uniqueId': '0x07eaa61c1c1ed6ac5847f6ea07d6ad67b83ef414fe91de476c19f6434562b242:log:23', 'hash': '0x07eaa61c1c1ed6ac5847f6ea07d6ad67b83ef414fe91de476c19f6434562b242', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 196.166273257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2dac6bc8e9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:40:30.000Z'}}, {'blockNum': '0x94de68', 'uniqueId': '0x13ea5b1ed9d573bfd06369e0be5a810e555a3150bcda35e66950b05d6b49618f:log:61', 'hash': '0x13ea5b1ed9d573bfd06369e0be5a810e555a3150bcda35e66950b05d6b49618f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 83.869285592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1386ffbcd8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:46:16.000Z'}}, {'blockNum': '0x94de68', 'uniqueId': '0x13ea5b1ed9d573bfd06369e0be5a810e555a3150bcda35e66950b05d6b49618f:log:63', 'hash': '0x13ea5b1ed9d573bfd06369e0be5a810e555a3150bcda35e66950b05d6b49618f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x960759201bd70a436cab133b0834a65224c8c229', 'value': 83.869285592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1386ffbcd8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:46:16.000Z'}}, {'blockNum': '0x94de68', 'uniqueId': '0x586686f585de73a4299e4341a63b6f7f7ef99967977be7283bffafd3924d0726:log:83', 'hash': '0x586686f585de73a4299e4341a63b6f7f7ef99967977be7283bffafd3924d0726', 'from': '0x0c14c14a498af21861c7fb6e2cd2298829781616', 'to': '0x7188fc756628b7b05108a3ab185ed49a9a3b7a17', 'value': 8160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x076be5e6c000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:46:16.000Z'}}, {'blockNum': '0x94de70', 'uniqueId': '0x3298b187e7f3bcb6eebf0eaa414e200a3846d8ca6f9e8ade869383c2eb03db4a:log:12', 'hash': '0x3298b187e7f3bcb6eebf0eaa414e200a3846d8ca6f9e8ade869383c2eb03db4a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 394.786698512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5beb1ef510', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:47:57.000Z'}}, {'blockNum': '0x94de75', 'uniqueId': '0x20238fbb7f55ecd378ed1fb73296c05f8702ffa2e81ee702160feebb0e0b7dd7:log:10', 'hash': '0x20238fbb7f55ecd378ed1fb73296c05f8702ffa2e81ee702160feebb0e0b7dd7', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 587.976652424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x88e623b688', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:48:30.000Z'}}, {'blockNum': '0x94de75', 'uniqueId': '0x87c51a75b2c6022325948aabbe49d31ddaa936d916b418a1983300db6aacd298:log:13', 'hash': '0x87c51a75b2c6022325948aabbe49d31ddaa936d916b418a1983300db6aacd298', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 388.17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5a60bc2680', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:48:30.000Z'}}, {'blockNum': '0x94de75', 'uniqueId': '0x36634b8ffe5d50032b4abccc2058bcce9ab7e9e311ad6381bd19a5cb2bc2d708:log:80', 'hash': '0x36634b8ffe5d50032b4abccc2058bcce9ab7e9e311ad6381bd19a5cb2bc2d708', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 166.470144022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x26c264d016', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:48:30.000Z'}}, {'blockNum': '0x94de75', 'uniqueId': '0x36634b8ffe5d50032b4abccc2058bcce9ab7e9e311ad6381bd19a5cb2bc2d708:log:82', 'hash': '0x36634b8ffe5d50032b4abccc2058bcce9ab7e9e311ad6381bd19a5cb2bc2d708', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 166.470144022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x26c264d016', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:48:30.000Z'}}, {'blockNum': '0x94de80', 'uniqueId': '0xa2173b9456bb38d4a789923e2e4d2f3c4809af25f02fdce56457fdfb42a68ed2:log:18', 'hash': '0xa2173b9456bb38d4a789923e2e4d2f3c4809af25f02fdce56457fdfb42a68ed2', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 397.524233494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5c8e4a6d16', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:51:58.000Z'}}, {'blockNum': '0x94de81', 'uniqueId': '0xc51beb89f2d512e776dc0c2f1e755b7f385a4f3cb5c987f0f7885c9bc1604823:log:12', 'hash': '0xc51beb89f2d512e776dc0c2f1e755b7f385a4f3cb5c987f0f7885c9bc1604823', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 138.128718016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x20291cf8c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:52:15.000Z'}}, {'blockNum': '0x94de81', 'uniqueId': '0xc51beb89f2d512e776dc0c2f1e755b7f385a4f3cb5c987f0f7885c9bc1604823:log:14', 'hash': '0xc51beb89f2d512e776dc0c2f1e755b7f385a4f3cb5c987f0f7885c9bc1604823', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 138.128718016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x20291cf8c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:52:15.000Z'}}, {'blockNum': '0x94de84', 'uniqueId': '0xbc4baf7b9fc2993a1677136618536b1554e889306acaeb4d0eba8a8c194e4a20:log:51', 'hash': '0xbc4baf7b9fc2993a1677136618536b1554e889306acaeb4d0eba8a8c194e4a20', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 320.380155992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4a98253858', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:52:48.000Z'}}, {'blockNum': '0x94de8a', 'uniqueId': '0xe3418404008324da5fba73bf30f329d404bf4114ddc9be17b843837e343019fb:log:97', 'hash': '0xe3418404008324da5fba73bf30f329d404bf4114ddc9be17b843837e343019fb', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 230.176142163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3597913353', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:54:04.000Z'}}, {'blockNum': '0x94de8a', 'uniqueId': '0xe3418404008324da5fba73bf30f329d404bf4114ddc9be17b843837e343019fb:log:99', 'hash': '0xe3418404008324da5fba73bf30f329d404bf4114ddc9be17b843837e343019fb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 230.176142163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3597913353', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:54:04.000Z'}}, {'blockNum': '0x94de9f', 'uniqueId': '0xc273dd104740c7681120e09bc08e0de27915808ba5624b34d8eedb909e6b9d46:log:0', 'hash': '0xc273dd104740c7681120e09bc08e0de27915808ba5624b34d8eedb909e6b9d46', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x43d06e7ced701878ea09c8f6d68da9b8cee802d4', 'value': 61.230041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0e419847a8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:57:50.000Z'}}, {'blockNum': '0x94dea4', 'uniqueId': '0xbf89fa8377df719360d2f8313682555a5d1f09d7bb7066fc97c8d0e06c7a8e3c:log:12', 'hash': '0xbf89fa8377df719360d2f8313682555a5d1f09d7bb7066fc97c8d0e06c7a8e3c', 'from': '0x7188fc756628b7b05108a3ab185ed49a9a3b7a17', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x076be5e6c000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T22:58:57.000Z'}}, {'blockNum': '0x94ded4', 'uniqueId': '0x53c6c7df6de7c102c76255112a07008c4436767963e9580970935310a6240eb4:log:7', 'hash': '0x53c6c7df6de7c102c76255112a07008c4436767963e9580970935310a6240eb4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 558.26610587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81fb40c00e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:09:14.000Z'}}, {'blockNum': '0x94ded4', 'uniqueId': '0x2b6c01340d395654b75d8dd6ce08c627627ba111fe4f97a1fde90e85cb0b73b0:log:9', 'hash': '0x2b6c01340d395654b75d8dd6ce08c627627ba111fe4f97a1fde90e85cb0b73b0', 'from': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'to': '0x0fec2704223b4b00fae55e948c674ea1f6d344de', 'value': 2866.14609736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x029b539eb8d0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:09:14.000Z'}}, {'blockNum': '0x94ded7', 'uniqueId': '0x2b1b6c040cd77f0795cc5e165909da020d8125ccbf853cd82e19be79cb150df7:log:70', 'hash': '0x2b1b6c040cd77f0795cc5e165909da020d8125ccbf853cd82e19be79cb150df7', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 237.759197523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x375b8d7153', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:10:01.000Z'}}, {'blockNum': '0x94dedb', 'uniqueId': '0xf549d3d14e54f1e525d24e16e14c6e87674b43c15be8a4569129eee96785e422:log:62', 'hash': '0xf549d3d14e54f1e525d24e16e14c6e87674b43c15be8a4569129eee96785e422', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 122.660621485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1c8f248cad', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:11:02.000Z'}}, {'blockNum': '0x94dedb', 'uniqueId': '0xf549d3d14e54f1e525d24e16e14c6e87674b43c15be8a4569129eee96785e422:log:67', 'hash': '0xf549d3d14e54f1e525d24e16e14c6e87674b43c15be8a4569129eee96785e422', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 122.660621485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1c8f248cad', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:11:02.000Z'}}, {'blockNum': '0x94dee5', 'uniqueId': '0x44f0207c582313d8f42a59c59ecb871c5946a10ed1869f5d508c544b4adc97f4:log:39', 'hash': '0x44f0207c582313d8f42a59c59ecb871c5946a10ed1869f5d508c544b4adc97f4', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 158.018610793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x24caa4a669', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:13:48.000Z'}}, {'blockNum': '0x94dee9', 'uniqueId': '0xaab310ddb4a6fa81e2e813bc10a0495ef29603ba23004118fed71be57aa32fc9:log:55', 'hash': '0xaab310ddb4a6fa81e2e813bc10a0495ef29603ba23004118fed71be57aa32fc9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 157.63038865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x24b380d9aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:14:33.000Z'}}, {'blockNum': '0x94dee9', 'uniqueId': '0xd5f6ec9b19726b2371b5fbd55f154d5cdd783f2b0cb6b8b2aac44edbf07e8166:log:80', 'hash': '0xd5f6ec9b19726b2371b5fbd55f154d5cdd783f2b0cb6b8b2aac44edbf07e8166', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xa24f3832508f3e8d218a9ea48aff3c56ba5f9f01', 'value': 180.979226874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2a2333d8fa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:14:33.000Z'}}, {'blockNum': '0x94deee', 'uniqueId': '0xdfe6e2462b3da4b22d091fd2de3a7c3ff6172e10c7a2f432a97856c8192f8613:log:30', 'hash': '0xdfe6e2462b3da4b22d091fd2de3a7c3ff6172e10c7a2f432a97856c8192f8613', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd5f2884d9f7fc4fbdcfecd153f4866b6f86788a2', 'value': 558.26610587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x81fb40c00e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:15:29.000Z'}}, {'blockNum': '0x94def2', 'uniqueId': '0xeca3933afac70347f8b8443e0784c0706b79bcd130a4c752cf64773d83cca351:log:81', 'hash': '0xeca3933afac70347f8b8443e0784c0706b79bcd130a4c752cf64773d83cca351', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 392.03801314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b474958d4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:16:23.000Z'}}, {'blockNum': '0x94def2', 'uniqueId': '0xeca3933afac70347f8b8443e0784c0706b79bcd130a4c752cf64773d83cca351:log:86', 'hash': '0xeca3933afac70347f8b8443e0784c0706b79bcd130a4c752cf64773d83cca351', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 392.03801314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b474958d4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:16:23.000Z'}}, {'blockNum': '0x94def4', 'uniqueId': '0x7bf258f4f15cadb7492091496007831420439e27b4739d9d28515d8be058c441:log:47', 'hash': '0x7bf258f4f15cadb7492091496007831420439e27b4739d9d28515d8be058c441', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 392.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b46cf1380', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:17:22.000Z'}}, {'blockNum': '0x94def7', 'uniqueId': '0x2f6e2cb4a4670276a4116c5d67535eb3e61adc2cc5b1e7669ef96da6a7a34d43:log:22', 'hash': '0x2f6e2cb4a4670276a4116c5d67535eb3e61adc2cc5b1e7669ef96da6a7a34d43', 'from': '0x71309886e56a439f67dc5f8eba0f8e5296249eda', 'to': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:18:04.000Z'}}, {'blockNum': '0x94defc', 'uniqueId': '0xc851e55a8815fed4bb3387e7a9c58d86f99d7b4fcd43d6c962ef56e09cb155ba:log:21', 'hash': '0xc851e55a8815fed4bb3387e7a9c58d86f99d7b4fcd43d6c962ef56e09cb155ba', 'from': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:19:18.000Z'}}, {'blockNum': '0x94deff', 'uniqueId': '0xed07d3477c66a18542decca8ae147c4564e6afe3b8d98c152ee28dc794b3abe9:log:73', 'hash': '0xed07d3477c66a18542decca8ae147c4564e6afe3b8d98c152ee28dc794b3abe9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 156.800096549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2482039925', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:19:42.000Z'}}, {'blockNum': '0x94df09', 'uniqueId': '0x414ad5aa8a76f3c94f6e3a49f09520bc356648eaedca20d25baa700eb8318674:log:12', 'hash': '0x414ad5aa8a76f3c94f6e3a49f09520bc356648eaedca20d25baa700eb8318674', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:14.000Z'}}, {'blockNum': '0x94df0a', 'uniqueId': '0x5cd897fbca07b88383370b7cfe8df82c538b9fd5347793e2d00a865163dbd189:log:0', 'hash': '0x5cd897fbca07b88383370b7cfe8df82c538b9fd5347793e2d00a865163dbd189', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 542.73701719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7e5da5a966', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:16.000Z'}}, {'blockNum': '0x94df0b', 'uniqueId': '0xdf0e7e2685a8af0eaefb9265c88fbe8aa97615c6f6dd6e4efb0606fdc93ae3b5:log:14', 'hash': '0xdf0e7e2685a8af0eaefb9265c88fbe8aa97615c6f6dd6e4efb0606fdc93ae3b5', 'from': '0x71309886e56a439f67dc5f8eba0f8e5296249eda', 'to': '0xc2b4048b0b143f99e79cb3526e380686ddd5ac6c', 'value': 362.52642894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5468424f0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:27.000Z'}}, {'blockNum': '0x94df0b', 'uniqueId': '0x9922e0f24aa71cda84d4a4943d75f745c1c762d34b5e6ea2c9eb398351d8728d:log:39', 'hash': '0x9922e0f24aa71cda84d4a4943d75f745c1c762d34b5e6ea2c9eb398351d8728d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1916.361804218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01be301089ba', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:27.000Z'}}, {'blockNum': '0x94df0b', 'uniqueId': '0x9922e0f24aa71cda84d4a4943d75f745c1c762d34b5e6ea2c9eb398351d8728d:log:41', 'hash': '0x9922e0f24aa71cda84d4a4943d75f745c1c762d34b5e6ea2c9eb398351d8728d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'value': 1916.361804218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01be301089ba', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:21:27.000Z'}}, {'blockNum': '0x94df11', 'uniqueId': '0xaf15134d72775e12f162bc37d88064ae82d9f7fe785bee5915edd08f4c1c2aaf:log:9', 'hash': '0xaf15134d72775e12f162bc37d88064ae82d9f7fe785bee5915edd08f4c1c2aaf', 'from': '0xc2b4048b0b143f99e79cb3526e380686ddd5ac6c', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 362.52642894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5468424f0c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:22:20.000Z'}}, {'blockNum': '0x94df16', 'uniqueId': '0x0cb7b23f8e2526786be41151e16a72d4b8d9b33e721c51cc7094f5815bb0754a:log:19', 'hash': '0x0cb7b23f8e2526786be41151e16a72d4b8d9b33e721c51cc7094f5815bb0754a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2109.287774593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01eb1b593981', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:22:53.000Z'}}, {'blockNum': '0x94df16', 'uniqueId': '0x0cb7b23f8e2526786be41151e16a72d4b8d9b33e721c51cc7094f5815bb0754a:log:21', 'hash': '0x0cb7b23f8e2526786be41151e16a72d4b8d9b33e721c51cc7094f5815bb0754a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00c1449a1791ca4be6d936433335a0de819f4240', 'value': 2109.287774593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01eb1b593981', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:22:53.000Z'}}, {'blockNum': '0x94df21', 'uniqueId': '0xcf055420e40604d0c2d6520327ce6dbfcc3dc3196e7d986d480e7d963d6c5800:log:31', 'hash': '0xcf055420e40604d0c2d6520327ce6dbfcc3dc3196e7d986d480e7d963d6c5800', 'from': '0xa2a2775296e1a69a33ded88506c49f94ae38effe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:25:53.000Z'}}, {'blockNum': '0x94df21', 'uniqueId': '0xcf055420e40604d0c2d6520327ce6dbfcc3dc3196e7d986d480e7d963d6c5800:log:32', 'hash': '0xcf055420e40604d0c2d6520327ce6dbfcc3dc3196e7d986d480e7d963d6c5800', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:25:53.000Z'}}, {'blockNum': '0x94df2a', 'uniqueId': '0xcc94318741b5b47baf68ea34083a1a7ec26686a1517661a57e7ab905833d5242:log:62', 'hash': '0xcc94318741b5b47baf68ea34083a1a7ec26686a1517661a57e7ab905833d5242', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x8bf3af4ef2609199a01d1bcf74f8324db56a00a8', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:27:59.000Z'}}, {'blockNum': '0x94df2a', 'uniqueId': '0x2ffbd041093651d97e755dfe832c1f0d1bb697fafc9e0d06f75699d997ccd228:log:63', 'hash': '0x2ffbd041093651d97e755dfe832c1f0d1bb697fafc9e0d06f75699d997ccd228', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x61b10035446372670fe9ffaa4191016b783a1f1b', 'value': 542.73701719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7e5da5a966', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:27:59.000Z'}}, {'blockNum': '0x94df31', 'uniqueId': '0x47d9e955aa44149075213cfc3f1b424d59eabc67332b739c19b0f6e4e278bd1a:log:6', 'hash': '0x47d9e955aa44149075213cfc3f1b424d59eabc67332b739c19b0f6e4e278bd1a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 392.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b46cf1380', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:29:04.000Z'}}, {'blockNum': '0x94df31', 'uniqueId': '0x7846caf54fa308a224d2b51a036a6433cb687b1c0257bd45a5a1a2da105ce50c:log:12', 'hash': '0x7846caf54fa308a224d2b51a036a6433cb687b1c0257bd45a5a1a2da105ce50c', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1862.52642894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01b1a739e70c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:29:04.000Z'}}, {'blockNum': '0x94df32', 'uniqueId': '0xafaee6bc634853143acc1974706b35b30597cf28f26b6021beef85c0534f2c70:log:29', 'hash': '0xafaee6bc634853143acc1974706b35b30597cf28f26b6021beef85c0534f2c70', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 317.187266514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x49d9d597d2', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:29:13.000Z'}}, {'blockNum': '0x94df40', 'uniqueId': '0x17b11f1ea02f8ef3162aa6375ff4b2cedf86f14d34913cb5eba4f3bcb1d7db9d:log:77', 'hash': '0x17b11f1ea02f8ef3162aa6375ff4b2cedf86f14d34913cb5eba4f3bcb1d7db9d', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 129.435081449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e22ee9ae9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:31:36.000Z'}}, {'blockNum': '0x94df40', 'uniqueId': '0x17b11f1ea02f8ef3162aa6375ff4b2cedf86f14d34913cb5eba4f3bcb1d7db9d:log:79', 'hash': '0x17b11f1ea02f8ef3162aa6375ff4b2cedf86f14d34913cb5eba4f3bcb1d7db9d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 129.435081449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1e22ee9ae9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:31:36.000Z'}}, {'blockNum': '0x94df48', 'uniqueId': '0x14010c749de6022483fb8d31d864439d7b6f95b704c12c07ccdaf5ef7303c2cf:log:44', 'hash': '0x14010c749de6022483fb8d31d864439d7b6f95b704c12c07ccdaf5ef7303c2cf', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 560.286240378, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8273a98e7a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:13.000Z'}}, {'blockNum': '0x94df48', 'uniqueId': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae:log:82', 'hash': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 99.147846686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1715ac141e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:13.000Z'}}, {'blockNum': '0x94df48', 'uniqueId': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae:log:85', 'hash': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 99.147846686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1715ac141e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:13.000Z'}}, {'blockNum': '0x94df48', 'uniqueId': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae:log:87', 'hash': '0xa0027a111ce8d93a050ea976847f2ef1b3162a05a384ebcfc96faaf533d33bae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 99.147846686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1715ac141e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:13.000Z'}}, {'blockNum': '0x94df49', 'uniqueId': '0x1493a656eed2caf10b92f4efea6c65e5efcf7674a480998adba775362164ebd7:log:3', 'hash': '0x1493a656eed2caf10b92f4efea6c65e5efcf7674a480998adba775362164ebd7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2624edafce546781883c26fc9c461d4c8e782ef9', 'value': 2532.804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x024db6e1f900', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:33:22.000Z'}}, {'blockNum': '0x94df50', 'uniqueId': '0xb8d973c38c695a69191ad7a3dbf6291a039b5c3b3c3ee1b08ac5e000abc8036c:log:38', 'hash': '0xb8d973c38c695a69191ad7a3dbf6291a039b5c3b3c3ee1b08ac5e000abc8036c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 241.712559991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x384730f777', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:35:04.000Z'}}, {'blockNum': '0x94df51', 'uniqueId': '0xfe5e59105df09e2412ec1e147de7c59f5936b170aa1efe742568c6990ee074ff:log:24', 'hash': '0xfe5e59105df09e2412ec1e147de7c59f5936b170aa1efe742568c6990ee074ff', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 247.888076236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39b747ddcc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:35:30.000Z'}}, {'blockNum': '0x94df51', 'uniqueId': '0xfe5e59105df09e2412ec1e147de7c59f5936b170aa1efe742568c6990ee074ff:log:26', 'hash': '0xfe5e59105df09e2412ec1e147de7c59f5936b170aa1efe742568c6990ee074ff', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 247.888076236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x39b747ddcc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:35:30.000Z'}}, {'blockNum': '0x94df7b', 'uniqueId': '0xf4431b7e5c3e108f409f1992698711b8d01300c0bb41c3df30d0fc8df7c0a3bf:log:174', 'hash': '0xf4431b7e5c3e108f409f1992698711b8d01300c0bb41c3df30d0fc8df7c0a3bf', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1396.436162798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01452214d8ee', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:44:01.000Z'}}, {'blockNum': '0x94df92', 'uniqueId': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712:log:14', 'hash': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:49:14.000Z'}}, {'blockNum': '0x94df92', 'uniqueId': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712:log:16', 'hash': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:49:14.000Z'}}, {'blockNum': '0x94df92', 'uniqueId': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712:log:21', 'hash': '0xfbb2de4cdc5b1108128d5fe2f46fa98ee356d6043261cb276c7d801b46792712', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 358.472876662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5376a60276', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:49:14.000Z'}}, {'blockNum': '0x94df94', 'uniqueId': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032:log:35', 'hash': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 411.882411345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5fe61ad551', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:50:01.000Z'}}, {'blockNum': '0x94df94', 'uniqueId': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032:log:37', 'hash': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 411.882411345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5fe61ad551', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:50:01.000Z'}}, {'blockNum': '0x94df94', 'uniqueId': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032:log:42', 'hash': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 411.882411345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5fe61ad551', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:50:01.000Z'}}, {'blockNum': '0x94df94', 'uniqueId': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032:log:44', 'hash': '0x923ce0f2896876d9cb160ec4db9cc28d939a055c9c94c390db8d6d4252815032', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 411.882411345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5fe61ad551', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:50:01.000Z'}}, {'blockNum': '0x94df9d', 'uniqueId': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e:log:44', 'hash': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1078.376513039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfb143fbe0f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:52:51.000Z'}}, {'blockNum': '0x94df9d', 'uniqueId': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e:log:46', 'hash': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1078.376513039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xfb143fbe0f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:52:51.000Z'}}, {'blockNum': '0x94df9d', 'uniqueId': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e:log:51', 'hash': '0x6d33071113b99537a92a6db91bd25f8de76d87e9524df80e34178e9e436b714e', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1071.654664783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xf983987a4f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:52:51.000Z'}}, {'blockNum': '0x94dfa6', 'uniqueId': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7:log:14', 'hash': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 322.193229261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b043685cd', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:53:57.000Z'}}, {'blockNum': '0x94dfa6', 'uniqueId': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7:log:16', 'hash': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 322.193221389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b0436670d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:53:57.000Z'}}, {'blockNum': '0x94dfa6', 'uniqueId': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7:log:18', 'hash': '0xe5a3b51d898dcd146ae107145bd1f4801df5ea014d4301288bf33fc9aaba26b7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 322.193221389, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b0436670d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:53:57.000Z'}}, {'blockNum': '0x94dfa8', 'uniqueId': '0xecf96c8c0a95f5913978956f17d8c5c4b534ffa68f1a1613b81a2a79003ad8df:log:28', 'hash': '0xecf96c8c0a95f5913978956f17d8c5c4b534ffa68f1a1613b81a2a79003ad8df', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 223.18296992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x33f6bddc40', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:54:14.000Z'}}, {'blockNum': '0x94dfa9', 'uniqueId': '0x497020f7e1aec3a410657cbaf8642f4a6a3de3e13d6594692ea880d4805f613b:log:3', 'hash': '0x497020f7e1aec3a410657cbaf8642f4a6a3de3e13d6594692ea880d4805f613b', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 223.18296992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x33f6bddc40', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:54:40.000Z'}}, {'blockNum': '0x94dfa9', 'uniqueId': '0x497020f7e1aec3a410657cbaf8642f4a6a3de3e13d6594692ea880d4805f613b:log:5', 'hash': '0x497020f7e1aec3a410657cbaf8642f4a6a3de3e13d6594692ea880d4805f613b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 223.18296992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x33f6bddc40', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:54:40.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c:log:35', 'hash': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 632.453320153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x934127cdd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c:log:37', 'hash': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 632.453320153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x934127cdd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c:log:42', 'hash': '0x3e6491eaa38cc48875ff35c09445ebad4c94a86f224c11f436d2331d4748d48c', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 632.453320153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x934127cdd9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5:log:168', 'hash': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 421.635546769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x622b6fde91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5:log:170', 'hash': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 421.635546769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x622b6fde91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5:log:176', 'hash': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 421.635546769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x622b6fde91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfaa', 'uniqueId': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5:log:178', 'hash': '0x0e2534300e7a5feb60d058045ff339d218540f06aa21622ca57b713776659dc5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 421.635546769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x622b6fde91', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:55:06.000Z'}}, {'blockNum': '0x94dfb0', 'uniqueId': '0x9ca03c69a63f83ad12ffbf291a09276a91428072fc2f0be1f8976b4e1ab4a9c4:log:29', 'hash': '0x9ca03c69a63f83ad12ffbf291a09276a91428072fc2f0be1f8976b4e1ab4a9c4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5688.37, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x052c6d45f080', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:56:49.000Z'}}, {'blockNum': '0x94dfb4', 'uniqueId': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a:log:54', 'hash': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 317.337340769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x49e2c78b61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:57:22.000Z'}}, {'blockNum': '0x94dfb4', 'uniqueId': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a:log:56', 'hash': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 317.337340769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x49e2c78b61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:57:22.000Z'}}, {'blockNum': '0x94dfb4', 'uniqueId': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a:log:60', 'hash': '0xa10e5d7db66dda2ee3ac44a0512584e9179b7608148eb26552023176325e804a', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 317.337340769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x49e2c78b61', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:57:22.000Z'}}, {'blockNum': '0x94dfb8', 'uniqueId': '0x278eaf3e24173ad963ac57e75e482d8dd079262c321afa9fab7f66f6711efcc7:log:32', 'hash': '0x278eaf3e24173ad963ac57e75e482d8dd079262c321afa9fab7f66f6711efcc7', 'from': '0x8e002411fb80b6c9b65e8d271ab26f66fcc7016c', 'to': '0x379d44c14123419dad055beaf79eda54989504d7', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0246139ca800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-27T23:57:59.000Z'}}, {'blockNum': '0x94dfc4', 'uniqueId': '0x1e1e617424ff4218366b5ffac38f13c4a4789c2aa598be453b7bff17c6a266a6:log:82', 'hash': '0x1e1e617424ff4218366b5ffac38f13c4a4789c2aa598be453b7bff17c6a266a6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 424.203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x62c47818c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:00:39.000Z'}}, {'blockNum': '0x94dfc4', 'uniqueId': '0x0c762fd50d3d5cb4ff86f4ae6cd1b0bb46fe84008d483c06b9d3960be1bdd043:log:143', 'hash': '0x0c762fd50d3d5cb4ff86f4ae6cd1b0bb46fe84008d483c06b9d3960be1bdd043', 'from': '0x8bf3af4ef2609199a01d1bcf74f8324db56a00a8', 'to': '0xb9cb20947d73faa2f88fd7c2f379752406a94857', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:00:39.000Z'}}, {'blockNum': '0x94dfca', 'uniqueId': '0x193cb53490cb977589e0f7c9d7c21b010b780251f0dc506e02d6e2119e6de766:log:14', 'hash': '0x193cb53490cb977589e0f7c9d7c21b010b780251f0dc506e02d6e2119e6de766', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 424.203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x62c47818c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:18.000Z'}}, {'blockNum': '0x94dfca', 'uniqueId': '0x193cb53490cb977589e0f7c9d7c21b010b780251f0dc506e02d6e2119e6de766:log:16', 'hash': '0x193cb53490cb977589e0f7c9d7c21b010b780251f0dc506e02d6e2119e6de766', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 424.203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x62c47818c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:18.000Z'}}, {'blockNum': '0x94dfca', 'uniqueId': '0xf18fbe1c96ad2165b7683af691920604fdf8cdd54becf25fbe44b76b1e87bb2d:log:247', 'hash': '0xf18fbe1c96ad2165b7683af691920604fdf8cdd54becf25fbe44b76b1e87bb2d', 'from': '0xb9cb20947d73faa2f88fd7c2f379752406a94857', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:18.000Z'}}, {'blockNum': '0x94dfcc', 'uniqueId': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4:log:198', 'hash': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 346.030708359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5091099687', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:58.000Z'}}, {'blockNum': '0x94dfcc', 'uniqueId': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4:log:203', 'hash': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 346.030708359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5091099687', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:58.000Z'}}, {'blockNum': '0x94dfcc', 'uniqueId': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4:log:204', 'hash': '0xa9211f022d249032049135375aa432ecbda8eca06a8d31381a16a24b9fa864d4', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 346.058688309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5092b48735', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:02:58.000Z'}}, {'blockNum': '0x94dfe5', 'uniqueId': '0xe664cc8e717f1238fc8b22a6f3c98321c32e82659aeee8fb6b8340a07a053303:log:13', 'hash': '0xe664cc8e717f1238fc8b22a6f3c98321c32e82659aeee8fb6b8340a07a053303', 'from': '0x379d44c14123419dad055beaf79eda54989504d7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0246139ca800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:14.000Z'}}, {'blockNum': '0x94dfe5', 'uniqueId': '0xfba90f2fad61c09eeafe04560fc0a60f75552fe49cb359139f7efd198ba05f42:log:200', 'hash': '0xfba90f2fad61c09eeafe04560fc0a60f75552fe49cb359139f7efd198ba05f42', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:14.000Z'}}, {'blockNum': '0x94dfe5', 'uniqueId': '0xfba90f2fad61c09eeafe04560fc0a60f75552fe49cb359139f7efd198ba05f42:log:201', 'hash': '0xfba90f2fad61c09eeafe04560fc0a60f75552fe49cb359139f7efd198ba05f42', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:14.000Z'}}, {'blockNum': '0x94dfe6', 'uniqueId': '0x9e0e74e6232b8a78d6094b688d1a1d6619f07205c18421bc6907c1a94e28cb58:log:28', 'hash': '0x9e0e74e6232b8a78d6094b688d1a1d6619f07205c18421bc6907c1a94e28cb58', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 290.58619459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43a849729e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:40.000Z'}}, {'blockNum': '0x94dfe7', 'uniqueId': '0x65636f42c487d71417d2125a9687ae3737bda23b6c38a65213e559c7d00afb7b:log:207', 'hash': '0x65636f42c487d71417d2125a9687ae3737bda23b6c38a65213e559c7d00afb7b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:43.000Z'}}, {'blockNum': '0x94dfe7', 'uniqueId': '0x65636f42c487d71417d2125a9687ae3737bda23b6c38a65213e559c7d00afb7b:log:208', 'hash': '0x65636f42c487d71417d2125a9687ae3737bda23b6c38a65213e559c7d00afb7b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:09:43.000Z'}}, {'blockNum': '0x94dff1', 'uniqueId': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5:log:101', 'hash': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 320.814142758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ab2035526', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:11:36.000Z'}}, {'blockNum': '0x94dff1', 'uniqueId': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5:log:103', 'hash': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 320.814142758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ab2035526', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:11:36.000Z'}}, {'blockNum': '0x94dff1', 'uniqueId': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5:log:108', 'hash': '0xde63ef491216caa4dfd415b9c8809880721360591eca6aabb837b1f09fb886c5', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 320.176654472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4a8c040888', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:11:36.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0xf2180f0313d07a668dd93ad2762e86d7290060196a8fd878c146de52da43158a:log:23', 'hash': '0xf2180f0313d07a668dd93ad2762e86d7290060196a8fd878c146de52da43158a', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0xf2180f0313d07a668dd93ad2762e86d7290060196a8fd878c146de52da43158a:log:24', 'hash': '0xf2180f0313d07a668dd93ad2762e86d7290060196a8fd878c146de52da43158a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0xfad7c365d03822ddfa0c0c700a8b2c82583f1c2f2bbacf9989aaaa066d72356b:log:31', 'hash': '0xfad7c365d03822ddfa0c0c700a8b2c82583f1c2f2bbacf9989aaaa066d72356b', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0xfad7c365d03822ddfa0c0c700a8b2c82583f1c2f2bbacf9989aaaa066d72356b:log:32', 'hash': '0xfad7c365d03822ddfa0c0c700a8b2c82583f1c2f2bbacf9989aaaa066d72356b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0x5a3943178de4d31065e4b131023346638fa9b8a78cfcdb2d97f35c9433feb588:log:39', 'hash': '0x5a3943178de4d31065e4b131023346638fa9b8a78cfcdb2d97f35c9433feb588', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94dffa', 'uniqueId': '0x5a3943178de4d31065e4b131023346638fa9b8a78cfcdb2d97f35c9433feb588:log:40', 'hash': '0x5a3943178de4d31065e4b131023346638fa9b8a78cfcdb2d97f35c9433feb588', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:14:15.000Z'}}, {'blockNum': '0x94e004', 'uniqueId': '0x8b7fb019f7cf70417293892c73d98d87961c86aa246a819b0956572f7ddb4e3d:log:151', 'hash': '0x8b7fb019f7cf70417293892c73d98d87961c86aa246a819b0956572f7ddb4e3d', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:16:14.000Z'}}, {'blockNum': '0x94e004', 'uniqueId': '0x8b7fb019f7cf70417293892c73d98d87961c86aa246a819b0956572f7ddb4e3d:log:152', 'hash': '0x8b7fb019f7cf70417293892c73d98d87961c86aa246a819b0956572f7ddb4e3d', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:16:14.000Z'}}, {'blockNum': '0x94e008', 'uniqueId': '0xa4238cfea91220f405a01fbaf94ee61d285b5e95ac44bf7e87e67ab2f8884638:log:33', 'hash': '0xa4238cfea91220f405a01fbaf94ee61d285b5e95ac44bf7e87e67ab2f8884638', 'from': '0x88eaaa81e689abb337bc2d1db7aa7a39d2af98cb', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:17:20.000Z'}}, {'blockNum': '0x94e008', 'uniqueId': '0xa4238cfea91220f405a01fbaf94ee61d285b5e95ac44bf7e87e67ab2f8884638:log:34', 'hash': '0xa4238cfea91220f405a01fbaf94ee61d285b5e95ac44bf7e87e67ab2f8884638', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:17:20.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:89', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 42.33997605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09dba8c372', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:102', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 25.411384609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05eaa2f521', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:107', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 25.411384609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x05eaa2f521', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:108', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 358.598211607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x537e1e7817', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:110', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 358.598211607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x537e1e7817', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08:log:115', 'hash': '0x6464b3ba1caf366c4603740807e4235dfc9597ee6dc1c2c4fe8e26097e196e08', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 426.349572266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x63446a30aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x162ac6006fa6a3279bae0bb2f3db3b6761b832e7e7e2fd866da94fa71298feaa:log:142', 'hash': '0x162ac6006fa6a3279bae0bb2f3db3b6761b832e7e7e2fd866da94fa71298feaa', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e00e', 'uniqueId': '0x162ac6006fa6a3279bae0bb2f3db3b6761b832e7e7e2fd866da94fa71298feaa:log:143', 'hash': '0x162ac6006fa6a3279bae0bb2f3db3b6761b832e7e7e2fd866da94fa71298feaa', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:19:22.000Z'}}, {'blockNum': '0x94e012', 'uniqueId': '0xfb477eae2d6507f284ed8d59c0ce36ddbd9a167000742fc50e485b69392ada2a:log:0', 'hash': '0xfb477eae2d6507f284ed8d59c0ce36ddbd9a167000742fc50e485b69392ada2a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5446.78713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04f42dcfe290', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:20:23.000Z'}}, {'blockNum': '0x94e026', 'uniqueId': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7:log:78', 'hash': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 321.451310866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ad7fdbf12', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:25:24.000Z'}}, {'blockNum': '0x94e026', 'uniqueId': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7:log:80', 'hash': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 321.451310866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ad7fdbf12', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:25:24.000Z'}}, {'blockNum': '0x94e026', 'uniqueId': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7:log:85', 'hash': '0xfe2d923e56365336f3b46fe700679322a8bd93ad610ccfc1891b5d9df77ae0c7', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 321.450989414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ad7f8d766', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:25:24.000Z'}}, {'blockNum': '0x94e028', 'uniqueId': '0x0a7c756fc6bfddbb946e9ea6f28613a3a16dc3dc85e9f8655b108a0181ff69c3:log:16', 'hash': '0x0a7c756fc6bfddbb946e9ea6f28613a3a16dc3dc85e9f8655b108a0181ff69c3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1b29b9e57f715f36383aaf74618781c2cac610c7', 'value': 769.608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xb330362200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:26:10.000Z'}}, {'blockNum': '0x94e037', 'uniqueId': '0x7f5f9c481a39abd49b5a83c65602934270aa41e3ec3f06e96dfa54b6142604bb:log:0', 'hash': '0x7f5f9c481a39abd49b5a83c65602934270aa41e3ec3f06e96dfa54b6142604bb', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5446.78713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04f42dcfe290', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:29:08.000Z'}}, {'blockNum': '0x94e0b2', 'uniqueId': '0x1bf2e9a5afe826b1ef72443ebc80fd0bcfb18d54f65e72b69ce466a5be92a4ab:log:105', 'hash': '0x1bf2e9a5afe826b1ef72443ebc80fd0bcfb18d54f65e72b69ce466a5be92a4ab', 'from': '0x242331a4f5ef4d6c581d7e415cc6de12d09bc8b3', 'to': '0x4e55c9b8953ab1957ad0a59d413631a66798c6a2', 'value': 12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02cb417800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T00:55:25.000Z'}}, {'blockNum': '0x94e0cf', 'uniqueId': '0xe85da37a36c076eaa727102aee2ca3ae7ad5f0c36b740f2b9c0a3c70c74f24dc:log:26', 'hash': '0xe85da37a36c076eaa727102aee2ca3ae7ad5f0c36b740f2b9c0a3c70c74f24dc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x51b912e07894f9266ba08f150e73fd692cf40b81', 'value': 503.24474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x752bb955a0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:01:04.000Z'}}, {'blockNum': '0x94e0e0', 'uniqueId': '0x4727fbcded9dc62f9f32d4af9b457fb93328db8150a3317be5341678ed71dae7:log:31', 'hash': '0x4727fbcded9dc62f9f32d4af9b457fb93328db8150a3317be5341678ed71dae7', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 306.131729306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4746df7b9a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:04:58.000Z'}}, {'blockNum': '0x94e119', 'uniqueId': '0x15fb326ef1794b05584695861adfda147db7e018a9fc7c4a8f025b5038ee1eb6:log:56', 'hash': '0x15fb326ef1794b05584695861adfda147db7e018a9fc7c4a8f025b5038ee1eb6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8a31b86e8561c727cf36a660dd6869e4eaf18e4f', 'value': 9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0218711a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:17:10.000Z'}}, {'blockNum': '0x94e120', 'uniqueId': '0xfe52a0c2f51e2e560dc9164ca32e88a05e9e88118fb78acecb4eca0cd5649dd0:log:25', 'hash': '0xfe52a0c2f51e2e560dc9164ca32e88a05e9e88118fb78acecb4eca0cd5649dd0', 'from': '0x7871a803f0099a6215066778ef21d2e7be42e4c1', 'to': '0x4bb921c646a2d7ffeb9830586eae0e37d1e9704e', 'value': 207.884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3066da1b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:18:45.000Z'}}, {'blockNum': '0x94e151', 'uniqueId': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b:log:88', 'hash': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b', 'from': '0xef422dbbf46120de627ffb913c9afad44c735618', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3db33b1a00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:28:28.000Z'}}, {'blockNum': '0x94e151', 'uniqueId': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b:log:90', 'hash': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 116.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1b25e6ce00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:28:28.000Z'}}, {'blockNum': '0x94e151', 'uniqueId': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b:log:93', 'hash': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 148.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x228d544c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:28:28.000Z'}}, {'blockNum': '0x94e151', 'uniqueId': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b:log:95', 'hash': '0x066c462d67d63e7e991b653b38b1c0681e6161c90bc27e7dfb5c8db9e9c2c98b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 148.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x228d544c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:28:28.000Z'}}, {'blockNum': '0x94e155', 'uniqueId': '0x94db820f6d98e736c6e6d7212333b143f7d14c1ff757c843a8b8e7c076f73b65:log:12', 'hash': '0x94db820f6d98e736c6e6d7212333b143f7d14c1ff757c843a8b8e7c076f73b65', 'from': '0x4bb921c646a2d7ffeb9830586eae0e37d1e9704e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 207.884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3066da1b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:29:20.000Z'}}, {'blockNum': '0x94e157', 'uniqueId': '0x5151ca7c1c46a9dcbb239ba7b24e1667ffc8e6fcbb7b85eda7caafede9155c86:log:78', 'hash': '0x5151ca7c1c46a9dcbb239ba7b24e1667ffc8e6fcbb7b85eda7caafede9155c86', 'from': '0x2eebd0e324dd36553e8d80d02e4d0ac88f20668e', 'to': '0x4ecc7e9ca50032177731640c6ce9ce7118306d61', 'value': 485.244826529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70fad873a1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:29:24.000Z'}}, {'blockNum': '0x94e162', 'uniqueId': '0x7bbb92e8f2ac1d62d9be45ef746373e3caa279f6fb83703521a78bb569eb705a:log:82', 'hash': '0x7bbb92e8f2ac1d62d9be45ef746373e3caa279f6fb83703521a78bb569eb705a', 'from': '0xed49854c0e40c3eb686af34a2760956d86945942', 'to': '0x493d8ccf45efcd6d73fe495982b5f35259183582', 'value': 297.56046642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4547fc63f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:30:56.000Z'}}, {'blockNum': '0x94e165', 'uniqueId': '0x903ef4ff67b94a2b1ee860247dbc50cc0a6b025b9c9b3fac0098ccad1cb30b51:log:8', 'hash': '0x903ef4ff67b94a2b1ee860247dbc50cc0a6b025b9c9b3fac0098ccad1cb30b51', 'from': '0x493d8ccf45efcd6d73fe495982b5f35259183582', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 297.56046642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4547fc63f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:31:56.000Z'}}, {'blockNum': '0x94e17d', 'uniqueId': '0x10ddf036052c127570e937f9d6a6261afb9873a57e795691e61c4d1d6985bdbd:log:65', 'hash': '0x10ddf036052c127570e937f9d6a6261afb9873a57e795691e61c4d1d6985bdbd', 'from': '0x4ecc7e9ca50032177731640c6ce9ce7118306d61', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 485.244826529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x70fad873a1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:35:19.000Z'}}, {'blockNum': '0x94e182', 'uniqueId': '0xd41c358e70bd4689de3e07cf83b9cf7ff224db689f4ebd06b313f9763dcd13c6:log:35', 'hash': '0xd41c358e70bd4689de3e07cf83b9cf7ff224db689f4ebd06b313f9763dcd13c6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x505d081d3d71d8d90872e147f916788133819498', 'value': 823.4686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xbfba8daac0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:37:44.000Z'}}, {'blockNum': '0x94e187', 'uniqueId': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611:log:35', 'hash': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 171.100876137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x27d6682d69', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:38:58.000Z'}}, {'blockNum': '0x94e187', 'uniqueId': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611:log:37', 'hash': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 171.100876137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x27d6682d69', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:38:58.000Z'}}, {'blockNum': '0x94e187', 'uniqueId': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611:log:41', 'hash': '0xf5fae7b1eae0508db5776bd79a833f8853269e4810f8f018b950c2042bacd611', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 171.100876137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x27d6682d69', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:38:58.000Z'}}, {'blockNum': '0x94e189', 'uniqueId': '0xd6877452d6926e1b1ead8b4a9e6c7c9186d1ad6a0ba03ae0bfeb620a8f3205b2:log:44', 'hash': '0xd6877452d6926e1b1ead8b4a9e6c7c9186d1ad6a0ba03ae0bfeb620a8f3205b2', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 297.56046642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4547fc63f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:39:04.000Z'}}, {'blockNum': '0x94e191', 'uniqueId': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0:log:31', 'hash': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 214.72565265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31fea570aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:41:25.000Z'}}, {'blockNum': '0x94e191', 'uniqueId': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0:log:33', 'hash': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 214.72565265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31fea570aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:41:25.000Z'}}, {'blockNum': '0x94e191', 'uniqueId': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0:log:39', 'hash': '0xf1e6a896c3c3bb12e010b0a71642ace2749c6eb356fd8c1a240e929c1da8e8d0', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 214.72565265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x31fea570aa', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:41:25.000Z'}}, {'blockNum': '0x94e1a6', 'uniqueId': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913:log:113', 'hash': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 185.079155641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1793cbb9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:47:03.000Z'}}, {'blockNum': '0x94e1a6', 'uniqueId': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913:log:115', 'hash': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 185.079155641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1793cbb9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:47:03.000Z'}}, {'blockNum': '0x94e1a6', 'uniqueId': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913:log:120', 'hash': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 185.078970561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1790f8c1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:47:03.000Z'}}, {'blockNum': '0x94e1a6', 'uniqueId': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913:log:122', 'hash': '0xa046a5e3ca5919c9ff02e3e8d4496d34cfd19871674b4e317059cb2b7e80f913', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 185.078970561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b1790f8c1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:47:03.000Z'}}, {'blockNum': '0x94e1b7', 'uniqueId': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59:log:227', 'hash': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 171.950433616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x28090b6550', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:52:30.000Z'}}, {'blockNum': '0x94e1b7', 'uniqueId': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59:log:229', 'hash': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 171.950433616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x28090b6550', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:52:30.000Z'}}, {'blockNum': '0x94e1b7', 'uniqueId': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59:log:233', 'hash': '0x44a536661e41cd2478d3a581e94d83ed855df9a9a147b6aef0479387151b5e59', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 171.950433616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x28090b6550', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T01:52:30.000Z'}}, {'blockNum': '0x94e21e', 'uniqueId': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549:log:62', 'hash': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 323.999983301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b6fe766c5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:13:50.000Z'}}, {'blockNum': '0x94e21e', 'uniqueId': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549:log:64', 'hash': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 323.999983301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b6fe766c5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:13:50.000Z'}}, {'blockNum': '0x94e21e', 'uniqueId': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549:log:68', 'hash': '0xe73ebf1fac3c42d5dcd8b0aec04a4069a02cbebe836901e7888db24c9cf4d549', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 323.999983301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4b6fe766c5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:13:50.000Z'}}, {'blockNum': '0x94e255', 'uniqueId': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1:log:127', 'hash': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 173.479637077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2864313055', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:24:22.000Z'}}, {'blockNum': '0x94e255', 'uniqueId': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1:log:129', 'hash': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 173.479637077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2864313055', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:24:22.000Z'}}, {'blockNum': '0x94e255', 'uniqueId': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1:log:133', 'hash': '0xaa155cbe2d592901f8d4af671a3f3c159a75ed2c43c8642b702f8ee6366167f1', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 173.479637077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2864313055', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:24:22.000Z'}}, {'blockNum': '0x94e25f', 'uniqueId': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80:log:36', 'hash': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 217.061935715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3289e64a63', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:26:20.000Z'}}, {'blockNum': '0x94e25f', 'uniqueId': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80:log:38', 'hash': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'value': 217.061935715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3289e64a63', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:26:20.000Z'}}, {'blockNum': '0x94e25f', 'uniqueId': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80:log:44', 'hash': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80', 'from': '0x514fd3b8109cfb7cde4b17e4912fd56690c23145', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 217.061935715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3289e64a63', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:26:20.000Z'}}, {'blockNum': '0x94e25f', 'uniqueId': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80:log:46', 'hash': '0xf3e7391b1fb7cb1c36eb62c8865fbd87f205177f41246f7c241af5a59b578a80', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 217.061935715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3289e64a63', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:26:20.000Z'}}, {'blockNum': '0x94e278', 'uniqueId': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93:log:66', 'hash': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 173.649548572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x286e51d51c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:31:43.000Z'}}, {'blockNum': '0x94e278', 'uniqueId': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93:log:68', 'hash': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 173.649548572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x286e51d51c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:31:43.000Z'}}, {'blockNum': '0x94e278', 'uniqueId': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93:log:72', 'hash': '0xe1fb71b339fdf64daa6493a41a30ce019a45502eea3217c4a561ddbc179e0a93', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 173.649548572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x286e51d51c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:31:43.000Z'}}, {'blockNum': '0x94e2c2', 'uniqueId': '0xf87458595914582a0cf12653006dd9c45b0a58fe8685167831ee4c69e336a73f:log:92', 'hash': '0xf87458595914582a0cf12653006dd9c45b0a58fe8685167831ee4c69e336a73f', 'from': '0x91ebfee4f90adb3c64d5f171cd8d1efece9cfad8', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 11.823529411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02c0bcbdc3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-03-28T02:45:42.000Z'}}]}}
Number of returned transfers:  899
Answer is complete
 
symbol             DLT
group               CW
date        2020-03-28
hour             12:00
exchange       binance
Name: 891, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2020-03-28 12:00:00 2020-03-28 00:00:00 2020-03-29 00:00:00
Unix timestamps:  1585350000.0 1585436400.0
Hex Block Numbers:  0x94dea7 0x94f820
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x94ea1f', 'uniqueId': '0x147603412fde1b00aba471b411aa419865d44396469038f32b9c2c8a0385629d:log:68', 'hash': '0x147603412fde1b00aba471b411aa419865d44396469038f32b9c2c8a0385629d', 'from': '0x23556cf8e8997f723d48ab113dabed619e7a9786', 'to': '0x174fe5029ef15572e589862fdb773eb2c501eca9', 'value': 684.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x251f8253c62b800000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T09:48:56.000Z'}}, {'blockNum': '0x94eab2', 'uniqueId': '0x93e9d82a377ebc973acd725b66fc983b1eb2ef02384b6efe950e7af905d2c69c:log:172', 'hash': '0x93e9d82a377ebc973acd725b66fc983b1eb2ef02384b6efe950e7af905d2c69c', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 35972.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x079e0d2bb9a55d1a0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T10:22:25.000Z'}}, {'blockNum': '0x94eab3', 'uniqueId': '0x0b5143e5b33b10c3588584c172f4712d9e817b253b3ab90d53caa48c0f2831ee:log:53', 'hash': '0x0b5143e5b33b10c3588584c172f4712d9e817b253b3ab90d53caa48c0f2831ee', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 27670.8671169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x05dc0a6c1c4885d4e800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T10:22:56.000Z'}}, {'blockNum': '0x94eabe', 'uniqueId': '0xeddefc03d1444fa09babd0c526020ea7138e57a78236bd00993813e957e2dcc4:log:53', 'hash': '0xeddefc03d1444fa09babd0c526020ea7138e57a78236bd00993813e957e2dcc4', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 53470.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0b529eb3ad44c6420000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T10:26:14.000Z'}}, {'blockNum': '0x94eac0', 'uniqueId': '0x664e44569e07e8baf86b7809e5198090ca283029a46d7cc13b197588ca68e212:log:32', 'hash': '0x664e44569e07e8baf86b7809e5198090ca283029a46d7cc13b197588ca68e212', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x476ec61a27431dcf120f72b7a9f241ce61daa44c', 'value': 41130.8671169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x08b5b5723a259ba4e800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T10:26:36.000Z'}}, {'blockNum': '0x94eae1', 'uniqueId': '0xce1078be8b8cfdfc2440997ae974f00ae6420bbd46eea732fbb4ca958ca33c05:log:12', 'hash': '0xce1078be8b8cfdfc2440997ae974f00ae6420bbd46eea732fbb4ca958ca33c05', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27670.8671169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x05dc0a6c1c4885d4e800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T10:33:06.000Z'}}, {'blockNum': '0x94eae1', 'uniqueId': '0xd7ed4ef88d4f3a9cd5a35e67d69e9c79ef042ea8ee7d3928baa65090253d2c61:log:14', 'hash': '0xd7ed4ef88d4f3a9cd5a35e67d69e9c79ef042ea8ee7d3928baa65090253d2c61', 'from': '0x476ec61a27431dcf120f72b7a9f241ce61daa44c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41130.8671169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x08b5b5723a259ba4e800', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T10:33:06.000Z'}}, {'blockNum': '0x94f737', 'uniqueId': '0xd3e3cb957e8c909c6986ac69f1f05da4c41bf2cb6953a617718930299682451c:log:7', 'hash': '0xd3e3cb957e8c909c6986ac69f1f05da4c41bf2cb6953a617718930299682451c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xcc964d51523c91ebfe916664742c3c01db5b1c1b', 'value': 6143.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x014d0f967dc7edee8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-28T22:10:46.000Z'}}]}}
Number of returned transfers:  8
Answer is complete
 
symbol           SNGLS
group               CW
date        2020-04-01
hour             11:58
exchange       binance
Name: 892, dtype: object
HERE
 Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps:  2020-04-01 11:58:00 2020-03-31 23:58:00 2020-04-01 23:58:00
Unix timestamps:  1585691880.0 1585778280.0
Hex Block Numbers:  0x954309 0x955cc6
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x95443a', 'uniqueId': '0x0759ab3c17d8995c39a713f2735325762209cbaadc962888539ae04800ad5958:log:17', 'hash': '0x0759ab3c17d8995c39a713f2735325762209cbaadc962888539ae04800ad5958', 'from': '0x95c703e331d21e9de9bfc27b837c68e7fe0a5bf0', 'to': '0xded96330450c239392dfbcf1df6733ac0fb1e754', 'value': 79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x4f', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-03-31T23:03:35.000Z'}}, {'blockNum': '0x954958', 'uniqueId': '0x820534eba6f17e9d3dca5040311be521fc50116ebbca6604ce4346d22a46466d:log:61', 'hash': '0x820534eba6f17e9d3dca5040311be521fc50116ebbca6604ce4346d22a46466d', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x2e152fdc5f7b00d4ef22bac3bfbb141991797b51', 'value': 965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x03c5', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-04-01T03:46:24.000Z'}}, {'blockNum': '0x955134', 'uniqueId': '0xba25aa0f6ac94904c368a2960e87a26995533eb50628fa20bdb7b0f9afa9ea8b:log:119', 'hash': '0xba25aa0f6ac94904c368a2960e87a26995533eb50628fa20bdb7b0f9afa9ea8b', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xfa13fe9a191ede4da3dd50706999286c65216ea7', 'value': 14766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x39ae', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-04-01T11:05:03.000Z'}}, {'blockNum': '0x95515d', 'uniqueId': '0x893409555188df891478a52c679952e43d81bdcc21c50a61cbe3690af4a6acde:log:8', 'hash': '0x893409555188df891478a52c679952e43d81bdcc21c50a61cbe3690af4a6acde', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xc689e865f4b6f989fe202e81224f4fd3a6abb52b', 'value': 100080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0186f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-04-01T11:15:04.000Z'}}, {'blockNum': '0x95516f', 'uniqueId': '0x838301acec8aa312694d7f5006e627dd741160fd637dae2a0dec2b7b52d82aa8:log:31', 'hash': '0x838301acec8aa312694d7f5006e627dd741160fd637dae2a0dec2b7b52d82aa8', 'from': '0xfa13fe9a191ede4da3dd50706999286c65216ea7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x39ae', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-04-01T11:18:36.000Z'}}, {'blockNum': '0x95516f', 'uniqueId': '0xf56e784196797e85ce0bb870648dcb4aca19eff00935169a4f89e995019a9aee:log:54', 'hash': '0xf56e784196797e85ce0bb870648dcb4aca19eff00935169a4f89e995019a9aee', 'from': '0xc689e865f4b6f989fe202e81224f4fd3a6abb52b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0186f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-04-01T11:18:36.000Z'}}, {'blockNum': '0x955a4a', 'uniqueId': '0xfb020016a6bc2008354a77001af08f4b38328610ccc65b4c5e668b9e2bcf4f19:log:7', 'hash': '0xfb020016a6bc2008354a77001af08f4b38328610ccc65b4c5e668b9e2bcf4f19', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xfa13fe9a191ede4da3dd50706999286c65216ea7', 'value': 198569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0307a9', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-04-01T19:48:02.000Z'}}, {'blockNum': '0x955a79', 'uniqueId': '0x1b9ad71554c60d43138398f96cf0c19062b6daf90079f49da1774360839b2df3:log:9', 'hash': '0x1b9ad71554c60d43138398f96cf0c19062b6daf90079f49da1774360839b2df3', 'from': '0xfa13fe9a191ede4da3dd50706999286c65216ea7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0307a9', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-04-01T19:59:12.000Z'}}, {'blockNum': '0x955ac6', 'uniqueId': '0x007498518697cf2954b8d78c817d89ec5ce64a0b0698fd2bb4b7bbbf63839ab9:log:57', 'hash': '0x007498518697cf2954b8d78c817d89ec5ce64a0b0698fd2bb4b7bbbf63839ab9', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0xe228d09b275e9434675f8c9b1dffb0e5467852b2', 'value': 598768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0922f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-04-01T20:14:04.000Z'}}, {'blockNum': '0x955ade', 'uniqueId': '0x2c977308f88b5082db081935cb71d23dd9434f026ec084ecc0d2cb0bbef725f3:log:13', 'hash': '0x2c977308f88b5082db081935cb71d23dd9434f026ec084ecc0d2cb0bbef725f3', 'from': '0xe228d09b275e9434675f8c9b1dffb0e5467852b2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 598768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0922f0', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-04-01T20:19:03.000Z'}}]}}
Number of returned transfers:  10
Answer is complete
 
symbol             GRS
group               CW
date        2020-04-02
hour             15:59
exchange       binance
Name: 893, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: GRS, Contract: 
Datetime timestamps:  2020-04-02 15:59:00 2020-04-02 03:59:00 2020-04-03 03:59:00
Unix timestamps:  1585792740.0 1585879140.0
Hex Block Numbers:  0x9560f7 0x957a42
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GNT
group               CW
date        2020-04-10
hour             16:00
exchange       binance
Name: 894, dtype: object
HERE
{'binance-smart-chain': '0xf750a26eb0acf95556e8529e72ed530f3b60f348'}
No contract for ethereum specified
 Symbol: GNT, Contract: 
Datetime timestamps:  2020-04-10 16:00:00 2020-04-10 04:00:00 2020-04-11 04:00:00
Unix timestamps:  1586484000.0 1586570400.0
Hex Block Numbers:  0x962c29 0x96454f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            VITE
group               CW
date        2020-04-13
hour             11:58
exchange       binance
Name: 895, dtype: object
HERE
 Symbol: VITE, Contract: 0xadd5e881984783dd432f80381fb52f45b53f3e70
Datetime timestamps:  2020-04-13 11:58:00 2020-04-12 23:58:00 2020-04-13 23:58:00
Unix timestamps:  1586728680.0 1586815080.0
Hex Block Numbers:  0x9673fe 0x968d64
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            MITH
group               CW
date        2020-04-14
hour             16:00
exchange       binance
Name: 896, dtype: object
HERE
 Symbol: MITH, Contract: 0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb
Datetime timestamps:  2020-04-14 16:00:00 2020-04-14 04:00:00 2020-04-15 04:00:00
Unix timestamps:  1586829600.0 1586916000.0
Hex Block Numbers:  0x9691b2 0x96ab19
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x969818', 'uniqueId': '0x1e12e2b4b2d3dc9c52ac5ca185b9ae7476629e28ab93f76e4e4c7ad5f0b644f5:log:26', 'hash': '0x1e12e2b4b2d3dc9c52ac5ca185b9ae7476629e28ab93f76e4e4c7ad5f0b644f5', 'from': '0x28c9ebbf537233efaf00e7e4f9b1dde2b239e288', 'to': '0x9fb5d397de4f3520491871aa7d92ee89f995b69a', 'value': 147824.955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x1f4d9b5bb252503f8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T08:03:57.000Z'}}, {'blockNum': '0x969ce7', 'uniqueId': '0x80fac519c5db6ea057776865bf78d932ebbcf2d4de4f6b8e8f29f2492efc6e75:log:4', 'hash': '0x80fac519c5db6ea057776865bf78d932ebbcf2d4de4f6b8e8f29f2492efc6e75', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 47300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0a04235d01dc08900000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:26:34.000Z'}}, {'blockNum': '0x969cf1', 'uniqueId': '0x67a3986782b31f57b9c7a3f3ce7f48c1552ea42bb39ca57431eb3886edd119dc:log:12', 'hash': '0x67a3986782b31f57b9c7a3f3ce7f48c1552ea42bb39ca57431eb3886edd119dc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 29900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0654e1daff02b3b00000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:27:54.000Z'}}, {'blockNum': '0x969d05', 'uniqueId': '0xfffa8100b36cef14f3340ee420a8fa53361061765913c3e2707a1692eb959704:log:15', 'hash': '0xfffa8100b36cef14f3340ee420a8fa53361061765913c3e2707a1692eb959704', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xbe84eac3f62657f54f1da954c0ca5b30ee44546b', 'value': 103560.634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x15ee0880ff3ed0b90000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:30:59.000Z'}}, {'blockNum': '0x969d06', 'uniqueId': '0x5202e102dc27872f09145e299ea759b31e207b9795f6df3ed7c96b6603d7f02f:log:5', 'hash': '0x5202e102dc27872f09145e299ea759b31e207b9795f6df3ed7c96b6603d7f02f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 32148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x06cebf1f589899d00000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:31:37.000Z'}}, {'blockNum': '0x969d09', 'uniqueId': '0xc7f3ea0e88659360b6ab0fa13421b7c95bdd8533837d4769c16b275ca21ddbd8:log:34', 'hash': '0xc7f3ea0e88659360b6ab0fa13421b7c95bdd8533837d4769c16b275ca21ddbd8', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 28806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0619938e3b455e580000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:32:28.000Z'}}, {'blockNum': '0x969d16', 'uniqueId': '0xe2d2664957f870c7514680ccc352a0534db37358dc871d883dca939c2689df3d:log:8', 'hash': '0xe2d2664957f870c7514680ccc352a0534db37358dc871d883dca939c2689df3d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xebf1e5c83f0ac80b4fea79c4ab8c33ea5b48febf', 'value': 359572.166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x4c247238aa040e870000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:35:41.000Z'}}, {'blockNum': '0x969d1b', 'uniqueId': '0x25bca96c22824147ce19662c577fb67e7c2ef782206fc24873d27fdcfc8e3e39:log:109', 'hash': '0x25bca96c22824147ce19662c577fb67e7c2ef782206fc24873d27fdcfc8e3e39', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 111111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x178756e190b11bbc0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:36:45.000Z'}}, {'blockNum': '0x969d21', 'uniqueId': '0xa4d2cf5697982680a821dfdb71f7d384d39db6c16e32afcc149835f626bb9584:log:9', 'hash': '0xa4d2cf5697982680a821dfdb71f7d384d39db6c16e32afcc149835f626bb9584', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 74226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0fb7ccad85cc20880000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:38:04.000Z'}}, {'blockNum': '0x969d22', 'uniqueId': '0xdbe48675a1b9a88e5961438b09d4a454ec0e7b3be2ca44ae7f9a239fb3995c2f:log:11', 'hash': '0xdbe48675a1b9a88e5961438b09d4a454ec0e7b3be2ca44ae7f9a239fb3995c2f', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 31861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x06bf3032852ff0b40000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:38:26.000Z'}}, {'blockNum': '0x969d28', 'uniqueId': '0x1c75665768fcf8536dc6c6a100a80df2cafe5b0e2d5704d3d60420aca07bd06f:log:79', 'hash': '0x1c75665768fcf8536dc6c6a100a80df2cafe5b0e2d5704d3d60420aca07bd06f', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x06cebf1f589899d00000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:39:35.000Z'}}, {'blockNum': '0x969d2e', 'uniqueId': '0x48794ebe13d6fedb8b6d3c3722e133b04b70cbb8ba08cde0168f088191163510:log:44', 'hash': '0x48794ebe13d6fedb8b6d3c3722e133b04b70cbb8ba08cde0168f088191163510', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:41:58.000Z'}}, {'blockNum': '0x969d3b', 'uniqueId': '0x0a24f53ad94aa7f2cadfb66ad2e49c0171c302da0eeb154080d39370226474d4:log:87', 'hash': '0x0a24f53ad94aa7f2cadfb66ad2e49c0171c302da0eeb154080d39370226474d4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7c762febdc507d84f5cc183dccb6377c16a26b16', 'value': 227121.757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x30184b8cd8dbc51c8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:45:21.000Z'}}, {'blockNum': '0x969d3c', 'uniqueId': '0xebf2f5859c7812fdc621da75bdadb8aacb69cab97baa24ede75c54f22240ceb7:log:24', 'hash': '0xebf2f5859c7812fdc621da75bdadb8aacb69cab97baa24ede75c54f22240ceb7', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 40906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x08a984c9beb930e80000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:45:29.000Z'}}, {'blockNum': '0x969d3c', 'uniqueId': '0xa615577ff7949e2c0942896f5cd005488241035d6c5dfe65cbf26d43bbb87db2:log:25', 'hash': '0xa615577ff7949e2c0942896f5cd005488241035d6c5dfe65cbf26d43bbb87db2', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:45:29.000Z'}}, {'blockNum': '0x969d4f', 'uniqueId': '0xb6ed9d49aa988b6fd837e6f0d734f0af344478909bda0316a4346e51df272b6a:log:30', 'hash': '0xb6ed9d49aa988b6fd837e6f0d734f0af344478909bda0316a4346e51df272b6a', 'from': '0xebf1e5c83f0ac80b4fea79c4ab8c33ea5b48febf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 359572.166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x4c247238aa040e870000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:49:06.000Z'}}, {'blockNum': '0x969d51', 'uniqueId': '0xc8bdcc488fc6d0c4f0ef8a0872f4def005457a7a152d1ced547094eaed10f04c:log:44', 'hash': '0xc8bdcc488fc6d0c4f0ef8a0872f4def005457a7a152d1ced547094eaed10f04c', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 355110.28845156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x4b32913b43c0058d1000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:49:37.000Z'}}, {'blockNum': '0x969d52', 'uniqueId': '0xa4fbe0546cffce602058546ca041a5b2d677d67eeef4b5f678eb00a55e446c24:log:29', 'hash': '0xa4fbe0546cffce602058546ca041a5b2d677d67eeef4b5f678eb00a55e446c24', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:49:38.000Z'}}, {'blockNum': '0x969d52', 'uniqueId': '0xe3192cf48f074c327a2c3bfca0c7f0b3e2fe376dfe98668effd8b2c8c88af1b7:log:33', 'hash': '0xe3192cf48f074c327a2c3bfca0c7f0b3e2fe376dfe98668effd8b2c8c88af1b7', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 74226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0fb7ccad85cc20880000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:49:38.000Z'}}, {'blockNum': '0x969d53', 'uniqueId': '0x5abb6a8455404fb7987b1f4efbbb485ae7520285282399f941f7279039eb7893:log:89', 'hash': '0x5abb6a8455404fb7987b1f4efbbb485ae7520285282399f941f7279039eb7893', 'from': '0x7c762febdc507d84f5cc183dccb6377c16a26b16', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 227121.757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x30184b8cd8dbc51c8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:50:16.000Z'}}, {'blockNum': '0x969d54', 'uniqueId': '0xa6759e0d27264d417bb4b143ad6f78823766d2ceff472a3b7b1d83d7200ac7c8:log:17', 'hash': '0xa6759e0d27264d417bb4b143ad6f78823766d2ceff472a3b7b1d83d7200ac7c8', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 49385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0a752a8d070e5a040000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:50:53.000Z'}}, {'blockNum': '0x969d6c', 'uniqueId': '0x3f84e9ca05eb9c5a8ffbb8cc899e07684d658030951f5efe3c2f44498449ee67:log:24', 'hash': '0x3f84e9ca05eb9c5a8ffbb8cc899e07684d658030951f5efe3c2f44498449ee67', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01a784379d99db42000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:56:00.000Z'}}, {'blockNum': '0x969d78', 'uniqueId': '0x630a174f6f2fcbf3e3d056afff04d6efe317537e84f8c128bde145aa19cf7bbd:log:41', 'hash': '0x630a174f6f2fcbf3e3d056afff04d6efe317537e84f8c128bde145aa19cf7bbd', 'from': '0x38b78904a6b44f63eb81d98937fc6614870cfbb9', 'to': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:58:01.000Z'}}, {'blockNum': '0x969d81', 'uniqueId': '0x6de3f6d068761858c9f32f3ab9c8438004b90b694d2866a2115876be2e4dff5f:log:14', 'hash': '0x6de3f6d068761858c9f32f3ab9c8438004b90b694d2866a2115876be2e4dff5f', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x95d5c96f6582087587c870a2ee89a2bfe441dbdf', 'value': 56611.859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0bfcef5dda041cbb8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:59:57.000Z'}}, {'blockNum': '0x969d81', 'uniqueId': '0xe514daf3bf9d4edfb477685de31180f79e97b8e71726405bc1591f9f8e5b2d27:log:15', 'hash': '0xe514daf3bf9d4edfb477685de31180f79e97b8e71726405bc1591f9f8e5b2d27', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 64685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0db294b4502e8e940000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:59:57.000Z'}}, {'blockNum': '0x969d82', 'uniqueId': '0xba8c7a5f717b5a61a706cfcccbbf52f269778d502fc4c09c78354ecc117331d1:log:11', 'hash': '0xba8c7a5f717b5a61a706cfcccbbf52f269778d502fc4c09c78354ecc117331d1', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01a784379d99db42000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:00:11.000Z'}}, {'blockNum': '0x969d96', 'uniqueId': '0xe55bc0f623a7a696b886522981f6a3bdaab41eb9f6b83e051afe58764c0d8edf:log:39', 'hash': '0xe55bc0f623a7a696b886522981f6a3bdaab41eb9f6b83e051afe58764c0d8edf', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 47300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0a04235d01dc08900000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:02:49.000Z'}}, {'blockNum': '0x969d96', 'uniqueId': '0x9a8faf6f6e446d6dde46bbb4ed12ca6cdc1bf4eb5d4686f45c186e5543671116:log:41', 'hash': '0x9a8faf6f6e446d6dde46bbb4ed12ca6cdc1bf4eb5d4686f45c186e5543671116', 'from': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 481221.28845156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x65e70eee03092ca91000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:02:49.000Z'}}, {'blockNum': '0x969d96', 'uniqueId': '0xcf6f5aac492853ad51fb98bd25ec319fea02a58d68c3a2a6de54edab93c87a4a:log:44', 'hash': '0xcf6f5aac492853ad51fb98bd25ec319fea02a58d68c3a2a6de54edab93c87a4a', 'from': '0xbe84eac3f62657f54f1da954c0ca5b30ee44546b', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 103560.634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x15ee0880ff3ed0b90000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:02:49.000Z'}}, {'blockNum': '0x969e09', 'uniqueId': '0x96fbbf818b6b53d12dbdc1c92903b27827b04a4494b9ec48ccd1cf004afd78ee:log:158', 'hash': '0x96fbbf818b6b53d12dbdc1c92903b27827b04a4494b9ec48ccd1cf004afd78ee', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 385906.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x51b801b87554a6490000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:29:19.000Z'}}, {'blockNum': '0x969e23', 'uniqueId': '0x16ad9bd5d763c265a573b0b790ed44883e71da3f80313e3e26cba0a43e7c691f:log:6', 'hash': '0x16ad9bd5d763c265a573b0b790ed44883e71da3f80313e3e26cba0a43e7c691f', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 66451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0e1250e0ab834a6c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:35:37.000Z'}}, {'blockNum': '0x969e3b', 'uniqueId': '0x37eb2603d781bb5a76d68bc98ef89500717752c80c5002ee88425aab35b41270:log:35', 'hash': '0x37eb2603d781bb5a76d68bc98ef89500717752c80c5002ee88425aab35b41270', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 72047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0f41acfa6aa2585c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:39:52.000Z'}}, {'blockNum': '0x969e42', 'uniqueId': '0x70bd5e4184a3c1e89a0e39f271eed62917ba20688ad578c61484d7838922012f:log:28', 'hash': '0x70bd5e4184a3c1e89a0e39f271eed62917ba20688ad578c61484d7838922012f', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 78315.837068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x109582919e4205a4c000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:43:05.000Z'}}, {'blockNum': '0x969e4b', 'uniqueId': '0x4a3bd401ee3105876d7eb881a846a9780b440664900eea6de6fc98395a61d3f7:log:115', 'hash': '0x4a3bd401ee3105876d7eb881a846a9780b440664900eea6de6fc98395a61d3f7', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 228874.6221129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x30775170b5f6b0982800', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:44:10.000Z'}}, {'blockNum': '0x969e6b', 'uniqueId': '0xfb3f3720bcb28a9e904cb127b0709a102034b1e66de417efaa094454918fcb4e:log:23', 'hash': '0xfb3f3720bcb28a9e904cb127b0709a102034b1e66de417efaa094454918fcb4e', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:52:11.000Z'}}, {'blockNum': '0x969e8f', 'uniqueId': '0x9f2b593d676249066a9dd914b047bfe7dbb6bb5cbf71c1d89cc39983b3017dbd:log:32', 'hash': '0x9f2b593d676249066a9dd914b047bfe7dbb6bb5cbf71c1d89cc39983b3017dbd', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:59:58.000Z'}}, {'blockNum': '0x969eb0', 'uniqueId': '0x5489ec66005a40da025e0225c35410f53c5207784836e7181196e901083717fe:log:4', 'hash': '0x5489ec66005a40da025e0225c35410f53c5207784836e7181196e901083717fe', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 69751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0ec53593cf5d0f7c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:07:32.000Z'}}, {'blockNum': '0x969ecb', 'uniqueId': '0x7dd91466fcde49b81d7857ef71b92feb22eb5059dfb6b367a3827ff635a1da5e:log:94', 'hash': '0x7dd91466fcde49b81d7857ef71b92feb22eb5059dfb6b367a3827ff635a1da5e', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 78315.837068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x109582919e4205a4c000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:13:19.000Z'}}, {'blockNum': '0x969ecb', 'uniqueId': '0x700bc33e9435b214a23f9eef6eba75c4e845128b51bb42cfc69c072f3be76d51:log:95', 'hash': '0x700bc33e9435b214a23f9eef6eba75c4e845128b51bb42cfc69c072f3be76d51', 'from': '0x95d5c96f6582087587c870a2ee89a2bfe441dbdf', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 56611.859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0bfcef5dda041cbb8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:13:19.000Z'}}, {'blockNum': '0x969ecb', 'uniqueId': '0x1b3192087fe0f3509777915b741ba3dfa6fff9f266943d37bc078ae7121dc8f8:log:103', 'hash': '0x1b3192087fe0f3509777915b741ba3dfa6fff9f266943d37bc078ae7121dc8f8', 'from': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 614780.6321129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x822f53292b4b56e12800', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:13:19.000Z'}}, {'blockNum': '0x969ee9', 'uniqueId': '0x57a5ded49668c89d0d206027275c56ce3ca94a595a93c7eb8d5029b3ba692c98:log:38', 'hash': '0x57a5ded49668c89d0d206027275c56ce3ca94a595a93c7eb8d5029b3ba692c98', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'value': 281379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x3b95960e3a2a2eac0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:21:17.000Z'}}, {'blockNum': '0x969ef5', 'uniqueId': '0xa4745efe5cdb15b74bf723938a90800722834dceeda4bca0efb94f1fa02c5d50:log:11', 'hash': '0xa4745efe5cdb15b74bf723938a90800722834dceeda4bca0efb94f1fa02c5d50', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 84255.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x11d77bc98cd184300000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:24:04.000Z'}}, {'blockNum': '0x969f28', 'uniqueId': '0xb8203b4cf8cd9260ea5e2da0aeae5938e4816a36bacf07fdb5accb8760cb41c7:log:82', 'hash': '0xb8203b4cf8cd9260ea5e2da0aeae5938e4816a36bacf07fdb5accb8760cb41c7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'value': 276797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x3a9d320826a426d40000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:35:25.000Z'}}, {'blockNum': '0x969f75', 'uniqueId': '0x6be77d7a6a0c455842a4a11b69912783bc142ac56b90990eda221907fc6d4e3a:log:3', 'hash': '0x6be77d7a6a0c455842a4a11b69912783bc142ac56b90990eda221907fc6d4e3a', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 123607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x1a2cbfb7b20bdcfc0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:52:59.000Z'}}, {'blockNum': '0x969f96', 'uniqueId': '0xce7838158829f4316c146002222dc58c4463b5d136c5dc2ee2b7be233a315171:log:48', 'hash': '0xce7838158829f4316c146002222dc58c4463b5d136c5dc2ee2b7be233a315171', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x33fee9a6d56e1c3c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:59:39.000Z'}}, {'blockNum': '0x96a005', 'uniqueId': '0xaf5bfdd7b78e77410dfa9bd69b6a0e81371e29bb4dab0fafee5b27365be3e091:log:8', 'hash': '0xaf5bfdd7b78e77410dfa9bd69b6a0e81371e29bb4dab0fafee5b27365be3e091', 'from': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 558176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x7632c81660ce55800000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T15:23:49.000Z'}}, {'blockNum': '0x96a005', 'uniqueId': '0x023d645a0ccf345274338a968877cd21a294d047cc698688d59162c7565a6228:log:9', 'hash': '0x023d645a0ccf345274338a968877cd21a294d047cc698688d59162c7565a6228', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 208249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2c19336ee582b2440000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T15:23:49.000Z'}}, {'blockNum': '0x96a005', 'uniqueId': '0xc63d744814f47da666634606d84597ac3c867bf1e8be5880adc7ac9239eb5574:log:10', 'hash': '0xc63d744814f47da666634606d84597ac3c867bf1e8be5880adc7ac9239eb5574', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 207862.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2c043b813edd612c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T15:23:49.000Z'}}, {'blockNum': '0x96a0bc', 'uniqueId': '0xfe84d3acdeada5dff6f21e889e64c52e09700192d47a2c947c49e202ba9f764e:log:12', 'hash': '0xfe84d3acdeada5dff6f21e889e64c52e09700192d47a2c947c49e202ba9f764e', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x16bb95d2daa97c9320e597f5161dd4031516adfc', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:04:07.000Z'}}, {'blockNum': '0x96a0cb', 'uniqueId': '0x1473a8cce0c1438b47faf7df83b1e9a43b4dfea5553100ee73fc3223b4a1b1ff:log:167', 'hash': '0x1473a8cce0c1438b47faf7df83b1e9a43b4dfea5553100ee73fc3223b4a1b1ff', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'value': 274612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x3a26bf10c34472500000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:06:53.000Z'}}, {'blockNum': '0x96a0d6', 'uniqueId': '0xfaa8fa8221801d333d5b6f472c12f2e24c71858e11d8de959f99e4ba81658132:log:127', 'hash': '0xfaa8fa8221801d333d5b6f472c12f2e24c71858e11d8de959f99e4ba81658132', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 10675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0242b162856d0eec0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:10:32.000Z'}}, {'blockNum': '0x96a0de', 'uniqueId': '0x0eab748db88e68b968a7edc2e2157e8e2e79a3ac9925afa57e5cea620e54dcc8:log:84', 'hash': '0x0eab748db88e68b968a7edc2e2157e8e2e79a3ac9925afa57e5cea620e54dcc8', 'from': '0x38b78904a6b44f63eb81d98937fc6614870cfbb9', 'to': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01a784379d99db42000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:13:04.000Z'}}, {'blockNum': '0x96a0ed', 'uniqueId': '0xc3b7054f95610554e319cfb76bc7c1ee8c9b2b8a311f377f90445eb0c4f8c23c:log:5', 'hash': '0xc3b7054f95610554e319cfb76bc7c1ee8c9b2b8a311f377f90445eb0c4f8c23c', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xc53ff4a3d1961fdb8bfdcbfe674e85b792bf62fb', 'value': 118502.9198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x19180e6026b8e43f8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:15:31.000Z'}}, {'blockNum': '0x96a144', 'uniqueId': '0xab3cd56e24a6d81123c6ca5900c228825920bbd134800ad9be869e327fbb70e7:log:15', 'hash': '0xab3cd56e24a6d81123c6ca5900c228825920bbd134800ad9be869e327fbb70e7', 'from': '0xc53ff4a3d1961fdb8bfdcbfe674e85b792bf62fb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 118502.9198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x19180e6026b8e43f8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:35:28.000Z'}}, {'blockNum': '0x96a144', 'uniqueId': '0x700cc9719030801c6e969091c7e8868cf9b93af306c44b3771e8bc638dd6a2d6:log:16', 'hash': '0x700cc9719030801c6e969091c7e8868cf9b93af306c44b3771e8bc638dd6a2d6', 'from': '0x16bb95d2daa97c9320e597f5161dd4031516adfc', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:35:28.000Z'}}, {'blockNum': '0x96a144', 'uniqueId': '0xa2d0001a82c052d474cc11888d09cd412cfbb79dc8f589a0298d46c927b981cb:log:18', 'hash': '0xa2d0001a82c052d474cc11888d09cd412cfbb79dc8f589a0298d46c927b981cb', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0242b162856d0eec0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:35:28.000Z'}}, {'blockNum': '0x96a144', 'uniqueId': '0xd5b7853993eb7dad0e9e72aa55c7da96d3e15c483218af88b4791613aeb0a166:log:20', 'hash': '0xd5b7853993eb7dad0e9e72aa55c7da96d3e15c483218af88b4791613aeb0a166', 'from': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 274612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x3a26bf10c34472500000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:35:28.000Z'}}, {'blockNum': '0x96a1f9', 'uniqueId': '0xe9d5073dda0239d1d7b6d6b52762c7b47fd87bc37519401c486cedf0cf7e5f49:log:87', 'hash': '0xe9d5073dda0239d1d7b6d6b52762c7b47fd87bc37519401c486cedf0cf7e5f49', 'from': '0x93a86f126a9fa936c99d063845d435297af8a0be', 'to': '0x23e7000f29d2f222c2e56373b6617fb55e9f4a64', 'value': 1900000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01925734d5b8904b800000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T17:15:23.000Z'}}, {'blockNum': '0x96a285', 'uniqueId': '0x8588ba04fce7e50446a313055fec7e91d66dd42168d5d19d18798e3447073c6d:log:26', 'hash': '0x8588ba04fce7e50446a313055fec7e91d66dd42168d5d19d18798e3447073c6d', 'from': '0x23e7000f29d2f222c2e56373b6617fb55e9f4a64', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1900000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01925734d5b8904b800000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T17:46:01.000Z'}}, {'blockNum': '0x96a9fa', 'uniqueId': '0x4b1bfda997003ad6d54da26824b50051d1b3b4c88cdf01070f4e00cbd4a1ac79:log:5', 'hash': '0x4b1bfda997003ad6d54da26824b50051d1b3b4c88cdf01070f4e00cbd4a1ac79', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xbe84eac3f62657f54f1da954c0ca5b30ee44546b', 'value': 6915.6168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0176e576671783a20000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-15T01:01:15.000Z'}}]}}
Number of returned transfers:  60
Answer is complete
 
symbol             GVT
group               CW
date        2020-04-15
hour             15:56
exchange       binance
Name: 897, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-04-15 15:56:00 2020-04-15 03:56:00 2020-04-16 03:56:00
Unix timestamps:  1586915760.0 1587002160.0
Hex Block Numbers:  0x96ab04 0x96c468
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BNT
group               CW
date        2020-04-24
hour             15:59
exchange       binance
Name: 898, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2020-04-24 15:59:00 2020-04-24 03:59:00 2020-04-25 03:59:00
Unix timestamps:  1587693540.0 1587779940.0
Hex Block Numbers:  0x978e4d 0x97a795
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x978e70', 'uniqueId': '0x5666d1ea13188003373046941b0ac94cb674acd70028aff18c65c62688eeb7c5:log:72', 'hash': '0x5666d1ea13188003373046941b0ac94cb674acd70028aff18c65c62688eeb7c5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 895.0888726672596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3085da7b4e88dc3770', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:07:58.000Z'}}, {'blockNum': '0x978e70', 'uniqueId': '0x5666d1ea13188003373046941b0ac94cb674acd70028aff18c65c62688eeb7c5:log:78', 'hash': '0x5666d1ea13188003373046941b0ac94cb674acd70028aff18c65c62688eeb7c5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 895.0888726672596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3085da7b4e88dc3770', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:07:58.000Z'}}, {'blockNum': '0x978e82', 'uniqueId': '0x9bc676da953634ebf9601e8a0cf12cb797e118c8983c9ff8914c8ec226d4f67c:log:132', 'hash': '0x9bc676da953634ebf9601e8a0cf12cb797e118c8983c9ff8914c8ec226d4f67c', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 370.4310546438196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1414c379921a2ecc28', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:11:50.000Z'}}, {'blockNum': '0x978e82', 'uniqueId': '0x9bc676da953634ebf9601e8a0cf12cb797e118c8983c9ff8914c8ec226d4f67c:log:138', 'hash': '0x9bc676da953634ebf9601e8a0cf12cb797e118c8983c9ff8914c8ec226d4f67c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 370.4310546438196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1414c379921a2ecc28', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:11:50.000Z'}}, {'blockNum': '0x978e86', 'uniqueId': '0x90b8724716f4bcd9abed722bb6c1b2417ea9390459d0f0f9764b0d02a2513037:log:115', 'hash': '0x90b8724716f4bcd9abed722bb6c1b2417ea9390459d0f0f9764b0d02a2513037', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 23.324072844142723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0143afc0acee76392a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:13:35.000Z'}}, {'blockNum': '0x978e86', 'uniqueId': '0x90b8724716f4bcd9abed722bb6c1b2417ea9390459d0f0f9764b0d02a2513037:log:121', 'hash': '0x90b8724716f4bcd9abed722bb6c1b2417ea9390459d0f0f9764b0d02a2513037', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 23.324072844142723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0143afc0acee76392a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:13:35.000Z'}}, {'blockNum': '0x978e8a', 'uniqueId': '0x1e595652c75f85d6b047dfdb07f0e987c467c0b3f14bd4f2cce2dac0815436fc:log:100', 'hash': '0x1e595652c75f85d6b047dfdb07f0e987c467c0b3f14bd4f2cce2dac0815436fc', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 451.1881896049755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18757e73f2c0280f6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:14:22.000Z'}}, {'blockNum': '0x978e8a', 'uniqueId': '0x1e595652c75f85d6b047dfdb07f0e987c467c0b3f14bd4f2cce2dac0815436fc:log:106', 'hash': '0x1e595652c75f85d6b047dfdb07f0e987c467c0b3f14bd4f2cce2dac0815436fc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 451.1881896049755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18757e73f2c0280f6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:14:22.000Z'}}, {'blockNum': '0x978ec6', 'uniqueId': '0x3a704af4bde80b559c56445e4ab1fda44231dd1f1375e8bdc78d31343aa78b8a:log:3', 'hash': '0x3a704af4bde80b559c56445e4ab1fda44231dd1f1375e8bdc78d31343aa78b8a', 'from': '0x790c95ef074b77a8f92a5163cc056f163a8631e6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 884.2692860438627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fefb39698f0b8685e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:28:17.000Z'}}, {'blockNum': '0x978ec6', 'uniqueId': '0x3a704af4bde80b559c56445e4ab1fda44231dd1f1375e8bdc78d31343aa78b8a:log:9', 'hash': '0x3a704af4bde80b559c56445e4ab1fda44231dd1f1375e8bdc78d31343aa78b8a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 884.2692860438627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fefb39698f0b8685e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:28:17.000Z'}}, {'blockNum': '0x978ed6', 'uniqueId': '0x15a253c68f9d4054cdb8a8ec59997a04c72db6e895852c702c881f435743dbed:log:143', 'hash': '0x15a253c68f9d4054cdb8a8ec59997a04c72db6e895852c702c881f435743dbed', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 21.978201626437077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01310241ef09b1c234', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:31:50.000Z'}}, {'blockNum': '0x978ed6', 'uniqueId': '0x15a253c68f9d4054cdb8a8ec59997a04c72db6e895852c702c881f435743dbed:log:149', 'hash': '0x15a253c68f9d4054cdb8a8ec59997a04c72db6e895852c702c881f435743dbed', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 21.978201626437077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01310241ef09b1c234', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:31:50.000Z'}}, {'blockNum': '0x978edb', 'uniqueId': '0x64f679b27bc7cc8b20df1f3707bfd2d52073643f5dcffc642492688a7489c51d:log:4', 'hash': '0x64f679b27bc7cc8b20df1f3707bfd2d52073643f5dcffc642492688a7489c51d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 895.2507845029071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x308819b543718e805e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:33:00.000Z'}}, {'blockNum': '0x978edb', 'uniqueId': '0x64f679b27bc7cc8b20df1f3707bfd2d52073643f5dcffc642492688a7489c51d:log:10', 'hash': '0x64f679b27bc7cc8b20df1f3707bfd2d52073643f5dcffc642492688a7489c51d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 895.2507845029071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x308819b543718e805e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:33:00.000Z'}}, {'blockNum': '0x978f0d', 'uniqueId': '0xc797c7928565569bcf1e014a3d12d587a95bdacb502066ee4ed78bb549803e06:log:102', 'hash': '0xc797c7928565569bcf1e014a3d12d587a95bdacb502066ee4ed78bb549803e06', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 85.03984116949222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049c2a34fbb739121a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:42:59.000Z'}}, {'blockNum': '0x978f0d', 'uniqueId': '0xc797c7928565569bcf1e014a3d12d587a95bdacb502066ee4ed78bb549803e06:log:108', 'hash': '0xc797c7928565569bcf1e014a3d12d587a95bdacb502066ee4ed78bb549803e06', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4886d62cb84e24dd007dbd1f24f62591fe2c7d8a', 'value': 85.03984116949222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x049c2a34fbb739121a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:42:59.000Z'}}, {'blockNum': '0x978f3f', 'uniqueId': '0x1c598851ace95f77fa849ecd183edebbe2f1405e5b2c1b675e86b8b865637587:log:90', 'hash': '0x1c598851ace95f77fa849ecd183edebbe2f1405e5b2c1b675e86b8b865637587', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 447.5523851952522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1843097b19d5cd80d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:52:44.000Z'}}, {'blockNum': '0x978f3f', 'uniqueId': '0x1c598851ace95f77fa849ecd183edebbe2f1405e5b2c1b675e86b8b865637587:log:96', 'hash': '0x1c598851ace95f77fa849ecd183edebbe2f1405e5b2c1b675e86b8b865637587', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 447.5523851952522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1843097b19d5cd80d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:52:44.000Z'}}, {'blockNum': '0x978f46', 'uniqueId': '0x900a2eafaca1a27f605f7e987a3fc3335b1599e65832e04872a6484e1cc768a7:log:181', 'hash': '0x900a2eafaca1a27f605f7e987a3fc3335b1599e65832e04872a6484e1cc768a7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8941.975115315381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e4bed54ec3c3dd5133', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:54:15.000Z'}}, {'blockNum': '0x978f46', 'uniqueId': '0x900a2eafaca1a27f605f7e987a3fc3335b1599e65832e04872a6484e1cc768a7:log:186', 'hash': '0x900a2eafaca1a27f605f7e987a3fc3335b1599e65832e04872a6484e1cc768a7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 8941.975115315381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e4bed54ec3c3dd5133', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:54:15.000Z'}}, {'blockNum': '0x978f4a', 'uniqueId': '0xac60acabd0c6cf96551ea828aa635b40161dd3873e74f42a890b54bec19aba2f:log:138', 'hash': '0xac60acabd0c6cf96551ea828aa635b40161dd3873e74f42a890b54bec19aba2f', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 827.6956950392915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cde95d1518904bbec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:55:19.000Z'}}, {'blockNum': '0x978f4a', 'uniqueId': '0xac60acabd0c6cf96551ea828aa635b40161dd3873e74f42a890b54bec19aba2f:log:144', 'hash': '0xac60acabd0c6cf96551ea828aa635b40161dd3873e74f42a890b54bec19aba2f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 827.6956950392915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cde95d1518904bbec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:55:19.000Z'}}, {'blockNum': '0x978f4a', 'uniqueId': '0x28fad3fe0871aa36c3e4f500aff41025ec22dbbf7e18690dcdc5279305134f6d:log:164', 'hash': '0x28fad3fe0871aa36c3e4f500aff41025ec22dbbf7e18690dcdc5279305134f6d', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 862.6806363767605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ec4194c1b54bd7c25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:55:19.000Z'}}, {'blockNum': '0x978f4a', 'uniqueId': '0x28fad3fe0871aa36c3e4f500aff41025ec22dbbf7e18690dcdc5279305134f6d:log:170', 'hash': '0x28fad3fe0871aa36c3e4f500aff41025ec22dbbf7e18690dcdc5279305134f6d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 862.6806363767605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ec4194c1b54bd7c25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:55:19.000Z'}}, {'blockNum': '0x978f53', 'uniqueId': '0x858727bfc1c1fa6b5dec61df328126b3c64dd37e316b7783d5e0c48fffd3bb94:log:134', 'hash': '0x858727bfc1c1fa6b5dec61df328126b3c64dd37e316b7783d5e0c48fffd3bb94', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 79.95377697735196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045594e08c31de85b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:57:21.000Z'}}, {'blockNum': '0x978f53', 'uniqueId': '0x858727bfc1c1fa6b5dec61df328126b3c64dd37e316b7783d5e0c48fffd3bb94:log:140', 'hash': '0x858727bfc1c1fa6b5dec61df328126b3c64dd37e316b7783d5e0c48fffd3bb94', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 79.95377697735196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x045594e08c31de85b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T02:57:21.000Z'}}, {'blockNum': '0x978f69', 'uniqueId': '0x9e80dc2def300bfeb71bb2b921d5e34625167d5d01909c6243beef5169c5395e:log:120', 'hash': '0x9e80dc2def300bfeb71bb2b921d5e34625167d5d01909c6243beef5169c5395e', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 358.29787450321254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136c61c2846578c793', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:01:21.000Z'}}, {'blockNum': '0x978f69', 'uniqueId': '0x9e80dc2def300bfeb71bb2b921d5e34625167d5d01909c6243beef5169c5395e:log:126', 'hash': '0x9e80dc2def300bfeb71bb2b921d5e34625167d5d01909c6243beef5169c5395e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 358.29787450321254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x136c61c2846578c793', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:01:21.000Z'}}, {'blockNum': '0x978f88', 'uniqueId': '0xf861503a806006dbf763d4d6876cacd9fe18366f2fca16bec729e76cfbdc7752:log:74', 'hash': '0xf861503a806006dbf763d4d6876cacd9fe18366f2fca16bec729e76cfbdc7752', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 670.260799110489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455bcb598da26fbc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:08:34.000Z'}}, {'blockNum': '0x978f88', 'uniqueId': '0xf861503a806006dbf763d4d6876cacd9fe18366f2fca16bec729e76cfbdc7752:log:80', 'hash': '0xf861503a806006dbf763d4d6876cacd9fe18366f2fca16bec729e76cfbdc7752', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 670.260799110489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2455bcb598da26fbc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:08:34.000Z'}}, {'blockNum': '0x978f8f', 'uniqueId': '0x2cf58aec87a3bb7a7b8ac99e33b1236a7799f45524311339dfd22595f257fcfc:log:177', 'hash': '0x2cf58aec87a3bb7a7b8ac99e33b1236a7799f45524311339dfd22595f257fcfc', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 448.6831034872471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1852ba99658d31af54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:10:56.000Z'}}, {'blockNum': '0x978f8f', 'uniqueId': '0x2cf58aec87a3bb7a7b8ac99e33b1236a7799f45524311339dfd22595f257fcfc:log:183', 'hash': '0x2cf58aec87a3bb7a7b8ac99e33b1236a7799f45524311339dfd22595f257fcfc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 448.6831034872471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1852ba99658d31af54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:10:56.000Z'}}, {'blockNum': '0x978f9a', 'uniqueId': '0x796e92430674131f811490fb25a01f9c5490ae8fc5806f26cbf06eade5f83b86:log:75', 'hash': '0x796e92430674131f811490fb25a01f9c5490ae8fc5806f26cbf06eade5f83b86', 'from': '0x5dcf7ae55c91e0216d9ff5bec88924640f1f9581', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 646.4253637533745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x230af43b6ce28e8502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:13:59.000Z'}}, {'blockNum': '0x978f9a', 'uniqueId': '0x796e92430674131f811490fb25a01f9c5490ae8fc5806f26cbf06eade5f83b86:log:81', 'hash': '0x796e92430674131f811490fb25a01f9c5490ae8fc5806f26cbf06eade5f83b86', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 646.4253637533745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x230af43b6ce28e8502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:13:59.000Z'}}, {'blockNum': '0x978fa0', 'uniqueId': '0x33b7cf16dabaa0ecdfd185438a6515e123069e96dde8e4450b994863f002d4e3:log:20', 'hash': '0x33b7cf16dabaa0ecdfd185438a6515e123069e96dde8e4450b994863f002d4e3', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 675.3639257261934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249c8ea8376f0e54ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:15:20.000Z'}}, {'blockNum': '0x978fa0', 'uniqueId': '0x33b7cf16dabaa0ecdfd185438a6515e123069e96dde8e4450b994863f002d4e3:log:26', 'hash': '0x33b7cf16dabaa0ecdfd185438a6515e123069e96dde8e4450b994863f002d4e3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 675.3639257261934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x249c8ea8376f0e54ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:15:20.000Z'}}, {'blockNum': '0x978fa2', 'uniqueId': '0x5fd9bdeec9f1d7a26c96334072bd3c7af4b278e2e02166b9e1a2e0460d73a839:log:37', 'hash': '0x5fd9bdeec9f1d7a26c96334072bd3c7af4b278e2e02166b9e1a2e0460d73a839', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1117.311850181178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c91d117f7c79528f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:15:50.000Z'}}, {'blockNum': '0x978fa2', 'uniqueId': '0x5fd9bdeec9f1d7a26c96334072bd3c7af4b278e2e02166b9e1a2e0460d73a839:log:43', 'hash': '0x5fd9bdeec9f1d7a26c96334072bd3c7af4b278e2e02166b9e1a2e0460d73a839', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 1117.311850181178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c91d117f7c79528f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:15:50.000Z'}}, {'blockNum': '0x978fb9', 'uniqueId': '0x86465daa71a3fb794d59a03b37693eaee82ea5385e55315ae8d45804983a70c4:log:11', 'hash': '0x86465daa71a3fb794d59a03b37693eaee82ea5385e55315ae8d45804983a70c4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 958.7151794640808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33f8d8883b5b69e148', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:20:39.000Z'}}, {'blockNum': '0x978fb9', 'uniqueId': '0x86465daa71a3fb794d59a03b37693eaee82ea5385e55315ae8d45804983a70c4:log:17', 'hash': '0x86465daa71a3fb794d59a03b37693eaee82ea5385e55315ae8d45804983a70c4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 958.7151794640808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33f8d8883b5b69e148', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:20:39.000Z'}}, {'blockNum': '0x978fba', 'uniqueId': '0x9f60a8a9ad3b92bb29757cf9b217bbf6b59f7a101de303df6628c9a38a30ddf4:log:101', 'hash': '0x9f60a8a9ad3b92bb29757cf9b217bbf6b59f7a101de303df6628c9a38a30ddf4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8926.949309011661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e3ee4eeb8aa6d9e63a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:20:45.000Z'}}, {'blockNum': '0x978fba', 'uniqueId': '0x9f60a8a9ad3b92bb29757cf9b217bbf6b59f7a101de303df6628c9a38a30ddf4:log:106', 'hash': '0x9f60a8a9ad3b92bb29757cf9b217bbf6b59f7a101de303df6628c9a38a30ddf4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 8926.949309011661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e3ee4eeb8aa6d9e63a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:20:45.000Z'}}, {'blockNum': '0x978fc2', 'uniqueId': '0xef4785fdfd7023fcca48f0611cdfa96cd0bf44f897771fe9bbc544c70aff0649:log:78', 'hash': '0xef4785fdfd7023fcca48f0611cdfa96cd0bf44f897771fe9bbc544c70aff0649', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 622.4586584302929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21be5963ea3fcf80c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:22:27.000Z'}}, {'blockNum': '0x978fc2', 'uniqueId': '0xef4785fdfd7023fcca48f0611cdfa96cd0bf44f897771fe9bbc544c70aff0649:log:84', 'hash': '0xef4785fdfd7023fcca48f0611cdfa96cd0bf44f897771fe9bbc544c70aff0649', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 622.4586584302929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21be5963ea3fcf80c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:22:27.000Z'}}, {'blockNum': '0x978fc3', 'uniqueId': '0x46fe3255febb2a2343490f2ee1767ef867a23c5c0c5cc4347ffc150a49d1443b:log:136', 'hash': '0x46fe3255febb2a2343490f2ee1767ef867a23c5c0c5cc4347ffc150a49d1443b', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 449.15769225107243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185950ad5ce7654859', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:22:45.000Z'}}, {'blockNum': '0x978fc3', 'uniqueId': '0x46fe3255febb2a2343490f2ee1767ef867a23c5c0c5cc4347ffc150a49d1443b:log:142', 'hash': '0x46fe3255febb2a2343490f2ee1767ef867a23c5c0c5cc4347ffc150a49d1443b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 449.15769225107243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x185950ad5ce7654859', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:22:45.000Z'}}, {'blockNum': '0x978fcb', 'uniqueId': '0x10669f4dc999abf8b078c2fe88af5140ef12ed8414fcbf818b467e8cd1e8b3ea:log:59', 'hash': '0x10669f4dc999abf8b078c2fe88af5140ef12ed8414fcbf818b467e8cd1e8b3ea', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2675.350802363212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9107f364221f88e543', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:24:22.000Z'}}, {'blockNum': '0x978fcb', 'uniqueId': '0x10669f4dc999abf8b078c2fe88af5140ef12ed8414fcbf818b467e8cd1e8b3ea:log:65', 'hash': '0x10669f4dc999abf8b078c2fe88af5140ef12ed8414fcbf818b467e8cd1e8b3ea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'value': 2675.350802363212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9107f364221f88e543', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:24:22.000Z'}}, {'blockNum': '0x978fd3', 'uniqueId': '0x39ef978b796ccb98cdf77c97599edf0d74b3bf0a52e39d540ce3522c98faa225:log:146', 'hash': '0x39ef978b796ccb98cdf77c97599edf0d74b3bf0a52e39d540ce3522c98faa225', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1249.4822588235265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bc0cb65bf8fc2e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:26:02.000Z'}}, {'blockNum': '0x978fd3', 'uniqueId': '0x39ef978b796ccb98cdf77c97599edf0d74b3bf0a52e39d540ce3522c98faa225:log:152', 'hash': '0x39ef978b796ccb98cdf77c97599edf0d74b3bf0a52e39d540ce3522c98faa225', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1249.4822588235265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bc0cb65bf8fc2e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:26:02.000Z'}}, {'blockNum': '0x978fd5', 'uniqueId': '0xc5aa397c301d697af66ebc6d414c5da73dd19fed7eb1aad5aa07e990bcd17434:log:154', 'hash': '0xc5aa397c301d697af66ebc6d414c5da73dd19fed7eb1aad5aa07e990bcd17434', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5017.919877862049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011005a096d62af0be8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:26:17.000Z'}}, {'blockNum': '0x978fd5', 'uniqueId': '0xc5aa397c301d697af66ebc6d414c5da73dd19fed7eb1aad5aa07e990bcd17434:log:159', 'hash': '0xc5aa397c301d697af66ebc6d414c5da73dd19fed7eb1aad5aa07e990bcd17434', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ea3f91651db0b87bf639fac5fc2c0c3ef87eaea', 'value': 5017.919877862049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011005a096d62af0be8c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:26:17.000Z'}}, {'blockNum': '0x978fe9', 'uniqueId': '0xb748d7b53d28401f3b1f808e235d82bbbb74f2775d6c15cd75128d401fc92725:log:21', 'hash': '0xb748d7b53d28401f3b1f808e235d82bbbb74f2775d6c15cd75128d401fc92725', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 44.70915231473555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026c76d126a8a56143', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:31:51.000Z'}}, {'blockNum': '0x978fe9', 'uniqueId': '0xb748d7b53d28401f3b1f808e235d82bbbb74f2775d6c15cd75128d401fc92725:log:27', 'hash': '0xb748d7b53d28401f3b1f808e235d82bbbb74f2775d6c15cd75128d401fc92725', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 44.70915231473555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026c76d126a8a56143', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:31:51.000Z'}}, {'blockNum': '0x978fe9', 'uniqueId': '0xeefcee9d05a097068d651669cde63eaed11757c7c37fccba1ffce5f4914a5419:log:152', 'hash': '0xeefcee9d05a097068d651669cde63eaed11757c7c37fccba1ffce5f4914a5419', 'from': '0x46989597338d1db0f7adccd124af2fe4ca841068', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 474.34920433641526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19b6eae822593697c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:31:51.000Z'}}, {'blockNum': '0x978fe9', 'uniqueId': '0xeefcee9d05a097068d651669cde63eaed11757c7c37fccba1ffce5f4914a5419:log:158', 'hash': '0xeefcee9d05a097068d651669cde63eaed11757c7c37fccba1ffce5f4914a5419', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 474.34920433641526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19b6eae822593697c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:31:51.000Z'}}, {'blockNum': '0x978fec', 'uniqueId': '0x8883d616e0baca4ebbb51e636d903482d1736222b43fe32bd4fef584f4421742:log:139', 'hash': '0x8883d616e0baca4ebbb51e636d903482d1736222b43fe32bd4fef584f4421742', 'from': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2664.665440559845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9073a95c2fc555643c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:32:19.000Z'}}, {'blockNum': '0x978fec', 'uniqueId': '0x8883d616e0baca4ebbb51e636d903482d1736222b43fe32bd4fef584f4421742:log:145', 'hash': '0x8883d616e0baca4ebbb51e636d903482d1736222b43fe32bd4fef584f4421742', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2664.665440559845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9073a95c2fc555643c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:32:19.000Z'}}, {'blockNum': '0x979015', 'uniqueId': '0x3e495cf9fa9adfd1a8795989ee6ce0baab5cbf9fd33fd1eeafcfb465fc80357b:log:126', 'hash': '0x3e495cf9fa9adfd1a8795989ee6ce0baab5cbf9fd33fd1eeafcfb465fc80357b', 'from': '0x24090349a627b3529f883a09a049f9bc3ad19479', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 214.52122621549435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ba1147ea92bc17a3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:40:50.000Z'}}, {'blockNum': '0x979015', 'uniqueId': '0x3e495cf9fa9adfd1a8795989ee6ce0baab5cbf9fd33fd1eeafcfb465fc80357b:log:132', 'hash': '0x3e495cf9fa9adfd1a8795989ee6ce0baab5cbf9fd33fd1eeafcfb465fc80357b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 214.52122621549435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ba1147ea92bc17a3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:40:50.000Z'}}, {'blockNum': '0x979021', 'uniqueId': '0x18e691a1656cee1b421b86c816025039d364ea6d8627b7db519f4a46857ec302:log:114', 'hash': '0x18e691a1656cee1b421b86c816025039d364ea6d8627b7db519f4a46857ec302', 'from': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 176.61786609842108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x099310b57477e51ee5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:44:25.000Z'}}, {'blockNum': '0x979021', 'uniqueId': '0x18e691a1656cee1b421b86c816025039d364ea6d8627b7db519f4a46857ec302:log:120', 'hash': '0x18e691a1656cee1b421b86c816025039d364ea6d8627b7db519f4a46857ec302', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 176.61786609842108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x099310b57477e51ee5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:44:25.000Z'}}, {'blockNum': '0x97902b', 'uniqueId': '0x35248c188c7e778cda36e5f730b60058b661f6cc61068e336397dba6db245226:log:104', 'hash': '0x35248c188c7e778cda36e5f730b60058b661f6cc61068e336397dba6db245226', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'value': 71.78325109474142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e431568bf4bb6633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:47:16.000Z'}}, {'blockNum': '0x97902b', 'uniqueId': '0x35248c188c7e778cda36e5f730b60058b661f6cc61068e336397dba6db245226:log:108', 'hash': '0x35248c188c7e778cda36e5f730b60058b661f6cc61068e336397dba6db245226', 'from': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'to': '0xf5d162ae2e34be14b474e0d29cd1079fa13c9893', 'value': 71.78325109474142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e431568bf4bb6633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:47:16.000Z'}}, {'blockNum': '0x979062', 'uniqueId': '0x1d4dde4970021ebf550ed1a746d66c9f4c233ec18adbe2f21faa5a5dea3ef67e:log:199', 'hash': '0x1d4dde4970021ebf550ed1a746d66c9f4c233ec18adbe2f21faa5a5dea3ef67e', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'value': 71.70957125807504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e32b9320291febcf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:57:17.000Z'}}, {'blockNum': '0x979062', 'uniqueId': '0x1d4dde4970021ebf550ed1a746d66c9f4c233ec18adbe2f21faa5a5dea3ef67e:log:203', 'hash': '0x1d4dde4970021ebf550ed1a746d66c9f4c233ec18adbe2f21faa5a5dea3ef67e', 'from': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'to': '0xf5d162ae2e34be14b474e0d29cd1079fa13c9893', 'value': 71.70957125807504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e32b9320291febcf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:57:17.000Z'}}, {'blockNum': '0x979062', 'uniqueId': '0x9892d8378651a5c99969fb527af5a71ae8910162a9fb3e6ffe168f3a5efbe79d:log:210', 'hash': '0x9892d8378651a5c99969fb527af5a71ae8910162a9fb3e6ffe168f3a5efbe79d', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'value': 71.6228881102671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e1f79d431004c97d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:57:17.000Z'}}, {'blockNum': '0x979062', 'uniqueId': '0x9892d8378651a5c99969fb527af5a71ae8910162a9fb3e6ffe168f3a5efbe79d:log:214', 'hash': '0x9892d8378651a5c99969fb527af5a71ae8910162a9fb3e6ffe168f3a5efbe79d', 'from': '0x6958f5e95332d93d21af0d7b9ca85b8212fee0a5', 'to': '0xf5d162ae2e34be14b474e0d29cd1079fa13c9893', 'value': 71.6228881102671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03e1f79d431004c97d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T03:57:17.000Z'}}, {'blockNum': '0x97908d', 'uniqueId': '0x2c206ee2aed065e96861775200abc829dabd1de68f1955606312cecf08aef7e1:log:59', 'hash': '0x2c206ee2aed065e96861775200abc829dabd1de68f1955606312cecf08aef7e1', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50d3b2a217736b9cf92ee286e2539bc2ceb2da33', 'value': 1396.19646283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4bb01e4593f707cc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:04:51.000Z'}}, {'blockNum': '0x979093', 'uniqueId': '0xa53fc529775f8cab6b267ab3dce78f07207da84e95600ac91c35ca4f82915bab:log:183', 'hash': '0xa53fc529775f8cab6b267ab3dce78f07207da84e95600ac91c35ca4f82915bab', 'from': '0xf5d162ae2e34be14b474e0d29cd1079fa13c9893', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 214.90059475262046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ba6584855da1e13bb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:29.000Z'}}, {'blockNum': '0x979095', 'uniqueId': '0x2143d0cd17944c196f52bd8d6e34c09c9d55dcb2e04da29008c30e26d054d278:log:67', 'hash': '0x2143d0cd17944c196f52bd8d6e34c09c9d55dcb2e04da29008c30e26d054d278', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 448.75572660772565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853bc9bbd6fcc95d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:47.000Z'}}, {'blockNum': '0x979095', 'uniqueId': '0x2143d0cd17944c196f52bd8d6e34c09c9d55dcb2e04da29008c30e26d054d278:log:73', 'hash': '0x2143d0cd17944c196f52bd8d6e34c09c9d55dcb2e04da29008c30e26d054d278', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 448.75572660772565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1853bc9bbd6fcc95d3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:47.000Z'}}, {'blockNum': '0x979097', 'uniqueId': '0xb8c6d2ef52cc73ae6f29335e2312b18f19c5b0c23fa42e011caff250a43c2817:log:53', 'hash': '0xb8c6d2ef52cc73ae6f29335e2312b18f19c5b0c23fa42e011caff250a43c2817', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 660.2082571013268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23ca3ae7e680596ea0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:52.000Z'}}, {'blockNum': '0x979097', 'uniqueId': '0xb8c6d2ef52cc73ae6f29335e2312b18f19c5b0c23fa42e011caff250a43c2817:log:59', 'hash': '0xb8c6d2ef52cc73ae6f29335e2312b18f19c5b0c23fa42e011caff250a43c2817', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 660.2082571013268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23ca3ae7e680596ea0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:06:52.000Z'}}, {'blockNum': '0x9790a5', 'uniqueId': '0xe4766c4fb30355f5d51a63bcd29f2eb8d2b7519a92e719ea356231d6eaf36e86:log:171', 'hash': '0xe4766c4fb30355f5d51a63bcd29f2eb8d2b7519a92e719ea356231d6eaf36e86', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 151.4452622451302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0835b9a79edcdd3b66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:09:39.000Z'}}, {'blockNum': '0x9790a5', 'uniqueId': '0xe4766c4fb30355f5d51a63bcd29f2eb8d2b7519a92e719ea356231d6eaf36e86:log:177', 'hash': '0xe4766c4fb30355f5d51a63bcd29f2eb8d2b7519a92e719ea356231d6eaf36e86', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 151.4452622451302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0835b9a79edcdd3b66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:09:39.000Z'}}, {'blockNum': '0x9790a7', 'uniqueId': '0xaa5fb5fd4a38936c2804f0c93d8f13fca00b82235dd309e989a4012af895973d:log:200', 'hash': '0xaa5fb5fd4a38936c2804f0c93d8f13fca00b82235dd309e989a4012af895973d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 668.592453862224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x243e958e6edc9cca4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:10:33.000Z'}}, {'blockNum': '0x9790a7', 'uniqueId': '0xaa5fb5fd4a38936c2804f0c93d8f13fca00b82235dd309e989a4012af895973d:log:206', 'hash': '0xaa5fb5fd4a38936c2804f0c93d8f13fca00b82235dd309e989a4012af895973d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 668.592453862224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x243e958e6edc9cca4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:10:33.000Z'}}, {'blockNum': '0x9790ac', 'uniqueId': '0x8cd07759a7f0587076c6531730d76b634f80b46f3a76c602d22f6bd3df36458a:log:89', 'hash': '0x8cd07759a7f0587076c6531730d76b634f80b46f3a76c602d22f6bd3df36458a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 0.8186281003879458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c59eb86c6bcf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:10:56.000Z'}}, {'blockNum': '0x9790ac', 'uniqueId': '0x8cd07759a7f0587076c6531730d76b634f80b46f3a76c602d22f6bd3df36458a:log:95', 'hash': '0x8cd07759a7f0587076c6531730d76b634f80b46f3a76c602d22f6bd3df36458a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 0.8186281003879458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b5c59eb86c6bcf9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:10:56.000Z'}}, {'blockNum': '0x979115', 'uniqueId': '0xecf84d1bbd6c4cef013aba42210b5ada5ad17df423017b3fa4eaa2dc6bf4fbbb:log:124', 'hash': '0xecf84d1bbd6c4cef013aba42210b5ada5ad17df423017b3fa4eaa2dc6bf4fbbb', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x721d53e6465a1fe13ee3a1345c7b060aa965c591', 'value': 961.8167960873856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3423e3b01e20ef7525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:33:39.000Z'}}, {'blockNum': '0x97912b', 'uniqueId': '0xf70c96b395ee10c19cd43bf8e174ce226e66ea890537d1d2a10bbe1549dc338b:log:40', 'hash': '0xf70c96b395ee10c19cd43bf8e174ce226e66ea890537d1d2a10bbe1549dc338b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1522.3563600390821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5286f043aa762a8cf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:38:32.000Z'}}, {'blockNum': '0x97912b', 'uniqueId': '0xf70c96b395ee10c19cd43bf8e174ce226e66ea890537d1d2a10bbe1549dc338b:log:46', 'hash': '0xf70c96b395ee10c19cd43bf8e174ce226e66ea890537d1d2a10bbe1549dc338b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 1522.3563600390821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5286f043aa762a8cf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:38:32.000Z'}}, {'blockNum': '0x97912b', 'uniqueId': '0x2e5c042f3dc147a3611eafc11ec39b783e765c59743c6387b994c6a1ff0bc44a:log:58', 'hash': '0x2e5c042f3dc147a3611eafc11ec39b783e765c59743c6387b994c6a1ff0bc44a', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 904.2363704995608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3104ccec1ea6d55382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:38:32.000Z'}}, {'blockNum': '0x97912b', 'uniqueId': '0x2e5c042f3dc147a3611eafc11ec39b783e765c59743c6387b994c6a1ff0bc44a:log:64', 'hash': '0x2e5c042f3dc147a3611eafc11ec39b783e765c59743c6387b994c6a1ff0bc44a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 904.2363704995608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3104ccec1ea6d55382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:38:32.000Z'}}, {'blockNum': '0x979130', 'uniqueId': '0x38f4abcbcb0968cbbeaf5cba75834460cb179236e6d366956cdfd76ae47a9add:log:119', 'hash': '0x38f4abcbcb0968cbbeaf5cba75834460cb179236e6d366956cdfd76ae47a9add', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x721d53e6465a1fe13ee3a1345c7b060aa965c591', 'value': 8.888636153774668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b5ac77ce36efaa9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:39:49.000Z'}}, {'blockNum': '0x979170', 'uniqueId': '0xc48fa831aad65ef21ef128060dc8121beb23a77b6aa75b77260beef50a1e5c3a:log:86', 'hash': '0xc48fa831aad65ef21ef128060dc8121beb23a77b6aa75b77260beef50a1e5c3a', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 447.6704489844103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1844aced7ddb67fcc9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:53:37.000Z'}}, {'blockNum': '0x979170', 'uniqueId': '0xc48fa831aad65ef21ef128060dc8121beb23a77b6aa75b77260beef50a1e5c3a:log:92', 'hash': '0xc48fa831aad65ef21ef128060dc8121beb23a77b6aa75b77260beef50a1e5c3a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 447.6704489844103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1844aced7ddb67fcc9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:53:37.000Z'}}, {'blockNum': '0x979183', 'uniqueId': '0x359c8c6600251ffaae0f77cf45658d00fafb51453ec2b8fcd97585e18322ca00:log:40', 'hash': '0x359c8c6600251ffaae0f77cf45658d00fafb51453ec2b8fcd97585e18322ca00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x73f53b93af625891f9b770063c4c884ee27ec0f6', 'value': 4596.649205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf92f5281db32b85000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T04:58:03.000Z'}}, {'blockNum': '0x97918a', 'uniqueId': '0x4bc8836683aca6e4c2d0b73b884763bc3d2acebf66501c81e1e6efea024d674c:log:22', 'hash': '0x4bc8836683aca6e4c2d0b73b884763bc3d2acebf66501c81e1e6efea024d674c', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 464.7760781294787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1932105491cec73db7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:00:19.000Z'}}, {'blockNum': '0x97918a', 'uniqueId': '0x4bc8836683aca6e4c2d0b73b884763bc3d2acebf66501c81e1e6efea024d674c:log:28', 'hash': '0x4bc8836683aca6e4c2d0b73b884763bc3d2acebf66501c81e1e6efea024d674c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 464.7760781294787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1932105491cec73db7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:00:19.000Z'}}, {'blockNum': '0x9791a2', 'uniqueId': '0x9f609e2473e79c3b815cda08fe1614f93568a4294a528e20486718417fc6a381:log:11', 'hash': '0x9f609e2473e79c3b815cda08fe1614f93568a4294a528e20486718417fc6a381', 'from': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 714.2532619939338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b8415581ec70496c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:05:51.000Z'}}, {'blockNum': '0x9791a2', 'uniqueId': '0x9f609e2473e79c3b815cda08fe1614f93568a4294a528e20486718417fc6a381:log:17', 'hash': '0x9f609e2473e79c3b815cda08fe1614f93568a4294a528e20486718417fc6a381', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 714.2532619939338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b8415581ec70496c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:05:51.000Z'}}, {'blockNum': '0x9791da', 'uniqueId': '0x9baf1d8138d37f45ccc8746cbb9dd6eb5ab96fe3b75923830eda2c9a71e5d139:log:150', 'hash': '0x9baf1d8138d37f45ccc8746cbb9dd6eb5ab96fe3b75923830eda2c9a71e5d139', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.67045081591016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ef06e606e45e13ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:21:38.000Z'}}, {'blockNum': '0x9791da', 'uniqueId': '0x9baf1d8138d37f45ccc8746cbb9dd6eb5ab96fe3b75923830eda2c9a71e5d139:log:156', 'hash': '0x9baf1d8138d37f45ccc8746cbb9dd6eb5ab96fe3b75923830eda2c9a71e5d139', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6909f6ae629e4500742221e86bf1ecac5d71d68d', 'value': 35.67045081591016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ef06e606e45e13ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:21:38.000Z'}}, {'blockNum': '0x9791e4', 'uniqueId': '0xb6e58b43f11f4ef8f5d950d6d23d14a535ee7c4a53cd86fabcf25cb6d91f0fda:log:206', 'hash': '0xb6e58b43f11f4ef8f5d950d6d23d14a535ee7c4a53cd86fabcf25cb6d91f0fda', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 30.83898965131601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01abfa19b226a36d63', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:23:54.000Z'}}, {'blockNum': '0x9791e4', 'uniqueId': '0xb6e58b43f11f4ef8f5d950d6d23d14a535ee7c4a53cd86fabcf25cb6d91f0fda:log:212', 'hash': '0xb6e58b43f11f4ef8f5d950d6d23d14a535ee7c4a53cd86fabcf25cb6d91f0fda', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6909f6ae629e4500742221e86bf1ecac5d71d68d', 'value': 30.83898965131601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01abfa19b226a36d63', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:23:54.000Z'}}, {'blockNum': '0x9791f8', 'uniqueId': '0x79c7bd8cdbc4e68a4730efc698657481f3ba0dfdbff6410c62f2edc96826ec28:log:97', 'hash': '0x79c7bd8cdbc4e68a4730efc698657481f3ba0dfdbff6410c62f2edc96826ec28', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 445.8574163401267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x182b83bde852b18175', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:26:38.000Z'}}, {'blockNum': '0x9791f8', 'uniqueId': '0x79c7bd8cdbc4e68a4730efc698657481f3ba0dfdbff6410c62f2edc96826ec28:log:103', 'hash': '0x79c7bd8cdbc4e68a4730efc698657481f3ba0dfdbff6410c62f2edc96826ec28', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 445.8574163401267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x182b83bde852b18175', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:26:38.000Z'}}, {'blockNum': '0x9791fe', 'uniqueId': '0x73202bacb035b10a485a9dd0770c8adee27a8beb947e706f28fbf2758687bfa1:log:44', 'hash': '0x73202bacb035b10a485a9dd0770c8adee27a8beb947e706f28fbf2758687bfa1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 907.8404318997528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3136d11ede39f91f5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:27:28.000Z'}}, {'blockNum': '0x9791fe', 'uniqueId': '0x73202bacb035b10a485a9dd0770c8adee27a8beb947e706f28fbf2758687bfa1:log:50', 'hash': '0x73202bacb035b10a485a9dd0770c8adee27a8beb947e706f28fbf2758687bfa1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 907.8404318997528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3136d11ede39f91f5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:27:28.000Z'}}, {'blockNum': '0x97920c', 'uniqueId': '0x2ce6e06ce8ac2c5dba56db845bbd639f393f8c4c9f189f59f88295edce03baee:log:134', 'hash': '0x2ce6e06ce8ac2c5dba56db845bbd639f393f8c4c9f189f59f88295edce03baee', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 319.31147283594447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x114f563cc2754336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:30:31.000Z'}}, {'blockNum': '0x97920c', 'uniqueId': '0x2ce6e06ce8ac2c5dba56db845bbd639f393f8c4c9f189f59f88295edce03baee:log:140', 'hash': '0x2ce6e06ce8ac2c5dba56db845bbd639f393f8c4c9f189f59f88295edce03baee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 319.31147283594447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x114f563cc2754336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:30:31.000Z'}}, {'blockNum': '0x979231', 'uniqueId': '0xa40bf89962c51de04d5a4a2380ca760cf50f12f8d48915f2292853f1ea8f56dd:log:33', 'hash': '0xa40bf89962c51de04d5a4a2380ca760cf50f12f8d48915f2292853f1ea8f56dd', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 320.04062627366727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x115974b5f2af7c9f25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:36:43.000Z'}}, {'blockNum': '0x979231', 'uniqueId': '0xa40bf89962c51de04d5a4a2380ca760cf50f12f8d48915f2292853f1ea8f56dd:log:39', 'hash': '0xa40bf89962c51de04d5a4a2380ca760cf50f12f8d48915f2292853f1ea8f56dd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 320.04062627366727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x115974b5f2af7c9f25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:36:43.000Z'}}, {'blockNum': '0x979255', 'uniqueId': '0xc106419c25e7996bbf525a983af8528c0e4a0508f6e5ae1640a7748a3bffae93:log:48', 'hash': '0xc106419c25e7996bbf525a983af8528c0e4a0508f6e5ae1640a7748a3bffae93', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 317.74674013213576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11399f30a7e24f46a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:44:13.000Z'}}, {'blockNum': '0x979255', 'uniqueId': '0xc106419c25e7996bbf525a983af8528c0e4a0508f6e5ae1640a7748a3bffae93:log:54', 'hash': '0xc106419c25e7996bbf525a983af8528c0e4a0508f6e5ae1640a7748a3bffae93', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 317.74674013213576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11399f30a7e24f46a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:44:13.000Z'}}, {'blockNum': '0x979282', 'uniqueId': '0x59f7b9736339d842a78f7ebcfc7a0aea3471db5d08e27e5aa0ff33467e91d5c8:log:41', 'hash': '0x59f7b9736339d842a78f7ebcfc7a0aea3471db5d08e27e5aa0ff33467e91d5c8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 668.7124079592771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24403fb80c7ccf3fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:54:46.000Z'}}, {'blockNum': '0x979282', 'uniqueId': '0x59f7b9736339d842a78f7ebcfc7a0aea3471db5d08e27e5aa0ff33467e91d5c8:log:47', 'hash': '0x59f7b9736339d842a78f7ebcfc7a0aea3471db5d08e27e5aa0ff33467e91d5c8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 668.7124079592771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24403fb80c7ccf3fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:54:46.000Z'}}, {'blockNum': '0x97928e', 'uniqueId': '0x0902a3071655cb180b91da084b79e46b5dd658803a9159499cc9f6013ceb3241:log:30', 'hash': '0x0902a3071655cb180b91da084b79e46b5dd658803a9159499cc9f6013ceb3241', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 94.50356512777267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x051f801bc848e221bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:56:08.000Z'}}, {'blockNum': '0x97928e', 'uniqueId': '0x0902a3071655cb180b91da084b79e46b5dd658803a9159499cc9f6013ceb3241:log:36', 'hash': '0x0902a3071655cb180b91da084b79e46b5dd658803a9159499cc9f6013ceb3241', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 94.50356512777267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x051f801bc848e221bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T05:56:08.000Z'}}, {'blockNum': '0x9792bd', 'uniqueId': '0x1a1cc616214b4e2a4779bda3c13cebfe6cbbcf8d046afbd2789795a7ece83db5:log:106', 'hash': '0x1a1cc616214b4e2a4779bda3c13cebfe6cbbcf8d046afbd2789795a7ece83db5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4544.588016566564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf65cd402cedb12ea1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:05:41.000Z'}}, {'blockNum': '0x9792bd', 'uniqueId': '0x1a1cc616214b4e2a4779bda3c13cebfe6cbbcf8d046afbd2789795a7ece83db5:log:111', 'hash': '0x1a1cc616214b4e2a4779bda3c13cebfe6cbbcf8d046afbd2789795a7ece83db5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6cfa3f888d41aa9ac6052a5408261a250e20a29c', 'value': 4544.588016566564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf65cd402cedb12ea1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:05:41.000Z'}}, {'blockNum': '0x9792c6', 'uniqueId': '0xcce57c17fa4aff729db81c2410c16869f685f65325cd5e6ddde4adc6e470979f:log:28', 'hash': '0xcce57c17fa4aff729db81c2410c16869f685f65325cd5e6ddde4adc6e470979f', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 448.3606733284427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184e4118e024c96d2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:06:50.000Z'}}, {'blockNum': '0x9792c6', 'uniqueId': '0xcce57c17fa4aff729db81c2410c16869f685f65325cd5e6ddde4adc6e470979f:log:34', 'hash': '0xcce57c17fa4aff729db81c2410c16869f685f65325cd5e6ddde4adc6e470979f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 448.3606733284427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x184e4118e024c96d2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:06:50.000Z'}}, {'blockNum': '0x9792cf', 'uniqueId': '0x30c72af62dc53b53de5e449038720a9299afa8eed43ef12ae2281ab44b235280:log:45', 'hash': '0x30c72af62dc53b53de5e449038720a9299afa8eed43ef12ae2281ab44b235280', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 343.52066890898254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x129f4e94527c7ab261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:08:41.000Z'}}, {'blockNum': '0x9792cf', 'uniqueId': '0x30c72af62dc53b53de5e449038720a9299afa8eed43ef12ae2281ab44b235280:log:51', 'hash': '0x30c72af62dc53b53de5e449038720a9299afa8eed43ef12ae2281ab44b235280', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 343.52066890898254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x129f4e94527c7ab261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:08:41.000Z'}}, {'blockNum': '0x9792db', 'uniqueId': '0xcd2ee052d0612e9e603ad0cc505e48a09a1c5f66728364cc3d8425b44f60bc79:log:74', 'hash': '0xcd2ee052d0612e9e603ad0cc505e48a09a1c5f66728364cc3d8425b44f60bc79', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 140.00948860847367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x079705a0165c2c9e93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:11:05.000Z'}}, {'blockNum': '0x9792db', 'uniqueId': '0xcd2ee052d0612e9e603ad0cc505e48a09a1c5f66728364cc3d8425b44f60bc79:log:80', 'hash': '0xcd2ee052d0612e9e603ad0cc505e48a09a1c5f66728364cc3d8425b44f60bc79', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 140.00948860847367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x079705a0165c2c9e93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:11:05.000Z'}}, {'blockNum': '0x9792e8', 'uniqueId': '0x1c24ecea92b1df2f7685be2ef98fd54f0aa6e488ea416ed637f84d937f8cc0ef:log:32', 'hash': '0x1c24ecea92b1df2f7685be2ef98fd54f0aa6e488ea416ed637f84d937f8cc0ef', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 377.45014159589516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14762c47f704393d22', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:13:13.000Z'}}, {'blockNum': '0x9792e8', 'uniqueId': '0x1c24ecea92b1df2f7685be2ef98fd54f0aa6e488ea416ed637f84d937f8cc0ef:log:38', 'hash': '0x1c24ecea92b1df2f7685be2ef98fd54f0aa6e488ea416ed637f84d937f8cc0ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 377.45014159589516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14762c47f704393d22', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:13:13.000Z'}}, {'blockNum': '0x97930e', 'uniqueId': '0xb0119e7409476a6244f66206e7df6292fcbc26fef4c7d9f79534684005eb79a7:log:86', 'hash': '0xb0119e7409476a6244f66206e7df6292fcbc26fef4c7d9f79534684005eb79a7', 'from': '0x7599da2dd9e1341f4fe76133342ae7c75fa24129', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 18.855896009229344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0105ad99847fd217c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:20:57.000Z'}}, {'blockNum': '0x97930e', 'uniqueId': '0xb0119e7409476a6244f66206e7df6292fcbc26fef4c7d9f79534684005eb79a7:log:92', 'hash': '0xb0119e7409476a6244f66206e7df6292fcbc26fef4c7d9f79534684005eb79a7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 18.855896009229344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0105ad99847fd217c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:20:57.000Z'}}, {'blockNum': '0x979321', 'uniqueId': '0xb5b73b2d4cbfb430a780b3fe8ed202f5744d8ff0577477cc21368fc2578ffc32:log:28', 'hash': '0xb5b73b2d4cbfb430a780b3fe8ed202f5744d8ff0577477cc21368fc2578ffc32', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 245.9470464000551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d55336f9e17cc7b6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:25:07.000Z'}}, {'blockNum': '0x979321', 'uniqueId': '0xb5b73b2d4cbfb430a780b3fe8ed202f5744d8ff0577477cc21368fc2578ffc32:log:34', 'hash': '0xb5b73b2d4cbfb430a780b3fe8ed202f5744d8ff0577477cc21368fc2578ffc32', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 245.9470464000551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d55336f9e17cc7b6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:25:07.000Z'}}, {'blockNum': '0x979324', 'uniqueId': '0x10590842e376ec257824c58bd4791152488b384807745f28d7667ad451f1c0fa:log:150', 'hash': '0x10590842e376ec257824c58bd4791152488b384807745f28d7667ad451f1c0fa', 'from': '0xfbbaf86d76ef7c86f1aea216242ef8e203a8be7e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 75.32793960253517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04156299f6c730245e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:26:40.000Z'}}, {'blockNum': '0x979324', 'uniqueId': '0x10590842e376ec257824c58bd4791152488b384807745f28d7667ad451f1c0fa:log:156', 'hash': '0x10590842e376ec257824c58bd4791152488b384807745f28d7667ad451f1c0fa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 75.32793960253517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04156299f6c730245e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:26:40.000Z'}}, {'blockNum': '0x97933a', 'uniqueId': '0xf419e4cc3a8701626a0b1b5dbf8d5375aaac89af4a81ac05006b1d823e5bccd8:log:60', 'hash': '0xf419e4cc3a8701626a0b1b5dbf8d5375aaac89af4a81ac05006b1d823e5bccd8', 'from': '0x1c29f12d94ad2e6b5321ce226b4550f83ce88fca', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9.720568150008505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86e6653b0c3ba309', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:29:26.000Z'}}, {'blockNum': '0x97933a', 'uniqueId': '0xf419e4cc3a8701626a0b1b5dbf8d5375aaac89af4a81ac05006b1d823e5bccd8:log:66', 'hash': '0xf419e4cc3a8701626a0b1b5dbf8d5375aaac89af4a81ac05006b1d823e5bccd8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 9.720568150008505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x86e6653b0c3ba309', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:29:26.000Z'}}, {'blockNum': '0x97935a', 'uniqueId': '0x7b3fe1eb14bb455c3d591db7d752a25ff0ba1c1544123b7f3e0bf78068f47cef:log:120', 'hash': '0x7b3fe1eb14bb455c3d591db7d752a25ff0ba1c1544123b7f3e0bf78068f47cef', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 47.69332723190367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0295e0bc6d66152110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:37:57.000Z'}}, {'blockNum': '0x97935a', 'uniqueId': '0x7b3fe1eb14bb455c3d591db7d752a25ff0ba1c1544123b7f3e0bf78068f47cef:log:126', 'hash': '0x7b3fe1eb14bb455c3d591db7d752a25ff0ba1c1544123b7f3e0bf78068f47cef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 47.69332723190367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0295e0bc6d66152110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:37:57.000Z'}}, {'blockNum': '0x979394', 'uniqueId': '0x78355f1366d6e40642afed6efffa6723934bfb676cbb577ab41b7a51dd40b93a:log:103', 'hash': '0x78355f1366d6e40642afed6efffa6723934bfb676cbb577ab41b7a51dd40b93a', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 629.9924569262982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2226e6d1bb3b962924', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:53:47.000Z'}}, {'blockNum': '0x979394', 'uniqueId': '0x78355f1366d6e40642afed6efffa6723934bfb676cbb577ab41b7a51dd40b93a:log:109', 'hash': '0x78355f1366d6e40642afed6efffa6723934bfb676cbb577ab41b7a51dd40b93a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 629.9924569262982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2226e6d1bb3b962924', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:53:47.000Z'}}, {'blockNum': '0x979396', 'uniqueId': '0x3ea0845adfb42ef5018ac3bae0b5e43152d5ce8adca71242f7fc32bf6d5773ea:log:133', 'hash': '0x3ea0845adfb42ef5018ac3bae0b5e43152d5ce8adca71242f7fc32bf6d5773ea', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 384.59656186699937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d95977568f0ac437', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:54:33.000Z'}}, {'blockNum': '0x979396', 'uniqueId': '0x3ea0845adfb42ef5018ac3bae0b5e43152d5ce8adca71242f7fc32bf6d5773ea:log:139', 'hash': '0x3ea0845adfb42ef5018ac3bae0b5e43152d5ce8adca71242f7fc32bf6d5773ea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 384.59656186699937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d95977568f0ac437', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:54:33.000Z'}}, {'blockNum': '0x9793b1', 'uniqueId': '0xbd422d51ac040ca9476dff9e2e06fdaa7ce4d3fa8798a51f59817b94a4aff2c1:log:100', 'hash': '0xbd422d51ac040ca9476dff9e2e06fdaa7ce4d3fa8798a51f59817b94a4aff2c1', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 445.5960584586744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1827e3364c8f7b3d51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:59:42.000Z'}}, {'blockNum': '0x9793b1', 'uniqueId': '0xbd422d51ac040ca9476dff9e2e06fdaa7ce4d3fa8798a51f59817b94a4aff2c1:log:106', 'hash': '0xbd422d51ac040ca9476dff9e2e06fdaa7ce4d3fa8798a51f59817b94a4aff2c1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 445.5960584586744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1827e3364c8f7b3d51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T06:59:42.000Z'}}, {'blockNum': '0x9793c0', 'uniqueId': '0xeaf5fc4cb6487dc6b48cd6011516dc5db3241852b004542575bbfca0ab9b9c34:log:35', 'hash': '0xeaf5fc4cb6487dc6b48cd6011516dc5db3241852b004542575bbfca0ab9b9c34', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 2527.6947151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8906cf971537b59800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:03:06.000Z'}}, {'blockNum': '0x9793c9', 'uniqueId': '0xc78516e77561a9af5fa27c8d200316485af81c30eafe45846bbe1ad42c410f4b:log:76', 'hash': '0xc78516e77561a9af5fa27c8d200316485af81c30eafe45846bbe1ad42c410f4b', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 448.81486306290043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18548eb4085bc437b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:03:50.000Z'}}, {'blockNum': '0x9793c9', 'uniqueId': '0xc78516e77561a9af5fa27c8d200316485af81c30eafe45846bbe1ad42c410f4b:log:82', 'hash': '0xc78516e77561a9af5fa27c8d200316485af81c30eafe45846bbe1ad42c410f4b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 448.81486306290043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18548eb4085bc437b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:03:50.000Z'}}, {'blockNum': '0x9793d7', 'uniqueId': '0x749fdf35853b82467fc8feba16117dd0b44fe155e11f6d7253234effba3dec14:log:98', 'hash': '0x749fdf35853b82467fc8feba16117dd0b44fe155e11f6d7253234effba3dec14', 'from': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 74.50468749900227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0409f5d2899f845457', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:06:01.000Z'}}, {'blockNum': '0x9793d7', 'uniqueId': '0x749fdf35853b82467fc8feba16117dd0b44fe155e11f6d7253234effba3dec14:log:104', 'hash': '0x749fdf35853b82467fc8feba16117dd0b44fe155e11f6d7253234effba3dec14', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 74.50468749900227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0409f5d2899f845457', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:06:01.000Z'}}, {'blockNum': '0x9793e1', 'uniqueId': '0xca7a53f7e0983153b9c404a77a32a49f83d19a18d363635e115d4a0109393d64:log:50', 'hash': '0xca7a53f7e0983153b9c404a77a32a49f83d19a18d363635e115d4a0109393d64', 'from': '0x86a43a57cc762472b01d50009c4ed7c1ccd77c28', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 0.13962994829812905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f010b2bc50ee94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:07:43.000Z'}}, {'blockNum': '0x9793e1', 'uniqueId': '0xca7a53f7e0983153b9c404a77a32a49f83d19a18d363635e115d4a0109393d64:log:56', 'hash': '0xca7a53f7e0983153b9c404a77a32a49f83d19a18d363635e115d4a0109393d64', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 0.13962994829812905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f010b2bc50ee94', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:07:43.000Z'}}, {'blockNum': '0x9793ed', 'uniqueId': '0xc14fc14deb3a77957002c7ecf7cf0d8c9c3379a927ffdfb2d8a554b4babb820f:log:29', 'hash': '0xc14fc14deb3a77957002c7ecf7cf0d8c9c3379a927ffdfb2d8a554b4babb820f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 71.30234730753513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03dd84d319a5294531', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:11:27.000Z'}}, {'blockNum': '0x9793ed', 'uniqueId': '0xc14fc14deb3a77957002c7ecf7cf0d8c9c3379a927ffdfb2d8a554b4babb820f:log:35', 'hash': '0xc14fc14deb3a77957002c7ecf7cf0d8c9c3379a927ffdfb2d8a554b4babb820f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 71.30234730753513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03dd84d319a5294531', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:11:27.000Z'}}, {'blockNum': '0x9793f3', 'uniqueId': '0x32a91ef840a5ec01ac96a4ea4ef22b2ba0148bfeceb12ffa2bf8aafd4e65d245:log:58', 'hash': '0x32a91ef840a5ec01ac96a4ea4ef22b2ba0148bfeceb12ffa2bf8aafd4e65d245', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 597.5323409905659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20646d5244d643de8f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:13:01.000Z'}}, {'blockNum': '0x9793f3', 'uniqueId': '0x32a91ef840a5ec01ac96a4ea4ef22b2ba0148bfeceb12ffa2bf8aafd4e65d245:log:64', 'hash': '0x32a91ef840a5ec01ac96a4ea4ef22b2ba0148bfeceb12ffa2bf8aafd4e65d245', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 597.5323409905659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20646d5244d643de8f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:13:01.000Z'}}, {'blockNum': '0x979401', 'uniqueId': '0x8cddc84235baf736047b5b17057b2c45abcddd89ab78d284c3ccfb36b69362ec:log:42', 'hash': '0x8cddc84235baf736047b5b17057b2c45abcddd89ab78d284c3ccfb36b69362ec', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 352.3768886357046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131a36313dcc8dd00f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:16:01.000Z'}}, {'blockNum': '0x979401', 'uniqueId': '0x8cddc84235baf736047b5b17057b2c45abcddd89ab78d284c3ccfb36b69362ec:log:48', 'hash': '0x8cddc84235baf736047b5b17057b2c45abcddd89ab78d284c3ccfb36b69362ec', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x810c99c5de0a673e4bc86090f9bfe96a6d1b49a7', 'value': 352.3768886357046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131a36313dcc8dd00f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:16:01.000Z'}}, {'blockNum': '0x979401', 'uniqueId': '0xaa3ac0fdaf747a4d5762a4a78014d66ac7074abee14ffc704dd84bcddf5fb5f5:log:165', 'hash': '0xaa3ac0fdaf747a4d5762a4a78014d66ac7074abee14ffc704dd84bcddf5fb5f5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6769.582705270958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016efad513a8575c9c10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:16:01.000Z'}}, {'blockNum': '0x979401', 'uniqueId': '0xaa3ac0fdaf747a4d5762a4a78014d66ac7074abee14ffc704dd84bcddf5fb5f5:log:171', 'hash': '0xaa3ac0fdaf747a4d5762a4a78014d66ac7074abee14ffc704dd84bcddf5fb5f5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xdba193795e33b445b8c215252b0055a58db4f0af', 'value': 6769.582705270958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x016efad513a8575c9c10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:16:01.000Z'}}, {'blockNum': '0x979416', 'uniqueId': '0xeecba8d9186bb6e0ab6dcded729c9f29c080492b062c30d1e05e41621d9a6152:log:137', 'hash': '0xeecba8d9186bb6e0ab6dcded729c9f29c080492b062c30d1e05e41621d9a6152', 'from': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 73.23416867077403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f85408651286c79b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:19:57.000Z'}}, {'blockNum': '0x979416', 'uniqueId': '0xeecba8d9186bb6e0ab6dcded729c9f29c080492b062c30d1e05e41621d9a6152:log:143', 'hash': '0xeecba8d9186bb6e0ab6dcded729c9f29c080492b062c30d1e05e41621d9a6152', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 73.23416867077403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03f85408651286c79b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:19:57.000Z'}}, {'blockNum': '0x979421', 'uniqueId': '0x87573cebe4e4753922caa7f6562f6284ccb51a9b8b7be2838688dcf0c8a914df:log:10', 'hash': '0x87573cebe4e4753922caa7f6562f6284ccb51a9b8b7be2838688dcf0c8a914df', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 71.20726011609422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03dc3301cda8a303e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:21:34.000Z'}}, {'blockNum': '0x979421', 'uniqueId': '0x87573cebe4e4753922caa7f6562f6284ccb51a9b8b7be2838688dcf0c8a914df:log:16', 'hash': '0x87573cebe4e4753922caa7f6562f6284ccb51a9b8b7be2838688dcf0c8a914df', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 71.20726011609422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03dc3301cda8a303e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:21:34.000Z'}}, {'blockNum': '0x97942e', 'uniqueId': '0x2378e0e4dc3765fcf9271122c43d67fa6e3c93779486fe7aeb8bc5e076c871be:log:83', 'hash': '0x2378e0e4dc3765fcf9271122c43d67fa6e3c93779486fe7aeb8bc5e076c871be', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 447.5996277920765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1843b151fe0fc783c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:24:59.000Z'}}, {'blockNum': '0x97942e', 'uniqueId': '0x2378e0e4dc3765fcf9271122c43d67fa6e3c93779486fe7aeb8bc5e076c871be:log:87', 'hash': '0x2378e0e4dc3765fcf9271122c43d67fa6e3c93779486fe7aeb8bc5e076c871be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 447.5996277920765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1843b151fe0fc783c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:24:59.000Z'}}, {'blockNum': '0x979436', 'uniqueId': '0x51aaa18e8d49c24b23b42fe92cae4d965b1d3aa4b1837693dd50f0107fb237c7:log:41', 'hash': '0x51aaa18e8d49c24b23b42fe92cae4d965b1d3aa4b1837693dd50f0107fb237c7', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2881.3406867241974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9c32a2789413dde239', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:26:21.000Z'}}, {'blockNum': '0x979436', 'uniqueId': '0x51aaa18e8d49c24b23b42fe92cae4d965b1d3aa4b1837693dd50f0107fb237c7:log:47', 'hash': '0x51aaa18e8d49c24b23b42fe92cae4d965b1d3aa4b1837693dd50f0107fb237c7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2881.3406867241974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9c32a2789413dde239', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:26:21.000Z'}}, {'blockNum': '0x979438', 'uniqueId': '0x18c27deec4d76d4a1eabb2bd85eb512e4e8cdf30c524ad837e2085c5241273e9:log:115', 'hash': '0x18c27deec4d76d4a1eabb2bd85eb512e4e8cdf30c524ad837e2085c5241273e9', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 600.1691522776875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208905282a02e32582', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:27:08.000Z'}}, {'blockNum': '0x979438', 'uniqueId': '0x18c27deec4d76d4a1eabb2bd85eb512e4e8cdf30c524ad837e2085c5241273e9:log:121', 'hash': '0x18c27deec4d76d4a1eabb2bd85eb512e4e8cdf30c524ad837e2085c5241273e9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 600.1691522776875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x208905282a02e32582', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:27:08.000Z'}}, {'blockNum': '0x979446', 'uniqueId': '0x5c378967cc459c78da3f9909110992d9f5394ddc5250d2ce6e8b442a861c46bf:log:92', 'hash': '0x5c378967cc459c78da3f9909110992d9f5394ddc5250d2ce6e8b442a861c46bf', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 667.9077693954799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2435151189c5190ce7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:31:23.000Z'}}, {'blockNum': '0x979446', 'uniqueId': '0x5c378967cc459c78da3f9909110992d9f5394ddc5250d2ce6e8b442a861c46bf:log:98', 'hash': '0x5c378967cc459c78da3f9909110992d9f5394ddc5250d2ce6e8b442a861c46bf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 667.9077693954799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2435151189c5190ce7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:31:23.000Z'}}, {'blockNum': '0x979455', 'uniqueId': '0xe68ca1df425893df3d648c2f7f20793597790f8137e72640787112d03bce6a97:log:76', 'hash': '0xe68ca1df425893df3d648c2f7f20793597790f8137e72640787112d03bce6a97', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 667.8113102918311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2433be607e94c17fec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:34:37.000Z'}}, {'blockNum': '0x979455', 'uniqueId': '0xe68ca1df425893df3d648c2f7f20793597790f8137e72640787112d03bce6a97:log:82', 'hash': '0xe68ca1df425893df3d648c2f7f20793597790f8137e72640787112d03bce6a97', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 667.8113102918311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2433be607e94c17fec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:34:37.000Z'}}, {'blockNum': '0x979470', 'uniqueId': '0x3a3dd2521fcb3ebb1e3b25e98007687f5df8ef391b4240dc5508319ef6be196d:log:88', 'hash': '0x3a3dd2521fcb3ebb1e3b25e98007687f5df8ef391b4240dc5508319ef6be196d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 881.3632464476527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fc75f42fb4566981c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:40:26.000Z'}}, {'blockNum': '0x979470', 'uniqueId': '0x3a3dd2521fcb3ebb1e3b25e98007687f5df8ef391b4240dc5508319ef6be196d:log:94', 'hash': '0x3a3dd2521fcb3ebb1e3b25e98007687f5df8ef391b4240dc5508319ef6be196d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 881.3632464476527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fc75f42fb4566981c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:40:26.000Z'}}, {'blockNum': '0x979494', 'uniqueId': '0x864a69e8d9b4b54c598a566b4b244dad51eb91323f07855e9c7cf34537f3694a:log:137', 'hash': '0x864a69e8d9b4b54c598a566b4b244dad51eb91323f07855e9c7cf34537f3694a', 'from': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 89.4217130180717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8f9be36a1163f5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:46:57.000Z'}}, {'blockNum': '0x979494', 'uniqueId': '0x864a69e8d9b4b54c598a566b4b244dad51eb91323f07855e9c7cf34537f3694a:log:141', 'hash': '0x864a69e8d9b4b54c598a566b4b244dad51eb91323f07855e9c7cf34537f3694a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 89.4217130180717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d8f9be36a1163f5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:46:57.000Z'}}, {'blockNum': '0x979495', 'uniqueId': '0x3db905a984d6e3b0e65a8a0018f64ff1680b52cd971d0c88a0f74e41c74122b9:log:50', 'hash': '0x3db905a984d6e3b0e65a8a0018f64ff1680b52cd971d0c88a0f74e41c74122b9', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1358.153147029825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49a029436b7b9a29ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:47:04.000Z'}}, {'blockNum': '0x979495', 'uniqueId': '0x3db905a984d6e3b0e65a8a0018f64ff1680b52cd971d0c88a0f74e41c74122b9:log:56', 'hash': '0x3db905a984d6e3b0e65a8a0018f64ff1680b52cd971d0c88a0f74e41c74122b9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 1358.153147029825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49a029436b7b9a29ae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:47:04.000Z'}}, {'blockNum': '0x979499', 'uniqueId': '0xbf336f24ab3353722aa51773fb6bf367939b1b4645508e189b0aac19363f817c:log:116', 'hash': '0xbf336f24ab3353722aa51773fb6bf367939b1b4645508e189b0aac19363f817c', 'from': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 96.22968148580277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0537748176f241fef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:48:48.000Z'}}, {'blockNum': '0x979499', 'uniqueId': '0xbf336f24ab3353722aa51773fb6bf367939b1b4645508e189b0aac19363f817c:log:120', 'hash': '0xbf336f24ab3353722aa51773fb6bf367939b1b4645508e189b0aac19363f817c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 96.22968148580277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0537748176f241fef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:48:48.000Z'}}, {'blockNum': '0x9794ae', 'uniqueId': '0x6036218cae71959c3766d4cea6384d0eb5b871cfcb11fd4faa6f97c7ecd6ef85:log:32', 'hash': '0x6036218cae71959c3766d4cea6384d0eb5b871cfcb11fd4faa6f97c7ecd6ef85', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 463.957284517826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1926b3641e2fdc116c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:55:04.000Z'}}, {'blockNum': '0x9794ae', 'uniqueId': '0x6036218cae71959c3766d4cea6384d0eb5b871cfcb11fd4faa6f97c7ecd6ef85:log:38', 'hash': '0x6036218cae71959c3766d4cea6384d0eb5b871cfcb11fd4faa6f97c7ecd6ef85', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 463.957284517826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1926b3641e2fdc116c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:55:04.000Z'}}, {'blockNum': '0x9794b6', 'uniqueId': '0xf8828dece4f4a1ae48b68d0761ace398dc2271f9aed288e2454fe6d7e9c2cc0d:log:85', 'hash': '0xf8828dece4f4a1ae48b68d0761ace398dc2271f9aed288e2454fe6d7e9c2cc0d', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1348.7265601774384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x491d574c9f2eba6c17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:57:05.000Z'}}, {'blockNum': '0x9794b6', 'uniqueId': '0xf8828dece4f4a1ae48b68d0761ace398dc2271f9aed288e2454fe6d7e9c2cc0d:log:91', 'hash': '0xf8828dece4f4a1ae48b68d0761ace398dc2271f9aed288e2454fe6d7e9c2cc0d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1348.7265601774384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x491d574c9f2eba6c17', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T07:57:05.000Z'}}, {'blockNum': '0x9794d7', 'uniqueId': '0x5fb627cc64c7124eac559410e02540629bef3ac180a4340a7c0fbdd302112f99:log:40', 'hash': '0x5fb627cc64c7124eac559410e02540629bef3ac180a4340a7c0fbdd302112f99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 586.09675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc5b9f0d9f0ece000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:04:23.000Z'}}, {'blockNum': '0x9794ef', 'uniqueId': '0x325a34063fe04232bca79a3a85a171c46f0ecd1f5de3e8a1f02acabd60bdb849:log:22', 'hash': '0x325a34063fe04232bca79a3a85a171c46f0ecd1f5de3e8a1f02acabd60bdb849', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x457e9b392de472d0171d1c5acade5b3451138d71', 'value': 586.09674999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc5b9f0d79ce0fc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:10:29.000Z'}}, {'blockNum': '0x979508', 'uniqueId': '0xea3e9da6b5e32fbdd295a3270571daae4cdc7a2fdd22187a5498638b37241683:log:105', 'hash': '0xea3e9da6b5e32fbdd295a3270571daae4cdc7a2fdd22187a5498638b37241683', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1937.11555054653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6902e0e9f1ab26d620', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:15:58.000Z'}}, {'blockNum': '0x979508', 'uniqueId': '0xea3e9da6b5e32fbdd295a3270571daae4cdc7a2fdd22187a5498638b37241683:log:111', 'hash': '0xea3e9da6b5e32fbdd295a3270571daae4cdc7a2fdd22187a5498638b37241683', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 1937.11555054653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6902e0e9f1ab26d620', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:15:58.000Z'}}, {'blockNum': '0x97950c', 'uniqueId': '0x67a093cf3143ec5123ce86627ce7921b3e5722a51d2863658baa050f2161844d:log:35', 'hash': '0x67a093cf3143ec5123ce86627ce7921b3e5722a51d2863658baa050f2161844d', 'from': '0x457e9b392de472d0171d1c5acade5b3451138d71', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 586.09674999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc5b9f0d79ce0fc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:16:34.000Z'}}, {'blockNum': '0x979537', 'uniqueId': '0x68610b21f496727a0ef392a681eff7c4ccf71a67e60cd4ab82df94fe344134d1:log:38', 'hash': '0x68610b21f496727a0ef392a681eff7c4ccf71a67e60cd4ab82df94fe344134d1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd1ed9b54ca79b2ef87d13e1662ed5eb4ebbba894', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:27:17.000Z'}}, {'blockNum': '0x979537', 'uniqueId': '0xc39af2e0a97c86cf74089adb3b4f65826954c60c5691aecfbc72d884c972ceee:log:55', 'hash': '0xc39af2e0a97c86cf74089adb3b4f65826954c60c5691aecfbc72d884c972ceee', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.1063818174306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3040b51e46f82a0a99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:27:17.000Z'}}, {'blockNum': '0x979537', 'uniqueId': '0xc39af2e0a97c86cf74089adb3b4f65826954c60c5691aecfbc72d884c972ceee:log:61', 'hash': '0xc39af2e0a97c86cf74089adb3b4f65826954c60c5691aecfbc72d884c972ceee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 890.1063818174306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3040b51e46f82a0a99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:27:17.000Z'}}, {'blockNum': '0x979545', 'uniqueId': '0x762d869a0260a715708fa5cc142b3b2092929b0b732a1405c06cc08aeda9adcc:log:111', 'hash': '0x762d869a0260a715708fa5cc142b3b2092929b0b732a1405c06cc08aeda9adcc', 'from': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1249.6904780775417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bef074aae7f444c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:29:55.000Z'}}, {'blockNum': '0x979545', 'uniqueId': '0x762d869a0260a715708fa5cc142b3b2092929b0b732a1405c06cc08aeda9adcc:log:117', 'hash': '0x762d869a0260a715708fa5cc142b3b2092929b0b732a1405c06cc08aeda9adcc', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1249.6904780775417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bef074aae7f444c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:29:55.000Z'}}, {'blockNum': '0x97956e', 'uniqueId': '0xac203124f211639ed4aca18369c0d6a86076fb1155056b7bd0e25f590a85bbed:log:72', 'hash': '0xac203124f211639ed4aca18369c0d6a86076fb1155056b7bd0e25f590a85bbed', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 367.74434752643464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13ef7a5faea6efd683', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:38:30.000Z'}}, {'blockNum': '0x97956e', 'uniqueId': '0xac203124f211639ed4aca18369c0d6a86076fb1155056b7bd0e25f590a85bbed:log:78', 'hash': '0xac203124f211639ed4aca18369c0d6a86076fb1155056b7bd0e25f590a85bbed', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 367.74434752643464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13ef7a5faea6efd683', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:38:30.000Z'}}, {'blockNum': '0x97957b', 'uniqueId': '0x1c0ef676c1235cbd5ddd9da9266180a79e3c24d22d02adc1a84cc2f436142fb5:log:62', 'hash': '0x1c0ef676c1235cbd5ddd9da9266180a79e3c24d22d02adc1a84cc2f436142fb5', 'from': '0x9db89726ae2683d21a71ff1417638e72e6d8c0d9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 403.5564197057794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e0786996bf6da518', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:41:39.000Z'}}, {'blockNum': '0x97957b', 'uniqueId': '0x1c0ef676c1235cbd5ddd9da9266180a79e3c24d22d02adc1a84cc2f436142fb5:log:68', 'hash': '0x1c0ef676c1235cbd5ddd9da9266180a79e3c24d22d02adc1a84cc2f436142fb5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 403.5564197057794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15e0786996bf6da518', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:41:39.000Z'}}, {'blockNum': '0x979596', 'uniqueId': '0x6ab79827cd258bfbe7ca4a53b8e04b70e5ccf930fcd51467cb11cd58d2a89c4a:log:47', 'hash': '0x6ab79827cd258bfbe7ca4a53b8e04b70e5ccf930fcd51467cb11cd58d2a89c4a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.1751273841535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3041a95a0184920018', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:49:14.000Z'}}, {'blockNum': '0x979596', 'uniqueId': '0x6ab79827cd258bfbe7ca4a53b8e04b70e5ccf930fcd51467cb11cd58d2a89c4a:log:53', 'hash': '0x6ab79827cd258bfbe7ca4a53b8e04b70e5ccf930fcd51467cb11cd58d2a89c4a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 890.1751273841535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3041a95a0184920018', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:49:14.000Z'}}, {'blockNum': '0x9795b8', 'uniqueId': '0x63938b482a1c439e26d3464d4b0ca415c2cf73ba9b17c3deed38a616b6c4b2a6:log:135', 'hash': '0x63938b482a1c439e26d3464d4b0ca415c2cf73ba9b17c3deed38a616b6c4b2a6', 'from': '0x810c99c5de0a673e4bc86090f9bfe96a6d1b49a7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 464.8023439783726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19326da5384fd2ef5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:55:16.000Z'}}, {'blockNum': '0x9795b8', 'uniqueId': '0x63938b482a1c439e26d3464d4b0ca415c2cf73ba9b17c3deed38a616b6c4b2a6:log:141', 'hash': '0x63938b482a1c439e26d3464d4b0ca415c2cf73ba9b17c3deed38a616b6c4b2a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 464.8023439783726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19326da5384fd2ef5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:55:16.000Z'}}, {'blockNum': '0x9795c9', 'uniqueId': '0xf1e405db367a97617c5c99c8f315817b3cc00020b95ff5d130c9be4b10034aa4:log:56', 'hash': '0xf1e405db367a97617c5c99c8f315817b3cc00020b95ff5d130c9be4b10034aa4', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 532.1611158141676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cd938135292f7839b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:59:41.000Z'}}, {'blockNum': '0x9795c9', 'uniqueId': '0xf1e405db367a97617c5c99c8f315817b3cc00020b95ff5d130c9be4b10034aa4:log:62', 'hash': '0xf1e405db367a97617c5c99c8f315817b3cc00020b95ff5d130c9be4b10034aa4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 532.1611158141676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cd938135292f7839b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T08:59:41.000Z'}}, {'blockNum': '0x9795db', 'uniqueId': '0xa70d8528cc4f28c012b8941297db458531b9a03fa5ea638a03ecb47bb980bc5e:log:89', 'hash': '0xa70d8528cc4f28c012b8941297db458531b9a03fa5ea638a03ecb47bb980bc5e', 'from': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 804.3429507133494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b9a8034150ab956d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:02:17.000Z'}}, {'blockNum': '0x9795db', 'uniqueId': '0xa70d8528cc4f28c012b8941297db458531b9a03fa5ea638a03ecb47bb980bc5e:log:95', 'hash': '0xa70d8528cc4f28c012b8941297db458531b9a03fa5ea638a03ecb47bb980bc5e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 804.3429507133494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b9a8034150ab956d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:02:17.000Z'}}, {'blockNum': '0x9795f4', 'uniqueId': '0xdada61ae50a4093f2b8466305e526ce452838454e830db6661cd7b0469921207:log:99', 'hash': '0xdada61ae50a4093f2b8466305e526ce452838454e830db6661cd7b0469921207', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 224.85421445868684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c307aa4b8b388483d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:07:37.000Z'}}, {'blockNum': '0x9795f4', 'uniqueId': '0xdada61ae50a4093f2b8466305e526ce452838454e830db6661cd7b0469921207:log:105', 'hash': '0xdada61ae50a4093f2b8466305e526ce452838454e830db6661cd7b0469921207', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 224.85421445868684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c307aa4b8b388483d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:07:37.000Z'}}, {'blockNum': '0x97960e', 'uniqueId': '0x62220bbe9b25167d25332f7a4b9c93df31c0554bd956c23e7f7b3e71ac151982:log:126', 'hash': '0x62220bbe9b25167d25332f7a4b9c93df31c0554bd956c23e7f7b3e71ac151982', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 123.76069078087394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06b5864c8d8ef40579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:14:01.000Z'}}, {'blockNum': '0x97960e', 'uniqueId': '0x62220bbe9b25167d25332f7a4b9c93df31c0554bd956c23e7f7b3e71ac151982:log:132', 'hash': '0x62220bbe9b25167d25332f7a4b9c93df31c0554bd956c23e7f7b3e71ac151982', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 123.76069078087394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06b5864c8d8ef40579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:14:01.000Z'}}, {'blockNum': '0x979616', 'uniqueId': '0x7f625b689c95cebf0a8155cb4a38ece24b34b6c87292e399c0ff67a1c7df1848:log:243', 'hash': '0x7f625b689c95cebf0a8155cb4a38ece24b34b6c87292e399c0ff67a1c7df1848', 'from': '0xdba193795e33b445b8c215252b0055a58db4f0af', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1632.04095848994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58791e3cd2b0e9645f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:48.000Z'}}, {'blockNum': '0x979616', 'uniqueId': '0x7f625b689c95cebf0a8155cb4a38ece24b34b6c87292e399c0ff67a1c7df1848:log:249', 'hash': '0x7f625b689c95cebf0a8155cb4a38ece24b34b6c87292e399c0ff67a1c7df1848', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1632.04095848994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58791e3cd2b0e9645f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:48.000Z'}}, {'blockNum': '0x979617', 'uniqueId': '0x914f4e99096663af5de8682134290b8f64a1e94320856639478eb8100e7b656d:log:32', 'hash': '0x914f4e99096663af5de8682134290b8f64a1e94320856639478eb8100e7b656d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.5805969917384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304749de773be1ab78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:49.000Z'}}, {'blockNum': '0x979617', 'uniqueId': '0x914f4e99096663af5de8682134290b8f64a1e94320856639478eb8100e7b656d:log:38', 'hash': '0x914f4e99096663af5de8682134290b8f64a1e94320856639478eb8100e7b656d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbdc7310289dcd30d16e284d6f207a8e2f76a37ad', 'value': 890.5805969917384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304749de773be1ab78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:49.000Z'}}, {'blockNum': '0x979618', 'uniqueId': '0x1f684a248fa5f1d0f15f7359356782f187c8d5fe28992868d52bb24ade6af185:log:24', 'hash': '0x1f684a248fa5f1d0f15f7359356782f187c8d5fe28992868d52bb24ade6af185', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xecab1d996f242dbae8b0791df9951452e19402f7', 'value': 243.6594633291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d35744eef4552eb00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:15:56.000Z'}}, {'blockNum': '0x97962b', 'uniqueId': '0x25bd24d255aeea61ae9e9bacd044f64af077de414eeaa888291811cbf3d544aa:log:113', 'hash': '0x25bd24d255aeea61ae9e9bacd044f64af077de414eeaa888291811cbf3d544aa', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 44.52453197673859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0269e6e9ee88063a26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:19:41.000Z'}}, {'blockNum': '0x97962b', 'uniqueId': '0x25bd24d255aeea61ae9e9bacd044f64af077de414eeaa888291811cbf3d544aa:log:119', 'hash': '0x25bd24d255aeea61ae9e9bacd044f64af077de414eeaa888291811cbf3d544aa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 44.52453197673859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0269e6e9ee88063a26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:19:41.000Z'}}, {'blockNum': '0x97962b', 'uniqueId': '0xfea911d7f5ed45d2daddb3b5fe9063f6f6ff3ba066e00cad0512950bd3959ab9:log:139', 'hash': '0xfea911d7f5ed45d2daddb3b5fe9063f6f6ff3ba066e00cad0512950bd3959ab9', 'from': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1995.503046570194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c2d2af83a323151ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:19:41.000Z'}}, {'blockNum': '0x97962b', 'uniqueId': '0xfea911d7f5ed45d2daddb3b5fe9063f6f6ff3ba066e00cad0512950bd3959ab9:log:145', 'hash': '0xfea911d7f5ed45d2daddb3b5fe9063f6f6ff3ba066e00cad0512950bd3959ab9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1995.503046570194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c2d2af83a323151ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:19:41.000Z'}}, {'blockNum': '0x97963b', 'uniqueId': '0x9a9344dd41aa45f5b7e9ffeeb0dd52412addb78ceffaee89e089030b567665f5:log:47', 'hash': '0x9a9344dd41aa45f5b7e9ffeeb0dd52412addb78ceffaee89e089030b567665f5', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 873.4528246091803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f5997cc3b0bc3c666', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:22:32.000Z'}}, {'blockNum': '0x97963b', 'uniqueId': '0x9a9344dd41aa45f5b7e9ffeeb0dd52412addb78ceffaee89e089030b567665f5:log:51', 'hash': '0x9a9344dd41aa45f5b7e9ffeeb0dd52412addb78ceffaee89e089030b567665f5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 873.4528246091803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f5997cc3b0bc3c666', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:22:32.000Z'}}, {'blockNum': '0x979642', 'uniqueId': '0x8142b7db2206b28e19d0b9c21c7ea91bcbeef1a5adf37b2b4f8f48ad6de4a528:log:60', 'hash': '0x8142b7db2206b28e19d0b9c21c7ea91bcbeef1a5adf37b2b4f8f48ad6de4a528', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 686.2526661117174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2533ab3be7f9a9bba6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:23:58.000Z'}}, {'blockNum': '0x979642', 'uniqueId': '0x8142b7db2206b28e19d0b9c21c7ea91bcbeef1a5adf37b2b4f8f48ad6de4a528:log:66', 'hash': '0x8142b7db2206b28e19d0b9c21c7ea91bcbeef1a5adf37b2b4f8f48ad6de4a528', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 686.2526661117174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2533ab3be7f9a9bba6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:23:58.000Z'}}, {'blockNum': '0x979651', 'uniqueId': '0x232ee0ef712a7cb85cc5dc25d4d1ce2908a77a1df5e05245c3d7993758e3be01:log:41', 'hash': '0x232ee0ef712a7cb85cc5dc25d4d1ce2908a77a1df5e05245c3d7993758e3be01', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 877.592911325385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f930c5729f6759fa4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:27:24.000Z'}}, {'blockNum': '0x979651', 'uniqueId': '0x232ee0ef712a7cb85cc5dc25d4d1ce2908a77a1df5e05245c3d7993758e3be01:log:47', 'hash': '0x232ee0ef712a7cb85cc5dc25d4d1ce2908a77a1df5e05245c3d7993758e3be01', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 877.592911325385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f930c5729f6759fa4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:27:24.000Z'}}, {'blockNum': '0x97965a', 'uniqueId': '0xf166ef84e5df868c7aded607e0f4fb9640a8ad76d8b7826ba4ac11b82ff7cb15:log:140', 'hash': '0xf166ef84e5df868c7aded607e0f4fb9640a8ad76d8b7826ba4ac11b82ff7cb15', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 267.3038545374758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7d960f771eee29de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:29:42.000Z'}}, {'blockNum': '0x97965a', 'uniqueId': '0xf166ef84e5df868c7aded607e0f4fb9640a8ad76d8b7826ba4ac11b82ff7cb15:log:146', 'hash': '0xf166ef84e5df868c7aded607e0f4fb9640a8ad76d8b7826ba4ac11b82ff7cb15', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 267.3038545374758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7d960f771eee29de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:29:42.000Z'}}, {'blockNum': '0x97965b', 'uniqueId': '0xac6557aa7d92a81ab8838aca4031a6a958abc1e4aed7062e113cf7492b0e9606:log:88', 'hash': '0xac6557aa7d92a81ab8838aca4031a6a958abc1e4aed7062e113cf7492b0e9606', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.639347723172655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ee9865edca552b15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:29:47.000Z'}}, {'blockNum': '0x97965b', 'uniqueId': '0xac6557aa7d92a81ab8838aca4031a6a958abc1e4aed7062e113cf7492b0e9606:log:94', 'hash': '0xac6557aa7d92a81ab8838aca4031a6a958abc1e4aed7062e113cf7492b0e9606', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 35.639347723172655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01ee9865edca552b15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:29:47.000Z'}}, {'blockNum': '0x97965e', 'uniqueId': '0x3ebf8e072c4fc99adc2332b156cbec0bc70e7cfb11f833aa7fcf86da0ba8c9ef:log:49', 'hash': '0x3ebf8e072c4fc99adc2332b156cbec0bc70e7cfb11f833aa7fcf86da0ba8c9ef', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 897.2969408472743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30a47f1d9e1e79dc40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:32:09.000Z'}}, {'blockNum': '0x97965e', 'uniqueId': '0x3ebf8e072c4fc99adc2332b156cbec0bc70e7cfb11f833aa7fcf86da0ba8c9ef:log:55', 'hash': '0x3ebf8e072c4fc99adc2332b156cbec0bc70e7cfb11f833aa7fcf86da0ba8c9ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 897.2969408472743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30a47f1d9e1e79dc40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:32:09.000Z'}}, {'blockNum': '0x97966e', 'uniqueId': '0x1e979dcef47125b2c4a9865b8c84b8ff712c9d8948d6e6e768c555c229fd6bd6:log:103', 'hash': '0x1e979dcef47125b2c4a9865b8c84b8ff712c9d8948d6e6e768c555c229fd6bd6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 647.6510370745054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x231bf6b2d1273d07ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:35:29.000Z'}}, {'blockNum': '0x97966e', 'uniqueId': '0x1e979dcef47125b2c4a9865b8c84b8ff712c9d8948d6e6e768c555c229fd6bd6:log:109', 'hash': '0x1e979dcef47125b2c4a9865b8c84b8ff712c9d8948d6e6e768c555c229fd6bd6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 647.6510370745054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x231bf6b2d1273d07ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:35:29.000Z'}}, {'blockNum': '0x97966e', 'uniqueId': '0xf89f21d80e70c91c1a26f51ccadac9521d0e1532b247e58719a9f083c7a075a2:log:124', 'hash': '0xf89f21d80e70c91c1a26f51ccadac9521d0e1532b247e58719a9f083c7a075a2', 'from': '0x8591afdf50093938a7f608e2f15b114dcddd8b9a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4093.646806382491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddeac30155a4a6c592', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:35:29.000Z'}}, {'blockNum': '0x97966e', 'uniqueId': '0xf89f21d80e70c91c1a26f51ccadac9521d0e1532b247e58719a9f083c7a075a2:log:130', 'hash': '0xf89f21d80e70c91c1a26f51ccadac9521d0e1532b247e58719a9f083c7a075a2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 4093.646806382491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xddeac30155a4a6c592', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:35:29.000Z'}}, {'blockNum': '0x979691', 'uniqueId': '0x44f0c2a5eed3f515616e30d3d49696aa7114f28a627bff70b73bf3cda163792f:log:164', 'hash': '0x44f0c2a5eed3f515616e30d3d49696aa7114f28a627bff70b73bf3cda163792f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2674.67156589794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90fe86422ab886a8d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:41:54.000Z'}}, {'blockNum': '0x979691', 'uniqueId': '0x44f0c2a5eed3f515616e30d3d49696aa7114f28a627bff70b73bf3cda163792f:log:170', 'hash': '0x44f0c2a5eed3f515616e30d3d49696aa7114f28a627bff70b73bf3cda163792f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 2674.67156589794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x90fe86422ab886a8d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:41:54.000Z'}}, {'blockNum': '0x9796ac', 'uniqueId': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06:log:85', 'hash': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 696.8497361655915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25c6bb96f976c1a880', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:48:19.000Z'}}, {'blockNum': '0x9796ac', 'uniqueId': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06:log:90', 'hash': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 696.8497361655915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25c6bb96f976c1a880', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:48:19.000Z'}}, {'blockNum': '0x9796ac', 'uniqueId': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06:log:92', 'hash': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 696.8497361655915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25c6bb96f976c1a880', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:48:19.000Z'}}, {'blockNum': '0x9796ac', 'uniqueId': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06:log:94', 'hash': '0x1f34077fd1f946d6526e14f04fde835204fff76661e30cec856be74725192e06', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 696.8497361655915, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25c6bb96f976c1a880', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:48:19.000Z'}}, {'blockNum': '0x9796d4', 'uniqueId': '0x92f043d4ef54dce6798e5622d3c0d23d6d6f654131817dc1854272b3e3a4cd42:log:94', 'hash': '0x92f043d4ef54dce6798e5622d3c0d23d6d6f654131817dc1854272b3e3a4cd42', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 356.488085690909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135344192e59a4bfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:56:38.000Z'}}, {'blockNum': '0x9796d4', 'uniqueId': '0x92f043d4ef54dce6798e5622d3c0d23d6d6f654131817dc1854272b3e3a4cd42:log:100', 'hash': '0x92f043d4ef54dce6798e5622d3c0d23d6d6f654131817dc1854272b3e3a4cd42', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 356.488085690909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x135344192e59a4bfc4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:56:38.000Z'}}, {'blockNum': '0x9796d9', 'uniqueId': '0x022a1d15ca90d50901af867148366cd69a9efee8f87c8d3f7755d645a762fc1a:log:46', 'hash': '0x022a1d15ca90d50901af867148366cd69a9efee8f87c8d3f7755d645a762fc1a', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 202.65931459136777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0afc7684e2c29d1f7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:58:37.000Z'}}, {'blockNum': '0x9796d9', 'uniqueId': '0x022a1d15ca90d50901af867148366cd69a9efee8f87c8d3f7755d645a762fc1a:log:52', 'hash': '0x022a1d15ca90d50901af867148366cd69a9efee8f87c8d3f7755d645a762fc1a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 202.65931459136777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0afc7684e2c29d1f7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:58:37.000Z'}}, {'blockNum': '0x9796da', 'uniqueId': '0x5180e3c7e8b19344086db6f27c303ea48b38ce65f79f8977d995017f6fc48969:log:12', 'hash': '0x5180e3c7e8b19344086db6f27c303ea48b38ce65f79f8977d995017f6fc48969', 'from': '0x8f20a07e0541ca2db9152d7e521aee5d639b211d', 'to': '0x1d939bde3f98c8e69397dd257e1490e43b94c795', 'value': 643.696088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e513e59684958000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T09:58:40.000Z'}}, {'blockNum': '0x9796fe', 'uniqueId': '0x0307f12643f3a05cebca666450ec5b057050bda44926fd89cbea0ffb2a8205c0:log:114', 'hash': '0x0307f12643f3a05cebca666450ec5b057050bda44926fd89cbea0ffb2a8205c0', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 891.1389440000006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304f09841c8cc109fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:48.000Z'}}, {'blockNum': '0x9796fe', 'uniqueId': '0x0307f12643f3a05cebca666450ec5b057050bda44926fd89cbea0ffb2a8205c0:log:120', 'hash': '0x0307f12643f3a05cebca666450ec5b057050bda44926fd89cbea0ffb2a8205c0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8591afdf50093938a7f608e2f15b114dcddd8b9a', 'value': 891.1389440000006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304f09841c8cc109fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:48.000Z'}}, {'blockNum': '0x9796ff', 'uniqueId': '0x461cfdffb6efee84a0a096cdf97ee5849f54acf9540e72d2263f51787a1f254f:log:106', 'hash': '0x461cfdffb6efee84a0a096cdf97ee5849f54acf9540e72d2263f51787a1f254f', 'from': '0xdba193795e33b445b8c215252b0055a58db4f0af', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1611.9710068480265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5762977223cd639368', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:58.000Z'}}, {'blockNum': '0x9796ff', 'uniqueId': '0x461cfdffb6efee84a0a096cdf97ee5849f54acf9540e72d2263f51787a1f254f:log:112', 'hash': '0x461cfdffb6efee84a0a096cdf97ee5849f54acf9540e72d2263f51787a1f254f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1611.9710068480265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5762977223cd639368', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:58.000Z'}}, {'blockNum': '0x9796ff', 'uniqueId': '0x713b7cee963444e4a5c3fe6f68b6ff07bd29e2e5128edb1e045b91212aa4a93e:log:126', 'hash': '0x713b7cee963444e4a5c3fe6f68b6ff07bd29e2e5128edb1e045b91212aa4a93e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 190.02944606569793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a4d303660aa2d456c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:58.000Z'}}, {'blockNum': '0x9796ff', 'uniqueId': '0x713b7cee963444e4a5c3fe6f68b6ff07bd29e2e5128edb1e045b91212aa4a93e:log:132', 'hash': '0x713b7cee963444e4a5c3fe6f68b6ff07bd29e2e5128edb1e045b91212aa4a93e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'value': 190.02944606569793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a4d303660aa2d456c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:05:58.000Z'}}, {'blockNum': '0x979716', 'uniqueId': '0x86869534d6f5ec8d2e90aa41b49f29037bab3d6fbc055abb69280676acb3e6d3:log:176', 'hash': '0x86869534d6f5ec8d2e90aa41b49f29037bab3d6fbc055abb69280676acb3e6d3', 'from': '0x8b2b3d18230661157d399226686d91b2fc340a30', 'to': '0xb8b7016d62db206269149f71fa0c2b5e9cd828b1', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a2241af62c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:11:58.000Z'}}, {'blockNum': '0x979718', 'uniqueId': '0x27a5eb93cb9001ff8e3110f676e75a852a83233762498ae6cf4fb446d7a35dae:log:46', 'hash': '0x27a5eb93cb9001ff8e3110f676e75a852a83233762498ae6cf4fb446d7a35dae', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 956.3792957938898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d86dce68ed0ab810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:12:07.000Z'}}, {'blockNum': '0x979718', 'uniqueId': '0x27a5eb93cb9001ff8e3110f676e75a852a83233762498ae6cf4fb446d7a35dae:log:52', 'hash': '0x27a5eb93cb9001ff8e3110f676e75a852a83233762498ae6cf4fb446d7a35dae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 956.3792957938898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d86dce68ed0ab810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:12:07.000Z'}}, {'blockNum': '0x979725', 'uniqueId': '0x295795f7fac255480cc10bd8a32dbdaed11ce6fed02ae8cce5b8e2836c8a7428:log:165', 'hash': '0x295795f7fac255480cc10bd8a32dbdaed11ce6fed02ae8cce5b8e2836c8a7428', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1077.2706500293175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a66222c93bf9dba58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:15:05.000Z'}}, {'blockNum': '0x979725', 'uniqueId': '0x295795f7fac255480cc10bd8a32dbdaed11ce6fed02ae8cce5b8e2836c8a7428:log:169', 'hash': '0x295795f7fac255480cc10bd8a32dbdaed11ce6fed02ae8cce5b8e2836c8a7428', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1077.2706500293175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a66222c93bf9dba58', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:15:05.000Z'}}, {'blockNum': '0x97972e', 'uniqueId': '0xb3831336f769e5d9111c6ac11df9134090e45df8972a92fe3388ed94a8dab346:log:93', 'hash': '0xb3831336f769e5d9111c6ac11df9134090e45df8972a92fe3388ed94a8dab346', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8.91716754432553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bc024a2ea2a5e8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:17:16.000Z'}}, {'blockNum': '0x97972e', 'uniqueId': '0xb3831336f769e5d9111c6ac11df9134090e45df8972a92fe3388ed94a8dab346:log:99', 'hash': '0xb3831336f769e5d9111c6ac11df9134090e45df8972a92fe3388ed94a8dab346', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 8.91716754432553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7bc024a2ea2a5e8a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:17:16.000Z'}}, {'blockNum': '0x979749', 'uniqueId': '0x2c9d663175b1438c70982e3e73da9de4a280a48d8f2fe01234ff983466c2c7a8:log:152', 'hash': '0x2c9d663175b1438c70982e3e73da9de4a280a48d8f2fe01234ff983466c2c7a8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8908.566242608596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2ef31260bb1c79e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:22:48.000Z'}}, {'blockNum': '0x979749', 'uniqueId': '0x2c9d663175b1438c70982e3e73da9de4a280a48d8f2fe01234ff983466c2c7a8:log:157', 'hash': '0x2c9d663175b1438c70982e3e73da9de4a280a48d8f2fe01234ff983466c2c7a8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 8908.566242608596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2ef31260bb1c79e60', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:22:48.000Z'}}, {'blockNum': '0x97974d', 'uniqueId': '0xee1ed1c0a4b8502dabc541d60e507412d223628bf8a92ea3c678302d72d4bcae:log:124', 'hash': '0xee1ed1c0a4b8502dabc541d60e507412d223628bf8a92ea3c678302d72d4bcae', 'from': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8.881552335211701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b419ccada55a290', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:24:14.000Z'}}, {'blockNum': '0x97974d', 'uniqueId': '0xee1ed1c0a4b8502dabc541d60e507412d223628bf8a92ea3c678302d72d4bcae:log:130', 'hash': '0xee1ed1c0a4b8502dabc541d60e507412d223628bf8a92ea3c678302d72d4bcae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 8.881552335211701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b419ccada55a290', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:24:14.000Z'}}, {'blockNum': '0x979774', 'uniqueId': '0x7a84020e23385975385f830d76af824d5a8b8879225bcc4695af14f0bc41fa09:log:75', 'hash': '0x7a84020e23385975385f830d76af824d5a8b8879225bcc4695af14f0bc41fa09', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 531.5026178396547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cd0149ee752d127a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:33:24.000Z'}}, {'blockNum': '0x979774', 'uniqueId': '0x7a84020e23385975385f830d76af824d5a8b8879225bcc4695af14f0bc41fa09:log:81', 'hash': '0x7a84020e23385975385f830d76af824d5a8b8879225bcc4695af14f0bc41fa09', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 531.5026178396547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cd0149ee752d127a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:33:24.000Z'}}, {'blockNum': '0x97978c', 'uniqueId': '0x51662e520b395ca8350fc0af2541ab28de210d5d439fd54548da9cd1da95fe8c:log:18', 'hash': '0x51662e520b395ca8350fc0af2541ab28de210d5d439fd54548da9cd1da95fe8c', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 873.3007439731426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f577b7fb2ab84b8a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:39:35.000Z'}}, {'blockNum': '0x97978c', 'uniqueId': '0x51662e520b395ca8350fc0af2541ab28de210d5d439fd54548da9cd1da95fe8c:log:24', 'hash': '0x51662e520b395ca8350fc0af2541ab28de210d5d439fd54548da9cd1da95fe8c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 873.3007439731426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f577b7fb2ab84b8a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:39:35.000Z'}}, {'blockNum': '0x97979d', 'uniqueId': '0xb67c1db9ee328258ed6ae0daa567a32c3d2478d236f589c3375f50e5a645d20b:log:73', 'hash': '0xb67c1db9ee328258ed6ae0daa567a32c3d2478d236f589c3375f50e5a645d20b', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 879.4005724874672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac227169d6a3abaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:42:49.000Z'}}, {'blockNum': '0x97979d', 'uniqueId': '0xb67c1db9ee328258ed6ae0daa567a32c3d2478d236f589c3375f50e5a645d20b:log:79', 'hash': '0xb67c1db9ee328258ed6ae0daa567a32c3d2478d236f589c3375f50e5a645d20b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 879.4005724874672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac227169d6a3abaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:42:49.000Z'}}, {'blockNum': '0x9797a5', 'uniqueId': '0x4dad27361a8c88e64b7dbe087e93a4d208fe5dac6f129925f5ee62fa7d7ae4db:log:23', 'hash': '0x4dad27361a8c88e64b7dbe087e93a4d208fe5dac6f129925f5ee62fa7d7ae4db', 'from': '0x1d939bde3f98c8e69397dd257e1490e43b94c795', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 643.696088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22e513e59684958000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:44:24.000Z'}}, {'blockNum': '0x9797a5', 'uniqueId': '0xaa4e347845e6a4fcd89d5333ccac06aebe0598245d969300fce0137f66bf19f5:log:33', 'hash': '0xaa4e347845e6a4fcd89d5333ccac06aebe0598245d969300fce0137f66bf19f5', 'from': '0xb8b7016d62db206269149f71fa0c2b5e9cd828b1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a2241af62c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:44:24.000Z'}}, {'blockNum': '0x9797ac', 'uniqueId': '0x6d30eb590fae12a9a619e0421df5675d4e0a10189ed617a38e8896b5df438e98:log:75', 'hash': '0x6d30eb590fae12a9a619e0421df5675d4e0a10189ed617a38e8896b5df438e98', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 358.958901495866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13758e33109186dd8f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:46:05.000Z'}}, {'blockNum': '0x9797ac', 'uniqueId': '0x6d30eb590fae12a9a619e0421df5675d4e0a10189ed617a38e8896b5df438e98:log:81', 'hash': '0x6d30eb590fae12a9a619e0421df5675d4e0a10189ed617a38e8896b5df438e98', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 358.958901495866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13758e33109186dd8f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:46:05.000Z'}}, {'blockNum': '0x9797e1', 'uniqueId': '0x3c8b78808a5931a53320a1ff2f91e29b706f70bbf7b8e19eff56293828f68ba3:log:125', 'hash': '0x3c8b78808a5931a53320a1ff2f91e29b706f70bbf7b8e19eff56293828f68ba3', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 583.79497191365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fa5c861e08c41691f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:57:30.000Z'}}, {'blockNum': '0x9797e1', 'uniqueId': '0x3c8b78808a5931a53320a1ff2f91e29b706f70bbf7b8e19eff56293828f68ba3:log:131', 'hash': '0x3c8b78808a5931a53320a1ff2f91e29b706f70bbf7b8e19eff56293828f68ba3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 583.79497191365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fa5c861e08c41691f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:57:30.000Z'}}, {'blockNum': '0x9797f0', 'uniqueId': '0xc0c4a53f52400b35a41358c7123b43dc908ff4618261753fad70350680221209:log:12', 'hash': '0xc0c4a53f52400b35a41358c7123b43dc908ff4618261753fad70350680221209', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 748.9087089008005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28993236db5ca47f6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:59:58.000Z'}}, {'blockNum': '0x9797f0', 'uniqueId': '0xc0c4a53f52400b35a41358c7123b43dc908ff4618261753fad70350680221209:log:18', 'hash': '0xc0c4a53f52400b35a41358c7123b43dc908ff4618261753fad70350680221209', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 748.9087089008005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28993236db5ca47f6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T10:59:58.000Z'}}, {'blockNum': '0x9797f3', 'uniqueId': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e:log:84', 'hash': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 772.5066257745189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e0aedb39f5d04b4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:00:37.000Z'}}, {'blockNum': '0x9797f3', 'uniqueId': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e:log:89', 'hash': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 772.5066257745189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e0aedb39f5d04b4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:00:37.000Z'}}, {'blockNum': '0x9797f3', 'uniqueId': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e:log:91', 'hash': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 772.5066257745189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e0aedb39f5d04b4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:00:37.000Z'}}, {'blockNum': '0x9797f3', 'uniqueId': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e:log:93', 'hash': '0x7c0ffc76e97e148a0c618d11346a980bcc35289a3b2d63ceb00cc1259a99c39e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 772.5066257745189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e0aedb39f5d04b4d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:00:37.000Z'}}, {'blockNum': '0x9797fa', 'uniqueId': '0x93a5b41932ec50881155a003c190c843f11bed1f569d4dd69ed8015d3e0a6d60:log:125', 'hash': '0x93a5b41932ec50881155a003c190c843f11bed1f569d4dd69ed8015d3e0a6d60', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4.451291040799663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dc6299e1ebe2136', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:02:28.000Z'}}, {'blockNum': '0x9797fa', 'uniqueId': '0x93a5b41932ec50881155a003c190c843f11bed1f569d4dd69ed8015d3e0a6d60:log:131', 'hash': '0x93a5b41932ec50881155a003c190c843f11bed1f569d4dd69ed8015d3e0a6d60', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 4.451291040799663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3dc6299e1ebe2136', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:02:28.000Z'}}, {'blockNum': '0x9797fe', 'uniqueId': '0xb64f4fecda23e08609370017ac7f5f97ff0fe77995b2d1063d0487e42b89c2a3:log:28', 'hash': '0xb64f4fecda23e08609370017ac7f5f97ff0fe77995b2d1063d0487e42b89c2a3', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 412.89628704166137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x166216497233f303fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:03:33.000Z'}}, {'blockNum': '0x9797fe', 'uniqueId': '0xb64f4fecda23e08609370017ac7f5f97ff0fe77995b2d1063d0487e42b89c2a3:log:34', 'hash': '0xb64f4fecda23e08609370017ac7f5f97ff0fe77995b2d1063d0487e42b89c2a3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 412.89628704166137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x166216497233f303fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:03:33.000Z'}}, {'blockNum': '0x979839', 'uniqueId': '0x32fa18d53a24d97459cd3ec5c42f0bc18cd73bee57f28c9ccbd6f0df1c9de540:log:87', 'hash': '0x32fa18d53a24d97459cd3ec5c42f0bc18cd73bee57f28c9ccbd6f0df1c9de540', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 66.60945131013565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039c644f0df850299f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:14:14.000Z'}}, {'blockNum': '0x979839', 'uniqueId': '0x32fa18d53a24d97459cd3ec5c42f0bc18cd73bee57f28c9ccbd6f0df1c9de540:log:93', 'hash': '0x32fa18d53a24d97459cd3ec5c42f0bc18cd73bee57f28c9ccbd6f0df1c9de540', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'value': 66.60945131013565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x039c644f0df850299f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:14:14.000Z'}}, {'blockNum': '0x97984b', 'uniqueId': '0x28af95a5f2213d4926c7b292675e589c88b3bb964c22b217d421ef970a136ac9:log:49', 'hash': '0x28af95a5f2213d4926c7b292675e589c88b3bb964c22b217d421ef970a136ac9', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 358.776734632259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1373070344766296e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:17:19.000Z'}}, {'blockNum': '0x97984b', 'uniqueId': '0x28af95a5f2213d4926c7b292675e589c88b3bb964c22b217d421ef970a136ac9:log:55', 'hash': '0x28af95a5f2213d4926c7b292675e589c88b3bb964c22b217d421ef970a136ac9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 358.776734632259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1373070344766296e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:17:19.000Z'}}, {'blockNum': '0x979851', 'uniqueId': '0x2ff9755ad8a51161924de117090b9150faec64afdd481b5150a3f07e2f681426:log:104', 'hash': '0x2ff9755ad8a51161924de117090b9150faec64afdd481b5150a3f07e2f681426', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 9.037482687465882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7d6b969f22258238', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:18:33.000Z'}}, {'blockNum': '0x979851', 'uniqueId': '0x2ff9755ad8a51161924de117090b9150faec64afdd481b5150a3f07e2f681426:log:110', 'hash': '0x2ff9755ad8a51161924de117090b9150faec64afdd481b5150a3f07e2f681426', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 9.037482687465882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7d6b969f22258238', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:18:33.000Z'}}, {'blockNum': '0x97986b', 'uniqueId': '0x7e64f23f9b0621a313c83ca49a3eea8ac3a1beddce831a5d3ee4be14c3dbc94b:log:33', 'hash': '0x7e64f23f9b0621a313c83ca49a3eea8ac3a1beddce831a5d3ee4be14c3dbc94b', 'from': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 895.9945338849782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30926c0962c9d233fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:24:26.000Z'}}, {'blockNum': '0x97986b', 'uniqueId': '0x7e64f23f9b0621a313c83ca49a3eea8ac3a1beddce831a5d3ee4be14c3dbc94b:log:39', 'hash': '0x7e64f23f9b0621a313c83ca49a3eea8ac3a1beddce831a5d3ee4be14c3dbc94b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 895.9945338849782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30926c0962c9d233fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:24:26.000Z'}}, {'blockNum': '0x979873', 'uniqueId': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e:log:82', 'hash': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2454.105524897925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85098e447c8061e7cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:25:57.000Z'}}, {'blockNum': '0x979873', 'uniqueId': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e:log:87', 'hash': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 2454.105524897925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85098e447c8061e7cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:25:57.000Z'}}, {'blockNum': '0x979873', 'uniqueId': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e:log:88', 'hash': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2453.8601143454352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85062664e39b1893c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:25:57.000Z'}}, {'blockNum': '0x979873', 'uniqueId': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e:log:90', 'hash': '0xc6d301c5ca8074321d17dd5867aa6897cd450790efc50989b9fefdbd8d24df1e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf0caa308be55d93503546d8f2a0e954dc8cba563', 'value': 2453.8601143454352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x85062664e39b1893c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:25:57.000Z'}}, {'blockNum': '0x979883', 'uniqueId': '0x862f841abdd2a1faef3532c740af4939e58d06de3b1bcfada09d55b86b3b6a16:log:38', 'hash': '0x862f841abdd2a1faef3532c740af4939e58d06de3b1bcfada09d55b86b3b6a16', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 863.4313732114128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ece847347c1fdc666', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:29:43.000Z'}}, {'blockNum': '0x979883', 'uniqueId': '0x862f841abdd2a1faef3532c740af4939e58d06de3b1bcfada09d55b86b3b6a16:log:44', 'hash': '0x862f841abdd2a1faef3532c740af4939e58d06de3b1bcfada09d55b86b3b6a16', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 863.4313732114128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ece847347c1fdc666', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:29:43.000Z'}}, {'blockNum': '0x97988f', 'uniqueId': '0x2385dab3088b512c313b83298c5341197aafdc49b5b7c5b78d9ac62e1a8d2c77:log:79', 'hash': '0x2385dab3088b512c313b83298c5341197aafdc49b5b7c5b78d9ac62e1a8d2c77', 'from': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 793.5746554991797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b050f88a345996109', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:34:32.000Z'}}, {'blockNum': '0x97988f', 'uniqueId': '0x2385dab3088b512c313b83298c5341197aafdc49b5b7c5b78d9ac62e1a8d2c77:log:85', 'hash': '0x2385dab3088b512c313b83298c5341197aafdc49b5b7c5b78d9ac62e1a8d2c77', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 793.5746554991797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b050f88a345996109', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:34:32.000Z'}}, {'blockNum': '0x979891', 'uniqueId': '0x28d3254b56622f05b3a0d8da1998a5d0acbecf32739dce482ede7bda683074a5:log:51', 'hash': '0x28d3254b56622f05b3a0d8da1998a5d0acbecf32739dce482ede7bda683074a5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 667.7589107194041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x243304375c67dc7e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:35:37.000Z'}}, {'blockNum': '0x979891', 'uniqueId': '0x28d3254b56622f05b3a0d8da1998a5d0acbecf32739dce482ede7bda683074a5:log:57', 'hash': '0x28d3254b56622f05b3a0d8da1998a5d0acbecf32739dce482ede7bda683074a5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'value': 667.7589107194041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x243304375c67dc7e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:35:37.000Z'}}, {'blockNum': '0x979897', 'uniqueId': '0x59df8163384dde393d69520aeeff705d6496cd64bb36e6d053c7f48501cc99b0:log:17', 'hash': '0x59df8163384dde393d69520aeeff705d6496cd64bb36e6d053c7f48501cc99b0', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1472.2157260625925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcf18f2b8809faf47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:37:16.000Z'}}, {'blockNum': '0x979897', 'uniqueId': '0x59df8163384dde393d69520aeeff705d6496cd64bb36e6d053c7f48501cc99b0:log:23', 'hash': '0x59df8163384dde393d69520aeeff705d6496cd64bb36e6d053c7f48501cc99b0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1472.2157260625925, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcf18f2b8809faf47', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:37:16.000Z'}}, {'blockNum': '0x97989a', 'uniqueId': '0x18814d2729938c23933a62171377d1b2bd421ed8412a702c7f81fcf5bac976ac:log:117', 'hash': '0x18814d2729938c23933a62171377d1b2bd421ed8412a702c7f81fcf5bac976ac', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x5ce0eb4fc4cc6e81cf6760fb1a10f21e16e0d044', 'value': 8.943785303194375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c1eb558d8428eae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:37:33.000Z'}}, {'blockNum': '0x9798bb', 'uniqueId': '0x8cefb997a6426e9f5154016ce954baa8e909779de80f1d61807c6af8b031b1f2:log:19', 'hash': '0x8cefb997a6426e9f5154016ce954baa8e909779de80f1d61807c6af8b031b1f2', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 23.617758550540472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0147c32244fbe8d5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:43:43.000Z'}}, {'blockNum': '0x9798bb', 'uniqueId': '0x8cefb997a6426e9f5154016ce954baa8e909779de80f1d61807c6af8b031b1f2:log:25', 'hash': '0x8cefb997a6426e9f5154016ce954baa8e909779de80f1d61807c6af8b031b1f2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 23.617758550540472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0147c32244fbe8d5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:43:43.000Z'}}, {'blockNum': '0x9798d7', 'uniqueId': '0x1ff48c1eafdf7f22a9f5343eba83c351e39503eaf7c83aec450449a5740da739:log:9', 'hash': '0x1ff48c1eafdf7f22a9f5343eba83c351e39503eaf7c83aec450449a5740da739', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6efac91a4feaa06ff83130d854a3bb225f090e09', 'value': 82.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x047978fcaf30be0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:50:59.000Z'}}, {'blockNum': '0x9798ee', 'uniqueId': '0x582ae8508019e43219af1fea0ca7e4d2a6c9b8e4a4c31be25c26c4956ee052d4:log:88', 'hash': '0x582ae8508019e43219af1fea0ca7e4d2a6c9b8e4a4c31be25c26c4956ee052d4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 970.6176548868416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x349e069e911ce28a42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:56:45.000Z'}}, {'blockNum': '0x9798ee', 'uniqueId': '0x582ae8508019e43219af1fea0ca7e4d2a6c9b8e4a4c31be25c26c4956ee052d4:log:94', 'hash': '0x582ae8508019e43219af1fea0ca7e4d2a6c9b8e4a4c31be25c26c4956ee052d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 970.6176548868416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x349e069e911ce28a42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T11:56:45.000Z'}}, {'blockNum': '0x979927', 'uniqueId': '0xdc8ed533b329fee00e515b63eb0e812ee61c430b34420ad728fbc0673e79a7df:log:131', 'hash': '0xdc8ed533b329fee00e515b63eb0e812ee61c430b34420ad728fbc0673e79a7df', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2526.384886947502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x88f4a2255165436514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:10:43.000Z'}}, {'blockNum': '0x979927', 'uniqueId': '0xdc8ed533b329fee00e515b63eb0e812ee61c430b34420ad728fbc0673e79a7df:log:137', 'hash': '0xdc8ed533b329fee00e515b63eb0e812ee61c430b34420ad728fbc0673e79a7df', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 2526.384886947502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x88f4a2255165436514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:10:43.000Z'}}, {'blockNum': '0x979927', 'uniqueId': '0x5f50262d4610a59ab40a7353822987c28885f07290a448984335fd29039c8b00:log:157', 'hash': '0x5f50262d4610a59ab40a7353822987c28885f07290a448984335fd29039c8b00', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2131.7783571558493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x73905e212ffc376c01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:10:43.000Z'}}, {'blockNum': '0x979927', 'uniqueId': '0x5f50262d4610a59ab40a7353822987c28885f07290a448984335fd29039c8b00:log:163', 'hash': '0x5f50262d4610a59ab40a7353822987c28885f07290a448984335fd29039c8b00', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2131.7783571558493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x73905e212ffc376c01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:10:43.000Z'}}, {'blockNum': '0x97992a', 'uniqueId': '0x024b5e000a7fe2adcc8b4da8f42bfb3908bcd626e10783aa0a0fd98784a4d6d3:log:107', 'hash': '0x024b5e000a7fe2adcc8b4da8f42bfb3908bcd626e10783aa0a0fd98784a4d6d3', 'from': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1341.2147941001315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48b518252c6d044af9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:11:41.000Z'}}, {'blockNum': '0x97992a', 'uniqueId': '0x024b5e000a7fe2adcc8b4da8f42bfb3908bcd626e10783aa0a0fd98784a4d6d3:log:113', 'hash': '0x024b5e000a7fe2adcc8b4da8f42bfb3908bcd626e10783aa0a0fd98784a4d6d3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1341.2147941001315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48b518252c6d044af9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:11:41.000Z'}}, {'blockNum': '0x979934', 'uniqueId': '0x1c24844e52c3fb8c64659f5c7b0a782aada0b374c6ada98bfba587f82a514ea5:log:45', 'hash': '0x1c24844e52c3fb8c64659f5c7b0a782aada0b374c6ada98bfba587f82a514ea5', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 887.3019775685055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3019c9df78a0640706', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:06.000Z'}}, {'blockNum': '0x979934', 'uniqueId': '0x1c24844e52c3fb8c64659f5c7b0a782aada0b374c6ada98bfba587f82a514ea5:log:51', 'hash': '0x1c24844e52c3fb8c64659f5c7b0a782aada0b374c6ada98bfba587f82a514ea5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 887.3019775685055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3019c9df78a0640706', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:06.000Z'}}, {'blockNum': '0x979934', 'uniqueId': '0x5760e96887e7f38ee96038d3976cfd0704ef7bae37b97fbc2963a7fc066eafd1:log:75', 'hash': '0x5760e96887e7f38ee96038d3976cfd0704ef7bae37b97fbc2963a7fc066eafd1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 44.53643854653895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026a1136e4d777f5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:06.000Z'}}, {'blockNum': '0x979934', 'uniqueId': '0x5760e96887e7f38ee96038d3976cfd0704ef7bae37b97fbc2963a7fc066eafd1:log:81', 'hash': '0x5760e96887e7f38ee96038d3976cfd0704ef7bae37b97fbc2963a7fc066eafd1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 44.53643854653895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026a1136e4d777f5df', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:06.000Z'}}, {'blockNum': '0x979936', 'uniqueId': '0x98a061a484f92b73aba8134d719a9c289ea6e74caf728d7b5b640dfe218ee2c1:log:26', 'hash': '0x98a061a484f92b73aba8134d719a9c289ea6e74caf728d7b5b640dfe218ee2c1', 'from': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 910.4656197279961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315b3fa949fd167482', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:30.000Z'}}, {'blockNum': '0x979936', 'uniqueId': '0x98a061a484f92b73aba8134d719a9c289ea6e74caf728d7b5b640dfe218ee2c1:log:32', 'hash': '0x98a061a484f92b73aba8134d719a9c289ea6e74caf728d7b5b640dfe218ee2c1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 910.4656197279961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x315b3fa949fd167482', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:14:30.000Z'}}, {'blockNum': '0x979957', 'uniqueId': '0xebd7aee686cec541943fb87970c5fca958d64897e216400c2e9cbafe8606a297:log:128', 'hash': '0xebd7aee686cec541943fb87970c5fca958d64897e216400c2e9cbafe8606a297', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 48.28006021515179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029e053af78a979620', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:22:52.000Z'}}, {'blockNum': '0x979957', 'uniqueId': '0xebd7aee686cec541943fb87970c5fca958d64897e216400c2e9cbafe8606a297:log:134', 'hash': '0xebd7aee686cec541943fb87970c5fca958d64897e216400c2e9cbafe8606a297', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 48.28006021515179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029e053af78a979620', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:22:52.000Z'}}, {'blockNum': '0x97995b', 'uniqueId': '0xd41390222e9b3b8ea17b5438052b2943dfc2b6e7119d8458497959ee1db57154:log:70', 'hash': '0xd41390222e9b3b8ea17b5438052b2943dfc2b6e7119d8458497959ee1db57154', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.804325550801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304a64b667a4eb4e42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:23:52.000Z'}}, {'blockNum': '0x97995b', 'uniqueId': '0xd41390222e9b3b8ea17b5438052b2943dfc2b6e7119d8458497959ee1db57154:log:76', 'hash': '0xd41390222e9b3b8ea17b5438052b2943dfc2b6e7119d8458497959ee1db57154', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 890.804325550801, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x304a64b667a4eb4e42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:23:52.000Z'}}, {'blockNum': '0x979978', 'uniqueId': '0x9c4935ef49a4046def38ba1a7c2783a8bf0ad907a50a8072e9c7fdf260e30f6b:log:189', 'hash': '0x9c4935ef49a4046def38ba1a7c2783a8bf0ad907a50a8072e9c7fdf260e30f6b', 'from': '0xb3b93f1e4bac9607f89b6e765007d4cf4d87d0f0', 'to': '0xbf79e9e31b530441dc3c9daeb985a0f2f64392b1', 'value': 57.32799999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031b95f8410f8c2000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:30:29.000Z'}}, {'blockNum': '0x97998a', 'uniqueId': '0x836b0f1499f2ba9eb326b42802f7dd28c2020c7a285ca4b7e4b029de5d3ffeb1:log:56', 'hash': '0x836b0f1499f2ba9eb326b42802f7dd28c2020c7a285ca4b7e4b029de5d3ffeb1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 89.07100369415849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d41bc5f101d2b44c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:33:24.000Z'}}, {'blockNum': '0x97998a', 'uniqueId': '0x836b0f1499f2ba9eb326b42802f7dd28c2020c7a285ca4b7e4b029de5d3ffeb1:log:62', 'hash': '0x836b0f1499f2ba9eb326b42802f7dd28c2020c7a285ca4b7e4b029de5d3ffeb1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'value': 89.07100369415849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d41bc5f101d2b44c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:33:24.000Z'}}, {'blockNum': '0x9799c2', 'uniqueId': '0xc76c4791848ec1e40f3a83cb8b42e8dcc0cb797e9165fd2643e0cc1142d5dc74:log:76', 'hash': '0xc76c4791848ec1e40f3a83cb8b42e8dcc0cb797e9165fd2643e0cc1142d5dc74', 'from': '0x4ea3f91651db0b87bf639fac5fc2c0c3ef87eaea', 'to': '0xf5b1720531bfd034b0bd03b1d9ccca9ee4206f19', 'value': 5018.039818076523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110074ab3d380f9271f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:45:27.000Z'}}, {'blockNum': '0x9799c4', 'uniqueId': '0xf37ec207f70ec054398f858f91f27f4a260e0eee3f21329e3bda72bb0a336978:log:115', 'hash': '0xf37ec207f70ec054398f858f91f27f4a260e0eee3f21329e3bda72bb0a336978', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 596.7314419338953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20594ff4d1f8772f12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:45:38.000Z'}}, {'blockNum': '0x9799c4', 'uniqueId': '0xf37ec207f70ec054398f858f91f27f4a260e0eee3f21329e3bda72bb0a336978:log:121', 'hash': '0xf37ec207f70ec054398f858f91f27f4a260e0eee3f21329e3bda72bb0a336978', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'value': 596.7314419338953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20594ff4d1f8772f12', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:45:38.000Z'}}, {'blockNum': '0x9799cd', 'uniqueId': '0x96c4173d8cc9777552bda7248aae7a7a9362e3184f57f39c2c2b72ecc8d80577:log:59', 'hash': '0x96c4173d8cc9777552bda7248aae7a7a9362e3184f57f39c2c2b72ecc8d80577', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1988.56252226111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6bccd9462404444d06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:48:24.000Z'}}, {'blockNum': '0x9799cd', 'uniqueId': '0x96c4173d8cc9777552bda7248aae7a7a9362e3184f57f39c2c2b72ecc8d80577:log:65', 'hash': '0x96c4173d8cc9777552bda7248aae7a7a9362e3184f57f39c2c2b72ecc8d80577', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1988.56252226111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6bccd9462404444d06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:48:24.000Z'}}, {'blockNum': '0x9799d4', 'uniqueId': '0x91adafd98760cfed16ccfecf54dd2c21ba3dc901c43087cd14b7f64cfa14dc3c:log:29', 'hash': '0x91adafd98760cfed16ccfecf54dd2c21ba3dc901c43087cd14b7f64cfa14dc3c', 'from': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 34.18359985670772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01da648af50b2854e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:49:34.000Z'}}, {'blockNum': '0x9799d4', 'uniqueId': '0x91adafd98760cfed16ccfecf54dd2c21ba3dc901c43087cd14b7f64cfa14dc3c:log:35', 'hash': '0x91adafd98760cfed16ccfecf54dd2c21ba3dc901c43087cd14b7f64cfa14dc3c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 34.18359985670772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01da648af50b2854e1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:49:34.000Z'}}, {'blockNum': '0x9799d9', 'uniqueId': '0x7d352b880ce38dc9dcc0a451fc8288d41cfab477fb2e8531fe8bb163e6c73af8:log:65', 'hash': '0x7d352b880ce38dc9dcc0a451fc8288d41cfab477fb2e8531fe8bb163e6c73af8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 668.1832099266861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2438e7a13df06402b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:50:28.000Z'}}, {'blockNum': '0x9799d9', 'uniqueId': '0x7d352b880ce38dc9dcc0a451fc8288d41cfab477fb2e8531fe8bb163e6c73af8:log:71', 'hash': '0x7d352b880ce38dc9dcc0a451fc8288d41cfab477fb2e8531fe8bb163e6c73af8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 668.1832099266861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2438e7a13df06402b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:50:28.000Z'}}, {'blockNum': '0x9799dc', 'uniqueId': '0xd337df0d5aa0385b0a61b9c97ff9e468b9872c326215e3bcdd8457771c436854:log:63', 'hash': '0xd337df0d5aa0385b0a61b9c97ff9e468b9872c326215e3bcdd8457771c436854', 'from': '0xb2ecd60764a3a800358bb252976bd57c05554b71', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8.062154776068411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6fe2870dbfc6cec6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:51:27.000Z'}}, {'blockNum': '0x9799dc', 'uniqueId': '0xd337df0d5aa0385b0a61b9c97ff9e468b9872c326215e3bcdd8457771c436854:log:69', 'hash': '0xd337df0d5aa0385b0a61b9c97ff9e468b9872c326215e3bcdd8457771c436854', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 8.062154776068411, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6fe2870dbfc6cec6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T12:51:27.000Z'}}, {'blockNum': '0x979a0f', 'uniqueId': '0xc67607285ff63b67d494dc3b60039a28e01d7fc079ff7879c8c85c154a6823d5:log:130', 'hash': '0xc67607285ff63b67d494dc3b60039a28e01d7fc079ff7879c8c85c154a6823d5', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 283.61697805624095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5ff9eae0000014d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:04:01.000Z'}}, {'blockNum': '0x979a0f', 'uniqueId': '0xc67607285ff63b67d494dc3b60039a28e01d7fc079ff7879c8c85c154a6823d5:log:136', 'hash': '0xc67607285ff63b67d494dc3b60039a28e01d7fc079ff7879c8c85c154a6823d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 283.61697805624095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5ff9eae0000014d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:04:01.000Z'}}, {'blockNum': '0x979a1b', 'uniqueId': '0x624c93bad563d16d754c2f57083a4f42e50f9a2ef9a7b7a8dc737547dfe4e4d4:log:108', 'hash': '0x624c93bad563d16d754c2f57083a4f42e50f9a2ef9a7b7a8dc737547dfe4e4d4', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1438.4275949829778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4dfa3164855fda7102', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:06:58.000Z'}}, {'blockNum': '0x979a1b', 'uniqueId': '0x624c93bad563d16d754c2f57083a4f42e50f9a2ef9a7b7a8dc737547dfe4e4d4:log:114', 'hash': '0x624c93bad563d16d754c2f57083a4f42e50f9a2ef9a7b7a8dc737547dfe4e4d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1438.4275949829778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4dfa3164855fda7102', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:06:58.000Z'}}, {'blockNum': '0x979a44', 'uniqueId': '0x91da9bbcc81f349c3addc23266d02b9a4273d0dcfffb748ba038293da8964709:log:35', 'hash': '0x91da9bbcc81f349c3addc23266d02b9a4273d0dcfffb748ba038293da8964709', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 565.5511276659721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ea8993a31a3dd0c2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:15:42.000Z'}}, {'blockNum': '0x979a44', 'uniqueId': '0x91da9bbcc81f349c3addc23266d02b9a4273d0dcfffb748ba038293da8964709:log:41', 'hash': '0x91da9bbcc81f349c3addc23266d02b9a4273d0dcfffb748ba038293da8964709', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 565.5511276659721, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ea8993a31a3dd0c2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:15:42.000Z'}}, {'blockNum': '0x979a4f', 'uniqueId': '0x7457a5a9899a04a8a54d23cd805cbb1ff626bc94c87f9a839129aa24c60d5924:log:11', 'hash': '0x7457a5a9899a04a8a54d23cd805cbb1ff626bc94c87f9a839129aa24c60d5924', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xba67c4f3f719d0526826861c2156d8b9caea2f79', 'value': 13952.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02f45e63b6465cb60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:17:09.000Z'}}, {'blockNum': '0x979a75', 'uniqueId': '0x5494b99309247e15828c7b83c5ca3009ffd423e4212538e025f72787dc85623e:log:102', 'hash': '0x5494b99309247e15828c7b83c5ca3009ffd423e4212538e025f72787dc85623e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 181.15952280347327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09d217ea2a5c4d5c27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:25:00.000Z'}}, {'blockNum': '0x979a75', 'uniqueId': '0x5494b99309247e15828c7b83c5ca3009ffd423e4212538e025f72787dc85623e:log:108', 'hash': '0x5494b99309247e15828c7b83c5ca3009ffd423e4212538e025f72787dc85623e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 181.15952280347327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09d217ea2a5c4d5c27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:25:00.000Z'}}, {'blockNum': '0x979a76', 'uniqueId': '0xb4fb195d760710c5e266f8f69f642f78bbb3e1b9eb13fb892fac9abb4f001570:log:13', 'hash': '0xb4fb195d760710c5e266f8f69f642f78bbb3e1b9eb13fb892fac9abb4f001570', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 601.7322068122165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209eb63dfb5a0e700c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:25:15.000Z'}}, {'blockNum': '0x979a76', 'uniqueId': '0xb4fb195d760710c5e266f8f69f642f78bbb3e1b9eb13fb892fac9abb4f001570:log:19', 'hash': '0xb4fb195d760710c5e266f8f69f642f78bbb3e1b9eb13fb892fac9abb4f001570', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 601.7322068122165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x209eb63dfb5a0e700c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:25:15.000Z'}}, {'blockNum': '0x979a80', 'uniqueId': '0x93d1ae455f2d1e6971c41b9f0a86ea3879e5bd02da955156f079c13f3db5b45a:log:119', 'hash': '0x93d1ae455f2d1e6971c41b9f0a86ea3879e5bd02da955156f079c13f3db5b45a', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 900.5927796959827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30d23c4996a4ac664f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:26:50.000Z'}}, {'blockNum': '0x979a80', 'uniqueId': '0x93d1ae455f2d1e6971c41b9f0a86ea3879e5bd02da955156f079c13f3db5b45a:log:125', 'hash': '0x93d1ae455f2d1e6971c41b9f0a86ea3879e5bd02da955156f079c13f3db5b45a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 900.5927796959827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30d23c4996a4ac664f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:26:50.000Z'}}, {'blockNum': '0x979ace', 'uniqueId': '0xcdf38fce3b86443e3069e992a8a39108be6ad26c38472819f7c6c770ffe3f3ae:log:114', 'hash': '0xcdf38fce3b86443e3069e992a8a39108be6ad26c38472819f7c6c770ffe3f3ae', 'from': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 37.56305162042637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02094ac46e632cc7f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:43:49.000Z'}}, {'blockNum': '0x979ace', 'uniqueId': '0xcdf38fce3b86443e3069e992a8a39108be6ad26c38472819f7c6c770ffe3f3ae:log:120', 'hash': '0xcdf38fce3b86443e3069e992a8a39108be6ad26c38472819f7c6c770ffe3f3ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 37.56305162042637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02094ac46e632cc7f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:43:49.000Z'}}, {'blockNum': '0x979ada', 'uniqueId': '0x36f248af8881ae4aab17f508bf9ea6c28e79ca968dd9dbde8cd159abe5adf25a:log:31', 'hash': '0x36f248af8881ae4aab17f508bf9ea6c28e79ca968dd9dbde8cd159abe5adf25a', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2700.1112121612023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x925f9209a885dc7cc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:46:42.000Z'}}, {'blockNum': '0x979ada', 'uniqueId': '0x36f248af8881ae4aab17f508bf9ea6c28e79ca968dd9dbde8cd159abe5adf25a:log:37', 'hash': '0x36f248af8881ae4aab17f508bf9ea6c28e79ca968dd9dbde8cd159abe5adf25a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2700.1112121612023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x925f9209a885dc7cc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:46:42.000Z'}}, {'blockNum': '0x979b03', 'uniqueId': '0x26d0c23d2ae8337b5bbc271b4baa6e14027342d90d4486eea6caface048e9093:log:108', 'hash': '0x26d0c23d2ae8337b5bbc271b4baa6e14027342d90d4486eea6caface048e9093', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 285.2918475743369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f77383fd3ef3cfa67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:56:02.000Z'}}, {'blockNum': '0x979b03', 'uniqueId': '0x26d0c23d2ae8337b5bbc271b4baa6e14027342d90d4486eea6caface048e9093:log:114', 'hash': '0x26d0c23d2ae8337b5bbc271b4baa6e14027342d90d4486eea6caface048e9093', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 285.2918475743369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f77383fd3ef3cfa67', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:56:02.000Z'}}, {'blockNum': '0x979b05', 'uniqueId': '0x704577d0b78b3a9c641783dfe9b26673c08f58086a82a457431bef6bbc6e7920:log:153', 'hash': '0x704577d0b78b3a9c641783dfe9b26673c08f58086a82a457431bef6bbc6e7920', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 150.66266073224304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082add4bb0e48a4609', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:56:11.000Z'}}, {'blockNum': '0x979b05', 'uniqueId': '0x704577d0b78b3a9c641783dfe9b26673c08f58086a82a457431bef6bbc6e7920:log:159', 'hash': '0x704577d0b78b3a9c641783dfe9b26673c08f58086a82a457431bef6bbc6e7920', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 150.66266073224304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x082add4bb0e48a4609', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T13:56:11.000Z'}}, {'blockNum': '0x979b20', 'uniqueId': '0xb7f5453d8a4de5e1e42f391923a830298c93d2def42886ff5b6540668c2b1820:log:193', 'hash': '0xb7f5453d8a4de5e1e42f391923a830298c93d2def42886ff5b6540668c2b1820', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 426.3927166012929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x171d633c9f99ddc605', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:02:26.000Z'}}, {'blockNum': '0x979b20', 'uniqueId': '0xb7f5453d8a4de5e1e42f391923a830298c93d2def42886ff5b6540668c2b1820:log:199', 'hash': '0xb7f5453d8a4de5e1e42f391923a830298c93d2def42886ff5b6540668c2b1820', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 426.3927166012929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x171d633c9f99ddc605', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:02:26.000Z'}}, {'blockNum': '0x979b26', 'uniqueId': '0x3d878baac149e81b6aad40098f1bd9c1ba680f476ea4d717da6ed846681418d9:log:23', 'hash': '0x3d878baac149e81b6aad40098f1bd9c1ba680f476ea4d717da6ed846681418d9', 'from': '0xa2caf0d7495360cfa58dec48faf6b4977ca3df93', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.89734184778862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f22cfa37e234806e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:03:22.000Z'}}, {'blockNum': '0x979b26', 'uniqueId': '0x3d878baac149e81b6aad40098f1bd9c1ba680f476ea4d717da6ed846681418d9:log:29', 'hash': '0x3d878baac149e81b6aad40098f1bd9c1ba680f476ea4d717da6ed846681418d9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 35.89734184778862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01f22cfa37e234806e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:03:22.000Z'}}, {'blockNum': '0x979b34', 'uniqueId': '0x3c7ed22a3431e27875e16a781bfeecd0da07229ba2754d371bcc2c0e7656fab2:log:149', 'hash': '0x3c7ed22a3431e27875e16a781bfeecd0da07229ba2754d371bcc2c0e7656fab2', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 267.43642226984264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7f6d091d93563056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:06:48.000Z'}}, {'blockNum': '0x979b34', 'uniqueId': '0x3c7ed22a3431e27875e16a781bfeecd0da07229ba2754d371bcc2c0e7656fab2:log:155', 'hash': '0x3c7ed22a3431e27875e16a781bfeecd0da07229ba2754d371bcc2c0e7656fab2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa239ea1e43fceab1246ed819c88ac714b3c466ae', 'value': 267.43642226984264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7f6d091d93563056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:06:48.000Z'}}, {'blockNum': '0x979b35', 'uniqueId': '0xed9b3847e05f88575c14a3c7b89d115b3e51fa5561b4462a2154428b50e8e828:log:64', 'hash': '0xed9b3847e05f88575c14a3c7b89d115b3e51fa5561b4462a2154428b50e8e828', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 788.9445878166435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ac4ce3a9c96040982', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:07:19.000Z'}}, {'blockNum': '0x979b35', 'uniqueId': '0xed9b3847e05f88575c14a3c7b89d115b3e51fa5561b4462a2154428b50e8e828:log:70', 'hash': '0xed9b3847e05f88575c14a3c7b89d115b3e51fa5561b4462a2154428b50e8e828', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 788.9445878166435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ac4ce3a9c96040982', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:07:19.000Z'}}, {'blockNum': '0x979b3e', 'uniqueId': '0x0eeaf1fd60a4ef75e6cb69e4c4f315bb13e35b0a814078dc3945c1e61978e337:log:119', 'hash': '0x0eeaf1fd60a4ef75e6cb69e4c4f315bb13e35b0a814078dc3945c1e61978e337', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 983.8293237918797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35555fe57003c0ab4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:08:28.000Z'}}, {'blockNum': '0x979b3e', 'uniqueId': '0x0eeaf1fd60a4ef75e6cb69e4c4f315bb13e35b0a814078dc3945c1e61978e337:log:125', 'hash': '0x0eeaf1fd60a4ef75e6cb69e4c4f315bb13e35b0a814078dc3945c1e61978e337', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 983.8293237918797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35555fe57003c0ab4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:08:28.000Z'}}, {'blockNum': '0x979b40', 'uniqueId': '0x1368a11de989119e10b972a2645969cdd11c5fe6c5c2cf2df1b64fcf0cb897f0:log:69', 'hash': '0x1368a11de989119e10b972a2645969cdd11c5fe6c5c2cf2df1b64fcf0cb897f0', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 332.279403011445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12034d948c140b0b23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:08:40.000Z'}}, {'blockNum': '0x979b40', 'uniqueId': '0x1368a11de989119e10b972a2645969cdd11c5fe6c5c2cf2df1b64fcf0cb897f0:log:75', 'hash': '0x1368a11de989119e10b972a2645969cdd11c5fe6c5c2cf2df1b64fcf0cb897f0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 332.279403011445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12034d948c140b0b23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:08:40.000Z'}}, {'blockNum': '0x979b5a', 'uniqueId': '0x539e778e9406be47431c528042940d5564212e3209f0ed55508a9c654053fa04:log:129', 'hash': '0x539e778e9406be47431c528042940d5564212e3209f0ed55508a9c654053fa04', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 62.39960884672778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0361f7f1a388880bc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:16:11.000Z'}}, {'blockNum': '0x979b5a', 'uniqueId': '0x539e778e9406be47431c528042940d5564212e3209f0ed55508a9c654053fa04:log:135', 'hash': '0x539e778e9406be47431c528042940d5564212e3209f0ed55508a9c654053fa04', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'value': 62.39960884672778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0361f7f1a388880bc7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:16:11.000Z'}}, {'blockNum': '0x979b8a', 'uniqueId': '0x540dcd8866f96d3d1c9b14ed506065a9a1bc3e9c631124550c77a1c4241a186a:log:22', 'hash': '0x540dcd8866f96d3d1c9b14ed506065a9a1bc3e9c631124550c77a1c4241a186a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 49.91908117099654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b4c433d7a723b350', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:29:04.000Z'}}, {'blockNum': '0x979b8a', 'uniqueId': '0x540dcd8866f96d3d1c9b14ed506065a9a1bc3e9c631124550c77a1c4241a186a:log:28', 'hash': '0x540dcd8866f96d3d1c9b14ed506065a9a1bc3e9c631124550c77a1c4241a186a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'value': 49.91908117099654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b4c433d7a723b350', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:29:04.000Z'}}, {'blockNum': '0x979b9e', 'uniqueId': '0xba53da39cbe206dc8ced6c69eca912314f6895c2fa3d65e2295b3e29c38bc7c9:log:71', 'hash': '0xba53da39cbe206dc8ced6c69eca912314f6895c2fa3d65e2295b3e29c38bc7c9', 'from': '0x3a706af4bfc1d30394256a434e092e23f611e39b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 466.35252821851066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1947f10192b9a94878', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:33:30.000Z'}}, {'blockNum': '0x979b9e', 'uniqueId': '0xba53da39cbe206dc8ced6c69eca912314f6895c2fa3d65e2295b3e29c38bc7c9:log:77', 'hash': '0xba53da39cbe206dc8ced6c69eca912314f6895c2fa3d65e2295b3e29c38bc7c9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 466.35252821851066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1947f10192b9a94878', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:33:30.000Z'}}, {'blockNum': '0x979ba3', 'uniqueId': '0x39b9dcc1c10a25d84df96c1acff2d0f5a107670aed45683b7263ed5272b1bd7a:log:98', 'hash': '0x39b9dcc1c10a25d84df96c1acff2d0f5a107670aed45683b7263ed5272b1bd7a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1337.052137047643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x487b536aa395aba3ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:34:42.000Z'}}, {'blockNum': '0x979ba3', 'uniqueId': '0x39b9dcc1c10a25d84df96c1acff2d0f5a107670aed45683b7263ed5272b1bd7a:log:104', 'hash': '0x39b9dcc1c10a25d84df96c1acff2d0f5a107670aed45683b7263ed5272b1bd7a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1337.052137047643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x487b536aa395aba3ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:34:42.000Z'}}, {'blockNum': '0x979ba8', 'uniqueId': '0xa9ec446010253a88136cdd89859e2e923282d3a9c9952db2042807468b5b8506:log:48', 'hash': '0xa9ec446010253a88136cdd89859e2e923282d3a9c9952db2042807468b5b8506', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 672.3669489494596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2472f741b77dbded13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:35:30.000Z'}}, {'blockNum': '0x979ba8', 'uniqueId': '0xa9ec446010253a88136cdd89859e2e923282d3a9c9952db2042807468b5b8506:log:54', 'hash': '0xa9ec446010253a88136cdd89859e2e923282d3a9c9952db2042807468b5b8506', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'value': 672.3669489494596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2472f741b77dbded13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:35:30.000Z'}}, {'blockNum': '0x979bb9', 'uniqueId': '0xeb43d0ae837813222f29935adbc61b27dfac8ea76b7ea70d79d66839f7b61d4e:log:67', 'hash': '0xeb43d0ae837813222f29935adbc61b27dfac8ea76b7ea70d79d66839f7b61d4e', 'from': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1047.251245258426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38c587d2fcd5f82943', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:38:36.000Z'}}, {'blockNum': '0x979bb9', 'uniqueId': '0xeb43d0ae837813222f29935adbc61b27dfac8ea76b7ea70d79d66839f7b61d4e:log:73', 'hash': '0xeb43d0ae837813222f29935adbc61b27dfac8ea76b7ea70d79d66839f7b61d4e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 1047.251245258426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38c587d2fcd5f82943', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:38:36.000Z'}}, {'blockNum': '0x979bbe', 'uniqueId': '0xfcc46501212caf2f3ebe12273815771518354fa75287f70b4e4935691b2582a3:log:97', 'hash': '0xfcc46501212caf2f3ebe12273815771518354fa75287f70b4e4935691b2582a3', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 267.36409136878797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7e6c108b53b0e6db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:39:11.000Z'}}, {'blockNum': '0x979bbe', 'uniqueId': '0xfcc46501212caf2f3ebe12273815771518354fa75287f70b4e4935691b2582a3:log:103', 'hash': '0xfcc46501212caf2f3ebe12273815771518354fa75287f70b4e4935691b2582a3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 267.36409136878797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7e6c108b53b0e6db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:39:11.000Z'}}, {'blockNum': '0x979bc1', 'uniqueId': '0xc6ff55891759a854ef896f67469dc7b828c68ac002eb2d9b7ae360596c6f2776:log:54', 'hash': '0xc6ff55891759a854ef896f67469dc7b828c68ac002eb2d9b7ae360596c6f2776', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 445.57247206415104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18278f6a99246255e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:39:50.000Z'}}, {'blockNum': '0x979bc1', 'uniqueId': '0xc6ff55891759a854ef896f67469dc7b828c68ac002eb2d9b7ae360596c6f2776:log:60', 'hash': '0xc6ff55891759a854ef896f67469dc7b828c68ac002eb2d9b7ae360596c6f2776', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbfc4933f5180589ef76dac288b1ffc4a0d11884a', 'value': 445.57247206415104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18278f6a99246255e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:39:50.000Z'}}, {'blockNum': '0x979bcc', 'uniqueId': '0x77a626fcfaa05900296e887addb16a1b361f5f9377bfadf105ec90813fb86bbe:log:120', 'hash': '0x77a626fcfaa05900296e887addb16a1b361f5f9377bfadf105ec90813fb86bbe', 'from': '0xcbe2ac42af1ca49e74ad25ac8b07f74919b103bc', 'to': '0x26ee03f93d7a8dbabdc5183a5ac5dc8b768d728c', 'value': 0.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:42:11.000Z'}}, {'blockNum': '0x979beb', 'uniqueId': '0x831333a6de7f6d38fcb4513ed495d66aafafb6a4203845da5690bfebc012c8d8:log:92', 'hash': '0x831333a6de7f6d38fcb4513ed495d66aafafb6a4203845da5690bfebc012c8d8', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 528.7884748316691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caa6a0c37ce380450', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:50:45.000Z'}}, {'blockNum': '0x979beb', 'uniqueId': '0x831333a6de7f6d38fcb4513ed495d66aafafb6a4203845da5690bfebc012c8d8:log:98', 'hash': '0x831333a6de7f6d38fcb4513ed495d66aafafb6a4203845da5690bfebc012c8d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 528.7884748316691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1caa6a0c37ce380450', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:50:45.000Z'}}, {'blockNum': '0x979bf6', 'uniqueId': '0xafa6b88c2115dbadc56b87d66e87abe3a67c775a8dbec85e84512010111c2b5c:log:125', 'hash': '0xafa6b88c2115dbadc56b87d66e87abe3a67c775a8dbec85e84512010111c2b5c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8903.452095318078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2a8380c2e4d5f9088', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:53:38.000Z'}}, {'blockNum': '0x979bf6', 'uniqueId': '0xafa6b88c2115dbadc56b87d66e87abe3a67c775a8dbec85e84512010111c2b5c:log:130', 'hash': '0xafa6b88c2115dbadc56b87d66e87abe3a67c775a8dbec85e84512010111c2b5c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 8903.452095318078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2a8380c2e4d5f9088', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T14:53:38.000Z'}}, {'blockNum': '0x979c1b', 'uniqueId': '0xc1941b337ccd02d2b44bee2bd55e9c285b1534a45cd4769b7f03ea3fedc03a68:log:20', 'hash': '0xc1941b337ccd02d2b44bee2bd55e9c285b1534a45cd4769b7f03ea3fedc03a68', 'from': '0x5caa37cba585c216d39e3a02d8c0dfd4843ca5f9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 671.1047025740735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246172db5375d4968d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:03:28.000Z'}}, {'blockNum': '0x979c1b', 'uniqueId': '0xc1941b337ccd02d2b44bee2bd55e9c285b1534a45cd4769b7f03ea3fedc03a68:log:26', 'hash': '0xc1941b337ccd02d2b44bee2bd55e9c285b1534a45cd4769b7f03ea3fedc03a68', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 671.1047025740735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x246172db5375d4968d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:03:28.000Z'}}, {'blockNum': '0x979c2e', 'uniqueId': '0xebb55763b5d3fb9ec2e6dcb65585eeb3709c51a697b21c2e5f96f8f733bc0f94:log:89', 'hash': '0xebb55763b5d3fb9ec2e6dcb65585eeb3709c51a697b21c2e5f96f8f733bc0f94', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 444.6982987436273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181b6dba984271162f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:07:23.000Z'}}, {'blockNum': '0x979c2e', 'uniqueId': '0xebb55763b5d3fb9ec2e6dcb65585eeb3709c51a697b21c2e5f96f8f733bc0f94:log:95', 'hash': '0xebb55763b5d3fb9ec2e6dcb65585eeb3709c51a697b21c2e5f96f8f733bc0f94', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 444.6982987436273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181b6dba984271162f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:07:23.000Z'}}, {'blockNum': '0x979c30', 'uniqueId': '0x764558b7ee96c0d79fb2e9dc5959ea58c40392740e963b3e9e2864baf60caeed:log:64', 'hash': '0x764558b7ee96c0d79fb2e9dc5959ea58c40392740e963b3e9e2864baf60caeed', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 889.4468574347057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30378e04586f241cd0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:08:01.000Z'}}, {'blockNum': '0x979c30', 'uniqueId': '0x764558b7ee96c0d79fb2e9dc5959ea58c40392740e963b3e9e2864baf60caeed:log:70', 'hash': '0x764558b7ee96c0d79fb2e9dc5959ea58c40392740e963b3e9e2864baf60caeed', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 889.4468574347057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30378e04586f241cd0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:08:01.000Z'}}, {'blockNum': '0x979c32', 'uniqueId': '0x9afc3a9e39af4a3d17f61dbe2748e16d0577a789572187654940854a0b5eb5d5:log:104', 'hash': '0x9afc3a9e39af4a3d17f61dbe2748e16d0577a789572187654940854a0b5eb5d5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 622.5109709008284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21bf133dd46f6840be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:08:07.000Z'}}, {'blockNum': '0x979c32', 'uniqueId': '0x9afc3a9e39af4a3d17f61dbe2748e16d0577a789572187654940854a0b5eb5d5:log:110', 'hash': '0x9afc3a9e39af4a3d17f61dbe2748e16d0577a789572187654940854a0b5eb5d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 622.5109709008284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21bf133dd46f6840be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:08:07.000Z'}}, {'blockNum': '0x979c3c', 'uniqueId': '0x9d69ddfcf85caebe621fde003326c00193e362aa8ff4f520ee3831d70b272125:log:12', 'hash': '0x9d69ddfcf85caebe621fde003326c00193e362aa8ff4f520ee3831d70b272125', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 889.260775456941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3034f8ebc5c75fea87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:10:25.000Z'}}, {'blockNum': '0x979c3c', 'uniqueId': '0x9d69ddfcf85caebe621fde003326c00193e362aa8ff4f520ee3831d70b272125:log:18', 'hash': '0x9d69ddfcf85caebe621fde003326c00193e362aa8ff4f520ee3831d70b272125', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 889.260775456941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3034f8ebc5c75fea87', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:10:25.000Z'}}, {'blockNum': '0x979c46', 'uniqueId': '0xf343430e304163decfd85c272a8f1975a09e162299a45285f0f48765bcfb4879:log:75', 'hash': '0xf343430e304163decfd85c272a8f1975a09e162299a45285f0f48765bcfb4879', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1004.6252864153274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3675f9ff4308a7c65f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:14:06.000Z'}}, {'blockNum': '0x979c46', 'uniqueId': '0xf343430e304163decfd85c272a8f1975a09e162299a45285f0f48765bcfb4879:log:81', 'hash': '0xf343430e304163decfd85c272a8f1975a09e162299a45285f0f48765bcfb4879', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 1004.6252864153274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3675f9ff4308a7c65f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:14:06.000Z'}}, {'blockNum': '0x979c48', 'uniqueId': '0x1e3c92487ba4f0373fe6a0859a57a2535c36263e7d450901b83a7a27fb8d060d:log:53', 'hash': '0x1e3c92487ba4f0373fe6a0859a57a2535c36263e7d450901b83a7a27fb8d060d', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 912.4674078336056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31770770f7138c18c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:14:50.000Z'}}, {'blockNum': '0x979c48', 'uniqueId': '0x1e3c92487ba4f0373fe6a0859a57a2535c36263e7d450901b83a7a27fb8d060d:log:59', 'hash': '0x1e3c92487ba4f0373fe6a0859a57a2535c36263e7d450901b83a7a27fb8d060d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 912.4674078336056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31770770f7138c18c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:14:50.000Z'}}, {'blockNum': '0x979c4a', 'uniqueId': '0x992a4cac7049003f48a8516cebe3943069f96d44cd15c3fe2a427d3a5aef4ecd:log:29', 'hash': '0x992a4cac7049003f48a8516cebe3943069f96d44cd15c3fe2a427d3a5aef4ecd', 'from': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 548.8607926190866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dc0f93ee5e0001b64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:15:19.000Z'}}, {'blockNum': '0x979c4a', 'uniqueId': '0x992a4cac7049003f48a8516cebe3943069f96d44cd15c3fe2a427d3a5aef4ecd:log:35', 'hash': '0x992a4cac7049003f48a8516cebe3943069f96d44cd15c3fe2a427d3a5aef4ecd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 548.8607926190866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dc0f93ee5e0001b64', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:15:19.000Z'}}, {'blockNum': '0x979c4d', 'uniqueId': '0xc2f04c287a08167408f270d120c490bd8d191f91c7dcd09e5036c97c548b7b7f:log:34', 'hash': '0xc2f04c287a08167408f270d120c490bd8d191f91c7dcd09e5036c97c548b7b7f', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 713.2459990645019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26aa46d135bc3ae3ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:16:14.000Z'}}, {'blockNum': '0x979c4d', 'uniqueId': '0xc2f04c287a08167408f270d120c490bd8d191f91c7dcd09e5036c97c548b7b7f:log:40', 'hash': '0xc2f04c287a08167408f270d120c490bd8d191f91c7dcd09e5036c97c548b7b7f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 713.2459990645019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26aa46d135bc3ae3ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:16:14.000Z'}}, {'blockNum': '0x979c51', 'uniqueId': '0x932c534f7000b7a63d1aab522a12f0832df31f036cc38db982ea50ffd586416b:log:20', 'hash': '0x932c534f7000b7a63d1aab522a12f0832df31f036cc38db982ea50ffd586416b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1248.3320923139324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43ac1680033c14793b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:17:31.000Z'}}, {'blockNum': '0x979c51', 'uniqueId': '0x932c534f7000b7a63d1aab522a12f0832df31f036cc38db982ea50ffd586416b:log:26', 'hash': '0x932c534f7000b7a63d1aab522a12f0832df31f036cc38db982ea50ffd586416b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 1248.3320923139324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43ac1680033c14793b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:17:31.000Z'}}, {'blockNum': '0x979c58', 'uniqueId': '0xa7e8a05bc554a235a510353aa1f49ad87b8ad87415aa786305448e17c1cea016:log:42', 'hash': '0xa7e8a05bc554a235a510353aa1f49ad87b8ad87415aa786305448e17c1cea016', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 755.0180040057908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28edfaca62ed9e3acf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:18:15.000Z'}}, {'blockNum': '0x979c58', 'uniqueId': '0xa7e8a05bc554a235a510353aa1f49ad87b8ad87415aa786305448e17c1cea016:log:48', 'hash': '0xa7e8a05bc554a235a510353aa1f49ad87b8ad87415aa786305448e17c1cea016', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 755.0180040057908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28edfaca62ed9e3acf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:18:15.000Z'}}, {'blockNum': '0x979c67', 'uniqueId': '0x2e04c0bfd358cb86bf484b74a4dbdda7a1ac8ab52a2e30cb241fbf59641afafd:log:14', 'hash': '0x2e04c0bfd358cb86bf484b74a4dbdda7a1ac8ab52a2e30cb241fbf59641afafd', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1026.9717162264626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x37ac1876c75392dea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:22:47.000Z'}}, {'blockNum': '0x979c67', 'uniqueId': '0x2e04c0bfd358cb86bf484b74a4dbdda7a1ac8ab52a2e30cb241fbf59641afafd:log:20', 'hash': '0x2e04c0bfd358cb86bf484b74a4dbdda7a1ac8ab52a2e30cb241fbf59641afafd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1026.9717162264626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x37ac1876c75392dea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:22:47.000Z'}}, {'blockNum': '0x979c67', 'uniqueId': '0x44af8d5a7e9bd9a09900d594f021b2baa8dc209f1a99dcfe63f87253b372cb0e:log:77', 'hash': '0x44af8d5a7e9bd9a09900d594f021b2baa8dc209f1a99dcfe63f87253b372cb0e', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1266.3271323536023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44a5d1b9963f8ab346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:22:47.000Z'}}, {'blockNum': '0x979c67', 'uniqueId': '0x44af8d5a7e9bd9a09900d594f021b2baa8dc209f1a99dcfe63f87253b372cb0e:log:83', 'hash': '0x44af8d5a7e9bd9a09900d594f021b2baa8dc209f1a99dcfe63f87253b372cb0e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1266.3271323536023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44a5d1b9963f8ab346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:22:47.000Z'}}, {'blockNum': '0x979c6a', 'uniqueId': '0xc9c9209b8a5affc87bb99cc50e4307bb758caf50e58231edb11183c6dc196aae:log:36', 'hash': '0xc9c9209b8a5affc87bb99cc50e4307bb758caf50e58231edb11183c6dc196aae', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 495.12114961211523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad72fae4ed52a4c30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:23:23.000Z'}}, {'blockNum': '0x979c6a', 'uniqueId': '0xc9c9209b8a5affc87bb99cc50e4307bb758caf50e58231edb11183c6dc196aae:log:42', 'hash': '0xc9c9209b8a5affc87bb99cc50e4307bb758caf50e58231edb11183c6dc196aae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 495.12114961211523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad72fae4ed52a4c30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:23:23.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0x43783095e9139e3924ba9f8600cb4518e8f0516df171596404666c7b0e89271f:log:15', 'hash': '0x43783095e9139e3924ba9f8600cb4518e8f0516df171596404666c7b0e89271f', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 832.6279791660806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d2308cf9975947f42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0x43783095e9139e3924ba9f8600cb4518e8f0516df171596404666c7b0e89271f:log:21', 'hash': '0x43783095e9139e3924ba9f8600cb4518e8f0516df171596404666c7b0e89271f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 832.6279791660806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d2308cf9975947f42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166:log:33', 'hash': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1724.5905010230344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d7d8043688ae8e4ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166:log:38', 'hash': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1724.5905010230344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d7d8043688ae8e4ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166:log:40', 'hash': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1724.5905010230344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d7d8043688ae8e4ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166:log:42', 'hash': '0xc2f0b10a29b419582ac5986f1402164a48383df51b6aafe895b1f440d91d9166', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 1724.5905010230344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d7d8043688ae8e4ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xbc779d82992151c49899e18261398c936a5708d13a78ed82f4963c695e34d9f6:log:140', 'hash': '0xbc779d82992151c49899e18261398c936a5708d13a78ed82f4963c695e34d9f6', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 700.4760970739225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f90f0301df3105a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c6d', 'uniqueId': '0xbc779d82992151c49899e18261398c936a5708d13a78ed82f4963c695e34d9f6:log:146', 'hash': '0xbc779d82992151c49899e18261398c936a5708d13a78ed82f4963c695e34d9f6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 700.4760970739225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25f90f0301df3105a8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:01.000Z'}}, {'blockNum': '0x979c71', 'uniqueId': '0x8a4e331ed21ca9f279c89189ab5548682d1f1dd944748531d861d8957327beef:log:150', 'hash': '0x8a4e331ed21ca9f279c89189ab5548682d1f1dd944748531d861d8957327beef', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1726.2342066564036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d944fe0f92330c21d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:46.000Z'}}, {'blockNum': '0x979c71', 'uniqueId': '0x8a4e331ed21ca9f279c89189ab5548682d1f1dd944748531d861d8957327beef:log:156', 'hash': '0x8a4e331ed21ca9f279c89189ab5548682d1f1dd944748531d861d8957327beef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1726.2342066564036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d944fe0f92330c21d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:24:46.000Z'}}, {'blockNum': '0x979c88', 'uniqueId': '0x7235d1b4408c4ddd0a9180146829f091e1a7e95754fca170096cf699112c7f3c:log:95', 'hash': '0x7235d1b4408c4ddd0a9180146829f091e1a7e95754fca170096cf699112c7f3c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 88.97812222042081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d2d1cabbb17965f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:29:43.000Z'}}, {'blockNum': '0x979c88', 'uniqueId': '0x7235d1b4408c4ddd0a9180146829f091e1a7e95754fca170096cf699112c7f3c:log:101', 'hash': '0x7235d1b4408c4ddd0a9180146829f091e1a7e95754fca170096cf699112c7f3c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'value': 88.97812222042081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04d2d1cabbb17965f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:29:43.000Z'}}, {'blockNum': '0x979c9c', 'uniqueId': '0x056e51e9af64f25cb27952c94d23e0cffa27d1a070bcb7a8447338f1244cb2ce:log:98', 'hash': '0x056e51e9af64f25cb27952c94d23e0cffa27d1a070bcb7a8447338f1244cb2ce', 'from': '0xcbe2ac42af1ca49e74ad25ac8b07f74919b103bc', 'to': '0xcbfdb2ec3c40f5135f704f139d39434e1f01da29', 'value': 0.0001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:33:27.000Z'}}, {'blockNum': '0x979caa', 'uniqueId': '0xc1af745313e08356a5d46d85efdd9d361ef5a447ea27ad627fd3a3ac1a1d36d5:log:43', 'hash': '0xc1af745313e08356a5d46d85efdd9d361ef5a447ea27ad627fd3a3ac1a1d36d5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 444.8649021278686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181dbd9f7d7286afd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:35:51.000Z'}}, {'blockNum': '0x979caa', 'uniqueId': '0xc1af745313e08356a5d46d85efdd9d361ef5a447ea27ad627fd3a3ac1a1d36d5:log:49', 'hash': '0xc1af745313e08356a5d46d85efdd9d361ef5a447ea27ad627fd3a3ac1a1d36d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 444.8649021278686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x181dbd9f7d7286afd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:35:51.000Z'}}, {'blockNum': '0x979cb3', 'uniqueId': '0x051f1b292e696ffea7580a7c333e08fb42f07bdc672c9b979a0db6ff72147584:log:25', 'hash': '0x051f1b292e696ffea7580a7c333e08fb42f07bdc672c9b979a0db6ff72147584', 'from': '0xa0f75491720835b36edc92d06ddc468d201e9b73', 'to': '0x230e89c9412eaa085819e23329062b5c828d87af', 'value': 13262.64274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02cef824478985674000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:36:54.000Z'}}, {'blockNum': '0x979cc3', 'uniqueId': '0x0d1664d4dae3ebc22a5e0cb05a73910be6b68fda196951f84ab695d7dbb1be57:log:36', 'hash': '0x0d1664d4dae3ebc22a5e0cb05a73910be6b68fda196951f84ab695d7dbb1be57', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.587344048389845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01eddfa4dcb7e36ab7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:39:18.000Z'}}, {'blockNum': '0x979cc3', 'uniqueId': '0x0d1664d4dae3ebc22a5e0cb05a73910be6b68fda196951f84ab695d7dbb1be57:log:42', 'hash': '0x0d1664d4dae3ebc22a5e0cb05a73910be6b68fda196951f84ab695d7dbb1be57', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 35.587344048389845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01eddfa4dcb7e36ab7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:39:18.000Z'}}, {'blockNum': '0x979ce6', 'uniqueId': '0xd73fac18a508ecdf436d38c5f02c04b536c81d46b54261dc3cd64f4d90b65b28:log:104', 'hash': '0xd73fac18a508ecdf436d38c5f02c04b536c81d46b54261dc3cd64f4d90b65b28', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1779.0175646413536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6070d40966fc697124', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:46:14.000Z'}}, {'blockNum': '0x979ce6', 'uniqueId': '0xd73fac18a508ecdf436d38c5f02c04b536c81d46b54261dc3cd64f4d90b65b28:log:110', 'hash': '0xd73fac18a508ecdf436d38c5f02c04b536c81d46b54261dc3cd64f4d90b65b28', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 1779.0175646413536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6070d40966fc697124', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:46:14.000Z'}}, {'blockNum': '0x979ced', 'uniqueId': '0x7563488811272ca3c450bdbbc8f52f26b759ed5463720b415c9cae5e4d8785a9:log:116', 'hash': '0x7563488811272ca3c450bdbbc8f52f26b759ed5463720b415c9cae5e4d8785a9', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8.004032908029423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f140985cda16bee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:47:54.000Z'}}, {'blockNum': '0x979ced', 'uniqueId': '0x7563488811272ca3c450bdbbc8f52f26b759ed5463720b415c9cae5e4d8785a9:log:122', 'hash': '0x7563488811272ca3c450bdbbc8f52f26b759ed5463720b415c9cae5e4d8785a9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 8.004032908029423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f140985cda16bee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:47:54.000Z'}}, {'blockNum': '0x979cf6', 'uniqueId': '0xe556e0f5931c0a421f38a97633c40cba7fe47284e6b817d38e4eaed4f7e97271:log:107', 'hash': '0xe556e0f5931c0a421f38a97633c40cba7fe47284e6b817d38e4eaed4f7e97271', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2933.8769278086716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9f0bb8b17eee3a5700', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:49:09.000Z'}}, {'blockNum': '0x979cf6', 'uniqueId': '0xe556e0f5931c0a421f38a97633c40cba7fe47284e6b817d38e4eaed4f7e97271:log:113', 'hash': '0xe556e0f5931c0a421f38a97633c40cba7fe47284e6b817d38e4eaed4f7e97271', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 2933.8769278086716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9f0bb8b17eee3a5700', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:49:09.000Z'}}, {'blockNum': '0x979cf6', 'uniqueId': '0xb7c888eb6eab433aa8bb5b0b4477370ddd9313b2e65fb9a1ade5eacb7d8efaaf:log:133', 'hash': '0xb7c888eb6eab433aa8bb5b0b4477370ddd9313b2e65fb9a1ade5eacb7d8efaaf', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2351.194442704427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7f7560a87a45e54cc2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:49:09.000Z'}}, {'blockNum': '0x979cf6', 'uniqueId': '0xb7c888eb6eab433aa8bb5b0b4477370ddd9313b2e65fb9a1ade5eacb7d8efaaf:log:139', 'hash': '0xb7c888eb6eab433aa8bb5b0b4477370ddd9313b2e65fb9a1ade5eacb7d8efaaf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2351.194442704427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7f7560a87a45e54cc2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:49:09.000Z'}}, {'blockNum': '0x979cfe', 'uniqueId': '0x6bcf6c318f3e477195209fc93686e2fad5d514c4dd6f4a607324ef6f10fb85b5:log:15', 'hash': '0x6bcf6c318f3e477195209fc93686e2fad5d514c4dd6f4a607324ef6f10fb85b5', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 835.218491084948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d46fc2876ec163b77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:50:29.000Z'}}, {'blockNum': '0x979cfe', 'uniqueId': '0x6bcf6c318f3e477195209fc93686e2fad5d514c4dd6f4a607324ef6f10fb85b5:log:21', 'hash': '0x6bcf6c318f3e477195209fc93686e2fad5d514c4dd6f4a607324ef6f10fb85b5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 835.218491084948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d46fc2876ec163b77', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:50:29.000Z'}}, {'blockNum': '0x979cff', 'uniqueId': '0xf7e74900f90820a6bd746300002d4cebea71d204deb9c23d507a35a08e7a0b6c:log:18', 'hash': '0xf7e74900f90820a6bd746300002d4cebea71d204deb9c23d507a35a08e7a0b6c', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 682.7024683278044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25026665d4d9252a74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:50:38.000Z'}}, {'blockNum': '0x979cff', 'uniqueId': '0xf7e74900f90820a6bd746300002d4cebea71d204deb9c23d507a35a08e7a0b6c:log:24', 'hash': '0xf7e74900f90820a6bd746300002d4cebea71d204deb9c23d507a35a08e7a0b6c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 682.7024683278044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25026665d4d9252a74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:50:38.000Z'}}, {'blockNum': '0x979d06', 'uniqueId': '0xa6f011e65c52924c9d1adaa1d1099fee0461feb0c23eb17d5f326fd7b61f0704:log:29', 'hash': '0xa6f011e65c52924c9d1adaa1d1099fee0461feb0c23eb17d5f326fd7b61f0704', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 44254.57189885862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x095f0b8eef3db4930cd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:07.000Z'}}, {'blockNum': '0x979d06', 'uniqueId': '0xa6f011e65c52924c9d1adaa1d1099fee0461feb0c23eb17d5f326fd7b61f0704:log:34', 'hash': '0xa6f011e65c52924c9d1adaa1d1099fee0461feb0c23eb17d5f326fd7b61f0704', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 44254.57189885862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x095f0b8eef3db4930cd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:07.000Z'}}, {'blockNum': '0x979d07', 'uniqueId': '0x501df930413bbe761bfc1ae7bbd2367c3f6e6d2b956e44dee09baa3c421e8fb1:log:106', 'hash': '0x501df930413bbe761bfc1ae7bbd2367c3f6e6d2b956e44dee09baa3c421e8fb1', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2361.4011189545345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8003060e7326f4e66b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:15.000Z'}}, {'blockNum': '0x979d07', 'uniqueId': '0x501df930413bbe761bfc1ae7bbd2367c3f6e6d2b956e44dee09baa3c421e8fb1:log:112', 'hash': '0x501df930413bbe761bfc1ae7bbd2367c3f6e6d2b956e44dee09baa3c421e8fb1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2361.4011189545345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8003060e7326f4e66b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:15.000Z'}}, {'blockNum': '0x979d07', 'uniqueId': '0x56f513410be83c5f067077275f0bdca5875e4703cbfd72ffa80284bc0914e15f:log:140', 'hash': '0x56f513410be83c5f067077275f0bdca5875e4703cbfd72ffa80284bc0914e15f', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 899.1265538247169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30bde334ed4b63438e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:15.000Z'}}, {'blockNum': '0x979d07', 'uniqueId': '0x56f513410be83c5f067077275f0bdca5875e4703cbfd72ffa80284bc0914e15f:log:146', 'hash': '0x56f513410be83c5f067077275f0bdca5875e4703cbfd72ffa80284bc0914e15f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 899.1265538247169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30bde334ed4b63438e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:52:15.000Z'}}, {'blockNum': '0x979d08', 'uniqueId': '0x81c9f07497726c152d22f05c8341bbf1a5ff4cd72b4ed878b209065b626b4639:log:6', 'hash': '0x81c9f07497726c152d22f05c8341bbf1a5ff4cd72b4ed878b209065b626b4639', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x00413793a34097c1a89f70a0c6917d67948eca8a', 'value': 711.1583312180724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x268d4dee5d50ca161f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:16.000Z'}}, {'blockNum': '0x979d0a', 'uniqueId': '0x0feb2af5025c455637271479fc42a6efa15225f0852ede8435773e087d0eb5a3:log:146', 'hash': '0x0feb2af5025c455637271479fc42a6efa15225f0852ede8435773e087d0eb5a3', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:30.000Z'}}, {'blockNum': '0x979d0a', 'uniqueId': '0x4ed24c2875c6d57e8285ba60b4d242510f102fd6e3ca90571c59bf810fed36be:log:152', 'hash': '0x4ed24c2875c6d57e8285ba60b4d242510f102fd6e3ca90571c59bf810fed36be', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1447.7351035133022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e7b5c4e374dc168d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:30.000Z'}}, {'blockNum': '0x979d0a', 'uniqueId': '0x4ed24c2875c6d57e8285ba60b4d242510f102fd6e3ca90571c59bf810fed36be:log:158', 'hash': '0x4ed24c2875c6d57e8285ba60b4d242510f102fd6e3ca90571c59bf810fed36be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1447.7351035133022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e7b5c4e374dc168d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:30.000Z'}}, {'blockNum': '0x979d0b', 'uniqueId': '0xd43ace2f36578d7d2d93861d3eb2dcb6dc322b6663601e7d21251006e1ac0b5d:log:0', 'hash': '0xd43ace2f36578d7d2d93861d3eb2dcb6dc322b6663601e7d21251006e1ac0b5d', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50ca540462d794927f4c642611f0da56231e2113', 'value': 2236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7936bbc92a0d700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:48.000Z'}}, {'blockNum': '0x979d0c', 'uniqueId': '0x6d87c06be93e015da25bfb039a94eb732862d6df2f46fbb3cc1589eca00ed49e:log:74', 'hash': '0x6d87c06be93e015da25bfb039a94eb732862d6df2f46fbb3cc1589eca00ed49e', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1001.9791815566455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x36514124e99c7b5a7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:50.000Z'}}, {'blockNum': '0x979d0c', 'uniqueId': '0x6d87c06be93e015da25bfb039a94eb732862d6df2f46fbb3cc1589eca00ed49e:log:80', 'hash': '0x6d87c06be93e015da25bfb039a94eb732862d6df2f46fbb3cc1589eca00ed49e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1001.9791815566455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x36514124e99c7b5a7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:53:50.000Z'}}, {'blockNum': '0x979d12', 'uniqueId': '0x9a0d16581d05b57ff4488a1bdf876eb94cc171dfa00a5f73c6d3856241f17a64:log:4', 'hash': '0x9a0d16581d05b57ff4488a1bdf876eb94cc171dfa00a5f73c6d3856241f17a64', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 882.6351844048625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd90617d089391b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:29.000Z'}}, {'blockNum': '0x979d12', 'uniqueId': '0x9a0d16581d05b57ff4488a1bdf876eb94cc171dfa00a5f73c6d3856241f17a64:log:9', 'hash': '0x9a0d16581d05b57ff4488a1bdf876eb94cc171dfa00a5f73c6d3856241f17a64', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 882.6351844048625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd90617d089391b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:29.000Z'}}, {'blockNum': '0x979d13', 'uniqueId': '0xf3859b26879d796af898b43a52f833e997b2793255519128cd24bae642894125:log:11', 'hash': '0xf3859b26879d796af898b43a52f833e997b2793255519128cd24bae642894125', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 882.6351844048625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd90617d089391b3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:32.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7:log:20', 'hash': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7:log:25', 'hash': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7:log:26', 'hash': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7:log:27', 'hash': '0x937c4de2c4d12210c666d8edd89165574ce8a739b840667736e9ada34699f5f7', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d14', 'uniqueId': '0x50be17452a84a5beb5a1aa3860f5eaad903e5ceb4d682c84d4e71d417bcef2a0:log:92', 'hash': '0x50be17452a84a5beb5a1aa3860f5eaad903e5ceb4d682c84d4e71d417bcef2a0', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 8908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e2e7557364abb00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:55:50.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a:log:63', 'hash': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 750.4491801959572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28ae9311568b23bb95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a:log:68', 'hash': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 750.4491801959572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28ae9311568b23bb95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a:log:69', 'hash': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 750.4491801959572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28ae9311568b23bb95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a:log:70', 'hash': '0xf96fb14a85960c9dfebaf74b2489c3755b394b2f9afbc80a00bf03eabf28d64a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 750.4491801959572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28ae9311568b23bb95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0x76d25374b0e8277f47f41175a7f7469b2d4b5da11963c0902a9643e3ad3b6a6a:log:87', 'hash': '0x76d25374b0e8277f47f41175a7f7469b2d4b5da11963c0902a9643e3ad3b6a6a', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 820.4625488700397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7a3485334e4856ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d16', 'uniqueId': '0x76d25374b0e8277f47f41175a7f7469b2d4b5da11963c0902a9643e3ad3b6a6a:log:93', 'hash': '0x76d25374b0e8277f47f41175a7f7469b2d4b5da11963c0902a9643e3ad3b6a6a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 820.4625488700397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c7a3485334e4856ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:56:44.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35:log:22', 'hash': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 855.31860395979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e5dee1aa1164dcedd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35:log:27', 'hash': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 855.31860395979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e5dee1aa1164dcedd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35:log:28', 'hash': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 855.31860395979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e5dee1aa1164dcedd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35:log:29', 'hash': '0x95b90932276a4fbe31bb15c55a995e81c4dfba805f73c476b87498c8a961bc35', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 855.31860395979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e5dee1aa1164dcedd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x9c09253be25617cc22264bfd6263079dd4fd248b3bf5e59d5b8f24da663b9f4f:log:89', 'hash': '0x9c09253be25617cc22264bfd6263079dd4fd248b3bf5e59d5b8f24da663b9f4f', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 810.3948483423217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bee7cdce952a36840', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d18', 'uniqueId': '0x9c09253be25617cc22264bfd6263079dd4fd248b3bf5e59d5b8f24da663b9f4f:log:95', 'hash': '0x9c09253be25617cc22264bfd6263079dd4fd248b3bf5e59d5b8f24da663b9f4f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 810.3948483423217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bee7cdce952a36840', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:07.000Z'}}, {'blockNum': '0x979d1a', 'uniqueId': '0x30f2732a2aba761cc664331feadc1e92851c2adc1df25405fe2664b4eb862163:log:18', 'hash': '0x30f2732a2aba761cc664331feadc1e92851c2adc1df25405fe2664b4eb862163', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 17601.838739017963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ba329542992b4439cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:57:21.000Z'}}, {'blockNum': '0x979d1f', 'uniqueId': '0x8e624dbf9f321432f8828ed007916573bb1fda2b4fbfbba87179664901fa0d91:log:4', 'hash': '0x8e624dbf9f321432f8828ed007916573bb1fda2b4fbfbba87179664901fa0d91', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 11611.725310657754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0275790f587c5fb4ef88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:24.000Z'}}, {'blockNum': '0x979d1f', 'uniqueId': '0x8e624dbf9f321432f8828ed007916573bb1fda2b4fbfbba87179664901fa0d91:log:9', 'hash': '0x8e624dbf9f321432f8828ed007916573bb1fda2b4fbfbba87179664901fa0d91', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'value': 11611.725310657754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0275790f587c5fb4ef88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:24.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x6c8ee8a2b7cd4b405adbbfede9daf2e800e788d8033acdf5b687a17f23dec38a:log:135', 'hash': '0x6c8ee8a2b7cd4b405adbbfede9daf2e800e788d8033acdf5b687a17f23dec38a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 43616.53710267488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093c750bfc90ada19a6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x6c8ee8a2b7cd4b405adbbfede9daf2e800e788d8033acdf5b687a17f23dec38a:log:140', 'hash': '0x6c8ee8a2b7cd4b405adbbfede9daf2e800e788d8033acdf5b687a17f23dec38a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 43616.53710267488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x093c750bfc90ada19a6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:141', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0xe9519677e6ec8d2d6bfab92a059529fea6075d37', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:144', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0xe9519677e6ec8d2d6bfab92a059529fea6075d37', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:145', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:146', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7:log:148', 'hash': '0x7c9b3498f2f2633d1d253ed3e250730ccc216ff6e7cc18ecd817044a1899b4f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 552.0900677007005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dedc9ef79a99ce331', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0xa3e495c1a2f117513232e81ae553739f1011755b8dae827dd09b5cd82b004af5:log:161', 'hash': '0xa3e495c1a2f117513232e81ae553739f1011755b8dae827dd09b5cd82b004af5', 'from': '0xb2ee2ab06c61e4fc4debff12433c1dbe7167d598', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 11600.113585347097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0274d7ea35d65ca00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d20', 'uniqueId': '0xa3e495c1a2f117513232e81ae553739f1011755b8dae827dd09b5cd82b004af5:log:163', 'hash': '0xa3e495c1a2f117513232e81ae553739f1011755b8dae827dd09b5cd82b004af5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 11600.113585347097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0274d7ea35d65ca00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:50.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x97d256d36aabcd8f20aae796bf61434841cacfda6f94e040e521fe4ca48d2f13:log:14', 'hash': '0x97d256d36aabcd8f20aae796bf61434841cacfda6f94e040e521fe4ca48d2f13', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1540.4378918880755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5381dec5151c536631', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x97d256d36aabcd8f20aae796bf61434841cacfda6f94e040e521fe4ca48d2f13:log:20', 'hash': '0x97d256d36aabcd8f20aae796bf61434841cacfda6f94e040e521fe4ca48d2f13', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1540.4378918880755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5381dec5151c536631', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x345ddf44c6baf9563cd9d131058d349646a7601864a94c586cf798048b45cad5:log:38', 'hash': '0x345ddf44c6baf9563cd9d131058d349646a7601864a94c586cf798048b45cad5', 'from': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1049.8181524173629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38e9274f72d9cce812', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x345ddf44c6baf9563cd9d131058d349646a7601864a94c586cf798048b45cad5:log:44', 'hash': '0x345ddf44c6baf9563cd9d131058d349646a7601864a94c586cf798048b45cad5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1049.8181524173629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38e9274f72d9cce812', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0xdd504f813a3bcce22b9c647f6e041af33b9e17759042b16f37f8b17653ff71aa:log:62', 'hash': '0xdd504f813a3bcce22b9c647f6e041af33b9e17759042b16f37f8b17653ff71aa', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 691.5135220360122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x257cad8c7effc313ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0xdd504f813a3bcce22b9c647f6e041af33b9e17759042b16f37f8b17653ff71aa:log:68', 'hash': '0xdd504f813a3bcce22b9c647f6e041af33b9e17759042b16f37f8b17653ff71aa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 691.5135220360122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x257cad8c7effc313ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x0595928b48c4bf5934349330ffd10290ed989a8d23cdac071fcb4ccf3302a7af:log:87', 'hash': '0x0595928b48c4bf5934349330ffd10290ed989a8d23cdac071fcb4ccf3302a7af', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2207.824483650935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77afb83e53382fb42c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x0595928b48c4bf5934349330ffd10290ed989a8d23cdac071fcb4ccf3302a7af:log:93', 'hash': '0x0595928b48c4bf5934349330ffd10290ed989a8d23cdac071fcb4ccf3302a7af', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2207.824483650935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77afb83e53382fb42c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x8f3a875b6d662def65b86eb8fcf4e104e29bce112b46fdbcdf2b24bfac2f0766:log:109', 'hash': '0x8f3a875b6d662def65b86eb8fcf4e104e29bce112b46fdbcdf2b24bfac2f0766', 'from': '0x247ac58cd31541c65b3aaa47e047745107d13873', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 357.74696445276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1364bc88bec10e7cd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x8f3a875b6d662def65b86eb8fcf4e104e29bce112b46fdbcdf2b24bfac2f0766:log:115', 'hash': '0x8f3a875b6d662def65b86eb8fcf4e104e29bce112b46fdbcdf2b24bfac2f0766', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 357.74696445276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1364bc88bec10e7cd9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x38bfdadc34502ff4fb420e67055fa9433bd1874530da05c13c5baca6186810d8:log:126', 'hash': '0x38bfdadc34502ff4fb420e67055fa9433bd1874530da05c13c5baca6186810d8', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1526.7387389620849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x52c3c19a13d6e8e4e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0x38bfdadc34502ff4fb420e67055fa9433bd1874530da05c13c5baca6186810d8:log:132', 'hash': '0x38bfdadc34502ff4fb420e67055fa9433bd1874530da05c13c5baca6186810d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1526.7387389620849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x52c3c19a13d6e8e4e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0xe921a80409fa8eecfde9dd22f10403c8c040300cca6dfdc16ee4d99e4bfd122c:log:151', 'hash': '0xe921a80409fa8eecfde9dd22f10403c8c040300cca6dfdc16ee4d99e4bfd122c', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 880.5235995447251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fbbb83c926ba62eb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d21', 'uniqueId': '0xe921a80409fa8eecfde9dd22f10403c8c040300cca6dfdc16ee4d99e4bfd122c:log:157', 'hash': '0xe921a80409fa8eecfde9dd22f10403c8c040300cca6dfdc16ee4d99e4bfd122c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 880.5235995447251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fbbb83c926ba62eb3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:58:55.000Z'}}, {'blockNum': '0x979d22', 'uniqueId': '0x9ff52888bc73b9047c9a4587771563e4ef62c1bbf8d5553b0da3d3c7308dafa5:log:11', 'hash': '0x9ff52888bc73b9047c9a4587771563e4ef62c1bbf8d5553b0da3d3c7308dafa5', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x00413793a34097c1a89f70a0c6917d67948eca8a', 'value': 1724.9250073255039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5d8224ab1e40ba3aa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:12.000Z'}}, {'blockNum': '0x979d22', 'uniqueId': '0x1e1a181f697830fa922219419e38432de894270be39df06459ad9723832810be:log:31', 'hash': '0x1e1a181f697830fa922219419e38432de894270be39df06459ad9723832810be', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 938.0112274191795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32d985518a9058678b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:12.000Z'}}, {'blockNum': '0x979d22', 'uniqueId': '0x1e1a181f697830fa922219419e38432de894270be39df06459ad9723832810be:log:37', 'hash': '0x1e1a181f697830fa922219419e38432de894270be39df06459ad9723832810be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 938.0112274191795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32d985518a9058678b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:12.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3:log:5', 'hash': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 589.4139669397347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff3c3101528b8ec11', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3:log:10', 'hash': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'value': 589.4139669397347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff3c3101528b8ec11', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3:log:11', 'hash': '0x00d15d10c360dfe42abf89955fd402038e021874d7efbcaebc67376d1c0c78b3', 'from': '0x00000000b1786c9698c160d78232c78d6f6474fe', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 589.4139669397347, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ff3c3101528b8ec11', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96:log:20', 'hash': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6972.625822986134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0179fc9f237374381c99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96:log:25', 'hash': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 6972.625822986134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0179fc9f237374381c99', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96:log:26', 'hash': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 6971.928560403835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0179f2f1f6d39f238610', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96:log:28', 'hash': '0x8689053e10f97599db093f82cde8c4ac57b3e6237793de01930a6eea9802cb96', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3911c614be43ac656d818092236be68e413d2708', 'value': 6971.928560403835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0179f2f1f6d39f238610', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:38', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 16864.563218160467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03923ad46ea1ad354d6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:43', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 16864.563218160467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03923ad46ea1ad354d6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:44', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 16864.563218160467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03923ad46ea1ad354d6a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:45', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 512.7785131922544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bcc3b3cee6d481dd5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d:log:47', 'hash': '0x4b2a33b939703b6144d303553281cbd633436cb69488aa0c0e68f955b30d842d', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 17377.34173135272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03ae070fab901a7d6b3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b:log:99', 'hash': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 582.3601051506269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f91deb6288e3e3b35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b:log:104', 'hash': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 582.3601051506269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f91deb6288e3e3b35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d23', 'uniqueId': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b:log:105', 'hash': '0x571904394b43994e8f5389d210959bc789a51ec739ceae4b338a6247490d609b', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 582.3601051506269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f91deb6288e3e3b35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:16.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:8', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3946.3539718974707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5eea9bcc2e49bce35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:13', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 3946.3539718974707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5eea9bcc2e49bce35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:14', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 3946.3539718974707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5eea9bcc2e49bce35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:15', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 385.4582904154112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14e54ef0e323f1793a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d24', 'uniqueId': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c:log:17', 'hash': '0x8319bc36d2f814475cdc1d192255e8a148c55870f0bbef4ff2462d905816c18c', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x8c7ad1c843edd4b24d3b66259ee50b75d22d7612', 'value': 4331.812262312882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xead3f8ada6088d476f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:29.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x675b981645f04c07c999e7c42535b453fc20d1aec069a052c9fb297b07b42ecc:log:40', 'hash': '0x675b981645f04c07c999e7c42535b453fc20d1aec069a052c9fb297b07b42ecc', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x3911c614be43ac656d818092236be68e413d2708', 'value': 4748.68708663368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01016d4591abbd18a863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82:log:51', 'hash': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17306.20204624031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03aa2bccbcde0bdd671c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82:log:56', 'hash': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 17306.20204624031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03aa2bccbcde0bdd671c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82:log:57', 'hash': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 17306.20204624031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03aa2bccbcde0bdd671c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82:log:58', 'hash': '0x25757a7c4c5b1b4e3fea7c12db4826649a58d98387b67b5291a08fb4efde7b82', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 17306.20204624031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03aa2bccbcde0bdd671c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0xb15e6190f5ad65b8a44673d51c20b1d67cbcc4b0e110f12402f5ae344735a557:log:97', 'hash': '0xb15e6190f5ad65b8a44673d51c20b1d67cbcc4b0e110f12402f5ae344735a557', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 620.71966503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21a6373ea18c9bbc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0xa24e8337240b5be61667a10c8d8613d44635124652695460e8cc04ceec949146:log:98', 'hash': '0xa24e8337240b5be61667a10c8d8613d44635124652695460e8cc04ceec949146', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x50ca540462d794927f4c642611f0da56231e2113', 'value': 3492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xbd4d3c2a9750100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x3380e746a7574d18c71c3f2a0cef0bbb29906f7d98708dec6b80547bfc93f71d:log:140', 'hash': '0x3380e746a7574d18c71c3f2a0cef0bbb29906f7d98708dec6b80547bfc93f71d', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 884.3102638497604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ff0452bb1dced640a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x3380e746a7574d18c71c3f2a0cef0bbb29906f7d98708dec6b80547bfc93f71d:log:146', 'hash': '0x3380e746a7574d18c71c3f2a0cef0bbb29906f7d98708dec6b80547bfc93f71d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 884.3102638497604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ff0452bb1dced640a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0xff85009a4eeae9073fb9a345559a2c8813a824d96ba0f3df7238938205d3a689:log:170', 'hash': '0xff85009a4eeae9073fb9a345559a2c8813a824d96ba0f3df7238938205d3a689', 'from': '0x46989597338d1db0f7adccd124af2fe4ca841068', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 604.5100269010258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20c5430aa295784ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0xff85009a4eeae9073fb9a345559a2c8813a824d96ba0f3df7238938205d3a689:log:176', 'hash': '0xff85009a4eeae9073fb9a345559a2c8813a824d96ba0f3df7238938205d3a689', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 604.5100269010258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20c5430aa295784ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f:log:200', 'hash': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f', 'from': '0x46989597338d1db0f7adccd124af2fe4ca841068', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 640.1046750377897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22b33ca286e64e8259', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f:log:205', 'hash': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 640.1046750377897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22b33ca286e64e8259', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d25', 'uniqueId': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f:log:206', 'hash': '0x2a1917583888f2befc520cc7c1647936038cf133b895848460ea52d993b8160f', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 640.1046750377897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22b33ca286e64e8259', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T15:59:31.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:4', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2932.9869175716863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9eff5ebde69844dea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:9', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 2932.9869175716863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9eff5ebde69844dea8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:10', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2932.693618879929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9efb4cbc4b68ff06aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:12', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xe8bea818de87dd3e5ce9547120936c822b5b9502', 'value': 2932.693618879929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9efb4cbc4b68ff06aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c:log:15', 'hash': '0x8b153d7e34e55369b3420821ac74309f58a6a81214a5f41cf75be9e68d0d809c', 'from': '0xe8bea818de87dd3e5ce9547120936c822b5b9502', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 2932.693618879929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9efb4cbc4b68ff06aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x7e2cacf6d922d6b0b1550409d08ffa8f553da03c8ba4e5a2ddc85e4b724cf302:log:62', 'hash': '0x7e2cacf6d922d6b0b1550409d08ffa8f553da03c8ba4e5a2ddc85e4b724cf302', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2976.032002972377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa154bd9b0292c875a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x7e2cacf6d922d6b0b1550409d08ffa8f553da03c8ba4e5a2ddc85e4b724cf302:log:68', 'hash': '0x7e2cacf6d922d6b0b1550409d08ffa8f553da03c8ba4e5a2ddc85e4b724cf302', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2976.032002972377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa154bd9b0292c875a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xd4e7c99904a3d8dc1135a5558df5445122759b177fad18f51e76743d971215d4:log:86', 'hash': '0xd4e7c99904a3d8dc1135a5558df5445122759b177fad18f51e76743d971215d4', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 584.8424027678913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb4519ab08617a56d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xd4e7c99904a3d8dc1135a5558df5445122759b177fad18f51e76743d971215d4:log:92', 'hash': '0xd4e7c99904a3d8dc1135a5558df5445122759b177fad18f51e76743d971215d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 584.8424027678913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fb4519ab08617a56d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xcd6ce23d5c3f5edbee30ec95bf71cbf86b9102a2cbc10ece4623215fd6d2b43a:log:111', 'hash': '0xcd6ce23d5c3f5edbee30ec95bf71cbf86b9102a2cbc10ece4623215fd6d2b43a', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2851.2479694653452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a9103a9ab67b6fcfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xcd6ce23d5c3f5edbee30ec95bf71cbf86b9102a2cbc10ece4623215fd6d2b43a:log:117', 'hash': '0xcd6ce23d5c3f5edbee30ec95bf71cbf86b9102a2cbc10ece4623215fd6d2b43a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2851.2479694653452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a9103a9ab67b6fcfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x134570f46919e2dc78bb5393f85dc663f0a37f391b6622deb9d9965820285949:log:130', 'hash': '0x134570f46919e2dc78bb5393f85dc663f0a37f391b6622deb9d9965820285949', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1503.2905534844626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x517e58e99e91c1461d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x134570f46919e2dc78bb5393f85dc663f0a37f391b6622deb9d9965820285949:log:136', 'hash': '0x134570f46919e2dc78bb5393f85dc663f0a37f391b6622deb9d9965820285949', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1503.2905534844626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x517e58e99e91c1461d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xa67493633981a3e1ed1ee864003bf2f15702b5f7ed7951a62d007c81b17181aa:log:147', 'hash': '0xa67493633981a3e1ed1ee864003bf2f15702b5f7ed7951a62d007c81b17181aa', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 890.027758212192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x303f9dca865af4ff8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xa67493633981a3e1ed1ee864003bf2f15702b5f7ed7951a62d007c81b17181aa:log:153', 'hash': '0xa67493633981a3e1ed1ee864003bf2f15702b5f7ed7951a62d007c81b17181aa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 890.027758212192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x303f9dca865af4ff8e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xcdafdac04f7fed04a84e329328d8b990eacd579de6560392fa276b371cb53ce6:log:164', 'hash': '0xcdafdac04f7fed04a84e329328d8b990eacd579de6560392fa276b371cb53ce6', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 707.9975234273542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2661707c6cefbfe5aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0xcdafdac04f7fed04a84e329328d8b990eacd579de6560392fa276b371cb53ce6:log:170', 'hash': '0xcdafdac04f7fed04a84e329328d8b990eacd579de6560392fa276b371cb53ce6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 707.9975234273542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2661707c6cefbfe5aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x4886928fbf7593fe528f91a636385eb87872568af79e24c6eff1a01bc07946da:log:188', 'hash': '0x4886928fbf7593fe528f91a636385eb87872568af79e24c6eff1a01bc07946da', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 860.701908675764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ea8a371bf179d60a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d26', 'uniqueId': '0x4886928fbf7593fe528f91a636385eb87872568af79e24c6eff1a01bc07946da:log:194', 'hash': '0x4886928fbf7593fe528f91a636385eb87872568af79e24c6eff1a01bc07946da', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 860.701908675764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ea8a371bf179d60a2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:20.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788:log:6', 'hash': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 43063.4441822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091e795733e228de39a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788:log:11', 'hash': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd524262fec411a64b019330be56e9dd19de63a9b', 'value': 43063.4441822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091e795733e228de39a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788:log:12', 'hash': '0x15ce7c87b9935aca7975dc351f5bf53f4fa77683b1eb60eb9a48d2cc036ea788', 'from': '0xd524262fec411a64b019330be56e9dd19de63a9b', 'to': '0x23bb4e19767c51afd9bebdd5cb23ced735b97618', 'value': 43063.4441822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091e795733e228de39a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x5d037a8ec1df8867cb0d838f095cfb12dbaf52909ab06da5b31997b0bdddfb76:log:38', 'hash': '0x5d037a8ec1df8867cb0d838f095cfb12dbaf52909ab06da5b31997b0bdddfb76', 'from': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 861.696494535834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb670ec510fb65e55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d28', 'uniqueId': '0x5d037a8ec1df8867cb0d838f095cfb12dbaf52909ab06da5b31997b0bdddfb76:log:44', 'hash': '0x5d037a8ec1df8867cb0d838f095cfb12dbaf52909ab06da5b31997b0bdddfb76', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 861.696494535834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb670ec510fb65e55', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:39.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445:log:6', 'hash': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1581.5831950587262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55bce04051aab8fc6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445:log:11', 'hash': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'value': 1581.5831950587262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55bce04051aab8fc6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445:log:13', 'hash': '0xf06d2d1e97f63c645086be8f223b633e08b7cf8afb07709a4b05e0f2c9f94445', 'from': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 1581.5831950587262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x55bce04051aab8fc6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0x608cc87cab4db555bb416d3c2471b0bf41f6162bdabe3aa9a5cb1bb8039c797f:log:294', 'hash': '0x608cc87cab4db555bb416d3c2471b0bf41f6162bdabe3aa9a5cb1bb8039c797f', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 341.07206877821056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x127d536779fcd6e335', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0x608cc87cab4db555bb416d3c2471b0bf41f6162bdabe3aa9a5cb1bb8039c797f:log:300', 'hash': '0x608cc87cab4db555bb416d3c2471b0bf41f6162bdabe3aa9a5cb1bb8039c797f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 341.07206877821056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x127d536779fcd6e335', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2a', 'uniqueId': '0x01fe638657bc682128402d4d484a43668aafe47eaffe5e135377181628633b0e:log:313', 'hash': '0x01fe638657bc682128402d4d484a43668aafe47eaffe5e135377181628633b0e', 'from': '0x8c7ad1c843edd4b24d3b66259ee50b75d22d7612', 'to': '0x7b7fd165678171446e248b6d4425be265e4b3875', 'value': 4331.812262312882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xead3f8ada6088d476f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:47.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x8a0bbdc23578f9c14dbfc6da07aaa6c1d9e778a7a64cf32c71da3dfd8dfb2526:log:24', 'hash': '0x8a0bbdc23578f9c14dbfc6da07aaa6c1d9e778a7a64cf32c71da3dfd8dfb2526', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4549.833640028199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf6a5a0358dcb4c2796', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x8a0bbdc23578f9c14dbfc6da07aaa6c1d9e778a7a64cf32c71da3dfd8dfb2526:log:30', 'hash': '0x8a0bbdc23578f9c14dbfc6da07aaa6c1d9e778a7a64cf32c71da3dfd8dfb2526', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 4549.833640028199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xf6a5a0358dcb4c2796', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x9d655ef948fbd34888aa34ecc2174b9c375dad59f5aceeed9e52d62aca1f6c20:log:39', 'hash': '0x9d655ef948fbd34888aa34ecc2174b9c375dad59f5aceeed9e52d62aca1f6c20', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 34683.543777593026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075832dc686e265ad25b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61:log:47', 'hash': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17127.40702147083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a07a853522dc127a5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61:log:52', 'hash': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 17127.40702147083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a07a853522dc127a5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61:log:53', 'hash': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 17125.694280768683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a062c0548ac43dfef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61:log:55', 'hash': '0x777abedaf67dd8d4fdc15c7de27eb95e35b0284787f3275157d1b7b4e7f3ad61', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xc640caba272414689b21ebcd60d97b912359504d', 'value': 17125.694280768683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a062c0548ac43dfef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x5568950e2985461bb607d014757f063e57e5ac465ba73ef02796830be8229cae:log:107', 'hash': '0x5568950e2985461bb607d014757f063e57e5ac465ba73ef02796830be8229cae', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1071.5592522359211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a16df368b5946c242', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x5568950e2985461bb607d014757f063e57e5ac465ba73ef02796830be8229cae:log:113', 'hash': '0x5568950e2985461bb607d014757f063e57e5ac465ba73ef02796830be8229cae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1071.5592522359211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a16df368b5946c242', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x095eaddbd110e85d590499081e6b0e4b1b479d0492b0671dc4650fb6bde3a094:log:139', 'hash': '0x095eaddbd110e85d590499081e6b0e4b1b479d0492b0671dc4650fb6bde3a094', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 603.2396655080753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20b3a1cfadca492200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x095eaddbd110e85d590499081e6b0e4b1b479d0492b0671dc4650fb6bde3a094:log:143', 'hash': '0x095eaddbd110e85d590499081e6b0e4b1b479d0492b0671dc4650fb6bde3a094', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 603.2396655080753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20b3a1cfadca492200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x70eac9b10ebb5eaf2d40113bbb7ed05ce629ebda2b9fed2f1360b7c4ea014b75:log:157', 'hash': '0x70eac9b10ebb5eaf2d40113bbb7ed05ce629ebda2b9fed2f1360b7c4ea014b75', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1312.2452401727328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47230f9d5d24e53fcc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x70eac9b10ebb5eaf2d40113bbb7ed05ce629ebda2b9fed2f1360b7c4ea014b75:log:163', 'hash': '0x70eac9b10ebb5eaf2d40113bbb7ed05ce629ebda2b9fed2f1360b7c4ea014b75', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1312.2452401727328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47230f9d5d24e53fcc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0xe6f480bbf788039c3a42c3b494dafc7877bde02a36d7f994dff1194619cd53d7:log:179', 'hash': '0xe6f480bbf788039c3a42c3b494dafc7877bde02a36d7f994dff1194619cd53d7', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 516.7080439847815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c02c3bc5e1bd19e45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0xe6f480bbf788039c3a42c3b494dafc7877bde02a36d7f994dff1194619cd53d7:log:185', 'hash': '0xe6f480bbf788039c3a42c3b494dafc7877bde02a36d7f994dff1194619cd53d7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 516.7080439847815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c02c3bc5e1bd19e45', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x58556eaae18178df6f81bbc25e51adea8e0aadf4d11d6ba6714462c59250a9c1:log:196', 'hash': '0x58556eaae18178df6f81bbc25e51adea8e0aadf4d11d6ba6714462c59250a9c1', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1352.7014986347974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4954811e16b1a6a7c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2b', 'uniqueId': '0x58556eaae18178df6f81bbc25e51adea8e0aadf4d11d6ba6714462c59250a9c1:log:202', 'hash': '0x58556eaae18178df6f81bbc25e51adea8e0aadf4d11d6ba6714462c59250a9c1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1352.7014986347974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4954811e16b1a6a7c1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:00:51.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0x05c48cd7525fc21736c5de8930e2db231d2a835d7214a6b89ef9c5d1cc866689:log:2', 'hash': '0x05c48cd7525fc21736c5de8930e2db231d2a835d7214a6b89ef9c5d1cc866689', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x3911c614be43ac656d818092236be68e413d2708', 'value': 1977.0171501621594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b2c9fdf62fe9e1cb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793:log:10', 'hash': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793:log:15', 'hash': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793:log:16', 'hash': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793:log:17', 'hash': '0xbc4c96c4363e595a670a887a5e78af4e9a4b8e96ef9e119bba066c2c91201793', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0x2ec2f7b5775ca076e58ba8dc46624dc1b0e94f5de907484c833fb00a1f830db9:log:172', 'hash': '0x2ec2f7b5775ca076e58ba8dc46624dc1b0e94f5de907484c833fb00a1f830db9', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 743.6748011764021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28508fa38310b13aee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2d', 'uniqueId': '0x2ec2f7b5775ca076e58ba8dc46624dc1b0e94f5de907484c833fb00a1f830db9:log:178', 'hash': '0x2ec2f7b5775ca076e58ba8dc46624dc1b0e94f5de907484c833fb00a1f830db9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 743.6748011764021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28508fa38310b13aee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:18.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b:log:5', 'hash': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1076.8456228908992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a603c2ca58a4bda79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b:log:10', 'hash': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'value': 1076.8456228908992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a603c2ca58a4bda79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b:log:11', 'hash': '0x2b63b3dc64570b22270335ac9bf77f512100282476fb9b85b8029bf9a9a5138b', 'from': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 1076.8456228908992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a603c2ca58a4bda79', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0xce6340c16eb9077542b4601dd27d17d2e57fb58fa78c5f97595b9305cb1f8965:log:29', 'hash': '0xce6340c16eb9077542b4601dd27d17d2e57fb58fa78c5f97595b9305cb1f8965', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 650.1892826934545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233f305bc25d63e619', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0xce6340c16eb9077542b4601dd27d17d2e57fb58fa78c5f97595b9305cb1f8965:log:35', 'hash': '0xce6340c16eb9077542b4601dd27d17d2e57fb58fa78c5f97595b9305cb1f8965', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 650.1892826934545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x233f305bc25d63e619', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x6d0c9063f0dca6808912939085478c3f1df77c38b94d3921b542f06af3f37cbd:log:58', 'hash': '0x6d0c9063f0dca6808912939085478c3f1df77c38b94d3921b542f06af3f37cbd', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1091.5246089145153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b2bf268a99ada63f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d2f', 'uniqueId': '0x6d0c9063f0dca6808912939085478c3f1df77c38b94d3921b542f06af3f37cbd:log:64', 'hash': '0x6d0c9063f0dca6808912939085478c3f1df77c38b94d3921b542f06af3f37cbd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1091.5246089145153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3b2bf268a99ada63f1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:28.000Z'}}, {'blockNum': '0x979d30', 'uniqueId': '0xf7d23472f2d71e45f4104a744e56fa4a0acf28876371ff3912070a3ad60844fa:log:7', 'hash': '0xf7d23472f2d71e45f4104a744e56fa4a0acf28876371ff3912070a3ad60844fa', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 853.8855088076929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e4a0aba2e68381b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:34.000Z'}}, {'blockNum': '0x979d30', 'uniqueId': '0xf7d23472f2d71e45f4104a744e56fa4a0acf28876371ff3912070a3ad60844fa:log:13', 'hash': '0xf7d23472f2d71e45f4104a744e56fa4a0acf28876371ff3912070a3ad60844fa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 853.8855088076929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e4a0aba2e68381b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:34.000Z'}}, {'blockNum': '0x979d30', 'uniqueId': '0xa1f21e22356292d01323d33dc23ceee97b85697cf6ac574ea4093790aede31d6:log:103', 'hash': '0xa1f21e22356292d01323d33dc23ceee97b85697cf6ac574ea4093790aede31d6', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 883.3490898727548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fe2ee650e2227f4ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:34.000Z'}}, {'blockNum': '0x979d30', 'uniqueId': '0xa1f21e22356292d01323d33dc23ceee97b85697cf6ac574ea4093790aede31d6:log:109', 'hash': '0xa1f21e22356292d01323d33dc23ceee97b85697cf6ac574ea4093790aede31d6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 883.3490898727548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fe2ee650e2227f4ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:34.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x70d9315f0ba703c2f3cee214cfac8393df4b1dc9e4439079fb12614443d50805:log:1', 'hash': '0x70d9315f0ba703c2f3cee214cfac8393df4b1dc9e4439079fb12614443d50805', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0xb5a62a38ce74f7a870789aa4666408b2773ecbd3', 'value': 2530.372676435277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x892bf99eba971e5eaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0xed4865363b39f7f82f85c3b174be0fd574af69084ed5859e6329223107f8000f:log:6', 'hash': '0xed4865363b39f7f82f85c3b174be0fd574af69084ed5859e6329223107f8000f', 'from': '0x23bb4e19767c51afd9bebdd5cb23ced735b97618', 'to': '0x895a00f33d4257f599779e1a6f96816ea6cca8bd', 'value': 43063.4441822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091e795733e228de39a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0xfef7fb25348c6f8d7f0387e61417c2f54c7c8d0040d2c1ca8cf82e214686aa3d:log:16', 'hash': '0xfef7fb25348c6f8d7f0387e61417c2f54c7c8d0040d2c1ca8cf82e214686aa3d', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 803.6451635773846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b90d12a610ab253b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x9749bbc80af37fb70b7c2c9dfb44d34b32e5a86dd362634bbab4df0bc8415e20:log:19', 'hash': '0x9749bbc80af37fb70b7c2c9dfb44d34b32e5a86dd362634bbab4df0bc8415e20', 'from': '0xb5a62a38ce74f7a870789aa4666408b2773ecbd3', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 2530.372676435277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x892bf99eba971e5eaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c:log:38', 'hash': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c', 'from': '0x1c29f12d94ad2e6b5321ce226b4550f83ce88fca', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 376.81533059261864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x146d5cfab8866adc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c:log:43', 'hash': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 376.81533059261864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x146d5cfab8866adc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c:log:44', 'hash': '0x8a66e74c6732b501bd399d2e5a5d59879d2ffa2bc7f4111e0dd70f405c17914c', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 376.81533059261864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x146d5cfab8866adc2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0xbafcaa65dec5015423d8a201efc6a82446a85950d1731035ddd2712d403c68c4:log:81', 'hash': '0xbafcaa65dec5015423d8a201efc6a82446a85950d1731035ddd2712d403c68c4', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2376.869526108125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x80d9b0e0cd05d35d59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0xbafcaa65dec5015423d8a201efc6a82446a85950d1731035ddd2712d403c68c4:log:87', 'hash': '0xbafcaa65dec5015423d8a201efc6a82446a85950d1731035ddd2712d403c68c4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2376.869526108125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x80d9b0e0cd05d35d59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x41c92b2d8cb73495c59af2d7330f436e780dbf29b6810ec589a1c8ec1c7e5104:log:98', 'hash': '0x41c92b2d8cb73495c59af2d7330f436e780dbf29b6810ec589a1c8ec1c7e5104', 'from': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1745.9632561136325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5ea61b8aecf16e0032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d31', 'uniqueId': '0x41c92b2d8cb73495c59af2d7330f436e780dbf29b6810ec589a1c8ec1c7e5104:log:104', 'hash': '0x41c92b2d8cb73495c59af2d7330f436e780dbf29b6810ec589a1c8ec1c7e5104', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1745.9632561136325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5ea61b8aecf16e0032', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:47.000Z'}}, {'blockNum': '0x979d32', 'uniqueId': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348:log:5', 'hash': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 42618.292457208445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0906579e9470b2f8a2cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:50.000Z'}}, {'blockNum': '0x979d32', 'uniqueId': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348:log:10', 'hash': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 42618.292457208445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0906579e9470b2f8a2cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:50.000Z'}}, {'blockNum': '0x979d32', 'uniqueId': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348:log:11', 'hash': '0xb36ee42aa308e8ab367c37376b4c67d1c2ce4180a65e8cdfd0b865e379397348', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x4c39ada0340c1eb3cee343f44819323dd29081a9', 'value': 42618.292457208445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0906579e9470b2f8a2cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:01:50.000Z'}}, {'blockNum': '0x979d33', 'uniqueId': '0x67c894b655af0425ab92720d96980e895fa9b0be94a2d81b37f6c02df8a9a922:log:68', 'hash': '0x67c894b655af0425ab92720d96980e895fa9b0be94a2d81b37f6c02df8a9a922', 'from': '0xc640caba272414689b21ebcd60d97b912359504d', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 17125.694280768683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a062c0548ac43dfef4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:22.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0x4beffa55983b52237be7851ef3574ff8e921bfac77817a6e94b92da5e4ebd5ae:log:42', 'hash': '0x4beffa55983b52237be7851ef3574ff8e921bfac77817a6e94b92da5e4ebd5ae', 'from': '0xfbbaf86d76ef7c86f1aea216242ef8e203a8be7e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 502.0313666843334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b3715b41f8b91cab9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0x4beffa55983b52237be7851ef3574ff8e921bfac77817a6e94b92da5e4ebd5ae:log:48', 'hash': '0x4beffa55983b52237be7851ef3574ff8e921bfac77817a6e94b92da5e4ebd5ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 502.0313666843334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b3715b41f8b91cab9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96:log:66', 'hash': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 879.3950549003848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac0ed7327c9225f8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96:log:71', 'hash': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 879.3950549003848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac0ed7327c9225f8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96:log:72', 'hash': '0xc0afd99160bbecb444acb4da18df3cad8959a5411c2ee552cc3b929051220a96', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 879.3950549003848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fac0ed7327c9225f8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0x554a242fcd1e909b4755bf95a8f7152224f379c292ff73a2fa6101514edff610:log:102', 'hash': '0x554a242fcd1e909b4755bf95a8f7152224f379c292ff73a2fa6101514edff610', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 802.512223541195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b8118276b31ccdb43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0x554a242fcd1e909b4755bf95a8f7152224f379c292ff73a2fa6101514edff610:log:108', 'hash': '0x554a242fcd1e909b4755bf95a8f7152224f379c292ff73a2fa6101514edff610', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 802.512223541195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b8118276b31ccdb43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xdc0ec7567b2df0b06fadbc713f0055925112b936b14c5ab1f36ab524b238820d:log:126', 'hash': '0xdc0ec7567b2df0b06fadbc713f0055925112b936b14c5ab1f36ab524b238820d', 'from': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 874.2063676325859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f640ceb9e34d25604', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xdc0ec7567b2df0b06fadbc713f0055925112b936b14c5ab1f36ab524b238820d:log:132', 'hash': '0xdc0ec7567b2df0b06fadbc713f0055925112b936b14c5ab1f36ab524b238820d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 874.2063676325859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f640ceb9e34d25604', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0a97859b50907217d9124d16b10c490e70f6141ca15ec50c9a41faaa3941177:log:166', 'hash': '0xc0a97859b50907217d9124d16b10c490e70f6141ca15ec50c9a41faaa3941177', 'from': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 945.2237923005101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x333d9d7f1647833877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d34', 'uniqueId': '0xc0a97859b50907217d9124d16b10c490e70f6141ca15ec50c9a41faaa3941177:log:172', 'hash': '0xc0a97859b50907217d9124d16b10c490e70f6141ca15ec50c9a41faaa3941177', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 945.2237923005101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x333d9d7f1647833877', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:35.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xcc00e3a6eced9591cf221989a544707169f6977f1b4c1f989e7618066addf4ae:log:6', 'hash': '0xcc00e3a6eced9591cf221989a544707169f6977f1b4c1f989e7618066addf4ae', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2414.3778064501007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82e2390f0b65155e89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xcc00e3a6eced9591cf221989a544707169f6977f1b4c1f989e7618066addf4ae:log:12', 'hash': '0xcc00e3a6eced9591cf221989a544707169f6977f1b4c1f989e7618066addf4ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 2414.3778064501007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x82e2390f0b65155e89', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f:log:35', 'hash': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f:log:40', 'hash': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f:log:41', 'hash': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d35', 'uniqueId': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f:log:42', 'hash': '0xeb81ba47b1bfaba759357d98fa49508321aadf375df5aa2835f869f32f277d9f', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0xce0c61abf9866fef5767e102cf227f294b3459e5', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:38.000Z'}}, {'blockNum': '0x979d36', 'uniqueId': '0xc703867045aaac2f6237011591c3d5e5634a9c68352dba584c112c50ee7abaa6:log:7', 'hash': '0xc703867045aaac2f6237011591c3d5e5634a9c68352dba584c112c50ee7abaa6', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 840.9863310575797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d9707a45c3e192061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:45.000Z'}}, {'blockNum': '0x979d36', 'uniqueId': '0xc703867045aaac2f6237011591c3d5e5634a9c68352dba584c112c50ee7abaa6:log:13', 'hash': '0xc703867045aaac2f6237011591c3d5e5634a9c68352dba584c112c50ee7abaa6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 840.9863310575797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d9707a45c3e192061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:45.000Z'}}, {'blockNum': '0x979d36', 'uniqueId': '0x161762774af4ab9369f6fa6814db3be1f1c1700fef4ab8b700382c411e60b3ae:log:56', 'hash': '0x161762774af4ab9369f6fa6814db3be1f1c1700fef4ab8b700382c411e60b3ae', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 550.711933904789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ddaa9d216eb58f0f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:45.000Z'}}, {'blockNum': '0x979d36', 'uniqueId': '0x161762774af4ab9369f6fa6814db3be1f1c1700fef4ab8b700382c411e60b3ae:log:62', 'hash': '0x161762774af4ab9369f6fa6814db3be1f1c1700fef4ab8b700382c411e60b3ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 550.711933904789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ddaa9d216eb58f0f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:45.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0x3de6b8765b52d1a19b557e9e019f3f73b226caa2dcc8684b244960580c11df99:log:12', 'hash': '0x3de6b8765b52d1a19b557e9e019f3f73b226caa2dcc8684b244960580c11df99', 'from': '0x9db89726ae2683d21a71ff1417638e72e6d8c0d9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 479.82766320372656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a02f24d72a7e47bb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0x3de6b8765b52d1a19b557e9e019f3f73b226caa2dcc8684b244960580c11df99:log:18', 'hash': '0x3de6b8765b52d1a19b557e9e019f3f73b226caa2dcc8684b244960580c11df99', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 479.82766320372656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a02f24d72a7e47bb9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0x498ea1ca7f46ae8e4f7d5eb3bf598403708b63d62dcf1b949d5d2365ceb7ca30:log:44', 'hash': '0x498ea1ca7f46ae8e4f7d5eb3bf598403708b63d62dcf1b949d5d2365ceb7ca30', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1225.4174121080753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x426e1533c5c84a94cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0x498ea1ca7f46ae8e4f7d5eb3bf598403708b63d62dcf1b949d5d2365ceb7ca30:log:48', 'hash': '0x498ea1ca7f46ae8e4f7d5eb3bf598403708b63d62dcf1b949d5d2365ceb7ca30', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1225.4174121080753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x426e1533c5c84a94cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0xbe8054d5e7c24749ad5426c2cd1a6347acb68e408bdc81828a48aaa4b3597684:log:154', 'hash': '0xbe8054d5e7c24749ad5426c2cd1a6347acb68e408bdc81828a48aaa4b3597684', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 520.7336170351498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3aa171ba806823ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0xbe8054d5e7c24749ad5426c2cd1a6347acb68e408bdc81828a48aaa4b3597684:log:160', 'hash': '0xbe8054d5e7c24749ad5426c2cd1a6347acb68e408bdc81828a48aaa4b3597684', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 520.7336170351498, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c3aa171ba806823ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0xfa975abab9fc56b6161e241abf376491ffcae76b4008c28d7201dca9548ba21e:log:193', 'hash': '0xfa975abab9fc56b6161e241abf376491ffcae76b4008c28d7201dca9548ba21e', 'from': '0x8bb76c5ae6b7d6bd1678510edd06444acdf8f72b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 167.65702913171984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0916b56bb5d57aa5fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d38', 'uniqueId': '0xfa975abab9fc56b6161e241abf376491ffcae76b4008c28d7201dca9548ba21e:log:197', 'hash': '0xfa975abab9fc56b6161e241abf376491ffcae76b4008c28d7201dca9548ba21e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 167.65702913171984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0916b56bb5d57aa5fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:49.000Z'}}, {'blockNum': '0x979d39', 'uniqueId': '0xc45d2a871c62f020bb7378cd6b97732cb66b1d21ed19cd46e0de13063e8ca630:log:13', 'hash': '0xc45d2a871c62f020bb7378cd6b97732cb66b1d21ed19cd46e0de13063e8ca630', 'from': '0x247ac58cd31541c65b3aaa47e047745107d13873', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 348.6481455357524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e6770925d136f273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:51.000Z'}}, {'blockNum': '0x979d39', 'uniqueId': '0xc45d2a871c62f020bb7378cd6b97732cb66b1d21ed19cd46e0de13063e8ca630:log:19', 'hash': '0xc45d2a871c62f020bb7378cd6b97732cb66b1d21ed19cd46e0de13063e8ca630', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 348.6481455357524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e6770925d136f273', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:51.000Z'}}, {'blockNum': '0x979d39', 'uniqueId': '0x5581009a8b38e38fee42d242aed72260803df2245254cf83b439e7bb3516bed8:log:123', 'hash': '0x5581009a8b38e38fee42d242aed72260803df2245254cf83b439e7bb3516bed8', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 215.38857979344246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bad1df42500041b1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:51.000Z'}}, {'blockNum': '0x979d39', 'uniqueId': '0x5581009a8b38e38fee42d242aed72260803df2245254cf83b439e7bb3516bed8:log:129', 'hash': '0x5581009a8b38e38fee42d242aed72260803df2245254cf83b439e7bb3516bed8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 215.38857979344246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0bad1df42500041b1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:51.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x00653efe3d64b7ddb1655753c104970286c30e08c97dae7bd8c2286712f0c420:log:4', 'hash': '0x00653efe3d64b7ddb1655753c104970286c30e08c97dae7bd8c2286712f0c420', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 3421.390658608822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb9795564b33a9a939b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x8248cdb5cbe25aa810e5325ce42dadd19d676125f1837087ddc3b58c615deb35:log:16', 'hash': '0x8248cdb5cbe25aa810e5325ce42dadd19d676125f1837087ddc3b58c615deb35', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 16969.250293994573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0397e7a7a3725f80e33c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x8248cdb5cbe25aa810e5325ce42dadd19d676125f1837087ddc3b58c615deb35:log:21', 'hash': '0x8248cdb5cbe25aa810e5325ce42dadd19d676125f1837087ddc3b58c615deb35', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 16969.250293994573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0397e7a7a3725f80e33c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0xb1d3386f973ca5a82bf738317021adf8a7f6836e5fa2cb94f07d085347514239:log:41', 'hash': '0xb1d3386f973ca5a82bf738317021adf8a7f6836e5fa2cb94f07d085347514239', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 340.36651303791666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x127388c444d7621fae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0xb1d3386f973ca5a82bf738317021adf8a7f6836e5fa2cb94f07d085347514239:log:47', 'hash': '0xb1d3386f973ca5a82bf738317021adf8a7f6836e5fa2cb94f07d085347514239', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 340.36651303791666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x127388c444d7621fae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x542cad8057899e7f32d602c84f32e6057a01499c1d0bb05a9115263b700f9c11:log:148', 'hash': '0x542cad8057899e7f32d602c84f32e6057a01499c1d0bb05a9115263b700f9c11', 'from': '0xfa15985038633f5497eb4554b4224ad8510179e2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 245.56341770064296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4fe0835915b1aca3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x542cad8057899e7f32d602c84f32e6057a01499c1d0bb05a9115263b700f9c11:log:154', 'hash': '0x542cad8057899e7f32d602c84f32e6057a01499c1d0bb05a9115263b700f9c11', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 245.56341770064296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4fe0835915b1aca3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x3b8a052fbcf96e5f738b4ad1d25e77b333541da3adae69150e254463e6034ab7:log:167', 'hash': '0x3b8a052fbcf96e5f738b4ad1d25e77b333541da3adae69150e254463e6034ab7', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 190.4671236874799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a534327db0ea0f43f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3a', 'uniqueId': '0x3b8a052fbcf96e5f738b4ad1d25e77b333541da3adae69150e254463e6034ab7:log:173', 'hash': '0x3b8a052fbcf96e5f738b4ad1d25e77b333541da3adae69150e254463e6034ab7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 190.4671236874799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a534327db0ea0f43f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:02:57.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xd1162118c28a051d5a51784bd0caf9facc81aba85db8154b9d6f51904b8d44cd:log:13', 'hash': '0xd1162118c28a051d5a51784bd0caf9facc81aba85db8154b9d6f51904b8d44cd', 'from': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 882.9066495727927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fdcca87f2509a1159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xd1162118c28a051d5a51784bd0caf9facc81aba85db8154b9d6f51904b8d44cd:log:19', 'hash': '0xd1162118c28a051d5a51784bd0caf9facc81aba85db8154b9d6f51904b8d44cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 882.9066495727927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fdcca87f2509a1159', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x959b0402bb75bdc8da26e288a9e9b2a7fc012408f0d942711888ac12151fa243:log:44', 'hash': '0x959b0402bb75bdc8da26e288a9e9b2a7fc012408f0d942711888ac12151fa243', 'from': '0x3911c614be43ac656d818092236be68e413d2708', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 13697.632797199674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02e68cd767e25ada4b29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x4c3fde2c211ca5e6d34cc3fd34ac591a98f1bbb0be11f6b1cf7746e39d484798:log:59', 'hash': '0x4c3fde2c211ca5e6d34cc3fd34ac591a98f1bbb0be11f6b1cf7746e39d484798', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 909.0294217306655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31475142d1db131cc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x4c3fde2c211ca5e6d34cc3fd34ac591a98f1bbb0be11f6b1cf7746e39d484798:log:65', 'hash': '0x4c3fde2c211ca5e6d34cc3fd34ac591a98f1bbb0be11f6b1cf7746e39d484798', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 909.0294217306655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31475142d1db131cc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xe8e68c2b82281243cf00527bea2b2277ab1b00023563d2290057cc3cc8cc7293:log:84', 'hash': '0xe8e68c2b82281243cf00527bea2b2277ab1b00023563d2290057cc3cc8cc7293', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 432.4834223869906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1771e9c543fdcb80ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xe8e68c2b82281243cf00527bea2b2277ab1b00023563d2290057cc3cc8cc7293:log:90', 'hash': '0xe8e68c2b82281243cf00527bea2b2277ab1b00023563d2290057cc3cc8cc7293', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 432.4834223869906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1771e9c543fdcb80ad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x5d866bac32e12e1c4e79b4cd73585d83438846bc4204eb7e4f9825128c3dbbb7:log:118', 'hash': '0x5d866bac32e12e1c4e79b4cd73585d83438846bc4204eb7e4f9825128c3dbbb7', 'from': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 885.59643503277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30021e9192408f74e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x5d866bac32e12e1c4e79b4cd73585d83438846bc4204eb7e4f9825128c3dbbb7:log:124', 'hash': '0x5d866bac32e12e1c4e79b4cd73585d83438846bc4204eb7e4f9825128c3dbbb7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 885.59643503277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30021e9192408f74e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xcfcd7cf3ca285d773e258c8248f5bcd74e6caff3403af44ebd35862c3e51ba68:log:135', 'hash': '0xcfcd7cf3ca285d773e258c8248f5bcd74e6caff3403af44ebd35862c3e51ba68', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 701.0869682304073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26018943166cfe981e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0xcfcd7cf3ca285d773e258c8248f5bcd74e6caff3403af44ebd35862c3e51ba68:log:141', 'hash': '0xcfcd7cf3ca285d773e258c8248f5bcd74e6caff3403af44ebd35862c3e51ba68', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 701.0869682304073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26018943166cfe981e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x7f570a03e89108316091d6c276efe5eccf9c4edb899ad5326f3e3951e461cac6:log:168', 'hash': '0x7f570a03e89108316091d6c276efe5eccf9c4edb899ad5326f3e3951e461cac6', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 478.41400293028886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19ef53f8eb488e29c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3b', 'uniqueId': '0x7f570a03e89108316091d6c276efe5eccf9c4edb899ad5326f3e3951e461cac6:log:174', 'hash': '0x7f570a03e89108316091d6c276efe5eccf9c4edb899ad5326f3e3951e461cac6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 478.41400293028886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19ef53f8eb488e29c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:07.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0x3902f6a586b884b08b00b1ac6c64ff2fd29cabf79ddaf9a3c0e8a1d30bd5cad8:log:107', 'hash': '0x3902f6a586b884b08b00b1ac6c64ff2fd29cabf79ddaf9a3c0e8a1d30bd5cad8', 'from': '0xf3e36ad56aa85abdacc18c02d19509ae4f7d5899', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 1406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4c382b6eb157380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0x0412a4fb11504195a516d2b55a4b41c24ded442ded619435d95cbd4962715703:log:153', 'hash': '0x0412a4fb11504195a516d2b55a4b41c24ded442ded619435d95cbd4962715703', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 156.73032725403718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x087f11fa3ea39c0868', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0x0412a4fb11504195a516d2b55a4b41c24ded442ded619435d95cbd4962715703:log:159', 'hash': '0x0412a4fb11504195a516d2b55a4b41c24ded442ded619435d95cbd4962715703', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 156.73032725403718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x087f11fa3ea39c0868', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0xc503c25c6a5cb47abcedf6594bc5ecf0c57ffe009058978850430dae98b93d0d:log:172', 'hash': '0xc503c25c6a5cb47abcedf6594bc5ecf0c57ffe009058978850430dae98b93d0d', 'from': '0xda764901e0a424a3356633d592a179de65e310fe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 166.3608337891536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0904b868e9ec4d1959', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3d', 'uniqueId': '0xc503c25c6a5cb47abcedf6594bc5ecf0c57ffe009058978850430dae98b93d0d:log:178', 'hash': '0xc503c25c6a5cb47abcedf6594bc5ecf0c57ffe009058978850430dae98b93d0d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 166.3608337891536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0904b868e9ec4d1959', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:37.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0xa259477c188758cd03d9ae1de766fb15b960b54a420615590f9c33c42c9f0751:log:10', 'hash': '0xa259477c188758cd03d9ae1de766fb15b960b54a420615590f9c33c42c9f0751', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1700.3473406508094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c2d0f417edf9bc404', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0xa259477c188758cd03d9ae1de766fb15b960b54a420615590f9c33c42c9f0751:log:16', 'hash': '0xa259477c188758cd03d9ae1de766fb15b960b54a420615590f9c33c42c9f0751', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1700.3473406508094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c2d0f417edf9bc404', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0x97cb8a8eb1e8d05d67abad994157659a83dba40c8b09c21dc05fd2f79e9a676d:log:110', 'hash': '0x97cb8a8eb1e8d05d67abad994157659a83dba40c8b09c21dc05fd2f79e9a676d', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 992.0816851521406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35c7e62c5f30433f73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0x97cb8a8eb1e8d05d67abad994157659a83dba40c8b09c21dc05fd2f79e9a676d:log:116', 'hash': '0x97cb8a8eb1e8d05d67abad994157659a83dba40c8b09c21dc05fd2f79e9a676d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 992.0816851521406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35c7e62c5f30433f73', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0xf44a1f3aa03db3fc6c898a39e14a75d155ed1ab14188a35dff488041e9cae0f6:log:139', 'hash': '0xf44a1f3aa03db3fc6c898a39e14a75d155ed1ab14188a35dff488041e9cae0f6', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 590.4250818328936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2001cb43b88a90e5b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3e', 'uniqueId': '0xf44a1f3aa03db3fc6c898a39e14a75d155ed1ab14188a35dff488041e9cae0f6:log:143', 'hash': '0xf44a1f3aa03db3fc6c898a39e14a75d155ed1ab14188a35dff488041e9cae0f6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 590.4250818328936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2001cb43b88a90e5b1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:38.000Z'}}, {'blockNum': '0x979d3f', 'uniqueId': '0xfa44a207d74fb968583f4220d91a9f791b56aae04921e8703a5a063263b5433e:log:42', 'hash': '0xfa44a207d74fb968583f4220d91a9f791b56aae04921e8703a5a063263b5433e', 'from': '0xa260306fe5e57cae7bdcc7ff0488061eace32b58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 511.6634038191026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbcc192dd54db94db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:45.000Z'}}, {'blockNum': '0x979d3f', 'uniqueId': '0xfa44a207d74fb968583f4220d91a9f791b56aae04921e8703a5a063263b5433e:log:48', 'hash': '0xfa44a207d74fb968583f4220d91a9f791b56aae04921e8703a5a063263b5433e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 511.6634038191026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbcc192dd54db94db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:45.000Z'}}, {'blockNum': '0x979d3f', 'uniqueId': '0x462e05797d4263979aaa4d97ccd3cc4c8244e3b155576f7e45549f39b0b6efce:log:75', 'hash': '0x462e05797d4263979aaa4d97ccd3cc4c8244e3b155576f7e45549f39b0b6efce', 'from': '0x2727da5fb75aa61876ad90ec09c031c01919176b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 175.39961759133823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0982289ee46f122e66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:45.000Z'}}, {'blockNum': '0x979d3f', 'uniqueId': '0x462e05797d4263979aaa4d97ccd3cc4c8244e3b155576f7e45549f39b0b6efce:log:81', 'hash': '0x462e05797d4263979aaa4d97ccd3cc4c8244e3b155576f7e45549f39b0b6efce', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 175.39961759133823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0982289ee46f122e66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:03:45.000Z'}}, {'blockNum': '0x979d43', 'uniqueId': '0xd3f9495f75f8adf096c7f747727eee3763d009bd3f3129a6b1172369b300f5aa:log:12', 'hash': '0xd3f9495f75f8adf096c7f747727eee3763d009bd3f3129a6b1172369b300f5aa', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 834.4855808476868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d3cd0567ca3e293e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:04:14.000Z'}}, {'blockNum': '0x979d43', 'uniqueId': '0xd3f9495f75f8adf096c7f747727eee3763d009bd3f3129a6b1172369b300f5aa:log:18', 'hash': '0xd3f9495f75f8adf096c7f747727eee3763d009bd3f3129a6b1172369b300f5aa', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 834.4855808476868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d3cd0567ca3e293e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:04:14.000Z'}}, {'blockNum': '0x979d45', 'uniqueId': '0x18704f732da45e25dbe435c7b935c2500ede758625bf2384d2e56c8af9bba7b8:log:15', 'hash': '0x18704f732da45e25dbe435c7b935c2500ede758625bf2384d2e56c8af9bba7b8', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 843.7776951759429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2dbdc48f3c97e7fb6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:03.000Z'}}, {'blockNum': '0x979d45', 'uniqueId': '0x18704f732da45e25dbe435c7b935c2500ede758625bf2384d2e56c8af9bba7b8:log:21', 'hash': '0x18704f732da45e25dbe435c7b935c2500ede758625bf2384d2e56c8af9bba7b8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 843.7776951759429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2dbdc48f3c97e7fb6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:03.000Z'}}, {'blockNum': '0x979d46', 'uniqueId': '0xde7725bb604e79292179606f4d32c98c524c3267a73409749448b3a10ae4c3ff:log:80', 'hash': '0xde7725bb604e79292179606f4d32c98c524c3267a73409749448b3a10ae4c3ff', 'from': '0xa260306fe5e57cae7bdcc7ff0488061eace32b58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 705.1839705040895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x263a64bcf2dbcb5b6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:11.000Z'}}, {'blockNum': '0x979d46', 'uniqueId': '0xde7725bb604e79292179606f4d32c98c524c3267a73409749448b3a10ae4c3ff:log:86', 'hash': '0xde7725bb604e79292179606f4d32c98c524c3267a73409749448b3a10ae4c3ff', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 705.1839705040895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x263a64bcf2dbcb5b6f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:11.000Z'}}, {'blockNum': '0x979d46', 'uniqueId': '0x8a388a0484ee1195226dcb8878a50f5c89c15bbb10a43baed68c76aecff12c52:log:153', 'hash': '0x8a388a0484ee1195226dcb8878a50f5c89c15bbb10a43baed68c76aecff12c52', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:11.000Z'}}, {'blockNum': '0x979d46', 'uniqueId': '0x8a388a0484ee1195226dcb8878a50f5c89c15bbb10a43baed68c76aecff12c52:log:155', 'hash': '0x8a388a0484ee1195226dcb8878a50f5c89c15bbb10a43baed68c76aecff12c52', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:11.000Z'}}, {'blockNum': '0x979d47', 'uniqueId': '0xa511e7317d14ceaf43a72e1156287c9e7f31348ba81477e52b21c6986286cc79:log:6', 'hash': '0xa511e7317d14ceaf43a72e1156287c9e7f31348ba81477e52b21c6986286cc79', 'from': '0xce0c61abf9866fef5767e102cf227f294b3459e5', 'to': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'value': 849.3237855012036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e0abc3b00c94e2012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:17.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79:log:0', 'hash': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79', 'from': '0x4c39ada0340c1eb3cee343f44819323dd29081a9', 'to': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'value': 42618.29245000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0906579e8de25a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79:log:2', 'hash': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 426.18292450000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x171a79e7d19fa00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79:log:5', 'hash': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79', 'from': '0x0f16a8557df61dacf3c6be21a41a72d2a848b854', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 42192.109525500004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ef3d24a610bae00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79:log:7', 'hash': '0x7dba32f47335e999593ea631795762e569a889ceac835757279b62d5b2212a79', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 42192.109525500004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08ef3d24a610bae00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x565a7f91008997927374f921c3b5ffddbabdc088480493d27f31864fb7aff0c9:log:73', 'hash': '0x565a7f91008997927374f921c3b5ffddbabdc088480493d27f31864fb7aff0c9', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 831.1923726602068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d0f1c8316a9bcd565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x565a7f91008997927374f921c3b5ffddbabdc088480493d27f31864fb7aff0c9:log:79', 'hash': '0x565a7f91008997927374f921c3b5ffddbabdc088480493d27f31864fb7aff0c9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 831.1923726602068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d0f1c8316a9bcd565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x1c2e925f2bc8575eacc7053255fd9469a7b64bdf8dba5467759f431417e734e6:log:151', 'hash': '0x1c2e925f2bc8575eacc7053255fd9469a7b64bdf8dba5467759f431417e734e6', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 16969.250293994573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0397e7a7a3725f80e33c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d49', 'uniqueId': '0x1c2e925f2bc8575eacc7053255fd9469a7b64bdf8dba5467759f431417e734e6:log:153', 'hash': '0x1c2e925f2bc8575eacc7053255fd9469a7b64bdf8dba5467759f431417e734e6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 16969.250293994573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0397e7a7a3725f80e33c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:05:57.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0xaa3800b91b66e5376d79fa8deeef6f362cbd077cb541023b6d72ad56e0388674:log:12', 'hash': '0xaa3800b91b66e5376d79fa8deeef6f362cbd077cb541023b6d72ad56e0388674', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 818.2944730945924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5c1df7c5049e2cb5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0xaa3800b91b66e5376d79fa8deeef6f362cbd077cb541023b6d72ad56e0388674:log:18', 'hash': '0xaa3800b91b66e5376d79fa8deeef6f362cbd077cb541023b6d72ad56e0388674', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 818.2944730945924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5c1df7c5049e2cb5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x29fe31dc056b7b6289d3d8c198faf85cd55d763afed02fef59b6e9ee0fcdb60e:log:64', 'hash': '0x29fe31dc056b7b6289d3d8c198faf85cd55d763afed02fef59b6e9ee0fcdb60e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 904.0240238938998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3101da8401c7242bd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x29fe31dc056b7b6289d3d8c198faf85cd55d763afed02fef59b6e9ee0fcdb60e:log:70', 'hash': '0x29fe31dc056b7b6289d3d8c198faf85cd55d763afed02fef59b6e9ee0fcdb60e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 904.0240238938998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3101da8401c7242bd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x4cb93e2453fcdcd6a0f5e3f78cd87bfbac344165602414b47b8f1f3af41ad325:log:113', 'hash': '0x4cb93e2453fcdcd6a0f5e3f78cd87bfbac344165602414b47b8f1f3af41ad325', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1914.370963453003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67c73be87d0a8cf2c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x4cb93e2453fcdcd6a0f5e3f78cd87bfbac344165602414b47b8f1f3af41ad325:log:119', 'hash': '0x4cb93e2453fcdcd6a0f5e3f78cd87bfbac344165602414b47b8f1f3af41ad325', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 1914.370963453003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x67c73be87d0a8cf2c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182:log:131', 'hash': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 928.6844868163133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3258161460ce4acb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182:log:133', 'hash': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 928.6844868163133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3258161460ce4acb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182:log:138', 'hash': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 928.6844868163133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3258161460ce4acb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182:log:140', 'hash': '0x2ef59a25dcd613868b12fa9b1e64e93c4c389d1adbf82aceafe5e55e0d9de182', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 928.6844868163133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3258161460ce4acb83', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x736bae3521d023214819c4d8e541d71105d15361d713eb6ac4750cfe02f42d6a:log:155', 'hash': '0x736bae3521d023214819c4d8e541d71105d15361d713eb6ac4750cfe02f42d6a', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 871.3382205883593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f3c3f3713ce1cd38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x736bae3521d023214819c4d8e541d71105d15361d713eb6ac4750cfe02f42d6a:log:161', 'hash': '0x736bae3521d023214819c4d8e541d71105d15361d713eb6ac4750cfe02f42d6a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 871.3382205883593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f3c3f3713ce1cd38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x50b1b844b145e81d008f85f4ba30a00b328f6d8bd3478cc19e2c494c34a4704a:log:201', 'hash': '0x50b1b844b145e81d008f85f4ba30a00b328f6d8bd3478cc19e2c494c34a4704a', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 73109.40855805165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f7b44dbd54ce4700a3a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4b', 'uniqueId': '0x50b1b844b145e81d008f85f4ba30a00b328f6d8bd3478cc19e2c494c34a4704a:log:203', 'hash': '0x50b1b844b145e81d008f85f4ba30a00b328f6d8bd3478cc19e2c494c34a4704a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 73109.40855805165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f7b44dbd54ce4700a3a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:32.000Z'}}, {'blockNum': '0x979d4c', 'uniqueId': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf:log:10', 'hash': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4422.029254319902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xefb7fbd1e38b41074f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:43.000Z'}}, {'blockNum': '0x979d4c', 'uniqueId': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf:log:15', 'hash': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 4422.029254319902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xefb7fbd1e38b41074f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:43.000Z'}}, {'blockNum': '0x979d4c', 'uniqueId': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf:log:17', 'hash': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4422.029254319902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xefb7fbd1e38b41074f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:43.000Z'}}, {'blockNum': '0x979d4c', 'uniqueId': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf:log:19', 'hash': '0xed9fafc8c5f28f5710e5d82d183d0ecb60bdf31cd843250fca2ea9bd72879cdf', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 4422.029254319902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xefb7fbd1e38b41074f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:07:43.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0xe786e58c295961f035dff1afb32fe89ecb535446a0befb75d0513f7c115e58b3:log:7', 'hash': '0xe786e58c295961f035dff1afb32fe89ecb535446a0befb75d0513f7c115e58b3', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3150.250408525272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xaac681b7cfce089112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0xe786e58c295961f035dff1afb32fe89ecb535446a0befb75d0513f7c115e58b3:log:13', 'hash': '0xe786e58c295961f035dff1afb32fe89ecb535446a0befb75d0513f7c115e58b3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 3150.250408525272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xaac681b7cfce089112', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x53758633ae621401eba7f9e9323d5a291ada99be62f3d4a69e328f6746895c5d:log:25', 'hash': '0x53758633ae621401eba7f9e9323d5a291ada99be62f3d4a69e328f6746895c5d', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 818.202677446192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5ad7d81d1dc9728c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x53758633ae621401eba7f9e9323d5a291ada99be62f3d4a69e328f6746895c5d:log:31', 'hash': '0x53758633ae621401eba7f9e9323d5a291ada99be62f3d4a69e328f6746895c5d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 818.202677446192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c5ad7d81d1dc9728c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0xa736eeabb738fbbec573d11ef05f4053b0aa578999fc219e4e81b57f4cd6b14e:log:43', 'hash': '0xa736eeabb738fbbec573d11ef05f4053b0aa578999fc219e4e81b57f4cd6b14e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1538.9226596480023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x536cd795635e8a1ba5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0xa736eeabb738fbbec573d11ef05f4053b0aa578999fc219e4e81b57f4cd6b14e:log:49', 'hash': '0xa736eeabb738fbbec573d11ef05f4053b0aa578999fc219e4e81b57f4cd6b14e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 1538.9226596480023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x536cd795635e8a1ba5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x930aab4f8b9d906514e15b4fea7c8bbcb1fc08d71f06e66a5f8a990c09c29e04:log:72', 'hash': '0x930aab4f8b9d906514e15b4fea7c8bbcb1fc08d71f06e66a5f8a990c09c29e04', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1504.0473326829726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5188d9884a7658a2bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x930aab4f8b9d906514e15b4fea7c8bbcb1fc08d71f06e66a5f8a990c09c29e04:log:78', 'hash': '0x930aab4f8b9d906514e15b4fea7c8bbcb1fc08d71f06e66a5f8a990c09c29e04', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 1504.0473326829726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5188d9884a7658a2bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x557ada38107b921f92ab7131617e2c537d2172052a3154175d000945c41af4f6:log:92', 'hash': '0x557ada38107b921f92ab7131617e2c537d2172052a3154175d000945c41af4f6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1728.9211682782548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5db999e25506bceb37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x557ada38107b921f92ab7131617e2c537d2172052a3154175d000945c41af4f6:log:98', 'hash': '0x557ada38107b921f92ab7131617e2c537d2172052a3154175d000945c41af4f6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 1728.9211682782548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5db999e25506bceb37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x8fdd34f11b38a14f26e8304c89caba72bdcd104e60161ade6ff6ac5098f952e1:log:113', 'hash': '0x8fdd34f11b38a14f26e8304c89caba72bdcd104e60161ade6ff6ac5098f952e1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1166.248377476575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f38f2904426edeb05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x8fdd34f11b38a14f26e8304c89caba72bdcd104e60161ade6ff6ac5098f952e1:log:119', 'hash': '0x8fdd34f11b38a14f26e8304c89caba72bdcd104e60161ade6ff6ac5098f952e1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 1166.248377476575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f38f2904426edeb05', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x02ecf830770a5e1798ef7a2298aab14a250e3fdd2229acc51efe126f3e02334e:log:134', 'hash': '0x02ecf830770a5e1798ef7a2298aab14a250e3fdd2229acc51efe126f3e02334e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2571.5080360439147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8b66d7c65933e9e328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x02ecf830770a5e1798ef7a2298aab14a250e3fdd2229acc51efe126f3e02334e:log:140', 'hash': '0x02ecf830770a5e1798ef7a2298aab14a250e3fdd2229acc51efe126f3e02334e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 2571.5080360439147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8b66d7c65933e9e328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x285c1e30f3230662f195cc6a6144d6f175fc3fbff11d7008321cd55ce7f0b7a7:log:151', 'hash': '0x285c1e30f3230662f195cc6a6144d6f175fc3fbff11d7008321cd55ce7f0b7a7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 850.3110466026467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e186fafbe7d61cdff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x285c1e30f3230662f195cc6a6144d6f175fc3fbff11d7008321cd55ce7f0b7a7:log:157', 'hash': '0x285c1e30f3230662f195cc6a6144d6f175fc3fbff11d7008321cd55ce7f0b7a7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xdfe1582f156b3d2b8346714e9f94574a8448e27c', 'value': 850.3110466026467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e186fafbe7d61cdff', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x209be533b8237a1068345fac78b0b8d6116a964134af2a378ba01112b1d973f7:log:202', 'hash': '0x209be533b8237a1068345fac78b0b8d6116a964134af2a378ba01112b1d973f7', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 522.1471612165502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c4e3f5cac1718af75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d4d', 'uniqueId': '0x209be533b8237a1068345fac78b0b8d6116a964134af2a378ba01112b1d973f7:log:208', 'hash': '0x209be533b8237a1068345fac78b0b8d6116a964134af2a378ba01112b1d973f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 522.1471612165502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c4e3f5cac1718af75', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:00.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xac5549ad96854cbaf01304b96a459ee7ce2ea6e163992fafbc8e85b645213d98:log:15', 'hash': '0xac5549ad96854cbaf01304b96a459ee7ce2ea6e163992fafbc8e85b645213d98', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 835.3489020243742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d48cb7885e3688bed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xac5549ad96854cbaf01304b96a459ee7ce2ea6e163992fafbc8e85b645213d98:log:21', 'hash': '0xac5549ad96854cbaf01304b96a459ee7ce2ea6e163992fafbc8e85b645213d98', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 835.3489020243742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d48cb7885e3688bed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xcc368e2ebc8c8d6ee00c094f6b8934a7bf5c7c32b4660cf343f9f2241260b815:log:90', 'hash': '0xcc368e2ebc8c8d6ee00c094f6b8934a7bf5c7c32b4660cf343f9f2241260b815', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1324.4726304273802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47ccc0080457383337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xcc368e2ebc8c8d6ee00c094f6b8934a7bf5c7c32b4660cf343f9f2241260b815:log:96', 'hash': '0xcc368e2ebc8c8d6ee00c094f6b8934a7bf5c7c32b4660cf343f9f2241260b815', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1324.4726304273802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x47ccc0080457383337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee:log:113', 'hash': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 988.6974339853676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3598eee5ddbe0eb02f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee:log:118', 'hash': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 988.6974339853676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3598eee5ddbe0eb02f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d51', 'uniqueId': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee:log:119', 'hash': '0xd70495a10288e03ff9821c7cb7cc3723407f6b4cf00c262333535f13f1ae58ee', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 988.6974339853676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3598eee5ddbe0eb02f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:08:55.000Z'}}, {'blockNum': '0x979d52', 'uniqueId': '0x34fc1168e71ca74265da13be728b53a65a915cae8bc1bccacac4b9bcb7eeadee:log:161', 'hash': '0x34fc1168e71ca74265da13be728b53a65a915cae8bc1bccacac4b9bcb7eeadee', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 48.03454065151432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a9cf83982924764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:08.000Z'}}, {'blockNum': '0x979d52', 'uniqueId': '0x34fc1168e71ca74265da13be728b53a65a915cae8bc1bccacac4b9bcb7eeadee:log:167', 'hash': '0x34fc1168e71ca74265da13be728b53a65a915cae8bc1bccacac4b9bcb7eeadee', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 48.03454065151432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029a9cf83982924764', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:08.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd659d9878bed5b5ea9ea793cd5e6468bbd25b087357044cd9cda05feab0ffd63:log:11', 'hash': '0xd659d9878bed5b5ea9ea793cd5e6468bbd25b087357044cd9cda05feab0ffd63', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 807.7768577132912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bca27e44e15f9977e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd659d9878bed5b5ea9ea793cd5e6468bbd25b087357044cd9cda05feab0ffd63:log:17', 'hash': '0xd659d9878bed5b5ea9ea793cd5e6468bbd25b087357044cd9cda05feab0ffd63', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 807.7768577132912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2bca27e44e15f9977e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de:log:45', 'hash': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4381.046514006067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed7f3be0b593075bf0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de:log:50', 'hash': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 4381.046514006067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed7f3be0b593075bf0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de:log:51', 'hash': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 4380.608409354666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed79276ad999d96806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d53', 'uniqueId': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de:log:53', 'hash': '0xd8a7b50e9da7593548d458af67d32b514425a3ac7263ec499e069f578a0aa9de', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x5a6fc2de011d93842411aa5f91a0a4acd3feffde', 'value': 4380.608409354666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed79276ad999d96806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:09:30.000Z'}}, {'blockNum': '0x979d57', 'uniqueId': '0x2077dd04f8319c1c8df3513b96955cfffc24ed971e4600c7efe7619cbcc9a1ae:log:7', 'hash': '0x2077dd04f8319c1c8df3513b96955cfffc24ed971e4600c7efe7619cbcc9a1ae', 'from': '0x5a6fc2de011d93842411aa5f91a0a4acd3feffde', 'to': '0x2ea38df81968758b95732fc317b428dccd40bf5b', 'value': 4380.608409354666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xed79276ad999d96806', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:21.000Z'}}, {'blockNum': '0x979d58', 'uniqueId': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88:log:13', 'hash': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:28.000Z'}}, {'blockNum': '0x979d58', 'uniqueId': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88:log:18', 'hash': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:28.000Z'}}, {'blockNum': '0x979d58', 'uniqueId': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88:log:19', 'hash': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88', 'from': '0xb27732feae161e1f42cfcd2b716bbf7f987fb984', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:28.000Z'}}, {'blockNum': '0x979d58', 'uniqueId': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88:log:20', 'hash': '0xf37aec920549f329d4581ec92f8acc93359fefdc5031c6cb362795786a9e6c88', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:28.000Z'}}, {'blockNum': '0x979d59', 'uniqueId': '0xbb074e2cbbb860743d6a8664cb7d174007130275e356194a54d539693767ba32:log:7', 'hash': '0xbb074e2cbbb860743d6a8664cb7d174007130275e356194a54d539693767ba32', 'from': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 839.2853400378364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d7f6c820a442b41d9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:34.000Z'}}, {'blockNum': '0x979d59', 'uniqueId': '0xbb074e2cbbb860743d6a8664cb7d174007130275e356194a54d539693767ba32:log:13', 'hash': '0xbb074e2cbbb860743d6a8664cb7d174007130275e356194a54d539693767ba32', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 839.2853400378364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d7f6c820a442b41d9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:34.000Z'}}, {'blockNum': '0x979d59', 'uniqueId': '0x5e427401860b9038b1662dae7026d2738e785c05da6b4883f913d932e6b432a7:log:26', 'hash': '0x5e427401860b9038b1662dae7026d2738e785c05da6b4883f913d932e6b432a7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0eee7bce7d0a676794fb8186af5dbe7b6713806a', 'value': 17121.23428075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a024db3a27b85a4c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:34.000Z'}}, {'blockNum': '0x979d59', 'uniqueId': '0x739ae334aac73084785819a205eb3a26ec6a614f78d368be875074b4dd624cbe:log:29', 'hash': '0x739ae334aac73084785819a205eb3a26ec6a614f78d368be875074b4dd624cbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x23bb4e19767c51afd9bebdd5cb23ced735b97618', 'value': 29170.56418228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062d56e66382c4805000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:10:34.000Z'}}, {'blockNum': '0x979d5b', 'uniqueId': '0xe47f27d8742a6122f040fe63677e0cd6998bf2749eac354a9e049809b1b82212:log:125', 'hash': '0xe47f27d8742a6122f040fe63677e0cd6998bf2749eac354a9e049809b1b82212', 'from': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 619.1929689690458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21910754a7037196c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:02.000Z'}}, {'blockNum': '0x979d5b', 'uniqueId': '0xe47f27d8742a6122f040fe63677e0cd6998bf2749eac354a9e049809b1b82212:log:131', 'hash': '0xe47f27d8742a6122f040fe63677e0cd6998bf2749eac354a9e049809b1b82212', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 619.1929689690458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21910754a7037196c9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:02.000Z'}}, {'blockNum': '0x979d5d', 'uniqueId': '0x9f1667b68e55d37012925c31b0b1532cfa95a2582f1820277aff91118cf4eb0c:log:10', 'hash': '0x9f1667b68e55d37012925c31b0b1532cfa95a2582f1820277aff91118cf4eb0c', 'from': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 831.395210001895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d11ed22937c3d2fd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:17.000Z'}}, {'blockNum': '0x979d5d', 'uniqueId': '0x9f1667b68e55d37012925c31b0b1532cfa95a2582f1820277aff91118cf4eb0c:log:16', 'hash': '0x9f1667b68e55d37012925c31b0b1532cfa95a2582f1820277aff91118cf4eb0c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 831.395210001895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d11ed22937c3d2fd7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:17.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0x49948aecf8a93ce84074938c33cc366f35824153c5a3d9dd3fcf73f1bc1cdcdf:log:14', 'hash': '0x49948aecf8a93ce84074938c33cc366f35824153c5a3d9dd3fcf73f1bc1cdcdf', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 17482.407441013038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03b3b9240dd643fd9dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8:log:60', 'hash': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3279.259499035638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1c4de141c889b0a2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8:log:65', 'hash': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'value': 3279.259499035638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1c4de141c889b0a2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8:log:67', 'hash': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8', 'from': '0xb0a36e6e856a023a2ab264b3f12775b10dfb0369', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3279.259499035638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1c4de141c889b0a2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5e', 'uniqueId': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8:log:68', 'hash': '0xfdf0b1f6f863d07615e19730548432809a1558fe2efa3acf8c9a5d371a2c41d8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3279.259499035638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb1c4de141c889b0a2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:33.000Z'}}, {'blockNum': '0x979d5f', 'uniqueId': '0x0ad8c5c693b3f2aecbdf18d7a0e2965fb6472c4481b7b920c3852e682aaef325:log:1', 'hash': '0x0ad8c5c693b3f2aecbdf18d7a0e2965fb6472c4481b7b920c3852e682aaef325', 'from': '0x0eee7bce7d0a676794fb8186af5dbe7b6713806a', 'to': '0xcdf8b5d9f08ca3d91944911d8f2b1f9b309d87a9', 'value': 17121.23428075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a024db3a27b85a4c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:45.000Z'}}, {'blockNum': '0x979d5f', 'uniqueId': '0x504ef15ce8a2c470aa79d8764ce973816c715a4714a8291b1768ffde984519b7:log:71', 'hash': '0x504ef15ce8a2c470aa79d8764ce973816c715a4714a8291b1768ffde984519b7', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1653.18209981909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x599e82a8d9ef37511c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:45.000Z'}}, {'blockNum': '0x979d5f', 'uniqueId': '0x504ef15ce8a2c470aa79d8764ce973816c715a4714a8291b1768ffde984519b7:log:77', 'hash': '0x504ef15ce8a2c470aa79d8764ce973816c715a4714a8291b1768ffde984519b7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 1653.18209981909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x599e82a8d9ef37511c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:11:45.000Z'}}, {'blockNum': '0x979d62', 'uniqueId': '0x987cc205d66f89ed398a97415a85afa754c601e22895b2fe84f39b654122f605:log:50', 'hash': '0x987cc205d66f89ed398a97415a85afa754c601e22895b2fe84f39b654122f605', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 3956.342796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd679492b5c07bcc000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:00.000Z'}}, {'blockNum': '0x979d63', 'uniqueId': '0xaae7f8fab5e46f8698305561dcc7f51ab625ea7a73e27c27e218e79ee14c7fff:log:3', 'hash': '0xaae7f8fab5e46f8698305561dcc7f51ab625ea7a73e27c27e218e79ee14c7fff', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 831.5542558625403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d14222df197018802', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:28.000Z'}}, {'blockNum': '0x979d63', 'uniqueId': '0xaae7f8fab5e46f8698305561dcc7f51ab625ea7a73e27c27e218e79ee14c7fff:log:9', 'hash': '0xaae7f8fab5e46f8698305561dcc7f51ab625ea7a73e27c27e218e79ee14c7fff', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 831.5542558625403, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d14222df197018802', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:28.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0x9c91ab0b82d9ebcd6ca80a5c7ac8965dfcbe75e4174316ffa4de789ee850a699:log:7', 'hash': '0x9c91ab0b82d9ebcd6ca80a5c7ac8965dfcbe75e4174316ffa4de789ee850a699', 'from': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 838.4172411919986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d736066bd3c1478e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0x9c91ab0b82d9ebcd6ca80a5c7ac8965dfcbe75e4174316ffa4de789ee850a699:log:13', 'hash': '0x9c91ab0b82d9ebcd6ca80a5c7ac8965dfcbe75e4174316ffa4de789ee850a699', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 838.4172411919986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d736066bd3c1478e3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0xaad1877738b11619867ac7182ea816f183fb1b9db78714c6014c84a87241d646:log:26', 'hash': '0xaad1877738b11619867ac7182ea816f183fb1b9db78714c6014c84a87241d646', 'from': '0x23bb4e19767c51afd9bebdd5cb23ced735b97618', 'to': '0x895a00f33d4257f599779e1a6f96816ea6cca8bd', 'value': 29170.56418228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062d56e66382c4805000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0xac783ed62184696575745086bd34317581eec88582ed767f03facb37ae942404:log:150', 'hash': '0xac783ed62184696575745086bd34317581eec88582ed767f03facb37ae942404', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 305.5043188531024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108fb95f5d9ad7326a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d64', 'uniqueId': '0xac783ed62184696575745086bd34317581eec88582ed767f03facb37ae942404:log:156', 'hash': '0xac783ed62184696575745086bd34317581eec88582ed767f03facb37ae942404', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 305.5043188531024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108fb95f5d9ad7326a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:31.000Z'}}, {'blockNum': '0x979d66', 'uniqueId': '0xc823b5ddc026723a581619e142edb13754056196bb5ebd7ce8ba4d37ff387c9e:log:4', 'hash': '0xc823b5ddc026723a581619e142edb13754056196bb5ebd7ce8ba4d37ff387c9e', 'from': '0x6850809aaac4ced0f453d7f4edafc5bb6d0f96dd', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 826.0871178042024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cc84300d885c1098c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:57.000Z'}}, {'blockNum': '0x979d66', 'uniqueId': '0xc823b5ddc026723a581619e142edb13754056196bb5ebd7ce8ba4d37ff387c9e:log:10', 'hash': '0xc823b5ddc026723a581619e142edb13754056196bb5ebd7ce8ba4d37ff387c9e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 826.0871178042024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2cc84300d885c1098c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:12:57.000Z'}}, {'blockNum': '0x979d68', 'uniqueId': '0xae950fff182c742972a29502f7b501484b0daf9b7aacd80730f651f85d118c43:log:100', 'hash': '0xae950fff182c742972a29502f7b501484b0daf9b7aacd80730f651f85d118c43', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2181.9733773553244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7648f6aa1d3f78665a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:13:13.000Z'}}, {'blockNum': '0x979d68', 'uniqueId': '0xae950fff182c742972a29502f7b501484b0daf9b7aacd80730f651f85d118c43:log:106', 'hash': '0xae950fff182c742972a29502f7b501484b0daf9b7aacd80730f651f85d118c43', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 2181.9733773553244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7648f6aa1d3f78665a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:13:13.000Z'}}, {'blockNum': '0x979d6c', 'uniqueId': '0xdd073f91403d3219c071a9b432aebf38641991631fb257fe5ae12b4b63834252:log:72', 'hash': '0xdd073f91403d3219c071a9b432aebf38641991631fb257fe5ae12b4b63834252', 'from': '0x0160ae697a3538668cdb4698d3b89c7f36ad990d', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 558.7202316255228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e49cd026fcf4211e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:14:56.000Z'}}, {'blockNum': '0x979d6c', 'uniqueId': '0xdd073f91403d3219c071a9b432aebf38641991631fb257fe5ae12b4b63834252:log:78', 'hash': '0xdd073f91403d3219c071a9b432aebf38641991631fb257fe5ae12b4b63834252', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 558.7202316255228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e49cd026fcf4211e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:14:56.000Z'}}, {'blockNum': '0x979d74', 'uniqueId': '0x7880bbb44fe0b6d3995e667b3b4ff24642711fdaec054ef36d6141cc224e4244:log:8', 'hash': '0x7880bbb44fe0b6d3995e667b3b4ff24642711fdaec054ef36d6141cc224e4244', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 451.64481250908733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187bd4b40f6c0caeba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:16:43.000Z'}}, {'blockNum': '0x979d74', 'uniqueId': '0x7880bbb44fe0b6d3995e667b3b4ff24642711fdaec054ef36d6141cc224e4244:log:14', 'hash': '0x7880bbb44fe0b6d3995e667b3b4ff24642711fdaec054ef36d6141cc224e4244', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 451.64481250908733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x187bd4b40f6c0caeba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:16:43.000Z'}}, {'blockNum': '0x979d75', 'uniqueId': '0x3de2c2fd7718f9bd72ff62b3b6d8cf1978f60e72c9ad405bd82125f8b9fd6a1c:log:141', 'hash': '0x3de2c2fd7718f9bd72ff62b3b6d8cf1978f60e72c9ad405bd82125f8b9fd6a1c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 436.2800825085805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a69a3787d60dd4a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:16:51.000Z'}}, {'blockNum': '0x979d75', 'uniqueId': '0x3de2c2fd7718f9bd72ff62b3b6d8cf1978f60e72c9ad405bd82125f8b9fd6a1c:log:147', 'hash': '0x3de2c2fd7718f9bd72ff62b3b6d8cf1978f60e72c9ad405bd82125f8b9fd6a1c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3cfd18f931d449405ddc26e6b5b6b90f181f5bb9', 'value': 436.2800825085805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a69a3787d60dd4a7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:16:51.000Z'}}, {'blockNum': '0x979d78', 'uniqueId': '0x580580fac056a4b574df9fe4afd5bb6d99bfee401f967389c567e4b9c3b0e21b:log:4', 'hash': '0x580580fac056a4b574df9fe4afd5bb6d99bfee401f967389c567e4b9c3b0e21b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x758316d92d49fa4bad98675860a8b64e35b70fb8', 'value': 210.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b66d8812680088000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:17:19.000Z'}}, {'blockNum': '0x979d81', 'uniqueId': '0x040a2c26ca29b14b381982a0c1b37e7f8e3f0ce704c5fab56a96dd00bea8fde2:log:16', 'hash': '0x040a2c26ca29b14b381982a0c1b37e7f8e3f0ce704c5fab56a96dd00bea8fde2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x206fa533745f133904480948283f3515dc625e7b', 'value': 2440.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x84465b7c1d30240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:19:26.000Z'}}, {'blockNum': '0x979d84', 'uniqueId': '0x0916b25e264823b31764844a35fc57865c6224974dd470e98023dd7f98cf3f8a:log:4', 'hash': '0x0916b25e264823b31764844a35fc57865c6224974dd470e98023dd7f98cf3f8a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1395.7242773511148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ba990bb62fdfad307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:19:58.000Z'}}, {'blockNum': '0x979d84', 'uniqueId': '0x0916b25e264823b31764844a35fc57865c6224974dd470e98023dd7f98cf3f8a:log:10', 'hash': '0x0916b25e264823b31764844a35fc57865c6224974dd470e98023dd7f98cf3f8a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 1395.7242773511148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ba990bb62fdfad307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:19:58.000Z'}}, {'blockNum': '0x979d86', 'uniqueId': '0x5947a165bb4b92efcb6745cf60802002301cc8e742b761e9d0af1f983ddd7c24:log:20', 'hash': '0x5947a165bb4b92efcb6745cf60802002301cc8e742b761e9d0af1f983ddd7c24', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 747.975159371972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288c3d9481ae952f2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:20:34.000Z'}}, {'blockNum': '0x979d86', 'uniqueId': '0x5947a165bb4b92efcb6745cf60802002301cc8e742b761e9d0af1f983ddd7c24:log:26', 'hash': '0x5947a165bb4b92efcb6745cf60802002301cc8e742b761e9d0af1f983ddd7c24', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 747.975159371972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288c3d9481ae952f2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:20:34.000Z'}}, {'blockNum': '0x979d8a', 'uniqueId': '0x7a9001e7682c11951f070c9c586bfc27fd92e42334dedfdb28ae148444b1131b:log:50', 'hash': '0x7a9001e7682c11951f070c9c586bfc27fd92e42334dedfdb28ae148444b1131b', 'from': '0x0f4063bc044a4ce02f075293f50cd72850553acb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 703.3120262956904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26206a419beed1591b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:21:14.000Z'}}, {'blockNum': '0x979d8a', 'uniqueId': '0x7a9001e7682c11951f070c9c586bfc27fd92e42334dedfdb28ae148444b1131b:log:56', 'hash': '0x7a9001e7682c11951f070c9c586bfc27fd92e42334dedfdb28ae148444b1131b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'value': 703.3120262956904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26206a419beed1591b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:21:14.000Z'}}, {'blockNum': '0x979d8e', 'uniqueId': '0xa717b7bfeb8c2f1784896ac8b2546b197e236918c4fb3f4fc5e974a5889856e1:log:60', 'hash': '0xa717b7bfeb8c2f1784896ac8b2546b197e236918c4fb3f4fc5e974a5889856e1', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 879.7415214736579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fb0ddbcb5bf110f4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:22:15.000Z'}}, {'blockNum': '0x979d8e', 'uniqueId': '0xa717b7bfeb8c2f1784896ac8b2546b197e236918c4fb3f4fc5e974a5889856e1:log:66', 'hash': '0xa717b7bfeb8c2f1784896ac8b2546b197e236918c4fb3f4fc5e974a5889856e1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 879.7415214736579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fb0ddbcb5bf110f4a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:22:15.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0x7fc89d63f8da933b2a3cc61282f8efeb60b57163dc00661e5a1a908ab714fbd0:log:64', 'hash': '0x7fc89d63f8da933b2a3cc61282f8efeb60b57163dc00661e5a1a908ab714fbd0', 'from': '0xfc4f81d2a20196fd849184d003d59527ddd6ba92', 'to': '0x3c963a8e3823e30466733fe8210a89b81daebec3', 'value': 1626.09906223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5826a861a7f6f6dc00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5:log:99', 'hash': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 837.6838544617927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d6932e364cb2de090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5:log:101', 'hash': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 837.6838544617927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d6932e364cb2de090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5:log:106', 'hash': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 837.6838544617927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d6932e364cb2de090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d94', 'uniqueId': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5:log:108', 'hash': '0xd8c8c7fa59ab0f00ff849ec02b5910f1db62950f37721b989013641bd346d9f5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xcbc2fa314a33ae52fc29e0144d4a7747a532e0dc', 'value': 837.6838544617927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d6932e364cb2de090', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:24:37.000Z'}}, {'blockNum': '0x979d95', 'uniqueId': '0x7b3f3ac7504296852dc9bd0c0b271d953b5b434a6486c0e7ec665743b12b0014:log:78', 'hash': '0x7b3f3ac7504296852dc9bd0c0b271d953b5b434a6486c0e7ec665743b12b0014', 'from': '0x206fa533745f133904480948283f3515dc625e7b', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2440.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x84465b7c1d30240000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:25:43.000Z'}}, {'blockNum': '0x979dac', 'uniqueId': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e:log:43', 'hash': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 717.3504468052608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26e33cbeaf0f529342', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:30:00.000Z'}}, {'blockNum': '0x979dac', 'uniqueId': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e:log:45', 'hash': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 717.3504468052608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26e33cbeaf0f529342', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:30:00.000Z'}}, {'blockNum': '0x979dac', 'uniqueId': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e:log:50', 'hash': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 717.3504468052608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26e33cbeaf0f529342', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:30:00.000Z'}}, {'blockNum': '0x979dac', 'uniqueId': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e:log:52', 'hash': '0xcc4f0afc28400ca4628fd649df528260c0a1e5c25ace154191387aec3636277e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 717.3504468052608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26e33cbeaf0f529342', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:30:00.000Z'}}, {'blockNum': '0x979dbc', 'uniqueId': '0x249eb19ac463b9d610121302c1cb7d0bac0b46922058a3a3713d057ce13de6a6:log:116', 'hash': '0x249eb19ac463b9d610121302c1cb7d0bac0b46922058a3a3713d057ce13de6a6', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 872.1941767660342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f48202eaf97b9541d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:33:37.000Z'}}, {'blockNum': '0x979dbc', 'uniqueId': '0x249eb19ac463b9d610121302c1cb7d0bac0b46922058a3a3713d057ce13de6a6:log:122', 'hash': '0x249eb19ac463b9d610121302c1cb7d0bac0b46922058a3a3713d057ce13de6a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x3a706af4bfc1d30394256a434e092e23f611e39b', 'value': 872.1941767660342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f48202eaf97b9541d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:33:37.000Z'}}, {'blockNum': '0x979dc0', 'uniqueId': '0x3a131ea93cab741856aa7bc8f5df8374f68ab57850d99cd5b56aa8554d739273:log:26', 'hash': '0x3a131ea93cab741856aa7bc8f5df8374f68ab57850d99cd5b56aa8554d739273', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x38c50d46b9d8b040f3007dded8f0def82e409989', 'value': 267.296747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e7d7ccf329875b000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:35:45.000Z'}}, {'blockNum': '0x979dc4', 'uniqueId': '0x59627793242a4019963097ca6f2b7794194e7adc39d8dbca9ee9244bcb1dda1d:log:111', 'hash': '0x59627793242a4019963097ca6f2b7794194e7adc39d8dbca9ee9244bcb1dda1d', 'from': '0x3a706af4bfc1d30394256a434e092e23f611e39b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 311.78692163498374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e6e9a94f21c2c336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:37:38.000Z'}}, {'blockNum': '0x979dc4', 'uniqueId': '0x59627793242a4019963097ca6f2b7794194e7adc39d8dbca9ee9244bcb1dda1d:log:117', 'hash': '0x59627793242a4019963097ca6f2b7794194e7adc39d8dbca9ee9244bcb1dda1d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 311.78692163498374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x10e6e9a94f21c2c336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:37:38.000Z'}}, {'blockNum': '0x979dca', 'uniqueId': '0xa2985d9ffef14ee45eb0cc5f8155b275e0fd1998329b16543c25fb924fece9f0:log:47', 'hash': '0xa2985d9ffef14ee45eb0cc5f8155b275e0fd1998329b16543c25fb924fece9f0', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 553.5221739463957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e01a9cc84a0e505de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:38:14.000Z'}}, {'blockNum': '0x979dca', 'uniqueId': '0xa2985d9ffef14ee45eb0cc5f8155b275e0fd1998329b16543c25fb924fece9f0:log:53', 'hash': '0xa2985d9ffef14ee45eb0cc5f8155b275e0fd1998329b16543c25fb924fece9f0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 553.5221739463957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e01a9cc84a0e505de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:38:14.000Z'}}, {'blockNum': '0x979dcc', 'uniqueId': '0x9fba8059c20ba079cd9f28ababeb64e101512686065c7539cfb40ac0acbc2abb:log:118', 'hash': '0x9fba8059c20ba079cd9f28ababeb64e101512686065c7539cfb40ac0acbc2abb', 'from': '0x3a706af4bfc1d30394256a434e092e23f611e39b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 325.24471721539464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11a1ad5b1647f99756', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:39:03.000Z'}}, {'blockNum': '0x979dcc', 'uniqueId': '0x9fba8059c20ba079cd9f28ababeb64e101512686065c7539cfb40ac0acbc2abb:log:124', 'hash': '0x9fba8059c20ba079cd9f28ababeb64e101512686065c7539cfb40ac0acbc2abb', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 325.24471721539464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11a1ad5b1647f99756', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:39:03.000Z'}}, {'blockNum': '0x979dd0', 'uniqueId': '0x145573e8183001a172bef97a9e01a3828d426e7a0fa87879b4f952be4b251302:log:119', 'hash': '0x145573e8183001a172bef97a9e01a3828d426e7a0fa87879b4f952be4b251302', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1736.167726612565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5e1e2ad4be477135b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:39:48.000Z'}}, {'blockNum': '0x979dd0', 'uniqueId': '0x145573e8183001a172bef97a9e01a3828d426e7a0fa87879b4f952be4b251302:log:125', 'hash': '0x145573e8183001a172bef97a9e01a3828d426e7a0fa87879b4f952be4b251302', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 1736.167726612565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5e1e2ad4be477135b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:39:48.000Z'}}, {'blockNum': '0x979dd1', 'uniqueId': '0xab7eccbeb3d47a7ffcdc687349837abfbaa0f23e8b5505cb84512cfe288e85ae:log:6', 'hash': '0xab7eccbeb3d47a7ffcdc687349837abfbaa0f23e8b5505cb84512cfe288e85ae', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 870.815888535792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f34ff84d7ce0b93d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:40:09.000Z'}}, {'blockNum': '0x979dd1', 'uniqueId': '0xab7eccbeb3d47a7ffcdc687349837abfbaa0f23e8b5505cb84512cfe288e85ae:log:12', 'hash': '0xab7eccbeb3d47a7ffcdc687349837abfbaa0f23e8b5505cb84512cfe288e85ae', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 870.815888535792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f34ff84d7ce0b93d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:40:09.000Z'}}, {'blockNum': '0x979dd2', 'uniqueId': '0xefa14a2f4b55b1d18d397730bb016995a10e2de541b18fdb6e4f5fc719e0a85e:log:80', 'hash': '0xefa14a2f4b55b1d18d397730bb016995a10e2de541b18fdb6e4f5fc719e0a85e', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 47.70690192594308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029610f68a263c6a7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:40:26.000Z'}}, {'blockNum': '0x979dd2', 'uniqueId': '0xefa14a2f4b55b1d18d397730bb016995a10e2de541b18fdb6e4f5fc719e0a85e:log:86', 'hash': '0xefa14a2f4b55b1d18d397730bb016995a10e2de541b18fdb6e4f5fc719e0a85e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 47.70690192594308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x029610f68a263c6a7e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:40:26.000Z'}}, {'blockNum': '0x979dda', 'uniqueId': '0x00afaa2b7b71a4f760cb78c15508cd1c47a9a1c4b3516371f398dff82de5db2c:log:82', 'hash': '0x00afaa2b7b71a4f760cb78c15508cd1c47a9a1c4b3516371f398dff82de5db2c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 436.04715310166443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a35eaf7819144dd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:42:29.000Z'}}, {'blockNum': '0x979dda', 'uniqueId': '0x00afaa2b7b71a4f760cb78c15508cd1c47a9a1c4b3516371f398dff82de5db2c:log:88', 'hash': '0x00afaa2b7b71a4f760cb78c15508cd1c47a9a1c4b3516371f398dff82de5db2c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 436.04715310166443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a35eaf7819144dd3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:42:29.000Z'}}, {'blockNum': '0x979de1', 'uniqueId': '0x0826641993fc15e407499ec9d06289d66b9d1f14a60616133c04a07085f33142:log:26', 'hash': '0x0826641993fc15e407499ec9d06289d66b9d1f14a60616133c04a07085f33142', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 553.4475084019768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e00a08899dcd9a14b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:44:00.000Z'}}, {'blockNum': '0x979de1', 'uniqueId': '0x0826641993fc15e407499ec9d06289d66b9d1f14a60616133c04a07085f33142:log:32', 'hash': '0x0826641993fc15e407499ec9d06289d66b9d1f14a60616133c04a07085f33142', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 553.4475084019768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1e00a08899dcd9a14b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:44:00.000Z'}}, {'blockNum': '0x979de4', 'uniqueId': '0xcb60b0565d9aad16f8ebc07622ec641ac17b2e7a7d7b6b5859522b2a78e084cd:log:25', 'hash': '0xcb60b0565d9aad16f8ebc07622ec641ac17b2e7a7d7b6b5859522b2a78e084cd', 'from': '0xe03374cacf4600f56bddbdc82c07b375f318fc5c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 135.9639112024287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075ee0d8def5847774', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:44:26.000Z'}}, {'blockNum': '0x979de4', 'uniqueId': '0xcb60b0565d9aad16f8ebc07622ec641ac17b2e7a7d7b6b5859522b2a78e084cd:log:31', 'hash': '0xcb60b0565d9aad16f8ebc07622ec641ac17b2e7a7d7b6b5859522b2a78e084cd', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 135.9639112024287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x075ee0d8def5847774', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:44:26.000Z'}}, {'blockNum': '0x979df3', 'uniqueId': '0xebd047b61358a8f9c44dae8cab68093eef3d67b5ea986f0b465ce45d2ec39794:log:21', 'hash': '0xebd047b61358a8f9c44dae8cab68093eef3d67b5ea986f0b465ce45d2ec39794', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 839.6850427549628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d84f8898b2a3f079e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:47:28.000Z'}}, {'blockNum': '0x979df3', 'uniqueId': '0xebd047b61358a8f9c44dae8cab68093eef3d67b5ea986f0b465ce45d2ec39794:log:27', 'hash': '0xebd047b61358a8f9c44dae8cab68093eef3d67b5ea986f0b465ce45d2ec39794', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 839.6850427549628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2d84f8898b2a3f079e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:47:28.000Z'}}, {'blockNum': '0x979dfe', 'uniqueId': '0x543c5319bd59e798daca42847c089acec1b1ca0cc2676ff7d54284adb20029f1:log:52', 'hash': '0x543c5319bd59e798daca42847c089acec1b1ca0cc2676ff7d54284adb20029f1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 436.0456480379261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a359569f2397b37b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:50:04.000Z'}}, {'blockNum': '0x979dfe', 'uniqueId': '0x543c5319bd59e798daca42847c089acec1b1ca0cc2676ff7d54284adb20029f1:log:58', 'hash': '0x543c5319bd59e798daca42847c089acec1b1ca0cc2676ff7d54284adb20029f1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'value': 436.0456480379261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a359569f2397b37b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:50:04.000Z'}}, {'blockNum': '0x979e0f', 'uniqueId': '0x7f0b33fb403642593c25a2e0e8f06ed8c549254a9789c4d28c292c865c284b22:log:65', 'hash': '0x7f0b33fb403642593c25a2e0e8f06ed8c549254a9789c4d28c292c865c284b22', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 436.0041024708647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a2c5bd2604e77a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:52:56.000Z'}}, {'blockNum': '0x979e0f', 'uniqueId': '0x7f0b33fb403642593c25a2e0e8f06ed8c549254a9789c4d28c292c865c284b22:log:71', 'hash': '0x7f0b33fb403642593c25a2e0e8f06ed8c549254a9789c4d28c292c865c284b22', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 436.0041024708647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17a2c5bd2604e77a0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:52:56.000Z'}}, {'blockNum': '0x979e17', 'uniqueId': '0x5e7fe1cb6cd0d0bdfc6518f9bea3ee95eb53caa50dc289ebe8a084f1e7e44f1a:log:27', 'hash': '0x5e7fe1cb6cd0d0bdfc6518f9bea3ee95eb53caa50dc289ebe8a084f1e7e44f1a', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 697.5201440511072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25d0095b64f58bc1f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:55:18.000Z'}}, {'blockNum': '0x979e17', 'uniqueId': '0x5e7fe1cb6cd0d0bdfc6518f9bea3ee95eb53caa50dc289ebe8a084f1e7e44f1a:log:33', 'hash': '0x5e7fe1cb6cd0d0bdfc6518f9bea3ee95eb53caa50dc289ebe8a084f1e7e44f1a', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 697.5201440511072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x25d0095b64f58bc1f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:55:18.000Z'}}, {'blockNum': '0x979e1d', 'uniqueId': '0xdbe78c8e4c1b7de66605dddbd2c94e8b7974c8d2575336f88201a79b0134f003:log:7', 'hash': '0xdbe78c8e4c1b7de66605dddbd2c94e8b7974c8d2575336f88201a79b0134f003', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 800.4609952115718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b64a0ba1eed6574f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:56:33.000Z'}}, {'blockNum': '0x979e1d', 'uniqueId': '0xdbe78c8e4c1b7de66605dddbd2c94e8b7974c8d2575336f88201a79b0134f003:log:13', 'hash': '0xdbe78c8e4c1b7de66605dddbd2c94e8b7974c8d2575336f88201a79b0134f003', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xceab75d622feeabf02a2a3d40af00956f0707702', 'value': 800.4609952115718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b64a0ba1eed6574f7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:56:33.000Z'}}, {'blockNum': '0x979e1f', 'uniqueId': '0x4350f2195733db8b78e27f4f12a2806da73247485fec9f3e2dfecf96e3d154b8:log:34', 'hash': '0x4350f2195733db8b78e27f4f12a2806da73247485fec9f3e2dfecf96e3d154b8', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 871.5755548937807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f3f8a655ee5c5d47f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:56:56.000Z'}}, {'blockNum': '0x979e1f', 'uniqueId': '0x4350f2195733db8b78e27f4f12a2806da73247485fec9f3e2dfecf96e3d154b8:log:40', 'hash': '0x4350f2195733db8b78e27f4f12a2806da73247485fec9f3e2dfecf96e3d154b8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 871.5755548937807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f3f8a655ee5c5d47f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:56:56.000Z'}}, {'blockNum': '0x979e24', 'uniqueId': '0x75c496b3e298212a583f972315f530c051a727f54adb67078875d0affe44673e:log:22', 'hash': '0x75c496b3e298212a583f972315f530c051a727f54adb67078875d0affe44673e', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 578.2344559871192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f589d761a537bc3aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:57:46.000Z'}}, {'blockNum': '0x979e24', 'uniqueId': '0x75c496b3e298212a583f972315f530c051a727f54adb67078875d0affe44673e:log:28', 'hash': '0x75c496b3e298212a583f972315f530c051a727f54adb67078875d0affe44673e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 578.2344559871192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f589d761a537bc3aa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T16:57:46.000Z'}}, {'blockNum': '0x979e51', 'uniqueId': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39:log:55', 'hash': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1270.5331259171603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e0306a72dafc3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:05:56.000Z'}}, {'blockNum': '0x979e51', 'uniqueId': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39:log:60', 'hash': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1270.5331259171603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e0306a72dafc3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:05:56.000Z'}}, {'blockNum': '0x979e51', 'uniqueId': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39:log:62', 'hash': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1270.5331259171603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e0306a72dafc3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:05:56.000Z'}}, {'blockNum': '0x979e51', 'uniqueId': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39:log:64', 'hash': '0xdd77b9556d863dfe269c8404072077aff985da8651ccb0859a5e71a80cf17c39', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 1270.5331259171603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44e0306a72dafc3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:05:56.000Z'}}, {'blockNum': '0x979e53', 'uniqueId': '0xbda8788eeb76f90850804291af0534ab18652f7b02c23a07b14a866b5e569449:log:13', 'hash': '0xbda8788eeb76f90850804291af0534ab18652f7b02c23a07b14a866b5e569449', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 730.5761608144661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x279ac7eb809ae8138d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:06:25.000Z'}}, {'blockNum': '0x979e53', 'uniqueId': '0xbda8788eeb76f90850804291af0534ab18652f7b02c23a07b14a866b5e569449:log:19', 'hash': '0xbda8788eeb76f90850804291af0534ab18652f7b02c23a07b14a866b5e569449', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 730.5761608144661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x279ac7eb809ae8138d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:06:25.000Z'}}, {'blockNum': '0x979e5b', 'uniqueId': '0x7382a8ed2ecff672cb38080ab6340e61223d8dbe672c73b8333203375247bf30:log:84', 'hash': '0x7382a8ed2ecff672cb38080ab6340e61223d8dbe672c73b8333203375247bf30', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 34.86684797318217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e3dfed7fc7125851', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:06:55.000Z'}}, {'blockNum': '0x979e5b', 'uniqueId': '0x7382a8ed2ecff672cb38080ab6340e61223d8dbe672c73b8333203375247bf30:log:90', 'hash': '0x7382a8ed2ecff672cb38080ab6340e61223d8dbe672c73b8333203375247bf30', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa260306fe5e57cae7bdcc7ff0488061eace32b58', 'value': 34.86684797318217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e3dfed7fc7125851', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:06:55.000Z'}}, {'blockNum': '0x979e61', 'uniqueId': '0x3056086934524e3d9abdf965cc6016d5cb10c18b494afe8d3af9cc13ab800ad6:log:53', 'hash': '0x3056086934524e3d9abdf965cc6016d5cb10c18b494afe8d3af9cc13ab800ad6', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 175.00857254472206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x097cbb597e88569689', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:07:41.000Z'}}, {'blockNum': '0x979e61', 'uniqueId': '0x3056086934524e3d9abdf965cc6016d5cb10c18b494afe8d3af9cc13ab800ad6:log:59', 'hash': '0x3056086934524e3d9abdf965cc6016d5cb10c18b494afe8d3af9cc13ab800ad6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 175.00857254472206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x097cbb597e88569689', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:07:41.000Z'}}, {'blockNum': '0x979e66', 'uniqueId': '0x502a61cc6b33aafac65862eca33ee9e32e8addb7276eeeaeda28eb242bfe68db:log:31', 'hash': '0x502a61cc6b33aafac65862eca33ee9e32e8addb7276eeeaeda28eb242bfe68db', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 174.84555127629102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x097a782e83acac6588', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:08:56.000Z'}}, {'blockNum': '0x979e66', 'uniqueId': '0x502a61cc6b33aafac65862eca33ee9e32e8addb7276eeeaeda28eb242bfe68db:log:37', 'hash': '0x502a61cc6b33aafac65862eca33ee9e32e8addb7276eeeaeda28eb242bfe68db', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 174.84555127629102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x097a782e83acac6588', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:08:56.000Z'}}, {'blockNum': '0x979e6b', 'uniqueId': '0x6fba49127026be243b4cf7dd4bc005192a1347a6e30c880852cc98579ce5006c:log:78', 'hash': '0x6fba49127026be243b4cf7dd4bc005192a1347a6e30c880852cc98579ce5006c', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 348.6804616756336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e6e9d881775853bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:10:26.000Z'}}, {'blockNum': '0x979e6b', 'uniqueId': '0x6fba49127026be243b4cf7dd4bc005192a1347a6e30c880852cc98579ce5006c:log:84', 'hash': '0x6fba49127026be243b4cf7dd4bc005192a1347a6e30c880852cc98579ce5006c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 348.6804616756336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e6e9d881775853bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:10:26.000Z'}}, {'blockNum': '0x979e8d', 'uniqueId': '0x7399b4d84e5b60751925a8e206858df1a0bdd7bc8a8f16a0d3623aa1dce47a45:log:39', 'hash': '0x7399b4d84e5b60751925a8e206858df1a0bdd7bc8a8f16a0d3623aa1dce47a45', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 87.16596596643095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b9abb838ace7b46f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:16:16.000Z'}}, {'blockNum': '0x979e8d', 'uniqueId': '0x7399b4d84e5b60751925a8e206858df1a0bdd7bc8a8f16a0d3623aa1dce47a45:log:45', 'hash': '0x7399b4d84e5b60751925a8e206858df1a0bdd7bc8a8f16a0d3623aa1dce47a45', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 87.16596596643095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04b9abb838ace7b46f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:16:16.000Z'}}, {'blockNum': '0x979e8d', 'uniqueId': '0x69729d5a0d3ca8226b28ed536e6cc7d7f310ec692089bcdc1a4565c817a713da:log:154', 'hash': '0x69729d5a0d3ca8226b28ed536e6cc7d7f310ec692089bcdc1a4565c817a713da', 'from': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 490.11442349651446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a91b4376ebd1b9126', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:16:16.000Z'}}, {'blockNum': '0x979e8d', 'uniqueId': '0x69729d5a0d3ca8226b28ed536e6cc7d7f310ec692089bcdc1a4565c817a713da:log:160', 'hash': '0x69729d5a0d3ca8226b28ed536e6cc7d7f310ec692089bcdc1a4565c817a713da', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 490.11442349651446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a91b4376ebd1b9126', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:16:16.000Z'}}, {'blockNum': '0x979e96', 'uniqueId': '0xb282e2a39524fc715af02b920a03db5211060f3de917ceff2a50a8ab6e6b7807:log:44', 'hash': '0xb282e2a39524fc715af02b920a03db5211060f3de917ceff2a50a8ab6e6b7807', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 782.8214816629057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a6fd49601a675aaca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:18:38.000Z'}}, {'blockNum': '0x979e96', 'uniqueId': '0xb282e2a39524fc715af02b920a03db5211060f3de917ceff2a50a8ab6e6b7807:log:50', 'hash': '0xb282e2a39524fc715af02b920a03db5211060f3de917ceff2a50a8ab6e6b7807', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 782.8214816629057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a6fd49601a675aaca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:18:38.000Z'}}, {'blockNum': '0x979e9a', 'uniqueId': '0xd84db712f04854c62830423efa2c1900c7694cc081fa02afc6dfb4bfc1fa0383:log:18', 'hash': '0xd84db712f04854c62830423efa2c1900c7694cc081fa02afc6dfb4bfc1fa0383', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 527.1568020972259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c93c52e82d00bdd9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:20:23.000Z'}}, {'blockNum': '0x979e9a', 'uniqueId': '0xd84db712f04854c62830423efa2c1900c7694cc081fa02afc6dfb4bfc1fa0383:log:24', 'hash': '0xd84db712f04854c62830423efa2c1900c7694cc081fa02afc6dfb4bfc1fa0383', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 527.1568020972259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c93c52e82d00bdd9d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:20:23.000Z'}}, {'blockNum': '0x979e9c', 'uniqueId': '0x7ea3a0e13826c4b12d96ef79c63f57c529b75e2b042d83208b3dcbacc475e95f:log:21', 'hash': '0x7ea3a0e13826c4b12d96ef79c63f57c529b75e2b042d83208b3dcbacc475e95f', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 477.4119823627521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e16c148596e4739f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:20:43.000Z'}}, {'blockNum': '0x979e9c', 'uniqueId': '0x7ea3a0e13826c4b12d96ef79c63f57c529b75e2b042d83208b3dcbacc475e95f:log:27', 'hash': '0x7ea3a0e13826c4b12d96ef79c63f57c529b75e2b042d83208b3dcbacc475e95f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 477.4119823627521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e16c148596e4739f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:20:43.000Z'}}, {'blockNum': '0x979ead', 'uniqueId': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5:log:74', 'hash': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3344.39048326379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb54cbdd1302f2e7aef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:25:22.000Z'}}, {'blockNum': '0x979ead', 'uniqueId': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5:log:79', 'hash': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'value': 3344.39048326379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb54cbdd1302f2e7aef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:25:22.000Z'}}, {'blockNum': '0x979ead', 'uniqueId': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5:log:80', 'hash': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5', 'from': '0x1fe867bfe9cbe0045467605b959a355223e3885d', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3344.0560442154633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb54819a6a54cab04fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:25:22.000Z'}}, {'blockNum': '0x979ead', 'uniqueId': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5:log:82', 'hash': '0x2e1b890ef87e427a8c54f0a13f552575cc00e04eb550b1db10662dcbd09c75d5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf120b35dca4751fcf2163edf3e79acc3edf96c20', 'value': 3344.0560442154633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb54819a6a54cab04fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:25:22.000Z'}}, {'blockNum': '0x979eb2', 'uniqueId': '0x224691c98cce5b3ce83e5544bdf0351685ccfa6d4f8435e33affff5a091317f7:log:75', 'hash': '0x224691c98cce5b3ce83e5544bdf0351685ccfa6d4f8435e33affff5a091317f7', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 881.7269466156666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fcc6b625b7c9f9dae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:04.000Z'}}, {'blockNum': '0x979eb2', 'uniqueId': '0x224691c98cce5b3ce83e5544bdf0351685ccfa6d4f8435e33affff5a091317f7:log:81', 'hash': '0x224691c98cce5b3ce83e5544bdf0351685ccfa6d4f8435e33affff5a091317f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 881.7269466156666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fcc6b625b7c9f9dae', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:04.000Z'}}, {'blockNum': '0x979eb2', 'uniqueId': '0x6846c7ae47a2b435af1921b0c5530db674b76068d8b57685fa134e1fd3a43a18:log:113', 'hash': '0x6846c7ae47a2b435af1921b0c5530db674b76068d8b57685fa134e1fd3a43a18', 'from': '0xb85e52268cbf57b97ae15136aa65d4f567b8107c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 101.61503498609025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0582311ff0b8cca75f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:04.000Z'}}, {'blockNum': '0x979eb2', 'uniqueId': '0x6846c7ae47a2b435af1921b0c5530db674b76068d8b57685fa134e1fd3a43a18:log:117', 'hash': '0x6846c7ae47a2b435af1921b0c5530db674b76068d8b57685fa134e1fd3a43a18', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 101.61503498609025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0582311ff0b8cca75f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:04.000Z'}}, {'blockNum': '0x979eb3', 'uniqueId': '0xb00edbe103b3caad6e2608685cee03b8492ab5b89a8bed57d79de99b2421f33f:log:141', 'hash': '0xb00edbe103b3caad6e2608685cee03b8492ab5b89a8bed57d79de99b2421f33f', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 445.0779410670696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1820b27d46c8ed3039', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:09.000Z'}}, {'blockNum': '0x979eb3', 'uniqueId': '0xb00edbe103b3caad6e2608685cee03b8492ab5b89a8bed57d79de99b2421f33f:log:147', 'hash': '0xb00edbe103b3caad6e2608685cee03b8492ab5b89a8bed57d79de99b2421f33f', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 445.0779410670696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1820b27d46c8ed3039', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:26:09.000Z'}}, {'blockNum': '0x979ebf', 'uniqueId': '0xc82d10f5210625b5e76a8bbbec713035cf64816dbdaff8a6ec27e9e49329d042:log:123', 'hash': '0xc82d10f5210625b5e76a8bbbec713035cf64816dbdaff8a6ec27e9e49329d042', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 867.7206843678837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0a0b250d268ef65b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:25.000Z'}}, {'blockNum': '0x979ebf', 'uniqueId': '0xc82d10f5210625b5e76a8bbbec713035cf64816dbdaff8a6ec27e9e49329d042:log:129', 'hash': '0xc82d10f5210625b5e76a8bbbec713035cf64816dbdaff8a6ec27e9e49329d042', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 867.7206843678837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0a0b250d268ef65b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:25.000Z'}}, {'blockNum': '0x979ec2', 'uniqueId': '0x47d9cbca2fdb054c460e70849c84d366a7d3715206f123b7ffd96afb77ffd6ea:log:11', 'hash': '0x47d9cbca2fdb054c460e70849c84d366a7d3715206f123b7ffd96afb77ffd6ea', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1111.896326400621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c46a949c83ad02b0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:45.000Z'}}, {'blockNum': '0x979ec2', 'uniqueId': '0x47d9cbca2fdb054c460e70849c84d366a7d3715206f123b7ffd96afb77ffd6ea:log:17', 'hash': '0x47d9cbca2fdb054c460e70849c84d366a7d3715206f123b7ffd96afb77ffd6ea', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 1111.896326400621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3c46a949c83ad02b0e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:45.000Z'}}, {'blockNum': '0x979ec3', 'uniqueId': '0xad8c1bd9c7e0be66856e77d980395a7c50140811aba9589856ab89f04f827b01:log:4', 'hash': '0xad8c1bd9c7e0be66856e77d980395a7c50140811aba9589856ab89f04f827b01', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 452.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x188df1a92b052f0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:49.000Z'}}, {'blockNum': '0x979ec3', 'uniqueId': '0xdac8bf6e36169c18271a300fa07666abf58cad12a7009817b1ae66a695a57ea1:log:154', 'hash': '0xdac8bf6e36169c18271a300fa07666abf58cad12a7009817b1ae66a695a57ea1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 609.8452548556805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x210f4d94314e67a740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:49.000Z'}}, {'blockNum': '0x979ec3', 'uniqueId': '0xdac8bf6e36169c18271a300fa07666abf58cad12a7009817b1ae66a695a57ea1:log:160', 'hash': '0xdac8bf6e36169c18271a300fa07666abf58cad12a7009817b1ae66a695a57ea1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 609.8452548556805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x210f4d94314e67a740', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:28:49.000Z'}}, {'blockNum': '0x979ec5', 'uniqueId': '0x8bec661954e4e105beac7b84b0f002d17ed75fc858e46f1935c736a62839a04b:log:129', 'hash': '0x8bec661954e4e105beac7b84b0f002d17ed75fc858e46f1935c736a62839a04b', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 881.2298268528374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fc5854291225bbf2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:34.000Z'}}, {'blockNum': '0x979ec5', 'uniqueId': '0x8bec661954e4e105beac7b84b0f002d17ed75fc858e46f1935c736a62839a04b:log:135', 'hash': '0x8bec661954e4e105beac7b84b0f002d17ed75fc858e46f1935c736a62839a04b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 881.2298268528374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fc5854291225bbf2b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:34.000Z'}}, {'blockNum': '0x979ec6', 'uniqueId': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72:log:135', 'hash': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 511.7796267023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbe5e7af60bfe3633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:39.000Z'}}, {'blockNum': '0x979ec6', 'uniqueId': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72:log:140', 'hash': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 511.7796267023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbe5e7af60bfe3633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:39.000Z'}}, {'blockNum': '0x979ec6', 'uniqueId': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72:log:142', 'hash': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 511.7796267023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbe5e7af60bfe3633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:39.000Z'}}, {'blockNum': '0x979ec6', 'uniqueId': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72:log:144', 'hash': '0x43a68a845414af435ab712070482a2ffc6a8b98dff85d87c327ba0c92de14c72', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 511.7796267023568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bbe5e7af60bfe3633', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:29:39.000Z'}}, {'blockNum': '0x979ed5', 'uniqueId': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024:log:90', 'hash': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 928.6264556920712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x325747e960cbecbc6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:32:49.000Z'}}, {'blockNum': '0x979ed5', 'uniqueId': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024:log:92', 'hash': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 928.6264556920712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x325747e960cbecbc6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:32:49.000Z'}}, {'blockNum': '0x979ed5', 'uniqueId': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024:log:97', 'hash': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 928.6264556920712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x325747e960cbecbc6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:32:49.000Z'}}, {'blockNum': '0x979ed5', 'uniqueId': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024:log:99', 'hash': '0x3ab771ec634d70c1910f637f4c08a32339b1017663b14e9bb2b490dd36111024', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 928.6264556920712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x325747e960cbecbc6d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:32:49.000Z'}}, {'blockNum': '0x979ee2', 'uniqueId': '0x2a13d7f1c32b4c5a94ea057ee80f377c0123dbab3ee9f1c74ce6552a634aff9e:log:114', 'hash': '0x2a13d7f1c32b4c5a94ea057ee80f377c0123dbab3ee9f1c74ce6552a634aff9e', 'from': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 932.5495146075652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x328db96aad2ee07573', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:36:24.000Z'}}, {'blockNum': '0x979ee2', 'uniqueId': '0x2a13d7f1c32b4c5a94ea057ee80f377c0123dbab3ee9f1c74ce6552a634aff9e:log:120', 'hash': '0x2a13d7f1c32b4c5a94ea057ee80f377c0123dbab3ee9f1c74ce6552a634aff9e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 932.5495146075652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x328db96aad2ee07573', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:36:24.000Z'}}, {'blockNum': '0x979ee5', 'uniqueId': '0x812fd18a0cdf208661809f66d80fae5d932f66a1d3068c924e10ffc4128d1d00:log:2', 'hash': '0x812fd18a0cdf208661809f66d80fae5d932f66a1d3068c924e10ffc4128d1d00', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2479.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8665cfc0a2ac700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:37:33.000Z'}}, {'blockNum': '0x979ee5', 'uniqueId': '0x22b45ca85c20c52763fbad27243cc3e7c543fbd3b60935f57cb25eee71d627fe:log:3', 'hash': '0x22b45ca85c20c52763fbad27243cc3e7c543fbd3b60935f57cb25eee71d627fe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 39995.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878299e0c8c16c20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:37:33.000Z'}}, {'blockNum': '0x979ee7', 'uniqueId': '0xfd0d38df02334698607e8db23849abe481d701c59072c53e798305be5efbe7be:log:10', 'hash': '0xfd0d38df02334698607e8db23849abe481d701c59072c53e798305be5efbe7be', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 653.5213106596711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x236d6e198a6965ff95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:37:57.000Z'}}, {'blockNum': '0x979ee7', 'uniqueId': '0xfd0d38df02334698607e8db23849abe481d701c59072c53e798305be5efbe7be:log:16', 'hash': '0xfd0d38df02334698607e8db23849abe481d701c59072c53e798305be5efbe7be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf5185ee048ae4fb3e8db4e1ccaa4e847cd382d5a', 'value': 653.5213106596711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x236d6e198a6965ff95', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:37:57.000Z'}}, {'blockNum': '0x979eea', 'uniqueId': '0x13f7f5ce1e6087b385ccbacbb80b3dfe28a21f52376a88314f428b8ea19c36a2:log:27', 'hash': '0x13f7f5ce1e6087b385ccbacbb80b3dfe28a21f52376a88314f428b8ea19c36a2', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 376.2826186891166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1465f86811268e41d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:39:44.000Z'}}, {'blockNum': '0x979eea', 'uniqueId': '0x13f7f5ce1e6087b385ccbacbb80b3dfe28a21f52376a88314f428b8ea19c36a2:log:33', 'hash': '0x13f7f5ce1e6087b385ccbacbb80b3dfe28a21f52376a88314f428b8ea19c36a2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 376.2826186891166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1465f86811268e41d4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:39:44.000Z'}}, {'blockNum': '0x979eec', 'uniqueId': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda:log:81', 'hash': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 731.8103500787654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27abe8a4196711f389', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:33.000Z'}}, {'blockNum': '0x979eec', 'uniqueId': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda:log:83', 'hash': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 731.8103500787654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27abe8a4196711f389', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:33.000Z'}}, {'blockNum': '0x979eec', 'uniqueId': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda:log:88', 'hash': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 731.8103500787654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27abe8a4196711f389', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:33.000Z'}}, {'blockNum': '0x979eec', 'uniqueId': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda:log:90', 'hash': '0x24d0af3ee3385bb74fbcb9142d9e418113970b639419844dded8533562359fda', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x220c400bc0a4347276b432843cf293f1fac6762a', 'value': 731.8103500787654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27abe8a4196711f389', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:33.000Z'}}, {'blockNum': '0x979eed', 'uniqueId': '0x15e2e5227abbfd65203b1b20d4403050eb8d5fbaae7e8f2947a66564b1585d52:log:81', 'hash': '0x15e2e5227abbfd65203b1b20d4403050eb8d5fbaae7e8f2947a66564b1585d52', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:53.000Z'}}, {'blockNum': '0x979eed', 'uniqueId': '0x15e2e5227abbfd65203b1b20d4403050eb8d5fbaae7e8f2947a66564b1585d52:log:83', 'hash': '0x15e2e5227abbfd65203b1b20d4403050eb8d5fbaae7e8f2947a66564b1585d52', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:40:53.000Z'}}, {'blockNum': '0x979eee', 'uniqueId': '0x5bce015fdad2abe1200f0e7a23748d87665d3ff41f0260ca4344fe34be8730d4:log:30', 'hash': '0x5bce015fdad2abe1200f0e7a23748d87665d3ff41f0260ca4344fe34be8730d4', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1435.576368826505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4dd29fcd7028fb5350', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:41:03.000Z'}}, {'blockNum': '0x979eee', 'uniqueId': '0x5bce015fdad2abe1200f0e7a23748d87665d3ff41f0260ca4344fe34be8730d4:log:36', 'hash': '0x5bce015fdad2abe1200f0e7a23748d87665d3ff41f0260ca4344fe34be8730d4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 1435.576368826505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4dd29fcd7028fb5350', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:41:03.000Z'}}, {'blockNum': '0x979ef0', 'uniqueId': '0xa7800dbc21dc804457a7c853c3c8d57a9570c490ccfdc17a95298f6cee6de52d:log:25', 'hash': '0xa7800dbc21dc804457a7c853c3c8d57a9570c490ccfdc17a95298f6cee6de52d', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 931.9564306193905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32857e5bee79bf8c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:41:24.000Z'}}, {'blockNum': '0x979ef0', 'uniqueId': '0xa7800dbc21dc804457a7c853c3c8d57a9570c490ccfdc17a95298f6cee6de52d:log:31', 'hash': '0xa7800dbc21dc804457a7c853c3c8d57a9570c490ccfdc17a95298f6cee6de52d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 931.9564306193905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32857e5bee79bf8c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:41:24.000Z'}}, {'blockNum': '0x979ef4', 'uniqueId': '0x6ea58c240d3847ca26725415dbd33824f1b01c4a7d26cbadfc8cba6b6766ca6d:log:47', 'hash': '0x6ea58c240d3847ca26725415dbd33824f1b01c4a7d26cbadfc8cba6b6766ca6d', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 454.68815557416036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a610d4741f606cb5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:22.000Z'}}, {'blockNum': '0x979ef4', 'uniqueId': '0x6ea58c240d3847ca26725415dbd33824f1b01c4a7d26cbadfc8cba6b6766ca6d:log:53', 'hash': '0x6ea58c240d3847ca26725415dbd33824f1b01c4a7d26cbadfc8cba6b6766ca6d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 454.68815557416036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18a610d4741f606cb5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:22.000Z'}}, {'blockNum': '0x979ef5', 'uniqueId': '0xebf5fda15804dba3349ab640f43e51d6a3ffa9b393c5454d567ad103695c2fd1:log:274', 'hash': '0xebf5fda15804dba3349ab640f43e51d6a3ffa9b393c5454d567ad103695c2fd1', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 35.02699341435057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e618e0edec5003b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:26.000Z'}}, {'blockNum': '0x979ef5', 'uniqueId': '0xebf5fda15804dba3349ab640f43e51d6a3ffa9b393c5454d567ad103695c2fd1:log:280', 'hash': '0xebf5fda15804dba3349ab640f43e51d6a3ffa9b393c5454d567ad103695c2fd1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa260306fe5e57cae7bdcc7ff0488061eace32b58', 'value': 35.02699341435057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01e618e0edec5003b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:26.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0xf9e91a32fe397ae582315b40116472abcf1bf8564e8f0eea1e97114e504cb28b:log:151', 'hash': '0xf9e91a32fe397ae582315b40116472abcf1bf8564e8f0eea1e97114e504cb28b', 'from': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1162.8105893126506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f093d1625332a2dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0xf9e91a32fe397ae582315b40116472abcf1bf8564e8f0eea1e97114e504cb28b:log:157', 'hash': '0xf9e91a32fe397ae582315b40116472abcf1bf8564e8f0eea1e97114e504cb28b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 1162.8105893126506, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f093d1625332a2dca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584:log:174', 'hash': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 971.7405500238416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ad9bf1be9dc88502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584:log:179', 'hash': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 971.7405500238416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ad9bf1be9dc88502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584:log:181', 'hash': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 971.7405500238416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ad9bf1be9dc88502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584:log:183', 'hash': '0x9a9855847b9089f239be9da8cadcba1fa58a76c0896af6baac7caf3d55682584', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 971.7405500238416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ad9bf1be9dc88502', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x4db2c760fdb9206d2c87f18fffd5ad3f48bcdd53acce5adf413c84ec7a27b2ce:log:195', 'hash': '0x4db2c760fdb9206d2c87f18fffd5ad3f48bcdd53acce5adf413c84ec7a27b2ce', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1753.3772694124025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5f0cff68bd5aa2cac6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979ef9', 'uniqueId': '0x4db2c760fdb9206d2c87f18fffd5ad3f48bcdd53acce5adf413c84ec7a27b2ce:log:201', 'hash': '0x4db2c760fdb9206d2c87f18fffd5ad3f48bcdd53acce5adf413c84ec7a27b2ce', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x08b61ded2f558071fbdb827715e7aef16e76dd4f', 'value': 1753.3772694124025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5f0cff68bd5aa2cac6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:42:52.000Z'}}, {'blockNum': '0x979efe', 'uniqueId': '0xcd0b2a1b924dfdcfd1ebd82f5f0fbb0639e4804cc5514cedf8027dad9d72a4d8:log:168', 'hash': '0xcd0b2a1b924dfdcfd1ebd82f5f0fbb0639e4804cc5514cedf8027dad9d72a4d8', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 87.64660552829041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c0574b5b3a89a4e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:43:52.000Z'}}, {'blockNum': '0x979efe', 'uniqueId': '0xcd0b2a1b924dfdcfd1ebd82f5f0fbb0639e4804cc5514cedf8027dad9d72a4d8:log:174', 'hash': '0xcd0b2a1b924dfdcfd1ebd82f5f0fbb0639e4804cc5514cedf8027dad9d72a4d8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 87.64660552829041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04c0574b5b3a89a4e6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:43:52.000Z'}}, {'blockNum': '0x979f05', 'uniqueId': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86:log:81', 'hash': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 906.9939381937716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x312b11c553d059c538', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:44:36.000Z'}}, {'blockNum': '0x979f05', 'uniqueId': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86:log:83', 'hash': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 906.9939381937716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x312b11c553d059c538', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:44:36.000Z'}}, {'blockNum': '0x979f05', 'uniqueId': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86:log:88', 'hash': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 906.9939381937716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x312b11c553d059c538', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:44:36.000Z'}}, {'blockNum': '0x979f05', 'uniqueId': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86:log:90', 'hash': '0x6d48e9d6a197f8f6adfdcc4155baf0a6689eaf65bf94e761fd6de9127c7b6e86', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 906.9939381937716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x312b11c553d059c538', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:44:36.000Z'}}, {'blockNum': '0x979f0b', 'uniqueId': '0x093f6f18e647fa52bfa64d499d144ea760fc3c6c190b29da0ae003538fd5b526:log:170', 'hash': '0x093f6f18e647fa52bfa64d499d144ea760fc3c6c190b29da0ae003538fd5b526', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 14995.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032ce8ec143959220000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:45:58.000Z'}}, {'blockNum': '0x979f0b', 'uniqueId': '0x093f6f18e647fa52bfa64d499d144ea760fc3c6c190b29da0ae003538fd5b526:log:172', 'hash': '0x093f6f18e647fa52bfa64d499d144ea760fc3c6c190b29da0ae003538fd5b526', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 14995.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x032ce8ec143959220000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:45:58.000Z'}}, {'blockNum': '0x979f0d', 'uniqueId': '0x6756baece4a6d26c3941ebad59dc7e579d6c15500bc0fc8e631420fccc9e92ef:log:5', 'hash': '0x6756baece4a6d26c3941ebad59dc7e579d6c15500bc0fc8e631420fccc9e92ef', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 617.9271923982127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x217f7663914decb2ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:12.000Z'}}, {'blockNum': '0x979f0d', 'uniqueId': '0x6756baece4a6d26c3941ebad59dc7e579d6c15500bc0fc8e631420fccc9e92ef:log:11', 'hash': '0x6756baece4a6d26c3941ebad59dc7e579d6c15500bc0fc8e631420fccc9e92ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'value': 617.9271923982127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x217f7663914decb2ec', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:12.000Z'}}, {'blockNum': '0x979f0d', 'uniqueId': '0x497a3ecc14350a4e4ea81835bf70283b93b6ce608b6613c0a22198a2b8300549:log:26', 'hash': '0x497a3ecc14350a4e4ea81835bf70283b93b6ce608b6613c0a22198a2b8300549', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 597.7273994083032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2067224eddc9f11591', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:12.000Z'}}, {'blockNum': '0x979f0d', 'uniqueId': '0x497a3ecc14350a4e4ea81835bf70283b93b6ce608b6613c0a22198a2b8300549:log:32', 'hash': '0x497a3ecc14350a4e4ea81835bf70283b93b6ce608b6613c0a22198a2b8300549', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 597.7273994083032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2067224eddc9f11591', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:12.000Z'}}, {'blockNum': '0x979f0e', 'uniqueId': '0x47ce5a81b0a4302b337735d5564994ed07bd3554eb74bcdf20a5eff3628d6781:log:35', 'hash': '0x47ce5a81b0a4302b337735d5564994ed07bd3554eb74bcdf20a5eff3628d6781', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 772.613883494984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e22be98e0d8e0a20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:18.000Z'}}, {'blockNum': '0x979f0e', 'uniqueId': '0x47ce5a81b0a4302b337735d5564994ed07bd3554eb74bcdf20a5eff3628d6781:log:41', 'hash': '0x47ce5a81b0a4302b337735d5564994ed07bd3554eb74bcdf20a5eff3628d6781', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'value': 772.613883494984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29e22be98e0d8e0a20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:46:18.000Z'}}, {'blockNum': '0x979f12', 'uniqueId': '0x2324924bc14f718ca607b1d16898302fe6df4004b4b06b18f496f861f5b3bed3:log:54', 'hash': '0x2324924bc14f718ca607b1d16898302fe6df4004b4b06b18f496f861f5b3bed3', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 504.5537251856517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b5a16ebd0eed4e4d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:47:07.000Z'}}, {'blockNum': '0x979f12', 'uniqueId': '0x2324924bc14f718ca607b1d16898302fe6df4004b4b06b18f496f861f5b3bed3:log:60', 'hash': '0x2324924bc14f718ca607b1d16898302fe6df4004b4b06b18f496f861f5b3bed3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd99b0efeea095b87c5ad8bcc8b955ed5ca5ba146', 'value': 504.5537251856517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b5a16ebd0eed4e4d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:47:07.000Z'}}, {'blockNum': '0x979f13', 'uniqueId': '0xd61197b8a5a7b6aa703d5d63f6fcb635ff3fb31b95b47aff1a05cc1a8ba9e2a6:log:22', 'hash': '0xd61197b8a5a7b6aa703d5d63f6fcb635ff3fb31b95b47aff1a05cc1a8ba9e2a6', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 183.9588088674025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f8f0fa02658109c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:47:27.000Z'}}, {'blockNum': '0x979f13', 'uniqueId': '0xd61197b8a5a7b6aa703d5d63f6fcb635ff3fb31b95b47aff1a05cc1a8ba9e2a6:log:28', 'hash': '0xd61197b8a5a7b6aa703d5d63f6fcb635ff3fb31b95b47aff1a05cc1a8ba9e2a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 183.9588088674025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f8f0fa02658109c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:47:27.000Z'}}, {'blockNum': '0x979f1c', 'uniqueId': '0x223ee414e6f440f5d09e85825d7b984e432877b96f3fe00e55becadfad32567e:log:103', 'hash': '0x223ee414e6f440f5d09e85825d7b984e432877b96f3fe00e55becadfad32567e', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 439.06283514935177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cd388a505101a6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:49:22.000Z'}}, {'blockNum': '0x979f1c', 'uniqueId': '0x223ee414e6f440f5d09e85825d7b984e432877b96f3fe00e55becadfad32567e:log:109', 'hash': '0x223ee414e6f440f5d09e85825d7b984e432877b96f3fe00e55becadfad32567e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 439.06283514935177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cd388a505101a6ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:49:22.000Z'}}, {'blockNum': '0x979f20', 'uniqueId': '0xe7fcc545cd11c45aceaa0422c4762fc481b277e63e1b84596cce2514ab6fb5df:log:55', 'hash': '0xe7fcc545cd11c45aceaa0422c4762fc481b277e63e1b84596cce2514ab6fb5df', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 439.49417847603735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d334fac8b455b5b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:50:03.000Z'}}, {'blockNum': '0x979f20', 'uniqueId': '0xe7fcc545cd11c45aceaa0422c4762fc481b277e63e1b84596cce2514ab6fb5df:log:61', 'hash': '0xe7fcc545cd11c45aceaa0422c4762fc481b277e63e1b84596cce2514ab6fb5df', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 439.49417847603735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d334fac8b455b5b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:50:03.000Z'}}, {'blockNum': '0x979f24', 'uniqueId': '0x4bf0432046e7833b11566a2657fb04e984effee2abb9ca9039c114bc687ffe93:log:27', 'hash': '0x4bf0432046e7833b11566a2657fb04e984effee2abb9ca9039c114bc687ffe93', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 39995.54, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0878299e0c8c16c20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:50:49.000Z'}}, {'blockNum': '0x979f27', 'uniqueId': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce:log:84', 'hash': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1279.684669071531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455f313a75e9eb9fa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:52:15.000Z'}}, {'blockNum': '0x979f27', 'uniqueId': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce:log:89', 'hash': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1279.684669071531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455f313a75e9eb9fa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:52:15.000Z'}}, {'blockNum': '0x979f27', 'uniqueId': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce:log:91', 'hash': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1279.684669071531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455f313a75e9eb9fa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:52:15.000Z'}}, {'blockNum': '0x979f27', 'uniqueId': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce:log:93', 'hash': '0x0c67acc417731ae785080bd1f3f51710a4c94fd71b6e01e9cfecf3b70044cfce', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 1279.684669071531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455f313a75e9eb9fa6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:52:15.000Z'}}, {'blockNum': '0x979f2c', 'uniqueId': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7:log:30', 'hash': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 769.490141150049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29b6d2267145dd2274', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:53:03.000Z'}}, {'blockNum': '0x979f2c', 'uniqueId': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7:log:35', 'hash': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 769.490141150049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29b6d2267145dd2274', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:53:03.000Z'}}, {'blockNum': '0x979f2c', 'uniqueId': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7:log:37', 'hash': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 769.490141150049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29b6d2267145dd2274', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:53:03.000Z'}}, {'blockNum': '0x979f2c', 'uniqueId': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7:log:39', 'hash': '0x182b4dc7c10a6307a4455d5ad0acb5c0bd2f5a87b03769a40beb7ca139aba4f7', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 769.490141150049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29b6d2267145dd2274', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:53:03.000Z'}}, {'blockNum': '0x979f37', 'uniqueId': '0x35e2029483a1cb67d806028b37883206ad067ba801fb0662c15716cf212d92a2:log:80', 'hash': '0x35e2029483a1cb67d806028b37883206ad067ba801fb0662c15716cf212d92a2', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1078.2901764086387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a7448426ade33c5ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:56:08.000Z'}}, {'blockNum': '0x979f37', 'uniqueId': '0x35e2029483a1cb67d806028b37883206ad067ba801fb0662c15716cf212d92a2:log:86', 'hash': '0x35e2029483a1cb67d806028b37883206ad067ba801fb0662c15716cf212d92a2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 1078.2901764086387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a7448426ade33c5ed', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:56:08.000Z'}}, {'blockNum': '0x979f3b', 'uniqueId': '0x6c2c8dfda4a935a9528fee833a18ec0870fe7ec81bcab27262b9db6c53adcc78:log:50', 'hash': '0x6c2c8dfda4a935a9528fee833a18ec0870fe7ec81bcab27262b9db6c53adcc78', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 394.0784221372004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155cefcd044e42e3c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:57:13.000Z'}}, {'blockNum': '0x979f3b', 'uniqueId': '0x6c2c8dfda4a935a9528fee833a18ec0870fe7ec81bcab27262b9db6c53adcc78:log:56', 'hash': '0x6c2c8dfda4a935a9528fee833a18ec0870fe7ec81bcab27262b9db6c53adcc78', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xf55c7d64703e879f279bb65b47b65b3d450130bc', 'value': 394.0784221372004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155cefcd044e42e3c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:57:13.000Z'}}, {'blockNum': '0x979f3f', 'uniqueId': '0xa7757e8d0e6a46b699e6e84506bef82bb95aadb0b5185a02def1660f259731ef:log:11', 'hash': '0xa7757e8d0e6a46b699e6e84506bef82bb95aadb0b5185a02def1660f259731ef', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 658.2939238497545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23afa9d3f35ea9b3c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:57:43.000Z'}}, {'blockNum': '0x979f3f', 'uniqueId': '0xa7757e8d0e6a46b699e6e84506bef82bb95aadb0b5185a02def1660f259731ef:log:17', 'hash': '0xa7757e8d0e6a46b699e6e84506bef82bb95aadb0b5185a02def1660f259731ef', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'value': 658.2939238497545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x23afa9d3f35ea9b3c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:57:43.000Z'}}, {'blockNum': '0x979f42', 'uniqueId': '0xa7f9bfbd66d04aa316aacd891504d35344145481500b254fcc22747e54f67698:log:34', 'hash': '0xa7f9bfbd66d04aa316aacd891504d35344145481500b254fcc22747e54f67698', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 434.2622499376651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x178a996f7f906dfb25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:58:00.000Z'}}, {'blockNum': '0x979f42', 'uniqueId': '0xa7f9bfbd66d04aa316aacd891504d35344145481500b254fcc22747e54f67698:log:40', 'hash': '0xa7f9bfbd66d04aa316aacd891504d35344145481500b254fcc22747e54f67698', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x46989597338d1db0f7adccd124af2fe4ca841068', 'value': 434.2622499376651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x178a996f7f906dfb25', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:58:00.000Z'}}, {'blockNum': '0x979f48', 'uniqueId': '0xc4750c2df1c816a9e8bba1fba938a13d3e8e80b0f3b850daf4982d755b0f5f08:log:60', 'hash': '0xc4750c2df1c816a9e8bba1fba938a13d3e8e80b0f3b850daf4982d755b0f5f08', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 520.1897268350042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c331528791fe96d9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:59:57.000Z'}}, {'blockNum': '0x979f48', 'uniqueId': '0xc4750c2df1c816a9e8bba1fba938a13d3e8e80b0f3b850daf4982d755b0f5f08:log:66', 'hash': '0xc4750c2df1c816a9e8bba1fba938a13d3e8e80b0f3b850daf4982d755b0f5f08', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 520.1897268350042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c331528791fe96d9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T17:59:57.000Z'}}, {'blockNum': '0x979f49', 'uniqueId': '0x406f964f23b7de383dc8de8689d0e1191490c658abe082b7cd781ebb10583f80:log:36', 'hash': '0x406f964f23b7de383dc8de8689d0e1191490c658abe082b7cd781ebb10583f80', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 476.52984753763457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19d52e1b9277c30cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:00:05.000Z'}}, {'blockNum': '0x979f49', 'uniqueId': '0x406f964f23b7de383dc8de8689d0e1191490c658abe082b7cd781ebb10583f80:log:42', 'hash': '0x406f964f23b7de383dc8de8689d0e1191490c658abe082b7cd781ebb10583f80', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'value': 476.52984753763457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19d52e1b9277c30cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:00:05.000Z'}}, {'blockNum': '0x979f4f', 'uniqueId': '0xe26b0f1ddc523729ec644498d816fefd2ffe62453b7643d953c2ae7945d35c76:log:11', 'hash': '0xe26b0f1ddc523729ec644498d816fefd2ffe62453b7643d953c2ae7945d35c76', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 520.14625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c327ab285a586a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:01:14.000Z'}}, {'blockNum': '0x979f5b', 'uniqueId': '0x197590c46fac10620fb0df6cb96168e67fc96939b92bce4686c875a9fce20e75:log:118', 'hash': '0x197590c46fac10620fb0df6cb96168e67fc96939b92bce4686c875a9fce20e75', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 249.58305254974545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d87a91ff2413a8151', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:04:16.000Z'}}, {'blockNum': '0x979f5b', 'uniqueId': '0x197590c46fac10620fb0df6cb96168e67fc96939b92bce4686c875a9fce20e75:log:124', 'hash': '0x197590c46fac10620fb0df6cb96168e67fc96939b92bce4686c875a9fce20e75', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 249.58305254974545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d87a91ff2413a8151', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:04:16.000Z'}}, {'blockNum': '0x979f5e', 'uniqueId': '0xc7b5b662deeedd16fb22c1be17bda73bce715dcc0400c7a336e53d38bcb8b085:log:233', 'hash': '0xc7b5b662deeedd16fb22c1be17bda73bce715dcc0400c7a336e53d38bcb8b085', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 877.7252528318552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94e2831018a73cfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:04:51.000Z'}}, {'blockNum': '0x979f5e', 'uniqueId': '0xc7b5b662deeedd16fb22c1be17bda73bce715dcc0400c7a336e53d38bcb8b085:log:239', 'hash': '0xc7b5b662deeedd16fb22c1be17bda73bce715dcc0400c7a336e53d38bcb8b085', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'value': 877.7252528318552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94e2831018a73cfc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:04:51.000Z'}}, {'blockNum': '0x979f60', 'uniqueId': '0x6426c1a20da43511ee37ee6dbaa91e2bec97d84fcd4e052d851ad5612d20f191:log:101', 'hash': '0x6426c1a20da43511ee37ee6dbaa91e2bec97d84fcd4e052d851ad5612d20f191', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2213.943418444254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7804a311199fc4ba93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:05:33.000Z'}}, {'blockNum': '0x979f60', 'uniqueId': '0x6426c1a20da43511ee37ee6dbaa91e2bec97d84fcd4e052d851ad5612d20f191:log:107', 'hash': '0x6426c1a20da43511ee37ee6dbaa91e2bec97d84fcd4e052d851ad5612d20f191', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xbd19f30adde367fe06c0076d690d434bf945a8fc', 'value': 2213.943418444254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7804a311199fc4ba93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:05:33.000Z'}}, {'blockNum': '0x979f62', 'uniqueId': '0xb6368180e01233414a597d51fe19523a1c9d6e62a251f80cb4f6982e065b34d1:log:82', 'hash': '0xb6368180e01233414a597d51fe19523a1c9d6e62a251f80cb4f6982e065b34d1', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5cebfc89d0c93384bd8909a0148004898fad2446', 'value': 520.14625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c327ab285a586a000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:07:18.000Z'}}, {'blockNum': '0x979f63', 'uniqueId': '0x1980dc5699391f91874b8d4350a44433ee5f360a11cbee615f49e40feb3259a8:log:19', 'hash': '0x1980dc5699391f91874b8d4350a44433ee5f360a11cbee615f49e40feb3259a8', 'from': '0xd58b7f2be5e3472857fb9af49cbd327b8ae9680a', 'to': '0x22a795d002c02274bc6da229d50eb631ae98f998', 'value': 280.736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f37fea098d0100000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:07:35.000Z'}}, {'blockNum': '0x979f64', 'uniqueId': '0x1d7ef3eeae72c985b7bbf41a42bd669d02f2de87296a10ed20da9d27931d41be:log:129', 'hash': '0x1d7ef3eeae72c985b7bbf41a42bd669d02f2de87296a10ed20da9d27931d41be', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1315.6385750763257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x475227297ae17c2dc9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:07:47.000Z'}}, {'blockNum': '0x979f64', 'uniqueId': '0x1d7ef3eeae72c985b7bbf41a42bd669d02f2de87296a10ed20da9d27931d41be:log:135', 'hash': '0x1d7ef3eeae72c985b7bbf41a42bd669d02f2de87296a10ed20da9d27931d41be', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x2493774b43ef7f6d2f4bc39a535cd2b5b765cbf8', 'value': 1315.6385750763257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x475227297ae17c2dc9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:07:47.000Z'}}, {'blockNum': '0x979f66', 'uniqueId': '0x73f6bbe5dc795f326baf133ad704a8fcc93729f43e9d252652d422209d376525:log:23', 'hash': '0x73f6bbe5dc795f326baf133ad704a8fcc93729f43e9d252652d422209d376525', 'from': '0xc4bf6dc46537aa77428cd87cfe57d817e76285a2', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 304.37222979229006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108003625ce7045796', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:08:13.000Z'}}, {'blockNum': '0x979f66', 'uniqueId': '0x73f6bbe5dc795f326baf133ad704a8fcc93729f43e9d252652d422209d376525:log:29', 'hash': '0x73f6bbe5dc795f326baf133ad704a8fcc93729f43e9d252652d422209d376525', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x9db89726ae2683d21a71ff1417638e72e6d8c0d9', 'value': 304.37222979229006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x108003625ce7045796', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:08:13.000Z'}}, {'blockNum': '0x979f6c', 'uniqueId': '0x18cdeb6cbb93585c96f6cf8f4d04290853bd8680e4988d6e2974c86d26fb9813:log:115', 'hash': '0x18cdeb6cbb93585c96f6cf8f4d04290853bd8680e4988d6e2974c86d26fb9813', 'from': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 166.62066382824287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09085382f52a3173db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:09:48.000Z'}}, {'blockNum': '0x979f6c', 'uniqueId': '0x18cdeb6cbb93585c96f6cf8f4d04290853bd8680e4988d6e2974c86d26fb9813:log:121', 'hash': '0x18cdeb6cbb93585c96f6cf8f4d04290853bd8680e4988d6e2974c86d26fb9813', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xe1437f404451a00a9c555000b6f3cba2480291c8', 'value': 166.62066382824287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09085382f52a3173db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:09:48.000Z'}}, {'blockNum': '0x979f84', 'uniqueId': '0x2d11b7438b0bc5bb48b0f3ff992981626b0da063b6d2b49a2db99bce0cea5f66:log:74', 'hash': '0x2d11b7438b0bc5bb48b0f3ff992981626b0da063b6d2b49a2db99bce0cea5f66', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:15:02.000Z'}}, {'blockNum': '0x979f84', 'uniqueId': '0x2d11b7438b0bc5bb48b0f3ff992981626b0da063b6d2b49a2db99bce0cea5f66:log:76', 'hash': '0x2d11b7438b0bc5bb48b0f3ff992981626b0da063b6d2b49a2db99bce0cea5f66', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:15:02.000Z'}}, {'blockNum': '0x979f8f', 'uniqueId': '0x0465cf6c8cb11b0d736a5f529065f21b564e208f89bb7f5c2aeb1d3d0a025a80:log:36', 'hash': '0x0465cf6c8cb11b0d736a5f529065f21b564e208f89bb7f5c2aeb1d3d0a025a80', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:18:20.000Z'}}, {'blockNum': '0x979f8f', 'uniqueId': '0x0465cf6c8cb11b0d736a5f529065f21b564e208f89bb7f5c2aeb1d3d0a025a80:log:38', 'hash': '0x0465cf6c8cb11b0d736a5f529065f21b564e208f89bb7f5c2aeb1d3d0a025a80', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:18:20.000Z'}}, {'blockNum': '0x979f99', 'uniqueId': '0x628ba52e6c8afb3c72fddf7f24497681c6bc082f1cf3cb0d814030d24ef28460:log:8', 'hash': '0x628ba52e6c8afb3c72fddf7f24497681c6bc082f1cf3cb0d814030d24ef28460', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:19:48.000Z'}}, {'blockNum': '0x979f99', 'uniqueId': '0x628ba52e6c8afb3c72fddf7f24497681c6bc082f1cf3cb0d814030d24ef28460:log:10', 'hash': '0x628ba52e6c8afb3c72fddf7f24497681c6bc082f1cf3cb0d814030d24ef28460', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xd3ec78814966ca1eb4c923af4da86bf7e6c743ba', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-24T18:19:48.000Z'}}], 'pageKey': '045a6b07-9f6f-428d-8e26-185baa55bfb2'}}
Answer is paginated. Downloading more pages...
Number of returned transfers:  1001
Answer is complete
 
symbol             AST
group               CW
date        2020-05-09
hour             16:00
exchange       binance
Name: 899, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
 Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps:  2020-05-09 16:00:00 2020-05-09 04:00:00 2020-05-10 04:00:00
Unix timestamps:  1588989600.0 1589076000.0
Hex Block Numbers:  0x9908b4 0x9921bb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x990b48', 'uniqueId': '0xff44370c584e39d98a75ad85fe3ff4c6028b3f5f5570447185ff0d1e901aa59e:log:66', 'hash': '0xff44370c584e39d98a75ad85fe3ff4c6028b3f5f5570447185ff0d1e901aa59e', 'from': '0x048f1dacc20b672a2426ec06bf041bbf193eb130', 'to': '0x79b10f3d79c7bc7f0519cd563f83bb8db51e681c', 'value': 1438.2662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xdb7646', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:25:49.000Z'}}, {'blockNum': '0x990b69', 'uniqueId': '0x1ca372c711bd5ba29c7eb478af390d541fe9bf8c17a4b4444d8e7e98999ecab5:log:46', 'hash': '0x1ca372c711bd5ba29c7eb478af390d541fe9bf8c17a4b4444d8e7e98999ecab5', 'from': '0xcaba3d28f2652eb0ea976ff9d88184a979fe1a20', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 86912.0875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x33cdbb6b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:33:19.000Z'}}, {'blockNum': '0x990b7e', 'uniqueId': '0x70ec3678cf4ab1e8260032483317f00d01ef00512f733998c3382b2472c2f109:log:132', 'hash': '0x70ec3678cf4ab1e8260032483317f00d01ef00512f733998c3382b2472c2f109', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 28282.9773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10dba3cd', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:37:48.000Z'}}, {'blockNum': '0x990b7e', 'uniqueId': '0x70ec3678cf4ab1e8260032483317f00d01ef00512f733998c3382b2472c2f109:log:134', 'hash': '0x70ec3678cf4ab1e8260032483317f00d01ef00512f733998c3382b2472c2f109', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8fa428750435e06c134366c831c656ed5b20e59b', 'value': 28282.9773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10dba3cd', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:37:48.000Z'}}, {'blockNum': '0x990b8b', 'uniqueId': '0x7b669ab05ec882e7a966a01bb4f8a4c03824f3c8fc3de4ce1e13ba1fec607af6:log:34', 'hash': '0x7b669ab05ec882e7a966a01bb4f8a4c03824f3c8fc3de4ce1e13ba1fec607af6', 'from': '0x9621d4c912e18f9eda52cb6988515bae3f93f672', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x29b92700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:40:26.000Z'}}, {'blockNum': '0x990b8b', 'uniqueId': '0x7b669ab05ec882e7a966a01bb4f8a4c03824f3c8fc3de4ce1e13ba1fec607af6:log:35', 'hash': '0x7b669ab05ec882e7a966a01bb4f8a4c03824f3c8fc3de4ce1e13ba1fec607af6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x29b92700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:40:26.000Z'}}, {'blockNum': '0x990b90', 'uniqueId': '0x53e779c55899df3287b2f032ac1ef54c11dadfacae0ddce547aeae6e315cc6d9:log:49', 'hash': '0x53e779c55899df3287b2f032ac1ef54c11dadfacae0ddce547aeae6e315cc6d9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 13295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07eca7f0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:40:59.000Z'}}, {'blockNum': '0x990b98', 'uniqueId': '0xfd329050dcbac6cec4fd34773f79e836fb04ba81f87eeaeee6f518aa2ec83123:log:112', 'hash': '0xfd329050dcbac6cec4fd34773f79e836fb04ba81f87eeaeee6f518aa2ec83123', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2606.5401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018db9f9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:42:58.000Z'}}, {'blockNum': '0x990b98', 'uniqueId': '0xfd329050dcbac6cec4fd34773f79e836fb04ba81f87eeaeee6f518aa2ec83123:log:114', 'hash': '0xfd329050dcbac6cec4fd34773f79e836fb04ba81f87eeaeee6f518aa2ec83123', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8fa428750435e06c134366c831c656ed5b20e59b', 'value': 2606.5401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018db9f9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:42:58.000Z'}}, {'blockNum': '0x990ba7', 'uniqueId': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197:log:158', 'hash': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 12825.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07a4fc1a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:46:59.000Z'}}, {'blockNum': '0x990ba7', 'uniqueId': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197:log:160', 'hash': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00000f2d00b7a76100366c0013c2000595ee0067', 'value': 12825.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07a4fc1a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:46:59.000Z'}}, {'blockNum': '0x990ba7', 'uniqueId': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197:log:167', 'hash': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197', 'from': '0x00000f2d00b7a76100366c0013c2000595ee0067', 'to': '0x39ee0f29253017d69909b7286caf8c080e9d6da2', 'value': 12825.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07a4fc1a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:46:59.000Z'}}, {'blockNum': '0x990baf', 'uniqueId': '0x963cce30bc83febc72ecb33db15863ed911762bedbdf76e154c1ebee76506134:log:91', 'hash': '0x963cce30bc83febc72ecb33db15863ed911762bedbdf76e154c1ebee76506134', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 42951.4077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1999dd5d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:48:29.000Z'}}, {'blockNum': '0x990be1', 'uniqueId': '0xf7586280b5fe3b9fb69f340d4db4a75b3a289f886b4639f9c26d23e008115f4a:log:123', 'hash': '0xf7586280b5fe3b9fb69f340d4db4a75b3a289f886b4639f9c26d23e008115f4a', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42951.4077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1999dd5d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:59:46.000Z'}}, {'blockNum': '0x990cd9', 'uniqueId': '0xd55a8b3a0a1564934ea062ec89b5bafe7522df2cee10013a3fd552eb27489397:log:17', 'hash': '0xd55a8b3a0a1564934ea062ec89b5bafe7522df2cee10013a3fd552eb27489397', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x9909ea65f0b6a87d7d026c8968329c8ad3200535', 'value': 883.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x86de2c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T06:02:18.000Z'}}, {'blockNum': '0x990d6d', 'uniqueId': '0xbb66d2b9897dc766a8a130da37490eec5afd83b187a5724ddf57b322184865ed:log:160', 'hash': '0xbb66d2b9897dc766a8a130da37490eec5afd83b187a5724ddf57b322184865ed', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x53a2a7e163d84eaab5e3284940944f560237b831', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x055d4a80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T06:32:56.000Z'}}, {'blockNum': '0x990d86', 'uniqueId': '0xc7d6a944f404ed8cb9eb9e076ebe6e207fc893afa6a5c04aed75becc358ec79b:log:42', 'hash': '0xc7d6a944f404ed8cb9eb9e076ebe6e207fc893afa6a5c04aed75becc358ec79b', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x53a2a7e163d84eaab5e3284940944f560237b831', 'value': 81000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x30479e80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T06:38:44.000Z'}}, {'blockNum': '0x990dee', 'uniqueId': '0x3ec13606e2a19418a39fc41277139d4f999fea8095a87c766fd73d34bfbbf823:log:130', 'hash': '0x3ec13606e2a19418a39fc41277139d4f999fea8095a87c766fd73d34bfbbf823', 'from': '0x53a2a7e163d84eaab5e3284940944f560237b831', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x35a4e900', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:00:59.000Z'}}, {'blockNum': '0x990df9', 'uniqueId': '0xf7fa1a56df0d9ea08a9ba6295b743fda027b4c4b7c6592f211cf2565f7f7cf3e:log:32', 'hash': '0xf7fa1a56df0d9ea08a9ba6295b743fda027b4c4b7c6592f211cf2565f7f7cf3e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1cb94482e560ea0baf7895092b437c1fb2249268', 'value': 1930.995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0126a57e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:03:35.000Z'}}, {'blockNum': '0x990e57', 'uniqueId': '0x3046c12c7b931dc80e83cba98387d5b2936a65cf0210d1f45b0ed7bf6b4a466f:log:109', 'hash': '0x3046c12c7b931dc80e83cba98387d5b2936a65cf0210d1f45b0ed7bf6b4a466f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 429.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x418f98', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:23:26.000Z'}}, {'blockNum': '0x990e7b', 'uniqueId': '0x85e2610a1273273f1c4bac6e89222a46d899ca0c520db7ecdcf4f84d2ba79e93:log:131', 'hash': '0x85e2610a1273273f1c4bac6e89222a46d899ca0c520db7ecdcf4f84d2ba79e93', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 429.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x418f98', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:34:01.000Z'}}, {'blockNum': '0x990edc', 'uniqueId': '0xb54d8f786ad51f17235d0e6753f6c2c43b200cdf9299c8468bd6422cd1183b29:log:84', 'hash': '0xb54d8f786ad51f17235d0e6753f6c2c43b200cdf9299c8468bd6422cd1183b29', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02e16619926960836acf45534aa0f3a0c9851d6e', 'value': 9502.3069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05a9efdd', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:54:37.000Z'}}, {'blockNum': '0x990f8f', 'uniqueId': '0x4ffeace381d7c87ca82269bcfa90892a8ec7e1c235d77541d380557e8d2b4fa3:log:27', 'hash': '0x4ffeace381d7c87ca82269bcfa90892a8ec7e1c235d77541d380557e8d2b4fa3', 'from': '0x95151e4615c5c0924b918c85ad8d8a94d6644ab3', 'to': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T08:37:55.000Z'}}, {'blockNum': '0x990fae', 'uniqueId': '0x55535b3bbc0128ce854b38ed85775a4b8794d919fe3b4be49c4d9cc4888366cf:log:60', 'hash': '0x55535b3bbc0128ce854b38ed85775a4b8794d919fe3b4be49c4d9cc4888366cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe79a89c9cfebc499782754682172da76c863eb8', 'value': 2177.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x014c49d2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T08:43:20.000Z'}}, {'blockNum': '0x991595', 'uniqueId': '0x927a78baa2327d5fd9643690957968b40a2d7bce34d49341e0a63a92766ad2c3:log:47', 'hash': '0x927a78baa2327d5fd9643690957968b40a2d7bce34d49341e0a63a92766ad2c3', 'from': '0xda77628c2fc8e8c11ea772fa4727f2ee52a0f2c5', 'to': '0x7679bf4d894353022fbb0d710f10dafefaa1909f', 'value': 372.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x38cfb6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T14:14:49.000Z'}}, {'blockNum': '0x9915e4', 'uniqueId': '0xd172693d9d336309d39ec04860de6f1c08dfcb1ed5d21203e490f527b4eaf564:log:57', 'hash': '0xd172693d9d336309d39ec04860de6f1c08dfcb1ed5d21203e490f527b4eaf564', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 89929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x359a1390', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T14:32:43.000Z'}}, {'blockNum': '0x99160d', 'uniqueId': '0x1cb038fbf4601897a9148e42050f579e18796fdd2b7f82c69cb8966985d457bb:log:152', 'hash': '0x1cb038fbf4601897a9148e42050f579e18796fdd2b7f82c69cb8966985d457bb', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T14:43:30.000Z'}}, {'blockNum': '0x991699', 'uniqueId': '0x1b806dd6e9aed4831cd6f1f3dd082f78c6fb3e808891a85ab2268a7106cd9b3a:log:81', 'hash': '0x1b806dd6e9aed4831cd6f1f3dd082f78c6fb3e808891a85ab2268a7106cd9b3a', 'from': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'to': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'value': 49999.7979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dcd5d1b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:16:35.000Z'}}, {'blockNum': '0x9916a0', 'uniqueId': '0xe6d1b29afbf3487af111aeab4387c5ef5fa1aa5410e3a09e2c7102adb763c7b4:log:134', 'hash': '0xe6d1b29afbf3487af111aeab4387c5ef5fa1aa5410e3a09e2c7102adb763c7b4', 'from': '0x39ee0f29253017d69909b7286caf8c080e9d6da2', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 2088.9734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x013ec086', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:18:43.000Z'}}, {'blockNum': '0x9916a0', 'uniqueId': '0xe6d1b29afbf3487af111aeab4387c5ef5fa1aa5410e3a09e2c7102adb763c7b4:log:135', 'hash': '0xe6d1b29afbf3487af111aeab4387c5ef5fa1aa5410e3a09e2c7102adb763c7b4', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'value': 2088.9733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x013ec085', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:18:43.000Z'}}, {'blockNum': '0x9916ad', 'uniqueId': '0x9683c27a4f6bd52e744a2d55d40f7f68bb8e18903b8e8d65662ff419c122cf0f:log:24', 'hash': '0x9683c27a4f6bd52e744a2d55d40f7f68bb8e18903b8e8d65662ff419c122cf0f', 'from': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'to': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:21:31.000Z'}}, {'blockNum': '0x9916ca', 'uniqueId': '0xc076b6873166ee8e53335e4b01d3c544001a8e557f32c415693db8966a56a91a:log:54', 'hash': '0xc076b6873166ee8e53335e4b01d3c544001a8e557f32c415693db8966a56a91a', 'from': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'to': '0x576027513dbfd0fc66834cedef888770fc743175', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:29:34.000Z'}}, {'blockNum': '0x9917bb', 'uniqueId': '0x342417e99d4563020ef6806f1236780d4527fd5a1db734daecc597fa2ec54bab:log:0', 'hash': '0x342417e99d4563020ef6806f1236780d4527fd5a1db734daecc597fa2ec54bab', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1792.4669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0111823d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:20:45.000Z'}}, {'blockNum': '0x9917c0', 'uniqueId': '0x161f0b9fbc6022b49ef5aa0c9d88f7ac72c8b3ac78f47570746269a96592b52d:log:131', 'hash': '0x161f0b9fbc6022b49ef5aa0c9d88f7ac72c8b3ac78f47570746269a96592b52d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb9d4eeb0849161ccc117f30569b4ff426755b415', 'value': 1792.4669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0111823d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:22:54.000Z'}}, {'blockNum': '0x9917ce', 'uniqueId': '0xdc4a622cbc1b238412a1d4a20f0bd7d69ee4d2ffc1bf04b97fcd547b808ef8e3:log:11', 'hash': '0xdc4a622cbc1b238412a1d4a20f0bd7d69ee4d2ffc1bf04b97fcd547b808ef8e3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb9d4eeb0849161ccc117f30569b4ff426755b415', 'value': 1081.6591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa50c4f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:25:08.000Z'}}, {'blockNum': '0x991818', 'uniqueId': '0xc1fade01f9a385ae2459cde36cbdf68e9f3fabc924fef7b76b196ef9cf7bc109:log:17', 'hash': '0xc1fade01f9a385ae2459cde36cbdf68e9f3fabc924fef7b76b196ef9cf7bc109', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x559035a66ec359b9e287954b7bc8d66a54f8ccc4', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03473bc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:39:34.000Z'}}, {'blockNum': '0x991826', 'uniqueId': '0x965e86bb9c830a688eb57017a28a85de813ed25f4518082f57613c8d91a62c6f:log:19', 'hash': '0x965e86bb9c830a688eb57017a28a85de813ed25f4518082f57613c8d91a62c6f', 'from': '0xb9d4eeb0849161ccc117f30569b4ff426755b415', 'to': '0x3162c026331401abdd32ce538c84e996186909ab', 'value': 2242.875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01563c4e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:42:28.000Z'}}, {'blockNum': '0x99182f', 'uniqueId': '0xd56da32aa22b6b544986dc3481734c3d9b51ca9ba9d2da1292217648f90b8301:log:58', 'hash': '0xd56da32aa22b6b544986dc3481734c3d9b51ca9ba9d2da1292217648f90b8301', 'from': '0x3162c026331401abdd32ce538c84e996186909ab', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2242.875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01563c4e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:45:00.000Z'}}, {'blockNum': '0x9918a4', 'uniqueId': '0x62500529bcd858f5b8d333aa9ff3ad7a96cb2188a55de5b6a487e8146e379f0b:log:8', 'hash': '0x62500529bcd858f5b8d333aa9ff3ad7a96cb2188a55de5b6a487e8146e379f0b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xe9d4f0df57ae5352efb097e3a1eb3de166d52685', 'value': 327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x31e570', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T17:10:20.000Z'}}, {'blockNum': '0x9918c8', 'uniqueId': '0x1f0386b42245684bb6bc0f175dd732a588334c85112263bcd07cb8aa83a48be5:log:45', 'hash': '0x1f0386b42245684bb6bc0f175dd732a588334c85112263bcd07cb8aa83a48be5', 'from': '0xe9d4f0df57ae5352efb097e3a1eb3de166d52685', 'to': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'value': 327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x31e570', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T17:19:31.000Z'}}, {'blockNum': '0x991bdf', 'uniqueId': '0x852993429e8c7670e8f1391eb6ea8132b8428971ae642a3ad24f09997670772d:log:1', 'hash': '0x852993429e8c7670e8f1391eb6ea8132b8428971ae642a3ad24f09997670772d', 'from': '0x08fbb7ae479f380924e7ac190530df84c0884a8b', 'to': '0xf6b57fed3575f559b7ee0f7ff50c77e0554bb2a8', 'value': 3055.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01d22d5e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T20:24:10.000Z'}}, {'blockNum': '0x991d11', 'uniqueId': '0x6ee0d333b59ddfe748ed998ec4835f231daf2f4b6b5760291df85c5254938232:log:112', 'hash': '0x6ee0d333b59ddfe748ed998ec4835f231daf2f4b6b5760291df85c5254938232', 'from': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'to': '0x777ec27a8f1be1dbb74f591055f5457df8d6bffb', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:29:57.000Z'}}, {'blockNum': '0x991d66', 'uniqueId': '0x018ae1dff5aac4f258de5364ef0dde427caffeb5e3289a90211e16cbc145399f:log:35', 'hash': '0x018ae1dff5aac4f258de5364ef0dde427caffeb5e3289a90211e16cbc145399f', 'from': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'to': '0x12755b769cba38b178111213b104761f872b8230', 'value': 1394.1199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xd4b9cf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:48:26.000Z'}}, {'blockNum': '0x991d82', 'uniqueId': '0x929d63b7f84ccc11d7c036a96c25c7d5e0abada7f4704dd90df28a4f5015f269:log:133', 'hash': '0x929d63b7f84ccc11d7c036a96c25c7d5e0abada7f4704dd90df28a4f5015f269', 'from': '0x58543a07394e9b7337c24023e2aebcf6357d7bc9', 'to': '0xdc8c9148666a39df278fe4b7d6d52d874e72a452', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:55:16.000Z'}}, {'blockNum': '0x991d93', 'uniqueId': '0x0cfd0385c3f92136cab3c60054079df087270f493588270c0b248a895d27341c:log:152', 'hash': '0x0cfd0385c3f92136cab3c60054079df087270f493588270c0b248a895d27341c', 'from': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'to': '0x12755b769cba38b178111213b104761f872b8230', 'value': 1357.0615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xcf1237', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:58:31.000Z'}}, {'blockNum': '0x991d94', 'uniqueId': '0x6d0fbee570ea8a0570d99f66e84f3c28ce8bb351244730cd10f0636dd037780c:log:15', 'hash': '0x6d0fbee570ea8a0570d99f66e84f3c28ce8bb351244730cd10f0636dd037780c', 'from': '0x39ee0f29253017d69909b7286caf8c080e9d6da2', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 2522.2364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0180dcdc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:58:44.000Z'}}, {'blockNum': '0x991d94', 'uniqueId': '0x6d0fbee570ea8a0570d99f66e84f3c28ce8bb351244730cd10f0636dd037780c:log:16', 'hash': '0x6d0fbee570ea8a0570d99f66e84f3c28ce8bb351244730cd10f0636dd037780c', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'value': 2522.2363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0180dcdb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:58:44.000Z'}}, {'blockNum': '0x991db3', 'uniqueId': '0x88964122ff0e302c7dadaf99a2e04b38505a157b6214859db1637747140ac193:log:51', 'hash': '0x88964122ff0e302c7dadaf99a2e04b38505a157b6214859db1637747140ac193', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1109.1142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa93cc6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T22:06:46.000Z'}}, {'blockNum': '0x991dbe', 'uniqueId': '0x17b36f66e7353ae1450e3363a48a7ea036cdb23d55b6ef69a5252df5d48b3775:log:42', 'hash': '0x17b36f66e7353ae1450e3363a48a7ea036cdb23d55b6ef69a5252df5d48b3775', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x238deaed4e0f90afae5f17b7cabbeb2b601d40f0', 'value': 1109.1142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa93cc6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T22:09:59.000Z'}}, {'blockNum': '0x991dbf', 'uniqueId': '0xdad4fa79ce5992ded36f105494913c4c96499019498dbe7c8689f4c1bc3f667c:log:128', 'hash': '0xdad4fa79ce5992ded36f105494913c4c96499019498dbe7c8689f4c1bc3f667c', 'from': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'to': '0x12755b769cba38b178111213b104761f872b8230', 'value': 1387.7991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xd3c2e7', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T22:10:01.000Z'}}]}}
Number of returned transfers:  50
Answer is complete
 
symbol             GTO
group               CW
date        2020-05-21
hour             15:59
exchange       binance
Name: 900, dtype: object
HERE
 Symbol: GTO, Contract: 
Datetime timestamps:  2020-05-21 15:59:00 2020-05-21 03:59:00 2020-05-22 03:59:00
Unix timestamps:  1590026340.0 1590112740.0
Hex Block Numbers:  0x9a3645 0x9a4f80
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ONG
group               CW
date        2020-05-26
hour             16:00
exchange       binance
Name: 901, dtype: object
HERE
{'ontology': ''}
No contract for ethereum specified
 Symbol: ONG, Contract: 
Datetime timestamps:  2020-05-26 16:00:00 2020-05-26 04:00:00 2020-05-27 04:00:00
Unix timestamps:  1590458400.0 1590544800.0
Hex Block Numbers:  0x9ab3a2 0x9accfd
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIA
group               CW
date        2020-05-29
hour             15:59
exchange       binance
Name: 902, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2020-05-29 15:59:00 2020-05-29 03:59:00 2020-05-30 03:59:00
Unix timestamps:  1590717540.0 1590803940.0
Hex Block Numbers:  0x9aff28 0x9b1859
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            CTXC
group               CW
date        2020-06-03
hour             16:00
exchange       binance
Name: 903, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CTXC, Contract: 
Datetime timestamps:  2020-06-03 16:00:00 2020-06-03 04:00:00 2020-06-04 04:00:00
Unix timestamps:  1591149600.0 1591236000.0
Hex Block Numbers:  0x9b7cf3 0x9b960d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             PPT
group               CW
date        2020-06-08
hour             16:05
exchange       binance
Name: 904, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-06-08 16:05:00 2020-06-08 04:05:00 2020-06-09 04:05:00
Unix timestamps:  1591581900.0 1591668300.0
Hex Block Numbers:  0x9bfaeb 0x9c1417
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9bfaf8', 'uniqueId': '0xaa774a412cedfd955ac2d886257bc4f00f16d622ec4b1d55d0c27122b93ec7e8:log:69', 'hash': '0xaa774a412cedfd955ac2d886257bc4f00f16d622ec4b1d55d0c27122b93ec7e8', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:07:31.000Z'}}, {'blockNum': '0x9bfafa', 'uniqueId': '0xcde101316e0f0c2b2a6b2e2059f5927a7986d1f0dc3eb7c7e82efdbec89c1609:log:16', 'hash': '0xcde101316e0f0c2b2a6b2e2059f5927a7986d1f0dc3eb7c7e82efdbec89c1609', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x213423341652d5daaa4fcbee71641f874b9903ea', 'value': 338.95888712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07e45a3748', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:07:47.000Z'}}, {'blockNum': '0x9bfbc3', 'uniqueId': '0x89e2d24bd87543bd61d63b13e80ce72744bea090e80aab711254c980522a9d99:log:14', 'hash': '0x89e2d24bd87543bd61d63b13e80ce72744bea090e80aab711254c980522a9d99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x847c0d83f3f35a3d4eb8f121406c5445cb235264', 'value': 107.91089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028332f368', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:50:47.000Z'}}, {'blockNum': '0x9bfc53', 'uniqueId': '0x7bde4a7038e391c91be8994fd6dfde3a5037b890080d056f5e61f93d9a13242d:log:80', 'hash': '0x7bde4a7038e391c91be8994fd6dfde3a5037b890080d056f5e61f93d9a13242d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 114.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02a7abf8c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T03:24:26.000Z'}}, {'blockNum': '0x9bfc5b', 'uniqueId': '0x1593a1bc92e1a21208f6cff7a8dd62fef8b6ead230f47f1f1d8c556713f1beec:log:14', 'hash': '0x1593a1bc92e1a21208f6cff7a8dd62fef8b6ead230f47f1f1d8c556713f1beec', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xde75a7a52a7a68b2e14e168d4dfdda58208df304', 'value': 114.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02a7abf8c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T03:26:24.000Z'}}, {'blockNum': '0x9bfdbc', 'uniqueId': '0x705851dd64c871b3695c6328b2ede458d13f6414218a4243f3bf0d1358845398:log:76', 'hash': '0x705851dd64c871b3695c6328b2ede458d13f6414218a4243f3bf0d1358845398', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x5d1d240f781f1caa0771a047f31379cb36cc0ed3', 'value': 173.44137612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0409ca898c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:44:43.000Z'}}, {'blockNum': '0x9bfdd3', 'uniqueId': '0x627be615b1b0b2684fdefc4c993d96a1128b22a65201edc3489e7f2c41f6a449:log:12', 'hash': '0x627be615b1b0b2684fdefc4c993d96a1128b22a65201edc3489e7f2c41f6a449', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 259.509212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x060acba1f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:49:57.000Z'}}, {'blockNum': '0x9bfded', 'uniqueId': '0x5239eaa6267a906ab25312ee2fe403f65fc2689c68ed0db02e1c6b51be191fc6:log:137', 'hash': '0x5239eaa6267a906ab25312ee2fe403f65fc2689c68ed0db02e1c6b51be191fc6', 'from': '0x9276d54352c9bf8440a34cc98303d8141c9055be', 'to': '0xcd4ad53757e734dbb2b073e1b277471520f8617e', 'value': 1483.59965968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x228af16d10', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:54:59.000Z'}}, {'blockNum': '0x9bfe2d', 'uniqueId': '0xcdc281865bb168aba509f47be3ac94c1498a17ea8b02068e4ec091cf7735811c:log:154', 'hash': '0xcdc281865bb168aba509f47be3ac94c1498a17ea8b02068e4ec091cf7735811c', 'from': '0xf9b7818d61e7562e4636da7e7892d6d2ef8e525c', 'to': '0xa24c6a0df9e8581699056e19acdc46da70a3f291', 'value': 139.67965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03408e3b48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T05:09:54.000Z'}}, {'blockNum': '0x9bfebf', 'uniqueId': '0x89eb8014d73249e7c006ca9cf7f314b3a72e352835c9f77aa11719d77a8c747d:log:40', 'hash': '0x89eb8014d73249e7c006ca9cf7f314b3a72e352835c9f77aa11719d77a8c747d', 'from': '0xe569448c95e19bdfce0f50c0ef5c04b647e23050', 'to': '0x4314ede64153cf0be702514c2990a5f67b656202', 'value': 207.37079432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04d406b888', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T05:38:45.000Z'}}, {'blockNum': '0x9bff2c', 'uniqueId': '0xde56cf3bd16009a91a1083eba73bd937b5f8bbfa3542977c52687d8323034855:log:71', 'hash': '0xde56cf3bd16009a91a1083eba73bd937b5f8bbfa3542977c52687d8323034855', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf6e9ed8be6b06a20ceb4504b5b2654a099be0413', 'value': 7356.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xab48d49920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T06:05:52.000Z'}}, {'blockNum': '0x9c001f', 'uniqueId': '0x5e4dc95bd9828143bfccc0f5954bbfd570a4672311f535fb82800c4419dc2eef:log:118', 'hash': '0x5e4dc95bd9828143bfccc0f5954bbfd570a4672311f535fb82800c4419dc2eef', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'value': 3181.94460841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4a15de28a9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:00:42.000Z'}}, {'blockNum': '0x9c0038', 'uniqueId': '0x248c03acee1ef7a1a91d32b0496bc64ee160873c29249e95d15a659927beb215:log:153', 'hash': '0x248c03acee1ef7a1a91d32b0496bc64ee160873c29249e95d15a659927beb215', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xb2d553ab61ec7ec3d3df58d460fdcfef38b42192', 'value': 7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29b92700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:06:59.000Z'}}, {'blockNum': '0x9c00e1', 'uniqueId': '0xfbfaf4248e72b3570cfabb2b876a15d25e46b037e31092d14b5c03ff72d8ecf9:log:82', 'hash': '0xfbfaf4248e72b3570cfabb2b876a15d25e46b037e31092d14b5c03ff72d8ecf9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 106.12286332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02788aa37c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:47:20.000Z'}}, {'blockNum': '0x9c00e7', 'uniqueId': '0x649716641a2a5570be0f8d3d406ff781cb18f7311fbb7b1c4a4427222433b26a:log:163', 'hash': '0x649716641a2a5570be0f8d3d406ff781cb18f7311fbb7b1c4a4427222433b26a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbd62be0448ecf0f9a79eb09f2dcb75647b41bb5f', 'value': 106.12286332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02788aa37c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:48:51.000Z'}}, {'blockNum': '0x9c0121', 'uniqueId': '0x73d06fb2793b56fe784c7fb81220035c96414dd475fb850eb166dfba981991a0:log:24', 'hash': '0x73d06fb2793b56fe784c7fb81220035c96414dd475fb850eb166dfba981991a0', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x698fa6437475f3f86df33ea0cb612ad529954811', 'value': 108.31243952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028597aab0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:01:33.000Z'}}, {'blockNum': '0x9c0200', 'uniqueId': '0x847d61aa8b094d69d330a17d3fd4ae541d13802c60504b42029643d24b9f9d26:log:42', 'hash': '0x847d61aa8b094d69d330a17d3fd4ae541d13802c60504b42029643d24b9f9d26', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:51:23.000Z'}}, {'blockNum': '0x9c020b', 'uniqueId': '0x03345e0a69bdf4423c0c0893cebf39088f0637d30aa81846b112405570b38101:log:139', 'hash': '0x03345e0a69bdf4423c0c0893cebf39088f0637d30aa81846b112405570b38101', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xec4f69ea443bc2219dcb10cc8d007e4123a9ce6b', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:54:22.000Z'}}, {'blockNum': '0x9c02e6', 'uniqueId': '0xee6fb3f62eac86957c4647fc0e2b6f4cd9666d8e38ad3c8d24d7d3ccbd3ec943:log:165', 'hash': '0xee6fb3f62eac86957c4647fc0e2b6f4cd9666d8e38ad3c8d24d7d3ccbd3ec943', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x334ae73b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:42:16.000Z'}}, {'blockNum': '0x9c02e9', 'uniqueId': '0xca9cf0e6c511f9da8c363c13d18969f6d3253527aeb46c089384a3f05fbde5b7:log:4', 'hash': '0xca9cf0e6c511f9da8c363c13d18969f6d3253527aeb46c089384a3f05fbde5b7', 'from': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'to': '0x0c4fe355d6cb9de761afbc008cfa74c07711df9f', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:43:32.000Z'}}, {'blockNum': '0x9c02fb', 'uniqueId': '0x4e11b3d880a0286d25e25b7ac3a21c0919873bcd6e2d928a4d585cad02bc8c51:log:46', 'hash': '0x4e11b3d880a0286d25e25b7ac3a21c0919873bcd6e2d928a4d585cad02bc8c51', 'from': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'to': '0x4b16cc10e4e1c979fab50c4e67b81ec62ceb9c60', 'value': 2145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x31f1324100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:48:32.000Z'}}, {'blockNum': '0x9c0341', 'uniqueId': '0xd6040de59d2eff8c7dff43da2d262d06ebc934740125969bf071a42c5ab99343:log:22', 'hash': '0xd6040de59d2eff8c7dff43da2d262d06ebc934740125969bf071a42c5ab99343', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3dc044f6957c2cb036d9cde1153f724295dc5bf5', 'value': 8186.13821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbe992f9e48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:02:17.000Z'}}, {'blockNum': '0x9c035b', 'uniqueId': '0xc0ed033a3a9036139c6b1b3267e449f6e664528969577fdd6dbdc67b1911a576:log:10', 'hash': '0xc0ed033a3a9036139c6b1b3267e449f6e664528969577fdd6dbdc67b1911a576', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 38603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0382cbcf6b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:08:39.000Z'}}, {'blockNum': '0x9c037c', 'uniqueId': '0xb3ae67553cee762bf4e35502bfb6cd2f8d76b00854f98536f217465bf8341a7d:log:46', 'hash': '0xb3ae67553cee762bf4e35502bfb6cd2f8d76b00854f98536f217465bf8341a7d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'value': 1000.13375754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174943010a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:16:59.000Z'}}, {'blockNum': '0x9c0388', 'uniqueId': '0x69a214d5dec424cf06952e42e78dedc94556b01f675ba7f33599c4881aa47487:log:90', 'hash': '0x69a214d5dec424cf06952e42e78dedc94556b01f675ba7f33599c4881aa47487', 'from': '0x1fd7730672009e7ebbe31c01c6fb22d14950354c', 'to': '0xcde6edc4fc380c8fdda959437606eb82009b5456', 'value': 2001.13331511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e97af1d37', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:19:17.000Z'}}, {'blockNum': '0x9c03d5', 'uniqueId': '0x09fed3619eb39f4fdf1dae98281ae68a998561b888c7eff4a4903ec747f26187:log:4', 'hash': '0x09fed3619eb39f4fdf1dae98281ae68a998561b888c7eff4a4903ec747f26187', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:37:50.000Z'}}, {'blockNum': '0x9c0400', 'uniqueId': '0x78db6097c440b6b1c585a7f5615db8bf42e9a237f99792c52700ceed27830da5:log:38', 'hash': '0x78db6097c440b6b1c585a7f5615db8bf42e9a237f99792c52700ceed27830da5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'value': 3000.1115179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45da0ee1ae', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:46:07.000Z'}}, {'blockNum': '0x9c041f', 'uniqueId': '0x83b0f4f0374aa549d316d2f9c2574cddfb7046a29e23e9bb782a2c5044aa6fd7:log:12', 'hash': '0x83b0f4f0374aa549d316d2f9c2574cddfb7046a29e23e9bb782a2c5044aa6fd7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x168dd267b78d175024f70de1244a654f2909b0bb', 'value': 130.846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x030be726c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:52:52.000Z'}}, {'blockNum': '0x9c0420', 'uniqueId': '0x1917936160854817a34489ddf702806d344357b0c8664ebca54e690c195d5796:log:65', 'hash': '0x1917936160854817a34489ddf702806d344357b0c8664ebca54e690c195d5796', 'from': '0xe184a8d3a892930221284832d68c77f0d84b9382', 'to': '0x5ab1e75aeefa5883463e170d7229e5f51ece8ad1', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:52:56.000Z'}}, {'blockNum': '0x9c0459', 'uniqueId': '0xfb9ed49759798004346860dab88812ff919a8f364a46954da71330f75ea5a29b:log:203', 'hash': '0xfb9ed49759798004346860dab88812ff919a8f364a46954da71330f75ea5a29b', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:06:38.000Z'}}, {'blockNum': '0x9c04f3', 'uniqueId': '0xeba72424a744dff1539f35c8401150bcdc0a2aa1823aa11cd8290bb33c7ae286:log:74', 'hash': '0xeba72424a744dff1539f35c8401150bcdc0a2aa1823aa11cd8290bb33c7ae286', 'from': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'to': '0xc1eaeb22ac0f9c1022cc8e7866dc50fbf8c2bdd1', 'value': 45.53773145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x010f6d1059', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:39:19.000Z'}}, {'blockNum': '0x9c0517', 'uniqueId': '0x6128c13360ffe035b465958ac54f5ee326529ff7571205cae5a65492ddee9f24:log:67', 'hash': '0x6128c13360ffe035b465958ac54f5ee326529ff7571205cae5a65492ddee9f24', 'from': '0xec4f69ea443bc2219dcb10cc8d007e4123a9ce6b', 'to': '0x698fa6437475f3f86df33ea0cb612ad529954811', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:48:43.000Z'}}, {'blockNum': '0x9c05c5', 'uniqueId': '0x009f3f63ac7bb662aec3c3af80314c2d4c63394f151b801b264782516e5a3fef:log:9', 'hash': '0x009f3f63ac7bb662aec3c3af80314c2d4c63394f151b801b264782516e5a3fef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8df0a8d77e274e6fa79dd02c81a29e02b08f36ef', 'value': 2251.80299435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x346dcab0ab', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T12:29:33.000Z'}}, {'blockNum': '0x9c0633', 'uniqueId': '0x2158615eec41bdc2e95caefcb795ac437c7d161b5ef6e3df60728f1eaec8745e:log:148', 'hash': '0x2158615eec41bdc2e95caefcb795ac437c7d161b5ef6e3df60728f1eaec8745e', 'from': '0x18297afcbada55d7168598d197048bff5d0070ac', 'to': '0x0812341e41a6edfb3c34382d631f0617612ec50f', 'value': 1901.224067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2c442db32c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T12:53:25.000Z'}}, {'blockNum': '0x9c0655', 'uniqueId': '0xcc78d61464f75820f13862a3b22e8a98efda0a1ebae9f3af4c337a0ecfc42def:log:212', 'hash': '0xcc78d61464f75820f13862a3b22e8a98efda0a1ebae9f3af4c337a0ecfc42def', 'from': '0x414120ec6fd7d6ba58738c4e3149dd57e4216ca1', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 99.14647891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024ef58553', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:01:21.000Z'}}, {'blockNum': '0x9c065a', 'uniqueId': '0xa1fe0516399c38e080ee3e9587f131588be5348d0838df49221f45a7f15dd3db:log:38', 'hash': '0xa1fe0516399c38e080ee3e9587f131588be5348d0838df49221f45a7f15dd3db', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0812341e41a6edfb3c34382d631f0617612ec50f', 'value': 553.72107241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ce46f4de9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:02:35.000Z'}}, {'blockNum': '0x9c069b', 'uniqueId': '0x495065846a9994a8e006798a7dc31a216a068be9423ada5af169f2c8dcf2964a:log:30', 'hash': '0x495065846a9994a8e006798a7dc31a216a068be9423ada5af169f2c8dcf2964a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x15709a7060cd2190b76a74b73959114fd3fdfe1d', 'value': 391.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0920620380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:15:11.000Z'}}, {'blockNum': '0x9c072f', 'uniqueId': '0x982fc77537b19dbea065040c0a69dd3c3a25335106b604614c3ebcf2eb3fd93b:log:109', 'hash': '0x982fc77537b19dbea065040c0a69dd3c3a25335106b604614c3ebcf2eb3fd93b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 2962.837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44fbe27b20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:45:55.000Z'}}, {'blockNum': '0x9c0752', 'uniqueId': '0x9caff2ef68817514c1e8e213372a230b86de8a24c0c9a4d52cc3c41c1a756141:log:92', 'hash': '0x9caff2ef68817514c1e8e213372a230b86de8a24c0c9a4d52cc3c41c1a756141', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2c5aaf5100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:53:15.000Z'}}, {'blockNum': '0x9c075a', 'uniqueId': '0xe297911a83d22a0acd9af845d5660a9a6d88849616be36acc331797ae0c89cd8:log:169', 'hash': '0xe297911a83d22a0acd9af845d5660a9a6d88849616be36acc331797ae0c89cd8', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf648c64943c25bacb238b166bbc27ad4365d4927', 'value': 469.86850437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0af0a27085', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:55:59.000Z'}}, {'blockNum': '0x9c0765', 'uniqueId': '0x9c336b367dfdb92879c06b06367320d5066f37bb43e29cbf03a7893a57479b08:log:128', 'hash': '0x9c336b367dfdb92879c06b06367320d5066f37bb43e29cbf03a7893a57479b08', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0x0d5152803744465e358c4baaa7b5d9c022e9471d', 'value': 39.71990652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xecbfc47c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:59:53.000Z'}}, {'blockNum': '0x9c0775', 'uniqueId': '0x3eabd6eb0c5794b28471b2a277cc9314e39a899540ca4937f7b6debbbca3d426:log:69', 'hash': '0x3eabd6eb0c5794b28471b2a277cc9314e39a899540ca4937f7b6debbbca3d426', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x9ae2c02c243e3223402bbccbfcf77132e0b4b6fc', 'value': 773.45851918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12022c0a0e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:04:05.000Z'}}, {'blockNum': '0x9c077a', 'uniqueId': '0x7d621164130b2287b8271b4abba7b23e7887e18d49d62edf60602c3ece2dd4cf:log:161', 'hash': '0x7d621164130b2287b8271b4abba7b23e7887e18d49d62edf60602c3ece2dd4cf', 'from': '0x0d5152803744465e358c4baaa7b5d9c022e9471d', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 39.71990652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xecbfc47c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:05:04.000Z'}}, {'blockNum': '0x9c07ec', 'uniqueId': '0xf14701ff02c2f748da8ebfa78413a0f0102154393f8d00f1852a192a02cc319a:log:167', 'hash': '0xf14701ff02c2f748da8ebfa78413a0f0102154393f8d00f1852a192a02cc319a', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5fa5968c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:31:05.000Z'}}, {'blockNum': '0x9c081a', 'uniqueId': '0x54313e64dc44fb1baeafd5328960a0810cc190c4569276c46aa9eb3edcd6265d:log:62', 'hash': '0x54313e64dc44fb1baeafd5328960a0810cc190c4569276c46aa9eb3edcd6265d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb47f2e40da0e388e1a8776334ec72924541cb268', 'value': 35560.381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033bf4634420', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:43:15.000Z'}}, {'blockNum': '0x9c084d', 'uniqueId': '0x8c536d92a3ff02e28ecd4302b749594a3d55a33e2088b2cdbe70093139ea27b9:log:71', 'hash': '0x8c536d92a3ff02e28ecd4302b749594a3d55a33e2088b2cdbe70093139ea27b9', 'from': '0x6f4a21a9dd493c1c6958f66dddbdfee92927ad38', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x067ef83700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:57:57.000Z'}}, {'blockNum': '0x9c0863', 'uniqueId': '0x8657148d93dc815a20abe7b765509c60046a0b8a5a42512de98f14f16694c0b0:log:25', 'hash': '0x8657148d93dc815a20abe7b765509c60046a0b8a5a42512de98f14f16694c0b0', 'from': '0x414120ec6fd7d6ba58738c4e3149dd57e4216ca1', 'to': '0xf3c1c794cf73d4d4ccbd97f2bcadee31d39a6847', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:03:04.000Z'}}, {'blockNum': '0x9c0868', 'uniqueId': '0x4857fc1638b7df999dca58c4bb3cd69036c387bd6d03e43be1f16bce159799a5:log:0', 'hash': '0x4857fc1638b7df999dca58c4bb3cd69036c387bd6d03e43be1f16bce159799a5', 'from': '0xf3c1c794cf73d4d4ccbd97f2bcadee31d39a6847', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:04:28.000Z'}}, {'blockNum': '0x9c08c7', 'uniqueId': '0x2858034c4dadbdf5b8d59f34a659f16df20e3bea1862e646455b0892c13ff980:log:31', 'hash': '0x2858034c4dadbdf5b8d59f34a659f16df20e3bea1862e646455b0892c13ff980', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24ff2d9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:26:03.000Z'}}, {'blockNum': '0x9c08d4', 'uniqueId': '0x6b928bed43a5ad0d00d248cc29ae1bea01586c42d8e8cadfd0d07305062a2ca6:log:52', 'hash': '0x6b928bed43a5ad0d00d248cc29ae1bea01586c42d8e8cadfd0d07305062a2ca6', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2962.837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44fbe27b20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:29:27.000Z'}}, {'blockNum': '0x9c0911', 'uniqueId': '0x3395bcd85ce2a76e733f17952b27a802e9d42dd3fde3bda2101323185aa013fb:log:58', 'hash': '0x3395bcd85ce2a76e733f17952b27a802e9d42dd3fde3bda2101323185aa013fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 823.67125897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x132d769989', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:40:02.000Z'}}, {'blockNum': '0x9c0919', 'uniqueId': '0x58062af473099d6f618cd073ab4c491bd5761ffc1e8d9f7a3ea5a40c3db25272:log:117', 'hash': '0x58062af473099d6f618cd073ab4c491bd5761ffc1e8d9f7a3ea5a40c3db25272', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x91d7ad5b71150f754a03747b9e4c4d17b3a0ed4d', 'value': 823.67125897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x132d769989', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:42:15.000Z'}}, {'blockNum': '0x9c092d', 'uniqueId': '0x9582217b1cbaf3a6d847dae35ad37fd128cfc43a587c8b273e93607fd353c6df:log:37', 'hash': '0x9582217b1cbaf3a6d847dae35ad37fd128cfc43a587c8b273e93607fd353c6df', 'from': '0x2be9dd83cf54d2d0b81e2e7efbb78e8e2b78700e', 'to': '0x86debe91fefbda4001fcdc8b3da72b0e4cdab0d4', 'value': 21885.03033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8cf224a8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:45:30.000Z'}}, {'blockNum': '0x9c0986', 'uniqueId': '0xe53e67e01c117e73ee1f8c5560fa7e24c822e3c549078dc88546e74abe2a3a21:log:123', 'hash': '0xe53e67e01c117e73ee1f8c5560fa7e24c822e3c549078dc88546e74abe2a3a21', 'from': '0x106f9c54536d33bdba8b371fbab696e86f51f941', 'to': '0xf7c8adddc63b1df0de12b5307126117f2afd5c17', 'value': 1193.69923701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1bcb007c75', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:59:05.000Z'}}, {'blockNum': '0x9c09a5', 'uniqueId': '0x3b41264ac0af01bb7e22b0efcc9a62c1928245038fecb310c833944877ca9234:log:1', 'hash': '0x3b41264ac0af01bb7e22b0efcc9a62c1928245038fecb310c833944877ca9234', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 3685.287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x55ce05b260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:05:43.000Z'}}, {'blockNum': '0x9c09a5', 'uniqueId': '0xaf5f1750a1277c2e27c6c3f953e38558e84b960623afd9e0781a935aff8d26ae:log:2', 'hash': '0xaf5f1750a1277c2e27c6c3f953e38558e84b960623afd9e0781a935aff8d26ae', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 528.869719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c504f25fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:05:43.000Z'}}, {'blockNum': '0x9c09ab', 'uniqueId': '0xe0a635ad87524b166978ac5a4570fc7945061aaf227a13d1ce735de7852e1694:log:27', 'hash': '0xe0a635ad87524b166978ac5a4570fc7945061aaf227a13d1ce735de7852e1694', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 590.67657473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0dc0b4ed01', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:06:31.000Z'}}, {'blockNum': '0x9c09ab', 'uniqueId': '0x20e038ed04c94d8e219ed1b3ded4d2e6758a1aa75ba49da11b2b271941870090:log:46', 'hash': '0x20e038ed04c94d8e219ed1b3ded4d2e6758a1aa75ba49da11b2b271941870090', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x275f253b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:06:31.000Z'}}, {'blockNum': '0x9c09ae', 'uniqueId': '0xaf8a1c73c05b7e539c89c7d1849f00eeea297aebd3b4e9a11516881a254b68d5:log:3', 'hash': '0xaf8a1c73c05b7e539c89c7d1849f00eeea297aebd3b4e9a11516881a254b68d5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe55494e7434408e7074eb03d8ca124f9151fce1d', 'value': 1837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ac55f8d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:07:34.000Z'}}, {'blockNum': '0x9c09b2', 'uniqueId': '0x02d85876c7c7077c46c8c95d57391d82e83bd56604dfc161d6827879a294dea7:log:3', 'hash': '0x02d85876c7c7077c46c8c95d57391d82e83bd56604dfc161d6827879a294dea7', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 11.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x42758cc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:36.000Z'}}, {'blockNum': '0x9c09b2', 'uniqueId': '0xc11da8e7664431c78265d44517552dc7ddf822123b93336dcb33ff5e9541663c:log:134', 'hash': '0xc11da8e7664431c78265d44517552dc7ddf822123b93336dcb33ff5e9541663c', 'from': '0x54a5a4a492048080000ef50f90c69810716b207d', 'to': '0xd137e8cc2a71c4d9e28940d21cedbd80b7506981', 'value': 218.575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0516cefb60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:36.000Z'}}, {'blockNum': '0x9c09b4', 'uniqueId': '0xaccfc11f03ff851d6cde9b19033abe47894fed892b6f738635669f4841e6c057:log:50', 'hash': '0xaccfc11f03ff851d6cde9b19033abe47894fed892b6f738635669f4841e6c057', 'from': '0xafb8cc48ca7c4aa79788912f564398434c8af68e', 'to': '0xa06a9a3cd5a748e6786d53c605507d68ef02315f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:49.000Z'}}, {'blockNum': '0x9c09b5', 'uniqueId': '0x64a904d0386a331e481b3b53a4fd5b33ab1f20614cc1347c925d7ed4a6450775:log:44', 'hash': '0x64a904d0386a331e481b3b53a4fd5b33ab1f20614cc1347c925d7ed4a6450775', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x90c72d9f8a299896b295b04813a9526c584fd7bc', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:04.000Z'}}, {'blockNum': '0x9c09b7', 'uniqueId': '0xf05b9c71d80e64e1dd222d5b25d3f2cfa129cb394bbd364fc2a8764312fda5b1:log:2', 'hash': '0xf05b9c71d80e64e1dd222d5b25d3f2cfa129cb394bbd364fc2a8764312fda5b1', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf122f0d45acf90e9d494c04eeb0719bab65b7be8', 'value': 7925.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb88767a8a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:09.000Z'}}, {'blockNum': '0x9c09b8', 'uniqueId': '0xe6353e3cea72af11ef8c3da512b73a7793ad2a86353079cd07e8e210f637f553:log:112', 'hash': '0xe6353e3cea72af11ef8c3da512b73a7793ad2a86353079cd07e8e210f637f553', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf648c64943c25bacb238b166bbc27ad4365d4927', 'value': 40.40922022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf0db93a6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:11.000Z'}}, {'blockNum': '0x9c09bc', 'uniqueId': '0x56796eb5db0f95cb589452f3678b845185019b1076381febf542252723c96b5e:log:39', 'hash': '0x56796eb5db0f95cb589452f3678b845185019b1076381febf542252723c96b5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'value': 104.25775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026d6cb398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:18.000Z'}}, {'blockNum': '0x9c09bc', 'uniqueId': '0x42687dcfdd945d447072d6b48f0330a67d3cca2ecdb1104f064caed684c22c59:log:56', 'hash': '0x42687dcfdd945d447072d6b48f0330a67d3cca2ecdb1104f064caed684c22c59', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'value': 1345.16605763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1f51d08343', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:18.000Z'}}, {'blockNum': '0x9c09be', 'uniqueId': '0xb8ce97c94f67e4788d1dede4df4e24a785df9b2ea4f788e3ac55f8cc5f61778b:log:24', 'hash': '0xb8ce97c94f67e4788d1dede4df4e24a785df9b2ea4f788e3ac55f8cc5f61778b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 7304.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaa14e51dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:24.000Z'}}, {'blockNum': '0x9c09c1', 'uniqueId': '0xdd07436167468e1bd68f1fc46c98b43d125962d81a120c04dde4d62e9e08f8cd:log:107', 'hash': '0xdd07436167468e1bd68f1fc46c98b43d125962d81a120c04dde4d62e9e08f8cd', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x8752f02f5d99c80f6e4948bba6a0bfc8e9df0fbd', 'value': 1345.16605763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1f51d08343', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:11:10.000Z'}}, {'blockNum': '0x9c09c4', 'uniqueId': '0xc97193efe004751246addc214e9f09898a31b7f11341da0b3b3c2edf0d3c135b:log:11', 'hash': '0xc97193efe004751246addc214e9f09898a31b7f11341da0b3b3c2edf0d3c135b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7039b74e59ecaed4d7501016bea9f7805c137b98', 'value': 215.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05059cd240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:00.000Z'}}, {'blockNum': '0x9c09c4', 'uniqueId': '0x70b992094772629cab822f46e179563d375c5354ca527970c9c40e0105d2413f:log:14', 'hash': '0x70b992094772629cab822f46e179563d375c5354ca527970c9c40e0105d2413f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1432.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x215d39f480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:00.000Z'}}, {'blockNum': '0x9c09c8', 'uniqueId': '0x09834911e70eff47b8bb9c62b2690e8f8ce908be1e0faee437f2e15e464d82cd:log:57', 'hash': '0x09834911e70eff47b8bb9c62b2690e8f8ce908be1e0faee437f2e15e464d82cd', 'from': '0x7039b74e59ecaed4d7501016bea9f7805c137b98', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 215.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05059cd240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:46.000Z'}}, {'blockNum': '0x9c09c9', 'uniqueId': '0xaee7c2f2fef5b176f618e2bf65afee8f1370b13cc071823612d2a90fdb895109:log:4', 'hash': '0xaee7c2f2fef5b176f618e2bf65afee8f1370b13cc071823612d2a90fdb895109', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'value': 811.0148356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12e2066e28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:00.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x7bc8a0482d14d1709644c2bd95162e5349ec751af776b081d18ffef214fc42f8:log:10', 'hash': '0x7bc8a0482d14d1709644c2bd95162e5349ec751af776b081d18ffef214fc42f8', 'from': '0xb12157c9d242ab7e0560ba8aef0e1b75caa8b6d8', 'to': '0x8fc5a4f0ee65ab422ba1bc27094103318d61c8a2', 'value': 1693.264701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x276ca4e3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x66305fa9f703f9285b9bc51445b794c3d8b8d688f15fb8b67b455ca5ee977162:log:32', 'hash': '0x66305fa9f703f9285b9bc51445b794c3d8b8d688f15fb8b67b455ca5ee977162', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x328c2b1b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x7c2a1324e332453af6f8a2bfde9dec35ad488b94a2dc50f4ec16ed1fcc83d842:log:90', 'hash': '0x7c2a1324e332453af6f8a2bfde9dec35ad488b94a2dc50f4ec16ed1fcc83d842', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x8752f02f5d99c80f6e4948bba6a0bfc8e9df0fbd', 'value': 811.0148356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12e2066e28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09ce', 'uniqueId': '0xd057450683858abfe502b84c0454c1065f191939d5049f82753ab004a63a948d:log:2', 'hash': '0xd057450683858abfe502b84c0454c1065f191939d5049f82753ab004a63a948d', 'from': '0x8fc5a4f0ee65ab422ba1bc27094103318d61c8a2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1693.264701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x276ca4e3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:05.000Z'}}, {'blockNum': '0x9c09cf', 'uniqueId': '0x4f169e1ebf04fab6c9c89714c5a8f3b20e9cde34fb2397570112502ceeffc72a:log:22', 'hash': '0x4f169e1ebf04fab6c9c89714c5a8f3b20e9cde34fb2397570112502ceeffc72a', 'from': '0x72e5263ff33d2494692d7f94a758aa9f82062f73', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 3374.98636507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4e947c80db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:12.000Z'}}, {'blockNum': '0x9c09cf', 'uniqueId': '0xa4ed05e078b59e9fff6cd93aed656e224a7b2dc2a9fd8ce15557b2a898540d95:log:32', 'hash': '0xa4ed05e078b59e9fff6cd93aed656e224a7b2dc2a9fd8ce15557b2a898540d95', 'from': '0x06450acadae3710f5d6d49993af84cda952ec72e', 'to': '0x28b5966e6b106fee16be8015b932ef73648cb957', 'value': 1000.15614622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749652a9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:12.000Z'}}, {'blockNum': '0x9c09d1', 'uniqueId': '0x7af50a561d5efb8625e936d2cbfbfc7025d2cc111b0574f14c641b77db231c3a:log:18', 'hash': '0x7af50a561d5efb8625e936d2cbfbfc7025d2cc111b0574f14c641b77db231c3a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 3338.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4db80c5de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:40.000Z'}}, {'blockNum': '0x9c09d5', 'uniqueId': '0x07b25f8887decc6aab1f17ea2e740ed31475a1aaf8436eb833ecfeff699d1e89:log:0', 'hash': '0x07b25f8887decc6aab1f17ea2e740ed31475a1aaf8436eb833ecfeff699d1e89', 'from': '0x28b5966e6b106fee16be8015b932ef73648cb957', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1000.15614622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749652a9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:16:06.000Z'}}, {'blockNum': '0x9c09d9', 'uniqueId': '0x72c87a3c1650da41ee2b0ec3116aa5aa6cd8d9f28cbc7b3110942f39260c4980:log:57', 'hash': '0x72c87a3c1650da41ee2b0ec3116aa5aa6cd8d9f28cbc7b3110942f39260c4980', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'value': 139.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342588780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:16:39.000Z'}}, {'blockNum': '0x9c09dc', 'uniqueId': '0xa78c1fb9d23a7cc2dab90c0c059951b8a01e3abaef6b26586c451dd127f6a19f:log:74', 'hash': '0xa78c1fb9d23a7cc2dab90c0c059951b8a01e3abaef6b26586c451dd127f6a19f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb1c0e08d9f85e373938bc5a3ee0f4f462da11f7a', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:17:03.000Z'}}, {'blockNum': '0x9c09df', 'uniqueId': '0x9bb4fd9a0366b0e50ddbe3c5149b4c26ea1343b6a4586f7e85e42a8b7ac1cc93:log:22', 'hash': '0x9bb4fd9a0366b0e50ddbe3c5149b4c26ea1343b6a4586f7e85e42a8b7ac1cc93', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x5934e7eb0d5229560879e76ef4252117458d89dc', 'value': 116.7013097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b798111a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:18:00.000Z'}}, {'blockNum': '0x9c09e1', 'uniqueId': '0x7dcc62ae8d559cd6ce9049f7b7e46a12a6c32638a54e1e580b9838639d04b8ff:log:46', 'hash': '0x7dcc62ae8d559cd6ce9049f7b7e46a12a6c32638a54e1e580b9838639d04b8ff', 'from': '0xb1c0e08d9f85e373938bc5a3ee0f4f462da11f7a', 'to': '0xf3fc538c9a8c6b86bc158055ba84448f23819fa9', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:18:33.000Z'}}, {'blockNum': '0x9c09f1', 'uniqueId': '0x72bbe95fd04d9b855a6fcf59a712392b881e5d77cd718b6bb91bd04863cf452c:log:25', 'hash': '0x72bbe95fd04d9b855a6fcf59a712392b881e5d77cd718b6bb91bd04863cf452c', 'from': '0xa7dc0fd1bffe36874c3d94c2d3d3ee6e30ab48c5', 'to': '0xa5d4827cce6f52f776e5b96e2a46eb8e87d27ea5', 'value': 630.92936319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0eb0a1ce7f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:21:25.000Z'}}, {'blockNum': '0x9c09f4', 'uniqueId': '0xb0c1eb08875aff4393bf977f4eaad39b5aa92c6cd43f094101a18cf121cc237b:log:33', 'hash': '0xb0c1eb08875aff4393bf977f4eaad39b5aa92c6cd43f094101a18cf121cc237b', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0xa84460d2bd20f37adeb38cf1c26dfd1a2b868a4a', 'value': 405.451515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0970adea0c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:21:42.000Z'}}, {'blockNum': '0x9c09f8', 'uniqueId': '0x69899f7ec0c6bd717ca81dba5f770d3187a466a93ed43d498226cfac0f57e1e8:log:161', 'hash': '0x69899f7ec0c6bd717ca81dba5f770d3187a466a93ed43d498226cfac0f57e1e8', 'from': '0xc4ca8fe6ddb499dcf2f6a7eae8909345413bcb4c', 'to': '0x926cf35549c98e7fd0e7b2419753c33f0957263b', 'value': 5555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8156615300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:09.000Z'}}, {'blockNum': '0x9c09fa', 'uniqueId': '0x1a7d3effae33ce9891543f2a296886388b990cfdcf17371ae082a9bdab33385b:log:30', 'hash': '0x1a7d3effae33ce9891543f2a296886388b990cfdcf17371ae082a9bdab33385b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x39589fbf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:21.000Z'}}, {'blockNum': '0x9c09fa', 'uniqueId': '0xea8a2c4ff8c2966f464ce1399d65bef82319ea71b9fb0f279228bb8cca0e9d89:log:70', 'hash': '0xea8a2c4ff8c2966f464ce1399d65bef82319ea71b9fb0f279228bb8cca0e9d89', 'from': '0x90c72d9f8a299896b295b04813a9526c584fd7bc', 'to': '0xff70c95dbb3e6d63221e7f420948b78b97df6c26', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:21.000Z'}}, {'blockNum': '0x9c09ff', 'uniqueId': '0xf0e5754b8c107dbec21de9a445794155dd95f5f7b520ef80258418f0ff874633:log:61', 'hash': '0xf0e5754b8c107dbec21de9a445794155dd95f5f7b520ef80258418f0ff874633', 'from': '0x43bacfb2e5c522def447b0b75c9fe532948e1541', 'to': '0x3d5618d80bda015cc644b500167f2518b2f6eed7', 'value': 1504.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2304fc50e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:24:21.000Z'}}, {'blockNum': '0x9c0a0e', 'uniqueId': '0xed850938a97e2bca650e97b4c314222ee80dd149d746a9cdd77c1c135e06dffe:log:31', 'hash': '0xed850938a97e2bca650e97b4c314222ee80dd149d746a9cdd77c1c135e06dffe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb4cf686ea7a0e1cbc83c6d922106c4df5249ce43', 'value': 74.895944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01be6a2420', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:28.000Z'}}, {'blockNum': '0x9c0a0f', 'uniqueId': '0xad89dae06d5f4d07bc39ce0f3e7bd937cbf5073a52a09af1f37ba84eea049156:log:32', 'hash': '0xad89dae06d5f4d07bc39ce0f3e7bd937cbf5073a52a09af1f37ba84eea049156', 'from': '0x0e1d7ef634df68c59cb0a91125c7669201649d26', 'to': '0xc8093f5232ac6be142a3704e95834df71dc69fa6', 'value': 8204.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbf0406ad60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:49.000Z'}}, {'blockNum': '0x9c0a0f', 'uniqueId': '0x06aa430fbb97e70b65ed9c4181c42ce6a2e1fe531efe47682af30c0b4ea7d0ba:log:97', 'hash': '0x06aa430fbb97e70b65ed9c4181c42ce6a2e1fe531efe47682af30c0b4ea7d0ba', 'from': '0x2257a0ad17d3da25928452f3eb13012291a5325f', 'to': '0x5d2914536b1e50412a166f8fddf67121f66d34ca', 'value': 147.55518404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036f7f57c4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:49.000Z'}}, {'blockNum': '0x9c0a1c', 'uniqueId': '0x60b8d4d93caf788dbfa2c8a380dc57d8a389063ded26a2d46c0686d0dcffbcb7:log:13', 'hash': '0x60b8d4d93caf788dbfa2c8a380dc57d8a389063ded26a2d46c0686d0dcffbcb7', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1432.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x215d39f480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:29:22.000Z'}}, {'blockNum': '0x9c0a1d', 'uniqueId': '0xe7a4925231c742ece41fa7f728d40fac142c0686729aa9c69a5d6d599c9b6003:log:120', 'hash': '0xe7a4925231c742ece41fa7f728d40fac142c0686729aa9c69a5d6d599c9b6003', 'from': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 139.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342588780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:29:45.000Z'}}, {'blockNum': '0x9c0a23', 'uniqueId': '0xf4ad37f12132d9668cb70be75219480f5805ce17b596d352f8fe8f9b75a260e9:log:15', 'hash': '0xf4ad37f12132d9668cb70be75219480f5805ce17b596d352f8fe8f9b75a260e9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 213.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb6b9180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:30:58.000Z'}}, {'blockNum': '0x9c0a23', 'uniqueId': '0x5c116eeb01f97b07cf4129fe776b41621c27ae8f4e41a71e0f9a7631ad27ff96:log:16', 'hash': '0x5c116eeb01f97b07cf4129fe776b41621c27ae8f4e41a71e0f9a7631ad27ff96', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'value': 433.849719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a19f2227c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:30:58.000Z'}}, {'blockNum': '0x9c0a24', 'uniqueId': '0x150d38679fe114bca7f0c49cd7263b5220dc58a3c7fca622a54c4f3585c28d98:log:126', 'hash': '0x150d38679fe114bca7f0c49cd7263b5220dc58a3c7fca622a54c4f3585c28d98', 'from': '0x926cf35549c98e7fd0e7b2419753c33f0957263b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87cf63a900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:31:07.000Z'}}, {'blockNum': '0x9c0a25', 'uniqueId': '0x429e0522f456afc5753121925087c5264f77376bbdce3de70ccc6054d9863089:log:151', 'hash': '0x429e0522f456afc5753121925087c5264f77376bbdce3de70ccc6054d9863089', 'from': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3374.98636507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4e947c80db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:31:13.000Z'}}, {'blockNum': '0x9c0a29', 'uniqueId': '0x75df4c06aea860a3c8204a8a7fbc494ec593dec9746b7f0357a91d651303f07e:log:68', 'hash': '0x75df4c06aea860a3c8204a8a7fbc494ec593dec9746b7f0357a91d651303f07e', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x24e82e47e44425200ebc56b328cf745456b46cf2', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:32:40.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x4e132f6bc69faa49e0c9e6b4830dd21ad704f5614485b76e0a4eb28e48d62786:log:49', 'hash': '0x4e132f6bc69faa49e0c9e6b4830dd21ad704f5614485b76e0a4eb28e48d62786', 'from': '0x24e82e47e44425200ebc56b328cf745456b46cf2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x18313b5a9d6f2ca433c83a1dc4064002263c7f682cf69a5d484a7a9388b66df6:log:63', 'hash': '0x18313b5a9d6f2ca433c83a1dc4064002263c7f682cf69a5d484a7a9388b66df6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 3099.785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x482c288ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x29a18f105e78a3be1bc57b0c473f55411299145369a76ac05d6273e0be6c8037:log:64', 'hash': '0x29a18f105e78a3be1bc57b0c473f55411299145369a76ac05d6273e0be6c8037', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1429.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x214b585180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0xad70fab61f21423eb5e9a30df33d6a2e71cafc02101f863369e11723ee17085c:log:65', 'hash': '0xad70fab61f21423eb5e9a30df33d6a2e71cafc02101f863369e11723ee17085c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 452.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a8bf8a080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0xcb7681c7521516a21383c367cfcb5e57245119f53af0a80160695a485c7bcbcc:log:78', 'hash': '0xcb7681c7521516a21383c367cfcb5e57245119f53af0a80160695a485c7bcbcc', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x660be3721b97db19c56af5c487f5df6fe23ac4b4', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2b', 'uniqueId': '0x474192de9c1cd263a49a0bb7e163c715a2290af3a594d9c65a6124d0a3602218:log:52', 'hash': '0x474192de9c1cd263a49a0bb7e163c715a2290af3a594d9c65a6124d0a3602218', 'from': '0x660be3721b97db19c56af5c487f5df6fe23ac4b4', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:22.000Z'}}, {'blockNum': '0x9c0a2b', 'uniqueId': '0xc3e2c33a1dc678c0c6b330d196dddfda172417cec8dcbf4c52f528f110e20902:log:129', 'hash': '0xc3e2c33a1dc678c0c6b330d196dddfda172417cec8dcbf4c52f528f110e20902', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x0e62e4f3b5f5a32d108e73037a7900686291c6cd', 'value': 3467.9610187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x50bea890ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:22.000Z'}}, {'blockNum': '0x9c0a2d', 'uniqueId': '0x5a41af836586c43347b8bb88a77aefcc1d1b790e33915890a7127cfbb55b5eb2:log:6', 'hash': '0x5a41af836586c43347b8bb88a77aefcc1d1b790e33915890a7127cfbb55b5eb2', 'from': '0x0e62e4f3b5f5a32d108e73037a7900686291c6cd', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3467.9610187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x50bea890ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:34:26.000Z'}}, {'blockNum': '0x9c0a2d', 'uniqueId': '0xb3d65cad94513535450e8676c1e9fc643d8b4c738d2c720f97e17f8f63f6e102:log:36', 'hash': '0xb3d65cad94513535450e8676c1e9fc643d8b4c738d2c720f97e17f8f63f6e102', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xae5432464b0dcbbb596ac664f49d6d0ea883b0be', 'value': 1790.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29ad59c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:34:26.000Z'}}, {'blockNum': '0x9c0a2e', 'uniqueId': '0xc57b5e13238b26425a7de269951ba2d68821c595d535b2d628a5e8acf711c493:log:99', 'hash': '0xc57b5e13238b26425a7de269951ba2d68821c595d535b2d628a5e8acf711c493', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 289.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c06a5d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:35:14.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xca1a7ac54adde72f1a0f26d06e2b9948c65a02fd48ae607a48d9263c803cfb75:log:6', 'hash': '0xca1a7ac54adde72f1a0f26d06e2b9948c65a02fd48ae607a48d9263c803cfb75', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 780.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x122d003680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0x066240a110abc2408ec928384180c6d80bffd610f2bab8553d6e4837ec72955a:log:8', 'hash': '0x066240a110abc2408ec928384180c6d80bffd610f2bab8553d6e4837ec72955a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x15709a7060cd2190b76a74b73959114fd3fdfe1d', 'value': 106.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027da68680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xc5a8225b45299ef369b28a29f7181ac11a9902f3add090b0a230ca2a7ce68437:log:9', 'hash': '0xc5a8225b45299ef369b28a29f7181ac11a9902f3add090b0a230ca2a7ce68437', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 1820.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a65e2f880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xe8fda1c64b7e921c3c07af4bee107e2a209fc4b41a515dec8413d84aa59b652e:log:14', 'hash': '0xe8fda1c64b7e921c3c07af4bee107e2a209fc4b41a515dec8413d84aa59b652e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 871.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x144d67e380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xe77041d02e655b48d1e6898c38a522987d863f1665ecd92993e9f18a76a9c433:log:15', 'hash': '0xe77041d02e655b48d1e6898c38a522987d863f1665ecd92993e9f18a76a9c433', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 8290.76742325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc108d320b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0xf3d5c6c8b33c2089a50f8377eb84dc598d9631f2770ccda80d92b7b4e91c8a69:log:34', 'hash': '0xf3d5c6c8b33c2089a50f8377eb84dc598d9631f2770ccda80d92b7b4e91c8a69', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 780.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x122d003680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0xb755a62d3f4e0e1eb0818d571b8428e280770fbbda82a7ab5007bd248db1bc11:log:35', 'hash': '0xb755a62d3f4e0e1eb0818d571b8428e280770fbbda82a7ab5007bd248db1bc11', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 8290.76742325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc108d320b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0x60cd0dd87a27a0cfa4e46aed6fd0a1370f8a37cf7f3b640605c25a3b48c64072:log:51', 'hash': '0x60cd0dd87a27a0cfa4e46aed6fd0a1370f8a37cf7f3b640605c25a3b48c64072', 'from': '0x91bbeb418a36ff9e238d1c5b4e02efb35077e18c', 'to': '0x1a0d6bb7c147014a2c5e0ea446180e2b797e8ec6', 'value': 1635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26115c0300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0xd5d1eae07e6d6af063ddafddc26e860251901bf172706244a2d8f1d28b9b1964:log:112', 'hash': '0xd5d1eae07e6d6af063ddafddc26e860251901bf172706244a2d8f1d28b9b1964', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'value': 136.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033076e480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x6fd6cb09958b9533ac60002a77a698b18bee4727ad133cba3bfeb9b6654e33ed:log:113', 'hash': '0x6fd6cb09958b9533ac60002a77a698b18bee4727ad133cba3bfeb9b6654e33ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbdaf17832a7141b591d9407490328fa5df364cb5', 'value': 242.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a6ceb0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x1e2bce45e5d1bd2d4d40d1ab528c5be2cdd46262161cf6bd770c65208b32256c:log:114', 'hash': '0x1e2bce45e5d1bd2d4d40d1ab528c5be2cdd46262161cf6bd770c65208b32256c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x83f5f66a111a446d29bc28c82b292b42cbe892ef', 'value': 3.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17b8ff80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x2cf126b70436ded34755d8858b2b1d72c47b98fea69223a268c0f70921aa9453:log:115', 'hash': '0x2cf126b70436ded34755d8858b2b1d72c47b98fea69223a268c0f70921aa9453', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x74f7477556d7b099ceb5781d5a7a109947b72a15', 'value': 1990.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e5b2a6280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x8eba1126ecc4828130478c1b08dad3595b4b6b30b7ed3e0796c97eff76413593:log:116', 'hash': '0x8eba1126ecc4828130478c1b08dad3595b4b6b30b7ed3e0796c97eff76413593', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1e580bafb4649412d0c4fe1611d58d31bb3135f2', 'value': 1976.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e07d38bc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x9829954cd8d7531ed341faf8080b5a820127670edc21f785dbd34807046fec02:log:119', 'hash': '0x9829954cd8d7531ed341faf8080b5a820127670edc21f785dbd34807046fec02', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x93c476aa875bfb62b5e776ce0ae48b47926e36c2', 'value': 75.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c467bc20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a44', 'uniqueId': '0x3b8f524c484080f8d76763e11437b8b96ff232bb9fcafe8a593e7f94f2d622a5:log:48', 'hash': '0x3b8f524c484080f8d76763e11437b8b96ff232bb9fcafe8a593e7f94f2d622a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x639928b207057fbd1eba5fa915d3d9951a48a62d', 'value': 451.77695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a84cced39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:40:43.000Z'}}, {'blockNum': '0x9c0a44', 'uniqueId': '0x65e26edc29d0e084de485be05ec62ba184b62f4538f775b49c70eb48a321de11:log:50', 'hash': '0x65e26edc29d0e084de485be05ec62ba184b62f4538f775b49c70eb48a321de11', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'value': 474.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b0f19f680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:40:43.000Z'}}, {'blockNum': '0x9c0a45', 'uniqueId': '0x34728c79314fcc55e0778bb254814f47a84fee4e544b311adafe43f13a7a9bbf:log:84', 'hash': '0x34728c79314fcc55e0778bb254814f47a84fee4e544b311adafe43f13a7a9bbf', 'from': '0xa8c4b9f13c5da3c08901ae1e907fb89c5f75f605', 'to': '0xee83d407ea7b42b12e3871c0a2b84ff196522e32', 'value': 52.29109486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0137ade0ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:41:06.000Z'}}, {'blockNum': '0x9c0a46', 'uniqueId': '0xf3139d29d13bf6eafa9b9eb186c58aa9dc9c1649e83096af37a9c33948ed1455:log:2', 'hash': '0xf3139d29d13bf6eafa9b9eb186c58aa9dc9c1649e83096af37a9c33948ed1455', 'from': '0xee83d407ea7b42b12e3871c0a2b84ff196522e32', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 52.29109486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0137ade0ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:41:39.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xfeeb2dcce043573dd775e21a0ced1d1d505a7cfc60456441992c33e59ed2bde2:log:98', 'hash': '0xfeeb2dcce043573dd775e21a0ced1d1d505a7cfc60456441992c33e59ed2bde2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xaca27a35838da5421fe925eb621a7679d6d2bdde', 'value': 889.652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14b6bd3880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xa53f9267c6d3e7c8df6f0ad0e9157e213a54b10d177d791293457b0637e05827:log:99', 'hash': '0xa53f9267c6d3e7c8df6f0ad0e9157e213a54b10d177d791293457b0637e05827', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 145.114595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0360f34cac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xa66ac49c0aeca1ce0666b49993c4f106686f6490e0619ec4bf9ab4e6b6204e89:log:105', 'hash': '0xa66ac49c0aeca1ce0666b49993c4f106686f6490e0619ec4bf9ab4e6b6204e89', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x67e5f5db4c866f1b5b31ac097179bcd85a01aa0e', 'value': 2206.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3362a03a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0x2f4cbf577bc815b62acfc62bf18777b5c3e357e258ab55e973596377887a3b55:log:110', 'hash': '0x2f4cbf577bc815b62acfc62bf18777b5c3e357e258ab55e973596377887a3b55', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbb4b1591816121b6e0a03fe9def951a0833f7892', 'value': 1210.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c3200d680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0x51357113472ccabaab043776fbe13bdf3e7eefe13663efc69dd32467605d1578:log:167', 'hash': '0x51357113472ccabaab043776fbe13bdf3e7eefe13663efc69dd32467605d1578', 'from': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'to': '0xd4dd74430083a862ee72be896d56091ddd48b829', 'value': 4000.24527544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d2351e2b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a4f', 'uniqueId': '0x987b4417fc0d07ef834cd348c48abc9bd42872407d576ea3a26d74ee89a94a6a:log:50', 'hash': '0x987b4417fc0d07ef834cd348c48abc9bd42872407d576ea3a26d74ee89a94a6a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x945c1f396e3ae46f6a430172051d5deef7add6be', 'value': 145.114595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0360f34cac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:21.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x940f7e4d843af31b63707ea72d01d8ef0599b9de725e285d61187f25fe0c4a2e:log:78', 'hash': '0x940f7e4d843af31b63707ea72d01d8ef0599b9de725e285d61187f25fe0c4a2e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 3059.869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x473e3d9020', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0xa3c06bd5e03b815ef2f0d4a555acc372fd661ceff202576ffe14e2427b8bf74c:log:80', 'hash': '0xa3c06bd5e03b815ef2f0d4a555acc372fd661ceff202576ffe14e2427b8bf74c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1414.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20f1f02280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x188794cc933ac238e30ebd54d3e6e3a2cd59886f82264634fef400107eee9215:log:85', 'hash': '0x188794cc933ac238e30ebd54d3e6e3a2cd59886f82264634fef400107eee9215', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1788f3be0b0f5da8f455375940cab89c4cc803e3', 'value': 718.258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10b926bb40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x5d5d2bc068b58a6173c7412ca578e3356a57441960a0538f8660bf0cd826002b:log:97', 'hash': '0x5d5d2bc068b58a6173c7412ca578e3356a57441960a0538f8660bf0cd826002b', 'from': '0x67e5f5db4c866f1b5b31ac097179bcd85a01aa0e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2206.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3362a03a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0xe9971b510f9818381c477174f98f3481d7aedbe3272ac2995d0b5e153193119f:log:123', 'hash': '0xe9971b510f9818381c477174f98f3481d7aedbe3272ac2995d0b5e153193119f', 'from': '0xbc4db589f05cf12cd649936f9393b3b55fe366e5', 'to': '0xf48f04ebe14e9fa09faad777c77c9fde2b2caac7', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a54', 'uniqueId': '0x3a6fb4dfc82f4e231ec00ab8a755ebd2425a2db98429bd4e0a47e50f983aeab3:log:10', 'hash': '0x3a6fb4dfc82f4e231ec00ab8a755ebd2425a2db98429bd4e0a47e50f983aeab3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 769.806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ec66bcc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:45:40.000Z'}}, {'blockNum': '0x9c0a58', 'uniqueId': '0x32e5864b588eebb38fffc506e38e6b0747e1e6498786b1dc1d90a751a027cfac:log:116', 'hash': '0x32e5864b588eebb38fffc506e38e6b0747e1e6498786b1dc1d90a751a027cfac', 'from': '0xf48f04ebe14e9fa09faad777c77c9fde2b2caac7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:46:46.000Z'}}, {'blockNum': '0x9c0a5e', 'uniqueId': '0x9b27ed464e80da0d018233cad5e14c19a06067b9dbf891f545f76abcf1895ff7:log:3', 'hash': '0x9b27ed464e80da0d018233cad5e14c19a06067b9dbf891f545f76abcf1895ff7', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3059.869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x473e3d9020', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:48:36.000Z'}}, {'blockNum': '0x9c0a5e', 'uniqueId': '0x2520949abce9dcfeae2ca80ad52cc4bb612b28ea791733e033bf70389c10430a:log:8', 'hash': '0x2520949abce9dcfeae2ca80ad52cc4bb612b28ea791733e033bf70389c10430a', 'from': '0xdcfffaad53ae360bc67763a3f597e6c46dee65f9', 'to': '0xbaec2b066edcea546b2454fb6fc3d25e1daf23d6', 'value': 312.17713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0744b87f68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:48:36.000Z'}}, {'blockNum': '0x9c0a66', 'uniqueId': '0x443c3f80c1bb4f5e4d0540de6c394259a5be9b811d9a18f575a568f897e37db0:log:184', 'hash': '0x443c3f80c1bb4f5e4d0540de6c394259a5be9b811d9a18f575a568f897e37db0', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5694.312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8494be9100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:49:43.000Z'}}, {'blockNum': '0x9c0a67', 'uniqueId': '0xb82bc207ab9ab9a08e572176d2e372f13a164805eff31d7634ca106b2cf39be6:log:133', 'hash': '0xb82bc207ab9ab9a08e572176d2e372f13a164805eff31d7634ca106b2cf39be6', 'from': '0xe55494e7434408e7074eb03d8ca124f9151fce1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x54c60d1900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:49:46.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x0815321b3d7e309ee2969c69d558fca9d812d7156c72c2b42341d121d6e6694b:log:154', 'hash': '0x0815321b3d7e309ee2969c69d558fca9d812d7156c72c2b42341d121d6e6694b', 'from': '0xff70c95dbb3e6d63221e7f420948b78b97df6c26', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x3a18c3839ad4859944c8a260a80338a00c1cca1aab9fd5cfaf48a613fa5c4cd8:log:175', 'hash': '0x3a18c3839ad4859944c8a260a80338a00c1cca1aab9fd5cfaf48a613fa5c4cd8', 'from': '0xc8093f5232ac6be142a3704e95834df71dc69fa6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8204.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbf0406ad60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x650107f44b73b8c3b743f79223f715f292d8f4f55c919618d7c86764b4c6556e:log:176', 'hash': '0x650107f44b73b8c3b743f79223f715f292d8f4f55c919618d7c86764b4c6556e', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5336.02145266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7c3d2a93f2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a71', 'uniqueId': '0x4ddb6eb22ed138b17bb3efe17013a28de69f3dc577c384156f9974db2dcb3619:log:68', 'hash': '0x4ddb6eb22ed138b17bb3efe17013a28de69f3dc577c384156f9974db2dcb3619', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb8431daa00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:57.000Z'}}, {'blockNum': '0x9c0a77', 'uniqueId': '0xf30e0d8fe97399ee56bdcdeb2da0e23d324d1cd7b306910a164f8ccb139c1ca9:log:36', 'hash': '0xf30e0d8fe97399ee56bdcdeb2da0e23d324d1cd7b306910a164f8ccb139c1ca9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1490cccbc69bae1a545af45bb2a15571d620a0e7', 'value': 70.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a6a1f840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:51:58.000Z'}}, {'blockNum': '0x9c0a7e', 'uniqueId': '0xec5ade60ce6a900c8eb14b4ff80b68f4930eb1e82d6ad9a8c27e17078ef86607:log:60', 'hash': '0xec5ade60ce6a900c8eb14b4ff80b68f4930eb1e82d6ad9a8c27e17078ef86607', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 1973.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2df22158c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:53:57.000Z'}}, {'blockNum': '0x9c0a7e', 'uniqueId': '0x43ac48debdb0cc486605b902b71dd542d016bc1feab30672573e77537448b410:log:99', 'hash': '0x43ac48debdb0cc486605b902b71dd542d016bc1feab30672573e77537448b410', 'from': '0xa1946e4585b3cc4e510d220ed11635b5d56c5ffa', 'to': '0xfe6bb8e57c0b86c6f8ee728bcd5116057e8991ea', 'value': 1068.30267762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18df948572', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:53:57.000Z'}}, {'blockNum': '0x9c0a7f', 'uniqueId': '0xd371431f9331669fa43a2064139263a5fc21522e402c3859364a8a323367e6cd:log:9', 'hash': '0xd371431f9331669fa43a2064139263a5fc21522e402c3859364a8a323367e6cd', 'from': '0xfe6bb8e57c0b86c6f8ee728bcd5116057e8991ea', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1068.30267762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18df948572', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:54:38.000Z'}}, {'blockNum': '0x9c0a81', 'uniqueId': '0x1c023357b0a5710f4175712fd63377f98cfc3ae95addb6e0cb1e6034226542ad:log:74', 'hash': '0x1c023357b0a5710f4175712fd63377f98cfc3ae95addb6e0cb1e6034226542ad', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x8236a838771b65e8b8add286a5f3a656fdc69599', 'value': 1763.209335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x290d8bee7c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:04.000Z'}}, {'blockNum': '0x9c0a83', 'uniqueId': '0xbef170810b1179f1c2fa0f24c8311169e956c10b76e63efdf9edceda7992f5c0:log:80', 'hash': '0xbef170810b1179f1c2fa0f24c8311169e956c10b76e63efdf9edceda7992f5c0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x27a133f9c6edb42b2f5ae58f82b607dfcfdb92a6', 'value': 52.10524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0136924960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:55.000Z'}}, {'blockNum': '0x9c0a83', 'uniqueId': '0x433ae2e6c8a1779005f75320524a428cc308839db691f7af3a53a69def4286bd:log:85', 'hash': '0x433ae2e6c8a1779005f75320524a428cc308839db691f7af3a53a69def4286bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 41291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03c16189eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:55.000Z'}}, {'blockNum': '0x9c0a88', 'uniqueId': '0x116a89394a7221955b95c74f132b3645f70d224924c977ca2fc9c0f21231ffd6:log:172', 'hash': '0x116a89394a7221955b95c74f132b3645f70d224924c977ca2fc9c0f21231ffd6', 'from': '0x15d223b307e180d83fb06f2e14f73d74adaf0064', 'to': '0x01702e0c202b2270de5116f0748f3e1a1827b100', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0773594000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:56:36.000Z'}}, {'blockNum': '0x9c0a8c', 'uniqueId': '0x4193fd76994bcd453916afea6cddfeb1262657edef3f7a0e97500aa33e6c2203:log:109', 'hash': '0x4193fd76994bcd453916afea6cddfeb1262657edef3f7a0e97500aa33e6c2203', 'from': '0xf95ad025b48580394375a7848ca6d4301ce2f2c5', 'to': '0xc1da812b30905eea37078ea0de6f647e1e347c59', 'value': 623.437101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e83f98594', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:56:50.000Z'}}, {'blockNum': '0x9c0a90', 'uniqueId': '0x9a50cd6b719e1554fd50fed14894cb6123051e8767533cc1ef466ad4993d728f:log:122', 'hash': '0x9a50cd6b719e1554fd50fed14894cb6123051e8767533cc1ef466ad4993d728f', 'from': '0xc1da812b30905eea37078ea0de6f647e1e347c59', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 623.437101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e83f98594', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:58:08.000Z'}}, {'blockNum': '0x9c0aab', 'uniqueId': '0xb114bcc8778c98e613cec59e70e018e7ef60b6d5257db60ce2d0cde905cd445a:log:126', 'hash': '0xb114bcc8778c98e613cec59e70e018e7ef60b6d5257db60ce2d0cde905cd445a', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8588.55479118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc7f7c6974e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:04:10.000Z'}}, {'blockNum': '0x9c0ac1', 'uniqueId': '0xb7aed3aaa7ada096fb531fa96a07d8af1ab4cef8ca79071a7047283493a02b63:log:17', 'hash': '0xb7aed3aaa7ada096fb531fa96a07d8af1ab4cef8ca79071a7047283493a02b63', 'from': '0xbbdebd4c0e4f2a0ea8d231a98bbb44d09f0c62e4', 'to': '0x2749335c22337103d273490327bfa44c5f1bcf6c', 'value': 9155.5477889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd52b513f0a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:07:13.000Z'}}, {'blockNum': '0x9c0aca', 'uniqueId': '0x17136cde5c8cd02fea21116f5e1ce5452ed6d6a4369fbfef2c5a48418762cc9f:log:106', 'hash': '0x17136cde5c8cd02fea21116f5e1ce5452ed6d6a4369fbfef2c5a48418762cc9f', 'from': '0x2749335c22337103d273490327bfa44c5f1bcf6c', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 9155.5477889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd52b513f0a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:09:04.000Z'}}, {'blockNum': '0x9c0ae7', 'uniqueId': '0x539b41ee6a9ba22093174a0fec44f08bb3d3fd060050e54a34d7b4dae81abd2f:log:83', 'hash': '0x539b41ee6a9ba22093174a0fec44f08bb3d3fd060050e54a34d7b4dae81abd2f', 'from': '0x95151e4615c5c0924b918c85ad8d8a94d6644ab3', 'to': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:14:38.000Z'}}, {'blockNum': '0x9c0af1', 'uniqueId': '0x432c76fe7680b03f8efae82a9f3259e25eaf542b7d2e8110ff15cd2b8c924e2d:log:29', 'hash': '0x432c76fe7680b03f8efae82a9f3259e25eaf542b7d2e8110ff15cd2b8c924e2d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:16:09.000Z'}}, {'blockNum': '0x9c0af8', 'uniqueId': '0x75e5b43e9dfb67ebc90017b4b51f5c169041e19fcdef05e312558aa161b889fb:log:53', 'hash': '0x75e5b43e9dfb67ebc90017b4b51f5c169041e19fcdef05e312558aa161b889fb', 'from': '0x9eca6eb9de167ef520c8764339e5ea1978e4adda', 'to': '0xbc505c9d6faa965809bfd73fdaa6b5b8705d7613', 'value': 186.4894027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0457903eee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:17:18.000Z'}}, {'blockNum': '0x9c0afd', 'uniqueId': '0xfa118d006a536ef75e0c720e7b5543821126e80ab9262d93c0d48e4708249723:log:7', 'hash': '0xfa118d006a536ef75e0c720e7b5543821126e80ab9262d93c0d48e4708249723', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 39712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x039c9df72000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:18:05.000Z'}}, {'blockNum': '0x9c0afe', 'uniqueId': '0x42fd02e74be4bb6cc9288bfee9f7c000bcd9d736989ab8468efb247e3fb0622c:log:15', 'hash': '0x42fd02e74be4bb6cc9288bfee9f7c000bcd9d736989ab8468efb247e3fb0622c', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:18:20.000Z'}}, {'blockNum': '0x9c0b00', 'uniqueId': '0x84feb3c99fb260a733c29af63c47b061b132864cf1597858689c958396d4ba30:log:46', 'hash': '0x84feb3c99fb260a733c29af63c47b061b132864cf1597858689c958396d4ba30', 'from': '0x4ea1e3f926db1af6120a592136c4c38e1ab97acb', 'to': '0x1341e58c8c8ed0e8bb1fbb4eaf481156722cd973', 'value': 1271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d9989da80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:19:25.000Z'}}, {'blockNum': '0x9c0b01', 'uniqueId': '0xda82c1ca4189afae05aed43b9a170785dfe4d38d3bc2aef795ed07f8b42ed4b3:log:40', 'hash': '0xda82c1ca4189afae05aed43b9a170785dfe4d38d3bc2aef795ed07f8b42ed4b3', 'from': '0xbc505c9d6faa965809bfd73fdaa6b5b8705d7613', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 186.4894027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0457903eee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:19:32.000Z'}}, {'blockNum': '0x9c0b23', 'uniqueId': '0xddbbed3e45cbbeb8f250290219760620cc676add20f8b0463b220753bb19c2f5:log:41', 'hash': '0xddbbed3e45cbbeb8f250290219760620cc676add20f8b0463b220753bb19c2f5', 'from': '0xa7f94985c44852c5cc9b399293e5948b62ca0566', 'to': '0x4f447d7f98a97619cd29469a5d4af1decdba4041', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0da475abf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:26:58.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x4e381d5e9d29a9e1fb8ed7e11a2772eae0f921cbbfa710db6accbff17a99e1f4:log:3', 'hash': '0x4e381d5e9d29a9e1fb8ed7e11a2772eae0f921cbbfa710db6accbff17a99e1f4', 'from': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 908.829719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15290c18fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x78143afff00e22b50474259036fcb0fd23ccad3e4e690f10d9a48f32fcd706c1:log:5', 'hash': '0x78143afff00e22b50474259036fcb0fd23ccad3e4e690f10d9a48f32fcd706c1', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3869.591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5a188f4860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x4952e807a45b8761aa535bec5025fb6ccddcc9caed7f58ca8d4660c40c7defe2:log:6', 'hash': '0x4952e807a45b8761aa535bec5025fb6ccddcc9caed7f58ca8d4660c40c7defe2', 'from': '0xae5432464b0dcbbb596ac664f49d6d0ea883b0be', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1790.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29ad59c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x78b50db19f1e53f631c0c2aea976bf96a21073f5f1f8b94a28b50a97bb0bf666:log:7', 'hash': '0x78b50db19f1e53f631c0c2aea976bf96a21073f5f1f8b94a28b50a97bb0bf666', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2844.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x423d487400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x2c1a93731eee25f52292fa22b19193eb8d2d10418bd0f46136fffe2b4a96b3b0:log:8', 'hash': '0x2c1a93731eee25f52292fa22b19193eb8d2d10418bd0f46136fffe2b4a96b3b0', 'from': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3649.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x54fb196b80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0xcca50995cc19f62536d4d2bcadfcff315b0a6f892e364735a05c14e0f6d6113a:log:38', 'hash': '0xcca50995cc19f62536d4d2bcadfcff315b0a6f892e364735a05c14e0f6d6113a', 'from': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 136.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033076e480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x97a39af2a361e1335f116ce97d38cc2aba39c28ceb24d060697f3a5d4291c5d4:log:39', 'hash': '0x97a39af2a361e1335f116ce97d38cc2aba39c28ceb24d060697f3a5d4291c5d4', 'from': '0x1e580bafb4649412d0c4fe1611d58d31bb3135f2', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1976.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e07d38bc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x34b5611c7f465547de606f6b3308eb4e0f12fc39fc05eedd3f7a662eeaf374a8:log:41', 'hash': '0x34b5611c7f465547de606f6b3308eb4e0f12fc39fc05eedd3f7a662eeaf374a8', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x9a96a1a0bff6504f807113c6c59020145e04fc8e', 'value': 327.703357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07a143a3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x40def877db2d9ec99f9a7c0891ba273a7880b7ab00d72d63b48c695376dbe047:log:43', 'hash': '0x40def877db2d9ec99f9a7c0891ba273a7880b7ab00d72d63b48c695376dbe047', 'from': '0x74f7477556d7b099ceb5781d5a7a109947b72a15', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1990.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e5b2a6280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x83a116c3f2999b140e3b0969e143ddce38a462c9456986a1ba804a7477b5efd7:log:44', 'hash': '0x83a116c3f2999b140e3b0969e143ddce38a462c9456986a1ba804a7477b5efd7', 'from': '0x83f5f66a111a446d29bc28c82b292b42cbe892ef', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17b8ff80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b29', 'uniqueId': '0xcfd9b0754e8d6359a9a99cfe742847ee9bf5c117b53bec17a62ea55793702bc4:log:3', 'hash': '0xcfd9b0754e8d6359a9a99cfe742847ee9bf5c117b53bec17a62ea55793702bc4', 'from': '0xbb4b1591816121b6e0a03fe9def951a0833f7892', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1210.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c3200d680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:31.000Z'}}, {'blockNum': '0x9c0b29', 'uniqueId': '0xac2d35aed19be40a1eb8f0f67c7bd7e41a066a6d65aec0ad0eb38e04e0ffb14c:log:4', 'hash': '0xac2d35aed19be40a1eb8f0f67c7bd7e41a066a6d65aec0ad0eb38e04e0ffb14c', 'from': '0xaca27a35838da5421fe925eb621a7679d6d2bdde', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 889.652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14b6bd3880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:31.000Z'}}, {'blockNum': '0x9c0b2b', 'uniqueId': '0xc89b1aee576917cf0c7654070cc8662ca2c0ae7a378ef98aa57c5c8a5aa8324b:log:55', 'hash': '0xc89b1aee576917cf0c7654070cc8662ca2c0ae7a378ef98aa57c5c8a5aa8324b', 'from': '0x1788f3be0b0f5da8f455375940cab89c4cc803e3', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 718.258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10b926bb40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:38.000Z'}}, {'blockNum': '0x9c0b3b', 'uniqueId': '0xc336dc2858d47f9e934f71dfb87b41dc89d005094b470548a38d87d7cf9426e9:log:119', 'hash': '0xc336dc2858d47f9e934f71dfb87b41dc89d005094b470548a38d87d7cf9426e9', 'from': '0x4f447d7f98a97619cd29469a5d4af1decdba4041', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0da475abf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:31:15.000Z'}}, {'blockNum': '0x9c0b72', 'uniqueId': '0x5a0c11800b1f5e8d5355b9bfbf32c7e22e88271cae77455fa58be1b90ab4e2e1:log:65', 'hash': '0x5a0c11800b1f5e8d5355b9bfbf32c7e22e88271cae77455fa58be1b90ab4e2e1', 'from': '0x6a065f496a93cad6cc08e58c1fbeb39af467a72e', 'to': '0x54d367de1ed2e44afc3c7ba7a270306ba1d35558', 'value': 59.058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0160035b40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:41:47.000Z'}}, {'blockNum': '0x9c0b79', 'uniqueId': '0xccf8c9e6f3ac1f069656e88ae7503102fc465deaa9bdacddf97fec2c7e6c4f91:log:15', 'hash': '0xccf8c9e6f3ac1f069656e88ae7503102fc465deaa9bdacddf97fec2c7e6c4f91', 'from': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 104.25775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026d6cb398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:42:54.000Z'}}, {'blockNum': '0x9c0b83', 'uniqueId': '0x22dd9cee32aaf94b02f19524fe7d0f9577a4df6beb40510d8ca701a95d222ca1:log:9', 'hash': '0x22dd9cee32aaf94b02f19524fe7d0f9577a4df6beb40510d8ca701a95d222ca1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1067.25282263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18d95291d7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:44:13.000Z'}}, {'blockNum': '0x9c0b8c', 'uniqueId': '0xb2e21209ddf26b5fdf5d6dc19279695be1d51e51b50ecf643b31cd03aed0e2fe:log:36', 'hash': '0xb2e21209ddf26b5fdf5d6dc19279695be1d51e51b50ecf643b31cd03aed0e2fe', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xa1946e4585b3cc4e510d220ed11635b5d56c5ffa', 'value': 1067.25282263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18d95291d7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:45:51.000Z'}}, {'blockNum': '0x9c0ba2', 'uniqueId': '0x64afd949486b50af2102df0f71461d724a58d05d9a1effa43c89e42e23c7c884:log:14', 'hash': '0x64afd949486b50af2102df0f71461d724a58d05d9a1effa43c89e42e23c7c884', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1255.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d3e396380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:50:09.000Z'}}, {'blockNum': '0x9c0ba8', 'uniqueId': '0x0c984984a10e697506fc856da6c4ad97b729aa0826b29b3f74100a27142b6f9c:log:27', 'hash': '0x0c984984a10e697506fc856da6c4ad97b729aa0826b29b3f74100a27142b6f9c', 'from': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7304.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaa14e51dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:51:10.000Z'}}, {'blockNum': '0x9c0baa', 'uniqueId': '0x83717a47c46bd16b55d2f6d70034feb5a8f2dc022ab4123b20c9797423f8ecff:log:15', 'hash': '0x83717a47c46bd16b55d2f6d70034feb5a8f2dc022ab4123b20c9797423f8ecff', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8791e0edc2322725e711408567eb513dc6db949d', 'value': 2461.56386422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3950106076', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:51:21.000Z'}}, {'blockNum': '0x9c0bbb', 'uniqueId': '0xc5e719f0d80950a163a3c4308a22092d02ba0bebc350defa621027b8597ec169:log:111', 'hash': '0xc5e719f0d80950a163a3c4308a22092d02ba0bebc350defa621027b8597ec169', 'from': '0xd78828beb41c129a1d6888df45c48d14ce7d98b8', 'to': '0xc5a7e0a4789e955687e5e2972dcf1620ab788527', 'value': 977.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16c40459e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:55:01.000Z'}}, {'blockNum': '0x9c0bda', 'uniqueId': '0x44cedabf7c4883d7b368a277fc5b48ba82da092502159056ea1132a735e80c10:log:5', 'hash': '0x44cedabf7c4883d7b368a277fc5b48ba82da092502159056ea1132a735e80c10', 'from': '0x1e6dab54518c0f91d74a509fa8d4f28ce912c765', 'to': '0x25cd9117c27307c238271c46e4f9d35087a7622a', 'value': 312.25041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0745285068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:00:10.000Z'}}, {'blockNum': '0x9c0bde', 'uniqueId': '0x95022ba4b61b65912ab641af98adef1137c125eb25e6a265a486af16a32ab95a:log:8', 'hash': '0x95022ba4b61b65912ab641af98adef1137c125eb25e6a265a486af16a32ab95a', 'from': '0x25cd9117c27307c238271c46e4f9d35087a7622a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 312.25041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0745285068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:01:19.000Z'}}, {'blockNum': '0x9c0bec', 'uniqueId': '0xb4e683ac4eaff6113a1f7d6106e1dd612b0990b71816ea2a6bf47aef49e7c819:log:11', 'hash': '0xb4e683ac4eaff6113a1f7d6106e1dd612b0990b71816ea2a6bf47aef49e7c819', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ce99085dedd17d8f571c413c3ebfe4049c6f7a9', 'value': 196.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x049617a080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:05:18.000Z'}}, {'blockNum': '0x9c0c03', 'uniqueId': '0x3a53a14d2061aa07bc033bc5d170f927f2978e2d3143ad360e20a209debc3906:log:137', 'hash': '0x3a53a14d2061aa07bc033bc5d170f927f2978e2d3143ad360e20a209debc3906', 'from': '0xf122f0d45acf90e9d494c04eeb0719bab65b7be8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7925.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb88767a8a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:09:27.000Z'}}, {'blockNum': '0x9c0c05', 'uniqueId': '0x5543bd4e81eed4670d9d0627bfc126521753c6576c0ba88d787cbb9f2ecfe6f6:log:68', 'hash': '0x5543bd4e81eed4670d9d0627bfc126521753c6576c0ba88d787cbb9f2ecfe6f6', 'from': '0x86debe91fefbda4001fcdc8b3da72b0e4cdab0d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21885.03033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8cf224a8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:09:43.000Z'}}, {'blockNum': '0x9c0c1d', 'uniqueId': '0x12668461df4943923e6fe913dfc01e2d6bfcb85f4175f76fafcea530b494a0d3:log:10', 'hash': '0x12668461df4943923e6fe913dfc01e2d6bfcb85f4175f76fafcea530b494a0d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc51231d1307ffeb4cb099aba99fdec58f64f4729', 'value': 51.234129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01316113a4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:15:46.000Z'}}, {'blockNum': '0x9c0c53', 'uniqueId': '0x79921ee457f3b184d1253797bd3b16bb5c83b0dc1ba230a753a91f0d07873d10:log:0', 'hash': '0x79921ee457f3b184d1253797bd3b16bb5c83b0dc1ba230a753a91f0d07873d10', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1255.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d3e396380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:28:31.000Z'}}, {'blockNum': '0x9c0c5b', 'uniqueId': '0xc3b1e5eb3a5aab7d711e338b8e727402f80a498850f9fd0a45a547d5948a33d8:log:2', 'hash': '0xc3b1e5eb3a5aab7d711e338b8e727402f80a498850f9fd0a45a547d5948a33d8', 'from': '0xbdaf17832a7141b591d9407490328fa5df364cb5', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 242.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a6ceb0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:31.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0x7dfe9d3db70a70b026399f87cc24f14ba38644e87de89d5f421543748da290bf:log:8', 'hash': '0x7dfe9d3db70a70b026399f87cc24f14ba38644e87de89d5f421543748da290bf', 'from': '0x639928b207057fbd1eba5fa915d3d9951a48a62d', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 451.77695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a84cced39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0xe0e4e55d0767fdb9030654df2c46bce3abedbda1f230a2fd5f22c6afa1c3f437:log:13', 'hash': '0xe0e4e55d0767fdb9030654df2c46bce3abedbda1f230a2fd5f22c6afa1c3f437', 'from': '0x93c476aa875bfb62b5e776ce0ae48b47926e36c2', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 75.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c467bc20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0xd739db4794d57aec19a5761db7e2abf364732428e44b36c4c8ac4e0d4066c081:log:17', 'hash': '0xd739db4794d57aec19a5761db7e2abf364732428e44b36c4c8ac4e0d4066c081', 'from': '0x1490cccbc69bae1a545af45bb2a15571d620a0e7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 70.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a6a1f840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0ca4', 'uniqueId': '0xf353e01631b783f1bd8b11b9e9d6b3d1ee52f1d28148d98d7b98e0fa989925a9:log:13', 'hash': '0xf353e01631b783f1bd8b11b9e9d6b3d1ee52f1d28148d98d7b98e0fa989925a9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2fb9e343a8a2c4c4bcd4670ce61a14afe762c661', 'value': 141.94648981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034e112795', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:46:24.000Z'}}, {'blockNum': '0x9c0cbc', 'uniqueId': '0x601dc575c62234ee45ced86244497f317aa4a4a3e6491df1f35e8c78753399cf:log:2', 'hash': '0x601dc575c62234ee45ced86244497f317aa4a4a3e6491df1f35e8c78753399cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 17100.76754495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018e28847a3f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:51:15.000Z'}}, {'blockNum': '0x9c0cc1', 'uniqueId': '0xbd46f210af82eeed877a2b9f5c4a719cf128bf053fd35526961eaa3dba7ad4f5:log:5', 'hash': '0xbd46f210af82eeed877a2b9f5c4a719cf128bf053fd35526961eaa3dba7ad4f5', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 17100.76754495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018e28847a3f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:51:56.000Z'}}, {'blockNum': '0x9c0ce1', 'uniqueId': '0xff1b1cfde1ec6c0ae4665ab2a66a287f104987d4d21eb77d8cd02c490d58caca:log:7', 'hash': '0xff1b1cfde1ec6c0ae4665ab2a66a287f104987d4d21eb77d8cd02c490d58caca', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbdbb09a328e40b8d741925f756b1765d2d0f1581', 'value': 448.13695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a6f1aba39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:58:19.000Z'}}, {'blockNum': '0x9c0ce9', 'uniqueId': '0xe3cb9cb5a9b7034173069586903fc79a0de12af05b77e00814eee0ffd7a198a0:log:28', 'hash': '0xe3cb9cb5a9b7034173069586903fc79a0de12af05b77e00814eee0ffd7a198a0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6efa4c6cb722a7f82a3671027b0fb7ccd69e41f2', 'value': 59.854003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164c1f5ec', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:00:14.000Z'}}, {'blockNum': '0x9c0ce9', 'uniqueId': '0x5900dab5975501eed53a5829a74c0dd5d237eba1913951f3fb4e68525c4c8d9b:log:34', 'hash': '0x5900dab5975501eed53a5829a74c0dd5d237eba1913951f3fb4e68525c4c8d9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6efa4c6cb722a7f82a3671027b0fb7ccd69e41f2', 'value': 70.656459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a525334c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:00:14.000Z'}}, {'blockNum': '0x9c0d40', 'uniqueId': '0xe47ba092229f829ec87eb9e559db7f5842a705a543602e6bab23ed9bf8a2ad02:log:2', 'hash': '0xe47ba092229f829ec87eb9e559db7f5842a705a543602e6bab23ed9bf8a2ad02', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2cd5e1c37351a664d9b367ba0fbe415882246373', 'value': 104.64917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026fc1f608', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:19:07.000Z'}}, {'blockNum': '0x9c0d70', 'uniqueId': '0x5fc40516bb977bf95182ed6c2f3b0435894bc305a6c4272a84a9e1033971acc2:log:88', 'hash': '0x5fc40516bb977bf95182ed6c2f3b0435894bc305a6c4272a84a9e1033971acc2', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 13291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013574888b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:29:54.000Z'}}, {'blockNum': '0x9c0d71', 'uniqueId': '0xd8970a835f378117fc9125143ee35961621de71cfe23f9ef3d422f24b294ba87:log:100', 'hash': '0xd8970a835f378117fc9125143ee35961621de71cfe23f9ef3d422f24b294ba87', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3338.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4db80c5de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:30:19.000Z'}}, {'blockNum': '0x9c0d82', 'uniqueId': '0xed1aa34a0d85b5b8229fab776d328a89c9bd992cf192852863e6821898bd2aea:log:13', 'hash': '0xed1aa34a0d85b5b8229fab776d328a89c9bd992cf192852863e6821898bd2aea', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b40e323b5522fe5261cc12b4022af535d9d63c8', 'value': 383.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08f0b2fb80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:35:36.000Z'}}, {'blockNum': '0x9c0d96', 'uniqueId': '0x9cedf710b3e1cd834902b2f80ef9a1821424aa6dbe090ee45cd4e6a71da834a3:log:105', 'hash': '0x9cedf710b3e1cd834902b2f80ef9a1821424aa6dbe090ee45cd4e6a71da834a3', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11764.65940841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0111ead5a169', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:40:22.000Z'}}, {'blockNum': '0x9c0da1', 'uniqueId': '0x66390fc44cb823f793ae6508956c29f512a9ade0a8df83a5c09d7a402274fa1f:log:32', 'hash': '0x66390fc44cb823f793ae6508956c29f512a9ade0a8df83a5c09d7a402274fa1f', 'from': '0x000614ff2c0fd4216379a139d9363dcc24d905b7', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 174.896328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0412769e20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:41:41.000Z'}}, {'blockNum': '0x9c0da2', 'uniqueId': '0xa5af928ceda38eda605d2aed66e9329057c0caca6755740cffcc3ccd7d8d76df:log:0', 'hash': '0xa5af928ceda38eda605d2aed66e9329057c0caca6755740cffcc3ccd7d8d76df', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2fac7bb714aae67c4fcd926af0687541ca5944b4', 'value': 76.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ca5c1680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:42:07.000Z'}}, {'blockNum': '0x9c0daf', 'uniqueId': '0xde58edfafb1b1c2487ad58a5bedbb6a556cecc99254799aea2ec174df78031c5:log:0', 'hash': '0xde58edfafb1b1c2487ad58a5bedbb6a556cecc99254799aea2ec174df78031c5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 36.94999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdc3d39bf', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:44:17.000Z'}}, {'blockNum': '0x9c0db4', 'uniqueId': '0x2023a83bf105850d0438b19ac6c481dd1a0012d57aaead1b607f787cc07a6887:log:139', 'hash': '0x2023a83bf105850d0438b19ac6c481dd1a0012d57aaead1b607f787cc07a6887', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x90319fbe0635475600665f93992a9480f0a1ebe0', 'value': 36.94999998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdc3d39be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:45:52.000Z'}}, {'blockNum': '0x9c0dc1', 'uniqueId': '0xed5b2d0c15781e2890cc9e7169f8b52a5b3256b211d388bfcc4e2d63f62ed197:log:2', 'hash': '0xed5b2d0c15781e2890cc9e7169f8b52a5b3256b211d388bfcc4e2d63f62ed197', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 471.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0af967c380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:50:38.000Z'}}, {'blockNum': '0x9c0dd5', 'uniqueId': '0x7d6b652dea8e3b9ceff12f2c6334cc358c95c66bd0561ba5e5cbfeddbb1edb0a:log:7', 'hash': '0x7d6b652dea8e3b9ceff12f2c6334cc358c95c66bd0561ba5e5cbfeddbb1edb0a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ca3f0a00a8e9274d398896d42e37c050ec45235', 'value': 821.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x131e7717e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:54:10.000Z'}}, {'blockNum': '0x9c0df2', 'uniqueId': '0x884c303dfc9f889297da018ed133454101a3078c45fc6233e00a12bb67b72242:log:33', 'hash': '0x884c303dfc9f889297da018ed133454101a3078c45fc6233e00a12bb67b72242', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xc9abeb1c2498b320a4b3a50ca430af57cef391fc', 'value': 20.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7b432d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:01:21.000Z'}}, {'blockNum': '0x9c0e18', 'uniqueId': '0x5cc52011e1958ae75cc671d2ee03c54756e6ca909df2cc20ed2f420abfe91da8:log:1', 'hash': '0x5cc52011e1958ae75cc671d2ee03c54756e6ca909df2cc20ed2f420abfe91da8', 'from': '0x72e5263ff33d2494692d7f94a758aa9f82062f73', 'to': '0x447f2963a0556c21b6b346facdce605c54809371', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fc23ac000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:11:20.000Z'}}, {'blockNum': '0x9c0e4d', 'uniqueId': '0x802b711f1e18cfe690626f1f6a7c6d40a38968e3af920e7450d192d00e440984:log:38', 'hash': '0x802b711f1e18cfe690626f1f6a7c6d40a38968e3af920e7450d192d00e440984', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 298.05367495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f089d0c7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:25:11.000Z'}}, {'blockNum': '0x9c0e57', 'uniqueId': '0x84184a960edddd154bc25529b7d4c550836b4c5106f9932786f07b67cb40696e:log:196', 'hash': '0x84184a960edddd154bc25529b7d4c550836b4c5106f9932786f07b67cb40696e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x502dafac138ffd710747c4827d6b3d9659da032d', 'value': 298.05367495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f089d0c7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:29:19.000Z'}}, {'blockNum': '0x9c0e5e', 'uniqueId': '0xeaf17fecf13a9426a9522075b123ba606299c220c6ee595802b003c8826311bd:log:107', 'hash': '0xeaf17fecf13a9426a9522075b123ba606299c220c6ee595802b003c8826311bd', 'from': '0x447f2963a0556c21b6b346facdce605c54809371', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7dba821800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:30:20.000Z'}}, {'blockNum': '0x9c0e7b', 'uniqueId': '0x450221672a50801062446eea9e49a9dda6aad09ac1ca108380bc14e313f1efa0:log:123', 'hash': '0x450221672a50801062446eea9e49a9dda6aad09ac1ca108380bc14e313f1efa0', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3046.079208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x46ec0c02a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:37:49.000Z'}}, {'blockNum': '0x9c0e91', 'uniqueId': '0x9153c2f72baedb2fa399e789603a24ec2eaa4348b16419b1f309bc797157158d:log:12', 'hash': '0x9153c2f72baedb2fa399e789603a24ec2eaa4348b16419b1f309bc797157158d', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xf704927b3a783e893e3062a62767a896c5540f45', 'value': 17.60557181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x68eff87d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:44:58.000Z'}}, {'blockNum': '0x9c0ea7', 'uniqueId': '0xdb6e65c3df26ab70c02fd5a3e52be2a4f826bd96812deed68f69201d7983d273:log:25', 'hash': '0xdb6e65c3df26ab70c02fd5a3e52be2a4f826bd96812deed68f69201d7983d273', 'from': '0xf704927b3a783e893e3062a62767a896c5540f45', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 17.60557181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x68eff87d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:51:00.000Z'}}, {'blockNum': '0x9c0eb8', 'uniqueId': '0x255c644cb7873fe38d91b02780f9ad5cbaad8395eb25ffd6b23e1ad4a3ee5f12:log:17', 'hash': '0x255c644cb7873fe38d91b02780f9ad5cbaad8395eb25ffd6b23e1ad4a3ee5f12', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 360.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0865fb33df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:55:32.000Z'}}, {'blockNum': '0x9c0ebd', 'uniqueId': '0xd0e6348ed74addd58f9f3cd69105229bea4e0777143b6a19041fa0c7a7e54876:log:18', 'hash': '0xd0e6348ed74addd58f9f3cd69105229bea4e0777143b6a19041fa0c7a7e54876', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x15d223b307e180d83fb06f2e14f73d74adaf0064', 'value': 329.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07ae6ab5c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:56:35.000Z'}}, {'blockNum': '0x9c0ec3', 'uniqueId': '0x317fb0d25ea5dd62492f748fb911dc97ad773eb31030f05384a63c0c77a676aa:log:93', 'hash': '0x317fb0d25ea5dd62492f748fb911dc97ad773eb31030f05384a63c0c77a676aa', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x2770e756f02671f93f0aef728772911342c259c6', 'value': 360.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0865fb33df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:57:41.000Z'}}, {'blockNum': '0x9c0ec8', 'uniqueId': '0x14a5fd7709c75180cb63f637acd9be6b0449b575a160ded9ab8b1bb4a7d26559:log:24', 'hash': '0x14a5fd7709c75180cb63f637acd9be6b0449b575a160ded9ab8b1bb4a7d26559', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x2fb9e343a8a2c4c4bcd4670ce61a14afe762c661', 'value': 63.65531597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x017b6a4dcd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:58:53.000Z'}}, {'blockNum': '0x9c0edb', 'uniqueId': '0x4d19be42e9b9e0af3039722d2f461e3c92ead1a6c6e322a1bc2307e7933b86d4:log:0', 'hash': '0x4d19be42e9b9e0af3039722d2f461e3c92ead1a6c6e322a1bc2307e7933b86d4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 8027.219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbae5f425e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:03:16.000Z'}}, {'blockNum': '0x9c0f0c', 'uniqueId': '0xc86a45a95a2f9003e31e9b09c8aa10128211e1e59d75e0dd58200fc668e89635:log:0', 'hash': '0xc86a45a95a2f9003e31e9b09c8aa10128211e1e59d75e0dd58200fc668e89635', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 290.50089863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c3853187', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:14:22.000Z'}}, {'blockNum': '0x9c0f0c', 'uniqueId': '0x5dd035e665c8636ecad3203e9e5102d006f1d1eaafd6e9777b4ba401aab393a8:log:3', 'hash': '0x5dd035e665c8636ecad3203e9e5102d006f1d1eaafd6e9777b4ba401aab393a8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2af50e9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:14:22.000Z'}}, {'blockNum': '0x9c0f13', 'uniqueId': '0xc4ae6ec6c5e3ad872c347b11b2b6ffa811042feab3981bb5c204fc3214130515:log:108', 'hash': '0xc4ae6ec6c5e3ad872c347b11b2b6ffa811042feab3981bb5c204fc3214130515', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1259fc9a8d8fcf968bc5aaad27442163aadf3d60', 'value': 290.50089863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c3853187', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:15:53.000Z'}}, {'blockNum': '0x9c0f3d', 'uniqueId': '0x2897490ff82dbce21b1b069053338c34fa7ccc140ebff2885180da1d6260f6dd:log:101', 'hash': '0x2897490ff82dbce21b1b069053338c34fa7ccc140ebff2885180da1d6260f6dd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb23ddb7735557aacff5acf8415f00068349ce3eb', 'value': 100.47548019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0256e16a73', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:24:15.000Z'}}, {'blockNum': '0x9c0f55', 'uniqueId': '0x0a31081dffd58b27e91d84523476575035067c62f1eca48d39445b1830128522:log:106', 'hash': '0x0a31081dffd58b27e91d84523476575035067c62f1eca48d39445b1830128522', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8027.219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbae5f425e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:30:28.000Z'}}, {'blockNum': '0x9c0f5f', 'uniqueId': '0x3ea6efdadae51bbca3cfe77c864352c0ecf1393577a9898db0e24a80e3878dbc:log:30', 'hash': '0x3ea6efdadae51bbca3cfe77c864352c0ecf1393577a9898db0e24a80e3878dbc', 'from': '0x0617169670775a5b2e4db26e24852a3d714bd165', 'to': '0x74454231249dba1a7885cdfb0512e81c21f18503', 'value': 327.22372899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x079e67c923', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:32:29.000Z'}}, {'blockNum': '0x9c0f64', 'uniqueId': '0x1caca6502aa377fa0ae684cdd1bc737011d5c87ef7540e38e97d9e6282338cdd:log:5', 'hash': '0x1caca6502aa377fa0ae684cdd1bc737011d5c87ef7540e38e97d9e6282338cdd', 'from': '0xbd56cf2fbdc8b89f43b011e441d53204ec9aecee', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 134.50797292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0321bae0ec', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:33:26.000Z'}}, {'blockNum': '0x9c0f6a', 'uniqueId': '0xd1d1f26f5640aeea8396c7a340bf3715277a6eed3acd397e0cfdc42467360c08:log:6', 'hash': '0xd1d1f26f5640aeea8396c7a340bf3715277a6eed3acd397e0cfdc42467360c08', 'from': '0x74454231249dba1a7885cdfb0512e81c21f18503', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 327.22372899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x079e67c923', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:13.000Z'}}, {'blockNum': '0x9c0f6e', 'uniqueId': '0x70380336c77fbe20630dfc9e34232cce3d8aff76041e3547131fb0ea2863aed9:log:57', 'hash': '0x70380336c77fbe20630dfc9e34232cce3d8aff76041e3547131fb0ea2863aed9', 'from': '0x1dd0755ad6d572b48c592e84e3a56b62263ee73f', 'to': '0xbe55164cfb1acab25c59568f06e7af2b81b3528e', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:44.000Z'}}, {'blockNum': '0x9c0f6e', 'uniqueId': '0x04d860f9364a8c3885ba0d252a40da9f093948ac3cdc11dc79707368050cdd6f:log:58', 'hash': '0x04d860f9364a8c3885ba0d252a40da9f093948ac3cdc11dc79707368050cdd6f', 'from': '0xc016ab3a4367ce6f2cecac15f6404d6f1531b969', 'to': '0xe673362cfceb7ada97ca69571ef75de274a6e33f', 'value': 240.48533886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x059967817e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:44.000Z'}}, {'blockNum': '0x9c0f7b', 'uniqueId': '0x159966c0713bef796ffcc90f396e12031bfb1e8f0f08c03da94bddb5327e2bde:log:8', 'hash': '0x159966c0713bef796ffcc90f396e12031bfb1e8f0f08c03da94bddb5327e2bde', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x27738019da260c847083eae79a0fdf2a42551974', 'value': 120.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d118d480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:38:44.000Z'}}, {'blockNum': '0x9c0fd7', 'uniqueId': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064:log:0', 'hash': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064', 'from': '0x16e3ebd91b3a6708cb34b28862abec99956f9a3e', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 15.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5e887080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:23.000Z'}}, {'blockNum': '0x9c0fd7', 'uniqueId': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064:log:1', 'hash': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064', 'from': '0x16e3ebd91b3a6708cb34b28862abec99956f9a3e', 'to': '0xdccac55b294c75b72d6117ade54c3563442478a4', 'value': 2950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44af5ec600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:23.000Z'}}, {'blockNum': '0x9c0fdb', 'uniqueId': '0x12f1d95b74fb2253d257214110028563bae9d1f39732f82e342d179c33126429:log:0', 'hash': '0x12f1d95b74fb2253d257214110028563bae9d1f39732f82e342d179c33126429', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 11.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x432ca7c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:45.000Z'}}, {'blockNum': '0x9c0fdc', 'uniqueId': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e:log:0', 'hash': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 11.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x432ca7c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:54.000Z'}}, {'blockNum': '0x9c0fdc', 'uniqueId': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e:log:1', 'hash': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x39db9c3c2b8d7d5c7f8b3470b936af26a464e7a3', 'value': 9900.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe6823528c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:54.000Z'}}, {'blockNum': '0x9c0fde', 'uniqueId': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227:log:0', 'hash': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227', 'from': '0x1c76f494fde175655e55e9b50f2d7a159219dc9b', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 14.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x56b989c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:02:28.000Z'}}, {'blockNum': '0x9c0fde', 'uniqueId': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227:log:1', 'hash': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227', 'from': '0x1c76f494fde175655e55e9b50f2d7a159219dc9b', 'to': '0x36cfb5a6be6b130cfceb934d3ca72c1d72c3a7d8', 'value': 171335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f95342e6700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:02:28.000Z'}}, {'blockNum': '0x9c0fe0', 'uniqueId': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd:log:0', 'hash': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 16.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x61ee30c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:09.000Z'}}, {'blockNum': '0x9c0fe0', 'uniqueId': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd:log:1', 'hash': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0xb7e27ef96256502677eb2e15f65848a8a50d3a49', 'value': 12907.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012c86c13dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:09.000Z'}}, {'blockNum': '0x9c0fe3', 'uniqueId': '0xba98c6d6549f2f3987247d6a029b782b93579f52ae0485e37538840e21e766ca:log:0', 'hash': '0xba98c6d6549f2f3987247d6a029b782b93579f52ae0485e37538840e21e766ca', 'from': '0xfa17a2003132c9dfc95c42ebcb9f5b8fb24db5f8', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 12.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x497e1640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:55.000Z'}}, {'blockNum': '0x9c0fe3', 'uniqueId': '0x52dc227ffb7bd1d969c968f86baabbc539d6eb2a4bf901f7b00a1d352d98da48:log:5', 'hash': '0x52dc227ffb7bd1d969c968f86baabbc539d6eb2a4bf901f7b00a1d352d98da48', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xbc9990df22f469960b52dadfcfdac1ce13778d52', 'value': 67.63671368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0193256f48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:55.000Z'}}, {'blockNum': '0x9c0fe5', 'uniqueId': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934:log:0', 'hash': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934', 'from': '0x171967273368510f92632cb5d8b081fde729f1d9', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 18.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6dd9f2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:04:27.000Z'}}, {'blockNum': '0x9c0fe5', 'uniqueId': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934:log:1', 'hash': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934', 'from': '0x171967273368510f92632cb5d8b081fde729f1d9', 'to': '0x5fe1eddb81a6e2ad3c10391c74c4f3e55c30f6f9', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x800e8dfc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:04:27.000Z'}}, {'blockNum': '0x9c0fe8', 'uniqueId': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660:log:0', 'hash': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660', 'from': '0x846f88d4f838fc7192d2d35d6fe55338312618da', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 31.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbb1956c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:05:49.000Z'}}, {'blockNum': '0x9c0fe8', 'uniqueId': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660:log:1', 'hash': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660', 'from': '0x846f88d4f838fc7192d2d35d6fe55338312618da', 'to': '0xb0ad48e5a9a926fec232dc7c22ed72c725acb1f8', 'value': 1224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c7f9bc800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:05:49.000Z'}}, {'blockNum': '0x9c0fe9', 'uniqueId': '0xe4a4abf953a812e973a6e10fc40c00ea06370b1e82105c4b552e4848b80b6853:log:0', 'hash': '0xe4a4abf953a812e973a6e10fc40c00ea06370b1e82105c4b552e4848b80b6853', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:05.000Z'}}, {'blockNum': '0x9c0fec', 'uniqueId': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6:log:0', 'hash': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6', 'from': '0x697c9ea5b3a5179df20f8230cf79ccd02d044089', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 31.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbb1956c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:22.000Z'}}, {'blockNum': '0x9c0fec', 'uniqueId': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6:log:1', 'hash': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6', 'from': '0x697c9ea5b3a5179df20f8230cf79ccd02d044089', 'to': '0x0000000000000000000000000000000000000000', 'value': 239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05908d0f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:22.000Z'}}, {'blockNum': '0x9c0fed', 'uniqueId': '0x34579330997886cc31d7b1e4cecb6d5a56f28dd8f1b3d3fd7803145ed1d800f9:log:6', 'hash': '0x34579330997886cc31d7b1e4cecb6d5a56f28dd8f1b3d3fd7803145ed1d800f9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb4cf686ea7a0e1cbc83c6d922106c4df5249ce43', 'value': 61.91881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0171109b28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:25.000Z'}}, {'blockNum': '0x9c1004', 'uniqueId': '0xf4522ec639cbbf4574d8f6fd6cd4324bdd3045634728471e08d4a974beaa5c24:log:40', 'hash': '0xf4522ec639cbbf4574d8f6fd6cd4324bdd3045634728471e08d4a974beaa5c24', 'from': '0xa6373b90c7f362ede18462748392d6c69668ee96', 'to': '0x7639d45c0ce0d655d3e7b66bc4c84cd9792fc9b2', 'value': 9940.40493477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe7716e35a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:12:10.000Z'}}, {'blockNum': '0x9c1007', 'uniqueId': '0x326790e3e7a79b33de29e64e9ca9fe41b218a6acc78e049f2a3b4b2df67a273f:log:0', 'hash': '0x326790e3e7a79b33de29e64e9ca9fe41b218a6acc78e049f2a3b4b2df67a273f', 'from': '0x7639d45c0ce0d655d3e7b66bc4c84cd9792fc9b2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 9940.40493477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe7716e35a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:12:41.000Z'}}, {'blockNum': '0x9c1027', 'uniqueId': '0x21686e8ec20cf6ab68db5f8812f585947187c1451537587cf5915f8d33a6bdda:log:23', 'hash': '0x21686e8ec20cf6ab68db5f8812f585947187c1451537587cf5915f8d33a6bdda', 'from': '0x2578753e8e09a7f9fbb393938fd273ad81973da5', 'to': '0xc5cb147b5e119ae7503b0e9040daeb85ea360ae0', 'value': 170.33222108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f74257dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:19:28.000Z'}}, {'blockNum': '0x9c1029', 'uniqueId': '0xed5d14177e9a4fd870a2c9b971ead6c8aa3a3a97485ef65188af68de6bc90b79:log:0', 'hash': '0xed5d14177e9a4fd870a2c9b971ead6c8aa3a3a97485ef65188af68de6bc90b79', 'from': '0xc5cb147b5e119ae7503b0e9040daeb85ea360ae0', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 170.33222108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f74257dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:19:47.000Z'}}, {'blockNum': '0x9c105c', 'uniqueId': '0x0362d84b345801fb0dee5a31376636b42be3c66ee502fe0f55a31249278536cc:log:72', 'hash': '0x0362d84b345801fb0dee5a31376636b42be3c66ee502fe0f55a31249278536cc', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10110.73715585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xeb68b08d81', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:30:18.000Z'}}, {'blockNum': '0x9c1097', 'uniqueId': '0x8523597fb409df40bf42986aea87085dd68dff043d373fcd8bcbe9fddafd9505:log:4', 'hash': '0x8523597fb409df40bf42986aea87085dd68dff043d373fcd8bcbe9fddafd9505', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xd7a7e33d0fa9d8b85db3be2aaa89b191d6f2f74c', 'value': 152.51896491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x038d1578ab', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:43:16.000Z'}}, {'blockNum': '0x9c109e', 'uniqueId': '0xffeaf59e3c03eb7ee42ac7ace7350ac00d53ede29139675f244f14bea70a1a79:log:3', 'hash': '0xffeaf59e3c03eb7ee42ac7ace7350ac00d53ede29139675f244f14bea70a1a79', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2391.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x37abfebe00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:44:02.000Z'}}, {'blockNum': '0x9c10a0', 'uniqueId': '0x62e5b41ccfbe91750eef3e16b90f49afd2dd6b63c46dc05ddb00cbc7b36c1b53:log:12', 'hash': '0x62e5b41ccfbe91750eef3e16b90f49afd2dd6b63c46dc05ddb00cbc7b36c1b53', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2391.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x37abfebe00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:44:13.000Z'}}, {'blockNum': '0x9c10a6', 'uniqueId': '0x436adc997eb834877b3099210bf61fa394a591bacbf38d99597145a1e296cae7:log:89', 'hash': '0x436adc997eb834877b3099210bf61fa394a591bacbf38d99597145a1e296cae7', 'from': '0xd7a7e33d0fa9d8b85db3be2aaa89b191d6f2f74c', 'to': '0xdf0ac221172ca54350ecdde54f0d755c5ca0c3d9', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:46:11.000Z'}}, {'blockNum': '0x9c10d8', 'uniqueId': '0x6214177573b956c5474be1fed397a2d7268b8ad993f3de7b0f2ad016ffc7e444:log:22', 'hash': '0x6214177573b956c5474be1fed397a2d7268b8ad993f3de7b0f2ad016ffc7e444', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 3326.273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7221cea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:00:39.000Z'}}, {'blockNum': '0x9c10da', 'uniqueId': '0x329254e70bf3c96a3cb5eed04d05d125412ef54935126c16d2c4af5e176b7870:log:15', 'hash': '0x329254e70bf3c96a3cb5eed04d05d125412ef54935126c16d2c4af5e176b7870', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2006b6eddef65c0868901da4d71895bc34cb26c7', 'value': 121.37093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d36d5788', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:02:21.000Z'}}, {'blockNum': '0x9c10da', 'uniqueId': '0xab2cc6258bad527a0d3f58fe0aa04d861cb23ffe296a78b62fdd162223c4127e:log:22', 'hash': '0xab2cc6258bad527a0d3f58fe0aa04d861cb23ffe296a78b62fdd162223c4127e', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3326.273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7221cea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:02:21.000Z'}}, {'blockNum': '0x9c10e0', 'uniqueId': '0xacd53eb2662ae5ebf0050eaa4fdea9b65c74684c6e16f08d9847dd0175ec9b5b:log:22', 'hash': '0xacd53eb2662ae5ebf0050eaa4fdea9b65c74684c6e16f08d9847dd0175ec9b5b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 476.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b19853300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:04:36.000Z'}}, {'blockNum': '0x9c10fa', 'uniqueId': '0x5721d31f0e39f6fcdd88f7e9d840214df6bbcf0104892299c9e92535c424799a:log:14', 'hash': '0x5721d31f0e39f6fcdd88f7e9d840214df6bbcf0104892299c9e92535c424799a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xfbc584988f90d2b4f37a83c6a8c8faf0b43ecc2b', 'value': 1056.63491943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x189a08ef67', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:12.000Z'}}, {'blockNum': '0x9c10fc', 'uniqueId': '0x773f9e1b900f76c957e2a14cab50103d3b4b9c7cee4a4f74035c0fc0be713c1a:log:14', 'hash': '0x773f9e1b900f76c957e2a14cab50103d3b4b9c7cee4a4f74035c0fc0be713c1a', 'from': '0xfbc584988f90d2b4f37a83c6a8c8faf0b43ecc2b', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1056.63491942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x189a08ef66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:26.000Z'}}, {'blockNum': '0x9c10fd', 'uniqueId': '0x8c9fd4368018872182915433f5aa86d59f8a7187cbd1232a1350ec190b0ba578:log:5', 'hash': '0x8c9fd4368018872182915433f5aa86d59f8a7187cbd1232a1350ec190b0ba578', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 476.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b19853300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:37.000Z'}}, {'blockNum': '0x9c1106', 'uniqueId': '0xce6adf6a4eb77638b7b647e1ce2ab3813606fe6f329bcca823323bb8717e79c2:log:4', 'hash': '0xce6adf6a4eb77638b7b647e1ce2ab3813606fe6f329bcca823323bb8717e79c2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2239135542266b1231754f7f560bf2639a7ddb9a', 'value': 709.267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10838f8de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:13:46.000Z'}}, {'blockNum': '0x9c1106', 'uniqueId': '0x0d33b3f6fb5a9c6c6bfc22f1debc40e6b8a9b32009a87c724a7e66146838b5ad:log:6', 'hash': '0x0d33b3f6fb5a9c6c6bfc22f1debc40e6b8a9b32009a87c724a7e66146838b5ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7ff0d2adfc9c4cb688139898dd1f12c6fbb0c7c9', 'value': 1362.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbbfe6e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:13:46.000Z'}}, {'blockNum': '0x9c1107', 'uniqueId': '0xd8934fc5fae4fc9ccb168b297bed87100b13e3067bc345fec136d313155dcc73:log:14', 'hash': '0xd8934fc5fae4fc9ccb168b297bed87100b13e3067bc345fec136d313155dcc73', 'from': '0x2239135542266b1231754f7f560bf2639a7ddb9a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 709.267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10838f8de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:14:13.000Z'}}, {'blockNum': '0x9c1107', 'uniqueId': '0x6bac4edcbb4ea409d196e09fedcbc8ac69609d9c34fbc2aa54f3387cce14121f:log:18', 'hash': '0x6bac4edcbb4ea409d196e09fedcbc8ac69609d9c34fbc2aa54f3387cce14121f', 'from': '0x7ff0d2adfc9c4cb688139898dd1f12c6fbb0c7c9', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1362.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbbfe6e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:14:13.000Z'}}, {'blockNum': '0x9c1124', 'uniqueId': '0x4bf4ccbe6d91a009c2be466863fffcf0c15c58060975b5e9bd95120accfebcb4:log:5', 'hash': '0x4bf4ccbe6d91a009c2be466863fffcf0c15c58060975b5e9bd95120accfebcb4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'value': 612.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e42365880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:21:47.000Z'}}, {'blockNum': '0x9c112d', 'uniqueId': '0xa90570997d3a1d7597117b0de21a6c15bb7e5115bf9a906ee0565fa9712a5989:log:3', 'hash': '0xa90570997d3a1d7597117b0de21a6c15bb7e5115bf9a906ee0565fa9712a5989', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 2938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4467d83a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:23:55.000Z'}}, {'blockNum': '0x9c112d', 'uniqueId': '0xdfee7d6e7e6dd2d2a5365921a84034c6e7994f572f8edd4589a6c915aa5d39ae:log:5', 'hash': '0xdfee7d6e7e6dd2d2a5365921a84034c6e7994f572f8edd4589a6c915aa5d39ae', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf84bd1d10fef6feeb7afa3561871716fe3d035c9', 'value': 41.700444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf88dd3f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:23:55.000Z'}}, {'blockNum': '0x9c1130', 'uniqueId': '0xb4a8c9a06f1702c2b8a69b27f4b29c646b54cdddfbe7fcae07f705f6b32aded5:log:7', 'hash': '0xb4a8c9a06f1702c2b8a69b27f4b29c646b54cdddfbe7fcae07f705f6b32aded5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'value': 443.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a55705c60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:25:22.000Z'}}, {'blockNum': '0x9c1144', 'uniqueId': '0x51b4cacdae2adf2c775f695c9a24d796010e2fbdb293fa932cd75ded41b4fced:log:96', 'hash': '0x51b4cacdae2adf2c775f695c9a24d796010e2fbdb293fa932cd75ded41b4fced', 'from': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1056.235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1897a6b4e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:29:01.000Z'}}, {'blockNum': '0x9c1149', 'uniqueId': '0xafcef7f54562898253fa0ba8297605ea357e37b6c8d0cc9ce90ca1739aeb49d3:log:12', 'hash': '0xafcef7f54562898253fa0ba8297605ea357e37b6c8d0cc9ce90ca1739aeb49d3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 709.067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10825e60e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:30:17.000Z'}}, {'blockNum': '0x9c114c', 'uniqueId': '0x736054cf93736621b30e749501f81b68990e48f16c704ad3a5106ca273a388a1:log:14', 'hash': '0x736054cf93736621b30e749501f81b68990e48f16c704ad3a5106ca273a388a1', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4467d83a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:31:36.000Z'}}, {'blockNum': '0x9c1161', 'uniqueId': '0x8cea89f008f6e1aa69aa61a09f632541a79a13df1d18a3c864051d7569e5e199:log:1', 'hash': '0x8cea89f008f6e1aa69aa61a09f632541a79a13df1d18a3c864051d7569e5e199', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9dcb9a3da34e628ed2dcf2e0ab05c0d3d62b2f8', 'value': 34.769243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcf3da78c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:36:17.000Z'}}, {'blockNum': '0x9c1164', 'uniqueId': '0x5e4ca9d6107272cbb4bca2f149df7487f69ad856d62a7cf592d5dc7c71dc9d69:log:25', 'hash': '0x5e4ca9d6107272cbb4bca2f149df7487f69ad856d62a7cf592d5dc7c71dc9d69', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x33d3fe7200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:37:00.000Z'}}, {'blockNum': '0x9c1177', 'uniqueId': '0x272b4ef226a5c84afe7a7cfd45eeb1f753b6f4e27007a55eb924e1fe481598d9:log:136', 'hash': '0x272b4ef226a5c84afe7a7cfd45eeb1f753b6f4e27007a55eb924e1fe481598d9', 'from': '0x32435ff043ac194c8b3406c8d56520c0d18cd15e', 'to': '0x29b6e2749e038d2b984ce547759988070fc20631', 'value': 1686.818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2746380140', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:42:28.000Z'}}, {'blockNum': '0x9c11e7', 'uniqueId': '0x217566785bce9c238024d81f7568c9a3ddf0f40f8102ea9c9e2c0c7dc61d729b:log:161', 'hash': '0x217566785bce9c238024d81f7568c9a3ddf0f40f8102ea9c9e2c0c7dc61d729b', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5ec90d0700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:05:08.000Z'}}, {'blockNum': '0x9c120b', 'uniqueId': '0xe2d0d4651ad8db4ebcf46e5163cde7a879c345007fc72afd24d3a8b161333400:log:134', 'hash': '0xe2d0d4651ad8db4ebcf46e5163cde7a879c345007fc72afd24d3a8b161333400', 'from': '0xb36db036f4c9bededba071d0792bedaf17b89f08', 'to': '0x9ae79d587caeae8981b1203c63e20f1be7c1fa1e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:13:15.000Z'}}, {'blockNum': '0x9c1264', 'uniqueId': '0x3673b156e790c2dabf0a6127519aa99c41e982af6a5026dcdce9954fc9bc1df4:log:0', 'hash': '0x3673b156e790c2dabf0a6127519aa99c41e982af6a5026dcdce9954fc9bc1df4', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'value': 89.74844279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0216f14177', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:27:34.000Z'}}, {'blockNum': '0x9c1280', 'uniqueId': '0x39d3729a4d7b2bd2ab64b9b3d2249baeb4a4efadf14588386cd58165ca914986:log:22', 'hash': '0x39d3729a4d7b2bd2ab64b9b3d2249baeb4a4efadf14588386cd58165ca914986', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd3e8a790b2fbbe53a9db03845bdc0dca3064dc69', 'value': 47.575063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011b91c8fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:33:06.000Z'}}, {'blockNum': '0x9c12b7', 'uniqueId': '0x0b1f1fdc7023d61b55d97786a2816cbdf86a189fc8408d41c99d664075c6d92d:log:15', 'hash': '0x0b1f1fdc7023d61b55d97786a2816cbdf86a189fc8408d41c99d664075c6d92d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18c5ef2800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:43:46.000Z'}}, {'blockNum': '0x9c1302', 'uniqueId': '0x5a515c2eecc3008d1bd81839c8389ff273e149addb2e983059d095a1cea4b260:log:137', 'hash': '0x5a515c2eecc3008d1bd81839c8389ff273e149addb2e983059d095a1cea4b260', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x18a052ff51cf8bfb6b9028eda22b855f1f87df3c', 'value': 491.34842318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b70aa31ce', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:03:49.000Z'}}, {'blockNum': '0x9c1315', 'uniqueId': '0x54457c5332fa99fbbab83f0c9b0889609519eb05e725a345e7b9cd8ae5acec2f:log:196', 'hash': '0x54457c5332fa99fbbab83f0c9b0889609519eb05e725a345e7b9cd8ae5acec2f', 'from': '0x9ae79d587caeae8981b1203c63e20f1be7c1fa1e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:08:20.000Z'}}, {'blockNum': '0x9c1319', 'uniqueId': '0x7520cdb05ed493b946f988dcb78c008567e92a6ed5f9019058f05ccdb9a416d6:log:135', 'hash': '0x7520cdb05ed493b946f988dcb78c008567e92a6ed5f9019058f05ccdb9a416d6', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x0f0c138a6364464d5de4ecf746894443526516e6', 'value': 396.3901736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x093aab6790', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:10:11.000Z'}}, {'blockNum': '0x9c1357', 'uniqueId': '0x234f47bdd482e6be3ca64c84d875c3e74fb28a6bee4c0a3d837fee791871a711:log:153', 'hash': '0x234f47bdd482e6be3ca64c84d875c3e74fb28a6bee4c0a3d837fee791871a711', 'from': '0xe184a8d3a892930221284832d68c77f0d84b9382', 'to': '0x5ab1e75aeefa5883463e170d7229e5f51ece8ad1', 'value': 102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025ff7a600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:24:36.000Z'}}, {'blockNum': '0x9c13e8', 'uniqueId': '0x3afde15545ce85ff251fb14495e61a298921248f04055ee275acce337975e290:log:104', 'hash': '0x3afde15545ce85ff251fb14495e61a298921248f04055ee275acce337975e290', 'from': '0x263dd9b9fa838e6cbe0142b816f6396719502bf1', 'to': '0x6d512f2c26dae6f89c065ef4ee24b625bd8e3544', 'value': 46.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011711a680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:52:24.000Z'}}, {'blockNum': '0x9c1400', 'uniqueId': '0x04430164bd1a2808e72fa78d0f2f9e71ee27d00227242b020117d46cbbe2c619:log:65', 'hash': '0x04430164bd1a2808e72fa78d0f2f9e71ee27d00227242b020117d46cbbe2c619', 'from': '0x58ada76e6afbcd711932f3896e355796f16a6710', 'to': '0x831e5466242fe0e200ff920fc52a69a68b6df171', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:58:16.000Z'}}, {'blockNum': '0x9c140b', 'uniqueId': '0xd7480c85c14163a886ea91d7bce93a71215f574d2cf49a2e4a1a14efe4c4d665:log:12', 'hash': '0xd7480c85c14163a886ea91d7bce93a71215f574d2cf49a2e4a1a14efe4c4d665', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 500.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba9c68540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:00:34.000Z'}}, {'blockNum': '0x9c140b', 'uniqueId': '0xb064a81915548b3434987573bb60399e9edd83f13d053e77196fb16f3ccf1bc8:log:14', 'hash': '0xb064a81915548b3434987573bb60399e9edd83f13d053e77196fb16f3ccf1bc8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 298.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f3bc2ec0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:00:34.000Z'}}, {'blockNum': '0x9c1412', 'uniqueId': '0x16b05d6745770571b10b2225bff96e7da43bb411c6a7f477c2d1d8ee5fac4de4:log:6', 'hash': '0x16b05d6745770571b10b2225bff96e7da43bb411c6a7f477c2d1d8ee5fac4de4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1421.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x21195631c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:02:52.000Z'}}, {'blockNum': '0x9c1416', 'uniqueId': '0x7dbb6991adccf54e2a02f1bd76c2b353bc38808b1a33d72ef0d86f3b31b65f10:log:49', 'hash': '0x7dbb6991adccf54e2a02f1bd76c2b353bc38808b1a33d72ef0d86f3b31b65f10', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 385.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08fa4ba5c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:03:44.000Z'}}]}}
Number of returned transfers:  309
Answer is complete
 
symbol             VIA
group               CW
date        2020-06-10
hour             15:59
exchange       binance
Name: 905, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2020-06-10 15:59:00 2020-06-10 03:59:00 2020-06-11 03:59:00
Unix timestamps:  1591754340.0 1591840740.0
Hex Block Numbers:  0x9c2d1b 0x9c4622
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GXS
group               CW
date        2020-06-15
hour             16:00
exchange       binance
Name: 906, dtype: object
HERE
 Symbol: GXS, Contract: 
Datetime timestamps:  2020-06-15 16:00:00 2020-06-15 04:00:00 2020-06-16 04:00:00
Unix timestamps:  1592186400.0 1592272800.0
Hex Block Numbers:  0x9cab7f 0x9cc4e9
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EVX
group               CW
date        2020-06-24
hour             16:00
exchange       binance
Name: 907, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2020-06-24 16:00:00 2020-06-24 04:00:00 2020-06-25 04:00:00
Unix timestamps:  1592964000.0 1593050400.0
Hex Block Numbers:  0x9d8e95 0x9da7e6
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9d8e9b', 'uniqueId': '0x1c90f5d71e4a45af2371355fc64705aed0382aa449e87c502d7b691a166c7270:log:115', 'hash': '0x1c90f5d71e4a45af2371355fc64705aed0382aa449e87c502d7b691a166c7270', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20771.4124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c61774c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:01:33.000Z'}}, {'blockNum': '0x9d8e9b', 'uniqueId': '0x140595eae1b2c7cc2c88817f2ba1d5283b70b89f4a77cfb29ac5a9ac445911b7:log:179', 'hash': '0x140595eae1b2c7cc2c88817f2ba1d5283b70b89f4a77cfb29ac5a9ac445911b7', 'from': '0x382d8d31d4d911e76dae030bc1bf807d7e806889', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39993.6732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x17d68cdc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:01:33.000Z'}}, {'blockNum': '0x9d8f2a', 'uniqueId': '0x8d139e5a017860c38f7eaf76f594b5c0d3236fcd56835eb27577c9c44e98e0ca:log:154', 'hash': '0x8d139e5a017860c38f7eaf76f594b5c0d3236fcd56835eb27577c9c44e98e0ca', 'from': '0xe6c4ccf63e9b28cc736476a8b81dbcd86c6040e9', 'to': '0x77168aa02f8947265c5fb8d9f1c8b06f75240915', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:32:00.000Z'}}, {'blockNum': '0x9d8f90', 'uniqueId': '0x5df0b096b2199b5ddcc976be574399180e8623650718a902f7a275c1ac54af94:log:31', 'hash': '0x5df0b096b2199b5ddcc976be574399180e8623650718a902f7a275c1ac54af94', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x382d8d31d4d911e76dae030bc1bf807d7e806889', 'value': 19996.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0beb466e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:55:44.000Z'}}, {'blockNum': '0x9d8fa6', 'uniqueId': '0x5f5098c1e8eba7484e94466d4148e9c6576daf046c0d6004b8e8412c7fb2c8f9:log:197', 'hash': '0x5f5098c1e8eba7484e94466d4148e9c6576daf046c0d6004b8e8412c7fb2c8f9', 'from': '0x77168aa02f8947265c5fb8d9f1c8b06f75240915', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:59:45.000Z'}}, {'blockNum': '0x9d8fac', 'uniqueId': '0x31e9a5263efe1ffcca64534634f7ac2e02dadd29e98046bec9844f13d72ef7bb:log:214', 'hash': '0x31e9a5263efe1ffcca64534634f7ac2e02dadd29e98046bec9844f13d72ef7bb', 'from': '0x382d8d31d4d911e76dae030bc1bf807d7e806889', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19996.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0beb466e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T03:00:53.000Z'}}, {'blockNum': '0x9d8fbb', 'uniqueId': '0xdf336dc46eb1f5537665e48d888b4be79071ecf698b04f000487f671fb55c0a1:log:39', 'hash': '0xdf336dc46eb1f5537665e48d888b4be79071ecf698b04f000487f671fb55c0a1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 269266.4104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa07ecb28', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T03:03:07.000Z'}}, {'blockNum': '0x9d9110', 'uniqueId': '0x7a81561e0921b1b4c4ca78a19b54fe452fe67dad383d3c19b472a19f2c225763:log:0', 'hash': '0x7a81561e0921b1b4c4ca78a19b54fe452fe67dad383d3c19b472a19f2c225763', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 5126.7619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e4823', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T04:22:12.000Z'}}, {'blockNum': '0x9d913a', 'uniqueId': '0x5546e49ef62fa408974bf2a409635a993ba6ba22d6945cd9ae0c53c4363ceca4:log:106', 'hash': '0x5546e49ef62fa408974bf2a409635a993ba6ba22d6945cd9ae0c53c4363ceca4', 'from': '0x3178b39cde153c851796cba961f9775df7787d63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5126.7619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e4823', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T04:31:39.000Z'}}, {'blockNum': '0x9d917a', 'uniqueId': '0x21f22e9abdea5f9439ed89813eaf589326ef091e58450eecfc22fc868594b923:log:113', 'hash': '0x21f22e9abdea5f9439ed89813eaf589326ef091e58450eecfc22fc868594b923', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 6782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x040ad9e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T04:48:09.000Z'}}, {'blockNum': '0x9d91a1', 'uniqueId': '0x566b6f920928520224ae6d508747032ffac1e02c35c17009b24e29cb2d60352f:log:20', 'hash': '0x566b6f920928520224ae6d508747032ffac1e02c35c17009b24e29cb2d60352f', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 6782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x040ad9e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T04:58:09.000Z'}}, {'blockNum': '0x9d91af', 'uniqueId': '0x72b309204845959316410a6b57bcd87695fae3d42f49c65dd338cebb18404bb9:log:196', 'hash': '0x72b309204845959316410a6b57bcd87695fae3d42f49c65dd338cebb18404bb9', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2461.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01779858', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T05:02:50.000Z'}}, {'blockNum': '0x9d948d', 'uniqueId': '0x9748208142c0d3cbe08b51278185439da8d9568ef5d2c005936794ae25e2556e:log:139', 'hash': '0x9748208142c0d3cbe08b51278185439da8d9568ef5d2c005936794ae25e2556e', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x6f9d92a034609b67274f601709869b37b13feee4', 'value': 135.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x14b39c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T07:45:03.000Z'}}, {'blockNum': '0x9d9518', 'uniqueId': '0x20599986ff277b8a7a30fbe1be929883f1eb344877e1e4cb560709af850d3943:log:54', 'hash': '0x20599986ff277b8a7a30fbe1be929883f1eb344877e1e4cb560709af850d3943', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 20554.2214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c405346', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T08:14:57.000Z'}}, {'blockNum': '0x9d9572', 'uniqueId': '0xe8ea3b03ce76f7eaa763481b01b18633b2ebe514feeb90298743cd181b61e1f4:log:51', 'hash': '0xe8ea3b03ce76f7eaa763481b01b18633b2ebe514feeb90298743cd181b61e1f4', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20554.2214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c405346', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T08:32:16.000Z'}}, {'blockNum': '0x9d9732', 'uniqueId': '0xeb0daccb47648730483ba094100c7130188d234e56bfef5a1d0e657ab2e895de:log:9', 'hash': '0xeb0daccb47648730483ba094100c7130188d234e56bfef5a1d0e657ab2e895de', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 7243.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04513598', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T10:10:58.000Z'}}, {'blockNum': '0x9d978e', 'uniqueId': '0x3206dc51a283079986619d322dab81c45522360b3ce7e19447d619c562daab5a:log:134', 'hash': '0x3206dc51a283079986619d322dab81c45522360b3ce7e19447d619c562daab5a', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7243.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04513598', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T10:33:36.000Z'}}, {'blockNum': '0x9d97c9', 'uniqueId': '0x3a7c27a3b7146d13b5280e54fdbd9ac2e2111e5f3c95e8e44d26ece6f7241f9f:log:10', 'hash': '0x3a7c27a3b7146d13b5280e54fdbd9ac2e2111e5f3c95e8e44d26ece6f7241f9f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 5652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x035e6d40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T10:46:56.000Z'}}, {'blockNum': '0x9d97e8', 'uniqueId': '0x5d9e4ad3e617cdfc79d7adef74717bd0d6f0ace98384dc43d46d2734ae591f06:log:30', 'hash': '0x5d9e4ad3e617cdfc79d7adef74717bd0d6f0ace98384dc43d46d2734ae591f06', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 7220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044daf40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T10:52:33.000Z'}}, {'blockNum': '0x9d981d', 'uniqueId': '0x194e7d3a475c8c79af43f7806d6f1123adb2a3f8a16707a2bce8befe7f2b65aa:log:103', 'hash': '0x194e7d3a475c8c79af43f7806d6f1123adb2a3f8a16707a2bce8befe7f2b65aa', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07ac1c80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T11:03:34.000Z'}}, {'blockNum': '0x9d98f3', 'uniqueId': '0x626e6832772958918018fd6331a272b93ec935b0234156df40e2429203cd1065:log:18', 'hash': '0x626e6832772958918018fd6331a272b93ec935b0234156df40e2429203cd1065', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 5208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031aad80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T11:48:51.000Z'}}, {'blockNum': '0x9d9943', 'uniqueId': '0xa16b4b150f58cabc99160fc23abbc8bc35294f979ae43edc5654d9cdb69b70b6:log:126', 'hash': '0xa16b4b150f58cabc99160fc23abbc8bc35294f979ae43edc5654d9cdb69b70b6', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031aad80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T12:09:35.000Z'}}, {'blockNum': '0x9d9c9d', 'uniqueId': '0xecdcf57185247a60270d0227a0ae039fe7ddeb3f73fed1950182aa0e5c756270:log:89', 'hash': '0xecdcf57185247a60270d0227a0ae039fe7ddeb3f73fed1950182aa0e5c756270', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 5122.2889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030d9969', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:18:51.000Z'}}, {'blockNum': '0x9d9cc7', 'uniqueId': '0x2810327fa6b61cc13d79e10c664dddf8787f7aacea2e283de150df9bf607729c:log:18', 'hash': '0x2810327fa6b61cc13d79e10c664dddf8787f7aacea2e283de150df9bf607729c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 2172.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014b78cc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:29:51.000Z'}}, {'blockNum': '0x9d9ccf', 'uniqueId': '0x790ffd266a391de272a8d22ec2e1944d5ae9e195ff8cb54b994e1ca7c86a8117:log:143', 'hash': '0x790ffd266a391de272a8d22ec2e1944d5ae9e195ff8cb54b994e1ca7c86a8117', 'from': '0x3178b39cde153c851796cba961f9775df7787d63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5122.2889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030d9969', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:31:46.000Z'}}, {'blockNum': '0x9d9d35', 'uniqueId': '0xd1072def3897a03a3b9058786c62a3d4cd87293282eff1d3c4d35b2594dd2eab:log:44', 'hash': '0xd1072def3897a03a3b9058786c62a3d4cd87293282eff1d3c4d35b2594dd2eab', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 6547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e6fe30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:52:29.000Z'}}, {'blockNum': '0x9d9d55', 'uniqueId': '0x1534d0b5f64c89bc14f3454b6d709ddecc17a68884a30083ee7094eb39690d63:log:23', 'hash': '0x1534d0b5f64c89bc14f3454b6d709ddecc17a68884a30083ee7094eb39690d63', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 5846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x037c0760', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:59:33.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x81e3dd2f1aaad50f8fa9c81e90ad69e036a20af12da9423ffa065f2301d20556:log:65', 'hash': '0x81e3dd2f1aaad50f8fa9c81e90ad69e036a20af12da9423ffa065f2301d20556', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 7176.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0446fc68', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x22267f227bcd6f6536656f9a9947f6134f0adf771f5604ef17b41be77010da58:log:66', 'hash': '0x22267f227bcd6f6536656f9a9947f6134f0adf771f5604ef17b41be77010da58', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 5061.0951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03044307', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0xd1d438be8d789a07f2494f9086bbedcbc2e7a6f6408f010bfb73bc264510e989:log:67', 'hash': '0xd1d438be8d789a07f2494f9086bbedcbc2e7a6f6408f010bfb73bc264510e989', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 5398.4962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0337bec2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x146edba057c89b68434a247ec5daee1065947fc4389262f3da7630c18d0099bf:log:68', 'hash': '0x146edba057c89b68434a247ec5daee1065947fc4389262f3da7630c18d0099bf', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 4663.7675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c7a26b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x973b2955d22d387f5a16cae13a2e1154aa7a5b98916f67d34092c25dfac1eb9e:log:69', 'hash': '0x973b2955d22d387f5a16cae13a2e1154aa7a5b98916f67d34092c25dfac1eb9e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'value': 10438.2696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0638c0e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x4ef14f7c1c9028eddf67ccff28b8169b8f45de4af4d271f247cce6e42048235a:log:71', 'hash': '0x4ef14f7c1c9028eddf67ccff28b8169b8f45de4af4d271f247cce6e42048235a', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x31db4b1de493d8471b3aee635e2e3c38c9f50097', 'value': 711.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6c8158', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x79d62d6b9a5e257fd82c28cbcd7de95620e106e6599bf80944667dd2edcd6a4b:log:72', 'hash': '0x79d62d6b9a5e257fd82c28cbcd7de95620e106e6599bf80944667dd2edcd6a4b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'value': 19225.5436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b7595cc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9e11', 'uniqueId': '0xb60f39e45201822bc0cc6d22453f8bf71ad76ab0035e27289f87f435313dd6b8:log:32', 'hash': '0xb60f39e45201822bc0cc6d22453f8bf71ad76ab0035e27289f87f435313dd6b8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 6698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03fe08a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:39:06.000Z'}}, {'blockNum': '0x9d9e1e', 'uniqueId': '0xc39196b36eb1e28c46bcaf77d7067039687066c83134fa7805daf2e324d4d0bf:log:14', 'hash': '0xc39196b36eb1e28c46bcaf77d7067039687066c83134fa7805daf2e324d4d0bf', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 18504.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b0791fc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:42:47.000Z'}}, {'blockNum': '0x9d9e33', 'uniqueId': '0xae2c9b92874e866a718d9fc5ea2ea69b65de7eeb152bc6147c9933cab4ee4b78:log:7', 'hash': '0xae2c9b92874e866a718d9fc5ea2ea69b65de7eeb152bc6147c9933cab4ee4b78', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 55947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2158d5b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:47:17.000Z'}}, {'blockNum': '0x9d9e36', 'uniqueId': '0x5446e11186388085b14f21130ee044d10c7ffb330548e1296b24ae5ad5c2ff3f:log:107', 'hash': '0x5446e11186388085b14f21130ee044d10c7ffb330548e1296b24ae5ad5c2ff3f', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 6698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03fe08a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:47:43.000Z'}}, {'blockNum': '0x9d9e77', 'uniqueId': '0xde90103ad4286e9714eec55b655237fde214fc5fa14ed875bfd5bc55912415c2:log:35', 'hash': '0xde90103ad4286e9714eec55b655237fde214fc5fa14ed875bfd5bc55912415c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0344f1d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:01:28.000Z'}}, {'blockNum': '0x9d9e7e', 'uniqueId': '0x4613ffa6b2119813d12c53a69758300cb5d8958dc0f80ad313b7c6708494e55a:log:67', 'hash': '0x4613ffa6b2119813d12c53a69758300cb5d8958dc0f80ad313b7c6708494e55a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 27246.4223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x103d795f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:03:58.000Z'}}, {'blockNum': '0x9d9e80', 'uniqueId': '0xc433b87eaa54b253fdad2c4c1182be243999d84bd19fa9e22b2a184ca1bdc7b8:log:76', 'hash': '0xc433b87eaa54b253fdad2c4c1182be243999d84bd19fa9e22b2a184ca1bdc7b8', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xf20bf6342885d0a5663c1559e1f35bf8f7404135', 'value': 45789.7482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1b4af60a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:04:12.000Z'}}, {'blockNum': '0x9d9e99', 'uniqueId': '0x4d8d67d26757ff6d1980dbb00b966aebc33e00d02f4ff31b14a6149381a96152:log:166', 'hash': '0x4d8d67d26757ff6d1980dbb00b966aebc33e00d02f4ff31b14a6149381a96152', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 52346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1f335da0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:08:59.000Z'}}, {'blockNum': '0x9d9e9d', 'uniqueId': '0xdee230a77dd2bf5b593ac94002f045e2ca8b3934bd0130cb43865bbc7bfe1d27:log:98', 'hash': '0xdee230a77dd2bf5b593ac94002f045e2ca8b3934bd0130cb43865bbc7bfe1d27', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0344f1d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:11:18.000Z'}}, {'blockNum': '0x9d9ecb', 'uniqueId': '0xa407c5d79979dc15db5d89143b9ec63a958c3f86c2cbbad7968e88bb9c8883ab:log:168', 'hash': '0xa407c5d79979dc15db5d89143b9ec63a958c3f86c2cbbad7968e88bb9c8883ab', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x31db4b1de493d8471b3aee635e2e3c38c9f50097', 'value': 2997.7099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01c96a0b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:19:32.000Z'}}, {'blockNum': '0x9d9ecb', 'uniqueId': '0xabcf5a4ff1ad99142994b861a1232f151c45d215ea2fa950249f8e6c98ce89b5:log:188', 'hash': '0xabcf5a4ff1ad99142994b861a1232f151c45d215ea2fa950249f8e6c98ce89b5', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2172.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014b78cc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:19:32.000Z'}}, {'blockNum': '0x9d9f35', 'uniqueId': '0xd0be4c4aabda8d0ab4329ae5f63ef7810684e115902c07f219887153555d553b:log:11', 'hash': '0xd0be4c4aabda8d0ab4329ae5f63ef7810684e115902c07f219887153555d553b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 4748.0905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02d48049', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:40:42.000Z'}}, {'blockNum': '0x9da030', 'uniqueId': '0xfe5b309e434bf284ecc1dfd23cc7bdec3131b823ab69026ab14a6a7e8f11d4b0:log:133', 'hash': '0xfe5b309e434bf284ecc1dfd23cc7bdec3131b823ab69026ab14a6a7e8f11d4b0', 'from': '0x3178b39cde153c851796cba961f9775df7787d63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9809.1856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05d8c350', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T18:33:29.000Z'}}, {'blockNum': '0x9da092', 'uniqueId': '0xd83a0539aa61e23fdef1cbb3840338524ac1e072717b541d377e498b2218e024:log:0', 'hash': '0xd83a0539aa61e23fdef1cbb3840338524ac1e072717b541d377e498b2218e024', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 569.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x56d678', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T18:56:45.000Z'}}, {'blockNum': '0x9da0b4', 'uniqueId': '0xf580541990b6fd39c83895d0c9d6b77f33c584f7a2e8eec3116a1de1c819d8fe:log:0', 'hash': '0xf580541990b6fd39c83895d0c9d6b77f33c584f7a2e8eec3116a1de1c819d8fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1729.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0107d6f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:03:27.000Z'}}, {'blockNum': '0x9da0b4', 'uniqueId': '0xdd0549b85a7f636a691df04ad0ad2934cc88996cc78f0983aa8367d8273d1c5a:log:1', 'hash': '0xdd0549b85a7f636a691df04ad0ad2934cc88996cc78f0983aa8367d8273d1c5a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x47afbbd9ff05b4a9c87e3d5a9a861e92cd5ca935', 'value': 477.6332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x48e18c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:03:27.000Z'}}, {'blockNum': '0x9da0cf', 'uniqueId': '0xad687da413f800089600851d51a3b3662aea0121a1f1b210a37149f3ade407c1:log:17', 'hash': '0xad687da413f800089600851d51a3b3662aea0121a1f1b210a37149f3ade407c1', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0x867cfc3e89c66f7385c198ada8c15bace0c99a36', 'value': 69.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0a92a4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:10:27.000Z'}}, {'blockNum': '0x9da140', 'uniqueId': '0x521c82e119c94f2043fa5eb2fe518cc24dbf9b8f7cb7da1c41dd06e2bfb8c132:log:0', 'hash': '0x521c82e119c94f2043fa5eb2fe518cc24dbf9b8f7cb7da1c41dd06e2bfb8c132', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x54a5a4a492048080000ef50f90c69810716b207d', 'value': 368.726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x38435c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:39:26.000Z'}}, {'blockNum': '0x9da166', 'uniqueId': '0xae682f1de87959cb9d21655413dc603dc04ac75ac5d5f28635bd58904439d483:log:18', 'hash': '0xae682f1de87959cb9d21655413dc603dc04ac75ac5d5f28635bd58904439d483', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 585.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x594778', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:49:33.000Z'}}, {'blockNum': '0x9da641', 'uniqueId': '0x35cad93014b0dc172cf3d15844856604d449cd104c94ee18f43d2ffd2597400c:log:27', 'hash': '0x35cad93014b0dc172cf3d15844856604d449cd104c94ee18f43d2ffd2597400c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 731.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6faadb', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-25T00:20:40.000Z'}}, {'blockNum': '0x9da676', 'uniqueId': '0xee607700bc50cb1067e926647b8833f58937a627e9a6059c0ac523823cba881c:log:99', 'hash': '0xee607700bc50cb1067e926647b8833f58937a627e9a6059c0ac523823cba881c', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 731.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6faadb', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-25T00:32:13.000Z'}}, {'blockNum': '0x9da6fa', 'uniqueId': '0x8cb02a2197ca34f6ec31b37a0f28d0beccf66ae4192fe28159446f5e54c31191:log:232', 'hash': '0x8cb02a2197ca34f6ec31b37a0f28d0beccf66ae4192fe28159446f5e54c31191', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07630590', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-25T01:01:11.000Z'}}]}}
Number of returned transfers:  56
Answer is complete
 
symbol             DLT
group               CW
date        2020-11-08
hour             15:00
exchange       binance
Name: 908, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2020-11-08 15:00:00 2020-11-08 03:00:00 2020-11-09 03:00:00
Unix timestamps:  1604800800.0 1604887200.0
Hex Block Numbers:  0xab1c69 0xab35f7
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xab2a4e', 'uniqueId': '0x6a4c9cf536391c19faf72b77eac2f4f6e8c7f10bbefbb93b1ff43152ff9fe2a6:log:69', 'hash': '0x6a4c9cf536391c19faf72b77eac2f4f6e8c7f10bbefbb93b1ff43152ff9fe2a6', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 8019.005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x01b2b60cc0fd994c8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-08T15:13:10.000Z'}}, {'blockNum': '0xab2ad0', 'uniqueId': '0x655405d22001c7ed0b91f84651c7a46841196cb76f5fabb43a0d04f7c7605dec:log:34', 'hash': '0x655405d22001c7ed0b91f84651c7a46841196cb76f5fabb43a0d04f7c7605dec', 'from': '0x9ce7456ec06b1457c91bd4619a08dbe8adc926fd', 'to': '0x605e0ebb227fcacaa43b1480db3c0df8b044c10a', 'value': 4417.586219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xef7a52fcce3bf9b000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-08T15:40:16.000Z'}}, {'blockNum': '0xab2afc', 'uniqueId': '0x8d59a4058f8e2a8ee1fbb8cfe89bd45477a0c9d8da38a707b54d827a322027e2:log:189', 'hash': '0x8d59a4058f8e2a8ee1fbb8cfe89bd45477a0c9d8da38a707b54d827a322027e2', 'from': '0xfdb4db3457398986fa66b31a8df188da58b3d0e9', 'to': '0x502288e248ebeef86662f2e61c8a7420783246a2', 'value': 644.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x22f5c90d2c616a0000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-08T15:49:22.000Z'}}, {'blockNum': '0xab34b4', 'uniqueId': '0xb05d06dcfb0e6ec5a8461f58fc6ed3bf0dc7f39b77109c77401a9feefb66219b:log:71', 'hash': '0xb05d06dcfb0e6ec5a8461f58fc6ed3bf0dc7f39b77109c77401a9feefb66219b', 'from': '0x148b28fa6f4f32d3476767b6bc59269431339647', 'to': '0xdad56dc2c93adcb633ec321c473f7bb5c18c897d', 'value': 19631.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x04283c9120cbac220000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T00:44:53.000Z'}}]}}
Number of returned transfers:  4
Answer is complete
 
symbol            BCPT
group               CW
date        2021-01-09
hour             13:00
exchange       binance
Name: 909, dtype: object
HERE
 Symbol: BCPT, Contract: 
Datetime timestamps:  2021-01-09 13:00:00 2021-01-09 01:00:00 2021-01-10 01:00:00
Unix timestamps:  1610150400.0 1610236800.0
Hex Block Numbers:  0xb143b4 0xb15d00
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BRD
group               SE
date        2018-10-04
hour             18:59
exchange       binance
Name: 910, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2018-10-04 18:59:00 2018-10-04 06:59:00 2018-10-05 06:59:00
Unix timestamps:  1538629140.0 1538715540.0
Hex Block Numbers:  0x626ac7 0x6282eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x626adc', 'uniqueId': '0x3dd1a0d257a7c95c0270d3c70b2addce526725dec745e82ad04af0f4c3c58322:log:49', 'hash': '0x3dd1a0d257a7c95c0270d3c70b2addce526725dec745e82ad04af0f4c3c58322', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x09c4c337a057699579b147afd1b98658a60b11c5', 'value': 731.14064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x27a29d5a54b3c20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:04:58.000Z'}}, {'blockNum': '0x626b51', 'uniqueId': '0x64221cb686ac8c26b114947c656f297555e8d522d2ca4a835e4e8c4f8d2afceb:log:104', 'hash': '0x64221cb686ac8c26b114947c656f297555e8d522d2ca4a835e4e8c4f8d2afceb', 'from': '0xacabdedc64be694e032d5e1da97acb73ab86c46b', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:34:52.000Z'}}, {'blockNum': '0x626b6e', 'uniqueId': '0x958eb4036aa21a6e012995e1c1022e5e3d50d9b48e02dd156b0a67c4c6e18605:log:136', 'hash': '0x958eb4036aa21a6e012995e1c1022e5e3d50d9b48e02dd156b0a67c4c6e18605', 'from': '0xc5763dbc9cab4b4f49f763a2ae1831a204cd489a', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:39:40.000Z'}}, {'blockNum': '0x626b8d', 'uniqueId': '0xecc9e1ad292414be530dbac598baa0c185678e137a596acf7f6e85edc67626e5:log:63', 'hash': '0xecc9e1ad292414be530dbac598baa0c185678e137a596acf7f6e85edc67626e5', 'from': '0xb70d3b11eb811ff61d6505124d1062d569682066', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:46:07.000Z'}}, {'blockNum': '0x626ba1', 'uniqueId': '0xcc59c7ac0e3c01516014c2eeb084ccd5ccd1b06ae695489748153ae772c7d477:log:65', 'hash': '0xcc59c7ac0e3c01516014c2eeb084ccd5ccd1b06ae695489748153ae772c7d477', 'from': '0xbd7b77f1ca0bbbb168c7f262971ce635e98c12da', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:51:10.000Z'}}, {'blockNum': '0x626baf', 'uniqueId': '0x0a6697d6dc6801ae4cf6964545fa1c95e6048983706c8e78a10cb72f9bb02bdf:log:12', 'hash': '0x0a6697d6dc6801ae4cf6964545fa1c95e6048983706c8e78a10cb72f9bb02bdf', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:54:13.000Z'}}, {'blockNum': '0x626bb0', 'uniqueId': '0x8595e50858e962cb43f06d7f654d6ef1b84e2e332a8b58999a4ddaf69266a5c7:log:56', 'hash': '0x8595e50858e962cb43f06d7f654d6ef1b84e2e332a8b58999a4ddaf69266a5c7', 'from': '0x1fd6332b5c8f1ab3cd03c458d889f13be66243b7', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:54:28.000Z'}}, {'blockNum': '0x626bbf', 'uniqueId': '0x84e54724573187cd44064df53130c20c1b869cec5f2ae2e2184061eb57378e0f:log:49', 'hash': '0x84e54724573187cd44064df53130c20c1b869cec5f2ae2e2184061eb57378e0f', 'from': '0x72d57f0be114a148d715ccc12b8c9c68f0443a2d', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T05:57:50.000Z'}}, {'blockNum': '0x626bcb', 'uniqueId': '0x5a5b12611d979bcc34844f67622a9c3f999d70cc97b44f4b147889264070ac34:log:72', 'hash': '0x5a5b12611d979bcc34844f67622a9c3f999d70cc97b44f4b147889264070ac34', 'from': '0x3b9887accf628f6e9078d93b6f6a81dc25222f8c', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:00:07.000Z'}}, {'blockNum': '0x626bd9', 'uniqueId': '0x688e7316f91424ef7b30f5d3085f75fe10b05e6e9629bbdb8337fdfc0ca47716:log:45', 'hash': '0x688e7316f91424ef7b30f5d3085f75fe10b05e6e9629bbdb8337fdfc0ca47716', 'from': '0x063785406203174d0ac5f8f70eaa69874217a849', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:03:25.000Z'}}, {'blockNum': '0x626be6', 'uniqueId': '0x64beaefa7edfd826e04618eacb15553058e560c81da0f1c449c9f47aae5ac110:log:67', 'hash': '0x64beaefa7edfd826e04618eacb15553058e560c81da0f1c449c9f47aae5ac110', 'from': '0x4d4fdf20f48432b9f5f5ea1ee69e1c4d6b77909e', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:06:16.000Z'}}, {'blockNum': '0x626bf6', 'uniqueId': '0x67b4dcbc9bf9741af434e7d292f6054b9298b5cc88c533765a7e955c06b44819:log:147', 'hash': '0x67b4dcbc9bf9741af434e7d292f6054b9298b5cc88c533765a7e955c06b44819', 'from': '0xd003f0f95d34dd66367fa175bda3ab018232396d', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:08:58.000Z'}}, {'blockNum': '0x626c02', 'uniqueId': '0x058f7473a1323d86ebef29953e76d32bff68fa946894ddcf9945ed930523215d:log:130', 'hash': '0x058f7473a1323d86ebef29953e76d32bff68fa946894ddcf9945ed930523215d', 'from': '0x20d64a6ee3c29ac8def6f5287027a93e4e33f892', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:12:26.000Z'}}, {'blockNum': '0x626c07', 'uniqueId': '0x342d7cc5cad3efddb54241e4325bdac699b0489fd141a6fc6a2d15eeed94c0f4:log:17', 'hash': '0x342d7cc5cad3efddb54241e4325bdac699b0489fd141a6fc6a2d15eeed94c0f4', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b6255df5f50080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:14:28.000Z'}}, {'blockNum': '0x626c0e', 'uniqueId': '0x4755f456ce0498434675289fa238fc20917ce1c4f529b70e690a8704aea626fc:log:182', 'hash': '0x4755f456ce0498434675289fa238fc20917ce1c4f529b70e690a8704aea626fc', 'from': '0x289794e726d67440394da92d5710ac91d34f62a5', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:16:00.000Z'}}, {'blockNum': '0x626c24', 'uniqueId': '0xf5e52693873f2775740ac3b3e674251652eefa6646dccaa823ed149ee92510bd:log:49', 'hash': '0xf5e52693873f2775740ac3b3e674251652eefa6646dccaa823ed149ee92510bd', 'from': '0x424f2cc3cb7dd5236065000488e50a6675dd29ac', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:20:14.000Z'}}, {'blockNum': '0x626c24', 'uniqueId': '0xae41854bd17217644fc20141027a8b9366e28fa4aa442c2615e0307cdff9e3e6:log:74', 'hash': '0xae41854bd17217644fc20141027a8b9366e28fa4aa442c2615e0307cdff9e3e6', 'from': '0xe767f58d7aa8322123d5ac374c49dc3757d51163', 'to': '0x5555a1ba00b4c156744f87596c4f386983510682', 'value': 2200.004999815428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x774333db34c1e7f1de', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:20:14.000Z'}}, {'blockNum': '0x626c33', 'uniqueId': '0x6c242b92739f927602a6416a11b584f9a2deac2084f04e835c1bfd05b74d4c69:log:10', 'hash': '0x6c242b92739f927602a6416a11b584f9a2deac2084f04e835c1bfd05b74d4c69', 'from': '0x5555a1ba00b4c156744f87596c4f386983510682', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2200.004999815428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x774333db34c1e7f1de', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:24:20.000Z'}}, {'blockNum': '0x626c3c', 'uniqueId': '0x4b042a22654070295f75ec28f03fdac80eff1cc64d714e29c3dfc21284254013:log:74', 'hash': '0x4b042a22654070295f75ec28f03fdac80eff1cc64d714e29c3dfc21284254013', 'from': '0x58f6ca07d578254138bbe565fd1d41f4fdbc30eb', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:25:48.000Z'}}, {'blockNum': '0x626ccb', 'uniqueId': '0xf2176548a4ec916c5f12abf85adeb2bb8f36a40829e50057a8c982e1a3d1ec71:log:103', 'hash': '0xf2176548a4ec916c5f12abf85adeb2bb8f36a40829e50057a8c982e1a3d1ec71', 'from': '0x7600d996e6dadfd4d54fe75e65b193ebb2c5b23d', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T06:57:59.000Z'}}, {'blockNum': '0x626cfb', 'uniqueId': '0xdfa9a8a49f22602c83b86a5f0adc9b83d61ea09a05fd0a846eae461294b398dd:log:5', 'hash': '0xdfa9a8a49f22602c83b86a5f0adc9b83d61ea09a05fd0a846eae461294b398dd', 'from': '0x43f39896a7dd68b2a9973eeda3f6bcbc41486dbb', 'to': '0xbe43cd014b30a1745997ef58b25d2574f4786089', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T07:09:30.000Z'}}, {'blockNum': '0x626d0d', 'uniqueId': '0xc30143328bb2e03a4ad94e4ee38577d054a7ea66d6bd962f067e2858a843ee19:log:1', 'hash': '0xc30143328bb2e03a4ad94e4ee38577d054a7ea66d6bd962f067e2858a843ee19', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T07:14:09.000Z'}}, {'blockNum': '0x626e21', 'uniqueId': '0xc54e24c6141972635027bf174b043ab72e713c4884409dece322cb7dd5d93f74:log:105', 'hash': '0xc54e24c6141972635027bf174b043ab72e713c4884409dece322cb7dd5d93f74', 'from': '0x70aed692b751d3ee391bcc71f739247a036ea146', 'to': '0xd3386456ccf20348067a838c45fcf3e5f90649a7', 'value': 28.88107381821045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0190ce2f9e8244bed4', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T08:20:45.000Z'}}, {'blockNum': '0x626e4b', 'uniqueId': '0x56ae9bb521dbb8a30ecd820a180af78f89982f93a05d813dab5c335d69af0b67:log:1', 'hash': '0x56ae9bb521dbb8a30ecd820a180af78f89982f93a05d813dab5c335d69af0b67', 'from': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 14230.433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03036eedf96f44568000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T08:29:33.000Z'}}, {'blockNum': '0x626fef', 'uniqueId': '0x05f849638ebd43bba49d9ca58736b04ca03bea069cb62604886c4fff2dee8fcc:log:48', 'hash': '0x05f849638ebd43bba49d9ca58736b04ca03bea069cb62604886c4fff2dee8fcc', 'from': '0xc88b4ef6b3b77619f95e4f4989968beb38700daa', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:07:23.000Z'}}, {'blockNum': '0x627004', 'uniqueId': '0x3bab33b7d763d556c5c870c2d5a30ad7920f292dae88ca0ca0d98ee6facc9edc:log:26', 'hash': '0x3bab33b7d763d556c5c870c2d5a30ad7920f292dae88ca0ca0d98ee6facc9edc', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 38999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x084223d8c27142fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:11:18.000Z'}}, {'blockNum': '0x627045', 'uniqueId': '0xc0ed84078570e5ff241efb8d7c43a5bb336cd739d27985501282980c7dbf7ea6:log:4', 'hash': '0xc0ed84078570e5ff241efb8d7c43a5bb336cd739d27985501282980c7dbf7ea6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:24:09.000Z'}}, {'blockNum': '0x627045', 'uniqueId': '0xd220113e946429ca7c55e7eb25075b9f5efa17aae1a2400e535f1a4db31bea61:log:22', 'hash': '0xd220113e946429ca7c55e7eb25075b9f5efa17aae1a2400e535f1a4db31bea61', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x084223d8c27142fc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:24:09.000Z'}}, {'blockNum': '0x627084', 'uniqueId': '0xa56697c7c8b5e00a33091d3d2a7af9dcaef0833457be06293bcc5e735c6d2540:log:6', 'hash': '0xa56697c7c8b5e00a33091d3d2a7af9dcaef0833457be06293bcc5e735c6d2540', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:37:33.000Z'}}, {'blockNum': '0x6270c6', 'uniqueId': '0xdb5020db70bd4590bd0306b6a5c113d93ceaa3a10405c3a0f47ff4a790973d2e:log:2', 'hash': '0xdb5020db70bd4590bd0306b6a5c113d93ceaa3a10405c3a0f47ff4a790973d2e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T10:51:54.000Z'}}, {'blockNum': '0x627105', 'uniqueId': '0x40c46875ba8c887ce1da27285f3bdb4a4b7d3dc938c8cb630e13fdd118d88416:log:62', 'hash': '0x40c46875ba8c887ce1da27285f3bdb4a4b7d3dc938c8cb630e13fdd118d88416', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:07:48.000Z'}}, {'blockNum': '0x627146', 'uniqueId': '0xa85d16209f9b99214526f2b48e29ba4ef5291228002c31ac9c7b5ec8a6630bf6:log:13', 'hash': '0xa85d16209f9b99214526f2b48e29ba4ef5291228002c31ac9c7b5ec8a6630bf6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:22:48.000Z'}}, {'blockNum': '0x62718c', 'uniqueId': '0x210978ffdc7a0d0d93d95946448a487a2e8127c0927981fd61bfd5d91d44b5f4:log:2', 'hash': '0x210978ffdc7a0d0d93d95946448a487a2e8127c0927981fd61bfd5d91d44b5f4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:38:21.000Z'}}, {'blockNum': '0x6271d2', 'uniqueId': '0x204b94df2e4087ca1f1b14f5041b8e2243f838a39627873a53446d89ea8bc09e:log:10', 'hash': '0x204b94df2e4087ca1f1b14f5041b8e2243f838a39627873a53446d89ea8bc09e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T11:56:00.000Z'}}, {'blockNum': '0x627212', 'uniqueId': '0x8a0e71f5e6eb6d6bbe6efd2228d3c3b4947e8812c143ce7858aec81a1c169117:log:3', 'hash': '0x8a0e71f5e6eb6d6bbe6efd2228d3c3b4947e8812c143ce7858aec81a1c169117', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T12:12:00.000Z'}}, {'blockNum': '0x627255', 'uniqueId': '0xdd7b5f9a64f9bdbf76f25601e0ff78ebf2c6aaf4b50ec7948469298c1c39d313:log:4', 'hash': '0xdd7b5f9a64f9bdbf76f25601e0ff78ebf2c6aaf4b50ec7948469298c1c39d313', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T12:27:16.000Z'}}, {'blockNum': '0x6272ab', 'uniqueId': '0x1342b6b8d40b16929f81ef4c6f4d3578c9a05391310c452a1fa47c14796651f3:log:7', 'hash': '0x1342b6b8d40b16929f81ef4c6f4d3578c9a05391310c452a1fa47c14796651f3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T12:46:39.000Z'}}, {'blockNum': '0x6272f5', 'uniqueId': '0xe11141f6602ee5e43c3ce728e82dbc9fec840e26239257db245da6b50301e414:log:10', 'hash': '0xe11141f6602ee5e43c3ce728e82dbc9fec840e26239257db245da6b50301e414', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:03:25.000Z'}}, {'blockNum': '0x627341', 'uniqueId': '0x9072315a76fe4f5c926544d5e896d15db60c639079516491a1ffa421697fed80:log:1', 'hash': '0x9072315a76fe4f5c926544d5e896d15db60c639079516491a1ffa421697fed80', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:20:55.000Z'}}, {'blockNum': '0x62736c', 'uniqueId': '0x6e00ea4768e39b0623dff6bcd3086e2dc04e3bafc9cad15db8c20dc55bb15bc4:log:103', 'hash': '0x6e00ea4768e39b0623dff6bcd3086e2dc04e3bafc9cad15db8c20dc55bb15bc4', 'from': '0x4f3fbe128c7d217ff465ef8e8fbe4f880bcb0bf5', 'to': '0x31a5b730012fa69657bd96d6daca95e643e9bf2b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:30:35.000Z'}}, {'blockNum': '0x627380', 'uniqueId': '0xfc30e7baf9d355c56cff8b6db8550ce4270bef4cf644a1af967d35ba5a252138:log:2', 'hash': '0xfc30e7baf9d355c56cff8b6db8550ce4270bef4cf644a1af967d35ba5a252138', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:37:28.000Z'}}, {'blockNum': '0x627388', 'uniqueId': '0x758d58a9f216e4d71f02167aa2d0d0e556adbd4d7d319b352e9a8a24fea2fbe0:log:14', 'hash': '0x758d58a9f216e4d71f02167aa2d0d0e556adbd4d7d319b352e9a8a24fea2fbe0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 1480.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x503f4a0f08d2be0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:40:25.000Z'}}, {'blockNum': '0x6273cf', 'uniqueId': '0x10b8701418241a494ac7bfbdb2d294418f7ac953d724c70b688debd034521730:log:4', 'hash': '0x10b8701418241a494ac7bfbdb2d294418f7ac953d724c70b688debd034521730', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1480.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x503f4a0f08d2be0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:54:09.000Z'}}, {'blockNum': '0x6273d7', 'uniqueId': '0xa0b59971dda55122358d46c29b67bba70c78667950cc2eed09017c11738f961b:log:0', 'hash': '0xa0b59971dda55122358d46c29b67bba70c78667950cc2eed09017c11738f961b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T13:57:16.000Z'}}, {'blockNum': '0x6273e8', 'uniqueId': '0x3e2b02c9c7d8da990878cf030480d037327d55707d2d4d626638c97b4f558ce6:log:5', 'hash': '0x3e2b02c9c7d8da990878cf030480d037327d55707d2d4d626638c97b4f558ce6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:01:10.000Z'}}, {'blockNum': '0x627416', 'uniqueId': '0x9fc73ff19d604424c520cdebfec39ac46fe6af7a0826277230f14bb2ebd0193e:log:65', 'hash': '0x9fc73ff19d604424c520cdebfec39ac46fe6af7a0826277230f14bb2ebd0193e', 'from': '0x9c5868b490eab4af7479851be9842929770db405', 'to': '0x37bde7f3739d614da032b2a02c75e273c70a7a86', 'value': 94.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051b49a0e831cc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:13:04.000Z'}}, {'blockNum': '0x62741a', 'uniqueId': '0xcb6be50d5e0307c0c66be56d2646012e4e894326291db9f76f0091830c9bc132:log:4', 'hash': '0xcb6be50d5e0307c0c66be56d2646012e4e894326291db9f76f0091830c9bc132', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:13:56.000Z'}}, {'blockNum': '0x62741b', 'uniqueId': '0x7303c5d92d66cd8f610e83eb3885639069a747b9ed63fee684ffb820d0f3584d:log:13', 'hash': '0x7303c5d92d66cd8f610e83eb3885639069a747b9ed63fee684ffb820d0f3584d', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:14:18.000Z'}}, {'blockNum': '0x627470', 'uniqueId': '0xe8e04a63c18ff9e8dfd9d1ac4d633e5dfc9a641ade54713c8ab5bb6307baee68:log:3', 'hash': '0xe8e04a63c18ff9e8dfd9d1ac4d633e5dfc9a641ade54713c8ab5bb6307baee68', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:33:29.000Z'}}, {'blockNum': '0x6274b0', 'uniqueId': '0xc9f6c696cf396f26dd5c595dd132e172b9d8ac3052a5c6fb1a96755ec49ae3ce:log:3', 'hash': '0xc9f6c696cf396f26dd5c595dd132e172b9d8ac3052a5c6fb1a96755ec49ae3ce', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T14:51:16.000Z'}}, {'blockNum': '0x6274e2', 'uniqueId': '0xcac64e5eb2e853b1ddd38271d4ecee40855b62ff2a69109a8a1c344925eb5951:log:66', 'hash': '0xcac64e5eb2e853b1ddd38271d4ecee40855b62ff2a69109a8a1c344925eb5951', 'from': '0x6bb5543861cf8d51511f81e9eb1e0b16898b4eb5', 'to': '0x9a0e685b21799e5fbe10d5c8c47ddf45df4fec24', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:01:49.000Z'}}, {'blockNum': '0x62750f', 'uniqueId': '0xf43d6c3d6e250090485a7e3798c9dda726a6f97d30d11ab51102f8e2eabdc4f0:log:4', 'hash': '0xf43d6c3d6e250090485a7e3798c9dda726a6f97d30d11ab51102f8e2eabdc4f0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:12:50.000Z'}}, {'blockNum': '0x627531', 'uniqueId': '0xfe3ec1c190c33cfd94b30750e5325dd7c1b4c21fc37b7486454ee3f83d8800bf:log:89', 'hash': '0xfe3ec1c190c33cfd94b30750e5325dd7c1b4c21fc37b7486454ee3f83d8800bf', 'from': '0x141b4ac269a104c9e7b36e7f25d440d8421fc985', 'to': '0x1550d41be3651686e1aeeea073d8d403d0bd2e30', 'value': 3012.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa34948df35d21a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:22:01.000Z'}}, {'blockNum': '0x62754b', 'uniqueId': '0x6168a6a22608838a46be499f5ba37a4ffd18fcba554631ce71b94bf02866a32e:log:74', 'hash': '0x6168a6a22608838a46be499f5ba37a4ffd18fcba554631ce71b94bf02866a32e', 'from': '0x74f320c4785991ee35b89f34744c2e463c65618a', 'to': '0x0d8efaa204f3219ee2782363538461eea98d6c3e', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:27:25.000Z'}}, {'blockNum': '0x62756a', 'uniqueId': '0x3f57ffc30922e3f2863593a42569f4b7a2ff2c51c4ec6693428a02743667cb63:log:3', 'hash': '0x3f57ffc30922e3f2863593a42569f4b7a2ff2c51c4ec6693428a02743667cb63', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:33:59.000Z'}}, {'blockNum': '0x627580', 'uniqueId': '0x53c8b0d5cab7e57cdd6e4f2466366e4085ea1c4750029c9b96906b0df672927a:log:69', 'hash': '0x53c8b0d5cab7e57cdd6e4f2466366e4085ea1c4750029c9b96906b0df672927a', 'from': '0x3324661edc03c120f1257f0657baf7c37e3b2912', 'to': '0xa996691da05207c84f7b0ba4eca2e702c4cd84db', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:38:33.000Z'}}, {'blockNum': '0x627580', 'uniqueId': '0x4322fcfda4b0e41678eddad0e97a8ef3a7f13f2d5663a47dcd40c9c0e36b9ddc:log:117', 'hash': '0x4322fcfda4b0e41678eddad0e97a8ef3a7f13f2d5663a47dcd40c9c0e36b9ddc', 'from': '0x79b0a4775daea12c389055dc6799f7e43c218341', 'to': '0x4d08f3b180122273e9a1b87e5f7e62b1d82c74ee', 'value': 3.63549517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3273df986e7f9400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:38:33.000Z'}}, {'blockNum': '0x6275cb', 'uniqueId': '0x64d350ba1f09b05e2ee66bb3d337dc8d0f22a6259c12b4bfbd9bb8dbfba82937:log:1', 'hash': '0x64d350ba1f09b05e2ee66bb3d337dc8d0f22a6259c12b4bfbd9bb8dbfba82937', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T15:56:55.000Z'}}, {'blockNum': '0x6275f9', 'uniqueId': '0xa4941b85eda5b7b3c54c848b857d2a23a213c25782ea3c0ab512df7c2d330d4f:log:96', 'hash': '0xa4941b85eda5b7b3c54c848b857d2a23a213c25782ea3c0ab512df7c2d330d4f', 'from': '0xe110624bcfbed0350857ff8d438703720abfa504', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:08:38.000Z'}}, {'blockNum': '0x62760d', 'uniqueId': '0x4417eb535848586e5e797d27ceed2a87a2580724619816fcb3fa4df5d7092689:log:41', 'hash': '0x4417eb535848586e5e797d27ceed2a87a2580724619816fcb3fa4df5d7092689', 'from': '0xfab542916b58eb49ed52b4b38d22e2c8fa5fa51f', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:13:07.000Z'}}, {'blockNum': '0x62761e', 'uniqueId': '0xa6907f54f2bc2832f54d386ca4fb66e47aeea8bdf267a65406beea23d6f0364f:log:52', 'hash': '0xa6907f54f2bc2832f54d386ca4fb66e47aeea8bdf267a65406beea23d6f0364f', 'from': '0x94d21b1c8956c3de1d68111b1511f72c10f75bc5', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:16:21.000Z'}}, {'blockNum': '0x627626', 'uniqueId': '0x892a6c4f4d4ebac6b0c76a1b041a32fc634ab60d710287b5036ba07eae89edae:log:1', 'hash': '0x892a6c4f4d4ebac6b0c76a1b041a32fc634ab60d710287b5036ba07eae89edae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:18:37.000Z'}}, {'blockNum': '0x627631', 'uniqueId': '0xab52ca9ff457eaab9a0de6600f548feb565007efdb153f58519b85d69ce9644b:log:40', 'hash': '0xab52ca9ff457eaab9a0de6600f548feb565007efdb153f58519b85d69ce9644b', 'from': '0x6c489a9abdc79551ba4e6b7b60949877373fcddc', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:21:02.000Z'}}, {'blockNum': '0x62763c', 'uniqueId': '0x61a4797c390c5f746012f9795167104ee156ced4fc1a314482a08594e53b0891:log:16', 'hash': '0x61a4797c390c5f746012f9795167104ee156ced4fc1a314482a08594e53b0891', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:24:12.000Z'}}, {'blockNum': '0x62764c', 'uniqueId': '0xa270d2f45a64d232b49ee70b18544d26f69cd5ce02470596551c6ce93a4f64d3:log:141', 'hash': '0xa270d2f45a64d232b49ee70b18544d26f69cd5ce02470596551c6ce93a4f64d3', 'from': '0xb40bf34f87a00ef7bab9da3cca25de872abd2754', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:28:16.000Z'}}, {'blockNum': '0x62764f', 'uniqueId': '0xb9215964df9178f1563e67e509310199bfca00b1044e43d706a988bd1ed9a7f7:log:170', 'hash': '0xb9215964df9178f1563e67e509310199bfca00b1044e43d706a988bd1ed9a7f7', 'from': '0x31281157868fb72197711920e79ecbc2c18bf502', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:28:59.000Z'}}, {'blockNum': '0x627667', 'uniqueId': '0xc25fc80506423a8ef1003f6d3d5d1fa03f01c6a97965e3e1c2b0a4e0bdb5634a:log:170', 'hash': '0xc25fc80506423a8ef1003f6d3d5d1fa03f01c6a97965e3e1c2b0a4e0bdb5634a', 'from': '0x492be2803fe513b4ccafde5f752744cc7d477932', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:33:56.000Z'}}, {'blockNum': '0x627676', 'uniqueId': '0x70fbdac1e73d0be8745a1b2b89a93edce7c5352d1b5433ee9b12f9e9edd375c2:log:53', 'hash': '0x70fbdac1e73d0be8745a1b2b89a93edce7c5352d1b5433ee9b12f9e9edd375c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:39:12.000Z'}}, {'blockNum': '0x62767e', 'uniqueId': '0x7202d3575d5a1e35b2b53dd0fd444a5f750be6890a35fb2cc7c4ca0b12594382:log:309', 'hash': '0x7202d3575d5a1e35b2b53dd0fd444a5f750be6890a35fb2cc7c4ca0b12594382', 'from': '0x5bf13e3867b2caed4f158a773d5a8ae651080992', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:41:48.000Z'}}, {'blockNum': '0x62768c', 'uniqueId': '0xf9755cd4c858155c114ab717a25101735d79044301891d96adc0accee82cdb6b:log:131', 'hash': '0xf9755cd4c858155c114ab717a25101735d79044301891d96adc0accee82cdb6b', 'from': '0x7f37a05c4c56058ff9a58fd2f06faf3b916bcc4b', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:44:51.000Z'}}, {'blockNum': '0x6276a0', 'uniqueId': '0x06113a9297835bb4c06b2311218cfd7fec08328873abb0e2b1a044493a3b7334:log:216', 'hash': '0x06113a9297835bb4c06b2311218cfd7fec08328873abb0e2b1a044493a3b7334', 'from': '0xa29bbf9a52c9a7e36949f8d97a5cc08c886ecde7', 'to': '0x99f69c90e050347da797942929d15e746f22962c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:49:38.000Z'}}, {'blockNum': '0x6276b1', 'uniqueId': '0x4b91dcb65fc47fca4dd2a3cb236503656d873645b05d298466e9d86bd391fc10:log:130', 'hash': '0x4b91dcb65fc47fca4dd2a3cb236503656d873645b05d298466e9d86bd391fc10', 'from': '0x5cbfc7e88d2af99e0748c78cc68dacaf4fd1f89a', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:52:49.000Z'}}, {'blockNum': '0x6276b6', 'uniqueId': '0x8eee0334344dcb377a6f94bd90ee2ff4dd80970f0494410dbca899bcbe996dc9:log:6', 'hash': '0x8eee0334344dcb377a6f94bd90ee2ff4dd80970f0494410dbca899bcbe996dc9', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09c2007651b2500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T16:54:22.000Z'}}, {'blockNum': '0x6276d5', 'uniqueId': '0x20318ffe2ad3f7a716ac84250f015ef3f794f7aef876f96de5ecb7060ff5697b:log:59', 'hash': '0x20318ffe2ad3f7a716ac84250f015ef3f794f7aef876f96de5ecb7060ff5697b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:02:52.000Z'}}, {'blockNum': '0x6276e5', 'uniqueId': '0x40e86bba337df941a05884b5668c994948b4b8ef4970fa751616a1b0138ded2c:log:113', 'hash': '0x40e86bba337df941a05884b5668c994948b4b8ef4970fa751616a1b0138ded2c', 'from': '0xbd3a561344044360f960484c13425e1ce279d09a', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:06:08.000Z'}}, {'blockNum': '0x627719', 'uniqueId': '0x53bd9989005063cf28310e5209190e9360b70480e6c66ab011b749f31822b51a:log:18', 'hash': '0x53bd9989005063cf28310e5209190e9360b70480e6c66ab011b749f31822b51a', 'from': '0x4d32b5adefc491b90462eeb023a587936f4e7c93', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:18:53.000Z'}}, {'blockNum': '0x627729', 'uniqueId': '0xd039ea958a46220d625bb1a68d3c5ca6fbb00b057cb7bcdfb1a7972f489f4992:log:167', 'hash': '0xd039ea958a46220d625bb1a68d3c5ca6fbb00b057cb7bcdfb1a7972f489f4992', 'from': '0xd1370f43af8c96294ed5a0c4ce49d69a470dbea3', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:22:53.000Z'}}, {'blockNum': '0x62773b', 'uniqueId': '0x7d870bfec137eb1f1e8b5b6410d1d3d29549ed787322c0957516ca5cb87f50af:log:0', 'hash': '0x7d870bfec137eb1f1e8b5b6410d1d3d29549ed787322c0957516ca5cb87f50af', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:26:26.000Z'}}, {'blockNum': '0x627754', 'uniqueId': '0x11506e98aa3e53881cae9bdde551ad8eba7c1025167dfe81992730331fe0b268:log:49', 'hash': '0x11506e98aa3e53881cae9bdde551ad8eba7c1025167dfe81992730331fe0b268', 'from': '0xb8664fa70356eba41b1512d214f3fe1e568ae30e', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:32:03.000Z'}}, {'blockNum': '0x62775c', 'uniqueId': '0x3cddce7db79884000632390625791e3bf49ed56487a7a8ab142b96e2d3ef1d42:log:7', 'hash': '0x3cddce7db79884000632390625791e3bf49ed56487a7a8ab142b96e2d3ef1d42', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 120, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x068155a43676e00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:34:19.000Z'}}, {'blockNum': '0x62776c', 'uniqueId': '0xc1f34df3c631793d2c58baf8ad42663f1098beb61d04c8ce9488f65eb7a3b9dd:log:7', 'hash': '0xc1f34df3c631793d2c58baf8ad42663f1098beb61d04c8ce9488f65eb7a3b9dd', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0xd5fbb6a830a39b94d0ef0fd91a0479be30454a19', 'value': 26.832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01745e69d685480000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:36:25.000Z'}}, {'blockNum': '0x627774', 'uniqueId': '0xb1d98a5739e61fd8975dc226e08866b71972f8f483a6930afa94361d82e1501f:log:51', 'hash': '0xb1d98a5739e61fd8975dc226e08866b71972f8f483a6930afa94361d82e1501f', 'from': '0x78709376b18feff6ad1f57cc790462e84ce04b66', 'to': '0xabc04f891ccddaa1c632b49ccd60645f11705ac0', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:38:06.000Z'}}, {'blockNum': '0x627777', 'uniqueId': '0xcb7f1f896a088c8d8b157c779ccb27923a0d4df8139e7ab37e16e369135806b7:log:68', 'hash': '0xcb7f1f896a088c8d8b157c779ccb27923a0d4df8139e7ab37e16e369135806b7', 'from': '0x9c5352b35ddbae83516343e7e1fb030f2b0d367b', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:39:57.000Z'}}, {'blockNum': '0x627780', 'uniqueId': '0xfa137c7aee21ec1074fa2daccd574756bf8c5866acfd30a35df81feecc910bd6:log:51', 'hash': '0xfa137c7aee21ec1074fa2daccd574756bf8c5866acfd30a35df81feecc910bd6', 'from': '0x3b91deaf0f6df4205258080e63e4f5c6630776a7', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:42:25.000Z'}}, {'blockNum': '0x627782', 'uniqueId': '0x49124190f6f3ee6f8015f1e6f7f8b135b1d12ebaf92b7752f33ea66ef74450d4:log:100', 'hash': '0x49124190f6f3ee6f8015f1e6f7f8b135b1d12ebaf92b7752f33ea66ef74450d4', 'from': '0xabc04f891ccddaa1c632b49ccd60645f11705ac0', 'to': '0x72c4d247835f8f18489cb463394ee412db35c844', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:42:31.000Z'}}, {'blockNum': '0x62778c', 'uniqueId': '0xe04f3c6faf4f756f23335a75a37336f78644c3347a225f79f7ba9de9231db894:log:90', 'hash': '0xe04f3c6faf4f756f23335a75a37336f78644c3347a225f79f7ba9de9231db894', 'from': '0xf629e14fcff8c29178d4383b8fe52137a3af06ef', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:44:34.000Z'}}, {'blockNum': '0x627797', 'uniqueId': '0x7489f44e316a73a5895a56bfc314aa27d4445f501006792c22756c862cdc675e:log:82', 'hash': '0x7489f44e316a73a5895a56bfc314aa27d4445f501006792c22756c862cdc675e', 'from': '0xfacc884c4b663fb6aa41af19f96642b1747f88fd', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:47:11.000Z'}}, {'blockNum': '0x6277a0', 'uniqueId': '0xa06d9cd94838c3b615f3e3147fa28ae61ff44bd3d19edaaf6fc099db84e0a08c:log:3', 'hash': '0xa06d9cd94838c3b615f3e3147fa28ae61ff44bd3d19edaaf6fc099db84e0a08c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:48:36.000Z'}}, {'blockNum': '0x6277a3', 'uniqueId': '0x0e68495479948ace9cba61ebe47b9339bbf251860b7645651241f30940f3e4f0:log:51', 'hash': '0x0e68495479948ace9cba61ebe47b9339bbf251860b7645651241f30940f3e4f0', 'from': '0xb76653e84058213007584072ebe121cd7f8b5175', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:49:32.000Z'}}, {'blockNum': '0x6277bb', 'uniqueId': '0x10b99e7d6d9b469a2205c1832695852a495cacda548a286c8e00ec51588f01b7:log:5', 'hash': '0x10b99e7d6d9b469a2205c1832695852a495cacda548a286c8e00ec51588f01b7', 'from': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:54:15.000Z'}}, {'blockNum': '0x6277bb', 'uniqueId': '0xc20723ea1cee744e54f4bce02bef35b6773b8720798cb8ddfaeb51d7f66d6e84:log:62', 'hash': '0xc20723ea1cee744e54f4bce02bef35b6773b8720798cb8ddfaeb51d7f66d6e84', 'from': '0x05d1f9f849bdc2dddc5e55aa263dd8f5afb28d72', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:54:15.000Z'}}, {'blockNum': '0x6277cb', 'uniqueId': '0xd0e65dab3f97241d3d373e67bfb0d5008a6d62a1950cea6178c6ed845c2ee3df:log:80', 'hash': '0xd0e65dab3f97241d3d373e67bfb0d5008a6d62a1950cea6178c6ed845c2ee3df', 'from': '0x5d35cd456ae38d529239c2d07c0331bd40e2bef4', 'to': '0x908e57051a646cc2002eda8fde693bdeeec9f850', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T17:58:12.000Z'}}, {'blockNum': '0x6277e9', 'uniqueId': '0xbc610b9b299bda047a4cff3a1b6026ae363b0f458759499d943fc1c37a158a69:log:3', 'hash': '0xbc610b9b299bda047a4cff3a1b6026ae363b0f458759499d943fc1c37a158a69', 'from': '0x72c4d247835f8f18489cb463394ee412db35c844', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:04:15.000Z'}}, {'blockNum': '0x6277f8', 'uniqueId': '0x7dd66e508b0f6ca5a80357dd6ad7f8409080fd1e872f23702a26da76b041f4ce:log:4', 'hash': '0x7dd66e508b0f6ca5a80357dd6ad7f8409080fd1e872f23702a26da76b041f4ce', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:08:12.000Z'}}, {'blockNum': '0x62783d', 'uniqueId': '0x8bd1327734fa678f12b179fd70e3c58de2f21be938d4aba2818288272de68ca8:log:30', 'hash': '0x8bd1327734fa678f12b179fd70e3c58de2f21be938d4aba2818288272de68ca8', 'from': '0xc909077f26302c3c5b57d6d52464e79543e61b5d', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:24:16.000Z'}}, {'blockNum': '0x627866', 'uniqueId': '0x0165269f7e1a1f5eb75772f92c50d71b215b77f3ab8b45b198b6c865dbfa6759:log:7', 'hash': '0x0165269f7e1a1f5eb75772f92c50d71b215b77f3ab8b45b198b6c865dbfa6759', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:32:10.000Z'}}, {'blockNum': '0x627893', 'uniqueId': '0x38607d53ecc9601ebc72519b28f05ba9d6769f62a007415a77aeeb4a7d57ba7e:log:30', 'hash': '0x38607d53ecc9601ebc72519b28f05ba9d6769f62a007415a77aeeb4a7d57ba7e', 'from': '0x455a591c8bc88257a79f476f84c0a908de926023', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:42:01.000Z'}}, {'blockNum': '0x6278b1', 'uniqueId': '0xbf940a013ac83bd16791b496eca841b9459a3be27c4f7c727689b8cdd92b9616:log:1', 'hash': '0xbf940a013ac83bd16791b496eca841b9459a3be27c4f7c727689b8cdd92b9616', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd0f683e73b07ed0f4970e98e0b7eadbd5a978452', 'value': 121.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x069040cf04646b8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:49:45.000Z'}}, {'blockNum': '0x6278d0', 'uniqueId': '0x5651fc6bd6e2c9605a9b07d625d4733f1a0b716774a0b9a01e165d726ab87c68:log:1', 'hash': '0x5651fc6bd6e2c9605a9b07d625d4733f1a0b716774a0b9a01e165d726ab87c68', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T18:54:10.000Z'}}, {'blockNum': '0x6278f1', 'uniqueId': '0xd71d11279f809e8a289774b8561be544a4c5f8bba391d1df64377a631b5b4a7d:log:5', 'hash': '0xd71d11279f809e8a289774b8561be544a4c5f8bba391d1df64377a631b5b4a7d', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'value': 1481.3061343159159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x504d4090dd333cff92', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:01:28.000Z'}}, {'blockNum': '0x6278f7', 'uniqueId': '0xe08987ce45e7a49a8a9c73c2945f10e936ebade33490010aacffa1069c59cbb3:log:2', 'hash': '0xe08987ce45e7a49a8a9c73c2945f10e936ebade33490010aacffa1069c59cbb3', 'from': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'to': '0x1aec17c86022d023edc04a6816d2f99ab7409038', 'value': 1481.3061343159159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x504d4090dd333cff92', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:02:53.000Z'}}, {'blockNum': '0x627904', 'uniqueId': '0x3857e14240fe41e02c45deb13c6a69c014b1dacbe1a1dddc4c40c1aaa03a131d:log:120', 'hash': '0x3857e14240fe41e02c45deb13c6a69c014b1dacbe1a1dddc4c40c1aaa03a131d', 'from': '0x2796df0c73022291da2e42d71e53d15980c41329', 'to': '0x382e9de4afff488272a6a866c2e3a5094f42b6bd', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:06:05.000Z'}}, {'blockNum': '0x62791e', 'uniqueId': '0xae5213140cf1287a8cf6a258fb68f0bee641d69a62b842af84d007b24aedb28b:log:126', 'hash': '0xae5213140cf1287a8cf6a258fb68f0bee641d69a62b842af84d007b24aedb28b', 'from': '0x78709376b18feff6ad1f57cc790462e84ce04b66', 'to': '0x72c4d247835f8f18489cb463394ee412db35c844', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:12:48.000Z'}}, {'blockNum': '0x627924', 'uniqueId': '0x801e1007ceb0c7b93a94efe5cb9b0ff014b9119f11d8951101704cc3f9e15b1a:log:19', 'hash': '0x801e1007ceb0c7b93a94efe5cb9b0ff014b9119f11d8951101704cc3f9e15b1a', 'from': '0x1aec17c86022d023edc04a6816d2f99ab7409038', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1481.3061343159159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x504d4090dd333cff92', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:14:24.000Z'}}, {'blockNum': '0x627927', 'uniqueId': '0x9aa2d803d3bdffcaebf42fdae2a0d40abf06acf0a0a029220f881b7fb74369cb:log:6', 'hash': '0x9aa2d803d3bdffcaebf42fdae2a0d40abf06acf0a0a029220f881b7fb74369cb', 'from': '0x71481c3ac7853ef63c87f0e9f91b6a5e16e04438', 'to': '0xf91af607d4482d1ae38339e91318ebaf1fe939a4', 'value': 12476.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02a458d4f13323980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:15:56.000Z'}}, {'blockNum': '0x627940', 'uniqueId': '0x92b7979c4fbd45f919ac94f6d137f99ff882e5a231867451591a6e4dbf95aff5:log:56', 'hash': '0x92b7979c4fbd45f919ac94f6d137f99ff882e5a231867451591a6e4dbf95aff5', 'from': '0x6f16336a6a04b13fc9df6228f52951947296574c', 'to': '0xd392167324c6ffdf5c5accdfaaac70fbd780f9d0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:20:48.000Z'}}, {'blockNum': '0x627944', 'uniqueId': '0xde20a3140378a3bfd9b7a8b6ecf9538a66448635af0a448ba30a73a2f569a365:log:11', 'hash': '0xde20a3140378a3bfd9b7a8b6ecf9538a66448635af0a448ba30a73a2f569a365', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:22:08.000Z'}}, {'blockNum': '0x627945', 'uniqueId': '0x35fe7153e368a16cf75406265ba02313ff3c47535527c0c88adc95640d06ff85:log:45', 'hash': '0x35fe7153e368a16cf75406265ba02313ff3c47535527c0c88adc95640d06ff85', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xd5fbb6a830a39b94d0ef0fd91a0479be30454a19', 'value': 2248.56116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79e50dfda1e4488000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:22:15.000Z'}}, {'blockNum': '0x62794a', 'uniqueId': '0x63ff197b52c00ccc2a4e9bede428165e3389090988a10d0842babb575b495a19:log:31', 'hash': '0x63ff197b52c00ccc2a4e9bede428165e3389090988a10d0842babb575b495a19', 'from': '0x41ade1cd005741bd093b4df7391fdd8347dc42ee', 'to': '0x6f616d9579ad49b99a9b0794ef69f63066b1561f', 'value': 361.85862523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x139dcc1670015a8c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:23:20.000Z'}}, {'blockNum': '0x62794e', 'uniqueId': '0x184ff3642dac44ace1cb94a8afc655d60b59ec913fedb720f11a5ec66c9ffa0f:log:19', 'hash': '0x184ff3642dac44ace1cb94a8afc655d60b59ec913fedb720f11a5ec66c9ffa0f', 'from': '0x72c4d247835f8f18489cb463394ee412db35c844', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:24:19.000Z'}}, {'blockNum': '0x627954', 'uniqueId': '0x69520864ecce076dc28cba37e4320734446e1247b14ad6f9b1889754034775dc:log:53', 'hash': '0x69520864ecce076dc28cba37e4320734446e1247b14ad6f9b1889754034775dc', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x09c4c337a057699579b147afd1b98658a60b11c5', 'value': 54.10736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02eee3f53f362e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:26:25.000Z'}}, {'blockNum': '0x627957', 'uniqueId': '0xae08682e3f520877cdd2eef1b606627108d59d30eec764904bbdbf8c3c4b3ebc:log:27', 'hash': '0xae08682e3f520877cdd2eef1b606627108d59d30eec764904bbdbf8c3c4b3ebc', 'from': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'to': '0x2a1c814f53879779a4ebacef52cb3a9311ae9151', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:26:46.000Z'}}, {'blockNum': '0x627964', 'uniqueId': '0x32cec0aa60ff9e3cc063372dc61c44cd914c4c1fd119bb8d117140610dc2fd50:log:7', 'hash': '0x32cec0aa60ff9e3cc063372dc61c44cd914c4c1fd119bb8d117140610dc2fd50', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xbcf3f0b2ea9f3d963f8702f22de8619552bfebc4', 'value': 213.52508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b934178f4a4dd8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:30:41.000Z'}}, {'blockNum': '0x627981', 'uniqueId': '0xce1b3adc22c6386de6ff88c5bed01265b1b8f1a0e07878f8388d94bb4c521d40:log:276', 'hash': '0xce1b3adc22c6386de6ff88c5bed01265b1b8f1a0e07878f8388d94bb4c521d40', 'from': '0xfcbeb5ef8770b1e5f73a824a4ae2f449f78df4b7', 'to': '0x8c7451834b0b2d36f85d7c0eae59e5cdc0060884', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:36:07.000Z'}}, {'blockNum': '0x6279a6', 'uniqueId': '0xf24049b458a7963bd0fbbf9c86a256d207cf38abd69c7e327fd273477d5afc42:log:4', 'hash': '0xf24049b458a7963bd0fbbf9c86a256d207cf38abd69c7e327fd273477d5afc42', 'from': '0x2a1c814f53879779a4ebacef52cb3a9311ae9151', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 210, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b6255df5f50080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:44:15.000Z'}}, {'blockNum': '0x6279b7', 'uniqueId': '0xa338f68d37f46430d5fbe4c754c2986dda4aea4c7ec1d1986ea783e086d26d13:log:254', 'hash': '0xa338f68d37f46430d5fbe4c754c2986dda4aea4c7ec1d1986ea783e086d26d13', 'from': '0x3324661edc03c120f1257f0657baf7c37e3b2912', 'to': '0x70af6f073971e208ba49fe33b44ae071df21a97a', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:47:18.000Z'}}, {'blockNum': '0x6279ba', 'uniqueId': '0x901417706ac0083931e549f17bc99384817318fb01b2e2017680c7dbb3a79fe5:log:0', 'hash': '0x901417706ac0083931e549f17bc99384817318fb01b2e2017680c7dbb3a79fe5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa6a53c3f278d94fe7c0a47c8cfcbafd0e083bf4f', 'value': 6332.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x015744ed8e9108840000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:47:44.000Z'}}, {'blockNum': '0x6279ba', 'uniqueId': '0x489b9956b7b46bf0329878e3a998ff6c84a2bde673278fc7752b9711d9970d1f:log:1', 'hash': '0x489b9956b7b46bf0329878e3a998ff6c84a2bde673278fc7752b9711d9970d1f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:47:44.000Z'}}, {'blockNum': '0x6279c8', 'uniqueId': '0x3ce6b1c4b1f8592a7b78a3b1a83609156e29e2b35c76e9c4baaeeea617aaf6fe:log:28', 'hash': '0x3ce6b1c4b1f8592a7b78a3b1a83609156e29e2b35c76e9c4baaeeea617aaf6fe', 'from': '0xd5fbb6a830a39b94d0ef0fd91a0479be30454a19', 'to': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'value': 2276.8629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7b6dd1f8369dbf4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:51:15.000Z'}}, {'blockNum': '0x6279e4', 'uniqueId': '0x6d0be1790ea54ceee430d7abb70135505d9ce630b60395c56bd8d17dbb84f7d9:log:83', 'hash': '0x6d0be1790ea54ceee430d7abb70135505d9ce630b60395c56bd8d17dbb84f7d9', 'from': '0x88a7d2d08d03432ea6e0b1a58075dbaecc5af1d2', 'to': '0x68ebc3366b6b31101360831c6271c856d910882e', 'value': 2276.8629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7b6dd1f8369dbf4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:58:16.000Z'}}, {'blockNum': '0x6279e5', 'uniqueId': '0xb2d33b3c54ae7546a1e8e72f60117735f96d7297dbebbbd5ac97e108481b9c00:log:88', 'hash': '0xb2d33b3c54ae7546a1e8e72f60117735f96d7297dbebbbd5ac97e108481b9c00', 'from': '0x85c6118b6bddf9ff14790cc8b9525a2bb24c4cd7', 'to': '0xf3e06f567860f59e26289f76fbdccfd4a192f941', 'value': 1000.0017108302231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635cfc1c3925941c7', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T19:58:26.000Z'}}, {'blockNum': '0x627a09', 'uniqueId': '0x2adad8d851cfb15467c0facf126c65f1d61e021ea35b55b68b38a747d170f8d2:log:8', 'hash': '0x2adad8d851cfb15467c0facf126c65f1d61e021ea35b55b68b38a747d170f8d2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2245.76116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79be326477a9308000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:07:46.000Z'}}, {'blockNum': '0x627a11', 'uniqueId': '0x36a171959db3036ea69ce4b391ad86f980b35e1a5fd1b6923a81d67e89c0030f:log:0', 'hash': '0x36a171959db3036ea69ce4b391ad86f980b35e1a5fd1b6923a81d67e89c0030f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 775.99623065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a111c6c5f37574400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:09:57.000Z'}}, {'blockNum': '0x627a13', 'uniqueId': '0xa0ed805269d4c2e4de2c01b6acb2a7657f0dd1486438673dafb337b07f549d52:log:13', 'hash': '0xa0ed805269d4c2e4de2c01b6acb2a7657f0dd1486438673dafb337b07f549d52', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa2a9c5915e59917136929844f1383e81a0921389', 'value': 1190.6084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x408b02bfafb4310000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:10:13.000Z'}}, {'blockNum': '0x627a1b', 'uniqueId': '0x5eee560ffe79e4cad2705eb926293a71922e543a808d1f22f20421f3373ef3ba:log:94', 'hash': '0x5eee560ffe79e4cad2705eb926293a71922e543a808d1f22f20421f3373ef3ba', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 775.99623065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a111c6c5f37574400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:12:19.000Z'}}, {'blockNum': '0x627a31', 'uniqueId': '0x90228175fece24fc26bd133edca0762111e81635654ec94f629c755acb6b0b9f:log:153', 'hash': '0x90228175fece24fc26bd133edca0762111e81635654ec94f629c755acb6b0b9f', 'from': '0x68ebc3366b6b31101360831c6271c856d910882e', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2276.8629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7b6dd1f8369dbf4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:17:32.000Z'}}, {'blockNum': '0x627a31', 'uniqueId': '0xc1c972db694572e339eece0dc1e4542919a8aa2ff4d4107d1fcddb07984f9119:log:154', 'hash': '0xc1c972db694572e339eece0dc1e4542919a8aa2ff4d4107d1fcddb07984f9119', 'from': '0xf3e06f567860f59e26289f76fbdccfd4a192f941', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 1000.0017108302231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635cfc1c3925941c7', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:17:32.000Z'}}, {'blockNum': '0x627a37', 'uniqueId': '0x692f1945418c662dbae25322a5752be848b73621ca56f64e51c9790922eefb91:log:4', 'hash': '0x692f1945418c662dbae25322a5752be848b73621ca56f64e51c9790922eefb91', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:19:44.000Z'}}, {'blockNum': '0x627a40', 'uniqueId': '0xf2c59fea001bb801a818749c47f08963d2ad27788938076dbfcd1dc84bc42eb0:log:0', 'hash': '0xf2c59fea001bb801a818749c47f08963d2ad27788938076dbfcd1dc84bc42eb0', 'from': '0x4976f33befd1297f244a442e996f67aa274e7178', 'to': '0xf91af607d4482d1ae38339e91318ebaf1fe939a4', 'value': 1454.313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4ed6a5b03830aa8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:21:34.000Z'}}, {'blockNum': '0x627a45', 'uniqueId': '0x02f3b3a3447619b4e16311a910f388f2f25933f3529208f3f22f61e95d4bfdbf:log:148', 'hash': '0x02f3b3a3447619b4e16311a910f388f2f25933f3529208f3f22f61e95d4bfdbf', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4ff63af04d0ba0cef0ee98c288e41f6c4f122d1', 'value': 123.81193309035564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06b63c592975148876', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:23:05.000Z'}}, {'blockNum': '0x627a4c', 'uniqueId': '0x9e8df3c929cfbce0179dc0f80220d3910be0de8d21d029181136ba69364adcba:log:11', 'hash': '0x9e8df3c929cfbce0179dc0f80220d3910be0de8d21d029181136ba69364adcba', 'from': '0xa2a9c5915e59917136929844f1383e81a0921389', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1190.6084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x408b02bfafb4310000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:24:19.000Z'}}, {'blockNum': '0x627a4e', 'uniqueId': '0xcb812cc069fc73befc1eb5fa022688af45c82e8a9ebc8965e6a9103567f4b819:log:25', 'hash': '0xcb812cc069fc73befc1eb5fa022688af45c82e8a9ebc8965e6a9103567f4b819', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xf4ff63af04d0ba0cef0ee98c288e41f6c4f122d1', 'value': 87.73348210088984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04c18bf1238ba17504', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:24:37.000Z'}}, {'blockNum': '0x627a59', 'uniqueId': '0xafbb2a1cbeda1dba6d750f161c3223262f3ab1aae73ca7400411422e0c7c5a0d:log:42', 'hash': '0xafbb2a1cbeda1dba6d750f161c3223262f3ab1aae73ca7400411422e0c7c5a0d', 'from': '0x7aa2a3d0b40ea85e57bc91fbe84216a9365f469c', 'to': '0x130bc598e741a848d5e6144721b9628821744f7a', 'value': 619.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2193e6da4734f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:26:45.000Z'}}, {'blockNum': '0x627a7e', 'uniqueId': '0xfa31c5beda94cf428b42e9eb92e63186d4d36b2b8ca4a6522903f7f5cf1c0260:log:0', 'hash': '0xfa31c5beda94cf428b42e9eb92e63186d4d36b2b8ca4a6522903f7f5cf1c0260', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2245.76116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79be326477a9308000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:35:00.000Z'}}, {'blockNum': '0x627a7e', 'uniqueId': '0x86e753ae4556d269d54b210812c38b949ef0267ad029aa539a9176672458f6f2:log:1', 'hash': '0x86e753ae4556d269d54b210812c38b949ef0267ad029aa539a9176672458f6f2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2e5cf5577a1c1abd888162b8fe6f40dec8cf1fd0', 'value': 57.66854386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03204fd31981558800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:35:00.000Z'}}, {'blockNum': '0x627abc', 'uniqueId': '0xff8f7640b9d3a1ec3056c7313ae5368b5574d4162bf0906b575b3e53f5ebc7cf:log:2', 'hash': '0xff8f7640b9d3a1ec3056c7313ae5368b5574d4162bf0906b575b3e53f5ebc7cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:49:14.000Z'}}, {'blockNum': '0x627ad8', 'uniqueId': '0x46bdaff994fa8fac41a593666c8ec76852a7220f40c5f9d2ab63b506e4ef778d:log:2', 'hash': '0x46bdaff994fa8fac41a593666c8ec76852a7220f40c5f9d2ab63b506e4ef778d', 'from': '0x130bc598e741a848d5e6144721b9628821744f7a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 619.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2193e6da4734f40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T20:54:12.000Z'}}, {'blockNum': '0x627b14', 'uniqueId': '0xa7708e0aa62a42bab938ac26aebdada6595325dd6fb417fd4f7079668e63e609:log:0', 'hash': '0xa7708e0aa62a42bab938ac26aebdada6595325dd6fb417fd4f7079668e63e609', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2245.76116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x79be326477a9308000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:06:55.000Z'}}, {'blockNum': '0x627b1f', 'uniqueId': '0x3c76812b6168ca86cfa915087fe0909c287d3e1fb57faa9b01accc861acf03ae:log:4', 'hash': '0x3c76812b6168ca86cfa915087fe0909c287d3e1fb57faa9b01accc861acf03ae', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeea42663d4ea81126008a9933bf652fa7d65303e', 'value': 1070.996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3a0f0e239eb8420000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:09:15.000Z'}}, {'blockNum': '0x627b4e', 'uniqueId': '0xf2ec33d235a4c6bbb05ad678887a9b656a9881526ee30e1d6b9c08edf9f612bc:log:3', 'hash': '0xf2ec33d235a4c6bbb05ad678887a9b656a9881526ee30e1d6b9c08edf9f612bc', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 3731.284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xca45f7b4cf62a20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:19:07.000Z'}}, {'blockNum': '0x627b52', 'uniqueId': '0x656f1a7afb2f889ff51a050585d600120851550eb34354f6e30f3f2f0ae6b422:log:17', 'hash': '0x656f1a7afb2f889ff51a050585d600120851550eb34354f6e30f3f2f0ae6b422', 'from': '0x87ab4cdcedd6ae52a55546b511597857d943ce24', 'to': '0x1012dd462d68109256635a74f1a84f4b6c34b6cf', 'value': 6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01748828669564600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:20:06.000Z'}}, {'blockNum': '0x627b5a', 'uniqueId': '0x763a97335bb10ec785500dcc82403a3559bfca5c51a2e5d503fa5170b75ad151:log:5', 'hash': '0x763a97335bb10ec785500dcc82403a3559bfca5c51a2e5d503fa5170b75ad151', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 728.34064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x277bc1c12a78aa0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:22:36.000Z'}}, {'blockNum': '0x627b87', 'uniqueId': '0x2a128b4bb7ed9ff09ab79ecb5c78af53f04772b0f4a0390c94957d061e8c1dcf:log:3', 'hash': '0x2a128b4bb7ed9ff09ab79ecb5c78af53f04772b0f4a0390c94957d061e8c1dcf', 'from': '0x1012dd462d68109256635a74f1a84f4b6c34b6cf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01748828669564600000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:34:04.000Z'}}, {'blockNum': '0x627b8e', 'uniqueId': '0x965141bb4ab1c056bf160a51088bb1bac6825e993ca25e5b76d30ae3974aac5d:log:4', 'hash': '0x965141bb4ab1c056bf160a51088bb1bac6825e993ca25e5b76d30ae3974aac5d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'value': 480.743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a0fa63b6a179d8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:35:49.000Z'}}, {'blockNum': '0x627bb4', 'uniqueId': '0x3746114baed199913d421456134a59d16af2d24f2220c45aac4a71c6913c88d4:log:1', 'hash': '0x3746114baed199913d421456134a59d16af2d24f2220c45aac4a71c6913c88d4', 'from': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 480.743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a0fa63b6a179d8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:44:06.000Z'}}, {'blockNum': '0x627bc6', 'uniqueId': '0x43d9e4d78554ce816c287c4aea27ba29e3e311f0a9d382afc02961d2013485fb:log:2', 'hash': '0x43d9e4d78554ce816c287c4aea27ba29e3e311f0a9d382afc02961d2013485fb', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'value': 3059.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa5e1c7e885415b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T21:49:25.000Z'}}, {'blockNum': '0x627c12', 'uniqueId': '0x1f1f5fe25472293137aefbf6814c7594d2c5c11efaaa09ae0ebc733fd8d5f88b:log:22', 'hash': '0x1f1f5fe25472293137aefbf6814c7594d2c5c11efaaa09ae0ebc733fd8d5f88b', 'from': '0x0b012feaf9ad02d4f077138ed5036537f19deb18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3059.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa5e1c7e885415b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:03:58.000Z'}}, {'blockNum': '0x627c15', 'uniqueId': '0xbe99987192a75013939f8e64dd68e48ae59b990306fcb278beaef77021eb6e51:log:87', 'hash': '0xbe99987192a75013939f8e64dd68e48ae59b990306fcb278beaef77021eb6e51', 'from': '0x4bf321cccee1961b344821c788b1b62965afbb65', 'to': '0xc4f47c5cd99fc01f4c47fb1743a39e880fd2d5aa', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:05:34.000Z'}}, {'blockNum': '0x627c28', 'uniqueId': '0xfc26fb8d2621cd80d92257d3973c867e0014ec951528838e6129764a2cd9ef8c:log:119', 'hash': '0xfc26fb8d2621cd80d92257d3973c867e0014ec951528838e6129764a2cd9ef8c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x813437c1f305f4f55ff12119ddfef6a368849e65', 'value': 100.5206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x057300e91e79218000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:10:10.000Z'}}, {'blockNum': '0x627c7e', 'uniqueId': '0x63cfe1156c089be80df8cafe6a1cf7d5c61b24ed12cdedc24cbe2be317117233:log:4', 'hash': '0x63cfe1156c089be80df8cafe6a1cf7d5c61b24ed12cdedc24cbe2be317117233', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:32:38.000Z'}}, {'blockNum': '0x627c83', 'uniqueId': '0x1172e2e77d97971f8806d6c76984ea0f483b1df311fa8eea4f37380431107b77:log:69', 'hash': '0x1172e2e77d97971f8806d6c76984ea0f483b1df311fa8eea4f37380431107b77', 'from': '0x08969c7a411508c9cd8f3e342c2bae4e48741650', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:34:28.000Z'}}, {'blockNum': '0x627cb2', 'uniqueId': '0x485be1b0db90f7275e985f73af4bdf9f9420aea5d0e967feae6ddb08d8136a4b:log:16', 'hash': '0x485be1b0db90f7275e985f73af4bdf9f9420aea5d0e967feae6ddb08d8136a4b', 'from': '0xe1edbbe047ace1f791489e2a1f04ac6476ebc988', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T22:43:44.000Z'}}, {'blockNum': '0x627d55', 'uniqueId': '0xf03cdc0f271e0aefdcbc7f9eb9c2adb0aba0b4413ca4300274c7abbd36540bf7:log:103', 'hash': '0xf03cdc0f271e0aefdcbc7f9eb9c2adb0aba0b4413ca4300274c7abbd36540bf7', 'from': '0x387a3cb79141324c25ec4ea3c9b267b550c7fbdc', 'to': '0x83ad8f0b9d5557225093bf4c912f4b521c009cc3', 'value': 80, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04563918244f400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T23:24:22.000Z'}}, {'blockNum': '0x627d9e', 'uniqueId': '0x3340804895bba0c9edf763ec28c68bc1ab084cb3f1ea6d0dc0c687d47e47119a:log:45', 'hash': '0x3340804895bba0c9edf763ec28c68bc1ab084cb3f1ea6d0dc0c687d47e47119a', 'from': '0x14868f90c1665e4c295ed2bc29571073d6ed7a8e', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T23:40:02.000Z'}}, {'blockNum': '0x627dcb', 'uniqueId': '0x96069c4af079311c99e7d579e5ae85876756a140d1bbadeb409dc939c39fc800:log:52', 'hash': '0x96069c4af079311c99e7d579e5ae85876756a140d1bbadeb409dc939c39fc800', 'from': '0xcb2be1a59a0c7ef8d13db4c10ebf91586a7e93a1', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-04T23:50:46.000Z'}}, {'blockNum': '0x627e07', 'uniqueId': '0x17df45d70296badc5c5f715a1973ed086c55c255b72ce657827fb53206a4a486:log:30', 'hash': '0x17df45d70296badc5c5f715a1973ed086c55c255b72ce657827fb53206a4a486', 'from': '0x10ecc85c95a3b121be8bb86676a4443af5ceaaea', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T00:05:35.000Z'}}, {'blockNum': '0x627e50', 'uniqueId': '0x9a9d4c1d0517a18d7c7ff6979c7383c2d1fce2083238375acabe6cb543619a01:log:85', 'hash': '0x9a9d4c1d0517a18d7c7ff6979c7383c2d1fce2083238375acabe6cb543619a01', 'from': '0xf60a804b65d038cf829950ad5289717ed764f590', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T00:19:00.000Z'}}, {'blockNum': '0x627ec5', 'uniqueId': '0x8ceb2c7059457727ab40a5ff5b8393832532aafaf7a4eec04bbd3d203666476b:log:113', 'hash': '0x8ceb2c7059457727ab40a5ff5b8393832532aafaf7a4eec04bbd3d203666476b', 'from': '0x7451f1027a9ae967c8dcdc9e18073a39ced10ddb', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T00:48:39.000Z'}}, {'blockNum': '0x627f0b', 'uniqueId': '0xc3d364dde51a31679e79486bf12bb04f88c0b6121bb1d1a37c9286ac55ba88bd:log:64', 'hash': '0xc3d364dde51a31679e79486bf12bb04f88c0b6121bb1d1a37c9286ac55ba88bd', 'from': '0x5d6dd0cf3c22521d4c89a47feef893c564b25d72', 'to': '0xb9b43e28b51979daae6ea170ff4c844aa8e2d571', 'value': 618.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x218769690beb1a0031', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:03:39.000Z'}}, {'blockNum': '0x627f15', 'uniqueId': '0x290882bfa69f1707df7488fa093a8f64163761d4f25bd0e0695eb21cc3804fee:log:34', 'hash': '0x290882bfa69f1707df7488fa093a8f64163761d4f25bd0e0695eb21cc3804fee', 'from': '0x45e71c66c30681bcbcd8d59156e33ce7a824a680', 'to': '0x79e17aea57f2595df2e060ba9d4c7d1ca7a329d7', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:06:20.000Z'}}, {'blockNum': '0x627f1e', 'uniqueId': '0x0193dd4730628ea9dd82e52e0e57c5203cc256a1be2a67bfabbac2ab49a98efd:log:26', 'hash': '0x0193dd4730628ea9dd82e52e0e57c5203cc256a1be2a67bfabbac2ab49a98efd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x42b6268308947d66b77979536a07605fb489a9de', 'value': 391.904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x153ec2b39a86b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:08:51.000Z'}}, {'blockNum': '0x627f57', 'uniqueId': '0x7723142e42a1b8b90596a379b1952dac31ac97975177ff0e48aee88dfbc4eee4:log:35', 'hash': '0x7723142e42a1b8b90596a379b1952dac31ac97975177ff0e48aee88dfbc4eee4', 'from': '0xb9b43e28b51979daae6ea170ff4c844aa8e2d571', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 618.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x218769690beb1a0031', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:23:28.000Z'}}, {'blockNum': '0x627f78', 'uniqueId': '0x01fb52d9b525f7c0783adf6d0c6e23738725e34ff0137c793f6d77c496965f68:log:1', 'hash': '0x01fb52d9b525f7c0783adf6d0c6e23738725e34ff0137c793f6d77c496965f68', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 4779.256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010315802a6a9e4c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T01:30:38.000Z'}}, {'blockNum': '0x628056', 'uniqueId': '0xed9e77058a43734e4ef6ca2ea1c19ac7674682c5cf70f3b9643d9dba4f1a42ff:log:116', 'hash': '0xed9e77058a43734e4ef6ca2ea1c19ac7674682c5cf70f3b9643d9dba4f1a42ff', 'from': '0xde7fc5d00cdbee01b1509906fce0edb7c82bf5e2', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:21:51.000Z'}}, {'blockNum': '0x62807e', 'uniqueId': '0xdb3664644b06d72560c4a6bcc7c3b482d5edc4cbcf46a5a418678585ddc2077e:log:75', 'hash': '0xdb3664644b06d72560c4a6bcc7c3b482d5edc4cbcf46a5a418678585ddc2077e', 'from': '0xd0bf2401021b23818d93e204fd4f5a1acc6146cf', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:34:20.000Z'}}, {'blockNum': '0x62809c', 'uniqueId': '0x45d8db044aa3198e0a7ea6803103e30a582ebe13023eda5e7a93a2a5a7e87904:log:132', 'hash': '0x45d8db044aa3198e0a7ea6803103e30a582ebe13023eda5e7a93a2a5a7e87904', 'from': '0xbc4d89b45f8cd11d793e7dbe43421c1e12dc0312', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:42:35.000Z'}}, {'blockNum': '0x6280de', 'uniqueId': '0x7bc12fcf71a2ecc516c8555de2b4f1b60f2d097e1ff648128843b2d657cd1f00:log:57', 'hash': '0x7bc12fcf71a2ecc516c8555de2b4f1b60f2d097e1ff648128843b2d657cd1f00', 'from': '0x90142dbf5440c4c20a5e02a18578f27ad83d9534', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T02:57:50.000Z'}}, {'blockNum': '0x628102', 'uniqueId': '0xd093b11599cc9710cf3dcc00f2e03fd46b2990d01b4d888db704bfb9f59fffa9:log:34', 'hash': '0xd093b11599cc9710cf3dcc00f2e03fd46b2990d01b4d888db704bfb9f59fffa9', 'from': '0xa38288466445c8d74a54974c82d940fe4943df5e', 'to': '0xad243e25468dc32255b60a6a5e92a34a545c96af', 'value': 1682.03599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5b2ef04e2ea6e61c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:04:56.000Z'}}, {'blockNum': '0x62811c', 'uniqueId': '0x4be0848c939d622d4216310b76532f6561cb00b05be5dfe3c821168072489513:log:97', 'hash': '0x4be0848c939d622d4216310b76532f6561cb00b05be5dfe3c821168072489513', 'from': '0x5061b5f4f733db4f8fcb05d10fbd35d782fe1b6d', 'to': '0xd51883ca78ab6ae3d297ef2c3730b7bac885c9af', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:09:56.000Z'}}, {'blockNum': '0x62812d', 'uniqueId': '0xff8914bc46662a253101ca0b3129dd56e63bf3760af12c095ac85e6d4be3caac:log:11', 'hash': '0xff8914bc46662a253101ca0b3129dd56e63bf3760af12c095ac85e6d4be3caac', 'from': '0xad243e25468dc32255b60a6a5e92a34a545c96af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1682.03599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5b2ef04e2ea6e61c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:14:07.000Z'}}, {'blockNum': '0x62814b', 'uniqueId': '0x67a8f3201add637986170e5c6f50504623b3182e2b7f62263a50a66ce5c7e0f2:log:12', 'hash': '0x67a8f3201add637986170e5c6f50504623b3182e2b7f62263a50a66ce5c7e0f2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd822d541a9c9f3621eb2ad2530f43f5004002cf4', 'value': 569.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1edc9fe5b825e20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T03:21:10.000Z'}}, {'blockNum': '0x6281ff', 'uniqueId': '0xee6228528a305d9dab67750831517933dbcd966b039fb838313fe42b3f52ad66:log:8', 'hash': '0xee6228528a305d9dab67750831517933dbcd966b039fb838313fe42b3f52ad66', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x3a1daaa8b87ffcb2c1a8870a61481e3dc8a634f7', 'value': 566.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1eb2fdc19d2fb60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T04:01:42.000Z'}}, {'blockNum': '0x628233', 'uniqueId': '0x694f25adec132d0157c0451dc7c87b45d6c7449abf1c80cbcb9829606feedba7:log:25', 'hash': '0x694f25adec132d0157c0451dc7c87b45d6c7449abf1c80cbcb9829606feedba7', 'from': '0x3a1daaa8b87ffcb2c1a8870a61481e3dc8a634f7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 566.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1eb2fdc19d2fb60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T04:14:24.000Z'}}, {'blockNum': '0x628258', 'uniqueId': '0x26e4a932dc4aef3a2e23c21637773c3835deb6cfa3b49b4131432bc73df3f904:log:33', 'hash': '0x26e4a932dc4aef3a2e23c21637773c3835deb6cfa3b49b4131432bc73df3f904', 'from': '0xc60e0ed857bfe4ea8a30ed4b91e368352b7e831d', 'to': '0x3ba57dd1cafe5d34ef78641a1cb847b0893da3cf', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-05T04:23:18.000Z'}}]}}
Number of returned transfers:  174
Answer is complete
 
symbol             OAX
group               SE
date        2018-10-09
hour             19:00
exchange       binance
Name: 911, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2018-10-09 19:00:00 2018-10-09 07:00:00 2018-10-10 07:00:00
Unix timestamps:  1539061200.0 1539147600.0
Hex Block Numbers:  0x62e3ab 0x62fba5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x62e44b', 'uniqueId': '0x388133695df481e8a8af8cb7e56f2181663879a22761250c3a5bef4b7181ba80:log:30', 'hash': '0x388133695df481e8a8af8cb7e56f2181663879a22761250c3a5bef4b7181ba80', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf65e44abc6458c654257ef7e57998a1ad16a31bd', 'value': 1143.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3e034d132ad5400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T05:35:44.000Z'}}, {'blockNum': '0x62e64e', 'uniqueId': '0xaf1689fe72734d1f6e8eaeed162ecf1af104a4c8a577e1db7e6fb2aa86ff4007:log:11', 'hash': '0xaf1689fe72734d1f6e8eaeed162ecf1af104a4c8a577e1db7e6fb2aa86ff4007', 'from': '0x00c24b37407dec11e0330f840e321b38d9a6b5f9', 'to': '0x042ab3f86403cc9cfd722ca1cc503731527fe2a6', 'value': 2038.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6e85e51f0712a70000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T07:42:26.000Z'}}, {'blockNum': '0x62e67e', 'uniqueId': '0xa87cb4bddd0ffd7fce4c1feafc9d058627ffe97ac38e84df7f23c7f30032985e:log:12', 'hash': '0xa87cb4bddd0ffd7fce4c1feafc9d058627ffe97ac38e84df7f23c7f30032985e', 'from': '0x042ab3f86403cc9cfd722ca1cc503731527fe2a6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2038.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6e85e51f0712a70000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T07:53:10.000Z'}}, {'blockNum': '0x62e7aa', 'uniqueId': '0x8e62a4547913b01f1c41d7a2a2c89488bae5677a357671a8d634c8e10b273d73:log:5', 'hash': '0x8e62a4547913b01f1c41d7a2a2c89488bae5677a357671a8d634c8e10b273d73', 'from': '0xbad43f5074c6fa0b1ef306fcbe666836028d6ffd', 'to': '0xbd29701401c9caf611e7557bd21c9199dcaf9db2', 'value': 2477.4304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x864d40decfa9e80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T09:02:34.000Z'}}, {'blockNum': '0x62e7ff', 'uniqueId': '0x60a8bfd66fabf75dbaebe8fb0ba46cdcf1f2e42fdebefec252006916b4273485:log:9', 'hash': '0x60a8bfd66fabf75dbaebe8fb0ba46cdcf1f2e42fdebefec252006916b4273485', 'from': '0xbd29701401c9caf611e7557bd21c9199dcaf9db2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2527.4304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8903248de65b700000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T09:23:07.000Z'}}, {'blockNum': '0x62e935', 'uniqueId': '0x6e635b0fd58a3d1b7f611b12cea0ff8d057c30fc40e6192ef9a9e8e660368fff:log:9', 'hash': '0x6e635b0fd58a3d1b7f611b12cea0ff8d057c30fc40e6192ef9a9e8e660368fff', 'from': '0x860ca90f4eab837d230bc90ce0eeffbdd028f0eb', 'to': '0x39362701afb8877e1ce95812b9b2700c684153db', 'value': 1987.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6bc503b0229b030000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T10:32:29.000Z'}}, {'blockNum': '0x62e9e1', 'uniqueId': '0x25ca7eb6a25e5b1009f7f3e4b295ccaac25825f9c4f9f873cade4d3b03cc1e48:log:2', 'hash': '0x25ca7eb6a25e5b1009f7f3e4b295ccaac25825f9c4f9f873cade4d3b03cc1e48', 'from': '0x39362701afb8877e1ce95812b9b2700c684153db', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1987.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6bc503b0229b030000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T11:13:08.000Z'}}, {'blockNum': '0x62eb1f', 'uniqueId': '0x781b6d9aca81c6db07630a2be709a6fc9926a3012467a11d377fa4eae6d55bb7:log:30', 'hash': '0x781b6d9aca81c6db07630a2be709a6fc9926a3012467a11d377fa4eae6d55bb7', 'from': '0xbca95573f3bd0e11ffda54924d084e450b91a375', 'to': '0x1995a6994f1d8b416c5db7f3ad0ac9a330d53a6f', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T12:28:49.000Z'}}, {'blockNum': '0x62eb4a', 'uniqueId': '0x91171af195b2f28bd07b603dabb9aa27f106b063a65503594b26fdcc2974bcc3:log:25', 'hash': '0x91171af195b2f28bd07b603dabb9aa27f106b063a65503594b26fdcc2974bcc3', 'from': '0xbca95573f3bd0e11ffda54924d084e450b91a375', 'to': '0x1995a6994f1d8b416c5db7f3ad0ac9a330d53a6f', 'value': 110591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x176b266e73c5189c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T12:38:23.000Z'}}, {'blockNum': '0x62eb94', 'uniqueId': '0xed33228f570d1255da7c3509788c62ca5cbf7214e7e997804313e6ce698abc3b:log:17', 'hash': '0xed33228f570d1255da7c3509788c62ca5cbf7214e7e997804313e6ce698abc3b', 'from': '0x1995a6994f1d8b416c5db7f3ad0ac9a330d53a6f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1ba75a30073a7d1c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T12:52:59.000Z'}}, {'blockNum': '0x62ebb1', 'uniqueId': '0x239d96871a77dea490c9d62b1b22ecfc665c5006208f5fc4316d8795c8fef5a7:log:8', 'hash': '0x239d96871a77dea490c9d62b1b22ecfc665c5006208f5fc4316d8795c8fef5a7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9dd12f3f516cc2bdaf283ccc61fc3fae393d3b5f', 'value': 14284.017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0306568e9588d0de8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T13:00:02.000Z'}}, {'blockNum': '0x62ebb5', 'uniqueId': '0x24a64805530db44d20db57a6e7755f5554dca2b3c4b07f9790deb4d922a4d6d3:log:3', 'hash': '0x24a64805530db44d20db57a6e7755f5554dca2b3c4b07f9790deb4d922a4d6d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 111756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x17aa4e0de355dab00000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T13:01:39.000Z'}}, {'blockNum': '0x62ed56', 'uniqueId': '0x27af9151b8c63f9d5eee0d4c4043b180091019aea7a5eb409026fb18f203fdf6:log:33', 'hash': '0x27af9151b8c63f9d5eee0d4c4043b180091019aea7a5eb409026fb18f203fdf6', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'value': 4290.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe894fbb697b06e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T14:43:27.000Z'}}, {'blockNum': '0x62edb4', 'uniqueId': '0xea2affaa52ba295acdb70834b0097e2e38c7a519491655fa01af615ee3237c74:log:4', 'hash': '0xea2affaa52ba295acdb70834b0097e2e38c7a519491655fa01af615ee3237c74', 'from': '0x665ac2d62195c6b7d3a56a4028209f7774fe1bff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4290.38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xe894fbb697b06e0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T15:03:09.000Z'}}, {'blockNum': '0x62f16d', 'uniqueId': '0x8e2180093570c47c25ee610b2a166c2c279ad33d4f299d215857ed58c931c3bf:log:2', 'hash': '0x8e2180093570c47c25ee610b2a166c2c279ad33d4f299d215857ed58c931c3bf', 'from': '0x5e575279bf9f4acf0a130c186861454247394c06', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3012.80569568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xa3531401b138078000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:00:30.000Z'}}, {'blockNum': '0x62f17d', 'uniqueId': '0x556f2df5dabbed8af653ccf54e0ca4d8cf7b716c968ea76811812bee1b0c369d:log:3', 'hash': '0x556f2df5dabbed8af653ccf54e0ca4d8cf7b716c968ea76811812bee1b0c369d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'value': 10323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022f9c674e66e56c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:04:01.000Z'}}, {'blockNum': '0x62f1ce', 'uniqueId': '0x7edb8a03b0140f35c7dfe5e5a45a9518e5f35c78fdcfe5e39718949ef83bafec:log:3', 'hash': '0x7edb8a03b0140f35c7dfe5e5a45a9518e5f35c78fdcfe5e39718949ef83bafec', 'from': '0x2e1daa81ef8f6ce6d025110dabb599a1367e68d5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022f9c674e66e56c0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:23:04.000Z'}}, {'blockNum': '0x62f1ce', 'uniqueId': '0x77ff4cc65ffac9ef39cdc352d87784fade6d5ab574df578958e33b2c9e0db341:log:4', 'hash': '0x77ff4cc65ffac9ef39cdc352d87784fade6d5ab574df578958e33b2c9e0db341', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3248.58049927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0xb01b1c605e71793c00', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:23:04.000Z'}}, {'blockNum': '0x62f1f1', 'uniqueId': '0x4e558ab0c07e1050390eec2d9bc99b8b88755d7ae6ae7414bc346f06bb277aaf:log:99', 'hash': '0x4e558ab0c07e1050390eec2d9bc99b8b88755d7ae6ae7414bc346f06bb277aaf', 'from': '0x3650b69c5e20de43ea101fc97df22daf2a50d9da', 'to': '0xb3663bd49368c5fd7e1bdbed0bbc826f6df9c830', 'value': 9.938287470218e-06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0909f018268a', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T19:30:27.000Z'}}, {'blockNum': '0x62f30f', 'uniqueId': '0x8a5a0c669f8620b59015d7b9f57fdb4eaae6aad043b7e59865d4217a9c9c4be0:log:25', 'hash': '0x8a5a0c669f8620b59015d7b9f57fdb4eaae6aad043b7e59865d4217a9c9c4be0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32946c3d60b751c5f4f8825e59b3e2b41a2211b3', 'value': 2347.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x7f44e1e75a30920000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-09T20:36:06.000Z'}}, {'blockNum': '0x62fa7f', 'uniqueId': '0x91a611910aac577b61eae50dde1f05d00898bd57a231e2f1511d623e5bdedb3a:log:2', 'hash': '0x91a611910aac577b61eae50dde1f05d00898bd57a231e2f1511d623e5bdedb3a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a08ead02f80000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-10T03:48:37.000Z'}}, {'blockNum': '0x62fb1f', 'uniqueId': '0x450f55be57058d73be9e335964ff5eb54580b47974bcbc222fdbb47b1ce27fb9:log:32', 'hash': '0x450f55be57058d73be9e335964ff5eb54580b47974bcbc222fdbb47b1ce27fb9', 'from': '0x71e933f9f2b99af77ba9f0ae3b11215324c4bfb0', 'to': '0x263c640205bb0ff9be3f8ee5436b87b110ec5cfd', 'value': 478.818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x19f4ef421d0efd0000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-10T04:25:37.000Z'}}, {'blockNum': '0x62fb9b', 'uniqueId': '0x540ad3071eed1096d6e504a09bff73f66dfcaa2d19752f97bc10988017bcc94c:log:48', 'hash': '0x540ad3071eed1096d6e504a09bff73f66dfcaa2d19752f97bc10988017bcc94c', 'from': '0x860ca90f4eab837d230bc90ce0eeffbdd028f0eb', 'to': '0x0d793e36f71f3e3a06f57b7049d2f1d1ea4598cd', 'value': 6708.249184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x016ba7a8a30544060000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-10-10T04:58:06.000Z'}}]}}
Number of returned transfers:  23
Answer is complete
 
symbol             NAV
group               SE
date        2019-08-01
hour             20:00
exchange       binance
Name: 912, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-08-01 20:00:00 2019-08-01 08:00:00 2019-08-02 08:00:00
Unix timestamps:  1564639200.0 1564725600.0
Hex Block Numbers:  0x7e15d5 0x7e2ec1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             CVC
group               SE
date        2019-08-13
hour             20:00
exchange       binance
Name: 913, dtype: object
HERE
 Symbol: CVC, Contract: 0x41e5560054824ea6b0732e656e3ad64e20e94e45
Datetime timestamps:  2019-08-13 20:00:00 2019-08-13 08:00:00 2019-08-14 08:00:00
Unix timestamps:  1565676000.0 1565762400.0
Hex Block Numbers:  0x7f43ed 0x7f5d01
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7f43f1', 'uniqueId': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807:log:16', 'hash': '0xd462f90d07f9f53d0253b0790885b109f883ad6546f4e863d39a4e9eb9720807', 'from': '0x3840feee6e82d07dea385b011b597a0ddce74aa7', 'to': '0x0e17fdee2528ee4b6c076fd5fe725b05a6d0566a', 'value': 512.34814767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bedd53b2f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:01:43.000Z'}}, {'blockNum': '0x7f43f5', 'uniqueId': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2:log:0', 'hash': '0x52439710e05d050970d86088bbf0a80f2eb1fd7bbed0ecd2e64ab24bb2c0a5e2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:02:02.000Z'}}, {'blockNum': '0x7f441b', 'uniqueId': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358:log:132', 'hash': '0x0728cdc1a7501444eacf75bb518ac3ca0405602e5b5ca706aca7b0f7e6561358', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49743.66673596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04862f5bcabc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:10:04.000Z'}}, {'blockNum': '0x7f4420', 'uniqueId': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4:log:96', 'hash': '0x8f8b6156acadf56b35ff1ec83fc1d2ff162caf3333d779a3fda9da90bfa309f4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:12:05.000Z'}}, {'blockNum': '0x7f4472', 'uniqueId': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f:log:100', 'hash': '0xfba7b1affe6746c6170e7851c4ad65c69876c53de0f7afa4490d9cf6b640663f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:32:46.000Z'}}, {'blockNum': '0x7f4477', 'uniqueId': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602:log:68', 'hash': '0xaada3cc576bb205d30e540c176e8ddaea914ae7960bff5db847bd418ec6e9602', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:33:47.000Z'}}, {'blockNum': '0x7f4487', 'uniqueId': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf:log:50', 'hash': '0xd956a4b8c9ce9d7e0279c3f5d67a854bb19f34f04af86afb279c253a48096fbf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:36:43.000Z'}}, {'blockNum': '0x7f448b', 'uniqueId': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae:log:95', 'hash': '0x65fb7245948f41d195367bea148c2a4a4d43f9875016151abb389c55fdf454ae', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:37:03.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2:log:94', 'hash': '0xbd001f943b64f695606ddde21649a3aa3ed2a77078df98148eb4aca2baebe9e2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2:log:96', 'hash': '0x3325ab97a8bac32d43584131770ef41a581b978991f6370dcb2b433f2026b9c2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f449b', 'uniqueId': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6:log:98', 'hash': '0x1d9b5c112ae27a2a83f7295173631bd4f637b174261caece7ac1dd5c235a3cd6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T06:42:14.000Z'}}, {'blockNum': '0x7f452e', 'uniqueId': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0:log:30', 'hash': '0xd8b62f6827db6110ceafa8aa2139b8a40969d55d22092b829c3db522d22e4be0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:11:40.000Z'}}, {'blockNum': '0x7f454c', 'uniqueId': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f:log:101', 'hash': '0xa0867820b5bea05690b8020d6a7f740f7f95dd6e60df89022ffb43297d06419f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:19:39.000Z'}}, {'blockNum': '0x7f4568', 'uniqueId': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181:log:27', 'hash': '0x96d3e6d614d445bb8ea66cdcf1652d2565f59909fff631eee7088ec439826181', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:25:06.000Z'}}, {'blockNum': '0x7f4570', 'uniqueId': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b:log:57', 'hash': '0x4f9279658221b70de7775b1113ed5d320cd8d135f665fa67cdcb1ee559cbf73b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:26:11.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d:log:77', 'hash': '0x78899d052b6c2d4a0ff0c0d3a57ffd22547e1119a4f4229d1133676fbae2d46d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f457b', 'uniqueId': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc:log:79', 'hash': '0x1fe75484d66e6191399d9560b319f782b6839bcf7cd1d97fd24db3866c2cd7dc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:28:39.000Z'}}, {'blockNum': '0x7f4581', 'uniqueId': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845:log:105', 'hash': '0x3d928eeafdc48cffdcb9319261026632d6b6e6f385cf4b57f67b07f10e298845', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:30:17.000Z'}}, {'blockNum': '0x7f45b2', 'uniqueId': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848:log:211', 'hash': '0xddfa04bdb443dc35d4867b13676ee07a8ad219ff771735c0eb561ae0a51fe848', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T07:41:43.000Z'}}, {'blockNum': '0x7f462e', 'uniqueId': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093:log:103', 'hash': '0x21938ab804b1ef1755d6befa7b9bd949c971c9c1ea39f382b550b62481497093', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:12:01.000Z'}}, {'blockNum': '0x7f4680', 'uniqueId': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84:log:119', 'hash': '0x58ae0454653019438d2d7e3f0d55ec2ab0afd7b27a112852906d6fee1d195d84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:31:07.000Z'}}, {'blockNum': '0x7f46af', 'uniqueId': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06:log:84', 'hash': '0xc901ee0c2f49a1bc71e47feac4498b76b4c2a9e8031eb6272e541b86f3bc7a06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T08:41:35.000Z'}}, {'blockNum': '0x7f4709', 'uniqueId': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341:log:23', 'hash': '0x7419b7c8835e8483b0d33a809bdee3056fc6120ba1492bf1256567c4ef74a341', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:01:50.000Z'}}, {'blockNum': '0x7f470a', 'uniqueId': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec:log:44', 'hash': '0x6010c2923b8ad38ad595acb2936e2ec099a961987efaf28f2df6b7c11d0e86ec', 'from': '0xaf37117018271a4ab607001179ef389f11c3e580', 'to': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:02:14.000Z'}}, {'blockNum': '0x7f4710', 'uniqueId': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df:log:92', 'hash': '0xd7b88e56d31c80c9eab03bc9b276b03d912ced481cfc1a1363966408697bf7df', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:03:01.000Z'}}, {'blockNum': '0x7f4715', 'uniqueId': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e:log:61', 'hash': '0x2d44d9ee58d0e0441139de1e10fc9b64574746019117e9921f10801cd70f925e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:04:37.000Z'}}, {'blockNum': '0x7f471e', 'uniqueId': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374:log:9', 'hash': '0xd775df107ed724103c7eb1462fe0733a0ca04ce1e6e41a2f2bf1b3ae21e92374', 'from': '0x2ae27588be2e682bf877d4ddef97f6efaef540de', 'to': '0x842a499c04afab73af5b1940ee492cd3f7f3eb2e', 'value': 6080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d8f9fc000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:06:51.000Z'}}, {'blockNum': '0x7f4739', 'uniqueId': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966:log:0', 'hash': '0x01101fd70f809ae62e536088acb0a98e96589564b4eabd47ce87023617db5966', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:14:48.000Z'}}, {'blockNum': '0x7f474a', 'uniqueId': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda:log:61', 'hash': '0x847824858a129551fdbb628518c6b2140746bf71243aee41e20539e52438fdda', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:17:53.000Z'}}, {'blockNum': '0x7f475c', 'uniqueId': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192:log:105', 'hash': '0xe3333f3b800fbc4f8f3815f536eaed341c859def773440d1681b9ccf9cde4192', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95443.25707285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08ae3624b615', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:20:00.000Z'}}, {'blockNum': '0x7f4764', 'uniqueId': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8:log:133', 'hash': '0x21eb0c244f0c44a8d68ced0627e1fb8142a76b1021c8d4685097dcc1e2eccda8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:21:21.000Z'}}, {'blockNum': '0x7f4777', 'uniqueId': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b:log:0', 'hash': '0xf174f050738a96ef3f25c875ef5ebb64e69840038c9dad83db7d03fca0c69d6b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:25:07.000Z'}}, {'blockNum': '0x7f47cf', 'uniqueId': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30:log:3', 'hash': '0x28470ab8676d92f7b8be0f6dc2d141bb2276acf7c512275f2a6cf63d85c2ff30', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 48447.24427285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x046800141a15', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T09:43:44.000Z'}}, {'blockNum': '0x7f482f', 'uniqueId': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302:log:0', 'hash': '0xd3ea56a68953a21f83fbf5df43e9f8d37c9f8e1d247c7b60d649e08423cb2302', 'from': '0x9ba2cb2df0d7d5b3fb1938ce5619339f723e4eb6', 'to': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:03:25.000Z'}}, {'blockNum': '0x7f4849', 'uniqueId': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f:log:14', 'hash': '0x58888ea6029ab575fb3ae053e6f37b94b463e1a2522b347b2632b479ecccdb5f', 'from': '0xb8f11b8416c6c0ad25f913a3606478c6e0003978', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 62.452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01743e3080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:07:13.000Z'}}, {'blockNum': '0x7f485c', 'uniqueId': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56:log:63', 'hash': '0x03855a5c721f6fba3e085551e26b4aa0272bc9807596e38ab088a95d33819a56', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:11:46.000Z'}}, {'blockNum': '0x7f48b4', 'uniqueId': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b:log:41', 'hash': '0x11ebedacaaae5290867f178fd013e0b7010da10955604c405bc22ad28631df5b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:28:54.000Z'}}, {'blockNum': '0x7f48de', 'uniqueId': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0:log:33', 'hash': '0x309d10cd875e418d6be559fdb02267c6a8799d430fd1144f7ec815fba7ec43b0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:39:41.000Z'}}, {'blockNum': '0x7f48e7', 'uniqueId': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579:log:69', 'hash': '0x71a4f58c68db712b3e8a1b6a10f53cc5d21a8c3a5c32b84134ca8f6af5c56579', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:41:09.000Z'}}, {'blockNum': '0x7f4910', 'uniqueId': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812:log:0', 'hash': '0x6d71c90c8f8e933f8972bcde6455f9c6349f999aea3b83c3ec6c1336c354e812', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 195846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11cfe5204600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:50:46.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e:log:47', 'hash': '0xdca641191a4846c25afa8d3709473224a4344aadf1aaa2b925ee93668a33586e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f4920', 'uniqueId': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed:log:49', 'hash': '0x2675a85c38c68391231980fa66835edc42ea0cb56a98e88d160236139ae0b4ed', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:54:13.000Z'}}, {'blockNum': '0x7f492f', 'uniqueId': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6:log:12', 'hash': '0xf0e589fe97ce22991941bbb0f88e5a84b40062d4315e745c71ba821f0718e8b6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T10:58:10.000Z'}}, {'blockNum': '0x7f4938', 'uniqueId': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80:log:100', 'hash': '0x4c091ef0b9773a08dc92b85aefe25087fc346417e0dbbe1affcb326b14120d80', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 424709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x26a086e86500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:00:11.000Z'}}, {'blockNum': '0x7f4968', 'uniqueId': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6:log:2', 'hash': '0x4ba409b5a4c270fe646305d186217f22a114764de559b66fb37a081ec64c03f6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:11:13.000Z'}}, {'blockNum': '0x7f4976', 'uniqueId': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231:log:33', 'hash': '0x878a0855634a7eff17797cf6d5d60d982564d4d05d8d941705479f7570a00231', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:14:45.000Z'}}, {'blockNum': '0x7f4994', 'uniqueId': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e:log:26', 'hash': '0x4a98cfa9e9698415988d3f0fdef9fb0a120387ee4ad82100373a40382915cf9e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:22:07.000Z'}}, {'blockNum': '0x7f49b0', 'uniqueId': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc:log:72', 'hash': '0x593b088f71c03f6605a47c3a6c04b98bf8c1a5c34ada9b5baf3c3a1b863200dc', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49794.15631116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04875c4cc50c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T11:30:06.000Z'}}, {'blockNum': '0x7f4a4a', 'uniqueId': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d:log:0', 'hash': '0xef26ce674b87dbbf9811f0eeb338b411d7b5b5b386d63370ec9ccc98c708303d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:28.000Z'}}, {'blockNum': '0x7f4a4b', 'uniqueId': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab:log:115', 'hash': '0x98a90898878dce7a8c71779669231c07f24491bc46b6bcbc12d65192877a0dab', 'from': '0x6d367f8f9e9c647acf649de37306ff896d09f1f5', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 22303.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02074d9a8980', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:05:50.000Z'}}, {'blockNum': '0x7f4a5d', 'uniqueId': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc:log:82', 'hash': '0x7cf055076fa3abf115b027df77a341b9049f7a70a83cccc8247dec72ab11b3dc', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x055db3677800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:11.000Z'}}, {'blockNum': '0x7f4a61', 'uniqueId': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323:log:0', 'hash': '0x81dbbcbfdfb65483ed0d4b9a5b739459d2a12fd071df5e4e0ef5315f7ff95323', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x69412cde74814fee9553e22a424a0b2889725c5e', 'value': 1034.934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1818aff5c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:10:36.000Z'}}, {'blockNum': '0x7f4a67', 'uniqueId': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf:log:31', 'hash': '0x61a050874f656313e7ac321f9c184327fb03caffc54efd0eff7c94ce1a410baf', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:12:01.000Z'}}, {'blockNum': '0x7f4a87', 'uniqueId': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2:log:104', 'hash': '0xfef6c8a22015d7e1122a8726e2a66a9fdb9b4cb5e032e742b699fd3866cce2d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:28.000Z'}}, {'blockNum': '0x7f4a89', 'uniqueId': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197:log:105', 'hash': '0x53b86a793ec29ff8771199e9fdda3444d77d386110916f592ea4879f19c0a197', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:18:56.000Z'}}, {'blockNum': '0x7f4aa3', 'uniqueId': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90:log:1', 'hash': '0x6a5242043d0b4eb02467f40ee4d9d90cbe593b11336cc2cf7661e489516efc90', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:25:13.000Z'}}, {'blockNum': '0x7f4ab2', 'uniqueId': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588:log:80', 'hash': '0xca77ce4ec17854c92bbf20e183b90e92b6e6dca139dab242a4d2782fa79bd588', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 96849.28334898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08cef2b68c32', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:29:59.000Z'}}, {'blockNum': '0x7f4ac2', 'uniqueId': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e:log:94', 'hash': '0xad4e96b4572a8041549fc23600fc93e10e48e57d23d0bed1c0a44a9f5d500f7e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:33:08.000Z'}}, {'blockNum': '0x7f4ac7', 'uniqueId': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8:log:103', 'hash': '0x02272f1d2cc1c2000ae42503b199231878791e31e1aa7ec86048dbf1aeeccee8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:34:34.000Z'}}, {'blockNum': '0x7f4ad6', 'uniqueId': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4:log:52', 'hash': '0x65349594a37f9687c49cb35bbaf0473ac5d80071b906b7b6a2aecc84829159a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:38:58.000Z'}}, {'blockNum': '0x7f4ad9', 'uniqueId': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea:log:18', 'hash': '0x3dcfc87bcda9ed25c88676136cdf4c27504e1f01b922bbeea2cbc110625dc2ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:39:13.000Z'}}, {'blockNum': '0x7f4ae4', 'uniqueId': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e:log:3', 'hash': '0xa3b8da535cd95f3267099db927b45b087daee832aa59349dabe84fd42e85595e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:41:49.000Z'}}, {'blockNum': '0x7f4aec', 'uniqueId': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f:log:105', 'hash': '0xac553eba70c24ffc13ec48bc2378affd3506aa2dd890c08963158aeb208c166f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:44:26.000Z'}}, {'blockNum': '0x7f4aef', 'uniqueId': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f:log:2', 'hash': '0x2025a23bbe61de886eb02a30b218797503839960bac54571148b90298023316f', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:45:02.000Z'}}, {'blockNum': '0x7f4b02', 'uniqueId': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0:log:64', 'hash': '0x4d2df00b11e92029fea2aa2e3dbdc8482814ec18917f48e963e6a7c9aa2f8bc0', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c5e7f2b4000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:49:50.000Z'}}, {'blockNum': '0x7f4b15', 'uniqueId': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2:log:124', 'hash': '0xd09537a6efb823ea7b4f81c8f7a8e66a9912642f125ee3f8e5a7a21b299263a2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:54:33.000Z'}}, {'blockNum': '0x7f4b26', 'uniqueId': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5:log:116', 'hash': '0xffd54854b2bacfef99c753b18666609e8fc15e73bb5a3bf08629380ee2084cb5', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93908.26598401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088a78e23001', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T12:59:31.000Z'}}, {'blockNum': '0x7f4b34', 'uniqueId': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4:log:106', 'hash': '0x6849fed45177018626f2b33fd6dcb4cc1020f77833b2a1b33127d82878f350a4', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:03:45.000Z'}}, {'blockNum': '0x7f4b3a', 'uniqueId': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8:log:83', 'hash': '0x3275f5dc629c776c68242359d7d5f438822d87732c487176ca1711d38837f6e8', 'from': '0x4003caeff9d6eb5af6927b0842c90f43f31d25d1', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:05:13.000Z'}}, {'blockNum': '0x7f4b51', 'uniqueId': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794:log:79', 'hash': '0xa76094bbffd397b77265f6427b0df458d67bb560ce706776a89435411455c794', 'from': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99424.065368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x090ae59c1e60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:10:13.000Z'}}, {'blockNum': '0x7f4b55', 'uniqueId': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9:log:81', 'hash': '0x03021a5557f992f7ed43b9f835a50ab6c62c8706b93e01685e4c569887d8aca9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:11:44.000Z'}}, {'blockNum': '0x7f4b5b', 'uniqueId': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56:log:27', 'hash': '0x549d6ab5ad47d157374592d74bb577285049ff318922093096b330e7db6bce56', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:12:40.000Z'}}, {'blockNum': '0x7f4b76', 'uniqueId': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072:log:25', 'hash': '0xc6333ebdf385d5cc124e0845f407da98cd5527ccb3855591e909a11c48643072', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:17:42.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f:log:158', 'hash': '0x727e340c7d18031d6e4eadf71005aa21468f69f39dbbd5cfa02f7d9efe4d2e8f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4b7b', 'uniqueId': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52:log:160', 'hash': '0x875005d952afe7548e500b3e97f0ecf844ed59ce76ce920d7e9886a135e92d52', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:19:50.000Z'}}, {'blockNum': '0x7f4bce', 'uniqueId': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170:log:2', 'hash': '0x6f44fa62edbbd0ad871fc38cccaffde70c6ce00f75cbd681b1dff003146d3170', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93234.62781364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x087ac9afe9b4', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:39:22.000Z'}}, {'blockNum': '0x7f4bd1', 'uniqueId': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517:log:3', 'hash': '0x6f96534943e0dfa0ddf0199011af08dfc2970dd8f935734a030343dd20f77517', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 115000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0a758d6a3800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:40:20.000Z'}}, {'blockNum': '0x7f4bd3', 'uniqueId': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3:log:1', 'hash': '0x69a8353964faa7ecf5e140285f5c398d64dd33feb0f1b47dcf0249cd7cae74c3', 'from': '0xc928a3ed8f5f723007b7b1e68d9f918d10dae923', 'to': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:41:44.000Z'}}, {'blockNum': '0x7f4bd7', 'uniqueId': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1:log:1', 'hash': '0x584b2dcbeb9e4854af8283630b7b40820333e1a2044aa8ba2f48d55c0b0e57c1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:43:02.000Z'}}, {'blockNum': '0x7f4bdd', 'uniqueId': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2:log:0', 'hash': '0xc0fd21bb10b1fdb1d8d95ff8e8d971197424155913f63870c9513978b77639d2', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:44:30.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329:log:72', 'hash': '0x168917152554f694879bcdf80eb432b7962bda31eafa2be9bd26332369fca329', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 132569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c0e9cd0b900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bec', 'uniqueId': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac:log:84', 'hash': '0x7f2f3332e70fa95da30514d5a41e330ca1228cb8c984bd7e395ab1fc0e55daac', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x164859cc0800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:50:14.000Z'}}, {'blockNum': '0x7f4bf1', 'uniqueId': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52:log:37', 'hash': '0xfe5ce81548d2fe63354dca5d212224481e4ae90b03c46396bb5c4ea637ba6a52', 'from': '0xcb75906a534b86a4a72ee621e4e071abfe852980', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:10.000Z'}}, {'blockNum': '0x7f4bf2', 'uniqueId': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09:log:117', 'hash': '0x7c885a8fee3e292745a618061e7a95997bcc0d6f4773a3e00055ea2d11cb5f09', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:51:14.000Z'}}, {'blockNum': '0x7f4bfc', 'uniqueId': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263:log:44', 'hash': '0xd22ed27d9495374f21a708dad281e9cbe11ffa2176488c682538c7c53e67d263', 'from': '0xd65e1f33a142d57b431b65d0774d514948a0e0bc', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 20081.3516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d38e2ed0c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:52:42.000Z'}}, {'blockNum': '0x7f4c01', 'uniqueId': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3:log:27', 'hash': '0x659c340ace18167d2a60dcfd198b0cda263e40e658f661d735f3423852dcaaa3', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 20050, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01d2d3501200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:24.000Z'}}, {'blockNum': '0x7f4c06', 'uniqueId': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825:log:6', 'hash': '0xf86d4a013cc3459eed0cb6b7a605e0fcbc4c567a263d26a1fa27c3ff1306a825', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T13:53:59.000Z'}}, {'blockNum': '0x7f4c28', 'uniqueId': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257:log:13', 'hash': '0x3aac3059c0d3a437b4e2a703284eafe5e8011d85c35e995ef94d9e03f5b10257', 'from': '0xcf57c6d76bcaa985f25f45f02cb29f11fbaa136b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba7def3000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:00:09.000Z'}}, {'blockNum': '0x7f4c3e', 'uniqueId': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec:log:127', 'hash': '0xd1653a0a16d19ef8bc233e6208910e3b134a428050beab219ca2683e437823ec', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:05:57.000Z'}}, {'blockNum': '0x7f4c40', 'uniqueId': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e:log:117', 'hash': '0xe1cbfbadff35defb35640813df50ceb210701e79fdb248bf8f0eca3cdd3cd34e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:06:11.000Z'}}, {'blockNum': '0x7f4c50', 'uniqueId': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45:log:75', 'hash': '0x2ba2cfd3951c41340ba4fb7406fa7f2d0dac948940f7186321deab0df74f6d45', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:09:34.000Z'}}, {'blockNum': '0x7f4c55', 'uniqueId': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c:log:134', 'hash': '0x627aaf6db3905e0a54933ef6e4a79aca3fd55ffcc9133f5fb16334b9f54dea5c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:11:17.000Z'}}, {'blockNum': '0x7f4c59', 'uniqueId': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486:log:6', 'hash': '0x0a70b415dadb95ee3fa56799d36f4934fb8301d770369e9227a535ff7f8d7486', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49460.60042325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x047f9826e055', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:13:44.000Z'}}, {'blockNum': '0x7f4c80', 'uniqueId': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a:log:6', 'hash': '0xacf8f9c97ab942b4250cc8c38493f267335ab2cf54eb4f32656bb4ce78330f8a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe905e6691019605015334b20bdf2882f65de0153', 'value': 1241.769537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1ce985f164', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:20:55.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63:log:44', 'hash': '0x6c7f5925877b7b9d51b6e82194a4b346ac0d14fd606ea57533e72a516d602d63', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01747790', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c92', 'uniqueId': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876:log:89', 'hash': '0x43f4b4c2768f7b6467e476178bd562c1688c7cd3efdf9bba75c9736703463876', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:26:24.000Z'}}, {'blockNum': '0x7f4c94', 'uniqueId': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7:log:95', 'hash': '0xe13ff0629b69430f7199f0f13d15d3eb8361aed188a7e78535a7a89f1ba724f7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:10.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f:log:18', 'hash': '0xf1c61d229ed5b46a5181589800261cc599eaaa09a7bdda922fbd389a0988272f', 'from': '0xaa33c73a6bc3044ece79de75eed32970622026df', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01767360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef:log:70', 'hash': '0xba446377651eb1f42a4c9e001a91aaa6b204ed57d4f12751d37d3b8440b45fef', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c96', 'uniqueId': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8:log:72', 'hash': '0x12c5f0b03e7058ab8aa197bf92edee899c4b29a78c10509fbc046c8ac05468d8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:47.000Z'}}, {'blockNum': '0x7f4c98', 'uniqueId': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416:log:120', 'hash': '0xaf9924d87f069b8c3623c448cdfb2a146e70202e27aa79c352687dfa2f81f416', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:27:57.000Z'}}, {'blockNum': '0x7f4ca2', 'uniqueId': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b:log:107', 'hash': '0xb752079269420d5baca971675a9955e08a2ac8bf8368a4dce1c9736fbc9bcd3b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:30:09.000Z'}}, {'blockNum': '0x7f4cc0', 'uniqueId': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06:log:22', 'hash': '0xe3be47f90acb6a2489f4c62d6de18f8c2aa42dd74e097fbc1e2a5331f98eac06', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:35:36.000Z'}}, {'blockNum': '0x7f4cf2', 'uniqueId': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70:log:86', 'hash': '0x0593e75e73155067efc7c70b0e9a05af88c693cf68f080dda7092479b72b7a70', 'from': '0xcc6648fe5eccd8772c9a19d704370d708af02466', 'to': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:46:36.000Z'}}, {'blockNum': '0x7f4d06', 'uniqueId': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991:log:65', 'hash': '0x005ef785052199af9d65e889567a322a87ab8063cad9d965f019aa9fbee31991', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:20.000Z'}}, {'blockNum': '0x7f4d08', 'uniqueId': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7:log:75', 'hash': '0xa3e072f22d42035a011f957154121eb711d631b616a3cb0820f0bed8f4748ff7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:50:31.000Z'}}, {'blockNum': '0x7f4d09', 'uniqueId': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32:log:67', 'hash': '0xb99d749ce1d4b299fe909f15b9515d55417f4522c8d307e2b0089a48e8fa2b32', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:01.000Z'}}, {'blockNum': '0x7f4d0b', 'uniqueId': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d:log:34', 'hash': '0xbd86fcd06005af5c416047d214bf3df17aa570c92ea777ea3cf63bdeebc07f8d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:51:54.000Z'}}, {'blockNum': '0x7f4d0e', 'uniqueId': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f:log:19', 'hash': '0x01a7fdf9d0282a3d79a9e6ab6386899c03482a5fdf1c63ef09f9eed75e28637f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:52:27.000Z'}}, {'blockNum': '0x7f4d13', 'uniqueId': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1:log:82', 'hash': '0x9dbcc757e60d26c2eeb51a326ddb446f9b3e8a20a376a51bcf88b05457e723a1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:22.000Z'}}, {'blockNum': '0x7f4d14', 'uniqueId': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922:log:7', 'hash': '0xfc06c193d31a36984ba8cb26aa830a51a4fcfed01b86f4469fe2e22e010ca922', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:28.000Z'}}, {'blockNum': '0x7f4d15', 'uniqueId': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb:log:25', 'hash': '0x842118098de7591a8ef5aba98fec28f19ad8606180f0a10e5603d2eb23c7fcbb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:54:38.000Z'}}, {'blockNum': '0x7f4d1c', 'uniqueId': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf:log:57', 'hash': '0x910a94c6becc53fcfd72eac53f112b4e5bd81253b93df3945d002037102deacf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:55:36.000Z'}}, {'blockNum': '0x7f4d1f', 'uniqueId': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc:log:31', 'hash': '0x259fa9599d82793f174993d0121032c4e8cda0c1f421cc028244e860e229c2bc', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1740.287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2884eb3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:24.000Z'}}, {'blockNum': '0x7f4d21', 'uniqueId': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b:log:37', 'hash': '0x36fff7cfe98539d8cc474b5b816ee9ab97ee281fe5334032003290d754ef845b', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:57:29.000Z'}}, {'blockNum': '0x7f4d2a', 'uniqueId': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58:log:30', 'hash': '0x4e8c07cfc0e8c9f17bdf4e840bfb7881f64f26d62fce3fa35d2339048040df58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T14:59:01.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2:log:32', 'hash': '0xa17122886556bfb483df717e31c790354ba9cfc2f5a9d6651c595304bffe2af2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1:log:34', 'hash': '0x414870a07816c5427d5b33563ebfc1bacf73af822fc394369eba14cc0b0b30e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4d63', 'uniqueId': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a:log:36', 'hash': '0xac4b2f46620a12df30115d1184159a99d8ecfdf188649e9d527059705b73eb2a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:11:40.000Z'}}, {'blockNum': '0x7f4db9', 'uniqueId': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f:log:71', 'hash': '0x2da1c6aebf618dda603d498fd22773eae329990fc22a8177aced151798133a2f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:04.000Z'}}, {'blockNum': '0x7f4dba', 'uniqueId': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a:log:128', 'hash': '0x0137bb39cbc86a7f1730d5b1d01906da8207cf239a9e99775bd44b26a8bd651a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:31:15.000Z'}}, {'blockNum': '0x7f4dd8', 'uniqueId': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2:log:2', 'hash': '0xf2f46df8a5338214f7c55528e6421d958773565c96966d97d7945c26e025e0d2', 'from': '0x1b9e3ca833bccc64ad46e016c6c8aebf7e27259d', 'to': '0x9aa22e4ee96e16e598e430eb0c5fff699522e510', 'value': 1980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e19b83c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:38:11.000Z'}}, {'blockNum': '0x7f4de9', 'uniqueId': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041:log:51', 'hash': '0x95a43ac7694195f0f0c1586b9663162600cd162cf7546b58d5fed0d0b564a041', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:41:33.000Z'}}, {'blockNum': '0x7f4dfd', 'uniqueId': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4:log:4', 'hash': '0x80181dd3c529506cc84ef9d2224a15a1e4133b78796c803fd395fb0b9e01b9f4', 'from': '0x664603913b58345c8b8881fbb39ad7e518a406c9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 215.19153456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0502a43930', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T15:45:08.000Z'}}, {'blockNum': '0x7f4e91', 'uniqueId': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95:log:52', 'hash': '0xec79bd5702e2bcac2876a2bf7e750af10618ec33536570649413f19db91f5a95', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:21:59.000Z'}}, {'blockNum': '0x7f4e9e', 'uniqueId': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482:log:111', 'hash': '0xf311617a196875b45a8d052fd01e0e117ad1d7f42ff3caae58b757d50b7a8482', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:23:12.000Z'}}, {'blockNum': '0x7f4eaf', 'uniqueId': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159:log:30', 'hash': '0x7cd4d676a8d462e2321074d5c80b5e5cd6f2db539f74e01b0fb53e27668c8159', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:17.000Z'}}, {'blockNum': '0x7f4eb1', 'uniqueId': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3:log:101', 'hash': '0x74af1fa1fea77e97ceebf777247e57d28c34810f1a4ad766f307a54ff3384ce3', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01764c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:26:56.000Z'}}, {'blockNum': '0x7f4eb3', 'uniqueId': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded:log:29', 'hash': '0x198cb7505b4bfb3f771e566d7a87b3bcee9543c035882dad12664846ace7bded', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:48.000Z'}}, {'blockNum': '0x7f4eb5', 'uniqueId': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4:log:13', 'hash': '0xada169b64bebae19cbfd2cb62cc6a7e9df34dacc21dd2c33f7bdcac18563e6e4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:27:55.000Z'}}, {'blockNum': '0x7f4eb6', 'uniqueId': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a:log:36', 'hash': '0x05168123f7dc72ec45b3c7cddd699be9972c6d71c51fd17cd960d8f8596df25a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:03.000Z'}}, {'blockNum': '0x7f4eba', 'uniqueId': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b:log:70', 'hash': '0xf159fa7abf05e468c911fe59f3e91f501643f24bc615b4cf0905ea4f5de0fb9b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:34.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf:log:79', 'hash': '0xd9ab43b827202848f31c352b6008436322f9a4b374fdc0955b0a0233b8242ddf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebb', 'uniqueId': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0:log:81', 'hash': '0xb2e18beba870efe93f157191d9136ea22ea3d54d0186cd1c7a8a575942fe83c0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:28:54.000Z'}}, {'blockNum': '0x7f4ebd', 'uniqueId': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84:log:56', 'hash': '0x6998eb9bcee93bfaf1240aab6bde3c16be55b33ee389772933a0d33551672f84', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:06.000Z'}}, {'blockNum': '0x7f4ebf', 'uniqueId': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f:log:47', 'hash': '0x1715f58f4b59d76d355ec12c80943a976c31e535bf54f173c445a5b8ebb1390f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:24.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62:log:153', 'hash': '0x06ca4ee62a7f7d87cc2a67cdac1e07f7d954812c6831163f16739d9a377b8a62', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58:log:156', 'hash': '0x9a60ffd87859c8d63d5d4d2c0232539f527f997f64219e7b493c55ac2a607d58', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec0', 'uniqueId': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce:log:158', 'hash': '0x5c96e498184fa6f65adcb63dd4a6264daec4df4f8afbd08b4b3aee5bdc86f8ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:32.000Z'}}, {'blockNum': '0x7f4ec3', 'uniqueId': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7:log:108', 'hash': '0xe0b0879c269e6859eada3c791d18932ee77e91ed2f3e4ec76a7ca54ec2ac75e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:29:56.000Z'}}, {'blockNum': '0x7f4ec9', 'uniqueId': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5:log:109', 'hash': '0xf79702dc41f79ce234e3389ffbdf67fe88b27ce3dfa7803f87123704886c79a5', 'from': '0x1e1a70d484fd170de28ec146987b25d9d7752300', 'to': '0x8dff080d350900c703b9fa82df8bd5b921d8e690', 'value': 0.2456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176c180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:30:32.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2:log:55', 'hash': '0x0a58b8e214de84587865989513958671852f5e6ab275796e766030928904f2b2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4eca', 'uniqueId': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e:log:57', 'hash': '0x6edcabc4b22981f3cc1127e7612751d069926fd8fcd5ce4fa256e17c8b70d27e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:06.000Z'}}, {'blockNum': '0x7f4ecb', 'uniqueId': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a:log:93', 'hash': '0x0079074fb53aa34e2fb3f66174e90a9312325eabfdb3ef3bddb39ad7a6092f9a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:18.000Z'}}, {'blockNum': '0x7f4ecc', 'uniqueId': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71:log:18', 'hash': '0x5067d5236d392f8aee2048b72bca0e4774e64625dd89bb7b4fbd805a28954c71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:25.000Z'}}, {'blockNum': '0x7f4ece', 'uniqueId': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a:log:148', 'hash': '0x9bbb24b641547914f808c2ee0736c27aa7bf8a217b7e6043984fe88882124b4a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:31:56.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba:log:52', 'hash': '0x99e3a6cc2673966b27bce2501c8c5632e8fa81b02013b53ee970085a3e2034ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2:log:54', 'hash': '0x05c58cb232d485ab2c9d9f56836aee46ff9cfd55765685fa70921d57fb4899d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f22', 'uniqueId': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f:log:56', 'hash': '0x73cad86091e47b9d360cab56c78dfac2ffe23d4414c0be27fc1c2072f8981c7f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:49.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc:log:44', 'hash': '0xeaaab10f73693b5490be2faab9b13dabe1ca913c3b7a9f3e7ef3d85ba76349bc', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f24', 'uniqueId': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43:log:46', 'hash': '0xd63c2d13f3c561f4a8364a0039a197d61c90a583e64a9e92076e00ccff399a43', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:50:56.000Z'}}, {'blockNum': '0x7f4f26', 'uniqueId': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e:log:113', 'hash': '0xc7db799357d8d20ec021a9dacc8b8a29884dd2a3c68a921cef09643dabe11b8e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:51:05.000Z'}}, {'blockNum': '0x7f4f38', 'uniqueId': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71:log:49', 'hash': '0x914df8ac4a3f9d6ed678cb362a0789e3ab26e020934f919cc1d8663b743dde71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:56:01.000Z'}}, {'blockNum': '0x7f4f49', 'uniqueId': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca:log:126', 'hash': '0xd777975ce63960151f9d8cdff8beb43079fd1d783914b619f2f6795f70e751ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:09.000Z'}}, {'blockNum': '0x7f4f4a', 'uniqueId': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8:log:0', 'hash': '0xd7255067c506b13d3e218c1ec28b3474b99d49e2d94b54981c63ed4d53d954e8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49866.00463223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0489088c9b77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T16:59:18.000Z'}}, {'blockNum': '0x7f4f5e', 'uniqueId': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230:log:21', 'hash': '0x16c7f1d00c8819ea54937def0bce7e58385246a23bc5328f58d59b126c863230', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc9f42134fb5f8703177352093111372dfafcb550', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:02:56.000Z'}}, {'blockNum': '0x7f4f6b', 'uniqueId': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41:log:154', 'hash': '0xab4f4f68aef1afd6e0608f8a07c44915baf7a568d888df4f03b318511af95e41', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:05:13.000Z'}}, {'blockNum': '0x7f4f7b', 'uniqueId': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1:log:151', 'hash': '0x3e6804df5c9f253891ba7bcd68368d7201225de376ed64382bcdc11fd2f035f1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:09:08.000Z'}}, {'blockNum': '0x7f4f7d', 'uniqueId': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03:log:118', 'hash': '0x35e28ab54903bc6a00c821463b5e18c2675ea3764bad0499b569426a89555f03', 'from': '0xc9f42134fb5f8703177352093111372dfafcb550', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 361.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08697343a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:12.000Z'}}, {'blockNum': '0x7f4f7e', 'uniqueId': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8:log:82', 'hash': '0x4ea0b8cc54c83abc18d2b30da0b6a2e62ad9e92edc276e3952f98a598406f4e8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:22.000Z'}}, {'blockNum': '0x7f4f7f', 'uniqueId': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6:log:104', 'hash': '0x4c58258b7291827ff9f741383e0e0c71b407fff5fd7f42a2f7d63905c26855c6', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:28.000Z'}}, {'blockNum': '0x7f4f82', 'uniqueId': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5:log:77', 'hash': '0xa72047f81604c1806ad466213991691aded38387f06aa0e3dc3d45586e7e7df5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:10:55.000Z'}}, {'blockNum': '0x7f4f84', 'uniqueId': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3:log:76', 'hash': '0xeb2232eb63801818034344554f4eedbf459bc1e4531fb8cadc4d66b9d6d9dba3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:11:00.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da:log:37', 'hash': '0x0e91493785e90dc5bd87a4a478b08759dabf7c3eaf6e9d83c39759129d84e2da', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8a', 'uniqueId': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831:log:39', 'hash': '0x93919d5c7d4f160adddffe9dba7d2301cf3de1117adcd28a533e983fc9538831', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:13.000Z'}}, {'blockNum': '0x7f4f8c', 'uniqueId': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d:log:14', 'hash': '0xd3b06620ba98bde7cba7f4eb43edff1bc0b2959ac040ca851e4cc9c5c9ddca9d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:12:21.000Z'}}, {'blockNum': '0x7f4f91', 'uniqueId': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796:log:50', 'hash': '0x7656eb48674b1640cb46f7893bec6f8fd48cc662e285ee2d54981c3a8c1a2796', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:10.000Z'}}, {'blockNum': '0x7f4f93', 'uniqueId': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457:log:32', 'hash': '0xdb5194b09fed146b41426c6252e1004cda03a4206e908694df15e119dfc4e457', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:13:19.000Z'}}, {'blockNum': '0x7f4f96', 'uniqueId': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571:log:29', 'hash': '0xea5d8e9901dd9001d19ca1eef5567448070dd05b82271980a95e76a3c8520571', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:14:05.000Z'}}, {'blockNum': '0x7f4f9b', 'uniqueId': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9:log:14', 'hash': '0xc7242f397f54a457a3e06b5e3fab87f1ff67bf8150da96eba7094b0bebdd93b9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:15:17.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c:log:90', 'hash': '0x470d4a3fea4d2775bddad28a4b5479175ad2b6a8719f3d9f3ddb66640d7d791c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa6', 'uniqueId': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4:log:92', 'hash': '0x6910ddf60b036b11d862e2b1f01d06834a0e9789641c47e1610fd9162546e0a4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:27.000Z'}}, {'blockNum': '0x7f4fa7', 'uniqueId': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4:log:51', 'hash': '0xfd080a37ff1952b54f1a0f54f8a56bbdf04b371b42a4f9b4f602ee9f894b4dd4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:18:46.000Z'}}, {'blockNum': '0x7f4fac', 'uniqueId': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6:log:68', 'hash': '0x5f4cd0c7034536762bc09c2c9d2573e114ac06de8876a73d7b93fd615b100ea6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:19:40.000Z'}}, {'blockNum': '0x7f4fae', 'uniqueId': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71:log:99', 'hash': '0xd56a0e1575b4b110361075f38bc950c8c2206a56ba3107d6ff49451ca811cd71', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:20:02.000Z'}}, {'blockNum': '0x7f4fb5', 'uniqueId': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e:log:115', 'hash': '0x79bf384d1a271b2ddad2ac74c2c271c772dda10d88029960594c9e8d590e653e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:13.000Z'}}, {'blockNum': '0x7f4fb7', 'uniqueId': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707:log:6', 'hash': '0x33ee12d6a49b9c95673b19b80d6ed569443db1a2bbf48402c62193c54eef7707', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:21:51.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0:log:44', 'hash': '0x8de00473399c7a7ecdb5a507d5cbf242009fb7e71b5410f1b64fe298794695d0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fc9', 'uniqueId': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74:log:69', 'hash': '0x065a7eb3013d4fb59136e29ef904c18e5c0bfb553e405644d4441dfbf576df74', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:27:31.000Z'}}, {'blockNum': '0x7f4fd0', 'uniqueId': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f:log:33', 'hash': '0xf3649e6d488fd53a935d01724f2995981496ad5355753974175255dbb3e61c9f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:28:40.000Z'}}, {'blockNum': '0x7f4fdf', 'uniqueId': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0:log:77', 'hash': '0x845d968e0e80ca9eed3e27765379376371c7af05a60c9778bdaee2aa4d9792a0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:31:37.000Z'}}, {'blockNum': '0x7f4fe2', 'uniqueId': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218:log:56', 'hash': '0xf911af1ec4322e1525127367c0b7506161dd9c12c8e2413fb9a8582bfa1cb218', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:06.000Z'}}, {'blockNum': '0x7f4fe6', 'uniqueId': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254:log:22', 'hash': '0x3b5428cf1110a4d5a02a40e670b9a5a30f11f8ec0cad2b943515395dcb593254', 'from': '0xc0fe06bb9847c2d38245e875edf8500da4a2d0c4', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 12904.262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012c73652fc0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:33:52.000Z'}}, {'blockNum': '0x7f4fe9', 'uniqueId': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e:log:33', 'hash': '0x6b7b0ad60476ff5a3af5b8c7dc386c82e36963043f061960c5cba42db0444a1e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:35:20.000Z'}}, {'blockNum': '0x7f5007', 'uniqueId': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197:log:88', 'hash': '0xcb3ba730ab0aca0367f7e5471464a3ca175044b41ab923d8b6a0b3aa2a4fb197', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:15.000Z'}}, {'blockNum': '0x7f5009', 'uniqueId': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381:log:20', 'hash': '0xabb4d4f2ee2513264ca64682d250a57ef48cb840c9f55ac37436b1ba88c65381', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:40.000Z'}}, {'blockNum': '0x7f500d', 'uniqueId': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875:log:111', 'hash': '0xe5150f1cb5ea150e06e217290cc922af3f362b39feb57163e94504572b19a875', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:42:51.000Z'}}, {'blockNum': '0x7f5018', 'uniqueId': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a:log:143', 'hash': '0x71a9ca9d673210415da8b90a508d4b9025c75be3500f01524e6ebd523526d37a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:45:07.000Z'}}, {'blockNum': '0x7f5027', 'uniqueId': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69:log:48', 'hash': '0xe16400eb86ae692e8cbe1bb72181842187a780f66f062f449476739c6d7b7d69', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:20.000Z'}}, {'blockNum': '0x7f5028', 'uniqueId': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a:log:35', 'hash': '0x3c50efdf1f9830ac0a289b2061b3dc784910cdae64ab3c2f6e8276f394b2171a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:47:31.000Z'}}, {'blockNum': '0x7f5038', 'uniqueId': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2:log:25', 'hash': '0xbbf6124d4e3a1d42a2f6bb3b34ee8b24c0d02bfeb88357969a8a2bc5c83ce5d2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:50:46.000Z'}}, {'blockNum': '0x7f503a', 'uniqueId': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a:log:15', 'hash': '0x85965e3425f8c5da4735cbd8a4107fd7b7c74b91cd43346bc2e42894b6c7d53a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:51:08.000Z'}}, {'blockNum': '0x7f5059', 'uniqueId': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1:log:65', 'hash': '0xcac19566796d064aad442b2fa5f106e5a75fd46a7e4be937c9a58371440fdba1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:33.000Z'}}, {'blockNum': '0x7f505c', 'uniqueId': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7:log:47', 'hash': '0xa8e9390491a48e52f540a1bd47c15182fd8eb6244681fc3ec317e9ac8fd8f3c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T17:56:51.000Z'}}, {'blockNum': '0x7f5084', 'uniqueId': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1:log:103', 'hash': '0x8adc879b8ce8617acc25092256dd89b5a4cb1c79dace11557e8d938202be65c1', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:10.000Z'}}, {'blockNum': '0x7f5086', 'uniqueId': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852:log:4', 'hash': '0xb3b3291b9b37401a5829ebc4fa2fff1628da81890971f2f8e14c706dc067c852', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:05:41.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae:log:95', 'hash': '0xea0d7b4fec579bffb612e06724cd4d55b767822e972ff3b89912f3542cc057ae', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f5087', 'uniqueId': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9:log:97', 'hash': '0x69f59501c832265ce9de1cde8ea595da185dcfc6eea3dcc714033abb314e93c9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:06:10.000Z'}}, {'blockNum': '0x7f50a1', 'uniqueId': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7:log:120', 'hash': '0xb692f0bc398a17dfe67d3b42dd031221a36eef56b0d6842d2039e3c60e4c9af7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:27.000Z'}}, {'blockNum': '0x7f50a3', 'uniqueId': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9:log:53', 'hash': '0xeaeca26b22a2d0a588459224d70ee94e784d470fc4d3ab8cf1c53c6f5ad05fc9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:12:56.000Z'}}, {'blockNum': '0x7f50b3', 'uniqueId': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8:log:61', 'hash': '0x4fe4668d1763990f44ca3987b8137889ed30c548cefaee678f9b4f3ffa25fba8', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:16:44.000Z'}}, {'blockNum': '0x7f50b5', 'uniqueId': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d:log:22', 'hash': '0x92fba44fe96ab99229f30aae40e006c99f2f65f830188c634a2323d7a0d9104d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:13.000Z'}}, {'blockNum': '0x7f50b7', 'uniqueId': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036:log:64', 'hash': '0xcf9ddb98473c363936ca0a370aafad3d9c59415be5b1bc7dcfb6a746fdbed036', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:17:29.000Z'}}, {'blockNum': '0x7f50bc', 'uniqueId': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283:log:79', 'hash': '0xff8053d9e064f43e2049f07d6eecb2bfa9aafec157868cc4570446960175a283', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:19:09.000Z'}}, {'blockNum': '0x7f50d2', 'uniqueId': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42:log:13', 'hash': '0xb0ddee92e5aadc75cd46d2a605d22d111bb93efc479cc425da2e1d1f799b7b42', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:24:21.000Z'}}, {'blockNum': '0x7f50d9', 'uniqueId': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba:log:58', 'hash': '0xae32a9671209360dbe2aff47b51bfc7f9e127620b319aff529a542e06d25d4ba', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:43.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44:log:53', 'hash': '0xaa272cb8e75d0285d4426ebb4a0b916c0861b9b3ea520de0e960c13530a31e44', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50da', 'uniqueId': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642:log:55', 'hash': '0xf5cd097d0855bfec9dd45796dc993694cbe6defcdf78d9f1f56632a2837a6642', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:26:47.000Z'}}, {'blockNum': '0x7f50de', 'uniqueId': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f:log:30', 'hash': '0xf09047dedf31bc272d0c3474a49f2b417034ea8b7cf09c1d194f077c7eb8192f', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 11006.8096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x010045b29800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:27:24.000Z'}}, {'blockNum': '0x7f50e2', 'uniqueId': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7:log:8', 'hash': '0x83599f0fefeec5fd5e45a7d132c7e7f03a644841fa80717bd2385be50a40eab7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:28:07.000Z'}}, {'blockNum': '0x7f50fc', 'uniqueId': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d:log:9', 'hash': '0x4dab517f7b5e69eb8d4a629c51e7adf863b2a5bcdbbd8400a19e9aa782bd580d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:48.000Z'}}, {'blockNum': '0x7f50fd', 'uniqueId': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa:log:7', 'hash': '0x806c69dbebc1215dfc1dab3b45b0945d4fc8bf24a2caac9491e1cf69136d9baa', 'from': '0xcba419e954900a32b1a0f61d01a565c313924dae', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 10773.656486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xfad7ff2cd8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:32:50.000Z'}}, {'blockNum': '0x7f5100', 'uniqueId': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231:log:42', 'hash': '0x60e10baafc58f80685ba67da68fff608dcb2054da72abd03453264175b94b231', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:34:02.000Z'}}, {'blockNum': '0x7f510b', 'uniqueId': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282:log:18', 'hash': '0xf1db746b2b0bd19ad9ead01ce30d2c3ab59cbbc41bfde8b19da303a3b7323282', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:26.000Z'}}, {'blockNum': '0x7f510d', 'uniqueId': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163:log:96', 'hash': '0x353e284cb26fb705faaeeeb4e0854c6d7fe508e31dff8de182c663fe55151163', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:36:48.000Z'}}, {'blockNum': '0x7f5110', 'uniqueId': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098:log:5', 'hash': '0x6f9fbd129534c58d66d6cba01a5506a9799650396c6d1e318c47dd4154eca098', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:06.000Z'}}, {'blockNum': '0x7f5111', 'uniqueId': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c:log:61', 'hash': '0xb6043cb8a3ebf1a5285cad4c5dc4449fd6bfb427f304fc97508eeaf1c7b0bd7c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:39:17.000Z'}}, {'blockNum': '0x7f5146', 'uniqueId': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66:log:147', 'hash': '0x649f88b67a85622ab923f83d36d3ddbfdc4d70d444795595448da829021afe66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:50:58.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489:log:7', 'hash': '0x08c938d8bdda38efc2361a49f934f0325df673dd7159fc83b13da3164e7ae489', 'from': '0x3347e9a544546d8234306d92ac6ac707780147b3', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f5149', 'uniqueId': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce:log:12', 'hash': '0x61c858d00d2e1e7c3f79e7e763de9b91038f11cc525a6e258f06c1320ad18dce', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:51:34.000Z'}}, {'blockNum': '0x7f515b', 'uniqueId': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668:log:63', 'hash': '0x74239cda34140df3f6493e810c19349614d990620e21a884ebf6dbe88bbe5668', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:55:49.000Z'}}, {'blockNum': '0x7f516b', 'uniqueId': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460:log:63', 'hash': '0xcf92fcc362f5bee29fbbe5cb9de6be52a5d6954ea6474a17f0d9b9d1a37af460', 'from': '0xce39c69dbcc2d4425b8978d111b551b50da102eb', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 9938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe763189200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T18:58:48.000Z'}}, {'blockNum': '0x7f518c', 'uniqueId': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38:log:55', 'hash': '0xb3a2e1a7f80842182adbb8e90246cc53cfc0e44061e457ff50391ceb89550d38', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:07:45.000Z'}}, {'blockNum': '0x7f5190', 'uniqueId': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60:log:69', 'hash': '0x4eecf58b1c16b800c742e62a740db168339d23f1bc68841168f09815cc50ae60', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:18.000Z'}}, {'blockNum': '0x7f5193', 'uniqueId': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab:log:31', 'hash': '0xc36617d5b941730595a1224aa647c36e36c583872c304b01853bc820948193ab', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:09:29.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb:log:16', 'hash': '0x22b228061c6eedb37e8207547e2cbba6934c77ce40efd791f812e5abfb414bfb', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f519e', 'uniqueId': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78:log:18', 'hash': '0x5c4a62361c155ea24883d41d5bad0c6581f3e688546355a2faf8e3690939be78', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:11:44.000Z'}}, {'blockNum': '0x7f51a4', 'uniqueId': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad:log:19', 'hash': '0x7036c21dd081e5ed76a6243e8199cdf9c684f8812c5ae90eee7449543f0857ad', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x194009c35583ed133832cedf0530d3e76761503e', 'value': 2881.1156034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4314c98694', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:12:46.000Z'}}, {'blockNum': '0x7f51aa', 'uniqueId': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93:log:81', 'hash': '0x3c25f2a5645cca167fa5fe256d35c518780bc9620c6a7260a19d9de16e471d93', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:14:17.000Z'}}, {'blockNum': '0x7f51ac', 'uniqueId': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b:log:90', 'hash': '0xc9a04b3c0fcb81057199c70874e0277cf2aec800ec188a78652cd17049a6300b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:15:32.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69:log:57', 'hash': '0x146041ea99f67fa443211cc8f6a5a0ff9067a62d03d778d27f7b83e2225c1b69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51b3', 'uniqueId': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9:log:59', 'hash': '0xf3b5aead3be21801cc0c12093c7ebbd458b7692e4b6f25ea06ff6582ae6b15a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:17:26.000Z'}}, {'blockNum': '0x7f51c0', 'uniqueId': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05:log:54', 'hash': '0x1a3d6e2d4de929765f47771d207c6a39d1d83f2beeccd01b8b95a7d8668fcc05', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23184.19834821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x021bcc9737c5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:19:56.000Z'}}, {'blockNum': '0x7f51ed', 'uniqueId': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e:log:73', 'hash': '0xd36247e6d8e823b092bda56c8cd6d96f0965437e37e36797b2726690547d7c6e', 'from': '0x7c963d491bda44c8cff7b35d290e45bdaec57381', 'to': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:31.000Z'}}, {'blockNum': '0x7f51ee', 'uniqueId': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db:log:45', 'hash': '0x98968a51392b4a5679cbbaad85c99659554d45f965a9de3a0509417368ba99db', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:31:55.000Z'}}, {'blockNum': '0x7f51f0', 'uniqueId': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1:log:32', 'hash': '0xc1a4066d76efd3563273fc0e72871cef72225383f235dff7054395b415032dc1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:32:50.000Z'}}, {'blockNum': '0x7f51f6', 'uniqueId': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184:log:28', 'hash': '0xe28dcd3865c6fe261e311a680d50758bd953fa3553512e1e807421442709b184', 'from': '0xa38c2f0288caedb41df338c3da800ee27a5c9bb1', 'to': '0x75599ecce86f8d1d90102a72762e0d898d823e73', 'value': 24860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0242d1259c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:34:43.000Z'}}, {'blockNum': '0x7f51fa', 'uniqueId': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2:log:90', 'hash': '0xab97e0f5a70ffb79bd451a47f482a2fd5d3cee7aa2221a82b3f85f2288cc8ed2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:20.000Z'}}, {'blockNum': '0x7f5200', 'uniqueId': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f:log:25', 'hash': '0x3a014ce55ea7e1744a4b8f47354d00b464ab3219b0a16bc5c10b62fe43c04e6f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:35:51.000Z'}}, {'blockNum': '0x7f521a', 'uniqueId': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7:log:27', 'hash': '0x235b2d17a59654c0e950024cead685ffbba30c13397b4d1d08b8657290b9c6b7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:41:41.000Z'}}, {'blockNum': '0x7f521d', 'uniqueId': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88:log:0', 'hash': '0x2a8d2a59ceb31f56f4699794d5bb7d3ddb806ab88243a469b1b4c0d4e9e09e88', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:42:08.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f:log:130', 'hash': '0x66aa69498310920ef47b544fe4b677a85c1fac3f683865eb74a44d6687e3508f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f522e', 'uniqueId': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62:log:154', 'hash': '0x57311a28be625ab03fbd1ecc797def318a9db56c9d7075a15b131ca1a5a45c62', 'from': '0x6d38eb10d3bd0702697776a10fc857dcbd2bb172', 'to': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:45:53.000Z'}}, {'blockNum': '0x7f5236', 'uniqueId': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e:log:0', 'hash': '0x789eb5536adf65e9d4ceedb35544064d6abf86bd610188e270c630ccd34cd20e', 'from': '0x35b2badca3efd25b36a8cd3cfc96a68838edd021', 'to': '0x2ad7cb7ce3b5cbaa02481e416d85f5954748d292', 'value': 10394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf201115a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:46:20.000Z'}}, {'blockNum': '0x7f5245', 'uniqueId': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be:log:64', 'hash': '0x54a0adaa51384bf5fb193f56ca2a2c7e57bc2a5c89fe2f2474927e063a0f49be', 'from': '0xa7ce45ed85a73241eca6fb164a4c0ee21b1d86e4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30330.30860162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c22eba1d82', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:50:00.000Z'}}, {'blockNum': '0x7f524e', 'uniqueId': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8:log:0', 'hash': '0x7dd406cd202712f60aa0ec15cac0923d2aa94ba4a87704636c43e8d7736cadc8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:52:04.000Z'}}, {'blockNum': '0x7f525b', 'uniqueId': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32:log:0', 'hash': '0x175d15242b1fd4aa4db6a1cc7d53530f49dceec5322c445c6d4cb98aecd02c32', 'from': '0x351385cfe21d200c389eb33e99a9c537c62e1bba', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 745.28818706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x115a438612', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:54:33.000Z'}}, {'blockNum': '0x7f526c', 'uniqueId': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae:log:2', 'hash': '0xc0ebbe5ec9b134b415c2e092d5eeddf4c6bef8085a26297a4c4d597f8cc637ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3771bb5030f0386a0dd80d3f3019ecb00d8c947f', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4526945a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:58:05.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4:log:56', 'hash': '0x1ff6f4033e6743ec3bed1ffca7261cf9a5ae87dcc04d0fb999fe271e52a996c4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 34428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x032196defc00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2:log:77', 'hash': '0x1d59f7a526bb0e757bce63f03bfdd7372d361141d8d84a32bf4d7131b35e28d2', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 3173.93281631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x49e61d225f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f5276', 'uniqueId': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7:log:126', 'hash': '0xe62aa7d187f57da2b440d1848a775f115017b8e2cab94b04990cd28cc19842b7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T19:59:56.000Z'}}, {'blockNum': '0x7f527d', 'uniqueId': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa:log:33', 'hash': '0x475ee4399041c33089ff34b96f1a5edfe6ab2d7554d31b6badb10540cffdb2fa', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:23.000Z'}}, {'blockNum': '0x7f5281', 'uniqueId': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795:log:2', 'hash': '0xefbd4914215017dc5e0231c9acb39a581456569e4dd65e662bdd397af44b8795', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:01:43.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138:log:1', 'hash': '0x17bcc7caec2e5141bfce611d0a216e76d2cc32dc6887fe6dcf1a9f7fd1f3b138', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 7544.11222445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafa669b5ad', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33:log:2', 'hash': '0xb156f9e7e834a962e8c153011591a9e3bd9ccb21317ce290cfd6d4ceeeda0e33', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a:log:3', 'hash': '0xddc8ab894ed3653568ad9f8898fe9ee97f09c0d30229fc97f9fdbd59edadc01a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40:log:4', 'hash': '0xbbea8796a9ea614cfad7f34042116b6700880312faa214ad765072e2c3a13a40', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 155695.96309408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e291441dfa0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952:log:5', 'hash': '0xc20906600483d2da4b443000087ba366e7f218e84c9f2d5c8bcc7149321d2952', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5284', 'uniqueId': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486:log:6', 'hash': '0x2b03d3e568898666af72bb338bcb6ddc57110d892cf603f3fc50862450962486', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:20.000Z'}}, {'blockNum': '0x7f5285', 'uniqueId': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e:log:14', 'hash': '0x48bf55ac07b61d8ab73bc57be049d58419991bb731aa6e4b80632638c8890c0e', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'value': 6664.8854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x9b2dd00b60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:30.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be:log:1', 'hash': '0x93d7fedb3c5b1d90b153f7197665030cd28cde7ecc4cedee26d7268fba96c6be', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f5288', 'uniqueId': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c:log:2', 'hash': '0x1efaa607158667838bb7dec510022ca3ad385f42197a2a53169ee355c4c88d6c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:02:50.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08:log:5', 'hash': '0x07941ec3c4ff779deaeaa9e1e256af1a5280b3f999b0d776ecf55b1a431ccd08', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'value': 5066.18678391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c77', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e:log:6', 'hash': '0x882e754a3281dbeba4a4d264e4093a42a6caf39502115d931bb002530c76916e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3:log:8', 'hash': '0x05a0e328c9e78af7df8a260485ee1c880d4de61d6ec7079801704fb615e2bce3', 'from': '0x69064f400f992bf9056c3c483ae93ef714cb707a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 906.70917715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x151c686853', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528e', 'uniqueId': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c:log:12', 'hash': '0xcf562054a6e4c669ff3e769b625f2603958a4cbd0a80e7f7cfb1a2036a5e3b1c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:35.000Z'}}, {'blockNum': '0x7f528f', 'uniqueId': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a:log:25', 'hash': '0xdbd8a410ef2ea0a46e6557b33cef1391a8de8b6b8b98eae6353527682e162d1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:04:53.000Z'}}, {'blockNum': '0x7f5290', 'uniqueId': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead:log:49', 'hash': '0x2bbaa5596cf5079a29326cb069e46ddcec1bc14761ffb4fee5ce33de8a856ead', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:01.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e:log:1', 'hash': '0xdf0f1cc60cf7e4021e1d21399923ec593e2b0c433ed4b622865755af14398a2e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5293', 'uniqueId': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438:log:3', 'hash': '0x3c61d5e0db513ba14c389313754f846de64784ce0c00007d462b916bf779f438', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:05:54.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a:log:7', 'hash': '0x506a26f8c9834d53f0c3d4ad2b00e4d7b002939e42e8a430469df489c10f755a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f5296', 'uniqueId': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e:log:10', 'hash': '0x6983b26af86e67f34797db1fc5ee3c57f6021956cc06ad5122c8f921cc72696e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:06:06.000Z'}}, {'blockNum': '0x7f529b', 'uniqueId': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163:log:2', 'hash': '0x808e7435a82de9ac7285261c6aebb1fcd22b0235dfd0452173a67cb6237d9163', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 31887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02e66d54af00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:32.000Z'}}, {'blockNum': '0x7f529c', 'uniqueId': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53:log:2', 'hash': '0xbc62ceacd339915e3c7ee5bafeb2884dca7a11e24b7fe1e2a3c11db5bb51fa53', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:50.000Z'}}, {'blockNum': '0x7f529d', 'uniqueId': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355:log:4', 'hash': '0xa1e6f8c593566ed514092dd03736940130640e72149eb7cbe33a13a958209355', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:07:57.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0:log:0', 'hash': '0x067836baa04a7a31a046fa3bd173c5433baf88437e7c9d3a88affac7156160a0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 123058.71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0b312f11d1c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f529f', 'uniqueId': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157:log:1', 'hash': '0x7754a3eed0796aaf27c0b25455eeb4cca6842d40c4543f1563d3c336ee038157', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:12.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e:log:1', 'hash': '0xf6bd368ce3235f4684f62de5a4b9f863c37eb23b4c4243a3f1dd2baf96259d0e', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a0', 'uniqueId': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5:log:2', 'hash': '0xfc4e4d4a7abeac62bdfafffd097e6cb1ebd12e58bb938555ddf59421340825e5', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:18.000Z'}}, {'blockNum': '0x7f52a1', 'uniqueId': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257:log:14', 'hash': '0xa012f808271bbb00647aafef71b48fcbc097d5fdd7db26e933053debb4d90257', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:08:43.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db:log:0', 'hash': '0x177c098c73f4c72cff7b72e96bbe8fb2f690adf0ab6c0cd48d6e763b361019db', 'from': '0x41694ef21fd72e8e375b350e4c261c9edb5f6b52', 'to': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a4', 'uniqueId': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453:log:2', 'hash': '0x2a0607efe9ed240ad2bc485e25db84f4220978b216b73a9d8d1ae15437e92453', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:09:01.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb:log:53', 'hash': '0xd8eb876e2edcdd0511910e2cec3da4a5caa3fe71e619bb5faf269336cf5cdecb', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x81d38cc800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e:log:54', 'hash': '0x986117daa1a424ddfcfda162c529fbe09b129d0fe6e9b98c9fd3ec704568942e', 'from': '0x474c08ab9f604438c686d6b455dad88a0aae69c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4137.37759336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6054b13268', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e:log:55', 'hash': '0x99f07e815d4ffbea25b8ef04f3c8c6725f2440840dadc8f9f1f8b8d972e3873e', 'from': '0xbaf143b074bb657e85daafdf33419d74f23c4335', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11803.4948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0112d24fbc40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f:log:56', 'hash': '0x5e14627a75dca3080d1b0f951d12c0b06892556d0bd54924ee34f0d8d3eff06f', 'from': '0x1c5ea3f17feefe0c2dc0c79aedf770c1151489f6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29059.16796728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a496236f38', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd:log:57', 'hash': '0xcddc5e86d95b710c681881d1e4ff9ce71a64d30b6714f6e786816e47fb6f0ccd', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 220572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x140f97921c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da:log:59', 'hash': '0xf8c410780a549475b0d6741083ced3eea3d2fdd7c6a6f3b940997152fff448da', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06080433ab00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17:log:60', 'hash': '0xba411a8860613ac93926990d73b4ff390cba8cd5424efb20ba6d74b229195d17', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 296367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1af454f9cf00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286:log:61', 'hash': '0x19cf7bc0ce51836b16e3b89d4277ea6819fe9dbc9400c8f1dd382defb534e286', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01e54febec00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253:log:68', 'hash': '0xa1f15dd4e6d4bda323d424a378e138c264e725f443dddbb742992cca0326e253', 'from': '0xdcfd98ae2f690ac0c9cc22d8acb6583e17340ff8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0225170', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf:log:69', 'hash': '0x0d7959d96625e47b455c92d285ca3ba18cb053b0a43bb6e3f6284df9fc1c12bf', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 166414.00813484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f22a0c8b7ac', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca:log:70', 'hash': '0x8b009fdbfe0c5e4ad15f109838fe2c34cb717e4b81cfcd02fdba18b7c6c581ca', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd18c2e2800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a8', 'uniqueId': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf:log:71', 'hash': '0x8adb11621ca46242fdb2b203b8394be414d56635c723d409f4bcb9267d441bdf', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7a12b71b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:31.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:110', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 191.91934267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477edad3b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:112', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52a9', 'uniqueId': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5:log:113', 'hash': '0xd30abc12797c389e850798624a9204d7bc0fc6092529ba60b38a938faaec63a5', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 191.91929686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0477ed9b56', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:33.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1:log:65', 'hash': '0xcfdcd738dbad21d8ce8485dabe2f52c896bb9956dfd4191fcd02c9abfc0cc9e1', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ab', 'uniqueId': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715:log:69', 'hash': '0x6a752f40f99e0c97687406e72670c0e911335fedb637fb0710f1f1a7ca0ed715', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:10:39.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92:log:3', 'hash': '0xde533293232af65bacd3e555ec0e06b8d579d3c47b37260f3f8dbb574e25af92', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52ad', 'uniqueId': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3:log:33', 'hash': '0x5aefeaf09e2faf180e9351d541515146bc41bcc2db89a1a9f493e0e3cac178f3', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:08.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955:log:0', 'hash': '0x5f69dc86ca26d92402802b3510602690b70ddd0565c58f980d6863d1e494e955', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 4820.048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7039b99200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0:log:11', 'hash': '0xcda44f009ccbb9a908067a176f782464670869da5887ea3169b224af2f3ec0b0', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52af', 'uniqueId': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d:log:13', 'hash': '0x435e7062fa62ce31f3c48ed94884935fb0bfd533f761d289b09c981271ac411d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:40.000Z'}}, {'blockNum': '0x7f52b2', 'uniqueId': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79:log:0', 'hash': '0x85592bcdd762f0dfa580bbb3af8d1dc92411f7f949fcb15aa075902ad8859e79', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 7549.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xafc9064c70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:11:58.000Z'}}, {'blockNum': '0x7f52b3', 'uniqueId': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33:log:31', 'hash': '0xc7dafd797830bc50fa76657ac6f654edc8fb30f27eb753a0cad1878231ea7d33', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:04.000Z'}}, {'blockNum': '0x7f52b4', 'uniqueId': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514:log:4', 'hash': '0x3008c17fd47499ecd583fe52bf287cd24a75ee097eeb3e13046d2ffc00b23514', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:19.000Z'}}, {'blockNum': '0x7f52b5', 'uniqueId': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c:log:36', 'hash': '0x96a85a5702b1ba750dc83238d293e6283a46c23639405ac2245553de434a5b5c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:12:27.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0:log:84', 'hash': '0x8528adc4529fc19d076c97c21a5cd127e830dace2f510e2343335931fa2c42c0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:88', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:90', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52b9', 'uniqueId': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783:log:91', 'hash': '0x56db614fe9ec0a3b10a9f3ed5b5eef5b55931ef85c50d43e836ead572238c783', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 228.98258421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0554d7b1f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:13:37.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6:log:1', 'hash': '0xa02334398d2d6433d71e72d92d45239f93d74137eb7f4d2d8d2d464e44b065b6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bb', 'uniqueId': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a:log:2', 'hash': '0xd10ff1baba4da6f1b1928e4f292b528364c6583d1cf6dd471c5d2c29b99aac3a', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:23.000Z'}}, {'blockNum': '0x7f52bd', 'uniqueId': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139:log:116', 'hash': '0xaf12133493ea8247d2472db07ac62d148b2b720552e903ecc8c667efc2827139', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:14:38.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb:log:0', 'hash': '0x6663812eb4fb5453b1438b7a15c176401dd8897fe76f654250a0c2baf1fe8dcb', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c1', 'uniqueId': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d:log:3', 'hash': '0x83f52332443f9f6040fac8e407a1b9218b94b681cfebaa63a499287a5e92415d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:15:42.000Z'}}, {'blockNum': '0x7f52c3', 'uniqueId': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f:log:2', 'hash': '0x2b88c9a8a75c90b9d57570804398d497600094cf7ee00a4544820dff9866ad4f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 152799.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de5a19b9580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:16:15.000Z'}}, {'blockNum': '0x7f52c7', 'uniqueId': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7:log:11', 'hash': '0x80c22701d3ee4d46cff26b945b8b77d31df2831cf990b5adec6d747f04f4c6c7', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:17:31.000Z'}}, {'blockNum': '0x7f52c8', 'uniqueId': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e:log:32', 'hash': '0x24f69cd5c09e6396434fbbf3751248c5107983c9b8ec0af4646c894434b3c77e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:03.000Z'}}, {'blockNum': '0x7f52ca', 'uniqueId': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08:log:50', 'hash': '0xe04260cfc9d76761083ba906bbe8a1361cb732035e94cf8400da91f8ab0fcc08', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:18:42.000Z'}}, {'blockNum': '0x7f52cf', 'uniqueId': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8:log:10', 'hash': '0x316a6755b38ddee3c3236672d9ed91b95a4e00ba3abd6f545fe7da6e48c783b8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:06.000Z'}}, {'blockNum': '0x7f52d1', 'uniqueId': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326:log:44', 'hash': '0x591a41deb96a63e8d5d7e9e207fa8bf6aab849f39f3dcbbe37444223ae3a6326', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:17.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378:log:50', 'hash': '0x4cfe7458c74b55438d880fd846d7ae1878da6d43f1a12ab812f343b0576f2378', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d950e56f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b:log:51', 'hash': '0x0e93a06178c34ec6da79aad55d42b597a8e4cf72e0975e003797cbf8f1d7be3b', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0277ecf76500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021:log:52', 'hash': '0x5598e0bb3fb7f2fda623b22e1007aaf25e3af1bf54518d109f12299d46c7e021', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a901a02100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9:log:53', 'hash': '0x4d5a00d15a7c534be4f461583b7aebd24d2e4c350302c5be5aeb57804d4b5fa9', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd2cc61d000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093:log:54', 'hash': '0xa88a2d82cdaa41aa0742be9dc055cc36e23d60b7985a624535e8f434f7b2f093', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd:log:55', 'hash': '0xfdc7d4d49299c5b7df71a91dd8f6b017f8f60d3d742a088be63009fda74f94bd', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 64921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05e78f507900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139:log:56', 'hash': '0xfb854abb047d2925854c635acd7ceeae4b837e0ce03bc529412b1b2ca08c7139', 'from': '0x07dce128690c49f41b17ebb57dd467c1f960348d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43357.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f181b4a020', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7:log:57', 'hash': '0xca707f383a7c149ed50054de77cffbbc0c828e1c0d6a9e6f5f42b14ab19bd0e7', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6338.9971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x93975df630', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff:log:58', 'hash': '0x19f723a79b049fe3b6b5930f88ee5d41e722ca2f81794af396464b198c2faeff', 'from': '0x80e4cb323f0cd414da028f586b92613b4caf7654', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf0bf33e400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c:log:59', 'hash': '0x156f2489c0821e3bcab2db19b476c94fc809f1bc257055f4744188af23b8d53c', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 275857.81, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1916d0ad6740', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a:log:60', 'hash': '0x827160317e1cbf788f90b7517ce3544e7e51b2b37d766e9ab054cd6af593bd2a', 'from': '0x32e28e146c62541e2830d3bed33946b37c2e57f0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29009.31612648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a36cff8fe8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87:log:61', 'hash': '0xc914c610b5cd3dceaebc563f6ca7f4e3db9172598a49b134b95282e1cab76a87', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12369.9671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012002bfde70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d7', 'uniqueId': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b:log:62', 'hash': '0x796c84e5d869917fd9671c444b4db403a10b97297674edf662454d7e87341b9b', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xaf93dcd500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:19:56.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269:log:12', 'hash': '0xa51a5fe92610ef49b26021d39ab412ff32befbc27e94849093d836e87748f269', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb:log:13', 'hash': '0x07f07aff52976e22dee765680977e57ab2bcd70ff405b03dcd5a16a9365caabb', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f:log:27', 'hash': '0x1b7d6cbd0dfac0967eb141d53c68e52db22463b925de719bd8f0fa38fdb4e61f', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 200194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12352139c200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52d8', 'uniqueId': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745:log:72', 'hash': '0x27b640604868ee8f58a0b26b91428e4a33609f18e37f839c53ada68d675df745', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:20:13.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643:log:82', 'hash': '0x2b3493300ee90b273522cd3fa0d62dd562f8eab1191954906a4cff8ec872c643', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52da', 'uniqueId': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369:log:87', 'hash': '0x78335b931d286fa6b026131a6b4f318fd8c191b67a4c4b32ef1fbbe91d0b1369', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:06.000Z'}}, {'blockNum': '0x7f52dd', 'uniqueId': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30:log:1', 'hash': '0x0641ba47bcfc31f5ac6a8af58b9c0b2e1f71cb972f0375dbaeb332d9ab834f30', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:22:45.000Z'}}, {'blockNum': '0x7f52e1', 'uniqueId': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205:log:0', 'hash': '0x7d96f23fe722c2ce4968b103ef70845e0c5f0853beae6709602c8a8160674205', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:09.000Z'}}, {'blockNum': '0x7f52e5', 'uniqueId': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5:log:14', 'hash': '0xb5c20b650a3cb6287b62a4e3c977d02f13e728f63152292510d2478a417c9cf5', 'from': '0xac26adcff2c83f7757b7894075516f2aac8a7482', 'to': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:23:33.000Z'}}, {'blockNum': '0x7f52fc', 'uniqueId': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69:log:59', 'hash': '0x22beae1be7cfafaeabadade3d89e4597dbfc73f3bdccc23e1c3c8554f84efd69', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:27:40.000Z'}}, {'blockNum': '0x7f52fe', 'uniqueId': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9:log:20', 'hash': '0x7390d1124214eeb041db122e39a6f9e489f009c121dae1b6bf6e618dfc30b5a9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:28:11.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e:log:54', 'hash': '0x0888ec08d6f2407f78ef8559737ece9e3239da70d9fb6598496218ffb5afcd4e', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088c4e2cc300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf:log:55', 'hash': '0x148b8e81f7f6666ff08a2d7a61d0e587e75d6e3546164df86e584e624335adaf', 'from': '0xca11c331ab6433415ff04b0b3679fdb99368e93a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5cf22c9800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af:log:59', 'hash': '0xcc1be55c541a46adcc6bffdbb576c3718587fe35f1b1436715238369404015af', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5305', 'uniqueId': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb:log:66', 'hash': '0x1355b59fde2ab908f7398ca4d0f1595dc0963ac87d9549c64dccaba23b9060bb', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 30741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02cbbea37500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:30:05.000Z'}}, {'blockNum': '0x7f5307', 'uniqueId': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44:log:21', 'hash': '0xcd854486b15ce48bcbe1fc552c1c19a003dfcc6886e782669d9488a63e31bb44', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 173778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0fce15989200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:31:04.000Z'}}, {'blockNum': '0x7f5313', 'uniqueId': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce:log:1', 'hash': '0x11bba07fb6c39177ffa735f58201827a979a58bf7e0a3140d820bcaad7ad13ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:33:15.000Z'}}, {'blockNum': '0x7f5319', 'uniqueId': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55:log:2', 'hash': '0xa9301a64026b9859f803b72aecb8c4f388442e82e93d757af71bb40a80c5df55', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:09.000Z'}}, {'blockNum': '0x7f531f', 'uniqueId': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b:log:0', 'hash': '0x9b1e26c351e7807c6c15d3d8bd671f0f38c0d9f25c9827d27a44fbd3b38dcd7b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:35:39.000Z'}}, {'blockNum': '0x7f5325', 'uniqueId': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213:log:2', 'hash': '0xce9024ae7739e1e4b96cab2e7069fb384284114a5615fc4cdd0f8111f8701213', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:31.000Z'}}, {'blockNum': '0x7f5327', 'uniqueId': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963:log:14', 'hash': '0xe6b41aefaa17fba10abc03b67bb13e0d3752b731d0d91ec33337c31e958b8963', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:36:47.000Z'}}, {'blockNum': '0x7f532a', 'uniqueId': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4:log:102', 'hash': '0x8833874f93dbdafdf34237f5a17e406e7ce701da873e943e70c9bb41ba1fc1b4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 595.98815176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0de05dbfc8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:37:47.000Z'}}, {'blockNum': '0x7f5332', 'uniqueId': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2:log:26', 'hash': '0xc5918ada3ea9958dd27194692108439d7437abf9e5dd53d2c587f5c7fab770f2', 'from': '0x3f374e03e92865a6226a2613f85a12a4703634e6', 'to': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:39:42.000Z'}}, {'blockNum': '0x7f5335', 'uniqueId': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9:log:1', 'hash': '0x2c4f2d6d35dab751a38fcf9202501a7400375164e843ccf8b857e581347680b9', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 135704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c579adf1800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:13.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45:log:15', 'hash': '0x3a5c74e0fbb09b9173a705ac29b4df44e7fca229c5ecd467c59ff40f87b94a45', 'from': '0x31a2feb9b5d3b5f4e76c71d6c92fc46ebb3cb1c1', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 43532.15050222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03f58fd631ee', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5336', 'uniqueId': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5:log:16', 'hash': '0x07f3842beede5acaec3261fc0807fbf7e26104d0a6cdf4aedc458a34a8d0eda5', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:40:18.000Z'}}, {'blockNum': '0x7f5337', 'uniqueId': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9:log:20', 'hash': '0xfc79413b62b4d8e4a448cfa5464fdeb5186f0effbbb3f37bd1c822c5b613e6a9', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:41:04.000Z'}}, {'blockNum': '0x7f5344', 'uniqueId': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb:log:51', 'hash': '0xb4d928d5d256df6c0232a29c8139aab4b689a1668a1b4fd82e8168c6950147bb', 'from': '0x932ab43cbf53a7e48296e0b641f9620906ca5442', 'to': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:43:58.000Z'}}, {'blockNum': '0x7f534d', 'uniqueId': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53:log:121', 'hash': '0x57f13c7e05516d124773d628c56d51aed583b127af3d46ca48327e6fb1829c53', 'from': '0x3686ca8649f174f3452aa7204da95ed6484b10a5', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:45:11.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3:log:1', 'hash': '0x445d39dea8d9b63bfd404b5ccd5b8d578e6d0c9f94a252e8279db0e3e68ba7e3', 'from': '0x3b8e9b2c23bad8e8be04e6122ad6da060a9768ec', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 5066.1867839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x75f4d38c76', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a:log:3', 'hash': '0x6e861699195584927f2d45cc940828d69f61aa48ca6b279f805da06bdfe2958a', 'from': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 556.4708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cf4d30e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f535a', 'uniqueId': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2:log:6', 'hash': '0x3e9b31e9daeca046c4d962a95185ea9e034622f67e6b7465d4d3e43c28d40ea2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:46:38.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5:log:54', 'hash': '0xb1dad78fba6ff48d547b0bec8d15e233c5fb99e1f4d5d03cee22aa037bc5d8d5', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 188771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x112b2ad70300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f5368', 'uniqueId': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71:log:55', 'hash': '0x695b9133a71aa3cddf4ee143f908b2d5ceecf777d428adae5baba73d5cad2a71', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x025d91b87900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:13.000Z'}}, {'blockNum': '0x7f536b', 'uniqueId': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1:log:1', 'hash': '0x9a5460ad28ef7d44336cf50f1bff782794d2a147f8f2ec03f3cf43d5139ac4e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:50:34.000Z'}}, {'blockNum': '0x7f537c', 'uniqueId': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619:log:1', 'hash': '0x0954849d2873c02e3f33f4e906eb585a4cd77fa9252277bbdb59e20aaf1d3619', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2621731.92038343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xee71f3fb27c7', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:53:26.000Z'}}, {'blockNum': '0x7f5380', 'uniqueId': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7:log:19', 'hash': '0xfac7c6dd34dad1b6a19e7450cd583dcaf7e358dce5b36d5b51673d424f14a0f7', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 66725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06118ffe0500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:54:06.000Z'}}, {'blockNum': '0x7f5387', 'uniqueId': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384:log:100', 'hash': '0x99c56765648f944b5fc39a0fcadf72df9e38cd3cccc2d69264a26958693b0384', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:55:54.000Z'}}, {'blockNum': '0x7f538c', 'uniqueId': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d:log:3', 'hash': '0xf5389e08bc0a4a4ca99facbfdff62d5f68dfe256b66dffd71743f5668cd2e95d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T20:56:40.000Z'}}, {'blockNum': '0x7f539a', 'uniqueId': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c:log:128', 'hash': '0xa555f6fd9ee8a0152de6cd69b3fd96da5c6f9c280a9feef6b31e315decdfd19c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:00:15.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634:log:88', 'hash': '0xc828b100efcce47ea0eb0241fe5d26e125a19edbdc744106e1198b32f4b38634', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f539c', 'uniqueId': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16:log:137', 'hash': '0x75e91fe8752a1dd9c6326feaabdffa3282a5ef1b0a791674a32e31772be2cd16', 'from': '0x4a544eced6941964488b2250b85cbdd731b5b0f3', 'to': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:01:09.000Z'}}, {'blockNum': '0x7f53a1', 'uniqueId': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e:log:43', 'hash': '0xb1b8b9d8f3c01a4813d6661900a4bc3a240e868e467f009c40fef6248058be2e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:29.000Z'}}, {'blockNum': '0x7f53a2', 'uniqueId': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a:log:52', 'hash': '0x187141f29d800c185fa06605758f621293b6d757cc0bcb9d35d877b49c5eb00a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:02:54.000Z'}}, {'blockNum': '0x7f53bb', 'uniqueId': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e:log:1', 'hash': '0xc774c961aa275998b0ece21b760c6af1e6d474629a4fa6894cc22f0a2eb4327e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:08:08.000Z'}}, {'blockNum': '0x7f53c2', 'uniqueId': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55:log:56', 'hash': '0xb345ce916b0c8e5277d1a8fc819e56c22a7893c695215db5246639f8c3739d55', 'from': '0x4363bfbaa0bb31ee97953318415fbae83e8f60b8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:09:59.000Z'}}, {'blockNum': '0x7f53c4', 'uniqueId': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915:log:8', 'hash': '0xdb0b83ded07f0d6c9002223dc62735654434ef648bf0e6a17c67938ada2a3915', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 143100.63244587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0d03d23c852b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:10:44.000Z'}}, {'blockNum': '0x7f53c9', 'uniqueId': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72:log:42', 'hash': '0x3abb232ed5a97c1cf04e1e5db8cddcdabade546d4046108811d50652a29d5c72', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:11:58.000Z'}}, {'blockNum': '0x7f53ce', 'uniqueId': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227:log:12', 'hash': '0x7c02c0650a52d89c6c8cbd973fff0eb894666a9c169962bc39d545ae67f4d227', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:11.000Z'}}, {'blockNum': '0x7f53cf', 'uniqueId': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf:log:69', 'hash': '0x2a066fb3289b8a7c69a7e0939565f49bad04e2d461fcf83d7fdd73c6036224cf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:12:25.000Z'}}, {'blockNum': '0x7f53ea', 'uniqueId': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d:log:123', 'hash': '0x2aec3c63b7eaab302a7a904133a3631821c1df63d35593abe5e11186b8b69d7d', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:17:49.000Z'}}, {'blockNum': '0x7f53ee', 'uniqueId': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721:log:14', 'hash': '0xa9383d0ca52f55082f943da4588703d292f0933f8a0e3d084f8ab56d73249721', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:18:34.000Z'}}, {'blockNum': '0x7f53f2', 'uniqueId': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d:log:152', 'hash': '0xb83183b96a1ccbf50a778fce17dcb9fbf12b7a48ac135e50099d566bf050282d', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:16.000Z'}}, {'blockNum': '0x7f53f4', 'uniqueId': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d:log:63', 'hash': '0x398ea549eb8071143123eb908bb84f6287cd22f7c48ca77ef3da678f96b9c46d', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 107121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09be1aea5100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:19:59.000Z'}}, {'blockNum': '0x7f53f6', 'uniqueId': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c:log:24', 'hash': '0x39b4cd1144a909e20ad495cdd0f716cd4973d0b77d7d1227e10a7d2b2596d98c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:20:35.000Z'}}, {'blockNum': '0x7f53f9', 'uniqueId': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420:log:76', 'hash': '0xbd8cbd6118fa0f530a7b98f93da28e0d85f020ea0ea5a9edcb33f39114c15420', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:21:29.000Z'}}, {'blockNum': '0x7f53ff', 'uniqueId': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e:log:84', 'hash': '0xd61491b28e4ff6a42d797e345f80bb915f4128a81692115977c7ab5ce340380e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:23:13.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73:log:11', 'hash': '0x85cae85e5471d19ee472266886323cb9a8a74783b19ca2c65226bcec3aecfd73', 'from': '0xe65cf62c1969b28806f6a2bbbdf8855d58dc23d5', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 6078.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x8d848816e0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f5412', 'uniqueId': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc:log:68', 'hash': '0x517bf0bb14077d651ff3220cda6de11a1709e0bb69a28e2818996ad8675aa3bc', 'from': '0x3314df7c38a5bea1375dde468441718a7a9d58ca', 'to': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:26:57.000Z'}}, {'blockNum': '0x7f541a', 'uniqueId': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73:log:38', 'hash': '0x62a33ee7d8bd3e2f5785fbf83e4a412182821d7265a515adf764d36c6634fe73', 'from': '0x1034e575289e1f1ca6e81f5906ad5fcabd3f2e51', 'to': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:28:08.000Z'}}, {'blockNum': '0x7f5444', 'uniqueId': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53:log:100', 'hash': '0xadcd1c0b371c814ba111f7eea473ee34fadfe357a7b97bdb7f57455d098ade53', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x88cf30e78492f3f3b340447a1889db971dabce25', 'value': 794.02381337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x127cc03019', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:37:10.000Z'}}, {'blockNum': '0x7f5446', 'uniqueId': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573:log:13', 'hash': '0x7ff53b09f6f60b3fb973d71d8a6417053130516e074a5e7e99adc8404f362573', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:38:41.000Z'}}, {'blockNum': '0x7f544b', 'uniqueId': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c:log:0', 'hash': '0xacf2c8756095d0ac906d81e42ce9d05a54c60dcd844c318097a38e85ba02346c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:40:59.000Z'}}, {'blockNum': '0x7f545c', 'uniqueId': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58:log:88', 'hash': '0x831d1441ea4f7bec363186e86f1df61c96f4e3c886d08e8d235079f9441f4d58', 'from': '0xa5f7e18442a727e1e34264e8f271b8054a48155e', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 16368.585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017d1c5e93a0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:44:20.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7:log:38', 'hash': '0x2c869dae8fcf8505f6c8a8e02a1ec9eb32559c137378001567ff02e3df9510e7', 'from': '0xd89054acbbf5edce73e04328d5c8578881654f43', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 268.943051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x064306874c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f545d', 'uniqueId': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790:log:50', 'hash': '0x2b3d23eadbf9120eb5844f22bd70987ce38eed7efbfcd5395f277601db0a0790', 'from': '0xd62ed0bc84fcea45d7998215e3371714059156f8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 22582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x020dc7357600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:45:23.000Z'}}, {'blockNum': '0x7f5466', 'uniqueId': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43:log:2', 'hash': '0xd34489d102305fe46b5512b38523c630f3cb4587e1b4dd8f32a91332cc8b8e43', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0176cf8ea200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:47:30.000Z'}}, {'blockNum': '0x7f5472', 'uniqueId': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2:log:55', 'hash': '0xffca885cfddea8772ec09a80d3a2462b9a79f9784e9799effc94f8c3fe4750f2', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56486.9525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x052330794c50', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:50:07.000Z'}}, {'blockNum': '0x7f5490', 'uniqueId': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c:log:67', 'hash': '0xba38abc1e18dcf870b8cc9e76a6eb9702f26e3a2e535c4d2e669763be657d56c', 'from': '0xbd4c4bf61b48d9876f5bddd71328d678f55cf912', 'to': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:54:51.000Z'}}, {'blockNum': '0x7f5493', 'uniqueId': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7:log:90', 'hash': '0x2bec1f8837be038a66b21b035e035a90a4788c59d4a97360096b5231d27d15e7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:55:47.000Z'}}, {'blockNum': '0x7f5498', 'uniqueId': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff:log:3', 'hash': '0x1235e1ed432e1757d44eaafb6f66ae35f94e58375790c7085be9c06865da83ff', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:56:30.000Z'}}, {'blockNum': '0x7f549e', 'uniqueId': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d:log:4', 'hash': '0x5464d4c39f9ed9016b5de722063cc1ebf18d8ac3228c047ae6ec084f4933f63d', 'from': '0x773ef1b61f9e2e737636f6d85f1a39976f8cce3e', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3267.34991727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4c12ec516f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T21:57:55.000Z'}}, {'blockNum': '0x7f54ad', 'uniqueId': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf:log:53', 'hash': '0xa3c06fa356cbf8ed6f0db3f72a9398ce9168036cf41d2317adfefeda78fb28bf', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0cd201088100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:00:07.000Z'}}, {'blockNum': '0x7f54db', 'uniqueId': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938:log:15', 'hash': '0x9ebffea6b41c83142838286c77cf42bd619cab32febac707d9a8cef94c12e938', 'from': '0x49847f0578bb43887d1d6832622572e86687702c', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 4992.084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x743b23ac80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:09:05.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e:log:76', 'hash': '0x2a382bbdcca64334bb1c646abb391ebd475816201875f0e0e1912bd2707ede8e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f:log:78', 'hash': '0x36d2338ef9ae57ea1596ac6c3a01d9477c5710b8be8994e179e9c5709af8916f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54e8', 'uniqueId': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668:log:80', 'hash': '0xdd52fb1b6e90665a4799cc8a96aa29d05697034fcd7c9c0e3ac30e534a18f668', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:11:17.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447:log:59', 'hash': '0x647e0a12919177a1b2b8f2504d7699eca4f17d06cfc2281728506f4c3f2de447', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x9e973080c3752dd5017f8242b70d3479587159c3', 'value': 588.67926574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db4cd462e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54f7', 'uniqueId': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b:log:73', 'hash': '0x1ea4a9aefcd4e02b3d2ffb7fd6dd08f846ce90b639a34a51a240c2d30c0e952b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:04.000Z'}}, {'blockNum': '0x7f54ff', 'uniqueId': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea:log:73', 'hash': '0x7d9b9d855e19a9d45d209365246393e9af6fe5138a962f893ebe1fed330579ea', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:15:52.000Z'}}, {'blockNum': '0x7f5501', 'uniqueId': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11:log:1', 'hash': '0x42a15bf45c36d2d145889097c452abc6cc19a3e522c1b46b50fd2f7d17a64d11', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:16:22.000Z'}}, {'blockNum': '0x7f5511', 'uniqueId': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1:log:57', 'hash': '0xa58fa63fc3b56843934b04991fe58685366743905d03da2d3088c11c58cc92a1', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 4691.10445333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6d39295515', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:20:31.000Z'}}, {'blockNum': '0x7f551a', 'uniqueId': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4:log:8', 'hash': '0x493a16b2569dfb6b9806cc04073d56bb786ed7d873b7e0c88c6cdad70c741dc4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:23:40.000Z'}}, {'blockNum': '0x7f5531', 'uniqueId': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c:log:69', 'hash': '0xffc3b3f9658953633fda056e92a6f1115369dc3813f9f1f80f067abcd957574c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:30:54.000Z'}}, {'blockNum': '0x7f5535', 'uniqueId': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178:log:18', 'hash': '0xa4a06b742aab8e59e83bb5bab55cf5e02d8ffe233004e20e213d88d770844178', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:31:31.000Z'}}, {'blockNum': '0x7f553d', 'uniqueId': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1:log:26', 'hash': '0xe6b5fbd2358fc0dff62b5babe6a888856997e8a11d3f021673ca3cb265b27cb1', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 97978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e93a637a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:32:32.000Z'}}, {'blockNum': '0x7f5546', 'uniqueId': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f:log:55', 'hash': '0x1f5ba65901865e582959c5a6510e218c7e2c6891feae0dde9fec5bf4a97b654f', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:08.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d:log:16', 'hash': '0x27e76b0da5a21d0425fe4747a0952e0d1fd787e9dc8f727bcc7773e2275c636d', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5548', 'uniqueId': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8:log:87', 'hash': '0x8e26bbadd04092d77bfe9539bfb3daa7d40f7fda6e8b2403599f69bb1135bbb8', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:35:21.000Z'}}, {'blockNum': '0x7f5555', 'uniqueId': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a:log:12', 'hash': '0x707ce8828236a00e8cdd00ccf0e78bf7d84c4d712617327bc0b57486c9d05b6a', 'from': '0xcc60f38163459b9c2ce7852a8d95f5d09b088ac7', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 4410.177948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x66aeb580f0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:38:40.000Z'}}, {'blockNum': '0x7f5557', 'uniqueId': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788:log:1', 'hash': '0xb1cdc1279ada9d14919c69ed8099bf8ba2596963ccf87dd58b1ecdce1e3b1788', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 60064.8025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05767e1f2490', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:39.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc:log:77', 'hash': '0x03134887f4c7542cabdc370f09d7b6e9205ae83b9ad9ca7bfd2edd12739085fc', 'from': '0xaba7e21f3eff840bda71f9f077a9d5720489cf57', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0df8475800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555a', 'uniqueId': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0:log:155', 'hash': '0xeceb9c3769d1f697672c8e31e38f5228a2e7f0af9bab56dd9782cf43e4d0c4f0', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:39:46.000Z'}}, {'blockNum': '0x7f555e', 'uniqueId': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4:log:93', 'hash': '0x294f4d8ef186e68cba7e3a935fb3fb401cd7ddcadaa0f41cbd2805855a3358c4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:41:52.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40:log:56', 'hash': '0xb505bda1eb2e580ec4c6de10db9829f88c29009cfa274aa658b28cdde77eab40', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5568', 'uniqueId': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b:log:58', 'hash': '0xb7031ff80c559af7f29ae75326169dc055e1558f1833dfe04d45f4e08535ec7b', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:43:17.000Z'}}, {'blockNum': '0x7f5593', 'uniqueId': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1:log:20', 'hash': '0x8c692275f0a38f03b0d047935157e57b62852ae1351d196528fac3462d668bf1', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99986.7999806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0917ffc4fe6c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:53:45.000Z'}}, {'blockNum': '0x7f559c', 'uniqueId': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c:log:36', 'hash': '0xf0011247187823b0fcb5df2bf2144de1da6d6afccc248b20e52de41fb233a13c', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T22:55:53.000Z'}}, {'blockNum': '0x7f55c4', 'uniqueId': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca:log:34', 'hash': '0x6f92e057812bb0407eb3a1ea209dd0a09a8a128114310186cefe31e4545be5ca', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:03:53.000Z'}}, {'blockNum': '0x7f55c6', 'uniqueId': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c:log:7', 'hash': '0x194e2f2898a13435e541de958c65b4663abde8bd98560275fa9f289ede15204c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:04:30.000Z'}}, {'blockNum': '0x7f55d0', 'uniqueId': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3:log:64', 'hash': '0x69c49dc9e88d33d170e59a44231bbc8f31cfb65bc1ad865d9047f6eee22c1bb3', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:06:13.000Z'}}, {'blockNum': '0x7f5606', 'uniqueId': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919:log:30', 'hash': '0x04e517084abbcbde9f70322677dd940f2ae08791ad9437daa325250c32279919', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'value': 1517.34660381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2354172d1d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:18:16.000Z'}}, {'blockNum': '0x7f560d', 'uniqueId': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1:log:0', 'hash': '0x94fff1660cd0cc91df0547a91098514d48d57a178f90901451258acc31fe58c1', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:19:54.000Z'}}, {'blockNum': '0x7f561c', 'uniqueId': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337:log:0', 'hash': '0x3aa01becce496a22386fc8a09fddcd25945faf5f627374f40ea46bdbbc2a5337', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:02.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47:log:0', 'hash': '0x2634723a4b3bfc6d37795727b02b4a9cfbd3dd4ddbccde0f93cbd18a6c9cab47', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1337.979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1f26f9eee0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5621', 'uniqueId': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22:log:30', 'hash': '0xb0899e1566746a372ab01ee6252303eda6df3173863f4ab124de64691dc26e22', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:23:50.000Z'}}, {'blockNum': '0x7f5627', 'uniqueId': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5:log:39', 'hash': '0x5046ec977731dd9de22638598f8947f17dfe38a41542bf7bde02d8ac45f6f7f5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:24:35.000Z'}}, {'blockNum': '0x7f5641', 'uniqueId': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c:log:67', 'hash': '0x1cd882940bbd9621db7f16618748228961c460abb314f66ed38085af3b25b49c', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44300.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040772110440', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:30:01.000Z'}}, {'blockNum': '0x7f5661', 'uniqueId': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173:log:74', 'hash': '0x539e0e7b0644eca41950c1bde28e2030179ad0518aa6ea93d9bdad5b90039173', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:37:04.000Z'}}, {'blockNum': '0x7f5666', 'uniqueId': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a:log:51', 'hash': '0x3f3b801b0cd1a78cc945cf71afa739e9fd3e2ac23591d110d26892f15f07900a', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0x211c5addcc353255e48b4daec589780ca2d90718', 'value': 194.62217137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048809ddb1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:38:40.000Z'}}, {'blockNum': '0x7f566a', 'uniqueId': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9:log:30', 'hash': '0x55d94d417fafe39fbcd291bc89509b35a7d128c5384e15628b9cf4bb1baa80d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:22.000Z'}}, {'blockNum': '0x7f566c', 'uniqueId': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11:log:15', 'hash': '0x99b63702006c9e403687d12478a8275f4fd02abf6c1352e035653da2938c4b11', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:39:51.000Z'}}, {'blockNum': '0x7f5672', 'uniqueId': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a:log:104', 'hash': '0x48ee12d768ca927f5528283f89663aef0bc08644186930f4eaf2549230937b3a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:41:03.000Z'}}, {'blockNum': '0x7f569c', 'uniqueId': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904:log:62', 'hash': '0x25d228f137b0fb7dc9ee7564054a90d4684f584f2fa5a99187823cac3cdd0904', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:51:54.000Z'}}, {'blockNum': '0x7f56a7', 'uniqueId': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb:log:31', 'hash': '0x3fee3c36e0ff45c266c172a55ee276d468c8a46ec1350b66dd60649afe8f5cdb', 'from': '0xb6467d542a8fc27a487c95366b7e52f20344d690', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 2906.984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x43aef99100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-13T23:53:55.000Z'}}, {'blockNum': '0x7f56d2', 'uniqueId': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff:log:49', 'hash': '0x7985f4ad936f34ee79e0d073b8e9aa6b4c116acb33b3cb7c8a4e294673a8feff', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:02:26.000Z'}}, {'blockNum': '0x7f5712', 'uniqueId': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8:log:5', 'hash': '0x9b659b462138a11be26d142a66f3b667c8488a45d7381686f428cdcecd8391f8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 1787.445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x299e009f20', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:17.000Z'}}, {'blockNum': '0x7f5713', 'uniqueId': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c:log:71', 'hash': '0x6b626cad768019a3fe2a1326f7e6edf5efcc3fa3b386de842c0a40dc88ebc65c', 'from': '0x4f1a3226108ada7e32bc15bdec19a66fa23e7142', 'to': '0x47ca4d64d59435f4077f1890cdfbad9ba88fc18f', 'value': 608.0048605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e27fdcaa2', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:18:23.000Z'}}, {'blockNum': '0x7f5720', 'uniqueId': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29:log:6', 'hash': '0xf24868b98c2fa5913183d4100db8abf9a94b114ad593ce8ace82e7443aed8e29', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xc2574e3b4851923b91a6541831404fddc0205e87', 'value': 213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04f5943500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:20:33.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c:log:1', 'hash': '0x61a9e7b75b3143fd0b81c22834e1a2b80cbef2651a44c1798f1f39e44418520c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f572d', 'uniqueId': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1:log:8', 'hash': '0xc0d6cfed34c0f39809ff525fb0210c6b86d41b2c7a3d791ab27e2ba044dfaca1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:22:30.000Z'}}, {'blockNum': '0x7f5736', 'uniqueId': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed:log:5', 'hash': '0xd527d542ee6cd3537f617a7aca19863379376ace740f25131f27e800abef75ed', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 3125.424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x48c4fa8e00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:25:22.000Z'}}, {'blockNum': '0x7f573f', 'uniqueId': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9:log:76', 'hash': '0xf4647ab77af52ae9755bf402e237ebfe97ea11f430fdb966994cc4c1b830c3d9', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:01.000Z'}}, {'blockNum': '0x7f5742', 'uniqueId': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785:log:57', 'hash': '0x2acd48d7faba456aefa59d830dd63d4bf6b241acc5a40ab8494aef4da86cf785', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:27:29.000Z'}}, {'blockNum': '0x7f5758', 'uniqueId': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf:log:63', 'hash': '0x0a327c927ada7f30eb89f37b49ec7afdf99dc1e7cede237e5cff0a797cc9f0bf', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:32:46.000Z'}}, {'blockNum': '0x7f5759', 'uniqueId': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7:log:9', 'hash': '0xb545f3fb42d44253ed31efdd8bbb006e6ec32e2aa03a4cda2c64497cd53e70c7', 'from': '0xc0fbdad8aab77e5bc53e7494732e95f486924bfb', 'to': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:33:04.000Z'}}, {'blockNum': '0x7f575e', 'uniqueId': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c:log:19', 'hash': '0xe06c169cb1a00d62a27b3861be7ee492d3367a6722c3305bbcb4b17b70b7b54c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:23.000Z'}}, {'blockNum': '0x7f5761', 'uniqueId': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503:log:104', 'hash': '0x67b50394808432f67c225f4e3012c1fd3ec48ecd3bc039dc4f012cfd57058503', 'from': '0x1efa16b8ea27c61c92fe200e25628a6f047cedb2', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2263.039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x34b0c37960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:34:38.000Z'}}, {'blockNum': '0x7f5769', 'uniqueId': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66:log:15', 'hash': '0x370a5aa9fb850ed88d450c4ca51d825da76cf1f362fa04af87ff2e098c029c66', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:11.000Z'}}, {'blockNum': '0x7f576b', 'uniqueId': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f:log:107', 'hash': '0x91d8abcc70a69a4e02d4d116b9f096440de992692cf707df6b9169c416f9036f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:37:52.000Z'}}, {'blockNum': '0x7f5770', 'uniqueId': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456:log:50', 'hash': '0x32ff2730b2850e3b51c314f411ea9b4b40dbdfa5e3ba3c0b3feea59fcbb0c456', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:38:29.000Z'}}, {'blockNum': '0x7f5772', 'uniqueId': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674:log:12', 'hash': '0xf266cb4903d5cf7c8e0af50ee115e2910a7c1fa177e8a5553c219947a4e62674', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 139472.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0caf58e1c080', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:00.000Z'}}, {'blockNum': '0x7f5774', 'uniqueId': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60:log:11', 'hash': '0x01e971da3992066127316e72d21d0ce83f069140d08b7b72915a25c04e724b60', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:21.000Z'}}, {'blockNum': '0x7f5777', 'uniqueId': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f:log:99', 'hash': '0xce2eaf936a4f9035b43c689a039f3b27f98ccba392612a7022e8818dcc6d343f', 'from': '0x63550a26a638084488391c1b96c3fc0f6704fc42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14774.13163917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0157fcafd38d', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:39:46.000Z'}}, {'blockNum': '0x7f577d', 'uniqueId': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda:log:116', 'hash': '0x2034ba22689f29e5d8356cc4bf1828f16283cb0cd2abaaa81400defebc35beda', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012ffbd300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:42:01.000Z'}}, {'blockNum': '0x7f5799', 'uniqueId': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d:log:6', 'hash': '0xc44334c5e60d3b6a48bfba42fed877d1893d1e6696f833edae3b41489a257f1d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:47:01.000Z'}}, {'blockNum': '0x7f579f', 'uniqueId': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b:log:0', 'hash': '0x662f10634bb7f92c9636fd17face4c4df22742e5f0b4c7454a1b0496bb70d48b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:48:49.000Z'}}, {'blockNum': '0x7f57a8', 'uniqueId': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a:log:10', 'hash': '0xa6b21ed70087b533a90e69a9d79e27f786ea57e1882cb0bf85c0975960b18c1a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:50:52.000Z'}}, {'blockNum': '0x7f57aa', 'uniqueId': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655:log:61', 'hash': '0xa91b9e2be8849dcd113a4135a000a089ffaa1ce2065b013b54e4d00a8b568655', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:51:02.000Z'}}, {'blockNum': '0x7f57cb', 'uniqueId': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136:log:80', 'hash': '0x31cec254990524d144cd69c0f10b99e5d21984bd48c49c37f2ce453f83170136', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:58:10.000Z'}}, {'blockNum': '0x7f57cf', 'uniqueId': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f:log:26', 'hash': '0x19a94d2916437423267a124881f0a01013ab141f196bf6da911cbf0e033d298f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:00.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537:log:115', 'hash': '0xe89a55a717cdedb00acea12dd0995d74fc58d0880dfbde947b2e7d5ace66c537', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0db3f1616900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d0', 'uniqueId': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b:log:127', 'hash': '0xcdfa9039f0cc3965ae11cd891156d29434c677c7c72758f142123dd4e179d87b', 'from': '0x85bd94ad709c258a9ad850b3b32efad621ecae77', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59982.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x057495d35400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T00:59:09.000Z'}}, {'blockNum': '0x7f57d9', 'uniqueId': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4:log:11', 'hash': '0xfa71d8d7a69879229c5ff4f6d673522d0862ccdba7830ac6ab410959f0a34ae4', 'from': '0x1c7ff422dfc0fbc97b44d4fa3a1fdf78d4f22ee2', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 1972.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2debd2f780', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:02:47.000Z'}}, {'blockNum': '0x7f57e6', 'uniqueId': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952:log:94', 'hash': '0xb6a63275a98cb3eeb891530c8a62828f1417519e677bdd85c57ae63ddb270952', 'from': '0x4aacac980e59a270031b6c2903474c86aa66cc79', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:04:03.000Z'}}, {'blockNum': '0x7f5807', 'uniqueId': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5:log:100', 'hash': '0xcdeef07e7bb8b53943a2bc544e736e8c6f67d5760c99d969dd24c9cbfc132fd5', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:12:25.000Z'}}, {'blockNum': '0x7f5812', 'uniqueId': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979:log:9', 'hash': '0x5c12917ccfb1463eee51bc9ff86be03139715031009306c0dd3e2c03b9d52979', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:14:25.000Z'}}, {'blockNum': '0x7f5827', 'uniqueId': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256:log:3', 'hash': '0x02fdfe7f8431b32b894ab859396d13ecb66a8a678f6a1c4f0a4ee17c00560256', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:19:48.000Z'}}, {'blockNum': '0x7f5838', 'uniqueId': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0:log:24', 'hash': '0xf5cd1fd2b8344e02b1b1e1db9484094f1e59c974c950a491302f1554a67ffee0', 'from': '0x541b7e4992392c18253fb9f8232734e7e39bb471', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 1821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2a66017d00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:24:51.000Z'}}, {'blockNum': '0x7f5847', 'uniqueId': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f:log:8', 'hash': '0x76be616d2a6839a72571b903ad88997b5c8fad243150b43af6acdb18820b8c8f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:27:22.000Z'}}, {'blockNum': '0x7f584b', 'uniqueId': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91:log:93', 'hash': '0xc297eacb1fcc0fb57f621c0610ad8caba61b08d459072c48e47a2b5170514f91', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 185179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x10d788d9fb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:16.000Z'}}, {'blockNum': '0x7f584f', 'uniqueId': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2:log:11', 'hash': '0x8011d4793474368e91a24dcefa5a093ebeee8b577521877bec4b94d4f7eaadb2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 383242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x22db0c53ca00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:28:58.000Z'}}, {'blockNum': '0x7f5851', 'uniqueId': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3:log:106', 'hash': '0x9015e483b4bd5b5af95aaf00b0343128ead1dcc48d9ee2c6aefe536da0d9dac3', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 56630, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0526851a7600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:29:49.000Z'}}, {'blockNum': '0x7f5860', 'uniqueId': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199:log:94', 'hash': '0x6dc44fbec4e3a9cb277105a8f8a3d6753f7f883c572ff477bd9b1857c8b35199', 'from': '0x64b8b7632fd1d57fec6630019082898f3a7f8d0d', 'to': '0xf96d8d1ee7ebf60dcc39aeb1427a2c7f712e1db0', 'value': 1627.24771183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x25e326f56f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:34:23.000Z'}}, {'blockNum': '0x7f586e', 'uniqueId': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59:log:2', 'hash': '0x0b6b68a4442d510872b90cefcb229fe01eb6ef2f4e914cbd24484e11ebe01b59', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:38:47.000Z'}}, {'blockNum': '0x7f586f', 'uniqueId': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640:log:2', 'hash': '0x1524b2b70c8bd8f28db75867cb5209643349506ba1c35e8889a01da1daf23640', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 130257.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0bd8cb33a180', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:39:01.000Z'}}, {'blockNum': '0x7f5884', 'uniqueId': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762:log:10', 'hash': '0x27da4f316cf1a3859ccacdb273a78b537dea8c1abbd6805577c49a27c7756762', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:12.000Z'}}, {'blockNum': '0x7f5886', 'uniqueId': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f:log:33', 'hash': '0xe7cc931e385afbfa39945353d57ebe4ab34e1e15ed280fc9344da845344c349f', 'from': '0x1ff9aeebc41b41af5df06123529a177f1a95827f', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1600.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2542880380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:43:43.000Z'}}, {'blockNum': '0x7f588b', 'uniqueId': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb:log:33', 'hash': '0x88a94f5222d80aad0ededabc805e4d15e480c50227eb9fbe2bb630be1780c3bb', 'from': '0x87181d0ad39fada24c3750b6a2e6b7ed1ce2fab0', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1016.65897187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17abc27ae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:46:07.000Z'}}, {'blockNum': '0x7f5892', 'uniqueId': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c:log:101', 'hash': '0xa73ea9233b92a1b2b8741a9a3b5080f688b731b5bcd228081f7e163a2915e90c', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd3e03a0c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:14.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe:log:61', 'hash': '0x6e2645795e87554a24fefd61dc9cf705015a7e4803730d36babc24db9cc27cbe', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x4346e1a1b9bc181773878e1745d6b9aee8fb1320', 'value': 7000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xa2fb405800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5894', 'uniqueId': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0:log:95', 'hash': '0x2528005ca0d22586352b557a5ef17617c383b9ac195f9895af0e3fb6f60bc7b0', 'from': '0xa77cc27c89324245991576bef4be1d655a503ad4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 1611.4326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2584e30360', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:48:48.000Z'}}, {'blockNum': '0x7f5898', 'uniqueId': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd:log:0', 'hash': '0x27dfc1f9080148c722c3e11ed1efaa7021e7dd481d84ed750de7169ed9eececd', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 162423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ec5b4859700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:50:14.000Z'}}, {'blockNum': '0x7f58b5', 'uniqueId': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda:log:22', 'hash': '0x819bd1823314ac7204ab8ab86855f24a2c41e335b2a6a06de4ab8e8ce035fdda', 'from': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 94061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x088e073fcd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T01:58:53.000Z'}}, {'blockNum': '0x7f58d5', 'uniqueId': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce:log:131', 'hash': '0xafd64db9960b8d38be725abb6b6a39d6094daaee0f51387075ab86b8113377ce', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:07:46.000Z'}}, {'blockNum': '0x7f58fa', 'uniqueId': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763:log:129', 'hash': '0x82a613259c1dd01548b40b57cc1d1e8979e1c370a240b71b7e4f26bbcb391763', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:15:58.000Z'}}, {'blockNum': '0x7f58fc', 'uniqueId': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862:log:110', 'hash': '0x8945eab5c58eadd49cec2219f5c9cad1fea9291df40287926f85a6c79e6ae862', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:16:21.000Z'}}, {'blockNum': '0x7f58ff', 'uniqueId': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765:log:82', 'hash': '0x182dd9e2a1ae0cde47b3f95e3858e0a19e6afd0e249984f9eece112a9646c765', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:17:17.000Z'}}, {'blockNum': '0x7f591a', 'uniqueId': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da:log:79', 'hash': '0x395de0fa73be10b30e69e8ac0ab6947eb42a668ef46bf17171f83cba6126a2da', 'from': '0x37d7be6ac2b154530f20fe465cba4cd44c6c3033', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 1413.16040081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20e717a591', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:25:05.000Z'}}, {'blockNum': '0x7f594b', 'uniqueId': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883:log:8', 'hash': '0xad6e485e0ade9ac7ca2c1c12cc5cc294a7e34bf88799112e632570c382077883', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 89764.0021217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0829fb2560ca', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:34:35.000Z'}}, {'blockNum': '0x7f5961', 'uniqueId': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797:log:15', 'hash': '0x23ff43c62afbbf5ba81e88af250c2f395307d581814668e8d7f5ac70772be797', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'value': 29984.9191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02ba240b8f70', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:38:18.000Z'}}, {'blockNum': '0x7f5974', 'uniqueId': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad:log:56', 'hash': '0xf24fc575b94a9cc510a8ec77bcea7153adf289fa568a1b425f08436f15d8afad', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:41:51.000Z'}}, {'blockNum': '0x7f59ab', 'uniqueId': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829:log:44', 'hash': '0xa154eb45e8fa29b23b4a64172ea3f6f70bc2fb1469bce5152371deeea3be6829', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 19323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01c1e60e1b00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:53:07.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:83', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:85', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59b7', 'uniqueId': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee:log:90', 'hash': '0x074c21b8aff7315ce0908b4308b3de4ea3ba90b79d42afa2c8ba223f060e53ee', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'value': 188.01490659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0460a7fae3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T02:56:13.000Z'}}, {'blockNum': '0x7f59f5', 'uniqueId': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119:log:41', 'hash': '0x09ef93f5ad87c7e25bc4a6e4eb685454404bd3b2d3679db409aa6edc6d92f119', 'from': '0x8aa026adeb26d8e45e5c7dd04fb819ff9f015c69', 'to': '0xa5ad0e32ac5b7b4223c89dbb11054283c1d4efb2', 'value': 1402.04625002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20a4d8cc6a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:09.000Z'}}, {'blockNum': '0x7f59f7', 'uniqueId': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369:log:2', 'hash': '0x13a1099402ec09c563f376207b98e147090a6281dc2a9a37b5fa7e80fdb36369', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:11:38.000Z'}}, {'blockNum': '0x7f5a1b', 'uniqueId': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322:log:158', 'hash': '0xd6d491c87382e15d76f07ef5016e1509c362fa1a0db7c07c0d977a1011987322', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:19:54.000Z'}}, {'blockNum': '0x7f5a2d', 'uniqueId': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f:log:124', 'hash': '0x3df0c94c987dcb1a98558e6a61171817df7c9588d44a9df4783b812ff18c6f2f', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:22:10.000Z'}}, {'blockNum': '0x7f5a30', 'uniqueId': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd:log:32', 'hash': '0x430325491c14bfff580ff958d0a8b31e9fb6487f5f7a9933896ec7f53bc070fd', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:16.000Z'}}, {'blockNum': '0x7f5a33', 'uniqueId': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9:log:16', 'hash': '0x177f1044fe7e5ad508ef538f006b338f84484711f0e8700a58f1036c74dc64b9', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 49941.96541891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048acd4f91c3', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:23:58.000Z'}}, {'blockNum': '0x7f5a35', 'uniqueId': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710:log:60', 'hash': '0xaefe4aeef8087b50c08b05e778a60c35af831c11e95eb9140685062a7b6ad710', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:24:05.000Z'}}, {'blockNum': '0x7f5a5d', 'uniqueId': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a:log:13', 'hash': '0x701adfc41df50c503b60daf1f4786dac50c333f8ed2e32384f5b3df1198f726a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:31:50.000Z'}}, {'blockNum': '0x7f5a73', 'uniqueId': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66:log:115', 'hash': '0x1918b5f56a6858d1568a2f357fae9e9072c4919713370dc4a98c60145147be66', 'from': '0xcbb9e4ebdee8acf1004d2869b7329ae25733e884', 'to': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:36:42.000Z'}}, {'blockNum': '0x7f5a77', 'uniqueId': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40:log:22', 'hash': '0xaac8743d8b263639997e679968df5317aedf5f05a50c81e1f8c632d91fec9d40', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:37:32.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7:log:17', 'hash': '0x54cd99f3257fbcc1d1e86ad5405d56bb656c1ddc93f73b1c41e48961752b1aa7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 166383, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f21e7f60f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a88', 'uniqueId': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669:log:18', 'hash': '0x6934a09b922ad1e07200556c9bcae3a760e6224666fed5ea50f418e5da250669', 'from': '0xa18c51606d69f16efeafa8b88608aeca23a99295', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 1067.18000085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x18d8e373d5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:39:54.000Z'}}, {'blockNum': '0x7f5a8a', 'uniqueId': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be:log:47', 'hash': '0x434927853e38e4e2431417f4ce454c3c845f4cc86f470023ca55f4ff7f5e64be', 'from': '0xaf7a95cee2a925f1f40b6eed33c929af63f4bb56', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56173.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x051be26c3c40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:40:04.000Z'}}, {'blockNum': '0x7f5a90', 'uniqueId': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3:log:7', 'hash': '0xf4a93adc5280bfdd37fb9dd2271edd4d3db80b23f8fc2cf1f37fb106dcda63b3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 270355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1896b15fb300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:06.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042:log:2', 'hash': '0x6f9747f4299d4d3afcf8689a02b409f69428bdd476f9e139c7565d7e253fa042', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5:log:99', 'hash': '0x3e57a1c6424fbb1a91325ca774b409533892396ac754ff78ba4946b626cfdcb5', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a93', 'uniqueId': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961:log:101', 'hash': '0xf72b1169d158ea013edd4955c4e6f241588559433d8d78664d87f9901ca67961', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:41:26.000Z'}}, {'blockNum': '0x7f5a9b', 'uniqueId': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e:log:95', 'hash': '0x4211285b9b1aa98def3dcf7297d4068e6630db56496b32f6127630c0acc7711e', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 33642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x030f49f22a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:39.000Z'}}, {'blockNum': '0x7f5a9d', 'uniqueId': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e:log:8', 'hash': '0x60a6dd33fa359598437d114b88f0d8f5c5979b72819e7aa46d4b6a0d0c1ea08e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:43:59.000Z'}}, {'blockNum': '0x7f5aa2', 'uniqueId': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7:log:114', 'hash': '0x310acbe0880c729bef1abd4986cc76fbd6862376c8a163c8de52104ac3b65dc7', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:45:36.000Z'}}, {'blockNum': '0x7f5aae', 'uniqueId': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939:log:2', 'hash': '0xe3d25bca73afce29297ea06570b68f83a8662dd3a84edddbe97d5bb6c6200939', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:48:38.000Z'}}, {'blockNum': '0x7f5acb', 'uniqueId': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322:log:116', 'hash': '0xb29c5f2c329fb43822210cc644b87782efbe15c6f1ce99779ede4eb465784322', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 31323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d94e9beb80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:56:38.000Z'}}, {'blockNum': '0x7f5ad3', 'uniqueId': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57:log:52', 'hash': '0x1ae62c6c556a2546e96858e3baf5594b6e9fdf9ab269b882ba93ecbba57ddb57', 'from': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 29973.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02b9dffb6580', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:57:54.000Z'}}, {'blockNum': '0x7f5ad5', 'uniqueId': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7:log:38', 'hash': '0x6ad33e0b0bd70829607bac75170df34aa6d7f0ab167b3182539eea380ae49fe7', 'from': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 163274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0ed984e08a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T03:58:09.000Z'}}, {'blockNum': '0x7f5b04', 'uniqueId': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60:log:64', 'hash': '0x8bae284fb269619c6c189231129efdc6446d849bbc5caa8d380cb8d44be50f60', 'from': '0x4a6f0b865abdd8fc196d8b4e8b36a0c57ba72e40', 'to': '0xf050eb155416bdf5c34280e73a2a88a07efe3d25', 'value': 1750.85702986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x28c3ebcf4a', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:09:35.000Z'}}, {'blockNum': '0x7f5b19', 'uniqueId': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21:log:77', 'hash': '0xdf24e9903cf23692b9762efdbdd324f6381f148099c24ebe70e9aa7c9ffa2d21', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x2036b75b900f5232de980fcb8d3aa1392e1be683', 'value': 3902.975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5adf8b3960', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:14:12.000Z'}}, {'blockNum': '0x7f5bb2', 'uniqueId': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6:log:78', 'hash': '0x4f70d487d79a5866a5a14431cabfaef57bdfaf2fffe64f53cc2f4c4db793d3d6', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:48:40.000Z'}}, {'blockNum': '0x7f5bd7', 'uniqueId': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861:log:88', 'hash': '0x0fa19d2c65386529f27317d9b1ccc49ac69c3f6d2b39f26b03ccecfc8a911861', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T04:57:00.000Z'}}, {'blockNum': '0x7f5bf6', 'uniqueId': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170:log:17', 'hash': '0x25cf0a1bc4c0e126a37ff7d04c7bae816212183f79a2571e889aeba58b4bb170', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'value': 4807.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6fec8700d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:02:23.000Z'}}, {'blockNum': '0x7f5c01', 'uniqueId': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625:log:54', 'hash': '0x76e679387d28fa324a5b901a32dafeaa65ff05f9fe809d6b062339d804106625', 'from': '0x215c8efd4358a5212255cc033cc371e1c82ddf90', 'to': '0x81fa5e19f1d7535b9a82d37f601de49d3e4fbeb5', 'value': 5207.09640408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x793cb690d8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:03:52.000Z'}}, {'blockNum': '0x7f5c1d', 'uniqueId': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3:log:19', 'hash': '0xfb7e9b7f4383c3732b8cebc48fbc9ff2a46290c0a5d1b9c6df6d024f4877bcd3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:10:49.000Z'}}, {'blockNum': '0x7f5c32', 'uniqueId': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a:log:38', 'hash': '0xc57d5e03f769005ee610601b9d3a277bae7697dfccf914db10b0a873cb196f5a', 'from': '0x349808181eb8be943ccea6e780235e9c294c19fe', 'to': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:16:12.000Z'}}, {'blockNum': '0x7f5c40', 'uniqueId': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca:log:10', 'hash': '0xccd9b7bcac1869399756a140071f348527403ab799520121d449e3e7ed7075ca', 'from': '0xce58cb5735f880a8d1c7d308e491fb1b421be231', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 60014.52561511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05755272b467', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:19:56.000Z'}}, {'blockNum': '0x7f5c75', 'uniqueId': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05:log:30', 'hash': '0x9882d305c1c167af48693f205f38985e00a50692fdb934bd34ed7eda40c9ee05', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 16410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x017e1338da00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:32.000Z'}}, {'blockNum': '0x7f5c76', 'uniqueId': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2:log:19', 'hash': '0x943aa5f7fcc688f3fdbfb16a676caf591dd7372008485974cf7644e7efabdbd2', 'from': '0xd03512e7935802e0fb9ced7ad5843ed249013a03', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:30:42.000Z'}}, {'blockNum': '0x7f5cb7', 'uniqueId': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3:log:2', 'hash': '0x5c2c830ae47434a64c85d364e0f5caa74455c6d1880102a04f356d6169586ff3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:43:39.000Z'}}, {'blockNum': '0x7f5ced', 'uniqueId': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c:log:25', 'hash': '0x233ca6a3ba90965d01a5a3497bf965edf6d0de6f9080a98add1b2722f0ac715c', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 128323.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0babc3a9d380', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:53:50.000Z'}}, {'blockNum': '0x7f5cf7', 'uniqueId': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32:log:2', 'hash': '0x4a81c1184343dc4426dd1535ce07dc477bde55e8f2dbef6794133e9732647c32', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2341bc4817f1ca9ea7853541900aea1f9fe72e34', 'value': 761.256096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x11b9709e80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2019-08-14T05:57:46.000Z'}}]}}
Number of returned transfers:  550
Answer is complete
 
symbol             NXS
group               SE
date        2019-10-02
hour             18:00
exchange       binance
Name: 914, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2019-10-02 18:00:00 2019-10-02 06:00:00 2019-10-03 06:00:00
Unix timestamps:  1569988800.0 1570075200.0
Hex Block Numbers:  0x84268b 0x843f83
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            NEBL
group              CPI
date        2019-04-08
hour             16:30
exchange       binance
Name: 1000, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2019-04-08 16:30:00 2019-04-08 04:30:00 2019-04-09 04:30:00
Unix timestamps:  1554690600.0 1554777000.0
Hex Block Numbers:  0x72d1a8 0x72eae5
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BLZ
group              CPI
date        2019-04-13
hour             17:00
exchange       binance
Name: 1001, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-04-13 17:00:00 2019-04-13 05:00:00 2019-04-14 05:00:00
Unix timestamps:  1555124400.0 1555210800.0
Hex Block Numbers:  0x734fc7 0x73691a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7350ab', 'uniqueId': '0xc622dfde86c2f77bf95dfbe142e9683194b0dbb1bbd1862ccae55e695268e3d3:log:2', 'hash': '0xc622dfde86c2f77bf95dfbe142e9683194b0dbb1bbd1862ccae55e695268e3d3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 185200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2737b64d5058a7c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T03:44:30.000Z'}}, {'blockNum': '0x7350b9', 'uniqueId': '0x40fe3ce83de8f95467cfc8bc7abd4bed2c629892c431cb33a207322203ba42a3:log:6', 'hash': '0x40fe3ce83de8f95467cfc8bc7abd4bed2c629892c431cb33a207322203ba42a3', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 80065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10f45514b17312640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T03:46:39.000Z'}}, {'blockNum': '0x7350d7', 'uniqueId': '0x6332ed2d1f51c64ee7b602d1ff7e7aac2dc92457bafc66b95567c2605e06b2e3:log:2', 'hash': '0x6332ed2d1f51c64ee7b602d1ff7e7aac2dc92457bafc66b95567c2605e06b2e3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T03:54:15.000Z'}}, {'blockNum': '0x735105', 'uniqueId': '0x372cd66aac45c0b612060574fe49fd367a070fe9391edb5a98787807ee5277fd:log:52', 'hash': '0x372cd66aac45c0b612060574fe49fd367a070fe9391edb5a98787807ee5277fd', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xdde1c7ad4cca5672a5c6db767b7ed79794bf7ca8', 'value': 10032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021fd5f7a02f9ec00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:03:40.000Z'}}, {'blockNum': '0x73510d', 'uniqueId': '0xdc1dd0f65cf6ed922cc5273baedbcc48fb66cc2ddc0225ce23215bbad0385d42:log:6', 'hash': '0xdc1dd0f65cf6ed922cc5273baedbcc48fb66cc2ddc0225ce23215bbad0385d42', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:05:51.000Z'}}, {'blockNum': '0x735183', 'uniqueId': '0x12a33fe82dd1a15452d37fa38d0d8b3a1ae90ef9435ab62375d564427baa11d5:log:5', 'hash': '0x12a33fe82dd1a15452d37fa38d0d8b3a1ae90ef9435ab62375d564427baa11d5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 69.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03c9e79b3653468000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:33:14.000Z'}}, {'blockNum': '0x7351c7', 'uniqueId': '0x6411af7f42b85d6a0884cfca948cee3ecf2a05b2d9c6a770f08a0fd36b757395:log:7', 'hash': '0x6411af7f42b85d6a0884cfca948cee3ecf2a05b2d9c6a770f08a0fd36b757395', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 36982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d4cc5944f768180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:45:57.000Z'}}, {'blockNum': '0x7351d9', 'uniqueId': '0x38922b1505028d4d1d0505467f62a930c22b8dce7d459831aeaac3aa316f04d4:log:4', 'hash': '0x38922b1505028d4d1d0505467f62a930c22b8dce7d459831aeaac3aa316f04d4', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d4cc5944f768180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T04:49:03.000Z'}}, {'blockNum': '0x73521f', 'uniqueId': '0xf556e605d09994c3a1c1feb2926592c4695bb7e9e5ad948a4f17245fc5c5215d:log:79', 'hash': '0xf556e605d09994c3a1c1feb2926592c4695bb7e9e5ad948a4f17245fc5c5215d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 32058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06c9de1f1d6fc0a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:03:37.000Z'}}, {'blockNum': '0x735237', 'uniqueId': '0x76a11b813e4884998dcb34fe487e139dc28644063c248a458dae32f6ebf1a859:log:16', 'hash': '0x76a11b813e4884998dcb34fe487e139dc28644063c248a458dae32f6ebf1a859', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06c9de1f1d6fc0a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:08:59.000Z'}}, {'blockNum': '0x735265', 'uniqueId': '0x8a2c44af91e9678c6dd41c01316b6564e7fe107431d8865aac1f76b474c01057:log:43', 'hash': '0x8a2c44af91e9678c6dd41c01316b6564e7fe107431d8865aac1f76b474c01057', 'from': '0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c', 'to': '0x58251fb558105e823a17eef3b6fc281a2d5cbd32', 'value': 0.15021936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0215afb6472fc000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:20:49.000Z'}}, {'blockNum': '0x7352ae', 'uniqueId': '0x549c0be1231059f32da19f563e627749b8a5c501b8c7069579aef726e88fe340:log:17', 'hash': '0x549c0be1231059f32da19f563e627749b8a5c501b8c7069579aef726e88fe340', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 10282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x022d636a0ba116680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:38:34.000Z'}}, {'blockNum': '0x7352d8', 'uniqueId': '0xd276c72d96de1144f7dac7ca2bfb9d3d3f99aeebce7966a70275b7f224c6aa19:log:67', 'hash': '0xd276c72d96de1144f7dac7ca2bfb9d3d3f99aeebce7966a70275b7f224c6aa19', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x022d636a0ba116680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T05:49:51.000Z'}}, {'blockNum': '0x735318', 'uniqueId': '0xbba35d46eae288bf46526aee3c68e759a8e3a1d91d2e7d00e3cdcd21f5053452:log:9', 'hash': '0xbba35d46eae288bf46526aee3c68e759a8e3a1d91d2e7d00e3cdcd21f5053452', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 67315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e41274949d83bec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T06:01:21.000Z'}}, {'blockNum': '0x735364', 'uniqueId': '0xeb9b02abf4f8db7a3f2ba3b100d80ad4333a7ad7403ce3834c9a1a99682e8a4e:log:1', 'hash': '0xeb9b02abf4f8db7a3f2ba3b100d80ad4333a7ad7403ce3834c9a1a99682e8a4e', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0e41274949d83bec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T06:19:02.000Z'}}, {'blockNum': '0x7353c4', 'uniqueId': '0xc927ea70e83d7f8edfbffbbda5849dd08faf533dc957b8acd9eb69b54d616ea2:log:6', 'hash': '0xc927ea70e83d7f8edfbffbbda5849dd08faf533dc957b8acd9eb69b54d616ea2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcb972f1c6d0af7e841dfcf4bf49f12d87be969b0', 'value': 285.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f7ce24c4be91a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T06:42:31.000Z'}}, {'blockNum': '0x73540e', 'uniqueId': '0x2dde975f41fc7b95d98bacacd45e08e0caa7d3a19c1bd07a2464e84fbe05ec22:log:68', 'hash': '0x2dde975f41fc7b95d98bacacd45e08e0caa7d3a19c1bd07a2464e84fbe05ec22', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:01:57.000Z'}}, {'blockNum': '0x73540e', 'uniqueId': '0x870329ed7c1905840a72cbbe7fffbf91a863de67b4787019c17d95856f06c807:log:70', 'hash': '0x870329ed7c1905840a72cbbe7fffbf91a863de67b4787019c17d95856f06c807', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:01:57.000Z'}}, {'blockNum': '0x73540e', 'uniqueId': '0xe3c8003e837ceb4dc7e5744adacec1633f8f4f0e1596be9a770c7d6a68d8622b:log:73', 'hash': '0xe3c8003e837ceb4dc7e5744adacec1633f8f4f0e1596be9a770c7d6a68d8622b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 103408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5c24818ef59c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:01:57.000Z'}}, {'blockNum': '0x73542d', 'uniqueId': '0x11688c696c01aacccec7837090744f103dec8aa72b49813278e71c52a4095f9e:log:28', 'hash': '0x11688c696c01aacccec7837090744f103dec8aa72b49813278e71c52a4095f9e', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:08:47.000Z'}}, {'blockNum': '0x73542e', 'uniqueId': '0x678aecce24353f98029a45ebf7f7f55d59f9c6a3f8c3243b37ea6237ccf4d72e:log:7', 'hash': '0x678aecce24353f98029a45ebf7f7f55d59f9c6a3f8c3243b37ea6237ccf4d72e', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 103408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5c24818ef59c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:09:07.000Z'}}, {'blockNum': '0x73543a', 'uniqueId': '0x220c9ab64cb9ee1f1145bdecdf1a784efecc562a3d95167300b7a586ec193fde:log:24', 'hash': '0x220c9ab64cb9ee1f1145bdecdf1a784efecc562a3d95167300b7a586ec193fde', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 110000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x174b1ca8ab05a8c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:11:16.000Z'}}, {'blockNum': '0x735473', 'uniqueId': '0x68508aa4d84a0051e40a641a79dad8a243a28bc17a9bc48c64a79414e5a045f2:log:74', 'hash': '0x68508aa4d84a0051e40a641a79dad8a243a28bc17a9bc48c64a79414e5a045f2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 26998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05b79083e6772c180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:23:54.000Z'}}, {'blockNum': '0x73548c', 'uniqueId': '0x8403f9cf146010cdccaf37e9ab882d2816c0e0503a6656a66daa3e5b536ccb3f:log:14', 'hash': '0x8403f9cf146010cdccaf37e9ab882d2816c0e0503a6656a66daa3e5b536ccb3f', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05b79083e6772c180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:29:17.000Z'}}, {'blockNum': '0x7354a3', 'uniqueId': '0x5225e3cc8beb9287b9d00d1325b03257c507187ee828cedf5b1697d6223ae3a5:log:7', 'hash': '0x5225e3cc8beb9287b9d00d1325b03257c507187ee828cedf5b1697d6223ae3a5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:36:30.000Z'}}, {'blockNum': '0x7354b0', 'uniqueId': '0xfea7e9aa5e519e054eadce20b813d9286a1960e4abc5116dea559bfca68df199:log:14', 'hash': '0xfea7e9aa5e519e054eadce20b813d9286a1960e4abc5116dea559bfca68df199', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T07:38:52.000Z'}}, {'blockNum': '0x735546', 'uniqueId': '0xf27e7fd2f417bb87181a9b0024f1ecad4aa91525d65eba7179d04b037112f63e:log:30', 'hash': '0xf27e7fd2f417bb87181a9b0024f1ecad4aa91525d65eba7179d04b037112f63e', 'from': '0x426d0a5e194dcc628ad8467b398c2ce7cf828f1e', 'to': '0x9ea66a773e14ee249ab7f9ebb427e5995372193d', 'value': 570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1ee656cc02b4a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T08:14:33.000Z'}}, {'blockNum': '0x7355b6', 'uniqueId': '0xbff24fce7f03b1e651db4842fb393940c4107cca5417369b2398dba142ed368a:log:21', 'hash': '0xbff24fce7f03b1e651db4842fb393940c4107cca5417369b2398dba142ed368a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'value': 171.164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x094760af225ef60000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T08:42:49.000Z'}}, {'blockNum': '0x7355d3', 'uniqueId': '0xdf02f2a715156d895e175bf4f86a339acbb6a5c59aedba2bd62ca0e574a21c9c:log:2', 'hash': '0xdf02f2a715156d895e175bf4f86a339acbb6a5c59aedba2bd62ca0e574a21c9c', 'from': '0x572aff7ef5e6d0fd0fd36310305339df1f68cc4f', 'to': '0x1cf78337f278a12c203e570921446d3438539e7c', 'value': 491.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1a9ebab5ca29e48000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T08:49:03.000Z'}}, {'blockNum': '0x73560e', 'uniqueId': '0x9d56daac5fa80a97f6d76008f587e6bb9fd4df2c1a5946fa51d933bd99687826:log:1', 'hash': '0x9d56daac5fa80a97f6d76008f587e6bb9fd4df2c1a5946fa51d933bd99687826', 'from': '0x1cf78337f278a12c203e570921446d3438539e7c', 'to': '0x24f738a0ac7b2564dc8ead7dfab8cf1533687fd7', 'value': 400.00011629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15af1de2796c641400', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T09:02:13.000Z'}}, {'blockNum': '0x735716', 'uniqueId': '0x0d8c25ba514dc4b63d5d8bfb72f17a3e3689e4682a0ccf93dc42fc4fca2b9579:log:4', 'hash': '0x0d8c25ba514dc4b63d5d8bfb72f17a3e3689e4682a0ccf93dc42fc4fca2b9579', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 15082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033198cbb423a9680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:03:43.000Z'}}, {'blockNum': '0x735731', 'uniqueId': '0xb3f5607990eb18ed24ea455363842d92561507caceff4d87fc7a78d0089690ea:log:82', 'hash': '0xb3f5607990eb18ed24ea455363842d92561507caceff4d87fc7a78d0089690ea', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033198cbb423a9680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:09:06.000Z'}}, {'blockNum': '0x73577f', 'uniqueId': '0x11c3664a59f78ce830d1fbabec51bd3d66b5e4475b1e6a930ad354fc79894aa8:log:63', 'hash': '0x11c3664a59f78ce830d1fbabec51bd3d66b5e4475b1e6a930ad354fc79894aa8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 30054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065d3b08e71565d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:26:57.000Z'}}, {'blockNum': '0x7357a9', 'uniqueId': '0xa3147b558873486e5e3c1d3b59ffdcaaead11007969c045b11995d30fa5c852a:log:76', 'hash': '0xa3147b558873486e5e3c1d3b59ffdcaaead11007969c045b11995d30fa5c852a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x98525cb4894100899fa84dcbb96e57972df09ca2', 'value': 19998.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x043c18dff838a2918000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:36:08.000Z'}}, {'blockNum': '0x7357b9', 'uniqueId': '0xcd1e4a9714881a662699c3c73e2769baae214fc85b3cc6d05eeca8bce6fa1800:log:26', 'hash': '0xcd1e4a9714881a662699c3c73e2769baae214fc85b3cc6d05eeca8bce6fa1800', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065d3b08e71565d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:39:05.000Z'}}, {'blockNum': '0x7357e3', 'uniqueId': '0xa2361acf4aa1cef3f7376ede3a7c41a071034d2e403e10809f17f524d6e5b876:log:4', 'hash': '0xa2361acf4aa1cef3f7376ede3a7c41a071034d2e403e10809f17f524d6e5b876', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xaf64fa82f409d3b5abb69e0be8f2215a84bd86ff', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:49:54.000Z'}}, {'blockNum': '0x735811', 'uniqueId': '0x1b5fb263f3dc3399a369d03006451974e10fff259697fe2bc7254d7ee4ec5a5e:log:73', 'hash': '0x1b5fb263f3dc3399a369d03006451974e10fff259697fe2bc7254d7ee4ec5a5e', 'from': '0xaf64fa82f409d3b5abb69e0be8f2215a84bd86ff', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T10:58:53.000Z'}}, {'blockNum': '0x735879', 'uniqueId': '0x76f83e12d92698b00c248eb992969c9e44d9ac66243bf1dbc8c39eebf296dbb9:log:91', 'hash': '0x76f83e12d92698b00c248eb992969c9e44d9ac66243bf1dbc8c39eebf296dbb9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 62277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d300afdc65009f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:21:13.000Z'}}, {'blockNum': '0x735887', 'uniqueId': '0x8a784ae7f7bb6d0249a1357176eca2fa48f8f32aa85ba6f8219c4d1841b28e7e:log:42', 'hash': '0x8a784ae7f7bb6d0249a1357176eca2fa48f8f32aa85ba6f8219c4d1841b28e7e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 36425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07b69a6bc01433840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:24:55.000Z'}}, {'blockNum': '0x73589a', 'uniqueId': '0xa6d5d6d526e0c2a2d755a9dbba3398754112996e80f1c1e7b861ae22ac5f5a7c:log:21', 'hash': '0xa6d5d6d526e0c2a2d755a9dbba3398754112996e80f1c1e7b861ae22ac5f5a7c', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07b69a6bc01433840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:29:30.000Z'}}, {'blockNum': '0x73589a', 'uniqueId': '0x65711e151081aed9af4b74c68c8132ead1715efdda43c30b5ab5ca5e471514ee:log:27', 'hash': '0x65711e151081aed9af4b74c68c8132ead1715efdda43c30b5ab5ca5e471514ee', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d300afdc65009f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:29:30.000Z'}}, {'blockNum': '0x7358c3', 'uniqueId': '0xf8df4f97b5fd73b3e692aa22cdc7d6e1321443bdde44347fd3f746f647468e60:log:95', 'hash': '0xf8df4f97b5fd73b3e692aa22cdc7d6e1321443bdde44347fd3f746f647468e60', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 265265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x382c0b6201cbba240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:37:05.000Z'}}, {'blockNum': '0x7358c3', 'uniqueId': '0x135ff771c63f04a4519c45ca2b8ea1079934da06a5c1b50ca6ed699b6d9ca5a3:log:97', 'hash': '0x135ff771c63f04a4519c45ca2b8ea1079934da06a5c1b50ca6ed699b6d9ca5a3', 'from': '0xdde1c7ad4cca5672a5c6db767b7ed79794bf7ca8', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 10032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021fd5f7a02f9ec00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T11:37:05.000Z'}}, {'blockNum': '0x73593a', 'uniqueId': '0x909c63600b431ac653e43b3a2b3a5f3eab4fee90179c83a67cde0e798574f74d:log:8', 'hash': '0x909c63600b431ac653e43b3a2b3a5f3eab4fee90179c83a67cde0e798574f74d', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'value': 963.9642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3441b0cc99499a8000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:01:54.000Z'}}, {'blockNum': '0x735946', 'uniqueId': '0x30a92090030b8f9ec7234d2fbf1ad290936580a8a9773cb2cb8ad6b97c91ef87:log:0', 'hash': '0x30a92090030b8f9ec7234d2fbf1ad290936580a8a9773cb2cb8ad6b97c91ef87', 'from': '0xcb972f1c6d0af7e841dfcf4bf49f12d87be969b0', 'to': '0x1cf78337f278a12c203e570921446d3438539e7c', 'value': 285.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f7ce24c4be91a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:04:40.000Z'}}, {'blockNum': '0x73597f', 'uniqueId': '0x82e9157b8474697caee33962d404032c250ec2daea0bc51bad5b585d64f4bdd7:log:0', 'hash': '0x82e9157b8474697caee33962d404032c250ec2daea0bc51bad5b585d64f4bdd7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x16fb6a3c8e7c63aeaa75de6b13e456acbe58fad6', 'value': 964.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x344c2df0b1c2d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:17:57.000Z'}}, {'blockNum': '0x735995', 'uniqueId': '0xb7720690eecd83f547437b857bbe4709e8172c40c0b2d6c36552d0b1e1ace55a:log:37', 'hash': '0xb7720690eecd83f547437b857bbe4709e8172c40c0b2d6c36552d0b1e1ace55a', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'value': 1444.9004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4e54056a63bbd30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:21:55.000Z'}}, {'blockNum': '0x73599b', 'uniqueId': '0x09226ad8a040fadc965665095c5de3efe648b01e7144c8ea71bbfa96daecc159:log:88', 'hash': '0x09226ad8a040fadc965665095c5de3efe648b01e7144c8ea71bbfa96daecc159', 'from': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 2408.8645999999994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x8295b636fd05676580', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:23:17.000Z'}}, {'blockNum': '0x7359cc', 'uniqueId': '0x3f0d4caf66e33f90421994b9cb3380c17e4f0b1dd6d374e207de75fdeed87f45:log:5', 'hash': '0x3f0d4caf66e33f90421994b9cb3380c17e4f0b1dd6d374e207de75fdeed87f45', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 14628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0318fc47b188ce100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:33:36.000Z'}}, {'blockNum': '0x7359ea', 'uniqueId': '0xb385b35dbfdb32937e8306555ce0964a1a46964e7c5cf51ea81a05bf3ea6a56e:log:32', 'hash': '0xb385b35dbfdb32937e8306555ce0964a1a46964e7c5cf51ea81a05bf3ea6a56e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc5b426c2f0b0e80a12815a7e8f9c134cbae6e7de', 'value': 1386.298, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4b26bfde1412790000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:40:06.000Z'}}, {'blockNum': '0x735a11', 'uniqueId': '0x796e79b874300ddae261cfe996131e94a107f7603e119207954e801b8d615500:log:9', 'hash': '0x796e79b874300ddae261cfe996131e94a107f7603e119207954e801b8d615500', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0318fc47b188ce100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:48:19.000Z'}}, {'blockNum': '0x735a2d', 'uniqueId': '0xb9a84946d47baf6856244c4eea0468846ec6239d6647dfe60c498e9b893d32f1:log:48', 'hash': '0xb9a84946d47baf6856244c4eea0468846ec6239d6647dfe60c498e9b893d32f1', 'from': '0xc5b426c2f0b0e80a12815a7e8f9c134cbae6e7de', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 1386.2979989999997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4b26bfdd2b3dcf5c20', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T12:55:31.000Z'}}, {'blockNum': '0x735a76', 'uniqueId': '0xeca8a246909f5b412a11d6e7f56041f99ba058ef3597888b6882e5a2936e7d72:log:50', 'hash': '0xeca8a246909f5b412a11d6e7f56041f99ba058ef3597888b6882e5a2936e7d72', 'from': '0x65b7a521bbbcd884f36578099f259e88fca9cead', 'to': '0xf609a55e8804330f4e0f1f372110b44b91bd90e2', 'value': 178.94022273985553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09b34b6084165d5bca', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T13:11:44.000Z'}}, {'blockNum': '0x735b33', 'uniqueId': '0x66f27839872d3819cbccac90b6b6c315c855d67ebf3447d557e78e1a618aa6d9:log:14', 'hash': '0x66f27839872d3819cbccac90b6b6c315c855d67ebf3447d557e78e1a618aa6d9', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 10058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02213eca2e6e9ee80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T13:53:56.000Z'}}, {'blockNum': '0x735b49', 'uniqueId': '0x80d4f24ef1ce328f689dfc9770b2731108283ac5e637b59750cd39fbf6f2e9fc:log:16', 'hash': '0x80d4f24ef1ce328f689dfc9770b2731108283ac5e637b59750cd39fbf6f2e9fc', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02213eca2e6e9ee80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T13:59:08.000Z'}}, {'blockNum': '0x735bd7', 'uniqueId': '0x3435b53f0710be98abff6263137798013642b8ea9aa4660d7c21a246a98580f6:log:48', 'hash': '0x3435b53f0710be98abff6263137798013642b8ea9aa4660d7c21a246a98580f6', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 10981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025347fce82b24740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T14:31:26.000Z'}}, {'blockNum': '0x735bf0', 'uniqueId': '0x69503cf66c4cefa8f159e303f6baaf087fb96cf65cdf4d011b23fc19dc470b97:log:45', 'hash': '0x69503cf66c4cefa8f159e303f6baaf087fb96cf65cdf4d011b23fc19dc470b97', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025347fce82b24740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T14:38:58.000Z'}}, {'blockNum': '0x735d66', 'uniqueId': '0xfa3d51d2a70d0f6a01a42ca974e3d06ded7ec4a0d9c189b9143c9b6e6664aa3f:log:6', 'hash': '0xfa3d51d2a70d0f6a01a42ca974e3d06ded7ec4a0d9c189b9143c9b6e6664aa3f', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:04:09.000Z'}}, {'blockNum': '0x735da6', 'uniqueId': '0x47f528bf8f507b0b6986b30dd9d5f88a0b37b2c7bceaf554da4db703a7155ca5:log:28', 'hash': '0x47f528bf8f507b0b6986b30dd9d5f88a0b37b2c7bceaf554da4db703a7155ca5', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:18:32.000Z'}}, {'blockNum': '0x735db5', 'uniqueId': '0xb453f808d59ee5a80463aa3dcb3422bf353a7c4f55bb2efe997523017415ee14:log:4', 'hash': '0xb453f808d59ee5a80463aa3dcb3422bf353a7c4f55bb2efe997523017415ee14', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x8d7d296ecac771217394e7dd22a8748f735a01f9', 'value': 675.2428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x249ae05502a4230000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:21:47.000Z'}}, {'blockNum': '0x735dda', 'uniqueId': '0x7451c64cf52ffebdbb1529e4905f86578064dd773595dceb76b9227d5eb07d16:log:7', 'hash': '0x7451c64cf52ffebdbb1529e4905f86578064dd773595dceb76b9227d5eb07d16', 'from': '0x8d7d296ecac771217394e7dd22a8748f735a01f9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 675.2428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x249ae05502a4230000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:29:24.000Z'}}, {'blockNum': '0x735e24', 'uniqueId': '0xfe0da20756aa9618f7afeebe415b1a2fb0267bd69976127990ad5e0dbb5ed244:log:10', 'hash': '0xfe0da20756aa9618f7afeebe415b1a2fb0267bd69976127990ad5e0dbb5ed244', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 19137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x040d6b39abd41a640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:43:08.000Z'}}, {'blockNum': '0x735e41', 'uniqueId': '0xc0c44dddbdc973b4dd46a4b3cf9167099d2a108c025008c36a085614dd8b4578:log:7', 'hash': '0xc0c44dddbdc973b4dd46a4b3cf9167099d2a108c025008c36a085614dd8b4578', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x040d6b39abd41a640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T16:48:51.000Z'}}, {'blockNum': '0x735e71', 'uniqueId': '0x3969eab046b76d1dc2441505cb43e20d86f5db8ad2fa618d08dc1cf78e541a0f:log:10', 'hash': '0x3969eab046b76d1dc2441505cb43e20d86f5db8ad2fa618d08dc1cf78e541a0f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 42482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08fef42e80b7b0880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:00:58.000Z'}}, {'blockNum': '0x735e73', 'uniqueId': '0x366007b8f1ef818d69fc62623d03cc8c060024949a7860031b15dfc1033129f8:log:27', 'hash': '0x366007b8f1ef818d69fc62623d03cc8c060024949a7860031b15dfc1033129f8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 130143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b8f10f04cd58e1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:01:36.000Z'}}, {'blockNum': '0x735e73', 'uniqueId': '0x29548d82a10a77fdd313eb6a9293b711b457a2845368b74e3412d692361172d5:log:28', 'hash': '0x29548d82a10a77fdd313eb6a9293b711b457a2845368b74e3412d692361172d5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0282b70d603847400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:01:36.000Z'}}, {'blockNum': '0x735e73', 'uniqueId': '0xaae6af0285bcfc5bd0d53ecc0ace215f6bf597c7b9062757c871e8c76757e726:log:60', 'hash': '0xaae6af0285bcfc5bd0d53ecc0ace215f6bf597c7b9062757c871e8c76757e726', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 11110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025a4638f8b27dd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:01:36.000Z'}}, {'blockNum': '0x735e79', 'uniqueId': '0x4610d1199958e1a1e34564c1482bc347b11096b4e27ba3d57161cb1247cd8123:log:6', 'hash': '0x4610d1199958e1a1e34564c1482bc347b11096b4e27ba3d57161cb1247cd8123', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 22110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04ae95e370330eb80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:02:38.000Z'}}, {'blockNum': '0x735e79', 'uniqueId': '0x09bf3c5ee20d3de7dabfee4a476f066a2367c7cfb9c3fff1a7f9f72ed83f462c:log:7', 'hash': '0x09bf3c5ee20d3de7dabfee4a476f066a2367c7cfb9c3fff1a7f9f72ed83f462c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:02:38.000Z'}}, {'blockNum': '0x735e79', 'uniqueId': '0xcf30fcb72d959db474ccce26c9c845cb08328d895f40299c24dc3d509ccd90ae:log:9', 'hash': '0xcf30fcb72d959db474ccce26c9c845cb08328d895f40299c24dc3d509ccd90ae', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 902.95182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x30f2f9483f0874c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:02:38.000Z'}}, {'blockNum': '0x735e7b', 'uniqueId': '0x068579a2de2e8e29e02fbeb5727c2b28c34c381d1e42c8d9fde3d9fa6f4a643c:log:5', 'hash': '0x068579a2de2e8e29e02fbeb5727c2b28c34c381d1e42c8d9fde3d9fa6f4a643c', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 30930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x068cb7fa15d630080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:03:04.000Z'}}, {'blockNum': '0x735e82', 'uniqueId': '0x43f2bbc8aac134acd08f074274b4c2f7a8c587f340b336ac137a83c51292c86f:log:1', 'hash': '0x43f2bbc8aac134acd08f074274b4c2f7a8c587f340b336ac137a83c51292c86f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 16147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x036b54a3c587086c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:17.000Z'}}, {'blockNum': '0x735e84', 'uniqueId': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c:log:13', 'hash': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c', 'from': '0xa285552a045b81ef343ad503bc163780a3cf5583', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:23.000Z'}}, {'blockNum': '0x735e84', 'uniqueId': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c:log:14', 'hash': '0xa001a05d68edea1652bc730432097f6b1d607b72de41843c966c552db1a0611c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:23.000Z'}}, {'blockNum': '0x735e85', 'uniqueId': '0xbac88d8ffcb40e239f6defd583d5fe3e0d945b491fc3ae004fa54db758990219:log:23', 'hash': '0xbac88d8ffcb40e239f6defd583d5fe3e0d945b491fc3ae004fa54db758990219', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'value': 1503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x517a50a8c3c41c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:04:29.000Z'}}, {'blockNum': '0x735e89', 'uniqueId': '0xba6da1481cf062551f4fcea581348a1431045474e3c8a9ef2677add6b508b6ea:log:2', 'hash': '0xba6da1481cf062551f4fcea581348a1431045474e3c8a9ef2677add6b508b6ea', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 99960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x152ad7ab5538cee00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:02.000Z'}}, {'blockNum': '0x735e89', 'uniqueId': '0xd1fd6d7a014c4f9ac6ef8cdeb0d9d3a36d0fedfe3bca25f2b6fa4f60ca673cf2:log:3', 'hash': '0xd1fd6d7a014c4f9ac6ef8cdeb0d9d3a36d0fedfe3bca25f2b6fa4f60ca673cf2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'value': 65545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0de1339a13b4e2840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:02.000Z'}}, {'blockNum': '0x735e8a', 'uniqueId': '0xaf5661a11100adbe8e70c187bb895d05214da66fe79cc0a0c4019a5560304b91:log:10', 'hash': '0xaf5661a11100adbe8e70c187bb895d05214da66fe79cc0a0c4019a5560304b91', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'value': 53816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b655f07569ca5e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:12.000Z'}}, {'blockNum': '0x735e8a', 'uniqueId': '0x421d0ae1b04b1ad93e29f05069cef646c73cb7f065c69672dddff1262eb66f1a:log:12', 'hash': '0x421d0ae1b04b1ad93e29f05069cef646c73cb7f065c69672dddff1262eb66f1a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 46560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09dc05cce28c2b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:12.000Z'}}, {'blockNum': '0x735e8a', 'uniqueId': '0x6a3b8b393d318644163ed4e54a16689f749dac46a104b140dadb68753addd556:log:13', 'hash': '0x6a3b8b393d318644163ed4e54a16689f749dac46a104b140dadb68753addd556', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 10564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x023cacf34d877a900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:12.000Z'}}, {'blockNum': '0x735e8b', 'uniqueId': '0xc8632de21d666f9507de281eafe182e115fc347447062d196252c5ddd63fae89:log:48', 'hash': '0xc8632de21d666f9507de281eafe182e115fc347447062d196252c5ddd63fae89', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b87506a3e7b0d400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:05:45.000Z'}}, {'blockNum': '0x735e8e', 'uniqueId': '0xd1df98811b0f81ad8aeec3c214a06a75f48341f259f6ec9409f2ab69e6353645:log:53', 'hash': '0xd1df98811b0f81ad8aeec3c214a06a75f48341f259f6ec9409f2ab69e6353645', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'value': 11429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x026b913ca29013740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:07:01.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0xc2c09b7decf1f2397253397d7f704c9b10849af0e9ba4a45a7f6293749405fad:log:11', 'hash': '0xc2c09b7decf1f2397253397d7f704c9b10849af0e9ba4a45a7f6293749405fad', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 260143, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3716615a8b509b5c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x9ffc083d2e79cee8715ec061fbd7a33a4276f5a9f132762446535c38e5f22a65:log:12', 'hash': '0x9ffc083d2e79cee8715ec061fbd7a33a4276f5a9f132762446535c38e5f22a65', 'from': '0x0d11a5fb387f6bbcdfe5ff2c10407268d8dba26a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0de1339a13b4e2840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x1c06676d606d8163ebf18d461f3edf36f77d71c41bdeb2e742b8a707715104b9:log:13', 'hash': '0x1c06676d606d8163ebf18d461f3edf36f77d71c41bdeb2e742b8a707715104b9', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x023cacf34d877a900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x8a1a573cae4b31848ca80be85e082e7301f28313027291b812e59a87501c52cf:log:14', 'hash': '0x8a1a573cae4b31848ca80be85e082e7301f28313027291b812e59a87501c52cf', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x152ad7ab5538cee00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0xb1943fa7966260c4ab36176a162f48a94f83f31a7ab56105825929f8f7640346:log:15', 'hash': '0xb1943fa7966260c4ab36176a162f48a94f83f31a7ab56105825929f8f7640346', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09dc05cce28c2b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e99', 'uniqueId': '0x5ebdc02f8b9142a1844e6955b93b5389e25be19d9bdebc5c6c562ce3aae5ce37:log:16', 'hash': '0x5ebdc02f8b9142a1844e6955b93b5389e25be19d9bdebc5c6c562ce3aae5ce37', 'from': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b655f07569ca5e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:08:58.000Z'}}, {'blockNum': '0x735e9a', 'uniqueId': '0x45043433648bb47f2af367d49dcc36183112e44266fc75c109a429c34fde2873:log:0', 'hash': '0x45043433648bb47f2af367d49dcc36183112e44266fc75c109a429c34fde2873', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:09.000Z'}}, {'blockNum': '0x735e9a', 'uniqueId': '0x69f1a170964aea484c86803e746fb6717f03f436e0288d7ae27902fa2a857cf5:log:7', 'hash': '0x69f1a170964aea484c86803e746fb6717f03f436e0288d7ae27902fa2a857cf5', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 902.95182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x30f2f9483f0874c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:09.000Z'}}, {'blockNum': '0x735e9b', 'uniqueId': '0xc8e90f7eb4194b75b5633b389823bf9c2d0a0d37b95c1db2cabf80d23a7e9f0b:log:1', 'hash': '0xc8e90f7eb4194b75b5633b389823bf9c2d0a0d37b95c1db2cabf80d23a7e9f0b', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x068cb7fa15d630080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:13.000Z'}}, {'blockNum': '0x735e9b', 'uniqueId': '0xc6e060ac1c59685d9fc5bf75226328da65e1b541d3902d2c3b3241e22a2af1be:log:2', 'hash': '0xc6e060ac1c59685d9fc5bf75226328da65e1b541d3902d2c3b3241e22a2af1be', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x036b54a3c587086c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:13.000Z'}}, {'blockNum': '0x735e9c', 'uniqueId': '0x17946e2adef5fae347f5a022bc013e906ef9c8c58f979c70e99d2269042d158f:log:0', 'hash': '0x17946e2adef5fae347f5a022bc013e906ef9c8c58f979c70e99d2269042d158f', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04ae95e370330eb80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:21.000Z'}}, {'blockNum': '0x735e9d', 'uniqueId': '0xaec336597069de7b15f1fa059eee6ab6e3a0906ffd8eecde42d62d3648843850:log:15', 'hash': '0xaec336597069de7b15f1fa059eee6ab6e3a0906ffd8eecde42d62d3648843850', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025a4638f8b27dd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:23.000Z'}}, {'blockNum': '0x735ea0', 'uniqueId': '0x249c18b65776a0a579c36b1e51ae64284917da063037bc4bfaa10940ba8f09e2:log:2', 'hash': '0x249c18b65776a0a579c36b1e51ae64284917da063037bc4bfaa10940ba8f09e2', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 4645.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfbd6ca3180da710000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:09:57.000Z'}}, {'blockNum': '0x735ea5', 'uniqueId': '0xe051fbc7910ce2fe80c76c25499dbf85230d0db365654f8336afd3a65f4be543:log:42', 'hash': '0xe051fbc7910ce2fe80c76c25499dbf85230d0db365654f8336afd3a65f4be543', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 122222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x19e1aafb401740f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:11:04.000Z'}}, {'blockNum': '0x735ea8', 'uniqueId': '0x081143ee2e4480156efd8cd2fb787821bb85efdbc97bc3dcad7266674f677f1e:log:12', 'hash': '0x081143ee2e4480156efd8cd2fb787821bb85efdbc97bc3dcad7266674f677f1e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 20771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0465ff87d28686ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:12:33.000Z'}}, {'blockNum': '0x735ea8', 'uniqueId': '0xc18476e4721e405b78c0eac7df69e87bfc91cca962f4a242edd7372470d842c4:log:13', 'hash': '0xc18476e4721e405b78c0eac7df69e87bfc91cca962f4a242edd7372470d842c4', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:12:33.000Z'}}, {'blockNum': '0x735eab', 'uniqueId': '0xce2d279927f2e3c23304fff31908e625e15e841cb39f8a596612ea4243c9d628:log:0', 'hash': '0xce2d279927f2e3c23304fff31908e625e15e841cb39f8a596612ea4243c9d628', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 30026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065bb674eb6f16e80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:13:44.000Z'}}, {'blockNum': '0x735eb4', 'uniqueId': '0x4364bb3cd68815a26b1268c1137198aaf1063b35ead44f416d98d7220851bc65:log:6', 'hash': '0x4364bb3cd68815a26b1268c1137198aaf1063b35ead44f416d98d7220851bc65', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 52715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b29af9593f5bccc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:15:30.000Z'}}, {'blockNum': '0x735eb4', 'uniqueId': '0xa6e5f344984f3fc844b2146e0e4c0c06658df78e20e3d33aa94864595e2cf2e8:log:11', 'hash': '0xa6e5f344984f3fc844b2146e0e4c0c06658df78e20e3d33aa94864595e2cf2e8', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 11171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025d94c4818160ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:15:30.000Z'}}, {'blockNum': '0x735eb8', 'uniqueId': '0x1af1e8b197d503279b73de6ea399494cf5077318d89d84cc102d8f95fa0c9476:log:6', 'hash': '0x1af1e8b197d503279b73de6ea399494cf5077318d89d84cc102d8f95fa0c9476', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x027343e1fa36ecec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:16:24.000Z'}}, {'blockNum': '0x735ebd', 'uniqueId': '0x273c5d59d09f2e9a4b79e54e261322964b126e0040699204256e9a54b40d79a2:log:19', 'hash': '0x273c5d59d09f2e9a4b79e54e261322964b126e0040699204256e9a54b40d79a2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 21168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047b850327211cc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:17:10.000Z'}}, {'blockNum': '0x735ec0', 'uniqueId': '0x613a9fda29eaa8947a5756c00ec24b0e89c701a8f5a7c1771ee68a14b800bbf1:log:2', 'hash': '0x613a9fda29eaa8947a5756c00ec24b0e89c701a8f5a7c1771ee68a14b800bbf1', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 44790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x097c121dac68d2180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:04.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x342529cbe40f51588c844e9c4f939facc3e26917b23cc86ce9aa3a99a4aecea5:log:3', 'hash': '0x342529cbe40f51588c844e9c4f939facc3e26917b23cc86ce9aa3a99a4aecea5', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065bb674eb6f16e80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x1e142d58d4adadabf7a3821994ed0383d35566e7ea20f5569c6df3b3e7ddf888:log:4', 'hash': '0x1e142d58d4adadabf7a3821994ed0383d35566e7ea20f5569c6df3b3e7ddf888', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0760e5a36c936ef00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x5d7483a5efffcfad32d37fbdaa277a73658af0c0c75bd015780e21998aaefb84:log:6', 'hash': '0x5d7483a5efffcfad32d37fbdaa277a73658af0c0c75bd015780e21998aaefb84', 'from': '0x732c0283711b6391ebbd28eb6e25b48e4ed59648', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x517a50a8c3c41c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0xf96c413430d1874bf59ae17afc300b7b551c96ee0adae15d3e56994796074db7:log:7', 'hash': '0xf96c413430d1874bf59ae17afc300b7b551c96ee0adae15d3e56994796074db7', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 95197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1428a3c414ad6d540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0xad3898f9cada63fff8a3d43970110da4132b1a5fdfa3e31baaa44fcc5d4b0982:log:9', 'hash': '0xad3898f9cada63fff8a3d43970110da4132b1a5fdfa3e31baaa44fcc5d4b0982', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0x61b47fec9f8c4ec619ecb0e18dbb216be643dd97dddadc57b2248158d3e22035:log:18', 'hash': '0x61b47fec9f8c4ec619ecb0e18dbb216be643dd97dddadc57b2248158d3e22035', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4645.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfbd6ca3180da710000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec4', 'uniqueId': '0xffecad9e0344b0db2e9dfd59886f39ac513e2e292c31ce445c12f7fa5bf04ac9:log:29', 'hash': '0xffecad9e0344b0db2e9dfd59886f39ac513e2e292c31ce445c12f7fa5bf04ac9', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 122222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x19e1aafb401740f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:18:53.000Z'}}, {'blockNum': '0x735ec5', 'uniqueId': '0x54962196fa5892ba23b06741f5cc9ca1d273a58c081317b05d8c6155d0649f29:log:8', 'hash': '0x54962196fa5892ba23b06741f5cc9ca1d273a58c081317b05d8c6155d0649f29', 'from': '0x99781ad21621a30881aaa21559463c38cf1a9ef9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04e704aa60bebc5c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:19:21.000Z'}}, {'blockNum': '0x735ec5', 'uniqueId': '0xc0bd5c1646f7648103b82724fc8f85fc96363b854ee9ec81d6ac2f9c51d81678:log:10', 'hash': '0xc0bd5c1646f7648103b82724fc8f85fc96363b854ee9ec81d6ac2f9c51d81678', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0465ff87d28686ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:19:21.000Z'}}, {'blockNum': '0x735ec5', 'uniqueId': '0x9d1d09700d33e523380d5f15cc3ed71fed65f944e6f23743417300cd7b528f16:log:11', 'hash': '0x9d1d09700d33e523380d5f15cc3ed71fed65f944e6f23743417300cd7b528f16', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025d94c4818160ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:19:21.000Z'}}, {'blockNum': '0x735ed4', 'uniqueId': '0x498728d4507320791f77aa93ec6a8e676e77091ea9021bf11d4925baed6752a6:log:11', 'hash': '0x498728d4507320791f77aa93ec6a8e676e77091ea9021bf11d4925baed6752a6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1cf0adbfa07fbf280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:23:09.000Z'}}, {'blockNum': '0x735ed4', 'uniqueId': '0xd11400463e90b2939cd0eeedacf9d8fc821d2d8026d86ba149f26dc9d258cc12:log:12', 'hash': '0xd11400463e90b2939cd0eeedacf9d8fc821d2d8026d86ba149f26dc9d258cc12', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 35679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x078e2997588e6a1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:23:09.000Z'}}, {'blockNum': '0x735ed7', 'uniqueId': '0xf166553a611568c4a111fc90346fde44fdf85e65e0d09528abce086093f22227:log:187', 'hash': '0xf166553a611568c4a111fc90346fde44fdf85e65e0d09528abce086093f22227', 'from': '0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c', 'to': '0xcdae8875cf6c8e54a107b9218faa5432e6dfb15f', 'value': 0.0037303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d40b02667d800', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:24:20.000Z'}}, {'blockNum': '0x735ed9', 'uniqueId': '0xe0e2a94178addea76fc8049eb0ad4435977084019be17753acb107a93e9a18ad:log:1', 'hash': '0xe0e2a94178addea76fc8049eb0ad4435977084019be17753acb107a93e9a18ad', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 5875.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x013e85b7c3350ab20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:24:36.000Z'}}, {'blockNum': '0x735ee1', 'uniqueId': '0x328c3825f50747ed06827127cda1afb0ac3875ecb41e0777c072dc27410c2dfe:log:11', 'hash': '0x328c3825f50747ed06827127cda1afb0ac3875ecb41e0777c072dc27410c2dfe', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x07062055d62d402c2fab73e74ea436969ed60572', 'value': 103406.4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5ac75199123f88000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:26:50.000Z'}}, {'blockNum': '0x735eec', 'uniqueId': '0x4e1600b91309956da9655097dca2be88ded569474883dc666168e30db8c16e97:log:13', 'hash': '0x4e1600b91309956da9655097dca2be88ded569474883dc666168e30db8c16e97', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 136666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1cf0adbfa07fbf280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:28:55.000Z'}}, {'blockNum': '0x735eec', 'uniqueId': '0x474a87fe9ab702c1c81f3088fe5303f1e0fd2aa362e3bd0c8bf556a4e89a0bde:log:17', 'hash': '0x474a87fe9ab702c1c81f3088fe5303f1e0fd2aa362e3bd0c8bf556a4e89a0bde', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047b850327211cc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:28:55.000Z'}}, {'blockNum': '0x735ef3', 'uniqueId': '0x8f018ed895b5664eb9b123bae89b0d3e61773e1d0c0f29792d114ca7e8676fd4:log:33', 'hash': '0x8f018ed895b5664eb9b123bae89b0d3e61773e1d0c0f29792d114ca7e8676fd4', 'from': '0x07062055d62d402c2fab73e74ea436969ed60572', 'to': '0x44b0c40da6ce8883deb28650199bc0235837445c', 'value': 406.4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1608502ef491988000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:30:33.000Z'}}, {'blockNum': '0x735efc', 'uniqueId': '0x0e0b461a04519ba4c61714c2da9d19ac2c80f576d9eaa1f7766e448de0c702ea:log:101', 'hash': '0x0e0b461a04519ba4c61714c2da9d19ac2c80f576d9eaa1f7766e448de0c702ea', 'from': '0x07062055d62d402c2fab73e74ea436969ed60572', 'to': '0x44b0c40da6ce8883deb28650199bc0235837445c', 'value': 103000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15cfa424ea9c92600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:32:52.000Z'}}, {'blockNum': '0x735f10', 'uniqueId': '0x7b67ea61c7bf324b1d5a7b2b132805b90feff20d1008c2c86591b1efbeceed44:log:7', 'hash': '0x7b67ea61c7bf324b1d5a7b2b132805b90feff20d1008c2c86591b1efbeceed44', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x097c121dac68d2180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:39:05.000Z'}}, {'blockNum': '0x735f33', 'uniqueId': '0x6e37739efd4bc76e87263bc885ce0b833a217ac754d7cf5af7b80300fa939dc5:log:4', 'hash': '0x6e37739efd4bc76e87263bc885ce0b833a217ac754d7cf5af7b80300fa939dc5', 'from': '0x44b0c40da6ce8883deb28650199bc0235837445c', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 103406.4274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x15e5ac75199123f88000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:46:09.000Z'}}, {'blockNum': '0x735f60', 'uniqueId': '0x0a48bb11f93a9ec490dfa43dbe4081fd006b7681066334efe3afb813ac69d5e8:log:0', 'hash': '0x0a48bb11f93a9ec490dfa43dbe4081fd006b7681066334efe3afb813ac69d5e8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 29996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065a161f826179300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:55:20.000Z'}}, {'blockNum': '0x735f66', 'uniqueId': '0xa5c41830fe42f97d07f9be3031ac1275d92b5b82a0b07f97cab240cea6e60b70:log:2', 'hash': '0xa5c41830fe42f97d07f9be3031ac1275d92b5b82a0b07f97cab240cea6e60b70', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 82312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x116e2478545551200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:56:39.000Z'}}, {'blockNum': '0x735f6e', 'uniqueId': '0xc4e38df3c7adc144bcffde0406be586ea53923c17c01a9eef211095af6c3f616:log:2', 'hash': '0xc4e38df3c7adc144bcffde0406be586ea53923c17c01a9eef211095af6c3f616', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 147181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f2ab2aff5a42f940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T17:58:36.000Z'}}, {'blockNum': '0x735f88', 'uniqueId': '0x3aa6b8f8108c22b6b6c393b132cd7105e1e97affac7ad1bd45e94a26cc6e173f:log:8', 'hash': '0x3aa6b8f8108c22b6b6c393b132cd7105e1e97affac7ad1bd45e94a26cc6e173f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1220932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01028adb3949065a900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:04:22.000Z'}}, {'blockNum': '0x735f8a', 'uniqueId': '0x7ab91302fd925dcda7a4afd4f8cd0274c86ffd7cb3304ee08574d277ece83dfb:log:1', 'hash': '0x7ab91302fd925dcda7a4afd4f8cd0274c86ffd7cb3304ee08574d277ece83dfb', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 35076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076d7948ff6321900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:05:36.000Z'}}, {'blockNum': '0x735f95', 'uniqueId': '0xa0b6e0f49ff9f2096cbc5fa527fbeb987475f17fc6da5094a69fd840843ea664:log:15', 'hash': '0xa0b6e0f49ff9f2096cbc5fa527fbeb987475f17fc6da5094a69fd840843ea664', 'from': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 29996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x065a161f826179300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:07:27.000Z'}}, {'blockNum': '0x735fc6', 'uniqueId': '0x0c60c97ab13028deed9882cbf7e91e69c77df7feb87c4619928ddc4094db1044:log:180', 'hash': '0x0c60c97ab13028deed9882cbf7e91e69c77df7feb87c4619928ddc4094db1044', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6fb14be48890a54659c321aa499a6f89c7786854', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:19:36.000Z'}}, {'blockNum': '0x735ff4', 'uniqueId': '0xa3c6d00ac23504deb4a3372b5877e96a9330d3d8ead5d58d1beb2f3fe5f83929:log:0', 'hash': '0xa3c6d00ac23504deb4a3372b5877e96a9330d3d8ead5d58d1beb2f3fe5f83929', 'from': '0x6fb14be48890a54659c321aa499a6f89c7786854', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:29:08.000Z'}}, {'blockNum': '0x736041', 'uniqueId': '0x822d6ca9255fe5bdabef29ff33872062365297de1d254a313b04603136a1426e:log:0', 'hash': '0x822d6ca9255fe5bdabef29ff33872062365297de1d254a313b04603136a1426e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 19235.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0412c4f682e4bd720000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:43:02.000Z'}}, {'blockNum': '0x73607e', 'uniqueId': '0x60b99bcb9ffa803c5a66f86bd260546db071d1749308b04d1e10b27719651d0e:log:190', 'hash': '0x60b99bcb9ffa803c5a66f86bd260546db071d1749308b04d1e10b27719651d0e', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 31642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06b350f6397fbe280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:56:48.000Z'}}, {'blockNum': '0x73607f', 'uniqueId': '0xaf8b1db9dd3f42bcd36c4205d5dfb6a0c740ba8a693f0c294aa390da66b7c5ef:log:16', 'hash': '0xaf8b1db9dd3f42bcd36c4205d5dfb6a0c740ba8a693f0c294aa390da66b7c5ef', 'from': '0xf358caa9bca436dd08608805e5316eae391ee054', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 35041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076b939004d33ee40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:57:18.000Z'}}, {'blockNum': '0x736084', 'uniqueId': '0x3980398cd938c13965d5bbbeb8341c126b0a40db89b15b1b21db46a3376da599:log:10', 'hash': '0x3980398cd938c13965d5bbbeb8341c126b0a40db89b15b1b21db46a3376da599', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 20583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045bce81a697993c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:58:31.000Z'}}, {'blockNum': '0x736087', 'uniqueId': '0x6eca47acae7618531c74174fab5e920c072bd6bf28355ee745bc34323787a2a7:log:0', 'hash': '0x6eca47acae7618531c74174fab5e920c072bd6bf28355ee745bc34323787a2a7', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 20228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04488fe44b7679900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T18:59:05.000Z'}}, {'blockNum': '0x7360b9', 'uniqueId': '0xd9de904ed8e3bc33d8fba30bc2383e96389edd535bbfccd34a753cc4b5f3b532:log:66', 'hash': '0xd9de904ed8e3bc33d8fba30bc2383e96389edd535bbfccd34a753cc4b5f3b532', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04488fe44b7679900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T19:09:09.000Z'}}, {'blockNum': '0x7360e4', 'uniqueId': '0xf769ced2056687266f385b36fb5fcf9fd00a40fa21bc702bc2e44f13a728c21c:log:2', 'hash': '0xf769ced2056687266f385b36fb5fcf9fd00a40fa21bc702bc2e44f13a728c21c', 'from': '0x9d72f97d08ccf3843efa0f2b2ca4033f100cf929', 'to': '0x91ad70eb631ac0543230fcbe7ed76e3e5f51821e', 'value': 40318.199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0889a7691786cd858000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T19:17:02.000Z'}}, {'blockNum': '0x73611e', 'uniqueId': '0x562109aa91f2271663056aba000bf3fa7228567153c972ebb90d001e63a4eed7:log:12', 'hash': '0x562109aa91f2271663056aba000bf3fa7228567153c972ebb90d001e63a4eed7', 'from': '0x91ad70eb631ac0543230fcbe7ed76e3e5f51821e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40318.199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0889a7691786cd858000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T19:28:55.000Z'}}, {'blockNum': '0x736255', 'uniqueId': '0xa15aa694d7bb35270de2c8a365c70acd0539852929351f556f5df62f85d41a94:log:51', 'hash': '0xa15aa694d7bb35270de2c8a365c70acd0539852929351f556f5df62f85d41a94', 'from': '0x3ad4e5b89eccd7c610187e244c89836acffd48eb', 'to': '0x940d808ecc9472e86e794d2cddf6f6df3ea1f3f2', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T20:35:48.000Z'}}, {'blockNum': '0x73626b', 'uniqueId': '0xcc02fea7a6fb02371fb0f6acad8d300c65e46e22c415c938d4e4de98e14bc338:log:3', 'hash': '0xcc02fea7a6fb02371fb0f6acad8d300c65e46e22c415c938d4e4de98e14bc338', 'from': '0x940d808ecc9472e86e794d2cddf6f6df3ea1f3f2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T20:41:12.000Z'}}, {'blockNum': '0x73629e', 'uniqueId': '0x77e28207fe90fbd332cdccb41b5483fa9df01309dbb5daa593c2684c6946d430:log:3', 'hash': '0x77e28207fe90fbd332cdccb41b5483fa9df01309dbb5daa593c2684c6946d430', 'from': '0x37730c5685e0ba378b35c43f3a7cf0834b167926', 'to': '0xf97585f9b3ce8b82f6797b5aa8642d34dad17441', 'value': 2500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x878678326eac900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T20:52:57.000Z'}}, {'blockNum': '0x736410', 'uniqueId': '0xf260cd4692bc03d716ab3ebdf3ab6ad56618b235763c64a06e16ef5c07cfe8a8:log:34', 'hash': '0xf260cd4692bc03d716ab3ebdf3ab6ad56618b235763c64a06e16ef5c07cfe8a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'value': 41985.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e40ca2b43a462a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:12:19.000Z'}}, {'blockNum': '0x736433', 'uniqueId': '0x9578b34fdfdabdf4158d000622e765b48aa61388d431aa4492eab7202fd26328:log:8', 'hash': '0x9578b34fdfdabdf4158d000622e765b48aa61388d431aa4492eab7202fd26328', 'from': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 41985.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e40ca2b43a462a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:21:00.000Z'}}, {'blockNum': '0x736436', 'uniqueId': '0x43c67ac1b9de4a5effa30d3d78ffc6b77ff19c82b728aebe15edb2ad3d5581f9:log:0', 'hash': '0x43c67ac1b9de4a5effa30d3d78ffc6b77ff19c82b728aebe15edb2ad3d5581f9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 20560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045a8f513c738f400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:22:42.000Z'}}, {'blockNum': '0x736459', 'uniqueId': '0x2e3ba47a3cae3d8406e91cd4ca0e728c6f5cad77e4dd0f75496239eb98c0eaae:log:38', 'hash': '0x2e3ba47a3cae3d8406e91cd4ca0e728c6f5cad77e4dd0f75496239eb98c0eaae', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 20560, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045a8f513c738f400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-13T22:28:59.000Z'}}, {'blockNum': '0x736601', 'uniqueId': '0xa8cbd88b506898211e4c4466f67994ec1c5e34df32efe16517e44d6235edbc26:log:1', 'hash': '0xa8cbd88b506898211e4c4466f67994ec1c5e34df32efe16517e44d6235edbc26', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 69804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ec81519a28eb7300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:01:36.000Z'}}, {'blockNum': '0x736620', 'uniqueId': '0x065c342954bfc3d75ded27f137a4929a1cd4de6646f9012924264fa4910b14d2:log:28', 'hash': '0x065c342954bfc3d75ded27f137a4929a1cd4de6646f9012924264fa4910b14d2', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 69804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ec81519a28eb7300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:07:14.000Z'}}, {'blockNum': '0x73663a', 'uniqueId': '0x4a894262e9dbe585c66699c91a5b7aeb2781eecded5e574ae724754a64d401fa:log:29', 'hash': '0x4a894262e9dbe585c66699c91a5b7aeb2781eecded5e574ae724754a64d401fa', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 21928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04a4b8218c7a0da00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:13:27.000Z'}}, {'blockNum': '0x736659', 'uniqueId': '0x0829be6eabf7725b62bedecab400814b373dc929abeef59d40e78d8a720f55c2:log:54', 'hash': '0x0829be6eabf7725b62bedecab400814b373dc929abeef59d40e78d8a720f55c2', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 21928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04a4b8218c7a0da00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:20:54.000Z'}}, {'blockNum': '0x736700', 'uniqueId': '0x6f62ce233ba399c52c1e65617718117673bc086a88a3c7217b832bdd0e1e4e98:log:12', 'hash': '0x6f62ce233ba399c52c1e65617718117673bc086a88a3c7217b832bdd0e1e4e98', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 21218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047e3ae6d637ce480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T00:54:38.000Z'}}, {'blockNum': '0x736735', 'uniqueId': '0x119dcd02592c6515fa4e0cdbeb574775d7537108320ea37e8c18a9cedd794132:log:25', 'hash': '0x119dcd02592c6515fa4e0cdbeb574775d7537108320ea37e8c18a9cedd794132', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 21218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047e3ae6d637ce480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:05:23.000Z'}}, {'blockNum': '0x7367e7', 'uniqueId': '0xe77e150da0d75c16d54dbe4babeba4dda5c90e2dfae1a729a103a7f67f9642b2:log:120', 'hash': '0xe77e150da0d75c16d54dbe4babeba4dda5c90e2dfae1a729a103a7f67f9642b2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 60340, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cc709b760fa7e500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:43:58.000Z'}}, {'blockNum': '0x7367ee', 'uniqueId': '0x26e4fb25b01c6b183c4d498a62bb90dba09ab947bd449788fe3206504e77dc6f:log:6', 'hash': '0x26e4fb25b01c6b183c4d498a62bb90dba09ab947bd449788fe3206504e77dc6f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'value': 39609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0863354c1a861f440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:46:35.000Z'}}, {'blockNum': '0x7367f8', 'uniqueId': '0xbf546370846bfe5985f6342af3976e69d95c50abc3ae50ececc1c09d6e990e0e:log:3', 'hash': '0xbf546370846bfe5985f6342af3976e69d95c50abc3ae50ececc1c09d6e990e0e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'value': 41986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e410cc84a35ec80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:48:41.000Z'}}, {'blockNum': '0x736819', 'uniqueId': '0xaec57a88387599edf6ea75261d8e5d442b72efc40c416824f5d0282916a8a587:log:19', 'hash': '0xaec57a88387599edf6ea75261d8e5d442b72efc40c416824f5d0282916a8a587', 'from': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 41986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e410cc84a35ec80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T01:57:35.000Z'}}, {'blockNum': '0x736827', 'uniqueId': '0x6d32c9226c9cf9a93ef56c08c2f869459e47e694a0244bd34001e52214b752c3:log:131', 'hash': '0x6d32c9226c9cf9a93ef56c08c2f869459e47e694a0244bd34001e52214b752c3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xc79ef9ddde225f7866b6ddf4ff524d68f19705b5', 'value': 39993.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08780ed54fc5d6410000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:01:35.000Z'}}, {'blockNum': '0x736839', 'uniqueId': '0xeaf0c17952bdd2083ca3fe8e79ef35201819001b6db7b746088433c2fb980f46:log:31', 'hash': '0xeaf0c17952bdd2083ca3fe8e79ef35201819001b6db7b746088433c2fb980f46', 'from': '0xffd4497848246b54255a130a32e038f0e2f962f8', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 39609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0863354c1a861f440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:05:59.000Z'}}, {'blockNum': '0x736856', 'uniqueId': '0xe74d440fd0eaba46dc378b4092ee1de1b68d331f65b27a826624886103f80fee:log:0', 'hash': '0xe74d440fd0eaba46dc378b4092ee1de1b68d331f65b27a826624886103f80fee', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 32762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f008158b7c13a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:11:05.000Z'}}, {'blockNum': '0x73685a', 'uniqueId': '0x74551c90df95a955446aa49f9f37118a70e096cb837bf888a9ce389060745bd9:log:1', 'hash': '0x74551c90df95a955446aa49f9f37118a70e096cb837bf888a9ce389060745bd9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 20164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x044517b69e8ca0900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:12:01.000Z'}}, {'blockNum': '0x736891', 'uniqueId': '0xe0e0345f57152af9e8f2f3272803f829b4291a1ba234a0c53a11575dbd79da31:log:10', 'hash': '0xe0e0345f57152af9e8f2f3272803f829b4291a1ba234a0c53a11575dbd79da31', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 20164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x044517b69e8ca0900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:26:16.000Z'}}, {'blockNum': '0x7368ec', 'uniqueId': '0xc1025ff2bc48972c78d85823a225be6ec302f16b39c34d811ef9bd6d924e3630:log:105', 'hash': '0xc1025ff2bc48972c78d85823a225be6ec302f16b39c34d811ef9bd6d924e3630', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 35679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x078e2997588e6a1c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:45:33.000Z'}}, {'blockNum': '0x7368ec', 'uniqueId': '0x50344425c388ddf5b68d4d51ebf1c8ccc9803d3f2f3ba947857c645f18467a2f:log:106', 'hash': '0x50344425c388ddf5b68d4d51ebf1c8ccc9803d3f2f3ba947857c645f18467a2f', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 20583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x045bce81a697993c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:45:33.000Z'}}, {'blockNum': '0x7368ec', 'uniqueId': '0x70a4cfcaa641ab6759da68b9deab8937f2c0e1653942d2ef9e008654251bf55e:log:117', 'hash': '0x70a4cfcaa641ab6759da68b9deab8937f2c0e1653942d2ef9e008654251bf55e', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 5875.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x013e85b7c3350ab20000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:45:33.000Z'}}, {'blockNum': '0x7368ed', 'uniqueId': '0x836d7da0c5e244d6933dab7de47828367b4a6dd461a7da1530726ad5a8921d90:log:10', 'hash': '0x836d7da0c5e244d6933dab7de47828367b4a6dd461a7da1530726ad5a8921d90', 'from': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 147181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1f2ab2aff5a42f940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:46:03.000Z'}}, {'blockNum': '0x7368ee', 'uniqueId': '0xa2df06d596ea48be86a9db269b1dd8801e7db3314949fecb68f7def4842832d5:log:5', 'hash': '0xa2df06d596ea48be86a9db269b1dd8801e7db3314949fecb68f7def4842832d5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 35528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0785fa0b9496ae200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:46:12.000Z'}}, {'blockNum': '0x7368fd', 'uniqueId': '0x0f5ea9a3c85ad66f413efe8d4a62b323be94f85fbc51fdc818b8cd69c6f8ea1d:log:14', 'hash': '0x0f5ea9a3c85ad66f413efe8d4a62b323be94f85fbc51fdc818b8cd69c6f8ea1d', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x10b0d69b692a5d719d3340905f6a83b7fac290c0', 'value': 7629.5563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019d995d07ba6fa0c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:51:37.000Z'}}, {'blockNum': '0x736918', 'uniqueId': '0x8b6900308b67aff78b51345745cfeb6fea83ba424980ed5949fbc3a90ca19fda:log:21', 'hash': '0x8b6900308b67aff78b51345745cfeb6fea83ba424980ed5949fbc3a90ca19fda', 'from': '0x10b0d69b692a5d719d3340905f6a83b7fac290c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7629.5563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019d995d07ba6fa0c000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T02:59:05.000Z'}}]}}
Number of returned transfers:  170
Answer is complete
 
symbol             BRD
group              CPI
date        2019-04-14
hour             19:01
exchange       binance
Name: 1002, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2019-04-14 19:01:00 2019-04-14 07:01:00 2019-04-15 07:01:00
Unix timestamps:  1555218060.0 1555304460.0
Hex Block Numbers:  0x736b4d 0x73843e
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x736b67', 'uniqueId': '0x3a1a4a49a5858919b5847087df15bc41b8537534fcad14e5378316d7aaea1287:log:84', 'hash': '0x3a1a4a49a5858919b5847087df15bc41b8537534fcad14e5378316d7aaea1287', 'from': '0x4b678e06f894d3e8646fc778f476c94d2469891d', 'to': '0x2d4400a5481753127c26e61a7676c7440ad92cd5', 'value': 113.89291431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x062c94ea22698dbc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T05:08:51.000Z'}}, {'blockNum': '0x736b78', 'uniqueId': '0xb0e2dfacd76ba4c66db6f001932ea319fc209a3ced7315157c229235b2a1f5b1:log:53', 'hash': '0xb0e2dfacd76ba4c66db6f001932ea319fc209a3ced7315157c229235b2a1f5b1', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x0ed7dbb8fe564773a2b305b79dfbd8bcf5ae4aee', 'value': 96.568661215025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x053c28cdbb7c9b6e40', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T05:12:36.000Z'}}, {'blockNum': '0x736baf', 'uniqueId': '0x36ca66dfa2aed4ebbf9bca765051c15523a00b9e8a42a99e0434652c4ee16e17:log:75', 'hash': '0x36ca66dfa2aed4ebbf9bca765051c15523a00b9e8a42a99e0434652c4ee16e17', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'value': 2996.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa274f45a45eaa00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T05:23:01.000Z'}}, {'blockNum': '0x736bb7', 'uniqueId': '0x455325aba75888fdfeac93d953cfe34c1b4b0044ca3dd8c63f8b7ef636aaf99d:log:94', 'hash': '0x455325aba75888fdfeac93d953cfe34c1b4b0044ca3dd8c63f8b7ef636aaf99d', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x0ed7dbb8fe564773a2b305b79dfbd8bcf5ae4aee', 'value': 1959.2431026695253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6a35f5c55cf33f1834', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T05:24:45.000Z'}}, {'blockNum': '0x736d33', 'uniqueId': '0xa2eafd4f5f4dd6572c4a72f60441c820dafb7d1df3eff13365f50d57af23a29e:log:86', 'hash': '0xa2eafd4f5f4dd6572c4a72f60441c820dafb7d1df3eff13365f50d57af23a29e', 'from': '0x91c53d27715dc80c3c5054a02971432bd695eb12', 'to': '0x9ce4b49b5454e61c37bc39e0ee0fc11855356483', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T06:58:54.000Z'}}, {'blockNum': '0x73701c', 'uniqueId': '0xcb32cfded0c0cfb443b56c5fad23d2dda134b7d0039c1f6ab2a45ed1b2cf2d0d:log:27', 'hash': '0xcb32cfded0c0cfb443b56c5fad23d2dda134b7d0039c1f6ab2a45ed1b2cf2d0d', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x899b73ee762d82093d7bee20fd75fdf9e68954c7', 'value': 333.917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x121a077e54f81c8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T09:44:32.000Z'}}, {'blockNum': '0x737169', 'uniqueId': '0x5f8023b5ace6c110aaec4e66da7ea0e2725d2a62b128379bab9a93e8152f3188:log:0', 'hash': '0x5f8023b5ace6c110aaec4e66da7ea0e2725d2a62b128379bab9a93e8152f3188', 'from': '0x469704a341ad8f7e2eb31d37f70ab21c17a98690', 'to': '0xcf97e2f87cd55b8a8df73346cdab77901d95b0d9', 'value': 2057.0808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6f83bb18b8045e0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T11:01:36.000Z'}}, {'blockNum': '0x7372bc', 'uniqueId': '0xff0c547a38c8bbb8f7a6477361e684819a6e1938ae1d5402c7d220881fe96ad3:log:37', 'hash': '0xff0c547a38c8bbb8f7a6477361e684819a6e1938ae1d5402c7d220881fe96ad3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd65e2eaf85303505ba33fecaef45ab9e47720edf', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T12:14:58.000Z'}}, {'blockNum': '0x737308', 'uniqueId': '0xaa8b065cbba8a14b5e5423ed87ef50538975cd65f1aa4c599fe53ae44ae4ea43:log:13', 'hash': '0xaa8b065cbba8a14b5e5423ed87ef50538975cd65f1aa4c599fe53ae44ae4ea43', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x359e41810a2ef17d5c3afdd2a924ba84b5ae9382', 'value': 160.5482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08b40dc947785e8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T12:31:01.000Z'}}, {'blockNum': '0x7373d8', 'uniqueId': '0xbb95582fffab9b69e029c6b973b2744c95be6a2e824785624398b88b685b0f75:log:30', 'hash': '0xbb95582fffab9b69e029c6b973b2744c95be6a2e824785624398b88b685b0f75', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xe58252fd27c098b9035f9fca1963a9d956e4ed44', 'value': 124.07548794581795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06b9e4aee817bdac95', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T13:16:23.000Z'}}, {'blockNum': '0x73741e', 'uniqueId': '0xfc6fd09391c1d975609a3b7297d37bd6c5674baff4b76290838f08b37e818bdc:log:106', 'hash': '0xfc6fd09391c1d975609a3b7297d37bd6c5674baff4b76290838f08b37e818bdc', 'from': '0xec09e197e94b0cc75f3551c510d20744e595585a', 'to': '0x08522a41c4274776d37b8846ad68c7ae8e75831e', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T13:33:29.000Z'}}, {'blockNum': '0x737447', 'uniqueId': '0x68788bcfad6de4e8e07ec8a89a96bc39bb183444946edf7bed89c47e14a87eaf:log:111', 'hash': '0x68788bcfad6de4e8e07ec8a89a96bc39bb183444946edf7bed89c47e14a87eaf', 'from': '0xbda924eb971ed9b7edc7883c87f1dd61a131fe6d', 'to': '0xb78aef39bcd7e46cb41c4d8a0ae2d57167fc14c1', 'value': 0.00284129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a182361276400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T13:43:45.000Z'}}, {'blockNum': '0x7374cb', 'uniqueId': '0x38dee44072563540e8d2c61600a734e4ae288e544df925494461292c93d52049:log:91', 'hash': '0x38dee44072563540e8d2c61600a734e4ae288e544df925494461292c93d52049', 'from': '0xd7d5aa2fd89554bd1f7b8e7fb85cb643258c7ec6', 'to': '0xeaf82d5581ab44f232a0a6fbff8f7315e8b427ed', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T14:14:25.000Z'}}, {'blockNum': '0x737538', 'uniqueId': '0x36bb001901a30007857a13e3af6f75704680279eae3c87b22011b91cf995bfeb:log:23', 'hash': '0x36bb001901a30007857a13e3af6f75704680279eae3c87b22011b91cf995bfeb', 'from': '0x53d87349bb30e54f49b07067319e7fb4c93467f6', 'to': '0xd79f676b214724934e63ebb937bf8aae4f09e75a', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T14:38:14.000Z'}}, {'blockNum': '0x737597', 'uniqueId': '0x35a8ea77fd7d6e6b37f09d90a941c1a35b5c3a3e3b210494d03c2168d4f639dd:log:48', 'hash': '0x35a8ea77fd7d6e6b37f09d90a941c1a35b5c3a3e3b210494d03c2168d4f639dd', 'from': '0xbda924eb971ed9b7edc7883c87f1dd61a131fe6d', 'to': '0x4c58c8be80c80aa1cd52b900d0e22f08b0634e14', 'value': 0.00283572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a131283485000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T14:57:56.000Z'}}, {'blockNum': '0x7375c3', 'uniqueId': '0x20900a5c0ac36504015752868089af37f092a887bf0acc00a0598e0b5057ddb6:log:102', 'hash': '0x20900a5c0ac36504015752868089af37f092a887bf0acc00a0598e0b5057ddb6', 'from': '0x7a5407e1f9ebaf9907d221fafc2d808e771d6ad6', 'to': '0x7aa1d5450bddb140b4b9bd5517e29a8bdb044039', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T15:07:40.000Z'}}, {'blockNum': '0x73768c', 'uniqueId': '0x0680fb283a0e8857ba6036b16654929e38a0d2b79d7c3e13fad3fd82896dd462:log:15', 'hash': '0x0680fb283a0e8857ba6036b16654929e38a0d2b79d7c3e13fad3fd82896dd462', 'from': '0xcfb8a48f701efdf0e658b3094c00df2e04fd7c71', 'to': '0x6953b063f913bbbf6a9cb0cbb8236d4b0896a9ed', 'value': 32.299741602067186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01c03fbbdb101ef767', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T15:52:32.000Z'}}, {'blockNum': '0x7379ff', 'uniqueId': '0x8ffd60f91dde1e537668c6fa4eb99e31400c225e304d73e67004aca8ccdc8c11:log:3', 'hash': '0x8ffd60f91dde1e537668c6fa4eb99e31400c225e304d73e67004aca8ccdc8c11', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbb84ead50a2f680ca6b8e798ebf9187eeed4c4cd', 'value': 122.674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06a671990b98450000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T19:09:34.000Z'}}, {'blockNum': '0x737a64', 'uniqueId': '0x2fc7bcd95b2fd7924a9143d86ab1c9855210fe04a29e6cb2fe2b5b71bd975201:log:6', 'hash': '0x2fc7bcd95b2fd7924a9143d86ab1c9855210fe04a29e6cb2fe2b5b71bd975201', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0x5cdd24f689123c76fdf4192a5c570389e7d8998c', 'value': 322.0964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1175fc494298210000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T19:32:19.000Z'}}, {'blockNum': '0x737aac', 'uniqueId': '0x7b2a5986053e3808f17a57c3e51d515a436e67384494ada77afd0e44b106225b:log:51', 'hash': '0x7b2a5986053e3808f17a57c3e51d515a436e67384494ada77afd0e44b106225b', 'from': '0x064faae776aed15230d9300472630969cbe5e09c', 'to': '0xb095e45c3eb8f93754a8a86bb890c37b44bec21d', 'value': 371.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x14212b6822c5ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T19:46:31.000Z'}}, {'blockNum': '0x737ac4', 'uniqueId': '0x093d17835b76ee37ae6d7d7052e356b906cec183914f72633c0a6a840fb7e0b7:log:5', 'hash': '0x093d17835b76ee37ae6d7d7052e356b906cec183914f72633c0a6a840fb7e0b7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x828dcc1bc79a89faa040747af92b5a859c012f2b', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T19:51:46.000Z'}}, {'blockNum': '0x737ac4', 'uniqueId': '0x93c99ef8098fdec81bb8ba82aaee097a7b3173eb26ca3c73f9ebd4a7a7359343:log:25', 'hash': '0x93c99ef8098fdec81bb8ba82aaee097a7b3173eb26ca3c73f9ebd4a7a7359343', 'from': '0xd867bbae0154d55b9fbfad45d007ee79cda5804e', 'to': '0xad67925d338efef695f69bcbfa78a9fd9d71a24b', 'value': 75.87227854269861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x041cf07b58950af3d6', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T19:51:46.000Z'}}, {'blockNum': '0x737aff', 'uniqueId': '0xbb81474aadd1bbfbb599f8fb2b8383baf878ef69ce58a669cd29dad1a527caa6:log:4', 'hash': '0xbb81474aadd1bbfbb599f8fb2b8383baf878ef69ce58a669cd29dad1a527caa6', 'from': '0xb095e45c3eb8f93754a8a86bb890c37b44bec21d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 371.325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x14212b6822c5ec8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T20:03:41.000Z'}}, {'blockNum': '0x737b61', 'uniqueId': '0x8f5a7ad0df9aed9edd6d8a97a3315022e94aaba11ae46e4b65be7538dfa3218b:log:2', 'hash': '0x8f5a7ad0df9aed9edd6d8a97a3315022e94aaba11ae46e4b65be7538dfa3218b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf97d4d1c592d710b198fca8ee714ef8563afd25d', 'value': 157.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x088dea37f094a40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T20:27:43.000Z'}}, {'blockNum': '0x737be3', 'uniqueId': '0xc9177b36981441dd88495d1156d7b66f547716517f37ee7e4bae4433b8c948ff:log:0', 'hash': '0xc9177b36981441dd88495d1156d7b66f547716517f37ee7e4bae4433b8c948ff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb840812f0f00619f3985b5885e8b41a77d9fb24c', 'value': 735.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x27e346b990846c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T20:55:12.000Z'}}, {'blockNum': '0x737c22', 'uniqueId': '0x9eb9c79c7ed09a543af45845850144bcc23d5041bfb88bb05418e039d7ade9da:log:78', 'hash': '0x9eb9c79c7ed09a543af45845850144bcc23d5041bfb88bb05418e039d7ade9da', 'from': '0xad67925d338efef695f69bcbfa78a9fd9d71a24b', 'to': '0xb890cbe6d4ba6ec678386ce1f2cf9b7fbf79eada', 'value': 75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0410d586a20a4c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T21:09:42.000Z'}}, {'blockNum': '0x737c3f', 'uniqueId': '0x82b76652e04b703daeb9485d0131f070a61ef2000df4528bcf6fec9dd34b7083:log:51', 'hash': '0x82b76652e04b703daeb9485d0131f070a61ef2000df4528bcf6fec9dd34b7083', 'from': '0xdbbca21e12430d560729f98cdba479ee695e7ab4', 'to': '0x43a0fe792d38745575f624728070b20072208d2d', 'value': 0.078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01151c96347b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T21:15:22.000Z'}}, {'blockNum': '0x737c5b', 'uniqueId': '0xf59046f90920c062869a38f541651a21d5c98d1dae888f144bc628269ecd226e:log:47', 'hash': '0xf59046f90920c062869a38f541651a21d5c98d1dae888f144bc628269ecd226e', 'from': '0xdbbca21e12430d560729f98cdba479ee695e7ab4', 'to': '0x43a0fe792d38745575f624728070b20072208d2d', 'value': 0.50009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x06f0ad3495b9a000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T21:22:33.000Z'}}, {'blockNum': '0x737e9d', 'uniqueId': '0x33894c6d265a4f2be188a3aa7ae7442b6ea4a21639d492479b78d8d4447d4372:log:110', 'hash': '0x33894c6d265a4f2be188a3aa7ae7442b6ea4a21639d492479b78d8d4447d4372', 'from': '0xfc83d947f8129283e7cc9f9ca0b9e8fafee33b0d', 'to': '0xa87c3a25b7957acfec789efd848d8dccbd0c863e', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-14T23:33:28.000Z'}}, {'blockNum': '0x737f21', 'uniqueId': '0x251a7edc1711c3613b72e7a14ec0ef75b16ab0009ab6af79d473420e0708f0ea:log:15', 'hash': '0x251a7edc1711c3613b72e7a14ec0ef75b16ab0009ab6af79d473420e0708f0ea', 'from': '0xb434a5a29c7bda2e3c6ff0496f51a5fb36bbd2fb', 'to': '0x47fc260b5536bd4293972cafa466518a40cc4f4d', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-15T00:04:46.000Z'}}, {'blockNum': '0x737f37', 'uniqueId': '0x4196c4f9132c0435ea2e2eda953ed50d2db6935f1afedab97286b8b1a0059327:log:15', 'hash': '0x4196c4f9132c0435ea2e2eda953ed50d2db6935f1afedab97286b8b1a0059327', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x61025ffa7e076ac8275c762e975194f25e6d963b', 'value': 644.92360975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x22f61cee1dab665c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-15T00:09:51.000Z'}}, {'blockNum': '0x73833a', 'uniqueId': '0xd754ab440c796e8a073de2ac6ca40a01445c86a81d062e17f243df12bc47d9e8:log:0', 'hash': '0xd754ab440c796e8a073de2ac6ca40a01445c86a81d062e17f243df12bc47d9e8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 31.665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01b770adbb4cbe8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-15T04:02:13.000Z'}}, {'blockNum': '0x73833e', 'uniqueId': '0xbf47f8b899227764f4c26a32f83f54fe58473e2ace003d88671722b6803f9419:log:90', 'hash': '0xbf47f8b899227764f4c26a32f83f54fe58473e2ace003d88671722b6803f9419', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x26610b6663cdf3adf2a6d797b4413c0c5ae09c64', 'value': 31.665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01b770adbb4cbe8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-15T04:03:03.000Z'}}]}}
Number of returned transfers:  33
Answer is complete
 
symbol            ARDR
group              CPI
date        2019-04-17
hour             17:00
exchange       binance
Name: 1003, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: ARDR, Contract: 
Datetime timestamps:  2019-04-17 17:00:00 2019-04-17 05:00:00 2019-04-18 05:00:00
Unix timestamps:  1555470000.0 1555556400.0
Hex Block Numbers:  0x73b453 0x73cd62
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SNM
group              CPI
date        2019-04-23
hour             15:00
exchange       binance
Name: 1004, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-04-23 15:00:00 2019-04-23 03:00:00 2019-04-24 03:00:00
Unix timestamps:  1555981200.0 1556067600.0
Hex Block Numbers:  0x7448ae 0x74615b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             REQ
group              CPI
date        2019-04-29
hour             15:00
exchange       binance
Name: 1005, dtype: object
HERE
 Symbol: REQ, Contract: 0x8f8221afbb33998d8584a2b05749ba73c37a938a
Datetime timestamps:  2019-04-29 15:00:00 2019-04-29 03:00:00 2019-04-30 03:00:00
Unix timestamps:  1556499600.0 1556586000.0
Hex Block Numbers:  0x74def7 0x74f83a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x74df57', 'uniqueId': '0xa335f4ccfcd79beabc0eb71a0f6cca17ea0c71ce6fd2493c8bdc1563ab82a49d:log:54', 'hash': '0xa335f4ccfcd79beabc0eb71a0f6cca17ea0c71ce6fd2493c8bdc1563ab82a49d', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 11073.181939263057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02584744f1870592127e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:16:59.000Z'}}, {'blockNum': '0x74df57', 'uniqueId': '0xa335f4ccfcd79beabc0eb71a0f6cca17ea0c71ce6fd2493c8bdc1563ab82a49d:log:58', 'hash': '0xa335f4ccfcd79beabc0eb71a0f6cca17ea0c71ce6fd2493c8bdc1563ab82a49d', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x57f5429a31e7a1cf3a3ade75372846420f949847', 'value': 11073.181939263057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02584744f1870592127e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:16:59.000Z'}}, {'blockNum': '0x74df58', 'uniqueId': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f:log:21', 'hash': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 5834.602059474558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c4b5e8c0ba790bd18', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:09.000Z'}}, {'blockNum': '0x74df58', 'uniqueId': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f:log:23', 'hash': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5834.602059474558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c4b5e8c0ba7900000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:09.000Z'}}, {'blockNum': '0x74df58', 'uniqueId': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f:log:25', 'hash': '0xe2caf34092f989213dc2ae1135ba0b19b4f9bce0989b99b822e79ead2871d72f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5834.602059474558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013c4b5e8c0ba7900000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:09.000Z'}}, {'blockNum': '0x74df5a', 'uniqueId': '0x9a51936016a827dc7a5cb7250037b583ff78f0f2381e643964e30476db98efc1:log:25', 'hash': '0x9a51936016a827dc7a5cb7250037b583ff78f0f2381e643964e30476db98efc1', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 11012.825128171906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025501a6799fc636293f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:14.000Z'}}, {'blockNum': '0x74df5a', 'uniqueId': '0x9a51936016a827dc7a5cb7250037b583ff78f0f2381e643964e30476db98efc1:log:29', 'hash': '0x9a51936016a827dc7a5cb7250037b583ff78f0f2381e643964e30476db98efc1', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'value': 11012.825128171906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x025501a6799fc636293f', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:14.000Z'}}, {'blockNum': '0x74df5c', 'uniqueId': '0xb364e5adb27148f7d7bcf1ac645d4d7098fd80a023a6c1112924fcc3a38f3e6c:log:19', 'hash': '0xb364e5adb27148f7d7bcf1ac645d4d7098fd80a023a6c1112924fcc3a38f3e6c', 'from': '0x57f5429a31e7a1cf3a3ade75372846420f949847', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 11073.181939263057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02584744f1870592127e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:17:16.000Z'}}, {'blockNum': '0x74df80', 'uniqueId': '0x8ba9e6585c3046d73dd4bc2c24b999cb672c58ebc318276c765c455bc688640d:log:56', 'hash': '0x8ba9e6585c3046d73dd4bc2c24b999cb672c58ebc318276c765c455bc688640d', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11073.181939263057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02584744f1870592127e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:25:57.000Z'}}, {'blockNum': '0x74df8a', 'uniqueId': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab:log:52', 'hash': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4913.735580435388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010a5fc79c51b135b694', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:28:25.000Z'}}, {'blockNum': '0x74df8a', 'uniqueId': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab:log:54', 'hash': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 4913.735580435388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010a5fc79c51b135b694', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:28:25.000Z'}}, {'blockNum': '0x74df8a', 'uniqueId': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab:log:59', 'hash': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4913.735580435388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010a5fc79c51b1300000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:28:25.000Z'}}, {'blockNum': '0x74df8a', 'uniqueId': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab:log:61', 'hash': '0x9c71431bfc7413f771dde8c49a1f322214389a1ae990b0260b956798ddfa57ab', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4913.735580435388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x010a5fc79c51b1300000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:28:25.000Z'}}, {'blockNum': '0x74dfca', 'uniqueId': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651:log:125', 'hash': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3637.5581812357045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc53142b5398225bcc0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:42:49.000Z'}}, {'blockNum': '0x74dfca', 'uniqueId': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651:log:127', 'hash': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 3637.5581812357045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc53142b5398225bcc0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:42:49.000Z'}}, {'blockNum': '0x74dfca', 'uniqueId': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651:log:132', 'hash': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 3637.5581812357045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc53142b5398225bcc0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:42:49.000Z'}}, {'blockNum': '0x74dfca', 'uniqueId': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651:log:134', 'hash': '0xd8819d4f2f1c2f7a3be36b73f259f997597d61e3de34938da58b113d43542651', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3637.5581812357045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc53142b5398225bcc0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T01:42:49.000Z'}}, {'blockNum': '0x74e089', 'uniqueId': '0xe3a3b032afc74efa3fb79f877e50d7cff2c7178a37a9be62a7d40937597e6db4:log:118', 'hash': '0xe3a3b032afc74efa3fb79f877e50d7cff2c7178a37a9be62a7d40937597e6db4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 36640.54482764753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07c249b4ced1a3437df6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T02:23:58.000Z'}}, {'blockNum': '0x74e089', 'uniqueId': '0xe3a3b032afc74efa3fb79f877e50d7cff2c7178a37a9be62a7d40937597e6db4:log:120', 'hash': '0xe3a3b032afc74efa3fb79f877e50d7cff2c7178a37a9be62a7d40937597e6db4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x284d96f556acd88a89647d1a76298bc27c30184f', 'value': 36640.54482764753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x07c249b4ced1a3437df6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T02:23:58.000Z'}}, {'blockNum': '0x74e09f', 'uniqueId': '0x0ec698a600f20e03f966237f42fa592fc451d78d4846b4eae5ab14cfcc8b817b:log:2', 'hash': '0x0ec698a600f20e03f966237f42fa592fc451d78d4846b4eae5ab14cfcc8b817b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 23808.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x050aaab2e4a1853c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T02:29:09.000Z'}}, {'blockNum': '0x74e270', 'uniqueId': '0xd70ce0d3feeabab9b392f4555f8a4341ae29281099be03569b4646848259f2ee:log:90', 'hash': '0xd70ce0d3feeabab9b392f4555f8a4341ae29281099be03569b4646848259f2ee', 'from': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'to': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'value': 387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x14fab431960c2c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T04:12:51.000Z'}}, {'blockNum': '0x74e405', 'uniqueId': '0x76bb9e1a88db846eeaf23620acfa604f58e8bc53d4094ba360e6bdc3c11902fb:log:37', 'hash': '0x76bb9e1a88db846eeaf23620acfa604f58e8bc53d4094ba360e6bdc3c11902fb', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1326dc90fc81faf7556d688fac7f274663f51d06', 'value': 1525.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x52b6737a1233820000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T05:41:12.000Z'}}, {'blockNum': '0x74e5c7', 'uniqueId': '0x7627ba61876f053c22742ae86f74f2a75ffef062f8390611170210ee7a7b2fab:log:15', 'hash': '0x7627ba61876f053c22742ae86f74f2a75ffef062f8390611170210ee7a7b2fab', 'from': '0x16afb73797405a8fdddc72b5168523867d763bd2', 'to': '0x7583b733dac43a58b88f9c1b683ee5a706ce4717', 'value': 3570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xc187b3d55450880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:21:10.000Z'}}, {'blockNum': '0x74e5e9', 'uniqueId': '0xe4c58e8f387cd34e0b0baa044af648ed311274f0098f93a29089b4baff666a8b:log:61', 'hash': '0xe4c58e8f387cd34e0b0baa044af648ed311274f0098f93a29089b4baff666a8b', 'from': '0x036bcdd39ea84c83bf8a058f27ef8361ae7dd75e', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 15811.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x035926079a8d86680000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:32:01.000Z'}}, {'blockNum': '0x74e5ed', 'uniqueId': '0xf1240858e7107310ad08b4114f473b4adc7ed23e949cc3137fe9fd6c0bec3959:log:32', 'hash': '0xf1240858e7107310ad08b4114f473b4adc7ed23e949cc3137fe9fd6c0bec3959', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 15811.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x035926079a8d86680000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:32:32.000Z'}}, {'blockNum': '0x74e641', 'uniqueId': '0x3438e02ce612dac66f6c9a3ce67d1963dbdfce8c2ff2aa1699444d4a75c832b1:log:24', 'hash': '0x3438e02ce612dac66f6c9a3ce67d1963dbdfce8c2ff2aa1699444d4a75c832b1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6b609ff1e1dcc4a75f22ffde2cf37deadf4aa9e4', 'value': 5749.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0137afba915049f00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:51:47.000Z'}}, {'blockNum': '0x74e649', 'uniqueId': '0x22e2d5a5e253abb95f5ac9c6b4de753475c47a0b339d5d5b11b0079e904ceecd:log:9', 'hash': '0x22e2d5a5e253abb95f5ac9c6b4de753475c47a0b339d5d5b11b0079e904ceecd', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7498.563627398133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01967f7992069a4722e1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:53:33.000Z'}}, {'blockNum': '0x74e649', 'uniqueId': '0x22e2d5a5e253abb95f5ac9c6b4de753475c47a0b339d5d5b11b0079e904ceecd:log:11', 'hash': '0x22e2d5a5e253abb95f5ac9c6b4de753475c47a0b339d5d5b11b0079e904ceecd', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 7498.563627398133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01967f7992069a4722e1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T07:53:33.000Z'}}, {'blockNum': '0x74e680', 'uniqueId': '0x5575da0fddca43ac63f0e58793773d4aba977b3c8b6f9759d0fe40cb075f8cb8:log:59', 'hash': '0x5575da0fddca43ac63f0e58793773d4aba977b3c8b6f9759d0fe40cb075f8cb8', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x55a83ade961130aaff314d562c39e415fd8b9c2a', 'value': 13488, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02db2f9a198364c00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T08:04:03.000Z'}}, {'blockNum': '0x74e6a5', 'uniqueId': '0xe6878323ab8c6579204e5e8ec77de76f123ae2f6170172ee469678b446455946:log:39', 'hash': '0xe6878323ab8c6579204e5e8ec77de76f123ae2f6170172ee469678b446455946', 'from': '0x6b609ff1e1dcc4a75f22ffde2cf37deadf4aa9e4', 'to': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'value': 5749.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0137afba915049f00000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T08:11:50.000Z'}}, {'blockNum': '0x74e748', 'uniqueId': '0xea5078d945e3098fe5588df33a8f93f343a4f37d700a61fabb805560c4b3a892:log:48', 'hash': '0xea5078d945e3098fe5588df33a8f93f343a4f37d700a61fabb805560c4b3a892', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x2f4a1d8d923c430786e48857a783130b675eb207', 'value': 179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x09b41fbf9e0aec0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T08:49:35.000Z'}}, {'blockNum': '0x74e76c', 'uniqueId': '0xdd2ea56acd23be0a456a11f04de8b6322f9e1be4d6c438c961f33a3566311091:log:0', 'hash': '0xdd2ea56acd23be0a456a11f04de8b6322f9e1be4d6c438c961f33a3566311091', 'from': '0x1326dc90fc81faf7556d688fac7f274663f51d06', 'to': '0x74b76680f844535accfa25f6baa341cdb88b7e05', 'value': 1525.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x52b6737a1233820000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T08:56:59.000Z'}}, {'blockNum': '0x74e788', 'uniqueId': '0x1b782ad79f6dfef031f942d61d84a76f6d44c538afd0a7ee555a2141ca1b47cd:log:8', 'hash': '0x1b782ad79f6dfef031f942d61d84a76f6d44c538afd0a7ee555a2141ca1b47cd', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7367399b6730c0b3f70d51906cf971830c37d8d5', 'value': 119991.7304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1968c3c5ef5d986e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T09:03:20.000Z'}}, {'blockNum': '0x74e882', 'uniqueId': '0x352e4dbf98c14ac2d779add379151c0c52c2fc6f6fca274a49d49412d3b8f64f:log:37', 'hash': '0x352e4dbf98c14ac2d779add379151c0c52c2fc6f6fca274a49d49412d3b8f64f', 'from': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'to': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'value': 219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0bdf3c4bb0328c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:00:12.000Z'}}, {'blockNum': '0x74e915', 'uniqueId': '0xae16d011f0b1b488c092f374e4b0db24518d6fd4945f9f1fcdbec929c2eb701b:log:61', 'hash': '0xae16d011f0b1b488c092f374e4b0db24518d6fd4945f9f1fcdbec929c2eb701b', 'from': '0x00a2aebc7e233cd2ffe5ab5856f90f0ad2fa3ccd', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 3772.983390816367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xcc88a9b3d3225c8747', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:35:46.000Z'}}, {'blockNum': '0x74e915', 'uniqueId': '0xae16d011f0b1b488c092f374e4b0db24518d6fd4945f9f1fcdbec929c2eb701b:log:63', 'hash': '0xae16d011f0b1b488c092f374e4b0db24518d6fd4945f9f1fcdbec929c2eb701b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 3772.983390816367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xcc88a9b3d3225c8747', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:35:46.000Z'}}, {'blockNum': '0x74e923', 'uniqueId': '0xc80fafe549e94ae7cfa2d0cfdd348937117febd30aac90ff8b861dcdcfafae4c:log:68', 'hash': '0xc80fafe549e94ae7cfa2d0cfdd348937117febd30aac90ff8b861dcdcfafae4c', 'from': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'to': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'value': 306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x10969a62be15880000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:38:38.000Z'}}, {'blockNum': '0x74e92d', 'uniqueId': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14:log:25', 'hash': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2626.10125309601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8e5c79d80293e3584c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:40:04.000Z'}}, {'blockNum': '0x74e92d', 'uniqueId': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14:log:27', 'hash': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 2626.10125309601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8e5c79d80293e3584c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:40:04.000Z'}}, {'blockNum': '0x74e92d', 'uniqueId': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14:log:31', 'hash': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2626.10125309601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8e5c79d80293e3584c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:40:04.000Z'}}, {'blockNum': '0x74e92d', 'uniqueId': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14:log:33', 'hash': '0x0230f0ce73b5d5d90524c3723bb95f276798c3de2c9482f2d65ea6751dc35c14', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2626.10125309601, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x8e5c79d80293e3584c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:40:04.000Z'}}, {'blockNum': '0x74e93c', 'uniqueId': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14:log:73', 'hash': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4568.3131325143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf7a6148e0fc02e599c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:43:10.000Z'}}, {'blockNum': '0x74e93c', 'uniqueId': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14:log:75', 'hash': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 4568.3131325143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf7a6148e0fc02e599c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:43:10.000Z'}}, {'blockNum': '0x74e93c', 'uniqueId': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14:log:80', 'hash': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4568.3131325143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf7a6148e0fc02e599c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:43:10.000Z'}}, {'blockNum': '0x74e93c', 'uniqueId': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14:log:82', 'hash': '0x355a47ddd97eba6e26a0911602975934c34880714ef237fe0dce2e7e01572c14', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 4568.3131325143895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xf7a6148e0fc02e599c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T10:43:10.000Z'}}, {'blockNum': '0x74eb11', 'uniqueId': '0x582557323cee096e0f92df5f6e919aa32bd7ad31e25c63fc8c34764b3da49974:log:5', 'hash': '0x582557323cee096e0f92df5f6e919aa32bd7ad31e25c63fc8c34764b3da49974', 'from': '0x05f238f6141c26b9e7651a97eb01af6cfe48c7a3', 'to': '0x1cfe33eb92e624970fdfccf3e75c5bcf1dc47319', 'value': 13471.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02da47d7c7fe5fba0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T12:28:56.000Z'}}, {'blockNum': '0x74eb37', 'uniqueId': '0x0a889a952d00bb9ed63a24ccc0e6f0d92ec765b142dfe24688ffdc1ee4d2ac3d:log:10', 'hash': '0x0a889a952d00bb9ed63a24ccc0e6f0d92ec765b142dfe24688ffdc1ee4d2ac3d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb50f466d3d00beb0c272156b56761ba72f7c6b21', 'value': 13086.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02c56d0ed438baf40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T12:38:36.000Z'}}, {'blockNum': '0x74eb7e', 'uniqueId': '0x582b7174929ad48b8a4b1c9f135abdb4586a6afebfb5d8eafc396a43e2f68a75:log:2', 'hash': '0x582b7174929ad48b8a4b1c9f135abdb4586a6afebfb5d8eafc396a43e2f68a75', 'from': '0xb50f466d3d00beb0c272156b56761ba72f7c6b21', 'to': '0x920b522df9aebf8334d1043b58964582e7df242c', 'value': 13086.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02c56d0ed438baf40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T12:53:38.000Z'}}, {'blockNum': '0x74ec3e', 'uniqueId': '0x4489b50df62ef7160967c2e2029f2c04c4b4659f32d08bf24e99b108648407d6:log:65', 'hash': '0x4489b50df62ef7160967c2e2029f2c04c4b4659f32d08bf24e99b108648407d6', 'from': '0x1e31d3a943ce21acb39aab9fe133f8f497068b1d', 'to': '0x687193121f3337a57f768248e9c3102b991869a8', 'value': 50044.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a98e50dcba086978000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T13:37:52.000Z'}}, {'blockNum': '0x74ec89', 'uniqueId': '0xa6ac4eb831e32415847089a0d4af97156470fc9dab4669b35dea158068ae1fae:log:58', 'hash': '0xa6ac4eb831e32415847089a0d4af97156470fc9dab4669b35dea158068ae1fae', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x42ca15786de127749d15f44dead7ffc049c14546', 'value': 0.9999999999999932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a763e556', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T13:55:30.000Z'}}, {'blockNum': '0x74ed8f', 'uniqueId': '0x59efca653d3b89f47fb1ab1dc62e1208c9018ba84cf7d7cc930d6c5aacf7a01a:log:2', 'hash': '0x59efca653d3b89f47fb1ab1dc62e1208c9018ba84cf7d7cc930d6c5aacf7a01a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x1095b99c20f15a61d35f367937b6d2bbbd6c0c5a', 'value': 33380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0711888e992e2b100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T14:55:27.000Z'}}, {'blockNum': '0x74eda9', 'uniqueId': '0x15f16aedcbb44226dce8dfb1490889500db199e75b09bc0f79534dbb4076b87c:log:74', 'hash': '0x15f16aedcbb44226dce8dfb1490889500db199e75b09bc0f79534dbb4076b87c', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:01:38.000Z'}}, {'blockNum': '0x74eda9', 'uniqueId': '0x15f16aedcbb44226dce8dfb1490889500db199e75b09bc0f79534dbb4076b87c:log:78', 'hash': '0x15f16aedcbb44226dce8dfb1490889500db199e75b09bc0f79534dbb4076b87c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:01:38.000Z'}}, {'blockNum': '0x74edae', 'uniqueId': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0:log:3', 'hash': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x00000000aca7ba47149da8a2f0ce02d140ecfa12', 'value': 15088.030690006028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0331ec7d04bf71341b00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:12.000Z'}}, {'blockNum': '0x74edae', 'uniqueId': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0:log:5', 'hash': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0', 'from': '0x00000000aca7ba47149da8a2f0ce02d140ecfa12', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 15088.030690006028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0331ec7d04bf71341b00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:12.000Z'}}, {'blockNum': '0x74edae', 'uniqueId': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0:log:6', 'hash': '0xd9a58be9862e1e6a19dc5a555bad603b0df86a78e7d066f6a0b7d8cd3551ade0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 15088.030690006028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0331ec7d04bf71341b00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:12.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x51e90ec9497a44ac509fcbc2cb5c6dd0a639c47b6c4e1a58588e3c4a1621719a:log:69', 'hash': '0x51e90ec9497a44ac509fcbc2cb5c6dd0a639c47b6c4e1a58588e3c4a1621719a', 'from': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 18074.532349211473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03d3d28650a198800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x51e90ec9497a44ac509fcbc2cb5c6dd0a639c47b6c4e1a58588e3c4a1621719a:log:71', 'hash': '0x51e90ec9497a44ac509fcbc2cb5c6dd0a639c47b6c4e1a58588e3c4a1621719a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 18074.532349211473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03d3d28650a198800000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293:log:88', 'hash': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293', 'from': '0x44e05b25115fb86f0e9861cea0bf27e50f2338bf', 'to': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293:log:90', 'hash': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293', 'from': '0xd6ac239f32286742ba1e85feb927ff6d262e7fe9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edaf', 'uniqueId': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293:log:91', 'hash': '0x7888e77c7cf2361a8c840e55a93c036d8099d7700ecede55248680653fa9b293', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 20336.37050122883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x044e6fd5a828acffed98', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:03:29.000Z'}}, {'blockNum': '0x74edb3', 'uniqueId': '0xef85c031519a2cce45190efbab1011fb3c70c194ca17505f0e87e51b4152b737:log:101', 'hash': '0xef85c031519a2cce45190efbab1011fb3c70c194ca17505f0e87e51b4152b737', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 11257.328207390405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x026242cfe8bd91fb58ed', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:04:05.000Z'}}, {'blockNum': '0x74edb3', 'uniqueId': '0xef85c031519a2cce45190efbab1011fb3c70c194ca17505f0e87e51b4152b737:log:105', 'hash': '0xef85c031519a2cce45190efbab1011fb3c70c194ca17505f0e87e51b4152b737', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x57f5429a31e7a1cf3a3ade75372846420f949847', 'value': 11257.328207390405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x026242cfe8bd91fb58ed', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:04:05.000Z'}}, {'blockNum': '0x74edb3', 'uniqueId': '0x7a055e3a07a1a87bd4505b4d3893c8dd071a05a4897088c8bde224c556d7badc:log:115', 'hash': '0x7a055e3a07a1a87bd4505b4d3893c8dd071a05a4897088c8bde224c556d7badc', 'from': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'to': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'value': 453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x188ea34be733f40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:04:05.000Z'}}, {'blockNum': '0x74edc3', 'uniqueId': '0x39fb47f9ca417f1d4aab9739b369905ec338c5f2e45c065b152936d9d5181cb4:log:0', 'hash': '0x39fb47f9ca417f1d4aab9739b369905ec338c5f2e45c065b152936d9d5181cb4', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5a6169233f02631f7f3d822486357a1b9b48b4b9', 'value': 18077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03d3f4c52bf300540000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:07:50.000Z'}}, {'blockNum': '0x74edc9', 'uniqueId': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441:log:16', 'hash': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 5033.727090769346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0110e0ff1739bf59e4f4', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:09:11.000Z'}}, {'blockNum': '0x74edc9', 'uniqueId': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441:log:18', 'hash': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5033.727090769346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0110e0ff1739bf600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:09:11.000Z'}}, {'blockNum': '0x74edc9', 'uniqueId': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441:log:20', 'hash': '0xd48bb246ec11a960872bb7c7077d44740c280593ece2d147c1812753c7c31441', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5033.727090769346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0110e0ff1739bf600000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:09:11.000Z'}}, {'blockNum': '0x74edfb', 'uniqueId': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7:log:64', 'hash': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2446.1434998356003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x849b0f78e073bdf39c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:05.000Z'}}, {'blockNum': '0x74edfb', 'uniqueId': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7:log:66', 'hash': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 2446.1434998356003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x849b0f78e073bdf39c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:05.000Z'}}, {'blockNum': '0x74edfb', 'uniqueId': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7:log:71', 'hash': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2446.1434998356003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x849b0f78e073bdf39c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:05.000Z'}}, {'blockNum': '0x74edfb', 'uniqueId': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7:log:73', 'hash': '0x3b855b5791d819003935bea230d026d3066eb404cbc3a1284dcbe3c03f166ed7', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2446.1434998356003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x849b0f78e073bdf39c', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:05.000Z'}}, {'blockNum': '0x74edff', 'uniqueId': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0:log:36', 'hash': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5701.4694992806235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013513c8adea69cb69df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:35.000Z'}}, {'blockNum': '0x74edff', 'uniqueId': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0:log:38', 'hash': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 5701.4694992806235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013513c8adea69cb69df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:35.000Z'}}, {'blockNum': '0x74edff', 'uniqueId': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0:log:43', 'hash': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5701.4694992806235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013513c8adea69cb69df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:35.000Z'}}, {'blockNum': '0x74edff', 'uniqueId': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0:log:45', 'hash': '0x6414a04c557fc2a35f4fc27a279c1ae47d0ce8062c5827b7743e2cb0ca7d39c0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 5701.4694992806235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013513c8adea69cb69df', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:20:35.000Z'}}, {'blockNum': '0x74ee0c', 'uniqueId': '0x6550395e81ca2cfcce55a05c0b713efd6576a43cb58ff69087e8834c29a154d5:log:111', 'hash': '0x6550395e81ca2cfcce55a05c0b713efd6576a43cb58ff69087e8834c29a154d5', 'from': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'to': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'value': 453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x188ea34be733f40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:24:20.000Z'}}, {'blockNum': '0x74ee88', 'uniqueId': '0xf50858e7dd50711aafcb2616e364d6af8663c07c5f11e39949814437c94159e8:log:2', 'hash': '0xf50858e7dd50711aafcb2616e364d6af8663c07c5f11e39949814437c94159e8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6262355e73d23f4f2c71ebe29d74d56c16865245', 'value': 7376.172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018fdcf3295da69e0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:52:40.000Z'}}, {'blockNum': '0x74ee88', 'uniqueId': '0xe2e93282a4351f7a30af01493cb1df720a8944e4a6e502c3fa6ad070cacb9f10:log:3', 'hash': '0xe2e93282a4351f7a30af01493cb1df720a8944e4a6e502c3fa6ad070cacb9f10', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 37847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0803b0a29a0000fc0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:52:40.000Z'}}, {'blockNum': '0x74ee8a', 'uniqueId': '0xbcb482741de536b254c71edfe239d8db5a6532e03c0246d1fef2de0aecc12a77:log:14', 'hash': '0xbcb482741de536b254c71edfe239d8db5a6532e03c0246d1fef2de0aecc12a77', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x45c9c3cda14e942c34aef3b32d93ab2edb858ee2', 'value': 7959.79242699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01af804f6f8f475dcc00', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T15:53:14.000Z'}}, {'blockNum': '0x74eeda', 'uniqueId': '0xce799c8cd5903c8020554c5a2b5d6e71e6b7510f465e564be797e31876390848:log:83', 'hash': '0xce799c8cd5903c8020554c5a2b5d6e71e6b7510f465e564be797e31876390848', 'from': '0x6262355e73d23f4f2c71ebe29d74d56c16865245', 'to': '0x9c6ea4b8a541a1e361c4862de306032ba8679437', 'value': 7376.171999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x018fdcf32874d1f8f000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T16:11:51.000Z'}}, {'blockNum': '0x74ef73', 'uniqueId': '0x35898ff16e60fa7fd8c5d5ce2633da82f1864f7294ed89040057cf08c0fd1f18:log:26', 'hash': '0x35898ff16e60fa7fd8c5d5ce2633da82f1864f7294ed89040057cf08c0fd1f18', 'from': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'to': '0x333a397f93c15d46cb95fe34245d19bbb0d677cc', 'value': 127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x06e27aa3200a9c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T16:45:42.000Z'}}, {'blockNum': '0x74f044', 'uniqueId': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169:log:268', 'hash': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 6801.727893936859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0170b8efba6fcc4214a0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:31:13.000Z'}}, {'blockNum': '0x74f044', 'uniqueId': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169:log:270', 'hash': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 6801.727893936859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0170b8efba6fcc4214a0', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:31:13.000Z'}}, {'blockNum': '0x74f044', 'uniqueId': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169:log:275', 'hash': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 6801.721092208964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0170b8d7904d1d47f9c5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:31:13.000Z'}}, {'blockNum': '0x74f044', 'uniqueId': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169:log:277', 'hash': '0x1909b944467ed0a97f48d523cc7733f2c625d0ed63a0e20edb87f524786fd169', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 6801.721092208964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0170b8d7904d1d47f9c5', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:31:13.000Z'}}, {'blockNum': '0x74f069', 'uniqueId': '0xe5055c99bf4c528d992225d1b2518cbd3398c83b1ba6f87760b853e94a9853a6:log:12', 'hash': '0xe5055c99bf4c528d992225d1b2518cbd3398c83b1ba6f87760b853e94a9853a6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 21796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x049d904357d7be100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:39:15.000Z'}}, {'blockNum': '0x74f06a', 'uniqueId': '0x7ceac27dc84bbe019641c6a2939a9e5e9248e59636e72a9dc64ba5c9311b6bc1:log:7', 'hash': '0x7ceac27dc84bbe019641c6a2939a9e5e9248e59636e72a9dc64ba5c9311b6bc1', 'from': '0x9f3192e4114302643800003e111fe632864e9050', 'to': '0x5ba54fcce700174656feba2df17b8d7e414ffd0e', 'value': 1700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x5c283d410394100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:39:23.000Z'}}, {'blockNum': '0x74f06d', 'uniqueId': '0x193991cb951e1b3b7f512729ea24a8c47b65ad35bcdaae02d88de4fc1936d595:log:17', 'hash': '0x193991cb951e1b3b7f512729ea24a8c47b65ad35bcdaae02d88de4fc1936d595', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 49955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a9410e3d3110eac0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:40:09.000Z'}}, {'blockNum': '0x74f076', 'uniqueId': '0xa473ced3f603206c4f67802031c82ffcb37905b33c99b24d3247f2c45841135e:log:127', 'hash': '0xa473ced3f603206c4f67802031c82ffcb37905b33c99b24d3247f2c45841135e', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x3e79b8a7666b3b16dfcbc6f79b780b9960a6935d', 'value': 0.9999999999999942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a763e97e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T17:41:15.000Z'}}, {'blockNum': '0x74f0e5', 'uniqueId': '0xc1347f53857d78344a5bfd60a433055e1c2d8a3cf0a93388bbe5e9f8ca8c9749:log:10', 'hash': '0xc1347f53857d78344a5bfd60a433055e1c2d8a3cf0a93388bbe5e9f8ca8c9749', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xce706cd113a706ce1886e2856bb185b52954d0f2', 'value': 15040.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x032f58de160406b20000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:07:35.000Z'}}, {'blockNum': '0x74f10f', 'uniqueId': '0xd7272e8001dde0825ecc3ec19e521fd11ad55698301aeb50804a1fb473c753c8:log:1', 'hash': '0xd7272e8001dde0825ecc3ec19e521fd11ad55698301aeb50804a1fb473c753c8', 'from': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'to': '0x32d9d29cb45b4c51dedd6c50cf43a90a908ed6ed', 'value': 565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x1ea0f33a806fb40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:16:04.000Z'}}, {'blockNum': '0x74f145', 'uniqueId': '0x3195a598708d64f170c4ac2e880b3dfe7865aa4b3cbee6110554ad196c27401d:log:4', 'hash': '0x3195a598708d64f170c4ac2e880b3dfe7865aa4b3cbee6110554ad196c27401d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x425f8b7d68b3643c5872293f1a450e7fc2af252a', 'value': 23563.239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x04fd5da1831bf69d8000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:26:15.000Z'}}, {'blockNum': '0x74f147', 'uniqueId': '0x9eb8f74a7571d84d3432acdaf1f3f86d92c06b1029bb93ea916b3f6906cd75a9:log:7', 'hash': '0x9eb8f74a7571d84d3432acdaf1f3f86d92c06b1029bb93ea916b3f6906cd75a9', 'from': '0x3e79b8a7666b3b16dfcbc6f79b780b9960a6935d', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x016345785d8a0006', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:26:54.000Z'}}, {'blockNum': '0x74f199', 'uniqueId': '0x94c48dbbea23e523fb3496555302c44c3ad2969bbd69d8d4670762ee7192962e:log:65', 'hash': '0x94c48dbbea23e523fb3496555302c44c3ad2969bbd69d8d4670762ee7192962e', 'from': '0xbbc37901df80d9318cb3d84b18bbcec06fb2b11e', 'to': '0x740a17b4270b6f725076581218191174825f8932', 'value': 130, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x070c1cc73b00c80000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T18:42:16.000Z'}}, {'blockNum': '0x74f2b1', 'uniqueId': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33:log:34', 'hash': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7895.260564422015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ac00c03475644951c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:46:50.000Z'}}, {'blockNum': '0x74f2b1', 'uniqueId': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33:log:36', 'hash': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 7895.260564422015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ac00c03475644951c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:46:50.000Z'}}, {'blockNum': '0x74f2b1', 'uniqueId': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33:log:40', 'hash': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7895.260564422015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ac00c03475644951c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:46:50.000Z'}}, {'blockNum': '0x74f2b1', 'uniqueId': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33:log:42', 'hash': '0x8306316804ec3434efebc436a1925c06f5f174d8fd6ebd4ab8f7e2b53295ad33', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 7895.260564422015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x01ac00c03475644951c6', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:46:50.000Z'}}, {'blockNum': '0x74f2cb', 'uniqueId': '0x79bfb4bf9512e414d9c9eaf9decb19d52f853d273a33c65562f4293953ef8778:log:11', 'hash': '0x79bfb4bf9512e414d9c9eaf9decb19d52f853d273a33c65562f4293953ef8778', 'from': '0x2a15619fdcbb43c56ea90d3476df8e7391c62ffa', 'to': '0xe5c2ab0a0accdeb2c4469208fe2df86e6abab583', 'value': 5109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0114f59e2f5b9eb40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T19:52:59.000Z'}}, {'blockNum': '0x74f37c', 'uniqueId': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e:log:2', 'hash': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 878.5282932637849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2fa0077c14be197f45', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:30:48.000Z'}}, {'blockNum': '0x74f37c', 'uniqueId': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e:log:4', 'hash': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 878.5282932637849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2fa0077c14be197f45', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:30:48.000Z'}}, {'blockNum': '0x74f37c', 'uniqueId': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e:log:10', 'hash': '0x32b874a85a9d099ea62dd9695f48107ae10283e053c669ab99242d9dc59ddf1e', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0xbcdf538581f7167ec8228ec2c9b1cfc2f74788c7', 'value': 878.528293263785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x2fa0077c14be1c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:30:48.000Z'}}, {'blockNum': '0x74f380', 'uniqueId': '0x004843bb64b0288c268d33f450c6d8b4e4e5dce455882c11614e3b9968b8c2c2:log:56', 'hash': '0x004843bb64b0288c268d33f450c6d8b4e4e5dce455882c11614e3b9968b8c2c2', 'from': '0xcb23b7692d9415b218d17395e0a6114bdc8ee8a0', 'to': '0xbe02c078f729afd85c4ff5b98ffdcc885779b723', 'value': 187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a2325753b460c0000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:32:04.000Z'}}, {'blockNum': '0x74f382', 'uniqueId': '0x6698b77b47f83faa1874e1af496b3e68da03e1da8c730f3f8f6db0d6ae37723e:log:4', 'hash': '0x6698b77b47f83faa1874e1af496b3e68da03e1da8c730f3f8f6db0d6ae37723e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb2a0e8ffc16729a0ab621b2de55e1406991b407e', 'value': 18154.085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03d8228a1b090f508000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:32:41.000Z'}}, {'blockNum': '0x74f38a', 'uniqueId': '0x6f6fb9aa444e0b06474dd414dca941699a1c00094ef5cbad070b1f7813fa0a93:log:13', 'hash': '0x6f6fb9aa444e0b06474dd414dca941699a1c00094ef5cbad070b1f7813fa0a93', 'from': '0x1095b99c20f15a61d35f367937b6d2bbbd6c0c5a', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 33380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0711888e992e2b100000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:35:25.000Z'}}, {'blockNum': '0x74f3c4', 'uniqueId': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343:log:33', 'hash': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 11585.024978232475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02740684b59c0630a04e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:50:56.000Z'}}, {'blockNum': '0x74f3c4', 'uniqueId': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343:log:35', 'hash': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 11585.024978232475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x02740684b59c0630a04e', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:50:56.000Z'}}, {'blockNum': '0x74f3c4', 'uniqueId': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343:log:40', 'hash': '0x059701f2c9f6f8f2bb911007a793135e4214223f927e95dd73d7ce9922f16343', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 11585.013393207497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0274065b8d1733a5fbb2', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T20:50:56.000Z'}}, {'blockNum': '0x74f3ec', 'uniqueId': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006:log:17', 'hash': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5808.5287277447405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ae18776facce94fde', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:01:14.000Z'}}, {'blockNum': '0x74f3ec', 'uniqueId': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006:log:19', 'hash': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 5808.5287277447405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013ae18776facce94fde', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:01:14.000Z'}}, {'blockNum': '0x74f3ec', 'uniqueId': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006:log:24', 'hash': '0x58344ce5d396de51cc05abd7c8633e01e0846fe5e91e69c810f624a050f07006', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 5802.948521020988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x013a94169687966283b1', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:01:14.000Z'}}, {'blockNum': '0x74f3f6', 'uniqueId': '0xc20197d15c6da6a0397891e91c9f615af33d215172cc9b26be4916c6330c3c2e:log:2', 'hash': '0xc20197d15c6da6a0397891e91c9f615af33d215172cc9b26be4916c6330c3c2e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9b2b68dc0d9fc3c2f5f9c61487842e96b7cca7aa', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:03:13.000Z'}}, {'blockNum': '0x74f43f', 'uniqueId': '0x170774fdde9003d6b9dba0a8de85698dcdc275d77b62469ba64d04d6c15329f7:log:0', 'hash': '0x170774fdde9003d6b9dba0a8de85698dcdc275d77b62469ba64d04d6c15329f7', 'from': '0x9b2b68dc0d9fc3c2f5f9c61487842e96b7cca7aa', 'to': '0x920b522df9aebf8334d1043b58964582e7df242c', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:18:39.000Z'}}, {'blockNum': '0x74f49d', 'uniqueId': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77:log:5', 'hash': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2465.5572434217515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x85a87af1cf58d1dcbd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:40:35.000Z'}}, {'blockNum': '0x74f49d', 'uniqueId': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77:log:7', 'hash': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 2465.5572434217515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x85a87af1cf58d1dcbd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:40:35.000Z'}}, {'blockNum': '0x74f49d', 'uniqueId': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77:log:12', 'hash': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 2465.5572434217515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x85a87af1cf58d1dcbd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:40:35.000Z'}}, {'blockNum': '0x74f49d', 'uniqueId': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77:log:14', 'hash': '0xe1cd10a66d1651553f7b8d6869271caacb936f16d46708a3dfd201557cb3ca77', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 2465.5572434217515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x85a87af1cf58d1dcbd', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:40:35.000Z'}}, {'blockNum': '0x74f4b6', 'uniqueId': '0x1ccb3376467cd72c381089a1f184592c7761127106aa3d6bfedcc51c167dbf1c:log:34', 'hash': '0x1ccb3376467cd72c381089a1f184592c7761127106aa3d6bfedcc51c167dbf1c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x384b38e394f467e931249960974abe7aee60979c', 'value': 1000993.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0xd3f7f8c71c9c1d200000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:46:07.000Z'}}, {'blockNum': '0x74f4e0', 'uniqueId': '0x350fef475f60e543cec2c38b7bbcc2c8951b769b2d5e509790e0c0eab233aa9e:log:3', 'hash': '0x350fef475f60e543cec2c38b7bbcc2c8951b769b2d5e509790e0c0eab233aa9e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 4583861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x03caab9a4c6b8e7db40000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T21:56:21.000Z'}}, {'blockNum': '0x74f55d', 'uniqueId': '0x89e3986b6957dcf11ec55e6460ed36ff42407f651421971e94506e3957dd8ef8:log:2', 'hash': '0x89e3986b6957dcf11ec55e6460ed36ff42407f651421971e94506e3957dd8ef8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1443e87dc9cdbc71d10dc8c9e6980e0657c2e1ae', 'value': 1383.171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REQ', 'category': 'erc20', 'rawContract': {'value': '0x4afb5a88255dd38000', 'address': '0x8f8221afbb33998d8584a2b05749ba73c37a938a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-04-29T22:24:48.000Z'}}]}}
Number of returned transfers:  121
Answer is complete
 
symbol             RDN
group              CPI
date        2019-05-10
hour             16:00
exchange       binance
Name: 1006, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2019-05-10 16:00:00 2019-05-10 04:00:00 2019-05-11 04:00:00
Unix timestamps:  1557453600.0 1557540000.0
Hex Block Numbers:  0x75f34e 0x760c56
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x75f35d', 'uniqueId': '0x3997678b27f1785ad1d4f9830fac76839de1a8f691a4d6c510bcec6a553e2b33:log:23', 'hash': '0x3997678b27f1785ad1d4f9830fac76839de1a8f691a4d6c510bcec6a553e2b33', 'from': '0xe14f0bc3d8faab523069bc670497c439e2777614', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 1496.299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x511d51ecc4a4378000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T02:02:45.000Z'}}, {'blockNum': '0x75f5d3', 'uniqueId': '0x828a00a29b6a9ae5afa75881ff3ea35e81905d2d2ea3b6623b53da483f1e0326:log:30', 'hash': '0x828a00a29b6a9ae5afa75881ff3ea35e81905d2d2ea3b6623b53da483f1e0326', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:30:17.000Z'}}, {'blockNum': '0x75f5de', 'uniqueId': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649:log:7', 'hash': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:55.000Z'}}, {'blockNum': '0x75f5de', 'uniqueId': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649:log:9', 'hash': '0xaeedfeef550d0ed6bd2030fcd450ba4cafb950099e5fc0d9194d16263a9c1649', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1759.47888268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f61acb1adc698b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:55.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:28', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1140.5394756887104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd42a324d3fdb9bbf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:32', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 1140.5394756887104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd42a324d3fdb9bbf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f5df', 'uniqueId': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be:log:33', 'hash': '0x90eda1db1d3c41f69bb6486832dc4fafb3e0ac3f472c6d703ba3c0b29a5177be', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1140.4653437382854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dd322d3af8444baed', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T04:32:56.000Z'}}, {'blockNum': '0x75f65c', 'uniqueId': '0x449871ab45f562f4c0172e567d6bc5e8e9c96922fa966e70e3bd9af55eaf2668:log:125', 'hash': '0x449871ab45f562f4c0172e567d6bc5e8e9c96922fa966e70e3bd9af55eaf2668', 'from': '0xd8b8e5635d316bd3561f0a2cabd5177870268328', 'to': '0x6b09463f42e4519c20d223cf11a0f695c543b1a6', 'value': 202.107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0af4cc4db0f3df8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:02:44.000Z'}}, {'blockNum': '0x75f694', 'uniqueId': '0xfa88f220b269996ee6a1c9b8973c2480fd135a331b9a431abc60dd467545224d:log:106', 'hash': '0xfa88f220b269996ee6a1c9b8973c2480fd135a331b9a431abc60dd467545224d', 'from': '0x14781b75f698b66acebc9abc2ff89343991eded1', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 636.99105882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228806d912d20e2800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:14:55.000Z'}}, {'blockNum': '0x75f694', 'uniqueId': '0xcaecf56fd9ad7eab9b76e67ee8d8b41c9df8b0cd491a37f3dc0e1114e7d893c3:log:108', 'hash': '0xcaecf56fd9ad7eab9b76e67ee8d8b41c9df8b0cd491a37f3dc0e1114e7d893c3', 'from': '0x63675b1f88cf053a19e721221a93afb81e04f380', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 1696.8326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5bfc48637ede7d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T05:14:55.000Z'}}, {'blockNum': '0x75f81b', 'uniqueId': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51:log:12', 'hash': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51', 'from': '0x50a32dd491485bfae6f85a6fee94ef0cadcc101c', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7.782018706702859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6bff48c86877f975', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:42:39.000Z'}}, {'blockNum': '0x75f81b', 'uniqueId': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51:log:13', 'hash': '0x8a00bf2ab976d9b7b542f4b93f76d3701daa1e02bbe7c857b393c632fc1e1c51', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 7.782018706702859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6bff48c86877f975', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:42:39.000Z'}}, {'blockNum': '0x75f823', 'uniqueId': '0xcffe553c93313cd39cd2b2f3d7ede6196d0dae561fe361750004a8fbe2168eb4:log:24', 'hash': '0xcffe553c93313cd39cd2b2f3d7ede6196d0dae561fe361750004a8fbe2168eb4', 'from': '0x2f94781daee522b2f68635e8ce7bc0578d9c56e3', 'to': '0x1d0d1e86d4ad1b87273892f77ee9cc55490d2196', 'value': 456.48922720435166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18bf0f858f0bf70b08', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:43:45.000Z'}}, {'blockNum': '0x75f849', 'uniqueId': '0x2630a46d345d988ac2f4059a6a6482e91140c27d6327ab5ac1d7470dbbb8f46e:log:111', 'hash': '0x2630a46d345d988ac2f4059a6a6482e91140c27d6327ab5ac1d7470dbbb8f46e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:52:13.000Z'}}, {'blockNum': '0x75f852', 'uniqueId': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8:log:118', 'hash': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:54:54.000Z'}}, {'blockNum': '0x75f852', 'uniqueId': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8:log:120', 'hash': '0x5583844ac2e0355aae7dc99baaa1c402592722f658de7b0a88bc1898b05e18b8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 444.02153443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x181209610984072c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:54:54.000Z'}}, {'blockNum': '0x75f857', 'uniqueId': '0xd6bb7c8f937b0b7631ce4f0e6a0169c39f2adc4d722a5ad9a212cd9633bd19ec:log:34', 'hash': '0xd6bb7c8f937b0b7631ce4f0e6a0169c39f2adc4d722a5ad9a212cd9633bd19ec', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:55:45.000Z'}}, {'blockNum': '0x75f85a', 'uniqueId': '0x847d1478b95c71e88516cfd42e1335b951ffef646b563a813f5e2dc0953ef62c:log:34', 'hash': '0x847d1478b95c71e88516cfd42e1335b951ffef646b563a813f5e2dc0953ef62c', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:56:07.000Z'}}, {'blockNum': '0x75f861', 'uniqueId': '0x2ab1de47ee15c0359b9712604c8beaf108adbb81ac4470a4c27a40ec8f953314:log:81', 'hash': '0x2ab1de47ee15c0359b9712604c8beaf108adbb81ac4470a4c27a40ec8f953314', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:57:55.000Z'}}, {'blockNum': '0x75f862', 'uniqueId': '0x27076fac7729100e259e4a04b3260c93b63d136ef3dcd771c22e5a84514dc834:log:72', 'hash': '0x27076fac7729100e259e4a04b3260c93b63d136ef3dcd771c22e5a84514dc834', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T06:58:22.000Z'}}, {'blockNum': '0x75f86a', 'uniqueId': '0x244405f669c1102f0ecee02722a8c19a7eb2048325ba38d497fd7e0d532d63ae:log:6', 'hash': '0x244405f669c1102f0ecee02722a8c19a7eb2048325ba38d497fd7e0d532d63ae', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:00:29.000Z'}}, {'blockNum': '0x75f86e', 'uniqueId': '0xbfec6f2f6759a6da2c9467f9e1d75337afa8ee4ef60355a73c3812191d652415:log:4', 'hash': '0xbfec6f2f6759a6da2c9467f9e1d75337afa8ee4ef60355a73c3812191d652415', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:00:49.000Z'}}, {'blockNum': '0x75f876', 'uniqueId': '0xc72977ab5581ec3d88b65282f94c3370cc354c569912133b1ac6549d2ef84648:log:48', 'hash': '0xc72977ab5581ec3d88b65282f94c3370cc354c569912133b1ac6549d2ef84648', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:02:38.000Z'}}, {'blockNum': '0x75f879', 'uniqueId': '0x0243a4703d0773b2f8cd9aea80ce21695f935ed313d5cbc2ec2214db23d42a83:log:13', 'hash': '0x0243a4703d0773b2f8cd9aea80ce21695f935ed313d5cbc2ec2214db23d42a83', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:03:46.000Z'}}, {'blockNum': '0x75f87e', 'uniqueId': '0xf66843ccc76433cc2dc262f49e7329f640a6c3bf10f4a44ceac530b939b3af4f:log:148', 'hash': '0xf66843ccc76433cc2dc262f49e7329f640a6c3bf10f4a44ceac530b939b3af4f', 'from': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'to': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:05:13.000Z'}}, {'blockNum': '0x75f880', 'uniqueId': '0xeccddd220241ebfaffc977efd66abefb19302d2a371884588add1efebc5a5263:log:26', 'hash': '0xeccddd220241ebfaffc977efd66abefb19302d2a371884588add1efebc5a5263', 'from': '0xc2d2e759197fc6fa07538040324c1e1de37f2334', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:05:44.000Z'}}, {'blockNum': '0x75f887', 'uniqueId': '0x07bf086b95f5c3bab52bdf8f348dae747a6519239c36caf242aa5f62dbd4046c:log:12', 'hash': '0x07bf086b95f5c3bab52bdf8f348dae747a6519239c36caf242aa5f62dbd4046c', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:00.000Z'}}, {'blockNum': '0x75f888', 'uniqueId': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512:log:72', 'hash': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 656.9215158709343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x239c9e0e2a4e2b6e90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:12.000Z'}}, {'blockNum': '0x75f888', 'uniqueId': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512:log:76', 'hash': '0x637598a477201c382526b8331ef585e6fd89fb5ced6dc101f737db8a4ed95512', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 656.9215158709343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x239c9e0e2a4e2b6e90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:12.000Z'}}, {'blockNum': '0x75f889', 'uniqueId': '0x1cec08c1a44dafc4ba6ab99dab220974c7ceb4372ba0ba9c8a554ade57e917fb:log:157', 'hash': '0x1cec08c1a44dafc4ba6ab99dab220974c7ceb4372ba0ba9c8a554ade57e917fb', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 1274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45104d3a0f07a80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:07:21.000Z'}}, {'blockNum': '0x75f904', 'uniqueId': '0x629c8e63bb14276503e39ee79b09bfcbb1d144f7ae2fa214f396cd13c25eb7c9:log:114', 'hash': '0x629c8e63bb14276503e39ee79b09bfcbb1d144f7ae2fa214f396cd13c25eb7c9', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.8025090465147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2339d2432d3310a5f8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:05.000Z'}}, {'blockNum': '0x75f909', 'uniqueId': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4:log:60', 'hash': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 649.9556140455707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233bf2335cad2136a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:56.000Z'}}, {'blockNum': '0x75f909', 'uniqueId': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4:log:64', 'hash': '0x1ae3bdc1c0472128a19375b1cb52390afff1462381985d722d6f9c1c76caddb4', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.9556140455707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233bf2335cad2136a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:31:56.000Z'}}, {'blockNum': '0x75f946', 'uniqueId': '0xd3c4478dac3e00227e3a5335a7ae9b65a0703ae8b18113650062f358a99ec40e:log:12', 'hash': '0xd3c4478dac3e00227e3a5335a7ae9b65a0703ae8b18113650062f358a99ec40e', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 659.1884793631777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23bc13ed73581f4328', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:45:57.000Z'}}, {'blockNum': '0x75f95b', 'uniqueId': '0x0bbfe19883d7bde00d216a805b626ceb697056d1f91febf200f56a5c988cb58a:log:102', 'hash': '0x0bbfe19883d7bde00d216a805b626ceb697056d1f91febf200f56a5c988cb58a', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 665.744341623271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24170f0771115fba87', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T07:50:22.000Z'}}, {'blockNum': '0x75fa6f', 'uniqueId': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c:log:27', 'hash': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 631.7468179765709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x223f3f8fcfc4de4d7b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T08:50:33.000Z'}}, {'blockNum': '0x75fa6f', 'uniqueId': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c:log:29', 'hash': '0xe7d3583a90eac41b125b7815cd6baf7d361fdf71637f30c926b1069bc886ca8c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 631.7468179765709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x223f3f8fcfc4de4d7b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T08:50:33.000Z'}}, {'blockNum': '0x75fce7', 'uniqueId': '0x998592a478f223fa00bec267ffe32421341d7cab83d18e587a414195f7c93b33:log:106', 'hash': '0x998592a478f223fa00bec267ffe32421341d7cab83d18e587a414195f7c93b33', 'from': '0x773c249cc8dd02fce180ff066823312e448c6413', 'to': '0xcbc29eb2983568683e552e156316bfe67866fce1', 'value': 7162.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018443a16ffc2e7d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T11:07:57.000Z'}}, {'blockNum': '0x75fe58', 'uniqueId': '0xb72a25005a42f97697f9229435b55a9dcf94305ce260406bd341ae7265203700:log:0', 'hash': '0xb72a25005a42f97697f9229435b55a9dcf94305ce260406bd341ae7265203700', 'from': '0x20f72138a6cd58bf40aa3dce316e8b11586cffcb', 'to': '0x82683ef5441294a6e040eb9b0cc6ff68a54a6e64', 'value': 185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0a076407d3f7440000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T12:32:16.000Z'}}, {'blockNum': '0x75fee2', 'uniqueId': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1:log:149', 'hash': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 102.18798436396273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058a24a65d272b8789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:07:22.000Z'}}, {'blockNum': '0x75fee2', 'uniqueId': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1:log:153', 'hash': '0x495eb4163f51d7d9fb0ede76aad5a49c5d42918714da4ed85eaa6c8de8abf9d1', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x3ed4587c28403d6a1b829167a1e7bd8f04cff701', 'value': 102.18798436396273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x058a24a65d272b8789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:07:22.000Z'}}, {'blockNum': '0x75ffa2', 'uniqueId': '0x79347509dd8353817c0f036c745e8b35b725cc8cdf78d68ed3b02a6b5912e5cc:log:44', 'hash': '0x79347509dd8353817c0f036c745e8b35b725cc8cdf78d68ed3b02a6b5912e5cc', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 655.2045613420711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2384ca351e39c88d8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T13:55:56.000Z'}}, {'blockNum': '0x75ffb9', 'uniqueId': '0xc7e2690acfcbc882269c62ac25d5389a1434b3a581a79a40d7aeb0a0fc91d428:log:56', 'hash': '0xc7e2690acfcbc882269c62ac25d5389a1434b3a581a79a40d7aeb0a0fc91d428', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 649.9307652234905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x233b99eb7d6ff5750f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:03:05.000Z'}}, {'blockNum': '0x75ffc4', 'uniqueId': '0xf710dd454c62eebfd31266e1a8927009e3d12daaa48cc04ea48c4386df3f7e0d:log:51', 'hash': '0xf710dd454c62eebfd31266e1a8927009e3d12daaa48cc04ea48c4386df3f7e0d', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 644.720419085663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22f34b0d4881eae623', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:01.000Z'}}, {'blockNum': '0x75ffc5', 'uniqueId': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f:log:61', 'hash': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 711.9597650168635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26986d322888ba0510', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:26.000Z'}}, {'blockNum': '0x75ffc5', 'uniqueId': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f:log:65', 'hash': '0x5d0e57c640cb4143698ad36d8056405144725bd60c7a3c17b6047e76ae43032f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 711.9597650168635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26986d322888ba0510', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:05:26.000Z'}}, {'blockNum': '0x75ffc8', 'uniqueId': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab:log:81', 'hash': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:15.000Z'}}, {'blockNum': '0x75ffc8', 'uniqueId': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab:log:85', 'hash': '0xbf2909853095d4b6c13d04c7a7d703ad242a5364022df3ba8a5f56e7834dd6ab', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x0bea818348a0082457cb9e6dc7611c60ddae12af', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:15.000Z'}}, {'blockNum': '0x75ffc9', 'uniqueId': '0x25ae1b6a1f3d4aa26f45df96c24531278c952e295732e59e9f3049f84828e2fe:log:61', 'hash': '0x25ae1b6a1f3d4aa26f45df96c24531278c952e295732e59e9f3049f84828e2fe', 'from': '0x0bea818348a0082457cb9e6dc7611c60ddae12af', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 1273.1280390657753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4504336635792d5c18', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:06:26.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:95', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:97', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760076', 'uniqueId': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a:log:98', 'hash': '0x417a433885466c2070415c6ad3f8152f4683694cf0fa6780cf5b8914c1f6aa0a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 639.4445419010534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22aa135eefc6ad7a90', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T14:44:57.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:20', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'value': 632.5254245559515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0dba5ecca20166', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:23', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x107b8c8a12f24f6bfec6ab480b4c843291e1575e', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 632.5253995189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0da3996d940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x760106', 'uniqueId': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2:log:24', 'hash': '0xe3725c347c4ac4b0335cd5bfc583f6350267663914f779a57f7992194cf1d0c2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 632.5253995189923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x224a0da3996d940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:14:34.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:73', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:76', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:77', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x76012a', 'uniqueId': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f:log:78', 'hash': '0xe3d2826973512dfbed231b14947595001dbd67fbda788359de78b3658ff8ef8f', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 660.8197099805392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23d2b7390deeb16dfa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:22:13.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:38', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:42', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:44', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:45', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760133', 'uniqueId': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568:log:46', 'hash': '0xa02e6ffd1e60a42bb3b33fa13ee11ae98d24347c05bb8c6bc71d71680583b568', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 702.4263541884145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26141fb785212ae7bf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:24:09.000Z'}}, {'blockNum': '0x760140', 'uniqueId': '0xa46e1f52002ec94d4450707b0c15cc282a4eb158f2fe1f5ca044346b5746a2f7:log:67', 'hash': '0xa46e1f52002ec94d4450707b0c15cc282a4eb158f2fe1f5ca044346b5746a2f7', 'from': '0x5325832cdf994b19407dadc9cb1a6d6e22ee0a23', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 100.466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x05723eeeb554650000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:27:30.000Z'}}, {'blockNum': '0x760160', 'uniqueId': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb:log:48', 'hash': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 355.47301465683995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13452dd774222b98c2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:35:19.000Z'}}, {'blockNum': '0x760160', 'uniqueId': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb:log:50', 'hash': '0x52c829458602cb174df51d56bf5875a21788e367e442a5533e3b0aa6fe57deeb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb09cd60ad551ce7ff6bc97458b483a8d50489ee7', 'value': 355.47301465683995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13452dd774222b98c2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:35:19.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:123', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:125', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x2ce64e46fa2b40bf511e14ac73f4aae22b754dc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x760179', 'uniqueId': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2:log:126', 'hash': '0x40ac72ccc95e4e2de454cdbd3b4f311670a4db5b9e80f40dfdcba173fca682e2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 525.3748949374078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c7b0a9363dc5d0ebe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:40:53.000Z'}}, {'blockNum': '0x76017d', 'uniqueId': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48:log:53', 'hash': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 349.7105341760806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f53565fcc163b142', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:41:51.000Z'}}, {'blockNum': '0x76017d', 'uniqueId': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48:log:55', 'hash': '0x3b565325f94f55f3a7d439e56e71455ccc903f70e0419e7dc97d53097af13a48', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xb09cd60ad551ce7ff6bc97458b483a8d50489ee7', 'value': 349.7105341760806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f53565fcc163b142', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:41:51.000Z'}}, {'blockNum': '0x760186', 'uniqueId': '0x85c3374e441bde6bc97d949a357dfc1cf0bdc66b9022e4c6144e42d51928e54f:log:65', 'hash': '0x85c3374e441bde6bc97d949a357dfc1cf0bdc66b9022e4c6144e42d51928e54f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 634.5002393268401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x226575adf100a30737', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:45:23.000Z'}}, {'blockNum': '0x760190', 'uniqueId': '0xe705b6946cb0936140c8a001ea869052475e19984e735c7ccb813fe85c7930e1:log:102', 'hash': '0xe705b6946cb0936140c8a001ea869052475e19984e735c7ccb813fe85c7930e1', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 3914.316011085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd4320c0925916ac200', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:46:51.000Z'}}, {'blockNum': '0x7601b1', 'uniqueId': '0xb14457bd50e15b514adda22fda31d84288a41c6521b60ee5bdcb29d120c14f8f:log:20', 'hash': '0xb14457bd50e15b514adda22fda31d84288a41c6521b60ee5bdcb29d120c14f8f', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 705.1581025641026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x263a08d631bdcd6906', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T15:54:23.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xc93af9c808029e2cb8776c3a25aaa408a988cbbcff5225ad962215e9ff9b9229:log:38', 'hash': '0xc93af9c808029e2cb8776c3a25aaa408a988cbbcff5225ad962215e9ff9b9229', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'value': 356.62060493156787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13551ae6ba730553ea', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0x2d6014c820addd90162cee970c8470c59f31ac96a50c6c27d2f1c7085fe9fcaa:log:40', 'hash': '0x2d6014c820addd90162cee970c8470c59f31ac96a50c6c27d2f1c7085fe9fcaa', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 2972.7839158513184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa127aa14fb88916a72', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:42', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:44', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65:log:50', 'hash': '0xca5a745e827cbe2d3d048b28bfbc7a29126c1791087bb904c06004caaee4fe65', 'from': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 621.2758551457431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21adef3a98310edfbe', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601c7', 'uniqueId': '0x2064a23a6372c79625ea3321f14b7767f45a011a36281e4e780a53429245d441:log:53', 'hash': '0x2064a23a6372c79625ea3321f14b7767f45a011a36281e4e780a53429245d441', 'from': '0xb958a8f59ac6145851729f73c7a6968311d8b633', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 356.62060493156787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x13551ae6ba730553ea', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:21.000Z'}}, {'blockNum': '0x7601ca', 'uniqueId': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05:log:109', 'hash': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1477.6197060378133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x501a17bde06cfa21d2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:31.000Z'}}, {'blockNum': '0x7601ca', 'uniqueId': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05:log:113', 'hash': '0x02fcccb530f90b924ce0f47de5e4cab1c5c92e33eaca1c3ed6bbd20a73cfbe05', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1477.6197060378133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x501a17bde06cfa21d2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:31.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:0', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x000000001e29fcd9b1469a7954dc65ff254fffc0', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:2', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x000000001e29fcd9b1469a7954dc65ff254fffc0', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cb', 'uniqueId': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b:log:3', 'hash': '0xf61cc4a70c18cea8791528c22c01e01dcfc9771b9ef3060a401e261aef34712b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1221.0552426747124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x42318ba9c8e2a1a6ac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:00:34.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x42d34d6284337bf7b16863a5574aeaa39c7ba5059ea4f1b2f84b504aef3a199c:log:35', 'hash': '0x42d34d6284337bf7b16863a5574aeaa39c7ba5059ea4f1b2f84b504aef3a199c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1727.073971563981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5d9ff752b5162df3de', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:37', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:39', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601cd', 'uniqueId': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46:log:40', 'hash': '0x977231e4d6e6a1b068dd496f8b87e72772e5e19b73d271e30759cacce951ce46', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1228.8360281335117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x429d8690ef63e4587d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:24.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0xc81e8fa2a188264dd0886346a0164f747c45afb04b40340635d0636a8d4afdc0:log:27', 'hash': '0xc81e8fa2a188264dd0886346a0164f747c45afb04b40340635d0636a8d4afdc0', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 616.8121327014218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x216ffce6ae63598df3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332:log:75', 'hash': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 816.7670975483106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c46eba3cd79e0746c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601ce', 'uniqueId': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332:log:77', 'hash': '0x60cdee18bdb1aebd49edbcb54ef9a50a925cdfddc3f38b3273b7e08b7cadf332', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 816.7670975483106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c46eba3cd79e0746c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:01:28.000Z'}}, {'blockNum': '0x7601cf', 'uniqueId': '0xa79190b5c260bbc683826b83fa1bca9ee88f35791b8e40888aa8dce66d84e002:log:70', 'hash': '0xa79190b5c260bbc683826b83fa1bca9ee88f35791b8e40888aa8dce66d84e002', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1193.7365271859924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b66c16c9d983204f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:02:02.000Z'}}, {'blockNum': '0x7601d5', 'uniqueId': '0x260a015f3b72763513f548afaa602ebb16f9c621a1c8c31047b06e9a660a65c2:log:32', 'hash': '0x260a015f3b72763513f548afaa602ebb16f9c621a1c8c31047b06e9a660a65c2', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 636.1201201537541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x227bf0a6f89350671c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:03:58.000Z'}}, {'blockNum': '0x7601f1', 'uniqueId': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350:log:12', 'hash': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 641.4434092366902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22c5d0c6301c6faf20', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:47.000Z'}}, {'blockNum': '0x7601f1', 'uniqueId': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350:log:14', 'hash': '0xbb574e23255b4b26b8b8ff19783d4db56612f422ec8e2ea5866ee8fbedee1350', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 641.4434092366902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22c5d0c6301c6faf20', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:47.000Z'}}, {'blockNum': '0x7601f3', 'uniqueId': '0x7033dba509cd768e0961f4eff8a7e88bec1626fc00a5c423f9baf356115dd671:log:86', 'hash': '0x7033dba509cd768e0961f4eff8a7e88bec1626fc00a5c423f9baf356115dd671', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 140.60753227612702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x079f524da26ed2dd0e', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:09:59.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:94', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:96', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601f7', 'uniqueId': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221:log:101', 'hash': '0x2e882e3fe221fcaa8ebdb69b81bd87436e5d0e4618f657cde00cc6d71d470221', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 639.3647831019587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x22a8f802bb3eeae7d9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:11:13.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:128', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:130', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:136', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x7601ff', 'uniqueId': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444:log:138', 'hash': '0xcd261579f20f1202471527c1d3f85acc97c13c8a7b0797c5c1ae55ad8c6db444', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 159.4021721367364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x08a42647026bd7bf5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:13:48.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:14', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:16', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e:log:21', 'hash': '0x9a6e2fdc55f54f7a540a0a67fff954d73767d23aebfc58f157ae910c406ec36e', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 651.2979175606396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x234e93054c1191bde8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:89', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:91', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:96', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760203', 'uniqueId': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0:log:98', 'hash': '0xf5e030fcca64fa708ccc841ef1037460bfd7329754cb2c70029d0dc6530644d0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 646.7388321377151, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x230f4de542937e8bad', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:14:34.000Z'}}, {'blockNum': '0x760209', 'uniqueId': '0x9e68b31905228aa80a396104ef9defe0b64eb4fefd87cd919333a5e00d245b84:log:36', 'hash': '0x9e68b31905228aa80a396104ef9defe0b64eb4fefd87cd919333a5e00d245b84', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:16:45.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:42', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:44', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x760216', 'uniqueId': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1:log:50', 'hash': '0xa98a82e1e2d196ef229ad3f10082584fba08282a8426f34c2b131bb1036e06e1', 'from': '0x083a385f154a914755b051a8f586ecf4dbfbe14c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 349.3969976057253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x12f0db7e23454396d5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:18:28.000Z'}}, {'blockNum': '0x76021f', 'uniqueId': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc:log:78', 'hash': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:20:28.000Z'}}, {'blockNum': '0x76021f', 'uniqueId': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc:log:80', 'hash': '0xf3bc5b97f801ee8e4b39726b3d98c6729a37d8ebac512e758ee69f84316c48cc', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 470.42576256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1980780aa0350e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:20:28.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:16', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:18', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760230', 'uniqueId': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4:log:24', 'hash': '0x5ce857fb353bd014cf985659282db32bd162ac00a505845c50d907c9732a1bb4', 'from': '0x778fdaf34bb5993d69968f541152451241fab7e3', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 325.7143891739816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11a831f73eb4829ef9', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:25:05.000Z'}}, {'blockNum': '0x760298', 'uniqueId': '0xf889109533c0e4aed7f686e8bbf566c0de2208ab0b76652dfcb9103a4d906656:log:9', 'hash': '0xf889109533c0e4aed7f686e8bbf566c0de2208ab0b76652dfcb9103a4d906656', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:48:02.000Z'}}, {'blockNum': '0x7602a1', 'uniqueId': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8:log:104', 'hash': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 159.0998551682927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089ff43b54122eaa6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:49:44.000Z'}}, {'blockNum': '0x7602a1', 'uniqueId': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8:log:108', 'hash': '0x63551b8818f550e61e5f27714f623d097f19f4c5039c99c6b5fb44c83469b1f8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'value': 159.0998551682927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089ff43b54122eaa6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:49:44.000Z'}}, {'blockNum': '0x7602a6', 'uniqueId': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47:log:8', 'hash': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:51:49.000Z'}}, {'blockNum': '0x7602a6', 'uniqueId': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47:log:10', 'hash': '0x3d98b1d6b0400252ca7de13e7f0a34b157a0bf1c0689b5ee67d9061d8c572c47', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 648.37999026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x23261475e086888800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:51:49.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:30', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:32', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x9475cec6a585cafd941d7e074d6fe5484a822be0', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7602c2', 'uniqueId': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605:log:38', 'hash': '0xaa8f77b1a6dce7131afabf148893e45e8926ec13050610ac81ff8591b1009605', 'from': '0x9475cec6a585cafd941d7e074d6fe5484a822be0', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 158.75514065968878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x089b2b8f4f27ec01ec', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T16:56:42.000Z'}}, {'blockNum': '0x7604ab', 'uniqueId': '0x5cf8696a4f7a0b2817195012942709112c6aa4b202b155a60f3ee77715d01b6a:log:51', 'hash': '0x5cf8696a4f7a0b2817195012942709112c6aa4b202b155a60f3ee77715d01b6a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:38:31.000Z'}}, {'blockNum': '0x7604b7', 'uniqueId': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94:log:22', 'hash': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:40:52.000Z'}}, {'blockNum': '0x7604b7', 'uniqueId': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94:log:24', 'hash': '0xca7d6252467156c31cf71d06ddc50b49745ce0b2fb1fc2d26268e3af6bacae94', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1286.99777608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45c4ae9a89ce202000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:40:52.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:32', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:36', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x7604bb', 'uniqueId': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c:log:37', 'hash': '0x2d73bed5925494d1036ac00bdbf871058c3cbb1c7d5423dfa13d2a5aa633028c', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 335.7621679370516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1233a2d8cb6702d82a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T18:41:47.000Z'}}, {'blockNum': '0x760592', 'uniqueId': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250:log:77', 'hash': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250', 'from': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 89.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04d47f3c6eea878000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:29:42.000Z'}}, {'blockNum': '0x760592', 'uniqueId': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250:log:79', 'hash': '0xbfff598a8960102e45f390e927e6e4c71f8e89d00c79225bda6485e330d0d250', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 89.099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04d47f3c6eea878000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:29:42.000Z'}}, {'blockNum': '0x7605db', 'uniqueId': '0x7b8295276770019f64700bab106cd4adef00ca0b1bf13679a78304c5458d9fe6:log:35', 'hash': '0x7b8295276770019f64700bab106cd4adef00ca0b1bf13679a78304c5458d9fe6', 'from': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'to': '0xbe4dfe79790cf61490d195d4bc0082625d829c21', 'value': 59.8689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x033ed90f59d9624000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:50:50.000Z'}}, {'blockNum': '0x7605fd', 'uniqueId': '0xc44f13b4934429a04036acc942210574ecba11d20d4a6c931757ecd011755961:log:44', 'hash': '0xc44f13b4934429a04036acc942210574ecba11d20d4a6c931757ecd011755961', 'from': '0x546a6283d16f175222043d229ebb484a6dc46ccf', 'to': '0x4b771b02981ef44e52c7b561e9a614fa9b11def6', 'value': 70.00085516829269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03cb74fee527a72a6a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T19:57:33.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:49', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:53', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:55', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:56', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x760792', 'uniqueId': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c:log:57', 'hash': '0x81ac195fbdd20a247a85255b7c0efa85c0736127dd3e50412d02c60b359c5c8c', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 256.60670696869727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0de922286d6bf4c329', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:23:47.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:31', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:35', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:37', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:38', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607aa', 'uniqueId': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9:log:39', 'hash': '0x3bb26ad0ebac635ccc731b40f863bc889e62946285b250eb75c434915b5adba9', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 294.9979791733832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ffdeb5b178796e926', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:04.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:18', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x320b7287b5136cddf0e6242837b0838136491689', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:21', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x320b7287b5136cddf0e6242837b0838136491689', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:22', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607ad', 'uniqueId': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0:log:23', 'hash': '0xf0d45e07d4017a31cb873cf7d18fb809ae522b1ab6caa8491671d8de93123ce0', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 524.4554085478028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c6e47e763f0261f46', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:28:19.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:20', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:24', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:26', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x7b0bc7c2931a95f66b096fca4d7a419302ca20e1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:27', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}, {'blockNum': '0x7607b4', 'uniqueId': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193:log:28', 'hash': '0xd4312935e39049ec7830e506359a0423e88ea59abf30e0f574e22504f8fcd193', 'from': '0xd6000fda0b38f4bff4cfab188e0bd18e8725a5e7', 'to': '0xb9812e2fa995ec53b5b6df34d21f9304762c5497', 'value': 389.78726058581844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x15216288524653d66f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-10T21:30:10.000Z'}}]}}
Number of returned transfers:  158
Answer is complete
 
symbol             CDT
group              CPI
date        2019-05-13
hour             15:00
exchange       binance
Name: 1007, dtype: object
HERE
{'osmosis': 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt'}
No contract for ethereum specified
 Symbol: CDT, Contract: 0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc
Datetime timestamps:  2019-05-13 15:00:00 2019-05-13 03:00:00 2019-05-14 03:00:00
Unix timestamps:  1557709200.0 1557795600.0
Hex Block Numbers:  0x763da4 0x765662
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             NAV
group              CPI
date        2019-05-18
hour             17:00
exchange       binance
Name: 1008, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-05-18 17:00:00 2019-05-18 05:00:00 2019-05-19 05:00:00
Unix timestamps:  1558148400.0 1558234800.0
Hex Block Numbers:  0x76bcf2 0x76d5dc
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SYS
group              CPI
date        2019-05-23
hour             17:00
exchange       binance
Name: 1009, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SYS, Contract: 
Datetime timestamps:  2019-05-23 17:00:00 2019-05-23 05:00:00 2019-05-24 05:00:00
Unix timestamps:  1558580400.0 1558666800.0
Hex Block Numbers:  0x77395c 0x775240
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BLZ
group              CPI
date        2019-05-27
hour             17:00
exchange       binance
Name: 1010, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-05-27 17:00:00 2019-05-27 05:00:00 2019-05-28 05:00:00
Unix timestamps:  1558926000.0 1559012400.0
Hex Block Numbers:  0x779dd2 0x77b6a5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x779dfa', 'uniqueId': '0x7219eb1ce16e42ab1dca29cfba1eb0471336b4aa995fafd913f2930ac4adb341:log:37', 'hash': '0x7219eb1ce16e42ab1dca29cfba1eb0471336b4aa995fafd913f2930ac4adb341', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xf358caa9bca436dd08608805e5316eae391ee054', 'value': 38232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08188f955e2ebe600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T03:10:31.000Z'}}, {'blockNum': '0x779dfa', 'uniqueId': '0xb2f6a2ecb8ae8697ea67189e89d9ae2d942689ab6f995bda81c77cd33053c770:log:38', 'hash': '0xb2f6a2ecb8ae8697ea67189e89d9ae2d942689ab6f995bda81c77cd33053c770', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 13482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02dadc55d14d78680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T03:10:31.000Z'}}, {'blockNum': '0x779dfa', 'uniqueId': '0xcad067e5da41773c41616c13507a52dbfb3f8964cf34cb69e9d5ff2336cf1312:log:42', 'hash': '0xcad067e5da41773c41616c13507a52dbfb3f8964cf34cb69e9d5ff2336cf1312', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 37009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d6430c89ea0fa40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T03:10:31.000Z'}}, {'blockNum': '0x779e21', 'uniqueId': '0x80c5ac6dd1c623b73c57af09f5cae2c71c3955bbed9195342fb7be2b79d8cc99:log:31', 'hash': '0x80c5ac6dd1c623b73c57af09f5cae2c71c3955bbed9195342fb7be2b79d8cc99', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 47134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fb23a6895d7db80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T03:19:30.000Z'}}, {'blockNum': '0x779e45', 'uniqueId': '0x9f8c5f53d4f58e939a05013f90b282eb00b7abfa2a7d5bbf1d5cd44a1e984a9b:log:28', 'hash': '0x9f8c5f53d4f58e939a05013f90b282eb00b7abfa2a7d5bbf1d5cd44a1e984a9b', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fb23a6895d7db80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T03:28:56.000Z'}}, {'blockNum': '0x779f98', 'uniqueId': '0x0e49d258459416d88383a64e65dd7227e5e712d06ecffc7501115622e95f9058:log:5', 'hash': '0x0e49d258459416d88383a64e65dd7227e5e712d06ecffc7501115622e95f9058', 'from': '0x64d41bcb951b2951c872e38ef658560450dd6493', 'to': '0xb4d105dbd6c0d95c8aa52eebfbcc85f7c1e71ce5', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T04:47:35.000Z'}}, {'blockNum': '0x779fd4', 'uniqueId': '0xe8a8aea611332c9af20d99ad4b230fa2795779552727dcd157d2bee9110a5c96:log:41', 'hash': '0xe8a8aea611332c9af20d99ad4b230fa2795779552727dcd157d2bee9110a5c96', 'from': '0xb4d105dbd6c0d95c8aa52eebfbcc85f7c1e71ce5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T05:02:31.000Z'}}, {'blockNum': '0x77a053', 'uniqueId': '0x8304fb141f3aacc42ab875a55f9355c4a1704259c8aa97b9770aec12bb1a9bfa:log:5', 'hash': '0x8304fb141f3aacc42ab875a55f9355c4a1704259c8aa97b9770aec12bb1a9bfa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 41515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08ca885c601a65cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T05:31:43.000Z'}}, {'blockNum': '0x77a130', 'uniqueId': '0x9aea8548224e8ebd47bbe619fc11d193cdd34ba66f1e27cc798c69e5c111dd02:log:33', 'hash': '0x9aea8548224e8ebd47bbe619fc11d193cdd34ba66f1e27cc798c69e5c111dd02', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'value': 2345.87484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x7f2b8da2009e518000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:23:11.000Z'}}, {'blockNum': '0x77a140', 'uniqueId': '0x8a67c70a821432ee36b9e5d0d99bf1b2cf7828d829022f52fab5fac7ccde36fc:log:123', 'hash': '0x8a67c70a821432ee36b9e5d0d99bf1b2cf7828d829022f52fab5fac7ccde36fc', 'from': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 116580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x18afd080acb01f100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:26:55.000Z'}}, {'blockNum': '0x77a140', 'uniqueId': '0x74a475f31f23612951ba4363b793b088f187cc3c81ceed2bc46a8b7d8571b8c4:log:124', 'hash': '0x74a475f31f23612951ba4363b793b088f187cc3c81ceed2bc46a8b7d8571b8c4', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 141936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1e0e5db0b6d7a3c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:26:55.000Z'}}, {'blockNum': '0x77a140', 'uniqueId': '0xffeaa607a31cc26f0b8b48a879aae708e98b16ede16bc8cc179eda816b74660c:log:125', 'hash': '0xffeaa607a31cc26f0b8b48a879aae708e98b16ede16bc8cc179eda816b74660c', 'from': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 20958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x047022ad47c1ccb80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:26:55.000Z'}}, {'blockNum': '0x77a140', 'uniqueId': '0x66898f4e38888ac2401651e9d00e6565a78ffc8a377fdf780f62205d5ebe7a2e:log:126', 'hash': '0x66898f4e38888ac2401651e9d00e6565a78ffc8a377fdf780f62205d5ebe7a2e', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 283792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3c186528558af8400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:26:55.000Z'}}, {'blockNum': '0x77a140', 'uniqueId': '0x93cb82efc778c4351fc78252585e9e9a1ce5ea461e3f73ce150d355da8721005:log:127', 'hash': '0x93cb82efc778c4351fc78252585e9e9a1ce5ea461e3f73ce150d355da8721005', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 104407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x161bea31100190fc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:26:55.000Z'}}, {'blockNum': '0x77a140', 'uniqueId': '0xea60f2fdf6cb0cb820380e89a8d95d0eb43d11ddaa449b7f227ee43df8404a0d:log:128', 'hash': '0xea60f2fdf6cb0cb820380e89a8d95d0eb43d11ddaa449b7f227ee43df8404a0d', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 6096.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x014a7c8babe373680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:26:55.000Z'}}, {'blockNum': '0x77a19d', 'uniqueId': '0x2fca318c5a6ae5f4cb2d1adfeb4c55d75a6e2779bf0eee99d94e34fbaadef6f6:log:84', 'hash': '0x2fca318c5a6ae5f4cb2d1adfeb4c55d75a6e2779bf0eee99d94e34fbaadef6f6', 'from': '0x13e46617783e646fdafc4f5d373d571932ad0a61', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 999.0749714074701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3628f3512b45cd2725', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:42:53.000Z'}}, {'blockNum': '0x77a19d', 'uniqueId': '0x2fca318c5a6ae5f4cb2d1adfeb4c55d75a6e2779bf0eee99d94e34fbaadef6f6:log:85', 'hash': '0x2fca318c5a6ae5f4cb2d1adfeb4c55d75a6e2779bf0eee99d94e34fbaadef6f6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 999.0749714074701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3628f3512b45cd2725', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:42:53.000Z'}}, {'blockNum': '0x77a1a2', 'uniqueId': '0xb1a1769c49a45a3cf7d7c9bc11a4c44fd2eadef6cc67a8572b0ec3ad011f2f99:log:45', 'hash': '0xb1a1769c49a45a3cf7d7c9bc11a4c44fd2eadef6cc67a8572b0ec3ad011f2f99', 'from': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 2345.87484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x7f2b8da2009e518000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T06:43:24.000Z'}}, {'blockNum': '0x77a20c', 'uniqueId': '0xc99d5089b47c16ed2ba644adc7cf3f85cb4934e470a8a14a300ddd78d28b75f4:log:89', 'hash': '0xc99d5089b47c16ed2ba644adc7cf3f85cb4934e470a8a14a300ddd78d28b75f4', 'from': '0x228fcbd82bd24cba252f398bd15bbcab65410bb8', 'to': '0x5ea11e68e24248deab3bd82de972744bc49486a0', 'value': 21379.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0486fd8d5e0645680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T07:06:34.000Z'}}, {'blockNum': '0x77a242', 'uniqueId': '0xb5ad85c9ae51518f48f98607c63abb3584497d2e20d029ad40717ed25b9d9190:log:6', 'hash': '0xb5ad85c9ae51518f48f98607c63abb3584497d2e20d029ad40717ed25b9d9190', 'from': '0x5ea11e68e24248deab3bd82de972744bc49486a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21379.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0486fd8d5e0645680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T07:19:27.000Z'}}, {'blockNum': '0x77a288', 'uniqueId': '0x09345d8e6a8747070bd7c249920a91406683f01f56bad1d872934217fb232ec0:log:76', 'hash': '0x09345d8e6a8747070bd7c249920a91406683f01f56bad1d872934217fb232ec0', 'from': '0x2a0d2515b20f4aeba55dddb3358a8888facb5c2d', 'to': '0xe17d860923b37e9b07ec480dc59ab62ed791a048', 'value': 3020, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa3b6eb4f5aafb00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T07:38:29.000Z'}}, {'blockNum': '0x77a299', 'uniqueId': '0x1660b619b90d1ad529cfc949c75e8d85cba6ae1c1933a5fbb64c1bcd291fe7dd:log:27', 'hash': '0x1660b619b90d1ad529cfc949c75e8d85cba6ae1c1933a5fbb64c1bcd291fe7dd', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 11131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025b69a7f56f390c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T07:42:01.000Z'}}, {'blockNum': '0x77a29d', 'uniqueId': '0xb6397357973092e84ad04e7c100ec6e0359519ca556ed095f0d9136c843b337b:log:21', 'hash': '0xb6397357973092e84ad04e7c100ec6e0359519ca556ed095f0d9136c843b337b', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 24763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x053e67a8d400c60c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T07:42:45.000Z'}}, {'blockNum': '0x77a2a2', 'uniqueId': '0x6f76cee1c02b9c91183bfbcd378ae89f2521d9328f0ac5d6f0a079610d3ce607:log:11', 'hash': '0x6f76cee1c02b9c91183bfbcd378ae89f2521d9328f0ac5d6f0a079610d3ce607', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 35854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0797a6343d5dd7780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T07:44:47.000Z'}}, {'blockNum': '0x77a2a5', 'uniqueId': '0x9bd3db75e08527a103e4a9af402d3069f6ef6d38ce4d2c376333eb0e89fc96fe:log:25', 'hash': '0x9bd3db75e08527a103e4a9af402d3069f6ef6d38ce4d2c376333eb0e89fc96fe', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'value': 76972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x104ca91548dda7300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T07:45:05.000Z'}}, {'blockNum': '0x77a2a5', 'uniqueId': '0x7e334d7cda5d8a6ef4b5c2f4a9a0855b24e5d2e34c4330ef48a4cad9fc61203b:log:26', 'hash': '0x7e334d7cda5d8a6ef4b5c2f4a9a0855b24e5d2e34c4330ef48a4cad9fc61203b', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 75417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ff85d1f839be2c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T07:45:05.000Z'}}, {'blockNum': '0x77a2b6', 'uniqueId': '0xd31a28c23537b7fe783496212c6750ce685bd4561d7ff19de9a9b75d467fd599:log:124', 'hash': '0xd31a28c23537b7fe783496212c6750ce685bd4561d7ff19de9a9b75d467fd599', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x053e67a8d400c60c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T07:49:15.000Z'}}, {'blockNum': '0x77a4a0', 'uniqueId': '0xd521f78ee181fc1f52a6c75a80a688c74585df36bcbd1ef3cab2a9e555bbc2f5:log:20', 'hash': '0xd521f78ee181fc1f52a6c75a80a688c74585df36bcbd1ef3cab2a9e555bbc2f5', 'from': '0x208c8cf8c52318129beb5aeb97b3efdac76a65e3', 'to': '0x60ead8dd212501d2a3acad762d37a159430d34dc', 'value': 3287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xb23049dcba44fc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T09:35:54.000Z'}}, {'blockNum': '0x77a515', 'uniqueId': '0x524511ce01dd057cca2efc993ffd7f7402f264220eb87a315d43d2045aba90b1:log:35', 'hash': '0x524511ce01dd057cca2efc993ffd7f7402f264220eb87a315d43d2045aba90b1', 'from': '0x60ead8dd212501d2a3acad762d37a159430d34dc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T10:01:54.000Z'}}, {'blockNum': '0x77a816', 'uniqueId': '0x5ee888b5f4963ad3058b0129b06adf0083cfadc1ea3ef8c34b6fbeca8bf547aa:log:12', 'hash': '0x5ee888b5f4963ad3058b0129b06adf0083cfadc1ea3ef8c34b6fbeca8bf547aa', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 154979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x20d16dad3a110fac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T12:54:04.000Z'}}, {'blockNum': '0x77a816', 'uniqueId': '0xa7b0d377513aa8157e604337ea3a75aee43f0162f1171ddcb0134690964de856:log:21', 'hash': '0xa7b0d377513aa8157e604337ea3a75aee43f0162f1171ddcb0134690964de856', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 31031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x069231a22ab73a7c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T12:54:04.000Z'}}, {'blockNum': '0x77a821', 'uniqueId': '0xaee866e938435a32c0a17c690f603c167fa7f0c503b93fb451d3e68a47fce15a:log:9', 'hash': '0xaee866e938435a32c0a17c690f603c167fa7f0c503b93fb451d3e68a47fce15a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf540b54cbca5ab2df57f2529330538ce763e17d8', 'value': 25000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x054b40b1f852bda00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T12:56:09.000Z'}}, {'blockNum': '0x77a8c9', 'uniqueId': '0xc0ab59489bb861d708be9d65497cb282cb0c1a86f3da27710d5bfbbbb38800cc:log:10', 'hash': '0xc0ab59489bb861d708be9d65497cb282cb0c1a86f3da27710d5bfbbbb38800cc', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6c5ce00a48670baf900f1ab9297cb002cd72aa7f', 'value': 9996.096528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021de3b4dea073910000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T13:34:52.000Z'}}, {'blockNum': '0x77a8de', 'uniqueId': '0x83fe73c90ac941af336b773734df80609a2ccedc01904d71e68684ab020a46ce:log:21', 'hash': '0x83fe73c90ac941af336b773734df80609a2ccedc01904d71e68684ab020a46ce', 'from': '0x6c5ce00a48670baf900f1ab9297cb002cd72aa7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9996.096528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021de3b4dea073910000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T13:39:01.000Z'}}, {'blockNum': '0x77a91b', 'uniqueId': '0x3fd0448edf5210b59a5c5676d28292f7b8ac5da6ec549f6e1620a49a80e8c82a:log:3', 'hash': '0x3fd0448edf5210b59a5c5676d28292f7b8ac5da6ec549f6e1620a49a80e8c82a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 33541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x071a42e1802a70f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T13:53:51.000Z'}}, {'blockNum': '0x77a954', 'uniqueId': '0xccb9762b47e802fc91878ddd9e0a81df4e724a28ffa7c8b2251ccd51fdee3f8a:log:43', 'hash': '0xccb9762b47e802fc91878ddd9e0a81df4e724a28ffa7c8b2251ccd51fdee3f8a', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 33541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x071a42e1802a70f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T14:07:46.000Z'}}, {'blockNum': '0x77a987', 'uniqueId': '0xfa3a615cec2a6c76e9cec054cd2b6ef789cb02f612dd886ba3e8eabc7955b12f:log:30', 'hash': '0xfa3a615cec2a6c76e9cec054cd2b6ef789cb02f612dd886ba3e8eabc7955b12f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 34357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07467f27dccfffb40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T14:17:36.000Z'}}, {'blockNum': '0x77a98e', 'uniqueId': '0x05b883229bce7329f14d12d7244d318f500564a1def4938980f3d7f602542f61:log:3', 'hash': '0x05b883229bce7329f14d12d7244d318f500564a1def4938980f3d7f602542f61', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 31453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a9120f56dd29540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T14:19:55.000Z'}}, {'blockNum': '0x77a99d', 'uniqueId': '0xf51f1315ac5f43e655c90015f489f096d0c7b240b594b5a4cd0645c30b71f300:log:6', 'hash': '0xf51f1315ac5f43e655c90015f489f096d0c7b240b594b5a4cd0645c30b71f300', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 7079.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x017fc7cc7d3391ee0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T14:23:00.000Z'}}, {'blockNum': '0x77aa47', 'uniqueId': '0xea2aaea5d6185de8c61e78849c4afa7872db95ba84edb35a9507ecd9e60c1cd6:log:34', 'hash': '0xea2aaea5d6185de8c61e78849c4afa7872db95ba84edb35a9507ecd9e60c1cd6', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 34357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07467f27dccfffb40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T14:58:32.000Z'}}, {'blockNum': '0x77aabf', 'uniqueId': '0x3ef11b8b6cf7f92e5ddb8bb038cba8c2241ff7bc746ef91691aed99f30383ae8:log:218', 'hash': '0x3ef11b8b6cf7f92e5ddb8bb038cba8c2241ff7bc746ef91691aed99f30383ae8', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 48662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a4df8e909ac9a980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T15:23:15.000Z'}}, {'blockNum': '0x77aabf', 'uniqueId': '0x3d2ce38222a188e92d692cafd69b17f61ad363e2e0ee2d13e8326614306e822c:log:219', 'hash': '0x3d2ce38222a188e92d692cafd69b17f61ad363e2e0ee2d13e8326614306e822c', 'from': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 11131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x025b69a7f56f390c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T15:23:15.000Z'}}, {'blockNum': '0x77aabf', 'uniqueId': '0x11b82ab7cae9e1c10ea2b4698607cacaebc17b37fa80333abe3d12da99ed9403:log:220', 'hash': '0x11b82ab7cae9e1c10ea2b4698607cacaebc17b37fa80333abe3d12da99ed9403', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 75417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ff85d1f839be2c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T15:23:15.000Z'}}, {'blockNum': '0x77aaef', 'uniqueId': '0x35873470770486e406810a5639a058da0d1f104c2cebe038f3bffbcd1da50b40:log:22', 'hash': '0x35873470770486e406810a5639a058da0d1f104c2cebe038f3bffbcd1da50b40', 'from': '0x6b276a25268fe8dbd8fcc27870b2ff4ffa1b3e98', 'to': '0xc1fed8b5f9999909984eb2445a361188982d49a5', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T15:35:29.000Z'}}, {'blockNum': '0x77ab29', 'uniqueId': '0xc9abfaf9f368c512e27fdb86a4964910316f36ed29f23a555e1b49a460fd3f44:log:5', 'hash': '0xc9abfaf9f368c512e27fdb86a4964910316f36ed29f23a555e1b49a460fd3f44', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 30408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06706bc58b82de200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T15:49:12.000Z'}}, {'blockNum': '0x77ab6e', 'uniqueId': '0x6221edda1b3755aa65dcbc7173970f91e54b9ec8573aae630318eb6a72a00bc6:log:17', 'hash': '0x6221edda1b3755aa65dcbc7173970f91e54b9ec8573aae630318eb6a72a00bc6', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'value': 10065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02219fef2d5832a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T16:02:52.000Z'}}, {'blockNum': '0x77ac68', 'uniqueId': '0xb7fb757b318fef620bfb2b5539d6a587bd64329370d85e3d401019d934a90237:log:86', 'hash': '0xb7fb757b318fef620bfb2b5539d6a587bd64329370d85e3d401019d934a90237', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 16790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x038e300eaac478980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:02:45.000Z'}}, {'blockNum': '0x77ac8a', 'uniqueId': '0x07ddf635ec694bd724f3aa87955b5c9b9ea713a116c0a26cce43679f9f06ffec:log:111', 'hash': '0x07ddf635ec694bd724f3aa87955b5c9b9ea713a116c0a26cce43679f9f06ffec', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x038e300eaac478980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:09:05.000Z'}}, {'blockNum': '0x77aceb', 'uniqueId': '0x08606091c9ea522ed931d731316b87d2946faaf559194fe1ea7e411ba21e42e0:log:3', 'hash': '0x08606091c9ea522ed931d731316b87d2946faaf559194fe1ea7e411ba21e42e0', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:36:59.000Z'}}, {'blockNum': '0x77ad00', 'uniqueId': '0x087223076c3c9a67f66c68ccc849cd0c508d7dab6e819056d9032b4adf7e6cb5:log:91', 'hash': '0x087223076c3c9a67f66c68ccc849cd0c508d7dab6e819056d9032b4adf7e6cb5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 80055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10f3ca4d8e6e887c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:42:16.000Z'}}, {'blockNum': '0x77ad1a', 'uniqueId': '0xa4313d95d8100f95c100fa720de9e71cf7c8f48d509d1f39713c402c3f8576e8:log:11', 'hash': '0xa4313d95d8100f95c100fa720de9e71cf7c8f48d509d1f39713c402c3f8576e8', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'value': 56564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0bfa573087157b500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:48:06.000Z'}}, {'blockNum': '0x77ad1e', 'uniqueId': '0xd131fdc08d28fe41c0185e28677601d9e79b38523bde6b1cfad20b203c4b4918:log:36', 'hash': '0xd131fdc08d28fe41c0185e28677601d9e79b38523bde6b1cfad20b203c4b4918', 'from': '0x7917ee245442c81d7d5d9c224142cff3b8c59fd5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e4d316827686400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:49:12.000Z'}}, {'blockNum': '0x77ad1e', 'uniqueId': '0x49e2a6dbd6e35320d7a584f8b5b02e85abb2096a46a70408fabad2b1469248e5:log:68', 'hash': '0x49e2a6dbd6e35320d7a584f8b5b02e85abb2096a46a70408fabad2b1469248e5', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10f3ca4d8e6e887c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:49:12.000Z'}}, {'blockNum': '0x77ad30', 'uniqueId': '0x2cafdbf6699c73b6347b6358850536b149316c911f3019d6c2d86bc949be7417:log:138', 'hash': '0x2cafdbf6699c73b6347b6358850536b149316c911f3019d6c2d86bc949be7417', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 33245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x070a370e4070e5540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:52:40.000Z'}}, {'blockNum': '0x77ad53', 'uniqueId': '0xbe4cf51f9fcd6aae9528743ee476da73ac8ca17fac480ddeea88e5fc29f23569:log:127', 'hash': '0xbe4cf51f9fcd6aae9528743ee476da73ac8ca17fac480ddeea88e5fc29f23569', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x070a370e4070e5540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:59:06.000Z'}}, {'blockNum': '0x77ad54', 'uniqueId': '0x0ad7ce616ab0ffe4355f70d78a582667f20f953fdeddee0af615bdaf2051b100:log:35', 'hash': '0x0ad7ce616ab0ffe4355f70d78a582667f20f953fdeddee0af615bdaf2051b100', 'from': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0bfa573087157b500000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T17:59:49.000Z'}}, {'blockNum': '0x77ad60', 'uniqueId': '0x87bf53c256b5c6c8efa8b8b8f5c6a4ebab8d8467f748576d7b77d61976d2f69b:log:5', 'hash': '0x87bf53c256b5c6c8efa8b8b8f5c6a4ebab8d8467f748576d7b77d61976d2f69b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'value': 60035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb680fdb4f0102c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:03:19.000Z'}}, {'blockNum': '0x77ad60', 'uniqueId': '0xef37bed8d49f636e7005da623536d08b6066e6851588382560e014708d7e87c2:log:10', 'hash': '0xef37bed8d49f636e7005da623536d08b6066e6851588382560e014708d7e87c2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 21798.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x049db2f52098e08a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:03:19.000Z'}}, {'blockNum': '0x77ad7b', 'uniqueId': '0xc9ca59183a2a53b1f6b5a05d4121fc4770c1ff8dcf41962c25d67e1c52f3b516:log:5', 'hash': '0xc9ca59183a2a53b1f6b5a05d4121fc4770c1ff8dcf41962c25d67e1c52f3b516', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 25435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0562d5886b982c8c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:09:00.000Z'}}, {'blockNum': '0x77ad95', 'uniqueId': '0x8f571c73a46779c21e5e4a84652c59a386700f33abc27b51f91137d3fa66ffb8:log:61', 'hash': '0x8f571c73a46779c21e5e4a84652c59a386700f33abc27b51f91137d3fa66ffb8', 'from': '0xebd397c5b845aa682bdf33e84be90191affdee1b', 'to': '0xd05952668e3981fae8794c4b7a6de4a76292cb3c', 'value': 2853.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x9ab46e4beb69c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:14:04.000Z'}}, {'blockNum': '0x77ada5', 'uniqueId': '0x82756ab1bfcf2ca410cfcef973c2cdc934439bc5fc3b25b5b6e5c0c333f388ff:log:83', 'hash': '0x82756ab1bfcf2ca410cfcef973c2cdc934439bc5fc3b25b5b6e5c0c333f388ff', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 25435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0562d5886b982c8c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:19:07.000Z'}}, {'blockNum': '0x77adc4', 'uniqueId': '0x84e82dfe03f17f295a5a954ec75adddee0f1e3acdb964c7ccd7c8a8125dacddb:log:18', 'hash': '0x84e82dfe03f17f295a5a954ec75adddee0f1e3acdb964c7ccd7c8a8125dacddb', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 33478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0716d89489f43f580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:28:09.000Z'}}, {'blockNum': '0x77adec', 'uniqueId': '0x187cceb86c17c14a5ee47605b6d992617d2d1622ec5a47b9d2a6855db844815b:log:23', 'hash': '0x187cceb86c17c14a5ee47605b6d992617d2d1622ec5a47b9d2a6855db844815b', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 21798.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x049db2f52098e08a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:35:17.000Z'}}, {'blockNum': '0x77adff', 'uniqueId': '0x85bcdd0911d777455d0f3f7fc083ff51cf9d474bac88d786bcfa782d1b317c0c:log:8', 'hash': '0x85bcdd0911d777455d0f3f7fc083ff51cf9d474bac88d786bcfa782d1b317c0c', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33478, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0716d89489f43f580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:39:10.000Z'}}, {'blockNum': '0x77ae00', 'uniqueId': '0x1ba4b3cb07d1cad48e3c77f18bbd166312563cc1732f170dc2d02e367a87fbfc:log:11', 'hash': '0x1ba4b3cb07d1cad48e3c77f18bbd166312563cc1732f170dc2d02e367a87fbfc', 'from': '0xd05952668e3981fae8794c4b7a6de4a76292cb3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2853.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x9ab46e4beb69c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:39:13.000Z'}}, {'blockNum': '0x77ae06', 'uniqueId': '0xe5e2c65017a8e55ae0a5a547095513756de465d04533f281d448a1dbfc98a51e:log:6', 'hash': '0xe5e2c65017a8e55ae0a5a547095513756de465d04533f281d448a1dbfc98a51e', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'value': 796.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2b2c452c7df1180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T18:42:07.000Z'}}, {'blockNum': '0x77aeb6', 'uniqueId': '0x0739645fcddcb9da3731a0f4de9a65ae596e743f8f78789af75586abfde9a640:log:18', 'hash': '0x0739645fcddcb9da3731a0f4de9a65ae596e743f8f78789af75586abfde9a640', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 7055.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x017e7abb5c5be08e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T19:20:43.000Z'}}, {'blockNum': '0x77afd2', 'uniqueId': '0x2419b3628c1ee38dee27d3a2fb120d31fa699d789d3b0afefd65c1933a431b97:log:57', 'hash': '0x2419b3628c1ee38dee27d3a2fb120d31fa699d789d3b0afefd65c1933a431b97', 'from': '0xbf7a7302c41fb2656f384543bee7ec6b9826ed2e', 'to': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'value': 796.4000000000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2b2c452c7df11a0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T20:22:06.000Z'}}, {'blockNum': '0x77afeb', 'uniqueId': '0x75223781099470e3ac2a47b244c64fac209c3c5900b254921102c0598e6fb76a:log:110', 'hash': '0x75223781099470e3ac2a47b244c64fac209c3c5900b254921102c0598e6fb76a', 'from': '0x710f31fa40aa1eebf106a2a72f7daa3622ec7dd6', 'to': '0x8bde0cf4a73ba210f9422b054e64b911dec3f92c', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T20:26:11.000Z'}}, {'blockNum': '0x77b021', 'uniqueId': '0x79b01413ba7cf7ea3934ccb1fe73d07e69797aa225ebd3138cbf3089a7f901eb:log:16', 'hash': '0x79b01413ba7cf7ea3934ccb1fe73d07e69797aa225ebd3138cbf3089a7f901eb', 'from': '0x8bde0cf4a73ba210f9422b054e64b911dec3f92c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T20:38:53.000Z'}}, {'blockNum': '0x77b0a7', 'uniqueId': '0x6e1a87919e052c9bb7f354988e32c6598d4b89eee29a7db1655c43bd36f723e1:log:53', 'hash': '0x6e1a87919e052c9bb7f354988e32c6598d4b89eee29a7db1655c43bd36f723e1', 'from': '0x92124d2c8c2c4858f674fcd8bed1e59073dfb473', 'to': '0xb46122e89d51da72fa003289ded2a834330f22e6', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T21:10:35.000Z'}}, {'blockNum': '0x77b0ab', 'uniqueId': '0x4afedbde0dc26c7cb9ec3ac16c8a0e0a691fa5a7979bdd64ceeb843328515b52:log:131', 'hash': '0x4afedbde0dc26c7cb9ec3ac16c8a0e0a691fa5a7979bdd64ceeb843328515b52', 'from': '0x92124d2c8c2c4858f674fcd8bed1e59073dfb473', 'to': '0xb46122e89d51da72fa003289ded2a834330f22e6', 'value': 7574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x019a965d673a68980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T21:12:12.000Z'}}, {'blockNum': '0x77b15e', 'uniqueId': '0x875a74ed8629356c8118bf929d840065ae4a31c27ce9db306c442cfb8b82baba:log:52', 'hash': '0x875a74ed8629356c8118bf929d840065ae4a31c27ce9db306c442cfb8b82baba', 'from': '0xb3df505a6f08b6b080bca24a5c78ea0bbe7b21ec', 'to': '0x76352670fe51d7c3b54dcbea80426d260e2a9e6c', 'value': 3210.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xae0b0dd8e20edd0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T21:47:36.000Z'}}, {'blockNum': '0x77b1ab', 'uniqueId': '0x49464644e17965c66f3c95973e970b4e9d0ef6aafd1be4ec68963ba902f76457:log:4', 'hash': '0x49464644e17965c66f3c95973e970b4e9d0ef6aafd1be4ec68963ba902f76457', 'from': '0x76352670fe51d7c3b54dcbea80426d260e2a9e6c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3210.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xae0b0dd8e20edd0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T22:03:22.000Z'}}, {'blockNum': '0x77b232', 'uniqueId': '0x895aef060b643d7f9071e48e61c711ff7bd4acd2e7daf25b2aacfd6c7c296e56:log:3', 'hash': '0x895aef060b643d7f9071e48e61c711ff7bd4acd2e7daf25b2aacfd6c7c296e56', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf4d8ee796b3df20de4ff3516f8cd38558a2597b9', 'value': 2475.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x863276b63d277e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T22:35:02.000Z'}}, {'blockNum': '0x77b258', 'uniqueId': '0xb668230da05d13cccd0d625f6ae09dd8ccf6f5e713c2dda0959690f5853d8f0d:log:5', 'hash': '0xb668230da05d13cccd0d625f6ae09dd8ccf6f5e713c2dda0959690f5853d8f0d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe5bd2e12f4fe00f5dabd95d2dc21e6fb5beb1287', 'value': 249975.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x34ef32f23709e32e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T22:42:34.000Z'}}, {'blockNum': '0x77b278', 'uniqueId': '0xa89292b7bb23fb1c1896370680ecbfd9ad79f738a50098999da7b5ee2da8340e:log:3', 'hash': '0xa89292b7bb23fb1c1896370680ecbfd9ad79f738a50098999da7b5ee2da8340e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4d6293a7c6a239f1d84b2108d127479a3bb9fe8f', 'value': 9975.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021cc5df4d892d2e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T22:51:52.000Z'}}, {'blockNum': '0x77b28a', 'uniqueId': '0x8dcfc1a1689e5a2d9de308a364f2590724ad50b5bddec0f271882f02ab652ae4:log:35', 'hash': '0x8dcfc1a1689e5a2d9de308a364f2590724ad50b5bddec0f271882f02ab652ae4', 'from': '0xc2d9ebc8b48b6f62ece7d3c2404f74c7f841efee', 'to': '0x57c178617c4a817f8b222224f87f66c174cdd10b', 'value': 1544.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x53b8db016b09480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T22:57:10.000Z'}}, {'blockNum': '0x77b2ab', 'uniqueId': '0x1ae8cef86457fa04d08c6544a7c2a0ad4cfa742efdd255193aec9c0a7ee77a68:log:91', 'hash': '0x1ae8cef86457fa04d08c6544a7c2a0ad4cfa742efdd255193aec9c0a7ee77a68', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 31453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a9120f56dd29540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:06:14.000Z'}}, {'blockNum': '0x77b2ab', 'uniqueId': '0xd0945b6978bdcd3ed70439499bfa2ace80e350108eccf1786925317a573d2bf2:log:92', 'hash': '0xd0945b6978bdcd3ed70439499bfa2ace80e350108eccf1786925317a573d2bf2', 'from': '0x06299c766772305de66b2c7294d5d78bb6528d5f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 76972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x104ca91548dda7300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:06:14.000Z'}}, {'blockNum': '0x77b2ab', 'uniqueId': '0x2f6837b502f23960368b7ea93b1649b57c5c855847656e9f2cc4ce414a4eec61:log:93', 'hash': '0x2f6837b502f23960368b7ea93b1649b57c5c855847656e9f2cc4ce414a4eec61', 'from': '0xf358caa9bca436dd08608805e5316eae391ee054', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 38232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08188f955e2ebe600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:06:14.000Z'}}, {'blockNum': '0x77b2ab', 'uniqueId': '0xf53a50b9a5cac694c05fb90caa97c388e354cb4b1e13574778d0b4c4646ef7fe:log:94', 'hash': '0xf53a50b9a5cac694c05fb90caa97c388e354cb4b1e13574778d0b4c4646ef7fe', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 154979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x20d16dad3a110fac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:06:14.000Z'}}, {'blockNum': '0x77b2ab', 'uniqueId': '0xc40ff16f601050af5b9eac56ba9c03e594e3a2df6017f850db21ae763ca9a730:log:95', 'hash': '0xc40ff16f601050af5b9eac56ba9c03e594e3a2df6017f850db21ae763ca9a730', 'from': '0x79aef4c3a7d0ef899f04a96f40ace2cd477c2405', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 10065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02219fef2d5832a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:06:14.000Z'}}, {'blockNum': '0x77b2ab', 'uniqueId': '0x88a480426b5964e931ccedb05fed3e20431a6cce834b35eb2bdcff9843e353fe:log:96', 'hash': '0x88a480426b5964e931ccedb05fed3e20431a6cce834b35eb2bdcff9843e353fe', 'from': '0x192368948a68adb223096ef883b68c0ba0a96424', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 14135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02fe4287d98f727c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:06:14.000Z'}}, {'blockNum': '0x77b2ab', 'uniqueId': '0xf413c11f1ed5803f9bc91ab660a58387e31dcfaa28ea2ca8960b4cbb5a886419:log:97', 'hash': '0xf413c11f1ed5803f9bc91ab660a58387e31dcfaa28ea2ca8960b4cbb5a886419', 'from': '0x32f8129decdf86be75d0cb93f63fd2f6c7f5996e', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 60035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb680fdb4f0102c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:06:14.000Z'}}, {'blockNum': '0x77b2ab', 'uniqueId': '0x2850265875e79caf95140e2de9cfcee1a2cc7e336f1b045ce399ec55ca14d6c6:log:98', 'hash': '0x2850265875e79caf95140e2de9cfcee1a2cc7e336f1b045ce399ec55ca14d6c6', 'from': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 138808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1d64cbf853b255e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:06:14.000Z'}}, {'blockNum': '0x77b2e8', 'uniqueId': '0x60196cd1719d100807ab22834a1e5215a046b8cbfef9cea58471b1c7e6f054a4:log:1', 'hash': '0x60196cd1719d100807ab22834a1e5215a046b8cbfef9cea58471b1c7e6f054a4', 'from': '0x57c178617c4a817f8b222224f87f66c174cdd10b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1544.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x53b8db016b09480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:19:07.000Z'}}, {'blockNum': '0x77b301', 'uniqueId': '0xb145276ce1c2959e7a5327c2a8653af0ad2035bf6019c642aeaf3e9fe180f022:log:11', 'hash': '0xb145276ce1c2959e7a5327c2a8653af0ad2035bf6019c642aeaf3e9fe180f022', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x5f1bb55017c3f9245dea36b4f8933a9544bdac1c', 'value': 38, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020f5b1eaad8d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:24:52.000Z'}}, {'blockNum': '0x77b39b', 'uniqueId': '0xcefae24e07e20c0c89125ba6406e92357cfcf7820fb21e34bbcf972f9a241db5:log:8', 'hash': '0xcefae24e07e20c0c89125ba6406e92357cfcf7820fb21e34bbcf972f9a241db5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5f1bb55017c3f9245dea36b4f8933a9544bdac1c', 'value': 13952.52486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02f45e2dec866acfc000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-27T23:57:17.000Z'}}, {'blockNum': '0x77b437', 'uniqueId': '0x3174d1d8b59fc1f423f7b36ee49d1807a47f745680d200cff71f1c3e8ecf9b14:log:7', 'hash': '0x3174d1d8b59fc1f423f7b36ee49d1807a47f745680d200cff71f1c3e8ecf9b14', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'value': 42241.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08f1f01ff2d2653e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T00:31:41.000Z'}}, {'blockNum': '0x77b437', 'uniqueId': '0x32d4f4a97fc9ac273f994808c58000742ceb65106b947024c82d6b2fe61065d8:log:9', 'hash': '0x32d4f4a97fc9ac273f994808c58000742ceb65106b947024c82d6b2fe61065d8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 58240.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c553eda187ca7da0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T00:31:41.000Z'}}, {'blockNum': '0x77b437', 'uniqueId': '0xd889ec4572f3b6f98d4e6100b1fc1da0b7bddcd6c7476db2114b46bc2c95ac81:log:10', 'hash': '0xd889ec4572f3b6f98d4e6100b1fc1da0b7bddcd6c7476db2114b46bc2c95ac81', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 32821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f33adfa6e3a7b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T00:31:41.000Z'}}, {'blockNum': '0x77b46e', 'uniqueId': '0xd975e7be91114f72591fd2803b28fd0b8c3fe8ecdf71e36d7619add0aa288752:log:16', 'hash': '0xd975e7be91114f72591fd2803b28fd0b8c3fe8ecdf71e36d7619add0aa288752', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 129518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b6d2f524039e2f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T00:41:42.000Z'}}, {'blockNum': '0x77b470', 'uniqueId': '0x569c99d745b4e6773e5fc51a9ce51e7840b88032b5774cfb6ce5b12e005547dd:log:90', 'hash': '0x569c99d745b4e6773e5fc51a9ce51e7840b88032b5774cfb6ce5b12e005547dd', 'from': '0x05646154e8eaf95cc489acd368ea068052471d19', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 58240.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c553eda187ca7da0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T00:42:48.000Z'}}, {'blockNum': '0x77b472', 'uniqueId': '0xa871ae6628f894e3f3b3520de6be351fb4d66cf63272ab842c7c7aa198403e07:log:25', 'hash': '0xa871ae6628f894e3f3b3520de6be351fb4d66cf63272ab842c7c7aa198403e07', 'from': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 32821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f33adfa6e3a7b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T00:43:54.000Z'}}, {'blockNum': '0x77b487', 'uniqueId': '0x81d9cb82adce208ba8cb622e09bd153f895323068c84b6ebe2fcfcc03f283de6:log:49', 'hash': '0x81d9cb82adce208ba8cb622e09bd153f895323068c84b6ebe2fcfcc03f283de6', 'from': '0xfaff054ad188c5f4efdca52971c6c46c180402a4', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 42241.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08f1f01ff2d2653e0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T00:49:49.000Z'}}, {'blockNum': '0x77b4af', 'uniqueId': '0xe536161bb89f82ceb77ddffdb6a2ddde64b3968949565d93fea6b0b8e58bbb59:log:17', 'hash': '0xe536161bb89f82ceb77ddffdb6a2ddde64b3968949565d93fea6b0b8e58bbb59', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 129518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1b6d2f524039e2f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T01:01:17.000Z'}}, {'blockNum': '0x77b4c4', 'uniqueId': '0x29ce3240e0fecc90fbc515e70c470e84136e1a4e8a980b1e6a2c8cba275c6e6d:log:1', 'hash': '0x29ce3240e0fecc90fbc515e70c470e84136e1a4e8a980b1e6a2c8cba275c6e6d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 19607.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0426f2468ae4b5d60000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T01:05:31.000Z'}}, {'blockNum': '0x77b501', 'uniqueId': '0x73e9975a13c974559b35877c777642b68addc9b27205d95d468f141a3803ec8e:log:91', 'hash': '0x73e9975a13c974559b35877c777642b68addc9b27205d95d468f141a3803ec8e', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 19607.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0426f2468ae4b5d60000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T01:20:01.000Z'}}, {'blockNum': '0x77b57e', 'uniqueId': '0x77f140f609189c622c553f0c70b7c29de8cce38bf71f72b54c92c122ac4f35b3:log:6', 'hash': '0x77f140f609189c622c553f0c70b7c29de8cce38bf71f72b54c92c122ac4f35b3', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x2ac2b6de74e00d6df52fa3df71e28b09d353f3d9', 'value': 31168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06999ee3f0dbcf000000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-05-28T01:51:56.000Z'}}]}}
Number of returned transfers:  100
Answer is complete
 
symbol            ARDR
group              CPI
date        2019-05-31
hour             17:00
exchange       binance
Name: 1011, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: ARDR, Contract: 
Datetime timestamps:  2019-05-31 17:00:00 2019-05-31 05:00:00 2019-06-01 05:00:00
Unix timestamps:  1559271600.0 1559358000.0
Hex Block Numbers:  0x7801a8 0x781af2
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SNM
group              CPI
date        2019-06-02
hour             21:00
exchange       binance
Name: 1012, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-06-02 21:00:00 2019-06-02 09:00:00 2019-06-03 09:00:00
Unix timestamps:  1559458800.0 1559545200.0
Hex Block Numbers:  0x78381c 0x7850d1
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            NEBL
group              CPI
date        2019-06-16
hour             21:00
exchange       binance
Name: 1013, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2019-06-16 21:00:00 2019-06-16 09:00:00 2019-06-17 09:00:00
Unix timestamps:  1560668400.0 1560754800.0
Hex Block Numbers:  0x799517 0x79ae68
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             REN
group              CPI
date        2019-06-19
hour             15:00
exchange       binance
Name: 1014, dtype: object
HERE
 Symbol: REN, Contract: 0x408e41876cccdc0f92210600ef50372656052a38
Datetime timestamps:  2019-06-19 15:00:00 2019-06-19 03:00:00 2019-06-20 03:00:00
Unix timestamps:  1560906000.0 1560992400.0
Hex Block Numbers:  0x79d9f0 0x79f2fe
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x79dae8', 'uniqueId': '0x6ce77f8a29a2318e5009304b8d3ccec4aebb04fe7af94a7b559ed296b9a2af82:log:0', 'hash': '0x6ce77f8a29a2318e5009304b8d3ccec4aebb04fe7af94a7b559ed296b9a2af82', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6c1844d1a3af4d8796a5a55b5d9d5a483db0f789', 'value': 3117.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0xa8fe014d8a409e0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T01:51:53.000Z'}}, {'blockNum': '0x79db15', 'uniqueId': '0xc45b5cf3d03e473d8305c89d10a20bcc8b0a638f1cb893132ca5c10bb5b38e43:log:33', 'hash': '0xc45b5cf3d03e473d8305c89d10a20bcc8b0a638f1cb893132ca5c10bb5b38e43', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6c14f95f0ca1afa9c0d525c4506f2ac5faadaf1f', 'value': 36102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x07a517e53b6800580000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T02:02:25.000Z'}}, {'blockNum': '0x79db1c', 'uniqueId': '0x6e1d8970cc047ab641f148f38ecade35c727aa2fedbf9dc84ca51b0efcf92519:log:12', 'hash': '0x6e1d8970cc047ab641f148f38ecade35c727aa2fedbf9dc84ca51b0efcf92519', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 22222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x04b4a8335ecc4a780000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T02:04:37.000Z'}}, {'blockNum': '0x79db9a', 'uniqueId': '0x7e91551d8f8a0d26fd665e3d85202a1ca23c1400435950f9de13d8d21358662a:log:17', 'hash': '0x7e91551d8f8a0d26fd665e3d85202a1ca23c1400435950f9de13d8d21358662a', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x04b4a8335ecc4a780000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T02:29:53.000Z'}}, {'blockNum': '0x79db9a', 'uniqueId': '0x831c05ede2015dd8e44e6a23899a9a26d14dbf5771a6989b9e484c362f554968:log:24', 'hash': '0x831c05ede2015dd8e44e6a23899a9a26d14dbf5771a6989b9e484c362f554968', 'from': '0x6c14f95f0ca1afa9c0d525c4506f2ac5faadaf1f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x07a517e53b6800580000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T02:29:53.000Z'}}, {'blockNum': '0x79dbf8', 'uniqueId': '0x66734d9f09ddef96cce4f36d9f36212f389cc7ae4db31e8b309676e285501ba8:log:18', 'hash': '0x66734d9f09ddef96cce4f36d9f36212f389cc7ae4db31e8b309676e285501ba8', 'from': '0x9f2021d4781c59eb3f3eee48632122e4a5e6a823', 'to': '0xb71311800afc8a5a3558c9e8e475cdf6219a80e9', 'value': 296664.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x3ed2385e6f95c59c0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T02:51:38.000Z'}}, {'blockNum': '0x79dd96', 'uniqueId': '0x5a6eb5a8e2478a991e7d88392df182d959682f005e06afcd8af74851302a1b5d:log:121', 'hash': '0x5a6eb5a8e2478a991e7d88392df182d959682f005e06afcd8af74851302a1b5d', 'from': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 25812.0300421559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x057745e035582da5d575', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:28:16.000Z'}}, {'blockNum': '0x79dd96', 'uniqueId': '0x5a6eb5a8e2478a991e7d88392df182d959682f005e06afcd8af74851302a1b5d:log:123', 'hash': '0x5a6eb5a8e2478a991e7d88392df182d959682f005e06afcd8af74851302a1b5d', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xbed4e3cd89918563a9ce4b04cf5379daf566bd53', 'value': 25812.0300421559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x057745e035582da5d575', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:28:16.000Z'}}, {'blockNum': '0x79dd98', 'uniqueId': '0x33cfe8c19c050696334410342179d33ba2dd904e24744b37879ab4008ff3e5b1:log:1', 'hash': '0x33cfe8c19c050696334410342179d33ba2dd904e24744b37879ab4008ff3e5b1', 'from': '0x43892992b0b102459e895b88601bb2c76736942c', 'to': '0x00000000af5a61acaf76190794e3fdf1289288a1', 'value': 1545.1938252400405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x53c3df3d449fa3c568', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:28:30.000Z'}}, {'blockNum': '0x79dd98', 'uniqueId': '0x33cfe8c19c050696334410342179d33ba2dd904e24744b37879ab4008ff3e5b1:log:3', 'hash': '0x33cfe8c19c050696334410342179d33ba2dd904e24744b37879ab4008ff3e5b1', 'from': '0x00000000af5a61acaf76190794e3fdf1289288a1', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1545.1938252400405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x53c3df3d449fa3c568', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:28:30.000Z'}}, {'blockNum': '0x79dd98', 'uniqueId': '0x33cfe8c19c050696334410342179d33ba2dd904e24744b37879ab4008ff3e5b1:log:4', 'hash': '0x33cfe8c19c050696334410342179d33ba2dd904e24744b37879ab4008ff3e5b1', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'value': 1545.1938252400405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x53c3df3d449fa3c568', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:28:30.000Z'}}, {'blockNum': '0x79dd9c', 'uniqueId': '0xd7fb1d7c3ab9babbb2c2e1323b1b04954a5b3592cee45e5e289b98ca93fa0365:log:59', 'hash': '0xd7fb1d7c3ab9babbb2c2e1323b1b04954a5b3592cee45e5e289b98ca93fa0365', 'from': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 314.86494441683567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x1111a0feb89c9a6880', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:28:58.000Z'}}, {'blockNum': '0x79dd9c', 'uniqueId': '0xd7fb1d7c3ab9babbb2c2e1323b1b04954a5b3592cee45e5e289b98ca93fa0365:log:61', 'hash': '0xd7fb1d7c3ab9babbb2c2e1323b1b04954a5b3592cee45e5e289b98ca93fa0365', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xcc913f2d908b73b8564e1be6d37857a0365ea7c1', 'value': 314.86494441683567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x1111a0feb89c9a6880', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:28:58.000Z'}}, {'blockNum': '0x79ddb1', 'uniqueId': '0xb031bfcadf591ad12b50cd1e60e6b56e60a6c392c1b413075d4561c52bb2c102:log:23', 'hash': '0xb031bfcadf591ad12b50cd1e60e6b56e60a6c392c1b413075d4561c52bb2c102', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x9c709cc95c3612fbdd2b257cc2131ac5db99f6db', 'value': 22282.2877766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x04b7ecdc943287937000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:33:42.000Z'}}, {'blockNum': '0x79ddb3', 'uniqueId': '0xa4bfeb99dbda69221b3f10de6c15145bfa1836650b237f61433a0c2dd7ed5c26:log:58', 'hash': '0xa4bfeb99dbda69221b3f10de6c15145bfa1836650b237f61433a0c2dd7ed5c26', 'from': '0x9c709cc95c3612fbdd2b257cc2131ac5db99f6db', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 22282.2877766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x04b7ecdc943287937000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:34:11.000Z'}}, {'blockNum': '0x79ddb3', 'uniqueId': '0xa4bfeb99dbda69221b3f10de6c15145bfa1836650b237f61433a0c2dd7ed5c26:log:59', 'hash': '0xa4bfeb99dbda69221b3f10de6c15145bfa1836650b237f61433a0c2dd7ed5c26', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'value': 22282.2877766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x04b7ecdc943287937000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T04:34:11.000Z'}}, {'blockNum': '0x79de5d', 'uniqueId': '0x3611c975090e98adf5146c4d223a266fa0cd1ba23d2ab288b63143f0688fd2cb:log:20', 'hash': '0x3611c975090e98adf5146c4d223a266fa0cd1ba23d2ab288b63143f0688fd2cb', 'from': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 791.7875405686241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x2aec426d13b5085a2a', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T05:13:54.000Z'}}, {'blockNum': '0x79de5d', 'uniqueId': '0x3611c975090e98adf5146c4d223a266fa0cd1ba23d2ab288b63143f0688fd2cb:log:22', 'hash': '0x3611c975090e98adf5146c4d223a266fa0cd1ba23d2ab288b63143f0688fd2cb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 791.7875405686241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x2aec426d13b5085a2a', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T05:13:54.000Z'}}, {'blockNum': '0x79de5d', 'uniqueId': '0x3611c975090e98adf5146c4d223a266fa0cd1ba23d2ab288b63143f0688fd2cb:log:27', 'hash': '0x3611c975090e98adf5146c4d223a266fa0cd1ba23d2ab288b63143f0688fd2cb', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x43892992b0b102459e895b88601bb2c76736942c', 'value': 791.7875405686241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x2aec426d13b5085a2a', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T05:13:54.000Z'}}, {'blockNum': '0x79de7f', 'uniqueId': '0x7283d14d850d5363e5524ee89fe25e704beb9dd0ed3a8fd58260d08e2333614a:log:11', 'hash': '0x7283d14d850d5363e5524ee89fe25e704beb9dd0ed3a8fd58260d08e2333614a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2d0d64d30282748fae1e22056ac32c8cfdbeff55', 'value': 35.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x01ecccdcdc261f0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T05:22:40.000Z'}}, {'blockNum': '0x79de9f', 'uniqueId': '0xfe8abfd381eddba32253d167b7e17f83bcc60ffbde4a8b7e6a2f19997a68aab3:log:12', 'hash': '0xfe8abfd381eddba32253d167b7e17f83bcc60ffbde4a8b7e6a2f19997a68aab3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2d0d64d30282748fae1e22056ac32c8cfdbeff55', 'value': 299966.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x3f8537934250ebab0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T05:30:42.000Z'}}, {'blockNum': '0x79dec1', 'uniqueId': '0xd4a6c8f27b3fd3eabb1e9e5d45b59f5fa753000151a9c3b2d982a22a54c5e8d5:log:14', 'hash': '0xd4a6c8f27b3fd3eabb1e9e5d45b59f5fa753000151a9c3b2d982a22a54c5e8d5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 637588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x8703b6f909ff6dd00000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T05:41:06.000Z'}}, {'blockNum': '0x79df59', 'uniqueId': '0x3a04dd693dec17074e120ac4af56f69f8b22a89e1d3d2b5417ddbc697ea30f8e:log:61', 'hash': '0x3a04dd693dec17074e120ac4af56f69f8b22a89e1d3d2b5417ddbc697ea30f8e', 'from': '0x09bad7284c92af5fd501c707522188ee2d5b2125', 'to': '0xbfdfad8b7375d24c4bb5e530d283b57c630dfbe6', 'value': 3362.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0xb645fad68196ab0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T06:11:00.000Z'}}, {'blockNum': '0x79e0ef', 'uniqueId': '0x59e827baa7e59b9ae73888d27be9b4b7441a5f5412bf44edc7733274158d2b8b:log:10', 'hash': '0x59e827baa7e59b9ae73888d27be9b4b7441a5f5412bf44edc7733274158d2b8b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbed4e3cd89918563a9ce4b04cf5379daf566bd53', 'value': 7582.664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x019b0e9a1d5306940000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T07:37:02.000Z'}}, {'blockNum': '0x79e321', 'uniqueId': '0xffa09cae9a712b8b71693bddaf0d29d445bfdfe409051f553a2fc9f215547ffb:log:55', 'hash': '0xffa09cae9a712b8b71693bddaf0d29d445bfdfe409051f553a2fc9f215547ffb', 'from': '0x06df0657ba5e8f5339e742212669f6e7ee3c5057', 'to': '0x34bd421c7948bc16f826fd99f9b785929b121633', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T09:45:28.000Z'}}, {'blockNum': '0x79e321', 'uniqueId': '0xffa09cae9a712b8b71693bddaf0d29d445bfdfe409051f553a2fc9f215547ffb:log:56', 'hash': '0xffa09cae9a712b8b71693bddaf0d29d445bfdfe409051f553a2fc9f215547ffb', 'from': '0x34bd421c7948bc16f826fd99f9b785929b121633', 'to': '0x5a16338faf7b1a078eab0a71934cd2668a417669', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T09:45:28.000Z'}}, {'blockNum': '0x79e4ef', 'uniqueId': '0xa545d74cb0f901e1a49bd16e97277bc131bb31af6150d3e75296dd70ef61aa43:log:60', 'hash': '0xa545d74cb0f901e1a49bd16e97277bc131bb31af6150d3e75296dd70ef61aa43', 'from': '0x2820ee44d44288a470516214e2caf2d4f6d1dc8d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1000.0016422422593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x3635cf83623120cf12', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T11:23:19.000Z'}}, {'blockNum': '0x79e4ef', 'uniqueId': '0xa545d74cb0f901e1a49bd16e97277bc131bb31af6150d3e75296dd70ef61aa43:log:61', 'hash': '0xa545d74cb0f901e1a49bd16e97277bc131bb31af6150d3e75296dd70ef61aa43', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'value': 1000.0016422422593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x3635cf83623120cf12', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T11:23:19.000Z'}}, {'blockNum': '0x79e6c9', 'uniqueId': '0x3933edce38731b3702f3f346af9bf064826f8672f86ed3e92d8ee0b9a110dcef:log:16', 'hash': '0x3933edce38731b3702f3f346af9bf064826f8672f86ed3e92d8ee0b9a110dcef', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc5f3a4b0635f65c574522e6a3fd8e57c7a348699', 'value': 8685.782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x01d6db7085c131ef0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T13:15:17.000Z'}}, {'blockNum': '0x79e712', 'uniqueId': '0x72bba6178116aa69fb16bd24df99d9349c0fd783f66e029dd30e5caab0f7bcf1:log:80', 'hash': '0x72bba6178116aa69fb16bd24df99d9349c0fd783f66e029dd30e5caab0f7bcf1', 'from': '0xbfdfad8b7375d24c4bb5e530d283b57c630dfbe6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3362.35, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0xb645fad68196ab0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T13:30:03.000Z'}}, {'blockNum': '0x79e733', 'uniqueId': '0xfff19131d6c35971d10bcb771c1f9b0e27c7d272c5ed82c9f8d922c5f9a59654:log:91', 'hash': '0xfff19131d6c35971d10bcb771c1f9b0e27c7d272c5ed82c9f8d922c5f9a59654', 'from': '0x06df0657ba5e8f5339e742212669f6e7ee3c5057', 'to': '0x34bd421c7948bc16f826fd99f9b785929b121633', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T13:37:14.000Z'}}, {'blockNum': '0x79e733', 'uniqueId': '0xfff19131d6c35971d10bcb771c1f9b0e27c7d272c5ed82c9f8d922c5f9a59654:log:92', 'hash': '0xfff19131d6c35971d10bcb771c1f9b0e27c7d272c5ed82c9f8d922c5f9a59654', 'from': '0x34bd421c7948bc16f826fd99f9b785929b121633', 'to': '0x0c3528a5c7364f3f2be0051a43b00e1dd67eb0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T13:37:14.000Z'}}, {'blockNum': '0x79e8a8', 'uniqueId': '0x5554bbff7c65b89bd22f048414c6c1477994d983822dcdaaa330bee1ea2adfc5:log:3', 'hash': '0x5554bbff7c65b89bd22f048414c6c1477994d983822dcdaaa330bee1ea2adfc5', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6c14f95f0ca1afa9c0d525c4506f2ac5faadaf1f', 'value': 30310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x066b1bbf9abcc9d80000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:02:14.000Z'}}, {'blockNum': '0x79e8ad', 'uniqueId': '0x78067e3fda842d003c5dfcd495d3bae382eb7b6f49fb759880145824881b3550:log:5', 'hash': '0x78067e3fda842d003c5dfcd495d3bae382eb7b6f49fb759880145824881b3550', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 21593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x04928f12776201c40000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:03:29.000Z'}}, {'blockNum': '0x79e8b5', 'uniqueId': '0x16fb137719c148b72e907dcbd1f477b2b806419ccdaacb79bd4071983f7678d6:log:45', 'hash': '0x16fb137719c148b72e907dcbd1f477b2b806419ccdaacb79bd4071983f7678d6', 'from': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 21434.24436201788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0489f3e523c2f2f1be70', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:05:09.000Z'}}, {'blockNum': '0x79e8b5', 'uniqueId': '0x16fb137719c148b72e907dcbd1f477b2b806419ccdaacb79bd4071983f7678d6:log:47', 'hash': '0x16fb137719c148b72e907dcbd1f477b2b806419ccdaacb79bd4071983f7678d6', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'value': 21434.24436201788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0489f3e523c2f2f1be70', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:05:09.000Z'}}, {'blockNum': '0x79e8bd', 'uniqueId': '0xa32cbc22346aa43e067d3ecff7cbaa104d0fd4c97d47905df1783c48d62b979e:log:28', 'hash': '0xa32cbc22346aa43e067d3ecff7cbaa104d0fd4c97d47905df1783c48d62b979e', 'from': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'to': '0xefa0477a47598f4d1442b771931d2db05e5d273c', 'value': 21434.24436201788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0489f3e523c2f2f1be70', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:06:58.000Z'}}, {'blockNum': '0x79e936', 'uniqueId': '0x021561eac46ed245b5d79cefde96c4a2cffc1ac01a9bad660529e510e848cf77:log:15', 'hash': '0x021561eac46ed245b5d79cefde96c4a2cffc1ac01a9bad660529e510e848cf77', 'from': '0x43892992b0b102459e895b88601bb2c76736942c', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 674.2473258094132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x248d0fb2821b228cce', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:30:44.000Z'}}, {'blockNum': '0x79e936', 'uniqueId': '0x021561eac46ed245b5d79cefde96c4a2cffc1ac01a9bad660529e510e848cf77:log:17', 'hash': '0x021561eac46ed245b5d79cefde96c4a2cffc1ac01a9bad660529e510e848cf77', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 674.2473258094132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x248d0fb2821b228cce', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:30:44.000Z'}}, {'blockNum': '0x79e936', 'uniqueId': '0x021561eac46ed245b5d79cefde96c4a2cffc1ac01a9bad660529e510e848cf77:log:18', 'hash': '0x021561eac46ed245b5d79cefde96c4a2cffc1ac01a9bad660529e510e848cf77', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'value': 674.2473258094132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x248d0fb2821b228cce', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:30:44.000Z'}}, {'blockNum': '0x79e944', 'uniqueId': '0x62bcb36da4365cb7be6c2619faa1c37d7648bf77d5ba671477e87023a67aabca:log:12', 'hash': '0x62bcb36da4365cb7be6c2619faa1c37d7648bf77d5ba671477e87023a67aabca', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'value': 21424.24436201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0489691e00bc93668400', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:33:24.000Z'}}, {'blockNum': '0x79e949', 'uniqueId': '0xee0c879f9cd7547486bcf718a28e2728e88790f6f033398ee399706da009c8dd:log:23', 'hash': '0xee0c879f9cd7547486bcf718a28e2728e88790f6f033398ee399706da009c8dd', 'from': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 21424.24436201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0489691e00bc93668400', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:35:16.000Z'}}, {'blockNum': '0x79e949', 'uniqueId': '0xee0c879f9cd7547486bcf718a28e2728e88790f6f033398ee399706da009c8dd:log:24', 'hash': '0xee0c879f9cd7547486bcf718a28e2728e88790f6f033398ee399706da009c8dd', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'value': 21424.24436201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0489691e00bc93668400', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:35:16.000Z'}}, {'blockNum': '0x79e94f', 'uniqueId': '0x71eef5e28939e0b48b3f52c7db269e493493d202b71114ff0d9711c5e568df01:log:5', 'hash': '0x71eef5e28939e0b48b3f52c7db269e493493d202b71114ff0d9711c5e568df01', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 7529.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0198323733eed61d0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:37:19.000Z'}}, {'blockNum': '0x79e955', 'uniqueId': '0x185863d2eac86c18c01c36c13dc0e1c9019e313a359e8310ef3ed445210fb164:log:122', 'hash': '0x185863d2eac86c18c01c36c13dc0e1c9019e313a359e8310ef3ed445210fb164', 'from': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 737.7752612190937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x27feb0432d8b1c7e25', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:38:23.000Z'}}, {'blockNum': '0x79e955', 'uniqueId': '0x185863d2eac86c18c01c36c13dc0e1c9019e313a359e8310ef3ed445210fb164:log:124', 'hash': '0x185863d2eac86c18c01c36c13dc0e1c9019e313a359e8310ef3ed445210fb164', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 737.7752612190937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x27feb0432d8b1c7e25', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:38:23.000Z'}}, {'blockNum': '0x79e955', 'uniqueId': '0x185863d2eac86c18c01c36c13dc0e1c9019e313a359e8310ef3ed445210fb164:log:129', 'hash': '0x185863d2eac86c18c01c36c13dc0e1c9019e313a359e8310ef3ed445210fb164', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x43892992b0b102459e895b88601bb2c76736942c', 'value': 737.7752612190937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x27feb0432d8b1c7e25', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:38:23.000Z'}}, {'blockNum': '0x79e956', 'uniqueId': '0x83810d48c498ba5db0acb7f5bec6a1b6ca4d0a013ad3021808065b26facbb6c2:log:1', 'hash': '0x83810d48c498ba5db0acb7f5bec6a1b6ca4d0a013ad3021808065b26facbb6c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa6b78c4ba0d648473876f89b1d2c91e99822edcd', 'value': 21033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x04743382ce63d7040000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:38:40.000Z'}}, {'blockNum': '0x79e95c', 'uniqueId': '0x1a34dd973ad51d12e38564bd035d92e1b62e0324abe283d73f21dd79844e21cc:log:53', 'hash': '0x1a34dd973ad51d12e38564bd035d92e1b62e0324abe283d73f21dd79844e21cc', 'from': '0x8f1953195b3ea5fbcbda85776bd11bccc9f206f5', 'to': '0x17adfe7180bd62d38b3fb26f2d7c014499a3a4c0', 'value': 780000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0xa52be27d76e24f800000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:39:50.000Z'}}, {'blockNum': '0x79e97e', 'uniqueId': '0x7b7fed41787466f97404671ace8909339301a0306d16b91e9d858a2bdca8df3f:log:21', 'hash': '0x7b7fed41787466f97404671ace8909339301a0306d16b91e9d858a2bdca8df3f', 'from': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 25699.815198835317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x05713094ffe2541651b1', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:46:31.000Z'}}, {'blockNum': '0x79e97e', 'uniqueId': '0x7b7fed41787466f97404671ace8909339301a0306d16b91e9d858a2bdca8df3f:log:23', 'hash': '0x7b7fed41787466f97404671ace8909339301a0306d16b91e9d858a2bdca8df3f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xbed4e3cd89918563a9ce4b04cf5379daf566bd53', 'value': 25699.815198835317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x05713094ffe2541651b1', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:46:31.000Z'}}, {'blockNum': '0x79e986', 'uniqueId': '0x434cbdb907a1241af5be04e2211725840e51feca625e60e94d45f7de94bac8df:log:63', 'hash': '0x434cbdb907a1241af5be04e2211725840e51feca625e60e94d45f7de94bac8df', 'from': '0x43892992b0b102459e895b88601bb2c76736942c', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 1236.2160946283234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x4303f1d44f95e7a702', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:50:00.000Z'}}, {'blockNum': '0x79e986', 'uniqueId': '0x434cbdb907a1241af5be04e2211725840e51feca625e60e94d45f7de94bac8df:log:65', 'hash': '0x434cbdb907a1241af5be04e2211725840e51feca625e60e94d45f7de94bac8df', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1236.2160946283234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x4303f1d44f95e7a702', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:50:00.000Z'}}, {'blockNum': '0x79e986', 'uniqueId': '0x434cbdb907a1241af5be04e2211725840e51feca625e60e94d45f7de94bac8df:log:66', 'hash': '0x434cbdb907a1241af5be04e2211725840e51feca625e60e94d45f7de94bac8df', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'value': 1236.2160946283234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x4303f1d44f95e7a702', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:50:00.000Z'}}, {'blockNum': '0x79e9a1', 'uniqueId': '0x00a06667012d4710cbb5c97df0dacb20325fcb9c20e66ec872bdc4a3c24897fd:log:12', 'hash': '0x00a06667012d4710cbb5c97df0dacb20325fcb9c20e66ec872bdc4a3c24897fd', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 7529.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0198323733eed61d0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:56:53.000Z'}}, {'blockNum': '0x79e9a1', 'uniqueId': '0x00a06667012d4710cbb5c97df0dacb20325fcb9c20e66ec872bdc4a3c24897fd:log:13', 'hash': '0x00a06667012d4710cbb5c97df0dacb20325fcb9c20e66ec872bdc4a3c24897fd', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'value': 7529.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0198323733eed61d0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T15:56:53.000Z'}}, {'blockNum': '0x79e9d5', 'uniqueId': '0xfc1cc55664cc84a0804f1a5d02d94a3aca11b9d9623c0850e4a1377f44e7b237:log:7', 'hash': '0xfc1cc55664cc84a0804f1a5d02d94a3aca11b9d9623c0850e4a1377f44e7b237', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa6b78c4ba0d648473876f89b1d2c91e99822edcd', 'value': 22571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x04c7938c71b77dcc0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T16:09:39.000Z'}}, {'blockNum': '0x79e9e8', 'uniqueId': '0x230171b1b9e3188d34c31d0f3ba87c97ef0d2eb188fdee93f92d42664e85bd1a:log:14', 'hash': '0x230171b1b9e3188d34c31d0f3ba87c97ef0d2eb188fdee93f92d42664e85bd1a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 15035.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x032f139e0b74317f0000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T16:14:09.000Z'}}, {'blockNum': '0x79ea1b', 'uniqueId': '0x4aca074aed293794ce03720c78fc1e17d5d6880d717f213e5b3891173687010b:log:53', 'hash': '0x4aca074aed293794ce03720c78fc1e17d5d6880d717f213e5b3891173687010b', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x04928f12776201c40000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T16:29:08.000Z'}}, {'blockNum': '0x79ec0f', 'uniqueId': '0x212af4fe446d9b0d741bdfc30cba9bec7dd9a355128fda10a42bf95676afbdc7:log:1', 'hash': '0x212af4fe446d9b0d741bdfc30cba9bec7dd9a355128fda10a42bf95676afbdc7', 'from': '0x17adfe7180bd62d38b3fb26f2d7c014499a3a4c0', 'to': '0xb57dc92edb1d6dc50b978958e706965d0d137fb6', 'value': 780000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0xa52be27d76e24f800000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T18:18:50.000Z'}}, {'blockNum': '0x79ecc8', 'uniqueId': '0x714b4d7d4166c4833e0436a899ab468ae31dbe24c90c001e661b33205892aa83:log:17', 'hash': '0x714b4d7d4166c4833e0436a899ab468ae31dbe24c90c001e661b33205892aa83', 'from': '0xb57dc92edb1d6dc50b978958e706965d0d137fb6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 780000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0xa52be27d76e24f800000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T18:59:57.000Z'}}, {'blockNum': '0x79ecd7', 'uniqueId': '0x6668d00a051998b2c9b9f666e00ee8525708c05a88ed544247dd73e016431b31:log:3', 'hash': '0x6668d00a051998b2c9b9f666e00ee8525708c05a88ed544247dd73e016431b31', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 5790.382487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0139e5b3112a4dec7000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T19:04:39.000Z'}}, {'blockNum': '0x79ecdc', 'uniqueId': '0xe6d4231c9523d67235f21e3b543a10d2be6f8a56cd9397bc0ff3cd0ce3bb7bed:log:92', 'hash': '0xe6d4231c9523d67235f21e3b543a10d2be6f8a56cd9397bc0ff3cd0ce3bb7bed', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5790.382487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0139e5b3112a4dec7000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T19:05:34.000Z'}}, {'blockNum': '0x79ecdc', 'uniqueId': '0xe6d4231c9523d67235f21e3b543a10d2be6f8a56cd9397bc0ff3cd0ce3bb7bed:log:93', 'hash': '0xe6d4231c9523d67235f21e3b543a10d2be6f8a56cd9397bc0ff3cd0ce3bb7bed', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'value': 5790.382487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x0139e5b3112a4dec7000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-19T19:05:34.000Z'}}, {'blockNum': '0x79f215', 'uniqueId': '0x6b7b35bc1a1c3da9da439046038341bb9e005ee3b6cad18fc8cc3b69c99d373f:log:36', 'hash': '0x6b7b35bc1a1c3da9da439046038341bb9e005ee3b6cad18fc8cc3b69c99d373f', 'from': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1068.3280923310479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x39ea07d3baf2d43b77', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-20T00:07:40.000Z'}}, {'blockNum': '0x79f215', 'uniqueId': '0x6b7b35bc1a1c3da9da439046038341bb9e005ee3b6cad18fc8cc3b69c99d373f:log:38', 'hash': '0x6b7b35bc1a1c3da9da439046038341bb9e005ee3b6cad18fc8cc3b69c99d373f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x2d96cd89fe532242f07a1060061e3374a7f62d98', 'value': 1068.3280923310479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x39ea07d3baf2d43b77', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-20T00:07:40.000Z'}}, {'blockNum': '0x79f218', 'uniqueId': '0x5bd318516640da150c04a279218519f8ad99a98a218bb6a8b2d938123db4264b:log:71', 'hash': '0x5bd318516640da150c04a279218519f8ad99a98a218bb6a8b2d938123db4264b', 'from': '0x45eb33d008801d547990caf3b63b4f8ae596ea57', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 9999.992300560525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x021e19c56f213f671cc2', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-20T00:09:02.000Z'}}, {'blockNum': '0x79f218', 'uniqueId': '0x5bd318516640da150c04a279218519f8ad99a98a218bb6a8b2d938123db4264b:log:73', 'hash': '0x5bd318516640da150c04a279218519f8ad99a98a218bb6a8b2d938123db4264b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x2d96cd89fe532242f07a1060061e3374a7f62d98', 'value': 9999.992300560525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x021e19c56f213f671cc2', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-20T00:09:02.000Z'}}, {'blockNum': '0x79f276', 'uniqueId': '0x7d6ff9ad6c34f3df68e25578fb66d900ad92131c1a2e53f217a4660ca58821b1:log:32', 'hash': '0x7d6ff9ad6c34f3df68e25578fb66d900ad92131c1a2e53f217a4660ca58821b1', 'from': '0x06df0657ba5e8f5339e742212669f6e7ee3c5057', 'to': '0x34bd421c7948bc16f826fd99f9b785929b121633', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-20T00:29:47.000Z'}}, {'blockNum': '0x79f276', 'uniqueId': '0x7d6ff9ad6c34f3df68e25578fb66d900ad92131c1a2e53f217a4660ca58821b1:log:33', 'hash': '0x7d6ff9ad6c34f3df68e25578fb66d900ad92131c1a2e53f217a4660ca58821b1', 'from': '0x34bd421c7948bc16f826fd99f9b785929b121633', 'to': '0x1d419c35db08d8bee2328e70251ec8766a11d71a', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'REN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x408e41876cccdc0f92210600ef50372656052a38', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-20T00:29:47.000Z'}}]}}
Number of returned transfers:  70
Answer is complete
 
symbol             NAV
group              CPI
date        2019-06-24
hour             17:00
exchange       binance
Name: 1015, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-06-24 17:00:00 2019-06-24 05:00:00 2019-06-25 05:00:00
Unix timestamps:  1561345200.0 1561431600.0
Hex Block Numbers:  0x7a591e 0x7a722b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             DNT
group              CPI
date        2019-06-26
hour             17:00
exchange       binance
Name: 1016, dtype: object
HERE
{'binance-smart-chain': '0x2456493e757fdeedf569781f053998a72adfad03'}
No contract for ethereum specified
{'binance-smart-chain': '0x44836708ff32246635d8d08c785f4e779e294598'}
No contract for ethereum specified
 Symbol: DNT, Contract: 0x0abdace70d3790235af448c88547603b945604ea
Datetime timestamps:  2019-06-26 17:00:00 2019-06-26 05:00:00 2019-06-27 05:00:00
Unix timestamps:  1561518000.0 1561604400.0
Hex Block Numbers:  0x7a8b5b 0x7aa45f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7a8b71', 'uniqueId': '0x26fe3a492617a1c575a720b71e6ae5a5b149e882c3092b4857139d9350d6b04f:log:68', 'hash': '0x26fe3a492617a1c575a720b71e6ae5a5b149e882c3092b4857139d9350d6b04f', 'from': '0xcacd7805bc493f090b5a2d27802b4db108f30ff0', 'to': '0x928be2794e2119111aec1e88fb48fa7daadb54c6', 'value': 807.15309945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2bc17fdb7828cac400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T03:08:35.000Z'}}, {'blockNum': '0x7a8bb1', 'uniqueId': '0x436548c4b1c90ff3f86fac6d308e39880c587cbdeebdf0a32e9480c444c5d23d:log:61', 'hash': '0x436548c4b1c90ff3f86fac6d308e39880c587cbdeebdf0a32e9480c444c5d23d', 'from': '0x076accb7d4074da4b967373e64ef6e291c02041c', 'to': '0xda6b29b1b542d57b028342b3b40363ab925e725a', 'value': 20000.807095690605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c3ef4f4b686b62213', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T03:22:28.000Z'}}, {'blockNum': '0x7a8c2a', 'uniqueId': '0x5e7fb5e0a5cf7b3e1721832363bd1634978ff4c6375dcf9340df22de5fc1f8b9:log:6', 'hash': '0x5e7fb5e0a5cf7b3e1721832363bd1634978ff4c6375dcf9340df22de5fc1f8b9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'value': 1014.87412587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3704353071f86c4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T03:46:16.000Z'}}, {'blockNum': '0x7a8c34', 'uniqueId': '0x7acfe278376115f4ba5940495adec6d35ef182d8770c856d8bc0a0875a7f6dbf:log:7', 'hash': '0x7acfe278376115f4ba5940495adec6d35ef182d8770c856d8bc0a0875a7f6dbf', 'from': '0x5e21dced695bfec67704a316ec78732063555a1f', 'to': '0x630bf89cb38979e31389787374afb7b2a6a368b6', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T03:49:01.000Z'}}, {'blockNum': '0x7a8c6f', 'uniqueId': '0xf897a217d395fda46fffd95828bde1c48f51d77e4e797eebc86e5468c2f93142:log:71', 'hash': '0xf897a217d395fda46fffd95828bde1c48f51d77e4e797eebc86e5468c2f93142', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0xf9415d25245cad9ccf62e2eb22a92437007f751c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T04:02:18.000Z'}}, {'blockNum': '0x7a8c76', 'uniqueId': '0xb2c1e8d28290df1724b03ba179e48946474642efd8ef518fb3b459261cdfa250:log:71', 'hash': '0xb2c1e8d28290df1724b03ba179e48946474642efd8ef518fb3b459261cdfa250', 'from': '0x94fe3ad91dacba8ec4b82f56ff7c122181f1535d', 'to': '0x0b9855f0a3f77a7f69a98fbe5ac653e729f45a9a', 'value': 1014.87412587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3704353071f86c4c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T04:03:21.000Z'}}, {'blockNum': '0x7a8c8f', 'uniqueId': '0xb29b84fe50bdd6184bedd71d0a056f7f7f0b884d6c0f75e9831f1639b31b312b:log:126', 'hash': '0xb29b84fe50bdd6184bedd71d0a056f7f7f0b884d6c0f75e9831f1639b31b312b', 'from': '0x05f51aab068caa6ab7eeb672f88c180f67f17ec7', 'to': '0xdaa55138d5121f2043c70b17a254cdc1c85b1e56', 'value': 6659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0168fc30631b1e2c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T04:08:35.000Z'}}, {'blockNum': '0x7a8ca8', 'uniqueId': '0x293cbba2418f2703a12bba3593a02ec69de07fb47c875fbacbe38c3364be8b5c:log:154', 'hash': '0x293cbba2418f2703a12bba3593a02ec69de07fb47c875fbacbe38c3364be8b5c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45d429ec34249a0ef7c9a0e798752b8aafe84ea5', 'value': 498004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6974d9d6e5b9b0d00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T04:14:10.000Z'}}, {'blockNum': '0x7a8d1f', 'uniqueId': '0xba9d4a9270da5cec534362c714643be961dc130aca132e95182292c73402907e:log:81', 'hash': '0xba9d4a9270da5cec534362c714643be961dc130aca132e95182292c73402907e', 'from': '0x601028dfc962cff512cf65016f6cd5fe29681e6a', 'to': '0x8aa6a8f9789cef5ffc81e96c6cef35c60e148816', 'value': 1088.53322907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3b026ee48afe430c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T04:38:54.000Z'}}, {'blockNum': '0x7a8d25', 'uniqueId': '0xbd3f11f3c887e2128f26bf20d4762ffb61831d954a8cd509cb01594edf23f7d0:log:15', 'hash': '0xbd3f11f3c887e2128f26bf20d4762ffb61831d954a8cd509cb01594edf23f7d0', 'from': '0x8aa6a8f9789cef5ffc81e96c6cef35c60e148816', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 1088.53322907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3b026ee48afe430c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T04:40:22.000Z'}}, {'blockNum': '0x7a8d3b', 'uniqueId': '0x6bbc35ff3c622ea0f326579d7a6510677f3eaf2fd13771ef11bf226c3598f41a:log:18', 'hash': '0x6bbc35ff3c622ea0f326579d7a6510677f3eaf2fd13771ef11bf226c3598f41a', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1088.53322907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3b026ee48afe430c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T04:45:20.000Z'}}, {'blockNum': '0x7a8d82', 'uniqueId': '0x49c88065bca911c31d3f3823cf06a77ea8dfa1aff7dd991709405eb25c63d555:log:18', 'hash': '0x49c88065bca911c31d3f3823cf06a77ea8dfa1aff7dd991709405eb25c63d555', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45d429ec34249a0ef7c9a0e798752b8aafe84ea5', 'value': 586377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7c2b8f94d5811c840000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:02:17.000Z'}}, {'blockNum': '0x7a8dcf', 'uniqueId': '0xf8efc15ea245883653e918443f7bc6c024343fac3c79e464c362a1d72d6c059e:log:37', 'hash': '0xf8efc15ea245883653e918443f7bc6c024343fac3c79e464c362a1d72d6c059e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1b1c472ae6d41ece7b81ffaa4923eaa0ea06888d', 'value': 61555.268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0d08eaf2a03671ba0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:18:49.000Z'}}, {'blockNum': '0x7a8dd1', 'uniqueId': '0x4c89406bf6b34de0e5a23cc8cd921700d05a9a9e86d4d237fa926fa938c58639:log:57', 'hash': '0x4c89406bf6b34de0e5a23cc8cd921700d05a9a9e86d4d237fa926fa938c58639', 'from': '0xda2c0b6cbb5eccb7cf6fc787c247d246b356628b', 'to': '0x2b8147dc78725111aafe346602652bf4c6fbaafc', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:19:09.000Z'}}, {'blockNum': '0x7a8ddb', 'uniqueId': '0xafbdd24347df7e77f8bbd834ddc9af9cb5cb83a07bd0e2aaed44cc1151a8f4e4:log:106', 'hash': '0xafbdd24347df7e77f8bbd834ddc9af9cb5cb83a07bd0e2aaed44cc1151a8f4e4', 'from': '0x2b8147dc78725111aafe346602652bf4c6fbaafc', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:20:57.000Z'}}, {'blockNum': '0x7a8deb', 'uniqueId': '0xee96505421d5fadd803891ee00fa462c45bfcf072c129de920234b3324adbd07:log:71', 'hash': '0xee96505421d5fadd803891ee00fa462c45bfcf072c129de920234b3324adbd07', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:23:31.000Z'}}, {'blockNum': '0x7a8e70', 'uniqueId': '0x105d4a737966e57d658a254a26c4f6dd6e78c86db10517c47da4d27784054d3d:log:49', 'hash': '0x105d4a737966e57d658a254a26c4f6dd6e78c86db10517c47da4d27784054d3d', 'from': '0x62a2512d5872f6556b6a126f7bc034399bb54b9e', 'to': '0xec2f747283644383b1d6d16a790ac7ffb5375592', 'value': 833145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb06ce185ec9b36440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:50:00.000Z'}}, {'blockNum': '0x7a8e89', 'uniqueId': '0x49295c7b5ff9268772677d87f57562a66406711f9b68303cb2118db7906767fa:log:13', 'hash': '0x49295c7b5ff9268772677d87f57562a66406711f9b68303cb2118db7906767fa', 'from': '0xec2f747283644383b1d6d16a790ac7ffb5375592', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 833380.45034243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb079a50d9393b67fac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:54:00.000Z'}}, {'blockNum': '0x7a8e8f', 'uniqueId': '0xa0989fa0450211b43668791830e2a1a009f6bb27d0e5a6ac2c8bf62b5749cc3b:log:50', 'hash': '0xa0989fa0450211b43668791830e2a1a009f6bb27d0e5a6ac2c8bf62b5749cc3b', 'from': '0x031cdd9e6018d62402a49af17ca02b137728c148', 'to': '0x091a34caec677798fd236dda52b5d6f0b1c16f99', 'value': 7306.58878799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x018c1749eeb5dbdf5c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:54:56.000Z'}}, {'blockNum': '0x7a8e97', 'uniqueId': '0x5a80def65e4e1dbf3cbbb6af752886110533c13af6870d3683822405caadc1ec:log:63', 'hash': '0x5a80def65e4e1dbf3cbbb6af752886110533c13af6870d3683822405caadc1ec', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45d429ec34249a0ef7c9a0e798752b8aafe84ea5', 'value': 592370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7d707129e93ac0880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:56:50.000Z'}}, {'blockNum': '0x7a8e97', 'uniqueId': '0xe89a44ba80fd69f11d375f42fbe3c4bb0c0b826bd6524e044c1885bca2f27bae:log:71', 'hash': '0xe89a44ba80fd69f11d375f42fbe3c4bb0c0b826bd6524e044c1885bca2f27bae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5119f893ad75e444f533797adef0da61838c7e15', 'value': 3385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb7804fcd8059440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:56:50.000Z'}}, {'blockNum': '0x7a8e9b', 'uniqueId': '0xba1e53525da0da0efa7733f03a96a9119801d9f5729b91560b04e3119c45c88c:log:30', 'hash': '0xba1e53525da0da0efa7733f03a96a9119801d9f5729b91560b04e3119c45c88c', 'from': '0x091a34caec677798fd236dda52b5d6f0b1c16f99', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 7306.58878799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x018c1749eeb5dbdf5c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T05:58:12.000Z'}}, {'blockNum': '0x7a8ead', 'uniqueId': '0x43f8d0d10206d86d93b67322c8214d0e30a45d9756aa914075e329cee637cf8c:log:55', 'hash': '0x43f8d0d10206d86d93b67322c8214d0e30a45d9756aa914075e329cee637cf8c', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 7306.58878799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x018c1749eeb5dbdf5c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T06:00:36.000Z'}}, {'blockNum': '0x7a8eb1', 'uniqueId': '0xef7c49702c46e9b8161e488761c37f05fce4f367225a467f89cabba2079322fd:log:12', 'hash': '0xef7c49702c46e9b8161e488761c37f05fce4f367225a467f89cabba2079322fd', 'from': '0x5119f893ad75e444f533797adef0da61838c7e15', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 3385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb7804fcd8059440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T06:01:05.000Z'}}, {'blockNum': '0x7a8ed4', 'uniqueId': '0x186ffc9f7aca7a8db4d7c98c73086c028bf89aa694d9381104b958ea204ff81b:log:15', 'hash': '0x186ffc9f7aca7a8db4d7c98c73086c028bf89aa694d9381104b958ea204ff81b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'value': 102965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x15cdbe6bf00cafb40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T06:07:52.000Z'}}, {'blockNum': '0x7a8ee5', 'uniqueId': '0x96bd37990560e3060ac97c6d15b3458857fcd7ddf3f75bf29823b9bb20ac5795:log:55', 'hash': '0x96bd37990560e3060ac97c6d15b3458857fcd7ddf3f75bf29823b9bb20ac5795', 'from': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 102965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x15cdbe6bf00cafb40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T06:13:49.000Z'}}, {'blockNum': '0x7a8f0d', 'uniqueId': '0x67e50ed9fe8e77cec83b545c75d9301a77d3a17482e1d037c06e0c8bd2d13641:log:25', 'hash': '0x67e50ed9fe8e77cec83b545c75d9301a77d3a17482e1d037c06e0c8bd2d13641', 'from': '0x553ec3120c60e5c649c23e5ee486cc8628cac872', 'to': '0x5856b4a2d6e5b748bc852ff5e86bc8bb7ca2b3fc', 'value': 4350.12335032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xebd216bb2cbbbfe000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T06:22:58.000Z'}}, {'blockNum': '0x7a8f24', 'uniqueId': '0x7f0789e91b14a0bcd3fa871f0176f4a3ac2b857d674d9baed25505d0f8f02f48:log:26', 'hash': '0x7f0789e91b14a0bcd3fa871f0176f4a3ac2b857d674d9baed25505d0f8f02f48', 'from': '0x5856b4a2d6e5b748bc852ff5e86bc8bb7ca2b3fc', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4350.12335032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xebd216bb2cbbbfe000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T06:26:08.000Z'}}, {'blockNum': '0x7a8f6c', 'uniqueId': '0x9a26ff1ffa23b57360744523fa3a2eb987d3476c1342d075996c4aec8e285f5f:log:21', 'hash': '0x9a26ff1ffa23b57360744523fa3a2eb987d3476c1342d075996c4aec8e285f5f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1c547038482c44fe8effe78020fb73af9a87fd6a', 'value': 884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2febf6e45e05500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T06:43:05.000Z'}}, {'blockNum': '0x7a8fc8', 'uniqueId': '0x6f7ffa22738a371ca7cbb648a07a31b380cfe17fe590cde385a3f8442788358e:log:5', 'hash': '0x6f7ffa22738a371ca7cbb648a07a31b380cfe17fe590cde385a3f8442788358e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45d429ec34249a0ef7c9a0e798752b8aafe84ea5', 'value': 529084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7009b37c08d3f5700000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T07:06:21.000Z'}}, {'blockNum': '0x7a907f', 'uniqueId': '0x7ea1aa90b81957b2f0d50dc34135fe61c0e7d27031555e10cbc7688bb90bddc1:log:51', 'hash': '0x7ea1aa90b81957b2f0d50dc34135fe61c0e7d27031555e10cbc7688bb90bddc1', 'from': '0x2d14f236d640157e133b92c955051de1284ecd01', 'to': '0x60e5a84fcd707feb5f7e082a2f58fb89892fecea', 'value': 3772.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xcc809114f7db980000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T07:51:51.000Z'}}, {'blockNum': '0x7a90a4', 'uniqueId': '0x64254a949bc80ec3623e3790fb10625ad4cb3c70e0ec172c00f83dd80479c93f:log:48', 'hash': '0x64254a949bc80ec3623e3790fb10625ad4cb3c70e0ec172c00f83dd80479c93f', 'from': '0xa3d6600ca6464ad7f07d9a90be8da1171ac83b84', 'to': '0x78c55dbeb5a5ebe842d62cfa1b21c264cb0132c2', 'value': 20450.545732436658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0454a05590041fbf1345', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:01:44.000Z'}}, {'blockNum': '0x7a90b2', 'uniqueId': '0x0b82ea56aca11a2f6e28101b21619bc227a9a895b0e0565c357739f112b95f83:log:3', 'hash': '0x0b82ea56aca11a2f6e28101b21619bc227a9a895b0e0565c357739f112b95f83', 'from': '0x27602f603305755363a6050008ab9da879ba40cc', 'to': '0xd202f3af6221d512929fca582e570cc824fd941a', 'value': 52417.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b198cf1aaf2066e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:04:02.000Z'}}, {'blockNum': '0x7a90bc', 'uniqueId': '0x0f89e799f65c351641abf5c114a8f2372e43003b537bb76687de2f7dcd0d50c0:log:10', 'hash': '0x0f89e799f65c351641abf5c114a8f2372e43003b537bb76687de2f7dcd0d50c0', 'from': '0x17f89f3497e3cebafb2b67e31be20cdcec4ac452', 'to': '0xd10454bfd602ed43e74cbcd80b53aa042398fb8e', 'value': 12174.329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0293f8c12b23f8928000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:06:25.000Z'}}, {'blockNum': '0x7a90db', 'uniqueId': '0xdea02a43a6cfb012e163ae5778ef7b5637116a5b5319158e119def4f483a0259:log:31', 'hash': '0xdea02a43a6cfb012e163ae5778ef7b5637116a5b5319158e119def4f483a0259', 'from': '0x19f25a7eb1977c5ae6d389cf90c0e4aad404b6c6', 'to': '0x058694e35647a2252e8f54154cea61247afe2bf4', 'value': 6171.7363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x014e920bf996f3aac000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:13:21.000Z'}}, {'blockNum': '0x7a90e0', 'uniqueId': '0xe620a83a8d1ae8bd51a56e503701af18825fa6fcf0e97d00ab97ffaf4720e7e3:log:23', 'hash': '0xe620a83a8d1ae8bd51a56e503701af18825fa6fcf0e97d00ab97ffaf4720e7e3', 'from': '0xd202f3af6221d512929fca582e570cc824fd941a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52417.356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0b198cf1aaf2066e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:14:03.000Z'}}, {'blockNum': '0x7a90e0', 'uniqueId': '0x3e1f70f5cca7562c79bebaac8e794a04a440c4adda6813da5b5ec0cb3a5378d6:log:26', 'hash': '0x3e1f70f5cca7562c79bebaac8e794a04a440c4adda6813da5b5ec0cb3a5378d6', 'from': '0x78c55dbeb5a5ebe842d62cfa1b21c264cb0132c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20450.545732436658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0454a05590041fbf1345', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:14:03.000Z'}}, {'blockNum': '0x7a90fa', 'uniqueId': '0x85940cf7cf591c27ec89104a9009a2acff6740d02376147fd4e8be6710925432:log:7', 'hash': '0x85940cf7cf591c27ec89104a9009a2acff6740d02376147fd4e8be6710925432', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1757.80935251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5f4a8154d5b1f2ec00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:19:04.000Z'}}, {'blockNum': '0x7a90ff', 'uniqueId': '0x8f8d0298cf61dcf5c52589f7f0e2cc51ede4a56696e2fc343da01638f67e5826:log:124', 'hash': '0x8f8d0298cf61dcf5c52589f7f0e2cc51ede4a56696e2fc343da01638f67e5826', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x77c6e3eb75a713dd8ebd1efaabe05132d88a1b72', 'value': 1757.80935251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5f4a8154d5b1f2ec00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:20:01.000Z'}}, {'blockNum': '0x7a910e', 'uniqueId': '0x5becd011aa4e6470ec493483288b06da01382a8eec118df806cafb9617a357b8:log:56', 'hash': '0x5becd011aa4e6470ec493483288b06da01382a8eec118df806cafb9617a357b8', 'from': '0xd10454bfd602ed43e74cbcd80b53aa042398fb8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12174.329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0293f8c12b23f8928000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:24:12.000Z'}}, {'blockNum': '0x7a910e', 'uniqueId': '0xfbf2cbdb12a279a229cafc72d726090c383c598c72b20572e6e1c8e635a9e22f:log:96', 'hash': '0xfbf2cbdb12a279a229cafc72d726090c383c598c72b20572e6e1c8e635a9e22f', 'from': '0x77c6e3eb75a713dd8ebd1efaabe05132d88a1b72', 'to': '0xc71585c0d42f9144863e4735217f98e9017e2831', 'value': 2876.90741635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9bf51c54a95c900000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:24:12.000Z'}}, {'blockNum': '0x7a911a', 'uniqueId': '0x4084a6899e9ef57f4b7495ab8ea4682d502df3c099460e26c9d9910f0e4df3a2:log:60', 'hash': '0x4084a6899e9ef57f4b7495ab8ea4682d502df3c099460e26c9d9910f0e4df3a2', 'from': '0xc71585c0d42f9144863e4735217f98e9017e2831', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2876.90741634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9bf51c54a70885c800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:25:49.000Z'}}, {'blockNum': '0x7a9151', 'uniqueId': '0x22d31e6cd4f3805c6ec17e97167f73daacc8a016cd0d636ef6100b6d4dd08d27:log:1', 'hash': '0x22d31e6cd4f3805c6ec17e97167f73daacc8a016cd0d636ef6100b6d4dd08d27', 'from': '0x1679d284af05a02bbe6f0570ec323236f0d600ec', 'to': '0x133c247bec52c6dd92e5b2c3be4102119b152373', 'value': 367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x13e525eb8cf85c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:39:07.000Z'}}, {'blockNum': '0x7a918f', 'uniqueId': '0xe968259abd5b5f7fefdbbb88af6ec58ad1365b477b368146d7f10fc6c1023d1f:log:17', 'hash': '0xe968259abd5b5f7fefdbbb88af6ec58ad1365b477b368146d7f10fc6c1023d1f', 'from': '0x1679d284af05a02bbe6f0570ec323236f0d600ec', 'to': '0x133c247bec52c6dd92e5b2c3be4102119b152373', 'value': 1233, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x42d74ff74938a40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:53:49.000Z'}}, {'blockNum': '0x7a91a0', 'uniqueId': '0xf9bee6293b0f104c8035e5067a9395aeeafa7cf9c8f5f50ef1147393edb2cf41:log:78', 'hash': '0xf9bee6293b0f104c8035e5067a9395aeeafa7cf9c8f5f50ef1147393edb2cf41', 'from': '0x7a0f6524b0cba9f7a8c76848fba9105aa40b36aa', 'to': '0x72418ba9380bdb3936c2a5512534989087eb4380', 'value': 10937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0250e55d814a5f440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:57:25.000Z'}}, {'blockNum': '0x7a91a2', 'uniqueId': '0x6213ae37e534f72b644b8facbdc55fe12f2befb25974b80dc140e74b2233ea9f:log:41', 'hash': '0x6213ae37e534f72b644b8facbdc55fe12f2befb25974b80dc140e74b2233ea9f', 'from': '0x72418ba9380bdb3936c2a5512534989087eb4380', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 10937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0250e55d814a5f440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T08:58:06.000Z'}}, {'blockNum': '0x7a91bc', 'uniqueId': '0x2a24a1125135f2617e7782204b1a5c514cf65bff7af668e6d5cc102a5b525101:log:36', 'hash': '0x2a24a1125135f2617e7782204b1a5c514cf65bff7af668e6d5cc102a5b525101', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0250e55d814a5f440000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T09:02:28.000Z'}}, {'blockNum': '0x7a91c8', 'uniqueId': '0xec47c9d637c389906ca67e5e438bdb2c34260e27d34d0ed30c1f2a2443e35ecb:log:19', 'hash': '0xec47c9d637c389906ca67e5e438bdb2c34260e27d34d0ed30c1f2a2443e35ecb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1c80ab3a462b13d928ac1784c0959da19a7acc76', 'value': 74119.598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0fb2080dae8a116b0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T09:06:27.000Z'}}, {'blockNum': '0x7a9386', 'uniqueId': '0x37b77f6de319b74ce014804261b2251c6147fab0be548874c79aeda0f03024e9:log:85', 'hash': '0x37b77f6de319b74ce014804261b2251c6147fab0be548874c79aeda0f03024e9', 'from': '0x1d34b27b2cf511d1e15bdb59c90d33d278ea0e15', 'to': '0x85ff48c392ea73a248b3c9b5079a006548dd3500', 'value': 30300.04749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x066a91a12f9f84522000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T10:50:46.000Z'}}, {'blockNum': '0x7a94d8', 'uniqueId': '0xbcac8dd1d961af3c37792d5326f2a188e40b0edeb3ac1e9a733469d4aba22211:log:33', 'hash': '0xbcac8dd1d961af3c37792d5326f2a188e40b0edeb3ac1e9a733469d4aba22211', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 111803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17acda4f6e51960c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T12:08:09.000Z'}}, {'blockNum': '0x7a94f1', 'uniqueId': '0x81798dec7abbdf954ec12793093ef22d0fee779a0134db81178c7d6291a13675:log:18', 'hash': '0x81798dec7abbdf954ec12793093ef22d0fee779a0134db81178c7d6291a13675', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 111803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17acda4f6e51960c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T12:14:01.000Z'}}, {'blockNum': '0x7a9505', 'uniqueId': '0x687a7cc205cc5cb464e399e7ccf8127fb6a2c1c5b33912b5a4c36edd45a74e6d:log:13', 'hash': '0x687a7cc205cc5cb464e399e7ccf8127fb6a2c1c5b33912b5a4c36edd45a74e6d', 'from': '0x40613a09b22f552aa41a47e8b6a64560a79fbfd6', 'to': '0x6ec2fcfc9b4d98e8ce9b3f53cf0bcd515a28fc91', 'value': 1380, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4acf58e07257100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T12:17:26.000Z'}}, {'blockNum': '0x7a9512', 'uniqueId': '0xb298f765b61c9ab35a9e0d3245924a577794744ef7cb2f2504a02428bb4b75ec:log:126', 'hash': '0xb298f765b61c9ab35a9e0d3245924a577794744ef7cb2f2504a02428bb4b75ec', 'from': '0x8ab0c703d8bcb44e69fd4d748eb03c95eb4f77cf', 'to': '0x0452fe2570c3b5b85d7cfd03f74f749e8707114d', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T12:20:17.000Z'}}, {'blockNum': '0x7a951c', 'uniqueId': '0x291ea4777e7d8776ada88817ea4f7c075039ac6c3b58f6589e461f9214c9d362:log:124', 'hash': '0x291ea4777e7d8776ada88817ea4f7c075039ac6c3b58f6589e461f9214c9d362', 'from': '0x0452fe2570c3b5b85d7cfd03f74f749e8707114d', 'to': '0x75dbd9b2cf7615e9b063491eaf10916b18f70c2d', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T12:22:53.000Z'}}, {'blockNum': '0x7a9547', 'uniqueId': '0xd4a9122abc11b476b34cd06f85a927df79898d1e4261bf22df55129998b9887c:log:35', 'hash': '0xd4a9122abc11b476b34cd06f85a927df79898d1e4261bf22df55129998b9887c', 'from': '0x75dbd9b2cf7615e9b063491eaf10916b18f70c2d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37009.928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07d64fed74ff5f340000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T12:34:04.000Z'}}, {'blockNum': '0x7a954f', 'uniqueId': '0x53cc81d25a98d99e5f9838ba1773e7e3ddc2d527599f2e930c4331f239d8b4a8:log:27', 'hash': '0x53cc81d25a98d99e5f9838ba1773e7e3ddc2d527599f2e930c4331f239d8b4a8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6eb27ed4f3cca4d9e2a760eec060a40185570ea3', 'value': 8535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01ceaeeb3fa1c6fc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T12:35:18.000Z'}}, {'blockNum': '0x7a9553', 'uniqueId': '0xf913d3b38622011b7ee8db89e6e3d422f0184c315a452a92914c3a195d174a4b:log:87', 'hash': '0xf913d3b38622011b7ee8db89e6e3d422f0184c315a452a92914c3a195d174a4b', 'from': '0x07b6c988e29fdbae19cbad95e9740a6c365a4d34', 'to': '0x9fa37842e63b1c9da854b503d9b3f7efcd8f7cb8', 'value': 400.37994051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x15b4634a970a94ac00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T12:36:20.000Z'}}, {'blockNum': '0x7a961e', 'uniqueId': '0xe44039cb01fa32a7ad3639279f70417ec7018a57bdee6d1cc0cc7015b31ced1b:log:12', 'hash': '0xe44039cb01fa32a7ad3639279f70417ec7018a57bdee6d1cc0cc7015b31ced1b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x86639f9228240a3cde5594c1ccba0c46b3ab1fe9', 'value': 4124.294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xdf9413b58dcae70000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T13:20:25.000Z'}}, {'blockNum': '0x7a9646', 'uniqueId': '0x5bf928ce09f418472df1cf6b316ea2f1986c638c0c607a23d98d0ae4967a328a:log:51', 'hash': '0x5bf928ce09f418472df1cf6b316ea2f1986c638c0c607a23d98d0ae4967a328a', 'from': '0xf59484dfe2f6a13a801baefb52cf890035bada79', 'to': '0x401779a275e46399efb07ce7aa152aa4dfa1cca3', 'value': 3099.80261924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa80a672abd99a41000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T13:27:12.000Z'}}, {'blockNum': '0x7a9656', 'uniqueId': '0x694e47ff5c1a726a5a8d67846f4dc6ecc86edb8f218b9e4a9d8bf28c36c6fc0a:log:22', 'hash': '0x694e47ff5c1a726a5a8d67846f4dc6ecc86edb8f218b9e4a9d8bf28c36c6fc0a', 'from': '0x401779a275e46399efb07ce7aa152aa4dfa1cca3', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 3099.80261924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa80a672abd99a41000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T13:32:24.000Z'}}, {'blockNum': '0x7a9669', 'uniqueId': '0x7eb1a560d023022d005f04503a0701826b29cab46e3a0d3f9142fb807a38228e:log:49', 'hash': '0x7eb1a560d023022d005f04503a0701826b29cab46e3a0d3f9142fb807a38228e', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3099.80261924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa80a672abd99a41000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T13:36:10.000Z'}}, {'blockNum': '0x7a966c', 'uniqueId': '0x3e0e6a9724445e0066be57358983dbf78f10723bba08f43b7b45c2b1b35a1c70:log:7', 'hash': '0x3e0e6a9724445e0066be57358983dbf78f10723bba08f43b7b45c2b1b35a1c70', 'from': '0x86639f9228240a3cde5594c1ccba0c46b3ab1fe9', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 4124.294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xdf9413b58dcae70000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T13:37:09.000Z'}}, {'blockNum': '0x7a9701', 'uniqueId': '0x875ba9735305278a40f7f57ad6eb40a46460371b2ac2aff833f5bbc0bab4e88a:log:10', 'hash': '0x875ba9735305278a40f7f57ad6eb40a46460371b2ac2aff833f5bbc0bab4e88a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x682d6b8d98efc7d7ca9190edb3bf7fc999b2b2d7', 'value': 5877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x013e97c24a51cab40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:10:46.000Z'}}, {'blockNum': '0x7a9711', 'uniqueId': '0x774682f558c41ef9bf1c60590db9aacd1b3e0e01e7dd145af79370dc0464db6e:log:15', 'hash': '0x774682f558c41ef9bf1c60590db9aacd1b3e0e01e7dd145af79370dc0464db6e', 'from': '0x682d6b8d98efc7d7ca9190edb3bf7fc999b2b2d7', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x013e97c24a51cab40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:14:38.000Z'}}, {'blockNum': '0x7a9729', 'uniqueId': '0x58d354cd194b546ddfbe82f57ce2c334a1b38db25e2dfc8be0be14892ce020c4:log:81', 'hash': '0x58d354cd194b546ddfbe82f57ce2c334a1b38db25e2dfc8be0be14892ce020c4', 'from': '0x329d7773c300727ad72a61daebddf294f9fb5733', 'to': '0xa6cca10eef47b97a0b9f41db2102a4e556c5af57', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:19:55.000Z'}}, {'blockNum': '0x7a972e', 'uniqueId': '0xb3f80218267a15ce2462b599f09533d7ea5402920056605b9df5459cd4768b0c:log:30', 'hash': '0xb3f80218267a15ce2462b599f09533d7ea5402920056605b9df5459cd4768b0c', 'from': '0xa6cca10eef47b97a0b9f41db2102a4e556c5af57', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 1500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5150ae84a8cdf00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:21:01.000Z'}}, {'blockNum': '0x7a9732', 'uniqueId': '0xa946c8158c2637ff0a81d071da70e9111db3af3ed1ae1447c510a3e72c1a15d8:log:120', 'hash': '0xa946c8158c2637ff0a81d071da70e9111db3af3ed1ae1447c510a3e72c1a15d8', 'from': '0xe77df16aca3f09e698bb5b2e7f88635aa14f374e', 'to': '0x36564daabc3abd4469bc10167166d28934719b69', 'value': 3578.08235019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xc1f7de1c0149cacc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:22:48.000Z'}}, {'blockNum': '0x7a973b', 'uniqueId': '0x9e1b7dd1b88bdba1ffc8faeae85883a06984a7929f69384f7d52b069465e54b7:log:56', 'hash': '0x9e1b7dd1b88bdba1ffc8faeae85883a06984a7929f69384f7d52b069465e54b7', 'from': '0x36564daabc3abd4469bc10167166d28934719b69', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 3578.08235019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xc1f7de1c0149cacc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:24:42.000Z'}}, {'blockNum': '0x7a9745', 'uniqueId': '0x05f6acbc8bf0e4c7d68eb7747cc0e7e7e9d24689e62a857e2199bc643f2d0419:log:20', 'hash': '0x05f6acbc8bf0e4c7d68eb7747cc0e7e7e9d24689e62a857e2199bc643f2d0419', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5078.08235019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0113488ca0aa17bacc00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:26:42.000Z'}}, {'blockNum': '0x7a9787', 'uniqueId': '0x84d250d849ad5ae93b7f5a060fd7f13e96fdfa053d498a48ecb5fa7788614bea:log:92', 'hash': '0x84d250d849ad5ae93b7f5a060fd7f13e96fdfa053d498a48ecb5fa7788614bea', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x409b512e1cf94500877c5353b2a0c13b2d24914f', 'value': 754.2497335067096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x28e351587020787262', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:39:33.000Z'}}, {'blockNum': '0x7a9787', 'uniqueId': '0x84d250d849ad5ae93b7f5a060fd7f13e96fdfa053d498a48ecb5fa7788614bea:log:94', 'hash': '0x84d250d849ad5ae93b7f5a060fd7f13e96fdfa053d498a48ecb5fa7788614bea', 'from': '0x409b512e1cf94500877c5353b2a0c13b2d24914f', 'to': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'value': 754.2497335067095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x28e351587020760000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:39:33.000Z'}}, {'blockNum': '0x7a97c5', 'uniqueId': '0x1f48e6683e5d7049ec231b7ee6bda16cdd9dc1eb1fb2d8c521b4d7c59af6ad21:log:35', 'hash': '0x1f48e6683e5d7049ec231b7ee6bda16cdd9dc1eb1fb2d8c521b4d7c59af6ad21', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf5170d17fe44be087796fb0ee28c3a3f88ad2733', 'value': 4704.61899999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xff09b44659e56b9c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T14:51:39.000Z'}}, {'blockNum': '0x7a97e9', 'uniqueId': '0x9a00771362bba4b524be67bca5bf6982d97c27b450f473e6da579ae9fc7a4bf1:log:72', 'hash': '0x9a00771362bba4b524be67bca5bf6982d97c27b450f473e6da579ae9fc7a4bf1', 'from': '0x83ed90e6758a3845b1f113506156d93d752b45c0', 'to': '0xbaded538f1eceac84b645a1bfb3163906fb4f94b', 'value': 49856.92674905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a8ebfd9a4f1242e4400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T15:00:05.000Z'}}, {'blockNum': '0x7a982d', 'uniqueId': '0x5d47265eecce7595eb866628987dd00774e080a7c98d880cc858fd3ae0bd5a93:log:24', 'hash': '0x5d47265eecce7595eb866628987dd00774e080a7c98d880cc858fd3ae0bd5a93', 'from': '0xbaded538f1eceac84b645a1bfb3163906fb4f94b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49856.92674905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a8ebfd9a4f1242e4400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T15:13:54.000Z'}}, {'blockNum': '0x7a9880', 'uniqueId': '0x41d7ebe96f0fe622d44cf68d551ece55df7d8153e792cb7540191974a5700a29:log:33', 'hash': '0x41d7ebe96f0fe622d44cf68d551ece55df7d8153e792cb7540191974a5700a29', 'from': '0x27a6415a763c53f10f742353839d7d2c5b1432d8', 'to': '0xd2ed7c720b22d803d583cd332e3d42fd3c7b9c1e', 'value': 1052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x39076eca43def00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T15:30:59.000Z'}}, {'blockNum': '0x7a98e5', 'uniqueId': '0xc9b73db7bb76eb840c9028e07d36805f3cf61f1a3dcedef8736f83436119f1fc:log:3', 'hash': '0xc9b73db7bb76eb840c9028e07d36805f3cf61f1a3dcedef8736f83436119f1fc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6938d50ad15a5302d05901cee46dfb4940f50845', 'value': 1472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcc1a89027f000000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T15:53:54.000Z'}}, {'blockNum': '0x7a98f9', 'uniqueId': '0x3cf7fc0b0a0c0f89eec7b1d22441a025dc136f8a3fa4bfa15b807baf8af97a6f:log:36', 'hash': '0x3cf7fc0b0a0c0f89eec7b1d22441a025dc136f8a3fa4bfa15b807baf8af97a6f', 'from': '0xda0afd02aba8733a2e546a3ef5113dadeae07d1d', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 1555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x544bf5c541c46c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T15:59:20.000Z'}}, {'blockNum': '0x7a98ff', 'uniqueId': '0xb281f3d74b72cd7636325579ed1d9abb972e5f36fabe09a2d6fa86b381b52108:log:61', 'hash': '0xb281f3d74b72cd7636325579ed1d9abb972e5f36fabe09a2d6fa86b381b52108', 'from': '0x9253e908bd1dcf8ac9963bf690713232ab3aa14f', 'to': '0x3ef98cddcdea411b3e1a90e20e4ec6c757ceda6d', 'value': 2139.50115391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x73fb8b03eb0fe51c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T16:01:06.000Z'}}, {'blockNum': '0x7a9900', 'uniqueId': '0x1e2fac33f4ba38688b10887cadf7162fc0c01c2b178e0903c30ef0505e48884d:log:8', 'hash': '0x1e2fac33f4ba38688b10887cadf7162fc0c01c2b178e0903c30ef0505e48884d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xad0a53da0af2cfb67e8316a1fcf594a3f9d3b6e1', 'value': 1580.56426382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x55aebc47c183e47800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T16:01:08.000Z'}}, {'blockNum': '0x7a9907', 'uniqueId': '0xc0ae758ccf048d2bfa0a01e064efaa5f636a083d69433ea4a225e1995d2ab167:log:88', 'hash': '0xc0ae758ccf048d2bfa0a01e064efaa5f636a083d69433ea4a225e1995d2ab167', 'from': '0x3ef98cddcdea411b3e1a90e20e4ec6c757ceda6d', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 2139.50115391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x73fb8b03eb0fe51c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T16:02:28.000Z'}}, {'blockNum': '0x7a9913', 'uniqueId': '0xa23965f264d49d377a56750083ecd43fdc832bf588cc1b4076bc16113d697e1e:log:68', 'hash': '0xa23965f264d49d377a56750083ecd43fdc832bf588cc1b4076bc16113d697e1e', 'from': '0x6937936b08874cec8e1b34d06f274a00dd6cff37', 'to': '0x143479650e4937ffa0cc5f2faa6741bfae00dc6d', 'value': 6762.30279214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x016e95cda13c50e2f800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T16:04:22.000Z'}}, {'blockNum': '0x7a9916', 'uniqueId': '0xde1f4a89b95bdf6e2c8543b912153df461412b20517a18f2bf7c57fe0c4ae58c:log:5', 'hash': '0xde1f4a89b95bdf6e2c8543b912153df461412b20517a18f2bf7c57fe0c4ae58c', 'from': '0xad0a53da0af2cfb67e8316a1fcf594a3f9d3b6e1', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 1580.56426382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x55aebc47c183e47800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T16:05:04.000Z'}}, {'blockNum': '0x7a991b', 'uniqueId': '0x4869240a154faede1280e41cf0f9d02628ee2febb94b3604e7ff44ec6910bd48:log:108', 'hash': '0x4869240a154faede1280e41cf0f9d02628ee2febb94b3604e7ff44ec6910bd48', 'from': '0x143479650e4937ffa0cc5f2faa6741bfae00dc6d', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 6762.30279214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x016e95cda13c50e2f800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T16:05:35.000Z'}}, {'blockNum': '0x7a991f', 'uniqueId': '0x74e80c8e2fe63679326a57c50d299a086d72f6213d6e3c35deb99815a6747fdf:log:36', 'hash': '0x74e80c8e2fe63679326a57c50d299a086d72f6213d6e3c35deb99815a6747fdf', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 8901.80394605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01e29158a52760c81400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T16:06:22.000Z'}}, {'blockNum': '0x7a99d5', 'uniqueId': '0x8680d0b7b9a41bde02b3b44845bc12bfd4fa3c6931a58b13c7a52e2d7bc99668:log:112', 'hash': '0x8680d0b7b9a41bde02b3b44845bc12bfd4fa3c6931a58b13c7a52e2d7bc99668', 'from': '0xc7f4cff29d2be94ad5541f4298d224e218cf6003', 'to': '0x5695510d34f535df741185b627f8b50516a27fc3', 'value': 624577.0608364474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x844263eb7fa820e9b6a6', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T16:51:57.000Z'}}, {'blockNum': '0x7a9a0c', 'uniqueId': '0x550c204245b5c33b3c929fb783ab7a1a09faf2174b5935b535dd75227f2fa7ba:log:10', 'hash': '0x550c204245b5c33b3c929fb783ab7a1a09faf2174b5935b535dd75227f2fa7ba', 'from': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'to': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'value': 5389.033112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x012423dba70af9e18000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:04:41.000Z'}}, {'blockNum': '0x7a9a0d', 'uniqueId': '0x4b337e9abbe829d2a4878050f2ed0b4b1fda4d5a1e0387e92bf9cc7ef6f825fd:log:38', 'hash': '0x4b337e9abbe829d2a4878050f2ed0b4b1fda4d5a1e0387e92bf9cc7ef6f825fd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'value': 106059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1675784c0f55c24c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:05:05.000Z'}}, {'blockNum': '0x7a9a15', 'uniqueId': '0x8b37feabd15113cd5abe04d697088409469ca52115ee332688097b60f513bd76:log:5', 'hash': '0x8b37feabd15113cd5abe04d697088409469ca52115ee332688097b60f513bd76', 'from': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'to': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'value': 5389.033112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x012423dba70af9e18000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:06:12.000Z'}}, {'blockNum': '0x7a9a17', 'uniqueId': '0xfb535173a92adb3e8fc78977fbd60df4fe28e0325f456ae06756852b25600f62:log:1', 'hash': '0xfb535173a92adb3e8fc78977fbd60df4fe28e0325f456ae06756852b25600f62', 'from': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'to': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'value': 5389.033112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x012423dba70af9e18000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:06:29.000Z'}}, {'blockNum': '0x7a9a18', 'uniqueId': '0x420edd112fd366723369c0896f359bc7fc46be100093cbc0c52fa228c1c503ab:log:35', 'hash': '0x420edd112fd366723369c0896f359bc7fc46be100093cbc0c52fa228c1c503ab', 'from': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'to': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'value': 5389.033112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x012423dba70af9e18000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:06:30.000Z'}}, {'blockNum': '0x7a9a3c', 'uniqueId': '0xeca1af32c41cd2477a95a9a231afd4677507872e9c452087487135638f212d0c:log:56', 'hash': '0xeca1af32c41cd2477a95a9a231afd4677507872e9c452087487135638f212d0c', 'from': '0x5695510d34f535df741185b627f8b50516a27fc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 624577.0608364474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x844263eb7fa820e9b6a6', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:14:11.000Z'}}, {'blockNum': '0x7a9a41', 'uniqueId': '0x58bf7cddf4bc5fb8c6f1b8ea31d6a99a67e3f61fce646194f93a1795ef0f12d7:log:20', 'hash': '0x58bf7cddf4bc5fb8c6f1b8ea31d6a99a67e3f61fce646194f93a1795ef0f12d7', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x51961216dda9149042b264b398e7fabf648a455e', 'value': 46645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09e0a1698c32bfb40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:14:54.000Z'}}, {'blockNum': '0x7a9a4f', 'uniqueId': '0xd78b81b605362d7da6396bd67b27ad07e49f1bc1a0493d5f0f724c36a134b6a2:log:89', 'hash': '0xd78b81b605362d7da6396bd67b27ad07e49f1bc1a0493d5f0f724c36a134b6a2', 'from': '0x4f2cf5cf2c06fd131e915ed8d7b5ee881ba45b7e', 'to': '0xd8ad29382141e1e85b970a4f719b99753cce4d68', 'value': 2208.59861112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x77ba767f281cb2e000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:19:36.000Z'}}, {'blockNum': '0x7a9a59', 'uniqueId': '0x0c148261cd8390c1bc7440475b3faeadde0f5403aa000092765bb50f32d1c948:log:142', 'hash': '0x0c148261cd8390c1bc7440475b3faeadde0f5403aa000092765bb50f32d1c948', 'from': '0xd8ad29382141e1e85b970a4f719b99753cce4d68', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 2208.59861112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x77ba767f281cb2e000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:20:58.000Z'}}, {'blockNum': '0x7a9a61', 'uniqueId': '0x753dc760c54ad3e4d96b3d3ea86f95e1393a916662d94b8759fcf5829c03aef0:log:0', 'hash': '0x753dc760c54ad3e4d96b3d3ea86f95e1393a916662d94b8759fcf5829c03aef0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'value': 34885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07631ea0af593df40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:22:57.000Z'}}, {'blockNum': '0x7a9a63', 'uniqueId': '0xdc4601cab85db1eff762898d5c44b26133d54d81d2924e7e8d68cd3658c07fc8:log:36', 'hash': '0xdc4601cab85db1eff762898d5c44b26133d54d81d2924e7e8d68cd3658c07fc8', 'from': '0x77cde0c6cf57fdd34d4634396bd91aed6459d533', 'to': '0x188a76bffbeacfec172c9065bbba1d0f2d308183', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:23:06.000Z'}}, {'blockNum': '0x7a9a67', 'uniqueId': '0xc2b9378172496919303dbbcbb9d37c96501c8441673764d75df39566e8ac675d:log:11', 'hash': '0xc2b9378172496919303dbbcbb9d37c96501c8441673764d75df39566e8ac675d', 'from': '0x51961216dda9149042b264b398e7fabf648a455e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x09e0a1698c32bfb40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:23:59.000Z'}}, {'blockNum': '0x7a9a67', 'uniqueId': '0x5260018886352526cb93c8b1e98981ed82719aeb9ef546a12e40550c5cd113e9:log:21', 'hash': '0x5260018886352526cb93c8b1e98981ed82719aeb9ef546a12e40550c5cd113e9', 'from': '0x371a8134b6c842ea02524ba2bc4e93b6f2beccbb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 106059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1675784c0f55c24c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:23:59.000Z'}}, {'blockNum': '0x7a9a6e', 'uniqueId': '0x196c9be7049b00357193e0b9e74be6f805a7a8cde4897ef59796d62b86824f7f:log:10', 'hash': '0x196c9be7049b00357193e0b9e74be6f805a7a8cde4897ef59796d62b86824f7f', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2208.59861112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x77ba767f281cb2e000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:25:14.000Z'}}, {'blockNum': '0x7a9a70', 'uniqueId': '0xead1bb572365ade6cc28a8cd0b18c050716ded0b17e1c8c5efb8f9bce97170fc:log:73', 'hash': '0xead1bb572365ade6cc28a8cd0b18c050716ded0b17e1c8c5efb8f9bce97170fc', 'from': '0x188a76bffbeacfec172c9065bbba1d0f2d308183', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x77432217e683600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:25:48.000Z'}}, {'blockNum': '0x7a9a7a', 'uniqueId': '0x688afefdc43b1ab7a6f47956ffed62dbdb4d247c18da768cb1aafba3b9bcdbae:log:22', 'hash': '0x688afefdc43b1ab7a6f47956ffed62dbdb4d247c18da768cb1aafba3b9bcdbae', 'from': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 34885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07631ea0af593df40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:27:41.000Z'}}, {'blockNum': '0x7a9a8b', 'uniqueId': '0x6c68d67ef32d2cda182b7dc74691e8ba71579b34ce310465a28ebdc82bc4e510:log:132', 'hash': '0x6c68d67ef32d2cda182b7dc74691e8ba71579b34ce310465a28ebdc82bc4e510', 'from': '0x05f51aab068caa6ab7eeb672f88c180f67f17ec7', 'to': '0x6ba403352b5534f526d300f0368ffa9b6ea89f41', 'value': 1978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6b3a43a81b5aa80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:31:01.000Z'}}, {'blockNum': '0x7a9aa4', 'uniqueId': '0xe75061a3882b8bbb9b8cccf613d51eabbd9262d686bf244f9e7bb179d4e6a9fe:log:7', 'hash': '0xe75061a3882b8bbb9b8cccf613d51eabbd9262d686bf244f9e7bb179d4e6a9fe', 'from': '0x6ba403352b5534f526d300f0368ffa9b6ea89f41', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 1978, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6b3a43a81b5aa80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:35:11.000Z'}}, {'blockNum': '0x7a9adf', 'uniqueId': '0xe5ab429654716083aa235c8c072380736bf968026090b1ee956196b11702a0eb:log:33', 'hash': '0xe5ab429654716083aa235c8c072380736bf968026090b1ee956196b11702a0eb', 'from': '0x747667d527c9389d682dad5f44fb36d1ea81a243', 'to': '0x68c123aa7706fe5967e374db97a4cef37831f199', 'value': 164862.049388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22e93089f9d01562c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T17:49:50.000Z'}}, {'blockNum': '0x7a9b1a', 'uniqueId': '0x211d46242a0a8672f13c2670fd1673b04c45c57e35e68f39edc3d596feb9421a:log:56', 'hash': '0x211d46242a0a8672f13c2670fd1673b04c45c57e35e68f39edc3d596feb9421a', 'from': '0x68c123aa7706fe5967e374db97a4cef37831f199', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 164862.049388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x22e93089f9d01562c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T18:04:16.000Z'}}, {'blockNum': '0x7a9b85', 'uniqueId': '0xb49cf1a184553a15fe87e3760f40adfd2afb869568d9b1629a070b8020c6c64d:log:59', 'hash': '0xb49cf1a184553a15fe87e3760f40adfd2afb869568d9b1629a070b8020c6c64d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x592f222a1252945446ad5a52b81257d025d493dc', 'value': 4376.69081626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xed42c954afcbbd2800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T18:31:10.000Z'}}, {'blockNum': '0x7a9b91', 'uniqueId': '0x90802d579a96067f52df563c40c924f86928e8417b3705300af84df625c8b0ca:log:8', 'hash': '0x90802d579a96067f52df563c40c924f86928e8417b3705300af84df625c8b0ca', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45d429ec34249a0ef7c9a0e798752b8aafe84ea5', 'value': 609928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8128435caef565200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T18:34:50.000Z'}}, {'blockNum': '0x7a9b92', 'uniqueId': '0x0b24278dd260af57557d943c219765fd505d8c8843b9652f68b298e8c8b782b8:log:16', 'hash': '0x0b24278dd260af57557d943c219765fd505d8c8843b9652f68b298e8c8b782b8', 'from': '0x2c649a55d920a4b73cf84a784642b3fd5769d53e', 'to': '0x7d8ff3df76612680adbda3d58181022bd5adfea5', 'value': 1647.83708676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5954555bcb0c579000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T18:35:13.000Z'}}, {'blockNum': '0x7a9b99', 'uniqueId': '0xff91cbfc95c0fc4a445c990889c1d0535d2b87a59670d55a0b52b072d7229562:log:47', 'hash': '0xff91cbfc95c0fc4a445c990889c1d0535d2b87a59670d55a0b52b072d7229562', 'from': '0x7d8ff3df76612680adbda3d58181022bd5adfea5', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 1647.83708676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5954555bcb0c579000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T18:38:39.000Z'}}, {'blockNum': '0x7a9baa', 'uniqueId': '0xf5e17f9484f4f2fd6e0004d1338a8a5982df165ed3a486f0d0193a6068851da3:log:40', 'hash': '0xf5e17f9484f4f2fd6e0004d1338a8a5982df165ed3a486f0d0193a6068851da3', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1647.83708676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5954555bcb0c579000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T18:43:01.000Z'}}, {'blockNum': '0x7a9bb6', 'uniqueId': '0x9f4e5d0111fdc9a6e44488c8d6bce9ac30fbbc413887cb80d3c6ed2bbb2a208f:log:11', 'hash': '0x9f4e5d0111fdc9a6e44488c8d6bce9ac30fbbc413887cb80d3c6ed2bbb2a208f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x244e0ec7481fc0098daa062586bb0f567fd39a14', 'value': 853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2e3dc0c49cc0340000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T18:45:44.000Z'}}, {'blockNum': '0x7a9c58', 'uniqueId': '0x0ff0d2d60e307265270f70d1b44d9320505f6cce9faad3151080ca72b0a0aadb:log:0', 'hash': '0x0ff0d2d60e307265270f70d1b44d9320505f6cce9faad3151080ca72b0a0aadb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'value': 108005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16def678e0fc30740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T19:21:00.000Z'}}, {'blockNum': '0x7a9c6a', 'uniqueId': '0xe33f95df7fb3d9622afbe31aa5d221e03a3a1a59ebd976e626060f60b391b40e:log:14', 'hash': '0xe33f95df7fb3d9622afbe31aa5d221e03a3a1a59ebd976e626060f60b391b40e', 'from': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 108005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16def678e0fc30740000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T19:26:35.000Z'}}, {'blockNum': '0x7a9c79', 'uniqueId': '0xbcc72ea7be3d4ef97265c87791c5a99e39b799e2dfea472921198a408f86299f:log:39', 'hash': '0xbcc72ea7be3d4ef97265c87791c5a99e39b799e2dfea472921198a408f86299f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'value': 649945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x89a196cbf7ce4bc40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T19:29:38.000Z'}}, {'blockNum': '0x7a9cac', 'uniqueId': '0x87ff68ff5d798b73fc1369917d23dab31780167e2a08114140a03fdfb663166c:log:50', 'hash': '0x87ff68ff5d798b73fc1369917d23dab31780167e2a08114140a03fdfb663166c', 'from': '0x9e23f0b68340e992a0cd69e9b5978680614b60bf', 'to': '0x391a332d67a5da056fa014fd1fa6036a07e6ec2a', 'value': 10000.88256516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26204a10f72f9000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T19:45:17.000Z'}}, {'blockNum': '0x7a9cb6', 'uniqueId': '0x95a184b472965ed9cbb44c24a62e53f7c56ac9c098541107cb93625cc6cb202a:log:92', 'hash': '0x95a184b472965ed9cbb44c24a62e53f7c56ac9c098541107cb93625cc6cb202a', 'from': '0x391a332d67a5da056fa014fd1fa6036a07e6ec2a', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 10000.88256516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26204a10f72f9000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T19:47:26.000Z'}}, {'blockNum': '0x7a9cc9', 'uniqueId': '0x44f8c64ccac592ce28d545ee85a7a20e531cd6ec2ab24c4b35e3a63a0ca40137:log:5', 'hash': '0x44f8c64ccac592ce28d545ee85a7a20e531cd6ec2ab24c4b35e3a63a0ca40137', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10000.88256516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e26204a10f72f9000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T19:49:54.000Z'}}, {'blockNum': '0x7a9cf6', 'uniqueId': '0x4907d1ce67d09f2f470090a0140dcc908b0afdd23868843a038ed8d1484ba73d:log:4', 'hash': '0x4907d1ce67d09f2f470090a0140dcc908b0afdd23868843a038ed8d1484ba73d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'value': 47385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a08bef9ab829cc40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T19:58:40.000Z'}}, {'blockNum': '0x7a9cf6', 'uniqueId': '0xf316de2e54634a359b7a7cbf38d1cc974c099263233f9227f466c1fdb0f5b581:log:35', 'hash': '0xf316de2e54634a359b7a7cbf38d1cc974c099263233f9227f466c1fdb0f5b581', 'from': '0x2480c14187d3e73b5b12138ec42ab25c19b1f005', 'to': '0xec23b159fe051fa3dfa6cda63cd1b2bf588bdb9c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T19:58:40.000Z'}}, {'blockNum': '0x7a9cfd', 'uniqueId': '0xbaa9716c187e46ca9f3b3d5da635cc3035d13cd6af2a61c350ad2129a2e8a147:log:36', 'hash': '0xbaa9716c187e46ca9f3b3d5da635cc3035d13cd6af2a61c350ad2129a2e8a147', 'from': '0xec23b159fe051fa3dfa6cda63cd1b2bf588bdb9c', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T19:59:45.000Z'}}, {'blockNum': '0x7a9d01', 'uniqueId': '0x0ac7ba6c2a7b269d1f74b56e49bfa9ac691799cc03d254fffe70aa839e9994c8:log:59', 'hash': '0x0ac7ba6c2a7b269d1f74b56e49bfa9ac691799cc03d254fffe70aa839e9994c8', 'from': '0xe4c9497576372fc065ae5318ad2134d5cb23a4f0', 'to': '0xbe0faced3b60037054d7f3e62f3f368aaa3ea174', 'value': 7024.87428952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017cd1b6faf076326000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:00:22.000Z'}}, {'blockNum': '0x7a9d03', 'uniqueId': '0x8b52501486543d7508d6e0f1671743106674fcd60f437ce60827b12b8dc69e08:log:120', 'hash': '0x8b52501486543d7508d6e0f1671743106674fcd60f437ce60827b12b8dc69e08', 'from': '0xbe0faced3b60037054d7f3e62f3f368aaa3ea174', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 7024.87428952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017cd1b6faf076326000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:02:16.000Z'}}, {'blockNum': '0x7a9d0a', 'uniqueId': '0x504464d83f636f6bb2991cc9733f008352e34473c661cd2481e2628010534f58:log:18', 'hash': '0x504464d83f636f6bb2991cc9733f008352e34473c661cd2481e2628010534f58', 'from': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 47385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a08bef9ab829cc40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:03:26.000Z'}}, {'blockNum': '0x7a9d0a', 'uniqueId': '0x0850bee2456d32f204a521f55ba1e40c7d8caab554b4fc44d5716fb2ca9ee1a0:log:32', 'hash': '0x0850bee2456d32f204a521f55ba1e40c7d8caab554b4fc44d5716fb2ca9ee1a0', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 17024.87428952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x039aeb97c4ab28726000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:03:26.000Z'}}, {'blockNum': '0x7a9d0b', 'uniqueId': '0x828533e326e83f31fc641fb5a928867d5e93f75cb2788af0ccfd032a27f596d3:log:73', 'hash': '0x828533e326e83f31fc641fb5a928867d5e93f75cb2788af0ccfd032a27f596d3', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xa871b9bc40d6a2c690ac948ba80b17f1a54f8248', 'value': 8345.577970160248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01c46a290317f7280fd4', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:03:38.000Z'}}, {'blockNum': '0x7a9d13', 'uniqueId': '0x9044b3f9888579c97de880fb310f7e085cdbcec7a3971472a6159af991aa7569:log:5', 'hash': '0x9044b3f9888579c97de880fb310f7e085cdbcec7a3971472a6159af991aa7569', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6eb27ed4f3cca4d9e2a760eec060a40185570ea3', 'value': 8888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01e1d1c72d5b97e00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:05:00.000Z'}}, {'blockNum': '0x7a9d17', 'uniqueId': '0x43e680f6f1ffe4fcfc41e9fa82ade321d764ac4e799643130ac9f3fcc323ae62:log:44', 'hash': '0x43e680f6f1ffe4fcfc41e9fa82ade321d764ac4e799643130ac9f3fcc323ae62', 'from': '0x267e42cba85a22b5341a9c525a2563bfa503f5a7', 'to': '0x031017fa36583e1f980803872c8f9be935866cf1', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:06:34.000Z'}}, {'blockNum': '0x7a9d1f', 'uniqueId': '0xc975e56ea39c5a030e197a563731ccab41d1b8b61395aa00625a3c91732374c9:log:11', 'hash': '0xc975e56ea39c5a030e197a563731ccab41d1b8b61395aa00625a3c91732374c9', 'from': '0x031017fa36583e1f980803872c8f9be935866cf1', 'to': '0x8037713e7ac51685904e17adaa620e12015da25d', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:07:56.000Z'}}, {'blockNum': '0x7a9d37', 'uniqueId': '0x239bc5fe2fc63671d6960825f3927ba26b75d677c7a5d39925dfb34ff5764175:log:14', 'hash': '0x239bc5fe2fc63671d6960825f3927ba26b75d677c7a5d39925dfb34ff5764175', 'from': '0x6eb27ed4f3cca4d9e2a760eec060a40185570ea3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03b080b26cfd5edc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:13:56.000Z'}}, {'blockNum': '0x7a9d38', 'uniqueId': '0x050dc38372f7b59f9a5353e3a1e6400cad4c891104162cd14a8a7579ab9d9438:log:10', 'hash': '0x050dc38372f7b59f9a5353e3a1e6400cad4c891104162cd14a8a7579ab9d9438', 'from': '0x058adc6b6c242b70fd212ee7a71a1e35dd742c0e', 'to': '0x4d1308e4510a67d626b6ebec2f8c72f36998668c', 'value': 2921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9e5904a7e0f4040000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:14:09.000Z'}}, {'blockNum': '0x7a9dc7', 'uniqueId': '0x8bd667f8ac87e3b702c717ca925e0bdc1c528f0ccfa60fcf8e6686e6706eea92:log:14', 'hash': '0x8bd667f8ac87e3b702c717ca925e0bdc1c528f0ccfa60fcf8e6686e6706eea92', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45d429ec34249a0ef7c9a0e798752b8aafe84ea5', 'value': 743687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x9d7b5a61a56757bc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:41:57.000Z'}}, {'blockNum': '0x7a9dee', 'uniqueId': '0xc4c8562b2d5e637b8725bab558d27ce3d57003ce24d9ba9f41ca4aafc19e60a8:log:186', 'hash': '0xc4c8562b2d5e637b8725bab558d27ce3d57003ce24d9ba9f41ca4aafc19e60a8', 'from': '0xc0d4144bacae088867549c31fe0ceca53b91bbd0', 'to': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:51:03.000Z'}}, {'blockNum': '0x7a9e12', 'uniqueId': '0x279f62581da670616cb0d2ee7532f0554d74d30a56a52013d8b9eb03e808ea67:log:48', 'hash': '0x279f62581da670616cb0d2ee7532f0554d74d30a56a52013d8b9eb03e808ea67', 'from': '0x6e2e89a50f6e686fb83a8a60848278164302e562', 'to': '0x5144eb61ec0b04f117cd173b788b9cf1d6295fc3', 'value': 58.626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x032d996462da0d0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T20:58:15.000Z'}}, {'blockNum': '0x7a9e2f', 'uniqueId': '0x21fbcd3a47c737701b64b4c4834053596115b4fb3bfd2137d7b68b9013be895a:log:114', 'hash': '0x21fbcd3a47c737701b64b4c4834053596115b4fb3bfd2137d7b68b9013be895a', 'from': '0x4a57eb0b858f96edd545307fa3049a46128782a6', 'to': '0x7a61f5c2faf1d4a988f2edff6d29acf425ecd356', 'value': 68005.00098922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e668ef93dc222286800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:04:24.000Z'}}, {'blockNum': '0x7a9e32', 'uniqueId': '0xcce031cde39cc3aa4f453aa8b0b4610208319a21173ebc6b28694e32aae8bd2c:log:136', 'hash': '0xcce031cde39cc3aa4f453aa8b0b4610208319a21173ebc6b28694e32aae8bd2c', 'from': '0x7a61f5c2faf1d4a988f2edff6d29acf425ecd356', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 68005.00098922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e668ef93dc222286800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:05:41.000Z'}}, {'blockNum': '0x7a9e3a', 'uniqueId': '0x984c831c882192e46a8d24de399bcc48664de34951a732373f1b6b2c52806149:log:109', 'hash': '0x984c831c882192e46a8d24de399bcc48664de34951a732373f1b6b2c52806149', 'from': '0xfabf0b277c247b77b78c36c289c479f1fc52dfa4', 'to': '0x616ed571a199c8ba4567c8c9de295ab19c364912', 'value': 27928.796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x05ea05e794e59e960000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:07:19.000Z'}}, {'blockNum': '0x7a9e3c', 'uniqueId': '0xf65a93a768eb0e582a3ce869b3f127e24e75defc4db91caf8f3a4ad39bc948d2:log:6', 'hash': '0xf65a93a768eb0e582a3ce869b3f127e24e75defc4db91caf8f3a4ad39bc948d2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x65f07691542a55ff4298ad08e7560433aebeb702', 'value': 1504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5188315f776b800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:08:35.000Z'}}, {'blockNum': '0x7a9e43', 'uniqueId': '0x053846940597cf1318c9b0100f1164add27955a21664e291033df1a0aa8b3b7b:log:21', 'hash': '0x053846940597cf1318c9b0100f1164add27955a21664e291033df1a0aa8b3b7b', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 68005.00098922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0e668ef93dc222286800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:09:42.000Z'}}, {'blockNum': '0x7a9e98', 'uniqueId': '0x9c16bcabf935850c991bcd66ba4ecbed8931f98d81a3f3793e19e34677ef6be6:log:51', 'hash': '0x9c16bcabf935850c991bcd66ba4ecbed8931f98d81a3f3793e19e34677ef6be6', 'from': '0x69b39efd8f357787715dcdfce6972a5d68b6d654', 'to': '0x3cabf66bf534db5e16f2717c63d21969bb4dd254', 'value': 6471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x015ecb2a372c30bc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:30:00.000Z'}}, {'blockNum': '0x7a9ea8', 'uniqueId': '0x1dfe01428b03e6b891deedda22a48e2a60e63f68e9e865df54f92975f22bd373:log:14', 'hash': '0x1dfe01428b03e6b891deedda22a48e2a60e63f68e9e865df54f92975f22bd373', 'from': '0x8b0ed18cd21672b3af3a91bcc2b1b4310d0f5d7e', 'to': '0xeded6b187643aa5b3b19fbcd5cb1770f00e18ce6', 'value': 2532.16649804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8944de8df96b0fb000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:33:21.000Z'}}, {'blockNum': '0x7a9eab', 'uniqueId': '0xb4b05f2b250ae4668ff9249dc9226a75f345d1a2c231a6c463232155ddc4f29c:log:23', 'hash': '0xb4b05f2b250ae4668ff9249dc9226a75f345d1a2c231a6c463232155ddc4f29c', 'from': '0x616ed571a199c8ba4567c8c9de295ab19c364912', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27928.796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x05ea05e794e59e960000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:33:56.000Z'}}, {'blockNum': '0x7a9eaf', 'uniqueId': '0x8473a134d16065de0de7f961f42d79d0946b1d551f896dad23b573b29e4db34d:log:55', 'hash': '0x8473a134d16065de0de7f961f42d79d0946b1d551f896dad23b573b29e4db34d', 'from': '0xeded6b187643aa5b3b19fbcd5cb1770f00e18ce6', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 2532.16649804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8944de8df96b0fb000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:35:15.000Z'}}, {'blockNum': '0x7a9ec5', 'uniqueId': '0x9eacfdaffc23cfb788ef0f57c073fa6d0e273ef8f71e408fe6bc45db9729708f:log:41', 'hash': '0x9eacfdaffc23cfb788ef0f57c073fa6d0e273ef8f71e408fe6bc45db9729708f', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2532.16649804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8944de8df96b0fb000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T21:39:36.000Z'}}, {'blockNum': '0x7a9f50', 'uniqueId': '0x1889f26eb635f06d6d43ccadf6f0fc3a6832a34eb0d8dcb65e43f29a782ba4a4:log:0', 'hash': '0x1889f26eb635f06d6d43ccadf6f0fc3a6832a34eb0d8dcb65e43f29a782ba4a4', 'from': '0xd9bb9c2c8d7f8ac2c67a2720c182fe1f85129f2e', 'to': '0xda258943c92179589e4257621df86c8d403fab40', 'value': 1626.797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x583057f45c2f248000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:14:04.000Z'}}, {'blockNum': '0x7a9f62', 'uniqueId': '0x8183cf6b31b72b7e04d7b33deaedd026d93e0403d056c273673b9bc652e823ea:log:39', 'hash': '0x8183cf6b31b72b7e04d7b33deaedd026d93e0403d056c273673b9bc652e823ea', 'from': '0xda258943c92179589e4257621df86c8d403fab40', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1626.797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x583057f45c2f248000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:16:27.000Z'}}, {'blockNum': '0x7a9f6c', 'uniqueId': '0xfdc70f87bbf410557c21e9224bcf4ad73a46cc532a2fd933f943ef602637b649:log:63', 'hash': '0xfdc70f87bbf410557c21e9224bcf4ad73a46cc532a2fd933f943ef602637b649', 'from': '0x12fbf686f02a5679336146d711b8d7f92f9524ce', 'to': '0x88601f78dc49cd01536425380ce0d849b85ec90a', 'value': 100.839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x05776c183b699d8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:19:17.000Z'}}, {'blockNum': '0x7a9f89', 'uniqueId': '0x5b0d482c96e54920fdb7bbdf4173cf02084f3ee3fc85b0a220a279ffa497baaf:log:9', 'hash': '0x5b0d482c96e54920fdb7bbdf4173cf02084f3ee3fc85b0a220a279ffa497baaf', 'from': '0x577989b03e1660166a8ed37f5b40a184f98b4d80', 'to': '0xb4fbcc6499e077ee4a212e5c9b427db60c0e01fc', 'value': 4208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe41dbb290f7bc00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:24:52.000Z'}}, {'blockNum': '0x7a9f9e', 'uniqueId': '0xaa72225441e2cca5f7d9f8c24f225831ade18922f7d3e120a278b6e51f0da3c0:log:74', 'hash': '0xaa72225441e2cca5f7d9f8c24f225831ade18922f7d3e120a278b6e51f0da3c0', 'from': '0x88601f78dc49cd01536425380ce0d849b85ec90a', 'to': '0xcd524d63a61f7dafdd0bea78d4902bc5c4b64a23', 'value': 100.839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x05776c183b699d8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:30:50.000Z'}}, {'blockNum': '0x7a9fa6', 'uniqueId': '0xe3a325b6a346ae3abbe738bde17138aa1894127c316bee8ebddb9884eb65f76c:log:48', 'hash': '0xe3a325b6a346ae3abbe738bde17138aa1894127c316bee8ebddb9884eb65f76c', 'from': '0xcd524d63a61f7dafdd0bea78d4902bc5c4b64a23', 'to': '0x12fbf686f02a5679336146d711b8d7f92f9524ce', 'value': 100.839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x05776c183b699d8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:32:13.000Z'}}, {'blockNum': '0x7a9fbd', 'uniqueId': '0xdcb13592b29824d9995008725758b5707a85fdd892ab6c2471e370b0da92da1f:log:32', 'hash': '0xdcb13592b29824d9995008725758b5707a85fdd892ab6c2471e370b0da92da1f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x4089e851aac2afecacfafea34582e0c677156951', 'value': 19999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c25e0dcc1bd1c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:37:18.000Z'}}, {'blockNum': '0x7a9fdc', 'uniqueId': '0x84c5d9f9e26c2c47e458a64fb62b97111bb24546428a9cfa47ccb4c2b691b736:log:5', 'hash': '0x84c5d9f9e26c2c47e458a64fb62b97111bb24546428a9cfa47ccb4c2b691b736', 'from': '0x4089e851aac2afecacfafea34582e0c677156951', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x043c25e0dcc1bd1c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:43:59.000Z'}}, {'blockNum': '0x7aa00f', 'uniqueId': '0x271480d9086e60189086b77189d1543de3868116ff898c023773875023fe950e:log:38', 'hash': '0x271480d9086e60189086b77189d1543de3868116ff898c023773875023fe950e', 'from': '0xb3407f82b7adf2cf944745bda7a11d9a4d49c844', 'to': '0x5f0f7d4f6449d315080cfce82f47d202dff26b62', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:55:37.000Z'}}, {'blockNum': '0x7aa013', 'uniqueId': '0x75b2e84e66ceaaa8da803841c37514369fae32f8e38a2fe0fd0d1ce88bbcb5ab:log:80', 'hash': '0x75b2e84e66ceaaa8da803841c37514369fae32f8e38a2fe0fd0d1ce88bbcb5ab', 'from': '0xdd5d704090ae7b9e3aec25da327befbcd4601954', 'to': '0x65caec8fbdd4859b0199b4cbc2f3f7274421d218', 'value': 887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3015990878fb7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T22:57:05.000Z'}}, {'blockNum': '0x7aa027', 'uniqueId': '0x4cbe5e891a6b2f43683b4e55c71937ae257a19b0a93d7f0bfce518a2d6aa77b1:log:94', 'hash': '0x4cbe5e891a6b2f43683b4e55c71937ae257a19b0a93d7f0bfce518a2d6aa77b1', 'from': '0x5f0f7d4f6449d315080cfce82f47d202dff26b62', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T23:02:29.000Z'}}, {'blockNum': '0x7aa03a', 'uniqueId': '0x85fd9426336e1ec4a4c53bfacd2f9bf7a310083a82b6b4351cc4284d4f6f996b:log:45', 'hash': '0x85fd9426336e1ec4a4c53bfacd2f9bf7a310083a82b6b4351cc4284d4f6f996b', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T23:06:28.000Z'}}, {'blockNum': '0x7aa03d', 'uniqueId': '0x6b0dad26fc6926c54b5730288975c0fb5ca2a2cf5f89ee83694596c4a9e84ae1:log:105', 'hash': '0x6b0dad26fc6926c54b5730288975c0fb5ca2a2cf5f89ee83694596c4a9e84ae1', 'from': '0xfe27735fa2b40db16a1ab66c470be6c6d73ac61d', 'to': '0x34cd6fa40a7c1c5e0de786fe5035debc71fab7e1', 'value': 3106.021507147188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa860b51857d78bbcd3', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T23:08:09.000Z'}}, {'blockNum': '0x7aa0e4', 'uniqueId': '0x185e96022f1563fe0c36da19c5ba073933f8ace87df03a8344a7f62c699b9cc3:log:17', 'hash': '0x185e96022f1563fe0c36da19c5ba073933f8ace87df03a8344a7f62c699b9cc3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdb2e84a3eddddd2ca08036c67787c1816e9504c1', 'value': 1323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x47b850327211cc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T23:44:26.000Z'}}, {'blockNum': '0x7aa0eb', 'uniqueId': '0x468b4c24c28fb068f78d0fcf7a261926e2c9b6b6910170e3a4b1468c55a3f34d:log:71', 'hash': '0x468b4c24c28fb068f78d0fcf7a261926e2c9b6b6910170e3a4b1468c55a3f34d', 'from': '0x400571b107bf5ae6f065dfb3add958e94a68c137', 'to': '0xccb197b70f04980dd61cdecc44f283a3fbeef051', 'value': 40327.26699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x088a2541197920b79c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T23:45:54.000Z'}}, {'blockNum': '0x7aa10e', 'uniqueId': '0x1da51e3379ca4512c9ff068b2641f915ed41d377db7e79b72d66a427a8dc757f:log:9', 'hash': '0x1da51e3379ca4512c9ff068b2641f915ed41d377db7e79b72d66a427a8dc757f', 'from': '0xccb197b70f04980dd61cdecc44f283a3fbeef051', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40327.26699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x088a2541197920b79c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-26T23:54:05.000Z'}}, {'blockNum': '0x7aa211', 'uniqueId': '0x5cc5111b640a5dc048bf2033a0dfb02c3974190841e2bc850c67777d12fe846a:log:1', 'hash': '0x5cc5111b640a5dc048bf2033a0dfb02c3974190841e2bc850c67777d12fe846a', 'from': '0x07432494a0b40b0b7bbc8fd196b6470f18682704', 'to': '0x73323b29749cf61313b05f5fe8ab30103e952938', 'value': 3000.034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a1d5d4237e3d0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T00:48:21.000Z'}}, {'blockNum': '0x7aa2a4', 'uniqueId': '0x2638c6ca47b611f345b48b9163808911ad867592fd3ea482d639a6e8af8a4968:log:75', 'hash': '0x2638c6ca47b611f345b48b9163808911ad867592fd3ea482d639a6e8af8a4968', 'from': '0x04a5595c46215ff56b04cf1e7d8883a457dd4d8b', 'to': '0xd36738adf2017d56669cf2bf780029f5a1dd5d14', 'value': 2016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6d499ec6c633800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T01:22:38.000Z'}}, {'blockNum': '0x7aa2fd', 'uniqueId': '0xc9788dc0eaa10ef185ee7b1236e37bd521938aec0251ae3072dcddf43bb32555:log:20', 'hash': '0xc9788dc0eaa10ef185ee7b1236e37bd521938aec0251ae3072dcddf43bb32555', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 110699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1771013b878fb6cc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T01:41:09.000Z'}}, {'blockNum': '0x7aa334', 'uniqueId': '0xf1bb4f847198f0a71acce4969894c7a64c70c18556269d872788a94d6d3aedc5:log:12', 'hash': '0xf1bb4f847198f0a71acce4969894c7a64c70c18556269d872788a94d6d3aedc5', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 110699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1771013b878fb6cc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T01:54:03.000Z'}}, {'blockNum': '0x7aa340', 'uniqueId': '0xba5fba61b9a85e2b98a9f3cebe3d0956a76443a0df0f7708a70c0861866a04fa:log:10', 'hash': '0xba5fba61b9a85e2b98a9f3cebe3d0956a76443a0df0f7708a70c0861866a04fa', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xfbd9583937d9f2330df498f895ba6000c29c38b1', 'value': 591.279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x200da4fdc504318000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T01:57:13.000Z'}}, {'blockNum': '0x7aa37b', 'uniqueId': '0x1f077a0886590f69e0c91f6211df37fbba95dddae161a9b0a2bf750b82aebdac:log:12', 'hash': '0x1f077a0886590f69e0c91f6211df37fbba95dddae161a9b0a2bf750b82aebdac', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8db52dcaed5786b76c21c6379afa952d53c31704', 'value': 349.521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x12f29409a88b4e8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:08:04.000Z'}}, {'blockNum': '0x7aa399', 'uniqueId': '0x3ea4020c8ed3a2c98e62b8cf39c74814a6a107a3ff6f13f659611084f740650d:log:3', 'hash': '0x3ea4020c8ed3a2c98e62b8cf39c74814a6a107a3ff6f13f659611084f740650d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6e07c88eec4077ab94aec699587ab79b1eedcdc9', 'value': 9871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02171ba4b93358dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:14:03.000Z'}}, {'blockNum': '0x7aa3af', 'uniqueId': '0x93b0fe4feda8c45afcb94f963286d18dc06127f6480ee5cd27ea25d202783a78:log:32', 'hash': '0x93b0fe4feda8c45afcb94f963286d18dc06127f6480ee5cd27ea25d202783a78', 'from': '0x6e07c88eec4077ab94aec699587ab79b1eedcdc9', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02171ba4b93358dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:18:29.000Z'}}, {'blockNum': '0x7aa3b9', 'uniqueId': '0xf9ebc8e00c16324393d179987ec6cc598666c57494ec20b64946f681c8d80dae:log:86', 'hash': '0xf9ebc8e00c16324393d179987ec6cc598666c57494ec20b64946f681c8d80dae', 'from': '0x4ed8d16b441721801df8d82e91a5cb34d548dcf2', 'to': '0x13248c6db57dea63d2c4ac53c43aa4679dc007a7', 'value': 202.4331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0af952d7e9d920c000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:20:47.000Z'}}, {'blockNum': '0x7aa3ea', 'uniqueId': '0x4b67c34231e6012f9b50b69d1f0167109fbf66a597ffe144c7109075d10cccf6:log:28', 'hash': '0x4b67c34231e6012f9b50b69d1f0167109fbf66a597ffe144c7109075d10cccf6', 'from': '0x735841e743fd70e6384bc596a64cdbe79743e2a6', 'to': '0xd98774bc8c6f7a2631c9d445fab4abc0a01050ac', 'value': 1953.19500616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x69e2069da1c1b42000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:33:53.000Z'}}, {'blockNum': '0x7aa414', 'uniqueId': '0x6ba25bb553130180e6c9092f99f6fb7d4a9965577ae138b1ae07b2762d405f1b:log:137', 'hash': '0x6ba25bb553130180e6c9092f99f6fb7d4a9965577ae138b1ae07b2762d405f1b', 'from': '0xd5fb4c3659aa41bb5fe3054ce9ef15a9ed627f0b', 'to': '0xf782718333ac4db353667e5a40c5e44d4a26b901', 'value': 22579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04c802922754b8ec0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:44:23.000Z'}}, {'blockNum': '0x7aa41f', 'uniqueId': '0x8fd403f06d203e81e537ec31bccac493abce98d5189e902f90105f107f91b385:log:109', 'hash': '0x8fd403f06d203e81e537ec31bccac493abce98d5189e902f90105f107f91b385', 'from': '0xf782718333ac4db353667e5a40c5e44d4a26b901', 'to': '0x88512327954209056c32544474914e39caeaab92', 'value': 22579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04c802922754b8ec0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:45:49.000Z'}}, {'blockNum': '0x7aa424', 'uniqueId': '0x02df8318fe087c3f6b4e33b577d61ce8552558d590a6315128026e3cb10f16e5:log:61', 'hash': '0x02df8318fe087c3f6b4e33b577d61ce8552558d590a6315128026e3cb10f16e5', 'from': '0x50db91bd6bb0acd2103ca325672bf70b1f6bd9a7', 'to': '0x7bb73699106d6e4caf2c65c2b2705f62ded8def9', 'value': 4821.92485882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010565a66771a7b0a800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:47:36.000Z'}}, {'blockNum': '0x7aa42d', 'uniqueId': '0xa0fdcf01d3bdfa8294c451a3bee1db2a27e1dc3425e27e935ddcf1b8ff8c0a14:log:33', 'hash': '0xa0fdcf01d3bdfa8294c451a3bee1db2a27e1dc3425e27e935ddcf1b8ff8c0a14', 'from': '0x7bb73699106d6e4caf2c65c2b2705f62ded8def9', 'to': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'value': 4821.92485882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010565a66771a7b0a800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:49:02.000Z'}}, {'blockNum': '0x7aa43c', 'uniqueId': '0xe5df45e6e0dbd2cec14fbb4aadecca0042aa3bfc4b9dc9550ce320f85debbc6c:log:61', 'hash': '0xe5df45e6e0dbd2cec14fbb4aadecca0042aa3bfc4b9dc9550ce320f85debbc6c', 'from': '0x4641f8d2deb40769a9c28d0e0e6f63c3e4720ac2', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 4821.92485882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x010565a66771a7b0a800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-27T02:52:36.000Z'}}]}}
Number of returned transfers:  174
Answer is complete
 
symbol           SNGLS
group              CPI
date        2019-06-28
hour             17:00
exchange       binance
Name: 1017, dtype: object
HERE
 Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps:  2019-06-28 17:00:00 2019-06-28 05:00:00 2019-06-29 05:00:00
Unix timestamps:  1561690800.0 1561777200.0
Hex Block Numbers:  0x7abd40 0x7ad635
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7abd76', 'uniqueId': '0x25af890213b7a1b4e6ade56a92c79abce6bf4e8b2f0348df52d9676cbd7a98d5:log:7', 'hash': '0x25af890213b7a1b4e6ade56a92c79abce6bf4e8b2f0348df52d9676cbd7a98d5', 'from': '0x026122654b5c91c8152fce1dcff9a8c086db6fa9', 'to': '0x82b97fe493a62484ea6c85d29c5263be8cbbd215', 'value': 5655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1617', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T03:13:29.000Z'}}, {'blockNum': '0x7abd79', 'uniqueId': '0x94379ea452497747a33ad9d18057686ec96cd8fc4f4335050d72f2d4461b4749:log:40', 'hash': '0x94379ea452497747a33ad9d18057686ec96cd8fc4f4335050d72f2d4461b4749', 'from': '0x82b97fe493a62484ea6c85d29c5263be8cbbd215', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 5655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1617', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T03:14:02.000Z'}}, {'blockNum': '0x7abd8c', 'uniqueId': '0xefd9d722d297bddd9cc648d64f54c09af93d49d1a15d10809428f81322b9d296:log:28', 'hash': '0xefd9d722d297bddd9cc648d64f54c09af93d49d1a15d10809428f81322b9d296', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x1617', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T03:19:25.000Z'}}, {'blockNum': '0x7abe66', 'uniqueId': '0xfb28a0ba3b9afec7907927125d80ba0d728f6be42334b3c5ee003c895ab56218:log:14', 'hash': '0xfb28a0ba3b9afec7907927125d80ba0d728f6be42334b3c5ee003c895ab56218', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf691104b8d26a7a7e48cbca41385d41f5dbcd205', 'value': 1063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0427', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T04:12:40.000Z'}}, {'blockNum': '0x7ac154', 'uniqueId': '0x0419c107976d87c718f584133f00524c4f48c0b62bef9a31d448556b34b9444c:log:29', 'hash': '0x0419c107976d87c718f584133f00524c4f48c0b62bef9a31d448556b34b9444c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2eb7f4d1db6f86db52d52742dedd5f5b7ddb9bfb', 'value': 14286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x37ce', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T07:01:06.000Z'}}, {'blockNum': '0x7ac17a', 'uniqueId': '0x9c2a3e464b4a3d3e17ed52714b1c70d3f8a6235dad479e501dadfd1132a6ff1f:log:27', 'hash': '0x9c2a3e464b4a3d3e17ed52714b1c70d3f8a6235dad479e501dadfd1132a6ff1f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x090cbb66effceb8dd538d8a887291197ab778579', 'value': 96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x60', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T07:08:48.000Z'}}, {'blockNum': '0x7ac2a1', 'uniqueId': '0xf23a903f5efafc5d999a655217cc3059883af17265d0a65ea5d57e4769423220:log:24', 'hash': '0xf23a903f5efafc5d999a655217cc3059883af17265d0a65ea5d57e4769423220', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1c5c23a7e978cf35173d009ca0eea09c898cc651', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T08:13:58.000Z'}}, {'blockNum': '0x7ac2b8', 'uniqueId': '0x48f56bf400b482a0b9ae89d7520c660784b26e113cb4741ecec378817577ac89:log:46', 'hash': '0x48f56bf400b482a0b9ae89d7520c660784b26e113cb4741ecec378817577ac89', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x20226fd7e0af58dae2d84f8e577088207ad2742f', 'value': 796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x031c', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T08:19:03.000Z'}}, {'blockNum': '0x7ac5c7', 'uniqueId': '0x0736a2bd553027dc99695b93adbc855479fb30c87258492369ddd7ab0d719e87:log:37', 'hash': '0x0736a2bd553027dc99695b93adbc855479fb30c87258492369ddd7ab0d719e87', 'from': '0xdb1793f3a201d3ad1fc989bb06918eda11f420e1', 'to': '0x113ad1567da8a95a8439fecb1044decc0966bd88', 'value': 211, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0xd3', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T11:18:11.000Z'}}, {'blockNum': '0x7accd9', 'uniqueId': '0x46a431af850b8db3c71a4bb1ffba53753a5dd0b4538e76407a2f156e28aa0c5a:log:36', 'hash': '0x46a431af850b8db3c71a4bb1ffba53753a5dd0b4538e76407a2f156e28aa0c5a', 'from': '0x03164e5b7196e2536dad2b9ccd17301ec885610b', 'to': '0x0242230e647155bffc769e3298b361d78cde64b7', 'value': 10030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x272e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T17:59:51.000Z'}}, {'blockNum': '0x7acd01', 'uniqueId': '0x1f169af5515ca278e2f04b9c8a00911d15a427ce3177a602acc4cff1c881fd51:log:72', 'hash': '0x1f169af5515ca278e2f04b9c8a00911d15a427ce3177a602acc4cff1c881fd51', 'from': '0x0242230e647155bffc769e3298b361d78cde64b7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x272e', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T18:10:04.000Z'}}, {'blockNum': '0x7aceb1', 'uniqueId': '0x657526df57354106976b1639e8305b95d824f04daf63da9f564153b0204d953b:log:88', 'hash': '0x657526df57354106976b1639e8305b95d824f04daf63da9f564153b0204d953b', 'from': '0x3a1a66656d873413db69994d41cde419c6bda506', 'to': '0x65509f9289a771376c921f95ed7dac33da7e642f', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0bb8', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T19:45:02.000Z'}}, {'blockNum': '0x7ad284', 'uniqueId': '0xe9e4e66a04940bff7ffd9998aecf89730d20728933b7470fe3bfccb6c421d876:log:18', 'hash': '0xe9e4e66a04940bff7ffd9998aecf89730d20728933b7470fe3bfccb6c421d876', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb5f9644f5248e25b76fdc831d33bf5c56c690aa6', 'value': 3535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0dcf', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2019-06-28T23:26:33.000Z'}}]}}
Number of returned transfers:  13
Answer is complete
 
symbol             DNT
group              CPI
date        2019-06-29
hour             16:01
exchange       binance
Name: 1018, dtype: object
HERE
{'binance-smart-chain': '0x2456493e757fdeedf569781f053998a72adfad03'}
No contract for ethereum specified
{'binance-smart-chain': '0x44836708ff32246635d8d08c785f4e779e294598'}
No contract for ethereum specified
 Symbol: DNT, Contract: 0x0abdace70d3790235af448c88547603b945604ea
Datetime timestamps:  2019-06-29 16:01:00 2019-06-29 04:01:00 2019-06-30 04:01:00
Unix timestamps:  1561773660.0 1561860060.0
Hex Block Numbers:  0x7ad53a 0x7aee53
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7ad5a7', 'uniqueId': '0x48d531ee9aceada3f9aa28df47fc7ac4aebff071086d92d96b2b8b028e7b49f2:log:122', 'hash': '0x48d531ee9aceada3f9aa28df47fc7ac4aebff071086d92d96b2b8b028e7b49f2', 'from': '0x53572c351a87335e368d89d9b246594e7ad5ab62', 'to': '0xf608e059558301f15b99b9a4a24c048319a85829', 'value': 1871.78899081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x65784a59fa84f50400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T02:26:20.000Z'}}, {'blockNum': '0x7ad5d1', 'uniqueId': '0xb602c510208713a8af68be1d4d211d2f0b537be241cbaaec1ea94ea66cc44aac:log:140', 'hash': '0xb602c510208713a8af68be1d4d211d2f0b537be241cbaaec1ea94ea66cc44aac', 'from': '0xf1bd71bc7dac6611d8338093bff1ccd359b5e9f8', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T02:36:29.000Z'}}, {'blockNum': '0x7ad66a', 'uniqueId': '0xad8ed152d10ab8c227982fe728f84d399e682916151cc4fb2afe94e66acc9cb3:log:22', 'hash': '0xad8ed152d10ab8c227982fe728f84d399e682916151cc4fb2afe94e66acc9cb3', 'from': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'to': '0xe75b3018229a59ba22d827c031ac6c3b0da79059', 'value': 5389.033112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x012423dba70af9e18000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T03:09:52.000Z'}}, {'blockNum': '0x7ad6ec', 'uniqueId': '0x87a1e7e2bb65ae19c86b8ea9ba0637f8cfe3b8bb264ff98e5ead38b352c6cde7:log:62', 'hash': '0x87a1e7e2bb65ae19c86b8ea9ba0637f8cfe3b8bb264ff98e5ead38b352c6cde7', 'from': '0x225c9f095349d91beb16fa5e2149b8dea9e25357', 'to': '0x402dca1e8993efc5d1e9e1510cab88145bc78e6f', 'value': 3477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xbc7d11761081340000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T03:39:33.000Z'}}, {'blockNum': '0x7ad721', 'uniqueId': '0x2551e7ae2dc5dcb403e0ce2fb6da80f10df1dd5730f878fea0ff587c6e18537c:log:61', 'hash': '0x2551e7ae2dc5dcb403e0ce2fb6da80f10df1dd5730f878fea0ff587c6e18537c', 'from': '0xc332762bd16d54ae675253e73bb65b575594305c', 'to': '0xf7a0a55e7b70479079ae04e50edb0e34bdaa9c10', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T03:52:43.000Z'}}, {'blockNum': '0x7ad74d', 'uniqueId': '0xd5be0cbb4298633c52b1da0bfcf4543045690d923dacb21e8f2b72f9d062346c:log:52', 'hash': '0xd5be0cbb4298633c52b1da0bfcf4543045690d923dacb21e8f2b72f9d062346c', 'from': '0xf7a0a55e7b70479079ae04e50edb0e34bdaa9c10', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T04:04:27.000Z'}}, {'blockNum': '0x7ad755', 'uniqueId': '0xc9178e951f2893f1a5a0ed85e3e99ef525e56ed6daf380e57800eb1ce0f82cc0:log:10', 'hash': '0xc9178e951f2893f1a5a0ed85e3e99ef525e56ed6daf380e57800eb1ce0f82cc0', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 111853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17af90331d6847940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T04:06:04.000Z'}}, {'blockNum': '0x7ad77a', 'uniqueId': '0xfc110e381ba7a7c425228e236f9462efda4d17b295ed1cfcc3b4b4a5682e3328:log:27', 'hash': '0xfc110e381ba7a7c425228e236f9462efda4d17b295ed1cfcc3b4b4a5682e3328', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 111853, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17af90331d6847940000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T04:14:08.000Z'}}, {'blockNum': '0x7ad7c0', 'uniqueId': '0x22e913f28cda51a2aee46a02c1814e8bf3f4d761b3a52640cdcc950a6cca9713:log:3', 'hash': '0x22e913f28cda51a2aee46a02c1814e8bf3f4d761b3a52640cdcc950a6cca9713', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'value': 98080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x14c4ed6d9de388800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T04:27:50.000Z'}}, {'blockNum': '0x7ad7d2', 'uniqueId': '0x75ba7c34734cffc00e612e7ea7fd4793a5ccb0d1bd276959de77bc9bbb59bb25:log:28', 'hash': '0x75ba7c34734cffc00e612e7ea7fd4793a5ccb0d1bd276959de77bc9bbb59bb25', 'from': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 98080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x14c4ed6d9de388800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T04:32:07.000Z'}}, {'blockNum': '0x7ad7f3', 'uniqueId': '0x90e12d531db5308bcb67b954fb0d0bd91f1eb178537702378d39dca9f11c93d5:log:2', 'hash': '0x90e12d531db5308bcb67b954fb0d0bd91f1eb178537702378d39dca9f11c93d5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 3574814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02f4ff0e24f7b04db80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T04:38:41.000Z'}}, {'blockNum': '0x7ad82a', 'uniqueId': '0x45e71d06713216147b1475f73e5287944710f4dadaa5b92b34f9164f95965052:log:19', 'hash': '0x45e71d06713216147b1475f73e5287944710f4dadaa5b92b34f9164f95965052', 'from': '0x42d3b1e30f39191f6da2701e31cfc82574ea14d5', 'to': '0x7835b602751652609963cd8cf8db82f96cd55d64', 'value': 39508.44875077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x085dc1de4e17b3587400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T04:47:40.000Z'}}, {'blockNum': '0x7ad847', 'uniqueId': '0x8f4d97704491f74c315760d4699ebb916823b017b649bdb13a297b29cbd03cab:log:10', 'hash': '0x8f4d97704491f74c315760d4699ebb916823b017b649bdb13a297b29cbd03cab', 'from': '0x7835b602751652609963cd8cf8db82f96cd55d64', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39508.44875077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x085dc1de4e17b3587400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T04:54:04.000Z'}}, {'blockNum': '0x7ad9c0', 'uniqueId': '0xfd8dbe765cbac7472cb29b408885e15129793935652cd4c985d11c61a4d7468e:log:3', 'hash': '0xfd8dbe765cbac7472cb29b408885e15129793935652cd4c985d11c61a4d7468e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x351a77fcb9ce775cd51685ab5b0be5534abb4d3b', 'value': 1872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x657b3801b80b400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T06:22:02.000Z'}}, {'blockNum': '0x7ada61', 'uniqueId': '0x35676c516eb3675d11eba4afbd7212bbef64830ca14070977d0e25c966a8bbd2:log:0', 'hash': '0x35676c516eb3675d11eba4afbd7212bbef64830ca14070977d0e25c966a8bbd2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1d163a711f07b1c49823ff3466424a9d9e7d2c16', 'value': 803660.5443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xaa2e8680d8cc34eec000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T06:56:40.000Z'}}, {'blockNum': '0x7adaf8', 'uniqueId': '0x5521901f51ec548388a95e5a7881b122be7fce53176673ca1dfff44373109c8f:log:47', 'hash': '0x5521901f51ec548388a95e5a7881b122be7fce53176673ca1dfff44373109c8f', 'from': '0x20403b577199648a170b6bce3b8e0c1d43cd05d7', 'to': '0x8b6b84223dd613a3714a0e3f54bf65ff9e955e29', 'value': 889.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x303e427bf2e3610000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T07:29:16.000Z'}}, {'blockNum': '0x7adc24', 'uniqueId': '0xffbf3a1f93b6df82ba72d765f2775097266d8b85c12c8e3216b8f6b438905967:log:26', 'hash': '0xffbf3a1f93b6df82ba72d765f2775097266d8b85c12c8e3216b8f6b438905967', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 85021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1200ff65af6fa6540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T08:40:13.000Z'}}, {'blockNum': '0x7adc56', 'uniqueId': '0x91533d53b121de463bd4ccf1fa4c99d04bf723e2c73c7949c8bf94a304206bbf:log:82', 'hash': '0x91533d53b121de463bd4ccf1fa4c99d04bf723e2c73c7949c8bf94a304206bbf', 'from': '0x10170672e9b351c49e8bda7697d12f66705a783e', 'to': '0x069909e52956870cdf1a041f53c237dbd1ba0024', 'value': 122999.99993408416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e6421ebc8bb5a6', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T08:50:50.000Z'}}, {'blockNum': '0x7adc66', 'uniqueId': '0xfdb3054403558b7ba55e93b0dd0e7922922dea5c368c5ec187917df242fb6409:log:20', 'hash': '0xfdb3054403558b7ba55e93b0dd0e7922922dea5c368c5ec187917df242fb6409', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 85021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1200ff65af6fa6540000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T08:54:03.000Z'}}, {'blockNum': '0x7adc8b', 'uniqueId': '0x1af90f35a4d9d3cd3298557cae08cfa3c93dc20d1f77e0321fceccfbf0623ac1:log:78', 'hash': '0x1af90f35a4d9d3cd3298557cae08cfa3c93dc20d1f77e0321fceccfbf0623ac1', 'from': '0x069909e52956870cdf1a041f53c237dbd1ba0024', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 122999.99993408416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1a0bd7e6421ebc8bb5a6', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T09:03:34.000Z'}}, {'blockNum': '0x7ade39', 'uniqueId': '0xdd7483798c33a486a2fa4390327ff9fffe383106f3f02063b9823bbb63f67d1d:log:54', 'hash': '0xdd7483798c33a486a2fa4390327ff9fffe383106f3f02063b9823bbb63f67d1d', 'from': '0x6c9b379550aa7187c1385eab5ab3fd0cefe48525', 'to': '0x1afc0634fda8bd3cc301dd4b3c81a3f546ffa8f8', 'value': 858.314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2e877fe37520a10000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T10:41:21.000Z'}}, {'blockNum': '0x7adfc5', 'uniqueId': '0x48415fc423ae5219b5568e0baea77904f274f4305ff039faf66ece4c6743d04e:log:9', 'hash': '0x48415fc423ae5219b5568e0baea77904f274f4305ff039faf66ece4c6743d04e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8360c6a8373f95cc7e832eab5b9e23bdbb8436b7', 'value': 4874.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01083b1d0361b0fc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T12:07:17.000Z'}}, {'blockNum': '0x7ae038', 'uniqueId': '0x625708c8f4496b479858695c10a45456bab47415c83665459467e15311549414:log:7', 'hash': '0x625708c8f4496b479858695c10a45456bab47415c83665459467e15311549414', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xef63f6a87bd0719f63a81eca49bc53615fd070f1', 'value': 16675.182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0387f6a330196bcb0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T12:35:10.000Z'}}, {'blockNum': '0x7ae061', 'uniqueId': '0xcf7e6061e2ef3a6bbf3bbb19c4614dedf852aab0861b71308e062dc3cac2f58a:log:2', 'hash': '0xcf7e6061e2ef3a6bbf3bbb19c4614dedf852aab0861b71308e062dc3cac2f58a', 'from': '0x589d6a1c371e927566df2a3c84a2ca9e940462bf', 'to': '0x9ddac6c981572aa3f4ab7ffa3d64356d94093206', 'value': 13000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02c0bb3dd30c4e200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T12:44:20.000Z'}}, {'blockNum': '0x7ae0d2', 'uniqueId': '0x40ad81a224a816fffad6fefe29eceee8368ce7233467e24ebe86c52f6fdacc40:log:3', 'hash': '0x40ad81a224a816fffad6fefe29eceee8368ce7233467e24ebe86c52f6fdacc40', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'value': 107807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16d43aab9208b91c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T13:05:21.000Z'}}, {'blockNum': '0x7ae0e0', 'uniqueId': '0x32e128b487a8074aaaa358382583da9a556785574b3652eb504d452481eb62f7:log:15', 'hash': '0x32e128b487a8074aaaa358382583da9a556785574b3652eb504d452481eb62f7', 'from': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 107807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x16d43aab9208b91c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T13:09:01.000Z'}}, {'blockNum': '0x7ae11c', 'uniqueId': '0x73b27282cc48f4aac1bc35eb397f32c0c18fe955861115b5b2a146ad2db45b96:log:19', 'hash': '0x73b27282cc48f4aac1bc35eb397f32c0c18fe955861115b5b2a146ad2db45b96', 'from': '0xdc113710349087b9ed228091a25630f129841317', 'to': '0x21036daf4dc590ca6afbefe7a7fabd1d5b002463', 'value': 3949.37412014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd6189375962198f800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T13:22:45.000Z'}}, {'blockNum': '0x7ae142', 'uniqueId': '0xf1d8625e76e7ceec9bc025c86649ac0af7d69249018cd28738e4b6b17fb02ce5:log:23', 'hash': '0xf1d8625e76e7ceec9bc025c86649ac0af7d69249018cd28738e4b6b17fb02ce5', 'from': '0x871b2df866785137fc5e2a6961e6675a510c1caf', 'to': '0x4cb1dce8774e518fc4240b5efbd6d081f2ba1ed7', 'value': 8190.5580824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01bc02d3bc81989dc000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T13:31:33.000Z'}}, {'blockNum': '0x7ae16a', 'uniqueId': '0x203c7d0cd5470d9add3aef60b5133ca1d4381583b9a9564b907c03cc073c25c8:log:6', 'hash': '0x203c7d0cd5470d9add3aef60b5133ca1d4381583b9a9564b907c03cc073c25c8', 'from': '0xfbc94a465191d4dca8b6bb710e2e31edf96aa0a9', 'to': '0x9d5fbd21dd5108c0eaa62a2a78f0444e514ebcf8', 'value': 376.14506744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x14640fb9ef488ce000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T13:40:17.000Z'}}, {'blockNum': '0x7ae221', 'uniqueId': '0x04566013f082b0b873d6c09e7b29b0ecd13e03b643cd8ef9cf5c742b24f462bd:log:22', 'hash': '0x04566013f082b0b873d6c09e7b29b0ecd13e03b643cd8ef9cf5c742b24f462bd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 101279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x15725878acdc431c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T14:25:24.000Z'}}, {'blockNum': '0x7ae244', 'uniqueId': '0xee6542b561830d0a942b3515776706e178d97bfbac1ecb1b2875d560f141e200:log:63', 'hash': '0xee6542b561830d0a942b3515776706e178d97bfbac1ecb1b2875d560f141e200', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 101279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x15725878acdc431c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T14:34:03.000Z'}}, {'blockNum': '0x7ae27d', 'uniqueId': '0x42807b85648ca26ae4a3e0edd135758e35613e1434ac7a6678a88fa2e00745a5:log:9', 'hash': '0x42807b85648ca26ae4a3e0edd135758e35613e1434ac7a6678a88fa2e00745a5', 'from': '0x2d952fecf6775a18790b17048a88bb98ea36dfa1', 'to': '0xa1c0249d93e5e1c94aeeccc35bd31bfdd3dc048e', 'value': 3041.893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa4e6bededc33508000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T14:47:07.000Z'}}, {'blockNum': '0x7ae282', 'uniqueId': '0x7a63915df7953845e13d2af13b7555f7665a88a78e4f58b6a1a4ec42ab0ec487:log:9', 'hash': '0x7a63915df7953845e13d2af13b7555f7665a88a78e4f58b6a1a4ec42ab0ec487', 'from': '0xa1c0249d93e5e1c94aeeccc35bd31bfdd3dc048e', 'to': '0x64f0a38e5e32bec0f972c9392ef648dbe48f1476', 'value': 3041.893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa4e6bededc33508000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T14:47:37.000Z'}}, {'blockNum': '0x7ae288', 'uniqueId': '0xd3e9bbab4d7fb7e4defa1ab58f4e90d6c3fcf67403ac179e65dc55367e69564d:log:43', 'hash': '0xd3e9bbab4d7fb7e4defa1ab58f4e90d6c3fcf67403ac179e65dc55367e69564d', 'from': '0xb8d5405532aa219e2196768b0c0e4e650f03c484', 'to': '0x7f65c3722761cccad2dee6551b03d05fa4c9ca70', 'value': 12437.99017947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02a243c9d8ee82700c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T14:49:01.000Z'}}, {'blockNum': '0x7ae2a3', 'uniqueId': '0xdbaf0f116e1a24a8138644ff2b058fd8d51a5521c2cd798d728dc271f98c3bf0:log:3', 'hash': '0xdbaf0f116e1a24a8138644ff2b058fd8d51a5521c2cd798d728dc271f98c3bf0', 'from': '0x7f65c3722761cccad2dee6551b03d05fa4c9ca70', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12437.99017947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02a243c9d8ee82700c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T14:54:05.000Z'}}, {'blockNum': '0x7ae2ad', 'uniqueId': '0xa28469dbc44af8e6dbee995c530314172e4006837a117828df9fe06d02aea1c3:log:73', 'hash': '0xa28469dbc44af8e6dbee995c530314172e4006837a117828df9fe06d02aea1c3', 'from': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'to': '0xb8470ca59dc735163862fe130de6724591e31b19', 'value': 777554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa4a7496bce58f2080000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T14:55:35.000Z'}}, {'blockNum': '0x7ae2b0', 'uniqueId': '0x655884fea9b20c68f37ffdd74adf499d418a0d64bab1cf3767ae582af8c449fa:log:58', 'hash': '0x655884fea9b20c68f37ffdd74adf499d418a0d64bab1cf3767ae582af8c449fa', 'from': '0x75f621f83451924d0a3f2f33c6e97bb27809a1dd', 'to': '0xc69156df88602b3c1f256fa65a84e1a2f414f99c', 'value': 350062.99099999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4a20f3e8914671559c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T14:56:47.000Z'}}, {'blockNum': '0x7ae2b4', 'uniqueId': '0xee38ef2336770bd9740599856c0df4ce998303418894ec88e2db60c80437e437:log:66', 'hash': '0xee38ef2336770bd9740599856c0df4ce998303418894ec88e2db60c80437e437', 'from': '0xb8470ca59dc735163862fe130de6724591e31b19', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 777554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa4a7496bce58f2080000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T14:57:40.000Z'}}, {'blockNum': '0x7ae2c3', 'uniqueId': '0xbb14cb98818f43a1b3843953d866ef91fe5592cc1858fec8031c22722b65b6cd:log:25', 'hash': '0xbb14cb98818f43a1b3843953d866ef91fe5592cc1858fec8031c22722b65b6cd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xf25be20cbfc17159a195da432cdc30b21f4a398b', 'value': 845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2dcebb0eff85140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T15:01:30.000Z'}}, {'blockNum': '0x7ae2ce', 'uniqueId': '0xdcf3204f5005a2d55ff977e01993187be2c45545af92ef707b4c4540ab6bdab8:log:7', 'hash': '0xdcf3204f5005a2d55ff977e01993187be2c45545af92ef707b4c4540ab6bdab8', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 777554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xa4a7496bce58f2080000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T15:04:09.000Z'}}, {'blockNum': '0x7ae2ce', 'uniqueId': '0x19047895eb2e05f8831128f4c2d406ce04cca7c27429ea69c583cad26d658360:log:12', 'hash': '0x19047895eb2e05f8831128f4c2d406ce04cca7c27429ea69c583cad26d658360', 'from': '0xc69156df88602b3c1f256fa65a84e1a2f414f99c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 350062.99099999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4a20f3e8914671559c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T15:04:09.000Z'}}, {'blockNum': '0x7ae37b', 'uniqueId': '0x2c4b10ea9a73afecf9d583219d37751bf0b21d7d020aa602a88bb25983435fe8:log:20', 'hash': '0x2c4b10ea9a73afecf9d583219d37751bf0b21d7d020aa602a88bb25983435fe8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x7f8501a6b1b7f39f0c119775a7c5991a5e936204', 'value': 3856.3720625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd10de9c6e8acfe6800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T15:44:16.000Z'}}, {'blockNum': '0x7ae3c8', 'uniqueId': '0xa43e951edd19521542485fa882b9bb68b496dfdcd4fc6ea14b127b1db79f3434:log:73', 'hash': '0xa43e951edd19521542485fa882b9bb68b496dfdcd4fc6ea14b127b1db79f3434', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 3876.9005239798284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd22acd85dc3f724fc5', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:00:53.000Z'}}, {'blockNum': '0x7ae3c8', 'uniqueId': '0x37be7f4644278cd3674eab9fed345505a2e30287516d78c0db16e54f68b6fecd:log:75', 'hash': '0x37be7f4644278cd3674eab9fed345505a2e30287516d78c0db16e54f68b6fecd', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 24139.78938394816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x051c9edff29d7f9c238d', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:00:53.000Z'}}, {'blockNum': '0x7ae3c9', 'uniqueId': '0x4cc1be3bbb79a835e34ef32c280290a6f11e894aa73ceb7a51bf5bce82822fea:log:4', 'hash': '0x4cc1be3bbb79a835e34ef32c280290a6f11e894aa73ceb7a51bf5bce82822fea', 'from': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1062.5688398024008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x399a1ada11bd0c73cd', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:00:59.000Z'}}, {'blockNum': '0x7ae3c9', 'uniqueId': '0x4cc1be3bbb79a835e34ef32c280290a6f11e894aa73ceb7a51bf5bce82822fea:log:8', 'hash': '0x4cc1be3bbb79a835e34ef32c280290a6f11e894aa73ceb7a51bf5bce82822fea', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'value': 1062.5679949568537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x399a17d9afce520000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:00:59.000Z'}}, {'blockNum': '0x7ae3c9', 'uniqueId': '0x58e72a9768e550950f9473025ee89f1788c8ce4b3983eaaa68a81e166a35b415:log:121', 'hash': '0x58e72a9768e550950f9473025ee89f1788c8ce4b3983eaaa68a81e166a35b415', 'from': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'to': '0x563463ea9a7cad4bb6efaf6771822d0942069fa0', 'value': 996241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2f6553414f6bba40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:00:59.000Z'}}, {'blockNum': '0x7ae3ca', 'uniqueId': '0x3730b9137188bb3fffb619206e895b419d8bb3e338937f041a3b19bec041bad4:log:2', 'hash': '0x3730b9137188bb3fffb619206e895b419d8bb3e338937f041a3b19bec041bad4', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xb33cc3147d70ce2af31b2b90411bd6333eea0ea7', 'value': 24742.381459977896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x053d49850f1839616082', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:01:15.000Z'}}, {'blockNum': '0x7ae3cc', 'uniqueId': '0x3345ebe06bae89ddb2b16415c3437935d672ff23f56dd5bfd48a830ee477652d:log:160', 'hash': '0x3345ebe06bae89ddb2b16415c3437935d672ff23f56dd5bfd48a830ee477652d', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 28016.689907927986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x05eec9ad7879bf0e7352', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:01:27.000Z'}}, {'blockNum': '0x7ae3cd', 'uniqueId': '0x375db435d9499b586819565e17abb475364d837deece7e1ead96c82768fe2a13:log:45', 'hash': '0x375db435d9499b586819565e17abb475364d837deece7e1ead96c82768fe2a13', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 77410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1064678de03e0c480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:02:23.000Z'}}, {'blockNum': '0x7ae3cd', 'uniqueId': '0xb7bec50af94c89a0f37a7fc4016c79f4202b12bd7bd99f7b08184e6bf3dfb626:log:46', 'hash': '0xb7bec50af94c89a0f37a7fc4016c79f4202b12bd7bd99f7b08184e6bf3dfb626', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 33747.93921175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07257abd44d76b0b7c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:02:23.000Z'}}, {'blockNum': '0x7ae3cd', 'uniqueId': '0x350bd6dcde6609e27ecfdd03fcf652f09c0ccd5dc4f00c2f6508519aa170c796:log:47', 'hash': '0x350bd6dcde6609e27ecfdd03fcf652f09c0ccd5dc4f00c2f6508519aa170c796', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'value': 43983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x095052bdbc1425dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:02:23.000Z'}}, {'blockNum': '0x7ae3cd', 'uniqueId': '0x2060a8f32c873efb2eaea7c0809eb448298cbb1de53870f5cd689397d9e5827d:log:48', 'hash': '0x2060a8f32c873efb2eaea7c0809eb448298cbb1de53870f5cd689397d9e5827d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'value': 309016.55024483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x416fd21d07d21d052c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:02:23.000Z'}}, {'blockNum': '0x7ae3cd', 'uniqueId': '0x78bb6b8475fa55b949148c7c41d4b82753bd0ba1f433dbb1c1ae17f7b7076e98:log:49', 'hash': '0x78bb6b8475fa55b949148c7c41d4b82753bd0ba1f433dbb1c1ae17f7b7076e98', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 37777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07ffe530a4e03ba40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:02:23.000Z'}}, {'blockNum': '0x7ae3ce', 'uniqueId': '0x3a2907332301f0411807162a7bf8d8eb8785595f49e5458d08046bef4396557a:log:44', 'hash': '0x3a2907332301f0411807162a7bf8d8eb8785595f49e5458d08046bef4396557a', 'from': '0xb33cc3147d70ce2af31b2b90411bd6333eea0ea7', 'to': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'value': 24742.381459977896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x053d49850f1839616082', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:02:49.000Z'}}, {'blockNum': '0x7ae3d1', 'uniqueId': '0x87259a38db3a4e4420fd5de5140df349749437626435a6713b1c90559266be27:log:23', 'hash': '0x87259a38db3a4e4420fd5de5140df349749437626435a6713b1c90559266be27', 'from': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'to': '0x405ea7b54fc59396507589dd5e9c8066d3d9ff8e', 'value': 995428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2ca428fdc6c23100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:03:23.000Z'}}, {'blockNum': '0x7ae3d4', 'uniqueId': '0xf7a99c05e89f84cd36e80610b62cc49a48f0ffbdf03f80d6a47e39535ececb98:log:74', 'hash': '0xf7a99c05e89f84cd36e80610b62cc49a48f0ffbdf03f80d6a47e39535ececb98', 'from': '0x563463ea9a7cad4bb6efaf6771822d0942069fa0', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 996241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2f6553414f6bba40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:03:36.000Z'}}, {'blockNum': '0x7ae3d6', 'uniqueId': '0x242b743254ca791f07fb78271348f655e2aa4dd18bda2ccad0bdbfaf1a9f8f17:log:55', 'hash': '0x242b743254ca791f07fb78271348f655e2aa4dd18bda2ccad0bdbfaf1a9f8f17', 'from': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'to': '0x701efc67b29b311fb7b94008d740f756ff7d0431', 'value': 1046003.3180602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xdd7ff41824a7ae1c9000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:04:09.000Z'}}, {'blockNum': '0x7ae3dd', 'uniqueId': '0x64091ba4cac014633fe39a58aa7567945f102d708cde4569f82407733a0bb91b:log:104', 'hash': '0x64091ba4cac014633fe39a58aa7567945f102d708cde4569f82407733a0bb91b', 'from': '0x405ea7b54fc59396507589dd5e9c8066d3d9ff8e', 'to': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'value': 995428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2ca428fdc6c23100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:05:37.000Z'}}, {'blockNum': '0x7ae3de', 'uniqueId': '0x4670d1f5219c4f78daca8a6dd239fab100610a0bf650d51758ca311e2a8f5cf4:log:48', 'hash': '0x4670d1f5219c4f78daca8a6dd239fab100610a0bf650d51758ca311e2a8f5cf4', 'from': '0xf385c7fb774a1d03115a50bf087e081b4b5d26e3', 'to': '0x070090846d257c54e23814645818e15011df2737', 'value': 3956.5912831116434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd67cbbf9122c81fee7', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:05:49.000Z'}}, {'blockNum': '0x7ae3de', 'uniqueId': '0x130354a603e18262e4229aae283b4b3c38c9629e49d15308732ffaccd543fa2b:log:85', 'hash': '0x130354a603e18262e4229aae283b4b3c38c9629e49d15308732ffaccd543fa2b', 'from': '0x701efc67b29b311fb7b94008d740f756ff7d0431', 'to': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'value': 1046003.3180602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xdd7ff41824a7ae1c9000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:05:49.000Z'}}, {'blockNum': '0x7ae3de', 'uniqueId': '0x62b1cda0555943586b78cf21eea8720925e5722f9bf5f998193b491b21473927:log:97', 'hash': '0x62b1cda0555943586b78cf21eea8720925e5722f9bf5f998193b491b21473927', 'from': '0xe93baf5356f6ff406856b06deb4dce4c8f194d3d', 'to': '0x49d749614b48a407aeeabbe109b4a065de222ace', 'value': 58329.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0c5a127982c105880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:05:49.000Z'}}, {'blockNum': '0x7ae3e6', 'uniqueId': '0x0cf746c7b65c429c02f31bded4093d5d3201af09bf80d9371cc23556f2b45324:log:58', 'hash': '0x0cf746c7b65c429c02f31bded4093d5d3201af09bf80d9371cc23556f2b45324', 'from': '0x49d749614b48a407aeeabbe109b4a065de222ace', 'to': '0x881585f5689932de6b0c1419c71ce16a58ca9b81', 'value': 58329.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0c5a127982c105880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:08:09.000Z'}}, {'blockNum': '0x7ae3e7', 'uniqueId': '0x6d752aa91ab58001605c0c9a9b66010df91111a29dd2ab5009a7576ff54282af:log:17', 'hash': '0x6d752aa91ab58001605c0c9a9b66010df91111a29dd2ab5009a7576ff54282af', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xd00c0b32349b6215eb8b9f00e4e503f46b46b225', 'value': 3181.44508704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xac776b7aa4f6e88000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:08:32.000Z'}}, {'blockNum': '0x7ae3f3', 'uniqueId': '0x9f9ff11f5a7c15f4c86bef26524c8339753257c37b2562b8f4224e2d41dd0b59:log:4', 'hash': '0x9f9ff11f5a7c15f4c86bef26524c8339753257c37b2562b8f4224e2d41dd0b59', 'from': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 995428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2ca428fdc6c23100000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:11:15.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0x085c853c66c684b2067668e39b6777bfb70860a3b5d426fecff0d7bca9000e12:log:14', 'hash': '0x085c853c66c684b2067668e39b6777bfb70860a3b5d426fecff0d7bca9000e12', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 343932.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x48d49b7aca93c90e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0x2c843adb4abb9d05a9dbefc92f8b0b020f62b4bc83f50dc6d2991c891bd7c922:log:40', 'hash': '0x2c843adb4abb9d05a9dbefc92f8b0b020f62b4bc83f50dc6d2991c891bd7c922', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30789.737754859845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x06851d727d05de40640c', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0xca754fcb2c550ff16be0cfc5abc70a5707d2208ecf6c94917c777538f31369fb:log:42', 'hash': '0xca754fcb2c550ff16be0cfc5abc70a5707d2208ecf6c94917c777538f31369fb', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77410, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1064678de03e0c480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0xf37051f9088464ac246847403420a8aa1b34144a51e1e2a73382b50a26f87e5b:log:43', 'hash': '0xf37051f9088464ac246847403420a8aa1b34144a51e1e2a73382b50a26f87e5b', 'from': '0x247824cca63f26831bc60b409cb9337d5b8e495e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x095052bdbc1425dc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0x3601beb51ce09132b8d2487360f4fc967bf4401d9d2b2ad077d2f98b09dde926:log:45', 'hash': '0x3601beb51ce09132b8d2487360f4fc967bf4401d9d2b2ad077d2f98b09dde926', 'from': '0x070090846d257c54e23814645818e15011df2737', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9434.748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01ff756e46900f260000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0x44b771d7ba12660bb2b8aca99659ec561d1d44644aea8243484ad4b41604394b:log:46', 'hash': '0x44b771d7ba12660bb2b8aca99659ec561d1d44644aea8243484ad4b41604394b', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 996241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xd2f6553414f6bba40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0xf81add119a38c6924c2fda8a4229eb4c584744e28ab111c833525cde4685a1e2:log:47', 'hash': '0xf81add119a38c6924c2fda8a4229eb4c584744e28ab111c833525cde4685a1e2', 'from': '0x3bc2b2bc5125eacdc64a8188b135a2997dd7324b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24742.381459977896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x053d49850f1839616082', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0x72063789f3dd3e867cf99dcf8bc0f9ff1871435302cdfc9d1e99e0a5e845737e:log:48', 'hash': '0x72063789f3dd3e867cf99dcf8bc0f9ff1871435302cdfc9d1e99e0a5e845737e', 'from': '0xd00c0b32349b6215eb8b9f00e4e503f46b46b225', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10753.28742399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0246efd752c2a7441c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0x9d238f0d5176e03ad5cc764a066545ba4660dc5c85f7197cd20d56b7ca3ec291:log:51', 'hash': '0x9d238f0d5176e03ad5cc764a066545ba4660dc5c85f7197cd20d56b7ca3ec291', 'from': '0x4bc966c0b047278f3c02b52b5d0b9c6a7be35e93', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1046003.3180602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xdd7ff41824a7ae1c9000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0x2af92a09a9c0d0fb414e5f35ea08dea772c437698d631eb788d27ae2ae3d6ce4:log:52', 'hash': '0x2af92a09a9c0d0fb414e5f35ea08dea772c437698d631eb788d27ae2ae3d6ce4', 'from': '0x881585f5689932de6b0c1419c71ce16a58ca9b81', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 58329.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0c5a127982c105880000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae3ff', 'uniqueId': '0xf0411128ba44552092f3b7394a17a065ba6973c72ba7fc832c1f861bc7cd12ea:log:56', 'hash': '0xf0411128ba44552092f3b7394a17a065ba6973c72ba7fc832c1f861bc7cd12ea', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 37777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07ffe530a4e03ba40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:14:07.000Z'}}, {'blockNum': '0x7ae408', 'uniqueId': '0x2765a105246b66188e74df26314c534f6248b09a54c108f2ca33022d65be8fd9:log:98', 'hash': '0x2765a105246b66188e74df26314c534f6248b09a54c108f2ca33022d65be8fd9', 'from': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'to': '0xaf7887a676a907415543350e44bb5b6b6cfad648', 'value': 640665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x87aa84ed075a62c40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:16:16.000Z'}}, {'blockNum': '0x7ae412', 'uniqueId': '0xc9355560aa2c5049d88582a2483780ff820f43cf0dfdcf50c99f0c8c5ab0508f:log:12', 'hash': '0xc9355560aa2c5049d88582a2483780ff820f43cf0dfdcf50c99f0c8c5ab0508f', 'from': '0xaf7887a676a907415543350e44bb5b6b6cfad648', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 640665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x87aa84ed075a62c40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:17:23.000Z'}}, {'blockNum': '0x7ae424', 'uniqueId': '0x491616aa307e06b8765376e0b940e008ea300046ae13b062b66c4a1c442af993:log:7', 'hash': '0x491616aa307e06b8765376e0b940e008ea300046ae13b062b66c4a1c442af993', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'value': 80354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1103ffc2f2430a480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:20:29.000Z'}}, {'blockNum': '0x7ae42c', 'uniqueId': '0xe27d785835dabcd346dd0c462610e8cc05f9671ac3acce8bb1f232833c7a6fff:log:6', 'hash': '0xe27d785835dabcd346dd0c462610e8cc05f9671ac3acce8bb1f232833c7a6fff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x30cbf2f084ac27e377d04364bc177dd84ea82ab5', 'value': 2548.786536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8a2b84ca71325e8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:22:53.000Z'}}, {'blockNum': '0x7ae433', 'uniqueId': '0x25ddeae6b2da98d2bb5e89e2f6b8aa55e5cb20581d44f4b7fb03956be4565084:log:38', 'hash': '0x25ddeae6b2da98d2bb5e89e2f6b8aa55e5cb20581d44f4b7fb03956be4565084', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 343932.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x48d49b7aca93c90e0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:24:29.000Z'}}, {'blockNum': '0x7ae433', 'uniqueId': '0x2ff61594195c4d8e95f74ae0009093311cff3577a036cc41eadde6b639b5fc8b:log:39', 'hash': '0x2ff61594195c4d8e95f74ae0009093311cff3577a036cc41eadde6b639b5fc8b', 'from': '0xd00ae2d78d950b07e6cc30dfbebcd30a02344068', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 317143.62391496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x432863ead3b8e5d62000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:24:29.000Z'}}, {'blockNum': '0x7ae433', 'uniqueId': '0x2b5cbfc887e5bb2f16d46cdd4d77e2b89d1d573d23b5656970af5203769c0c60:log:44', 'hash': '0x2b5cbfc887e5bb2f16d46cdd4d77e2b89d1d573d23b5656970af5203769c0c60', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 640665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x87aa84ed075a62c40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:24:29.000Z'}}, {'blockNum': '0x7ae438', 'uniqueId': '0x28845ad9cb7d8ec30dd9a1af3d26d038c07809719c34ef4f4f4f699c3a6a4c2f:log:0', 'hash': '0x28845ad9cb7d8ec30dd9a1af3d26d038c07809719c34ef4f4f4f699c3a6a4c2f', 'from': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 80354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1103ffc2f2430a480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:25:21.000Z'}}, {'blockNum': '0x7ae44f', 'uniqueId': '0x0a634435788471a5de2b9ceea56ae0115660a06b4cea49f30b86eab353bee3ca:log:32', 'hash': '0x0a634435788471a5de2b9ceea56ae0115660a06b4cea49f30b86eab353bee3ca', 'from': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'to': '0xb6146e7f1940d3dad20c750def8b6b8fd014a514', 'value': 628563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x851a77f0167f416c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:31:28.000Z'}}, {'blockNum': '0x7ae457', 'uniqueId': '0x04188484cd9bd0145bb599ed1d94b4723a7d09741eabaeca493616c8e1c1d402:log:78', 'hash': '0x04188484cd9bd0145bb599ed1d94b4723a7d09741eabaeca493616c8e1c1d402', 'from': '0xb6146e7f1940d3dad20c750def8b6b8fd014a514', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 628563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x851a77f0167f416c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:32:00.000Z'}}, {'blockNum': '0x7ae46d', 'uniqueId': '0x5bfb7a7371032c04c35daa00b09eae0e1b639c945b4976c108e8d0e9724e9c0f:log:88', 'hash': '0x5bfb7a7371032c04c35daa00b09eae0e1b639c945b4976c108e8d0e9724e9c0f', 'from': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'to': '0xab828354f90d17bbd689e99d9ed49d6c1cb8ad13', 'value': 468676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x633efa14202100900000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:35:54.000Z'}}, {'blockNum': '0x7ae46e', 'uniqueId': '0x19582ef9a9eb0b36c6e941bcfb48b2e1e8ff62df9fd9dacf16429d2fde313717:log:3', 'hash': '0x19582ef9a9eb0b36c6e941bcfb48b2e1e8ff62df9fd9dacf16429d2fde313717', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 75248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0fef33c6e70261c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:36:37.000Z'}}, {'blockNum': '0x7ae46e', 'uniqueId': '0x2cc46462c9485aac610587048a9bbd071172228caacaac0c485e73b7b2d7935b:log:4', 'hash': '0x2cc46462c9485aac610587048a9bbd071172228caacaac0c485e73b7b2d7935b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 358935.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4c01f0c9906c11fd0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:36:37.000Z'}}, {'blockNum': '0x7ae475', 'uniqueId': '0xd0aa56cd7543d04f17cbe2989b8a8aaa323bbbd0e198adcda77f3a720f7b236b:log:32', 'hash': '0xd0aa56cd7543d04f17cbe2989b8a8aaa323bbbd0e198adcda77f3a720f7b236b', 'from': '0xab828354f90d17bbd689e99d9ed49d6c1cb8ad13', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 468676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x633efa14202100900000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:37:21.000Z'}}, {'blockNum': '0x7ae488', 'uniqueId': '0xaa006e03c0bd3ec494325d0f3c5d253a8de80f02bab7699dd711ae8661f49af8:log:33', 'hash': '0xaa006e03c0bd3ec494325d0f3c5d253a8de80f02bab7699dd711ae8661f49af8', 'from': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'to': '0x36050d6605498644b4b7de8a5a263d3a6bcb31bb', 'value': 539118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7229a535166ae2f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:42:03.000Z'}}, {'blockNum': '0x7ae491', 'uniqueId': '0x89c951dc225d6664b460139780f7b276e140499c53ddec327c88b4ca9f83ad56:log:7', 'hash': '0x89c951dc225d6664b460139780f7b276e140499c53ddec327c88b4ca9f83ad56', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 358935.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4c01f0c9906c11fd0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:44:04.000Z'}}, {'blockNum': '0x7ae491', 'uniqueId': '0x74c0fe9e6be205b59e6bdae082605c6fd2f82459cf083a5d5ae7a3d7738d1d2a:log:8', 'hash': '0x74c0fe9e6be205b59e6bdae082605c6fd2f82459cf083a5d5ae7a3d7738d1d2a', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1097239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xe859720436a041fc0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:44:04.000Z'}}, {'blockNum': '0x7ae491', 'uniqueId': '0x4076e1dd749290a99fccd10943b81b20a436f8d3f526dcd18cbf800b3b593eb5:log:18', 'hash': '0x4076e1dd749290a99fccd10943b81b20a436f8d3f526dcd18cbf800b3b593eb5', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0fef33c6e70261c00000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:44:04.000Z'}}, {'blockNum': '0x7ae491', 'uniqueId': '0x2305ef54fa22e48e27eafcb0798bde664fca42299f3e5ecbadfc9be5de884d6a:log:35', 'hash': '0x2305ef54fa22e48e27eafcb0798bde664fca42299f3e5ecbadfc9be5de884d6a', 'from': '0x36050d6605498644b4b7de8a5a263d3a6bcb31bb', 'to': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'value': 539118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7229a535166ae2f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:44:04.000Z'}}, {'blockNum': '0x7ae4a2', 'uniqueId': '0xd37b81b43207792f167774730c35fb0a823113a19900ac41bb2e8cca3d9bd2d2:log:2', 'hash': '0xd37b81b43207792f167774730c35fb0a823113a19900ac41bb2e8cca3d9bd2d2', 'from': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 539118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x7229a535166ae2f80000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T16:48:29.000Z'}}, {'blockNum': '0x7ae4e6', 'uniqueId': '0x5e361aeb2d6660a56be6afd31dfd496eb2a567fad24c06582ad75373047685c9:log:69', 'hash': '0x5e361aeb2d6660a56be6afd31dfd496eb2a567fad24c06582ad75373047685c9', 'from': '0x46dad7de02e982abcd0d409fc53a95c7852648d7', 'to': '0x4cfb4779ff8eb972c7f9b435081ae45ecfe5063e', 'value': 676471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8f3f90ff0308d77c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:02:01.000Z'}}, {'blockNum': '0x7ae4f4', 'uniqueId': '0x5686e055ac544430dd6d864270e03f7a00797883b10bc6f4e8c76459a43d3100:log:74', 'hash': '0x5686e055ac544430dd6d864270e03f7a00797883b10bc6f4e8c76459a43d3100', 'from': '0x4cfb4779ff8eb972c7f9b435081ae45ecfe5063e', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 676471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8f3f90ff0308d77c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:05:59.000Z'}}, {'blockNum': '0x7ae507', 'uniqueId': '0x3c79ad5982b5a4cf061d9394dde3e5aea61da6ab662fbefa24e756d63798d464:log:6', 'hash': '0x3c79ad5982b5a4cf061d9394dde3e5aea61da6ab662fbefa24e756d63798d464', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 357042.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x4b9b557738b1c5a10000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:12:45.000Z'}}, {'blockNum': '0x7ae50e', 'uniqueId': '0xfb73172f57cdf2e6bd3f7a786fb3fa2979e45e88d12d52c4bcf9311bfb7fdba9:log:10', 'hash': '0xfb73172f57cdf2e6bd3f7a786fb3fa2979e45e88d12d52c4bcf9311bfb7fdba9', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 676471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x8f3f90ff0308d77c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:14:22.000Z'}}, {'blockNum': '0x7ae51c', 'uniqueId': '0x4402f167dd4c65009c711f4bcc77f94fbcee4b4cdb5ff5ba4f682f932abc45c8:log:22', 'hash': '0x4402f167dd4c65009c711f4bcc77f94fbcee4b4cdb5ff5ba4f682f932abc45c8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'value': 520503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6e38862ff4ea1a7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:16:27.000Z'}}, {'blockNum': '0x7ae51c', 'uniqueId': '0x301bd771ad37a8dd2684fd74c494362b118a75ded1edb227ebcd53eb9c75d584:log:23', 'hash': '0x301bd771ad37a8dd2684fd74c494362b118a75ded1edb227ebcd53eb9c75d584', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 504717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6ae0c36dd2ba1e140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:16:27.000Z'}}, {'blockNum': '0x7ae51c', 'uniqueId': '0x6e11df72460aa1fcc1390a7881d0839dde5108525d2501873b660d905452c7bf:log:24', 'hash': '0x6e11df72460aa1fcc1390a7881d0839dde5108525d2501873b660d905452c7bf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 458777.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x61265d9aa6d9221f0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:16:27.000Z'}}, {'blockNum': '0x7ae52e', 'uniqueId': '0xceac598723df61fcb0aaf7bb8052d0c5b1ee8a53a6d4359e12a00f16a2eac389:log:22', 'hash': '0xceac598723df61fcb0aaf7bb8052d0c5b1ee8a53a6d4359e12a00f16a2eac389', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'value': 436198.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x5c5e5f9ce4c4d1140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:20:11.000Z'}}, {'blockNum': '0x7ae540', 'uniqueId': '0x84bed52b0a3b5a1fbab8c8c913bd4050ee17f8957d5385f47fb53f9491cbe241:log:63', 'hash': '0x84bed52b0a3b5a1fbab8c8c913bd4050ee17f8957d5385f47fb53f9491cbe241', 'from': '0x3295b3dc108b46c479d9165a716021774febf9e1', 'to': '0x94761392bb9b78be2d2d529af8a44fe649a55953', 'value': 55499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc09b5875b21c4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:23:16.000Z'}}, {'blockNum': '0x7ae544', 'uniqueId': '0x0ab7db24307fd4bbff32e0114d767f0f0217c92c76dff7040b7bdefe4862a209:log:13', 'hash': '0x0ab7db24307fd4bbff32e0114d767f0f0217c92c76dff7040b7bdefe4862a209', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 504717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6ae0c36dd2ba1e140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:23:59.000Z'}}, {'blockNum': '0x7ae544', 'uniqueId': '0x8863ad1480b051119faa193c3aca5473c9abff8130d7e1cbffad831293167ce2:log:14', 'hash': '0x8863ad1480b051119faa193c3aca5473c9abff8130d7e1cbffad831293167ce2', 'from': '0xa034d5cc63ba64ac5bad7dd6feb26213e4338685', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 520503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6e38862ff4ea1a7c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:23:59.000Z'}}, {'blockNum': '0x7ae549', 'uniqueId': '0x0c5adfb59edf961ee8b108dd10f564aec250e85c3dabc42afc6240c6cf124d4c:log:15', 'hash': '0x0c5adfb59edf961ee8b108dd10f564aec250e85c3dabc42afc6240c6cf124d4c', 'from': '0x94761392bb9b78be2d2d529af8a44fe649a55953', 'to': '0x67b1686f3d77dbae60f83b813d6e64091161b640', 'value': 55499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc09b5875b21c4c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:25:22.000Z'}}, {'blockNum': '0x7ae5a9', 'uniqueId': '0xdcca7133f8d00cf880003f43b0910b42451423416b3941823db46f38223da7ad:log:10', 'hash': '0xdcca7133f8d00cf880003f43b0910b42451423416b3941823db46f38223da7ad', 'from': '0xbcfb9b4aaeda03109fe4e9502cb713f5d8feceea', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1252018.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01092012aec44fb8d40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:44:04.000Z'}}, {'blockNum': '0x7ae5ef', 'uniqueId': '0xb0f571a9d045c8f9d4b7fe7b31e74d921341f8225fcb7d769640eb6d06fe9c92:log:2', 'hash': '0xb0f571a9d045c8f9d4b7fe7b31e74d921341f8225fcb7d769640eb6d06fe9c92', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x702eccb2b9bf886e27b0698601dc735501b9b546', 'value': 274963.44592594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x3a39cc5b82de96410800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T17:58:55.000Z'}}, {'blockNum': '0x7ae621', 'uniqueId': '0xbd5adac7928d5e3a4aebb192a2dda1e2569e266bbd979417081ac925540013eb:log:1', 'hash': '0xbd5adac7928d5e3a4aebb192a2dda1e2569e266bbd979417081ac925540013eb', 'from': '0x9ddac6c981572aa3f4ab7ffa3d64356d94093206', 'to': '0x1b3fbfaabbc6de317fe0af4a38bcc5412288db8c', 'value': 13000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02c0bb3dd30c4e200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T18:11:31.000Z'}}, {'blockNum': '0x7ae633', 'uniqueId': '0x9b82a114c173a1b051ef2a3c8f41350118c2fbee4b296a6136b45da67c230c40:log:0', 'hash': '0x9b82a114c173a1b051ef2a3c8f41350118c2fbee4b296a6136b45da67c230c40', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 474002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x645fb32d2dc583080000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T18:15:13.000Z'}}, {'blockNum': '0x7ae637', 'uniqueId': '0x6fb015d7346f5208a53bec8af1d71b27b8451a731912fc77cba00d753301eae8:log:2', 'hash': '0x6fb015d7346f5208a53bec8af1d71b27b8451a731912fc77cba00d753301eae8', 'from': '0x1b3fbfaabbc6de317fe0af4a38bcc5412288db8c', 'to': '0x9ddac6c981572aa3f4ab7ffa3d64356d94093206', 'value': 13000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x02c0bb3dd30c4e200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T18:16:17.000Z'}}, {'blockNum': '0x7ae63c', 'uniqueId': '0x7dabb816e85a8dafa44f97bd5ed2e343f1284169993f606b4a985550f58c13e2:log:21', 'hash': '0x7dabb816e85a8dafa44f97bd5ed2e343f1284169993f606b4a985550f58c13e2', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x83f84e33a37c7051892b7ebb5cf55951f3febd00', 'value': 5893.56760983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x013f7dae43ae511f7c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T18:17:43.000Z'}}, {'blockNum': '0x7ae661', 'uniqueId': '0xb31b63ae0b17ce47b751f6a0633dcba4a1d2fb6b2274e4917e412c890618341c:log:8', 'hash': '0xb31b63ae0b17ce47b751f6a0633dcba4a1d2fb6b2274e4917e412c890618341c', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 474002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x645fb32d2dc583080000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T18:24:01.000Z'}}, {'blockNum': '0x7ae6c1', 'uniqueId': '0x2b2a1ab00d1cbee54404bd5fc64659d4ad39f9cf8ac4cdbcf87eb5749835f8af:log:25', 'hash': '0x2b2a1ab00d1cbee54404bd5fc64659d4ad39f9cf8ac4cdbcf87eb5749835f8af', 'from': '0x1cb5b2bb4030220ad5417229a7a1e3c373cdd2f6', 'to': '0x0874b3d15079c6a4b48a1f03b44f44f3c278fe02', 'value': 9800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021342520d5fec200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T18:43:16.000Z'}}, {'blockNum': '0x7ae723', 'uniqueId': '0x48b429cf81ba7896410d1892d3f020b32f4e9ba18cf224b4ad3a1aebe9f7c48e:log:93', 'hash': '0x48b429cf81ba7896410d1892d3f020b32f4e9ba18cf224b4ad3a1aebe9f7c48e', 'from': '0x0874b3d15079c6a4b48a1f03b44f44f3c278fe02', 'to': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'value': 9499.999999999955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0202fefbf2d7c03d2a87', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:05:45.000Z'}}, {'blockNum': '0x7ae72b', 'uniqueId': '0xb7bc5a80f115042c21c77c1a6aa5fd0c124e096c83acd6ead6a39f5b4f0cc92d:log:70', 'hash': '0xb7bc5a80f115042c21c77c1a6aa5fd0c124e096c83acd6ead6a39f5b4f0cc92d', 'from': '0x0874b3d15079c6a4b48a1f03b44f44f3c278fe02', 'to': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'value': 369.00000000004525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1400e758f449d6d579', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:07:04.000Z'}}, {'blockNum': '0x7ae72f', 'uniqueId': '0x356ff3a67f2d563f05fc5e14f9a4b99bbd7c685d30dbee051957e2be3c0acafc:log:78', 'hash': '0x356ff3a67f2d563f05fc5e14f9a4b99bbd7c685d30dbee051957e2be3c0acafc', 'from': '0x1cc9bd44f156c8b9a010c42ea832176b8f262d11', 'to': '0x052c4e3fc727ac16bf8bae5357a278364ba29a59', 'value': 19772.20467321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x042fda7600a78886c400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:07:55.000Z'}}, {'blockNum': '0x7ae730', 'uniqueId': '0x8c0b9770d890fc10d2076303ac03089a7c51149767938fdc34faaca4bb717e91:log:7', 'hash': '0x8c0b9770d890fc10d2076303ac03089a7c51149767938fdc34faaca4bb717e91', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2077.85953077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x70a417fa4381b23400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:09:15.000Z'}}, {'blockNum': '0x7ae731', 'uniqueId': '0xe15637b8267bcf17c2f94979e256704a383d356089bf4be9be11606a930c97ab:log:89', 'hash': '0xe15637b8267bcf17c2f94979e256704a383d356089bf4be9be11606a930c97ab', 'from': '0x052c4e3fc727ac16bf8bae5357a278364ba29a59', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 19772.20467321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x042fda7600a78886c400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:09:45.000Z'}}, {'blockNum': '0x7ae734', 'uniqueId': '0x025bbc86564f961e349c6d9e4874bac4ab9bcf1c42e9057a1429915e02c68268:log:19', 'hash': '0x025bbc86564f961e349c6d9e4874bac4ab9bcf1c42e9057a1429915e02c68268', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xe0528a6fc29fe536652635bf95d62e026db6a6c9', 'value': 2077.85953077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x70a417fa4381b23400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:10:21.000Z'}}, {'blockNum': '0x7ae76b', 'uniqueId': '0x5fe9c57009d1d7ebce0249a044bc46afbbab80b47f92825171f33b14d0fdd926:log:17', 'hash': '0x5fe9c57009d1d7ebce0249a044bc46afbbab80b47f92825171f33b14d0fdd926', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22317.67026153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x04b9d7e46ac6dad68400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:24:04.000Z'}}, {'blockNum': '0x7ae76b', 'uniqueId': '0x017ce35dd867843b2065c8e39fbf17b6e274aea7182f68ee2f7f93d165dbae06:log:31', 'hash': '0x017ce35dd867843b2065c8e39fbf17b6e274aea7182f68ee2f7f93d165dbae06', 'from': '0x52c5d7abcdd18c0c4a9843ce5bf59b22ee41ce4d', 'to': '0xabeab14c3b04a047d16269475793b57e460eb57f', 'value': 463800.43819533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6236ac11029d76c29400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:24:04.000Z'}}, {'blockNum': '0x7ae79b', 'uniqueId': '0xf3c29b0cecdceabc12827fc05cc109a8ae3c2ae5533aa42317e82ffa4f67d850:log:30', 'hash': '0xf3c29b0cecdceabc12827fc05cc109a8ae3c2ae5533aa42317e82ffa4f67d850', 'from': '0xabeab14c3b04a047d16269475793b57e460eb57f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 463800.43819533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6236ac11029d76c29400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:33:40.000Z'}}, {'blockNum': '0x7ae7d1', 'uniqueId': '0x7c010aeef0ea69f0a1ac0763ec7da45a109a94c3fc4b906d97234d6be47b86f5:log:33', 'hash': '0x7c010aeef0ea69f0a1ac0763ec7da45a109a94c3fc4b906d97234d6be47b86f5', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x89f43c2c2b56760feaaf8fecc7969deba2795f90', 'value': 30688.00050828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x067f998f2e491c58b000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T19:46:18.000Z'}}, {'blockNum': '0x7ae81e', 'uniqueId': '0x70809ac1f6a85f3fd762ba278f0d5be109fcd39c58a8583c6c0d9dc8f88961a8:log:1', 'hash': '0x70809ac1f6a85f3fd762ba278f0d5be109fcd39c58a8583c6c0d9dc8f88961a8', 'from': '0x89f43c2c2b56760feaaf8fecc7969deba2795f90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30688.00050828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x067f998f2e491c58b000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T20:04:03.000Z'}}, {'blockNum': '0x7ae886', 'uniqueId': '0x7510d4a73ff6bf3f8c6ac0615930185cb7b27650b27072ca17914cdf7378236d:log:2', 'hash': '0x7510d4a73ff6bf3f8c6ac0615930185cb7b27650b27072ca17914cdf7378236d', 'from': '0x9acd175e8e69e1abfbb25f7ad70636f9f7b865dd', 'to': '0x2c207bdff79c82cd4852a4d3073fd5ea0f5266ad', 'value': 1478.63207705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x50282467f2cf454400', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T20:28:00.000Z'}}, {'blockNum': '0x7ae921', 'uniqueId': '0x32f985fda738fe5e1dea0a77aa690d17bf5942302ea9e768c11207e65be703b6:log:34', 'hash': '0x32f985fda738fe5e1dea0a77aa690d17bf5942302ea9e768c11207e65be703b6', 'from': '0x6924a03bb710eaf199ab6ac9f2bb148215ae9b5d', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 665.4573682125828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2413137ea52550efa1', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T21:00:09.000Z'}}, {'blockNum': '0x7ae921', 'uniqueId': '0x32f985fda738fe5e1dea0a77aa690d17bf5942302ea9e768c11207e65be703b6:log:37', 'hash': '0x32f985fda738fe5e1dea0a77aa690d17bf5942302ea9e768c11207e65be703b6', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xaa3b3810c8aada6cbd2ce262699903ad7ae6a7ef', 'value': 665.4573682125829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2413137ea525520000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T21:00:09.000Z'}}, {'blockNum': '0x7ae96c', 'uniqueId': '0xaa92f174849082ceac5e9e0e6a8fa809d865d85fb3bb054f9552f5c0fc372e63:log:16', 'hash': '0xaa92f174849082ceac5e9e0e6a8fa809d865d85fb3bb054f9552f5c0fc372e63', 'from': '0x41c80f484e7a44ac7b7bff1a10987db702334a78', 'to': '0xc747006cbf8a9b1fc004888fb3a0e8668a46ba5a', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T21:17:41.000Z'}}, {'blockNum': '0x7ae9ea', 'uniqueId': '0x661aa66d26106dd3b91b0581925210c88e194402233a1bd1eefeab3845698e9f:log:0', 'hash': '0x661aa66d26106dd3b91b0581925210c88e194402233a1bd1eefeab3845698e9f', 'from': '0xa1a9e878a8b33143eb696bc51ac99100f3bad2e1', 'to': '0x7370a884ff711baab2089c6303facd20183afb82', 'value': 21000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0472698b413b43200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T21:47:47.000Z'}}, {'blockNum': '0x7aea06', 'uniqueId': '0xd936c79a3ca62cdfcba67ef4e7dd7f7c197c3874941c6a798845189484ca567c:log:56', 'hash': '0xd936c79a3ca62cdfcba67ef4e7dd7f7c197c3874941c6a798845189484ca567c', 'from': '0x7370a884ff711baab2089c6303facd20183afb82', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0472698b413b43200000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T21:54:56.000Z'}}, {'blockNum': '0x7aeb2f', 'uniqueId': '0x54d085506887944e01fac3524173542ab981e695181cf095211ed1a67d91dc3c:log:2', 'hash': '0x54d085506887944e01fac3524173542ab981e695181cf095211ed1a67d91dc3c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x36088d1e6b5040b7e83c18f71aafcf65f239088f', 'value': 49945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a93861cb00c84c40000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T22:59:29.000Z'}}, {'blockNum': '0x7aeb37', 'uniqueId': '0xf72f245559e7ac4cccbfb78c0e3493e9c8df8f0bf3e17db58b27536cbdb3d37f:log:10', 'hash': '0xf72f245559e7ac4cccbfb78c0e3493e9c8df8f0bf3e17db58b27536cbdb3d37f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'value': 37249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07e345b7d256fd640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:01:07.000Z'}}, {'blockNum': '0x7aeb38', 'uniqueId': '0x2322cf5d915f1bdc6dc660f1f7ff240640a0650040fd9da72239d402b962a2cc:log:24', 'hash': '0x2322cf5d915f1bdc6dc660f1f7ff240640a0650040fd9da72239d402b962a2cc', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'value': 90401.456375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1324ac3aa59e77427000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:01:54.000Z'}}, {'blockNum': '0x7aeb3b', 'uniqueId': '0x5219745b10b81bab0e8bd1a1eda4f95cc6ef1f908dfd2f0606f028a6d6ad46ee:log:17', 'hash': '0x5219745b10b81bab0e8bd1a1eda4f95cc6ef1f908dfd2f0606f028a6d6ad46ee', 'from': '0x03d509fd2dd159cff15dd9ed45878158ac6847dc', 'to': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'value': 37249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x07e345b7d256fd640000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:02:39.000Z'}}, {'blockNum': '0x7aeb3d', 'uniqueId': '0xbc85d7a3d0c213478f7da7dd947f103d59e3a4be411708af97f832f3aa7c3fca:log:6', 'hash': '0xbc85d7a3d0c213478f7da7dd947f103d59e3a4be411708af97f832f3aa7c3fca', 'from': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 90401.456375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x1324ac3aa59e77427000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:02:48.000Z'}}, {'blockNum': '0x7aeb3d', 'uniqueId': '0x41cc0cdc8eb8c9066215426712dc74b9bbc1f38bcf0ffa1897580cd2e6adc479:log:8', 'hash': '0x41cc0cdc8eb8c9066215426712dc74b9bbc1f38bcf0ffa1897580cd2e6adc479', 'from': '0x36088d1e6b5040b7e83c18f71aafcf65f239088f', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 49944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a93783bf958dd600000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:02:48.000Z'}}, {'blockNum': '0x7aeb4a', 'uniqueId': '0x8ab42d15a7397babb5b9aa623419286bce94d6abbaa95525b048897ee6bbbf6e:log:13', 'hash': '0x8ab42d15a7397babb5b9aa623419286bce94d6abbaa95525b048897ee6bbbf6e', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 90607.9843224598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x132fde614f9a0b8e0d6a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:05:13.000Z'}}, {'blockNum': '0x7aeb50', 'uniqueId': '0x4920c9f50692bb5d9f3d2077936faaafa82e56beb648ca31872533737f58dd1d:log:75', 'hash': '0x4920c9f50692bb5d9f3d2077936faaafa82e56beb648ca31872533737f58dd1d', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 90607.9843224598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x132fde614f9a0b8e0d6a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:06:23.000Z'}}, {'blockNum': '0x7aeb5c', 'uniqueId': '0x4d0e48552a9ae24a40c1e89dc6a5a1c676918ca2c52ab877b6ab0d59fcb80bbd:log:18', 'hash': '0x4d0e48552a9ae24a40c1e89dc6a5a1c676918ca2c52ab877b6ab0d59fcb80bbd', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x36088d1e6b5040b7e83c18f71aafcf65f239088f', 'value': 49914.69680699755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a91e1921e90fd9b0e30', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:09:25.000Z'}}, {'blockNum': '0x7aeb64', 'uniqueId': '0x247a6dc3d9eb278f7a88a7c675642c55c36b4aed1f7e61d9c3348873499dc9a3:log:1', 'hash': '0x247a6dc3d9eb278f7a88a7c675642c55c36b4aed1f7e61d9c3348873499dc9a3', 'from': '0x36088d1e6b5040b7e83c18f71aafcf65f239088f', 'to': '0x8a478d1f9779e198e66c679101edf0e73d5eacef', 'value': 49915.69680699755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a91ef72d544a4ff0e30', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:10:41.000Z'}}, {'blockNum': '0x7aeb71', 'uniqueId': '0xebe75bd958064161a4f0800118d40dca29e2bc8cbc9266edce9743aa2a2e48ac:log:16', 'hash': '0xebe75bd958064161a4f0800118d40dca29e2bc8cbc9266edce9743aa2a2e48ac', 'from': '0x1655ddd39b423671627f9e9fc810499c79cf019b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0920c7ebd69fb4480000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:14:29.000Z'}}, {'blockNum': '0x7aeb71', 'uniqueId': '0x47abd36aee1a8f90a6a9f0083fa8f6f43eff8760ff5f2cefa8b34c140462f477:log:49', 'hash': '0x47abd36aee1a8f90a6a9f0083fa8f6f43eff8760ff5f2cefa8b34c140462f477', 'from': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90607.9843224598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x132fde614f9a0b8e0d6a', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:14:29.000Z'}}, {'blockNum': '0x7aeb7c', 'uniqueId': '0xd43a0e6a4e1b3d1c15c8b0249eb751ae209839a860881c5079f788be442856f4:log:18', 'hash': '0xd43a0e6a4e1b3d1c15c8b0249eb751ae209839a860881c5079f788be442856f4', 'from': '0x8a478d1f9779e198e66c679101edf0e73d5eacef', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 49915.69680699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0a91ef72d542e3018c00', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:16:14.000Z'}}, {'blockNum': '0x7aeb83', 'uniqueId': '0xd4a166f0152b297e2357c268db49f5ae21ee29cb9c842c708e997f2009d56bfa:log:3', 'hash': '0xd4a166f0152b297e2357c268db49f5ae21ee29cb9c842c708e997f2009d56bfa', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x93ae4b7012482313f608a76b01fad5e1d09ef70a', 'value': 75195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0fec544113d0ba0c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:17:41.000Z'}}, {'blockNum': '0x7aeb8e', 'uniqueId': '0x5123ede6ae8eea6c462b1e7527241d7a8777bda13eb5858433fde1d3f6131a05:log:5', 'hash': '0x5123ede6ae8eea6c462b1e7527241d7a8777bda13eb5858433fde1d3f6131a05', 'from': '0x93ae4b7012482313f608a76b01fad5e1d09ef70a', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 75195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0fec544113d0ba0c0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:20:53.000Z'}}, {'blockNum': '0x7aebba', 'uniqueId': '0x269af155d482bd0c3b7afee9db5d0f2cf1e476835b5a9c65a960a36b49972db6:log:93', 'hash': '0x269af155d482bd0c3b7afee9db5d0f2cf1e476835b5a9c65a960a36b49972db6', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x22a49133c5f451485909756bc6c6c76e9cd3465d', 'value': 2777.790073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x969594ca07eb649000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:27:51.000Z'}}, {'blockNum': '0x7aebc9', 'uniqueId': '0x7e619f6afe8a9b0e995d9d3097b55099aaa05a5381712a7d21046666d5328a13:log:4', 'hash': '0x7e619f6afe8a9b0e995d9d3097b55099aaa05a5381712a7d21046666d5328a13', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'value': 18641.2648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03f28b8471f2392a0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:30:31.000Z'}}, {'blockNum': '0x7aebcd', 'uniqueId': '0xec9e1697a1ff0abaa82513475808f0843e20b49ac875183bb4a1fdc920510c7c:log:59', 'hash': '0xec9e1697a1ff0abaa82513475808f0843e20b49ac875183bb4a1fdc920510c7c', 'from': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 18641.2648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x03f28b8471f2392a0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:31:24.000Z'}}, {'blockNum': '0x7aebe0', 'uniqueId': '0x71e63c1472eebea3976af680ac3dffc1d45d2cf94a2e6cdd641a1e3a99484939:log:12', 'hash': '0x71e63c1472eebea3976af680ac3dffc1d45d2cf94a2e6cdd641a1e3a99484939', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x93ae4b7012482313f608a76b01fad5e1d09ef70a', 'value': 112910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8dd05792e6b780000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:37:25.000Z'}}, {'blockNum': '0x7aebe5', 'uniqueId': '0x165f2d3b1cee1bb44f3f3e0af8e3038c3600091770be0d99fa9cd93c9bf4ffc6:log:30', 'hash': '0x165f2d3b1cee1bb44f3f3e0af8e3038c3600091770be0d99fa9cd93c9bf4ffc6', 'from': '0x93ae4b7012482313f608a76b01fad5e1d09ef70a', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 112910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8dd05792e6b780000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-29T23:38:33.000Z'}}, {'blockNum': '0x7aec3f', 'uniqueId': '0xb396533fd382872f5f2eac50454470f9ed53c02f8663fc4131b8a0bd2463c317:log:24', 'hash': '0xb396533fd382872f5f2eac50454470f9ed53c02f8663fc4131b8a0bd2463c317', 'from': '0xd5c7d01b87a50b9476280675229de3306c68caeb', 'to': '0x9d0acb259e1ed8a164e2718b92f92e4501a3a524', 'value': 99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x055de6a779bbac0000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T00:01:23.000Z'}}, {'blockNum': '0x7aec4b', 'uniqueId': '0x958ba0112d58ed32bb0984025324ea8a7f64838b3ae55566e2c8882a3f276250:log:125', 'hash': '0x958ba0112d58ed32bb0984025324ea8a7f64838b3ae55566e2c8882a3f276250', 'from': '0x25b2c17312677817a85222e09ab18c76ed99bfa4', 'to': '0x9d0acb259e1ed8a164e2718b92f92e4501a3a524', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x2b5e3af16b18800000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T00:04:25.000Z'}}, {'blockNum': '0x7aec79', 'uniqueId': '0x47710f285cf799bffdc665701a10af223df5189b469acd042aa64417925832ff:log:38', 'hash': '0x47710f285cf799bffdc665701a10af223df5189b469acd042aa64417925832ff', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'value': 39747.636497044776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x086ab943e20ef99a6ca4', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T00:14:26.000Z'}}, {'blockNum': '0x7aec83', 'uniqueId': '0x1ca12febaaf83e568ffd1f7ee57b2b06de2bafc8685ad5b23652f1fbb540099b:log:18', 'hash': '0x1ca12febaaf83e568ffd1f7ee57b2b06de2bafc8685ad5b23652f1fbb540099b', 'from': '0x6427fc587266813b6993ae4c8de672640cb3b43f', 'to': '0x9de0c99a315f29d212add78809c9a532a6e6910a', 'value': 39747.636497044776, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x086ab943e20ef99a6ca4', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T00:16:06.000Z'}}, {'blockNum': '0x7aec90', 'uniqueId': '0x0b038369c67f5223c4cb10e1886eb09040cedea897e62bfec1c7027289bd253b:log:6', 'hash': '0x0b038369c67f5223c4cb10e1886eb09040cedea897e62bfec1c7027289bd253b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'value': 60046.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb724751f07a97f8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T00:18:34.000Z'}}, {'blockNum': '0x7aec94', 'uniqueId': '0x36bb5497b8227eb9cd908a791484c5421818d0d94f934dd2184aff40b335aa19:log:0', 'hash': '0x36bb5497b8227eb9cd908a791484c5421818d0d94f934dd2184aff40b335aa19', 'from': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'to': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'value': 60046.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb724751f07a97f8000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T00:19:10.000Z'}}, {'blockNum': '0x7aec98', 'uniqueId': '0x6d632138c520515c255f596b27846e04da256c359772a875f3a39d8e9a40bfbe:log:49', 'hash': '0x6d632138c520515c255f596b27846e04da256c359772a875f3a39d8e9a40bfbe', 'from': '0x9de0c99a315f29d212add78809c9a532a6e6910a', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 39747.63649704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x086ab943e20ddcf5a000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T00:19:57.000Z'}}, {'blockNum': '0x7aed15', 'uniqueId': '0x1f775f39d79bdb7b3b1025143494a4a2e7a0f8e63326b0cbef0c7e55ad52ef14:log:29', 'hash': '0x1f775f39d79bdb7b3b1025143494a4a2e7a0f8e63326b0cbef0c7e55ad52ef14', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 8402.590681298074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01c7815ed9cea323c541', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T00:47:03.000Z'}}, {'blockNum': '0x7aed1c', 'uniqueId': '0x6b11d6d77956bd43a1f27e7fa53f3be73e584e9fcf76ed2f4762edf425841d4f:log:35', 'hash': '0x6b11d6d77956bd43a1f27e7fa53f3be73e584e9fcf76ed2f4762edf425841d4f', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 8402.590681298074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x01c7815ed9cea323c541', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T00:48:21.000Z'}}, {'blockNum': '0x7aed85', 'uniqueId': '0x7893eb38f9f734bf1084ac1b662a00cded206701a6b8d6c3c799d34c6f8c3ad9:log:7', 'hash': '0x7893eb38f9f734bf1084ac1b662a00cded206701a6b8d6c3c799d34c6f8c3ad9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x066d87dc92f58006e4f749491573b29532f4ec7b', 'value': 6799.41623886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x017098db146458df7800', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T01:13:41.000Z'}}, {'blockNum': '0x7aedb1', 'uniqueId': '0x5b0b0b19c66ff0dbe5df98e16f0fc935028cf864ec70979bb30bfe99df48deb3:log:38', 'hash': '0x5b0b0b19c66ff0dbe5df98e16f0fc935028cf864ec70979bb30bfe99df48deb3', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c86b0b5e07259f8ff70f03cb39c758ee03f0645', 'value': 1571.797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x553510b3c338a88000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T01:24:53.000Z'}}, {'blockNum': '0x7aedb3', 'uniqueId': '0xb8d6c25bd72d0bed54bb1779f628b20a1ce62cc790513953a4dd980f3097ab05:log:24', 'hash': '0xb8d6c25bd72d0bed54bb1779f628b20a1ce62cc790513953a4dd980f3097ab05', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x04fdf38035fedd699237c547dc731485f13d90c7', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T01:25:35.000Z'}}, {'blockNum': '0x7aedc2', 'uniqueId': '0x1869e5e993e1f7b7c031868b9d98aa9972763872b401785b7b98324f52d0349c:log:65', 'hash': '0x1869e5e993e1f7b7c031868b9d98aa9972763872b401785b7b98324f52d0349c', 'from': '0x00df9d99fda659353b830c1051627a5b79a64603', 'to': '0x8bcdef81eeb529e4f7d41912f906551836763ee4', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb469471f80140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T01:28:46.000Z'}}, {'blockNum': '0x7aedcc', 'uniqueId': '0x3e3c0b908d08c34cf400bff1869dc09ecc8d5039aa984aa350db7e1bbeb72607:log:19', 'hash': '0x3e3c0b908d08c34cf400bff1869dc09ecc8d5039aa984aa350db7e1bbeb72607', 'from': '0x8bcdef81eeb529e4f7d41912f906551836763ee4', 'to': '0xf8306a00f15fe3240a0d0ad8bf00151d218b1df2', 'value': 13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DNT', 'category': 'erc20', 'rawContract': {'value': '0xb469471f80140000', 'address': '0x0abdace70d3790235af448c88547603b945604ea', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-06-30T01:30:38.000Z'}}]}}
Number of returned transfers:  167
Answer is complete
 
symbol             VIB
group              CPI
date        2019-07-02
hour             17:00
exchange       binance
Name: 1019, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2019-07-02 17:00:00 2019-07-02 05:00:00 2019-07-03 05:00:00
Unix timestamps:  1562036400.0 1562122800.0
Hex Block Numbers:  0x7b21a7 0x7b3a8c
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7b24df', 'uniqueId': '0xdb0c765cf35c5a7eb6d810a23a3acd298c5c0ba55a32fba5cb0efaf155b70582:log:0', 'hash': '0xdb0c765cf35c5a7eb6d810a23a3acd298c5c0ba55a32fba5cb0efaf155b70582', 'from': '0x7f123aff5e4f7dfc03c8cd020db87edd09e90b76', 'to': '0xd8823cdb50cb1aede9c174c4d7de2c52bebb0a0c', 'value': 135613.3065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1cb79cb107a8807c4000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T06:04:15.000Z'}}, {'blockNum': '0x7b24f2', 'uniqueId': '0xc09311cda0d26ccfecb182d8c2e426845a69c909b195390cdb85c77a168e30d2:log:28', 'hash': '0xc09311cda0d26ccfecb182d8c2e426845a69c909b195390cdb85c77a168e30d2', 'from': '0xd8823cdb50cb1aede9c174c4d7de2c52bebb0a0c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 135613.3065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1cb79cb107a8807c4000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T06:08:06.000Z'}}, {'blockNum': '0x7b2537', 'uniqueId': '0x73071f0e4d4e32d3291a2e0b3abfcecdb558e60eab70754be21d7af48cae8726:log:74', 'hash': '0x73071f0e4d4e32d3291a2e0b3abfcecdb558e60eab70754be21d7af48cae8726', 'from': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 8646.197960116071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01d4b619c33499700000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T06:25:00.000Z'}}, {'blockNum': '0x7b2537', 'uniqueId': '0x73071f0e4d4e32d3291a2e0b3abfcecdb558e60eab70754be21d7af48cae8726:log:76', 'hash': '0x73071f0e4d4e32d3291a2e0b3abfcecdb558e60eab70754be21d7af48cae8726', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 8646.197960116071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01d4b619c33499700000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T06:25:00.000Z'}}, {'blockNum': '0x7b2550', 'uniqueId': '0x95e293da5cc86c0f132fc53d9e88f0e6a9d6d45b6040eb42679b74fa81bb64b1:log:4', 'hash': '0x95e293da5cc86c0f132fc53d9e88f0e6a9d6d45b6040eb42679b74fa81bb64b1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'value': 8648.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01d4d07f2a6707aa0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T06:30:04.000Z'}}, {'blockNum': '0x7b268d', 'uniqueId': '0x8f3f741de27873635d239b01d421534abbceb39ff1494cbacbfc5deb566dddae:log:43', 'hash': '0x8f3f741de27873635d239b01d421534abbceb39ff1494cbacbfc5deb566dddae', 'from': '0xc1a3bd11097e41db419bc64356a49dcdc99dd081', 'to': '0xf2ed2f5b9d3c32f4f175c32a43b6e6bae9e30c45', 'value': 661.14842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x23d747091356c44000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T07:41:07.000Z'}}, {'blockNum': '0x7b268e', 'uniqueId': '0xad8edf594081d7e2dc6005d73a0f9df9f22bfe6b513a17e94ef3b9a1e0dfb348:log:23', 'hash': '0xad8edf594081d7e2dc6005d73a0f9df9f22bfe6b513a17e94ef3b9a1e0dfb348', 'from': '0xc1a3bd11097e41db419bc64356a49dcdc99dd081', 'to': '0x72355328bfffa88ef8ba82cf277afd7086b4f240', 'value': 401.8949451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15c969ab3cde9df800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T07:42:16.000Z'}}, {'blockNum': '0x7b2690', 'uniqueId': '0x2112f47673d177e3985390eda1b46554081a8a567e60118ab763a50e060ea7df:log:7', 'hash': '0x2112f47673d177e3985390eda1b46554081a8a567e60118ab763a50e060ea7df', 'from': '0xc1a3bd11097e41db419bc64356a49dcdc99dd081', 'to': '0x7dad0e5d6646bb37d0d68b149e17e1294738736f', 'value': 1041.1786142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3871418136d47b3000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T07:42:46.000Z'}}, {'blockNum': '0x7b269e', 'uniqueId': '0xf1474b4ecd4ee733001f5649bbc6c7604f2ac226aa4d85b5f11d09e83791f1bc:log:28', 'hash': '0xf1474b4ecd4ee733001f5649bbc6c7604f2ac226aa4d85b5f11d09e83791f1bc', 'from': '0x7dad0e5d6646bb37d0d68b149e17e1294738736f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2132.3606841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x739872f8753571a800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T07:46:55.000Z'}}, {'blockNum': '0x7b26a3', 'uniqueId': '0xcf651a02aefdaec3858af5b675fd70b81dbf487d4fb68489a008dd51b4e67a3f:log:12', 'hash': '0xcf651a02aefdaec3858af5b675fd70b81dbf487d4fb68489a008dd51b4e67a3f', 'from': '0x72355328bfffa88ef8ba82cf277afd7086b4f240', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 401.8949451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15c969ab3cde9df800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T07:48:04.000Z'}}, {'blockNum': '0x7b26ec', 'uniqueId': '0x86797189451f06b855c80464b5097ef435987ac9918db9b3801fc5dbaf1d5c74:log:2', 'hash': '0x86797189451f06b855c80464b5097ef435987ac9918db9b3801fc5dbaf1d5c74', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 205067.914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2b6cc0ff26a062010000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T08:04:43.000Z'}}, {'blockNum': '0x7b2703', 'uniqueId': '0x31892051eb5c6b3a9bb59c0efd2753517c00a1bd33b03c798d680a749a4ef13e:log:22', 'hash': '0x31892051eb5c6b3a9bb59c0efd2753517c00a1bd33b03c798d680a749a4ef13e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7751.959824852725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a43c0db50f6602cb14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T08:09:40.000Z'}}, {'blockNum': '0x7b2703', 'uniqueId': '0x31892051eb5c6b3a9bb59c0efd2753517c00a1bd33b03c798d680a749a4ef13e:log:26', 'hash': '0x31892051eb5c6b3a9bb59c0efd2753517c00a1bd33b03c798d680a749a4ef13e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 7751.959824852725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a43c0db50f6602cb14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T08:09:40.000Z'}}, {'blockNum': '0x7b271d', 'uniqueId': '0xd62cc5f1309f994dbab4a24b79186695701e43708b49bb44def2fa4c30dd0d23:log:12', 'hash': '0xd62cc5f1309f994dbab4a24b79186695701e43708b49bb44def2fa4c30dd0d23', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 205067.914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2b6cc0ff26a062010000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T08:17:06.000Z'}}, {'blockNum': '0x7b272d', 'uniqueId': '0x4fd10d7e738a2a7189f1ecf3d2eb240ed84605eb9623f776773eeef3197f16ca:log:91', 'hash': '0x4fd10d7e738a2a7189f1ecf3d2eb240ed84605eb9623f776773eeef3197f16ca', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 11844.535452928369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x028217f31f6663f1b3ae', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T08:22:11.000Z'}}, {'blockNum': '0x7b272d', 'uniqueId': '0x4fd10d7e738a2a7189f1ecf3d2eb240ed84605eb9623f776773eeef3197f16ca:log:95', 'hash': '0x4fd10d7e738a2a7189f1ecf3d2eb240ed84605eb9623f776773eeef3197f16ca', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 11844.535452928369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x028217f31f6663f1b3ae', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T08:22:11.000Z'}}, {'blockNum': '0x7b27ec', 'uniqueId': '0xf7dd5062b9e202b94f9a9d49196a625926467d17e1edf86eb618666ca7cd2d50:log:56', 'hash': '0xf7dd5062b9e202b94f9a9d49196a625926467d17e1edf86eb618666ca7cd2d50', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0x9dcc9e284d04d175b08170acc5f2bb3b29bd5c70', 'value': 92.48083963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05036df1a8b404b310', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T09:04:30.000Z'}}, {'blockNum': '0x7b27ef', 'uniqueId': '0x9d302faff7f63e1afbb95ca70bea2f3c6e272530ddd4d6f1a08fb39d73c360dd:log:87', 'hash': '0x9d302faff7f63e1afbb95ca70bea2f3c6e272530ddd4d6f1a08fb39d73c360dd', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0x9dcc9e284d04d175b08170acc5f2bb3b29bd5c70', 'value': 26.80875401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01740bd3bbb4e10fb8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T09:05:24.000Z'}}, {'blockNum': '0x7b27f4', 'uniqueId': '0xac50621dd65877d4f420ad35d8aa4890d57deb8fd3b1fc3bc91e341b48348866:log:94', 'hash': '0xac50621dd65877d4f420ad35d8aa4890d57deb8fd3b1fc3bc91e341b48348866', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0xd2db5f929d34d981a6b60b77aed7301fea075340', 'value': 43.21979755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0257cb90e2280c5f88', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T09:06:54.000Z'}}, {'blockNum': '0x7b27f5', 'uniqueId': '0xa90d8a9fa61f288c854eadf4d8464c18460c8bc3de7eba6da78281e517800b8a:log:70', 'hash': '0xa90d8a9fa61f288c854eadf4d8464c18460c8bc3de7eba6da78281e517800b8a', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0x2312e271a0de126df6dc0eeb4abc836f1bf6b90e', 'value': 241.19780595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0d134abe973d596c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T09:06:59.000Z'}}, {'blockNum': '0x7b28e9', 'uniqueId': '0x1015ae680b2b0612c5b835050aadecdda72b5e196ba5a3fb24ae41db028380e6:log:14', 'hash': '0x1015ae680b2b0612c5b835050aadecdda72b5e196ba5a3fb24ae41db028380e6', 'from': '0xc1a3bd11097e41db419bc64356a49dcdc99dd081', 'to': '0xbfddbaa9e967bc379ce30b27e03497a9e05fe351', 'value': 745.4838878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2869aace3610293000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T09:59:44.000Z'}}, {'blockNum': '0x7b28f6', 'uniqueId': '0x164a43c0d3f5e0a9365854ee691246baafe4feba8bba01000bebf53e07747e15:log:34', 'hash': '0x164a43c0d3f5e0a9365854ee691246baafe4feba8bba01000bebf53e07747e15', 'from': '0xbfddbaa9e967bc379ce30b27e03497a9e05fe351', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 745.4838878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2869aace3610293000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:00:40.000Z'}}, {'blockNum': '0x7b2925', 'uniqueId': '0x3f3a40fcb81dc8c301e8b78e3f6e80239d89af5066d4159acbdbaacd09facaa3:log:17', 'hash': '0x3f3a40fcb81dc8c301e8b78e3f6e80239d89af5066d4159acbdbaacd09facaa3', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0xcff93bfb32ea7801d1715476cdc2ea4c43993043', 'value': 330.04, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x11e4399f5f85ec0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:14:10.000Z'}}, {'blockNum': '0x7b2926', 'uniqueId': '0xc87e97429d9ca5aad8f64115a36d82030af0fb4743d5d0a1f0a90c052450facb:log:45', 'hash': '0xc87e97429d9ca5aad8f64115a36d82030af0fb4743d5d0a1f0a90c052450facb', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 17826.67188827934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03c662c510a26bf794ae', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:14:42.000Z'}}, {'blockNum': '0x7b2926', 'uniqueId': '0xc87e97429d9ca5aad8f64115a36d82030af0fb4743d5d0a1f0a90c052450facb:log:49', 'hash': '0xc87e97429d9ca5aad8f64115a36d82030af0fb4743d5d0a1f0a90c052450facb', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'value': 17826.67188827934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03c662c510a26bf794ae', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:14:42.000Z'}}, {'blockNum': '0x7b2928', 'uniqueId': '0xa556b157e47a9422234a5f66ca3bc1e0cdb26d7f2497195ca4f7ac6541d83433:log:82', 'hash': '0xa556b157e47a9422234a5f66ca3bc1e0cdb26d7f2497195ca4f7ac6541d83433', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0xb5d47502a7334d7d42a4380ab97b3b0dc05d8cff', 'value': 271.76149183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ebb72c4f71d5f9130', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:14:53.000Z'}}, {'blockNum': '0x7b292b', 'uniqueId': '0x2cc11a9dfd95a5b89bbfaa7c01124619b2ae4b13ebbd2aeb5eebebc336a15e72:log:53', 'hash': '0x2cc11a9dfd95a5b89bbfaa7c01124619b2ae4b13ebbd2aeb5eebebc336a15e72', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0x44a2d8a08f3e299ca4e66eb0470df001643a1d4f', 'value': 419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x16b6cb080af8ac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:15:40.000Z'}}, {'blockNum': '0x7b292c', 'uniqueId': '0x845b53a9a75578054673070d3b22a4f5b6336cd5f1bc7da61a555bf775b8e2b5:log:44', 'hash': '0x845b53a9a75578054673070d3b22a4f5b6336cd5f1bc7da61a555bf775b8e2b5', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0x3a7ff1908b7f77b7a57b01f5844e53fa9260187d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:15:54.000Z'}}, {'blockNum': '0x7b292c', 'uniqueId': '0x2425ee05b1c1656e6bdd1e830f262e0dd7c299a7cc7d2f73af8d1516ba929557:log:91', 'hash': '0x2425ee05b1c1656e6bdd1e830f262e0dd7c299a7cc7d2f73af8d1516ba929557', 'from': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'to': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'value': 17658.26549437025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03bd41a95da124600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:15:54.000Z'}}, {'blockNum': '0x7b2931', 'uniqueId': '0x2a75baf8bed96a3519fe5d0771df1ed674526e10d5a23979dda64657a958d2c4:log:69', 'hash': '0x2a75baf8bed96a3519fe5d0771df1ed674526e10d5a23979dda64657a958d2c4', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0x33888f027fd61d21c31a7dcb4bdd778a04789aa6', 'value': 27.39570792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x017c311b345df4a000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:16:41.000Z'}}, {'blockNum': '0x7b2963', 'uniqueId': '0xf38cc237360458a486f2d0825481bf1ff7084a228c9cab8e4f39e2a9102af979:log:69', 'hash': '0xf38cc237360458a486f2d0825481bf1ff7084a228c9cab8e4f39e2a9102af979', 'from': '0xf74d556cbb95b7bccdad8284bc68110c74c91e7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17658.26549437025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03bd41a95da124600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T10:27:56.000Z'}}, {'blockNum': '0x7b2a31', 'uniqueId': '0xfa584d3f82948e456430caf807daa3b42b614ca3046c565e2e119b599e9adad4:log:5', 'hash': '0xfa584d3f82948e456430caf807daa3b42b614ca3046c565e2e119b599e9adad4', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 10406.94789081886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0234296a2053a2c32d1a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T11:15:43.000Z'}}, {'blockNum': '0x7b2a31', 'uniqueId': '0xfa584d3f82948e456430caf807daa3b42b614ca3046c565e2e119b599e9adad4:log:7', 'hash': '0xfa584d3f82948e456430caf807daa3b42b614ca3046c565e2e119b599e9adad4', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 10406.94789081886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0234296a2053a2c32d1a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T11:15:43.000Z'}}, {'blockNum': '0x7b2ad5', 'uniqueId': '0xffd9a228c16a1f01c8cbe3b61a495655974574742cb0fa99f07c7f3f504f02ef:log:24', 'hash': '0xffd9a228c16a1f01c8cbe3b61a495655974574742cb0fa99f07c7f3f504f02ef', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0cde82f7232a42e2f3f07f9b20c9c910f24b6376', 'value': 22534.72343443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04c59c1c318846c7ec00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T11:52:04.000Z'}}, {'blockNum': '0x7b2b2a', 'uniqueId': '0x0f63b1c7dd09dfeb8fb2a5af67cf5191f2e1fa3d21690661fbe65e21dcdaf2b0:log:17', 'hash': '0x0f63b1c7dd09dfeb8fb2a5af67cf5191f2e1fa3d21690661fbe65e21dcdaf2b0', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 9189.547386962236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f22a96b422273151a8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T12:11:30.000Z'}}, {'blockNum': '0x7b2b2a', 'uniqueId': '0x0f63b1c7dd09dfeb8fb2a5af67cf5191f2e1fa3d21690661fbe65e21dcdaf2b0:log:19', 'hash': '0x0f63b1c7dd09dfeb8fb2a5af67cf5191f2e1fa3d21690661fbe65e21dcdaf2b0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 9189.547386962236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01f22a96b422273151a8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T12:11:30.000Z'}}, {'blockNum': '0x7b2b58', 'uniqueId': '0x3dc86bd35e352155a20e6a4353711f8239e30a0b37e3b0762baa296bc8620332:log:11', 'hash': '0x3dc86bd35e352155a20e6a4353711f8239e30a0b37e3b0762baa296bc8620332', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 9974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021cb10e3b7bb2180000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T12:20:59.000Z'}}, {'blockNum': '0x7b2b5c', 'uniqueId': '0xd49c9316e003e556c51312945567667820c8d40734b5b0769ce832ad7f0d0a8b:log:17', 'hash': '0xd49c9316e003e556c51312945567667820c8d40734b5b0769ce832ad7f0d0a8b', 'from': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 20061.565917228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043f8a27a6fcba800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T12:23:21.000Z'}}, {'blockNum': '0x7b2b5c', 'uniqueId': '0xd49c9316e003e556c51312945567667820c8d40734b5b0769ce832ad7f0d0a8b:log:19', 'hash': '0xd49c9316e003e556c51312945567667820c8d40734b5b0769ce832ad7f0d0a8b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 20061.565917228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043f8a27a6fcba800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T12:23:21.000Z'}}, {'blockNum': '0x7b2b71', 'uniqueId': '0xa85388cd3632198051ee2e1e5a0d7da15c1cafe18e56776280bed81a105a046c:log:12', 'hash': '0xa85388cd3632198051ee2e1e5a0d7da15c1cafe18e56776280bed81a105a046c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'value': 19892.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04365a57c52323da0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T12:27:48.000Z'}}, {'blockNum': '0x7b2b72', 'uniqueId': '0x6ae12f55763a692b42b0460371aab45f8ec168e6be67d33d7e29c1f7b35ef8e6:log:17', 'hash': '0x6ae12f55763a692b42b0460371aab45f8ec168e6be67d33d7e29c1f7b35ef8e6', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 11964.26428026407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x028895855d82e26b9408', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T12:28:04.000Z'}}, {'blockNum': '0x7b2b72', 'uniqueId': '0x6ae12f55763a692b42b0460371aab45f8ec168e6be67d33d7e29c1f7b35ef8e6:log:21', 'hash': '0x6ae12f55763a692b42b0460371aab45f8ec168e6be67d33d7e29c1f7b35ef8e6', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 11964.26428026407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x028895855d82e26b9408', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T12:28:04.000Z'}}, {'blockNum': '0x7b2ba5', 'uniqueId': '0xe258254c653e209fa0d7e4daf20aa1234df14a52f170f050db4af3376c97fd8e:log:44', 'hash': '0xe258254c653e209fa0d7e4daf20aa1234df14a52f170f050db4af3376c97fd8e', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021cb10e3b7bb2180000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T12:36:52.000Z'}}, {'blockNum': '0x7b2c26', 'uniqueId': '0x47283fbce42c3a59a6ed36e6383adf076e4f66328cced8b3a5142aaa49f6eb4e:log:296', 'hash': '0x47283fbce42c3a59a6ed36e6383adf076e4f66328cced8b3a5142aaa49f6eb4e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 6968.917258674954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0179c927abdbd99d90e3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T13:06:24.000Z'}}, {'blockNum': '0x7b2c26', 'uniqueId': '0x47283fbce42c3a59a6ed36e6383adf076e4f66328cced8b3a5142aaa49f6eb4e:log:300', 'hash': '0x47283fbce42c3a59a6ed36e6383adf076e4f66328cced8b3a5142aaa49f6eb4e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 6968.917258674954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0179c927abdbd99d90e3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T13:06:24.000Z'}}, {'blockNum': '0x7b2c37', 'uniqueId': '0xf1b87416a6fdcab677e812225030394436400c042b6f07552e1b7ba8487788ae:log:13', 'hash': '0xf1b87416a6fdcab677e812225030394436400c042b6f07552e1b7ba8487788ae', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 10351.444883784032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02312727d57efddb65cb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T13:09:54.000Z'}}, {'blockNum': '0x7b2c37', 'uniqueId': '0xf1b87416a6fdcab677e812225030394436400c042b6f07552e1b7ba8487788ae:log:17', 'hash': '0xf1b87416a6fdcab677e812225030394436400c042b6f07552e1b7ba8487788ae', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 10351.444883784032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02312727d57efddb65cb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T13:09:54.000Z'}}, {'blockNum': '0x7b2c3c', 'uniqueId': '0x3396f0fb4bf82d194f782bd90083ae1457d9d2308266df68f9e3a0c34b4fa45e:log:157', 'hash': '0x3396f0fb4bf82d194f782bd90083ae1457d9d2308266df68f9e3a0c34b4fa45e', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 10351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x023120fb4a0d345c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T13:11:21.000Z'}}, {'blockNum': '0x7b2c51', 'uniqueId': '0xa92f072d5369b36eb0f6b907429f86ae13845e6445c5bc3028348af1b6b2440a:log:23', 'hash': '0xa92f072d5369b36eb0f6b907429f86ae13845e6445c5bc3028348af1b6b2440a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x051673bad8cbdf280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T13:16:55.000Z'}}, {'blockNum': '0x7b2cb3', 'uniqueId': '0x94d191019d06403f477ea3ca0bfd17b2e114af45f1ae3d163de741c773d01e8e:log:53', 'hash': '0x94d191019d06403f477ea3ca0bfd17b2e114af45f1ae3d163de741c773d01e8e', 'from': '0x43087067af7fc605a73a3e9f3eece07a331b207e', 'to': '0x361cc17ba62f174541475aadd41999479298f0a1', 'value': 3577.385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc1ee309fb3b2ca8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T13:40:01.000Z'}}, {'blockNum': '0x7b2cd9', 'uniqueId': '0x78edf8878468d527d162ee20305a0794789983d837daa652543ce5201bbe0fa4:log:19', 'hash': '0x78edf8878468d527d162ee20305a0794789983d837daa652543ce5201bbe0fa4', 'from': '0x361cc17ba62f174541475aadd41999479298f0a1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3577.385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc1ee309fb3b2ca8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T13:46:58.000Z'}}, {'blockNum': '0x7b2d81', 'uniqueId': '0xcfb9f21af4936ecfe6b171a31317baf56546b3b741c7d29bf7ee6f5b81f24d66:log:2', 'hash': '0xcfb9f21af4936ecfe6b171a31317baf56546b3b741c7d29bf7ee6f5b81f24d66', 'from': '0xf2ed2f5b9d3c32f4f175c32a43b6e6bae9e30c45', 'to': '0x7ffb98e6eba66be591550b2647bd2d74e54bccb0', 'value': 661.14842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x23d747091356c44000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T14:21:59.000Z'}}, {'blockNum': '0x7b2dd1', 'uniqueId': '0xa5769fed8dd94d404ed16cb81c9ddac3d8584cd97b8c462732dd1e37b006e6b9:log:75', 'hash': '0xa5769fed8dd94d404ed16cb81c9ddac3d8584cd97b8c462732dd1e37b006e6b9', 'from': '0x3e23788fd6739eefd75be08ff774936c9d56c04e', 'to': '0xaf0f1996d14f252f16fba9f678760bb6b1ad6ede', 'value': 12602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ab27e1c7be10a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T14:37:50.000Z'}}, {'blockNum': '0x7b2dd4', 'uniqueId': '0xa4f822a7f271095bf6d95e63d26f10498d4469fee225add86798812d6f9a5adf:log:87', 'hash': '0xa4f822a7f271095bf6d95e63d26f10498d4469fee225add86798812d6f9a5adf', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7010.178117048346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x017c05c3aff0a363952b', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T14:38:55.000Z'}}, {'blockNum': '0x7b2dd4', 'uniqueId': '0xa4f822a7f271095bf6d95e63d26f10498d4469fee225add86798812d6f9a5adf:log:89', 'hash': '0xa4f822a7f271095bf6d95e63d26f10498d4469fee225add86798812d6f9a5adf', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7010.178117048346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x017c05c3aff0a363952b', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T14:38:55.000Z'}}, {'blockNum': '0x7b2e05', 'uniqueId': '0x76c2590c4caf25ecb4749210946fa64975ec47247d7b5b3cfcdfa07269d6353f:log:130', 'hash': '0x76c2590c4caf25ecb4749210946fa64975ec47247d7b5b3cfcdfa07269d6353f', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7093.023255813953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01808378beb7075d05f4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T14:50:29.000Z'}}, {'blockNum': '0x7b2e05', 'uniqueId': '0x76c2590c4caf25ecb4749210946fa64975ec47247d7b5b3cfcdfa07269d6353f:log:132', 'hash': '0x76c2590c4caf25ecb4749210946fa64975ec47247d7b5b3cfcdfa07269d6353f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7093.023255813953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01808378beb7075d05f4', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T14:50:29.000Z'}}, {'blockNum': '0x7b2e3b', 'uniqueId': '0xffa58c42a699810e29f7f65137bdca2e9a18ad94457e5b5dbbbcf69d049e1a0a:log:112', 'hash': '0xffa58c42a699810e29f7f65137bdca2e9a18ad94457e5b5dbbbcf69d049e1a0a', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T15:01:57.000Z'}}, {'blockNum': '0x7b2e5c', 'uniqueId': '0xd7803f7de4d200c588f67c8eb1958f5399911e24f001d12b8da1218adada47bb:log:107', 'hash': '0xd7803f7de4d200c588f67c8eb1958f5399911e24f001d12b8da1218adada47bb', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T15:08:55.000Z'}}, {'blockNum': '0x7b2e7b', 'uniqueId': '0xbdd468edad35a7f63532dc078b8fc72b9406a159ef5610ff7a771ca06ac0a67f:log:132', 'hash': '0xbdd468edad35a7f63532dc078b8fc72b9406a159ef5610ff7a771ca06ac0a67f', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0x49666d75064062203cdc1f9aa547e72bc3c55bb1', 'value': 237.76989869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce3b85f1982111400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T15:15:41.000Z'}}, {'blockNum': '0x7b2e88', 'uniqueId': '0x1a61fbd418bd15225767b192c6d7421645684779c8537d9b1c9475bd60f54172:log:18', 'hash': '0x1a61fbd418bd15225767b192c6d7421645684779c8537d9b1c9475bd60f54172', 'from': '0x4bd24f308e1b56150e5ae4546faf3ce2f8bb2e83', 'to': '0x22f21196611b72b47c823de948afa4b5a1b2c1ad', 'value': 44, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02629f66e0c5300000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T15:18:37.000Z'}}, {'blockNum': '0x7b2e8b', 'uniqueId': '0x61c25fece15e5d6564afa52498562ab66cf2f98f897bf5ed61f9cf3ae46f1f0e:log:29', 'hash': '0x61c25fece15e5d6564afa52498562ab66cf2f98f897bf5ed61f9cf3ae46f1f0e', 'from': '0x49666d75064062203cdc1f9aa547e72bc3c55bb1', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 237.76989869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ce3b85f1982111400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T15:19:44.000Z'}}, {'blockNum': '0x7b2f70', 'uniqueId': '0x35ec27f52ce61e6d436d2c714b16bc8f8df6a53de961395b289e85a01beda101:log:1', 'hash': '0x35ec27f52ce61e6d436d2c714b16bc8f8df6a53de961395b289e85a01beda101', 'from': '0xff5cfee020411c9a5ca87e43a385626bd6b5235e', 'to': '0xa320c2f65d17d41bc6d31609035ee0023b8daf21', 'value': 156.823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08805b379dbb158000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T16:11:38.000Z'}}, {'blockNum': '0x7b2fa5', 'uniqueId': '0x32680cfada072c71d84dab08466677c663ab98200eccf5fdd89f5d4392a9410e:log:16', 'hash': '0x32680cfada072c71d84dab08466677c663ab98200eccf5fdd89f5d4392a9410e', 'from': '0x67c5ca595a75707f7171c4e35a8ac520c66daa42', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 3919.967656925018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd4807ab7183404a5eb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T16:22:06.000Z'}}, {'blockNum': '0x7b2fa5', 'uniqueId': '0x32680cfada072c71d84dab08466677c663ab98200eccf5fdd89f5d4392a9410e:log:18', 'hash': '0x32680cfada072c71d84dab08466677c663ab98200eccf5fdd89f5d4392a9410e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 3919.967656925018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd4807ab7183404a5eb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T16:22:06.000Z'}}, {'blockNum': '0x7b2fd3', 'uniqueId': '0x4eca7e361ec0ce502f07ef50f8b1daf53e4564230057404fac2ad94f78d83db0:log:2', 'hash': '0x4eca7e361ec0ce502f07ef50f8b1daf53e4564230057404fac2ad94f78d83db0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd67984e45e64f456b5058d64c9e0061d09b13d83', 'value': 457.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x18d2a397f11b5e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T16:31:54.000Z'}}, {'blockNum': '0x7b2fe1', 'uniqueId': '0xc040adb6c9f2306b3cf60284317722afab5988969f89e451de4b55e018f2a6d3:log:57', 'hash': '0xc040adb6c9f2306b3cf60284317722afab5988969f89e451de4b55e018f2a6d3', 'from': '0xd67984e45e64f456b5058d64c9e0061d09b13d83', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 457.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x18d2a397f11b5e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T16:35:53.000Z'}}, {'blockNum': '0x7b3045', 'uniqueId': '0x5da169a612393d9c61f7ac03e6a6ba82b448a3dcd9b1d12333b6fe0b9cbe5da4:log:4', 'hash': '0x5da169a612393d9c61f7ac03e6a6ba82b448a3dcd9b1d12333b6fe0b9cbe5da4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'value': 40338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x088aba34601dcb080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:00:23.000Z'}}, {'blockNum': '0x7b3045', 'uniqueId': '0xf6a40f3780ae4d61d9ba67d610931bb6b68a0ca414c75da83fe7f91ef888a1da:log:61', 'hash': '0xf6a40f3780ae4d61d9ba67d610931bb6b68a0ca414c75da83fe7f91ef888a1da', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 23397.944982817815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04f467b7323f4d2ada58', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:00:23.000Z'}}, {'blockNum': '0x7b3045', 'uniqueId': '0xf6a40f3780ae4d61d9ba67d610931bb6b68a0ca414c75da83fe7f91ef888a1da:log:65', 'hash': '0xf6a40f3780ae4d61d9ba67d610931bb6b68a0ca414c75da83fe7f91ef888a1da', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'value': 23397.944982817815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04f467b7323f4d2ada58', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:00:23.000Z'}}, {'blockNum': '0x7b3045', 'uniqueId': '0x96f9d80e2ff983c7579dd71cd6852abfb74e8c7f7ec444934bba4ad29af4d35e:log:76', 'hash': '0x96f9d80e2ff983c7579dd71cd6852abfb74e8c7f7ec444934bba4ad29af4d35e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5772.416356464678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0138ec5e8ca1cbbe24ed', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:00:23.000Z'}}, {'blockNum': '0x7b3045', 'uniqueId': '0x96f9d80e2ff983c7579dd71cd6852abfb74e8c7f7ec444934bba4ad29af4d35e:log:80', 'hash': '0x96f9d80e2ff983c7579dd71cd6852abfb74e8c7f7ec444934bba4ad29af4d35e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 5772.416356464678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0138ec5e8ca1cbbe24ed', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:00:23.000Z'}}, {'blockNum': '0x7b3046', 'uniqueId': '0x42f73aaf2b667553e1439f99478061d08e9cf4328f9a1d92fe9bd4ac7d6a65a1:log:58', 'hash': '0x42f73aaf2b667553e1439f99478061d08e9cf4328f9a1d92fe9bd4ac7d6a65a1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 20201.89187019588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0447259195bb95425eb8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:00:57.000Z'}}, {'blockNum': '0x7b3046', 'uniqueId': '0x42f73aaf2b667553e1439f99478061d08e9cf4328f9a1d92fe9bd4ac7d6a65a1:log:62', 'hash': '0x42f73aaf2b667553e1439f99478061d08e9cf4328f9a1d92fe9bd4ac7d6a65a1', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 20201.89187019588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0447259195bb95425eb8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:00:57.000Z'}}, {'blockNum': '0x7b3049', 'uniqueId': '0xd0c6c294d7e8c3b490a1232b65846cd2fcf08b4d2176ce2ddb4f17828978302e:log:2', 'hash': '0xd0c6c294d7e8c3b490a1232b65846cd2fcf08b4d2176ce2ddb4f17828978302e', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 20201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x044719310683d2040000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:01:25.000Z'}}, {'blockNum': '0x7b3049', 'uniqueId': '0xdeeed1ca99dc7d4668a2aa62f0837db885816e1a76d95446d954e04dc3ff61b8:log:3', 'hash': '0xdeeed1ca99dc7d4668a2aa62f0837db885816e1a76d95446d954e04dc3ff61b8', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'value': 5772.416356464678, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0138ec5e8ca1cbbe24ed', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:01:25.000Z'}}, {'blockNum': '0x7b304a', 'uniqueId': '0x4965cbde908ccadb75428646d9778490afcee4868c0b1fe06e0de2e9edc47a8f:log:39', 'hash': '0x4965cbde908ccadb75428646d9778490afcee4868c0b1fe06e0de2e9edc47a8f', 'from': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 20023.515638003904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043d7a19e7a1c6000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:01:37.000Z'}}, {'blockNum': '0x7b304a', 'uniqueId': '0x4965cbde908ccadb75428646d9778490afcee4868c0b1fe06e0de2e9edc47a8f:log:41', 'hash': '0x4965cbde908ccadb75428646d9778490afcee4868c0b1fe06e0de2e9edc47a8f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 20023.515638003904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043d7a19e7a1c6000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:01:37.000Z'}}, {'blockNum': '0x7b304b', 'uniqueId': '0xf111dd6cd269c69ec69b5bec50d89231e5d26a1d0cc14c0e31b30540a59f338a:log:34', 'hash': '0xf111dd6cd269c69ec69b5bec50d89231e5d26a1d0cc14c0e31b30540a59f338a', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 18864.96981690564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03feac0c5194f6945561', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:01:54.000Z'}}, {'blockNum': '0x7b304b', 'uniqueId': '0xf111dd6cd269c69ec69b5bec50d89231e5d26a1d0cc14c0e31b30540a59f338a:log:38', 'hash': '0xf111dd6cd269c69ec69b5bec50d89231e5d26a1d0cc14c0e31b30540a59f338a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 18864.96981690564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03feac0c5194f6945561', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:01:54.000Z'}}, {'blockNum': '0x7b304e', 'uniqueId': '0xd9af6052f68e34e2838441414fb27ef35303d192125a500ef4f5eaa360f7343d:log:89', 'hash': '0xd9af6052f68e34e2838441414fb27ef35303d192125a500ef4f5eaa360f7343d', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 23694.94998298236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0504817cec4c07dcdf2d', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:02:14.000Z'}}, {'blockNum': '0x7b304e', 'uniqueId': '0xd9af6052f68e34e2838441414fb27ef35303d192125a500ef4f5eaa360f7343d:log:91', 'hash': '0xd9af6052f68e34e2838441414fb27ef35303d192125a500ef4f5eaa360f7343d', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 23694.94998298236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0504817cec4c07dcdf2d', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:02:14.000Z'}}, {'blockNum': '0x7b3057', 'uniqueId': '0xd6ba7cb0b4ef239508f97f3d2e5878d9b1582610745114ffa5a369f63b4802b8:log:55', 'hash': '0xd6ba7cb0b4ef239508f97f3d2e5878d9b1582610745114ffa5a369f63b4802b8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 10889.488705976883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024e52037b1a242f6f42', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:03:57.000Z'}}, {'blockNum': '0x7b3057', 'uniqueId': '0xd6ba7cb0b4ef239508f97f3d2e5878d9b1582610745114ffa5a369f63b4802b8:log:59', 'hash': '0xd6ba7cb0b4ef239508f97f3d2e5878d9b1582610745114ffa5a369f63b4802b8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 10889.488705976883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024e52037b1a242f6f42', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:03:57.000Z'}}, {'blockNum': '0x7b305b', 'uniqueId': '0x8ed517562d5ad423b4e6d474a9dfb04b658606b8c805f7e009fc0b5afffd75cf:log:12', 'hash': '0x8ed517562d5ad423b4e6d474a9dfb04b658606b8c805f7e009fc0b5afffd75cf', 'from': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 5772.41635646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0138ec5e8ca0b4ed3800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:05:05.000Z'}}, {'blockNum': '0x7b305d', 'uniqueId': '0x0c49709aa848fcdd1f94a2e86f46f694663c8523194cf51bd7a2d4cd83cf4b66:log:12', 'hash': '0x0c49709aa848fcdd1f94a2e86f46f694663c8523194cf51bd7a2d4cd83cf4b66', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 38437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0823ac87ac0bc9740000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:05:59.000Z'}}, {'blockNum': '0x7b306c', 'uniqueId': '0xdc25afec616afcb8dd9aca14e4c5eff4e2d21c9bf5dbbcc681cd9e05e39ecce0:log:117', 'hash': '0xdc25afec616afcb8dd9aca14e4c5eff4e2d21c9bf5dbbcc681cd9e05e39ecce0', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x044719310683d2040000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:09:04.000Z'}}, {'blockNum': '0x7b3071', 'uniqueId': '0xa4bb673b32216a30f299d068264494acecb68c92b0f7b7d131d2e8720250fe8f:log:55', 'hash': '0xa4bb673b32216a30f299d068264494acecb68c92b0f7b7d131d2e8720250fe8f', 'from': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 19623.651316912998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0427ccde762bf5c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:09:57.000Z'}}, {'blockNum': '0x7b3071', 'uniqueId': '0xa4bb673b32216a30f299d068264494acecb68c92b0f7b7d131d2e8720250fe8f:log:57', 'hash': '0xa4bb673b32216a30f299d068264494acecb68c92b0f7b7d131d2e8720250fe8f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 19623.651316912998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0427ccde762bf5c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:09:57.000Z'}}, {'blockNum': '0x7b3079', 'uniqueId': '0x81c721ed9f0a80d22f147640573b705287b998c2e22d48c75ecea9ed0160a79c:log:19', 'hash': '0x81c721ed9f0a80d22f147640573b705287b998c2e22d48c75ecea9ed0160a79c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 6931.31806615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0177bf5c8177663f7c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:11:13.000Z'}}, {'blockNum': '0x7b307f', 'uniqueId': '0xc1c6428a52a02c65cfa5658bca34340c4e3a51cd999823c8ab519793427bbe87:log:17', 'hash': '0xc1c6428a52a02c65cfa5658bca34340c4e3a51cd999823c8ab519793427bbe87', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 6931.31806615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0177bf5c8177663f7c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:12:43.000Z'}}, {'blockNum': '0x7b307f', 'uniqueId': '0xc1c6428a52a02c65cfa5658bca34340c4e3a51cd999823c8ab519793427bbe87:log:19', 'hash': '0xc1c6428a52a02c65cfa5658bca34340c4e3a51cd999823c8ab519793427bbe87', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6931.31806615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0177bf5c8177663f7c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:12:43.000Z'}}, {'blockNum': '0x7b308a', 'uniqueId': '0x9a77adb4f9d8c7394decfc9eceaff4d1f4f71b925802ad522d1dff6fccd2872e:log:1', 'hash': '0x9a77adb4f9d8c7394decfc9eceaff4d1f4f71b925802ad522d1dff6fccd2872e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'value': 16249.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0370e31cec758df60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:15:44.000Z'}}, {'blockNum': '0x7b3092', 'uniqueId': '0xb942e7aad734150142de4841f4d1c255e8ae3cfa9b2f84b7ab3a4d13f51686a4:log:26', 'hash': '0xb942e7aad734150142de4841f4d1c255e8ae3cfa9b2f84b7ab3a4d13f51686a4', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0823ac87ac0bc9740000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:17:49.000Z'}}, {'blockNum': '0x7b30e3', 'uniqueId': '0x121d742b5333eb4b775df9bdf6b397e182e50b5f30a8d80d55ba544c0a01ebee:log:6', 'hash': '0x121d742b5333eb4b775df9bdf6b397e182e50b5f30a8d80d55ba544c0a01ebee', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 12627.50955545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ac89e5ed44d0094400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:35:16.000Z'}}, {'blockNum': '0x7b30e9', 'uniqueId': '0x373395c492f7da27b4f2b0b9ed1d8b53e2822c9ae079dd7558d5b139f86f773e:log:14', 'hash': '0x373395c492f7da27b4f2b0b9ed1d8b53e2822c9ae079dd7558d5b139f86f773e', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 12627.50955545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ac89e5ed44d0094400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:36:07.000Z'}}, {'blockNum': '0x7b30e9', 'uniqueId': '0x373395c492f7da27b4f2b0b9ed1d8b53e2822c9ae079dd7558d5b139f86f773e:log:16', 'hash': '0x373395c492f7da27b4f2b0b9ed1d8b53e2822c9ae079dd7558d5b139f86f773e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 12627.50955545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ac89e5ed44d0094400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:36:07.000Z'}}, {'blockNum': '0x7b313f', 'uniqueId': '0x103e29070724b5ad1afb78e6469a42839a135c1ca08bb62f12e0bc4cddf829e6:log:100', 'hash': '0x103e29070724b5ad1afb78e6469a42839a135c1ca08bb62f12e0bc4cddf829e6', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 10889.488705976883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024e52037b1a242f6f42', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:53:54.000Z'}}, {'blockNum': '0x7b313f', 'uniqueId': '0x103e29070724b5ad1afb78e6469a42839a135c1ca08bb62f12e0bc4cddf829e6:log:102', 'hash': '0x103e29070724b5ad1afb78e6469a42839a135c1ca08bb62f12e0bc4cddf829e6', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 10889.488705976883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024e52037b1a242f6f42', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:53:54.000Z'}}, {'blockNum': '0x7b3147', 'uniqueId': '0xe5ff8a2fd0ce464e8a21edfad17447fd71c70a1558e4c7ef3102aae018a509b1:log:4', 'hash': '0xe5ff8a2fd0ce464e8a21edfad17447fd71c70a1558e4c7ef3102aae018a509b1', 'from': '0x36edf867eeca1fe1e02235779eebde14c5d8f3d3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 40338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x088aba34601dcb080000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T17:56:01.000Z'}}, {'blockNum': '0x7b3159', 'uniqueId': '0x6f06902d7ebeb3f6f875648b29cb98a93d3c5c9da3ef02a3b2938e4718e346b0:log:26', 'hash': '0x6f06902d7ebeb3f6f875648b29cb98a93d3c5c9da3ef02a3b2938e4718e346b0', 'from': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 20023.760302556704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043d7d7f20bf14c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:00:45.000Z'}}, {'blockNum': '0x7b3159', 'uniqueId': '0x6f06902d7ebeb3f6f875648b29cb98a93d3c5c9da3ef02a3b2938e4718e346b0:log:28', 'hash': '0x6f06902d7ebeb3f6f875648b29cb98a93d3c5c9da3ef02a3b2938e4718e346b0', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 20023.760302556704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043d7d7f20bf14c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:00:45.000Z'}}, {'blockNum': '0x7b315f', 'uniqueId': '0x50f6dadce3ce06d206b1884e45416d9e8024e5def06c78bc0504ae4e667e2489:log:0', 'hash': '0x50f6dadce3ce06d206b1884e45416d9e8024e5def06c78bc0504ae4e667e2489', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 5923.52071893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01411d5d15b58124b400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:01:41.000Z'}}, {'blockNum': '0x7b3169', 'uniqueId': '0x12c554e2f4ee65eb741db1699332b1bf8fbacac30faf67a9e015bd3e9776db99:log:2', 'hash': '0x12c554e2f4ee65eb741db1699332b1bf8fbacac30faf67a9e015bd3e9776db99', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5923.52071893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01411d5d15b58124b400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:03:08.000Z'}}, {'blockNum': '0x7b3169', 'uniqueId': '0x12c554e2f4ee65eb741db1699332b1bf8fbacac30faf67a9e015bd3e9776db99:log:4', 'hash': '0x12c554e2f4ee65eb741db1699332b1bf8fbacac30faf67a9e015bd3e9776db99', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5923.52071893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01411d5d15b58124b400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:03:08.000Z'}}, {'blockNum': '0x7b317a', 'uniqueId': '0xc4f2d5717aff2f37bf750add5d2120d65cd8301329b052df47fc2d76c1f3c451:log:1', 'hash': '0xc4f2d5717aff2f37bf750add5d2120d65cd8301329b052df47fc2d76c1f3c451', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdf1e18b6ce989ed62882ec239e265781343078fb', 'value': 20023.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x043d787f137ae4a40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:05:53.000Z'}}, {'blockNum': '0x7b31b0', 'uniqueId': '0x3073b6292865d2e796bb24137c7408b58a2ab664fa4cb2bd9da2ff09845e7f5d:log:77', 'hash': '0x3073b6292865d2e796bb24137c7408b58a2ab664fa4cb2bd9da2ff09845e7f5d', 'from': '0xbb38a7e5cda2a2f888143caf3f79e69092cdd52f', 'to': '0x70c1e7acec3fb428d311a5ba54c377a108108037', 'value': 8092.12934001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01b6acda98cce43ba400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:18:13.000Z'}}, {'blockNum': '0x7b31bb', 'uniqueId': '0x330f96ec37d5872922654d06e844f609e478f78deaaae5f0165c347698011fa0:log:67', 'hash': '0x330f96ec37d5872922654d06e844f609e478f78deaaae5f0165c347698011fa0', 'from': '0x70c1e7acec3fb428d311a5ba54c377a108108037', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 8092.12934001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01b6acda98cce43ba400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:20:27.000Z'}}, {'blockNum': '0x7b31e4', 'uniqueId': '0xb9f5943c2074a301cdfc242d03a5d0fd4023e1a41d71ff6266e7186cf9153476:log:76', 'hash': '0xb9f5943c2074a301cdfc242d03a5d0fd4023e1a41d71ff6266e7186cf9153476', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8092.12934001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01b6acda98cce43ba400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:27:00.000Z'}}, {'blockNum': '0x7b31f9', 'uniqueId': '0xe642d7e8824b2314a566c31e3f23d80d718158370bf7c68c8be38b81bfa963a9:log:58', 'hash': '0xe642d7e8824b2314a566c31e3f23d80d718158370bf7c68c8be38b81bfa963a9', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 10261.96935402238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022c4d6ee53d50bf97d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:32:16.000Z'}}, {'blockNum': '0x7b31f9', 'uniqueId': '0xe642d7e8824b2314a566c31e3f23d80d718158370bf7c68c8be38b81bfa963a9:log:62', 'hash': '0xe642d7e8824b2314a566c31e3f23d80d718158370bf7c68c8be38b81bfa963a9', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 10261.96935402238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022c4d6ee53d50bf97d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:32:16.000Z'}}, {'blockNum': '0x7b325d', 'uniqueId': '0x2ed6d90b493cdfbe2a9754351b25e480d9675e27809b75969ba26ef2e966175e:log:147', 'hash': '0x2ed6d90b493cdfbe2a9754351b25e480d9675e27809b75969ba26ef2e966175e', 'from': '0x28c692a95758c3305002af7f95c1ac5eb4cabeac', 'to': '0x08cffd44fae7dc7c143d810c6d0e47b1bce07d39', 'value': 250426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x35079ee3ba2ff4000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T18:58:00.000Z'}}, {'blockNum': '0x7b3332', 'uniqueId': '0x2fd74a10952fde53c9300e633ea7af0439a30a495cfd7dc1ef1c83334ba593c3:log:2', 'hash': '0x2fd74a10952fde53c9300e633ea7af0439a30a495cfd7dc1ef1c83334ba593c3', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 172688.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x249174f8d9a4e6680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T19:41:09.000Z'}}, {'blockNum': '0x7b3332', 'uniqueId': '0x6490aa51e91d737248614554926d417d4bc63e204204f53aaec0a2bc4b4030f8:log:5', 'hash': '0x6490aa51e91d737248614554926d417d4bc63e204204f53aaec0a2bc4b4030f8', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 38502.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08273db03b6c36280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T19:41:09.000Z'}}, {'blockNum': '0x7b3385', 'uniqueId': '0x15cd92ee38d2e0780d7c29dbf8e119c5470a95d7bca5cfdf08cff24431b953dc:log:85', 'hash': '0x15cd92ee38d2e0780d7c29dbf8e119c5470a95d7bca5cfdf08cff24431b953dc', 'from': '0x08cffd44fae7dc7c143d810c6d0e47b1bce07d39', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 250426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x35079ee3ba2ff4000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T20:03:07.000Z'}}, {'blockNum': '0x7b33a4', 'uniqueId': '0x06a84179e4a4db662a9f7fe7b85c71341f280dd120cfa1d0a37a24e072239d3b:log:10', 'hash': '0x06a84179e4a4db662a9f7fe7b85c71341f280dd120cfa1d0a37a24e072239d3b', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T20:09:41.000Z'}}, {'blockNum': '0x7b33a6', 'uniqueId': '0x39f05c28e5175a4053d78bddbbe10809b91724a752ee11f67552f9d0a37afd0e:log:7', 'hash': '0x39f05c28e5175a4053d78bddbbe10809b91724a752ee11f67552f9d0a37afd0e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T20:09:59.000Z'}}, {'blockNum': '0x7b33c4', 'uniqueId': '0x4a0c586f4537f8182e460ad6fc522853a164e2146fd563b332024bb28beb9897:log:26', 'hash': '0x4a0c586f4537f8182e460ad6fc522853a164e2146fd563b332024bb28beb9897', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T20:17:06.000Z'}}, {'blockNum': '0x7b33c4', 'uniqueId': '0x67a36322bf86dacdbe98ee737315920ff5b288414e67e91a67a472b898f99b11:log:34', 'hash': '0x67a36322bf86dacdbe98ee737315920ff5b288414e67e91a67a472b898f99b11', 'from': '0x28c692a95758c3305002af7f95c1ac5eb4cabeac', 'to': '0x6aa851cee2fcd592981ec26c7c4cc548abe396a1', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f072000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T20:17:06.000Z'}}, {'blockNum': '0x7b3406', 'uniqueId': '0x54cf9b49f2556ab052cb404d4a09684b1bf98abf4f2dae48cc1f54b7c51171d6:log:6', 'hash': '0x54cf9b49f2556ab052cb404d4a09684b1bf98abf4f2dae48cc1f54b7c51171d6', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 10261.96935402238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022c4d6ee53d50bf97d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T20:33:34.000Z'}}, {'blockNum': '0x7b3406', 'uniqueId': '0x54cf9b49f2556ab052cb404d4a09684b1bf98abf4f2dae48cc1f54b7c51171d6:log:8', 'hash': '0x54cf9b49f2556ab052cb404d4a09684b1bf98abf4f2dae48cc1f54b7c51171d6', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 10261.96935402238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x022c4d6ee53d50bf97d0', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T20:33:34.000Z'}}, {'blockNum': '0x7b340d', 'uniqueId': '0x9fe97380596a42fa406bb7f5795248b9f3482143e974e24ab622f8de1f4bcc2c:log:68', 'hash': '0x9fe97380596a42fa406bb7f5795248b9f3482143e974e24ab622f8de1f4bcc2c', 'from': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T20:34:51.000Z'}}, {'blockNum': '0x7b34a5', 'uniqueId': '0x2fb2630de07e58157b2f5152168c6e6685fea7df1522437fc0944e6232a2fa79:log:119', 'hash': '0x2fb2630de07e58157b2f5152168c6e6685fea7df1522437fc0944e6232a2fa79', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7351.36223784207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x018e84a52e2185436674', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:11:08.000Z'}}, {'blockNum': '0x7b34a5', 'uniqueId': '0x2fb2630de07e58157b2f5152168c6e6685fea7df1522437fc0944e6232a2fa79:log:123', 'hash': '0x2fb2630de07e58157b2f5152168c6e6685fea7df1522437fc0944e6232a2fa79', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 7351.36223784207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x018e84a52e2185436674', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:11:08.000Z'}}, {'blockNum': '0x7b34bc', 'uniqueId': '0x1e4b750644d0308d1a74f2b9cf157e091f1e6a200e953f4e00e845906e22e287:log:40', 'hash': '0x1e4b750644d0308d1a74f2b9cf157e091f1e6a200e953f4e00e845906e22e287', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 128800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1b464311d45a68800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:16:23.000Z'}}, {'blockNum': '0x7b34bc', 'uniqueId': '0xe7b813ad05fb4309c9a23c6e075b8ed6f62591d5f81aea5268d3ca069d52e15f:log:69', 'hash': '0xe7b813ad05fb4309c9a23c6e075b8ed6f62591d5f81aea5268d3ca069d52e15f', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4384.555825617345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xedafef7506cf7132dd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:16:23.000Z'}}, {'blockNum': '0x7b34bc', 'uniqueId': '0xe7b813ad05fb4309c9a23c6e075b8ed6f62591d5f81aea5268d3ca069d52e15f:log:73', 'hash': '0xe7b813ad05fb4309c9a23c6e075b8ed6f62591d5f81aea5268d3ca069d52e15f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 4384.555825617345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xedafef7506cf7132dd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:16:23.000Z'}}, {'blockNum': '0x7b34d2', 'uniqueId': '0x3d0cbcb8f4e050efd87c4a365490f3a7f3c9adde452c4abb87a9d56c784d17db:log:14', 'hash': '0x3d0cbcb8f4e050efd87c4a365490f3a7f3c9adde452c4abb87a9d56c784d17db', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdc1d8a88a3b6b88e5b1de47da6042d4ebde2fbd7', 'value': 1724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5d754e61db45700000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:20:59.000Z'}}, {'blockNum': '0x7b34e7', 'uniqueId': '0x79998ef0973c48c8e213c93ec118df937ecdbce82f32fd95178e0ef6f51c4ae6:log:12', 'hash': '0x79998ef0973c48c8e213c93ec118df937ecdbce82f32fd95178e0ef6f51c4ae6', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1bb2aea52fe625c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:27:44.000Z'}}, {'blockNum': '0x7b34f2', 'uniqueId': '0xe1a00bbd623bad8f924d8726d0f9ce9fe8b6f4f6b68626856842d4ab0fb5f53c:log:40', 'hash': '0xe1a00bbd623bad8f924d8726d0f9ce9fe8b6f4f6b68626856842d4ab0fb5f53c', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1717f006f48c680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:31:21.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0x72a4d9e4c611fcaa97e580ae313acbcc120d82215ef427641536e04dc2f906d0:log:70', 'hash': '0x72a4d9e4c611fcaa97e580ae313acbcc120d82215ef427641536e04dc2f906d0', 'from': '0x52509a7bcaf313c31ffd3117e2f3817afbf96df6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 393.30714627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x15523badb3b5f3ac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xb3a3cc645344e6b4a8fc20a4200dc7b7a921db2cc0aa400a40cd36544d3e38d5:log:71', 'hash': '0xb3a3cc645344e6b4a8fc20a4200dc7b7a921db2cc0aa400a40cd36544d3e38d5', 'from': '0x5ab4cf6a3b86ecc8a5cb44fbb8c4c2134e277346', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0x143c523625702a1e6afcb8ec06730715fe9e22b434a03ee13c56d66b864b72a3:log:72', 'hash': '0x143c523625702a1e6afcb8ec06730715fe9e22b434a03ee13c56d66b864b72a3', 'from': '0xe30aed501897fb4e4de8b3fa5ca1e921ba445dc9', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x361a08405e8fd80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xb7afa3e56a2b0cb808ad0f7e7c1abe74bc7c7874a09395900b42c0e22cc4c271:log:73', 'hash': '0xb7afa3e56a2b0cb808ad0f7e7c1abe74bc7c7874a09395900b42c0e22cc4c271', 'from': '0xa320c2f65d17d41bc6d31609035ee0023b8daf21', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 156.823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x08805b379dbb158000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0x26e536f349fd2034d595e50559f0731db704f469d50a6025e3ae2b78bc92dd5a:log:74', 'hash': '0x26e536f349fd2034d595e50559f0731db704f469d50a6025e3ae2b78bc92dd5a', 'from': '0x6353554139df828cf4cc37105044c64e4732bd5b', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0735beeb55f6f40000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xb0b5219c75359f0bdcf0f64621ac372e243eef6f9aeb95c3693fad7757fc0478:log:75', 'hash': '0xb0b5219c75359f0bdcf0f64621ac372e243eef6f9aeb95c3693fad7757fc0478', 'from': '0x7f365b2eceb49936941410d63deb8db56556d1e6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 109.25549186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x05ec397afc7be1ef10', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xb5a2c1c1a2169ff983a38864fbafaf1e0bf68197f8a09bff8533c4c9238d3e83:log:76', 'hash': '0xb5a2c1c1a2169ff983a38864fbafaf1e0bf68197f8a09bff8533c4c9238d3e83', 'from': '0x33c28a0531d42dbf86744212efbce528cb6d20b6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x2f000ac26fe7ac0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xc769df389cd45b2912a6493c05e3df12f46f72d81cb7774f2593a5e3d43ce245:log:77', 'hash': '0xc769df389cd45b2912a6493c05e3df12f46f72d81cb7774f2593a5e3d43ce245', 'from': '0x8ce3b330562781dde412318735b8c10d4cb45e38', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x34ccf71f86de780000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xbef1938b0556fbc17fdb80c98ebd6228304cff290be1de668952765c2213046a:log:78', 'hash': '0xbef1938b0556fbc17fdb80c98ebd6228304cff290be1de668952765c2213046a', 'from': '0x44cc57f79899e1adca5a046fd902d67b11ae1a28', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 111.59366454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x060cac56a68ace3f10', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xc1551de6de6ec179652563c6377be5b650ea7fd1ed55b1ad045d5d76024c3ee3:log:79', 'hash': '0xc1551de6de6ec179652563c6377be5b650ea7fd1ed55b1ad045d5d76024c3ee3', 'from': '0x78fbc4766822eaa30d1b0a0d08f9fdea6d7abad9', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0890b0c2e14fb80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xea87ab2395ae38f3ec9fbeac6ea62ffa0f3fe1655b3ab3c0f6015df2b0f7f0ba:log:80', 'hash': '0xea87ab2395ae38f3ec9fbeac6ea62ffa0f3fe1655b3ab3c0f6015df2b0f7f0ba', 'from': '0x2d1f87b4aae62add80174df1231378041c28817a', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 204.5208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0b164bd8009ab60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xd746ad00782403838537251d73924de36078ad32842a1564bca2082966c7bbad:log:81', 'hash': '0xd746ad00782403838537251d73924de36078ad32842a1564bca2082966c7bbad', 'from': '0xd4aac60daaaedfdac61ea14b4227e8b540c9c2f7', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0ba7b970e194fc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0x3a599a2d9f293c3e2e53c239acb454c4e9be1106dfc147b1d3fe2a83d525ae21:log:82', 'hash': '0x3a599a2d9f293c3e2e53c239acb454c4e9be1106dfc147b1d3fe2a83d525ae21', 'from': '0x0cde82f7232a42e2f3f07f9b20c9c910f24b6376', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 22534.72343443, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04c59c1c318846c7ec00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0x29ecec3e4e1bc3f750a8e4a6eef6838d3f007d0a1b361f95da752e18e4b6cbeb:log:83', 'hash': '0x29ecec3e4e1bc3f750a8e4a6eef6838d3f007d0a1b361f95da752e18e4b6cbeb', 'from': '0x279accc695f7c054317567074062a0eb5cec1377', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 683.83, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x25120c31e9d35f0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xd9b3cb3743e3441a4e164fd50b7c3c8a098ab14a6ceb02d67ae5fb31bb32a02a:log:84', 'hash': '0xd9b3cb3743e3441a4e164fd50b7c3c8a098ab14a6ceb02d67ae5fb31bb32a02a', 'from': '0xe0698812a045fa25cea7922cb5e7628ba892ab69', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 128.76557944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06fafb3c457a8ae000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0x2087d8ae68db407115b4df77554402356b45de2274581c5383939d64b89cfd98:log:85', 'hash': '0x2087d8ae68db407115b4df77554402356b45de2274581c5383939d64b89cfd98', 'from': '0xd0700d86bb4fef7ecbffe131ca12e9adbdde3fed', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 715.92051115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x26cf6497c80fd54c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b3529', 'uniqueId': '0xc60974b26633e99869956d5ae02f471f5fa33a23359b909d47ea75f35ccdeb27:log:86', 'hash': '0xc60974b26633e99869956d5ae02f471f5fa33a23359b909d47ea75f35ccdeb27', 'from': '0x5a75545337477742303eb8a607cca8d0642b0716', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1274.52779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4517a0504471a90710', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:42:28.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x20e25a33ceb806b0312a05441f89e3d76b92e70f800b214ae14a9ea712cdf4e2:log:78', 'hash': '0x20e25a33ceb806b0312a05441f89e3d76b92e70f800b214ae14a9ea712cdf4e2', 'from': '0x47d4e30d5c627b1b15a3f8894b2e495341717705', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1553.83019482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x543bb9c9a4c21c2800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x81bffcca9cc76181c693e5e1254e3ae60efa4f58e8330534ae76c2a552825f78:log:79', 'hash': '0x81bffcca9cc76181c693e5e1254e3ae60efa4f58e8330534ae76c2a552825f78', 'from': '0xc104af4316146d68c5217e3a228dcff1bfa57c85', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2499.99999314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x8786782c3174b30800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0xe826a4fc077074481246a041857863dc44566a76391cc59b05408e71296b8de2:log:80', 'hash': '0xe826a4fc077074481246a041857863dc44566a76391cc59b05408e71296b8de2', 'from': '0x57cdef33d8b6926ff4f05b6bc375f98b14e117c3', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 12482.3600097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a4ab8b2671c5f9e800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x7a431ff1d8709146ef33855520491b214795cfdb254810efa785791123880942:log:81', 'hash': '0x7a431ff1d8709146ef33855520491b214795cfdb254810efa785791123880942', 'from': '0xbd6d7dbb56a1e9787e7fd92822f121a9c42923fb', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2200.220022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x77462fc4be64256000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0xd81d7c49c997dd974bdad5d933c269829c87e391065f3e70de788a1cc29c6efa:log:82', 'hash': '0xd81d7c49c997dd974bdad5d933c269829c87e391065f3e70de788a1cc29c6efa', 'from': '0x20ed6a69b1942c7ce8c4eaabaf5479f863aefb8d', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2306.9122785491068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x7d0ed6cecb9a81bb1c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0xbb5656091946f7b2482ef9529e33a5154117e362aa471cd749b8f8af86c836f6:log:83', 'hash': '0xbb5656091946f7b2482ef9529e33a5154117e362aa471cd749b8f8af86c836f6', 'from': '0x0d2397ab574fd53bd9002175dac80416f9f67091', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2065.9578884678617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6ffeecd9a5c2f94dfd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0xce1d0c8149381d108aedc8877c8e2ea7e85d236f21b5e26e7f80226f3103fd99:log:84', 'hash': '0xce1d0c8149381d108aedc8877c8e2ea7e85d236f21b5e26e7f80226f3103fd99', 'from': '0xfe1acad43e44c3a9234e1705215b0c12d4f3aca0', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1380.2880848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4ad3585c0bc0408000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x1f454c89b2612d986d7c18b3c2dff6ece753a6c9a1c0a7dcd5a8471fe15a3e2d:log:85', 'hash': '0x1f454c89b2612d986d7c18b3c2dff6ece753a6c9a1c0a7dcd5a8471fe15a3e2d', 'from': '0xd7685b253a701acbb6146bb41bf34746bbff1805', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1760.962782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5f7644903f91a3e000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x21ae32547db31e22a19fa6154f46048e8984e07b27ae581024da587909a3177d:log:86', 'hash': '0x21ae32547db31e22a19fa6154f46048e8984e07b27ae581024da587909a3177d', 'from': '0x1748a428174654c610e8645bba7f9c075cdefd3a', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x71bdb9c21d1f2b459080e07fe4f18f1948b35895795a1eab0020a5db49677ddc:log:87', 'hash': '0x71bdb9c21d1f2b459080e07fe4f18f1948b35895795a1eab0020a5db49677ddc', 'from': '0xfb651a49e64d0b68dd80a424c0fae9de2dee85ee', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2837.5055709290564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x99d24cdb02da5d7890', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x081107bc979885d1bde31ee0fd5b82d793b8162d7862141d6a6f40058c3936f1:log:88', 'hash': '0x081107bc979885d1bde31ee0fd5b82d793b8162d7862141d6a6f40058c3936f1', 'from': '0xb7ed4f956894fbaf511b9379ada6dbd02e066cb0', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2016.26580307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6d4d4f1942130eec00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x1ff295540631727c4b94d66ef2a392e3ce456f64951e98507c000ac772d726f0:log:89', 'hash': '0x1ff295540631727c4b94d66ef2a392e3ce456f64951e98507c000ac772d726f0', 'from': '0x6aa851cee2fcd592981ec26c7c4cc548abe396a1', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f072000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0xa1368dd9d167f13277e89446ee1b6056f5e0b28d7e81a0efc37f24355d4205a8:log:90', 'hash': '0xa1368dd9d167f13277e89446ee1b6056f5e0b28d7e81a0efc37f24355d4205a8', 'from': '0xee47d1cfa65a30943651c77df496306db3964209', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1639.25481376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x58dd3afff871ea8000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x208370d193b9a316752982ad16315032a30078fa92791bc6ad52d0a45f07136e:log:91', 'hash': '0x208370d193b9a316752982ad16315032a30078fa92791bc6ad52d0a45f07136e', 'from': '0x1c44769bf2d82a3533725796900e3a67a8ac6378', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2302.54682464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x7cd24199981ad98000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x240660c6ff5d0314319415abbc70846b9a7865f9414570d17da7f5519f2e261c:log:92', 'hash': '0x240660c6ff5d0314319415abbc70846b9a7865f9414570d17da7f5519f2e261c', 'from': '0x02896780f8ae11bbcb62ec1c9c8e73f5cf34cdd7', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1999.99999569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x6c6b9357a03d3b2400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0xe61279f923fdea876dd5a920e90b2dacf994c6d971b7d73f95ca9d4786713a9d:log:93', 'hash': '0xe61279f923fdea876dd5a920e90b2dacf994c6d971b7d73f95ca9d4786713a9d', 'from': '0xe2b663bead0c4dd3224bb907956e9861408b482d', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 12837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b7e5297ea8b9740000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x21f410d2f5514de02bc2103d876e1f40cdb902aea88134fb040187bf49b0cebd:log:94', 'hash': '0x21f410d2f5514de02bc2103d876e1f40cdb902aea88134fb040187bf49b0cebd', 'from': '0xc7da2420e69626bfab002d29c903b3b438265053', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 4929.57872518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x010b3ba5c48614dd5800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x66e0ec6aa396d8dc500773c57e224bc743f3e085b6dfdcb2415c2c2984cec209:log:95', 'hash': '0x66e0ec6aa396d8dc500773c57e224bc743f3e085b6dfdcb2415c2c2984cec209', 'from': '0xda17346fbee7c7770fe45de1a3c5b8d7450685a0', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1076.22484686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3a579ebc22b3797800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x41954617b88b189f89320c894f29e54128c3fef49df13f417ce4f4bacd170066:log:96', 'hash': '0x41954617b88b189f89320c894f29e54128c3fef49df13f417ce4f4bacd170066', 'from': '0xb7dcc14835cb5e13ff1868953d95b5f94459d7da', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1439.99999941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4e1003b20433c27400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x049c5e534b6857cd52d9fbac9ee77297c262925f8878fdaa29c07c6df76537eb:log:97', 'hash': '0x049c5e534b6857cd52d9fbac9ee77297c262925f8878fdaa29c07c6df76537eb', 'from': '0x4c4e81401cd830b06ca34ad6c91ef4db35e3b07f', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1052.39795139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x390cf498f225c2ac00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x5cf5320ee0ae0daeba675c931c74d73c5590f2a786eb99b76815edaa3a2bcbb4:log:98', 'hash': '0x5cf5320ee0ae0daeba675c931c74d73c5590f2a786eb99b76815edaa3a2bcbb4', 'from': '0x2a25b3903d244ab9819b1cd5f50de5189c9d0c79', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 6335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01576bc927bb439c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x4d5cc3d57ff341c97485c08926f0b4969987ac1dbfc4f5e99cfb630a44d81d6d:log:99', 'hash': '0x4d5cc3d57ff341c97485c08926f0b4969987ac1dbfc4f5e99cfb630a44d81d6d', 'from': '0xf479200a37473b3023af46dc693fd60afa48c2ae', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 7067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x017f1a53916de58c0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0xa8f5654d182396fc2d2623abb3bcabe43df4e673f929dd22084667116b6bc143:log:100', 'hash': '0xa8f5654d182396fc2d2623abb3bcabe43df4e673f929dd22084667116b6bc143', 'from': '0x51012602802d266e3b4abb929caad17feb2627b8', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2411.29894081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x82b77ebb0eafb6e400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0xb510f2d83cd584a85f1fcf4f4a7d7bd47dcb9accae812cb4c801ef32d13b0ac9:log:101', 'hash': '0xb510f2d83cd584a85f1fcf4f4a7d7bd47dcb9accae812cb4c801ef32d13b0ac9', 'from': '0x2dd487b83a78aa486f6fa8fc0caabd8d831db4f4', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 43230.340859987875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0927857f4fff281bb786', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x1498fc6caab0318130522faf9b262c367eb075da8c0521040f2383517e2eee1e:log:102', 'hash': '0x1498fc6caab0318130522faf9b262c367eb075da8c0521040f2383517e2eee1e', 'from': '0x4813fc23a1569fa4735f1e52ddf2224b039bc0df', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1625.58157964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x581f79e9fb7490b000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x8b53d056582c8028a1092d8dd9e11253c2bc568a37b37347dd1ff1f04a0e2cec:log:103', 'hash': '0x8b53d056582c8028a1092d8dd9e11253c2bc568a37b37347dd1ff1f04a0e2cec', 'from': '0x6b5fcfa833fad3256c7ef2c0b3078a17ee34690f', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 20529.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0458e80b780c1dd60000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x32f59df8493efa753a22508a1b6ebf8ec64c73a41e65dbf70c54cd675a6ce18b:log:104', 'hash': '0x32f59df8493efa753a22508a1b6ebf8ec64c73a41e65dbf70c54cd675a6ce18b', 'from': '0x008fcf56532b2ee98b669abc0123c6600375e9e9', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2552, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x8a581d4eecace00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0xf8b7e1cc6306ffcbeb5e8c454a29e5fa7ccf5874d8a1d99fc41b36f2fdf0683c:log:105', 'hash': '0xf8b7e1cc6306ffcbeb5e8c454a29e5fa7ccf5874d8a1d99fc41b36f2fdf0683c', 'from': '0xbffac03e773dd4a8e89117d6f91b7a74a5bedfb0', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 3544.44926724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xc0251d6541f9cb9000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x6c811b90bdf723375a21428d238644b4c36aa6b262d51180f05301e69df359e6:log:106', 'hash': '0x6c811b90bdf723375a21428d238644b4c36aa6b262d51180f05301e69df359e6', 'from': '0xc8f179c85a9055e953d8db1e31e91bfb9bea0e24', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 1384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x4b06dbbb40f4a00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b352d', 'uniqueId': '0x752c51483383b0211dacb3f3d4899e9a10e35d5c4bbdc02329a94965dce622ce:log:107', 'hash': '0x752c51483383b0211dacb3f3d4899e9a10e35d5c4bbdc02329a94965dce622ce', 'from': '0x39fd629294226c3aba622c282c1420c034f4fa32', 'to': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'value': 2554.86496485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x8a7fdfb546bf1af400', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:43:23.000Z'}}, {'blockNum': '0x7b353a', 'uniqueId': '0x271c37556f3dd2acb4af01427a5ad5d80f1ef1b24cde2049deb183ec9888a203:log:31', 'hash': '0x271c37556f3dd2acb4af01427a5ad5d80f1ef1b24cde2049deb183ec9888a203', 'from': '0x5b7934cdbb5cd076bd486e0f017aeb777bf0d04c', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 234000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x318d2a58d6dd7e400000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:46:24.000Z'}}, {'blockNum': '0x7b353d', 'uniqueId': '0x4fefdf88b034c49f2a44e9a7b6f4b3d919c57709347bee4e95d1d803ecb514d0:log:26', 'hash': '0x4fefdf88b034c49f2a44e9a7b6f4b3d919c57709347bee4e95d1d803ecb514d0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 180000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x261dd1ce2f2088800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:47:38.000Z'}}, {'blockNum': '0x7b3570', 'uniqueId': '0x705ac2c63219d4f6d323d6dc470f37eeae95f97f817cd0d7381bfe6d13df841d:log:64', 'hash': '0x705ac2c63219d4f6d323d6dc470f37eeae95f97f817cd0d7381bfe6d13df841d', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 180000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x261dd1ce2f2088800000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T21:56:59.000Z'}}, {'blockNum': '0x7b3722', 'uniqueId': '0x33c1af0d7d449f87394492f33f538643a29b2a4669ea1e946b4c024ec1e84fa8:log:43', 'hash': '0x33c1af0d7d449f87394492f33f538643a29b2a4669ea1e946b4c024ec1e84fa8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5093.358568256808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01141c8ca80f2f381099', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T23:41:10.000Z'}}, {'blockNum': '0x7b3722', 'uniqueId': '0x33c1af0d7d449f87394492f33f538643a29b2a4669ea1e946b4c024ec1e84fa8:log:47', 'hash': '0x33c1af0d7d449f87394492f33f538643a29b2a4669ea1e946b4c024ec1e84fa8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 5093.358568256808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01141c8ca80f2f381099', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-02T23:41:10.000Z'}}, {'blockNum': '0x7b3801', 'uniqueId': '0x56728d2c899071bc2d1d59b7208fc83194961fe4b764a695e60f6b800aa59771:log:77', 'hash': '0x56728d2c899071bc2d1d59b7208fc83194961fe4b764a695e60f6b800aa59771', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 17966.259581973358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03cdf3f02c7b5bf56daa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T00:28:51.000Z'}}, {'blockNum': '0x7b3801', 'uniqueId': '0x56728d2c899071bc2d1d59b7208fc83194961fe4b764a695e60f6b800aa59771:log:81', 'hash': '0x56728d2c899071bc2d1d59b7208fc83194961fe4b764a695e60f6b800aa59771', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 17966.259581973358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03cdf3f02c7b5bf56daa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T00:28:51.000Z'}}, {'blockNum': '0x7b3804', 'uniqueId': '0x781f40efa5e4b16be05890a2f9012deb708d674a8c490bfea34c8c8d0f3cc325:log:61', 'hash': '0x781f40efa5e4b16be05890a2f9012deb708d674a8c490bfea34c8c8d0f3cc325', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 17966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03cdf055f40d6bf80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T00:30:22.000Z'}}, {'blockNum': '0x7b3821', 'uniqueId': '0x21ae7751029111385bd308d8384f3e23b3b782b776d6950137b558b4015f527f:log:17', 'hash': '0x21ae7751029111385bd308d8384f3e23b3b782b776d6950137b558b4015f527f', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03cdf055f40d6bf80000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T00:36:58.000Z'}}, {'blockNum': '0x7b38a1', 'uniqueId': '0xa98ba550032d0b7588c776fa979bed56e072f6f2be0afdeec5f48b7989226ac8:log:106', 'hash': '0xa98ba550032d0b7588c776fa979bed56e072f6f2be0afdeec5f48b7989226ac8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7795.953923751865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a69e9824eb0e9f3a4b', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T01:03:27.000Z'}}, {'blockNum': '0x7b38a1', 'uniqueId': '0xa98ba550032d0b7588c776fa979bed56e072f6f2be0afdeec5f48b7989226ac8:log:110', 'hash': '0xa98ba550032d0b7588c776fa979bed56e072f6f2be0afdeec5f48b7989226ac8', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 7795.953923751865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01a69e9824eb0e9f3a4b', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T01:03:27.000Z'}}, {'blockNum': '0x7b3a39', 'uniqueId': '0xdf9087d1b4bfcd0388589f493d042a8f90f385cb777156a03f976a0a150f5a29:log:72', 'hash': '0xdf9087d1b4bfcd0388589f493d042a8f90f385cb777156a03f976a0a150f5a29', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 6468.131868131868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015ea35c906f3fc1c21c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T02:39:52.000Z'}}, {'blockNum': '0x7b3a39', 'uniqueId': '0xdf9087d1b4bfcd0388589f493d042a8f90f385cb777156a03f976a0a150f5a29:log:74', 'hash': '0xdf9087d1b4bfcd0388589f493d042a8f90f385cb777156a03f976a0a150f5a29', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 6468.131868131868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015ea35c906f3fc1c21c', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T02:39:52.000Z'}}, {'blockNum': '0x7b3a3a', 'uniqueId': '0x3e3706136cf4d9e013c48696e5cef1872c7a9e01f67de3777ca88a87775bad09:log:31', 'hash': '0x3e3706136cf4d9e013c48696e5cef1872c7a9e01f67de3777ca88a87775bad09', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x94af38df629e1592c219e506388da180a2c1c089', 'value': 5159.73836871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0117b5c114e0510c3c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T02:40:11.000Z'}}, {'blockNum': '0x7b3a7c', 'uniqueId': '0xe1060ba9a4c0722919c519949dcda0f20fc73bd018306d40f8320a83a1ed57bf:log:38', 'hash': '0xe1060ba9a4c0722919c519949dcda0f20fc73bd018306d40f8320a83a1ed57bf', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7989.473684210527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01b11c3871be63d5e50d', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T02:56:27.000Z'}}, {'blockNum': '0x7b3a7c', 'uniqueId': '0xe1060ba9a4c0722919c519949dcda0f20fc73bd018306d40f8320a83a1ed57bf:log:40', 'hash': '0xe1060ba9a4c0722919c519949dcda0f20fc73bd018306d40f8320a83a1ed57bf', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7989.473684210527, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01b11c3871be63d5e50d', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T02:56:27.000Z'}}, {'blockNum': '0x7b3a80', 'uniqueId': '0x9ca8394a5bf590c9722025a0f145650de9a8752810883ae99774540ad523a17e:log:70', 'hash': '0x9ca8394a5bf590c9722025a0f145650de9a8752810883ae99774540ad523a17e', 'from': '0x94af38df629e1592c219e506388da180a2c1c089', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5159.73836871, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0117b5c114e0510c3c00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-03T02:57:44.000Z'}}]}}
Number of returned transfers:  194
Answer is complete
 
symbol            PIVX
group              CPI
date        2019-07-05
hour             16:00
exchange       binance
Name: 1020, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: PIVX, Contract: 
Datetime timestamps:  2019-07-05 16:00:00 2019-07-05 04:00:00 2019-07-06 04:00:00
Unix timestamps:  1562292000.0 1562378400.0
Hex Block Numbers:  0x7b6b9a 0x7b849d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SYS
group              CPI
date        2019-07-07
hour             17:59
exchange       binance
Name: 1021, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SYS, Contract: 
Datetime timestamps:  2019-07-07 17:59:00 2019-07-07 05:59:00 2019-07-08 05:59:00
Unix timestamps:  1562471940.0 1562558340.0
Hex Block Numbers:  0x7b9fe5 0x7bb91e
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             CND
group              CPI
date        2019-07-09
hour             17:00
exchange       binance
Name: 1022, dtype: object
HERE
 Symbol: CND, Contract: 0xec505c81d6a7567b5bde804870b1038832fe6da1
Datetime timestamps:  2019-07-09 17:00:00 2019-07-09 05:00:00 2019-07-10 05:00:00
Unix timestamps:  1562641200.0 1562727600.0
Hex Block Numbers:  0x7bd151 0x7bea72
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             SNM
group              CPI
date        2019-07-11
hour             17:00
exchange       binance
Name: 1023, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-07-11 17:00:00 2019-07-11 05:00:00 2019-07-12 05:00:00
Unix timestamps:  1562814000.0 1562900400.0
Hex Block Numbers:  0x7c03ad 0x7c1cae
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             DLT
group              CPI
date        2019-07-15
hour             17:00
exchange       binance
Name: 1024, dtype: object
HERE
 Symbol: DLT, Contract: 0x07e3c70653548b04f0a75970c1f81b4cbbfb606f
Datetime timestamps:  2019-07-15 17:00:00 2019-07-15 05:00:00 2019-07-16 05:00:00
Unix timestamps:  1563159600.0 1563246000.0
Hex Block Numbers:  0x7c67ff 0x7c80c9
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7c7044', 'uniqueId': '0x25de36a779fc27e871d066530040aab3d9a5912a19b53ee65fd267422c24dad8:log:3', 'hash': '0x25de36a779fc27e871d066530040aab3d9a5912a19b53ee65fd267422c24dad8', 'from': '0x79bbf2ec41bfc4751c5736ff5772562a54efd77e', 'to': '0xc99d64ec6abc2dcdba8d84ad548d4e0b62beedc9', 'value': 11004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0254872d524f2e700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-15T10:57:31.000Z'}}, {'blockNum': '0x7c705e', 'uniqueId': '0x5891552197a1049e44b2b510c1e1034705b58eaee3024b6c07d52c8cfa02f8c2:log:33', 'hash': '0x5891552197a1049e44b2b510c1e1034705b58eaee3024b6c07d52c8cfa02f8c2', 'from': '0xc99d64ec6abc2dcdba8d84ad548d4e0b62beedc9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x0254872d524f2e700000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-15T11:02:57.000Z'}}, {'blockNum': '0x7c7418', 'uniqueId': '0x2342bde375b456ffcf5894a0ba41aa8696a911bbc4158376767959761c8f2580:log:1', 'hash': '0x2342bde375b456ffcf5894a0ba41aa8696a911bbc4158376767959761c8f2580', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2829.2595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x995fdced30d34ac000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-15T14:44:11.000Z'}}, {'blockNum': '0x7c743c', 'uniqueId': '0x799150c33e3faa3371eac6c039cefe4c9762e912aca61d0e67e5a2f64300c881:log:69', 'hash': '0x799150c33e3faa3371eac6c039cefe4c9762e912aca61d0e67e5a2f64300c881', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x7d50f9a4ae3c33520087a04294b56a9d5eac5a76', 'value': 2829.2595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x995fdced30d34ac000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-15T14:51:31.000Z'}}, {'blockNum': '0x7c7664', 'uniqueId': '0xe66906dddbcd48f3909212f96c86faf64375cd61e049e02888e591ede6d8de60:log:0', 'hash': '0xe66906dddbcd48f3909212f96c86faf64375cd61e049e02888e591ede6d8de60', 'from': '0x8734cbeeb4108001d1bb1564d8b8a199515853c0', 'to': '0xb87afb94a3283aef4b5db0516d380e0d08f8fc5a', 'value': 36920.4642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x07d1765e30e5a69c8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-15T16:54:19.000Z'}}, {'blockNum': '0x7c7693', 'uniqueId': '0xe9f07023de2ed11ee98e5260b54b6bbcd9f526afa6b4f7c63daebc435991d520:log:0', 'hash': '0xe9f07023de2ed11ee98e5260b54b6bbcd9f526afa6b4f7c63daebc435991d520', 'from': '0xb87afb94a3283aef4b5db0516d380e0d08f8fc5a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36920.4642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0x07d1765e30e5a69c8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-15T17:03:01.000Z'}}, {'blockNum': '0x7c777f', 'uniqueId': '0xd96027bbffd77c9593b1c53c74c338b1d3e511a6d72807ed0c04c1ba6170a274:log:2', 'hash': '0xd96027bbffd77c9593b1c53c74c338b1d3e511a6d72807ed0c04c1ba6170a274', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x79bdc9dedb340951cafddc392ada6a6cc3362fb8', 'value': 3129.843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DLT', 'category': 'erc20', 'rawContract': {'value': '0xa9ab4c09e18eeb8000', 'address': '0x07e3c70653548b04f0a75970c1f81b4cbbfb606f', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-15T18:05:20.000Z'}}]}}
Number of returned transfers:  7
Answer is complete
 
symbol             SYS
group              CPI
date        2019-07-17
hour             17:00
exchange       binance
Name: 1025, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SYS, Contract: 
Datetime timestamps:  2019-07-17 17:00:00 2019-07-17 05:00:00 2019-07-18 05:00:00
Unix timestamps:  1563332400.0 1563418800.0
Hex Block Numbers:  0x7c9991 0x7cb274
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BTS
group              CPI
date        2019-07-19
hour             17:00
exchange       binance
Name: 1026, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: BTS, Contract: 
Datetime timestamps:  2019-07-19 17:00:00 2019-07-19 05:00:00 2019-07-20 05:00:00
Unix timestamps:  1563505200.0 1563591600.0
Hex Block Numbers:  0x7ccb9f 0x7ce48f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SNT
group              CPI
date        2019-07-22
hour             16:00
exchange       binance
Name: 1027, dtype: object
HERE
 Symbol: SNT, Contract: 0x744d70fdbe2ba4cf95131626614a1763df805b9e
Datetime timestamps:  2019-07-22 16:00:00 2019-07-22 04:00:00 2019-07-23 04:00:00
Unix timestamps:  1563760800.0 1563847200.0
Hex Block Numbers:  0x7d15f9 0x7d2f4b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7d1600', 'uniqueId': '0x392aa6b3fea594a9271c5a3ef588040495d9b7197bc66429a1db876ba512a3ee:log:76', 'hash': '0x392aa6b3fea594a9271c5a3ef588040495d9b7197bc66429a1db876ba512a3ee', 'from': '0x2cdfe646d84514d25c50c858d80854ee2fd1ec45', 'to': '0x0631f20d6fdb2f9059759a360f9487e4079eb685', 'value': 1.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0e043da617250000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:01:04.000Z'}}, {'blockNum': '0x7d1608', 'uniqueId': '0x2dd0abb3022d49a9b37f649ab09aac13058f2186bcc6a3cd883cad4363992732:log:98', 'hash': '0x2dd0abb3022d49a9b37f649ab09aac13058f2186bcc6a3cd883cad4363992732', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x77ae777c42ece20a2d3903e6ba0233db179fecb5', 'value': 2087, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7122f17299a03c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:03:02.000Z'}}, {'blockNum': '0x7d1608', 'uniqueId': '0xdb55058f0f58390cea7ba8922aed8ffda0e03093ece50000f1707c41796f3663:log:100', 'hash': '0xdb55058f0f58390cea7ba8922aed8ffda0e03093ece50000f1707c41796f3663', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:03:02.000Z'}}, {'blockNum': '0x7d1610', 'uniqueId': '0x3ef850304eaa79dd003e347b3ab1681c323f98211376f8140e59cce310b7b6cf:log:69', 'hash': '0x3ef850304eaa79dd003e347b3ab1681c323f98211376f8140e59cce310b7b6cf', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xa8085281ef09851be9be06cb38aa854ae6a6fe49', 'value': 6117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014b9a6d92beb8740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:04:13.000Z'}}, {'blockNum': '0x7d1617', 'uniqueId': '0xc14cb528aabacae02a3a72af1adbd95a57d5dd3e6535c892560ff3e6ee398e00:log:78', 'hash': '0xc14cb528aabacae02a3a72af1adbd95a57d5dd3e6535c892560ff3e6ee398e00', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x0db2bc92a39fdc9273cc08628a2c79776c436fe9', 'value': 22465.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04c1db7126ae02160000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:05:50.000Z'}}, {'blockNum': '0x7d1617', 'uniqueId': '0x8e99b530cb4771f4ba3692f11c0c976a15c8e5feb9172f56b85fbd221b97e3f4:log:86', 'hash': '0x8e99b530cb4771f4ba3692f11c0c976a15c8e5feb9172f56b85fbd221b97e3f4', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0x293455a2218e3b4068cdb63bdc6309d317e22ba3', 'value': 6557.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01637b97f2e040060000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:05:50.000Z'}}, {'blockNum': '0x7d1618', 'uniqueId': '0x9fe12ebed84ef09d26d87c60e517c37a15b4c9ff85676019d478a9e28fc4ed01:log:134', 'hash': '0x9fe12ebed84ef09d26d87c60e517c37a15b4c9ff85676019d478a9e28fc4ed01', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x420b68809bde46e15b97dec3e4d9d2dce8795531', 'value': 5910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014061b9d77a5e980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:05:55.000Z'}}, {'blockNum': '0x7d161a', 'uniqueId': '0x6d8e225675cc5e17b147845b39856d51d73d45f12790cfc0ffbfbdb58eeef80a:log:40', 'hash': '0x6d8e225675cc5e17b147845b39856d51d73d45f12790cfc0ffbfbdb58eeef80a', 'from': '0x0db2bc92a39fdc9273cc08628a2c79776c436fe9', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 22465.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04c1db7126ae02160000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:07:02.000Z'}}, {'blockNum': '0x7d161b', 'uniqueId': '0x3cf5751726c6779d4acc7ea8b0fc3fef1fdad0612052d8bc86dc55c9bdb66fa5:log:27', 'hash': '0x3cf5751726c6779d4acc7ea8b0fc3fef1fdad0612052d8bc86dc55c9bdb66fa5', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x396ae058532c2b4b5522a107f8dafbb9d01e6a51', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:07:09.000Z'}}, {'blockNum': '0x7d161e', 'uniqueId': '0x4d3675072bb4543e7adf718227e3db78f7b5f1f1406b27fb424f48dd00713c0d:log:2', 'hash': '0x4d3675072bb4543e7adf718227e3db78f7b5f1f1406b27fb424f48dd00713c0d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x746c2a20bb35a1eae9b5fa02fff3656e42797b0b', 'value': 49967.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a94c29da6f702b64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:07:44.000Z'}}, {'blockNum': '0x7d161e', 'uniqueId': '0x50b675e1bc8f5b331177dcefbb0daa2f8d2c0a84a3a38f5918f0ad6ff8c9a0c8:log:38', 'hash': '0x50b675e1bc8f5b331177dcefbb0daa2f8d2c0a84a3a38f5918f0ad6ff8c9a0c8', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x2cfd871143b15e5ea1b785efc93c32afb291e0d3', 'value': 12176.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0294157ed6aafa680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:07:44.000Z'}}, {'blockNum': '0x7d1624', 'uniqueId': '0x1a6d5a94682c4b5c1b44c68d8a4adaff70da431b0674f14008820ccfcce02001:log:17', 'hash': '0x1a6d5a94682c4b5c1b44c68d8a4adaff70da431b0674f14008820ccfcce02001', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 53881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b68e515ba3a26440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:09:01.000Z'}}, {'blockNum': '0x7d1625', 'uniqueId': '0x06bab6ac2be3242a3a1ab2b60f28c22f6b6c3f04904b15480e16af9fc43362dc:log:41', 'hash': '0x06bab6ac2be3242a3a1ab2b60f28c22f6b6c3f04904b15480e16af9fc43362dc', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x420b68809bde46e15b97dec3e4d9d2dce8795531', 'value': 2580, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8bdcb14a92fbd00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:09:09.000Z'}}, {'blockNum': '0x7d1625', 'uniqueId': '0x4987d1044048e767b38cd85b148e044adba92bbd62f98a3d9b93fc5dcb0a62aa:log:42', 'hash': '0x4987d1044048e767b38cd85b148e044adba92bbd62f98a3d9b93fc5dcb0a62aa', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xfb488a68c0b7afc57248da8026af4ec6a48912b9', 'value': 7012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x017c1f0c50d4ef100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:09:09.000Z'}}, {'blockNum': '0x7d162a', 'uniqueId': '0x15a2f996ece9d549f129873d61bdea53ea2cc1ddccae23c6c7146af977d294d5:log:86', 'hash': '0x15a2f996ece9d549f129873d61bdea53ea2cc1ddccae23c6c7146af977d294d5', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 61549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d0893f6376c05940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:10:20.000Z'}}, {'blockNum': '0x7d162e', 'uniqueId': '0xa4afdef0c1cadb8404ac23b1a42e4d6bc465678683704597dc5923904624cb2f:log:11', 'hash': '0xa4afdef0c1cadb8404ac23b1a42e4d6bc465678683704597dc5923904624cb2f', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5e6f30c4e1bcfc72fac8206808ac2e87ae483174', 'value': 48700.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a5013756bd18eca4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:11:09.000Z'}}, {'blockNum': '0x7d162e', 'uniqueId': '0xef4ea86a4320c85d5afe19483e4bd30f25368dba9d31943affd326a6f44e07c6:log:12', 'hash': '0xef4ea86a4320c85d5afe19483e4bd30f25368dba9d31943affd326a6f44e07c6', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb29e042eb724461042b79ce86b1a6fa29864df20', 'value': 58350.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c5b341c6bed66524000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:11:09.000Z'}}, {'blockNum': '0x7d162f', 'uniqueId': '0x08ab250829f53e1c5e9adb5ecb1c6718646445789ce6f694d01db487b9841f7d:log:114', 'hash': '0x08ab250829f53e1c5e9adb5ecb1c6718646445789ce6f694d01db487b9841f7d', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x5a59f13b88131352ffe92bccae48a7d423d14381', 'value': 860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2e9ee5c38653f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:11:15.000Z'}}, {'blockNum': '0x7d162f', 'uniqueId': '0x9627351c5f0e7411d77e4568fca9e887781fd96d620bc5c355782c5130a5cff5:log:130', 'hash': '0x9627351c5f0e7411d77e4568fca9e887781fd96d620bc5c355782c5130a5cff5', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x396ae058532c2b4b5522a107f8dafbb9d01e6a51', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:11:15.000Z'}}, {'blockNum': '0x7d1632', 'uniqueId': '0xd31f8e9c589d4442872d12b46b7a6254d0abda108d227ea26adeaf0a5d7d4554:log:28', 'hash': '0xd31f8e9c589d4442872d12b46b7a6254d0abda108d227ea26adeaf0a5d7d4554', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:12:10.000Z'}}, {'blockNum': '0x7d1632', 'uniqueId': '0x6cc83ec440234a32188ae89eb094efc67179a6bee2d91c5d825cb6c65dbe8ff4:log:29', 'hash': '0x6cc83ec440234a32188ae89eb094efc67179a6bee2d91c5d825cb6c65dbe8ff4', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x5a59f13b88131352ffe92bccae48a7d423d14381', 'value': 680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x24dce54d34a1a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:12:10.000Z'}}, {'blockNum': '0x7d1632', 'uniqueId': '0x7d7fb62b90441042ec4224b31712c0247759a5b5b90a91052d7aa288bbe482ee:log:33', 'hash': '0x7d7fb62b90441042ec4224b31712c0247759a5b5b90a91052d7aa288bbe482ee', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:12:10.000Z'}}, {'blockNum': '0x7d1639', 'uniqueId': '0xa4db3a9d01deab34628cf90e8ce89074008fdebce2e315f0d31e42429fe8d761:log:22', 'hash': '0xa4db3a9d01deab34628cf90e8ce89074008fdebce2e315f0d31e42429fe8d761', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7d7cc3aebe5a8d67972ce13e2c5020f10747f722', 'value': 20017.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043d2adef8dd9d7e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:14:04.000Z'}}, {'blockNum': '0x7d1639', 'uniqueId': '0xf8be8a208a2ee6181f0c6f9a7f8585cb1efae40fc150c94f85db6827fb2ebebd:log:23', 'hash': '0xf8be8a208a2ee6181f0c6f9a7f8585cb1efae40fc150c94f85db6827fb2ebebd', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x51c375306b9f12942872cbe532064a71b90da1b7', 'value': 60000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a675fdda48da4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:14:04.000Z'}}, {'blockNum': '0x7d163a', 'uniqueId': '0x9818d4d77c967dd49067ca0361f7784c14187c4cb3555a8f841487c4e966c730:log:40', 'hash': '0x9818d4d77c967dd49067ca0361f7784c14187c4cb3555a8f841487c4e966c730', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x70410f1bc4db98d02c4e82812d7e0d69455f35e3', 'value': 1814.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x625d3ef85df24a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:14:42.000Z'}}, {'blockNum': '0x7d163d', 'uniqueId': '0xb8538d7a49ea337541799529616d6589b78558b404bf4621a248db167c3d8dba:log:81', 'hash': '0xb8538d7a49ea337541799529616d6589b78558b404bf4621a248db167c3d8dba', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x396ae058532c2b4b5522a107f8dafbb9d01e6a51', 'value': 1543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x53a56d34d5ebbc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:15:19.000Z'}}, {'blockNum': '0x7d163d', 'uniqueId': '0xa712b3b6ec01d94ee07bd07cd5a062e51c1e33a682f2c0c30f9817fe946d32f9:log:82', 'hash': '0xa712b3b6ec01d94ee07bd07cd5a062e51c1e33a682f2c0c30f9817fe946d32f9', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x44db41f4160a7624a02e3786ab862a5e0753c583', 'value': 11484.878723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x026e98b5bd12b8e73000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:15:19.000Z'}}, {'blockNum': '0x7d163f', 'uniqueId': '0x2f8711b8613f0c2c029bc161d8364daa5d931a8b27ef6291c15cf83ca83135dd:log:17', 'hash': '0x2f8711b8613f0c2c029bc161d8364daa5d931a8b27ef6291c15cf83ca83135dd', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xc975de6152f20dcfc9e3d95a6a8ea2e4532f217b', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01e7e4171bf4d3a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:15:35.000Z'}}, {'blockNum': '0x7d1641', 'uniqueId': '0x36ed605212946905bba2284624d4e71f59d7ac0e8444d0168eae8a593f6247b3:log:72', 'hash': '0x36ed605212946905bba2284624d4e71f59d7ac0e8444d0168eae8a593f6247b3', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x6e5b54c65a7510492eaad725d4af363f1808284f', 'value': 9386.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01fcd93e37a969a40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:16:21.000Z'}}, {'blockNum': '0x7d1641', 'uniqueId': '0x50c52da3fc9651c3b2059db7f1c8d1417282681440a091f95320a7be74935878:log:73', 'hash': '0x50c52da3fc9651c3b2059db7f1c8d1417282681440a091f95320a7be74935878', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:16:21.000Z'}}, {'blockNum': '0x7d1648', 'uniqueId': '0x33d02051f11427bd1b7ee7d3d022c59a9266c8fa7ddb4845974baa492cdb4a7f:log:70', 'hash': '0x33d02051f11427bd1b7ee7d3d022c59a9266c8fa7ddb4845974baa492cdb4a7f', 'from': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'to': '0xc10c461d048b5a1f1fe84b4a99436ce91a366af1', 'value': 364.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13c27422cbd5e20000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:17:56.000Z'}}, {'blockNum': '0x7d1648', 'uniqueId': '0x1c8933d4f27082b524df675a9c89956d76ffefc1b66fbf62f97cab318359733d:log:74', 'hash': '0x1c8933d4f27082b524df675a9c89956d76ffefc1b66fbf62f97cab318359733d', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:17:56.000Z'}}, {'blockNum': '0x7d1649', 'uniqueId': '0x27146115dedd5caa78c6e55f0538bf240578d5f8fec9d5f32fb97b14541156f9:log:68', 'hash': '0x27146115dedd5caa78c6e55f0538bf240578d5f8fec9d5f32fb97b14541156f9', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:18:06.000Z'}}, {'blockNum': '0x7d1652', 'uniqueId': '0x8413113b16f6f9dff79fea32bf1c1b2f102bcc751712889d48e2c82a945422c1:log:85', 'hash': '0x8413113b16f6f9dff79fea32bf1c1b2f102bcc751712889d48e2c82a945422c1', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x027a696532d3341e8932fdfe285d13ea5c1e3681', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:19:16.000Z'}}, {'blockNum': '0x7d1652', 'uniqueId': '0xe50bdd020785560b12de8ce5c944c0f255c9810c890a9c490f3c5aba15afd743:log:87', 'hash': '0xe50bdd020785560b12de8ce5c944c0f255c9810c890a9c490f3c5aba15afd743', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:19:16.000Z'}}, {'blockNum': '0x7d1657', 'uniqueId': '0xa03cd74e1ac41d32bf6683178ad00bc1a7f48e4e1e1e8bd779cb444c3c257412:log:79', 'hash': '0xa03cd74e1ac41d32bf6683178ad00bc1a7f48e4e1e1e8bd779cb444c3c257412', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0x48ce0ee8cc82ae400ef33fe38ba6e5481924a854', 'value': 3241.390322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xafb753bc3caf092000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:20:35.000Z'}}, {'blockNum': '0x7d1657', 'uniqueId': '0xcfda7e6417c21f9b637add229bfe6bd34e71e06bce5f8a84be38dcb0ac16ebb2:log:81', 'hash': '0xcfda7e6417c21f9b637add229bfe6bd34e71e06bce5f8a84be38dcb0ac16ebb2', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x8e0e3235f867bfceee2b6d88c1d6c6c9a43c4840', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:20:35.000Z'}}, {'blockNum': '0x7d165a', 'uniqueId': '0x7170483ae67360fc27d902a313fb16c8a6f5bac0904727af7c1db0831b4ac772:log:14', 'hash': '0x7170483ae67360fc27d902a313fb16c8a6f5bac0904727af7c1db0831b4ac772', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:21:15.000Z'}}, {'blockNum': '0x7d165e', 'uniqueId': '0xb00c8ad0f38d5b08e8ab0ad40d75b6dd85bb5fa5081e9bc47c92109baf7676dd:log:27', 'hash': '0xb00c8ad0f38d5b08e8ab0ad40d75b6dd85bb5fa5081e9bc47c92109baf7676dd', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x2416dec0241354f1881d323816e464ac5a1bc6a9', 'value': 6954.6536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01790334f9ddb39a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:22:11.000Z'}}, {'blockNum': '0x7d165e', 'uniqueId': '0xe25881e9c737ce8b2ae717e6bdf1d7dff46550b49f21702db42724b66c9265ed:log:28', 'hash': '0xe25881e9c737ce8b2ae717e6bdf1d7dff46550b49f21702db42724b66c9265ed', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:22:11.000Z'}}, {'blockNum': '0x7d1666', 'uniqueId': '0xbded530dea127303411892a702b9ff673326278ba4cdead1c44488761aacba55:log:4', 'hash': '0xbded530dea127303411892a702b9ff673326278ba4cdead1c44488761aacba55', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x91f3251b9dca43d0a377b674fcf9b747134565f6', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:23:47.000Z'}}, {'blockNum': '0x7d1666', 'uniqueId': '0x9b7abd42fb65c7de8d2f35adf2a7fb8b38e1a4d079118f1ac2f1496fd617f843:log:45', 'hash': '0x9b7abd42fb65c7de8d2f35adf2a7fb8b38e1a4d079118f1ac2f1496fd617f843', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:23:47.000Z'}}, {'blockNum': '0x7d1666', 'uniqueId': '0x5a61f1dce1496025cfb323aeadd4cdd3dd97cdaa96fafc4a5d44c80e13d6cfc0:log:48', 'hash': '0x5a61f1dce1496025cfb323aeadd4cdd3dd97cdaa96fafc4a5d44c80e13d6cfc0', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x50789633254128b794020ee86226ebcccbda76ef', 'value': 1220.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4229d70b838c420000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:23:47.000Z'}}, {'blockNum': '0x7d166a', 'uniqueId': '0x357e604b7a437d033f03e57a2f8c0b22a8516516a166356f866204e8a745e8ed:log:25', 'hash': '0x357e604b7a437d033f03e57a2f8c0b22a8516516a166356f866204e8a745e8ed', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xdc1e7e8092e08855cbd4762de20afbed354c5a44', 'value': 1150.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3e5a3b45faae4c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:24:27.000Z'}}, {'blockNum': '0x7d166f', 'uniqueId': '0x4db1b30a8d4dfd4527e79f7771c6ebcf8aea541a7ec76d0f653c4a1b40d9db59:log:4', 'hash': '0x4db1b30a8d4dfd4527e79f7771c6ebcf8aea541a7ec76d0f653c4a1b40d9db59', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:25:28.000Z'}}, {'blockNum': '0x7d1673', 'uniqueId': '0x52eb8015c0920faff0a20ffe0419b06a2d32dd08ff49cf6f0fe2af57a2a8c7e3:log:14', 'hash': '0x52eb8015c0920faff0a20ffe0419b06a2d32dd08ff49cf6f0fe2af57a2a8c7e3', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:26:33.000Z'}}, {'blockNum': '0x7d1682', 'uniqueId': '0xb36f8175dfed096fab6413f06d86cbabaa1c3c87dcc7e872b4643133ae80407a:log:8', 'hash': '0xb36f8175dfed096fab6413f06d86cbabaa1c3c87dcc7e872b4643133ae80407a', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xa724903a6d423a9bbc43fac4137707c6f906b473', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:28:52.000Z'}}, {'blockNum': '0x7d1682', 'uniqueId': '0x4492183017e6dc6b86317ebb8d938485da68c22b4b744d4d863eed7a76333917:log:36', 'hash': '0x4492183017e6dc6b86317ebb8d938485da68c22b4b744d4d863eed7a76333917', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:28:52.000Z'}}, {'blockNum': '0x7d1686', 'uniqueId': '0xbdb7de8402933b0778c719a54ca3f464d1087c6e2043447e21c9b2d22f91c46c:log:57', 'hash': '0xbdb7de8402933b0778c719a54ca3f464d1087c6e2043447e21c9b2d22f91c46c', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xd933662bc4787aa3aab1f8bbd6fa127eacbe4bbc', 'value': 5690.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01347fb700d970f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:29:56.000Z'}}, {'blockNum': '0x7d168a', 'uniqueId': '0x92b30c3aaa91e268dbe325284a5b30886bcf2b0a37c7bba2f19697c9f0658d8e:log:1', 'hash': '0x92b30c3aaa91e268dbe325284a5b30886bcf2b0a37c7bba2f19697c9f0658d8e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x661a9adf9c3dfc521226748ed1d45e4b45a39c9b', 'value': 58251.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c55cb1b98b0be564000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:30:39.000Z'}}, {'blockNum': '0x7d168d', 'uniqueId': '0xfe23718596156b5cbd7f01bb144b73630832f824a040b3a1fbaebcd2dcc60674:log:61', 'hash': '0xfe23718596156b5cbd7f01bb144b73630832f824a040b3a1fbaebcd2dcc60674', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x323fc3913bdf53a6e21f3faac8688e521c982935', 'value': 12920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02bc6504bae7fee00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:31:13.000Z'}}, {'blockNum': '0x7d168d', 'uniqueId': '0xab3730143d8c737a1feb09612eca7bbddf7b90459dedca2105676d4e64d5d9a8:log:62', 'hash': '0xab3730143d8c737a1feb09612eca7bbddf7b90459dedca2105676d4e64d5d9a8', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:31:13.000Z'}}, {'blockNum': '0x7d1691', 'uniqueId': '0xb346312fc8cd95f2b3c490bd478228ea59803928300f6941adad4f71ae289efb:log:0', 'hash': '0xb346312fc8cd95f2b3c490bd478228ea59803928300f6941adad4f71ae289efb', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x459f406c75dc95e457b6eb01291abd35c77c2811', 'value': 2522, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x88b7c7e5df0f280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:31:53.000Z'}}, {'blockNum': '0x7d1697', 'uniqueId': '0x496cad6c35346802d89c11e5f05ac9825413bd7484d81216e17909e5daa54764:log:35', 'hash': '0x496cad6c35346802d89c11e5f05ac9825413bd7484d81216e17909e5daa54764', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 4290, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe88fb5ae9b19c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:32:38.000Z'}}, {'blockNum': '0x7d1697', 'uniqueId': '0xa390e2fe047a2277733a4b4cda349d3e958f768a0855a705e9ef6017c7fa6022:log:36', 'hash': '0xa390e2fe047a2277733a4b4cda349d3e958f768a0855a705e9ef6017c7fa6022', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 13818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02ed13459d192ba80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:32:38.000Z'}}, {'blockNum': '0x7d1699', 'uniqueId': '0xeb6886d5e7ef50de47eb47d03fec4eda4e19ddf79a5424282bb5d9c576f503cc:log:42', 'hash': '0xeb6886d5e7ef50de47eb47d03fec4eda4e19ddf79a5424282bb5d9c576f503cc', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:33:09.000Z'}}, {'blockNum': '0x7d169f', 'uniqueId': '0x1a9b2d031b30dee4a4711e36041aa74bfbea4e66606f7de9bcabe04ecb62da5d:log:2', 'hash': '0x1a9b2d031b30dee4a4711e36041aa74bfbea4e66606f7de9bcabe04ecb62da5d', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x15d8228bd8d4688cf2603d4e28f575cd6d9e5255', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:34:03.000Z'}}, {'blockNum': '0x7d169f', 'uniqueId': '0xc412f3362333e95d81722f289d4338b3cc5f8c8a09955c14d8cb13544441ce7b:log:109', 'hash': '0xc412f3362333e95d81722f289d4338b3cc5f8c8a09955c14d8cb13544441ce7b', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 4290, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe88fb5ae9b19c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:34:03.000Z'}}, {'blockNum': '0x7d16a2', 'uniqueId': '0x436e9eec5f342c361ccc79958a32fe2ffba3a2a38672ab0cb0ef29a8b136d929:log:108', 'hash': '0x436e9eec5f342c361ccc79958a32fe2ffba3a2a38672ab0cb0ef29a8b136d929', 'from': '0x323fc3913bdf53a6e21f3faac8688e521c982935', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 12920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02bc6504bae7fee00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:35:05.000Z'}}, {'blockNum': '0x7d16aa', 'uniqueId': '0xa32533c0f5c4c058d3b39b5765f2f6190b660489b76db047c672938f50fa7a8e:log:65', 'hash': '0xa32533c0f5c4c058d3b39b5765f2f6190b660489b76db047c672938f50fa7a8e', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 102083.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x159df0fd0406b4400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:36:55.000Z'}}, {'blockNum': '0x7d16aa', 'uniqueId': '0x96a8d3c400563c9a24eea9420fd817b1ff3f4a6f6e3b1dd9849eaba165d72ff1:log:76', 'hash': '0x96a8d3c400563c9a24eea9420fd817b1ff3f4a6f6e3b1dd9849eaba165d72ff1', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0x6b4645d2942c29eea85e6a911dbd6179445863ea', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa10107a043fe280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:36:55.000Z'}}, {'blockNum': '0x7d16aa', 'uniqueId': '0xf1cf38dff43d2636435c676794f6372ac413dc602a806c895a5fee9f0ba796e7:log:93', 'hash': '0xf1cf38dff43d2636435c676794f6372ac413dc602a806c895a5fee9f0ba796e7', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 3490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbd317abd3001480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:36:55.000Z'}}, {'blockNum': '0x7d16ad', 'uniqueId': '0x131bc3d8e228c1a03d2837df7ca0c3744d063f71632d8e9d4d3dd58d0f1a4786:log:24', 'hash': '0x131bc3d8e228c1a03d2837df7ca0c3744d063f71632d8e9d4d3dd58d0f1a4786', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xeacac6163be06e652edb238ae71d3859ac655613', 'value': 3918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd4652c318bdc780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:37:07.000Z'}}, {'blockNum': '0x7d16b5', 'uniqueId': '0xe483b4b991f50c4e13f1a309e1492ff257a36da3eae3d82fd72306e60294f8dc:log:67', 'hash': '0xe483b4b991f50c4e13f1a309e1492ff257a36da3eae3d82fd72306e60294f8dc', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xd9c4a05b3799326ded76f906aedd77e59cd97987', 'value': 4278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe7e92d1e2f41180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:38:56.000Z'}}, {'blockNum': '0x7d16b5', 'uniqueId': '0x35fb917b2f702ab1b115b83679688f77b274f554b0ab39cfe959e96337b2e5dc:log:68', 'hash': '0x35fb917b2f702ab1b115b83679688f77b274f554b0ab39cfe959e96337b2e5dc', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x698e5805edc2038ae3f997d25a7b344e71295d10', 'value': 27051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05ba7009b9a8d3cc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:38:56.000Z'}}, {'blockNum': '0x7d16b7', 'uniqueId': '0x9b700dbc02a66b9a9fd16d1f87d5582db129a70ac0a5363ee09c6a6d54a1214a:log:31', 'hash': '0x9b700dbc02a66b9a9fd16d1f87d5582db129a70ac0a5363ee09c6a6d54a1214a', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x60e6af6d97b76a89f9b79a598ac8e57b25ee9a47', 'value': 2510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x88113f557336780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:39:31.000Z'}}, {'blockNum': '0x7d16b7', 'uniqueId': '0x158a05be4953b7fda2d248696aa1625db119f34900a3f514741011a73e63cc9c:log:32', 'hash': '0x158a05be4953b7fda2d248696aa1625db119f34900a3f514741011a73e63cc9c', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x3aeeb1a1fa581872e41372440db35611e1819c7a', 'value': 2107.700564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7242389fe1be794000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:39:31.000Z'}}, {'blockNum': '0x7d16ba', 'uniqueId': '0xff1d14b1cd189fb905879da50906f3b3c1cf546affe405d09aa3b2b1e040103d:log:0', 'hash': '0xff1d14b1cd189fb905879da50906f3b3c1cf546affe405d09aa3b2b1e040103d', 'from': '0x15d8228bd8d4688cf2603d4e28f575cd6d9e5255', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 80000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10f0cf064dd592000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:39:51.000Z'}}, {'blockNum': '0x7d16bb', 'uniqueId': '0x8a8382cf93c40d9314fc97159c7a5d49252e2798fcba45d364d7f19e5d66577e:log:8', 'hash': '0x8a8382cf93c40d9314fc97159c7a5d49252e2798fcba45d364d7f19e5d66577e', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:40:14.000Z'}}, {'blockNum': '0x7d16bd', 'uniqueId': '0x8c048712ae66669af90a87b968ebbfb439c3ce3f407d453904f5f30bba9ed80f:log:98', 'hash': '0x8c048712ae66669af90a87b968ebbfb439c3ce3f407d453904f5f30bba9ed80f', 'from': '0xe7efadd7b9614cbfd26a00f6993457cd49209274', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:40:32.000Z'}}, {'blockNum': '0x7d16bd', 'uniqueId': '0xa9ea2c8abefa6317b8ff7d117897de40faee6f9975c190989c43f0b073a216db:log:99', 'hash': '0xa9ea2c8abefa6317b8ff7d117897de40faee6f9975c190989c43f0b073a216db', 'from': '0x6593be891aa716edb573f07ba7bd77dbc337a39a', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 9100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01ed4fde7a2236b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:40:32.000Z'}}, {'blockNum': '0x7d16bd', 'uniqueId': '0xe18437519e15d26c9c84670d91fbe2876822ad866cbe7d19d4266cab267a8cc6:log:100', 'hash': '0xe18437519e15d26c9c84670d91fbe2876822ad866cbe7d19d4266cab267a8cc6', 'from': '0xb7858c90b478deab8b8c108954e76378470934ff', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12732.9381875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b24103ab888fa63800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:40:32.000Z'}}, {'blockNum': '0x7d16bf', 'uniqueId': '0x94ebfbc3b3701d5431063902886494afcb6bfc840031678f26720a10a83db96e:log:78', 'hash': '0x94ebfbc3b3701d5431063902886494afcb6bfc840031678f26720a10a83db96e', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x0fdc741b2010dc42c50be80bedba64f0a2711daa', 'value': 16329.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x037539560499dd360000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:41:18.000Z'}}, {'blockNum': '0x7d16c5', 'uniqueId': '0x9388edae787b40b5566e15907acd800ae2814c56902ebab25bc067cd5c7a8c67:log:70', 'hash': '0x9388edae787b40b5566e15907acd800ae2814c56902ebab25bc067cd5c7a8c67', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:42:06.000Z'}}, {'blockNum': '0x7d16c5', 'uniqueId': '0x38abcaa522ece227470a7c8ca7c96a026b3893f32b1385c4a87c851695cdbb15:log:71', 'hash': '0x38abcaa522ece227470a7c8ca7c96a026b3893f32b1385c4a87c851695cdbb15', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xffdf9f8321d6067d9d08a8db71f5911c4667f51f', 'value': 39978.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08773d23ced43a1a0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:42:06.000Z'}}, {'blockNum': '0x7d16c6', 'uniqueId': '0xf2203653a8b28199948ff1b4aadcd67c39cb59983a7d0f1a2fa2cee550ffcd85:log:26', 'hash': '0xf2203653a8b28199948ff1b4aadcd67c39cb59983a7d0f1a2fa2cee550ffcd85', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xc975de6152f20dcfc9e3d95a6a8ea2e4532f217b', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:42:44.000Z'}}, {'blockNum': '0x7d16c8', 'uniqueId': '0x4198e72b93746ff5c0c136db4e709c51232c3fbbc076b8f83c5c0185c6fdaa98:log:38', 'hash': '0x4198e72b93746ff5c0c136db4e709c51232c3fbbc076b8f83c5c0185c6fdaa98', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:43:09.000Z'}}, {'blockNum': '0x7d16c8', 'uniqueId': '0x79a66263a476bd5cb413fd0e65113034a368b2eee441ea1162206df737edde82:log:39', 'hash': '0x79a66263a476bd5cb413fd0e65113034a368b2eee441ea1162206df737edde82', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x6932f99ce2425f9d59c71bcce1f5b9144184a164', 'value': 3770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc5f4291af16a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:43:09.000Z'}}, {'blockNum': '0x7d16ce', 'uniqueId': '0x90bbc46a03669c3fd8b0eae6999031273007e866c96a982a647e6e9f10efcaca:log:34', 'hash': '0x90bbc46a03669c3fd8b0eae6999031273007e866c96a982a647e6e9f10efcaca', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:44:05.000Z'}}, {'blockNum': '0x7d16d1', 'uniqueId': '0x439ffe20d9f8a7656e91f0d93f05d125612760c59e8381703db37b9dd90d3d48:log:69', 'hash': '0x439ffe20d9f8a7656e91f0d93f05d125612760c59e8381703db37b9dd90d3d48', 'from': '0xd9c4a05b3799326ded76f906aedd77e59cd97987', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 4278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe7e92d1e2f41180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:44:44.000Z'}}, {'blockNum': '0x7d16d3', 'uniqueId': '0x573b14b01a763e23f97cf6758ac3e845176658b8fcbf777a96748fa8c553b22b:log:65', 'hash': '0x573b14b01a763e23f97cf6758ac3e845176658b8fcbf777a96748fa8c553b22b', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0xce6c0a615bf5b427e53d9e2e23047bca9dca6869', 'value': 4839.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0106598dd93ae6ee0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:45:00.000Z'}}, {'blockNum': '0x7d16d9', 'uniqueId': '0x0b31c3e145e1b782e1b38403ce2bdb033f229bdae061977a0b0b6317622cfa0a:log:11', 'hash': '0x0b31c3e145e1b782e1b38403ce2bdb033f229bdae061977a0b0b6317622cfa0a', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:46:09.000Z'}}, {'blockNum': '0x7d16d9', 'uniqueId': '0x3b4d8030cfe7dc1b063eeb04d18bde7d11702eaa3217e15e7f10b0d13b8ed35b:log:12', 'hash': '0x3b4d8030cfe7dc1b063eeb04d18bde7d11702eaa3217e15e7f10b0d13b8ed35b', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:46:09.000Z'}}, {'blockNum': '0x7d16df', 'uniqueId': '0x7abbfe73b745925b15abaab970d617b6d5422db838c639782e4b5674c7a5d322:log:51', 'hash': '0x7abbfe73b745925b15abaab970d617b6d5422db838c639782e4b5674c7a5d322', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 1680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5b12aefafa80400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:47:01.000Z'}}, {'blockNum': '0x7d16e7', 'uniqueId': '0x4fdabd0ea1c1d39858d88c55331f6c8f48d8d3716f3b943eb1e2ae75f89dab71:log:28', 'hash': '0x4fdabd0ea1c1d39858d88c55331f6c8f48d8d3716f3b943eb1e2ae75f89dab71', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xf27cf5b1c6d9a0b4beab816498dcd50fdb17d523', 'value': 2242.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x798e29e1c912660000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:48:19.000Z'}}, {'blockNum': '0x7d16ec', 'uniqueId': '0x4d0867df8c81db4028fa753f87544650012b8f42176a31c0d576de9ad3e0137e:log:13', 'hash': '0x4d0867df8c81db4028fa753f87544650012b8f42176a31c0d576de9ad3e0137e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x26a7b18b019d3be4fea04022cbb149c323be4d06', 'value': 27327.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05c9717ff6d366f64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:49:07.000Z'}}, {'blockNum': '0x7d16ec', 'uniqueId': '0xaba3e9903dd960e84f19ff66db3a647f30262b0150abf25669580d151efed9ae:log:50', 'hash': '0xaba3e9903dd960e84f19ff66db3a647f30262b0150abf25669580d151efed9ae', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 2370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x807a5b6b33abc80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:49:07.000Z'}}, {'blockNum': '0x7d16f1', 'uniqueId': '0xc0d785b6021662d8e66c3bcdd192051b17b0f3c2b7f56238b0a33837a58f83ec:log:5', 'hash': '0xc0d785b6021662d8e66c3bcdd192051b17b0f3c2b7f56238b0a33837a58f83ec', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 3770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc5f4291af16a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:50:19.000Z'}}, {'blockNum': '0x7d16f1', 'uniqueId': '0xd6c3c0529c2dbad38b704f65a1b9c6a98d9759a2f87cc87a7b09b94cf99a29b2:log:6', 'hash': '0xd6c3c0529c2dbad38b704f65a1b9c6a98d9759a2f87cc87a7b09b94cf99a29b2', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x0f7ca6ec86c3023feeb58a62afa0c2d4e5a2e69d', 'value': 3970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd736d14e09dcc80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:50:19.000Z'}}, {'blockNum': '0x7d16f2', 'uniqueId': '0xd2a93041fc4106c0743bc180e8d8d5bbe5e5a4f57774ca3f52a886483ba7d4fd:log:68', 'hash': '0xd2a93041fc4106c0743bc180e8d8d5bbe5e5a4f57774ca3f52a886483ba7d4fd', 'from': '0xce6c0a615bf5b427e53d9e2e23047bca9dca6869', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 4839.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0106598dd93ae6ee0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:50:25.000Z'}}, {'blockNum': '0x7d16f3', 'uniqueId': '0x97742744e653406bacc6c72aeda0ad7d2fbcc5dd8bf0f49c3545d6a3fda32b8f:log:9', 'hash': '0x97742744e653406bacc6c72aeda0ad7d2fbcc5dd8bf0f49c3545d6a3fda32b8f', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x04a41afb9f5100603bbad06cd45932da21be296e', 'value': 27327.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05c9717ff6d366f64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:50:38.000Z'}}, {'blockNum': '0x7d16f5', 'uniqueId': '0xf29a5a2847074226886b181d437401bd9e879da5ea1d7e36c906f39e2f29afe9:log:75', 'hash': '0xf29a5a2847074226886b181d437401bd9e879da5ea1d7e36c906f39e2f29afe9', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x52e4ed5b4018629966f65f96e6f2da3618afb8b4', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:51:19.000Z'}}, {'blockNum': '0x7d16fb', 'uniqueId': '0x01ac86340dc0a9da722232d4b5ff27018ce2d3d9f952627d9bf2cfd08711ceb2:log:73', 'hash': '0x01ac86340dc0a9da722232d4b5ff27018ce2d3d9f952627d9bf2cfd08711ceb2', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 3770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc5f4291af16a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:52:23.000Z'}}, {'blockNum': '0x7d16fd', 'uniqueId': '0x7a4e69f5a652da97b20a4346fdfc980235a3df8370a3f4f4824ada5cea025e04:log:91', 'hash': '0x7a4e69f5a652da97b20a4346fdfc980235a3df8370a3f4f4824ada5cea025e04', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x52e4ed5b4018629966f65f96e6f2da3618afb8b4', 'value': 11050.433962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02570b93e4bb0a6ca000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:52:47.000Z'}}, {'blockNum': '0x7d16fd', 'uniqueId': '0x1a49bfc48989d9855a4cd74f095451907131495b539a39f90642e627f3856faf:log:92', 'hash': '0x1a49bfc48989d9855a4cd74f095451907131495b539a39f90642e627f3856faf', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 2090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x714c9396b496680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:52:47.000Z'}}, {'blockNum': '0x7d1709', 'uniqueId': '0x14e68cdf926988ffee6b2b28120aa6f680c01ff8d9f20cd6794f81382e482bce:log:105', 'hash': '0x14e68cdf926988ffee6b2b28120aa6f680c01ff8d9f20cd6794f81382e482bce', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 2102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x71f31c27206f180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:55:38.000Z'}}, {'blockNum': '0x7d1709', 'uniqueId': '0xa3fc3bf2ba0853cdc9a4d38765c4a7fadb12a8c834e0f4647d3e7b781ae5f733:log:106', 'hash': '0xa3fc3bf2ba0853cdc9a4d38765c4a7fadb12a8c834e0f4647d3e7b781ae5f733', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 3770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc5f4291af16a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:55:38.000Z'}}, {'blockNum': '0x7d170b', 'uniqueId': '0x427c46c1c1c880aaabb1de3403bf5be78f71a8c47f8fd94f3d37fc9b9cc8bf9d:log:88', 'hash': '0x427c46c1c1c880aaabb1de3403bf5be78f71a8c47f8fd94f3d37fc9b9cc8bf9d', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xcc182214b456287ea970e5b2a90fd9d794bb5af9', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:56:34.000Z'}}, {'blockNum': '0x7d170e', 'uniqueId': '0xc113c1dc8536c165ce3ed00ccf4c94f7568d258920dde4dcea298c8f91310328:log:100', 'hash': '0xc113c1dc8536c165ce3ed00ccf4c94f7568d258920dde4dcea298c8f91310328', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0xe943c10cf5fa53326bc368a35864f065af210317', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:57:25.000Z'}}, {'blockNum': '0x7d1715', 'uniqueId': '0xf349687e1c332627c2fe67cfb0b526943f41d0fc4cda197839ad4998fdc5da27:log:11', 'hash': '0xf349687e1c332627c2fe67cfb0b526943f41d0fc4cda197839ad4998fdc5da27', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2dec3e59563b364f49475cea87f588af4736bb1c', 'value': 60060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb7dbef8c7b68f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:58:27.000Z'}}, {'blockNum': '0x7d1719', 'uniqueId': '0xd1c1c31d7dc36dc7d5f1d32fea9f92024799eb415da68ec9f66056bd1237c8f8:log:15', 'hash': '0xd1c1c31d7dc36dc7d5f1d32fea9f92024799eb415da68ec9f66056bd1237c8f8', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'value': 1770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5ff3af362359680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T02:59:11.000Z'}}, {'blockNum': '0x7d172b', 'uniqueId': '0x6facdb67e502562fed140a7803e39493518b250aca19e7858e16dc738542c138:log:16', 'hash': '0x6facdb67e502562fed140a7803e39493518b250aca19e7858e16dc738542c138', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x9a398dda5cfbc347210a22c0aa28937a6edfb02c', 'value': 27327.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05c9717ff6d366f64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:03:18.000Z'}}, {'blockNum': '0x7d172c', 'uniqueId': '0x575ed9fbb1d49f83f63db52cbbf6f080f5b8395c55a1bee8331cd00095a6ed47:log:95', 'hash': '0x575ed9fbb1d49f83f63db52cbbf6f080f5b8395c55a1bee8331cd00095a6ed47', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'value': 1770.0066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5ff3c6a8cd98ec8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:03:22.000Z'}}, {'blockNum': '0x7d172d', 'uniqueId': '0xc0eb507c5e6bc4b797efac72aa0a157a2eb4b384530b38d1374a91a284617f2c:log:35', 'hash': '0xc0eb507c5e6bc4b797efac72aa0a157a2eb4b384530b38d1374a91a284617f2c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x13c598b668489c501830fa1f4b7c6b0e2161314b', 'value': 10000.1065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e1b5b26ea3ed44000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:03:42.000Z'}}, {'blockNum': '0x7d172d', 'uniqueId': '0xcc0d3e41204e0f7492e1f3a9afcc2533ff266cfe14080892387c728cfffde1f5:log:36', 'hash': '0xcc0d3e41204e0f7492e1f3a9afcc2533ff266cfe14080892387c728cfffde1f5', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xc3133390ecd0b2ff8f24005bb5d8d28640254912', 'value': 60057.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb7bd7eabda8e1e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:03:42.000Z'}}, {'blockNum': '0x7d172d', 'uniqueId': '0x91bd1d2fa63ff986543e46c588eba2eab5e3def2d3b896bb41f9a79283789899:log:37', 'hash': '0x91bd1d2fa63ff986543e46c588eba2eab5e3def2d3b896bb41f9a79283789899', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x62477f967b527bee16b9b405302a1ebd9a65eb09', 'value': 27327.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05c9717ff6d366f64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:03:42.000Z'}}, {'blockNum': '0x7d1730', 'uniqueId': '0x77788b4060a39c2ba04e09cb7efd9b20acb2df21a3f735d0134e2196745bcb02:log:5', 'hash': '0x77788b4060a39c2ba04e09cb7efd9b20acb2df21a3f735d0134e2196745bcb02', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x1ab2431c9c3af8fb92767e06cfcc3427a9baf2cc', 'value': 8729.4020922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d938ca38805cb89000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:04:12.000Z'}}, {'blockNum': '0x7d173c', 'uniqueId': '0x824396a029684b99f025912634a01c3d5cb1c1e94c037675da7bba0b50aece6d:log:61', 'hash': '0x824396a029684b99f025912634a01c3d5cb1c1e94c037675da7bba0b50aece6d', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xe1bd4a0631e8038c16e75bf240fadde118aac5d8', 'value': 3770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc5f4291af16a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:06:58.000Z'}}, {'blockNum': '0x7d1741', 'uniqueId': '0xe0fbc5020ed039a6dabf26fd37838fdcf8536184082e8faffad1d8c9c17497e3:log:81', 'hash': '0xe0fbc5020ed039a6dabf26fd37838fdcf8536184082e8faffad1d8c9c17497e3', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xe1bd4a0631e8038c16e75bf240fadde118aac5d8', 'value': 3770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc5f4291af16a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:08:08.000Z'}}, {'blockNum': '0x7d1741', 'uniqueId': '0x86adebbc440af5ee2872e5a6437dcb0aeab035fa40c2b41c06dde2ab5d87cbc5:log:92', 'hash': '0x86adebbc440af5ee2872e5a6437dcb0aeab035fa40c2b41c06dde2ab5d87cbc5', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xe1bd4a0631e8038c16e75bf240fadde118aac5d8', 'value': 3770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc5f4291af16a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:08:08.000Z'}}, {'blockNum': '0x7d1747', 'uniqueId': '0x51dbcd5e3e22c6f16a3eef1bf3f6eb2d2f423a8ba98d76efec24fd036797ad24:log:113', 'hash': '0x51dbcd5e3e22c6f16a3eef1bf3f6eb2d2f423a8ba98d76efec24fd036797ad24', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x3fad87525dab340dd61d239779874b234088e58a', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:10:19.000Z'}}, {'blockNum': '0x7d1747', 'uniqueId': '0xef00f771e76fe7faafd252d24d8e92dedbe40dfd19f16726bd4977ef59931568:log:115', 'hash': '0xef00f771e76fe7faafd252d24d8e92dedbe40dfd19f16726bd4977ef59931568', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xe1bd4a0631e8038c16e75bf240fadde118aac5d8', 'value': 14858.604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03257c8dadbdf63e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:10:19.000Z'}}, {'blockNum': '0x7d1749', 'uniqueId': '0x571c93adb75ff36cc2dd6b78c45be5d7c5cbc1906823a4aedf2c66e4a2dae926:log:65', 'hash': '0x571c93adb75ff36cc2dd6b78c45be5d7c5cbc1906823a4aedf2c66e4a2dae926', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x42bb37d8f11b869aa0102411a04ed4091013669c', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:11:02.000Z'}}, {'blockNum': '0x7d1750', 'uniqueId': '0x20638c1b7684846e02c10260b087a81a286bab16f60830363e3a0fbf39ad0fe2:log:91', 'hash': '0x20638c1b7684846e02c10260b087a81a286bab16f60830363e3a0fbf39ad0fe2', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x3d1dd1db232efc912c890805dd2b71ea7f60c547', 'value': 4987.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010e59ea633636960000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:13:46.000Z'}}, {'blockNum': '0x7d1752', 'uniqueId': '0x268d5eaab30be83d6fa4621de9f6fd47f943545aea1b44bd44355dac1169c142:log:55', 'hash': '0x268d5eaab30be83d6fa4621de9f6fd47f943545aea1b44bd44355dac1169c142', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x3fad87525dab340dd61d239779874b234088e58a', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:14:08.000Z'}}, {'blockNum': '0x7d1757', 'uniqueId': '0x1d5a929eb21e1e56a0c4014b9a0583cbb1059f4d3194439f0d6431c20595715e:log:84', 'hash': '0x1d5a929eb21e1e56a0c4014b9a0583cbb1059f4d3194439f0d6431c20595715e', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xbafc4e8419d3642125002477799465ed4536a186', 'value': 11562.288251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0272cafba0a7e78eb000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:15:04.000Z'}}, {'blockNum': '0x7d175d', 'uniqueId': '0x3ac3a172bcac9c72664423bbef384b473a8238d4167e9b7655d66f0a94e59a89:log:50', 'hash': '0x3ac3a172bcac9c72664423bbef384b473a8238d4167e9b7655d66f0a94e59a89', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x44773d1e9f0858736639aa611ce7f48947e67ec6', 'value': 4066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdc6b15d168a2480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:15:36.000Z'}}, {'blockNum': '0x7d175f', 'uniqueId': '0xf1ff23be342941d4e5ccaee84d8fb8bfe1f4438a1a73b66bcb8c940ae2798f34:log:4', 'hash': '0xf1ff23be342941d4e5ccaee84d8fb8bfe1f4438a1a73b66bcb8c940ae2798f34', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xa1579ab11b288c837416fc2b5bd55b2598884c4b', 'value': 3246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xaff74c99f475f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:16:37.000Z'}}, {'blockNum': '0x7d176c', 'uniqueId': '0x679db41d35b1d1aefe80f7c95ab6a797a0babda54e385512c720c42f1f83eeb9:log:39', 'hash': '0x679db41d35b1d1aefe80f7c95ab6a797a0babda54e385512c720c42f1f83eeb9', 'from': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'to': '0x2269e1789f2b5d1ea02ac672b55a27db4450fa32', 'value': 224.142793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c269b2aac90e99000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:18:07.000Z'}}, {'blockNum': '0x7d1770', 'uniqueId': '0x3815d85c24e30691ac697d21f6e2502992f616a4ff08c0c165606d0500a502fa:log:35', 'hash': '0x3815d85c24e30691ac697d21f6e2502992f616a4ff08c0c165606d0500a502fa', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x482de54c2593730a47ad1ab6bc0d7996c6c43313', 'value': 5162.902481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0117e1aa443d63f21000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:19:11.000Z'}}, {'blockNum': '0x7d1773', 'uniqueId': '0xb56bf22d050477d8717ffe16cc927006b291e9f51583da12caf08efb4f055fb9:log:26', 'hash': '0xb56bf22d050477d8717ffe16cc927006b291e9f51583da12caf08efb4f055fb9', 'from': '0x2a42e565c988c464848ccf6a8e6b53639452e5f9', 'to': '0xbd378b782648690d7c06adb30bf8d4a0edbb5f45', 'value': 1474.67227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4ff130586a9ceee000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:20:13.000Z'}}, {'blockNum': '0x7d1774', 'uniqueId': '0x511e11ff1e6009af5a9efc47db61a8e378dcae2a838c7c2118b7d7701bfe8150:log:57', 'hash': '0x511e11ff1e6009af5a9efc47db61a8e378dcae2a838c7c2118b7d7701bfe8150', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x8e7134d98a1c2a0ae6a7d6c2c133d5ddea8eaca4', 'value': 3563.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc12d7f31c4907e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:20:31.000Z'}}, {'blockNum': '0x7d1779', 'uniqueId': '0xfcbcc37910bbe240a5e323edb93dfd8741cd474afb20b9d5975a7301077159ce:log:18', 'hash': '0xfcbcc37910bbe240a5e323edb93dfd8741cd474afb20b9d5975a7301077159ce', 'from': '0x44773d1e9f0858736639aa611ce7f48947e67ec6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdc6b15d168a2480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:21:06.000Z'}}, {'blockNum': '0x7d177f', 'uniqueId': '0x3ce4ba3d1fdddad9fcd0602fa42192a8029f1aeb79365f49efa0da4fafa83f2b:log:11', 'hash': '0x3ce4ba3d1fdddad9fcd0602fa42192a8029f1aeb79365f49efa0da4fafa83f2b', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0x48ce0ee8cc82ae400ef33fe38ba6e5481924a854', 'value': 1170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f6d03011307080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:22:16.000Z'}}, {'blockNum': '0x7d1787', 'uniqueId': '0x28d0f743411fcdad071970b2b63541c3dceb2146fe8197983ead952bda62f658:log:51', 'hash': '0x28d0f743411fcdad071970b2b63541c3dceb2146fe8197983ead952bda62f658', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x8e7134d98a1c2a0ae6a7d6c2c133d5ddea8eaca4', 'value': 2653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8fd1c563cdb7540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:23:45.000Z'}}, {'blockNum': '0x7d1788', 'uniqueId': '0xa802ac8c33ba8d1ab9b23a2b9b3cfe5ed149f73114b36716167b56917ffb15a7:log:6', 'hash': '0xa802ac8c33ba8d1ab9b23a2b9b3cfe5ed149f73114b36716167b56917ffb15a7', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xc9f907af8b277cfe3a340d41fef6b78a1816016c', 'value': 60030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb63b9a236dcb380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:24:10.000Z'}}, {'blockNum': '0x7d1789', 'uniqueId': '0x8e06d10724388f14bb0b1803c56d0ba95b17bd2b5b1be45e452816660e0fc927:log:103', 'hash': '0x8e06d10724388f14bb0b1803c56d0ba95b17bd2b5b1be45e452816660e0fc927', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xd8f07dd46d4b279d55282bf05ca2225bfe0ecb96', 'value': 12482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02a4a68c238799c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:24:23.000Z'}}, {'blockNum': '0x7d178d', 'uniqueId': '0xa99ac29b1be2416f1b1df3b59bd2d14fdc698d4af1ee12711284c33e22bb136c:log:12', 'hash': '0xa99ac29b1be2416f1b1df3b59bd2d14fdc698d4af1ee12711284c33e22bb136c', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0x4d73a7102d5fd8eb7a305d299be21a7e707ffc86', 'value': 1686.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5b6a1d139985360000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:25:22.000Z'}}, {'blockNum': '0x7d178d', 'uniqueId': '0xb679638ce69e27e219e40d08cccb89fff33d428ade6d1ca33e6da39e91c22c37:log:13', 'hash': '0xb679638ce69e27e219e40d08cccb89fff33d428ade6d1ca33e6da39e91c22c37', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x569d6ccc42b425ceb67a08eea405ed8825f724d4', 'value': 5090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0113edf0a00632480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:25:22.000Z'}}, {'blockNum': '0x7d1796', 'uniqueId': '0x834e4d77cbf639017b1ee6bff171bf7372521184b5a1240551e8f4cd31a28031:log:84', 'hash': '0x834e4d77cbf639017b1ee6bff171bf7372521184b5a1240551e8f4cd31a28031', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xfa303207c16e7e7a8acb94a80daf78652640604a', 'value': 1670, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5a87e7d7f5f6580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:27:00.000Z'}}, {'blockNum': '0x7d17a9', 'uniqueId': '0x3f356cdac8e58cfe243cc51d49740945ccb09223f5ea767bb082f70c5e34773e:log:84', 'hash': '0x3f356cdac8e58cfe243cc51d49740945ccb09223f5ea767bb082f70c5e34773e', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x0ff09139ae029ccd77caa89850f14dbe1e762737', 'value': 5903.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0140078533ea9e8e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:30:35.000Z'}}, {'blockNum': '0x7d17c0', 'uniqueId': '0x4f25cd3e373cba24c3457dff48405c76237381b6ed2e82b9e9ddd751ec107540:log:59', 'hash': '0x4f25cd3e373cba24c3457dff48405c76237381b6ed2e82b9e9ddd751ec107540', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x85e74c26fd521dc10c6fcc33ee800c2fadc1e357', 'value': 1510, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x51db75a7ad57d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:35:13.000Z'}}, {'blockNum': '0x7d17c5', 'uniqueId': '0x270fe38aa69f00a7223d31abe7caefbd1d8c51cf349d2f60289869379da47dad:log:96', 'hash': '0x270fe38aa69f00a7223d31abe7caefbd1d8c51cf349d2f60289869379da47dad', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 3770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc5f4291af16a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:36:35.000Z'}}, {'blockNum': '0x7d17c5', 'uniqueId': '0x74f0cf9fcc00f4c3b7b2683e8ed4a817e30069c253a32afa4d63c7d50405d9b3:log:103', 'hash': '0x74f0cf9fcc00f4c3b7b2683e8ed4a817e30069c253a32afa4d63c7d50405d9b3', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'value': 5730.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0136a546770a22700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:36:35.000Z'}}, {'blockNum': '0x7d17cc', 'uniqueId': '0x16a6679bcd0eeee99a820a02bc40c8435a9cede9a60d8b9f28eed321712d2f9c:log:8', 'hash': '0x16a6679bcd0eeee99a820a02bc40c8435a9cede9a60d8b9f28eed321712d2f9c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5e348a09a5e62ed8176813240f00b97271beeecd', 'value': 21120.2245846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0478edfec7f2b305f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:39:13.000Z'}}, {'blockNum': '0x7d17cc', 'uniqueId': '0xda5eac08d8f67dccf2b27ab934a6791260127dcbd2bbf9b182e7aec76ed2faf2:log:52', 'hash': '0xda5eac08d8f67dccf2b27ab934a6791260127dcbd2bbf9b182e7aec76ed2faf2', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x94390beeb991e1afa674d7986b2e3fb741007f31', 'value': 3712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc93a592cfb2a000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:39:13.000Z'}}, {'blockNum': '0x7d17ce', 'uniqueId': '0x9edbc52efb12448979075954944b2f1c61162b7ce3b330da01b5a5db68d330d4:log:105', 'hash': '0x9edbc52efb12448979075954944b2f1c61162b7ce3b330da01b5a5db68d330d4', 'from': '0xa1579ab11b288c837416fc2b5bd55b2598884c4b', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 3246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xaff74c99f475f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:39:38.000Z'}}, {'blockNum': '0x7d17ce', 'uniqueId': '0x2d3174411db55a941097e56cc2435ea2fe0f097e0be439e7f60c393faf20cddd:log:127', 'hash': '0x2d3174411db55a941097e56cc2435ea2fe0f097e0be439e7f60c393faf20cddd', 'from': '0x0ff09139ae029ccd77caa89850f14dbe1e762737', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 5903.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0140078533ea9e8e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:39:38.000Z'}}, {'blockNum': '0x7d17d0', 'uniqueId': '0xbfd573cd3ddaf50da931a641d0ce9a44a0b503c538df058e6e29d8069cd86e12:log:12', 'hash': '0xbfd573cd3ddaf50da931a641d0ce9a44a0b503c538df058e6e29d8069cd86e12', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xf71adbd171e20921cffc13d4dfd390c41b8f8c24', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:40:16.000Z'}}, {'blockNum': '0x7d17d0', 'uniqueId': '0x00403bc0d8ca10888505e1419c007cebb201ed8d24a33aa9ec4b92554118830e:log:84', 'hash': '0x00403bc0d8ca10888505e1419c007cebb201ed8d24a33aa9ec4b92554118830e', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xdd9cb9361ca6751afef5cc28424e840ccd972d08', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x18650127cc3dc80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:40:16.000Z'}}, {'blockNum': '0x7d17d4', 'uniqueId': '0x4da4fad36dac15bab14dc4701e0cf2b5b91dd4ebe756ebb90b4d48b93ede9c9e:log:29', 'hash': '0x4da4fad36dac15bab14dc4701e0cf2b5b91dd4ebe756ebb90b4d48b93ede9c9e', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xdd9cb9361ca6751afef5cc28424e840ccd972d08', 'value': 450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x18650127cc3dc80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:41:03.000Z'}}, {'blockNum': '0x7d17d7', 'uniqueId': '0x0b253196f197499544f47547b085056e41f676cb620d32a4ef382404b519f54d:log:65', 'hash': '0x0b253196f197499544f47547b085056e41f676cb620d32a4ef382404b519f54d', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xdd9cb9361ca6751afef5cc28424e840ccd972d08', 'value': 1344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x48dbbf2f2ecd000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:42:11.000Z'}}, {'blockNum': '0x7d17d7', 'uniqueId': '0xc893d11acec91094bcb39da32d260f6638471e3dd122324f6f904331a53d2b5b:log:66', 'hash': '0xc893d11acec91094bcb39da32d260f6638471e3dd122324f6f904331a53d2b5b', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xea21d9d77db099077c645c266ba5f57cc0390d15', 'value': 7174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0184e73fee84dc580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:42:11.000Z'}}, {'blockNum': '0x7d17d7', 'uniqueId': '0x9e9f8df49b5df85596add7d8a008580fdad7f9d6db15886d2cca5e0a53e02f44:log:69', 'hash': '0x9e9f8df49b5df85596add7d8a008580fdad7f9d6db15886d2cca5e0a53e02f44', 'from': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'to': '0xea21d9d77db099077c645c266ba5f57cc0390d15', 'value': 12829.135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b7780366d463018000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:42:11.000Z'}}, {'blockNum': '0x7d17d9', 'uniqueId': '0xac125515d1b89c893c99a46f5d0f4fcec5f3d38100cfe7c6a2d22a721b1816f5:log:2', 'hash': '0xac125515d1b89c893c99a46f5d0f4fcec5f3d38100cfe7c6a2d22a721b1816f5', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x8844267fb6422fa98ef9868ff7cd5324ba92a5b4', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:43:04.000Z'}}, {'blockNum': '0x7d17e0', 'uniqueId': '0xe11fa5b3473d80f6a22f0d9f92af98b086abc12227812915fadaacdc4c41a63c:log:59', 'hash': '0xe11fa5b3473d80f6a22f0d9f92af98b086abc12227812915fadaacdc4c41a63c', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x8e7134d98a1c2a0ae6a7d6c2c133d5ddea8eaca4', 'value': 4547.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xf6853d744ff8de0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:44:11.000Z'}}, {'blockNum': '0x7d17fd', 'uniqueId': '0xafe16e1abc214c456a40d4dd75c35abd642229612a64f4453f1b722760f25204:log:12', 'hash': '0xafe16e1abc214c456a40d4dd75c35abd642229612a64f4453f1b722760f25204', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x8e7134d98a1c2a0ae6a7d6c2c133d5ddea8eaca4', 'value': 2490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x86fbb10f6a22a80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:48:09.000Z'}}, {'blockNum': '0x7d1810', 'uniqueId': '0xa5562b8f209b21ba4f022ca5977bd0588c07f8ecefd9dfa09ae339fae4d91aa0:log:119', 'hash': '0xa5562b8f209b21ba4f022ca5977bd0588c07f8ecefd9dfa09ae339fae4d91aa0', 'from': '0x94390beeb991e1afa674d7986b2e3fb741007f31', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 3712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc93a592cfb2a000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:52:05.000Z'}}, {'blockNum': '0x7d1818', 'uniqueId': '0x1159c93ff69f0b066806df1cbdce3d2f878853c915207564df720c92355dc7ad:log:19', 'hash': '0x1159c93ff69f0b066806df1cbdce3d2f878853c915207564df720c92355dc7ad', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7652aa75676a666cca4d50471b43ca03765fe136', 'value': 26007.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0581e2d1e87c4b564000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:53:51.000Z'}}, {'blockNum': '0x7d1825', 'uniqueId': '0xdcdb8025ee136b7fdf6f027f5ba327b344f1cbc302538c4b56a5791345b364e8:log:34', 'hash': '0xdcdb8025ee136b7fdf6f027f5ba327b344f1cbc302538c4b56a5791345b364e8', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x60eec48ddf128c099a229e8810d1c3d6a9838089', 'value': 35412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x077fb038cb2ed4d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:56:09.000Z'}}, {'blockNum': '0x7d182b', 'uniqueId': '0x2ff74649f8167432564b1b98568d1237d6d5fc7e94443da0e17195552032229e:log:13', 'hash': '0x2ff74649f8167432564b1b98568d1237d6d5fc7e94443da0e17195552032229e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x5e348a09a5e62ed8176813240f00b97271beeecd', 'value': 36568.0126934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07be5b1ee703325df000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:58:03.000Z'}}, {'blockNum': '0x7d182d', 'uniqueId': '0xcbd44689dbec9131cde48d2a2bb9da8f960d69233830da9bb895182c656b47c3:log:12', 'hash': '0xcbd44689dbec9131cde48d2a2bb9da8f960d69233830da9bb895182c656b47c3', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xe2b932c06f8552c8955211b5b22666a5bacaf5ae', 'value': 28188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05f813152d9346f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T03:58:36.000Z'}}, {'blockNum': '0x7d183a', 'uniqueId': '0x681280a8a0c7d2178b9d06205174cc4ba77be1b589ccd5803ee9095bc3a733db:log:21', 'hash': '0x681280a8a0c7d2178b9d06205174cc4ba77be1b589ccd5803ee9095bc3a733db', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xfa303207c16e7e7a8acb94a80daf78652640604a', 'value': 886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3007b851c554180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:01:44.000Z'}}, {'blockNum': '0x7d183b', 'uniqueId': '0x98af3b22a9f85d7d1c72f0246a0453bce6e6ae9e2df0fabe15019a2c1ac0c2f1:log:2', 'hash': '0x98af3b22a9f85d7d1c72f0246a0453bce6e6ae9e2df0fabe15019a2c1ac0c2f1', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb5dcfbe472f744a64cde1568b6c6c9a0d0756287', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:02:05.000Z'}}, {'blockNum': '0x7d183b', 'uniqueId': '0x1e7ed659571f69ca355273431ae962ebf4b8406b7fc1dd3c881966fe6e255ec6:log:4', 'hash': '0x1e7ed659571f69ca355273431ae962ebf4b8406b7fc1dd3c881966fe6e255ec6', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 57586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c31be49e84bbc880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:02:05.000Z'}}, {'blockNum': '0x7d1853', 'uniqueId': '0x67d8d731b1d1541ec729e7aa264681660e5f106e1448e02d820c2bab0d4c451b:log:16', 'hash': '0x67d8d731b1d1541ec729e7aa264681660e5f106e1448e02d820c2bab0d4c451b', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x1360477aac6e708bfe988be738f4c2a9fb9c3c5b', 'value': 397.40785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x158b244e0499b8a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:06:09.000Z'}}, {'blockNum': '0x7d185c', 'uniqueId': '0x6601aaa78d31b4d9ad223c83d8f6ca8f92696424a9aeac384e7b1cbb6f056002:log:9', 'hash': '0x6601aaa78d31b4d9ad223c83d8f6ca8f92696424a9aeac384e7b1cbb6f056002', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x36390b303596b3e6a6db8d2c7dcf2a8e7f204be0', 'value': 33970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07318473ab39f3880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:08:50.000Z'}}, {'blockNum': '0x7d185e', 'uniqueId': '0xf661f71f08e41d809e124d17fc91f959c4663b6938b6bb698ea518f59b3dc6ee:log:12', 'hash': '0xf661f71f08e41d809e124d17fc91f959c4663b6938b6bb698ea518f59b3dc6ee', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbe625beb7511ddbfb74e6d0a6f663a4b239d000', 'value': 27327.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05c9717ff6d366f64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:09:34.000Z'}}, {'blockNum': '0x7d1864', 'uniqueId': '0x927147792c265f881de7a035b3a7889368f8706fb948cddf813e723c7c8b2bc7:log:5', 'hash': '0x927147792c265f881de7a035b3a7889368f8706fb948cddf813e723c7c8b2bc7', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xaffa2b9afcbc3729082252289594c9c813ffc05f', 'value': 10273.8199664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022cf1e4ba68e3a58000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:10:26.000Z'}}, {'blockNum': '0x7d186e', 'uniqueId': '0xe2571e7772008c1e920eed2532d1d2f6b5cdde50cf37346f23f0d926c98fecad:log:104', 'hash': '0xe2571e7772008c1e920eed2532d1d2f6b5cdde50cf37346f23f0d926c98fecad', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xbf2de753026756bffbc1b22fb47a55663ccee766', 'value': 11180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x025e11aaedd243300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:12:07.000Z'}}, {'blockNum': '0x7d1870', 'uniqueId': '0xc90c6fc95463f52cbd4d517e768b1c379bbd894bd9ce76b8409a0580e718d109:log:5', 'hash': '0xc90c6fc95463f52cbd4d517e768b1c379bbd894bd9ce76b8409a0580e718d109', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8ffa599e2a0e967bea56c38de9409a5f45ccf2c0', 'value': 60000.5990764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a395132ffcd1e000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:12:14.000Z'}}, {'blockNum': '0x7d187b', 'uniqueId': '0x5b14033e108061a02be50a89f9ff66aa70bf672ed52ed9dffe854ff9daa1d71c:log:19', 'hash': '0x5b14033e108061a02be50a89f9ff66aa70bf672ed52ed9dffe854ff9daa1d71c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x1473f58669aed30e27d3e174ec55c8c83d445566', 'value': 60047.4065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb72d2a72f48e0e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:13:26.000Z'}}, {'blockNum': '0x7d1889', 'uniqueId': '0x08f21d514960c854344960c728af3e5684f4c6ef4cf93184a7ff2eda8bf836fe:log:7', 'hash': '0x08f21d514960c854344960c728af3e5684f4c6ef4cf93184a7ff2eda8bf836fe', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xb99e3e2c58e49e30fcee1a2d2a97b78d0ac9f664', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:16:31.000Z'}}, {'blockNum': '0x7d188a', 'uniqueId': '0x87eaaf4d4adeec320f0eaa00b33c5249e9c48504dcbbfd29ee29153a945053c3:log:6', 'hash': '0x87eaaf4d4adeec320f0eaa00b33c5249e9c48504dcbbfd29ee29153a945053c3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 53598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b598dabc1a01ab80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:16:45.000Z'}}, {'blockNum': '0x7d188f', 'uniqueId': '0xd2ff4964f5ddbe808ba497587310d79b690de83ee6f11a47fd5849dd6375d99c:log:6', 'hash': '0xd2ff4964f5ddbe808ba497587310d79b690de83ee6f11a47fd5849dd6375d99c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x680701fca5d3c99cb7bbf33bc2c50ecf4967f61a', 'value': 6228.8648888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0151aadd7e6c4b06c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:17:42.000Z'}}, {'blockNum': '0x7d1897', 'uniqueId': '0xc33eef224b1cc0aad4abb4a419fe6a2772ac3b47c946cf2a904a6cbad380b0d4:log:26', 'hash': '0xc33eef224b1cc0aad4abb4a419fe6a2772ac3b47c946cf2a904a6cbad380b0d4', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x6f321fa5dbd46d34526faecd0f025d66d80dc75e', 'value': 945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x333a826d2ce8240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:19:17.000Z'}}, {'blockNum': '0x7d1898', 'uniqueId': '0x9e4e9a8463f8ecf2851b54af902a7323848e86d87f34fc231ae9c499e5971051:log:7', 'hash': '0x9e4e9a8463f8ecf2851b54af902a7323848e86d87f34fc231ae9c499e5971051', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x592e2c801d1cb01a28cf2fcca1b1fb6063bcd589', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:19:23.000Z'}}, {'blockNum': '0x7d189a', 'uniqueId': '0x1550af75a9f5e0b5d892bd629ca02cfffefabad79e9b72e84572bf7464b0e2aa:log:10', 'hash': '0x1550af75a9f5e0b5d892bd629ca02cfffefabad79e9b72e84572bf7464b0e2aa', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x5e348a09a5e62ed8176813240f00b97271beeecd', 'value': 2312.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7d55891e36ee2a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:19:39.000Z'}}, {'blockNum': '0x7d189a', 'uniqueId': '0x5db4a13fffd8e59433a17995d4debbb3939175f4be11dc34ce5416901b3b9fa0:log:131', 'hash': '0x5db4a13fffd8e59433a17995d4debbb3939175f4be11dc34ce5416901b3b9fa0', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 53598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b598dabc1a01ab80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:19:39.000Z'}}, {'blockNum': '0x7d18ae', 'uniqueId': '0x22cd456aab59c1a00c1b9461137d46293772f4eef626441259ee4662e18e243b:log:5', 'hash': '0x22cd456aab59c1a00c1b9461137d46293772f4eef626441259ee4662e18e243b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xe72f5ebe1dea05ddff32e05005869f54120d82e4', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:23:44.000Z'}}, {'blockNum': '0x7d18ae', 'uniqueId': '0x111e6b78d9befeefa332b6322fa5c137da72da9bda2442da3d8ea4935eeddc67:log:63', 'hash': '0x111e6b78d9befeefa332b6322fa5c137da72da9bda2442da3d8ea4935eeddc67', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xdbed8005facbe6c5949ac867808bb44c6622d9fe', 'value': 5608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013002a24f8ae6a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:23:44.000Z'}}, {'blockNum': '0x7d18bc', 'uniqueId': '0x08fb6f62b4d7d9ea672e6453636b239eea32df24c042833f3aaedc8d72854d67:log:8', 'hash': '0x08fb6f62b4d7d9ea672e6453636b239eea32df24c042833f3aaedc8d72854d67', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 57586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c31be49e84bbc880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:27:12.000Z'}}, {'blockNum': '0x7d18bc', 'uniqueId': '0x048d971d108ba5e31373dc40a38cf6c7b656a6895a7fadcd2078237b099c1608:log:86', 'hash': '0x048d971d108ba5e31373dc40a38cf6c7b656a6895a7fadcd2078237b099c1608', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 56759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c04e95bb1edfc7c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:27:12.000Z'}}, {'blockNum': '0x7d18bd', 'uniqueId': '0x9311898e5b4e31a0982a2ff0b847a6d27c3314e9e77bb327cc9b41e170abe065:log:3', 'hash': '0x9311898e5b4e31a0982a2ff0b847a6d27c3314e9e77bb327cc9b41e170abe065', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x92b7e062c1b4b1039a829b31459c1d62d8cbf3e9', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:27:45.000Z'}}, {'blockNum': '0x7d18bf', 'uniqueId': '0x024d43f2b1170ef37e2cb246b439c47ec045d68954d49897db9847a4b35325e8:log:15', 'hash': '0x024d43f2b1170ef37e2cb246b439c47ec045d68954d49897db9847a4b35325e8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 53369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b4d23a852eb5e440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:28:01.000Z'}}, {'blockNum': '0x7d18c3', 'uniqueId': '0x21ed506748920aa528d3dbf3fb2aed91e8c5898c5771eb9930f6795329ee63d4:log:18', 'hash': '0x21ed506748920aa528d3dbf3fb2aed91e8c5898c5771eb9930f6795329ee63d4', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xddea9eff8a3c96fd7bf258f51fe61c5f2da66835', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:28:45.000Z'}}, {'blockNum': '0x7d18c3', 'uniqueId': '0x322a21468a79a5d002e091441c0d10b54ec560b4b4b126391d53078b999fe94d:log:52', 'hash': '0x322a21468a79a5d002e091441c0d10b54ec560b4b4b126391d53078b999fe94d', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 80441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1108b7210950ed440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:28:45.000Z'}}, {'blockNum': '0x7d18d6', 'uniqueId': '0x86dbdda3183ada67201ccfca0ffe3b95b212c71c8aacf5cb52d0072c176315b1:log:7', 'hash': '0x86dbdda3183ada67201ccfca0ffe3b95b212c71c8aacf5cb52d0072c176315b1', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x1fda8fc0042e774f579bdbfbb2ea3946d28a5c2d', 'value': 9967.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021c5b1a800c39b64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:33:24.000Z'}}, {'blockNum': '0x7d18e3', 'uniqueId': '0x50b3fff77ba80c9a6341611c4ecf7d769b83f12ef954efc71e0873aec016a3e1:log:9', 'hash': '0x50b3fff77ba80c9a6341611c4ecf7d769b83f12ef954efc71e0873aec016a3e1', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x2f1446a31604db6972384fb6b687132ce9b0eacf', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:36:38.000Z'}}, {'blockNum': '0x7d18e3', 'uniqueId': '0xa99910f4cb9e0bd45011905391ef38195f12264de8e7e0aa8642725458a1dbc4:log:28', 'hash': '0xa99910f4cb9e0bd45011905391ef38195f12264de8e7e0aa8642725458a1dbc4', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x010aea185f43b1a446d37c9f8cd2b22470c4c2a5', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:36:38.000Z'}}, {'blockNum': '0x7d18e4', 'uniqueId': '0x7effccd2fa1cde308855732ef7d2315bba84d67b6d6a580537965c8bb2091e00:log:30', 'hash': '0x7effccd2fa1cde308855732ef7d2315bba84d67b6d6a580537965c8bb2091e00', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x93c9f69315b5af242af04b6bde2b843fe9a7a580', 'value': 5597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x012f69fa75d2b5540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:37:20.000Z'}}, {'blockNum': '0x7d1905', 'uniqueId': '0x207443b47b13c07113773a850864571ab4071546e982b24fa2c0c43b0ca777b8:log:22', 'hash': '0x207443b47b13c07113773a850864571ab4071546e982b24fa2c0c43b0ca777b8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 16653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0386c2cce49fe4140000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:44:55.000Z'}}, {'blockNum': '0x7d190e', 'uniqueId': '0x15579247ba8191d50e8b59fd696fd20329263ec2ac74b98e8cd2e38251893a6c:log:4', 'hash': '0x15579247ba8191d50e8b59fd696fd20329263ec2ac74b98e8cd2e38251893a6c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x7aeefb3aa0f9dba7be5025d1b7d09945873335e1', 'value': 59984.6516612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb3c644798e5b27a000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:47:12.000Z'}}, {'blockNum': '0x7d1928', 'uniqueId': '0x548971144f73ac0d9685ce52e336135d3dba9515eaca9eb09411475f2881fd45:log:137', 'hash': '0x548971144f73ac0d9685ce52e336135d3dba9515eaca9eb09411475f2881fd45', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xe335607d90a1e3b21bdc515aa2556e507ec7ae17', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:51:50.000Z'}}, {'blockNum': '0x7d192a', 'uniqueId': '0x42d8b5f788a6324ac52a6fb876ddd2ea6030e88e7c93fc759cdfbdb09aad1ad7:log:9', 'hash': '0x42d8b5f788a6324ac52a6fb876ddd2ea6030e88e7c93fc759cdfbdb09aad1ad7', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xe120b0512287a1e895cfaacf9c61e1c93f6a0610', 'value': 9851.598793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02160e65ca39e0099000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:52:19.000Z'}}, {'blockNum': '0x7d192c', 'uniqueId': '0xcc06399ce5732382919f5618a6754faa22ae4f99f22a6edbe6cdd403dfba9f02:log:20', 'hash': '0xcc06399ce5732382919f5618a6754faa22ae4f99f22a6edbe6cdd403dfba9f02', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x30aabe3e1810df192f87e574902b0675d5b52dbd', 'value': 690, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2567ac70392b880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:53:07.000Z'}}, {'blockNum': '0x7d1934', 'uniqueId': '0xc999443be5de92621776baa204f536b21841133962a3f5d77e38d581cfbbbd2c:log:63', 'hash': '0xc999443be5de92621776baa204f536b21841133962a3f5d77e38d581cfbbbd2c', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xd9d2be8ecdc7dd3251967389d35efc4b6c7501ae', 'value': 670, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x24521e2a3017b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:54:05.000Z'}}, {'blockNum': '0x7d1937', 'uniqueId': '0xe4efaa29e73e9a82e2e0abf23f8f35d0695f13bdbbd5094250752f1944ca56f3:log:9', 'hash': '0xe4efaa29e73e9a82e2e0abf23f8f35d0695f13bdbbd5094250752f1944ca56f3', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xd55c57a2a08dd518fb23b0fb9ad3fb8726584369', 'value': 4900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0109a12906aff6100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:55:28.000Z'}}, {'blockNum': '0x7d1937', 'uniqueId': '0xa95a7ce2d466014d5d9fd52e195350b3b6dc6ade0f2c723f4c3cf228b535d68f:log:20', 'hash': '0xa95a7ce2d466014d5d9fd52e195350b3b6dc6ade0f2c723f4c3cf228b535d68f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xe36558fcae985de839b19eb570aabc415567e1be', 'value': 10945.4819504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02515b13723d71bf8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:55:28.000Z'}}, {'blockNum': '0x7d1937', 'uniqueId': '0x5c436b5bafb7a642acfe81683c39fd3d1a1f94df52ed0858b2035e0ca426b056:log:21', 'hash': '0x5c436b5bafb7a642acfe81683c39fd3d1a1f94df52ed0858b2035e0ca426b056', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xf46240c248649e15a094a326657572e92dbafa67', 'value': 27141.5178646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05bf5839c7edd1b3f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:55:28.000Z'}}, {'blockNum': '0x7d193c', 'uniqueId': '0xe0d51e52d9c853b1adbbb6daaaed5518202b063dfa355f1f45478d6ca735ed7e:log:3', 'hash': '0xe0d51e52d9c853b1adbbb6daaaed5518202b063dfa355f1f45478d6ca735ed7e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 31476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06aa513fc10133500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:56:42.000Z'}}, {'blockNum': '0x7d1949', 'uniqueId': '0xadb67279bafb14aa5bae873644d9a9bcdbdca708d784846f9aadd734a7f1b8f0:log:31', 'hash': '0xadb67279bafb14aa5bae873644d9a9bcdbdca708d784846f9aadd734a7f1b8f0', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x302399a1b0b02e880d23fdae68474de8048d3334', 'value': 2977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa1622c9f2d91e40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T04:59:15.000Z'}}, {'blockNum': '0x7d194f', 'uniqueId': '0xe34cae888933f0857951c8bdc45d20655a1032ca4c4a0818c587f0841a1f2759:log:22', 'hash': '0xe34cae888933f0857951c8bdc45d20655a1032ca4c4a0818c587f0841a1f2759', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd8b977bab83570cda309dd3b507588607bfaada9', 'value': 10224.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022a49b1ea67451a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:00:21.000Z'}}, {'blockNum': '0x7d1952', 'uniqueId': '0x371e2e5fae0d3552dc8c9aff1ee7d4808f11154d6b9633f3ea39ae91a3df0ca2:log:17', 'hash': '0x371e2e5fae0d3552dc8c9aff1ee7d4808f11154d6b9633f3ea39ae91a3df0ca2', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06aa513fc10133500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:01:08.000Z'}}, {'blockNum': '0x7d1954', 'uniqueId': '0xdaecc46c177996314c9db2d9a5690400bfb9961ec3e54df68d2dac3eb20fcd74:log:10', 'hash': '0xdaecc46c177996314c9db2d9a5690400bfb9961ec3e54df68d2dac3eb20fcd74', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xc4870c246984456bdacbec86b89c28ba096f95c7', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:01:42.000Z'}}, {'blockNum': '0x7d1971', 'uniqueId': '0x919bf05dc68e67cdef39d0e8357f946982a15162c212b7117d4e967e9fff7699:log:44', 'hash': '0x919bf05dc68e67cdef39d0e8357f946982a15162c212b7117d4e967e9fff7699', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x6593be891aa716edb573f07ba7bd77dbc337a39a', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:07:09.000Z'}}, {'blockNum': '0x7d197a', 'uniqueId': '0x093d8521ced2fc30ba2445e133d1428b8f10b3ebd532c5fb427be84ff39f6c69:log:10', 'hash': '0x093d8521ced2fc30ba2445e133d1428b8f10b3ebd532c5fb427be84ff39f6c69', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xcf5b681319defb7bfe0c1fa4b0b3f8d864720698', 'value': 10007.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e86370c1e61564000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:08:40.000Z'}}, {'blockNum': '0x7d1985', 'uniqueId': '0x78009392592f0544c3193f81f1de83c8f21ed9c8bc969f445988b8d694cfe3fc:log:113', 'hash': '0x78009392592f0544c3193f81f1de83c8f21ed9c8bc969f445988b8d694cfe3fc', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xd830032b6b8a2a03a9e7914e2dc79f263502c499', 'value': 9727.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020f59bb65607a760000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:11:38.000Z'}}, {'blockNum': '0x7d1991', 'uniqueId': '0x067e89d506b1aaf2cafdbadfee7bbb28d5318203e89a80be65e5ceae90be59f3:log:18', 'hash': '0x067e89d506b1aaf2cafdbadfee7bbb28d5318203e89a80be65e5ceae90be59f3', 'from': '0xd830032b6b8a2a03a9e7914e2dc79f263502c499', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 9727.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020f59bb65607a760000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:13:39.000Z'}}, {'blockNum': '0x7d19a4', 'uniqueId': '0x244c71facb41e7072cb728d128bed4ed277ba3c49f7208b0b88d0a11cac1af49:log:123', 'hash': '0x244c71facb41e7072cb728d128bed4ed277ba3c49f7208b0b88d0a11cac1af49', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x99b3f94532c07722549b8621597483106bfbf3c1', 'value': 3910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd3f6267beea1580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:17:27.000Z'}}, {'blockNum': '0x7d19a4', 'uniqueId': '0xb48f6a10c0a39c4eaf4adebe1b2d6b45946aef7353a847bba4b5a6ce53af42ee:log:282', 'hash': '0xb48f6a10c0a39c4eaf4adebe1b2d6b45946aef7353a847bba4b5a6ce53af42ee', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0x113d6148f7eded248771b96a64db532350d97492', 'value': 10185.6221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022829e6f63614494000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:17:27.000Z'}}, {'blockNum': '0x7d19a4', 'uniqueId': '0x80aa9d0cb9064cef6b693ac2fc7a11ccc4f227951db7d4d81e7161d108a78bad:log:284', 'hash': '0x80aa9d0cb9064cef6b693ac2fc7a11ccc4f227951db7d4d81e7161d108a78bad', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x687ef9f665a3ba10b42fb701cdf3a51ad8a48fc6', 'value': 2460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x855b5ba65c84f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:17:27.000Z'}}, {'blockNum': '0x7d19a9', 'uniqueId': '0x18904aab3c2c4f1bcce4073f016a5d5ca447e1e4c054ae3c36376b4b7df8e064:log:97', 'hash': '0x18904aab3c2c4f1bcce4073f016a5d5ca447e1e4c054ae3c36376b4b7df8e064', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0x99b3f94532c07722549b8621597483106bfbf3c1', 'value': 15557.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x034b5faf0ed513a60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:18:12.000Z'}}, {'blockNum': '0x7d19ae', 'uniqueId': '0xf1e5668a9c99ad1b9c090ac59312b61cc23ad8c3ccba699369bef6ce82a4fdcf:log:37', 'hash': '0xf1e5668a9c99ad1b9c090ac59312b61cc23ad8c3ccba699369bef6ce82a4fdcf', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x0bd478d2be353291aa71016054d829082ce75441', 'value': 99734.60310619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x151e9fa8b48171620c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:19:14.000Z'}}, {'blockNum': '0x7d19bc', 'uniqueId': '0xbbfb6d8aaed00c6b2b01592d05181cfdb5817845a76f5c2f5b8230a6c74a526c:log:14', 'hash': '0xbbfb6d8aaed00c6b2b01592d05181cfdb5817845a76f5c2f5b8230a6c74a526c', 'from': '0x3df15c9b8820fce0ce7feb51c333d83abe976cfd', 'to': '0x4779dbbe3f59cea9904e856d00eba7ff93b25373', 'value': 273277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x39de6038006687d40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:21:16.000Z'}}, {'blockNum': '0x7d19c5', 'uniqueId': '0x5abbe4595c59ed19d0dcd4a1d613289c60cdf3f5ca135df3f04ef1a5e2321486:log:107', 'hash': '0x5abbe4595c59ed19d0dcd4a1d613289c60cdf3f5ca135df3f04ef1a5e2321486', 'from': '0xb2cc3cdd53fc9a1aeaf3a68edeba2736238ddc5d', 'to': '0x1bf2a52566cf93d5362615f50529fff2f6c24711', 'value': 4087.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdd99cd2956a7e08000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:22:55.000Z'}}, {'blockNum': '0x7d19cd', 'uniqueId': '0x3b1aafbe1b7bcc9bdac98868f40ab45790d7a652fffa18e0cfb612c0e715db20:log:1', 'hash': '0x3b1aafbe1b7bcc9bdac98868f40ab45790d7a652fffa18e0cfb612c0e715db20', 'from': '0x0bd478d2be353291aa71016054d829082ce75441', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 99734.60310619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x151e9fa8b48171620c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:25:00.000Z'}}, {'blockNum': '0x7d19e1', 'uniqueId': '0xf3eb9ebec6376c26ff0aca688df9a0499ab85ae8052771ad4ae1b44f26afe472:log:36', 'hash': '0xf3eb9ebec6376c26ff0aca688df9a0499ab85ae8052771ad4ae1b44f26afe472', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 347052.10002914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497dbb6707abd0134800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:30:09.000Z'}}, {'blockNum': '0x7d19e9', 'uniqueId': '0x72193e500a357eaaa75dae4d88b301cdf8c852a09598114afbd68029d2031ca1:log:59', 'hash': '0x72193e500a357eaaa75dae4d88b301cdf8c852a09598114afbd68029d2031ca1', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd108a35d7af4f425722399e07dec7041c4309ffe', 'value': 19967.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043a74fb49c6ebf64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:31:03.000Z'}}, {'blockNum': '0x7d19fb', 'uniqueId': '0xe433e47eaeaba192984e5ba7145c8b8c9ece8288b5e2af98252e8729d997a727:log:108', 'hash': '0xe433e47eaeaba192984e5ba7145c8b8c9ece8288b5e2af98252e8729d997a727', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x64f2fbd6f70d2a91608dd808eda1b0cba7ecd674', 'value': 1570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x551c2079c893480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:35:01.000Z'}}, {'blockNum': '0x7d1a07', 'uniqueId': '0xf00d528e87a59cfe38d2b426a63d72619372ef54bd5768ab3a06d6701fe633bc:log:8', 'hash': '0xf00d528e87a59cfe38d2b426a63d72619372ef54bd5768ab3a06d6701fe633bc', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x7e5c1dd4234590135d0eb2fe847c74e9867d91fb', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:36:45.000Z'}}, {'blockNum': '0x7d1a0d', 'uniqueId': '0x9dcc9f8a32abee629aa06c2e46282a02305515b3ee8e08afe513dcf90ce9c448:log:26', 'hash': '0x9dcc9f8a32abee629aa06c2e46282a02305515b3ee8e08afe513dcf90ce9c448', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 347052.10002914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497dbb6707abd0134800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:37:55.000Z'}}, {'blockNum': '0x7d1a16', 'uniqueId': '0x446d4d5b54382fa3a1ea4dab2ef717cc85ee4249ab0830b9db891934c0ef5c3b:log:46', 'hash': '0x446d4d5b54382fa3a1ea4dab2ef717cc85ee4249ab0830b9db891934c0ef5c3b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa900b2e943c91b5bd087c8a3d910b81e41c68443', 'value': 49597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a80a8a453d4f8d40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:40:33.000Z'}}, {'blockNum': '0x7d1a27', 'uniqueId': '0xe83747648abd11d38e15001a3dc951550d330a652c186ee4bd69a9af367dbc05:log:108', 'hash': '0xe83747648abd11d38e15001a3dc951550d330a652c186ee4bd69a9af367dbc05', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x17a8d6127b8928d9f2c118c12a992c71dc4c0f6b', 'value': 1230.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x42b8df16a85dd24000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:44:01.000Z'}}, {'blockNum': '0x7d1a2c', 'uniqueId': '0xa43fc2d7c42d64ec7987e6d23527cdb9e77a6b3ddf92999dfa54d85f820f443e:log:7', 'hash': '0xa43fc2d7c42d64ec7987e6d23527cdb9e77a6b3ddf92999dfa54d85f820f443e', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x9261ffabffc48059c54aec06bf8bd5e45c8bfd8d', 'value': 10030, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021fba3632c84ff80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:45:19.000Z'}}, {'blockNum': '0x7d1a39', 'uniqueId': '0xa8ef01ee51c77c693364749df7adefb918b1022da708c7ace5cca138b9099b4b:log:78', 'hash': '0xa8ef01ee51c77c693364749df7adefb918b1022da708c7ace5cca138b9099b4b', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x89ec11d885087a36c41f9194c0dcfbe402d8d7ab', 'value': 2693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x91fce1efdfdef40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:49:03.000Z'}}, {'blockNum': '0x7d1a3b', 'uniqueId': '0x9819695645a5189e80188225e892ba283824e9a36fd77ef8439c9f6818fc2503:log:8', 'hash': '0x9819695645a5189e80188225e892ba283824e9a36fd77ef8439c9f6818fc2503', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 42807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0910927672cb327c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:49:51.000Z'}}, {'blockNum': '0x7d1a3b', 'uniqueId': '0x82a534500c7df53fde27e7a3edc4c37c1c69ce48b7b783b3172bf427ab12b20c:log:16', 'hash': '0x82a534500c7df53fde27e7a3edc4c37c1c69ce48b7b783b3172bf427ab12b20c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xafa5d59789247af9cf5c70c5297740738e668f2e', 'value': 10005.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e67c62b7d86848000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:49:51.000Z'}}, {'blockNum': '0x7d1a3c', 'uniqueId': '0x1bb10da15ccc4361fbb5cab96b557b9c8adf24a2117ceaee3c7d1bec8d3cb401:log:57', 'hash': '0x1bb10da15ccc4361fbb5cab96b557b9c8adf24a2117ceaee3c7d1bec8d3cb401', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xf771d7a29e777b3b648424def5f48fe85f788184', 'value': 16236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x037027c349fc3a300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:50:40.000Z'}}, {'blockNum': '0x7d1a44', 'uniqueId': '0x223be470ea2debc7faaf6524c074a5bc91a212614a14435afdf3c057285cc614:log:10', 'hash': '0x223be470ea2debc7faaf6524c074a5bc91a212614a14435afdf3c057285cc614', 'from': '0x7e5c1dd4234590135d0eb2fe847c74e9867d91fb', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:52:40.000Z'}}, {'blockNum': '0x7d1a50', 'uniqueId': '0x7005392085c7d48484e646377fdc1fb483a652e4cf15e152674c1c3148e819ae:log:114', 'hash': '0x7005392085c7d48484e646377fdc1fb483a652e4cf15e152674c1c3148e819ae', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 42807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0910927672cb327c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:54:55.000Z'}}, {'blockNum': '0x7d1a56', 'uniqueId': '0x248724c86e7e9d0d455b69537cabf49234387b9b4e649ece95c587733f017413:log:56', 'hash': '0x248724c86e7e9d0d455b69537cabf49234387b9b4e649ece95c587733f017413', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xb6db81bbf56b3b7ea8f6147b1182e219a73a8cb9', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:56:11.000Z'}}, {'blockNum': '0x7d1a63', 'uniqueId': '0x0a6a1e7383f9579ddbdc58136d9491c583c5a07b5233d9e2c1f0d79202a0d964:log:31', 'hash': '0x0a6a1e7383f9579ddbdc58136d9491c583c5a07b5233d9e2c1f0d79202a0d964', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x15ace5e521546a084ede3e2e42c7d41e0f6a1e73', 'value': 32398.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06dc4f584efacc8c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:58:34.000Z'}}, {'blockNum': '0x7d1a65', 'uniqueId': '0x01778e35cc9298d4bf4a8fca7fa437278035dfd2b3eace29bc4a26e0a4ce31b0:log:25', 'hash': '0x01778e35cc9298d4bf4a8fca7fa437278035dfd2b3eace29bc4a26e0a4ce31b0', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3243.198362368805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xafd06b2f5f8138e6f9', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:58:53.000Z'}}, {'blockNum': '0x7d1a65', 'uniqueId': '0x01778e35cc9298d4bf4a8fca7fa437278035dfd2b3eace29bc4a26e0a4ce31b0:log:27', 'hash': '0x01778e35cc9298d4bf4a8fca7fa437278035dfd2b3eace29bc4a26e0a4ce31b0', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3243.1982749294934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xafd06adfd8f4200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:58:53.000Z'}}, {'blockNum': '0x7d1a65', 'uniqueId': '0x01778e35cc9298d4bf4a8fca7fa437278035dfd2b3eace29bc4a26e0a4ce31b0:log:28', 'hash': '0x01778e35cc9298d4bf4a8fca7fa437278035dfd2b3eace29bc4a26e0a4ce31b0', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3243.1982749294934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xafd06adfd8f4200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T05:58:53.000Z'}}, {'blockNum': '0x7d1a6f', 'uniqueId': '0x0d48f2bd6e8850bfddd4b1e1851569b7ae1a06a8cd85ef5bcf41aa0ad6ba05d4:log:52', 'hash': '0x0d48f2bd6e8850bfddd4b1e1851569b7ae1a06a8cd85ef5bcf41aa0ad6ba05d4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'value': 575000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x79c2cffd4f6f09600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:01:18.000Z'}}, {'blockNum': '0x7d1a76', 'uniqueId': '0xc60ec6471618fc4f45a490c7eddf9e91d0ae73f482edf67d791071c8494eee04:log:55', 'hash': '0xc60ec6471618fc4f45a490c7eddf9e91d0ae73f482edf67d791071c8494eee04', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xdd5e39193ff0d2141af67951460bb3a414709ce4', 'value': 13754.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02e99dde7b200dbc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:02:15.000Z'}}, {'blockNum': '0x7d1a82', 'uniqueId': '0x3235f2a4b0ab0a5dda5806114da7c1b83817184f2b22e1c9b26eebe1a0043312:log:13', 'hash': '0x3235f2a4b0ab0a5dda5806114da7c1b83817184f2b22e1c9b26eebe1a0043312', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x567c0f901c1feaf6e2ba93d90ac813369bbb2ac0', 'value': 58407.9707424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c5e4d6c9b8560a50000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:04:48.000Z'}}, {'blockNum': '0x7d1a87', 'uniqueId': '0xdafaa2231f28a5ed74595ff5af2bd00cb78a5d171db5881c8f33a20781492963:log:5', 'hash': '0xdafaa2231f28a5ed74595ff5af2bd00cb78a5d171db5881c8f33a20781492963', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 356387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4b77c729d8bfa2ac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:06:32.000Z'}}, {'blockNum': '0x7d1a89', 'uniqueId': '0xa6a292bb7de24c721b488af9d8bc1ada2c6c5513dcbd718fab33242a6e22aff4:log:66', 'hash': '0xa6a292bb7de24c721b488af9d8bc1ada2c6c5513dcbd718fab33242a6e22aff4', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x42bb37d8f11b869aa0102411a04ed4091013669c', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:06:53.000Z'}}, {'blockNum': '0x7d1a8b', 'uniqueId': '0xf640cb9d8d8547ae87271a3988ac1f6d8d79b88f3f03f0588556450b7a09b19f:log:46', 'hash': '0xf640cb9d8d8547ae87271a3988ac1f6d8d79b88f3f03f0588556450b7a09b19f', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x42bb37d8f11b869aa0102411a04ed4091013669c', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:07:10.000Z'}}, {'blockNum': '0x7d1a90', 'uniqueId': '0x584c91c82bdf992f9a07549efb61bb577e66788c6319df5c7182fd6ee8bab8dd:log:0', 'hash': '0x584c91c82bdf992f9a07549efb61bb577e66788c6319df5c7182fd6ee8bab8dd', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xbdc08037b29f2c96475597046c1953fa907ffd23', 'value': 10086.893269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0222cfc3b18127b65000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:08:11.000Z'}}, {'blockNum': '0x7d1a9a', 'uniqueId': '0xb3378a6d3d0a2d3dc1e1925c14d2e6af49ce9adb7fd752534f6394d033ac1a2f:log:6', 'hash': '0xb3378a6d3d0a2d3dc1e1925c14d2e6af49ce9adb7fd752534f6394d033ac1a2f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 379237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x504e7a9d68428e740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:10:15.000Z'}}, {'blockNum': '0x7d1a9a', 'uniqueId': '0xba59211a8f381847fb416063fc3d14f11a011ef6128a45c961219a7c4659880d:log:11', 'hash': '0xba59211a8f381847fb416063fc3d14f11a011ef6128a45c961219a7c4659880d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 390950.85875735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x52c97d0fa562dfd97c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:10:15.000Z'}}, {'blockNum': '0x7d1a9c', 'uniqueId': '0xeb9e5fe1752c389830d92ccbe7d5d545f2ee5fd00ae1e9b2975a2b0c23abbd2f:log:116', 'hash': '0xeb9e5fe1752c389830d92ccbe7d5d545f2ee5fd00ae1e9b2975a2b0c23abbd2f', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'value': 2886.2884889461106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9c774c987c13e461de', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:10:42.000Z'}}, {'blockNum': '0x7d1a9c', 'uniqueId': '0xeb9e5fe1752c389830d92ccbe7d5d545f2ee5fd00ae1e9b2975a2b0c23abbd2f:log:118', 'hash': '0xeb9e5fe1752c389830d92ccbe7d5d545f2ee5fd00ae1e9b2975a2b0c23abbd2f', 'from': '0x00000000016697fa9a9c8e2889e28d3d9816a078', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2886.2884889461106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9c774c987c13e461de', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:10:42.000Z'}}, {'blockNum': '0x7d1a9c', 'uniqueId': '0xeb9e5fe1752c389830d92ccbe7d5d545f2ee5fd00ae1e9b2975a2b0c23abbd2f:log:119', 'hash': '0xeb9e5fe1752c389830d92ccbe7d5d545f2ee5fd00ae1e9b2975a2b0c23abbd2f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2886.2884889461106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9c774c987c13e461de', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:10:42.000Z'}}, {'blockNum': '0x7d1a9d', 'uniqueId': '0xf435e0b904efdaac245e7b4863e9b0a3edb7ba67328ae745715ef27804cecbea:log:10', 'hash': '0xf435e0b904efdaac245e7b4863e9b0a3edb7ba67328ae745715ef27804cecbea', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 143033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1e49d59f9eafef440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:11:36.000Z'}}, {'blockNum': '0x7d1aa0', 'uniqueId': '0xb98be62124ab1d554b36c4a863133a17c4dceebfb68d918e1a89b6ec117fbbd4:log:47', 'hash': '0xb98be62124ab1d554b36c4a863133a17c4dceebfb68d918e1a89b6ec117fbbd4', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x78820d91bc4c45727bfb03d409f3b07d8b16495c', 'value': 15969.56, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0361b62a41a5171c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:11:52.000Z'}}, {'blockNum': '0x7d1aa0', 'uniqueId': '0xae7518ec5ae568acc2081a13220d3f1a9af8981664effc1c62c14db3895b9743:log:48', 'hash': '0xae7518ec5ae568acc2081a13220d3f1a9af8981664effc1c62c14db3895b9743', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x333e6d96781a5e0f4afb9a9da91d90f6ffda3a14', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:11:52.000Z'}}, {'blockNum': '0x7d1aa3', 'uniqueId': '0x8c6990682d15ac17f968594fe74febae99e90b869643d21ecfc90ddbc01f6ab8:log:74', 'hash': '0x8c6990682d15ac17f968594fe74febae99e90b869643d21ecfc90ddbc01f6ab8', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xaf36483d24356fd4a55ddcd82394e55323d1f764', 'value': 3774.470375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcc9d4c880fb6717000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:12:54.000Z'}}, {'blockNum': '0x7d1aa9', 'uniqueId': '0x25ee2e91eb5535771110bb1065b9677f3e7110c949ea8ab94f261ffe33bd2d33:log:16', 'hash': '0x25ee2e91eb5535771110bb1065b9677f3e7110c949ea8ab94f261ffe33bd2d33', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xfb1fb18acba8315b9cb4d5574d32ba7ab5a374bc', 'value': 60000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a675fdda48da4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:14:29.000Z'}}, {'blockNum': '0x7d1aac', 'uniqueId': '0x33d90892a4bf707ea1d91d7fee0fd57c266e13a23615171c41ef31606a1182fc:log:47', 'hash': '0x33d90892a4bf707ea1d91d7fee0fd57c266e13a23615171c41ef31606a1182fc', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x98a3674288ec7a03a6a70ed8d7fec5309c77d3e1', 'value': 4390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xedfb7d0cc87cd80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:15:21.000Z'}}, {'blockNum': '0x7d1ab0', 'uniqueId': '0x440aa810cfa6e5df8ef376f6cbe55fb28e71c87c2081442417981dfef7869ece:log:1', 'hash': '0x440aa810cfa6e5df8ef376f6cbe55fb28e71c87c2081442417981dfef7869ece', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 762280, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa16b48171377bda00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:16:25.000Z'}}, {'blockNum': '0x7d1abf', 'uniqueId': '0x3b6c53c0d18f7ca22ea7bbf5818200befddd9a807e5ee65544a706ff0b41c63f:log:91', 'hash': '0x3b6c53c0d18f7ca22ea7bbf5818200befddd9a807e5ee65544a706ff0b41c63f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x5ae97169077a2e717f137fd119882cf9bbd2591b', 'value': 40000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x087872b46a64e45a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:18:52.000Z'}}, {'blockNum': '0x7d1ac3', 'uniqueId': '0x748a5f5d98c6d2c56ee10b59230def65dca58c43bc34043be08bb63b3ce6322c:log:12', 'hash': '0x748a5f5d98c6d2c56ee10b59230def65dca58c43bc34043be08bb63b3ce6322c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xecfd1e881f93196d70621319154bcacd3e17d349', 'value': 4059.6065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xdc125b8b086ed24000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:20:00.000Z'}}, {'blockNum': '0x7d1acc', 'uniqueId': '0x2b5f7a506bdbfc6616f160aaf34031c6ed4b04b13fe65ce2ffe2549359598e66:log:23', 'hash': '0x2b5f7a506bdbfc6616f160aaf34031c6ed4b04b13fe65ce2ffe2549359598e66', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xa1eea107c8f9c4d84272ad5e59902a716c6baebe', 'value': 1160.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3ee5b7993a0bbf8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:22:19.000Z'}}, {'blockNum': '0x7d1acd', 'uniqueId': '0x5df9f8b4b15b9fee74f73b36274278bf3c0c43ae8b1726e854765d4352ec2fa8:log:3', 'hash': '0x5df9f8b4b15b9fee74f73b36274278bf3c0c43ae8b1726e854765d4352ec2fa8', 'from': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 575000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x79c2cffd4f6f09600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:22:58.000Z'}}, {'blockNum': '0x7d1acd', 'uniqueId': '0x207f022639a155dab45aab3d33b451355b1d824a8a728e30f1641e41508ccccb:log:11', 'hash': '0x207f022639a155dab45aab3d33b451355b1d824a8a728e30f1641e41508ccccb', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 379237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x504e7a9d68428e740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:22:58.000Z'}}, {'blockNum': '0x7d1acd', 'uniqueId': '0x6c691010f6f7ed3465178b1709191ecc90a2c15b4572f8a6e4a89a0f0aae5737:log:13', 'hash': '0x6c691010f6f7ed3465178b1709191ecc90a2c15b4572f8a6e4a89a0f0aae5737', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 390950.85875735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x52c97d0fa562dfd97c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:22:58.000Z'}}, {'blockNum': '0x7d1acd', 'uniqueId': '0x718ee3a53b59fbf1b50a7f85f905dd5098048f107b03d47b6f7c678af257c9f8:log:15', 'hash': '0x718ee3a53b59fbf1b50a7f85f905dd5098048f107b03d47b6f7c678af257c9f8', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 143033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1e49d59f9eafef440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:22:58.000Z'}}, {'blockNum': '0x7d1acf', 'uniqueId': '0xf0beffedbc4fe8a72f1855f5211223d4adb03a796cd75e90dcdae8e91789e0c2:log:1', 'hash': '0xf0beffedbc4fe8a72f1855f5211223d4adb03a796cd75e90dcdae8e91789e0c2', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xdc35a6c8d06378e7768e4b3023170ae9de889a41', 'value': 60137.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cbc13b7c3fedd5e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:23:10.000Z'}}, {'blockNum': '0x7d1add', 'uniqueId': '0xf5d7c0803969108547f8ee019a65091c278077c3563dca357801050fc731002e:log:3', 'hash': '0xf5d7c0803969108547f8ee019a65091c278077c3563dca357801050fc731002e', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xb249b86786c88a97f0ac8f9759c24d315a5dee80', 'value': 20475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0455f3b492ccfb0c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:26:14.000Z'}}, {'blockNum': '0x7d1ae2', 'uniqueId': '0x178ebde8f4b6144a3d0a8a7b612b0670fae22a7caf536f78124350001cd73c6a:log:29', 'hash': '0x178ebde8f4b6144a3d0a8a7b612b0670fae22a7caf536f78124350001cd73c6a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x42d7d7367881cc91015847a10c72d99681ffe9f3', 'value': 10067.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0221c6e1de399cc64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:27:55.000Z'}}, {'blockNum': '0x7d1aec', 'uniqueId': '0xc8998f657c2570c6f32e95a6656d2b5a0804647d31c6de9911497e1d2cdf6a1b:log:87', 'hash': '0xc8998f657c2570c6f32e95a6656d2b5a0804647d31c6de9911497e1d2cdf6a1b', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 3272.8014150899658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb16b3e5afab12c6e41', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:31:43.000Z'}}, {'blockNum': '0x7d1aec', 'uniqueId': '0xc8998f657c2570c6f32e95a6656d2b5a0804647d31c6de9911497e1d2cdf6a1b:log:91', 'hash': '0xc8998f657c2570c6f32e95a6656d2b5a0804647d31c6de9911497e1d2cdf6a1b', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3272.8014150899658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb16b3e5afab12c6e41', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:31:43.000Z'}}, {'blockNum': '0x7d1aec', 'uniqueId': '0xc8998f657c2570c6f32e95a6656d2b5a0804647d31c6de9911497e1d2cdf6a1b:log:92', 'hash': '0xc8998f657c2570c6f32e95a6656d2b5a0804647d31c6de9911497e1d2cdf6a1b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3272.834107343883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb16bb2806936cda2ba', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:31:43.000Z'}}, {'blockNum': '0x7d1aec', 'uniqueId': '0xc8998f657c2570c6f32e95a6656d2b5a0804647d31c6de9911497e1d2cdf6a1b:log:93', 'hash': '0xc8998f657c2570c6f32e95a6656d2b5a0804647d31c6de9911497e1d2cdf6a1b', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3272.834107343883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb16bb2806936cda2ba', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:31:43.000Z'}}, {'blockNum': '0x7d1af3', 'uniqueId': '0x259cb9209f9b03c756629b110bb1ea03a91c8b31d76fc89c271ae8839321335a:log:18', 'hash': '0x259cb9209f9b03c756629b110bb1ea03a91c8b31d76fc89c271ae8839321335a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 28309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05fea24b887d65340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:32:41.000Z'}}, {'blockNum': '0x7d1af5', 'uniqueId': '0x1579c4e98eb27a7fecfef85efe03f83f264221efd6660869ac285b04cad98e07:log:0', 'hash': '0x1579c4e98eb27a7fecfef85efe03f83f264221efd6660869ac285b04cad98e07', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 141661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1dff754c73dad3540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:33:22.000Z'}}, {'blockNum': '0x7d1afc', 'uniqueId': '0x53d5b05518a256e677e7f1b5cdd3f1d1e6245860219640443918d448b7d14356:log:102', 'hash': '0x53d5b05518a256e677e7f1b5cdd3f1d1e6245860219640443918d448b7d14356', 'from': '0x392497f0cfa5e832152622a67697fe5919389b64', 'to': '0x20c35fdaac829d7140a80a96f07ca5d3b0cbbe92', 'value': 987.899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x358dda4a63039f8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:35:41.000Z'}}, {'blockNum': '0x7d1aff', 'uniqueId': '0x455689a6ae3d78d695266eddd4537d6b70547735e8b30f894c85e0bffc33bb7f:log:98', 'hash': '0x455689a6ae3d78d695266eddd4537d6b70547735e8b30f894c85e0bffc33bb7f', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x58f95acca4353169f07af4129b33de9c7c8a1030', 'value': 7410.2559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0191b5f57fd4e28dc000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:35:50.000Z'}}, {'blockNum': '0x7d1b01', 'uniqueId': '0x7ca11f969c9ece21f780ad56e62659b8212497e021d8e52bd05143e7db8bb976:log:36', 'hash': '0x7ca11f969c9ece21f780ad56e62659b8212497e021d8e52bd05143e7db8bb976', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x06c4b8ee0f4917911ae6feb11e7f87cbafe56993', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:36:58.000Z'}}, {'blockNum': '0x7d1b08', 'uniqueId': '0xc50b01d3fedf421535cf9a559257c0ac1d6b5f9386cb0d33b4f1a2e5d71a161d:log:0', 'hash': '0xc50b01d3fedf421535cf9a559257c0ac1d6b5f9386cb0d33b4f1a2e5d71a161d', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x16ddd8bd1fe054c3dfff066fce7864f21223e293', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:39:31.000Z'}}, {'blockNum': '0x7d1b15', 'uniqueId': '0xaf980603fd92ef79a0aa9f62fa133dc6858e1bfcf121079746904b89bfb8b3e2:log:94', 'hash': '0xaf980603fd92ef79a0aa9f62fa133dc6858e1bfcf121079746904b89bfb8b3e2', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4518.962591683052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xf4f93436a552e6b5cd', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:42:07.000Z'}}, {'blockNum': '0x7d1b15', 'uniqueId': '0xaf980603fd92ef79a0aa9f62fa133dc6858e1bfcf121079746904b89bfb8b3e2:log:96', 'hash': '0xaf980603fd92ef79a0aa9f62fa133dc6858e1bfcf121079746904b89bfb8b3e2', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4518.962421052856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xf4f9339b7562b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:42:07.000Z'}}, {'blockNum': '0x7d1b15', 'uniqueId': '0xaf980603fd92ef79a0aa9f62fa133dc6858e1bfcf121079746904b89bfb8b3e2:log:97', 'hash': '0xaf980603fd92ef79a0aa9f62fa133dc6858e1bfcf121079746904b89bfb8b3e2', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4518.962421052856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xf4f9339b7562b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:42:07.000Z'}}, {'blockNum': '0x7d1b28', 'uniqueId': '0x1814ee09d7a1ea12149586aa683b3cbef99caa36787db80ce72d136a6a730380:log:74', 'hash': '0x1814ee09d7a1ea12149586aa683b3cbef99caa36787db80ce72d136a6a730380', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x7e5c1dd4234590135d0eb2fe847c74e9867d91fb', 'value': 280000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3b4ad496106b7f000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:47:29.000Z'}}, {'blockNum': '0x7d1b3f', 'uniqueId': '0xdfccfd476205ba66b9a43cee6cb06a88757798687e72ed5e8208cc59f0947dc1:log:17', 'hash': '0xdfccfd476205ba66b9a43cee6cb06a88757798687e72ed5e8208cc59f0947dc1', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 303088.34160279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x402e73b118e181fb7c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:51:08.000Z'}}, {'blockNum': '0x7d1b40', 'uniqueId': '0xb59205bd074000467b7c421227be5350b5f4330e8ac142f879038cc90b83e630:log:2', 'hash': '0xb59205bd074000467b7c421227be5350b5f4330e8ac142f879038cc90b83e630', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:51:14.000Z'}}, {'blockNum': '0x7d1b44', 'uniqueId': '0xfb63809f9303addf132e0e6bdfb6ff07d027d7ace57cdd738cfe00cab2c0e06d:log:39', 'hash': '0xfb63809f9303addf132e0e6bdfb6ff07d027d7ace57cdd738cfe00cab2c0e06d', 'from': '0xea8688ece1874844ecf812a02e7077c5283cef19', 'to': '0x07f0eb0c571b6cfd90d17b5de2cc51112fb95915', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:52:38.000Z'}}, {'blockNum': '0x7d1b46', 'uniqueId': '0x959ff92bf034294315e73d3df57ed8af6597494bbf46c7503f26226aa0f89e93:log:54', 'hash': '0x959ff92bf034294315e73d3df57ed8af6597494bbf46c7503f26226aa0f89e93', 'from': '0x5704111b6b523cf0c3235bd47dc7c854dd1cd097', 'to': '0x07f0eb0c571b6cfd90d17b5de2cc51112fb95915', 'value': 60, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0340aad21b3b700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:52:57.000Z'}}, {'blockNum': '0x7d1b50', 'uniqueId': '0x19674f0c8421b3f3ea1621cbc359a4409098d2ba54279672325a8ae76dc62f2d:log:15', 'hash': '0x19674f0c8421b3f3ea1621cbc359a4409098d2ba54279672325a8ae76dc62f2d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xc85a0510c9031cf940f294349056bebd84937955', 'value': 19930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0438684f9e559f280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:55:11.000Z'}}, {'blockNum': '0x7d1b63', 'uniqueId': '0xa8e06a5395f0275f0745cc202da9c7d41139a19273a69790ca480f421f9fcefc:log:11', 'hash': '0xa8e06a5395f0275f0745cc202da9c7d41139a19273a69790ca480f421f9fcefc', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x9673a019c1e051ef84ec175271ed6160326701bf', 'value': 3430.8405, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb9fc79f960c38f4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T06:59:06.000Z'}}, {'blockNum': '0x7d1b6c', 'uniqueId': '0xa7d328057dafca377e9704caf413d59bc26e8132c38264825a36dfd4b450508f:log:53', 'hash': '0xa7d328057dafca377e9704caf413d59bc26e8132c38264825a36dfd4b450508f', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x3d310b2af8d327347d031fc68660121b9015ac8e', 'value': 19970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043a936c2a67c6c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:00:21.000Z'}}, {'blockNum': '0x7d1b6f', 'uniqueId': '0xff31a74bffb33ce6f734359598688ee4c7b3a56335a52fede6bee2b90ea63895:log:15', 'hash': '0xff31a74bffb33ce6f734359598688ee4c7b3a56335a52fede6bee2b90ea63895', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xce89f3eec9fd9592a2f7850c5ad01785555a842a', 'value': 18000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfc82e37e9a7400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:01:29.000Z'}}, {'blockNum': '0x7d1b71', 'uniqueId': '0xbfa221df416949e5f62bf24917d62ab42f83933798a76d78a6819cbeb1d63226:log:168', 'hash': '0xbfa221df416949e5f62bf24917d62ab42f83933798a76d78a6819cbeb1d63226', 'from': '0x24e16a968aba7b0cf2c55f5f341ee517d8e52ee3', 'to': '0xa88942b8c66956f2711136b885d9c4958d6ce793', 'value': 462.87329196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1917a846a13b793000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:01:49.000Z'}}, {'blockNum': '0x7d1b85', 'uniqueId': '0xe0e8b84139949fbcdbfe0c5fc8603c84f1c9070538d436507f1076f65cc20e5a:log:16', 'hash': '0xe0e8b84139949fbcdbfe0c5fc8603c84f1c9070538d436507f1076f65cc20e5a', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x4385dee02df7ec33993543b4b7498f9847d77c67', 'value': 10731.0779178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0245bb9f4e8d337a1000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:06:26.000Z'}}, {'blockNum': '0x7d1b8a', 'uniqueId': '0xa9d1e06dcc701f8b534865a0f4dd70e56a1b3e4259bab77b7e6b8b520f0ec7b8:log:3', 'hash': '0xa9d1e06dcc701f8b534865a0f4dd70e56a1b3e4259bab77b7e6b8b520f0ec7b8', 'from': '0x7e5c1dd4234590135d0eb2fe847c74e9867d91fb', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 280000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3b4ad496106b7f000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:07:49.000Z'}}, {'blockNum': '0x7d1b8a', 'uniqueId': '0xccbfc893b9ddd0b7eb58741ba0e77ba3649274f685e3ca5811325c349f1a008d:log:21', 'hash': '0xccbfc893b9ddd0b7eb58741ba0e77ba3649274f685e3ca5811325c349f1a008d', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 303088.34160279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x402e73b118e181fb7c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:07:49.000Z'}}, {'blockNum': '0x7d1b8c', 'uniqueId': '0x4e4692d66ff62c9798cc981d7a8abe224107c1d0036adba6af3d0b145d9f8114:log:52', 'hash': '0x4e4692d66ff62c9798cc981d7a8abe224107c1d0036adba6af3d0b145d9f8114', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x19cf5d6a69c02c06bb8386338f7436bcb29cf0c8', 'value': 3400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb8507a820728200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:09:11.000Z'}}, {'blockNum': '0x7d1b91', 'uniqueId': '0x45fdcf8603add57812574a243cbdea122e8743eb39566e4ef348830371fc1ac9:log:105', 'hash': '0x45fdcf8603add57812574a243cbdea122e8743eb39566e4ef348830371fc1ac9', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xa73df9041af7cf3dd3d31ee203030a76e5282f09', 'value': 18291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03df8e9de620edec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:10:06.000Z'}}, {'blockNum': '0x7d1b9f', 'uniqueId': '0x0f130732271f530dc82d1900b809a5a82dfc4502c7af6aa5227e1313371d12eb:log:44', 'hash': '0x0f130732271f530dc82d1900b809a5a82dfc4502c7af6aa5227e1313371d12eb', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 245784.00043751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x340bfa3462786d82bc00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:12:28.000Z'}}, {'blockNum': '0x7d1ba9', 'uniqueId': '0x7740c6ded315972a0a147f310a9c9a778217e3019709ec3cc4cb7e6798c898ae:log:35', 'hash': '0x7740c6ded315972a0a147f310a9c9a778217e3019709ec3cc4cb7e6798c898ae', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xcb03a8f71ddbdd3d8a3c0ddbf233c676116fda11', 'value': 970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34957444b840e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:15:11.000Z'}}, {'blockNum': '0x7d1bc5', 'uniqueId': '0xeb46d309c7716207b19faac4278f1149140b4ba5a0801426e1be7c639de51305:log:7', 'hash': '0xeb46d309c7716207b19faac4278f1149140b4ba5a0801426e1be7c639de51305', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8331f5060615de6d1b6aa45e62098f4110817ebe', 'value': 9367.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01fbd46e4afbe7564000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:19:34.000Z'}}, {'blockNum': '0x7d1bcb', 'uniqueId': '0x37823fcfd6dbe0a1f5197494037ff9966250e2837e9ff41f84b1c515714b3d54:log:15', 'hash': '0x37823fcfd6dbe0a1f5197494037ff9966250e2837e9ff41f84b1c515714b3d54', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245784.00043751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x340bfa3462786d82bc00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:21:47.000Z'}}, {'blockNum': '0x7d1bd0', 'uniqueId': '0xc05d48ec096a277d1aa0ea623a483aa6b5abfe0f83272f116af04c7ab3243e19:log:15', 'hash': '0xc05d48ec096a277d1aa0ea623a483aa6b5abfe0f83272f116af04c7ab3243e19', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 52541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2040d965d9f6d40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:22:47.000Z'}}, {'blockNum': '0x7d1bdd', 'uniqueId': '0x5ec87731bf023350e6aa55583b677fe3c373877d886e6b3cafd47b5a69bd9a3d:log:41', 'hash': '0x5ec87731bf023350e6aa55583b677fe3c373877d886e6b3cafd47b5a69bd9a3d', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x643b61e33481d60ceeb3ed0219a21846d20795f9', 'value': 10079.3305248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022266cf6db947910000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:25:09.000Z'}}, {'blockNum': '0x7d1bf7', 'uniqueId': '0x0fce2a1a909916870d9a85dbb482571983ab45c3fab47861dbca1455bed0a407:log:91', 'hash': '0x0fce2a1a909916870d9a85dbb482571983ab45c3fab47861dbca1455bed0a407', 'from': '0xa0473c0268a1bf6915f0c87bd5689aba761328b9', 'to': '0x2cdfe646d84514d25c50c858d80854ee2fd1ec45', 'value': 1.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1a171a0a11bc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:31:23.000Z'}}, {'blockNum': '0x7d1bf8', 'uniqueId': '0x63a68f9af61d8a17ae068b680e385881d6ef3b18d8ba2380a336529b9d69d67d:log:80', 'hash': '0x63a68f9af61d8a17ae068b680e385881d6ef3b18d8ba2380a336529b9d69d67d', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 52541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b2040d965d9f6d40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:31:33.000Z'}}, {'blockNum': '0x7d1bff', 'uniqueId': '0xcaed250db9470b83522e5fb251a3a6e064212ee5a98ae3f007413ebfbfb6fc78:log:72', 'hash': '0xcaed250db9470b83522e5fb251a3a6e064212ee5a98ae3f007413ebfbfb6fc78', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xd3ef9c8e629ff2feab9897dc42129b2e35f92545', 'value': 4498.225806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xf3d96c59ef6d2ee000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:33:44.000Z'}}, {'blockNum': '0x7d1c0c', 'uniqueId': '0x071066f9dac5d40890b51a86b74f141d7e0ceccdac35e69ae60582559ee3e474:log:47', 'hash': '0x071066f9dac5d40890b51a86b74f141d7e0ceccdac35e69ae60582559ee3e474', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xd6e96a55db93536bba1b188b56956e46753b1bb5', 'value': 119569.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1951e02637a35d560000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:35:27.000Z'}}, {'blockNum': '0x7d1c17', 'uniqueId': '0xf439ff924e0217df876fbef990f194d24c1ba06febb67b18ef8be15af74f0ec2:log:31', 'hash': '0xf439ff924e0217df876fbef990f194d24c1ba06febb67b18ef8be15af74f0ec2', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x585e0cce2e4b735f441c2e5b2a2d3160d5cb6d6e', 'value': 14970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x032b867bc58a6da80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:38:02.000Z'}}, {'blockNum': '0x7d1c1e', 'uniqueId': '0x9e35020748a8e0487c8a7c52279c197a1628b36498be7636a66d82e493c6dc55:log:119', 'hash': '0x9e35020748a8e0487c8a7c52279c197a1628b36498be7636a66d82e493c6dc55', 'from': '0x2cdfe646d84514d25c50c858d80854ee2fd1ec45', 'to': '0x0631f20d6fdb2f9059759a360f9487e4079eb685', 'value': 1.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1a171a0a11bc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:40:11.000Z'}}, {'blockNum': '0x7d1c24', 'uniqueId': '0xd7c68be57f4fa37b5e3467de22c39901d3f61dcf46b9e5b24b7143eea4e76d2b:log:97', 'hash': '0xd7c68be57f4fa37b5e3467de22c39901d3f61dcf46b9e5b24b7143eea4e76d2b', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xab3e2c1c7ef043e35fcf3667f1c2836435dea9e7', 'value': 2097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x71adb8959e2a240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:42:09.000Z'}}, {'blockNum': '0x7d1c29', 'uniqueId': '0x67aec2f978685e68ebbd94b88a96f3d8e34a9307df1b02c40300de2ab7ea4738:log:11', 'hash': '0x67aec2f978685e68ebbd94b88a96f3d8e34a9307df1b02c40300de2ab7ea4738', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x2b61664a71e7b1978c8abf51ae898a5def47b0ff', 'value': 967.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x347703641766164000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:43:45.000Z'}}, {'blockNum': '0x7d1c2c', 'uniqueId': '0x04de7365534af6914445f685b2bc7c78afce9c27fc6334d22a373f70adb22b32:log:55', 'hash': '0x04de7365534af6914445f685b2bc7c78afce9c27fc6334d22a373f70adb22b32', 'from': '0x3bee1f4185780c8d869ded8bd6a9a20fd2d94ab2', 'to': '0x2165f9baecbfee8e2ced8bc0bec0418d701aa8c7', 'value': 399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15a13cc201e4dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:44:11.000Z'}}, {'blockNum': '0x7d1c30', 'uniqueId': '0x3014bc0ef368b792fc2bc1e13da0347e4ab7c609e84a01fbc34b8fbbaac76815:log:7', 'hash': '0x3014bc0ef368b792fc2bc1e13da0347e4ab7c609e84a01fbc34b8fbbaac76815', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x2b61664a71e7b1978c8abf51ae898a5def47b0ff', 'value': 9967.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021c5b1a800c39b64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:45:23.000Z'}}, {'blockNum': '0x7d1c32', 'uniqueId': '0x49cd4a65da77cdccf8697ae7ca55f20f97ad2a65ca2df3584a2e732475565b72:log:6', 'hash': '0x49cd4a65da77cdccf8697ae7ca55f20f97ad2a65ca2df3584a2e732475565b72', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x2b61664a71e7b1978c8abf51ae898a5def47b0ff', 'value': 1359.269961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49afa8fbcf00119000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:46:10.000Z'}}, {'blockNum': '0x7d1c3e', 'uniqueId': '0x24772714a45c22d3e275cc4ee0e4455ca12a78931b9c87995775308e060ef718:log:11', 'hash': '0x24772714a45c22d3e275cc4ee0e4455ca12a78931b9c87995775308e060ef718', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7c9f6c5327160c5a562d382139e9bcea93f8e7cb', 'value': 9998.3947208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e0399b0cd50ed4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:48:57.000Z'}}, {'blockNum': '0x7d1c54', 'uniqueId': '0xde7eb2b8492ef44157a93e049c73397864652c72795a37f752ce5dfdd8eb0945:log:131', 'hash': '0xde7eb2b8492ef44157a93e049c73397864652c72795a37f752ce5dfdd8eb0945', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xeebd032442c8cf3980d8090cb6c2e538449338e7', 'value': 1660.4673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5a039ce3d133fa4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:55:32.000Z'}}, {'blockNum': '0x7d1c5b', 'uniqueId': '0x18ca8b4a85166d25649629dd44fb82d3334e2cec3cea99a2ceb5b7313ce3538d:log:11', 'hash': '0x18ca8b4a85166d25649629dd44fb82d3334e2cec3cea99a2ceb5b7313ce3538d', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x76b46dd1e2ad8bbde2835dbbf749eeaede0ff6e2', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:57:39.000Z'}}, {'blockNum': '0x7d1c5b', 'uniqueId': '0xa66ff253ff4b3937facf4714b502acbbf3ffa353281094b8a3dc1540ccd554df:log:45', 'hash': '0xa66ff253ff4b3937facf4714b502acbbf3ffa353281094b8a3dc1540ccd554df', 'from': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'to': '0x7c9f6c5327160c5a562d382139e9bcea93f8e7cb', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01158e460913d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:57:39.000Z'}}, {'blockNum': '0x7d1c60', 'uniqueId': '0x9f4e4c1506688fdee760eef40e46fef28e9b7d1e4986c1251dc9c76cfa5a9326:log:47', 'hash': '0x9f4e4c1506688fdee760eef40e46fef28e9b7d1e4986c1251dc9c76cfa5a9326', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x6f71c6581b4677d690892bdbe106cd45f6c7665c', 'value': 5647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01321fde24e966dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:59:24.000Z'}}, {'blockNum': '0x7d1c60', 'uniqueId': '0xc6dc19a2c77b7557d70de92ecb429a15bbcfc2170a38342ec52808dd64fcac49:log:51', 'hash': '0xc6dc19a2c77b7557d70de92ecb429a15bbcfc2170a38342ec52808dd64fcac49', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x337e8a09b96ae81b932e1a3e935075094d661ceb', 'value': 2680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x914878a8c05ee00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T07:59:24.000Z'}}, {'blockNum': '0x7d1c66', 'uniqueId': '0x39b9cbc54706867d7f9d97a07fd72640a7a86180108b757b0fff5197bdc39bd9:log:13', 'hash': '0x39b9cbc54706867d7f9d97a07fd72640a7a86180108b757b0fff5197bdc39bd9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7b4a8c9d1659703a095557ebb32fca210a55e279', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:00:12.000Z'}}, {'blockNum': '0x7d1c83', 'uniqueId': '0xff5ab2b95e294a6a5c274d0ef32ee2449a97c666bb05c42fa5013c09dd144f07:log:102', 'hash': '0xff5ab2b95e294a6a5c274d0ef32ee2449a97c666bb05c42fa5013c09dd144f07', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xda26afcf76d5dc69a85b1c246ce4a68c6f7ac493', 'value': 1202.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x412a7d1d0051120000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:06:10.000Z'}}, {'blockNum': '0x7d1c86', 'uniqueId': '0xa120754f1cddeb8a0c1e54b2b863a43f9bcd9ca3122751f1fe837150855e0a3b:log:87', 'hash': '0xa120754f1cddeb8a0c1e54b2b863a43f9bcd9ca3122751f1fe837150855e0a3b', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xb111894799df76a15f34af4c58acf5b71916d825', 'value': 4970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010d6c9afbcfbb680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:07:15.000Z'}}, {'blockNum': '0x7d1c8d', 'uniqueId': '0xa025fcc3762179c2b269e45cebaca4b1c63f67de436417f80bd5b02222969192:log:68', 'hash': '0xa025fcc3762179c2b269e45cebaca4b1c63f67de436417f80bd5b02222969192', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xb111894799df76a15f34af4c58acf5b71916d825', 'value': 2870, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9b954042169b180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:08:13.000Z'}}, {'blockNum': '0x7d1c92', 'uniqueId': '0x1e8d809ee573b4533623d93470aadbdb5a94c3a72754144eb80e520922875f6a:log:17', 'hash': '0x1e8d809ee573b4533623d93470aadbdb5a94c3a72754144eb80e520922875f6a', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x6c084b601367975ff53814ecbf46576afe0bbe0f', 'value': 247753.57, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3476bf791c540b7d0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:09:02.000Z'}}, {'blockNum': '0x7d1c95', 'uniqueId': '0x57851e712da53a17dbe5305ae55b5164349a39c88ca1caf4131050caff84f62c:log:35', 'hash': '0x57851e712da53a17dbe5305ae55b5164349a39c88ca1caf4131050caff84f62c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xd214675219174e5ab9a8e6b7ce44f7954e271bf7', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:09:45.000Z'}}, {'blockNum': '0x7d1c95', 'uniqueId': '0x2b9858f1862c33dedb1110cbd23c739bed7104697e6c15d9cfa4957682e96735:log:52', 'hash': '0x2b9858f1862c33dedb1110cbd23c739bed7104697e6c15d9cfa4957682e96735', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x1755b4204f602ab2dd1564ce7b08baa4397ba2c0', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:09:45.000Z'}}, {'blockNum': '0x7d1c99', 'uniqueId': '0x61f0eea785ae0a4ba1ebf42b41a9c09274dfa1fa24ccd3a8802ef2cd4e836a62:log:97', 'hash': '0x61f0eea785ae0a4ba1ebf42b41a9c09274dfa1fa24ccd3a8802ef2cd4e836a62', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x27fe3e741ad220482726880392c4fa8798ae6f21', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:11:23.000Z'}}, {'blockNum': '0x7d1c9c', 'uniqueId': '0x97b1290a6c234dbbc22990623aa1a18bc98374aabdfd52ca8e03706360485b65:log:83', 'hash': '0x97b1290a6c234dbbc22990623aa1a18bc98374aabdfd52ca8e03706360485b65', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xb111894799df76a15f34af4c58acf5b71916d825', 'value': 3956.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd678b1209fcdee0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:11:57.000Z'}}, {'blockNum': '0x7d1c9e', 'uniqueId': '0xbd35ddf1b33d657e264097058aad0fe69e4acc96790e68f6296bc9141870efc2:log:60', 'hash': '0xbd35ddf1b33d657e264097058aad0fe69e4acc96790e68f6296bc9141870efc2', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xb111894799df76a15f34af4c58acf5b71916d825', 'value': 3170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xabd8965c9ec4480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:12:24.000Z'}}, {'blockNum': '0x7d1c9e', 'uniqueId': '0x619d505c32a94f2906f98ffe5bbbe04be8ade5ec4af3af3123fb4c18eff5b126:log:92', 'hash': '0x619d505c32a94f2906f98ffe5bbbe04be8ade5ec4af3af3123fb4c18eff5b126', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xab3e2c1c7ef043e35fcf3667f1c2836435dea9e7', 'value': 1653, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x599bfbb607d8b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:12:24.000Z'}}, {'blockNum': '0x7d1c9f', 'uniqueId': '0xf0296da105d6635fea97c99b21750aa6dfaa6551f56158aa59d98a16eff53985:log:22', 'hash': '0xf0296da105d6635fea97c99b21750aa6dfaa6551f56158aa59d98a16eff53985', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x356828236ba94a39eae9ae3e5827770e63d0a908', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:12:32.000Z'}}, {'blockNum': '0x7d1ca3', 'uniqueId': '0x6f64672d6e00fd16ee6967a62209e4658a79274402c36f084911923394cdbd6b:log:135', 'hash': '0x6f64672d6e00fd16ee6967a62209e4658a79274402c36f084911923394cdbd6b', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x5442723b66397d0c31131748dc053ce04e7dbc0d', 'value': 8622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d3664956afa9f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:15:05.000Z'}}, {'blockNum': '0x7d1ca8', 'uniqueId': '0x56be8e4abc1a0c82c5af45710a26c1628965a89a7c781504fe67a844401c8884:log:7', 'hash': '0x56be8e4abc1a0c82c5af45710a26c1628965a89a7c781504fe67a844401c8884', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x8fdf39566b209a48a4ad4f4bec2a34edd6d59b18', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:16:06.000Z'}}, {'blockNum': '0x7d1cb2', 'uniqueId': '0xdb74059115b9a83a4f2c5bd8c30ca818c044e2d2b691bc801770aef3162b24b2:log:19', 'hash': '0xdb74059115b9a83a4f2c5bd8c30ca818c044e2d2b691bc801770aef3162b24b2', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xa4ae9c8a4d2aea0aef4be215490de4bed2ba6455', 'value': 9944.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021b14e2a2d72cfe0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:18:02.000Z'}}, {'blockNum': '0x7d1cb3', 'uniqueId': '0x244ffda2677cedcbe6cf769cb0486ff38afc7df4aa7f8df44471d6e9681a1c63:log:17', 'hash': '0x244ffda2677cedcbe6cf769cb0486ff38afc7df4aa7f8df44471d6e9681a1c63', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x4e72e0e86aa76e8d33ba1da4f682c7bbd63a8793', 'value': 14967.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x032b680ae4e992d64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:18:11.000Z'}}, {'blockNum': '0x7d1cb4', 'uniqueId': '0x1cbb338b55babec9bc038e19d5ca51d6757ee0063ae277c48a4bd17530fa0c08:log:5', 'hash': '0x1cbb338b55babec9bc038e19d5ca51d6757ee0063ae277c48a4bd17530fa0c08', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x165dacaa7cad24230766006520ea75a39e21da08', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:18:43.000Z'}}, {'blockNum': '0x7d1cb6', 'uniqueId': '0x5d3c48176597ca5cfc6fe121a7e7d2489f5882dd30dc1d53be67b87551a52ee6:log:60', 'hash': '0x5d3c48176597ca5cfc6fe121a7e7d2489f5882dd30dc1d53be67b87551a52ee6', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x556a8c048a7a07fead26fdd909c6423247919712', 'value': 2445.5619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8492fd36e8615ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:19:08.000Z'}}, {'blockNum': '0x7d1cbc', 'uniqueId': '0x9661b5b151380a87b824706a1776661fb0b6512555239b39e43edaf8aa0ae936:log:230', 'hash': '0x9661b5b151380a87b824706a1776661fb0b6512555239b39e43edaf8aa0ae936', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0xf33aceca27249d63f0ea21fb1065b33b3a138ea9', 'value': 5955.7078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0142dc0c91685f318000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:21:32.000Z'}}, {'blockNum': '0x7d1cc3', 'uniqueId': '0xddba508f0d5994f1df51421bbfeef75c84c2848e4ebba8b6848c8b2ad987fdbd:log:6', 'hash': '0xddba508f0d5994f1df51421bbfeef75c84c2848e4ebba8b6848c8b2ad987fdbd', 'from': '0x6c084b601367975ff53814ecbf46576afe0bbe0f', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 247753.57, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3476bf791c540b7d0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:23:19.000Z'}}, {'blockNum': '0x7d1cc6', 'uniqueId': '0x99282d0126e6443434a8a1f11bbacef217105f12dbe9180c37aa65a753c6754a:log:3', 'hash': '0x99282d0126e6443434a8a1f11bbacef217105f12dbe9180c37aa65a753c6754a', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xc2d68e3b5c1e8bc76577e9c8d3462abeae6a9e18', 'value': 46913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09ef28a8d045fc640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:24:10.000Z'}}, {'blockNum': '0x7d1cd5', 'uniqueId': '0xf0de8b24d2fd515b9d22731a0dcdc961facec655a1a1babe8942f6e9fb6b556a:log:68', 'hash': '0xf0de8b24d2fd515b9d22731a0dcdc961facec655a1a1babe8942f6e9fb6b556a', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 7386.433652763546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01906b5be02f8a2a1513', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:27:35.000Z'}}, {'blockNum': '0x7d1cd5', 'uniqueId': '0xf0de8b24d2fd515b9d22731a0dcdc961facec655a1a1babe8942f6e9fb6b556a:log:72', 'hash': '0xf0de8b24d2fd515b9d22731a0dcdc961facec655a1a1babe8942f6e9fb6b556a', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 7386.433652763546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01906b5be02f8a2a1513', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:27:35.000Z'}}, {'blockNum': '0x7d1cd6', 'uniqueId': '0x43fcc527e36b0ec792d4fae2273642faa5f336c536e6b76279a267f4c5e3fb0a:log:13', 'hash': '0x43fcc527e36b0ec792d4fae2273642faa5f336c536e6b76279a267f4c5e3fb0a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 87413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1282ab10ce13b4b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:27:51.000Z'}}, {'blockNum': '0x7d1ce8', 'uniqueId': '0x791042743bad19f0912da4fd211bc64201c7de8513c3adb5832fb95ce34f3a4c:log:10', 'hash': '0x791042743bad19f0912da4fd211bc64201c7de8513c3adb5832fb95ce34f3a4c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xdd4e8aacaa91edb71aa0bfe89a11131debc0a0b4', 'value': 10000.0065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19f7e171e14a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:31:32.000Z'}}, {'blockNum': '0x7d1ceb', 'uniqueId': '0x20e2cfa5c459862322b19fac29b7606f6dbd41f208d0aee89735f745ce75b880:log:0', 'hash': '0x20e2cfa5c459862322b19fac29b7606f6dbd41f208d0aee89735f745ce75b880', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:32:10.000Z'}}, {'blockNum': '0x7d1ced', 'uniqueId': '0x7bb1d5c28814c5900a6ef0dca2cfd24bc8f7652e36fbe54152bffd625a5b3346:log:34', 'hash': '0x7bb1d5c28814c5900a6ef0dca2cfd24bc8f7652e36fbe54152bffd625a5b3346', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x1e8ac78f81abdf85bde3dea7014e2fdddbe965bd', 'value': 16967.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0397d39e407550164000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:33:07.000Z'}}, {'blockNum': '0x7d1cef', 'uniqueId': '0x4dedb2bcd68ed4a6c8550a545f7de1a91cde05cfbcd1db73c3296752f1ecfee6:log:97', 'hash': '0x4dedb2bcd68ed4a6c8550a545f7de1a91cde05cfbcd1db73c3296752f1ecfee6', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x156a6d684408ae7e96cd36981e4ce1d00831b15e', 'value': 88281.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x12b1c532aa8dae1c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:34:08.000Z'}}, {'blockNum': '0x7d1cf0', 'uniqueId': '0xcccbd40976742668c702d34849c721197d24089dc5e398d8bbe777fa548923f0:log:66', 'hash': '0xcccbd40976742668c702d34849c721197d24089dc5e398d8bbe777fa548923f0', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xea21d9d77db099077c645c266ba5f57cc0390d15', 'value': 87259.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x127a5462630cde1e0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:34:17.000Z'}}, {'blockNum': '0x7d1cf3', 'uniqueId': '0xabe2760a747dc0559841d1289c5fd005dd57c0264ee3d32d24421c9c784917ef:log:1', 'hash': '0xabe2760a747dc0559841d1289c5fd005dd57c0264ee3d32d24421c9c784917ef', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x162b1605b5265257bfcbc525b69f42c420e9dc61', 'value': 419.56532603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x16bea37912691a8c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:34:46.000Z'}}, {'blockNum': '0x7d1cf4', 'uniqueId': '0x01590a76634b2a37dd81a465e38cbbd0ea6d9dfd527cae608456811027d72414:log:146', 'hash': '0x01590a76634b2a37dd81a465e38cbbd0ea6d9dfd527cae608456811027d72414', 'from': '0x7b5a8d2844d5bdfd51d36732b2cdd852c87f73b1', 'to': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:34:55.000Z'}}, {'blockNum': '0x7d1cf5', 'uniqueId': '0x8ca2d891684b3ae989bf966085ad91a1092e0c8795cd17e69717debea6cb5459:log:92', 'hash': '0x8ca2d891684b3ae989bf966085ad91a1092e0c8795cd17e69717debea6cb5459', 'from': '0x7df5fe1e1bd191cad989b7d5a9b867a6b77c07fb', 'to': '0xea21d9d77db099077c645c266ba5f57cc0390d15', 'value': 55583.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0bc5316809773a580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:35:16.000Z'}}, {'blockNum': '0x7d1cf7', 'uniqueId': '0x5207abcc1d06b856d7d87d3d734ff159cc38fe3b18230e753ad91a681034a6ec:log:90', 'hash': '0x5207abcc1d06b856d7d87d3d734ff159cc38fe3b18230e753ad91a681034a6ec', 'from': '0x7b5a8d2844d5bdfd51d36732b2cdd852c87f73b1', 'to': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'value': 2199999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d1de2f4ca5bd879c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:35:46.000Z'}}, {'blockNum': '0x7d1cfd', 'uniqueId': '0x2988b668ad7bb966c6a33cefe4c362eeccc61fd0585f560957097457318bfa7d:log:29', 'hash': '0x2988b668ad7bb966c6a33cefe4c362eeccc61fd0585f560957097457318bfa7d', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0xf94497f218d42d3425f03b3425eb7484d9f99586', 'value': 2970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa10107a043fe280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:36:59.000Z'}}, {'blockNum': '0x7d1d00', 'uniqueId': '0x89fb07a793ecab4a32b1447b88c9e0cd05314663bafe631b6276ffcf3cbb406b:log:6', 'hash': '0x89fb07a793ecab4a32b1447b88c9e0cd05314663bafe631b6276ffcf3cbb406b', 'from': '0x2747c95ab0f2585a2f77043b6ea07ee7f5bfe76c', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:37:32.000Z'}}, {'blockNum': '0x7d1d00', 'uniqueId': '0x12d3991bfa5a7e58017fc5c479490ff0e0c740d853d39d76be35c326ae8d261f:log:135', 'hash': '0x12d3991bfa5a7e58017fc5c479490ff0e0c740d853d39d76be35c326ae8d261f', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xaac1e92371f8dc398b8ed2917862b229d8cc754f', 'value': 13034.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02c29e3042ab75b80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:37:32.000Z'}}, {'blockNum': '0x7d1d04', 'uniqueId': '0xb9f861029ccbc15ea4bd834b61b7cc6b91db1311fdc103b5d1b6697525c47953:log:16', 'hash': '0xb9f861029ccbc15ea4bd834b61b7cc6b91db1311fdc103b5d1b6697525c47953', 'from': '0xd670a6dc89183e2cee42feb58a3e6e0be2690b11', 'to': '0x57c97f0382046498ed25b0d8bef7002ea36afc0c', 'value': 51843.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0afa73500a845fee0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:38:27.000Z'}}, {'blockNum': '0x7d1d04', 'uniqueId': '0xce26821befcfda5999a419c64233ac85f4296e67767a6767cae5204993483e40:log:28', 'hash': '0xce26821befcfda5999a419c64233ac85f4296e67767a6767cae5204993483e40', 'from': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'to': '0xea21d9d77db099077c645c266ba5f57cc0390d15', 'value': 67284.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0e3f8166cae9280c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:38:27.000Z'}}, {'blockNum': '0x7d1d05', 'uniqueId': '0x9c3f2915fb171db724c44f5a507e00f6298d9d2b0453b17d5661ccfbe5372e55:log:16', 'hash': '0x9c3f2915fb171db724c44f5a507e00f6298d9d2b0453b17d5661ccfbe5372e55', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x16aefe5d3f4178ea8b1c2913fbaf88a38022ec8a', 'value': 20000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c3ef2d6ef7fda4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:38:53.000Z'}}, {'blockNum': '0x7d1d05', 'uniqueId': '0x97d548a4e57d95bd3a884504690a3ce8a80dba20e0f137f6b1f7093b88241e8e:log:38', 'hash': '0x97d548a4e57d95bd3a884504690a3ce8a80dba20e0f137f6b1f7093b88241e8e', 'from': '0xc7c9b856d33651cc2bcd9e0099efa85f59f78302', 'to': '0x146da3c2dbc7d2bd34796cee8689cd72a4cca161', 'value': 2085.999481342474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x71150ee42e9b3e88ef', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:38:53.000Z'}}, {'blockNum': '0x7d1d07', 'uniqueId': '0x4bf5ea4186701af9ebe2115257fd9774ca1896e8c8f4204b53e1b0a9393e3129:log:1', 'hash': '0x4bf5ea4186701af9ebe2115257fd9774ca1896e8c8f4204b53e1b0a9393e3129', 'from': '0x162b1605b5265257bfcbc525b69f42c420e9dc61', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 419.56532603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x16bea37912691a8c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:40:08.000Z'}}, {'blockNum': '0x7d1d14', 'uniqueId': '0xcbc381d4ce2d88396aafa2da078646add02c963a6ae3ec8f257ffb6d8a23dc2c:log:21', 'hash': '0xcbc381d4ce2d88396aafa2da078646add02c963a6ae3ec8f257ffb6d8a23dc2c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x1c131dba3366e5f03073956af997ea64a089630e', 'value': 10075.9943106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02223882d095b9f3d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:42:15.000Z'}}, {'blockNum': '0x7d1d19', 'uniqueId': '0xa3b2ca7bf14efa76ea6ebfe48235405fe042f242d12194aecf809c538679b869:log:57', 'hash': '0xa3b2ca7bf14efa76ea6ebfe48235405fe042f242d12194aecf809c538679b869', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x5d82428fa87f7a6d3953781658dfeef40a8e4b3f', 'value': 106256.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x16802bc5bd7708680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:43:16.000Z'}}, {'blockNum': '0x7d1d19', 'uniqueId': '0x0da62eaa85dd67330d8057a2291f67dfd60d595dcba6b4ec418d80b4bf12f1af:log:69', 'hash': '0x0da62eaa85dd67330d8057a2291f67dfd60d595dcba6b4ec418d80b4bf12f1af', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd19cd345ef5136dc9a561e16585955e85255e4b7', 'value': 5438.493749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0126d2432257376c5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:43:16.000Z'}}, {'blockNum': '0x7d1d27', 'uniqueId': '0x275293a2fbaa23f2c4539950955a05cec24896d5051947f3ce72f5dfd7d2bd11:log:57', 'hash': '0x275293a2fbaa23f2c4539950955a05cec24896d5051947f3ce72f5dfd7d2bd11', 'from': '0x146da3c2dbc7d2bd34796cee8689cd72a4cca161', 'to': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'value': 2085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x710730053251740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:46:24.000Z'}}, {'blockNum': '0x7d1d27', 'uniqueId': '0x275293a2fbaa23f2c4539950955a05cec24896d5051947f3ce72f5dfd7d2bd11:log:60', 'hash': '0x275293a2fbaa23f2c4539950955a05cec24896d5051947f3ce72f5dfd7d2bd11', 'from': '0x41f8d14c9475444f30a80431c68cf24dc9a8369a', 'to': '0xb14232b0204b2f7bb6ba5aff59ef36030f7fe38b', 'value': 2085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x710730053251740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:46:24.000Z'}}, {'blockNum': '0x7d1d28', 'uniqueId': '0x9d8be3cce79e7f5f9a35c842b4a1774264fdfe88d26c09bed1b91d3b2f1df7ea:log:138', 'hash': '0x9d8be3cce79e7f5f9a35c842b4a1774264fdfe88d26c09bed1b91d3b2f1df7ea', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xfc8f993d936931a326a711641cc7998b2f9f53aa', 'value': 770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x29bde5885d7ac80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:46:34.000Z'}}, {'blockNum': '0x7d1d2b', 'uniqueId': '0x617ca0c7cbc9bcbbe818e6dc8076051d7bdbce5bd3a7f586fd1746941d4a18d6:log:33', 'hash': '0x617ca0c7cbc9bcbbe818e6dc8076051d7bdbce5bd3a7f586fd1746941d4a18d6', 'from': '0xa4ae9c8a4d2aea0aef4be215490de4bed2ba6455', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 9944.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021b14e2a2d72cfe0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:47:25.000Z'}}, {'blockNum': '0x7d1d3c', 'uniqueId': '0x3ac25a655bc1a92c780dba0707fee6880d365c420ac65821f57042a6e896a2ef:log:54', 'hash': '0x3ac25a655bc1a92c780dba0707fee6880d365c420ac65821f57042a6e896a2ef', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x331f06673a10408c5982b24776007c44d08cf7f5', 'value': 70827.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0eff952de63b8c1c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:50:54.000Z'}}, {'blockNum': '0x7d1d52', 'uniqueId': '0xeb4aa4f913e52f3fb2105a0166d4e833895cffa73394297ab2a764c7d9f62ac3:log:55', 'hash': '0xeb4aa4f913e52f3fb2105a0166d4e833895cffa73394297ab2a764c7d9f62ac3', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x94d348d1a7182f08459e4779f86f3f680a720e58', 'value': 1970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6acb3df27e1f880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:54:04.000Z'}}, {'blockNum': '0x7d1d59', 'uniqueId': '0x0e91fafb8f0bf0573e2ef5dfc87886e0920b92307a4413da2db007b63cb706db:log:89', 'hash': '0x0e91fafb8f0bf0573e2ef5dfc87886e0920b92307a4413da2db007b63cb706db', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x636d112a427f5f54297e82be1d0f31ee08c828fd', 'value': 30172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0663a09d1de48df00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:54:56.000Z'}}, {'blockNum': '0x7d1d69', 'uniqueId': '0xccd18678b86a9420e473e4e644c9a2e1c7916e9cacde6329124024928b4b78dd:log:30', 'hash': '0xccd18678b86a9420e473e4e644c9a2e1c7916e9cacde6329124024928b4b78dd', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xf7c1b6b6f7da35bd7707864f2693c0a85cdef8ed', 'value': 40172.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0881c5af2b195b8a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:58:35.000Z'}}, {'blockNum': '0x7d1d6a', 'uniqueId': '0x560dd2f4f3f296c42283a97b04a30c086fd398bdb083442d43a83ddec73d2c7e:log:7', 'hash': '0x560dd2f4f3f296c42283a97b04a30c086fd398bdb083442d43a83ddec73d2c7e', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd35dcdcde302029a699cd4934b95590bcdf52727', 'value': 20000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c3ef2d6ef7fda4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T08:58:42.000Z'}}, {'blockNum': '0x7d1d79', 'uniqueId': '0x7188407345d7a205b9d1c29c414ad3cc7f5bcb7513d4c74a0e1130a61ef1909c:log:103', 'hash': '0x7188407345d7a205b9d1c29c414ad3cc7f5bcb7513d4c74a0e1130a61ef1909c', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xbd18817b6824a999719c7b475e47607270f16227', 'value': 1052, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x39076eca43def00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:02:36.000Z'}}, {'blockNum': '0x7d1d97', 'uniqueId': '0xb6801e4fcbed05a90a442ba310dc3e595a2e8e45f18fcb9b407a954b1724c3d8:log:15', 'hash': '0xb6801e4fcbed05a90a442ba310dc3e595a2e8e45f18fcb9b407a954b1724c3d8', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x156e1a123724c48f02e19115760a85a854c112d5', 'value': 60000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a675fdda48da4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:08:58.000Z'}}, {'blockNum': '0x7d1dc1', 'uniqueId': '0x60c375170627bb44eef542bd1c15183005355bc04bd8d320d52aa4e632262241:log:24', 'hash': '0x60c375170627bb44eef542bd1c15183005355bc04bd8d320d52aa4e632262241', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 4218.48599692226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe4af40e7b43ee7d7f9', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:19:27.000Z'}}, {'blockNum': '0x7d1de5', 'uniqueId': '0x101a164b16bc7c1238b0bad44d4d4005e5ff54adb99f38462f3e840a6c2b86d1:log:80', 'hash': '0x101a164b16bc7c1238b0bad44d4d4005e5ff54adb99f38462f3e840a6c2b86d1', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xdf8d9a590e53e4cb07998e40c4e87fd782a44ac8', 'value': 7694.08123604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a118d3a7305aa0d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:27:27.000Z'}}, {'blockNum': '0x7d1dfc', 'uniqueId': '0xe915974a00721c45e99000e945069dd9e8d7b174126a3cc8365261dd74767d53:log:1', 'hash': '0xe915974a00721c45e99000e945069dd9e8d7b174126a3cc8365261dd74767d53', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 8712.354694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d84c35b228d5166000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:31:33.000Z'}}, {'blockNum': '0x7d1e02', 'uniqueId': '0x40673216acd04c80d14dd6a9af146f039c7ee60cb43ba3c494dc26e7a911afd8:log:7', 'hash': '0x40673216acd04c80d14dd6a9af146f039c7ee60cb43ba3c494dc26e7a911afd8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 397817.415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x543db9abef80920d8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:32:53.000Z'}}, {'blockNum': '0x7d1e41', 'uniqueId': '0x27cd5a877a91f9ba82d20a732de407d96576514bcc026c471fe1258fa2b27a07:log:89', 'hash': '0x27cd5a877a91f9ba82d20a732de407d96576514bcc026c471fe1258fa2b27a07', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0xa73df9041af7cf3dd3d31ee203030a76e5282f09', 'value': 10718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02450621359a2cb80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:49:02.000Z'}}, {'blockNum': '0x7d1e51', 'uniqueId': '0x26870a9a4d008ccf53cf97e233778dc04660c9bc43ca8a3a0dc22c3e56079acd:log:97', 'hash': '0x26870a9a4d008ccf53cf97e233778dc04660c9bc43ca8a3a0dc22c3e56079acd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xc3d31b342433a5a30a81e9c40e4b1cdd750c5e8d', 'value': 499970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x69df6d91fd6932c80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:53:28.000Z'}}, {'blockNum': '0x7d1e67', 'uniqueId': '0x3f5cd1abc6a2ea00ca772e4e5fd5c023bd8db5ced801eec26d1cff73c7624c68:log:62', 'hash': '0x3f5cd1abc6a2ea00ca772e4e5fd5c023bd8db5ced801eec26d1cff73c7624c68', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x48ce0ee8cc82ae400ef33fe38ba6e5481924a854', 'value': 830, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2cfe905a78b6380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:58:07.000Z'}}, {'blockNum': '0x7d1e67', 'uniqueId': '0xd84a7fa8d124beab0b305ecd87b4b9d4c90df5a7c04bbe51ad016cf50f0003a6:log:63', 'hash': '0xd84a7fa8d124beab0b305ecd87b4b9d4c90df5a7c04bbe51ad016cf50f0003a6', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x83ad93b8748d5685db7d846423cff507b67133c0', 'value': 2154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x74c4c1439e6f680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:58:07.000Z'}}, {'blockNum': '0x7d1e6a', 'uniqueId': '0xdcd255290881d3d8ff38140af83aac0f54f275baa60b03ab1360313c439fead9:log:23', 'hash': '0xdcd255290881d3d8ff38140af83aac0f54f275baa60b03ab1360313c439fead9', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6ae65dc4dc2c5b4ee79e1ff5772f9edb12493e9c', 'value': 60000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a675fdda48da4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T09:59:26.000Z'}}, {'blockNum': '0x7d1e77', 'uniqueId': '0xcf722ee0b1cd5c8614369473967ab2b773c2835b0dddca8c2d53af0750a2040a:log:1', 'hash': '0xcf722ee0b1cd5c8614369473967ab2b773c2835b0dddca8c2d53af0750a2040a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x459f406c75dc95e457b6eb01291abd35c77c2811', 'value': 3718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc98d9d753116580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:02:25.000Z'}}, {'blockNum': '0x7d1e7a', 'uniqueId': '0x061a509c99f767eb8ad025b2551c86e99656f3a683bc012863eb08ce37c35a85:log:8', 'hash': '0x061a509c99f767eb8ad025b2551c86e99656f3a683bc012863eb08ce37c35a85', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xab3f14a02083f06e63cc85b99c1de11cb503a20e', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:03:32.000Z'}}, {'blockNum': '0x7d1e82', 'uniqueId': '0xa80a84e314a5980d1b943a734ee203d9b2c630a7ae9b85d213cbb26e404ae966:log:21', 'hash': '0xa80a84e314a5980d1b943a734ee203d9b2c630a7ae9b85d213cbb26e404ae966', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xfaf7067e8238fbde3a2d61712a4c95fcb4486073', 'value': 10211.9617308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0229977020ded9396000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:05:57.000Z'}}, {'blockNum': '0x7d1e88', 'uniqueId': '0x49976b7e8adb8a474c3081618d49814693131fbaf1c7374b1f6dddb157819cb1:log:107', 'hash': '0x49976b7e8adb8a474c3081618d49814693131fbaf1c7374b1f6dddb157819cb1', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x38db92ea037c1935d5d7bbaf6bbf44e8e818501b', 'value': 1680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5b12aefafa80400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:07:08.000Z'}}, {'blockNum': '0x7d1e8e', 'uniqueId': '0xe057cd7d08b8e4db8f433340ac05c07e3741d9be8c9140799c49feaf783e6f32:log:23', 'hash': '0xe057cd7d08b8e4db8f433340ac05c07e3741d9be8c9140799c49feaf783e6f32', 'from': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'to': '0x0613d8b7a545574ac194ef09c80e491de4f18c43', 'value': 10380.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0232bea13fe1460a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:08:59.000Z'}}, {'blockNum': '0x7d1eaf', 'uniqueId': '0x55e3bf588fff1cad6dde875a5f2d251970ee6ae25d1d5a9f3715008e08225a3b:log:1', 'hash': '0x55e3bf588fff1cad6dde875a5f2d251970ee6ae25d1d5a9f3715008e08225a3b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 44472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x096ad4fab93ee3e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:15:13.000Z'}}, {'blockNum': '0x7d1ecf', 'uniqueId': '0x3cec6906009fdb14327d5da27b1ec2df22ba695a77b83224320786448b860b54:log:19', 'hash': '0x3cec6906009fdb14327d5da27b1ec2df22ba695a77b83224320786448b860b54', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 44472, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x096ad4fab93ee3e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:22:18.000Z'}}, {'blockNum': '0x7d1edd', 'uniqueId': '0xaf1d81da46d4e8b40c6b2f456c0a8f8258d443ac60de954f4ff2323d2e04e882:log:1', 'hash': '0xaf1d81da46d4e8b40c6b2f456c0a8f8258d443ac60de954f4ff2323d2e04e882', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 186345.4185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2775ce2d4968b4844000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:25:08.000Z'}}, {'blockNum': '0x7d1edd', 'uniqueId': '0x9a6cc4f8ddc9add52f9ecb8b876277d0b5fe262ee4039682afe8f2b64c9809a7:log:55', 'hash': '0x9a6cc4f8ddc9add52f9ecb8b876277d0b5fe262ee4039682afe8f2b64c9809a7', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x5733cec853d232bb49a568866ab8634313c38c2c', 'value': 1035.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x38227303af94fe0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:25:08.000Z'}}, {'blockNum': '0x7d1ef2', 'uniqueId': '0x61fb859daa4f3c1f5250bd214163bbf480fc4fddd2f1ce5408b246f17fe15aef:log:20', 'hash': '0x61fb859daa4f3c1f5250bd214163bbf480fc4fddd2f1ce5408b246f17fe15aef', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 186345.4185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2775ce2d4968b4844000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:31:08.000Z'}}, {'blockNum': '0x7d1ef7', 'uniqueId': '0x186a6f9c3c0f7613a515f2cb231a7a870f8559e2478873493c329a177daceb65:log:19', 'hash': '0x186a6f9c3c0f7613a515f2cb231a7a870f8559e2478873493c329a177daceb65', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xa68eac5c63482c4caa9f8368b8006ef734586119', 'value': 207.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b43e4febe75364000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:32:19.000Z'}}, {'blockNum': '0x7d1f0d', 'uniqueId': '0x480e915455c79cd2057e6745d963880c332fdcfac8b7e37fe05256d4898fa4f3:log:22', 'hash': '0x480e915455c79cd2057e6745d963880c332fdcfac8b7e37fe05256d4898fa4f3', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xa68eac5c63482c4caa9f8368b8006ef734586119', 'value': 9814.639368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02140d7b89020c588000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:36:06.000Z'}}, {'blockNum': '0x7d1f18', 'uniqueId': '0xd89d7a15b1560ab074e6eea99c46f0deb16ca4be84983f72609aa8f5de814c0b:log:2', 'hash': '0xd89d7a15b1560ab074e6eea99c46f0deb16ca4be84983f72609aa8f5de814c0b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x51993345050e2086fafcd844b98f7f350703475f', 'value': 10197.9934234, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0228d596bb4c26c39000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:39:02.000Z'}}, {'blockNum': '0x7d1f1e', 'uniqueId': '0xe55c4b3d2d4da6adee7e5c602c91eb386a1fd831190d61780f02105159f568b6:log:51', 'hash': '0xe55c4b3d2d4da6adee7e5c602c91eb386a1fd831190d61780f02105159f568b6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0953b513cb319078051ce84cd9e10dac25519473', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:40:15.000Z'}}, {'blockNum': '0x7d1f2b', 'uniqueId': '0x386b67a949e48149ad43e7cc385d0ec540847e50ca40170aaf2b62c379fcfcf3:log:45', 'hash': '0x386b67a949e48149ad43e7cc385d0ec540847e50ca40170aaf2b62c379fcfcf3', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x9165751cab0016d233785d087636ae6889b4d772', 'value': 2130.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x737913683f1b920000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:43:39.000Z'}}, {'blockNum': '0x7d1f4e', 'uniqueId': '0xfa634264f1ad89782954eb183e271ca788c6813233ea4c462fdcd1f774d939b3:log:25', 'hash': '0xfa634264f1ad89782954eb183e271ca788c6813233ea4c462fdcd1f774d939b3', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x004844644d5ebd8932628078cdb7912a07a24b5d', 'value': 3718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xc98d9d753116580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:51:06.000Z'}}, {'blockNum': '0x7d1f5f', 'uniqueId': '0x96a47d833c9fe9b6158e55566cacbbf1cfcc9a49091c93493e739effc7d27f99:log:20', 'hash': '0x96a47d833c9fe9b6158e55566cacbbf1cfcc9a49091c93493e739effc7d27f99', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x9dca2e81233d42c456d1c8aed1ae3db6f28f2dd0', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T10:54:03.000Z'}}, {'blockNum': '0x7d1f87', 'uniqueId': '0x2487e925e8e8e8db35044e1befc9d4cc0d85cce871a232d822b38612091198a2:log:6', 'hash': '0x2487e925e8e8e8db35044e1befc9d4cc0d85cce871a232d822b38612091198a2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 72952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f72bc604bbd18e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:05:42.000Z'}}, {'blockNum': '0x7d1f87', 'uniqueId': '0x1c9178989d5a27670abc50631de2035eafbe34c82b3ba5922e850683e50daf54:log:22', 'hash': '0x1c9178989d5a27670abc50631de2035eafbe34c82b3ba5922e850683e50daf54', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xf97aaa6a3993cb3b52d8e15fe7548c8418884f4b', 'value': 27281.4616162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05c6ee55dc8e2f34d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:05:42.000Z'}}, {'blockNum': '0x7d1f98', 'uniqueId': '0x16d15b7cbd70f8d83f107b903084e8e2c01556b658e970d8bf33a13547f56558:log:44', 'hash': '0x16d15b7cbd70f8d83f107b903084e8e2c01556b658e970d8bf33a13547f56558', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x286f236b7e348de914439dd378dd4d1ded034c05', 'value': 51061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ad005b9273a3cb40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:09:56.000Z'}}, {'blockNum': '0x7d1f9f', 'uniqueId': '0xf158d2ff43a1c278dbc362aa6cd8faaee0e55c83690e077a78745ff268d9f341:log:2', 'hash': '0xf158d2ff43a1c278dbc362aa6cd8faaee0e55c83690e077a78745ff268d9f341', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xe8a1004c5fb7fd74590d319a606e29359ca5804b', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:11:47.000Z'}}, {'blockNum': '0x7d1fa0', 'uniqueId': '0xce25d8d492d9b76aaddb8925d6f0bce7a79111c112112fa4144c252d33653d63:log:16', 'hash': '0xce25d8d492d9b76aaddb8925d6f0bce7a79111c112112fa4144c252d33653d63', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 72952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f72bc604bbd18e00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:12:05.000Z'}}, {'blockNum': '0x7d1fa2', 'uniqueId': '0xcb603af2507125d8e174400544da069bb4bf6d2eba6bcfd96c144e1687cd9498:log:38', 'hash': '0xcb603af2507125d8e174400544da069bb4bf6d2eba6bcfd96c144e1687cd9498', 'from': '0x6593be891aa716edb573f07ba7bd77dbc337a39a', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 5970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143a264a9959a080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:12:39.000Z'}}, {'blockNum': '0x7d1fa2', 'uniqueId': '0x7b885df3ae78c2d4e7f3cdc89437b9cef37dada6c5b72bdae7b4baef2ed4d712:log:73', 'hash': '0x7b885df3ae78c2d4e7f3cdc89437b9cef37dada6c5b72bdae7b4baef2ed4d712', 'from': '0xd933662bc4787aa3aab1f8bbd6fa127eacbe4bbc', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 5690.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01347fb700d970f80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:12:39.000Z'}}, {'blockNum': '0x7d1fa2', 'uniqueId': '0xd597514009a7950c3892bd79e305f13abd2bb357eb9df4f59119cbe765b1dae1:log:112', 'hash': '0xd597514009a7950c3892bd79e305f13abd2bb357eb9df4f59119cbe765b1dae1', 'from': '0xc3b93abca41063b68c699d9948268d6e1bb71232', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 67093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0e351e6ada0d13340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:12:39.000Z'}}, {'blockNum': '0x7d1fa3', 'uniqueId': '0x10390fa9c05ff62c9a982cc8922731a8817d499f9358e9357e84f2f221268b35:log:0', 'hash': '0x10390fa9c05ff62c9a982cc8922731a8817d499f9358e9357e84f2f221268b35', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x01ca50fd671993faa044e98c64530cc957543674', 'value': 5417.65916448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0125b11fd21b29f88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:12:57.000Z'}}, {'blockNum': '0x7d1fa7', 'uniqueId': '0xde4f67d33b0bca594c2c05378766f6300ecc0e69c4ea5b01d6d3cae7496285f1:log:21', 'hash': '0xde4f67d33b0bca594c2c05378766f6300ecc0e69c4ea5b01d6d3cae7496285f1', 'from': '0x01ca50fd671993faa044e98c64530cc957543674', 'to': '0xe5d7ccc5fc3b3216c4dff3a59442f1d83038468c', 'value': 5417.65916448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0125b11fd21b29f88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:14:38.000Z'}}, {'blockNum': '0x7d1faf', 'uniqueId': '0x7c86ae6bbe43ea4339ad35e0cbd621c0e0f448d96ee977a5d2973190c2930e7a:log:44', 'hash': '0x7c86ae6bbe43ea4339ad35e0cbd621c0e0f448d96ee977a5d2973190c2930e7a', 'from': '0x75e89d5979e4f6fba9f97c104c2f0afb3f1dcb88', 'to': '0x7abeccc380308f1402454d164a360611d75aebdf', 'value': 107372.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x16bcaba942899fda0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:16:41.000Z'}}, {'blockNum': '0x7d1fbf', 'uniqueId': '0xc9d3f2106a3cd755930fa0fe5d2af05b66b164da4a306627a75d88ca83d7dfe4:log:88', 'hash': '0xc9d3f2106a3cd755930fa0fe5d2af05b66b164da4a306627a75d88ca83d7dfe4', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 208028.14552758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2c0d3a7630fb4fdc1800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:20:08.000Z'}}, {'blockNum': '0x7d1fc6', 'uniqueId': '0x6e96a9fde4b32577997ea068fe6cffb1009675c1bca37a1adae015e947091b15:log:36', 'hash': '0x6e96a9fde4b32577997ea068fe6cffb1009675c1bca37a1adae015e947091b15', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'value': 213154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2d2319fb7db4ed480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:22:42.000Z'}}, {'blockNum': '0x7d1fc6', 'uniqueId': '0x2d7eae03f7e65cc14a246dbead1d76034efdf90a931dc02bde5684a7fdb1e524:log:37', 'hash': '0x2d7eae03f7e65cc14a246dbead1d76034efdf90a931dc02bde5684a7fdb1e524', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x023a2d09811cffd5ced80da091a7b2da39dc8f16', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:22:42.000Z'}}, {'blockNum': '0x7d1fc6', 'uniqueId': '0x5cf136997791eaa0cf1d760ee079b273dcfc542488371fdc0b7a94f7808c654c:log:42', 'hash': '0x5cf136997791eaa0cf1d760ee079b273dcfc542488371fdc0b7a94f7808c654c', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb8852dbec54421e3d06741683ad3a057bceb7da1', 'value': 9682.6306146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020ce57e3b33fb34d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:22:42.000Z'}}, {'blockNum': '0x7d1fd3', 'uniqueId': '0x763cb98fc04907ae9094d5e7a3bdb08f7759520240d7b68031d05e19fca0d61f:log:108', 'hash': '0x763cb98fc04907ae9094d5e7a3bdb08f7759520240d7b68031d05e19fca0d61f', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x77bd60c7752b5f88f6ecfd5743aa1eacfa4e2ebe', 'value': 32960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06fac3e2da6f8b000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:25:09.000Z'}}, {'blockNum': '0x7d1fe1', 'uniqueId': '0xfb0051d77ba4ff2d0a8931164d7c30fca737bfa00d4202723f7f1b21f11f49ba:log:0', 'hash': '0xfb0051d77ba4ff2d0a8931164d7c30fca737bfa00d4202723f7f1b21f11f49ba', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 347027.26150465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497c62b2dd3f64c8e400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:28:25.000Z'}}, {'blockNum': '0x7d1fef', 'uniqueId': '0x8a680e386d6d154851a0760d29fa48bcf0776a20466df7286bcb9e0ef3195f03:log:22', 'hash': '0x8a680e386d6d154851a0760d29fa48bcf0776a20466df7286bcb9e0ef3195f03', 'from': '0xd2786bc8b92217f515b026534c46b341d6322d30', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 213154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2d2319fb7db4ed480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:30:58.000Z'}}, {'blockNum': '0x7d1fef', 'uniqueId': '0x8aba56528eb8c637181a10526ae536257f75e622cbb65b77b85776c1ab64b304:log:23', 'hash': '0x8aba56528eb8c637181a10526ae536257f75e622cbb65b77b85776c1ab64b304', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 208028.14552758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2c0d3a7630fb4fdc1800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:30:58.000Z'}}, {'blockNum': '0x7d1ff7', 'uniqueId': '0x36c888d8deaec191decde3b333495d1d7fcc0500b3bc8b55e6c442bde61b7485:log:33', 'hash': '0x36c888d8deaec191decde3b333495d1d7fcc0500b3bc8b55e6c442bde61b7485', 'from': '0x77bd60c7752b5f88f6ecfd5743aa1eacfa4e2ebe', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 32960, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06fac3e2da6f8b000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:32:20.000Z'}}, {'blockNum': '0x7d1fff', 'uniqueId': '0xb063c58e36013ecd69b24948a09a36fbfe178bc211e1847f2bc85d3769b5c016:log:57', 'hash': '0xb063c58e36013ecd69b24948a09a36fbfe178bc211e1847f2bc85d3769b5c016', 'from': '0xbd6d79f3f02584cfcb754437ac6776c4c6e0a0ec', 'to': '0x7c1bcedb1e2079a027ae9222d135b40f74abd16e', 'value': 508.248266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1b8d5c911cbe3ea000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:33:09.000Z'}}, {'blockNum': '0x7d2003', 'uniqueId': '0x4d1b142f4c3802103dde4ed0868b28f7bf22cb86416c77e93e7396375c7b2365:log:1', 'hash': '0x4d1b142f4c3802103dde4ed0868b28f7bf22cb86416c77e93e7396375c7b2365', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 347027.26150465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497c62b2dd3f64c8e400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:34:47.000Z'}}, {'blockNum': '0x7d2004', 'uniqueId': '0x99591363f4060dfdefb9ea95fdd8f7423ec116093df74fe58c081d4af79bc5a0:log:19', 'hash': '0x99591363f4060dfdefb9ea95fdd8f7423ec116093df74fe58c081d4af79bc5a0', 'from': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'to': '0x3a2973d2af5d99b6aede4bd6c321d40425a353e9', 'value': 20947.5466, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x046f919b57d76da68000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:35:26.000Z'}}, {'blockNum': '0x7d202d', 'uniqueId': '0x9511a3ae10226e6746c2397f4826a8ae402bd316eea8df86735c7c6684cbc607:log:35', 'hash': '0x9511a3ae10226e6746c2397f4826a8ae402bd316eea8df86735c7c6684cbc607', 'from': '0x7c1bcedb1e2079a027ae9222d135b40f74abd16e', 'to': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'value': 508.248266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1b8d5c911cbe3ea000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:45:39.000Z'}}, {'blockNum': '0x7d2031', 'uniqueId': '0x416683aed082094e399454a8091ed6b3a32fcd37db75465bd527154b64c13a42:log:5', 'hash': '0x416683aed082094e399454a8091ed6b3a32fcd37db75465bd527154b64c13a42', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x0cf8ee63079b325dea7e0fabebaecff545addbfa', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:46:10.000Z'}}, {'blockNum': '0x7d204a', 'uniqueId': '0xca0df88862e0abc5c953b87ba13e758571d9cf0cad1279f40d8c20587f2bdf88:log:0', 'hash': '0xca0df88862e0abc5c953b87ba13e758571d9cf0cad1279f40d8c20587f2bdf88', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 357894.42186789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4bc97ed822ee61eff400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:51:19.000Z'}}, {'blockNum': '0x7d2059', 'uniqueId': '0x5ba761765d7fa7372d7225416846cfbc885a74acb5406e62c24d992c65573f70:log:7', 'hash': '0x5ba761765d7fa7372d7225416846cfbc885a74acb5406e62c24d992c65573f70', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x334bfead1363fc3b5d7b769bf526cdb2a5b4b74c', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:55:07.000Z'}}, {'blockNum': '0x7d2061', 'uniqueId': '0x39e1d528af31e79f95a4b4cc20928f61d8bef680865acc7c071f6c8d759261a5:log:9', 'hash': '0x39e1d528af31e79f95a4b4cc20928f61d8bef680865acc7c071f6c8d759261a5', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x8e8871a207526e0a56c457dfe5e38155f57b5f26', 'value': 10393.2579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02336b6d8235aa56c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T11:56:01.000Z'}}, {'blockNum': '0x7d207f', 'uniqueId': '0x05456c00ea05eb2225e2c9401729b7d88092288d00a11652c5e3d3c0e04b838f:log:3', 'hash': '0x05456c00ea05eb2225e2c9401729b7d88092288d00a11652c5e3d3c0e04b838f', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 357894.42186789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4bc97ed822ee61eff400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:01:07.000Z'}}, {'blockNum': '0x7d20b1', 'uniqueId': '0x007f2a5f073388f673995ceff8f32a25582e697f43990d8fe2eaf010365b1b15:log:1', 'hash': '0x007f2a5f073388f673995ceff8f32a25582e697f43990d8fe2eaf010365b1b15', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 336192.87951922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x47310d71c883d63a8800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:07:42.000Z'}}, {'blockNum': '0x7d20c3', 'uniqueId': '0x16a0cd0ab6f97de5e836368a7cd522226b3a0d259504e5fe4522558dc95025ee:log:5', 'hash': '0x16a0cd0ab6f97de5e836368a7cd522226b3a0d259504e5fe4522558dc95025ee', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7db20d8aad87cedd60c6794a40f723ba3cd861ce', 'value': 1169.9065212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f6bb6e699db006000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:13:35.000Z'}}, {'blockNum': '0x7d20d3', 'uniqueId': '0xab1181d547e55cabe1d70077605edce2a0816a81ee7c3d900802c25d15b4201a:log:2', 'hash': '0xab1181d547e55cabe1d70077605edce2a0816a81ee7c3d900802c25d15b4201a', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x5e09d16137fbe8cbd0437e77214d3fd1e45c7255', 'value': 286.06667562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f81f8fdd486ff6800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:16:12.000Z'}}, {'blockNum': '0x7d20e5', 'uniqueId': '0x7799e29fbf97a8fe85a1f42824662a4d38712d299a543be8f2cc7af7cbf8f352:log:35', 'hash': '0x7799e29fbf97a8fe85a1f42824662a4d38712d299a543be8f2cc7af7cbf8f352', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 336192.87951922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x47310d71c883d63a8800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:21:00.000Z'}}, {'blockNum': '0x7d2129', 'uniqueId': '0xc8948305d72182087b70bdb584945a29f1365d0f697135c3e00bdd605e6410e4:log:10', 'hash': '0xc8948305d72182087b70bdb584945a29f1365d0f697135c3e00bdd605e6410e4', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 234976.69085301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x31c21ca7caf2a88f3400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:35:22.000Z'}}, {'blockNum': '0x7d2135', 'uniqueId': '0x99a9e1bebf04c958790a9d101272ddd1adce216ed6383a880b833a21acd95727:log:2', 'hash': '0x99a9e1bebf04c958790a9d101272ddd1adce216ed6383a880b833a21acd95727', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 255605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x36205ff3deab58b40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:39:18.000Z'}}, {'blockNum': '0x7d2142', 'uniqueId': '0x777ef4eeb7eff7c4da930842602d144a1dc5916c18b50edcabf340e5f794c1ff:log:1', 'hash': '0x777ef4eeb7eff7c4da930842602d144a1dc5916c18b50edcabf340e5f794c1ff', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x2dec3e59563b364f49475cea87f588af4736bb1c', 'value': 15200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0337fe5feaf2d1800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:41:57.000Z'}}, {'blockNum': '0x7d2160', 'uniqueId': '0x0979e92871cf1ef6eb24da937cedcac8aa986f21f69efe3c5dba7d7a87645486:log:0', 'hash': '0x0979e92871cf1ef6eb24da937cedcac8aa986f21f69efe3c5dba7d7a87645486', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 346969.44087409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49794046b819a2e3a400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:48:04.000Z'}}, {'blockNum': '0x7d217a', 'uniqueId': '0x6d455480c158dedb999c53ee6fb1a51c3b7d2541c104b482e0da1e490e5342be:log:5', 'hash': '0x6d455480c158dedb999c53ee6fb1a51c3b7d2541c104b482e0da1e490e5342be', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 234976.69085301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x31c21ca7caf2a88f3400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:53:14.000Z'}}, {'blockNum': '0x7d2182', 'uniqueId': '0xc381c76bb0127d910eeae8fc722f75ff61fc1c144bcb5bc540a37482b5466a0d:log:0', 'hash': '0xc381c76bb0127d910eeae8fc722f75ff61fc1c144bcb5bc540a37482b5466a0d', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 346969.44087409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49794046b819a2e3a400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:55:02.000Z'}}, {'blockNum': '0x7d2185', 'uniqueId': '0xa6e867bfe28b1d128b6dd6ed34ae76be7bddae767e6fe5a6b0ef63b7eb6bcce5:log:22', 'hash': '0xa6e867bfe28b1d128b6dd6ed34ae76be7bddae767e6fe5a6b0ef63b7eb6bcce5', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3b44917d9645362aa1bf4fa8747921bed7c89e62', 'value': 20261.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x044a650d1c1928ce4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T12:55:47.000Z'}}, {'blockNum': '0x7d2193', 'uniqueId': '0x677f7517dd089bc9d7f8ac75df93a08c252cef5a3b756c598c05d3ca3eb08538:log:9', 'hash': '0x677f7517dd089bc9d7f8ac75df93a08c252cef5a3b756c598c05d3ca3eb08538', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xda96de4b5c443a46d35496aff31f2aa0413d7b3c', 'value': 60000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a675fdda48da4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:00:08.000Z'}}, {'blockNum': '0x7d21ac', 'uniqueId': '0x9a6634812b1a7203d30bffca08c5e937d6fef02257edb667e1f6f2bbf2bec8ee:log:25', 'hash': '0x9a6634812b1a7203d30bffca08c5e937d6fef02257edb667e1f6f2bbf2bec8ee', 'from': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'to': '0xd73c838cfce617c5f127e16dd85b25e6d69888fa', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:04:39.000Z'}}, {'blockNum': '0x7d21df', 'uniqueId': '0x5d10155efa251cdb17ae597209d2e3918a5dc1ade92320bb5f66b10d957a55c5:log:24', 'hash': '0x5d10155efa251cdb17ae597209d2e3918a5dc1ade92320bb5f66b10d957a55c5', 'from': '0xa5eb7193d1894f9db7a796d245beed215f7fc62a', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 56217.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0be789c6a83ca4808000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:15:13.000Z'}}, {'blockNum': '0x7d2203', 'uniqueId': '0x7ab7487f8e5a1aa9d358524d2987a73dc22452b5b26c532f6c1bb1f68c2a4973:log:44', 'hash': '0x7ab7487f8e5a1aa9d358524d2987a73dc22452b5b26c532f6c1bb1f68c2a4973', 'from': '0x710bd38a6bf68cdfb80b7d23aab3fe2ddc4e3a49', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x140ec80fa7ee880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:22:08.000Z'}}, {'blockNum': '0x7d222c', 'uniqueId': '0x99ba55c5dec097dec36bfaff071f39d14d0490d0dab5df5fc800baf3aaafdad2:log:48', 'hash': '0x99ba55c5dec097dec36bfaff071f39d14d0490d0dab5df5fc800baf3aaafdad2', 'from': '0x90d6fbdd0b0c1bdfbe8e291f1df9b9f26acc50d6', 'to': '0xb005b6746d15242c0ebc1533a2943ccde75e2ebf', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:32:26.000Z'}}, {'blockNum': '0x7d2231', 'uniqueId': '0xfb4fe3ce24ff0ca9056b1e35676c3d5e7ebe47742fd3de8fb556733fd767c4d9:log:85', 'hash': '0xfb4fe3ce24ff0ca9056b1e35676c3d5e7ebe47742fd3de8fb556733fd767c4d9', 'from': '0x2dcf3ff0e2efd1ee1d50d4bb7d944abe5f7d70df', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 20037.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043e3769c217a3b08000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:33:35.000Z'}}, {'blockNum': '0x7d2234', 'uniqueId': '0x682cb1c9baaf1a3699e58cc855aac8d1aac45e0fe7996154997ed66c3d8dedbb:log:74', 'hash': '0x682cb1c9baaf1a3699e58cc855aac8d1aac45e0fe7996154997ed66c3d8dedbb', 'from': '0x420b68809bde46e15b97dec3e4d9d2dce8795531', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 8490, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01cc3e6b220d5a680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:06.000Z'}}, {'blockNum': '0x7d2235', 'uniqueId': '0x1b9ca3477eb64bdf1109d3756862654b245488443ebb976d37e1ce6145558293:log:17', 'hash': '0x1b9ca3477eb64bdf1109d3756862654b245488443ebb976d37e1ce6145558293', 'from': '0x37f710c4f9c9d1695ed9e090db28b03a1da568d0', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 967.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x346dffe74858788000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:15.000Z'}}, {'blockNum': '0x7d2235', 'uniqueId': '0x95940609749e105b088b0ec5d18efb262d35f63c7ebfb4a756bb6719986375c2:log:29', 'hash': '0x95940609749e105b088b0ec5d18efb262d35f63c7ebfb4a756bb6719986375c2', 'from': '0xc098f4bd6967d2404d6d1d1f37b1af6e2fc31ed5', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 60002.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4b933ee728a048000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:15.000Z'}}, {'blockNum': '0x7d2235', 'uniqueId': '0xda1b4f0a070f92754d5cd3f08f05dc4196b4e4c0cdc7c1271ee1f1b5f98c2105:log:31', 'hash': '0xda1b4f0a070f92754d5cd3f08f05dc4196b4e4c0cdc7c1271ee1f1b5f98c2105', 'from': '0xfd34dcef4d36aa3e07bf49c2c15362b4ea999878', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 19586.3829382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0425c7aa953046b57000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:15.000Z'}}, {'blockNum': '0x7d2236', 'uniqueId': '0xf98c464fdd2a55348fa3077f5a146f255b7b78ea18f2334ab265caa122836344:log:38', 'hash': '0xf98c464fdd2a55348fa3077f5a146f255b7b78ea18f2334ab265caa122836344', 'from': '0x9f6f49e7e1d8460eb1e4bd396d50aa6243281b0e', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 1581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x55b4c85380c4940000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:23.000Z'}}, {'blockNum': '0x7d2236', 'uniqueId': '0x1510f39ac2d917a4221148ce98dd3306fdba169efbe113101cab92a16bf88c06:log:65', 'hash': '0x1510f39ac2d917a4221148ce98dd3306fdba169efbe113101cab92a16bf88c06', 'from': '0x42d7d7367881cc91015847a10c72d99681ffe9f3', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 38755.4345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0834efb246a862944000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:23.000Z'}}, {'blockNum': '0x7d2236', 'uniqueId': '0xc4fcfd9e09193c18dc203981897c9a66e5e383e62f0097fb7a59289cf2186087:log:66', 'hash': '0xc4fcfd9e09193c18dc203981897c9a66e5e383e62f0097fb7a59289cf2186087', 'from': '0x83e45acb9e3a7aef75bbd57d067c3194f38fc890', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 44275.363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09602c17c392b9638000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:23.000Z'}}, {'blockNum': '0x7d2236', 'uniqueId': '0x57a6c1757deb68fd93be442397ce22d617527079e84b4bb151a3e3699c201b2d:log:67', 'hash': '0x57a6c1757deb68fd93be442397ce22d617527079e84b4bb151a3e3699c201b2d', 'from': '0xac1cfa423e673439348b59363520e42b59d1c083', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 66246.6797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0e073d5d2532bd2d4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:23.000Z'}}, {'blockNum': '0x7d2236', 'uniqueId': '0x8fcd7f99066bf561f616b24803e16e53ac15862df303df7e6766ae8f607afb2d:log:68', 'hash': '0x8fcd7f99066bf561f616b24803e16e53ac15862df303df7e6766ae8f607afb2d', 'from': '0x2ba611db7efa4bc102a636c43eaec02884aa492c', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 32624.5707782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06e894dede6388497000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:23.000Z'}}, {'blockNum': '0x7d2237', 'uniqueId': '0x1a0e0f26ae20c9fbeaa7c6bdea08779557f9c4ef0d1189bcbaed186fc166683f:log:102', 'hash': '0x1a0e0f26ae20c9fbeaa7c6bdea08779557f9c4ef0d1189bcbaed186fc166683f', 'from': '0x7e4c1cdc3088969de352d0b2db4b03b94209d9a6', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 34967.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x076792c8fb8fe9b88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:30.000Z'}}, {'blockNum': '0x7d223b', 'uniqueId': '0x0ac74f637ce7f3a616a22998dfe5b3f7b23fc69f9589340e3e0330283e06b593:log:24', 'hash': '0x0ac74f637ce7f3a616a22998dfe5b3f7b23fc69f9589340e3e0330283e06b593', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x460867c0646f7869482834ebb13abb564d1f4633', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:34:53.000Z'}}, {'blockNum': '0x7d2255', 'uniqueId': '0x0b798259fe1331c4ac87cf0513d8153c362a70814662729ad31e38ae850c37a3:log:53', 'hash': '0x0b798259fe1331c4ac87cf0513d8153c362a70814662729ad31e38ae850c37a3', 'from': '0xcb03a8f71ddbdd3d8a3c0ddbf233c676116fda11', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 47930.3953858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a264fdb514446e3d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:40:23.000Z'}}, {'blockNum': '0x7d2255', 'uniqueId': '0x2f3e7c22e5079bfe1ddb64844fab3f1b9cf4b35a725e8b8f2263a7ac712676c9:log:54', 'hash': '0x2f3e7c22e5079bfe1ddb64844fab3f1b9cf4b35a725e8b8f2263a7ac712676c9', 'from': '0xa8d0cc4ac9437e35ae250143e390c0021c5dbf7c', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 3167.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xabb121ff2edbd88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:40:23.000Z'}}, {'blockNum': '0x7d2260', 'uniqueId': '0x53418c288488e542f232fa9cf05dab744099ea86e5a1d8822f23319ed10f3c42:log:78', 'hash': '0x53418c288488e542f232fa9cf05dab744099ea86e5a1d8822f23319ed10f3c42', 'from': '0x90d6fbdd0b0c1bdfbe8e291f1df9b9f26acc50d6', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 563483.3884558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x77527ee5f19b5d7cb000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:43:35.000Z'}}, {'blockNum': '0x7d2260', 'uniqueId': '0x3c60265de3cd7a081f601369219d8eb26f09b688870f71c673a4db1b3c8cdef3:log:79', 'hash': '0x3c60265de3cd7a081f601369219d8eb26f09b688870f71c673a4db1b3c8cdef3', 'from': '0x2db779ac0b69a68c98ec5db6463f0b7ba77ec54e', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 18171.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03d91496c2e0594a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:43:35.000Z'}}, {'blockNum': '0x7d2260', 'uniqueId': '0x03ff202087c44e8e54c2f245a031dd2620d561687e4f4bc3afa82b733f0e22de:log:83', 'hash': '0x03ff202087c44e8e54c2f245a031dd2620d561687e4f4bc3afa82b733f0e22de', 'from': '0x68d1b7bc06a1ce9e556a096b449389849b1c872a', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 45849.82101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09b5861645d503cf2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:43:35.000Z'}}, {'blockNum': '0x7d2262', 'uniqueId': '0xe3ca15ef41c4ff53cbf78f54755a5c1740afbf0fc4f09003bd6c020756d7325e:log:8', 'hash': '0xe3ca15ef41c4ff53cbf78f54755a5c1740afbf0fc4f09003bd6c020756d7325e', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb7713ad4d330d3e7d08e041c870de4b571de0f9e', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:44:02.000Z'}}, {'blockNum': '0x7d2264', 'uniqueId': '0x8effea7fce285db53c2b1ad1afe552e41dace88d8bdf314896fd41a732cdc1d2:log:33', 'hash': '0x8effea7fce285db53c2b1ad1afe552e41dace88d8bdf314896fd41a732cdc1d2', 'from': '0x3582aab4a449cfdd7f37713d1acf4f25502b21c0', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 3500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xbdbc41e0348b300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:44:39.000Z'}}, {'blockNum': '0x7d2268', 'uniqueId': '0x883dd2bf94aa6469756e208ea6dc33e0e1e1878a6b79ba3078fdf741fac7e07b:log:11', 'hash': '0x883dd2bf94aa6469756e208ea6dc33e0e1e1878a6b79ba3078fdf741fac7e07b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xfa29e806425f551c1ea6fb9a6f5ec22bb1eb4bb7', 'value': 1633.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x588a974067dd820000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:45:09.000Z'}}, {'blockNum': '0x7d2274', 'uniqueId': '0x040dea19ed50b130ef2657eac60d68bf22733a5991954ccda193cc70d14ad681:log:126', 'hash': '0x040dea19ed50b130ef2657eac60d68bf22733a5991954ccda193cc70d14ad681', 'from': '0x9666d0962ff4e903b59c9437355c08c9c13b7443', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 30001.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a5c3f5f1bdb3c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:49:53.000Z'}}, {'blockNum': '0x7d2277', 'uniqueId': '0xb417f2c6978aea25cd20c04fdabdef5a9e11189bb43875dc4d2c1306ccfd8100:log:11', 'hash': '0xb417f2c6978aea25cd20c04fdabdef5a9e11189bb43875dc4d2c1306ccfd8100', 'from': '0x03f9cace44e702c4f5ca06188fa03bac6730c80e', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 29998.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a392f70beaa364000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:50:36.000Z'}}, {'blockNum': '0x7d2277', 'uniqueId': '0x2bc7868364cf7a9c6b5a0d4d621c16d74078c84de494792dd9bdf3b232d99ce3:log:48', 'hash': '0x2bc7868364cf7a9c6b5a0d4d621c16d74078c84de494792dd9bdf3b232d99ce3', 'from': '0x39e7886b012927cd576fdc66521902a7e9400be4', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 29953.68799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0657caed0d76e2696000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:50:36.000Z'}}, {'blockNum': '0x7d2278', 'uniqueId': '0x681c7603f9351ba0f0918f2d6d366a49ea86dd2413bfeb5ec1d6538bd1572d79:log:74', 'hash': '0x681c7603f9351ba0f0918f2d6d366a49ea86dd2413bfeb5ec1d6538bd1572d79', 'from': '0x945862ca3f50745de7e6b375a638adc10a07683c', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 19586.5481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0425c9f55af87a2c4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:50:40.000Z'}}, {'blockNum': '0x7d2278', 'uniqueId': '0xe20595d03cc81564a4de981980f21c39a3f312fc9c98ea8210a9f9f6c21ea5e9:log:85', 'hash': '0xe20595d03cc81564a4de981980f21c39a3f312fc9c98ea8210a9f9f6c21ea5e9', 'from': '0x89ec11d885087a36c41f9194c0dcfbe402d8d7ab', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 4633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xfb27ca795060c40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:50:40.000Z'}}, {'blockNum': '0x7d227b', 'uniqueId': '0x58a0ee218b51f50ce09b825968e574ca9feb9346224b959be12f566e86105ca5:log:129', 'hash': '0x58a0ee218b51f50ce09b825968e574ca9feb9346224b959be12f566e86105ca5', 'from': '0x746c2a20bb35a1eae9b5fa02fff3656e42797b0b', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 103968.686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1604275ceb4b106b0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:50:56.000Z'}}, {'blockNum': '0x7d227d', 'uniqueId': '0x92b3b4a6f21396d9311ef07e60ceead951decf52a0d1751c0c2d764a6771fc34:log:39', 'hash': '0x92b3b4a6f21396d9311ef07e60ceead951decf52a0d1751c0c2d764a6771fc34', 'from': '0xaadb7aa0ca0d32b07325467fe106d4c16847a626', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 20000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c3b10146b46be4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T13:51:08.000Z'}}, {'blockNum': '0x7d22a1', 'uniqueId': '0xd53155fce35fa94f7cdcf38efb09ca7d8e17a1d571b4534a04b64e52132c593c:log:69', 'hash': '0xd53155fce35fa94f7cdcf38efb09ca7d8e17a1d571b4534a04b64e52132c593c', 'from': '0x8426d6515a029235b98d5903e3a6e9a19c9f54da', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 9200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01f2bba5d84f99c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:00:22.000Z'}}, {'blockNum': '0x7d22aa', 'uniqueId': '0x8ed807f0c464c6800811ebe4365cca1509b0a348165212e9189bda40f50b9cdc:log:77', 'hash': '0x8ed807f0c464c6800811ebe4365cca1509b0a348165212e9189bda40f50b9cdc', 'from': '0x7fb107dc5f5125b67b14ec31e9c5419ef79262a9', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:01:45.000Z'}}, {'blockNum': '0x7d22b3', 'uniqueId': '0x2daf527c7b3697f77e212f5b3708bc62217dda6e8976934d36e7bb8bb4e7b699:log:122', 'hash': '0x2daf527c7b3697f77e212f5b3708bc62217dda6e8976934d36e7bb8bb4e7b699', 'from': '0x16e437483cab3c34ba4f44537c27ce7e104ff89b', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 746279.021757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9e07dde8cc467c9cd000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:04:18.000Z'}}, {'blockNum': '0x7d22b3', 'uniqueId': '0xf8a445293a08f05ae9bdd34b23ab53ec60f6e881c475247a2665f204bad8c285:log:123', 'hash': '0xf8a445293a08f05ae9bdd34b23ab53ec60f6e881c475247a2665f204bad8c285', 'from': '0x0753965ee2f74e100931c7b366e8694075983a56', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 24966.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05497028356c64964000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:04:18.000Z'}}, {'blockNum': '0x7d22bc', 'uniqueId': '0xa65e33980a337ded48e8d88bd8e1771deb0a1d76c30ecc13d597c82f62bc8711:log:48', 'hash': '0xa65e33980a337ded48e8d88bd8e1771deb0a1d76c30ecc13d597c82f62bc8711', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 7310.8859448472385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x018c52ec801acfb38fad', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:05:49.000Z'}}, {'blockNum': '0x7d22c8', 'uniqueId': '0xb06e21fdb4ba64bc916c4e0b5022940fc3af3916aeeeb4ccd6085f94d42494ad:log:23', 'hash': '0xb06e21fdb4ba64bc916c4e0b5022940fc3af3916aeeeb4ccd6085f94d42494ad', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 10348.17822962358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0230f9d258d838128c9f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:07:25.000Z'}}, {'blockNum': '0x7d22c8', 'uniqueId': '0xb06e21fdb4ba64bc916c4e0b5022940fc3af3916aeeeb4ccd6085f94d42494ad:log:27', 'hash': '0xb06e21fdb4ba64bc916c4e0b5022940fc3af3916aeeeb4ccd6085f94d42494ad', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 10348.17822962358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0230f9d258d838128c9f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:07:25.000Z'}}, {'blockNum': '0x7d22cd', 'uniqueId': '0xda21be7da6754bf8adaa1447dc3a69be9c60ea96640d7e52bedd0322e92a429e:log:8', 'hash': '0xda21be7da6754bf8adaa1447dc3a69be9c60ea96640d7e52bedd0322e92a429e', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'value': 10348.17822962358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0230f9d258d838128c9f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:07:49.000Z'}}, {'blockNum': '0x7d22d2', 'uniqueId': '0x8e119e5186a7c97544f0c1489606a47b6bcbd7fa974d8daf8bba7aad0b48435d:log:36', 'hash': '0x8e119e5186a7c97544f0c1489606a47b6bcbd7fa974d8daf8bba7aad0b48435d', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 7221.327391519694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0187780c9a5ad986e7bf', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:09:16.000Z'}}, {'blockNum': '0x7d22da', 'uniqueId': '0x059934efddba98aac8ba96b97c7675b6d767d880960b338801689694b2c1a56a:log:47', 'hash': '0x059934efddba98aac8ba96b97c7675b6d767d880960b338801689694b2c1a56a', 'from': '0x9ef4acc2fd5cde01ece05bd4e44732a023ed7845', 'to': '0x55d3fd92e3a3ae0f8c15442151c73fb4e585b9db', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:10:10.000Z'}}, {'blockNum': '0x7d22db', 'uniqueId': '0xf309bf5ed2658f310835725e120815458568b58c906505809ccfac8431501ec2:log:13', 'hash': '0xf309bf5ed2658f310835725e120815458568b58c906505809ccfac8431501ec2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 84276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11d89c71fe9d84500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:11:12.000Z'}}, {'blockNum': '0x7d22de', 'uniqueId': '0xccad8bb9623286a8d0183fde4636b11020384e80183f5258047c74842ca5d95d:log:15', 'hash': '0xccad8bb9623286a8d0183fde4636b11020384e80183f5258047c74842ca5d95d', 'from': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 10348.17822962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0230f9d258d762bd8800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:11:44.000Z'}}, {'blockNum': '0x7d22e2', 'uniqueId': '0xc95b4b8d63a5ab79802b03f1a8de35f1de1c2de9bf992d18641650b4e351da32:log:1', 'hash': '0xc95b4b8d63a5ab79802b03f1a8de35f1de1c2de9bf992d18641650b4e351da32', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x838cb29d3f92995e02ab1cd91a475c79776ab624', 'value': 9854.35263397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0216349d65ff70cdf400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:12:30.000Z'}}, {'blockNum': '0x7d22e5', 'uniqueId': '0x8a33a3299d2fe2c2b9417eb447d704c90bbc914999b7d072b1f1de87a19a2906:log:4', 'hash': '0x8a33a3299d2fe2c2b9417eb447d704c90bbc914999b7d072b1f1de87a19a2906', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 199139.66264402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a2b61fb7795a24f0800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:13:15.000Z'}}, {'blockNum': '0x7d22e6', 'uniqueId': '0xb0656617b98dfdf8874b51b697b66e17b0727dd200f46b1948b41cb8aef6011f:log:5', 'hash': '0xb0656617b98dfdf8874b51b697b66e17b0727dd200f46b1948b41cb8aef6011f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 76747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10407694b4f7884c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:13:24.000Z'}}, {'blockNum': '0x7d22ef', 'uniqueId': '0x4c85490ce658f7c3dc6c5bb9d089b2a91f30534a3265e935ce8deee88d47caa3:log:0', 'hash': '0x4c85490ce658f7c3dc6c5bb9d089b2a91f30534a3265e935ce8deee88d47caa3', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:15:54.000Z'}}, {'blockNum': '0x7d22ef', 'uniqueId': '0x1f3a7607634c6cfba343cbad14d98c0c96edc67623065ada7a9674a1f9a19291:log:93', 'hash': '0x1f3a7607634c6cfba343cbad14d98c0c96edc67623065ada7a9674a1f9a19291', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x9ef4acc2fd5cde01ece05bd4e44732a023ed7845', 'value': 471.4439997074287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x198e998beaa2a5da7e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:15:54.000Z'}}, {'blockNum': '0x7d22f2', 'uniqueId': '0xaa4092fbf6294d90de3e04bac3fff8c7f6090f62cb08ecbaa63addeed3f64ed3:log:79', 'hash': '0xaa4092fbf6294d90de3e04bac3fff8c7f6090f62cb08ecbaa63addeed3f64ed3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1a2006f9b683a20b684df6dc7a781d390793083d', 'value': 184973.3125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x272b6c6188235e634000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:16:18.000Z'}}, {'blockNum': '0x7d22f8', 'uniqueId': '0x97eeaf5f240b3e4ffac87278263373527b881e951b8e793f4a26c306e7ed8f84:log:18', 'hash': '0x97eeaf5f240b3e4ffac87278263373527b881e951b8e793f4a26c306e7ed8f84', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 28942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0620f2ef4ab64b780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:17:56.000Z'}}, {'blockNum': '0x7d22f8', 'uniqueId': '0x7269b7cfbd6d57b4bc959b9cd8bc142bb7182e65ffd5cc23148c90512cf9d809:log:33', 'hash': '0x7269b7cfbd6d57b4bc959b9cd8bc142bb7182e65ffd5cc23148c90512cf9d809', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'value': 482060.36553999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x66148b76a9578bd65c00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:17:56.000Z'}}, {'blockNum': '0x7d22f8', 'uniqueId': '0x78df3b627bc20c918461569619118c9c95a3b1ea90460c3103a2aab9ae4dda49:log:100', 'hash': '0x78df3b627bc20c918461569619118c9c95a3b1ea90460c3103a2aab9ae4dda49', 'from': '0x9ef4acc2fd5cde01ece05bd4e44732a023ed7845', 'to': '0x55d3fd92e3a3ae0f8c15442151c73fb4e585b9db', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:17:56.000Z'}}, {'blockNum': '0x7d230d', 'uniqueId': '0x146eb06894a6122e924141f1cb5e44aba79276497479660cdd6b4090e0e16001:log:23', 'hash': '0x146eb06894a6122e924141f1cb5e44aba79276497479660cdd6b4090e0e16001', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 161023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x22191306b3950c9c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:22:52.000Z'}}, {'blockNum': '0x7d230d', 'uniqueId': '0x1242a634a7e2b59a48c79610712ca6ce92b43723f24e7cfc235c3965fc4b7e9d:log:28', 'hash': '0x1242a634a7e2b59a48c79610712ca6ce92b43723f24e7cfc235c3965fc4b7e9d', 'from': '0xe81c65a55d60021c8bd0dc269ed2732780b5d238', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 681200.02818401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x903fed7220ed2e256400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:22:52.000Z'}}, {'blockNum': '0x7d2318', 'uniqueId': '0xe2b5db49ca35252ab5a4f11b7941ac563acf55e3c9f202781efb6bd2386b2134:log:3', 'hash': '0xe2b5db49ca35252ab5a4f11b7941ac563acf55e3c9f202781efb6bd2386b2134', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 160815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x220dcc72419d0b5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:26:45.000Z'}}, {'blockNum': '0x7d231b', 'uniqueId': '0xe489c0e1f263a5ec8e8dae1befb42eecfac10aa9789ab37da9521b5f0aec3e4e:log:69', 'hash': '0xe489c0e1f263a5ec8e8dae1befb42eecfac10aa9789ab37da9521b5f0aec3e4e', 'from': '0x291ecf7620e7e7f417ad38f744f432758987811e', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 20342.7380546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x044ec833c03695efd000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:27:26.000Z'}}, {'blockNum': '0x7d231b', 'uniqueId': '0x92c37c198d92ae9e7ae7e353d37d439cd105fdab1de5f416a2b4b786bc602606:log:70', 'hash': '0x92c37c198d92ae9e7ae7e353d37d439cd105fdab1de5f416a2b4b786bc602606', 'from': '0xa3481db70972104078ca053de4572965ccb34876', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 30702.9231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x068068a6e0644321c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:27:26.000Z'}}, {'blockNum': '0x7d231b', 'uniqueId': '0xcc11f6f2ccc6c951656b1ea5528999c2c1fc733fd4bd2926cce8ba096aae9b31:log:71', 'hash': '0xcc11f6f2ccc6c951656b1ea5528999c2c1fc733fd4bd2926cce8ba096aae9b31', 'from': '0x7006b9be247be34c038ed8b29f379b6996511702', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 10002.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e37cffdcd0ec48000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:27:26.000Z'}}, {'blockNum': '0x7d231b', 'uniqueId': '0x5f293a39ea8bc57a567be6ac8a7ba1df64f71dc72577f0c88475cbe597574768:log:72', 'hash': '0x5f293a39ea8bc57a567be6ac8a7ba1df64f71dc72577f0c88475cbe597574768', 'from': '0x28b5ae58c1bbd3956d5b3ab54e46815323b22a50', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 9383.8268182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01fcb2c1e581f30ff000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:27:26.000Z'}}, {'blockNum': '0x7d231b', 'uniqueId': '0x5698b308ba3792827b7586ed809f571eec7e32002cd993c511059b9e66165907:log:75', 'hash': '0x5698b308ba3792827b7586ed809f571eec7e32002cd993c511059b9e66165907', 'from': '0x5b31838db1e57cda84810df14710ad3959e74d33', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 10000.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e1c0e9065bffc8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:27:26.000Z'}}, {'blockNum': '0x7d231b', 'uniqueId': '0xd6c67bc68219e39c1a11a5ff22b04f0cd3fcb5b12b02646531acaf916198da28:log:82', 'hash': '0xd6c67bc68219e39c1a11a5ff22b04f0cd3fcb5b12b02646531acaf916198da28', 'from': '0x7fa694e8533586417218257b87b4a2bb79438a58', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 10000.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e1c0e9065bffc8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:27:26.000Z'}}, {'blockNum': '0x7d231e', 'uniqueId': '0x22585cad17e7a3212001ee1de860d981a1c15fa82f3be21c2bb9e7e3cec1460f:log:24', 'hash': '0x22585cad17e7a3212001ee1de860d981a1c15fa82f3be21c2bb9e7e3cec1460f', 'from': '0x31d1d2a27986b4afa2b2736ca645e246b731139d', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 60002.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4b933ee728a048000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:09.000Z'}}, {'blockNum': '0x7d231e', 'uniqueId': '0xa9786b6f6ad7e87cda9df10ca0584c7c524ea62888f534bbdcff882cfa593c79:log:29', 'hash': '0xa9786b6f6ad7e87cda9df10ca0584c7c524ea62888f534bbdcff882cfa593c79', 'from': '0xcb1a622c00a56c79daf1e9c4cdee2a6025ba7f05', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 19999.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c30fb0884a96c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:09.000Z'}}, {'blockNum': '0x7d231e', 'uniqueId': '0x3740aaee6db7e36a9077269ba65a08bf36c3b5f3043b47d1d55de9097be7341f:log:32', 'hash': '0x3740aaee6db7e36a9077269ba65a08bf36c3b5f3043b47d1d55de9097be7341f', 'from': '0x88ab04d3efdc55d0a0fe2a310a109c2ac835f371', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 69616.302736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebde846ff6986790000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:09.000Z'}}, {'blockNum': '0x7d231e', 'uniqueId': '0xcc56d37dd28841649a2c6eb47e0a2b5f1f07a51f83bb13cf872283557ce2d092:log:43', 'hash': '0xcc56d37dd28841649a2c6eb47e0a2b5f1f07a51f83bb13cf872283557ce2d092', 'from': '0x72dc38f8b9fcccbeb3c99e887582d3f60d85243e', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 49967.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a94b99a2a27f5188000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:09.000Z'}}, {'blockNum': '0x7d231e', 'uniqueId': '0x0d92fd64a094a7fdf3e888bf803f70803193bd40234bb1f1318f9d83ea98cf85:log:72', 'hash': '0x0d92fd64a094a7fdf3e888bf803f70803193bd40234bb1f1318f9d83ea98cf85', 'from': '0x89792643d7b45e2ad494b315c347e297efbea124', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:09.000Z'}}, {'blockNum': '0x7d231f', 'uniqueId': '0x268dcae3dbe24e4b9c836dc95a89ef0ab27cbd6e2689e7fd876235fa9b1d68d9:log:170', 'hash': '0x268dcae3dbe24e4b9c836dc95a89ef0ab27cbd6e2689e7fd876235fa9b1d68d9', 'from': '0xdf48316f42614c95c06a9b20614587a54e866b28', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 9911.4328914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02194cc335b4cbce5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:13.000Z'}}, {'blockNum': '0x7d231f', 'uniqueId': '0x80f83fe06b6444d0d19b6b6dbaa0d32d1042e6fe359b47494d77e880aa848789:log:173', 'hash': '0x80f83fe06b6444d0d19b6b6dbaa0d32d1042e6fe359b47494d77e880aa848789', 'from': '0xfa7694202625fa56bd49ca5875be6aa4d4d724bf', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 9935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021a93d2661d31dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:13.000Z'}}, {'blockNum': '0x7d231f', 'uniqueId': '0x7416925718499aa10333b5dd3248739217744bde70436b6ce40f18e7e905ade3:log:188', 'hash': '0x7416925718499aa10333b5dd3248739217744bde70436b6ce40f18e7e905ade3', 'from': '0x72a7297bec8a6930ef9e1a552e12e001f24c2ca1', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 26730.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05a90b72690efd248000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:13.000Z'}}, {'blockNum': '0x7d231f', 'uniqueId': '0xb54b745170233cba08325cf105acfcf15bf4e2f43dce8cbe4776bc60b70c1cac:log:190', 'hash': '0xb54b745170233cba08325cf105acfcf15bf4e2f43dce8cbe4776bc60b70c1cac', 'from': '0x6eae9e8f87dac8a247ff4d130675383805505f44', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:13.000Z'}}, {'blockNum': '0x7d231f', 'uniqueId': '0x2909277e321dd97947fb4e72bae42d027367a5fb4eea4fbcaa559ab1dc4cd850:log:192', 'hash': '0x2909277e321dd97947fb4e72bae42d027367a5fb4eea4fbcaa559ab1dc4cd850', 'from': '0xf7e75c27214517cf12cd33559de46c91bfdebb7c', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 10058.7412842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02214913c07c09841000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:13.000Z'}}, {'blockNum': '0x7d231f', 'uniqueId': '0xce7e8a72204477e35ab86cc3fd8f1a3eab1734ae795addd1669610f725562fe9:log:196', 'hash': '0xce7e8a72204477e35ab86cc3fd8f1a3eab1734ae795addd1669610f725562fe9', 'from': '0x5cf9dffc598b3aa74b558d94022331ab6d89ed9e', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 38000.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x080bfe1d920a197c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:28:13.000Z'}}, {'blockNum': '0x7d2324', 'uniqueId': '0x56d9bae216cfe403a055ccdbea9e78fed38946fcbd68c02b1d2ae1e129075687:log:57', 'hash': '0x56d9bae216cfe403a055ccdbea9e78fed38946fcbd68c02b1d2ae1e129075687', 'from': '0x4c14788d2f1eb1e2eafdbaf62d6f8ca4a0c57dff', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 10014.3690066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021ee149c11a0a7e5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:29:42.000Z'}}, {'blockNum': '0x7d2324', 'uniqueId': '0xde6eb4758c8185e847429e445b50cd058f03d1130edb8903b0d0d08abaae23a0:log:71', 'hash': '0xde6eb4758c8185e847429e445b50cd058f03d1130edb8903b0d0d08abaae23a0', 'from': '0xd670501b4f97c1e66da14a8a0bafd9140bc74e02', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 10000.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e1c0e9065bffc8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:29:42.000Z'}}, {'blockNum': '0x7d2324', 'uniqueId': '0x050bcb95419e8d7ca1fb8d969a8e55119deee935004c0423558a01c69c1f2783:log:90', 'hash': '0x050bcb95419e8d7ca1fb8d969a8e55119deee935004c0423558a01c69c1f2783', 'from': '0x5b6e6c1036599c0b729f08b848868795354cd16e', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 10000.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e1c0e9065bffc8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:29:42.000Z'}}, {'blockNum': '0x7d2324', 'uniqueId': '0x0a772f9abfacb83ae887002dc056e2b490af2dff5ebd61d61d8c67db3f887252:log:93', 'hash': '0x0a772f9abfacb83ae887002dc056e2b490af2dff5ebd61d61d8c67db3f887252', 'from': '0x9ec94219b534d84b48fbe211417cc3f8b7b195b4', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 18883.0743324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03ffa74c7a808e796000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:29:42.000Z'}}, {'blockNum': '0x7d2324', 'uniqueId': '0x0574b3809a847c29fe3550b5be4ce071cef57a988090f4ae768917971af3555d:log:95', 'hash': '0x0574b3809a847c29fe3550b5be4ce071cef57a988090f4ae768917971af3555d', 'from': '0x0dd0bf8e827735227a424e080d4142bd9ae3d1fa', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 10000.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e1c0e9065bffc8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:29:42.000Z'}}, {'blockNum': '0x7d2329', 'uniqueId': '0xcb5d3d1756cbd578c53e643068b4a4c2f4102d51c403211facb3261a0e3450bf:log:34', 'hash': '0xcb5d3d1756cbd578c53e643068b4a4c2f4102d51c403211facb3261a0e3450bf', 'from': '0x2b4c933eed600851b4a244e8ac06428c694d32ec', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 19016.981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0406e9a0873768c88000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:30:52.000Z'}}, {'blockNum': '0x7d2329', 'uniqueId': '0x777681a5b34d6e09947ea283c3ff7ce920bbb8aa1ed26f05d82a310f5f4d6021:log:39', 'hash': '0x777681a5b34d6e09947ea283c3ff7ce920bbb8aa1ed26f05d82a310f5f4d6021', 'from': '0x530b1a951e44c2cb7fe8ceeaf5a1937002b0554e', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10000.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e1c0e9065bffc8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:30:52.000Z'}}, {'blockNum': '0x7d2329', 'uniqueId': '0xd43d0eacf5a380b8ae3d15766c7848beae62bc6660a3c5138e7dea194c8b4da1:log:41', 'hash': '0xd43d0eacf5a380b8ae3d15766c7848beae62bc6660a3c5138e7dea194c8b4da1', 'from': '0x2c0c95314efd6df65cb68a38195614d224ea9d62', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 9771.635247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0211b8ae34cdd96df000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:30:52.000Z'}}, {'blockNum': '0x7d232c', 'uniqueId': '0x8a11b69502f91cbf50a37db4b4657007806648caa8cff262154a9ae90a781bd6:log:74', 'hash': '0x8a11b69502f91cbf50a37db4b4657007806648caa8cff262154a9ae90a781bd6', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x73f14d3e4ccc2e4d61b149b7df6e73122fddf491', 'value': 9930.6649518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021a57a936be84a9b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:31:18.000Z'}}, {'blockNum': '0x7d232d', 'uniqueId': '0xb0853caa12a718531fdd33c148ea8852f67d91de0b8d2e27a85b2832427a48d6:log:28', 'hash': '0xb0853caa12a718531fdd33c148ea8852f67d91de0b8d2e27a85b2832427a48d6', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x2b7294c13790ec366449ce8fa48913d0063b252b', 'value': 399.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x15ac6e057c00364000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:31:55.000Z'}}, {'blockNum': '0x7d2334', 'uniqueId': '0xa64142512e7c3d1cee80cffd891ea6715f04e720860fb42a817f62a058e367e3:log:99', 'hash': '0xa64142512e7c3d1cee80cffd891ea6715f04e720860fb42a817f62a058e367e3', 'from': '0xb8cfdfab30e92e3984f40ee471967ad7a9bccf4c', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 10001.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e29ef471967608000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:33:47.000Z'}}, {'blockNum': '0x7d2335', 'uniqueId': '0xd214c2f4d6a9d896763ff5041b65a0b38573e0c438ee0fbfddaa3ab3dbab1efd:log:24', 'hash': '0xd214c2f4d6a9d896763ff5041b65a0b38573e0c438ee0fbfddaa3ab3dbab1efd', 'from': '0x09887a4d26b5e96ab4c8c5907dfd629ba85d8d50', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 9917.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02199c3354267a908000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:33:57.000Z'}}, {'blockNum': '0x7d2335', 'uniqueId': '0xd96ea4359e7a86837900b51d2ed7c3681085d22f6513e69ae2320d34331e97c2:log:45', 'hash': '0xd96ea4359e7a86837900b51d2ed7c3681085d22f6513e69ae2320d34331e97c2', 'from': '0x650c74c89cd6ffe094d7ae3a9d1585f0ff485531', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10016.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021eff3ab5eb0abe4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:33:57.000Z'}}, {'blockNum': '0x7d2335', 'uniqueId': '0x75c38ed40835d670e7882a2f5333e79b6d8b45bdbfea1186f25f604b1d8c3202:log:58', 'hash': '0x75c38ed40835d670e7882a2f5333e79b6d8b45bdbfea1186f25f604b1d8c3202', 'from': '0x163ed13860be7cabc7cdd0c13ff4333da9e2b5dd', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 30016.6835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065b352a100b7cfac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:33:57.000Z'}}, {'blockNum': '0x7d2335', 'uniqueId': '0x061ac693c5ef18d78a2f996ad6ac4a85c5d7a8895bad9cf3cfd1aa562633efaa:log:91', 'hash': '0x061ac693c5ef18d78a2f996ad6ac4a85c5d7a8895bad9cf3cfd1aa562633efaa', 'from': '0x7dc132515397ac300275d0380c2f4851ffd23bd8', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:33:57.000Z'}}, {'blockNum': '0x7d2335', 'uniqueId': '0x8c077896de5e21c397bbbdcd658daa75dae012d011625a5d10e16d3ec63a4bd1:log:96', 'hash': '0x8c077896de5e21c397bbbdcd658daa75dae012d011625a5d10e16d3ec63a4bd1', 'from': '0x5452af29a86da0e637a5a5594d6c85905f9d6971', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:33:57.000Z'}}, {'blockNum': '0x7d2335', 'uniqueId': '0x7c2c0253627521a4b6299e6afa5b978b189e76d42398b7df3e15925336075e29:log:97', 'hash': '0x7c2c0253627521a4b6299e6afa5b978b189e76d42398b7df3e15925336075e29', 'from': '0xd79a57013cb2a2629b19dcba67fe7c3679740ba1', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:33:57.000Z'}}, {'blockNum': '0x7d2335', 'uniqueId': '0x5aa86403c29cd099f286c03559d9cc88aea5865a4aa3dc8b9d3caeea6c277eda:log:100', 'hash': '0x5aa86403c29cd099f286c03559d9cc88aea5865a4aa3dc8b9d3caeea6c277eda', 'from': '0x7e1c01d2e93f9c70042e90cf3b499af614cd23cb', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 60167.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cbdab09b03d6d788000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:33:57.000Z'}}, {'blockNum': '0x7d2336', 'uniqueId': '0xd4e8e1f7047c854518a3cb9ef90093f6bad6cc352ff79f5dbea90a96f7aca147:log:69', 'hash': '0xd4e8e1f7047c854518a3cb9ef90093f6bad6cc352ff79f5dbea90a96f7aca147', 'from': '0xe7a8f34bd006b7a0ee486bcbc46e39bc6d7e7f44', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 46829.4015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x09eaa07f47727ce5c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:34:04.000Z'}}, {'blockNum': '0x7d2336', 'uniqueId': '0xd0b53eb3621b6ced363b3a87e1807f862613bd87b4c732cb0dfdd8b33896849e:log:84', 'hash': '0xd0b53eb3621b6ced363b3a87e1807f862613bd87b4c732cb0dfdd8b33896849e', 'from': '0x33cc59ce97a2808a0dee17c8bfff418f3466b258', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 40215.5251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x088416861f77598ac000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:34:04.000Z'}}, {'blockNum': '0x7d2336', 'uniqueId': '0xcf10beb8a570ed17511b32943ebf0ebc39ffee78d79abdbd79840b0463912d5b:log:93', 'hash': '0xcf10beb8a570ed17511b32943ebf0ebc39ffee78d79abdbd79840b0463912d5b', 'from': '0x53894910fbac2acb040c538fe0e2dfcaae1d5c8b', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 39887.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x087249804848f3988000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:34:04.000Z'}}, {'blockNum': '0x7d2337', 'uniqueId': '0x0759b5dd1ec97b5db5210eb90c7cb208399ec2c99f5293671ada80e20d1fb3b3:log:39', 'hash': '0x0759b5dd1ec97b5db5210eb90c7cb208399ec2c99f5293671ada80e20d1fb3b3', 'from': '0xfd6c499d7f4c0ecebd5fecf0fe0983be39fa93cf', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 30000.314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065a51fdea8632390000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:34:13.000Z'}}, {'blockNum': '0x7d2337', 'uniqueId': '0xa6b6f2cd0f2358478adbb1ab2da41fb6220b2322e7ff764f52ef8656ad4a185b:log:75', 'hash': '0xa6b6f2cd0f2358478adbb1ab2da41fb6220b2322e7ff764f52ef8656ad4a185b', 'from': '0xd38cdc186700c35c28ef2f9c667e0a93c40bb288', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 69312.6942682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ead72dd0a88e2d99000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:34:13.000Z'}}, {'blockNum': '0x7d2337', 'uniqueId': '0x7a429b9ee3e5b9eba589ca7c2320bce3e6d075a4dc2921da6a78aaeb844176a3:log:78', 'hash': '0x7a429b9ee3e5b9eba589ca7c2320bce3e6d075a4dc2921da6a78aaeb844176a3', 'from': '0x707392b7acff04b7d66e96a4d5d152265b182df1', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 10001.157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e29ef471967608000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:34:13.000Z'}}, {'blockNum': '0x7d2338', 'uniqueId': '0xc4b24882eef16006e7c35fbca1fe0f5ab811abea871ec6047fb8319f7eec15cc:log:19', 'hash': '0xc4b24882eef16006e7c35fbca1fe0f5ab811abea871ec6047fb8319f7eec15cc', 'from': '0xcae2ed036bbd5ea8f2e0bfbe6a032102ec789d1a', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 30757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0683571e9e6e11740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:34:33.000Z'}}, {'blockNum': '0x7d2339', 'uniqueId': '0xf777b50a7b69fe6dfe0135d65fc0415fbc21278facef1102d15470cd5b63f2a1:log:70', 'hash': '0xf777b50a7b69fe6dfe0135d65fc0415fbc21278facef1102d15470cd5b63f2a1', 'from': '0x4ac96384123455de83843a6e33f9693187120d69', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 9980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021d045283b19e700000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:34:52.000Z'}}, {'blockNum': '0x7d233d', 'uniqueId': '0xa203b9e9cb50e0df68ca9e50e7132c62bfeeae721ab35fc4bb905050906f92b2:log:10', 'hash': '0xa203b9e9cb50e0df68ca9e50e7132c62bfeeae721ab35fc4bb905050906f92b2', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:35:32.000Z'}}, {'blockNum': '0x7d233e', 'uniqueId': '0x7ad7a0663ed43ffe7fdf0a0e8f5376754c5ee59f43ef2c7766dd5805265cf0e0:log:99', 'hash': '0x7ad7a0663ed43ffe7fdf0a0e8f5376754c5ee59f43ef2c7766dd5805265cf0e0', 'from': '0x3095dbbafd5a1960f8873663f77f880948122268', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 10016.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021eff3ab5eb0abe4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:36:04.000Z'}}, {'blockNum': '0x7d233f', 'uniqueId': '0x8e0d8b658b9563e2494fbbfa58d39b5c4096713c68e5b766c0a51934d08dbc6d:log:108', 'hash': '0x8e0d8b658b9563e2494fbbfa58d39b5c4096713c68e5b766c0a51934d08dbc6d', 'from': '0x00df4684f43e71f05623f2c366baf78854b90972', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 10316.2574562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022f3ed4fa8a13e8d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:36:28.000Z'}}, {'blockNum': '0x7d233f', 'uniqueId': '0xac46576946034640f91854524153d0198d10af4692ccfb0a10e88f61b1252ce1:log:110', 'hash': '0xac46576946034640f91854524153d0198d10af4692ccfb0a10e88f61b1252ce1', 'from': '0x23cf060d97bab0c5067c34040f057c7a6f875a8e', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 10362.5763328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0231c1a2af662e100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:36:28.000Z'}}, {'blockNum': '0x7d233f', 'uniqueId': '0x7c5f8848864e3a7a2d39f6fbdb66212fb5f03f37842a5796120fcbdf212334c7:log:111', 'hash': '0x7c5f8848864e3a7a2d39f6fbdb66212fb5f03f37842a5796120fcbdf212334c7', 'from': '0x45129ccf35b262046c3dfa652b14d630d0e689f8', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 8600.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d23c482435299e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:36:28.000Z'}}, {'blockNum': '0x7d2341', 'uniqueId': '0x75b31ab80fa01271ae7e9abb7953534f9240c7f90ecf8c3b8a23d57090532300:log:46', 'hash': '0x75b31ab80fa01271ae7e9abb7953534f9240c7f90ecf8c3b8a23d57090532300', 'from': '0x1c20b0c5d0b7aa1d2bf4e122552ab9d1c8eb6643', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:36:54.000Z'}}, {'blockNum': '0x7d2343', 'uniqueId': '0x560f56923e619ddbe5b7a87345a84d8a8bac99e0f4dcf42c2252be06dff77eb8:log:13', 'hash': '0x560f56923e619ddbe5b7a87345a84d8a8bac99e0f4dcf42c2252be06dff77eb8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 39366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x085608feadfe3b580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:37:16.000Z'}}, {'blockNum': '0x7d2349', 'uniqueId': '0xf22aff0c9495c780bda2b7865a4d73b8ae1c7ab64897db4af0816ebb86d1b688:log:7', 'hash': '0xf22aff0c9495c780bda2b7865a4d73b8ae1c7ab64897db4af0816ebb86d1b688', 'from': '0x1a2006f9b683a20b684df6dc7a781d390793083d', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 184973.3125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x272b6c6188235e634000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:38:24.000Z'}}, {'blockNum': '0x7d234b', 'uniqueId': '0xa797183e6cdc679c790c58c8a3026237eabe99df7b893226a753d9f81a07581b:log:0', 'hash': '0xa797183e6cdc679c790c58c8a3026237eabe99df7b893226a753d9f81a07581b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 160750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x220a4663ddff8af80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:38:31.000Z'}}, {'blockNum': '0x7d2352', 'uniqueId': '0xb63dda90e8a4d853423c37fdf47e11c4e2b2cc32742594fece646b1b7f6b0573:log:158', 'hash': '0xb63dda90e8a4d853423c37fdf47e11c4e2b2cc32742594fece646b1b7f6b0573', 'from': '0x73f210fe4ef04461875738c825ef1506ebb99339', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 41435.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08c63971c8ebf8ca4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:39:50.000Z'}}, {'blockNum': '0x7d2354', 'uniqueId': '0xf1f376962901a7f430ae1d7268a17845d049b757b632ccfaa7990d66da49d140:log:27', 'hash': '0xf1f376962901a7f430ae1d7268a17845d049b757b632ccfaa7990d66da49d140', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x27ef8033f0ac7edf9f283ef8ba8c437e96d798fd', 'value': 311069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x41df159359cd92540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:40:17.000Z'}}, {'blockNum': '0x7d2356', 'uniqueId': '0xa0198c638a878244e721bbfb783767f83d589d7fa26f82ac64c01204849ac73b:log:32', 'hash': '0xa0198c638a878244e721bbfb783767f83d589d7fa26f82ac64c01204849ac73b', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 302476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x400d41beb577deb00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:05.000Z'}}, {'blockNum': '0x7d2358', 'uniqueId': '0xbd831561196443a55bb867f1f9cd44f8521d71028a733db103a4058b98d8cfa3:log:60', 'hash': '0xbd831561196443a55bb867f1f9cd44f8521d71028a733db103a4058b98d8cfa3', 'from': '0xb47c6dcca92e1822dcc6b94c7e9e87d4baf47c40', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 8680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d68b32bb6396a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:42.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0x4e76a99f467031b8e15ca46a296840f1689415a82a40852bba4adda14b0b6198:log:4', 'hash': '0x4e76a99f467031b8e15ca46a296840f1689415a82a40852bba4adda14b0b6198', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x2b7294c13790ec366449ce8fa48913d0063b252b', 'value': 9647.5793576, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020aff0f26abcb484000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0x780f13233a91a36815d2ba1a3c4e080394337f9f63670d18d039b519f7f2c8cc:log:71', 'hash': '0x780f13233a91a36815d2ba1a3c4e080394337f9f63670d18d039b519f7f2c8cc', 'from': '0x2f608005c6cf9a9372c71d8f20071f7edc9b9eed', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 10170.954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02275e5766f9e6610000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0x826870bf8c4b6e6bc9732f369900905bd477515c02f95d60aa90235d4dcd8337:log:73', 'hash': '0x826870bf8c4b6e6bc9732f369900905bd477515c02f95d60aa90235d4dcd8337', 'from': '0x940671914a8e94d5eec1882bf908144f3ae27384', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 10038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0220293be8658b180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0x2cae5851459a6c999e7fee5f43ace64790147cea91f063dcc755f92b436e9c45:log:75', 'hash': '0x2cae5851459a6c999e7fee5f43ace64790147cea91f063dcc755f92b436e9c45', 'from': '0x07c731cf3ed1dbdda90db649da15420b020aa0bc', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 59966.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb2cabaf779d4764000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0x35d5ed1e3ca6a9fb78120ca2f3e3f7afc13dddb53e97b8d76a96e3b71b5e2c4f:log:76', 'hash': '0x35d5ed1e3ca6a9fb78120ca2f3e3f7afc13dddb53e97b8d76a96e3b71b5e2c4f', 'from': '0x824b23312a58758710a557b6f132a83c274563e0', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0x3de3e8d1896d2c589a5b899aaa29d9a73bc08d3d81a390434b5f09606acb96df:log:79', 'hash': '0x3de3e8d1896d2c589a5b899aaa29d9a73bc08d3d81a390434b5f09606acb96df', 'from': '0x2235a41933e4d9ef4a1145d0112a37548d796d2c', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 9996.4265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021de8492a6999644000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0xc9d0a38ecbc019773bba47d48dad5a6fa788be6b66d9ddba37eaae1652298f53:log:84', 'hash': '0xc9d0a38ecbc019773bba47d48dad5a6fa788be6b66d9ddba37eaae1652298f53', 'from': '0xbbfba8e509242c45d926e5a380de3b6ec538b4c6', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 53727.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b609336531d565a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0xbcbe02a5ed34eb9a6f74350a68b09b0bcbc764b49c597481d78cf3d963612874:log:91', 'hash': '0xbcbe02a5ed34eb9a6f74350a68b09b0bcbc764b49c597481d78cf3d963612874', 'from': '0x46ff94cac22bb9fb3773b029345bef2c4ac28c58', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0x79ad8240cad3a58059d2df066d964d29f8430f9636f43f675ae7ba86cd3e625f:log:93', 'hash': '0x79ad8240cad3a58059d2df066d964d29f8430f9636f43f675ae7ba86cd3e625f', 'from': '0x8ba1a597ea57d6d69d1df41bf8ee3f9e0bb7cf17', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d2359', 'uniqueId': '0x4ecd0cccd0a79325a1dd090e29912b9840e96283a938bd9b8c123efa7daad988:log:100', 'hash': '0x4ecd0cccd0a79325a1dd090e29912b9840e96283a938bd9b8c123efa7daad988', 'from': '0x81b8d89a83883d13089ecdb898ac01b401e365ae', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 26177.9821018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x058b1c7b18b192a99000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:41:52.000Z'}}, {'blockNum': '0x7d235d', 'uniqueId': '0x951ec0922f8dd63bac3dbd550af1684f887416d260114a973d53fcdbbcec9f38:log:22', 'hash': '0x951ec0922f8dd63bac3dbd550af1684f887416d260114a973d53fcdbbcec9f38', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5090.570610428097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0113f5dbd72f72254983', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:42:44.000Z'}}, {'blockNum': '0x7d235d', 'uniqueId': '0x951ec0922f8dd63bac3dbd550af1684f887416d260114a973d53fcdbbcec9f38:log:26', 'hash': '0x951ec0922f8dd63bac3dbd550af1684f887416d260114a973d53fcdbbcec9f38', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 5090.570610428097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0113f5dbd72f72254983', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:42:44.000Z'}}, {'blockNum': '0x7d235d', 'uniqueId': '0xc7d76d894ce80ba12af28d4477eff0aee1f7aea367d0efdc483e883b57b10387:log:56', 'hash': '0xc7d76d894ce80ba12af28d4477eff0aee1f7aea367d0efdc483e883b57b10387', 'from': '0xda420e61fb10b8524db9c6b6266869263e9d1908', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 60000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a2933b560fbe4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:42:44.000Z'}}, {'blockNum': '0x7d235d', 'uniqueId': '0x6f63c51d3080a7ee9a4682f2aa241ec45e892f1baa80e97102834021774dba70:log:57', 'hash': '0x6f63c51d3080a7ee9a4682f2aa241ec45e892f1baa80e97102834021774dba70', 'from': '0x3d7808de06b4f74a9cd4e23554fe316f3157067d', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:42:44.000Z'}}, {'blockNum': '0x7d235f', 'uniqueId': '0xd4d3c7d7870f83d4ed84720603b641881ceee0449c27109d7fdc7f6f24984c1e:log:67', 'hash': '0xd4d3c7d7870f83d4ed84720603b641881ceee0449c27109d7fdc7f6f24984c1e', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 238452.62686262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x327e8af53363d1621800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:43:29.000Z'}}, {'blockNum': '0x7d2365', 'uniqueId': '0xeea77d495a9f092a1454163991386b0f483358cb0c46d5b73f059181addac91e:log:156', 'hash': '0xeea77d495a9f092a1454163991386b0f483358cb0c46d5b73f059181addac91e', 'from': '0xc0c35c5fd7df69d26a6a199cc3ba05cdc45e5ca2', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 10199.3655086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0228e8a15b846a55b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:45:08.000Z'}}, {'blockNum': '0x7d2366', 'uniqueId': '0xf30f54faaeabea25eca4a74e42750405cd1fd235b0d3d56112ead4cfe3c60b02:log:126', 'hash': '0xf30f54faaeabea25eca4a74e42750405cd1fd235b0d3d56112ead4cfe3c60b02', 'from': '0xcfea090bc68617a14f3e33e65cdd2435c99de9ae', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 1933.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x68ca7fd5bf0b2c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:45:12.000Z'}}, {'blockNum': '0x7d2367', 'uniqueId': '0x62b9073cd2b0c98bdc6bb26a21c1767a3cc16edf7735fb87b728f844bb28b164:log:62', 'hash': '0x62b9073cd2b0c98bdc6bb26a21c1767a3cc16edf7735fb87b728f844bb28b164', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0113edf0a00632480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:45:15.000Z'}}, {'blockNum': '0x7d2367', 'uniqueId': '0xbaf0a3a6c552b157e94638b1b55aed85a7502b6609caa16e894397579baea079:log:63', 'hash': '0xbaf0a3a6c552b157e94638b1b55aed85a7502b6609caa16e894397579baea079', 'from': '0x621190a2d1df027664a6451af1104d711435475c', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10006.4065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e72c93f8943ca4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:45:15.000Z'}}, {'blockNum': '0x7d2368', 'uniqueId': '0x057eb8cef683290a67c090ad6bacb46dc30958445d4e41d087b68574832d2fdd:log:0', 'hash': '0x057eb8cef683290a67c090ad6bacb46dc30958445d4e41d087b68574832d2fdd', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:45:22.000Z'}}, {'blockNum': '0x7d2369', 'uniqueId': '0xa4369377b5972275ef3a83c09d00faa41241bfcd233ad637e4af536a7c1c1171:log:17', 'hash': '0xa4369377b5972275ef3a83c09d00faa41241bfcd233ad637e4af536a7c1c1171', 'from': '0x7c9b48c1692ed025748c91ce68c9edc855eb7c92', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:45:48.000Z'}}, {'blockNum': '0x7d2369', 'uniqueId': '0xb4662d5b0350fa6f747f51e2a96ceb40c621adaa21558d6e405f97139d83aa06:log:21', 'hash': '0xb4662d5b0350fa6f747f51e2a96ceb40c621adaa21558d6e405f97139d83aa06', 'from': '0x298f8f04d56c84aca0cd32718ab363b9fe63bdb2', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 10001.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e2f1001643be24000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:45:48.000Z'}}, {'blockNum': '0x7d236a', 'uniqueId': '0x45ccf4cf19350374b449a70c97b7479b82f5c0071542e7f6b41b9a01d3d44ee1:log:73', 'hash': '0x45ccf4cf19350374b449a70c97b7479b82f5c0071542e7f6b41b9a01d3d44ee1', 'from': '0x8b35a9481b92ebae72b690f7efab738c12ec7f5b', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 21374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0486afd62bb1cf380000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:46:03.000Z'}}, {'blockNum': '0x7d236b', 'uniqueId': '0x420d7965d14399cadc7674a84589919fe61333bc0db72ffa0200dfdffe3526a4:log:123', 'hash': '0x420d7965d14399cadc7674a84589919fe61333bc0db72ffa0200dfdffe3526a4', 'from': '0x292d3e62034b77253504e351c72997aa02fce2ab', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 11842.7265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0281fed86e4bbd1a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:46:23.000Z'}}, {'blockNum': '0x7d236c', 'uniqueId': '0x4c7f585d7b06d12ee1c9ce181c1796eb37f7ee3663a9e8068c88aa47e31ad423:log:40', 'hash': '0x4c7f585d7b06d12ee1c9ce181c1796eb37f7ee3663a9e8068c88aa47e31ad423', 'from': '0x80a8c32ec3fd3df20cbb9e8d4906b623830e05c9', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 15384.053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0341f89f874b3e788000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:46:29.000Z'}}, {'blockNum': '0x7d236c', 'uniqueId': '0x2b4dc437803a4f931178697266ba5dec033e3edea9da8ae335ec35a5963723b9:log:67', 'hash': '0x2b4dc437803a4f931178697266ba5dec033e3edea9da8ae335ec35a5963723b9', 'from': '0x48a3bd3b86585a4425b8bde9a893725d7ce9a197', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 43903.2615054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x094c0025b1b67074b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:46:29.000Z'}}, {'blockNum': '0x7d236c', 'uniqueId': '0x7fa3c1031c23948d3d3a33a720ff42eccb264e264be30426dd38c526f303f2c9:log:76', 'hash': '0x7fa3c1031c23948d3d3a33a720ff42eccb264e264be30426dd38c526f303f2c9', 'from': '0xfcb463f6c66745834ecdef0214e8647a6dfc2469', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 40001.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08787cb25e9452a24000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:46:29.000Z'}}, {'blockNum': '0x7d236c', 'uniqueId': '0x40ee39603e9dedcbb1065f34cba48e2ad80fb97da7ce4008450249891fbac833:log:81', 'hash': '0x40ee39603e9dedcbb1065f34cba48e2ad80fb97da7ce4008450249891fbac833', 'from': '0x9d9ada728e15f15da231910b82e7caf0464009b0', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 60001.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4b073f209b7224000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:46:29.000Z'}}, {'blockNum': '0x7d236f', 'uniqueId': '0x605b780646cacf0916b016786006ce1362fb16016f639c095640cc29e4794f28:log:97', 'hash': '0x605b780646cacf0916b016786006ce1362fb16016f639c095640cc29e4794f28', 'from': '0xefc0f4b4c8ed800a71d94a06f9a8e81a9e1fd3c3', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 10001.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e2f1001643be24000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:47:31.000Z'}}, {'blockNum': '0x7d2370', 'uniqueId': '0x052e994372b29eeb2c6413ece415a9a44e4d10d3063d8b499bb56a839bfe34ae:log:51', 'hash': '0x052e994372b29eeb2c6413ece415a9a44e4d10d3063d8b499bb56a839bfe34ae', 'from': '0xbb8950ee3e1c1245852cc5bec714256de20c4ce8', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 40001.8398998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0878810bca097a4ff000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:47:37.000Z'}}, {'blockNum': '0x7d2370', 'uniqueId': '0xc09d6f49f82e58a5623f571839f0eafb4a7a899bccc8734e829275930c70fe0b:log:52', 'hash': '0xc09d6f49f82e58a5623f571839f0eafb4a7a899bccc8734e829275930c70fe0b', 'from': '0x2b16d468d5b41bfb9cc451c1c9abca9b0deb906c', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 40001.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08787cb25e9452a24000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:47:37.000Z'}}, {'blockNum': '0x7d2371', 'uniqueId': '0xc69a9ca6a6c28c214707243e7e68a516cf42cc15e7ec85d323c7e494ebe18760:log:75', 'hash': '0xc69a9ca6a6c28c214707243e7e68a516cf42cc15e7ec85d323c7e494ebe18760', 'from': '0x8361bab3c4fb39eff407797013436b079d54971f', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 10057.6110856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022139647ad88adf4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:47:46.000Z'}}, {'blockNum': '0x7d2374', 'uniqueId': '0xb8f1e3aafbb191a26785dbac6372cb46aa5f56e11eccf5b2ea6333d8125cba0a:log:4', 'hash': '0xb8f1e3aafbb191a26785dbac6372cb46aa5f56e11eccf5b2ea6333d8125cba0a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xedac51d7f5978b20b1efed554e00e518c9e71af7', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:48:11.000Z'}}, {'blockNum': '0x7d2375', 'uniqueId': '0x061ed70d60ca2e039f24cb1746f6f99e5b018ddd8e61c9cad5e1e3ef9cd14ccb:log:1', 'hash': '0x061ed70d60ca2e039f24cb1746f6f99e5b018ddd8e61c9cad5e1e3ef9cd14ccb', 'from': '0x1941a893b936a7bfdf4ebc727de876e056495f6e', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:48:30.000Z'}}, {'blockNum': '0x7d237e', 'uniqueId': '0xb7e6b7f06726d86b667845f540dd96bda53d06f94fbd510c5e8f6559a7fa00c1:log:103', 'hash': '0xb7e6b7f06726d86b667845f540dd96bda53d06f94fbd510c5e8f6559a7fa00c1', 'from': '0x974ec0b4bb30f19a148b37ba8a4173aeff7eabbd', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 51666.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0af0d9176ec2b6464000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:50:18.000Z'}}, {'blockNum': '0x7d2381', 'uniqueId': '0x77f3daab9bfc94b89c0123569a5e08cbb749e57a5c09fdeb9c198749899c9e72:log:3', 'hash': '0x77f3daab9bfc94b89c0123569a5e08cbb749e57a5c09fdeb9c198749899c9e72', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 218189.181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2e340f27e7aca96c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:50:37.000Z'}}, {'blockNum': '0x7d2383', 'uniqueId': '0xc512ef97db6a32c242094b45c9fecbc18b0d092f66d1608ba9d6edf1ada9bc81:log:2', 'hash': '0xc512ef97db6a32c242094b45c9fecbc18b0d092f66d1608ba9d6edf1ada9bc81', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 238452.62686262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x327e8af53363d1621800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:51:04.000Z'}}, {'blockNum': '0x7d2383', 'uniqueId': '0x35ba771b3aad63fe562ff1cb11de769927ddcbc22f9c58183cbf995b525eba56:log:90', 'hash': '0x35ba771b3aad63fe562ff1cb11de769927ddcbc22f9c58183cbf995b525eba56', 'from': '0x960d63bbc6994de8848127789925ed258c57eaa7', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 52966.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0b3752373710be164000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:51:04.000Z'}}, {'blockNum': '0x7d2384', 'uniqueId': '0x70428265e2a3e821c9b33cf28aedd89468a8461361445a3af7319b8539dccdcf:log:9', 'hash': '0x70428265e2a3e821c9b33cf28aedd89468a8461361445a3af7319b8539dccdcf', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0113edf0a00632480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:51:10.000Z'}}, {'blockNum': '0x7d238c', 'uniqueId': '0x0525d8390bd0943e5a4af0f329d363948984e564853ce4efac7e0e8689eb45b8:log:1', 'hash': '0x0525d8390bd0943e5a4af0f329d363948984e564853ce4efac7e0e8689eb45b8', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x1b0bd9d699a42567efc083a272ad334c484250e5', 'value': 10176.0818344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0227a5812131cd684000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:52:19.000Z'}}, {'blockNum': '0x7d2390', 'uniqueId': '0x732e106faf95860a98e2de2e57a6fb3a60f2eac2a6d0f796854b344f8d26f2d9:log:8', 'hash': '0x732e106faf95860a98e2de2e57a6fb3a60f2eac2a6d0f796854b344f8d26f2d9', 'from': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:52:53.000Z'}}, {'blockNum': '0x7d2390', 'uniqueId': '0x24cf6e66de2788f8c63159cb1176edb01ed6f7370b8ddcfdb1f4236edf2fe395:log:12', 'hash': '0x24cf6e66de2788f8c63159cb1176edb01ed6f7370b8ddcfdb1f4236edf2fe395', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 160750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x220a4663ddff8af80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:52:53.000Z'}}, {'blockNum': '0x7d2394', 'uniqueId': '0x1c1225313490a0bac36f7336780214a4f1a5e7d43e6da2a3e83887ce95f5ca03:log:77', 'hash': '0x1c1225313490a0bac36f7336780214a4f1a5e7d43e6da2a3e83887ce95f5ca03', 'from': '0x0ab40a7fc9c01cc772197daa9fb1b3ca31ea8183', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 10904.299685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x024f1f8ea60d3ce35000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:53:50.000Z'}}, {'blockNum': '0x7d2394', 'uniqueId': '0x1e176f547b6cc5d9a66189e25c5e93ec4e394624298cb42a7e71dc7557bedc81:log:78', 'hash': '0x1e176f547b6cc5d9a66189e25c5e93ec4e394624298cb42a7e71dc7557bedc81', 'from': '0x80c45c34a23d572a1c84dfced222e9e6b59953cf', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 44195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x095bd0d508dac4ac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:53:50.000Z'}}, {'blockNum': '0x7d2394', 'uniqueId': '0x04278728272c3bbce346439336a03313e55a5f38891128c69b6b931ec1f55464:log:119', 'hash': '0x04278728272c3bbce346439336a03313e55a5f38891128c69b6b931ec1f55464', 'from': '0x459f406c75dc95e457b6eb01291abd35c77c2811', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 6240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x015245655b1025800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:53:50.000Z'}}, {'blockNum': '0x7d2396', 'uniqueId': '0xb114b970f6259ad42d03a959d567abc987846f03a6d335553c14cd7aa4af1a35:log:36', 'hash': '0xb114b970f6259ad42d03a959d567abc987846f03a6d335553c14cd7aa4af1a35', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'value': 319474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x43a6b861d23458880000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:54:04.000Z'}}, {'blockNum': '0x7d239c', 'uniqueId': '0x38daac0a0838d619ead1f172fec28364a03900403f941b6660c2b085b9e6e18c:log:10', 'hash': '0x38daac0a0838d619ead1f172fec28364a03900403f941b6660c2b085b9e6e18c', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 8266.666666666666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01c0230bbea7fd2aaaaa', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:55:13.000Z'}}, {'blockNum': '0x7d239c', 'uniqueId': '0x38daac0a0838d619ead1f172fec28364a03900403f941b6660c2b085b9e6e18c:log:12', 'hash': '0x38daac0a0838d619ead1f172fec28364a03900403f941b6660c2b085b9e6e18c', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 8266.666666666666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01c0230bbea7fd2aaaaa', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:55:13.000Z'}}, {'blockNum': '0x7d239e', 'uniqueId': '0x9691dbe772e8d2b41678aef878b69d5a2d9b205893f5370aaf2154893ac82f42:log:79', 'hash': '0x9691dbe772e8d2b41678aef878b69d5a2d9b205893f5370aaf2154893ac82f42', 'from': '0x567f45046eb12ef2321da965c93b087216baa6e4', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 2840.3613616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x99f9eea97ee8d78000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:55:34.000Z'}}, {'blockNum': '0x7d23a0', 'uniqueId': '0x947ee3d8a45c2a56e88748e0435390c78e3af3d1a14d0c4147124db7e74c012a:log:37', 'hash': '0x947ee3d8a45c2a56e88748e0435390c78e3af3d1a14d0c4147124db7e74c012a', 'from': '0xedac51d7f5978b20b1efed554e00e518c9e71af7', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:55:54.000Z'}}, {'blockNum': '0x7d23a6', 'uniqueId': '0xb5ce57ee0966c410b2d26c5e0448b26ee2c541b9c30c4a413ba317fa9ec00fcd:log:28', 'hash': '0xb5ce57ee0966c410b2d26c5e0448b26ee2c541b9c30c4a413ba317fa9ec00fcd', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8e0841d5b9ea9d7cb947fd1a112dcc333e929272', 'value': 10476.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0237f2e5c3400b8a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:56:53.000Z'}}, {'blockNum': '0x7d23ab', 'uniqueId': '0x3cf2dc05d3e3cd645bfc0005d469c31a5669d6b1e2a9ea4d8bb6715b1d6c4e2e:log:115', 'hash': '0x3cf2dc05d3e3cd645bfc0005d469c31a5669d6b1e2a9ea4d8bb6715b1d6c4e2e', 'from': '0xc67000b41bb451e57e3f05a2ab3db22509448d4e', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 60535.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd19f5e46fe8e1b8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:59:10.000Z'}}, {'blockNum': '0x7d23ac', 'uniqueId': '0x8cb9405b795e46628e3df9e0dd01c99126ca2477d13fbc20a2e6b57c1269507a:log:13', 'hash': '0x8cb9405b795e46628e3df9e0dd01c99126ca2477d13fbc20a2e6b57c1269507a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x4920645c854d1ab4a976ef893694d0f6773a5a05', 'value': 36766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07c916bf1d622bb80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:59:16.000Z'}}, {'blockNum': '0x7d23ad', 'uniqueId': '0xf32ddd844fc31878fa025b5cf09cba6715c0ad0566395200a02a3889410c688c:log:1', 'hash': '0xf32ddd844fc31878fa025b5cf09cba6715c0ad0566395200a02a3889410c688c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 160736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x22098419e02c63800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:59:31.000Z'}}, {'blockNum': '0x7d23ad', 'uniqueId': '0x0c8195daed6640e1423cbeee3094ed8210bd609e82f8ab77f6c25f0239a9fda5:log:2', 'hash': '0x0c8195daed6640e1423cbeee3094ed8210bd609e82f8ab77f6c25f0239a9fda5', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 191325.2706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2883c381f5f8c78c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T14:59:31.000Z'}}, {'blockNum': '0x7d23c5', 'uniqueId': '0x5dc28b5cd7eff70ec1e8683faeb8d95140973c6929a76d11649ad855fdf4cfdc:log:48', 'hash': '0x5dc28b5cd7eff70ec1e8683faeb8d95140973c6929a76d11649ad855fdf4cfdc', 'from': '0xc749345666dbe97a0c971817676c526657336180', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 86154.9824972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x123e7890d08af2b8e000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:06:14.000Z'}}, {'blockNum': '0x7d23c5', 'uniqueId': '0x269945718ecf3c75637d2a60ab9a110703c31e1e75de691356593767f1631e74:log:70', 'hash': '0x269945718ecf3c75637d2a60ab9a110703c31e1e75de691356593767f1631e74', 'from': '0xf7562f5a8329e3cb32d80609d532cd8a69ad53c6', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 138739.1783892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1d6110e0d94e79b02000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:06:14.000Z'}}, {'blockNum': '0x7d23c8', 'uniqueId': '0xf7fd0caaeb769531c15863c38c4bc874e0305b323d3217e76b3df140983bb335:log:6', 'hash': '0xf7fd0caaeb769531c15863c38c4bc874e0305b323d3217e76b3df140983bb335', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8cd9f39e60dadd174f5cdfe67f539e15f913b877', 'value': 224479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2f8907ede749001c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:07:04.000Z'}}, {'blockNum': '0x7d23c9', 'uniqueId': '0xcdddf14702f7151c79365f2daba1cf3457028601d466691bdd620dbabd6e0345:log:76', 'hash': '0xcdddf14702f7151c79365f2daba1cf3457028601d466691bdd620dbabd6e0345', 'from': '0x46a760081c59b4b4689212c836efe65efa4c32ad', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 3004.968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2e64eeaff48040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:07:53.000Z'}}, {'blockNum': '0x7d23d7', 'uniqueId': '0xb2857369e42539d9aeaa728533d0d9ea9e47e6e5d8a5bcd62f4d611c043ab26e:log:0', 'hash': '0xb2857369e42539d9aeaa728533d0d9ea9e47e6e5d8a5bcd62f4d611c043ab26e', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 694086.80410372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92fa856336d672839000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:11:00.000Z'}}, {'blockNum': '0x7d23d7', 'uniqueId': '0xc98b426735fabce559c3ec8e77a4cce4c458c29c654547079ffcfab086c802b5:log:10', 'hash': '0xc98b426735fabce559c3ec8e77a4cce4c458c29c654547079ffcfab086c802b5', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 191325.2706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2883c381f5f8c78c8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:11:00.000Z'}}, {'blockNum': '0x7d23d7', 'uniqueId': '0xfe17dc1215a0e8e632b52bec02f36b2dd022906d93acefbbc00d7844a869956e:log:17', 'hash': '0xfe17dc1215a0e8e632b52bec02f36b2dd022906d93acefbbc00d7844a869956e', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 160736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x22098419e02c63800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:11:00.000Z'}}, {'blockNum': '0x7d23d9', 'uniqueId': '0x539633d46848449bef685d037493b69f17e736fd364b5090305c9ce43f470c88:log:56', 'hash': '0x539633d46848449bef685d037493b69f17e736fd364b5090305c9ce43f470c88', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 17954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03cd49cd63a193480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:11:16.000Z'}}, {'blockNum': '0x7d23df', 'uniqueId': '0xaa66d0f67be05d045fb3fc639baab6d6cd7853604d88aedd4572b0e43a6965fa:log:76', 'hash': '0xaa66d0f67be05d045fb3fc639baab6d6cd7853604d88aedd4572b0e43a6965fa', 'from': '0x8cd9f39e60dadd174f5cdfe67f539e15f913b877', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 224479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2f8907ede749001c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:12:34.000Z'}}, {'blockNum': '0x7d23df', 'uniqueId': '0x1b25cac3f76cf721d94b0cdbfee88434992cce868778a7aeb9c52bf6ed395b35:log:83', 'hash': '0x1b25cac3f76cf721d94b0cdbfee88434992cce868778a7aeb9c52bf6ed395b35', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 10733.991623079359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0245e40ede10cfddca25', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:12:34.000Z'}}, {'blockNum': '0x7d23df', 'uniqueId': '0x1b25cac3f76cf721d94b0cdbfee88434992cce868778a7aeb9c52bf6ed395b35:log:85', 'hash': '0x1b25cac3f76cf721d94b0cdbfee88434992cce868778a7aeb9c52bf6ed395b35', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x111112549cfedf7822eb11fbd8fd485d8a10f93f', 'value': 10733.991623079359, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0245e40ede10cfddca25', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:12:34.000Z'}}, {'blockNum': '0x7d23df', 'uniqueId': '0x1b25cac3f76cf721d94b0cdbfee88434992cce868778a7aeb9c52bf6ed395b35:log:93', 'hash': '0x1b25cac3f76cf721d94b0cdbfee88434992cce868778a7aeb9c52bf6ed395b35', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x111112549cfedf7822eb11fbd8fd485d8a10f93f', 'value': 565.8213747432511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1eac59567a96aa43e4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:12:34.000Z'}}, {'blockNum': '0x7d23df', 'uniqueId': '0x1b25cac3f76cf721d94b0cdbfee88434992cce868778a7aeb9c52bf6ed395b35:log:96', 'hash': '0x1b25cac3f76cf721d94b0cdbfee88434992cce868778a7aeb9c52bf6ed395b35', 'from': '0x111112549cfedf7822eb11fbd8fd485d8a10f93f', 'to': '0xc8557792446904fe0b7b5622b1ac2706c726a9ce', 'value': 11299.81299782261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02649068348b66880e09', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:12:34.000Z'}}, {'blockNum': '0x7d23df', 'uniqueId': '0xcf0e05096afb1b65c8a52b8cadbe4a550680f942e5ab0dabc513181a29848feb:log:98', 'hash': '0xcf0e05096afb1b65c8a52b8cadbe4a550680f942e5ab0dabc513181a29848feb', 'from': '0x2fd5d2f01c0f6294e1efa97dad8264daf2931294', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 14465.8302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x031031b8d3a595eb8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:12:34.000Z'}}, {'blockNum': '0x7d23fa', 'uniqueId': '0xb72fc5fd22ad435cf0452057351fe423f0ba8d795fdc05c6ed0128d3f599f1da:log:93', 'hash': '0xb72fc5fd22ad435cf0452057351fe423f0ba8d795fdc05c6ed0128d3f599f1da', 'from': '0x2ee52d47485e4bcfd70a11e45a9828cae80791ff', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 670.175326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x24548d0c41859be000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:17:29.000Z'}}, {'blockNum': '0x7d2411', 'uniqueId': '0x688af4062968d57b29ad2705d2e6d1bac4935788c79abe1fafeeb4cd9facb569:log:3', 'hash': '0x688af4062968d57b29ad2705d2e6d1bac4935788c79abe1fafeeb4cd9facb569', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 694086.80410372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92fa856336d672839000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:21:02.000Z'}}, {'blockNum': '0x7d2415', 'uniqueId': '0x2d9382e440fb668de87abced7679d214ecf91028f70ad1b7cf26f0cfe529998a:log:46', 'hash': '0x2d9382e440fb668de87abced7679d214ecf91028f70ad1b7cf26f0cfe529998a', 'from': '0x037993f8dcc4ff7bf76d78debd4cb8e5b311ebc4', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 61223.704716, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cf6f195361cbbc4c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:21:57.000Z'}}, {'blockNum': '0x7d241c', 'uniqueId': '0x9d0e06f9ad0cd61d88b829c266d0f61a250a1ad754695863e2b3c3f8f5a5ee06:log:119', 'hash': '0x9d0e06f9ad0cd61d88b829c266d0f61a250a1ad754695863e2b3c3f8f5a5ee06', 'from': '0x686ef2a9066be69b446ba880e926b2c6bc29db1a', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 29946.4664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065766b4cf9efae60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:23:45.000Z'}}, {'blockNum': '0x7d241d', 'uniqueId': '0x8697f948a6b1b715c555c830b70ca848a697346c35a066dd05a297f9fca4d815:log:0', 'hash': '0x8697f948a6b1b715c555c830b70ca848a697346c35a066dd05a297f9fca4d815', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x45b01b02c371cec754a2de5e1a26d2de71f3ad7b', 'value': 51587.8062686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0aec94a0fd6144b93000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:23:48.000Z'}}, {'blockNum': '0x7d2420', 'uniqueId': '0x6542448c1a969b83ae02685cdec0646065c66b7a3366bc3c805ad6f33a09aa90:log:27', 'hash': '0x6542448c1a969b83ae02685cdec0646065c66b7a3366bc3c805ad6f33a09aa90', 'from': '0xacf0b3dc5f5213a3cfd3afbefa582be1f2f82352', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 60000.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49ec0758bbc1f8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:24:38.000Z'}}, {'blockNum': '0x7d2420', 'uniqueId': '0xc0fe178edc0c3241c7509d479ca0436eeff1297a5646bb17ba887091a75a18f7:log:52', 'hash': '0xc0fe178edc0c3241c7509d479ca0436eeff1297a5646bb17ba887091a75a18f7', 'from': '0x933c7cfa39b21f278229641cfb36ef5a5da9b117', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 30075.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x065e61f39efdafab8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:24:38.000Z'}}, {'blockNum': '0x7d2420', 'uniqueId': '0x8cb69c93c7bb1481df5f31302ab6f3c1cdbc67fd9249f02c0f9cb1c2048b2381:log:53', 'hash': '0x8cb69c93c7bb1481df5f31302ab6f3c1cdbc67fd9249f02c0f9cb1c2048b2381', 'from': '0x07563d4926c9e33a9638cfea81ec175dd2a2f8b4', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 60000.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49ec0758bbc1f8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:24:38.000Z'}}, {'blockNum': '0x7d2420', 'uniqueId': '0x5834c0cef0968671e16897b8f055c8ab5a78ed1044a400685621e2dbb0ae6369:log:55', 'hash': '0x5834c0cef0968671e16897b8f055c8ab5a78ed1044a400685621e2dbb0ae6369', 'from': '0x9db30342fdb544b850c2527d0f100663b2c654aa', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 19962.5111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043a2b7e3f88845bc000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:24:38.000Z'}}, {'blockNum': '0x7d242d', 'uniqueId': '0x2970bd0658f8b8640b82fa69f595c5adb14d4d8614aa94e54d52e92750d66e16:log:187', 'hash': '0x2970bd0658f8b8640b82fa69f595c5adb14d4d8614aa94e54d52e92750d66e16', 'from': '0x139a611a3bbcb1ac135532094d71cddebdccc511', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 59998.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb482ff08246d578000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:28:59.000Z'}}, {'blockNum': '0x7d242f', 'uniqueId': '0x5024ef9c497451b7d5728f28190e1c5f65d1c0303bd9fdf063b8bb333720c468:log:3', 'hash': '0x5024ef9c497451b7d5728f28190e1c5f65d1c0303bd9fdf063b8bb333720c468', 'from': '0xf5db35d90a2cecbf66990a2049ba579e4396a019', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1190.85536349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x408e7023ac0a21d400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:29:23.000Z'}}, {'blockNum': '0x7d242f', 'uniqueId': '0x5024ef9c497451b7d5728f28190e1c5f65d1c0303bd9fdf063b8bb333720c468:log:4', 'hash': '0x5024ef9c497451b7d5728f28190e1c5f65d1c0303bd9fdf063b8bb333720c468', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1190.85536349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x408e7023ac0a21d400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:29:23.000Z'}}, {'blockNum': '0x7d2439', 'uniqueId': '0x8b6cb25d05e78b291f3ad50ffe1e8703f8a137c9e433b4241c11f1bd35bdf278:log:17', 'hash': '0x8b6cb25d05e78b291f3ad50ffe1e8703f8a137c9e433b4241c11f1bd35bdf278', 'from': '0xc1604ca1761e0e6891dc5e3f8b72a10bd75d1a40', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 48445.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a4238e9e68f45738000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:30:59.000Z'}}, {'blockNum': '0x7d243c', 'uniqueId': '0x6e6cfb30c38fc410649bf7e966ea853a86442e41959166cb4dfdf6d0997762ea:log:10', 'hash': '0x6e6cfb30c38fc410649bf7e966ea853a86442e41959166cb4dfdf6d0997762ea', 'from': '0x45b01b02c371cec754a2de5e1a26d2de71f3ad7b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51587.8062686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0aec94a0fd6144b93000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:31:09.000Z'}}, {'blockNum': '0x7d243e', 'uniqueId': '0x199653ecaa671f0fd22fefd5245392204bb875e00f79f4ccca815ea7314fc166:log:47', 'hash': '0x199653ecaa671f0fd22fefd5245392204bb875e00f79f4ccca815ea7314fc166', 'from': '0xbc49b863ce7cd78fed41d55324dac6e7b27dc5e8', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 29268.9251814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0632abeedb12509c7000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:31:53.000Z'}}, {'blockNum': '0x7d2448', 'uniqueId': '0x5c1760584c222d2b2fc0073b6e8a6bb7af895e14b8e29e67aec61f9292cf1ba5:log:100', 'hash': '0x5c1760584c222d2b2fc0073b6e8a6bb7af895e14b8e29e67aec61f9292cf1ba5', 'from': '0xb005b6746d15242c0ebc1533a2943ccde75e2ebf', 'to': '0x25d39e1eebef6fb01ae1dac554619d6b488e2943', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:34:24.000Z'}}, {'blockNum': '0x7d244a', 'uniqueId': '0xabf22aa56f9b253a4cf7c91e18198651ed4ca80e8d4aba37c8f296d85a2c721b:log:28', 'hash': '0xabf22aa56f9b253a4cf7c91e18198651ed4ca80e8d4aba37c8f296d85a2c721b', 'from': '0xb005b6746d15242c0ebc1533a2943ccde75e2ebf', 'to': '0x3df15c9b8820fce0ce7feb51c333d83abe976cfd', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:34:39.000Z'}}, {'blockNum': '0x7d244b', 'uniqueId': '0x37edd33fd599ce485ca1ca7c645bea84d2fe7f2b3569a483a30d863b844850d2:log:88', 'hash': '0x37edd33fd599ce485ca1ca7c645bea84d2fe7f2b3569a483a30d863b844850d2', 'from': '0x9db58559237119b9da44c7668886f547481e24fd', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 36294.8493566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07af8c37c77969fa3000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:34:55.000Z'}}, {'blockNum': '0x7d244e', 'uniqueId': '0x4da407befc0882e0807acd99ef3571bbf756aac23c6b8d3af86b08479464f4aa:log:87', 'hash': '0x4da407befc0882e0807acd99ef3571bbf756aac23c6b8d3af86b08479464f4aa', 'from': '0xd5ad515af4bf56a76f7299132e7e5eae92421ff9', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 60000.051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49bf9ea9b010b8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:35:26.000Z'}}, {'blockNum': '0x7d245f', 'uniqueId': '0x645715fd09b345aa184e45f49c1372c3a58dd23b1df76e9788814d13e7aa5a64:log:0', 'hash': '0x645715fd09b345aa184e45f49c1372c3a58dd23b1df76e9788814d13e7aa5a64', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:40:52.000Z'}}, {'blockNum': '0x7d2467', 'uniqueId': '0x02ab3def16ae35c2461c7bde94cefea563941256a8f0ce2574ed1dd048529aee:log:64', 'hash': '0x02ab3def16ae35c2461c7bde94cefea563941256a8f0ce2574ed1dd048529aee', 'from': '0xcc997edd9b0a9c52c2bae3ce7ae0c25d3884a918', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 60164.7786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cbd8a07ea0a8fae8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:42:02.000Z'}}, {'blockNum': '0x7d2473', 'uniqueId': '0x7fed0cb4cbe314d73b5516ad78fb8df828b467df6835e19c5f799cd5be2a043c:log:8', 'hash': '0x7fed0cb4cbe314d73b5516ad78fb8df828b467df6835e19c5f799cd5be2a043c', 'from': '0x0c29c2b80167ce17f32e5d1513ce6fd95f73b196', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x197a8f6dd551980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:45:16.000Z'}}, {'blockNum': '0x7d247d', 'uniqueId': '0x0c818609af81f308f70ea04409d05f415e58494639f55bd098c97efd56c1eaba:log:76', 'hash': '0x0c818609af81f308f70ea04409d05f415e58494639f55bd098c97efd56c1eaba', 'from': '0x5ce28e80e8a51e53d4c12da2e6ea778b0f89ada8', 'to': '0xba9a8aad7a1789979b8162478ff619ebfc06dbac', 'value': 10141.651955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0225c7b1a04c2cde3000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:48:13.000Z'}}, {'blockNum': '0x7d247d', 'uniqueId': '0xc2e9740fd253ec9508eaca5a4c779a0d5d6dcbf4a4d6cd71c480c32fd46dd3c6:log:79', 'hash': '0xc2e9740fd253ec9508eaca5a4c779a0d5d6dcbf4a4d6cd71c480c32fd46dd3c6', 'from': '0x4947f0be24ea524b91721eede4b527af524493f5', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 58380.5571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c5cd0fbc9007d0ec000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:48:13.000Z'}}, {'blockNum': '0x7d247f', 'uniqueId': '0x24b573b6bc779761cee5501126263ee5a26d5955420a5828d4754724c5c636d5:log:159', 'hash': '0x24b573b6bc779761cee5501126263ee5a26d5955420a5828d4754724c5c636d5', 'from': '0xc464afac6a765aa36e092c2d1b4c95315ba65853', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:48:15.000Z'}}, {'blockNum': '0x7d2480', 'uniqueId': '0x64bf3c5b59c276fecd7cc4953550ff060c4352078861ef1704b74556a45c646b:log:77', 'hash': '0x64bf3c5b59c276fecd7cc4953550ff060c4352078861ef1704b74556a45c646b', 'from': '0xe0ed32a22e5d77dfcc4f706a921790ba6e7291ba', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10016.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021eff3ab5eb0abe4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:48:32.000Z'}}, {'blockNum': '0x7d2487', 'uniqueId': '0x76b5386a3176bc8f8f07e045871de2490dc4decfae3f5bd2eef5bc3a0aed2b99:log:14', 'hash': '0x76b5386a3176bc8f8f07e045871de2490dc4decfae3f5bd2eef5bc3a0aed2b99', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 27628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05d9b78584951c300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:49:38.000Z'}}, {'blockNum': '0x7d2487', 'uniqueId': '0xdeb4b59f70507db622d268dca23d80183d2321e0a662f4b98a9f3805a09e6af9:log:109', 'hash': '0xdeb4b59f70507db622d268dca23d80183d2321e0a662f4b98a9f3805a09e6af9', 'from': '0x1aee85f0977edd95ffe18c2b9955fd47c7f86604', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10640.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0240d2f80bd30e7e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:49:38.000Z'}}, {'blockNum': '0x7d2488', 'uniqueId': '0x710e09c39fbd85daddb7678afd8f77916ff4a240d68650bd822875d037100b93:log:37', 'hash': '0x710e09c39fbd85daddb7678afd8f77916ff4a240d68650bd822875d037100b93', 'from': '0x8cd36c7b4d62736d44612222d7c514c5cd76dfb7', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 10344.7840886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0230cab7ef910c0ef000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:49:57.000Z'}}, {'blockNum': '0x7d248d', 'uniqueId': '0x66c8b1f0e8308d775cabcd7b6d75461e3f0fd1435920bc37ff98b9afd80a9bf7:log:158', 'hash': '0x66c8b1f0e8308d775cabcd7b6d75461e3f0fd1435920bc37ff98b9afd80a9bf7', 'from': '0xca71f95504e6a4b0527976dfad11ff1157615b2f', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 11727.417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027bbe9acafb55328000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:50:54.000Z'}}, {'blockNum': '0x7d248d', 'uniqueId': '0x623022b3debe73ff8652f7c801066818ce72c0b102f538ec4465f8e08a0a8223:log:159', 'hash': '0x623022b3debe73ff8652f7c801066818ce72c0b102f538ec4465f8e08a0a8223', 'from': '0xe5b5dc2b9f4def040a58fc21cb8296777d833e29', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 69588.894898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebc6beacbf6d3052000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:50:54.000Z'}}, {'blockNum': '0x7d248d', 'uniqueId': '0xa72b1915968c77f61c07b36a90ceca66263eb937da0b86adda273b0f645b6261:log:178', 'hash': '0xa72b1915968c77f61c07b36a90ceca66263eb937da0b86adda273b0f645b6261', 'from': '0xc7b815738968be56b5fae678687524505f4bad70', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10001.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e2f1001643be24000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:50:54.000Z'}}, {'blockNum': '0x7d248e', 'uniqueId': '0x86db5c508d68dc1fd77f86100b27772646b032c3069db5fc92b52b34897d149c:log:11', 'hash': '0x86db5c508d68dc1fd77f86100b27772646b032c3069db5fc92b52b34897d149c', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:51:00.000Z'}}, {'blockNum': '0x7d248f', 'uniqueId': '0x46d331101d4e337fd59b0820d041d027c2658eec09c7940d57214e92fa20fe73:log:42', 'hash': '0x46d331101d4e337fd59b0820d041d027c2658eec09c7940d57214e92fa20fe73', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4001.3781532051794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd8ea46e6214b4bb227', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:51:10.000Z'}}, {'blockNum': '0x7d248f', 'uniqueId': '0x46d331101d4e337fd59b0820d041d027c2658eec09c7940d57214e92fa20fe73:log:46', 'hash': '0x46d331101d4e337fd59b0820d041d027c2658eec09c7940d57214e92fa20fe73', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4001.3781532051794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd8ea46e6214b4bb227', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:51:10.000Z'}}, {'blockNum': '0x7d248f', 'uniqueId': '0x46d331101d4e337fd59b0820d041d027c2658eec09c7940d57214e92fa20fe73:log:47', 'hash': '0x46d331101d4e337fd59b0820d041d027c2658eec09c7940d57214e92fa20fe73', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4001.378323835375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd8ea4781513b7a67f4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:51:10.000Z'}}, {'blockNum': '0x7d248f', 'uniqueId': '0x46d331101d4e337fd59b0820d041d027c2658eec09c7940d57214e92fa20fe73:log:48', 'hash': '0x46d331101d4e337fd59b0820d041d027c2658eec09c7940d57214e92fa20fe73', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4001.378323835375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd8ea4781513b7a67f4', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:51:10.000Z'}}, {'blockNum': '0x7d2495', 'uniqueId': '0xb1ed23e7c91ef5e7145186820dc1b233b3026075340abd947e0cba52ef8eeb2d:log:23', 'hash': '0xb1ed23e7c91ef5e7145186820dc1b233b3026075340abd947e0cba52ef8eeb2d', 'from': '0x1ce0134eff54aa66cf6a4edece7b797835919d97', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:52:13.000Z'}}, {'blockNum': '0x7d2496', 'uniqueId': '0xcd056eec16222dfea3450c3cfe1164193cb66906ac30d78a46ac0aef11f3272e:log:62', 'hash': '0xcd056eec16222dfea3450c3cfe1164193cb66906ac30d78a46ac0aef11f3272e', 'from': '0xa4d92986d2d07e74d3d54a30f576dea17c786fe3', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 9549.2269914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0205aa255ab491259000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:52:18.000Z'}}, {'blockNum': '0x7d249a', 'uniqueId': '0xc3f30ce06eef58c250d6ad8810ba4264a53ba730a0859531078f434eef34ce80:log:89', 'hash': '0xc3f30ce06eef58c250d6ad8810ba4264a53ba730a0859531078f434eef34ce80', 'from': '0xf8cfd9cb20e12ff72e11c8fc755fff4455cc9faa', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 35762.593395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0792b1aebe697a063000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:53:23.000Z'}}, {'blockNum': '0x7d249c', 'uniqueId': '0x6d4a2e3de0e46c617929bc486d2240036cb978d5a07e78bc69491c7ef0b2cba2:log:13', 'hash': '0x6d4a2e3de0e46c617929bc486d2240036cb978d5a07e78bc69491c7ef0b2cba2', 'from': '0x3602ea6a0fc64d60ebf07c31140dc16c8c58a190', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 14431.4456754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x030e548a74b33c3d5000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:53:37.000Z'}}, {'blockNum': '0x7d24a2', 'uniqueId': '0x7bf52ce1b884be69bd9a8040bee58e39761f6b2a3026567239471deb090a8c3a:log:129', 'hash': '0x7bf52ce1b884be69bd9a8040bee58e39761f6b2a3026567239471deb090a8c3a', 'from': '0x27765e901dd48a91fdb5dad39eeb9f9c4e83d7ce', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 21307.8781602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04831a3634b998eed000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:54:19.000Z'}}, {'blockNum': '0x7d24a3', 'uniqueId': '0xa7169d04fc3c6c5c2b95b5b3b1ec7541b3152518d65c5d357272576b8a04ee84:log:89', 'hash': '0xa7169d04fc3c6c5c2b95b5b3b1ec7541b3152518d65c5d357272576b8a04ee84', 'from': '0x8f5a0d304a4de7698ad900410a56508b8de74193', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:54:29.000Z'}}, {'blockNum': '0x7d24a7', 'uniqueId': '0xc02ced406c1a5a99bbc9f531661c5ba27d68fc9ae9a1ace0714a32317a64938a:log:105', 'hash': '0xc02ced406c1a5a99bbc9f531661c5ba27d68fc9ae9a1ace0714a32317a64938a', 'from': '0x34d209c962f414edc63c106a770ee642b6f6797f', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e212f4ab0947e4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:54:45.000Z'}}, {'blockNum': '0x7d24a9', 'uniqueId': '0xf0a5fc04b8c925409b71d73e04d63c8a147973539298efbadf9c63516460f9c8:log:91', 'hash': '0xf0a5fc04b8c925409b71d73e04d63c8a147973539298efbadf9c63516460f9c8', 'from': '0x4cde3398fe608a10bdb0018ee91f5ab136a7ccd5', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 10166.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022720e5c32f1f564000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:55:22.000Z'}}, {'blockNum': '0x7d24a9', 'uniqueId': '0x9be0c6b3ba9acc51545b25b46353c53c203a161e7042bf4475fa3c764f3089a1:log:103', 'hash': '0x9be0c6b3ba9acc51545b25b46353c53c203a161e7042bf4475fa3c764f3089a1', 'from': '0x2c14dbf2e6b3b4c7a7e97a7f2a441cd23d24293c', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 11535.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x027153c4041ef17b8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:55:22.000Z'}}, {'blockNum': '0x7d24aa', 'uniqueId': '0x33470d7c3fc9d23fa7fda855bea5cc1c8e8a7376bf52c8c58439cbccfc18eb33:log:143', 'hash': '0x33470d7c3fc9d23fa7fda855bea5cc1c8e8a7376bf52c8c58439cbccfc18eb33', 'from': '0x80b8e12c0b433e815f6b2a471a6e574795d2115a', 'to': '0xc5f1a87744208f464ff91be6a783a2e6f11d2b29', 'value': 60680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cd9782a0794cf200000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:55:33.000Z'}}, {'blockNum': '0x7d24ab', 'uniqueId': '0xf2b2c1caed73bb8ccefa2c11dcd65379210c6c4b134384e482cf26ddf57eeb08:log:38', 'hash': '0xf2b2c1caed73bb8ccefa2c11dcd65379210c6c4b134384e482cf26ddf57eeb08', 'from': '0xa4d69f6ec7d831d85a3f995e34c4be221e0151be', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10000.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e1d5c84e640df8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:55:43.000Z'}}, {'blockNum': '0x7d24ab', 'uniqueId': '0x4d2c205b08ab97c5c4694d8f77b87a7b894949cf573f84c317e11433ccb1fd3a:log:40', 'hash': '0x4d2c205b08ab97c5c4694d8f77b87a7b894949cf573f84c317e11433ccb1fd3a', 'from': '0x894e3aeacb0c9d3c21ffefc50f22404da147e39f', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 10088.1567318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0222e14c6a3a1ca1f000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:55:43.000Z'}}, {'blockNum': '0x7d24b0', 'uniqueId': '0x88bc2d88ab61ebed5b1e2556067f40419f1ae3d389c5b50ea9adc67ee9a4425b:log:74', 'hash': '0x88bc2d88ab61ebed5b1e2556067f40419f1ae3d389c5b50ea9adc67ee9a4425b', 'from': '0x7d2034066f951c3bdfe185357ead56bd7cc0da4d', 'to': '0xfb3cb195857263be75a87c665c3c9228c07cc7dd', 'value': 60000.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49ec0758bbc1f8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:56:53.000Z'}}, {'blockNum': '0x7d24b0', 'uniqueId': '0xa04c7db66f99ab97ceebc9806cd76ced326a9a0817c469edf4d69298636c870c:log:99', 'hash': '0xa04c7db66f99ab97ceebc9806cd76ced326a9a0817c469edf4d69298636c870c', 'from': '0xe6ab19493b3d4f733782256ddeaab85e67b54bf4', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 60406.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ccaa4f4fc4188564000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:56:53.000Z'}}, {'blockNum': '0x7d24b0', 'uniqueId': '0x72fb8e5fa2f3158b664db1a83f72843f24f990d032b430367a86bef6d5da6924:log:101', 'hash': '0x72fb8e5fa2f3158b664db1a83f72843f24f990d032b430367a86bef6d5da6924', 'from': '0x48e9968488591ec0ca2684f09af50757f8e1744b', 'to': '0x05e76fbecda843820afac861d0a11d6c093f0b01', 'value': 12541.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02a7dcd1fa1abc738000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:56:53.000Z'}}, {'blockNum': '0x7d24b0', 'uniqueId': '0x4a61885639136fd30122e672d13320237c2a68e4a0c0e57b95c89bd49caa7247:log:102', 'hash': '0x4a61885639136fd30122e672d13320237c2a68e4a0c0e57b95c89bd49caa7247', 'from': '0x4a3953df9efb3ad61d74f9b0f593053935d6c128', 'to': '0x8e3602546e63699e87eb89b21918deb5a501d69c', 'value': 60000.5265, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb4a2933b560fbe4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:56:53.000Z'}}, {'blockNum': '0x7d24b3', 'uniqueId': '0xcd036b5d5d93458e9994f3884de07806de0755a874b37868fe40e380e46ad7f5:log:2', 'hash': '0xcd036b5d5d93458e9994f3884de07806de0755a874b37868fe40e380e46ad7f5', 'from': '0x299bf2ed3f500deca7714ee91311ebb824e7ecff', 'to': '0xd03db9cf89a9b1f856a8e1650cfd78faf2338eb2', 'value': 5241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x011c1d7c63fdee440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:57:54.000Z'}}, {'blockNum': '0x7d24b5', 'uniqueId': '0x91d3804fa1bb3ff009e60a62115389eedb6b1c053c9e3fd39e4d29225a5216c9:log:115', 'hash': '0x91d3804fa1bb3ff009e60a62115389eedb6b1c053c9e3fd39e4d29225a5216c9', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3755.5663741925955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcb96f4077c1766c4fc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:58:27.000Z'}}, {'blockNum': '0x7d24b5', 'uniqueId': '0x91d3804fa1bb3ff009e60a62115389eedb6b1c053c9e3fd39e4d29225a5216c9:log:117', 'hash': '0x91d3804fa1bb3ff009e60a62115389eedb6b1c053c9e3fd39e4d29225a5216c9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3755.5662538995025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcb96f39a142c500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:58:27.000Z'}}, {'blockNum': '0x7d24b5', 'uniqueId': '0x91d3804fa1bb3ff009e60a62115389eedb6b1c053c9e3fd39e4d29225a5216c9:log:118', 'hash': '0x91d3804fa1bb3ff009e60a62115389eedb6b1c053c9e3fd39e4d29225a5216c9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3755.5662538995025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xcb96f39a142c500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:58:27.000Z'}}, {'blockNum': '0x7d24b7', 'uniqueId': '0x5c2561d2896a2cf68f7b13b9fa016f16021209011abf54ec7cc50e4192fa2616:log:122', 'hash': '0x5c2561d2896a2cf68f7b13b9fa016f16021209011abf54ec7cc50e4192fa2616', 'from': '0x3d8bca9322c2b3a7d92f5f7e54cf8853912efd91', 'to': '0xf5aa3d85ae02ffcfe3a02820598685cdb62bd840', 'value': 20000.251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c373d4ea0f31f8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:59:01.000Z'}}, {'blockNum': '0x7d24bc', 'uniqueId': '0x8b014f8f768e16ab1bb265aded4b2744777d0ee8edd868fb9d7f59f41cba29c9:log:16', 'hash': '0x8b014f8f768e16ab1bb265aded4b2744777d0ee8edd868fb9d7f59f41cba29c9', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 17954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03cd49cd63a193480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:59:50.000Z'}}, {'blockNum': '0x7d24bc', 'uniqueId': '0x2533dcc0af4846b23ddd60c2f8c0349f419ffbd3a4a651a2562a90a01d40f693:log:108', 'hash': '0x2533dcc0af4846b23ddd60c2f8c0349f419ffbd3a4a651a2562a90a01d40f693', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 10081.481998893609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022284ab00034c84e998', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:59:50.000Z'}}, {'blockNum': '0x7d24bc', 'uniqueId': '0x971d71a11ab0a881095590eff82ef935588d0dd0a43299e78a1157f657c8885e:log:132', 'hash': '0x971d71a11ab0a881095590eff82ef935588d0dd0a43299e78a1157f657c8885e', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 12117.040520698632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0290ddb79abe4830c46a', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:59:50.000Z'}}, {'blockNum': '0x7d24bc', 'uniqueId': '0x971d71a11ab0a881095590eff82ef935588d0dd0a43299e78a1157f657c8885e:log:136', 'hash': '0x971d71a11ab0a881095590eff82ef935588d0dd0a43299e78a1157f657c8885e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 12117.040520698632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0290ddb79abe4830c46a', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T15:59:50.000Z'}}, {'blockNum': '0x7d24bd', 'uniqueId': '0xca54db058b8541adef14f44927dec0001b36424af6f46f13751c900eaa34887f:log:66', 'hash': '0xca54db058b8541adef14f44927dec0001b36424af6f46f13751c900eaa34887f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3af768337630b9d1e601d591a79c9725d7afe09c', 'value': 85556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x121e000380e278500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:00:20.000Z'}}, {'blockNum': '0x7d24c1', 'uniqueId': '0x4c96665753a2aaf57ad55067684b3acccedb4ccda62b3ce6676caab3d493e222:log:1', 'hash': '0x4c96665753a2aaf57ad55067684b3acccedb4ccda62b3ce6676caab3d493e222', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 36822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07cc1fe714aec9980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:00:45.000Z'}}, {'blockNum': '0x7d24c1', 'uniqueId': '0x59abf5c634b90c5d0eee9454d7e9dee4378ca952685c96c80ae86bcf7dc3f747:log:7', 'hash': '0x59abf5c634b90c5d0eee9454d7e9dee4378ca952685c96c80ae86bcf7dc3f747', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x56e3696907375abca67514cd9602e8d5c7b7fefd', 'value': 20000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x043c3ef2d6ef7fda4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:00:45.000Z'}}, {'blockNum': '0x7d24c2', 'uniqueId': '0x5f88992ef06da0ba1155a47f6a56cc2a67b0c9fa16424b3354f003737f72f6b2:log:11', 'hash': '0x5f88992ef06da0ba1155a47f6a56cc2a67b0c9fa16424b3354f003737f72f6b2', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 82058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11605f830e153be80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:01:17.000Z'}}, {'blockNum': '0x7d24c2', 'uniqueId': '0xb48048604bad128962a93d7710333a6be031659ca1322df6b33a7ad767146a45:log:77', 'hash': '0xb48048604bad128962a93d7710333a6be031659ca1322df6b33a7ad767146a45', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05d9b78584951c300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:01:17.000Z'}}, {'blockNum': '0x7d24c3', 'uniqueId': '0x7755de9b5617bb50c4342310d2bb6df7e0dcc89514e94c2ce4a02af94649eef8:log:1', 'hash': '0x7755de9b5617bb50c4342310d2bb6df7e0dcc89514e94c2ce4a02af94649eef8', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x0c7fb59b0778b6a2acb528e85ddf6dc731c459ee', 'value': 91535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x13621f4e96c8f4dc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:01:32.000Z'}}, {'blockNum': '0x7d24c3', 'uniqueId': '0xbd61f9a1212e295b959bffb3ab7352e517200d4029615b4cee3005199f88bc6f:log:16', 'hash': '0xbd61f9a1212e295b959bffb3ab7352e517200d4029615b4cee3005199f88bc6f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 96476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x146df974e03eb9f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:01:32.000Z'}}, {'blockNum': '0x7d24c3', 'uniqueId': '0xab7cdbe6cf0a76f8c7eb4e78a256ea153dcbb2f5f6083be8d3835355ff42caf4:log:92', 'hash': '0xab7cdbe6cf0a76f8c7eb4e78a256ea153dcbb2f5f6083be8d3835355ff42caf4', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 4975.671310391585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x010dbb4f869090cef9fc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:01:32.000Z'}}, {'blockNum': '0x7d24c4', 'uniqueId': '0x4c1715191bc8af68e03face4ce6cea1b69c113ac10cce7a7c1e352c7e0272b99:log:17', 'hash': '0x4c1715191bc8af68e03face4ce6cea1b69c113ac10cce7a7c1e352c7e0272b99', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 12793.506244768927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b58990a2b7598200f6', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:04.000Z'}}, {'blockNum': '0x7d24c4', 'uniqueId': '0x4c1715191bc8af68e03face4ce6cea1b69c113ac10cce7a7c1e352c7e0272b99:log:21', 'hash': '0x4c1715191bc8af68e03face4ce6cea1b69c113ac10cce7a7c1e352c7e0272b99', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 12793.506244768927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b58990a2b7598200f6', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:04.000Z'}}, {'blockNum': '0x7d24c5', 'uniqueId': '0x8a67a3ad96edcff5a00c16f1076167ba143b9e9991086c176e172691cc92ffce:log:79', 'hash': '0x8a67a3ad96edcff5a00c16f1076167ba143b9e9991086c176e172691cc92ffce', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'value': 4221.950860466473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe4df5692bd6af5d8f1', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:06.000Z'}}, {'blockNum': '0x7d24c5', 'uniqueId': '0x8a67a3ad96edcff5a00c16f1076167ba143b9e9991086c176e172691cc92ffce:log:81', 'hash': '0x8a67a3ad96edcff5a00c16f1076167ba143b9e9991086c176e172691cc92ffce', 'from': '0x785cfc135cd5e26f55a791d177c3cbdfb16f9fea', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4221.950860466473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe4df5692bd6af5d8f1', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:06.000Z'}}, {'blockNum': '0x7d24c5', 'uniqueId': '0x8a67a3ad96edcff5a00c16f1076167ba143b9e9991086c176e172691cc92ffce:log:83', 'hash': '0x8a67a3ad96edcff5a00c16f1076167ba143b9e9991086c176e172691cc92ffce', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 4221.950860466473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xe4df5692bd6af5d8f1', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:06.000Z'}}, {'blockNum': '0x7d24c7', 'uniqueId': '0x5a3936d931d109c25d373d5c810e8491524a13545722bb518512637db6ec1c7a:log:0', 'hash': '0x5a3936d931d109c25d373d5c810e8491524a13545722bb518512637db6ec1c7a', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 41438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08c65bc56c110cb80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:30.000Z'}}, {'blockNum': '0x7d24c7', 'uniqueId': '0x67ecfd543ef7eb2c509a541686a2e8924e4ed89b7153504cd79c3490bb44a102:log:2', 'hash': '0x67ecfd543ef7eb2c509a541686a2e8924e4ed89b7153504cd79c3490bb44a102', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x374adac99843ad96037f8bb7cb42ecbc63c3a6d5', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:30.000Z'}}, {'blockNum': '0x7d24c7', 'uniqueId': '0x41b3d4519a21b51da468fca7f872595e12564fae90ac7adcc64c6c7f203210e0:log:20', 'hash': '0x41b3d4519a21b51da468fca7f872595e12564fae90ac7adcc64c6c7f203210e0', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 12793.506244768927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b58990a2b7598200f6', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:30.000Z'}}, {'blockNum': '0x7d24c8', 'uniqueId': '0xd0381baac1fd7881ad1043dbe39730574015f55edac69ae354a4dca47e7a3402:log:0', 'hash': '0xd0381baac1fd7881ad1043dbe39730574015f55edac69ae354a4dca47e7a3402', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:43.000Z'}}, {'blockNum': '0x7d24ca', 'uniqueId': '0x97e336dffc1f58019d889463f985ccd31684d85b4b640506fa9f204a6dd01eae:log:51', 'hash': '0x97e336dffc1f58019d889463f985ccd31684d85b4b640506fa9f204a6dd01eae', 'from': '0x92efd7c99ccb9229b15f66387e115c43bbdd9f9e', 'to': '0x29548e391669f981d53a0626a02f0c98f31aadfa', 'value': 10669.9757458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02426ba8c8d9caa85000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:02:58.000Z'}}, {'blockNum': '0x7d24d1', 'uniqueId': '0x572d49a04fd84c2b2e53051d27e285ddd8bef925d530884f093e7ba54ce41602:log:41', 'hash': '0x572d49a04fd84c2b2e53051d27e285ddd8bef925d530884f093e7ba54ce41602', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x78dcaf4eea08367133dece84deda801c32941645', 'value': 23051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04e198e30291594c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:03:43.000Z'}}, {'blockNum': '0x7d24d1', 'uniqueId': '0xa1a748a53336aa3acdfaea6f24663ca98c7ef2e24537fab5248dee250d13af99:log:42', 'hash': '0xa1a748a53336aa3acdfaea6f24663ca98c7ef2e24537fab5248dee250d13af99', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0c06280431d89e4c156a114cce96f39d281eaa3a', 'value': 639938.043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x87831c5ef36fb31f8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:03:43.000Z'}}, {'blockNum': '0x7d24d1', 'uniqueId': '0x4777e55ab09492ac04f91f021ef654dec674143bd73fd90b81f4b5b6a2776a7d:log:43', 'hash': '0x4777e55ab09492ac04f91f021ef654dec674143bd73fd90b81f4b5b6a2776a7d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'value': 299590.351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f70d35208cab9818000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:03:43.000Z'}}, {'blockNum': '0x7d24d5', 'uniqueId': '0x9e88c11e174708bf8a76ccce18860059daa94e685934eb40b7423c57e588521f:log:43', 'hash': '0x9e88c11e174708bf8a76ccce18860059daa94e685934eb40b7423c57e588521f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xab3e2c1c7ef043e35fcf3667f1c2836435dea9e7', 'value': 11370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02685e7287287f680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:04:39.000Z'}}, {'blockNum': '0x7d24d5', 'uniqueId': '0x26971e4bab036f98a6f292e2d60fa5e84478755df4ce52a9521d956857690820:log:46', 'hash': '0x26971e4bab036f98a6f292e2d60fa5e84478755df4ce52a9521d956857690820', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5971.563981042654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143b8190a0e6cdea294', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:04:39.000Z'}}, {'blockNum': '0x7d24d5', 'uniqueId': '0x26971e4bab036f98a6f292e2d60fa5e84478755df4ce52a9521d956857690820:log:48', 'hash': '0x26971e4bab036f98a6f292e2d60fa5e84478755df4ce52a9521d956857690820', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 5971.563981042654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0143b8190a0e6cdea294', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:04:39.000Z'}}, {'blockNum': '0x7d24df', 'uniqueId': '0xcfe43aa90c543fa164e6977c672e7e2aa29da63d4c1e617447739eb7fe2aa668:log:1', 'hash': '0xcfe43aa90c543fa164e6977c672e7e2aa29da63d4c1e617447739eb7fe2aa668', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b13cab796dfaf4c0fa37db868d889ad9f231c44', 'value': 238996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x329bffc660ec39d00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:06:56.000Z'}}, {'blockNum': '0x7d24df', 'uniqueId': '0x80ba443e932bbb3f8e9078d95d6b8464e8a9eb081a3b81a3dce1c789ca476651:log:61', 'hash': '0x80ba443e932bbb3f8e9078d95d6b8464e8a9eb081a3b81a3dce1c789ca476651', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:06:56.000Z'}}, {'blockNum': '0x7d24e4', 'uniqueId': '0xbd3c8a449af2d784c13bd087920d1de74b19d50e507bcf7b7a25b74da45add39:log:83', 'hash': '0xbd3c8a449af2d784c13bd087920d1de74b19d50e507bcf7b7a25b74da45add39', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb6addb825446c9bca6d1f96ee448201b10be1c7d', 'value': 1971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6ad91ea931c6ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:08:09.000Z'}}, {'blockNum': '0x7d24e4', 'uniqueId': '0xf9d9a7beacf97a6f1cbe371d316a54a65f07b86476038b70c0b0e6b770ff18f1:log:84', 'hash': '0xf9d9a7beacf97a6f1cbe371d316a54a65f07b86476038b70c0b0e6b770ff18f1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbed23a64127be8aedfc9eb0ef2db25fbc3178f43', 'value': 57686.168317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c372c6741e49240d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:08:09.000Z'}}, {'blockNum': '0x7d24ea', 'uniqueId': '0x6fb7c3282f3332afe26d99e9898f6f6437409a8e34f06b429e0648a78804132a:log:8', 'hash': '0x6fb7c3282f3332afe26d99e9898f6f6437409a8e34f06b429e0648a78804132a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 400900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x54e4d521d4c455900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:09:11.000Z'}}, {'blockNum': '0x7d24f2', 'uniqueId': '0xe3c3c454952d6fabc730524efe1b43bb3899c0ee0d5105485bd51efdf4a56d53:log:40', 'hash': '0xe3c3c454952d6fabc730524efe1b43bb3899c0ee0d5105485bd51efdf4a56d53', 'from': '0xdb379eefd85f708cacf6a50e96de88718884b580', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 299590.351, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f70d35208cab9818000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:10:32.000Z'}}, {'blockNum': '0x7d24f2', 'uniqueId': '0x27cb2c042186f4e37165ed1e5647ead45daebfbcd85d3ae037a9581b97c70f9e:log:42', 'hash': '0x27cb2c042186f4e37165ed1e5647ead45daebfbcd85d3ae037a9581b97c70f9e', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12793.506244768927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02b58990a2b7598200f6', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:10:32.000Z'}}, {'blockNum': '0x7d24f2', 'uniqueId': '0x8d803eafb6bde3056096aa1b5408afb4787a77f6d93dd02dc6618aee92b5470c:log:44', 'hash': '0x8d803eafb6bde3056096aa1b5408afb4787a77f6d93dd02dc6618aee92b5470c', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11605f830e153be80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:10:32.000Z'}}, {'blockNum': '0x7d24f2', 'uniqueId': '0x7d6e14544f12dec87cb2872e9849b6403a8e975ad2e39bf112e0bdc3776ce02f:log:45', 'hash': '0x7d6e14544f12dec87cb2872e9849b6403a8e975ad2e39bf112e0bdc3776ce02f', 'from': '0x05ee4cd61f8c7b83d4d310fe80dda49ffa9ba164', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:10:32.000Z'}}, {'blockNum': '0x7d24f2', 'uniqueId': '0xd56da487fcbb2695542f74480f3a534ca285b5e98058707f3499147286ad2bbb:log:64', 'hash': '0xd56da487fcbb2695542f74480f3a534ca285b5e98058707f3499147286ad2bbb', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 96476, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x146df974e03eb9f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:10:32.000Z'}}, {'blockNum': '0x7d24f2', 'uniqueId': '0xa4e845e053717416e772d3b22c3180ab8b7681d188a732d62c5e15844cdd0b91:log:66', 'hash': '0xa4e845e053717416e772d3b22c3180ab8b7681d188a732d62c5e15844cdd0b91', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 78260, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10927bac80bfd6500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:10:32.000Z'}}, {'blockNum': '0x7d24f2', 'uniqueId': '0x139e3124a37b069e906260893d3e878d62043996b1af65d3835013a0d407b0a2:log:68', 'hash': '0x139e3124a37b069e906260893d3e878d62043996b1af65d3835013a0d407b0a2', 'from': '0x78dcaf4eea08367133dece84deda801c32941645', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 23051.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04e19a464809b6d60000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:10:32.000Z'}}, {'blockNum': '0x7d24f8', 'uniqueId': '0x12a907f6fa5695425609a10b441ddf3be87d26ff840ec0d2daf5dbcb27e57ca9:log:2', 'hash': '0x12a907f6fa5695425609a10b441ddf3be87d26ff840ec0d2daf5dbcb27e57ca9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 73459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f8e386a21899bec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:12:46.000Z'}}, {'blockNum': '0x7d24f9', 'uniqueId': '0xeb18709c361d4e4af83bb58f85fba60d8ac0bd4afd24a0744fca37c0636568cb:log:15', 'hash': '0xeb18709c361d4e4af83bb58f85fba60d8ac0bd4afd24a0744fca37c0636568cb', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 6057.692307692308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0148635e52d118493b13', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:12:53.000Z'}}, {'blockNum': '0x7d24fb', 'uniqueId': '0x5c9656f4bc6d652c12a387131d5697356c98a71deddc21d4dd450b92f50e6b0e:log:68', 'hash': '0x5c9656f4bc6d652c12a387131d5697356c98a71deddc21d4dd450b92f50e6b0e', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 9130.434782608696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01eef63c8baa763a6f4d', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:13:13.000Z'}}, {'blockNum': '0x7d24fb', 'uniqueId': '0x5c9656f4bc6d652c12a387131d5697356c98a71deddc21d4dd450b92f50e6b0e:log:70', 'hash': '0x5c9656f4bc6d652c12a387131d5697356c98a71deddc21d4dd450b92f50e6b0e', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 9130.434782608696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01eef63c8baa763a6f4d', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:13:13.000Z'}}, {'blockNum': '0x7d24fc', 'uniqueId': '0x48c6ca7d66c15c7696dc334341d2ec0c5eac2074060c2565b071be3b2a212cda:log:12', 'hash': '0x48c6ca7d66c15c7696dc334341d2ec0c5eac2074060c2565b071be3b2a212cda', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x5d0bf608dd7f6f76e00f5e49fbaff03b3da34b83', 'value': 10000.8065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e25120d34cd9a4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:13:33.000Z'}}, {'blockNum': '0x7d2506', 'uniqueId': '0xddc49aa72d59f5a3bd417bf6557f72fb160bb98b2912b01c1c16b747ba0b11c6:log:2', 'hash': '0xddc49aa72d59f5a3bd417bf6557f72fb160bb98b2912b01c1c16b747ba0b11c6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 78195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x108ef59e1d2255ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:15:50.000Z'}}, {'blockNum': '0x7d2506', 'uniqueId': '0x2ed8b6b2e7e33440741439030175fe9d0d5cd67546b66fd84aa8f64c8814dbb2:log:13', 'hash': '0x2ed8b6b2e7e33440741439030175fe9d0d5cd67546b66fd84aa8f64c8814dbb2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 43918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x094cccaf5876a5780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:15:50.000Z'}}, {'blockNum': '0x7d2522', 'uniqueId': '0xdfaddf42c7da95ef22f6a0feab9ff80ed5967777af075106e70d06c843d66f24:log:26', 'hash': '0xdfaddf42c7da95ef22f6a0feab9ff80ed5967777af075106e70d06c843d66f24', 'from': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 133695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1c4f9ed74988199c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:20:47.000Z'}}, {'blockNum': '0x7d2522', 'uniqueId': '0x13fe67c964250449612d38d753b6f12094d3c3d1bd1e5f7cf72663f14c70f000:log:64', 'hash': '0x13fe67c964250449612d38d753b6f12094d3c3d1bd1e5f7cf72663f14c70f000', 'from': '0xbed23a64127be8aedfc9eb0ef2db25fbc3178f43', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57686.168317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0c372c6741e49240d000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:20:47.000Z'}}, {'blockNum': '0x7d2528', 'uniqueId': '0x88055c21fd53dc76546b756abcc04314910c14b878fe79243f832e0560621ea7:log:6', 'hash': '0x88055c21fd53dc76546b756abcc04314910c14b878fe79243f832e0560621ea7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 81189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x113143b6de3e05740000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:22:39.000Z'}}, {'blockNum': '0x7d2531', 'uniqueId': '0xed332b6715e9ecc216c75d65e01106c06c059a941c2d4fa1026ccbcf9116fdd0:log:12', 'hash': '0xed332b6715e9ecc216c75d65e01106c06c059a941c2d4fa1026ccbcf9116fdd0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 408100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x566b2534518832100000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:24:10.000Z'}}, {'blockNum': '0x7d2535', 'uniqueId': '0xd3706774b026d867abda51a815ad36c0555f4254ced11608b69785fcc0f18cff:log:28', 'hash': '0xd3706774b026d867abda51a815ad36c0555f4254ced11608b69785fcc0f18cff', 'from': '0x251701cb6f50691c0dfcdfd8e9fee27ebaed7b12', 'to': '0x4882d0f97fbaa3c651736e1edc9a6fefa3fff343', 'value': 8507.75652242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01cd34d6f91d74d34a40', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:26:16.000Z'}}, {'blockNum': '0x7d2535', 'uniqueId': '0x2f45cebf5dd94a488b439efc300eb14315e03943b6651a945728dedfe8545dd2:log:77', 'hash': '0x2f45cebf5dd94a488b439efc300eb14315e03943b6651a945728dedfe8545dd2', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 7160.487804878048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01842bbaf8a570ace0c7', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:26:16.000Z'}}, {'blockNum': '0x7d2539', 'uniqueId': '0x46d8c633fdfabeab77750fc0c5cbb23cbdc0fe2ff5d72ff242e100f3002ddc3c:log:6', 'hash': '0x46d8c633fdfabeab77750fc0c5cbb23cbdc0fe2ff5d72ff242e100f3002ddc3c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'value': 314988.071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x42b3899c802cc93d8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:27:41.000Z'}}, {'blockNum': '0x7d253b', 'uniqueId': '0xe1fa0ff4661bd5f2727507697a5525404829d86b86da68e605d970c20d826b59:log:12', 'hash': '0xe1fa0ff4661bd5f2727507697a5525404829d86b86da68e605d970c20d826b59', 'from': '0x2e46956565cebdcbbb39ecd22af02e1916a2fe37', 'to': '0xa62a0ad888e1cdcdc66d9d6886d96b90dbf3d0f1', 'value': 27.02266748, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x017703cce69ce67000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:28:18.000Z'}}, {'blockNum': '0x7d2548', 'uniqueId': '0x74f4fa4505010efd5629be2824beb76f9ea32b9e96f1ca9985ce838a49bc2b93:log:7', 'hash': '0x74f4fa4505010efd5629be2824beb76f9ea32b9e96f1ca9985ce838a49bc2b93', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 80820, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x111d42cf8549be500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:31:22.000Z'}}, {'blockNum': '0x7d2550', 'uniqueId': '0x8ced0848b82b4e10a1712d43f2a8854fe22b8bbb5a2c4d0515214d92fdee103e:log:39', 'hash': '0x8ced0848b82b4e10a1712d43f2a8854fe22b8bbb5a2c4d0515214d92fdee103e', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'value': 50326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa82d8c996ca4980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:32:55.000Z'}}, {'blockNum': '0x7d2552', 'uniqueId': '0x0895a6f16f55c52ea7bc90e113d0591e76661228e7cb975623d0bee112fa6f20:log:3', 'hash': '0x0895a6f16f55c52ea7bc90e113d0591e76661228e7cb975623d0bee112fa6f20', 'from': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 314988.071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x42b3899c802cc93d8000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:33:11.000Z'}}, {'blockNum': '0x7d2554', 'uniqueId': '0xf879c1644cacbcb43b91b11d546797233ee37be2e72852400ce205948b9db2a3:log:34', 'hash': '0xf879c1644cacbcb43b91b11d546797233ee37be2e72852400ce205948b9db2a3', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 72890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f5ff40c3a8ea80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:33:21.000Z'}}, {'blockNum': '0x7d255e', 'uniqueId': '0x43f0943e0f12050f9b818eb137b732ca81227e940b280d31b090d539f19b2583:log:0', 'hash': '0x43f0943e0f12050f9b818eb137b732ca81227e940b280d31b090d539f19b2583', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 77672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10729b88dc1b5ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:36:03.000Z'}}, {'blockNum': '0x7d2565', 'uniqueId': '0x37147681a3e67bc930e53e323aede31446da1563b7a2d714a8b32ecb427db7e7:log:6', 'hash': '0x37147681a3e67bc930e53e323aede31446da1563b7a2d714a8b32ecb427db7e7', 'from': '0xffea7d2cca793b1d94e6e5d1e0861434635cea9c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 50326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa82d8c996ca4980000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:37:19.000Z'}}, {'blockNum': '0x7d2569', 'uniqueId': '0x9a0594f586ff22cde2e8248308d40df309b46be879bff6c147c0445981e510da:log:0', 'hash': '0x9a0594f586ff22cde2e8248308d40df309b46be879bff6c147c0445981e510da', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 78195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x108ef59e1d2255ec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:38:02.000Z'}}, {'blockNum': '0x7d256b', 'uniqueId': '0xa6a028f087a15968f51a85fe47296ddef31aa708ccd1c6271fe0e60751dab354:log:16', 'hash': '0xa6a028f087a15968f51a85fe47296ddef31aa708ccd1c6271fe0e60751dab354', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 83769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11bd206828d101440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:38:16.000Z'}}, {'blockNum': '0x7d2571', 'uniqueId': '0x2f1974de53c7ef1c636017829a3df7b6d9fe0319e84af3cffaa42edc881f6124:log:35', 'hash': '0x2f1974de53c7ef1c636017829a3df7b6d9fe0319e84af3cffaa42edc881f6124', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 77672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10729b88dc1b5ca00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:40:45.000Z'}}, {'blockNum': '0x7d2573', 'uniqueId': '0xa15cd8f1d1c30b77389c8bef49e13281ae4097c5961e73d59d46d028ae921027:log:6', 'hash': '0xa15cd8f1d1c30b77389c8bef49e13281ae4097c5961e73d59d46d028ae921027', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb6e41688d40eff755840a14a9cfabbb770607e58', 'value': 69935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ecf2f17207d5f5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:41:23.000Z'}}, {'blockNum': '0x7d258a', 'uniqueId': '0x382e75e4cd23214808e3c5544717c2121ddb65cc0498bd254ec340b261476ac8:log:103', 'hash': '0x382e75e4cd23214808e3c5544717c2121ddb65cc0498bd254ec340b261476ac8', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 83769, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x11bd206828d101440000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:46:17.000Z'}}, {'blockNum': '0x7d258b', 'uniqueId': '0xff7a2118cb20b4af698675c1637686802726c09bf30ae9a281ebda0013031d29:log:12', 'hash': '0xff7a2118cb20b4af698675c1637686802726c09bf30ae9a281ebda0013031d29', 'from': '0x9e06055cf712cd3fe883684bf2f1b748d3b450e3', 'to': '0x731794b14892f16bec982808ad9f661ecb4445cc', 'value': 104621.02357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1627845d86f9c3ef2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:46:55.000Z'}}, {'blockNum': '0x7d258e', 'uniqueId': '0x70bfaea23811c46f98a81ee45315c335331b61e8323b4aa8de2562be363d4766:log:72', 'hash': '0x70bfaea23811c46f98a81ee45315c335331b61e8323b4aa8de2562be363d4766', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x04b9fa7ee32651d092632ef1fec27513a49fee9a', 'value': 1594.401010562884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x566ec2479bbc895900', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:47:52.000Z'}}, {'blockNum': '0x7d259d', 'uniqueId': '0x0b34736ced9521a73799e1450147777c435688bebd2905ccf783665578ec02f6:log:46', 'hash': '0x0b34736ced9521a73799e1450147777c435688bebd2905ccf783665578ec02f6', 'from': '0x04b9fa7ee32651d092632ef1fec27513a49fee9a', 'to': '0xcda8b66311dcd780c155bfa9c00617b3835f9710', 'value': 1594.401010562884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x566ec2479bbc895900', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:50:56.000Z'}}, {'blockNum': '0x7d25b3', 'uniqueId': '0xb745296431d389ee0b8ce6d40bbf360292ace4bad678244271c21054c8855660:log:7', 'hash': '0xb745296431d389ee0b8ce6d40bbf360292ace4bad678244271c21054c8855660', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 37710, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07fc4360d3db6c780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T16:56:37.000Z'}}, {'blockNum': '0x7d25bf', 'uniqueId': '0x7ffb14a034e8294edf3ff54d92b991e1f9cdc61ef225067b257f209c962199d4:log:18', 'hash': '0x7ffb14a034e8294edf3ff54d92b991e1f9cdc61ef225067b257f209c962199d4', 'from': '0x3af768337630b9d1e601d591a79c9725d7afe09c', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 85556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x121e000380e278500000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:00:11.000Z'}}, {'blockNum': '0x7d25c0', 'uniqueId': '0x0854d15c5aeccefc01d9c8c254201a0b74007dc3ecb85ad9f858ff9df7f4e750:log:1', 'hash': '0x0854d15c5aeccefc01d9c8c254201a0b74007dc3ecb85ad9f858ff9df7f4e750', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 72890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6f5ff40c3a8ea80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:00:16.000Z'}}, {'blockNum': '0x7d25c1', 'uniqueId': '0xf358de2464812bfe542f87bb71199c18954634a5f9218796f8f6ad96a10d95eb:log:41', 'hash': '0xf358de2464812bfe542f87bb71199c18954634a5f9218796f8f6ad96a10d95eb', 'from': '0xcda8b66311dcd780c155bfa9c00617b3835f9710', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2591.587233272484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8c7d7f69d7fbcef100', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:00:28.000Z'}}, {'blockNum': '0x7d25c1', 'uniqueId': '0x4f314338755274dc1615cd73612d17d51bf3982929f26abf00f4385e21971f45:log:76', 'hash': '0x4f314338755274dc1615cd73612d17d51bf3982929f26abf00f4385e21971f45', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 551946.26511674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x74e111260b07f19da800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:00:28.000Z'}}, {'blockNum': '0x7d25e1', 'uniqueId': '0xce9be27565f4138e3bbe9558ea0ea041ab94e860df60c7e863bf3c8b6bcb7a51:log:99', 'hash': '0xce9be27565f4138e3bbe9558ea0ea041ab94e860df60c7e863bf3c8b6bcb7a51', 'from': '0x838cb29d3f92995e02ab1cd91a475c79776ab624', 'to': '0x680dcbcd5ae8e7b508c7b0e222cc147de5bf3eea', 'value': 9854.3526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0216349d471a2f058000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:07:31.000Z'}}, {'blockNum': '0x7d25e5', 'uniqueId': '0x6294b327579ab357d5487a3b0e471477d753f072c9a82f4a875afaf217e677fe:log:0', 'hash': '0x6294b327579ab357d5487a3b0e471477d753f072c9a82f4a875afaf217e677fe', 'from': '0x731794b14892f16bec982808ad9f661ecb4445cc', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 104621.02357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1627845d86f9c3ef2000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:08:06.000Z'}}, {'blockNum': '0x7d25e6', 'uniqueId': '0xccf8f70a4f1e1582026da76b9e0ab444b273bfecbbc73c0d354870235110afc7:log:0', 'hash': '0xccf8f70a4f1e1582026da76b9e0ab444b273bfecbbc73c0d354870235110afc7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 347138.51487905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49826aa63fd19c526400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:08:10.000Z'}}, {'blockNum': '0x7d25f5', 'uniqueId': '0x352a51d6b4b5f148a9c7be4f68d4478c9636839e1dbd9fc15b4c3d28e2819223:log:13', 'hash': '0x352a51d6b4b5f148a9c7be4f68d4478c9636839e1dbd9fc15b4c3d28e2819223', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 551946.26511674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x74e111260b07f19da800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:10:54.000Z'}}, {'blockNum': '0x7d2608', 'uniqueId': '0x32c747f8d9081eb2d5c293af51f78b3dcfe0ce3290cd342ef7eef4c4d7599862:log:17', 'hash': '0x32c747f8d9081eb2d5c293af51f78b3dcfe0ce3290cd342ef7eef4c4d7599862', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 347138.51487905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x49826aa63fd19c526400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:14:58.000Z'}}, {'blockNum': '0x7d260e', 'uniqueId': '0x67f154e3a83c9a1406ae09f85c2c21eb0fa45fd505ff47189996b9ed3bc9a32e:log:0', 'hash': '0x67f154e3a83c9a1406ae09f85c2c21eb0fa45fd505ff47189996b9ed3bc9a32e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 27991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05ed6528955376fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:16:19.000Z'}}, {'blockNum': '0x7d2620', 'uniqueId': '0x469ecff75131e75dd78990c69c6329045e91ffb0fbd706a045feaed5935af15f:log:96', 'hash': '0x469ecff75131e75dd78990c69c6329045e91ffb0fbd706a045feaed5935af15f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 19033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0407c7ef72d819c40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:20:06.000Z'}}, {'blockNum': '0x7d2627', 'uniqueId': '0x1fb845ecf3dc4a41a145c981fc10cabd10b50439a3c26ef4190c10b79b3266b9:log:72', 'hash': '0x1fb845ecf3dc4a41a145c981fc10cabd10b50439a3c26ef4190c10b79b3266b9', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 27991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05ed6528955376fc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:21:57.000Z'}}, {'blockNum': '0x7d26a6', 'uniqueId': '0x8a87150046407bcdc8d6c3d6d96777d4829469a3109cccd9bafc334adec36145:log:20', 'hash': '0x8a87150046407bcdc8d6c3d6d96777d4829469a3109cccd9bafc334adec36145', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 83116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1199ba36208f07300000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T17:50:12.000Z'}}, {'blockNum': '0x7d26d5', 'uniqueId': '0x7117d4f109f8c460d2af8d2606d049828827a1b82069e401391cdf20b125ada6:log:39', 'hash': '0x7117d4f109f8c460d2af8d2606d049828827a1b82069e401391cdf20b125ada6', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 43918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x094cccaf5876a5780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:00:37.000Z'}}, {'blockNum': '0x7d270e', 'uniqueId': '0x86e304ce50bd9b6d290a058ad9016df7d53148b02715cd7f478100997d632a44:log:0', 'hash': '0x86e304ce50bd9b6d290a058ad9016df7d53148b02715cd7f478100997d632a44', 'from': '0x0a5c670d2d0b00812117f3294826cc2c5c22648e', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 975.40155541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x34e06a72bf188bb400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:15:53.000Z'}}, {'blockNum': '0x7d2712', 'uniqueId': '0xd6b945c3878676e55a7618f2fafbed8e4a63e98d90f17f6c4877d86e13efbb3d:log:6', 'hash': '0xd6b945c3878676e55a7618f2fafbed8e4a63e98d90f17f6c4877d86e13efbb3d', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0xf3a71cc1be5ce833c471e3f25aa391f9cd56e1aa', 'value': 1882.94164471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x661310899c8154fc00', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:16:33.000Z'}}, {'blockNum': '0x7d2748', 'uniqueId': '0xc2e29a90d9631e415b012a6754c7f0251bb1b40186020199e5b5fd923bcb8bfa:log:8', 'hash': '0xc2e29a90d9631e415b012a6754c7f0251bb1b40186020199e5b5fd923bcb8bfa', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 89194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x12e33767ddef3f680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:25:14.000Z'}}, {'blockNum': '0x7d2758', 'uniqueId': '0x5da6ee241d4b4e431b93e8f60bf93d344fb9f6e6fb34572022b71c6f000ff534:log:3', 'hash': '0x5da6ee241d4b4e431b93e8f60bf93d344fb9f6e6fb34572022b71c6f000ff534', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:29:23.000Z'}}, {'blockNum': '0x7d2772', 'uniqueId': '0xa872eb6282361052e6b7116a1c236e23393a9f9c7d7a198afb92f17998aff778:log:20', 'hash': '0xa872eb6282361052e6b7116a1c236e23393a9f9c7d7a198afb92f17998aff778', 'from': '0x31f9f469b73daa49e50d0111058172763f799302', 'to': '0xd6f9b1f28a5457d6ec54c233c90987d9a85d4fd1', 'value': 12646.44255536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02ad90a574602816c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:33:43.000Z'}}, {'blockNum': '0x7d2778', 'uniqueId': '0xc2f4f7826dde12ceb24ecac567c1f134d7095d6b8c2fe1ba6752a200f58e9d42:log:0', 'hash': '0xc2f4f7826dde12ceb24ecac567c1f134d7095d6b8c2fe1ba6752a200f58e9d42', 'from': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:34:50.000Z'}}, {'blockNum': '0x7d278f', 'uniqueId': '0x6d1d510d5bc152c9719faf273dd2092b8d1722ee206151beca13e89cf60a438c:log:16', 'hash': '0x6d1d510d5bc152c9719faf273dd2092b8d1722ee206151beca13e89cf60a438c', 'from': '0xd6f9b1f28a5457d6ec54c233c90987d9a85d4fd1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12646.44255536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02ad90a574602816c000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:40:57.000Z'}}, {'blockNum': '0x7d27a3', 'uniqueId': '0x871dbe48a62584a9e15d9dddd312a66aa646adad897a8202d575735c0faa4785:log:33', 'hash': '0x871dbe48a62584a9e15d9dddd312a66aa646adad897a8202d575735c0faa4785', 'from': '0xcf40d766ef8392ec7b05c866b5c3e42bcb4db902', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 5309515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04645562884be39a4c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:45:09.000Z'}}, {'blockNum': '0x7d27d7', 'uniqueId': '0x9ace7d946553ab614c2c04b98c0da677fabf327bf4b357c4b8ed9f8085bd00c9:log:0', 'hash': '0x9ace7d946553ab614c2c04b98c0da677fabf327bf4b357c4b8ed9f8085bd00c9', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 33375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0711432b07abe61c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:54:59.000Z'}}, {'blockNum': '0x7d27e8', 'uniqueId': '0xd35afebf8586ced44af978e59d32a3e8b21367b7241817d425b2b35a40e3d5fa:log:9', 'hash': '0xd35afebf8586ced44af978e59d32a3e8b21367b7241817d425b2b35a40e3d5fa', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 33122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x07038c16781f78480000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T18:58:24.000Z'}}, {'blockNum': '0x7d2819', 'uniqueId': '0x93fff557c0ec217949d3cdd4fa2e4253f04216a6d74faca634b6c95a7e1619f9:log:2', 'hash': '0x93fff557c0ec217949d3cdd4fa2e4253f04216a6d74faca634b6c95a7e1619f9', 'from': '0x26414eeec7a87301f561adcf42ee4ce1a46d6f78', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:06:23.000Z'}}, {'blockNum': '0x7d2819', 'uniqueId': '0xde5abaedbeb289c71121e85d4e3b402b1176c2d1865a4a0ae1ada8cf4f8463c4:log:3', 'hash': '0xde5abaedbeb289c71121e85d4e3b402b1176c2d1865a4a0ae1ada8cf4f8463c4', 'from': '0x8e7134d98a1c2a0ae6a7d6c2c133d5ddea8eaca4', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 13254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02ce8033194c63580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:06:23.000Z'}}, {'blockNum': '0x7d281a', 'uniqueId': '0x6e9ce3ecc9c837059ab6d878eae06c3f25e1d36b1ca52050144e9b50ff2b072c:log:22', 'hash': '0x6e9ce3ecc9c837059ab6d878eae06c3f25e1d36b1ca52050144e9b50ff2b072c', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 66652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0e1d36501e91b7f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:06:33.000Z'}}, {'blockNum': '0x7d284e', 'uniqueId': '0x561f6bd767d4dbd8f5b8430c84f8a161d2e91cf5be5d134a2bb669e40775d33c:log:17', 'hash': '0x561f6bd767d4dbd8f5b8430c84f8a161d2e91cf5be5d134a2bb669e40775d33c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3ae5f84f9a1584b7055cbcdf0353fb6651828566', 'value': 5935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0141bcabaf05b75c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:17:20.000Z'}}, {'blockNum': '0x7d2868', 'uniqueId': '0xab054e065e37dc73dae0b79c07e6700499d7b74140a8429fb2dbc2ff9785ebb7:log:1', 'hash': '0xab054e065e37dc73dae0b79c07e6700499d7b74140a8429fb2dbc2ff9785ebb7', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 30553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0678480d0744adc40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:22:21.000Z'}}, {'blockNum': '0x7d286c', 'uniqueId': '0xe9146dbd3830a0c9f334f90547ffc8f090fe62e38a0c546664f43e5ca673480e:log:3', 'hash': '0xe9146dbd3830a0c9f334f90547ffc8f090fe62e38a0c546664f43e5ca673480e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 19471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x041f86680a387edc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:23:39.000Z'}}, {'blockNum': '0x7d286d', 'uniqueId': '0x8e698602be16d684739502ba4a8267292c040166f354bc333872dc13cbc9e557:log:3', 'hash': '0x8e698602be16d684739502ba4a8267292c040166f354bc333872dc13cbc9e557', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3ae5f84f9a1584b7055cbcdf0353fb6651828566', 'value': 140772.016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1dcf442ad5e4d5780000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:24:08.000Z'}}, {'blockNum': '0x7d2875', 'uniqueId': '0x9921e72cc68cf58d4b5d5fc643d561459313c63dc019da9740da6bf89e67923e:log:1', 'hash': '0x9921e72cc68cf58d4b5d5fc643d561459313c63dc019da9740da6bf89e67923e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 37818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08021e2de7a60aa80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:26:28.000Z'}}, {'blockNum': '0x7d288a', 'uniqueId': '0x4edc269150d7b8d553f02513df4fff0b9a72e68a58cddc351cac3a203c34b3ab:log:8', 'hash': '0x4edc269150d7b8d553f02513df4fff0b9a72e68a58cddc351cac3a203c34b3ab', 'from': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x041f86680a387edc0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:30:44.000Z'}}, {'blockNum': '0x7d28b3', 'uniqueId': '0xe7f535a100bf5f78956e8827504636f506932c841aeff9c666f5bf6718d25a47:log:22', 'hash': '0xe7f535a100bf5f78956e8827504636f506932c841aeff9c666f5bf6718d25a47', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3281.3856613002145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb1e25fb96d1b8c2d19', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:43:05.000Z'}}, {'blockNum': '0x7d28b3', 'uniqueId': '0xe7f535a100bf5f78956e8827504636f506932c841aeff9c666f5bf6718d25a47:log:24', 'hash': '0xe7f535a100bf5f78956e8827504636f506932c841aeff9c666f5bf6718d25a47', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3281.385569166064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb1e25f65a174400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:43:05.000Z'}}, {'blockNum': '0x7d28b3', 'uniqueId': '0xe7f535a100bf5f78956e8827504636f506932c841aeff9c666f5bf6718d25a47:log:25', 'hash': '0xe7f535a100bf5f78956e8827504636f506932c841aeff9c666f5bf6718d25a47', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3281.385569166064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb1e25f65a174400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:43:05.000Z'}}, {'blockNum': '0x7d28bb', 'uniqueId': '0x800f80e21d22165258ad02d8fc9ea90cb2219b153eddb1b887fcd1c23c9fd8aa:log:27', 'hash': '0x800f80e21d22165258ad02d8fc9ea90cb2219b153eddb1b887fcd1c23c9fd8aa', 'from': '0x471e58dc305148549d6f3648eec91a4dc50d5ddc', 'to': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:43:55.000Z'}}, {'blockNum': '0x7d28c3', 'uniqueId': '0xb0b2debc921b7737679ce46d903e1e51384ce7d99e45c12df5c7d94b0f33eb37:log:7', 'hash': '0xb0b2debc921b7737679ce46d903e1e51384ce7d99e45c12df5c7d94b0f33eb37', 'from': '0xcde67ff71a0f40eef7fcd03992a300bfb63cf0c0', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x56bc75e2d631000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:45:03.000Z'}}, {'blockNum': '0x7d28c9', 'uniqueId': '0x17c0b2fa2623e650137e62bc8812fa193124cb8f6380d89a34c70284fd49e1a1:log:3', 'hash': '0x17c0b2fa2623e650137e62bc8812fa193124cb8f6380d89a34c70284fd49e1a1', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 32294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06d6a9478b0e10d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:46:29.000Z'}}, {'blockNum': '0x7d28d8', 'uniqueId': '0x323a6667e7a945ca09c6844d44149955c9d4ce84249c73a7079233f2ebf3ce9a:log:29', 'hash': '0x323a6667e7a945ca09c6844d44149955c9d4ce84249c73a7079233f2ebf3ce9a', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3339.17149665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xb504504083acb76400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:50:39.000Z'}}, {'blockNum': '0x7d28e6', 'uniqueId': '0x4324da45875f4b25a6b213cb59109720b27257017caab81f99911cb41dc67a4a:log:48', 'hash': '0x4324da45875f4b25a6b213cb59109720b27257017caab81f99911cb41dc67a4a', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3069.2385361593874, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa6623dbb1d4035bd95', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:53:32.000Z'}}, {'blockNum': '0x7d28e6', 'uniqueId': '0x4324da45875f4b25a6b213cb59109720b27257017caab81f99911cb41dc67a4a:log:50', 'hash': '0x4324da45875f4b25a6b213cb59109720b27257017caab81f99911cb41dc67a4a', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3069.2384553264983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa6623d7198e0900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:53:32.000Z'}}, {'blockNum': '0x7d28e6', 'uniqueId': '0x4324da45875f4b25a6b213cb59109720b27257017caab81f99911cb41dc67a4a:log:51', 'hash': '0x4324da45875f4b25a6b213cb59109720b27257017caab81f99911cb41dc67a4a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3069.2384553264983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa6623d7198e0900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:53:32.000Z'}}, {'blockNum': '0x7d28e7', 'uniqueId': '0x696e23769dda94d49da4c7252988d355b8eb6abfcdbc04d7ab43d8b7835c30b6:log:0', 'hash': '0x696e23769dda94d49da4c7252988d355b8eb6abfcdbc04d7ab43d8b7835c30b6', 'from': '0x969141c94e21c7feeb1df856c85b54924e50d989', 'to': '0xe000372cbc166717d423c034efe6bc64ab0df656', 'value': 20465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x045568ed6fc871240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:54:00.000Z'}}, {'blockNum': '0x7d28ed', 'uniqueId': '0xb8630980e99d7d9fce7b0eef2f35a77a6f177e362d3ba2f9a359d35bb2f460bd:log:37', 'hash': '0xb8630980e99d7d9fce7b0eef2f35a77a6f177e362d3ba2f9a359d35bb2f460bd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 80682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1115c7ad087182680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T19:56:03.000Z'}}, {'blockNum': '0x7d28fe', 'uniqueId': '0x20763c43261ef23f0ffc626e50b66270674429136c94c612f453d607de72b5a3:log:0', 'hash': '0x20763c43261ef23f0ffc626e50b66270674429136c94c612f453d607de72b5a3', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 89194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x12e33767ddef3f680000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T20:01:02.000Z'}}, {'blockNum': '0x7d28fe', 'uniqueId': '0xe9c1bf8d595d672b3b96d9e0fd52c215276c56bc9a47c04f5f3bee8c960ca205:log:3', 'hash': '0xe9c1bf8d595d672b3b96d9e0fd52c215276c56bc9a47c04f5f3bee8c960ca205', 'from': '0xe000372cbc166717d423c034efe6bc64ab0df656', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x045568ed6fc871240000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T20:01:02.000Z'}}, {'blockNum': '0x7d2942', 'uniqueId': '0x2c6570309cfa805f34a63a64c15e45931a6dd9b24118b3101a10ad7b59139c30:log:0', 'hash': '0x2c6570309cfa805f34a63a64c15e45931a6dd9b24118b3101a10ad7b59139c30', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1333.79262258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x484e174b80158e8800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T20:17:00.000Z'}}, {'blockNum': '0x7d2942', 'uniqueId': '0x0c9ad957c175b00edd4cb5508428a28842fd82c8cd061e15132c13cf3091151f:log:1', 'hash': '0x0c9ad957c175b00edd4cb5508428a28842fd82c8cd061e15132c13cf3091151f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x86cde1574ebc6328d75da6b36ab56e497720449d', 'value': 18785.131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x03fa580fdc9c42778000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T20:17:00.000Z'}}, {'blockNum': '0x7d2948', 'uniqueId': '0xe58a7a162d41d74a8e7f4aebc3bb282e714f28f185a649338f9e57a2f4c6448e:log:13', 'hash': '0xe58a7a162d41d74a8e7f4aebc3bb282e714f28f185a649338f9e57a2f4c6448e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd9e33b1a914d09bf4674c7c7dbf63a2ec87284c4', 'value': 1333.79262258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x484e174b80158e8800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T20:17:38.000Z'}}, {'blockNum': '0x7d29b0', 'uniqueId': '0xbcc7269145bceb8e94a399b7ca1ee9caf0baa4165f6c8b407dfd513b393c805f:log:4', 'hash': '0xbcc7269145bceb8e94a399b7ca1ee9caf0baa4165f6c8b407dfd513b393c805f', 'from': '0xd73c838cfce617c5f127e16dd85b25e6d69888fa', 'to': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T20:38:19.000Z'}}, {'blockNum': '0x7d2a0d', 'uniqueId': '0xeb61d6fb432596c446de82e8b63a2e0715d8d564e5e206e72300870ea7cf4ccd:log:23', 'hash': '0xeb61d6fb432596c446de82e8b63a2e0715d8d564e5e206e72300870ea7cf4ccd', 'from': '0x9ab21e7ffcd83ddeccc01ebc9dc94c28ee7bb65f', 'to': '0x85995bff3af5c88a3d1ec7d45b91931f88a5d811', 'value': 2400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x821ab0d44149800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T20:57:41.000Z'}}, {'blockNum': '0x7d2a2b', 'uniqueId': '0xca8725d730e11ad2370a7114fd90eac4696f84cf1256ece56f794b09ffc62711:log:0', 'hash': '0xca8725d730e11ad2370a7114fd90eac4696f84cf1256ece56f794b09ffc62711', 'from': '0x435547076005a9eef296f998f5873f9bc7efb6b6', 'to': '0xb3f0615afd8d63b3f629bbc4a84c0d26163a9498', 'value': 77.39163934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04320655f0f5d8b800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T21:04:49.000Z'}}, {'blockNum': '0x7d2a64', 'uniqueId': '0xae9fe4caf32fe41947861ea792b0dc05decdc118133235867d67f6fd8bd28b5e:log:0', 'hash': '0xae9fe4caf32fe41947861ea792b0dc05decdc118133235867d67f6fd8bd28b5e', 'from': '0x85995bff3af5c88a3d1ec7d45b91931f88a5d811', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 2400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x821ab0d44149800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T21:17:18.000Z'}}, {'blockNum': '0x7d2a90', 'uniqueId': '0x672bd8ff722b1defeca79ae2a3bdde64ae6287953bdcde9b6c57f380b5b4aa17:log:11', 'hash': '0x672bd8ff722b1defeca79ae2a3bdde64ae6287953bdcde9b6c57f380b5b4aa17', 'from': '0xdbee3054b647f23875af19a47cae0653d0255e51', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 219.3953262785306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0be4b8c6d814bdcfdb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T21:26:34.000Z'}}, {'blockNum': '0x7d2a90', 'uniqueId': '0x672bd8ff722b1defeca79ae2a3bdde64ae6287953bdcde9b6c57f380b5b4aa17:log:12', 'hash': '0x672bd8ff722b1defeca79ae2a3bdde64ae6287953bdcde9b6c57f380b5b4aa17', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 219.3953262785306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0be4b8c6d814bdcfdb', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T21:26:34.000Z'}}, {'blockNum': '0x7d2b94', 'uniqueId': '0xdaea3caae0a424201c7c4d9cc5f15d8145d49aa31f2c8c60599051902fe524d7:log:0', 'hash': '0xdaea3caae0a424201c7c4d9cc5f15d8145d49aa31f2c8c60599051902fe524d7', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 32358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06da217537f7e9d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T22:23:24.000Z'}}, {'blockNum': '0x7d2baf', 'uniqueId': '0x27a7053dfcf5b16e5d5865e84c01e4d200d21d2b451186a7387461a9695f6f9c:log:0', 'hash': '0x27a7053dfcf5b16e5d5865e84c01e4d200d21d2b451186a7387461a9695f6f9c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1312.08232745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4720ccd51b0d038400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T22:29:36.000Z'}}, {'blockNum': '0x7d2bb5', 'uniqueId': '0x57f077e6c049a8d91b63952fea482eeccae130dc4fdf1fd624ab8269ed8270cd:log:7', 'hash': '0x57f077e6c049a8d91b63952fea482eeccae130dc4fdf1fd624ab8269ed8270cd', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x9ba7fdbb3ac2a2c69ca6e8d104f9291242a9bce3', 'value': 1312.08232745, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x4720ccd51b0d038400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T22:30:38.000Z'}}, {'blockNum': '0x7d2bc8', 'uniqueId': '0x91f67142a7e8adb077e91f8f64828d40b0cf7c46a212fb021a5b0c8e55c4f14e:log:43', 'hash': '0x91f67142a7e8adb077e91f8f64828d40b0cf7c46a212fb021a5b0c8e55c4f14e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x679a092339d525ab15ac4926d11abd7ad3f3c953', 'value': 8530.09017585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01ce6ac80c94b499a400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T22:35:25.000Z'}}, {'blockNum': '0x7d2bdf', 'uniqueId': '0x5d6553751c61a46ab1a0dc788d4a4591a26bebdaa3322d3d1fb55cdf616048c9:log:2', 'hash': '0x5d6553751c61a46ab1a0dc788d4a4591a26bebdaa3322d3d1fb55cdf616048c9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 694037.70197533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92f7dbf56938a0f0d400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T22:40:45.000Z'}}, {'blockNum': '0x7d2be1', 'uniqueId': '0x45e0f8351a86e0a2c4571ff20e8fb86e67e31cda341dbc3d2aa1a53246130010:log:9', 'hash': '0x45e0f8351a86e0a2c4571ff20e8fb86e67e31cda341dbc3d2aa1a53246130010', 'from': '0x679a092339d525ab15ac4926d11abd7ad3f3c953', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8530.09017585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01ce6ac80c94b499a400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T22:41:08.000Z'}}, {'blockNum': '0x7d2c37', 'uniqueId': '0xb296e5fd7336458c04e1f68d98c3724b9aefc7983ed2ccfd9d3ad911991e86af:log:3', 'hash': '0xb296e5fd7336458c04e1f68d98c3724b9aefc7983ed2ccfd9d3ad911991e86af', 'from': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 32358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06da217537f7e9d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T23:01:57.000Z'}}, {'blockNum': '0x7d2c87', 'uniqueId': '0x7a7ad8343a4a14521f924bb54eaf9ff850de851154fa0c092b75e811470a6824:log:1', 'hash': '0x7a7ad8343a4a14521f924bb54eaf9ff850de851154fa0c092b75e811470a6824', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 694037.70197533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x92f7dbf56938a0f0d400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T23:20:22.000Z'}}, {'blockNum': '0x7d2cb5', 'uniqueId': '0x96606782c8d6960870ae439315b241c85b575c343be7bbacb72271be8f570c56:log:41', 'hash': '0x96606782c8d6960870ae439315b241c85b575c343be7bbacb72271be8f570c56', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 3064.0776699029125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa61a9ea698f1b88b2f', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T23:31:32.000Z'}}, {'blockNum': '0x7d2cbd', 'uniqueId': '0xcbd7cd2c4ab7260b6bda32bd6b7c9cd638128723058a535a65b99d46eab9c85b:log:3', 'hash': '0xcbd7cd2c4ab7260b6bda32bd6b7c9cd638128723058a535a65b99d46eab9c85b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 45249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0994f4054085f2640000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T23:34:25.000Z'}}, {'blockNum': '0x7d2cd0', 'uniqueId': '0xe6f5df33c078bd1474cc4daef38be201e4590bf1abad064954bb21052f04726d:log:19', 'hash': '0xe6f5df33c078bd1474cc4daef38be201e4590bf1abad064954bb21052f04726d', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 146153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ef2f8524c3802040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T23:39:23.000Z'}}, {'blockNum': '0x7d2cd7', 'uniqueId': '0xceeb404e5adf22af41ea0cab0204bd9dad229defc2fc807f8a336274c6424efb:log:33', 'hash': '0xceeb404e5adf22af41ea0cab0204bd9dad229defc2fc807f8a336274c6424efb', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'value': 89449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x12f10a3ddae2fc040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-22T23:40:33.000Z'}}, {'blockNum': '0x7d2d35', 'uniqueId': '0xa57adcf15bef0a9ce0516fcaeac816853598d5c61c6915e8777095ce2a71c240:log:20', 'hash': '0xa57adcf15bef0a9ce0516fcaeac816853598d5c61c6915e8777095ce2a71c240', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 9981.741736929738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021d1c7e68340ba91044', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:00:32.000Z'}}, {'blockNum': '0x7d2d35', 'uniqueId': '0xa57adcf15bef0a9ce0516fcaeac816853598d5c61c6915e8777095ce2a71c240:log:24', 'hash': '0xa57adcf15bef0a9ce0516fcaeac816853598d5c61c6915e8777095ce2a71c240', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 9981.741736929738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021d1c7e68340ba91044', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:00:32.000Z'}}, {'blockNum': '0x7d2d35', 'uniqueId': '0x422a06dde2a5af515e160dfadffcd9c37bf3650be5cc64bee8d33b80680f61d3:log:31', 'hash': '0x422a06dde2a5af515e160dfadffcd9c37bf3650be5cc64bee8d33b80680f61d3', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 5022.986658838586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01104bf1694a3020edd8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:00:32.000Z'}}, {'blockNum': '0x7d2d35', 'uniqueId': '0x422a06dde2a5af515e160dfadffcd9c37bf3650be5cc64bee8d33b80680f61d3:log:33', 'hash': '0x422a06dde2a5af515e160dfadffcd9c37bf3650be5cc64bee8d33b80680f61d3', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5022.986442341154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01104bf0a462f3900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:00:32.000Z'}}, {'blockNum': '0x7d2d35', 'uniqueId': '0x422a06dde2a5af515e160dfadffcd9c37bf3650be5cc64bee8d33b80680f61d3:log:35', 'hash': '0x422a06dde2a5af515e160dfadffcd9c37bf3650be5cc64bee8d33b80680f61d3', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 5022.986442341154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01104bf0a462f3900000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:00:32.000Z'}}, {'blockNum': '0x7d2d36', 'uniqueId': '0x134137f89d446b9b46951b6bc84f477b0b1779e1e4e6cc6dedd7beea76ac9210:log:3', 'hash': '0x134137f89d446b9b46951b6bc84f477b0b1779e1e4e6cc6dedd7beea76ac9210', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 24527.097186004845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x05319dd9ac8a85bc7e61', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:00:58.000Z'}}, {'blockNum': '0x7d2d36', 'uniqueId': '0x2ce651fcc1c539939956f07fbc52aee4bc4949819105b0522a1d5371204a0357:log:68', 'hash': '0x2ce651fcc1c539939956f07fbc52aee4bc4949819105b0522a1d5371204a0357', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 9879.385383463377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02179003970868dd1ff3', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:00:58.000Z'}}, {'blockNum': '0x7d2d36', 'uniqueId': '0x2ce651fcc1c539939956f07fbc52aee4bc4949819105b0522a1d5371204a0357:log:72', 'hash': '0x2ce651fcc1c539939956f07fbc52aee4bc4949819105b0522a1d5371204a0357', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 9879.385383463377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02179003970868dd1ff3', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:00:58.000Z'}}, {'blockNum': '0x7d2d36', 'uniqueId': '0x2ce651fcc1c539939956f07fbc52aee4bc4949819105b0522a1d5371204a0357:log:73', 'hash': '0x2ce651fcc1c539939956f07fbc52aee4bc4949819105b0522a1d5371204a0357', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 9879.385383463377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02179003970868dd1ff3', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:00:58.000Z'}}, {'blockNum': '0x7d2d37', 'uniqueId': '0xfa9b413f73a678fd9338308ab492bfdd1a249e08ef183e4b8fdaaf522723de84:log:15', 'hash': '0xfa9b413f73a678fd9338308ab492bfdd1a249e08ef183e4b8fdaaf522723de84', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8c2fd1f3ae6162fd3cb3157222dc3979b42e699e', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:01:47.000Z'}}, {'blockNum': '0x7d2d37', 'uniqueId': '0x72ccd5d31278356112f3c49512ca1507217946c27690b2e96a10de9dc28d97fb:log:32', 'hash': '0x72ccd5d31278356112f3c49512ca1507217946c27690b2e96a10de9dc28d97fb', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'value': 9981.741736929738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021d1c7e68340ba91044', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:01:47.000Z'}}, {'blockNum': '0x7d2d39', 'uniqueId': '0xcfee89ed38f24e4f7271a31972181b6b5b5c64cfc7e212f08281c123d31e5588:log:23', 'hash': '0xcfee89ed38f24e4f7271a31972181b6b5b5c64cfc7e212f08281c123d31e5588', 'from': '0xe418a0e203f36cb843079f6ebf0b367e48774ac1', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 89449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x12f10a3ddae2fc040000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:02:12.000Z'}}, {'blockNum': '0x7d2d3a', 'uniqueId': '0xc8e7604304538a6d05b78825c50b8b79676667bbdf2071e4efbdc9817a2352fa:log:2', 'hash': '0xc8e7604304538a6d05b78825c50b8b79676667bbdf2071e4efbdc9817a2352fa', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 3874.4986985562778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd20978865cf03a8313', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:02:48.000Z'}}, {'blockNum': '0x7d2d3a', 'uniqueId': '0x9de5fb612e21cda6d3377195a999797294e483b478b150b3f648d61efb97112e:log:102', 'hash': '0x9de5fb612e21cda6d3377195a999797294e483b478b150b3f648d61efb97112e', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xcf099468aa606dccb676149b1b5f5715e32d3667', 'value': 62200.000073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d2bde6714ab53f19000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:02:48.000Z'}}, {'blockNum': '0x7d2d3b', 'uniqueId': '0x9ee5debf0bce07b8d2390e733f7a7eaf7f11cc6071fff8161b810c1221baba74:log:2', 'hash': '0x9ee5debf0bce07b8d2390e733f7a7eaf7f11cc6071fff8161b810c1221baba74', 'from': '0x521db06bf657ed1d6c98553a70319a8ddbac75a3', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x5e001584dfcf580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:03:12.000Z'}}, {'blockNum': '0x7d2d3b', 'uniqueId': '0x1df2866278ba8c30a0cc2434e443552d4d76d903c3cc9b6e3d70a5122d716d11:log:32', 'hash': '0x1df2866278ba8c30a0cc2434e443552d4d76d903c3cc9b6e3d70a5122d716d11', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 14447.676733556762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x030f35cac2190ebe1549', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:03:12.000Z'}}, {'blockNum': '0x7d2d3b', 'uniqueId': '0x1df2866278ba8c30a0cc2434e443552d4d76d903c3cc9b6e3d70a5122d716d11:log:36', 'hash': '0x1df2866278ba8c30a0cc2434e443552d4d76d903c3cc9b6e3d70a5122d716d11', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 14447.676733556762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x030f35cac2190ebe1549', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:03:12.000Z'}}, {'blockNum': '0x7d2d3b', 'uniqueId': '0x6726fe8a06c046a89d02664072c5862710ab2bebd894cfd4f9c44ade50891734:log:59', 'hash': '0x6726fe8a06c046a89d02664072c5862710ab2bebd894cfd4f9c44ade50891734', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 4806.2834428875385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01048c94ee867129284b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:03:12.000Z'}}, {'blockNum': '0x7d2d3b', 'uniqueId': '0x6726fe8a06c046a89d02664072c5862710ab2bebd894cfd4f9c44ade50891734:log:62', 'hash': '0x6726fe8a06c046a89d02664072c5862710ab2bebd894cfd4f9c44ade50891734', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4806.2834428875385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01048c94ee867129284b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:03:12.000Z'}}, {'blockNum': '0x7d2d3b', 'uniqueId': '0x6726fe8a06c046a89d02664072c5862710ab2bebd894cfd4f9c44ade50891734:log:64', 'hash': '0x6726fe8a06c046a89d02664072c5862710ab2bebd894cfd4f9c44ade50891734', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 4806.2834428875385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01048c94ee867129284b', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:03:12.000Z'}}, {'blockNum': '0x7d2d3c', 'uniqueId': '0x99566b688106b45a5d056f62b3ee43bfb7c7ca12007e3dd8f428d52e8f1565cd:log:78', 'hash': '0x99566b688106b45a5d056f62b3ee43bfb7c7ca12007e3dd8f428d52e8f1565cd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 68627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8846f1a2921c6c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:03:40.000Z'}}, {'blockNum': '0x7d2d3d', 'uniqueId': '0xdf9f0b33e5c57b939bac856801da353d2e6c0530e253d0bb711383db86e4fe01:log:1', 'hash': '0xdf9f0b33e5c57b939bac856801da353d2e6c0530e253d0bb711383db86e4fe01', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 31952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06c41f13770c71400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:03:44.000Z'}}, {'blockNum': '0x7d2d3e', 'uniqueId': '0xa03c2087b29334b8fe73b3563b9c447df9df569d53bc41efb9d05e6096e690a9:log:9', 'hash': '0xa03c2087b29334b8fe73b3563b9c447df9df569d53bc41efb9d05e6096e690a9', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'value': 728561.354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9a4763e03382c3a10000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:04:08.000Z'}}, {'blockNum': '0x7d2d43', 'uniqueId': '0xc52516f499cbe5bf585cfdd101c441800498c38c6c4bb2cddf02abfbc5304cd9:log:6', 'hash': '0xc52516f499cbe5bf585cfdd101c441800498c38c6c4bb2cddf02abfbc5304cd9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 223005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2f392011f0df32540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:04:42.000Z'}}, {'blockNum': '0x7d2d45', 'uniqueId': '0xc29e648414aed9df1645bed0baa4ff6ec096cde22f9849186ef967a300981dc0:log:7', 'hash': '0xc29e648414aed9df1645bed0baa4ff6ec096cde22f9849186ef967a300981dc0', 'from': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 9981.74173693, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021d1c7e68341b445400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:05:40.000Z'}}, {'blockNum': '0x7d2d48', 'uniqueId': '0x881462908d9dda17e976c8b7747801d9200c2099248220f1b7a9c50bb7c60ccc:log:8', 'hash': '0x881462908d9dda17e976c8b7747801d9200c2099248220f1b7a9c50bb7c60ccc', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:06:08.000Z'}}, {'blockNum': '0x7d2d48', 'uniqueId': '0xbdd668b80c77034c869cd88b32d4165dca85e1d1a84e08bb6689c1345f441302:log:67', 'hash': '0xbdd668b80c77034c869cd88b32d4165dca85e1d1a84e08bb6689c1345f441302', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 3876.4976958525344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd2253663d01691fda3', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:06:08.000Z'}}, {'blockNum': '0x7d2d49', 'uniqueId': '0xf330e9fbaaa42806e8f9ff72c4e09955690a73412db8817e13639828e825bd56:log:7', 'hash': '0xf330e9fbaaa42806e8f9ff72c4e09955690a73412db8817e13639828e825bd56', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 149939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc035a049218eec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:06:59.000Z'}}, {'blockNum': '0x7d2d49', 'uniqueId': '0x9a6f9ef2a9154fe0731b7e2bf7cbf09258ba636aa1642e2515b6a11064beb482:log:8', 'hash': '0x9a6f9ef2a9154fe0731b7e2bf7cbf09258ba636aa1642e2515b6a11064beb482', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0fea8a99e2ab08a0682e92eef13e9b321a9c9a0e', 'value': 69939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ecf6699fb4bfcec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:06:59.000Z'}}, {'blockNum': '0x7d2d49', 'uniqueId': '0x350f3264c0da4c3237d15dd4c5379de2842de6482156f72bb9595d1b0633f039:log:9', 'hash': '0x350f3264c0da4c3237d15dd4c5379de2842de6482156f72bb9595d1b0633f039', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x2042044f5c22f577ee8687e1c269596e5ea0b6af', 'value': 167267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x236b8feee973cfac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:06:59.000Z'}}, {'blockNum': '0x7d2d4f', 'uniqueId': '0xcc1b6c731feaf773db07992fe4764604924988e196e44d7d15800069e2c0bb24:log:4', 'hash': '0xcc1b6c731feaf773db07992fe4764604924988e196e44d7d15800069e2c0bb24', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 533013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x70deb150141803340000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:07:47.000Z'}}, {'blockNum': '0x7d2d51', 'uniqueId': '0x7d4b04046f1e2af691548f45c77ceedf59015680e3789f6fc750ca50ad2ba564:log:0', 'hash': '0x7d4b04046f1e2af691548f45c77ceedf59015680e3789f6fc750ca50ad2ba564', 'from': '0xcf099468aa606dccb676149b1b5f5715e32d3667', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 62200.000073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0d2bde6714ab53f19000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:07:54.000Z'}}, {'blockNum': '0x7d2d51', 'uniqueId': '0x2cd1169a50032fe59f9bb3c586fe0ac05db6b1e19619ab52b6716257de11d7d9:log:7', 'hash': '0x2cd1169a50032fe59f9bb3c586fe0ac05db6b1e19619ab52b6716257de11d7d9', 'from': '0xd38a2dc9fed4416ead8556b851b0f459d4aec842', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 728561.354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9a4763e03382c3a10000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:07:54.000Z'}}, {'blockNum': '0x7d2d52', 'uniqueId': '0x600795c3386ed68f16e909c6619d9236d98c765588b1cc8ecab2b236d85a0fa7:log:31', 'hash': '0x600795c3386ed68f16e909c6619d9236d98c765588b1cc8ecab2b236d85a0fa7', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x7de52ba62ea0850ef4266618d7cd3fe0d5a1da1c', 'value': 112427.7805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17ceb8e1a8d6f8fd4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:08:18.000Z'}}, {'blockNum': '0x7d2d5a', 'uniqueId': '0x56873c76c6a75cec9d53118c230e82bfdb79f826b172d389fbac7cfeaf7dd1bd:log:12', 'hash': '0x56873c76c6a75cec9d53118c230e82bfdb79f826b172d389fbac7cfeaf7dd1bd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7d722d145fdc9a1d3b5762acdea994c5bda23a05', 'value': 502000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6a4d797ac2028dc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:09:01.000Z'}}, {'blockNum': '0x7d2d5a', 'uniqueId': '0xfc444a1dbd106d9ffecf78c378577aaf0ea9b8e3ffcf0e02036b73dd5b75ff81:log:102', 'hash': '0xfc444a1dbd106d9ffecf78c378577aaf0ea9b8e3ffcf0e02036b73dd5b75ff81', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5841.666666666667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013cad6912db5ae6aaaa', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:09:01.000Z'}}, {'blockNum': '0x7d2d5a', 'uniqueId': '0xfc444a1dbd106d9ffecf78c378577aaf0ea9b8e3ffcf0e02036b73dd5b75ff81:log:104', 'hash': '0xfc444a1dbd106d9ffecf78c378577aaf0ea9b8e3ffcf0e02036b73dd5b75ff81', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 5841.666666666667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013cad6912db5ae6aaaa', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:09:01.000Z'}}, {'blockNum': '0x7d2d5d', 'uniqueId': '0xf8fcd6c33767b484a35aee550c05b9064e4210499252ae88a1712106be391ad8:log:1', 'hash': '0xf8fcd6c33767b484a35aee550c05b9064e4210499252ae88a1712106be391ad8', 'from': '0x0fea8a99e2ab08a0682e92eef13e9b321a9c9a0e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 69939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0ecf6699fb4bfcec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:10:05.000Z'}}, {'blockNum': '0x7d2d5d', 'uniqueId': '0x03b5091ba8d943efb6d72d1600b0844e083f37fc7a9b13a8a460604bef1fd3f7:log:3', 'hash': '0x03b5091ba8d943efb6d72d1600b0844e083f37fc7a9b13a8a460604bef1fd3f7', 'from': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:10:05.000Z'}}, {'blockNum': '0x7d2d5d', 'uniqueId': '0x3319392b1f9189809dca80a2260309cb098421950cd857c8910cc859c1d15864:log:78', 'hash': '0x3319392b1f9189809dca80a2260309cb098421950cd857c8910cc859c1d15864', 'from': '0x2042044f5c22f577ee8687e1c269596e5ea0b6af', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 167267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x236b8feee973cfac0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:10:05.000Z'}}, {'blockNum': '0x7d2d5f', 'uniqueId': '0xabab7df5f9b2020777bba0620830be21de49cf23bc9536fa9280e46f812bf68e:log:15', 'hash': '0xabab7df5f9b2020777bba0620830be21de49cf23bc9536fa9280e46f812bf68e', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x9932a0db35d5e80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:11:06.000Z'}}, {'blockNum': '0x7d2d5f', 'uniqueId': '0xbf6f3c928c934a3a83b5ec9210f386f8fbde28cbd0ed3d1a52de1c9694d36e61:log:17', 'hash': '0xbf6f3c928c934a3a83b5ec9210f386f8fbde28cbd0ed3d1a52de1c9694d36e61', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x06c41f13770c71400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:11:06.000Z'}}, {'blockNum': '0x7d2d67', 'uniqueId': '0x35092ac074647b9d640f48db8cb50ecfedef5c158fe5f798663d77cbf0bebe55:log:40', 'hash': '0x35092ac074647b9d640f48db8cb50ecfedef5c158fe5f798663d77cbf0bebe55', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 4888.372093023256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0108ffca66e637f05f41', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:12:50.000Z'}}, {'blockNum': '0x7d2d69', 'uniqueId': '0x44b0a13eee747b031e6f2f53459aa47dba11f4d0deba740ea1c0b5f9ed0a3884:log:6', 'hash': '0x44b0a13eee747b031e6f2f53459aa47dba11f4d0deba740ea1c0b5f9ed0a3884', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x04c9f7e0055bf9fe9ab03255d8cdae2a78e824df', 'value': 79939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10ed807ac506af2c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:13:39.000Z'}}, {'blockNum': '0x7d2d77', 'uniqueId': '0xae0305e5b72521abeac9057dbe3f5caf880b53afe41fe43b42482ac892eb1df6:log:0', 'hash': '0xae0305e5b72521abeac9057dbe3f5caf880b53afe41fe43b42482ac892eb1df6', 'from': '0x04c9f7e0055bf9fe9ab03255d8cdae2a78e824df', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 79939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x10ed807ac506af2c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:16:40.000Z'}}, {'blockNum': '0x7d2d81', 'uniqueId': '0x09422490e860cc01ff18bc089af9e9f14e86f4754c811b0811f48bd35f2f48b4:log:1', 'hash': '0x09422490e860cc01ff18bc089af9e9f14e86f4754c811b0811f48bd35f2f48b4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 594806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x7df47f746ebf94180000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:18:31.000Z'}}, {'blockNum': '0x7d2d86', 'uniqueId': '0x277a9fcfdae6acddcb6cb6a90194043552bcbe6bd43e69da4d0db8ae7386bc2b:log:32', 'hash': '0x277a9fcfdae6acddcb6cb6a90194043552bcbe6bd43e69da4d0db8ae7386bc2b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 23462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x04f7e0a854ff16d80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:20:21.000Z'}}, {'blockNum': '0x7d2d87', 'uniqueId': '0x2e05540e16be70bc58021ee43eafce403b8c394d2c1a1bc6927bcd62a0917ceb:log:87', 'hash': '0x2e05540e16be70bc58021ee43eafce403b8c394d2c1a1bc6927bcd62a0917ceb', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 9670.78427463644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020c411793c552b7020c', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:20:34.000Z'}}, {'blockNum': '0x7d2d87', 'uniqueId': '0x2e05540e16be70bc58021ee43eafce403b8c394d2c1a1bc6927bcd62a0917ceb:log:89', 'hash': '0x2e05540e16be70bc58021ee43eafce403b8c394d2c1a1bc6927bcd62a0917ceb', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x3d5ae142a6ec388cae18596c2937514d8a616db5', 'value': 9670.78427463644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x020c411793c552b7020c', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:20:34.000Z'}}, {'blockNum': '0x7d2d8b', 'uniqueId': '0xd38390fe10eb451542623f0dfc48082ef76eb0ed402bef06e33793fa1b6ec9d5:log:6', 'hash': '0xd38390fe10eb451542623f0dfc48082ef76eb0ed402bef06e33793fa1b6ec9d5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 40851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x08a689827e203a6c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:21:27.000Z'}}, {'blockNum': '0x7d2d99', 'uniqueId': '0xf901abc5d269eb64d54e0d71fd82a6adb00fe4441ab4ac09dcd7e6614fbe9bf7:log:20', 'hash': '0xf901abc5d269eb64d54e0d71fd82a6adb00fe4441ab4ac09dcd7e6614fbe9bf7', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 223005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2f392011f0df32540000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:23:00.000Z'}}, {'blockNum': '0x7d2d99', 'uniqueId': '0x145c26f609e8af715c9da35aeb9d531967aaa74e2501ae7d1f3a0d9943c8b906:log:22', 'hash': '0x145c26f609e8af715c9da35aeb9d531967aaa74e2501ae7d1f3a0d9943c8b906', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 149939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc035a049218eec0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:23:00.000Z'}}, {'blockNum': '0x7d2d99', 'uniqueId': '0xb8c75ef8e85d477d9c6caecbc76c6caeda296f1e65b349bca734a4799f3f640a:log:40', 'hash': '0xb8c75ef8e85d477d9c6caecbc76c6caeda296f1e65b349bca734a4799f3f640a', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 347052.122331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497dbbb643183b34b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:23:00.000Z'}}, {'blockNum': '0x7d2d9b', 'uniqueId': '0x758844752ad609ce438161526e7c9125d5017b2db63554a060895d1c5b71a490:log:2', 'hash': '0x758844752ad609ce438161526e7c9125d5017b2db63554a060895d1c5b71a490', 'from': '0x7de52ba62ea0850ef4266618d7cd3fe0d5a1da1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 112427.7805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x17ceb8e1a8d6f8fd4000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:23:18.000Z'}}, {'blockNum': '0x7d2d9b', 'uniqueId': '0xb1cc9cab478bc4f9aabcc95acbe835d828a642482cc9a172bfaccd8ad3ce7a2f:log:10', 'hash': '0xb1cc9cab478bc4f9aabcc95acbe835d828a642482cc9a172bfaccd8ad3ce7a2f', 'from': '0x7d722d145fdc9a1d3b5762acdea994c5bda23a05', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 502000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6a4d797ac2028dc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:23:18.000Z'}}, {'blockNum': '0x7d2db6', 'uniqueId': '0xcb7108912188f54bcdfb28ee8c6035c4694d481ec08e4772a2e95645bd80680a:log:5', 'hash': '0xcb7108912188f54bcdfb28ee8c6035c4694d481ec08e4772a2e95645bd80680a', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x14f505f19984cb8931c180e4b509cf0f81f9d0f3', 'value': 39840, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x086fbb10f6a22a800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:29:04.000Z'}}, {'blockNum': '0x7d2dc2', 'uniqueId': '0xa40a63597e1de2c9aaf8802b1d093dcf8c33b4b836619257884af5dffa1f6932:log:17', 'hash': '0xa40a63597e1de2c9aaf8802b1d093dcf8c33b4b836619257884af5dffa1f6932', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3d4aa1bdf6aa74507aab0c5ac6a38333688526d4', 'value': 600.1505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2088c2e40431124000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:32:03.000Z'}}, {'blockNum': '0x7d2de1', 'uniqueId': '0x0bf414406ddc189cdd846b825802330ade2434cd8eba4c43b06478bb0cf63679:log:12', 'hash': '0x0bf414406ddc189cdd846b825802330ade2434cd8eba4c43b06478bb0cf63679', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 347052.122331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497dbbb643183b34b000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:38:04.000Z'}}, {'blockNum': '0x7d2dec', 'uniqueId': '0x73001278b3b76493b6a46185c2179c5146a33fe4adab6daab294ef4d967893bc:log:102', 'hash': '0x73001278b3b76493b6a46185c2179c5146a33fe4adab6daab294ef4d967893bc', 'from': '0xfd7aad1d54ad58e8cb667434e88e8abdb1224f82', 'to': '0xf42656181658d91fc110928ec832db0fb698cd3a', 'value': 31.347800892606287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01b309c2d2f5789159', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:40:56.000Z'}}, {'blockNum': '0x7d2df3', 'uniqueId': '0xfe36d7c4e13316fa7b9e793ab8906297408ed05f905eea69f074a5932e7f680c:log:10', 'hash': '0xfe36d7c4e13316fa7b9e793ab8906297408ed05f905eea69f074a5932e7f680c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 296665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3ed23deb85773bc40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:42:52.000Z'}}, {'blockNum': '0x7d2e07', 'uniqueId': '0x452ca466acc23db8d9ed8a0160445ed264af92564eab9c03faf4d2114242f4dc:log:40', 'hash': '0x452ca466acc23db8d9ed8a0160445ed264af92564eab9c03faf4d2114242f4dc', 'from': '0x2ff6192052b7f0f8ae9e464ab4f5f91877b2cb57', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 672244.86731022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8e5a779f98b0b47a7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:47:02.000Z'}}, {'blockNum': '0x7d2e2c', 'uniqueId': '0x71760fe5e59805f55149c503ebfbf73100934f5721a05dc4820eeb6134c5fb14:log:32', 'hash': '0x71760fe5e59805f55149c503ebfbf73100934f5721a05dc4820eeb6134c5fb14', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 296665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3ed23deb85773bc40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:53:21.000Z'}}, {'blockNum': '0x7d2e2d', 'uniqueId': '0x76cf52cf837eac6a9f19279fa8dab24c4978297de6e90d74e4d179de4c24d3b6:log:45', 'hash': '0x76cf52cf837eac6a9f19279fa8dab24c4978297de6e90d74e4d179de4c24d3b6', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 294461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3e5ac34692c21ad40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:53:36.000Z'}}, {'blockNum': '0x7d2e34', 'uniqueId': '0xfe82b4febd116c00aed2aa4aced99a56ba4fbf2e99522c6f6d9b871f1cb1c728:log:11', 'hash': '0xfe82b4febd116c00aed2aa4aced99a56ba4fbf2e99522c6f6d9b871f1cb1c728', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x30b442eb71a98cc0b5d02d7d1d23713042422178', 'value': 19000.1505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0406000e94a364924000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:54:53.000Z'}}, {'blockNum': '0x7d2e42', 'uniqueId': '0x2343667a21e49c24e33a1f8a39ae071f4731f32b40335df5a9056d16b9d6a807:log:0', 'hash': '0x2343667a21e49c24e33a1f8a39ae071f4731f32b40335df5a9056d16b9d6a807', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 226819.47922294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3007e89a7428a1171800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T00:57:54.000Z'}}, {'blockNum': '0x7d2e49', 'uniqueId': '0xeb2ec5fecb27cb5db74cd4a8ed1ccb5715318641fa8eba313e20993ab2083bf0:log:7', 'hash': '0xeb2ec5fecb27cb5db74cd4a8ed1ccb5715318641fa8eba313e20993ab2083bf0', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x1f97505874067e5c926b4e40d0524d4fe0fdbc62', 'value': 30832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x068767f425101bc00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:00:42.000Z'}}, {'blockNum': '0x7d2e4c', 'uniqueId': '0x54633d50ae71738d19ebddfdfa45527b16a23b8a3cd8bb8ed4ff85f9953985d0:log:24', 'hash': '0x54633d50ae71738d19ebddfdfa45527b16a23b8a3cd8bb8ed4ff85f9953985d0', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 294461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3e5ac34692c21ad40000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:01:17.000Z'}}, {'blockNum': '0x7d2e4c', 'uniqueId': '0x4ec61deb079484dbc382bae9b9530b9232002d4734fbae2eba57fb49eda117bb:log:42', 'hash': '0x4ec61deb079484dbc382bae9b9530b9232002d4734fbae2eba57fb49eda117bb', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'value': 7723.592962439458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01a2b2625dfd46d14b4e', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:01:17.000Z'}}, {'blockNum': '0x7d2e4e', 'uniqueId': '0x9e55ca4d578f5dfc20a0a6c7c8f4212f0007bab6a61556f1f1185d78167a760f:log:122', 'hash': '0x9e55ca4d578f5dfc20a0a6c7c8f4212f0007bab6a61556f1f1185d78167a760f', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4699.356230225746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xfec0ab29224863d194', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:01:41.000Z'}}, {'blockNum': '0x7d2e4e', 'uniqueId': '0x9e55ca4d578f5dfc20a0a6c7c8f4212f0007bab6a61556f1f1185d78167a760f:log:126', 'hash': '0x9e55ca4d578f5dfc20a0a6c7c8f4212f0007bab6a61556f1f1185d78167a760f', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 4699.356230225746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xfec0ab29224863d194', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:01:41.000Z'}}, {'blockNum': '0x7d2e4e', 'uniqueId': '0x9e55ca4d578f5dfc20a0a6c7c8f4212f0007bab6a61556f1f1185d78167a760f:log:127', 'hash': '0x9e55ca4d578f5dfc20a0a6c7c8f4212f0007bab6a61556f1f1185d78167a760f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 4698.903492696295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xfeba62b6bfe4f720ff', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:01:41.000Z'}}, {'blockNum': '0x7d2e4e', 'uniqueId': '0x9e55ca4d578f5dfc20a0a6c7c8f4212f0007bab6a61556f1f1185d78167a760f:log:128', 'hash': '0x9e55ca4d578f5dfc20a0a6c7c8f4212f0007bab6a61556f1f1185d78167a760f', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 4698.903492696295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xfeba62b6bfe4f720ff', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:01:41.000Z'}}, {'blockNum': '0x7d2e50', 'uniqueId': '0x65170e30ac5574c4dd7be980364959341a239ceb1bb21c471db234759c4d7de7:log:50', 'hash': '0x65170e30ac5574c4dd7be980364959341a239ceb1bb21c471db234759c4d7de7', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 9490.581780662671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02027c47b64160b94de8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:02:02.000Z'}}, {'blockNum': '0x7d2e50', 'uniqueId': '0x65170e30ac5574c4dd7be980364959341a239ceb1bb21c471db234759c4d7de7:log:54', 'hash': '0x65170e30ac5574c4dd7be980364959341a239ceb1bb21c471db234759c4d7de7', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 9490.581780662671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02027c47b64160b94de8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:02:02.000Z'}}, {'blockNum': '0x7d2e50', 'uniqueId': '0x9c05fbe0a2a30e67e5943fb6003f5c1a27a8281fe752bbb8810186c0b2430dae:log:94', 'hash': '0x9c05fbe0a2a30e67e5943fb6003f5c1a27a8281fe752bbb8810186c0b2430dae', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 4774.35722899481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0102d1843c245df2e8b5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:02:02.000Z'}}, {'blockNum': '0x7d2e50', 'uniqueId': '0x9c05fbe0a2a30e67e5943fb6003f5c1a27a8281fe752bbb8810186c0b2430dae:log:97', 'hash': '0x9c05fbe0a2a30e67e5943fb6003f5c1a27a8281fe752bbb8810186c0b2430dae', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 4774.35722899481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0102d1843c245df2e8b5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:02:02.000Z'}}, {'blockNum': '0x7d2e50', 'uniqueId': '0x9c05fbe0a2a30e67e5943fb6003f5c1a27a8281fe752bbb8810186c0b2430dae:log:99', 'hash': '0x9c05fbe0a2a30e67e5943fb6003f5c1a27a8281fe752bbb8810186c0b2430dae', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 4774.35722899481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0102d1843c245df2e8b5', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:02:02.000Z'}}, {'blockNum': '0x7d2e51', 'uniqueId': '0x2038c925fceefac8459b8a7d15c2d387054678b9f3e9deffefc984bb48233cb9:log:0', 'hash': '0x2038c925fceefac8459b8a7d15c2d387054678b9f3e9deffefc984bb48233cb9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'value': 294400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3e5774bb09f338000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:02:04.000Z'}}, {'blockNum': '0x7d2e52', 'uniqueId': '0xa25179c49160a01f635636a70fb92ab9fa2b2230c59a44a2653e42864a2eef40:log:2', 'hash': '0xa25179c49160a01f635636a70fb92ab9fa2b2230c59a44a2653e42864a2eef40', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:02:26.000Z'}}, {'blockNum': '0x7d2e52', 'uniqueId': '0xeb626a02b738cf05292d130f18f6999b48ecdf1437bd2dff5cd5e8e74b713a0e:log:36', 'hash': '0xeb626a02b738cf05292d130f18f6999b48ecdf1437bd2dff5cd5e8e74b713a0e', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 9490.581780662671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x02027c47b64160b94de8', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:02:26.000Z'}}, {'blockNum': '0x7d2e5d', 'uniqueId': '0x34777617ed35f0a5872438a38cd21ab2ba9da357d839e11d90d3b49c4988e40a:log:3', 'hash': '0x34777617ed35f0a5872438a38cd21ab2ba9da357d839e11d90d3b49c4988e40a', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 226819.47922294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3007e89a7428a1171800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:05:10.000Z'}}, {'blockNum': '0x7d2e61', 'uniqueId': '0xec0304941f024c26543d9ee2323b8f4caf58fa462d50cbb8291ab7c8140c01b9:log:0', 'hash': '0xec0304941f024c26543d9ee2323b8f4caf58fa462d50cbb8291ab7c8140c01b9', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1905a053af79e93a67ca802b497eccb3257d9f78', 'value': 8736.40767794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d99a030f9d60f68800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:05:43.000Z'}}, {'blockNum': '0x7d2e61', 'uniqueId': '0xeba39667f4453f34c5ad502f3e847ac83a7f66ec11abe87a40005c3a50867131:log:6', 'hash': '0xeba39667f4453f34c5ad502f3e847ac83a7f66ec11abe87a40005c3a50867131', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:05:43.000Z'}}, {'blockNum': '0x7d2e65', 'uniqueId': '0xc9ba5aa067e45ef7adc329d841d3541897d405a8ef2df90b7dd4ddb764580ce4:log:31', 'hash': '0xc9ba5aa067e45ef7adc329d841d3541897d405a8ef2df90b7dd4ddb764580ce4', 'from': '0xc7f9fd30fcd6e3c80ec7e3e9e41c135a3bd46208', 'to': '0x0ed4da104544d4a26b4c4f95291a7d0c0733390f', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:06:24.000Z'}}, {'blockNum': '0x7d2e65', 'uniqueId': '0x71da10737ecdca49d39ea8f05e4cddcf3069bf1b5fb70c97f7dd254f12cd455c:log:65', 'hash': '0x71da10737ecdca49d39ea8f05e4cddcf3069bf1b5fb70c97f7dd254f12cd455c', 'from': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2952.6548983701314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa01051723b44c6eb56', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:06:24.000Z'}}, {'blockNum': '0x7d2e65', 'uniqueId': '0x71da10737ecdca49d39ea8f05e4cddcf3069bf1b5fb70c97f7dd254f12cd455c:log:67', 'hash': '0x71da10737ecdca49d39ea8f05e4cddcf3069bf1b5fb70c97f7dd254f12cd455c', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2952.654821239155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa010512c14d0580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:06:24.000Z'}}, {'blockNum': '0x7d2e65', 'uniqueId': '0x71da10737ecdca49d39ea8f05e4cddcf3069bf1b5fb70c97f7dd254f12cd455c:log:68', 'hash': '0x71da10737ecdca49d39ea8f05e4cddcf3069bf1b5fb70c97f7dd254f12cd455c', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2952.654821239155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xa010512c14d0580000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:06:24.000Z'}}, {'blockNum': '0x7d2e6c', 'uniqueId': '0xa48f67d9ed4ab61d3161feefd28a3f26a443f5e3252a42d7d4e5e33c71d9b3e5:log:4', 'hash': '0xa48f67d9ed4ab61d3161feefd28a3f26a443f5e3252a42d7d4e5e33c71d9b3e5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'value': 505000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6af01ad7cb5429a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:07:38.000Z'}}, {'blockNum': '0x7d2e70', 'uniqueId': '0x720edaff8fec43a17a441d2d1aad6e1fdee91c07a240a85c608c97ef762b7a6b:log:2', 'hash': '0x720edaff8fec43a17a441d2d1aad6e1fdee91c07a240a85c608c97ef762b7a6b', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 672244.86731022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x8e5a779f98b0b47a7800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:07:47.000Z'}}, {'blockNum': '0x7d2e77', 'uniqueId': '0x56cc121b2de1d6bdefc55e05555d441c5c766d0fb5affd29bc86c6350426d649:log:11', 'hash': '0x56cc121b2de1d6bdefc55e05555d441c5c766d0fb5affd29bc86c6350426d649', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 195026.9425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x294c6e865ab938d64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:09:33.000Z'}}, {'blockNum': '0x7d2e77', 'uniqueId': '0xcd99e3c7987cfb5c84c13cf8b58dc4aafb9864351dbd4184dfadcda559ccc28a:log:12', 'hash': '0xcd99e3c7987cfb5c84c13cf8b58dc4aafb9864351dbd4184dfadcda559ccc28a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'value': 504000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6ab9e50e1d8e4b000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:09:33.000Z'}}, {'blockNum': '0x7d2e7a', 'uniqueId': '0x7c22a7018ec09fa678abb1def99928c8998a74d237090c5d4728992670c1a1e8:log:82', 'hash': '0x7c22a7018ec09fa678abb1def99928c8998a74d237090c5d4728992670c1a1e8', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 4796.803652968037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01040905f3d1c7f17610', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:10:13.000Z'}}, {'blockNum': '0x7d2e7c', 'uniqueId': '0x9fedcc4540b58c80e0b40495e3642ac17fc09dc6e5a7fb21f622a840b2c94fa9:log:0', 'hash': '0x9fedcc4540b58c80e0b40495e3642ac17fc09dc6e5a7fb21f622a840b2c94fa9', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'value': 291484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3db96119f39488f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:10:40.000Z'}}, {'blockNum': '0x7d2e85', 'uniqueId': '0xdc7c39d43426982882051cfa4ef8de6d3e781f62ce9bf996c50ff68cfda41d7a:log:17', 'hash': '0xdc7c39d43426982882051cfa4ef8de6d3e781f62ce9bf996c50ff68cfda41d7a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x91ddb6481d303e768db48cac6d3b33ca31a70d8f', 'value': 9948.1505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021b4a525c3090a24000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:11:44.000Z'}}, {'blockNum': '0x7d2e92', 'uniqueId': '0xcbcac6245e9fab803c7d229ddcba33fa91d4015176623da4d3420b9296ff1991:log:27', 'hash': '0xcbcac6245e9fab803c7d229ddcba33fa91d4015176623da4d3420b9296ff1991', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xbab0372f815fa593b246b2c12870669d74a94ae8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:14:49.000Z'}}, {'blockNum': '0x7d2e9a', 'uniqueId': '0x925dfb70b2b54cd8ab473bb4f9a1094ca1deb9fdaf20bf865095a0431ed572de:log:118', 'hash': '0x925dfb70b2b54cd8ab473bb4f9a1094ca1deb9fdaf20bf865095a0431ed572de', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'value': 149970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc1e3d668e2d4080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:16:36.000Z'}}, {'blockNum': '0x7d2e9b', 'uniqueId': '0x83199cdfd4b3eabf395d681ca8ec48fd9ba2ef97d52d7d962344ece64fdfa3cc:log:5', 'hash': '0x83199cdfd4b3eabf395d681ca8ec48fd9ba2ef97d52d7d962344ece64fdfa3cc', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6257fb7e9115cc8df0109f07f2c350ef8c583b41', 'value': 10268.9705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x022cae97f66999744000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:17:31.000Z'}}, {'blockNum': '0x7d2ea4', 'uniqueId': '0xc419a0852e5224fd1f67cb018be54e358c0d2481368eb709a97388a32ada9aa8:log:0', 'hash': '0xc419a0852e5224fd1f67cb018be54e358c0d2481368eb709a97388a32ada9aa8', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 137260.0428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1d10e1bf9bb9b1930000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:19:52.000Z'}}, {'blockNum': '0x7d2eaa', 'uniqueId': '0x30082adc7662898f58ec2b886a188c4c5cef27604ca98a6f31ccdf011c92db38:log:21', 'hash': '0x30082adc7662898f58ec2b886a188c4c5cef27604ca98a6f31ccdf011c92db38', 'from': '0x0c8a1a08734df7e8000e6233abf9f1bceb6ca7b0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 291484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3db96119f39488f00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:21:05.000Z'}}, {'blockNum': '0x7d2eae', 'uniqueId': '0x2f8b365d0c45749c70351b61ca6c1df8915556f82d8a61e2abcecd44d50b50d4:log:1', 'hash': '0x2f8b365d0c45749c70351b61ca6c1df8915556f82d8a61e2abcecd44d50b50d4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 25626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x056d3030bba210280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:22:17.000Z'}}, {'blockNum': '0x7d2eb2', 'uniqueId': '0x50bae2df592ec6d96f5751198e52d3a1df9a3bdad84d4bf9358d1903b910337d:log:9', 'hash': '0x50bae2df592ec6d96f5751198e52d3a1df9a3bdad84d4bf9358d1903b910337d', 'from': '0x81c8cb1a249d3bac1d90ad3be592afba1a3ea330', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 294400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3e5774bb09f338000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:22:59.000Z'}}, {'blockNum': '0x7d2eb2', 'uniqueId': '0x9cc9599643421cd9c02bef3a4f9dc16d740ce1a98581ea05e06d0eeae6b64c33:log:11', 'hash': '0x9cc9599643421cd9c02bef3a4f9dc16d740ce1a98581ea05e06d0eeae6b64c33', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 300000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x3f870857a3e0e3800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:22:59.000Z'}}, {'blockNum': '0x7d2eb2', 'uniqueId': '0x7fd6996651cc176f5f2299dcf146e066c09ebe23f4252be7333ed118c8784717:log:19', 'hash': '0x7fd6996651cc176f5f2299dcf146e066c09ebe23f4252be7333ed118c8784717', 'from': '0x1905a053af79e93a67ca802b497eccb3257d9f78', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 8736.40767794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01d99a030f9d60f68800', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:22:59.000Z'}}, {'blockNum': '0x7d2eb2', 'uniqueId': '0x27570eb84a70252182d1295bd41c1638b3b8eaac08db46a6cbf1a481ae59658d:log:29', 'hash': '0x27570eb84a70252182d1295bd41c1638b3b8eaac08db46a6cbf1a481ae59658d', 'from': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 505000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6af01ad7cb5429a00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:22:59.000Z'}}, {'blockNum': '0x7d2eb2', 'uniqueId': '0x25c38fc24e51e1f5f8347084838ea91d15ecb93c4b3f3945a4f2cb3f9020a9a7:log:33', 'hash': '0x25c38fc24e51e1f5f8347084838ea91d15ecb93c4b3f3945a4f2cb3f9020a9a7', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 195026.9425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x294c6e865ab938d64000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:22:59.000Z'}}, {'blockNum': '0x7d2eb2', 'uniqueId': '0xec11880f8a5d9e7f5998d3ff5d76dceb6bb9ec6a774180d02cbfa8fffad66ed8:log:35', 'hash': '0xec11880f8a5d9e7f5998d3ff5d76dceb6bb9ec6a774180d02cbfa8fffad66ed8', 'from': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 504000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x6ab9e50e1d8e4b000000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:22:59.000Z'}}, {'blockNum': '0x7d2eb4', 'uniqueId': '0xc7568fbbaabd7ff4ac307c62e954ce16fa5552428de34b7a338986e27f9a6325:log:8', 'hash': '0xc7568fbbaabd7ff4ac307c62e954ce16fa5552428de34b7a338986e27f9a6325', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0xeb48d07f1872353178c493122f716e54edca8e0d', 'value': 20940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x046f28e06f2007b00000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:23:19.000Z'}}, {'blockNum': '0x7d2ecf', 'uniqueId': '0x9f5332b2568c48314c394c6c290cd7a20cc057b217e0984bc9aeea706008e9eb:log:37', 'hash': '0x9f5332b2568c48314c394c6c290cd7a20cc057b217e0984bc9aeea706008e9eb', 'from': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 25626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x056d3030bba210280000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:28:27.000Z'}}, {'blockNum': '0x7d2ed2', 'uniqueId': '0x643fa52e77ff0f0d6f6b213d93fa57982f1e682c9228d3b6a48917daa3609248:log:47', 'hash': '0x643fa52e77ff0f0d6f6b213d93fa57982f1e682c9228d3b6a48917daa3609248', 'from': '0x2a42e565c988c464848ccf6a8e6b53639452e5f9', 'to': '0x5207c0d1257826d840d0267fd6bf64c4deaed82d', 'value': 130471.92897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba0e5bec04f0f3aa000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:29:08.000Z'}}, {'blockNum': '0x7d2edb', 'uniqueId': '0xcbdbe7cb6a2aeb88196703a7e5f2fe2b18704108336580d4773f2d0e9a345bde:log:39', 'hash': '0xcbdbe7cb6a2aeb88196703a7e5f2fe2b18704108336580d4773f2d0e9a345bde', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 137260.0428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1d10e1bf9bb9b1930000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:30:58.000Z'}}, {'blockNum': '0x7d2edc', 'uniqueId': '0xd18a6c77486a1030ae05cca81f5c83ddc72352a640749b1620545a7a0290ec81:log:47', 'hash': '0xd18a6c77486a1030ae05cca81f5c83ddc72352a640749b1620545a7a0290ec81', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'value': 5785.321100917431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01399f756956eb4dcc54', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:31:28.000Z'}}, {'blockNum': '0x7d2edc', 'uniqueId': '0xd18a6c77486a1030ae05cca81f5c83ddc72352a640749b1620545a7a0290ec81:log:49', 'hash': '0xd18a6c77486a1030ae05cca81f5c83ddc72352a640749b1620545a7a0290ec81', 'from': '0x6690819cb98c1211a8e38790d6cd48316ed518db', 'to': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'value': 5785.321100917431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x01399f756956eb4dcc54', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:31:28.000Z'}}, {'blockNum': '0x7d2ee6', 'uniqueId': '0xf23ebd947aaa18ba0031298e23a19d18e76ee738b0fc3b7a5f8709bdafa094a6:log:64', 'hash': '0xf23ebd947aaa18ba0031298e23a19d18e76ee738b0fc3b7a5f8709bdafa094a6', 'from': '0x00a183fdbebce39cc1065b14b1015cea3b40b651', 'to': '0x1aec8f11a7e78dc22477e91ed924fab46e3a88fd', 'value': 5817.511520737327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x013b5e30c19d12e60bcc', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:33:06.000Z'}}, {'blockNum': '0x7d2ee9', 'uniqueId': '0xee2283c07248386b6b267bd9b7a6cf343aa364451ae0c72b500060d63001a31a:log:32', 'hash': '0xee2283c07248386b6b267bd9b7a6cf343aa364451ae0c72b500060d63001a31a', 'from': '0x5207c0d1257826d840d0267fd6bf64c4deaed82d', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 130471.92897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba0e5bec04f0f3aa000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:34:07.000Z'}}, {'blockNum': '0x7d2eed', 'uniqueId': '0x8af9c6aff71003a8dd8db8d15a39c5f753bff0472652948535b147aa93381bbc:log:2', 'hash': '0x8af9c6aff71003a8dd8db8d15a39c5f753bff0472652948535b147aa93381bbc', 'from': '0x0549986777328f88fcf37e5954310f4f31c8f324', 'to': '0x42fb3575f8a9f54b931fa9373d82702448088562', 'value': 149970, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x1fc1e3d668e2d4080000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:35:15.000Z'}}, {'blockNum': '0x7d2ef1', 'uniqueId': '0x4458e3cd7bc2f5e1c187ab7b344373093e94f012e8d4be4d1d56bf348d1905bd:log:1', 'hash': '0x4458e3cd7bc2f5e1c187ab7b344373093e94f012e8d4be4d1d56bf348d1905bd', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:36:45.000Z'}}, {'blockNum': '0x7d2ef1', 'uniqueId': '0x06f150eebdb0bc00f6410d22d028f942053b7fcd0a639550b886417437c65651:log:92', 'hash': '0x06f150eebdb0bc00f6410d22d028f942053b7fcd0a639550b886417437c65651', 'from': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'to': '0x492eea2038aadc701259f3535841ab985c2f9a80', 'value': 991920.72897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0xd20c216618f4aaaaa000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:36:45.000Z'}}, {'blockNum': '0x7d2ef4', 'uniqueId': '0x9914ced5d32e80a0e727755cf46893c3fdcaf4e6f8bbdfdd8204b61e3ff57106:log:6', 'hash': '0x9914ced5d32e80a0e727755cf46893c3fdcaf4e6f8bbdfdd8204b61e3ff57106', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x9cfd8afd14e37505d44e62c999f9594db0fd821f', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:37:02.000Z'}}, {'blockNum': '0x7d2ef9', 'uniqueId': '0xbc6db460765229774be42233e6350f86bb44284652c076cd783a04b5152fb6db:log:8', 'hash': '0xbc6db460765229774be42233e6350f86bb44284652c076cd783a04b5152fb6db', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x344d3c00314fd0bf658bd8b9d57ebd07961d5693', 'value': 329210.264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45b686301d44585c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:39:25.000Z'}}, {'blockNum': '0x7d2f05', 'uniqueId': '0x3922b7d4e77ee5fa85044efc1893bbd5b6246a8b17dacd4a1901ef2fd1933a19:log:4', 'hash': '0x3922b7d4e77ee5fa85044efc1893bbd5b6246a8b17dacd4a1901ef2fd1933a19', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x3d4aa1bdf6aa74507aab0c5ac6a38333688526d4', 'value': 9605.5705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0208b811b5419f504000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:42:02.000Z'}}, {'blockNum': '0x7d2f14', 'uniqueId': '0x3ef280fe56c54ae71e1c68966ee1e8802111fdaf247f76c5519eba95cdac5755:log:37', 'hash': '0x3ef280fe56c54ae71e1c68966ee1e8802111fdaf247f76c5519eba95cdac5755', 'from': '0x344d3c00314fd0bf658bd8b9d57ebd07961d5693', 'to': '0xc97a4ed29f03fd549c4ae79086673523122d2bc5', 'value': 329210.264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x45b686301d44585c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:46:01.000Z'}}, {'blockNum': '0x7d2f24', 'uniqueId': '0x8dd6402a31a2641e1cd25b5f5911ba53dfaeecfd6e56b13cd09e63bee31ff1ca:log:5', 'hash': '0x8dd6402a31a2641e1cd25b5f5911ba53dfaeecfd6e56b13cd09e63bee31ff1ca', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 347034.57053689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x497cc821c35851dcc400', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:52:01.000Z'}}, {'blockNum': '0x7d2f33', 'uniqueId': '0x78c3c098c3afbfd1fe2db4439ba7ff48081bd64b31653e48c696479c7950c5ff:log:3', 'hash': '0x78c3c098c3afbfd1fe2db4439ba7ff48081bd64b31653e48c696479c7950c5ff', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x02ef943d4c8333bfd6304dedf8b027cf2018f656', 'value': 189167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x280ec37c7a478e5c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:55:38.000Z'}}, {'blockNum': '0x7d2f3c', 'uniqueId': '0xb3ba24f424b9c3da0d34a3e78e361121d5cbc450b2d5f2dfa06ae49bb9540e3e:log:16', 'hash': '0xb3ba24f424b9c3da0d34a3e78e361121d5cbc450b2d5f2dfa06ae49bb9540e3e', 'from': '0x2a42e565c988c464848ccf6a8e6b53639452e5f9', 'to': '0x5207c0d1257826d840d0267fd6bf64c4deaed82d', 'value': 24625.2518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x0536f004e9ec9c958000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:57:04.000Z'}}, {'blockNum': '0x7d2f47', 'uniqueId': '0x3735906103ffedd008204dd9ce1891dbaa65b64af238500b974027d5358cab0c:log:33', 'hash': '0x3735906103ffedd008204dd9ce1891dbaa65b64af238500b974027d5358cab0c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xca1caf2222eea0e046e0f653e647566d8d18df95', 'value': 21215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNT', 'category': 'erc20', 'rawContract': {'value': '0x047e1144b21cd81c0000', 'address': '0x744d70fdbe2ba4cf95131626614a1763df805b9e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-23T01:59:16.000Z'}}]}}
Number of returned transfers:  929
Answer is complete
 
symbol             ADX
group              CPI
date        2019-07-26
hour             17:59
exchange       binance
Name: 1028, dtype: object
HERE
 Symbol: ADX, Contract: 0xade00c28244d5ce17d72e40330b1c318cd12b7c3
Datetime timestamps:  2019-07-26 17:59:00 2019-07-26 05:59:00 2019-07-27 05:59:00
Unix timestamps:  1564113540.0 1564199940.0
Hex Block Numbers:  0x7d7c93 0x7d95e3
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             BLZ
group              CPI
date        2019-07-28
hour             17:00
exchange       binance
Name: 1029, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-07-28 17:00:00 2019-07-28 05:00:00 2019-07-29 05:00:00
Unix timestamps:  1564282800.0 1564369200.0
Hex Block Numbers:  0x7dae25 0x7dc73b
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7dafc6', 'uniqueId': '0xfcf379dc8ddb119fe401cd038186f028e0ee69c311b721b738e7ffa92562edb4:log:96', 'hash': '0xfcf379dc8ddb119fe401cd038186f028e0ee69c311b721b738e7ffa92562edb4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 8898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01e25c8e506021c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T04:35:43.000Z'}}, {'blockNum': '0x7db177', 'uniqueId': '0x7d9d797973d27e96a0a991fa1b0643f08655a252e67e3cc3126629f8f3b51d4b:log:2', 'hash': '0x7d9d797973d27e96a0a991fa1b0643f08655a252e67e3cc3126629f8f3b51d4b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 24390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x052a2f3ea03de1580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:13:27.000Z'}}, {'blockNum': '0x7db193', 'uniqueId': '0x2f7561f67663c4da4d004b198df0c1c937a9d554fc48a8bf2803994243905112:log:80', 'hash': '0x2f7561f67663c4da4d004b198df0c1c937a9d554fc48a8bf2803994243905112', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x052a2f3ea03de1580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:19:05.000Z'}}, {'blockNum': '0x7db194', 'uniqueId': '0xd0a09d869a1b6f7030adcd7035b9f6b5cab1844474fd55f0f83bd942c0a0be6f:log:10', 'hash': '0xd0a09d869a1b6f7030adcd7035b9f6b5cab1844474fd55f0f83bd942c0a0be6f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 17316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03aab3c60fe668100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:20:14.000Z'}}, {'blockNum': '0x7db1b9', 'uniqueId': '0x072e028462e4d0d1cc912237a5625d8328a2a879dd5d3f3693df69c57238cd87:log:14', 'hash': '0x072e028462e4d0d1cc912237a5625d8328a2a879dd5d3f3693df69c57238cd87', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03aab3c60fe668100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:28:56.000Z'}}, {'blockNum': '0x7db1d9', 'uniqueId': '0x3dc727f78d6f80a8bc2679c0997e1d1933f74422d36d25ace8ca3cef4f896aa9:log:38', 'hash': '0x3dc727f78d6f80a8bc2679c0997e1d1933f74422d36d25ace8ca3cef4f896aa9', 'from': '0x60cc81440e70c44a5e51c90e76e23c4368065a1a', 'to': '0xaa89331dc7a30596cd492c771760af93a6104dec', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x012a27d53bc048700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T06:37:56.000Z'}}, {'blockNum': '0x7db2d0', 'uniqueId': '0x1f84b6ad945014e5b45c102624998a391d26a897c6b49a0b570dcb7e932e5b8d:log:1', 'hash': '0x1f84b6ad945014e5b45c102624998a391d26a897c6b49a0b570dcb7e932e5b8d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 27797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05e2e0de212e9d340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:30:42.000Z'}}, {'blockNum': '0x7db2de', 'uniqueId': '0x41a3f18c9158bc590fff35df7c7745de4c03f45e4d07a2b4ae8e16907a17d858:log:10', 'hash': '0x41a3f18c9158bc590fff35df7c7745de4c03f45e4d07a2b4ae8e16907a17d858', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 52039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b050a33218fb8bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:34:47.000Z'}}, {'blockNum': '0x7db2e2', 'uniqueId': '0x5d8f64a6739d330224506b70060e89b0c2b176ec7973fd8d77ee3a3bc99208b8:log:3', 'hash': '0x5d8f64a6739d330224506b70060e89b0c2b176ec7973fd8d77ee3a3bc99208b8', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 31407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a693ae8295155c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:35:29.000Z'}}, {'blockNum': '0x7db2f9', 'uniqueId': '0x98a515287ef1c5e06e9e2f6b44e06f5b7785fb95a558284c7a8757f9bce8017e:log:27', 'hash': '0x98a515287ef1c5e06e9e2f6b44e06f5b7785fb95a558284c7a8757f9bce8017e', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52039, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b050a33218fb8bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:39:10.000Z'}}, {'blockNum': '0x7db317', 'uniqueId': '0x49817af857361bb2aae1b0bbe93c7bfce6a3e1871850050a8b84596966012bd8:log:17', 'hash': '0x49817af857361bb2aae1b0bbe93c7bfce6a3e1871850050a8b84596966012bd8', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 28257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05fbd0a66bff64e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:46:49.000Z'}}, {'blockNum': '0x7db31f', 'uniqueId': '0x6441123dc5ef7eed07e6969b68a46b7031a01c5ae7baae5c528a8191d8fa73ae:log:50', 'hash': '0x6441123dc5ef7eed07e6969b68a46b7031a01c5ae7baae5c528a8191d8fa73ae', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06a693ae8295155c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:48:53.000Z'}}, {'blockNum': '0x7db349', 'uniqueId': '0xa954dd08b3b744198e5df3189ac32b4e4cbb8da1d2b42ed636eeb2e78049fca6:log:10', 'hash': '0xa954dd08b3b744198e5df3189ac32b4e4cbb8da1d2b42ed636eeb2e78049fca6', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28257, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05fbd0a66bff64e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T07:59:02.000Z'}}, {'blockNum': '0x7db5ff', 'uniqueId': '0xf308a9ef39d5840c9867f3f42aa3a5347febe06eead8aa321fbe79d9529d7d85:log:27', 'hash': '0xf308a9ef39d5840c9867f3f42aa3a5347febe06eead8aa321fbe79d9529d7d85', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7a3a9ec9a7a8fe1b32c25a69fc7ab891504ba29d', 'value': 8017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01b29a39901d12a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T10:34:37.000Z'}}, {'blockNum': '0x7db721', 'uniqueId': '0x55bd6a6075ab44325859a53b8a1007fafb4d6b2bf31a032dd50d444ea1595406:log:53', 'hash': '0x55bd6a6075ab44325859a53b8a1007fafb4d6b2bf31a032dd50d444ea1595406', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 35226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07759af40ca736280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T11:38:07.000Z'}}, {'blockNum': '0x7db75b', 'uniqueId': '0x1c475aaab3f532f899743a48415d516dd85fa981cb48dcd0df29e318f088e50f:log:2', 'hash': '0x1c475aaab3f532f899743a48415d516dd85fa981cb48dcd0df29e318f088e50f', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07759af40ca736280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T11:49:09.000Z'}}, {'blockNum': '0x7db943', 'uniqueId': '0x711c556c94e3fbdc576da7cf5845c836f565445002bad73a391cd4fc922e3136:log:50', 'hash': '0x711c556c94e3fbdc576da7cf5845c836f565445002bad73a391cd4fc922e3136', 'from': '0xef4004bf10f8ef2ee1c82c6cc289b83c3ab719d4', 'to': '0xd5240c700c11074187ec1ff453400d00a415101b', 'value': 1209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x418a3ed67187440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T13:40:08.000Z'}}, {'blockNum': '0x7db96c', 'uniqueId': '0x0ebf35a6b80eff8ec3712c55fc64f61adafbc26dc7c2d165a9afdd4d8391c4a5:log:1', 'hash': '0x0ebf35a6b80eff8ec3712c55fc64f61adafbc26dc7c2d165a9afdd4d8391c4a5', 'from': '0xd5240c700c11074187ec1ff453400d00a415101b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x418a3ed67187440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T13:49:03.000Z'}}, {'blockNum': '0x7dba9c', 'uniqueId': '0x3ea7e6944e15dcf54f3fc08014d142f43757f726131c5d75f56064cb6a82894f:log:0', 'hash': '0x3ea7e6944e15dcf54f3fc08014d142f43757f726131c5d75f56064cb6a82894f', 'from': '0x672bda15798909c738a5aa1cdd6e1470bb0b122c', 'to': '0x93227d218a55ac1fbcebd47b99e760819cdb7fdc', 'value': 6371.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x015964efeee043d40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T14:58:12.000Z'}}, {'blockNum': '0x7dbac3', 'uniqueId': '0x96efcad235566a249901759bca0e64f9e4c6f549d2e29c236e510342713b67da:log:27', 'hash': '0x96efcad235566a249901759bca0e64f9e4c6f549d2e29c236e510342713b67da', 'from': '0x93227d218a55ac1fbcebd47b99e760819cdb7fdc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6371.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x015964efeee043d40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:08:54.000Z'}}, {'blockNum': '0x7dbaf0', 'uniqueId': '0x0ee9368a12f77f9517fe628f9d17f4f5a2d06691d2bd33d5e49ffbd32dd0dafc:log:22', 'hash': '0x0ee9368a12f77f9517fe628f9d17f4f5a2d06691d2bd33d5e49ffbd32dd0dafc', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 46911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ef0ce762dead9c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:19:20.000Z'}}, {'blockNum': '0x7dbaf7', 'uniqueId': '0x8c909a12eae24704283c5cfb41abec8202135aa0811649507b43babf117cac6f:log:1', 'hash': '0x8c909a12eae24704283c5cfb41abec8202135aa0811649507b43babf117cac6f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0367b2d3f48239400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:21:51.000Z'}}, {'blockNum': '0x7dbb02', 'uniqueId': '0x3f074311ef9a7df59a01df97d43b7093026a54376efbb435409877700d67004a:log:3', 'hash': '0x3f074311ef9a7df59a01df97d43b7093026a54376efbb435409877700d67004a', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 34128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x073a15246e1b43400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:25:17.000Z'}}, {'blockNum': '0x7dbb09', 'uniqueId': '0x13f10d7662b2517998ca60fd9acc9f7850f39ae391c2720e08bede6df7dbed0e:log:23', 'hash': '0x13f10d7662b2517998ca60fd9acc9f7850f39ae391c2720e08bede6df7dbed0e', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 16004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0363941db72c87900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:26:31.000Z'}}, {'blockNum': '0x7dbb09', 'uniqueId': '0x7d8c6bc8af4496ebe49d9f90c7319ecc111a880e4172adbd342bbd3d0ba67bc2:log:24', 'hash': '0x7d8c6bc8af4496ebe49d9f90c7319ecc111a880e4172adbd342bbd3d0ba67bc2', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 32921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f8a6a705110ac40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:26:31.000Z'}}, {'blockNum': '0x7dbb09', 'uniqueId': '0x88bd2df519c863192e73f542278910b0b453e5521d9542ec53de92ae4bd02594:log:26', 'hash': '0x88bd2df519c863192e73f542278910b0b453e5521d9542ec53de92ae4bd02594', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 46622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09df6239220eb5b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:26:31.000Z'}}, {'blockNum': '0x7dbb0f', 'uniqueId': '0xde404d630bb97d05e9470c58d33d22c5654251ffd9c2828958c873d579834940:log:24', 'hash': '0xde404d630bb97d05e9470c58d33d22c5654251ffd9c2828958c873d579834940', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16080, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0367b2d3f48239400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:29:09.000Z'}}, {'blockNum': '0x7dbb0f', 'uniqueId': '0x685ae0fec3882bea548749cb4b72bd596e4306eea52888c87c82bc61a9dac1b3:log:25', 'hash': '0x685ae0fec3882bea548749cb4b72bd596e4306eea52888c87c82bc61a9dac1b3', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46911, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ef0ce762dead9c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:29:09.000Z'}}, {'blockNum': '0x7dbb3c', 'uniqueId': '0xcb3598acb3769e43b4b1310e528b3dc6d586a7d2999f47a4a5877cf1f9d09b4f:log:8', 'hash': '0xcb3598acb3769e43b4b1310e528b3dc6d586a7d2999f47a4a5877cf1f9d09b4f', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06f8a6a705110ac40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:06.000Z'}}, {'blockNum': '0x7dbb3c', 'uniqueId': '0xc022ecad14bffcbce6052f00cdacbedd7c3f56662a6e678179e67d70b2a174f7:log:9', 'hash': '0xc022ecad14bffcbce6052f00cdacbedd7c3f56662a6e678179e67d70b2a174f7', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0363941db72c87900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:06.000Z'}}, {'blockNum': '0x7dbb3d', 'uniqueId': '0x969038bad93f2577e0c330b29d5fe179a7f075f600d66c36939e288177e8b07b:log:82', 'hash': '0x969038bad93f2577e0c330b29d5fe179a7f075f600d66c36939e288177e8b07b', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x073a15246e1b43400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:09.000Z'}}, {'blockNum': '0x7dbb3d', 'uniqueId': '0xf5b2b8cffdd421d0a14538832b17fe9bcf047b61f495a5376d4eb3b505113c8b:log:89', 'hash': '0xf5b2b8cffdd421d0a14538832b17fe9bcf047b61f495a5376d4eb3b505113c8b', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09df6239220eb5b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:39:09.000Z'}}, {'blockNum': '0x7dbb4c', 'uniqueId': '0x95e3d6b78c1efc8959ae21dc1ce1902d03fb3e887a9049d529c46940d021d370:log:4', 'hash': '0x95e3d6b78c1efc8959ae21dc1ce1902d03fb3e887a9049d529c46940d021d370', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 569594.5937329, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x789dc8e886937b9e6800', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:42:03.000Z'}}, {'blockNum': '0x7dbb53', 'uniqueId': '0x3a5fa2ac1684b61092cf8ac056718763022c13615df7d4bc9c063f5a46b504ed:log:0', 'hash': '0x3a5fa2ac1684b61092cf8ac056718763022c13615df7d4bc9c063f5a46b504ed', 'from': '0x0788fcb44e325c0fdc598bad557ec7c4442f0cb8', 'to': '0x6d5a1fc7e155b8aac63fb44aff3e427c62f2ea8e', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:43:09.000Z'}}, {'blockNum': '0x7dbb67', 'uniqueId': '0xa4f1c15b33e2360e23b42dc135c1138664c88303b0ba8f73343b8f96b035d9fd:log:6', 'hash': '0xa4f1c15b33e2360e23b42dc135c1138664c88303b0ba8f73343b8f96b035d9fd', 'from': '0x6d5a1fc7e155b8aac63fb44aff3e427c62f2ea8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T15:48:56.000Z'}}, {'blockNum': '0x7dbbb5', 'uniqueId': '0xad953f7502f61f58cfd19fb0e6d8cc6066d64a69d46964a6ec20e3c7a3d52691:log:2', 'hash': '0xad953f7502f61f58cfd19fb0e6d8cc6066d64a69d46964a6ec20e3c7a3d52691', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 29715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x064ada76f72ebc6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:05:53.000Z'}}, {'blockNum': '0x7dbbf1', 'uniqueId': '0x224ec24bfbd690b99412def62749425712ed200826a22fc1279f6c50ced43ba9:log:22', 'hash': '0x224ec24bfbd690b99412def62749425712ed200826a22fc1279f6c50ced43ba9', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x064ada76f72ebc6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:18:52.000Z'}}, {'blockNum': '0x7dbbf7', 'uniqueId': '0xb611829ae052d6d1c89a723967a0c5e17375cbb3b428be171cbc576764eb4739:log:61', 'hash': '0xb611829ae052d6d1c89a723967a0c5e17375cbb3b428be171cbc576764eb4739', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 46312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ce941be48202a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:20:09.000Z'}}, {'blockNum': '0x7dbbfb', 'uniqueId': '0x52e9d5851340a0909b3f2a64a65d9d17d97e28f8e8bca072e74d897b3136fa44:log:16', 'hash': '0x52e9d5851340a0909b3f2a64a65d9d17d97e28f8e8bca072e74d897b3136fa44', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0372f968667a3a800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:21:13.000Z'}}, {'blockNum': '0x7dbc1d', 'uniqueId': '0xbc1739014e004edd8c0722c4cd395053e0df411fdbd50e8002e8cce5865a1f13:log:12', 'hash': '0xbc1739014e004edd8c0722c4cd395053e0df411fdbd50e8002e8cce5865a1f13', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0372f968667a3a800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:29:04.000Z'}}, {'blockNum': '0x7dbc1e', 'uniqueId': '0x39078f9f1541d47198732174e55e985c80d06b91a9ae6a3fa74ccb8bd27ff736:log:3', 'hash': '0x39078f9f1541d47198732174e55e985c80d06b91a9ae6a3fa74ccb8bd27ff736', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09ce941be48202a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:29:14.000Z'}}, {'blockNum': '0x7dbc36', 'uniqueId': '0xf3d6a6a62403e92aa2d7bbf9ff5beb28bd3546fe969445293b9824ee3dfa84f2:log:66', 'hash': '0xf3d6a6a62403e92aa2d7bbf9ff5beb28bd3546fe969445293b9824ee3dfa84f2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 5724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01364c7518f2bff00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:34:04.000Z'}}, {'blockNum': '0x7dbc4e', 'uniqueId': '0x965785cd363a75542e972e5260ea936f01a24c9736037f47e95df25cb9764c05:log:5', 'hash': '0x965785cd363a75542e972e5260ea936f01a24c9736037f47e95df25cb9764c05', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01364c7518f2bff00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T16:39:01.000Z'}}, {'blockNum': '0x7dbcab', 'uniqueId': '0x561043a1d5f77eedc408c3623559002454451960a79e183d3c09bbe686481ad1:log:2', 'hash': '0x561043a1d5f77eedc408c3623559002454451960a79e183d3c09bbe686481ad1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 4671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xfd372597fb399c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:23.000Z'}}, {'blockNum': '0x7dbcac', 'uniqueId': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a:log:7', 'hash': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 5378.957487675679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01239807d81a546d4fdf', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:28.000Z'}}, {'blockNum': '0x7dbcac', 'uniqueId': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a:log:9', 'hash': '0x16a3182cb66072728fb9c41fd3855e005d90d531f5677b24eb9812c95eef308a', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 5378.957487675679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01239807d81a546d4fdf', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:28.000Z'}}, {'blockNum': '0x7dbcb0', 'uniqueId': '0xb21d62ad51706b8aecad8b6202d94a3863445d0ecd99f2f976705bce0afb8ffe:log:15', 'hash': '0xb21d62ad51706b8aecad8b6202d94a3863445d0ecd99f2f976705bce0afb8ffe', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 63289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d66e7500481c1440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:00:55.000Z'}}, {'blockNum': '0x7dbcb1', 'uniqueId': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4:log:6', 'hash': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 10678.306404533758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0242df453ad4d5465e8e', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:04.000Z'}}, {'blockNum': '0x7dbcb1', 'uniqueId': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4:log:8', 'hash': '0xe1b6a6528c5daf225f77aa8f3cc59da013db71290f37f43ebaafb355aa2dfac4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 10678.306404533758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0242df453ad4d5465e8e', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:04.000Z'}}, {'blockNum': '0x7dbcb2', 'uniqueId': '0x6c2e7dcc41e6366e3d4a9a68622e5b9c00e58cb4276e986d6e5c83b8c6795919:log:1', 'hash': '0x6c2e7dcc41e6366e3d4a9a68622e5b9c00e58cb4276e986d6e5c83b8c6795919', 'from': '0x1cf78337f278a12c203e570921446d3438539e7c', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:16.000Z'}}, {'blockNum': '0x7dbcb2', 'uniqueId': '0xa463a3c6a461a7b8250e9357bdc62640a77c413b10c146f2efefed3e3ba3cf28:log:109', 'hash': '0xa463a3c6a461a7b8250e9357bdc62640a77c413b10c146f2efefed3e3ba3cf28', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 35225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07758d1355f38ec40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:01:16.000Z'}}, {'blockNum': '0x7dbcb5', 'uniqueId': '0x2979909552a542461d8d4584ef2142060727586aeac2b949a96eae3b49091ed5:log:3', 'hash': '0x2979909552a542461d8d4584ef2142060727586aeac2b949a96eae3b49091ed5', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'value': 16057.263892209436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0366774d12ef29b3ae6d', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:11.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0x13b81b0ca8c2cd28546ecf905612555028c592878328354d7d8e7c13c04905f0:log:14', 'hash': '0x13b81b0ca8c2cd28546ecf905612555028c592878328354d7d8e7c13c04905f0', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 46180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c76c3dafdfb3100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0xc5a4f233b022fabe5027b5a670f08060c4135955fcf1638a184c51517d203058:log:15', 'hash': '0xc5a4f233b022fabe5027b5a670f08060c4135955fcf1638a184c51517d203058', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0x79c0b5a4a4798c4dc255cbd6e5e771b9d40b19fd3a7eac77410f588a2395c54f:log:16', 'hash': '0x79c0b5a4a4798c4dc255cbd6e5e771b9d40b19fd3a7eac77410f588a2395c54f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x1285f034153daa03bc4249786373eee43cba00df', 'value': 11744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x027ca4bd719f0b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcb9', 'uniqueId': '0x0329420e93b0905b7b94a88840ec5b37fd60b9ea02ec0e2e927da82d34084079:log:17', 'hash': '0x0329420e93b0905b7b94a88840ec5b37fd60b9ea02ec0e2e927da82d34084079', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 47131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fafa046542878c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:02:59.000Z'}}, {'blockNum': '0x7dbcbb', 'uniqueId': '0x18aba9c295eab3f1e16b6698161329f4d733aabe9c425736c73d5b7e41f34dc1:log:13', 'hash': '0x18aba9c295eab3f1e16b6698161329f4d733aabe9c425736c73d5b7e41f34dc1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 37240, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07e2c8d166061ae00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:03:39.000Z'}}, {'blockNum': '0x7dbcbb', 'uniqueId': '0x897a2eb6cdf66340f2ec6c3281eeb2f14e1bca7f40c81cce4ebbfc6cc4151e71:log:14', 'hash': '0x897a2eb6cdf66340f2ec6c3281eeb2f14e1bca7f40c81cce4ebbfc6cc4151e71', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'value': 48932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a5c9be9bb2726100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:03:39.000Z'}}, {'blockNum': '0x7dbcbd', 'uniqueId': '0xc6ce3241b53ad56a9f365fab8914e6cad7550aba2e5473e75b0e69ea2d7689dd:log:9', 'hash': '0xc6ce3241b53ad56a9f365fab8914e6cad7550aba2e5473e75b0e69ea2d7689dd', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 32194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06d13d802ce0adc80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:02.000Z'}}, {'blockNum': '0x7dbcbd', 'uniqueId': '0x5d631abef6bd5055a48858ce4d6d8f46226b3d48d032a2fff906ba2320e4e0cf:log:10', 'hash': '0x5d631abef6bd5055a48858ce4d6d8f46226b3d48d032a2fff906ba2320e4e0cf', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 26765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05aaeefd9cf3d2140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:02.000Z'}}, {'blockNum': '0x7dbcbd', 'uniqueId': '0xfca3eef869297bae54b32a66e1c7ab9e356627ee085bcf722d252e1c8a5bc7f6:log:11', 'hash': '0xfca3eef869297bae54b32a66e1c7ab9e356627ee085bcf722d252e1c8a5bc7f6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 24954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0548c251240aa9a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:02.000Z'}}, {'blockNum': '0x7dbcbf', 'uniqueId': '0x97e0f712c2cd46184f745c555e7461478f802b7c511510caedb2f451d415bb34:log:1', 'hash': '0x97e0f712c2cd46184f745c555e7461478f802b7c511510caedb2f451d415bb34', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 185197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x27378cab2c3db1940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:23.000Z'}}, {'blockNum': '0x7dbcc0', 'uniqueId': '0x5a92cced75a4706b1d72980274f63a2d81eb21d2d30c954ced6c60607e680167:log:1', 'hash': '0x5a92cced75a4706b1d72980274f63a2d81eb21d2d30c954ced6c60607e680167', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:30.000Z'}}, {'blockNum': '0x7dbcc1', 'uniqueId': '0x48a46119532af1cb3caa8199b6eb6af81901eabe3adbde61d4e7b4b27f9f19ae:log:5', 'hash': '0x48a46119532af1cb3caa8199b6eb6af81901eabe3adbde61d4e7b4b27f9f19ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 6279.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01546dbb5c31920c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:32.000Z'}}, {'blockNum': '0x7dbcc1', 'uniqueId': '0x806dd103cd1f8061ab9ac9233f4c376eb97d77a4e26540f82ac5f2d35bf28a4f:log:19', 'hash': '0x806dd103cd1f8061ab9ac9233f4c376eb97d77a4e26540f82ac5f2d35bf28a4f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 80930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1123395e067bab480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:32.000Z'}}, {'blockNum': '0x7dbcc1', 'uniqueId': '0xfb44269b9e6282489d0cb7c81fbf210e4e0ee779ded7ae41600146586d88f247:log:21', 'hash': '0xfb44269b9e6282489d0cb7c81fbf210e4e0ee779ded7ae41600146586d88f247', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 71587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f28bd321fd190ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:04:32.000Z'}}, {'blockNum': '0x7dbcc5', 'uniqueId': '0x7c2772cfb18c40385d32400e39410771ec4f6b0110b005f9bfc2d0314fcb5dec:log:116', 'hash': '0x7c2772cfb18c40385d32400e39410771ec4f6b0110b005f9bfc2d0314fcb5dec', 'from': '0xd1560b3984b7481cd9a8f40435a53c860187174d', 'to': '0x523c00131ef14dfe144137088fca435cc38a697f', 'value': 8808.05749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01dd7c5a5410fcc32000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:05:32.000Z'}}, {'blockNum': '0x7dbcc6', 'uniqueId': '0x8932db95b907b988ebaf433cf5e78f7c8e536c1ec1754e461c40273c995e40d1:log:3', 'hash': '0x8932db95b907b988ebaf433cf5e78f7c8e536c1ec1754e461c40273c995e40d1', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'value': 49983.2924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a9599869ef791ef0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:05:49.000Z'}}, {'blockNum': '0x7dbcca', 'uniqueId': '0xf20a7e3ce134f864da8584efec1c172d114fbbb4d8067024cab84fa29f0aae7f:log:51', 'hash': '0xf20a7e3ce134f864da8584efec1c172d114fbbb4d8067024cab84fa29f0aae7f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 37328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07e78e1033c7a5400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:06:46.000Z'}}, {'blockNum': '0x7dbcce', 'uniqueId': '0x1829879185f0a6ad63103791c72a1004fc65dd1aa3f7ab4f7abb643da8a85939:log:5', 'hash': '0x1829879185f0a6ad63103791c72a1004fc65dd1aa3f7ab4f7abb643da8a85939', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 37180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07df882693eadf700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:07:51.000Z'}}, {'blockNum': '0x7dbcce', 'uniqueId': '0x8cbc3da29d9609f31dd5c4542a7806bfbea3902c143731ef51bd0014adc6a00a:log:61', 'hash': '0x8cbc3da29d9609f31dd5c4542a7806bfbea3902c143731ef51bd0014adc6a00a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 20746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0464a495fafb2de80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:07:51.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x73d506298571d3ebbbb2c87a5c3677a058a7733a1413e42dc70edd9666f6dc54:log:40', 'hash': '0x73d506298571d3ebbbb2c87a5c3677a058a7733a1413e42dc70edd9666f6dc54', 'from': '0x5232346c018270b438750164f937abaa3be11b8e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 107637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x16cb03723ebb90b40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xc4b0a47cbfca6fae7a9420b5ad40b02db65a56ee786d5bddc2929c130779d174:log:41', 'hash': '0xc4b0a47cbfca6fae7a9420b5ad40b02db65a56ee786d5bddc2929c130779d174', 'from': '0x1285f034153daa03bc4249786373eee43cba00df', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x027ca4bd719f0b800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xa9b5602f84c0c0f764839504768d5b94b9f8b286bb9d8b61ad5814eb5f0f9140:log:43', 'hash': '0xa9b5602f84c0c0f764839504768d5b94b9f8b286bb9d8b61ad5814eb5f0f9140', 'from': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x4d2e27e7afd372a6a705a6775bc1e2a85ff82fa163d98db3d62edbde2af2e2de:log:64', 'hash': '0x4d2e27e7afd372a6a705a6775bc1e2a85ff82fa163d98db3d62edbde2af2e2de', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 46180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c76c3dafdfb3100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x8d96c5f515272bd8675eeba76e6f9d2bfc9249cef2a59bf0b555de86387b812c:log:67', 'hash': '0x8d96c5f515272bd8675eeba76e6f9d2bfc9249cef2a59bf0b555de86387b812c', 'from': '0x889bb61d7b143dd91125c685cc07b46b8af03869', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a5c9be9bb2726100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x045267a20fc4a164a22965c6fe636fd20625ec212b1bf759b6667d1a9ceed274:log:68', 'hash': '0x045267a20fc4a164a22965c6fe636fd20625ec212b1bf759b6667d1a9ceed274', 'from': '0xc4c4d5fa3211e7a00895c3c19dea1c3eb23086ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16057.263892209436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0366774d12ef29b3ae6d', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xb15599c3c3668d9620be0a6e5d2f09ed168c6a74b99f152a4f1dfcb5c5602f17:log:69', 'hash': '0xb15599c3c3668d9620be0a6e5d2f09ed168c6a74b99f152a4f1dfcb5c5602f17', 'from': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 185197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x27378cab2c3db1940000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x45f9f7b61cf62e031d8209ab92c5105fab5c0a5b4c8c9d82631aae1b740fabe9:log:70', 'hash': '0x45f9f7b61cf62e031d8209ab92c5105fab5c0a5b4c8c9d82631aae1b740fabe9', 'from': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0dfc78210eb2c80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xb0a3e32ec78151093b8770b15b7c46b48a8c7dd6249548b72a4022a93ea6e82e:log:71', 'hash': '0xb0a3e32ec78151093b8770b15b7c46b48a8c7dd6249548b72a4022a93ea6e82e', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06d13d802ce0adc80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xa78c729803c35a39a7e10e38df296245a97a80821b896816e254d2620b505840:log:72', 'hash': '0xa78c729803c35a39a7e10e38df296245a97a80821b896816e254d2620b505840', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x154e7560384966840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0xb3480dd4a11e1286b5833a6de868ddb941bcf6f5aad4a71b95702735221836cf:log:73', 'hash': '0xb3480dd4a11e1286b5833a6de868ddb941bcf6f5aad4a71b95702735221836cf', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 35225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07758d1355f38ec40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x143320ffa92c9f97b6e28d85630015df98cd54f596c1cd493147141dea54a4a6:log:76', 'hash': '0x143320ffa92c9f97b6e28d85630015df98cd54f596c1cd493147141dea54a4a6', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fafa046542878c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd5', 'uniqueId': '0x53d724be9d15952356fb6488b0b10ac5ef97b7008509d70b96d7b27010c8b01c:log:78', 'hash': '0x53d724be9d15952356fb6488b0b10ac5ef97b7008509d70b96d7b27010c8b01c', 'from': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05aaeefd9cf3d2140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:15.000Z'}}, {'blockNum': '0x7dbcd6', 'uniqueId': '0x1724c018727776c779caa0db4d07f99530803826a577b51c94590a683f083e09:log:27', 'hash': '0x1724c018727776c779caa0db4d07f99530803826a577b51c94590a683f083e09', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41851, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08dcbf4c2be6190c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:32.000Z'}}, {'blockNum': '0x7dbcd6', 'uniqueId': '0xca21a267d1c371e4a2162f2b78def32444e476d9aec2a322209417ffde454a96:log:28', 'hash': '0xca21a267d1c371e4a2162f2b78def32444e476d9aec2a322209417ffde454a96', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 24954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0548c251240aa9a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:09:32.000Z'}}, {'blockNum': '0x7dbce6', 'uniqueId': '0x8c555649de5e8d1d5e8f39ec9736b4f9a0221d51627874b779b5c964253353c7:log:16', 'hash': '0x8c555649de5e8d1d5e8f39ec9736b4f9a0221d51627874b779b5c964253353c7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 4299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe90c9c1aebfc4c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:12:13.000Z'}}, {'blockNum': '0x7dbce8', 'uniqueId': '0xfb05ca291fe9df564e143dbd6fd9b2688ed1da7fb9badc36f99239afe86bfbf3:log:16', 'hash': '0xfb05ca291fe9df564e143dbd6fd9b2688ed1da7fb9badc36f99239afe86bfbf3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb07c49b35d8476d1f02ec9aae6ee031c08219a58', 'value': 3867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xd1a167cbc1838c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:12:26.000Z'}}, {'blockNum': '0x7dbcf6', 'uniqueId': '0x3f66fb5dd8e38973e2c2a2f9770b5182aa643e229c0aa53d68c07f9e94e6f1f4:log:0', 'hash': '0x3f66fb5dd8e38973e2c2a2f9770b5182aa643e229c0aa53d68c07f9e94e6f1f4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 16058.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03668c9e6cd4c2f80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:15:44.000Z'}}, {'blockNum': '0x7dbcfa', 'uniqueId': '0xdd9731a78f29adfcf2f5a36448f1c5d1728531108e368440e1553411cd099fa0:log:0', 'hash': '0xdd9731a78f29adfcf2f5a36448f1c5d1728531108e368440e1553411cd099fa0', 'from': '0x1cf78337f278a12c203e570921446d3438539e7c', 'to': '0x76e377e197da54a1d39f1acbc447fb3bd07bb971', 'value': 54588.62799579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f416563396ed40c00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:16:57.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0x4e02db4c6ce0b5022bfc47af3b27c22c7e74840ae4edef4105165cc7d86a0429:log:10', 'hash': '0x4e02db4c6ce0b5022bfc47af3b27c22c7e74840ae4edef4105165cc7d86a0429', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1123395e067bab480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0x4aabefbc461ca9c361baf739b3ef976e735579fd8e4dfb8eb9050ae85c08ea61:log:11', 'hash': '0x4aabefbc461ca9c361baf739b3ef976e735579fd8e4dfb8eb9050ae85c08ea61', 'from': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 71587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f28bd321fd190ac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0xc57b9e0b63205ce057aa664fd2ff102c7366a65211114da1a8632d9b834f69ec:log:13', 'hash': '0xc57b9e0b63205ce057aa664fd2ff102c7366a65211114da1a8632d9b834f69ec', 'from': '0xbb1d423c4d0f7cff78d3016d61c9006bf3365ac0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0xce0fa320955037d9caafef6dde2656464d08193e69a737ab19205df23bfdae3a:log:14', 'hash': '0xce0fa320955037d9caafef6dde2656464d08193e69a737ab19205df23bfdae3a', 'from': '0x523c00131ef14dfe144137088fca435cc38a697f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8808.05749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01dd7c5a5410fcc32000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd03', 'uniqueId': '0x0a2d98af5b4d286b81e663db3d133a0cc06986a0ae13ab44924b8e76b5efce31:log:15', 'hash': '0x0a2d98af5b4d286b81e663db3d133a0cc06986a0ae13ab44924b8e76b5efce31', 'from': '0xb1f8272a7b7cad00e465652cf6cbe28a03f5c161', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49983.2924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a9599869ef791ef0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:18:46.000Z'}}, {'blockNum': '0x7dbd0b', 'uniqueId': '0x745d92e2ef0028fea0a85b424950824baa720a0677bb4fe94ff0d519eee00f8d:log:1', 'hash': '0x745d92e2ef0028fea0a85b424950824baa720a0677bb4fe94ff0d519eee00f8d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 1093809.8137822095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xe79f8c7f6e271a1dce6d', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:21:06.000Z'}}, {'blockNum': '0x7dbd1c', 'uniqueId': '0xff2b522ec061d2300da832eae7ac50a0b4227b25271361f34576b63bb666dd92:log:63', 'hash': '0xff2b522ec061d2300da832eae7ac50a0b4227b25271361f34576b63bb666dd92', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 3090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa7825d447a75080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:25:04.000Z'}}, {'blockNum': '0x7dbd2f', 'uniqueId': '0x4be8e9de017765b8ff5a5a2b42b73329d4b8b1812101b6ec16933bb7b57b8f41:log:17', 'hash': '0x4be8e9de017765b8ff5a5a2b42b73329d4b8b1812101b6ec16933bb7b57b8f41', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 54128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b7648e60190a7c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:28:50.000Z'}}, {'blockNum': '0x7dbd31', 'uniqueId': '0x57d93a0e9876c000ff2e538199b0d5acd521b38037eda7f6c1bc46ac0ae689e1:log:4', 'hash': '0x57d93a0e9876c000ff2e538199b0d5acd521b38037eda7f6c1bc46ac0ae689e1', 'from': '0x76e377e197da54a1d39f1acbc447fb3bd07bb971', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 54588.62799579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b8f416563396ed40c00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:29:14.000Z'}}, {'blockNum': '0x7dbd59', 'uniqueId': '0x959b3c5a495b1c3457dda04918b433dca3e8dde1d0101d6497267cb68591a42d:log:44', 'hash': '0x959b3c5a495b1c3457dda04918b433dca3e8dde1d0101d6497267cb68591a42d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 17542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03b6f4275a802e580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:36:28.000Z'}}, {'blockNum': '0x7dbd59', 'uniqueId': '0xee2e5c6247211ed54296341e58912e74f36064055a4033f9e3833c2e19c45162:log:45', 'hash': '0xee2e5c6247211ed54296341e58912e74f36064055a4033f9e3833c2e19c45162', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 23197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04e9830b3506d0540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:36:28.000Z'}}, {'blockNum': '0x7dbd5b', 'uniqueId': '0xa0ed6f6c71b78c8d331020641c6d252b864b8e4c18f95ee54730a4d4a194e652:log:66', 'hash': '0xa0ed6f6c71b78c8d331020641c6d252b864b8e4c18f95ee54730a4d4a194e652', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 10920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x024ff9715f5c41a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:37:13.000Z'}}, {'blockNum': '0x7dbd8e', 'uniqueId': '0xa0e93620f94859ca7344312b940e90799ff7d0cbb3ec741f3468fed44537d3f3:log:46', 'hash': '0xa0e93620f94859ca7344312b940e90799ff7d0cbb3ec741f3468fed44537d3f3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 5986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0144807014d010480000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:48:11.000Z'}}, {'blockNum': '0x7dbd90', 'uniqueId': '0xc0f650fdeae350bbe747a82b8c6ba28a7afd9a471452967138f9697107f7e66d:log:0', 'hash': '0xc0f650fdeae350bbe747a82b8c6ba28a7afd9a471452967138f9697107f7e66d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 16333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x037569e8840ea7140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:48:51.000Z'}}, {'blockNum': '0x7dbd9c', 'uniqueId': '0x98aa27cf5706188a57261e35d0e290201d02759a8678bbe1f22998e65fdf37a7:log:2', 'hash': '0x98aa27cf5706188a57261e35d0e290201d02759a8678bbe1f22998e65fdf37a7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 42877.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0914690293ade4240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:50:18.000Z'}}, {'blockNum': '0x7dbdad', 'uniqueId': '0xda6d3648be68d339c7c00f79a3fe0803ddb5eaa54bf28181fe8b3e862a1c2ba2:log:5', 'hash': '0xda6d3648be68d339c7c00f79a3fe0803ddb5eaa54bf28181fe8b3e862a1c2ba2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 86734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x125ddc0c3792ba780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:54:17.000Z'}}, {'blockNum': '0x7dbdbf', 'uniqueId': '0x31b71b2d9854bf816e74a3346953795116728e13e47dc7f61071c3601298c5a8:log:0', 'hash': '0x31b71b2d9854bf816e74a3346953795116728e13e47dc7f61071c3601298c5a8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 18463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03e8e198a6d5651c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T17:59:31.000Z'}}, {'blockNum': '0x7dbde6', 'uniqueId': '0x99f91712d73f8bb3ee414dd063ff12bd1bd36c6aeb4b75a5faa8b6d9c1fe2c20:log:6', 'hash': '0x99f91712d73f8bb3ee414dd063ff12bd1bd36c6aeb4b75a5faa8b6d9c1fe2c20', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 17822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03c621ef2eff43b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:09:02.000Z'}}, {'blockNum': '0x7dbe07', 'uniqueId': '0xad81eb821de7fda3969b39370294297e9eecdb3547565d18b10cf07cb0581aaa:log:2', 'hash': '0xad81eb821de7fda3969b39370294297e9eecdb3547565d18b10cf07cb0581aaa', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 57767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c3b8e2b1551163c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:16:12.000Z'}}, {'blockNum': '0x7dbe37', 'uniqueId': '0x9a38c25a58da9adc327f4002eaf1ed7053d5e9020ae9b02707609ca122da6876:log:3', 'hash': '0x9a38c25a58da9adc327f4002eaf1ed7053d5e9020ae9b02707609ca122da6876', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 106692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1697c8efd18ea8900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:27:12.000Z'}}, {'blockNum': '0x7dbe40', 'uniqueId': '0xeed75d84f7c183236d6767f01142985e3290c1c75ac2786766783c887ba376b2:log:82', 'hash': '0xeed75d84f7c183236d6767f01142985e3290c1c75ac2786766783c887ba376b2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 63844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d84fd7c1bfda7100000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:28:47.000Z'}}, {'blockNum': '0x7dbe5a', 'uniqueId': '0x509507a40639c30340a1b2e2301e8ce5c17f23c6d2b3f91a20ad2ac1374befc0:log:29', 'hash': '0x509507a40639c30340a1b2e2301e8ce5c17f23c6d2b3f91a20ad2ac1374befc0', 'from': '0xab312aace174297b048fd7b8395932ea595eb20b', 'to': '0x848086b7c0f312ee5bebc3a8ab67c9b226c4921d', 'value': 1778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6062b4ebc094880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:34:41.000Z'}}, {'blockNum': '0x7dbe5d', 'uniqueId': '0x340fe405248732d9e1307310d2df0fa7a8387ef2567474b29143119071f1b670:log:105', 'hash': '0x340fe405248732d9e1307310d2df0fa7a8387ef2567474b29143119071f1b670', 'from': '0x2fbc87c6f0afd69ebbad520b9e5e28b181cacb6e', 'to': '0x76d25a4bfc5f81b7e6f1a46e11f3873a180bc1ec', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:35:05.000Z'}}, {'blockNum': '0x7dbe9d', 'uniqueId': '0xfef33bdf6a189b3f6060eff656e6f7715daff8836ab09f8b9db0d464d86d7606:log:8', 'hash': '0xfef33bdf6a189b3f6060eff656e6f7715daff8836ab09f8b9db0d464d86d7606', 'from': '0x76d25a4bfc5f81b7e6f1a46e11f3873a180bc1ec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x010636dc1079c4740000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:49:15.000Z'}}, {'blockNum': '0x7dbe9d', 'uniqueId': '0xcb947366197b4f8b69f97c43df830b7365eff77b93998f687829c09718e64cdd:log:10', 'hash': '0xcb947366197b4f8b69f97c43df830b7365eff77b93998f687829c09718e64cdd', 'from': '0x848086b7c0f312ee5bebc3a8ab67c9b226c4921d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x6062b4ebc094880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:49:15.000Z'}}, {'blockNum': '0x7dbe9e', 'uniqueId': '0xa25f2f90d0e160fa0ce547d5b6cf7c07e5aea6d1bd6ea85d8cc4c11db351317c:log:6', 'hash': '0xa25f2f90d0e160fa0ce547d5b6cf7c07e5aea6d1bd6ea85d8cc4c11db351317c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 17288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03a92f32144019200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:49:27.000Z'}}, {'blockNum': '0x7dbeb6', 'uniqueId': '0x8fded7d7eb5355e0ab6c503b66d9f9e34d9a1e50369b55f43ddf733a2c14bc57:log:6', 'hash': '0x8fded7d7eb5355e0ab6c503b66d9f9e34d9a1e50369b55f43ddf733a2c14bc57', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 37935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x080875e167c18b5c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T18:54:30.000Z'}}, {'blockNum': '0x7dbf2d', 'uniqueId': '0x376445d7d4e2d38b20e2eb8a612fd49c33f9d415923dc7ab6a136b4dad85de03:log:4', 'hash': '0x376445d7d4e2d38b20e2eb8a612fd49c33f9d415923dc7ab6a136b4dad85de03', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 12529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02a732cdae8355240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:26:26.000Z'}}, {'blockNum': '0x7dbf32', 'uniqueId': '0xea29f56f949f74572d67a48d238540ea67033116e68f786560d6fac43aaaba33:log:0', 'hash': '0xea29f56f949f74572d67a48d238540ea67033116e68f786560d6fac43aaaba33', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 59283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c8dbce505345a6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:28:18.000Z'}}, {'blockNum': '0x7dbf6a', 'uniqueId': '0xabe3a123a57caf634de484cf8ff11e2da8d6c1989801fc5eed06be7762c20cac:log:15', 'hash': '0xabe3a123a57caf634de484cf8ff11e2da8d6c1989801fc5eed06be7762c20cac', 'from': '0xee37122340b4fc9c37896f32c5a2e5a63a843036', 'to': '0x3a3b4fbc13358232aac62f36d167f7ee2ba73d12', 'value': 427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1725d0bda833cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:40:59.000Z'}}, {'blockNum': '0x7dbf91', 'uniqueId': '0x442ff35805406d712e973fcd9dbb67b7e9a8200b2aad167368fa6ac83f50a555:log:9', 'hash': '0x442ff35805406d712e973fcd9dbb67b7e9a8200b2aad167368fa6ac83f50a555', 'from': '0x3a3b4fbc13358232aac62f36d167f7ee2ba73d12', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1725d0bda833cc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:49:15.000Z'}}, {'blockNum': '0x7dbf91', 'uniqueId': '0xe8ef1389b01ab0e11c487617d3e147846cd59e95c57f5207781790c9bab186f5:log:10', 'hash': '0xe8ef1389b01ab0e11c487617d3e147846cd59e95c57f5207781790c9bab186f5', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02a732cdae8355240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:49:15.000Z'}}, {'blockNum': '0x7dbfb3', 'uniqueId': '0x5fdb708cd4df3a145cb235f0f4363ebe3f27e4e945b65d4d7a3c40d1e61568bf:log:2', 'hash': '0x5fdb708cd4df3a145cb235f0f4363ebe3f27e4e945b65d4d7a3c40d1e61568bf', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 16606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0384368b59a428b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T19:56:57.000Z'}}, {'blockNum': '0x7dbfe1', 'uniqueId': '0x14d6a9e9f5bd95ff42620ab9cbd1bfc8fdb3812d1facfa2635fee97acf623f29:log:4', 'hash': '0x14d6a9e9f5bd95ff42620ab9cbd1bfc8fdb3812d1facfa2635fee97acf623f29', 'from': '0x1cb5b2bb4030220ad5417229a7a1e3c373cdd2f6', 'to': '0x84443f61efc60d10da9f9a2398980cd5748394bb', 'value': 57681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c36e4adb4f6daa40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:06:59.000Z'}}, {'blockNum': '0x7dbfe9', 'uniqueId': '0xab24a96ea16be9c5641293ba0b6f7f1e98b55fcfb75f3de2ecf1ba1fa6d4f9ca:log:6', 'hash': '0xab24a96ea16be9c5641293ba0b6f7f1e98b55fcfb75f3de2ecf1ba1fa6d4f9ca', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0384368b59a428b80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:08:58.000Z'}}, {'blockNum': '0x7dc035', 'uniqueId': '0x2d33f04f5bd202ab81a742f886bcd119eb26a12e8c5329cb2a0205a038dd50e6:log:0', 'hash': '0x2d33f04f5bd202ab81a742f886bcd119eb26a12e8c5329cb2a0205a038dd50e6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x69bf9617593249db92f7c6ddb1721095fc171947', 'value': 5755.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0137fac089abe1b30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:23:08.000Z'}}, {'blockNum': '0x7dc049', 'uniqueId': '0xebf38eb105dbbbcd6939eeecf59997eb128020b301ab55ab2003ba16d0689b20:log:18', 'hash': '0xebf38eb105dbbbcd6939eeecf59997eb128020b301ab55ab2003ba16d0689b20', 'from': '0x69bf9617593249db92f7c6ddb1721095fc171947', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5755.006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0137fac089abe1b30000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T20:27:59.000Z'}}, {'blockNum': '0x7dc107', 'uniqueId': '0x61804d189f585ed9635859c0e9f7797454fa07e7ecfb285a0a9ec8de5da2ad26:log:18', 'hash': '0x61804d189f585ed9635859c0e9f7797454fa07e7ecfb285a0a9ec8de5da2ad26', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 14908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03282a0f8607e3700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:11:13.000Z'}}, {'blockNum': '0x7dc122', 'uniqueId': '0x3f2ea852e3cdc013507b2b9b20e2cf13d9a0122c0053ecadf9a38b857ab3ff33:log:0', 'hash': '0x3f2ea852e3cdc013507b2b9b20e2cf13d9a0122c0053ecadf9a38b857ab3ff33', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 59966.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb2ce86a246de880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:16:01.000Z'}}, {'blockNum': '0x7dc122', 'uniqueId': '0x741cbd07a2ee90a6a2d40ed2287218c26e29e0d4b1fbd83cb691eb804443de0e:log:1', 'hash': '0x741cbd07a2ee90a6a2d40ed2287218c26e29e0d4b1fbd83cb691eb804443de0e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 63825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0d83f5ce8ca83aa40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:16:01.000Z'}}, {'blockNum': '0x7dc129', 'uniqueId': '0xac165297d22699ec1151223cb22fecc267cddcc311f51aafc0981e978042d513:log:3', 'hash': '0xac165297d22699ec1151223cb22fecc267cddcc311f51aafc0981e978042d513', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b1e236d19d00f83027274a98bf2b6a193c3047f', 'value': 48918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a5bd99fbd53fe980000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:17:08.000Z'}}, {'blockNum': '0x7dc137', 'uniqueId': '0x48e6c6d0ae1687408f3021a801052c2c237816aa2bd4d33ce681c65c6b54d40a:log:4', 'hash': '0x48e6c6d0ae1687408f3021a801052c2c237816aa2bd4d33ce681c65c6b54d40a', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03282a0f8607e3700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:19:13.000Z'}}, {'blockNum': '0x7dc14a', 'uniqueId': '0xafd2b94407691f2082f7fa35e93cd81b330a7b09315fd80cd79d8593dc60e850:log:3', 'hash': '0xafd2b94407691f2082f7fa35e93cd81b330a7b09315fd80cd79d8593dc60e850', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 81113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x112d2500a0e853c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:23:12.000Z'}}, {'blockNum': '0x7dc14a', 'uniqueId': '0x604edd00dda0bdb65aa77c1bb7abfc3a9538db5a56ee1579a99e178538eac09c:log:4', 'hash': '0x604edd00dda0bdb65aa77c1bb7abfc3a9538db5a56ee1579a99e178538eac09c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 78034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10863b4b362610080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:23:12.000Z'}}, {'blockNum': '0x7dc18e', 'uniqueId': '0xfbee578afbdb4c6f1d0468c8c3537c3664344ea7615544bab14fc1b62427a439:log:5', 'hash': '0xfbee578afbdb4c6f1d0468c8c3537c3664344ea7615544bab14fc1b62427a439', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 12643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ad60df0a83dfac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:35:59.000Z'}}, {'blockNum': '0x7dc1b6', 'uniqueId': '0xa6cc0db39d1ce3146c82369b9e2c6eefed7148282287f844fd8f6c166304ae31:log:1', 'hash': '0xa6cc0db39d1ce3146c82369b9e2c6eefed7148282287f844fd8f6c166304ae31', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xeb40f3721210584791f0b4899e4c028dc6efb22a', 'value': 215328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x2d98f44b075c70800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:42:15.000Z'}}, {'blockNum': '0x7dc1d9', 'uniqueId': '0xb8dfb0754c24fe34dae6ce5007918d2e7d6662df9d4b209c6b2223fb12b01bd5:log:6', 'hash': '0xb8dfb0754c24fe34dae6ce5007918d2e7d6662df9d4b209c6b2223fb12b01bd5', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ad60df0a83dfac0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:49:37.000Z'}}, {'blockNum': '0x7dc20b', 'uniqueId': '0xcbf9d99a0529382df237846143224c036a626da979e4ce94602f56ab0647ea92:log:10', 'hash': '0xcbf9d99a0529382df237846143224c036a626da979e4ce94602f56ab0647ea92', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcdb6b37a5d8c8b454873059f215ceb97262d4a3f', 'value': 228567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3066a4536c2204fc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T21:59:16.000Z'}}, {'blockNum': '0x7dc2a2', 'uniqueId': '0xbecba322ec38133ed5d88cff93d9607922a74bf0b36f4ce661d66c629dee725e:log:0', 'hash': '0xbecba322ec38133ed5d88cff93d9607922a74bf0b36f4ce661d66c629dee725e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 35062, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x076cb6ff018ffa180000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:33:31.000Z'}}, {'blockNum': '0x7dc2ae', 'uniqueId': '0x73f1631702130cf3abce20b61f212ccc79bbdd7d3bd386c72756dac9ea3265c1:log:0', 'hash': '0x73f1631702130cf3abce20b61f212ccc79bbdd7d3bd386c72756dac9ea3265c1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 73287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0f84e56f60d524bc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:35:55.000Z'}}, {'blockNum': '0x7dc2ae', 'uniqueId': '0x412ea0027c8ab3bc311f106a317211ca372ffd074411f6abf011db210dee8419:log:1', 'hash': '0x412ea0027c8ab3bc311f106a317211ca372ffd074411f6abf011db210dee8419', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 24433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x052c83fd506aff240000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:35:55.000Z'}}, {'blockNum': '0x7dc2ae', 'uniqueId': '0x1cd9d2035469fe35ac5c018a78e4f99aa5403a32c80040100da288936358d46b:log:2', 'hash': '0x1cd9d2035469fe35ac5c018a78e4f99aa5403a32c80040100da288936358d46b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 41010.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08af332e23781dd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:35:55.000Z'}}, {'blockNum': '0x7dc2b5', 'uniqueId': '0x03a85e6616f25fae2a1f41ee8fb4c1826dd0a8ca4e4dfdd10b49b8d436013ae9:log:1', 'hash': '0x03a85e6616f25fae2a1f41ee8fb4c1826dd0a8ca4e4dfdd10b49b8d436013ae9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 7035.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x017d6956e6bbe55c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:36:58.000Z'}}, {'blockNum': '0x7dc2b5', 'uniqueId': '0x562a1db612ad6fcfc0eccd489ab4c2f5e7d0c819989ebd72c263877bd01498cd:log:2', 'hash': '0x562a1db612ad6fcfc0eccd489ab4c2f5e7d0c819989ebd72c263877bd01498cd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0e1f1a23ae7ca219f172abfac8ee98b01a39950f', 'value': 86788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1260c972c17809900000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:36:58.000Z'}}, {'blockNum': '0x7dc2b9', 'uniqueId': '0x296b4ef8b6365225a57816d4151773a5ab72b467f0dae30b495b958f4a634595:log:13', 'hash': '0x296b4ef8b6365225a57816d4151773a5ab72b467f0dae30b495b958f4a634595', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 40979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08ad79ddd7f3ec6c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:37:47.000Z'}}, {'blockNum': '0x7dc2d4', 'uniqueId': '0xee51c99876d8666c18a17d1abde162fc1e15bfd8bad919bb7c53f2d3203feddb:log:1', 'hash': '0xee51c99876d8666c18a17d1abde162fc1e15bfd8bad919bb7c53f2d3203feddb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 64809, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0db94d8ccf33a3040000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T22:43:22.000Z'}}, {'blockNum': '0x7dc342', 'uniqueId': '0x6febacbb2f7526a697e42113126bc016bd14b97a381fcca4d2a5ec9b0f67d504:log:11', 'hash': '0x6febacbb2f7526a697e42113126bc016bd14b97a381fcca4d2a5ec9b0f67d504', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021daadb141d77200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:07:30.000Z'}}, {'blockNum': '0x7dc374', 'uniqueId': '0xd8ca2eb2f3664bb2f35ab125ddc920e1cdb90b452c5bbba9bb022429824e341f:log:12', 'hash': '0xd8ca2eb2f3664bb2f35ab125ddc920e1cdb90b452c5bbba9bb022429824e341f', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x021daadb141d77200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:18:57.000Z'}}, {'blockNum': '0x7dc3b6', 'uniqueId': '0xbfdecffde8e047ae40749d72195c420748685966d21022d9ff564d633763dabb:log:12', 'hash': '0xbfdecffde8e047ae40749d72195c420748685966d21022d9ff564d633763dabb', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 13981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02f5e959f17cc0540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:34:09.000Z'}}, {'blockNum': '0x7dc3bb', 'uniqueId': '0x9fab65740a1f2b83b63c54db3c11f1ecb1d0ec18ffb285e3d28a8e595505845b:log:77', 'hash': '0x9fab65740a1f2b83b63c54db3c11f1ecb1d0ec18ffb285e3d28a8e595505845b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 28027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05ef58c24697010c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:35:37.000Z'}}, {'blockNum': '0x7dc3d2', 'uniqueId': '0xe92ddd97164356bdd16ef038d669981ec09f99742403bc469df0f833597c773d:log:26', 'hash': '0xe92ddd97164356bdd16ef038d669981ec09f99742403bc469df0f833597c773d', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 11432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x026bbadec6ab09a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:41:08.000Z'}}, {'blockNum': '0x7dc3fe', 'uniqueId': '0xd581c712817d37a82ca062c7f295185b3629bc4848221d038525b93285b4545e:log:38', 'hash': '0xd581c712817d37a82ca062c7f295185b3629bc4848221d038525b93285b4545e', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08e5421c3813c1600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-28T23:48:16.000Z'}}, {'blockNum': '0x7dc4b8', 'uniqueId': '0x785f5a6354dcc624cbe5effed7cb8ace66827dc248aebf3282fc9ff24f1a2dc3:log:1', 'hash': '0x785f5a6354dcc624cbe5effed7cb8ace66827dc248aebf3282fc9ff24f1a2dc3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 37306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07e65cc0805742a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:26:43.000Z'}}, {'blockNum': '0x7dc50b', 'uniqueId': '0x1de1c58387fbac429e4077189b93b3582ad69ebc89bfb47421a93a12ce01c3c7:log:4', 'hash': '0x1de1c58387fbac429e4077189b93b3582ad69ebc89bfb47421a93a12ce01c3c7', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 15065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0330acdf92358bc40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:46:57.000Z'}}, {'blockNum': '0x7dc52b', 'uniqueId': '0x0b672dd2c02702f0ef047983578dadcac46ac89cad3705a12d8e451f80d5bb9b:log:8', 'hash': '0x0b672dd2c02702f0ef047983578dadcac46ac89cad3705a12d8e451f80d5bb9b', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 23880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x050e8992a65668200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:55:13.000Z'}}, {'blockNum': '0x7dc538', 'uniqueId': '0x0fb5ed1c8af65cd22c354aa964dcb3025b6fe70026826a2b0ba18f83dfaf8ee4:log:17', 'hash': '0x0fb5ed1c8af65cd22c354aa964dcb3025b6fe70026826a2b0ba18f83dfaf8ee4', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 38945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x083f3672388bf3e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T00:59:20.000Z'}}, {'blockNum': '0x7dc5a9', 'uniqueId': '0x2f0369f8579c8300285d3d73ae61a04636eb6f02483e760f30fc46b7d393684e:log:63', 'hash': '0x2f0369f8579c8300285d3d73ae61a04636eb6f02483e760f30fc46b7d393684e', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x74fea37cd3157054d8b7400d51d735a65ff29656', 'value': 1841.335014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x63d1a8176c06ec6000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T01:22:13.000Z'}}, {'blockNum': '0x7dc64b', 'uniqueId': '0x2467c64d8eafda9802a3977db1c787f83988acdaa18514a5d95bf582920d2f7c:log:22', 'hash': '0x2467c64d8eafda9802a3977db1c787f83988acdaa18514a5d95bf582920d2f7c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:02:38.000Z'}}, {'blockNum': '0x7dc66a', 'uniqueId': '0x8a22ca4a8c70f55034e3e824630b5cc77f24711813b83b0bff7eed26b965cf1c:log:58', 'hash': '0x8a22ca4a8c70f55034e3e824630b5cc77f24711813b83b0bff7eed26b965cf1c', 'from': '0xc4ee83f0d6dc00d167694dd282385073425fa54a', 'to': '0x0e354d772fecad34198d909f2e9663671ac2050a', 'value': 5.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x46a3500832bd0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:10:39.000Z'}}, {'blockNum': '0x7dc695', 'uniqueId': '0x69c8b14afe24eb2f99f91f7705a13dcaccd3ff8623706accd111fe7d70d97845:log:70', 'hash': '0x69c8b14afe24eb2f99f91f7705a13dcaccd3ff8623706accd111fe7d70d97845', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb07c49b35d8476d1f02ec9aae6ee031c08219a58', 'value': 5594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x012f405851b7bf280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:20:59.000Z'}}, {'blockNum': '0x7dc6c2', 'uniqueId': '0x4b74c8404f450a87de0144f23f1fc30e507d72f447392c8975629674d0a0cafa:log:72', 'hash': '0x4b74c8404f450a87de0144f23f1fc30e507d72f447392c8975629674d0a0cafa', 'from': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'to': '0xf977814e90da44bfa03b6295a0616a897441acec', 'value': 27861641.952037353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x170beea2fcd8518413495f', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:30:57.000Z'}}, {'blockNum': '0x7dc6dc', 'uniqueId': '0x51788ef44d01f3389bcf8d15580b2019153150fa05c08f4b18b920329e4c7a12:log:73', 'hash': '0x51788ef44d01f3389bcf8d15580b2019153150fa05c08f4b18b920329e4c7a12', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 8720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d8b64f4775be400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:37:09.000Z'}}, {'blockNum': '0x7dc6f9', 'uniqueId': '0x6fe5ff6ca97c11366385484a4d378839f778c25f51b49b18b7f506feb7515bbe:log:5', 'hash': '0x6fe5ff6ca97c11366385484a4d378839f778c25f51b49b18b7f506feb7515bbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 43239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0927fdaac1f5ab3c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:43:59.000Z'}}, {'blockNum': '0x7dc70d', 'uniqueId': '0xf208e82f2f70f77b073eb247015e367e9dcf5e9709e10babb5a19d32ff7313d8:log:8', 'hash': '0xf208e82f2f70f77b073eb247015e367e9dcf5e9709e10babb5a19d32ff7313d8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 64720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0db47a6d4abe71400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-07-29T02:48:09.000Z'}}]}}
Number of returned transfers:  164
Answer is complete
 
symbol             NAV
group              CPI
date        2019-08-01
hour             20:00
exchange       binance
Name: 1030, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-08-01 20:00:00 2019-08-01 08:00:00 2019-08-02 08:00:00
Unix timestamps:  1564639200.0 1564725600.0
Hex Block Numbers:  0x7e15d5 0x7e2ec1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            WABI
group              CPI
date        2019-08-02
hour             18:00
exchange       binance
Name: 1031, dtype: object
HERE
 Symbol: WABI, Contract: 
Datetime timestamps:  2019-08-02 18:00:00 2019-08-02 06:00:00 2019-08-03 06:00:00
Unix timestamps:  1564718400.0 1564804800.0
Hex Block Numbers:  0x7e2ca2 0x7e45e9
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SNM
group              CPI
date        2019-08-04
hour             18:00
exchange       binance
Name: 1032, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2019-08-04 18:00:00 2019-08-04 06:00:00 2019-08-05 06:00:00
Unix timestamps:  1564891200.0 1564977600.0
Hex Block Numbers:  0x7e5f3a 0x7e785a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             POA
group              CPI
date        2019-08-06
hour             16:00
exchange       binance
Name: 1033, dtype: object
HERE
 Symbol: POA, Contract: 
Datetime timestamps:  2019-08-06 16:00:00 2019-08-06 04:00:00 2019-08-07 04:00:00
Unix timestamps:  1565056800.0 1565143200.0
Hex Block Numbers:  0x7e8f6c 0x7ea8af
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           YOYOW
group              CPI
date        2019-08-08
hour             16:00
exchange       binance
Name: 1034, dtype: object
HERE
 Symbol: YOYOW, Contract: 
Datetime timestamps:  2019-08-08 16:00:00 2019-08-08 04:00:00 2019-08-09 04:00:00
Unix timestamps:  1565229600.0 1565316000.0
Hex Block Numbers:  0x7ec1e4 0x7edaf8
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RCN
group              CPI
date        2019-08-10
hour             16:00
exchange       binance
Name: 1035, dtype: object
HERE
 Symbol: RCN, Contract: 0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6
Datetime timestamps:  2019-08-10 16:00:00 2019-08-10 04:00:00 2019-08-11 04:00:00
Unix timestamps:  1565402400.0 1565488800.0
Hex Block Numbers:  0x7ef42d 0x7f0d64
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x7ef4b5', 'uniqueId': '0xd847588f15d91d1384524a6850cfc9dafb721b7441d6b5138741c47f9551e286:log:6', 'hash': '0xd847588f15d91d1384524a6850cfc9dafb721b7441d6b5138741c47f9551e286', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c89fac39476dc7472efa6c5ac5d14cfb25a035a', 'value': 219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0bdf3c4bb0328c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T02:29:28.000Z'}}, {'blockNum': '0x7ef4e5', 'uniqueId': '0x57ca5663012ae22bd221a938a94cec1f9ae192d0476f14af350e7d665847cc12:log:0', 'hash': '0x57ca5663012ae22bd221a938a94cec1f9ae192d0476f14af350e7d665847cc12', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0c89fac39476dc7472efa6c5ac5d14cfb25a035a', 'value': 45620.07769272, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09a911c20bff898be000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T02:40:42.000Z'}}, {'blockNum': '0x7ef5a8', 'uniqueId': '0xa8eb33e7914eaafffec4f05061cd724dfa9f5387ed217e4ee50e3e63c947367b:log:8', 'hash': '0xa8eb33e7914eaafffec4f05061cd724dfa9f5387ed217e4ee50e3e63c947367b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x25816d2b38741df2d575c700ee01cb577327857d', 'value': 64817, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0db9bc9284d0de240000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T03:26:30.000Z'}}, {'blockNum': '0x7ef5bf', 'uniqueId': '0x23c457395ac3f79fa0d2397f16f47dd5971570c28c2bb9a5638cc28bce31d7ba:log:2', 'hash': '0x23c457395ac3f79fa0d2397f16f47dd5971570c28c2bb9a5638cc28bce31d7ba', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a133d14f6cc05f581961002622d630a9355e230', 'value': 2407.509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8282e627f87be88000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T03:31:04.000Z'}}, {'blockNum': '0x7ef690', 'uniqueId': '0xc99f6bcf8e7ae0e4e90dbd1ad3ab456600f4b6ce65020158949585652e886750:log:37', 'hash': '0xc99f6bcf8e7ae0e4e90dbd1ad3ab456600f4b6ce65020158949585652e886750', 'from': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 143000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1e480ba811875b600000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T04:20:42.000Z'}}, {'blockNum': '0x7ef84f', 'uniqueId': '0x51bf4b5ac4b6ec8e05e0bdb678539878104fa31390e495b5327272ebd7a40290:log:4', 'hash': '0x51bf4b5ac4b6ec8e05e0bdb678539878104fa31390e495b5327272ebd7a40290', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x13931d3c9ccf00088d3441ea4385c225d253bf3e', 'value': 12136.829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0291f05667d2f36c8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T05:59:51.000Z'}}, {'blockNum': '0x7efa37', 'uniqueId': '0x7caacf5385662f79fc3c3b2e54b370168e442657bfadcb3933c1cbd465c1b745:log:23', 'hash': '0x7caacf5385662f79fc3c3b2e54b370168e442657bfadcb3933c1cbd465c1b745', 'from': '0x4e4b798789223ac46c667cb83e9e8cb7f63ae7a4', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 139926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1da1675638475c980000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T07:40:55.000Z'}}, {'blockNum': '0x7efb17', 'uniqueId': '0xcba8b97c4c7f2f909d1cbf78b3e30192c6a1946804d18b9dac49f93baf214177:log:30', 'hash': '0xcba8b97c4c7f2f909d1cbf78b3e30192c6a1946804d18b9dac49f93baf214177', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8976068f29236b0e7bd549bd7f48e2ec8b238d6e', 'value': 4989.42518081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x010e7a2f16d6d130e400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T08:29:52.000Z'}}, {'blockNum': '0x7efb2a', 'uniqueId': '0x23844d5a08061b31616f9fc0ad9489998416aa1c99a2e29e4566631b1141e127:log:18', 'hash': '0x23844d5a08061b31616f9fc0ad9489998416aa1c99a2e29e4566631b1141e127', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6676.395324333669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0169ed98fe6c4b3c8916', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T08:33:32.000Z'}}, {'blockNum': '0x7efb2a', 'uniqueId': '0x23844d5a08061b31616f9fc0ad9489998416aa1c99a2e29e4566631b1141e127:log:22', 'hash': '0x23844d5a08061b31616f9fc0ad9489998416aa1c99a2e29e4566631b1141e127', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 6676.395324333669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0169ed98fe6c4b3c8916', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T08:33:32.000Z'}}, {'blockNum': '0x7efdde', 'uniqueId': '0x5e5b07576971109dac80c0b4de5c844664e736169cd91615fd81e2eefa90526e:log:2', 'hash': '0x5e5b07576971109dac80c0b4de5c844664e736169cd91615fd81e2eefa90526e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'value': 38308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x081cae4b9b8470100000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:05:38.000Z'}}, {'blockNum': '0x7efdec', 'uniqueId': '0x9c7b552dd224349ae40e1e860363c062f7a23fc9be653a4a94d279fecf62cd5d:log:17', 'hash': '0x9c7b552dd224349ae40e1e860363c062f7a23fc9be653a4a94d279fecf62cd5d', 'from': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 38308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x081cae4b9b8470100000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:09:15.000Z'}}, {'blockNum': '0x7efe18', 'uniqueId': '0x7aa4984c1907c19c0720f4bd925758454a090b1319a8c88f821a4a705e7f62c0:log:15', 'hash': '0x7aa4984c1907c19c0720f4bd925758454a090b1319a8c88f821a4a705e7f62c0', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13209.86908014105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02cc1bc29380975cf457', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:21:48.000Z'}}, {'blockNum': '0x7efe18', 'uniqueId': '0x7aa4984c1907c19c0720f4bd925758454a090b1319a8c88f821a4a705e7f62c0:log:19', 'hash': '0x7aa4984c1907c19c0720f4bd925758454a090b1319a8c88f821a4a705e7f62c0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 13209.86908014105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02cc1bc29380975cf457', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:21:48.000Z'}}, {'blockNum': '0x7efe57', 'uniqueId': '0x7c91d6fef0c77a7096327bf510ca33db80faba7c517583f03c59e24fccd908c1:log:42', 'hash': '0x7c91d6fef0c77a7096327bf510ca33db80faba7c517583f03c59e24fccd908c1', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15587.50381927686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034d0012097f61f5e24b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:37:55.000Z'}}, {'blockNum': '0x7efe57', 'uniqueId': '0x7c91d6fef0c77a7096327bf510ca33db80faba7c517583f03c59e24fccd908c1:log:46', 'hash': '0x7c91d6fef0c77a7096327bf510ca33db80faba7c517583f03c59e24fccd908c1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 15587.50381927686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034d0012097f61f5e24b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:37:55.000Z'}}, {'blockNum': '0x7efe57', 'uniqueId': '0xe9d2cc481c7580ad40302fe4658c60b8dc8702c48bfdc968a1cea174c6bcb60d:log:104', 'hash': '0xe9d2cc481c7580ad40302fe4658c60b8dc8702c48bfdc968a1cea174c6bcb60d', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 6551.691076619321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01632afa81d69737ebfc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:37:55.000Z'}}, {'blockNum': '0x7efe57', 'uniqueId': '0xe9d2cc481c7580ad40302fe4658c60b8dc8702c48bfdc968a1cea174c6bcb60d:log:107', 'hash': '0xe9d2cc481c7580ad40302fe4658c60b8dc8702c48bfdc968a1cea174c6bcb60d', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6551.691076619321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01632afa81d69737ebfc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:37:55.000Z'}}, {'blockNum': '0x7efe57', 'uniqueId': '0xe9d2cc481c7580ad40302fe4658c60b8dc8702c48bfdc968a1cea174c6bcb60d:log:109', 'hash': '0xe9d2cc481c7580ad40302fe4658c60b8dc8702c48bfdc968a1cea174c6bcb60d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 6551.691076619321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01632afa81d69737ebfc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:37:55.000Z'}}, {'blockNum': '0x7efe59', 'uniqueId': '0x21402622d88b9fe67c4c14debd26981a8501b0cf15afd21ab8d29d70e7acdbc2:log:23', 'hash': '0x21402622d88b9fe67c4c14debd26981a8501b0cf15afd21ab8d29d70e7acdbc2', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 15587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034cf9141c88ddac0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:38:55.000Z'}}, {'blockNum': '0x7efe5c', 'uniqueId': '0x923acc218feb2d9f435e9b58493708e0cf69f92df1da580e60cf5e404cdc8a75:log:20', 'hash': '0x923acc218feb2d9f435e9b58493708e0cf69f92df1da580e60cf5e404cdc8a75', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15439.872591749345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0344ff468e3ebd8610a8', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:39:09.000Z'}}, {'blockNum': '0x7efe5c', 'uniqueId': '0x923acc218feb2d9f435e9b58493708e0cf69f92df1da580e60cf5e404cdc8a75:log:24', 'hash': '0x923acc218feb2d9f435e9b58493708e0cf69f92df1da580e60cf5e404cdc8a75', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 15439.872591749345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0344ff468e3ebd8610a8', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:39:09.000Z'}}, {'blockNum': '0x7efe5e', 'uniqueId': '0x7d2113b980bc3e18063e8f11ec46f50224b67731cda50df2de1a42072481f70d:log:115', 'hash': '0x7d2113b980bc3e18063e8f11ec46f50224b67731cda50df2de1a42072481f70d', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2218.009288775219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x783d0ff09fcbb9ea59', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:39:50.000Z'}}, {'blockNum': '0x7efe5e', 'uniqueId': '0x7d2113b980bc3e18063e8f11ec46f50224b67731cda50df2de1a42072481f70d:log:117', 'hash': '0x7d2113b980bc3e18063e8f11ec46f50224b67731cda50df2de1a42072481f70d', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2218.00919892491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x783d0f9ee7e3fc0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:39:50.000Z'}}, {'blockNum': '0x7efe5e', 'uniqueId': '0x7d2113b980bc3e18063e8f11ec46f50224b67731cda50df2de1a42072481f70d:log:119', 'hash': '0x7d2113b980bc3e18063e8f11ec46f50224b67731cda50df2de1a42072481f70d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 2218.00919892491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x783d0f9ee7e3fc0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:39:50.000Z'}}, {'blockNum': '0x7efe68', 'uniqueId': '0x19499f4f93acdca56843ab84a6b3b96bc491651b053fc1fc86c99c66abaf5ce7:log:11', 'hash': '0x19499f4f93acdca56843ab84a6b3b96bc491651b053fc1fc86c99c66abaf5ce7', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15587, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034cf9141c88ddac0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T11:42:48.000Z'}}, {'blockNum': '0x7f00aa', 'uniqueId': '0xb73dbe2bcdf056d86fc040f115bfe517bb5f246ff24fdac357f53a6ccfde1dd6:log:14', 'hash': '0xb73dbe2bcdf056d86fc040f115bfe517bb5f246ff24fdac357f53a6ccfde1dd6', 'from': '0x4fd97620ce8347b2d547420ca7f70784e5599397', 'to': '0x221f8c3320ecfcac29c1e9b7bbf75b087d9701fc', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T13:53:03.000Z'}}, {'blockNum': '0x7f0201', 'uniqueId': '0x5e02130fcc8a39b5fbb89e4453530e1aa9c2934e2f577ba7ede1ce494c2470a9:log:1', 'hash': '0x5e02130fcc8a39b5fbb89e4453530e1aa9c2934e2f577ba7ede1ce494c2470a9', 'from': '0xa8cbaea29698dbcd630cff133608c2f3c81d54ad', 'to': '0x8b128cfc18f26e9281e4e5cb8c874807d1819803', 'value': 2010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6cf65a7e9047280000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T15:10:16.000Z'}}, {'blockNum': '0x7f0215', 'uniqueId': '0xecc390ca3d575b93f270af0b0e2d640ccf7631618e919ec763916c17185738f1:log:56', 'hash': '0xecc390ca3d575b93f270af0b0e2d640ccf7631618e919ec763916c17185738f1', 'from': '0x8b128cfc18f26e9281e4e5cb8c874807d1819803', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 2010, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6cf65a7e9047280000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T15:14:56.000Z'}}, {'blockNum': '0x7f021e', 'uniqueId': '0xff056f86bc52db2333c2c210486b03a1b537e0b40fe556f6fa1851f11e17e2f4:log:28', 'hash': '0xff056f86bc52db2333c2c210486b03a1b537e0b40fe556f6fa1851f11e17e2f4', 'from': '0x888cb5b838fd021a5470cb9ade072a2bd76bb4d4', 'to': '0x9194eea248b97a2b7ff271d654b9112ecd39ad88', 'value': 11869.812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x028376bb750a6cf20000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T15:17:20.000Z'}}, {'blockNum': '0x7f0236', 'uniqueId': '0x9a98f7a08bf10b8f0c74e5e640de2582ceff23f346f57d89ec2216ab2aa1f529:log:33', 'hash': '0x9a98f7a08bf10b8f0c74e5e640de2582ceff23f346f57d89ec2216ab2aa1f529', 'from': '0x9194eea248b97a2b7ff271d654b9112ecd39ad88', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15113.812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03335246a19794220000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T15:22:44.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0x7250e07ca7e06049afc2ec23cdb92267928001b3bc258bfa13dca0f6f5c45cee:log:31', 'hash': '0x7250e07ca7e06049afc2ec23cdb92267928001b3bc258bfa13dca0f6f5c45cee', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15197.67371845771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0337de174e3601d5409f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0x7250e07ca7e06049afc2ec23cdb92267928001b3bc258bfa13dca0f6f5c45cee:log:35', 'hash': '0x7250e07ca7e06049afc2ec23cdb92267928001b3bc258bfa13dca0f6f5c45cee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 15197.67371845771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0337de174e3601d5409f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0x3327164d601890ec9a9d8ea324442689902997fd7643e56d5fd6b61dc8f18f02:log:46', 'hash': '0x3327164d601890ec9a9d8ea324442689902997fd7643e56d5fd6b61dc8f18f02', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12477.938927548941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02a46e304fa6e541c63d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0x3327164d601890ec9a9d8ea324442689902997fd7643e56d5fd6b61dc8f18f02:log:50', 'hash': '0x3327164d601890ec9a9d8ea324442689902997fd7643e56d5fd6b61dc8f18f02', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 12477.938927548941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02a46e304fa6e541c63d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0x214ac91e9f729d9340fb79fbdc386c69438a613f0eca9826226c7b9ad60322bb:log:53', 'hash': '0x214ac91e9f729d9340fb79fbdc386c69438a613f0eca9826226c7b9ad60322bb', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 19309.989701338825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0416cbf08ca850070d72', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0x214ac91e9f729d9340fb79fbdc386c69438a613f0eca9826226c7b9ad60322bb:log:55', 'hash': '0x214ac91e9f729d9340fb79fbdc386c69438a613f0eca9826226c7b9ad60322bb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 19309.989701338825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0416cbf08ca850070d72', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0x23c49766071150edb5c5789f6fec0f25950d66f122ac532677417f7f1b0878f7:log:99', 'hash': '0x23c49766071150edb5c5789f6fec0f25950d66f122ac532677417f7f1b0878f7', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 3822.921689047825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcf3db22d7b57f26659', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0x23c49766071150edb5c5789f6fec0f25950d66f122ac532677417f7f1b0878f7:log:101', 'hash': '0x23c49766071150edb5c5789f6fec0f25950d66f122ac532677417f7f1b0878f7', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3822.9005989030024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcf3d67401b5986469f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e7', 'uniqueId': '0x23c49766071150edb5c5789f6fec0f25950d66f122ac532677417f7f1b0878f7:log:103', 'hash': '0x23c49766071150edb5c5789f6fec0f25950d66f122ac532677417f7f1b0878f7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 3822.9005989030024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xcf3d67401b5986469f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:37.000Z'}}, {'blockNum': '0x7f02e8', 'uniqueId': '0xa48833a9f6c17a1c36f7b7a2c60230579f2159742a6f24845e13144b79e33107:log:20', 'hash': '0xa48833a9f6c17a1c36f7b7a2c60230579f2159742a6f24845e13144b79e33107', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12620.109121225174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02ac23324d8cedad7d4f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:45.000Z'}}, {'blockNum': '0x7f02e8', 'uniqueId': '0xa48833a9f6c17a1c36f7b7a2c60230579f2159742a6f24845e13144b79e33107:log:24', 'hash': '0xa48833a9f6c17a1c36f7b7a2c60230579f2159742a6f24845e13144b79e33107', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'value': 12620.109121225174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02ac23324d8cedad7d4f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:45.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x662ff5705039e230a390c149e6157b2f1fa0bd8ab16fed9c0aa6a5e7bd5c4573:log:22', 'hash': '0x662ff5705039e230a390c149e6157b2f1fa0bd8ab16fed9c0aa6a5e7bd5c4573', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 25955.840858970154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x057f11a6dd4b6dfec312', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02e9', 'uniqueId': '0x662ff5705039e230a390c149e6157b2f1fa0bd8ab16fed9c0aa6a5e7bd5c4573:log:26', 'hash': '0x662ff5705039e230a390c149e6157b2f1fa0bd8ab16fed9c0aa6a5e7bd5c4573', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 25955.840858970154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x057f11a6dd4b6dfec312', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:50.000Z'}}, {'blockNum': '0x7f02ea', 'uniqueId': '0x86cd1dea7170bdb6efa7a5104d76f6b7bcb0843b1dee2b0c7bd12f9326e8a212:log:9', 'hash': '0x86cd1dea7170bdb6efa7a5104d76f6b7bcb0843b1dee2b0c7bd12f9326e8a212', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 15198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0337e29e7d8b82b80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:55.000Z'}}, {'blockNum': '0x7f02ea', 'uniqueId': '0x6b141231b77c2e64e97cb24f53ad743555a13606f7d267aaf6c3c4e3e78c4374:log:17', 'hash': '0x6b141231b77c2e64e97cb24f53ad743555a13606f7d267aaf6c3c4e3e78c4374', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 4346.333825715032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xeb9d7fa29fd104d75b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:55.000Z'}}, {'blockNum': '0x7f02ea', 'uniqueId': '0x6b141231b77c2e64e97cb24f53ad743555a13606f7d267aaf6c3c4e3e78c4374:log:19', 'hash': '0x6b141231b77c2e64e97cb24f53ad743555a13606f7d267aaf6c3c4e3e78c4374', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4346.333476850144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xeb9d7e655561480000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:55.000Z'}}, {'blockNum': '0x7f02ea', 'uniqueId': '0x6b141231b77c2e64e97cb24f53ad743555a13606f7d267aaf6c3c4e3e78c4374:log:21', 'hash': '0x6b141231b77c2e64e97cb24f53ad743555a13606f7d267aaf6c3c4e3e78c4374', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 4346.333476850144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xeb9d7e655561480000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:55.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x89d986bcc6d243312974896a1a8a0ebaa6e255c015b2978c419a4a3342400c3c:log:4', 'hash': '0x89d986bcc6d243312974896a1a8a0ebaa6e255c015b2978c419a4a3342400c3c', 'from': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'to': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'value': 12620, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02ac21aea05fd5b00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x49a93816741f476a9beaf81eb3bae55607f4dae3ec0f6c1b84b07d9de9784967:log:8', 'hash': '0x49a93816741f476a9beaf81eb3bae55607f4dae3ec0f6c1b84b07d9de9784967', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa464b86efce0f91abb46f6df0f09df974dfcae05', 'value': 26489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x059bf8b8a3435a440000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x0525241f27d828b40f7f0e5112fbb497bc8a5d96c5b0b60dbcd721d43161c040:log:37', 'hash': '0x0525241f27d828b40f7f0e5112fbb497bc8a5d96c5b0b60dbcd721d43161c040', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2789.0619498288424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9732028a492a829972', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x0525241f27d828b40f7f0e5112fbb497bc8a5d96c5b0b60dbcd721d43161c040:log:39', 'hash': '0x0525241f27d828b40f7f0e5112fbb497bc8a5d96c5b0b60dbcd721d43161c040', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2789.061805009191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9732020692b6a00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02eb', 'uniqueId': '0x0525241f27d828b40f7f0e5112fbb497bc8a5d96c5b0b60dbcd721d43161c040:log:41', 'hash': '0x0525241f27d828b40f7f0e5112fbb497bc8a5d96c5b0b60dbcd721d43161c040', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 2789.061805009191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9732020692b6a00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:00:56.000Z'}}, {'blockNum': '0x7f02ed', 'uniqueId': '0xda27faa9c5fe38d2c1f9144ea5c759edcb43e43e20998578085ecd8aab8884a7:log:47', 'hash': '0xda27faa9c5fe38d2c1f9144ea5c759edcb43e43e20998578085ecd8aab8884a7', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 36123.23500038647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07a63e971bbff934304d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:01:35.000Z'}}, {'blockNum': '0x7f02ed', 'uniqueId': '0xda27faa9c5fe38d2c1f9144ea5c759edcb43e43e20998578085ecd8aab8884a7:log:51', 'hash': '0xda27faa9c5fe38d2c1f9144ea5c759edcb43e43e20998578085ecd8aab8884a7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaae728e2903540cc0d5c3527b877440f9353ea6f', 'value': 36123.23500038647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07a63e971bbff934304d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:01:35.000Z'}}, {'blockNum': '0x7f02ee', 'uniqueId': '0x029d7344859fe64293912ed1bbb85128e137a515a1840f4953087b9fecb1f0ba:log:38', 'hash': '0x029d7344859fe64293912ed1bbb85128e137a515a1840f4953087b9fecb1f0ba', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 31319.570150386055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06a1d6594994e84d434b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:06.000Z'}}, {'blockNum': '0x7f02ee', 'uniqueId': '0x029d7344859fe64293912ed1bbb85128e137a515a1840f4953087b9fecb1f0ba:log:42', 'hash': '0x029d7344859fe64293912ed1bbb85128e137a515a1840f4953087b9fecb1f0ba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 31319.570150386055, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x06a1d6594994e84d434b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:06.000Z'}}, {'blockNum': '0x7f02ee', 'uniqueId': '0xd47431553067e4b18c0ff120d81850f91f0e7a0cc917bf0720ca63ccf5af57f8:log:46', 'hash': '0xd47431553067e4b18c0ff120d81850f91f0e7a0cc917bf0720ca63ccf5af57f8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 9798.24003134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x021329e5633401013800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:06.000Z'}}, {'blockNum': '0x7f02ee', 'uniqueId': '0xbb5ad158649333ce3d5aa0f5655f42eb54b6e4964d40c3ba984167e14f73e02e:log:86', 'hash': '0xbb5ad158649333ce3d5aa0f5655f42eb54b6e4964d40c3ba984167e14f73e02e', 'from': '0xaae728e2903540cc0d5c3527b877440f9353ea6f', 'to': '0x2ec3bc221b864e4726d2def9284060c1ddb4e2b9', 'value': 36123.23500038647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07a63e971bbff934304d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:06.000Z'}}, {'blockNum': '0x7f02ee', 'uniqueId': '0x86ab394308142658174d25f872619e71c2ed9293b22e1d6d9141a578ed33c683:log:128', 'hash': '0x86ab394308142658174d25f872619e71c2ed9293b22e1d6d9141a578ed33c683', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 14982.070118749665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x032c2dfd7297e439b666', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:06.000Z'}}, {'blockNum': '0x7f02ee', 'uniqueId': '0x86ab394308142658174d25f872619e71c2ed9293b22e1d6d9141a578ed33c683:log:131', 'hash': '0x86ab394308142658174d25f872619e71c2ed9293b22e1d6d9141a578ed33c683', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14982.070118749665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x032c2dfd7297e439b666', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:06.000Z'}}, {'blockNum': '0x7f02ee', 'uniqueId': '0x86ab394308142658174d25f872619e71c2ed9293b22e1d6d9141a578ed33c683:log:133', 'hash': '0x86ab394308142658174d25f872619e71c2ed9293b22e1d6d9141a578ed33c683', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 14982.070118749665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x032c2dfd7297e439b666', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:06.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xc9ca4bb4572bfa15501771f06e1b30188eeca39ffb5f783ccd23bdec2a665dd0:log:21', 'hash': '0xc9ca4bb4572bfa15501771f06e1b30188eeca39ffb5f783ccd23bdec2a665dd0', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 22886.441886790504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04d8ad2f267850c4eb18', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0xc9ca4bb4572bfa15501771f06e1b30188eeca39ffb5f783ccd23bdec2a665dd0:log:25', 'hash': '0xc9ca4bb4572bfa15501771f06e1b30188eeca39ffb5f783ccd23bdec2a665dd0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 22886.441886790504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04d8ad2f267850c4eb18', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x9027d9295a48085a3b00dc5f92e2ac1e7f07bfb7b9d58d90a2eb193b617bd62f:log:38', 'hash': '0x9027d9295a48085a3b00dc5f92e2ac1e7f07bfb7b9d58d90a2eb193b617bd62f', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33251.57119738508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x070a923fd5a5a3d40da0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x9027d9295a48085a3b00dc5f92e2ac1e7f07bfb7b9d58d90a2eb193b617bd62f:log:42', 'hash': '0x9027d9295a48085a3b00dc5f92e2ac1e7f07bfb7b9d58d90a2eb193b617bd62f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 33251.57119738508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x070a923fd5a5a3d40da0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x45ebe0547903c9a1ba9b64028cb9c868d1aab7dbea6f8845b9760e4242e9e2de:log:60', 'hash': '0x45ebe0547903c9a1ba9b64028cb9c868d1aab7dbea6f8845b9760e4242e9e2de', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 8590.245683305766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01d1ad9b57e4f4e3abde', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x45ebe0547903c9a1ba9b64028cb9c868d1aab7dbea6f8845b9760e4242e9e2de:log:62', 'hash': '0x45ebe0547903c9a1ba9b64028cb9c868d1aab7dbea6f8845b9760e4242e9e2de', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8590.245683305766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01d1ad9b57e4f4e3abde', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x45ebe0547903c9a1ba9b64028cb9c868d1aab7dbea6f8845b9760e4242e9e2de:log:64', 'hash': '0x45ebe0547903c9a1ba9b64028cb9c868d1aab7dbea6f8845b9760e4242e9e2de', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 8590.245683305766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01d1ad9b57e4f4e3abde', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x18f411867e6c365b3fe6359f4ce41021383caa9d3cbcd6f7a0b1749fa7c8ddfa:log:76', 'hash': '0x18f411867e6c365b3fe6359f4ce41021383caa9d3cbcd6f7a0b1749fa7c8ddfa', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 8311.94707206799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01c297700f767cb1a5d9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x18f411867e6c365b3fe6359f4ce41021383caa9d3cbcd6f7a0b1749fa7c8ddfa:log:79', 'hash': '0x18f411867e6c365b3fe6359f4ce41021383caa9d3cbcd6f7a0b1749fa7c8ddfa', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8311.94707206799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01c297700f767cb1a5d9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02ef', 'uniqueId': '0x18f411867e6c365b3fe6359f4ce41021383caa9d3cbcd6f7a0b1749fa7c8ddfa:log:81', 'hash': '0x18f411867e6c365b3fe6359f4ce41021383caa9d3cbcd6f7a0b1749fa7c8ddfa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 8311.94707206799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01c297700f767cb1a5d9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:41.000Z'}}, {'blockNum': '0x7f02f0', 'uniqueId': '0x3d45d1f185a8df1b0712e407eaa6438fbd924c111065c1f22c0650bd4a5404bd:log:3', 'hash': '0x3d45d1f185a8df1b0712e407eaa6438fbd924c111065c1f22c0650bd4a5404bd', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 60581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0cd41a43601b13740000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:50.000Z'}}, {'blockNum': '0x7f02f0', 'uniqueId': '0x0a00f1a91e805de28c7502f78b2037cc72639166366c9cd1e5255a57ecc1a16c:log:11', 'hash': '0x0a00f1a91e805de28c7502f78b2037cc72639166366c9cd1e5255a57ecc1a16c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 35350.44176253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x077c59ee005a7e525400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:50.000Z'}}, {'blockNum': '0x7f02f0', 'uniqueId': '0xb2a302ccfeec328feba1481a338b7e60f88d145735b6bd8fc2b6b01661d9cc20:log:12', 'hash': '0xb2a302ccfeec328feba1481a338b7e60f88d145735b6bd8fc2b6b01661d9cc20', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 200201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2a64eaff35a45a840000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:50.000Z'}}, {'blockNum': '0x7f02f0', 'uniqueId': '0xeaf1142326777ca83211c1d59bd6173a099472660d20c8292320befd980e9e26:log:34', 'hash': '0xeaf1142326777ca83211c1d59bd6173a099472660d20c8292320befd980e9e26', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 21898.30410606493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04a31c048a474618250b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:50.000Z'}}, {'blockNum': '0x7f02f0', 'uniqueId': '0xeaf1142326777ca83211c1d59bd6173a099472660d20c8292320befd980e9e26:log:38', 'hash': '0xeaf1142326777ca83211c1d59bd6173a099472660d20c8292320befd980e9e26', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 21898.30410606493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04a31c048a474618250b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:50.000Z'}}, {'blockNum': '0x7f02f0', 'uniqueId': '0xfc4ab4fa597634d82563fe18312e6bef1eab6b30ba51d7e34ca245ea1330018a:log:105', 'hash': '0xfc4ab4fa597634d82563fe18312e6bef1eab6b30ba51d7e34ca245ea1330018a', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 33251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x070a8a5288a6d1ac0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:02:50.000Z'}}, {'blockNum': '0x7f02f1', 'uniqueId': '0x96504ffbcd6c5d0bab9ad6340e17ff311c39813061af0fbbcd409bf87612e0fc:log:42', 'hash': '0x96504ffbcd6c5d0bab9ad6340e17ff311c39813061af0fbbcd409bf87612e0fc', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 22886.441886790504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04d8ad2f267850c4eb18', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:03:19.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xe3fdb2bfc737b179dc2714cd4b4614fd54ae9e529ffd4e84176d1d507dcddf7f:log:30', 'hash': '0xe3fdb2bfc737b179dc2714cd4b4614fd54ae9e529ffd4e84176d1d507dcddf7f', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 21356.656195089483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0485bf24990516254867', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0xe3fdb2bfc737b179dc2714cd4b4614fd54ae9e529ffd4e84176d1d507dcddf7f:log:34', 'hash': '0xe3fdb2bfc737b179dc2714cd4b4614fd54ae9e529ffd4e84176d1d507dcddf7f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xf403f9dd65a7e96a38ed2003a002b97fada1d27a', 'value': 21356.656195089483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0485bf24990516254867', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0x74edc0a80df220a08de657f8fce56b35575fa6875296c802991bb7b39a154933:log:36', 'hash': '0x74edc0a80df220a08de657f8fce56b35575fa6875296c802991bb7b39a154933', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 5616.253957909187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0130752e428796c462f3', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0x74edc0a80df220a08de657f8fce56b35575fa6875296c802991bb7b39a154933:log:38', 'hash': '0x74edc0a80df220a08de657f8fce56b35575fa6875296c802991bb7b39a154933', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5616.253330162499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0130752c0798ec600000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f2', 'uniqueId': '0x74edc0a80df220a08de657f8fce56b35575fa6875296c802991bb7b39a154933:log:40', 'hash': '0x74edc0a80df220a08de657f8fce56b35575fa6875296c802991bb7b39a154933', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5616.253330162499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0130752c0798ec600000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:04:00.000Z'}}, {'blockNum': '0x7f02f8', 'uniqueId': '0x8e32c23203a4181e5c2c88b6bbf944e9f72edff1f05f17551d088258130f44a6:log:68', 'hash': '0x8e32c23203a4181e5c2c88b6bbf944e9f72edff1f05f17551d088258130f44a6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 10290.88916614, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x022ddec6b52302895800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:09.000Z'}}, {'blockNum': '0x7f02f8', 'uniqueId': '0x866cb01d99474de7821c61e23473f6b5c9813a42049bcfe37527363688cd4781:log:89', 'hash': '0x866cb01d99474de7821c61e23473f6b5c9813a42049bcfe37527363688cd4781', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 10338.647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0230758c9e0025f58000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:09.000Z'}}, {'blockNum': '0x7f02f9', 'uniqueId': '0xa82f0b3dc5dd8c3e2b9cd19023ff861474b93cad9345da9ae75326c4f66cbf09:log:17', 'hash': '0xa82f0b3dc5dd8c3e2b9cd19023ff861474b93cad9345da9ae75326c4f66cbf09', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 31263.99376958984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069ed31251b42c409613', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:18.000Z'}}, {'blockNum': '0x7f02f9', 'uniqueId': '0xa82f0b3dc5dd8c3e2b9cd19023ff861474b93cad9345da9ae75326c4f66cbf09:log:21', 'hash': '0xa82f0b3dc5dd8c3e2b9cd19023ff861474b93cad9345da9ae75326c4f66cbf09', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 31263.99376958984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069ed31251b42c409613', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:18.000Z'}}, {'blockNum': '0x7f02f9', 'uniqueId': '0x875d49c48b1623a7455dda643293a519f42def94d841fb8465781da7edbd8387:log:41', 'hash': '0x875d49c48b1623a7455dda643293a519f42def94d841fb8465781da7edbd8387', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 5272.949322624004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011dd8df2fa4c85e0b21', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:18.000Z'}}, {'blockNum': '0x7f02f9', 'uniqueId': '0x875d49c48b1623a7455dda643293a519f42def94d841fb8465781da7edbd8387:log:44', 'hash': '0x875d49c48b1623a7455dda643293a519f42def94d841fb8465781da7edbd8387', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5272.949322624004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011dd8df2fa4c85e0b21', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:18.000Z'}}, {'blockNum': '0x7f02f9', 'uniqueId': '0x875d49c48b1623a7455dda643293a519f42def94d841fb8465781da7edbd8387:log:46', 'hash': '0x875d49c48b1623a7455dda643293a519f42def94d841fb8465781da7edbd8387', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5272.949322624004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011dd8df2fa4c85e0b21', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:18.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0xa318261a9c58ca430de8db434228a75acbc6a7dc05699411e4c7afb1cb26fa66:log:36', 'hash': '0xa318261a9c58ca430de8db434228a75acbc6a7dc05699411e4c7afb1cb26fa66', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1777.683783268632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x605e517e4f7b4be7dd', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0xa318261a9c58ca430de8db434228a75acbc6a7dc05699411e4c7afb1cb26fa66:log:38', 'hash': '0xa318261a9c58ca430de8db434228a75acbc6a7dc05699411e4c7afb1cb26fa66', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1777.6837189827643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x605e5143d7c3000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fb', 'uniqueId': '0xa318261a9c58ca430de8db434228a75acbc6a7dc05699411e4c7afb1cb26fa66:log:40', 'hash': '0xa318261a9c58ca430de8db434228a75acbc6a7dc05699411e4c7afb1cb26fa66', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 1777.6837189827643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x605e5143d7c3000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:26.000Z'}}, {'blockNum': '0x7f02fd', 'uniqueId': '0x4f430512aa0c160a1da7506d2f2ff558b04632d00df442adbdb7fcb4e358d14f:log:42', 'hash': '0x4f430512aa0c160a1da7506d2f2ff558b04632d00df442adbdb7fcb4e358d14f', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 31263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x069ec547bd86ed1c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:43.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xdb2e434592d463cbc5b0e9075f536e1583c634d3a6f42f874ed31ba6c50b5022:log:28', 'hash': '0xdb2e434592d463cbc5b0e9075f536e1583c634d3a6f42f874ed31ba6c50b5022', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20385.047666929568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0451135db076063c7ca1', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xdb2e434592d463cbc5b0e9075f536e1583c634d3a6f42f874ed31ba6c50b5022:log:32', 'hash': '0xdb2e434592d463cbc5b0e9075f536e1583c634d3a6f42f874ed31ba6c50b5022', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 20385.047666929568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0451135db076063c7ca1', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xe5dbabcbf9c32353777d2f1f7e07ba807f2d77c844f2f1729006dc45607ad81f:log:71', 'hash': '0xe5dbabcbf9c32353777d2f1f7e07ba807f2d77c844f2f1729006dc45607ad81f', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 5124.914726382995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0115d27aa6aef2a731c5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xe5dbabcbf9c32353777d2f1f7e07ba807f2d77c844f2f1729006dc45607ad81f:log:74', 'hash': '0xe5dbabcbf9c32353777d2f1f7e07ba807f2d77c844f2f1729006dc45607ad81f', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5124.914726382995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0115d27aa6aef2a731c5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f02fe', 'uniqueId': '0xe5dbabcbf9c32353777d2f1f7e07ba807f2d77c844f2f1729006dc45607ad81f:log:76', 'hash': '0xe5dbabcbf9c32353777d2f1f7e07ba807f2d77c844f2f1729006dc45607ad81f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5124.914726382995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0115d27aa6aef2a731c5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:05:49.000Z'}}, {'blockNum': '0x7f0301', 'uniqueId': '0xaf9c0c9ec898d2365bb9dabe1fa6cf7a03121664d8e7eaa7e5e64a95a3029d2a:log:2', 'hash': '0xaf9c0c9ec898d2365bb9dabe1fa6cf7a03121664d8e7eaa7e5e64a95a3029d2a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 18688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03f514193abb84000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:31.000Z'}}, {'blockNum': '0x7f0301', 'uniqueId': '0x1b15d84654064c60c7bf29ae7cb3bf3f29adf9054b82b4ff2fa02f455005a20a:log:5', 'hash': '0x1b15d84654064c60c7bf29ae7cb3bf3f29adf9054b82b4ff2fa02f455005a20a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 15780, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03576f7dd9fa10100000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:31.000Z'}}, {'blockNum': '0x7f0301', 'uniqueId': '0xa4db811c410b0bb02cdf7416c89da85442749d01b1e485df3add0eba57d0b979:log:8', 'hash': '0xa4db811c410b0bb02cdf7416c89da85442749d01b1e485df3add0eba57d0b979', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 22848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04d697b2221b9d000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:31.000Z'}}, {'blockNum': '0x7f0301', 'uniqueId': '0x1a173e71566f126c166c6b15c129946eee56475bbfc3a000c9cfa90c9c6a0af4:log:9', 'hash': '0x1a173e71566f126c166c6b15c129946eee56475bbfc3a000c9cfa90c9c6a0af4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 26040.311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0583a5e91704f1058000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:31.000Z'}}, {'blockNum': '0x7f0301', 'uniqueId': '0x1d8240cfcec6b1c1130377a4ad978d3aecf916b2b7da51f4c80abd053561ffed:log:19', 'hash': '0x1d8240cfcec6b1c1130377a4ad978d3aecf916b2b7da51f4c80abd053561ffed', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 34377.021552963866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07479502b52786beab48', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:31.000Z'}}, {'blockNum': '0x7f0301', 'uniqueId': '0x1d8240cfcec6b1c1130377a4ad978d3aecf916b2b7da51f4c80abd053561ffed:log:21', 'hash': '0x1d8240cfcec6b1c1130377a4ad978d3aecf916b2b7da51f4c80abd053561ffed', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 34377.021552963866, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07479502b52786beab48', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:31.000Z'}}, {'blockNum': '0x7f0301', 'uniqueId': '0xdf4417f685ea6500e0fc3f0048b24c55df8f9cb7682c3c84e7daf6ed8920d2cd:log:64', 'hash': '0xdf4417f685ea6500e0fc3f0048b24c55df8f9cb7682c3c84e7daf6ed8920d2cd', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5258.409573015683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011d0f179e68e945768f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:31.000Z'}}, {'blockNum': '0x7f0301', 'uniqueId': '0xdf4417f685ea6500e0fc3f0048b24c55df8f9cb7682c3c84e7daf6ed8920d2cd:log:68', 'hash': '0xdf4417f685ea6500e0fc3f0048b24c55df8f9cb7682c3c84e7daf6ed8920d2cd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 5258.409573015683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011d0f179e68e945768f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:31.000Z'}}, {'blockNum': '0x7f0301', 'uniqueId': '0xdf4417f685ea6500e0fc3f0048b24c55df8f9cb7682c3c84e7daf6ed8920d2cd:log:69', 'hash': '0xdf4417f685ea6500e0fc3f0048b24c55df8f9cb7682c3c84e7daf6ed8920d2cd', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 5258.409573015683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011d0f179e68e945768f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:31.000Z'}}, {'blockNum': '0x7f0302', 'uniqueId': '0xd2f627fbb4054c2c33772c95d2514881064fc188105fa67e65e3887ff540930d:log:1', 'hash': '0xd2f627fbb4054c2c33772c95d2514881064fc188105fa67e65e3887ff540930d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 22629, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x04cab875d66b6a740000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:48.000Z'}}, {'blockNum': '0x7f0303', 'uniqueId': '0x387353490cfde337997f76f9c6c96fd1e3515c1b66aef5790396042d158aed68:log:0', 'hash': '0x387353490cfde337997f76f9c6c96fd1e3515c1b66aef5790396042d158aed68', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0bde6a4fc001d927891560cbadcdff0ffb0ff60c', 'value': 12241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02979600246704a40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:52.000Z'}}, {'blockNum': '0x7f0304', 'uniqueId': '0x51728503360f39614b05450aa348a86cefca813d67fb3b1fa2e8e8292094d9f7:log:46', 'hash': '0x51728503360f39614b05450aa348a86cefca813d67fb3b1fa2e8e8292094d9f7', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15585.527220827438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034ce4a3bfae287ca1df', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:58.000Z'}}, {'blockNum': '0x7f0304', 'uniqueId': '0x51728503360f39614b05450aa348a86cefca813d67fb3b1fa2e8e8292094d9f7:log:50', 'hash': '0x51728503360f39614b05450aa348a86cefca813d67fb3b1fa2e8e8292094d9f7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 15585.527220827438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x034ce4a3bfae287ca1df', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:06:58.000Z'}}, {'blockNum': '0x7f0306', 'uniqueId': '0x3276d444cae6f7a049e600c8245d7d23a2e6dfce9d621db3cb992505d2b968c6:log:10', 'hash': '0x3276d444cae6f7a049e600c8245d7d23a2e6dfce9d621db3cb992505d2b968c6', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 35970.574887757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x079df80170242eb91e80', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:36.000Z'}}, {'blockNum': '0x7f0307', 'uniqueId': '0xa506766ec8fef97f4a5b2771f930158edc11d13917e930cb320eb956b9b85664:log:47', 'hash': '0xa506766ec8fef97f4a5b2771f930158edc11d13917e930cb320eb956b9b85664', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12264.280075134988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0298d913956501fcc884', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:46.000Z'}}, {'blockNum': '0x7f0307', 'uniqueId': '0xa506766ec8fef97f4a5b2771f930158edc11d13917e930cb320eb956b9b85664:log:51', 'hash': '0xa506766ec8fef97f4a5b2771f930158edc11d13917e930cb320eb956b9b85664', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 12264.280075134988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0298d913956501fcc884', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:07:46.000Z'}}, {'blockNum': '0x7f0308', 'uniqueId': '0x650417183d34dd71e270159389d559ba65c34d10b62403492e80fbadd968a215:log:1', 'hash': '0x650417183d34dd71e270159389d559ba65c34d10b62403492e80fbadd968a215', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 12264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0298d5308e8b0ea00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:02.000Z'}}, {'blockNum': '0x7f0308', 'uniqueId': '0x1930b6df06673166d6bf278e1df9140f69d7e600dbf9cb8ca9e1eeb57d94a81e:log:113', 'hash': '0x1930b6df06673166d6bf278e1df9140f69d7e600dbf9cb8ca9e1eeb57d94a81e', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3252.9942589167563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb0585d3361ee5484b7', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:02.000Z'}}, {'blockNum': '0x7f0308', 'uniqueId': '0x1930b6df06673166d6bf278e1df9140f69d7e600dbf9cb8ca9e1eeb57d94a81e:log:115', 'hash': '0x1930b6df06673166d6bf278e1df9140f69d7e600dbf9cb8ca9e1eeb57d94a81e', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3252.9940429297394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb0585c6ef188e80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:02.000Z'}}, {'blockNum': '0x7f0308', 'uniqueId': '0x1930b6df06673166d6bf278e1df9140f69d7e600dbf9cb8ca9e1eeb57d94a81e:log:117', 'hash': '0x1930b6df06673166d6bf278e1df9140f69d7e600dbf9cb8ca9e1eeb57d94a81e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 3252.9940429297394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb0585c6ef188e80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:02.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0xd57c38363c33a64110614adf3833dfd6a0d61d2d6cb4f64f321e5f0cd857ec84:log:2', 'hash': '0xd57c38363c33a64110614adf3833dfd6a0d61d2d6cb4f64f321e5f0cd857ec84', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 92881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x13ab16cf335f10a40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0x02c0212c2474cd77799290aa3e45dc9d022c42d8717659c3018974e2a047374b:log:3', 'hash': '0x02c0212c2474cd77799290aa3e45dc9d022c42d8717659c3018974e2a047374b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 92307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x138bf8f58c8dbe6c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0x1faee8b55b8b27c660691f3ae7284153400d004d52681f6c144f05994685edba:log:5', 'hash': '0x1faee8b55b8b27c660691f3ae7284153400d004d52681f6c144f05994685edba', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 37315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07e6d9a6eca8252c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030a', 'uniqueId': '0x93db2eeaa34dc6ad6db614c6915843a1e8fb6f6a87b4ad7bed981f6c9664bdc0:log:7', 'hash': '0x93db2eeaa34dc6ad6db614c6915843a1e8fb6f6a87b4ad7bed981f6c9664bdc0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 11544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0271cd2eb54445600000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:08:24.000Z'}}, {'blockNum': '0x7f030c', 'uniqueId': '0x0a90497bf17c20e51bbe9f492fa93e1ccd4dbd7c5d20f063d2978ce01cd877cb:log:19', 'hash': '0x0a90497bf17c20e51bbe9f492fa93e1ccd4dbd7c5d20f063d2978ce01cd877cb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:00.000Z'}}, {'blockNum': '0x7f030c', 'uniqueId': '0xed53367a029ff635a0432b0376c3676af115e50075aa599361a6adeee5e28c23:log:20', 'hash': '0xed53367a029ff635a0432b0376c3676af115e50075aa599361a6adeee5e28c23', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 13413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d71ec492e15a740000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:00.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x969a43e44d2089f15eaade76daa08c82af32099951e687cfa4fa8d7567d0270c:log:80', 'hash': '0x969a43e44d2089f15eaade76daa08c82af32099951e687cfa4fa8d7567d0270c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20860.46511627907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x046ad91bc3c659a47711', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0x969a43e44d2089f15eaade76daa08c82af32099951e687cfa4fa8d7567d0270c:log:82', 'hash': '0x969a43e44d2089f15eaade76daa08c82af32099951e687cfa4fa8d7567d0270c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 20860.46511627907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x046ad91bc3c659a47711', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0xcb870a56c56f57e68eb0671929d747d4cf3b13a614b15b3573eb48fff83c5f61:log:136', 'hash': '0xcb870a56c56f57e68eb0671929d747d4cf3b13a614b15b3573eb48fff83c5f61', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2585.0563304121065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8c22dcfc4b5c6bc83c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0xcb870a56c56f57e68eb0671929d747d4cf3b13a614b15b3573eb48fff83c5f61:log:140', 'hash': '0xcb870a56c56f57e68eb0671929d747d4cf3b13a614b15b3573eb48fff83c5f61', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2585.0563304121065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8c22dcfc4b5c6bc83c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030d', 'uniqueId': '0xcb870a56c56f57e68eb0671929d747d4cf3b13a614b15b3573eb48fff83c5f61:log:141', 'hash': '0xcb870a56c56f57e68eb0671929d747d4cf3b13a614b15b3573eb48fff83c5f61', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2584.9827613571542, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8c21d79da0f18b6af0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:32.000Z'}}, {'blockNum': '0x7f030f', 'uniqueId': '0xad4bda9959522df2b8cd096cb9c0353e3d5df259185710caa5774b7fdefbabf5:log:28', 'hash': '0xad4bda9959522df2b8cd096cb9c0353e3d5df259185710caa5774b7fdefbabf5', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10341.192918521458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x023098e18968308647fd', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:48.000Z'}}, {'blockNum': '0x7f030f', 'uniqueId': '0xad4bda9959522df2b8cd096cb9c0353e3d5df259185710caa5774b7fdefbabf5:log:32', 'hash': '0xad4bda9959522df2b8cd096cb9c0353e3d5df259185710caa5774b7fdefbabf5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'value': 10341.192918521458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x023098e18968308647fd', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:48.000Z'}}, {'blockNum': '0x7f030f', 'uniqueId': '0x5b17fc050d1d1cc00042f485be2e020b17c17e0f7ebdae299bf05a66c136f18a:log:33', 'hash': '0x5b17fc050d1d1cc00042f485be2e020b17c17e0f7ebdae299bf05a66c136f18a', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8339.53488372093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01c4164ba7fea49b88ee', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:48.000Z'}}, {'blockNum': '0x7f030f', 'uniqueId': '0x5b17fc050d1d1cc00042f485be2e020b17c17e0f7ebdae299bf05a66c136f18a:log:35', 'hash': '0x5b17fc050d1d1cc00042f485be2e020b17c17e0f7ebdae299bf05a66c136f18a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 8339.53488372093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01c4164ba7fea49b88ee', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:09:48.000Z'}}, {'blockNum': '0x7f0312', 'uniqueId': '0xd147aa232b72660d787d0d53fc023fb03198249694902cb809366fd00a2f40cb:log:1', 'hash': '0xd147aa232b72660d787d0d53fc023fb03198249694902cb809366fd00a2f40cb', 'from': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'to': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'value': 10341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x023096342708aa740000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:05.000Z'}}, {'blockNum': '0x7f0314', 'uniqueId': '0x5661c9f637d3378e8564ecb873408e68017359b506d201f87df83693d395eec4:log:124', 'hash': '0x5661c9f637d3378e8564ecb873408e68017359b506d201f87df83693d395eec4', 'from': '0xf403f9dd65a7e96a38ed2003a002b97fada1d27a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 21356.65619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0485bf24946419800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:41.000Z'}}, {'blockNum': '0x7f0314', 'uniqueId': '0x5661c9f637d3378e8564ecb873408e68017359b506d201f87df83693d395eec4:log:126', 'hash': '0x5661c9f637d3378e8564ecb873408e68017359b506d201f87df83693d395eec4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 21356.65619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0485bf24946419800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:41.000Z'}}, {'blockNum': '0x7f0314', 'uniqueId': '0xf191288ca8edea1b34616491b6b0518c3094ba2733c2287f4aa44d4cae37d047:log:151', 'hash': '0xf191288ca8edea1b34616491b6b0518c3094ba2733c2287f4aa44d4cae37d047', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5304.803508070438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011f92effc89587cb251', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:41.000Z'}}, {'blockNum': '0x7f0314', 'uniqueId': '0xf191288ca8edea1b34616491b6b0518c3094ba2733c2287f4aa44d4cae37d047:log:155', 'hash': '0xf191288ca8edea1b34616491b6b0518c3094ba2733c2287f4aa44d4cae37d047', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 5304.803508070438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011f92effc89587cb251', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:41.000Z'}}, {'blockNum': '0x7f0314', 'uniqueId': '0xf191288ca8edea1b34616491b6b0518c3094ba2733c2287f4aa44d4cae37d047:log:157', 'hash': '0xf191288ca8edea1b34616491b6b0518c3094ba2733c2287f4aa44d4cae37d047', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 5304.803508070438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011f92effc89587cb251', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:41.000Z'}}, {'blockNum': '0x7f0316', 'uniqueId': '0xab27e1ab0d751cd6818bdd64a6d68bd3e6e601ee6f42faf5e2f5397680a1b836:log:4', 'hash': '0xab27e1ab0d751cd6818bdd64a6d68bd3e6e601ee6f42faf5e2f5397680a1b836', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4e4b798789223ac46c667cb83e9e8cb7f63ae7a4', 'value': 85994.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1235c75dd4decda80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:58.000Z'}}, {'blockNum': '0x7f0316', 'uniqueId': '0x3cea42f9ff9d8f4b45df44fe71d193151de9ce8d4d97c9b21c17c4505662f7c6:log:5', 'hash': '0x3cea42f9ff9d8f4b45df44fe71d193151de9ce8d4d97c9b21c17c4505662f7c6', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 44390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0966630033b345d80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:58.000Z'}}, {'blockNum': '0x7f0316', 'uniqueId': '0xafa08ba8b5f314f4bb41c46aeaff09480a4f777b701d9fb14d5e8d8005846da9:log:8', 'hash': '0xafa08ba8b5f314f4bb41c46aeaff09480a4f777b701d9fb14d5e8d8005846da9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 11824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0280faf689c35ac00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:58.000Z'}}, {'blockNum': '0x7f0316', 'uniqueId': '0x32101c36c532361dfdcab543727220e0425cbe22b510e01a23a4559761689475:log:9', 'hash': '0x32101c36c532361dfdcab543727220e0425cbe22b510e01a23a4559761689475', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 231213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x30f614f3d10628940000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:58.000Z'}}, {'blockNum': '0x7f0316', 'uniqueId': '0xd368a7e7acb0f7d7379a2477f0fdcdac3769affd65b22d3308b2c02166b1bbb8:log:118', 'hash': '0xd368a7e7acb0f7d7379a2477f0fdcdac3769affd65b22d3308b2c02166b1bbb8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3fd72f56a61081a1c94b771480019f6d65ebcd8c', 'value': 18779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03fa02fa2c98048c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:58.000Z'}}, {'blockNum': '0x7f0316', 'uniqueId': '0x76c0a56a3839432806f3fbeb02983e23934a1436a70d231949f489e149abe07b:log:175', 'hash': '0x76c0a56a3839432806f3fbeb02983e23934a1436a70d231949f489e149abe07b', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 200201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2a64eaff35a45a840000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:10:58.000Z'}}, {'blockNum': '0x7f031c', 'uniqueId': '0x2d9a3cd74bbab51538abef0ad5138bcdeaf1c014f2cbe4b7876f04762baba475:log:0', 'hash': '0x2d9a3cd74bbab51538abef0ad5138bcdeaf1c014f2cbe4b7876f04762baba475', 'from': '0x6485fc77be2186fc60feea38d0ef4331d8404b60', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 92610, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x139c65edcb30ddc80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:23.000Z'}}, {'blockNum': '0x7f031d', 'uniqueId': '0xd3612ffa050096c4790239a0afb7d1082341d35f2d989750ee664861d8ff1706:log:1', 'hash': '0xd3612ffa050096c4790239a0afb7d1082341d35f2d989750ee664861d8ff1706', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0bde6a4fc001d927891560cbadcdff0ffb0ff60c', 'value': 12468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02a3e44225b472500000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:12:38.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0x52174ad59b8891fa38a82f086e693b02b61ed5dd86b99b4cede49c2f39ab24d5:log:4', 'hash': '0x52174ad59b8891fa38a82f086e693b02b61ed5dd86b99b4cede49c2f39ab24d5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdeaf423f4216716e2f258e4c8662397668807a52', 'value': 34213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x073eb0c117c1d7740000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0xc8dde708b698d42af13bf994ad115a71cf33f72b40eaba6c2f46a7218c767ad9:log:9', 'hash': '0xc8dde708b698d42af13bf994ad115a71cf33f72b40eaba6c2f46a7218c767ad9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 8361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01c5402f118601040000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0x4deead138099ac5142700dfb95ab8202abc34bf4e8db6719340d8ad6ad3111c3:log:56', 'hash': '0x4deead138099ac5142700dfb95ab8202abc34bf4e8db6719340d8ad6ad3111c3', 'from': '0x4fd97620ce8347b2d547420ca7f70784e5599397', 'to': '0x5fddc778ce29a0d37d6bcfd5dc5bc91b8a7fab07', 'value': 90420.91025155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1325ba34b3452a4fac00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0x201f2cc72b5af7d44abeda2d56a129d5cc513c041fa50bd9c82ee686fc16d76a:log:58', 'hash': '0x201f2cc72b5af7d44abeda2d56a129d5cc513c041fa50bd9c82ee686fc16d76a', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 64514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0da94f9a462dbec80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0x7000086f36e0948805c2d886b83317333b3107c5648755beb69b3b9b6aaf7dc0:log:59', 'hash': '0x7000086f36e0948805c2d886b83317333b3107c5648755beb69b3b9b6aaf7dc0', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d71ec492e15a740000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0x56c416a61df6dd1c124726829d34489ce67c8c8ea50576246c328b79c395c36d:log:63', 'hash': '0x56c416a61df6dd1c124726829d34489ce67c8c8ea50576246c328b79c395c36d', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27462, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05d0b7cf0c1691580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0x9a79ef02402936f39b2c9f4dad817c0380c7eadc45bd82486e1859520bc122e0:log:64', 'hash': '0x9a79ef02402936f39b2c9f4dad817c0380c7eadc45bd82486e1859520bc122e0', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 60581, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0cd41a43601b13740000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0xae73762718da4f9aeb539065d5f0bd92561dc94821ee63564e3f2778ded3a8c8:log:65', 'hash': '0xae73762718da4f9aeb539065d5f0bd92561dc94821ee63564e3f2778ded3a8c8', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9798.24003134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x021329e5633401013800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0x75bd0254f3e4274f6ea823e0470dc691e93400ff6bcda7d44dc1bbbf56a16f2f:log:84', 'hash': '0x75bd0254f3e4274f6ea823e0470dc691e93400ff6bcda7d44dc1bbbf56a16f2f', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 19861.73697409852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0434b4f8a1f338286f8c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0321', 'uniqueId': '0x75bd0254f3e4274f6ea823e0470dc691e93400ff6bcda7d44dc1bbbf56a16f2f:log:88', 'hash': '0x75bd0254f3e4274f6ea823e0470dc691e93400ff6bcda7d44dc1bbbf56a16f2f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 19861.73697409852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0434b4f8a1f338286f8c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:36.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x67b59928a104cbb82d28bf2b0d02c1bd1aa6e89e2a7c8e09fee31ae51463bb06:log:98', 'hash': '0x67b59928a104cbb82d28bf2b0d02c1bd1aa6e89e2a7c8e09fee31ae51463bb06', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3366.0650680633958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb67989693a01c1f544', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x67b59928a104cbb82d28bf2b0d02c1bd1aa6e89e2a7c8e09fee31ae51463bb06:log:100', 'hash': '0x67b59928a104cbb82d28bf2b0d02c1bd1aa6e89e2a7c8e09fee31ae51463bb06', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3366.0617725117654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb6797db3f09981d153', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x67b59928a104cbb82d28bf2b0d02c1bd1aa6e89e2a7c8e09fee31ae51463bb06:log:102', 'hash': '0x67b59928a104cbb82d28bf2b0d02c1bd1aa6e89e2a7c8e09fee31ae51463bb06', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 3366.0617725117654, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb6797db3f09981d153', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0322', 'uniqueId': '0x6a9dc5608cec0b2e9c61295de1403cea8cffa26c6dedcbad810075b8e3778fb7:log:169', 'hash': '0x6a9dc5608cec0b2e9c61295de1403cea8cffa26c6dedcbad810075b8e3778fb7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 178133.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x25b8a713eaadae840000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:51.000Z'}}, {'blockNum': '0x7f0323', 'uniqueId': '0x1483b3fe43619663f44268ecdf6b0f3e14881f423e9606803ee7acc229869b13:log:34', 'hash': '0x1483b3fe43619663f44268ecdf6b0f3e14881f423e9606803ee7acc229869b13', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x3fd72f56a61081a1c94b771480019f6d65ebcd8c', 'value': 137026, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1d0431c08d2323c80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:13:56.000Z'}}, {'blockNum': '0x7f0325', 'uniqueId': '0xc1524275fbca5e5edaf9f5a5a673656c9ec409308d0b0cc37aabb11ab26c7936:log:0', 'hash': '0xc1524275fbca5e5edaf9f5a5a673656c9ec409308d0b0cc37aabb11ab26c7936', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xded508f385808aa160a7e734d04644578b4037d8', 'value': 29906.87542294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0655414567bf36f59800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:14:22.000Z'}}, {'blockNum': '0x7f0325', 'uniqueId': '0xe40b1dfb6af529a780dbcd3c84d7d667b2f156c62514aa5763d486a7e567bb4d:log:100', 'hash': '0xe40b1dfb6af529a780dbcd3c84d7d667b2f156c62514aa5763d486a7e567bb4d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 3293.27112477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb287515f7ae6fcd400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:14:22.000Z'}}, {'blockNum': '0x7f0325', 'uniqueId': '0xafbaa5456ea82452f446b0ef6b19fbdd4e04690ac039635900cc223c67cf6e76:log:101', 'hash': '0xafbaa5456ea82452f446b0ef6b19fbdd4e04690ac039635900cc223c67cf6e76', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 11241.22281643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0261634e10fdf6494c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:14:22.000Z'}}, {'blockNum': '0x7f0325', 'uniqueId': '0x2df29e85e2b95f674066cba9a5c25face8e14204320094965125a2db66540702:log:134', 'hash': '0x2df29e85e2b95f674066cba9a5c25face8e14204320094965125a2db66540702', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10310.020657325605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x022ee8476b01d005eb15', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:14:22.000Z'}}, {'blockNum': '0x7f0325', 'uniqueId': '0x2df29e85e2b95f674066cba9a5c25face8e14204320094965125a2db66540702:log:138', 'hash': '0x2df29e85e2b95f674066cba9a5c25face8e14204320094965125a2db66540702', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'value': 10310.020657325605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x022ee8476b01d005eb15', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:14:22.000Z'}}, {'blockNum': '0x7f0326', 'uniqueId': '0xe765e7566ff1f7a484635c7f02d83a29d6632060508689f60d74736a90e60253:log:47', 'hash': '0xe765e7566ff1f7a484635c7f02d83a29d6632060508689f60d74736a90e60253', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12207.365166227706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0295c339354a9fb82980', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:17.000Z'}}, {'blockNum': '0x7f0326', 'uniqueId': '0xe765e7566ff1f7a484635c7f02d83a29d6632060508689f60d74736a90e60253:log:51', 'hash': '0xe765e7566ff1f7a484635c7f02d83a29d6632060508689f60d74736a90e60253', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 12207.365166227706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0295c339354a9fb82980', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:17.000Z'}}, {'blockNum': '0x7f0326', 'uniqueId': '0x582753214862e90d6e813f44cf0d9fe3e7f7647e1d540d69e654a06c3a2543f9:log:127', 'hash': '0x582753214862e90d6e813f44cf0d9fe3e7f7647e1d540d69e654a06c3a2543f9', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 5152.386977927058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01174fbbb1e892b6315b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:17.000Z'}}, {'blockNum': '0x7f0326', 'uniqueId': '0x582753214862e90d6e813f44cf0d9fe3e7f7647e1d540d69e654a06c3a2543f9:log:129', 'hash': '0x582753214862e90d6e813f44cf0d9fe3e7f7647e1d540d69e654a06c3a2543f9', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5152.386977927058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01174fbbb1e892b6315b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:17.000Z'}}, {'blockNum': '0x7f0326', 'uniqueId': '0x582753214862e90d6e813f44cf0d9fe3e7f7647e1d540d69e654a06c3a2543f9:log:131', 'hash': '0x582753214862e90d6e813f44cf0d9fe3e7f7647e1d540d69e654a06c3a2543f9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5152.386977927058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01174fbbb1e892b6315b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:17.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0x034b64361c32d61421c5fd8ce20d88b8d55039463f4b419cdcba280e84e479a5:log:7', 'hash': '0x034b64361c32d61421c5fd8ce20d88b8d55039463f4b419cdcba280e84e479a5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 12766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02b40bd6d2d54cb80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f0328', 'uniqueId': '0xbb866a1df29828a215bdd59990e28153caf4bf6441ce30b4b091785b7195ee75:log:8', 'hash': '0xbb866a1df29828a215bdd59990e28153caf4bf6441ce30b4b091785b7195ee75', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 36196.991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07aa3e290e9f53798000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:26.000Z'}}, {'blockNum': '0x7f0329', 'uniqueId': '0x3a26574b183961ba913b41c2cc09870dda437690a2a9223bc50802f3ee8278b7:log:0', 'hash': '0x3a26574b183961ba913b41c2cc09870dda437690a2a9223bc50802f3ee8278b7', 'from': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'to': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'value': 10310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x022ee7fe074765580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:29.000Z'}}, {'blockNum': '0x7f0329', 'uniqueId': '0x2123a8480d2ec4cfde11a74b38ef361fac57e0bcf99faa279ba8a3639625dcdd:log:27', 'hash': '0x2123a8480d2ec4cfde11a74b38ef361fac57e0bcf99faa279ba8a3639625dcdd', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 12208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0295cc08973e70c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:29.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x0b0d923761484f7d6bbbaa60256bee9e2292a3b5f5c0a361c95ffe3c1ddf5146:log:45', 'hash': '0x0b0d923761484f7d6bbbaa60256bee9e2292a3b5f5c0a361c95ffe3c1ddf5146', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20078.775417807698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x044078fc1495a9528e71', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x0b0d923761484f7d6bbbaa60256bee9e2292a3b5f5c0a361c95ffe3c1ddf5146:log:49', 'hash': '0x0b0d923761484f7d6bbbaa60256bee9e2292a3b5f5c0a361c95ffe3c1ddf5146', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 20078.775417807698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x044078fc1495a9528e71', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x13db745ae81261bb70dda7584d4715348cc1ea33b841b01a2f57c69aabbf58c8:log:73', 'hash': '0x13db745ae81261bb70dda7584d4715348cc1ea33b841b01a2f57c69aabbf58c8', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 5046.266219545613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01118f030669959edc5b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x13db745ae81261bb70dda7584d4715348cc1ea33b841b01a2f57c69aabbf58c8:log:76', 'hash': '0x13db745ae81261bb70dda7584d4715348cc1ea33b841b01a2f57c69aabbf58c8', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5046.266219545613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01118f030669959edc5b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032a', 'uniqueId': '0x13db745ae81261bb70dda7584d4715348cc1ea33b841b01a2f57c69aabbf58c8:log:78', 'hash': '0x13db745ae81261bb70dda7584d4715348cc1ea33b841b01a2f57c69aabbf58c8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5046.266219545613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01118f030669959edc5b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:15:45.000Z'}}, {'blockNum': '0x7f032f', 'uniqueId': '0xb420fd80f7f3e54e5064fa3681cb0bd6e23047b2c643c56b8a80a1ca6ed434f1:log:9', 'hash': '0xb420fd80f7f3e54e5064fa3681cb0bd6e23047b2c643c56b8a80a1ca6ed434f1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 12374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x029ecbbf0fbcfb980000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:53.000Z'}}, {'blockNum': '0x7f032f', 'uniqueId': '0x2b6f0f3a2188e3fc045721a2e73ea6ff808d5d335095e749f1e1f20cc6e3f9a0:log:10', 'hash': '0x2b6f0f3a2188e3fc045721a2e73ea6ff808d5d335095e749f1e1f20cc6e3f9a0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4afd5c242e2b32233040b2615b8fc4ed377da78d', 'value': 64619.952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0daf0dfb64d228f80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:53.000Z'}}, {'blockNum': '0x7f032f', 'uniqueId': '0x093135d3e673b46e4ed6c84ca21de4eb56696a77d4f91d478dd8e3bd67098469:log:69', 'hash': '0x093135d3e673b46e4ed6c84ca21de4eb56696a77d4f91d478dd8e3bd67098469', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 6236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01520de2804187f00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:53.000Z'}}, {'blockNum': '0x7f032f', 'uniqueId': '0x076094ee704f5466a783b80f16fc4ad93ac93ad70ff763572126a12347c76b60:log:134', 'hash': '0x076094ee704f5466a783b80f16fc4ad93ac93ad70ff763572126a12347c76b60', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 20078.775417807698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x044078fc1495a9528e71', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:16:53.000Z'}}, {'blockNum': '0x7f0337', 'uniqueId': '0x0e4ec88a6ebb1cebb01d85cc653e05ae98e97ce958e25f778decaf2b6d025a5a:log:9', 'hash': '0x0e4ec88a6ebb1cebb01d85cc653e05ae98e97ce958e25f778decaf2b6d025a5a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 204422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2b49bd23a5d356580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:55.000Z'}}, {'blockNum': '0x7f0337', 'uniqueId': '0xd1a1ca5f26c8b4f67d4b46f29402f7c4426a6f91379a61c755a211791218eddc:log:17', 'hash': '0xd1a1ca5f26c8b4f67d4b46f29402f7c4426a6f91379a61c755a211791218eddc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1bc36cc18327c816831d11c55247ca299fe40fdf', 'value': 119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x067374ed82cf7c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:18:55.000Z'}}, {'blockNum': '0x7f033b', 'uniqueId': '0x911b7b58cd4edcf50e76aaf2cc5ee1a76a1ce623233991bc1949c47ae854d472:log:27', 'hash': '0x911b7b58cd4edcf50e76aaf2cc5ee1a76a1ce623233991bc1949c47ae854d472', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 9872.22099447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02172c969133b1ecfc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:22.000Z'}}, {'blockNum': '0x7f033b', 'uniqueId': '0xc41e6cbd1bda9b157bfd12884b3c7925eceaee2483769d24d34de1bab57cf39c:log:28', 'hash': '0xc41e6cbd1bda9b157bfd12884b3c7925eceaee2483769d24d34de1bab57cf39c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 11795.70340681, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027f7244d82db7100400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:22.000Z'}}, {'blockNum': '0x7f033c', 'uniqueId': '0x45f242b413e68e8b25d557778eccf06b5d4585f86de3551d7e39089b75b0a03c:log:16', 'hash': '0x45f242b413e68e8b25d557778eccf06b5d4585f86de3551d7e39089b75b0a03c', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9921.084458394149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0219d2b476c04ffce2fc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:41.000Z'}}, {'blockNum': '0x7f033c', 'uniqueId': '0x45f242b413e68e8b25d557778eccf06b5d4585f86de3551d7e39089b75b0a03c:log:20', 'hash': '0x45f242b413e68e8b25d557778eccf06b5d4585f86de3551d7e39089b75b0a03c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'value': 9921.084458394149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0219d2b476c04ffce2fc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:41.000Z'}}, {'blockNum': '0x7f033c', 'uniqueId': '0xc386a1d2250a86e640d6f26707be87d7a195037f90f7f79c193080935f47b355:log:71', 'hash': '0xc386a1d2250a86e640d6f26707be87d7a195037f90f7f79c193080935f47b355', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 231213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x30f614f3d10628940000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:41.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x59648916475ee4f93ff3c8e9c426eca323671d70fe57d563884d804aa4713c14:log:5', 'hash': '0x59648916475ee4f93ff3c8e9c426eca323671d70fe57d563884d804aa4713c14', 'from': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'to': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'value': 9921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0219d188684a0a640000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x64f97f788ab3f1a2d7d3a3122ba80d9e1b444563a4f69ed690433165c26586ea:log:9', 'hash': '0x64f97f788ab3f1a2d7d3a3122ba80d9e1b444563a4f69ed690433165c26586ea', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 165665, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2314b7b799364fe40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x08ffe01272f6d1ca2c49bb01271b921d68b5d00c028217aa85c69c1d5a74f898:log:120', 'hash': '0x08ffe01272f6d1ca2c49bb01271b921d68b5d00c028217aa85c69c1d5a74f898', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11174.011299435027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025dbe8eca6311dd780b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033d', 'uniqueId': '0x08ffe01272f6d1ca2c49bb01271b921d68b5d00c028217aa85c69c1d5a74f898:log:122', 'hash': '0x08ffe01272f6d1ca2c49bb01271b921d68b5d00c028217aa85c69c1d5a74f898', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11174.011299435027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025dbe8eca6311dd780b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:21:54.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x7c4bd434fc6a28a885ae3facde10ce7c8549d1d98f6b51cbbbbe19fc81743790:log:12', 'hash': '0x7c4bd434fc6a28a885ae3facde10ce7c8549d1d98f6b51cbbbbe19fc81743790', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14302.272727272728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x030753e7f4c418305d17', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033e', 'uniqueId': '0x7c4bd434fc6a28a885ae3facde10ce7c8549d1d98f6b51cbbbbe19fc81743790:log:14', 'hash': '0x7c4bd434fc6a28a885ae3facde10ce7c8549d1d98f6b51cbbbbe19fc81743790', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 14302.272727272728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x030753e7f4c418305d17', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:17.000Z'}}, {'blockNum': '0x7f033f', 'uniqueId': '0x7f69cee7e41e11f77d64f9037536ae10dfe8905faea790b5c2b10ca9b20d4d87:log:52', 'hash': '0x7f69cee7e41e11f77d64f9037536ae10dfe8905faea790b5c2b10ca9b20d4d87', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2017.1080733167164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6d58ff7195bf785278', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:26.000Z'}}, {'blockNum': '0x7f033f', 'uniqueId': '0x7f69cee7e41e11f77d64f9037536ae10dfe8905faea790b5c2b10ca9b20d4d87:log:56', 'hash': '0x7f69cee7e41e11f77d64f9037536ae10dfe8905faea790b5c2b10ca9b20d4d87', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2017.1080733167164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6d58ff7195bf785278', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:26.000Z'}}, {'blockNum': '0x7f033f', 'uniqueId': '0x7f69cee7e41e11f77d64f9037536ae10dfe8905faea790b5c2b10ca9b20d4d87:log:57', 'hash': '0x7f69cee7e41e11f77d64f9037536ae10dfe8905faea790b5c2b10ca9b20d4d87', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2016.908176832158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6d563944ca958322db', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:26.000Z'}}, {'blockNum': '0x7f0341', 'uniqueId': '0x2a5c435b201d0473257292eef5731369da5907e86cf4740bc29222e1a7a5cb1c:log:2', 'hash': '0x2a5c435b201d0473257292eef5731369da5907e86cf4740bc29222e1a7a5cb1c', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0xded508f385808aa160a7e734d04644578b4037d8', 'value': 83565.4538935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x11b217a31f635eefd800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:56.000Z'}}, {'blockNum': '0x7f0341', 'uniqueId': '0xbc78d55cc8878d07d9d743d800c064ba0c00feca2c685f23fc178c5a675b8b27:log:73', 'hash': '0xbc78d55cc8878d07d9d743d800c064ba0c00feca2c685f23fc178c5a675b8b27', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0295cc08973e70c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:22:56.000Z'}}, {'blockNum': '0x7f0343', 'uniqueId': '0x35f76ab934d6bece85b24fb5ba160f80b28dbcfcad41288082c5be59d35262a4:log:4', 'hash': '0x35f76ab934d6bece85b24fb5ba160f80b28dbcfcad41288082c5be59d35262a4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3fd72f56a61081a1c94b771480019f6d65ebcd8c', 'value': 59010.50038704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0c7ef733eafb7230c000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:13.000Z'}}, {'blockNum': '0x7f0343', 'uniqueId': '0x0ceaf16201ee6ba9c3db56202a9bc2156d29bacae19e33d3fcb47f9ff4c9c494:log:5', 'hash': '0x0ceaf16201ee6ba9c3db56202a9bc2156d29bacae19e33d3fcb47f9ff4c9c494', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x388118e4769b2f946e763ea5bdd1825c720f428b', 'value': 244875.6562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x33dabc656311b0e88000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:13.000Z'}}, {'blockNum': '0x7f0343', 'uniqueId': '0x02e1fe8b0d0fdfc1604ed8dc3097c178c0a60d11618b0fb922df57bb2b836edb:log:6', 'hash': '0x02e1fe8b0d0fdfc1604ed8dc3097c178c0a60d11618b0fb922df57bb2b836edb', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84eed0917ba24ed03a34a344122d539aa3bb8dee', 'value': 130000.36735165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b87558356dc2b275400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:13.000Z'}}, {'blockNum': '0x7f0343', 'uniqueId': '0x7770caf9c8289012fcb6402f0bb0483733d309a61c53ad05635f7cd1e6e103cf:log:7', 'hash': '0x7770caf9c8289012fcb6402f0bb0483733d309a61c53ad05635f7cd1e6e103cf', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3fd72f56a61081a1c94b771480019f6d65ebcd8c', 'value': 47017.16620858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09f4ce418714a689a800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:13.000Z'}}, {'blockNum': '0x7f0345', 'uniqueId': '0xa62314e97a7affbb649f2aa8feec4289a08379aaa89a2818d24ae5ce838fa2cb:log:17', 'hash': '0xa62314e97a7affbb649f2aa8feec4289a08379aaa89a2818d24ae5ce838fa2cb', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20045.54477450017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x043eabd11e8f5657165f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:26.000Z'}}, {'blockNum': '0x7f0345', 'uniqueId': '0xa62314e97a7affbb649f2aa8feec4289a08379aaa89a2818d24ae5ce838fa2cb:log:21', 'hash': '0xa62314e97a7affbb649f2aa8feec4289a08379aaa89a2818d24ae5ce838fa2cb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 20045.54477450017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x043eabd11e8f5657165f', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:26.000Z'}}, {'blockNum': '0x7f0345', 'uniqueId': '0x16e43acf4dcffdf8d0ff5fd22e35d31ebf681054d81686b362597020c95a60ea:log:22', 'hash': '0x16e43acf4dcffdf8d0ff5fd22e35d31ebf681054d81686b362597020c95a60ea', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 175080.283633957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x25131f068dfc43d93200', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:26.000Z'}}, {'blockNum': '0x7f0346', 'uniqueId': '0x059f461182b9872c43cc7e7ceb06192fdcac5c47cdc762679814217137ea1e1a:log:6', 'hash': '0x059f461182b9872c43cc7e7ceb06192fdcac5c47cdc762679814217137ea1e1a', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 17259.322033898305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a7a1357a05f4e7dd49', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:29.000Z'}}, {'blockNum': '0x7f0346', 'uniqueId': '0x059f461182b9872c43cc7e7ceb06192fdcac5c47cdc762679814217137ea1e1a:log:8', 'hash': '0x059f461182b9872c43cc7e7ceb06192fdcac5c47cdc762679814217137ea1e1a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 17259.322033898305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03a7a1357a05f4e7dd49', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:29.000Z'}}, {'blockNum': '0x7f0347', 'uniqueId': '0xae8ac560e740e519781fcf566a09d6a6ae6f21c1be453b766c35494eea9f3b6d:log:33', 'hash': '0xae8ac560e740e519781fcf566a09d6a6ae6f21c1be453b766c35494eea9f3b6d', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15028.789568405979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x032eb65a4686868fb40d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:38.000Z'}}, {'blockNum': '0x7f0347', 'uniqueId': '0xae8ac560e740e519781fcf566a09d6a6ae6f21c1be453b766c35494eea9f3b6d:log:37', 'hash': '0xae8ac560e740e519781fcf566a09d6a6ae6f21c1be453b766c35494eea9f3b6d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 15028.789568405979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x032eb65a4686868fb40d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:38.000Z'}}, {'blockNum': '0x7f0349', 'uniqueId': '0x6e0b84c3835b4f00056c5535eba54237df5acc9517fca24cd93941aa51dd9213:log:10', 'hash': '0x6e0b84c3835b4f00056c5535eba54237df5acc9517fca24cd93941aa51dd9213', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 35074.33434290615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x076d622b6515dce6ca6c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:54.000Z'}}, {'blockNum': '0x7f0349', 'uniqueId': '0x34fb0201579023860e990eeb4c993d2d4aa231293d5a4f52e6f96dbdb6747659:log:40', 'hash': '0x34fb0201579023860e990eeb4c993d2d4aa231293d5a4f52e6f96dbdb6747659', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 21217.689217733907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x047e3696b764c1574422', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:54.000Z'}}, {'blockNum': '0x7f0349', 'uniqueId': '0x34fb0201579023860e990eeb4c993d2d4aa231293d5a4f52e6f96dbdb6747659:log:42', 'hash': '0x34fb0201579023860e990eeb4c993d2d4aa231293d5a4f52e6f96dbdb6747659', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 21217.689217733907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x047e3696b764c1574422', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:23:54.000Z'}}, {'blockNum': '0x7f034a', 'uniqueId': '0xb5f4e7c762916b59b137e08e28e1444ae76b92a86c5068071ce1d4b00bf0d645:log:1', 'hash': '0xb5f4e7c762916b59b137e08e28e1444ae76b92a86c5068071ce1d4b00bf0d645', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 115738, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x18822b67c1cb90280000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:24:10.000Z'}}, {'blockNum': '0x7f0350', 'uniqueId': '0x8bdc83d7c5dcc129d9af866b3eee66a2c47b67e85d8c6b66ed6e5d8f8e4da9b3:log:56', 'hash': '0x8bdc83d7c5dcc129d9af866b3eee66a2c47b67e85d8c6b66ed6e5d8f8e4da9b3', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8108.935733647872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01b79616e6c518ffc35c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:24:51.000Z'}}, {'blockNum': '0x7f0350', 'uniqueId': '0x8bdc83d7c5dcc129d9af866b3eee66a2c47b67e85d8c6b66ed6e5d8f8e4da9b3:log:60', 'hash': '0x8bdc83d7c5dcc129d9af866b3eee66a2c47b67e85d8c6b66ed6e5d8f8e4da9b3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 8108.935733647872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01b79616e6c518ffc35c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:24:51.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0xbb402145d6514a1ce13ba81702b8352493ba8040fe700f680b8c8bdff852a3f0:log:0', 'hash': '0xbb402145d6514a1ce13ba81702b8352493ba8040fe700f680b8c8bdff852a3f0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 21282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0481b3148321a7480000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0xbc36ac0cb9a63c773b692f48a55fbd71255c4cf19c1b95c0bb810c68a40284e0:log:1', 'hash': '0xbc36ac0cb9a63c773b692f48a55fbd71255c4cf19c1b95c0bb810c68a40284e0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 46987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x09f32b9da0345f4c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0x15bb8fa90067d4b8b8d5b1a24f1cad1f38786f099dde16527c4a67862c03c37c:log:3', 'hash': '0x15bb8fa90067d4b8b8d5b1a24f1cad1f38786f099dde16527c4a67862c03c37c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 38513.939, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0827d845e8e7df3b8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0x1af9198397a3a4b9a596fc3b83148859608ece139c326555283b6b53b5a734c5:log:4', 'hash': '0x1af9198397a3a4b9a596fc3b83148859608ece139c326555283b6b53b5a734c5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x060e11201967bf009810e23659c580a825a92628', 'value': 19919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0437cfa7c49d6ddc0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0xb4f70972e286c688c3b05a4e3d2dcc3cb8a754f0266a88e2f37c61ffdfdbe531:log:5', 'hash': '0xb4f70972e286c688c3b05a4e3d2dcc3cb8a754f0266a88e2f37c61ffdfdbe531', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 62844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0d4ec7b26e37c8700000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0x08b4c01035918465886677951a8a1f9e3433fe0b57e8dc136a2f933187d6ce50:log:7', 'hash': '0x08b4c01035918465886677951a8a1f9e3433fe0b57e8dc136a2f933187d6ce50', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xacf3ce6bfa7dc636fc15dd2ccdf352e0a6e89d61', 'value': 37628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07f7d1664e4fce700000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0x3bf743617abdb264aea5f78ad0553bfeb11e18ec4a86ba2a5f2ecc1e89530134:log:8', 'hash': '0x3bf743617abdb264aea5f78ad0553bfeb11e18ec4a86ba2a5f2ecc1e89530134', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'value': 13023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02c1fa6e3d30581c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0x4232768384cc292fdbd51aef11d43b7fb98ac4d26489822780ca90375bbfc822:log:9', 'hash': '0x4232768384cc292fdbd51aef11d43b7fb98ac4d26489822780ca90375bbfc822', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc86d9b6148561e33fdd392820d00dd6106f15b10', 'value': 144428.147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1e95772d7361b32b8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0xd6f13743de89408a0e834462163c62456bc97628f3605363f325589023862c51:log:19', 'hash': '0xd6f13743de89408a0e834462163c62456bc97628f3605363f325589023862c51', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3fd72f56a61081a1c94b771480019f6d65ebcd8c', 'value': 7239.04196236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01886de366ada678b000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0x3f6be8eebdd7395f220398b2cf79783c3f3eb121c9b202296c1fbe2ecd8a7600:log:65', 'hash': '0x3f6be8eebdd7395f220398b2cf79783c3f3eb121c9b202296c1fbe2ecd8a7600', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14994.675555127353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x032cdcecf4313f1cf0f6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0352', 'uniqueId': '0x3f6be8eebdd7395f220398b2cf79783c3f3eb121c9b202296c1fbe2ecd8a7600:log:69', 'hash': '0x3f6be8eebdd7395f220398b2cf79783c3f3eb121c9b202296c1fbe2ecd8a7600', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 14994.675555127353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x032cdcecf4313f1cf0f6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:25:18.000Z'}}, {'blockNum': '0x7f0354', 'uniqueId': '0xaf7d0bcdad8f8a3699b60593de7273ad5ef684835b053f8c63c92972853fb530:log:55', 'hash': '0xaf7d0bcdad8f8a3699b60593de7273ad5ef684835b053f8c63c92972853fb530', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8108.935733647872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01b79616e6c518ffc35c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:05.000Z'}}, {'blockNum': '0x7f0354', 'uniqueId': '0xaf7d0bcdad8f8a3699b60593de7273ad5ef684835b053f8c63c92972853fb530:log:57', 'hash': '0xaf7d0bcdad8f8a3699b60593de7273ad5ef684835b053f8c63c92972853fb530', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 8108.935733647872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01b79616e6c518ffc35c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:26:05.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0xbaa55fc086f20da92f7092caee46fd5306987f332daebdd223cb36abe30e9772:log:5', 'hash': '0xbaa55fc086f20da92f7092caee46fd5306987f332daebdd223cb36abe30e9772', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa38cde626af6d97c39a44ba2bebc589cdafb6ac8', 'value': 366393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x4d96344eeab041440000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0x348aa52ba90535fd7ef5941862fd2c314fa07bdabf546a793ffca6262d704aeb:log:7', 'hash': '0x348aa52ba90535fd7ef5941862fd2c314fa07bdabf546a793ffca6262d704aeb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'value': 202691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2aebe6b0450e7d2c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0xb513228b904e6f0c0fe59c18bfce2bb76380cfcc0dbe927b862314b6f2c8f793:log:8', 'hash': '0xb513228b904e6f0c0fe59c18bfce2bb76380cfcc0dbe927b862314b6f2c8f793', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 123455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1a24824b3760799c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0x4725a116161a5a14147c3566a4e10fcd3a037ee5d6164f2148ac481d4b4f12dc:log:9', 'hash': '0x4725a116161a5a14147c3566a4e10fcd3a037ee5d6164f2148ac481d4b4f12dc', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdeaf423f4216716e2f258e4c8662397668807a52', 'value': 36421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07b662e8e54595f40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0x0b9b6469cec97b9e07144484fe793c917fb88f896dedf9b270b23fc6820f6fa5:log:12', 'hash': '0x0b9b6469cec97b9e07144484fe793c917fb88f896dedf9b270b23fc6820f6fa5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 17967.469, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03ce04b8e3c4f3048000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0xd78d24d490f7823aec092ec4fc84e43adb620a7339bd5abd17eb68baf0daf8ee:log:87', 'hash': '0xd78d24d490f7823aec092ec4fc84e43adb620a7339bd5abd17eb68baf0daf8ee', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 204422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2b49bd23a5d356580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f035d', 'uniqueId': '0xc0dee1d960fdf912794ebed457850b7b90f437d3e1644fb1957a0af1e0cff053:log:96', 'hash': '0xc0dee1d960fdf912794ebed457850b7b90f437d3e1644fb1957a0af1e0cff053', 'from': '0x3fd72f56a61081a1c94b771480019f6d65ebcd8c', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 155805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x20fe34bab9bb28540000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:27:11.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0x19ee259c817f9e48528be05f01ad9443561f04892dd560d0d1e990a0e0432629:log:9', 'hash': '0x19ee259c817f9e48528be05f01ad9443561f04892dd560d0d1e990a0e0432629', 'from': '0xacf3ce6bfa7dc636fc15dd2ccdf352e0a6e89d61', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 37628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07f7d1664e4fce700000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0x5ca90b3907dfca42abbbec52859db8f14042e0c3b8fb131cbbdee69ec2b13bf2:log:11', 'hash': '0x5ca90b3907dfca42abbbec52859db8f14042e0c3b8fb131cbbdee69ec2b13bf2', 'from': '0xfa2eb971f7eeb0addf86dd77f32c224c243a5cc5', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 13023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02c1fa6e3d30581c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0x240bf7a1dc6c187d34a63a49876b537d02b6fe0fdd552e606ac27f4901d3417c:log:41', 'hash': '0x240bf7a1dc6c187d34a63a49876b537d02b6fe0fdd552e606ac27f4901d3417c', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14994.675555127353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x032cdcecf4313f1cf0f6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0362', 'uniqueId': '0x240bf7a1dc6c187d34a63a49876b537d02b6fe0fdd552e606ac27f4901d3417c:log:43', 'hash': '0x240bf7a1dc6c187d34a63a49876b537d02b6fe0fdd552e606ac27f4901d3417c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 14994.675555127353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x032cdcecf4313f1cf0f6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:29:17.000Z'}}, {'blockNum': '0x7f0366', 'uniqueId': '0x8640465ebd72712d68980e5d169f82b96630cdec8ef07421ae7f1760c10f214f:log:84', 'hash': '0x8640465ebd72712d68980e5d169f82b96630cdec8ef07421ae7f1760c10f214f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xfe225a977007b2edcb4eea853e43d5e7a396ed53', 'value': 3246.66539189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xb000888c5a7dd83400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:30:38.000Z'}}, {'blockNum': '0x7f0367', 'uniqueId': '0x688851c82e22a3ff5d37334adee9bd94b63e79b7eff24742bc5d9d785feb5bbe:log:24', 'hash': '0x688851c82e22a3ff5d37334adee9bd94b63e79b7eff24742bc5d9d785feb5bbe', 'from': '0x388118e4769b2f946e763ea5bdd1825c720f428b', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 244875.6562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x33dabc656311b0e88000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:12.000Z'}}, {'blockNum': '0x7f0369', 'uniqueId': '0x98e188104b3b80daa06a787e435ea127c27b57933402eba1c1f002a564cdffd3:log:46', 'hash': '0x98e188104b3b80daa06a787e435ea127c27b57933402eba1c1f002a564cdffd3', 'from': '0x5f0cc257cac8892405267bab6504b170245be3c6', 'to': '0x95ed37249b766e2d46c92fcd852a43751be7efd9', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:31:40.000Z'}}, {'blockNum': '0x7f036c', 'uniqueId': '0xba9098a7c7dd6141f43169f74a2e529d84ae8eb4e413e51a4ecca225e0112084:log:1', 'hash': '0xba9098a7c7dd6141f43169f74a2e529d84ae8eb4e413e51a4ecca225e0112084', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3b01c70c892bf095e43a71d3767a8dd2c0648708', 'value': 157572.02299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x215dff19822205599c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:00.000Z'}}, {'blockNum': '0x7f036f', 'uniqueId': '0x0fe1dd476f7e8b4a1b5e8c0499d3058162528a3bfa2d959d05dd9af43c00a4a9:log:88', 'hash': '0x0fe1dd476f7e8b4a1b5e8c0499d3058162528a3bfa2d959d05dd9af43c00a4a9', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 208348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2c1e91558cfc6df00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:32:55.000Z'}}, {'blockNum': '0x7f0374', 'uniqueId': '0xae63ecfa4bbe697d948518154f8a2b255057fc695f0f9c5b62780f5638bad34f:log:19', 'hash': '0xae63ecfa4bbe697d948518154f8a2b255057fc695f0f9c5b62780f5638bad34f', 'from': '0xc13f1a61f74c72e6063aee1942e635792bef9236', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 202691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2aebe6b0450e7d2c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:33:30.000Z'}}, {'blockNum': '0x7f0375', 'uniqueId': '0x20caecc68e030ab700caf4de6996e99906488ee89335f0c556f74c4e2c4e75e4:log:64', 'hash': '0x20caecc68e030ab700caf4de6996e99906488ee89335f0c556f74c4e2c4e75e4', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 257972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x36a0b0ad25c40e500000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:10.000Z'}}, {'blockNum': '0x7f0376', 'uniqueId': '0xde23dad592a5db1c2cfdb6725eadfbd49bcf2aa1a226cf944020e402b1924072:log:53', 'hash': '0xde23dad592a5db1c2cfdb6725eadfbd49bcf2aa1a226cf944020e402b1924072', 'from': '0xc86d9b6148561e33fdd392820d00dd6106f15b10', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 144428.147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1e95772d7361b32b8000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:34:39.000Z'}}, {'blockNum': '0x7f037b', 'uniqueId': '0xa86ba92777af5125d992dc59ff24e7f7c7a2f847bb669dd30544d4a685d94089:log:4', 'hash': '0xa86ba92777af5125d992dc59ff24e7f7c7a2f847bb669dd30544d4a685d94089', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 8590.13944742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01d1ac21eaeb4b69d800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:17.000Z'}}, {'blockNum': '0x7f037b', 'uniqueId': '0x7ca1744a7eb30d4c737635d31345ba6147b63a94e53973e729471dc8085fe76b:log:36', 'hash': '0x7ca1744a7eb30d4c737635d31345ba6147b63a94e53973e729471dc8085fe76b', 'from': '0x84eed0917ba24ed03a34a344122d539aa3bb8dee', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 130000.36735165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b87558356dc2b275400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:17.000Z'}}, {'blockNum': '0x7f037d', 'uniqueId': '0xe44ea1e541b050d12056c1d38265135a07e903c83556f932c38f6b0b65280ee5:log:52', 'hash': '0xe44ea1e541b050d12056c1d38265135a07e903c83556f932c38f6b0b65280ee5', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8590.13944742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01d1ac21eaeb4b69d800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:39.000Z'}}, {'blockNum': '0x7f037d', 'uniqueId': '0xe44ea1e541b050d12056c1d38265135a07e903c83556f932c38f6b0b65280ee5:log:54', 'hash': '0xe44ea1e541b050d12056c1d38265135a07e903c83556f932c38f6b0b65280ee5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 8590.13944742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01d1ac21eaeb4b69d800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:39.000Z'}}, {'blockNum': '0x7f037d', 'uniqueId': '0x9595871a48edc9c936a58aebcfb6d24bf8b185609913ce42ffd259e3fcf3d65d:log:107', 'hash': '0x9595871a48edc9c936a58aebcfb6d24bf8b185609913ce42ffd259e3fcf3d65d', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3058.3680383353044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xa5cb61f6f00815522c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:39.000Z'}}, {'blockNum': '0x7f037d', 'uniqueId': '0x9595871a48edc9c936a58aebcfb6d24bf8b185609913ce42ffd259e3fcf3d65d:log:111', 'hash': '0x9595871a48edc9c936a58aebcfb6d24bf8b185609913ce42ffd259e3fcf3d65d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 3058.3680383353044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xa5cb61f6f00815522c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:39.000Z'}}, {'blockNum': '0x7f037d', 'uniqueId': '0x9595871a48edc9c936a58aebcfb6d24bf8b185609913ce42ffd259e3fcf3d65d:log:112', 'hash': '0x9595871a48edc9c936a58aebcfb6d24bf8b185609913ce42ffd259e3fcf3d65d', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 3058.0663484050574, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xa5c732258b63671da2', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:39.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xcd61b6b8ab00907948bfbde7986a4449e3e8b48a89028b6d35072d881e9f21ae:log:6', 'hash': '0xcd61b6b8ab00907948bfbde7986a4449e3e8b48a89028b6d35072d881e9f21ae', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 126634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1ad0d7c8005020680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x4e3b892647339beb11621f598e2f3589f02cbeaea0449f22f2dc8c35e2c032c8:log:7', 'hash': '0x4e3b892647339beb11621f598e2f3589f02cbeaea0449f22f2dc8c35e2c032c8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 37826.26, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x080290cf51e29f620000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0x2cd447be22c820a4ebb90f86a9a8141e0f17d5494c2eda124bddb21d0d7c86e1:log:8', 'hash': '0x2cd447be22c820a4ebb90f86a9a8141e0f17d5494c2eda124bddb21d0d7c86e1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f037e', 'uniqueId': '0xeb2577bc208c114d24bc66e896b6b6181946716acef287c81be0248d8431a182:log:12', 'hash': '0xeb2577bc208c114d24bc66e896b6b6181946716acef287c81be0248d8431a182', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'value': 10490.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0238b34acf0c572b0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:35:52.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x6aa78f0a2f2e1b512c462c7ac3aace92b8af69ccbde6c180fdc1b9c9cd7f2a7d:log:54', 'hash': '0x6aa78f0a2f2e1b512c462c7ac3aace92b8af69ccbde6c180fdc1b9c9cd7f2a7d', 'from': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10490.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0238b34acf0c572b0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0380', 'uniqueId': '0x6aa78f0a2f2e1b512c462c7ac3aace92b8af69ccbde6c180fdc1b9c9cd7f2a7d:log:56', 'hash': '0x6aa78f0a2f2e1b512c462c7ac3aace92b8af69ccbde6c180fdc1b9c9cd7f2a7d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 10490.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0238b34acf0c572b0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:16.000Z'}}, {'blockNum': '0x7f0381', 'uniqueId': '0x584e3ed97b0196d0751d1c194de5d5845fd4458a422e2132d1cf1b3ae374d28e:log:79', 'hash': '0x584e3ed97b0196d0751d1c194de5d5845fd4458a422e2132d1cf1b3ae374d28e', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2059.865453201605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6faa602c0d4cae6dbb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:24.000Z'}}, {'blockNum': '0x7f0381', 'uniqueId': '0x584e3ed97b0196d0751d1c194de5d5845fd4458a422e2132d1cf1b3ae374d28e:log:83', 'hash': '0x584e3ed97b0196d0751d1c194de5d5845fd4458a422e2132d1cf1b3ae374d28e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2059.865453201605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6faa602c0d4cae6dbb', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:24.000Z'}}, {'blockNum': '0x7f0381', 'uniqueId': '0x584e3ed97b0196d0751d1c194de5d5845fd4458a422e2132d1cf1b3ae374d28e:log:84', 'hash': '0x584e3ed97b0196d0751d1c194de5d5845fd4458a422e2132d1cf1b3ae374d28e', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2059.661339542624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6fa78b03c2b3505366', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:24.000Z'}}, {'blockNum': '0x7f0384', 'uniqueId': '0xe710b31f98d8c38a7d36c87f0d939d2a0165696779cedd409cc561f08e1db305:log:57', 'hash': '0xe710b31f98d8c38a7d36c87f0d939d2a0165696779cedd409cc561f08e1db305', 'from': '0xa38cde626af6d97c39a44ba2bebc589cdafb6ac8', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 462912.836009732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x62068e1c958819a12800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:37:36.000Z'}}, {'blockNum': '0x7f0387', 'uniqueId': '0x994dd498f84f06c1b721892c35ca7b094542291a69b1823c632a54144bfa2608:log:25', 'hash': '0x994dd498f84f06c1b721892c35ca7b094542291a69b1823c632a54144bfa2608', 'from': '0xdeaf423f4216716e2f258e4c8662397668807a52', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 155195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x20dd234761a64c0c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:38:26.000Z'}}, {'blockNum': '0x7f038a', 'uniqueId': '0xa82e3cebd9de87f4ef6448d8b42dfae23eb69e812c17b191f8ef65dcfeb0d87f:log:5', 'hash': '0xa82e3cebd9de87f4ef6448d8b42dfae23eb69e812c17b191f8ef65dcfeb0d87f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 201236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2a9d0681ddfa1bd00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:38:38.000Z'}}, {'blockNum': '0x7f038a', 'uniqueId': '0x940184f45868edeaeb8be38582d3ae9920416580a2a94655493ff38c930b441a:log:59', 'hash': '0x940184f45868edeaeb8be38582d3ae9920416580a2a94655493ff38c930b441a', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 520720.52827668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x6e4450ffa40a6cc5d000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:38:38.000Z'}}, {'blockNum': '0x7f038a', 'uniqueId': '0xbca7792e95d149781c9aba7f7e163bedecb24e53bf7a1ef890f260979f9be09c:log:93', 'hash': '0xbca7792e95d149781c9aba7f7e163bedecb24e53bf7a1ef890f260979f9be09c', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b87506a3e7b0d400000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:38:38.000Z'}}, {'blockNum': '0x7f038d', 'uniqueId': '0xe3d4cfb999175cfb8b69b5b1a91d0c2f4e9bc17eaf7acabc085903cebaaf79f7:log:36', 'hash': '0xe3d4cfb999175cfb8b69b5b1a91d0c2f4e9bc17eaf7acabc085903cebaaf79f7', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:18.000Z'}}, {'blockNum': '0x7f038e', 'uniqueId': '0x04a1a82fc7e7c99d2a88319749794964c7db19e79b295e55e0670334377b1ff4:log:2', 'hash': '0x04a1a82fc7e7c99d2a88319749794964c7db19e79b295e55e0670334377b1ff4', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 10415.70016603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0234a2e074427b4e0c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:39:41.000Z'}}, {'blockNum': '0x7f0391', 'uniqueId': '0xbeb79c1f89768591e4fdf0d92c2fcf53e88d86be8aa79f879b505a403b1ce1e3:log:93', 'hash': '0xbeb79c1f89768591e4fdf0d92c2fcf53e88d86be8aa79f879b505a403b1ce1e3', 'from': '0x8976068f29236b0e7bd549bd7f48e2ec8b238d6e', 'to': '0x4c483ecaf151eeb3738aaeb73887adf57743f2fc', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:40:14.000Z'}}, {'blockNum': '0x7f0391', 'uniqueId': '0xc905f818740b57dede35a95d6acfc4b7c701598f5bb7dda1ddd94eea9b4d0eb5:log:98', 'hash': '0xc905f818740b57dede35a95d6acfc4b7c701598f5bb7dda1ddd94eea9b4d0eb5', 'from': '0x3b01c70c892bf095e43a71d3767a8dd2c0648708', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 157572.02299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x215dff19822205599c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:40:14.000Z'}}, {'blockNum': '0x7f0393', 'uniqueId': '0xcbfebdb3f37c0444e990249010e17d4004942ad08637bb74b60ce28bca6686cd:log:68', 'hash': '0xcbfebdb3f37c0444e990249010e17d4004942ad08637bb74b60ce28bca6686cd', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10415.70016603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0234a2e074427b4e0c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:03.000Z'}}, {'blockNum': '0x7f0393', 'uniqueId': '0xcbfebdb3f37c0444e990249010e17d4004942ad08637bb74b60ce28bca6686cd:log:70', 'hash': '0xcbfebdb3f37c0444e990249010e17d4004942ad08637bb74b60ce28bca6686cd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 10415.70016603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0234a2e074427b4e0c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:03.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xb68c9a94252a3e8cff06e45efde756d6789a662635893178aecdc27a9245d6dc:log:77', 'hash': '0xb68c9a94252a3e8cff06e45efde756d6789a662635893178aecdc27a9245d6dc', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2600.301308140061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8cf66e06c43fe5d320', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xb68c9a94252a3e8cff06e45efde756d6789a662635893178aecdc27a9245d6dc:log:81', 'hash': '0xb68c9a94252a3e8cff06e45efde756d6789a662635893178aecdc27a9245d6dc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2600.301308140061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8cf66e06c43fe5d320', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0394', 'uniqueId': '0xb68c9a94252a3e8cff06e45efde756d6789a662635893178aecdc27a9245d6dc:log:82', 'hash': '0xb68c9a94252a3e8cff06e45efde756d6789a662635893178aecdc27a9245d6dc', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2600.0442479342673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8cf2dcc3df13aae380', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:06.000Z'}}, {'blockNum': '0x7f0396', 'uniqueId': '0xdb4fb9aa288351cd1833208d4e853c59fbcbf34d3df3cff1d6e83f0453f9491e:log:0', 'hash': '0xdb4fb9aa288351cd1833208d4e853c59fbcbf34d3df3cff1d6e83f0453f9491e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'value': 10673.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02429b51b4d9a60d0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:15.000Z'}}, {'blockNum': '0x7f0396', 'uniqueId': '0x6d28be545a1a4edef4951f93322e416cb3948b2a161f40dcf53ad28505699013:log:20', 'hash': '0x6d28be545a1a4edef4951f93322e416cb3948b2a161f40dcf53ad28505699013', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'value': 37572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07f4c83e570330900000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:15.000Z'}}, {'blockNum': '0x7f0397', 'uniqueId': '0x2ed5dd0746b8cc69f3d17d85df24ebe2cd77b53493907c262ad138e399f31177:log:23', 'hash': '0x2ed5dd0746b8cc69f3d17d85df24ebe2cd77b53493907c262ad138e399f31177', 'from': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10673.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02429b51b4d9a60d0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:21.000Z'}}, {'blockNum': '0x7f0397', 'uniqueId': '0x2ed5dd0746b8cc69f3d17d85df24ebe2cd77b53493907c262ad138e399f31177:log:25', 'hash': '0x2ed5dd0746b8cc69f3d17d85df24ebe2cd77b53493907c262ad138e399f31177', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 10673.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02429b51b4d9a60d0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:21.000Z'}}, {'blockNum': '0x7f0397', 'uniqueId': '0x53b3a7ff67650851c61b6b255ac36bbd49c2d2d7c3bac546d4d5154b90fc13d9:log:110', 'hash': '0x53b3a7ff67650851c61b6b255ac36bbd49c2d2d7c3bac546d4d5154b90fc13d9', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2099.5267630412577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x71d0c973376be1b019', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:21.000Z'}}, {'blockNum': '0x7f0397', 'uniqueId': '0x53b3a7ff67650851c61b6b255ac36bbd49c2d2d7c3bac546d4d5154b90fc13d9:log:114', 'hash': '0x53b3a7ff67650851c61b6b255ac36bbd49c2d2d7c3bac546d4d5154b90fc13d9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2099.5267630412577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x71d0c973376be1b019', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:21.000Z'}}, {'blockNum': '0x7f0397', 'uniqueId': '0x53b3a7ff67650851c61b6b255ac36bbd49c2d2d7c3bac546d4d5154b90fc13d9:log:115', 'hash': '0x53b3a7ff67650851c61b6b255ac36bbd49c2d2d7c3bac546d4d5154b90fc13d9', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2099.318737315037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x71cde664ebb05edf25', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:41:21.000Z'}}, {'blockNum': '0x7f039f', 'uniqueId': '0xbc7df6af82b2f3a0637af6fafb822f2cb23ad318f1076891e44551f3bd484912:log:19', 'hash': '0xbc7df6af82b2f3a0637af6fafb822f2cb23ad318f1076891e44551f3bd484912', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:42:54.000Z'}}, {'blockNum': '0x7f03a8', 'uniqueId': '0x92207a50d9809881df106f7fee8f1a46fa60deaf46f2a9ac7c9a594363785297:log:7', 'hash': '0x92207a50d9809881df106f7fee8f1a46fa60deaf46f2a9ac7c9a594363785297', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa5c309ae3260dab04ba1e94325a543d01772161d', 'value': 38241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08190c7bca7fa0e40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:45:06.000Z'}}, {'blockNum': '0x7f03a8', 'uniqueId': '0x6ee6b08c73f329b3f9e1299ca0419e85b388843d3f7c2caa9608a2b16f829720:log:10', 'hash': '0x6ee6b08c73f329b3f9e1299ca0419e85b388843d3f7c2caa9608a2b16f829720', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x60739ec82729c3cae0f4ad0e0511ca231e64200c', 'value': 10784.83040399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0248a5967ff2d0845c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:45:06.000Z'}}, {'blockNum': '0x7f03ab', 'uniqueId': '0xc9082bffd7f466c266d82ae738cf5b045352b70d6b2ff9684c64936581bdd56e:log:34', 'hash': '0xc9082bffd7f466c266d82ae738cf5b045352b70d6b2ff9684c64936581bdd56e', 'from': '0xa5c309ae3260dab04ba1e94325a543d01772161d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 38241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08190c7bca7fa0e40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:46:43.000Z'}}, {'blockNum': '0x7f03ab', 'uniqueId': '0xc9082bffd7f466c266d82ae738cf5b045352b70d6b2ff9684c64936581bdd56e:log:36', 'hash': '0xc9082bffd7f466c266d82ae738cf5b045352b70d6b2ff9684c64936581bdd56e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 38241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x08190c7bca7fa0e40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:46:43.000Z'}}, {'blockNum': '0x7f03ab', 'uniqueId': '0x3c3431944e53d91d9097ea01199cfafae8cacd70859e64985624d91da5771530:log:92', 'hash': '0x3c3431944e53d91d9097ea01199cfafae8cacd70859e64985624d91da5771530', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8236.18399501584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01be7c038a4b3cc1ac4c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:46:43.000Z'}}, {'blockNum': '0x7f03ab', 'uniqueId': '0x3c3431944e53d91d9097ea01199cfafae8cacd70859e64985624d91da5771530:log:96', 'hash': '0x3c3431944e53d91d9097ea01199cfafae8cacd70859e64985624d91da5771530', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 8236.18399501584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01be7c038a4b3cc1ac4c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:46:43.000Z'}}, {'blockNum': '0x7f03ab', 'uniqueId': '0x3c3431944e53d91d9097ea01199cfafae8cacd70859e64985624d91da5771530:log:98', 'hash': '0x3c3431944e53d91d9097ea01199cfafae8cacd70859e64985624d91da5771530', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 8236.18399501584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01be7c038a4b3cc1ac4c', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:46:43.000Z'}}, {'blockNum': '0x7f03ae', 'uniqueId': '0x263c1c27b6cf46b3c115a22078c3ef6e2e564c02684ae5a8d6951de78ba828d1:log:71', 'hash': '0x263c1c27b6cf46b3c115a22078c3ef6e2e564c02684ae5a8d6951de78ba828d1', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 201236, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2a9d0681ddfa1bd00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:47:15.000Z'}}, {'blockNum': '0x7f03b1', 'uniqueId': '0xd712dba46e1db8143716ef61004a58e64f1cc18a6182d70cce7e9ab7f244364a:log:1', 'hash': '0xd712dba46e1db8143716ef61004a58e64f1cc18a6182d70cce7e9ab7f244364a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:47:29.000Z'}}, {'blockNum': '0x7f03b1', 'uniqueId': '0x363555023d7c11a113761c5c1ad1265fc08c3955c3302baa2e6a9f967e4061c9:log:2', 'hash': '0x363555023d7c11a113761c5c1ad1265fc08c3955c3302baa2e6a9f967e4061c9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x73827aad53e6c8dddf13dc960da1607d958a1727', 'value': 128431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b32422a7b66215c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:47:29.000Z'}}, {'blockNum': '0x7f03b6', 'uniqueId': '0xe75fc13adc01bf75a2c31f9dc5cf4176731f87ad4e0728aa909d6ccbae4aab23:log:95', 'hash': '0xe75fc13adc01bf75a2c31f9dc5cf4176731f87ad4e0728aa909d6ccbae4aab23', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11940.04996877288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0287457ad980c18399bc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:48:42.000Z'}}, {'blockNum': '0x7f03b6', 'uniqueId': '0xe75fc13adc01bf75a2c31f9dc5cf4176731f87ad4e0728aa909d6ccbae4aab23:log:99', 'hash': '0xe75fc13adc01bf75a2c31f9dc5cf4176731f87ad4e0728aa909d6ccbae4aab23', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 11940.04996877288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0287457ad980c18399bc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:48:42.000Z'}}, {'blockNum': '0x7f03b8', 'uniqueId': '0x3651200a18f087834f9d5207698bae83d40e6a8e8d0203167f2bf68fa1843960:log:56', 'hash': '0x3651200a18f087834f9d5207698bae83d40e6a8e8d0203167f2bf68fa1843960', 'from': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:49:10.000Z'}}, {'blockNum': '0x7f03b8', 'uniqueId': '0x6a78b71c03fcd2750788a27adf246b42b98330822abfbe2a05387baf6014809f:log:57', 'hash': '0x6a78b71c03fcd2750788a27adf246b42b98330822abfbe2a05387baf6014809f', 'from': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 166883.617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2356c76ce233dc168000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:49:10.000Z'}}, {'blockNum': '0x7f03bb', 'uniqueId': '0xfa9566dfab64d1ffb6f0ee5c5e150527fe237dc86c6e679659950174e2b793ee:log:43', 'hash': '0xfa9566dfab64d1ffb6f0ee5c5e150527fe237dc86c6e679659950174e2b793ee', 'from': '0x60739ec82729c3cae0f4ad0e0511ca231e64200c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5062.659718750104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011272846f151af84b46', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:49:37.000Z'}}, {'blockNum': '0x7f03bb', 'uniqueId': '0xfa9566dfab64d1ffb6f0ee5c5e150527fe237dc86c6e679659950174e2b793ee:log:45', 'hash': '0xfa9566dfab64d1ffb6f0ee5c5e150527fe237dc86c6e679659950174e2b793ee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5062.659718750104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x011272846f151af84b46', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:49:37.000Z'}}, {'blockNum': '0x7f03bf', 'uniqueId': '0x027c0587176bce514010235e39820d6e6e9a4c56161eef493072a7633059562d:log:35', 'hash': '0x027c0587176bce514010235e39820d6e6e9a4c56161eef493072a7633059562d', 'from': '0x60739ec82729c3cae0f4ad0e0511ca231e64200c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5722.170685239896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0136331210ddb58c10ba', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:50:34.000Z'}}, {'blockNum': '0x7f03bf', 'uniqueId': '0x027c0587176bce514010235e39820d6e6e9a4c56161eef493072a7633059562d:log:37', 'hash': '0x027c0587176bce514010235e39820d6e6e9a4c56161eef493072a7633059562d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5722.170685239896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0136331210ddb58c10ba', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:50:34.000Z'}}, {'blockNum': '0x7f03c0', 'uniqueId': '0xcb3557f1b58c1e83b1f997512ba61729c01c0c7e5890f8bb5e9515ab3bb7c57f:log:4', 'hash': '0xcb3557f1b58c1e83b1f997512ba61729c01c0c7e5890f8bb5e9515ab3bb7c57f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x98107a3934e83436d975fc893e66de41e80d7659', 'value': 9919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0219b5c6fae2bb9c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:50:37.000Z'}}, {'blockNum': '0x7f03c0', 'uniqueId': '0xd5e63400abe3e175349753d207935648a8f84c751dc107cc49d05a5dca4943de:log:21', 'hash': '0xd5e63400abe3e175349753d207935648a8f84c751dc107cc49d05a5dca4943de', 'from': '0x73827aad53e6c8dddf13dc960da1607d958a1727', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 128431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b32422a7b66215c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:50:37.000Z'}}, {'blockNum': '0x7f03cb', 'uniqueId': '0x6cbbdde842b63bf7260c9b7b86366c14d5579a7ab137ed2792f2a834f709118e:log:11', 'hash': '0x6cbbdde842b63bf7260c9b7b86366c14d5579a7ab137ed2792f2a834f709118e', 'from': '0x95ed37249b766e2d46c92fcd852a43751be7efd9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11433.111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x026bca49d74823158000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:53:09.000Z'}}, {'blockNum': '0x7f03cb', 'uniqueId': '0x58d4221c0eb3d7ca5aa54d08478a94897a1a7bc9d4edb523ede38c80de95f959:log:28', 'hash': '0x58d4221c0eb3d7ca5aa54d08478a94897a1a7bc9d4edb523ede38c80de95f959', 'from': '0x6c121b7f0f0dbbb7d9b35fcee956d81437342ef5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67310, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e40e1e5b855f6f80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:53:09.000Z'}}, {'blockNum': '0x7f03cf', 'uniqueId': '0xbfa280f53d6895442de7caef786cefd7b998641a29ea815ac2df4f9cc4d72c15:log:20', 'hash': '0xbfa280f53d6895442de7caef786cefd7b998641a29ea815ac2df4f9cc4d72c15', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10846.75836341075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x024c0102ceeeeb257610', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:53:27.000Z'}}, {'blockNum': '0x7f03cf', 'uniqueId': '0xbfa280f53d6895442de7caef786cefd7b998641a29ea815ac2df4f9cc4d72c15:log:24', 'hash': '0xbfa280f53d6895442de7caef786cefd7b998641a29ea815ac2df4f9cc4d72c15', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'value': 10846.75836341075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x024c0102ceeeeb257610', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:53:27.000Z'}}, {'blockNum': '0x7f03d0', 'uniqueId': '0x5382527a5f9a799380f9c7751dac0414f1930036b119c737d62ae2bccc4aad8e:log:7', 'hash': '0x5382527a5f9a799380f9c7751dac0414f1930036b119c737d62ae2bccc4aad8e', 'from': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'to': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'value': 10847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x024c045d4621861c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:53:34.000Z'}}, {'blockNum': '0x7f03eb', 'uniqueId': '0xc98bd7a3bcb331d1ec3d100c11579173efbc1d5a8b639bf6cac2f3abdb061753:log:3', 'hash': '0xc98bd7a3bcb331d1ec3d100c11579173efbc1d5a8b639bf6cac2f3abdb061753', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 172513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2487f2cedef402e40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T16:59:06.000Z'}}, {'blockNum': '0x7f03f5', 'uniqueId': '0x247775a017b2119fe8ef8869d191b634acb6c6e281cbd0cf88c6c245cc01c300:log:22', 'hash': '0x247775a017b2119fe8ef8869d191b634acb6c6e281cbd0cf88c6c245cc01c300', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x2042044f5c22f577ee8687e1c269596e5ea0b6af', 'value': 18577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03ef0faa02d5efa40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:01:36.000Z'}}, {'blockNum': '0x7f0400', 'uniqueId': '0x325d3d93dd85def8eeba4e7c02facaa82ba5c86739117f3a0560c6b409c6bbcc:log:13', 'hash': '0x325d3d93dd85def8eeba4e7c02facaa82ba5c86739117f3a0560c6b409c6bbcc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'value': 35027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x076ad1460700176c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:03:36.000Z'}}, {'blockNum': '0x7f0405', 'uniqueId': '0x5fa40dfec37740d23311db03cc7e90818f6f995adcee05bc012017c06c4f41c3:log:43', 'hash': '0x5fa40dfec37740d23311db03cc7e90818f6f995adcee05bc012017c06c4f41c3', 'from': '0x2042044f5c22f577ee8687e1c269596e5ea0b6af', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 18577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03ef0faa02d5efa40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:05:20.000Z'}}, {'blockNum': '0x7f040c', 'uniqueId': '0x90cbe8d2cd47d723ea5540198da67511715e4c4b14a33520af7d43542ad4c100:log:4', 'hash': '0x90cbe8d2cd47d723ea5540198da67511715e4c4b14a33520af7d43542ad4c100', 'from': '0x387cec37baa3f6ef2bd74830f5fb8aa930c1b05b', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 128342.87449409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1b2d7b2dcaaec838e400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:06:47.000Z'}}, {'blockNum': '0x7f0410', 'uniqueId': '0x0700524189ad0effbaafe19206afd155c4e2c55c1c4fd3659fc3b9c61285645a:log:15', 'hash': '0x0700524189ad0effbaafe19206afd155c4e2c55c1c4fd3659fc3b9c61285645a', 'from': '0x1ff6c03defa68b6cf0196e8a1cfb0dc0f8c4f68f', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 35027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x076ad1460700176c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:07:34.000Z'}}, {'blockNum': '0x7f0414', 'uniqueId': '0xbc217345f25e44cb8ac7fe7af871c0f282fd56dd463b11ed1bafd79f0ad9a1f1:log:3', 'hash': '0xbc217345f25e44cb8ac7fe7af871c0f282fd56dd463b11ed1bafd79f0ad9a1f1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2042044f5c22f577ee8687e1c269596e5ea0b6af', 'value': 73759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f9e7bc03c11c51c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:08:16.000Z'}}, {'blockNum': '0x7f0414', 'uniqueId': '0xd6341136fa0c301fecd7134d1e0268c8caddb411759fcde951cda8f39041308e:log:32', 'hash': '0xd6341136fa0c301fecd7134d1e0268c8caddb411759fcde951cda8f39041308e', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 172513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x2487f2cedef402e40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:08:16.000Z'}}, {'blockNum': '0x7f0421', 'uniqueId': '0x1707472d56783a5ac66c0b9447bd8562e4d78c4955b2c09ef9f53a02187be0ef:log:38', 'hash': '0x1707472d56783a5ac66c0b9447bd8562e4d78c4955b2c09ef9f53a02187be0ef', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 148148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f5f1e8216417a500000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:11:45.000Z'}}, {'blockNum': '0x7f0421', 'uniqueId': '0x7e5f994a7bb0436ca0c8adba8d965679cb8bcf81483f8394325a517165c3e679:log:51', 'hash': '0x7e5f994a7bb0436ca0c8adba8d965679cb8bcf81483f8394325a517165c3e679', 'from': '0x2042044f5c22f577ee8687e1c269596e5ea0b6af', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 73759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0f9e7bc03c11c51c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:11:45.000Z'}}, {'blockNum': '0x7f0437', 'uniqueId': '0x4267a77bd3b8eb561e1b56de0725975c23f4a5e851076ec939f4f94bf28db54f:log:73', 'hash': '0x4267a77bd3b8eb561e1b56de0725975c23f4a5e851076ec939f4f94bf28db54f', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11940.04996877288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0287457ad980c18399bc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:15:46.000Z'}}, {'blockNum': '0x7f0437', 'uniqueId': '0x4267a77bd3b8eb561e1b56de0725975c23f4a5e851076ec939f4f94bf28db54f:log:75', 'hash': '0x4267a77bd3b8eb561e1b56de0725975c23f4a5e851076ec939f4f94bf28db54f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11940.04996877288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0287457ad980c18399bc', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:15:46.000Z'}}, {'blockNum': '0x7f043d', 'uniqueId': '0x6deb10123f2110aaa403ec040e901bca35ee802deb34240d1e00dda709c280e8:log:8', 'hash': '0x6deb10123f2110aaa403ec040e901bca35ee802deb34240d1e00dda709c280e8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'value': 11023.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025594af056af0860000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:17:50.000Z'}}, {'blockNum': '0x7f043f', 'uniqueId': '0x3c868dfd24f730b9c011580569b2f052d1e2719cff23bbea2887f51699325ee9:log:61', 'hash': '0x3c868dfd24f730b9c011580569b2f052d1e2719cff23bbea2887f51699325ee9', 'from': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11023.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025594af056af0860000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:18:27.000Z'}}, {'blockNum': '0x7f043f', 'uniqueId': '0x3c868dfd24f730b9c011580569b2f052d1e2719cff23bbea2887f51699325ee9:log:63', 'hash': '0x3c868dfd24f730b9c011580569b2f052d1e2719cff23bbea2887f51699325ee9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11023.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025594af056af0860000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:18:27.000Z'}}, {'blockNum': '0x7f0441', 'uniqueId': '0x26c1dbdc8a0dd11dc9971532044d179a794154f7e034cab4d2ab943493f3ae8a:log:27', 'hash': '0x26c1dbdc8a0dd11dc9971532044d179a794154f7e034cab4d2ab943493f3ae8a', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2782.268343086368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x96d3baccf2959e3caf', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:19:29.000Z'}}, {'blockNum': '0x7f0441', 'uniqueId': '0x26c1dbdc8a0dd11dc9971532044d179a794154f7e034cab4d2ab943493f3ae8a:log:31', 'hash': '0x26c1dbdc8a0dd11dc9971532044d179a794154f7e034cab4d2ab943493f3ae8a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2782.268343086368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x96d3baccf2959e3caf', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:19:29.000Z'}}, {'blockNum': '0x7f0441', 'uniqueId': '0x26c1dbdc8a0dd11dc9971532044d179a794154f7e034cab4d2ab943493f3ae8a:log:32', 'hash': '0x26c1dbdc8a0dd11dc9971532044d179a794154f7e034cab4d2ab943493f3ae8a', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2782.27313019242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x96d3cbcecb91588b4d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:19:29.000Z'}}, {'blockNum': '0x7f0446', 'uniqueId': '0x478a9d4cfe3bc6b3dd167d17cf7e12c3884b4eab999884f28f48e6ec6bee93a5:log:2', 'hash': '0x478a9d4cfe3bc6b3dd167d17cf7e12c3884b4eab999884f28f48e6ec6bee93a5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1226cb1793905c623f214002ac6a0c7ee06a4cd9', 'value': 75480.35420902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ffbcc56e10c31b6d800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:20:32.000Z'}}, {'blockNum': '0x7f0446', 'uniqueId': '0xa274dfd4c177600b3759880d0cf376a11376b9dc4f20698258c3b592a75af9c1:log:4', 'hash': '0xa274dfd4c177600b3759880d0cf376a11376b9dc4f20698258c3b592a75af9c1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 181021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x26552b06d9a322540000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:20:32.000Z'}}, {'blockNum': '0x7f044f', 'uniqueId': '0x63d24d48a55eb0af0e27be7bf43996412c4580db9a9d70048937438ee7d05ee4:log:12', 'hash': '0x63d24d48a55eb0af0e27be7bf43996412c4580db9a9d70048937438ee7d05ee4', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 11350.11633163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02674a818c1fb5e2cc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:21:48.000Z'}}, {'blockNum': '0x7f0454', 'uniqueId': '0xb43ffb71f1106792622fa41a31152509db65830237ab7e7838a74b79d29d6414:log:13', 'hash': '0xb43ffb71f1106792622fa41a31152509db65830237ab7e7838a74b79d29d6414', 'from': '0x1226cb1793905c623f214002ac6a0c7ee06a4cd9', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 75480.35420902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0ffbcc56e10c31b6d800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:23:01.000Z'}}, {'blockNum': '0x7f0454', 'uniqueId': '0x837e105bdfaefcc8fe14784f8995908ad0845eb009c6ad36ac56886f1cb93e2b:log:59', 'hash': '0x837e105bdfaefcc8fe14784f8995908ad0845eb009c6ad36ac56886f1cb93e2b', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11350.11633163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02674a818c1fb5e2cc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:23:01.000Z'}}, {'blockNum': '0x7f0454', 'uniqueId': '0x837e105bdfaefcc8fe14784f8995908ad0845eb009c6ad36ac56886f1cb93e2b:log:61', 'hash': '0x837e105bdfaefcc8fe14784f8995908ad0845eb009c6ad36ac56886f1cb93e2b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11350.11633163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02674a818c1fb5e2cc00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:23:01.000Z'}}, {'blockNum': '0x7f0456', 'uniqueId': '0x6989b327732698e9b693661ea62029f414eb783022fcfe57284b82080790d1b8:log:49', 'hash': '0x6989b327732698e9b693661ea62029f414eb783022fcfe57284b82080790d1b8', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2519.8559201666203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x889a06989f6879adad', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:23:43.000Z'}}, {'blockNum': '0x7f0456', 'uniqueId': '0x6989b327732698e9b693661ea62029f414eb783022fcfe57284b82080790d1b8:log:53', 'hash': '0x6989b327732698e9b693661ea62029f414eb783022fcfe57284b82080790d1b8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2519.8559201666203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x889a06989f6879adad', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:23:43.000Z'}}, {'blockNum': '0x7f0456', 'uniqueId': '0x6989b327732698e9b693661ea62029f414eb783022fcfe57284b82080790d1b8:log:54', 'hash': '0x6989b327732698e9b693661ea62029f414eb783022fcfe57284b82080790d1b8', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2519.8559201666203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x889a06989f6879adad', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:23:43.000Z'}}, {'blockNum': '0x7f045a', 'uniqueId': '0xdf193b4df96e80446c9fda8eb938cc58b748121fb02fcb2c3d31d30021b0fbde:log:6', 'hash': '0xdf193b4df96e80446c9fda8eb938cc58b748121fb02fcb2c3d31d30021b0fbde', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'value': 11323.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0265d7e19900a9f50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:24:21.000Z'}}, {'blockNum': '0x7f045d', 'uniqueId': '0x74fd287d29beea6eb6349a55c476f9333ddaf58b85200a92ae0b0c20f6dc9ba7:log:122', 'hash': '0x74fd287d29beea6eb6349a55c476f9333ddaf58b85200a92ae0b0c20f6dc9ba7', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 148148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1f5f1e8216417a500000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:25:02.000Z'}}, {'blockNum': '0x7f045d', 'uniqueId': '0x152ffa017281970ce84fbe770fa865f196bc301b0150361089b0b97c21e42f24:log:124', 'hash': '0x152ffa017281970ce84fbe770fa865f196bc301b0150361089b0b97c21e42f24', 'from': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11323.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0265d7e19900a9f50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:25:02.000Z'}}, {'blockNum': '0x7f045d', 'uniqueId': '0x152ffa017281970ce84fbe770fa865f196bc301b0150361089b0b97c21e42f24:log:126', 'hash': '0x152ffa017281970ce84fbe770fa865f196bc301b0150361089b0b97c21e42f24', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11323.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0265d7e19900a9f50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:25:02.000Z'}}, {'blockNum': '0x7f045f', 'uniqueId': '0xe36855b48fbbe794ffae91fcd74823bce0d6af418793320bcef106f3e6d2b557:log:114', 'hash': '0xe36855b48fbbe794ffae91fcd74823bce0d6af418793320bcef106f3e6d2b557', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2556.821661726438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8a9b074ab7ec4c4f38', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:25:43.000Z'}}, {'blockNum': '0x7f045f', 'uniqueId': '0xe36855b48fbbe794ffae91fcd74823bce0d6af418793320bcef106f3e6d2b557:log:118', 'hash': '0xe36855b48fbbe794ffae91fcd74823bce0d6af418793320bcef106f3e6d2b557', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2556.821661726438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8a9b074ab7ec4c4f38', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:25:43.000Z'}}, {'blockNum': '0x7f045f', 'uniqueId': '0xe36855b48fbbe794ffae91fcd74823bce0d6af418793320bcef106f3e6d2b557:log:119', 'hash': '0xe36855b48fbbe794ffae91fcd74823bce0d6af418793320bcef106f3e6d2b557', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2556.6908921478835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x8a9936b47ac7200000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:25:43.000Z'}}, {'blockNum': '0x7f047e', 'uniqueId': '0xb9ba364e9aa026995ab617780b62aeee5ba9a6dfb4cf8f84cbfa81bef24cfad5:log:18', 'hash': '0xb9ba364e9aa026995ab617780b62aeee5ba9a6dfb4cf8f84cbfa81bef24cfad5', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 181021, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x26552b06d9a322540000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:32:09.000Z'}}, {'blockNum': '0x7f048d', 'uniqueId': '0x806e08f69278271cb31e8e3e0c751fa31b040bb67712a484737310f031072dd0:log:5', 'hash': '0x806e08f69278271cb31e8e3e0c751fa31b040bb67712a484737310f031072dd0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5c00129a92029fd396b4873db40da89d1c948e04', 'value': 54864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0b9e2ef34611e7400000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:35:32.000Z'}}, {'blockNum': '0x7f04cd', 'uniqueId': '0xabead891ceb710a6a9d7e24e69f80630507b41d7b001f2de67e82756a97321b4:log:5', 'hash': '0xabead891ceb710a6a9d7e24e69f80630507b41d7b001f2de67e82756a97321b4', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 126634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1ad0d7c8005020680000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:49:21.000Z'}}, {'blockNum': '0x7f04f8', 'uniqueId': '0x0158a6cc3f74303aa89e830d94d25a13dd4d47b64d5c3a4ad4d24f1f0031182c:log:2', 'hash': '0x0158a6cc3f74303aa89e830d94d25a13dd4d47b64d5c3a4ad4d24f1f0031182c', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 102920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x15cb4debd27843200000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:57:49.000Z'}}, {'blockNum': '0x7f0503', 'uniqueId': '0x746381d80d97065c82f10f31e16eef03a5241e89d6acd9ffd6d1be9064fd349d:log:60', 'hash': '0x746381d80d97065c82f10f31e16eef03a5241e89d6acd9ffd6d1be9064fd349d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 11582.61538461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0273e5141cf9f582d400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T17:59:53.000Z'}}, {'blockNum': '0x7f050a', 'uniqueId': '0xb1c7e0b13b8006cc330434cd46514ff192f3112794927b4b03f7ab80c07959de:log:40', 'hash': '0xb1c7e0b13b8006cc330434cd46514ff192f3112794927b4b03f7ab80c07959de', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11582.61538461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0273e5141cf9f582d400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:01:16.000Z'}}, {'blockNum': '0x7f050a', 'uniqueId': '0xb1c7e0b13b8006cc330434cd46514ff192f3112794927b4b03f7ab80c07959de:log:42', 'hash': '0xb1c7e0b13b8006cc330434cd46514ff192f3112794927b4b03f7ab80c07959de', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11582.61538461, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0273e5141cf9f582d400', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:01:16.000Z'}}, {'blockNum': '0x7f050a', 'uniqueId': '0xbea2495510581ada4e27ae867b1ec05d3b214189604051604af0ced2f4884f6a:log:91', 'hash': '0xbea2495510581ada4e27ae867b1ec05d3b214189604051604af0ced2f4884f6a', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2826.4920294590606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x993974e5657c3ad7a5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:01:16.000Z'}}, {'blockNum': '0x7f050a', 'uniqueId': '0xbea2495510581ada4e27ae867b1ec05d3b214189604051604af0ced2f4884f6a:log:95', 'hash': '0xbea2495510581ada4e27ae867b1ec05d3b214189604051604af0ced2f4884f6a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2826.4920294590606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x993974e5657c3ad7a5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:01:16.000Z'}}, {'blockNum': '0x7f050a', 'uniqueId': '0xbea2495510581ada4e27ae867b1ec05d3b214189604051604af0ced2f4884f6a:log:96', 'hash': '0xbea2495510581ada4e27ae867b1ec05d3b214189604051604af0ced2f4884f6a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2826.2127453406833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x993594adf870f36bfe', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:01:16.000Z'}}, {'blockNum': '0x7f0514', 'uniqueId': '0x38c73e5d02e9e438f260d5c5de4963cc1e2216b10b7c38fb6dcb902777f00bc2:log:17', 'hash': '0x38c73e5d02e9e438f260d5c5de4963cc1e2216b10b7c38fb6dcb902777f00bc2', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x15cb4debd27843200000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:03:06.000Z'}}, {'blockNum': '0x7f0515', 'uniqueId': '0x249d1f1380a55c6ed60b4451f9f988a591756424b26a1aca23c2a7408d9a201d:log:7', 'hash': '0x249d1f1380a55c6ed60b4451f9f988a591756424b26a1aca23c2a7408d9a201d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'value': 11487.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x026ebbd6a417e6050000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:03:18.000Z'}}, {'blockNum': '0x7f0519', 'uniqueId': '0x11d2650cb31972f4f142ab22df70e45989eba41e0f798a9f5cabab8eae0f5c92:log:82', 'hash': '0x11d2650cb31972f4f142ab22df70e45989eba41e0f798a9f5cabab8eae0f5c92', 'from': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11487.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x026ebbd6a417e6050000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:04:08.000Z'}}, {'blockNum': '0x7f0519', 'uniqueId': '0x11d2650cb31972f4f142ab22df70e45989eba41e0f798a9f5cabab8eae0f5c92:log:84', 'hash': '0x11d2650cb31972f4f142ab22df70e45989eba41e0f798a9f5cabab8eae0f5c92', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11487.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x026ebbd6a417e6050000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:04:08.000Z'}}, {'blockNum': '0x7f0519', 'uniqueId': '0xaeacf05ad322ba2f8a69fcdab12873b643affe80c310bd08c12d7c3bcecd9cae:log:125', 'hash': '0xaeacf05ad322ba2f8a69fcdab12873b643affe80c310bd08c12d7c3bcecd9cae', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2283.98618323264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7bd0acf49299c457a5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:04:08.000Z'}}, {'blockNum': '0x7f0519', 'uniqueId': '0xaeacf05ad322ba2f8a69fcdab12873b643affe80c310bd08c12d7c3bcecd9cae:log:129', 'hash': '0xaeacf05ad322ba2f8a69fcdab12873b643affe80c310bd08c12d7c3bcecd9cae', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2283.98618323264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7bd0acf49299c457a5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:04:08.000Z'}}, {'blockNum': '0x7f0519', 'uniqueId': '0xaeacf05ad322ba2f8a69fcdab12873b643affe80c310bd08c12d7c3bcecd9cae:log:130', 'hash': '0xaeacf05ad322ba2f8a69fcdab12873b643affe80c310bd08c12d7c3bcecd9cae', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2283.7599709573974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7bcd8949b4f4137047', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:04:08.000Z'}}, {'blockNum': '0x7f052a', 'uniqueId': '0x36c86251c99cb16ae3e4892a6f9085704aca63595d39875b217657d6dcbaf48c:log:8', 'hash': '0x36c86251c99cb16ae3e4892a6f9085704aca63595d39875b217657d6dcbaf48c', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xe8185811492a4e98bce5e36df1dcce09a733c586', 'value': 35783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0793cce1918a6abc0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:08:17.000Z'}}, {'blockNum': '0x7f053d', 'uniqueId': '0x9f1069b21b6cd757400b4646a54eb62bb8f0667ab29084fb98082f5a8f49b873:log:24', 'hash': '0x9f1069b21b6cd757400b4646a54eb62bb8f0667ab29084fb98082f5a8f49b873', 'from': '0xe8185811492a4e98bce5e36df1dcce09a733c586', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 35783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0793cce1918a6abc0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:12:48.000Z'}}, {'blockNum': '0x7f0550', 'uniqueId': '0x7b49d3a51d14d8c1e3e07ec5b38fe752948f911fe68d4e941b77dc2340f213ae:log:10', 'hash': '0x7b49d3a51d14d8c1e3e07ec5b38fe752948f911fe68d4e941b77dc2340f213ae', 'from': '0x80af8ae8018a11af6520f6621ab79d58bd4029d4', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 125539.89789694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1a9588107e619d483800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:16:32.000Z'}}, {'blockNum': '0x7f0557', 'uniqueId': '0x187071128a9f791ffa22a337bfc6ed0b7ff79174ae713a3beb7f47d3a0f24d7b:log:12', 'hash': '0x187071128a9f791ffa22a337bfc6ed0b7ff79174ae713a3beb7f47d3a0f24d7b', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 240454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x32eb0996ec1b91580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:17:57.000Z'}}, {'blockNum': '0x7f056b', 'uniqueId': '0x8d2ac81ec444dfecdb758e6f58c292728da1f9e24cf9b45953ba03a491fee580:log:36', 'hash': '0x8d2ac81ec444dfecdb758e6f58c292728da1f9e24cf9b45953ba03a491fee580', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 240454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x32eb0996ec1b91580000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:22:30.000Z'}}, {'blockNum': '0x7f058b', 'uniqueId': '0x0619a1b7e01276cf4504570b09a1637afa855f31acbad7cb67949fcb4c4c49be:log:8', 'hash': '0x0619a1b7e01276cf4504570b09a1637afa855f31acbad7cb67949fcb4c4c49be', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 11781.27272727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027eaa00c5980ddd7c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:31:41.000Z'}}, {'blockNum': '0x7f0590', 'uniqueId': '0x247f1d5305c83219617e11a7d3fc35c397166e4e936aadafb0c2e8774ffa7835:log:9', 'hash': '0x247f1d5305c83219617e11a7d3fc35c397166e4e936aadafb0c2e8774ffa7835', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11781.27272727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027eaa00c5980ddd7c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:33:31.000Z'}}, {'blockNum': '0x7f0590', 'uniqueId': '0x247f1d5305c83219617e11a7d3fc35c397166e4e936aadafb0c2e8774ffa7835:log:11', 'hash': '0x247f1d5305c83219617e11a7d3fc35c397166e4e936aadafb0c2e8774ffa7835', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11781.27272727, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027eaa00c5980ddd7c00', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:33:31.000Z'}}, {'blockNum': '0x7f0590', 'uniqueId': '0xeb7e9198716d6f2c7492c15422719d4f417779eaa305f5a6c75c79b245fde387:log:54', 'hash': '0xeb7e9198716d6f2c7492c15422719d4f417779eaa305f5a6c75c79b245fde387', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2883.515054188668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9c50cf60445ecdfcc5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:33:31.000Z'}}, {'blockNum': '0x7f0590', 'uniqueId': '0xeb7e9198716d6f2c7492c15422719d4f417779eaa305f5a6c75c79b245fde387:log:58', 'hash': '0xeb7e9198716d6f2c7492c15422719d4f417779eaa305f5a6c75c79b245fde387', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2883.515054188668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9c50cf60445ecdfcc5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:33:31.000Z'}}, {'blockNum': '0x7f0590', 'uniqueId': '0xeb7e9198716d6f2c7492c15422719d4f417779eaa305f5a6c75c79b245fde387:log:59', 'hash': '0xeb7e9198716d6f2c7492c15422719d4f417779eaa305f5a6c75c79b245fde387', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2883.230169418929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9c4cdb431410996339', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:33:31.000Z'}}, {'blockNum': '0x7f059b', 'uniqueId': '0xd104081abb86de80f9de936a67c4c0577590943d24c185a71bcdf6cb26f1be59:log:3', 'hash': '0xd104081abb86de80f9de936a67c4c0577590943d24c185a71bcdf6cb26f1be59', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'value': 11783.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027ec7cd6ac3e1660000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:35:19.000Z'}}, {'blockNum': '0x7f059d', 'uniqueId': '0x5a329e32b5aa76429c3fe7b09c6a4cccdabc76a9daffa701339e238423fdef28:log:61', 'hash': '0x5a329e32b5aa76429c3fe7b09c6a4cccdabc76a9daffa701339e238423fdef28', 'from': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11783.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027ec7cd6ac3e1660000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:35:35.000Z'}}, {'blockNum': '0x7f059d', 'uniqueId': '0x5a329e32b5aa76429c3fe7b09c6a4cccdabc76a9daffa701339e238423fdef28:log:63', 'hash': '0x5a329e32b5aa76429c3fe7b09c6a4cccdabc76a9daffa701339e238423fdef28', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11783.42, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027ec7cd6ac3e1660000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:35:35.000Z'}}, {'blockNum': '0x7f059d', 'uniqueId': '0x3c6adc7cff6c7dad33fbc3996fd766de26b419ed83203a99cd2f6176ace605c8:log:116', 'hash': '0x3c6adc7cff6c7dad33fbc3996fd766de26b419ed83203a99cd2f6176ace605c8', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2330.3143283307204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7e539b97151396812d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:35:35.000Z'}}, {'blockNum': '0x7f059d', 'uniqueId': '0x3c6adc7cff6c7dad33fbc3996fd766de26b419ed83203a99cd2f6176ace605c8:log:120', 'hash': '0x3c6adc7cff6c7dad33fbc3996fd766de26b419ed83203a99cd2f6176ace605c8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2330.3143283307204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7e539b97151396812d', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:35:35.000Z'}}, {'blockNum': '0x7f059d', 'uniqueId': '0x3c6adc7cff6c7dad33fbc3996fd766de26b419ed83203a99cd2f6176ace605c8:log:121', 'hash': '0x3c6adc7cff6c7dad33fbc3996fd766de26b419ed83203a99cd2f6176ace605c8', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2330.083549901312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7e5067b352d0e2bf36', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:35:35.000Z'}}, {'blockNum': '0x7f05da', 'uniqueId': '0x8376f1036ba05491de8cc82458a27e567ff51eee2a275aa39bb4239ee0ec4881:log:6', 'hash': '0x8376f1036ba05491de8cc82458a27e567ff51eee2a275aa39bb4239ee0ec4881', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'value': 193584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x28fe35accc02b2c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:50:33.000Z'}}, {'blockNum': '0x7f05de', 'uniqueId': '0x6bf5a20037076c1cf546a51d9f0ab5bf72b51a01ca25e5af64521617bfd947aa:log:52', 'hash': '0x6bf5a20037076c1cf546a51d9f0ab5bf72b51a01ca25e5af64521617bfd947aa', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3509.0786908205177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xbe3a3fdd67d1bebab0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:51:10.000Z'}}, {'blockNum': '0x7f05de', 'uniqueId': '0x6bf5a20037076c1cf546a51d9f0ab5bf72b51a01ca25e5af64521617bfd947aa:log:56', 'hash': '0x6bf5a20037076c1cf546a51d9f0ab5bf72b51a01ca25e5af64521617bfd947aa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 3509.0786908205177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xbe3a3fdd67d1bebab0', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:51:10.000Z'}}, {'blockNum': '0x7f05e0', 'uniqueId': '0xecaa1613910215996534ba53ca4a59afe35e20aac28dca9294b17e050c3dafa7:log:32', 'hash': '0xecaa1613910215996534ba53ca4a59afe35e20aac28dca9294b17e050c3dafa7', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5818.133023334099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x013b66d0c6eeb674b385', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:51:35.000Z'}}, {'blockNum': '0x7f05e0', 'uniqueId': '0xecaa1613910215996534ba53ca4a59afe35e20aac28dca9294b17e050c3dafa7:log:36', 'hash': '0xecaa1613910215996534ba53ca4a59afe35e20aac28dca9294b17e050c3dafa7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 5818.133023334099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x013b66d0c6eeb674b385', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:51:35.000Z'}}, {'blockNum': '0x7f05f2', 'uniqueId': '0xa90951258ca37f2baff860a5a6df97cc10f73a585641d842c6ce77448e115244:log:0', 'hash': '0xa90951258ca37f2baff860a5a6df97cc10f73a585641d842c6ce77448e115244', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 2883193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02628a34a9b8cb56440000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:54:28.000Z'}}, {'blockNum': '0x7f05f2', 'uniqueId': '0x60f45d1aa4598fcbb69bd2acb2c4dc75c8430d0e71c375f8a174b2c2829b56c3:log:65', 'hash': '0x60f45d1aa4598fcbb69bd2acb2c4dc75c8430d0e71c375f8a174b2c2829b56c3', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13810.30453506657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02eca879d483812d4b26', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:54:28.000Z'}}, {'blockNum': '0x7f05f2', 'uniqueId': '0x60f45d1aa4598fcbb69bd2acb2c4dc75c8430d0e71c375f8a174b2c2829b56c3:log:69', 'hash': '0x60f45d1aa4598fcbb69bd2acb2c4dc75c8430d0e71c375f8a174b2c2829b56c3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 13810.30453506657, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02eca879d483812d4b26', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:54:28.000Z'}}, {'blockNum': '0x7f05f2', 'uniqueId': '0x7e67609c86ccd9eb8e108fb584bff3abbc6a41ca32e633e9b7f440e159d8d775:log:100', 'hash': '0x7e67609c86ccd9eb8e108fb584bff3abbc6a41ca32e633e9b7f440e159d8d775', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x96fe94c07ee88fc2a4b3e978d875202fd113e654', 'value': 3926.4707596855774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd4daba6099b0ff1812', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:54:28.000Z'}}, {'blockNum': '0x7f05f2', 'uniqueId': '0x7e67609c86ccd9eb8e108fb584bff3abbc6a41ca32e633e9b7f440e159d8d775:log:103', 'hash': '0x7e67609c86ccd9eb8e108fb584bff3abbc6a41ca32e633e9b7f440e159d8d775', 'from': '0x96fe94c07ee88fc2a4b3e978d875202fd113e654', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3926.4707596855774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd4daba6099b0ff1812', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:54:28.000Z'}}, {'blockNum': '0x7f05f2', 'uniqueId': '0x7e67609c86ccd9eb8e108fb584bff3abbc6a41ca32e633e9b7f440e159d8d775:log:105', 'hash': '0x7e67609c86ccd9eb8e108fb584bff3abbc6a41ca32e633e9b7f440e159d8d775', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 3926.4707596855774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd4daba6099b0ff1812', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:54:28.000Z'}}, {'blockNum': '0x7f05f4', 'uniqueId': '0xc480928dbec53a8bca2f87669a38996998555eb5187b06ba99ffca7585478086:log:69', 'hash': '0xc480928dbec53a8bca2f87669a38996998555eb5187b06ba99ffca7585478086', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 13810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02eca43fe77bf0880000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:54:53.000Z'}}, {'blockNum': '0x7f05f9', 'uniqueId': '0xbd76ce25640f7871895320b24752f11418e82912b83205a6f639d48034eeb305:log:68', 'hash': '0xbd76ce25640f7871895320b24752f11418e82912b83205a6f639d48034eeb305', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11396.385882910723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0269cca003ddfa12ce15', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:56:39.000Z'}}, {'blockNum': '0x7f05f9', 'uniqueId': '0xbd76ce25640f7871895320b24752f11418e82912b83205a6f639d48034eeb305:log:72', 'hash': '0xbd76ce25640f7871895320b24752f11418e82912b83205a6f639d48034eeb305', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 11396.385882910723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0269cca003ddfa12ce15', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:56:39.000Z'}}, {'blockNum': '0x7f05fc', 'uniqueId': '0x072d0dd9476c4a43eea742687b9b1ac0868ad001ff30c19249739657e6eaf863:log:111', 'hash': '0x072d0dd9476c4a43eea742687b9b1ac0868ad001ff30c19249739657e6eaf863', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x0bde6a4fc001d927891560cbadcdff0ffb0ff60c', 'value': 8195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01bc40789907762c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:57:19.000Z'}}, {'blockNum': '0x7f05fd', 'uniqueId': '0x9b660df21b42444b44caacd8f7c9757a47d0481f60cc18f226dcbe9e4439752a:log:60', 'hash': '0x9b660df21b42444b44caacd8f7c9757a47d0481f60cc18f226dcbe9e4439752a', 'from': '0x18d53eb35f50bf7b7a75652c429e444f936598c8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 193584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x28fe35accc02b2c00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T18:57:56.000Z'}}, {'blockNum': '0x7f0602', 'uniqueId': '0x35c54019144fea0be3816125a19d9d74a7619f22dbe3997acd14731e27d7a447:log:1', 'hash': '0x35c54019144fea0be3816125a19d9d74a7619f22dbe3997acd14731e27d7a447', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x00e015bce5041fe4a26ada2dced50aed9a9ae40e', 'value': 19899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0436ba197e945a0c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:00:06.000Z'}}, {'blockNum': '0x7f0604', 'uniqueId': '0x08c30b17f404e58cf267a8ad49a43f1067e23d250b9ade25081f615b49a678e1:log:58', 'hash': '0x08c30b17f404e58cf267a8ad49a43f1067e23d250b9ade25081f615b49a678e1', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15710.990656550386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0353b1cb69bc8edc2e16', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:00:25.000Z'}}, {'blockNum': '0x7f0604', 'uniqueId': '0x08c30b17f404e58cf267a8ad49a43f1067e23d250b9ade25081f615b49a678e1:log:62', 'hash': '0x08c30b17f404e58cf267a8ad49a43f1067e23d250b9ade25081f615b49a678e1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 15710.990656550386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0353b1cb69bc8edc2e16', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:00:25.000Z'}}, {'blockNum': '0x7f0604', 'uniqueId': '0x6a42be63af2035f007fa398a27fe6c5bf5590e0ea5c5b0804b7163d5242d3584:log:87', 'hash': '0x6a42be63af2035f007fa398a27fe6c5bf5590e0ea5c5b0804b7163d5242d3584', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 5139.935031088553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0116a2ed7e3b6b9690a5', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:00:25.000Z'}}, {'blockNum': '0x7f0604', 'uniqueId': '0x6a42be63af2035f007fa398a27fe6c5bf5590e0ea5c5b0804b7163d5242d3584:log:89', 'hash': '0x6a42be63af2035f007fa398a27fe6c5bf5590e0ea5c5b0804b7163d5242d3584', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5139.934518431172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0116a2ebabf912828409', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:00:25.000Z'}}, {'blockNum': '0x7f0604', 'uniqueId': '0x6a42be63af2035f007fa398a27fe6c5bf5590e0ea5c5b0804b7163d5242d3584:log:91', 'hash': '0x6a42be63af2035f007fa398a27fe6c5bf5590e0ea5c5b0804b7163d5242d3584', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5139.934518431172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0116a2ebabf912828409', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:00:25.000Z'}}, {'blockNum': '0x7f060e', 'uniqueId': '0x5de67321646e22151bd1ce4757b7d241203af08a365ad8fce6292a05c353c047:log:6', 'hash': '0x5de67321646e22151bd1ce4757b7d241203af08a365ad8fce6292a05c353c047', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13810, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02eca43fe77bf0880000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:22.000Z'}}, {'blockNum': '0x7f060e', 'uniqueId': '0x0d79e65cd81b50ab2e673905ebc2a3c0ef60cb399e207a2ebba6bbae5e82cea6:log:54', 'hash': '0x0d79e65cd81b50ab2e673905ebc2a3c0ef60cb399e207a2ebba6bbae5e82cea6', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13323.22991448755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d240f529baa07ecb34', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:22.000Z'}}, {'blockNum': '0x7f060e', 'uniqueId': '0x0d79e65cd81b50ab2e673905ebc2a3c0ef60cb399e207a2ebba6bbae5e82cea6:log:58', 'hash': '0x0d79e65cd81b50ab2e673905ebc2a3c0ef60cb399e207a2ebba6bbae5e82cea6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 13323.22991448755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d240f529baa07ecb34', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:22.000Z'}}, {'blockNum': '0x7f060e', 'uniqueId': '0x4b7cb074743aef45772c18dd13e32ab682d79c3475742711caed0ec6284adb0f:log:103', 'hash': '0x4b7cb074743aef45772c18dd13e32ab682d79c3475742711caed0ec6284adb0f', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2782.5036204791363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x96d6feac7d614380f6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:22.000Z'}}, {'blockNum': '0x7f060e', 'uniqueId': '0x4b7cb074743aef45772c18dd13e32ab682d79c3475742711caed0ec6284adb0f:log:105', 'hash': '0x4b7cb074743aef45772c18dd13e32ab682d79c3475742711caed0ec6284adb0f', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2782.4466775225164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x96d6345f2c237930c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:22.000Z'}}, {'blockNum': '0x7f060e', 'uniqueId': '0x4b7cb074743aef45772c18dd13e32ab682d79c3475742711caed0ec6284adb0f:log:107', 'hash': '0x4b7cb074743aef45772c18dd13e32ab682d79c3475742711caed0ec6284adb0f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 2782.4466775225164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x96d6345f2c237930c6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:22.000Z'}}, {'blockNum': '0x7f0612', 'uniqueId': '0xc85aee05b45209a2302f33677850d753f92869cb58e3c8a5047e30076dd62e42:log:3', 'hash': '0xc85aee05b45209a2302f33677850d753f92869cb58e3c8a5047e30076dd62e42', 'from': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 123455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x1a24824b3760799c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:41.000Z'}}, {'blockNum': '0x7f0613', 'uniqueId': '0xfed0ed40f10e664884c71049175b30c2ac385925c17f9be7f6d622e53d056302:log:0', 'hash': '0xfed0ed40f10e664884c71049175b30c2ac385925c17f9be7f6d622e53d056302', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 13323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d23dc457b8814c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:46.000Z'}}, {'blockNum': '0x7f0614', 'uniqueId': '0xb3939484c5bbacfb6d09d26369f42a906ee18c690e07a78f34638ff305af323d:log:57', 'hash': '0xb3939484c5bbacfb6d09d26369f42a906ee18c690e07a78f34638ff305af323d', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12074.986801488432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x028e961ac7ee8848fe1a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:55.000Z'}}, {'blockNum': '0x7f0614', 'uniqueId': '0xb3939484c5bbacfb6d09d26369f42a906ee18c690e07a78f34638ff305af323d:log:61', 'hash': '0xb3939484c5bbacfb6d09d26369f42a906ee18c690e07a78f34638ff305af323d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 12074.986801488432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x028e961ac7ee8848fe1a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:55.000Z'}}, {'blockNum': '0x7f0614', 'uniqueId': '0x641bdd6af75413a4d29dab4f956813d1fc9f740b1962d16d77c11e6bb43ea7ad:log:75', 'hash': '0x641bdd6af75413a4d29dab4f956813d1fc9f740b1962d16d77c11e6bb43ea7ad', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2752.316273413058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x95340fac45c837c854', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:55.000Z'}}, {'blockNum': '0x7f0614', 'uniqueId': '0x641bdd6af75413a4d29dab4f956813d1fc9f740b1962d16d77c11e6bb43ea7ad:log:77', 'hash': '0x641bdd6af75413a4d29dab4f956813d1fc9f740b1962d16d77c11e6bb43ea7ad', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2752.260490343895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9533497ddde24b5e5a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:55.000Z'}}, {'blockNum': '0x7f0614', 'uniqueId': '0x641bdd6af75413a4d29dab4f956813d1fc9f740b1962d16d77c11e6bb43ea7ad:log:79', 'hash': '0x641bdd6af75413a4d29dab4f956813d1fc9f740b1962d16d77c11e6bb43ea7ad', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 2752.260490343895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9533497ddde24b5e5a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:03:55.000Z'}}, {'blockNum': '0x7f0617', 'uniqueId': '0x5fa97958200c8db470a32b1809155d401846a1f90d0adae5b4274ef1ec4cf43e:log:34', 'hash': '0x5fa97958200c8db470a32b1809155d401846a1f90d0adae5b4274ef1ec4cf43e', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 26916.183086141973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05b32113d4cbd59259a7', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:04:39.000Z'}}, {'blockNum': '0x7f0617', 'uniqueId': '0x5fa97958200c8db470a32b1809155d401846a1f90d0adae5b4274ef1ec4cf43e:log:38', 'hash': '0x5fa97958200c8db470a32b1809155d401846a1f90d0adae5b4274ef1ec4cf43e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 26916.183086141973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05b32113d4cbd59259a7', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:04:39.000Z'}}, {'blockNum': '0x7f0617', 'uniqueId': '0xdd92b48b1bb4c88a47771d16c6a47ab2bfb56770eb62debc05576a84bc65979c:log:44', 'hash': '0xdd92b48b1bb4c88a47771d16c6a47ab2bfb56770eb62debc05576a84bc65979c', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 5434.871030933334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01269ffca773fa5eb076', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:04:39.000Z'}}, {'blockNum': '0x7f0617', 'uniqueId': '0xdd92b48b1bb4c88a47771d16c6a47ab2bfb56770eb62debc05576a84bc65979c:log:46', 'hash': '0xdd92b48b1bb4c88a47771d16c6a47ab2bfb56770eb62debc05576a84bc65979c', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5434.871030933334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01269ffca773fa5eb076', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:04:39.000Z'}}, {'blockNum': '0x7f0617', 'uniqueId': '0xdd92b48b1bb4c88a47771d16c6a47ab2bfb56770eb62debc05576a84bc65979c:log:48', 'hash': '0xdd92b48b1bb4c88a47771d16c6a47ab2bfb56770eb62debc05576a84bc65979c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 5434.871030933334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01269ffca773fa5eb076', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:04:39.000Z'}}, {'blockNum': '0x7f061b', 'uniqueId': '0x9ecf6cf399c0384fccbf4fd48ddf3c1e652d34f586f63be00464a1129ddc7693:log:85', 'hash': '0x9ecf6cf399c0384fccbf4fd48ddf3c1e652d34f586f63be00464a1129ddc7693', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 26916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05b31e8960eb8e100000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:06:36.000Z'}}, {'blockNum': '0x7f062b', 'uniqueId': '0x1ba164bb2cf6252cc4522b81d99493f418a792eeb46e39f24efd4c243ecb5ab3:log:14', 'hash': '0x1ba164bb2cf6252cc4522b81d99493f418a792eeb46e39f24efd4c243ecb5ab3', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02108c6e5e493a97ffff', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:10:25.000Z'}}, {'blockNum': '0x7f062b', 'uniqueId': '0x1ba164bb2cf6252cc4522b81d99493f418a792eeb46e39f24efd4c243ecb5ab3:log:16', 'hash': '0x1ba164bb2cf6252cc4522b81d99493f418a792eeb46e39f24efd4c243ecb5ab3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 9750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02108c6e5e493a97ffff', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:10:25.000Z'}}, {'blockNum': '0x7f0635', 'uniqueId': '0x6c64525d6fb28cd90e7bdcd7cfc3c014b318d5949d810a92041974d8ec85851b:log:3', 'hash': '0x6c64525d6fb28cd90e7bdcd7cfc3c014b318d5949d810a92041974d8ec85851b', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d23dc457b8814c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:13:03.000Z'}}, {'blockNum': '0x7f0636', 'uniqueId': '0x28c8f56bd6c94a2a03227541740215c4948ef8ca56864dec9b83cc1c497b1610:log:0', 'hash': '0x28c8f56bd6c94a2a03227541740215c4948ef8ca56864dec9b83cc1c497b1610', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x05b31e8960eb8e100000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:13:17.000Z'}}, {'blockNum': '0x7f063a', 'uniqueId': '0x743bc1611cb63d855e41de8a343434daae7a474db8b97efeb9587aa536f7ba0c:log:3', 'hash': '0x743bc1611cb63d855e41de8a343434daae7a474db8b97efeb9587aa536f7ba0c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9878.313253012047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x021781229e11588c2503', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:13:47.000Z'}}, {'blockNum': '0x7f063a', 'uniqueId': '0x743bc1611cb63d855e41de8a343434daae7a474db8b97efeb9587aa536f7ba0c:log:5', 'hash': '0x743bc1611cb63d855e41de8a343434daae7a474db8b97efeb9587aa536f7ba0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 9878.313253012047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x021781229e11588c2503', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:13:47.000Z'}}, {'blockNum': '0x7f0648', 'uniqueId': '0xc9463dbd681cf9ce6b4c6170b40615495ac1cb761d49ada9ba274b1930031477:log:39', 'hash': '0xc9463dbd681cf9ce6b4c6170b40615495ac1cb761d49ada9ba274b1930031477', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8892.682926829268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01e212c4467f6f8ed44a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:26.000Z'}}, {'blockNum': '0x7f0648', 'uniqueId': '0xc9463dbd681cf9ce6b4c6170b40615495ac1cb761d49ada9ba274b1930031477:log:41', 'hash': '0xc9463dbd681cf9ce6b4c6170b40615495ac1cb761d49ada9ba274b1930031477', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 8892.682926829268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01e212c4467f6f8ed44a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:26.000Z'}}, {'blockNum': '0x7f0648', 'uniqueId': '0x6fcc318e3b6d895e69b15af8803dc5f838ab66a30cd4425e533c848eba534a31:log:63', 'hash': '0x6fcc318e3b6d895e69b15af8803dc5f838ab66a30cd4425e533c848eba534a31', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3562.8802507461146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xc124e5671ae0d37fa9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:26.000Z'}}, {'blockNum': '0x7f0648', 'uniqueId': '0x6fcc318e3b6d895e69b15af8803dc5f838ab66a30cd4425e533c848eba534a31:log:67', 'hash': '0x6fcc318e3b6d895e69b15af8803dc5f838ab66a30cd4425e533c848eba534a31', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3562.8802507461146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xc124e5671ae0d37fa9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:26.000Z'}}, {'blockNum': '0x7f0648', 'uniqueId': '0x6fcc318e3b6d895e69b15af8803dc5f838ab66a30cd4425e533c848eba534a31:log:68', 'hash': '0x6fcc318e3b6d895e69b15af8803dc5f838ab66a30cd4425e533c848eba534a31', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 3562.750249142935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xc123178b55ef180000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:26.000Z'}}, {'blockNum': '0x7f0649', 'uniqueId': '0x311d4342454c2724d89c86ac94f1e8ce2fa884610a02fe05c8a612cc51b4e017:log:31', 'hash': '0x311d4342454c2724d89c86ac94f1e8ce2fa884610a02fe05c8a612cc51b4e017', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15745.67901234568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03559331358babb161f9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:51.000Z'}}, {'blockNum': '0x7f0649', 'uniqueId': '0x311d4342454c2724d89c86ac94f1e8ce2fa884610a02fe05c8a612cc51b4e017:log:33', 'hash': '0x311d4342454c2724d89c86ac94f1e8ce2fa884610a02fe05c8a612cc51b4e017', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 15745.67901234568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03559331358babb161f9', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:51.000Z'}}, {'blockNum': '0x7f0649', 'uniqueId': '0x9e8282c51662d067d36f9abeda421703b48184e5f9dd3ea403c88c36324ac801:log:59', 'hash': '0x9e8282c51662d067d36f9abeda421703b48184e5f9dd3ea403c88c36324ac801', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5568.863795590328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x012de38294fc0704559b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:51.000Z'}}, {'blockNum': '0x7f0649', 'uniqueId': '0x9e8282c51662d067d36f9abeda421703b48184e5f9dd3ea403c88c36324ac801:log:63', 'hash': '0x9e8282c51662d067d36f9abeda421703b48184e5f9dd3ea403c88c36324ac801', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 5568.863795590328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x012de38294fc0704559b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:51.000Z'}}, {'blockNum': '0x7f0649', 'uniqueId': '0x9e8282c51662d067d36f9abeda421703b48184e5f9dd3ea403c88c36324ac801:log:65', 'hash': '0x9e8282c51662d067d36f9abeda421703b48184e5f9dd3ea403c88c36324ac801', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 5568.863795590328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x012de38294fc0704559b', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:17:51.000Z'}}, {'blockNum': '0x7f0650', 'uniqueId': '0x3540c95d5be9c1405186efdf0249b74f0dc4dafce5647c77343378c1f7f45153:log:7', 'hash': '0x3540c95d5be9c1405186efdf0249b74f0dc4dafce5647c77343378c1f7f45153', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 11186.6032222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025e6d4e496d47293000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:19:23.000Z'}}, {'blockNum': '0x7f0654', 'uniqueId': '0x6418ab43d07813be8dd0cafc807c60b8c8ffb336aaa481a98b1437d7f468010a:log:100', 'hash': '0x6418ab43d07813be8dd0cafc807c60b8c8ffb336aaa481a98b1437d7f468010a', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11186.6032222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025e6d4e496d47293000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:21:19.000Z'}}, {'blockNum': '0x7f0654', 'uniqueId': '0x6418ab43d07813be8dd0cafc807c60b8c8ffb336aaa481a98b1437d7f468010a:log:102', 'hash': '0x6418ab43d07813be8dd0cafc807c60b8c8ffb336aaa481a98b1437d7f468010a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11186.6032222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025e6d4e496d47293000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:21:19.000Z'}}, {'blockNum': '0x7f0654', 'uniqueId': '0xe51f8f07268390ddc15e0a78353c7433d420edc9ed3dd94a57493fa5b4648587:log:116', 'hash': '0xe51f8f07268390ddc15e0a78353c7433d420edc9ed3dd94a57493fa5b4648587', 'from': '0x09ba0009ba743a3dc41db8152d929c8129c944f9', 'to': '0x6d30337ef5d1be6c4b55c701040e750eefe7c22c', 'value': 145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x07dc477bc1cfa40000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:21:19.000Z'}}, {'blockNum': '0x7f0663', 'uniqueId': '0xdfdc464a90986bcca571a56b219b525611d77b41ade26f6c128f5357209e3e9c:log:15', 'hash': '0xdfdc464a90986bcca571a56b219b525611d77b41ade26f6c128f5357209e3e9c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 68450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e7eae93505b60480000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:24:25.000Z'}}, {'blockNum': '0x7f0685', 'uniqueId': '0x41b7407e6c6737cc55475c1a8ab932daeb375e1c17b6135520c1b7ffa43e8f10:log:13', 'hash': '0x41b7407e6c6737cc55475c1a8ab932daeb375e1c17b6135520c1b7ffa43e8f10', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 68450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0e7eae93505b60480000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:32:38.000Z'}}, {'blockNum': '0x7f06b8', 'uniqueId': '0x39ee008b362b687611cfd688656d58dbf9f4f0b66f7bac246a89a9b4dcb2bcc4:log:14', 'hash': '0x39ee008b362b687611cfd688656d58dbf9f4f0b66f7bac246a89a9b4dcb2bcc4', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4242.899862917162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xe602106179eb070d35', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:42:21.000Z'}}, {'blockNum': '0x7f06b8', 'uniqueId': '0x39ee008b362b687611cfd688656d58dbf9f4f0b66f7bac246a89a9b4dcb2bcc4:log:16', 'hash': '0x39ee008b362b687611cfd688656d58dbf9f4f0b66f7bac246a89a9b4dcb2bcc4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 4242.899862917162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xe602106179eb070d35', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:42:21.000Z'}}, {'blockNum': '0x7f06c0', 'uniqueId': '0xcf0514007b4a2adb6e0bd36db556a44f82bf0d376f1d9f9efc17421c64263b56:log:5', 'hash': '0xcf0514007b4a2adb6e0bd36db556a44f82bf0d376f1d9f9efc17421c64263b56', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 11587.5732484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027429e1fbd3553ba000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:44:00.000Z'}}, {'blockNum': '0x7f06c1', 'uniqueId': '0xea9e9d48c1efe14ebfb8171e7059b899a9a898630a2db499053a51f204bae9c3:log:7', 'hash': '0xea9e9d48c1efe14ebfb8171e7059b899a9a898630a2db499053a51f204bae9c3', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'value': 11535.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027155f8e5c748c50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:44:55.000Z'}}, {'blockNum': '0x7f06c3', 'uniqueId': '0x644541cc5c95e3ae1fc3fcefae4e6bd190f388108eaf999377593bbc036a9f04:log:0', 'hash': '0x644541cc5c95e3ae1fc3fcefae4e6bd190f388108eaf999377593bbc036a9f04', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb39c00f0ad385812d9053337541dd6eab58e29af', 'value': 919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x31d1afdeede7fc0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:45:49.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x9d9e26a1882184de6bf63ab165b9fa395b07d374f4abfd3c9ef531690b096434:log:49', 'hash': '0x9d9e26a1882184de6bf63ab165b9fa395b07d374f4abfd3c9ef531690b096434', 'from': '0x000049874ad28a0f9fb289a5db44ca0b70ed15bb', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11535.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027155f8e5c748c50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x9d9e26a1882184de6bf63ab165b9fa395b07d374f4abfd3c9ef531690b096434:log:51', 'hash': '0x9d9e26a1882184de6bf63ab165b9fa395b07d374f4abfd3c9ef531690b096434', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11535.41, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027155f8e5c748c50000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x5a775dbed99a6e8547176884105e5dd8a0cf6f8c4688c4270d77d5f1f322c2b8:log:63', 'hash': '0x5a775dbed99a6e8547176884105e5dd8a0cf6f8c4688c4270d77d5f1f322c2b8', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11587.5732484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027429e1fbd3553ba000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x5a775dbed99a6e8547176884105e5dd8a0cf6f8c4688c4270d77d5f1f322c2b8:log:65', 'hash': '0x5a775dbed99a6e8547176884105e5dd8a0cf6f8c4688c4270d77d5f1f322c2b8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11587.5732484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x027429e1fbd3553ba000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x95c6fb011d7e48ff2bf651cf3b5e902899ceb9615fc4e31ea95ad75655b397ea:log:100', 'hash': '0x95c6fb011d7e48ff2bf651cf3b5e902899ceb9615fc4e31ea95ad75655b397ea', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3943.344983157885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd5c4e7a971e87414c7', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x95c6fb011d7e48ff2bf651cf3b5e902899ceb9615fc4e31ea95ad75655b397ea:log:104', 'hash': '0x95c6fb011d7e48ff2bf651cf3b5e902899ceb9615fc4e31ea95ad75655b397ea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 3943.344983157885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd5c4e7a971e87414c7', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x95c6fb011d7e48ff2bf651cf3b5e902899ceb9615fc4e31ea95ad75655b397ea:log:105', 'hash': '0x95c6fb011d7e48ff2bf651cf3b5e902899ceb9615fc4e31ea95ad75655b397ea', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 3892.654502830296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xd3056ee6281c980000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x95f3f001b2afc9b1490013ea4e7dcc02a210e9b2bfaacfdc3172ba1b4be515f0:log:130', 'hash': '0x95f3f001b2afc9b1490013ea4e7dcc02a210e9b2bfaacfdc3172ba1b4be515f0', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2880.0259729736185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9c2063ab634f4835b1', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x95f3f001b2afc9b1490013ea4e7dcc02a210e9b2bfaacfdc3172ba1b4be515f0:log:134', 'hash': '0x95f3f001b2afc9b1490013ea4e7dcc02a210e9b2bfaacfdc3172ba1b4be515f0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'value': 2880.0259729736185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9c2063ab634f4835b1', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06c5', 'uniqueId': '0x95f3f001b2afc9b1490013ea4e7dcc02a210e9b2bfaacfdc3172ba1b4be515f0:log:136', 'hash': '0x95f3f001b2afc9b1490013ea4e7dcc02a210e9b2bfaacfdc3172ba1b4be515f0', 'from': '0x9ba6c9d09db964771cb4d526188f6af81e9bcf9e', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2880.0259729736185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9c2063ab634f4835b1', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:46:18.000Z'}}, {'blockNum': '0x7f06cd', 'uniqueId': '0xab89ef9dc5b1c0808579b72dcd6d4cca59d76dedaaa6de45bfcf8a49e2e601bd:log:2', 'hash': '0xab89ef9dc5b1c0808579b72dcd6d4cca59d76dedaaa6de45bfcf8a49e2e601bd', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 11174.7912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025dc9618dd199220000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:48:45.000Z'}}, {'blockNum': '0x7f06db', 'uniqueId': '0xe68c09ca641d48524e50a04c69c546f3eb1250d6d52fcfba3f9fe246484db0ca:log:19', 'hash': '0xe68c09ca641d48524e50a04c69c546f3eb1250d6d52fcfba3f9fe246484db0ca', 'from': '0x1bc36cc18327c816831d11c55247ca299fe40fdf', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 121065.067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x19a2f34f8e48d9f78000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:51:41.000Z'}}, {'blockNum': '0x7f06db', 'uniqueId': '0x0792fc2c47b8a342d9d3069110b62340bb6392924ed9443a5ca565f308d37ed7:log:22', 'hash': '0x0792fc2c47b8a342d9d3069110b62340bb6392924ed9443a5ca565f308d37ed7', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11174.7912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025dc9618dd199220000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:51:41.000Z'}}, {'blockNum': '0x7f06db', 'uniqueId': '0x0792fc2c47b8a342d9d3069110b62340bb6392924ed9443a5ca565f308d37ed7:log:24', 'hash': '0x0792fc2c47b8a342d9d3069110b62340bb6392924ed9443a5ca565f308d37ed7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11174.7912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025dc9618dd199220000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:51:41.000Z'}}, {'blockNum': '0x7f06dc', 'uniqueId': '0xd4410b406cbdd902a9c891361955095a64d0f782392596a22f2d7735d02dfca2:log:29', 'hash': '0xd4410b406cbdd902a9c891361955095a64d0f782392596a22f2d7735d02dfca2', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2313.5475580712955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7d6aec0e5d93fe8cd6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:51:46.000Z'}}, {'blockNum': '0x7f06dc', 'uniqueId': '0xd4410b406cbdd902a9c891361955095a64d0f782392596a22f2d7735d02dfca2:log:33', 'hash': '0xd4410b406cbdd902a9c891361955095a64d0f782392596a22f2d7735d02dfca2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 2313.5475580712955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7d6aec0e5d93fe8cd6', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:51:46.000Z'}}, {'blockNum': '0x7f06dc', 'uniqueId': '0xd4410b406cbdd902a9c891361955095a64d0f782392596a22f2d7735d02dfca2:log:34', 'hash': '0xd4410b406cbdd902a9c891361955095a64d0f782392596a22f2d7735d02dfca2', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'value': 2313.318432438075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x7d67be09d0eaed07e4', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T19:51:46.000Z'}}, {'blockNum': '0x7f0745', 'uniqueId': '0x37590eadd4ad2b66f0281c5e181c367de154d010a7a88591ebeef2006fab9855:log:1', 'hash': '0x37590eadd4ad2b66f0281c5e181c367de154d010a7a88591ebeef2006fab9855', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb39c00f0ad385812d9053337541dd6eab58e29af', 'value': 498982.536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x69a9e5c121382c740000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T20:13:33.000Z'}}, {'blockNum': '0x7f0755', 'uniqueId': '0xe5144253e4ef8679f5d1cb7e0475e3185a8f301297b5dd5ce429d5c702347914:log:15', 'hash': '0xe5144253e4ef8679f5d1cb7e0475e3185a8f301297b5dd5ce429d5c702347914', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6939.057937669528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01782ac60d9b16d97209', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T20:16:45.000Z'}}, {'blockNum': '0x7f0755', 'uniqueId': '0xe5144253e4ef8679f5d1cb7e0475e3185a8f301297b5dd5ce429d5c702347914:log:19', 'hash': '0xe5144253e4ef8679f5d1cb7e0475e3185a8f301297b5dd5ce429d5c702347914', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 6939.057937669528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x01782ac60d9b16d97209', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T20:16:45.000Z'}}, {'blockNum': '0x7f080a', 'uniqueId': '0xd7ebf8d8b7540f6fa1384cf765487ebd03af5cb42c1e876908c920ef8cb71d47:log:29', 'hash': '0xd7ebf8d8b7540f6fa1384cf765487ebd03af5cb42c1e876908c920ef8cb71d47', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4595.313051435249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xf91cc78944b25bb737', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T20:52:04.000Z'}}, {'blockNum': '0x7f080a', 'uniqueId': '0xd7ebf8d8b7540f6fa1384cf765487ebd03af5cb42c1e876908c920ef8cb71d47:log:33', 'hash': '0xd7ebf8d8b7540f6fa1384cf765487ebd03af5cb42c1e876908c920ef8cb71d47', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 4595.313051435249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0xf91cc78944b25bb737', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T20:52:04.000Z'}}, {'blockNum': '0x7f080c', 'uniqueId': '0xb9cc657c87e50b1f44fa8fcc6d65dd2ba59116a2898b3791dee2120b33e65251:log:18', 'hash': '0xb9cc657c87e50b1f44fa8fcc6d65dd2ba59116a2898b3791dee2120b33e65251', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 175.374671454887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0981cffe836d6086af', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T20:52:51.000Z'}}, {'blockNum': '0x7f080c', 'uniqueId': '0xb9cc657c87e50b1f44fa8fcc6d65dd2ba59116a2898b3791dee2120b33e65251:log:22', 'hash': '0xb9cc657c87e50b1f44fa8fcc6d65dd2ba59116a2898b3791dee2120b33e65251', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2e370943c7407d1f7bdfb13998c8f003b4883ca5', 'value': 175.374671454887, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0981cffe836d6086af', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T20:52:51.000Z'}}, {'blockNum': '0x7f089a', 'uniqueId': '0x06be9045fdbe52c92776d32ae230ab550b4d1f062adf9d73aa8d13e2bd6f609f:log:11', 'hash': '0x06be9045fdbe52c92776d32ae230ab550b4d1f062adf9d73aa8d13e2bd6f609f', 'from': '0x3e9d321504e4c4bcdadd10ed64f1744bb739aa48', 'to': '0xad5b536646f23f80bfb560db679e88c256c491dd', 'value': 5892, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x013f67ecfed899900000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T21:23:23.000Z'}}, {'blockNum': '0x7f08c2', 'uniqueId': '0x3bd6ecb18b23f9ba04afafa379fae1ea5a435f718ed289de3ec00c8785ad733b:log:0', 'hash': '0x3bd6ecb18b23f9ba04afafa379fae1ea5a435f718ed289de3ec00c8785ad733b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb39c00f0ad385812d9053337541dd6eab58e29af', 'value': 418.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x16afdaacb124fa0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T21:32:42.000Z'}}, {'blockNum': '0x7f0929', 'uniqueId': '0x862de8f3e7034865750a0727b4071839346065a9b7a930a753ca213e7aef078c:log:3', 'hash': '0x862de8f3e7034865750a0727b4071839346065a9b7a930a753ca213e7aef078c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 182792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x26b52c96c67a23200000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T21:56:33.000Z'}}, {'blockNum': '0x7f094c', 'uniqueId': '0x4ad4d3a2964458d6d1329ebc902897db77739630cb7e74db0aa63ec7c05f7910:log:18', 'hash': '0x4ad4d3a2964458d6d1329ebc902897db77739630cb7e74db0aa63ec7c05f7910', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 182792, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x26b52c96c67a23200000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T22:03:42.000Z'}}, {'blockNum': '0x7f0960', 'uniqueId': '0x5d677e3ea92268c0fee5f124d65c57cc99b159b5a9e760461b8d01a33bc18d14:log:76', 'hash': '0x5d677e3ea92268c0fee5f124d65c57cc99b159b5a9e760461b8d01a33bc18d14', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11534.370989104777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0271478d96dfc9352940', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T22:09:44.000Z'}}, {'blockNum': '0x7f0960', 'uniqueId': '0x5d677e3ea92268c0fee5f124d65c57cc99b159b5a9e760461b8d01a33bc18d14:log:78', 'hash': '0x5d677e3ea92268c0fee5f124d65c57cc99b159b5a9e760461b8d01a33bc18d14', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 11534.370989104777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0271478d96dfc9352940', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T22:09:44.000Z'}}, {'blockNum': '0x7f09e3', 'uniqueId': '0x426567eed5234eab249f8a6adf50081f475b4d041c055b67c9e89fb83b0eefbe:log:0', 'hash': '0x426567eed5234eab249f8a6adf50081f475b4d041c055b67c9e89fb83b0eefbe', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 108089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x16e38434d3ef1d440000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T22:40:56.000Z'}}, {'blockNum': '0x7f09f1', 'uniqueId': '0x7fa4a92426c9bdc6822ba64bf4d3ab9002b75a86b27b43e4c75b8ceb38b5a79d:log:14', 'hash': '0x7fa4a92426c9bdc6822ba64bf4d3ab9002b75a86b27b43e4c75b8ceb38b5a79d', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x16e38434d3ef1d440000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T22:43:05.000Z'}}, {'blockNum': '0x7f0a1a', 'uniqueId': '0x09e6228333870fb5c7e35b02e053a163b0324dfdd7a335fa48cb2bd398a3b786:log:0', 'hash': '0x09e6228333870fb5c7e35b02e053a163b0324dfdd7a335fa48cb2bd398a3b786', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x568b2fea968fd14c0eba5ad4d5d18ffef22c5404', 'value': 14249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x03047099358ffd040000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T22:54:56.000Z'}}, {'blockNum': '0x7f0a1b', 'uniqueId': '0xfc5322c8052cdc8258a23d38401ccb62a0440e7efaf27cdf77e32346d3f95083:log:2', 'hash': '0xfc5322c8052cdc8258a23d38401ccb62a0440e7efaf27cdf77e32346d3f95083', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x192368948a68adb223096ef883b68c0ba0a96424', 'value': 16526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x037fe052417fd9780000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T22:55:13.000Z'}}, {'blockNum': '0x7f0a2f', 'uniqueId': '0xd7bf801d7a8474167e167040fbcd03370d0c9e1747133c5495a2a49660568ddc:log:49', 'hash': '0xd7bf801d7a8474167e167040fbcd03370d0c9e1747133c5495a2a49660568ddc', 'from': '0xded508f385808aa160a7e734d04644578b4037d8', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 113472.32931644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x180758e8872295e57000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T23:00:32.000Z'}}, {'blockNum': '0x7f0a52', 'uniqueId': '0x66e74e1c2a72e433b48dcfd17896081edfbea926c5b56d4288de472a885533fb:log:11', 'hash': '0x66e74e1c2a72e433b48dcfd17896081edfbea926c5b56d4288de472a885533fb', 'from': '0x3fd72f56a61081a1c94b771480019f6d65ebcd8c', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 113266.70855798, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x17fc3358d8bdbf331800', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T23:05:26.000Z'}}, {'blockNum': '0x7f0afe', 'uniqueId': '0x18976a50c33d52a8ea316c975d8dbae4815b057d76f2b0ed9916c90ade34a15d:log:21', 'hash': '0x18976a50c33d52a8ea316c975d8dbae4815b057d76f2b0ed9916c90ade34a15d', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12660.817169551336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02ae582257d299f45f35', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T23:43:16.000Z'}}, {'blockNum': '0x7f0afe', 'uniqueId': '0x18976a50c33d52a8ea316c975d8dbae4815b057d76f2b0ed9916c90ade34a15d:log:25', 'hash': '0x18976a50c33d52a8ea316c975d8dbae4815b057d76f2b0ed9916c90ade34a15d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 12660.817169551336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02ae582257d299f45f35', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-10T23:43:16.000Z'}}, {'blockNum': '0x7f0b8b', 'uniqueId': '0x3f1db0e0f069c2c149f99abb1d49f38da7f1a71081b0c2d9f12c4800617fa3d9:log:16', 'hash': '0x3f1db0e0f069c2c149f99abb1d49f38da7f1a71081b0c2d9f12c4800617fa3d9', 'from': '0x00e015bce5041fe4a26ada2dced50aed9a9ae40e', 'to': '0x5e89f6330b4248f882ecd88e2aa9bde8abbe4f51', 'value': 19899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0436ba197e945a0c0000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:16:09.000Z'}}, {'blockNum': '0x7f0bd5', 'uniqueId': '0x514933b4aab60fd12b6d516fbc714189bae06c01b0d23ecabfe49ef46a8687e5:log:105', 'hash': '0x514933b4aab60fd12b6d516fbc714189bae06c01b0d23ecabfe49ef46a8687e5', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5699.239292404644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0134f4d56493ff750d26', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:30:44.000Z'}}, {'blockNum': '0x7f0bd5', 'uniqueId': '0x514933b4aab60fd12b6d516fbc714189bae06c01b0d23ecabfe49ef46a8687e5:log:109', 'hash': '0x514933b4aab60fd12b6d516fbc714189bae06c01b0d23ecabfe49ef46a8687e5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 5699.239292404644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0134f4d56493ff750d26', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:30:44.000Z'}}, {'blockNum': '0x7f0bd7', 'uniqueId': '0x9f5398fb0d2a6d7049cd6ab74edae180cac16e473e08508387359f523f2a4756:log:55', 'hash': '0x9f5398fb0d2a6d7049cd6ab74edae180cac16e473e08508387359f523f2a4756', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2506.2163903468163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x87dcbd408453b7cca8', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:31:03.000Z'}}, {'blockNum': '0x7f0bd7', 'uniqueId': '0x9f5398fb0d2a6d7049cd6ab74edae180cac16e473e08508387359f523f2a4756:log:57', 'hash': '0x9f5398fb0d2a6d7049cd6ab74edae180cac16e473e08508387359f523f2a4756', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2506.2162689586307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x87dcbcd21d70080000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:31:03.000Z'}}, {'blockNum': '0x7f0bd7', 'uniqueId': '0x9f5398fb0d2a6d7049cd6ab74edae180cac16e473e08508387359f523f2a4756:log:59', 'hash': '0x9f5398fb0d2a6d7049cd6ab74edae180cac16e473e08508387359f523f2a4756', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 2506.2162689586307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x87dcbcd21d70080000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:31:03.000Z'}}, {'blockNum': '0x7f0bdb', 'uniqueId': '0x994c35ede573c8193f92a04d238bb0ac4160e027616987fc72bccb1793ec3907:log:87', 'hash': '0x994c35ede573c8193f92a04d238bb0ac4160e027616987fc72bccb1793ec3907', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5680.909869817683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0133f67633d9459e5fc7', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:31:59.000Z'}}, {'blockNum': '0x7f0bdb', 'uniqueId': '0x994c35ede573c8193f92a04d238bb0ac4160e027616987fc72bccb1793ec3907:log:91', 'hash': '0x994c35ede573c8193f92a04d238bb0ac4160e027616987fc72bccb1793ec3907', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 5680.909869817683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0133f67633d9459e5fc7', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:31:59.000Z'}}, {'blockNum': '0x7f0bdc', 'uniqueId': '0xbbd4269f3a22422606220c404a94aa98172432077dc64da6b19bacab14978728:log:102', 'hash': '0xbbd4269f3a22422606220c404a94aa98172432077dc64da6b19bacab14978728', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0133e9d5b211fac00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:32:26.000Z'}}, {'blockNum': '0x7f0be2', 'uniqueId': '0x83b8f5c7a01385b802da3e3abb58a734549478e110a173aa9aede0037f66ea0a:log:76', 'hash': '0x83b8f5c7a01385b802da3e3abb58a734549478e110a173aa9aede0037f66ea0a', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5646.085917890783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0132132eac138f7386ce', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:34:09.000Z'}}, {'blockNum': '0x7f0be2', 'uniqueId': '0x83b8f5c7a01385b802da3e3abb58a734549478e110a173aa9aede0037f66ea0a:log:80', 'hash': '0x83b8f5c7a01385b802da3e3abb58a734549478e110a173aa9aede0037f66ea0a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 5646.085917890783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x0132132eac138f7386ce', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:34:09.000Z'}}, {'blockNum': '0x7f0be3', 'uniqueId': '0x0ccabcfef670d9c447e6a3bf881cdd5ab3f3d1036141a7709fe9014914494a80:log:55', 'hash': '0x0ccabcfef670d9c447e6a3bf881cdd5ab3f3d1036141a7709fe9014914494a80', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2425.3610834138876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x837aa57f404d535c18', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:34:22.000Z'}}, {'blockNum': '0x7f0be3', 'uniqueId': '0x0ccabcfef670d9c447e6a3bf881cdd5ab3f3d1036141a7709fe9014914494a80:log:57', 'hash': '0x0ccabcfef670d9c447e6a3bf881cdd5ab3f3d1036141a7709fe9014914494a80', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2425.3609691785227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x837aa5175acef80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:34:22.000Z'}}, {'blockNum': '0x7f0be3', 'uniqueId': '0x0ccabcfef670d9c447e6a3bf881cdd5ab3f3d1036141a7709fe9014914494a80:log:59', 'hash': '0x0ccabcfef670d9c447e6a3bf881cdd5ab3f3d1036141a7709fe9014914494a80', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 2425.3609691785227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x837aa5175acef80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:34:22.000Z'}}, {'blockNum': '0x7f0bf1', 'uniqueId': '0x4de9e38e8b8609a251eb77ddedce68c20446b36fa0dcb74f3add1122bf9918a5:log:48', 'hash': '0x4de9e38e8b8609a251eb77ddedce68c20446b36fa0dcb74f3add1122bf9918a5', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10101.693487118917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02239d28a17800190652', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:37:08.000Z'}}, {'blockNum': '0x7f0bf1', 'uniqueId': '0x4de9e38e8b8609a251eb77ddedce68c20446b36fa0dcb74f3add1122bf9918a5:log:52', 'hash': '0x4de9e38e8b8609a251eb77ddedce68c20446b36fa0dcb74f3add1122bf9918a5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 10101.693487118917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02239d28a17800190652', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:37:08.000Z'}}, {'blockNum': '0x7f0bf3', 'uniqueId': '0x56b166c6b84ec3b160a9be7ac46f6841332e306c72cc5bd4a05a0902ce60f1d4:log:76', 'hash': '0x56b166c6b84ec3b160a9be7ac46f6841332e306c72cc5bd4a05a0902ce60f1d4', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0xea161ab775be8374c9aed9e394d5b8711dcfc55f', 'value': 2236.967722081428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x794429d345263be28a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:37:36.000Z'}}, {'blockNum': '0x7f0bf3', 'uniqueId': '0x56b166c6b84ec3b160a9be7ac46f6841332e306c72cc5bd4a05a0902ce60f1d4:log:79', 'hash': '0x56b166c6b84ec3b160a9be7ac46f6841332e306c72cc5bd4a05a0902ce60f1d4', 'from': '0xea161ab775be8374c9aed9e394d5b8711dcfc55f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2236.967722081428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x794429d345263be28a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:37:36.000Z'}}, {'blockNum': '0x7f0bf3', 'uniqueId': '0x56b166c6b84ec3b160a9be7ac46f6841332e306c72cc5bd4a05a0902ce60f1d4:log:81', 'hash': '0x56b166c6b84ec3b160a9be7ac46f6841332e306c72cc5bd4a05a0902ce60f1d4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 2236.967722081428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x794429d345263be28a', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:37:36.000Z'}}, {'blockNum': '0x7f0c0d', 'uniqueId': '0x4c1b14cefd3010790c35536e3ea784b45fb6318d9a6ffcbbf1c58267755339a5:log:18', 'hash': '0x4c1b14cefd3010790c35536e3ea784b45fb6318d9a6ffcbbf1c58267755339a5', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13341.922125395728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d3445d3c83b0fb6876', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:42:09.000Z'}}, {'blockNum': '0x7f0c0d', 'uniqueId': '0x4c1b14cefd3010790c35536e3ea784b45fb6318d9a6ffcbbf1c58267755339a5:log:22', 'hash': '0x4c1b14cefd3010790c35536e3ea784b45fb6318d9a6ffcbbf1c58267755339a5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 13341.922125395728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d3445d3c83b0fb6876', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:42:09.000Z'}}, {'blockNum': '0x7f0c0f', 'uniqueId': '0x2fd6418e2a50be5daf87f10fc3a39a3068aba4c2c3aadea1beb5f7a806112936:log:6', 'hash': '0x2fd6418e2a50be5daf87f10fc3a39a3068aba4c2c3aadea1beb5f7a806112936', 'from': '0xd91ff16ef92568fc27f466c3c5613e43313ab1dc', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 2748.682409937299, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9501a198b1c551ea31', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:42:20.000Z'}}, {'blockNum': '0x7f0c0f', 'uniqueId': '0x2fd6418e2a50be5daf87f10fc3a39a3068aba4c2c3aadea1beb5f7a806112936:log:8', 'hash': '0x2fd6418e2a50be5daf87f10fc3a39a3068aba4c2c3aadea1beb5f7a806112936', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2748.6822618741357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9501a1120821180000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:42:20.000Z'}}, {'blockNum': '0x7f0c0f', 'uniqueId': '0x2fd6418e2a50be5daf87f10fc3a39a3068aba4c2c3aadea1beb5f7a806112936:log:10', 'hash': '0x2fd6418e2a50be5daf87f10fc3a39a3068aba4c2c3aadea1beb5f7a806112936', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 2748.6822618741357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x9501a1120821180000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:42:20.000Z'}}, {'blockNum': '0x7f0c10', 'uniqueId': '0x0ba7e463cca0ee79ea8f4dec6e9559327d73f1ee182e1722e6a29ee7c954c226:log:31', 'hash': '0x0ba7e463cca0ee79ea8f4dec6e9559327d73f1ee182e1722e6a29ee7c954c226', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 13342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d34571e70dedb80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:42:26.000Z'}}, {'blockNum': '0x7f0c10', 'uniqueId': '0xb870f96bfb6af8c2ed1c1edcb0d042125ff0bf294c0c68f8c719b3b5342c0cd5:log:61', 'hash': '0xb870f96bfb6af8c2ed1c1edcb0d042125ff0bf294c0c68f8c719b3b5342c0cd5', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5516.891004394067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x012b123e22c150600461', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:42:26.000Z'}}, {'blockNum': '0x7f0c10', 'uniqueId': '0xb870f96bfb6af8c2ed1c1edcb0d042125ff0bf294c0c68f8c719b3b5342c0cd5:log:65', 'hash': '0xb870f96bfb6af8c2ed1c1edcb0d042125ff0bf294c0c68f8c719b3b5342c0cd5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 5516.891004394067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x012b123e22c150600461', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:42:26.000Z'}}, {'blockNum': '0x7f0c11', 'uniqueId': '0x8e3f40668c7f27cbadb6a3bbcfe2e1d825afe1418781790b3ff7756dde3499ee:log:76', 'hash': '0x8e3f40668c7f27cbadb6a3bbcfe2e1d825afe1418781790b3ff7756dde3499ee', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x012b05e0a6fabeb00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:42:53.000Z'}}, {'blockNum': '0x7f0c1b', 'uniqueId': '0xedf5582558a8330b73032b184bb3d11ebe9ed5e34c59820ed81904deb18da817:log:9', 'hash': '0xedf5582558a8330b73032b184bb3d11ebe9ed5e34c59820ed81904deb18da817', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8f8a8969a8f8b1319ef17a14834cecc25f30f01d', 'value': 85944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x12330898692c2be00000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:45:17.000Z'}}, {'blockNum': '0x7f0c36', 'uniqueId': '0xc2462834b141da36a03bbf60497bf2d24d203bb582f5734ee59320f833e5fada:log:4', 'hash': '0xc2462834b141da36a03bbf60497bf2d24d203bb582f5734ee59320f833e5fada', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13342, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x02d34571e70dedb80000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:53:00.000Z'}}, {'blockNum': '0x7f0c39', 'uniqueId': '0x070e151d84052b98eb66d6ac514891ba18eeb8acaa0447d57fec1978f076d594:log:2', 'hash': '0x070e151d84052b98eb66d6ac514891ba18eeb8acaa0447d57fec1978f076d594', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x025eefb6590cb9700000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T00:53:15.000Z'}}, {'blockNum': '0x7f0c80', 'uniqueId': '0x9a5ca32143e21a33747d1182ab620b50f2797adf7aedf70ef3495d6a44158978:log:3', 'hash': '0x9a5ca32143e21a33747d1182ab620b50f2797adf7aedf70ef3495d6a44158978', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15741.463414634147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x035558b065c31bd6a257', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T01:05:47.000Z'}}, {'blockNum': '0x7f0c80', 'uniqueId': '0x9a5ca32143e21a33747d1182ab620b50f2797adf7aedf70ef3495d6a44158978:log:5', 'hash': '0x9a5ca32143e21a33747d1182ab620b50f2797adf7aedf70ef3495d6a44158978', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 15741.463414634147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x035558b065c31bd6a257', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T01:05:47.000Z'}}, {'blockNum': '0x7f0cc5', 'uniqueId': '0xc2141a7c0ca4a0d01ec76a87b96f09558f36e9244be878497392a751dbbe5a0c:log:70', 'hash': '0xc2141a7c0ca4a0d01ec76a87b96f09558f36e9244be878497392a751dbbe5a0c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x999363748e495c3a09dfacadd7afc0adc0e982d9', 'value': 84055.046784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RCN', 'category': 'erc20', 'rawContract': {'value': '0x11cca21a7b52d8280000', 'address': '0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-11T01:21:36.000Z'}}]}}
Number of returned transfers:  525
Answer is complete
 
symbol             VIA
group              CPI
date        2019-08-16
hour             16:00
exchange       binance
Name: 1036, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2019-08-16 16:00:00 2019-08-16 04:00:00 2019-08-17 04:00:00
Unix timestamps:  1565920800.0 1566007200.0
Hex Block Numbers:  0x7f8b19 0x7fa449
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ONG
group              CPI
date        2019-08-19
hour             16:00
exchange       binance
Name: 1037, dtype: object
HERE
{'ontology': ''}
No contract for ethereum specified
 Symbol: ONG, Contract: 
Datetime timestamps:  2019-08-19 16:00:00 2019-08-19 04:00:00 2019-08-20 04:00:00
Unix timestamps:  1566180000.0 1566266400.0
Hex Block Numbers:  0x7fd6c1 0x7fefc4
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIB
group              CPI
date        2019-08-21
hour             18:00
exchange       binance
Name: 1038, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2019-08-21 18:00:00 2019-08-21 06:00:00 2019-08-22 06:00:00
Unix timestamps:  1566360000.0 1566446400.0
Hex Block Numbers:  0x800aec 0x8023fa
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x801136', 'uniqueId': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc:log:72', 'hash': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15450.667732554415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03459516999cb8078c63', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T10:01:06.000Z'}}, {'blockNum': '0x801136', 'uniqueId': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc:log:76', 'hash': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 15450.667732554415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03459516999cb8078c63', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T10:01:06.000Z'}}, {'blockNum': '0x8013fa', 'uniqueId': '0xeb52eda3b7bf3dc6906d79f04b3d7308ace9ff3901a6edf6104a3175c4f36e48:log:27', 'hash': '0xeb52eda3b7bf3dc6906d79f04b3d7308ace9ff3901a6edf6104a3175c4f36e48', 'from': '0x4fdfc48853f2be633e649d0d6e68847583c7021c', 'to': '0xeae051d6b2fbee50e1b530cb46faa9b9f1ccd629', 'value': 12321.254485100213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x029befc1596502be855e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T12:44:18.000Z'}}, {'blockNum': '0x801467', 'uniqueId': '0x32796b686dd768d909f34e483688bef138fc680c00e26c452070a7711730f2ad:log:74', 'hash': '0x32796b686dd768d909f34e483688bef138fc680c00e26c452070a7711730f2ad', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:04:14.000Z'}}, {'blockNum': '0x80146b', 'uniqueId': '0xebd8e56010fab780cd2bb3012f8d83b6abddfdd12d31926d34c22bb50123bfa0:log:111', 'hash': '0xebd8e56010fab780cd2bb3012f8d83b6abddfdd12d31926d34c22bb50123bfa0', 'from': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'to': '0x7d7ee7e4bb24a05c6da953dd51ca9625fae49ed1', 'value': 20118.90768765859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0442a5ee8b6255d769e5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:05:25.000Z'}}, {'blockNum': '0x801477', 'uniqueId': '0xf71a915a9fa976cf2a476a25c6505a42e33c90da8fb5836fd745f982b6a28486:log:7', 'hash': '0xf71a915a9fa976cf2a476a25c6505a42e33c90da8fb5836fd745f982b6a28486', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'value': 19928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04384c8e30ee50600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:08:15.000Z'}}, {'blockNum': '0x801648', 'uniqueId': '0x8e4178fdaebb3b2ad6e9cbbc057d3e87a7c63b558c8c58f02338f7c43c154a8d:log:1', 'hash': '0x8e4178fdaebb3b2ad6e9cbbc057d3e87a7c63b558c8c58f02338f7c43c154a8d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1876630571b6aca916b03854e1068baca4ca4dde', 'value': 6484.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f81a866803d1f0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T14:58:44.000Z'}}, {'blockNum': '0x8017eb', 'uniqueId': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f:log:87', 'hash': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:30:43.000Z'}}, {'blockNum': '0x8017eb', 'uniqueId': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f:log:91', 'hash': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:30:43.000Z'}}, {'blockNum': '0x8017ed', 'uniqueId': '0x2751b73aef3672359525af49cabba1cce0cdaa8d6a66348cd2fafcf5f3bcf3f0:log:27', 'hash': '0x2751b73aef3672359525af49cabba1cce0cdaa8d6a66348cd2fafcf5f3bcf3f0', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:31:21.000Z'}}, {'blockNum': '0x8017f1', 'uniqueId': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7:log:146', 'hash': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5733.27142830672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136cd1fd3defe740b28', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:32:55.000Z'}}, {'blockNum': '0x8017f1', 'uniqueId': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7:log:150', 'hash': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 5733.27142830672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136cd1fd3defe740b28', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:32:55.000Z'}}, {'blockNum': '0x8017f4', 'uniqueId': '0x539bff25bfb56e2daa9fcd11a62fc9bf9368b2fd5efe5de15056b6650e805823:log:93', 'hash': '0x539bff25bfb56e2daa9fcd11a62fc9bf9368b2fd5efe5de15056b6650e805823', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136c95b8543a2740000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:33:23.000Z'}}, {'blockNum': '0x801800', 'uniqueId': '0xd3b4079803364df17c394bf0a462eaac84a80ac1a36dd42ef47d310eb0f5d156:log:14', 'hash': '0xd3b4079803364df17c394bf0a462eaac84a80ac1a36dd42ef47d310eb0f5d156', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:36:36.000Z'}}, {'blockNum': '0x80181b', 'uniqueId': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250:log:79', 'hash': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11370.810185051509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026869b0e22b84f4bb54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:08.000Z'}}, {'blockNum': '0x80181b', 'uniqueId': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250:log:83', 'hash': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 11370.810185051509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026869b0e22b84f4bb54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:08.000Z'}}, {'blockNum': '0x80181f', 'uniqueId': '0x3e08c5cb3695bc5bcfbcc3e589a811257c739cdec278feda38e6f8b55651c660:log:106', 'hash': '0x3e08c5cb3695bc5bcfbcc3e589a811257c739cdec278feda38e6f8b55651c660', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02685e7287287f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:50.000Z'}}, {'blockNum': '0x801833', 'uniqueId': '0x53afefebdc731e6d88e473897f1415e3f19a9b6a1ad4df0bda35825b2635add6:log:24', 'hash': '0x53afefebdc731e6d88e473897f1415e3f19a9b6a1ad4df0bda35825b2635add6', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x039f27ce0c6c21dc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:47:23.000Z'}}, {'blockNum': '0x80185a', 'uniqueId': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb:log:88', 'hash': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11262.53923172772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02628b212fc41f8ded8a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:56:37.000Z'}}, {'blockNum': '0x80185a', 'uniqueId': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb:log:92', 'hash': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 11262.53923172772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02628b212fc41f8ded8a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:56:37.000Z'}}, {'blockNum': '0x80185d', 'uniqueId': '0xfa4ba4c86059525ebe71d9e5933acf647707d2a11b5515e13743a534e419ca2e:log:117', 'hash': '0xfa4ba4c86059525ebe71d9e5933acf647707d2a11b5515e13743a534e419ca2e', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026283a5735de1380000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:57:18.000Z'}}, {'blockNum': '0x801915', 'uniqueId': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1:log:14', 'hash': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11136.192841754739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025bb1b8a37f5f16a7fa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:37:50.000Z'}}, {'blockNum': '0x801915', 'uniqueId': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1:log:18', 'hash': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 11136.192841754739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025bb1b8a37f5f16a7fa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:37:50.000Z'}}, {'blockNum': '0x80191a', 'uniqueId': '0x281f5bd01f3588c2881635f15a36dbce1e9a454776c6db7afe78da8b36166437:log:4', 'hash': '0x281f5bd01f3588c2881635f15a36dbce1e9a454776c6db7afe78da8b36166437', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025baf0b86f17e000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:38:08.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0x81853b630d2abbc784dc233d103a0535353a956f93212f84d311f5002ae1fe19:log:5', 'hash': '0x81853b630d2abbc784dc233d103a0535353a956f93212f84d311f5002ae1fe19', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 20586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045bf823cab28f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8:log:41', 'hash': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8:log:45', 'hash': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355:log:56', 'hash': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355:log:60', 'hash': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c:log:87', 'hash': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33870.74030911024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x072c22f2684334360117', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c:log:91', 'hash': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 33870.74030911024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x072c22f2684334360117', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x58233ca3fea49b11b95e71fb35adfe763895899ba3e081c86306db6d5f7abebb:log:1', 'hash': '0x58233ca3fea49b11b95e71fb35adfe763895899ba3e081c86306db6d5f7abebb', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca:log:62', 'hash': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca:log:64', 'hash': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801984', 'uniqueId': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e:log:111', 'hash': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6251.3567305123715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0152e300914b2538c57a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:08.000Z'}}, {'blockNum': '0x801984', 'uniqueId': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e:log:115', 'hash': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 6251.3567305123715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0152e300914b2538c57a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:08.000Z'}}, {'blockNum': '0x801985', 'uniqueId': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91:log:21', 'hash': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:29.000Z'}}, {'blockNum': '0x801985', 'uniqueId': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91:log:25', 'hash': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:29.000Z'}}, {'blockNum': '0x801989', 'uniqueId': '0x034de49815fa919bc66ac1e6e2a43a2371be63571b52fce9935d701ea8350f31:log:5', 'hash': '0x034de49815fa919bc66ac1e6e2a43a2371be63571b52fce9935d701ea8350f31', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:02:13.000Z'}}, {'blockNum': '0x80198a', 'uniqueId': '0x59be7b9280a3484668323f1d477f188bd03a5960bc69ffd37270436ba24bbae1:log:0', 'hash': '0x59be7b9280a3484668323f1d477f188bd03a5960bc69ffd37270436ba24bbae1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'value': 5930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x014177481d8372680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:02:17.000Z'}}, {'blockNum': '0x801990', 'uniqueId': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175:log:11', 'hash': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1023.926950635287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3781d7489af5358fc5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:03:22.000Z'}}, {'blockNum': '0x801990', 'uniqueId': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175:log:15', 'hash': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 1023.926950635287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3781d7489af5358fc5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:03:22.000Z'}}, {'blockNum': '0x801993', 'uniqueId': '0x8aac85ba992630ef6e9d8e4a076063e9cf81fe01e4af76dcf15a8a29e1a4abfc:log:18', 'hash': '0x8aac85ba992630ef6e9d8e4a076063e9cf81fe01e4af76dcf15a8a29e1a4abfc', 'from': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 21865.37386922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d656fe916800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:04:23.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5:log:61', 'hash': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5:log:65', 'hash': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93:log:76', 'hash': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 29830.81939708991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065121c81f32c856c085', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93:log:80', 'hash': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 29830.81939708991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065121c81f32c856c085', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8:log:83', 'hash': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8:log:85', 'hash': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0x70d638344a7a1f4d66a78eac4d0df0d2d0bedec3d130b4683f4a0479e72f8d3c:log:116', 'hash': '0x70d638344a7a1f4d66a78eac4d0df0d2d0bedec3d130b4683f4a0479e72f8d3c', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 29830, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0651166909e2ee580000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x8019a0', 'uniqueId': '0x672e673884ee989a996995bb2220f57f0dc5e38a5f15eca1843e942e8a6b2ef6:log:5', 'hash': '0x672e673884ee989a996995bb2220f57f0dc5e38a5f15eca1843e942e8a6b2ef6', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045bf823cab28f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:07:02.000Z'}}, {'blockNum': '0x8019a0', 'uniqueId': '0xc475fb3d654c5da8737e98197c93448eaeac11f7ade9a6c6a417ebfa847f4f2c:log:6', 'hash': '0xc475fb3d654c5da8737e98197c93448eaeac11f7ade9a6c6a417ebfa847f4f2c', 'from': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x014177481d8372680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:07:02.000Z'}}, {'blockNum': '0x8019a8', 'uniqueId': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27:log:78', 'hash': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10021.857923497268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021f4937bb57808f09ca', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:10.000Z'}}, {'blockNum': '0x8019a8', 'uniqueId': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27:log:80', 'hash': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 10021.857923497268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021f4937bb57808f09ca', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:10.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0x06553aa38fa6d529d9f94dde985efbd5461dd47d9fa4610d2577b9adea2989d8:log:10', 'hash': '0x06553aa38fa6d529d9f94dde985efbd5461dd47d9fa4610d2577b9adea2989d8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 3890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd2e09835e58d880000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d:log:85', 'hash': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 29028.248587570622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06259fdfd424998850fe', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d:log:87', 'hash': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 29028.248587570622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06259fdfd424998850fe', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019cc', 'uniqueId': '0x025c22125137e56e29ad301c98edd26db95efe429b001164ee1b237ba0e5b351:log:1', 'hash': '0x025c22125137e56e29ad301c98edd26db95efe429b001164ee1b237ba0e5b351', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 12570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a96bcaf14924280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:37.000Z'}}, {'blockNum': '0x8019ce', 'uniqueId': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3:log:124', 'hash': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3', 'from': '0xda7ea1e36b2de20afb5a0457e8204d4db19a0fc6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5878.359064379703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013eaa9ea82c15cb4fab', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:59.000Z'}}, {'blockNum': '0x8019ce', 'uniqueId': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3:log:126', 'hash': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5878.359064379703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013eaa9ea82c15cb4fab', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:59.000Z'}}, {'blockNum': '0x8019d6', 'uniqueId': '0x4bcc5a5dda2e351949e5fb353fbc066779b02b70ac2bcf8564d76fabadac6ee8:log:6', 'hash': '0x4bcc5a5dda2e351949e5fb353fbc066779b02b70ac2bcf8564d76fabadac6ee8', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd2e09835e58d880000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:03.000Z'}}, {'blockNum': '0x8019d6', 'uniqueId': '0xc888e454ffdc2b2804fcc99d83c0c9dbaad1973f51d03691966cba2b34397b38:log:7', 'hash': '0xc888e454ffdc2b2804fcc99d83c0c9dbaad1973f51d03691966cba2b34397b38', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:03.000Z'}}, {'blockNum': '0x8019dd', 'uniqueId': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b:log:126', 'hash': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13796.531791907515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ebe9573794e6e383b3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:59.000Z'}}, {'blockNum': '0x8019dd', 'uniqueId': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b:log:128', 'hash': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 13796.531791907515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ebe9573794e6e383b3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:59.000Z'}}, {'blockNum': '0x8019e3', 'uniqueId': '0x4182b592fdf5e7e58f550423c6acd55a1350b1f73f371fc1e3c02d9f542e7599:log:5', 'hash': '0x4182b592fdf5e7e58f550423c6acd55a1350b1f73f371fc1e3c02d9f542e7599', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xccf499e50baa6f2e67b47b979c96214d4da09a17', 'value': 1766.044433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5fbcca36e8b9261000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:20:04.000Z'}}, {'blockNum': '0x8019ee', 'uniqueId': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313:log:88', 'hash': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4294.736842105263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe8d17253675b1af286', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:23:51.000Z'}}, {'blockNum': '0x8019ee', 'uniqueId': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313:log:90', 'hash': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4294.736842105263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe8d17253675b1af286', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:23:51.000Z'}}, {'blockNum': '0x8019fc', 'uniqueId': '0xbc124efddc26fb0c4ca0365590438e9878bdfe6c029f6e736c26b3c257ca957a:log:96', 'hash': '0xbc124efddc26fb0c4ca0365590438e9878bdfe6c029f6e736c26b3c257ca957a', 'from': '0xd285e34998278c899379c63f20ad1a094749319f', 'to': '0x66abd916b01aa58a966015f595f476d2059d89c2', 'value': 14466.766401532586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03103eb6e1fb01defd00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:26:55.000Z'}}, {'blockNum': '0x801a10', 'uniqueId': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c:log:115', 'hash': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5397.058823529412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0124933cb5282639e1e1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:30:46.000Z'}}, {'blockNum': '0x801a10', 'uniqueId': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c:log:117', 'hash': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5397.058823529412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0124933cb5282639e1e1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:30:46.000Z'}}, {'blockNum': '0x801a23', 'uniqueId': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1:log:53', 'hash': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4478.2217956814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2c3cfd48949c448bb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:35:11.000Z'}}, {'blockNum': '0x801a23', 'uniqueId': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1:log:55', 'hash': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4478.2217956814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2c3cfd48949c448bb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:35:11.000Z'}}, {'blockNum': '0x801a2e', 'uniqueId': '0x3e9ff58e6ccfcc4df08de4af207a29967675029c4a26cf836363db5bdb016605:log:5', 'hash': '0x3e9ff58e6ccfcc4df08de4af207a29967675029c4a26cf836363db5bdb016605', 'from': '0x66abd916b01aa58a966015f595f476d2059d89c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14466.766401532586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03103eb6e1fb01defd00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:36:59.000Z'}}, {'blockNum': '0x801a6b', 'uniqueId': '0x43455dd81ce5917111457a8e6732b48bc9d717f1e91e1d2ec5d5f4ab9783a620:log:11', 'hash': '0x43455dd81ce5917111457a8e6732b48bc9d717f1e91e1d2ec5d5f4ab9783a620', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a96bcaf14924280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:47:51.000Z'}}, {'blockNum': '0x801b58', 'uniqueId': '0x7f358cc20454203411f69501bed378fafd98fdbb4aca66efdd5d8e6edb393e77:log:38', 'hash': '0x7f358cc20454203411f69501bed378fafd98fdbb4aca66efdd5d8e6edb393e77', 'from': '0x7ef832d6e1d1ad4c3fd5f20d2bc234d2e5718264', 'to': '0x0a2c144387b2592a80a79e2239e2c89096340d37', 'value': 21.91428434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01301f2d80189b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T19:43:27.000Z'}}, {'blockNum': '0x801be9', 'uniqueId': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b:log:72', 'hash': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11698.994024001135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027a342818e6f55a7f54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:14:12.000Z'}}, {'blockNum': '0x801be9', 'uniqueId': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b:log:76', 'hash': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 11698.994024001135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027a342818e6f55a7f54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:14:12.000Z'}}, {'blockNum': '0x801bf2', 'uniqueId': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a:log:52', 'hash': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4308.235294117647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe98cc675fdbae78787', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:16:56.000Z'}}, {'blockNum': '0x801bf2', 'uniqueId': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a:log:54', 'hash': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4308.235294117647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe98cc675fdbae78787', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:16:56.000Z'}}, {'blockNum': '0x801bf5', 'uniqueId': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87:log:48', 'hash': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7390.758729883487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0190a761a2e93a72f7cd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:17:24.000Z'}}, {'blockNum': '0x801bf5', 'uniqueId': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87:log:50', 'hash': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7390.758729883487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0190a761a2e93a72f7cd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:17:24.000Z'}}, {'blockNum': '0x801e4c', 'uniqueId': '0xaa940ea0fe8f0565a61fe6b6ea8d104ff0a3df65385c26d028bb997594d7b10d:log:3', 'hash': '0xaa940ea0fe8f0565a61fe6b6ea8d104ff0a3df65385c26d028bb997594d7b10d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb5d47502a7334d7d42a4380ab97b3b0dc05d8cff', 'value': 690.5756742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x256fa9a4dbb0e37000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T22:30:44.000Z'}}, {'blockNum': '0x801ef3', 'uniqueId': '0xb02b286106e33f526aef0cc9d3dd236206f6eb256bf8af594753ef52dd02bd4d:log:1', 'hash': '0xb02b286106e33f526aef0cc9d3dd236206f6eb256bf8af594753ef52dd02bd4d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xab9b3cf6ca4d61cd31b37a0bfac5d24017331511', 'value': 427.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x172cc11902077e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:07:39.000Z'}}, {'blockNum': '0x801f99', 'uniqueId': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45:log:113', 'hash': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:42:34.000Z'}}, {'blockNum': '0x801f99', 'uniqueId': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45:log:117', 'hash': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:42:34.000Z'}}, {'blockNum': '0x801ffe', 'uniqueId': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f:log:58', 'hash': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:05:16.000Z'}}, {'blockNum': '0x801ffe', 'uniqueId': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f:log:60', 'hash': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:05:16.000Z'}}, {'blockNum': '0x80208f', 'uniqueId': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4:log:37', 'hash': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10636.338596417807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024098d99fb4744f7bf9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:39:13.000Z'}}, {'blockNum': '0x80208f', 'uniqueId': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4:log:41', 'hash': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 10636.338596417807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024098d99fb4744f7bf9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:39:13.000Z'}}, {'blockNum': '0x802094', 'uniqueId': '0xa443462860b1ffe4f086f62b9bd8ad363b25c91dd80f1b165e619b652ec77148:log:81', 'hash': '0xa443462860b1ffe4f086f62b9bd8ad363b25c91dd80f1b165e619b652ec77148', 'from': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'to': '0x4b0bd28395fa9bd4cb9a110a06ac4af6161a9446', 'value': 20118.909272016324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0442a5f42c595dd1d955', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:40:48.000Z'}}]}}
Number of returned transfers:  90
Answer is complete
 
symbol             QSP
group              CPI
date        2019-08-29
hour             18:00
exchange       binance
Name: 1039, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2019-08-29 18:00:00 2019-08-29 06:00:00 2019-08-30 06:00:00
Unix timestamps:  1567051200.0 1567137600.0
Hex Block Numbers:  0x80d3a5 0x80ecfc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x80d3a6', 'uniqueId': '0x514b473654fc8e8b7857be6403b717c1a2fd0cf66d79717cad7e2f1b0015a167:log:9', 'hash': '0x514b473654fc8e8b7857be6403b717c1a2fd0cf66d79717cad7e2f1b0015a167', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa64b6689d9392e9d8ef575cb44a499e5b7d1bb08', 'value': 917.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x31c38f3552aaa30000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T04:00:20.000Z'}}, {'blockNum': '0x80d3c4', 'uniqueId': '0x594b998a453f5d423fadcc645bc424744da6fc9bee367442eb652523d6bacf1b:log:93', 'hash': '0x594b998a453f5d423fadcc645bc424744da6fc9bee367442eb652523d6bacf1b', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 36368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07b383631213ee400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T04:09:38.000Z'}}, {'blockNum': '0x80d4c8', 'uniqueId': '0x20b68017b08860bb57fe6f1a5c8c97c9f3559424e0b9f5358e53d51ba2dd6c79:log:2', 'hash': '0x20b68017b08860bb57fe6f1a5c8c97c9f3559424e0b9f5358e53d51ba2dd6c79', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x55b85bd29c089c592fcd4f3424d2d0ca46c9a23a', 'value': 2098.024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71bbee903144240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:05:00.000Z'}}, {'blockNum': '0x80d4ff', 'uniqueId': '0x7729d8dd8e249b0b3b8b1ae60d03120c448b54bd0a75580ef75aabc20700eb5f:log:15', 'hash': '0x7729d8dd8e249b0b3b8b1ae60d03120c448b54bd0a75580ef75aabc20700eb5f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ed2968e68d9fc21e805903d378ccbcadfa608fe', 'value': 2102.79599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71fe281ce674421c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:16:44.000Z'}}, {'blockNum': '0x80d565', 'uniqueId': '0xadc5201e608d20ebca9e56bef5b43e2309ad91fb826cd0dfcd3861af8acca407:log:14', 'hash': '0xadc5201e608d20ebca9e56bef5b43e2309ad91fb826cd0dfcd3861af8acca407', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd88afb3593ae07e9cb5969f97339e3ecb487946d', 'value': 6687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x016a80c45ec16d1c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:40:17.000Z'}}, {'blockNum': '0x80d7cc', 'uniqueId': '0xe17beb762f6c704f3c81673272c1e2b03e040a6ca82d305a24802a2675ac5d47:log:30', 'hash': '0xe17beb762f6c704f3c81673272c1e2b03e040a6ca82d305a24802a2675ac5d47', 'from': '0x4495a4eb51cc2ce89a7b0bd61b4ac2e22a54894a', 'to': '0xea92d72a913e41fe29ab075991d5e41eb53f69ca', 'value': 2790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x973f0729f24bd80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T07:58:48.000Z'}}, {'blockNum': '0x80d810', 'uniqueId': '0xf0f83a0ba08ac8c991ed36cbd1db2d95a7211c1affed43bea43a5531ef804fbe:log:32', 'hash': '0xf0f83a0ba08ac8c991ed36cbd1db2d95a7211c1affed43bea43a5531ef804fbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5144.4681089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0116e1d6387bfe12e800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:15:02.000Z'}}, {'blockNum': '0x80d813', 'uniqueId': '0x26dc926fc4de0f679922c4a25aaa8d403d869d9d5501d877d90cbf9d0425cfcb:log:90', 'hash': '0x26dc926fc4de0f679922c4a25aaa8d403d869d9d5501d877d90cbf9d0425cfcb', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x11f64d9b7f2c762beb7334df2c07d92894eb5f31', 'value': 5144.4681089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0116e1d6387bfe12e800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:16:01.000Z'}}, {'blockNum': '0x80d853', 'uniqueId': '0x5c76c348936c4baa7069bdc06c8c31ff432cd16a74cf119852d99794c91aff15:log:8', 'hash': '0x5c76c348936c4baa7069bdc06c8c31ff432cd16a74cf119852d99794c91aff15', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x00ac1b8d981d577ee2b3d345b2658279a03b0128', 'value': 9940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021ad935f79f76d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:29:03.000Z'}}, {'blockNum': '0x80d8dc', 'uniqueId': '0x776857ae415c3695605e3749b345cecd650897028cb49a668928d8c9bcc32571:log:8', 'hash': '0x776857ae415c3695605e3749b345cecd650897028cb49a668928d8c9bcc32571', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf6c1ef77e3f8e514e28da2dc11ced5bb4af41e59', 'value': 1583.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x55d4ec693b78620000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T09:00:14.000Z'}}, {'blockNum': '0x80dc77', 'uniqueId': '0xe479bcb17de8402c692bad5f6890cab814dd7c483dcda9171554ba0e0c72e88c:log:4', 'hash': '0xe479bcb17de8402c692bad5f6890cab814dd7c483dcda9171554ba0e0c72e88c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8cfdf2dbd3e5ff1c72741e89394fe4068c860392', 'value': 17448.0544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b1dc65890bbb680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:20:18.000Z'}}, {'blockNum': '0x80dcb1', 'uniqueId': '0xeb192fa1c9a1502ca2df8b05d64dd405b34822b4c92e5771f71d209d3c24b78a:log:34', 'hash': '0xeb192fa1c9a1502ca2df8b05d64dd405b34822b4c92e5771f71d209d3c24b78a', 'from': '0x8cfdf2dbd3e5ff1c72741e89394fe4068c860392', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17448.0544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b1dc65890bbb680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:32:27.000Z'}}, {'blockNum': '0x80dcda', 'uniqueId': '0x02f5b9d5c68fa9c122b135d020344fcb24bfa5131a1c3cab3137296986f26904:log:3', 'hash': '0x02f5b9d5c68fa9c122b135d020344fcb24bfa5131a1c3cab3137296986f26904', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2db99de600731a23e3639e5d1ee1ec152e54414d', 'value': 105867.927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x166b1ca0662ee2158000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:41:12.000Z'}}, {'blockNum': '0x80dce6', 'uniqueId': '0xb66afdf3c9bd7850bfec28304c339426907631baac5268991a14af33f3f04df6:log:20', 'hash': '0xb66afdf3c9bd7850bfec28304c339426907631baac5268991a14af33f3f04df6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da900bafe10e600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:43:16.000Z'}}, {'blockNum': '0x80dd0e', 'uniqueId': '0x1a912752e1f1819d1df5e5b465e1053cb7e8e715a6dcaa4524ae69945b748877:log:15', 'hash': '0x1a912752e1f1819d1df5e5b465e1053cb7e8e715a6dcaa4524ae69945b748877', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da900bafe10e600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:52:04.000Z'}}, {'blockNum': '0x80dd66', 'uniqueId': '0xfa4c221e21a61b063991f914b3f1f6c408fb79e1cdeac64aaaf2b5837a462091:log:35', 'hash': '0xfa4c221e21a61b063991f914b3f1f6c408fb79e1cdeac64aaaf2b5837a462091', 'from': '0xa1d45bae46ed9051bcfb0eb4ebc1eee949d7a264', 'to': '0xedeb12f1b9ce972d3f03d398c4135e52c39f61f4', 'value': 26751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05aa2cb39f20aa9c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:13:07.000Z'}}, {'blockNum': '0x80ddc2', 'uniqueId': '0x6f24512a1eaf25f876bc6f2fb1081d163ffcefdcfdfe9f10c1c0b1b80d6e619b:log:33', 'hash': '0x6f24512a1eaf25f876bc6f2fb1081d163ffcefdcfdfe9f10c1c0b1b80d6e619b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfca551dc2ec3b1caa96f48142c073e17efdf2fab', 'value': 1806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x61e748e766e3780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:35:56.000Z'}}, {'blockNum': '0x80ddee', 'uniqueId': '0x8f3236d2c3a2184eff561776c3310930fae260f5c0d81367b4477a060baefb10:log:16', 'hash': '0x8f3236d2c3a2184eff561776c3310930fae260f5c0d81367b4477a060baefb10', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x25c5d50a79fec2dc36d0030f1c3ebfadaff1fa3e', 'value': 4962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010cfd95463280480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:46:16.000Z'}}, {'blockNum': '0x80de3d', 'uniqueId': '0x63e785379f1223494c7b03a1a70ec004f430690a47e2fe2f525485fbb97686fb:log:39', 'hash': '0x63e785379f1223494c7b03a1a70ec004f430690a47e2fe2f525485fbb97686fb', 'from': '0x98571ac60f03f64a7cbd05dace6c3e0f6c2a51dc', 'to': '0xedeb12f1b9ce972d3f03d398c4135e52c39f61f4', 'value': 4072.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xdccadea5d722070000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:03:02.000Z'}}, {'blockNum': '0x80de41', 'uniqueId': '0xbfbc3eaf9f9296b41cf4e469669b76aab683fcc538886ed60a964d165abf3e7d:log:0', 'hash': '0xbfbc3eaf9f9296b41cf4e469669b76aab683fcc538886ed60a964d165abf3e7d', 'from': '0x24d337fd8f6506978834f6418d3d7ed4d02d9d06', 'to': '0xaed319f7416564fb209d8ac4ba76595006b3292e', 'value': 11057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x025766b32580d6240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:04:05.000Z'}}, {'blockNum': '0x80ded9', 'uniqueId': '0x0fecde5ce6c154388117d929008f90efb89c3d89eae7d4279d625a82d205d9a6:log:6', 'hash': '0x0fecde5ce6c154388117d929008f90efb89c3d89eae7d4279d625a82d205d9a6', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 88111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12a881c2f3ea1b5c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:34:24.000Z'}}, {'blockNum': '0x80def8', 'uniqueId': '0x77625e18db5c7d576bd51b5178d3c8729a8ebc27efb44501d0e4a7d461bbc8c1:log:51', 'hash': '0x77625e18db5c7d576bd51b5178d3c8729a8ebc27efb44501d0e4a7d461bbc8c1', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 88111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12a881c2f3ea1b5c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:42:11.000Z'}}, {'blockNum': '0x80e022', 'uniqueId': '0xb97b96e2816fc0b4fcea4b7ce3f8454e472a5a52cef0ec9fe56e7f98d3e2da20:log:7', 'hash': '0xb97b96e2816fc0b4fcea4b7ce3f8454e472a5a52cef0ec9fe56e7f98d3e2da20', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc613e9c7ba85f38ee8618c4452c598dc8c02103e', 'value': 50352.3282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aa99aed27d4e4088000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T15:47:09.000Z'}}, {'blockNum': '0x80e062', 'uniqueId': '0x7ef02ba61cf48daebbac9255632914585fbe2120c7fee97e634c6d3a1fcb7713:log:2', 'hash': '0x7ef02ba61cf48daebbac9255632914585fbe2120c7fee97e634c6d3a1fcb7713', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x150f5ba17f6c4bd40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:02:41.000Z'}}, {'blockNum': '0x80e096', 'uniqueId': '0xeb4232eef99e912d6926e102c33acc489ae27786afb04705d2e97c4f4422290f:log:35', 'hash': '0xeb4232eef99e912d6926e102c33acc489ae27786afb04705d2e97c4f4422290f', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x150f5ba17f6c4bd40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:12:26.000Z'}}, {'blockNum': '0x80e10e', 'uniqueId': '0xa3b276172a491b44e0ea8f9d538b20d74b427884b595c56a492ff3a2b5606193:log:11', 'hash': '0xa3b276172a491b44e0ea8f9d538b20d74b427884b595c56a492ff3a2b5606193', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6cd7b903e5f90d121a232d1acc10daa62e8e3fa9', 'value': 24901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0545e2cb50d901f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:37:09.000Z'}}, {'blockNum': '0x80e196', 'uniqueId': '0x4d530f79831385a413b2f190c2e79524ece6195af7fa5d9ed552c45e483fb667:log:10', 'hash': '0x4d530f79831385a413b2f190c2e79524ece6195af7fa5d9ed552c45e483fb667', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x07a0628bc69881689a86b694d139a631c231a882', 'value': 4381.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xed89b0cc3a86a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:06:40.000Z'}}, {'blockNum': '0x80e1a9', 'uniqueId': '0xb29179927a834c772f95e6b550d1df0d306bc56fc482f56acf10e5fcec13a4fc:log:72', 'hash': '0xb29179927a834c772f95e6b550d1df0d306bc56fc482f56acf10e5fcec13a4fc', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14cbcfe84103931c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:09:51.000Z'}}, {'blockNum': '0x80e1ee', 'uniqueId': '0x13dd23bc805e11bc4e79b5f7f191c773131237d35ff786c9cd0b4fa9e36d2703:log:19', 'hash': '0x13dd23bc805e11bc4e79b5f7f191c773131237d35ff786c9cd0b4fa9e36d2703', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14cbcfe84103931c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:22:02.000Z'}}, {'blockNum': '0x80e2b1', 'uniqueId': '0x4be77895e0f49502357e4019c0c71ebee3c63d4f12da2f78c3f15cfab377a06a:log:119', 'hash': '0x4be77895e0f49502357e4019c0c71ebee3c63d4f12da2f78c3f15cfab377a06a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 2412.43881099649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x82c7505cf3e38017c1', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:01:44.000Z'}}, {'blockNum': '0x80e2b4', 'uniqueId': '0x16a209cdf37d78e95c9de6464bfdb8b835ec1937f500e1147518efd2a72b313d:log:12', 'hash': '0x16a209cdf37d78e95c9de6464bfdb8b835ec1937f500e1147518efd2a72b313d', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 36645.364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07c28c95f28a57b20000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:27.000Z'}}, {'blockNum': '0x80e2b4', 'uniqueId': '0xc0e8bb88c9ddfbf4378b19ac771855a86315a37ff9c969bec8f0fb179004d261:log:62', 'hash': '0xc0e8bb88c9ddfbf4378b19ac771855a86315a37ff9c969bec8f0fb179004d261', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 2412.43881099649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x82c7505cf3e38017c1', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:27.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0xf2dcc89826386190d23336ef8a31f0db7c6772cafcc477586d3a0e7875868bb9:log:7', 'hash': '0xf2dcc89826386190d23336ef8a31f0db7c6772cafcc477586d3a0e7875868bb9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c329d2cc427a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0x8d4043ea16f6d249978f306eb1cdc7863a6efb6750261bdece1ec3cf7dc0d5eb:log:8', 'hash': '0x8d4043ea16f6d249978f306eb1cdc7863a6efb6750261bdece1ec3cf7dc0d5eb', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 50336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aa8b853bc712e800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0x740f0f8aeb93c8be5ac124a4a32e1845da802a6ce09bc6e59f20461f16d8bf84:log:9', 'hash': '0x740f0f8aeb93c8be5ac124a4a32e1845da802a6ce09bc6e59f20461f16d8bf84', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 59614.471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c9fb4fa937ef1ed8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b8', 'uniqueId': '0x5c2a6d3540b6a537d36e455d8ab12e05557862b76ec56c83f8e84c1c9dda0458:log:18', 'hash': '0x5c2a6d3540b6a537d36e455d8ab12e05557862b76ec56c83f8e84c1c9dda0458', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 147616.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1f425511dbbdd3480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:03:30.000Z'}}, {'blockNum': '0x80e2b8', 'uniqueId': '0xa223bb9aea1890728eb405e9fcebdf9ad89d59af63380105c70713dd2ebdbc2a:log:20', 'hash': '0xa223bb9aea1890728eb405e9fcebdf9ad89d59af63380105c70713dd2ebdbc2a', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 82701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11833aedf352ac140000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:03:30.000Z'}}, {'blockNum': '0x80e2d2', 'uniqueId': '0x83bca3ad9f285699d68cdcd04a8fa545fe4fb77bb4f1474804af81e13164abd6:log:3', 'hash': '0x83bca3ad9f285699d68cdcd04a8fa545fe4fb77bb4f1474804af81e13164abd6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb3a3fa926a2b3b8aca4d698b0a1eaa350ffe0276', 'value': 8071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01b587a01a0261bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:08:51.000Z'}}, {'blockNum': '0x80e2d2', 'uniqueId': '0x3169ad437e5d28b879d465a09cdc1ff924cea3256ccc82e90fbed1d9ecc1c13d:log:20', 'hash': '0x3169ad437e5d28b879d465a09cdc1ff924cea3256ccc82e90fbed1d9ecc1c13d', 'from': '0xe81bb573d3ac91bd7e7e15eee28a5a77c07481ac', 'to': '0x7234481e013dcab884fad86ffab011939010d78d', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:08:51.000Z'}}, {'blockNum': '0x80e2d3', 'uniqueId': '0x3cff55bc240c5294eadfa3c60b23ca1bc7d689f441d8c959704b7c9dacd69691:log:2', 'hash': '0x3cff55bc240c5294eadfa3c60b23ca1bc7d689f441d8c959704b7c9dacd69691', 'from': '0x8116ce6d7a783fb86c2659e992e748765760e3fe', 'to': '0xf9f508544165e2cc8993ec4defe62e2d461f281a', 'value': 7529.205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x019828b5980feef88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:09:15.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0xe1405cca9a96031ed508c1f608250b53251c97ea86b33451fede5e1c0c9e81ec:log:20', 'hash': '0xe1405cca9a96031ed508c1f608250b53251c97ea86b33451fede5e1c0c9e81ec', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 184262.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2704e1a7ce482afa0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x475b85e87c40041fce4075142a017d4c376990f910f44cc6f1b8779085deb3b7:log:21', 'hash': '0x475b85e87c40041fce4075142a017d4c376990f910f44cc6f1b8779085deb3b7', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c329d2cc427a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x109f37ea4491843b0278748a8367a6e753e830b80d388d42898bc92a42c7b7a9:log:22', 'hash': '0x109f37ea4491843b0278748a8367a6e753e830b80d388d42898bc92a42c7b7a9', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11833aedf352ac140000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x208a7608631e1077c90977b4310e4d4fc16f3f1985cd3a2b30f0473adcb861a9:log:33', 'hash': '0x208a7608631e1077c90977b4310e4d4fc16f3f1985cd3a2b30f0473adcb861a9', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13ff7e86660823d80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2e5', 'uniqueId': '0xdf9197a69355830d86a01ed061d06ed425919c83dc3de0884a6e4fc0a0b1c6f1:log:5', 'hash': '0xdf9197a69355830d86a01ed061d06ed425919c83dc3de0884a6e4fc0a0b1c6f1', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 59162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c872daeaa4a3c280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:13:40.000Z'}}, {'blockNum': '0x80e2ec', 'uniqueId': '0x0dee99a869c8938093861ceafd166b3047df54ca3f1bda0416faa76adf5ad696:log:14', 'hash': '0x0dee99a869c8938093861ceafd166b3047df54ca3f1bda0416faa76adf5ad696', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 92077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x137f811167255a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:15:37.000Z'}}, {'blockNum': '0x80e2fb', 'uniqueId': '0x17968c69d6fac49c5ab97fb47f9efff4901ced956e8d770682f4e0ad85acaf94:log:14', 'hash': '0x17968c69d6fac49c5ab97fb47f9efff4901ced956e8d770682f4e0ad85acaf94', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 44482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x096b5fc1dc436dc80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:19:09.000Z'}}, {'blockNum': '0x80e310', 'uniqueId': '0x9a8d0a0466ab629064bcd69b617c99b93090e3d55a35ccb752ad06eebb04ad5b:log:5', 'hash': '0x9a8d0a0466ab629064bcd69b617c99b93090e3d55a35ccb752ad06eebb04ad5b', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x137f811167255a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:21:47.000Z'}}, {'blockNum': '0x80e311', 'uniqueId': '0x901747e6005d8b22b7229c57c381bc6e70cea36df71efb248cba58da5d09a7a5:log:2', 'hash': '0x901747e6005d8b22b7229c57c381bc6e70cea36df71efb248cba58da5d09a7a5', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c872daeaa4a3c280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:22:06.000Z'}}, {'blockNum': '0x80e318', 'uniqueId': '0x67c5e6761f1d6af4d68f4ac926337d9a529e7ef100212361906e0ba7acb60766:log:60', 'hash': '0x67c5e6761f1d6af4d68f4ac926337d9a529e7ef100212361906e0ba7acb60766', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 79000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10ba993ca00fb3600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:23:58.000Z'}}, {'blockNum': '0x80e326', 'uniqueId': '0x14f0158ba00b7684228c9974f2810a6de54331d9964f5f047f674f5a2aabed70:log:4', 'hash': '0x14f0158ba00b7684228c9974f2810a6de54331d9964f5f047f674f5a2aabed70', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9bddad1f150ff5d5911b4afd0e67b81b5a2e720d', 'value': 4901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0109af09bd639d740000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:26:53.000Z'}}, {'blockNum': '0x80e33f', 'uniqueId': '0xaeb8fa3083282f95edfbfe5647e101531dd5edf725b261895f89e9c0e17c4c9e:log:14', 'hash': '0xaeb8fa3083282f95edfbfe5647e101531dd5edf725b261895f89e9c0e17c4c9e', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x096b5fc1dc436dc80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:32:09.000Z'}}, {'blockNum': '0x80e351', 'uniqueId': '0xd795ea8935caace057dd4d3920cd67d487cd30f3f9de90fb6576c539bfd25d56:log:48', 'hash': '0xd795ea8935caace057dd4d3920cd67d487cd30f3f9de90fb6576c539bfd25d56', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 79000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10ba993ca00fb3600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:35:41.000Z'}}, {'blockNum': '0x80e360', 'uniqueId': '0x96332c91e29eb62832122746e24814eb9edda1bebf045a4bb317b4f03cf9da37:log:43', 'hash': '0x96332c91e29eb62832122746e24814eb9edda1bebf045a4bb317b4f03cf9da37', 'from': '0xe81bb573d3ac91bd7e7e15eee28a5a77c07481ac', 'to': '0x7234481e013dcab884fad86ffab011939010d78d', 'value': 159681.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x21d054bdeda6b9c38000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:39:12.000Z'}}, {'blockNum': '0x80e39d', 'uniqueId': '0x6a463c7ff6ebe6a2400dd9d9b00008e5a05ab82c4bacbfe2a3f1f806b449ea99:log:10', 'hash': '0x6a463c7ff6ebe6a2400dd9d9b00008e5a05ab82c4bacbfe2a3f1f806b449ea99', 'from': '0x7234481e013dcab884fad86ffab011939010d78d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 160681.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x22068a879b6c98638000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:51:49.000Z'}}, {'blockNum': '0x80e402', 'uniqueId': '0xde1d99b3b7a7b5777d3379f2d52d9359f2e94091b5e59ca44366602a0952c106:log:1', 'hash': '0xde1d99b3b7a7b5777d3379f2d52d9359f2e94091b5e59ca44366602a0952c106', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x84321c7b6dd9e35e1c714571fe398edd98e9344f', 'value': 733.167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x27bebc6e03c6d18000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:15:02.000Z'}}, {'blockNum': '0x80e439', 'uniqueId': '0xfb1f826e1f74997f7e4268030329c436edd19d9aee76b095c8299a4b317626d6:log:95', 'hash': '0xfb1f826e1f74997f7e4268030329c436edd19d9aee76b095c8299a4b317626d6', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xf18e46d5dfab23959e70242dd7ec258f94fb3ff8', 'value': 19865.865834554697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0434ee454aa8c9de4878', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:26:34.000Z'}}, {'blockNum': '0x80e446', 'uniqueId': '0x715bf32582959cdc3cbdc5aab6190c330754a69e840232931e12708c72ba34dc:log:0', 'hash': '0x715bf32582959cdc3cbdc5aab6190c330754a69e840232931e12708c72ba34dc', 'from': '0xf18e46d5dfab23959e70242dd7ec258f94fb3ff8', 'to': '0x4e2f6edad3e8b29aed837fb0f7d3f4504ed8389b', 'value': 19865.865834554697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0434ee454aa8c9de4878', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:29:33.000Z'}}, {'blockNum': '0x80e46e', 'uniqueId': '0x0254ecfff645099ac53f5cdc655a80106dcff927fe04ce57b8ca35282c58cdb9:log:0', 'hash': '0x0254ecfff645099ac53f5cdc655a80106dcff927fe04ce57b8ca35282c58cdb9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5d8512fe175509b85fc68930014879975f2ad28e', 'value': 1524.375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52a2f3ea03de158000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:40:27.000Z'}}, {'blockNum': '0x80e4b0', 'uniqueId': '0x19ce5526d70531a53773500c534fada3a835494c1e52d3d97c26cffd3a998591:log:29', 'hash': '0x19ce5526d70531a53773500c534fada3a835494c1e52d3d97c26cffd3a998591', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xaef3bb2cdc8aab67cac498e98b9666e463f4ca02', 'value': 33768.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07269c84bb1faa720000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:58:02.000Z'}}, {'blockNum': '0x80e4e7', 'uniqueId': '0x230c6a47d886c421d647303f5cd992c46e1f583495960c86461f16be7cea4750:log:30', 'hash': '0x230c6a47d886c421d647303f5cd992c46e1f583495960c86461f16be7cea4750', 'from': '0xaef3bb2cdc8aab67cac498e98b9666e463f4ca02', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 33768.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07269c84bb1faa720000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:12:18.000Z'}}, {'blockNum': '0x80e54b', 'uniqueId': '0xa042af5d1d045ac76bda23dc991f1687e05264a79719ed5c554f211676782997:log:7', 'hash': '0xa042af5d1d045ac76bda23dc991f1687e05264a79719ed5c554f211676782997', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x26f78afdc096e4b2c57d61e9b52bd08ba4581987', 'value': 501.755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b333fda168c1f8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:36:48.000Z'}}, {'blockNum': '0x80e565', 'uniqueId': '0xfe48ac91bd5f1fddad8baa65c5a0a60447a46d41fa04f75f03c2727868ae6f46:log:1', 'hash': '0xfe48ac91bd5f1fddad8baa65c5a0a60447a46d41fa04f75f03c2727868ae6f46', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 57180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbbe8276043f00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:43:02.000Z'}}, {'blockNum': '0x80e577', 'uniqueId': '0xb58c4c3fb81a4e46266d256d00069d036017d9e2c3275d65ff5582d7545fda4d:log:2', 'hash': '0xb58c4c3fb81a4e46266d256d00069d036017d9e2c3275d65ff5582d7545fda4d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8fbb649462c0c88e0b0895b12b10d21faf358e6f', 'value': 9901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0218bbfa2240f6940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:46:32.000Z'}}, {'blockNum': '0x80e58f', 'uniqueId': '0x2f64c591fddb5f143aa2d413adea77f079096148b6201a368fcc009a4eb050c6:log:1', 'hash': '0x2f64c591fddb5f143aa2d413adea77f079096148b6201a368fcc009a4eb050c6', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbbe8276043f00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:52:02.000Z'}}, {'blockNum': '0x80e596', 'uniqueId': '0x6ea608f5d34d07a06efe21fad6d15d88e7d0be1d440cf1b4cafeb0866129ba11:log:0', 'hash': '0x6ea608f5d34d07a06efe21fad6d15d88e7d0be1d440cf1b4cafeb0866129ba11', 'from': '0xa2dd64ab784c0d24b93003b345e5fad633d4bf56', 'to': '0x99f849b1aa652b5a80e78e8ca63ecb8338ad7031', 'value': 874.103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2f629daf4dc7458000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:54:28.000Z'}}, {'blockNum': '0x80e5a8', 'uniqueId': '0xba11058506029dfae9ae15c0a634cb86ee234a66789a6518534311476a02ea09:log:0', 'hash': '0xba11058506029dfae9ae15c0a634cb86ee234a66789a6518534311476a02ea09', 'from': '0xac42907ebf4ea6d472deea118474eca9b877dedc', 'to': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:58:59.000Z'}}, {'blockNum': '0x80e5b3', 'uniqueId': '0xec7f9a6882c488c9313bccd3e5fec37768000dc4b5dcf47d3ac3dd8b0c9013e1:log:1', 'hash': '0xec7f9a6882c488c9313bccd3e5fec37768000dc4b5dcf47d3ac3dd8b0c9013e1', 'from': '0xac42907ebf4ea6d472deea118474eca9b877dedc', 'to': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'value': 4903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0109cacb2acaec3c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:02:00.000Z'}}, {'blockNum': '0x80e5db', 'uniqueId': '0xa1784f9e94d043f1d559d5a34379054c548bbcf4abf1b7a0b718d08663e9d95f:log:56', 'hash': '0xa1784f9e94d043f1d559d5a34379054c548bbcf4abf1b7a0b718d08663e9d95f', 'from': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f369288f84f4c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:11:47.000Z'}}, {'blockNum': '0x80e611', 'uniqueId': '0x9c9a674f7f2fee4666ea64c65ffe1baefaa14646d01b749c80660c17657f43f1:log:6', 'hash': '0x9c9a674f7f2fee4666ea64c65ffe1baefaa14646d01b749c80660c17657f43f1', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11e870c2638872600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:25:45.000Z'}}, {'blockNum': '0x80e635', 'uniqueId': '0x391a41489bbf80940ffd9f8434243391ef81e10ed3671084e5f35c51b9dbab67:log:4', 'hash': '0x391a41489bbf80940ffd9f8434243391ef81e10ed3671084e5f35c51b9dbab67', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11e870c2638872600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:32:08.000Z'}}, {'blockNum': '0x80e662', 'uniqueId': '0x02979fb9b0592c150b4d0af817f9a1a6be1b01864c2eac8f7e73c379fcc89881:log:0', 'hash': '0x02979fb9b0592c150b4d0af817f9a1a6be1b01864c2eac8f7e73c379fcc89881', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x77b6bedb35c3712878f516da8e410c58881f5618', 'value': 4051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xdb9aeb1ce1d36c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:40:33.000Z'}}, {'blockNum': '0x80e67a', 'uniqueId': '0x7f14e48ce28f89e613c024384c2aea1ae9264d32a323144b3b574cceae57c991:log:0', 'hash': '0x7f14e48ce28f89e613c024384c2aea1ae9264d32a323144b3b574cceae57c991', 'from': '0xe567f9e9d6d0f9c9bdd1f14b838d8a6a05c0c80c', 'to': '0x046744a209929cddedab376c4a4167d506199db2', 'value': 1733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5df234ce2c27f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:46:14.000Z'}}, {'blockNum': '0x80e687', 'uniqueId': '0x3bf9f7fe30e3fa38bf43521660589bab0d03b310f56bf86ae24e63c96dd01be4:log:33', 'hash': '0x3bf9f7fe30e3fa38bf43521660589bab0d03b310f56bf86ae24e63c96dd01be4', 'from': '0xbe4b4d98914957ea3226a714f0fe17958f4f1268', 'to': '0x40bbc730b54068d27846fa085f54b1ba332bec7a', 'value': 6965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017992cac5d933b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:48:33.000Z'}}, {'blockNum': '0x80e6d6', 'uniqueId': '0x834958c1c8b5f0e6ab9274dde030367b0e0892289a89eecb6a21bda138141441:log:15', 'hash': '0x834958c1c8b5f0e6ab9274dde030367b0e0892289a89eecb6a21bda138141441', 'from': '0x40bbc730b54068d27846fa085f54b1ba332bec7a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017992cac5d933b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:01:52.000Z'}}, {'blockNum': '0x80e6f5', 'uniqueId': '0x538e3c43f8085d1b9bc92bba9c8176b077dce167ad9c20ba65e170ab1f404a7d:log:100', 'hash': '0x538e3c43f8085d1b9bc92bba9c8176b077dce167ad9c20ba65e170ab1f404a7d', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x22b3df1c89088d6b5936f5d30c60d4c54f8b31b7', 'value': 58349.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c5b21facd1977460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:08:18.000Z'}}, {'blockNum': '0x80e726', 'uniqueId': '0xf81d62dd537812ecc26d901070ca048bc8946ad7767f2f5a921064aea2862fdd:log:1', 'hash': '0xf81d62dd537812ecc26d901070ca048bc8946ad7767f2f5a921064aea2862fdd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x14acd610d1d2f15c06b123e61cb4e9ce596e572f', 'value': 401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x15bcfe2f6933a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:21:05.000Z'}}, {'blockNum': '0x80e731', 'uniqueId': '0x3b665c488bba45dd4bffa7a4d66f84d25b9bdc5b753893ea2a36b0599c838a9c:log:4', 'hash': '0x3b665c488bba45dd4bffa7a4d66f84d25b9bdc5b753893ea2a36b0599c838a9c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfa190caf921888a53781364748f4f37a67181e32', 'value': 118598.184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x191d386e93e410040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:23:00.000Z'}}, {'blockNum': '0x80e737', 'uniqueId': '0xa677c5b4d0181e6bf576398ac77e7350d24c2a8beb561dec7b8b439c51b9497a:log:48', 'hash': '0xa677c5b4d0181e6bf576398ac77e7350d24c2a8beb561dec7b8b439c51b9497a', 'from': '0x22b3df1c89088d6b5936f5d30c60d4c54f8b31b7', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 58349.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c5b21facd1977460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:23:45.000Z'}}, {'blockNum': '0x80e74a', 'uniqueId': '0x18a5c93c44c7816b58b5738015e5d840f456c6cf1928ad1ec0337d3f590b950b:log:0', 'hash': '0x18a5c93c44c7816b58b5738015e5d840f456c6cf1928ad1ec0337d3f590b950b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x14acd610d1d2f15c06b123e61cb4e9ce596e572f', 'value': 4401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xee9424e680ae240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:27:39.000Z'}}, {'blockNum': '0x80e74f', 'uniqueId': '0x7ce5889ec98ec936b0765c860098b2e68e70841a8a26526249741d34fa7449b5:log:0', 'hash': '0x7ce5889ec98ec936b0765c860098b2e68e70841a8a26526249741d34fa7449b5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2347.54136744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7f42ae53e123f5a000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:28:56.000Z'}}, {'blockNum': '0x80e750', 'uniqueId': '0x76a1bb72aec439e3798bd932a6133cfc69755488f4791fac2d0f07d4841874ee:log:80', 'hash': '0x76a1bb72aec439e3798bd932a6133cfc69755488f4791fac2d0f07d4841874ee', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x242f62a2dbfaeb1b350b4531fb02d363bb976638', 'value': 2347.54136744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7f42ae53e123f5a000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:28:59.000Z'}}, {'blockNum': '0x80e759', 'uniqueId': '0x02d75847b9f6f0f467bb38b06245ead16f547f88837dbe580b12ab42c5ac73e2:log:2', 'hash': '0x02d75847b9f6f0f467bb38b06245ead16f547f88837dbe580b12ab42c5ac73e2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6fbbb3878ab27bfa0c174832b9d89ecc0bc93f3a', 'value': 19881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0435c04ca5f295040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:30:50.000Z'}}, {'blockNum': '0x80e779', 'uniqueId': '0x68c848dd42382cbc8f3ff727d1cdac7da69042b3fdd6ec093c87b775452cb343:log:5', 'hash': '0x68c848dd42382cbc8f3ff727d1cdac7da69042b3fdd6ec093c87b775452cb343', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4ef59167a212404fe6bb64930437e1d6432f6554', 'value': 212341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2cf70757452a54b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:39:45.000Z'}}, {'blockNum': '0x80e7b4', 'uniqueId': '0xe487208cb2dee95f647acb58aa385eaa18960e4cff484fe356178ad210f8d5d2:log:36', 'hash': '0xe487208cb2dee95f647acb58aa385eaa18960e4cff484fe356178ad210f8d5d2', 'from': '0x4ef59167a212404fe6bb64930437e1d6432f6554', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 212341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2cf70757452a54b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:53:00.000Z'}}, {'blockNum': '0x80e7f7', 'uniqueId': '0xe9dc776fff1f0cbcc101ee55fb0fc482a5d66b05e9854b8fcd2c905989e2a761:log:105', 'hash': '0xe9dc776fff1f0cbcc101ee55fb0fc482a5d66b05e9854b8fcd2c905989e2a761', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x98b08fd35f2324e7b284770d33ee9fcde21cb00a', 'value': 108600.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16ff443ef5c587ba0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:09:10.000Z'}}, {'blockNum': '0x80e815', 'uniqueId': '0x1b6c0cb48e8aecbe8ae9525995f7a59809f028970f40d471d07341f080bb4e9d:log:28', 'hash': '0x1b6c0cb48e8aecbe8ae9525995f7a59809f028970f40d471d07341f080bb4e9d', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 51990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b026230292cae980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:17:40.000Z'}}, {'blockNum': '0x80e82b', 'uniqueId': '0xfb0481df5de8fe804e2ec64a522d08891185494fd79142c6f888cf4cfb5e9588:log:29', 'hash': '0xfb0481df5de8fe804e2ec64a522d08891185494fd79142c6f888cf4cfb5e9588', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b026230292cae980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:22:25.000Z'}}, {'blockNum': '0x80e831', 'uniqueId': '0x5e08cc3034a8ee4be93c20e48947630e6cb70531187e46d86a42eef2f576395e:log:91', 'hash': '0x5e08cc3034a8ee4be93c20e48947630e6cb70531187e46d86a42eef2f576395e', 'from': '0x98b08fd35f2324e7b284770d33ee9fcde21cb00a', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 108600.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16ff443ef5c587ba0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:23:39.000Z'}}, {'blockNum': '0x80e8fc', 'uniqueId': '0x8ef28e6e4dcdc4f813cf78daaa22ed5526b898cce62ed9477898705f8fb2424f:log:0', 'hash': '0x8ef28e6e4dcdc4f813cf78daaa22ed5526b898cce62ed9477898705f8fb2424f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0e4335f6edc4c4633c384a29d6ffd2d917fa5d1b', 'value': 7212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0186f69b0d2fb5300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:10:48.000Z'}}, {'blockNum': '0x80e91d', 'uniqueId': '0x01a36e4f0b725fa423acafef30b1a8f3e45e66a54aec09beb79849f3d1c79069:log:2', 'hash': '0x01a36e4f0b725fa423acafef30b1a8f3e45e66a54aec09beb79849f3d1c79069', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 55530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bc2498e957361680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:18:53.000Z'}}, {'blockNum': '0x80e961', 'uniqueId': '0xceabb5ab8fd4001f998ade0e112d52bf71db12042b3c14983942d91cd0388937:log:8', 'hash': '0xceabb5ab8fd4001f998ade0e112d52bf71db12042b3c14983942d91cd0388937', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bc2498e957361680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:32:02.000Z'}}, {'blockNum': '0x80e965', 'uniqueId': '0xf0bac80df4a24a6df2e0b8d67c853a14c6947db46cb41070f917ad9485dea60f:log:119', 'hash': '0xf0bac80df4a24a6df2e0b8d67c853a14c6947db46cb41070f917ad9485dea60f', 'from': '0x3fb83b3ec48a0a0a21a793960892422ca39e4cc9', 'to': '0x02bd432d0c1516d846822355d03de6e81e83f8b7', 'value': 56961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c0fdcabdbb011640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:33:00.000Z'}}, {'blockNum': '0x80e980', 'uniqueId': '0x631ae09ca228c86fd123725628714e2c9fbae043d25d2d98bb54c26cfaa8e117:log:3', 'hash': '0x631ae09ca228c86fd123725628714e2c9fbae043d25d2d98bb54c26cfaa8e117', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18dc9b4077b973421998b173673bfd5defb9e62b', 'value': 4149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xe0eaf10da7e7b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:41:18.000Z'}}, {'blockNum': '0x80e988', 'uniqueId': '0xf6a5f4fa2c6bf37731d4f06a2cfe72935418a6c57fee29d9e93d3ee16722fc11:log:4', 'hash': '0xf6a5f4fa2c6bf37731d4f06a2cfe72935418a6c57fee29d9e93d3ee16722fc11', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3ec82921c72584c440bf459d6754f764828d4e2b', 'value': 102588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x15b94e7ee17b2d700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:43:05.000Z'}}, {'blockNum': '0x80e9b7', 'uniqueId': '0x227860af4e7e3447f59b0c713f61f0ebd311d9211374de87820a27a4b7baa1a9:log:8', 'hash': '0x227860af4e7e3447f59b0c713f61f0ebd311d9211374de87820a27a4b7baa1a9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14d8c4b2d2bcd9780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:54:09.000Z'}}, {'blockNum': '0x80e9ba', 'uniqueId': '0x5783cace9ffded909a50ca08ce71c3657e4501a382fa21df174e8bb6f3b936e5:log:68', 'hash': '0x5783cace9ffded909a50ca08ce71c3657e4501a382fa21df174e8bb6f3b936e5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 55687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bcacc5ea1a109bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:54:57.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0xf69e91328a94832af12b2fc7abe9e458d90293a814ed453d15137c2c4b72d932:log:12', 'hash': '0xf69e91328a94832af12b2fc7abe9e458d90293a814ed453d15137c2c4b72d932', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bcacc5ea1a109bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0xfc2524bf12d05767c3c8b8b7332fe517f6b9254ffe361e24c41b41fbb30a52fd:log:14', 'hash': '0xfc2524bf12d05767c3c8b8b7332fe517f6b9254ffe361e24c41b41fbb30a52fd', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14d8c4b2d2bcd9780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0x406966530263e63cc85cce999f6308fca02e3fdc9dc1668012b9b569b30dad44:log:68', 'hash': '0x406966530263e63cc85cce999f6308fca02e3fdc9dc1668012b9b569b30dad44', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 20246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x044989b124183e980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9e9', 'uniqueId': '0xa8bd4bf4d3c0696f33290178b727f0da5422bfed8c90d97a50b5805a3933ec0b:log:17', 'hash': '0xa8bd4bf4d3c0696f33290178b727f0da5422bfed8c90d97a50b5805a3933ec0b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x519cb0540e1c4e8a0c1ae9f981e0934e3bba89c1', 'value': 7778.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01a5a72ea2b8e5fb0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:04:25.000Z'}}, {'blockNum': '0x80e9fe', 'uniqueId': '0x9a98c96e7e7e8cf6681bd2a84e9cba28666e6af1d7dc2769a2733cac0797e6ca:log:40', 'hash': '0x9a98c96e7e7e8cf6681bd2a84e9cba28666e6af1d7dc2769a2733cac0797e6ca', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b5910c5554f38340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:10:22.000Z'}}, {'blockNum': '0x80e9ff', 'uniqueId': '0x5ee5dfa5f0781c7bc4d840460ef5f8ccfd0c8068b179a9b2620f8cd4d60dd185:log:31', 'hash': '0x5ee5dfa5f0781c7bc4d840460ef5f8ccfd0c8068b179a9b2620f8cd4d60dd185', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 20246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x044989b124183e980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:11:03.000Z'}}, {'blockNum': '0x80ea33', 'uniqueId': '0x39b1638f93dde69d02efb202dac6a87aea057061ffeb0649b9ff1430ba3c240d:log:32', 'hash': '0x39b1638f93dde69d02efb202dac6a87aea057061ffeb0649b9ff1430ba3c240d', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14eb4ee6e6be79100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:21:59.000Z'}}, {'blockNum': '0x80ea34', 'uniqueId': '0x36eec5fa3d8db7b5acb888a182d9198aae992041e2c74649b5f5129b9954905a:log:17', 'hash': '0x36eec5fa3d8db7b5acb888a182d9198aae992041e2c74649b5f5129b9954905a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b5910c5554f38340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:22:17.000Z'}}, {'blockNum': '0x80ea6b', 'uniqueId': '0x54ebf58af0108346a242e5948075a12222d507ba929e2e565ea44a557aefcd56:log:9', 'hash': '0x54ebf58af0108346a242e5948075a12222d507ba929e2e565ea44a557aefcd56', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b63e85411a9fe540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:30:21.000Z'}}, {'blockNum': '0x80ea7a', 'uniqueId': '0x86e392464f6a882e5d7401634181b39ca36973b42121c7b80eefdc588f2a8a5b:log:11', 'hash': '0x86e392464f6a882e5d7401634181b39ca36973b42121c7b80eefdc588f2a8a5b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd0aed7b3544dfb4624f64963fee9dd53911b620c', 'value': 16812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x038f615e5e34db300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:32:17.000Z'}}, {'blockNum': '0x80ea7a', 'uniqueId': '0x91a768e38f118cda5c40987bc3a9fd9e504f919f9b6300e2a2f082fb66b20352:log:36', 'hash': '0x91a768e38f118cda5c40987bc3a9fd9e504f919f9b6300e2a2f082fb66b20352', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14eb4ee6e6be79100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:32:17.000Z'}}, {'blockNum': '0x80ea8b', 'uniqueId': '0x06158cac5dfc81bf5164d53185a10900ed9aa02f2a5387dd274489722e0b9301:log:43', 'hash': '0x06158cac5dfc81bf5164d53185a10900ed9aa02f2a5387dd274489722e0b9301', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x4bb1b4cd34c9345c47289b59078802233217c5e6', 'value': 150063.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1fc6f522159b978c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:36:19.000Z'}}, {'blockNum': '0x80eaa9', 'uniqueId': '0xf7542dcfdb5db593ffd53da5d0894969caeb8b7a8cca2428244030b724db959a:log:40', 'hash': '0xf7542dcfdb5db593ffd53da5d0894969caeb8b7a8cca2428244030b724db959a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da2ee6b0f77aa40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:42:25.000Z'}}, {'blockNum': '0x80eaa9', 'uniqueId': '0xbd16bfe5b77d5e69fec273859bb4e9124530fbdb3357a24e1e8a83f02870637a:log:63', 'hash': '0xbd16bfe5b77d5e69fec273859bb4e9124530fbdb3357a24e1e8a83f02870637a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b63e85411a9fe540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:42:25.000Z'}}, {'blockNum': '0x80eab0', 'uniqueId': '0xe19437ad30aef6bab93264c6472da5a2081fa3625ce26050282af3cd463b9e06:log:12', 'hash': '0xe19437ad30aef6bab93264c6472da5a2081fa3625ce26050282af3cd463b9e06', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x54b6e9b833e62c22b290a97c6e561f42f6bdb20d', 'value': 72176.9521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0f48b86d051184664000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:43:27.000Z'}}, {'blockNum': '0x80eab6', 'uniqueId': '0x9be6a86d67ec266ccb0b865dc584f0b1eb2559782d860f16e591e77619095169:log:119', 'hash': '0x9be6a86d67ec266ccb0b865dc584f0b1eb2559782d860f16e591e77619095169', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 16700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03894f0e6f9b9f700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:45:03.000Z'}}, {'blockNum': '0x80eac1', 'uniqueId': '0x9a11aa8c4d50f51400a120b38f8c8ca060f842f62b4220b5ea013d4eefebd665:log:8', 'hash': '0x9a11aa8c4d50f51400a120b38f8c8ca060f842f62b4220b5ea013d4eefebd665', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x519cb0540e1c4e8a0c1ae9f981e0934e3bba89c1', 'value': 9872.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021729f004be4f830000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:47:56.000Z'}}, {'blockNum': '0x80eac8', 'uniqueId': '0x78cc1720dfb03cc70b461e4454744637c8ae121c955e6328775d99f9ccc9fdc8:log:118', 'hash': '0x78cc1720dfb03cc70b461e4454744637c8ae121c955e6328775d99f9ccc9fdc8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 94651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x140b0a7e69826a0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:49:59.000Z'}}, {'blockNum': '0x80ead3', 'uniqueId': '0x0eeff1ebddf72f16382a08f2cbb16f68e91c3f32acfbbce446e3745b367e112e:log:110', 'hash': '0x0eeff1ebddf72f16382a08f2cbb16f68e91c3f32acfbbce446e3745b367e112e', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 178956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x25e539651a79e4b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:52:04.000Z'}}, {'blockNum': '0x80ead7', 'uniqueId': '0x528996869a1bbbf1dbd229005748c4c8083ccd934ac2a6c7736f5e8bb4e1592f:log:37', 'hash': '0x528996869a1bbbf1dbd229005748c4c8083ccd934ac2a6c7736f5e8bb4e1592f', 'from': '0x54b6e9b833e62c22b290a97c6e561f42f6bdb20d', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 72176.9521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0f48b86d051184664000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:53:05.000Z'}}, {'blockNum': '0x80eade', 'uniqueId': '0xd1ae4a0c36ccde99bec15acf8c7659bbb7a61024306e1ec28c9c7f32a720b1ac:log:7', 'hash': '0xd1ae4a0c36ccde99bec15acf8c7659bbb7a61024306e1ec28c9c7f32a720b1ac', 'from': '0x3c0ee32b03816b787ce85d2e594ae4f3a7e062ad', 'to': '0x185aa96c350c9bca88b98670264642d167dd6f60', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:55:08.000Z'}}, {'blockNum': '0x80eae3', 'uniqueId': '0x23e91a20eae28bb11ce655a3037297db64afb281707dcf6a66e5bf37ac180c3a:log:94', 'hash': '0x23e91a20eae28bb11ce655a3037297db64afb281707dcf6a66e5bf37ac180c3a', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 16700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03894f0e6f9b9f700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:56:26.000Z'}}, {'blockNum': '0x80eaea', 'uniqueId': '0xa792573bfeefc106e77ca19a4fe8ca3c22957f9eabccea157e0f1926ddc895c1:log:19', 'hash': '0xa792573bfeefc106e77ca19a4fe8ca3c22957f9eabccea157e0f1926ddc895c1', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 122852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1a03d1fcde3531100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:57:32.000Z'}}, {'blockNum': '0x80eaf8', 'uniqueId': '0xb7d002bf0f9aa770c8d8c878e1d501ea2690e6c646873fdd8b380b839e4edffb:log:15', 'hash': '0xb7d002bf0f9aa770c8d8c878e1d501ea2690e6c646873fdd8b380b839e4edffb', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x95e3181243425ee70e68575456ef2f1c0a7ce9dc', 'value': 68879.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e95f43ef42705828000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:01:10.000Z'}}, {'blockNum': '0x80eafc', 'uniqueId': '0xd96e9ec0d44c39f86ef89ecfc990adf5a545d32572cf9d8491cbd833503b0368:log:30', 'hash': '0xd96e9ec0d44c39f86ef89ecfc990adf5a545d32572cf9d8491cbd833503b0368', 'from': '0x185aa96c350c9bca88b98670264642d167dd6f60', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:02:01.000Z'}}, {'blockNum': '0x80eb14', 'uniqueId': '0x90a567f7b6d5c8ba92b05876978032e27a66786b0b99cc23a12871dca1094214:log:10', 'hash': '0x90a567f7b6d5c8ba92b05876978032e27a66786b0b99cc23a12871dca1094214', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1978e53ef0faf74c811b53767551f8e549423157', 'value': 14193.704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030171365a8881040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:08:05.000Z'}}, {'blockNum': '0x80eb16', 'uniqueId': '0x248d467db3aff926e9eac036e792bbde0af21dcc55646c55150bfa7f27cd675d:log:17', 'hash': '0x248d467db3aff926e9eac036e792bbde0af21dcc55646c55150bfa7f27cd675d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b6a400791c57f080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:08:42.000Z'}}, {'blockNum': '0x80eb25', 'uniqueId': '0x70fa478e1fc107d924d9bbeb92b9b467eea13319846241bb4cdab62460a20e8a:log:72', 'hash': '0x70fa478e1fc107d924d9bbeb92b9b467eea13319846241bb4cdab62460a20e8a', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 122852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1a03d1fcde3531100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:12:11.000Z'}}, {'blockNum': '0x80eb36', 'uniqueId': '0x5eba7630aa6df42a3ead54d02ca1a43cf9db94d2b37ac3a9a2c903bc34bfef86:log:29', 'hash': '0x5eba7630aa6df42a3ead54d02ca1a43cf9db94d2b37ac3a9a2c903bc34bfef86', 'from': '0x95e3181243425ee70e68575456ef2f1c0a7ce9dc', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 68879.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e95f43ef42705828000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:16:42.000Z'}}, {'blockNum': '0x80eb52', 'uniqueId': '0x395a3a7c70c3d8590c4d8890dc245e179a0280f655810ed06eb671a96ee3d899:log:15', 'hash': '0x395a3a7c70c3d8590c4d8890dc245e179a0280f655810ed06eb671a96ee3d899', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b6a400791c57f080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:22:02.000Z'}}, {'blockNum': '0x80eb7c', 'uniqueId': '0xf847c95633907cc2ee28b0b17854cc6397c86326233aaffd6190187cd0168802:log:26', 'hash': '0xf847c95633907cc2ee28b0b17854cc6397c86326233aaffd6190187cd0168802', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 52600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b2373a381418ae00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:30:50.000Z'}}, {'blockNum': '0x80eba0', 'uniqueId': '0xc4d81865ef6b526f72b9c530d5c45148a897e4d52bcb46bacf8364fbb5a42db6:log:20', 'hash': '0xc4d81865ef6b526f72b9c530d5c45148a897e4d52bcb46bacf8364fbb5a42db6', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 61423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d01bf5c4affa25c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:38:53.000Z'}}, {'blockNum': '0x80ebb2', 'uniqueId': '0x61750ede45dce43fb6d5faecbfb6104c326d2c226be1d1b4ee7f14b5ed9c1cd9:log:10', 'hash': '0x61750ede45dce43fb6d5faecbfb6104c326d2c226be1d1b4ee7f14b5ed9c1cd9', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x182532ffcc412d3c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:42:08.000Z'}}, {'blockNum': '0x80ebbf', 'uniqueId': '0x4e3a7b4bccd792457b38c9f0df05d71abd03255f03d12f8ba46284660cd7de6e:log:66', 'hash': '0x4e3a7b4bccd792457b38c9f0df05d71abd03255f03d12f8ba46284660cd7de6e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c407de377cf080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:46:24.000Z'}}, {'blockNum': '0x80ebd0', 'uniqueId': '0xfd84a55d8e0d2bf36221dd5bc7155784246ad3c2bea2787cd5a67110969e1fb4:log:75', 'hash': '0xfd84a55d8e0d2bf36221dd5bc7155784246ad3c2bea2787cd5a67110969e1fb4', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 54860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b9df7706b4349b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:49:09.000Z'}}, {'blockNum': '0x80ebeb', 'uniqueId': '0x4920edd61962a643f840aa25ffc4f4168ae60904974edebe9b86972070b2c095:log:20', 'hash': '0x4920edd61962a643f840aa25ffc4f4168ae60904974edebe9b86972070b2c095', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14e1d24a01ef0bb40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:55:36.000Z'}}, {'blockNum': '0x80ebee', 'uniqueId': '0x83907d2352ce5993f955bbb6ad0eddebfd5e00f0d48649c8364e9814a21f10d8:log:23', 'hash': '0x83907d2352ce5993f955bbb6ad0eddebfd5e00f0d48649c8364e9814a21f10d8', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c0d18e775e5b8780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:56:30.000Z'}}, {'blockNum': '0x80ebee', 'uniqueId': '0x4b585de0a9e7160807910f03939dc1ac9a2a417f353769b1efeb09821baabffc:log:24', 'hash': '0x4b585de0a9e7160807910f03939dc1ac9a2a417f353769b1efeb09821baabffc', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 113797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1818f29e81a766f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:56:30.000Z'}}, {'blockNum': '0x80ec00', 'uniqueId': '0xbda7e7ff4404bea68c6c83161daa6279177c25b7607238eb30702a802b51b17d:log:99', 'hash': '0xbda7e7ff4404bea68c6c83161daa6279177c25b7607238eb30702a802b51b17d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 51731.406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0af45d79b843a73b0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:00:13.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xa1c76940e9751349b02e2f7aa772baa4fe0c90e1a9c8ad4f7078907540fcf7d4:log:52', 'hash': '0xa1c76940e9751349b02e2f7aa772baa4fe0c90e1a9c8ad4f7078907540fcf7d4', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1818f29e81a766f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xc183cc85d9e952f4ab68bf10d8b67bb233253a9bb487179dfd66f46bcf8bd7a7:log:75', 'hash': '0xc183cc85d9e952f4ab68bf10d8b67bb233253a9bb487179dfd66f46bcf8bd7a7', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 111770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x17ab1057e12902280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xd32c35b5d62736c86b69661b8ec10290e24a1bfb1f4ee5b7514db30b440041d1:log:76', 'hash': '0xd32c35b5d62736c86b69661b8ec10290e24a1bfb1f4ee5b7514db30b440041d1', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a0e12c7e566dabc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec0b', 'uniqueId': '0xbc773a7a581e6180aee7e139f43a19259c92313eb88f12fd2fa10109d16a3b43:log:70', 'hash': '0xbc773a7a581e6180aee7e139f43a19259c92313eb88f12fd2fa10109d16a3b43', 'from': '0x560a5a98b65bf6f564b25d0b1359508411a3ec74', 'to': '0xc2e5a9fa08845c253f42f889a137f848b970690e', 'value': 3863.34966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd16ebf2eddc225c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:03:24.000Z'}}, {'blockNum': '0x80ec2e', 'uniqueId': '0x1e7c753bbd42e2000f256b4a27655264389312a54b994b4caaa606afcce7a5bd:log:21', 'hash': '0x1e7c753bbd42e2000f256b4a27655264389312a54b994b4caaa606afcce7a5bd', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 114235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1830b1171907cc0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:12:02.000Z'}}, {'blockNum': '0x80ec39', 'uniqueId': '0xe419cc4fbf45f066ff15bccf957e677d7d08b62725ed77538d2a17179742fb6c:log:4', 'hash': '0xe419cc4fbf45f066ff15bccf957e677d7d08b62725ed77538d2a17179742fb6c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'value': 214619.1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2d7287973e57b82b4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:13:59.000Z'}}, {'blockNum': '0x80ec41', 'uniqueId': '0xac0c3a48fbea57b6a50ccd145cdb619ec91dcdde28f346bb73f4ee75f23981f9:log:22', 'hash': '0xac0c3a48fbea57b6a50ccd145cdb619ec91dcdde28f346bb73f4ee75f23981f9', 'from': '0x4cf5b6035eb8e71262da447456e585e1b9b43eac', 'to': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:15:32.000Z'}}, {'blockNum': '0x80ec41', 'uniqueId': '0xd3419ba15b7ca6936db3d82ebcaa3223bddac1188d97039c56c0ec40dde56593:log:26', 'hash': '0xd3419ba15b7ca6936db3d82ebcaa3223bddac1188d97039c56c0ec40dde56593', 'from': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'to': '0x4cf5b6035eb8e71262da447456e585e1b9b43eac', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:15:32.000Z'}}, {'blockNum': '0x80ec49', 'uniqueId': '0x255b3d5610b166b1d1a700ee5b29faa77fbd6c52e6f908ec727f12a8fb3ae227:log:67', 'hash': '0x255b3d5610b166b1d1a700ee5b29faa77fbd6c52e6f908ec727f12a8fb3ae227', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0becf3603fbef9d40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:18:53.000Z'}}, {'blockNum': '0x80ec4f', 'uniqueId': '0xbec336e7a239014be36bdb99c518a033241bdc4bfe66d1a123a27095c0db0ee5:log:1', 'hash': '0xbec336e7a239014be36bdb99c518a033241bdc4bfe66d1a123a27095c0db0ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5e9679a877aaefee7a0077ce89804034bd85ca71', 'value': 23612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0500025362432b700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:20:24.000Z'}}, {'blockNum': '0x80ec57', 'uniqueId': '0xc0f673c11369bbd5261d4792801f18bf3ffc8cc1c5760e5fadcd5a3b23017d49:log:95', 'hash': '0xc0f673c11369bbd5261d4792801f18bf3ffc8cc1c5760e5fadcd5a3b23017d49', 'from': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 214619.1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2d7287973e57b82b4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:22:54.000Z'}}, {'blockNum': '0x80ec5b', 'uniqueId': '0x16ba4b4c6736fbd564d6fefad02cbba2c49ef065bcbb8158ca445dfcedbcc011:log:22', 'hash': '0x16ba4b4c6736fbd564d6fefad02cbba2c49ef065bcbb8158ca445dfcedbcc011', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 93615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13d2e11b0a79015c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:24:59.000Z'}}, {'blockNum': '0x80ec72', 'uniqueId': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09:log:93', 'hash': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09', 'from': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'to': '0x59523b19e6614f9e6acede42100619458ee01eab', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:29:51.000Z'}}, {'blockNum': '0x80ec72', 'uniqueId': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09:log:94', 'hash': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09', 'from': '0x59523b19e6614f9e6acede42100619458ee01eab', 'to': '0x66013071e12cf90df02f1b3c8149e00a16936f80', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:29:51.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x9cb10db6ccaf8b0a739c01dc0d97043e6f75b683446b9ca3ad89bcddd93a189d:log:92', 'hash': '0x9cb10db6ccaf8b0a739c01dc0d97043e6f75b683446b9ca3ad89bcddd93a189d', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13d2e11b0a79015c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x6f51d8f9d835a49179fd48b8730bd8321cc10dfbb0bcce10387bc83bd2625125:log:110', 'hash': '0x6f51d8f9d835a49179fd48b8730bd8321cc10dfbb0bcce10387bc83bd2625125', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0becf3603fbef9d40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x1de467c16c632f3043046fbba2c34f5069ce833ad70fcef563daf534d3340fba:log:116', 'hash': '0x1de467c16c632f3043046fbba2c34f5069ce833ad70fcef563daf534d3340fba', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1830b1171907cc0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec91', 'uniqueId': '0x3045bdeff466c877cc88d856c72b3b173955f0dc8f9180ae0641d785207e9d54:log:50', 'hash': '0x3045bdeff466c877cc88d856c72b3b173955f0dc8f9180ae0641d785207e9d54', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:36:48.000Z'}}, {'blockNum': '0x80ec93', 'uniqueId': '0x04b2991812aa302c2a37294a5556561d4bd9566f8596d2f990438530f57abb31:log:49', 'hash': '0x04b2991812aa302c2a37294a5556561d4bd9566f8596d2f990438530f57abb31', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0be989134988c8380000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:37:48.000Z'}}, {'blockNum': '0x80ecaa', 'uniqueId': '0x6f17d55bc279e064951a1fe263066bae92efaedeeae6131894350cd46de3ecd8:log:20', 'hash': '0x6f17d55bc279e064951a1fe263066bae92efaedeeae6131894350cd46de3ecd8', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:42:01.000Z'}}, {'blockNum': '0x80ecb2', 'uniqueId': '0x79e1e71dd207946a88e65a6e68f4ca0405791b6ffb7154407c95973151f8a4ef:log:1', 'hash': '0x79e1e71dd207946a88e65a6e68f4ca0405791b6ffb7154407c95973151f8a4ef', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8164980bf4a83e54992a2733938b5d8401fb3912', 'value': 19912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04376e82c5b3da200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:43:26.000Z'}}, {'blockNum': '0x80ecd0', 'uniqueId': '0x67ec7f71367185e6ffb2daa482d454d8df95df665833d7aaeaaaee53d31f2a57:log:155', 'hash': '0x67ec7f71367185e6ffb2daa482d454d8df95df665833d7aaeaaaee53d31f2a57', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 52072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b06d42aaeb84ca00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:50:49.000Z'}}, {'blockNum': '0x80ecd2', 'uniqueId': '0xde0fe8ca7ee563f64fb96be4198d41760ceef73ca7972014613c49535ace4212:log:87', 'hash': '0xde0fe8ca7ee563f64fb96be4198d41760ceef73ca7972014613c49535ace4212', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16f05d3df84114d80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:51:50.000Z'}}, {'blockNum': '0x80ece7', 'uniqueId': '0x8811d79136c1090aa214b12575be9ca66e7e7aadb51221f7b96e5833e1cdb3fb:log:20', 'hash': '0x8811d79136c1090aa214b12575be9ca66e7e7aadb51221f7b96e5833e1cdb3fb', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 97754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14b34144f51c5f280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:56:42.000Z'}}]}}
Number of returned transfers:  160
Answer is complete
 
symbol             LRC
group              CPI
date        2019-09-02
hour             16:00
exchange       binance
Name: 1040, dtype: object
HERE
 Symbol: LRC, Contract: 0xbbbbca6a901c926f240b89eacb641d8aec7aeafd
Datetime timestamps:  2019-09-02 16:00:00 2019-09-02 04:00:00 2019-09-03 04:00:00
Unix timestamps:  1567389600.0 1567476000.0
Hex Block Numbers:  0x813639 0x814f20
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8136a2', 'uniqueId': '0xbaf1d02a314e100bfaf170b73ca07f9b160db4dd2ad80b31f2977dbd51f6df62:log:78', 'hash': '0xbaf1d02a314e100bfaf170b73ca07f9b160db4dd2ad80b31f2977dbd51f6df62', 'from': '0x3477f07b252ccef3bf1945328dcf5381c28f2d44', 'to': '0x7154a02ba6eeab9300d056e25f3eea3481680f87', 'value': 47540, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0a1126084a48f6500000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T02:23:22.000Z'}}, {'blockNum': '0x813748', 'uniqueId': '0x1f0ceaf9406399c82d1cfb3859d5143ff8ac165c5708b8169e282cb3fb1ffff5:log:73', 'hash': '0x1f0ceaf9406399c82d1cfb3859d5143ff8ac165c5708b8169e282cb3fb1ffff5', 'from': '0xc8fcc48d1454a83589169294470549a2e1713dec', 'to': '0x4320fd268360941220bd571cccd17db16b4bebe8', 'value': 90425.99609488584, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x132600c93ed69218c883', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T02:59:55.000Z'}}, {'blockNum': '0x81376b', 'uniqueId': '0x6cc851b3a3d67e0701c0317cd28f0ecaae1e428fa9e44f9f39fb8f90e9fee10d:log:23', 'hash': '0x6cc851b3a3d67e0701c0317cd28f0ecaae1e428fa9e44f9f39fb8f90e9fee10d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8b7bffc6f0dce0569da00749559529b339d0e578', 'value': 39969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0876b94d072983e40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T03:09:07.000Z'}}, {'blockNum': '0x8138e8', 'uniqueId': '0x8b947f6d7db19d424ec3bd495376165dc7031feda0c42e8c065598a1f9b1c906:log:1', 'hash': '0x8b947f6d7db19d424ec3bd495376165dc7031feda0c42e8c065598a1f9b1c906', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8d046773ef3da3aaebffd3b79bf76e59f8c0c116', 'value': 231.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0c88e4386addb28000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T04:40:35.000Z'}}, {'blockNum': '0x81398c', 'uniqueId': '0xe0c53e0b212eace30d2017489fec17649e3e4a6636478ea3497e43d69321855e:log:102', 'hash': '0xe0c53e0b212eace30d2017489fec17649e3e4a6636478ea3497e43d69321855e', 'from': '0xe7adbe62f55be5699826410431702a7025b29ec3', 'to': '0x2dd9a734ffe4c75bbae173a13a5019b962eb1b76', 'value': 1.3677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x12fb0be7534d4000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T05:20:35.000Z'}}, {'blockNum': '0x8139a1', 'uniqueId': '0x06b857e988845013fc276c8c457b2d60c114c0b52785db1ac60ee64823cb016c:log:7', 'hash': '0x06b857e988845013fc276c8c457b2d60c114c0b52785db1ac60ee64823cb016c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'value': 34174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x073c9385426357380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T05:26:25.000Z'}}, {'blockNum': '0x8139bd', 'uniqueId': '0xf7a6e36010b5e5d8dfe92a5d8f85ae3f3576fbf9b230b833afd0e301024d9a01:log:32', 'hash': '0xf7a6e36010b5e5d8dfe92a5d8f85ae3f3576fbf9b230b833afd0e301024d9a01', 'from': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 34174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x073c9385426357380000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T05:34:09.000Z'}}, {'blockNum': '0x8139ee', 'uniqueId': '0x73a4fe9d5a2fdb5a10a3e9ed293f85c7a97611d8bc8c2664aee2296d5d2abd06:log:103', 'hash': '0x73a4fe9d5a2fdb5a10a3e9ed293f85c7a97611d8bc8c2664aee2296d5d2abd06', 'from': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 73836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0fa2a857301b1e300000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T05:47:01.000Z'}}, {'blockNum': '0x8139ef', 'uniqueId': '0x8e7e683ef03e3a489582105831b6ff559fa8c577c9c6fb7812c8cefc8c32438e:log:32', 'hash': '0x8e7e683ef03e3a489582105831b6ff559fa8c577c9c6fb7812c8cefc8c32438e', 'from': '0x337f74f8e386c33b9c4bd2ad9d04d4e2ec717418', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 450954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x5f7e43ec4f4f1fe80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T05:47:06.000Z'}}, {'blockNum': '0x8139f1', 'uniqueId': '0xf2f535759e111a6ab3f5eaf51dfa5c0bf0a4af58dbdfe3051544c514575a6cc7:log:108', 'hash': '0xf2f535759e111a6ab3f5eaf51dfa5c0bf0a4af58dbdfe3051544c514575a6cc7', 'from': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 66353.918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0e0d0d981ee015f30000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T05:47:16.000Z'}}, {'blockNum': '0x8139f1', 'uniqueId': '0xad312d4cf0ed91e276de1a3dcd755704ba34642c907487e7bf2d963f406e5a77:log:109', 'hash': '0xad312d4cf0ed91e276de1a3dcd755704ba34642c907487e7bf2d963f406e5a77', 'from': '0xa5a577a6623ecd02b5a72264a164bc518dfba4c3', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 19969.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x043a86eeb92c7cee0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T05:47:16.000Z'}}, {'blockNum': '0x813c86', 'uniqueId': '0xddc6f0d11dea7f1e5ab0557c58a7d8a4d328351c26fa9f3bd4fd20dc4a86cfa9:log:2', 'hash': '0xddc6f0d11dea7f1e5ab0557c58a7d8a4d328351c26fa9f3bd4fd20dc4a86cfa9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 30365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x066e1706db55c0540000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T08:10:23.000Z'}}, {'blockNum': '0x813d7c', 'uniqueId': '0x1e206820f961a1c32ce12d03c50697c0be805b4b7b54a3aa2438d312f43c28b1:log:10', 'hash': '0x1e206820f961a1c32ce12d03c50697c0be805b4b7b54a3aa2438d312f43c28b1', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 30365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x066e1706db55c0540000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T09:04:33.000Z'}}, {'blockNum': '0x813ead', 'uniqueId': '0xee0f622732b0ee17cf971ce1678336a00244e37a8046b9b05683d618efa731e4:log:79', 'hash': '0xee0f622732b0ee17cf971ce1678336a00244e37a8046b9b05683d618efa731e4', 'from': '0x540e718fc2578b04cda8c74b79b4a349fd3182d4', 'to': '0x8565c1da45f8bee6403225f775777979559926bd', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T10:15:41.000Z'}}, {'blockNum': '0x813f69', 'uniqueId': '0x8e6277e377dfbf254669e7d06ef9cddb10e391e3e5720f5d32bd45dd9b2cc67e:log:32', 'hash': '0x8e6277e377dfbf254669e7d06ef9cddb10e391e3e5720f5d32bd45dd9b2cc67e', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa0b1bf4d9cb24fd38b939ec867ad8bd74874e1ed', 'value': 125.045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06c75914fbb2b88000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T10:57:20.000Z'}}, {'blockNum': '0x813f88', 'uniqueId': '0x688a78b89966a0c0ef29cb7e6dce8a7c473f7724091ff4f86dad2477c80f8958:log:102', 'hash': '0x688a78b89966a0c0ef29cb7e6dce8a7c473f7724091ff4f86dad2477c80f8958', 'from': '0xa0b1bf4d9cb24fd38b939ec867ad8bd74874e1ed', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 125.045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x06c75914fbb2b88000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T11:04:51.000Z'}}, {'blockNum': '0x8141b7', 'uniqueId': '0xc43c1b2a9472a104f764ebdf77643e9dac49349dd0670bbdd3c505e924f728a1:log:43', 'hash': '0xc43c1b2a9472a104f764ebdf77643e9dac49349dd0670bbdd3c505e924f728a1', 'from': '0xf290ce9c670c5296e5b1fccaebcc8019e462996e', 'to': '0xbeefda62dcbc25504a2ebb765da4eec17fe54a07', 'value': 11445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x026c6f480dca89b40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T13:14:37.000Z'}}, {'blockNum': '0x81421a', 'uniqueId': '0x06a6769337f821ebcb228ea86213eb7d538ea72864fd6ff6328221d311712aa5:log:5', 'hash': '0x06a6769337f821ebcb228ea86213eb7d538ea72864fd6ff6328221d311712aa5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x487486ae9e475f0948fdf58e035f6152366e2679', 'value': 60892.016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0ce4f67a2c45ba580000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T13:39:37.000Z'}}, {'blockNum': '0x814261', 'uniqueId': '0xf7b5c7fa129039cedc5307733c519ba220c40eb2534b4d32ef5c274bc4af1cb8:log:56', 'hash': '0xf7b5c7fa129039cedc5307733c519ba220c40eb2534b4d32ef5c274bc4af1cb8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xfc81aff3af9a7eb7322294619569ffeeecfa9bb8', 'value': 6110, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x014b394893d524b80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T13:57:49.000Z'}}, {'blockNum': '0x81426d', 'uniqueId': '0x02b2f5a837a3760cfd81469aa4bd151d9cf84cb8d1f7d88e7dfe5f080cec80e7:log:1', 'hash': '0x02b2f5a837a3760cfd81469aa4bd151d9cf84cb8d1f7d88e7dfe5f080cec80e7', 'from': '0x487486ae9e475f0948fdf58e035f6152366e2679', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 60892.016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0ce4f67a2c45ba57ffff', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T14:00:48.000Z'}}, {'blockNum': '0x8142a7', 'uniqueId': '0x6b35e073b49defe0c9db5f8a39b3ed671edba3adf4e43bb25b48a65805420ec7:log:41', 'hash': '0x6b35e073b49defe0c9db5f8a39b3ed671edba3adf4e43bb25b48a65805420ec7', 'from': '0xbeefda62dcbc25504a2ebb765da4eec17fe54a07', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x026c6f480dca89b40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T14:14:00.000Z'}}, {'blockNum': '0x8142f9', 'uniqueId': '0x4e062e480092f6bc6c84eb1ffde717fcdc2202b547643febcd870a80bb161f23:log:37', 'hash': '0x4e062e480092f6bc6c84eb1ffde717fcdc2202b547643febcd870a80bb161f23', 'from': '0x7154a02ba6eeab9300d056e25f3eea3481680f87', 'to': '0x80afbbae1c941a5429b66739bb7cc312c2b56b2b', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01bc85dc2a89bb200000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T14:32:14.000Z'}}, {'blockNum': '0x81434a', 'uniqueId': '0x706020107fc68535d7a805f9d028481e7176d7631b68ab450c48d82255f97bf9:log:7', 'hash': '0x706020107fc68535d7a805f9d028481e7176d7631b68ab450c48d82255f97bf9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 12485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a4d02e47a28ff40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T14:50:24.000Z'}}, {'blockNum': '0x8143a1', 'uniqueId': '0x4cfb5855f63d3acb55a45cc428939e290f90ff2dfd6b20774570f4b0d32d97d4:log:23', 'hash': '0x4cfb5855f63d3acb55a45cc428939e290f90ff2dfd6b20774570f4b0d32d97d4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'value': 20686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x046163eb28dff2780000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T15:11:30.000Z'}}, {'blockNum': '0x8143ce', 'uniqueId': '0xcaf84e7f2c6a277c81a59d0fd776b723a4cbc3569d2495ab734e5d820f3c27de:log:1', 'hash': '0xcaf84e7f2c6a277c81a59d0fd776b723a4cbc3569d2495ab734e5d820f3c27de', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x337f74f8e386c33b9c4bd2ad9d04d4e2ec717418', 'value': 62458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0d39dadef35563a80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T15:21:29.000Z'}}, {'blockNum': '0x8143d7', 'uniqueId': '0xf2e6ca7bfeaa450a05566f5b4a5e17e136aadcb810fd45abb4789c4e16cb56cf:log:12', 'hash': '0xf2e6ca7bfeaa450a05566f5b4a5e17e136aadcb810fd45abb4789c4e16cb56cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 520384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6e3212bb07674b000000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T15:24:13.000Z'}}, {'blockNum': '0x814438', 'uniqueId': '0x2940f120f293a3b1e44097678dcd5a7e2232f364833bc4ec45a99a5163d039c3:log:122', 'hash': '0x2940f120f293a3b1e44097678dcd5a7e2232f364833bc4ec45a99a5163d039c3', 'from': '0x8b7bffc6f0dce0569da00749559529b339d0e578', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 39969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0876b94d072983e40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T15:44:59.000Z'}}, {'blockNum': '0x814438', 'uniqueId': '0x292cc4a2da76df71b62730929afd18f5c2f6c4f1f114a63c6386cb4eca0ebbbc:log:152', 'hash': '0x292cc4a2da76df71b62730929afd18f5c2f6c4f1f114a63c6386cb4eca0ebbbc', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 12497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a576b6d80e68a40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T15:44:59.000Z'}}, {'blockNum': '0x814489', 'uniqueId': '0x08c9c954a1dc7dbb7654f3d3e359a8c955b302ae42573c4224808fed857a2923:log:10', 'hash': '0x08c9c954a1dc7dbb7654f3d3e359a8c955b302ae42573c4224808fed857a2923', 'from': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'to': '0x0000000000c90bc353314b6911180ed7e06019a9', 'value': 2561.9258137678926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x8ae1dce1f50ac85b70', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:01:03.000Z'}}, {'blockNum': '0x814489', 'uniqueId': '0x08c9c954a1dc7dbb7654f3d3e359a8c955b302ae42573c4224808fed857a2923:log:12', 'hash': '0x08c9c954a1dc7dbb7654f3d3e359a8c955b302ae42573c4224808fed857a2923', 'from': '0x0000000000c90bc353314b6911180ed7e06019a9', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2561.9258137678926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x8ae1dce1f50ac85b70', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:01:03.000Z'}}, {'blockNum': '0x814489', 'uniqueId': '0x08c9c954a1dc7dbb7654f3d3e359a8c955b302ae42573c4224808fed857a2923:log:13', 'hash': '0x08c9c954a1dc7dbb7654f3d3e359a8c955b302ae42573c4224808fed857a2923', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2561.9258137678926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x8ae1dce1f50ac85b70', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:01:03.000Z'}}, {'blockNum': '0x814493', 'uniqueId': '0x2495d69882936a9f80dd090337ff06c3f3b37c19392c76259bd70bac7fa304b5:log:9', 'hash': '0x2495d69882936a9f80dd090337ff06c3f3b37c19392c76259bd70bac7fa304b5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 43713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0941afbd0a999a640000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:02:32.000Z'}}, {'blockNum': '0x814494', 'uniqueId': '0x407ed64d77e8a8a4e18812541e9d102d9aa52bf1a07996ad0e2f076878b2c318:log:6', 'hash': '0x407ed64d77e8a8a4e18812541e9d102d9aa52bf1a07996ad0e2f076878b2c318', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb3a3fa926a2b3b8aca4d698b0a1eaa350ffe0276', 'value': 5397, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0124926bb977ef340000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:02:35.000Z'}}, {'blockNum': '0x8144a1', 'uniqueId': '0xd0bd0cbd199062203ff6d2ef171ae1ebbb731dd32a2b1b0ff250de496208cd0c:log:7', 'hash': '0xd0bd0cbd199062203ff6d2ef171ae1ebbb731dd32a2b1b0ff250de496208cd0c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'value': 6811.6115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0171421959c919b2c000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:07:34.000Z'}}, {'blockNum': '0x8144a5', 'uniqueId': '0xcfff141803884b4344009cce73a1deb8fbb4bf17b661ece1236530888f3e788a:log:3', 'hash': '0xcfff141803884b4344009cce73a1deb8fbb4bf17b661ece1236530888f3e788a', 'from': '0x499438353ac81376dd6f18711bd68acfa04e48e3', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 6811.6115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0171421959c919b2c000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:08:52.000Z'}}, {'blockNum': '0x8144ba', 'uniqueId': '0xa089147962beb5cbe2e038e8141ceff356f092859e6d2d97c3c967cd74e7b319:log:10', 'hash': '0xa089147962beb5cbe2e038e8141ceff356f092859e6d2d97c3c967cd74e7b319', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 2085.9701492537315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7114a6aecd81385bb3', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:12:08.000Z'}}, {'blockNum': '0x8144d1', 'uniqueId': '0x21b80023d3932d61038e45ba7400ffc61590f8d870eaa0baa43ba4657f5b4dc1:log:21', 'hash': '0x21b80023d3932d61038e45ba7400ffc61590f8d870eaa0baa43ba4657f5b4dc1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'value': 38823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0838995b26ee2e3c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:17:09.000Z'}}, {'blockNum': '0x8144e7', 'uniqueId': '0xfbd10cba4f715615a2344debdbd6034447f30d5de49b70a3011bd6d326b6254a:log:3', 'hash': '0xfbd10cba4f715615a2344debdbd6034447f30d5de49b70a3011bd6d326b6254a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x12cff71edfc4e16eec6373f1fb37c5cf3ca71c19', 'value': 501000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6a1743b1143caf200000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:22:07.000Z'}}, {'blockNum': '0x814509', 'uniqueId': '0x4d4853880eec58cb844c3ece963a3c381de0dd172dc6acb59cd6964905e5daa9:log:5', 'hash': '0x4d4853880eec58cb844c3ece963a3c381de0dd172dc6acb59cd6964905e5daa9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 826483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0xaf03bbb3656521ec0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T16:30:55.000Z'}}, {'blockNum': '0x8145be', 'uniqueId': '0x7cf10dba8028d24c5aed0328d1b596e64be5348edae8064274190f552cbfe758:log:11', 'hash': '0x7cf10dba8028d24c5aed0328d1b596e64be5348edae8064274190f552cbfe758', 'from': '0x12cff71edfc4e16eec6373f1fb37c5cf3ca71c19', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 501000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x6a1743b1143caf200000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T17:11:57.000Z'}}, {'blockNum': '0x8145d9', 'uniqueId': '0xb3e7ed6b2f337b745d09ae717b2ad1cd4fa63eb2622b798f33e56d0e58e97404:log:117', 'hash': '0xb3e7ed6b2f337b745d09ae717b2ad1cd4fa63eb2622b798f33e56d0e58e97404', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1296.2258523672047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4644bf5107712b3aa9', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T17:18:09.000Z'}}, {'blockNum': '0x8145d9', 'uniqueId': '0xb3e7ed6b2f337b745d09ae717b2ad1cd4fa63eb2622b798f33e56d0e58e97404:log:119', 'hash': '0xb3e7ed6b2f337b745d09ae717b2ad1cd4fa63eb2622b798f33e56d0e58e97404', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0xce2443cd27706411d804750c9dacb95372f79909', 'value': 1296.2258523672047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4644bf5107712b3aa9', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T17:18:09.000Z'}}, {'blockNum': '0x8145d9', 'uniqueId': '0xb3e7ed6b2f337b745d09ae717b2ad1cd4fa63eb2622b798f33e56d0e58e97404:log:124', 'hash': '0xb3e7ed6b2f337b745d09ae717b2ad1cd4fa63eb2622b798f33e56d0e58e97404', 'from': '0xce2443cd27706411d804750c9dacb95372f79909', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1296.2258523672047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4644bf5107712b3aa9', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T17:18:09.000Z'}}, {'blockNum': '0x814607', 'uniqueId': '0xc29d53365f5316de0cd39f906a4f1e04aaca62611fa3812c607620efb3e30910:log:74', 'hash': '0xc29d53365f5316de0cd39f906a4f1e04aaca62611fa3812c607620efb3e30910', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 1271.9110158068625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x44f34faa00c24965fa', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T17:28:14.000Z'}}, {'blockNum': '0x814607', 'uniqueId': '0xc29d53365f5316de0cd39f906a4f1e04aaca62611fa3812c607620efb3e30910:log:76', 'hash': '0xc29d53365f5316de0cd39f906a4f1e04aaca62611fa3812c607620efb3e30910', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1271.9110158068625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x44f34faa00c24965fa', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T17:28:14.000Z'}}, {'blockNum': '0x814607', 'uniqueId': '0xc29d53365f5316de0cd39f906a4f1e04aaca62611fa3812c607620efb3e30910:log:81', 'hash': '0xc29d53365f5316de0cd39f906a4f1e04aaca62611fa3812c607620efb3e30910', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0xa539baaa3aca455c986bb1e25301cef936ce1b65', 'value': 1271.9110158068625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x44f34faa00c2480000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T17:28:14.000Z'}}, {'blockNum': '0x814637', 'uniqueId': '0x92bd050f65eaa9a99584d46824c38ea7fdf207ac169a3bebbf046dad2a07d337:log:34', 'hash': '0x92bd050f65eaa9a99584d46824c38ea7fdf207ac169a3bebbf046dad2a07d337', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 23671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0503351d7daabf7c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T17:37:39.000Z'}}, {'blockNum': '0x8146cd', 'uniqueId': '0xc790aedf9248c0f7f93f2045325e8ef78a5812a6842ffb1357fbccb0ea47ee20:log:2', 'hash': '0xc790aedf9248c0f7f93f2045325e8ef78a5812a6842ffb1357fbccb0ea47ee20', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x87304a02b785af81799315098fb57347e205c098', 'value': 69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x03bd913e6c1df40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T18:13:00.000Z'}}, {'blockNum': '0x8146d0', 'uniqueId': '0x36e62892cd776eab1f9206c7d1e46caae48d3a42f06d56ffaff4eeda1a9a0767:log:14', 'hash': '0x36e62892cd776eab1f9206c7d1e46caae48d3a42f06d56ffaff4eeda1a9a0767', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02a4d02e47a28ff40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T18:14:10.000Z'}}, {'blockNum': '0x8146d6', 'uniqueId': '0x68cc825f4f924f7e245a6758cc3096dcf42df930c7824d38dda31d8dbb534a82:log:6', 'hash': '0x68cc825f4f924f7e245a6758cc3096dcf42df930c7824d38dda31d8dbb534a82', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 23671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0503351d7daabf7c0000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T18:15:31.000Z'}}, {'blockNum': '0x8146e7', 'uniqueId': '0x857104ca894876f1cdfcaa820ca4fe1ca30a65205c948450b1e313e42b6a6624:log:0', 'hash': '0x857104ca894876f1cdfcaa820ca4fe1ca30a65205c948450b1e313e42b6a6624', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0ea103756d985105cb4b74dfc02a59e28e3ffc02', 'value': 74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0402f4cfee62e80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T18:19:20.000Z'}}, {'blockNum': '0x814722', 'uniqueId': '0x3ca9abc5120555205e7cc4d8aac1013612af156fa21d4e2ab10ece47a5593ce2:log:7', 'hash': '0x3ca9abc5120555205e7cc4d8aac1013612af156fa21d4e2ab10ece47a5593ce2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x87304a02b785af81799315098fb57347e205c098', 'value': 8764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x01db18eeae5683700000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T18:31:12.000Z'}}, {'blockNum': '0x8147f0', 'uniqueId': '0x2cb6fb7369f149b391ea4f4b0fd9a96a34b864645862931760545083f82497ff:log:65', 'hash': '0x2cb6fb7369f149b391ea4f4b0fd9a96a34b864645862931760545083f82497ff', 'from': '0x0ec8794d6ee52496cf3de7c3520132d68048085c', 'to': '0x06050dd4d1a99e0569f01c246c5478c485432cc1', 'value': 40.5343678798895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x02328700d393d13760', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T19:12:17.000Z'}}, {'blockNum': '0x814855', 'uniqueId': '0x225e0a623ba69ffc7b0c4302821180c21e4ef6420a330435fe350089deb68b2b:log:11', 'hash': '0x225e0a623ba69ffc7b0c4302821180c21e4ef6420a330435fe350089deb68b2b', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 43713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0941afbd0a999a640000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T19:33:57.000Z'}}, {'blockNum': '0x8148a2', 'uniqueId': '0xb49233acca3ac430a89a07149667f98a528a4a4845be22cf134b026ae1a0e4a9:log:45', 'hash': '0xb49233acca3ac430a89a07149667f98a528a4a4845be22cf134b026ae1a0e4a9', 'from': '0x6e576fa82b068e05637ce3e370703e6ae9e69ed9', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 4934.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x010b7a6490048ee20000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T19:50:56.000Z'}}, {'blockNum': '0x8148a2', 'uniqueId': '0x069a2173b54313854dcf33434a66303a548810034cf548b17a3c7fd58f58a73e:log:46', 'hash': '0x069a2173b54313854dcf33434a66303a548810034cf548b17a3c7fd58f58a73e', 'from': '0x8c6cef6c1ecd4f328802121a0a8208971ca863dc', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 59509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0c99fd464fce20b40000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T19:50:56.000Z'}}, {'blockNum': '0x8148a2', 'uniqueId': '0xa0f9bb872b54869506aa2d455b0ff5f36799d2647e39c4f68df27bd3f25cc175:log:47', 'hash': '0xa0f9bb872b54869506aa2d455b0ff5f36799d2647e39c4f68df27bd3f25cc175', 'from': '0x337f74f8e386c33b9c4bd2ad9d04d4e2ec717418', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 62458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x0d39dadef35563a80000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T19:50:56.000Z'}}, {'blockNum': '0x814955', 'uniqueId': '0xe716bd0450b968ef09120cd70e46be237ca940ab255b5a72b7e36b20a17de072:log:23', 'hash': '0xe716bd0450b968ef09120cd70e46be237ca940ab255b5a72b7e36b20a17de072', 'from': '0xcb8c97649640d7a45ae45767a64d1dcca6dc0948', 'to': '0x15b06b010b19144da07f5784086651cab404061b', 'value': 1.36770120988953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x12fb0d0106566090', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T20:28:30.000Z'}}, {'blockNum': '0x814b5c', 'uniqueId': '0xf5049ff13f1f19414480c22636cf8f32cd5be0599248949d9ca9c6838463cca3:log:91', 'hash': '0xf5049ff13f1f19414480c22636cf8f32cd5be0599248949d9ca9c6838463cca3', 'from': '0xfde7cd2c2b63bf7d58016982d0ee48707913f3e2', 'to': '0xf8e014085b876af7517f06f4db90fd379241a5c9', 'value': 2311.59999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7d4fe4f09bf4ec1c00', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T22:20:15.000Z'}}, {'blockNum': '0x814b6b', 'uniqueId': '0x8fb98d8e5fd960521f2993f631e06917b496a17c26d08f76c589d750839808ed:log:9', 'hash': '0x8fb98d8e5fd960521f2993f631e06917b496a17c26d08f76c589d750839808ed', 'from': '0xf8e014085b876af7517f06f4db90fd379241a5c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2311.59999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x7d4fe4f09bf4ec1c00', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T22:24:02.000Z'}}, {'blockNum': '0x814b8e', 'uniqueId': '0x55f4477ad84d4556674a833ede97fa013090a01786ed8de771ebbac9270a5593:log:20', 'hash': '0x55f4477ad84d4556674a833ede97fa013090a01786ed8de771ebbac9270a5593', 'from': '0xa60abcab0496626f9893283b1ddf9ea3734db2c9', 'to': '0x25b980ec3c2246ec9393a9df6d39bc68a72426a7', 'value': 1.36770120988953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x12fb0d0106566090', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-02T22:31:06.000Z'}}, {'blockNum': '0x814d97', 'uniqueId': '0x70054115fc9e2892efc6d509d156d8af85f155c16019fe6a46fb502887fa3970:log:106', 'hash': '0x70054115fc9e2892efc6d509d156d8af85f155c16019fe6a46fb502887fa3970', 'from': '0x68d1c2a06359560b2b1db2ca5ec053c9859bad9d', 'to': '0x06df60177a0bd3a6e8fcee78b1b5127537426055', 'value': 1385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'LRC', 'category': 'erc20', 'rawContract': {'value': '0x4b14bc71f49c040000', 'address': '0xbbbbca6a901c926f240b89eacb641d8aec7aeafd', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-03T00:30:57.000Z'}}]}}
Number of returned transfers:  62
Answer is complete
 
symbol             QLC
group              CPI
date        2019-09-04
hour             16:00
exchange       binance
Name: 1041, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: QLC, Contract: 
Datetime timestamps:  2019-09-04 16:00:00 2019-09-04 04:00:00 2019-09-05 04:00:00
Unix timestamps:  1567562400.0 1567648800.0
Hex Block Numbers:  0x816838 0x81815d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EDO
group              CPI
date        2019-09-06
hour             18:00
exchange       binance
Name: 1042, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2019-09-06 18:00:00 2019-09-06 06:00:00 2019-09-07 06:00:00
Unix timestamps:  1567742400.0 1567828800.0
Hex Block Numbers:  0x819c75 0x81b57f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            DATA
group              CPI
date        2019-09-08
hour             18:00
exchange       binance
Name: 1043, dtype: object
HERE
 Symbol: DATA, Contract: 0x8f693ca8d21b157107184d29d398a8d082b38b76
Datetime timestamps:  2019-09-08 18:00:00 2019-09-08 06:00:00 2019-09-09 06:00:00
Unix timestamps:  1567915200.0 1568001600.0
Hex Block Numbers:  0x81ce7b 0x81e777
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             BNT
group              CPI
date        2019-09-09
hour             20:00
exchange       binance
Name: 1044, dtype: object
HERE
 Symbol: BNT, Contract: 0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c
Datetime timestamps:  2019-09-09 20:00:00 2019-09-09 08:00:00 2019-09-10 08:00:00
Unix timestamps:  1568008800.0 1568095200.0
Hex Block Numbers:  0x81e999 0x8202cb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x81e99c', 'uniqueId': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62:log:115', 'hash': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.0694988291698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9ef553632dc49730', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:00:45.000Z'}}, {'blockNum': '0x81e99c', 'uniqueId': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62:log:119', 'hash': '0x25ece82fd631d70930e9fb065e14d43f5940bd40beabdc4afed1d21a3df38e62', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 491.0694988291698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9ef553632dc49730', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:00:45.000Z'}}, {'blockNum': '0x81e9a2', 'uniqueId': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14:log:126', 'hash': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.93560066617425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f516a754aa33d2b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:03:06.000Z'}}, {'blockNum': '0x81e9a2', 'uniqueId': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14:log:130', 'hash': '0x195513fa1032bd6f8ab3d09a056026a69e3bdb7be0bcedc3608880efb2b9fe14', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1c29f12d94ad2e6b5321ce226b4550f83ce88fca', 'value': 441.93560066617425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f516a754aa33d2b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:03:06.000Z'}}, {'blockNum': '0x81e9c2', 'uniqueId': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659:log:48', 'hash': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.1185968032061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a83e25454c49caa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:09:55.000Z'}}, {'blockNum': '0x81e9c2', 'uniqueId': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659:log:52', 'hash': '0x82e4f818c45b0b0380910e5e4e6b179113b33db347d4988877c4fb21dfe51659', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 489.1185968032061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a83e25454c49caa0a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:09:55.000Z'}}, {'blockNum': '0x81e9d8', 'uniqueId': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5:log:64', 'hash': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.5496949588759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27edae2d28561e07e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:29.000Z'}}, {'blockNum': '0x81e9d8', 'uniqueId': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5:log:68', 'hash': '0x301dc219df57c7d83eec3eee55b449d361d9467bdae376166996f2432e4cebb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.5496949588759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27edae2d28561e07e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:29.000Z'}}, {'blockNum': '0x81e9da', 'uniqueId': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e:log:19', 'hash': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 158.68369132873448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a2db88570f3b7a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:44.000Z'}}, {'blockNum': '0x81e9da', 'uniqueId': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e:log:23', 'hash': '0xe066be732efbeae38386ab954dde07f49081f2c8242a6abf4ff69dcf09cc2d4e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 158.68369132873448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x089a2db88570f3b7a1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:13:44.000Z'}}, {'blockNum': '0x81e9f1', 'uniqueId': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d:log:70', 'hash': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.0039222144626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e0c59cdc4923e54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:19:29.000Z'}}, {'blockNum': '0x81e9f1', 'uniqueId': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d:log:74', 'hash': '0x5ce4498c2cff4c573fb4024880cbd95971bba991d419ad77c194b0750c132a3d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 491.0039222144626, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9e0c59cdc4923e54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:19:29.000Z'}}, {'blockNum': '0x81e9f6', 'uniqueId': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471:log:132', 'hash': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 981.9133204092605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353ac8e2833248bc61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:21:26.000Z'}}, {'blockNum': '0x81e9f6', 'uniqueId': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471:log:136', 'hash': '0x3ae1fc47ffca9954e913dee5234d81dfdf98a4118546caf9029db1f1cfb8c471', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 981.9133204092605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353ac8e2833248bc61', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:21:26.000Z'}}, {'blockNum': '0x81ea0a', 'uniqueId': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc:log:30', 'hash': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc', 'from': '0xdb9272880400e0ae8e522994f6a959122d94c7b7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 364.5840694242839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c39ecf7e00cbf28d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:25:47.000Z'}}, {'blockNum': '0x81ea0a', 'uniqueId': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc:log:34', 'hash': '0x03f3d3ff5c02d4dc5e95f5db3ddfeb932a1ab2e76b225317579b46cd97df02bc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 364.5840694242839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13c39ecf7e00cbf28d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:25:47.000Z'}}, {'blockNum': '0x81ea2d', 'uniqueId': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f:log:156', 'hash': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 972.6371818833696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ba0d6bab973f2ef0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:33:50.000Z'}}, {'blockNum': '0x81ea2d', 'uniqueId': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f:log:160', 'hash': '0x9bd7bc48e6260f56f2c20522e3a383e8a780e334a8528e7545ac2b5e514f552f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 972.6371818833696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ba0d6bab973f2ef0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:33:50.000Z'}}, {'blockNum': '0x81ea2f', 'uniqueId': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b:log:92', 'hash': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 77.98910020606719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043a50f16ef6faa261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:34:22.000Z'}}, {'blockNum': '0x81ea2f', 'uniqueId': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b:log:96', 'hash': '0xaf2e0e417d37c253ffe97566dd2ee36d39ae5bd9e3db78ccf2d09decf815332b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8a7bdf8388add5a24b357d947911be3a07801c56', 'value': 77.98910020606719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043a50f16ef6faa261', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:34:22.000Z'}}, {'blockNum': '0x81ea3c', 'uniqueId': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8:log:73', 'hash': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.4734979280794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ec9f785c9c8ec736', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:39:20.000Z'}}, {'blockNum': '0x81ea3c', 'uniqueId': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8:log:77', 'hash': '0xcbd719df630c4b5e512e6129994efdec51dfc40f1ad802942e0e3bb0fbecf9a8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.4734979280794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ec9f785c9c8ec736', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:39:20.000Z'}}, {'blockNum': '0x81ea42', 'uniqueId': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298:log:145', 'hash': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.03478118329419377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b914d4b1e4064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:40:55.000Z'}}, {'blockNum': '0x81ea42', 'uniqueId': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298:log:149', 'hash': '0xc52a9c4e8024412ad211926202f2d8393d95abab2498dfa0b7b620fe28d64298', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 0.03478118329419377, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b914d4b1e4064', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:40:55.000Z'}}, {'blockNum': '0x81ea49', 'uniqueId': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b:log:40', 'hash': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 494.00081952251605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a37806f76c9cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:41:43.000Z'}}, {'blockNum': '0x81ea49', 'uniqueId': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b:log:44', 'hash': '0x233ce8a858f37ba368589b8a0a28ae4b76ee6f3335f1889c91b2ab6c7343ac9b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 494.00081952251605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ac7a37806f76c9cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:41:43.000Z'}}, {'blockNum': '0x81ea58', 'uniqueId': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37:log:24', 'hash': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1352.9001681716124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495742eefad332710d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:45:29.000Z'}}, {'blockNum': '0x81ea58', 'uniqueId': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37:log:28', 'hash': '0x18b7c802cf864145bd572330812810e067b7edfab1706a4214e375a83509cf37', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1352.9001681716124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x495742eefad332710d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:45:29.000Z'}}, {'blockNum': '0x81ea61', 'uniqueId': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6:log:114', 'hash': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2700.4481366930668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x92643f08bc23c016ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:47:22.000Z'}}, {'blockNum': '0x81ea61', 'uniqueId': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6:log:117', 'hash': '0xdd3b7a774987d15fe2307d1aa9b379d9c73efddd370aab55ddeffeb8a3d807d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x760f6df021517d001e43469eeaf2cd00c71f8f7a', 'value': 2700.4481366930668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x92643f08bc23c016ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:47:22.000Z'}}, {'blockNum': '0x81ea69', 'uniqueId': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139:log:111', 'hash': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1300.008379265213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46793d8d33be50a645', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:50:13.000Z'}}, {'blockNum': '0x81ea69', 'uniqueId': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139:log:115', 'hash': '0xcd3fbd087cc4f2aeaf0496e8300d6714c82c74b9572b9f0707c4f5a74e2f7139', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1300.008379265213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46793d8d33be50a645', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:50:13.000Z'}}, {'blockNum': '0x81ea71', 'uniqueId': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8:log:49', 'hash': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8', 'from': '0x9300de97702dfbe25f4f71c764824670abac6331', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:52:21.000Z'}}, {'blockNum': '0x81ea71', 'uniqueId': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8:log:52', 'hash': '0xcd553661acd1248415521c2a40187e8a5aedf2a4bdcc61305ae858bfd14fd7f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T06:52:21.000Z'}}, {'blockNum': '0x81ea99', 'uniqueId': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d:log:82', 'hash': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 785.5394309042101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a958cae70ebf42aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:00:57.000Z'}}, {'blockNum': '0x81ea99', 'uniqueId': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d:log:86', 'hash': '0xf7eaf996cfb14b62742351218149d7fbd28d318f3f6b640396da4b06883fcf7d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 785.5394309042101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a958cae70ebf42aa1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:00:57.000Z'}}, {'blockNum': '0x81ea9d', 'uniqueId': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3:log:108', 'hash': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.168884508743058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dada5f7d424164', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:01:41.000Z'}}, {'blockNum': '0x81ea9d', 'uniqueId': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3:log:112', 'hash': '0x8e2911a3aba7b106e47c4289c4770f1dc53e24f6a43ec0642e4b30826dbd50b3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.168884508743058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x39dada5f7d424164', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:01:41.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4:log:64', 'hash': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 842.3700391788294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2daa3b8f90be02b525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4:log:68', 'hash': '0x4b579c6f483336d885550cecacf29f0f2e66cfbd96ee60be13b3882bce48f0d4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 842.3700391788294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2daa3b8f90be02b525', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79:log:91', 'hash': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.2893072986367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ea1117f5cdab0e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79:log:95', 'hash': '0x382a480862c9e8a7d33472225f22a42e5acff7d3e10d64d0367efa1937906c79', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.2893072986367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27ea1117f5cdab0e3f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878:log:105', 'hash': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1534.574283231964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53307f0c1392e778fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eac6', 'uniqueId': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878:log:109', 'hash': '0xbf53345a9e41603f39e45b6912f6f5d4c293ebf51367eb3b9c171499906af878', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1534.574283231964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x53307f0c1392e778fc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:12:16.000Z'}}, {'blockNum': '0x81eacf', 'uniqueId': '0x8caa5ac349507a6e6e4a03831cf1296a5cd278d757e857a253a1b3e211211250:log:126', 'hash': '0x8caa5ac349507a6e6e4a03831cf1296a5cd278d757e857a253a1b3e211211250', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x3667d5c9e58b6d0a5a8fbe58f3862dcd2eafadfb', 'value': 475.5570555258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c7ae0e6436063a00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:13:33.000Z'}}, {'blockNum': '0x81eae2', 'uniqueId': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274:log:17', 'hash': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1205.6239339948668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415b64a44c8906066d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:19:21.000Z'}}, {'blockNum': '0x81eae2', 'uniqueId': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274:log:21', 'hash': '0x6d7baa0d5d14ace67d59010d05a4907aa27a122cdf243346675676f4a52e4274', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1205.6239339948668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x415b64a44c8906066d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:19:21.000Z'}}, {'blockNum': '0x81eae7', 'uniqueId': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1:log:24', 'hash': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1', 'from': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 147.66779699993228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08014d66fe71751f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:20:21.000Z'}}, {'blockNum': '0x81eae7', 'uniqueId': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1:log:28', 'hash': '0xd7d4440122ee7311a148ee75303c97bdecd71f0a4d872da231a4e7a354b36ea1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 147.66779699993228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08014d66fe71751f4b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:20:21.000Z'}}, {'blockNum': '0x81eafe', 'uniqueId': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828:log:119', 'hash': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828', 'from': '0xc18166e01970be040d8c7761cdd1c3372ae1edf0', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 284.5828059063387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d613a2fff410e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:24:14.000Z'}}, {'blockNum': '0x81eafe', 'uniqueId': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828:log:123', 'hash': '0x49fb682c8d8f24fb94bf5f6546c251fa295dd09aa79e9b860f16472415aee828', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 284.5828059063387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f6d613a2fff410e1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:24:14.000Z'}}, {'blockNum': '0x81eb12', 'uniqueId': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9:log:32', 'hash': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 251.4792684694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da1f9d6475b92f108', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:29:23.000Z'}}, {'blockNum': '0x81eb12', 'uniqueId': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9:log:36', 'hash': '0xcce66b120e4795548d7a3c8356a6a46a780dab9b007b7531950893456c635df9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 251.4792684694989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0da1f9d6475b92f108', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:29:23.000Z'}}, {'blockNum': '0x81eb1b', 'uniqueId': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75:log:98', 'hash': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 638.3456891082857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229ad37624c14fadf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:31:59.000Z'}}, {'blockNum': '0x81eb1b', 'uniqueId': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75:log:102', 'hash': '0x5fdadeba9493cdf89e95f1584b7661a81d6670a694eab84b86e67a74f907fa75', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 638.3456891082857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x229ad37624c14fadf6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:31:59.000Z'}}, {'blockNum': '0x81eb28', 'uniqueId': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde:log:103', 'hash': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 326.66697627910935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11b56a3c2b87449936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:35:32.000Z'}}, {'blockNum': '0x81eb28', 'uniqueId': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde:log:107', 'hash': '0x074953c89b8a325bf937191bc924e11d9f4a2c0cb82485df3daf4b36d1d5bbde', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 326.66697627910935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x11b56a3c2b87449936', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:35:32.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25:log:108', 'hash': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.30219071752725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a788ddf525b424eb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25:log:112', 'hash': '0x021a4d795f640aaf42f389e4a912fbc0e131c53470bb4609aba91b6e77bf7a25', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 488.30219071752725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a788ddf525b424eb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1:log:133', 'hash': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 500.4159090923124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b20aa7200997288de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb2f', 'uniqueId': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1:log:137', 'hash': '0xe133d88cd9fbf8dbe8aa69b8cb38f6ef0c11d4e49e01d566e14666ac4d520ab1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 500.4159090923124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b20aa7200997288de', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:37:28.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8:log:51', 'hash': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8', 'from': '0xe0569fd1c3f0affd7e08131a16c06f3381c9355a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.93545480278516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1afe3e19f7d09573b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8:log:55', 'hash': '0xcea17eb11595f0bcf815035a0e0d34fa5a5411f430a59f27e04d4058402dc2d8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.93545480278516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1afe3e19f7d09573b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5:log:135', 'hash': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 368.2912419554568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f71155449271c8f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb33', 'uniqueId': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5:log:139', 'hash': '0x112299e8def03932659c266f765262222171f892837f1e0de6ca0c9bd7c0dca5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 368.2912419554568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f71155449271c8f4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:38:18.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132:log:14', 'hash': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132', 'from': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2172.4042042247193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c42a21da038cda07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132:log:18', 'hash': '0x521f012630b7d653ac8d73a2d874d14bedd0c3d16a7629fbd1c0bd3278628132', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2172.4042042247193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x75c42a21da038cda07', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107:log:52', 'hash': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.53803694888538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4f8657b0510d0d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107:log:56', 'hash': '0x76ea0af7c32514d1337564a4364c553587fcdbb1c4643a6d6fca163f8ef5f107', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 245.53803694888538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4f8657b0510d0d3b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758:log:92', 'hash': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 859.4937236469076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e97df1bdd2bafd7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3c', 'uniqueId': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758:log:96', 'hash': '0x08808419cff53ee700d431d510c27c9978673c1639c6bdada656ad3e28801758', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc04b5a4556d00bca8eac5f5acca31981a6597409', 'value': 859.4937236469076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2e97df1bdd2bafd7bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:08.000Z'}}, {'blockNum': '0x81eb3d', 'uniqueId': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4:log:108', 'hash': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 125.26535521166481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06ca67f0e176687247', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:15.000Z'}}, {'blockNum': '0x81eb3d', 'uniqueId': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4:log:112', 'hash': '0x20adecbefc0c8cebdbac857dcb06b4f43646a17adaf6a7af677f5b6ec576bdc4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 125.26535521166481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06ca67f0e176687247', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:41:15.000Z'}}, {'blockNum': '0x81eb44', 'uniqueId': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1:log:94', 'hash': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 92.04830027251134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04fd6d4167b187cbe5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:42:42.000Z'}}, {'blockNum': '0x81eb44', 'uniqueId': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1:log:98', 'hash': '0x3c3aeacb8a83a2fb71d51bb2cd9a94a82f59435f243c859d9051deeaec8018a1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 92.04830027251134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04fd6d4167b187cbe5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:42:42.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:29', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:33', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eb9a', 'uniqueId': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17:log:36', 'hash': '0x5e63c60aece1c4442d5a7cb39dad634bce70bccab6450d77c5cb475f2e0e4c17', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2.804757917050273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26ec80771ebefc78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:56:58.000Z'}}, {'blockNum': '0x81eba2', 'uniqueId': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf:log:29', 'hash': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 738.6624969450271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280b005b5eaf670beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:59:02.000Z'}}, {'blockNum': '0x81eba2', 'uniqueId': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf:log:33', 'hash': '0x3a198d65354f340ad740f1166c1fba9d991041d46266d46430cfbcef085fbfbf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 738.6624969450271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x280b005b5eaf670beb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T07:59:02.000Z'}}, {'blockNum': '0x81ebb0', 'uniqueId': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35:log:97', 'hash': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 996.0203909220442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35fe8f4466c225fca6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:01:49.000Z'}}, {'blockNum': '0x81ebb0', 'uniqueId': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35:log:101', 'hash': '0xae1ad30328832fe6fb1b2bd3aad8e4e6fbe95cf502da0c3b4b1e05d38209dc35', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 996.0203909220442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35fe8f4466c225fca6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:01:49.000Z'}}, {'blockNum': '0x81ebb4', 'uniqueId': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6:log:93', 'hash': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6', 'from': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 136.42750988523056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07654fe16aac42e56e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:02:26.000Z'}}, {'blockNum': '0x81ebb4', 'uniqueId': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6:log:97', 'hash': '0xc1284920f3132f797c4cce2eb20a8189b522edea282ce15018bcd3da17fce5a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 136.42750988523056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07654fe16aac42e56e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:02:26.000Z'}}, {'blockNum': '0x81ebb8', 'uniqueId': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788:log:41', 'hash': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.790485370715651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9cba8f86e3bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:03:20.000Z'}}, {'blockNum': '0x81ebb8', 'uniqueId': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788:log:45', 'hash': '0xa68489a04fa4bb9984158c14af78d30df43bdb71135933e800ae70b092f8d788', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.790485370715651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26b9cba8f86e3bbd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:03:20.000Z'}}, {'blockNum': '0x81ebbc', 'uniqueId': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a:log:97', 'hash': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a', 'from': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.3736076293722583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131008dc797ff863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:05:31.000Z'}}, {'blockNum': '0x81ebbc', 'uniqueId': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a:log:100', 'hash': '0xe85b60aaaa872e2c76badcda6d72bab2b0eaa4f2d54ea85b08c53f66875b7f9a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.3736076293722583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x131008dc797ff863', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:05:31.000Z'}}, {'blockNum': '0x81ebd0', 'uniqueId': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243:log:71', 'hash': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 99.69631595627632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056790772604f55f86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:09:29.000Z'}}, {'blockNum': '0x81ebd0', 'uniqueId': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243:log:75', 'hash': '0x021dff79f8c4bece787bb3e6df429565139751ada0d2e258b6614d8ee1c3c243', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 99.69631595627632, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x056790772604f55f86', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:09:29.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:97', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:100', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebe0', 'uniqueId': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e:log:103', 'hash': '0x77b6a1be85c1276f0920d6e6049c8d8e8a134e46c07cce3c2882a5fba82cc64e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 10.091680102339232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8c0cd995c6cec245', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:13:53.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c:log:76', 'hash': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6067.535546795697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0148ebf888a12d085719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c:log:80', 'hash': '0xccc599639966c2df0ce68b9225fe9944946b7704fa7047aa7d87b9fe4327884c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 6067.535546795697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0148ebf888a12d085719', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360:log:96', 'hash': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6192.1770756091655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014fadb832b4d1781afa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360:log:100', 'hash': '0x5ddfbfa304e440504f45684953f62f6ceabc3adbd568474136383f4268a32360', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 6192.1770756091655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x014fadb832b4d1781afa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319:log:121', 'hash': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 368.42396666754195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f8e8ddb0b731f6c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf5', 'uniqueId': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319:log:125', 'hash': '0x99bcd2606a6a0d1cc5de0705ee1dda2b37220571768c7ab1174f4bda86f9e319', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 368.42396666754195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13f8e8ddb0b731f6c4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:26.000Z'}}, {'blockNum': '0x81ebf8', 'uniqueId': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e:log:97', 'hash': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 252.271037108751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacf6c3a9427d3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:39.000Z'}}, {'blockNum': '0x81ebf8', 'uniqueId': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e:log:101', 'hash': '0xdce08203614ff14f3806deb7199cf80070a7761f4ac2562023ecf0f5f469d81e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 252.271037108751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dacf6c3a9427d3905', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:16:39.000Z'}}, {'blockNum': '0x81ec27', 'uniqueId': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9:log:71', 'hash': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 527.8889070629579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9dee241934cbc149', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:16.000Z'}}, {'blockNum': '0x81ec27', 'uniqueId': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9:log:75', 'hash': '0xbd42e9c5cad5572e42363cafb1a45f7efd8af64f52d3b4785b9eee02cf2cd2e9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 527.8889070629579, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9dee241934cbc149', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:16.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe:log:70', 'hash': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 294.09339163776656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff15d9d855ee93b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe:log:74', 'hash': '0xac1f4604860326a7109d62b704a83e23ba2528e8a005161ea8bc2e87d7c021fe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 294.09339163776656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff15d9d855ee93b2e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca:log:102', 'hash': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.82129148889216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a87ce1dfc22003e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec2b', 'uniqueId': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca:log:106', 'hash': '0x985aeb61e390a077bd530379a1991bc8c6ef64a05ed1afe99a377ea080e135ca', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 122.82129148889216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06a87ce1dfc22003e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:25:45.000Z'}}, {'blockNum': '0x81ec7b', 'uniqueId': '0x43c2308d999c9e430f15800d1b7f6aa23fc41339cfc47285939123e6aab84ee3:log:3', 'hash': '0x43c2308d999c9e430f15800d1b7f6aa23fc41339cfc47285939123e6aab84ee3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:43:35.000Z'}}, {'blockNum': '0x81ec7d', 'uniqueId': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9:log:29', 'hash': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:44:01.000Z'}}, {'blockNum': '0x81ec7d', 'uniqueId': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9:log:32', 'hash': '0xa9072884e8c338b454ffee414a1349bef16b2b437672b6ce25e60b6ae45840e9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x376719613641380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:44:01.000Z'}}, {'blockNum': '0x81ec83', 'uniqueId': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5:log:94', 'hash': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 579.0628002644288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f641c54d5943fc5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:45:54.000Z'}}, {'blockNum': '0x81ec83', 'uniqueId': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5:log:98', 'hash': '0xcf330efe2d1f3790033f203932a3f385b458506d97c7d9179d7103cd75c4b7b5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 579.0628002644288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f641c54d5943fc5ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:45:54.000Z'}}, {'blockNum': '0x81ec85', 'uniqueId': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67:log:33', 'hash': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 528.0091730043429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9f996955bfa09c02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:46:14.000Z'}}, {'blockNum': '0x81ec85', 'uniqueId': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67:log:37', 'hash': '0xbc50fb0a63a09cc0b63b332d0140a9cfefa16c573efc05fcdbad9bdc42964c67', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 528.0091730043429, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c9f996955bfa09c02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:46:14.000Z'}}, {'blockNum': '0x81ec8b', 'uniqueId': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb:log:30', 'hash': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 748.523561751946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d9e590cae833d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:47:41.000Z'}}, {'blockNum': '0x81ec8b', 'uniqueId': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb:log:34', 'hash': '0x63318a85d6bf2692778b4d5a567e206186cb42ae23a166697dca6f986f2c1fdb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.523561751946, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2893d9e590cae833d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:47:41.000Z'}}, {'blockNum': '0x81ec9e', 'uniqueId': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68:log:43', 'hash': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3735.9257159445733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca866264de6b309b42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:54:13.000Z'}}, {'blockNum': '0x81ec9e', 'uniqueId': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68:log:47', 'hash': '0x0f9fea9b3134bae4eee72d79cf86fa0a90a5bb1a2d2a6d92e81f8fa535538c68', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3735.9257159445733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xca866264de6b309b42', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:54:13.000Z'}}, {'blockNum': '0x81eca8', 'uniqueId': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3:log:12', 'hash': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3', 'from': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 405.447106265603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fab57aff6b525186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:52.000Z'}}, {'blockNum': '0x81eca8', 'uniqueId': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3:log:16', 'hash': '0xd324f1733a4ca78eeb78eb1b1c86a0577dc86eed5322f02cd176dbd3ab5039b3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.447106265603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fab57aff6b525186', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:52.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d:log:26', 'hash': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 938.2073340968713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc3e07868e3e185e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d:log:30', 'hash': '0x64ace93c8d80060f0e9d69483c912c7c9d881fb20e6cb611e6d286a041bf050d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 938.2073340968713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc3e07868e3e185e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2:log:42', 'hash': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 956.370508616555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d84e9684c56b2fe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81eca9', 'uniqueId': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2:log:46', 'hash': '0x5e3dd9c64182bd346e9a4e79274b12a51387a2e48407eb74bbeedc04227084b2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 956.370508616555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33d84e9684c56b2fe6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:56:57.000Z'}}, {'blockNum': '0x81ecaa', 'uniqueId': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90:log:51', 'hash': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.0759866941578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aaced16c49d1e6809', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:57:18.000Z'}}, {'blockNum': '0x81ecaa', 'uniqueId': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90:log:55', 'hash': '0xe432f2dca4ca8476c411cc63e2c93d11b2d0cdbda43057571c1aaed5427b9c90', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.0759866941578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aaced16c49d1e6809', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:57:18.000Z'}}, {'blockNum': '0x81ecb1', 'uniqueId': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27:log:55', 'hash': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 927.0574605108661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x324181b892dde678ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:59:20.000Z'}}, {'blockNum': '0x81ecb1', 'uniqueId': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27:log:59', 'hash': '0xf7b25cc3c9178ce91cc54b7d7678a84c448525cbd87b40f6e5b6feb161d51f27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 927.0574605108661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x324181b892dde678ee', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T08:59:20.000Z'}}, {'blockNum': '0x81ecc2', 'uniqueId': '0xe99734b70c03797950ad38da6324b848337a8765c99715cba5b3f3444a1275da:log:17', 'hash': '0xe99734b70c03797950ad38da6324b848337a8765c99715cba5b3f3444a1275da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:42.000Z'}}, {'blockNum': '0x81ecc2', 'uniqueId': '0x05e89167a888f76c4cffc3c021b9fcf22e9c7bf5b81477fc27b31d700b95c6a3:log:18', 'hash': '0x05e89167a888f76c4cffc3c021b9fcf22e9c7bf5b81477fc27b31d700b95c6a3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xacda8e694f34fbc2e60465a0d1a034e6c3dcfa3d', 'value': 3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x29a2241af62c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:42.000Z'}}, {'blockNum': '0x81ecc6', 'uniqueId': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6:log:18', 'hash': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:59.000Z'}}, {'blockNum': '0x81ecc6', 'uniqueId': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6:log:21', 'hash': '0xcea28e576ff9c7d53fe99bf21a05776d08acb6ac0695e80902169024176216c6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0110c9073b5245a00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:04:59.000Z'}}, {'blockNum': '0x81eccf', 'uniqueId': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8:log:124', 'hash': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9831.270473938357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214f44917be5a0bf12e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:06:41.000Z'}}, {'blockNum': '0x81eccf', 'uniqueId': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8:log:127', 'hash': '0xc1f9d5c79888f1e17ea842605a1f6fd0ae53c169252133ab70cadd6da8660ed8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9831.270473938357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0214f44917be5a0bf12e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:06:41.000Z'}}, {'blockNum': '0x81ecd3', 'uniqueId': '0xf34d4df166c2a2dde63cc11cae94f24278f7d85f0dd3a7a6693dca017c08c8ed:log:152', 'hash': '0xf34d4df166c2a2dde63cc11cae94f24278f7d85f0dd3a7a6693dca017c08c8ed', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:09:30.000Z'}}, {'blockNum': '0x81ecd4', 'uniqueId': '0xc6fd3b15904009fffbdf507a6612f44715ca36ef032d92a9783dfbce329b885c:log:14', 'hash': '0xc6fd3b15904009fffbdf507a6612f44715ca36ef032d92a9783dfbce329b885c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xacda8e694f34fbc2e60465a0d1a034e6c3dcfa3d', 'value': 315.675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111cdee3fb6f6f8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:09:34.000Z'}}, {'blockNum': '0x81ecd5', 'uniqueId': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06:log:130', 'hash': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 936.7063226123735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32c7695d887cf7fd08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:24.000Z'}}, {'blockNum': '0x81ecd5', 'uniqueId': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06:log:134', 'hash': '0x0ea2862f3cd34469b2d6cd84d992aa33b4a48e18ee46520297f09f4cb1c37a06', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 936.7063226123735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32c7695d887cf7fd08', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:24.000Z'}}, {'blockNum': '0x81ecda', 'uniqueId': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9:log:59', 'hash': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.9264233728927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f2e895a774636834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:56.000Z'}}, {'blockNum': '0x81ecda', 'uniqueId': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9:log:63', 'hash': '0xbab230f645d1ce6c30243c960e0771a142a02aa8cb7576124f14705e59fae5a9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 736.9264233728927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f2e895a774636834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:10:56.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:128', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:132', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf0', 'uniqueId': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d:log:135', 'hash': '0x0f56adaae0335d6598c61aeba9bcd1cd2efaca7342ef54561063cf48df91da7d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 974.1222850989373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34cea9912d29f2f7a9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:47.000Z'}}, {'blockNum': '0x81ecf2', 'uniqueId': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1:log:20', 'hash': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1', 'from': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 391.0596300054491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15330ae591367bbf51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:57.000Z'}}, {'blockNum': '0x81ecf2', 'uniqueId': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1:log:24', 'hash': '0x7c7e139c0a3f930b4b9111be4baccc2d3b3baad92ea59bff2915f0c5192993b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 391.0596300054491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15330ae591367bbf51', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:15:57.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a:log:33', 'hash': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9819.410416193594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02144fb1b40fddd13da0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a:log:36', 'hash': '0x8ea02991dfe276d302fa72a6fc9b9779aa5c52ece786eb06c5c9da0b1b35d26a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9819.410416193594, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02144fb1b40fddd13da0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea:log:63', 'hash': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea', 'from': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 737.691549957765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27fd86dc3aafe879c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecf5', 'uniqueId': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea:log:67', 'hash': '0x097a3cf027b8f51be771c4ad85ce7883a6c85d2bdd9a9e46b484dcbb35dabfea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 737.691549957765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27fd86dc3aafe879c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:17:10.000Z'}}, {'blockNum': '0x81ecfa', 'uniqueId': '0x99e64a271a19eb54786745029000746c35405090a580da5d7e45e695d0e78185:log:80', 'hash': '0x99e64a271a19eb54786745029000746c35405090a580da5d7e45e695d0e78185', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xa6822f11ea34866349e230a898ea2b340b083072', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:25.000Z'}}, {'blockNum': '0x81ecfb', 'uniqueId': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f:log:46', 'hash': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 477.92969873955326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e89b60d2d4879687', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:27.000Z'}}, {'blockNum': '0x81ecfb', 'uniqueId': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f:log:50', 'hash': '0x855feb7bc30a31c9812209adce2e2567cbeb41051ced8b807edbe561050d076f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 477.92969873955326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19e89b60d2d4879687', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:27.000Z'}}, {'blockNum': '0x81ecfc', 'uniqueId': '0x12fafb06540ffd40769cc20d95a0c8e163f805f8f842479203b007f9d6ed885c:log:24', 'hash': '0x12fafb06540ffd40769cc20d95a0c8e163f805f8f842479203b007f9d6ed885c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:18:55.000Z'}}, {'blockNum': '0x81ed01', 'uniqueId': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff:log:40', 'hash': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:06.000Z'}}, {'blockNum': '0x81ed01', 'uniqueId': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff:log:43', 'hash': '0xde781dd7390288f47071872a82da8cb335d1c53508e60ac5272279398ecf40ff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x98ed3d49b390f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:06.000Z'}}, {'blockNum': '0x81ed03', 'uniqueId': '0x5ef8864dbbc3ba5b7f9b49323e5692bf0ccb1c3df2fb5377e065dcf71fbdbc02:log:35', 'hash': '0x5ef8864dbbc3ba5b7f9b49323e5692bf0ccb1c3df2fb5377e065dcf71fbdbc02', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:20:28.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:112', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0xa6822f11ea34866349e230a898ea2b340b083072', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:115', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed09', 'uniqueId': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532:log:116', 'hash': '0xd6a47969f120d412ced11975c1ad4650b338012cf2bd31efe7dc43fc3f6f4532', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.035668127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e2497b3c977600', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:22:27.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:140', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:143', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed15', 'uniqueId': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389:log:144', 'hash': '0x77f342df3739b0602fa9ea8c01ddfec668ee838a51309f2c399caffcfa6fd389', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.5916471793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x354432c91dac21d100', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:24:58.000Z'}}, {'blockNum': '0x81ed1d', 'uniqueId': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072:log:138', 'hash': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1636.6685539865766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58b956c268be22b8d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:26:29.000Z'}}, {'blockNum': '0x81ed1d', 'uniqueId': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072:log:142', 'hash': '0x61a140d6168ecc78a499b92c779180beccd3b8fa870f719b69a81e64b47f8072', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1636.6685539865766, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x58b956c268be22b8d6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:26:29.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb:log:56', 'hash': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 32.88291783211047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c857978c114d81fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb:log:60', 'hash': '0xb619b6ad98318b96735148f285ed4dce5a88700ab3c57d541a7640d4ca2330eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 32.88291783211047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01c857978c114d81fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7:log:79', 'hash': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14711.129415829846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031d7deeb4cb09c08a43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed22', 'uniqueId': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7:log:82', 'hash': '0x1fc889360e5fbbbbb7ff5150906c23e510233cc7f9fe8baaa2999fd19bcc08f7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 14711.129415829846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031d7deeb4cb09c08a43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:10.000Z'}}, {'blockNum': '0x81ed24', 'uniqueId': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734:log:81', 'hash': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1449.5647854674376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e94c0a4425dedede3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:20.000Z'}}, {'blockNum': '0x81ed24', 'uniqueId': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734:log:85', 'hash': '0x21eac4da9785e3bba85b9ea1345465de449b257e3ecf4b6f2adc5ae8b4725734', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1449.5647854674376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4e94c0a4425dedede3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:20.000Z'}}, {'blockNum': '0x81ed26', 'uniqueId': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6:log:42', 'hash': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 348.58868193529906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e5a3c7517320ada1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:26.000Z'}}, {'blockNum': '0x81ed26', 'uniqueId': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6:log:46', 'hash': '0x2364565b952c7e79a05a2b2e69eea3b200b5301cb2b88e2c51f7d8a81c4292e6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 348.58868193529906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e5a3c7517320ada1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:26.000Z'}}, {'blockNum': '0x81ed27', 'uniqueId': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5:log:64', 'hash': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.03175409283572924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70d02ddfa36f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:29.000Z'}}, {'blockNum': '0x81ed27', 'uniqueId': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5:log:68', 'hash': '0xa0868c03024da1eea97059aa303489eacad59b3ba6f4e8ec8a59cbcde655e4d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 0.03175409283572924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x70d02ddfa36f59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:27:29.000Z'}}, {'blockNum': '0x81ed2e', 'uniqueId': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5:log:82', 'hash': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 183.47907249292675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f2489c518b0b0cda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:41.000Z'}}, {'blockNum': '0x81ed2e', 'uniqueId': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5:log:86', 'hash': '0xbbe7971e732f10fdda4dbd4ed8b6c73dc17787311c3f97eb6ed760eeb79cbeb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 183.47907249292675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x09f2489c518b0b0cda', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:41.000Z'}}, {'blockNum': '0x81ed2f', 'uniqueId': '0xd946c8a9cb6138f41cfc4710ea7812ec3787a74770c916ed6697c6925477191b:log:12', 'hash': '0xd946c8a9cb6138f41cfc4710ea7812ec3787a74770c916ed6697c6925477191b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:28:49.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf:log:25', 'hash': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf:log:28', 'hash': '0xc67de2f1b14af021d381f7fe8ad677e5925a4ec45565da9c821ee54d9d3f14bf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0111a712a68cbbe00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b:log:107', 'hash': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.223298976447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af45c040462f8ea1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed30', 'uniqueId': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b:log:111', 'hash': '0xd6ce22660a2be635becb199db5ae2a809c5fa8a1e4d73077fad7009b299e4e1b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.223298976447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af45c040462f8ea1d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:29:13.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e:log:30', 'hash': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 735.0526437332921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d8e794ffe6a34d1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e:log:34', 'hash': '0xac4a27dc420cba3cb7c9283c4e4755a9c86fef59a614fd6246e7132c4f25111e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 735.0526437332921, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d8e794ffe6a34d1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c:log:63', 'hash': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 440.99769787922304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8128db7181f9659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed33', 'uniqueId': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c:log:67', 'hash': '0x9878de19941701cc609a8c696751f71ee92d1e558e3ef3ffd32384fd2f78ea9c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 440.99769787922304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17e8128db7181f9659', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:30:16.000Z'}}, {'blockNum': '0x81ed55', 'uniqueId': '0xc831303571c985d18f967fa05cfd1c23b53be539b428de3fff39f75543bb9213:log:52', 'hash': '0xc831303571c985d18f967fa05cfd1c23b53be539b428de3fff39f75543bb9213', 'from': '0xdfee8dc240c6cadc2c7f7f9c257c259914dea84e', 'to': '0xfee4ae2adfc648afde92a4087fd7b7c6980149ba', 'value': 13503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dbffc4ce0a339c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:36:29.000Z'}}, {'blockNum': '0x81ed56', 'uniqueId': '0x5ae0c2fbb25dc75c76a00b8d6267a52eb2d08f5818451286710d9d2a3b42f4f4:log:43', 'hash': '0x5ae0c2fbb25dc75c76a00b8d6267a52eb2d08f5818451286710d9d2a3b42f4f4', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xa6822f11ea34866349e230a898ea2b340b083072', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:37:09.000Z'}}, {'blockNum': '0x81ed97', 'uniqueId': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f:log:80', 'hash': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea0000d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:52:44.000Z'}}, {'blockNum': '0x81ed97', 'uniqueId': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f:log:83', 'hash': '0x38d02a72c05a048cd25a72434fa1cd119c4dcd8866ce1dd88205214d83efc47f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea0000d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:52:44.000Z'}}, {'blockNum': '0x81ed9c', 'uniqueId': '0x729d6ebc68ec8da48e00652800b9431f59b6abf2884f096ab658aee36add5724:log:2', 'hash': '0x729d6ebc68ec8da48e00652800b9431f59b6abf2884f096ab658aee36add5724', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:53:26.000Z'}}, {'blockNum': '0x81ed9e', 'uniqueId': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224:log:69', 'hash': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:03.000Z'}}, {'blockNum': '0x81ed9e', 'uniqueId': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224:log:72', 'hash': '0x4d1074d777aa892fd5e6ac93b19b0ac0f679f4de1bf5433c7455ec12fe612224', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8a9d80e06ef1d40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:03.000Z'}}, {'blockNum': '0x81eda2', 'uniqueId': '0x3a7e09cea9ebc23facf2084a55c41a839a2d8287802e81b3f0cb9e4f2528b541:log:5', 'hash': '0x3a7e09cea9ebc23facf2084a55c41a839a2d8287802e81b3f0cb9e4f2528b541', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x9b3d736cd160db8be8856e39f68fd0feaf1bde66', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:54:39.000Z'}}, {'blockNum': '0x81edaa', 'uniqueId': '0x99e73e760849a3257e56eef4da31d44f31d73ebc0045687ef1e4ac5ff339e19f:log:25', 'hash': '0x99e73e760849a3257e56eef4da31d44f31d73ebc0045687ef1e4ac5ff339e19f', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x9b3d736cd160db8be8856e39f68fd0feaf1bde66', 'value': 4250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xe664992288f2280000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:56:17.000Z'}}, {'blockNum': '0x81edb2', 'uniqueId': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141:log:45', 'hash': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 947.3828872761264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x335b9424872973e431', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:06.000Z'}}, {'blockNum': '0x81edb2', 'uniqueId': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141:log:49', 'hash': '0x03d683c0fa47163a0601825d516d50920353a3cc640b099c15265344ef757141', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 947.3828872761264, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x335b9424872973e431', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:06.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:82', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0xa6822f11ea34866349e230a898ea2b340b083072', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:85', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb6', 'uniqueId': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0:log:87', 'hash': '0x34f4a85bb1248a94091de466171c82c019c32ba791aef6722e5e3dd6cf14bbd0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 1.0000000314, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6baf6f9fa00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:23.000Z'}}, {'blockNum': '0x81edb7', 'uniqueId': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669:log:26', 'hash': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4b192ebd64f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:59.000Z'}}, {'blockNum': '0x81edb7', 'uniqueId': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669:log:29', 'hash': '0x5f0723a22d4f1df3555ee5f86f66a54eb908bdcfef19ab6f1a5ea9075b278669', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4b192ebd64f40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T09:58:59.000Z'}}, {'blockNum': '0x81edbf', 'uniqueId': '0x22f1e1e9cd70ae0f9bb026b1d66a61c9bb73154cbc6bba96276f0a1e04f6b20f:log:6', 'hash': '0x22f1e1e9cd70ae0f9bb026b1d66a61c9bb73154cbc6bba96276f0a1e04f6b20f', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x004cb6d46df49972ef099a578c1a8533564ed30e', 'value': 67.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03a8c02c5ea2de0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:00:16.000Z'}}, {'blockNum': '0x81edc4', 'uniqueId': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40:log:33', 'hash': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40', 'from': '0x20d23c7a4b2ea38f9dc885bd25b1bc8c2601d44d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 44.645253901784606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026b93cde20afe6673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:20.000Z'}}, {'blockNum': '0x81edc4', 'uniqueId': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40:log:38', 'hash': '0xb7714a52845107ebd83381cac3b5233c88fc6a24ecd85b8166fe1b500abaca40', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 44.645253901784606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x026b93cde20afe6673', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:20.000Z'}}, {'blockNum': '0x81edc8', 'uniqueId': '0x5f07a9aff739022ddbece6bdf9d076b789425d849fd4f8f356e4e51b453546c7:log:44', 'hash': '0x5f07a9aff739022ddbece6bdf9d076b789425d849fd4f8f356e4e51b453546c7', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x001f7e88078e8fa2741422c6af6c5cd4465c0e5e', 'value': 62.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:01:51.000Z'}}, {'blockNum': '0x81edcb', 'uniqueId': '0xdbc404ba2c29a4b46687212d626b24e5aeb12fb8232cbc3572ecc7c5728142e1:log:2', 'hash': '0xdbc404ba2c29a4b46687212d626b24e5aeb12fb8232cbc3572ecc7c5728142e1', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0xb464ccaaddfb6a9a4345bd3b88c40a7633eaebed', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06c6b935b8bbd40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:02:54.000Z'}}, {'blockNum': '0x81edd3', 'uniqueId': '0x36ae0a59bd45bcd5d27a4d770fcdc4e8c80697b601f6fbbfb4190a53a6ecbef0:log:10', 'hash': '0x36ae0a59bd45bcd5d27a4d770fcdc4e8c80697b601f6fbbfb4190a53a6ecbef0', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0xce16cbe6722a90b015466cda8e55d540643b5ceb', 'value': 62.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03635c9adc5dea0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:47.000Z'}}, {'blockNum': '0x81edd4', 'uniqueId': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10:log:7', 'hash': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.1647036954102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af38bd7eb63421b1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:49.000Z'}}, {'blockNum': '0x81edd4', 'uniqueId': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10:log:11', 'hash': '0xafa3fb0ce5db1dac678093209bdea7f0151f7fe1769b6aa841b886cd37586e10', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.1647036954102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af38bd7eb63421b1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:04:49.000Z'}}, {'blockNum': '0x81eddb', 'uniqueId': '0x93dc43792c38277458cc026c9c0085462a2ecf52f5548f265968af7166937afd:log:5', 'hash': '0x93dc43792c38277458cc026c9c0085462a2ecf52f5548f265968af7166937afd', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x008bc52f7ca763fdc7aa338506ffe9139c53988e', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:06:10.000Z'}}, {'blockNum': '0x81edde', 'uniqueId': '0xc1c570c66f69698a9e792260804bac66b3bd5e3c4b6e2f058762c9336673a639:log:40', 'hash': '0xc1c570c66f69698a9e792260804bac66b3bd5e3c4b6e2f058762c9336673a639', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x008bc52f7ca763fdc7aa338506ffe9139c53988e', 'value': 25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015af1d78b58c40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:07:10.000Z'}}, {'blockNum': '0x81ede1', 'uniqueId': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d:log:109', 'hash': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 734.9823858251938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d7edf9cdefc6722f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:08.000Z'}}, {'blockNum': '0x81ede1', 'uniqueId': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d:log:113', 'hash': '0xab376aaeae77be808c8ce4e0990daa643489869b80fe8665b7305eed2d09c55d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 734.9823858251938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27d7edf9cdefc6722f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:08.000Z'}}, {'blockNum': '0x81ede5', 'uniqueId': '0x57e336b779f6b98628f8fa93bdb117ecad01ae7e3df27a5b91eff238f7fdacea:log:13', 'hash': '0x57e336b779f6b98628f8fa93bdb117ecad01ae7e3df27a5b91eff238f7fdacea', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x64d0f9deb341cc4fd242aeff362f43c8e4558bbb', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:08:53.000Z'}}, {'blockNum': '0x81edea', 'uniqueId': '0x623d99aa638bdf263773ad57f87012c0da7e9b81bb6e355e57b59705c99da366:log:30', 'hash': '0x623d99aa638bdf263773ad57f87012c0da7e9b81bb6e355e57b59705c99da366', 'from': '0x1725884c67ff7d277edaf0b4740364e04483ed0a', 'to': '0x00a3ecaf33491743183dc59e7ae02ae31ede3973', 'value': 57.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x031df9095a18f60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:10:21.000Z'}}, {'blockNum': '0x81edf2', 'uniqueId': '0xd3c44e540e85c6563a87ead4398117926684844af998b32d83ea257723af5ce4:log:0', 'hash': '0xd3c44e540e85c6563a87ead4398117926684844af998b32d83ea257723af5ce4', 'from': '0x64d0f9deb341cc4fd242aeff362f43c8e4558bbb', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:11:52.000Z'}}, {'blockNum': '0x81ee1a', 'uniqueId': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5:log:164', 'hash': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.9490426675056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f68aa71df60661d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:07.000Z'}}, {'blockNum': '0x81ee1a', 'uniqueId': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5:log:168', 'hash': '0xf891284d752eff88704040abf1e0f28447d983442bd605a70c60d85cdc4641d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.9490426675056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f68aa71df60661d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:07.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc:log:75', 'hash': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 434.07071084651045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1787f0f3b5af8d762c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc:log:79', 'hash': '0xfad7e7df59a31df1335c58f56a12821c6f4713f21f1745413ca89cdc5ae137cc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 434.07071084651045, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1787f0f3b5af8d762c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a:log:87', 'hash': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 506.93537573891496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b243e6035332651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a:log:91', 'hash': '0x8487bea769bea7d03a3b1afb794295a096ed49010308fa25c40a6ae27b3bf38a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 506.93537573891496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b7b243e6035332651', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee:log:103', 'hash': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 48.993645524836275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a7ec65067f45ca80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee:log:107', 'hash': '0x3fe8d8c8944cccea5aa29fe9f8e2f10c8d0070778ea4a8693c5e7afc0b75dcee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 48.993645524836275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a7ec65067f45ca80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477:log:115', 'hash': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 507.609588876155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b847f87a6e94b79be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee1c', 'uniqueId': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477:log:119', 'hash': '0xc09ee79fa5e15067c7061b2363bf1b19a2f36e6b328f4b56cf35e9c99745f477', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 507.609588876155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b847f87a6e94b79be', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:11.000Z'}}, {'blockNum': '0x81ee20', 'uniqueId': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1:log:88', 'hash': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.95170163406084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f721cc2c45e908f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:31.000Z'}}, {'blockNum': '0x81ee20', 'uniqueId': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1:log:92', 'hash': '0x32821f3ddcd3cc07d1a253e59db08f30a45bc0475d2bdd82f1790a5dd3ff02e1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.95170163406084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f721cc2c45e908f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:18:31.000Z'}}, {'blockNum': '0x81ee23', 'uniqueId': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04:log:103', 'hash': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 489.9203345819562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f02ac97d6052937', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:20:21.000Z'}}, {'blockNum': '0x81ee23', 'uniqueId': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04:log:107', 'hash': '0x8a045abc6bc4a59d8b4d935d223fdcb55435ed695c49c23e0322ad5d6686af04', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 489.9203345819562, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a8f02ac97d6052937', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:20:21.000Z'}}, {'blockNum': '0x81ee2f', 'uniqueId': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd:log:29', 'hash': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd', 'from': '0xa7a402266ceea0652ea8eafd919d619d16bee134', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 483.63161017710723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a37bca310e4ab1e49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:16.000Z'}}, {'blockNum': '0x81ee2f', 'uniqueId': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd:log:33', 'hash': '0xe7d1a13a9b4477fc5329d76801d917bba84f142868f98e062535f78ff82aecdd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 483.63161017710723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a37bca310e4ab1e49', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:16.000Z'}}, {'blockNum': '0x81ee31', 'uniqueId': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091:log:139', 'hash': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091', 'from': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 903.8037693886702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30fecc03b38ec0d453', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:52.000Z'}}, {'blockNum': '0x81ee31', 'uniqueId': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091:log:143', 'hash': '0x1427264b5a13a36c5906f75ae4c812ee44263b1611eb11847bbc0f4193656091', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 903.8037693886702, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30fecc03b38ec0d453', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:52.000Z'}}, {'blockNum': '0x81ee32', 'uniqueId': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629:log:92', 'hash': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 253.99452209387957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc4e1d01faccc53db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:56.000Z'}}, {'blockNum': '0x81ee32', 'uniqueId': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629:log:96', 'hash': '0x29f6848cef98e372bf5b3ce17876c4921e4c379e4d12b4e11a8136397c8fc629', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.99452209387957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc4e1d01faccc53db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:22:56.000Z'}}, {'blockNum': '0x81ee42', 'uniqueId': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b:log:67', 'hash': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1481.708350154181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5052d58609b61114f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:26:30.000Z'}}, {'blockNum': '0x81ee42', 'uniqueId': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b:log:71', 'hash': '0x3ef87de9c6450d6e3daa0cfbd58508a2551a2c4d053fb05e1111f0581eb9f59b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1481.708350154181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5052d58609b61114f3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:26:30.000Z'}}, {'blockNum': '0x81ee48', 'uniqueId': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e:log:46', 'hash': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e', 'from': '0xbdc7310289dcd30d16e284d6f207a8e2f76a37ad', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 261.5974631351306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2e64e2b7f8ce30d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:17.000Z'}}, {'blockNum': '0x81ee48', 'uniqueId': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e:log:50', 'hash': '0x105dced5e42f4314fcef91e23308f27f8e8c2083621be0387316e5bc37a0b67e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 261.5974631351306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e2e64e2b7f8ce30d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:17.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:12', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:15', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4b', 'uniqueId': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3:log:18', 'hash': '0xc1357867e8ada733cab915e42599838945c5cc315bc38e798610860df7d7a5d3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 9.80242152964677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x880932721d3ca514', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:28:34.000Z'}}, {'blockNum': '0x81ee4c', 'uniqueId': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd:log:47', 'hash': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2053.067362136741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4c08803f0cb6ef13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:07.000Z'}}, {'blockNum': '0x81ee4c', 'uniqueId': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd:log:50', 'hash': '0x9ac8def835639bb9fd4bf782f3c4fb5020d88d2f0b00ba9ab811793089812fbd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 2053.067362136741, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f4c08803f0cb6ef13', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:07.000Z'}}, {'blockNum': '0x81ee4d', 'uniqueId': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170:log:117', 'hash': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 138.03779534061343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077ba8c381b755a237', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:34.000Z'}}, {'blockNum': '0x81ee4d', 'uniqueId': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170:log:121', 'hash': '0xfd076c8d74f675b2167ecdbf28116a9515d72174e73c805e4253234a74aa3170', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 138.03779534061343, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x077ba8c381b755a237', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:29:34.000Z'}}, {'blockNum': '0x81ee67', 'uniqueId': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe:log:81', 'hash': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe', 'from': '0x2801cd0e845874085597865f5b5773f3e44dcdf0', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 493.35985899750597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1abebe51d35f25e807', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:37:28.000Z'}}, {'blockNum': '0x81ee67', 'uniqueId': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe:log:85', 'hash': '0x46a9a11f4bd1f5df9f0e8143e5ac6d444a75a0de71edddb8a963dc3390a55bfe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 493.35985899750597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1abebe51d35f25e807', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:37:28.000Z'}}, {'blockNum': '0x81ee71', 'uniqueId': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb:log:37', 'hash': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20323.77853310784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044dc115ffde327db74f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:39:46.000Z'}}, {'blockNum': '0x81ee71', 'uniqueId': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb:log:40', 'hash': '0x8c79c54dabeeef4dcf71ccbd143156d48df70a20c90c57dc3ee522f030c40bbb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 20323.77853310784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x044dc115ffde327db74f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:39:46.000Z'}}, {'blockNum': '0x81ee7a', 'uniqueId': '0xef5942dcd9bc341238e8d459329d94ab185df11ae2b946a9731226f15957fe21:log:9', 'hash': '0xef5942dcd9bc341238e8d459329d94ab185df11ae2b946a9731226f15957fe21', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x591203018192cd5df17ac89c169202f2f9044d2d', 'value': 18000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfc82e37e9a7400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:41:08.000Z'}}, {'blockNum': '0x81ee82', 'uniqueId': '0xc24b4fa8d4b5eba2b7e92a84a51a790c4cb4ed80540fa19710976ea6bd128d96:log:94', 'hash': '0xc24b4fa8d4b5eba2b7e92a84a51a790c4cb4ed80540fa19710976ea6bd128d96', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0xc884a85d8100c0705efd49d1639ef812620a0196', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:42:41.000Z'}}, {'blockNum': '0x81ee8a', 'uniqueId': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213:log:83', 'hash': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 38998.91747124235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084222b38ef97f4f6c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:34.000Z'}}, {'blockNum': '0x81ee8a', 'uniqueId': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213:log:86', 'hash': '0x4780d12d206c97b611297c7169c4ab542fa64c1a2ddc2707a19459d5f613a213', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 38998.91747124235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x084222b38ef97f4f6c96', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:34.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9:log:150', 'hash': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1291.5194219423965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46036eb77e52634263', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9:log:154', 'hash': '0xf577a1204e010d18ca35fa8e48e83d0d883cfceb675eb93965a315b50ad84cc9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1291.5194219423965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x46036eb77e52634263', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc:log:168', 'hash': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1976.0918524094932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b1fc88dfbab7adaaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc:log:172', 'hash': '0xcb4f02eeb64252fd431e03560ff02e42e54d69a58ae1f54b5d6b7182f01d69dc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1976.0918524094932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6b1fc88dfbab7adaaf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7:log:190', 'hash': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 982.1276225808123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353dc23d33bc3a15ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7:log:194', 'hash': '0xc5a458db098a797a4af7a9a6d5edfe873bcc9c580db10a9f2fdc42040b3100b7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 982.1276225808123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x353dc23d33bc3a15ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d:log:211', 'hash': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1698.1385620928259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c0e681919877ea6d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8c', 'uniqueId': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d:log:215', 'hash': '0x190ca0996d01808ca71d1ffdb551c447e5faee03bfa78c4977998ad97468162d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1698.1385620928259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5c0e681919877ea6d2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:44:51.000Z'}}, {'blockNum': '0x81ee8f', 'uniqueId': '0x4872db3f30dc576c8ea28742fdb3691a49213ade7a7343a5947b981d5f0b5f32:log:84', 'hash': '0x4872db3f30dc576c8ea28742fdb3691a49213ade7a7343a5947b981d5f0b5f32', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:24.000Z'}}, {'blockNum': '0x81ee94', 'uniqueId': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732:log:96', 'hash': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1380.1972811121757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad215c292ab31da54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:48.000Z'}}, {'blockNum': '0x81ee94', 'uniqueId': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732:log:101', 'hash': '0x41c8aaa037137306fc91117387075a111b0d74e9cdd801c2ced5cb7793632732', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1380.1972811121757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4ad215c292ab31da54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:45:48.000Z'}}, {'blockNum': '0x81ee97', 'uniqueId': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985:log:69', 'hash': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 522.5772596285237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c543760e62f3d762f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:14.000Z'}}, {'blockNum': '0x81ee97', 'uniqueId': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985:log:73', 'hash': '0x0ef184d795c81818c44e35f6bf9f0500334664d9cc83626aa0e52ddaade82985', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 522.5772596285237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1c543760e62f3d762f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:14.000Z'}}, {'blockNum': '0x81ee99', 'uniqueId': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890:log:13', 'hash': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 495.1304499024967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad750b8df6da8dfd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:27.000Z'}}, {'blockNum': '0x81ee99', 'uniqueId': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890:log:17', 'hash': '0x9337fa68f83ec8ccc92e6b351879cee3f8e07ea9c4cd3de97b692f96ffb98890', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 495.1304499024967, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ad750b8df6da8dfd8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:27.000Z'}}, {'blockNum': '0x81ee9c', 'uniqueId': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42:log:51', 'hash': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 730.5116958242895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2799e2e4ef72fc87ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:54.000Z'}}, {'blockNum': '0x81ee9c', 'uniqueId': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42:log:55', 'hash': '0x44354e554c8bb1cceb966cc301c9aa9423734177eabe272eea619cd899f82f42', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 730.5116958242895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2799e2e4ef72fc87ca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:46:54.000Z'}}, {'blockNum': '0x81ee9e', 'uniqueId': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a:log:35', 'hash': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.45508559572374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab22feb35dfb32574', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:04.000Z'}}, {'blockNum': '0x81ee9e', 'uniqueId': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a:log:39', 'hash': '0x25a1e5888356cee10cffb7b260f769a117a19b069cc8e7526f46c1b57ee2c45a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.45508559572374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab22feb35dfb32574', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:04.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e:log:80', 'hash': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 111.95568203569857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0611b27ba5146505e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e:log:84', 'hash': '0xce94e0e39c8f9f3e6aae4818c228ca2e996fd0ef079c7c2d5032e987c6af1f6e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 111.95568203569857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0611b27ba5146505e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced:log:93', 'hash': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced', 'from': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 475.9426495754124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19cd07f622f8ad8a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced:log:97', 'hash': '0x8929a49d5fa2d061e2f00f6f9d91eb15e25ce1b61e2cadc538c5b94d41244ced', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 475.9426495754124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19cd07f622f8ad8a5d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a:log:117', 'hash': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1119.8389520839369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb4e329c260bcb8d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81ee9f', 'uniqueId': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a:log:121', 'hash': '0x119a3f5b86cf0b18f8aee4640b16ff9e28e3b8e45383cd4179d283754011ba3a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1119.8389520839369, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3cb4e329c260bcb8d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:47:15.000Z'}}, {'blockNum': '0x81eea1', 'uniqueId': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709:log:32', 'hash': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709', 'from': '0x751b934e7496e437503d74d0679a45e49c0b7071', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 904.6667699324896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310ac6021fa61512ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:30.000Z'}}, {'blockNum': '0x81eea1', 'uniqueId': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709:log:36', 'hash': '0x5c94b2a1757bf7393b22912d050b540d23c4d2a655f010cbf38d942d9857f709', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 904.6667699324896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x310ac6021fa61512ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:30.000Z'}}, {'blockNum': '0x81eea3', 'uniqueId': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094:log:87', 'hash': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.943689258796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f325ece2c8630ba1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:58.000Z'}}, {'blockNum': '0x81eea3', 'uniqueId': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094:log:89', 'hash': '0x2ff9634e781e88f3190d94d8d253f6243a6b13ef544629b5ddb121510eeeb094', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.943689258796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f325ece2c8630ba1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:48:58.000Z'}}, {'blockNum': '0x81eea4', 'uniqueId': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8:log:39', 'hash': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.5696245115934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52a1d8d5cd55a337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:13.000Z'}}, {'blockNum': '0x81eea4', 'uniqueId': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8:log:43', 'hash': '0xa3742bae97fe031f97b556046c922bea6a943725b385756b2c1e9763879a3fd8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 485.5696245115934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52a1d8d5cd55a337', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:13.000Z'}}, {'blockNum': '0x81eea5', 'uniqueId': '0x7612b5f5e33662b57b6505f688d3273d80dba7daf1d95a571c9c3890d00f4f8b:log:19', 'hash': '0x7612b5f5e33662b57b6505f688d3273d80dba7daf1d95a571c9c3890d00f4f8b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 2299.209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7ca3ef43c4c51a8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:17.000Z'}}, {'blockNum': '0x81eeaa', 'uniqueId': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2:log:19', 'hash': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.3644724783999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c41213490a9fef6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:53.000Z'}}, {'blockNum': '0x81eeaa', 'uniqueId': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2:log:23', 'hash': '0x7cd52209cdc2e2d76b574253e970d7fec6b77cf4ffdd45afaa6ec7e81aae38f2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.3644724783999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c41213490a9fef6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:49:53.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:37', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:40', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeac', 'uniqueId': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f:log:41', 'hash': '0x581f271cacae57ea2be0e6c96d54ead1aaa7e3bf130f540e49b34ffd12b7da5f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2322.9875331, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7deded95a39678b800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:50:32.000Z'}}, {'blockNum': '0x81eeaf', 'uniqueId': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197:log:24', 'hash': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197', 'from': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.99123027889044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab9a0aff58c105b06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:36.000Z'}}, {'blockNum': '0x81eeaf', 'uniqueId': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197:log:28', 'hash': '0xaca533b7f67070e58762ca363055a737000c182f76a27d759fa8c80503c08197', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 492.99123027889044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab9a0aff58c105b06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:36.000Z'}}, {'blockNum': '0x81eeb0', 'uniqueId': '0x94c6c77d093b66fca19a45cd0d2d559b73b31a760702581231071cfb7537fad7:log:5', 'hash': '0x94c6c77d093b66fca19a45cd0d2d559b73b31a760702581231071cfb7537fad7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0080ef2e364721695608c066b8330b1488156060', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:51:51.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:95', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0x0080ef2e364721695608c066b8330b1488156060', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:98', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4:log:99', 'hash': '0xafaa64cef22f06045d8ea8d84e4f64aa3fc6f18c971f409049a5ddddb17d87f4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 18001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03cfd60eee9d4ea40000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c:log:112', 'hash': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.8925099380834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a64fdae1f21cec921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c:log:116', 'hash': '0x29c539848aee3a81e76a4435309f2903c3b698e2f075f7736aeefe947a2c967c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.8925099380834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a64fdae1f21cec921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb:log:177', 'hash': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.14772288956777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c3af46b0131be54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb3', 'uniqueId': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb:log:181', 'hash': '0x89f9dfd6dafd0336114023bb836308a8a95b0838503f365a1e04f45f3f1cc7fb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 244.14772288956777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c3af46b0131be54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:07.000Z'}}, {'blockNum': '0x81eeb7', 'uniqueId': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e:log:21', 'hash': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.1399365463213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c1f4ac7b1e37bfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:45.000Z'}}, {'blockNum': '0x81eeb7', 'uniqueId': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e:log:25', 'hash': '0xb19bfd855622274f04249d530c557050872a8bc9dcc05889eb7f7921b73bb71e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 244.1399365463213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3c1f4ac7b1e37bfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:52:45.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164:log:136', 'hash': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 763.8796959473787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2968f5d8418ce66e29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164:log:140', 'hash': '0xd75bac541e8ac0dec1ed362eb4f06521c96e4d4b33486a2241138b0926f82164', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 763.8796959473787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2968f5d8418ce66e29', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1:log:150', 'hash': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 394.811877149515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15671d8e76ea01807d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec1', 'uniqueId': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1:log:154', 'hash': '0x04c8d236ceee8fe645c091aa29336cef59eeb3cb9705728dea051b6f44369ff1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 394.811877149515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15671d8e76ea01807d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:12.000Z'}}, {'blockNum': '0x81eec2', 'uniqueId': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d:log:71', 'hash': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.43606708847295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa40ba346ef779049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:17.000Z'}}, {'blockNum': '0x81eec2', 'uniqueId': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d:log:75', 'hash': '0xde5d50e36e64ad21d05f4228ce7011722378f8269b55e0c52812f3f151310c2d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.43606708847295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa40ba346ef779049', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:57:17.000Z'}}, {'blockNum': '0x81eeca', 'uniqueId': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41:log:22', 'hash': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41', 'from': '0x9898bb78288fe81943b806ee5deaccf44fadb3ff', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.8290568815831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2852b3aa4230966612', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:58:47.000Z'}}, {'blockNum': '0x81eeca', 'uniqueId': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41:log:26', 'hash': '0x20fcf47c0335249c722dcdc5a455dcf6109d363364b06875555f8dce419bbe41', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.8290568815831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2852b3aa4230966612', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:58:47.000Z'}}, {'blockNum': '0x81eecb', 'uniqueId': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243:log:152', 'hash': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.61714087938356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a612b5f6bf3df07eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:02.000Z'}}, {'blockNum': '0x81eecb', 'uniqueId': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243:log:154', 'hash': '0xffd6e750780909bc879e21d81e54eb77b11305d59d1fe36c6aeebaa59784e243', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.61714087938356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a612b5f6bf3df07eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:02.000Z'}}, {'blockNum': '0x81eecf', 'uniqueId': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a:log:58', 'hash': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 293.12678653349315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fe3f38b4cc89d24e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:38.000Z'}}, {'blockNum': '0x81eecf', 'uniqueId': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a:log:62', 'hash': '0xf683e71dcfd6896be856f2fbdd287362cf5b8b56bb6236e86ee7a3ff0996bf4a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 293.12678653349315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fe3f38b4cc89d24e9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T10:59:38.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x5c336bffd1fde9f7368e55b7d2cac8f11ebc5987350b772e1b94fc0191bc73ad:log:3', 'hash': '0x5c336bffd1fde9f7368e55b7d2cac8f11ebc5987350b772e1b94fc0191bc73ad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 21100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0477d5529f68a6300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e:log:54', 'hash': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.44983918854217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17ee58e1d72a5f25d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed4', 'uniqueId': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e:log:58', 'hash': '0x99ef68e15270a1d4131237904dba98ad92d80d9d40c6ed48415eedc2819eee2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 441.44983918854217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17ee58e1d72a5f25d1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:00:34.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0x4156f46b97631505ebd2467e6549f37790127ba487150d11ab2f996cc84104fd:log:6', 'hash': '0x4156f46b97631505ebd2467e6549f37790127ba487150d11ab2f996cc84104fd', 'from': '0x0e17fdee2528ee4b6c076fd5fe725b05a6d0566a', 'to': '0x3ab23200bba977271f7ff0bc301c09671916b0aa', 'value': 134.8172234408092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x074ef6fe6d59e5c953', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64:log:34', 'hash': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 384.70177310071824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14dacf4065d33c8f93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eed9', 'uniqueId': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64:log:38', 'hash': '0xab078cfc72b76190c8fd763dd67b60218bfee3816f8c6ac246cf81606022df64', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 384.70177310071824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14dacf4065d33c8f93', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:01:13.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7:log:121', 'hash': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.48234357272116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5f4c79fc4795010b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7:log:125', 'hash': '0xb23ecb8ab8df30b7291c9dc515da5d4584f1ab68352232ef764462cb4934b6a7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.48234357272116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5f4c79fc4795010b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b:log:136', 'hash': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.731196206868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a436ef1e0e2b781', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eedf', 'uniqueId': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b:log:140', 'hash': '0x78fa996627c4653b2f182338b17ed880bc59d2089d8f86807706ba1ca9df487b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.731196206868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a436ef1e0e2b781', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:17.000Z'}}, {'blockNum': '0x81eee0', 'uniqueId': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278:log:101', 'hash': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1270.3856059645502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44de2451d55660edfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:31.000Z'}}, {'blockNum': '0x81eee0', 'uniqueId': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278:log:105', 'hash': '0x7574a65456adddc236bafb88bd1e479b0c7b9c03c4aa34c2e6c69fd470de9278', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 1270.3856059645502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44de2451d55660edfd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:02:31.000Z'}}, {'blockNum': '0x81eee6', 'uniqueId': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6:log:89', 'hash': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6', 'from': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.323224352254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a78d8994d117b346b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:04:25.000Z'}}, {'blockNum': '0x81eee6', 'uniqueId': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6:log:93', 'hash': '0x20db02305d1c2c5241c0494d22217c375a87f0bc62e43918a6044ad883f5afb6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 488.323224352254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a78d8994d117b346b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:04:25.000Z'}}, {'blockNum': '0x81eef2', 'uniqueId': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf:log:63', 'hash': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 496.20794907736763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae644c4a9d99e4ff3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:06:52.000Z'}}, {'blockNum': '0x81eef2', 'uniqueId': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf:log:67', 'hash': '0x81d1b2dca353fb06ef49d461745ba7bba9a467481016ea685e240756f1bb98cf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 496.20794907736763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ae644c4a9d99e4ff3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:06:52.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c:log:54', 'hash': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.9005244640418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9c9d0218fc29f6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c:log:58', 'hash': '0xc5d7c194420f382554fdd5de2b4e688cb48b13825dc057ed748a21400f6d7b6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.9005244640418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9c9d0218fc29f6eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e:log:70', 'hash': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9767.036235772322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021178db3c7589b61301', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefa', 'uniqueId': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e:log:73', 'hash': '0x0cd138765714061053907201a40f20f8498a087138f4cafeb44c1cdeeaa50b2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 9767.036235772322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021178db3c7589b61301', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:00.000Z'}}, {'blockNum': '0x81eefd', 'uniqueId': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15:log:73', 'hash': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 480.86758967215883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1160dd0fa753571b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:21.000Z'}}, {'blockNum': '0x81eefd', 'uniqueId': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15:log:77', 'hash': '0x496b51a33bb452024dd505687d7579df001121ab31a5a6c312fa797bb7d3fd15', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 480.86758967215883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a1160dd0fa753571b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:09:21.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5:log:73', 'hash': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1235.1249345028996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f4cd3ff540f28ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5:log:77', 'hash': '0x56ac091c28fa6d935eafa20cdd3ff69ba821cbe75e53f7737ab2e3563e8fe1c5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1235.1249345028996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42f4cd3ff540f28ded', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c:log:87', 'hash': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c', 'from': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 450.7146472716078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186eec17b479aaeb74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c:log:91', 'hash': '0x28a8521149ddfe64837ca57f856c93878d7a9e09b3de35ff6d9077f706a6765c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 450.7146472716078, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x186eec17b479aaeb74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d:log:103', 'hash': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 439.3480990942714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d12e005c392adc59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef05', 'uniqueId': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d:log:107', 'hash': '0xdc68fa7a66024018001ac4d8431388ea431e0fb4323078cb4348fee0837a2c9d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xd3a3bace3d61f6f5d16a9b415d51813cd2ea3887', 'value': 439.3480990942714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17d12e005c392adc59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:10:50.000Z'}}, {'blockNum': '0x81ef07', 'uniqueId': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f:log:121', 'hash': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 393.25048573759494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155172613f7b2a0e23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:11:42.000Z'}}, {'blockNum': '0x81ef07', 'uniqueId': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f:log:125', 'hash': '0xb9a14db80afee798b4930e0c1fe23bfbc284715991f02ff04928e56d5c3d714f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 393.25048573759494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x155172613f7b2a0e23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:11:42.000Z'}}, {'blockNum': '0x81ef0c', 'uniqueId': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7:log:100', 'hash': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 185.50448920380168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a0e64561600e23c81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:42.000Z'}}, {'blockNum': '0x81ef0c', 'uniqueId': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7:log:104', 'hash': '0x9a5a5ea1ea900af372ab44dec1459479e1afe35500af58fbccf2773d49186bd7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'value': 185.50448920380168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a0e64561600e23c81', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:42.000Z'}}, {'blockNum': '0x81ef0d', 'uniqueId': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c:log:67', 'hash': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 732.2106743705912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27b176e0ebf04d36c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:50.000Z'}}, {'blockNum': '0x81ef0d', 'uniqueId': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c:log:71', 'hash': '0xd9fc738c5d49820b35c2c6ee17e2a67cc9d131fcdadd11f5853de527499b283c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 732.2106743705912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27b176e0ebf04d36c5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:13:50.000Z'}}, {'blockNum': '0x81ef17', 'uniqueId': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8:log:149', 'hash': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8', 'from': '0x5142127a6703f5fc80bf11b7b57ff68998f218e4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 232.3813512926134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c98f067ca9d7bc76f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:16:24.000Z'}}, {'blockNum': '0x81ef17', 'uniqueId': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8:log:153', 'hash': '0x1559ba1d81227020ace653ee9fb9d290b9ddc014fec7bd6803596edba986c7e8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 232.3813512926134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0c98f067ca9d7bc76f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:16:24.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f:log:132', 'hash': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 917.6330186337935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31beb7609e8caad579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f:log:136', 'hash': '0x299c353a958d5547bdb1019e0f7d7623e99045162599bcbc89c23865983a498f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 917.6330186337935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x31beb7609e8caad579', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b:log:146', 'hash': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.2301895173384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a4debee819c6cb830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b:log:150', 'hash': '0x25eb257827854b1100201368ac331ca69d6705b6fe1a82f13698fa3bde49dc2b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 485.2301895173384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a4debee819c6cb830', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37:log:163', 'hash': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1376.3305540134118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a9c6c62c36dfcc3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef28', 'uniqueId': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37:log:167', 'hash': '0xc9e1eebf9bf3e8e8a2984994e52d6001c4cae4762c542bf233d08f748ae08f37', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 1376.3305540134118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4a9c6c62c36dfcc3e0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:20:25.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706:log:133', 'hash': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 938.2240520427426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc796c68a747f041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706:log:137', 'hash': '0xaf9690517c9262b92d4f01a6728bccdb5132644850b5b35617960f6751213706', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 938.2240520427426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x32dc796c68a747f041', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb:log:149', 'hash': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 585.6693043804041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fbfcb5953341e4d1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb:log:153', 'hash': '0xb13514824e5abb5a5daae4bd6282a449b0ee03bf1e2bb2690542c8753ba51aeb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x11614c5f1eb215ecffe657da56d3dd12df395dc8', 'value': 585.6693043804041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fbfcb5953341e4d1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b:log:162', 'hash': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b', 'from': '0x7172c5b24bdce3b93a78c53ef1ece011b0472c1b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 114.33484541115729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0632b6f821253b26d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef2c', 'uniqueId': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b:log:166', 'hash': '0x9d6b0f5ed56053dc9d56c1b0497c7698901080a5e65f3bf19e43a7fd4e2bfa6b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.33484541115729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0632b6f821253b26d0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:21:07.000Z'}}, {'blockNum': '0x81ef33', 'uniqueId': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31:log:31', 'hash': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.7928253064561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa8ff18fc750deda5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:11.000Z'}}, {'blockNum': '0x81ef33', 'uniqueId': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31:log:35', 'hash': '0x6737a0b03b73cf58ec8e541c8c4b069c2a23559de71c2c10943cce0013c63f31', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 491.7928253064561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa8ff18fc750deda5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:11.000Z'}}, {'blockNum': '0x81ef35', 'uniqueId': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0:log:50', 'hash': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1226.0258483417433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x427686cd4db08b1e02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:29.000Z'}}, {'blockNum': '0x81ef35', 'uniqueId': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0:log:54', 'hash': '0xa5c0a738f81d7d7b1ab4385962d2aab8c0842197a0161557fb620f36bba569c0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1226.0258483417433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x427686cd4db08b1e02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:29.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:70', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:73', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef36', 'uniqueId': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3:log:76', 'hash': '0x66c8730c0067797142bc5667ba2196e0f5d52d1cd3441d8b8b95cb39967d7ec3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 114.96411966367708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x063b7299ba64f8fe5b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:23:33.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9:log:32', 'hash': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.09874860341566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb8705ca5bafd7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9:log:36', 'hash': '0xc1abfa73bbc919f20a33800d787fbf4544507a70035370568bc846f9bc02ceb9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.09874860341566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07eb8705ca5bafd7f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:46', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:49', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54:log:50', 'hash': '0x2217735ab8ea7934b5b67112181afd8e0b08f0c89c97768a91173808017d6f54', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 8000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01b1ae4d6e2ef5000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45:log:63', 'hash': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 497.52918318646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af89abc15e3b9f810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef40', 'uniqueId': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45:log:67', 'hash': '0xb0e488909a5e2e8fadb008564e7c5be4fe648cf781b7a2bc1691a18cc2874b45', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 497.52918318646886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1af89abc15e3b9f810', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:53.000Z'}}, {'blockNum': '0x81ef41', 'uniqueId': '0xe180cfcb2766f5959548e5ed6a68f5020ceac6f4112cc3cbce6d5d42c02a32b6:log:5', 'hash': '0xe180cfcb2766f5959548e5ed6a68f5020ceac6f4112cc3cbce6d5d42c02a32b6', 'from': '0xc884a85d8100c0705efd49d1639ef812620a0196', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7caee97613e6700000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:26:59.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3:log:45', 'hash': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1159.5070945793111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3edb64b730211993e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3:log:49', 'hash': '0x9a4e4cf931860a1d67d354c142afcc17a8604c46a349f4d9b94366dce6df1ff3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1159.5070945793111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3edb64b730211993e4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7:log:166', 'hash': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7', 'from': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 475.1006099727449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c1586f944cde75c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef42', 'uniqueId': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7:log:170', 'hash': '0xab8b70ab6c942048b0a1cfd8206f5c80f1279d17c27c61c13db61a4c41a130c7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 475.1006099727449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19c1586f944cde75c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:01.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:151', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:154', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef46', 'uniqueId': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e:log:157', 'hash': '0x0f7c610deba3ed4d4cfd74edf4f1ba773ac69fe8f9c4698ec2d572cb5249af1e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 24.44018242972988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01532cf86e21caf550', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:27:45.000Z'}}, {'blockNum': '0x81ef48', 'uniqueId': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3:log:71', 'hash': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.787261895144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7f4930fcdbe29b62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:29.000Z'}}, {'blockNum': '0x81ef48', 'uniqueId': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3:log:74', 'hash': '0x1a819fcf6e1a638fcdcd93d8d11ba83b82e3b7160e793062b63224aa69ed98f3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x14bafc009cc698da196927871e2ce54dc23c25f3', 'value': 488.787261895144, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7f4930fcdbe29b62', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:29.000Z'}}, {'blockNum': '0x81ef4a', 'uniqueId': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e:log:40', 'hash': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.9981734426174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f3e77df65ef060ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:59.000Z'}}, {'blockNum': '0x81ef4a', 'uniqueId': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e:log:44', 'hash': '0x540c5efa7cac1b3a3eadd30ac2f888f2d9c50e849ea9391de13ea4b035468c0e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.9981734426174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27f3e77df65ef060ef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:28:59.000Z'}}, {'blockNum': '0x81ef4c', 'uniqueId': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b:log:150', 'hash': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.20370421358193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069feac584ef7532ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:29:33.000Z'}}, {'blockNum': '0x81ef4c', 'uniqueId': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b:log:154', 'hash': '0x20478071b8a85af4d5638bab4b7fe5a1bcedc543fe84692150bc42557958338b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 122.20370421358193, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069feac584ef7532ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:29:33.000Z'}}, {'blockNum': '0x81ef55', 'uniqueId': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70:log:106', 'hash': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70', 'from': '0x9dce7c9767863110e4fa01410a35b5471aece64e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 426.0836021448373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1719190aa9bde4dc2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:30:31.000Z'}}, {'blockNum': '0x81ef55', 'uniqueId': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70:log:110', 'hash': '0xd7721bd523c8b89180229de3e2ea99b9ba5d3eaddc4740cde3cdac4c5228aa70', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 426.0836021448373, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1719190aa9bde4dc2c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:30:31.000Z'}}, {'blockNum': '0x81ef59', 'uniqueId': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200:log:56', 'hash': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 793.1444928424017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2aff1749fb04b4bdd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:31:22.000Z'}}, {'blockNum': '0x81ef59', 'uniqueId': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200:log:60', 'hash': '0xa478e0b2122b57479936c4ae71e3f15c73f8f2e1cf02fb3f7d1f08abcccb7200', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 793.1444928424017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2aff1749fb04b4bdd6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:31:22.000Z'}}, {'blockNum': '0x81ef5b', 'uniqueId': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783:log:140', 'hash': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 461.0082373649752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fdc6455b6c4ebf04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:32:39.000Z'}}, {'blockNum': '0x81ef5b', 'uniqueId': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783:log:144', 'hash': '0xd15de9c31fb48b0e10b5fdcc1b0bef85e91842791e92ca4a9f162dccb7bf7783', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 461.0082373649752, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18fdc6455b6c4ebf04', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:32:39.000Z'}}, {'blockNum': '0x81ef5c', 'uniqueId': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba:log:64', 'hash': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.8496532869458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1febee37ce28566e40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:10.000Z'}}, {'blockNum': '0x81ef5c', 'uniqueId': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba:log:68', 'hash': '0x8ec009eeae33fd812054d978c410bbe06178e964f9620b467eabd3ab922b5cba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 588.8496532869458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1febee37ce28566e40', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:10.000Z'}}, {'blockNum': '0x81ef5e', 'uniqueId': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801:log:26', 'hash': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 405.4023939379966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fa16a15f6742a6bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:32.000Z'}}, {'blockNum': '0x81ef5e', 'uniqueId': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801:log:30', 'hash': '0x62ad96a9084995d5e00a017e6258d94747f183a8b6c300665108322413de5801', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 405.4023939379966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15fa16a15f6742a6bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:33:32.000Z'}}, {'blockNum': '0x81ef9c', 'uniqueId': '0xb3cf5bdb9a13b9fa6874d0461e7bb0467a5532cbe028b4242c42b27ecdd0354e:log:7', 'hash': '0xb3cf5bdb9a13b9fa6874d0461e7bb0467a5532cbe028b4242c42b27ecdd0354e', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xdddeadf2f83ea85abd1807d396d06566a3dd2838', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:50:24.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e:log:137', 'hash': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 391.12827945415773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1533fec9e08ac91ad0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e:log:141', 'hash': '0x63e746b0632be6248d1e41ab2403404b0d606b3f5c906d323a354c129585f20e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 391.12827945415773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1533fec9e08ac91ad0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17:log:151', 'hash': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 681.1644193011612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ed0e266400f1b551', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17:log:155', 'hash': '0x0dc04d6766891c040e086acdbb211da627e780e5496a0db2acd2b2f1747d6b17', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 681.1644193011612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ed0e266400f1b551', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3:log:170', 'hash': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 876.4579352317572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f834c186b8d36f207', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa5', 'uniqueId': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3:log:174', 'hash': '0x06e63fa29804776f6332520cea0e748a73824317d1eafd7c6a06acbaebbf73f3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 876.4579352317572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f834c186b8d36f207', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:09.000Z'}}, {'blockNum': '0x81efa7', 'uniqueId': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef:log:28', 'hash': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef', 'from': '0x5039d9b575bd5722d310af6d2fc11e053c6d03da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 748.0510061449074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288d4b0abea4c1efb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:17.000Z'}}, {'blockNum': '0x81efa7', 'uniqueId': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef:log:32', 'hash': '0xcb8b1bce98a1126ac0439ba55ba41498c8662c31824571770331b95e24bd14ef', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 748.0510061449074, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x288d4b0abea4c1efb6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:52:17.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:117', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0xdddeadf2f83ea85abd1807d396d06566a3dd2838', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:120', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efab', 'uniqueId': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb:log:121', 'hash': '0x3e04ce298ff0d0f96a869c327a3e24bf95c1c781ea2f3548228ff25154ee9dbb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 315.7540137122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x111df79a88e7806200', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:53:09.000Z'}}, {'blockNum': '0x81efb7', 'uniqueId': '0xa4581c087ffd16f474bd5f95947b3606a3c4e4cd23de7a55c8eadb047b63afe1:log:8', 'hash': '0xa4581c087ffd16f474bd5f95947b3606a3c4e4cd23de7a55c8eadb047b63afe1', 'from': '0x57886276c3fb7fe85bc74798b2afaaa22d4eb1a3', 'to': '0x576768569cfc4b5d5423837a600f5ca689a7e554', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd8d726b7177a800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:55:28.000Z'}}, {'blockNum': '0x81efc6', 'uniqueId': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969:log:77', 'hash': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 133.21380416683778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0738b68117bed15316', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:11.000Z'}}, {'blockNum': '0x81efc6', 'uniqueId': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969:log:81', 'hash': '0x824e76738bc03fdda49436b6fae8d6c395c004647ee7a95f46402505fcc04969', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 133.21380416683778, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0738b68117bed15316', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:11.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88:log:39', 'hash': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 900.2602523018567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cd9ee9af6fb42c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88:log:43', 'hash': '0x1a635c1d3f4e2a9ce0545abe43f1aa445fb98b6a82ee540bc492c8d90c91cb88', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 900.2602523018567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x30cd9ee9af6fb42c43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c:log:54', 'hash': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3412.5730496355036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8fef6f40e7baa3816', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c:log:58', 'hash': '0xcadaa6c6f311ca23163ff2ba2a6678e034701821761813e91fd32d82c15ffa1c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 3412.5730496355036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xb8fef6f40e7baa3816', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c:log:163', 'hash': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 384.0756707644447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d21ee3a3e09bed5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efc8', 'uniqueId': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c:log:167', 'hash': '0x24c062499f95b38a9b9901bdfd863fc0d80a2cc9b79e72b2c1acef536f01397c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 384.0756707644447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14d21ee3a3e09bed5f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:29.000Z'}}, {'blockNum': '0x81efca', 'uniqueId': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861:log:72', 'hash': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 955.4721885873464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33cbd71d3629d336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:57.000Z'}}, {'blockNum': '0x81efca', 'uniqueId': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861:log:76', 'hash': '0x3078b4b29fb33de3808a67f04cbe9bffae8654079b8a411e46bca510a4c13861', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 955.4721885873464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x33cbd71d3629d336eb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:58:57.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0:log:64', 'hash': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0', 'from': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 684.7267521249931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x251e7e1938492a6cb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0:log:68', 'hash': '0xd2f51ad050106358e8fe95283a23023d92c4d636a427d54d8fe17c43aab3e7d0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 684.7267521249931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x251e7e1938492a6cb7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7:log:96', 'hash': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.45991059928932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4090117c66637d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efcd', 'uniqueId': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7:log:100', 'hash': '0x8bb351f7ab10cfb4a6681282ae2b291085ea2657f58a7e48b6d1daf00a85b7d7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 244.45991059928932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4090117c66637d6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T11:59:09.000Z'}}, {'blockNum': '0x81efd7', 'uniqueId': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1:log:17', 'hash': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 488.89640011795956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a80cced9f8638f076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:01:20.000Z'}}, {'blockNum': '0x81efd7', 'uniqueId': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1:log:21', 'hash': '0x9f748297b7ff43a55864ff27262653f270e2fc2ce7f6dc0f1cecd461d0c330e1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 488.89640011795956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a80cced9f8638f076', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:01:20.000Z'}}, {'blockNum': '0x81effb', 'uniqueId': '0x58d3ce1f16a3e17d9472d563dd15be704d62692833b8f3a7a7c94b59b61af073:log:52', 'hash': '0x58d3ce1f16a3e17d9472d563dd15be704d62692833b8f3a7a7c94b59b61af073', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 1059.169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396aec31c839b68000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:10:49.000Z'}}, {'blockNum': '0x81effc', 'uniqueId': '0xa7259f8ff191699f6e2a3e019496df8faf99c45c3aab8949f648ee186498ff98:log:121', 'hash': '0xa7259f8ff191699f6e2a3e019496df8faf99c45c3aab8949f648ee186498ff98', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'value': 1059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396893c92d72ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:11:12.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:52', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:55', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f018', 'uniqueId': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802:log:58', 'hash': '0xaccef7c57cfac594eb1a8b427555a976e633775dc297d3a9987fece9b3c4f802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 9.92034563464888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x89ac25cb6257f5fa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:16:48.000Z'}}, {'blockNum': '0x81f01b', 'uniqueId': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341:log:67', 'hash': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 797.2250785257891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b37b8710a2a8e23db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:17:14.000Z'}}, {'blockNum': '0x81f01b', 'uniqueId': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341:log:71', 'hash': '0x51789ce10832cb730bdda9f76ade7caa48578af2b6b9e878801fb641c2b77341', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 797.2250785257891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2b37b8710a2a8e23db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:17:14.000Z'}}, {'blockNum': '0x81f020', 'uniqueId': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac:log:51', 'hash': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1466.6527021226566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f81e51debe7bdb346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:18:31.000Z'}}, {'blockNum': '0x81f020', 'uniqueId': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac:log:55', 'hash': '0xdb9f2822a7c1f87351f32ea1086ef31a1bfa5bf22a13ccc139500749f68978ac', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 1466.6527021226566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f81e51debe7bdb346', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:18:31.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:134', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:137', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e:log:140', 'hash': '0xf625d6805a9b301d28bb0662ae870a9d629d5340eb68a6c9a484e88793d7873e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 244.41479754573683, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d3fefcb671aa92ec3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f029', 'uniqueId': '0x9ec97a85797b8c24e1ec2a536974fbf73e19ace71b9552b38660c82cb4b12ea6:log:166', 'hash': '0x9ec97a85797b8c24e1ec2a536974fbf73e19ace71b9552b38660c82cb4b12ea6', 'from': '0xc25b92d8db42a15f1d78dc50439363cd846ddfdb', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x396893c92d72ac0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:17.000Z'}}, {'blockNum': '0x81f02a', 'uniqueId': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9:log:25', 'hash': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24402.15618560535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052ad7f212a4bfef4d24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:32.000Z'}}, {'blockNum': '0x81f02a', 'uniqueId': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9:log:28', 'hash': '0x610f7d9792a03dd93e1dea6a9177910f9bd364e900ee20514febb616c008ddb9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 24402.15618560535, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052ad7f212a4bfef4d24', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:20:32.000Z'}}, {'blockNum': '0x81f030', 'uniqueId': '0x82d38d91c5ba332ca0e33bc9210a6e7943d3c33ad215ee9d84896d1be81789f6:log:56', 'hash': '0x82d38d91c5ba332ca0e33bc9210a6e7943d3c33ad215ee9d84896d1be81789f6', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa3248bf19f3ac2efb40dccbbd71404d2f5ae7a53', 'value': 116.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065701dd5f51ef0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:29.000Z'}}, {'blockNum': '0x81f031', 'uniqueId': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474:log:116', 'hash': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 447.19540726692753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183e153d91035a9c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:41.000Z'}}, {'blockNum': '0x81f031', 'uniqueId': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474:log:120', 'hash': '0xf72b328e36e05af45396219262964ffa8d5f84a1b48bc6f318976ea50a447474', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.19540726692753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183e153d91035a9c35', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:41.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:50', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:53', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12:log:56', 'hash': '0xdba04b050b037f4e28b2a60e45e4b1dc6bcd843bfd802beea21f373a1a8dbd12', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 24.364694213865207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x015220c84c3e73703e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6:log:66', 'hash': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6', 'from': '0x83e240d1cbc6ec7f394cd6ba5ed01b7fcdf44ed5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 500.533061134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b224aa729e8d82ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f032', 'uniqueId': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6:log:70', 'hash': '0xee4a9f2c4e8eb972b5c432d11ceac0a0c4662b69ffd2b3acaaac9e72f945a6a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 500.533061134166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1b224aa729e8d82ca0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:23:47.000Z'}}, {'blockNum': '0x81f03d', 'uniqueId': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033:log:64', 'hash': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 389.8500464133615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15224197b2e9f5ce3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:25:44.000Z'}}, {'blockNum': '0x81f03d', 'uniqueId': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033:log:68', 'hash': '0x017ecd6c9cd79fd4e3b336d5d6c17d614fc488589a4022c2b34655915dad7033', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'value': 389.8500464133615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15224197b2e9f5ce3e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:25:44.000Z'}}, {'blockNum': '0x81f03e', 'uniqueId': '0x2b85d94368ee6a1018c5483afc455c413309dc852ebd5d7acb3acecfcfe14162:log:15', 'hash': '0x2b85d94368ee6a1018c5483afc455c413309dc852ebd5d7acb3acecfcfe14162', 'from': '0xa3248bf19f3ac2efb40dccbbd71404d2f5ae7a53', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 116.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065701dd5f51ef0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:05.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:180', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:183', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f03f', 'uniqueId': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473:log:186', 'hash': '0xc2ac10764b357ea262b13a80c8e1c65ba4e9b0c7ef71d93a04520e9dc50cd473', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 97.4594103344617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05488561564c9f7a4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:12.000Z'}}, {'blockNum': '0x81f043', 'uniqueId': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85:log:145', 'hash': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85', 'from': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1080.5608352325194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a93cb429659b5ca7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:46.000Z'}}, {'blockNum': '0x81f043', 'uniqueId': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85:log:149', 'hash': '0x54b78fd6f1b1d3ecf7fa1a2ba11dd770ab29ac25bd429b81d5274f2bf9ee3c85', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1080.5608352325194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3a93cb429659b5ca7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:26:46.000Z'}}, {'blockNum': '0x81f04f', 'uniqueId': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30:log:102', 'hash': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 262.39527902062224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e39774c0a1bb25bd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:29:36.000Z'}}, {'blockNum': '0x81f04f', 'uniqueId': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30:log:106', 'hash': '0x036e85121121e7990c0818c30f1a82f92bfd8f96b2e17a0fa188d8b2e387cb30', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 262.39527902062224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e39774c0a1bb25bd1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:29:36.000Z'}}, {'blockNum': '0x81f053', 'uniqueId': '0x40841e9e3f7ac2df13d70ecdb79019458e87ce4c74e8e5c57ae1a6970f312d96:log:142', 'hash': '0x40841e9e3f7ac2df13d70ecdb79019458e87ce4c74e8e5c57ae1a6970f312d96', 'from': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'to': '0x7fd8a3e656c90a0e3cd703e4ba46aa4c9d9e84fb', 'value': 341.5028015726495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12834dacabc27bcaf3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:02.000Z'}}, {'blockNum': '0x81f054', 'uniqueId': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d:log:102', 'hash': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 609.2000445136018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21065954ce116421fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:11.000Z'}}, {'blockNum': '0x81f054', 'uniqueId': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d:log:106', 'hash': '0xbd8d9bf6284c89b56d3cc7b2a100bdcf90995d346da76e5e0162a13e4558d19d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 609.2000445136018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21065954ce116421fe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:30:11.000Z'}}, {'blockNum': '0x81f061', 'uniqueId': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19:log:21', 'hash': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19', 'from': '0x6ea98a7e211b584d59e0d3aba12891877b55ab17', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 254.85581796066703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0d5c026b72d146a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:31:48.000Z'}}, {'blockNum': '0x81f061', 'uniqueId': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19:log:25', 'hash': '0x537ed86c9936568c2fe5060f1c4819f848e966c98bef21b5d218815f4e042f19', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 254.85581796066703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dd0d5c026b72d146a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:31:48.000Z'}}, {'blockNum': '0x81f063', 'uniqueId': '0x5cb4961bd16f6a04ce48016b8e3e464117da53a8d6fba548334268a72c1b7c12:log:10', 'hash': '0x5cb4961bd16f6a04ce48016b8e3e464117da53a8d6fba548334268a72c1b7c12', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xdd4c592dd07d4e9f56a4f50f36771d23b9a6d04c', 'value': 11.88546544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4f1a7d88561c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:32:25.000Z'}}, {'blockNum': '0x81f071', 'uniqueId': '0xe40a6d8d1c74bc701d7c39566ab19e8c5dcda689a5a9cd16a411b8cce7fcea80:log:49', 'hash': '0xe40a6d8d1c74bc701d7c39566ab19e8c5dcda689a5a9cd16a411b8cce7fcea80', 'from': '0xdd4c592dd07d4e9f56a4f50f36771d23b9a6d04c', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 11.88546544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa4f1a7d88561c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:34:28.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:160', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:163', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f077', 'uniqueId': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b:log:166', 'hash': '0xf0d041c6ef79481d916d65522b29e67c0e1c2fa945191b73c234a6b334bf919b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 487.3413605323029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6b38515be37c1efd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:36:24.000Z'}}, {'blockNum': '0x81f0b8', 'uniqueId': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e:log:6', 'hash': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e', 'from': '0xbac94dc2411f494c438ca667a4836e3dccaa4920', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 606.6913677442114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20e388b893219b1c7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:35.000Z'}}, {'blockNum': '0x81f0b8', 'uniqueId': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e:log:10', 'hash': '0x7f476e28e7ead0153801c423002dd065b4ffb61852880bc9b960bdd462bcc29e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 606.6913677442114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20e388b893219b1c7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:35.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:86', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0xa523b5195ba2f859607785e34d9607558413e72b', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:89', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0b9', 'uniqueId': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c:log:91', 'hash': '0x7c00acf861a85eae65e4c458ded7f165904b2d1b6783172de88c2f4eb3752c9c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 113.30265843827425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x062463e78be0c0802c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:50:49.000Z'}}, {'blockNum': '0x81f0c7', 'uniqueId': '0x64211088fb6e06457de677d2f96994ad70f3f92051c49e73bef5dcee2b5be097:log:99', 'hash': '0x64211088fb6e06457de677d2f96994ad70f3f92051c49e73bef5dcee2b5be097', 'from': '0x80bac595727e9bb690d2b2354450e176f44903eb', 'to': '0x466611822da9e4f52d6ddd7af277b58d8195d5f9', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:53:32.000Z'}}, {'blockNum': '0x81f0cf', 'uniqueId': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4:log:54', 'hash': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1351.7103732575401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4946bfeecf2a5ae899', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:56:31.000Z'}}, {'blockNum': '0x81f0cf', 'uniqueId': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4:log:58', 'hash': '0xb2456b21f240175f24d52861cafbd2b2d593df9dde234885eca0426f52e1bac4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1351.7103732575401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4946bfeecf2a5ae899', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:56:31.000Z'}}, {'blockNum': '0x81f0d7', 'uniqueId': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434:log:55', 'hash': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 469.7743436537185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19776dbc94f82c0c6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:06.000Z'}}, {'blockNum': '0x81f0d7', 'uniqueId': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434:log:59', 'hash': '0x316a0bfd40ce6b44affd42f26e24396e11a4a5579fe42383739920dcebd68434', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 469.7743436537185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19776dbc94f82c0c6c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:06.000Z'}}, {'blockNum': '0x81f0d9', 'uniqueId': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f:log:75', 'hash': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.3071829693401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6abee50be7cc7cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:27.000Z'}}, {'blockNum': '0x81f0d9', 'uniqueId': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f:log:79', 'hash': '0x8c81eb458b50fd2de518fa8e450131486abc7a742464157077273c74e4b97d8f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 487.3071829693401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6abee50be7cc7cb8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T12:59:27.000Z'}}, {'blockNum': '0x81f0dd', 'uniqueId': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f:log:234', 'hash': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f', 'from': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 242.72416135686487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d287972bf1086c307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:22.000Z'}}, {'blockNum': '0x81f0dd', 'uniqueId': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f:log:238', 'hash': '0x07569f9bb1d4ed52ddeb746adcbfcad837cc21b5f3df36a1984180dc154e651f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 242.72416135686487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d287972bf1086c307', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:22.000Z'}}, {'blockNum': '0x81f0e0', 'uniqueId': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f:log:38', 'hash': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 390.7022173109214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152e151c9d7ef212b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:47.000Z'}}, {'blockNum': '0x81f0e0', 'uniqueId': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f:log:42', 'hash': '0x85c6da7cf83673d3cf77ce89f5024b22e581de7fd068548ccc4cd07a7900102f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 390.7022173109214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x152e151c9d7ef212b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:00:47.000Z'}}, {'blockNum': '0x81f0e2', 'uniqueId': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa:log:47', 'hash': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa', 'from': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 736.2613156346276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27e9ada5b0a7bd098e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:00.000Z'}}, {'blockNum': '0x81f0e2', 'uniqueId': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa:log:51', 'hash': '0xd5c4851262bf7825b7cff639b5eed2633dac81e31611b6a9965699fc58e63cfa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 736.2613156346276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x27e9ada5b0a7bd098e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:00.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445:log:33', 'hash': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445', 'from': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4349.390875443627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xebc7ec7527cea6f414', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445:log:37', 'hash': '0xb0e9aadf676f7c3bf521efe6a11ad3f0c0dfce25d52b2e41c752115af0876445', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4349.390875443627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xebc7ec7527cea6f414', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507:log:54', 'hash': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1219.287340947652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x421902d087db647655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0e3', 'uniqueId': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507:log:58', 'hash': '0xf5d929e4d561a5f7c3f0611d3ad83aeb1589c56cddc62f3e54ec5a0e51129507', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'value': 1219.287340947652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x421902d087db647655', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:01:16.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba:log:102', 'hash': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1046.5632184542094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38bbfb764128b0fbaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba:log:106', 'hash': '0x3b949469f7131ded9752bd0dab77a2106ddef7fd3a22cd09ee408be0a8d718ba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1046.5632184542094, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x38bbfb764128b0fbaa', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:158', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0x41f57a9c25d6f9607b85fac6fe778c265d8575f6', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:161', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0ee', 'uniqueId': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea:log:162', 'hash': '0xe4c3e3bcf13bfbd5dc284949b583883132a8236812e35eacf593160b55f0f3ea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2086ac351052600000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:04:38.000Z'}}, {'blockNum': '0x81f0f5', 'uniqueId': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b:log:113', 'hash': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 14.145635756547637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc44f64c617160344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:07:51.000Z'}}, {'blockNum': '0x81f0f5', 'uniqueId': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b:log:117', 'hash': '0x276cc720c2e00d3db67e1adc0add7c24e69b75cb1380015db3d3c907a99cc35b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 14.145635756547637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xc44f64c617160344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:07:51.000Z'}}, {'blockNum': '0x81f0fb', 'uniqueId': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e:log:50', 'hash': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1930.7827775313965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68aafe627070f3da53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:08:30.000Z'}}, {'blockNum': '0x81f0fb', 'uniqueId': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e:log:55', 'hash': '0x6d4325cdbc9960fa0e05a19cfe1d93fae55721c8f5d909fd8ee5932d1b18663e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 1930.7827775313965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x68aafe627070f3da53', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:08:30.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3:log:33', 'hash': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1480.0618854219433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x503bfc1b1659d4a336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3:log:37', 'hash': '0x862e6bdbc2fcb21b8fcdf56e4a5b82de2fd3907c4ae3ee4a66215864dd3f7ce3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1480.0618854219433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x503bfc1b1659d4a336', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e:log:49', 'hash': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.85885346195505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7266d26fc92e2feb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e:log:53', 'hash': '0x280893664c98691a028caa19387168037699dffcb1ee64e168a8340522795d2e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 487.85885346195505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a7266d26fc92e2feb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88:log:65', 'hash': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 253.6456807507306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc00a7ac5376f1b1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f104', 'uniqueId': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88:log:69', 'hash': '0x3daf732176a4cd1af16c09d12d27dbd0ae3b7e03128a49a4a60dc25dc1d26b88', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 253.6456807507306, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0dc00a7ac5376f1b1c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:09:32.000Z'}}, {'blockNum': '0x81f10b', 'uniqueId': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf:log:166', 'hash': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 531.0166204283288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cc95602d53af93a59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:11:19.000Z'}}, {'blockNum': '0x81f10b', 'uniqueId': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf:log:170', 'hash': '0x173eed8a037d26dbdeab48b33bfa1fa32043ab1c01d61b830b3e9640e6264adf', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 531.0166204283288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1cc95602d53af93a59', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:11:19.000Z'}}, {'blockNum': '0x81f117', 'uniqueId': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c:log:136', 'hash': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c', 'from': '0x466611822da9e4f52d6ddd7af277b58d8195d5f9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1f0a87470e840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:21.000Z'}}, {'blockNum': '0x81f117', 'uniqueId': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c:log:139', 'hash': '0xdfe1b8344d47dd2439ca9d7c6c2524cd57a96e58264b1a653e4a0f49db8b008c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a1f0a87470e840000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:21.000Z'}}, {'blockNum': '0x81f11a', 'uniqueId': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f:log:35', 'hash': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:37.000Z'}}, {'blockNum': '0x81f11a', 'uniqueId': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f:log:38', 'hash': '0x3f4bb6c06732da6c445bfedc0529f2db1e38ce357af9b1d048d7619fcaa95e0f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:13:37.000Z'}}, {'blockNum': '0x81f11d', 'uniqueId': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0:log:80', 'hash': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.675411405449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a997d3ef6a8710070', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:14:23.000Z'}}, {'blockNum': '0x81f11d', 'uniqueId': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0:log:84', 'hash': '0xeb871a3d9497877d2caeacddbc728d08a5552196f29a7f20e6ae632903293bc0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 490.675411405449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a997d3ef6a8710070', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:14:23.000Z'}}, {'blockNum': '0x81f11f', 'uniqueId': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59:log:91', 'hash': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59', 'from': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 355.44611119427555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1344ce42e5a0ca8eef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:15:02.000Z'}}, {'blockNum': '0x81f11f', 'uniqueId': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59:log:95', 'hash': '0x106feddb513f4e0e90ad1a4cc9fd3e9247b4ca5ec354c58922b4beb40f778a59', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 355.44611119427555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1344ce42e5a0ca8eef', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:15:02.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba:log:13', 'hash': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 942.8684335334889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331ced94c4849d155a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba:log:17', 'hash': '0x8dd0d30345ec0c42255d3bf9213cf7b490e531ed0c6298930d7a103fe01f50ba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 942.8684335334889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x331ced94c4849d155a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1:log:28', 'hash': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 688.432827209895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2551ecb8dfbbaa1d1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13b', 'uniqueId': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1:log:32', 'hash': '0x557e8c0a91af47942cf7100f77088672cc362091cd599c40f71f5277488b80b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 688.432827209895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2551ecb8dfbbaa1d1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:15.000Z'}}, {'blockNum': '0x81f13c', 'uniqueId': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05:log:98', 'hash': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1128.6318335956482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d2ee9c0e852644be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:37.000Z'}}, {'blockNum': '0x81f13c', 'uniqueId': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05:log:102', 'hash': '0x0bd6a050c580dde5b54b95e13e19f769b213ff49b3fa3e19f52df02c56ea3b05', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1128.6318335956482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3d2ee9c0e852644be5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:37.000Z'}}, {'blockNum': '0x81f13d', 'uniqueId': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4:log:48', 'hash': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 703.2884980511309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262016aacb9ba7b8f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:48.000Z'}}, {'blockNum': '0x81f13d', 'uniqueId': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4:log:52', 'hash': '0xf3b5443a99c80b38af37a041015c7ca521c1608031840d1788f13eecf218cec4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 703.2884980511309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262016aacb9ba7b8f0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:21:48.000Z'}}, {'blockNum': '0x81f148', 'uniqueId': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a:log:70', 'hash': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.56843490547163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12add8fdf1d8f187cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:24:06.000Z'}}, {'blockNum': '0x81f148', 'uniqueId': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a:log:74', 'hash': '0x0bf0fd97af0654a4ffae6440c88d436d8066e68a6085e641ceb24aa0111c094a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 344.56843490547163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12add8fdf1d8f187cd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:24:06.000Z'}}, {'blockNum': '0x81f154', 'uniqueId': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076:log:58', 'hash': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 152.8234229759484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0848d9dd80e0ac9c9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:27:15.000Z'}}, {'blockNum': '0x81f154', 'uniqueId': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076:log:63', 'hash': '0x5cacca15e7e1c4ea30dc12a1c60a93f6a8f18bba49c3c17141a58faa3bcd1076', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x73f73391e5f56ce371a61fc3e18200a73d44cf6f', 'value': 152.8234229759484, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0848d9dd80e0ac9c9e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:27:15.000Z'}}, {'blockNum': '0x81f187', 'uniqueId': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447:log:47', 'hash': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.877216763220558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43af5ace385780b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:37:34.000Z'}}, {'blockNum': '0x81f187', 'uniqueId': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447:log:51', 'hash': '0xed01f8a0a53afd21322dc6bb5e2786b5e70b47e5fd362f90b9e342b7036a5447', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 4.877216763220558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43af5ace385780b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:37:34.000Z'}}, {'blockNum': '0x81f18f', 'uniqueId': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4:log:69', 'hash': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 987.8334598444121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x358cf171f66748cdea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:38:57.000Z'}}, {'blockNum': '0x81f18f', 'uniqueId': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4:log:73', 'hash': '0xea8f6084b528fc6b57dc9ebed37a6157c88be1fee6e4c0fdf3c5777e06f286d4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 987.8334598444121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x358cf171f66748cdea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:38:57.000Z'}}, {'blockNum': '0x81f197', 'uniqueId': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6:log:24', 'hash': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6', 'from': '0xe88d6d63389d5c91e6348e379913f330739ad2c4', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 509.9673240823878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba537e3548b3b4c06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:40:11.000Z'}}, {'blockNum': '0x81f197', 'uniqueId': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6:log:28', 'hash': '0x445497a4a30536bb2d60969a7c8f9e852e22812f20834653ff7630d95e2821d6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 509.9673240823878, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ba537e3548b3b4c06', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:40:11.000Z'}}, {'blockNum': '0x81f19d', 'uniqueId': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863:log:82', 'hash': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.326818890226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356a28114ba1939344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:41:36.000Z'}}, {'blockNum': '0x81f19d', 'uniqueId': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863:log:86', 'hash': '0x7d07225087c63437b152d6a597f039c691474664a8a99d4b0058603c3fd03863', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 985.326818890226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356a28114ba1939344', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:41:36.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:107', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:110', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a3', 'uniqueId': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742:log:111', 'hash': '0x61c14ce99b1a04db79d742919521e5a184d68f48f477575f18797f7ce1fc7742', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4876.702940529008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01085dd93e8816667951', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:42.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2:log:28', 'hash': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.880647972545573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bb8b78e54f3056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2:log:32', 'hash': '0x9d698d6a496d00b88ea12dc54e45951264007efa64c4bf29739dbed9e364c9d2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 4.880647972545573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x43bb8b78e54f3056', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739:log:56', 'hash': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1342.5746007406688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48c7f7261bc974bf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a5', 'uniqueId': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739:log:60', 'hash': '0xd13af326b4000a5016904f587030796f5f95227a8583e2a0522c1b66bddba739', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1342.5746007406688, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x48c7f7261bc974bf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:42:46.000Z'}}, {'blockNum': '0x81f1a8', 'uniqueId': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720:log:233', 'hash': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 118.63782262552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x066e6e371b9818af10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:09.000Z'}}, {'blockNum': '0x81f1a8', 'uniqueId': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720:log:235', 'hash': '0x8a3327668c81fc99b816d1dbeb3889c4c7eee6b468b19e8fc7ae936f640e0720', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x10b4a87cc41ab72ec0955786c7645e32dcf56049', 'value': 118.63782262552296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x066e6e371b9818af10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:09.000Z'}}, {'blockNum': '0x81f1ac', 'uniqueId': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989:log:74', 'hash': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989', 'from': '0xdda1bfaf552b0f303d27853a4a13dd440c7e849f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1361.4636767680593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ce1aa0ad4569bda2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:43.000Z'}}, {'blockNum': '0x81f1ac', 'uniqueId': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989:log:79', 'hash': '0x912125649616eab52a6415fd2ac8658e30ed3ffe2a9d2f5393ea4c85de968989', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1361.4636767680593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x49ce1aa0ad4569bda2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:43:43.000Z'}}, {'blockNum': '0x81f1ba', 'uniqueId': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0:log:37', 'hash': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 976.2382344746645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ec06edec40e108fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:47:46.000Z'}}, {'blockNum': '0x81f1ba', 'uniqueId': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0:log:40', 'hash': '0x4b0a1623fbd5f2b14b12e7b110b7e6eee91d2708a79a35b8ef6a9cdb778092d0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xefd0199657b444856e3259ed8e3c39ee43cf51dc', 'value': 976.2382344746645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x34ec06edec40e108fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:47:46.000Z'}}, {'blockNum': '0x81f1bc', 'uniqueId': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb:log:131', 'hash': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 116.16406189296919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064c19a6d3fceb4bf8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:48:13.000Z'}}, {'blockNum': '0x81f1bc', 'uniqueId': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb:log:135', 'hash': '0x8dd92a2cabfad32d998e1c2ff1cb2c569261aa8d0e1eea9ad1e6229dc1800cdb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 116.16406189296919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x064c19a6d3fceb4bf8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:48:13.000Z'}}, {'blockNum': '0x81f1c2', 'uniqueId': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007:log:181', 'hash': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007', 'from': '0x7f913e9deef8efe8d09a2e67d18ced9be4ad1dc7', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.4517991923932345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22068a601330385d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:08.000Z'}}, {'blockNum': '0x81f1c2', 'uniqueId': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007:log:185', 'hash': '0x7d6853565731f108749cca5b1712c453a2edfe67896362fea35c236fbd9a2007', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2.4517991923932345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x22068a601330385d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:08.000Z'}}, {'blockNum': '0x81f1c3', 'uniqueId': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47:log:12', 'hash': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5020.100912229649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011023e52e09ceac07c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:11.000Z'}}, {'blockNum': '0x81f1c3', 'uniqueId': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47:log:15', 'hash': '0x623f7338f4fd885314bcfb1db7a86bd56ef2a0d967369370bdffd256296aff47', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3463a5a0ac21b0729fba76d3bc1123180f3d99fd', 'value': 5020.100912229649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011023e52e09ceac07c8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:50:11.000Z'}}, {'blockNum': '0x81f1d4', 'uniqueId': '0x84f2346ce460d0315db083d287aeb684bc095ab3b10530d897a5498f603602e3:log:26', 'hash': '0x84f2346ce460d0315db083d287aeb684bc095ab3b10530d897a5498f603602e3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x10b4a87cc41ab72ec0955786c7645e32dcf56049', 'value': 128.868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fc671b3a630a0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:54:44.000Z'}}, {'blockNum': '0x81f1de', 'uniqueId': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894:log:46', 'hash': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 61.945372904046465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035baa2c74a0cc0382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:37.000Z'}}, {'blockNum': '0x81f1de', 'uniqueId': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894:log:50', 'hash': '0xc1c973c6fadc2588331516cdea8e1edd7904684639aa6029aadec224cc724894', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 61.945372904046465, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x035baa2c74a0cc0382', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:37.000Z'}}, {'blockNum': '0x81f1e1', 'uniqueId': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6:log:14', 'hash': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.0439572089029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a593703e905d13e68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:54.000Z'}}, {'blockNum': '0x81f1e1', 'uniqueId': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6:log:18', 'hash': '0x47be47dc5ed7a69eb372b5b9ee44355dc183a398d7bcfb483912ac8e30ab98c6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 486.0439572089029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a593703e905d13e68', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:57:54.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:26', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:29', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1e7', 'uniqueId': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b:log:32', 'hash': '0xb6c589fdd7a8eab51a3736d8d55c953877426c4ed4a2a86dc005449a7d7d675b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 156.34509992415695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0879b960077853bf7c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T13:58:57.000Z'}}, {'blockNum': '0x81f1f3', 'uniqueId': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95:log:19', 'hash': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 816.4955360909327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4326dc18902d0d98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:00:55.000Z'}}, {'blockNum': '0x81f1f3', 'uniqueId': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95:log:23', 'hash': '0x22e128208609faf41a073b2389276452692017bb67a74d561c7c47420747da95', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 816.4955360909327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c4326dc18902d0d98', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:00:55.000Z'}}, {'blockNum': '0x81f1f7', 'uniqueId': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d:log:27', 'hash': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:01:57.000Z'}}, {'blockNum': '0x81f1f7', 'uniqueId': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d:log:30', 'hash': '0xf85efa6992340772500e841440abf2d9d63ef6794560bf74ffff401f4962588d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:01:57.000Z'}}, {'blockNum': '0x81f204', 'uniqueId': '0xf6d3b125652e5b241cbe243488dfb4bd5a4bb470c08a2990946af57f9125b48e:log:39', 'hash': '0xf6d3b125652e5b241cbe243488dfb4bd5a4bb470c08a2990946af57f9125b48e', 'from': '0x4ef377462b03b650d52140c482394a6703d0d338', 'to': '0x4eda3df07254801def1ab3ebe50d79f5a6f3bfd6', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:07.000Z'}}, {'blockNum': '0x81f205', 'uniqueId': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d:log:96', 'hash': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 75.2971955012658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0414f5605de416ea71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:22.000Z'}}, {'blockNum': '0x81f205', 'uniqueId': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d:log:98', 'hash': '0x68c6431e78ff1c419d24b965827565b281fc11ee6865adb1665c5b77ea28879d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75.2971955012658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0414f5605de416ea71', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:05:22.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c:log:97', 'hash': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 271.97293189713076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebe61f49609fc0c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c:log:101', 'hash': '0xffd5d3ffa21246d4b846f69d0551f3c63648a7f7225a8ac03aa112d12349541c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 271.97293189713076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ebe61f49609fc0c7f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04:log:132', 'hash': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 990.5276956815171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35b2554b2e830e1fba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f20e', 'uniqueId': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04:log:136', 'hash': '0x5dec3f38bd108c53c9dfd810b0037b45c1646f349e2e4c121d1b3c1592dfed04', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 990.5276956815171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35b2554b2e830e1fba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:05.000Z'}}, {'blockNum': '0x81f210', 'uniqueId': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c:log:69', 'hash': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 566.1109121429901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb05dfb35bb4af0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:31.000Z'}}, {'blockNum': '0x81f210', 'uniqueId': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c:log:71', 'hash': '0xd4971617e47c540944b70be422557981fd1914a7385bf1064e2be4ef087b204c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 566.1109121429901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1eb05dfb35bb4af0b7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:08:31.000Z'}}, {'blockNum': '0x81f218', 'uniqueId': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443:log:84', 'hash': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1229.2253301640137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a2eda511ba4c1544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:39.000Z'}}, {'blockNum': '0x81f218', 'uniqueId': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443:log:88', 'hash': '0x04d0090e2101440491e6a2d9c2c2a0e2bd91ea5276dc0943c90d9a2260f76443', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1229.2253301640137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a2eda511ba4c1544', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:39.000Z'}}, {'blockNum': '0x81f219', 'uniqueId': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e:log:20', 'hash': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.82274148083843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a71e686c7fa969b2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:50.000Z'}}, {'blockNum': '0x81f219', 'uniqueId': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e:log:24', 'hash': '0x7f2cad141d217a93820d8dbbdae192ad633cfd85777d5ba245edfa3034b0993e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'value': 487.82274148083843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a71e686c7fa969b2f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:50.000Z'}}, {'blockNum': '0x81f21a', 'uniqueId': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5:log:122', 'hash': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 161.48452121209996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08c10c4475f3403197', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:55.000Z'}}, {'blockNum': '0x81f21a', 'uniqueId': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5:log:126', 'hash': '0xe460cb90fd617a9997f32ae7dfaf59bcbdc8cddf5a6426c1a69d79a8327306d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 161.48452121209996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08c10c4475f3403197', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:09:55.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76:log:47', 'hash': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.89995675937547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a72f8d9aafb052a30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76:log:51', 'hash': '0xe4dc6b084a63b5ba45c9b7b9bd17835f6f18ca5d6b05deeaefb6ce54398afb76', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 487.89995675937547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a72f8d9aafb052a30', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb:log:64', 'hash': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 478.11179368745275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19eb224f36c178d921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f21d', 'uniqueId': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb:log:68', 'hash': '0xc77f5cf983fa9231828eea4360ceaab479cf777c359c32ee2ff4dd561c062ffb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 478.11179368745275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x19eb224f36c178d921', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:10:53.000Z'}}, {'blockNum': '0x81f224', 'uniqueId': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f:log:92', 'hash': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f', 'from': '0xfe62e9d7c7781936499eaae20fbf3671b641516d', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 20.867390302783864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012197dceb92dd003a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:12:31.000Z'}}, {'blockNum': '0x81f224', 'uniqueId': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f:log:96', 'hash': '0x59f426ea94c38dbfbba7edd5aa850ddf60512ce73c87b078a0f31e39eb64422f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 20.867390302783864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x012197dceb92dd003a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:12:31.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208:log:78', 'hash': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 575.6475820031172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f34b709eb945924b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208:log:82', 'hash': '0x47709f70111d01e3b314cf36260b7d07ca24f7385cf3e8d5ed1b258bd81e2208', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 575.6475820031172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1f34b709eb945924b5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315:log:92', 'hash': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315', 'from': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 861.3287559960906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb156741028178b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22b', 'uniqueId': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315:log:96', 'hash': '0x37a0e6e21785739a219622afdfcf02b0801c62642ebe14a013561dfaf7a4e315', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 861.3287559960906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2eb156741028178b37', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:11.000Z'}}, {'blockNum': '0x81f22c', 'uniqueId': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231:log:139', 'hash': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 211.8323298273057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7bc39da463f09012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:31.000Z'}}, {'blockNum': '0x81f22c', 'uniqueId': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231:log:143', 'hash': '0x4d431710c45fbec419ee23e1e960fb19a4d7737d217850c1561de81de006a231', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 211.8323298273057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0b7bc39da463f09012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:31.000Z'}}, {'blockNum': '0x81f230', 'uniqueId': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4:log:52', 'hash': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1224.0318038641803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425ada886a81154ae8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:58.000Z'}}, {'blockNum': '0x81f230', 'uniqueId': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4:log:56', 'hash': '0x9794712ed01655453abcfe52128df4f8503ac092acf9801e8c3e312b6fbb49b4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1224.0318038641803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x425ada886a81154ae8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:14:58.000Z'}}, {'blockNum': '0x81f235', 'uniqueId': '0x7f62712d37afeb4984c983a309ff184e64f1f0d06490088d85a7bffde3e535ce:log:1', 'hash': '0x7f62712d37afeb4984c983a309ff184e64f1f0d06490088d85a7bffde3e535ce', 'from': '0x2b704992676068e24ebccebe29e22a7883c9593a', 'to': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:15:47.000Z'}}, {'blockNum': '0x81f23e', 'uniqueId': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4:log:66', 'hash': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 268.37603821456327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8c7738d6c5b44069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:16:56.000Z'}}, {'blockNum': '0x81f23e', 'uniqueId': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4:log:69', 'hash': '0x4d716917fbd29289dcec4d9382da70584a4bc8810c2947b9a90a5e7ce220cdf4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc74a40e0de05127ec0686b95fe38014e5685b1b1', 'value': 268.37603821456327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e8c7738d6c5b44069', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:16:56.000Z'}}, {'blockNum': '0x81f23f', 'uniqueId': '0x1394afa16b4a3b05abc0db04e4be244c6236e71322c8341ee0b0285cb13b39ff:log:3', 'hash': '0x1394afa16b4a3b05abc0db04e4be244c6236e71322c8341ee0b0285cb13b39ff', 'from': '0x2b704992676068e24ebccebe29e22a7883c9593a', 'to': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'value': 1999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c5db2a4d815dc0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:17:06.000Z'}}, {'blockNum': '0x81f24c', 'uniqueId': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23:log:98', 'hash': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 390.34835325302976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15292bef2121887129', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:20:52.000Z'}}, {'blockNum': '0x81f24c', 'uniqueId': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23:log:102', 'hash': '0xc46e43e51913a7ed3754b751bfddb7984dbbf0706bae621b05b334a87dd05d23', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 390.34835325302976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x15292bef2121887129', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:20:52.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e:log:22', 'hash': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e', 'from': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e:log:25', 'hash': '0xae28d7ad31a39793ebee621a376ea339ed03245cc5bf8ab4b78c3bac9a941b3e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0:log:31', 'hash': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 549.8681260388602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dcef4034e5ffba13c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0:log:35', 'hash': '0x7e4bcced12785ed1c429ba7f0d1e0e63da0cd8fec3780ad575834e0420b64ae0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 549.8681260388602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1dcef4034e5ffba13c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab:log:42', 'hash': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab', 'from': '0x53f397713ecd059e0c6d4f3a368899a4eb293118', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f24f', 'uniqueId': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab:log:45', 'hash': '0x68adbcc9c79ef9ff2cfb4df329f3624d3d1ba13bf1bcc38e5d2f2af2a0daf9ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:21:42.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4:log:99', 'hash': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 542.4504528360167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d680324d4248ebc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4:log:103', 'hash': '0x8a640f7d042b3b4eefc8bdba6634164e412fdc8e9cb9487c88e7fc0cf9cd55c4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 542.4504528360167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d680324d4248ebc33', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576:log:114', 'hash': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.58452613327336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9d3ca232bbc54698', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f256', 'uniqueId': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576:log:119', 'hash': '0x9acb48822040d861f043a0608b35b1feee54a073204ed6a19daa4a50c5aed576', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 269.58452613327336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9d3ca232bbc54698', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:24:07.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49:log:122', 'hash': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 688.5844548632133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255407696bd9d3509f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49:log:126', 'hash': '0x0ecf16f36b2f0350d1e4349d851db6e2ae62851d24527cd2aa4512a23606cc49', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 688.5844548632133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x255407696bd9d3509f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a:log:135', 'hash': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1081.4817629555005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3aa0930d78d9cfb931', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a:log:139', 'hash': '0x83167a80928c4bd3a24e2e6f6c7c0da6e66e9318105f3e3f1dbd4af62fb0122a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1081.4817629555005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3aa0930d78d9cfb931', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297:log:151', 'hash': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2439.6995664846004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8441a205a2ad18f061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297:log:155', 'hash': '0x68de371f4ed0c1f7dd5e35b4ce0c6e8d05fc664801330b100c75b7a3659c8297', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 2439.6995664846004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8441a205a2ad18f061', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac:log:166', 'hash': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 682.976584518309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x250634410deb5bc615', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac:log:170', 'hash': '0x8a7b12eb51efa68ad1e1da68032e6ac86ce1fde3fd7884c6c761aae5a49494ac', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 682.976584518309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x250634410deb5bc615', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1:log:181', 'hash': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 459.06940390350013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18e2de2698a672ad69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f273', 'uniqueId': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1:log:185', 'hash': '0x2893968c235eb23c06af4627d67514af8a5767c619c3f28699a0567b21d23ed1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 459.06940390350013, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x18e2de2698a672ad69', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:54.000Z'}}, {'blockNum': '0x81f274', 'uniqueId': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb:log:81', 'hash': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb', 'from': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 483.50053526928554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a35eaf721bcfd5e5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:58.000Z'}}, {'blockNum': '0x81f274', 'uniqueId': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb:log:83', 'hash': '0x1ff7cb853e7800156d7fc3acf2a72f48b15241ae7f0bf557930512450e25d9eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 483.50053526928554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a35eaf721bcfd5e5c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:31:58.000Z'}}, {'blockNum': '0x81f275', 'uniqueId': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba:log:48', 'hash': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 706.8564516822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26519a95b813baaa01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:32:07.000Z'}}, {'blockNum': '0x81f275', 'uniqueId': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba:log:52', 'hash': '0x04077193d1e51f47ca5e9c395b24a391cc7ee2b4f4bc1ff71834e3061cc85aba', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 706.8564516822861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x26519a95b813baaa01', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:32:07.000Z'}}, {'blockNum': '0x81f27d', 'uniqueId': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6:log:149', 'hash': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 111.85346063345409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06104751d2332ba4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:34:06.000Z'}}, {'blockNum': '0x81f27d', 'uniqueId': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6:log:154', 'hash': '0xb376902d10a47ab8467a1121ace797511ba004d192d6797f5792871b2a1204b6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 111.85346063345409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06104751d2332ba4e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:34:06.000Z'}}, {'blockNum': '0x81f28b', 'uniqueId': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231:log:19', 'hash': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231', 'from': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 44.1367901834085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02648560d33803040a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:37:36.000Z'}}, {'blockNum': '0x81f28b', 'uniqueId': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231:log:24', 'hash': '0x2af4af989db54b65feacf70676661948eeebebf89ed38e0d19c5f23884164231', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 44.1367901834085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02648560d33803040a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:37:36.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:144', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:147', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f299', 'uniqueId': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0:log:150', 'hash': '0xcf7b00b3d2f6b8bd3e89418f701658c43ea90d9deb7441cc2ef6e17ba11f96a0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 5.855082946992235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x51416eeb31eb628b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:40:16.000Z'}}, {'blockNum': '0x81f2a3', 'uniqueId': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c:log:15', 'hash': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 141.49647622419326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07aba87772088b9330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:42:49.000Z'}}, {'blockNum': '0x81f2a3', 'uniqueId': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c:log:19', 'hash': '0x9d736b86db60fc99ebc7470f0d224492a881f232d2e950fddadc7114282ec04c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x92a497f0bcdeaa5345f6aa4a3357ee3cbe2e7226', 'value': 141.49647622419326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07aba87772088b9330', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:42:49.000Z'}}, {'blockNum': '0x81f2a4', 'uniqueId': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a:log:119', 'hash': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.00010000000000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:43:00.000Z'}}, {'blockNum': '0x81f2a4', 'uniqueId': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a:log:122', 'hash': '0x7080450e79abb5d52961f86726b2e00e47c7ed9b3b0b675bca9f2d6d85cc9e9a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x272ffb35833185a81660f4d62496d89bc38c7978', 'value': 0.00010000000000007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4046', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:43:00.000Z'}}, {'blockNum': '0x81f2b3', 'uniqueId': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e:log:118', 'hash': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 186.20457652725605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a181b8bcc2322ae03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:46:22.000Z'}}, {'blockNum': '0x81f2b3', 'uniqueId': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e:log:122', 'hash': '0x2769fb5f1a929be1a4eb38b173d41aaa8ca4a371f734bf1e26157bb507830c4e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 186.20457652725605, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0a181b8bcc2322ae03', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:46:22.000Z'}}, {'blockNum': '0x81f2da', 'uniqueId': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00:log:109', 'hash': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 60.44406420924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d47426e5390d02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:55:18.000Z'}}, {'blockNum': '0x81f2da', 'uniqueId': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00:log:113', 'hash': '0x8c65277f10c1d0f140f59e89884d2a77366687681ee8e0bc4f7ec28374b1cb00', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 60.44406420924957, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0346d47426e5390d02', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:55:18.000Z'}}, {'blockNum': '0x81f2e5', 'uniqueId': '0xee07f84c0daa222001da9ddd14acc66ade83cc72d65592efb96c36e3a3bd3126:log:5', 'hash': '0xee07f84c0daa222001da9ddd14acc66ade83cc72d65592efb96c36e3a3bd3126', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 25366.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x055f1e32d862ecea1000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:57:00.000Z'}}, {'blockNum': '0x81f2e8', 'uniqueId': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f:log:41', 'hash': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1898.3219062922733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x66e8823408455132bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:58:05.000Z'}}, {'blockNum': '0x81f2e8', 'uniqueId': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f:log:45', 'hash': '0x6535459816126d3cff6b6b8f05354b5293d87eb4b78a8ec39f71b6fc46667f6f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1898.3219062922733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x66e8823408455132bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:58:05.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xdf7e6566266f945122383ecdae27fbc56353a3e9480f6e52af90a43a4a087d5f:log:13', 'hash': '0xdf7e6566266f945122383ecdae27fbc56353a3e9480f6e52af90a43a4a087d5f', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 1423.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d290be23b3dac8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee:log:40', 'hash': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 319.9893279013035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1158be7659a12fed1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2ec', 'uniqueId': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee:log:44', 'hash': '0xbe99ed1d2da672a628dabf1b8621b594d298bb201166387735c6592d90a8d6ee', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 319.9893279013035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1158be7659a12fed1b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T14:59:16.000Z'}}, {'blockNum': '0x81f2fa', 'uniqueId': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d:log:99', 'hash': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.0000000000000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80113', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:01:35.000Z'}}, {'blockNum': '0x81f2fa', 'uniqueId': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d:log:102', 'hash': '0x41fd05d717d8453ee01483f204cb07242f8947640235cd66e22ef4260b924b5d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x301166fae420d41984c00ac498a41eab26109cc5', 'value': 2.0000000000000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80113', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:01:35.000Z'}}, {'blockNum': '0x81f2fe', 'uniqueId': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2:log:47', 'hash': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.440113917888392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21dd06ae17396b70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:02:55.000Z'}}, {'blockNum': '0x81f2fe', 'uniqueId': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2:log:51', 'hash': '0x3e99041999bc8f794e57ac574f7d4efed5f8987b28b414028435d1466039aac2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x71168843b49e305e4d53de158683903ef261b37f', 'value': 2.440113917888392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x21dd06ae17396b70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:02:55.000Z'}}, {'blockNum': '0x81f306', 'uniqueId': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e:log:64', 'hash': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 361.1282849311923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1393a965ce25c45a52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:03:49.000Z'}}, {'blockNum': '0x81f306', 'uniqueId': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e:log:68', 'hash': '0x286ff8d2b3a4288ffffc2328517b7a7d3e76cefcc873f45417ea463e75be317e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 361.1282849311923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1393a965ce25c45a52', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:03:49.000Z'}}, {'blockNum': '0x81f310', 'uniqueId': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9:log:112', 'hash': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 136.4742868381317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0765f610ceb99b9d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:07.000Z'}}, {'blockNum': '0x81f310', 'uniqueId': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9:log:116', 'hash': '0x799a33b381b756f34394b1ba768c7b9f45c34390c093ed99043e838ef18267f9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 136.4742868381317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0765f610ceb99b9d4f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:07.000Z'}}, {'blockNum': '0x81f312', 'uniqueId': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a:log:35', 'hash': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a', 'from': '0x301166fae420d41984c00ac498a41eab26109cc5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0979916524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3cd99727a56c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:55.000Z'}}, {'blockNum': '0x81f312', 'uniqueId': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a:log:38', 'hash': '0xbb18da97d3a33db645b1ce6b57d5c0d8ad96cb7473881b1079ead9a78168319a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1.0979916524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f3cd99727a56c00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:05:55.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7:log:65', 'hash': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7', 'from': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 599.6613064995004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2081f8ed1e995c5cad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7:log:69', 'hash': '0x65764d07c4731b21716f7939593932f0d52c8230ed11969967e86d2812b2b1e7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 599.6613064995004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2081f8ed1e995c5cad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107:log:145', 'hash': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 366.02620845485677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13d7a2514cbad1c99a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f31d', 'uniqueId': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107:log:149', 'hash': '0xb4fe81cb6c7814f02b7f8f6a8ace5020ba1a1332f9595cd653718d8a8d227107', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 366.02620845485677, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x13d7a2514cbad1c99a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:09:27.000Z'}}, {'blockNum': '0x81f322', 'uniqueId': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32:log:134', 'hash': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32', 'from': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 869.0174689357245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1c0a3fbec2ea44e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:13.000Z'}}, {'blockNum': '0x81f322', 'uniqueId': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32:log:139', 'hash': '0xdbf6d73d51ed0684a8704093091c0696adf5d132a2b529faf18bcc41b6425d32', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 869.0174689357245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f1c0a3fbec2ea44e5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:13.000Z'}}, {'blockNum': '0x81f323', 'uniqueId': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1:log:119', 'hash': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 439.2083518030066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cf3d84f07301e826', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:15.000Z'}}, {'blockNum': '0x81f323', 'uniqueId': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1:log:123', 'hash': '0xa902e724c7e242c6bd28fde57623965a18553a9ad74b39b515d86651ff322ff1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 439.2083518030066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17cf3d84f07301e826', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:15.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569:log:15', 'hash': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 341.589076710707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1284802f73af596a82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569:log:19', 'hash': '0xcccc073af68f1024e160e465e524560fa02cc0c7322f42419cb46a3452cd1569', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'value': 341.589076710707, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1284802f73af596a82', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999:log:80', 'hash': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999', 'from': '0xb952ccbc1893c4dd1701bde249e62fc3ed357967', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 128.82964806577158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbdeda58dae7a110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f325', 'uniqueId': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999:log:84', 'hash': '0xa2399aad7b1b6b23000de397833d36ca23b75672cfd633acc05c075120cd2999', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 128.82964806577158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06fbdeda58dae7a110', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:10:35.000Z'}}, {'blockNum': '0x81f333', 'uniqueId': '0x80997379c774f20fb0f2aa6f7ca7cce18455ef3325933d81ddf66805b72da1a8:log:11', 'hash': '0x80997379c774f20fb0f2aa6f7ca7cce18455ef3325933d81ddf66805b72da1a8', 'from': '0xf977814e90da44bfa03b6295a0616a897441acec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:13:57.000Z'}}, {'blockNum': '0x81f334', 'uniqueId': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772:log:137', 'hash': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15.36668497813966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5416e9249587c4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:14:03.000Z'}}, {'blockNum': '0x81f334', 'uniqueId': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772:log:141', 'hash': '0xdef6cfd75556fb8d02bd8e3183ad188fcac5cb026b638fad47d686ccd883c772', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 15.36668497813966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xd5416e9249587c4c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:14:03.000Z'}}, {'blockNum': '0x81f338', 'uniqueId': '0x85bdb1364f050b191ab7b92e4660be42128ef958d8ea337e039cedf6fd7dddbf:log:8', 'hash': '0x85bdb1364f050b191ab7b92e4660be42128ef958d8ea337e039cedf6fd7dddbf', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:01.000Z'}}, {'blockNum': '0x81f339', 'uniqueId': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822:log:180', 'hash': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822', 'from': '0xb018af916ed0116404537d1238b18988d652733a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 317.5369837117481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1136b5fc4d83bf3369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:10.000Z'}}, {'blockNum': '0x81f339', 'uniqueId': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822:log:182', 'hash': '0x24bbe6a56a02bc593c086707a31174d34b65e96ffe47402e5b5e7173c2629822', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 317.5369837117481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1136b5fc4d83bf3369', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:16:10.000Z'}}, {'blockNum': '0x81f343', 'uniqueId': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063:log:127', 'hash': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 127.03170886237224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e2eb4a2ae089e739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:18:18.000Z'}}, {'blockNum': '0x81f343', 'uniqueId': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063:log:131', 'hash': '0x9b09c5d7d55a555c210c0e5545b8876aa3a23f79a766973c1bcf16442a8a8063', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 127.03170886237224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06e2eb4a2ae089e739', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:18:18.000Z'}}, {'blockNum': '0x81f34d', 'uniqueId': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632:log:78', 'hash': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 122.00129748929822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069d1badad0a606328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:33.000Z'}}, {'blockNum': '0x81f34d', 'uniqueId': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632:log:82', 'hash': '0xcd3e51e31314b502b95a6de2557f829e786f53486b8cd7478bceb10777b43632', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 122.00129748929822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x069d1badad0a606328', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:33.000Z'}}, {'blockNum': '0x81f34f', 'uniqueId': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632:log:53', 'hash': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 3.0875881404807153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad9510e160fd942', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:55.000Z'}}, {'blockNum': '0x81f34f', 'uniqueId': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632:log:57', 'hash': '0x16b6f2ad8c88c26253787270cfe60c19ccc2a163dadc09c2adbaab8464ca9632', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 3.0875881404807153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2ad9510e160fd942', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:20:55.000Z'}}, {'blockNum': '0x81f358', 'uniqueId': '0xf128d9f1f844a6cfb37be8bf963ac5480662c39550b6fd74aedb67f3292500bf:log:27', 'hash': '0xf128d9f1f844a6cfb37be8bf963ac5480662c39550b6fd74aedb67f3292500bf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:23:00.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:85', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0x8fd5bfbc2f61a450400ae275e64d1e171c05b639', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 107.47015159148717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d372ad789ff95649', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:90', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 107.47015159148717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05d372ad789ff95649', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:102', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 105.970903149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05bea446f4ed0335ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35b', 'uniqueId': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6:log:106', 'hash': '0xf06d9e6f53ff384de6fb5b7d7fe8da857d4c63f73dec93b7dfa7f30884387dd6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 105.970903149697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x05bea446f4ed0335ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:16.000Z'}}, {'blockNum': '0x81f35e', 'uniqueId': '0xc5ce0aeadf73b25501367a01fe742fc62fd9fb1306f1c37b6ae5c4587b7667c8:log:6', 'hash': '0xc5ce0aeadf73b25501367a01fe742fc62fd9fb1306f1c37b6ae5c4587b7667c8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 19997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c0a1f6f5a6e540000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:24:47.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:34', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:37', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f363', 'uniqueId': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6:log:40', 'hash': '0xcc3598b08fe982a97d52197786b969bd19cbf9501ca51e514f4907d6947df0a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 1.0506219782556667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e948f1f6f25ae74', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:25:23.000Z'}}, {'blockNum': '0x81f367', 'uniqueId': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe:log:71', 'hash': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 144.53805616284816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d5de5448e006669b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:26:32.000Z'}}, {'blockNum': '0x81f367', 'uniqueId': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe:log:75', 'hash': '0x8947ad54cddf9e3d7d90e28a8c30b9813398ad63ed056488010edc20773efbfe', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 144.53805616284816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07d5de5448e006669b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:26:32.000Z'}}, {'blockNum': '0x81f36d', 'uniqueId': '0xc23ed0468e51280a2db9aaf72516912e9dd2077e6ba53b83067ba6f2147e6d43:log:0', 'hash': '0xc23ed0468e51280a2db9aaf72516912e9dd2077e6ba53b83067ba6f2147e6d43', 'from': '0xee1f918d9eae66add53254537660463363017946', 'to': '0xcba3dc8fd14ebd75c75323f710ac4928a9b6a6ba', 'value': 1794.586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6148e23ae039290000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:27:35.000Z'}}, {'blockNum': '0x81f378', 'uniqueId': '0x41680de72501be1b9f8aa0909d5edcf56d21a91a932c88df9ce6c4f98d186a6f:log:6', 'hash': '0x41680de72501be1b9f8aa0909d5edcf56d21a91a932c88df9ce6c4f98d186a6f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'value': 9997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021df03ea59fbc140000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:29:56.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:35', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0x78d8e8807f652b54afe33b7645a26c5ffae5291c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:38', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f:log:39', 'hash': '0x7a6f909c3b8c496b4a508a546131e92b7f57677cd8ba9881fd3e766d4cd8692f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 75357.44914084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0ff522b05cb785a61000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f384', 'uniqueId': '0x6d264223a2910937b4d4fa49b2d3f4672a383e4bc271e85aec08bc70510bb517:log:48', 'hash': '0x6d264223a2910937b4d4fa49b2d3f4672a383e4bc271e85aec08bc70510bb517', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x301166fae420d41984c00ac498a41eab26109cc5', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:08.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc:log:57', 'hash': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 887.0395829427927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x301625a8f307ce7ab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc:log:61', 'hash': '0x7ddf4db0f2e851cabf8efcde4bde57738506487a1fd824b42d7c1cfad665affc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 887.0395829427927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x301625a8f307ce7ab6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2:log:74', 'hash': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.4788820582137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356c444df0e8e691b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2:log:78', 'hash': '0x8feac63e8a0104b37d5d12ea2674b05c692dea716e38241ac38a010c4a6877c2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xcde79f10b689a716029d0edb54de78b1bbc14957', 'value': 985.4788820582137, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x356c444df0e8e691b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a:log:89', 'hash': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.69182459920387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab578fc146e9cd9d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f389', 'uniqueId': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a:log:93', 'hash': '0xf1056b9d2791138cc57829091ef00206cfaa8105f330daabc291d3dfc540fc0a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 492.69182459920387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab578fc146e9cd9d5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:40.000Z'}}, {'blockNum': '0x81f38a', 'uniqueId': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4:log:30', 'hash': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 689.7152346744799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2563b8bfab238ee53e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:48.000Z'}}, {'blockNum': '0x81f38a', 'uniqueId': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4:log:34', 'hash': '0xb9458523ec52729762316081aa4c26ab0ecfebff0c49a2ce6756445e4cacd3a4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 689.7152346744799, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2563b8bfab238ee53e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:33:48.000Z'}}, {'blockNum': '0x81f38c', 'uniqueId': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544:log:30', 'hash': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 541.8754801936001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d60086e41b9c0e5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:09.000Z'}}, {'blockNum': '0x81f38c', 'uniqueId': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544:log:34', 'hash': '0x42ecdfd8019ecfd8b4f8d1cc7dc9651d432ce5654c37c92b285ae7641dafb544', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'value': 541.8754801936001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d60086e41b9c0e5e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:09.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:50', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.28011438964336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e99032554873f474c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:53', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 269.28011438964336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e99032554873f474c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f38d', 'uniqueId': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849:log:54', 'hash': '0x4e2709eb93a33fc1889429709b79d8129f53e26621d0cfcc32de909c19efb849', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x87d80dbd37e551f58680b4217b23af6a752da83f', 'value': 269.37984611374947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e9a6576ce0b6db1b6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:34:11.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:132', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0x301166fae420d41984c00ac498a41eab26109cc5', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:135', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f392', 'uniqueId': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232:log:137', 'hash': '0xcb686bedae5ac47c82759551dff4d7bc96ab60e0e2c0616ba5a125e18c2c0232', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x46ffcdc6d8e6ed69f124d944bbfe0ac74f8fcf7f', 'value': 1.8213554827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1946c1295c0b2b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:03.000Z'}}, {'blockNum': '0x81f394', 'uniqueId': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2:log:35', 'hash': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.79772213045663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b107957605b64834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:09.000Z'}}, {'blockNum': '0x81f394', 'uniqueId': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2:log:39', 'hash': '0xb3941526b4bbd18394938f2756c408a714fde3624916fd86e246b030cf6beed2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8658863984d116d4b3a0a5af45979eceac8a62f1', 'value': 344.79772213045663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12b107957605b64834', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:09.000Z'}}, {'blockNum': '0x81f395', 'uniqueId': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508:log:94', 'hash': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1039.916504918531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x385fbd978276cb885d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:24.000Z'}}, {'blockNum': '0x81f395', 'uniqueId': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508:log:97', 'hash': '0x3c4c8586d7bbacacdbe423c7ea815cad40bc1219a8561c0a5bdbcdf0f80e9508', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1039.916504918531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x385fbd978276cb885d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:24.000Z'}}, {'blockNum': '0x81f398', 'uniqueId': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff:log:78', 'hash': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.9652902889001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20094a78730f7d1cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:34.000Z'}}, {'blockNum': '0x81f398', 'uniqueId': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff:log:82', 'hash': '0xfbf27c6a8e183c5a093e2bb39af497a52ffaf3d159370c2efaea26aec38ffcff', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3f7ba8b8f663fddb47568cca30eac7aed3d2f1a3', 'value': 590.9652902889001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20094a78730f7d1cfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:34.000Z'}}, {'blockNum': '0x81f399', 'uniqueId': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c:log:22', 'hash': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c', 'from': '0x8bd7448162c296a5bb3f0b9ccdee383f5b899c93', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 124.43427656318754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06bedf5b40cf8210c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:52.000Z'}}, {'blockNum': '0x81f399', 'uniqueId': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c:log:26', 'hash': '0xa5aaf2040bcb7163b886b03eb3f9846d5f23098a706af0f01a4bc6aa47c43d1c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 124.43427656318754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06bedf5b40cf8210c6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:35:52.000Z'}}, {'blockNum': '0x81f39c', 'uniqueId': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405:log:64', 'hash': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:36:42.000Z'}}, {'blockNum': '0x81f39c', 'uniqueId': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405:log:67', 'hash': '0xbeb929f67aa90d6f9176903a6344cb8ab61a3f9b215667df86fd81c4c2704405', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:36:42.000Z'}}, {'blockNum': '0x81f3a2', 'uniqueId': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e:log:12', 'hash': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 246.22606720374804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5912b78f68dcc9c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:01.000Z'}}, {'blockNum': '0x81f3a2', 'uniqueId': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e:log:16', 'hash': '0xb61e28c170111ee931d7d5faf86000e5d1eae4b5e30401333fb174a0bf8bf78e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 246.22606720374804, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d5912b78f68dcc9c3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:01.000Z'}}, {'blockNum': '0x81f3a6', 'uniqueId': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8:log:83', 'hash': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.42835468028454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab1d0f395a06c0b20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:30.000Z'}}, {'blockNum': '0x81f3a6', 'uniqueId': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8:log:87', 'hash': '0xfe4c0731d46645e09fe3881cac2ff32acbe956baf92b20f6dae59b641a7b8db8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfa968bc2e4768d431ffec4ee64307f8152e1c9f1', 'value': 492.42835468028454, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ab1d0f395a06c0b20', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:38:30.000Z'}}, {'blockNum': '0x81f3ae', 'uniqueId': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f:log:42', 'hash': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f', 'from': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.883380505149718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b481b80d6144083', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:39:29.000Z'}}, {'blockNum': '0x81f3ae', 'uniqueId': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f:log:44', 'hash': '0xc423e7f20f13e5e5d85849b2a8b59a42dae177283207170604e76f5b09cc488f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5b14706689e0427e4d19a46a4a5237cd19241641', 'value': 8.883380505149718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7b481b80d6144083', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:39:29.000Z'}}, {'blockNum': '0x81f3b3', 'uniqueId': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887:log:68', 'hash': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 369.22627657812876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14040b3e4d9b7ed9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:40:27.000Z'}}, {'blockNum': '0x81f3b3', 'uniqueId': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887:log:72', 'hash': '0x42506488337a60e1178fa5561e112994b36357cd4639642c2ff2a415c2735887', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x967f1c667fc490ddd2fb941e3a461223c03d40e9', 'value': 369.22627657812876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14040b3e4d9b7ed9f9', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:40:27.000Z'}}, {'blockNum': '0x81f3bd', 'uniqueId': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145:log:107', 'hash': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.8436554865756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20079a563dbe9e25b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:42:29.000Z'}}, {'blockNum': '0x81f3bd', 'uniqueId': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145:log:111', 'hash': '0xdc317897a3ea59270e0fd355e7ad1c62b351538d228f487d24fca1c1852fe145', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 590.8436554865756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x20079a563dbe9e25b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:42:29.000Z'}}, {'blockNum': '0x81f3d4', 'uniqueId': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e:log:15', 'hash': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 487.4116572309812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6c320fd57d1659db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:48:20.000Z'}}, {'blockNum': '0x81f3d4', 'uniqueId': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e:log:19', 'hash': '0xf464c3da7d5d52d51f81056c4d2f9a6540fc306d5b91c8c62a46b1a9f72d6a7e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 487.4116572309812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a6c320fd57d1659db', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:48:20.000Z'}}, {'blockNum': '0x81f3e7', 'uniqueId': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32:log:122', 'hash': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 113.23260541314032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06236b06b0f233dd6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:52:22.000Z'}}, {'blockNum': '0x81f3e7', 'uniqueId': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32:log:126', 'hash': '0xa72d96c310ac77b0d7b712318f494ffdca40df604b2092b96901b29650cc4f32', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'value': 113.23260541314032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x06236b06b0f233dd6e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:52:22.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0x58ce18289851392d658e6bed29549dd17e089cb1cccfc1095b47d04804b9f92f:log:14', 'hash': '0x58ce18289851392d658e6bed29549dd17e089cb1cccfc1095b47d04804b9f92f', 'from': '0x6d1ceb4fd5595c9773eb7fc79b0c090a380514da', 'to': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'value': 89264.78831687754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12e70dca7d1504ec2983', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1:log:73', 'hash': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 290.4585832104908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbeec2e83b08b5b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f3fa', 'uniqueId': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1:log:77', 'hash': '0xc26761164e5767c9db835a0f156e4e018fbc64a3675529b85478bcc3a03364a1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 290.4585832104908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbeec2e83b08b5b16', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:56:20.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c:log:88', 'hash': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 492.27749309438786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aafb8fbc57accf4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c:log:92', 'hash': '0x4f3f3d6eb84b173aa7ce184d658c0df272bece5958660e035efc96b95ffcdd6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ce573c05c9b8f6ef1a476cc40250972f1f3d63c', 'value': 492.27749309438786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aafb8fbc57accf4fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b:log:103', 'hash': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 290.42886010827664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbe829582ab724997', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f401', 'uniqueId': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b:log:107', 'hash': '0xbac83c2b2437283b57cc6a3f06140d9df9219ad9a91c375a4199e34863f7d01b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 290.42886010827664, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0fbe829582ab724997', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:57:18.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e:log:92', 'hash': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 438.08368774012445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17bfa1e8eecb4448bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e:log:96', 'hash': '0x8cd4d068c97b64bbb741ee17e303383f452c408fdaad758373aecd1fce9fc87e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 438.08368774012445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17bfa1e8eecb4448bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27:log:107', 'hash': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5825.603774423163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013bce7e37775b7b5565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27:log:111', 'hash': '0x7b293510253505ff0c171cbecd28a607b0cc5717261a21eb2b74df97dbf3fc27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 5825.603774423163, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x013bce7e37775b7b5565', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733:log:122', 'hash': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.82421397614905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa96e9cd0a01281fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f405', 'uniqueId': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733:log:126', 'hash': '0x5f70164fef43ed1751d1e75db50dfb4fe3603c465ce3bc94ca92c163adca6733', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xc6aacdf2cb021515009098025a0ece472608918e', 'value': 491.82421397614905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa96e9cd0a01281fd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:58:40.000Z'}}, {'blockNum': '0x81f408', 'uniqueId': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb:log:52', 'hash': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 447.17798547238726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183dd75889606f176d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:07.000Z'}}, {'blockNum': '0x81f408', 'uniqueId': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb:log:56', 'hash': '0xc91e39f48d71f4799d9e30c5d5591e94b1a3290ed1c08492f01c1f4a8ff155bb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 447.17798547238726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x183dd75889606f176d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:07.000Z'}}, {'blockNum': '0x81f40b', 'uniqueId': '0xc7e5dda0a0c453ff10ecaaa4738374efa697c557d6e056615b3480e6dd757406:log:1', 'hash': '0xc7e5dda0a0c453ff10ecaaa4738374efa697c557d6e056615b3480e6dd757406', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T15:59:28.000Z'}}, {'blockNum': '0x81f40f', 'uniqueId': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56:log:41', 'hash': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:00:16.000Z'}}, {'blockNum': '0x81f40f', 'uniqueId': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56:log:44', 'hash': '0x1a622fc398e0d45732f4561eac5d8e319dbdf92adbac2523f5ca2da71e48ae56', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2534, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x895e50764ae7d80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:00:16.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b:log:27', 'hash': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.91462453230577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54c04019c1a5520e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b:log:31', 'hash': '0x39312c3d747623d535b1554f4871afc75c29daf3759ca1f839833e9d9b3ee69b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 245.91462453230577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54c04019c1a5520e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b:log:42', 'hash': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.906718928326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54a429fee4b2ab3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41c', 'uniqueId': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b:log:46', 'hash': '0xffa3517cccdc50b36e3ff9a41005b5675f6381fbda52fcca1641adbdc38b5b9b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 245.906718928326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d54a429fee4b2ab3c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:22.000Z'}}, {'blockNum': '0x81f41e', 'uniqueId': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793:log:74', 'hash': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1229.0722768820142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a0cde3eb9101936d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:28.000Z'}}, {'blockNum': '0x81f41e', 'uniqueId': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793:log:78', 'hash': '0x63f9854b450f5aeae3471d554735db9dae71ec4fd20b02eb839f3030ff9a9793', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1229.0722768820142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x42a0cde3eb9101936d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:03:28.000Z'}}, {'blockNum': '0x81f425', 'uniqueId': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e:log:39', 'hash': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.71071332064696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa7db6091f318ccd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:04:10.000Z'}}, {'blockNum': '0x81f425', 'uniqueId': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e:log:43', 'hash': '0x349b2f6d2656040207adca1c6a7df3590765a3773a409770c7ec1f7bf2fdf07e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 491.71071332064696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa7db6091f318ccd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:04:10.000Z'}}, {'blockNum': '0x81f42b', 'uniqueId': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338:log:66', 'hash': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 590.0111374232855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffc0ca379371c99e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:05:37.000Z'}}, {'blockNum': '0x81f42b', 'uniqueId': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338:log:70', 'hash': '0xa8ec68608c2e4bf76c5427149e741d88f7440a118bf869ef3cc313eb85436338', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d86a7a059f316f81fcef32495aae41cd0c80511', 'value': 590.0111374232855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1ffc0ca379371c99e2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:05:37.000Z'}}, {'blockNum': '0x81f42d', 'uniqueId': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19:log:95', 'hash': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19', 'from': '0x9f547e89078b24d0e2269ba08eb411102e98ca14', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 424.13431368654807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16fe0bc72354cb68c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:06:22.000Z'}}, {'blockNum': '0x81f42d', 'uniqueId': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19:log:99', 'hash': '0x655b7a2831fd43880b220407d31a0d8814cdfcd97fb2491db754d80cade62b19', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 424.13431368654807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x16fe0bc72354cb68c7', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:06:22.000Z'}}, {'blockNum': '0x81f432', 'uniqueId': '0x36f0d05b0eaf6a5b9111dd72873fe53236da23e5c258b896fecd1e45697e72ef:log:11', 'hash': '0x36f0d05b0eaf6a5b9111dd72873fe53236da23e5c258b896fecd1e45697e72ef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 12531, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a74e8f1beaa3ec0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:07:54.000Z'}}, {'blockNum': '0x81f433', 'uniqueId': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8:log:64', 'hash': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 344.1712308030159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12a855d6eb02bdbc84', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:08:53.000Z'}}, {'blockNum': '0x81f433', 'uniqueId': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8:log:68', 'hash': '0x246f5ce09db7f005ce6fc3941996bc415ad6a1998360c5c1f96d60077d8240f8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 344.1712308030159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x12a855d6eb02bdbc84', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:08:53.000Z'}}, {'blockNum': '0x81f43c', 'uniqueId': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048:log:113', 'hash': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 491.646326538971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa6f6a12221117cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:24.000Z'}}, {'blockNum': '0x81f43c', 'uniqueId': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048:log:117', 'hash': '0x3dbe59e15c21e5019937f712cc5b79f6e51d6ae27652e3cbb5e96b0f890e9048', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x645a3f2fa86be27a4d9a3cc93a73f27b33df766f', 'value': 491.646326538971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1aa6f6a12221117cd2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:24.000Z'}}, {'blockNum': '0x81f43d', 'uniqueId': '0xa4a577981c8485c05726ed5c4292dd1dee8207d28cbfc63f8efed724258edc82:log:43', 'hash': '0xa4a577981c8485c05726ed5c4292dd1dee8207d28cbfc63f8efed724258edc82', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:10:31.000Z'}}, {'blockNum': '0x81f447', 'uniqueId': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8:log:21', 'hash': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 380.7682171545839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a438741b09c623b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:12:13.000Z'}}, {'blockNum': '0x81f447', 'uniqueId': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8:log:25', 'hash': '0x3505a8feef0b17e91b7a3c01a62b5cd709256a422485e870b127c9c6fa076fc8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 380.7682171545839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x14a438741b09c623b3', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:12:13.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:162', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:165', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f479', 'uniqueId': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa:log:166', 'hash': '0x59fb24338b7db1f4c587755666593b68d7fb523b5e5c9a8738a4cfa4101575fa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:21:44.000Z'}}, {'blockNum': '0x81f47b', 'uniqueId': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff:log:76', 'hash': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7370.567914810686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018f8f2d7393ee81a755', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:19.000Z'}}, {'blockNum': '0x81f47b', 'uniqueId': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff:log:79', 'hash': '0x79a1f2d3c30dc5ff4f65d1f2eb96602ef0612b2c4dc4a9c992e3f79ec8a64fff', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 7370.567914810686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x018f8f2d7393ee81a755', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:19.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1:log:93', 'hash': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1', 'from': '0x6b2c2db78fc5f1f0a7a7a6d91d26922850a9c693', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 148.17229737617734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084dbf69c49829e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1:log:97', 'hash': '0x4c63de8ff87ee035f1d0b99cfcf606c265f0aebed34d567244a1bafe01d550b1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 148.17229737617734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08084dbf69c49829e8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3:log:138', 'hash': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 815.2557278547167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c31f22d12eaec88ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3:log:142', 'hash': '0xc228b1ffe2eb861593e437fbee95b99568656eb9c24cf68a09f4a9844f412de3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 815.2557278547167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2c31f22d12eaec88ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992:log:153', 'hash': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6381.53047531673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159f1869c80c7621f38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992:log:157', 'hash': '0x0171698711e2cc6682079488e99ad84321cdba342ecdb58bf5a71f1dd7d77992', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 6381.53047531673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0159f1869c80c7621f38', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec:log:168', 'hash': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 283.3147131609771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5bc80e8de1b9acfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47c', 'uniqueId': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec:log:172', 'hash': '0x98c2514d01bd631f4804a49efc4aecba8793b31c79232547717e10e6d5ef06ec', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 283.3147131609771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0f5bc80e8de1b9acfe', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:22.000Z'}}, {'blockNum': '0x81f47f', 'uniqueId': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7:log:36', 'hash': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 909.702190682914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3150a76a9e09c15eca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:54.000Z'}}, {'blockNum': '0x81f47f', 'uniqueId': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7:log:40', 'hash': '0x7c7babcdaf2e16c56b6008373d9436595f0af4a6509e706f54adf327a6b7efc7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 909.702190682914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3150a76a9e09c15eca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:22:54.000Z'}}, {'blockNum': '0x81f492', 'uniqueId': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a:log:19', 'hash': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2.7506627791152107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262c5139560d089a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:25:39.000Z'}}, {'blockNum': '0x81f492', 'uniqueId': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a:log:23', 'hash': '0x0b9a7836411c2d70d2a3345012aad35472c57635d4c682db198a7eddcb25b11a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2.7506627791152107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x262c5139560d089a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:25:39.000Z'}}, {'blockNum': '0x81f4ac', 'uniqueId': '0x78572503f963ea8d0d2234fd8404398f15aed42366414a1f07d172b5d2e08771:log:71', 'hash': '0x78572503f963ea8d0d2234fd8404398f15aed42366414a1f07d172b5d2e08771', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:31:20.000Z'}}, {'blockNum': '0x81f4bd', 'uniqueId': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed:log:109', 'hash': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 754.0349395030894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e0563e6e02cdad27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:21.000Z'}}, {'blockNum': '0x81f4bd', 'uniqueId': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed:log:113', 'hash': '0x32fc0fe05fc023f6c3b7b08b0fae0ddaf40fc2cdd3547ebb61aa89a03ba73bed', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 754.0349395030894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x28e0563e6e02cdad27', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:21.000Z'}}, {'blockNum': '0x81f4be', 'uniqueId': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b:log:25', 'hash': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1289.0819236305415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e19afbb177a848fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:27.000Z'}}, {'blockNum': '0x81f4be', 'uniqueId': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b:log:29', 'hash': '0x2c3d3410284e4ab2b223b02adfb4f91d44fb11c2c142dd1aa76d78c947fa5f5b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1289.0819236305415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x45e19afbb177a848fb', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:27.000Z'}}, {'blockNum': '0x81f4bf', 'uniqueId': '0x89d950fba2cb340bad210130a2e9fb6594102fc4b5fad911588c6223aee24401:log:119', 'hash': '0x89d950fba2cb340bad210130a2e9fb6594102fc4b5fad911588c6223aee24401', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xe2859334be46db836da81bda171830a23d408832', 'value': 82.36571786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04770dd0005b58e800', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:34:32.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6:log:32', 'hash': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1472.144314534179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fce1b3e5060aaf06a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6:log:36', 'hash': '0x8f0c7718b2941af99b2c7c324edf20db9cf60cc5a5f573057918ba983e147ff6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1472.144314534179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fce1b3e5060aaf06a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c5', 'uniqueId': '0x51063e933e41ee5deac7b18c475888e964fbdab58ede2a00332076fb45ced5c3:log:44', 'hash': '0x51063e933e41ee5deac7b18c475888e964fbdab58ede2a00332076fb45ced5c3', 'from': '0x760f6df021517d001e43469eeaf2cd00c71f8f7a', 'to': '0x5ec72e3aa23d42effc2d88b950ee95b7a752a24d', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:07.000Z'}}, {'blockNum': '0x81f4c8', 'uniqueId': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3:log:14', 'hash': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1430.3752649678686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d8a71c5090b0b4dbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:23.000Z'}}, {'blockNum': '0x81f4c8', 'uniqueId': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3:log:18', 'hash': '0xeab20301ee1ee3e347ab7c764ca9ab0d43bc9ad452e1e801b112c073c66ff0a3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1430.3752649678686, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d8a71c5090b0b4dbf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:36:23.000Z'}}, {'blockNum': '0x81f4cc', 'uniqueId': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9:log:60', 'hash': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 678.9611820702938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ce7aadcd6b2ef988', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:06.000Z'}}, {'blockNum': '0x81f4cc', 'uniqueId': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9:log:64', 'hash': '0x7cec109b88e255f2bcd54a0b09e53735d7367054f91da20aa6d536794ed483c9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 678.9611820702938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24ce7aadcd6b2ef988', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:06.000Z'}}, {'blockNum': '0x81f4ce', 'uniqueId': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c:log:11', 'hash': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c', 'from': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 587.4223733207979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd81f803cf70f0aad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:14.000Z'}}, {'blockNum': '0x81f4ce', 'uniqueId': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c:log:16', 'hash': '0x5d44b0d49ded513d2b781576bc10739e1d7c8118211ddf9258651ac7d5ef5f6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5a9f1cd844ce91aaadaa03059677eebcf3cf00df', 'value': 587.4223733207979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fd81f803cf70f0aad', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:39:14.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0x76b464329daddd27e1e6b4979325018f0ff15b79fb23c49e1cb04a80a8d9fade:log:0', 'hash': '0x76b464329daddd27e1e6b4979325018f0ff15b79fb23c49e1cb04a80a8d9fade', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1423.357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4d290be23b3dac8000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95:log:45', 'hash': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 441.96210106406494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f574cd4d5ce1f38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e0', 'uniqueId': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95:log:49', 'hash': '0xaaf4cb4ddb3815cf54c9b51aebc1382c5d7639ca78d5acefab861683b2cfbf95', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'value': 441.96210106406494, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17f574cd4d5ce1f38b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:42:15.000Z'}}, {'blockNum': '0x81f4e4', 'uniqueId': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20:log:89', 'hash': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1.0803205217825669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0efe11ca706a1fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:43:10.000Z'}}, {'blockNum': '0x81f4e4', 'uniqueId': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20:log:93', 'hash': '0x8432e68058e22cc1e691bdb6da90532087d0eb6a3536b061fa4feab664a4ee20', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 1.0803205217825669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0efe11ca706a1fb0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:43:10.000Z'}}, {'blockNum': '0x81f4ef', 'uniqueId': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23:log:69', 'hash': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 0.14731642296911188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020b5f8194a7b546', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:45:22.000Z'}}, {'blockNum': '0x81f4ef', 'uniqueId': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23:log:73', 'hash': '0xa93cec692d8e45b26341a1dbd3fb80a79ac171c84b9866f87bf7879bbe7d9d23', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 0.14731642296911188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x020b5f8194a7b546', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:45:22.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:26', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:29', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f4fc', 'uniqueId': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a:log:32', 'hash': '0x697129be467d0860fc526a35c82eb68329a54e90c5523260ff4f5ba5b85b4c7a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 83.47885010734839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x04868073e1fa948dce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:47:48.000Z'}}, {'blockNum': '0x81f500', 'uniqueId': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce:log:23', 'hash': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 486.22844295411016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5bc670b7d305949b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:48:15.000Z'}}, {'blockNum': '0x81f500', 'uniqueId': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce:log:27', 'hash': '0xd8f2e2b7901e94f15fd46063a72758820850d0dabe4f3f56ccd9bfcbeb74adce', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 486.22844295411016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5bc670b7d305949b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:48:15.000Z'}}, {'blockNum': '0x81f507', 'uniqueId': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959:log:77', 'hash': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1963.8206305196218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a757c6ab0a1b23012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:04.000Z'}}, {'blockNum': '0x81f507', 'uniqueId': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959:log:80', 'hash': '0x98b311ab4ae367211b8568d942337509fd2cc520d32bb38a673a2e6907678959', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 1963.8206305196218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6a757c6ab0a1b23012', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:04.000Z'}}, {'blockNum': '0x81f50b', 'uniqueId': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5:log:96', 'hash': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5', 'from': '0xc6aacdf2cb021515009098025a0ece472608918e', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 196.33546144594243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa4b3adf489ccb1a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:47.000Z'}}, {'blockNum': '0x81f50b', 'uniqueId': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5:log:101', 'hash': '0x2ed738fb68c209025f634689ae23097ceb40151743111ba9d2dafdbc24327fe5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'value': 196.33546144594243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0aa4b3adf489ccb1a6', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:50:47.000Z'}}, {'blockNum': '0x81f50e', 'uniqueId': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827:log:52', 'hash': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.58820026019885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52e3d7614e662150', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:51:14.000Z'}}, {'blockNum': '0x81f50e', 'uniqueId': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827:log:56', 'hash': '0x2d3d08b514c665c362459caab3e7e810fc74e9cc68eb63f4c9b8e8cc8a0ab827', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.58820026019885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a52e3d7614e662150', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:51:14.000Z'}}, {'blockNum': '0x81f514', 'uniqueId': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec:log:20', 'hash': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.84857574915895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5680e181fe159521', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:53:13.000Z'}}, {'blockNum': '0x81f514', 'uniqueId': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec:log:24', 'hash': '0x1265b963b7126e674b1b52ae904845effea19a435a93c5be60c3deb9e45c1cec', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.84857574915895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5680e181fe159521', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:53:13.000Z'}}, {'blockNum': '0x81f518', 'uniqueId': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f:log:78', 'hash': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2714.7183943324785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x932a492c736e317e0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:21.000Z'}}, {'blockNum': '0x81f518', 'uniqueId': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f:log:82', 'hash': '0x9e74dbbe62b2d9cd9d7ee5634f68a220169d59ac7a4445f7d48b20621fcf390f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2714.7183943324785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x932a492c736e317e0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:21.000Z'}}, {'blockNum': '0x81f519', 'uniqueId': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395:log:19', 'hash': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2209.169867385794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77c26401b42b0fca23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:25.000Z'}}, {'blockNum': '0x81f519', 'uniqueId': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395:log:23', 'hash': '0x38947f213480f6dfd4e28c09ca56415977538f2d8dbdb82c2c4d6cac28fc4395', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 2209.169867385794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x77c26401b42b0fca23', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:54:25.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd:log:53', 'hash': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd', 'from': '0x0d1fa37b1dfd006e8f6fab6fa0d2351856030ef5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 543.4505439031907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d75e42e5b0682fcc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd:log:57', 'hash': '0xecce6b7e4af6c0212ef7669d35c5a9f1402d8f4534f169797f640e0eaec80efd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 543.4505439031907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d75e42e5b0682fcc1', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745:log:69', 'hash': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1267.4310504039197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44b523a13471d8686e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f51e', 'uniqueId': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745:log:73', 'hash': '0xbb5ac487eeeed861a7309d5f4f6301d1c29d2858561224d05b86845b557b4745', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 1267.4310504039197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44b523a13471d8686e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:55:02.000Z'}}, {'blockNum': '0x81f52a', 'uniqueId': '0x4de9245566b54b927813956594f6640228dafbe4c0b8bd5a73f5a1673f93f495:log:25', 'hash': '0x4de9245566b54b927813956594f6640228dafbe4c0b8bd5a73f5a1673f93f495', 'from': '0xfee4ae2adfc648afde92a4087fd7b7c6980149ba', 'to': '0xfa12612a0c2ef2e88861794422d379f1c92f70b4', 'value': 13503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02dbffc4ce0a339c0000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:22.000Z'}}, {'blockNum': '0x81f52c', 'uniqueId': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362:log:95', 'hash': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362', 'from': '0x1229e2a0711660be162521f5626c68e85ec99c7f', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 95.48728243395634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052d26f975db5d42f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:45.000Z'}}, {'blockNum': '0x81f52c', 'uniqueId': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362:log:99', 'hash': '0x888bc6814fd5b849872371310d3787d0a5e65a4ed0bf65150f5c5d31239fa362', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 95.48728243395634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x052d26f975db5d42f5', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T16:57:45.000Z'}}, {'blockNum': '0x81f542', 'uniqueId': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b:log:114', 'hash': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 985.2259181491161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3568c1989b2223af1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:01:54.000Z'}}, {'blockNum': '0x81f542', 'uniqueId': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b:log:118', 'hash': '0x2bd4e24c838ac28f7efd6cc3b312c51d92a56f2dcd89d9ad3d332d04e410580b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 985.2259181491161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3568c1989b2223af1a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:01:54.000Z'}}, {'blockNum': '0x81f544', 'uniqueId': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce:log:30', 'hash': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 981.7073144728154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3537ed01346adacb70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:02:23.000Z'}}, {'blockNum': '0x81f544', 'uniqueId': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce:log:34', 'hash': '0xd19d9eb3bfe92cec58709d6cd8b347a1a971c0b85f1f19531c5431cd6a976dce', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 981.7073144728154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3537ed01346adacb70', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:02:23.000Z'}}, {'blockNum': '0x81f547', 'uniqueId': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32:log:11', 'hash': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32', 'from': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:03:28.000Z'}}, {'blockNum': '0x81f547', 'uniqueId': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32:log:14', 'hash': '0xac2e20af4dc5ce90809d5e2972abf6d10ade578719c3260e9b3b1bcef08fbc32', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:03:28.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:29', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:32', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f54c', 'uniqueId': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c:log:33', 'hash': '0xea113fdbaff3eb24617f7cbd77c9713ee53aca6943a6188817da99b1a906251c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:04:56.000Z'}}, {'blockNum': '0x81f55a', 'uniqueId': '0xa19b97f718da672470d962af66cc3903bd3d6b123aac9e0189654ad9cd0a3493:log:21', 'hash': '0xa19b97f718da672470d962af66cc3903bd3d6b123aac9e0189654ad9cd0a3493', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0x1c453e9a2c542dfb7f604cf943b6450d9647e40c', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:07:25.000Z'}}, {'blockNum': '0x81f55c', 'uniqueId': '0x00554db9a3fd60cada95eb1097bce7f4eda9bedddd37bcec0ab99b1f38fc73da:log:29', 'hash': '0x00554db9a3fd60cada95eb1097bce7f4eda9bedddd37bcec0ab99b1f38fc73da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:08:34.000Z'}}, {'blockNum': '0x81f55e', 'uniqueId': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933:log:30', 'hash': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933', 'from': '0x6ea4e1956e2f6df48b76841d1423c95603882eac', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:03.000Z'}}, {'blockNum': '0x81f55e', 'uniqueId': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933:log:33', 'hash': '0x8b8079929097424f25f06d2039fe94ed950ecdf5e91a165336760be05500c933', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 2622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x8e238f440c72380000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:03.000Z'}}, {'blockNum': '0x81f562', 'uniqueId': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb:log:12', 'hash': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2159.59500639088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x751266b849abdafd26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:54.000Z'}}, {'blockNum': '0x81f562', 'uniqueId': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb:log:15', 'hash': '0x8f6fb651c2707e28e8b434b38d5e2287d6b0e5ccb2cf3f15a439fe5675a6e1eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x04ffb8b1655a0c78208086d904b1a990f90eedb9', 'value': 2159.59500639088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x751266b849abdafd26', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:54.000Z'}}, {'blockNum': '0x81f563', 'uniqueId': '0x51bfd3e6ec90436dc74474c83a326be89ec87eb0ff99c2b3323c52c2cfea6e30:log:43', 'hash': '0x51bfd3e6ec90436dc74474c83a326be89ec87eb0ff99c2b3323c52c2cfea6e30', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0xefa6570c0819de6733599439b45d407a430293cd', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:09:59.000Z'}}, {'blockNum': '0x81f577', 'uniqueId': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417:log:96', 'hash': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 100.70972159949602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0575a0ce363671fe43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:35.000Z'}}, {'blockNum': '0x81f577', 'uniqueId': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417:log:98', 'hash': '0x7c6610aacf62eb1bfe50bba308355616f69608aa2dc7834dd016185eea189417', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x8bf2d64011443366ec19f04f2c81425559906089', 'value': 100.70972159949602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0575a0ce363671fe43', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:35.000Z'}}, {'blockNum': '0x81f578', 'uniqueId': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41:log:40', 'hash': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 49.074621019912456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a90c13cf22ccc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:44.000Z'}}, {'blockNum': '0x81f578', 'uniqueId': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41:log:44', 'hash': '0xec709595aa4422b0e652d7f926c5f725073e62d28f3c64708d2529671bbdcf41', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c73126b85f59d85aa61391579b4c2710dd70f96', 'value': 49.074621019912456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a90c13cf22ccc83e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:12:44.000Z'}}, {'blockNum': '0x81f57c', 'uniqueId': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f:log:28', 'hash': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f', 'from': '0x2ac0e433c3c9ad816db79852d6f933b0b117aefe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 78.17658038339017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043ceb01a952be1162', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:13:16.000Z'}}, {'blockNum': '0x81f57c', 'uniqueId': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f:log:32', 'hash': '0xa015058b6b4b4ac3cd803879a5c3b2bd8cefce739395413f4505342d27b95d3f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 78.17658038339017, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043ceb01a952be1162', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:13:16.000Z'}}, {'blockNum': '0x81f587', 'uniqueId': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2:log:7', 'hash': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1472.1073240939256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcd97d3b45d473ead', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:15:00.000Z'}}, {'blockNum': '0x81f587', 'uniqueId': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2:log:11', 'hash': '0x8d37270e1d5a0f8a13e396ccb88c66309b060e183eca3267b6c1e122015230d2', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1472.1073240939256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fcd97d3b45d473ead', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:15:00.000Z'}}, {'blockNum': '0x81f591', 'uniqueId': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd:log:82', 'hash': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd', 'from': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 269.2365355961362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e986852a5fc832b80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:47.000Z'}}, {'blockNum': '0x81f591', 'uniqueId': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd:log:87', 'hash': '0x092c0f8e040644fb2544eb166ad25a143a8d2e78881d17db8a62f8084fccd5bd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9b42a6dde041bd3b812e4dde32ad2887fb9d08da', 'value': 269.2365355961362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0e986852a5fc832b80', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:47.000Z'}}, {'blockNum': '0x81f592', 'uniqueId': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991:log:6', 'hash': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991', 'from': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 682.204773379763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fb7e3ae9c0a1c262', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:54.000Z'}}, {'blockNum': '0x81f592', 'uniqueId': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991:log:11', 'hash': '0x1892fbe754ee70c4d4ef5711e66879b7ed3a50e98cd70193174fca1449455991', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9e8f95969ab023c36541bc089e25d50c6fcf0811', 'value': 682.204773379763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x24fb7e3ae9c0a1c262', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:16:54.000Z'}}, {'blockNum': '0x81f596', 'uniqueId': '0x272f51e36d63826ba92b4cffe8ebfb67c6bd70d676f093f6768f4790e13f8389:log:5', 'hash': '0x272f51e36d63826ba92b4cffe8ebfb67c6bd70d676f093f6768f4790e13f8389', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x957fcf2c4c60e38b53341289e78d18b22b442d0b', 'value': 486.45006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a5ed9c83f4374c000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:17:57.000Z'}}, {'blockNum': '0x81f59b', 'uniqueId': '0x6e1e5fa9e48b794640536b2567e8c32cfa9fd9213bd021d7419674b38033f1d3:log:20', 'hash': '0x6e1e5fa9e48b794640536b2567e8c32cfa9fd9213bd021d7419674b38033f1d3', 'from': '0x58aa01ab4acb640cd44b46460bbe209ce732d911', 'to': '0xefa6570c0819de6733599439b45d407a430293cd', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:19:11.000Z'}}, {'blockNum': '0x81f5a7', 'uniqueId': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0:log:45', 'hash': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1301.308922174307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x468b4a02165e0466b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:28.000Z'}}, {'blockNum': '0x81f5a7', 'uniqueId': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0:log:49', 'hash': '0xbedab842ed7123d5a7883b2e86e4c4920b8f3e43cbe14cb3fe1f11c3f58651a0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1301.308922174307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x468b4a02165e0466b0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:28.000Z'}}, {'blockNum': '0x81f5a8', 'uniqueId': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5:log:29', 'hash': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5', 'from': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 38.35237974852081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02143f062e8177d68d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:34.000Z'}}, {'blockNum': '0x81f5a8', 'uniqueId': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5:log:33', 'hash': '0x2a8e00bb085f8ceb262b1df8e88e2c885e236c8ac5fba2e5b324f4aca5a35ca5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 38.35237974852081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02143f062e8177d68d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:21:34.000Z'}}, {'blockNum': '0x81f5af', 'uniqueId': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408:log:31', 'hash': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.8162667010032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f57c28b2da4e8a66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:22:57.000Z'}}, {'blockNum': '0x81f5af', 'uniqueId': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408:log:35', 'hash': '0xdde9b293ca0de017bb28d3563b851bc1aa533bcfa00ca9715ff02e8059d61408', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.8162667010032, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f57c28b2da4e8a66', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:22:57.000Z'}}, {'blockNum': '0x81f5b2', 'uniqueId': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935:log:64', 'hash': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 157.03857154937705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08835914cc53627399', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:23:40.000Z'}}, {'blockNum': '0x81f5b2', 'uniqueId': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935:log:68', 'hash': '0x85739e635ffdb6fdd1dd0e6ef3d68b776cb26673535907c0c747f5d95d97f935', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3b42239a8bc2f07bb16b17578fe44ff2422c16f6', 'value': 157.03857154937705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08835914cc53627399', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:23:40.000Z'}}, {'blockNum': '0x81f5b5', 'uniqueId': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86:log:108', 'hash': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 149.87586275068438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ff207186bbe0a6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:24:30.000Z'}}, {'blockNum': '0x81f5b5', 'uniqueId': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86:log:112', 'hash': '0x41b77d73067d98cfa88da3797c4dfa3c724c1d3a734b9dfe2b189ed1e06f0c86', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 149.87586275068438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x081ff207186bbe0a6b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:24:30.000Z'}}, {'blockNum': '0x81f5bf', 'uniqueId': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d:log:72', 'hash': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.37112191828115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d35575a4e367638', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:26:54.000Z'}}, {'blockNum': '0x81f5bf', 'uniqueId': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d:log:76', 'hash': '0xa9f93bce960a41deaacf4c3994e69d502c458ff4fc1f2d286476db5804da0a9d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 245.37112191828115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d35575a4e367638', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:26:54.000Z'}}, {'blockNum': '0x81f5c1', 'uniqueId': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c:log:67', 'hash': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.7158253616876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f41751d52ba2f09f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:27:30.000Z'}}, {'blockNum': '0x81f5c1', 'uniqueId': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c:log:71', 'hash': '0xe46ed3daaacfe5b9ac7631b4e6fbb9738e917bc1cd508b1e93434ede2f251a0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.7158253616876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f41751d52ba2f09f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:27:30.000Z'}}, {'blockNum': '0x81f5c8', 'uniqueId': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5:log:27', 'hash': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 143.65020145679733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c98c092231b4cb0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:28:56.000Z'}}, {'blockNum': '0x81f5c8', 'uniqueId': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5:log:31', 'hash': '0x656c218160bc2ceff99db868b852c52aceb83abb1ebcc07f479b0a03d14e10d5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 143.65020145679733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07c98c092231b4cb0c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:28:56.000Z'}}, {'blockNum': '0x81f5ce', 'uniqueId': '0x74ade19d1074318409a1f260ec4f351002b00ab187d95b8e6985023ae83e18de:log:22', 'hash': '0x74ade19d1074318409a1f260ec4f351002b00ab187d95b8e6985023ae83e18de', 'from': '0xefa6570c0819de6733599439b45d407a430293cd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:09.000Z'}}, {'blockNum': '0x81f5d2', 'uniqueId': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9:log:31', 'hash': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.37256488246973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d3a77b89618ba15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:38.000Z'}}, {'blockNum': '0x81f5d2', 'uniqueId': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9:log:35', 'hash': '0x3dea0a50a556eefc31cdc1c56ee76b9132c9b5a16b0383b5fc3ea00565ef48b9', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 245.37256488246973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4d3a77b89618ba15', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:30:38.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a:log:107', 'hash': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.7215237132955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a2111dcf967cf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a:log:111', 'hash': '0x2a1dff2d6d50e89462863b8ddb498fd9b1b0fecedcd2040cf99b8e2d57545d5a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 490.7215237132955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9a2111dcf967cf41', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909:log:122', 'hash': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4905.485024701416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109ed47bf97a62ca603', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5d8', 'uniqueId': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909:log:125', 'hash': '0x0f86bc42a13b4c5b2d94a3ea8baf2cde38faac365ac0df5a6a98d590f8152909', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x4ef377462b03b650d52140c482394a6703d0d338', 'value': 4905.485024701416, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0109ed47bf97a62ca603', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:31:23.000Z'}}, {'blockNum': '0x81f5db', 'uniqueId': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4:log:23', 'hash': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 480.32227399342474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a09cf83572deddbd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:32:22.000Z'}}, {'blockNum': '0x81f5db', 'uniqueId': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4:log:27', 'hash': '0x4254596d92e79e0ea1e469f23d268714f9f1180730492d08f77b5186e119dea4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 480.32227399342474, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a09cf83572deddbd4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:32:22.000Z'}}, {'blockNum': '0x81f5e1', 'uniqueId': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0:log:68', 'hash': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.4099831069155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe5d4321b254c1d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:35:17.000Z'}}, {'blockNum': '0x81f5e1', 'uniqueId': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0:log:72', 'hash': '0xe8cfeb2a35ff5c3d62822588ccdb9c97b6216c0b75060586db73cc0a765afbe0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.4099831069155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe5d4321b254c1d91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:35:17.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:14', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0x7059010320d07a47d2ad54db88bb89ea644c3e6f', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:17', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f4', 'uniqueId': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78:log:18', 'hash': '0x093e8c75ed3d69ebe239979eecdab73d8fc0c442da3357b2c244103550f83a78', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1463.3498288740348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4f540ef433857e89cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:39:51.000Z'}}, {'blockNum': '0x81f5f8', 'uniqueId': '0x635df707358efae36cb005de277c655b673c7bd2072583beda478d37d431da7c:log:44', 'hash': '0x635df707358efae36cb005de277c655b673c7bd2072583beda478d37d431da7c', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xe42db7fb76c7bfe974d3d8c2da56755b6255814b', 'value': 15.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0xdca825c218b60000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:40:53.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76:log:51', 'hash': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.4008644766204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a95addbfc81703f54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76:log:55', 'hash': '0x25fa2dda9e6b91aaf5ede2bcf0845d7bb5646afc40d3d5652ad5b4f2020a3d76', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 490.4008644766204, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a95addbfc81703f54', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c:log:75', 'hash': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 867.2862544253672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0403bd520312236e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f603', 'uniqueId': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c:log:79', 'hash': '0x5cf7aee650715c7618ed66c99abf5670e8009e11aec31e1983658777e3fcbd0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 867.2862544253672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f0403bd520312236e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:43:40.000Z'}}, {'blockNum': '0x81f608', 'uniqueId': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab:log:123', 'hash': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.16085793564926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a4a555fe461470e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:44:48.000Z'}}, {'blockNum': '0x81f608', 'uniqueId': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab:log:127', 'hash': '0x33953e7f33b3843a8fd2e03d1970a73dce721245628afeaefd15d94284eaa0ab', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 245.16085793564926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a4a555fe461470e', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:44:48.000Z'}}, {'blockNum': '0x81f60c', 'uniqueId': '0x733c9d964be5de323355971efbb81458318ac863aa9eab53bbba1dc1ec7f629f:log:1', 'hash': '0x733c9d964be5de323355971efbb81458318ac863aa9eab53bbba1dc1ec7f629f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x513cd4e35338572a1d2785c5e6297996b5c5c2fd', 'value': 29619.348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0645ab06cbf7f4c20000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:45:30.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:67', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:70', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62c', 'uniqueId': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6:log:73', 'hash': '0x3560388f66455f0fec4a4d225999947cead8785e9746a457b641e76dbcbe01a6', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'value': 4.903137040678252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x440b71291aafeec0', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:53:55.000Z'}}, {'blockNum': '0x81f62e', 'uniqueId': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e:log:96', 'hash': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.297838635337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a943fd687910d9d76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:16.000Z'}}, {'blockNum': '0x81f62e', 'uniqueId': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e:log:100', 'hash': '0x533ed6db1b892554ee90994a62d6bdecfc0d3a84d57a92c597a473e24335203e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x9a3487c0d300c4d3a7b3ff38d7a18c53c66f1c49', 'value': 490.297838635337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a943fd687910d9d76', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:16.000Z'}}, {'blockNum': '0x81f62f', 'uniqueId': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a:log:176', 'hash': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 167.90793442474907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091a30d0beb4c05ee4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:21.000Z'}}, {'blockNum': '0x81f62f', 'uniqueId': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a:log:180', 'hash': '0xaa07c075a823bb137b492e36b62b622214751056a4255b4090d9b7e61db8097a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 167.90793442474907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x091a30d0beb4c05ee4', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:54:21.000Z'}}, {'blockNum': '0x81f634', 'uniqueId': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd:log:148', 'hash': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 485.50616508884843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a51c064d38ef7a8ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:55:44.000Z'}}, {'blockNum': '0x81f634', 'uniqueId': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd:log:152', 'hash': '0xd7cbc5585405d6bbdd71aa10865a19212541ad7ce293c82e4189f1978645ebcd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 485.50616508884843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a51c064d38ef7a8ce', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:55:44.000Z'}}, {'blockNum': '0x81f63d', 'uniqueId': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91:log:175', 'hash': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.12696469971849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49d1eba7f46fed10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:57:38.000Z'}}, {'blockNum': '0x81f63d', 'uniqueId': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91:log:179', 'hash': '0xfa6b26e5088cea326c13d6f624c868f65db8482eefde1a66beb367a9c6d45d91', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 245.12696469971849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49d1eba7f46fed10', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T17:57:38.000Z'}}, {'blockNum': '0x81f64a', 'uniqueId': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f:log:119', 'hash': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 882.6291796227117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd8f0c27f3e2e12bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:01:07.000Z'}}, {'blockNum': '0x81f64a', 'uniqueId': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f:log:123', 'hash': '0xec68cbabdc90d5cccce74ae9d42752da132f19ee1d5c1b848b4a03beb6dd842f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2769eb86e3acdda921c4f36cfe6cad035d95d31b', 'value': 882.6291796227117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2fd8f0c27f3e2e12bf', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:01:07.000Z'}}, {'blockNum': '0x81f653', 'uniqueId': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55:log:68', 'hash': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1294.1638101713922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4628217893bfe69b7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:03:45.000Z'}}, {'blockNum': '0x81f653', 'uniqueId': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55:log:72', 'hash': '0x7f48c6c83212eab3470e22532b4d2e50ca012d6b730e7e8f0d845ded7eba5c55', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1294.1638101713922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4628217893bfe69b7d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:03:45.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d:log:77', 'hash': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 693.185654957691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2593e228876da9a4b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d:log:82', 'hash': '0x5b63d67f4503b7dabd17049ea7c827abb8efade3c20c91fe69ee15a177f7e76d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 693.185654957691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2593e228876da9a4b2', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e:log:93', 'hash': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.962523104220503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c6147471e4b5e78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f659', 'uniqueId': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e:log:97', 'hash': '0x09e62d08d14306176e6c44b4b1ebb1fb3413bbd06cd236c2a5697ad38959d86e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 8.962523104220503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c6147471e4b5e78', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:05:43.000Z'}}, {'blockNum': '0x81f65e', 'uniqueId': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55:log:78', 'hash': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8.963918226949083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c663c2270f3114b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:06:59.000Z'}}, {'blockNum': '0x81f65e', 'uniqueId': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55:log:82', 'hash': '0xc4766829e58c018c721af78db0cfffa75fc53a2949130179ecf75757cd0a9e55', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xfdbb3b3cfd6fcc0dd5c1b5bff05bffac1db42258', 'value': 8.963918226949083, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x7c663c2270f3114b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:06:59.000Z'}}, {'blockNum': '0x81f661', 'uniqueId': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3:log:73', 'hash': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.13172119011747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49e2d1a8ad0be0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:07:25.000Z'}}, {'blockNum': '0x81f661', 'uniqueId': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3:log:77', 'hash': '0x7223e8123767f14f5f6816ca8788aa1f503d526b195bbc7e676c573f0f32bac3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 245.13172119011747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49e2d1a8ad0be0ea', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:07:25.000Z'}}, {'blockNum': '0x81f66b', 'uniqueId': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603:log:60', 'hash': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 490.23988521565616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9371f2338f753dde', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:11:04.000Z'}}, {'blockNum': '0x81f66b', 'uniqueId': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603:log:64', 'hash': '0xaf2c2a806fb94510b524d9a5d5ec1e63ce90e5e9622ea9dc3dc008ad15d58603', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8e7fc617e87b39bd5fe1767a95afa53d2c79f147', 'value': 490.23988521565616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1a9371f2338f753dde', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:11:04.000Z'}}, {'blockNum': '0x81f66f', 'uniqueId': '0xd2fbf05dab31e87cbf70374ac42a9c8f620ace7dfe5f4a50e93febe7adf4e564:log:6', 'hash': '0xd2fbf05dab31e87cbf70374ac42a9c8f620ace7dfe5f4a50e93febe7adf4e564', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0x509659eb38d5b942c1872b691500252e4ca5a679', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:32.000Z'}}, {'blockNum': '0x81f672', 'uniqueId': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b:log:27', 'hash': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 539.2275999559091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d3b494535aa67a833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:53.000Z'}}, {'blockNum': '0x81f672', 'uniqueId': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b:log:31', 'hash': '0x733ab1ab5ca92a367b201ecaf284f2da4a988d74c64d9a75192e51631e1e062b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 539.2275999559091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1d3b494535aa67a833', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:12:53.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163:log:11', 'hash': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 648.7417748387787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x232b19c708dddb31ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163:log:15', 'hash': '0xa1d95fce1d44c1c27a448b95b0bf897623a35528ebb7f6c68a500dabd9e6f163', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'value': 648.7417748387787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x232b19c708dddb31ac', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613:log:26', 'hash': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613', 'from': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1171.9781626631564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f8876d9892469283c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f677', 'uniqueId': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613:log:30', 'hash': '0x3339a412d109050cbf8115e6673dfb9ef989e4f41895d3dbd6c21a9878dc0613', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1171.9781626631564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x3f8876d9892469283c', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:23.000Z'}}, {'blockNum': '0x81f678', 'uniqueId': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d:log:86', 'hash': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 2051.244810269985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f32bd7efad1fe5025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:33.000Z'}}, {'blockNum': '0x81f678', 'uniqueId': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d:log:90', 'hash': '0xf242ebfa29994226845ea1ff2aa9a6f82d5fb46499c95c5921bbdfa1f5aad82d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 2051.244810269985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x6f32bd7efad1fe5025', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:13:33.000Z'}}, {'blockNum': '0x81f67e', 'uniqueId': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af:log:16', 'hash': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.17336636393216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a76c5b94ce186bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:19.000Z'}}, {'blockNum': '0x81f67e', 'uniqueId': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af:log:20', 'hash': '0xd632f40670a6cae3ac4a6b96830c826cb04963f75403f854ce571f055fe538af', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8b30e174bddb3c0376e666afb8a4196e2f53182d', 'value': 245.17336636393216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a76c5b94ce186bc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:19.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:2', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0x509659eb38d5b942c1872b691500252e4ca5a679', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:5', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691:log:6', 'hash': '0x3e0d91697de3c9ade181348c9ff83b6eb7fb0b864856f0b789fa04155b863691', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 163.4121352671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x08dbcc873b1793ff00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468:log:18', 'hash': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 980.6358576735024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35290e6cec2fa0fa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f681', 'uniqueId': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468:log:22', 'hash': '0x9f9625c5fa6834245f7e896b2c378e21500ea8e26ea40e50d3574bacba882468', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x587044b74004e3d5ef2d453b7f8d198d9e4cb558', 'value': 980.6358576735024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x35290e6cec2fa0fa1f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:42.000Z'}}, {'blockNum': '0x81f683', 'uniqueId': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802:log:45', 'hash': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 19.611435330899685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011029d08711d22787', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:46.000Z'}}, {'blockNum': '0x81f683', 'uniqueId': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802:log:49', 'hash': '0xca574b926aeaf0f998f1340ff2280cd5a592ed943f7b4efb02e6a23c6ff60802', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x7bac8115f3789f4d7a3bfe241eb1bcb4d7f71665', 'value': 19.611435330899685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x011029d08711d22787', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:14:46.000Z'}}, {'blockNum': '0x81f691', 'uniqueId': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd:log:57', 'hash': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd', 'from': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 430.35413716152607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17545d07a26c7ee952', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:18:17.000Z'}}, {'blockNum': '0x81f691', 'uniqueId': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd:log:62', 'hash': '0xc7f5b8577dff57eff763bd153f6402cf4fd62b13ec731088f75c6c670238bedd', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb5a5a031d8b8577871384be6055b2ea29fac064c', 'value': 430.35413716152607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x17545d07a26c7ee952', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:18:17.000Z'}}, {'blockNum': '0x81f698', 'uniqueId': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db:log:62', 'hash': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db', 'from': '0x72844ab8b5f59c0251bcce6ef5f2be92d7528c1a', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 360.1869498688647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1386991a8db11c43cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:26.000Z'}}, {'blockNum': '0x81f698', 'uniqueId': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db:log:66', 'hash': '0xc84dc74da3b427966507d497f51a55e3327f2e3fe0abd99601ada64e7c0456db', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 360.1869498688647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1386991a8db11c43cc', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:26.000Z'}}, {'blockNum': '0x81f699', 'uniqueId': '0x4cbf913ce163c5b61d5c689376abe94076c7457e56374bd4e79e8a6ef8673522:log:46', 'hash': '0x4cbf913ce163c5b61d5c689376abe94076c7457e56374bd4e79e8a6ef8673522', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x5c57320c7207eb53aa684df67be2742fe8b48b83', 'value': 75.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x041d52f7dd54260000', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:19:35.000Z'}}, {'blockNum': '0x81f6a0', 'uniqueId': '0xf5720fef9e8d208e5bad08da0e01b76ad435bc5e408f83e1c1c5d428ee9bf1ac:log:24', 'hash': '0xf5720fef9e8d208e5bad08da0e01b76ad435bc5e408f83e1c1c5d428ee9bf1ac', 'from': '0xda96eb2fa67642c171650c428f93abdfb8a63a2d', 'to': '0xc69c97fae607cc7f8e319c4928b9e8e0d3983a64', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:21:34.000Z'}}, {'blockNum': '0x81f6aa', 'uniqueId': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa:log:25', 'hash': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.15023992116102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a249c58be9672bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:23:41.000Z'}}, {'blockNum': '0x81f6aa', 'uniqueId': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa:log:29', 'hash': '0x8e3146dc4921a66197e89312bd8e5aaafb5ff7d2c52cf0e3e226d48f1007d2fa', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 245.15023992116102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d4a249c58be9672bd', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:23:41.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860:log:108', 'hash': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1279.4126454924112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455b6ace74e5f2d825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860:log:112', 'hash': '0xf711a383c7bc8e1432231df79ba268a72948196357cfeff7bd03886fc94f1860', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1279.4126454924112, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x455b6ace74e5f2d825', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445:log:126', 'hash': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11.10566678774565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a1f411a656ed629', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6ab', 'uniqueId': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445:log:130', 'hash': '0xc4ce1d5bbd67c05b68566009df557145ec5dcaafa52b19d2d7c74f32ca88c445', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xce1e2b5ffe4d441abafd136768f24867101dfa50', 'value': 11.10566678774565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x9a1f411a656ed629', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:24:44.000Z'}}, {'blockNum': '0x81f6b1', 'uniqueId': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1:log:26', 'hash': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 289.3151311133188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faf0dd2e3eaedafca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:11.000Z'}}, {'blockNum': '0x81f6b1', 'uniqueId': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1:log:30', 'hash': '0x745e6b5f0623bc78e7f7110aa4c209876dddfe2572fe3ab3bec35fd57ea26bc1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2dad2c84f6c3957ef4b83a5df6f1339dfd9e6080', 'value': 289.3151311133188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0faf0dd2e3eaedafca', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:11.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:10', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0xc69c97fae607cc7f8e319c4928b9e8e0d3983a64', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:13', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8:log:14', 'hash': '0x0caefc558299714a85c453d1980fbd038cec4232fe38d1f4a6d84f582d0e2ef8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 56.8928587003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x03158c098e7fdf9b00', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea:log:24', 'hash': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea', 'from': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.37931307262977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ef6bc9b04fca42ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea:log:28', 'hash': '0x46f3c7246782dd70a4365695e809eb00f30e4804db026e7aa1eb5aebc642dcea', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 146.37931307262977, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07ef6bc9b04fca42ba', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0:log:40', 'hash': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 877.7090686120303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94a90399c705902f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0:log:44', 'hash': '0x48ebb4de0aa7f4bb47998175b00e48bd6894a566a64df32fdca995c3f600f1b0', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 877.7090686120303, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x2f94a90399c705902f', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f:log:55', 'hash': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.7950600113968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb61ba7962a4fb91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f:log:59', 'hash': '0x50593be5efab97c0d1abe5279ca90940efaa7a3f7aebfac4767ec03d2242879f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.7950600113968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb61ba7962a4fb91', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604:log:70', 'hash': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.2388765678962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3744d9d884ef893', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b2', 'uniqueId': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604:log:74', 'hash': '0x4c1e01061db6cfeabf884d892d867319f5a5fb403f884e7ece47e222b83cd604', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.2388765678962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3744d9d884ef893', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:13.000Z'}}, {'blockNum': '0x81f6b4', 'uniqueId': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641:log:70', 'hash': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641', 'from': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 892.9480716098165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306824d416652d9b2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:47.000Z'}}, {'blockNum': '0x81f6b4', 'uniqueId': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641:log:74', 'hash': '0xa6769a8c4647f2b5aee0ed1eef7495855ed2bda307a88328a7292edc6ee88641', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 892.9480716098165, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x306824d416652d9b2d', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:26:47.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3:log:32', 'hash': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 245.11478766821523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49a6a8b5df444984', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3:log:36', 'hash': '0x6b6444511214c583069e77a94d5188172de0423c19932df4cb4141cb6a2f8eb3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37c88474b5d6c593bbd2e4ce16635c08f8215b1e', 'value': 245.11478766821523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x0d49a6a8b5df444984', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f:log:50', 'hash': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f', 'from': '0x77feb788c747a701eb65b8d3b522302aaf26b1e2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1272.4469474364328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44fabfacfb06b7ae88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6bd', 'uniqueId': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f:log:54', 'hash': '0xaa136725e3a57021ec153a12c7e456fd95485ed542143151cd85fd49b0b3b22f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 1272.4469474364328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x44fabfacfb06b7ae88', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:29:54.000Z'}}, {'blockNum': '0x81f6c4', 'uniqueId': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5:log:7', 'hash': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.76839277551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb02fcc3b077813a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:18.000Z'}}, {'blockNum': '0x81f6c4', 'uniqueId': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5:log:11', 'hash': '0x6d1f7ba1a8c14ab0d398f3049e4f7567a5ec78c04aa29bbb1f4c4bf86fef3bb5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.76839277551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fbb02fcc3b077813a', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:18.000Z'}}, {'blockNum': '0x81f6c6', 'uniqueId': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de:log:16', 'hash': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 49.02074484193221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a84cabb5f06e9962', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:59.000Z'}}, {'blockNum': '0x81f6c6', 'uniqueId': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de:log:20', 'hash': '0x887545c165ecf688f1424dc659b8abe475c7ce32d95c6d52a6f15e68811da4de', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x445556b7215349b205997aaaf6c6dfa258eb029d', 'value': 49.02074484193221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x02a84cabb5f06e9962', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:31:59.000Z'}}, {'blockNum': '0x81f6cc', 'uniqueId': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae:log:37', 'hash': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 146.5701538574771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f211ca5f154586ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:33:25.000Z'}}, {'blockNum': '0x81f6cc', 'uniqueId': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae:log:41', 'hash': '0x88d1a4ae428aae06ff166c95bd262c2838e81d9e853e390b75ccef85d84599ae', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xaa8cec9cbd7d051ba86d9deff1ec0775bd4b13c5', 'value': 146.5701538574771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x07f211ca5f154586ab', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:33:25.000Z'}}, {'blockNum': '0x81f6e2', 'uniqueId': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824:log:7', 'hash': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824', 'from': '0xa0dc0aa8ff89a74c9e5edcb008788b201405683c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 743.3471502427332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c0396b94909568b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:38:26.000Z'}}, {'blockNum': '0x81f6e2', 'uniqueId': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824:log:11', 'hash': '0x288af960948e1f53ba143c6c12e1d23e6c9db6af9a51a4b1e70702a409000824', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'value': 743.3471502427332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x284c0396b94909568b', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:38:26.000Z'}}, {'blockNum': '0x81f6e4', 'uniqueId': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c:log:29', 'hash': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 588.2703196510619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3e402eed30a0972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:06.000Z'}}, {'blockNum': '0x81f6e4', 'uniqueId': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c:log:33', 'hash': '0x1c34fe61f82df49e8a2da1de491b660e641434785c3bd56202353451eaaf5f0c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 588.2703196510619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x1fe3e402eed30a0972', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:06.000Z'}}, {'blockNum': '0x81f6e6', 'uniqueId': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06:log:68', 'hash': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.4779724288667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb6fb34ff734045d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:29.000Z'}}, {'blockNum': '0x81f6e6', 'uniqueId': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06:log:72', 'hash': '0xa9d97bad57f671be57dd2e4a8ed9315dd0bbd45730686c10b023529f99771e06', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.4779724288667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb6fb34ff734045d8', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:39:29.000Z'}}, {'blockNum': '0x81f6eb', 'uniqueId': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305:log:6', 'hash': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305', 'from': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1470.1954545593612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb30f807e0cab4402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:40:27.000Z'}}, {'blockNum': '0x81f6eb', 'uniqueId': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305:log:10', 'hash': '0x468c3a088dd4ba7ef6657f463e689ba2fbd841d6eeac617dadd2fc45fd031305', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x8c2036ce61648fcddffb06d6d11fe0b479ed63fe', 'value': 1470.1954545593612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BNT', 'category': 'erc20', 'rawContract': {'value': '0x4fb30f807e0cab4402', 'address': '0x1f573d6fb3f13d689ff844b4ce37794d79a7ff1c', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-09T18:40:27.000Z'}}], 'pageKey': '013727db-dd39-4acc-b831-0c393d57e89c'}}
Answer is paginated. Downloading more pages...
Number of returned transfers:  1001
Answer is complete
 
symbol             BLZ
group              CPI
date        2019-09-17
hour             16:00
exchange       binance
Name: 1045, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-09-17 16:00:00 2019-09-17 04:00:00 2019-09-18 04:00:00
Unix timestamps:  1568685600.0 1568772000.0
Hex Block Numbers:  0x82adcf 0x82c6d5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x82af80', 'uniqueId': '0xce541020a63bf1222ec70dc640a64354a098125fada6098bc29ca9fdff4c71f8:log:146', 'hash': '0xce541020a63bf1222ec70dc640a64354a098125fada6098bc29ca9fdff4c71f8', 'from': '0x562556b5986c4197234557406ac21be28f5c8cca', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 56353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0beee6f9f10283e40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T03:37:27.000Z'}}, {'blockNum': '0x82b07c', 'uniqueId': '0x57a24a9c1248d62185aaf3c645b287d73cf9cd71e291f4a9ad8c55e53f585793:log:56', 'hash': '0x57a24a9c1248d62185aaf3c645b287d73cf9cd71e291f4a9ad8c55e53f585793', 'from': '0x4d7a23b2f8bb70d6ba53f50ac6b3fc11b4f7c43e', 'to': '0xeb9a738ee2728ddb3aa6c1d63d53f22b95652fba', 'value': 80089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10f5a225d24ac3c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T04:30:49.000Z'}}, {'blockNum': '0x82b09c', 'uniqueId': '0x06c6d27e199f3ab7877573bf4da81742520355c1518fc02e57f8f8ba11dda1eb:log:153', 'hash': '0x06c6d27e199f3ab7877573bf4da81742520355c1518fc02e57f8f8ba11dda1eb', 'from': '0xeb9a738ee2728ddb3aa6c1d63d53f22b95652fba', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 80089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x10f5a225d24ac3c40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T04:39:36.000Z'}}, {'blockNum': '0x82b108', 'uniqueId': '0x1bd86cfdae7d7effbc2e3cc50746d12ce352f2957336f2113b91eb8c3ba8159e:log:15', 'hash': '0x1bd86cfdae7d7effbc2e3cc50746d12ce352f2957336f2113b91eb8c3ba8159e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1480.26224999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x503ec3f199b26cbc00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T05:00:58.000Z'}}, {'blockNum': '0x82b120', 'uniqueId': '0xcbdcbdea120a89e0ba08aed7f4e2f3bfd79d1e5b6e8212a5528dbdc29d6dbbf4:log:105', 'hash': '0xcbdcbdea120a89e0ba08aed7f4e2f3bfd79d1e5b6e8212a5528dbdc29d6dbbf4', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x04fe4b94b202bc2f3a7c6334f27deb62b18eb69c', 'value': 1480.26224999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x503ec3f199b26cbc00', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T05:07:16.000Z'}}, {'blockNum': '0x82b1ca', 'uniqueId': '0x90dd46a54a990fca5c5bc6017c5993c353cca1ed6e04c2457cd8699f0d43c7cb:log:9', 'hash': '0x90dd46a54a990fca5c5bc6017c5993c353cca1ed6e04c2457cd8699f0d43c7cb', 'from': '0xf2ce37b86be79c7ad2f9f59543bb1fc4a3d00a6e', 'to': '0x3548e7e6f98d7b1b394ddd5bed48fbc8c33f7e32', 'value': 39962.93826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0876652d66bfa71d4000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T05:42:44.000Z'}}, {'blockNum': '0x82b282', 'uniqueId': '0xf2454e9bf65b5bc018d5fa9c45dd99d54e0d88a46260ffe488e520382ba79756:log:71', 'hash': '0xf2454e9bf65b5bc018d5fa9c45dd99d54e0d88a46260ffe488e520382ba79756', 'from': '0xdeebe533b2a103a2c9cd1cea5e3c00f1d260c803', 'to': '0x5852c8973ac167267d3cd60361a0196ecb3913aa', 'value': 49964.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a949357554367580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T06:25:54.000Z'}}, {'blockNum': '0x82b29a', 'uniqueId': '0xe6a0ddca98ef9334ee7f263e50d7a8318a07fb305acf7434469f452b1714edcc:log:132', 'hash': '0xe6a0ddca98ef9334ee7f263e50d7a8318a07fb305acf7434469f452b1714edcc', 'from': '0x5852c8973ac167267d3cd60361a0196ecb3913aa', 'to': '0xd13ce441b00deef8a0576e0b82b6422f8f94b226', 'value': 35273.368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07782c50fdafcedc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T06:32:14.000Z'}}, {'blockNum': '0x82b56e', 'uniqueId': '0x12d778fd82fd43a937e3fbcb66719179c374e2c6afb279857be8b3f837942ae8:log:149', 'hash': '0x12d778fd82fd43a937e3fbcb66719179c374e2c6afb279857be8b3f837942ae8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 3758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xcbb8ba01433df80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T09:25:07.000Z'}}, {'blockNum': '0x82b5a1', 'uniqueId': '0x2945a15bee1d18e1454e1cf1bee3e97ee35e43feeaa7f946e5a319c4e5c926fa:log:43', 'hash': '0x2945a15bee1d18e1454e1cf1bee3e97ee35e43feeaa7f946e5a319c4e5c926fa', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 9641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x020aa3c093caf5040000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T09:35:29.000Z'}}, {'blockNum': '0x82b5a5', 'uniqueId': '0x5645e1ed468ecb18b431f0c6e4486f8239b32ebbcc891b951ae497a7e9e94d33:log:175', 'hash': '0x5645e1ed468ecb18b431f0c6e4486f8239b32ebbcc891b951ae497a7e9e94d33', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 123.0773758336091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06ac0aad3a91844c64', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T09:36:26.000Z'}}, {'blockNum': '0x82b5a5', 'uniqueId': '0x5645e1ed468ecb18b431f0c6e4486f8239b32ebbcc891b951ae497a7e9e94d33:log:177', 'hash': '0x5645e1ed468ecb18b431f0c6e4486f8239b32ebbcc891b951ae497a7e9e94d33', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x1e7420a37182424817c3ebd04159b3cf64132d12', 'value': 123.0773758336091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06ac0aad3a91844c64', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T09:36:26.000Z'}}, {'blockNum': '0x82b5b4', 'uniqueId': '0x58ea00a93b40cbe8d957f7a4b7e532a6a36e8d8faac7d8578587031058c3bfa3:log:83', 'hash': '0x58ea00a93b40cbe8d957f7a4b7e532a6a36e8d8faac7d8578587031058c3bfa3', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13399, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02d65c7a950e32fc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T09:39:46.000Z'}}, {'blockNum': '0x82b5c8', 'uniqueId': '0xc0b080188950e83f1e3c3a07707f654fdd193d6bd091cf585f9f92bb9a1cb1a2:log:22', 'hash': '0xc0b080188950e83f1e3c3a07707f654fdd193d6bd091cf585f9f92bb9a1cb1a2', 'from': '0x1e7420a37182424817c3ebd04159b3cf64132d12', 'to': '0xd91b1492a1f8a0e29c89ba1a7e05256f11178852', 'value': 123.0773758336091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06ac0aad3a91844c64', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T09:44:46.000Z'}}, {'blockNum': '0x82b76f', 'uniqueId': '0x8ecfb3b389c7a61e63f5908836ec441c9e0a2c38e7ba811d000e56af5cad45e4:log:22', 'hash': '0x8ecfb3b389c7a61e63f5908836ec441c9e0a2c38e7ba811d000e56af5cad45e4', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 41179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08b8516c944eb28c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T11:19:29.000Z'}}, {'blockNum': '0x82b79e', 'uniqueId': '0x42c72b4b77a67e811383f2536fd5a3c5db53938713e3f0799fb5a55039249e69:log:118', 'hash': '0x42c72b4b77a67e811383f2536fd5a3c5db53938713e3f0799fb5a55039249e69', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 357564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x4bb79551d8bc3d700000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T11:31:10.000Z'}}, {'blockNum': '0x82bb38', 'uniqueId': '0x41331d392e133c891edcd1d65a7debd96e4e4afcf7d695cf338eece99ef5f8d8:log:48', 'hash': '0x41331d392e133c891edcd1d65a7debd96e4e4afcf7d695cf338eece99ef5f8d8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xc21a47f8f431ac5efa99766c0f0519bfbf5cbdea', 'value': 7076.46943192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x017f9dbdbf96dde46000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T15:02:39.000Z'}}, {'blockNum': '0x82bc3f', 'uniqueId': '0xeab44c8417eebe74b098f883ec3748333f1399329eb7c49be2750ca84cf42cb1:log:10', 'hash': '0xeab44c8417eebe74b098f883ec3748333f1399329eb7c49be2750ca84cf42cb1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2382.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x8121078291f438ee9a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:00:14.000Z'}}, {'blockNum': '0x82bc3f', 'uniqueId': '0xeab44c8417eebe74b098f883ec3748333f1399329eb7c49be2750ca84cf42cb1:log:12', 'hash': '0xeab44c8417eebe74b098f883ec3748333f1399329eb7c49be2750ca84cf42cb1', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 2382.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x8121078291f438ee9a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:00:14.000Z'}}, {'blockNum': '0x82bc40', 'uniqueId': '0x0bf1ab6305198c1bddba513cb44aeadc0aa42754e17897ebc5bd0eabbadb83d5:log:80', 'hash': '0x0bf1ab6305198c1bddba513cb44aeadc0aa42754e17897ebc5bd0eabbadb83d5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 7067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x017f1a53916de58c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:00:21.000Z'}}, {'blockNum': '0x82bc43', 'uniqueId': '0x4fb90d0a63c54fe6f64d783dc3b961d61997362d058f354cce75b66fdce308f0:log:25', 'hash': '0x4fb90d0a63c54fe6f64d783dc3b961d61997362d058f354cce75b66fdce308f0', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x9861019eb1ca43ea0e750582c41ac836bc9a5ed7', 'value': 26376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0595d887fdf677200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:01:12.000Z'}}, {'blockNum': '0x82bc43', 'uniqueId': '0x7948849317cd3dceda887edd9b0c6955f7e3f9d7c5ade36140f58e8cdf6257f9:log:63', 'hash': '0x7948849317cd3dceda887edd9b0c6955f7e3f9d7c5ade36140f58e8cdf6257f9', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 35521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x078598e695ad1a640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:01:12.000Z'}}, {'blockNum': '0x82bc43', 'uniqueId': '0xb926f9ade88e9653013f467b6f86d91e0b9a8695c652fd841f98cbd49ad67fa7:log:64', 'hash': '0xb926f9ade88e9653013f467b6f86d91e0b9a8695c652fd841f98cbd49ad67fa7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 46651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09e0f4add468ac0c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:01:12.000Z'}}, {'blockNum': '0x82bc48', 'uniqueId': '0xf055eb21c316c288ca77a96fc40322dd39e6d7a4735a4372699181e013e0d355:log:4', 'hash': '0xf055eb21c316c288ca77a96fc40322dd39e6d7a4735a4372699181e013e0d355', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 74379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0fc017fab72b2b4c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:02:23.000Z'}}, {'blockNum': '0x82bc54', 'uniqueId': '0xf264ce3b7cc33060f61e666c5e66a5d995a4bc856c08f6a6075b2f37f08032c9:log:8', 'hash': '0xf264ce3b7cc33060f61e666c5e66a5d995a4bc856c08f6a6075b2f37f08032c9', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2382.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x8121078291f438ee9a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:04:36.000Z'}}, {'blockNum': '0x82bc54', 'uniqueId': '0xf264ce3b7cc33060f61e666c5e66a5d995a4bc856c08f6a6075b2f37f08032c9:log:9', 'hash': '0xf264ce3b7cc33060f61e666c5e66a5d995a4bc856c08f6a6075b2f37f08032c9', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2382.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x8121078291f438ee9a', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:04:36.000Z'}}, {'blockNum': '0x82bc54', 'uniqueId': '0x2cdf3fc8573a6ba62d10c61a9d1bb1c3b53e08c5e68140b0ccaa7f821ebe7ce5:log:108', 'hash': '0x2cdf3fc8573a6ba62d10c61a9d1bb1c3b53e08c5e68140b0ccaa7f821ebe7ce5', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 12819, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b6eb5ca606f46c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:04:36.000Z'}}, {'blockNum': '0x82bcaf', 'uniqueId': '0xd7d1339733eb5de4446cbc46edfa561723a02bcbb7f1062b3d9c130c7a19b961:log:19', 'hash': '0xd7d1339733eb5de4446cbc46edfa561723a02bcbb7f1062b3d9c130c7a19b961', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x562556b5986c4197234557406ac21be28f5c8cca', 'value': 43479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x093500560a6298fc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:25:20.000Z'}}, {'blockNum': '0x82bcd5', 'uniqueId': '0xc4ecf1c901ab651b369d8906a56709ed98e99356bc46e6bf75c5819dbb10cf5a:log:6', 'hash': '0xc4ecf1c901ab651b369d8906a56709ed98e99356bc46e6bf75c5819dbb10cf5a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 29717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x064af63864960b340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T16:33:19.000Z'}}, {'blockNum': '0x82bd59', 'uniqueId': '0xa83f56c47d9fdfacf7c81c542b25e6ad0ea1a4da5889f71ff01f6f512a78ea73:log:15', 'hash': '0xa83f56c47d9fdfacf7c81c542b25e6ad0ea1a4da5889f71ff01f6f512a78ea73', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x562556b5986c4197234557406ac21be28f5c8cca', 'value': 39816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x086e6dffd5ca79200000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T17:06:19.000Z'}}, {'blockNum': '0x82bd9d', 'uniqueId': '0xf54670615ab734783d4d6d7835c51804e3fd362e99e1fad3fe19d71c80ff278f:log:25', 'hash': '0xf54670615ab734783d4d6d7835c51804e3fd362e99e1fad3fe19d71c80ff278f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 37057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x07d8dd2ecb9972640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T17:21:14.000Z'}}, {'blockNum': '0x82bdb0', 'uniqueId': '0x48ddc7c376385c95a462537ddf33403c9a3a005f750c2a9c0533c5349d0478b1:log:16', 'hash': '0x48ddc7c376385c95a462537ddf33403c9a3a005f750c2a9c0533c5349d0478b1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'value': 59698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ca43c2d3270b5880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T17:25:35.000Z'}}, {'blockNum': '0x82bdb4', 'uniqueId': '0xc6ce100d599399125db857332a7c8a6e13f3923b556741303c5eebef06df21d6:log:4', 'hash': '0xc6ce100d599399125db857332a7c8a6e13f3923b556741303c5eebef06df21d6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 292111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x3ddb5e796d9782dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T17:26:08.000Z'}}, {'blockNum': '0x82bdd8', 'uniqueId': '0xe5370ab181eef2b7b3c11d3cd200ac4e98acb6ceb67318add685c0006cae1e22:log:8', 'hash': '0xe5370ab181eef2b7b3c11d3cd200ac4e98acb6ceb67318add685c0006cae1e22', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 17885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03c98c3c253575540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T17:34:22.000Z'}}, {'blockNum': '0x82be01', 'uniqueId': '0x71d6d3a78313cc73d762a45ba1a7fbe3a1778bf179046d2f2c20f4e447692acd:log:8', 'hash': '0x71d6d3a78313cc73d762a45ba1a7fbe3a1778bf179046d2f2c20f4e447692acd', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 6647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x016855a7d2af457c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T17:41:56.000Z'}}, {'blockNum': '0x82beab', 'uniqueId': '0x860c061c6ef5deb4f6b8f3f90ada0a073a69b1a2a8d44176a9d9137a4e6e6097:log:12', 'hash': '0x860c061c6ef5deb4f6b8f3f90ada0a073a69b1a2a8d44176a9d9137a4e6e6097', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1904d2201a1a9f98c09640d7096a9e69db003363', 'value': 13964.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02f502fae57018d80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T18:19:07.000Z'}}, {'blockNum': '0x82bf13', 'uniqueId': '0x7b79b6ca2d3216cc358f971e12aae741e571693794af89bd175467ba2f53ac89:log:6', 'hash': '0x7b79b6ca2d3216cc358f971e12aae741e571693794af89bd175467ba2f53ac89', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x562556b5986c4197234557406ac21be28f5c8cca', 'value': 37972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x080a775bcfb8bcd00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T18:42:56.000Z'}}, {'blockNum': '0x82bf1c', 'uniqueId': '0x93dae63850222469f10c1462136c3019deb1c3284eac019b559e38d9dbba97a6:log:78', 'hash': '0x93dae63850222469f10c1462136c3019deb1c3284eac019b559e38d9dbba97a6', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02e76ffb641d2b080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T18:44:00.000Z'}}, {'blockNum': '0x82c066', 'uniqueId': '0x17a06d0ffcf503fac5fa83191a71eeec5955b30a2e8d3f2c8ab4c3cd359d5968:log:4', 'hash': '0x17a06d0ffcf503fac5fa83191a71eeec5955b30a2e8d3f2c8ab4c3cd359d5968', 'from': '0x0d7a7567ca4889f5ec71dafe476edfa78a497241', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 59698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0ca43c2d3270b5880000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T19:56:36.000Z'}}, {'blockNum': '0x82c066', 'uniqueId': '0xf33e1e15a8607c71d91572f11735c5ecb80a0d80d08f213a6a8381c491005c22:log:5', 'hash': '0xf33e1e15a8607c71d91572f11735c5ecb80a0d80d08f213a6a8381c491005c22', 'from': '0x562556b5986c4197234557406ac21be28f5c8cca', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 83295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x11a36e55e02d121c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T19:56:36.000Z'}}, {'blockNum': '0x82c067', 'uniqueId': '0xbb7964bd692a91a5c8bc6450841c5b921e07870503d68a9a6c7a949b9f81714a:log:7', 'hash': '0xbb7964bd692a91a5c8bc6450841c5b921e07870503d68a9a6c7a949b9f81714a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xca1e276f8d97747837dff24b44a16c882d331b8f', 'value': 15301.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x033d7d9515b5521c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T19:57:13.000Z'}}, {'blockNum': '0x82c067', 'uniqueId': '0x2112a0b5f7c74f503925aab40b5ab7ef94d9417c60dd008db1fb2802701cf62e:log:39', 'hash': '0x2112a0b5f7c74f503925aab40b5ab7ef94d9417c60dd008db1fb2802701cf62e', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 17885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x03c98c3c253575540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T19:57:13.000Z'}}, {'blockNum': '0x82c1e4', 'uniqueId': '0x47e54c64b665cd1d109f73cfdd5f50fcb62ee87d925a88d53de728475160a4c8:log:84', 'hash': '0x47e54c64b665cd1d109f73cfdd5f50fcb62ee87d925a88d53de728475160a4c8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3326.380337636544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xb452cced297e258555', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T21:17:58.000Z'}}, {'blockNum': '0x82c1e4', 'uniqueId': '0x47e54c64b665cd1d109f73cfdd5f50fcb62ee87d925a88d53de728475160a4c8:log:86', 'hash': '0x47e54c64b665cd1d109f73cfdd5f50fcb62ee87d925a88d53de728475160a4c8', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x68f93386bb2aba0ca9d3c04d7cba4a09a8b97941', 'value': 3326.380337636544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xb452cced297e258555', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T21:17:58.000Z'}}, {'blockNum': '0x82c3e8', 'uniqueId': '0xdc153ff09bae44b60b885a6fe89dedfb5d92e515fb0a7807629014c3bee37ccb:log:2', 'hash': '0xdc153ff09bae44b60b885a6fe89dedfb5d92e515fb0a7807629014c3bee37ccb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x862a2dc1672551e5a05cca7959abf0cac2b64491', 'value': 134.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0746d0c1d1a8af0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T23:12:24.000Z'}}, {'blockNum': '0x82c45e', 'uniqueId': '0x6b9ead7f91db8d44e917cb90ddb804d03c6d1156ea8ec9eed70be53e2c5b6291:log:6', 'hash': '0x6b9ead7f91db8d44e917cb90ddb804d03c6d1156ea8ec9eed70be53e2c5b6291', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'value': 19823, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04329b63413ea85c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T23:35:45.000Z'}}, {'blockNum': '0x82c473', 'uniqueId': '0x3795b520d301741f7be1df9b4565da6e68bc13181130c0298857a2db4243d640:log:2', 'hash': '0x3795b520d301741f7be1df9b4565da6e68bc13181130c0298857a2db4243d640', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 57555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0c301013c88a776c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T23:41:08.000Z'}}, {'blockNum': '0x82c487', 'uniqueId': '0x814bceb21466603738b251e4a033878fd3cc5a5268f915679cf65dc88f2c53d3:log:55', 'hash': '0x814bceb21466603738b251e4a033878fd3cc5a5268f915679cf65dc88f2c53d3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 28942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0620f2ef4ab64b780000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-17T23:47:28.000Z'}}, {'blockNum': '0x82c4d0', 'uniqueId': '0x2936994f317ab6665ab2d962813d85b6310aa625fffeb2246f7163eb3082067c:log:63', 'hash': '0x2936994f317ab6665ab2d962813d85b6310aa625fffeb2246f7163eb3082067c', 'from': '0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c', 'to': '0xae34ebf56f4d2137eb77de4c64653b8c3b8a7659', 'value': 0.00065885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0257387835d400', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-18T00:04:27.000Z'}}, {'blockNum': '0x82c55c', 'uniqueId': '0x5fc6a19390a1d561b9569b8492a3004a408be5df8bb135cc9fd99b80463ef5e3:log:5', 'hash': '0x5fc6a19390a1d561b9569b8492a3004a408be5df8bb135cc9fd99b80463ef5e3', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 6695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x016aefca145ea83c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-18T00:31:38.000Z'}}, {'blockNum': '0x82c574', 'uniqueId': '0xc919df85dd3ce08576a47abb98de3fd4a2145400ddeb788e3d6cc32472140475:log:46', 'hash': '0xc919df85dd3ce08576a47abb98de3fd4a2145400ddeb788e3d6cc32472140475', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 5207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x011a45a42021b2fc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-18T00:35:30.000Z'}}, {'blockNum': '0x82c58d', 'uniqueId': '0xa88264fb99bc7e7bd946f187c08d4571dcb448201386755f503120b99c8aca00:log:56', 'hash': '0xa88264fb99bc7e7bd946f187c08d4571dcb448201386755f503120b99c8aca00', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6695, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x016aefca145ea83c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-18T00:39:02.000Z'}}]}}
Number of returned transfers:  52
Answer is complete
 
symbol             EDO
group              CPI
date        2019-09-25
hour             16:00
exchange       binance
Name: 1046, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2019-09-25 16:00:00 2019-09-25 04:00:00 2019-09-26 04:00:00
Unix timestamps:  1569376800.0 1569463200.0
Hex Block Numbers:  0x83759d 0x838ea1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BLZ
group              CPI
date        2019-09-26
hour             15:59
exchange       binance
Name: 1047, dtype: object
HERE
 Symbol: BLZ, Contract: 0x5732046a883704404f284ce41ffadd5b007fd668
Datetime timestamps:  2019-09-26 15:59:00 2019-09-26 03:59:00 2019-09-27 03:59:00
Unix timestamps:  1569463140.0 1569549540.0
Hex Block Numbers:  0x838e98 0x83a780
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x838ef2', 'uniqueId': '0xd729a56572984fa5a28e6d656656d416dca7154c4b7ab849d90e828beb69d68c:log:41', 'hash': '0xd729a56572984fa5a28e6d656656d416dca7154c4b7ab849d90e828beb69d68c', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 4897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01097786e294ffe40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:19:40.000Z'}}, {'blockNum': '0x838efd', 'uniqueId': '0x1583c38100eeb520c4450a2282187926cedb8de3b733ce36392f74152380460a:log:130', 'hash': '0x1583c38100eeb520c4450a2282187926cedb8de3b733ce36392f74152380460a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 26794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05ac81724f4dc8680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:21:57.000Z'}}, {'blockNum': '0x838f03', 'uniqueId': '0x264c02bf8aaeb6c4101f576f3e7e8e59011bdd40a27804a3b247ddbb2b79cea2:log:5', 'hash': '0x264c02bf8aaeb6c4101f576f3e7e8e59011bdd40a27804a3b247ddbb2b79cea2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe5bd196ee1506f84909a03cc3465dc81b78e29a5', 'value': 80643.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x1113affe48f478540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:23:30.000Z'}}, {'blockNum': '0x838f03', 'uniqueId': '0x724c431e3afbe654f95053393413acbbcd00b97dbb322dd34c71f4c8183b376a:log:7', 'hash': '0x724c431e3afbe654f95053393413acbbcd00b97dbb322dd34c71f4c8183b376a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 53995.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0b6f18b42c1c26f40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:23:30.000Z'}}, {'blockNum': '0x838f03', 'uniqueId': '0x4fab97110fe7a3314f435edb57f397e82c617010f308a3671ec732390963901d:log:9', 'hash': '0x4fab97110fe7a3314f435edb57f397e82c617010f308a3671ec732390963901d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05646154e8eaf95cc489acd368ea068052471d19', 'value': 59936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb123170d7654800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:23:30.000Z'}}, {'blockNum': '0x838f1e', 'uniqueId': '0xf0310865780b7000b82bc58613ced6f868f5504e71ba305413ce116fab93fc09:log:39', 'hash': '0xf0310865780b7000b82bc58613ced6f868f5504e71ba305413ce116fab93fc09', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 97694.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x14b0062738e299e00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:30:17.000Z'}}, {'blockNum': '0x838f28', 'uniqueId': '0x35700162949da856b6b6b4fa701bb6c67b6f5d6a0bb39970a15521b8c45b2aea:log:2', 'hash': '0x35700162949da856b6b6b4fa701bb6c67b6f5d6a0bb39970a15521b8c45b2aea', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x37683d1f8266cc9a8f49bf1ba8d5e726be058a0f', 'value': 49980.5086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0a9572e4939dc4338000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:32:26.000Z'}}, {'blockNum': '0x838f28', 'uniqueId': '0xaacad1b1861693ecb6edac0a98bd6774480947233cc1628dd5c0655ed3c7f290:log:28', 'hash': '0xaacad1b1861693ecb6edac0a98bd6774480947233cc1628dd5c0655ed3c7f290', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 3833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xcfc98f87e548440000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:32:26.000Z'}}, {'blockNum': '0x838f3c', 'uniqueId': '0xe9a245f3d355216107b5f38de57c127fdca194c5aabb13a6f12d016cecd80480:log:4', 'hash': '0xe9a245f3d355216107b5f38de57c127fdca194c5aabb13a6f12d016cecd80480', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 306604, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x40ed0940c6630b300000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:35:52.000Z'}}, {'blockNum': '0x838f47', 'uniqueId': '0x2405b9672521e507f6ea1ebae169ba8aba469ef8573a28dabddc09864736fd50:log:27', 'hash': '0x2405b9672521e507f6ea1ebae169ba8aba469ef8573a28dabddc09864736fd50', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 3872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xd1e6cb5d43c8800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:38:25.000Z'}}, {'blockNum': '0x838f4d', 'uniqueId': '0x0280e7e163433e0e4c3130782eccbd47997de0ab2153a6d06da0977ee900c9fc:log:190', 'hash': '0x0280e7e163433e0e4c3130782eccbd47997de0ab2153a6d06da0977ee900c9fc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 15890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x035d660c5b2bfd080000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T02:40:07.000Z'}}, {'blockNum': '0x839069', 'uniqueId': '0xbc4edef70a8f849a39508bcc20832da3c6cf0600b930de0568da6e4921bb972e:log:82', 'hash': '0xbc4edef70a8f849a39508bcc20832da3c6cf0600b930de0568da6e4921bb972e', 'from': '0x8f344f8719dd75b7becc77298c6127334a28071f', 'to': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'value': 16186, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x036d71df9ae588a80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T03:46:45.000Z'}}, {'blockNum': '0x8390a7', 'uniqueId': '0x28613834795d65ef8dc6a7c924d35e5e2fd17180cc3e89b9c4ed3b2b2f654ca7:log:61', 'hash': '0x28613834795d65ef8dc6a7c924d35e5e2fd17180cc3e89b9c4ed3b2b2f654ca7', 'from': '0x51715784a38aadf28b2ee74aec71ad99c9713126', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 3341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xb51db0669f94140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T04:01:32.000Z'}}, {'blockNum': '0x8390a7', 'uniqueId': '0x28613834795d65ef8dc6a7c924d35e5e2fd17180cc3e89b9c4ed3b2b2f654ca7:log:62', 'hash': '0x28613834795d65ef8dc6a7c924d35e5e2fd17180cc3e89b9c4ed3b2b2f654ca7', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xb51db0669f94140000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T04:01:32.000Z'}}, {'blockNum': '0x8391eb', 'uniqueId': '0xd90a96d2e39aa1c2a99632307452651f5c53075a7b287a416d92b84756af5ee2:log:62', 'hash': '0xd90a96d2e39aa1c2a99632307452651f5c53075a7b287a416d92b84756af5ee2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1b2c4352fa9fb5567c49ac78ceb7209d23f6632e', 'value': 9425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01feee266c35b8a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T05:16:00.000Z'}}, {'blockNum': '0x8393dd', 'uniqueId': '0x9fce82beabf08a2d7e8c5d2b951b97967126b1b13a63054c17e605f0f6641746:log:18', 'hash': '0x9fce82beabf08a2d7e8c5d2b951b97967126b1b13a63054c17e605f0f6641746', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xaf8868500976324470b22a7d0c3d1b99568800a1', 'value': 938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x32d95d6e4354680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T07:02:14.000Z'}}, {'blockNum': '0x8393e9', 'uniqueId': '0x6a9fc1901dbe47532826ea0e98284e3a126fe6f1ea1f70ae487d345064ce6c10:log:49', 'hash': '0x6a9fc1901dbe47532826ea0e98284e3a126fe6f1ea1f70ae487d345064ce6c10', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 42627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0906d075fc79802c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T07:05:02.000Z'}}, {'blockNum': '0x8393ec', 'uniqueId': '0x0e2c1f13307d9219f19ffd66dcf7134877b19891ec6cb6e5cc4792e725974caa:log:5', 'hash': '0x0e2c1f13307d9219f19ffd66dcf7134877b19891ec6cb6e5cc4792e725974caa', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 10128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02250a3c238e64400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T07:05:46.000Z'}}, {'blockNum': '0x839402', 'uniqueId': '0x681929f5020dbd1c7e093034399594678aeecebcfc9ba07d713281757a7a7743:log:92', 'hash': '0x681929f5020dbd1c7e093034399594678aeecebcfc9ba07d713281757a7a7743', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0906d075fc79802c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T07:09:17.000Z'}}, {'blockNum': '0x839402', 'uniqueId': '0x0279be23c7856fe5d335d725c1724e659327a50b4d47e58b7be0917a22e1e0cc:log:94', 'hash': '0x0279be23c7856fe5d335d725c1724e659327a50b4d47e58b7be0917a22e1e0cc', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02f6f10780d22cc00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T07:09:17.000Z'}}, {'blockNum': '0x83958a', 'uniqueId': '0xba1b02184fcb013d6810284995c991a2c1f3c72e31633a2d0b634952f930ec33:log:6', 'hash': '0xba1b02184fcb013d6810284995c991a2c1f3c72e31633a2d0b634952f930ec33', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xaf8868500976324470b22a7d0c3d1b99568800a1', 'value': 3231238, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ac3dc3520f5a64580000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T08:41:56.000Z'}}, {'blockNum': '0x8395d4', 'uniqueId': '0xce068c226099850e53671b72eab01c8c0827af7a0fb7224c5d004717e0da5859:log:41', 'hash': '0xce068c226099850e53671b72eab01c8c0827af7a0fb7224c5d004717e0da5859', 'from': '0xfdf28bf25779ed4ca74e958d54653260af604c20', 'to': '0x3a9b02c14d967333ce68e353a64653e258da2baa', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T08:58:11.000Z'}}, {'blockNum': '0x839668', 'uniqueId': '0xcffeb4fd194388a3a4030becce0ab3960c42e2c451302c388ccf5f2a75b7f59f:log:145', 'hash': '0xcffeb4fd194388a3a4030becce0ab3960c42e2c451302c388ccf5f2a75b7f59f', 'from': '0x29585ea10ab4f66bb3c223177daae992db593428', 'to': '0x74d02596a08f77539cec9a4ed414eee67b8cdb86', 'value': 12842.47, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b83112d6ad82d70000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T09:31:07.000Z'}}, {'blockNum': '0x8396fd', 'uniqueId': '0xda1222f440fce0032b78e28af8c722118d7461d14a40a14e6518cc3de10b1252:log:24', 'hash': '0xda1222f440fce0032b78e28af8c722118d7461d14a40a14e6518cc3de10b1252', 'from': '0xaf8868500976324470b22a7d0c3d1b99568800a1', 'to': '0x3cff9216cb3d41098759371d204d65fe77dfe990', 'value': 3232176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02ac709caf7d9db8c00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T10:06:57.000Z'}}, {'blockNum': '0x839714', 'uniqueId': '0xb43bd24449198b7480ff09738d0abb2c64c7002fd4681d5f22540fd720565b91:log:136', 'hash': '0xb43bd24449198b7480ff09738d0abb2c64c7002fd4681d5f22540fd720565b91', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 8541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01cf022f87d7b3540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T10:13:33.000Z'}}, {'blockNum': '0x839724', 'uniqueId': '0x1fba9cd298ead4af57bbba476e5f760e0aa30c61646db6b8c474ca5ff9044583:log:55', 'hash': '0x1fba9cd298ead4af57bbba476e5f760e0aa30c61646db6b8c474ca5ff9044583', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 29205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x062f34cafd4743340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T10:17:38.000Z'}}, {'blockNum': '0x839728', 'uniqueId': '0xad95efba130cb39fafb1a6744f45cbc9d9fb973037d176f78225be9e1c1f71b0:log:43', 'hash': '0xad95efba130cb39fafb1a6744f45cbc9d9fb973037d176f78225be9e1c1f71b0', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01cf022f87d7b3540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T10:19:27.000Z'}}, {'blockNum': '0x839758', 'uniqueId': '0xc63457e821c7fedde6b58a9a0aa9b2e78b39b9d7f405ed37f81cb287d26ce196:log:76', 'hash': '0xc63457e821c7fedde6b58a9a0aa9b2e78b39b9d7f405ed37f81cb287d26ce196', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x062f34cafd4743340000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T10:29:16.000Z'}}, {'blockNum': '0x8397a9', 'uniqueId': '0x95c34670d18d762e11f5e1055b6f8c5b89e6296e78007e51a65b3f80e982f154:log:98', 'hash': '0x95c34670d18d762e11f5e1055b6f8c5b89e6296e78007e51a65b3f80e982f154', 'from': '0xb1ead214506d0cd73785dd09b3efc2307133bf69', 'to': '0x5071acff371a6a77e6d53be334f41ac847d73d27', 'value': 3856.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xd10a233781afca0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T10:49:35.000Z'}}, {'blockNum': '0x8397ca', 'uniqueId': '0x04b09cbc7f84ab3f73af671740d0ed4602086bcefaff6b77e0fc1969c7c71fe4:log:54', 'hash': '0x04b09cbc7f84ab3f73af671740d0ed4602086bcefaff6b77e0fc1969c7c71fe4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 5775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x013910397ebd18dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T10:58:36.000Z'}}, {'blockNum': '0x8397d5', 'uniqueId': '0x17dcab3ba447a950e1b430b78404e348abb4f5b89ca0016ded8ceb35976bd5b0:log:9', 'hash': '0x17dcab3ba447a950e1b430b78404e348abb4f5b89ca0016ded8ceb35976bd5b0', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 14909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x032837f03cbb8ad40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T11:00:41.000Z'}}, {'blockNum': '0x8398e1', 'uniqueId': '0x14b59eacf092fcb3dcc7d1d8494316b0c3f5e73dac1bd495aa6316811f75beb9:log:27', 'hash': '0x14b59eacf092fcb3dcc7d1d8494316b0c3f5e73dac1bd495aa6316811f75beb9', 'from': '0xebf14660326e8cb0634ccaa708b7736f1d21ebb1', 'to': '0x9aaab99a8183c87abe903600208ebe55336bc0b8', 'value': 8561.65, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01d020c3116f27250000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T11:55:23.000Z'}}, {'blockNum': '0x839a87', 'uniqueId': '0xe999fc2851364f2586a139fb250781a4eb6e0da768c6b3f49698a86363bccd28:log:4', 'hash': '0xe999fc2851364f2586a139fb250781a4eb6e0da768c6b3f49698a86363bccd28', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1b2c4352fa9fb5567c49ac78ceb7209d23f6632e', 'value': 21979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x04a77be5f244668c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T13:33:43.000Z'}}, {'blockNum': '0x839a98', 'uniqueId': '0x3b88e78a2d4b9bbbe31f180ec21bef17011eba6308e92a046edfcfe8a3c4f5ae:log:10', 'hash': '0x3b88e78a2d4b9bbbe31f180ec21bef17011eba6308e92a046edfcfe8a3c4f5ae', 'from': '0x51c7b7347b5eb475fa9ce7d1801f87f2f6fd6a88', 'to': '0xbbd504833dd5193f7aca807c4a5ef82748d26d65', 'value': 2419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x83225e6396b5ec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T13:38:58.000Z'}}, {'blockNum': '0x839ad0', 'uniqueId': '0xf0bca13647a9fdf83d6a0ac8a7709685017cbc6f19608a58d258b9dd0239495b:log:165', 'hash': '0xf0bca13647a9fdf83d6a0ac8a7709685017cbc6f19608a58d258b9dd0239495b', 'from': '0xbbd504833dd5193f7aca807c4a5ef82748d26d65', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x83225e6396b5ec0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T13:50:08.000Z'}}, {'blockNum': '0x839c3b', 'uniqueId': '0x219221fe7e042a545ee1cd34fa8039acb9bd7262b1550fb171c01f2112686451:log:19', 'hash': '0x219221fe7e042a545ee1cd34fa8039acb9bd7262b1550fb171c01f2112686451', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 252.41988435891662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0daf0793725267d21f', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T15:12:08.000Z'}}, {'blockNum': '0x839c3b', 'uniqueId': '0x219221fe7e042a545ee1cd34fa8039acb9bd7262b1550fb171c01f2112686451:log:21', 'hash': '0x219221fe7e042a545ee1cd34fa8039acb9bd7262b1550fb171c01f2112686451', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x759761eefc6a328bd23523a55776b5a7ba168568', 'value': 252.41988435891662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0daf0793725267d21f', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T15:12:08.000Z'}}, {'blockNum': '0x839d0f', 'uniqueId': '0x58e375dc4acc4749eb2d3778a00eeaa80684dc252ab3f15570ab5017a2ee8e9b:log:142', 'hash': '0x58e375dc4acc4749eb2d3778a00eeaa80684dc252ab3f15570ab5017a2ee8e9b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 31768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06ba259025ec21600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T16:01:32.000Z'}}, {'blockNum': '0x839d1f', 'uniqueId': '0x3a0306e1f95d0b1220d789f3a0aaa884160cc97e2bb075b2363b56820817bfbf:log:26', 'hash': '0x3a0306e1f95d0b1220d789f3a0aaa884160cc97e2bb075b2363b56820817bfbf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x811fa2d3b05e1477882bffd9dc042c75d60df1d0', 'value': 25847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05792b2e74b9917c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T16:05:35.000Z'}}, {'blockNum': '0x839d3e', 'uniqueId': '0x52675ec2f2a40c2c5f1b36f892593dc4c868a0887e34e9250461fac7cd167180:log:86', 'hash': '0x52675ec2f2a40c2c5f1b36f892593dc4c868a0887e34e9250461fac7cd167180', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'value': 81463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x11401e3a6a872e7c0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T16:12:27.000Z'}}, {'blockNum': '0x839d5c', 'uniqueId': '0x75865dc7e1045f8f520dfb1b0de637a801f416c7e254b9a4f5d72279f6bd9813:log:135', 'hash': '0x75865dc7e1045f8f520dfb1b0de637a801f416c7e254b9a4f5d72279f6bd9813', 'from': '0x3f675abd5daa228e0ca3c3b3c300945c846fd452', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x149d8446c5b32b840000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T16:20:48.000Z'}}, {'blockNum': '0x839d61', 'uniqueId': '0xf464c54b0b22c200d8d08b4617050c765e10e58895f60e9d3baa67b6b643701b:log:78', 'hash': '0xf464c54b0b22c200d8d08b4617050c765e10e58895f60e9d3baa67b6b643701b', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x06ba259025ec21600000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T16:21:40.000Z'}}, {'blockNum': '0x839d68', 'uniqueId': '0xe3b88b89efbf64a258feddccd9dfd849885e0c3999abb4acb58332a4afc4b145:log:38', 'hash': '0xe3b88b89efbf64a258feddccd9dfd849885e0c3999abb4acb58332a4afc4b145', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 8079, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x01b5f6a5cf9f9cdc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T16:22:51.000Z'}}, {'blockNum': '0x839e49', 'uniqueId': '0x6d6df8001fda053bcfa61c19e34e80124c5073cdc08c681df6c85b89d1af7292:log:12', 'hash': '0x6d6df8001fda053bcfa61c19e34e80124c5073cdc08c681df6c85b89d1af7292', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x4725b71e7c65d20870639fa09b1992bb33f52714', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0cb49b44ba602d800000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T17:10:52.000Z'}}, {'blockNum': '0x839e60', 'uniqueId': '0x934bfe874d9a14529369cf631d0d316a97f74b51063426ff885230c1481b0568:log:97', 'hash': '0x934bfe874d9a14529369cf631d0d316a97f74b51063426ff885230c1481b0568', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 47119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fa537bd4d6aedc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T17:15:18.000Z'}}, {'blockNum': '0x839ea0', 'uniqueId': '0xb0041b85927b5424d867ad584b833ef67454878ccecf0af56371b87a1d7aa6f3:log:66', 'hash': '0xb0041b85927b5424d867ad584b833ef67454878ccecf0af56371b87a1d7aa6f3', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09fa537bd4d6aedc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T17:29:11.000Z'}}, {'blockNum': '0x839ff4', 'uniqueId': '0x5288ce7070fd783b447664a3448950c8650e42309f96894d46594644ca276070:log:31', 'hash': '0x5288ce7070fd783b447664a3448950c8650e42309f96894d46594644ca276070', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 2984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa1c3519e1725a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T18:44:48.000Z'}}, {'blockNum': '0x83a00c', 'uniqueId': '0x476b760d67476d9747e2e8f72b11d5c92d5754d34ca03adf60713413f1f1d82d:log:24', 'hash': '0x476b760d67476d9747e2e8f72b11d5c92d5754d34ca03adf60713413f1f1d82d', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0xa1c3519e1725a00000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T18:49:02.000Z'}}, {'blockNum': '0x83a097', 'uniqueId': '0x44edac8246db47bf9a07db44ae2b5c3e8a635c7acecf0cf3e3c13b44b3edc524:log:21', 'hash': '0x44edac8246db47bf9a07db44ae2b5c3e8a635c7acecf0cf3e3c13b44b3edc524', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 2470.6145451203247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x85eeaa16e8fa3ebac7', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T19:21:49.000Z'}}, {'blockNum': '0x83a097', 'uniqueId': '0x44edac8246db47bf9a07db44ae2b5c3e8a635c7acecf0cf3e3c13b44b3edc524:log:23', 'hash': '0x44edac8246db47bf9a07db44ae2b5c3e8a635c7acecf0cf3e3c13b44b3edc524', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x759761eefc6a328bd23523a55776b5a7ba168568', 'value': 2470.6145451203247, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x85eeaa16e8fa3ebac7', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T19:21:49.000Z'}}, {'blockNum': '0x83a135', 'uniqueId': '0xf1ebe498985f03b304294678168af5cf21a4d5ae07495bad507f08d21895bdb4:log:15', 'hash': '0xf1ebe498985f03b304294678168af5cf21a4d5ae07495bad507f08d21895bdb4', 'from': '0xad98c1e44ef1fd2793e9cc9255b4da2438d7e924', 'to': '0xf03a22e6c6c1842de55e406672ca005f09aea3d4', 'value': 24943.228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x05482cd34f1d39260000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T19:55:24.000Z'}}, {'blockNum': '0x83a1bd', 'uniqueId': '0x8429cc29f14c1734237b2bf8f3e4927e68ae2b3470e2112eb19a05c9d7549d7a:log:115', 'hash': '0x8429cc29f14c1734237b2bf8f3e4927e68ae2b3470e2112eb19a05c9d7549d7a', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 20138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0443aee4104da0680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T20:24:39.000Z'}}, {'blockNum': '0x83a1d2', 'uniqueId': '0x3cd2d089c9028b3ccaee91c3e1707ea2259aba7f35d47a0c58c7e712e94183ed:log:20', 'hash': '0x3cd2d089c9028b3ccaee91c3e1707ea2259aba7f35d47a0c58c7e712e94183ed', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20138, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0443aee4104da0680000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T20:29:13.000Z'}}, {'blockNum': '0x83a1db', 'uniqueId': '0xe732e53f6caf24c0a8f6a86c917988ca35540cc7320576d05a94510224fcf602:log:2', 'hash': '0xe732e53f6caf24c0a8f6a86c917988ca35540cc7320576d05a94510224fcf602', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8341a22bfb62f529264590d9330684b79e839311', 'value': 12701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02b085c86f37cc540000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T20:30:07.000Z'}}, {'blockNum': '0x83a357', 'uniqueId': '0xe0b9d37d9e621dd8583e2483091b7716404fde9828b78e0a849e131d8813d54c:log:8', 'hash': '0xe0b9d37d9e621dd8583e2483091b7716404fde9828b78e0a849e131d8813d54c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'value': 45585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09a72af50c51a5a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T21:49:58.000Z'}}, {'blockNum': '0x83a37d', 'uniqueId': '0xfa9d7e914b5bb542acc8b49b1146a57c653768fc5151db4f0348e7ca40e5aa98:log:35', 'hash': '0xfa9d7e914b5bb542acc8b49b1146a57c653768fc5151db4f0348e7ca40e5aa98', 'from': '0x3f3da1604c51b30f5f7d54b2a6fadb2a5eba5ab8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09a72af50c51a5a40000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T21:59:13.000Z'}}, {'blockNum': '0x83a4da', 'uniqueId': '0xe012c2e41233c2a11e3c96b075ca8e53d2b1938fa7c9ceeb6025a15efcecca18:log:190', 'hash': '0xe012c2e41233c2a11e3c96b075ca8e53d2b1938fa7c9ceeb6025a15efcecca18', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5232346c018270b438750164f937abaa3be11b8e', 'value': 35905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x079a69f8a32830640000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T23:20:20.000Z'}}, {'blockNum': '0x83a4ea', 'uniqueId': '0xbd8b87118f7235ca16f2d096839e9d98ee8c7372f741749f007c7c20d64847b2:log:5', 'hash': '0xbd8b87118f7235ca16f2d096839e9d98ee8c7372f741749f007c7c20d64847b2', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x24e70157428c74fb06b9af2507365351f9af2fea', 'value': 46090, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x09c28b3d74b6d9e80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T23:24:22.000Z'}}, {'blockNum': '0x83a4fe', 'uniqueId': '0xf99189efc9837ae7e5e5a880428f403037356209392f08227f049afe87c05e2b:log:9', 'hash': '0xf99189efc9837ae7e5e5a880428f403037356209392f08227f049afe87c05e2b', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 12431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02a1e2c7bdbd40dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T23:29:13.000Z'}}, {'blockNum': '0x83a507', 'uniqueId': '0x94cc4a691598f983d166394264729c1640723232b441b3fa457aabb6e1cf6a29:log:30', 'hash': '0x94cc4a691598f983d166394264729c1640723232b441b3fa457aabb6e1cf6a29', 'from': '0x9dc57560dc50ccfb7475b78b594b2444cfb7a1a5', 'to': '0x2767061587cdec0b263693cda14716f170202016', 'value': 39.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0221d03a9ee81d0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T23:31:20.000Z'}}, {'blockNum': '0x83a531', 'uniqueId': '0xcdd8f0b73dd76167f009a38b1673196e75cc2c1179335c92c76633b7a8bf327c:log:41', 'hash': '0xcdd8f0b73dd76167f009a38b1673196e75cc2c1179335c92c76633b7a8bf327c', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02a1e2c7bdbd40dc0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T23:38:56.000Z'}}, {'blockNum': '0x83a536', 'uniqueId': '0xd14d607f79a25721c210a0b0f3a19ed94e41efad7b8f0ed08622c46c373b55b1:log:5', 'hash': '0xd14d607f79a25721c210a0b0f3a19ed94e41efad7b8f0ed08622c46c373b55b1', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'value': 13286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02d03c49efc14fd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T23:40:37.000Z'}}, {'blockNum': '0x83a562', 'uniqueId': '0x25931f0a2edb95aa36cba5873e474c92dbc8dc8f74fa269970f31faf24e22356:log:8', 'hash': '0x25931f0a2edb95aa36cba5873e474c92dbc8dc8f74fa269970f31faf24e22356', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'value': 41370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08c2ac14e45896280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T23:52:25.000Z'}}, {'blockNum': '0x83a588', 'uniqueId': '0xe9a25a9cebc5626afcc300330ff1b11bcbc72a913964337931a51cc3cf64be16:log:38', 'hash': '0xe9a25a9cebc5626afcc300330ff1b11bcbc72a913964337931a51cc3cf64be16', 'from': '0x3f8b7552144e0907272169805ba6df191b8a2eec', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 41370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x08c2ac14e45896280000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T23:59:35.000Z'}}, {'blockNum': '0x83a588', 'uniqueId': '0x3254b0e891a5dd3e207bb31e961a2ec14a0d1b2316bebeb3d6153c7da9323f2c:log:48', 'hash': '0x3254b0e891a5dd3e207bb31e961a2ec14a0d1b2316bebeb3d6153c7da9323f2c', 'from': '0x6570b83e7bca6df4c793aa5d372f15fe7b93551d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x02d03c49efc14fd80000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-26T23:59:35.000Z'}}, {'blockNum': '0x83a5f4', 'uniqueId': '0x0d49a8eb9e95e4d66fbb084aeaae5f6591cb058394b1bab02bb373d91f66b91e:log:64', 'hash': '0x0d49a8eb9e95e4d66fbb084aeaae5f6591cb058394b1bab02bb373d91f66b91e', 'from': '0x2767061587cdec0b263693cda14716f170202016', 'to': '0x2b021beae06554040e09c88c2071bbecd6ee5b54', 'value': 39.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BLZ', 'category': 'erc20', 'rawContract': {'value': '0x0221d03a9ee81d0000', 'address': '0x5732046a883704404f284ce41ffadd5b007fd668', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-09-27T00:24:10.000Z'}}]}}
Number of returned transfers:  66
Answer is complete
 
symbol             NXS
group              CPI
date        2019-10-02
hour             18:00
exchange       binance
Name: 1048, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2019-10-02 18:00:00 2019-10-02 06:00:00 2019-10-03 06:00:00
Unix timestamps:  1569988800.0 1570075200.0
Hex Block Numbers:  0x84268b 0x843f83
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             OST
group              CPI
date        2019-10-22
hour             18:00
exchange       binance
Name: 1049, dtype: object
HERE
 Symbol: OST, Contract: 0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca
Datetime timestamps:  2019-10-22 18:00:00 2019-10-22 06:00:00 2019-10-23 06:00:00
Unix timestamps:  1571716800.0 1571803200.0
Hex Block Numbers:  0x861831 0x863158
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x861bde', 'uniqueId': '0x1d95a09a36b4a8ec474fbedaacdd0306d69f07fe3b1f4b8297a9c866c44102e6:log:23', 'hash': '0x1d95a09a36b4a8ec474fbedaacdd0306d69f07fe3b1f4b8297a9c866c44102e6', 'from': '0x492728e73a4cfacfa017b7eb444703b2d960d09a', 'to': '0x8b7cf173a4bc994a573615f534fcde698eb0ba18', 'value': 11141.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x025bffe21594c6a68000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:28:43.000Z'}}, {'blockNum': '0x861c15', 'uniqueId': '0xa076cf76f4a712b2432a192f11d394ea0b9e0d52d0e751af0855ba90f086e5f4:log:74', 'hash': '0xa076cf76f4a712b2432a192f11d394ea0b9e0d52d0e751af0855ba90f086e5f4', 'from': '0x8b7cf173a4bc994a573615f534fcde698eb0ba18', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11141.825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x025bffe21594c6a68000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:42:14.000Z'}}, {'blockNum': '0x861c17', 'uniqueId': '0xf98223262f7f00ba63ee568daf30b3438b800e8252f52dc6291d4235c4c1c7dd:log:15', 'hash': '0xf98223262f7f00ba63ee568daf30b3438b800e8252f52dc6291d4235c4c1c7dd', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xeb2408175a07be9c0604468db599a28e8dfc9e25', 'value': 552.945, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1df9a743df305e8000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:42:43.000Z'}}, {'blockNum': '0x861c2d', 'uniqueId': '0x1b6cf7e687e0bf0590cebd90fd5bd803171f95af9f16e562a3521c5b9e7490a9:log:47', 'hash': '0x1b6cf7e687e0bf0590cebd90fd5bd803171f95af9f16e562a3521c5b9e7490a9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeb2408175a07be9c0604468db599a28e8dfc9e25', 'value': 512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec8000000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T07:46:38.000Z'}}, {'blockNum': '0x861d33', 'uniqueId': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff:log:140', 'hash': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff', 'from': '0x8fa07f46353a2b17e92645592a94a0fc1ceb783f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 14.992838046130872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd01142c47a979e3f', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T08:42:16.000Z'}}, {'blockNum': '0x861d33', 'uniqueId': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff:log:141', 'hash': '0xad91a73c0b7990682d5263b6537544e343cf608ee923781a986bc4103bc108ff', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 14.992838046130872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd01142c47a979e3f', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T08:42:16.000Z'}}, {'blockNum': '0x861f34', 'uniqueId': '0xd698880ee7511031d4da38f4fb691cad0410cf1d99954b8a417b36f22e3562e3:log:0', 'hash': '0xd698880ee7511031d4da38f4fb691cad0410cf1d99954b8a417b36f22e3562e3', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 700005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x943b58daba8f02740000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T10:32:54.000Z'}}, {'blockNum': '0x861f57', 'uniqueId': '0x2f69c39685f5382891fa64a10f0b53e8f4ea50a8c32188e50962ad5ec71a865c:log:49', 'hash': '0x2f69c39685f5382891fa64a10f0b53e8f4ea50a8c32188e50962ad5ec71a865c', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 700005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x943b58daba8f02740000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T10:42:02.000Z'}}, {'blockNum': '0x862429', 'uniqueId': '0x90a80db78f6e7f3c1d513485230b84019ebab72ead97995dca3bdf6f5d950b52:log:0', 'hash': '0x90a80db78f6e7f3c1d513485230b84019ebab72ead97995dca3bdf6f5d950b52', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 503000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6a83af446fc86c600000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:35:16.000Z'}}, {'blockNum': '0x86243d', 'uniqueId': '0x6bc603544e03bb26a06845bb5540c97cb0547d7d2dedacfd7644e3635c7cc343:log:0', 'hash': '0x6bc603544e03bb26a06845bb5540c97cb0547d7d2dedacfd7644e3635c7cc343', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 506000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6b2650a1791a08400000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:37:59.000Z'}}, {'blockNum': '0x86244b', 'uniqueId': '0x95bbd8dd73e5340ff3b4d5c865c2586547795312a6d229d3a56283cf70c621f6:log:24', 'hash': '0x95bbd8dd73e5340ff3b4d5c865c2586547795312a6d229d3a56283cf70c621f6', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1009000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd5a9ffe5e8e274a00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:42:16.000Z'}}, {'blockNum': '0x862474', 'uniqueId': '0x63ce5167216ca6e23ac7d303d26d6c3d4c7058e5b4566319fe9b15b2857c6a2f:log:3', 'hash': '0x63ce5167216ca6e23ac7d303d26d6c3d4c7058e5b4566319fe9b15b2857c6a2f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 2434888.077162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02039b8c1214e97048a000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T15:51:55.000Z'}}, {'blockNum': '0x8626c1', 'uniqueId': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4:log:0', 'hash': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:00:40.000Z'}}, {'blockNum': '0x8626c1', 'uniqueId': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4:log:2', 'hash': '0x1b2e1e89d8ea7b47989f0cabd5fde9108c00dc2ad8c99921e0ae9e71a4ca32c4', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:00:40.000Z'}}, {'blockNum': '0x8626c4', 'uniqueId': '0xb271e49c1acb781e57efc0bc8c178e3dcb56e953f28ca0ba34087a01ec8e7eaa:log:15', 'hash': '0xb271e49c1acb781e57efc0bc8c178e3dcb56e953f28ca0ba34087a01ec8e7eaa', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'value': 1531.20195855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x5301b224a543265c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:01:10.000Z'}}, {'blockNum': '0x8626c6', 'uniqueId': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292:log:2', 'hash': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292', 'from': '0x6794471ebc084a4ca462c506afeabb93d9657c25', 'to': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:01:45.000Z'}}, {'blockNum': '0x8626c6', 'uniqueId': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292:log:3', 'hash': '0x10bb59a94b440113ce84b0d12bcbf7ba4bc633577aea4ec91066290a00157292', 'from': '0x9ae49c0d7f8f9ef4b864e004fe86ac8294e20950', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 13879.189554946568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x02f064729520461b645a', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:01:45.000Z'}}, {'blockNum': '0x8626c8', 'uniqueId': '0xc5ac8ab9a7177279f8a4246eb3cf49f3cfe818507d58072253c4332a47675190:log:3', 'hash': '0xc5ac8ab9a7177279f8a4246eb3cf49f3cfe818507d58072253c4332a47675190', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 139292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1d7f08d1bf5acef00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:02:06.000Z'}}, {'blockNum': '0x8626c8', 'uniqueId': '0xf28d82e799e210d86bf2decc9ad8d9a32bdc4edd3082a450a1a8410709c58e9c:log:4', 'hash': '0xf28d82e799e210d86bf2decc9ad8d9a32bdc4edd3082a450a1a8410709c58e9c', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'value': 47903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a24d3ab5b07511c0000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:02:06.000Z'}}, {'blockNum': '0x8626d4', 'uniqueId': '0x6054fa4d861823770e563413b9e5231653c4c53fd8a35beec32f1dd111473d83:log:2', 'hash': '0x6054fa4d861823770e563413b9e5231653c4c53fd8a35beec32f1dd111473d83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9a01f038be36b3d4dbf545251a591ab91ec28e33', 'value': 22101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x04ae18fd03e22c340000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:04:43.000Z'}}, {'blockNum': '0x8626e4', 'uniqueId': '0x6ff3b5cd015a5fe2a48ded2048fd14463e6f48a241b43ac5b66cd6f6fe09c1ee:log:0', 'hash': '0x6ff3b5cd015a5fe2a48ded2048fd14463e6f48a241b43ac5b66cd6f6fe09c1ee', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 504000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6ab9e50e1d8e4b000000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:09:05.000Z'}}, {'blockNum': '0x8626e5', 'uniqueId': '0x86465cb8a576f6aeddd8d6f1e8ba4ffe5c3e9cffc66ab10023696d8738d9bd42:log:0', 'hash': '0x86465cb8a576f6aeddd8d6f1e8ba4ffe5c3e9cffc66ab10023696d8738d9bd42', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 49460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a793b628db064500000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:09:21.000Z'}}, {'blockNum': '0x8626e5', 'uniqueId': '0xe98ee7d0c887ef17b2fb9b38d6bbfd7f402a7726cd6d20a61b255fc32159217b:log:28', 'hash': '0xe98ee7d0c887ef17b2fb9b38d6bbfd7f402a7726cd6d20a61b255fc32159217b', 'from': '0x9a01f038be36b3d4dbf545251a591ab91ec28e33', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 22101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x04ae18fd03e22c340000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:09:21.000Z'}}, {'blockNum': '0x8626f2', 'uniqueId': '0xf1ac0715c001748d367e86d134804b71c8c844a28bc935f53a03063dc73cdf4b:log:0', 'hash': '0xf1ac0715c001748d367e86d134804b71c8c844a28bc935f53a03063dc73cdf4b', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 506000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x6b2650a1791a08400000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:11:21.000Z'}}, {'blockNum': '0x8626f4', 'uniqueId': '0x3f82413140f5507b273553638c1d0eb97c59fcf99c62478103ecc1afecd607ee:log:123', 'hash': '0x3f82413140f5507b273553638c1d0eb97c59fcf99c62478103ecc1afecd607ee', 'from': '0xf7552a2fbac4bfd1710f052aa6a1f291d3899653', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1531.20195855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x5301b224a543265c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:12:04.000Z'}}, {'blockNum': '0x8626f4', 'uniqueId': '0xc7f7970ed9b9eb7d4153b9107c4a1a44ea49053c41a78e8e8955d13e698c5add:log:128', 'hash': '0xc7f7970ed9b9eb7d4153b9107c4a1a44ea49053c41a78e8e8955d13e698c5add', 'from': '0x6a00d1bd029db72ccca7d728f3e46defe7997d2c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a24d3ab5b07511c0000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:12:04.000Z'}}, {'blockNum': '0x86271f', 'uniqueId': '0x7434c34ebbacadf1f91098310d0a9a82f3cc42ec9b28ba3650a7aaeebb68408f:log:76', 'hash': '0x7434c34ebbacadf1f91098310d0a9a82f3cc42ec9b28ba3650a7aaeebb68408f', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1010000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd5e035af96a853400000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:22:00.000Z'}}, {'blockNum': '0x86271f', 'uniqueId': '0xc86f3ed017159d2fe2996b4214d53dbdb2afac43c2c8ed85685da9e7828d980b:log:77', 'hash': '0xc86f3ed017159d2fe2996b4214d53dbdb2afac43c2c8ed85685da9e7828d980b', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 139292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x1d7f08d1bf5acef00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:22:00.000Z'}}, {'blockNum': '0x86271f', 'uniqueId': '0x5049c7b0b2b2af9574626ba21f04be7fd952a4d54ab3ab96a052d01122507553:log:81', 'hash': '0x5049c7b0b2b2af9574626ba21f04be7fd952a4d54ab3ab96a052d01122507553', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49460, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x0a793b628db064500000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T18:22:00.000Z'}}, {'blockNum': '0x862c74', 'uniqueId': '0x1096fc9069e9c09b21787766fc38e0c10a64b5da57ea1d8a679f19198f83f821:log:5', 'hash': '0x1096fc9069e9c09b21787766fc38e0c10a64b5da57ea1d8a679f19198f83f821', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 221284.9541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x2edbe1a35803ff434000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:28:15.000Z'}}, {'blockNum': '0x862c92', 'uniqueId': '0xbe7163de5d14a23171f632f009351a3cb19e01b3322549afb7f67b36676eb406:log:7', 'hash': '0xbe7163de5d14a23171f632f009351a3cb19e01b3322549afb7f67b36676eb406', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4937e685e4581e9155e671658caf5c5ea9184192', 'value': 89912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x130a23a849ceb9e00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:34:39.000Z'}}, {'blockNum': '0x862cb8', 'uniqueId': '0x66390bc48df5ecfae489003b1303b49d143b7735f91732c6c9e7eb29bb7c420e:log:4', 'hash': '0x66390bc48df5ecfae489003b1303b49d143b7735f91732c6c9e7eb29bb7c420e', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 221284.9541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x2edbe1a35803ff434000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:43:31.000Z'}}, {'blockNum': '0x862cb8', 'uniqueId': '0x1748953625b6e8d7ee91e0294325ff1349c80ceec004f778c9843175782d2643:log:10', 'hash': '0x1748953625b6e8d7ee91e0294325ff1349c80ceec004f778c9843175782d2643', 'from': '0x4937e685e4581e9155e671658caf5c5ea9184192', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 89912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x130a23a849ceb9e00000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-22T23:43:31.000Z'}}, {'blockNum': '0x862d22', 'uniqueId': '0x3a56f306db8fcf3d0b553a1404316d251c2d08248e2f5e213073ef2dab0420bd:log:6', 'hash': '0x3a56f306db8fcf3d0b553a1404316d251c2d08248e2f5e213073ef2dab0420bd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 774450.27333875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xa3ff088fa4306ea16c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:05:58.000Z'}}, {'blockNum': '0x862d22', 'uniqueId': '0x198e4a0406fbfaa721cc1f8d5dbef504b543d9264db269e89e6d5253a56ff797:log:9', 'hash': '0x198e4a0406fbfaa721cc1f8d5dbef504b543d9264db269e89e6d5253a56ff797', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 238915.7473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x3297a60b837843d24000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:05:58.000Z'}}, {'blockNum': '0x862d29', 'uniqueId': '0x2c9dee7a50ac323adbbe645877231a845d15cac1c1dc0f495d47c003e70a7978:log:3', 'hash': '0x2c9dee7a50ac323adbbe645877231a845d15cac1c1dc0f495d47c003e70a7978', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1358975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x011fc62eafa5dd7a9c0000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:07:55.000Z'}}, {'blockNum': '0x862d2e', 'uniqueId': '0x781779db5b7fb324137a5cf6f6d53034193de2de437c3ecdcdafbb8b40eb8b78:log:2', 'hash': '0x781779db5b7fb324137a5cf6f6d53034193de2de437c3ecdcdafbb8b40eb8b78', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'value': 1000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c261325e6fe5f40000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:09:12.000Z'}}, {'blockNum': '0x862d5b', 'uniqueId': '0x3289f871c73957cba879fc98fe53a754420033769aea8ac8c68568c0ed305dce:log:5', 'hash': '0x3289f871c73957cba879fc98fe53a754420033769aea8ac8c68568c0ed305dce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 1000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c261325e6fe5f40000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:19:10.000Z'}}, {'blockNum': '0x862d83', 'uniqueId': '0xa8136deb40bddb48b3db09b2d11d4b11d1503d5aab4acb55a6c333d6f1789c3b:log:13', 'hash': '0xa8136deb40bddb48b3db09b2d11d4b11d1503d5aab4acb55a6c333d6f1789c3b', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 774450.27333875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xa3ff088fa4306ea16c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:29:06.000Z'}}, {'blockNum': '0x862d83', 'uniqueId': '0xea4cf1c6f61c414be6f5e41272f77324d1a1eaaca1b724dc11809eac263fa614:log:15', 'hash': '0xea4cf1c6f61c414be6f5e41272f77324d1a1eaaca1b724dc11809eac263fa614', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 238915.7473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x3297a60b837843d24000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:29:06.000Z'}}, {'blockNum': '0x862d83', 'uniqueId': '0x1863cc30c56db14946dbff39888f770f8538fdc6d6379685318299ef623c17aa:log:19', 'hash': '0x1863cc30c56db14946dbff39888f770f8538fdc6d6379685318299ef623c17aa', 'from': '0xd536df7c06e93553584a97fcd88d98d251e82a39', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1000005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c261325e6fe5f40000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:29:06.000Z'}}, {'blockNum': '0x862de9', 'uniqueId': '0xd27a2e07b96f47a0686bff22c53240c4f112ebd6bce61ab348bf2aedb7ceb510:log:3', 'hash': '0xd27a2e07b96f47a0686bff22c53240c4f112ebd6bce61ab348bf2aedb7ceb510', 'from': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 153042.3218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x206870de1820a4c08000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T00:50:15.000Z'}}, {'blockNum': '0x862e18', 'uniqueId': '0xdeeccefcc84814b2cd0aa911fc9fb076cfdbe580504d904f4c8a9ad162ff7a7c:log:94', 'hash': '0xdeeccefcc84814b2cd0aa911fc9fb076cfdbe580504d904f4c8a9ad162ff7a7c', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 153042.3218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x206870de1820a4c08000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T01:02:14.000Z'}}, {'blockNum': '0x8630c0', 'uniqueId': '0x73ca417b71f70d161be3f10d474fca4b88c02145533ce178957753e202997b1f:log:2', 'hash': '0x73ca417b71f70d161be3f10d474fca4b88c02145533ce178957753e202997b1f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'value': 1000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c25351a7bc3e900000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:29:23.000Z'}}, {'blockNum': '0x8630eb', 'uniqueId': '0xb1c224ab48f869605cf32b71775479a92b8c162a1c7eeeba53031713d3f323f5:log:59', 'hash': '0xb1c224ab48f869605cf32b71775479a92b8c162a1c7eeeba53031713d3f323f5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 1484376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x013a542f27aee462600000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:37:03.000Z'}}, {'blockNum': '0x86310c', 'uniqueId': '0xccc1a9b5a303790c44d6269388e3d385c856f9957edad8d3839fca0711f0d5af:log:0', 'hash': '0xccc1a9b5a303790c44d6269388e3d385c856f9957edad8d3839fca0711f0d5af', 'from': '0xd7f92849379c81470b46183ffa265f7b77f0557f', 'to': '0xba826fec90cefdf6706858e5fbafcb27a290fbe0', 'value': 1000004, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xd3c25351a7bc3e900000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:43:37.000Z'}}, {'blockNum': '0x863143', 'uniqueId': '0x9828ab8a4be0bd2acb814938023f0cd6d0d7e6233a48828d5866b56731b51415:log:14', 'hash': '0x9828ab8a4be0bd2acb814938023f0cd6d0d7e6233a48828d5866b56731b51415', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 776113.00005859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0xa4592b879a6144472c00', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:54:11.000Z'}}, {'blockNum': '0x863143', 'uniqueId': '0x483a1ffca1057b1fba15a05281d8d4a86147f5b0281b7bc504b353310223b5b1:log:15', 'hash': '0x483a1ffca1057b1fba15a05281d8d4a86147f5b0281b7bc504b353310223b5b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 152953.3218, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OST', 'category': 'erc20', 'rawContract': {'value': '0x20639dbe93ab72fc8000', 'address': '0x2c4e8f2d746113d0696ce89b35f0d8bf88e0aeca', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-10-23T03:54:11.000Z'}}]}}
Number of returned transfers:  48
Answer is complete
 
symbol             ONG
group              CPI
date        2019-10-29
hour             18:00
exchange       binance
Name: 1050, dtype: object
HERE
{'ontology': ''}
No contract for ethereum specified
 Symbol: ONG, Contract: 
Datetime timestamps:  2019-10-29 18:00:00 2019-10-29 06:00:00 2019-10-30 06:00:00
Unix timestamps:  1572325200.0 1572411600.0
Hex Block Numbers:  0x86c45c 0x86dcc4
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            NEBL
group              CPI
date        2019-11-05
hour             16:00
exchange       binance
Name: 1051, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NEBL, Contract: 
Datetime timestamps:  2019-11-05 16:00:00 2019-11-05 04:00:00 2019-11-06 04:00:00
Unix timestamps:  1572922800.0 1573009200.0
Hex Block Numbers:  0x876c5c 0x8784db
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             BCD
group              CPI
date        2019-11-11
hour             17:00
exchange       binance
Name: 1052, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: BCD, Contract: 
Datetime timestamps:  2019-11-11 17:00:00 2019-11-11 05:00:00 2019-11-12 05:00:00
Unix timestamps:  1573444800.0 1573531200.0
Hex Block Numbers:  0x87fd6b 0x8814fc
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EDO
group              CPI
date        2019-11-21
hour             18:00
exchange       binance
Name: 1053, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2019-11-21 18:00:00 2019-11-21 06:00:00 2019-11-22 06:00:00
Unix timestamps:  1574312400.0 1574398800.0
Hex Block Numbers:  0x88e8e5 0x890068
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NAV
group              CPI
date        2019-12-19
hour             17:00
exchange       binance
Name: 1054, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2019-12-19 17:00:00 2019-12-19 05:00:00 2019-12-20 05:00:00
Unix timestamps:  1576728000.0 1576814400.0
Hex Block Numbers:  0x8b4b8c 0x8b5f22
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EDO
group              CPI
date        2020-01-08
hour             17:05
exchange       binance
Name: 1055, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2020-01-08 17:05:00 2020-01-08 05:05:00 2020-01-09 05:05:00
Unix timestamps:  1578456300.0 1578542700.0
Hex Block Numbers:  0x8cf4e8 0x8d0e3a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             ONG
group              CPI
date        2020-01-09
hour             17:00
exchange       binance
Name: 1056, dtype: object
HERE
{'ontology': ''}
No contract for ethereum specified
 Symbol: ONG, Contract: 
Datetime timestamps:  2020-01-09 17:00:00 2020-01-09 05:00:00 2020-01-10 05:00:00
Unix timestamps:  1578542400.0 1578628800.0
Hex Block Numbers:  0x8d0e29 0x8d27ac
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GNT
group              CPI
date        2020-01-10
hour             18:00
exchange       binance
Name: 1057, dtype: object
HERE
{'binance-smart-chain': '0xf750a26eb0acf95556e8529e72ed530f3b60f348'}
No contract for ethereum specified
 Symbol: GNT, Contract: 
Datetime timestamps:  2020-01-10 18:00:00 2020-01-10 06:00:00 2020-01-11 06:00:00
Unix timestamps:  1578632400.0 1578718800.0
Hex Block Numbers:  0x8d28c9 0x8d425d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            NULS
group              CPI
date        2020-01-30
hour             17:00
exchange       binance
Name: 1058, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NULS, Contract: 
Datetime timestamps:  2020-01-30 17:00:00 2020-01-30 05:00:00 2020-01-31 05:00:00
Unix timestamps:  1580356800.0 1580443200.0
Hex Block Numbers:  0x8f259e 0x8f3eca
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             SYS
group              CPI
date        2020-02-26
hour             18:00
exchange       binance
Name: 1059, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SYS, Contract: 
Datetime timestamps:  2020-02-26 18:00:00 2020-02-26 06:00:00 2020-02-27 06:00:00
Unix timestamps:  1582693200.0 1582779600.0
Hex Block Numbers:  0x91d46d 0x91edec
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             QLC
group              CPI
date        2020-03-12
hour             16:00
exchange       binance
Name: 1060, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: QLC, Contract: 
Datetime timestamps:  2020-03-12 16:00:00 2020-03-12 04:00:00 2020-03-13 04:00:00
Unix timestamps:  1583982000.0 1584068400.0
Hex Block Numbers:  0x934fc8 0x9368d5
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             TCT
group              CPI
date        2020-03-13
hour             16:00
exchange       binance
Name: 1061, dtype: object
HERE
 Symbol: TCT, Contract: 0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7
Datetime timestamps:  2020-03-13 16:00:00 2020-03-13 04:00:00 2020-03-14 04:00:00
Unix timestamps:  1584068400.0 1584154800.0
Hex Block Numbers:  0x9368d5 0x9381cc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9368ef', 'uniqueId': '0x59dac6608f99535c3214160a0b41677891bc2ed0da147693807f18c897ecd3c5:log:96', 'hash': '0x59dac6608f99535c3214160a0b41677891bc2ed0da147693807f18c897ecd3c5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 168547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x23b0f3806bb8c3ac0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:04:04.000Z'}}, {'blockNum': '0x93693a', 'uniqueId': '0xcccc1af92efeee8639af095e4cf846206d860378348d3019255eb88be385f741:log:159', 'hash': '0xcccc1af92efeee8639af095e4cf846206d860378348d3019255eb88be385f741', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2090c509a5ae6392f4f3e5802ede2108b72ad8c3', 'value': 17621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x03bb3c7fbbf0d6340000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:19:26.000Z'}}, {'blockNum': '0x9369c0', 'uniqueId': '0x845297bd8a57016fdfee7b2947afd9e7f44c728aafb24bf9c6d5964764866c83:log:66', 'hash': '0x845297bd8a57016fdfee7b2947afd9e7f44c728aafb24bf9c6d5964764866c83', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2090c509a5ae6392f4f3e5802ede2108b72ad8c3', 'value': 17537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x03b6aec3c8fde9640000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:49:23.000Z'}}, {'blockNum': '0x936a4f', 'uniqueId': '0x26b7a71b595054f9a4030b79fecb3061240e87611c132ce78e2243b6d3d0bd1f:log:104', 'hash': '0x26b7a71b595054f9a4030b79fecb3061240e87611c132ce78e2243b6d3d0bd1f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xd054a924b55b9559a70ecc11bf46d861b39c1da3', 'value': 19027.560384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x04077c720ce9973c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T04:22:42.000Z'}}, {'blockNum': '0x936a52', 'uniqueId': '0x59f1a2b3995f4550fad9aefc3ac175f890a880464cfcd8b5204a7643b5ecae4d:log:29', 'hash': '0x59f1a2b3995f4550fad9aefc3ac175f890a880464cfcd8b5204a7643b5ecae4d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'value': 174529.899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x24f548e78976db778000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T04:23:36.000Z'}}, {'blockNum': '0x936a7a', 'uniqueId': '0x531746322e44e5a00ab5d403113ba34e08bd7a082c7da9dc41316e3d63922413:log:125', 'hash': '0x531746322e44e5a00ab5d403113ba34e08bd7a082c7da9dc41316e3d63922413', 'from': '0xd054a924b55b9559a70ecc11bf46d861b39c1da3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19027.560384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x04077c720ce9973c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T04:31:42.000Z'}}, {'blockNum': '0x936ab7', 'uniqueId': '0xd9d5b6fd570616b26cd5f0e89851cf2c8f8b0e3587ce532030a06d661af4cc56:log:56', 'hash': '0xd9d5b6fd570616b26cd5f0e89851cf2c8f8b0e3587ce532030a06d661af4cc56', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 177479, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x259527e6fff520bc0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T04:44:16.000Z'}}, {'blockNum': '0x936afe', 'uniqueId': '0x127ac0b324006c1e3c8696ccc5b0af7847b4e332ee260fd5e051e34e36e899fd:log:52', 'hash': '0x127ac0b324006c1e3c8696ccc5b0af7847b4e332ee260fd5e051e34e36e899fd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 154760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x20c58e70ee60dd200000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:00:49.000Z'}}, {'blockNum': '0x936b67', 'uniqueId': '0x0f000750ab5a76d49a88f16d0407a3351f653bda981e7a1b48e5fadd8783a3e0:log:196', 'hash': '0x0f000750ab5a76d49a88f16d0407a3351f653bda981e7a1b48e5fadd8783a3e0', 'from': '0x1c74df129d35aed82c1426b8b7258dd4a8e47d57', 'to': '0x8a0a5ef7a891135999388037c1f0f1ccb62805a7', 'value': 1900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x66ffcbfd5e5a300000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:26:12.000Z'}}, {'blockNum': '0x936bab', 'uniqueId': '0x79d7d3c267d8da44f221280f77c533fec280b58e7f85e2bcac19be840741cf3d:log:13', 'hash': '0x79d7d3c267d8da44f221280f77c533fec280b58e7f85e2bcac19be840741cf3d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36758d1e695b6da985b72decb0ad11eb86219911', 'value': 38809.95066666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0837e4429b655fdf6800', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:39:55.000Z'}}, {'blockNum': '0x936bd2', 'uniqueId': '0x1742b89871a36c1fab6581849406422a0b28673358e9bdbdab3715f2e412ea55:log:69', 'hash': '0x1742b89871a36c1fab6581849406422a0b28673358e9bdbdab3715f2e412ea55', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 174219.024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x24e46ea5ac0cf5e80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:47:22.000Z'}}, {'blockNum': '0x936c27', 'uniqueId': '0xeb479c54b41fb193e2e435b606fd27566532e5585677fc10a6b609100befc023:log:200', 'hash': '0xeb479c54b41fb193e2e435b606fd27566532e5585677fc10a6b609100befc023', 'from': '0x8a0a5ef7a891135999388037c1f0f1ccb62805a7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x66ffcbfd5e5a300000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T06:05:01.000Z'}}, {'blockNum': '0x936c53', 'uniqueId': '0x82866f23499621d1740ab70bb3a119c26f01345b445954591b09d355bb299dd2:log:105', 'hash': '0x82866f23499621d1740ab70bb3a119c26f01345b445954591b09d355bb299dd2', 'from': '0x2e4e31cc232ebe60980f2c6add3a5350ce1bfc0a', 'to': '0x9c602d7aea699ff8ed56e5e139d080b22bff3f7b', 'value': 118295.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x190ccceeebb12ad90000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T06:14:33.000Z'}}, {'blockNum': '0x936c53', 'uniqueId': '0xe22f04033ee5666bf4e0853a22d61465fcf99552afe9ca7647e7026ea875147a:log:106', 'hash': '0xe22f04033ee5666bf4e0853a22d61465fcf99552afe9ca7647e7026ea875147a', 'from': '0x2e4e31cc232ebe60980f2c6add3a5350ce1bfc0a', 'to': '0x33c1f25761fbafd52b14f7d59ecc202e62572fa1', 'value': 113002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x17edd9c721be93680000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T06:14:33.000Z'}}, {'blockNum': '0x936cb3', 'uniqueId': '0xa93b834cd52a2a90e01a645159ea26e0f8f7b0449936efdf94b8374d4bf57a5e:log:12', 'hash': '0xa93b834cd52a2a90e01a645159ea26e0f8f7b0449936efdf94b8374d4bf57a5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8f32e629118e01adeadac6adb4415728599a70da', 'value': 41118.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x08b50a3bfbb0f2ad0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T06:38:41.000Z'}}, {'blockNum': '0x936d0b', 'uniqueId': '0x93a3b0f2097eeae0fd61ded2d3e4963767322a59cec1bc0be2b07f15b9b57f52:log:34', 'hash': '0x93a3b0f2097eeae0fd61ded2d3e4963767322a59cec1bc0be2b07f15b9b57f52', 'from': '0x33c1f25761fbafd52b14f7d59ecc202e62572fa1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113002, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x17edd9c721be93680000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:00:05.000Z'}}, {'blockNum': '0x936d39', 'uniqueId': '0x6d6131158312878b466b0afbcefa94943c9fe5c5aa5a58765194ff8d661e0617:log:39', 'hash': '0x6d6131158312878b466b0afbcefa94943c9fe5c5aa5a58765194ff8d661e0617', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd4da9193c00e9f5e4d184a08292d2ea417d9bdcb', 'value': 429470, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x5af19d87a26b63b80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:10:11.000Z'}}, {'blockNum': '0x936e90', 'uniqueId': '0xb755850f9d2a7c83ec0ba9b54afc2f68717225007ff72b51dc04929f646b2917:log:178', 'hash': '0xb755850f9d2a7c83ec0ba9b54afc2f68717225007ff72b51dc04929f646b2917', 'from': '0x2e4e31cc232ebe60980f2c6add3a5350ce1bfc0a', 'to': '0x9c46fc234ea1e58ca7096809561af4e66cb39c92', 'value': 234071.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x31911121a48d431d0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T08:29:30.000Z'}}, {'blockNum': '0x936f9e', 'uniqueId': '0x3ac212d4825f82986c5843e1ae512fdc4cea4ec6edd20ab5169bd9d15fd50581:log:41', 'hash': '0x3ac212d4825f82986c5843e1ae512fdc4cea4ec6edd20ab5169bd9d15fd50581', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xfab2fa2256210782a02e4dc89075f2ac0371eaca', 'value': 31674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x06b50d0d0ff4aaa80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:31:22.000Z'}}, {'blockNum': '0x936fbc', 'uniqueId': '0x282a0c10a76a82fc2a4de072237672e4235cd21cc3a7aa1054c41cedbefcb89a:log:163', 'hash': '0x282a0c10a76a82fc2a4de072237672e4235cd21cc3a7aa1054c41cedbefcb89a', 'from': '0x2e4e31cc232ebe60980f2c6add3a5350ce1bfc0a', 'to': '0x2f89abaf64cbfb7abd97d4f2c0e7af9834df5716', 'value': 12440, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x02a25fae2a0e23600000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:37:24.000Z'}}, {'blockNum': '0x936fd5', 'uniqueId': '0x473e4a5c9ce473a4d6ebca48948ba2c27490c3c137ee3f7a63c6c02aa2992a01:log:135', 'hash': '0x473e4a5c9ce473a4d6ebca48948ba2c27490c3c137ee3f7a63c6c02aa2992a01', 'from': '0xfab2fa2256210782a02e4dc89075f2ac0371eaca', 'to': '0xb9ee1e551f538a464e8f8c41e9904498505b49b0', 'value': 31674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x06b50d0d0ff4aaa80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:42:49.000Z'}}, {'blockNum': '0x937040', 'uniqueId': '0xdb341adf8ce72504b728964986310433d313d76de7ceeb71f5b155b252f22ca3:log:87', 'hash': '0xdb341adf8ce72504b728964986310433d313d76de7ceeb71f5b155b252f22ca3', 'from': '0x2e4e31cc232ebe60980f2c6add3a5350ce1bfc0a', 'to': '0x642c6fad23fe40656d30ef6fc2a9a0a94a34471c', 'value': 47900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0a24aa0936ec5af00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T10:07:34.000Z'}}, {'blockNum': '0x937048', 'uniqueId': '0xce2e44e65c2368f06dc310476625d20b1c463bd928c8b5479ea94416cdc6bdae:log:26', 'hash': '0xce2e44e65c2368f06dc310476625d20b1c463bd928c8b5479ea94416cdc6bdae', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 253704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x35b952472a9957200000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T10:09:44.000Z'}}, {'blockNum': '0x937097', 'uniqueId': '0xad6060308fead4754a721c544969d8b119ef0fbd289b68f7f10a4ca7f26c9bad:log:29', 'hash': '0xad6060308fead4754a721c544969d8b119ef0fbd289b68f7f10a4ca7f26c9bad', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x78954034a9ae562269d8c8831017aa29743a25df', 'value': 7780, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x01a5c1306bcb1b100000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T10:30:42.000Z'}}, {'blockNum': '0x9370a0', 'uniqueId': '0x07f7cc810039e45ef414b9eaadca6fe41c9c909a5c35d25301562e6418a4e63d:log:194', 'hash': '0x07f7cc810039e45ef414b9eaadca6fe41c9c909a5c35d25301562e6418a4e63d', 'from': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 591840, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x7d53b5efa94a33800000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T10:32:07.000Z'}}, {'blockNum': '0x9370cb', 'uniqueId': '0xe68fc96c6aba78d5915fc4f39d624373e214ca26315c55c0b0d55f3ea75aecf6:log:176', 'hash': '0xe68fc96c6aba78d5915fc4f39d624373e214ca26315c55c0b0d55f3ea75aecf6', 'from': '0x78954034a9ae562269d8c8831017aa29743a25df', 'to': '0x84ea0f3c72c2563ff324557778099fed65e9efaf', 'value': 7780, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x01a5c1306bcb1b100000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T10:40:54.000Z'}}, {'blockNum': '0x9373a6', 'uniqueId': '0xa10fe1473fc240ab2aac9e7165f48f7d80037ab7ad0262e654c6c40a16b03c50:log:126', 'hash': '0xa10fe1473fc240ab2aac9e7165f48f7d80037ab7ad0262e654c6c40a16b03c50', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 77807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1079ed0934d8a25c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T13:30:47.000Z'}}, {'blockNum': '0x9373e5', 'uniqueId': '0xecc1384c3b0e7da4dd9c2e401d6c4488c1518fa709e94814c7c4bf536ef00ba4:log:28', 'hash': '0xecc1384c3b0e7da4dd9c2e401d6c4488c1518fa709e94814c7c4bf536ef00ba4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x78954034a9ae562269d8c8831017aa29743a25df', 'value': 9989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x021d8138f00280f40000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T13:44:57.000Z'}}, {'blockNum': '0x937520', 'uniqueId': '0xef3ab7faf0e0890315c8da2d52afa2c17cb7c60b5d0e5f1e122b679761700574:log:77', 'hash': '0xef3ab7faf0e0890315c8da2d52afa2c17cb7c60b5d0e5f1e122b679761700574', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 133786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x1c548db83b649a280000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T14:55:12.000Z'}}, {'blockNum': '0x937649', 'uniqueId': '0x5c4f2db460f2671498772a6793d1c185a2ec1b26e5d2a3076e9496fce6eb12e9:log:23', 'hash': '0x5c4f2db460f2671498772a6793d1c185a2ec1b26e5d2a3076e9496fce6eb12e9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb032fefc4c734e31156fdc410980357785f9ccdf', 'value': 170499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x241ac4f185951e2c0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:02:43.000Z'}}, {'blockNum': '0x9376eb', 'uniqueId': '0x9438eeb6d161a119f757ad1028f5c76830cf02121e16b53f7582a5268ed4bf8b:log:155', 'hash': '0x9438eeb6d161a119f757ad1028f5c76830cf02121e16b53f7582a5268ed4bf8b', 'from': '0x625ab88e827c4b86f64593a28d6e258ec5c884ae', 'to': '0x84ea0f3c72c2563ff324557778099fed65e9efaf', 'value': 4400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0xee86442fcd06c00000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:36:12.000Z'}}, {'blockNum': '0x9376eb', 'uniqueId': '0x4bc5da3b19be3317503130eff76f33e5708b6a4e888fb5e7e18ed72504e7b099:log:156', 'hash': '0x4bc5da3b19be3317503130eff76f33e5708b6a4e888fb5e7e18ed72504e7b099', 'from': '0x36758d1e695b6da985b72decb0ad11eb86219911', 'to': '0x84ea0f3c72c2563ff324557778099fed65e9efaf', 'value': 38809.95066666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0837e4429b655fdf6800', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:36:12.000Z'}}, {'blockNum': '0x9376eb', 'uniqueId': '0x9b6f4f4a005c3910b8cd04ca54caa8590d305a0e7079a91993f5b55e54c1ea51:log:157', 'hash': '0x9b6f4f4a005c3910b8cd04ca54caa8590d305a0e7079a91993f5b55e54c1ea51', 'from': '0x78954034a9ae562269d8c8831017aa29743a25df', 'to': '0x84ea0f3c72c2563ff324557778099fed65e9efaf', 'value': 9989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x021d8138f00280f40000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:36:12.000Z'}}, {'blockNum': '0x9376eb', 'uniqueId': '0x309b90aefb0db3ed6fefc0e8a2d1e082c3fd93d460e7d511f1a71603afbceae5:log:162', 'hash': '0x309b90aefb0db3ed6fefc0e8a2d1e082c3fd93d460e7d511f1a71603afbceae5', 'from': '0x8480203811e82e8d0efd940a3265d136f8ca462a', 'to': '0x84ea0f3c72c2563ff324557778099fed65e9efaf', 'value': 4980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x010df7621ed445500000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:36:12.000Z'}}, {'blockNum': '0x9376eb', 'uniqueId': '0x2cc3e00926e3a6b9bcedbc2b8e85dbda1e0598ac5db8dfa0f109d8b6c3676048:log:165', 'hash': '0x2cc3e00926e3a6b9bcedbc2b8e85dbda1e0598ac5db8dfa0f109d8b6c3676048', 'from': '0x1aa67d2de0fe6c3689b1e9855071da83f6400d78', 'to': '0x84ea0f3c72c2563ff324557778099fed65e9efaf', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:36:12.000Z'}}, {'blockNum': '0x937960', 'uniqueId': '0x82859afd8332d7a7101e29dafeb3251b873c5102b0f144293142719268e640ec:log:105', 'hash': '0x82859afd8332d7a7101e29dafeb3251b873c5102b0f144293142719268e640ec', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 174219.024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x24e46ea5ac0cf5e80000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:00:05.000Z'}}, {'blockNum': '0x937f06', 'uniqueId': '0xb46713643f3804b2e0cde089d83d1642e8ee7033f4e50618e360b1fdec1712b0:log:132', 'hash': '0xb46713643f3804b2e0cde089d83d1642e8ee7033f4e50618e360b1fdec1712b0', 'from': '0x2090c509a5ae6392f4f3e5802ede2108b72ad8c3', 'to': '0xd4dcd2459bb78d7a645aa7e196857d421b10d93f', 'value': 9137.71, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x01ef5b334f5666ab0000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T00:20:24.000Z'}}, {'blockNum': '0x937f0a', 'uniqueId': '0x041151f153e4f8cd87da63e5010fb938ee5382bc584c6dbb2a09c31e102e48d2:log:58', 'hash': '0x041151f153e4f8cd87da63e5010fb938ee5382bc584c6dbb2a09c31e102e48d2', 'from': '0x2090c509a5ae6392f4f3e5802ede2108b72ad8c3', 'to': '0xd4dcd2459bb78d7a645aa7e196857d421b10d93f', 'value': 17621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x03bb3c7fbbf0d6340000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T00:21:07.000Z'}}, {'blockNum': '0x937f0e', 'uniqueId': '0x4d0b036ec635eac6bc19fc93b4289bb58b0e7cbc83ae9b9d0f4891a41915244c:log:22', 'hash': '0x4d0b036ec635eac6bc19fc93b4289bb58b0e7cbc83ae9b9d0f4891a41915244c', 'from': '0x2090c509a5ae6392f4f3e5802ede2108b72ad8c3', 'to': '0xd4dcd2459bb78d7a645aa7e196857d421b10d93f', 'value': 5192.121, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x011977274c76c5f28000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T00:21:40.000Z'}}, {'blockNum': '0x937f0f', 'uniqueId': '0xcc71d7afd196162adc3dddb551f9ef83169d77c36d407cec4fe74187f5dee5a4:log:20', 'hash': '0xcc71d7afd196162adc3dddb551f9ef83169d77c36d407cec4fe74187f5dee5a4', 'from': '0x2090c509a5ae6392f4f3e5802ede2108b72ad8c3', 'to': '0xd4dcd2459bb78d7a645aa7e196857d421b10d93f', 'value': 6612.533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0166775470cc74188000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T00:21:52.000Z'}}, {'blockNum': '0x937f0f', 'uniqueId': '0x693790ca8ac879a2e9251fae4ade96b66bf8ea2bf56f186c062c9dac8fe349ef:log:21', 'hash': '0x693790ca8ac879a2e9251fae4ade96b66bf8ea2bf56f186c062c9dac8fe349ef', 'from': '0x2090c509a5ae6392f4f3e5802ede2108b72ad8c3', 'to': '0xd4dcd2459bb78d7a645aa7e196857d421b10d93f', 'value': 17537, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x03b6aec3c8fde9640000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T00:21:52.000Z'}}, {'blockNum': '0x938137', 'uniqueId': '0xbe34dd360e536e946d5ba58ee981c85702a00b7f1aecfbeef764550cd3a77d74:log:96', 'hash': '0xbe34dd360e536e946d5ba58ee981c85702a00b7f1aecfbeef764550cd3a77d74', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x45ca10446ebe74fca3257c70514c7389e68fdb55', 'value': 33661, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'TCT', 'category': 'erc20', 'rawContract': {'value': '0x0720c4372460e7d40000', 'address': '0x4824a7b64e3966b0133f4f4ffb1b9d6beb75fff7', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T02:28:15.000Z'}}]}}
Number of returned transfers:  42
Answer is complete
 
symbol             OAX
group              CPI
date        2020-03-24
hour             15:58
exchange       binance
Name: 1062, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-03-24 15:58:00 2020-03-24 03:58:00 2020-03-25 03:58:00
Unix timestamps:  1585018680.0 1585105080.0
Hex Block Numbers:  0x947e45 0x9496f2
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9487dd', 'uniqueId': '0x221b8863ebf33ef4620d2a4daec555f4cbc6a438ffe62ee785351231c9cbfda3:log:93', 'hash': '0x221b8863ebf33ef4620d2a4daec555f4cbc6a438ffe62ee785351231c9cbfda3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9549a90b81b430ac1c125dec1e35026a4fddc708', 'value': 1853.651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x647c93436fa39b8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T12:15:43.000Z'}}, {'blockNum': '0x948f79', 'uniqueId': '0x4361da98845b81de78e314df1b52fd187a7943d3a6884e9e085cb3e4592711c7:log:17', 'hash': '0x4361da98845b81de78e314df1b52fd187a7943d3a6884e9e085cb3e4592711c7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1018.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x373c13f7a2ed820000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:52:51.000Z'}}]}}
Number of returned transfers:  2
Answer is complete
 
symbol             EDO
group              CPI
date        2020-03-26
hour             15:59
exchange       binance
Name: 1063, dtype: object
HERE
 Symbol: EDO, Contract: 
Datetime timestamps:  2020-03-26 15:59:00 2020-03-26 03:59:00 2020-03-27 03:59:00
Unix timestamps:  1585191540.0 1585277940.0
Hex Block Numbers:  0x94aff5 0x94c96b
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GRS
group              CPI
date        2020-04-02
hour             16:00
exchange       binance
Name: 1064, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: GRS, Contract: 
Datetime timestamps:  2020-04-02 16:00:00 2020-04-02 04:00:00 2020-04-03 04:00:00
Unix timestamps:  1585792800.0 1585879200.0
Hex Block Numbers:  0x9560fc 0x957a48
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GNT
group              CPI
date        2020-04-10
hour             16:00
exchange       binance
Name: 1065, dtype: object
HERE
{'binance-smart-chain': '0xf750a26eb0acf95556e8529e72ed530f3b60f348'}
No contract for ethereum specified
 Symbol: GNT, Contract: 
Datetime timestamps:  2020-04-10 16:00:00 2020-04-10 04:00:00 2020-04-11 04:00:00
Unix timestamps:  1586484000.0 1586570400.0
Hex Block Numbers:  0x962c29 0x96454f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            VITE
group              CPI
date        2020-04-13
hour             11:59
exchange       binance
Name: 1066, dtype: object
HERE
 Symbol: VITE, Contract: 0xadd5e881984783dd432f80381fb52f45b53f3e70
Datetime timestamps:  2020-04-13 11:59:00 2020-04-12 23:59:00 2020-04-13 23:59:00
Unix timestamps:  1586728740.0 1586815140.0
Hex Block Numbers:  0x967406 0x968d6a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            MITH
group              CPI
date        2020-04-14
hour             16:00
exchange       binance
Name: 1067, dtype: object
HERE
 Symbol: MITH, Contract: 0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb
Datetime timestamps:  2020-04-14 16:00:00 2020-04-14 04:00:00 2020-04-15 04:00:00
Unix timestamps:  1586829600.0 1586916000.0
Hex Block Numbers:  0x9691b2 0x96ab19
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x969818', 'uniqueId': '0x1e12e2b4b2d3dc9c52ac5ca185b9ae7476629e28ab93f76e4e4c7ad5f0b644f5:log:26', 'hash': '0x1e12e2b4b2d3dc9c52ac5ca185b9ae7476629e28ab93f76e4e4c7ad5f0b644f5', 'from': '0x28c9ebbf537233efaf00e7e4f9b1dde2b239e288', 'to': '0x9fb5d397de4f3520491871aa7d92ee89f995b69a', 'value': 147824.955, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x1f4d9b5bb252503f8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T08:03:57.000Z'}}, {'blockNum': '0x969ce7', 'uniqueId': '0x80fac519c5db6ea057776865bf78d932ebbcf2d4de4f6b8e8f29f2492efc6e75:log:4', 'hash': '0x80fac519c5db6ea057776865bf78d932ebbcf2d4de4f6b8e8f29f2492efc6e75', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 47300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0a04235d01dc08900000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:26:34.000Z'}}, {'blockNum': '0x969cf1', 'uniqueId': '0x67a3986782b31f57b9c7a3f3ce7f48c1552ea42bb39ca57431eb3886edd119dc:log:12', 'hash': '0x67a3986782b31f57b9c7a3f3ce7f48c1552ea42bb39ca57431eb3886edd119dc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 29900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0654e1daff02b3b00000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:27:54.000Z'}}, {'blockNum': '0x969d05', 'uniqueId': '0xfffa8100b36cef14f3340ee420a8fa53361061765913c3e2707a1692eb959704:log:15', 'hash': '0xfffa8100b36cef14f3340ee420a8fa53361061765913c3e2707a1692eb959704', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xbe84eac3f62657f54f1da954c0ca5b30ee44546b', 'value': 103560.634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x15ee0880ff3ed0b90000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:30:59.000Z'}}, {'blockNum': '0x969d06', 'uniqueId': '0x5202e102dc27872f09145e299ea759b31e207b9795f6df3ed7c96b6603d7f02f:log:5', 'hash': '0x5202e102dc27872f09145e299ea759b31e207b9795f6df3ed7c96b6603d7f02f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 32148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x06cebf1f589899d00000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:31:37.000Z'}}, {'blockNum': '0x969d09', 'uniqueId': '0xc7f3ea0e88659360b6ab0fa13421b7c95bdd8533837d4769c16b275ca21ddbd8:log:34', 'hash': '0xc7f3ea0e88659360b6ab0fa13421b7c95bdd8533837d4769c16b275ca21ddbd8', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 28806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0619938e3b455e580000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:32:28.000Z'}}, {'blockNum': '0x969d16', 'uniqueId': '0xe2d2664957f870c7514680ccc352a0534db37358dc871d883dca939c2689df3d:log:8', 'hash': '0xe2d2664957f870c7514680ccc352a0534db37358dc871d883dca939c2689df3d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xebf1e5c83f0ac80b4fea79c4ab8c33ea5b48febf', 'value': 359572.166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x4c247238aa040e870000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:35:41.000Z'}}, {'blockNum': '0x969d1b', 'uniqueId': '0x25bca96c22824147ce19662c577fb67e7c2ef782206fc24873d27fdcfc8e3e39:log:109', 'hash': '0x25bca96c22824147ce19662c577fb67e7c2ef782206fc24873d27fdcfc8e3e39', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 111111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x178756e190b11bbc0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:36:45.000Z'}}, {'blockNum': '0x969d21', 'uniqueId': '0xa4d2cf5697982680a821dfdb71f7d384d39db6c16e32afcc149835f626bb9584:log:9', 'hash': '0xa4d2cf5697982680a821dfdb71f7d384d39db6c16e32afcc149835f626bb9584', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 74226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0fb7ccad85cc20880000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:38:04.000Z'}}, {'blockNum': '0x969d22', 'uniqueId': '0xdbe48675a1b9a88e5961438b09d4a454ec0e7b3be2ca44ae7f9a239fb3995c2f:log:11', 'hash': '0xdbe48675a1b9a88e5961438b09d4a454ec0e7b3be2ca44ae7f9a239fb3995c2f', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 31861, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x06bf3032852ff0b40000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:38:26.000Z'}}, {'blockNum': '0x969d28', 'uniqueId': '0x1c75665768fcf8536dc6c6a100a80df2cafe5b0e2d5704d3d60420aca07bd06f:log:79', 'hash': '0x1c75665768fcf8536dc6c6a100a80df2cafe5b0e2d5704d3d60420aca07bd06f', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x06cebf1f589899d00000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:39:35.000Z'}}, {'blockNum': '0x969d2e', 'uniqueId': '0x48794ebe13d6fedb8b6d3c3722e133b04b70cbb8ba08cde0168f088191163510:log:44', 'hash': '0x48794ebe13d6fedb8b6d3c3722e133b04b70cbb8ba08cde0168f088191163510', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x032d26d12e980b600000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:41:58.000Z'}}, {'blockNum': '0x969d3b', 'uniqueId': '0x0a24f53ad94aa7f2cadfb66ad2e49c0171c302da0eeb154080d39370226474d4:log:87', 'hash': '0x0a24f53ad94aa7f2cadfb66ad2e49c0171c302da0eeb154080d39370226474d4', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7c762febdc507d84f5cc183dccb6377c16a26b16', 'value': 227121.757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x30184b8cd8dbc51c8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:45:21.000Z'}}, {'blockNum': '0x969d3c', 'uniqueId': '0xebf2f5859c7812fdc621da75bdadb8aacb69cab97baa24ede75c54f22240ceb7:log:24', 'hash': '0xebf2f5859c7812fdc621da75bdadb8aacb69cab97baa24ede75c54f22240ceb7', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 40906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x08a984c9beb930e80000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:45:29.000Z'}}, {'blockNum': '0x969d3c', 'uniqueId': '0xa615577ff7949e2c0942896f5cd005488241035d6c5dfe65cbf26d43bbb87db2:log:25', 'hash': '0xa615577ff7949e2c0942896f5cd005488241035d6c5dfe65cbf26d43bbb87db2', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:45:29.000Z'}}, {'blockNum': '0x969d4f', 'uniqueId': '0xb6ed9d49aa988b6fd837e6f0d734f0af344478909bda0316a4346e51df272b6a:log:30', 'hash': '0xb6ed9d49aa988b6fd837e6f0d734f0af344478909bda0316a4346e51df272b6a', 'from': '0xebf1e5c83f0ac80b4fea79c4ab8c33ea5b48febf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 359572.166, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x4c247238aa040e870000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:49:06.000Z'}}, {'blockNum': '0x969d51', 'uniqueId': '0xc8bdcc488fc6d0c4f0ef8a0872f4def005457a7a152d1ced547094eaed10f04c:log:44', 'hash': '0xc8bdcc488fc6d0c4f0ef8a0872f4def005457a7a152d1ced547094eaed10f04c', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 355110.28845156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x4b32913b43c0058d1000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:49:37.000Z'}}, {'blockNum': '0x969d52', 'uniqueId': '0xa4fbe0546cffce602058546ca041a5b2d677d67eeef4b5f678eb00a55e446c24:log:29', 'hash': '0xa4fbe0546cffce602058546ca041a5b2d677d67eeef4b5f678eb00a55e446c24', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:49:38.000Z'}}, {'blockNum': '0x969d52', 'uniqueId': '0xe3192cf48f074c327a2c3bfca0c7f0b3e2fe376dfe98668effd8b2c8c88af1b7:log:33', 'hash': '0xe3192cf48f074c327a2c3bfca0c7f0b3e2fe376dfe98668effd8b2c8c88af1b7', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 74226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0fb7ccad85cc20880000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:49:38.000Z'}}, {'blockNum': '0x969d53', 'uniqueId': '0x5abb6a8455404fb7987b1f4efbbb485ae7520285282399f941f7279039eb7893:log:89', 'hash': '0x5abb6a8455404fb7987b1f4efbbb485ae7520285282399f941f7279039eb7893', 'from': '0x7c762febdc507d84f5cc183dccb6377c16a26b16', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 227121.757, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x30184b8cd8dbc51c8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:50:16.000Z'}}, {'blockNum': '0x969d54', 'uniqueId': '0xa6759e0d27264d417bb4b143ad6f78823766d2ceff472a3b7b1d83d7200ac7c8:log:17', 'hash': '0xa6759e0d27264d417bb4b143ad6f78823766d2ceff472a3b7b1d83d7200ac7c8', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 49385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0a752a8d070e5a040000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:50:53.000Z'}}, {'blockNum': '0x969d6c', 'uniqueId': '0x3f84e9ca05eb9c5a8ffbb8cc899e07684d658030951f5efe3c2f44498449ee67:log:24', 'hash': '0x3f84e9ca05eb9c5a8ffbb8cc899e07684d658030951f5efe3c2f44498449ee67', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01a784379d99db42000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:56:00.000Z'}}, {'blockNum': '0x969d78', 'uniqueId': '0x630a174f6f2fcbf3e3d056afff04d6efe317537e84f8c128bde145aa19cf7bbd:log:41', 'hash': '0x630a174f6f2fcbf3e3d056afff04d6efe317537e84f8c128bde145aa19cf7bbd', 'from': '0x38b78904a6b44f63eb81d98937fc6614870cfbb9', 'to': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:58:01.000Z'}}, {'blockNum': '0x969d81', 'uniqueId': '0x6de3f6d068761858c9f32f3ab9c8438004b90b694d2866a2115876be2e4dff5f:log:14', 'hash': '0x6de3f6d068761858c9f32f3ab9c8438004b90b694d2866a2115876be2e4dff5f', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x95d5c96f6582087587c870a2ee89a2bfe441dbdf', 'value': 56611.859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0bfcef5dda041cbb8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:59:57.000Z'}}, {'blockNum': '0x969d81', 'uniqueId': '0xe514daf3bf9d4edfb477685de31180f79e97b8e71726405bc1591f9f8e5b2d27:log:15', 'hash': '0xe514daf3bf9d4edfb477685de31180f79e97b8e71726405bc1591f9f8e5b2d27', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 64685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0db294b4502e8e940000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T12:59:57.000Z'}}, {'blockNum': '0x969d82', 'uniqueId': '0xba8c7a5f717b5a61a706cfcccbbf52f269778d502fc4c09c78354ecc117331d1:log:11', 'hash': '0xba8c7a5f717b5a61a706cfcccbbf52f269778d502fc4c09c78354ecc117331d1', 'from': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01a784379d99db42000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:00:11.000Z'}}, {'blockNum': '0x969d96', 'uniqueId': '0xe55bc0f623a7a696b886522981f6a3bdaab41eb9f6b83e051afe58764c0d8edf:log:39', 'hash': '0xe55bc0f623a7a696b886522981f6a3bdaab41eb9f6b83e051afe58764c0d8edf', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 47300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0a04235d01dc08900000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:02:49.000Z'}}, {'blockNum': '0x969d96', 'uniqueId': '0x9a8faf6f6e446d6dde46bbb4ed12ca6cdc1bf4eb5d4686f45c186e5543671116:log:41', 'hash': '0x9a8faf6f6e446d6dde46bbb4ed12ca6cdc1bf4eb5d4686f45c186e5543671116', 'from': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 481221.28845156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x65e70eee03092ca91000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:02:49.000Z'}}, {'blockNum': '0x969d96', 'uniqueId': '0xcf6f5aac492853ad51fb98bd25ec319fea02a58d68c3a2a6de54edab93c87a4a:log:44', 'hash': '0xcf6f5aac492853ad51fb98bd25ec319fea02a58d68c3a2a6de54edab93c87a4a', 'from': '0xbe84eac3f62657f54f1da954c0ca5b30ee44546b', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 103560.634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x15ee0880ff3ed0b90000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:02:49.000Z'}}, {'blockNum': '0x969e09', 'uniqueId': '0x96fbbf818b6b53d12dbdc1c92903b27827b04a4494b9ec48ccd1cf004afd78ee:log:158', 'hash': '0x96fbbf818b6b53d12dbdc1c92903b27827b04a4494b9ec48ccd1cf004afd78ee', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 385906.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x51b801b87554a6490000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:29:19.000Z'}}, {'blockNum': '0x969e23', 'uniqueId': '0x16ad9bd5d763c265a573b0b790ed44883e71da3f80313e3e26cba0a43e7c691f:log:6', 'hash': '0x16ad9bd5d763c265a573b0b790ed44883e71da3f80313e3e26cba0a43e7c691f', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 66451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0e1250e0ab834a6c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:35:37.000Z'}}, {'blockNum': '0x969e3b', 'uniqueId': '0x37eb2603d781bb5a76d68bc98ef89500717752c80c5002ee88425aab35b41270:log:35', 'hash': '0x37eb2603d781bb5a76d68bc98ef89500717752c80c5002ee88425aab35b41270', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 72047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0f41acfa6aa2585c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:39:52.000Z'}}, {'blockNum': '0x969e42', 'uniqueId': '0x70bd5e4184a3c1e89a0e39f271eed62917ba20688ad578c61484d7838922012f:log:28', 'hash': '0x70bd5e4184a3c1e89a0e39f271eed62917ba20688ad578c61484d7838922012f', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 78315.837068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x109582919e4205a4c000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:43:05.000Z'}}, {'blockNum': '0x969e4b', 'uniqueId': '0x4a3bd401ee3105876d7eb881a846a9780b440664900eea6de6fc98395a61d3f7:log:115', 'hash': '0x4a3bd401ee3105876d7eb881a846a9780b440664900eea6de6fc98395a61d3f7', 'from': '0x477b8d5ef7c2c42db84deb555419cd817c336b6f', 'to': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'value': 228874.6221129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x30775170b5f6b0982800', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:44:10.000Z'}}, {'blockNum': '0x969e6b', 'uniqueId': '0xfb3f3720bcb28a9e904cb127b0709a102034b1e66de417efaa094454918fcb4e:log:23', 'hash': '0xfb3f3720bcb28a9e904cb127b0709a102034b1e66de417efaa094454918fcb4e', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:52:11.000Z'}}, {'blockNum': '0x969e8f', 'uniqueId': '0x9f2b593d676249066a9dd914b047bfe7dbb6bb5cbf71c1d89cc39983b3017dbd:log:32', 'hash': '0x9f2b593d676249066a9dd914b047bfe7dbb6bb5cbf71c1d89cc39983b3017dbd', 'from': '0xf8cc79a59e63e06954274c043eed7cb1cd26dc66', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T13:59:58.000Z'}}, {'blockNum': '0x969eb0', 'uniqueId': '0x5489ec66005a40da025e0225c35410f53c5207784836e7181196e901083717fe:log:4', 'hash': '0x5489ec66005a40da025e0225c35410f53c5207784836e7181196e901083717fe', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 69751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0ec53593cf5d0f7c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:07:32.000Z'}}, {'blockNum': '0x969ecb', 'uniqueId': '0x7dd91466fcde49b81d7857ef71b92feb22eb5059dfb6b367a3827ff635a1da5e:log:94', 'hash': '0x7dd91466fcde49b81d7857ef71b92feb22eb5059dfb6b367a3827ff635a1da5e', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 78315.837068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x109582919e4205a4c000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:13:19.000Z'}}, {'blockNum': '0x969ecb', 'uniqueId': '0x700bc33e9435b214a23f9eef6eba75c4e845128b51bb42cfc69c072f3be76d51:log:95', 'hash': '0x700bc33e9435b214a23f9eef6eba75c4e845128b51bb42cfc69c072f3be76d51', 'from': '0x95d5c96f6582087587c870a2ee89a2bfe441dbdf', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 56611.859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0bfcef5dda041cbb8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:13:19.000Z'}}, {'blockNum': '0x969ecb', 'uniqueId': '0x1b3192087fe0f3509777915b741ba3dfa6fff9f266943d37bc078ae7121dc8f8:log:103', 'hash': '0x1b3192087fe0f3509777915b741ba3dfa6fff9f266943d37bc078ae7121dc8f8', 'from': '0x80708eb59ef689d1f94dcdcb1ea6ac748ab657ac', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 614780.6321129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x822f53292b4b56e12800', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:13:19.000Z'}}, {'blockNum': '0x969ee9', 'uniqueId': '0x57a5ded49668c89d0d206027275c56ce3ca94a595a93c7eb8d5029b3ba692c98:log:38', 'hash': '0x57a5ded49668c89d0d206027275c56ce3ca94a595a93c7eb8d5029b3ba692c98', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'value': 281379, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x3b95960e3a2a2eac0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:21:17.000Z'}}, {'blockNum': '0x969ef5', 'uniqueId': '0xa4745efe5cdb15b74bf723938a90800722834dceeda4bca0efb94f1fa02c5d50:log:11', 'hash': '0xa4745efe5cdb15b74bf723938a90800722834dceeda4bca0efb94f1fa02c5d50', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 84255.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x11d77bc98cd184300000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:24:04.000Z'}}, {'blockNum': '0x969f28', 'uniqueId': '0xb8203b4cf8cd9260ea5e2da0aeae5938e4816a36bacf07fdb5accb8760cb41c7:log:82', 'hash': '0xb8203b4cf8cd9260ea5e2da0aeae5938e4816a36bacf07fdb5accb8760cb41c7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'value': 276797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x3a9d320826a426d40000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:35:25.000Z'}}, {'blockNum': '0x969f75', 'uniqueId': '0x6be77d7a6a0c455842a4a11b69912783bc142ac56b90990eda221907fc6d4e3a:log:3', 'hash': '0x6be77d7a6a0c455842a4a11b69912783bc142ac56b90990eda221907fc6d4e3a', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 123607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x1a2cbfb7b20bdcfc0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:52:59.000Z'}}, {'blockNum': '0x969f96', 'uniqueId': '0xce7838158829f4316c146002222dc58c4463b5d136c5dc2ee2b7be233a315171:log:48', 'hash': '0xce7838158829f4316c146002222dc58c4463b5d136c5dc2ee2b7be233a315171', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245543, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x33fee9a6d56e1c3c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T14:59:39.000Z'}}, {'blockNum': '0x96a005', 'uniqueId': '0xaf5bfdd7b78e77410dfa9bd69b6a0e81371e29bb4dab0fafee5b27365be3e091:log:8', 'hash': '0xaf5bfdd7b78e77410dfa9bd69b6a0e81371e29bb4dab0fafee5b27365be3e091', 'from': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 558176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x7632c81660ce55800000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T15:23:49.000Z'}}, {'blockNum': '0x96a005', 'uniqueId': '0x023d645a0ccf345274338a968877cd21a294d047cc698688d59162c7565a6228:log:9', 'hash': '0x023d645a0ccf345274338a968877cd21a294d047cc698688d59162c7565a6228', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 208249, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2c19336ee582b2440000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T15:23:49.000Z'}}, {'blockNum': '0x96a005', 'uniqueId': '0xc63d744814f47da666634606d84597ac3c867bf1e8be5880adc7ac9239eb5574:log:10', 'hash': '0xc63d744814f47da666634606d84597ac3c867bf1e8be5880adc7ac9239eb5574', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 207862.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2c043b813edd612c0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T15:23:49.000Z'}}, {'blockNum': '0x96a0bc', 'uniqueId': '0xfe84d3acdeada5dff6f21e889e64c52e09700192d47a2c947c49e202ba9f764e:log:12', 'hash': '0xfe84d3acdeada5dff6f21e889e64c52e09700192d47a2c947c49e202ba9f764e', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0x16bb95d2daa97c9320e597f5161dd4031516adfc', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:04:07.000Z'}}, {'blockNum': '0x96a0cb', 'uniqueId': '0x1473a8cce0c1438b47faf7df83b1e9a43b4dfea5553100ee73fc3223b4a1b1ff:log:167', 'hash': '0x1473a8cce0c1438b47faf7df83b1e9a43b4dfea5553100ee73fc3223b4a1b1ff', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'value': 274612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x3a26bf10c34472500000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:06:53.000Z'}}, {'blockNum': '0x96a0d6', 'uniqueId': '0xfaa8fa8221801d333d5b6f472c12f2e24c71858e11d8de959f99e4ba81658132:log:127', 'hash': '0xfaa8fa8221801d333d5b6f472c12f2e24c71858e11d8de959f99e4ba81658132', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 10675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0242b162856d0eec0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:10:32.000Z'}}, {'blockNum': '0x96a0de', 'uniqueId': '0x0eab748db88e68b968a7edc2e2157e8e2e79a3ac9925afa57e5cea620e54dcc8:log:84', 'hash': '0x0eab748db88e68b968a7edc2e2157e8e2e79a3ac9925afa57e5cea620e54dcc8', 'from': '0x38b78904a6b44f63eb81d98937fc6614870cfbb9', 'to': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'value': 2000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01a784379d99db42000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:13:04.000Z'}}, {'blockNum': '0x96a0ed', 'uniqueId': '0xc3b7054f95610554e319cfb76bc7c1ee8c9b2b8a311f377f90445eb0c4f8c23c:log:5', 'hash': '0xc3b7054f95610554e319cfb76bc7c1ee8c9b2b8a311f377f90445eb0c4f8c23c', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xc53ff4a3d1961fdb8bfdcbfe674e85b792bf62fb', 'value': 118502.9198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x19180e6026b8e43f8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:15:31.000Z'}}, {'blockNum': '0x96a144', 'uniqueId': '0xab3cd56e24a6d81123c6ca5900c228825920bbd134800ad9be869e327fbb70e7:log:15', 'hash': '0xab3cd56e24a6d81123c6ca5900c228825920bbd134800ad9be869e327fbb70e7', 'from': '0xc53ff4a3d1961fdb8bfdcbfe674e85b792bf62fb', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 118502.9198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x19180e6026b8e43f8000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:35:28.000Z'}}, {'blockNum': '0x96a144', 'uniqueId': '0x700cc9719030801c6e969091c7e8868cf9b93af306c44b3771e8bc638dd6a2d6:log:16', 'hash': '0x700cc9719030801c6e969091c7e8868cf9b93af306c44b3771e8bc638dd6a2d6', 'from': '0x16bb95d2daa97c9320e597f5161dd4031516adfc', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:35:28.000Z'}}, {'blockNum': '0x96a144', 'uniqueId': '0xa2d0001a82c052d474cc11888d09cd412cfbb79dc8f589a0298d46c927b981cb:log:18', 'hash': '0xa2d0001a82c052d474cc11888d09cd412cfbb79dc8f589a0298d46c927b981cb', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 10675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0242b162856d0eec0000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:35:28.000Z'}}, {'blockNum': '0x96a144', 'uniqueId': '0xd5b7853993eb7dad0e9e72aa55c7da96d3e15c483218af88b4791613aeb0a166:log:20', 'hash': '0xd5b7853993eb7dad0e9e72aa55c7da96d3e15c483218af88b4791613aeb0a166', 'from': '0x9fb1b32130878bfae5c033b5d70640567bf83453', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 274612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x3a26bf10c34472500000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T16:35:28.000Z'}}, {'blockNum': '0x96a1f9', 'uniqueId': '0xe9d5073dda0239d1d7b6d6b52762c7b47fd87bc37519401c486cedf0cf7e5f49:log:87', 'hash': '0xe9d5073dda0239d1d7b6d6b52762c7b47fd87bc37519401c486cedf0cf7e5f49', 'from': '0x93a86f126a9fa936c99d063845d435297af8a0be', 'to': '0x23e7000f29d2f222c2e56373b6617fb55e9f4a64', 'value': 1900000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01925734d5b8904b800000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T17:15:23.000Z'}}, {'blockNum': '0x96a285', 'uniqueId': '0x8588ba04fce7e50446a313055fec7e91d66dd42168d5d19d18798e3447073c6d:log:26', 'hash': '0x8588ba04fce7e50446a313055fec7e91d66dd42168d5d19d18798e3447073c6d', 'from': '0x23e7000f29d2f222c2e56373b6617fb55e9f4a64', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1900000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x01925734d5b8904b800000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-14T17:46:01.000Z'}}, {'blockNum': '0x96a9fa', 'uniqueId': '0x4b1bfda997003ad6d54da26824b50051d1b3b4c88cdf01070f4e00cbd4a1ac79:log:5', 'hash': '0x4b1bfda997003ad6d54da26824b50051d1b3b4c88cdf01070f4e00cbd4a1ac79', 'from': '0x3a9e6cf4e3157670a3b991c25d6f4fcbd9419c03', 'to': '0xbe84eac3f62657f54f1da954c0ca5b30ee44546b', 'value': 6915.6168, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'MITH', 'category': 'erc20', 'rawContract': {'value': '0x0176e576671783a20000', 'address': '0x3893b9422cd5d70a81edeffe3d5a1c6a978310bb', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-04-15T01:01:15.000Z'}}]}}
Number of returned transfers:  60
Answer is complete
 
symbol             GVT
group              CPI
date        2020-04-15
hour             15:56
exchange       binance
Name: 1068, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-04-15 15:56:00 2020-04-15 03:56:00 2020-04-16 03:56:00
Unix timestamps:  1586915760.0 1587002160.0
Hex Block Numbers:  0x96ab04 0x96c468
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             CVC
group              CPI
date        2020-05-05
hour             16:00
exchange       binance
Name: 1069, dtype: object
HERE
 Symbol: CVC, Contract: 0x41e5560054824ea6b0732e656e3ad64e20e94e45
Datetime timestamps:  2020-05-05 16:00:00 2020-05-05 04:00:00 2020-05-06 04:00:00
Unix timestamps:  1588644000.0 1588730400.0
Hex Block Numbers:  0x98a3de 0x98bd20
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x98a3ef', 'uniqueId': '0xa186cf3b5e57276d8d044b0f5a9f2f3c87cdca165500087517d06c9f4419144e:log:41', 'hash': '0xa186cf3b5e57276d8d044b0f5a9f2f3c87cdca165500087517d06c9f4419144e', 'from': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'to': '0xb54c216ce244a521cacd64381a55409911dc00c5', 'value': 5658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x83bc4eda00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T02:03:42.000Z'}}, {'blockNum': '0x98a55e', 'uniqueId': '0x0a789f8a9c908e4135674e4f49106b630fe486922ad4dcc39d406aea18a95715:log:27', 'hash': '0x0a789f8a9c908e4135674e4f49106b630fe486922ad4dcc39d406aea18a95715', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7757b95208744ca874842def04dca94b560b64ce', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T03:21:34.000Z'}}, {'blockNum': '0x98a644', 'uniqueId': '0x79e5a60d74c60649b657f85cfad699ea20e7ee5287fc45d4c4a9681207d229cb:log:27', 'hash': '0x79e5a60d74c60649b657f85cfad699ea20e7ee5287fc45d4c4a9681207d229cb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x074d0e07f8cf20ed5050ff094ed9fb0d697424ce', 'value': 54262.634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04ef66809e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T04:16:03.000Z'}}, {'blockNum': '0x98a655', 'uniqueId': '0xc5d6f1c84f8807aa17f766ca66c0c15f1bceed7c53add9071006bc187eeab338:log:101', 'hash': '0xc5d6f1c84f8807aa17f766ca66c0c15f1bceed7c53add9071006bc187eeab338', 'from': '0xf4fac101d187f0dc7be9f05f007431de3e614f01', 'to': '0xe32f09bfc0f9aaf2c43dd093aace8179698f3050', 'value': 2099.12049993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x30dfbbb149', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T04:20:07.000Z'}}, {'blockNum': '0x98a657', 'uniqueId': '0xf5a44968129b204c0a8bf5638581fe141b2a0d75681105e7929eb5e56356767c:log:33', 'hash': '0xf5a44968129b204c0a8bf5638581fe141b2a0d75681105e7929eb5e56356767c', 'from': '0xe32f09bfc0f9aaf2c43dd093aace8179698f3050', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 2099.12049993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x30dfbbb149', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T04:21:10.000Z'}}, {'blockNum': '0x98a674', 'uniqueId': '0x41d8a8118ad87f3498ddc336958ffcd601b4b4ca4331386d82c4f6914634de61:log:13', 'hash': '0x41d8a8118ad87f3498ddc336958ffcd601b4b4ca4331386d82c4f6914634de61', 'from': '0x074d0e07f8cf20ed5050ff094ed9fb0d697424ce', 'to': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'value': 54262.634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04ef66809e40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T04:27:41.000Z'}}, {'blockNum': '0x98a6c9', 'uniqueId': '0xfa173535cd09ff416a312259558ec377f468e4149aa5793ae5e3a40b8934dd25:log:21', 'hash': '0xfa173535cd09ff416a312259558ec377f468e4149aa5793ae5e3a40b8934dd25', 'from': '0xa2986da2fd107dbc1bcb301dcea53ee37f27b469', 'to': '0x58503a6e336ae8226d25832f23e576fee0ac9036', 'value': 9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe8ceaf2f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T04:49:47.000Z'}}, {'blockNum': '0x98a6cf', 'uniqueId': '0x6b07bf15a84b357a6dd1186af96bd15803163fa3127a04e738631be43d8bed86:log:75', 'hash': '0x6b07bf15a84b357a6dd1186af96bd15803163fa3127a04e738631be43d8bed86', 'from': '0x58503a6e336ae8226d25832f23e576fee0ac9036', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 9999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe8ceaf2f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T04:50:49.000Z'}}, {'blockNum': '0x98a71f', 'uniqueId': '0x9a41a768ba9e26b2c998addacba26cc8b9404254a2e3b5fd430ae83530c03f7c:log:42', 'hash': '0x9a41a768ba9e26b2c998addacba26cc8b9404254a2e3b5fd430ae83530c03f7c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc351c073c37cabe257f5ad9e7fe91f5e73e0e293', 'value': 108124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09d57542dc00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T05:10:30.000Z'}}, {'blockNum': '0x98a7d4', 'uniqueId': '0x7b8af496686456bb0efd32766c4d3778929be149950f0323d56e49521b6c1dd6:log:91', 'hash': '0x7b8af496686456bb0efd32766c4d3778929be149950f0323d56e49521b6c1dd6', 'from': '0xb24d403b659274cff5a2c00f4b51f2113d402b80', 'to': '0x80bc7d818395c3e9ba153526afc0686adfd3a225', 'value': 1024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x17d7840000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T05:50:11.000Z'}}, {'blockNum': '0x98a7e7', 'uniqueId': '0xb32502dca18d1479e20fc802f37f5195f383739141b4c1a949b170029e6323bf:log:14', 'hash': '0xb32502dca18d1479e20fc802f37f5195f383739141b4c1a949b170029e6323bf', 'from': '0x69f5fb87e61d1bc0f9ed61f8bea37f81e4b5f96a', 'to': '0xaa253173a947de980604ac7926e201c16af175a7', 'value': 5350, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7c907c2600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T05:54:40.000Z'}}, {'blockNum': '0x98a928', 'uniqueId': '0xca24ff1be5c1e734c34aed474a3610ccf49da0998da598ae4118e058d1f52e60:log:73', 'hash': '0xca24ff1be5c1e734c34aed474a3610ccf49da0998da598ae4118e058d1f52e60', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:07:35.000Z'}}, {'blockNum': '0x98a966', 'uniqueId': '0x70bd8c65b526fd3b22ae67fa94174d2c94f931aa00f30d6c2531a232f12f7aa2:log:122', 'hash': '0x70bd8c65b526fd3b22ae67fa94174d2c94f931aa00f30d6c2531a232f12f7aa2', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:21:25.000Z'}}, {'blockNum': '0x98a9ab', 'uniqueId': '0x4217028a927af1808aac507b34ecbb4b74f468b3ac58dcf7118d7d778a745104:log:120', 'hash': '0x4217028a927af1808aac507b34ecbb4b74f468b3ac58dcf7118d7d778a745104', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:39:50.000Z'}}, {'blockNum': '0x98a9b3', 'uniqueId': '0x04997d49d8073ec87bab68a8a4dd597bdfde4abb04ac70ae88fb54d6f11ea7b4:log:39', 'hash': '0x04997d49d8073ec87bab68a8a4dd597bdfde4abb04ac70ae88fb54d6f11ea7b4', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:40:52.000Z'}}, {'blockNum': '0x98a9ce', 'uniqueId': '0x9dd316b4ea1e5858993addc0b6cd44dec3c386a95ed29250deb186d679ef756d:log:11', 'hash': '0x9dd316b4ea1e5858993addc0b6cd44dec3c386a95ed29250deb186d679ef756d', 'from': '0x710f31fa40aa1eebf106a2a72f7daa3622ec7dd6', 'to': '0x8bde0cf4a73ba210f9422b054e64b911dec3f92c', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x015d3ef79800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:46:22.000Z'}}, {'blockNum': '0x98a9dc', 'uniqueId': '0x10e1673d71448b4014925ee572f3cc49577abc582ab5e37bdaac1da18d7e3510:log:138', 'hash': '0x10e1673d71448b4014925ee572f3cc49577abc582ab5e37bdaac1da18d7e3510', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 91425.1089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0850a81d2c10', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:49:16.000Z'}}, {'blockNum': '0x98a9dc', 'uniqueId': '0x3b8ea44a7154df6c2d39d8faa0d4d75945b4e19bb94cf82e1815971e0f5436ad:log:139', 'hash': '0x3b8ea44a7154df6c2d39d8faa0d4d75945b4e19bb94cf82e1815971e0f5436ad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 127115.97498896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0b8fa640e210', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:49:16.000Z'}}, {'blockNum': '0x98a9dd', 'uniqueId': '0x606c7129b30635183afdafe518cc91abea40d935eda00c33c026559b3341b893:log:30', 'hash': '0x606c7129b30635183afdafe518cc91abea40d935eda00c33c026559b3341b893', 'from': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'to': '0xb54c216ce244a521cacd64381a55409911dc00c5', 'value': 4197.21212075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x61b95570ab', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:50:43.000Z'}}, {'blockNum': '0x98aa02', 'uniqueId': '0xff5594e0b289bbddc78a82592e299361058186e14b5c471410614ad1c36042a1:log:30', 'hash': '0xff5594e0b289bbddc78a82592e299361058186e14b5c471410614ad1c36042a1', 'from': '0x2099a103740bc8b28300c2efba393ed362407857', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 98.3741822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x024a5b16ec', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:58:51.000Z'}}, {'blockNum': '0x98aa02', 'uniqueId': '0x2ecace16a26f39904dff84620092e65c9f9fd43c6c311938c4e0e2dd8d2abbb8:log:33', 'hash': '0x2ecace16a26f39904dff84620092e65c9f9fd43c6c311938c4e0e2dd8d2abbb8', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 97594.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e04ed83a10', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:58:51.000Z'}}, {'blockNum': '0x98aa03', 'uniqueId': '0x08fedabcc76f2ca5122493c70b6ca2901f092d658b9c0aea3f14969bd4f15af7:log:39', 'hash': '0x08fedabcc76f2ca5122493c70b6ca2901f092d658b9c0aea3f14969bd4f15af7', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 265056.89602975, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x181b56369b9f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:59:00.000Z'}}, {'blockNum': '0x98aa07', 'uniqueId': '0x8218b194ad23534d571b477096dbb738ad4c977aa6c63d772088681d44c980b2:log:4', 'hash': '0x8218b194ad23534d571b477096dbb738ad4c977aa6c63d772088681d44c980b2', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'value': 362750.15511195, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x20fdef69ec9b', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:59:28.000Z'}}, {'blockNum': '0x98aa07', 'uniqueId': '0xde88f7d054c32d5c6b867c6422575fd4741ec3389b6da077f86d6315fb487b46:log:17', 'hash': '0xde88f7d054c32d5c6b867c6422575fd4741ec3389b6da077f86d6315fb487b46', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 87722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x07fa6fdd6a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:59:28.000Z'}}, {'blockNum': '0x98aa08', 'uniqueId': '0xa28d2ef06433d5e496023e0be972c624d0f57d88e659d10a8f4b6499b9bf70ca:log:26', 'hash': '0xa28d2ef06433d5e496023e0be972c624d0f57d88e659d10a8f4b6499b9bf70ca', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 97593.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e048e25910', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:59:30.000Z'}}, {'blockNum': '0x98aa08', 'uniqueId': '0xfff176970e3585bf2662cad7cfe7ff8ed88ed4d92b412c5fe52ff1bb27994486:log:28', 'hash': '0xfff176970e3585bf2662cad7cfe7ff8ed88ed4d92b412c5fe52ff1bb27994486', 'from': '0x3b8475fbdfaba6132f7bf06597b7a2f2edba70f0', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 38549.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03818e0ed040', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:59:30.000Z'}}, {'blockNum': '0x98aa09', 'uniqueId': '0x26dc9ebdc051f2a4cc0e1e64367af46063dd21c6d364a0ebf8970d57ae42339c:log:39', 'hash': '0x26dc9ebdc051f2a4cc0e1e64367af46063dd21c6d364a0ebf8970d57ae42339c', 'from': '0x3b8475fbdfaba6132f7bf06597b7a2f2edba70f0', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 31974.19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02e8750610c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T07:59:53.000Z'}}, {'blockNum': '0x98aa0b', 'uniqueId': '0x200f4ea810ebe6e5c346eb836cfab1fdc81108915f0f238925df472360104ffc:log:30', 'hash': '0x200f4ea810ebe6e5c346eb836cfab1fdc81108915f0f238925df472360104ffc', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 97593.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e048e25910', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:00:30.000Z'}}, {'blockNum': '0x98aa0c', 'uniqueId': '0xae22cc674952575a54cfeb6737a00ac8ae0a729d1a3b9e572a5857c375bfad1d:log:7', 'hash': '0xae22cc674952575a54cfeb6737a00ac8ae0a729d1a3b9e572a5857c375bfad1d', 'from': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 90487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x083ad08c9700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:00:33.000Z'}}, {'blockNum': '0x98aa0d', 'uniqueId': '0x3be4a04949e07e9aa6571f3793d265cc20f1f22af46a4916162e641240eba520:log:29', 'hash': '0x3be4a04949e07e9aa6571f3793d265cc20f1f22af46a4916162e641240eba520', 'from': '0xe506ae4e51f8b03fd2355d48a589becfab7bbe57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 34.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd0146ec0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:00:36.000Z'}}, {'blockNum': '0x98aa0f', 'uniqueId': '0xba9b10a062deeea049b2e0cf16c05a1c89d9e4246668c84c0052051bac0c5c1d:log:12', 'hash': '0xba9b10a062deeea049b2e0cf16c05a1c89d9e4246668c84c0052051bac0c5c1d', 'from': '0x325b5a9c9739d6b34dedbad608c1529a17325de3', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 156495.96083388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0e3bb49d8cbc', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:01:00.000Z'}}, {'blockNum': '0x98aa11', 'uniqueId': '0x57d03d117e2a59ea65e969d79a1ffb214a41ec1f73f78118c77dc55b2389c380:log:0', 'hash': '0x57d03d117e2a59ea65e969d79a1ffb214a41ec1f73f78118c77dc55b2389c380', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x747a4f036903b8061c8edb5a8b52fa2c9a533934', 'value': 443955.5598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2860a55802e0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:01:23.000Z'}}, {'blockNum': '0x98aa11', 'uniqueId': '0xd913dfc5c8b5da81a2ecc450ab47939c7e285283f70466d6df28939f60001b84:log:9', 'hash': '0xd913dfc5c8b5da81a2ecc450ab47939c7e285283f70466d6df28939f60001b84', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 97593.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e048e25910', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:01:23.000Z'}}, {'blockNum': '0x98aa12', 'uniqueId': '0xaad8ab4c016d2f0f269279deffb3d591f32d6379e2f97134fd16f538c112a769:log:19', 'hash': '0xaad8ab4c016d2f0f269279deffb3d591f32d6379e2f97134fd16f538c112a769', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 265186.97836789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x181e5d9080f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:01:30.000Z'}}, {'blockNum': '0x98aa13', 'uniqueId': '0xafc6769951df3154d80932915af59f7a0d0082a47e0082c9daa53462a7349a08:log:52', 'hash': '0xafc6769951df3154d80932915af59f7a0d0082a47e0082c9daa53462a7349a08', 'from': '0xb54c216ce244a521cacd64381a55409911dc00c5', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 5658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x83bc4eda00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:01:44.000Z'}}, {'blockNum': '0x98aa13', 'uniqueId': '0x82582700d22295cd675c1632165649690ef8cc9d7c3549bfe62f8e556fd1ff9a:log:54', 'hash': '0x82582700d22295cd675c1632165649690ef8cc9d7c3549bfe62f8e556fd1ff9a', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 91425.1089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0850a81d2c10', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:01:44.000Z'}}, {'blockNum': '0x98aa18', 'uniqueId': '0x5b31b9a980ecf898e6afda4af9f81d2c2ea6df84564bc0953944dcae1691f360:log:58', 'hash': '0x5b31b9a980ecf898e6afda4af9f81d2c2ea6df84564bc0953944dcae1691f360', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 127115.97498896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0b8fa640e210', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:02:57.000Z'}}, {'blockNum': '0x98aa1e', 'uniqueId': '0xfbfb59b3025a461f85e02d9f62e2852a0f7190cd8ef3f5925535afd1fbf93648:log:5', 'hash': '0xfbfb59b3025a461f85e02d9f62e2852a0f7190cd8ef3f5925535afd1fbf93648', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x747a4f036903b8061c8edb5a8b52fa2c9a533934', 'value': 743475.90799073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x439e65bd4ee1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:03:19.000Z'}}, {'blockNum': '0x98aaa2', 'uniqueId': '0x8b20168a7d9038773709d3427d544a4649e57b223700aef48eb54f455f35ac70:log:86', 'hash': '0x8b20168a7d9038773709d3427d544a4649e57b223700aef48eb54f455f35ac70', 'from': '0x8bde0cf4a73ba210f9422b054e64b911dec3f92c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x04ae67112f00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T08:30:11.000Z'}}, {'blockNum': '0x98ab3d', 'uniqueId': '0x95b0a79c48b57ce011f32da50e7b86058a0227bb02e58ae08fe562316cfba84c:log:10', 'hash': '0x95b0a79c48b57ce011f32da50e7b86058a0227bb02e58ae08fe562316cfba84c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xa3db01d242221ec0356d91f756f6690239cfeded', 'value': 555555.0547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3287062b3a30', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T09:04:56.000Z'}}, {'blockNum': '0x98ab7c', 'uniqueId': '0x80f5f3853350629d53342b05c06c3d4104e3bf75f444b108f092358b38d2027d:log:47', 'hash': '0x80f5f3853350629d53342b05c06c3d4104e3bf75f444b108f092358b38d2027d', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xd959a8c3e049c52984a22c16a7f65c3b973ef90d', 'value': 4052.390274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5e5a20d6c8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T09:18:02.000Z'}}, {'blockNum': '0x98ab8b', 'uniqueId': '0x83ff9da8de3ab8d0646c2b63029cbe1ea4c5a3ef78120ac8c658fa81a38371ec:log:30', 'hash': '0x83ff9da8de3ab8d0646c2b63029cbe1ea4c5a3ef78120ac8c658fa81a38371ec', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 4052.390274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x5e5a20d6c8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T09:21:25.000Z'}}, {'blockNum': '0x98aba4', 'uniqueId': '0x3ea62775f85915711640e419c68a938e98ad182f3e1370932d8b1804ca950650:log:16', 'hash': '0x3ea62775f85915711640e419c68a938e98ad182f3e1370932d8b1804ca950650', 'from': '0x96859602bc9d430d5da9c756b979d5ae7d089360', 'to': '0xb9824ed9e8ce64d9a50f6557a82710375f4d8791', 'value': 105.5686279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02753cf146', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T09:26:55.000Z'}}, {'blockNum': '0x98abb9', 'uniqueId': '0x7a5de5e922c02a08ef1f381c455761c8b28f9a3be9ff2437324a413aaf59f65e:log:9', 'hash': '0x7a5de5e922c02a08ef1f381c455761c8b28f9a3be9ff2437324a413aaf59f65e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe5465385e061c5c6bdef0125ffb3a94c9b2de1b8', 'value': 1175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1b5b8bb700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T09:32:50.000Z'}}, {'blockNum': '0x98abf1', 'uniqueId': '0x517f2950213d4bd7e84e5cdddb394e53dffb2ac377ccaf9f502f7c86405bcb5d:log:47', 'hash': '0x517f2950213d4bd7e84e5cdddb394e53dffb2ac377ccaf9f502f7c86405bcb5d', 'from': '0x37d723701f986f338f1c2e4a645d88f46e149085', 'to': '0x0fdb6148c2e4ea89df8edf1ff579645bf4b266cc', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T09:43:25.000Z'}}, {'blockNum': '0x98ac36', 'uniqueId': '0x903ff7e5c7238639deaface3973cd9b731e4ee0be40cbfeeba315225f82e2821:log:22', 'hash': '0x903ff7e5c7238639deaface3973cd9b731e4ee0be40cbfeeba315225f82e2821', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 12499844, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0470daac230400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T09:59:33.000Z'}}, {'blockNum': '0x98ac38', 'uniqueId': '0x7c242e2bee2c365b946639123d306069185bebabe1471112429873a5c888a391:log:47', 'hash': '0x7c242e2bee2c365b946639123d306069185bebabe1471112429873a5c888a391', 'from': '0x0fdb6148c2e4ea89df8edf1ff579645bf4b266cc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T10:00:03.000Z'}}, {'blockNum': '0x98ac4b', 'uniqueId': '0xf2290afbfc797f69c61e07c8ed82e39acd4c3657f4f76a30b57fff0932b53ab3:log:17', 'hash': '0xf2290afbfc797f69c61e07c8ed82e39acd4c3657f4f76a30b57fff0932b53ab3', 'from': '0xc4214b7d8651299e170ddecd36a236eea405ed9f', 'to': '0x14928fffa2612e5d4d09cd27263a71fe3b842a02', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T10:04:02.000Z'}}, {'blockNum': '0x98acfe', 'uniqueId': '0x145dbc9a91369110272f364235fe3123442faafa793fc91e26ac24698d792751:log:37', 'hash': '0x145dbc9a91369110272f364235fe3123442faafa793fc91e26ac24698d792751', 'from': '0x6c4fb4afa570f98a76147c73041418a60da3e584', 'to': '0xb76c291871b92a7c9e020b2511a3402a3bf0499d', 'value': 41.10320483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf4fe8363', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T10:41:10.000Z'}}, {'blockNum': '0x98acfe', 'uniqueId': '0x145dbc9a91369110272f364235fe3123442faafa793fc91e26ac24698d792751:log:39', 'hash': '0x145dbc9a91369110272f364235fe3123442faafa793fc91e26ac24698d792751', 'from': '0xb76c291871b92a7c9e020b2511a3402a3bf0499d', 'to': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'value': 41.10320483, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xf4fe8363', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T10:41:10.000Z'}}, {'blockNum': '0x98ad44', 'uniqueId': '0xf5fc25569c15f175dbb9b8ae9304534d1202678b84b7bec0dfa75cefab7bbc12:log:34', 'hash': '0xf5fc25569c15f175dbb9b8ae9304534d1202678b84b7bec0dfa75cefab7bbc12', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x28e2f0a84d43b035dc9223a2c894269f883b89c2', 'value': 17832.101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x019f2f9ac520', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T10:53:27.000Z'}}, {'blockNum': '0x98adcf', 'uniqueId': '0xc1b012d53300e331b37f6fb8786a8fdfc44efe6bbf4a4edc52e5fb25794823e4:log:19', 'hash': '0xc1b012d53300e331b37f6fb8786a8fdfc44efe6bbf4a4edc52e5fb25794823e4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 97592.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e042ec7810', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T11:27:46.000Z'}}, {'blockNum': '0x98adcf', 'uniqueId': '0xd0ed2375b6c6bb23cfacd015255ca6a4252b9ab1e99e37a12e8d1adc1c6b253a:log:155', 'hash': '0xd0ed2375b6c6bb23cfacd015255ca6a4252b9ab1e99e37a12e8d1adc1c6b253a', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0xbf9b2782596840622300c7d1b594abcc863ea0e4', 'value': 122.54666996, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02da6f60f4', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T11:27:46.000Z'}}, {'blockNum': '0x98ae1a', 'uniqueId': '0x44d95ca0ef8154439dd1bf84b6aa87e656f273482f5e0bc483ec0f2dc037bb7b:log:94', 'hash': '0x44d95ca0ef8154439dd1bf84b6aa87e656f273482f5e0bc483ec0f2dc037bb7b', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T11:42:33.000Z'}}, {'blockNum': '0x98ae2f', 'uniqueId': '0x2edec63671dd5d853d2bb0f340d38b89d398dc8c64e8f091f32517def72a13e9:log:84', 'hash': '0x2edec63671dd5d853d2bb0f340d38b89d398dc8c64e8f091f32517def72a13e9', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 9452.95034142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xdc17f9871e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T11:47:52.000Z'}}, {'blockNum': '0x98ae2f', 'uniqueId': '0x2edec63671dd5d853d2bb0f340d38b89d398dc8c64e8f091f32517def72a13e9:log:86', 'hash': '0x2edec63671dd5d853d2bb0f340d38b89d398dc8c64e8f091f32517def72a13e9', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf4f7189674b96ef179df71daaae21ab5cddd746f', 'value': 9452.95034142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xdc17f9871e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T11:47:52.000Z'}}, {'blockNum': '0x98aec1', 'uniqueId': '0xfe37c0d76180748bf2fa2141da4d1a252f4261012989745e9b9a4672539141a0:log:28', 'hash': '0xfe37c0d76180748bf2fa2141da4d1a252f4261012989745e9b9a4672539141a0', 'from': '0x9e753ae8e58688171c48247f3716f5542aa5e42f', 'to': '0x7d0272d1cd58626f97057afa4f53dc7dc544d0df', 'value': 44650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040f96bd2a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T12:21:17.000Z'}}, {'blockNum': '0x98aed3', 'uniqueId': '0x0db875a5783853549d16a6500074d1e8f04ef47f7d1d6f621e27a0b5e9d5b10d:log:77', 'hash': '0x0db875a5783853549d16a6500074d1e8f04ef47f7d1d6f621e27a0b5e9d5b10d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc32821e2f12255b06bd53dae962f00addbfec5ce', 'value': 18030.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01a3cc5ddb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T12:26:29.000Z'}}, {'blockNum': '0x98aee0', 'uniqueId': '0x71f87c7ef285544ebb3ab035d0b31e64042cce07897ba189bf920447f114b999:log:25', 'hash': '0x71f87c7ef285544ebb3ab035d0b31e64042cce07897ba189bf920447f114b999', 'from': '0xc32821e2f12255b06bd53dae962f00addbfec5ce', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 18030.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01a3cc5ddb00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T12:30:49.000Z'}}, {'blockNum': '0x98af7c', 'uniqueId': '0xdc9b6830fae3a20597180fb4d267bb88c4bdf08508d494d85bd8882401203aad:log:59', 'hash': '0xdc9b6830fae3a20597180fb4d267bb88c4bdf08508d494d85bd8882401203aad', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T13:04:17.000Z'}}, {'blockNum': '0x98af8a', 'uniqueId': '0xdc611bbee413f310147ca8b9c13aac9b746438c91eb20e52765468507f41079a:log:42', 'hash': '0xdc611bbee413f310147ca8b9c13aac9b746438c91eb20e52765468507f41079a', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T13:06:14.000Z'}}, {'blockNum': '0x98afa5', 'uniqueId': '0x26159d0fb72d736508416bbcbe5fd9e948e8bcede1e37fbff3b576e79beb6fb4:log:127', 'hash': '0x26159d0fb72d736508416bbcbe5fd9e948e8bcede1e37fbff3b576e79beb6fb4', 'from': '0xde45d80e5e237d70dd3a5593f130e6c7c0fcec8c', 'to': '0x89068b79ea0fcb492dd4f90b3a886888fec5ecc5', 'value': 2402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x37ed092200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T13:12:18.000Z'}}, {'blockNum': '0x98afae', 'uniqueId': '0x9f4881c4c83f0556724c85afd1e184b5eb4fa681806d6afc4a3e1d3384c2e1cd:log:27', 'hash': '0x9f4881c4c83f0556724c85afd1e184b5eb4fa681806d6afc4a3e1d3384c2e1cd', 'from': '0x89068b79ea0fcb492dd4f90b3a886888fec5ecc5', 'to': '0xcb6fa10e937a246275cf9ea7003c1a5cf981f7f5', 'value': 2402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x37ed092200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T13:14:44.000Z'}}, {'blockNum': '0x98afe7', 'uniqueId': '0x66ab383d4f3f5b895f6ba0a1df71b0a80f5e33f4f4a6373122f34d8418834c9c:log:27', 'hash': '0x66ab383d4f3f5b895f6ba0a1df71b0a80f5e33f4f4a6373122f34d8418834c9c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 97592.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e042ec7810', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T13:26:04.000Z'}}, {'blockNum': '0x98b017', 'uniqueId': '0x7db308e93d4caf036fdde664db9a6b78d89ee3b152003cfbc57e2c51f1aaa01a:log:109', 'hash': '0x7db308e93d4caf036fdde664db9a6b78d89ee3b152003cfbc57e2c51f1aaa01a', 'from': '0x7891c07b20fff1918fad43cf6fc7e3f83900f06d', 'to': '0x62aab529a2471845e6b801ce55afa2cd86b0cb30', 'value': 1169.2100962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1b390905d4', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T13:42:03.000Z'}}, {'blockNum': '0x98b05b', 'uniqueId': '0xa2ad88a754256f798d318bf4ba5ac6ad54365890385c34da95e4257a7c65cbd0:log:19', 'hash': '0xa2ad88a754256f798d318bf4ba5ac6ad54365890385c34da95e4257a7c65cbd0', 'from': '0x29a1260e0b4d49de60b8632ffe072c980a13b363', 'to': '0x2201247b7491d42564fd33e7eb735f73726a1d7f', 'value': 10000.07597123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe8d518fc43', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T13:56:40.000Z'}}, {'blockNum': '0x98b0ba', 'uniqueId': '0x381d60125bd33474238dec2970b229400a16cae7416579478fa1e424c31d0f90:log:45', 'hash': '0x381d60125bd33474238dec2970b229400a16cae7416579478fa1e424c31d0f90', 'from': '0x97a060e62829e62f4aaee1fb2d9dbeccf400fa02', 'to': '0x2fcf8b2e33b5ccb4a8de3bc1aacc28a4c9e40862', 'value': 5034.2827854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7536a9e90c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:19:25.000Z'}}, {'blockNum': '0x98b0bc', 'uniqueId': '0xfcd35efe7f17da02413df871cc5ee7411a3f0bece78152a703aaf8efdae85906:log:22', 'hash': '0xfcd35efe7f17da02413df871cc5ee7411a3f0bece78152a703aaf8efdae85906', 'from': '0x2fcf8b2e33b5ccb4a8de3bc1aacc28a4c9e40862', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 5034.2827854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x7536a9e90c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:20:07.000Z'}}, {'blockNum': '0x98b0f2', 'uniqueId': '0x26b02629630d59052bbd8834d6405130a9bf8cd9438676590369e5e12f50c3a8:log:47', 'hash': '0x26b02629630d59052bbd8834d6405130a9bf8cd9438676590369e5e12f50c3a8', 'from': '0x73d0bb4f469c94bb06ef843f9c296c50bacd5c74', 'to': '0xc2f191a7207d5b902ebf856e3f74628602515b4d', 'value': 4960.76058903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x73806ff117', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:33:28.000Z'}}, {'blockNum': '0x98b0f8', 'uniqueId': '0x3e33810401d154b495c7f8299596e6072c687a52a357304303293cf8654d6a0b:log:23', 'hash': '0x3e33810401d154b495c7f8299596e6072c687a52a357304303293cf8654d6a0b', 'from': '0xc2f191a7207d5b902ebf856e3f74628602515b4d', 'to': '0x2ad7cb7ce3b5cbaa02481e416d85f5954748d292', 'value': 4960.76058903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x73806ff117', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:34:17.000Z'}}, {'blockNum': '0x98b0fc', 'uniqueId': '0xc9d3fc215816d47ba94109055ab5e895c29621680fa4e039cdf342469028d697:log:95', 'hash': '0xc9d3fc215816d47ba94109055ab5e895c29621680fa4e039cdf342469028d697', 'from': '0x73d0bb4f469c94bb06ef843f9c296c50bacd5c74', 'to': '0xe20637f475665d78c902375bbf4f52a0530b37b9', 'value': 4838.78195007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x70a9634f3f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:35:10.000Z'}}, {'blockNum': '0x98b102', 'uniqueId': '0xee702317906f064b036ba9f9b8fe2b35651df2a3b795a218946deb321a7c959a:log:0', 'hash': '0xee702317906f064b036ba9f9b8fe2b35651df2a3b795a218946deb321a7c959a', 'from': '0xe20637f475665d78c902375bbf4f52a0530b37b9', 'to': '0x2ad7cb7ce3b5cbaa02481e416d85f5954748d292', 'value': 4838.78195007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x70a9634f3f', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:35:57.000Z'}}, {'blockNum': '0x98b106', 'uniqueId': '0x8fe1d63ae6fe8a427e8fd3e3e311562069869bd6759400305e5bea2d7c0de98d:log:50', 'hash': '0x8fe1d63ae6fe8a427e8fd3e3e311562069869bd6759400305e5bea2d7c0de98d', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x262a47452e36f38eb445ef373a77e7c699db6ce3', 'value': 1554.28293042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x24303f89b2', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:37:12.000Z'}}, {'blockNum': '0x98b11f', 'uniqueId': '0xf96af1eae7206174e189925d1cac8c782f0bad7a5d45d4e60f6c5255ab753780:log:22', 'hash': '0xf96af1eae7206174e189925d1cac8c782f0bad7a5d45d4e60f6c5255ab753780', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 1554.282931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x24303f89ec', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:42:08.000Z'}}, {'blockNum': '0x98b11f', 'uniqueId': '0x902ec4d63d114d1276f8e80fab59fcec3315e1ba87b3eaebc5e9f5304b32fb8e:log:92', 'hash': '0x902ec4d63d114d1276f8e80fab59fcec3315e1ba87b3eaebc5e9f5304b32fb8e', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:42:08.000Z'}}, {'blockNum': '0x98b12f', 'uniqueId': '0xa02b2b973a1cd3e8f209660020de77d20151a8746ba3c907fea486cd3cb4108f:log:60', 'hash': '0xa02b2b973a1cd3e8f209660020de77d20151a8746ba3c907fea486cd3cb4108f', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 97641.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e166fc8910', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:44:56.000Z'}}, {'blockNum': '0x98b133', 'uniqueId': '0x7f0e841a69b7423cb170b57ca22497aac790ef81351538ac557aecaa7115c9d9:log:70', 'hash': '0x7f0e841a69b7423cb170b57ca22497aac790ef81351538ac557aecaa7115c9d9', 'from': '0x3e3bda598f8fdf4394ef2e6cc45b94aeb53063a6', 'to': '0x854d62516b6824228314093815d6104b515e9d33', 'value': 1274.163758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1daa9b99f8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:46:05.000Z'}}, {'blockNum': '0x98b168', 'uniqueId': '0x71ac87163c3d07014d139fa2ac177ac845c9c5fe96c566b287ffdcca427c3fb0:log:27', 'hash': '0x71ac87163c3d07014d139fa2ac177ac845c9c5fe96c566b287ffdcca427c3fb0', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x38cc7329ec1453e99551988e50d60bcd439296a0', 'value': 33064.79, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0301d98199c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:57:25.000Z'}}, {'blockNum': '0x98b175', 'uniqueId': '0x372e01e3c0f6c436f80fb4368be469076dc02fd65d2fbf95ae1fbf1ecfe3a1d0:log:46', 'hash': '0x372e01e3c0f6c436f80fb4368be469076dc02fd65d2fbf95ae1fbf1ecfe3a1d0', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97641.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e166fc8910', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T14:59:59.000Z'}}, {'blockNum': '0x98b17d', 'uniqueId': '0xa7ee7e77afed80c9c0fcf40445a714e649a2ccc9f72459c19710f405d1f23b51:log:49', 'hash': '0xa7ee7e77afed80c9c0fcf40445a714e649a2ccc9f72459c19710f405d1f23b51', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb05d4613a23b97419af37f020ee13dfa3924d012', 'value': 3432.15853048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x4fe9424df8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:01:29.000Z'}}, {'blockNum': '0x98b203', 'uniqueId': '0xc377f651d1089a3276784fbb2f70938aeaeca1f9d4968f66c57b5beca178f0fa:log:4', 'hash': '0xc377f651d1089a3276784fbb2f70938aeaeca1f9d4968f66c57b5beca178f0fa', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7ce64114c7a739e16918bffad3c4218eae9345c1', 'value': 173.77917841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040bcdfb91', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:34:29.000Z'}}, {'blockNum': '0x98b203', 'uniqueId': '0xbe77facc8efd55195546b8b61fa92d75a4c2b23776ff1f209a9a2dcf53bda4bb:log:86', 'hash': '0xbe77facc8efd55195546b8b61fa92d75a4c2b23776ff1f209a9a2dcf53bda4bb', 'from': '0x2201247b7491d42564fd33e7eb735f73726a1d7f', 'to': '0x9c9e8b5ff06899812f698f50ed983cb68e4a59e7', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05f5e100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:34:29.000Z'}}, {'blockNum': '0x98b237', 'uniqueId': '0x3c6221217f4f2bcfe6a3e83889c1f9eed70f1ed81dd84d922de4197586f4e1ca:log:28', 'hash': '0x3c6221217f4f2bcfe6a3e83889c1f9eed70f1ed81dd84d922de4197586f4e1ca', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x38cc7329ec1453e99551988e50d60bcd439296a0', 'value': 26723.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x026e343bea80', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:46:50.000Z'}}, {'blockNum': '0x98b239', 'uniqueId': '0x35ae54d38878526bd0e50ad419873eaeab3ed6476725da83501e7ed329705ca8:log:18', 'hash': '0x35ae54d38878526bd0e50ad419873eaeab3ed6476725da83501e7ed329705ca8', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0xd3de131c042e766a9003639702eb41665ea94548', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0574fbde6000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:47:14.000Z'}}, {'blockNum': '0x98b23d', 'uniqueId': '0x1737037e29ce55e5f89d11b2f308bad8d413230f7d462913941880cf8ec83bae:log:85', 'hash': '0x1737037e29ce55e5f89d11b2f308bad8d413230f7d462913941880cf8ec83bae', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 28901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a0e7624500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:48:42.000Z'}}, {'blockNum': '0x98b23e', 'uniqueId': '0xfa647fd761e84f186059195a091365796a1c5e2f54baecbca00ebafcaf66977a:log:0', 'hash': '0xfa647fd761e84f186059195a091365796a1c5e2f54baecbca00ebafcaf66977a', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 28901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a0e7624500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:48:53.000Z'}}, {'blockNum': '0x98b240', 'uniqueId': '0xf3cb82a27fb1893b0293492b3385ea57bfc36a0f521002ffc76ff3ae202617cf:log:6', 'hash': '0xf3cb82a27fb1893b0293492b3385ea57bfc36a0f521002ffc76ff3ae202617cf', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 28901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a0e7624500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:49:07.000Z'}}, {'blockNum': '0x98b242', 'uniqueId': '0x8ca395b3c9c3e3410155e117cef69646d3b7ca77d9ee42e0b54e87656b76375e:log:33', 'hash': '0x8ca395b3c9c3e3410155e117cef69646d3b7ca77d9ee42e0b54e87656b76375e', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 28901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a0e7624500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:49:21.000Z'}}, {'blockNum': '0x98b243', 'uniqueId': '0x71846e6dffad0e5d419935af756711b1a18a9f4559dce5457424e41a0489b19d:log:1', 'hash': '0x71846e6dffad0e5d419935af756711b1a18a9f4559dce5457424e41a0489b19d', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 28901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02a0e7624500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:49:57.000Z'}}, {'blockNum': '0x98b25e', 'uniqueId': '0x2ff0ed5eb4b889d76ac9bad4200dd2905856dec6696fe8605db9458f2ebc9a2e:log:103', 'hash': '0x2ff0ed5eb4b889d76ac9bad4200dd2905856dec6696fe8605db9458f2ebc9a2e', 'from': '0xd3de131c042e766a9003639702eb41665ea94548', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 60000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0574fbde6000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:54:06.000Z'}}, {'blockNum': '0x98b262', 'uniqueId': '0xdffa4f627dfda997c4b4c0c956262441de00a60cd2011218b89e73ef179ad23e:log:4', 'hash': '0xdffa4f627dfda997c4b4c0c956262441de00a60cd2011218b89e73ef179ad23e', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x38cc7329ec1453e99551988e50d60bcd439296a0', 'value': 32386.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02f20f9898c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:54:34.000Z'}}, {'blockNum': '0x98b268', 'uniqueId': '0x7b0bc09e05b37da661816b72a616f3580f64993bbfa90f3163608029adb59da5:log:6', 'hash': '0x7b0bc09e05b37da661816b72a616f3580f64993bbfa90f3163608029adb59da5', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 107433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09c55e948900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:55:25.000Z'}}, {'blockNum': '0x98b268', 'uniqueId': '0x35c62693e59f58741ef0f2fea55ab767710ba509320cd3684d870b585d187157:log:7', 'hash': '0x35c62693e59f58741ef0f2fea55ab767710ba509320cd3684d870b585d187157', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x38cc7329ec1453e99551988e50d60bcd439296a0', 'value': 13856.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01429fb664c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T15:55:25.000Z'}}, {'blockNum': '0x98b27b', 'uniqueId': '0xcf1f2cd452de12d6c6e59874437e139ed1c8891dd22138b9228f98fe69a332c4:log:16', 'hash': '0xcf1f2cd452de12d6c6e59874437e139ed1c8891dd22138b9228f98fe69a332c4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 21460.83776396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01f3ac8fa78c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:00:04.000Z'}}, {'blockNum': '0x98b27b', 'uniqueId': '0xcf1f2cd452de12d6c6e59874437e139ed1c8891dd22138b9228f98fe69a332c4:log:18', 'hash': '0xcf1f2cd452de12d6c6e59874437e139ed1c8891dd22138b9228f98fe69a332c4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3911c614be43ac656d818092236be68e413d2708', 'value': 21460.83776396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01f3ac8fa78c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:00:04.000Z'}}, {'blockNum': '0x98b27b', 'uniqueId': '0x32c976342a39192279c3f4c7903e20b123495eeb9631741c5803f902894cde71:log:150', 'hash': '0x32c976342a39192279c3f4c7903e20b123495eeb9631741c5803f902894cde71', 'from': '0x38cc7329ec1453e99551988e50d60bcd439296a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 106031.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09a4bd0c81c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:00:04.000Z'}}, {'blockNum': '0x98b27e', 'uniqueId': '0x3535ee10fd3de6dcc182c3c66a0975bd9aeb7e9d5e9b3078755d02fc72a163f4:log:2', 'hash': '0x3535ee10fd3de6dcc182c3c66a0975bd9aeb7e9d5e9b3078755d02fc72a163f4', 'from': '0x3911c614be43ac656d818092236be68e413d2708', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 21460.83776396, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01f3ac8fa78c', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:00:46.000Z'}}, {'blockNum': '0x98b27f', 'uniqueId': '0xdb915142c9129d8cea2035a579a2d7274d3f6b1ee81334029c4e26e10cc37cdb:log:200', 'hash': '0xdb915142c9129d8cea2035a579a2d7274d3f6b1ee81334029c4e26e10cc37cdb', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 97846.2783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e629441cf0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:01:00.000Z'}}, {'blockNum': '0x98b280', 'uniqueId': '0x72e2517b806b121c7ee4e5983c174c23285e8c149b63dfc86829b6d837ab49a3:log:24', 'hash': '0x72e2517b806b121c7ee4e5983c174c23285e8c149b63dfc86829b6d837ab49a3', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x38cc7329ec1453e99551988e50d60bcd439296a0', 'value': 31189.63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d630ae82c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:01:21.000Z'}}, {'blockNum': '0x98b280', 'uniqueId': '0x069f35e167da8bf555774240077d586a72da19b00ed15726a944c8eb33e4a00f:log:25', 'hash': '0x069f35e167da8bf555774240077d586a72da19b00ed15726a944c8eb33e4a00f', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 69022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x06470b2dde00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:01:21.000Z'}}, {'blockNum': '0x98b286', 'uniqueId': '0x1d8266f1acd5737889efcbe78a01949e9307feacb9dfbf532c7a7346eebfe7ae:log:62', 'hash': '0x1d8266f1acd5737889efcbe78a01949e9307feacb9dfbf532c7a7346eebfe7ae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 481000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2bbf2769e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:02:36.000Z'}}, {'blockNum': '0x98b29e', 'uniqueId': '0x7037e3d469c85e3299e057efbb11c25897868f78c8b5592adf0bd3e6d95e65e7:log:25', 'hash': '0x7037e3d469c85e3299e057efbb11c25897868f78c8b5592adf0bd3e6d95e65e7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 199998.86928153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x12309627e919', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:06:29.000Z'}}, {'blockNum': '0x98b2a4', 'uniqueId': '0x9349156f8ced6767762822405b8e65af339505d85ab45bc81f5e3ac5714a85f9:log:2', 'hash': '0x9349156f8ced6767762822405b8e65af339505d85ab45bc81f5e3ac5714a85f9', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 9157, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xd533f92500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:09:03.000Z'}}, {'blockNum': '0x98b2aa', 'uniqueId': '0xf12525e15704039239a38df2ff52b121113956ab0e9c6283aeac30cde7d3d533:log:86', 'hash': '0xf12525e15704039239a38df2ff52b121113956ab0e9c6283aeac30cde7d3d533', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 481000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2bbf2769e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:09:57.000Z'}}, {'blockNum': '0x98b2ab', 'uniqueId': '0xa2d60a5d8d061b85acf288b95f764623e96e3a3101aa56404712082bfc459d7e:log:10', 'hash': '0xa2d60a5d8d061b85acf288b95f764623e96e3a3101aa56404712082bfc459d7e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 54989.5316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x050053265540', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:10:04.000Z'}}, {'blockNum': '0x98b2b3', 'uniqueId': '0x34e6f2b4aaeb4634f7ae79fcc7fee14a8598a346a65c10aeea4c79e97e1282bc:log:23', 'hash': '0x34e6f2b4aaeb4634f7ae79fcc7fee14a8598a346a65c10aeea4c79e97e1282bc', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 11106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x010294eb2200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:11:16.000Z'}}, {'blockNum': '0x98b2cd', 'uniqueId': '0x1f04d009ab7d298ed969f14238c5b5632dfd303e037294ebaadd514d9297d61f:log:4', 'hash': '0x1f04d009ab7d298ed969f14238c5b5632dfd303e037294ebaadd514d9297d61f', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xd8306bb195cb2a6430459ed1a3c0fd8ce1359131', 'value': 423.45794392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x09dc018b58', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:19:09.000Z'}}, {'blockNum': '0x98b2d1', 'uniqueId': '0xc73c7f6558f421521f181fdd10357fe18a5be3fdf1eb7a7d504da6ea2a88a09f:log:12', 'hash': '0xc73c7f6558f421521f181fdd10357fe18a5be3fdf1eb7a7d504da6ea2a88a09f', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 132880.86965176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c15dfb40bb8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:19:44.000Z'}}, {'blockNum': '0x98b2da', 'uniqueId': '0x1300130f71a4a89606fe4f73e307fce5fc3fc7d97cc5e2c680ef169ee73e4d0e:log:263', 'hash': '0x1300130f71a4a89606fe4f73e307fce5fc3fc7d97cc5e2c680ef169ee73e4d0e', 'from': '0x08b31365ca49cc2bacddb0e36b910debaff9340c', 'to': '0xfe40247216ce6e0adb15b725a5fc4d03781691de', 'value': 1808.94449992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2a1e264148', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:22:02.000Z'}}, {'blockNum': '0x98b2df', 'uniqueId': '0xed245655ca2f113a738fbe5a2720f13a34ccd5cc79163910244a2915b32ce741:log:73', 'hash': '0xed245655ca2f113a738fbe5a2720f13a34ccd5cc79163910244a2915b32ce741', 'from': '0xfe40247216ce6e0adb15b725a5fc4d03781691de', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1808.94449992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2a1e264148', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:23:20.000Z'}}, {'blockNum': '0x98b2e7', 'uniqueId': '0xd387a50ac83b6759fc58b9eabda6c616754d338ce08fcccdbe5f1753139cb7cc:log:1', 'hash': '0xd387a50ac83b6759fc58b9eabda6c616754d338ce08fcccdbe5f1753139cb7cc', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x1d0c66c2a360f459bb16d9e1794d83da2861229c', 'value': 30278.59339927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02c0fa7afa97', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:24:55.000Z'}}, {'blockNum': '0x98b2f0', 'uniqueId': '0xa88b246b223e9066e22a1dfbf9cc6ba5ed2e1523c21a402ad30129b5abe27138:log:26', 'hash': '0xa88b246b223e9066e22a1dfbf9cc6ba5ed2e1523c21a402ad30129b5abe27138', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'value': 1603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x25529fe300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:26:21.000Z'}}, {'blockNum': '0x98b2fe', 'uniqueId': '0x96b6d1f26d0de3119387e1e1e89db5b038fdb9b3a20baae5cad2dfe87c00441d:log:86', 'hash': '0x96b6d1f26d0de3119387e1e1e89db5b038fdb9b3a20baae5cad2dfe87c00441d', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 132880.86965176, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0c15dfb40bb8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:30:15.000Z'}}, {'blockNum': '0x98b2fe', 'uniqueId': '0xe32857da9dd0ad4aedb3c205d992111cc1d095b97cfd0893a4ed441eadcd6059:log:100', 'hash': '0xe32857da9dd0ad4aedb3c205d992111cc1d095b97cfd0893a4ed441eadcd6059', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42056.65135701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03d3352d2c55', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:30:15.000Z'}}, {'blockNum': '0x98b2fe', 'uniqueId': '0x2a1bd40e1bde1458f4ee04430ec4b69ae4e876a271ac6b9c8795041eba2184a2:log:111', 'hash': '0x2a1bd40e1bde1458f4ee04430ec4b69ae4e876a271ac6b9c8795041eba2184a2', 'from': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 144505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0d2484eb5900', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:30:15.000Z'}}, {'blockNum': '0x98b2fe', 'uniqueId': '0xc44e1f969ba8d270386d3be2c5550bc852dc74ce94df138c06daa0ae65f84d6d:log:121', 'hash': '0xc44e1f969ba8d270386d3be2c5550bc852dc74ce94df138c06daa0ae65f84d6d', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 176455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x100c69c26700', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:30:15.000Z'}}, {'blockNum': '0x98b311', 'uniqueId': '0x1a184f35450fdbeca48d6756691d3a06b72da03b4f14bdde45d3a7395ea96a6e:log:78', 'hash': '0x1a184f35450fdbeca48d6756691d3a06b72da03b4f14bdde45d3a7395ea96a6e', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03e8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:33:44.000Z'}}, {'blockNum': '0x98b311', 'uniqueId': '0xe5006c67716191fb0822c466b86470285192b6d0019475c8f636aae04ef3ab6a:log:80', 'hash': '0xe5006c67716191fb0822c466b86470285192b6d0019475c8f636aae04ef3ab6a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03e8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:33:44.000Z'}}, {'blockNum': '0x98b313', 'uniqueId': '0x0befe4ce3732db4abf303a96a5d180c6c6c428048be4d2c9721a0d80a77e0693:log:108', 'hash': '0x0befe4ce3732db4abf303a96a5d180c6c6c428048be4d2c9721a0d80a77e0693', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03e8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:34:50.000Z'}}, {'blockNum': '0x98b313', 'uniqueId': '0x5f06ca8c9ff27d828821fae8d66bc79373ac04ee8cdf8ae5da6096a190ed8c43:log:110', 'hash': '0x5f06ca8c9ff27d828821fae8d66bc79373ac04ee8cdf8ae5da6096a190ed8c43', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x4660613f3e5e84970ad0f4ad498389ecea2e1233', 'value': 1e-05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x03e8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:34:50.000Z'}}, {'blockNum': '0x98b33a', 'uniqueId': '0x7aaf747ea1ab00a3aecad4f14c43a0c86b286c039ad705d07c0cc0e92b9b14e6:log:70', 'hash': '0x7aaf747ea1ab00a3aecad4f14c43a0c86b286c039ad705d07c0cc0e92b9b14e6', 'from': '0x485935f6315d54941ff6a2730b8bc1579b02c04c', 'to': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'value': 303.98670164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0713e6e554', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:43:44.000Z'}}, {'blockNum': '0x98b345', 'uniqueId': '0xb43ea2c2773916c9b16ae21fcd4692768beaa0b1b2cd9cae85aa2836fa875388:log:40', 'hash': '0xb43ea2c2773916c9b16ae21fcd4692768beaa0b1b2cd9cae85aa2836fa875388', 'from': '0xf7eb8641c2e17ddac360ba94982c559fd0750442', 'to': '0x066e20bae0b67b4f981a190cbf573da8d211998c', 'value': 108.90718048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0289232b60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:46:09.000Z'}}, {'blockNum': '0x98b352', 'uniqueId': '0xda1ffbfa51b5e00bf61200dbf283059272d9a92773c4c78eab14f5bbf39e3572:log:3', 'hash': '0xda1ffbfa51b5e00bf61200dbf283059272d9a92773c4c78eab14f5bbf39e3572', 'from': '0x066e20bae0b67b4f981a190cbf573da8d211998c', 'to': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'value': 108.90718048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0289232b60', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:50:31.000Z'}}, {'blockNum': '0x98b352', 'uniqueId': '0x24793161295550f14d4ff7c107799d6902d74da89495ceff016fefa66f0339b2:log:30', 'hash': '0x24793161295550f14d4ff7c107799d6902d74da89495ceff016fefa66f0339b2', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7757b95208744ca874842def04dca94b560b64ce', 'value': 172.9019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0406935cb0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T16:50:31.000Z'}}, {'blockNum': '0x98b3ab', 'uniqueId': '0xe2c656e106ea58f32a3b4969bf09746da7008c83c7b9b385a26b0c07a01fb918:log:13', 'hash': '0xe2c656e106ea58f32a3b4969bf09746da7008c83c7b9b385a26b0c07a01fb918', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x32d07f4af7418e426c50aea96f9297a27cfbb3a1', 'value': 2541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3b298a4d00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:10:11.000Z'}}, {'blockNum': '0x98b3b3', 'uniqueId': '0x3e51fa0f0559ff36c89e4e494c36bad65626066373f0f8b9d132b74cfaa68301:log:46', 'hash': '0x3e51fa0f0559ff36c89e4e494c36bad65626066373f0f8b9d132b74cfaa68301', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:11:49.000Z'}}, {'blockNum': '0x98b3b6', 'uniqueId': '0x1795be2bc4693ae78f6af5f3ec810fd9d2564581459e53c7bd001b14c2408cd8:log:2', 'hash': '0x1795be2bc4693ae78f6af5f3ec810fd9d2564581459e53c7bd001b14c2408cd8', 'from': '0xdb11468266e3158301362b135f883c961fe21c7d', 'to': '0xf506cacfbf48aca59560c3deb6226b2e6e610cee', 'value': 796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1288879c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:13:07.000Z'}}, {'blockNum': '0x98b3d3', 'uniqueId': '0xcc8fcbf100856d4b0117673c40359295592ebbda216d1ccff5b3a1a57096cfc5:log:36', 'hash': '0xcc8fcbf100856d4b0117673c40359295592ebbda216d1ccff5b3a1a57096cfc5', 'from': '0x32d07f4af7418e426c50aea96f9297a27cfbb3a1', 'to': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'value': 2541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3b298a4d00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:22:32.000Z'}}, {'blockNum': '0x98b3d6', 'uniqueId': '0x995413b1d3138cef728c832f3288f6adc9761649b1022b56591725e89d1f98b4:log:149', 'hash': '0x995413b1d3138cef728c832f3288f6adc9761649b1022b56591725e89d1f98b4', 'from': '0x2201247b7491d42564fd33e7eb735f73726a1d7f', 'to': '0x946e70c550d4f03ecf426f0f7d288df53717ad77', 'value': 9999.07597123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0xe8cf231b43', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:22:58.000Z'}}, {'blockNum': '0x98b3f3', 'uniqueId': '0x88d4f73958bff44954419db6aac32e9352851d60b75431d8ad81c4e6ff4d0987:log:7', 'hash': '0x88d4f73958bff44954419db6aac32e9352851d60b75431d8ad81c4e6ff4d0987', 'from': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x25529fe300', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:28:08.000Z'}}, {'blockNum': '0x98b40b', 'uniqueId': '0x4935865fffa19faa3743021f0689b3e01723b7525b088a547e0c7dc4d033f496:log:30', 'hash': '0x4935865fffa19faa3743021f0689b3e01723b7525b088a547e0c7dc4d033f496', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:33:44.000Z'}}, {'blockNum': '0x98b426', 'uniqueId': '0x1739e6e30e210dcb2c03adc588d2aa790cf70584da833b1e91f136b12485e23f:log:6', 'hash': '0x1739e6e30e210dcb2c03adc588d2aa790cf70584da833b1e91f136b12485e23f', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x3ba539a2f5d7307205d4c0801b26e1cfc041d711', 'value': 2330.3805258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3642267ce4', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:39:20.000Z'}}, {'blockNum': '0x98b42e', 'uniqueId': '0xe6c97c24588d1830d7a47dea44916d419a10344cb5594228463716c122c79ead:log:85', 'hash': '0xe6c97c24588d1830d7a47dea44916d419a10344cb5594228463716c122c79ead', 'from': '0xb9824ed9e8ce64d9a50f6557a82710375f4d8791', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 105.56862789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02753cf145', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:40:53.000Z'}}, {'blockNum': '0x98b42e', 'uniqueId': '0xe6c97c24588d1830d7a47dea44916d419a10344cb5594228463716c122c79ead:log:86', 'hash': '0xe6c97c24588d1830d7a47dea44916d419a10344cb5594228463716c122c79ead', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 105.56862789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02753cf145', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:40:53.000Z'}}, {'blockNum': '0x98b46c', 'uniqueId': '0x0f6134ed4f639eba0bf4488484dd3f3045f10762ee37188fc233b102ad7decb8:log:34', 'hash': '0x0f6134ed4f639eba0bf4488484dd3f3045f10762ee37188fc233b102ad7decb8', 'from': '0x8fce55d9af6d29c095d40d00b08ac516c76edc99', 'to': '0x749f13ceb2ee23f27f040468847ce0c483142a51', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02e90edd00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:53:21.000Z'}}, {'blockNum': '0x98b47b', 'uniqueId': '0x9fc886a046a8e3d2dac46bf01c92e60371b91e614ca52bef94a22ac4f8367261:log:3', 'hash': '0x9fc886a046a8e3d2dac46bf01c92e60371b91e614ca52bef94a22ac4f8367261', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x0df854ba630921ed6b149a25b8abfbc650f5ac94', 'value': 984.66128929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x16ed09e421', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T17:55:28.000Z'}}, {'blockNum': '0x98b4b1', 'uniqueId': '0x76b38b4a5c7002857293556b2245815c7e8cee4d598f2aa1e79ee9790500dc53:log:61', 'hash': '0x76b38b4a5c7002857293556b2245815c7e8cee4d598f2aa1e79ee9790500dc53', 'from': '0xbfce1f09ba8812f9041832279c5918722c6a775c', 'to': '0x9ff18960ea83b6e6511e5bab9237c2b207c7cf43', 'value': 860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1405ffdc00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T18:08:21.000Z'}}, {'blockNum': '0x98b4ba', 'uniqueId': '0x12cfeb7459d981e6e0bc79890c99fad42c1a2aa86b36283595698dcf12efdafa:log:53', 'hash': '0x12cfeb7459d981e6e0bc79890c99fad42c1a2aa86b36283595698dcf12efdafa', 'from': '0x9ff18960ea83b6e6511e5bab9237c2b207c7cf43', 'to': '0x6a0f0e32e62358e2f649a8a981ee778dbf5f5004', 'value': 860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1405ffdc00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T18:10:03.000Z'}}, {'blockNum': '0x98b50e', 'uniqueId': '0xbef31f88712017d76a0dac4b996664c434919b466f19e77ceabf67a731720936:log:21', 'hash': '0xbef31f88712017d76a0dac4b996664c434919b466f19e77ceabf67a731720936', 'from': '0xf506cacfbf48aca59560c3deb6226b2e6e610cee', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1288879c00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T18:29:32.000Z'}}, {'blockNum': '0x98b59b', 'uniqueId': '0x535aa76c56ae06ff5c8198ace4dced86af5dd57ee1a366c40907b42cb5b0ff1a:log:9', 'hash': '0x535aa76c56ae06ff5c8198ace4dced86af5dd57ee1a366c40907b42cb5b0ff1a', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x70c46553570fc658ab6bb3aad1adc9c955d55de4', 'value': 1957.1556559, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2d918e8816', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T19:00:30.000Z'}}, {'blockNum': '0x98b5a1', 'uniqueId': '0xb4e09fa40650756e2521954c9cb89ac369fecc009e72c29fd9deb10b92d2578a:log:45', 'hash': '0xb4e09fa40650756e2521954c9cb89ac369fecc009e72c29fd9deb10b92d2578a', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T19:02:58.000Z'}}, {'blockNum': '0x98b5b6', 'uniqueId': '0x6411036a8239016c0b6f07319fcd422a143953c8c5b151d7e02d8e305ae8ad59:log:58', 'hash': '0x6411036a8239016c0b6f07319fcd422a143953c8c5b151d7e02d8e305ae8ad59', 'from': '0x39e18108bb1a2d80e9356f7bd31507406daf1373', 'to': '0x48ba99a5d9b1c2c71c2e767626193451fd4598c3', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T19:07:22.000Z'}}, {'blockNum': '0x98b639', 'uniqueId': '0xafc70388a13b3e49f0c3b3d6e73a9df96fd01c767de913e3efd81f0e5ddf2e2f:log:23', 'hash': '0xafc70388a13b3e49f0c3b3d6e73a9df96fd01c767de913e3efd81f0e5ddf2e2f', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xf87a6ccf78aeadb382ce76d14f449f11a1183c69', 'value': 4598.77637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x6b12d7db88', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T19:35:31.000Z'}}, {'blockNum': '0x98b6aa', 'uniqueId': '0x206eba2c99a5458a397dc48f340f64295dfcbedbbe87c2443e5ac34d1c143749:log:27', 'hash': '0x206eba2c99a5458a397dc48f340f64295dfcbedbbe87c2443e5ac34d1c143749', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1967.19589538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2dcd66b8a2', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T19:56:45.000Z'}}, {'blockNum': '0x98b6bb', 'uniqueId': '0x31aa757ae052fd3ab1ef20a392e456e3a2a2c037aae370896faa3b615443018a:log:64', 'hash': '0x31aa757ae052fd3ab1ef20a392e456e3a2a2c037aae370896faa3b615443018a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xe1122973e878ddd72d531a605d87ebf40a076f3d', 'value': 1967.19589538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2dcd66b8a2', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T19:59:01.000Z'}}, {'blockNum': '0x98b6fa', 'uniqueId': '0x20cf078018a64273bfd6523e97399131f4648132b02df6c7a49c1faa6156b308:log:127', 'hash': '0x20cf078018a64273bfd6523e97399131f4648132b02df6c7a49c1faa6156b308', 'from': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'to': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T20:13:32.000Z'}}, {'blockNum': '0x98b72b', 'uniqueId': '0x24421e1963a44cf91c6988c98bd7f6c1137fe8aa99875861d98e57b6e33a4658:log:84', 'hash': '0x24421e1963a44cf91c6988c98bd7f6c1137fe8aa99875861d98e57b6e33a4658', 'from': '0x70c46553570fc658ab6bb3aad1adc9c955d55de4', 'to': '0x75622f87f48164704d5d8c74212b424393585553', 'value': 3079.1146146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x47b0f40a54', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T20:23:42.000Z'}}, {'blockNum': '0x98b730', 'uniqueId': '0xc2d57ebc41c18058f623e526a6a9a15224fe8385babf1edde466e9b86fabddb2:log:22', 'hash': '0xc2d57ebc41c18058f623e526a6a9a15224fe8385babf1edde466e9b86fabddb2', 'from': '0x75622f87f48164704d5d8c74212b424393585553', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 3079.1146146, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x47b0f40a54', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T20:26:14.000Z'}}, {'blockNum': '0x98b77c', 'uniqueId': '0x880bd137e90e1f5a90fe75b1cb7c28d8629f20c7de59f486c49c6d8a84dc379c:log:21', 'hash': '0x880bd137e90e1f5a90fe75b1cb7c28d8629f20c7de59f486c49c6d8a84dc379c', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T20:41:29.000Z'}}, {'blockNum': '0x98b77c', 'uniqueId': '0x88550e5671057576cab02d4a88dc0b7e9a9176e975955162a4d4c456d033cae2:log:23', 'hash': '0x88550e5671057576cab02d4a88dc0b7e9a9176e975955162a4d4c456d033cae2', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T20:41:29.000Z'}}, {'blockNum': '0x98b77c', 'uniqueId': '0xa06ea0c434f80c9c69c7a986328458be7330526f4a90ce85f6fa58e9a162e201:log:25', 'hash': '0xa06ea0c434f80c9c69c7a986328458be7330526f4a90ce85f6fa58e9a162e201', 'from': '0xa3db33ccfe990fdf89ff311754391b5c3af4ef04', 'to': '0x3674b37078db3c35721f5d1d4349a583eabea539', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T20:41:29.000Z'}}, {'blockNum': '0x98b7b9', 'uniqueId': '0x7012637b7901921b8bb5626271953340200926b8df69300e9a02053146818f60:log:2', 'hash': '0x7012637b7901921b8bb5626271953340200926b8df69300e9a02053146818f60', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x91f115eca2f7f7e4abca8ae81abf819d552f09dd', 'value': 820.13, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x13185b1140', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T20:55:37.000Z'}}, {'blockNum': '0x98b833', 'uniqueId': '0x3838a9870881084768c07e180c42dee7cbdbe5c594d0ee0bb886f3441d7113b4:log:99', 'hash': '0x3838a9870881084768c07e180c42dee7cbdbe5c594d0ee0bb886f3441d7113b4', 'from': '0xac38be298b75c7c082869461aae824bb9397244d', 'to': '0xe3f5ec2723daba9a7f20aa1be7820ae07683f5b9', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T21:20:46.000Z'}}, {'blockNum': '0x98b87b', 'uniqueId': '0x63397cd89ca6ba4fafae844d0af04df524f5d4f2c5d61a8add5047532ccd6220:log:114', 'hash': '0x63397cd89ca6ba4fafae844d0af04df524f5d4f2c5d61a8add5047532ccd6220', 'from': '0xe0283a5ded47311a04fde5c2731bb2fe99fabfbe', 'to': '0xfd1ae7056075e03fc282e682278873550e30cd9d', 'value': 2206.66957505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3360c68ec1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T21:35:47.000Z'}}, {'blockNum': '0x98b8e8', 'uniqueId': '0x7c82d6d98d845e78e90ce18befae473c9e88a5cd2c45cdf73c7d20f2da25669f:log:6', 'hash': '0x7c82d6d98d845e78e90ce18befae473c9e88a5cd2c45cdf73c7d20f2da25669f', 'from': '0x2ad7cb7ce3b5cbaa02481e416d85f5954748d292', 'to': '0xa8ba9d0be1375c430cc6438f69a1062bbc1428e8', 'value': 2743.29539591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3fdf509407', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T21:59:08.000Z'}}, {'blockNum': '0x98b914', 'uniqueId': '0x3f40fa3ae5a28a9cb1f5d5d962a74fdfc07ffc0ade8866ed2253b6e5427b60e6:log:1', 'hash': '0x3f40fa3ae5a28a9cb1f5d5d962a74fdfc07ffc0ade8866ed2253b6e5427b60e6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x642813b8bf960cbd8c3dbb8f06e1ca89a5fa14da', 'value': 11351.46147307, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x01084bfb9deb', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:07:23.000Z'}}, {'blockNum': '0x98b919', 'uniqueId': '0x157a93854c84a59ed2ab2bcd7052dcd87f31414c9dd81f77c1af1be736b9691f:log:128', 'hash': '0x157a93854c84a59ed2ab2bcd7052dcd87f31414c9dd81f77c1af1be736b9691f', 'from': '0x854d62516b6824228314093815d6104b515e9d33', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1274.163758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1daa9b99f8', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:08:29.000Z'}}, {'blockNum': '0x98b919', 'uniqueId': '0x26f566da8cf8c0875051fb4a3c24ea7622793510c4c673b66341591882dcc5e3:log:129', 'hash': '0x26f566da8cf8c0875051fb4a3c24ea7622793510c4c673b66341591882dcc5e3', 'from': '0x80bc7d818395c3e9ba153526afc0686adfd3a225', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 1674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x26f9d14a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:08:29.000Z'}}, {'blockNum': '0x98b919', 'uniqueId': '0xb364a52016c207a61d577b0d10f007e7790ca3017ba0d9a33507d416f64fc8b6:log:130', 'hash': '0xb364a52016c207a61d577b0d10f007e7790ca3017ba0d9a33507d416f64fc8b6', 'from': '0xfd1ae7056075e03fc282e682278873550e30cd9d', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 2206.66957505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3360c68ec1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:08:29.000Z'}}, {'blockNum': '0x98b919', 'uniqueId': '0x755fda51dee05d133610ec34eaf68bb520bfab13eaf3f464c5b013dc44aaa8eb:log:131', 'hash': '0x755fda51dee05d133610ec34eaf68bb520bfab13eaf3f464c5b013dc44aaa8eb', 'from': '0x7d0272d1cd58626f97057afa4f53dc7dc544d0df', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 44650, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x040f96bd2a00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:08:29.000Z'}}, {'blockNum': '0x98b919', 'uniqueId': '0x2bff1f5b30cf23629c0e0ee03faad94b3d160d2e97ab10d6340c2d77970a9f2e:log:132', 'hash': '0x2bff1f5b30cf23629c0e0ee03faad94b3d160d2e97ab10d6340c2d77970a9f2e', 'from': '0x14928fffa2612e5d4d09cd27263a71fe3b842a02', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:08:29.000Z'}}, {'blockNum': '0x98b919', 'uniqueId': '0x3584664d98177527c41eda5020dc01bda1694e8d481ae79c9a66af18f1265b64:log:133', 'hash': '0x3584664d98177527c41eda5020dc01bda1694e8d481ae79c9a66af18f1265b64', 'from': '0x497d0f5f074197da444db24ffd8f88030986f53d', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 12950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x012d8403d600', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:08:29.000Z'}}, {'blockNum': '0x98b91f', 'uniqueId': '0x85d3b682090d6240af934b6462505bed75d9d698038aeaef7b3c9e819f95a4c0:log:42', 'hash': '0x85d3b682090d6240af934b6462505bed75d9d698038aeaef7b3c9e819f95a4c0', 'from': '0xe0283a5ded47311a04fde5c2731bb2fe99fabfbe', 'to': '0xf830209d433eecbf899bc9e0e65e049c4922a8e1', 'value': 2206.66957505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3360c68ec1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:09:08.000Z'}}, {'blockNum': '0x98b972', 'uniqueId': '0xf1ee653c893f7d32dcdb9ea609b54a08f292944323ee7e83c262b580f2296db8:log:163', 'hash': '0xf1ee653c893f7d32dcdb9ea609b54a08f292944323ee7e83c262b580f2296db8', 'from': '0x642813b8bf960cbd8c3dbb8f06e1ca89a5fa14da', 'to': '0x20e2df0b52cbf21901099e0b281dfb1c9e697d11', 'value': 12453.60660894, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0121f547a19e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:25:49.000Z'}}, {'blockNum': '0x98b998', 'uniqueId': '0x02f8b60f391ac1dea7cef54b352dd87fbff9d2569c681eb51076709fb5aa3363:log:38', 'hash': '0x02f8b60f391ac1dea7cef54b352dd87fbff9d2569c681eb51076709fb5aa3363', 'from': '0xa910f92acdaf488fa6ef02174fb86208ad7722ba', 'to': '0x7303816c3b05fde18ecc89d6cb8d01287121c2ec', 'value': 182.84435214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0441d6570e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:33:32.000Z'}}, {'blockNum': '0x98b9fb', 'uniqueId': '0x1937c712c04eb11a6a699fdee998cca0b611168de9fdcc56cd785b481be5c66b:log:79', 'hash': '0x1937c712c04eb11a6a699fdee998cca0b611168de9fdcc56cd785b481be5c66b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:57:06.000Z'}}, {'blockNum': '0x98b9fb', 'uniqueId': '0x1937c712c04eb11a6a699fdee998cca0b611168de9fdcc56cd785b481be5c66b:log:81', 'hash': '0x1937c712c04eb11a6a699fdee998cca0b611168de9fdcc56cd785b481be5c66b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xe451d934d41b704a614d3fbd4f9fbd991823bbe4', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T22:57:06.000Z'}}, {'blockNum': '0x98ba91', 'uniqueId': '0x1faf7d577aebe6b06675faa5954badda9b29250ddfbfa4ecf1b808e4a4a7fa1a:log:31', 'hash': '0x1faf7d577aebe6b06675faa5954badda9b29250ddfbfa4ecf1b808e4a4a7fa1a', 'from': '0xa8ba9d0be1375c430cc6438f69a1062bbc1428e8', 'to': '0xb0d368304cf8df80dfe0e95f90baae7056121ec8', 'value': 2743.29539591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3fdf509407', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T23:30:31.000Z'}}, {'blockNum': '0x98ba99', 'uniqueId': '0x745280e2f551f223ba2d3e6b2f3a0bf5e7281ced0596448df33e99a05b7f0b8c:log:2', 'hash': '0x745280e2f551f223ba2d3e6b2f3a0bf5e7281ced0596448df33e99a05b7f0b8c', 'from': '0xb0d368304cf8df80dfe0e95f90baae7056121ec8', 'to': '0x2ad7cb7ce3b5cbaa02481e416d85f5954748d292', 'value': 2743.29539591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x3fdf509407', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-05T23:31:52.000Z'}}, {'blockNum': '0x98bb3f', 'uniqueId': '0x24a4c278fb56330b9a0e0e0c68057f629ce145cf3531b49e914b36517d0f5ec8:log:3', 'hash': '0x24a4c278fb56330b9a0e0e0c68057f629ce145cf3531b49e914b36517d0f5ec8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d8346d46229ef4aa64c456a37b2661be272c772', 'value': 83201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x07912c9ae100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:07:54.000Z'}}, {'blockNum': '0x98bb48', 'uniqueId': '0x9d5e96b31275ea8c6ab0ab1b560408c531c356be4a45f2e3b34b499943e8d46d:log:1', 'hash': '0x9d5e96b31275ea8c6ab0ab1b560408c531c356be4a45f2e3b34b499943e8d46d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 97592.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e042ec7810', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:09:58.000Z'}}, {'blockNum': '0x98bb48', 'uniqueId': '0x5ea5fdca2cc24b3a0e5c26282e060ca4047634888447793c584fc1ebc0e67d4d:log:3', 'hash': '0x5ea5fdca2cc24b3a0e5c26282e060ca4047634888447793c584fc1ebc0e67d4d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3b8475fbdfaba6132f7bf06597b7a2f2edba70f0', 'value': 35589.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x033ca20297c0', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:09:58.000Z'}}, {'blockNum': '0x98bb48', 'uniqueId': '0xadfb0eb9d25f6a57f55318227cf2804c62874900c9a0f2ef111f0b8ccdafa9ce:log:4', 'hash': '0xadfb0eb9d25f6a57f55318227cf2804c62874900c9a0f2ef111f0b8ccdafa9ce', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 125008.1155744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0b5e926eaa40', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:09:58.000Z'}}, {'blockNum': '0x98bb57', 'uniqueId': '0xf14bebd4803adebca2a2d2ca680a0808431157640ff0b3e1be598cb3d21b411c:log:52', 'hash': '0xf14bebd4803adebca2a2d2ca680a0808431157640ff0b3e1be598cb3d21b411c', 'from': '0x1c6c712b1f4a7c263b1dbd8f97fb447c945d3b9a', 'to': '0x1f50cc72ba3c129fa0d56a7f4ddaa532cb6a0c23', 'value': 661.93597941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f697225f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:12:53.000Z'}}, {'blockNum': '0x98bb57', 'uniqueId': '0xf14bebd4803adebca2a2d2ca680a0808431157640ff0b3e1be598cb3d21b411c:log:54', 'hash': '0xf14bebd4803adebca2a2d2ca680a0808431157640ff0b3e1be598cb3d21b411c', 'from': '0x1f50cc72ba3c129fa0d56a7f4ddaa532cb6a0c23', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 661.93597941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f697225f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:12:53.000Z'}}, {'blockNum': '0x98bb57', 'uniqueId': '0xf14bebd4803adebca2a2d2ca680a0808431157640ff0b3e1be598cb3d21b411c:log:55', 'hash': '0xf14bebd4803adebca2a2d2ca680a0808431157640ff0b3e1be598cb3d21b411c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 661.93597941, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0f697225f5', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:12:53.000Z'}}, {'blockNum': '0x98bb9a', 'uniqueId': '0x6448e9c3e69044790053605f45fbf71ca6412d9aaae6c72f4a736938346d3135:log:185', 'hash': '0x6448e9c3e69044790053605f45fbf71ca6412d9aaae6c72f4a736938346d3135', 'from': '0x7303816c3b05fde18ecc89d6cb8d01287121c2ec', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 182.84435214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x0441d6570e', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:28:31.000Z'}}, {'blockNum': '0x98bbb7', 'uniqueId': '0xf6485f0c75e457ca5244e1ba1b6d90ba57c8211e159a4de7abe35cbd40812250:log:95', 'hash': '0xf6485f0c75e457ca5244e1ba1b6d90ba57c8211e159a4de7abe35cbd40812250', 'from': '0xcf87b41a3df574dd342c93a4495f809c1f630f1e', 'to': '0x6c8d8666e8d8ea6227c12d037a6af8f8464070a7', 'value': 1163.97163441, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x1b19cfc3b1', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:34:47.000Z'}}, {'blockNum': '0x98bbed', 'uniqueId': '0x7adc510c61181360d0145b0d5d08caa0afe471a71236534b7abe64748f07e55b:log:44', 'hash': '0x7adc510c61181360d0145b0d5d08caa0afe471a71236534b7abe64748f07e55b', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x38cc7329ec1453e99551988e50d60bcd439296a0', 'value': 31274.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x02d82997b680', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:47:46.000Z'}}, {'blockNum': '0x98bc10', 'uniqueId': '0xc35237ea7248f6bf47de57b5f97db7da58a66b479764e90b7fa0c15072b4e473:log:29', 'hash': '0xc35237ea7248f6bf47de57b5f97db7da58a66b479764e90b7fa0c15072b4e473', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 94414.0417, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08963f8aaf10', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:58:55.000Z'}}, {'blockNum': '0x98bc15', 'uniqueId': '0x889952ed0ef50dd0066ced2ad0769673171837f8f04f8945c803092b5af2d411:log:37', 'hash': '0x889952ed0ef50dd0066ced2ad0769673171837f8f04f8945c803092b5af2d411', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 192260.32, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x117c68cecc00', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:59:57.000Z'}}, {'blockNum': '0x98bc15', 'uniqueId': '0x55c385cc716e6aa50a2499ecce6d13336333aace6693a833991ba4381fb7835e:log:56', 'hash': '0x55c385cc716e6aa50a2499ecce6d13336333aace6693a833991ba4381fb7835e', 'from': '0x38cc7329ec1453e99551988e50d60bcd439296a0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 62463.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x05ae5a463940', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T00:59:57.000Z'}}, {'blockNum': '0x98bc5d', 'uniqueId': '0xec54f44fb57192b87bf5bf8d56280aa3511d282b6aa9ac7736ecb1913fb71d6b:log:37', 'hash': '0xec54f44fb57192b87bf5bf8d56280aa3511d282b6aa9ac7736ecb1913fb71d6b', 'from': '0xc890043e6e5d4608057137323d4511c7da1132d6', 'to': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'value': 98485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08f508581500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T01:17:21.000Z'}}, {'blockNum': '0x98bc70', 'uniqueId': '0x4d8b7f1e3d31bf0aaca8ac1ef3e361a3fc9a52d6302b8c2270e4575f9fbf3804:log:2', 'hash': '0x4d8b7f1e3d31bf0aaca8ac1ef3e361a3fc9a52d6302b8c2270e4575f9fbf3804', 'from': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'to': '0xb54c216ce244a521cacd64381a55409911dc00c5', 'value': 1523.72019456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x237a148100', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T01:22:18.000Z'}}, {'blockNum': '0x98bd1e', 'uniqueId': '0x067254c499e95839642fb6b6af616f498e9d5485726c9b1ebc35e20e9aa10409:log:9', 'hash': '0x067254c499e95839642fb6b6af616f498e9d5485726c9b1ebc35e20e9aa10409', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 97594.8849, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08e04ed83a10', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T01:59:34.000Z'}}, {'blockNum': '0x98bd20', 'uniqueId': '0xf8ccd976197409694a8160c6d03d7bbae3b3d2fcc0e2bdd45303e844f0511e2a:log:34', 'hash': '0xf8ccd976197409694a8160c6d03d7bbae3b3d2fcc0e2bdd45303e844f0511e2a', 'from': '0x3e490107f6566dc822dd9e67315e336024e640ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'CVC', 'category': 'erc20', 'rawContract': {'value': '0x08f508581500', 'address': '0x41e5560054824ea6b0732e656e3ad64e20e94e45', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-05-06T02:00:02.000Z'}}]}}
Number of returned transfers:  186
Answer is complete
 
symbol             AST
group              CPI
date        2020-05-09
hour             16:00
exchange       binance
Name: 1070, dtype: object
HERE
{'binance-smart-chain': '0x7ed86d2769fe9a2cad7bac4ceac45e40c82295d6'}
No contract for ethereum specified
{'okex-chain': '0x493d8cbd9533e57d4befb17cc2ec1db76828261d'}
No contract for ethereum specified
{'optimistic-ethereum': '0xb532178708814f0c174b29b991d2b355106afbc3', 'binance-smart-chain': '0xae10e5980f05a80ae09fd0e5bcda3dacd49aaec1'}
No contract for ethereum specified
 Symbol: AST, Contract: 0x27054b13b1b798b345b591a4d22e6562d47ea75a
Datetime timestamps:  2020-05-09 16:00:00 2020-05-09 04:00:00 2020-05-10 04:00:00
Unix timestamps:  1588989600.0 1589076000.0
Hex Block Numbers:  0x9908b4 0x9921bb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x990b48', 'uniqueId': '0xff44370c584e39d98a75ad85fe3ff4c6028b3f5f5570447185ff0d1e901aa59e:log:66', 'hash': '0xff44370c584e39d98a75ad85fe3ff4c6028b3f5f5570447185ff0d1e901aa59e', 'from': '0x048f1dacc20b672a2426ec06bf041bbf193eb130', 'to': '0x79b10f3d79c7bc7f0519cd563f83bb8db51e681c', 'value': 1438.2662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xdb7646', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:25:49.000Z'}}, {'blockNum': '0x990b69', 'uniqueId': '0x1ca372c711bd5ba29c7eb478af390d541fe9bf8c17a4b4444d8e7e98999ecab5:log:46', 'hash': '0x1ca372c711bd5ba29c7eb478af390d541fe9bf8c17a4b4444d8e7e98999ecab5', 'from': '0xcaba3d28f2652eb0ea976ff9d88184a979fe1a20', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 86912.0875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x33cdbb6b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:33:19.000Z'}}, {'blockNum': '0x990b7e', 'uniqueId': '0x70ec3678cf4ab1e8260032483317f00d01ef00512f733998c3382b2472c2f109:log:132', 'hash': '0x70ec3678cf4ab1e8260032483317f00d01ef00512f733998c3382b2472c2f109', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 28282.9773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10dba3cd', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:37:48.000Z'}}, {'blockNum': '0x990b7e', 'uniqueId': '0x70ec3678cf4ab1e8260032483317f00d01ef00512f733998c3382b2472c2f109:log:134', 'hash': '0x70ec3678cf4ab1e8260032483317f00d01ef00512f733998c3382b2472c2f109', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8fa428750435e06c134366c831c656ed5b20e59b', 'value': 28282.9773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x10dba3cd', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:37:48.000Z'}}, {'blockNum': '0x990b8b', 'uniqueId': '0x7b669ab05ec882e7a966a01bb4f8a4c03824f3c8fc3de4ce1e13ba1fec607af6:log:34', 'hash': '0x7b669ab05ec882e7a966a01bb4f8a4c03824f3c8fc3de4ce1e13ba1fec607af6', 'from': '0x9621d4c912e18f9eda52cb6988515bae3f93f672', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x29b92700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:40:26.000Z'}}, {'blockNum': '0x990b8b', 'uniqueId': '0x7b669ab05ec882e7a966a01bb4f8a4c03824f3c8fc3de4ce1e13ba1fec607af6:log:35', 'hash': '0x7b669ab05ec882e7a966a01bb4f8a4c03824f3c8fc3de4ce1e13ba1fec607af6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x29b92700', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:40:26.000Z'}}, {'blockNum': '0x990b90', 'uniqueId': '0x53e779c55899df3287b2f032ac1ef54c11dadfacae0ddce547aeae6e315cc6d9:log:49', 'hash': '0x53e779c55899df3287b2f032ac1ef54c11dadfacae0ddce547aeae6e315cc6d9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 13295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07eca7f0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:40:59.000Z'}}, {'blockNum': '0x990b98', 'uniqueId': '0xfd329050dcbac6cec4fd34773f79e836fb04ba81f87eeaeee6f518aa2ec83123:log:112', 'hash': '0xfd329050dcbac6cec4fd34773f79e836fb04ba81f87eeaeee6f518aa2ec83123', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2606.5401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018db9f9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:42:58.000Z'}}, {'blockNum': '0x990b98', 'uniqueId': '0xfd329050dcbac6cec4fd34773f79e836fb04ba81f87eeaeee6f518aa2ec83123:log:114', 'hash': '0xfd329050dcbac6cec4fd34773f79e836fb04ba81f87eeaeee6f518aa2ec83123', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8fa428750435e06c134366c831c656ed5b20e59b', 'value': 2606.5401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x018db9f9', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:42:58.000Z'}}, {'blockNum': '0x990ba7', 'uniqueId': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197:log:158', 'hash': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 12825.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07a4fc1a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:46:59.000Z'}}, {'blockNum': '0x990ba7', 'uniqueId': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197:log:160', 'hash': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x00000f2d00b7a76100366c0013c2000595ee0067', 'value': 12825.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07a4fc1a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:46:59.000Z'}}, {'blockNum': '0x990ba7', 'uniqueId': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197:log:167', 'hash': '0xa0549f686171f6a1690d760253850cd6628c4f28455d3d08f065c69532da1197', 'from': '0x00000f2d00b7a76100366c0013c2000595ee0067', 'to': '0x39ee0f29253017d69909b7286caf8c080e9d6da2', 'value': 12825.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x07a4fc1a', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:46:59.000Z'}}, {'blockNum': '0x990baf', 'uniqueId': '0x963cce30bc83febc72ecb33db15863ed911762bedbdf76e154c1ebee76506134:log:91', 'hash': '0x963cce30bc83febc72ecb33db15863ed911762bedbdf76e154c1ebee76506134', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 42951.4077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1999dd5d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:48:29.000Z'}}, {'blockNum': '0x990be1', 'uniqueId': '0xf7586280b5fe3b9fb69f340d4db4a75b3a289f886b4639f9c26d23e008115f4a:log:123', 'hash': '0xf7586280b5fe3b9fb69f340d4db4a75b3a289f886b4639f9c26d23e008115f4a', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42951.4077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1999dd5d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T04:59:46.000Z'}}, {'blockNum': '0x990cd9', 'uniqueId': '0xd55a8b3a0a1564934ea062ec89b5bafe7522df2cee10013a3fd552eb27489397:log:17', 'hash': '0xd55a8b3a0a1564934ea062ec89b5bafe7522df2cee10013a3fd552eb27489397', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x9909ea65f0b6a87d7d026c8968329c8ad3200535', 'value': 883.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x86de2c', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T06:02:18.000Z'}}, {'blockNum': '0x990d6d', 'uniqueId': '0xbb66d2b9897dc766a8a130da37490eec5afd83b187a5724ddf57b322184865ed:log:160', 'hash': '0xbb66d2b9897dc766a8a130da37490eec5afd83b187a5724ddf57b322184865ed', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x53a2a7e163d84eaab5e3284940944f560237b831', 'value': 9000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x055d4a80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T06:32:56.000Z'}}, {'blockNum': '0x990d86', 'uniqueId': '0xc7d6a944f404ed8cb9eb9e076ebe6e207fc893afa6a5c04aed75becc358ec79b:log:42', 'hash': '0xc7d6a944f404ed8cb9eb9e076ebe6e207fc893afa6a5c04aed75becc358ec79b', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0x53a2a7e163d84eaab5e3284940944f560237b831', 'value': 81000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x30479e80', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T06:38:44.000Z'}}, {'blockNum': '0x990dee', 'uniqueId': '0x3ec13606e2a19418a39fc41277139d4f999fea8095a87c766fd73d34bfbbf823:log:130', 'hash': '0x3ec13606e2a19418a39fc41277139d4f999fea8095a87c766fd73d34bfbbf823', 'from': '0x53a2a7e163d84eaab5e3284940944f560237b831', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x35a4e900', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:00:59.000Z'}}, {'blockNum': '0x990df9', 'uniqueId': '0xf7fa1a56df0d9ea08a9ba6295b743fda027b4c4b7c6592f211cf2565f7f7cf3e:log:32', 'hash': '0xf7fa1a56df0d9ea08a9ba6295b743fda027b4c4b7c6592f211cf2565f7f7cf3e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1cb94482e560ea0baf7895092b437c1fb2249268', 'value': 1930.995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0126a57e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:03:35.000Z'}}, {'blockNum': '0x990e57', 'uniqueId': '0x3046c12c7b931dc80e83cba98387d5b2936a65cf0210d1f45b0ed7bf6b4a466f:log:109', 'hash': '0x3046c12c7b931dc80e83cba98387d5b2936a65cf0210d1f45b0ed7bf6b4a466f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xefe0874afb2455a68b4f234b81da94a738777807', 'value': 429.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x418f98', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:23:26.000Z'}}, {'blockNum': '0x990e7b', 'uniqueId': '0x85e2610a1273273f1c4bac6e89222a46d899ca0c520db7ecdcf4f84d2ba79e93:log:131', 'hash': '0x85e2610a1273273f1c4bac6e89222a46d899ca0c520db7ecdcf4f84d2ba79e93', 'from': '0xefe0874afb2455a68b4f234b81da94a738777807', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 429.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x418f98', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:34:01.000Z'}}, {'blockNum': '0x990edc', 'uniqueId': '0xb54d8f786ad51f17235d0e6753f6c2c43b200cdf9299c8468bd6422cd1183b29:log:84', 'hash': '0xb54d8f786ad51f17235d0e6753f6c2c43b200cdf9299c8468bd6422cd1183b29', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02e16619926960836acf45534aa0f3a0c9851d6e', 'value': 9502.3069, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x05a9efdd', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T07:54:37.000Z'}}, {'blockNum': '0x990f8f', 'uniqueId': '0x4ffeace381d7c87ca82269bcfa90892a8ec7e1c235d77541d380557e8d2b4fa3:log:27', 'hash': '0x4ffeace381d7c87ca82269bcfa90892a8ec7e1c235d77541d380557e8d2b4fa3', 'from': '0x95151e4615c5c0924b918c85ad8d8a94d6644ab3', 'to': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T08:37:55.000Z'}}, {'blockNum': '0x990fae', 'uniqueId': '0x55535b3bbc0128ce854b38ed85775a4b8794d919fe3b4be49c4d9cc4888366cf:log:60', 'hash': '0x55535b3bbc0128ce854b38ed85775a4b8794d919fe3b4be49c4d9cc4888366cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe79a89c9cfebc499782754682172da76c863eb8', 'value': 2177.685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x014c49d2', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T08:43:20.000Z'}}, {'blockNum': '0x991595', 'uniqueId': '0x927a78baa2327d5fd9643690957968b40a2d7bce34d49341e0a63a92766ad2c3:log:47', 'hash': '0x927a78baa2327d5fd9643690957968b40a2d7bce34d49341e0a63a92766ad2c3', 'from': '0xda77628c2fc8e8c11ea772fa4727f2ee52a0f2c5', 'to': '0x7679bf4d894353022fbb0d710f10dafefaa1909f', 'value': 372.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x38cfb6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T14:14:49.000Z'}}, {'blockNum': '0x9915e4', 'uniqueId': '0xd172693d9d336309d39ec04860de6f1c08dfcb1ed5d21203e490f527b4eaf564:log:57', 'hash': '0xd172693d9d336309d39ec04860de6f1c08dfcb1ed5d21203e490f527b4eaf564', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'value': 89929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x359a1390', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T14:32:43.000Z'}}, {'blockNum': '0x99160d', 'uniqueId': '0x1cb038fbf4601897a9148e42050f579e18796fdd2b7f82c69cb8966985d457bb:log:152', 'hash': '0x1cb038fbf4601897a9148e42050f579e18796fdd2b7f82c69cb8966985d457bb', 'from': '0x3310b055015a94a2f2e37014b944d8ca6bd2b845', 'to': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T14:43:30.000Z'}}, {'blockNum': '0x991699', 'uniqueId': '0x1b806dd6e9aed4831cd6f1f3dd082f78c6fb3e808891a85ab2268a7106cd9b3a:log:81', 'hash': '0x1b806dd6e9aed4831cd6f1f3dd082f78c6fb3e808891a85ab2268a7106cd9b3a', 'from': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'to': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'value': 49999.7979, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dcd5d1b', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:16:35.000Z'}}, {'blockNum': '0x9916a0', 'uniqueId': '0xe6d1b29afbf3487af111aeab4387c5ef5fa1aa5410e3a09e2c7102adb763c7b4:log:134', 'hash': '0xe6d1b29afbf3487af111aeab4387c5ef5fa1aa5410e3a09e2c7102adb763c7b4', 'from': '0x39ee0f29253017d69909b7286caf8c080e9d6da2', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 2088.9734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x013ec086', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:18:43.000Z'}}, {'blockNum': '0x9916a0', 'uniqueId': '0xe6d1b29afbf3487af111aeab4387c5ef5fa1aa5410e3a09e2c7102adb763c7b4:log:135', 'hash': '0xe6d1b29afbf3487af111aeab4387c5ef5fa1aa5410e3a09e2c7102adb763c7b4', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'value': 2088.9733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x013ec085', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:18:43.000Z'}}, {'blockNum': '0x9916ad', 'uniqueId': '0x9683c27a4f6bd52e744a2d55d40f7f68bb8e18903b8e8d65662ff419c122cf0f:log:24', 'hash': '0x9683c27a4f6bd52e744a2d55d40f7f68bb8e18903b8e8d65662ff419c122cf0f', 'from': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'to': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x1dcd6500', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:21:31.000Z'}}, {'blockNum': '0x9916ca', 'uniqueId': '0xc076b6873166ee8e53335e4b01d3c544001a8e557f32c415693db8966a56a91a:log:54', 'hash': '0xc076b6873166ee8e53335e4b01d3c544001a8e557f32c415693db8966a56a91a', 'from': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'to': '0x576027513dbfd0fc66834cedef888770fc743175', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x2710', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T15:29:34.000Z'}}, {'blockNum': '0x9917bb', 'uniqueId': '0x342417e99d4563020ef6806f1236780d4527fd5a1db734daecc597fa2ec54bab:log:0', 'hash': '0x342417e99d4563020ef6806f1236780d4527fd5a1db734daecc597fa2ec54bab', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1792.4669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0111823d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:20:45.000Z'}}, {'blockNum': '0x9917c0', 'uniqueId': '0x161f0b9fbc6022b49ef5aa0c9d88f7ac72c8b3ac78f47570746269a96592b52d:log:131', 'hash': '0x161f0b9fbc6022b49ef5aa0c9d88f7ac72c8b3ac78f47570746269a96592b52d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb9d4eeb0849161ccc117f30569b4ff426755b415', 'value': 1792.4669, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0111823d', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:22:54.000Z'}}, {'blockNum': '0x9917ce', 'uniqueId': '0xdc4a622cbc1b238412a1d4a20f0bd7d69ee4d2ffc1bf04b97fcd547b808ef8e3:log:11', 'hash': '0xdc4a622cbc1b238412a1d4a20f0bd7d69ee4d2ffc1bf04b97fcd547b808ef8e3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb9d4eeb0849161ccc117f30569b4ff426755b415', 'value': 1081.6591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa50c4f', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:25:08.000Z'}}, {'blockNum': '0x991818', 'uniqueId': '0xc1fade01f9a385ae2459cde36cbdf68e9f3fabc924fef7b76b196ef9cf7bc109:log:17', 'hash': '0xc1fade01f9a385ae2459cde36cbdf68e9f3fabc924fef7b76b196ef9cf7bc109', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x559035a66ec359b9e287954b7bc8d66a54f8ccc4', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x03473bc0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:39:34.000Z'}}, {'blockNum': '0x991826', 'uniqueId': '0x965e86bb9c830a688eb57017a28a85de813ed25f4518082f57613c8d91a62c6f:log:19', 'hash': '0x965e86bb9c830a688eb57017a28a85de813ed25f4518082f57613c8d91a62c6f', 'from': '0xb9d4eeb0849161ccc117f30569b4ff426755b415', 'to': '0x3162c026331401abdd32ce538c84e996186909ab', 'value': 2242.875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01563c4e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:42:28.000Z'}}, {'blockNum': '0x99182f', 'uniqueId': '0xd56da32aa22b6b544986dc3481734c3d9b51ca9ba9d2da1292217648f90b8301:log:58', 'hash': '0xd56da32aa22b6b544986dc3481734c3d9b51ca9ba9d2da1292217648f90b8301', 'from': '0x3162c026331401abdd32ce538c84e996186909ab', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2242.875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01563c4e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T16:45:00.000Z'}}, {'blockNum': '0x9918a4', 'uniqueId': '0x62500529bcd858f5b8d333aa9ff3ad7a96cb2188a55de5b6a487e8146e379f0b:log:8', 'hash': '0x62500529bcd858f5b8d333aa9ff3ad7a96cb2188a55de5b6a487e8146e379f0b', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0xe9d4f0df57ae5352efb097e3a1eb3de166d52685', 'value': 327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x31e570', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T17:10:20.000Z'}}, {'blockNum': '0x9918c8', 'uniqueId': '0x1f0386b42245684bb6bc0f175dd732a588334c85112263bcd07cb8aa83a48be5:log:45', 'hash': '0x1f0386b42245684bb6bc0f175dd732a588334c85112263bcd07cb8aa83a48be5', 'from': '0xe9d4f0df57ae5352efb097e3a1eb3de166d52685', 'to': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'value': 327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x31e570', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T17:19:31.000Z'}}, {'blockNum': '0x991bdf', 'uniqueId': '0x852993429e8c7670e8f1391eb6ea8132b8428971ae642a3ad24f09997670772d:log:1', 'hash': '0x852993429e8c7670e8f1391eb6ea8132b8428971ae642a3ad24f09997670772d', 'from': '0x08fbb7ae479f380924e7ac190530df84c0884a8b', 'to': '0xf6b57fed3575f559b7ee0f7ff50c77e0554bb2a8', 'value': 3055.139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01d22d5e', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T20:24:10.000Z'}}, {'blockNum': '0x991d11', 'uniqueId': '0x6ee0d333b59ddfe748ed998ec4835f231daf2f4b6b5760291df85c5254938232:log:112', 'hash': '0x6ee0d333b59ddfe748ed998ec4835f231daf2f4b6b5760291df85c5254938232', 'from': '0xeaaaa462818782af22d647a2f81e0426729f14ac', 'to': '0x777ec27a8f1be1dbb74f591055f5457df8d6bffb', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0186a0', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:29:57.000Z'}}, {'blockNum': '0x991d66', 'uniqueId': '0x018ae1dff5aac4f258de5364ef0dde427caffeb5e3289a90211e16cbc145399f:log:35', 'hash': '0x018ae1dff5aac4f258de5364ef0dde427caffeb5e3289a90211e16cbc145399f', 'from': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'to': '0x12755b769cba38b178111213b104761f872b8230', 'value': 1394.1199, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xd4b9cf', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:48:26.000Z'}}, {'blockNum': '0x991d82', 'uniqueId': '0x929d63b7f84ccc11d7c036a96c25c7d5e0abada7f4704dd90df28a4f5015f269:log:133', 'hash': '0x929d63b7f84ccc11d7c036a96c25c7d5e0abada7f4704dd90df28a4f5015f269', 'from': '0x58543a07394e9b7337c24023e2aebcf6357d7bc9', 'to': '0xdc8c9148666a39df278fe4b7d6d52d874e72a452', 'value': 3300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x01f78a40', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:55:16.000Z'}}, {'blockNum': '0x991d93', 'uniqueId': '0x0cfd0385c3f92136cab3c60054079df087270f493588270c0b248a895d27341c:log:152', 'hash': '0x0cfd0385c3f92136cab3c60054079df087270f493588270c0b248a895d27341c', 'from': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'to': '0x12755b769cba38b178111213b104761f872b8230', 'value': 1357.0615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xcf1237', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:58:31.000Z'}}, {'blockNum': '0x991d94', 'uniqueId': '0x6d0fbee570ea8a0570d99f66e84f3c28ce8bb351244730cd10f0636dd037780c:log:15', 'hash': '0x6d0fbee570ea8a0570d99f66e84f3c28ce8bb351244730cd10f0636dd037780c', 'from': '0x39ee0f29253017d69909b7286caf8c080e9d6da2', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 2522.2364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0180dcdc', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:58:44.000Z'}}, {'blockNum': '0x991d94', 'uniqueId': '0x6d0fbee570ea8a0570d99f66e84f3c28ce8bb351244730cd10f0636dd037780c:log:16', 'hash': '0x6d0fbee570ea8a0570d99f66e84f3c28ce8bb351244730cd10f0636dd037780c', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'value': 2522.2363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0x0180dcdb', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T21:58:44.000Z'}}, {'blockNum': '0x991db3', 'uniqueId': '0x88964122ff0e302c7dadaf99a2e04b38505a157b6214859db1637747140ac193:log:51', 'hash': '0x88964122ff0e302c7dadaf99a2e04b38505a157b6214859db1637747140ac193', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1109.1142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa93cc6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T22:06:46.000Z'}}, {'blockNum': '0x991dbe', 'uniqueId': '0x17b36f66e7353ae1450e3363a48a7ea036cdb23d55b6ef69a5252df5d48b3775:log:42', 'hash': '0x17b36f66e7353ae1450e3363a48a7ea036cdb23d55b6ef69a5252df5d48b3775', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x238deaed4e0f90afae5f17b7cabbeb2b601d40f0', 'value': 1109.1142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xa93cc6', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T22:09:59.000Z'}}, {'blockNum': '0x991dbf', 'uniqueId': '0xdad4fa79ce5992ded36f105494913c4c96499019498dbe7c8689f4c1bc3f667c:log:128', 'hash': '0xdad4fa79ce5992ded36f105494913c4c96499019498dbe7c8689f4c1bc3f667c', 'from': '0xc462a2fd31c83f6ee220400d1506d9e9f1f4bb01', 'to': '0x12755b769cba38b178111213b104761f872b8230', 'value': 1387.7991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'AST', 'category': 'erc20', 'rawContract': {'value': '0xd3c2e7', 'address': '0x27054b13b1b798b345b591a4d22e6562d47ea75a', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-05-09T22:10:01.000Z'}}]}}
Number of returned transfers:  50
Answer is complete
 
symbol           YOYOW
group              CPI
date        2020-05-14
hour             16:00
exchange       binance
Name: 1071, dtype: object
HERE
 Symbol: YOYOW, Contract: 
Datetime timestamps:  2020-05-14 16:00:00 2020-05-14 04:00:00 2020-05-15 04:00:00
Unix timestamps:  1589421600.0 1589508000.0
Hex Block Numbers:  0x9986ab 0x999fd7
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GTO
group              CPI
date        2020-05-21
hour             15:59
exchange       binance
Name: 1072, dtype: object
HERE
 Symbol: GTO, Contract: 
Datetime timestamps:  2020-05-21 15:59:00 2020-05-21 03:59:00 2020-05-22 03:59:00
Unix timestamps:  1590026340.0 1590112740.0
Hex Block Numbers:  0x9a3645 0x9a4f80
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             VIA
group              CPI
date        2020-05-29
hour             16:00
exchange       binance
Name: 1073, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2020-05-29 16:00:00 2020-05-29 04:00:00 2020-05-30 04:00:00
Unix timestamps:  1590717600.0 1590804000.0
Hex Block Numbers:  0x9aff2d 0x9b185f
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            CTXC
group              CPI
date        2020-06-03
hour             16:00
exchange       binance
Name: 1074, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: CTXC, Contract: 
Datetime timestamps:  2020-06-03 16:00:00 2020-06-03 04:00:00 2020-06-04 04:00:00
Unix timestamps:  1591149600.0 1591236000.0
Hex Block Numbers:  0x9b7cf3 0x9b960d
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             PPT
group              CPI
date        2020-06-08
hour             16:06
exchange       binance
Name: 1075, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-06-08 16:06:00 2020-06-08 04:06:00 2020-06-09 04:06:00
Unix timestamps:  1591581960.0 1591668360.0
Hex Block Numbers:  0x9bfaf0 0x9c1418
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9bfaf8', 'uniqueId': '0xaa774a412cedfd955ac2d886257bc4f00f16d622ec4b1d55d0c27122b93ec7e8:log:69', 'hash': '0xaa774a412cedfd955ac2d886257bc4f00f16d622ec4b1d55d0c27122b93ec7e8', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8d4a51000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:07:31.000Z'}}, {'blockNum': '0x9bfafa', 'uniqueId': '0xcde101316e0f0c2b2a6b2e2059f5927a7986d1f0dc3eb7c7e82efdbec89c1609:log:16', 'hash': '0xcde101316e0f0c2b2a6b2e2059f5927a7986d1f0dc3eb7c7e82efdbec89c1609', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x213423341652d5daaa4fcbee71641f874b9903ea', 'value': 338.95888712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07e45a3748', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:07:47.000Z'}}, {'blockNum': '0x9bfbc3', 'uniqueId': '0x89e2d24bd87543bd61d63b13e80ce72744bea090e80aab711254c980522a9d99:log:14', 'hash': '0x89e2d24bd87543bd61d63b13e80ce72744bea090e80aab711254c980522a9d99', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x847c0d83f3f35a3d4eb8f121406c5445cb235264', 'value': 107.91089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028332f368', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T02:50:47.000Z'}}, {'blockNum': '0x9bfc53', 'uniqueId': '0x7bde4a7038e391c91be8994fd6dfde3a5037b890080d056f5e61f93d9a13242d:log:80', 'hash': '0x7bde4a7038e391c91be8994fd6dfde3a5037b890080d056f5e61f93d9a13242d', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 114.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02a7abf8c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T03:24:26.000Z'}}, {'blockNum': '0x9bfc5b', 'uniqueId': '0x1593a1bc92e1a21208f6cff7a8dd62fef8b6ead230f47f1f1d8c556713f1beec:log:14', 'hash': '0x1593a1bc92e1a21208f6cff7a8dd62fef8b6ead230f47f1f1d8c556713f1beec', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xde75a7a52a7a68b2e14e168d4dfdda58208df304', 'value': 114.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02a7abf8c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T03:26:24.000Z'}}, {'blockNum': '0x9bfdbc', 'uniqueId': '0x705851dd64c871b3695c6328b2ede458d13f6414218a4243f3bf0d1358845398:log:76', 'hash': '0x705851dd64c871b3695c6328b2ede458d13f6414218a4243f3bf0d1358845398', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x5d1d240f781f1caa0771a047f31379cb36cc0ed3', 'value': 173.44137612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0409ca898c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:44:43.000Z'}}, {'blockNum': '0x9bfdd3', 'uniqueId': '0x627be615b1b0b2684fdefc4c993d96a1128b22a65201edc3489e7f2c41f6a449:log:12', 'hash': '0x627be615b1b0b2684fdefc4c993d96a1128b22a65201edc3489e7f2c41f6a449', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 259.509212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x060acba1f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:49:57.000Z'}}, {'blockNum': '0x9bfded', 'uniqueId': '0x5239eaa6267a906ab25312ee2fe403f65fc2689c68ed0db02e1c6b51be191fc6:log:137', 'hash': '0x5239eaa6267a906ab25312ee2fe403f65fc2689c68ed0db02e1c6b51be191fc6', 'from': '0x9276d54352c9bf8440a34cc98303d8141c9055be', 'to': '0xcd4ad53757e734dbb2b073e1b277471520f8617e', 'value': 1483.59965968, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x228af16d10', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T04:54:59.000Z'}}, {'blockNum': '0x9bfe2d', 'uniqueId': '0xcdc281865bb168aba509f47be3ac94c1498a17ea8b02068e4ec091cf7735811c:log:154', 'hash': '0xcdc281865bb168aba509f47be3ac94c1498a17ea8b02068e4ec091cf7735811c', 'from': '0xf9b7818d61e7562e4636da7e7892d6d2ef8e525c', 'to': '0xa24c6a0df9e8581699056e19acdc46da70a3f291', 'value': 139.67965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03408e3b48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T05:09:54.000Z'}}, {'blockNum': '0x9bfebf', 'uniqueId': '0x89eb8014d73249e7c006ca9cf7f314b3a72e352835c9f77aa11719d77a8c747d:log:40', 'hash': '0x89eb8014d73249e7c006ca9cf7f314b3a72e352835c9f77aa11719d77a8c747d', 'from': '0xe569448c95e19bdfce0f50c0ef5c04b647e23050', 'to': '0x4314ede64153cf0be702514c2990a5f67b656202', 'value': 207.37079432, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04d406b888', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T05:38:45.000Z'}}, {'blockNum': '0x9bff2c', 'uniqueId': '0xde56cf3bd16009a91a1083eba73bd937b5f8bbfa3542977c52687d8323034855:log:71', 'hash': '0xde56cf3bd16009a91a1083eba73bd937b5f8bbfa3542977c52687d8323034855', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xf6e9ed8be6b06a20ceb4504b5b2654a099be0413', 'value': 7356.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xab48d49920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T06:05:52.000Z'}}, {'blockNum': '0x9c001f', 'uniqueId': '0x5e4dc95bd9828143bfccc0f5954bbfd570a4672311f535fb82800c4419dc2eef:log:118', 'hash': '0x5e4dc95bd9828143bfccc0f5954bbfd570a4672311f535fb82800c4419dc2eef', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'value': 3181.94460841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4a15de28a9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:00:42.000Z'}}, {'blockNum': '0x9c0038', 'uniqueId': '0x248c03acee1ef7a1a91d32b0496bc64ee160873c29249e95d15a659927beb215:log:153', 'hash': '0x248c03acee1ef7a1a91d32b0496bc64ee160873c29249e95d15a659927beb215', 'from': '0x7ed1e469fcb3ee19c0366d829e291451be638e59', 'to': '0xb2d553ab61ec7ec3d3df58d460fdcfef38b42192', 'value': 7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29b92700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:06:59.000Z'}}, {'blockNum': '0x9c00e1', 'uniqueId': '0xfbfaf4248e72b3570cfabb2b876a15d25e46b037e31092d14b5c03ff72d8ecf9:log:82', 'hash': '0xfbfaf4248e72b3570cfabb2b876a15d25e46b037e31092d14b5c03ff72d8ecf9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 106.12286332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02788aa37c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:47:20.000Z'}}, {'blockNum': '0x9c00e7', 'uniqueId': '0x649716641a2a5570be0f8d3d406ff781cb18f7311fbb7b1c4a4427222433b26a:log:163', 'hash': '0x649716641a2a5570be0f8d3d406ff781cb18f7311fbb7b1c4a4427222433b26a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbd62be0448ecf0f9a79eb09f2dcb75647b41bb5f', 'value': 106.12286332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02788aa37c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T07:48:51.000Z'}}, {'blockNum': '0x9c0121', 'uniqueId': '0x73d06fb2793b56fe784c7fb81220035c96414dd475fb850eb166dfba981991a0:log:24', 'hash': '0x73d06fb2793b56fe784c7fb81220035c96414dd475fb850eb166dfba981991a0', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x698fa6437475f3f86df33ea0cb612ad529954811', 'value': 108.31243952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028597aab0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:01:33.000Z'}}, {'blockNum': '0x9c0200', 'uniqueId': '0x847d61aa8b094d69d330a17d3fd4ae541d13802c60504b42029643d24b9f9d26:log:42', 'hash': '0x847d61aa8b094d69d330a17d3fd4ae541d13802c60504b42029643d24b9f9d26', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:51:23.000Z'}}, {'blockNum': '0x9c020b', 'uniqueId': '0x03345e0a69bdf4423c0c0893cebf39088f0637d30aa81846b112405570b38101:log:139', 'hash': '0x03345e0a69bdf4423c0c0893cebf39088f0637d30aa81846b112405570b38101', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xec4f69ea443bc2219dcb10cc8d007e4123a9ce6b', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T08:54:22.000Z'}}, {'blockNum': '0x9c02e6', 'uniqueId': '0xee6fb3f62eac86957c4647fc0e2b6f4cd9666d8e38ad3c8d24d7d3ccbd3ec943:log:165', 'hash': '0xee6fb3f62eac86957c4647fc0e2b6f4cd9666d8e38ad3c8d24d7d3ccbd3ec943', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x334ae73b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:42:16.000Z'}}, {'blockNum': '0x9c02e9', 'uniqueId': '0xca9cf0e6c511f9da8c363c13d18969f6d3253527aeb46c089384a3f05fbde5b7:log:4', 'hash': '0xca9cf0e6c511f9da8c363c13d18969f6d3253527aeb46c089384a3f05fbde5b7', 'from': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'to': '0x0c4fe355d6cb9de761afbc008cfa74c07711df9f', 'value': 800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12a05f2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:43:32.000Z'}}, {'blockNum': '0x9c02fb', 'uniqueId': '0x4e11b3d880a0286d25e25b7ac3a21c0919873bcd6e2d928a4d585cad02bc8c51:log:46', 'hash': '0x4e11b3d880a0286d25e25b7ac3a21c0919873bcd6e2d928a4d585cad02bc8c51', 'from': '0x38b01559639d6e3ddffc1ac8d3b793fe86b36ae1', 'to': '0x4b16cc10e4e1c979fab50c4e67b81ec62ceb9c60', 'value': 2145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x31f1324100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T09:48:32.000Z'}}, {'blockNum': '0x9c0341', 'uniqueId': '0xd6040de59d2eff8c7dff43da2d262d06ebc934740125969bf071a42c5ab99343:log:22', 'hash': '0xd6040de59d2eff8c7dff43da2d262d06ebc934740125969bf071a42c5ab99343', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3dc044f6957c2cb036d9cde1153f724295dc5bf5', 'value': 8186.13821, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbe992f9e48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:02:17.000Z'}}, {'blockNum': '0x9c035b', 'uniqueId': '0xc0ed033a3a9036139c6b1b3267e449f6e664528969577fdd6dbdc67b1911a576:log:10', 'hash': '0xc0ed033a3a9036139c6b1b3267e449f6e664528969577fdd6dbdc67b1911a576', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 38603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0382cbcf6b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:08:39.000Z'}}, {'blockNum': '0x9c037c', 'uniqueId': '0xb3ae67553cee762bf4e35502bfb6cd2f8d76b00854f98536f217465bf8341a7d:log:46', 'hash': '0xb3ae67553cee762bf4e35502bfb6cd2f8d76b00854f98536f217465bf8341a7d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'value': 1000.13375754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174943010a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:16:59.000Z'}}, {'blockNum': '0x9c0388', 'uniqueId': '0x69a214d5dec424cf06952e42e78dedc94556b01f675ba7f33599c4881aa47487:log:90', 'hash': '0x69a214d5dec424cf06952e42e78dedc94556b01f675ba7f33599c4881aa47487', 'from': '0x1fd7730672009e7ebbe31c01c6fb22d14950354c', 'to': '0xcde6edc4fc380c8fdda959437606eb82009b5456', 'value': 2001.13331511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e97af1d37', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:19:17.000Z'}}, {'blockNum': '0x9c03d5', 'uniqueId': '0x09fed3619eb39f4fdf1dae98281ae68a998561b888c7eff4a4903ec747f26187:log:4', 'hash': '0x09fed3619eb39f4fdf1dae98281ae68a998561b888c7eff4a4903ec747f26187', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:37:50.000Z'}}, {'blockNum': '0x9c0400', 'uniqueId': '0x78db6097c440b6b1c585a7f5615db8bf42e9a237f99792c52700ceed27830da5:log:38', 'hash': '0x78db6097c440b6b1c585a7f5615db8bf42e9a237f99792c52700ceed27830da5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'value': 3000.1115179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45da0ee1ae', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:46:07.000Z'}}, {'blockNum': '0x9c041f', 'uniqueId': '0x83b0f4f0374aa549d316d2f9c2574cddfb7046a29e23e9bb782a2c5044aa6fd7:log:12', 'hash': '0x83b0f4f0374aa549d316d2f9c2574cddfb7046a29e23e9bb782a2c5044aa6fd7', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x168dd267b78d175024f70de1244a654f2909b0bb', 'value': 130.846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x030be726c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:52:52.000Z'}}, {'blockNum': '0x9c0420', 'uniqueId': '0x1917936160854817a34489ddf702806d344357b0c8664ebca54e690c195d5796:log:65', 'hash': '0x1917936160854817a34489ddf702806d344357b0c8664ebca54e690c195d5796', 'from': '0xe184a8d3a892930221284832d68c77f0d84b9382', 'to': '0x5ab1e75aeefa5883463e170d7229e5f51ece8ad1', 'value': 63, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0177825f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T10:52:56.000Z'}}, {'blockNum': '0x9c0459', 'uniqueId': '0xfb9ed49759798004346860dab88812ff919a8f364a46954da71330f75ea5a29b:log:203', 'hash': '0xfb9ed49759798004346860dab88812ff919a8f364a46954da71330f75ea5a29b', 'from': '0xbdbf7f7135218fc78bea7e0ebbd6769a31af2976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d21dba000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:06:38.000Z'}}, {'blockNum': '0x9c04f3', 'uniqueId': '0xeba72424a744dff1539f35c8401150bcdc0a2aa1823aa11cd8290bb33c7ae286:log:74', 'hash': '0xeba72424a744dff1539f35c8401150bcdc0a2aa1823aa11cd8290bb33c7ae286', 'from': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'to': '0xc1eaeb22ac0f9c1022cc8e7866dc50fbf8c2bdd1', 'value': 45.53773145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x010f6d1059', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:39:19.000Z'}}, {'blockNum': '0x9c0517', 'uniqueId': '0x6128c13360ffe035b465958ac54f5ee326529ff7571205cae5a65492ddee9f24:log:67', 'hash': '0x6128c13360ffe035b465958ac54f5ee326529ff7571205cae5a65492ddee9f24', 'from': '0xec4f69ea443bc2219dcb10cc8d007e4123a9ce6b', 'to': '0x698fa6437475f3f86df33ea0cb612ad529954811', 'value': 121.07019586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d1a27542', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T11:48:43.000Z'}}, {'blockNum': '0x9c05c5', 'uniqueId': '0x009f3f63ac7bb662aec3c3af80314c2d4c63394f151b801b264782516e5a3fef:log:9', 'hash': '0x009f3f63ac7bb662aec3c3af80314c2d4c63394f151b801b264782516e5a3fef', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8df0a8d77e274e6fa79dd02c81a29e02b08f36ef', 'value': 2251.80299435, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x346dcab0ab', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T12:29:33.000Z'}}, {'blockNum': '0x9c0633', 'uniqueId': '0x2158615eec41bdc2e95caefcb795ac437c7d161b5ef6e3df60728f1eaec8745e:log:148', 'hash': '0x2158615eec41bdc2e95caefcb795ac437c7d161b5ef6e3df60728f1eaec8745e', 'from': '0x18297afcbada55d7168598d197048bff5d0070ac', 'to': '0x0812341e41a6edfb3c34382d631f0617612ec50f', 'value': 1901.224067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2c442db32c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T12:53:25.000Z'}}, {'blockNum': '0x9c0655', 'uniqueId': '0xcc78d61464f75820f13862a3b22e8a98efda0a1ebae9f3af4c337a0ecfc42def:log:212', 'hash': '0xcc78d61464f75820f13862a3b22e8a98efda0a1ebae9f3af4c337a0ecfc42def', 'from': '0x414120ec6fd7d6ba58738c4e3149dd57e4216ca1', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 99.14647891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x024ef58553', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:01:21.000Z'}}, {'blockNum': '0x9c065a', 'uniqueId': '0xa1fe0516399c38e080ee3e9587f131588be5348d0838df49221f45a7f15dd3db:log:38', 'hash': '0xa1fe0516399c38e080ee3e9587f131588be5348d0838df49221f45a7f15dd3db', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0812341e41a6edfb3c34382d631f0617612ec50f', 'value': 553.72107241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ce46f4de9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:02:35.000Z'}}, {'blockNum': '0x9c069b', 'uniqueId': '0x495065846a9994a8e006798a7dc31a216a068be9423ada5af169f2c8dcf2964a:log:30', 'hash': '0x495065846a9994a8e006798a7dc31a216a068be9423ada5af169f2c8dcf2964a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x15709a7060cd2190b76a74b73959114fd3fdfe1d', 'value': 391.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0920620380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:15:11.000Z'}}, {'blockNum': '0x9c072f', 'uniqueId': '0x982fc77537b19dbea065040c0a69dd3c3a25335106b604614c3ebcf2eb3fd93b:log:109', 'hash': '0x982fc77537b19dbea065040c0a69dd3c3a25335106b604614c3ebcf2eb3fd93b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 2962.837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44fbe27b20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:45:55.000Z'}}, {'blockNum': '0x9c0752', 'uniqueId': '0x9caff2ef68817514c1e8e213372a230b86de8a24c0c9a4d52cc3c41c1a756141:log:92', 'hash': '0x9caff2ef68817514c1e8e213372a230b86de8a24c0c9a4d52cc3c41c1a756141', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2c5aaf5100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:53:15.000Z'}}, {'blockNum': '0x9c075a', 'uniqueId': '0xe297911a83d22a0acd9af845d5660a9a6d88849616be36acc331797ae0c89cd8:log:169', 'hash': '0xe297911a83d22a0acd9af845d5660a9a6d88849616be36acc331797ae0c89cd8', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf648c64943c25bacb238b166bbc27ad4365d4927', 'value': 469.86850437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0af0a27085', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:55:59.000Z'}}, {'blockNum': '0x9c0765', 'uniqueId': '0x9c336b367dfdb92879c06b06367320d5066f37bb43e29cbf03a7893a57479b08:log:128', 'hash': '0x9c336b367dfdb92879c06b06367320d5066f37bb43e29cbf03a7893a57479b08', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0x0d5152803744465e358c4baaa7b5d9c022e9471d', 'value': 39.71990652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xecbfc47c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T13:59:53.000Z'}}, {'blockNum': '0x9c0775', 'uniqueId': '0x3eabd6eb0c5794b28471b2a277cc9314e39a899540ca4937f7b6debbbca3d426:log:69', 'hash': '0x3eabd6eb0c5794b28471b2a277cc9314e39a899540ca4937f7b6debbbca3d426', 'from': '0x32e567e8b527d3194c60ea3c6a5c009d58a0b36d', 'to': '0x9ae2c02c243e3223402bbccbfcf77132e0b4b6fc', 'value': 773.45851918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12022c0a0e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:04:05.000Z'}}, {'blockNum': '0x9c077a', 'uniqueId': '0x7d621164130b2287b8271b4abba7b23e7887e18d49d62edf60602c3ece2dd4cf:log:161', 'hash': '0x7d621164130b2287b8271b4abba7b23e7887e18d49d62edf60602c3ece2dd4cf', 'from': '0x0d5152803744465e358c4baaa7b5d9c022e9471d', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 39.71990652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xecbfc47c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:05:04.000Z'}}, {'blockNum': '0x9c07ec', 'uniqueId': '0xf14701ff02c2f748da8ebfa78413a0f0102154393f8d00f1852a192a02cc319a:log:167', 'hash': '0xf14701ff02c2f748da8ebfa78413a0f0102154393f8d00f1852a192a02cc319a', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5fa5968c00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:31:05.000Z'}}, {'blockNum': '0x9c081a', 'uniqueId': '0x54313e64dc44fb1baeafd5328960a0810cc190c4569276c46aa9eb3edcd6265d:log:62', 'hash': '0x54313e64dc44fb1baeafd5328960a0810cc190c4569276c46aa9eb3edcd6265d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb47f2e40da0e388e1a8776334ec72924541cb268', 'value': 35560.381, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033bf4634420', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:43:15.000Z'}}, {'blockNum': '0x9c084d', 'uniqueId': '0x8c536d92a3ff02e28ecd4302b749594a3d55a33e2088b2cdbe70093139ea27b9:log:71', 'hash': '0x8c536d92a3ff02e28ecd4302b749594a3d55a33e2088b2cdbe70093139ea27b9', 'from': '0x6f4a21a9dd493c1c6958f66dddbdfee92927ad38', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x067ef83700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T14:57:57.000Z'}}, {'blockNum': '0x9c0863', 'uniqueId': '0x8657148d93dc815a20abe7b765509c60046a0b8a5a42512de98f14f16694c0b0:log:25', 'hash': '0x8657148d93dc815a20abe7b765509c60046a0b8a5a42512de98f14f16694c0b0', 'from': '0x414120ec6fd7d6ba58738c4e3149dd57e4216ca1', 'to': '0xf3c1c794cf73d4d4ccbd97f2bcadee31d39a6847', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:03:04.000Z'}}, {'blockNum': '0x9c0868', 'uniqueId': '0x4857fc1638b7df999dca58c4bb3cd69036c387bd6d03e43be1f16bce159799a5:log:0', 'hash': '0x4857fc1638b7df999dca58c4bb3cd69036c387bd6d03e43be1f16bce159799a5', 'from': '0xf3c1c794cf73d4d4ccbd97f2bcadee31d39a6847', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:04:28.000Z'}}, {'blockNum': '0x9c08c7', 'uniqueId': '0x2858034c4dadbdf5b8d59f34a659f16df20e3bea1862e646455b0892c13ff980:log:31', 'hash': '0x2858034c4dadbdf5b8d59f34a659f16df20e3bea1862e646455b0892c13ff980', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x24ff2d9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:26:03.000Z'}}, {'blockNum': '0x9c08d4', 'uniqueId': '0x6b928bed43a5ad0d00d248cc29ae1bea01586c42d8e8cadfd0d07305062a2ca6:log:52', 'hash': '0x6b928bed43a5ad0d00d248cc29ae1bea01586c42d8e8cadfd0d07305062a2ca6', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2962.837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44fbe27b20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:29:27.000Z'}}, {'blockNum': '0x9c0911', 'uniqueId': '0x3395bcd85ce2a76e733f17952b27a802e9d42dd3fde3bda2101323185aa013fb:log:58', 'hash': '0x3395bcd85ce2a76e733f17952b27a802e9d42dd3fde3bda2101323185aa013fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 823.67125897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x132d769989', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:40:02.000Z'}}, {'blockNum': '0x9c0919', 'uniqueId': '0x58062af473099d6f618cd073ab4c491bd5761ffc1e8d9f7a3ea5a40c3db25272:log:117', 'hash': '0x58062af473099d6f618cd073ab4c491bd5761ffc1e8d9f7a3ea5a40c3db25272', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x91d7ad5b71150f754a03747b9e4c4d17b3a0ed4d', 'value': 823.67125897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x132d769989', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:42:15.000Z'}}, {'blockNum': '0x9c092d', 'uniqueId': '0x9582217b1cbaf3a6d847dae35ad37fd128cfc43a587c8b273e93607fd353c6df:log:37', 'hash': '0x9582217b1cbaf3a6d847dae35ad37fd128cfc43a587c8b273e93607fd353c6df', 'from': '0x2be9dd83cf54d2d0b81e2e7efbb78e8e2b78700e', 'to': '0x86debe91fefbda4001fcdc8b3da72b0e4cdab0d4', 'value': 21885.03033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8cf224a8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:45:30.000Z'}}, {'blockNum': '0x9c0986', 'uniqueId': '0xe53e67e01c117e73ee1f8c5560fa7e24c822e3c549078dc88546e74abe2a3a21:log:123', 'hash': '0xe53e67e01c117e73ee1f8c5560fa7e24c822e3c549078dc88546e74abe2a3a21', 'from': '0x106f9c54536d33bdba8b371fbab696e86f51f941', 'to': '0xf7c8adddc63b1df0de12b5307126117f2afd5c17', 'value': 1193.69923701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1bcb007c75', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T15:59:05.000Z'}}, {'blockNum': '0x9c09a5', 'uniqueId': '0x3b41264ac0af01bb7e22b0efcc9a62c1928245038fecb310c833944877ca9234:log:1', 'hash': '0x3b41264ac0af01bb7e22b0efcc9a62c1928245038fecb310c833944877ca9234', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 3685.287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x55ce05b260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:05:43.000Z'}}, {'blockNum': '0x9c09a5', 'uniqueId': '0xaf5f1750a1277c2e27c6c3f953e38558e84b960623afd9e0781a935aff8d26ae:log:2', 'hash': '0xaf5f1750a1277c2e27c6c3f953e38558e84b960623afd9e0781a935aff8d26ae', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 528.869719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c504f25fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:05:43.000Z'}}, {'blockNum': '0x9c09ab', 'uniqueId': '0xe0a635ad87524b166978ac5a4570fc7945061aaf227a13d1ce735de7852e1694:log:27', 'hash': '0xe0a635ad87524b166978ac5a4570fc7945061aaf227a13d1ce735de7852e1694', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 590.67657473, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0dc0b4ed01', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:06:31.000Z'}}, {'blockNum': '0x9c09ab', 'uniqueId': '0x20e038ed04c94d8e219ed1b3ded4d2e6758a1aa75ba49da11b2b271941870090:log:46', 'hash': '0x20e038ed04c94d8e219ed1b3ded4d2e6758a1aa75ba49da11b2b271941870090', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1691, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x275f253b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:06:31.000Z'}}, {'blockNum': '0x9c09ae', 'uniqueId': '0xaf8a1c73c05b7e539c89c7d1849f00eeea297aebd3b4e9a11516881a254b68d5:log:3', 'hash': '0xaf8a1c73c05b7e539c89c7d1849f00eeea297aebd3b4e9a11516881a254b68d5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xe55494e7434408e7074eb03d8ca124f9151fce1d', 'value': 1837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ac55f8d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:07:34.000Z'}}, {'blockNum': '0x9c09b2', 'uniqueId': '0x02d85876c7c7077c46c8c95d57391d82e83bd56604dfc161d6827879a294dea7:log:3', 'hash': '0x02d85876c7c7077c46c8c95d57391d82e83bd56604dfc161d6827879a294dea7', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 11.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x42758cc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:36.000Z'}}, {'blockNum': '0x9c09b2', 'uniqueId': '0xc11da8e7664431c78265d44517552dc7ddf822123b93336dcb33ff5e9541663c:log:134', 'hash': '0xc11da8e7664431c78265d44517552dc7ddf822123b93336dcb33ff5e9541663c', 'from': '0x54a5a4a492048080000ef50f90c69810716b207d', 'to': '0xd137e8cc2a71c4d9e28940d21cedbd80b7506981', 'value': 218.575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0516cefb60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:36.000Z'}}, {'blockNum': '0x9c09b4', 'uniqueId': '0xaccfc11f03ff851d6cde9b19033abe47894fed892b6f738635669f4841e6c057:log:50', 'hash': '0xaccfc11f03ff851d6cde9b19033abe47894fed892b6f738635669f4841e6c057', 'from': '0xafb8cc48ca7c4aa79788912f564398434c8af68e', 'to': '0xa06a9a3cd5a748e6786d53c605507d68ef02315f', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:08:49.000Z'}}, {'blockNum': '0x9c09b5', 'uniqueId': '0x64a904d0386a331e481b3b53a4fd5b33ab1f20614cc1347c925d7ed4a6450775:log:44', 'hash': '0x64a904d0386a331e481b3b53a4fd5b33ab1f20614cc1347c925d7ed4a6450775', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x90c72d9f8a299896b295b04813a9526c584fd7bc', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:04.000Z'}}, {'blockNum': '0x9c09b7', 'uniqueId': '0xf05b9c71d80e64e1dd222d5b25d3f2cfa129cb394bbd364fc2a8764312fda5b1:log:2', 'hash': '0xf05b9c71d80e64e1dd222d5b25d3f2cfa129cb394bbd364fc2a8764312fda5b1', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf122f0d45acf90e9d494c04eeb0719bab65b7be8', 'value': 7925.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb88767a8a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:09.000Z'}}, {'blockNum': '0x9c09b8', 'uniqueId': '0xe6353e3cea72af11ef8c3da512b73a7793ad2a86353079cd07e8e210f637f553:log:112', 'hash': '0xe6353e3cea72af11ef8c3da512b73a7793ad2a86353079cd07e8e210f637f553', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xf648c64943c25bacb238b166bbc27ad4365d4927', 'value': 40.40922022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf0db93a6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:09:11.000Z'}}, {'blockNum': '0x9c09bc', 'uniqueId': '0x56796eb5db0f95cb589452f3678b845185019b1076381febf542252723c96b5e:log:39', 'hash': '0x56796eb5db0f95cb589452f3678b845185019b1076381febf542252723c96b5e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'value': 104.25775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026d6cb398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:18.000Z'}}, {'blockNum': '0x9c09bc', 'uniqueId': '0x42687dcfdd945d447072d6b48f0330a67d3cca2ecdb1104f064caed684c22c59:log:56', 'hash': '0x42687dcfdd945d447072d6b48f0330a67d3cca2ecdb1104f064caed684c22c59', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'value': 1345.16605763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1f51d08343', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:18.000Z'}}, {'blockNum': '0x9c09be', 'uniqueId': '0xb8ce97c94f67e4788d1dede4df4e24a785df9b2ea4f788e3ac55f8cc5f61778b:log:24', 'hash': '0xb8ce97c94f67e4788d1dede4df4e24a785df9b2ea4f788e3ac55f8cc5f61778b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'value': 7304.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaa14e51dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:10:24.000Z'}}, {'blockNum': '0x9c09c1', 'uniqueId': '0xdd07436167468e1bd68f1fc46c98b43d125962d81a120c04dde4d62e9e08f8cd:log:107', 'hash': '0xdd07436167468e1bd68f1fc46c98b43d125962d81a120c04dde4d62e9e08f8cd', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x8752f02f5d99c80f6e4948bba6a0bfc8e9df0fbd', 'value': 1345.16605763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1f51d08343', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:11:10.000Z'}}, {'blockNum': '0x9c09c4', 'uniqueId': '0xc97193efe004751246addc214e9f09898a31b7f11341da0b3b3c2edf0d3c135b:log:11', 'hash': '0xc97193efe004751246addc214e9f09898a31b7f11341da0b3b3c2edf0d3c135b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7039b74e59ecaed4d7501016bea9f7805c137b98', 'value': 215.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05059cd240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:00.000Z'}}, {'blockNum': '0x9c09c4', 'uniqueId': '0x70b992094772629cab822f46e179563d375c5354ca527970c9c40e0105d2413f:log:14', 'hash': '0x70b992094772629cab822f46e179563d375c5354ca527970c9c40e0105d2413f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1432.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x215d39f480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:00.000Z'}}, {'blockNum': '0x9c09c8', 'uniqueId': '0x09834911e70eff47b8bb9c62b2690e8f8ce908be1e0faee437f2e15e464d82cd:log:57', 'hash': '0x09834911e70eff47b8bb9c62b2690e8f8ce908be1e0faee437f2e15e464d82cd', 'from': '0x7039b74e59ecaed4d7501016bea9f7805c137b98', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 215.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05059cd240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:12:46.000Z'}}, {'blockNum': '0x9c09c9', 'uniqueId': '0xaee7c2f2fef5b176f618e2bf65afee8f1370b13cc071823612d2a90fdb895109:log:4', 'hash': '0xaee7c2f2fef5b176f618e2bf65afee8f1370b13cc071823612d2a90fdb895109', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'value': 811.0148356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12e2066e28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:00.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x7bc8a0482d14d1709644c2bd95162e5349ec751af776b081d18ffef214fc42f8:log:10', 'hash': '0x7bc8a0482d14d1709644c2bd95162e5349ec751af776b081d18ffef214fc42f8', 'from': '0xb12157c9d242ab7e0560ba8aef0e1b75caa8b6d8', 'to': '0x8fc5a4f0ee65ab422ba1bc27094103318d61c8a2', 'value': 1693.264701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x276ca4e3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x66305fa9f703f9285b9bc51445b794c3d8b8d688f15fb8b67b455ca5ee977162:log:32', 'hash': '0x66305fa9f703f9285b9bc51445b794c3d8b8d688f15fb8b67b455ca5ee977162', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2171, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x328c2b1b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09cb', 'uniqueId': '0x7c2a1324e332453af6f8a2bfde9dec35ad488b94a2dc50f4ec16ed1fcc83d842:log:90', 'hash': '0x7c2a1324e332453af6f8a2bfde9dec35ad488b94a2dc50f4ec16ed1fcc83d842', 'from': '0xfd752e65b20c97534f09d4e67bbb537650e6f833', 'to': '0x8752f02f5d99c80f6e4948bba6a0bfc8e9df0fbd', 'value': 811.0148356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12e2066e28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:14:15.000Z'}}, {'blockNum': '0x9c09ce', 'uniqueId': '0xd057450683858abfe502b84c0454c1065f191939d5049f82753ab004a63a948d:log:2', 'hash': '0xd057450683858abfe502b84c0454c1065f191939d5049f82753ab004a63a948d', 'from': '0x8fc5a4f0ee65ab422ba1bc27094103318d61c8a2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1693.264701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x276ca4e3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:05.000Z'}}, {'blockNum': '0x9c09cf', 'uniqueId': '0x4f169e1ebf04fab6c9c89714c5a8f3b20e9cde34fb2397570112502ceeffc72a:log:22', 'hash': '0x4f169e1ebf04fab6c9c89714c5a8f3b20e9cde34fb2397570112502ceeffc72a', 'from': '0x72e5263ff33d2494692d7f94a758aa9f82062f73', 'to': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'value': 3374.98636507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4e947c80db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:12.000Z'}}, {'blockNum': '0x9c09cf', 'uniqueId': '0xa4ed05e078b59e9fff6cd93aed656e224a7b2dc2a9fd8ce15557b2a898540d95:log:32', 'hash': '0xa4ed05e078b59e9fff6cd93aed656e224a7b2dc2a9fd8ce15557b2a898540d95', 'from': '0x06450acadae3710f5d6d49993af84cda952ec72e', 'to': '0x28b5966e6b106fee16be8015b932ef73648cb957', 'value': 1000.15614622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749652a9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:12.000Z'}}, {'blockNum': '0x9c09d1', 'uniqueId': '0x7af50a561d5efb8625e936d2cbfbfc7025d2cc111b0574f14c641b77db231c3a:log:18', 'hash': '0x7af50a561d5efb8625e936d2cbfbfc7025d2cc111b0574f14c641b77db231c3a', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 3338.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4db80c5de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:15:40.000Z'}}, {'blockNum': '0x9c09d5', 'uniqueId': '0x07b25f8887decc6aab1f17ea2e740ed31475a1aaf8436eb833ecfeff699d1e89:log:0', 'hash': '0x07b25f8887decc6aab1f17ea2e740ed31475a1aaf8436eb833ecfeff699d1e89', 'from': '0x28b5966e6b106fee16be8015b932ef73648cb957', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1000.15614622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1749652a9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:16:06.000Z'}}, {'blockNum': '0x9c09d9', 'uniqueId': '0x72c87a3c1650da41ee2b0ec3116aa5aa6cd8d9f28cbc7b3110942f39260c4980:log:57', 'hash': '0x72c87a3c1650da41ee2b0ec3116aa5aa6cd8d9f28cbc7b3110942f39260c4980', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'value': 139.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342588780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:16:39.000Z'}}, {'blockNum': '0x9c09dc', 'uniqueId': '0xa78c1fb9d23a7cc2dab90c0c059951b8a01e3abaef6b26586c451dd127f6a19f:log:74', 'hash': '0xa78c1fb9d23a7cc2dab90c0c059951b8a01e3abaef6b26586c451dd127f6a19f', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xb1c0e08d9f85e373938bc5a3ee0f4f462da11f7a', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:17:03.000Z'}}, {'blockNum': '0x9c09df', 'uniqueId': '0x9bb4fd9a0366b0e50ddbe3c5149b4c26ea1343b6a4586f7e85e42a8b7ac1cc93:log:22', 'hash': '0x9bb4fd9a0366b0e50ddbe3c5149b4c26ea1343b6a4586f7e85e42a8b7ac1cc93', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x5934e7eb0d5229560879e76ef4252117458d89dc', 'value': 116.7013097, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b798111a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:18:00.000Z'}}, {'blockNum': '0x9c09e1', 'uniqueId': '0x7dcc62ae8d559cd6ce9049f7b7e46a12a6c32638a54e1e580b9838639d04b8ff:log:46', 'hash': '0x7dcc62ae8d559cd6ce9049f7b7e46a12a6c32638a54e1e580b9838639d04b8ff', 'from': '0xb1c0e08d9f85e373938bc5a3ee0f4f462da11f7a', 'to': '0xf3fc538c9a8c6b86bc158055ba84448f23819fa9', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:18:33.000Z'}}, {'blockNum': '0x9c09f1', 'uniqueId': '0x72bbe95fd04d9b855a6fcf59a712392b881e5d77cd718b6bb91bd04863cf452c:log:25', 'hash': '0x72bbe95fd04d9b855a6fcf59a712392b881e5d77cd718b6bb91bd04863cf452c', 'from': '0xa7dc0fd1bffe36874c3d94c2d3d3ee6e30ab48c5', 'to': '0xa5d4827cce6f52f776e5b96e2a46eb8e87d27ea5', 'value': 630.92936319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0eb0a1ce7f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:21:25.000Z'}}, {'blockNum': '0x9c09f4', 'uniqueId': '0xb0c1eb08875aff4393bf977f4eaad39b5aa92c6cd43f094101a18cf121cc237b:log:33', 'hash': '0xb0c1eb08875aff4393bf977f4eaad39b5aa92c6cd43f094101a18cf121cc237b', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0xa84460d2bd20f37adeb38cf1c26dfd1a2b868a4a', 'value': 405.451515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0970adea0c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:21:42.000Z'}}, {'blockNum': '0x9c09f8', 'uniqueId': '0x69899f7ec0c6bd717ca81dba5f770d3187a466a93ed43d498226cfac0f57e1e8:log:161', 'hash': '0x69899f7ec0c6bd717ca81dba5f770d3187a466a93ed43d498226cfac0f57e1e8', 'from': '0xc4ca8fe6ddb499dcf2f6a7eae8909345413bcb4c', 'to': '0x926cf35549c98e7fd0e7b2419753c33f0957263b', 'value': 5555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8156615300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:09.000Z'}}, {'blockNum': '0x9c09fa', 'uniqueId': '0x1a7d3effae33ce9891543f2a296886388b990cfdcf17371ae082a9bdab33385b:log:30', 'hash': '0x1a7d3effae33ce9891543f2a296886388b990cfdcf17371ae082a9bdab33385b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2463, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x39589fbf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:21.000Z'}}, {'blockNum': '0x9c09fa', 'uniqueId': '0xea8a2c4ff8c2966f464ce1399d65bef82319ea71b9fb0f279228bb8cca0e9d89:log:70', 'hash': '0xea8a2c4ff8c2966f464ce1399d65bef82319ea71b9fb0f279228bb8cca0e9d89', 'from': '0x90c72d9f8a299896b295b04813a9526c584fd7bc', 'to': '0xff70c95dbb3e6d63221e7f420948b78b97df6c26', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:23:21.000Z'}}, {'blockNum': '0x9c09ff', 'uniqueId': '0xf0e5754b8c107dbec21de9a445794155dd95f5f7b520ef80258418f0ff874633:log:61', 'hash': '0xf0e5754b8c107dbec21de9a445794155dd95f5f7b520ef80258418f0ff874633', 'from': '0x43bacfb2e5c522def447b0b75c9fe532948e1541', 'to': '0x3d5618d80bda015cc644b500167f2518b2f6eed7', 'value': 1504.075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2304fc50e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:24:21.000Z'}}, {'blockNum': '0x9c0a0e', 'uniqueId': '0xed850938a97e2bca650e97b4c314222ee80dd149d746a9cdd77c1c135e06dffe:log:31', 'hash': '0xed850938a97e2bca650e97b4c314222ee80dd149d746a9cdd77c1c135e06dffe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb4cf686ea7a0e1cbc83c6d922106c4df5249ce43', 'value': 74.895944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01be6a2420', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:28.000Z'}}, {'blockNum': '0x9c0a0f', 'uniqueId': '0xad89dae06d5f4d07bc39ce0f3e7bd937cbf5073a52a09af1f37ba84eea049156:log:32', 'hash': '0xad89dae06d5f4d07bc39ce0f3e7bd937cbf5073a52a09af1f37ba84eea049156', 'from': '0x0e1d7ef634df68c59cb0a91125c7669201649d26', 'to': '0xc8093f5232ac6be142a3704e95834df71dc69fa6', 'value': 8204.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbf0406ad60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:49.000Z'}}, {'blockNum': '0x9c0a0f', 'uniqueId': '0x06aa430fbb97e70b65ed9c4181c42ce6a2e1fe531efe47682af30c0b4ea7d0ba:log:97', 'hash': '0x06aa430fbb97e70b65ed9c4181c42ce6a2e1fe531efe47682af30c0b4ea7d0ba', 'from': '0x2257a0ad17d3da25928452f3eb13012291a5325f', 'to': '0x5d2914536b1e50412a166f8fddf67121f66d34ca', 'value': 147.55518404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036f7f57c4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:26:49.000Z'}}, {'blockNum': '0x9c0a1c', 'uniqueId': '0x60b8d4d93caf788dbfa2c8a380dc57d8a389063ded26a2d46c0686d0dcffbcb7:log:13', 'hash': '0x60b8d4d93caf788dbfa2c8a380dc57d8a389063ded26a2d46c0686d0dcffbcb7', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1432.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x215d39f480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:29:22.000Z'}}, {'blockNum': '0x9c0a1d', 'uniqueId': '0xe7a4925231c742ece41fa7f728d40fac142c0686729aa9c69a5d6d599c9b6003:log:120', 'hash': '0xe7a4925231c742ece41fa7f728d40fac142c0686729aa9c69a5d6d599c9b6003', 'from': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 139.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0342588780', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:29:45.000Z'}}, {'blockNum': '0x9c0a23', 'uniqueId': '0xf4ad37f12132d9668cb70be75219480f5805ce17b596d352f8fe8f9b75a260e9:log:15', 'hash': '0xf4ad37f12132d9668cb70be75219480f5805ce17b596d352f8fe8f9b75a260e9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 213.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb6b9180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:30:58.000Z'}}, {'blockNum': '0x9c0a23', 'uniqueId': '0x5c116eeb01f97b07cf4129fe776b41621c27ae8f4e41a71e0f9a7631ad27ff96:log:16', 'hash': '0x5c116eeb01f97b07cf4129fe776b41621c27ae8f4e41a71e0f9a7631ad27ff96', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'value': 433.849719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a19f2227c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:30:58.000Z'}}, {'blockNum': '0x9c0a24', 'uniqueId': '0x150d38679fe114bca7f0c49cd7263b5220dc58a3c7fca622a54c4f3585c28d98:log:126', 'hash': '0x150d38679fe114bca7f0c49cd7263b5220dc58a3c7fca622a54c4f3585c28d98', 'from': '0x926cf35549c98e7fd0e7b2419753c33f0957263b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87cf63a900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:31:07.000Z'}}, {'blockNum': '0x9c0a25', 'uniqueId': '0x429e0522f456afc5753121925087c5264f77376bbdce3de70ccc6054d9863089:log:151', 'hash': '0x429e0522f456afc5753121925087c5264f77376bbdce3de70ccc6054d9863089', 'from': '0xf1b1230198a2804c8ae6f0d985559cfc493ee0f3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3374.98636507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4e947c80db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:31:13.000Z'}}, {'blockNum': '0x9c0a29', 'uniqueId': '0x75df4c06aea860a3c8204a8a7fbc494ec593dec9746b7f0357a91d651303f07e:log:68', 'hash': '0x75df4c06aea860a3c8204a8a7fbc494ec593dec9746b7f0357a91d651303f07e', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x24e82e47e44425200ebc56b328cf745456b46cf2', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:32:40.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x4e132f6bc69faa49e0c9e6b4830dd21ad704f5614485b76e0a4eb28e48d62786:log:49', 'hash': '0x4e132f6bc69faa49e0c9e6b4830dd21ad704f5614485b76e0a4eb28e48d62786', 'from': '0x24e82e47e44425200ebc56b328cf745456b46cf2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x18313b5a9d6f2ca433c83a1dc4064002263c7f682cf69a5d484a7a9388b66df6:log:63', 'hash': '0x18313b5a9d6f2ca433c83a1dc4064002263c7f682cf69a5d484a7a9388b66df6', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 3099.785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x482c288ba0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0x29a18f105e78a3be1bc57b0c473f55411299145369a76ac05d6273e0be6c8037:log:64', 'hash': '0x29a18f105e78a3be1bc57b0c473f55411299145369a76ac05d6273e0be6c8037', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1429.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x214b585180', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0xad70fab61f21423eb5e9a30df33d6a2e71cafc02101f863369e11723ee17085c:log:65', 'hash': '0xad70fab61f21423eb5e9a30df33d6a2e71cafc02101f863369e11723ee17085c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 452.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a8bf8a080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2a', 'uniqueId': '0xcb7681c7521516a21383c367cfcb5e57245119f53af0a80160695a485c7bcbcc:log:78', 'hash': '0xcb7681c7521516a21383c367cfcb5e57245119f53af0a80160695a485c7bcbcc', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x660be3721b97db19c56af5c487f5df6fe23ac4b4', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:03.000Z'}}, {'blockNum': '0x9c0a2b', 'uniqueId': '0x474192de9c1cd263a49a0bb7e163c715a2290af3a594d9c65a6124d0a3602218:log:52', 'hash': '0x474192de9c1cd263a49a0bb7e163c715a2290af3a594d9c65a6124d0a3602218', 'from': '0x660be3721b97db19c56af5c487f5df6fe23ac4b4', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e90edd000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:22.000Z'}}, {'blockNum': '0x9c0a2b', 'uniqueId': '0xc3e2c33a1dc678c0c6b330d196dddfda172417cec8dcbf4c52f528f110e20902:log:129', 'hash': '0xc3e2c33a1dc678c0c6b330d196dddfda172417cec8dcbf4c52f528f110e20902', 'from': '0xdc8f4c6ec35143c86c072ada1133ce577e2c4d91', 'to': '0x0e62e4f3b5f5a32d108e73037a7900686291c6cd', 'value': 3467.9610187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x50bea890ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:33:22.000Z'}}, {'blockNum': '0x9c0a2d', 'uniqueId': '0x5a41af836586c43347b8bb88a77aefcc1d1b790e33915890a7127cfbb55b5eb2:log:6', 'hash': '0x5a41af836586c43347b8bb88a77aefcc1d1b790e33915890a7127cfbb55b5eb2', 'from': '0x0e62e4f3b5f5a32d108e73037a7900686291c6cd', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 3467.9610187, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x50bea890ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:34:26.000Z'}}, {'blockNum': '0x9c0a2d', 'uniqueId': '0xb3d65cad94513535450e8676c1e9fc643d8b4c738d2c720f97e17f8f63f6e102:log:36', 'hash': '0xb3d65cad94513535450e8676c1e9fc643d8b4c738d2c720f97e17f8f63f6e102', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xae5432464b0dcbbb596ac664f49d6d0ea883b0be', 'value': 1790.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29ad59c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:34:26.000Z'}}, {'blockNum': '0x9c0a2e', 'uniqueId': '0xc57b5e13238b26425a7de269951ba2d68821c595d535b2d628a5e8acf711c493:log:99', 'hash': '0xc57b5e13238b26425a7de269951ba2d68821c595d535b2d628a5e8acf711c493', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 289.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c06a5d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:35:14.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xca1a7ac54adde72f1a0f26d06e2b9948c65a02fd48ae607a48d9263c803cfb75:log:6', 'hash': '0xca1a7ac54adde72f1a0f26d06e2b9948c65a02fd48ae607a48d9263c803cfb75', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 780.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x122d003680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0x066240a110abc2408ec928384180c6d80bffd610f2bab8553d6e4837ec72955a:log:8', 'hash': '0x066240a110abc2408ec928384180c6d80bffd610f2bab8553d6e4837ec72955a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x15709a7060cd2190b76a74b73959114fd3fdfe1d', 'value': 106.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027da68680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xc5a8225b45299ef369b28a29f7181ac11a9902f3add090b0a230ca2a7ce68437:log:9', 'hash': '0xc5a8225b45299ef369b28a29f7181ac11a9902f3add090b0a230ca2a7ce68437', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 1820.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a65e2f880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xe8fda1c64b7e921c3c07af4bee107e2a209fc4b41a515dec8413d84aa59b652e:log:14', 'hash': '0xe8fda1c64b7e921c3c07af4bee107e2a209fc4b41a515dec8413d84aa59b652e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'value': 871.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x144d67e380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3a', 'uniqueId': '0xe77041d02e655b48d1e6898c38a522987d863f1665ecd92993e9f18a76a9c433:log:15', 'hash': '0xe77041d02e655b48d1e6898c38a522987d863f1665ecd92993e9f18a76a9c433', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 8290.76742325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc108d320b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:37:43.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0xf3d5c6c8b33c2089a50f8377eb84dc598d9631f2770ccda80d92b7b4e91c8a69:log:34', 'hash': '0xf3d5c6c8b33c2089a50f8377eb84dc598d9631f2770ccda80d92b7b4e91c8a69', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 780.644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x122d003680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0xb755a62d3f4e0e1eb0818d571b8428e280770fbbda82a7ab5007bd248db1bc11:log:35', 'hash': '0xb755a62d3f4e0e1eb0818d571b8428e280770fbbda82a7ab5007bd248db1bc11', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 8290.76742325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc108d320b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a3e', 'uniqueId': '0x60cd0dd87a27a0cfa4e46aed6fd0a1370f8a37cf7f3b640605c25a3b48c64072:log:51', 'hash': '0x60cd0dd87a27a0cfa4e46aed6fd0a1370f8a37cf7f3b640605c25a3b48c64072', 'from': '0x91bbeb418a36ff9e238d1c5b4e02efb35077e18c', 'to': '0x1a0d6bb7c147014a2c5e0ea446180e2b797e8ec6', 'value': 1635, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26115c0300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:38:33.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0xd5d1eae07e6d6af063ddafddc26e860251901bf172706244a2d8f1d28b9b1964:log:112', 'hash': '0xd5d1eae07e6d6af063ddafddc26e860251901bf172706244a2d8f1d28b9b1964', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'value': 136.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033076e480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x6fd6cb09958b9533ac60002a77a698b18bee4727ad133cba3bfeb9b6654e33ed:log:113', 'hash': '0x6fd6cb09958b9533ac60002a77a698b18bee4727ad133cba3bfeb9b6654e33ed', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbdaf17832a7141b591d9407490328fa5df364cb5', 'value': 242.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a6ceb0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x1e2bce45e5d1bd2d4d40d1ab528c5be2cdd46262161cf6bd770c65208b32256c:log:114', 'hash': '0x1e2bce45e5d1bd2d4d40d1ab528c5be2cdd46262161cf6bd770c65208b32256c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x83f5f66a111a446d29bc28c82b292b42cbe892ef', 'value': 3.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17b8ff80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x2cf126b70436ded34755d8858b2b1d72c47b98fea69223a268c0f70921aa9453:log:115', 'hash': '0x2cf126b70436ded34755d8858b2b1d72c47b98fea69223a268c0f70921aa9453', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x74f7477556d7b099ceb5781d5a7a109947b72a15', 'value': 1990.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e5b2a6280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x8eba1126ecc4828130478c1b08dad3595b4b6b30b7ed3e0796c97eff76413593:log:116', 'hash': '0x8eba1126ecc4828130478c1b08dad3595b4b6b30b7ed3e0796c97eff76413593', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1e580bafb4649412d0c4fe1611d58d31bb3135f2', 'value': 1976.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e07d38bc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a41', 'uniqueId': '0x9829954cd8d7531ed341faf8080b5a820127670edc21f785dbd34807046fec02:log:119', 'hash': '0x9829954cd8d7531ed341faf8080b5a820127670edc21f785dbd34807046fec02', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x93c476aa875bfb62b5e776ce0ae48b47926e36c2', 'value': 75.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c467bc20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:39:15.000Z'}}, {'blockNum': '0x9c0a44', 'uniqueId': '0x3b8f524c484080f8d76763e11437b8b96ff232bb9fcafe8a593e7f94f2d622a5:log:48', 'hash': '0x3b8f524c484080f8d76763e11437b8b96ff232bb9fcafe8a593e7f94f2d622a5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x639928b207057fbd1eba5fa915d3d9951a48a62d', 'value': 451.77695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a84cced39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:40:43.000Z'}}, {'blockNum': '0x9c0a44', 'uniqueId': '0x65e26edc29d0e084de485be05ec62ba184b62f4538f775b49c70eb48a321de11:log:50', 'hash': '0x65e26edc29d0e084de485be05ec62ba184b62f4538f775b49c70eb48a321de11', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'value': 474.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b0f19f680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:40:43.000Z'}}, {'blockNum': '0x9c0a45', 'uniqueId': '0x34728c79314fcc55e0778bb254814f47a84fee4e544b311adafe43f13a7a9bbf:log:84', 'hash': '0x34728c79314fcc55e0778bb254814f47a84fee4e544b311adafe43f13a7a9bbf', 'from': '0xa8c4b9f13c5da3c08901ae1e907fb89c5f75f605', 'to': '0xee83d407ea7b42b12e3871c0a2b84ff196522e32', 'value': 52.29109486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0137ade0ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:41:06.000Z'}}, {'blockNum': '0x9c0a46', 'uniqueId': '0xf3139d29d13bf6eafa9b9eb186c58aa9dc9c1649e83096af37a9c33948ed1455:log:2', 'hash': '0xf3139d29d13bf6eafa9b9eb186c58aa9dc9c1649e83096af37a9c33948ed1455', 'from': '0xee83d407ea7b42b12e3871c0a2b84ff196522e32', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 52.29109486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0137ade0ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:41:39.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xfeeb2dcce043573dd775e21a0ced1d1d505a7cfc60456441992c33e59ed2bde2:log:98', 'hash': '0xfeeb2dcce043573dd775e21a0ced1d1d505a7cfc60456441992c33e59ed2bde2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xaca27a35838da5421fe925eb621a7679d6d2bdde', 'value': 889.652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14b6bd3880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xa53f9267c6d3e7c8df6f0ad0e9157e213a54b10d177d791293457b0637e05827:log:99', 'hash': '0xa53f9267c6d3e7c8df6f0ad0e9157e213a54b10d177d791293457b0637e05827', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 145.114595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0360f34cac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0xa66ac49c0aeca1ce0666b49993c4f106686f6490e0619ec4bf9ab4e6b6204e89:log:105', 'hash': '0xa66ac49c0aeca1ce0666b49993c4f106686f6490e0619ec4bf9ab4e6b6204e89', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x67e5f5db4c866f1b5b31ac097179bcd85a01aa0e', 'value': 2206.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3362a03a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0x2f4cbf577bc815b62acfc62bf18777b5c3e357e258ab55e973596377887a3b55:log:110', 'hash': '0x2f4cbf577bc815b62acfc62bf18777b5c3e357e258ab55e973596377887a3b55', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbb4b1591816121b6e0a03fe9def951a0833f7892', 'value': 1210.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c3200d680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a49', 'uniqueId': '0x51357113472ccabaab043776fbe13bdf3e7eefe13663efc69dd32467605d1578:log:167', 'hash': '0x51357113472ccabaab043776fbe13bdf3e7eefe13663efc69dd32467605d1578', 'from': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'to': '0xd4dd74430083a862ee72be896d56091ddd48b829', 'value': 4000.24527544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5d2351e2b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:42:27.000Z'}}, {'blockNum': '0x9c0a4f', 'uniqueId': '0x987b4417fc0d07ef834cd348c48abc9bd42872407d576ea3a26d74ee89a94a6a:log:50', 'hash': '0x987b4417fc0d07ef834cd348c48abc9bd42872407d576ea3a26d74ee89a94a6a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x945c1f396e3ae46f6a430172051d5deef7add6be', 'value': 145.114595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0360f34cac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:21.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x940f7e4d843af31b63707ea72d01d8ef0599b9de725e285d61187f25fe0c4a2e:log:78', 'hash': '0x940f7e4d843af31b63707ea72d01d8ef0599b9de725e285d61187f25fe0c4a2e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 3059.869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x473e3d9020', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0xa3c06bd5e03b815ef2f0d4a555acc372fd661ceff202576ffe14e2427b8bf74c:log:80', 'hash': '0xa3c06bd5e03b815ef2f0d4a555acc372fd661ceff202576ffe14e2427b8bf74c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1414.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20f1f02280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x188794cc933ac238e30ebd54d3e6e3a2cd59886f82264634fef400107eee9215:log:85', 'hash': '0x188794cc933ac238e30ebd54d3e6e3a2cd59886f82264634fef400107eee9215', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1788f3be0b0f5da8f455375940cab89c4cc803e3', 'value': 718.258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10b926bb40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0x5d5d2bc068b58a6173c7412ca578e3356a57441960a0538f8660bf0cd826002b:log:97', 'hash': '0x5d5d2bc068b58a6173c7412ca578e3356a57441960a0538f8660bf0cd826002b', 'from': '0x67e5f5db4c866f1b5b31ac097179bcd85a01aa0e', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2206.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3362a03a80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a52', 'uniqueId': '0xe9971b510f9818381c477174f98f3481d7aedbe3272ac2995d0b5e153193119f:log:123', 'hash': '0xe9971b510f9818381c477174f98f3481d7aedbe3272ac2995d0b5e153193119f', 'from': '0xbc4db589f05cf12cd649936f9393b3b55fe366e5', 'to': '0xf48f04ebe14e9fa09faad777c77c9fde2b2caac7', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:44:47.000Z'}}, {'blockNum': '0x9c0a54', 'uniqueId': '0x3a6fb4dfc82f4e231ec00ab8a755ebd2425a2db98429bd4e0a47e50f983aeab3:log:10', 'hash': '0x3a6fb4dfc82f4e231ec00ab8a755ebd2425a2db98429bd4e0a47e50f983aeab3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'value': 769.806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ec66bcc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:45:40.000Z'}}, {'blockNum': '0x9c0a58', 'uniqueId': '0x32e5864b588eebb38fffc506e38e6b0747e1e6498786b1dc1d90a751a027cfac:log:116', 'hash': '0x32e5864b588eebb38fffc506e38e6b0747e1e6498786b1dc1d90a751a027cfac', 'from': '0xf48f04ebe14e9fa09faad777c77c9fde2b2caac7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:46:46.000Z'}}, {'blockNum': '0x9c0a5e', 'uniqueId': '0x9b27ed464e80da0d018233cad5e14c19a06067b9dbf891f545f76abcf1895ff7:log:3', 'hash': '0x9b27ed464e80da0d018233cad5e14c19a06067b9dbf891f545f76abcf1895ff7', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3059.869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x473e3d9020', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:48:36.000Z'}}, {'blockNum': '0x9c0a5e', 'uniqueId': '0x2520949abce9dcfeae2ca80ad52cc4bb612b28ea791733e033bf70389c10430a:log:8', 'hash': '0x2520949abce9dcfeae2ca80ad52cc4bb612b28ea791733e033bf70389c10430a', 'from': '0xdcfffaad53ae360bc67763a3f597e6c46dee65f9', 'to': '0xbaec2b066edcea546b2454fb6fc3d25e1daf23d6', 'value': 312.17713, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0744b87f68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:48:36.000Z'}}, {'blockNum': '0x9c0a66', 'uniqueId': '0x443c3f80c1bb4f5e4d0540de6c394259a5be9b811d9a18f575a568f897e37db0:log:184', 'hash': '0x443c3f80c1bb4f5e4d0540de6c394259a5be9b811d9a18f575a568f897e37db0', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5694.312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8494be9100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:49:43.000Z'}}, {'blockNum': '0x9c0a67', 'uniqueId': '0xb82bc207ab9ab9a08e572176d2e372f13a164805eff31d7634ca106b2cf39be6:log:133', 'hash': '0xb82bc207ab9ab9a08e572176d2e372f13a164805eff31d7634ca106b2cf39be6', 'from': '0xe55494e7434408e7074eb03d8ca124f9151fce1d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x54c60d1900', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:49:46.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x0815321b3d7e309ee2969c69d558fca9d812d7156c72c2b42341d121d6e6694b:log:154', 'hash': '0x0815321b3d7e309ee2969c69d558fca9d812d7156c72c2b42341d121d6e6694b', 'from': '0xff70c95dbb3e6d63221e7f420948b78b97df6c26', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbeebcf0800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x3a18c3839ad4859944c8a260a80338a00c1cca1aab9fd5cfaf48a613fa5c4cd8:log:175', 'hash': '0x3a18c3839ad4859944c8a260a80338a00c1cca1aab9fd5cfaf48a613fa5c4cd8', 'from': '0xc8093f5232ac6be142a3704e95834df71dc69fa6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8204.063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbf0406ad60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a6b', 'uniqueId': '0x650107f44b73b8c3b743f79223f715f292d8f4f55c919618d7c86764b4c6556e:log:176', 'hash': '0x650107f44b73b8c3b743f79223f715f292d8f4f55c919618d7c86764b4c6556e', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5336.02145266, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7c3d2a93f2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:14.000Z'}}, {'blockNum': '0x9c0a71', 'uniqueId': '0x4ddb6eb22ed138b17bb3efe17013a28de69f3dc577c384156f9974db2dcb3619:log:68', 'hash': '0x4ddb6eb22ed138b17bb3efe17013a28de69f3dc577c384156f9974db2dcb3619', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb8431daa00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:50:57.000Z'}}, {'blockNum': '0x9c0a77', 'uniqueId': '0xf30e0d8fe97399ee56bdcdeb2da0e23d324d1cd7b306910a164f8ccb139c1ca9:log:36', 'hash': '0xf30e0d8fe97399ee56bdcdeb2da0e23d324d1cd7b306910a164f8ccb139c1ca9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x1490cccbc69bae1a545af45bb2a15571d620a0e7', 'value': 70.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a6a1f840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:51:58.000Z'}}, {'blockNum': '0x9c0a7e', 'uniqueId': '0xec5ade60ce6a900c8eb14b4ff80b68f4930eb1e82d6ad9a8c27e17078ef86607:log:60', 'hash': '0xec5ade60ce6a900c8eb14b4ff80b68f4930eb1e82d6ad9a8c27e17078ef86607', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 1973.358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2df22158c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:53:57.000Z'}}, {'blockNum': '0x9c0a7e', 'uniqueId': '0x43ac48debdb0cc486605b902b71dd542d016bc1feab30672573e77537448b410:log:99', 'hash': '0x43ac48debdb0cc486605b902b71dd542d016bc1feab30672573e77537448b410', 'from': '0xa1946e4585b3cc4e510d220ed11635b5d56c5ffa', 'to': '0xfe6bb8e57c0b86c6f8ee728bcd5116057e8991ea', 'value': 1068.30267762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18df948572', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:53:57.000Z'}}, {'blockNum': '0x9c0a7f', 'uniqueId': '0xd371431f9331669fa43a2064139263a5fc21522e402c3859364a8a323367e6cd:log:9', 'hash': '0xd371431f9331669fa43a2064139263a5fc21522e402c3859364a8a323367e6cd', 'from': '0xfe6bb8e57c0b86c6f8ee728bcd5116057e8991ea', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1068.30267762, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18df948572', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:54:38.000Z'}}, {'blockNum': '0x9c0a81', 'uniqueId': '0x1c023357b0a5710f4175712fd63377f98cfc3ae95addb6e0cb1e6034226542ad:log:74', 'hash': '0x1c023357b0a5710f4175712fd63377f98cfc3ae95addb6e0cb1e6034226542ad', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x8236a838771b65e8b8add286a5f3a656fdc69599', 'value': 1763.209335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x290d8bee7c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:04.000Z'}}, {'blockNum': '0x9c0a83', 'uniqueId': '0xbef170810b1179f1c2fa0f24c8311169e956c10b76e63efdf9edceda7992f5c0:log:80', 'hash': '0xbef170810b1179f1c2fa0f24c8311169e956c10b76e63efdf9edceda7992f5c0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x27a133f9c6edb42b2f5ae58f82b607dfcfdb92a6', 'value': 52.10524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0136924960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:55.000Z'}}, {'blockNum': '0x9c0a83', 'uniqueId': '0x433ae2e6c8a1779005f75320524a428cc308839db691f7af3a53a69def4286bd:log:85', 'hash': '0x433ae2e6c8a1779005f75320524a428cc308839db691f7af3a53a69def4286bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 41291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03c16189eb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:55:55.000Z'}}, {'blockNum': '0x9c0a88', 'uniqueId': '0x116a89394a7221955b95c74f132b3645f70d224924c977ca2fc9c0f21231ffd6:log:172', 'hash': '0x116a89394a7221955b95c74f132b3645f70d224924c977ca2fc9c0f21231ffd6', 'from': '0x15d223b307e180d83fb06f2e14f73d74adaf0064', 'to': '0x01702e0c202b2270de5116f0748f3e1a1827b100', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0773594000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:56:36.000Z'}}, {'blockNum': '0x9c0a8c', 'uniqueId': '0x4193fd76994bcd453916afea6cddfeb1262657edef3f7a0e97500aa33e6c2203:log:109', 'hash': '0x4193fd76994bcd453916afea6cddfeb1262657edef3f7a0e97500aa33e6c2203', 'from': '0xf95ad025b48580394375a7848ca6d4301ce2f2c5', 'to': '0xc1da812b30905eea37078ea0de6f647e1e347c59', 'value': 623.437101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e83f98594', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:56:50.000Z'}}, {'blockNum': '0x9c0a90', 'uniqueId': '0x9a50cd6b719e1554fd50fed14894cb6123051e8767533cc1ef466ad4993d728f:log:122', 'hash': '0x9a50cd6b719e1554fd50fed14894cb6123051e8767533cc1ef466ad4993d728f', 'from': '0xc1da812b30905eea37078ea0de6f647e1e347c59', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 623.437101, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e83f98594', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T16:58:08.000Z'}}, {'blockNum': '0x9c0aab', 'uniqueId': '0xb114bcc8778c98e613cec59e70e018e7ef60b6d5257db60ce2d0cde905cd445a:log:126', 'hash': '0xb114bcc8778c98e613cec59e70e018e7ef60b6d5257db60ce2d0cde905cd445a', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8588.55479118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc7f7c6974e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:04:10.000Z'}}, {'blockNum': '0x9c0ac1', 'uniqueId': '0xb7aed3aaa7ada096fb531fa96a07d8af1ab4cef8ca79071a7047283493a02b63:log:17', 'hash': '0xb7aed3aaa7ada096fb531fa96a07d8af1ab4cef8ca79071a7047283493a02b63', 'from': '0xbbdebd4c0e4f2a0ea8d231a98bbb44d09f0c62e4', 'to': '0x2749335c22337103d273490327bfa44c5f1bcf6c', 'value': 9155.5477889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd52b513f0a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:07:13.000Z'}}, {'blockNum': '0x9c0aca', 'uniqueId': '0x17136cde5c8cd02fea21116f5e1ce5452ed6d6a4369fbfef2c5a48418762cc9f:log:106', 'hash': '0x17136cde5c8cd02fea21116f5e1ce5452ed6d6a4369fbfef2c5a48418762cc9f', 'from': '0x2749335c22337103d273490327bfa44c5f1bcf6c', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 9155.5477889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xd52b513f0a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:09:04.000Z'}}, {'blockNum': '0x9c0ae7', 'uniqueId': '0x539b41ee6a9ba22093174a0fec44f08bb3d3fd060050e54a34d7b4dae81abd2f:log:83', 'hash': '0x539b41ee6a9ba22093174a0fec44f08bb3d3fd060050e54a34d7b4dae81abd2f', 'from': '0x95151e4615c5c0924b918c85ad8d8a94d6644ab3', 'to': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012a05f200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:14:38.000Z'}}, {'blockNum': '0x9c0af1', 'uniqueId': '0x432c76fe7680b03f8efae82a9f3259e25eaf542b7d2e8110ff15cd2b8c924e2d:log:29', 'hash': '0x432c76fe7680b03f8efae82a9f3259e25eaf542b7d2e8110ff15cd2b8c924e2d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:16:09.000Z'}}, {'blockNum': '0x9c0af8', 'uniqueId': '0x75e5b43e9dfb67ebc90017b4b51f5c169041e19fcdef05e312558aa161b889fb:log:53', 'hash': '0x75e5b43e9dfb67ebc90017b4b51f5c169041e19fcdef05e312558aa161b889fb', 'from': '0x9eca6eb9de167ef520c8764339e5ea1978e4adda', 'to': '0xbc505c9d6faa965809bfd73fdaa6b5b8705d7613', 'value': 186.4894027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0457903eee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:17:18.000Z'}}, {'blockNum': '0x9c0afd', 'uniqueId': '0xfa118d006a536ef75e0c720e7b5543821126e80ab9262d93c0d48e4708249723:log:7', 'hash': '0xfa118d006a536ef75e0c720e7b5543821126e80ab9262d93c0d48e4708249723', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 39712, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x039c9df72000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:18:05.000Z'}}, {'blockNum': '0x9c0afe', 'uniqueId': '0x42fd02e74be4bb6cc9288bfee9f7c000bcd9d736989ab8468efb247e3fb0622c:log:15', 'hash': '0x42fd02e74be4bb6cc9288bfee9f7c000bcd9d736989ab8468efb247e3fb0622c', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:18:20.000Z'}}, {'blockNum': '0x9c0b00', 'uniqueId': '0x84feb3c99fb260a733c29af63c47b061b132864cf1597858689c958396d4ba30:log:46', 'hash': '0x84feb3c99fb260a733c29af63c47b061b132864cf1597858689c958396d4ba30', 'from': '0x4ea1e3f926db1af6120a592136c4c38e1ab97acb', 'to': '0x1341e58c8c8ed0e8bb1fbb4eaf481156722cd973', 'value': 1271.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d9989da80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:19:25.000Z'}}, {'blockNum': '0x9c0b01', 'uniqueId': '0xda82c1ca4189afae05aed43b9a170785dfe4d38d3bc2aef795ed07f8b42ed4b3:log:40', 'hash': '0xda82c1ca4189afae05aed43b9a170785dfe4d38d3bc2aef795ed07f8b42ed4b3', 'from': '0xbc505c9d6faa965809bfd73fdaa6b5b8705d7613', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 186.4894027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0457903eee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:19:32.000Z'}}, {'blockNum': '0x9c0b23', 'uniqueId': '0xddbbed3e45cbbeb8f250290219760620cc676add20f8b0463b220753bb19c2f5:log:41', 'hash': '0xddbbed3e45cbbeb8f250290219760620cc676add20f8b0463b220753bb19c2f5', 'from': '0xa7f94985c44852c5cc9b399293e5948b62ca0566', 'to': '0x4f447d7f98a97619cd29469a5d4af1decdba4041', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0da475abf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:26:58.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x4e381d5e9d29a9e1fb8ed7e11a2772eae0f921cbbfa710db6accbff17a99e1f4:log:3', 'hash': '0x4e381d5e9d29a9e1fb8ed7e11a2772eae0f921cbbfa710db6accbff17a99e1f4', 'from': '0xdd6dd719f35b123e643fd31fb144a318ec253b56', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 908.829719, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x15290c18fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x78143afff00e22b50474259036fcb0fd23ccad3e4e690f10d9a48f32fcd706c1:log:5', 'hash': '0x78143afff00e22b50474259036fcb0fd23ccad3e4e690f10d9a48f32fcd706c1', 'from': '0xbeea7926ea2f6afc6e35cf0ff421eb9e161a8777', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3869.591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5a188f4860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x4952e807a45b8761aa535bec5025fb6ccddcc9caed7f58ca8d4660c40c7defe2:log:6', 'hash': '0x4952e807a45b8761aa535bec5025fb6ccddcc9caed7f58ca8d4660c40c7defe2', 'from': '0xae5432464b0dcbbb596ac664f49d6d0ea883b0be', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1790.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x29ad59c280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x78b50db19f1e53f631c0c2aea976bf96a21073f5f1f8b94a28b50a97bb0bf666:log:7', 'hash': '0x78b50db19f1e53f631c0c2aea976bf96a21073f5f1f8b94a28b50a97bb0bf666', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2844.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x423d487400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b27', 'uniqueId': '0x2c1a93731eee25f52292fa22b19193eb8d2d10418bd0f46136fffe2b4a96b3b0:log:8', 'hash': '0x2c1a93731eee25f52292fa22b19193eb8d2d10418bd0f46136fffe2b4a96b3b0', 'from': '0xbed67c2a5259dab75b9b5162996a1dedb580d916', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3649.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x54fb196b80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:07.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0xcca50995cc19f62536d4d2bcadfcff315b0a6f892e364735a05c14e0f6d6113a:log:38', 'hash': '0xcca50995cc19f62536d4d2bcadfcff315b0a6f892e364735a05c14e0f6d6113a', 'from': '0x1736a10f9d4f7a2cc8bb549b52fce95af0c7e96b', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 136.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x033076e480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x97a39af2a361e1335f116ce97d38cc2aba39c28ceb24d060697f3a5d4291c5d4:log:39', 'hash': '0x97a39af2a361e1335f116ce97d38cc2aba39c28ceb24d060697f3a5d4291c5d4', 'from': '0x1e580bafb4649412d0c4fe1611d58d31bb3135f2', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1976.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e07d38bc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x34b5611c7f465547de606f6b3308eb4e0f12fc39fc05eedd3f7a662eeaf374a8:log:41', 'hash': '0x34b5611c7f465547de606f6b3308eb4e0f12fc39fc05eedd3f7a662eeaf374a8', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x9a96a1a0bff6504f807113c6c59020145e04fc8e', 'value': 327.703357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07a143a3d4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x40def877db2d9ec99f9a7c0891ba273a7880b7ab00d72d63b48c695376dbe047:log:43', 'hash': '0x40def877db2d9ec99f9a7c0891ba273a7880b7ab00d72d63b48c695376dbe047', 'from': '0x74f7477556d7b099ceb5781d5a7a109947b72a15', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1990.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2e5b2a6280', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b28', 'uniqueId': '0x83a116c3f2999b140e3b0969e143ddce38a462c9456986a1ba804a7477b5efd7:log:44', 'hash': '0x83a116c3f2999b140e3b0969e143ddce38a462c9456986a1ba804a7477b5efd7', 'from': '0x83f5f66a111a446d29bc28c82b292b42cbe892ef', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 3.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17b8ff80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:19.000Z'}}, {'blockNum': '0x9c0b29', 'uniqueId': '0xcfd9b0754e8d6359a9a99cfe742847ee9bf5c117b53bec17a62ea55793702bc4:log:3', 'hash': '0xcfd9b0754e8d6359a9a99cfe742847ee9bf5c117b53bec17a62ea55793702bc4', 'from': '0xbb4b1591816121b6e0a03fe9def951a0833f7892', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1210.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c3200d680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:31.000Z'}}, {'blockNum': '0x9c0b29', 'uniqueId': '0xac2d35aed19be40a1eb8f0f67c7bd7e41a066a6d65aec0ad0eb38e04e0ffb14c:log:4', 'hash': '0xac2d35aed19be40a1eb8f0f67c7bd7e41a066a6d65aec0ad0eb38e04e0ffb14c', 'from': '0xaca27a35838da5421fe925eb621a7679d6d2bdde', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 889.652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x14b6bd3880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:31.000Z'}}, {'blockNum': '0x9c0b2b', 'uniqueId': '0xc89b1aee576917cf0c7654070cc8662ca2c0ae7a378ef98aa57c5c8a5aa8324b:log:55', 'hash': '0xc89b1aee576917cf0c7654070cc8662ca2c0ae7a378ef98aa57c5c8a5aa8324b', 'from': '0x1788f3be0b0f5da8f455375940cab89c4cc803e3', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 718.258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10b926bb40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:28:38.000Z'}}, {'blockNum': '0x9c0b3b', 'uniqueId': '0xc336dc2858d47f9e934f71dfb87b41dc89d005094b470548a38d87d7cf9426e9:log:119', 'hash': '0xc336dc2858d47f9e934f71dfb87b41dc89d005094b470548a38d87d7cf9426e9', 'from': '0x4f447d7f98a97619cd29469a5d4af1decdba4041', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0da475abf000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:31:15.000Z'}}, {'blockNum': '0x9c0b72', 'uniqueId': '0x5a0c11800b1f5e8d5355b9bfbf32c7e22e88271cae77455fa58be1b90ab4e2e1:log:65', 'hash': '0x5a0c11800b1f5e8d5355b9bfbf32c7e22e88271cae77455fa58be1b90ab4e2e1', 'from': '0x6a065f496a93cad6cc08e58c1fbeb39af467a72e', 'to': '0x54d367de1ed2e44afc3c7ba7a270306ba1d35558', 'value': 59.058, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0160035b40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:41:47.000Z'}}, {'blockNum': '0x9c0b79', 'uniqueId': '0xccf8c9e6f3ac1f069656e88ae7503102fc465deaa9bdacddf97fec2c7e6c4f91:log:15', 'hash': '0xccf8c9e6f3ac1f069656e88ae7503102fc465deaa9bdacddf97fec2c7e6c4f91', 'from': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 104.25775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026d6cb398', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:42:54.000Z'}}, {'blockNum': '0x9c0b83', 'uniqueId': '0x22dd9cee32aaf94b02f19524fe7d0f9577a4df6beb40510d8ca701a95d222ca1:log:9', 'hash': '0x22dd9cee32aaf94b02f19524fe7d0f9577a4df6beb40510d8ca701a95d222ca1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1067.25282263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18d95291d7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:44:13.000Z'}}, {'blockNum': '0x9c0b8c', 'uniqueId': '0xb2e21209ddf26b5fdf5d6dc19279695be1d51e51b50ecf643b31cd03aed0e2fe:log:36', 'hash': '0xb2e21209ddf26b5fdf5d6dc19279695be1d51e51b50ecf643b31cd03aed0e2fe', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xa1946e4585b3cc4e510d220ed11635b5d56c5ffa', 'value': 1067.25282263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18d95291d7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:45:51.000Z'}}, {'blockNum': '0x9c0ba2', 'uniqueId': '0x64afd949486b50af2102df0f71461d724a58d05d9a1effa43c89e42e23c7c884:log:14', 'hash': '0x64afd949486b50af2102df0f71461d724a58d05d9a1effa43c89e42e23c7c884', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1255.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d3e396380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:50:09.000Z'}}, {'blockNum': '0x9c0ba8', 'uniqueId': '0x0c984984a10e697506fc856da6c4ad97b729aa0826b29b3f74100a27142b6f9c:log:27', 'hash': '0x0c984984a10e697506fc856da6c4ad97b729aa0826b29b3f74100a27142b6f9c', 'from': '0xeaad46dd85845fff460ee002ae7a2b4fa8e16b3c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7304.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaa14e51dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:51:10.000Z'}}, {'blockNum': '0x9c0baa', 'uniqueId': '0x83717a47c46bd16b55d2f6d70034feb5a8f2dc022ab4123b20c9797423f8ecff:log:15', 'hash': '0x83717a47c46bd16b55d2f6d70034feb5a8f2dc022ab4123b20c9797423f8ecff', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x8791e0edc2322725e711408567eb513dc6db949d', 'value': 2461.56386422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3950106076', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:51:21.000Z'}}, {'blockNum': '0x9c0bbb', 'uniqueId': '0xc5e719f0d80950a163a3c4308a22092d02ba0bebc350defa621027b8597ec169:log:111', 'hash': '0xc5e719f0d80950a163a3c4308a22092d02ba0bebc350defa621027b8597ec169', 'from': '0xd78828beb41c129a1d6888df45c48d14ce7d98b8', 'to': '0xc5a7e0a4789e955687e5e2972dcf1620ab788527', 'value': 977.779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16c40459e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T17:55:01.000Z'}}, {'blockNum': '0x9c0bda', 'uniqueId': '0x44cedabf7c4883d7b368a277fc5b48ba82da092502159056ea1132a735e80c10:log:5', 'hash': '0x44cedabf7c4883d7b368a277fc5b48ba82da092502159056ea1132a735e80c10', 'from': '0x1e6dab54518c0f91d74a509fa8d4f28ce912c765', 'to': '0x25cd9117c27307c238271c46e4f9d35087a7622a', 'value': 312.25041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0745285068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:00:10.000Z'}}, {'blockNum': '0x9c0bde', 'uniqueId': '0x95022ba4b61b65912ab641af98adef1137c125eb25e6a265a486af16a32ab95a:log:8', 'hash': '0x95022ba4b61b65912ab641af98adef1137c125eb25e6a265a486af16a32ab95a', 'from': '0x25cd9117c27307c238271c46e4f9d35087a7622a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 312.25041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0745285068', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:01:19.000Z'}}, {'blockNum': '0x9c0bec', 'uniqueId': '0xb4e683ac4eaff6113a1f7d6106e1dd612b0990b71816ea2a6bf47aef49e7c819:log:11', 'hash': '0xb4e683ac4eaff6113a1f7d6106e1dd612b0990b71816ea2a6bf47aef49e7c819', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ce99085dedd17d8f571c413c3ebfe4049c6f7a9', 'value': 196.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x049617a080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:05:18.000Z'}}, {'blockNum': '0x9c0c03', 'uniqueId': '0x3a53a14d2061aa07bc033bc5d170f927f2978e2d3143ad360e20a209debc3906:log:137', 'hash': '0x3a53a14d2061aa07bc033bc5d170f927f2978e2d3143ad360e20a209debc3906', 'from': '0xf122f0d45acf90e9d494c04eeb0719bab65b7be8', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7925.457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb88767a8a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:09:27.000Z'}}, {'blockNum': '0x9c0c05', 'uniqueId': '0x5543bd4e81eed4670d9d0627bfc126521753c6576c0ba88d787cbb9f2ecfe6f6:log:68', 'hash': '0x5543bd4e81eed4670d9d0627bfc126521753c6576c0ba88d787cbb9f2ecfe6f6', 'from': '0x86debe91fefbda4001fcdc8b3da72b0e4cdab0d4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 21885.03033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01fd8cf224a8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:09:43.000Z'}}, {'blockNum': '0x9c0c1d', 'uniqueId': '0x12668461df4943923e6fe913dfc01e2d6bfcb85f4175f76fafcea530b494a0d3:log:10', 'hash': '0x12668461df4943923e6fe913dfc01e2d6bfcb85f4175f76fafcea530b494a0d3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc51231d1307ffeb4cb099aba99fdec58f64f4729', 'value': 51.234129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01316113a4', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:15:46.000Z'}}, {'blockNum': '0x9c0c53', 'uniqueId': '0x79921ee457f3b184d1253797bd3b16bb5c83b0dc1ba230a753a91f0d07873d10:log:0', 'hash': '0x79921ee457f3b184d1253797bd3b16bb5c83b0dc1ba230a753a91f0d07873d10', 'from': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1255.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d3e396380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:28:31.000Z'}}, {'blockNum': '0x9c0c5b', 'uniqueId': '0xc3b1e5eb3a5aab7d711e338b8e727402f80a498850f9fd0a45a547d5948a33d8:log:2', 'hash': '0xc3b1e5eb3a5aab7d711e338b8e727402f80a498850f9fd0a45a547d5948a33d8', 'from': '0xbdaf17832a7141b591d9407490328fa5df364cb5', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 242.734, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05a6ceb0c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:31.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0x7dfe9d3db70a70b026399f87cc24f14ba38644e87de89d5f421543748da290bf:log:8', 'hash': '0x7dfe9d3db70a70b026399f87cc24f14ba38644e87de89d5f421543748da290bf', 'from': '0x639928b207057fbd1eba5fa915d3d9951a48a62d', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 451.77695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a84cced39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0xe0e4e55d0767fdb9030654df2c46bce3abedbda1f230a2fd5f22c6afa1c3f437:log:13', 'hash': '0xe0e4e55d0767fdb9030654df2c46bce3abedbda1f230a2fd5f22c6afa1c3f437', 'from': '0x93c476aa875bfb62b5e776ce0ae48b47926e36c2', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 75.901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c467bc20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0c5c', 'uniqueId': '0xd739db4794d57aec19a5761db7e2abf364732428e44b36c4c8ac4e0d4066c081:log:17', 'hash': '0xd739db4794d57aec19a5761db7e2abf364732428e44b36c4c8ac4e0d4066c081', 'from': '0x1490cccbc69bae1a545af45bb2a15571d620a0e7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 70.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a6a1f840', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:29:35.000Z'}}, {'blockNum': '0x9c0ca4', 'uniqueId': '0xf353e01631b783f1bd8b11b9e9d6b3d1ee52f1d28148d98d7b98e0fa989925a9:log:13', 'hash': '0xf353e01631b783f1bd8b11b9e9d6b3d1ee52f1d28148d98d7b98e0fa989925a9', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2fb9e343a8a2c4c4bcd4670ce61a14afe762c661', 'value': 141.94648981, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034e112795', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:46:24.000Z'}}, {'blockNum': '0x9c0cbc', 'uniqueId': '0x601dc575c62234ee45ced86244497f317aa4a4a3e6491df1f35e8c78753399cf:log:2', 'hash': '0x601dc575c62234ee45ced86244497f317aa4a4a3e6491df1f35e8c78753399cf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 17100.76754495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018e28847a3f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:51:15.000Z'}}, {'blockNum': '0x9c0cc1', 'uniqueId': '0xbd46f210af82eeed877a2b9f5c4a719cf128bf053fd35526961eaa3dba7ad4f5:log:5', 'hash': '0xbd46f210af82eeed877a2b9f5c4a719cf128bf053fd35526961eaa3dba7ad4f5', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 17100.76754495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018e28847a3f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:51:56.000Z'}}, {'blockNum': '0x9c0ce1', 'uniqueId': '0xff1b1cfde1ec6c0ae4665ab2a66a287f104987d4d21eb77d8cd02c490d58caca:log:7', 'hash': '0xff1b1cfde1ec6c0ae4665ab2a66a287f104987d4d21eb77d8cd02c490d58caca', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xbdbb09a328e40b8d741925f756b1765d2d0f1581', 'value': 448.13695545, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a6f1aba39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T18:58:19.000Z'}}, {'blockNum': '0x9c0ce9', 'uniqueId': '0xe3cb9cb5a9b7034173069586903fc79a0de12af05b77e00814eee0ffd7a198a0:log:28', 'hash': '0xe3cb9cb5a9b7034173069586903fc79a0de12af05b77e00814eee0ffd7a198a0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6efa4c6cb722a7f82a3671027b0fb7ccd69e41f2', 'value': 59.854003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164c1f5ec', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:00:14.000Z'}}, {'blockNum': '0x9c0ce9', 'uniqueId': '0x5900dab5975501eed53a5829a74c0dd5d237eba1913951f3fb4e68525c4c8d9b:log:34', 'hash': '0x5900dab5975501eed53a5829a74c0dd5d237eba1913951f3fb4e68525c4c8d9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6efa4c6cb722a7f82a3671027b0fb7ccd69e41f2', 'value': 70.656459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01a525334c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:00:14.000Z'}}, {'blockNum': '0x9c0d40', 'uniqueId': '0xe47ba092229f829ec87eb9e559db7f5842a705a543602e6bab23ed9bf8a2ad02:log:2', 'hash': '0xe47ba092229f829ec87eb9e559db7f5842a705a543602e6bab23ed9bf8a2ad02', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2cd5e1c37351a664d9b367ba0fbe415882246373', 'value': 104.64917, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x026fc1f608', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:19:07.000Z'}}, {'blockNum': '0x9c0d70', 'uniqueId': '0x5fc40516bb977bf95182ed6c2f3b0435894bc305a6c4272a84a9e1033971acc2:log:88', 'hash': '0x5fc40516bb977bf95182ed6c2f3b0435894bc305a6c4272a84a9e1033971acc2', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 13291, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x013574888b00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:29:54.000Z'}}, {'blockNum': '0x9c0d71', 'uniqueId': '0xd8970a835f378117fc9125143ee35961621de71cfe23f9ef3d422f24b294ba87:log:100', 'hash': '0xd8970a835f378117fc9125143ee35961621de71cfe23f9ef3d422f24b294ba87', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3338.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4db80c5de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:30:19.000Z'}}, {'blockNum': '0x9c0d82', 'uniqueId': '0xed1aa34a0d85b5b8229fab776d328a89c9bd992cf192852863e6821898bd2aea:log:13', 'hash': '0xed1aa34a0d85b5b8229fab776d328a89c9bd992cf192852863e6821898bd2aea', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6b40e323b5522fe5261cc12b4022af535d9d63c8', 'value': 383.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08f0b2fb80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:35:36.000Z'}}, {'blockNum': '0x9c0d96', 'uniqueId': '0x9cedf710b3e1cd834902b2f80ef9a1821424aa6dbe090ee45cd4e6a71da834a3:log:105', 'hash': '0x9cedf710b3e1cd834902b2f80ef9a1821424aa6dbe090ee45cd4e6a71da834a3', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 11764.65940841, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0111ead5a169', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:40:22.000Z'}}, {'blockNum': '0x9c0da1', 'uniqueId': '0x66390fc44cb823f793ae6508956c29f512a9ade0a8df83a5c09d7a402274fa1f:log:32', 'hash': '0x66390fc44cb823f793ae6508956c29f512a9ade0a8df83a5c09d7a402274fa1f', 'from': '0x000614ff2c0fd4216379a139d9363dcc24d905b7', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 174.896328, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0412769e20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:41:41.000Z'}}, {'blockNum': '0x9c0da2', 'uniqueId': '0xa5af928ceda38eda605d2aed66e9329057c0caca6755740cffcc3ccd7d8d76df:log:0', 'hash': '0xa5af928ceda38eda605d2aed66e9329057c0caca6755740cffcc3ccd7d8d76df', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2fac7bb714aae67c4fcd926af0687541ca5944b4', 'value': 76.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ca5c1680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:42:07.000Z'}}, {'blockNum': '0x9c0daf', 'uniqueId': '0xde58edfafb1b1c2487ad58a5bedbb6a556cecc99254799aea2ec174df78031c5:log:0', 'hash': '0xde58edfafb1b1c2487ad58a5bedbb6a556cecc99254799aea2ec174df78031c5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 36.94999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdc3d39bf', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:44:17.000Z'}}, {'blockNum': '0x9c0db4', 'uniqueId': '0x2023a83bf105850d0438b19ac6c481dd1a0012d57aaead1b607f787cc07a6887:log:139', 'hash': '0x2023a83bf105850d0438b19ac6c481dd1a0012d57aaead1b607f787cc07a6887', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x90319fbe0635475600665f93992a9480f0a1ebe0', 'value': 36.94999998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdc3d39be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:45:52.000Z'}}, {'blockNum': '0x9c0dc1', 'uniqueId': '0xed5b2d0c15781e2890cc9e7169f8b52a5b3256b211d388bfcc4e2d63f62ed197:log:2', 'hash': '0xed5b2d0c15781e2890cc9e7169f8b52a5b3256b211d388bfcc4e2d63f62ed197', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 471.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0af967c380', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:50:38.000Z'}}, {'blockNum': '0x9c0dd5', 'uniqueId': '0x7d6b652dea8e3b9ceff12f2c6334cc358c95c66bd0561ba5e5cbfeddbb1edb0a:log:7', 'hash': '0x7d6b652dea8e3b9ceff12f2c6334cc358c95c66bd0561ba5e5cbfeddbb1edb0a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ca3f0a00a8e9274d398896d42e37c050ec45235', 'value': 821.155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x131e7717e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T19:54:10.000Z'}}, {'blockNum': '0x9c0df2', 'uniqueId': '0x884c303dfc9f889297da018ed133454101a3078c45fc6233e00a12bb67b72242:log:33', 'hash': '0x884c303dfc9f889297da018ed133454101a3078c45fc6233e00a12bb67b72242', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0xc9abeb1c2498b320a4b3a50ca430af57cef391fc', 'value': 20.68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7b432d00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:01:21.000Z'}}, {'blockNum': '0x9c0e18', 'uniqueId': '0x5cc52011e1958ae75cc671d2ee03c54756e6ca909df2cc20ed2f420abfe91da8:log:1', 'hash': '0x5cc52011e1958ae75cc671d2ee03c54756e6ca909df2cc20ed2f420abfe91da8', 'from': '0x72e5263ff33d2494692d7f94a758aa9f82062f73', 'to': '0x447f2963a0556c21b6b346facdce605c54809371', 'value': 4800, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fc23ac000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:11:20.000Z'}}, {'blockNum': '0x9c0e4d', 'uniqueId': '0x802b711f1e18cfe690626f1f6a7c6d40a38968e3af920e7450d192d00e440984:log:38', 'hash': '0x802b711f1e18cfe690626f1f6a7c6d40a38968e3af920e7450d192d00e440984', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 298.05367495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f089d0c7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:25:11.000Z'}}, {'blockNum': '0x9c0e57', 'uniqueId': '0x84184a960edddd154bc25529b7d4c550836b4c5106f9932786f07b67cb40696e:log:196', 'hash': '0x84184a960edddd154bc25529b7d4c550836b4c5106f9932786f07b67cb40696e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x502dafac138ffd710747c4827d6b3d9659da032d', 'value': 298.05367495, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f089d0c7', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:29:19.000Z'}}, {'blockNum': '0x9c0e5e', 'uniqueId': '0xeaf17fecf13a9426a9522075b123ba606299c220c6ee595802b003c8826311bd:log:107', 'hash': '0xeaf17fecf13a9426a9522075b123ba606299c220c6ee595802b003c8826311bd', 'from': '0x447f2963a0556c21b6b346facdce605c54809371', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7dba821800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:30:20.000Z'}}, {'blockNum': '0x9c0e7b', 'uniqueId': '0x450221672a50801062446eea9e49a9dda6aad09ac1ca108380bc14e313f1efa0:log:123', 'hash': '0x450221672a50801062446eea9e49a9dda6aad09ac1ca108380bc14e313f1efa0', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3046.079208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x46ec0c02a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:37:49.000Z'}}, {'blockNum': '0x9c0e91', 'uniqueId': '0x9153c2f72baedb2fa399e789603a24ec2eaa4348b16419b1f309bc797157158d:log:12', 'hash': '0x9153c2f72baedb2fa399e789603a24ec2eaa4348b16419b1f309bc797157158d', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xf704927b3a783e893e3062a62767a896c5540f45', 'value': 17.60557181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x68eff87d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:44:58.000Z'}}, {'blockNum': '0x9c0ea7', 'uniqueId': '0xdb6e65c3df26ab70c02fd5a3e52be2a4f826bd96812deed68f69201d7983d273:log:25', 'hash': '0xdb6e65c3df26ab70c02fd5a3e52be2a4f826bd96812deed68f69201d7983d273', 'from': '0xf704927b3a783e893e3062a62767a896c5540f45', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 17.60557181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x68eff87d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:51:00.000Z'}}, {'blockNum': '0x9c0eb8', 'uniqueId': '0x255c644cb7873fe38d91b02780f9ad5cbaad8395eb25ffd6b23e1ad4a3ee5f12:log:17', 'hash': '0x255c644cb7873fe38d91b02780f9ad5cbaad8395eb25ffd6b23e1ad4a3ee5f12', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 360.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0865fb33df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:55:32.000Z'}}, {'blockNum': '0x9c0ebd', 'uniqueId': '0xd0e6348ed74addd58f9f3cd69105229bea4e0777143b6a19041fa0c7a7e54876:log:18', 'hash': '0xd0e6348ed74addd58f9f3cd69105229bea4e0777143b6a19041fa0c7a7e54876', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x15d223b307e180d83fb06f2e14f73d74adaf0064', 'value': 329.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07ae6ab5c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:56:35.000Z'}}, {'blockNum': '0x9c0ec3', 'uniqueId': '0x317fb0d25ea5dd62492f748fb911dc97ad773eb31030f05384a63c0c77a676aa:log:93', 'hash': '0x317fb0d25ea5dd62492f748fb911dc97ad773eb31030f05384a63c0c77a676aa', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x2770e756f02671f93f0aef728772911342c259c6', 'value': 360.70699999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0865fb33df', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:57:41.000Z'}}, {'blockNum': '0x9c0ec8', 'uniqueId': '0x14a5fd7709c75180cb63f637acd9be6b0449b575a160ded9ab8b1bb4a7d26559:log:24', 'hash': '0x14a5fd7709c75180cb63f637acd9be6b0449b575a160ded9ab8b1bb4a7d26559', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x2fb9e343a8a2c4c4bcd4670ce61a14afe762c661', 'value': 63.65531597, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x017b6a4dcd', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T20:58:53.000Z'}}, {'blockNum': '0x9c0edb', 'uniqueId': '0x4d19be42e9b9e0af3039722d2f461e3c92ead1a6c6e322a1bc2307e7933b86d4:log:0', 'hash': '0x4d19be42e9b9e0af3039722d2f461e3c92ead1a6c6e322a1bc2307e7933b86d4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 8027.219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbae5f425e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:03:16.000Z'}}, {'blockNum': '0x9c0f0c', 'uniqueId': '0xc86a45a95a2f9003e31e9b09c8aa10128211e1e59d75e0dd58200fc668e89635:log:0', 'hash': '0xc86a45a95a2f9003e31e9b09c8aa10128211e1e59d75e0dd58200fc668e89635', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 290.50089863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c3853187', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:14:22.000Z'}}, {'blockNum': '0x9c0f0c', 'uniqueId': '0x5dd035e665c8636ecad3203e9e5102d006f1d1eaafd6e9777b4ba401aab393a8:log:3', 'hash': '0x5dd035e665c8636ecad3203e9e5102d006f1d1eaafd6e9777b4ba401aab393a8', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2af50e9500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:14:22.000Z'}}, {'blockNum': '0x9c0f13', 'uniqueId': '0xc4ae6ec6c5e3ad872c347b11b2b6ffa811042feab3981bb5c204fc3214130515:log:108', 'hash': '0xc4ae6ec6c5e3ad872c347b11b2b6ffa811042feab3981bb5c204fc3214130515', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1259fc9a8d8fcf968bc5aaad27442163aadf3d60', 'value': 290.50089863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06c3853187', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:15:53.000Z'}}, {'blockNum': '0x9c0f3d', 'uniqueId': '0x2897490ff82dbce21b1b069053338c34fa7ccc140ebff2885180da1d6260f6dd:log:101', 'hash': '0x2897490ff82dbce21b1b069053338c34fa7ccc140ebff2885180da1d6260f6dd', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb23ddb7735557aacff5acf8415f00068349ce3eb', 'value': 100.47548019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0256e16a73', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:24:15.000Z'}}, {'blockNum': '0x9c0f55', 'uniqueId': '0x0a31081dffd58b27e91d84523476575035067c62f1eca48d39445b1830128522:log:106', 'hash': '0x0a31081dffd58b27e91d84523476575035067c62f1eca48d39445b1830128522', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 8027.219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbae5f425e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:30:28.000Z'}}, {'blockNum': '0x9c0f5f', 'uniqueId': '0x3ea6efdadae51bbca3cfe77c864352c0ecf1393577a9898db0e24a80e3878dbc:log:30', 'hash': '0x3ea6efdadae51bbca3cfe77c864352c0ecf1393577a9898db0e24a80e3878dbc', 'from': '0x0617169670775a5b2e4db26e24852a3d714bd165', 'to': '0x74454231249dba1a7885cdfb0512e81c21f18503', 'value': 327.22372899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x079e67c923', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:32:29.000Z'}}, {'blockNum': '0x9c0f64', 'uniqueId': '0x1caca6502aa377fa0ae684cdd1bc737011d5c87ef7540e38e97d9e6282338cdd:log:5', 'hash': '0x1caca6502aa377fa0ae684cdd1bc737011d5c87ef7540e38e97d9e6282338cdd', 'from': '0xbd56cf2fbdc8b89f43b011e441d53204ec9aecee', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 134.50797292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0321bae0ec', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:33:26.000Z'}}, {'blockNum': '0x9c0f6a', 'uniqueId': '0xd1d1f26f5640aeea8396c7a340bf3715277a6eed3acd397e0cfdc42467360c08:log:6', 'hash': '0xd1d1f26f5640aeea8396c7a340bf3715277a6eed3acd397e0cfdc42467360c08', 'from': '0x74454231249dba1a7885cdfb0512e81c21f18503', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 327.22372899, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x079e67c923', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:13.000Z'}}, {'blockNum': '0x9c0f6e', 'uniqueId': '0x70380336c77fbe20630dfc9e34232cce3d8aff76041e3547131fb0ea2863aed9:log:57', 'hash': '0x70380336c77fbe20630dfc9e34232cce3d8aff76041e3547131fb0ea2863aed9', 'from': '0x1dd0755ad6d572b48c592e84e3a56b62263ee73f', 'to': '0xbe55164cfb1acab25c59568f06e7af2b81b3528e', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:44.000Z'}}, {'blockNum': '0x9c0f6e', 'uniqueId': '0x04d860f9364a8c3885ba0d252a40da9f093948ac3cdc11dc79707368050cdd6f:log:58', 'hash': '0x04d860f9364a8c3885ba0d252a40da9f093948ac3cdc11dc79707368050cdd6f', 'from': '0xc016ab3a4367ce6f2cecac15f6404d6f1531b969', 'to': '0xe673362cfceb7ada97ca69571ef75de274a6e33f', 'value': 240.48533886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x059967817e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:34:44.000Z'}}, {'blockNum': '0x9c0f7b', 'uniqueId': '0x159966c0713bef796ffcc90f396e12031bfb1e8f0f08c03da94bddb5327e2bde:log:8', 'hash': '0x159966c0713bef796ffcc90f396e12031bfb1e8f0f08c03da94bddb5327e2bde', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x27738019da260c847083eae79a0fdf2a42551974', 'value': 120.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d118d480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T21:38:44.000Z'}}, {'blockNum': '0x9c0fd7', 'uniqueId': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064:log:0', 'hash': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064', 'from': '0x16e3ebd91b3a6708cb34b28862abec99956f9a3e', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 15.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5e887080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:23.000Z'}}, {'blockNum': '0x9c0fd7', 'uniqueId': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064:log:1', 'hash': '0x9cae9ef3a02776ceae5aec57cdb950814ec3e084ed0d8fbab95d6eef0401e064', 'from': '0x16e3ebd91b3a6708cb34b28862abec99956f9a3e', 'to': '0xdccac55b294c75b72d6117ade54c3563442478a4', 'value': 2950, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x44af5ec600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:23.000Z'}}, {'blockNum': '0x9c0fdb', 'uniqueId': '0x12f1d95b74fb2253d257214110028563bae9d1f39732f82e342d179c33126429:log:0', 'hash': '0x12f1d95b74fb2253d257214110028563bae9d1f39732f82e342d179c33126429', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 11.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x432ca7c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:45.000Z'}}, {'blockNum': '0x9c0fdc', 'uniqueId': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e:log:0', 'hash': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 11.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x432ca7c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:54.000Z'}}, {'blockNum': '0x9c0fdc', 'uniqueId': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e:log:1', 'hash': '0x94486fb93a0d3cbf6f3e5b85ad5a174c2a0673ad0801c503cc1354939b7ddd3e', 'from': '0xd385b2562549c3de7ae031436bd16df22d617640', 'to': '0x39db9c3c2b8d7d5c7f8b3470b936af26a464e7a3', 'value': 9900.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe6823528c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:01:54.000Z'}}, {'blockNum': '0x9c0fde', 'uniqueId': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227:log:0', 'hash': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227', 'from': '0x1c76f494fde175655e55e9b50f2d7a159219dc9b', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 14.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x56b989c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:02:28.000Z'}}, {'blockNum': '0x9c0fde', 'uniqueId': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227:log:1', 'hash': '0x598f0741141f7267b233edec312933e72b68c0765bc1d080565de591d2edc227', 'from': '0x1c76f494fde175655e55e9b50f2d7a159219dc9b', 'to': '0x36cfb5a6be6b130cfceb934d3ca72c1d72c3a7d8', 'value': 171335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f95342e6700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:02:28.000Z'}}, {'blockNum': '0x9c0fe0', 'uniqueId': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd:log:0', 'hash': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 16.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x61ee30c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:09.000Z'}}, {'blockNum': '0x9c0fe0', 'uniqueId': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd:log:1', 'hash': '0xe263037046a64985133f68e3799cb0e4b0b6453b17c0b9cfad2f7b64137fa8dd', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0xb7e27ef96256502677eb2e15f65848a8a50d3a49', 'value': 12907.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x012c86c13dc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:09.000Z'}}, {'blockNum': '0x9c0fe3', 'uniqueId': '0xba98c6d6549f2f3987247d6a029b782b93579f52ae0485e37538840e21e766ca:log:0', 'hash': '0xba98c6d6549f2f3987247d6a029b782b93579f52ae0485e37538840e21e766ca', 'from': '0xfa17a2003132c9dfc95c42ebcb9f5b8fb24db5f8', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 12.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x497e1640', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:55.000Z'}}, {'blockNum': '0x9c0fe3', 'uniqueId': '0x52dc227ffb7bd1d969c968f86baabbc539d6eb2a4bf901f7b00a1d352d98da48:log:5', 'hash': '0x52dc227ffb7bd1d969c968f86baabbc539d6eb2a4bf901f7b00a1d352d98da48', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xbc9990df22f469960b52dadfcfdac1ce13778d52', 'value': 67.63671368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0193256f48', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:03:55.000Z'}}, {'blockNum': '0x9c0fe5', 'uniqueId': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934:log:0', 'hash': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934', 'from': '0x171967273368510f92632cb5d8b081fde729f1d9', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 18.43, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6dd9f2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:04:27.000Z'}}, {'blockNum': '0x9c0fe5', 'uniqueId': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934:log:1', 'hash': '0x35708eeb85be9efa9fade9924f6f24d358d4b9c2c492d56d4ca3e09975fc0934', 'from': '0x171967273368510f92632cb5d8b081fde729f1d9', 'to': '0x5fe1eddb81a6e2ad3c10391c74c4f3e55c30f6f9', 'value': 5500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x800e8dfc00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:04:27.000Z'}}, {'blockNum': '0x9c0fe8', 'uniqueId': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660:log:0', 'hash': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660', 'from': '0x846f88d4f838fc7192d2d35d6fe55338312618da', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 31.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbb1956c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:05:49.000Z'}}, {'blockNum': '0x9c0fe8', 'uniqueId': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660:log:1', 'hash': '0xce5d9d00ce67618322f893f2e5f37b0bd657c097759cc71392aa69bead2fe660', 'from': '0x846f88d4f838fc7192d2d35d6fe55338312618da', 'to': '0xb0ad48e5a9a926fec232dc7c22ed72c725acb1f8', 'value': 1224, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1c7f9bc800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:05:49.000Z'}}, {'blockNum': '0x9c0fe9', 'uniqueId': '0xe4a4abf953a812e973a6e10fc40c00ea06370b1e82105c4b552e4848b80b6853:log:0', 'hash': '0xe4a4abf953a812e973a6e10fc40c00ea06370b1e82105c4b552e4848b80b6853', 'from': '0x99abb4049d1f0e8e232d0e461f36cae61a28600c', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 0.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02faf080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:05.000Z'}}, {'blockNum': '0x9c0fec', 'uniqueId': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6:log:0', 'hash': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6', 'from': '0x697c9ea5b3a5179df20f8230cf79ccd02d044089', 'to': '0x5b80f203d836003f0bff777fbb9e6b456e796905', 'value': 31.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xbb1956c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:22.000Z'}}, {'blockNum': '0x9c0fec', 'uniqueId': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6:log:1', 'hash': '0x18015d30c6923e4b2f7fad97ce68dfb05de8aa2cd05e2e005e25350ca55731f6', 'from': '0x697c9ea5b3a5179df20f8230cf79ccd02d044089', 'to': '0x0000000000000000000000000000000000000000', 'value': 239, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05908d0f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:22.000Z'}}, {'blockNum': '0x9c0fed', 'uniqueId': '0x34579330997886cc31d7b1e4cecb6d5a56f28dd8f1b3d3fd7803145ed1d800f9:log:6', 'hash': '0x34579330997886cc31d7b1e4cecb6d5a56f28dd8f1b3d3fd7803145ed1d800f9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xb4cf686ea7a0e1cbc83c6d922106c4df5249ce43', 'value': 61.91881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0171109b28', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:06:25.000Z'}}, {'blockNum': '0x9c1004', 'uniqueId': '0xf4522ec639cbbf4574d8f6fd6cd4324bdd3045634728471e08d4a974beaa5c24:log:40', 'hash': '0xf4522ec639cbbf4574d8f6fd6cd4324bdd3045634728471e08d4a974beaa5c24', 'from': '0xa6373b90c7f362ede18462748392d6c69668ee96', 'to': '0x7639d45c0ce0d655d3e7b66bc4c84cd9792fc9b2', 'value': 9940.40493477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe7716e35a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:12:10.000Z'}}, {'blockNum': '0x9c1007', 'uniqueId': '0x326790e3e7a79b33de29e64e9ca9fe41b218a6acc78e049f2a3b4b2df67a273f:log:0', 'hash': '0x326790e3e7a79b33de29e64e9ca9fe41b218a6acc78e049f2a3b4b2df67a273f', 'from': '0x7639d45c0ce0d655d3e7b66bc4c84cd9792fc9b2', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 9940.40493477, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe7716e35a5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:12:41.000Z'}}, {'blockNum': '0x9c1027', 'uniqueId': '0x21686e8ec20cf6ab68db5f8812f585947187c1451537587cf5915f8d33a6bdda:log:23', 'hash': '0x21686e8ec20cf6ab68db5f8812f585947187c1451537587cf5915f8d33a6bdda', 'from': '0x2578753e8e09a7f9fbb393938fd273ad81973da5', 'to': '0xc5cb147b5e119ae7503b0e9040daeb85ea360ae0', 'value': 170.33222108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f74257dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:19:28.000Z'}}, {'blockNum': '0x9c1029', 'uniqueId': '0xed5d14177e9a4fd870a2c9b971ead6c8aa3a3a97485ef65188af68de6bc90b79:log:0', 'hash': '0xed5d14177e9a4fd870a2c9b971ead6c8aa3a3a97485ef65188af68de6bc90b79', 'from': '0xc5cb147b5e119ae7503b0e9040daeb85ea360ae0', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 170.33222108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f74257dc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:19:47.000Z'}}, {'blockNum': '0x9c105c', 'uniqueId': '0x0362d84b345801fb0dee5a31376636b42be3c66ee502fe0f55a31249278536cc:log:72', 'hash': '0x0362d84b345801fb0dee5a31376636b42be3c66ee502fe0f55a31249278536cc', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10110.73715585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xeb68b08d81', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:30:18.000Z'}}, {'blockNum': '0x9c1097', 'uniqueId': '0x8523597fb409df40bf42986aea87085dd68dff043d373fcd8bcbe9fddafd9505:log:4', 'hash': '0x8523597fb409df40bf42986aea87085dd68dff043d373fcd8bcbe9fddafd9505', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xd7a7e33d0fa9d8b85db3be2aaa89b191d6f2f74c', 'value': 152.51896491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x038d1578ab', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:43:16.000Z'}}, {'blockNum': '0x9c109e', 'uniqueId': '0xffeaf59e3c03eb7ee42ac7ace7350ac00d53ede29139675f244f14bea70a1a79:log:3', 'hash': '0xffeaf59e3c03eb7ee42ac7ace7350ac00d53ede29139675f244f14bea70a1a79', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2391.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x37abfebe00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:44:02.000Z'}}, {'blockNum': '0x9c10a0', 'uniqueId': '0x62e5b41ccfbe91750eef3e16b90f49afd2dd6b63c46dc05ddb00cbc7b36c1b53:log:12', 'hash': '0x62e5b41ccfbe91750eef3e16b90f49afd2dd6b63c46dc05ddb00cbc7b36c1b53', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2391.088, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x37abfebe00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:44:13.000Z'}}, {'blockNum': '0x9c10a6', 'uniqueId': '0x436adc997eb834877b3099210bf61fa394a591bacbf38d99597145a1e296cae7:log:89', 'hash': '0x436adc997eb834877b3099210bf61fa394a591bacbf38d99597145a1e296cae7', 'from': '0xd7a7e33d0fa9d8b85db3be2aaa89b191d6f2f74c', 'to': '0xdf0ac221172ca54350ecdde54f0d755c5ca0c3d9', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T22:46:11.000Z'}}, {'blockNum': '0x9c10d8', 'uniqueId': '0x6214177573b956c5474be1fed397a2d7268b8ad993f3de7b0f2ad016ffc7e444:log:22', 'hash': '0x6214177573b956c5474be1fed397a2d7268b8ad993f3de7b0f2ad016ffc7e444', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 3326.273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7221cea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:00:39.000Z'}}, {'blockNum': '0x9c10da', 'uniqueId': '0x329254e70bf3c96a3cb5eed04d05d125412ef54935126c16d2c4af5e176b7870:log:15', 'hash': '0x329254e70bf3c96a3cb5eed04d05d125412ef54935126c16d2c4af5e176b7870', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2006b6eddef65c0868901da4d71895bc34cb26c7', 'value': 121.37093, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02d36d5788', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:02:21.000Z'}}, {'blockNum': '0x9c10da', 'uniqueId': '0xab2cc6258bad527a0d3f58fe0aa04d861cb23ffe296a78b62fdd162223c4127e:log:22', 'hash': '0xab2cc6258bad527a0d3f58fe0aa04d861cb23ffe296a78b62fdd162223c4127e', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3326.273, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4d7221cea0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:02:21.000Z'}}, {'blockNum': '0x9c10e0', 'uniqueId': '0xacd53eb2662ae5ebf0050eaa4fdea9b65c74684c6e16f08d9847dd0175ec9b5b:log:22', 'hash': '0xacd53eb2662ae5ebf0050eaa4fdea9b65c74684c6e16f08d9847dd0175ec9b5b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 476.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b19853300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:04:36.000Z'}}, {'blockNum': '0x9c10fa', 'uniqueId': '0x5721d31f0e39f6fcdd88f7e9d840214df6bbcf0104892299c9e92535c424799a:log:14', 'hash': '0x5721d31f0e39f6fcdd88f7e9d840214df6bbcf0104892299c9e92535c424799a', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xfbc584988f90d2b4f37a83c6a8c8faf0b43ecc2b', 'value': 1056.63491943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x189a08ef67', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:12.000Z'}}, {'blockNum': '0x9c10fc', 'uniqueId': '0x773f9e1b900f76c957e2a14cab50103d3b4b9c7cee4a4f74035c0fc0be713c1a:log:14', 'hash': '0x773f9e1b900f76c957e2a14cab50103d3b4b9c7cee4a4f74035c0fc0be713c1a', 'from': '0xfbc584988f90d2b4f37a83c6a8c8faf0b43ecc2b', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1056.63491942, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x189a08ef66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:26.000Z'}}, {'blockNum': '0x9c10fd', 'uniqueId': '0x8c9fd4368018872182915433f5aa86d59f8a7187cbd1232a1350ec190b0ba578:log:5', 'hash': '0x8c9fd4368018872182915433f5aa86d59f8a7187cbd1232a1350ec190b0ba578', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 476.728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b19853300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:12:37.000Z'}}, {'blockNum': '0x9c1106', 'uniqueId': '0xce6adf6a4eb77638b7b647e1ce2ab3813606fe6f329bcca823323bb8717e79c2:log:4', 'hash': '0xce6adf6a4eb77638b7b647e1ce2ab3813606fe6f329bcca823323bb8717e79c2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2239135542266b1231754f7f560bf2639a7ddb9a', 'value': 709.267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10838f8de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:13:46.000Z'}}, {'blockNum': '0x9c1106', 'uniqueId': '0x0d33b3f6fb5a9c6c6bfc22f1debc40e6b8a9b32009a87c724a7e66146838b5ad:log:6', 'hash': '0x0d33b3f6fb5a9c6c6bfc22f1debc40e6b8a9b32009a87c724a7e66146838b5ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7ff0d2adfc9c4cb688139898dd1f12c6fbb0c7c9', 'value': 1362.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbbfe6e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:13:46.000Z'}}, {'blockNum': '0x9c1107', 'uniqueId': '0xd8934fc5fae4fc9ccb168b297bed87100b13e3067bc345fec136d313155dcc73:log:14', 'hash': '0xd8934fc5fae4fc9ccb168b297bed87100b13e3067bc345fec136d313155dcc73', 'from': '0x2239135542266b1231754f7f560bf2639a7ddb9a', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 709.267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10838f8de0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:14:13.000Z'}}, {'blockNum': '0x9c1107', 'uniqueId': '0x6bac4edcbb4ea409d196e09fedcbc8ac69609d9c34fbc2aa54f3387cce14121f:log:18', 'hash': '0x6bac4edcbb4ea409d196e09fedcbc8ac69609d9c34fbc2aa54f3387cce14121f', 'from': '0x7ff0d2adfc9c4cb688139898dd1f12c6fbb0c7c9', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1362.98, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1fbbfe6e80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:14:13.000Z'}}, {'blockNum': '0x9c1124', 'uniqueId': '0x4bf4ccbe6d91a009c2be466863fffcf0c15c58060975b5e9bd95120accfebcb4:log:5', 'hash': '0x4bf4ccbe6d91a009c2be466863fffcf0c15c58060975b5e9bd95120accfebcb4', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'value': 612.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e42365880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:21:47.000Z'}}, {'blockNum': '0x9c112d', 'uniqueId': '0xa90570997d3a1d7597117b0de21a6c15bb7e5115bf9a906ee0565fa9712a5989:log:3', 'hash': '0xa90570997d3a1d7597117b0de21a6c15bb7e5115bf9a906ee0565fa9712a5989', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5081bfbf937845585f4d253296ed451700b4de89', 'value': 2938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4467d83a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:23:55.000Z'}}, {'blockNum': '0x9c112d', 'uniqueId': '0xdfee7d6e7e6dd2d2a5365921a84034c6e7994f572f8edd4589a6c915aa5d39ae:log:5', 'hash': '0xdfee7d6e7e6dd2d2a5365921a84034c6e7994f572f8edd4589a6c915aa5d39ae', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf84bd1d10fef6feeb7afa3561871716fe3d035c9', 'value': 41.700444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xf88dd3f0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:23:55.000Z'}}, {'blockNum': '0x9c1130', 'uniqueId': '0xb4a8c9a06f1702c2b8a69b27f4b29c646b54cdddfbe7fcae07f705f6b32aded5:log:7', 'hash': '0xb4a8c9a06f1702c2b8a69b27f4b29c646b54cdddfbe7fcae07f705f6b32aded5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'value': 443.831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0a55705c60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:25:22.000Z'}}, {'blockNum': '0x9c1144', 'uniqueId': '0x51b4cacdae2adf2c775f695c9a24d796010e2fbdb293fa932cd75ded41b4fced:log:96', 'hash': '0x51b4cacdae2adf2c775f695c9a24d796010e2fbdb293fa932cd75ded41b4fced', 'from': '0xac7b19fadb2a49b0d0684dcaf4d441b648277174', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1056.235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1897a6b4e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:29:01.000Z'}}, {'blockNum': '0x9c1149', 'uniqueId': '0xafcef7f54562898253fa0ba8297605ea357e37b6c8d0cc9ce90ca1739aeb49d3:log:12', 'hash': '0xafcef7f54562898253fa0ba8297605ea357e37b6c8d0cc9ce90ca1739aeb49d3', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x7df68cd8ce16ac47bd671eece2c12904fad762fc', 'value': 709.067, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10825e60e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:30:17.000Z'}}, {'blockNum': '0x9c114c', 'uniqueId': '0x736054cf93736621b30e749501f81b68990e48f16c704ad3a5106ca273a388a1:log:14', 'hash': '0x736054cf93736621b30e749501f81b68990e48f16c704ad3a5106ca273a388a1', 'from': '0x5081bfbf937845585f4d253296ed451700b4de89', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4467d83a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:31:36.000Z'}}, {'blockNum': '0x9c1161', 'uniqueId': '0x8cea89f008f6e1aa69aa61a09f632541a79a13df1d18a3c864051d7569e5e199:log:1', 'hash': '0x8cea89f008f6e1aa69aa61a09f632541a79a13df1d18a3c864051d7569e5e199', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe9dcb9a3da34e628ed2dcf2e0ab05c0d3d62b2f8', 'value': 34.769243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xcf3da78c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:36:17.000Z'}}, {'blockNum': '0x9c1164', 'uniqueId': '0x5e4ca9d6107272cbb4bca2f149df7487f69ad856d62a7cf592d5dc7c71dc9d69:log:25', 'hash': '0x5e4ca9d6107272cbb4bca2f149df7487f69ad856d62a7cf592d5dc7c71dc9d69', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2226, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x33d3fe7200', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:37:00.000Z'}}, {'blockNum': '0x9c1177', 'uniqueId': '0x272b4ef226a5c84afe7a7cfd45eeb1f753b6f4e27007a55eb924e1fe481598d9:log:136', 'hash': '0x272b4ef226a5c84afe7a7cfd45eeb1f753b6f4e27007a55eb924e1fe481598d9', 'from': '0x32435ff043ac194c8b3406c8d56520c0d18cd15e', 'to': '0x29b6e2749e038d2b984ce547759988070fc20631', 'value': 1686.818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2746380140', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-08T23:42:28.000Z'}}, {'blockNum': '0x9c11e7', 'uniqueId': '0x217566785bce9c238024d81f7568c9a3ddf0f40f8102ea9c9e2c0c7dc61d729b:log:161', 'hash': '0x217566785bce9c238024d81f7568c9a3ddf0f40f8102ea9c9e2c0c7dc61d729b', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5ec90d0700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:05:08.000Z'}}, {'blockNum': '0x9c120b', 'uniqueId': '0xe2d0d4651ad8db4ebcf46e5163cde7a879c345007fc72afd24d3a8b161333400:log:134', 'hash': '0xe2d0d4651ad8db4ebcf46e5163cde7a879c345007fc72afd24d3a8b161333400', 'from': '0xb36db036f4c9bededba071d0792bedaf17b89f08', 'to': '0x9ae79d587caeae8981b1203c63e20f1be7c1fa1e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:13:15.000Z'}}, {'blockNum': '0x9c1264', 'uniqueId': '0x3673b156e790c2dabf0a6127519aa99c41e982af6a5026dcdce9954fc9bc1df4:log:0', 'hash': '0x3673b156e790c2dabf0a6127519aa99c41e982af6a5026dcdce9954fc9bc1df4', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xfec3f7f422b03735a9a3ddf13ac8bde2373e791e', 'value': 89.74844279, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0216f14177', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:27:34.000Z'}}, {'blockNum': '0x9c1280', 'uniqueId': '0x39d3729a4d7b2bd2ab64b9b3d2249baeb4a4efadf14588386cd58165ca914986:log:22', 'hash': '0x39d3729a4d7b2bd2ab64b9b3d2249baeb4a4efadf14588386cd58165ca914986', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd3e8a790b2fbbe53a9db03845bdc0dca3064dc69', 'value': 47.575063, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011b91c8fc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:33:06.000Z'}}, {'blockNum': '0x9c12b7', 'uniqueId': '0x0b1f1fdc7023d61b55d97786a2816cbdf86a189fc8408d41c99d664075c6d92d:log:15', 'hash': '0x0b1f1fdc7023d61b55d97786a2816cbdf86a189fc8408d41c99d664075c6d92d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 1064, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x18c5ef2800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T00:43:46.000Z'}}, {'blockNum': '0x9c1302', 'uniqueId': '0x5a515c2eecc3008d1bd81839c8389ff273e149addb2e983059d095a1cea4b260:log:137', 'hash': '0x5a515c2eecc3008d1bd81839c8389ff273e149addb2e983059d095a1cea4b260', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x18a052ff51cf8bfb6b9028eda22b855f1f87df3c', 'value': 491.34842318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0b70aa31ce', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:03:49.000Z'}}, {'blockNum': '0x9c1315', 'uniqueId': '0x54457c5332fa99fbbab83f0c9b0889609519eb05e725a345e7b9cd8ae5acec2f:log:196', 'hash': '0x54457c5332fa99fbbab83f0c9b0889609519eb05e725a345e7b9cd8ae5acec2f', 'from': '0x9ae79d587caeae8981b1203c63e20f1be7c1fa1e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:08:20.000Z'}}, {'blockNum': '0x9c1319', 'uniqueId': '0x7520cdb05ed493b946f988dcb78c008567e92a6ed5f9019058f05ccdb9a416d6:log:135', 'hash': '0x7520cdb05ed493b946f988dcb78c008567e92a6ed5f9019058f05ccdb9a416d6', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x0f0c138a6364464d5de4ecf746894443526516e6', 'value': 396.3901736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x093aab6790', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:10:11.000Z'}}, {'blockNum': '0x9c1357', 'uniqueId': '0x234f47bdd482e6be3ca64c84d875c3e74fb28a6bee4c0a3d837fee791871a711:log:153', 'hash': '0x234f47bdd482e6be3ca64c84d875c3e74fb28a6bee4c0a3d837fee791871a711', 'from': '0xe184a8d3a892930221284832d68c77f0d84b9382', 'to': '0x5ab1e75aeefa5883463e170d7229e5f51ece8ad1', 'value': 102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x025ff7a600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:24:36.000Z'}}, {'blockNum': '0x9c13e8', 'uniqueId': '0x3afde15545ce85ff251fb14495e61a298921248f04055ee275acce337975e290:log:104', 'hash': '0x3afde15545ce85ff251fb14495e61a298921248f04055ee275acce337975e290', 'from': '0x263dd9b9fa838e6cbe0142b816f6396719502bf1', 'to': '0x6d512f2c26dae6f89c065ef4ee24b625bd8e3544', 'value': 46.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x011711a680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:52:24.000Z'}}, {'blockNum': '0x9c1400', 'uniqueId': '0x04430164bd1a2808e72fa78d0f2f9e71ee27d00227242b020117d46cbbe2c619:log:65', 'hash': '0x04430164bd1a2808e72fa78d0f2f9e71ee27d00227242b020117d46cbbe2c619', 'from': '0x58ada76e6afbcd711932f3896e355796f16a6710', 'to': '0x831e5466242fe0e200ff920fc52a69a68b6df171', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x746a528800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T01:58:16.000Z'}}, {'blockNum': '0x9c140b', 'uniqueId': '0xd7480c85c14163a886ea91d7bce93a71215f574d2cf49a2e4a1a14efe4c4d665:log:12', 'hash': '0xd7480c85c14163a886ea91d7bce93a71215f574d2cf49a2e4a1a14efe4c4d665', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 500.93, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ba9c68540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:00:34.000Z'}}, {'blockNum': '0x9c140b', 'uniqueId': '0xb064a81915548b3434987573bb60399e9edd83f13d053e77196fb16f3ccf1bc8:log:14', 'hash': '0xb064a81915548b3434987573bb60399e9edd83f13d053e77196fb16f3ccf1bc8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 298.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x06f3bc2ec0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:00:34.000Z'}}, {'blockNum': '0x9c1412', 'uniqueId': '0x16b05d6745770571b10b2225bff96e7da43bb411c6a7f477c2d1d8ee5fac4de4:log:6', 'hash': '0x16b05d6745770571b10b2225bff96e7da43bb411c6a7f477c2d1d8ee5fac4de4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad82d8ada6276b4e4d410f85ac7e3168f3a203b9', 'value': 1421.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x21195631c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:02:52.000Z'}}, {'blockNum': '0x9c1416', 'uniqueId': '0x7dbb6991adccf54e2a02f1bd76c2b353bc38808b1a33d72ef0d86f3b31b65f10:log:49', 'hash': '0x7dbb6991adccf54e2a02f1bd76c2b353bc38808b1a33d72ef0d86f3b31b65f10', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 385.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08fa4ba5c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-06-09T02:03:44.000Z'}}]}}
Number of returned transfers:  309
Answer is complete
 
symbol             VIA
group              CPI
date        2020-06-10
hour             16:00
exchange       binance
Name: 1076, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: VIA, Contract: 
Datetime timestamps:  2020-06-10 16:00:00 2020-06-10 04:00:00 2020-06-11 04:00:00
Unix timestamps:  1591754400.0 1591840800.0
Hex Block Numbers:  0x9c2d1d 0x9c4627
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             QSP
group              CPI
date        2020-06-13
hour             16:00
exchange       binance
Name: 1077, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2020-06-13 16:00:00 2020-06-13 04:00:00 2020-06-14 04:00:00
Unix timestamps:  1592013600.0 1592100000.0
Hex Block Numbers:  0x9c78bc 0x9c9223
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9c78cc', 'uniqueId': '0xe0f3acb9ac4e9da824f213316acb54e65f50b88d8748a92432faa146cf7de6b2:log:5', 'hash': '0xe0f3acb9ac4e9da824f213316acb54e65f50b88d8748a92432faa146cf7de6b2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd7fb052e6580c5a24b74953d76281d79d7820977', 'value': 9597.327, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x020845aae9aea9618000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:03:07.000Z'}}, {'blockNum': '0x9c796f', 'uniqueId': '0x154bfe084b5ca472dc85f4693ae84887e400d7f9017e3a60096272a876c3d521:log:7', 'hash': '0x154bfe084b5ca472dc85f4693ae84887e400d7f9017e3a60096272a876c3d521', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x386e96e10447095a99b919defc955c6d4835c279', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:38:27.000Z'}}, {'blockNum': '0x9c7973', 'uniqueId': '0x3e0a39a246de933b902350265c7f3e346462e0c7519cb3feb80a8b32b6e56527:log:105', 'hash': '0x3e0a39a246de933b902350265c7f3e346462e0c7519cb3feb80a8b32b6e56527', 'from': '0x4adf9e849705bc6b7b363e95c32343942d0c2063', 'to': '0x565ed33632dd634f05458bf4afd41da25931e1d5', 'value': 27566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05d65b19451291f80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:39:48.000Z'}}, {'blockNum': '0x9c79ae', 'uniqueId': '0x1782e3700995859c8445e3c9a00f4cf2293b0541a49b2aeedcf01fd9c7f67a0b:log:1', 'hash': '0x1782e3700995859c8445e3c9a00f4cf2293b0541a49b2aeedcf01fd9c7f67a0b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 20206.787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04476980945aa5338000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:52:57.000Z'}}, {'blockNum': '0x9c79ba', 'uniqueId': '0xa71ef361a1ff2a0f2b1441e62cb60a9d7d9c1acc10846a3286e390c653d8c572:log:41', 'hash': '0xa71ef361a1ff2a0f2b1441e62cb60a9d7d9c1acc10846a3286e390c653d8c572', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0024fd7d0c646d101b7b6889e791e3b5acf21628', 'value': 20206.787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04476980945aa5338000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T02:55:39.000Z'}}, {'blockNum': '0x9c7a49', 'uniqueId': '0xa57ca6293cb4bbc759dd966f3b749d20ebda1e4131fe36bbc202678519af5476:log:0', 'hash': '0xa57ca6293cb4bbc759dd966f3b749d20ebda1e4131fe36bbc202678519af5476', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x447449d92bbd7112f8bc1a8a9b9423f88b86ebeb', 'value': 51929.59600001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aff1bea0b37bdf1e400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T03:26:26.000Z'}}, {'blockNum': '0x9c7b5b', 'uniqueId': '0x3d1c7859b7da4fbd01540e5672e90e423d89ba0fda96d2563dc411d20cec8568:log:154', 'hash': '0x3d1c7859b7da4fbd01540e5672e90e423d89ba0fda96d2563dc411d20cec8568', 'from': '0x94c7c34a3cdb736f029cb5d068f7eb43866e6911', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 87892.7258, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x129cac99377b12ca8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T04:30:32.000Z'}}, {'blockNum': '0x9c7bc0', 'uniqueId': '0xf9b265f977150941dc8c579d78f55f9664a7ac7681811c798f1f8c4b9806c69b:log:8', 'hash': '0xf9b265f977150941dc8c579d78f55f9664a7ac7681811c798f1f8c4b9806c69b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 17793.59824999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03c497c7e5d78a38bc00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T04:52:26.000Z'}}, {'blockNum': '0x9c7bcd', 'uniqueId': '0x993da0860cde7ecef63aa875ce3c1bcf162a4d47386d609d6df78ced413e1805:log:85', 'hash': '0x993da0860cde7ecef63aa875ce3c1bcf162a4d47386d609d6df78ced413e1805', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4d46513b4d234797bd57c79a6c7f56e96ad887f1', 'value': 17793.59824999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03c497c7e5d78a38bc00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T04:54:46.000Z'}}, {'blockNum': '0x9c7c40', 'uniqueId': '0x283652d3bb98f21edfd0b9aa1da1d44514f14aefa3ce9ab27fc98dd5d0b7b939:log:17', 'hash': '0x283652d3bb98f21edfd0b9aa1da1d44514f14aefa3ce9ab27fc98dd5d0b7b939', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xad5646dee0a4c919e2e6c13419ba79dd75f82a00', 'value': 199938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a56a923831362c80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:23:54.000Z'}}, {'blockNum': '0x9c7c4a', 'uniqueId': '0x29b48453d2b95cfc2ab9e984aae850d2b76615da9ee2d2ac52499cb1ad39fafc:log:9', 'hash': '0x29b48453d2b95cfc2ab9e984aae850d2b76615da9ee2d2ac52499cb1ad39fafc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 502316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6a5e9adc47c52d300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:25:48.000Z'}}, {'blockNum': '0x9c7c66', 'uniqueId': '0xd809a7e5fc6bb4ed3fb64e33c867fa471562f399bd464b175af7e797d45fe1f4:log:21', 'hash': '0xd809a7e5fc6bb4ed3fb64e33c867fa471562f399bd464b175af7e797d45fe1f4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xad5646dee0a4c919e2e6c13419ba79dd75f82a00', 'value': 249938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x34ed2a8773b8de080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:31:19.000Z'}}, {'blockNum': '0x9c7cc7', 'uniqueId': '0x9567f315c74039829a4c60317eeec761d9642afe04c9f5b546d0148bd46a3deb:log:17', 'hash': '0x9567f315c74039829a4c60317eeec761d9642afe04c9f5b546d0148bd46a3deb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2ff181dab3b8ef3edd07476fa40788dd0700e950', 'value': 790.95872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2ae0c1dd293da80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:52:17.000Z'}}, {'blockNum': '0x9c7cc7', 'uniqueId': '0x9436a8865474464dba44a14bfb665dd0ec337a2bd51f0bd98255b076935fde47:log:21', 'hash': '0x9436a8865474464dba44a14bfb665dd0ec337a2bd51f0bd98255b076935fde47', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd50c125a789128dbd0d4febdbf9599096c68e15c', 'value': 1030.4061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x37dbc1d89fdfa14000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T05:52:17.000Z'}}, {'blockNum': '0x9c7d4e', 'uniqueId': '0xfdd04f0d00ff2254d07a50aeb2e75ea6c3f935e8c4415e770942c90f540e72c6:log:29', 'hash': '0xfdd04f0d00ff2254d07a50aeb2e75ea6c3f935e8c4415e770942c90f540e72c6', 'from': '0x2ff181dab3b8ef3edd07476fa40788dd0700e950', 'to': '0x6d25c3711ecc16f54ae1771e61eb8d08c3977db5', 'value': 790.95872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2ae0c1dd293da80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T06:26:12.000Z'}}, {'blockNum': '0x9c7d83', 'uniqueId': '0xc8683397f9365dfc4937ae3417b817053c498c8ae44a4218b14c27b13fdb61e1:log:34', 'hash': '0xc8683397f9365dfc4937ae3417b817053c498c8ae44a4218b14c27b13fdb61e1', 'from': '0x35f05827f3df3a5c57bd7f5547d966c353282f9d', 'to': '0xa37f430953bb573364f354b2dd218a442c46d65a', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T06:37:25.000Z'}}, {'blockNum': '0x9c7def', 'uniqueId': '0x0b667b1b23706ce8d4cde56fe498c29705d2ef67550018c02d1bdbabcf5fa324:log:171', 'hash': '0x0b667b1b23706ce8d4cde56fe498c29705d2ef67550018c02d1bdbabcf5fa324', 'from': '0xa37f430953bb573364f354b2dd218a442c46d65a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:00:33.000Z'}}, {'blockNum': '0x9c7e20', 'uniqueId': '0xb19419b6f8f6de9d9ba76d0ad2380f58b44a1de8a47f01ee164511b9490cdd51:log:18', 'hash': '0xb19419b6f8f6de9d9ba76d0ad2380f58b44a1de8a47f01ee164511b9490cdd51', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 9836.57049999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02153dd6915b56805c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:10:25.000Z'}}, {'blockNum': '0x9c7e2a', 'uniqueId': '0x32bb315f7ed5d1a71d6252ec8e7f97fed1f3965278e066c2d2c093a6e211fc24:log:96', 'hash': '0x32bb315f7ed5d1a71d6252ec8e7f97fed1f3965278e066c2d2c093a6e211fc24', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x3badc34afe50d98ca792f41676f089f4dbf5cf30', 'value': 9836.57049999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02153dd6915b56805c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:12:45.000Z'}}, {'blockNum': '0x9c7e8e', 'uniqueId': '0x13d8016e049ced73b529d35e3114fc8a0aeb741fd8c314a17315f3522970e549:log:98', 'hash': '0x13d8016e049ced73b529d35e3114fc8a0aeb741fd8c314a17315f3522970e549', 'from': '0x2b9b77c697de4913bd81577f16980fd0d5014b36', 'to': '0x813e323abd2678fb02059064111722b3e38e5296', 'value': 2550, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8a3c5be1855e180000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T07:34:24.000Z'}}, {'blockNum': '0x9c7f21', 'uniqueId': '0x252c074233a52915f0946c55956dabc0f502225e780803af43d2743abbafcaae:log:116', 'hash': '0x252c074233a52915f0946c55956dabc0f502225e780803af43d2743abbafcaae', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 97247.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1497ce52265773fd8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T08:05:25.000Z'}}, {'blockNum': '0x9c7ff5', 'uniqueId': '0x9caa8a9004c3ccc20a07cc0f5c58c8ae49ec6294a86a5aa05ba60b4d54a8708f:log:154', 'hash': '0x9caa8a9004c3ccc20a07cc0f5c58c8ae49ec6294a86a5aa05ba60b4d54a8708f', 'from': '0xdb38317eb5e13a45d513a975661ac65b1bc37042', 'to': '0x0ae280667ede02c11fc31da99b51e04df73d1190', 'value': 30408.257113424326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06706f56fecef1f87144', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T08:47:40.000Z'}}, {'blockNum': '0x9c8089', 'uniqueId': '0xba771658d998ae6996e3a114d8a90d14a392baf82f9f76e624b22994689b077c:log:148', 'hash': '0xba771658d998ae6996e3a114d8a90d14a392baf82f9f76e624b22994689b077c', 'from': '0x3bbaecc7118b0b78a45a74e1687c3c907db70dbc', 'to': '0x62567ac7cd7084943e79ce61e06a5d5b9e3987a1', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T09:20:23.000Z'}}, {'blockNum': '0x9c80b1', 'uniqueId': '0x30b444830f046eef608c0743248684fae571157d9b6e1833bdeacd4b8a197122:log:171', 'hash': '0x30b444830f046eef608c0743248684fae571157d9b6e1833bdeacd4b8a197122', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 97247.655, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1497ce52265773fd8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T09:30:52.000Z'}}, {'blockNum': '0x9c81b3', 'uniqueId': '0x73f91edc41d78d431f114a60aab020d14539a9664c6cae915255f9a80f6c9ae1:log:5', 'hash': '0x73f91edc41d78d431f114a60aab020d14539a9664c6cae915255f9a80f6c9ae1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1540.4387119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5381e1aee103cc9800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T10:29:14.000Z'}}, {'blockNum': '0x9c81bb', 'uniqueId': '0xf044eedf062e7d32e34362fb766207169b0732980958c56d633ff134a13717e0:log:61', 'hash': '0xf044eedf062e7d32e34362fb766207169b0732980958c56d633ff134a13717e0', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x59776535aae70f06e7fb91d304c665415c8dd0f5', 'value': 1540.4387119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5381e1aee103cc9800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T10:31:31.000Z'}}, {'blockNum': '0x9c81cd', 'uniqueId': '0xe5380116a6dec96ca79cf4172afd40e054661f5bf30cab9c966b350ef782f8e6:log:8', 'hash': '0xe5380116a6dec96ca79cf4172afd40e054661f5bf30cab9c966b350ef782f8e6', 'from': '0x5988bb26dd5b712bb76bfe3f95e2c49490062264', 'to': '0x28762f08fb9c74733deb36435cbb60edda033e63', 'value': 1433.3018185, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4db30ef9f79de82800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T10:36:58.000Z'}}, {'blockNum': '0x9c824f', 'uniqueId': '0x7c113743826418eded166bb23ae49fd62210f7229399cff84bc2e4de0b2c774a:log:23', 'hash': '0x7c113743826418eded166bb23ae49fd62210f7229399cff84bc2e4de0b2c774a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'value': 20466.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04557f68d53329460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:04:45.000Z'}}, {'blockNum': '0x9c827f', 'uniqueId': '0x9ff246f15a2903535538a11eaefc8c6816d307bca88308567eb075a102f3244f:log:15', 'hash': '0x9ff246f15a2903535538a11eaefc8c6816d307bca88308567eb075a102f3244f', 'from': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'to': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'value': 20466.62, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04557f68d53329460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:15:30.000Z'}}, {'blockNum': '0x9c82be', 'uniqueId': '0x83ee7ee3fc2a6c66e310fcf984b8c7c79e3cf9b2d641bacdd46fba934845897c:log:3', 'hash': '0x83ee7ee3fc2a6c66e310fcf984b8c7c79e3cf9b2d641bacdd46fba934845897c', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 114541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x184147b17bc5e1940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:30:32.000Z'}}, {'blockNum': '0x9c82c6', 'uniqueId': '0x933325564fc42f0fa45245e4925f0ca22882ad93336c3ba1089bf325782691e2:log:0', 'hash': '0x933325564fc42f0fa45245e4925f0ca22882ad93336c3ba1089bf325782691e2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 13530.85827251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02dd82614549ca306c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:31:37.000Z'}}, {'blockNum': '0x9c82cd', 'uniqueId': '0x2c172595a2c60256080ab770f214be8bc9af24687f9474b02f2dfd2e35cafde6:log:31', 'hash': '0x2c172595a2c60256080ab770f214be8bc9af24687f9474b02f2dfd2e35cafde6', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'value': 13530.85827251, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02dd82614549ca306c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:33:22.000Z'}}, {'blockNum': '0x9c834e', 'uniqueId': '0x1cc60d7bfb903a2a4fe1d4476ebed03627e0d8c53b1e05c878356110238c8b2c:log:9', 'hash': '0x1cc60d7bfb903a2a4fe1d4476ebed03627e0d8c53b1e05c878356110238c8b2c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf3a2dbd2e3cbf4af38df56da6a2978f01ae6b7f3', 'value': 785.152, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a902c40161f800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T11:58:51.000Z'}}, {'blockNum': '0x9c835b', 'uniqueId': '0xc7f6ea1fbecdc91a1ae5eefa4a267dcca2dc7cb42c33eeaf1a5e19f054dca968:log:103', 'hash': '0xc7f6ea1fbecdc91a1ae5eefa4a267dcca2dc7cb42c33eeaf1a5e19f054dca968', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x184147b17bc5e1940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:00:34.000Z'}}, {'blockNum': '0x9c83c1', 'uniqueId': '0xcc06bc44ed7599f55603b60979f02f71f91a589ab94b85a20f1f74f4e38e1be3:log:22', 'hash': '0xcc06bc44ed7599f55603b60979f02f71f91a589ab94b85a20f1f74f4e38e1be3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 95066.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1421921a3790f6640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:28:01.000Z'}}, {'blockNum': '0x9c83cb', 'uniqueId': '0xbdac68765bc19fd7382f8d34f5fcb5459765af732b77694e2921ff63b0ef775f:log:77', 'hash': '0xbdac68765bc19fd7382f8d34f5fcb5459765af732b77694e2921ff63b0ef775f', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x24bc2bb99f5b5cbaf5ca666aced4ad2087d3199c', 'value': 95066.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1421921a3790f6640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:30:14.000Z'}}, {'blockNum': '0x9c83df', 'uniqueId': '0xdb0ec28382e385b402fdf458bf4f2273c3c92c093ec8d2b88cd7a37050e139d1:log:7', 'hash': '0xdb0ec28382e385b402fdf458bf4f2273c3c92c093ec8d2b88cd7a37050e139d1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2ae1b8dccf3dc99d8726192003e41fb54f273b9d', 'value': 1995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6c262fca09784c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:33:55.000Z'}}, {'blockNum': '0x9c83e3', 'uniqueId': '0x7bc726f50976f2530bf1ca4fe8b0f845f7e57f2404c0ac0c3e17c31b35c439e1:log:1', 'hash': '0x7bc726f50976f2530bf1ca4fe8b0f845f7e57f2404c0ac0c3e17c31b35c439e1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 95517.26175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x143a004a617ba4496000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:34:43.000Z'}}, {'blockNum': '0x9c83e8', 'uniqueId': '0x7310ce4c1ca2dc9bb804818d911e83ddd48f92ae541345067674152a7ac2501d:log:18', 'hash': '0x7310ce4c1ca2dc9bb804818d911e83ddd48f92ae541345067674152a7ac2501d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x733043b3cda5511338b7fe52d9c6b0519af6ec9b', 'value': 1330.0047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x481985e3fbabf9c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:36:24.000Z'}}, {'blockNum': '0x9c83e9', 'uniqueId': '0x0c5a49036c90e3b00f5543e59e1a47b879f360df681051fbc1a825e74f11a3ed:log:22', 'hash': '0x0c5a49036c90e3b00f5543e59e1a47b879f360df681051fbc1a825e74f11a3ed', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x2ff3373d3c335e40111f1fce8f20d7b69dbb860e', 'value': 95517.26175, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x143a004a617ba4496000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T12:37:30.000Z'}}, {'blockNum': '0x9c8469', 'uniqueId': '0x6126b365d6f9f9ec86f6c0b84ae46f6520ebbebf43328c3d404cdefbc5c154de:log:42', 'hash': '0x6126b365d6f9f9ec86f6c0b84ae46f6520ebbebf43328c3d404cdefbc5c154de', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8c3ab8b54403e12bd07d5fd8c0f79d526e7d983a', 'value': 1494.328334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5101f8b67b6f46e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T13:08:35.000Z'}}, {'blockNum': '0x9c8498', 'uniqueId': '0x1a3441f9d3739e3362904169820eabb2b5698195eb659b482f8859458985b155:log:18', 'hash': '0x1a3441f9d3739e3362904169820eabb2b5698195eb659b482f8859458985b155', 'from': '0x2254d8eee1b396ac5aae9d209b8db0e5af379ae4', 'to': '0xc3b79c1c46e15138576476eedf2d3d8b7e9f63f7', 'value': 1814.148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x62585c6a3b615a0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T13:21:03.000Z'}}, {'blockNum': '0x9c849a', 'uniqueId': '0x796a906c4c62720df138c3f9c85f362fb7debe4e6c4cccb510a5a951e00cae0e:log:1', 'hash': '0x796a906c4c62720df138c3f9c85f362fb7debe4e6c4cccb510a5a951e00cae0e', 'from': '0xc3b79c1c46e15138576476eedf2d3d8b7e9f63f7', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1814.148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x62585c6a3b615a0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T13:21:42.000Z'}}, {'blockNum': '0x9c85bd', 'uniqueId': '0xec86fc5a9b3a3da9d77a81b66eea795b5b0f47462157bb77c6160517a462c5d1:log:27', 'hash': '0xec86fc5a9b3a3da9d77a81b66eea795b5b0f47462157bb77c6160517a462c5d1', 'from': '0x7728156d25f977a2c76f10628404085b1433cb0e', 'to': '0x6401186196a8baa871c32863f78551de0485ceb7', 'value': 4992.151103631555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010ea0038333e9226918', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T14:22:56.000Z'}}, {'blockNum': '0x9c85c0', 'uniqueId': '0x4db6dfe463acbabb843f173de4ac97ffec4d78d8730d3d3b079ed0a46950b1b9:log:1', 'hash': '0x4db6dfe463acbabb843f173de4ac97ffec4d78d8730d3d3b079ed0a46950b1b9', 'from': '0x6401186196a8baa871c32863f78551de0485ceb7', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 4992.151103631555, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010ea0038333e9226918', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T14:23:20.000Z'}}, {'blockNum': '0x9c86f7', 'uniqueId': '0x32c772a84abd97482063f5bf9677f9c72bdaf81b5663003414209d3fe3553293:log:56', 'hash': '0x32c772a84abd97482063f5bf9677f9c72bdaf81b5663003414209d3fe3553293', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x0339ad2632830cbaa2e9a06c8ebd43b2d581d976', 'value': 688.12345663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x254da19df87d111c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:30:37.000Z'}}, {'blockNum': '0x9c8701', 'uniqueId': '0x5b91b51d8e934c608ad14a06999f19d42965d0aaf4aa9bc1cea92aa555150445:log:62', 'hash': '0x5b91b51d8e934c608ad14a06999f19d42965d0aaf4aa9bc1cea92aa555150445', 'from': '0xeecee4ce45f1f7962822fcc036522639c005cc7e', 'to': '0xc1afbe5f81c54c573ebeb4b599bf5ad5e739b55a', 'value': 31088.539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06955025c25c6daf8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:32:57.000Z'}}, {'blockNum': '0x9c8702', 'uniqueId': '0xa8ee59bc681fde2c340102b775bf6f1516b5728d0daaa44af63038590e0e450c:log:0', 'hash': '0xa8ee59bc681fde2c340102b775bf6f1516b5728d0daaa44af63038590e0e450c', 'from': '0xc1afbe5f81c54c573ebeb4b599bf5ad5e739b55a', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 31088.539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x06955025c25c6daf8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:33:24.000Z'}}, {'blockNum': '0x9c873f', 'uniqueId': '0x8ff3efb686f13d4ee717d0a97b737c57741fb2dfeaa608d79b0577c73e8de3f8:log:34', 'hash': '0x8ff3efb686f13d4ee717d0a97b737c57741fb2dfeaa608d79b0577c73e8de3f8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xab561d89e4c76549cc6ee339b4839d1d46555180', 'value': 74881.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0fdb53d1b27a23630000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T15:49:22.000Z'}}, {'blockNum': '0x9c8776', 'uniqueId': '0x4b7e174e9bd17189703633a47bc971a05024add6f031078fac355ad472a87db6:log:56', 'hash': '0x4b7e174e9bd17189703633a47bc971a05024add6f031078fac355ad472a87db6', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 134237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1c6d009a19e47f540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:02:45.000Z'}}, {'blockNum': '0x9c8776', 'uniqueId': '0xf082cde3abeecd0eb3fd5816cd6180ccf45c6c27e5c7b919103a6023e11993ff:log:98', 'hash': '0xf082cde3abeecd0eb3fd5816cd6180ccf45c6c27e5c7b919103a6023e11993ff', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'value': 29033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0625e1d03c92cc040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:02:45.000Z'}}, {'blockNum': '0x9c8781', 'uniqueId': '0xe6f153d666a781ea5554aac6892176cdd272270382c23263dd4c7194e2abd8e2:log:154', 'hash': '0xe6f153d666a781ea5554aac6892176cdd272270382c23263dd4c7194e2abd8e2', 'from': '0xc77ad9bfdc6a35069d26ff14e1e384fbef9ddc0e', 'to': '0x3a377ec1a46e9bbfea8ca7e414b886e287929827', 'value': 7175.722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0184ff25b4653b910000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:05:09.000Z'}}, {'blockNum': '0x9c8783', 'uniqueId': '0xa8d4f0578ba80a11abee6c5bab31dce5e25145149323c8d9cd6cb667f0847bc1:log:174', 'hash': '0xa8d4f0578ba80a11abee6c5bab31dce5e25145149323c8d9cd6cb667f0847bc1', 'from': '0x004e8ca00f51a5b91db3ec8908f3cff467d353a1', 'to': '0x211885d8df538ba3850b989363edd05630e10ef2', 'value': 4400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xee86442fcd06c00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:05:12.000Z'}}, {'blockNum': '0x9c8797', 'uniqueId': '0xaaa708fc79196e9bbff9bd5dffefa8e9e0b07a177c23e0ab582a908e9fced6da:log:126', 'hash': '0xaaa708fc79196e9bbff9bd5dffefa8e9e0b07a177c23e0ab582a908e9fced6da', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 156836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x213618ba87424c100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:08:08.000Z'}}, {'blockNum': '0x9c8798', 'uniqueId': '0x9245cb91c6ed7fe410dbddcafe4936a3751066025908d1b8d151f1ebc2f10535:log:2', 'hash': '0x9245cb91c6ed7fe410dbddcafe4936a3751066025908d1b8d151f1ebc2f10535', 'from': '0x70c890146ff61b05ea7b0f9d61320cff0f51e5e6', 'to': '0x595af8896be7bb71b7b2ab1c0f7e5a0c13854850', 'value': 5672.206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01337dabd85d575b0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:08:54.000Z'}}, {'blockNum': '0x9c87a5', 'uniqueId': '0x23042ed4dd7943f31c62407590c1aa4d4876a177c49c7d87df09f2106bddba87:log:105', 'hash': '0x23042ed4dd7943f31c62407590c1aa4d4876a177c49c7d87df09f2106bddba87', 'from': '0x3a565ea133b7ee11ab9cf9d03bde38af1fdd1080', 'to': '0xadbfa6ebd7d34203f803294593fd147c8fd7d445', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:12:50.000Z'}}, {'blockNum': '0x9c87a8', 'uniqueId': '0x60d92c46d86ec8bae2bb7b5a4fa90b3db6ffa58f3f5bc9480355bb3d614f4004:log:29', 'hash': '0x60d92c46d86ec8bae2bb7b5a4fa90b3db6ffa58f3f5bc9480355bb3d614f4004', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 130000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b87506a3e7b0d400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:13:08.000Z'}}, {'blockNum': '0x9c87ae', 'uniqueId': '0xb9ee63e9789e7af3373f03c7c527b0cfc7b01d23bfc4a8b65a94611ec2cec41f:log:7', 'hash': '0xb9ee63e9789e7af3373f03c7c527b0cfc7b01d23bfc4a8b65a94611ec2cec41f', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'value': 44790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x097c121dac68d2180000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:14:29.000Z'}}, {'blockNum': '0x9c87bf', 'uniqueId': '0x31acc2dc51b1b87891e70352118d6d71ec44e8102333f9faf83595cfac65eb1c:log:13', 'hash': '0x31acc2dc51b1b87891e70352118d6d71ec44e8102333f9faf83595cfac65eb1c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2f7cdc7b2ddf073ea55eb925158972bea125db20', 'value': 1234.0929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x42e67aba0babaa4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:17:44.000Z'}}, {'blockNum': '0x9c87c2', 'uniqueId': '0xcb8a5f8c28c8a55d7d410998ce8a63e46a8d3f1e3492061b0f37b387faa14374:log:22', 'hash': '0xcb8a5f8c28c8a55d7d410998ce8a63e46a8d3f1e3492061b0f37b387faa14374', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'value': 16852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03918c7aea4702d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:18:09.000Z'}}, {'blockNum': '0x9c87c7', 'uniqueId': '0x7b463face6a20b6980e29c502f6ea24addac2399a6535bf6ae46b180cd20e92c:log:32', 'hash': '0x7b463face6a20b6980e29c502f6ea24addac2399a6535bf6ae46b180cd20e92c', 'from': '0x82db9fc4956fa40efe1e35d881004612b5cb2cc2', 'to': '0x90c5b6392804b2b7257aa195b86a58d9c254d946', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:19:09.000Z'}}, {'blockNum': '0x9c87cd', 'uniqueId': '0x02f1fbd0b7bdb796fc11e65464c19b0ff8f60942e91b6f8fd9a29af4d0ff853e:log:8', 'hash': '0x02f1fbd0b7bdb796fc11e65464c19b0ff8f60942e91b6f8fd9a29af4d0ff853e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 6956.72628859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01791ff8a528348e8c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:20:41.000Z'}}, {'blockNum': '0x9c87ce', 'uniqueId': '0x51c9755106ae0c5e01a344e609d06d5303115fc21c3f0d304b3c0782318267b1:log:38', 'hash': '0x51c9755106ae0c5e01a344e609d06d5303115fc21c3f0d304b3c0782318267b1', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x249a62defbbcfcd759931e3a124c203a6edb27e0', 'value': 8446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c9dbcbbb2c95380000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:20:59.000Z'}}, {'blockNum': '0x9c87cf', 'uniqueId': '0x2d829b2e61a7a6963ae00e909e2cfd3f8149536270ab57f5b05e56d14467db59:log:64', 'hash': '0x2d829b2e61a7a6963ae00e909e2cfd3f8149536270ab57f5b05e56d14467db59', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 90000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x130ee8e7179044400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:21:15.000Z'}}, {'blockNum': '0x9c87de', 'uniqueId': '0xa6222a825a6941ad0fe76b665cef6be528cda372031608f5c75ccefcdeda8c76:log:35', 'hash': '0xa6222a825a6941ad0fe76b665cef6be528cda372031608f5c75ccefcdeda8c76', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 160000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x21e19e0c9bab24000000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:23:41.000Z'}}, {'blockNum': '0x9c87e8', 'uniqueId': '0x1037bfb7d0767e24a642d23ed6e90afb53ce20fcacef3afab5957bfb668a4fd8:log:85', 'hash': '0x1037bfb7d0767e24a642d23ed6e90afb53ce20fcacef3afab5957bfb668a4fd8', 'from': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 16852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03918c7aea4702d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:28:24.000Z'}}, {'blockNum': '0x9c87ec', 'uniqueId': '0x82185709e4e6156aca4ebd587c407c0cfeed3d9cd7b43805ee5405e11af304b6:log:38', 'hash': '0x82185709e4e6156aca4ebd587c407c0cfeed3d9cd7b43805ee5405e11af304b6', 'from': '0xb3da5bef490a34a174838312d1ce22d7b323845f', 'to': '0x0b46bbc1957673d48e630192a06926f576f1144e', 'value': 7152.815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0183c13fb1430db18000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:28:45.000Z'}}, {'blockNum': '0x9c87f3', 'uniqueId': '0x0b0c7da54cee2e3c87bc29dd3defadc00562b0362c8579729c54d6b478b9a252:log:154', 'hash': '0x0b0c7da54cee2e3c87bc29dd3defadc00562b0362c8579729c54d6b478b9a252', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 67818.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e5c73aea855150d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:31:13.000Z'}}, {'blockNum': '0x9c87f7', 'uniqueId': '0x92d7a1c1539bc6ee58db807a24238369104ef06c8bf1b3cf9b808540472a0278:log:17', 'hash': '0x92d7a1c1539bc6ee58db807a24238369104ef06c8bf1b3cf9b808540472a0278', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 536836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71adf01878f8c1900000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:32:08.000Z'}}, {'blockNum': '0x9c87f7', 'uniqueId': '0xa60eae0a609749f27770a66467ed6a3630eeca0b75329bc549f102b1908ab3af:log:47', 'hash': '0xa60eae0a609749f27770a66467ed6a3630eeca0b75329bc549f102b1908ab3af', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 134237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1c6d009a19e47f540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:32:08.000Z'}}, {'blockNum': '0x9c87fc', 'uniqueId': '0x1d4b6f35b430c6e4a9f19f65f96d0066b0470d15b075fe215faa1474406cf144:log:20', 'hash': '0x1d4b6f35b430c6e4a9f19f65f96d0066b0470d15b075fe215faa1474406cf144', 'from': '0x2934588cf0ab0a92df6b7466c3b72174f6930920', 'to': '0x65a4c9053ac5706dd9b073308cab4f55c6343261', 'value': 1720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5d3dcb870ca7e00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:33:04.000Z'}}, {'blockNum': '0x9c8806', 'uniqueId': '0x54b3165c1345d585615b3c5e3a3e9569f228a3b288b32aa8d0a50ccf17ba6e0d:log:59', 'hash': '0x54b3165c1345d585615b3c5e3a3e9569f228a3b288b32aa8d0a50ccf17ba6e0d', 'from': '0xbd2e270101cc9b33ec6b700e4a467105ab92ce8e', 'to': '0x5e98156d2aac9700b11452093674aff4bd0e1d25', 'value': 970.6865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x349efb34d51f364000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:35:17.000Z'}}, {'blockNum': '0x9c880a', 'uniqueId': '0x1be7157ebc29f602da43c434e653fb33460cba461a3affb78da6a9c6d4f3ad9f:log:0', 'hash': '0x1be7157ebc29f602da43c434e653fb33460cba461a3affb78da6a9c6d4f3ad9f', 'from': '0x5e98156d2aac9700b11452093674aff4bd0e1d25', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 970.6865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x349efb34d51f364000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:35:53.000Z'}}, {'blockNum': '0x9c8810', 'uniqueId': '0xaaba93305baf5dec485c66686ff0d57f87f50605ee4d6d5d0a5b4e8588a798e9:log:30', 'hash': '0xaaba93305baf5dec485c66686ff0d57f87f50605ee4d6d5d0a5b4e8588a798e9', 'from': '0x724c94d87502066004d90b45846c40ceda0e585d', 'to': '0xceaeaaf20143ada0f828b15fc7a6493c437f80a9', 'value': 21002.081, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0472866c73b4b4b68000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:37:16.000Z'}}, {'blockNum': '0x9c8829', 'uniqueId': '0xccec284c49f775900d93e6080c01782fc325d250fa0c60d38dc9ddf9d56e71ee:log:3', 'hash': '0xccec284c49f775900d93e6080c01782fc325d250fa0c60d38dc9ddf9d56e71ee', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x1d5215753fc92d404b053ba82c0c45d97ae389d0', 'value': 14230.076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030369f9a7d37b860000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:42:03.000Z'}}, {'blockNum': '0x9c882c', 'uniqueId': '0x0e6d314e762e17a0a4487f0dec1ec86548954ce56bbf43b8f326cb0784b9883f:log:98', 'hash': '0x0e6d314e762e17a0a4487f0dec1ec86548954ce56bbf43b8f326cb0784b9883f', 'from': '0x27970d7f5e4241fa3e79eefcfcd302c60b8ff0d5', 'to': '0x204df2e86f100084fc8b1bb371fb70b76f7641f4', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:42:49.000Z'}}, {'blockNum': '0x9c8835', 'uniqueId': '0xf179cdeafd0c0bb97100a016f415a736f11016a060a65e0de26a0ba6153375f1:log:13', 'hash': '0xf179cdeafd0c0bb97100a016f415a736f11016a060a65e0de26a0ba6153375f1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 9359.1389098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01fb5c24d39eb5ae1000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:44:09.000Z'}}, {'blockNum': '0x9c8836', 'uniqueId': '0xc106bf220ea64627205a7d1e01f6f5909a53b3fd680d6f315218fc51bc1a713f:log:43', 'hash': '0xc106bf220ea64627205a7d1e01f6f5909a53b3fd680d6f315218fc51bc1a713f', 'from': '0x1d5215753fc92d404b053ba82c0c45d97ae389d0', 'to': '0x2cca3aaaa0ef0025f13dac095c7d3d45aa237107', 'value': 14230.076, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030369f9a7d37b860000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:44:40.000Z'}}, {'blockNum': '0x9c883d', 'uniqueId': '0x8cc17190a513390ddd634b3618c52d9b292bd6c9b6e6e349a5b4dcdcf9153358:log:102', 'hash': '0x8cc17190a513390ddd634b3618c52d9b292bd6c9b6e6e349a5b4dcdcf9153358', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'value': 9359.1389098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01fb5c24d39eb5ae1000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:46:19.000Z'}}, {'blockNum': '0x9c8865', 'uniqueId': '0xb90280d9424b47b45b92ba383aa7acb4a11a6e016ae57d1db4f08999911a78f6:log:125', 'hash': '0xb90280d9424b47b45b92ba383aa7acb4a11a6e016ae57d1db4f08999911a78f6', 'from': '0x11197295953c6480b5d7ff245b6fae4d5b8eca15', 'to': '0xba4de7a610081cd1227714b1382af7df73349cb0', 'value': 481686.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6600489ae67267e88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T16:54:43.000Z'}}, {'blockNum': '0x9c887c', 'uniqueId': '0x20fccee727f48168a8aa5de1ba54f9c2e927e159ee866f4dd8167fc2ab631eb8:log:154', 'hash': '0x20fccee727f48168a8aa5de1ba54f9c2e927e159ee866f4dd8167fc2ab631eb8', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67818.567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e5c73aea855150d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:00:12.000Z'}}, {'blockNum': '0x9c887e', 'uniqueId': '0x8883b69ad428b885ff0f5dfa6b27d78633f00191a50d8a4a3c7e0fe999cacac3:log:102', 'hash': '0x8883b69ad428b885ff0f5dfa6b27d78633f00191a50d8a4a3c7e0fe999cacac3', 'from': '0xba4de7a610081cd1227714b1382af7df73349cb0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 481686.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x6600489ae67267e88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:00:43.000Z'}}, {'blockNum': '0x9c8899', 'uniqueId': '0x3e40bad08eb4640a5c82c0e9e09064180df97595d2a71924ac780a782bbfe888:log:11', 'hash': '0x3e40bad08eb4640a5c82c0e9e09064180df97595d2a71924ac780a782bbfe888', 'from': '0x0a7faa0b8fcd494bc288dd5f0eddf196534d4f40', 'to': '0x9229b25ee89606e39c13de9ca1be912f44942981', 'value': 6254.96636114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015315188d3987690800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:05:24.000Z'}}, {'blockNum': '0x9c889a', 'uniqueId': '0x39d0a069776fd1f7604703971c24a68e9059a8245df144864ba44b382d31a650:log:17', 'hash': '0x39d0a069776fd1f7604703971c24a68e9059a8245df144864ba44b382d31a650', 'from': '0x9229b25ee89606e39c13de9ca1be912f44942981', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 6254.96636114, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015315188d3987690800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:05:38.000Z'}}, {'blockNum': '0x9c88bc', 'uniqueId': '0x19dca3badebc528dec19f6b35311da9fa97404d4cf1b050be520a6ce33ba92a5:log:12', 'hash': '0x19dca3badebc528dec19f6b35311da9fa97404d4cf1b050be520a6ce33ba92a5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5ce46986746feb1ba14d669c3000afb7864d4808', 'value': 3678.5246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc769c8aa0a97e38000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:11:46.000Z'}}, {'blockNum': '0x9c88c2', 'uniqueId': '0xb7c5592fa590cf90be9c9fefb96d47095dc2df256ae7a2b40a68268e1f3bd020:log:151', 'hash': '0xb7c5592fa590cf90be9c9fefb96d47095dc2df256ae7a2b40a68268e1f3bd020', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xef8cc5c755f0fde796616cff09707ec61fcc277c', 'value': 6956.72628859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01791ff8a528348e8c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:14:26.000Z'}}, {'blockNum': '0x9c88c8', 'uniqueId': '0x466f01cac34cfae8d4c0e79712d7688c9e4de7019c681c4379b9d87c3370fc73:log:0', 'hash': '0x466f01cac34cfae8d4c0e79712d7688c9e4de7019c681c4379b9d87c3370fc73', 'from': '0xa4d27c22fd25b2885c31d7f3ae48d9ed62dbd775', 'to': '0x104199942df7babb1a596bb6218d64180f46026a', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:16:36.000Z'}}, {'blockNum': '0x9c88d4', 'uniqueId': '0x7d6ac2c08a86f771c1849cba14a4c55f08d0a4b5cda823456283c3a830bdc488:log:7', 'hash': '0x7d6ac2c08a86f771c1849cba14a4c55f08d0a4b5cda823456283c3a830bdc488', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'value': 54674.909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b93eec9176abfdc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:19:18.000Z'}}, {'blockNum': '0x9c88d7', 'uniqueId': '0x39da6b25b4860a7976e3d59d8a5f3063a0eab249067c26dd6ece6a7030f98c10:log:2', 'hash': '0x39da6b25b4860a7976e3d59d8a5f3063a0eab249067c26dd6ece6a7030f98c10', 'from': '0xa4d27c22fd25b2885c31d7f3ae48d9ed62dbd775', 'to': '0x104199942df7babb1a596bb6218d64180f46026a', 'value': 355563.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4b4b269f20e1adb98000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:19:56.000Z'}}, {'blockNum': '0x9c88fd', 'uniqueId': '0x20043edd0c0e6c1bf9b634e33f7d5a83236aff44310d81e0c5b93bfabc18c8f8:log:16', 'hash': '0x20043edd0c0e6c1bf9b634e33f7d5a83236aff44310d81e0c5b93bfabc18c8f8', 'from': '0xace7c7908d31c5a02f78e4d419d1de512f420c16', 'to': '0xb282348b0407ee762fadf2bc97e502606b37b4ea', 'value': 42658.94764517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x09088bd2d27da83ef400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:27:48.000Z'}}, {'blockNum': '0x9c88fe', 'uniqueId': '0x46a68ccaa82303812f30f728d7c4166a77e848e7f0cb2307172aff02fb49d69d:log:16', 'hash': '0x46a68ccaa82303812f30f728d7c4166a77e848e7f0cb2307172aff02fb49d69d', 'from': '0xb282348b0407ee762fadf2bc97e502606b37b4ea', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 42658.94764517, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x09088bd2d27da83ef400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:28:09.000Z'}}, {'blockNum': '0x9c8906', 'uniqueId': '0xbc3a62b7fd075b1a031359771672263561de75a9d8c5130361c97fcddf8e2748:log:169', 'hash': '0xbc3a62b7fd075b1a031359771672263561de75a9d8c5130361c97fcddf8e2748', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108631.36883235155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1700eb15ff5d531e8918', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:30:30.000Z'}}, {'blockNum': '0x9c8906', 'uniqueId': '0x3cd0013baccb64a5ed633e9912e8cc602c43dc73bfc6a5f1bdf287ba6adfc7b0:log:215', 'hash': '0x3cd0013baccb64a5ed633e9912e8cc602c43dc73bfc6a5f1bdf287ba6adfc7b0', 'from': '0x104199942df7babb1a596bb6218d64180f46026a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 405563.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x55e1a803118728f98000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:30:30.000Z'}}, {'blockNum': '0x9c891a', 'uniqueId': '0xeaa7c101655be681fb483f216908aee2e252d7f97f99fe9996a9d616ad089256:log:16', 'hash': '0xeaa7c101655be681fb483f216908aee2e252d7f97f99fe9996a9d616ad089256', 'from': '0x6517e7592d28927e7ba4f03ab54079b527d6739d', 'to': '0x0ecdbc4732fda07a357698c0fa61c4070283a161', 'value': 8680, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01d68b32bb6396a00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:34:05.000Z'}}, {'blockNum': '0x9c891e', 'uniqueId': '0xc9a79b217873d4b90e7f43b364255be9c22a70ac520c9f3630295b0b62b51d31:log:12', 'hash': '0xc9a79b217873d4b90e7f43b364255be9c22a70ac520c9f3630295b0b62b51d31', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3798.10275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xcde54397ea0843e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:34:45.000Z'}}, {'blockNum': '0x9c8927', 'uniqueId': '0x5859d1831a8e96806c20a07673c976a399c6233ac6692ab211983c09f4083beb:log:30', 'hash': '0x5859d1831a8e96806c20a07673c976a399c6233ac6692ab211983c09f4083beb', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xb2581d299300ca1ccb6b3276d44212927c0e92cc', 'value': 3798.10275, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xcde54397ea0843e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:37:21.000Z'}}, {'blockNum': '0x9c8950', 'uniqueId': '0x6fd1b60e8950d8aaa10ef41b1f0661ce401d0246bba68732c83f478661f6a79d:log:4', 'hash': '0x6fd1b60e8950d8aaa10ef41b1f0661ce401d0246bba68732c83f478661f6a79d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2676.84928794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x911cbf14d379092800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:45:34.000Z'}}, {'blockNum': '0x9c895a', 'uniqueId': '0x4d4bd57db617fd43c1e3c50397da29b60d866dd8134d097d52ad0ca00f69665e:log:12', 'hash': '0x4d4bd57db617fd43c1e3c50397da29b60d866dd8134d097d52ad0ca00f69665e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1233.26057572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x42daedb785d4551000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:46:36.000Z'}}, {'blockNum': '0x9c895c', 'uniqueId': '0x575d107f522289453dfc02a3c8899fcbb98916c780c886a5aec1dce7d09e140d:log:41', 'hash': '0x575d107f522289453dfc02a3c8899fcbb98916c780c886a5aec1dce7d09e140d', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'value': 2676.84928794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x911cbf14d379092800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:47:02.000Z'}}, {'blockNum': '0x9c895f', 'uniqueId': '0xa67a0f6b92ac93faaf6d62cb449a5ae0ec582c910c7bd83b3b458cad63631793:log:47', 'hash': '0xa67a0f6b92ac93faaf6d62cb449a5ae0ec582c910c7bd83b3b458cad63631793', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x803c2e0b620cb13a283e290ad873a53859e364b8', 'value': 1233.26057572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x42daedb785d4551000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T17:48:11.000Z'}}, {'blockNum': '0x9c89b0', 'uniqueId': '0x23457299370e46334b2067d0d8683411621b7554e6f182c1ea5cc4096bb3f07c:log:11', 'hash': '0x23457299370e46334b2067d0d8683411621b7554e6f182c1ea5cc4096bb3f07c', 'from': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'to': '0x8b30a005b52c7620e4255217a460b7f0271f8e09', 'value': 6492.04388256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015fef351add9c928000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:06:25.000Z'}}, {'blockNum': '0x9c89b6', 'uniqueId': '0x9f6f6a88699c87e707552d7e25fe84bd18d39caa83e89b9bb0af807da153ae8d:log:13', 'hash': '0x9f6f6a88699c87e707552d7e25fe84bd18d39caa83e89b9bb0af807da153ae8d', 'from': '0x8b30a005b52c7620e4255217a460b7f0271f8e09', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 6492.04388256, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x015fef351add9c928000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:07:51.000Z'}}, {'blockNum': '0x9c89bc', 'uniqueId': '0x728c926027dc81b3ab61c35ba8089e76197a1a93f4d212a5d520b1e329d83dba:log:73', 'hash': '0x728c926027dc81b3ab61c35ba8089e76197a1a93f4d212a5d520b1e329d83dba', 'from': '0xa85f11d4d6119848a0d2b2b8e270a6846383f39f', 'to': '0x1800d3561821aa3cf1099f6dae57cc8cb76c25af', 'value': 203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b0130e075bc4c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:08:59.000Z'}}, {'blockNum': '0x9c8a2b', 'uniqueId': '0xcec8b647305e8f39fdfd0526410f41f5deb933814a94f3c290a8a2644dcc4fed:log:0', 'hash': '0xcec8b647305e8f39fdfd0526410f41f5deb933814a94f3c290a8a2644dcc4fed', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3981.34929357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd7d4521868c8419400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:31:08.000Z'}}, {'blockNum': '0x9c8a2e', 'uniqueId': '0xca2db492fca7913ddaaddfb8b8e0c51918b1e0c4e79254a7c1491eebb35a6b9c:log:120', 'hash': '0xca2db492fca7913ddaaddfb8b8e0c51918b1e0c4e79254a7c1491eebb35a6b9c', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x73ab27780645cfe28944bcf57f7fbbe173a14aba', 'value': 3981.34929357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd7d4521868c8419400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T18:32:36.000Z'}}, {'blockNum': '0x9c8ac1', 'uniqueId': '0x2b020195467aa76c28d29f67086b80a4e14e16c21bd1aa5298a0e5c9cffefd8c:log:17', 'hash': '0x2b020195467aa76c28d29f67086b80a4e14e16c21bd1aa5298a0e5c9cffefd8c', 'from': '0x3800f01c9fe41853feba563ef535c7785cf30f7a', 'to': '0xcd43f8b479a74a5e439ce01d4d61dc93349ce247', 'value': 5571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x012e0127e793b52c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:05:24.000Z'}}, {'blockNum': '0x9c8ad0', 'uniqueId': '0xef6c451e32b8b4f0211f01a6d171cd289c7a0cd43ee96cf6530d9d357771280e:log:12', 'hash': '0xef6c451e32b8b4f0211f01a6d171cd289c7a0cd43ee96cf6530d9d357771280e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'value': 25795.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05766135fecd81f68000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:08:25.000Z'}}, {'blockNum': '0x9c8adb', 'uniqueId': '0xa1262592f30d86dce0b5e461151efaee229e4ad8350be964f5d94c26918974c9:log:7', 'hash': '0xa1262592f30d86dce0b5e461151efaee229e4ad8350be964f5d94c26918974c9', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0x7106e6c8a1da7dff55fa257c9bc8a9e8d83a39ba', 'value': 80, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04563918244f400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:10:26.000Z'}}, {'blockNum': '0x9c8af6', 'uniqueId': '0x44b821b0d997515417eacf1a59af43799b0a52d916de6bcdf51aa73922256e7e:log:6', 'hash': '0x44b821b0d997515417eacf1a59af43799b0a52d916de6bcdf51aa73922256e7e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 9164.04630335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01f0c8b0a7b2d8591c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:15:17.000Z'}}, {'blockNum': '0x9c8b11', 'uniqueId': '0x6843b6603c2f46bdecca71dc86c8bc9b01aa529e767dd9d5eccdb3b0117079fc:log:31', 'hash': '0x6843b6603c2f46bdecca71dc86c8bc9b01aa529e767dd9d5eccdb3b0117079fc', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'value': 64663.722, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0db16d69abeae3d10000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:19:53.000Z'}}, {'blockNum': '0x9c8b2d', 'uniqueId': '0xd8cf37ebdf975e9db9629e9a7f4cee96190f145489b7fa93b28a1317f9525d6f:log:31', 'hash': '0xd8cf37ebdf975e9db9629e9a7f4cee96190f145489b7fa93b28a1317f9525d6f', 'from': '0x02cf9a4202133cc76a916e428e182ce8cc548230', 'to': '0x31209f88b283c3f3eec80893f1cf68ec0ba2bdb1', 'value': 6772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x016f1c61086801500000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:26:37.000Z'}}, {'blockNum': '0x9c8b3f', 'uniqueId': '0x101bd6f10ef0ef2e0abc75fc7a9bcd5452866aaa27d88a16911c6a189bb81513:log:28', 'hash': '0x101bd6f10ef0ef2e0abc75fc7a9bcd5452866aaa27d88a16911c6a189bb81513', 'from': '0x034adc65afadda157e13130ec6609ead919f2d1f', 'to': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'value': 25795.553, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05766135fecd81f68000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:31:06.000Z'}}, {'blockNum': '0x9c8b74', 'uniqueId': '0x69a776996363ad6e10bcb49dd60c7352a9ee2ac478163c0d0449d3d9bedd9965:log:23', 'hash': '0x69a776996363ad6e10bcb49dd60c7352a9ee2ac478163c0d0449d3d9bedd9965', 'from': '0x78353563d4af772b5527d2ee6aedd5c3912ef0b9', 'to': '0xa3614758859fd2986f1e1ad6106d30334ec022f9', 'value': 15891, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x035d73ed11dfa46c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:42:57.000Z'}}, {'blockNum': '0x9c8b79', 'uniqueId': '0x2b1a92f8cc0f4d9c2367d66c0af62f50a98cd382288196073d36e39ec6e07e4d:log:6', 'hash': '0x2b1a92f8cc0f4d9c2367d66c0af62f50a98cd382288196073d36e39ec6e07e4d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:43:42.000Z'}}, {'blockNum': '0x9c8ba8', 'uniqueId': '0x76342c77b5f0c6ec39fe902179438c5992f979ed527d8365998570efebbb8fc1:log:17', 'hash': '0x76342c77b5f0c6ec39fe902179438c5992f979ed527d8365998570efebbb8fc1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3690.18375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc80b9649318ce26000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:55:22.000Z'}}, {'blockNum': '0x9c8bbb', 'uniqueId': '0x89d1c67174b8d474ddefb8b85f41ac4eacad0efded6ad7dd0865203f5698f987:log:64', 'hash': '0x89d1c67174b8d474ddefb8b85f41ac4eacad0efded6ad7dd0865203f5698f987', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd221e5ed32b5102324024212e1dee75d9287713f', 'value': 3690.18375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xc80b9649318ce26000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T19:59:57.000Z'}}, {'blockNum': '0x9c8bd1', 'uniqueId': '0xff04a3bc3675ec1bf48726240c1ef500bcf08f2f06325cb2e2a000f3ad23861a:log:59', 'hash': '0xff04a3bc3675ec1bf48726240c1ef500bcf08f2f06325cb2e2a000f3ad23861a', 'from': '0x7099437a7a29a7aa471344d03662eff9017caa7c', 'to': '0x6dd78d7e8dd6a0e73e4324788e1e145c4d4f579b', 'value': 2624.285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x8e4345377131fc8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:04:24.000Z'}}, {'blockNum': '0x9c8bf9', 'uniqueId': '0xbae967b773ef887b3a37233bc8a770473d48876c8a53c7fe7a3cfc29dee17b4d:log:29', 'hash': '0xbae967b773ef887b3a37233bc8a770473d48876c8a53c7fe7a3cfc29dee17b4d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3093.48376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa7b2b611bd97bf0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:13:01.000Z'}}, {'blockNum': '0x9c8bf9', 'uniqueId': '0xfa2a00d6a2ae116e83bc46f2e11587ca3ea02bed55ae79a849783946b944c246:log:32', 'hash': '0xfa2a00d6a2ae116e83bc46f2e11587ca3ea02bed55ae79a849783946b944c246', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7844ecc25735e201401d24dbffddcf04d1f6effe', 'value': 9928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021a32ad67339e200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:13:01.000Z'}}, {'blockNum': '0x9c8c06', 'uniqueId': '0x668fbc4a3e915246a43fc2fb9712fc64b1e4d1db872d404b3af30238f898129b:log:6', 'hash': '0x668fbc4a3e915246a43fc2fb9712fc64b1e4d1db872d404b3af30238f898129b', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 3093.48376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa7b2b611bd97bf0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:15:11.000Z'}}, {'blockNum': '0x9c8c19', 'uniqueId': '0x00b4d4ce9ba4c7a6b123a3dafce83c8700f00dd99de8eb08ebdd42173683cd01:log:2', 'hash': '0x00b4d4ce9ba4c7a6b123a3dafce83c8700f00dd99de8eb08ebdd42173683cd01', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 3029.90053018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa440510f19029f2800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:17:35.000Z'}}, {'blockNum': '0x9c8c21', 'uniqueId': '0x8054217d0c3662fabea8a7f4f52fbbf4f594bb7fb21ba358aab4e1ad80832fff:log:99', 'hash': '0x8054217d0c3662fabea8a7f4f52fbbf4f594bb7fb21ba358aab4e1ad80832fff', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 3029.90053018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa440510f19029f2800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:19:48.000Z'}}, {'blockNum': '0x9c8c25', 'uniqueId': '0x0bceefb67c4709bce16c192c4eaeb64ab8aa7f21708debdf82429af8db27f200:log:4', 'hash': '0x0bceefb67c4709bce16c192c4eaeb64ab8aa7f21708debdf82429af8db27f200', 'from': '0x5908fb11e93bbaf4d70861bc7910304f6b79e16f', 'to': '0xb4321a4f869a095a401d4926c9d2786431c11aaa', 'value': 1358.049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x499eb7423f7e768000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:20:20.000Z'}}, {'blockNum': '0x9c8c33', 'uniqueId': '0x3a5241cce9976f6553a785408556135b5b36ce678120fb720e996febd2df209a:log:4', 'hash': '0x3a5241cce9976f6553a785408556135b5b36ce678120fb720e996febd2df209a', 'from': '0xd7f7fd77aa3eddaf50dd76d93bec345069ac5d3b', 'to': '0x069b0fa80ed82bbd89dc0edf46bbcf502ae66034', 'value': 1265.19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x449609d1bc70770000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:22:57.000Z'}}, {'blockNum': '0x9c8c40', 'uniqueId': '0x9f1d40fd04899762bc09e4a2f9ad3a67c4d62c7989f61390b990a195f70f4fd4:log:90', 'hash': '0x9f1d40fd04899762bc09e4a2f9ad3a67c4d62c7989f61390b990a195f70f4fd4', 'from': '0x069b0fa80ed82bbd89dc0edf46bbcf502ae66034', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1265.19, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x449609d1bc70770000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:25:27.000Z'}}, {'blockNum': '0x9c8c56', 'uniqueId': '0x4d3ba13d4bd2a39a93feb65ca050eeeb672fb38b9b293a6cde6c89e793ac21d7:log:8', 'hash': '0x4d3ba13d4bd2a39a93feb65ca050eeeb672fb38b9b293a6cde6c89e793ac21d7', 'from': '0xd7f7fd77aa3eddaf50dd76d93bec345069ac5d3b', 'to': '0x4c33589dea197d19db9d4dcd2d2a87ef8551e76d', 'value': 1059.0089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3968b367ae2d2c4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:29:27.000Z'}}, {'blockNum': '0x9c8c58', 'uniqueId': '0xa1cf408a80fcc77ebb95507343e528b79a3fbf341e77ffc8ed8c7a76fa2421ed:log:8', 'hash': '0xa1cf408a80fcc77ebb95507343e528b79a3fbf341e77ffc8ed8c7a76fa2421ed', 'from': '0x4c33589dea197d19db9d4dcd2d2a87ef8551e76d', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 1059.0089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3968b367ae2d2c4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:29:50.000Z'}}, {'blockNum': '0x9c8c63', 'uniqueId': '0xfb177669075dc93789f51b9b8a205b5ab771c0508ffe908349c0d61cb9f8a645:log:0', 'hash': '0xfb177669075dc93789f51b9b8a205b5ab771c0508ffe908349c0d61cb9f8a645', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2189.441024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x76b099132c1b800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:32:03.000Z'}}, {'blockNum': '0x9c8c63', 'uniqueId': '0x20ed19e83dcbc301f143aa0fbdd7d0320a3e738a4dc7da48b69c98aa31e1a5dd:log:1', 'hash': '0x20ed19e83dcbc301f143aa0fbdd7d0320a3e738a4dc7da48b69c98aa31e1a5dd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd850865e614c2d635c669a3087287b781f4a98cf', 'value': 9112.9407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01ee037514388b95c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:32:03.000Z'}}, {'blockNum': '0x9c8c64', 'uniqueId': '0x12187794d995f82161e4e44410eb6a349f3dffe1965ed575468e2d1692c70972:log:48', 'hash': '0x12187794d995f82161e4e44410eb6a349f3dffe1965ed575468e2d1692c70972', 'from': '0x48659871d1c7134b74d82733d325c7e294ba8fe8', 'to': '0x7cfce8016324b79d238a2650811b765e2872c326', 'value': 5639.259, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0131b470966ce08f8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:32:31.000Z'}}, {'blockNum': '0x9c8c6f', 'uniqueId': '0xa2d9c98c7d97fb7658a33ae523ad4c191a9ec036324788391264af187f655a74:log:38', 'hash': '0xa2d9c98c7d97fb7658a33ae523ad4c191a9ec036324788391264af187f655a74', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd850865e614c2d635c669a3087287b781f4a98cf', 'value': 2189.441024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x76b099132c1b800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:33:58.000Z'}}, {'blockNum': '0x9c8c72', 'uniqueId': '0x100907b89e160e90f61cc3b67afaa751227708b85b076d26607a7b00e8c7b9b7:log:3', 'hash': '0x100907b89e160e90f61cc3b67afaa751227708b85b076d26607a7b00e8c7b9b7', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2409.38835904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x829cfafb0f6c870000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:34:27.000Z'}}, {'blockNum': '0x9c8c9b', 'uniqueId': '0x0508fb1542eea864ad70008d6cef111d31b1ab705208a4221b1d9862051dde85:log:0', 'hash': '0x0508fb1542eea864ad70008d6cef111d31b1ab705208a4221b1d9862051dde85', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0adff4ee43c9ede9a92a6ca7ba5da262d4bcd535', 'value': 146184.627, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1ef4af3bf926d94b8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:43:10.000Z'}}, {'blockNum': '0x9c8c9c', 'uniqueId': '0x7acbcf8f664a94289ba4437087347fd9d7989db9e080c5c9497b0a5958204b48:log:56', 'hash': '0x7acbcf8f664a94289ba4437087347fd9d7989db9e080c5c9497b0a5958204b48', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd850865e614c2d635c669a3087287b781f4a98cf', 'value': 2409.38835904, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x829cfafb0f6c870000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:43:34.000Z'}}, {'blockNum': '0x9c8cb8', 'uniqueId': '0xc4098ea51fb70e93234276cce18a45acee6796ab5acc057f23e29d18feee67bc:log:148', 'hash': '0xc4098ea51fb70e93234276cce18a45acee6796ab5acc057f23e29d18feee67bc', 'from': '0x1dd640eebfb39d4ff4cb1c57c6227aca35c06501', 'to': '0xee852f23c3edcf51a500a13d369c07e320ba5c8d', 'value': 2700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x925e06eec972b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T20:51:48.000Z'}}, {'blockNum': '0x9c8ce8', 'uniqueId': '0xe0339413905e11154a1902e40773ac5e289ce9cf6e084ff40e2a37664100927b:log:1', 'hash': '0xe0339413905e11154a1902e40773ac5e289ce9cf6e084ff40e2a37664100927b', 'from': '0x1cf60cdcfb5b4c632506a4d7629f93d530d41761', 'to': '0x0f1b1f7096bd59c8101abbeeba67d90892e9b8c8', 'value': 3063.0963, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa60d001fdec95ac000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:02:32.000Z'}}, {'blockNum': '0x9c8d01', 'uniqueId': '0x1396937d65623cc9cef3b9052738cd8ec30053d9108167f8fa3a4c04767d9ab1:log:2', 'hash': '0x1396937d65623cc9cef3b9052738cd8ec30053d9108167f8fa3a4c04767d9ab1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 9825.57875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0214a54c06fa48a5e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:08:38.000Z'}}, {'blockNum': '0x9c8d09', 'uniqueId': '0x3b2716c80c628a94ad7b499b2ac457856c3422e9559cd1a68b92e3bbbad2e8bf:log:83', 'hash': '0x3b2716c80c628a94ad7b499b2ac457856c3422e9559cd1a68b92e3bbbad2e8bf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xfc3438e2b36d0eff3b55151af2f13e01e5b6e375', 'value': 9825.57875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0214a54c06fa48a5e000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:10:47.000Z'}}, {'blockNum': '0x9c8d15', 'uniqueId': '0x7a49250075d563b4d385ef26ce2a5890ec97d43719253d947f7dc9805f008398:log:7', 'hash': '0x7a49250075d563b4d385ef26ce2a5890ec97d43719253d947f7dc9805f008398', 'from': '0xb2db2177e83584448c9ffa2df0ca06e51eeecf29', 'to': '0x3679c8f9da6d1cd172772dfa7d34e3e3b6743753', 'value': 19000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0405fdf7e5af85e00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:13:27.000Z'}}, {'blockNum': '0x9c8d15', 'uniqueId': '0x42bc12b6382896f009dff6986095a39950035557c817b7e072b7fac645e74584:log:150', 'hash': '0x42bc12b6382896f009dff6986095a39950035557c817b7e072b7fac645e74584', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'value': 64690.321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0db2de8c4d7d706e8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:13:27.000Z'}}, {'blockNum': '0x9c8d18', 'uniqueId': '0xf3c09ca364a601b26cac76e3b5a717c620cecd9e9d1160dc6fafd5e684cfbf1a:log:6', 'hash': '0xf3c09ca364a601b26cac76e3b5a717c620cecd9e9d1160dc6fafd5e684cfbf1a', 'from': '0x3679c8f9da6d1cd172772dfa7d34e3e3b6743753', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 19000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0405fdf7e5af85e00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:13:45.000Z'}}, {'blockNum': '0x9c8d1f', 'uniqueId': '0x639bca3b68108ee8b5f3b7eb4e5d124e932f310b74f17ba43b5937b8b4420765:log:144', 'hash': '0x639bca3b68108ee8b5f3b7eb4e5d124e932f310b74f17ba43b5937b8b4420765', 'from': '0xf90870e0779c71e0055690b7f82e41e930b46dff', 'to': '0x47af91ac16f0467132c33bd8db20006559eea4fa', 'value': 17301, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03a9e39b5b5f99340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:15:28.000Z'}}, {'blockNum': '0x9c8d30', 'uniqueId': '0xecb71032db05cead46a713ebc9459ba1c1448e0c3dc4366f7d1321c530f8d902:log:1', 'hash': '0xecb71032db05cead46a713ebc9459ba1c1448e0c3dc4366f7d1321c530f8d902', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 78958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10b8525ea6963cf80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:20:25.000Z'}}, {'blockNum': '0x9c8d38', 'uniqueId': '0xe5fb3b6e9e3a8e8d3ad79b78516078a4e901412a70f72a95a760d2301b4591ea:log:110', 'hash': '0xe5fb3b6e9e3a8e8d3ad79b78516078a4e901412a70f72a95a760d2301b4591ea', 'from': '0xa062450430df1fa8135cc147b76629ffa886e8b5', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 64690.321, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0db2de8c4d7d706e8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:21:49.000Z'}}, {'blockNum': '0x9c8d40', 'uniqueId': '0x3f0b2bf56780cd9fbf86d78326619fb712ebde68813572d9e0484a4cf14ad8f7:log:26', 'hash': '0x3f0b2bf56780cd9fbf86d78326619fb712ebde68813572d9e0484a4cf14ad8f7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 385558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x51a5241c922aaa980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:24:11.000Z'}}, {'blockNum': '0x9c8d55', 'uniqueId': '0xa33d76917644b1fedb6996ee4c4b52c3c556f8cf9773cb829e4553006ba4c7b1:log:85', 'hash': '0xa33d76917644b1fedb6996ee4c4b52c3c556f8cf9773cb829e4553006ba4c7b1', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 78958, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10b8525ea6963cf80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:29:01.000Z'}}, {'blockNum': '0x9c8d96', 'uniqueId': '0xe5310d41ed72decc9dfdac051fe963873e102a39162f961c1f1dc0eb526c9142:log:15', 'hash': '0xe5310d41ed72decc9dfdac051fe963873e102a39162f961c1f1dc0eb526c9142', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4282cffc9d892decdd328a84368eba03bfcf2ecb', 'value': 7052.3281, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017e4eb6821d457e4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:42:02.000Z'}}, {'blockNum': '0x9c8dc3', 'uniqueId': '0x9e9c4638367fa6cdc09dcbeae09af243e5d3daef87e51009b5ae3c379aef16bc:log:6', 'hash': '0x9e9c4638367fa6cdc09dcbeae09af243e5d3daef87e51009b5ae3c379aef16bc', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1529.24091949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52e67b2202b12f1400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:51:47.000Z'}}, {'blockNum': '0x9c8dc3', 'uniqueId': '0x75d2ac890e798264dfebc9cc956379bc5e9667078595976927d3740c7223b1fa:log:32', 'hash': '0x75d2ac890e798264dfebc9cc956379bc5e9667078595976927d3740c7223b1fa', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x209f11edb294862f6da0aed1c4eb768955df45cf', 'value': 334157.2132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x46c2b2e6349b57310000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:51:47.000Z'}}, {'blockNum': '0x9c8dce', 'uniqueId': '0x41b2554cd9838b6a43c40d775d6a80c7c42afe3dd027e2f97c6c414d60b9240a:log:170', 'hash': '0x41b2554cd9838b6a43c40d775d6a80c7c42afe3dd027e2f97c6c414d60b9240a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x1b04a630284c06364f3c90e3eee4f79fe38f5240', 'value': 1529.24091949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52e67b2202b12f1400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T21:54:26.000Z'}}, {'blockNum': '0x9c8e1d', 'uniqueId': '0x54d477605ae9b415c8be42fe214f9eea67e2617baf99227af0914b7d9d345181:log:9', 'hash': '0x54d477605ae9b415c8be42fe214f9eea67e2617baf99227af0914b7d9d345181', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xdf3bd504cb681e635d983caadc9a53e365a71112', 'value': 75885.292, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1011bffae87dd7fe0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:11:06.000Z'}}, {'blockNum': '0x9c8e2c', 'uniqueId': '0x6470e3ed9bc785a75f69e40a162633a3a6dd826f3e38900e1a4c27fea6894eb4:log:2', 'hash': '0x6470e3ed9bc785a75f69e40a162633a3a6dd826f3e38900e1a4c27fea6894eb4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x72962fc4d5d695f6d49bd885e0e635b0524ff554', 'value': 25599.486, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x056bc03c151c39730000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:15:08.000Z'}}, {'blockNum': '0x9c8e42', 'uniqueId': '0xf5be0fa76eb7550d988a2008d065fc3dc66e9880b604ea76ba753881fa51d793:log:5', 'hash': '0xf5be0fa76eb7550d988a2008d065fc3dc66e9880b604ea76ba753881fa51d793', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xf7b222eef7f3e9b157a164cd4582579f8d04c0a6', 'value': 1465.471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x4f717ede1a14798000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:19:28.000Z'}}, {'blockNum': '0x9c8e55', 'uniqueId': '0xf66c808fc034b2ec90212164172a8e2a2c5b6b6e72e6039fbf7c61bfd87df032:log:38', 'hash': '0xf66c808fc034b2ec90212164172a8e2a2c5b6b6e72e6039fbf7c61bfd87df032', 'from': '0x531fc93910152101af92588a5adf469faf64caf1', 'to': '0x546dd903751e499922cce5d0bef4fecd011a9e1e', 'value': 1616.1124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x579c10a14500010000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:24:15.000Z'}}, {'blockNum': '0x9c8e5f', 'uniqueId': '0x246c2dc719c3ff5b2344d412246d47e130420a29051487244a80ca225da5d10a:log:3', 'hash': '0x246c2dc719c3ff5b2344d412246d47e130420a29051487244a80ca225da5d10a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'value': 89179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12e2673d2968708c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:25:55.000Z'}}, {'blockNum': '0x9c8e62', 'uniqueId': '0x8d96bfa67534b67ae13392355e430fe428c763a9898150b99b337b6c8c7817cc:log:23', 'hash': '0x8d96bfa67534b67ae13392355e430fe428c763a9898150b99b337b6c8c7817cc', 'from': '0x546dd903751e499922cce5d0bef4fecd011a9e1e', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1616.1124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x579c10a14500010000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:27:02.000Z'}}, {'blockNum': '0x9c8e7d', 'uniqueId': '0x4408fc0e2b8ca792ff275b07aff384a9b0c5e81812391869a385eeec1f1644ae:log:10', 'hash': '0x4408fc0e2b8ca792ff275b07aff384a9b0c5e81812391869a385eeec1f1644ae', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xac91420c1ca0013582768adc8fb1bd319c248fcc', 'value': 17465.018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b2c7d0595e6b390000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:31:19.000Z'}}, {'blockNum': '0x9c8e83', 'uniqueId': '0x2cb63288c4d8570a3eadfaca06db05326f14d2ec87316e0d4479efdfbb1a4b30:log:114', 'hash': '0x2cb63288c4d8570a3eadfaca06db05326f14d2ec87316e0d4479efdfbb1a4b30', 'from': '0x0ce2e783a403855d4f39bb4ac89783307d339958', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 89179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12e2673d2968708c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T22:33:31.000Z'}}, {'blockNum': '0x9c8f08', 'uniqueId': '0x9dcb538022ec4aeaeb378af118e2a8cdf8785c211c7fb32cdaa01b7ba28f5d6c:log:35', 'hash': '0x9dcb538022ec4aeaeb378af118e2a8cdf8785c211c7fb32cdaa01b7ba28f5d6c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x33fb6127fc779fed3521633539693975889b962d', 'value': 3191.1159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xacfda11bcb18f3c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:07:17.000Z'}}, {'blockNum': '0x9c8f14', 'uniqueId': '0x08ec19c12f5f615c998099260f1171819b46e9b0ccfc7bbfb1e6e54a85379a5f:log:2', 'hash': '0x08ec19c12f5f615c998099260f1171819b46e9b0ccfc7bbfb1e6e54a85379a5f', 'from': '0xe726cfe2e0316f79a88da388000ba24abdff4095', 'to': '0xb776d762b8369053c52121c5cfea38fb19b9666f', 'value': 218956.31340918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2e5da541b561c8ef1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:10:54.000Z'}}, {'blockNum': '0x9c8f17', 'uniqueId': '0x20043b496b28578f0d512b2e87fa7a11c454aa9eb51826d7d6389c7655c66159:log:3', 'hash': '0x20043b496b28578f0d512b2e87fa7a11c454aa9eb51826d7d6389c7655c66159', 'from': '0xb776d762b8369053c52121c5cfea38fb19b9666f', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 218956.31340918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2e5da541b561c8ef1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:11:08.000Z'}}, {'blockNum': '0x9c8f2f', 'uniqueId': '0x438c3799acd12895b329860796259b420052e92ff4af7bae927d66df21135e89:log:10', 'hash': '0x438c3799acd12895b329860796259b420052e92ff4af7bae927d66df21135e89', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 16420.3637919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x037a26530deac5ba1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:16:00.000Z'}}, {'blockNum': '0x9c8f40', 'uniqueId': '0x992a5089a2adf23c1143baaa0bf6db975f065c20462a1240e14f44b69171617b:log:25', 'hash': '0x992a5089a2adf23c1143baaa0bf6db975f065c20462a1240e14f44b69171617b', 'from': '0x37834333483c803fd8e91725cd589860dd264997', 'to': '0xef02df6daf5c0947c7f306bf1310c5632d763d08', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:20:26.000Z'}}, {'blockNum': '0x9c8f44', 'uniqueId': '0xe64e8a2799fcdb3d22d071e34743f583aa6cf26bb7bc37b4da3710cccb05020e:log:90', 'hash': '0xe64e8a2799fcdb3d22d071e34743f583aa6cf26bb7bc37b4da3710cccb05020e', 'from': '0xef02df6daf5c0947c7f306bf1310c5632d763d08', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xa2a15d09519be00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:21:05.000Z'}}, {'blockNum': '0x9c8f6f', 'uniqueId': '0x6086781335a6292ffd360fa9222b2a9720dd5b703fb9f167565f4aeaa81c7656:log:121', 'hash': '0x6086781335a6292ffd360fa9222b2a9720dd5b703fb9f167565f4aeaa81c7656', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 245507.36619174, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x33fcfb221d9d188dd800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:29:14.000Z'}}, {'blockNum': '0x9c8f77', 'uniqueId': '0x2625bfa843ee7c5f2fa5b4b5c4b3575e336f720a637add8ed409db721aba2a5c:log:32', 'hash': '0x2625bfa843ee7c5f2fa5b4b5c4b3575e336f720a637add8ed409db721aba2a5c', 'from': '0xa20bd670bff99f29a813965007217ff2e9f2cec2', 'to': '0xa9a78f358a4bbf97db23283e26de31e55a0e09dd', 'value': 990.998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x35b8dc2677b28f0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:31:43.000Z'}}, {'blockNum': '0x9c8f7b', 'uniqueId': '0x80f6ab34bff3698a52aa2a1e492f2a780ff25cfd6f7d137ebd0ee8838c90af2a:log:13', 'hash': '0x80f6ab34bff3698a52aa2a1e492f2a780ff25cfd6f7d137ebd0ee8838c90af2a', 'from': '0x43a6639dc71591f2ebcaa640ddbe4a74edd16202', 'to': '0xbd67aa90de68d34dd4b687fb90d335cdec8e07bd', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:32:36.000Z'}}, {'blockNum': '0x9c8f7f', 'uniqueId': '0x62f4ce3b86bcca2ac8c86fc816d09fe4e5ba1effcabc9cc84cbc35e04832d5ee:log:30', 'hash': '0x62f4ce3b86bcca2ac8c86fc816d09fe4e5ba1effcabc9cc84cbc35e04832d5ee', 'from': '0xbd67aa90de68d34dd4b687fb90d335cdec8e07bd', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:33:22.000Z'}}, {'blockNum': '0x9c8f9c', 'uniqueId': '0x26e0d9966c25f48ff2120bb94b76b350231091fbbc9bebd27169d3daff9168b5:log:51', 'hash': '0x26e0d9966c25f48ff2120bb94b76b350231091fbbc9bebd27169d3daff9168b5', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4caaa1a9f79b26ea8f1425151111669836ab2262', 'value': 16420.3637919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x037a26530deac5ba1800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:41:22.000Z'}}, {'blockNum': '0x9c8fd9', 'uniqueId': '0xdf271130060821d81cd6f13e591014d8e9466157aaefd3ad1827b70233caae16:log:0', 'hash': '0xdf271130060821d81cd6f13e591014d8e9466157aaefd3ad1827b70233caae16', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5464.77713475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01283f047a6ccabcac00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:53:37.000Z'}}, {'blockNum': '0x9c8fe1', 'uniqueId': '0x575fb85bda3d9be9df695159d3fc9a33a8ab7ecb6db82481a834a760a51a6c04:log:123', 'hash': '0x575fb85bda3d9be9df695159d3fc9a33a8ab7ecb6db82481a834a760a51a6c04', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xc6eaa24a7e404284b1d063e4474d13119890cb83', 'value': 5464.77713475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01283f047a6ccabcac00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-13T23:55:03.000Z'}}, {'blockNum': '0x9c8ffe', 'uniqueId': '0xfc4660addec8490b08ddaceb436caa1576bf12a6095fa9f8840a7d308533d374:log:5', 'hash': '0xfc4660addec8490b08ddaceb436caa1576bf12a6095fa9f8840a7d308533d374', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xee35ba740c5ae393523186e6a4d7d0dcaa3ac0c0', 'value': 2657.278, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x900d23e62344730000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T00:00:14.000Z'}}, {'blockNum': '0x9c90ad', 'uniqueId': '0x6e73c2e733ae64cad38d3369bef5baf08ecac9b9c4889e8dd449e5ba26cc244c:log:59', 'hash': '0x6e73c2e733ae64cad38d3369bef5baf08ecac9b9c4889e8dd449e5ba26cc244c', 'from': '0x2d55c64b69e0c056b55e80398cde1fa47ca2cbbb', 'to': '0x8352eef02ba4a1d847d0d7654b5c387025c1d133', 'value': 1128.775, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3d30e661fe658d8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T00:39:34.000Z'}}, {'blockNum': '0x9c910a', 'uniqueId': '0xd3fe76de1e8c0c59f2ebf2fc1c6b3e122de75a643aacb2de035f1b1ee83f1103:log:9', 'hash': '0xd3fe76de1e8c0c59f2ebf2fc1c6b3e122de75a643aacb2de035f1b1ee83f1103', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 8328.9966177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c3840c36e1fe7de800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T00:59:05.000Z'}}, {'blockNum': '0x9c9110', 'uniqueId': '0xa65cba450fe16775bbcc1136df0b5b70566f64dda4b367e60a6ae6d132e01b86:log:191', 'hash': '0xa65cba450fe16775bbcc1136df0b5b70566f64dda4b367e60a6ae6d132e01b86', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x0aa03e6c410e519f6b394ec9f600c2694ffdd692', 'value': 8328.9966177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c3840c36e1fe7de800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:01:35.000Z'}}, {'blockNum': '0x9c9114', 'uniqueId': '0xa2ba55a620194ab51c8649ca6c0c35159e893bb881ef558a829a3173e0555ffd:log:2', 'hash': '0xa2ba55a620194ab51c8649ca6c0c35159e893bb881ef558a829a3173e0555ffd', 'from': '0x0aa03e6c410e519f6b394ec9f600c2694ffdd692', 'to': '0xd6679341b036839ff82a5de124b7189fda814d3b', 'value': 8328.9966177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01c3840c36e1fe7de800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:02:34.000Z'}}, {'blockNum': '0x9c9151', 'uniqueId': '0x70f9936d23cf0a05b99f2b2d8d510755fac3e77dc6d17a383b2365f3017b21d8:log:113', 'hash': '0x70f9936d23cf0a05b99f2b2d8d510755fac3e77dc6d17a383b2365f3017b21d8', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2085a3e6af52837ab36b76c5f627769c4105e8c5', 'value': 15773.1524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x035710764a0e94190000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:15:36.000Z'}}, {'blockNum': '0x9c9152', 'uniqueId': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8:log:49', 'hash': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8', 'from': '0x82db9fc4956fa40efe1e35d881004612b5cb2cc2', 'to': '0x16d4f26c15f3658ec65b1126ff27dd3df2a2996b', 'value': 342.29860709269826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x128e58f1933748cad4', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:16:13.000Z'}}, {'blockNum': '0x9c9152', 'uniqueId': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8:log:54', 'hash': '0x5ff280deb0225cbe747ab7307bebef0a97b9b4651baef06cea87e98fcdba77f8', 'from': '0x16d4f26c15f3658ec65b1126ff27dd3df2a2996b', 'to': '0x0a05e2e9d6333387d4f634b08fff5210292f5561', 'value': 342.29860709269826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x128e58f1933748cad4', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:16:13.000Z'}}, {'blockNum': '0x9c917b', 'uniqueId': '0x523a57b4279912783f30f25f3f9c3c6b50e41c08de3757659694a59c02198965:log:1', 'hash': '0x523a57b4279912783f30f25f3f9c3c6b50e41c08de3757659694a59c02198965', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5522.767047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x012b63ca085f640f7000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:23:55.000Z'}}, {'blockNum': '0x9c9184', 'uniqueId': '0x5b6186bbf48fff41e9b5530ac82414dd04396fe503df0dcacf5174b714251026:log:87', 'hash': '0x5b6186bbf48fff41e9b5530ac82414dd04396fe503df0dcacf5174b714251026', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 5522.767047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x012b63ca085f640f7000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:25:46.000Z'}}, {'blockNum': '0x9c9190', 'uniqueId': '0x16a04e364f9d90618be2b01417682e379e6bce819583e1260c59f030e12bb98e:log:3', 'hash': '0x16a04e364f9d90618be2b01417682e379e6bce819583e1260c59f030e12bb98e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2205.69404781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7792276a371c841400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:28:06.000Z'}}, {'blockNum': '0x9c919b', 'uniqueId': '0x72da542e9a4139e8ed4b6b830bdd2be7f5b8ad9b3f39ddc76146262d2b4c6789:log:38', 'hash': '0x72da542e9a4139e8ed4b6b830bdd2be7f5b8ad9b3f39ddc76146262d2b4c6789', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x4bcc24d741f139f524fa880d038341ad333c7e81', 'value': 2205.69404781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7792276a371c841400', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:30:20.000Z'}}, {'blockNum': '0x9c91ec', 'uniqueId': '0x1884d5e35bb8cf77bfea142c9e5146a3e7131d5dfc9f49308df4c2b66cd2a0ad:log:1', 'hash': '0x1884d5e35bb8cf77bfea142c9e5146a3e7131d5dfc9f49308df4c2b66cd2a0ad', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'value': 49753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a891d93a94ef9c40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:48:18.000Z'}}, {'blockNum': '0x9c920f', 'uniqueId': '0x7b0baf7c2d4e621cab385d1878912a75b5d1f5ab3ff289b635df9bad9eceafac:log:99', 'hash': '0x7b0baf7c2d4e621cab385d1878912a75b5d1f5ab3ff289b635df9bad9eceafac', 'from': '0x6ef285c5f6e1c272206aaa8b80cf65da97f50953', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 49753, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0a891d93a94ef9c40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:56:02.000Z'}}, {'blockNum': '0x9c921f', 'uniqueId': '0x51f1d874c8974d59fe0c0b98966fee7081b25f4f288b41700b2982fc4f92a03f:log:1', 'hash': '0x51f1d874c8974d59fe0c0b98966fee7081b25f4f288b41700b2982fc4f92a03f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 413602, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x579568cafaafc9480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-06-14T01:59:13.000Z'}}]}}
Number of returned transfers:  186
Answer is complete
 
symbol             GXS
group              CPI
date        2020-06-15
hour             16:00
exchange       binance
Name: 1078, dtype: object
HERE
 Symbol: GXS, Contract: 
Datetime timestamps:  2020-06-15 16:00:00 2020-06-15 04:00:00 2020-06-16 04:00:00
Unix timestamps:  1592186400.0 1592272800.0
Hex Block Numbers:  0x9cab7f 0x9cc4e9
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             EVX
group              CPI
date        2020-06-24
hour             16:00
exchange       binance
Name: 1079, dtype: object
HERE
 Symbol: EVX, Contract: 0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8
Datetime timestamps:  2020-06-24 16:00:00 2020-06-24 04:00:00 2020-06-25 04:00:00
Unix timestamps:  1592964000.0 1593050400.0
Hex Block Numbers:  0x9d8e95 0x9da7e6
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9d8e9b', 'uniqueId': '0x1c90f5d71e4a45af2371355fc64705aed0382aa449e87c502d7b691a166c7270:log:115', 'hash': '0x1c90f5d71e4a45af2371355fc64705aed0382aa449e87c502d7b691a166c7270', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20771.4124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c61774c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:01:33.000Z'}}, {'blockNum': '0x9d8e9b', 'uniqueId': '0x140595eae1b2c7cc2c88817f2ba1d5283b70b89f4a77cfb29ac5a9ac445911b7:log:179', 'hash': '0x140595eae1b2c7cc2c88817f2ba1d5283b70b89f4a77cfb29ac5a9ac445911b7', 'from': '0x382d8d31d4d911e76dae030bc1bf807d7e806889', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 39993.6732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x17d68cdc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:01:33.000Z'}}, {'blockNum': '0x9d8f2a', 'uniqueId': '0x8d139e5a017860c38f7eaf76f594b5c0d3236fcd56835eb27577c9c44e98e0ca:log:154', 'hash': '0x8d139e5a017860c38f7eaf76f594b5c0d3236fcd56835eb27577c9c44e98e0ca', 'from': '0xe6c4ccf63e9b28cc736476a8b81dbcd86c6040e9', 'to': '0x77168aa02f8947265c5fb8d9f1c8b06f75240915', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:32:00.000Z'}}, {'blockNum': '0x9d8f90', 'uniqueId': '0x5df0b096b2199b5ddcc976be574399180e8623650718a902f7a275c1ac54af94:log:31', 'hash': '0x5df0b096b2199b5ddcc976be574399180e8623650718a902f7a275c1ac54af94', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x382d8d31d4d911e76dae030bc1bf807d7e806889', 'value': 19996.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0beb466e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:55:44.000Z'}}, {'blockNum': '0x9d8fa6', 'uniqueId': '0x5f5098c1e8eba7484e94466d4148e9c6576daf046c0d6004b8e8412c7fb2c8f9:log:197', 'hash': '0x5f5098c1e8eba7484e94466d4148e9c6576daf046c0d6004b8e8412c7fb2c8f9', 'from': '0x77168aa02f8947265c5fb8d9f1c8b06f75240915', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x08f0d180', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T02:59:45.000Z'}}, {'blockNum': '0x9d8fac', 'uniqueId': '0x31e9a5263efe1ffcca64534634f7ac2e02dadd29e98046bec9844f13d72ef7bb:log:214', 'hash': '0x31e9a5263efe1ffcca64534634f7ac2e02dadd29e98046bec9844f13d72ef7bb', 'from': '0x382d8d31d4d911e76dae030bc1bf807d7e806889', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19996.8366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0beb466e', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T03:00:53.000Z'}}, {'blockNum': '0x9d8fbb', 'uniqueId': '0xdf336dc46eb1f5537665e48d888b4be79071ecf698b04f000487f671fb55c0a1:log:39', 'hash': '0xdf336dc46eb1f5537665e48d888b4be79071ecf698b04f000487f671fb55c0a1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbe0eb53f46cd790cd13851d5eff43d12404d33e8', 'value': 269266.4104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0xa07ecb28', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T03:03:07.000Z'}}, {'blockNum': '0x9d9110', 'uniqueId': '0x7a81561e0921b1b4c4ca78a19b54fe452fe67dad383d3c19b472a19f2c225763:log:0', 'hash': '0x7a81561e0921b1b4c4ca78a19b54fe452fe67dad383d3c19b472a19f2c225763', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 5126.7619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e4823', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T04:22:12.000Z'}}, {'blockNum': '0x9d913a', 'uniqueId': '0x5546e49ef62fa408974bf2a409635a993ba6ba22d6945cd9ae0c53c4363ceca4:log:106', 'hash': '0x5546e49ef62fa408974bf2a409635a993ba6ba22d6945cd9ae0c53c4363ceca4', 'from': '0x3178b39cde153c851796cba961f9775df7787d63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5126.7619, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030e4823', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T04:31:39.000Z'}}, {'blockNum': '0x9d917a', 'uniqueId': '0x21f22e9abdea5f9439ed89813eaf589326ef091e58450eecfc22fc868594b923:log:113', 'hash': '0x21f22e9abdea5f9439ed89813eaf589326ef091e58450eecfc22fc868594b923', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 6782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x040ad9e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T04:48:09.000Z'}}, {'blockNum': '0x9d91a1', 'uniqueId': '0x566b6f920928520224ae6d508747032ffac1e02c35c17009b24e29cb2d60352f:log:20', 'hash': '0x566b6f920928520224ae6d508747032ffac1e02c35c17009b24e29cb2d60352f', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 6782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x040ad9e0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T04:58:09.000Z'}}, {'blockNum': '0x9d91af', 'uniqueId': '0x72b309204845959316410a6b57bcd87695fae3d42f49c65dd338cebb18404bb9:log:196', 'hash': '0x72b309204845959316410a6b57bcd87695fae3d42f49c65dd338cebb18404bb9', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2461.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01779858', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T05:02:50.000Z'}}, {'blockNum': '0x9d948d', 'uniqueId': '0x9748208142c0d3cbe08b51278185439da8d9568ef5d2c005936794ae25e2556e:log:139', 'hash': '0x9748208142c0d3cbe08b51278185439da8d9568ef5d2c005936794ae25e2556e', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x6f9d92a034609b67274f601709869b37b13feee4', 'value': 135.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x14b39c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T07:45:03.000Z'}}, {'blockNum': '0x9d9518', 'uniqueId': '0x20599986ff277b8a7a30fbe1be929883f1eb344877e1e4cb560709af850d3943:log:54', 'hash': '0x20599986ff277b8a7a30fbe1be929883f1eb344877e1e4cb560709af850d3943', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'value': 20554.2214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c405346', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T08:14:57.000Z'}}, {'blockNum': '0x9d9572', 'uniqueId': '0xe8ea3b03ce76f7eaa763481b01b18633b2ebe514feeb90298743cd181b61e1f4:log:51', 'hash': '0xe8ea3b03ce76f7eaa763481b01b18633b2ebe514feeb90298743cd181b61e1f4', 'from': '0x85e66ce2b843c62ad63c8e4a605fe5ed2cd3b237', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20554.2214, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0c405346', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T08:32:16.000Z'}}, {'blockNum': '0x9d9732', 'uniqueId': '0xeb0daccb47648730483ba094100c7130188d234e56bfef5a1d0e657ab2e895de:log:9', 'hash': '0xeb0daccb47648730483ba094100c7130188d234e56bfef5a1d0e657ab2e895de', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 7243.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04513598', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T10:10:58.000Z'}}, {'blockNum': '0x9d978e', 'uniqueId': '0x3206dc51a283079986619d322dab81c45522360b3ce7e19447d619c562daab5a:log:134', 'hash': '0x3206dc51a283079986619d322dab81c45522360b3ce7e19447d619c562daab5a', 'from': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7243.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x04513598', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T10:33:36.000Z'}}, {'blockNum': '0x9d97c9', 'uniqueId': '0x3a7c27a3b7146d13b5280e54fdbd9ac2e2111e5f3c95e8e44d26ece6f7241f9f:log:10', 'hash': '0x3a7c27a3b7146d13b5280e54fdbd9ac2e2111e5f3c95e8e44d26ece6f7241f9f', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 5652, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x035e6d40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T10:46:56.000Z'}}, {'blockNum': '0x9d97e8', 'uniqueId': '0x5d9e4ad3e617cdfc79d7adef74717bd0d6f0ace98384dc43d46d2734ae591f06:log:30', 'hash': '0x5d9e4ad3e617cdfc79d7adef74717bd0d6f0ace98384dc43d46d2734ae591f06', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 7220, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x044daf40', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T10:52:33.000Z'}}, {'blockNum': '0x9d981d', 'uniqueId': '0x194e7d3a475c8c79af43f7806d6f1123adb2a3f8a16707a2bce8befe7f2b65aa:log:103', 'hash': '0x194e7d3a475c8c79af43f7806d6f1123adb2a3f8a16707a2bce8befe7f2b65aa', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07ac1c80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T11:03:34.000Z'}}, {'blockNum': '0x9d98f3', 'uniqueId': '0x626e6832772958918018fd6331a272b93ec935b0234156df40e2429203cd1065:log:18', 'hash': '0x626e6832772958918018fd6331a272b93ec935b0234156df40e2429203cd1065', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 5208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031aad80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T11:48:51.000Z'}}, {'blockNum': '0x9d9943', 'uniqueId': '0xa16b4b150f58cabc99160fc23abbc8bc35294f979ae43edc5654d9cdb69b70b6:log:126', 'hash': '0xa16b4b150f58cabc99160fc23abbc8bc35294f979ae43edc5654d9cdb69b70b6', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x031aad80', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T12:09:35.000Z'}}, {'blockNum': '0x9d9c9d', 'uniqueId': '0xecdcf57185247a60270d0227a0ae039fe7ddeb3f73fed1950182aa0e5c756270:log:89', 'hash': '0xecdcf57185247a60270d0227a0ae039fe7ddeb3f73fed1950182aa0e5c756270', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 5122.2889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030d9969', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:18:51.000Z'}}, {'blockNum': '0x9d9cc7', 'uniqueId': '0x2810327fa6b61cc13d79e10c664dddf8787f7aacea2e283de150df9bf607729c:log:18', 'hash': '0x2810327fa6b61cc13d79e10c664dddf8787f7aacea2e283de150df9bf607729c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'value': 2172.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014b78cc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:29:51.000Z'}}, {'blockNum': '0x9d9ccf', 'uniqueId': '0x790ffd266a391de272a8d22ec2e1944d5ae9e195ff8cb54b994e1ca7c86a8117:log:143', 'hash': '0x790ffd266a391de272a8d22ec2e1944d5ae9e195ff8cb54b994e1ca7c86a8117', 'from': '0x3178b39cde153c851796cba961f9775df7787d63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5122.2889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x030d9969', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:31:46.000Z'}}, {'blockNum': '0x9d9d35', 'uniqueId': '0xd1072def3897a03a3b9058786c62a3d4cd87293282eff1d3c4d35b2594dd2eab:log:44', 'hash': '0xd1072def3897a03a3b9058786c62a3d4cd87293282eff1d3c4d35b2594dd2eab', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 6547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03e6fe30', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:52:29.000Z'}}, {'blockNum': '0x9d9d55', 'uniqueId': '0x1534d0b5f64c89bc14f3454b6d709ddecc17a68884a30083ee7094eb39690d63:log:23', 'hash': '0x1534d0b5f64c89bc14f3454b6d709ddecc17a68884a30083ee7094eb39690d63', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 5846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x037c0760', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T15:59:33.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x81e3dd2f1aaad50f8fa9c81e90ad69e036a20af12da9423ffa065f2301d20556:log:65', 'hash': '0x81e3dd2f1aaad50f8fa9c81e90ad69e036a20af12da9423ffa065f2301d20556', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x878e933ba16770371c6444bd1d3917791d77ec2f', 'value': 7176.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0446fc68', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x22267f227bcd6f6536656f9a9947f6134f0adf771f5604ef17b41be77010da58:log:66', 'hash': '0x22267f227bcd6f6536656f9a9947f6134f0adf771f5604ef17b41be77010da58', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 5061.0951, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03044307', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0xd1d438be8d789a07f2494f9086bbedcbc2e7a6f6408f010bfb73bc264510e989:log:67', 'hash': '0xd1d438be8d789a07f2494f9086bbedcbc2e7a6f6408f010bfb73bc264510e989', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 5398.4962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0337bec2', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x146edba057c89b68434a247ec5daee1065947fc4389262f3da7630c18d0099bf:log:68', 'hash': '0x146edba057c89b68434a247ec5daee1065947fc4389262f3da7630c18d0099bf', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 4663.7675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02c7a26b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x973b2955d22d387f5a16cae13a2e1154aa7a5b98916f67d34092c25dfac1eb9e:log:69', 'hash': '0x973b2955d22d387f5a16cae13a2e1154aa7a5b98916f67d34092c25dfac1eb9e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x00bbc03bd9c69c98312ee04494bbc6333807563d', 'value': 10438.2696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0638c0e8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x4ef14f7c1c9028eddf67ccff28b8169b8f45de4af4d271f247cce6e42048235a:log:71', 'hash': '0x4ef14f7c1c9028eddf67ccff28b8169b8f45de4af4d271f247cce6e42048235a', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x31db4b1de493d8471b3aee635e2e3c38c9f50097', 'value': 711.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6c8158', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9de3', 'uniqueId': '0x79d62d6b9a5e257fd82c28cbcd7de95620e106e6599bf80944667dd2edcd6a4b:log:72', 'hash': '0x79d62d6b9a5e257fd82c28cbcd7de95620e106e6599bf80944667dd2edcd6a4b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x96fce4c177b4fe24f7f3af0ab78f4b54c44aa507', 'value': 19225.5436, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b7595cc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:30:30.000Z'}}, {'blockNum': '0x9d9e11', 'uniqueId': '0xb60f39e45201822bc0cc6d22453f8bf71ad76ab0035e27289f87f435313dd6b8:log:32', 'hash': '0xb60f39e45201822bc0cc6d22453f8bf71ad76ab0035e27289f87f435313dd6b8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 6698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03fe08a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:39:06.000Z'}}, {'blockNum': '0x9d9e1e', 'uniqueId': '0xc39196b36eb1e28c46bcaf77d7067039687066c83134fa7805daf2e324d4d0bf:log:14', 'hash': '0xc39196b36eb1e28c46bcaf77d7067039687066c83134fa7805daf2e324d4d0bf', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 18504.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0b0791fc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:42:47.000Z'}}, {'blockNum': '0x9d9e33', 'uniqueId': '0xae2c9b92874e866a718d9fc5ea2ea69b65de7eeb152bc6147c9933cab4ee4b78:log:7', 'hash': '0xae2c9b92874e866a718d9fc5ea2ea69b65de7eeb152bc6147c9933cab4ee4b78', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 55947, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x2158d5b0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:47:17.000Z'}}, {'blockNum': '0x9d9e36', 'uniqueId': '0x5446e11186388085b14f21130ee044d10c7ffb330548e1296b24ae5ad5c2ff3f:log:107', 'hash': '0x5446e11186388085b14f21130ee044d10c7ffb330548e1296b24ae5ad5c2ff3f', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 6698, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x03fe08a0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T16:47:43.000Z'}}, {'blockNum': '0x9d9e77', 'uniqueId': '0xde90103ad4286e9714eec55b655237fde214fc5fa14ed875bfd5bc55912415c2:log:35', 'hash': '0xde90103ad4286e9714eec55b655237fde214fc5fa14ed875bfd5bc55912415c2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0344f1d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:01:28.000Z'}}, {'blockNum': '0x9d9e7e', 'uniqueId': '0x4613ffa6b2119813d12c53a69758300cb5d8958dc0f80ad313b7c6708494e55a:log:67', 'hash': '0x4613ffa6b2119813d12c53a69758300cb5d8958dc0f80ad313b7c6708494e55a', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 27246.4223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x103d795f', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:03:58.000Z'}}, {'blockNum': '0x9d9e80', 'uniqueId': '0xc433b87eaa54b253fdad2c4c1182be243999d84bd19fa9e22b2a184ca1bdc7b8:log:76', 'hash': '0xc433b87eaa54b253fdad2c4c1182be243999d84bd19fa9e22b2a184ca1bdc7b8', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xf20bf6342885d0a5663c1559e1f35bf8f7404135', 'value': 45789.7482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1b4af60a', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:04:12.000Z'}}, {'blockNum': '0x9d9e99', 'uniqueId': '0x4d8d67d26757ff6d1980dbb00b966aebc33e00d02f4ff31b14a6149381a96152:log:166', 'hash': '0x4d8d67d26757ff6d1980dbb00b966aebc33e00d02f4ff31b14a6149381a96152', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 52346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x1f335da0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:08:59.000Z'}}, {'blockNum': '0x9d9e9d', 'uniqueId': '0xdee230a77dd2bf5b593ac94002f045e2ca8b3934bd0130cb43865bbc7bfe1d27:log:98', 'hash': '0xdee230a77dd2bf5b593ac94002f045e2ca8b3934bd0130cb43865bbc7bfe1d27', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 5485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0344f1d0', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:11:18.000Z'}}, {'blockNum': '0x9d9ecb', 'uniqueId': '0xa407c5d79979dc15db5d89143b9ec63a958c3f86c2cbbad7968e88bb9c8883ab:log:168', 'hash': '0xa407c5d79979dc15db5d89143b9ec63a958c3f86c2cbbad7968e88bb9c8883ab', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x31db4b1de493d8471b3aee635e2e3c38c9f50097', 'value': 2997.7099, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x01c96a0b', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:19:32.000Z'}}, {'blockNum': '0x9d9ecb', 'uniqueId': '0xabcf5a4ff1ad99142994b861a1232f151c45d215ea2fa950249f8e6c98ce89b5:log:188', 'hash': '0xabcf5a4ff1ad99142994b861a1232f151c45d215ea2fa950249f8e6c98ce89b5', 'from': '0x165102e751fa03ecce6d4a304e652a77969c38cd', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2172.334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x014b78cc', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:19:32.000Z'}}, {'blockNum': '0x9d9f35', 'uniqueId': '0xd0be4c4aabda8d0ab4329ae5f63ef7810684e115902c07f219887153555d553b:log:11', 'hash': '0xd0be4c4aabda8d0ab4329ae5f63ef7810684e115902c07f219887153555d553b', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3178b39cde153c851796cba961f9775df7787d63', 'value': 4748.0905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x02d48049', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T17:40:42.000Z'}}, {'blockNum': '0x9da030', 'uniqueId': '0xfe5b309e434bf284ecc1dfd23cc7bdec3131b823ab69026ab14a6a7e8f11d4b0:log:133', 'hash': '0xfe5b309e434bf284ecc1dfd23cc7bdec3131b823ab69026ab14a6a7e8f11d4b0', 'from': '0x3178b39cde153c851796cba961f9775df7787d63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9809.1856, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x05d8c350', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T18:33:29.000Z'}}, {'blockNum': '0x9da092', 'uniqueId': '0xd83a0539aa61e23fdef1cbb3840338524ac1e072717b541d377e498b2218e024:log:0', 'hash': '0xd83a0539aa61e23fdef1cbb3840338524ac1e072717b541d377e498b2218e024', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 569.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x56d678', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T18:56:45.000Z'}}, {'blockNum': '0x9da0b4', 'uniqueId': '0xf580541990b6fd39c83895d0c9d6b77f33c584f7a2e8eec3116a1de1c819d8fe:log:0', 'hash': '0xf580541990b6fd39c83895d0c9d6b77f33c584f7a2e8eec3116a1de1c819d8fe', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1729.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0107d6f8', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:03:27.000Z'}}, {'blockNum': '0x9da0b4', 'uniqueId': '0xdd0549b85a7f636a691df04ad0ad2934cc88996cc78f0983aa8367d8273d1c5a:log:1', 'hash': '0xdd0549b85a7f636a691df04ad0ad2934cc88996cc78f0983aa8367d8273d1c5a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x47afbbd9ff05b4a9c87e3d5a9a861e92cd5ca935', 'value': 477.6332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x48e18c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:03:27.000Z'}}, {'blockNum': '0x9da0cf', 'uniqueId': '0xad687da413f800089600851d51a3b3662aea0121a1f1b210a37149f3ade407c1:log:17', 'hash': '0xad687da413f800089600851d51a3b3662aea0121a1f1b210a37149f3ade407c1', 'from': '0x0c6c34cdd915845376fb5407e0895196c9dd4eec', 'to': '0x867cfc3e89c66f7385c198ada8c15bace0c99a36', 'value': 69.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x0a92a4', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:10:27.000Z'}}, {'blockNum': '0x9da140', 'uniqueId': '0x521c82e119c94f2043fa5eb2fe518cc24dbf9b8f7cb7da1c41dd06e2bfb8c132:log:0', 'hash': '0x521c82e119c94f2043fa5eb2fe518cc24dbf9b8f7cb7da1c41dd06e2bfb8c132', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x54a5a4a492048080000ef50f90c69810716b207d', 'value': 368.726, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x38435c', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:39:26.000Z'}}, {'blockNum': '0x9da166', 'uniqueId': '0xae682f1de87959cb9d21655413dc603dc04ac75ac5d5f28635bd58904439d483:log:18', 'hash': '0xae682f1de87959cb9d21655413dc603dc04ac75ac5d5f28635bd58904439d483', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 585.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x594778', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-24T19:49:33.000Z'}}, {'blockNum': '0x9da641', 'uniqueId': '0x35cad93014b0dc172cf3d15844856604d449cd104c94ee18f43d2ffd2597400c:log:27', 'hash': '0x35cad93014b0dc172cf3d15844856604d449cd104c94ee18f43d2ffd2597400c', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 731.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6faadb', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-25T00:20:40.000Z'}}, {'blockNum': '0x9da676', 'uniqueId': '0xee607700bc50cb1067e926647b8833f58937a627e9a6059c0ac523823cba881c:log:99', 'hash': '0xee607700bc50cb1067e926647b8833f58937a627e9a6059c0ac523823cba881c', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 731.8235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x6faadb', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-25T00:32:13.000Z'}}, {'blockNum': '0x9da6fa', 'uniqueId': '0x8cb02a2197ca34f6ec31b37a0f28d0beccf66ae4192fe28159446f5e54c31191:log:232', 'hash': '0x8cb02a2197ca34f6ec31b37a0f28d0beccf66ae4192fe28159446f5e54c31191', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12393, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'EVX', 'category': 'erc20', 'rawContract': {'value': '0x07630590', 'address': '0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8', 'decimal': '0x4'}, 'metadata': {'blockTimestamp': '2020-06-25T01:01:11.000Z'}}]}}
Number of returned transfers:  56
Answer is complete
 
symbol             ELF
group              CPI
date        2020-07-24
hour             17:00
exchange       binance
Name: 1080, dtype: object
HERE
 Symbol: ELF, Contract: 0xbf2179859fc6d5bee9bf9158632dc51678a4100e
Datetime timestamps:  2020-07-24 17:00:00 2020-07-24 05:00:00 2020-07-25 05:00:00
Unix timestamps:  1595559600.0 1595646000.0
Hex Block Numbers:  0xa0846c 0xa09d99
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa08534', 'uniqueId': '0xac22d37c109453aff8cd35a7e971a475633f456df255c5d31e10241eb7cd5f55:log:218', 'hash': '0xac22d37c109453aff8cd35a7e971a475633f456df255c5d31e10241eb7cd5f55', 'from': '0xce4f252cbe4669944d72d91805a7748fd475b87f', 'to': '0x96007e5288b97b47f31d666f74643d9b20bbd99c', 'value': 2012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x6d121bebf795f00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T03:44:22.000Z'}}, {'blockNum': '0xa085e5', 'uniqueId': '0x8ed9d688e9c815c1a88812b53f81b259db17465869f9e72e4bfd61cbe4675106:log:78', 'hash': '0x8ed9d688e9c815c1a88812b53f81b259db17465869f9e72e4bfd61cbe4675106', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xd5377e975fb7c21c1ee2c2f91be9ddf48e7e1732', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T04:21:43.000Z'}}, {'blockNum': '0xa085f2', 'uniqueId': '0xde49be321466105a231eed323520bd9c53958f483e75ab6a8a53ede392878ca8:log:171', 'hash': '0xde49be321466105a231eed323520bd9c53958f483e75ab6a8a53ede392878ca8', 'from': '0x05f51aab068caa6ab7eeb672f88c180f67f17ec7', 'to': '0x8bd7a9cadf045af8bdbd31c019f67ed4b7f876e7', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T04:25:42.000Z'}}, {'blockNum': '0xa08609', 'uniqueId': '0xe82eb7eac8d8d82da641936b76e55d0e310bd69454bae8f7533fcbc5475ac4d7:log:36', 'hash': '0xe82eb7eac8d8d82da641936b76e55d0e310bd69454bae8f7533fcbc5475ac4d7', 'from': '0xd5377e975fb7c21c1ee2c2f91be9ddf48e7e1732', 'to': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T04:29:37.000Z'}}, {'blockNum': '0xa086d7', 'uniqueId': '0xf669bead51863376a2d28516baf47a637e088e4045aa2a31e82e9cd96216cb4f:log:50', 'hash': '0xf669bead51863376a2d28516baf47a637e088e4045aa2a31e82e9cd96216cb4f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49993.99997161, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a962e1f8e9d7f0a8400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:17:08.000Z'}}, {'blockNum': '0xa08712', 'uniqueId': '0x9d8d51a6632ee92931cd21d8611e74ce72b2d3829b270fe44915f17c2c2fc562:log:44', 'hash': '0x9d8d51a6632ee92931cd21d8611e74ce72b2d3829b270fe44915f17c2c2fc562', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 28576.58418277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x060d23c584ff5440f400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:29:06.000Z'}}, {'blockNum': '0xa08712', 'uniqueId': '0xdf787866e65a2c8444356f5db90b3a45a7a13f72c0ab644b04c9f5b13196362a:log:45', 'hash': '0xdf787866e65a2c8444356f5db90b3a45a7a13f72c0ab644b04c9f5b13196362a', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 119999.99994867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x19693689461128956c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:29:06.000Z'}}, {'blockNum': '0xa08718', 'uniqueId': '0x5c45c910aa13db2d6b3fbb5bb2bf0b3f4d76d3ae8e1c62632aac4d17e2944b09:log:170', 'hash': '0x5c45c910aa13db2d6b3fbb5bb2bf0b3f4d76d3ae8e1c62632aac4d17e2944b09', 'from': '0x1186bf84da1e6fff6b65a6ccb104e96f7680cd99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90145, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1316c52e935213e40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:30:10.000Z'}}, {'blockNum': '0xa08749', 'uniqueId': '0x15cf2cd86c30f147f2d24f50fcff2b80a8ebaec00085b32481a166e9bd7c9110:log:104', 'hash': '0x15cf2cd86c30f147f2d24f50fcff2b80a8ebaec00085b32481a166e9bd7c9110', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 119987.99998122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x19689000d33ff3156800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:42:00.000Z'}}, {'blockNum': '0xa0875c', 'uniqueId': '0x85b4659bcf6b488e3fd53a3c47d7099402dd63a00342a3e22adc72928a7491a6:log:3', 'hash': '0x85b4659bcf6b488e3fd53a3c47d7099402dd63a00342a3e22adc72928a7491a6', 'from': '0x3556167ad6fa2dc4e1702f663d3ef1eb5954d594', 'to': '0x6f31d347457962c9811ff953742870ef5a755de3', 'value': 30388.2449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x066f599d54ba6bce4000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:47:48.000Z'}}, {'blockNum': '0xa08785', 'uniqueId': '0x8a115cc8111d3209d06c5e678a9d1ef49bd58524f518841b097214b3964d0885:log:78', 'hash': '0x8a115cc8111d3209d06c5e678a9d1ef49bd58524f518841b097214b3964d0885', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 29988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0659a719ccc43e100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:56:27.000Z'}}, {'blockNum': '0xa08791', 'uniqueId': '0xd218ce90ce61cc5c7b35cd8c7c8fcf3cb932d955dc92a867f06262428d0f7cdb:log:39', 'hash': '0xd218ce90ce61cc5c7b35cd8c7c8fcf3cb932d955dc92a867f06262428d0f7cdb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x22ef7c2a9bd156b02742c5ed7121049eb8f18950', 'value': 488.886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1a80a7fac55d9f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T05:58:42.000Z'}}, {'blockNum': '0xa087be', 'uniqueId': '0x723b64fe37cfb103a4ea9aaff159604b9c92dba620754313b57b2cce9ed20bfa:log:71', 'hash': '0x723b64fe37cfb103a4ea9aaff159604b9c92dba620754313b57b2cce9ed20bfa', 'from': '0x993b51bafcba586c36c728b1450fffeca30d49e1', 'to': '0x11b2beb8c79db9ff2246da1c0ab55e170912cbe7', 'value': 3648.9947308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xc5cff97e75be23e000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:08:40.000Z'}}, {'blockNum': '0xa087c4', 'uniqueId': '0x707cd0c4eac94fe5be508ad305aa5dec2c6531e8436d519767bf089e3e4233e7:log:2', 'hash': '0x707cd0c4eac94fe5be508ad305aa5dec2c6531e8436d519767bf089e3e4233e7', 'from': '0x1528d286b3c434c41062792ff8e7d67e313db2dd', 'to': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'value': 1170000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xf7c1d3bc325377400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:10:00.000Z'}}, {'blockNum': '0xa087c7', 'uniqueId': '0xae1276d9097390f20bae065db2bbb5faa5dfdd54125b8ed59cf1b3c139d5d218:log:56', 'hash': '0xae1276d9097390f20bae065db2bbb5faa5dfdd54125b8ed59cf1b3c139d5d218', 'from': '0x11b2beb8c79db9ff2246da1c0ab55e170912cbe7', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 3648.9947308, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xc5cff97e75be23e000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:10:34.000Z'}}, {'blockNum': '0xa08848', 'uniqueId': '0xa10bd8cdc26b7f2e17a2f3ed8999dd4dafa21091a9c82683d260b824716012aa:log:91', 'hash': '0xa10bd8cdc26b7f2e17a2f3ed8999dd4dafa21091a9c82683d260b824716012aa', 'from': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'to': '0x1528d286b3c434c41062792ff8e7d67e313db2dd', 'value': 1600000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0152d02c7e14af68000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:39:11.000Z'}}, {'blockNum': '0xa0884f', 'uniqueId': '0x69f8b511da0ae24b4cc60c14c8f28e47e8772c8e59a0a0182dfb9eb08059e650:log:199', 'hash': '0x69f8b511da0ae24b4cc60c14c8f28e47e8772c8e59a0a0182dfb9eb08059e650', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'value': 119987.99990031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1968900089a99f465c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T06:40:11.000Z'}}, {'blockNum': '0xa088a9', 'uniqueId': '0x6bebc90135bad7aa10a6f0ed6c15ff14cde9363acd95ece14bff8af1749c24fe:log:27', 'hash': '0x6bebc90135bad7aa10a6f0ed6c15ff14cde9363acd95ece14bff8af1749c24fe', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 12205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0295a26673237a940000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:04:46.000Z'}}, {'blockNum': '0xa088b8', 'uniqueId': '0x0e03e25c3a0db826eb68ebe3ce221fc56038c8947d12f7c985bdbcdbf30bdacb:log:152', 'hash': '0x0e03e25c3a0db826eb68ebe3ce221fc56038c8947d12f7c985bdbcdbf30bdacb', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 10781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0248706e2bd05e540000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:08:21.000Z'}}, {'blockNum': '0xa088bb', 'uniqueId': '0x7afc28b6534681688a21310849a79cbc466b0975a041278de0e92bd993a08de0:log:151', 'hash': '0x7afc28b6534681688a21310849a79cbc466b0975a041278de0e92bd993a08de0', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xc3b93abca41063b68c699d9948268d6e1bb71232', 'value': 2628, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8e76d38c425e900000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:08:39.000Z'}}, {'blockNum': '0xa088d4', 'uniqueId': '0x4e3eb5f539c21f2539445297a76d82591bd5eead2fde8cb4c818a1ad8b90a874:log:220', 'hash': '0x4e3eb5f539c21f2539445297a76d82591bd5eead2fde8cb4c818a1ad8b90a874', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 99992.44382418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x152c99eaf36b3b010800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:14:03.000Z'}}, {'blockNum': '0xa088e7', 'uniqueId': '0xb0c9de7aa80e162007e89fbab5b402045890a6940374f962183258eed92c3c6f:log:102', 'hash': '0xb0c9de7aa80e162007e89fbab5b402045890a6940374f962183258eed92c3c6f', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'value': 1281.0114874844496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x45719b08c70160a40d', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:17:27.000Z'}}, {'blockNum': '0xa088f2', 'uniqueId': '0x3bfc597d887b9861bf0f285ff37abc8dc53033b6c16a864458afc12e5ba41e6f:log:80', 'hash': '0x3bfc597d887b9861bf0f285ff37abc8dc53033b6c16a864458afc12e5ba41e6f', 'from': '0x0084dfd7202e5f5c0c8be83503a492837ca3e95e', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 119987.99990031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1968900089a99f465c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:18:35.000Z'}}, {'blockNum': '0xa08909', 'uniqueId': '0xaca5609fc1818abedbc438122f8fa25ec4f9a1b493535bc9e0ce1f1edb4c88f2:log:83', 'hash': '0xaca5609fc1818abedbc438122f8fa25ec4f9a1b493535bc9e0ce1f1edb4c88f2', 'from': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'to': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'value': 1281.3387229840487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x4576259bbb00e036c8', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:22:29.000Z'}}, {'blockNum': '0xa08929', 'uniqueId': '0x72ed613b67806a2d81bf153656d44f86cbe667144d0d5fdff71509a1ed843092:log:111', 'hash': '0x72ed613b67806a2d81bf153656d44f86cbe667144d0d5fdff71509a1ed843092', 'from': '0x2a759e373dd5227d1d4d26490d8b4a274bac9b47', 'to': '0x827eae6a366a5a7cccac948fbd865de19c26b7f0', 'value': 1587.78124997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5612e42a6c0f8e7400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:30:34.000Z'}}, {'blockNum': '0xa08930', 'uniqueId': '0xd5342f9b2635e85167982b2f4de82a63883793829641367d69ffe45debe288e8:log:24', 'hash': '0xd5342f9b2635e85167982b2f4de82a63883793829641367d69ffe45debe288e8', 'from': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1281.3387229840487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x4576259bbb00e036c8', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:31:53.000Z'}}, {'blockNum': '0xa0896e', 'uniqueId': '0xe1595135a1bcf620fccf5c9cbaab8623799b4313b263af38b9c4c46641612ca4:log:195', 'hash': '0xe1595135a1bcf620fccf5c9cbaab8623799b4313b263af38b9c4c46641612ca4', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x00016eac5b94e269250a3e78c7b667769711c675', 'value': 1294.6337504233854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x462ea708bf199acbf8', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:46:04.000Z'}}, {'blockNum': '0xa08986', 'uniqueId': '0x98e00c0df092369372317db660b465ff811746462613ce0b4f75f85bbc1641a0:log:17', 'hash': '0x98e00c0df092369372317db660b465ff811746462613ce0b4f75f85bbc1641a0', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 5199.234816201758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0119d9e0a69bdd227a6c', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:52:26.000Z'}}, {'blockNum': '0xa08987', 'uniqueId': '0x3a5a65a98ed5394295ae38ba8253e070a3fd32df4c2a28f9e10166a7fc962db5:log:46', 'hash': '0x3a5a65a98ed5394295ae38ba8253e070a3fd32df4c2a28f9e10166a7fc962db5', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 5188.836346569354, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01194991dd9256000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:52:37.000Z'}}, {'blockNum': '0xa0898d', 'uniqueId': '0x090b3edd56b416c064b50bf045cd7c988e85fb86feafc622da4563af4e6e87e0:log:219', 'hash': '0x090b3edd56b416c064b50bf045cd7c988e85fb86feafc622da4563af4e6e87e0', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'value': 1287.3883663673353, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x45ca1a4255cf77c30c', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:53:58.000Z'}}, {'blockNum': '0xa0899a', 'uniqueId': '0xca500eab5498819f857c08ad28e75128c105f806c2bacda6c4a02fadfa6f53dc:log:2', 'hash': '0xca500eab5498819f857c08ad28e75128c105f806c2bacda6c4a02fadfa6f53dc', 'from': '0xe3031c1bfaa7825813c562cbdcc69d96fcad2087', 'to': '0xb2f15baa32022b55727b04ee6bc9498dca2cc4df', 'value': 5456.62338588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0127cddc8b0732a4f000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T07:58:31.000Z'}}, {'blockNum': '0xa089ee', 'uniqueId': '0x70e2b0a35669051b87d3d30f654e124a5d66cb79b8bd88ad2ed424687544b81a:log:16', 'hash': '0x70e2b0a35669051b87d3d30f654e124a5d66cb79b8bd88ad2ed424687544b81a', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'value': 94832.58401767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1414e27a6f81c6a6bc00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T08:14:35.000Z'}}, {'blockNum': '0xa08a0a', 'uniqueId': '0x86b51cf99474de6bd0031c8995dbed760077b303ad2c86b226d591ee73f3fa86:log:12', 'hash': '0x86b51cf99474de6bd0031c8995dbed760077b303ad2c86b226d591ee73f3fa86', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 5113.50727859585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0115342b415c380ef0aa', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T08:21:22.000Z'}}, {'blockNum': '0xa08a0c', 'uniqueId': '0x3efcf27ac60ca1bcd6dad22249b1067cda92853e7115d27f4724f3c150104813:log:5', 'hash': '0x3efcf27ac60ca1bcd6dad22249b1067cda92853e7115d27f4724f3c150104813', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 5103.280264038659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0114a63d99ce35f00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T08:21:37.000Z'}}, {'blockNum': '0xa08b13', 'uniqueId': '0x8903f0886b743c3b3150df9f4d99030b0ad396149577b3e4acb15c8f49cc2e00:log:49', 'hash': '0x8903f0886b743c3b3150df9f4d99030b0ad396149577b3e4acb15c8f49cc2e00', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 49993.99991178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a962e1f58333d24e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:23:59.000Z'}}, {'blockNum': '0xa08b28', 'uniqueId': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62:log:111', 'hash': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'value': 9732.493211228617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020f9979c2a7468d3f1a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:28:38.000Z'}}, {'blockNum': '0xa08b28', 'uniqueId': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62:log:119', 'hash': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62', 'from': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 9732.493211228617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020f9979c2a7468d3f1a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:28:38.000Z'}}, {'blockNum': '0xa08b28', 'uniqueId': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62:log:123', 'hash': '0xb3683e1195afc2d4b23bfa2ca9a077a317dbf91c32941a238d6937a477476e62', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x7d8c89aef5ddda740fadfb6e21c8d09bd4502bc5', 'value': 9732.493211228617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020f9979c2a7468d3f1a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:28:38.000Z'}}, {'blockNum': '0xa08b40', 'uniqueId': '0xe550a4f379499e7891fd75c6bc2cc95525f4ea39fe392beeea5b7289d610e53f:log:214', 'hash': '0xe550a4f379499e7891fd75c6bc2cc95525f4ea39fe392beeea5b7289d610e53f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 17285.1139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03a90724979772dec000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:34:57.000Z'}}, {'blockNum': '0xa08b42', 'uniqueId': '0x40a18c89e92e18c4c33b0223613f863cd9854716572e51c09d9026a17024ca57:log:38', 'hash': '0x40a18c89e92e18c4c33b0223613f863cd9854716572e51c09d9026a17024ca57', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x30aa93aef6d887895621e80df8122787da3b29a9', 'value': 105.3164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05b58f03cf4ef30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:36:06.000Z'}}, {'blockNum': '0xa08b67', 'uniqueId': '0x3e5afc20e9e2b8349b59ae2cb762b70bed071cfaa378f79aa95d5901e443306b:log:75', 'hash': '0x3e5afc20e9e2b8349b59ae2cb762b70bed071cfaa378f79aa95d5901e443306b', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 9008.73627316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01e85d54961bce345000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:44:35.000Z'}}, {'blockNum': '0xa08b67', 'uniqueId': '0xcff47ba9803663aeea812572ec23305784bb38aad49397409c8992bf1832b103:log:76', 'hash': '0xcff47ba9803663aeea812572ec23305784bb38aad49397409c8992bf1832b103', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 119999.99995828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x196936894ecea9385000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T09:44:35.000Z'}}, {'blockNum': '0xa08bc0', 'uniqueId': '0x244915350345967d95ebbee9b327e0c906ce22d3d4010a37a5954b68725b7aa6:log:90', 'hash': '0x244915350345967d95ebbee9b327e0c906ce22d3d4010a37a5954b68725b7aa6', 'from': '0x16a7e432985af479056187ded7831223112c3880', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 6572.2496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x016448490dede3200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:02:46.000Z'}}, {'blockNum': '0xa08bc0', 'uniqueId': '0xfe11b4c1b10ccc6f81ab74af03b4e7f61e87a5dfd1e56152042656c4afc68ed3:log:92', 'hash': '0xfe11b4c1b10ccc6f81ab74af03b4e7f61e87a5dfd1e56152042656c4afc68ed3', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 119987.99998122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x19689000d33ff3156800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:02:46.000Z'}}, {'blockNum': '0xa08bc0', 'uniqueId': '0x43e68065ad9cbfe3f93b7c7038b948272f4f75b1ba9183e34560f42df1836b91:log:94', 'hash': '0x43e68065ad9cbfe3f93b7c7038b948272f4f75b1ba9183e34560f42df1836b91', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 29988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0659a719ccc43e100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:02:46.000Z'}}, {'blockNum': '0xa08bc0', 'uniqueId': '0xdb5921ca77c48be846ef9cb6de5796a526c16ce0c72bd9592ef26e39371e34a4:log:96', 'hash': '0xdb5921ca77c48be846ef9cb6de5796a526c16ce0c72bd9592ef26e39371e34a4', 'from': '0xb2f15baa32022b55727b04ee6bc9498dca2cc4df', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 5456.62338588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0127cddc8b0732a4f000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:02:46.000Z'}}, {'blockNum': '0xa08bc6', 'uniqueId': '0xdb758fc1b51a1eaec361c78cc4879fc61339c7a2697322f08c994df5d93da562:log:22', 'hash': '0xdb758fc1b51a1eaec361c78cc4879fc61339c7a2697322f08c994df5d93da562', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 162004.8729671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x224e4d4038f946ea5800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:03:56.000Z'}}, {'blockNum': '0xa08bce', 'uniqueId': '0xdc3f1bf5f09033ab4956f01c7e49a166d3abdf70af190d0e68d96d88e4daf64f:log:59', 'hash': '0xdc3f1bf5f09033ab4956f01c7e49a166d3abdf70af190d0e68d96d88e4daf64f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x2d3ae3a093e4692d233df9e4a304a640e00df23f', 'value': 22284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04b8049f9e4ed4b00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:05:21.000Z'}}, {'blockNum': '0xa08bd8', 'uniqueId': '0xfea48090962ef7bc332c6046b30f095a95ea76ae345dd82928ad442be70f5f98:log:62', 'hash': '0xfea48090962ef7bc332c6046b30f095a95ea76ae345dd82928ad442be70f5f98', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 11598.6162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0274c3226dcc33108000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:07:36.000Z'}}, {'blockNum': '0xa08bdd', 'uniqueId': '0x8b8a5c5cecad06ae4ebc9818de6cc1c08a8ab037f6093d96a24af169ac793391:log:125', 'hash': '0x8b8a5c5cecad06ae4ebc9818de6cc1c08a8ab037f6093d96a24af169ac793391', 'from': '0x00016eac5b94e269250a3e78c7b667769711c675', 'to': '0x18f7810e89d5b21af0656ad7eef72082314053fe', 'value': 1294.633751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x462ea709455a847000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:08:02.000Z'}}, {'blockNum': '0xa08bdd', 'uniqueId': '0x7fb9961bb70346c01c57c0dd241c322cebb8ceaaeb71f24820129510eced16c9:log:188', 'hash': '0x7fb9961bb70346c01c57c0dd241c322cebb8ceaaeb71f24820129510eced16c9', 'from': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 94832.58401767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1414e27a6f81c6a6bc00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:08:02.000Z'}}, {'blockNum': '0xa08bdf', 'uniqueId': '0xe21968ff8283cbe22b50eca7e4447106f51e95c7c6f0959aa2d85c3c99f7da3e:log:209', 'hash': '0xe21968ff8283cbe22b50eca7e4447106f51e95c7c6f0959aa2d85c3c99f7da3e', 'from': '0x30aa93aef6d887895621e80df8122787da3b29a9', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 105.3164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05b58f03cf4ef30000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:08:11.000Z'}}, {'blockNum': '0xa08be1', 'uniqueId': '0x4323f94119637cc0de3acba609a3af57ead1a32b2fc5f2dbea62079ee11181ed:log:92', 'hash': '0x4323f94119637cc0de3acba609a3af57ead1a32b2fc5f2dbea62079ee11181ed', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x6a05ddedbba43d511a2e95ad43b500c240586278', 'value': 11598.6162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0274c3226dcc33108000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:08:23.000Z'}}, {'blockNum': '0xa08be6', 'uniqueId': '0x412874ea69031058f6f34c90c41925a4b082ca23599f45332d382cd72d8d5ead:log:81', 'hash': '0x412874ea69031058f6f34c90c41925a4b082ca23599f45332d382cd72d8d5ead', 'from': '0x6f31d347457962c9811ff953742870ef5a755de3', 'to': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'value': 6523.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0161a16e616687408000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:09:40.000Z'}}, {'blockNum': '0xa08be8', 'uniqueId': '0xa9e38f11724b7c2988be1c57b274a8c94d62f863247e391637cf2b4e6dc370c7:log:113', 'hash': '0xa9e38f11724b7c2988be1c57b274a8c94d62f863247e391637cf2b4e6dc370c7', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0xefff06dcc2972f827ff1b0c64550f91beb82ad03', 'value': 6523.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0161a16e616687408000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:09:57.000Z'}}, {'blockNum': '0xa08c04', 'uniqueId': '0xfe06b89e231ce707298f1ffef82313f6cc30c70d0764e893038ada22a4c156ef:log:132', 'hash': '0xfe06b89e231ce707298f1ffef82313f6cc30c70d0764e893038ada22a4c156ef', 'from': '0x6a05ddedbba43d511a2e95ad43b500c240586278', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 11598.6162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0274c3226dcc33108000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:16:54.000Z'}}, {'blockNum': '0xa08c11', 'uniqueId': '0x882621ac476d59b0f46eaae024729c0fe1b4fe3b9443d9103a260c48bedd45cb:log:53', 'hash': '0x882621ac476d59b0f46eaae024729c0fe1b4fe3b9443d9103a260c48bedd45cb', 'from': '0xefff06dcc2972f827ff1b0c64550f91beb82ad03', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 6523.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0161a16e616687408000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:20:07.000Z'}}, {'blockNum': '0xa08c24', 'uniqueId': '0x3c348a6dd463183f86c0dd62a0b8eb2417a216be07d419b9e36f7b2c1f4e31f1:log:127', 'hash': '0x3c348a6dd463183f86c0dd62a0b8eb2417a216be07d419b9e36f7b2c1f4e31f1', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x4bbb752f8516ae74f25559ddf59f0b5da0737085', 'value': 13374.365385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02d5069ad93b95799000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:24:15.000Z'}}, {'blockNum': '0xa08c2c', 'uniqueId': '0xdf38459809793ff975fa0c2f980fbed3de134285ae509023800acd0f8f6baa7f:log:65', 'hash': '0xdf38459809793ff975fa0c2f980fbed3de134285ae509023800acd0f8f6baa7f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x53249e3256953e17fe8975459cfd6c4aa97e12d5', 'value': 10292.53006645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022df58c5b465bea3400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:27:54.000Z'}}, {'blockNum': '0xa08c37', 'uniqueId': '0x747ebf68aa90bceefc6f54190d2c31528e4f7e8f69961cdef2973aed64b57148:log:31', 'hash': '0x747ebf68aa90bceefc6f54190d2c31528e4f7e8f69961cdef2973aed64b57148', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2d3ae3a093e4692d233df9e4a304a640e00df23f', 'value': 19760, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x042f31164b0876c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:30:58.000Z'}}, {'blockNum': '0xa08c3f', 'uniqueId': '0x36b085cf80488a6df0c0c0219f31501af1c378f7462646e18094810a80d8e0a5:log:2', 'hash': '0x36b085cf80488a6df0c0c0219f31501af1c378f7462646e18094810a80d8e0a5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc273c464896e56a4800fb53409b9dced960bafed', 'value': 25400.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0560f0167eed29620000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:32:19.000Z'}}, {'blockNum': '0xa08c4e', 'uniqueId': '0xa48d8b0e02eb231fba96637363dba20b92c34744dd7a3c3c1112492a45503dc0:log:171', 'hash': '0xa48d8b0e02eb231fba96637363dba20b92c34744dd7a3c3c1112492a45503dc0', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 10229.367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022a88fc10fda7458000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:34:55.000Z'}}, {'blockNum': '0xa08c55', 'uniqueId': '0xefa1cb9ec7dbb0508fee68977f9ccf1baf1ec2ee211922cfb5bec25905f0a1b3:log:94', 'hash': '0xefa1cb9ec7dbb0508fee68977f9ccf1baf1ec2ee211922cfb5bec25905f0a1b3', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 10229, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022a83e4386f6eb40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:37:18.000Z'}}, {'blockNum': '0xa08c6b', 'uniqueId': '0x354254508d6f8926081cc9f355ce84f52a17a4c81cded439be42e81e83d971d5:log:49', 'hash': '0x354254508d6f8926081cc9f355ce84f52a17a4c81cded439be42e81e83d971d5', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 85863.06730092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x122ea56db428bae43000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:43:04.000Z'}}, {'blockNum': '0xa08c76', 'uniqueId': '0x068a8d6c73bac641ba49598d2d97ce9176770e06a029879030e4b9c896bc907c:log:72', 'hash': '0x068a8d6c73bac641ba49598d2d97ce9176770e06a029879030e4b9c896bc907c', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 20483.1889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0456655963f6cc3e4000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:45:30.000Z'}}, {'blockNum': '0xa08ca5', 'uniqueId': '0x38fb9acb2262fd47cd58b6f9fac0c5dd2e14245445edc5eddf75dfb068f7a80a:log:168', 'hash': '0x38fb9acb2262fd47cd58b6f9fac0c5dd2e14245445edc5eddf75dfb068f7a80a', 'from': '0x53249e3256953e17fe8975459cfd6c4aa97e12d5', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 10292.53006645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022df58c5b465bea3400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:55:28.000Z'}}, {'blockNum': '0xa08ca5', 'uniqueId': '0x6d83aaeec92349b11d20aedb0662802ff1776a8eaf6c119c43ac765bf66b276b:log:212', 'hash': '0x6d83aaeec92349b11d20aedb0662802ff1776a8eaf6c119c43ac765bf66b276b', 'from': '0x4f1512d88d00962f58b6d543ff1803cc683d39f5', 'to': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'value': 1287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x45c4b6812e87bc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T10:55:28.000Z'}}, {'blockNum': '0xa08cc2', 'uniqueId': '0x96846c55661addfc16429e1446b71da179a6919189c2734fa47f48c2c871f357:log:227', 'hash': '0x96846c55661addfc16429e1446b71da179a6919189c2734fa47f48c2c871f357', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 27568.38774092, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05d67c3c3ac9da3bb000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:02:08.000Z'}}, {'blockNum': '0xa08cc2', 'uniqueId': '0x570711851b340cab3a8cd71b21ce96a1ba5ad7ef286075f718fa64317881c1ff:log:228', 'hash': '0x570711851b340cab3a8cd71b21ce96a1ba5ad7ef286075f718fa64317881c1ff', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 119999.99998618, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x19693689682ea2cf2800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:02:08.000Z'}}, {'blockNum': '0xa08cc6', 'uniqueId': '0x9101cfdb858ef68559d23ddface8137aa5a2b9f35abba8563d2b06e7e7fd4678:log:85', 'hash': '0x9101cfdb858ef68559d23ddface8137aa5a2b9f35abba8563d2b06e7e7fd4678', 'from': '0xbe51584704a8c29ac22ce1edde9683a1b87afca7', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x45c4b6812e87bc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:02:45.000Z'}}, {'blockNum': '0xa08d05', 'uniqueId': '0x1d18b72764c495a8db92fe67db92c3c9d405691fdf2113eb922fc2aa5d18d8e9:log:49', 'hash': '0x1d18b72764c495a8db92fe67db92c3c9d405691fdf2113eb922fc2aa5d18d8e9', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x6bc94a5f60e9b71c6e3c8be528c5a1304c9dcb69', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x021e19e0c9bab2400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:16:14.000Z'}}, {'blockNum': '0xa08d1b', 'uniqueId': '0x45d3144a577bd2352e26c8e2208546205743d61a901d29508c2a665b0554e148:log:71', 'hash': '0x45d3144a577bd2352e26c8e2208546205743d61a901d29508c2a665b0554e148', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'value': 15457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0345ecf7554ddce40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:20:37.000Z'}}, {'blockNum': '0xa08d3c', 'uniqueId': '0x7c1baacbe14e17856fabf01189ef772f89c1bff6d005e6d382a4023cb8859af7:log:23', 'hash': '0x7c1baacbe14e17856fabf01189ef772f89c1bff6d005e6d382a4023cb8859af7', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 47437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a0b909ec8009d140000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:30:30.000Z'}}, {'blockNum': '0xa08d42', 'uniqueId': '0xc51ddd9ba1a74f960bc46ed6dd5da8b224f0753fdc617b0aace2848f432ed151:log:124', 'hash': '0xc51ddd9ba1a74f960bc46ed6dd5da8b224f0753fdc617b0aace2848f432ed151', 'from': '0x8174a92665c45048e2f6878db49c3ce0e0814410', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 15457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0345ecf7554ddce40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:31:35.000Z'}}, {'blockNum': '0xa08d4d', 'uniqueId': '0x1190fe9ffd3d3f4b18ab24a7be5e84af76b322ce36f1f1db994addcaf575fb80:log:22', 'hash': '0x1190fe9ffd3d3f4b18ab24a7be5e84af76b322ce36f1f1db994addcaf575fb80', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x94c04be3ce84ae8b3dc7aec2474431b997dcdb58', 'value': 229366.5424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x3091fc34a4c694440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:33:36.000Z'}}, {'blockNum': '0xa08dba', 'uniqueId': '0x7acc935fa3325ec240014284f4184d848c895ac2daa2e8c6dc23c8fb2536a478:log:89', 'hash': '0x7acc935fa3325ec240014284f4184d848c895ac2daa2e8c6dc23c8fb2536a478', 'from': '0x94c04be3ce84ae8b3dc7aec2474431b997dcdb58', 'to': '0x246073ff205b9cea3cc5782cddf61e57375a586b', 'value': 229366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x3091f4ada6d976180000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T11:57:49.000Z'}}, {'blockNum': '0xa08dcf', 'uniqueId': '0xfaf4757a94a41f0cdf8101c787f0831a69c8d763bd22be5fd7d213a935ab3b24:log:162', 'hash': '0xfaf4757a94a41f0cdf8101c787f0831a69c8d763bd22be5fd7d213a935ab3b24', 'from': '0x8bd7a9cadf045af8bdbd31c019f67ed4b7f876e7', 'to': '0xb84844becf02d9f9839f2e6860411e0083bf1c7b', 'value': 12000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x028a857425466f800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T12:01:43.000Z'}}, {'blockNum': '0xa08ecd', 'uniqueId': '0xcef0ffd9e150b312dd1682068dc79da46bbbd80f6eacc66977d8fd0678dcfc3d:log:154', 'hash': '0xcef0ffd9e150b312dd1682068dc79da46bbbd80f6eacc66977d8fd0678dcfc3d', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 6944.287549274464, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017873595da72060e66f', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T12:56:39.000Z'}}, {'blockNum': '0xa08ee2', 'uniqueId': '0xb33d7db8520fc7ed8f095de0a61406523a5950b7a66fef848f1ae359820de3ad:log:210', 'hash': '0xb33d7db8520fc7ed8f095de0a61406523a5950b7a66fef848f1ae359820de3ad', 'from': '0xc273c464896e56a4800fb53409b9dced960bafed', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 47437.06, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a0b9173f1af3b9a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:26.000Z'}}, {'blockNum': '0xa08ee2', 'uniqueId': '0xee4fd078ec44d4544ad8a792e378600afbcfb499c8c0d7dd837f1a3a5ea2e0b7:log:222', 'hash': '0xee4fd078ec44d4544ad8a792e378600afbcfb499c8c0d7dd837f1a3a5ea2e0b7', 'from': '0x593065a46a507dc0da5146020efc1476067aab8c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32221, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06d2b43371d355540000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:26.000Z'}}, {'blockNum': '0xa08ee2', 'uniqueId': '0x8abebd0a56d13512af9e79cda3d5d3591b4e21fd2ae2fe3e956ccdbd4d3cb168:log:274', 'hash': '0x8abebd0a56d13512af9e79cda3d5d3591b4e21fd2ae2fe3e956ccdbd4d3cb168', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42755.63397402897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x090dc99daa526b840000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:26.000Z'}}, {'blockNum': '0xa08ee2', 'uniqueId': '0xe7df71449bb8f35a52646cca6f6d52cee063e2580f5cfd9ef685e556639d2e96:log:294', 'hash': '0xe7df71449bb8f35a52646cca6f6d52cee063e2580f5cfd9ef685e556639d2e96', 'from': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06e978df3091f5640000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:26.000Z'}}, {'blockNum': '0xa08ee3', 'uniqueId': '0xeac48997611854fab07dddbdef5c34fb8697ed91a5d3f5cde547db40f4d3499f:log:16', 'hash': '0xeac48997611854fab07dddbdef5c34fb8697ed91a5d3f5cde547db40f4d3499f', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 15227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x033975132fe5790c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:01:30.000Z'}}, {'blockNum': '0xa08f00', 'uniqueId': '0x6e4dfe88372f0da8f11c54c56bc42d8a65d0ff09463a32ed10f209150c1404ec:log:47', 'hash': '0x6e4dfe88372f0da8f11c54c56bc42d8a65d0ff09463a32ed10f209150c1404ec', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x4b8a339be06ff31752a806995b72e76e93dd9106', 'value': 62116.2217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d2753be824d76c44000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:09:50.000Z'}}, {'blockNum': '0xa08f16', 'uniqueId': '0x7457bfe64d47a3cb6eed2b89b704c587e62382883e5dcfd17a7b72f87415a315:log:73', 'hash': '0x7457bfe64d47a3cb6eed2b89b704c587e62382883e5dcfd17a7b72f87415a315', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xc3efb06951655e3cbb8bc10421f74c931958cafe', 'value': 119022, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1934320f7a6adef80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:14:08.000Z'}}, {'blockNum': '0xa08f8c', 'uniqueId': '0xd60811a6f9cd80fa1eb9f7b49304fede98fb1dec956d426d56f8c4f0662ad9b8:log:46', 'hash': '0xd60811a6f9cd80fa1eb9f7b49304fede98fb1dec956d426d56f8c4f0662ad9b8', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 12071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x028e5ec6d119dc3c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:40:24.000Z'}}, {'blockNum': '0xa08f91', 'uniqueId': '0xb63b8ada9294e0e619d5c8768343521f12a9e8dbe0dd24452ebadea336838d7e:log:90', 'hash': '0xb63b8ada9294e0e619d5c8768343521f12a9e8dbe0dd24452ebadea336838d7e', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:41:10.000Z'}}, {'blockNum': '0xa08f92', 'uniqueId': '0x640bef339e488e986dbd5990558171f516e49716648d54f0486f947a5b95ccef:log:227', 'hash': '0x640bef339e488e986dbd5990558171f516e49716648d54f0486f947a5b95ccef', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 11219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02602ee6c330c36c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:41:39.000Z'}}, {'blockNum': '0xa08f95', 'uniqueId': '0xd4e23ac5ba7ad024b0f6042936bf7f46b326798ffb776ed06aa861f0858436b7:log:87', 'hash': '0xd4e23ac5ba7ad024b0f6042936bf7f46b326798ffb776ed06aa861f0858436b7', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xe3d4506e758483fccd7c44d6873e126fad4efed2', 'value': 31200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x069b5afac750bb800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:42:09.000Z'}}, {'blockNum': '0xa08f95', 'uniqueId': '0x0dd94790e358413383ac98e9de13d796309b594ca8c9ddbee7911092d5401896:log:88', 'hash': '0x0dd94790e358413383ac98e9de13d796309b594ca8c9ddbee7911092d5401896', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 110655.08755952, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x176e9fd3339a57e9c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:42:09.000Z'}}, {'blockNum': '0xa08fa2', 'uniqueId': '0x8fab3508db7fdecba355fe4a4907add8750fbb3bf2e2e8b10ce15168354bd1c4:log:150', 'hash': '0x8fab3508db7fdecba355fe4a4907add8750fbb3bf2e2e8b10ce15168354bd1c4', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 61541.63474743, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d082dbf953b79b1fc00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:45:32.000Z'}}, {'blockNum': '0xa08fa7', 'uniqueId': '0xdbb3fb2b92f067ea98252db43dbae7089ca928904faaf7e50c02e840f934ed5f:log:53', 'hash': '0xdbb3fb2b92f067ea98252db43dbae7089ca928904faaf7e50c02e840f934ed5f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 15567.0857, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x034be4b64e31f31c4000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:46:23.000Z'}}, {'blockNum': '0xa08fa7', 'uniqueId': '0xe10d1a583bc83e2cfda525ea7e2ec63f07d0f3bc202a3d1524d503d2699f71fa:log:54', 'hash': '0xe10d1a583bc83e2cfda525ea7e2ec63f07d0f3bc202a3d1524d503d2699f71fa', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0xc4f86fae2a332db472b7bb8aec74c5644cd63a47', 'value': 7042, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x017dbf61b9e28cc80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:46:23.000Z'}}, {'blockNum': '0xa08fc1', 'uniqueId': '0x21bf36597f14b16e57dec1679b962d19ce57a6a8649f4a60fc424fe3ace4307d:log:84', 'hash': '0x21bf36597f14b16e57dec1679b962d19ce57a6a8649f4a60fc424fe3ace4307d', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x4b8a339be06ff31752a806995b72e76e93dd9106', 'value': 64195.158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d9806c7f079dbaf0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:51:33.000Z'}}, {'blockNum': '0xa08fd3', 'uniqueId': '0x737af360fed584aaa20c8438d5144783ebb8838824b529ecc8a9e2fb459a1bae:log:40', 'hash': '0x737af360fed584aaa20c8438d5144783ebb8838824b529ecc8a9e2fb459a1bae', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 4089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xddaa463b8cac440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:54:23.000Z'}}, {'blockNum': '0xa08fde', 'uniqueId': '0x28f74b4f38f6b15f6aec34ca21d568da81bd2eebc4642d2de3b768e1d35e0dfd:log:27', 'hash': '0x28f74b4f38f6b15f6aec34ca21d568da81bd2eebc4642d2de3b768e1d35e0dfd', 'from': '0x22ef7c2a9bd156b02742c5ed7121049eb8f18950', 'to': '0x20312e96b1a0568ac31c6630844a962383cc66c2', 'value': 488.886, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1a80a7fac55d9f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T13:56:26.000Z'}}, {'blockNum': '0xa0900f', 'uniqueId': '0x255d9deb2db1f731585c87d67d75ae50e04e27bef9a6e3885eaf9b2cc6b6779c:log:198', 'hash': '0x255d9deb2db1f731585c87d67d75ae50e04e27bef9a6e3885eaf9b2cc6b6779c', 'from': '0x7d8c89aef5ddda740fadfb6e21c8d09bd4502bc5', 'to': '0xd123dd500789c4a2e69b237be875a0b0f0af0e2b', 'value': 9732.493211228617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020f9979c2a7468d3f1a', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T14:07:23.000Z'}}, {'blockNum': '0xa090dc', 'uniqueId': '0xb45bab37d75b95df33d9c58c4d5bfd468f02d805df3a2bb855bacad566892667:log:28', 'hash': '0xb45bab37d75b95df33d9c58c4d5bfd468f02d805df3a2bb855bacad566892667', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xcac9848277f980b84ff42fa26847bae5112ad5d6', 'value': 136.7243533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07696e7aedff81c800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T14:52:01.000Z'}}, {'blockNum': '0xa090fd', 'uniqueId': '0x3d5d0a847ca38c0360df78336a3dd8e4b6e0b09f075bca8a2b43fbe415e52ede:log:56', 'hash': '0x3d5d0a847ca38c0360df78336a3dd8e4b6e0b09f075bca8a2b43fbe415e52ede', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 119000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x193300bfc6fa7c600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:00:13.000Z'}}, {'blockNum': '0xa09167', 'uniqueId': '0x2dc9712b31c41512ceb4fa0dfc7775357ac922e6dccf2a46aa892aa39e0d940f:log:40', 'hash': '0x2dc9712b31c41512ceb4fa0dfc7775357ac922e6dccf2a46aa892aa39e0d940f', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 5009.4918698850415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010f90aa4a3c293c2f8d', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:25:33.000Z'}}, {'blockNum': '0xa09167', 'uniqueId': '0x3946fc229fecd2288889320a43f8efcb81d9a55e85ed1528ee1cfbc2cb4d51d3:log:223', 'hash': '0x3946fc229fecd2288889320a43f8efcb81d9a55e85ed1528ee1cfbc2cb4d51d3', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'value': 1241.3051099276902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x434a91a4c34d2f6cd6', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:25:33.000Z'}}, {'blockNum': '0xa09169', 'uniqueId': '0xf142fc730a587d62c1627877b7c0b80ccc2dc2ac1d383210388226a17ceddd80:log:37', 'hash': '0xf142fc730a587d62c1627877b7c0b80ccc2dc2ac1d383210388226a17ceddd80', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 4999.472886145271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010f059fb59b45d00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:26:32.000Z'}}, {'blockNum': '0xa09170', 'uniqueId': '0x6d137309600daa00ac5b07f1a3579b66e8aac4ee8cdced4eb8f55b470c666750:log:13', 'hash': '0x6d137309600daa00ac5b07f1a3579b66e8aac4ee8cdced4eb8f55b470c666750', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 19565.6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0424a8748cf2473a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:27:42.000Z'}}, {'blockNum': '0xa09170', 'uniqueId': '0xc233a3afdb2df77c494e618a73ca081b5f0c395a14a8466563440fbcae7a548e:log:180', 'hash': '0xc233a3afdb2df77c494e618a73ca081b5f0c395a14a8466563440fbcae7a548e', 'from': '0x013dc51767a671ca7c4ff9592d5d453fd432b5c6', 'to': '0x5c2340a1a65184f1e192ecd7885832eec9f0efc7', 'value': 147.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07fc32b992370a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:27:42.000Z'}}, {'blockNum': '0xa0917a', 'uniqueId': '0x1005a68ae92c577cf06ab3eed53db03a8a588b8a1b935c8117a4bb6f205cd900:log:24', 'hash': '0x1005a68ae92c577cf06ab3eed53db03a8a588b8a1b935c8117a4bb6f205cd900', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 12697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02b04e4594692ec40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:29:42.000Z'}}, {'blockNum': '0xa09181', 'uniqueId': '0x3f1cc3ef2af0cfa7974c5d27f520e8329daf6088124409adfaa6c64e2aef5478:log:18', 'hash': '0x3f1cc3ef2af0cfa7974c5d27f520e8329daf6088124409adfaa6c64e2aef5478', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 14884.1615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0326df3c28952549c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:32:15.000Z'}}, {'blockNum': '0xa09199', 'uniqueId': '0xabe34f5d2f93f45125d4b12320fa6b94c01d0f3105cdc5176f2ae87e7fb11861:log:58', 'hash': '0xabe34f5d2f93f45125d4b12320fa6b94c01d0f3105cdc5176f2ae87e7fb11861', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 19565.6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0424a8748cf2473a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:36:15.000Z'}}, {'blockNum': '0xa0919b', 'uniqueId': '0x11dd4a79d487a18f87738c00db2361040c6be34d71b75950bdaceb8d9874d054:log:0', 'hash': '0x11dd4a79d487a18f87738c00db2361040c6be34d71b75950bdaceb8d9874d054', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 19565.6872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0424a8748cf2473a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:36:34.000Z'}}, {'blockNum': '0xa091a8', 'uniqueId': '0xb218dfcea963981252ca8ac8deee4d3c682f82dda1066e0e78b450f6b1e5704a:log:74', 'hash': '0xb218dfcea963981252ca8ac8deee4d3c682f82dda1066e0e78b450f6b1e5704a', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 14884.1615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0326df3c28952549c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:40:09.000Z'}}, {'blockNum': '0xa091a9', 'uniqueId': '0x303d2d51036be4f182d26dc3b3dc6548fff98487e78a428707030137144c3265:log:74', 'hash': '0x303d2d51036be4f182d26dc3b3dc6548fff98487e78a428707030137144c3265', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'value': 8008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01b21d5323cc30200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:40:21.000Z'}}, {'blockNum': '0xa091ab', 'uniqueId': '0xe176318f6879dc2d1f7cc5d38c62eb427a8c2380de050a7711418da2d08fd467:log:0', 'hash': '0xe176318f6879dc2d1f7cc5d38c62eb427a8c2380de050a7711418da2d08fd467', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 14884.1615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0326df3c28952549c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:40:33.000Z'}}, {'blockNum': '0xa091af', 'uniqueId': '0x67e452ba26f73a2e528c2cfa1b75b4d679288f7fb8dada6505019a36d71776e1:log:94', 'hash': '0x67e452ba26f73a2e528c2cfa1b75b4d679288f7fb8dada6505019a36d71776e1', 'from': '0x276f7400c2f5ad5f62cd2d9ea9bc83e25db0f217', 'to': '0x0acd35c2015e3ae6a8385b07948ed6d7d949d01f', 'value': 8008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01b21d5323cc30200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:41:15.000Z'}}, {'blockNum': '0xa091cc', 'uniqueId': '0xfb2d42f9eec6dc4af1ed453ea6ddeff4d5809b3190fb15a1b27baae10d2b3eed:log:82', 'hash': '0xfb2d42f9eec6dc4af1ed453ea6ddeff4d5809b3190fb15a1b27baae10d2b3eed', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 12467.9706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a3e3d9b28f85ea8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:47:59.000Z'}}, {'blockNum': '0xa091cd', 'uniqueId': '0x1f8bf8629225a71ef954a9d022b9fbdf581de24b275fa7b261aa69638ecf9bd1:log:86', 'hash': '0x1f8bf8629225a71ef954a9d022b9fbdf581de24b275fa7b261aa69638ecf9bd1', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 10063.8854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02219077528cc7fd8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:48:19.000Z'}}, {'blockNum': '0xa091ce', 'uniqueId': '0xa816a2a1f2d3ff3eea668930588cf9143948da55f2c302d63fffe04eb2925ecf:log:149', 'hash': '0xa816a2a1f2d3ff3eea668930588cf9143948da55f2c302d63fffe04eb2925ecf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xb4ffd0326834cd68b95785a17c9a8715986d3140', 'value': 5709.017418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01357c88460017c6a000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T15:48:36.000Z'}}, {'blockNum': '0xa09214', 'uniqueId': '0xb08e132aa6a31c371610a2c27c825a6f99379778942c83fae320edf1e8bce060:log:136', 'hash': '0xb08e132aa6a31c371610a2c27c825a6f99379778942c83fae320edf1e8bce060', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 146059.69202294, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1eede969c573166b1800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:04:14.000Z'}}, {'blockNum': '0xa0926c', 'uniqueId': '0x2eff97488c4708478d18357a8320428186d904e553910f4a57eb1163b4fb2a32:log:8', 'hash': '0x2eff97488c4708478d18357a8320428186d904e553910f4a57eb1163b4fb2a32', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 25049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x054de8b4f0b5c7c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:21:32.000Z'}}, {'blockNum': '0xa0928f', 'uniqueId': '0x0b8c3760e10473584898ea4c5fd8dacffc42de62596f0f797ca8ceaa7e50e3d6:log:29', 'hash': '0x0b8c3760e10473584898ea4c5fd8dacffc42de62596f0f797ca8ceaa7e50e3d6', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 13518, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02dccfef829102780000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:29:34.000Z'}}, {'blockNum': '0xa09297', 'uniqueId': '0x7b01100ac7957968feb89a15111d92e08e3f0a2748301466d6bd89af797da219:log:217', 'hash': '0x7b01100ac7957968feb89a15111d92e08e3f0a2748301466d6bd89af797da219', 'from': '0x5c2340a1a65184f1e192ecd7885832eec9f0efc7', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 147.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07fc32b992370a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:30:51.000Z'}}, {'blockNum': '0xa092c6', 'uniqueId': '0x30bdc17bc954ac7cc96c62360717f9fb411d96dbe3fab2af7ec31f9e0d683b8b:log:26', 'hash': '0x30bdc17bc954ac7cc96c62360717f9fb411d96dbe3fab2af7ec31f9e0d683b8b', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x4b8a339be06ff31752a806995b72e76e93dd9106', 'value': 69845.0223, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0eca4e661f0fe0b1c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:40:27.000Z'}}, {'blockNum': '0xa092cf', 'uniqueId': '0xfb54b3619027862f2bb05186ae0d7d8b06540f0df6f003579b53fea6828e9e53:log:125', 'hash': '0xfb54b3619027862f2bb05186ae0d7d8b06540f0df6f003579b53fea6828e9e53', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 74664.04416107, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fcf8bc3016edfe04c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:42:40.000Z'}}, {'blockNum': '0xa092d7', 'uniqueId': '0xb46ff4d79087ecef49e2957ce8f3cb6b527058add2feba6304bf571b8fff77a1:log:136', 'hash': '0xb46ff4d79087ecef49e2957ce8f3cb6b527058add2feba6304bf571b8fff77a1', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 93107.17381426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x13b7599a011edf1e8800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:44:21.000Z'}}, {'blockNum': '0xa092da', 'uniqueId': '0x53c9294a4c78bb1f875a704700aff5c83aec376afa5f0eba1618d9d8bc655ee7:log:0', 'hash': '0x53c9294a4c78bb1f875a704700aff5c83aec376afa5f0eba1618d9d8bc655ee7', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 12390, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x029fa9ca7af771d80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:44:41.000Z'}}, {'blockNum': '0xa092eb', 'uniqueId': '0x72ae14fd8e536bf1edf0b38a35554619cb60c2fd1c963624c8e5c1b214865632:log:7', 'hash': '0x72ae14fd8e536bf1edf0b38a35554619cb60c2fd1c963624c8e5c1b214865632', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 22992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04de6618e729c5400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:48:06.000Z'}}, {'blockNum': '0xa092f6', 'uniqueId': '0x20a9da808a34952cf1d96ad55a8e745e8467af2c5ab8f6daa715c032000f1dda:log:83', 'hash': '0x20a9da808a34952cf1d96ad55a8e745e8467af2c5ab8f6daa715c032000f1dda', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 16199.4348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x036e2c519a50e5130000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:49:45.000Z'}}, {'blockNum': '0xa092fa', 'uniqueId': '0x0793d3f47db59125ab10ea46ffb7184822acc8d88967855c40d2ee621086052d:log:89', 'hash': '0x0793d3f47db59125ab10ea46ffb7184822acc8d88967855c40d2ee621086052d', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 21159.8109, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x047b135da0112a994000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:50:09.000Z'}}, {'blockNum': '0xa09301', 'uniqueId': '0xbaa17718056de811efb067e840012ad52756cb052c3d4932e76dbf041713dd9e:log:13', 'hash': '0xbaa17718056de811efb067e840012ad52756cb052c3d4932e76dbf041713dd9e', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 4943.670748603324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010bff36b12a1e8c3b42', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:53:25.000Z'}}, {'blockNum': '0xa09303', 'uniqueId': '0x4dc2389c5f505928abc592ed8cc95f9eea5b58e62c5d258e255394d38648f171:log:103', 'hash': '0x4dc2389c5f505928abc592ed8cc95f9eea5b58e62c5d258e255394d38648f171', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 157419.18176633, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2155b6005de81c92c400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:53:49.000Z'}}, {'blockNum': '0xa09304', 'uniqueId': '0x2f23d39acae08e8ddba22db9ca42f26f4c7c6d4ef5c53efe25a4ce184feefcf7:log:25', 'hash': '0x2f23d39acae08e8ddba22db9ca42f26f4c7c6d4ef5c53efe25a4ce184feefcf7', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 4933.783407106116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010b75ffcc754c800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:53:57.000Z'}}, {'blockNum': '0xa09309', 'uniqueId': '0x641c5851ff0a8ba2fa58d37bb82e869612eaf24e6fbc2402948a1b827a13233d:log:127', 'hash': '0x641c5851ff0a8ba2fa58d37bb82e869612eaf24e6fbc2402948a1b827a13233d', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 10755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0247079b9d915e2c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:54:33.000Z'}}, {'blockNum': '0xa0930a', 'uniqueId': '0x15cbe0860caa6ec623b6ed87464111223815a9bcc257cdf151ba9f0c73ebbd7c:log:264', 'hash': '0x15cbe0860caa6ec623b6ed87464111223815a9bcc257cdf151ba9f0c73ebbd7c', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x9cc5be83b211620cfe23e25bc65d6da6751bcf09', 'value': 220035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2e981f0a509b342c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:55:04.000Z'}}, {'blockNum': '0xa0930b', 'uniqueId': '0x6ab75e190a061cec6bd5a314c4c42e6cf8e242dc32a701f1c4a5b042efaa33a4:log:107', 'hash': '0x6ab75e190a061cec6bd5a314c4c42e6cf8e242dc32a701f1c4a5b042efaa33a4', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xc3b93abca41063b68c699d9948268d6e1bb71232', 'value': 8216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01bd63e795c431600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:55:20.000Z'}}, {'blockNum': '0xa0931f', 'uniqueId': '0xdd6de4d01eb5f53efb7ec0f2a6d0ae183406734c1e95e90807d7ee661e8b9d21:log:53', 'hash': '0xdd6de4d01eb5f53efb7ec0f2a6d0ae183406734c1e95e90807d7ee661e8b9d21', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 5972.644361055694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0143c71751f44092c1e5', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:59:59.000Z'}}, {'blockNum': '0xa0931f', 'uniqueId': '0xdbc6f05d0a82f1a26587da62ea18b276bce54e7068b1b2701b98c9c06d8f0802:log:78', 'hash': '0xdbc6f05d0a82f1a26587da62ea18b276bce54e7068b1b2701b98c9c06d8f0802', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 7136.121135272937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0182d9932bbd94a7aa6b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T16:59:59.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xb195b000adc08d9348348a20a4c5c1b848176be121369110806919eb12d56a46:log:21', 'hash': '0xb195b000adc08d9348348a20a4c5c1b848176be121369110806919eb12d56a46', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1557, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5467b732a913340000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0x2a83d32a31f276647bb20a9b55fdfb5976b6c58b6a2c9f7ff0456c01072bd6b4:log:22', 'hash': '0x2a83d32a31f276647bb20a9b55fdfb5976b6c58b6a2c9f7ff0456c01072bd6b4', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 1605.14840089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5703e8ae2b32c14400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xac851a5a324f2414706bd600700088e780a3563cd50597f1f79bd9d093969d9d:log:40', 'hash': '0xac851a5a324f2414706bd600700088e780a3563cd50597f1f79bd9d093969d9d', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 13421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02d78dca487e95940000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xbe7c55449e6959f13393ae0b4a5ed36dc7bf30c44397ef808f0b3934b83458be:log:44', 'hash': '0xbe7c55449e6959f13393ae0b4a5ed36dc7bf30c44397ef808f0b3934b83458be', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xa268e17941b52956bf286f844de0326de11d7380', 'value': 28216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05f997a9293995e00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0x793acd1c9f66aeabacd3b9429519fa8956a41a2eb24c5b906af238e2382f8007:log:48', 'hash': '0x793acd1c9f66aeabacd3b9429519fa8956a41a2eb24c5b906af238e2382f8007', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x4b8a339be06ff31752a806995b72e76e93dd9106', 'value': 74265.6287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fb9f2a2f27c4b0dc000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xbb4a98648c2af6a5fb7fa909b758eaf1c7a0eb3b037d05501f86e130a46f302e:log:49', 'hash': '0xbb4a98648c2af6a5fb7fa909b758eaf1c7a0eb3b037d05501f86e130a46f302e', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 18181, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03d9980f64ef00f40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0x5f8cb0875019a4baec3a19cbe36cfd0e4ef3640bdeb3e56b4d4de4d7479a0091:log:50', 'hash': '0x5f8cb0875019a4baec3a19cbe36cfd0e4ef3640bdeb3e56b4d4de4d7479a0091', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb79dc6fbde3e8f30e677629927539fcbcc91711d', 'value': 10689, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x024373ac834036640000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09320', 'uniqueId': '0xd46964f4c95816a80d4c1439586a2a76d8f000ba4efbf0210447cc82872254ba:log:104', 'hash': '0xd46964f4c95816a80d4c1439586a2a76d8f000ba4efbf0210447cc82872254ba', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 7136.121135272937, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0182d9932bbd94a7aa6b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:18.000Z'}}, {'blockNum': '0xa09322', 'uniqueId': '0xc86859aa692d1d7ae6c551be5ba14d1fc4d2e52afc1831e2f46bba3d999613f7:log:155', 'hash': '0xc86859aa692d1d7ae6c551be5ba14d1fc4d2e52afc1831e2f46bba3d999613f7', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 17222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03a59b42f9eef1580000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:00:45.000Z'}}, {'blockNum': '0xa09324', 'uniqueId': '0x15e58d28b4abd27411adb26d2154a3143283c0177b91b5bd00479381048bb5e6:log:76', 'hash': '0x15e58d28b4abd27411adb26d2154a3143283c0177b91b5bd00479381048bb5e6', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1186bf84da1e6fff6b65a6ccb104e96f7680cd99', 'value': 24124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x051bc3c0c991f3700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:01:08.000Z'}}, {'blockNum': '0xa09327', 'uniqueId': '0x326b46e501f2333922fc1dd0e05b05517c2073f77edd8ce383c7b69020674d32:log:21', 'hash': '0x326b46e501f2333922fc1dd0e05b05517c2073f77edd8ce383c7b69020674d32', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 11441.242, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x026c3b20f4b3afc90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:01:26.000Z'}}, {'blockNum': '0xa09329', 'uniqueId': '0xc5f629a23493189cf574a963edec29262b02407514551a34897d022812fa0830:log:17', 'hash': '0xc5f629a23493189cf574a963edec29262b02407514551a34897d022812fa0830', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 17508, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03b51c4f16a3f3100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:02:04.000Z'}}, {'blockNum': '0xa0932d', 'uniqueId': '0xeeaf3368476ddad6a01e32ad975a31b0f0662628073352501decfcb2f70a1606:log:8', 'hash': '0xeeaf3368476ddad6a01e32ad975a31b0f0662628073352501decfcb2f70a1606', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xef8aeaad8f5a5b88a0509d82a92093f1ce66eaf4', 'value': 23416.0072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04f562611513a5420000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:03:14.000Z'}}, {'blockNum': '0xa0932d', 'uniqueId': '0x294649dbdf8ddb647873eed34a3d17f34337fff6b9121ebfc427c6d704af046b:log:179', 'hash': '0x294649dbdf8ddb647873eed34a3d17f34337fff6b9121ebfc427c6d704af046b', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5cba4d76eb717ed59da0d3390a6d5a29067cdfdd', 'value': 16567, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0382194f8445a87c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:03:14.000Z'}}, {'blockNum': '0xa0932d', 'uniqueId': '0xc38e01c471483b563e3ee4ed786449afc1072efd116e3be8771342d1f49f613e:log:180', 'hash': '0xc38e01c471483b563e3ee4ed786449afc1072efd116e3be8771342d1f49f613e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xdd97341d1550b9767ecafc9ab1fa2c4966a4f1af', 'value': 15471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0346af415321045c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:03:14.000Z'}}, {'blockNum': '0xa0932e', 'uniqueId': '0x2e62a20207db5b6e3bc0fa77c640f53a11ef1e8d539c42f2e1ba926fb8f6bcf7:log:103', 'hash': '0x2e62a20207db5b6e3bc0fa77c640f53a11ef1e8d539c42f2e1ba926fb8f6bcf7', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 35000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x07695a92c20d6fe00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:03:21.000Z'}}, {'blockNum': '0xa09332', 'uniqueId': '0x93a4bd6f130e412f0f16cc5a29f76f34922ac200a671872b4f7400e48d1469b5:log:151', 'hash': '0x93a4bd6f130e412f0f16cc5a29f76f34922ac200a671872b4f7400e48d1469b5', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xedc4416096e431d612c098e361f9c95088386765', 'value': 14427.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030e211d408eae560000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:04:02.000Z'}}, {'blockNum': '0xa09334', 'uniqueId': '0xcddbf9d5884f9de142661bdd39a5de51235362b2de43765980e1e17c0137c7d3:log:212', 'hash': '0xcddbf9d5884f9de142661bdd39a5de51235362b2de43765980e1e17c0137c7d3', 'from': '0xa268e17941b52956bf286f844de0326de11d7380', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 28216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x05f997a9293995e00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:04:28.000Z'}}, {'blockNum': '0xa09335', 'uniqueId': '0x7ef5f806316e66475ee13859f8a14d74ac8ddb3843d3f9bfd814cc3f11209489:log:93', 'hash': '0x7ef5f806316e66475ee13859f8a14d74ac8ddb3843d3f9bfd814cc3f11209489', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x7c762febdc507d84f5cc183dccb6377c16a26b16', 'value': 9684, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020cf87f43f812d00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:05:10.000Z'}}, {'blockNum': '0xa09337', 'uniqueId': '0x2e886c83194374217976e5b7a1e30d6c93add7c6a0257be87db59cc67531269f:log:14', 'hash': '0x2e886c83194374217976e5b7a1e30d6c93add7c6a0257be87db59cc67531269f', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x14d23d2e929610bf61a9aa7a63fbcf0dc82169f7', 'value': 67468.0283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e4972fb05ea7dd4c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:05:40.000Z'}}, {'blockNum': '0xa09338', 'uniqueId': '0xbd5a4dd85b41472e63228dd33f57d360fe2556c8615f424c44dd1af7675f4cce:log:77', 'hash': '0xbd5a4dd85b41472e63228dd33f57d360fe2556c8615f424c44dd1af7675f4cce', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 20392.086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0451750adf19104f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:06:17.000Z'}}, {'blockNum': '0xa09338', 'uniqueId': '0xe1155b4adb954dd21f77750acc43e0e4b8b1b197ac6bae5a517400597c736935:log:78', 'hash': '0xe1155b4adb954dd21f77750acc43e0e4b8b1b197ac6bae5a517400597c736935', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 16434.4642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x037aea01c4607a448000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:06:17.000Z'}}, {'blockNum': '0xa09338', 'uniqueId': '0xc9e43e243dfb86781ddfa2759eb6de4f93ffddf8e6f00edff98f988def658cc4:log:79', 'hash': '0xc9e43e243dfb86781ddfa2759eb6de4f93ffddf8e6f00edff98f988def658cc4', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'value': 89744.54062573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x13010fb1142591561400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:06:17.000Z'}}, {'blockNum': '0xa0933d', 'uniqueId': '0x29e877aaa3397fddfd0d262b5af1e6b70f386572294a4b43c469686aa4c508c5:log:9', 'hash': '0x29e877aaa3397fddfd0d262b5af1e6b70f386572294a4b43c469686aa4c508c5', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 9320.088582437773, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f93e3631c8116cfa87', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:07:33.000Z'}}, {'blockNum': '0xa09348', 'uniqueId': '0xb29368c54769de639ee270e727119d48d328ec869e2813a379d3798319e76ea5:log:45', 'hash': '0xb29368c54769de639ee270e727119d48d328ec869e2813a379d3798319e76ea5', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 85084.96043007, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x12047706c7b539e41c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:09:33.000Z'}}, {'blockNum': '0xa0934a', 'uniqueId': '0xf5bbe1195e33a59f039b738d68e53942e0b2908f55d29d3b830bdf177e88f3d9:log:3', 'hash': '0xf5bbe1195e33a59f039b738d68e53942e0b2908f55d29d3b830bdf177e88f3d9', 'from': '0x274f3c32c90517975e29dfc209a23f315c1e5fc7', 'to': '0x1d1dea5e2dff2c1b87ae449f09c7ea93cb86b828', 'value': 1329.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x481284d601d1d60000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:10:05.000Z'}}, {'blockNum': '0xa0934d', 'uniqueId': '0x7a74e3d2d87198cb78138bf50fb3af57f328aab7151ee7b999b21555fa7ec76b:log:7', 'hash': '0x7a74e3d2d87198cb78138bf50fb3af57f328aab7151ee7b999b21555fa7ec76b', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xe9d4f0df57ae5352efb097e3a1eb3de166d52685', 'value': 22.6845, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x013acf888ff7594000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:10:32.000Z'}}, {'blockNum': '0xa0934e', 'uniqueId': '0xfc74bbd200916fe90fb58ed2ccc3f69534532652d7c331711115eb46444fabb4:log:46', 'hash': '0xfc74bbd200916fe90fb58ed2ccc3f69534532652d7c331711115eb46444fabb4', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x04ac42be8c7b4dd9d6e2c3f96677e2c1676364bf', 'value': 14445.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030f1487d9a05eb00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:10:45.000Z'}}, {'blockNum': '0xa09359', 'uniqueId': '0x3d1b8bb1698399c3729920b264c02d4378437f26f2c83aff80a867e134a4b2ac:log:159', 'hash': '0x3d1b8bb1698399c3729920b264c02d4378437f26f2c83aff80a867e134a4b2ac', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'value': 33043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06ff43be16aed06c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:13:54.000Z'}}, {'blockNum': '0xa0935b', 'uniqueId': '0xe0c62905326bec6ab6e42fa7fd92c4fefd0d09638915b669151d3df0385dd151:log:4', 'hash': '0xe0c62905326bec6ab6e42fa7fd92c4fefd0d09638915b669151d3df0385dd151', 'from': '0x274f3c32c90517975e29dfc209a23f315c1e5fc7', 'to': '0x60904a4237ab04d0ff6530dd22101c5bcb4d70fd', 'value': 739.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x281803096e66e80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:14:05.000Z'}}, {'blockNum': '0xa09361', 'uniqueId': '0xbdff207e0b14f12fd6ff46adf3b9be17edb8f11d173ee283a9ddf615332b8f15:log:94', 'hash': '0xbdff207e0b14f12fd6ff46adf3b9be17edb8f11d173ee283a9ddf615332b8f15', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x9ba805247b91cc87c027eb7128c3bba672c486f3', 'value': 778.0959194, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2a2e40042a59f99000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:15:23.000Z'}}, {'blockNum': '0xa09367', 'uniqueId': '0xe6b9ce3b1a59b5257a3ce9e688ec72d7c1cf96b3226aae2eca972afc6b5c286d:log:14', 'hash': '0xe6b9ce3b1a59b5257a3ce9e688ec72d7c1cf96b3226aae2eca972afc6b5c286d', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 9320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f93cfb7c8610a00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:16:27.000Z'}}, {'blockNum': '0xa09367', 'uniqueId': '0xd5c0bd7846344b456eaee3f5b18650745bf41ebbfd576832fd7d1b045d9b72b5:log:386', 'hash': '0xd5c0bd7846344b456eaee3f5b18650745bf41ebbfd576832fd7d1b045d9b72b5', 'from': '0x8705ccfd8a6df3785217c307cbebf9b793310b94', 'to': '0x86778961cb054cc693264bf2021a4e94c61ff9f0', 'value': 3789.1571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xcd691e42a2a14ac000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:16:27.000Z'}}, {'blockNum': '0xa0936d', 'uniqueId': '0x8ef50c98bbb43ddec3e6f147cf4991cff8639e6a93745269393e99419ef7d15f:log:127', 'hash': '0x8ef50c98bbb43ddec3e6f147cf4991cff8639e6a93745269393e99419ef7d15f', 'from': '0xedc4416096e431d612c098e361f9c95088386765', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 14427.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030e211d408eae560000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:17:12.000Z'}}, {'blockNum': '0xa09371', 'uniqueId': '0xa6e41795628c333f178c9c0c952cdb0e4526dd1b17d1ac0edc351413acb08fd6:log:70', 'hash': '0xa6e41795628c333f178c9c0c952cdb0e4526dd1b17d1ac0edc351413acb08fd6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 4127.242121617426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xdfbcfd8a8b8c38ee7b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:17:57.000Z'}}, {'blockNum': '0xa09371', 'uniqueId': '0xa6e41795628c333f178c9c0c952cdb0e4526dd1b17d1ac0edc351413acb08fd6:log:72', 'hash': '0xa6e41795628c333f178c9c0c952cdb0e4526dd1b17d1ac0edc351413acb08fd6', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x6ce21f4505fdb5b2bc704d5173f5ec59968b86ed', 'value': 4127.242121617426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xdfbcfd8a8b8c38ee7b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:17:57.000Z'}}, {'blockNum': '0xa09380', 'uniqueId': '0x9c37f610082b27d64bd7ac49a1d8fe2a4f551f9a155e1208d4497da78fa2919b:log:1', 'hash': '0x9c37f610082b27d64bd7ac49a1d8fe2a4f551f9a155e1208d4497da78fa2919b', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 8984.835957475156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01e711a59b9f5f600000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:20:58.000Z'}}, {'blockNum': '0xa0938b', 'uniqueId': '0x5e975677551fa0cb1244dc0b93576b70b995414c290bebafb8b8a134e2c5dc33:log:80', 'hash': '0x5e975677551fa0cb1244dc0b93576b70b995414c290bebafb8b8a134e2c5dc33', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2194aa800da59270eebd4438dbca1c2dc153f05c', 'value': 209598.8349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2c626027cf5427314000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:22:42.000Z'}}, {'blockNum': '0xa0938d', 'uniqueId': '0xa83ef6e2f2b0a713df3e4662a6200902af721b0b932ec9c680fedf86916a0eb7:log:206', 'hash': '0xa83ef6e2f2b0a713df3e4662a6200902af721b0b932ec9c680fedf86916a0eb7', 'from': '0x8a200eff6c4e8ba991a22bac9af26f666500d71c', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1950ed49ba5b6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:23:30.000Z'}}, {'blockNum': '0xa0938d', 'uniqueId': '0x28601c2a1db7802005fe9416c1512b784c68d3303c1ef76af58d0eb42e8937d1:log:207', 'hash': '0x28601c2a1db7802005fe9416c1512b784c68d3303c1ef76af58d0eb42e8937d1', 'from': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 4817.578139350254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01052953c11dbb369ee7', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:23:30.000Z'}}, {'blockNum': '0xa0938d', 'uniqueId': '0x815ca809af728f96f7ebce725300093ede057dfe287acc0fbf5048f19e58a00e:log:208', 'hash': '0x815ca809af728f96f7ebce725300093ede057dfe287acc0fbf5048f19e58a00e', 'from': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 10332.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02301c1445a883040000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:23:30.000Z'}}, {'blockNum': '0xa0938d', 'uniqueId': '0x6d3c1f2100cf52130139c1ada9b74ab2861b2a9050faa3f1ecef0b9bdea42822:log:209', 'hash': '0x6d3c1f2100cf52130139c1ada9b74ab2861b2a9050faa3f1ecef0b9bdea42822', 'from': '0xc3cfe7f716ebd9146d572ece954a7f88d919014c', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 325.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x11a5384d6d55a60000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:23:30.000Z'}}, {'blockNum': '0xa09397', 'uniqueId': '0xb25389fced5c46e175680e7bba849cbc7de62c47b4a87b1109b1777cbcc58122:log:45', 'hash': '0xb25389fced5c46e175680e7bba849cbc7de62c47b4a87b1109b1777cbcc58122', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf2d54c3d1a47a04df02e3c0fe47d271a8daba37e', 'value': 23905.91, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x050ff125760f7a7f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:25:35.000Z'}}, {'blockNum': '0xa09398', 'uniqueId': '0x5f3f680554f8e89d6c1749250854aeb7c17e942a2ccf5da4b95eff1452444408:log:117', 'hash': '0x5f3f680554f8e89d6c1749250854aeb7c17e942a2ccf5da4b95eff1452444408', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 16857.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0391d8ced7231b760000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:26:05.000Z'}}, {'blockNum': '0xa0939a', 'uniqueId': '0x982b4234f250a8cce90f03cc45491de2dedd5dc4e63066ede015f05a705c94cf:log:61', 'hash': '0x982b4234f250a8cce90f03cc45491de2dedd5dc4e63066ede015f05a705c94cf', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 23101.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04e45029f720685e0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:27:01.000Z'}}, {'blockNum': '0xa093a2', 'uniqueId': '0x32ea721f5b1b203750271776b7485e2de98304bf3b5fc6d7de2cc6fbbcf5678b:log:22', 'hash': '0x32ea721f5b1b203750271776b7485e2de98304bf3b5fc6d7de2cc6fbbcf5678b', 'from': '0x86778961cb054cc693264bf2021a4e94c61ff9f0', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 3789.1571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0xcd691e42a2a14ac000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:28:39.000Z'}}, {'blockNum': '0xa093a3', 'uniqueId': '0xba964bd3fe8b41342b1a40a38b447bc2b0e022650b8f2910eb6ba4ce9d43853e:log:44', 'hash': '0xba964bd3fe8b41342b1a40a38b447bc2b0e022650b8f2910eb6ba4ce9d43853e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x3f19beb8dd1ab00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:28:54.000Z'}}, {'blockNum': '0xa093b4', 'uniqueId': '0x6b3b3f79cfb01069bc7e4c4b5524b238065006f26d49ece3e5542afee2db1246:log:346', 'hash': '0x6b3b3f79cfb01069bc7e4c4b5524b238065006f26d49ece3e5542afee2db1246', 'from': '0x2194aa800da59270eebd4438dbca1c2dc153f05c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 209598.8349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2c626027cf5427314000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:32:18.000Z'}}, {'blockNum': '0xa093c6', 'uniqueId': '0xae661830217313654ff3c3c65f96bf8c5a0389b24f0b686f883b1e99c2d4de83:log:156', 'hash': '0xae661830217313654ff3c3c65f96bf8c5a0389b24f0b686f883b1e99c2d4de83', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 14355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030a2fa4dbf34c6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:37:06.000Z'}}, {'blockNum': '0xa09405', 'uniqueId': '0x0be69b00e23412c624303b1437b30e77f9032074d5fe43e01a85ea7425605ad7:log:109', 'hash': '0x0be69b00e23412c624303b1437b30e77f9032074d5fe43e01a85ea7425605ad7', 'from': '0x04ac42be8c7b4dd9d6e2c3f96677e2c1676364bf', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 14445.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030f1487d9a05eb00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:53:17.000Z'}}, {'blockNum': '0xa09409', 'uniqueId': '0x0d65cfad023308ad0354e3f2aa694ad1a47967efa001415a1df2af6d06c81803:log:31', 'hash': '0x0d65cfad023308ad0354e3f2aa694ad1a47967efa001415a1df2af6d06c81803', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 11060, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02579055499bcc500000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:54:36.000Z'}}, {'blockNum': '0xa0940b', 'uniqueId': '0x15ebe29e02e77739af4543ba312a908e6b2002806f0a6e75d28d0af1cd9a2253:log:6', 'hash': '0x15ebe29e02e77739af4543ba312a908e6b2002806f0a6e75d28d0af1cd9a2253', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x2a023b4045aa6770e76936f77816742b2ed074a4', 'value': 220000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x2e963951560b51800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:55:06.000Z'}}, {'blockNum': '0xa0940d', 'uniqueId': '0x38b0c5b45068be897603ef9f08e55d9675422a6f1198dbb8d2601d4152fb5641:log:79', 'hash': '0x38b0c5b45068be897603ef9f08e55d9675422a6f1198dbb8d2601d4152fb5641', 'from': '0x14d23d2e929610bf61a9aa7a63fbcf0dc82169f7', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 67468.0283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e4972fb05ea7dd4c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T17:55:25.000Z'}}, {'blockNum': '0xa09436', 'uniqueId': '0xa6d67849b79b5af94734302502e97f44cf6acabe76f31d1476614aa5a9c4149b:log:253', 'hash': '0xa6d67849b79b5af94734302502e97f44cf6acabe76f31d1476614aa5a9c4149b', 'from': '0xb1eeecece92d95b3fe1fcd77a299b1e2ac0782f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 91345.2227, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1357d59e2deb101ec000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:04:39.000Z'}}, {'blockNum': '0xa09437', 'uniqueId': '0x50586cc11f43956c933766f5e80280432db99e156024b9559814dfe7236ac908:log:211', 'hash': '0x50586cc11f43956c933766f5e80280432db99e156024b9559814dfe7236ac908', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33497.60137238034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0717e89a9a480fd6ab05', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:04:50.000Z'}}, {'blockNum': '0xa09447', 'uniqueId': '0x83fd5f86eeee4e2d53085d55c48a5dcacdb625ac286c17d99c7c769f04c04240:log:69', 'hash': '0x83fd5f86eeee4e2d53085d55c48a5dcacdb625ac286c17d99c7c769f04c04240', 'from': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'to': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'value': 1241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x434655ace673c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:08:33.000Z'}}, {'blockNum': '0xa09463', 'uniqueId': '0x2cb4e49882b8bf32d38eebc7d5c501c2d0d6e2fe9752e3b75ca3761db38e6f7c:log:156', 'hash': '0x2cb4e49882b8bf32d38eebc7d5c501c2d0d6e2fe9752e3b75ca3761db38e6f7c', 'from': '0x49f52c2f9a29be529db99fc15944a1730215a94d', 'to': '0x2c22bf99552f6a08d3b476ea98d2f2bdf32c0050', 'value': 42.2041, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0249b31557d5104000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:13:51.000Z'}}, {'blockNum': '0xa0946b', 'uniqueId': '0x6df26e85916f1eb8ae6ed2471d819958c2d1609df54f2722aa6ccf0dd4f8e843:log:130', 'hash': '0x6df26e85916f1eb8ae6ed2471d819958c2d1609df54f2722aa6ccf0dd4f8e843', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0xfb90fb348c8e4593e92b9aceb204abf75c85e297', 'value': 701.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x26088463d11e4f0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:16:16.000Z'}}, {'blockNum': '0xa0946d', 'uniqueId': '0x04302d2da048d7cec918851247c5fdfc3eb37588368445e926d8a17d8cbfb3c7:log:5', 'hash': '0x04302d2da048d7cec918851247c5fdfc3eb37588368445e926d8a17d8cbfb3c7', 'from': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x434655ace673c40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:16:55.000Z'}}, {'blockNum': '0xa09472', 'uniqueId': '0x23ec3f085dbcb5047c6e98086799e669d298196dd9f19b2ece29c2fb5e3c3faf:log:129', 'hash': '0x23ec3f085dbcb5047c6e98086799e669d298196dd9f19b2ece29c2fb5e3c3faf', 'from': '0xfb90fb348c8e4593e92b9aceb204abf75c85e297', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x26005449f15cd40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:18:08.000Z'}}, {'blockNum': '0xa09504', 'uniqueId': '0x7e7d00f627f7bee353fe1d3452dfab2b7641187f26a5884b3124bb02e71e3d51:log:60', 'hash': '0x7e7d00f627f7bee353fe1d3452dfab2b7641187f26a5884b3124bb02e71e3d51', 'from': '0x593065a46a507dc0da5146020efc1476067aab8c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 32834, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x06f3ef48ee0327c80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:47:12.000Z'}}, {'blockNum': '0xa09504', 'uniqueId': '0x6d907917a02e4915bab2787056ea911fa41d2e2811b536103b123f203b097001:log:220', 'hash': '0x6d907917a02e4915bab2787056ea911fa41d2e2811b536103b123f203b097001', 'from': '0x80f09ca1f73408eb3f9be63b48490b67607ccaf5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 155496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x20ed747e32e21ca00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:47:12.000Z'}}, {'blockNum': '0xa09508', 'uniqueId': '0x518293516cb5464111e2bc58b65bc70c1b58f92b867ff0dd89f075b181b6b910:log:251', 'hash': '0x518293516cb5464111e2bc58b65bc70c1b58f92b867ff0dd89f075b181b6b910', 'from': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 112953, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x17eb31c4295b89440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:48:08.000Z'}}, {'blockNum': '0xa09508', 'uniqueId': '0xc2c239366838104592b1073ee8b314c1a88b3a0ee5602f034658b6e618921c51:log:287', 'hash': '0xc2c239366838104592b1073ee8b314c1a88b3a0ee5602f034658b6e618921c51', 'from': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 106807.9018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x169e1165ba954cee8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:48:08.000Z'}}, {'blockNum': '0xa0950a', 'uniqueId': '0xd47055806fd2f1c33135509c65a8cd8091ede5987680e9a4c31c23651c2599d2:log:89', 'hash': '0xd47055806fd2f1c33135509c65a8cd8091ede5987680e9a4c31c23651c2599d2', 'from': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 75549.984, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fff92a597078d500000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:48:22.000Z'}}, {'blockNum': '0xa0950a', 'uniqueId': '0xe8f4de48c420dcaad541384baf0385cf9cbb13d78d3e2a87920784daf37f2353:log:135', 'hash': '0xe8f4de48c420dcaad541384baf0385cf9cbb13d78d3e2a87920784daf37f2353', 'from': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 52768, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0b2c8f1b672764800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:48:22.000Z'}}, {'blockNum': '0xa09513', 'uniqueId': '0x86a29af1b85670bf7cb3eb6ecfed4465ac0c79e11cedbe5dde2032450ab5fb25:log:123', 'hash': '0x86a29af1b85670bf7cb3eb6ecfed4465ac0c79e11cedbe5dde2032450ab5fb25', 'from': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 89744.54062573, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x13010fb1142591561400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:50:04.000Z'}}, {'blockNum': '0xa09517', 'uniqueId': '0x49c2a10a0204a1404229bba5573a25dddf24205df7976f917a7fa4a44138e0f1:log:43', 'hash': '0x49c2a10a0204a1404229bba5573a25dddf24205df7976f917a7fa4a44138e0f1', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc3efb06951655e3cbb8bc10421f74c931958cafe', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T18:50:26.000Z'}}, {'blockNum': '0xa0954a', 'uniqueId': '0x549181228a45b515f0ae5508797588231c77bae423d37082ef976f4d578dcd74:log:83', 'hash': '0x549181228a45b515f0ae5508797588231c77bae423d37082ef976f4d578dcd74', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xbca2953830044a94bce5491604e775417e8528fd', 'value': 63.518337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03717e76f7888d1000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:00:20.000Z'}}, {'blockNum': '0xa09555', 'uniqueId': '0x5a42d08cee51ecb9599c87f3f25a216fff48645c17519c7e7f8a0002db131643:log:187', 'hash': '0x5a42d08cee51ecb9599c87f3f25a216fff48645c17519c7e7f8a0002db131643', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2a3e165fe0ba4e6e1b876d89137ecfd0df31f95d', 'value': 67161.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0e38d8a3e44012498000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:02:32.000Z'}}, {'blockNum': '0xa09564', 'uniqueId': '0x72101008fb132f7832a86d4a402c0b6b4b41a936f3fed78773089a9967c60ace:log:10', 'hash': '0x72101008fb132f7832a86d4a402c0b6b4b41a936f3fed78773089a9967c60ace', 'from': '0x00923b9a074762b93650716333b3e1473a15048e', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 5915.01700533781, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0140a759d34062f6dc3b', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:05:37.000Z'}}, {'blockNum': '0xa0956d', 'uniqueId': '0xa7d559016ccb3403b328d305d18c915a6691301d42ba2240a59d465870d979a7:log:9', 'hash': '0xa7d559016ccb3403b328d305d18c915a6691301d42ba2240a59d465870d979a7', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xd9227fdb1893b1470bb750782d29270592c6888b', 'value': 25787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0575ea83a29e560c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:06:31.000Z'}}, {'blockNum': '0xa09570', 'uniqueId': '0x392519d286940bf7a4f89aaa19c966d7970d84502829fec4de871f7f0b755fea:log:260', 'hash': '0x392519d286940bf7a4f89aaa19c966d7970d84502829fec4de871f7f0b755fea', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x2d3ae3a093e4692d233df9e4a304a640e00df23f', 'value': 23408, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04f4f341cb19c7c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:06:49.000Z'}}, {'blockNum': '0xa09570', 'uniqueId': '0x920c09fe8d02e83c845f3d0ea5ad048e3619f138e0589d344ee5a0b7aab661ed:log:264', 'hash': '0x920c09fe8d02e83c845f3d0ea5ad048e3619f138e0589d344ee5a0b7aab661ed', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf2d54c3d1a47a04df02e3c0fe47d271a8daba37e', 'value': 23952.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0512734585e957d20000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:06:49.000Z'}}, {'blockNum': '0xa09570', 'uniqueId': '0x45575dc06ee4f9b263302778e80afc4e3a99517b4ff6abfb71a3f7c834c459ea:log:265', 'hash': '0x45575dc06ee4f9b263302778e80afc4e3a99517b4ff6abfb71a3f7c834c459ea', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc3efb06951655e3cbb8bc10421f74c931958cafe', 'value': 150000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1fc3842bd1f071c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:06:49.000Z'}}, {'blockNum': '0xa09584', 'uniqueId': '0x62e0b5838067a29ab4ede0730bb6e459bf8e5714c4fc75910958ce1b301c5b88:log:124', 'hash': '0x62e0b5838067a29ab4ede0730bb6e459bf8e5714c4fc75910958ce1b301c5b88', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0xb5fd7226a411c2f2063dcad2a23730b506c7084c', 'value': 350, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x12f939c99edab80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:11:46.000Z'}}, {'blockNum': '0xa09592', 'uniqueId': '0x52096f0cd3afb9ec712c4fca195ff0cb4430d6abf36c214b5ee8be8353e0285b:log:92', 'hash': '0x52096f0cd3afb9ec712c4fca195ff0cb4430d6abf36c214b5ee8be8353e0285b', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 6142, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x014cf55f6a4a11380000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:15:55.000Z'}}, {'blockNum': '0xa095b2', 'uniqueId': '0xb111f83d30993d302db678a4bbb7b1d916d42489a7fdecd5064dac12b3b3ae67:log:137', 'hash': '0xb111f83d30993d302db678a4bbb7b1d916d42489a7fdecd5064dac12b3b3ae67', 'from': '0xb5fd7226a411c2f2063dcad2a23730b506c7084c', 'to': '0x4305ead3fb3c132882e89a268a24ce38fe10bc58', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d8d726b7177a80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:20:43.000Z'}}, {'blockNum': '0xa095c3', 'uniqueId': '0xbd8a01d8d7bba60a570c9ab62776c7ae828dd48041b193769bb711b2b82d4532:log:55', 'hash': '0xbd8a01d8d7bba60a570c9ab62776c7ae828dd48041b193769bb711b2b82d4532', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 119999.99997409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x196936895d2fb6a76400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:24:03.000Z'}}, {'blockNum': '0xa095c3', 'uniqueId': '0x2717398bce19439a5eb5688232279d44431d9aca0cd8d857ca8dae97d135cc1b:log:56', 'hash': '0x2717398bce19439a5eb5688232279d44431d9aca0cd8d857ca8dae97d135cc1b', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 102878.02855642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x15c907734ce872e02800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:24:03.000Z'}}, {'blockNum': '0xa095c5', 'uniqueId': '0x89b2059326098bed40b18855609b03f897d985b8f577c46c5187835526fcc1a1:log:51', 'hash': '0x89b2059326098bed40b18855609b03f897d985b8f577c46c5187835526fcc1a1', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 20790.5192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04670e69f382227a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:24:55.000Z'}}, {'blockNum': '0xa095e5', 'uniqueId': '0x1e79e86e044d99cb092d4c5b33e0fa4524bf53fea983d8b678c6d8d110e3d52d:log:66', 'hash': '0x1e79e86e044d99cb092d4c5b33e0fa4524bf53fea983d8b678c6d8d110e3d52d', 'from': '0x96fd8f0e71c4b77f2dc4d755ec5218f2cf4590fd', 'to': '0x1fb84d8aadf3e1b27c76eaf7a231012d1c13e7e1', 'value': 575, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1f2bba5d84f99c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:32:34.000Z'}}, {'blockNum': '0xa095ed', 'uniqueId': '0xa450ed3db1ee454869930dfa3834048d7f3531dfdfe2d8a454e5e76dd1132ff6:log:119', 'hash': '0xa450ed3db1ee454869930dfa3834048d7f3531dfdfe2d8a454e5e76dd1132ff6', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 20790.5192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04670e69f382227a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:33:54.000Z'}}, {'blockNum': '0xa095ef', 'uniqueId': '0x99f2380ec381f71a39103bbe075e49eed2ac432b4e11780263e4506223a458f6:log:29', 'hash': '0x99f2380ec381f71a39103bbe075e49eed2ac432b4e11780263e4506223a458f6', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 20790.5192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04670e69f382227a0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:34:11.000Z'}}, {'blockNum': '0xa09634', 'uniqueId': '0x140996e2ab689f299678177a72410a2f39242408c84b1b717d713b21d007a1cb:log:73', 'hash': '0x140996e2ab689f299678177a72410a2f39242408c84b1b717d713b21d007a1cb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 16116.8704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0369b281edf5ffd00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:49:59.000Z'}}, {'blockNum': '0xa0963f', 'uniqueId': '0x7dae413e7430103996869b92283c7b0f32e41243003f54ba7c5bbe151bcb22a8:log:60', 'hash': '0x7dae413e7430103996869b92283c7b0f32e41243003f54ba7c5bbe151bcb22a8', 'from': '0xbc87965ca0f6c46cb24b2202b6ae03c82156008c', 'to': '0xf82f1b81527be8adb2016802454cc1166c0a0b60', 'value': 97.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x054ea2ab4db6be0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:53:01.000Z'}}, {'blockNum': '0xa09654', 'uniqueId': '0xe035cf877e34f712319136ef89e563b17e878d34ee17bdc80c78d1781fbc8327:log:27', 'hash': '0xe035cf877e34f712319136ef89e563b17e878d34ee17bdc80c78d1781fbc8327', 'from': '0xf82f1b81527be8adb2016802454cc1166c0a0b60', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 97.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x054ea2ab4db6be0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:56:42.000Z'}}, {'blockNum': '0xa09659', 'uniqueId': '0x823245ec9e0e5dea2f24308434f4c704c530cb5091a8c1c8518ae0989604bc35:log:27', 'hash': '0x823245ec9e0e5dea2f24308434f4c704c530cb5091a8c1c8518ae0989604bc35', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 8767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01db4290d271799c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:57:06.000Z'}}, {'blockNum': '0xa0965b', 'uniqueId': '0xf891eff7cf2fba8ff5e615ce34e3457c194b21d9ced6e87588ef717d7644574a:log:236', 'hash': '0xf891eff7cf2fba8ff5e615ce34e3457c194b21d9ced6e87588ef717d7644574a', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 16116.8704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0369b281edf5ffd00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:57:29.000Z'}}, {'blockNum': '0xa0965c', 'uniqueId': '0x425ebe532f1d6ea5cc40ce0ab636d50f2f9cc78fb7b886c4e336b5839c3b159f:log:0', 'hash': '0x425ebe532f1d6ea5cc40ce0ab636d50f2f9cc78fb7b886c4e336b5839c3b159f', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 16116.8704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0369b281edf5ffd00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T19:58:16.000Z'}}, {'blockNum': '0xa09660', 'uniqueId': '0xd91175eb3574e70af0a4dfd72755053ea052ab373b1b7faeb45a4d74bbe0de7a:log:257', 'hash': '0xd91175eb3574e70af0a4dfd72755053ea052ab373b1b7faeb45a4d74bbe0de7a', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'value': 11551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02722e53b42dd91c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:00:32.000Z'}}, {'blockNum': '0xa09662', 'uniqueId': '0x3389754e8f9969e97eee6b2f3eb2b9f59d9e8b88cc7c0a0cb2bd74bd665c07cf:log:188', 'hash': '0x3389754e8f9969e97eee6b2f3eb2b9f59d9e8b88cc7c0a0cb2bd74bd665c07cf', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'value': 2089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x713eb2e000ef040000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:00:48.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:37', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x81dcaf33ac0aaa9d5f58eb20cdc81a38620d814f', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:38', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:40', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x5c5b40855fc364b797c1f539f7eb39cdc94a8a91', 'to': '0xef7c96ac993fa077035c65581253f43b9814e3b4', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:42', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0xef7c96ac993fa077035c65581253f43b9814e3b4', 'to': '0x9021c84f3900b610ab8625d26d739e3b7bff86ab', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:44', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x9021c84f3900b610ab8625d26d739e3b7bff86ab', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096ce', 'uniqueId': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501:log:45', 'hash': '0x614778f4ed6892a510880c295980425fb4d95f417f6cde6467ef625765f06501', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 387.8006, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1505d07f0b5b598000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:23:20.000Z'}}, {'blockNum': '0xa096e3', 'uniqueId': '0x3cb6076b56d5bba8d88178a68c3c4e3b0010976121391eb2dac963f1bd037b6a:log:23', 'hash': '0x3cb6076b56d5bba8d88178a68c3c4e3b0010976121391eb2dac963f1bd037b6a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'value': 109987.99996106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761ff72f6331e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:30:39.000Z'}}, {'blockNum': '0xa096e6', 'uniqueId': '0x49c16cd4e703c1d80ce798f39cbd29460c7ef7df153e3cd92ee2f80c51665a3a:log:126', 'hash': '0x49c16cd4e703c1d80ce798f39cbd29460c7ef7df153e3cd92ee2f80c51665a3a', 'from': '0xefe786196d4e3df5bd09c7b4adf65411ae37b598', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 33525, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x071964d614effab40000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:30:59.000Z'}}, {'blockNum': '0xa09709', 'uniqueId': '0x32902c25118a6875a3d90441aef77fdaeba9beb1ff4f116c0033f755dee19124:log:149', 'hash': '0x32902c25118a6875a3d90441aef77fdaeba9beb1ff4f116c0033f755dee19124', 'from': '0x04405748c4738860ee1b7913f92ef9af5ddd36a7', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 109987.99996106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761ff72f6331e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:38:23.000Z'}}, {'blockNum': '0xa0970f', 'uniqueId': '0x83b8a5280158a29651ab604a27cd01331f327071bad41bac2a68ec25de89778f:log:0', 'hash': '0x83b8a5280158a29651ab604a27cd01331f327071bad41bac2a68ec25de89778f', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 109987.99996106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761ff72f6331e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:39:31.000Z'}}, {'blockNum': '0xa0971d', 'uniqueId': '0xff5a705e0c129be60eeb41fc2782d7a8ec7df66a3bb83c39f71719693f5f9076:log:40', 'hash': '0xff5a705e0c129be60eeb41fc2782d7a8ec7df66a3bb83c39f71719693f5f9076', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd988784f42430342ff4fedadc661aa59574f5136', 'value': 321.2266561, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1169ea55ca8b10e800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T20:42:14.000Z'}}, {'blockNum': '0xa097b6', 'uniqueId': '0x686e46b24f683e57d346435902cf1c7b03caa231419a16e0659488fb97a0777c:log:4', 'hash': '0x686e46b24f683e57d346435902cf1c7b03caa231419a16e0659488fb97a0777c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 109987.9999248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761fd634f2c68000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:14:04.000Z'}}, {'blockNum': '0xa097e3', 'uniqueId': '0x98d9973f2e9f9173b1a790d93dbfc3e7bb5b20e91a1c83119e156885c9232a42:log:11', 'hash': '0x98d9973f2e9f9173b1a790d93dbfc3e7bb5b20e91a1c83119e156885c9232a42', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 100127.61915704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1533edda3477267de000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:21:36.000Z'}}, {'blockNum': '0xa097fa', 'uniqueId': '0x1d5ed1bb602b2eb1b160ac4abaa70ccf52c80538894eaf4282fc7ee1f00a2966:log:47', 'hash': '0x1d5ed1bb602b2eb1b160ac4abaa70ccf52c80538894eaf4282fc7ee1f00a2966', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 109987.9999248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x174a761fd634f2c68000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:26:49.000Z'}}, {'blockNum': '0xa097fc', 'uniqueId': '0x31eb7b7e9944e6b5f44bd61db092bc584b46df7e776c9cf9e23582888e33c3ec:log:111', 'hash': '0x31eb7b7e9944e6b5f44bd61db092bc584b46df7e776c9cf9e23582888e33c3ec', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 4802.38649999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01045680359b536c5c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:28:16.000Z'}}, {'blockNum': '0xa0982d', 'uniqueId': '0x43d211598b2add5cdb511682975ac280b8d872de001e49acd4d4976939c06ff3:log:144', 'hash': '0x43d211598b2add5cdb511682975ac280b8d872de001e49acd4d4976939c06ff3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x444f8a1d7e5c13d1bd856206f38eb415091623f0', 'value': 4802.38649999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01045680359b536c5c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T21:37:15.000Z'}}, {'blockNum': '0xa098d1', 'uniqueId': '0x95afb0c031e1c73d1ed503fc0d8c4a71dcb839e6572b0390d4760764cdc7c2b5:log:13', 'hash': '0x95afb0c031e1c73d1ed503fc0d8c4a71dcb839e6572b0390d4760764cdc7c2b5', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 25662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x056f23ca6ce59a380000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:15:15.000Z'}}, {'blockNum': '0xa098f9', 'uniqueId': '0x0b53c95a456519db1dcc7a0f2c26b77cf8e4ed17409ac5a76af829914783967c:log:81', 'hash': '0x0b53c95a456519db1dcc7a0f2c26b77cf8e4ed17409ac5a76af829914783967c', 'from': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 2089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x713eb2e000ef040000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:24:40.000Z'}}, {'blockNum': '0xa09919', 'uniqueId': '0x8ac4066208cd0f3079eb0cacb38a5878a6b48b936769c8c62340b1fbfe223ae7:log:26', 'hash': '0x8ac4066208cd0f3079eb0cacb38a5878a6b48b936769c8c62340b1fbfe223ae7', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x0a60e164aa897ef76779164dff6e36161980c6fb', 'value': 15637, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x034faef7cb9f8f340000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:32:14.000Z'}}, {'blockNum': '0xa0992f', 'uniqueId': '0x3ae9bc4705a8766d4fff57d147877dbb6e66d95454ee12c4c41ebde012f70824:log:85', 'hash': '0x3ae9bc4705a8766d4fff57d147877dbb6e66d95454ee12c4c41ebde012f70824', 'from': '0x5d6c182fe79640e1866a74458c5d800d3c58cee2', 'to': '0x1476ac3a5fe25c2a5edf4889b877f4f9639b8a21', 'value': 186.73247743936523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a1f6f06e14a01f9f9', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:36:17.000Z'}}, {'blockNum': '0xa09966', 'uniqueId': '0xebbde5142610efb8af1d06e1990c7dc93363a598edbb561ad3034b04a800dd78:log:39', 'hash': '0xebbde5142610efb8af1d06e1990c7dc93363a598edbb561ad3034b04a800dd78', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'value': 18158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03d858defacaf6f80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:51:34.000Z'}}, {'blockNum': '0xa0998f', 'uniqueId': '0xcb7252ac653522fab6ff0258678a8b0d58eea222a63cc9970135be1a1e2360a2:log:46', 'hash': '0xcb7252ac653522fab6ff0258678a8b0d58eea222a63cc9970135be1a1e2360a2', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T22:58:50.000Z'}}, {'blockNum': '0xa099b3', 'uniqueId': '0x782b3602c4155a3dcda4c99b3ddc67fcfeb18a09b9331b1075db6a6267463c17:log:59', 'hash': '0x782b3602c4155a3dcda4c99b3ddc67fcfeb18a09b9331b1075db6a6267463c17', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:06:45.000Z'}}, {'blockNum': '0xa09a0e', 'uniqueId': '0x22375eb351d45dc5914064187d8ec2d8ffa5abd44b73f81b20d5c2ba8a566aa1:log:32', 'hash': '0x22375eb351d45dc5914064187d8ec2d8ffa5abd44b73f81b20d5c2ba8a566aa1', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 14355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030a2fa4dbf34c6c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:28:47.000Z'}}, {'blockNum': '0xa09a1d', 'uniqueId': '0xeafabed1c005f9caaf12dafa298e345f345b22714ad0e14e69cf0f58e2dcbe16:log:63', 'hash': '0xeafabed1c005f9caaf12dafa298e345f345b22714ad0e14e69cf0f58e2dcbe16', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2a3e165fe0ba4e6e1b876d89137ecfd0df31f95d', 'value': 17694.276, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03bf356861b537ba0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:31:25.000Z'}}, {'blockNum': '0xa09a24', 'uniqueId': '0x867fe9f2751c042d1d46ede716a67caed7140024d800637c1b4b4f5bd2bd99af:log:41', 'hash': '0x867fe9f2751c042d1d46ede716a67caed7140024d800637c1b4b4f5bd2bd99af', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xedc4416096e431d612c098e361f9c95088386765', 'value': 12956.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02be60aaff18daaa0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:33:12.000Z'}}, {'blockNum': '0xa09a24', 'uniqueId': '0x7b93bf21ecb4c3cbf2896df8ea19c74e050fa387c0aea3175b3146907962ab3e:log:209', 'hash': '0x7b93bf21ecb4c3cbf2896df8ea19c74e050fa387c0aea3175b3146907962ab3e', 'from': '0x1ea0c8afbae8126eab39cd7885fb30492cf430d3', 'to': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'value': 54880, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0b9f0cfeb14c5d800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:33:12.000Z'}}, {'blockNum': '0xa09a2d', 'uniqueId': '0x70a5308716e1847560c726b467414f79f2c177decbd6ab5579691ff338b5be26:log:117', 'hash': '0x70a5308716e1847560c726b467414f79f2c177decbd6ab5579691ff338b5be26', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 12424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a181a2bed3ad200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:35:45.000Z'}}, {'blockNum': '0xa09a32', 'uniqueId': '0xdc6b9bef512acfb29ae77d522874c8788269a00b62241bf44fc024dc9e9d8b92:log:40', 'hash': '0xdc6b9bef512acfb29ae77d522874c8788269a00b62241bf44fc024dc9e9d8b92', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x00923b9a074762b93650716333b3e1473a15048e', 'value': 7163.712975254245, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0184587d140405f44d54', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:37:47.000Z'}}, {'blockNum': '0xa09a49', 'uniqueId': '0x5614099557b60a06e15db28110eb50f61c276c3c74333bf6e319cdc7771ab1b2:log:28', 'hash': '0x5614099557b60a06e15db28110eb50f61c276c3c74333bf6e319cdc7771ab1b2', 'from': '0xedc4416096e431d612c098e361f9c95088386765', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 12956.58, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02be60aaff18daaa0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:42:44.000Z'}}, {'blockNum': '0xa09a52', 'uniqueId': '0x14f1f66f9946234c3a5ef7b95af3b0b7da647d87860fa5fddcab7347f14d9af9:log:20', 'hash': '0x14f1f66f9946234c3a5ef7b95af3b0b7da647d87860fa5fddcab7347f14d9af9', 'from': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 12424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a181a2bed3ad200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:43:35.000Z'}}, {'blockNum': '0xa09a73', 'uniqueId': '0x3c0312aaad0f10bb11719a7945c3743170586ed0bed2d7c47430063694d26864:log:79', 'hash': '0x3c0312aaad0f10bb11719a7945c3743170586ed0bed2d7c47430063694d26864', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 220.49416045385826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0bf3f89eb464344bae', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:47:54.000Z'}}, {'blockNum': '0xa09a73', 'uniqueId': '0x3c0312aaad0f10bb11719a7945c3743170586ed0bed2d7c47430063694d26864:log:81', 'hash': '0x3c0312aaad0f10bb11719a7945c3743170586ed0bed2d7c47430063694d26864', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0xfa2cf9a3b971e9c8b975118a18293447ae3bd84a', 'value': 220.49416045385826, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0bf3f89eb464344bae', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:47:54.000Z'}}, {'blockNum': '0xa09a7c', 'uniqueId': '0x71d857bb0f4c99103f9818bcf31879da21cc577b2441ffedd4efbb805d97d669:log:58', 'hash': '0x71d857bb0f4c99103f9818bcf31879da21cc577b2441ffedd4efbb805d97d669', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5f86fe0e62d1f0226f535ebe5d98a5d3edc9a615', 'value': 63747.541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d7fc2d8e68d71a88000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:50:15.000Z'}}, {'blockNum': '0xa09a7e', 'uniqueId': '0x62388eb9e020759b31354fa565627a1f3ac153f520a3a845c2b7ee728600d3bb:log:1', 'hash': '0x62388eb9e020759b31354fa565627a1f3ac153f520a3a845c2b7ee728600d3bb', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'value': 10169.367, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x022748513ee26bd58000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:50:42.000Z'}}, {'blockNum': '0xa09a84', 'uniqueId': '0xa7d72b1e4f02f908aa3daf747f39dc1cbc6d77df2b30880918ed3af5e05a5b65:log:74', 'hash': '0xa7d72b1e4f02f908aa3daf747f39dc1cbc6d77df2b30880918ed3af5e05a5b65', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'value': 8723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01d8dff16b90b46c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:51:38.000Z'}}, {'blockNum': '0xa09a86', 'uniqueId': '0x5e2ca350a345cacc0ba173b8aa5c4b43a23e09bbf3515c540b8db58ca4b8af93:log:113', 'hash': '0x5e2ca350a345cacc0ba173b8aa5c4b43a23e09bbf3515c540b8db58ca4b8af93', 'from': '0x505387014d6518d5daff534a14d91650f32c9fd6', 'to': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'value': 1446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x4e6347fac37ed80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-24T23:52:18.000Z'}}, {'blockNum': '0xa09aaa', 'uniqueId': '0xd30227661064283949dc20481184c53d6afd39ccbe7f28d439830bb67ce05978:log:185', 'hash': '0xd30227661064283949dc20481184c53d6afd39ccbe7f28d439830bb67ce05978', 'from': '0x6ba5f746f78de19d5f2696f022da8ff57f0f12d9', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 8723, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01d8dff16b90b46c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:02:02.000Z'}}, {'blockNum': '0xa09abc', 'uniqueId': '0x2d765d5adfb47664730a8e10d2e06e4ef187debe324ff054aebdd69aad2cbacd:log:140', 'hash': '0x2d765d5adfb47664730a8e10d2e06e4ef187debe324ff054aebdd69aad2cbacd', 'from': '0x5f86fe0e62d1f0226f535ebe5d98a5d3edc9a615', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 63747.541, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0d7fc2d8e68d71a88000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:05:48.000Z'}}, {'blockNum': '0xa09abf', 'uniqueId': '0x86180e6d612f7694c84bb8f8be173d2f874857ffc5a22d8d6c312e148f47ce1a:log:12', 'hash': '0x86180e6d612f7694c84bb8f8be173d2f874857ffc5a22d8d6c312e148f47ce1a', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:06:12.000Z'}}, {'blockNum': '0xa09acc', 'uniqueId': '0x57eb7fa7c62feb8f37e707178e42f3523a6675af52550259fb09b81b2e4dde27:log:1', 'hash': '0x57eb7fa7c62feb8f37e707178e42f3523a6675af52550259fb09b81b2e4dde27', 'from': '0x1528d286b3c434c41062792ff8e7d67e313db2dd', 'to': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'value': 1500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x013da329b6336471800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:09:29.000Z'}}, {'blockNum': '0xa09ad2', 'uniqueId': '0xe671dff4bb9e1d88be9eb11c041f029f3804839e3102fb14b4f3f3101913f0aa:log:48', 'hash': '0xe671dff4bb9e1d88be9eb11c041f029f3804839e3102fb14b4f3f3101913f0aa', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x7cd7e73d3bab96ac238103a8760d77e9166584c9', 'value': 20242.6607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04495b59906fe421c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:12:31.000Z'}}, {'blockNum': '0xa09ad3', 'uniqueId': '0x9082150c24c7b752ae561d38c722ecddc29b87ca0f79763317083b0f22aacb72:log:103', 'hash': '0x9082150c24c7b752ae561d38c722ecddc29b87ca0f79763317083b0f22aacb72', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'value': 1230.8031609074235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x42b8d339c54aecc892', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:12:58.000Z'}}, {'blockNum': '0xa09ae0', 'uniqueId': '0x60cb6b5e0ee5469a6ed2dd3458e133a0dfdd5f17c2a445105f3b7cf7344f2bc2:log:90', 'hash': '0x60cb6b5e0ee5469a6ed2dd3458e133a0dfdd5f17c2a445105f3b7cf7344f2bc2', 'from': '0x0001029a5295a945fe2a1fa6725616ac521860fe', 'to': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'value': 1231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x42bb8e89e1e9dc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:15:18.000Z'}}, {'blockNum': '0xa09ae3', 'uniqueId': '0x3cae3b4e3ce49cef8a7e84ee3393765cd75bc4a642826d45211ebdd2d175c2e7:log:180', 'hash': '0x3cae3b4e3ce49cef8a7e84ee3393765cd75bc4a642826d45211ebdd2d175c2e7', 'from': '0xc7bd687cb430425f3062d0882349aec3fba18536', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:16:22.000Z'}}, {'blockNum': '0xa09ae4', 'uniqueId': '0xde0249e651f162a86f971c862c3a9a453ac0394ef1fd526a3bcad27ec2d61d62:log:72', 'hash': '0xde0249e651f162a86f971c862c3a9a453ac0394ef1fd526a3bcad27ec2d61d62', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 4879.090318852932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01087efaea77e4645270', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:16:26.000Z'}}, {'blockNum': '0xa09ae4', 'uniqueId': '0xb48cbdffc4acc1736d7f051a1ccdf7f0b223dfc7f4715138be569f0f56cda7a4:log:95', 'hash': '0xb48cbdffc4acc1736d7f051a1ccdf7f0b223dfc7f4715138be569f0f56cda7a4', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x04ac42be8c7b4dd9d6e2c3f96677e2c1676364bf', 'value': 14411.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030d3dcbcd57a1700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:16:26.000Z'}}, {'blockNum': '0xa09ae6', 'uniqueId': '0xef78e82f5a74f4e83eb52ab0814e2c2bdac6db1347c3dd099a50ae7ec74bbe71:log:18', 'hash': '0xef78e82f5a74f4e83eb52ab0814e2c2bdac6db1347c3dd099a50ae7ec74bbe71', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 4869.332138215228, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0107f78ee4e11ff00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:17:11.000Z'}}, {'blockNum': '0xa09aef', 'uniqueId': '0xcf7c38c2925fb1bc903d6a4ca213b9b2a67c9f4b4f4d50a9fa397c792dae287a:log:77', 'hash': '0xcf7c38c2925fb1bc903d6a4ca213b9b2a67c9f4b4f4d50a9fa397c792dae287a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 12455.9706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a33d512223ad3a8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:19:02.000Z'}}, {'blockNum': '0xa09aef', 'uniqueId': '0xcbfee4b22dadbab393e1d665e1df8b1aeed4ceb75c86687a7f80370639d5969e:log:95', 'hash': '0xcbfee4b22dadbab393e1d665e1df8b1aeed4ceb75c86687a7f80370639d5969e', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'value': 51505.2098096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0ae81a5f6b88c49b8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:19:02.000Z'}}, {'blockNum': '0xa09afd', 'uniqueId': '0xc980a5f8a5e0892e28b3a5ca1a884eb634efec14d8ba58178c319500991c0979:log:53', 'hash': '0xc980a5f8a5e0892e28b3a5ca1a884eb634efec14d8ba58178c319500991c0979', 'from': '0xe2df1c049d724c24f125d3b2845298b9080ea84b', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0c93a592cfb2a00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:22:12.000Z'}}, {'blockNum': '0xa09afd', 'uniqueId': '0xc980a5f8a5e0892e28b3a5ca1a884eb634efec14d8ba58178c319500991c0979:log:54', 'hash': '0xc980a5f8a5e0892e28b3a5ca1a884eb634efec14d8ba58178c319500991c0979', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 232, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0c93a592cfb2a00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:22:12.000Z'}}, {'blockNum': '0xa09b03', 'uniqueId': '0xcc243635d98b6e567a8967839663c6637181d7eb4e227011ace5332d947943f9:log:260', 'hash': '0xcc243635d98b6e567a8967839663c6637181d7eb4e227011ace5332d947943f9', 'from': '0x87282bd14b93ed9dbef0b3a62cc1ff11f7e82203', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1231, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x42bb8e89e1e9dc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:22:57.000Z'}}, {'blockNum': '0xa09b0b', 'uniqueId': '0x227cc804e649c38ec9b5959ee6868ffa6f8ac8e2e8f34ca00a490d83d955e5f2:log:194', 'hash': '0x227cc804e649c38ec9b5959ee6868ffa6f8ac8e2e8f34ca00a490d83d955e5f2', 'from': '0x96a15af55a5bac6d635f15d7ad9dfb3888950702', 'to': '0x51857761dfb5bdced0b0cfcbcef651de796dd688', 'value': 2610.919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x8d89c7a5421e1d8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:24:23.000Z'}}, {'blockNum': '0xa09b15', 'uniqueId': '0x1ab3d8158cfb5574af214359d07b7741876c1cbb8c22373e074236408a2b1e6a:log:66', 'hash': '0x1ab3d8158cfb5574af214359d07b7741876c1cbb8c22373e074236408a2b1e6a', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 12455.9706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a33d512223ad3a8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:27:09.000Z'}}, {'blockNum': '0xa09b17', 'uniqueId': '0x75ab2d7c3aa85b0badcfe05a71c0ac932da5686315f9008d8a3af6650dc1fb56:log:0', 'hash': '0x75ab2d7c3aa85b0badcfe05a71c0ac932da5686315f9008d8a3af6650dc1fb56', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 12455.9706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a33d512223ad3a8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:28:07.000Z'}}, {'blockNum': '0xa09b6d', 'uniqueId': '0xaa77252b04c21669fa56e6da2bdf3ec69aad7830225cc39ce20d17985b147f43:log:266', 'hash': '0xaa77252b04c21669fa56e6da2bdf3ec69aad7830225cc39ce20d17985b147f43', 'from': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 51505.2098096, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0ae81a5f6b88c49b8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:51:23.000Z'}}, {'blockNum': '0xa09b8d', 'uniqueId': '0xe206ff0c4937dc3eef73dabff1124a4646fd300d61bc070a591b52c9521f1eda:log:165', 'hash': '0xe206ff0c4937dc3eef73dabff1124a4646fd300d61bc070a591b52c9521f1eda', 'from': '0x04ac42be8c7b4dd9d6e2c3f96677e2c1676364bf', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 14411.36, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x030d3dcbcd57a1700000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T00:56:50.000Z'}}, {'blockNum': '0xa09bd3', 'uniqueId': '0x586ef106bb578d08661c25bef97b909708f3b0f274d793f8a919c6dcb3db18d6:log:8', 'hash': '0x586ef106bb578d08661c25bef97b909708f3b0f274d793f8a919c6dcb3db18d6', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0xfa99514af542b29adc5e741795ac7967e4394254', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:11:55.000Z'}}, {'blockNum': '0xa09be0', 'uniqueId': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9:log:48', 'hash': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 9697.106439660656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020dae62b16646441632', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:15:47.000Z'}}, {'blockNum': '0xa09be0', 'uniqueId': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9:log:50', 'hash': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x8a3960472b3d63894b68df3f10f58f11828d6fd9', 'value': 9697.106439660656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020dae62b16646441632', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:15:47.000Z'}}, {'blockNum': '0xa09be0', 'uniqueId': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9:log:54', 'hash': '0x2fad963be13636ee29b41311f3a196a404139cd2c4a014075410ed6a0db412d9', 'from': '0x8a3960472b3d63894b68df3f10f58f11828d6fd9', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 9697.106439660656, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020dae62b166464413e6', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:15:47.000Z'}}, {'blockNum': '0xa09be9', 'uniqueId': '0xd1c7d298a421f8cb306dde43f3f16cf61a6ed48dfa8e021bbec16bcb47f4ea79:log:31', 'hash': '0xd1c7d298a421f8cb306dde43f3f16cf61a6ed48dfa8e021bbec16bcb47f4ea79', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 12409, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02a0b1780a4cde440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:19:47.000Z'}}, {'blockNum': '0xa09c08', 'uniqueId': '0x0404a276627687d0ddc2f00fea807bc01a81fe71bb38f82c139b4af1cb210899:log:35', 'hash': '0x0404a276627687d0ddc2f00fea807bc01a81fe71bb38f82c139b4af1cb210899', 'from': '0x97bdd0e8d457484b15a1b798b674d306811447c8', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 1446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x4e6347fac37ed80000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:28:15.000Z'}}, {'blockNum': '0xa09c0d', 'uniqueId': '0xa505b4a468c2ab825a70f7124fee4ed6e99f5baeb2ab9122f10e0f217edf7a15:log:23', 'hash': '0xa505b4a468c2ab825a70f7124fee4ed6e99f5baeb2ab9122f10e0f217edf7a15', 'from': '0xfa99514af542b29adc5e741795ac7967e4394254', 'to': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:29:42.000Z'}}, {'blockNum': '0xa09c15', 'uniqueId': '0x2d2cc369e4c1e48dae5345e59f7bfb9cbf2b7a40d324e51758dadef82024c1a5:log:77', 'hash': '0x2d2cc369e4c1e48dae5345e59f7bfb9cbf2b7a40d324e51758dadef82024c1a5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 4886.1648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0108e1288596e1940000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:32:23.000Z'}}, {'blockNum': '0xa09c15', 'uniqueId': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501:log:157', 'hash': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 11633.160900438148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0276a289dbd20b20b080', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:32:23.000Z'}}, {'blockNum': '0xa09c15', 'uniqueId': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501:log:159', 'hash': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 11633.160900438148, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0276a289dbd20b20b080', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:32:23.000Z'}}, {'blockNum': '0xa09c15', 'uniqueId': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501:log:163', 'hash': '0x2f51fd8f0ed7f2ed825f792adde86a41a286fe39e0e569202476f057042a0501', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 11633.16090043815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0276a289dbd20b400000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:32:23.000Z'}}, {'blockNum': '0xa09c18', 'uniqueId': '0xb06dc16672b3df2afd42eb054b7329b18fef1a9bb89b44221722d1846c288e61:log:12', 'hash': '0xb06dc16672b3df2afd42eb054b7329b18fef1a9bb89b44221722d1846c288e61', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'value': 4886.1648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0108e1288596e1940000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:34:11.000Z'}}, {'blockNum': '0xa09c1f', 'uniqueId': '0x192c137abfda3643fdd99ed9e6c80ccff28a989857e7b7762bba8fd0ef40077f:log:106', 'hash': '0x192c137abfda3643fdd99ed9e6c80ccff28a989857e7b7762bba8fd0ef40077f', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'value': 129477.29810217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1b6afa780fcc31938400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:35:54.000Z'}}, {'blockNum': '0xa09c20', 'uniqueId': '0x772313c069914b19a34a9c37d6dacfc27407f4e95a2ce984230260cb1dcd5b42:log:46', 'hash': '0x772313c069914b19a34a9c37d6dacfc27407f4e95a2ce984230260cb1dcd5b42', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2459, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x854d7aefa8dd8c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:36:50.000Z'}}, {'blockNum': '0xa09c35', 'uniqueId': '0xdfd55987e864557264728715624a1ce90f18cc5cdde7888ac48a265a2c94625b:log:78', 'hash': '0xdfd55987e864557264728715624a1ce90f18cc5cdde7888ac48a265a2c94625b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63a8e1414a255c5170f06cf100fca0ea4659f370', 'value': 19968.889, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x043a840119caad528000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:40:58.000Z'}}, {'blockNum': '0xa09c47', 'uniqueId': '0x5321efac51875b075e6a90a4f42f8f0a3804c6f4a0f89f138fafcc509d342fa0:log:6', 'hash': '0x5321efac51875b075e6a90a4f42f8f0a3804c6f4a0f89f138fafcc509d342fa0', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 9153, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x01f02f644d53de640000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:45:29.000Z'}}, {'blockNum': '0xa09c68', 'uniqueId': '0xa72549dcaeb78d8f08c7e7056f531cc83ac5ed0283d12d89734afb608aefb1e3:log:52', 'hash': '0xa72549dcaeb78d8f08c7e7056f531cc83ac5ed0283d12d89734afb608aefb1e3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'value': 23609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04ffd8b13e2835440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:52:11.000Z'}}, {'blockNum': '0xa09c73', 'uniqueId': '0x9ca4b972c3ab3d2cfbdbc14b345761a28320018aa99d3127b9138de5e608918f:log:44', 'hash': '0x9ca4b972c3ab3d2cfbdbc14b345761a28320018aa99d3127b9138de5e608918f', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 75095.02832914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fe6e8de5ad73d7a0800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:55:33.000Z'}}, {'blockNum': '0xa09c74', 'uniqueId': '0x3795d8f5390dbe220dcf0d804922dba593ebacca0fa12a35353befed44a13d0c:log:1', 'hash': '0x3795d8f5390dbe220dcf0d804922dba593ebacca0fa12a35353befed44a13d0c', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'value': 22847.48641395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04d69091825105276c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:56:20.000Z'}}, {'blockNum': '0xa09c86', 'uniqueId': '0xc53930e1c00b20968125132b20cc9a1cba32dd99bdbaa7238ed34c01a93c691b:log:45', 'hash': '0xc53930e1c00b20968125132b20cc9a1cba32dd99bdbaa7238ed34c01a93c691b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'value': 16311.2708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03743c5ae3c891a90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T01:59:56.000Z'}}, {'blockNum': '0xa09c8a', 'uniqueId': '0xf836dd5a51692f5e8f7b5a0fbf34919074606c67b083d9f6c3b66b31012569bd:log:78', 'hash': '0xf836dd5a51692f5e8f7b5a0fbf34919074606c67b083d9f6c3b66b31012569bd', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:01:04.000Z'}}, {'blockNum': '0xa09c8e', 'uniqueId': '0x0170b08d057c87c57314516e58f1d6c2786c45edabeff1e3397e09d055832cd3:log:23', 'hash': '0x0170b08d057c87c57314516e58f1d6c2786c45edabeff1e3397e09d055832cd3', 'from': '0x5185140a50cdf03a5450b7ea6ffad210716e04e7', 'to': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'value': 23609, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04ffd8b13e2835440000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:01:46.000Z'}}, {'blockNum': '0xa09c91', 'uniqueId': '0x74b4123c499670a8c2df5fbca76efab0039e8b5d55070d6d76202b11b0138683:log:53', 'hash': '0x74b4123c499670a8c2df5fbca76efab0039e8b5d55070d6d76202b11b0138683', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'value': 21833.3935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x049f9733bdf936a1c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:02:04.000Z'}}, {'blockNum': '0xa09c95', 'uniqueId': '0xbd4acf4e93f69b7c2bc6bd12c09ba46c5b03efa2f26b5fcb88252e1d2299adce:log:11', 'hash': '0xbd4acf4e93f69b7c2bc6bd12c09ba46c5b03efa2f26b5fcb88252e1d2299adce', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x593065a46a507dc0da5146020efc1476067aab8c', 'value': 19207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x041136aba0f3dfbc0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:03:27.000Z'}}, {'blockNum': '0xa09c9e', 'uniqueId': '0xaeb7480d928c69ec52582177bb88001d24bfca81c9584d91e9f933f903db1427:log:77', 'hash': '0xaeb7480d928c69ec52582177bb88001d24bfca81c9584d91e9f933f903db1427', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x583017fee9af9c8c73bb07b5fea1775bebc4965c', 'value': 13687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02e5f9481f2a837c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:04:35.000Z'}}, {'blockNum': '0xa09c9e', 'uniqueId': '0xd903bfe4ff2e9b05e6729c1fed08f4aca30443cefee987e279caf346cd05032a:log:127', 'hash': '0xd903bfe4ff2e9b05e6729c1fed08f4aca30443cefee987e279caf346cd05032a', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 75095.02832914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fe6e8de5ad73d7a0800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:04:35.000Z'}}, {'blockNum': '0xa09c9f', 'uniqueId': '0xa034cc5a175b328b30d8d65b80038137f6869658d8c0418eb9927a7792cfb298:log:74', 'hash': '0xa034cc5a175b328b30d8d65b80038137f6869658d8c0418eb9927a7792cfb298', 'from': '0x3bac7400123bde8bbe813fbb781796d470164a1c', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 22847.48641395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04d69091825105276c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:05:03.000Z'}}, {'blockNum': '0xa09ca3', 'uniqueId': '0xfc065721e405b53691d40d58a1f6c2715fa6bdff4fffe56f096102ba246db783:log:1', 'hash': '0xfc065721e405b53691d40d58a1f6c2715fa6bdff4fffe56f096102ba246db783', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 75095.02832914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0fe6e8de5ad73d7a0800', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:05:19.000Z'}}, {'blockNum': '0xa09cab', 'uniqueId': '0x0c83745e1884d2c75edb8886f1235794a8c3484eab005a29decab1a047bf9afd:log:0', 'hash': '0x0c83745e1884d2c75edb8886f1235794a8c3484eab005a29decab1a047bf9afd', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 22847.48641395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x04d69091825105276c00', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:06:34.000Z'}}, {'blockNum': '0xa09cab', 'uniqueId': '0x871ebf749963e07e3a93670b342c003dfd7244910f0bb980f564196e3e40b3a8:log:164', 'hash': '0x871ebf749963e07e3a93670b342c003dfd7244910f0bb980f564196e3e40b3a8', 'from': '0xd6e8f8c4fc6fce1d77fd01f7749ae3f35f425d68', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 16311.2708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03743c5ae3c891a90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:06:34.000Z'}}, {'blockNum': '0xa09cb0', 'uniqueId': '0x10a0976c013f2f8aeed27a224c9590b6d021a0ccc6a53db5e3d9230442632178:log:79', 'hash': '0x10a0976c013f2f8aeed27a224c9590b6d021a0ccc6a53db5e3d9230442632178', 'from': '0x32a3cd2e04a05690c553d830477ad9d43e6e3d57', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:07:53.000Z'}}, {'blockNum': '0xa09cb4', 'uniqueId': '0x2d1f93407293386a149e1cb777442b67d59ddcbce11597ab67eeee7f6e175da1:log:22', 'hash': '0x2d1f93407293386a149e1cb777442b67d59ddcbce11597ab67eeee7f6e175da1', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 16311.2708, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x03743c5ae3c891a90000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:08:23.000Z'}}, {'blockNum': '0xa09cb8', 'uniqueId': '0x76ac5e540107a610c2fbeb6df9a6fe8c6865a1b111e6345198795f2069a2e6ba:log:97', 'hash': '0x76ac5e540107a610c2fbeb6df9a6fe8c6865a1b111e6345198795f2069a2e6ba', 'from': '0x05048a64dbc735ceac9596eb5d93ec00f33f36a8', 'to': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'value': 21833.3935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x049f9733bdf936a1c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:09:19.000Z'}}, {'blockNum': '0xa09cbb', 'uniqueId': '0x8592b99cbdf6391037b3a0801c6806a6e56209c9c91cd5d301d72ab90dc640ef:log:0', 'hash': '0x8592b99cbdf6391037b3a0801c6806a6e56209c9c91cd5d301d72ab90dc640ef', 'from': '0x1938a448d105d26c40a52a1bfe99b8ca7a745ad0', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 51833.3935, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0af9e4d61b294d61c000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:09:51.000Z'}}, {'blockNum': '0xa09ceb', 'uniqueId': '0x232bc5de2fc8549c74612aca4a26776c84ac499c18b160ea63a575838b177ce8:log:30', 'hash': '0x232bc5de2fc8549c74612aca4a26776c84ac499c18b160ea63a575838b177ce8', 'from': '0x2434e7e28b2b139511bc2b6f31e14ee1e6e03b4f', 'to': '0x24434ebf296c2f9cd59b14412aae5c4ca1d5aad2', 'value': 129477.29810217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1b6afa780fcc31938400', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:20:12.000Z'}}, {'blockNum': '0xa09cf3', 'uniqueId': '0x2839f8c6c25cef4573fde01a8e6caa2ba718c3bf7e15d4142fc7661d7be49bdd:log:60', 'hash': '0x2839f8c6c25cef4573fde01a8e6caa2ba718c3bf7e15d4142fc7661d7be49bdd', 'from': '0xc89722f4afcf759c4f81765b61674006e475e978', 'to': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'value': 1500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x013da329b6336471800000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:21:54.000Z'}}, {'blockNum': '0xa09cfd', 'uniqueId': '0x24097ba2cb2f6cfc10a099458e07a6443465e45ab0542e5fd145dd1f21aa1c87:log:3', 'hash': '0x24097ba2cb2f6cfc10a099458e07a6443465e45ab0542e5fd145dd1f21aa1c87', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x8f7e763680a5315f19116ed8c24d67936a99c48c', 'value': 12191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0294e01c7550531c0000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:24:54.000Z'}}, {'blockNum': '0xa09d07', 'uniqueId': '0x8c01e418e4dddaf627fc815a1a62e58973bdd34420b2ec5d3234d264295eda9e:log:134', 'hash': '0x8c01e418e4dddaf627fc815a1a62e58973bdd34420b2ec5d3234d264295eda9e', 'from': '0x5efee358e543536c45db23f5eefbdddcb8fe90fd', 'to': '0x7a66d3e9f52d3f2329f8f67eb8157f0ffa64a240', 'value': 1005.29, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x367f3388becc710000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:26:38.000Z'}}, {'blockNum': '0xa09d17', 'uniqueId': '0x5ab459ef48776673f1335aeba61c4cc5b5c3f1600cbc9ff2f7acfc6a9c6f0649:log:71', 'hash': '0x5ab459ef48776673f1335aeba61c4cc5b5c3f1600cbc9ff2f7acfc6a9c6f0649', 'from': '0x0f0a727298dc31ede3ebbdd8973d6c46f7b6a1d8', 'to': '0x17c684e2f608dec780518bb0589cf0c858fe5e80', 'value': 120000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x1969368974c05b000000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:32:08.000Z'}}, {'blockNum': '0xa09d28', 'uniqueId': '0x8f4fb33c63e356d4d251581225aa4bdd7168b6a6f37f883db90101428b85e6d2:log:171', 'hash': '0x8f4fb33c63e356d4d251581225aa4bdd7168b6a6f37f883db90101428b85e6d2', 'from': '0xbdc7988ba348f4448ab6115b71bc76f37360c6d3', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:36:51.000Z'}}, {'blockNum': '0xa09d28', 'uniqueId': '0x8f4fb33c63e356d4d251581225aa4bdd7168b6a6f37f883db90101428b85e6d2:log:172', 'hash': '0x8f4fb33c63e356d4d251581225aa4bdd7168b6a6f37f883db90101428b85e6d2', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:36:51.000Z'}}, {'blockNum': '0xa09d2c', 'uniqueId': '0x377fef8c0c149f5fcbc75c8517e95c0440487ed500f61d8ed560c5f97509e706:log:252', 'hash': '0x377fef8c0c149f5fcbc75c8517e95c0440487ed500f61d8ed560c5f97509e706', 'from': '0x7dda7ef96541935417ceab7cd5bb00e4c3775319', 'to': '0x762a8acbb3ed874b346c5d5daf80debcc0ef7435', 'value': 10063.8854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x02219077528cc7fd8000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:38:13.000Z'}}, {'blockNum': '0xa09d5e', 'uniqueId': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5:log:32', 'hash': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5', 'from': '0xb96253c913810238ab092cca19876d42f4d29cb3', 'to': '0x8a3960472b3d63894b68df3f10f58f11828d6fd9', 'value': 10025.37220174883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x021f79fcf4cacadc2ef0', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:49:03.000Z'}}, {'blockNum': '0xa09d5e', 'uniqueId': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5:log:40', 'hash': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5', 'from': '0x8a3960472b3d63894b68df3f10f58f11828d6fd9', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 10054.167470582875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0221099a4d3b9beaa87c', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:49:03.000Z'}}, {'blockNum': '0xa09d5e', 'uniqueId': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5:log:41', 'hash': '0x6f05b3e774395ec60a67f1cb6f01d7a423115e2bc460355f5413c396e4dad9e5', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 10054.167470582875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x0221099a4d3b9beaa87c', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:49:03.000Z'}}, {'blockNum': '0xa09d61', 'uniqueId': '0x8f378e5cd2421601ba504d496bd8d66201d6f666f452117b377baa8fb03c4f35:log:128', 'hash': '0x8f378e5cd2421601ba504d496bd8d66201d6f666f452117b377baa8fb03c4f35', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 15020.961811, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x032e49b87ea353403000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:49:19.000Z'}}, {'blockNum': '0xa09d66', 'uniqueId': '0xdd42a2d975e73e6605f75ac1ddebe01324b8f81a47cf6a626b6672bc5ad3e12d:log:104', 'hash': '0xdd42a2d975e73e6605f75ac1ddebe01324b8f81a47cf6a626b6672bc5ad3e12d', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'value': 1591.5213896073167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5646cbcf9b2c2b4e20', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:50:31.000Z'}}, {'blockNum': '0xa09d66', 'uniqueId': '0xdd42a2d975e73e6605f75ac1ddebe01324b8f81a47cf6a626b6672bc5ad3e12d:log:106', 'hash': '0xdd42a2d975e73e6605f75ac1ddebe01324b8f81a47cf6a626b6672bc5ad3e12d', 'from': '0x7c66550c9c730b6fdd4c03bc2e73c5462c5f7acc', 'to': '0x4ea4c5c2f037dd30af66df3bc6e4e352911abd2f', 'value': 1591.5213896073167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x5646cbcf9b2c2b4e20', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:50:31.000Z'}}, {'blockNum': '0xa09d7d', 'uniqueId': '0xe00ac3ac716c2bb524d7f1864aab1987bbb478ae8efd33b8894dffce973eeec2:log:94', 'hash': '0xe00ac3ac716c2bb524d7f1864aab1987bbb478ae8efd33b8894dffce973eeec2', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8f03b2f832a06dacd4f94ef8cd28b276bd387626', 'value': 36.9949086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'ELF', 'category': 'erc20', 'rawContract': {'value': '0x020168515d410b3000', 'address': '0xbf2179859fc6d5bee9bf9158632dc51678a4100e', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-07-25T02:54:44.000Z'}}]}}
Number of returned transfers:  333
Answer is complete
 
symbol             PPT
group              CPI
date        2020-08-04
hour             18:00
exchange       binance
Name: 1081, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-08-04 18:00:00 2020-08-04 06:00:00 2020-08-05 06:00:00
Unix timestamps:  1596513600.0 1596600000.0
Hex Block Numbers:  0xa19b32 0xa1b459
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa19b3b', 'uniqueId': '0x9632547eb752e61fd2845023430266e3d2fd4251041f716a6d906fe60c4ccf3c:log:113', 'hash': '0x9632547eb752e61fd2845023430266e3d2fd4251041f716a6d906fe60c4ccf3c', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0xcf30e8ffbfb50cf340f29af334a74eee9a878b83', 'value': 140.8040339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034741e7be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:02:09.000Z'}}, {'blockNum': '0xa19b3c', 'uniqueId': '0x25ceb90ebafe0389f1485228ef4018b53ad65fc94a67548a238c22ea90499223:log:146', 'hash': '0x25ceb90ebafe0389f1485228ef4018b53ad65fc94a67548a238c22ea90499223', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0xb9c26242912d05773b100dd54dc035239e2eb79d', 'value': 1054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x188a545e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:02:17.000Z'}}, {'blockNum': '0xa19b42', 'uniqueId': '0xb2881bc599f74625d7a8653d7648a265dd444dbd32161ec9efc3e0180fb61656:log:37', 'hash': '0xb2881bc599f74625d7a8653d7648a265dd444dbd32161ec9efc3e0180fb61656', 'from': '0xb9c26242912d05773b100dd54dc035239e2eb79d', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 1054, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x188a545e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:03:31.000Z'}}, {'blockNum': '0xa19b43', 'uniqueId': '0x37bff7dd08cc4b1e122b9542642d08d220be486edb020570293f083c540d47ae:log:29', 'hash': '0x37bff7dd08cc4b1e122b9542642d08d220be486edb020570293f083c540d47ae', 'from': '0xcf30e8ffbfb50cf340f29af334a74eee9a878b83', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 140.8040339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x034741e7be', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T04:03:37.000Z'}}, {'blockNum': '0xa19c49', 'uniqueId': '0xe9fc8a8ac9981b446e1ffb8d363087d6f76593a1af6a8f5102d4b33fa0ebe533:log:9', 'hash': '0xe9fc8a8ac9981b446e1ffb8d363087d6f76593a1af6a8f5102d4b33fa0ebe533', 'from': '0x7e0d57959c438b7ca4f697f9719c32edbac57ee1', 'to': '0x1b4808b4ece681f043c74d41c32c32a3e0b7c060', 'value': 14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x53724e00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:05:57.000Z'}}, {'blockNum': '0xa19cad', 'uniqueId': '0x865ee03a269de534a5aec5835ea82be67cd924f0a96ce4ab87e35cc8429aa384:log:82', 'hash': '0x865ee03a269de534a5aec5835ea82be67cd924f0a96ce4ab87e35cc8429aa384', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2504.636, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a50cb3d80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:26:25.000Z'}}, {'blockNum': '0xa19d17', 'uniqueId': '0x637f0fb01ea2aa53726947e09beae4e57a8d1414633134945bf5f69b40cc543d:log:205', 'hash': '0x637f0fb01ea2aa53726947e09beae4e57a8d1414633134945bf5f69b40cc543d', 'from': '0x6ba29682abdf39ad6cf291e547cb59e82b0bbdc6', 'to': '0x91ed9ed1137951be5fc49fcb52639149ea528542', 'value': 33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xc4b20100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T05:51:44.000Z'}}, {'blockNum': '0xa19de0', 'uniqueId': '0x9c145838a0facf085b57864b5180e831b56f5fab032777d1fa52c42764c541a3:log:149', 'hash': '0x9c145838a0facf085b57864b5180e831b56f5fab032777d1fa52c42764c541a3', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x59c3106583946e7424c20598f169f6a9969db0bd', 'value': 208.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04d8d97880', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T06:35:25.000Z'}}, {'blockNum': '0xa19e0d', 'uniqueId': '0xc8ce5e6a0ace8d741ff8efe7dc75a3d960ff52d7c0e3080ef457bfe6033677fb:log:94', 'hash': '0xc8ce5e6a0ace8d741ff8efe7dc75a3d960ff52d7c0e3080ef457bfe6033677fb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xab33ab33fbf77da6555d05c7d0f0874c7cb835ca', 'value': 5101.77316868, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x76c8f01004', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T06:47:38.000Z'}}, {'blockNum': '0xa19e78', 'uniqueId': '0x8430d7145033be43aa155d7ff997f30f4a4a512226c78c00db29f07063fb0f80:log:52', 'hash': '0x8430d7145033be43aa155d7ff997f30f4a4a512226c78c00db29f07063fb0f80', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x1f1d77efdbbbc586174d8d9032d2b83c1ac192c6', 'value': 249.90766037, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d190d3d5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T07:14:48.000Z'}}, {'blockNum': '0xa19fb0', 'uniqueId': '0x8efdf13f08fa0b00f6bf56014742cf7e6fc4adcb3cc74c86043a1cd8f21a7ec8:log:74', 'hash': '0x8efdf13f08fa0b00f6bf56014742cf7e6fc4adcb3cc74c86043a1cd8f21a7ec8', 'from': '0xfa839459188b6eeb856765e8f091f9c4dae843f8', 'to': '0x59f6c2698e7cb4dca3236a65d95f6a51c79b0e34', 'value': 5502.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x801ec46000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:27:34.000Z'}}, {'blockNum': '0xa19fb8', 'uniqueId': '0xb243e1cef7be7dc8465ec07dbd9d96e86609d96ddd55c98927a6905e62724cf4:log:83', 'hash': '0xb243e1cef7be7dc8465ec07dbd9d96e86609d96ddd55c98927a6905e62724cf4', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb445ad9c7d2343acb6209a4997cdce4ad05933bc', 'value': 368.53461538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0894a33222', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:29:00.000Z'}}, {'blockNum': '0xa19ff5', 'uniqueId': '0xe4648b4f3445dd69d2a963696f4974c6a1821f1c23c99a6a73b0de2235c13b8b:log:59', 'hash': '0xe4648b4f3445dd69d2a963696f4974c6a1821f1c23c99a6a73b0de2235c13b8b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2312.791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x35d94f0060', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:40:40.000Z'}}, {'blockNum': '0xa19ffb', 'uniqueId': '0x4f6795376859cf0a4dd16c1c9db1dd38252572384a3961971506ca34bbd62d53:log:82', 'hash': '0x4f6795376859cf0a4dd16c1c9db1dd38252572384a3961971506ca34bbd62d53', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1328.565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1eeedd4f20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:42:00.000Z'}}, {'blockNum': '0xa1a011', 'uniqueId': '0xb2d3bf56347a92daf081b96a17370cee0b98bfe7eac717f720cb4761eec19252:log:76', 'hash': '0xb2d3bf56347a92daf081b96a17370cee0b98bfe7eac717f720cb4761eec19252', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 3928.795, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5b79716ae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T08:48:03.000Z'}}, {'blockNum': '0xa1a05a', 'uniqueId': '0xb395aa88f2515531e29d3e304c1245fd0e0062e5440ec8b4321636a345ad9165:log:38', 'hash': '0xb395aa88f2515531e29d3e304c1245fd0e0062e5440ec8b4321636a345ad9165', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 116.79014201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b81f9d39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:06:57.000Z'}}, {'blockNum': '0xa1a071', 'uniqueId': '0x2e0dabf648385dea43b347881d5c915ce715f42aa063b011e374ef86985ecd1c:log:105', 'hash': '0x2e0dabf648385dea43b347881d5c915ce715f42aa063b011e374ef86985ecd1c', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x6a4583839ea1e750407bb37e33ba276b3786ab2c', 'value': 116.79014201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b81f9d39', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:12:55.000Z'}}, {'blockNum': '0xa1a0a8', 'uniqueId': '0x2805a88a4c067e6c1385ce3550375c8f80bca04877303275a36b01d7029f56f4:log:21', 'hash': '0x2805a88a4c067e6c1385ce3550375c8f80bca04877303275a36b01d7029f56f4', 'from': '0xd7a99b3d848be7ccb0ef3f97428b94556aa670bd', 'to': '0xf3874a84d9e45d8e0168d2e0d80e18719bf0f07f', 'value': 100.81065516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258e0da2c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:17.000Z'}}, {'blockNum': '0xa1a0ab', 'uniqueId': '0xc7ab64fe79a41efc7e0bb1b4956c431ae9b609ad5814f5fba51d0d37a9220545:log:52', 'hash': '0xc7ab64fe79a41efc7e0bb1b4956c431ae9b609ad5814f5fba51d0d37a9220545', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 106.20211471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027903910f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:49.000Z'}}, {'blockNum': '0xa1a0ac', 'uniqueId': '0x3d0983530ca36145261a6124c64d74720451d3b967a096f156caa8ec0a01871e:log:28', 'hash': '0x3d0983530ca36145261a6124c64d74720451d3b967a096f156caa8ec0a01871e', 'from': '0xf3874a84d9e45d8e0168d2e0d80e18719bf0f07f', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 100.81065516, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0258e0da2c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:25:54.000Z'}}, {'blockNum': '0xa1a0b2', 'uniqueId': '0xcfa6839010cfaa70faa8a2c49e550e46a22f326b4533f5291c6ef6610f9191a8:log:88', 'hash': '0xcfa6839010cfaa70faa8a2c49e550e46a22f326b4533f5291c6ef6610f9191a8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd010f5b0994119425652c224b81d4cc17971c835', 'value': 106.20211471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027903910f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T09:27:17.000Z'}}, {'blockNum': '0xa1a16e', 'uniqueId': '0x27341f7d18c76e20f72ff2ccbcacbd144d33dfa9d5b3b13030e23eb55234552a:log:174', 'hash': '0x27341f7d18c76e20f72ff2ccbcacbd144d33dfa9d5b3b13030e23eb55234552a', 'from': '0x9586dfb843b02de79dcffb5b4e7738eba721827a', 'to': '0xf849a4874d529166da7515e22efbf2f1a8bf116c', 'value': 0.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x989680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:07:22.000Z'}}, {'blockNum': '0xa1a1c7', 'uniqueId': '0x4a346cc1d441c4facd5587f9648c52e7f26767e520562962be87c761199aa82d:log:37', 'hash': '0x4a346cc1d441c4facd5587f9648c52e7f26767e520562962be87c761199aa82d', 'from': '0x9586dfb843b02de79dcffb5b4e7738eba721827a', 'to': '0xf849a4874d529166da7515e22efbf2f1a8bf116c', 'value': 7.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2a057240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:27:01.000Z'}}, {'blockNum': '0xa1a1f1', 'uniqueId': '0xebd18e07d07dd491ef695a8201dfbfb9cda1a2b84b30ad4304ca886613b64ea8:log:46', 'hash': '0xebd18e07d07dd491ef695a8201dfbfb9cda1a2b84b30ad4304ca886613b64ea8', 'from': '0x59f6c2698e7cb4dca3236a65d95f6a51c79b0e34', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 5502.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x801ec46000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:37:33.000Z'}}, {'blockNum': '0xa1a238', 'uniqueId': '0x486f523b5253dfe210b5aa78a07dfb1693ca13b3f1536aa556e2b5694bf55725:log:104', 'hash': '0x486f523b5253dfe210b5aa78a07dfb1693ca13b3f1536aa556e2b5694bf55725', 'from': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'to': '0x4eebe2a7a91fe38fcd22c8fb17e605243a26fc58', 'value': 69.43564357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019dde6245', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T10:52:49.000Z'}}, {'blockNum': '0xa1a2c8', 'uniqueId': '0xecee9d6ee332adae214b8533b3c86eb6e88d3848b2944993cd793f85aecd4c1b:log:41', 'hash': '0xecee9d6ee332adae214b8533b3c86eb6e88d3848b2944993cd793f85aecd4c1b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1355911d3327533471548423898ec3e05fdd7e2e', 'value': 1833.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aaf8a41a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:25:34.000Z'}}, {'blockNum': '0xa1a2f1', 'uniqueId': '0x80cc03f5ee335771afa2fe37de2ce8dc80ae315739332fb991702b4a980bf70c:log:92', 'hash': '0x80cc03f5ee335771afa2fe37de2ce8dc80ae315739332fb991702b4a980bf70c', 'from': '0x1355911d3327533471548423898ec3e05fdd7e2e', 'to': '0x3a6c03a03fee972766742eb7f891ff755f6335d1', 'value': 1833.337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aaf8a41a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:32:37.000Z'}}, {'blockNum': '0xa1a357', 'uniqueId': '0x68c6d5f1433db0d116a5e7ea9b3a8006bb29eb9efdafea3a32d4294b0d4551fe:log:6', 'hash': '0x68c6d5f1433db0d116a5e7ea9b3a8006bb29eb9efdafea3a32d4294b0d4551fe', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0xc19a2756366d18187ea039642f09bb7515253f45', 'value': 142.31753973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03504754f5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T11:57:47.000Z'}}, {'blockNum': '0xa1a36a', 'uniqueId': '0x5882cbc9fdc87e934038a92ba862ce78cb1a2920a1a30a484e5f80e685a27d85:log:27', 'hash': '0x5882cbc9fdc87e934038a92ba862ce78cb1a2920a1a30a484e5f80e685a27d85', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'value': 142.317539, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03504754ac', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T12:02:17.000Z'}}, {'blockNum': '0xa1a3a5', 'uniqueId': '0x77ee8b3ab7059baad555211b0b2d5a783b8344fd254d3eb12c010b46801e3179:log:227', 'hash': '0x77ee8b3ab7059baad555211b0b2d5a783b8344fd254d3eb12c010b46801e3179', 'from': '0x2cd197c63040796000a6ae0b66ec65b94cea4d84', 'to': '0x4246af949ef88ebd605751fc0ffeaa2bebdcb60d', 'value': 37.27231999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xde290bff', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T12:16:27.000Z'}}, {'blockNum': '0xa1a543', 'uniqueId': '0xf32c7864872f5a17266ec044f9683433efa5890de6442382a4b544a547ca8981:log:172', 'hash': '0xf32c7864872f5a17266ec044f9683433efa5890de6442382a4b544a547ca8981', 'from': '0x4eebe2a7a91fe38fcd22c8fb17e605243a26fc58', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 69.43564357, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x019dde6245', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T13:36:34.000Z'}}, {'blockNum': '0xa1a5d9', 'uniqueId': '0xc8f2e997b86d3913fbe82250ec3bf359403143e5a6d441c6e151028873c3a821:log:110', 'hash': '0xc8f2e997b86d3913fbe82250ec3bf359403143e5a6d441c6e151028873c3a821', 'from': '0xb97adeeef9cb162436f98ceedf81d25e0cd4afbc', 'to': '0x4e90d437329eea593529f84c3600cac76ccb3256', 'value': 948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1612853400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T14:05:55.000Z'}}, {'blockNum': '0xa1a5e5', 'uniqueId': '0x52c7d04c1705145b858ad2385d24aee8dbaacb2e3fd07aad060bcfd617583958:log:6', 'hash': '0x52c7d04c1705145b858ad2385d24aee8dbaacb2e3fd07aad060bcfd617583958', 'from': '0x4e90d437329eea593529f84c3600cac76ccb3256', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 948, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1612853400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T14:08:13.000Z'}}, {'blockNum': '0xa1a7ec', 'uniqueId': '0xf358f57dd362938b7d05bc7edb357539bc39cac92d82fad3cbc0c34775586f61:log:7', 'hash': '0xf358f57dd362938b7d05bc7edb357539bc39cac92d82fad3cbc0c34775586f61', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9a8b70704ab430f93272813a9fc3075af36b2de8', 'value': 3545.623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528d8f5860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:03:13.000Z'}}, {'blockNum': '0xa1a7f1', 'uniqueId': '0xc31c9903a68dc2706e8168c5c0408e1bcaededa00f99ccbe0c23381e56f382ab:log:127', 'hash': '0xc31c9903a68dc2706e8168c5c0408e1bcaededa00f99ccbe0c23381e56f382ab', 'from': '0x9a8b70704ab430f93272813a9fc3075af36b2de8', 'to': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'value': 3545.623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528d8f5860', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:04:13.000Z'}}, {'blockNum': '0xa1a81e', 'uniqueId': '0xdc7d6d878b7e1dfdc936152c912402734d24fd47b4e5ace6992ca7429806862b:log:55', 'hash': '0xdc7d6d878b7e1dfdc936152c912402734d24fd47b4e5ace6992ca7429806862b', 'from': '0x8da4a02499a4abd011a5b61af52150d99e92c068', 'to': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'value': 200.75900756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ac9def54', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:15:01.000Z'}}, {'blockNum': '0xa1a81f', 'uniqueId': '0xd758f8d1346c9c813a7950b6f2cf5a4e2c2f45b9a6877ff49d7be094d6174e5c:log:95', 'hash': '0xd758f8d1346c9c813a7950b6f2cf5a4e2c2f45b9a6877ff49d7be094d6174e5c', 'from': '0x668e891ec3340569e7f1d09bb25390c34029fd74', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 200.75900756, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04ac9def54', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:15:28.000Z'}}, {'blockNum': '0xa1a82e', 'uniqueId': '0xffb940effa905ba6f8791c4f97e4d6238af68bb44f87e996ae69d49e6625bee3:log:5', 'hash': '0xffb940effa905ba6f8791c4f97e4d6238af68bb44f87e996ae69d49e6625bee3', 'from': '0x23b88d66fa8df792fa1d607b559414c0fda61b6a', 'to': '0x3f83fbff779590d8475e7ddf11c1af11731abbcf', 'value': 3546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528fce9a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:19:06.000Z'}}, {'blockNum': '0xa1a877', 'uniqueId': '0xe79596be32ec0d9919c60ee316524d11d606fe9831555ef14001e4c9a6bdebe9:log:157', 'hash': '0xe79596be32ec0d9919c60ee316524d11d606fe9831555ef14001e4c9a6bdebe9', 'from': '0x3f83fbff779590d8475e7ddf11c1af11731abbcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x528fce9a00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:36:05.000Z'}}, {'blockNum': '0xa1a8c4', 'uniqueId': '0x37d6b17169589a0b44bda4f01dfa0815ea677118513e1b394fce5e8237e9b108:log:27', 'hash': '0x37d6b17169589a0b44bda4f01dfa0815ea677118513e1b394fce5e8237e9b108', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x641704311dd7e7b6ff340e2fc2a98f2002bb8e6f', 'value': 4992.198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x743bd19fc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T16:54:02.000Z'}}, {'blockNum': '0xa1a8eb', 'uniqueId': '0xd28d7ae9780a56c346b01f58aefe3176fca6ccb4c18e4f2035d28976b895c64e:log:101', 'hash': '0xd28d7ae9780a56c346b01f58aefe3176fca6ccb4c18e4f2035d28976b895c64e', 'from': '0xee155572635ae7d1f4e30ec3179ce65b5342cb17', 'to': '0x1ac963003b29fcdca2d5f509e46063eb88b55a27', 'value': 204447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12982714bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:00:34.000Z'}}, {'blockNum': '0xa1a95a', 'uniqueId': '0x8510a4ffb0774ea094cc24c62fdf8bd73141cf49c20c9d1b82dea002a8fbf81e:log:2', 'hash': '0x8510a4ffb0774ea094cc24c62fdf8bd73141cf49c20c9d1b82dea002a8fbf81e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9db81f3235c5e3823547178165a24f1d81fa5cb3', 'value': 797.374, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1290b82ac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:24:20.000Z'}}, {'blockNum': '0xa1a974', 'uniqueId': '0xbbf8223f803bf8a9af948f11a6dbcddd150162359613a0bf11fe2b4488a19388:log:273', 'hash': '0xbbf8223f803bf8a9af948f11a6dbcddd150162359613a0bf11fe2b4488a19388', 'from': '0x1ac963003b29fcdca2d5f509e46063eb88b55a27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 204447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12982714bf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T17:30:54.000Z'}}, {'blockNum': '0xa1a9f0', 'uniqueId': '0xab8de5f3f2dc0b8abd0ab993587a814945a5fb881df4b3c0d2bcf1f151a43645:log:119', 'hash': '0xab8de5f3f2dc0b8abd0ab993587a814945a5fb881df4b3c0d2bcf1f151a43645', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x268737253715badc5016befa6113ecc68370b780', 'value': 308.451, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x072e82dfe0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:00:23.000Z'}}, {'blockNum': '0xa1a9f4', 'uniqueId': '0x2d6c032630f5edaef16095f4c410c42e4b44009dbefd0a434e9a27b5b05636e7:log:101', 'hash': '0x2d6c032630f5edaef16095f4c410c42e4b44009dbefd0a434e9a27b5b05636e7', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 646, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f0a75c600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:00:56.000Z'}}, {'blockNum': '0xa1a9f8', 'uniqueId': '0x01a9fdf504af5f2a79d1b059870339cfd183e04ca83d8ac3249374ed5c746a2c:log:123', 'hash': '0x01a9fdf504af5f2a79d1b059870339cfd183e04ca83d8ac3249374ed5c746a2c', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1042.60071783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1846627167', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:01:27.000Z'}}, {'blockNum': '0xa1a9fa', 'uniqueId': '0xee6f3be3f7f97429287219201b4486e72f68562c82181fcd2ef16b5fb0f9680d:log:8', 'hash': '0xee6f3be3f7f97429287219201b4486e72f68562c82181fcd2ef16b5fb0f9680d', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1831.382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2aa3e329c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:02:10.000Z'}}, {'blockNum': '0xa1a9fb', 'uniqueId': '0x457c42bca555ff764e6e4fc3750791775c509e8a29a85c628ec637f74967155d:log:42', 'hash': '0x457c42bca555ff764e6e4fc3750791775c509e8a29a85c628ec637f74967155d', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 15.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x5a4d10c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:02:26.000Z'}}, {'blockNum': '0xa1aa01', 'uniqueId': '0x16df7e25844cabe32e4a02a85b503dee3f227d5b5c75241f02bee845bd351258:log:82', 'hash': '0x16df7e25844cabe32e4a02a85b503dee3f227d5b5c75241f02bee845bd351258', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 558.40524141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0d005ac76d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:03:56.000Z'}}, {'blockNum': '0xa1aa08', 'uniqueId': '0x51cc8a17c9d5bc30bb38e436d44d1fefb444c3e70d3ccc8835a1096a9ae4e765:log:15', 'hash': '0x51cc8a17c9d5bc30bb38e436d44d1fefb444c3e70d3ccc8835a1096a9ae4e765', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'value': 7569.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb04004cae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:05:48.000Z'}}, {'blockNum': '0xa1aa08', 'uniqueId': '0x72f9660a01661d724cd154dd7cf271bb666d5de4d0c473f1c6056894ea931916:log:16', 'hash': '0x72f9660a01661d724cd154dd7cf271bb666d5de4d0c473f1c6056894ea931916', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'value': 2529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3ae203c100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:05:48.000Z'}}, {'blockNum': '0xa1aa16', 'uniqueId': '0x7799d24ab671b0bf6c96a3b99a592f2586f8ff337146c4c343f30661f0c57ff5:log:12', 'hash': '0x7799d24ab671b0bf6c96a3b99a592f2586f8ff337146c4c343f30661f0c57ff5', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 1787.48203421, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x299e39219d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:09:35.000Z'}}, {'blockNum': '0xa1aa28', 'uniqueId': '0x01c979045c770eccb6f59627bc468d9be98d680acec107f657c1e31f08e7cace:log:2', 'hash': '0x01c979045c770eccb6f59627bc468d9be98d680acec107f657c1e31f08e7cace', 'from': '0xfc970f9ecf6e46bf7b1529cf57c35d038974b90f', 'to': '0xa45303a33b168550fc830fc3fef72a24e589d7a8', 'value': 42.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xfb3bcbc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:13:41.000Z'}}, {'blockNum': '0xa1aa3a', 'uniqueId': '0x267ebb576f7d40e5c28675bf7e8b61cb2abca4ab71ed5fd42a12566f55372561:log:6', 'hash': '0x267ebb576f7d40e5c28675bf7e8b61cb2abca4ab71ed5fd42a12566f55372561', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:17:55.000Z'}}, {'blockNum': '0xa1aa3b', 'uniqueId': '0x35829d3bb1efdd81bfe0f8d04e47e58992e1ad474abbb156623f54fd0264c765:log:87', 'hash': '0x35829d3bb1efdd81bfe0f8d04e47e58992e1ad474abbb156623f54fd0264c765', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 616.506789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e5aaab474', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:17:59.000Z'}}, {'blockNum': '0xa1aa6f', 'uniqueId': '0x7948853b3d0a86ce0f1256831bc871abba4c9d089599cd2a807dab46a94bbf4b:log:183', 'hash': '0x7948853b3d0a86ce0f1256831bc871abba4c9d089599cd2a807dab46a94bbf4b', 'from': '0x31ab026b0d7cbe541bfe92f418636a7d69357aa7', 'to': '0xee458347b8bcb1335bd1cfc950a52f404c45b354', 'value': 203.717, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04be3f7920', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:27:53.000Z'}}, {'blockNum': '0xa1aa76', 'uniqueId': '0xe40f21a3c2bcc2c8a18d1ae6adae583cc1a7fd49c8763ca121ca973dbc8466a5:log:68', 'hash': '0xe40f21a3c2bcc2c8a18d1ae6adae583cc1a7fd49c8763ca121ca973dbc8466a5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'value': 344.97699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0808391cb8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:29:35.000Z'}}, {'blockNum': '0xa1aa77', 'uniqueId': '0x923bc4b7dff2f3ad26a49371bc1a503c358760ba93e0418b3be4ab3ee475dc15:log:174', 'hash': '0x923bc4b7dff2f3ad26a49371bc1a503c358760ba93e0418b3be4ab3ee475dc15', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 17384, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0194c0b6e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:30:14.000Z'}}, {'blockNum': '0xa1aa7e', 'uniqueId': '0xb1bf89c4506fe4a2eabca94cb2b0ae4129d05f0a504ce2981037205b3177cd90:log:15', 'hash': '0xb1bf89c4506fe4a2eabca94cb2b0ae4129d05f0a504ce2981037205b3177cd90', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 37607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036b9b300700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:31:49.000Z'}}, {'blockNum': '0xa1aa7f', 'uniqueId': '0xe2bf42d3a9c0e30cb5aa88c8faa1065c447b9c65f7874b8f367992c9908e8a05:log:210', 'hash': '0xe2bf42d3a9c0e30cb5aa88c8faa1065c447b9c65f7874b8f367992c9908e8a05', 'from': '0x40e5ebf13a622db7f0f3a00737906c39decaab04', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7569.883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xb04004cae0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:32:11.000Z'}}, {'blockNum': '0xa1aaa0', 'uniqueId': '0xaabb8d67c7f0021ab933aaa810ae160265820391fe6b26376e64f057cdad6cee:log:88', 'hash': '0xaabb8d67c7f0021ab933aaa810ae160265820391fe6b26376e64f057cdad6cee', 'from': '0x06450acadae3710f5d6d49993af84cda952ec72e', 'to': '0x399427f9bfe909a2602db7274e936bfeedb03c40', 'value': 999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1742810700', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:40:35.000Z'}}, {'blockNum': '0xa1aaa4', 'uniqueId': '0x2273a872e2f755da3b619b66d8f883fa74453ae9193ca29be784b60c8fb51884:log:153', 'hash': '0x2273a872e2f755da3b619b66d8f883fa74453ae9193ca29be784b60c8fb51884', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x3e5f35f16b4c7e19e69a070fda32ecd405d495bf', 'value': 1398.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x20903efac0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:41:47.000Z'}}, {'blockNum': '0xa1aaa5', 'uniqueId': '0x4bd8921cc8eb780905cf6fbfa61a376c8b512dd888c1310b3ce3f469aafa7765:log:64', 'hash': '0x4bd8921cc8eb780905cf6fbfa61a376c8b512dd888c1310b3ce3f469aafa7765', 'from': '0x1446378b0e6de34eab5f7cb0203cef1365acb9ba', 'to': '0x962da0bab76747ba9927a08165e13f1e16da9fd6', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:41:58.000Z'}}, {'blockNum': '0xa1aaa7', 'uniqueId': '0x409f0d503113ef66f0a02ed0b3efd2a03be710b27da0a39a05affbd8f38f5ca0:log:20', 'hash': '0x409f0d503113ef66f0a02ed0b3efd2a03be710b27da0a39a05affbd8f38f5ca0', 'from': '0xbab72d80f70061fa92972d434bbb0aabb6a957de', 'to': '0x5b444b835243d4a2dc7793e3f78f93ae7004646c', 'value': 843.2508205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a22aa3c2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:42:46.000Z'}}, {'blockNum': '0xa1aaa8', 'uniqueId': '0x15b66ddfd795275b375e4f605221087f6b4add7a3b66ee8520030ef33fc3c589:log:36', 'hash': '0x15b66ddfd795275b375e4f605221087f6b4add7a3b66ee8520030ef33fc3c589', 'from': '0x5b444b835243d4a2dc7793e3f78f93ae7004646c', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 843.2508205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x13a22aa3c2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:43:00.000Z'}}, {'blockNum': '0xa1aab4', 'uniqueId': '0x9c037230c4c980c162431bb71e717b4ad3e2e1de9f97dbdf27e69e3a4c66bdc2:log:16', 'hash': '0x9c037230c4c980c162431bb71e717b4ad3e2e1de9f97dbdf27e69e3a4c66bdc2', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5321bd1db60c1f705c2e5bb5d667df0b1ee90ff3', 'value': 667.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f8aa24600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:45:40.000Z'}}, {'blockNum': '0xa1aad0', 'uniqueId': '0xb455f9c4e2def29e86b178804d15673bd234461275547713d00f30dcc7e3fe16:log:122', 'hash': '0xb455f9c4e2def29e86b178804d15673bd234461275547713d00f30dcc7e3fe16', 'from': '0x3b63cc5790c8b06787c55aa2aaaa7a0af14ed7ac', 'to': '0x71025d59ab9def0146e8b4861ba594cad7d4ee1e', 'value': 1000.084, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1748f71480', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:53:23.000Z'}}, {'blockNum': '0xa1aad3', 'uniqueId': '0x1a0d8dc1cbfbb936ffd1b442a012639b855d5401d69e57ab4b3f1357e38f4193:log:153', 'hash': '0x1a0d8dc1cbfbb936ffd1b442a012639b855d5401d69e57ab4b3f1357e38f4193', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xe992fe5238f6f57686c22a0628db5c793414aa68', 'value': 999.27334816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1744221fa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:54:32.000Z'}}, {'blockNum': '0xa1aad7', 'uniqueId': '0x7dc6f7d4367375dc3738eac24d814e4b3516ab5e7e0f10e88b63a95e25ace9f8:log:219', 'hash': '0x7dc6f7d4367375dc3738eac24d814e4b3516ab5e7e0f10e88b63a95e25ace9f8', 'from': '0xe992fe5238f6f57686c22a0628db5c793414aa68', 'to': '0x1cf1420df55d748f4ce161ee795f2c837dcf5819', 'value': 999.27334816, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1744221fa0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:55:08.000Z'}}, {'blockNum': '0xa1aae8', 'uniqueId': '0x1b71017bb127d0f06737d875427d3b1dfc75a3c82279ddaa9966c0b7e67170a2:log:163', 'hash': '0x1b71017bb127d0f06737d875427d3b1dfc75a3c82279ddaa9966c0b7e67170a2', 'from': '0x453cf3463ffae86f22d2cdfc2c5cf2fb858885f7', 'to': '0x63c29c12b5561a695f56eb2b22c24c7de6a28cd6', 'value': 990.7171763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17112270fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T18:59:00.000Z'}}, {'blockNum': '0xa1aaf5', 'uniqueId': '0x45cad63c6bce1496a13da52cfefd7954707e73201f1d1c04ca69ba97770a6486:log:1', 'hash': '0x45cad63c6bce1496a13da52cfefd7954707e73201f1d1c04ca69ba97770a6486', 'from': '0x63c29c12b5561a695f56eb2b22c24c7de6a28cd6', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 990.7171763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x17112270fe', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:00:37.000Z'}}, {'blockNum': '0xa1aaf5', 'uniqueId': '0x69d2945cc81a5d21883103b839fb0f042b29abe424295618fd7b8e00c9aa898e:log:46', 'hash': '0x69d2945cc81a5d21883103b839fb0f042b29abe424295618fd7b8e00c9aa898e', 'from': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2506.68284172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a5cfe790c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:00:37.000Z'}}, {'blockNum': '0xa1aaf7', 'uniqueId': '0xb40693d6ee132a01c7a6db079e396113c0669dd6fdfa51a5778d629225ab99f1:log:101', 'hash': '0xb40693d6ee132a01c7a6db079e396113c0669dd6fdfa51a5778d629225ab99f1', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x57f9cb5d7f7813c3f96c0757147154850059b733', 'value': 189.7213706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x046ad3d664', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:05.000Z'}}, {'blockNum': '0xa1aaf7', 'uniqueId': '0x5b8524d0821991249ba17c99bbe3984ab15b49558b95575e131b7b01ddcca534:log:218', 'hash': '0x5b8524d0821991249ba17c99bbe3984ab15b49558b95575e131b7b01ddcca534', 'from': '0x3d83b7d658457b4e7cd59e116c42fc97b79d5a0e', 'to': '0x9c833b63a894529df923314c2ecb1e884f67f685', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:05.000Z'}}, {'blockNum': '0xa1aaf8', 'uniqueId': '0x4293608abba6e2198f22d40794b974c71e2dba06c2bb631adb5c72422399b4f9:log:44', 'hash': '0x4293608abba6e2198f22d40794b974c71e2dba06c2bb631adb5c72422399b4f9', 'from': '0x8e9269041d059d1651c99ecfb5c49dd1a62ba7d9', 'to': '0xef677ac98187c38a1c5295254d504c2509a17f06', 'value': 2511.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a7b7ea300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:01:38.000Z'}}, {'blockNum': '0xa1ab05', 'uniqueId': '0x398ad8982236c2c4c9d043b63bb3ce7ab443b8b2f3ac49e3605fcf8718e29ff5:log:33', 'hash': '0x398ad8982236c2c4c9d043b63bb3ce7ab443b8b2f3ac49e3605fcf8718e29ff5', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x147523af2347f6e60b18ed985243bcec6e57d6fa', 'value': 2012.73480912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2edcd596d0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:04:23.000Z'}}, {'blockNum': '0xa1ab13', 'uniqueId': '0xacf1ea97a558efe2c2af05ff8a58e63104d1a3d37ef98e6547841a404ec74a9b:log:49', 'hash': '0xacf1ea97a558efe2c2af05ff8a58e63104d1a3d37ef98e6547841a404ec74a9b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbf097fe8ae6d6b2af43a065c04d65505066d6e26', 'value': 759.41561207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ae784377', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:08:05.000Z'}}, {'blockNum': '0xa1ab1d', 'uniqueId': '0xaf9679cd66fd48eb0299dc2ec9413ee6f6100fa1fb16cc6daae664f68a467be7:log:40', 'hash': '0xaf9679cd66fd48eb0299dc2ec9413ee6f6100fa1fb16cc6daae664f68a467be7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 1112.18, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19e51c0080', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:10:59.000Z'}}, {'blockNum': '0xa1ab24', 'uniqueId': '0x711dd23b7e1343baa58a6b574436b9fd93852e5127ef4d7d46c40704a90a53e7:log:18', 'hash': '0x711dd23b7e1343baa58a6b574436b9fd93852e5127ef4d7d46c40704a90a53e7', 'from': '0x8e9269041d059d1651c99ecfb5c49dd1a62ba7d9', 'to': '0x415ad5489d25d61a7fad58406036951f6d929991', 'value': 93.58571818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022dd0792a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:11:54.000Z'}}, {'blockNum': '0xa1ab27', 'uniqueId': '0x8063c721ff98cb9647a92eae71b52de155980e201f364d3097c48d9bbaed8e3e:log:68', 'hash': '0x8063c721ff98cb9647a92eae71b52de155980e201f364d3097c48d9bbaed8e3e', 'from': '0x962da0bab76747ba9927a08165e13f1e16da9fd6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x45d964b800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:12:07.000Z'}}, {'blockNum': '0xa1ab29', 'uniqueId': '0xed77e7852b81c7ec6363563004010b9a62c4f80d4debd05a457e4e71ed0efa93:log:62', 'hash': '0xed77e7852b81c7ec6363563004010b9a62c4f80d4debd05a457e4e71ed0efa93', 'from': '0x415ad5489d25d61a7fad58406036951f6d929991', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 93.58571818, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x022dd0792a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:12:17.000Z'}}, {'blockNum': '0xa1ab2c', 'uniqueId': '0x7776eee081179e8179d1fc48fce623b93d7aebe83c295b9df6942f3e5e3f3308:log:10', 'hash': '0x7776eee081179e8179d1fc48fce623b93d7aebe83c295b9df6942f3e5e3f3308', 'from': '0xbf097fe8ae6d6b2af43a065c04d65505066d6e26', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 759.41561206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11ae784376', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:13:14.000Z'}}, {'blockNum': '0xa1ab2c', 'uniqueId': '0xd2fd586b44b2f3dd367d1d6a6cf8480db59383b1d8d0468d0bcf30db625d9b1f:log:17', 'hash': '0xd2fd586b44b2f3dd367d1d6a6cf8480db59383b1d8d0468d0bcf30db625d9b1f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x15a5e61bbc3aa98c9d3bf7932855bfcec74bd6bb', 'value': 685.63676202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff6b6ac2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:13:14.000Z'}}, {'blockNum': '0xa1ab40', 'uniqueId': '0xae11e1f95d2ab2c463f5a1091bd193dd129b005f792b4bef00f097fa781f9ec7:log:35', 'hash': '0xae11e1f95d2ab2c463f5a1091bd193dd129b005f792b4bef00f097fa781f9ec7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 16552.17993658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae37ba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:17:10.000Z'}}, {'blockNum': '0xa1ab5d', 'uniqueId': '0xfbe3598c1d32d6d3da78fc4da38318ac8581e2c121f954ab4e08b984980d1c60:log:17', 'hash': '0xfbe3598c1d32d6d3da78fc4da38318ac8581e2c121f954ab4e08b984980d1c60', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16552.17993658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae37ba', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:24:48.000Z'}}, {'blockNum': '0xa1ab93', 'uniqueId': '0x868bdd448fdad9ad069bf8f793afc5f3c231b2a9cbe503c180b73f744713612b:log:47', 'hash': '0x868bdd448fdad9ad069bf8f793afc5f3c231b2a9cbe503c180b73f744713612b', 'from': '0x8222c672525c00b41bba09cf4dd274e3cc1a3d3d', 'to': '0xc00eede43acce3bf33316e3b16c1887fc4cd2249', 'value': 250.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x05d6a56500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:35:43.000Z'}}, {'blockNum': '0xa1aba4', 'uniqueId': '0xee3fa180075d429ad20ee2890d79fc6a602be2eef4263ec706f3919257a2b923:log:143', 'hash': '0xee3fa180075d429ad20ee2890d79fc6a602be2eef4263ec706f3919257a2b923', 'from': '0x9c833b63a894529df923314c2ecb1e884f67f685', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x8bb2c97000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:40:22.000Z'}}, {'blockNum': '0xa1abab', 'uniqueId': '0x64197711b2326bb25133a95fab9591246b4569b9bef13be4fa311a1d24a027f9:log:67', 'hash': '0x64197711b2326bb25133a95fab9591246b4569b9bef13be4fa311a1d24a027f9', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 1108.99276747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x19d21cabcb', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:42:22.000Z'}}, {'blockNum': '0xa1abb7', 'uniqueId': '0xa6a77e2b281bacbdecc664e1156b1b188b4ce7960da9fb5d636d4603f59de07d:log:26', 'hash': '0xa6a77e2b281bacbdecc664e1156b1b188b4ce7960da9fb5d636d4603f59de07d', 'from': '0x15a5e61bbc3aa98c9d3bf7932855bfcec74bd6bb', 'to': '0x20c8d3e224375d2061a9969e790e8fad4fa32af1', 'value': 685.63676202, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ff6b6ac2a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:45:34.000Z'}}, {'blockNum': '0xa1abd2', 'uniqueId': '0xc6bf715dbb485490b088dccad66335bd18937b85cea2c599543dfddd545e4dd6:log:44', 'hash': '0xc6bf715dbb485490b088dccad66335bd18937b85cea2c599543dfddd545e4dd6', 'from': '0xbeaa2b0d51398ef7191253710b4c80db8c4236c2', 'to': '0x28581879cad8c188f7687fadc1d35c10d9146e21', 'value': 170.27313444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f6e82f24', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:50:00.000Z'}}, {'blockNum': '0xa1abe1', 'uniqueId': '0xc4be7f5ac018aa3da8a9891f9ead26ea8725eb8b74a787fe148eb1f90dab14c9:log:124', 'hash': '0xc4be7f5ac018aa3da8a9891f9ead26ea8725eb8b74a787fe148eb1f90dab14c9', 'from': '0x28581879cad8c188f7687fadc1d35c10d9146e21', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 170.27313444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03f6e82f24', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:52:49.000Z'}}, {'blockNum': '0xa1abed', 'uniqueId': '0xf13442df7876272bb35e24331bd2da3732f0a43e86ab9a0c55dd57d903656d39:log:13', 'hash': '0xf13442df7876272bb35e24331bd2da3732f0a43e86ab9a0c55dd57d903656d39', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9b37ff7ea63b8f58dc345c8bd9dd8cb20edb4f01', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T19:55:36.000Z'}}, {'blockNum': '0xa1ac00', 'uniqueId': '0xdbe8de02a8ca474fb4a1c8d6b3884c1092cacec2c14f12729eae8689ff37197b:log:72', 'hash': '0xdbe8de02a8ca474fb4a1c8d6b3884c1092cacec2c14f12729eae8689ff37197b', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2064.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x300e755240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:00:31.000Z'}}, {'blockNum': '0xa1ac05', 'uniqueId': '0xc6586f21365eef81be1d98391c74b139e1333d0cfbb8bedad6be36ded3143b9e:log:33', 'hash': '0xc6586f21365eef81be1d98391c74b139e1333d0cfbb8bedad6be36ded3143b9e', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:03:19.000Z'}}, {'blockNum': '0xa1ac05', 'uniqueId': '0x2359b90df14b0096ceee134ccf16ea4701d1c7d1bcc1fbea92ea93ad18729e01:log:92', 'hash': '0x2359b90df14b0096ceee134ccf16ea4701d1c7d1bcc1fbea92ea93ad18729e01', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 458.22961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0aab42e568', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:03:19.000Z'}}, {'blockNum': '0xa1ac2d', 'uniqueId': '0x3779524b9bdd761a48e43ea8d3469fb2a74223dbe28545ff8e3fe4a4388ec602:log:69', 'hash': '0x3779524b9bdd761a48e43ea8d3469fb2a74223dbe28545ff8e3fe4a4388ec602', 'from': '0x0c86b0b5e07259f8ff70f03cb39c758ee03f0645', 'to': '0x87eb0d4a2e07e0685a8eb5ccd3610fc10d32c527', 'value': 9.89, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3af2f140', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:13:52.000Z'}}, {'blockNum': '0xa1ac3a', 'uniqueId': '0xfd3ead419a2c255ac916d486a3d736790842246b3e8373c4d60dafdbce3d31a9:log:172', 'hash': '0xfd3ead419a2c255ac916d486a3d736790842246b3e8373c4d60dafdbce3d31a9', 'from': '0x5d51295e28773c997d0472c6f8273d22c5e84c82', 'to': '0x146bc877c1b80ee73d8c5a06e982ac26762b1c00', 'value': 150.8584643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03832fbf9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:16:40.000Z'}}, {'blockNum': '0xa1ac41', 'uniqueId': '0xd525d35c634cb92a7dd7e27859b21bca647505cc47355fe72797eceed9b571e5:log:0', 'hash': '0xd525d35c634cb92a7dd7e27859b21bca647505cc47355fe72797eceed9b571e5', 'from': '0x146bc877c1b80ee73d8c5a06e982ac26762b1c00', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 150.8584643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03832fbf9e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:17:48.000Z'}}, {'blockNum': '0xa1ac56', 'uniqueId': '0x3e61f04b8c31e5da816e6c7b54513bd45024391d00f3660b2a6cba5debedee94:log:119', 'hash': '0x3e61f04b8c31e5da816e6c7b54513bd45024391d00f3660b2a6cba5debedee94', 'from': '0x175e485af54c94ae8369528eec5e460cee661aa1', 'to': '0x136147be70d81e41b7c0fa59bc0e38d7cb0b1a1d', 'value': 1271.29584701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d9983843d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:21:33.000Z'}}, {'blockNum': '0xa1ac62', 'uniqueId': '0x5a200083f030cb35dbf83b79faa92030283e74d216cd303ad5f25afb162df712:log:99', 'hash': '0x5a200083f030cb35dbf83b79faa92030283e74d216cd303ad5f25afb162df712', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 826.016786, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x133b719708', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:23:42.000Z'}}, {'blockNum': '0xa1ac6f', 'uniqueId': '0xb2b4de64e958b7b2d1eeeb0f496f99eccd7b5aa67ff99e5b32dffa5778c2e4fa:log:191', 'hash': '0xb2b4de64e958b7b2d1eeeb0f496f99eccd7b5aa67ff99e5b32dffa5778c2e4fa', 'from': '0x8cb7c49f98ae135fd403983ef791e41850d05b0e', 'to': '0x1c1f255543b2107b2d124a6ee12c77f86f2a9a85', 'value': 213.99692437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb856495', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:27:02.000Z'}}, {'blockNum': '0xa1ac70', 'uniqueId': '0x2a6c7a4fa422617d0bcf17f8c5063d8bcafa927d54502b8964ab1219b036467b:log:38', 'hash': '0x2a6c7a4fa422617d0bcf17f8c5063d8bcafa927d54502b8964ab1219b036467b', 'from': '0x1c1f255543b2107b2d124a6ee12c77f86f2a9a85', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 213.99692437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04fb856495', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:28:11.000Z'}}, {'blockNum': '0xa1ac70', 'uniqueId': '0x274ba6701eaac258652352dc7cad25e016b9d696ae709c1470f9f87fae189e21:log:48', 'hash': '0x274ba6701eaac258652352dc7cad25e016b9d696ae709c1470f9f87fae189e21', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0x1b7a57b4784412a7bbb9b42f356cd86b48c43ea8', 'value': 615.77341991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0e564bac27', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:28:11.000Z'}}, {'blockNum': '0xa1ac72', 'uniqueId': '0x348c63686131cb8b759d8eb80171812cc2da9a8b1319049bc703ffa75058288e:log:138', 'hash': '0x348c63686131cb8b759d8eb80171812cc2da9a8b1319049bc703ffa75058288e', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0xac8054e60353cc79cbc87d602abcb7ba80a780a7', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:30:08.000Z'}}, {'blockNum': '0xa1ac76', 'uniqueId': '0x90a86d0fba5e03c1e932cf10c88e89095b35005b80ccb8ce589eb58f88a3e6d3:log:3', 'hash': '0x90a86d0fba5e03c1e932cf10c88e89095b35005b80ccb8ce589eb58f88a3e6d3', 'from': '0xea93536da264470ef8f8a66c055d9ac0508e7af6', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:31:05.000Z'}}, {'blockNum': '0xa1ac79', 'uniqueId': '0x61011111efb9e3c7df68d891aeecae393436f885862217059abf22cd4b546faa:log:223', 'hash': '0x61011111efb9e3c7df68d891aeecae393436f885862217059abf22cd4b546faa', 'from': '0xac8054e60353cc79cbc87d602abcb7ba80a780a7', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:31:15.000Z'}}, {'blockNum': '0xa1ac8b', 'uniqueId': '0x5208b0bbe023497db0035c659f2fe3960c86cdf2acae4541a225c5a667caf8a8:log:128', 'hash': '0x5208b0bbe023497db0035c659f2fe3960c86cdf2acae4541a225c5a667caf8a8', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x8951d793d9866c5f100998da96dfaba2926ee492', 'value': 639.76468014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee54b6e2e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:34:05.000Z'}}, {'blockNum': '0xa1ac91', 'uniqueId': '0x7410edb552f76858c7d3b23d68c75804e1a894d380a27225589120a523b810ee:log:259', 'hash': '0x7410edb552f76858c7d3b23d68c75804e1a894d380a27225589120a523b810ee', 'from': '0x8951d793d9866c5f100998da96dfaba2926ee492', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 639.76468014, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ee54b6e2e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:35:34.000Z'}}, {'blockNum': '0xa1acb4', 'uniqueId': '0xcf51e9f8c35fea27f5f3e05f570b7a7471ed7211832049b24cc08339605d37b2:log:64', 'hash': '0xcf51e9f8c35fea27f5f3e05f570b7a7471ed7211832049b24cc08339605d37b2', 'from': '0x1583963e9060e93fe9076068e13c9d57a36a3a08', 'to': '0xcf0827f3ecd7855eb0cef14b17f1a5332f7dff6e', 'value': 198.65261596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a00fd61c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:42:18.000Z'}}, {'blockNum': '0xa1acb8', 'uniqueId': '0xf045cd66303f239cb8300cc2bf2f390ea4a3ada8fd3ad2e92ed838aa75f3699c:log:68', 'hash': '0xf045cd66303f239cb8300cc2bf2f390ea4a3ada8fd3ad2e92ed838aa75f3699c', 'from': '0xcf0827f3ecd7855eb0cef14b17f1a5332f7dff6e', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 198.65261596, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a00fd61c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T20:43:35.000Z'}}, {'blockNum': '0xa1ad07', 'uniqueId': '0xac80a0c1c23d00d7b1b50717da37b225b0b2b1a8f966f6a2dcc92c4c7324a0da:log:149', 'hash': '0xac80a0c1c23d00d7b1b50717da37b225b0b2b1a8f966f6a2dcc92c4c7324a0da', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3564.07509263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52fb8b010f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:00:44.000Z'}}, {'blockNum': '0xa1ad0f', 'uniqueId': '0xb84fb8c03c1269d015e1b1baede332b22e775bddbed8f5334d7e41c756aabf21:log:35', 'hash': '0xb84fb8c03c1269d015e1b1baede332b22e775bddbed8f5334d7e41c756aabf21', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2083.13107896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x30806dc5b8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:02:40.000Z'}}, {'blockNum': '0xa1ad26', 'uniqueId': '0x6dd1f2dfb556dd92fd639abe1bbfe9ae403c7e1033b5c37de33c7efe44978b03:log:8', 'hash': '0x6dd1f2dfb556dd92fd639abe1bbfe9ae403c7e1033b5c37de33c7efe44978b03', 'from': '0x7e0d57959c438b7ca4f697f9719c32edbac57ee1', 'to': '0x357e29eac34fd2893b5df6c8cde3272fa7022d42', 'value': 6734.4223219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9ccc48f77e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:06:47.000Z'}}, {'blockNum': '0xa1ad2c', 'uniqueId': '0x5ca1cfd2f79bb8fe4121cc9129bba98dac3fa568c235431b6df1126f9454e1f9:log:28', 'hash': '0x5ca1cfd2f79bb8fe4121cc9129bba98dac3fa568c235431b6df1126f9454e1f9', 'from': '0x5321bd1db60c1f705c2e5bb5d667df0b1ee90ff3', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 667.504, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f8aa24600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:07:30.000Z'}}, {'blockNum': '0xa1ad30', 'uniqueId': '0xe9c1f1f6cc33112e677720b75770695a6c89cec5aceea4f2d5d5ba0dd15b8fd1:log:15', 'hash': '0xe9c1f1f6cc33112e677720b75770695a6c89cec5aceea4f2d5d5ba0dd15b8fd1', 'from': '0x80b5b304c0eac3041b4507bb1c879d8e5745dcac', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1664.24094282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26bfa6264a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:09:23.000Z'}}, {'blockNum': '0xa1ad43', 'uniqueId': '0x835717ab14db11c636a1931f32c7306fba14d7297b17df15f5971f4e596ab991:log:52', 'hash': '0x835717ab14db11c636a1931f32c7306fba14d7297b17df15f5971f4e596ab991', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 1092.261049, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x196e621844', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:14:14.000Z'}}, {'blockNum': '0xa1ad48', 'uniqueId': '0xca553f3099c7b796923597e03ddf2be59d9ae59b827c4c8976d4b67fd8cf51a3:log:56', 'hash': '0xca553f3099c7b796923597e03ddf2be59d9ae59b827c4c8976d4b67fd8cf51a3', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1927.812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2ce2a7aa80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:15:22.000Z'}}, {'blockNum': '0xa1ad54', 'uniqueId': '0xf2d92219ae0cb8c67ad168684857acee59a699ba2c083fccb10afd6a32317d58:log:17', 'hash': '0xf2d92219ae0cb8c67ad168684857acee59a699ba2c083fccb10afd6a32317d58', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 1477.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2265fd7f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:18:53.000Z'}}, {'blockNum': '0xa1ad64', 'uniqueId': '0xfaf1acbb3e9130678a97c7ac95b4c1add0b2b4259eb20d777edeadcd91b64908:log:66', 'hash': '0xfaf1acbb3e9130678a97c7ac95b4c1add0b2b4259eb20d777edeadcd91b64908', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xfe22dc8a10cd4055239d4c314df55278142a5471', 'value': 1262.207289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1d63577a44', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:21:14.000Z'}}, {'blockNum': '0xa1ad6e', 'uniqueId': '0xcfa986da1224978ad87387e01d821530930791fa5d5f20be0dd8ea883ed566a5:log:5', 'hash': '0xcfa986da1224978ad87387e01d821530930791fa5d5f20be0dd8ea883ed566a5', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 1477.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2265fd7f00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:23:34.000Z'}}, {'blockNum': '0xa1ad8f', 'uniqueId': '0xbe12e0699809272b8f2d27655b2df7e5d982da1a9ff9e17a39952917437a7bbe:log:166', 'hash': '0xbe12e0699809272b8f2d27655b2df7e5d982da1a9ff9e17a39952917437a7bbe', 'from': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4801.22798668, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6fc98c824c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:30:52.000Z'}}, {'blockNum': '0xa1adaa', 'uniqueId': '0xaebb8bba471f8588265cd973b7776a55b4998aae1aa4016474f6115331a91189:log:35', 'hash': '0xaebb8bba471f8588265cd973b7776a55b4998aae1aa4016474f6115331a91189', 'from': '0xeb780701cf8f4878b3bdcaf190d95cd5a1aaafd6', 'to': '0x1e5eb041caccb99a9891cd27d5cb39bea1cdf027', 'value': 220.63488862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0523161f5e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:34:03.000Z'}}, {'blockNum': '0xa1adb6', 'uniqueId': '0xdd93777d8c13275e67183590cc6afb72d8c8543c6207cd7cc0c1f9512e3aa3cb:log:36', 'hash': '0xdd93777d8c13275e67183590cc6afb72d8c8543c6207cd7cc0c1f9512e3aa3cb', 'from': '0xb27334f24f94ff7bcedfd90e6bd14ba95b71f4e4', 'to': '0xf1b7e886ce565dabf18aebd90e0706e03605617f', 'value': 9437.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdbbeadd0a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:37:47.000Z'}}, {'blockNum': '0xa1add6', 'uniqueId': '0xcb44533eb4f4f84318deda0c4f0c392c4682f14ea541b8cfbfff8f21dce9b5df:log:50', 'hash': '0xcb44533eb4f4f84318deda0c4f0c392c4682f14ea541b8cfbfff8f21dce9b5df', 'from': '0x1203de80e5eef81899a99ec3fe9e7e5630ba9cc8', 'to': '0xb39c99249de77392aade86dd589223bd5d5cc09c', 'value': 789.63309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12629479c8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:45:37.000Z'}}, {'blockNum': '0xa1ae01', 'uniqueId': '0x620741bc9aecd4f7fd9f88bb36b235fd9b5eb25e76ba7b003e4f3742fd034c49:log:75', 'hash': '0x620741bc9aecd4f7fd9f88bb36b235fd9b5eb25e76ba7b003e4f3742fd034c49', 'from': '0x27f7a9a19b02a1b2db366d465a2966f925c53be5', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 1848.20614296, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2b082ac498', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T21:54:21.000Z'}}, {'blockNum': '0xa1ae4c', 'uniqueId': '0x7f2999fc41eb0c0ec1f484ec5970d8111d3b94cf298809a6ba74cd847ed0b86b:log:4', 'hash': '0x7f2999fc41eb0c0ec1f484ec5970d8111d3b94cf298809a6ba74cd847ed0b86b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 767.74488414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e01db95e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:13:28.000Z'}}, {'blockNum': '0xa1ae56', 'uniqueId': '0xcce2fa7681d059a9372666b3ba746e8a4f5cd54298708db1b86e925f4d236867:log:91', 'hash': '0xcce2fa7681d059a9372666b3ba746e8a4f5cd54298708db1b86e925f4d236867', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xaae374c03680420ccfec622ee6a8e0ecc5cce28d', 'value': 28.7940905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba04b9a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:07.000Z'}}, {'blockNum': '0xa1ae56', 'uniqueId': '0x23076c1fa64dfd133df1104471ad72bedaf0e3e367dfbd50c944203b3b48e8b6:log:166', 'hash': '0x23076c1fa64dfd133df1104471ad72bedaf0e3e367dfbd50c944203b3b48e8b6', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x34d52438bf89a0fa3cda628be00cb48cbca139d5', 'value': 767.74488414, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11e01db95e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:07.000Z'}}, {'blockNum': '0xa1ae57', 'uniqueId': '0xdc6be451a8729f48f5480b3d5ce8a2e29da5acc4b9ba662b3d786f4b438cd963:log:118', 'hash': '0xdc6be451a8729f48f5480b3d5ce8a2e29da5acc4b9ba662b3d786f4b438cd963', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'value': 2352.21750592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x36c44f1340', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:15:36.000Z'}}, {'blockNum': '0xa1ae5e', 'uniqueId': '0x00ce56d6bb357c0104d906df475ff3d2a816fa572115866e9365b3c6c5da9a7e:log:48', 'hash': '0x00ce56d6bb357c0104d906df475ff3d2a816fa572115866e9365b3c6c5da9a7e', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xd236d0493e20407d6b9a4d8fc64cebf772d5cdb4', 'value': 20.6459829, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x7b0f4512', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:17:25.000Z'}}, {'blockNum': '0xa1ae62', 'uniqueId': '0xbf832a20e020a9a11aa6c25ff2a8167944d745e4c7f4bf9f56860dbdcc774340:log:47', 'hash': '0xbf832a20e020a9a11aa6c25ff2a8167944d745e4c7f4bf9f56860dbdcc774340', 'from': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 958.312363, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x164ffc9ecc', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:18:41.000Z'}}, {'blockNum': '0xa1ae70', 'uniqueId': '0x9df4504b9b0586db08b4870a9e1ac19068fcac0eab4a36ce667b03e35c43aaf9:log:1', 'hash': '0x9df4504b9b0586db08b4870a9e1ac19068fcac0eab4a36ce667b03e35c43aaf9', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2121.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x31666fcb00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:22:20.000Z'}}, {'blockNum': '0xa1ae8d', 'uniqueId': '0x6e586eb055b805b53b161c1e44db61b8d78c5223bf850ee79756378bd81ab333:log:82', 'hash': '0x6e586eb055b805b53b161c1e44db61b8d78c5223bf850ee79756378bd81ab333', 'from': '0x689c56aef474df92d44a1b70850f808488f9769c', 'to': '0x2b5634c42055806a59e9107ed44d43c426e58258', 'value': 16815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01878135cf00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:30:02.000Z'}}, {'blockNum': '0xa1ae9a', 'uniqueId': '0xdbbaa7c46eae7edcb0823fd42a7b4b1bec5c3cf34e9e9ff043908fc3a9761550:log:39', 'hash': '0xdbbaa7c46eae7edcb0823fd42a7b4b1bec5c3cf34e9e9ff043908fc3a9761550', 'from': '0xf779f407e59bd00799e690cf73ebd8753bc91307', 'to': '0xa19b86b565edfb7476dbc604004514c616ee3f03', 'value': 1430, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x214b76d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:33:56.000Z'}}, {'blockNum': '0xa1ae9c', 'uniqueId': '0x2fa85ee43a1f867836df9a7a42b708daaded98ac2b44e781a32c06a96eb1accb:log:11', 'hash': '0x2fa85ee43a1f867836df9a7a42b708daaded98ac2b44e781a32c06a96eb1accb', 'from': '0x2cd0cd7fac0c41f919e8337c35282a5eb671fa90', 'to': '0xaf5d8a6adb591d492aaa2a06d2632e635eff6801', 'value': 331.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07b812a240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:45.000Z'}}, {'blockNum': '0xa1ae9d', 'uniqueId': '0xa9ae44344e13d0628abb2156aae89b53ae0c4eacf910b6e3baa856436d3ef4a5:log:117', 'hash': '0xa9ae44344e13d0628abb2156aae89b53ae0c4eacf910b6e3baa856436d3ef4a5', 'from': '0x357e29eac34fd2893b5df6c8cde3272fa7022d42', 'to': '0x689c56aef474df92d44a1b70850f808488f9769c', 'value': 6734.4223219, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x9ccc48f77e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:58.000Z'}}, {'blockNum': '0xa1ae9d', 'uniqueId': '0xaaef74d03123c6faa7644d26e1dc6446fcaf9b2a3b46ef21b5772b99a78fe129:log:123', 'hash': '0xaaef74d03123c6faa7644d26e1dc6446fcaf9b2a3b46ef21b5772b99a78fe129', 'from': '0xf1b7e886ce565dabf18aebd90e0706e03605617f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 9437.969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xdbbeadd0a0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:34:58.000Z'}}, {'blockNum': '0xa1ae9e', 'uniqueId': '0x9ec916648fe56bdc49a0cca83657aa2d420210ffc158e76973f8570ea8fcbc4b:log:87', 'hash': '0x9ec916648fe56bdc49a0cca83657aa2d420210ffc158e76973f8570ea8fcbc4b', 'from': '0xc1a1a591ae09b04db9e0901893114509409e2d89', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2352.21750592, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x36c44f1340', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:35:08.000Z'}}, {'blockNum': '0xa1aea3', 'uniqueId': '0xb0391ba87a6040ca310138199e950e0285cbfe245af681034eff53b607272395:log:57', 'hash': '0xb0391ba87a6040ca310138199e950e0285cbfe245af681034eff53b607272395', 'from': '0xaf5d8a6adb591d492aaa2a06d2632e635eff6801', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 331.53, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x07b812a240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:35:57.000Z'}}, {'blockNum': '0xa1aed0', 'uniqueId': '0xee81568bf866932651d8eb5d427bb25a9aa0197b81effa88aed5d2cbba049ae3:log:10', 'hash': '0xee81568bf866932651d8eb5d427bb25a9aa0197b81effa88aed5d2cbba049ae3', 'from': '0x161da8b1cba591ebf11edd0aaa65e4568df395b4', 'to': '0xb406d97c3bc7dc2e9b1c0755ad1f110f0d43fff3', 'value': 423.02299999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x09d969df5f', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:46:38.000Z'}}, {'blockNum': '0xa1aee4', 'uniqueId': '0x8fc93953e8b5997daefff49349e7d901fa57ee3ef9c69443c40a90800c9b9a75:log:3', 'hash': '0x8fc93953e8b5997daefff49349e7d901fa57ee3ef9c69443c40a90800c9b9a75', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T22:51:11.000Z'}}, {'blockNum': '0xa1af1c', 'uniqueId': '0x9630e0182963395f5b238c062eb49ca28dfc41e92e6eb7fd6ede01199080a61c:log:25', 'hash': '0x9630e0182963395f5b238c062eb49ca28dfc41e92e6eb7fd6ede01199080a61c', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 136.15535641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032b8c9619', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:04:10.000Z'}}, {'blockNum': '0xa1af27', 'uniqueId': '0xe5237059ad9af74445343f3ef358ed778c370759601928fbe1ba6c399b8606f8:log:29', 'hash': '0xe5237059ad9af74445343f3ef358ed778c370759601928fbe1ba6c399b8606f8', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x857059f0371b79d51bb22c5376af84358bc8ec0d', 'value': 136.15535641, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032b8c9619', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:05:40.000Z'}}, {'blockNum': '0xa1af4c', 'uniqueId': '0xaf5e9212f73b8ccd8d0c1243bcc63cf2fdd97931712d6f00094454976c716244:log:16', 'hash': '0xaf5e9212f73b8ccd8d0c1243bcc63cf2fdd97931712d6f00094454976c716244', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 19617.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c8c0d6f580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:11:30.000Z'}}, {'blockNum': '0xa1af4c', 'uniqueId': '0x8e422438f51affc2f69b03f06a5bb7d2c73ab6c2586f34980ae6ddebf00451ce:log:17', 'hash': '0x8e422438f51affc2f69b03f06a5bb7d2c73ab6c2586f34980ae6ddebf00451ce', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2519.141, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3aa7401d20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:11:30.000Z'}}, {'blockNum': '0xa1afa2', 'uniqueId': '0xceac27066b9e2b8229183b4e0ef6926bad15ecb437cadee82803a2fb16968813:log:209', 'hash': '0xceac27066b9e2b8229183b4e0ef6926bad15ecb437cadee82803a2fb16968813', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19617.404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01c8c0d6f580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:32:17.000Z'}}, {'blockNum': '0xa1afc8', 'uniqueId': '0xbb5082095328f57994397ccd6ad5ee243cdc0d08aa38ad31363bdfe7c3043d3e:log:12', 'hash': '0xbb5082095328f57994397ccd6ad5ee243cdc0d08aa38ad31363bdfe7c3043d3e', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7c896da2a58a6056dced0348dad02812099b2932', 'value': 2507.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a61741260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:40:16.000Z'}}, {'blockNum': '0xa1afc8', 'uniqueId': '0xc72615f0b2bcc5cf04a202d3c241626392ba66705067671164bf9be8a3d4b316:log:15', 'hash': '0xc72615f0b2bcc5cf04a202d3c241626392ba66705067671164bf9be8a3d4b316', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'value': 16552.1799155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae2f7e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:40:16.000Z'}}, {'blockNum': '0xa1afd5', 'uniqueId': '0x7f0d41b61348b0894ab8fd4bd9e04ef7a6222d7db424a0a5726a1902655db7e2:log:14', 'hash': '0x7f0d41b61348b0894ab8fd4bd9e04ef7a6222d7db424a0a5726a1902655db7e2', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd44f8a53c9650d3be610372b3df8243075735cdd', 'value': 145.66153577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x036435dd69', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:42:29.000Z'}}, {'blockNum': '0xa1afd6', 'uniqueId': '0xb2026cecc4cf3d1fa9c4e34bfc03ed6fccf5d40875eb7287d225f09ad9335312:log:29', 'hash': '0xb2026cecc4cf3d1fa9c4e34bfc03ed6fccf5d40875eb7287d225f09ad9335312', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'value': 15329.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164ed2e1e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:42:36.000Z'}}, {'blockNum': '0xa1afda', 'uniqueId': '0x0cbebb2024857b25842edc9c81db0aacb516676a041ac3160688df6c1d6162bb:log:1', 'hash': '0x0cbebb2024857b25842edc9c81db0aacb516676a041ac3160688df6c1d6162bb', 'from': '0x3c5883c650d600bd543a9b5c8d9a3a6f5d16b8f4', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 16552.1799155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018162ae2f7e', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:43:21.000Z'}}, {'blockNum': '0xa1afda', 'uniqueId': '0x12facbfa25bef0a494dbc4c9751908a9b3d76b461ca8383f6c580a063fa27de8:log:2', 'hash': '0x12facbfa25bef0a494dbc4c9751908a9b3d76b461ca8383f6c580a063fa27de8', 'from': '0x7c896da2a58a6056dced0348dad02812099b2932', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 2507.431, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a61741260', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:43:21.000Z'}}, {'blockNum': '0xa1afdf', 'uniqueId': '0xcc4393188ae325c70e62f8cb1ac7d96e4b4fe68c4b5ae28e9b7be2dd2a351101:log:3', 'hash': '0xcc4393188ae325c70e62f8cb1ac7d96e4b4fe68c4b5ae28e9b7be2dd2a351101', 'from': '0xf7ac96136b029096ed1dc48d060b59053135ee6d', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 15329.8758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0164ed2e1e60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:45:48.000Z'}}, {'blockNum': '0xa1b001', 'uniqueId': '0x21d5cd7f3f560cb00c845eedf91131d4811f264cf1da9155923c61d36bfa6406:log:30', 'hash': '0x21d5cd7f3f560cb00c845eedf91131d4811f264cf1da9155923c61d36bfa6406', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'value': 3130.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x48e5d53300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-04T23:54:40.000Z'}}, {'blockNum': '0xa1b015', 'uniqueId': '0x8433666200ee7263b56d7af58f9eca2737bf25ffc140c7ccb3b2cacb37e0ab29:log:105', 'hash': '0x8433666200ee7263b56d7af58f9eca2737bf25ffc140c7ccb3b2cacb37e0ab29', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbf767800b7c5659cfe5f4c4eb79cdc62740da3cf', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:01:32.000Z'}}, {'blockNum': '0xa1b028', 'uniqueId': '0xe4c38d332d60e5ad09375ed80c7cc508e4d6716a6ae410577ebee3e5684ff064:log:46', 'hash': '0xe4c38d332d60e5ad09375ed80c7cc508e4d6716a6ae410577ebee3e5684ff064', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 2503.932, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3a4c990580', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:08:17.000Z'}}, {'blockNum': '0xa1b030', 'uniqueId': '0xf81d819075101edf73d224813b858eedde0cd29a455fc6a938ace88edd2cf22d:log:133', 'hash': '0xf81d819075101edf73d224813b858eedde0cd29a455fc6a938ace88edd2cf22d', 'from': '0xf18f81517755f3a386cbee515dc0c198483146c0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3130.936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x48e5d53300', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:10:41.000Z'}}, {'blockNum': '0xa1b094', 'uniqueId': '0xb8a1b00e95a81e69baae7196801956c46e8e42b64900dad433bf51b32a3387e7:log:18', 'hash': '0xb8a1b00e95a81e69baae7196801956c46e8e42b64900dad433bf51b32a3387e7', 'from': '0x04bf40a81dd28591465823089c9d3a7ad19bc6b3', 'to': '0x3645250b59efbdd11561bfe25a8d2833b9a58868', 'value': 109.58522944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x028d2dca40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:30:38.000Z'}}, {'blockNum': '0xa1b095', 'uniqueId': '0xc43ddc36a41e16dae82346f7aadfc09d7f4255d8071a2ac1f2bc9bf4706d658f:log:242', 'hash': '0xc43ddc36a41e16dae82346f7aadfc09d7f4255d8071a2ac1f2bc9bf4706d658f', 'from': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 29958.782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02b9884182c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:30:47.000Z'}}, {'blockNum': '0xa1b097', 'uniqueId': '0x31169283bd1cf62cf7e4ce8704604a2e44130a669867da6d72c8658d2979a498:log:192', 'hash': '0x31169283bd1cf62cf7e4ce8704604a2e44130a669867da6d72c8658d2979a498', 'from': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 49679.997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0484b3db7c20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:31:00.000Z'}}, {'blockNum': '0xa1b0a3', 'uniqueId': '0x9bc6b2b547b17c20c980d2c23a616386a8e51e0ca5a562f4a204aba3640a1b60:log:60', 'hash': '0x9bc6b2b547b17c20c980d2c23a616386a8e51e0ca5a562f4a204aba3640a1b60', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4c09984091d0dc4b86502d03727059528bdb4141', 'value': 986.18500001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16f61ee3a1', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:33:41.000Z'}}, {'blockNum': '0xa1b0d9', 'uniqueId': '0xd9ccdd7401dad344f6014f840791feb653282af6400b8dcf8be7d084ea15c9c6:log:22', 'hash': '0xd9ccdd7401dad344f6014f840791feb653282af6400b8dcf8be7d084ea15c9c6', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd0072ee2bed1b15cc7c6e01efc7a9e40dad66d1c', 'value': 571.59282869, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0d4ef570b5', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T00:44:35.000Z'}}, {'blockNum': '0xa1b15c', 'uniqueId': '0x4551901515939df6edede3b133c5aa3aeb429ec14f432f52763180aa5627dfe7:log:93', 'hash': '0x4551901515939df6edede3b133c5aa3aeb429ec14f432f52763180aa5627dfe7', 'from': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2050.573412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x2fbe5eb710', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:09:45.000Z'}}, {'blockNum': '0xa1b194', 'uniqueId': '0x20532199e5407def7145d89e731f3b7ad9a4db1b3fd847434a50c52d4f82fd1b:log:44', 'hash': '0x20532199e5407def7145d89e731f3b7ad9a4db1b3fd847434a50c52d4f82fd1b', 'from': '0xa96b536eef496e21f5432fd258b6f78cf3673f74', 'to': '0x8b453d020ecec6433beb4a09589a3c90033b9104', 'value': 82.93640992, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01ee56eb20', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:22:33.000Z'}}, {'blockNum': '0xa1b1b0', 'uniqueId': '0xb4b39d0172ff347701a60df1df049f7e47ecee702132d08c8e1918af2386f7f2:log:5', 'hash': '0xb4b39d0172ff347701a60df1df049f7e47ecee702132d08c8e1918af2386f7f2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8b453d020ecec6433beb4a09589a3c90033b9104', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04a817c800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:26:36.000Z'}}, {'blockNum': '0xa1b1b0', 'uniqueId': '0x8174bf1936ae8746801997a8a13b548224a244e5c818156e7a6aa00a11f41d44:log:8', 'hash': '0x8174bf1936ae8746801997a8a13b548224a244e5c818156e7a6aa00a11f41d44', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe23937a89f8d9f0a50bc655cee409258d632b3de', 'value': 193.78164, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0483075120', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:26:36.000Z'}}, {'blockNum': '0xa1b21e', 'uniqueId': '0x20ada5c551fddb64342e44dbcb9deb3a76af47a00bc0e11872a77520c5af74b2:log:60', 'hash': '0x20ada5c551fddb64342e44dbcb9deb3a76af47a00bc0e11872a77520c5af74b2', 'from': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'to': '0x04d5e5aa341773695ecab47bbd68175732766884', 'value': 319.69, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0771803a40', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:53:08.000Z'}}, {'blockNum': '0xa1b221', 'uniqueId': '0xb78e623a511273c0e077345d0c5a4c684c9310f6c4dd1e28920ef48a3e77ccc0:log:48', 'hash': '0xb78e623a511273c0e077345d0c5a4c684c9310f6c4dd1e28920ef48a3e77ccc0', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0x818fc66be24f3221fb13bae9109bfc05c7b9ddb4', 'value': 0.003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0493e0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:54:25.000Z'}}, {'blockNum': '0xa1b226', 'uniqueId': '0x69c6582f04c89b40d7d0e198242f3dd8196ea22cea2a8c907e11d35e72762169:log:101', 'hash': '0x69c6582f04c89b40d7d0e198242f3dd8196ea22cea2a8c907e11d35e72762169', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x992a93edfa32a04f838d6cd5b3287c7b947cccae', 'value': 58.372926, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015bee0438', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T01:56:27.000Z'}}, {'blockNum': '0xa1b244', 'uniqueId': '0x3bfbabeea1c3f5a9a8a3edb0eed34ffdff8b69e4f32c27cb60cdf8473069bedf:log:168', 'hash': '0x3bfbabeea1c3f5a9a8a3edb0eed34ffdff8b69e4f32c27cb60cdf8473069bedf', 'from': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3512.44708578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x51c7d0eae2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:01:59.000Z'}}, {'blockNum': '0xa1b264', 'uniqueId': '0xc811cb3f77e6d838e4bc49360292b370b53c50c407ec1a7f78fd28c94f04f6c7:log:17', 'hash': '0xc811cb3f77e6d838e4bc49360292b370b53c50c407ec1a7f78fd28c94f04f6c7', 'from': '0x818fc66be24f3221fb13bae9109bfc05c7b9ddb4', 'to': '0xeb1584075e174c9998bd9cd672f812c05945089b', 'value': 188.447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04633b4d60', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:09:19.000Z'}}, {'blockNum': '0xa1b2bc', 'uniqueId': '0xf11f959ce02d20fe90691f0fc79516724d4bb53a667c7f70c7bf198f2253c9eb:log:95', 'hash': '0xf11f959ce02d20fe90691f0fc79516724d4bb53a667c7f70c7bf198f2253c9eb', 'from': '0x18b2e69083d6f20337c62667998045252565af56', 'to': '0x5355be56a8b2b4d82894d0ecd48b3e22a6aa35b9', 'value': 510.08, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0be0505000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:29:57.000Z'}}, {'blockNum': '0xa1b2ea', 'uniqueId': '0x75ba2e34146d8eaaef7205e21858a571eb0176643dfb736d798c28c849044266:log:47', 'hash': '0x75ba2e34146d8eaaef7205e21858a571eb0176643dfb736d798c28c849044266', 'from': '0x38b706fc6b521996fdbd57d5808f9a8d6f2906e5', 'to': '0x845eb3acc1f315392ff405da89bad19c701e12db', 'value': 20, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x77359400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:40:14.000Z'}}, {'blockNum': '0xa1b2f2', 'uniqueId': '0x21c7428990bb06b64b060fad5fe71639f6a7e4ace04c998bb2511c9044b42696:log:17', 'hash': '0x21c7428990bb06b64b060fad5fe71639f6a7e4ace04c998bb2511c9044b42696', 'from': '0xbf767800b7c5659cfe5f4c4eb79cdc62740da3cf', 'to': '0xbd1b449e02510600095b7219c685cf9d42084d4a', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:41:38.000Z'}}, {'blockNum': '0xa1b2fc', 'uniqueId': '0xef8c2fc1e3e85249bf770834b1392041794d875c0aa0395a396f370b38cf5068:log:75', 'hash': '0xef8c2fc1e3e85249bf770834b1392041794d875c0aa0395a396f370b38cf5068', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfe2065d6cece3157c9f100dce3568bffc1c05a16', 'value': 42.896386, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xffaeb0c8', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:43:02.000Z'}}, {'blockNum': '0xa1b2fd', 'uniqueId': '0x7d8715a06cee0db9d3b5b623b88b59e0bc6bf8808bad47d01133015d40cc6289:log:45', 'hash': '0x7d8715a06cee0db9d3b5b623b88b59e0bc6bf8808bad47d01133015d40cc6289', 'from': '0xbd1b449e02510600095b7219c685cf9d42084d4a', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1010.91125548, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x178980292c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:43:35.000Z'}}, {'blockNum': '0xa1b30b', 'uniqueId': '0x31f89b25dd3781ce81c8631a6bf63e7c54ab5c6d70e1123ae809985c222b5fdc:log:33', 'hash': '0x31f89b25dd3781ce81c8631a6bf63e7c54ab5c6d70e1123ae809985c222b5fdc', 'from': '0x38b706fc6b521996fdbd57d5808f9a8d6f2906e5', 'to': '0x845eb3acc1f315392ff405da89bad19c701e12db', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:46:36.000Z'}}, {'blockNum': '0xa1b313', 'uniqueId': '0xa1dc078dcda7074111fbaebfc96bfb8a1a7106df15eecb5e67d343e059580e70:log:22', 'hash': '0xa1dc078dcda7074111fbaebfc96bfb8a1a7106df15eecb5e67d343e059580e70', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x1671a3e4a2519a653e66e827ef6eae690ee86729', 'value': 16559.999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x018191492960', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T02:47:28.000Z'}}, {'blockNum': '0xa1b394', 'uniqueId': '0xe517080822db4631689e7ce1fc649445502cca7f4e5c9c3069ad96e8c9438b0e:log:164', 'hash': '0xe517080822db4631689e7ce1fc649445502cca7f4e5c9c3069ad96e8c9438b0e', 'from': '0xaae374c03680420ccfec622ee6a8e0ecc5cce28d', 'to': '0x7d9927449f7db9a8c107959300acc75ae6e14419', 'value': 28.7940905, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xaba04b9a', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:13:52.000Z'}}, {'blockNum': '0xa1b3d0', 'uniqueId': '0xc415b22abd15929b1d55d2f6215421de7f4606b9128c7de253f3c39276494ff3:log:130', 'hash': '0xc415b22abd15929b1d55d2f6215421de7f4606b9128c7de253f3c39276494ff3', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x0706ba9e814171830e0cd30b64bbaad0ebd5b0f4', 'value': 16.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x6516e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:26:34.000Z'}}, {'blockNum': '0xa1b3d9', 'uniqueId': '0x28018df0700a55c73ea4b6a0e4fceb3f2938953a3ef06df64afca59a088d6b3d:log:118', 'hash': '0x28018df0700a55c73ea4b6a0e4fceb3f2938953a3ef06df64afca59a088d6b3d', 'from': '0x6f4f230d0d3be76929a9068163ac2f07e1ab419e', 'to': '0xc922a08d7caac245e2d5dc81671b7aa91cbdb30a', 'value': 16172.27386313, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01788a438dc9', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:29:13.000Z'}}, {'blockNum': '0xa1b3dd', 'uniqueId': '0x0eb7da6b7c63b1136b4806d728a56f2d9ef0f05aba87e2b54187642133a4f8e3:log:50', 'hash': '0x0eb7da6b7c63b1136b4806d728a56f2d9ef0f05aba87e2b54187642133a4f8e3', 'from': '0xc922a08d7caac245e2d5dc81671b7aa91cbdb30a', 'to': '0xa305fab8bda7e1638235b054889b3217441dd645', 'value': 16172.2738631, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01788a438dc6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:29:59.000Z'}}, {'blockNum': '0xa1b3e2', 'uniqueId': '0x126e4c79d7b592bd8b4aa0a1a15801d072d96d877f29bf6514864ef7edc3afec:log:189', 'hash': '0x126e4c79d7b592bd8b4aa0a1a15801d072d96d877f29bf6514864ef7edc3afec', 'from': '0x03db467849d6f2d14ed63082e9b02859494b8384', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3ae203c100', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:30:35.000Z'}}, {'blockNum': '0xa1b3ef', 'uniqueId': '0x67aa59e96606072f6cbf58d0245f615595d55ccfee858259a06ae15438ce61e4:log:12', 'hash': '0x67aa59e96606072f6cbf58d0245f615595d55ccfee858259a06ae15438ce61e4', 'from': '0x34872874b65e12408ec0265e9cf0a35fa6c8d13e', 'to': '0x0706ba9e814171830e0cd30b64bbaad0ebd5b0f4', 'value': 3045.51, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x46e8a777c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-08-05T03:32:59.000Z'}}]}}
Number of returned transfers:  184
Answer is complete
 
symbol             RDN
group              CPI
date        2020-08-25
hour             18:01
exchange       binance
Name: 1082, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-08-25 18:01:00 2020-08-25 06:01:00 2020-08-26 06:01:00
Unix timestamps:  1598328060.0 1598414460.0
Hex Block Numbers:  0xa3af8c 0xa3c8c8
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa3af92', 'uniqueId': '0x5b5f1766a2b18b3a6d710a79e614b187fe7e2a5768e0df12367630b6e5e29ba5:log:141', 'hash': '0x5b5f1766a2b18b3a6d710a79e614b187fe7e2a5768e0df12367630b6e5e29ba5', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12606.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02ab6a37c06abb060000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:02:18.000Z'}}, {'blockNum': '0xa3afb9', 'uniqueId': '0xa198d77ba72da8ee014c6b81591a71907d2afe0dfcfcdf750b87c060ca995d87:log:77', 'hash': '0xa198d77ba72da8ee014c6b81591a71907d2afe0dfcfcdf750b87c060ca995d87', 'from': '0xde056f077b0568cbc995dd44e2360b2d9bfd43bc', 'to': '0xccb1d9e0564cf24c8295d12a47445835561df253', 'value': 380.319, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x149dfc837bcbc98000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:10:28.000Z'}}, {'blockNum': '0xa3afc2', 'uniqueId': '0x806f79a7be4cb76ed6578988925cca3a8c54fe75bc4de8ae42c26a2c3ad96797:log:69', 'hash': '0x806f79a7be4cb76ed6578988925cca3a8c54fe75bc4de8ae42c26a2c3ad96797', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6278.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01545a2a08aa04bf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:12:34.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x08c50a20c1b324ee0901b92dd5f0763c5fae8646a0df8612089dbfc0a8513ae6:log:232', 'hash': '0x08c50a20c1b324ee0901b92dd5f0763c5fae8646a0df8612089dbfc0a8513ae6', 'from': '0x7ef08b22f03f0686ce8f38f0c56f2e6e9eefb1fb', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1841.5291041194982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x63d459a35b7a05fa0b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b:log:241', 'hash': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 750.1416094495095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28aa4e5b5fadd1e174', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe0', 'uniqueId': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b:log:247', 'hash': '0x67f7a89a971943fb365898430d37a066f6622d85c27ab5a0d99e204461571a8b', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 750.1416094495095, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x28aa4e5b5fadd1e174', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:48.000Z'}}, {'blockNum': '0xa3afe3', 'uniqueId': '0xeae232ab680d756b2c5677218f305fa9832788d2a18cec3678342df42e712354:log:112', 'hash': '0xeae232ab680d756b2c5677218f305fa9832788d2a18cec3678342df42e712354', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xa085e5bf56ef8babd4bec8173dc07b144724023a', 'value': 1954.94495572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x69fa4faf7c2c5ad000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:16:54.000Z'}}, {'blockNum': '0xa3aff1', 'uniqueId': '0xeaae50060d7c2d1d0f837966f529eb3bf4db1209aa5238acef3a1b02acebd665:log:151', 'hash': '0xeaae50060d7c2d1d0f837966f529eb3bf4db1209aa5238acef3a1b02acebd665', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1186.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x404df87e30a81d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:20:39.000Z'}}, {'blockNum': '0xa3aff2', 'uniqueId': '0x3ca0bf4bbca895beea7aa84475bef8a8cf47d72e2a7574157e933d7bddcbf8b9:log:117', 'hash': '0x3ca0bf4bbca895beea7aa84475bef8a8cf47d72e2a7574157e933d7bddcbf8b9', 'from': '0x0f29ea2b1103ff6c491d0e262f54aaa0e810dd06', 'to': '0xf07e40317c1b6a0a668809805f1d6046a13f7517', 'value': 350.84769418999997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1304fd66febbd408b0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:20:50.000Z'}}, {'blockNum': '0xa3b024', 'uniqueId': '0xf0dc24f2530ae990667aebad615b8831ef732f2ca659a7b87a590f28e898695b:log:58', 'hash': '0xf0dc24f2530ae990667aebad615b8831ef732f2ca659a7b87a590f28e898695b', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6278.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01545a2a08aa04bf0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:32:35.000Z'}}, {'blockNum': '0xa3b038', 'uniqueId': '0xa070576e527ce7c4a9c84e0292da48a2eacff267dfde1c5754daaac79169eb10:log:48', 'hash': '0xa070576e527ce7c4a9c84e0292da48a2eacff267dfde1c5754daaac79169eb10', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1210.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x419a9461b51be68000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:37:10.000Z'}}, {'blockNum': '0xa3b04e', 'uniqueId': '0x569b45fdbdf0f8ee32ffa38284a7d1b4d015a489b2f84e6a96f4ee8d4ce0287a:log:227', 'hash': '0x569b45fdbdf0f8ee32ffa38284a7d1b4d015a489b2f84e6a96f4ee8d4ce0287a', 'from': '0x73e909dd03cc8119a193dae6175a09dea040f719', 'to': '0x81d252fc425340da5e3293e0c4f35de9673062ff', 'value': 2296.295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7c7b7ea835299d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T04:44:20.000Z'}}, {'blockNum': '0xa3b1cf', 'uniqueId': '0x8c594c7ea7fed2ebc4c397683d714bcaa26e957aa75493507c7561eb79bf1ee7:log:193', 'hash': '0x8c594c7ea7fed2ebc4c397683d714bcaa26e957aa75493507c7561eb79bf1ee7', 'from': '0xcfb7e61debdcbb20e45661ee6de51f4852978625', 'to': '0x11d2ddb2fe0cb09cd0430032bfeee28100739fe5', 'value': 270.69793740414815, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0eacb043d9952d71b3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:09:19.000Z'}}, {'blockNum': '0xa3b1d3', 'uniqueId': '0x2b7290204b8fb8862371b01652a200d76afc60550065640913b9ca2896adad0a:log:224', 'hash': '0x2b7290204b8fb8862371b01652a200d76afc60550065640913b9ca2896adad0a', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xaa656d7e71434ef36e49ed935619414e8a95ac39', 'value': 19.435649755889123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010db94c7a7eadc0be', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:10:07.000Z'}}, {'blockNum': '0xa3b231', 'uniqueId': '0x488495722ecd93dee4967843a6cfd20db936e100ba6d8c15f56f009e1edec71c:log:83', 'hash': '0x488495722ecd93dee4967843a6cfd20db936e100ba6d8c15f56f009e1edec71c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6426.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c6013a886ca8f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:35:51.000Z'}}, {'blockNum': '0xa3b243', 'uniqueId': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c:log:50', 'hash': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c', 'from': '0xc1e42f862d202b4a0ed552c1145735ee088f6ccf', 'to': '0xce10c4d313052a9b85790ea129bd8604854fb637', 'value': 44085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0955da4687a8d7b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:39:39.000Z'}}, {'blockNum': '0xa3b243', 'uniqueId': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c:log:54', 'hash': '0x1458c8cc83ba6ddee54df59dde0b842b7412ab2fc0e3742f6a4e04270f57114c', 'from': '0xce10c4d313052a9b85790ea129bd8604854fb637', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 44085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0955da4687a8d7b40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T06:39:39.000Z'}}, {'blockNum': '0xa3b2f0', 'uniqueId': '0xc17e1904cae8f891a3119b8b7f3c125458b73d230858f88dafe57603b3552617:log:177', 'hash': '0xc17e1904cae8f891a3119b8b7f3c125458b73d230858f88dafe57603b3552617', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6426.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015c6013a886ca8f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T07:16:42.000Z'}}, {'blockNum': '0xa3b2fa', 'uniqueId': '0xad5c4dc6d7f5f4320cd244ecbce1db119aca70660a4364f2b8561c0aad0c62fd:log:113', 'hash': '0xad5c4dc6d7f5f4320cd244ecbce1db119aca70660a4364f2b8561c0aad0c62fd', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6192.97, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x014fb8b93b3d1ae10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T07:18:06.000Z'}}, {'blockNum': '0xa3b3b3', 'uniqueId': '0xa5f258f1751d0612dfab68a710f781d623f04af299c81412dbab4d15fa01bde9:log:144', 'hash': '0xa5f258f1751d0612dfab68a710f781d623f04af299c81412dbab4d15fa01bde9', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 13389.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d5d71d00f8af7b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:00:20.000Z'}}, {'blockNum': '0xa3b3d9', 'uniqueId': '0x2a91a7d17c34b9e536fb8b19b4367de15f51a12f8d9d19213dcc06884dddae41:log:3', 'hash': '0x2a91a7d17c34b9e536fb8b19b4367de15f51a12f8d9d19213dcc06884dddae41', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 5590.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012f0e3f05d827ff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:10:49.000Z'}}, {'blockNum': '0xa3b400', 'uniqueId': '0x1c28888abc4831abc11ed39167cb16c273762ad798786579394befd52ed53d61:log:214', 'hash': '0x1c28888abc4831abc11ed39167cb16c273762ad798786579394befd52ed53d61', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 5590.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x012f0e3f05d827ff0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:16:49.000Z'}}, {'blockNum': '0xa3b486', 'uniqueId': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc:log:28', 'hash': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:44:30.000Z'}}, {'blockNum': '0xa3b486', 'uniqueId': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc:log:31', 'hash': '0x8890dbd509f2d84c40f437977767db6f1b35bb8e7ceed73028bb1abc63645bdc', 'from': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'to': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'value': 320, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1158e460913d000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:44:30.000Z'}}, {'blockNum': '0xa3b491', 'uniqueId': '0xace984b18c69f19a47e7536f8dd60a2865d9d03a82ab2f12d221e43d30c4408b:log:110', 'hash': '0xace984b18c69f19a47e7536f8dd60a2865d9d03a82ab2f12d221e43d30c4408b', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 13389.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02d5d71d00f8af7b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T08:47:19.000Z'}}, {'blockNum': '0xa3b5d5', 'uniqueId': '0x41b2df04ff05310e101ab2055991a94d0687e3b29814ff607738f300bcd22332:log:212', 'hash': '0x41b2df04ff05310e101ab2055991a94d0687e3b29814ff607738f300bcd22332', 'from': '0x9f479998c09f80346412894e7cdd46dec1c36a6e', 'to': '0x1c62ff66af8aad410065e02338f5bfbbe23e1f10', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T09:57:46.000Z'}}, {'blockNum': '0xa3b62b', 'uniqueId': '0xaeff2294ce962bbf8882c9701401455fb9b0c5a2180a28fc6e61db966edf2378:log:89', 'hash': '0xaeff2294ce962bbf8882c9701401455fb9b0c5a2180a28fc6e61db966edf2378', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'value': 727.1390274133923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x276b14c4e282477210', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:46.000Z'}}, {'blockNum': '0xa3b62b', 'uniqueId': '0x8bbccd87b93a85c0ffda9262820bafd17892ee67ba8307bd12cbd6f10a2e3e00:log:93', 'hash': '0x8bbccd87b93a85c0ffda9262820bafd17892ee67ba8307bd12cbd6f10a2e3e00', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 680.0358673752519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24dd64ba64b28a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:46.000Z'}}, {'blockNum': '0xa3b62d', 'uniqueId': '0x9940ef50c997e0dcf2e99227cc955c43e8213dac1a82aec97b2d5b29afa6bd5b:log:184', 'hash': '0x9940ef50c997e0dcf2e99227cc955c43e8213dac1a82aec97b2d5b29afa6bd5b', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x4900d62465100ec25e7480ca31da2f3f634ba58d', 'value': 519.2758435283765, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1c266664729e350d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:18:53.000Z'}}, {'blockNum': '0xa3b68b', 'uniqueId': '0xe4229f056c8fdc2a368682dbe56d80d1c58cbdaf21218a55bdcdfb72853f7d45:log:15', 'hash': '0xe4229f056c8fdc2a368682dbe56d80d1c58cbdaf21218a55bdcdfb72853f7d45', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6009.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0145c50a0de320ab0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:41:20.000Z'}}, {'blockNum': '0xa3b695', 'uniqueId': '0x30b5a10719e850bb04d64760450f2135b59d424e4bb021b67f8066036a54a858:log:18', 'hash': '0x30b5a10719e850bb04d64760450f2135b59d424e4bb021b67f8066036a54a858', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 105317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x164d3efa829e96740000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:43:37.000Z'}}, {'blockNum': '0xa3b69a', 'uniqueId': '0x300542852e618b17f644199a323465e5af178ec5c009def9c781d76d55a1b994:log:106', 'hash': '0x300542852e618b17f644199a323465e5af178ec5c009def9c781d76d55a1b994', 'from': '0x36712581d522f1c820e6fdafe1bbe2acf44f43cb', 'to': '0xd29a5c212723b0a51ded27623f48ce56ca2770f5', 'value': 1047.1390274133923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x38c3f92573bf477210', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:44:10.000Z'}}, {'blockNum': '0xa3b6a7', 'uniqueId': '0x627ade68b7f174feb2ddc5814bfbf6a4d0a1a88bedb70e8c96c0300bec12747f:log:72', 'hash': '0x627ade68b7f174feb2ddc5814bfbf6a4d0a1a88bedb70e8c96c0300bec12747f', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6009.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0145c50a0de320ab0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:46:41.000Z'}}, {'blockNum': '0xa3b6df', 'uniqueId': '0xa7ba1b3bea2231c4020ee8215574c4d29d9a4f9b7175dde022c3907a2cc9817d:log:1', 'hash': '0xa7ba1b3bea2231c4020ee8215574c4d29d9a4f9b7175dde022c3907a2cc9817d', 'from': '0x67d484739466bca5e3d0d5eddb957746a5750561', 'to': '0x3ce4285cb7aa1617af7535f7a32ad7b2970c9b27', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04a89f54ef0121c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T10:57:44.000Z'}}, {'blockNum': '0xa3b76e', 'uniqueId': '0x540c6da8b5954d0377b4797f2bac7274b2d2234021cf5931ad39c79d84be532f:log:80', 'hash': '0x540c6da8b5954d0377b4797f2bac7274b2d2234021cf5931ad39c79d84be532f', 'from': '0x3ce4285cb7aa1617af7535f7a32ad7b2970c9b27', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x04a89f54ef0121c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:30:00.000Z'}}, {'blockNum': '0xa3b777', 'uniqueId': '0x854422f17e2657ad7f039e36bf383dda6acf123c8560a7cd7af26c361606461b:log:90', 'hash': '0x854422f17e2657ad7f039e36bf383dda6acf123c8560a7cd7af26c361606461b', 'from': '0x00c4e9a1a6fcf839f1f5c45c6bfbd96cf0d873b2', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 699.7577643709647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25ef16fb3848d8064f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:32:26.000Z'}}, {'blockNum': '0xa3b7e5', 'uniqueId': '0xeacd83159851d2c46a7ddd2812cbe56fca0db923e5aac1e2d92ab350a64eea45:log:84', 'hash': '0xeacd83159851d2c46a7ddd2812cbe56fca0db923e5aac1e2d92ab350a64eea45', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 3017.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa39b065b00f1270000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T11:57:14.000Z'}}, {'blockNum': '0xa3b837', 'uniqueId': '0xe03a5e0eb26350ee6fcccd0c0b888691010cca7819141529762b1420227729cc:log:162', 'hash': '0xe03a5e0eb26350ee6fcccd0c0b888691010cca7819141529762b1420227729cc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 11298.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02647ca8b39071af0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:16:54.000Z'}}, {'blockNum': '0xa3b84e', 'uniqueId': '0xd9c346a5fc92602f6bcc3aa8f34fc0320df11760174d1fd5b464870ff3e9c3a7:log:3', 'hash': '0xd9c346a5fc92602f6bcc3aa8f34fc0320df11760174d1fd5b464870ff3e9c3a7', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 945.6509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x33438ae346dc714000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:22:47.000Z'}}, {'blockNum': '0xa3b871', 'uniqueId': '0xda8693738124b7e753e517ea74623f5cd0045c3b6703f5f70ccada7c98ee8f1b:log:260', 'hash': '0xda8693738124b7e753e517ea74623f5cd0045c3b6703f5f70ccada7c98ee8f1b', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 11298.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02647ca8b39071af0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T12:32:36.000Z'}}, {'blockNum': '0xa3b8eb', 'uniqueId': '0x97cf923152e32d8352e9a9c45b145f95fb46347f61abaad2ee8a6792988a8b0d:log:263', 'hash': '0x97cf923152e32d8352e9a9c45b145f95fb46347f61abaad2ee8a6792988a8b0d', 'from': '0x00c4e9a1a6fcf839f1f5c45c6bfbd96cf0d873b2', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:01:55.000Z'}}, {'blockNum': '0xa3b8ec', 'uniqueId': '0x5cb357feb055d79ffcd6ae54ef370cbdb496e9c82615bd4ef01af7ed9e46f5ff:log:57', 'hash': '0x5cb357feb055d79ffcd6ae54ef370cbdb496e9c82615bd4ef01af7ed9e46f5ff', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 848.4132190741533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2dfe193fa97c921edc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:02:18.000Z'}}, {'blockNum': '0xa3b9ae', 'uniqueId': '0x18fa6f62fa0ed357a803a9cbd36ffa70774801af9612ebe01b32f7c8d0e5e335:log:119', 'hash': '0x18fa6f62fa0ed357a803a9cbd36ffa70774801af9612ebe01b32f7c8d0e5e335', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 7374.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018fc43839cea8df0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:41:47.000Z'}}, {'blockNum': '0xa3b9d0', 'uniqueId': '0x77b662ffa32e8990dcd3e4d013911286fd68fdbda703a24b9af2fa73b5d0aed5:log:79', 'hash': '0x77b662ffa32e8990dcd3e4d013911286fd68fdbda703a24b9af2fa73b5d0aed5', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 7374.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x018fc43839cea8df0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:47:30.000Z'}}, {'blockNum': '0xa3b9d0', 'uniqueId': '0x767e3ba402f007d447d1284197d93f17575591a85e028625e297d7c842551dc7:log:80', 'hash': '0x767e3ba402f007d447d1284197d93f17575591a85e028625e297d7c842551dc7', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 945.6509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x33438ae346dc714000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T13:47:30.000Z'}}, {'blockNum': '0xa3ba3f', 'uniqueId': '0x959e8e30d138ae04b6f002f09498fd4ecce7a07fd24611e0c60ea79571f656e4:log:62', 'hash': '0x959e8e30d138ae04b6f002f09498fd4ecce7a07fd24611e0c60ea79571f656e4', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1862.8129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x64fbb8def1bb424000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:12:00.000Z'}}, {'blockNum': '0xa3ba94', 'uniqueId': '0xf18e4d82e2f8e58696d1a3cb82802ebcfd7ff3539212c722d8ae9dbadccfe64e:log:41', 'hash': '0xf18e4d82e2f8e58696d1a3cb82802ebcfd7ff3539212c722d8ae9dbadccfe64e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 449.6449, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x186013963aae0a4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:30:37.000Z'}}, {'blockNum': '0xa3bac5', 'uniqueId': '0x8a5694fca74970f43fe9457dfefd8540870f6bc4c5ad53b0bfef832708fd2c5b:log:40', 'hash': '0x8a5694fca74970f43fe9457dfefd8540870f6bc4c5ad53b0bfef832708fd2c5b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5778e79e8c30c1407cbd0332c8877c5258a21067', 'value': 3512.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbe6ed2a48870238000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:42:29.000Z'}}, {'blockNum': '0xa3bad9', 'uniqueId': '0x4c8a5688b37a299d57a971e5f0af7a05ab8f9580d9fbcca7b46c573e0333d353:log:123', 'hash': '0x4c8a5688b37a299d57a971e5f0af7a05ab8f9580d9fbcca7b46c573e0333d353', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2312.4578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7d5bcc752c694c8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T14:47:01.000Z'}}, {'blockNum': '0xa3bb27', 'uniqueId': '0xdf2238e899623ddc089fb08d58bd25309bf639a1da8ab7761c413920549dc35a:log:10', 'hash': '0xdf2238e899623ddc089fb08d58bd25309bf639a1da8ab7761c413920549dc35a', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 322.8989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x11811f56c220614000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:04:29.000Z'}}, {'blockNum': '0xa3bb58', 'uniqueId': '0x701a626aac5acd8d1a1ff8ad09460114c592b3be5171c7324f87a75dcae281e8:log:74', 'hash': '0x701a626aac5acd8d1a1ff8ad09460114c592b3be5171c7324f87a75dcae281e8', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'value': 1214.1129, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x41d13381e7775c4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:14:11.000Z'}}, {'blockNum': '0xa3bbb7', 'uniqueId': '0xa1efb0a9e863d04d4c3e5272be457f86e1937813406be399ab48d1cccaf0aa62:log:130', 'hash': '0xa1efb0a9e863d04d4c3e5272be457f86e1937813406be399ab48d1cccaf0aa62', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 15548.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034ae141d61963d70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:34:48.000Z'}}, {'blockNum': '0xa3bbe0', 'uniqueId': '0xb066b46d5423ec5ecc990f95dd654900192279155a7b11f049f1a6d6720debec:log:222', 'hash': '0xb066b46d5423ec5ecc990f95dd654900192279155a7b11f049f1a6d6720debec', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 15548.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x034ae141d61963d70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:47:08.000Z'}}, {'blockNum': '0xa3bbf1', 'uniqueId': '0xdddcb19f76835fb4c7ad650d7bb62ee9dbde49533cf7b635229ce8d03e83738f:log:272', 'hash': '0xdddcb19f76835fb4c7ad650d7bb62ee9dbde49533cf7b635229ce8d03e83738f', 'from': '0x808df01373f8629a87d07d778aa8c1dd1c6e46a1', 'to': '0xa82e07c32d1538e11a3002ab5a2c869202983020', 'value': 141.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07aa2e2fe2387b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:49:36.000Z'}}, {'blockNum': '0xa3bc0e', 'uniqueId': '0xcc60b80c4f583064790982964b3aa467d1c86a92ac03041265125f0d4a5cc687:log:217', 'hash': '0xcc60b80c4f583064790982964b3aa467d1c86a92ac03041265125f0d4a5cc687', 'from': '0xdedd6d6eb6056470d687c832c477b8770ac20ed5', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1273.9444928689836, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x450f88069dfcec49de', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:58:53.000Z'}}, {'blockNum': '0xa3bc0e', 'uniqueId': '0x711fee7aba97238077b45efbffdde7c6079b1d909676a45e8c0be1a0033350f6:log:225', 'hash': '0x711fee7aba97238077b45efbffdde7c6079b1d909676a45e8c0be1a0033350f6', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 778.871482903924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2a39035f102a1ea7a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:58:53.000Z'}}, {'blockNum': '0xa3bc0f', 'uniqueId': '0xb6664b6f45f3f2c96bc89a9445ec5177e82fe1fb053b24e7ba7fb348a5b5f730:log:4', 'hash': '0xb6664b6f45f3f2c96bc89a9445ec5177e82fe1fb053b24e7ba7fb348a5b5f730', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'value': 460.1355907640875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18f1aa01e5a7f2cca0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T15:59:14.000Z'}}, {'blockNum': '0xa3bcef', 'uniqueId': '0x27ee417f5648ea2270dfcc3977cf34825d8d7a825c6a6a167df71d43cef397f9:log:149', 'hash': '0x27ee417f5648ea2270dfcc3977cf34825d8d7a825c6a6a167df71d43cef397f9', 'from': '0x668a61d94e1c049733d778acd502c0235fe38f16', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 1537.0118, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x535252d8a997bd8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:46:44.000Z'}}, {'blockNum': '0xa3bcfa', 'uniqueId': '0x49c0b0bc16a5c3e625207741099c6cba330d9339c17a6b948e7008cbd2aeeeaf:log:48', 'hash': '0x49c0b0bc16a5c3e625207741099c6cba330d9339c17a6b948e7008cbd2aeeeaf', 'from': '0x4a4f1c998b89c0dc000983ffd997420dad282ca1', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:48:47.000Z'}}, {'blockNum': '0xa3bd15', 'uniqueId': '0x186ddd9025f8511685a3abeae95b15785359982a1b93b5147b8cfd6fc5758544:log:128', 'hash': '0x186ddd9025f8511685a3abeae95b15785359982a1b93b5147b8cfd6fc5758544', 'from': '0x1d5b6d9658d958037672f3c0914b784426ac40c1', 'to': '0x3021026e4ff227571a5a563ad19ea657c7027e59', 'value': 27.829513029183406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0182364aa72894ff19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T16:54:15.000Z'}}, {'blockNum': '0xa3bd44', 'uniqueId': '0x69ce99ec44d041350e752266543287e1f063fe785ddd60307959fff9f6bea9e9:log:166', 'hash': '0x69ce99ec44d041350e752266543287e1f063fe785ddd60307959fff9f6bea9e9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 12279.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0299aac4d200e3e30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:03:08.000Z'}}, {'blockNum': '0xa3bd80', 'uniqueId': '0x86226588d38a8337a2f29a64a7bbe9a7d912ba134084a620ed1e0531a95fed6d:log:25', 'hash': '0x86226588d38a8337a2f29a64a7bbe9a7d912ba134084a620ed1e0531a95fed6d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 1997.743355, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c4c4224dfe416b000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:14:17.000Z'}}, {'blockNum': '0xa3bd95', 'uniqueId': '0xe3ac98e430783fb3c31ddffed201567b9259608d1534b676c3e53c407d6948e0:log:152', 'hash': '0xe3ac98e430783fb3c31ddffed201567b9259608d1534b676c3e53c407d6948e0', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x5f5ca0899ea0e4ffd3277c922f5d88bf548e7e33', 'value': 1999.0919649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c5ef95e6ef229e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:17:30.000Z'}}, {'blockNum': '0xa3bd9d', 'uniqueId': '0xfff5e03ae970714f85d9e2662d827bb7d8b4c5309e5c507918328dc733a54c75:log:149', 'hash': '0xfff5e03ae970714f85d9e2662d827bb7d8b4c5309e5c507918328dc733a54c75', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 12279.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0299aac4d200e3e30000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:19:45.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x80178ffce3ff91ac15732a2eafee1728aa43696b38161ee71f598869a1fb7339:log:4', 'hash': '0x80178ffce3ff91ac15732a2eafee1728aa43696b38161ee71f598869a1fb7339', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'value': 4341.597023541895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeb5bc32224fbf1ee8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0:log:15', 'hash': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xf443253607dbde5bda77c358c9b9f244d819e25c', 'value': 1590.4497191036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5637ec78f6029193e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0:log:16', 'hash': '0x9ac09ed29f383fa5174bb4a85d390dad11dcfac83230ef56990b193ba6d82cb0', 'from': '0xf443253607dbde5bda77c358c9b9f244d819e25c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1590.4497191036116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5637ec78f6029193e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b:log:28', 'hash': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b', 'from': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 769.9791610885267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x29bd9b7f7c4ee91350', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be50', 'uniqueId': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b:log:31', 'hash': '0xdef57fc4b9b68b8c1eb31b065aaca2d6e08a22c168ff09b41a32e95ceffa789b', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 769.9791610885267, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x29bd9b7f7c4ee91350', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T17:59:53.000Z'}}, {'blockNum': '0xa3be51', 'uniqueId': '0xec006ec654178bc863ea67b59e1b2845577fa141b229b0868dc9ba558f11cbb1:log:5', 'hash': '0xec006ec654178bc863ea67b59e1b2845577fa141b229b0868dc9ba558f11cbb1', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1174.457902785993, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3faae0a80a095e0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:25.000Z'}}, {'blockNum': '0xa3be51', 'uniqueId': '0xed08be20aee8a2a361d4ba49ea809895e99fa5ee917995fb75b3cf0a6525ffe4:log:95', 'hash': '0xed08be20aee8a2a361d4ba49ea809895e99fa5ee917995fb75b3cf0a6525ffe4', 'from': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 4341.597023541895, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xeb5bc32224fbf1ee8d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:25.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0x19577533e5d6d3b41d1a47218caa1c45d7a8a7a58d8a87f50a322232f36ea386:log:2', 'hash': '0x19577533e5d6d3b41d1a47218caa1c45d7a8a7a58d8a87f50a322232f36ea386', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'value': 3192.7976726639913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad14f7f71eef1deb19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe:log:12', 'hash': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'value': 1167.5473956730366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3f4af99a6ef3c93dc3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be52', 'uniqueId': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe:log:13', 'hash': '0xcc885f88c6ccd8efa286c988e890ce51aff3d5872081aa2fbe7c2351ee232afe', 'from': '0x78a55b9b3bbeffb36a43d9905f654d2769dc55e8', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1167.5473956730366, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3f4af99a6ef3c93dc3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:00:46.000Z'}}, {'blockNum': '0xa3be53', 'uniqueId': '0x132b1d35ebeb25c030e06e79c777cd0da320074b576dc8c4770701b664652b18:log:155', 'hash': '0x132b1d35ebeb25c030e06e79c777cd0da320074b576dc8c4770701b664652b18', 'from': '0x329ba208bb709e3ef0425df176dbbff513b67da1', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 3192.7976726639913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad14f7f71eef1deb19', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:24.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0x0b256fba0b2e453c780f5cc39ba0fdc14754c280b09d1f466fdc627578e9d815:log:61', 'hash': '0x0b256fba0b2e453c780f5cc39ba0fdc14754c280b09d1f466fdc627578e9d815', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1236.8283391281877, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x430c70f57090000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0x3958bcc9554fe99428b042b8af5243fd884ecabf5c6a53dc4430c1eb4d944b72:log:111', 'hash': '0x3958bcc9554fe99428b042b8af5243fd884ecabf5c6a53dc4430c1eb4d944b72', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 342.10713515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x128bb0b2db8e4d4c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be54', 'uniqueId': '0xa94813c4e2f56aceacae972a79d30f1cc8e451a0dd574ad4e4c6ba5f46eebbde:log:112', 'hash': '0xa94813c4e2f56aceacae972a79d30f1cc8e451a0dd574ad4e4c6ba5f46eebbde', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 302.5086, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x10662670f0d4bb8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:01:44.000Z'}}, {'blockNum': '0xa3be55', 'uniqueId': '0x6de6467183a651c80a57f7ebe15a0d6b62f045b51542a2f813e63925f91d2121:log:112', 'hash': '0x6de6467183a651c80a57f7ebe15a0d6b62f045b51542a2f813e63925f91d2121', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x42423375841fc433bcb17b1af648622920b2d98a', 'value': 6293.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01552a54bd30d39b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:03:03.000Z'}}, {'blockNum': '0xa3be5d', 'uniqueId': '0x6d2747c39d8b6be1f462cd504c93c65cdf8cb3b03c93cd2b1f551f98494a095a:log:28', 'hash': '0x6d2747c39d8b6be1f462cd504c93c65cdf8cb3b03c93cd2b1f551f98494a095a', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:04:14.000Z'}}, {'blockNum': '0xa3be5d', 'uniqueId': '0xcc5aaa2c1bbd96406c5054eec33f7623d44430756ec641995a56a617ef780233:log:161', 'hash': '0xcc5aaa2c1bbd96406c5054eec33f7623d44430756ec641995a56a617ef780233', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6c14f95f0ca1afa9c0d525c4506f2ac5faadaf1f', 'value': 1056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x393ef1a5127c800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:04:14.000Z'}}, {'blockNum': '0xa3be6d', 'uniqueId': '0xa0d800a0c76998def6c8f0d6fc5319fd3ed51eca8c5b061abe2f81b926112705:log:171', 'hash': '0xa0d800a0c76998def6c8f0d6fc5319fd3ed51eca8c5b061abe2f81b926112705', 'from': '0x20aaad6c45ea50f5c1a690fb8a32a2e244abf371', 'to': '0xc5be1a730bb2ecf6e567ba2c4e4fdf4f95f4e17c', 'value': 510.6943105412933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1baf4ea9a9b2d07606', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:09:09.000Z'}}, {'blockNum': '0xa3be8d', 'uniqueId': '0x17af0a080840168f8abbd0358af4361a8ff987f89111ae70751748abed4ebb74:log:29', 'hash': '0x17af0a080840168f8abbd0358af4361a8ff987f89111ae70751748abed4ebb74', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 756.518590743924, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2902cdf21306b61198', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:15:56.000Z'}}, {'blockNum': '0xa3be90', 'uniqueId': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac:log:223', 'hash': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 693.9065243018865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x259de33360d3e81b32', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:16:33.000Z'}}, {'blockNum': '0xa3be90', 'uniqueId': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac:log:228', 'hash': '0xe5595f08890dde17f7ec8d64ae79f53f00c33ed330ef2e2d01f2528b599b09ac', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 693.9062911053323, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x259de25f4986220000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:16:33.000Z'}}, {'blockNum': '0xa3bea8', 'uniqueId': '0x17859523f7c491e61af445091e959eac7f620dfbfb040c9cff26c4dd35bab9d4:log:177', 'hash': '0x17859523f7c491e61af445091e959eac7f620dfbfb040c9cff26c4dd35bab9d4', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 15804.30218338, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0358c0c08d009f5d4800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:30.000Z'}}, {'blockNum': '0xa3bea8', 'uniqueId': '0x0cdfda221e1120c2b720ab6524d19a3079aab5af014228b55347d9fe7e808523:log:178', 'hash': '0x0cdfda221e1120c2b720ab6524d19a3079aab5af014228b55347d9fe7e808523', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 9766.95868271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x021177c7b65c1eb3dc00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:30.000Z'}}, {'blockNum': '0xa3bea9', 'uniqueId': '0x128707f98d508f527cebf4d40177717cb5115936d4fa7c260221e0787207e4d2:log:17', 'hash': '0x128707f98d508f527cebf4d40177717cb5115936d4fa7c260221e0787207e4d2', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 1930.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68a44b36d510860000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:20:40.000Z'}}, {'blockNum': '0xa3beba', 'uniqueId': '0xb8f82894ab4f05b55019507c4c93363cb239e4b90f2059319260bfae53353102:log:101', 'hash': '0xb8f82894ab4f05b55019507c4c93363cb239e4b90f2059319260bfae53353102', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0xfb2de6b9eba1c83cd249bad8fcc70a9d97592e04', 'value': 1643.2106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x591420c698dc7e8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:25:07.000Z'}}, {'blockNum': '0xa3bed9', 'uniqueId': '0xfb55d191bd7b0db389b92cd9031f39c7cd0bc47087f2f26062ef637b9020634d:log:48', 'hash': '0xfb55d191bd7b0db389b92cd9031f39c7cd0bc47087f2f26062ef637b9020634d', 'from': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 26341.1005180309, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0593f434200469d24b85', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:30:18.000Z'}}, {'blockNum': '0xa3bf1a', 'uniqueId': '0x3898aebaaf5409778660edf4b6533d62dfa517a429aaf59e51702e486123ca66:log:145', 'hash': '0x3898aebaaf5409778660edf4b6533d62dfa517a429aaf59e51702e486123ca66', 'from': '0x63c410a066d5d12217b713ccac5f600a06ba45e6', 'to': '0xad13e2628410e99b87fc838a83e520a369cf8ed0', 'value': 4215.410378417814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe484921cf838cfdd78', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:45:09.000Z'}}, {'blockNum': '0xa3bf45', 'uniqueId': '0xb3de2d3d0b518a8d677b20bd276462f12997dc62cc81931d6dee9efcf0f5dab6:log:17', 'hash': '0xb3de2d3d0b518a8d677b20bd276462f12997dc62cc81931d6dee9efcf0f5dab6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:53:05.000Z'}}, {'blockNum': '0xa3bf46', 'uniqueId': '0x3cf29f6c4b9692ae76430bf186354b77bdd1ecf9166e1593762cf40e742010ad:log:90', 'hash': '0x3cf29f6c4b9692ae76430bf186354b77bdd1ecf9166e1593762cf40e742010ad', 'from': '0x7ee13b84900a0f0706fa639da8a14daf79ae12d1', 'to': '0x0257b51a38a9a58fab2b3878ca590eeb4529ad7b', 'value': 297.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1020a451c706b60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:53:31.000Z'}}, {'blockNum': '0xa3bf5b', 'uniqueId': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4:log:180', 'hash': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 396.14235619932043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1579945e1c72c1f3c7', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:58:08.000Z'}}, {'blockNum': '0xa3bf5b', 'uniqueId': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4:log:186', 'hash': '0xbeb2a1e38e5ac2b28856fe3ddf2939d3f7f167f09e2e0becb2a532dbb34b10e4', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 396.14227755477896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x157994169596cc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T18:58:08.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:103', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x6e83e4954e0617647137b7d3c85671bbbf7f331d', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:104', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'value': 2567.813, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8b33905ea4c6208000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:105', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x6cb2291a3c3794fca0f5b6e34a8e6ea7933ca667', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:107', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x6cb2291a3c3794fca0f5b6e34a8e6ea7933ca667', 'to': '0x480ea104ff7063ed0af41c98d8ef2457afe2a41c', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:108', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x480ea104ff7063ed0af41c98d8ef2457afe2a41c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1155.51585, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3ea400f763bf8ea000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:116', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 833.3366928430046, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2d2cdeaaef0618596b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf68', 'uniqueId': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc:log:120', 'hash': '0xc82f8600d60b4ee764dcd7bd4dec64dc32837ca45eb41ab6510c7758b63f8ddc', 'from': '0x1f8a6d8185b76f5ac08f335610a2390dab3225a8', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 578.9604571569954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1f62b0bc5200798695', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:21.000Z'}}, {'blockNum': '0xa3bf69', 'uniqueId': '0xb8a5dfd1bf04c35fcfa39a5a366d968fb4d45d700d9ba554c6d7464611eb7f13:log:295', 'hash': '0xb8a5dfd1bf04c35fcfa39a5a366d968fb4d45d700d9ba554c6d7464611eb7f13', 'from': '0xef856b2a595c6a56d9bc3afbc70e0c689f78d2a3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:00:46.000Z'}}, {'blockNum': '0xa3bf8c', 'uniqueId': '0x6cfe3d131ca655572ef089d60a4b8db0172dfd5b08767cb025dff1bf1208e824:log:170', 'hash': '0x6cfe3d131ca655572ef089d60a4b8db0172dfd5b08767cb025dff1bf1208e824', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x38d8a38ef107861320a4e04d5c892c3a559e4bbc', 'value': 24.823626215241642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01587f3c85848d749a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:08:29.000Z'}}, {'blockNum': '0xa3bfb3', 'uniqueId': '0x245214c0dbd06dcaac70f79436c0ed147999f7c84af123d345bcb6808ca0eff2:log:210', 'hash': '0x245214c0dbd06dcaac70f79436c0ed147999f7c84af123d345bcb6808ca0eff2', 'from': '0x42423375841fc433bcb17b1af648622920b2d98a', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 6293.39, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01552a54bd30d39b0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:16:34.000Z'}}, {'blockNum': '0xa3c024', 'uniqueId': '0x2cb6f14c9474a6cebe3aa167c75176f1c98bf48db6e34e2d93912ba3e15411ea:log:81', 'hash': '0x2cb6f14c9474a6cebe3aa167c75176f1c98bf48db6e34e2d93912ba3e15411ea', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x31e3d3084dba7065e1a873c7f01768801d3e19b3', 'value': 411.0120713126595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1647f035393c96ca43', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:39:53.000Z'}}, {'blockNum': '0xa3c029', 'uniqueId': '0xa11ac4fc1cb0fdb842150048295e3a5647de6a9c99982d74d055e34d4446344d:log:45', 'hash': '0xa11ac4fc1cb0fdb842150048295e3a5647de6a9c99982d74d055e34d4446344d', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xccc9bde7524b71e93af6572559452f5dc69fe85a', 'value': 146.593, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07f262f4d126d631e0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T19:41:32.000Z'}}, {'blockNum': '0xa3c2fd', 'uniqueId': '0x1afec71a73aa9b2f802855cbe902e640e06c6609ad8a6afd52065af34f73b399:log:234', 'hash': '0x1afec71a73aa9b2f802855cbe902e640e06c6609ad8a6afd52065af34f73b399', 'from': '0x02ec30889bd132f7cff78833cc6bad389646bb99', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x25f273933db5700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T22:23:28.000Z'}}, {'blockNum': '0xa3c3ad', 'uniqueId': '0xed84e2cd8a1f474587426c67f96fca527a0eebdcf8cbccb30a52796deef28c21:log:69', 'hash': '0xed84e2cd8a1f474587426c67f96fca527a0eebdcf8cbccb30a52796deef28c21', 'from': '0xdac6008346a4718b59b1abdf6d7511395bdd1f56', 'to': '0xd9a0691574dc09d6cec1b1134524385d2ca63b4a', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T23:04:49.000Z'}}, {'blockNum': '0xa3c3b6', 'uniqueId': '0x5b36e9fe4a981acee49a1fcf245736becce167cfbb8739b4c716e2cb190a5647:log:240', 'hash': '0x5b36e9fe4a981acee49a1fcf245736becce167cfbb8739b4c716e2cb190a5647', 'from': '0xd9a0691574dc09d6cec1b1134524385d2ca63b4a', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-25T23:06:32.000Z'}}, {'blockNum': '0xa3c4f7', 'uniqueId': '0x1595998200632dd841fe6ac5aea6800a21c02730e02bc700092cabd43dd7cf93:log:6', 'hash': '0x1595998200632dd841fe6ac5aea6800a21c02730e02bc700092cabd43dd7cf93', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x22a70b1619668d5fe45192b70aa2a89291166058', 'value': 1533.0077574300003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x531ac1a128cd5c2940', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:20:08.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:204', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'value': 213.34338032704113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b90bbf210d659094d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:207', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0x4b30796bf2cc2092ae7341e2999ad73d7d456013', 'value': 4.266867606540822, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3b36f57b377ca924', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:208', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0xe3f5ea1e1212e02039ec2df87e567ba1c79f3a03', 'value': 1.0667169016352056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0ecdbd5ecddf2a4a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c53f', 'uniqueId': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9:log:209', 'hash': '0xb7038ddcb4caec3652aa39b4d5b3389001895360d324a786473b8a7fc89ff1d9', 'from': '0xba30a255a23fc6e864f1195eaccedf1eeac9a64c', 'to': '0xf4f5a319fca9ca06c918b28b43f92e347fd8c091', 'value': 208.00979581886511, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b46b73f36d0fd35df', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T00:36:33.000Z'}}, {'blockNum': '0xa3c5b1', 'uniqueId': '0xc068762faaebe54f6b80952585382bc466db8319f8c789a50114c816e9c52f50:log:200', 'hash': '0xc068762faaebe54f6b80952585382bc466db8319f8c789a50114c816e9c52f50', 'from': '0x7532001d3e8c79f64ca8725eb959dfeb88b57c90', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 548.0877969503358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1db63f036ec7304803', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T01:06:58.000Z'}}, {'blockNum': '0xa3c608', 'uniqueId': '0x94650cc837745dd8b63ec24b3ab659e70170a98848dbc0c7c45f5108ea293057:log:39', 'hash': '0x94650cc837745dd8b63ec24b3ab659e70170a98848dbc0c7c45f5108ea293057', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x79338fa41fce2ea394c5f273f4bcaf4936010b20', 'value': 737.77922115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x27febe54b6ce1cac00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T01:25:52.000Z'}}, {'blockNum': '0xa3c6fd', 'uniqueId': '0x558a5e3dcff00ba08c0a7ccb4bf5e94b446c1a79027046cbfde6d18f8564a732:log:97', 'hash': '0x558a5e3dcff00ba08c0a7ccb4bf5e94b446c1a79027046cbfde6d18f8564a732', 'from': '0x5e1102507c1f9e1e2e7218f791a5ded8ab93ee90', 'to': '0x7909021779e05396aabf314fbb3639a44142147c', 'value': 145.78, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x07e71a999fdc720000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-08-26T02:16:44.000Z'}}]}}
Number of returned transfers:  118
Answer is complete
 
symbol             SNM
group              CPI
date        2020-09-04
hour             16:00
exchange       binance
Name: 1083, dtype: object
HERE
 Symbol: SNM, Contract: 0x46d0dac0926fa16707042cadc23f1eb4141fe86b
Datetime timestamps:  2020-09-04 16:00:00 2020-09-04 04:00:00 2020-09-05 04:00:00
Unix timestamps:  1599184800.0 1599271200.0
Hex Block Numbers:  0xa4ac21 0xa4c5f4
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             QLC
group              CPI
date        2020-09-06
hour             16:01
exchange       binance
Name: 1084, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: QLC, Contract: 
Datetime timestamps:  2020-09-06 16:01:00 2020-09-06 04:01:00 2020-09-07 04:01:00
Unix timestamps:  1599357660.0 1599444060.0
Hex Block Numbers:  0xa4df7a 0xa4f93e
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             CDT
group              CPI
date        2020-09-16
hour             16:00
exchange       binance
Name: 1085, dtype: object
HERE
{'osmosis': 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt'}
No contract for ethereum specified
 Symbol: CDT, Contract: 0xcdb37a4fbc2da5b78aa4e41a432792f9533e85cc
Datetime timestamps:  2020-09-16 16:00:00 2020-09-16 04:00:00 2020-09-17 04:00:00
Unix timestamps:  1600221600.0 1600308000.0
Hex Block Numbers:  0xa5de30 0xa5f799
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             GVT
group              CPI
date        2020-09-17
hour             18:00
exchange       binance
Name: 1086, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-09-17 18:00:00 2020-09-17 06:00:00 2020-09-18 06:00:00
Unix timestamps:  1600315200.0 1600401600.0
Hex Block Numbers:  0xa5f9af 0xa61337
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GVT
group              CPI
date        2020-09-30
hour             17:00
exchange       binance
Name: 1087, dtype: object
HERE
 Symbol: GVT, Contract: 
Datetime timestamps:  2020-09-30 17:00:00 2020-09-30 05:00:00 2020-10-01 05:00:00
Unix timestamps:  1601434800.0 1601521200.0
Hex Block Numbers:  0xa7417a 0xa75a52
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RDN
group              CPI
date        2020-10-17
hour             16:00
exchange       binance
Name: 1088, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-10-17 16:00:00 2020-10-17 04:00:00 2020-10-18 04:00:00
Unix timestamps:  1602900000.0 1602986400.0
Hex Block Numbers:  0xa8ec89 0xa905eb
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa8ecb4', 'uniqueId': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755:log:224', 'hash': '0xe8082dd66e7c6f37a2f35da2e1fd6ef737b5efd8b308ba280276738d023dd755', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T02:08:16.000Z'}}, {'blockNum': '0xa8f093', 'uniqueId': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4:log:185', 'hash': '0x2d9a57bbb297ff9d4de64b96465f06ec4ddaa465ca3b15ff0f6c973c6496bac4', 'from': '0x4149b799341ffd4ba835bdc9907409ff0467fe18', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 378.9106340749989, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x148a70fe22fa55128d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T05:43:33.000Z'}}, {'blockNum': '0xa8f1fe', 'uniqueId': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56:log:4', 'hash': '0x4a8f073530e732824bd8a0b77d34eac100bb80d70e5a13bb7c705b55cd3efa56', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1920.9350643831335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x68225447819cca98f3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:06:47.000Z'}}, {'blockNum': '0xa8f201', 'uniqueId': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f:log:56', 'hash': '0xc22ed976ed4b7c3c95c8c88c5a423f7fb17e934ea9abbb45f369ebf98e8ceb3f', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:16.000Z'}}, {'blockNum': '0xa8f202', 'uniqueId': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b:log:151', 'hash': '0xd42d647dd604e7e3b02da3921995482b380cfbd41a05fae4b616e8644a47640b', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 7727.203219645622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01a2e47c93ca580e214b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:07:54.000Z'}}, {'blockNum': '0xa8f245', 'uniqueId': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187:log:214', 'hash': '0xabeefdee2a8cd88adc05b4a325c2cc23597ea0a935e3cd74b62285795f3e6187', 'from': '0x6d377c45cf8c9d19bb6cfdb0c93ccf979026d3f8', 'to': '0xf8622783483722aa2b8d3f689a18d3a79466cb8e', 'value': 1534.9389518395485, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x53358e9c3e32b613c3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:23:04.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:181', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f2e1', 'uniqueId': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb:log:182', 'hash': '0x5cb8ba5a6258788f1f19113e41aa8565e91669dcf8f3134c0994550e4b137bfb', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 637.3648315440512, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x228d36c162bdda9819', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T07:57:46.000Z'}}, {'blockNum': '0xa8f449', 'uniqueId': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998:log:14', 'hash': '0x487e1635b3292742ee4f76a255c547167aa5439e9eae29174302ca914d44c998', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3751.993885394774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcb655fffd9d93247fd', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:20:35.000Z'}}, {'blockNum': '0xa8f44b', 'uniqueId': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75:log:169', 'hash': '0x0d35b122b432ca33f9d45f14ef7bc9e077f9c4c22bb53b202916a4444e9dcc75', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3744.4898976239847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xcafd3c7abb34680000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:21:04.000Z'}}, {'blockNum': '0xa8f458', 'uniqueId': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69:log:18', 'hash': '0x866518435c01fbba032a1b8236c61291750bec16140827b51aa422785e247a69', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:24:29.000Z'}}, {'blockNum': '0xa8f46d', 'uniqueId': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3:log:45', 'hash': '0x27e4a4777f76010f0fc0a801c6c07e60dfb761da76e02056939c52d2e04f65e3', 'from': '0x3dede3fd61a8eb1789ca631331b70f7067729777', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 45927.87198725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x09b9c1430c1bf2277400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T09:30:03.000Z'}}, {'blockNum': '0xa8f595', 'uniqueId': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9:log:32', 'hash': '0x615d429159f8fc8840ea8fd760fd65be181995197dc64a81a3a5d3a12f1424a9', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 17678.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03be5a78c54aef2a0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:34:47.000Z'}}, {'blockNum': '0xa8f5cc', 'uniqueId': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e:log:137', 'hash': '0x705224a1aeee78ecda5cb683c76bba6ac1b8917fbbf56b8443d00c7936722a1e', 'from': '0x4569cd9d62f1db5b59fd504e7e80777274299329', 'to': '0x88793a5eaf644825d78f5730c2f482437e3aeb4d', 'value': 53187.0905255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b4347280ba8cbc95800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:46:15.000Z'}}, {'blockNum': '0xa8f60b', 'uniqueId': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d:log:139', 'hash': '0x1877f5a2980635df9a1603c7a984cb15d8dd7aeaca326fec23f5d6c51eb6906d', 'from': '0x2cedc44ec7fc775caa42acbfb3deae7ed4af24fa', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T10:59:37.000Z'}}, {'blockNum': '0xa8f60e', 'uniqueId': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460:log:60', 'hash': '0x35b114fad95ba6701b2c3eacb0a18a5097c11b1925b687860e180191aa9aa460', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20115.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0442727a311a51800000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:00:16.000Z'}}, {'blockNum': '0xa8f63e', 'uniqueId': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548:log:11', 'hash': '0x9fadee663201300fe23c783d6f2b33f94148a85f7917f52fab1a630226a1f548', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 3671.6538336414615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc70a6ecc70f081bc09', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:08:59.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:46', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 915.2487882567699, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da0e3b93f7af2d3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f63f', 'uniqueId': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed:log:47', 'hash': '0xa9d97286b8a7814bc88214c74dfb286e02b206ae578c9e379f6d560a9596bfed', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 915.2486178129188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x319da048b4b2480000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:10.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:96', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 802.7683055095091, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a5f09cb48c2e26', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f640', 'uniqueId': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60:log:97', 'hash': '0x6dd382d416747cbddaee2ae36794edb0fd1b51ca1d9b8c5f162bef50b0639a60', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 802.7681757273997, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b84a57a9374040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:17.000Z'}}, {'blockNum': '0xa8f644', 'uniqueId': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120:log:240', 'hash': '0x2dd57df0f28dc7612784fb59316b29f0ed38019c336646972095cd4ddb537120', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 3664.3105259741783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc6a486210637b00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:09:43.000Z'}}, {'blockNum': '0xa8f68c', 'uniqueId': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23:log:305', 'hash': '0x851bb01f1d7d5156d111e4a670c281927c07e935198c3725d5cde54617afbb23', 'from': '0x21821de67396f6811e02350e8cdab0805e7dceee', 'to': '0xd44efb5e3e0056de640240943e0c65c9e8865c9f', 'value': 102.9988, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0595653ee393810000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:23.000Z'}}, {'blockNum': '0xa8f68d', 'uniqueId': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea:log:44', 'hash': '0x900c49d689dbe46c09621b6ff6d08dc8896ba63d4de144916cf247b09efd26ea', 'from': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19127.96132155865, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040cedc9d5acd2e00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:30:25.000Z'}}, {'blockNum': '0xa8f6f6', 'uniqueId': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4:log:208', 'hash': '0x4eca9feba3f15f02989a7b3874c6b53521b500d82088ea53179bf6793cc1a7b4', 'from': '0xafd3e0b651e9379971aaf34683553c7553a06e60', 'to': '0x3449169725726193a91f9a918c28d6848226ec3a', 'value': 1136.6581757388358, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d9e4d0c8fb4d537a3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T11:52:18.000Z'}}, {'blockNum': '0xa8f761', 'uniqueId': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f:log:77', 'hash': '0xb3cf998b0b0ddf18733c5bc34c35c71f638b3a37096335e8f07663754e3ae95f', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x2bec9497ff7851c94e105143865da680feb91d09', 'value': 3731.0985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xca4364ad8afccc4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:13:15.000Z'}}, {'blockNum': '0xa8f7f9', 'uniqueId': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1:log:325', 'hash': '0x31be1e268c3bcf158204e4ca1786e03cf2b10dba08b4446db7aac69cd30b48b1', 'from': '0xe0782ace187e676f08a32e96b32d77712ef0b073', 'to': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:43:05.000Z'}}, {'blockNum': '0xa8f81c', 'uniqueId': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920:log:220', 'hash': '0xe7eac1720ec703de33f544f845c7b152255f33a3a0750445be6d156525232920', 'from': '0x0b24106386f6bf7664b1c45ba0a03e7a1be5416b', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T12:50:42.000Z'}}, {'blockNum': '0xa8f8eb', 'uniqueId': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea:log:51', 'hash': '0x520d7e669a09c883791b5836f6fcf056bd5b62d80b97ea1483b53ee2c789baea', 'from': '0x7946632863fbb0a914b3c0e5f74e1c3c98ca64df', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1bdd2ed4b616c80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:34:04.000Z'}}, {'blockNum': '0xa8f908', 'uniqueId': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487:log:46', 'hash': '0xa74d743257e4708c49f790cb6a4a2ad5eb6d26b2cf336ac38bd37c2988543487', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9221.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01f3e8cbbb56e3ba0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T13:41:42.000Z'}}, {'blockNum': '0xa8f978', 'uniqueId': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313:log:280', 'hash': '0xec8f9855a9fefaeebd6f5fa8c4bfeed7c43dd5cdcdb0d8b38546a3c671081313', 'from': '0x20990b7688861fd6d8f45efc1ffb051bb030532c', 'to': '0xca499253c4928a5bd1ee59df395e8a5a59a2e78d', 'value': 1436.496, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4ddf62fd1e35880000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:05:42.000Z'}}, {'blockNum': '0xa8f980', 'uniqueId': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21:log:33', 'hash': '0xe6f4e6598f8e3cdb29d82106feec50e4249ab5e1f1c03a174a31f8f90cc5db21', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:07:44.000Z'}}, {'blockNum': '0xa8f987', 'uniqueId': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8:log:10', 'hash': '0xa0268c41b561b16204c023de6e26f8fea6c48e1dda734845c6d019bd438be4b8', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 3651.4953322428287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc5f2ad6a3932c78e67', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:08:59.000Z'}}, {'blockNum': '0xa8fa2f', 'uniqueId': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0:log:63', 'hash': '0x87c2bebfdd8234f1c1cda65485951ef72f10a266a62ca857a952b6a61b1686e0', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8210.20036828, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01bd136b2771deaff000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:51:54.000Z'}}, {'blockNum': '0xa8fa3e', 'uniqueId': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01:log:97', 'hash': '0x1000005fa17087f675860e21571acd1beadfb31169c61957b061611e7f0cec01', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 8425.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8bde9d451502c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:55:16.000Z'}}, {'blockNum': '0xa8fa42', 'uniqueId': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14:log:55', 'hash': '0x6d0d4fa004d3065ef14b818f181ad0521fa1c4a0a045f5c1718e5f79217d9b14', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2687.8488746452704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x91b56576a7fcc638f2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:57:20.000Z'}}, {'blockNum': '0xa8fa45', 'uniqueId': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558:log:80', 'hash': '0xfc7cb632436e79f58cc9196cc162876388c1102d16175ffc8b6bde192d58c558', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2682.4731768959796, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x916acb2608ee700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T14:58:00.000Z'}}, {'blockNum': '0xa8fa51', 'uniqueId': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728:log:244', 'hash': '0x650c7d7da29fdfd0148ab7982117a3eaf712bf9fb28e6cbf6656ad50f40ca728', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17647.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03bca6b58fa833e60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:00:21.000Z'}}, {'blockNum': '0xa8fa95', 'uniqueId': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e:log:35', 'hash': '0x733d4bdf5cabf57241febeb457305b4e785070045c9fb72938a7c16154ec234e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 9347.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01fac02c32b402060000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:12:35.000Z'}}, {'blockNum': '0xa8faca', 'uniqueId': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7:log:240', 'hash': '0xeca9738034419b4932b28814243b8b784b6c6d41e69cc15e0745bf75bd8f1bf7', 'from': '0x365cc1f75cf0b70fe780880941d50d29913c0bd9', 'to': '0xf73c3c65bde10bf26c2e1763104e609a41702efe', 'value': 460.3016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x18f3f7ca6ae7f20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:25:24.000Z'}}, {'blockNum': '0xa8fad9', 'uniqueId': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048:log:8', 'hash': '0xbbb9affe554bf56b29cdb212e8413001c4870f795de1d49fe0e6929b72a2e048', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 7894.37634788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01abf47ad632c8f71000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:28:16.000Z'}}, {'blockNum': '0xa8fae1', 'uniqueId': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd:log:190', 'hash': '0x962e94a187477118b62e9787d3ff70ab1cceb8786b65b1de3fcd770a2ca3b9dd', 'from': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16104.57671616, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x036907e5fda4a7a70000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:12.000Z'}}, {'blockNum': '0xa8fae2', 'uniqueId': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437:log:191', 'hash': '0x7531f5a3ac803f140faf81fbfc26ec57c8ea551569eb61ba5b3d70298797d437', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2645.4825284988124, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f6971f74d71e909dc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:30:36.000Z'}}, {'blockNum': '0xa8fae3', 'uniqueId': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc:log:25', 'hash': '0x7e1c3c5d642942fc3d4982d1a4aa3f2ee96cbdfddd14962a198854f6a6f843fc', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 6379.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0159dae5ffd752a60000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:31:33.000Z'}}, {'blockNum': '0xa8fae6', 'uniqueId': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f:log:116', 'hash': '0x8aa19b073e54b67801a6697cd0a2769dc1764528acca70d4d2907dbef5afea7f', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2640.1915634418147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8f2004ae9dac900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:32:33.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:270', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.1690587715337, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1a68792eb236a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faed', 'uniqueId': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd:log:271', 'hash': '0x26c2e2bb52993dd437646e78f1ff40e34ced84f980eebe5c790c469f0cf79dcd', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.1688955867392, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3017f1121d27340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:34:42.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:211', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 887.6411287288056, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7ec7a7933d7b15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8faf0', 'uniqueId': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f:log:212', 'hash': '0x4d6c91eaceeb9bf2f624520d0da49a9f8bd6d94cfdd4f23c2e09f0729cb2c03f', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 887.640969434666, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x301e7e36c704a20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:35:11.000Z'}}, {'blockNum': '0xa8fb53', 'uniqueId': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88:log:2', 'hash': '0x439cb9efba2c93ac8f8d4ad0538c273632710951308cc0e0b7fcb24c36337b88', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2631.747487065685, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8eaad54be3f51a7746', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:58:56.000Z'}}, {'blockNum': '0xa8fb56', 'uniqueId': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85:log:86', 'hash': '0xd0c92276d0b602a46966f9febfdd5d1211af0faa5237072434be3e4449992a85', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x8cf1238bf670d12db9d12eb6a7584b415c8aa2e0', 'value': 2626.483992091554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8e61c99b1942f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T15:59:40.000Z'}}, {'blockNum': '0xa8fb58', 'uniqueId': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27:log:10', 'hash': '0xc27ca48e80d374f8f7b30b9288bd7ae81c4ef5ff3d2d50b3dd67c5c1c04d6c27', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 4789.840710473679, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0103a8649c83184dfaf0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:02.000Z'}}, {'blockNum': '0xa8fb59', 'uniqueId': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac:log:6', 'hash': '0x711b185dc9598ba2335b231c15582a3418e92729043b2269fe3d9087ff4f87ac', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:09.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20:log:54', 'hash': '0x441b2e719993c312d36ed5036af88c5d369da3f4386daa8c24035ec539ea5f20', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3201.3953312184785, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xad8c48fc0617700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:140', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 939.6958340005638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e63e4d360a9081', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37:log:141', 'hash': '0x201feda1ad00eb8204a773751a1b11a245ded67a9a3d1f96b64386c453fbeb37', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 939.6956546240192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x32f0e59b28dad20000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5a', 'uniqueId': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d:log:234', 'hash': '0x4a2a6e7ee8a38d39cf9d16b8a1b92917fae6edb33df0a2732ff79a865aa9996d', 'from': '0x2d8e85b308d9cbe0cdd2a9af8a07be39dda22b25', 'to': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'value': 13022.056485624647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02c1ed5633dd08c29b37', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:00:50.000Z'}}, {'blockNum': '0xa8fb5b', 'uniqueId': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e:log:12', 'hash': '0xb9e130590f0b1d963cf7315e7c8ba165984ecb61082df6ac6340186f5d03645e', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x4347dfeb855addc2443a2ffc0227be4b9c38cdaa', 'value': 8354.3388098, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c4e3bdc4543cb3d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:43.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:27', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'to': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6:log:28', 'hash': '0x6659730374313e3a0f77fe660cefc169ce538277422cd9f4da65c319e8f914b6', 'from': '0x0000000094acb89a43eac2fbb3a07973efc2435c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 2176.7299740636113, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7600325a99e6cf247a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5c', 'uniqueId': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962:log:229', 'hash': '0xb61563ee41ed0096c9bc6fc17a1bac4c8dee52c3ac6bd3786e5d972b40c43962', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:47.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:84', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'to': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5d', 'uniqueId': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d:log:85', 'hash': '0xdc9b8a62a3d4b6f3da0c7b7e53b728a604d6a301c1aae51170ba937784fcdd4d', 'from': '0x000000000025d4386f7fb58984cbe110aee3a4c4', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1193.3146092875588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40b09122b1fcfeeded', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:01:54.000Z'}}, {'blockNum': '0xa8fb5f', 'uniqueId': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db:log:27', 'hash': '0xe4d451fab7a2874bba0c55c57f1a9001eafacd4e1ce92075ec3f2d81b55774db', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'value': 3693.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xc83dc5c968a9e40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:06.000Z'}}, {'blockNum': '0xa8fb65', 'uniqueId': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a:log:141', 'hash': '0x03dcaf2fef2d5d362ba589ec766f16fec8fb20953237bf24bcdd777de76d5d6a', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0xdbcdc48dafe87472a2091d083146c815aa171d3f', 'value': 1613.9706008140015, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x577e576e41f256d734', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:02:58.000Z'}}, {'blockNum': '0xa8fb6e', 'uniqueId': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310:log:155', 'hash': '0x9785d55c36ef02722fbb158a56a934d6e401684e877d57e2b4ef3eabb77cc310', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 3509.380443638334, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbe3e6fe7fe9da893e3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:04:54.000Z'}}, {'blockNum': '0xa8fb79', 'uniqueId': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f:log:110', 'hash': '0x8d78ded9ae219cb2a7786cc7e201cb02f55004d765b3696d7cd5840fbf6ca02f', 'from': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'to': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:06:51.000Z'}}, {'blockNum': '0xa8fb7b', 'uniqueId': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda:log:57', 'hash': '0x8d5219d41225409bda52f24fec23d4b803b99f3b8e8ea86cbfdcfb4a147aabda', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0x2e20a7f13c5148cfa0436b379511eaec4b93dc29', 'value': 1993.8410352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c161a51b11d1d8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:23.000Z'}}, {'blockNum': '0xa8fb7c', 'uniqueId': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907:log:37', 'hash': '0xe9cd3a578ee1a3bf26d6129056cb655ad739a8f180121a63ba05db9816814907', 'from': '0x73a323c8d4062f019efb726b9df8db706788e90a', 'to': '0x32e9dc9968fab4c4528165cd37b613dd5d229650', 'value': 12386.95019156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f77625956a7d000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:07:31.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b:log:80', 'hash': '0x9e5543387b5f95f5ab3a6f2dee6bb975229f6635941eeadbc7ccf90c457b7c4b', 'from': '0xd11c25af01d25e5ff28a6a5760db795dafbb3d9d', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 11568.613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x027322c1a65c86108000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:89', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbb9', 'uniqueId': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe:log:95', 'hash': '0x6ae1877b6b02129f85f00275affab801d3e2b6cdeea5f4bf533ead06f8a5f9fe', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 1763.5988000946252, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5f9ad994bd39459aa6', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:09.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:259', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 974.7458636748125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750f6965a899802', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbbb', 'uniqueId': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168:log:264', 'hash': '0x51509b657b4a12cb01e592983c6a73fcfef0b3c00d9322af0760bbee950b2168', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 974.7458352341208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x34d750dcb87d360000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:21:38.000Z'}}, {'blockNum': '0xa8fbe3', 'uniqueId': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd:log:157', 'hash': '0x95a30ccd49dc10d742c4518de8983d6301702e7d9ed28a449ee9cd4c8ede82bd', 'from': '0x51e4ae1c344249e46c9b071758a04e6725596aaa', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20749.25970527027, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0464d1d2c7a760d0bc82', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:12.000Z'}}, {'blockNum': '0xa8fbe4', 'uniqueId': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac:log:57', 'hash': '0xcb8cc12c582d404f79cb789c0cd3ab62895facce460a6db4eadb431db699bfac', 'from': '0xaad60b6615b9eb13a9b0212af7b298f26dd74e7f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 19421.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x041cd8d7fbf3fe900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T16:30:25.000Z'}}, {'blockNum': '0xa8fd1a', 'uniqueId': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900:log:69', 'hash': '0xbc0ae2576af43938bee82c793904d20f078f417874d70bfda61d00a225dbb900', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:38:01.000Z'}}, {'blockNum': '0xa8fd23', 'uniqueId': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f:log:168', 'hash': '0xe116739550bbdb050227e84610dbba8b83320012d436c0ff134c211c03af3f5f', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1599.46593305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x56b50c7fc677f94400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:41:08.000Z'}}, {'blockNum': '0xa8fd71', 'uniqueId': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab:log:64', 'hash': '0xb260332d40bc2f292604854fd97203ad2d094b2a6582651890db3f561f5578ab', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa9fb5d1dcba90428088c8c543ebabad4726d9c1f', 'value': 12386.9501916, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x029f7f776262a6d76000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T17:54:38.000Z'}}, {'blockNum': '0xa8fd9a', 'uniqueId': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87:log:42', 'hash': '0x18432c7966c37a0ecf8d32b6df9c771c2d6849e59a97125e64f89098da5d1c87', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:03:43.000Z'}}, {'blockNum': '0xa8fd9e', 'uniqueId': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744:log:118', 'hash': '0x06ebf5101bd777ed0be77d643bdc736f6554afef4e4621587e5060f34aad4744', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1837.14599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x639785b95fcdbd1c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:05:01.000Z'}}, {'blockNum': '0xa8fdd7', 'uniqueId': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901:log:72', 'hash': '0x3eff27499b6e764df7f4d23310188a711591afc91c18127872ef481a9399e901', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa396fbe9da4a5d18ecfd650466bd66167e383645', 'value': 11686.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0279813752637c620000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:18:22.000Z'}}, {'blockNum': '0xa8fddb', 'uniqueId': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2:log:50', 'hash': '0x9873639deddc080652f16c655ac15e3007e09044dc2a5f8780cf70c9720415d2', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:19:33.000Z'}}, {'blockNum': '0xa8fde5', 'uniqueId': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5:log:191', 'hash': '0xe4d55183ef1ad3d4c54ee20698de9fbe7bce3432b4da9ea323b029271e535cc5', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1879.104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ddce7c148fa00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:21:35.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:118', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0x175789024955c56b06a618806fc13df71d08a377', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdf0', 'uniqueId': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7:log:124', 'hash': '0x7ba9271bd4936b369c3b67c3cc1127cacde4377e4523430fb94a8d9e1bd262e7', 'from': '0x175789024955c56b06a618806fc13df71d08a377', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 677.5348879279103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x24baaf76d635314d39', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:24:27.000Z'}}, {'blockNum': '0xa8fdfe', 'uniqueId': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed:log:33', 'hash': '0x505df4aba9a6508935f26c5a5b3fca5d98f4a5fbb565fbe9558c26e0bb6473ed', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:28:22.000Z'}}, {'blockNum': '0xa8fe07', 'uniqueId': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112:log:61', 'hash': '0x408e26c0149f32636a4cbf114bfaa56b80f3be4d4ab9675c16e9d6b80f1aa112', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1880.10300001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65ebaba54be6496400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:30:17.000Z'}}, {'blockNum': '0xa8fe2e', 'uniqueId': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9:log:24', 'hash': '0x204e520d00f891098d4949f426a864a20ffbf033a5975180a4bfb0d8c48393c9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:40:49.000Z'}}, {'blockNum': '0xa8fe35', 'uniqueId': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1:log:260', 'hash': '0xd6ded337a1cbdecf30cc7b3f1b6db7d6825edb06b048bd5a967112a2ab2050d1', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:43:34.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:105', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe38', 'uniqueId': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6:log:110', 'hash': '0x5a59e24340af8e9ad47df0dc0c4dd54e2b12c7dcf174748e64f4816966f33ad6', 'from': '0xc96cb511b6fa594cc4d2d8542f7f56de1a25f69c', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 713.1737971905725, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26a9464dfcf48c7f2d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:45:19.000Z'}}, {'blockNum': '0xa8fe68', 'uniqueId': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14:log:5', 'hash': '0x7e77db2e2530933c46d1c555415d5cfdcfe0398a37e50f8a5aafac3a2bb03b14', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:55:04.000Z'}}, {'blockNum': '0xa8fe6f', 'uniqueId': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b:log:209', 'hash': '0xa89977bfb87e7701dc1cb10fa04bd2c4f361a468a625e4c00d1f31e488d51e9b', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 1899.08399999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66f315b4366fe21c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T18:56:04.000Z'}}, {'blockNum': '0xa8fe96', 'uniqueId': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf:log:34', 'hash': '0xf86cd30b887f11f80661f9232223c3af8e521947b1cd44d9175c17d823ee8dbf', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'value': 1883.10000001, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x66154320eaee21e400', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:04:02.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:355', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0xc49a5c512cc1cf6c253e318853e858218a1a9b70', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa8feba', 'uniqueId': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c:log:359', 'hash': '0xa61015ee1c8683e6a5b6da02bf157ef8bfe77ed94a101ab18674492dac83424c', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x65bdb4b10b381378050a4c0bf910930e82421946', 'value': 1881.102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x65f988ce7e94db0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T19:11:49.000Z'}}, {'blockNum': '0xa900ab', 'uniqueId': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0:log:269', 'hash': '0x442158d91715599e2fe8e22565cabbe58cce847174adc7f38775aca5ee624ef0', 'from': '0x6a12a09de38346d13f55879e31476b0c53cd2f08', 'to': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T21:07:05.000Z'}}, {'blockNum': '0xa901ad', 'uniqueId': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68:log:35', 'hash': '0x4e8bc891652ab5f9f2057ab776d5174a0a7037a79d937472af19be8c4786bc68', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:02:46.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f:log:45', 'hash': '0x5339298a5dc9d51c7f1973a36da2da52588bb25c8d3b2e00fcb45cc0b001157f', 'from': '0x5fc7467f7b58fba859231c0df65c78d17271931f', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 5790.189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0139e303a9c38e448000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:60', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'to': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'value': 941.1110033730682, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489ef59172daa71', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901b1', 'uniqueId': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c:log:65', 'hash': '0x1eea785f1dc112a0a54d976989290e5cd5dcbccf88177fdec84828dac31a120c', 'from': '0xe33c8e3a0d14a81f0dd7e174830089e82f65fc85', 'to': '0x72717b53da57926bdf988f5645c23f7a3214ac9a', 'value': 941.1109779568085, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x330489d83b680c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:03:26.000Z'}}, {'blockNum': '0xa901ba', 'uniqueId': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5:log:0', 'hash': '0xf53913775fc7871ed7ed3d7b4c820a31177d891e95cceb531f8a3c659227d4f5', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0xbd0e6a324df058e2581506101a50a7596fe623ed', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:04:38.000Z'}}, {'blockNum': '0xa901c3', 'uniqueId': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c:log:130', 'hash': '0xb0c1629f181e1e41b74546289ecf862fda95b53fb7bbc4f80fcd6cfacc70584c', 'from': '0xa33a8b1171941b4eb04a57605dccdeffd4860eb8', 'to': '0x4c95840bb3ce1d717138b3376473f2c021d7bc64', 'value': 49.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02b1b9dead98ea0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-17T22:06:40.000Z'}}, {'blockNum': '0xa904bd', 'uniqueId': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54:log:264', 'hash': '0xe296d2949528668e27219e9fb31e762337b52fa95b7d182bedb2393e4292cf54', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x9198b2637af936766e85a888d6097492a50bf3e8', 'value': 267.26938943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e7d1b9da1f6b11c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T00:46:56.000Z'}}]}}
Number of returned transfers:  105
Answer is complete
 
symbol             OAX
group              CPI
date        2020-10-18
hour             18:00
exchange       binance
Name: 1089, dtype: object
HERE
 Symbol: OAX, Contract: 0x701c244b988a513c945973defa05de933b23fe1d
Datetime timestamps:  2020-10-18 18:00:00 2020-10-18 06:00:00 2020-10-19 06:00:00
Unix timestamps:  1602993600.0 1603080000.0
Hex Block Numbers:  0xa907f1 0xa92179
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa908ed', 'uniqueId': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c:log:88', 'hash': '0x23938febf4113b193224996e6db40316427467d4dfaca508db97bf55cdc3d48c', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T04:56:29.000Z'}}, {'blockNum': '0xa909a8', 'uniqueId': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d:log:0', 'hash': '0x1b1bb38971c8ddeef1761bcaf21008303a0df420e539e311b7a64fb851de157d', 'from': '0x0e9980103475065b8b850866d7aa9dfed6ffcca3', 'to': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'value': 300, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x1043561a8829300000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T05:33:11.000Z'}}, {'blockNum': '0xa90b9a', 'uniqueId': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b:log:16', 'hash': '0x8f656315f34b7e18267fdd9c6542ae2b9496a021a9a64b0871dcaa9c93c5f60b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 2650.3261, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x8faca9c9eba6694000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:25:36.000Z'}}, {'blockNum': '0xa90bbd', 'uniqueId': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e:log:16', 'hash': '0xce66762e73e860990551c69d13b523a1f8cb8ddddfdd575e8a96b9b5072d910e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 189569, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x28248e5b606469640000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T07:35:12.000Z'}}, {'blockNum': '0xa916d6', 'uniqueId': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd:log:2', 'hash': '0x71bea97e3657e91b92021f857a4542b4e8ef78049dee457e942d5513515df4bd', 'from': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:03.000Z'}}, {'blockNum': '0xa916d9', 'uniqueId': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384:log:0', 'hash': '0xd23334b937f4ff10b5a4feccf3993f008fe66a5b443923b5723c60314221d384', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 19298.212457410198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x0416287f5fb3f109354b', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T18:02:56.000Z'}}, {'blockNum': '0xa917f0', 'uniqueId': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb:log:59', 'hash': '0xfe59f5d852b5756e7de5698b463464d45fb060ba6959b15335f54560a2e916bb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:01:22.000Z'}}, {'blockNum': '0xa917f5', 'uniqueId': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9:log:6', 'hash': '0xc8a3ab3132b5039dcda3d79aaf5e4f61bb5594bc4577b6158029885b84ab8ec9', 'from': '0x1550318d0bc8938b3ad0a2b000e00e14747742c0', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 5036.14829448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01110298ef2c1dbd2000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:02:47.000Z'}}, {'blockNum': '0xa91807', 'uniqueId': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4:log:32', 'hash': '0xd08ecb3f367c7845cdecea21313836052e3567787d353f811288788aaded25a4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:06:07.000Z'}}, {'blockNum': '0xa9180f', 'uniqueId': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a:log:16', 'hash': '0xecddf61377379f0e6a3fa839ad5dba2d2d4e47bdca50c030d2bf3a2e2538620a', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 10302.643, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x022e81e4b6c208cb8000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:08:50.000Z'}}, {'blockNum': '0xa9182b', 'uniqueId': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c:log:23', 'hash': '0xcf149337445237ce6a91852c4ec87001b1777bce7fff35e9cf448e1da13cba7c', 'from': '0x1b6c1a0e20af81b922cb454c3e52408496ee7201', 'to': '0xee61f5fb0db81d3a09392375ee96f723c0620e07', 'value': 6237.16825793, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x01521e18fca7539ee400', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T19:16:33.000Z'}}, {'blockNum': '0xa91bd7', 'uniqueId': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084:log:134', 'hash': '0xcc6e5ee8a2e052e9a39ff7fc4a6a6bb1c91dd0ebd360fbc62acf47ca1dda9084', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T22:47:53.000Z'}}, {'blockNum': '0xa91c37', 'uniqueId': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532:log:248', 'hash': '0x0e2bb80d72f1c2882936c80e271d7cb1942dbcedaa15fc9a87ebe2b34c894532', 'from': '0x8c4c8f72d73430e2ef0d5afd90265751b84d0b25', 'to': '0x7c9ac2c6de7187bc1ddbe61ac87e70f02563ab65', 'value': 1109.7472995507262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'OAX', 'category': 'erc20', 'rawContract': {'value': '0x3c28d6693f8a0c9a5a', 'address': '0x701c244b988a513c945973defa05de933b23fe1d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-18T23:10:16.000Z'}}]}}
Number of returned transfers:  13
Answer is complete
 
symbol             PPT
group              CPI
date        2020-10-21
hour             18:00
exchange       binance
Name: 1090, dtype: object
HERE
{'binance-smart-chain': '0xdf061250302e5ccae091b18ca2b45914d785f214'}
No contract for ethereum specified
 Symbol: PPT, Contract: 0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a
Datetime timestamps:  2020-10-21 18:00:00 2020-10-21 06:00:00 2020-10-22 06:00:00
Unix timestamps:  1603252800.0 1603339200.0
Hex Block Numbers:  0xa9547d 0xa96de5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xa954fb', 'uniqueId': '0xf733f06449a7a4ddfa98ab56c953d355dce3e17ec33712a89e911d9292322c52:log:221', 'hash': '0xf733f06449a7a4ddfa98ab56c953d355dce3e17ec33712a89e911d9292322c52', 'from': '0x8e482bf2b636a34fe9626f82e88d409df362ec97', 'to': '0xc50efa7c786d83d6f010c802bf513d1183eb90aa', 'value': 642.444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0ef543bf80', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T04:29:41.000Z'}}, {'blockNum': '0xa95783', 'uniqueId': '0x66909a438c4cafd96e4f8140bf527bc617b72264f91422975dcddaf591b45e00:log:14', 'hash': '0x66909a438c4cafd96e4f8140bf527bc617b72264f91422975dcddaf591b45e00', 'from': '0xd6c57c37e56aa4816d9cc1927a34bc1c771f8f59', 'to': '0xabce47738cbf51f78b517ddc7fe6b96534fc243c', 'value': 10006.772051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8fd02646c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T06:50:43.000Z'}}, {'blockNum': '0xa95915', 'uniqueId': '0xffed573350dbba26494b13f431b00092ef0709be6e0ac3a651fbe93c851000a3:log:51', 'hash': '0xffed573350dbba26494b13f431b00092ef0709be6e0ac3a651fbe93c851000a3', 'from': '0x45cc4b3bbf7ad6e45aba730538ca4eacf180aef1', 'to': '0x0a1f9fe037dd61c687a68821d0c2843d1a17c105', 'value': 1776.4500043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x295c7796ee', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T08:19:05.000Z'}}, {'blockNum': '0xa95c75', 'uniqueId': '0x27fe2f8578660f3f5c18e705dff57e89ea007d2b1a10a6d6a062078ca4ea432f:log:20', 'hash': '0x27fe2f8578660f3f5c18e705dff57e89ea007d2b1a10a6d6a062078ca4ea432f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x2217bf2502f2482b2ce1e39f9eebf4e649d46803', 'value': 96.03505, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x023c69db68', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:34:20.000Z'}}, {'blockNum': '0xa95c8e', 'uniqueId': '0x506da9d5ffded5a70f386eae807782dc6611297458d6a6e5b3946d54f51416a3:log:238', 'hash': '0x506da9d5ffded5a70f386eae807782dc6611297458d6a6e5b3946d54f51416a3', 'from': '0xc8c09eaa6d46fbd4277106a8c14178d45e90dbba', 'to': '0x65fc1551d002fb5b219d5374252d6642642040fa', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:40:25.000Z'}}, {'blockNum': '0xa95ca0', 'uniqueId': '0xa92518e2d547a8d1b26f45cdfe3204f904639855bfd12d5200c9005cd481d6f3:log:209', 'hash': '0xa92518e2d547a8d1b26f45cdfe3204f904639855bfd12d5200c9005cd481d6f3', 'from': '0x65fc1551d002fb5b219d5374252d6642642040fa', 'to': '0x24ba1542f8a0a20e8251d096213384cfb0ee3dbc', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037e11d600', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T11:43:31.000Z'}}, {'blockNum': '0xa95cf8', 'uniqueId': '0x53d0425688cffaf05a7af60f2263961d25c45a7a2aa7fc7d17ac2078322afafa:log:52', 'hash': '0x53d0425688cffaf05a7af60f2263961d25c45a7a2aa7fc7d17ac2078322afafa', 'from': '0xabce47738cbf51f78b517ddc7fe6b96534fc243c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 10006.772051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0xe8fd02646c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:00:18.000Z'}}, {'blockNum': '0xa95d3b', 'uniqueId': '0x1a809e49d4dcfe1e8baed3dec04b4ece3948c90e45c1f4dbdf5d7f4181a7f0f8:log:104', 'hash': '0x1a809e49d4dcfe1e8baed3dec04b4ece3948c90e45c1f4dbdf5d7f4181a7f0f8', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x4490365c6750515b502850dfd30c58dcd5d807c9', 'value': 1604.66397831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x255c8aea87', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:13:21.000Z'}}, {'blockNum': '0xa95d46', 'uniqueId': '0xf53c80b13937a701f55e3253eaee29299ceeedef3c727e2cbac2b69d90a7169d:log:42', 'hash': '0xf53c80b13937a701f55e3253eaee29299ceeedef3c727e2cbac2b69d90a7169d', 'from': '0xafe9b0061fd857b05425e98d89672acf60461d63', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 534.88799277, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0c742e4e2d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:15:07.000Z'}}, {'blockNum': '0xa95d4d', 'uniqueId': '0xf2c8798a8d7cb1cecade89145b9197e76afd57512d37e5e58a8cc45e8fa09734:log:123', 'hash': '0xf2c8798a8d7cb1cecade89145b9197e76afd57512d37e5e58a8cc45e8fa09734', 'from': '0x4490365c6750515b502850dfd30c58dcd5d807c9', 'to': '0x777634c1f8cb1a39c351ba19a3dd3643929ba5e4', 'value': 1604.66397831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x255c8aea87', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:16:32.000Z'}}, {'blockNum': '0xa95de2', 'uniqueId': '0x77f64369137098be2140aa4c8ab50a25cfeec117b584b41319907cca0b41715d:log:206', 'hash': '0x77f64369137098be2140aa4c8ab50a25cfeec117b584b41319907cca0b41715d', 'from': '0x4e6e194f41bf8b462105065cd5a99751392c3008', 'to': '0xa89a1278ac85367f38bdf6746658ce2b9875526e', 'value': 150.23865491, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x037f7dfe93', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T12:48:20.000Z'}}, {'blockNum': '0xa95f3e', 'uniqueId': '0x4e92c0355d18f88127ee6bca5fbd0de22014c3a73041246b5f5c06158ffc39d7:log:251', 'hash': '0x4e92c0355d18f88127ee6bca5fbd0de22014c3a73041246b5f5c06158ffc39d7', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xfbc2a1da2a8d36004bfe4105245eca89e656be75', 'value': 186.7403365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04590f23f2', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T14:06:46.000Z'}}, {'blockNum': '0xa95fdd', 'uniqueId': '0x3fd06730d027a03d37cbccde5a42efaf8087ab76b6b70d385e6cc4f3347ca631:log:52', 'hash': '0x3fd06730d027a03d37cbccde5a42efaf8087ab76b6b70d385e6cc4f3347ca631', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4d3b19858b9b70d5c67a84e23589a3a9e2077765', 'value': 136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x032a9f8800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T14:43:11.000Z'}}, {'blockNum': '0xa96046', 'uniqueId': '0x8a60a9f284235def94f7685927c8da6ab3834e691aeac1e2ba25b0b98e6bc429:log:201', 'hash': '0x8a60a9f284235def94f7685927c8da6ab3834e691aeac1e2ba25b0b98e6bc429', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x4d3b19858b9b70d5c67a84e23589a3a9e2077765', 'value': 78510.14986835, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0723f4f59c53', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T15:08:21.000Z'}}, {'blockNum': '0xa96111', 'uniqueId': '0x694249c72ffdc7f6d9e2513e338fc93391ccb1766ea061e00e4fa676fc388804:log:277', 'hash': '0x694249c72ffdc7f6d9e2513e338fc93391ccb1766ea061e00e4fa676fc388804', 'from': '0xf68ab127080d0784c25f4cbfe01d7c4ed64eaf68', 'to': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T15:50:14.000Z'}}, {'blockNum': '0xa9622e', 'uniqueId': '0x129674a5f1282e3c67ac94ac59b5e6d7afd49d4205677d25294e90f0d01d1261:log:265', 'hash': '0x129674a5f1282e3c67ac94ac59b5e6d7afd49d4205677d25294e90f0d01d1261', 'from': '0x75fd9c718302bf04e70db74d68fb43fe97854fc2', 'to': '0xb3612d04f0f3f25685dc0ffed3095e920f7fb350', 'value': 781.91464038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1234930e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T16:52:22.000Z'}}, {'blockNum': '0xa9623d', 'uniqueId': '0xc3fc737dcc9e99b6ff67a9d8b127dc19b10b9894987a89e4cbf9fc9dd5723b06:log:360', 'hash': '0xc3fc737dcc9e99b6ff67a9d8b127dc19b10b9894987a89e4cbf9fc9dd5723b06', 'from': '0xb3612d04f0f3f25685dc0ffed3095e920f7fb350', 'to': '0xe03c23519e18d64f144d2800e30e81b0065c48b5', 'value': 781.91464038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x1234930e66', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T16:57:20.000Z'}}, {'blockNum': '0xa9631a', 'uniqueId': '0x3b67d4e3139c32e4f06bead1a749fbf656375f5bba812c54ed86243dceff2512:log:157', 'hash': '0x3b67d4e3139c32e4f06bead1a749fbf656375f5bba812c54ed86243dceff2512', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xeed6d8684f0199cc447fefcdb343d85a05d24d32', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T17:45:08.000Z'}}, {'blockNum': '0xa96346', 'uniqueId': '0x316fad5dd9c77529c7121f17f78e7ca44da2ef6ec85d3c19adafaf51aee77081:log:35', 'hash': '0x316fad5dd9c77529c7121f17f78e7ca44da2ef6ec85d3c19adafaf51aee77081', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x1448be8f5fef7448ade238d5e0e6337e374b1a68', 'value': 58.244115, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x015b29776c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T17:56:20.000Z'}}, {'blockNum': '0xa96391', 'uniqueId': '0x3f2625fecbbd9dc84274ec22da6ff9c9cd03c9a8c85f8a20f8fcaf017478a5ca:log:174', 'hash': '0x3f2625fecbbd9dc84274ec22da6ff9c9cd03c9a8c85f8a20f8fcaf017478a5ca', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x2d0cb18f6c438ccce7debfdedb9018b2d08e5425', 'value': 772.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x11faea57b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:13:20.000Z'}}, {'blockNum': '0xa963dc', 'uniqueId': '0x12ffc236a2ca8f9de597e732bdd45904d714be4a7f2c9240169df65a4d5eb6b4:log:190', 'hash': '0x12ffc236a2ca8f9de597e732bdd45904d714be4a7f2c9240169df65a4d5eb6b4', 'from': '0x84ed30994c919cc35652e46b1278709347dcbd99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01d1a94a2000', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:30:20.000Z'}}, {'blockNum': '0xa963e8', 'uniqueId': '0x19aa7811e4a516a5e45e858e12bb78ef7674ecaf4cbd896bb52409e2ce7252cb:log:307', 'hash': '0x19aa7811e4a516a5e45e858e12bb78ef7674ecaf4cbd896bb52409e2ce7252cb', 'from': '0x2d0cb18f6c438ccce7debfdedb9018b2d08e5425', 'to': '0x1eb0fd75d347a4faaaeed9653c3d148738b8ea50', 'value': 372.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aabac7b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:32:45.000Z'}}, {'blockNum': '0xa963f5', 'uniqueId': '0x919349ded6718e4f3f72f2f649128664f23cc847a93044a1ce7b39a0504bb435:log:247', 'hash': '0x919349ded6718e4f3f72f2f649128664f23cc847a93044a1ce7b39a0504bb435', 'from': '0x1eb0fd75d347a4faaaeed9653c3d148738b8ea50', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 372.2410591, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x08aabac7b6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:35:39.000Z'}}, {'blockNum': '0xa963fe', 'uniqueId': '0xbd9e17d20d8e59e9b7f56aa1c07141746f11462e89ae2ee6ac0d6ce4ca17656a:log:277', 'hash': '0xbd9e17d20d8e59e9b7f56aa1c07141746f11462e89ae2ee6ac0d6ce4ca17656a', 'from': '0xc53fddeb3f7780e1249f13baf021cc18d3812f83', 'to': '0x16df71dd45af233d2265e57002908b8fcf5b13b3', 'value': 704.5168583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x10673f69c6', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:38:51.000Z'}}, {'blockNum': '0xa96406', 'uniqueId': '0x517102ef8edb6647c12ef3c2a7ffc4c85124e3c72cd61f6ead5267e844c23d0c:log:212', 'hash': '0x517102ef8edb6647c12ef3c2a7ffc4c85124e3c72cd61f6ead5267e844c23d0c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 1528.456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x23964ec500', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T18:40:32.000Z'}}, {'blockNum': '0xa96459', 'uniqueId': '0x0ce64017f435b0f9d97068a9d1dc4c425778ea654c6c1d5a8192736e1571b83e:log:55', 'hash': '0x0ce64017f435b0f9d97068a9d1dc4c425778ea654c6c1d5a8192736e1571b83e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc53fddeb3f7780e1249f13baf021cc18d3812f83', 'value': 666.1368583, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f827c2e46', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:00:24.000Z'}}, {'blockNum': '0xa9650e', 'uniqueId': '0xbdce316c5ba13c0567ddc55250cfc841988f37a4932674e5e56409b00ccfd246:log:70', 'hash': '0xbdce316c5ba13c0567ddc55250cfc841988f37a4932674e5e56409b00ccfd246', 'from': '0x694bf88ebe333ec2f783fa02eb2674d132d603e5', 'to': '0xc397ffa9377a94a784795e1c5b9575cba2fd9b0f', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:44:28.000Z'}}, {'blockNum': '0xa96525', 'uniqueId': '0x955b8c6380ea2c84eb72535666f9bc92a5a4245d91524604607c15fb2a3a699c:log:207', 'hash': '0x955b8c6380ea2c84eb72535666f9bc92a5a4245d91524604607c15fb2a3a699c', 'from': '0x694bf88ebe333ec2f783fa02eb2674d132d603e5', 'to': '0xc397ffa9377a94a784795e1c5b9575cba2fd9b0f', 'value': 2845.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x423ee470c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T19:50:14.000Z'}}, {'blockNum': '0xa965c1', 'uniqueId': '0x3d0d2171cdbc1f5edc5de8cb8711bf9702434bc309109387b4282e0b91fdb0d9:log:319', 'hash': '0x3d0d2171cdbc1f5edc5de8cb8711bf9702434bc309109387b4282e0b91fdb0d9', 'from': '0x56aa3bb0668d3c0c54ccf108775eeda4399828d7', 'to': '0xf88e50fee72d1036306f6b6f09a8e74164c3a4d7', 'value': 83.17194501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01efbe5105', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:23:29.000Z'}}, {'blockNum': '0xa965d1', 'uniqueId': '0x4af6805da6b7a7e22d4913cad52669b70e97efc759cbc89f7df6cae64ef44705:log:84', 'hash': '0x4af6805da6b7a7e22d4913cad52669b70e97efc759cbc89f7df6cae64ef44705', 'from': '0xf88e50fee72d1036306f6b6f09a8e74164c3a4d7', 'to': '0x24ba1542f8a0a20e8251d096213384cfb0ee3dbc', 'value': 83.17194501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x01efbe5105', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:26:24.000Z'}}, {'blockNum': '0xa96616', 'uniqueId': '0xfd139fe2710cc81371acd5bd023a42ca6ced4f4dc2868868aba2f4af20bff8b8:log:35', 'hash': '0xfd139fe2710cc81371acd5bd023a42ca6ced4f4dc2868868aba2f4af20bff8b8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7df0fb47bd6123a5106c915e512e857e15fd7b42', 'value': 107.0361, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x027dfc2090', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T20:40:52.000Z'}}, {'blockNum': '0xa966ab', 'uniqueId': '0xe54499f3db1b80187b3961693b4a8efd9722e24f260f6c0eeeffc586ab52827e:log:63', 'hash': '0xe54499f3db1b80187b3961693b4a8efd9722e24f260f6c0eeeffc586ab52827e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x96b70ed819ed2854c47878e4e5532e98ca8af7d5', 'value': 124.51311213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02e627ee6d', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:15:41.000Z'}}, {'blockNum': '0xa96708', 'uniqueId': '0x590c114e5a286588616754be2fbea84f1a57049e0fdbe7f5b558ff1a8b63b43e:log:171', 'hash': '0x590c114e5a286588616754be2fbea84f1a57049e0fdbe7f5b558ff1a8b63b43e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:35:28.000Z'}}, {'blockNum': '0xa96715', 'uniqueId': '0x12628af6d79560c024e57d05746885706188a12d275d3e5f1b119a31345f4e2d:log:32', 'hash': '0x12628af6d79560c024e57d05746885706188a12d275d3e5f1b119a31345f4e2d', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:38:42.000Z'}}, {'blockNum': '0xa96719', 'uniqueId': '0x975e5c0753470fde6135f7b9654959d798538609ae68c1dbb8bfc8b11ab8d7fc:log:84', 'hash': '0x975e5c0753470fde6135f7b9654959d798538609ae68c1dbb8bfc8b11ab8d7fc', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:39:18.000Z'}}, {'blockNum': '0xa9671b', 'uniqueId': '0xb74d1ee03871eeaa91a90bc56e9b78a5fb562abf4cdddcff684948614e557cc2:log:46', 'hash': '0xb74d1ee03871eeaa91a90bc56e9b78a5fb562abf4cdddcff684948614e557cc2', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:40:13.000Z'}}, {'blockNum': '0xa9671e', 'uniqueId': '0x3342f0bdaf45ea258e60ac632d18b9ff41821f0bd43aae429ae5fd23740225aa:log:60', 'hash': '0x3342f0bdaf45ea258e60ac632d18b9ff41821f0bd43aae429ae5fd23740225aa', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:41:28.000Z'}}, {'blockNum': '0xa96724', 'uniqueId': '0x174cae26f7600caab1dff91cb56cb23fad2f5cdbbd5375b80777530b441cc751:log:34', 'hash': '0x174cae26f7600caab1dff91cb56cb23fad2f5cdbbd5375b80777530b441cc751', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T21:42:50.000Z'}}, {'blockNum': '0xa96782', 'uniqueId': '0x81691373004f862b0bc28260f6e6376ccbba811932f490e622fa81f17bb1f1d5:log:64', 'hash': '0x81691373004f862b0bc28260f6e6376ccbba811932f490e622fa81f17bb1f1d5', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:01:49.000Z'}}, {'blockNum': '0xa96782', 'uniqueId': '0x152a82a1cf6137dd93c8b6e6630bd201a66d681cd885d2f3170276f5c9dd7c1e:log:67', 'hash': '0x152a82a1cf6137dd93c8b6e6630bd201a66d681cd885d2f3170276f5c9dd7c1e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:01:49.000Z'}}, {'blockNum': '0xa96786', 'uniqueId': '0x315c2b40be3f1e9de185187cb80608886b7ada576e47fd9cf2c8e6d9df3ba9a7:log:10', 'hash': '0x315c2b40be3f1e9de185187cb80608886b7ada576e47fd9cf2c8e6d9df3ba9a7', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:08.000Z'}}, {'blockNum': '0xa96786', 'uniqueId': '0x8b1f947409dec8d869b46409866bc47e4d211a4503f98949107f110cb2e4a991:log:11', 'hash': '0x8b1f947409dec8d869b46409866bc47e4d211a4503f98949107f110cb2e4a991', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:08.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0xd4c74d18aa02c825e349a15a4725b260509cde0da8e081c3e1f46962ec1f9b4e:log:20', 'hash': '0xd4c74d18aa02c825e349a15a4725b260509cde0da8e081c3e1f46962ec1f9b4e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0x8c2a17cab487474d14583c654bbd5c3372967b50a288f77868cd66ff25470f87:log:21', 'hash': '0x8c2a17cab487474d14583c654bbd5c3372967b50a288f77868cd66ff25470f87', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa96789', 'uniqueId': '0xd6af298920ea4cae22c5ca80bd20117cb37d8b98743c94fa9900919834db5bff:log:22', 'hash': '0xd6af298920ea4cae22c5ca80bd20117cb37d8b98743c94fa9900919834db5bff', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:03:40.000Z'}}, {'blockNum': '0xa9678e', 'uniqueId': '0x90d4d72a13fd862cdc9a5486424ea3dd1e72de1d93f51873cda38fd6d6e83bb3:log:133', 'hash': '0x90d4d72a13fd862cdc9a5486424ea3dd1e72de1d93f51873cda38fd6d6e83bb3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:04:30.000Z'}}, {'blockNum': '0xa96805', 'uniqueId': '0x978df893658e0656ab9ae54474847682bd4b70a4325d7ffc24d2af896a3681a3:log:33', 'hash': '0x978df893658e0656ab9ae54474847682bd4b70a4325d7ffc24d2af896a3681a3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:31:24.000Z'}}, {'blockNum': '0xa9680d', 'uniqueId': '0x968953caef00a9d38cc023242bdb04f23be52cf3960f3d72084c408572cced6f:log:38', 'hash': '0x968953caef00a9d38cc023242bdb04f23be52cf3960f3d72084c408572cced6f', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:32:39.000Z'}}, {'blockNum': '0xa9682c', 'uniqueId': '0x2963a91ccb1fab54a846739f3b7088625b3eec6b5068f31615ec29aa853cce03:log:20', 'hash': '0x2963a91ccb1fab54a846739f3b7088625b3eec6b5068f31615ec29aa853cce03', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6fc7d7a73e712c234221e4b9e8aac42a65fefcfb', 'value': 958.69491675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x16524459db', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:39:00.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xc667f819810b17d52c8bff0f9f157ff78cb9451b3eebbb59565dce620b8880f9:log:66', 'hash': '0xc667f819810b17d52c8bff0f9f157ff78cb9451b3eebbb59565dce620b8880f9', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xbed009e199152531209dedc112d687d8c757f7c70784d87a44a6b85b34db1289:log:67', 'hash': '0xbed009e199152531209dedc112d687d8c757f7c70784d87a44a6b85b34db1289', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0x66f9b208c8255bf81d6cc7a14ec685f6b1373f74fa351d654c44c202cc70cf92:log:68', 'hash': '0x66f9b208c8255bf81d6cc7a14ec685f6b1373f74fa351d654c44c202cc70cf92', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0x202ed608005d2f929644271e80d524093fec3941097bfec2d155032f99489833:log:69', 'hash': '0x202ed608005d2f929644271e80d524093fec3941097bfec2d155032f99489833', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96831', 'uniqueId': '0xc9270d9e4404c91070c6a2fab459efe4ff4aa32b2dc9c91723dc89ccc4fd7926:log:70', 'hash': '0xc9270d9e4404c91070c6a2fab459efe4ff4aa32b2dc9c91723dc89ccc4fd7926', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:40:13.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x49f5a9edd4cc328e59592792d98bef8b51d09e2f396a61626d9eaa7df5c523f3:log:20', 'hash': '0x49f5a9edd4cc328e59592792d98bef8b51d09e2f396a61626d9eaa7df5c523f3', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x357849f43109af4b77766023b931aecf368ec7aee27f41112156f54971698464:log:21', 'hash': '0x357849f43109af4b77766023b931aecf368ec7aee27f41112156f54971698464', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0xdd2f82ef5c0deb5463d1cc34a99894c2bd8f3059b5e54a7657b60b29aba2580e:log:22', 'hash': '0xdd2f82ef5c0deb5463d1cc34a99894c2bd8f3059b5e54a7657b60b29aba2580e', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x2b7951f49c491534e935e407c650a7b48fc6cc85d29de9ff345855b51d579d30:log:23', 'hash': '0x2b7951f49c491534e935e407c650a7b48fc6cc85d29de9ff345855b51d579d30', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa96858', 'uniqueId': '0x7bafb54c03fc4e057413b8a31c790a64412de912feafb95772bb193513d663dc:log:24', 'hash': '0x7bafb54c03fc4e057413b8a31c790a64412de912feafb95772bb193513d663dc', 'from': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'to': '0x03da0f59d51c72d4e4527f2ea00a652ff58addcd', 'value': 0.01, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x0f4240', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:46:09.000Z'}}, {'blockNum': '0xa9688e', 'uniqueId': '0x43cd171b85a18953b49e560a25feb433d98f609aae42aa1e7e5c99a39ef9bad1:log:251', 'hash': '0x43cd171b85a18953b49e560a25feb433d98f609aae42aa1e7e5c99a39ef9bad1', 'from': '0xbc9990df22f469960b52dadfcfdac1ce13778d52', 'to': '0x20e3a9cf9f2d4773de24fb50b1eff25fed70acc3', 'value': 815.23529991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x12fb2e5907', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T22:57:57.000Z'}}, {'blockNum': '0xa96936', 'uniqueId': '0x966c57e95fcda75d0a064ecefc8e49ad5f8aeca0a2ce9737c7ee04a702b944b1:log:96', 'hash': '0x966c57e95fcda75d0a064ecefc8e49ad5f8aeca0a2ce9737c7ee04a702b944b1', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xee2f4168e281c039ba09222438b2f05c2c2ddcc4', 'value': 125.48958189, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x02ebf9e7ed', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-21T23:33:56.000Z'}}, {'blockNum': '0xa969c9', 'uniqueId': '0xeaefab198c413b17ec2e55467335690a83182b3d534f498c59bf93cdfcc5a7be:log:79', 'hash': '0xeaefab198c413b17ec2e55467335690a83182b3d534f498c59bf93cdfcc5a7be', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x9d69b7378c222f3aaa5b86202ab3d151a9a8b54a', 'value': 3258.724, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x4bdf823680', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T00:04:56.000Z'}}, {'blockNum': '0xa96a12', 'uniqueId': '0x81e2868c42859c7c8db08414bb3be99a044acd7dcbadbb85bc04a25bb6994fc3:log:283', 'hash': '0x81e2868c42859c7c8db08414bb3be99a044acd7dcbadbb85bc04a25bb6994fc3', 'from': '0x6588be445e0e36a02f1ebaeca5219c5fc1a00e2c', 'to': '0xc5ab4a0b9fe13cfd09a043a30eb2be37bb4beed9', 'value': 203.809136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x04becc0fc0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T00:21:47.000Z'}}, {'blockNum': '0xa96ad5', 'uniqueId': '0x595619ba7f9ba6f9ae91d2d9a47dc895bd44d322a7c003ec2a8eef4bc91a9639:log:359', 'hash': '0x595619ba7f9ba6f9ae91d2d9a47dc895bd44d322a7c003ec2a8eef4bc91a9639', 'from': '0xe86e8f4134b158b4b14888d8660a013d6b93de58', 'to': '0xc151e91622711375eaeff148f2c13d88d377d7f7', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x174876e800', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T01:05:11.000Z'}}, {'blockNum': '0xa96bb6', 'uniqueId': '0xda9297ca1d24f2be4a66611b0ae32aee3763a3a12eb437c1bd926dc8d06478b7:log:94', 'hash': '0xda9297ca1d24f2be4a66611b0ae32aee3763a3a12eb437c1bd926dc8d06478b7', 'from': '0x51cf7fdee1d03182679ea129cd0d5c2a5228bd5d', 'to': '0xbb5261898924a9890402e5d5b99c8b75b45a9e4a', 'value': 3553.9692, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x52bf4ea2c0', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T01:55:15.000Z'}}, {'blockNum': '0xa96c73', 'uniqueId': '0x61e5eb953dfaf9b31d3d197c1993d5130bf192b6bf6f6ae33526ca0eafb5caa7:log:206', 'hash': '0x61e5eb953dfaf9b31d3d197c1993d5130bf192b6bf6f6ae33526ca0eafb5caa7', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8c633b628d1eb7e3c87c36614dbacf6f193bb3af', 'value': 1662.4396782, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x26b4e9a34c', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:38:41.000Z'}}, {'blockNum': '0xa96c77', 'uniqueId': '0xe7d4a86b01d8bbea04f8da8d853ef0492a4cd98d1afc44af1e7bb067391d7428:log:154', 'hash': '0xe7d4a86b01d8bbea04f8da8d853ef0492a4cd98d1afc44af1e7bb067391d7428', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x8c633b628d1eb7e3c87c36614dbacf6f193bb3af', 'value': 2086.2140991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x3092ce1676', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:39:22.000Z'}}, {'blockNum': '0xa96c90', 'uniqueId': '0x2973682215d3b661a4d0e420dca40038860f2fe44da51465876baab68230af4e:log:94', 'hash': '0x2973682215d3b661a4d0e420dca40038860f2fe44da51465876baab68230af4e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 5841.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x87ff9c0540', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:45:44.000Z'}}, {'blockNum': '0xa96cab', 'uniqueId': '0x1cdaa42e188fc62e0b633d8fe3a2c442f188bdbdbfb780c65fa121364960eb4f:log:148', 'hash': '0x1cdaa42e188fc62e0b633d8fe3a2c442f188bdbdbfb780c65fa121364960eb4f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 40077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'PPT', 'category': 'erc20', 'rawContract': {'value': '0x03a51d88ed00', 'address': '0xd4fa1460f537bb9085d22c7bccb5dd450ef28e3a', 'decimal': '0x8'}, 'metadata': {'blockTimestamp': '2020-10-22T02:51:13.000Z'}}]}}
Number of returned transfers:  69
Answer is complete
 
symbol            DUSK
group              CPI
date        2020-10-30
hour             16:00
exchange       binance
Name: 1091, dtype: object
HERE
 Symbol: DUSK, Contract: 0x940a2db1b7008b6c776d4faaca729d6d4a4aa551
Datetime timestamps:  2020-10-30 16:00:00 2020-10-30 04:00:00 2020-10-31 04:00:00
Unix timestamps:  1604026800.0 1604113200.0
Hex Block Numbers:  0xaa388c 0xaa51de
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaa3b48', 'uniqueId': '0xf245c666372cab91278da76ae392db6c57efec035cc88b9390a810806065005e:log:209', 'hash': '0xf245c666372cab91278da76ae392db6c57efec035cc88b9390a810806065005e', 'from': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'to': '0x6e730912c4b90960e2de76791376969fb99d39a8', 'value': 2162.725649173735, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x753dd8ff4fda8bcdbb', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T05:34:59.000Z'}}, {'blockNum': '0xaa3cb6', 'uniqueId': '0x05d597e6a6c78b55c207aa53540d765b234f7b5396540983c48d131eb4411cea:log:14', 'hash': '0x05d597e6a6c78b55c207aa53540d765b234f7b5396540983c48d131eb4411cea', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9eda3fb4166f753809282c4810ad26f40e78fbd4', 'value': 4923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x010ae05970d4000c0000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T06:56:54.000Z'}}, {'blockNum': '0xaa3f60', 'uniqueId': '0x8e86d0ec105bab556b5e491b850b787b9fc75697bbcd35ffa4839bd6be6fc2fa:log:169', 'hash': '0x8e86d0ec105bab556b5e491b850b787b9fc75697bbcd35ffa4839bd6be6fc2fa', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 16030.17169771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0364ff524393dd044c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T09:27:32.000Z'}}, {'blockNum': '0xaa3f69', 'uniqueId': '0x5d19e01cbb9ecba59f7d3dc88e456e0eaa7a3e5be65386b2f4c36d14149d9365:log:142', 'hash': '0x5d19e01cbb9ecba59f7d3dc88e456e0eaa7a3e5be65386b2f4c36d14149d9365', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36076.53608867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x07a3b6833ef717a62c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T09:30:36.000Z'}}, {'blockNum': '0xaa3f74', 'uniqueId': '0x1d62986c3985f5b0f77ea65416924f1d220e38dd42084d0603e5295ed05efa0b:log:264', 'hash': '0x1d62986c3985f5b0f77ea65416924f1d220e38dd42084d0603e5295ed05efa0b', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 14713.45545501, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x031d9e36751a847cd400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T09:33:31.000Z'}}, {'blockNum': '0xaa40de', 'uniqueId': '0x7f0ab2872067dd3260358662ce7f3ecd642f2d217278544ac3683aeb9d5407f3:log:46', 'hash': '0x7f0ab2872067dd3260358662ce7f3ecd642f2d217278544ac3683aeb9d5407f3', 'from': '0xf10eb00e6cd7a611df9fde16f8781e76c1ab5ab7', 'to': '0x83ec27ea3450136a482ca149c860b9eb6c2a6758', 'value': 5100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x011478b7c30abc300000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T10:49:22.000Z'}}, {'blockNum': '0xaa411a', 'uniqueId': '0xf39b8eac43e74e6cfef76068acb28bbf196ab5b2d48de9edfb3d9fcdab623e6a:log:34', 'hash': '0xf39b8eac43e74e6cfef76068acb28bbf196ab5b2d48de9edfb3d9fcdab623e6a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x40782aa0ec6b6df1a52582bcc5e4ed2aac0e440d', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T11:04:34.000Z'}}, {'blockNum': '0xaa412e', 'uniqueId': '0xea10886bb98108117af4b354883998ea7bfc85812b430c677f6dabee16f18340:log:188', 'hash': '0xea10886bb98108117af4b354883998ea7bfc85812b430c677f6dabee16f18340', 'from': '0x40782aa0ec6b6df1a52582bcc5e4ed2aac0e440d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 3207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xadda10c495f5bc0000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T11:10:15.000Z'}}, {'blockNum': '0xaa419f', 'uniqueId': '0xeb2a51a01aec0bdf434e6dae43fb4b7a25233ef5b1fe031374ae0907b3618ba0:log:14', 'hash': '0xeb2a51a01aec0bdf434e6dae43fb4b7a25233ef5b1fe031374ae0907b3618ba0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x40782aa0ec6b6df1a52582bcc5e4ed2aac0e440d', 'value': 6529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0161f0139be01d640000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T11:35:34.000Z'}}, {'blockNum': '0xaa41b3', 'uniqueId': '0x1f6152c1d493525aa859849c428626e5d0ad4257a147f1a725984ba0f6e5c9cc:log:320', 'hash': '0x1f6152c1d493525aa859849c428626e5d0ad4257a147f1a725984ba0f6e5c9cc', 'from': '0x40782aa0ec6b6df1a52582bcc5e4ed2aac0e440d', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 6529, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0161f0139be01d640000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T11:40:56.000Z'}}, {'blockNum': '0xaa4332', 'uniqueId': '0xa805c45dc0fa4fef43055684dbdc2031fb6bf1503c241c3fb7aac273ceacdc26:log:43', 'hash': '0xa805c45dc0fa4fef43055684dbdc2031fb6bf1503c241c3fb7aac273ceacdc26', 'from': '0xf10eb00e6cd7a611df9fde16f8781e76c1ab5ab7', 'to': '0x83ec27ea3450136a482ca149c860b9eb6c2a6758', 'value': 20000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x043c33c1937564800000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T13:10:30.000Z'}}, {'blockNum': '0xaa4394', 'uniqueId': '0x7e9ce3276e16c31ac9ea74a03efa0720f0ce82817f7ec10d29881ca74e9bbbe6:log:47', 'hash': '0x7e9ce3276e16c31ac9ea74a03efa0720f0ce82817f7ec10d29881ca74e9bbbe6', 'from': '0x83ec27ea3450136a482ca149c860b9eb6c2a6758', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50450, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0aaee6651871b9080000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T13:30:12.000Z'}}, {'blockNum': '0xaa44b2', 'uniqueId': '0x02151d1131e9ac749b507458a11b2d0ab4c065795a5a6ed1c2c8de311443e569:log:314', 'hash': '0x02151d1131e9ac749b507458a11b2d0ab4c065795a5a6ed1c2c8de311443e569', 'from': '0xfda0572937e0e4b5dfb8327a8c8a9f7dde86b78d', 'to': '0xeed86b90448c371eab47b7f16e294297c27e4f51', 'value': 1382.91890789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x4af7daebb52298f400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T14:36:27.000Z'}}, {'blockNum': '0xaa463f', 'uniqueId': '0xd35d02a909deaa676d480c190815a1d47d59f558a3d777ce912f00b8300ecd8f:log:77', 'hash': '0xd35d02a909deaa676d480c190815a1d47d59f558a3d777ce912f00b8300ecd8f', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 4684.79963991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xfdf6a7c35da9767c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:01:45.000Z'}}, {'blockNum': '0xaa4647', 'uniqueId': '0x08c9e003200a0331a03f0533d9bfb778345852f17f967ccd85d6133a0625a80b:log:148', 'hash': '0x08c9e003200a0331a03f0533d9bfb778345852f17f967ccd85d6133a0625a80b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x3f3c5446d7703c5a7091754677f149560a061c66', 'value': 5383.01333831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0123d0511ec415303c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:03:22.000Z'}}, {'blockNum': '0xaa4649', 'uniqueId': '0xe86f52ae4c4a509d14d4779606610910cbca3c565915a05f89cdb101e656d079:log:224', 'hash': '0xe86f52ae4c4a509d14d4779606610910cbca3c565915a05f89cdb101e656d079', 'from': '0xfd899d1e1a3b6128cf1165587d15a5b2177be540', 'to': '0xc6ab923dbc55548004c8ee1aceecf87c31b665e4', 'value': 68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03afb087b876900000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:03:47.000Z'}}, {'blockNum': '0xaa464b', 'uniqueId': '0x439a472d68b174c0781f9b1bcc7c411440d42a71afcc957fd1c195eb08ae57db:log:203', 'hash': '0x439a472d68b174c0781f9b1bcc7c411440d42a71afcc957fd1c195eb08ae57db', 'from': '0xfc6ed1944c6f8ab954b60604632ace1e2f55b8cd', 'to': '0xf7f91abb419fbc55aa303242e689ca7b2f4791a7', 'value': 68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03afb087b876900000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:04:01.000Z'}}, {'blockNum': '0xaa4657', 'uniqueId': '0x504b98646cbcccda4c151dc6e8834e9f5639fb905c1ce76e38d4fbcae61b1510:log:148', 'hash': '0x504b98646cbcccda4c151dc6e8834e9f5639fb905c1ce76e38d4fbcae61b1510', 'from': '0x1cf0d30bd8934ccb290f7888660ce0c82e08031e', 'to': '0x298d9df2486d3f310e358150ae76b76ac8bbc798', 'value': 68, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03afb087b876900000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:06:23.000Z'}}, {'blockNum': '0xaa465c', 'uniqueId': '0x33647bbe42ff4b996473dcccaa52b316ad8e9a1952c3998c5eec42a3ecd75f82:log:49', 'hash': '0x33647bbe42ff4b996473dcccaa52b316ad8e9a1952c3998c5eec42a3ecd75f82', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 17150.1582102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03a1b641aabe900ff000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:07:44.000Z'}}, {'blockNum': '0xaa465c', 'uniqueId': '0xde02dc4e037087fb00ef857592d0de08172d6401c4bb4ca60460272813b58136:log:50', 'hash': '0xde02dc4e037087fb00ef857592d0de08172d6401c4bb4ca60460272813b58136', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 1715.01582102, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x5cf8a02aaca8019800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:07:44.000Z'}}, {'blockNum': '0xaa4661', 'uniqueId': '0x7cca82b533dbbdb75f31da9dabc274383fe9edb4c1e684f330220f95db36ed87:log:50', 'hash': '0x7cca82b533dbbdb75f31da9dabc274383fe9edb4c1e684f330220f95db36ed87', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 10589.73377182, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x023e121406a7f89eb800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:08:27.000Z'}}, {'blockNum': '0xaa4663', 'uniqueId': '0xf37a8618f0048789e3cf81a2e37c7db4399322a054fa0a8cc32f5c7b5ade2bd9:log:62', 'hash': '0xf37a8618f0048789e3cf81a2e37c7db4399322a054fa0a8cc32f5c7b5ade2bd9', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 11827.92281005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0281316728b83a551400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:09:14.000Z'}}, {'blockNum': '0xaa4668', 'uniqueId': '0x6559c54f4ee5f7f59c33b5500f37b89aa9f63461f636f641d5db1cbdbea1d50c:log:15', 'hash': '0x6559c54f4ee5f7f59c33b5500f37b89aa9f63461f636f641d5db1cbdbea1d50c', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 6004.41848839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0145800bb26b09e33c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:09:48.000Z'}}, {'blockNum': '0xaa46c2', 'uniqueId': '0x3c9418dc844ee03dccfb57fa793b29d0a1367a1c1b3353c96756df7cc20eb6f1:log:0', 'hash': '0x3c9418dc844ee03dccfb57fa793b29d0a1367a1c1b3353c96756df7cc20eb6f1', 'from': '0xc99df6b7a5130dce61ba98614a2457daa8d92d1c', 'to': '0xf0b07b2e88136b8489d2a6b872ba9a6e5fc0eb0e', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:28:51.000Z'}}, {'blockNum': '0xaa46c6', 'uniqueId': '0x256966d0b7d44e4b897bf0f7db86884db453d681728dc08c3bbbb0a3af85fdc8:log:172', 'hash': '0x256966d0b7d44e4b897bf0f7db86884db453d681728dc08c3bbbb0a3af85fdc8', 'from': '0xf0b07b2e88136b8489d2a6b872ba9a6e5fc0eb0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:30:02.000Z'}}, {'blockNum': '0xaa46c9', 'uniqueId': '0x58ef59a2ccf0d21e045a098db76763d322831e80ff7efca72af76e4b8bb8a05b:log:20', 'hash': '0x58ef59a2ccf0d21e045a098db76763d322831e80ff7efca72af76e4b8bb8a05b', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50172.78174644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a9fdf380398bf105000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:30:42.000Z'}}, {'blockNum': '0xaa46d1', 'uniqueId': '0x0e2a62f03b4bee253aab29e73faa7b94af2385f4893177901af206db15b2728b:log:168', 'hash': '0x0e2a62f03b4bee253aab29e73faa7b94af2385f4893177901af206db15b2728b', 'from': '0xa7363c8aded763c76d0e426dac42fd99fb7a6f4c', 'to': '0x43a80e4661b8b1a12d129e5d5bc75886fb481673', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:33:11.000Z'}}, {'blockNum': '0xaa4701', 'uniqueId': '0x6fa19d8e50f041b75ac0a4e672df09ff179595e3fe7a0727784929fa2a413911:log:146', 'hash': '0x6fa19d8e50f041b75ac0a4e672df09ff179595e3fe7a0727784929fa2a413911', 'from': '0x8329d2ddac106e0f2c804fe6d9c1c6a0c465ef57', 'to': '0xa1ae88078c1ef9c663f0c9fc417c39633f52a2f6', 'value': 990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x35ab028ac154b80000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:42:13.000Z'}}, {'blockNum': '0xaa4707', 'uniqueId': '0xa4025ecf0505119c678d9c971de72e3cf45c7456524d12bfb6c46738d42079c0:log:22', 'hash': '0xa4025ecf0505119c678d9c971de72e3cf45c7456524d12bfb6c46738d42079c0', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 18122.60779043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x03d66db497b472f02c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:43:52.000Z'}}, {'blockNum': '0xaa4707', 'uniqueId': '0xe32b4d3cac0a82280728a644e6dd026b102a7b331cc1c472c504396d2fad3648:log:23', 'hash': '0xe32b4d3cac0a82280728a644e6dd026b102a7b331cc1c472c504396d2fad3648', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 13591.95584282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x02e0d24771c6c1312800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:43:52.000Z'}}, {'blockNum': '0xaa4707', 'uniqueId': '0x37ff168c996109bd03d9411f1038d31481b46769f585a04bf30fde9c5b3ff109:log:24', 'hash': '0x37ff168c996109bd03d9411f1038d31481b46769f585a04bf30fde9c5b3ff109', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 20387.93376423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04513b6b2aaa21c9bc00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:43:52.000Z'}}, {'blockNum': '0xaa4707', 'uniqueId': '0xed4c4ec18e86aeb5aae1389866666fedc087273aea79645f9f28b9c5a98310be:log:25', 'hash': '0xed4c4ec18e86aeb5aae1389866666fedc087273aea79645f9f28b9c5a98310be', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 20387.93376424, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04513b6b2aac75d5a000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:43:52.000Z'}}, {'blockNum': '0xaa471c', 'uniqueId': '0x040d21a55eacb572b4c66a6bedbacb10e18589f8a03ab5f1bbf7be60b99eeffc:log:22', 'hash': '0x040d21a55eacb572b4c66a6bedbacb10e18589f8a03ab5f1bbf7be60b99eeffc', 'from': '0xc99df6b7a5130dce61ba98614a2457daa8d92d1c', 'to': '0xf0b07b2e88136b8489d2a6b872ba9a6e5fc0eb0e', 'value': 512717.1382833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x6c9273a688d6d1f26800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T16:49:37.000Z'}}, {'blockNum': '0xaa474b', 'uniqueId': '0xc744c354d6c11be5511bd7a990f3d3e219e839f013d1c0d5842cff96ceb5fa99:log:150', 'hash': '0xc744c354d6c11be5511bd7a990f3d3e219e839f013d1c0d5842cff96ceb5fa99', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 72490.43116172, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0f59b6d25ed1cbc0b000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:00:42.000Z'}}, {'blockNum': '0xaa474b', 'uniqueId': '0xc0efef3d971a332d031043fb57982005f95462addc66c627889388ae71062697:log:178', 'hash': '0xc0efef3d971a332d031043fb57982005f95462addc66c627889388ae71062697', 'from': '0xf0b07b2e88136b8489d2a6b872ba9a6e5fc0eb0e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 512717.1382833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x6c9273a688d6d1f26800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:00:42.000Z'}}, {'blockNum': '0xaa474b', 'uniqueId': '0xc4ce81b5d6b664131fdc4c524c38a79eda28842faf69e517ef7f10faff693e39:log:180', 'hash': '0xc4ce81b5d6b664131fdc4c524c38a79eda28842faf69e517ef7f10faff693e39', 'from': '0x43a80e4661b8b1a12d129e5d5bc75886fb481673', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a968163f0a57b400000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:00:42.000Z'}}, {'blockNum': '0xaa4751', 'uniqueId': '0x1d84af21cf834ba8d86b418342b77e30de13bc9674e5a8e91d189dabdbec05cc:log:238', 'hash': '0x1d84af21cf834ba8d86b418342b77e30de13bc9674e5a8e91d189dabdbec05cc', 'from': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'to': '0xa1ae88078c1ef9c663f0c9fc417c39633f52a2f6', 'value': 470.6695331022297, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x1983da16a4755c595e', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:02:14.000Z'}}, {'blockNum': '0xaa476c', 'uniqueId': '0x1a6001dc3f7fb3aa4dba8c3879c825115bcc33560dddde40d54d4b1189b2e5f7:log:27', 'hash': '0x1a6001dc3f7fb3aa4dba8c3879c825115bcc33560dddde40d54d4b1189b2e5f7', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 2871.049103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x9ba3cf6bb55ae3f000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:06:53.000Z'}}, {'blockNum': '0xaa478f', 'uniqueId': '0x2655500f8cb482a986d48e142737e42286a018f9ab4471ec7b04e02c1c4d4d81:log:34', 'hash': '0x2655500f8cb482a986d48e142737e42286a018f9ab4471ec7b04e02c1c4d4d81', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 2940.30309779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x9f64e7090be997ec00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:15:56.000Z'}}, {'blockNum': '0xaa47c0', 'uniqueId': '0xfc3a8cf6467c87acf23a0d13643b882c925f75704765d3e422688c4ec59807b9:log:46', 'hash': '0xfc3a8cf6467c87acf23a0d13643b882c925f75704765d3e422688c4ec59807b9', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 7567.92591089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x019a4211e75d50f9a400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:26:52.000Z'}}, {'blockNum': '0xaa4814', 'uniqueId': '0x6da9e75ebc0f4acdf7ddf7cf84e87497e9a4a95b4eb8bf85fbb53ad4837074e3:log:56', 'hash': '0x6da9e75ebc0f4acdf7ddf7cf84e87497e9a4a95b4eb8bf85fbb53ad4837074e3', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 23291.29255028, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04ee9f9da3ec45635000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:42:53.000Z'}}, {'blockNum': '0xaa4819', 'uniqueId': '0x8c7afe6c2e7cbd96c2d9f731d99dc09f1e4336943b8ec0c94ffbf7cf0beed1dc:log:48', 'hash': '0x8c7afe6c2e7cbd96c2d9f731d99dc09f1e4336943b8ec0c94ffbf7cf0beed1dc', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 4658.25851005, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xfc8652ba610ea65400', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:44:04.000Z'}}, {'blockNum': '0xaa481c', 'uniqueId': '0x9df7920efab13dfde2d4a4ffba8d45784395c4913521afa3be2d1376fc841790:log:23', 'hash': '0x9df7920efab13dfde2d4a4ffba8d45784395c4913521afa3be2d1376fc841790', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 22222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04b4a8335ecc4a780000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:45:04.000Z'}}, {'blockNum': '0xaa482c', 'uniqueId': '0xe051f57d206f161f18d1639338eae9022088a12d2be131881f13026686cebbde:log:53', 'hash': '0xe051f57d206f161f18d1639338eae9022088a12d2be131881f13026686cebbde', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 3988.83127243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xd83c276c8a8f89cc00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T17:48:26.000Z'}}, {'blockNum': '0xaa485f', 'uniqueId': '0x0fe946aeff4c921972feea37e53342b41a1b01276bcdb48f296bf8a1637821f5:log:0', 'hash': '0x0fe946aeff4c921972feea37e53342b41a1b01276bcdb48f296bf8a1637821f5', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 67539.66044444, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0e4d551385c2c380f000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T18:00:37.000Z'}}, {'blockNum': '0xaa4954', 'uniqueId': '0xd0753f46f029b10b1abbdcd8d66b55f5ec53404cb572b17ecf4ffd535a16008a:log:8', 'hash': '0xd0753f46f029b10b1abbdcd8d66b55f5ec53404cb572b17ecf4ffd535a16008a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xf244119b1db015e41a87ba19be257e9408c0faea', 'value': 760.49667, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x293a02ec14b977e000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T18:53:32.000Z'}}, {'blockNum': '0xaa4995', 'uniqueId': '0x64d7a50a166c79a2630c40e0c1b1266249a06c8ce16f4579506cc679a6164742:log:1', 'hash': '0x64d7a50a166c79a2630c40e0c1b1266249a06c8ce16f4579506cc679a6164742', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 5269.16433623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x011da458369272147c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T19:06:20.000Z'}}, {'blockNum': '0xaa4a26', 'uniqueId': '0xfbfd4c2d472212ee246c77b2a35c198f40c884befdabb638496d974ae5ad60f1:log:228', 'hash': '0xfbfd4c2d472212ee246c77b2a35c198f40c884befdabb638496d974ae5ad60f1', 'from': '0xef771dad76b0e4cdc8a6a014a87c6ec3cde8047e', 'to': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T19:41:12.000Z'}}, {'blockNum': '0xaa4a35', 'uniqueId': '0x621bbb334dbc878cd45d966104ab59406e7447f6ade4625ed0fd36de67f42aa1:log:83', 'hash': '0x621bbb334dbc878cd45d966104ab59406e7447f6ade4625ed0fd36de67f42aa1', 'from': '0xef771dad76b0e4cdc8a6a014a87c6ec3cde8047e', 'to': '0x8329d2ddac106e0f2c804fe6d9c1c6a0c465ef57', 'value': 1000000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xd3c21bcecceda1000000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T19:43:50.000Z'}}, {'blockNum': '0xaa4b9e', 'uniqueId': '0xd87aacca6c1a1454b05045c4ba3b909478a1b2a50b0fad60d59424ff93310f42:log:149', 'hash': '0xd87aacca6c1a1454b05045c4ba3b909478a1b2a50b0fad60d59424ff93310f42', 'from': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'to': '0x2310a0a2a3a6ec82c82c8a09583b70841bff533a', 'value': 100543.48680884973, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x154a792ce66cd5c2984c', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T21:07:37.000Z'}}, {'blockNum': '0xaa4bb1', 'uniqueId': '0xeddbe85b7254da2e602f4fdf658078c6bd4e3369b204df55b17ed7ff49115bfe:log:173', 'hash': '0xeddbe85b7254da2e602f4fdf658078c6bd4e3369b204df55b17ed7ff49115bfe', 'from': '0x2310a0a2a3a6ec82c82c8a09583b70841bff533a', 'to': '0x447b19e8f8918b8b0a26ff7f6295179f860edee7', 'value': 102281.21372864394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x15a8acfb191b2c7e25e3', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T21:12:57.000Z'}}, {'blockNum': '0xaa4bfd', 'uniqueId': '0x60ecaca58df19f4ce1a3811f4b1eeb148250eaade760ec7ee319907bbf5f3c67:log:144', 'hash': '0x60ecaca58df19f4ce1a3811f4b1eeb148250eaade760ec7ee319907bbf5f3c67', 'from': '0x447b19e8f8918b8b0a26ff7f6295179f860edee7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 102281.21372864394, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x15a8acfb191b2c7e25e3', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T21:30:06.000Z'}}, {'blockNum': '0xaa4d30', 'uniqueId': '0xb5327c2adc10e2c115a6d11c41d7dc54a973aa4ca612e8418ab918c194f76cee:log:55', 'hash': '0xb5327c2adc10e2c115a6d11c41d7dc54a973aa4ca612e8418ab918c194f76cee', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x67655e8fcd903f75aceb82bb3f782687ce985d35', 'value': 48346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a3cd78783e9fb280000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T22:38:17.000Z'}}, {'blockNum': '0xaa4dbd', 'uniqueId': '0xc969d3737b51f3699ce4dfd3bce708f4d24375a251e15ec9f6ed3fc9ac6d02b6:log:13', 'hash': '0xc969d3737b51f3699ce4dfd3bce708f4d24375a251e15ec9f6ed3fc9ac6d02b6', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 4381.53016514, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0xed85f226da6452c800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T23:08:28.000Z'}}, {'blockNum': '0xaa4e83', 'uniqueId': '0x822197f1e4d63af7f12ad9c5f6875360936b6fae2c025a2148b4c43374fc9c29:log:172', 'hash': '0x822197f1e4d63af7f12ad9c5f6875360936b6fae2c025a2148b4c43374fc9c29', 'from': '0xe4add85c51efb9f79ea9873c832c64068cc6a782', 'to': '0x69e6becd42187a9b76104246e1efc360d95598f6', 'value': 1188.327477534335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x406b5b48c9e604b41f', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-30T23:44:08.000Z'}}, {'blockNum': '0xaa4fad', 'uniqueId': '0x35b3259e30ae20e8dbfd47a2ee823522a88b339e98ccaea5c5d8506ada7b8834:log:231', 'hash': '0x35b3259e30ae20e8dbfd47a2ee823522a88b339e98ccaea5c5d8506ada7b8834', 'from': '0x67655e8fcd903f75aceb82bb3f782687ce985d35', 'to': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'value': 48346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x0a3cd78783e9fb280000', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-31T00:48:40.000Z'}}, {'blockNum': '0xaa513f', 'uniqueId': '0x16015c561cc0272949e210ebd0c35ca13ff7094d82662145267d3c3603d77681:log:36', 'hash': '0x16015c561cc0272949e210ebd0c35ca13ff7094d82662145267d3c3603d77681', 'from': '0x9afa066884ce723200438b672c0b8d5769e03a6a', 'to': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'value': 21629.5959425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x04948af15f3166e2e800', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-31T02:25:27.000Z'}}, {'blockNum': '0xaa5158', 'uniqueId': '0x479f95cf0010ec377b511c4c7a48ffe0a94b754ab669ad6bedf259e916ba7b34:log:97', 'hash': '0x479f95cf0010ec377b511c4c7a48ffe0a94b754ab669ad6bedf259e916ba7b34', 'from': '0xd167e55fdf2215020fb4cb3135dc6a2a45020860', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 31280.29044387, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'DUSK', 'category': 'erc20', 'rawContract': {'value': '0x069fb53bbc9e3d4a2c00', 'address': '0x940a2db1b7008b6c776d4faaca729d6d4a4aa551', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-10-31T02:30:40.000Z'}}]}}
Number of returned transfers:  58
Answer is complete
 
symbol            ARDR
group              CPI
date        2020-11-02
hour             16:00
exchange       binance
Name: 1092, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: ARDR, Contract: 
Datetime timestamps:  2020-11-02 16:00:00 2020-11-02 04:00:00 2020-11-03 04:00:00
Unix timestamps:  1604286000.0 1604372400.0
Hex Block Numbers:  0xaa84b5 0xaa9e5a
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             GTO
group              CPI
date        2020-11-03
hour             16:00
exchange       binance
Name: 1093, dtype: object
HERE
 Symbol: GTO, Contract: 
Datetime timestamps:  2020-11-03 16:00:00 2020-11-03 04:00:00 2020-11-04 04:00:00
Unix timestamps:  1604372400.0 1604458800.0
Hex Block Numbers:  0xaa9e5a 0xaab797
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol            APPC
group              CPI
date        2020-11-04
hour             17:00
exchange       binance
Name: 1094, dtype: object
HERE
 Symbol: APPC, Contract: 0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db
Datetime timestamps:  2020-11-04 17:00:00 2020-11-04 05:00:00 2020-11-05 05:00:00
Unix timestamps:  1604462400.0 1604548800.0
Hex Block Numbers:  0xaab8ab 0xaad22a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xaab95d', 'uniqueId': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec:log:133', 'hash': '0x5647de08bdf81d0cfc73b0d687940b163b5561ef9173c54118878d3885aeebec', 'from': '0x330a72b49e06256bfe20a765f77d816a422b00a7', 'to': '0x47fef156fa29ae4ecb47e0c675eb4f9c55055d6a', 'value': 2758, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x9582f0537d5f580000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T04:37:47.000Z'}}, {'blockNum': '0xaaba2a', 'uniqueId': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0:log:20', 'hash': '0xf782ec159f1ad7c3144976c0778df4c42ec501cdf44afe8309264dab5d0aa7c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1375.65880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a9319d9778d99e000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:19:59.000Z'}}, {'blockNum': '0xaaba31', 'uniqueId': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc:log:90', 'hash': '0xb9e97ee9b3e865443d21ab790ac592d0a6a2c5fdb22aaea360cf461acb86d4cc', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x40abb42d126d918f6aa47e473fb8521d675529ca', 'value': 1329.15880376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x480dc8a9d5a5efe000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:21:25.000Z'}}, {'blockNum': '0xaaba87', 'uniqueId': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653:log:3', 'hash': '0x5d95dd8fafed1b7c35d4b70ba3f1d2c677f3630f5e46f59d308336a8d6644653', 'from': '0xae5f5e76a6f539d69c1a3a8657b0d294fa59a883', 'to': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:38:41.000Z'}}, {'blockNum': '0xaaba8c', 'uniqueId': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3:log:133', 'hash': '0xdb4fa2d81dc85f9213fa91c33181a61ab16dac7578a7601f09cb4005468142e3', 'from': '0x7cd17e40f33f673a40cce4b96f70bafe31713bd6', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 2570.8705192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x8b5dfedc2818104000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T05:40:40.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:98', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 128.9440879163896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06fd756cc8ef244638', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:99', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 15.169892696045837, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xd2864908949adb15', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabb63', 'uniqueId': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1:log:100', 'hash': '0x9cc8040cee9edc14ea68498601d9363c2f378a5b7b8e70169bb8246c6d8534b1', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 7.5849463480229184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x694324844a4d6d8a', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T06:33:18.000Z'}}, {'blockNum': '0xaabc4d', 'uniqueId': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda:log:17', 'hash': '0xa0ed508cd90120f6109627d4ff9d4b5fbd0455b70a35651ca2634c53db8dceda', 'from': '0xbb9fb488edef50ec8ecc82b191703b5fb32393e2', 'to': '0x9553c0540ac0f923522849d6c603029b3d4e3cae', 'value': 640.58597771, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x22b9ea90c1dcd8cc00', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T07:28:10.000Z'}}, {'blockNum': '0xaac444', 'uniqueId': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0:log:37', 'hash': '0x6fe6f9fb5dc11dc4a329e1813074ca910bdd4cda6a12186cfc2d9ec933d6cfa0', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x312b274e820f4c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:02:30.000Z'}}, {'blockNum': '0xaac463', 'uniqueId': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8:log:18', 'hash': '0x1c134a013d7a4fa8942ab85a2e5a03ec84cc7eadb020b524d0f7b312e8b0faf8', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'value': 58885.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0c7831392df6b2850000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:11:40.000Z'}}, {'blockNum': '0xaac49d', 'uniqueId': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39:log:84', 'hash': '0x57b938dbe7f90100b65eaa48e23cba08ad266d0cb1b1b5c330ab47d6fcc4fb39', 'from': '0x71baf697df4a100db0b7617e5c02fcfcd47bd6e3', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 59792.554, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ca95c607c78c1d10000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T15:24:24.000Z'}}, {'blockNum': '0xaac66c', 'uniqueId': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4:log:28', 'hash': '0xa068e619a3e7a1a806959963ce959df8da92ef5f448a95eaf7aef467981880a4', 'from': '0xfa4b5be3f2f84f56703c42eb22142744e95a2c58', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 127318, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1af5ec3028535f980000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:01:47.000Z'}}, {'blockNum': '0xaac6ac', 'uniqueId': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a:log:47', 'hash': '0x47d2a69d7be6226bb4c11122ce8bfbfd7d9a81c548f7eb921e406ff0b800e35a', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 10442.71900933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x023619d6ab16cdbf7400', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:13:22.000Z'}}, {'blockNum': '0xaac6d0', 'uniqueId': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6:log:44', 'hash': '0x70277eb77ebe9dceef7c75caaec55ab40d88df3a7964909bafd6a9cf91c633e6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0xb20242b3fdf78a64eb7eaa50e2d5649ffaed365c', 'value': 34655.58244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0756aed1c808f1168000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:21:45.000Z'}}, {'blockNum': '0xaac6d3', 'uniqueId': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d:log:184', 'hash': '0x16032ae99fb39c539aa246a47f2e5d0e7f1a6b0941de906b3f4a790e4c8dba4d', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:22:49.000Z'}}, {'blockNum': '0xaac6ee', 'uniqueId': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20:log:44', 'hash': '0xb8ec943a3153538a8fc2d5bc46533a7e1305f0ff03c9ac006e57f468bf551b20', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:33.000Z'}}, {'blockNum': '0xaac6ef', 'uniqueId': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378:log:151', 'hash': '0xbd3c0976886c86a91589728c1bb7dbd221eabf91d3110026e62f46a234f11378', 'from': '0x843b555835c7962d5a07e6ebdf527ed94693bbda', 'to': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'value': 349455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x49fffe56a00f02dc0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:27:35.000Z'}}, {'blockNum': '0xaac70b', 'uniqueId': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330:log:22', 'hash': '0xcb7ed1f744ae2e33dedabea8c2970f7b634fbcc3bd7692a5da6c9e9b27133330', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x652807251031638120c9498a38c8773ee87bdf9b', 'value': 124764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1a6b78516bff63f00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:34:24.000Z'}}, {'blockNum': '0xaac713', 'uniqueId': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a:log:106', 'hash': '0x914e2ff6c21f94f88add11a8354f7854048b0cc055092e13d15b40a04b3e1d1a', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 127116, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1aeaf8dffe914ab00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:35:51.000Z'}}, {'blockNum': '0xaac734', 'uniqueId': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c:log:105', 'hash': '0x3e05646cf443a77ca5630a55133eb910bf4aff8f4e26a34f4301e213fcfc537c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:42:34.000Z'}}, {'blockNum': '0xaac757', 'uniqueId': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4:log:297', 'hash': '0x120b2cb181665fb270eccfb2fa115404004117fd97c8592cbaec33514ce883d4', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 126923, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1ae082764120184c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:50:27.000Z'}}, {'blockNum': '0xaac764', 'uniqueId': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc:log:65', 'hash': '0xafb362a6f4d86e7e210e2019fb4b3ef5ebdf296c4d7ce7f684e275b42ff56ccc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'value': 298607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x3f3b84957c4f0c5c0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T17:53:15.000Z'}}, {'blockNum': '0xaac78f', 'uniqueId': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd:log:125', 'hash': '0x9edfe1cfc35c96cd1a977269d46a0a75c212a93efc5b2d065ef63ab3c477f1bd', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:05:17.000Z'}}, {'blockNum': '0xaac7b3', 'uniqueId': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03:log:133', 'hash': '0xa531253c30cc99ad0683ae46ecc598ac215ae38b0972a22aaf88f4bd9eb96e03', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 93356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x13c4d6c232b6a7300000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:13:18.000Z'}}, {'blockNum': '0xaac7d5', 'uniqueId': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80:log:98', 'hash': '0x79dea086c656822567427e43c79646a3d6ce07c0fb56608e087cee6b30256d80', 'from': '0x62d5f2ec17bd962f6c1a7939a672b69460c320f4', 'to': '0x3eab04cb1eedb641875e60c7f151c4188bbcf72e', 'value': 126.362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x06d9a0018163e90000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:19:24.000Z'}}, {'blockNum': '0xaac7f7', 'uniqueId': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50:log:22', 'hash': '0x8e549f316de4d674d71349e10e5d9dd98ef19b18d402eeebe7fa6ad062434f50', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:26:37.000Z'}}, {'blockNum': '0xaac81b', 'uniqueId': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d:log:71', 'hash': '0x45884010f2961460f3990ac6c9c6a5821aaffefa7ab83c72abbf58acfa83261d', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 97920, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x14bc40fb6d9aea000000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:34:25.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6:log:242', 'hash': '0x64576e3da9cec360633e500fda31dcbc0583c159280be6334bbc5aaa0c56e9f6', 'from': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 15903.8301648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x035e25faf8c836248000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac86a', 'uniqueId': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c:log:243', 'hash': '0x5fba5be068123be63499a2de7f8df515c04401d442050143dabd2bde9a363d3c', 'from': '0x1df69368c49492c7aa0da26e14d95154f9998da6', 'to': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'value': 37725.9786619995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x07fd212070497e84aa89', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:54:17.000Z'}}, {'blockNum': '0xaac885', 'uniqueId': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7:log:72', 'hash': '0x375144290a9f207c990a0b183d8e7f1b44ed4b5e9369aff89f9b9d67fc307ce7', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 54279.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b7e7c9b95f17c5a0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:58:29.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec:log:97', 'hash': '0xe8d408c48e0ca978580abf027ad2cb006cb7cb7d353a512397bd99a5d6477bec', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 25033.519009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x054d11dd696ad9bf1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac887', 'uniqueId': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1:log:111', 'hash': '0xefed68928ea246e05ea9db1d9ffcf86175b1aee00e54837984f200821dc566e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 27552.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x05d5a3e9730256d00000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T18:59:34.000Z'}}, {'blockNum': '0xaac8b4', 'uniqueId': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d:log:35', 'hash': '0x4fd896932dc9c82c4f6563e469d18859bb7cf4360ffce9bdfc78b435c199f85d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:08:37.000Z'}}, {'blockNum': '0xaac8c2', 'uniqueId': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec:log:221', 'hash': '0xd86c243091fb287e122f9c4bfd0eb36cd1f32f9572b28b523d8f68bb4b9f89ec', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 52586.319009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b22b5c6dc6d308f1000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:12:08.000Z'}}, {'blockNum': '0xaac8d7', 'uniqueId': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15:log:201', 'hash': '0xe235340b271d5770578062032d757efb7a6b786733b4349f64e16f35023d9d15', 'from': '0x5758fdd4853d341c7c9fcc984dfe7fca2d3403fe', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 117603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x18e7457ac49a07ac0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:18:03.000Z'}}, {'blockNum': '0xaac91c', 'uniqueId': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82:log:6', 'hash': '0x5e0dc513f8a62a7607a5352e285a7abfda98f03810e719a28fda6aa350962a82', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2046.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6ef0e48b2da4ea0000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T19:34:47.000Z'}}, {'blockNum': '0xaac996', 'uniqueId': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269:log:148', 'hash': '0xd0f644922754f60d5d1516a0b8e837f3e32f5657bd16553c0f08c579cc7a7269', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xf9f7b61ac292e4899a3fae2164133fb02e82471e', 'value': 2000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x6c6b935b8bbd400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:00:15.000Z'}}, {'blockNum': '0xaac99d', 'uniqueId': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff:log:34', 'hash': '0xc9ee980bfde7e6c7a754a4c837d62f7d044aebd68ef67e57a850267c6416a1ff', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 52468.707209, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0b1c5595cf75e6459000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:01:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:180', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:181', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca31', 'uniqueId': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94:log:182', 'hash': '0x050946cb650b50e948cef49f1d109ff34e85abd034cb7c2c13a3f7c42b17ed94', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:34:25.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:51', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 274.9723240669447, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0ee801efdf81d53788', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:52', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 32.349685184346434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x01c0f12b4778afac2d', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaaca6d', 'uniqueId': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0:log:53', 'hash': '0xd8650c41248a48e4b83b2ce76668a641de5fbf21ee3f46514de6e21c1b1886e0', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 16.174842592173217, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0xe07895a3bc57d616', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T20:46:06.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:163', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:164', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacae3', 'uniqueId': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff:log:165', 'hash': '0x538d35e4e7fac7fa38b73bee3b8230203ee09b9b2fdda82a34f14e26fb78f7ff', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:09:38.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:171', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xdb91a68852e572f83f595febb4f0b6ae8e8f1fb9', 'value': 315.4518130996248, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x1119c5f8adc40d3f1b', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:172', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0xc41b4160b63d1f9488937f7b66640d2babdbf8ad', 'value': 37.111978011720566, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0203083b5fbcb643a8', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaacba3', 'uniqueId': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5:log:173', 'hash': '0x2158f841cf0bcb60044c7c1fc00951cd1aaba63f428c4a1e143d319c06727de5', 'from': '0x5fb4a6fe7c86cb12727c2be70e773729ee221b43', 'to': '0x0965b2a3e664690315ad20b9e5b0336c19cf172e', 'value': 18.555989005860283, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x0101841dafde5b21d4', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-04T21:50:07.000Z'}}, {'blockNum': '0xaace35', 'uniqueId': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4:log:46', 'hash': '0x6e8f020e9f26fca00e6203ae0b4277e8a59a20b21c9f66859f9ad329804889a4', 'from': '0x87565ed1ed5620b48ed8f231a5ff1d5e672a3257', 'to': '0x0000000000000000000000000000000000000000', 'value': 2511.9109267687422, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x882bc44f38c1200000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T00:17:01.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf:log:117', 'hash': '0xfee5d81b08d93a18fff39e3e096827f42733c6b88cd7e3d88396a6c0b97cc7bf', 'from': '0x652807251031638120c9498a38c8773ee87bdf9b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 252082, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x356164819452c3880000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}, {'blockNum': '0xaad192', 'uniqueId': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0:log:166', 'hash': '0x843edf8c9e090ecd80f3c70200f9fa2ac700e1ef950152514e438c2c155a95a0', 'from': '0x861d77d18b2a096866e326fc528b9f0b5f211096', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 349456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'APPC', 'category': 'erc20', 'rawContract': {'value': '0x4a000c3756c2aa400000', 'address': '0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-05T03:29:51.000Z'}}]}}
Number of returned transfers:  54
Answer is complete
 
symbol             BRD
group              CPI
date        2020-11-09
hour             16:00
exchange       binance
Name: 1095, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2020-11-09 16:00:00 2020-11-09 04:00:00 2020-11-10 04:00:00
Unix timestamps:  1604890800.0 1604977200.0
Hex Block Numbers:  0xab36f5 0xab5077
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xab378a', 'uniqueId': '0x3e8ab2a9b6725e7935dd9a5da4acc65cd284f8bcab3135d9d736421b9027053b:log:283', 'hash': '0x3e8ab2a9b6725e7935dd9a5da4acc65cd284f8bcab3135d9d736421b9027053b', 'from': '0x6e981b7536e23f9616278b46cefd576dca0e1432', 'to': '0x99b72e22980b5ed5c07799aa2e2d84a1e59544b4', 'value': 707.1266203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x26555a6aa53c067800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T03:32:40.000Z'}}, {'blockNum': '0xab3796', 'uniqueId': '0x545c03f9382cf78cfab44c88c113c38ca8148f4c6b4e0af8b73384706e1c8cbd:log:90', 'hash': '0x545c03f9382cf78cfab44c88c113c38ca8148f4c6b4e0af8b73384706e1c8cbd', 'from': '0x99b72e22980b5ed5c07799aa2e2d84a1e59544b4', 'to': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'value': 707.1266203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x26555a6aa53c067800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T03:35:07.000Z'}}, {'blockNum': '0xab3b5c', 'uniqueId': '0x61c05f58d762ccfe1729287caddc73e5ca9ac504eaf04bf10bf6008c6dfd58f5:log:10', 'hash': '0x61c05f58d762ccfe1729287caddc73e5ca9ac504eaf04bf10bf6008c6dfd58f5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcbadc4dc889b6f863f537a5569b0f0a1722e5c80', 'value': 246.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0d5fa676ed68de0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:12:38.000Z'}}, {'blockNum': '0xab3b63', 'uniqueId': '0xfe4c750fd9cbc76d648af58fa7f92d84f0ac114f69111e648a1cc89425d440eb:log:200', 'hash': '0xfe4c750fd9cbc76d648af58fa7f92d84f0ac114f69111e648a1cc89425d440eb', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x14068732cb0dfac17d1aa4305b84dea7368cc442', 'value': 396.39474966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x157d150ca05a319800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:15:09.000Z'}}, {'blockNum': '0xab3bbd', 'uniqueId': '0x8c901b71f5888a3fe5a12ab9b812daac64bcbdd532fac35de31fdb6ef1935642:log:23', 'hash': '0x8c901b71f5888a3fe5a12ab9b812daac64bcbdd532fac35de31fdb6ef1935642', 'from': '0x0aeee23d16084d763e7a65577020c1f3d18804f2', 'to': '0x661d635e7e0d879fdc80b40c3c9ffe0aef0fd8c3', 'value': 318.1624117444008, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x113f63f3c8ea947900', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:32:57.000Z'}}, {'blockNum': '0xab3bc8', 'uniqueId': '0x1fed7c43c07275fe5030a5178430082cd67f47848cdc0a5f8bef4fd1efe4d1e0:log:24', 'hash': '0x1fed7c43c07275fe5030a5178430082cd67f47848cdc0a5f8bef4fd1efe4d1e0', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0aeee23d16084d763e7a65577020c1f3d18804f2', 'value': 324.56340507, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x119838d94cf0910c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:35:38.000Z'}}, {'blockNum': '0xab3bde', 'uniqueId': '0xc4bb7b630d9eb05fa91a7acf2fda0d9978e5af29fa6733a8a2f8c21920250550:log:32', 'hash': '0xc4bb7b630d9eb05fa91a7acf2fda0d9978e5af29fa6733a8a2f8c21920250550', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2d7b76c6c998bc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:40:16.000Z'}}, {'blockNum': '0xab3bf6', 'uniqueId': '0x62e0bbc5f3904370e236f7c5db6d57219d9ecd83f532dace3f25e53273a5f767:log:37', 'hash': '0x62e0bbc5f3904370e236f7c5db6d57219d9ecd83f532dace3f25e53273a5f767', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xfe17c9c6700b2cd13c41c4d614e2bdfc3289443b', 'value': 1000.72745324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x363fe21ca3f7883000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:46:31.000Z'}}, {'blockNum': '0xab3c04', 'uniqueId': '0x45a836567983e77ee52243d9f76b8a5bd7ac79f4421a964c673ccf2e082fde9f:log:199', 'hash': '0x45a836567983e77ee52243d9f76b8a5bd7ac79f4421a964c673ccf2e082fde9f', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 7670.3, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x019fcecbbb0246b60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:49:45.000Z'}}, {'blockNum': '0xab3c05', 'uniqueId': '0x28e4b00d773b0bb2e583c416d27374f8e9e54ed77fe7b6fa332e8a332d426cde:log:316', 'hash': '0x28e4b00d773b0bb2e583c416d27374f8e9e54ed77fe7b6fa332e8a332d426cde', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5cdef4ecf808564ec67e1899d97691894a6285bb', 'value': 5900.295475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x013fdb0c716843b23000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T07:50:27.000Z'}}, {'blockNum': '0xab3f7c', 'uniqueId': '0xae6a9189178115675a36d4a459453afc8fd2baccb416a11de1dd142e4df3e7fa:log:59', 'hash': '0xae6a9189178115675a36d4a459453afc8fd2baccb416a11de1dd142e4df3e7fa', 'from': '0xd729d01ce174469d3d3ccb71e155bbf401e4c916', 'to': '0x2602973f99cfd6234f9c29bc3edc0439b8eab3dc', 'value': 6750, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x016deb1154f79eb80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T11:02:40.000Z'}}, {'blockNum': '0xab3f94', 'uniqueId': '0x0171e7910fb5bad3b54faa16284534c275803ac1d68f4fc3f7fde484782b7ba4:log:62', 'hash': '0x0171e7910fb5bad3b54faa16284534c275803ac1d68f4fc3f7fde484782b7ba4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5db81c3e053052a1567699b317fa74a057311658', 'value': 151.8155, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x083add00e5a250c000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T11:06:23.000Z'}}, {'blockNum': '0xab40a3', 'uniqueId': '0xbd3c393c20c0703d500b838635dc3b08efde2af429110e9f642d3dadfce4b978:log:257', 'hash': '0xbd3c393c20c0703d500b838635dc3b08efde2af429110e9f642d3dadfce4b978', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x17a7e9c62937f7f57aee43644439d89693d1e7b9', 'value': 350.61156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1301b67c33498e8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T12:09:18.000Z'}}, {'blockNum': '0xab41bd', 'uniqueId': '0xa71213dddd5243e0fe3c180dc40eab11b10b3dd557733e5862ab791fb9ae280b:log:148', 'hash': '0xa71213dddd5243e0fe3c180dc40eab11b10b3dd557733e5862ab791fb9ae280b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x7b82eb5d8bb3ef07ce20c0036a5f90335ad8d0e4', 'value': 1014.11304196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36f9a546a9549b9000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T13:11:44.000Z'}}, {'blockNum': '0xab4346', 'uniqueId': '0x8cb75f07ccc71043235ddbee324f3a6884e4706abe070dc0c08d2d6b91102673:log:146', 'hash': '0x8cb75f07ccc71043235ddbee324f3a6884e4706abe070dc0c08d2d6b91102673', 'from': '0x14aaf7b864f021750faa4f62397272acadbb8017', 'to': '0x592faed4893eb9d74ab5041ec1750b5ce1b0c885', 'value': 55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02fb474098f67c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T14:39:21.000Z'}}, {'blockNum': '0xab43ec', 'uniqueId': '0xac2398abfc1b3dd47f60a635c5fe267abbab2df7581816ffba98942f99d92e3d:log:283', 'hash': '0xac2398abfc1b3dd47f60a635c5fe267abbab2df7581816ffba98942f99d92e3d', 'from': '0x3e0f0e21be0b72ee9716a459ba53fc2412eaefd0', 'to': '0x3ecb272d08257e409da760f04d51adf5dd4531f2', 'value': 7106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0181378f66cc65c80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T15:16:13.000Z'}}, {'blockNum': '0xab459b', 'uniqueId': '0x8c570fd9ed6a9571c71a358e587672a860734696312eff9a0b299bc5f37fd71d:log:43', 'hash': '0x8c570fd9ed6a9571c71a358e587672a860734696312eff9a0b299bc5f37fd71d', 'from': '0xefec8619ec93f07de9700ebca30c0273543970c1', 'to': '0x1e5f455d82f214ee9f3f6b43bf4fed1bb1eb0512', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a2a15d09519be000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T16:47:50.000Z'}}, {'blockNum': '0xab45a1', 'uniqueId': '0x19038eed256e1fca9f54d82c20db426ca33b2956468654473030a93a34a50849:log:222', 'hash': '0x19038eed256e1fca9f54d82c20db426ca33b2956468654473030a93a34a50849', 'from': '0x1e5f455d82f214ee9f3f6b43bf4fed1bb1eb0512', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a2a15d09519be000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T16:49:06.000Z'}}, {'blockNum': '0xab45e5', 'uniqueId': '0x16eaacca5b07cf77d95ce40ca6528a97e6c0cfdab8170119c37e9566edc5756e:log:137', 'hash': '0x16eaacca5b07cf77d95ce40ca6528a97e6c0cfdab8170119c37e9566edc5756e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 48000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a2a15d09519be000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T17:02:01.000Z'}}, {'blockNum': '0xab46b2', 'uniqueId': '0xf32ea12be372189c47bb97aad23a1f3fd4116d3549cbe661caffa2884ee88c55:log:24', 'hash': '0xf32ea12be372189c47bb97aad23a1f3fd4116d3549cbe661caffa2884ee88c55', 'from': '0x555a1b0bd59e7afcf81aa065aa1888c568856c5e', 'to': '0xc36316df88cc038241984f4814cb0d6e92f089f1', 'value': 4330, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xeabad23aad41680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T17:45:16.000Z'}}, {'blockNum': '0xab46fe', 'uniqueId': '0x8a6553d94d22ec92a6361884682f96d70b0bceb89c5a9e2655ea6c1c264206a0:log:295', 'hash': '0x8a6553d94d22ec92a6361884682f96d70b0bceb89c5a9e2655ea6c1c264206a0', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 17162.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03a260253db52c100000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:01:26.000Z'}}, {'blockNum': '0xab4701', 'uniqueId': '0xd01ac588d8f2d770bdccc8fbdd001c6b9e62fd5440798fdda0ffe1aa9f5af7c0:log:197', 'hash': '0xd01ac588d8f2d770bdccc8fbdd001c6b9e62fd5440798fdda0ffe1aa9f5af7c0', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x067cb079ede97730d6ff0bbc1db6b6ff7a508c15', 'value': 13201.854225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02cbac8817374ee61000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:02:59.000Z'}}, {'blockNum': '0xab471e', 'uniqueId': '0x9d8ad87e45a0862494fa7aa1a568235182352fbcf51fbf3a417f01e41ce6a22d:log:108', 'hash': '0x9d8ad87e45a0862494fa7aa1a568235182352fbcf51fbf3a417f01e41ce6a22d', 'from': '0xd48f79e01c8916c0dd113d1f4a9acdb65f5453fa', 'to': '0xfaee8e1c3eeaebac0cb17ba4fee8260cbc7e5787', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:09:46.000Z'}}, {'blockNum': '0xab4724', 'uniqueId': '0x7ccc6a755ac16d15dd18319959734e686d441d65bdd46800941a8a147cad1cbb:log:108', 'hash': '0x7ccc6a755ac16d15dd18319959734e686d441d65bdd46800941a8a147cad1cbb', 'from': '0xfaee8e1c3eeaebac0cb17ba4fee8260cbc7e5787', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:11:18.000Z'}}, {'blockNum': '0xab472a', 'uniqueId': '0x6d35b75689246fefe4ea2a237182610261cc46c4044bc071ad8262a1d5cc7b35:log:119', 'hash': '0x6d35b75689246fefe4ea2a237182610261cc46c4044bc071ad8262a1d5cc7b35', 'from': '0xd48f79e01c8916c0dd113d1f4a9acdb65f5453fa', 'to': '0x4a2d06eb05c4e433670b406bee87383edb7d3e63', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:12:23.000Z'}}, {'blockNum': '0xab4778', 'uniqueId': '0x3b7045a2432169b3ef3b838c2a53768f94039fdfa975d5a1d6a3e43d29b24ca3:log:71', 'hash': '0x3b7045a2432169b3ef3b838c2a53768f94039fdfa975d5a1d6a3e43d29b24ca3', 'from': '0x4a2d06eb05c4e433670b406bee87383edb7d3e63', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 250000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x34f086f3b33b68400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:30:04.000Z'}}, {'blockNum': '0xab478c', 'uniqueId': '0x193c295ac4b42fc988624b895cda27021048f7e6b38bbad48e47bb99f32d3cb3:log:26', 'hash': '0x193c295ac4b42fc988624b895cda27021048f7e6b38bbad48e47bb99f32d3cb3', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xb3ca078b8b10e05b0b47239f51c2a8f61b5ed1e6', 'value': 491.0157066, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1a9e3637a3d66d1000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:35:24.000Z'}}, {'blockNum': '0xab47ae', 'uniqueId': '0xd0ee2e21a0e72504c522083ea10c09577f30d8df6feb0967b723e7aa2bc84690:log:6', 'hash': '0xd0ee2e21a0e72504c522083ea10c09577f30d8df6feb0967b723e7aa2bc84690', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 665.73146019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2416e143d8ab0e2c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:41:53.000Z'}}, {'blockNum': '0xab47da', 'uniqueId': '0x205dff76e3b57d3f6da2a3b955d091620f9da227b65e89ad17847704d3f24720:log:38', 'hash': '0x205dff76e3b57d3f6da2a3b955d091620f9da227b65e89ad17847704d3f24720', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xee1745034f4ee4112b4146af1d920259ce329a87', 'value': 68.5402302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x03b72fd039a6803000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:51:22.000Z'}}, {'blockNum': '0xab47de', 'uniqueId': '0xae408b477e3b09ef0065982dd95db8f4e1b6267cca00802b9f66ff589bac2e12:log:96', 'hash': '0xae408b477e3b09ef0065982dd95db8f4e1b6267cca00802b9f66ff589bac2e12', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x3b859cd60b571a36a2255e7230ff3b60a7d30380', 'value': 639.23146019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x22a71e5a3fd7342c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:52:53.000Z'}}, {'blockNum': '0xab47e7', 'uniqueId': '0xb30bbb25f6433e4ed3577bf469f96cfc0ba9620cfd591c46230dc7b5f0fe62a4:log:70', 'hash': '0xb30bbb25f6433e4ed3577bf469f96cfc0ba9620cfd591c46230dc7b5f0fe62a4', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xe82348b3fc43bd1ea8b41baf992ce2def73084fd', 'value': 1298.4503549, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x46639e564bf6634800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T18:55:22.000Z'}}, {'blockNum': '0xab480b', 'uniqueId': '0xe93947560ed8441670f4012725141aee9dcdaab25e699bd63b11ee69f0850a5b:log:41', 'hash': '0xe93947560ed8441670f4012725141aee9dcdaab25e699bd63b11ee69f0850a5b', 'from': '0xd729d01ce174469d3d3ccb71e155bbf401e4c916', 'to': '0xdff20bfcb608b5026d68b48f59bf7475aebbecc1', 'value': 720, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x270801d946c9400000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T19:03:37.000Z'}}, {'blockNum': '0xab4839', 'uniqueId': '0x1740760539855e1377370be402877929f58250f0f18118534cb04bb8c5571ef2:log:68', 'hash': '0x1740760539855e1377370be402877929f58250f0f18118534cb04bb8c5571ef2', 'from': '0x3b859cd60b571a36a2255e7230ff3b60a7d30380', 'to': '0xaaa7e573156b6fa43ccf8546c9bbfc694b83ae3d', 'value': 639.23146019, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x22a71e5a3fd7342c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T19:11:45.000Z'}}, {'blockNum': '0xab493d', 'uniqueId': '0xc46f833ef4d5cf49771df27b015e50fccb93ee214c87b772c0340798a2df3584:log:115', 'hash': '0xc46f833ef4d5cf49771df27b015e50fccb93ee214c87b772c0340798a2df3584', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2ef3123163f544b2f3bca86c59f82f65767b20f5', 'value': 6043.36884, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01479c9724d6f0808000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T20:12:23.000Z'}}, {'blockNum': '0xab495c', 'uniqueId': '0x6a988f90865b9752e120912ba183166f7e3a1efd6505c4ae40a28682500f9944:log:256', 'hash': '0x6a988f90865b9752e120912ba183166f7e3a1efd6505c4ae40a28682500f9944', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 7882.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01ab4fa992b9a09a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T20:18:04.000Z'}}, {'blockNum': '0xab495e', 'uniqueId': '0x6991f6182453fdafda60187132de41bdadf3f31b34fd2fe07e16b4a37cfc6d19:log:245', 'hash': '0x6991f6182453fdafda60187132de41bdadf3f31b34fd2fe07e16b4a37cfc6d19', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2ef3123163f544b2f3bca86c59f82f65767b20f5', 'value': 6063.511662, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0148b420d2ba346ce000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T20:18:33.000Z'}}, {'blockNum': '0xab49d3', 'uniqueId': '0x7a7ee8e1e33ef66747cee81f81795e4d77cb2ecb5e1ad99933f13c9f6b438c1e:log:170', 'hash': '0x7a7ee8e1e33ef66747cee81f81795e4d77cb2ecb5e1ad99933f13c9f6b438c1e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x16996cc65c72d33f913c57a23e485542cfffd0cd', 'value': 1815.06088178, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x6265079f5fcc2d8800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T20:48:55.000Z'}}, {'blockNum': '0xab4ada', 'uniqueId': '0x015703db3b86450f1ca72fa76601b739f17e0d3c859051a1bb0019b4d9f034b5:log:57', 'hash': '0x015703db3b86450f1ca72fa76601b739f17e0d3c859051a1bb0019b4d9f034b5', 'from': '0xb59ef8992e39d4dce8c59c6d71bbdd0d5ea2085e', 'to': '0x2a5edd0c777e94450a83d1cd07cf519edfb60292', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T21:49:41.000Z'}}, {'blockNum': '0xab4b00', 'uniqueId': '0x6996ffc2b96e83c71017b5cbe2ad509c1610efbfa3de8c15dc72884187d8d030:log:24', 'hash': '0x6996ffc2b96e83c71017b5cbe2ad509c1610efbfa3de8c15dc72884187d8d030', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbf5c78d85c72ccf6c5daee956c1c69b82866ec27', 'value': 985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x35659ef93f0fc40000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T21:56:32.000Z'}}, {'blockNum': '0xab4b9c', 'uniqueId': '0x02128c5f692ed502fcc3e37fc82eb7a487532babbff8ecf4b9f45ab97bf3f795:log:19', 'hash': '0x02128c5f692ed502fcc3e37fc82eb7a487532babbff8ecf4b9f45ab97bf3f795', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x652c60553b3d8d621d2927ff18035b9db45405db', 'value': 186.961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0a229ae6f02bce8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:28:17.000Z'}}, {'blockNum': '0xab4bd2', 'uniqueId': '0x600c006b38f0d11d3208237766e7280c759e4d0d19bde8da1b87f601acdf38ff:log:42', 'hash': '0x600c006b38f0d11d3208237766e7280c759e4d0d19bde8da1b87f601acdf38ff', 'from': '0x592faed4893eb9d74ab5041ec1750b5ce1b0c885', 'to': '0x14aaf7b864f021750faa4f62397272acadbb8017', 'value': 40, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x022b1c8c1227a00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:38:48.000Z'}}, {'blockNum': '0xab4bd4', 'uniqueId': '0xc75f953505c4c7b61464d8af413439402b612d66e1ad216ee8c8d74e08690bfd:log:75', 'hash': '0xc75f953505c4c7b61464d8af413439402b612d66e1ad216ee8c8d74e08690bfd', 'from': '0x9ba9056a7baf3aa0469415008b956d1d15a45af2', 'to': '0xf82c4ddea68fd14efbcce34537db11f7e4cd6104', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef500000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:39:00.000Z'}}, {'blockNum': '0xab4be0', 'uniqueId': '0x472da35362974344259499a13b357364d648033ca82cab29c5fcd3137bef06ff:log:21', 'hash': '0x472da35362974344259499a13b357364d648033ca82cab29c5fcd3137bef06ff', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x9d409ad8f97e4a6088f1fbb9cbb9a4f8053446e4', 'value': 3027.9326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xa42501910688f38000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:40:34.000Z'}}, {'blockNum': '0xab4c1e', 'uniqueId': '0xfd1002beacae9eadadd4d3e7610a202dc276ed19d6b39370ef036a1d6921c642:log:34', 'hash': '0xfd1002beacae9eadadd4d3e7610a202dc276ed19d6b39370ef036a1d6921c642', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x6bc71b14ab4506301629f591c8322a560d08d5b6', 'value': 1026.9227489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x37ab6a7f413029e800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-09T22:53:07.000Z'}}, {'blockNum': '0xab4ef6', 'uniqueId': '0x789a521b54c7df63d3d3e651f2d9ef1af75bcb15fa66ee9faeeea33feb314868:log:106', 'hash': '0x789a521b54c7df63d3d3e651f2d9ef1af75bcb15fa66ee9faeeea33feb314868', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x519e166df7a9329a461a7b52181edcbb24310260', 'value': 1392.58054846, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4b7deff69dccf33800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-10T01:37:29.000Z'}}, {'blockNum': '0xab4fa2', 'uniqueId': '0xc38f01e2332b2741d83fa98819b928bce9163e7f89c4ac2e63cc436cc865383d:log:19', 'hash': '0xc38f01e2332b2741d83fa98819b928bce9163e7f89c4ac2e63cc436cc865383d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xc8feb541cb4c465a03af274bef8a085356e8feb0', 'value': 1314.639, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x474447f53e7ac18000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-11-10T02:11:25.000Z'}}]}}
Number of returned transfers:  46
Answer is complete
 
symbol             SUB
group              CCS
date        2018-12-27
hour             12:30
exchange       binance
Name: 1096, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: SUB, Contract: 0x8d75959f1e61ec2571aa72798237101f084de63a
Datetime timestamps:  2018-12-27 12:30:00 2018-12-27 00:30:00 2018-12-28 00:30:00
Unix timestamps:  1545867000.0 1545953400.0
Hex Block Numbers:  0x6a2f3f 0x6a464f
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x6a2f7d', 'uniqueId': '0x3bf98d149b60e908258803ad17cbe38428cf470f76a9eb94b0b6c0b458535919:log:13', 'hash': '0x3bf98d149b60e908258803ad17cbe38428cf470f76a9eb94b0b6c0b458535919', 'from': '0xa2e01883a00e07eea2883152d5cd19f48f092a20', 'to': '0xab959f743f4eaefa26474125d644c4bda856b314', 'value': 2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x1bc16d674ec80000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-26T23:45:25.000Z'}}, {'blockNum': '0x6a2f96', 'uniqueId': '0x8b438e42336903027205194cbd519fd12b1dd116618a11eec8bb1aa8959504eb:log:8', 'hash': '0x8b438e42336903027205194cbd519fd12b1dd116618a11eec8bb1aa8959504eb', 'from': '0xa2e01883a00e07eea2883152d5cd19f48f092a20', 'to': '0xab959f743f4eaefa26474125d644c4bda856b314', 'value': 2731.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x940e2e6fccd45a0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-26T23:50:35.000Z'}}, {'blockNum': '0x6a2fd6', 'uniqueId': '0x76ead13a48228af03c5547a4fcf3018f6998ba94fe4f5ee61a26f463d6c5b437:log:11', 'hash': '0x76ead13a48228af03c5547a4fcf3018f6998ba94fe4f5ee61a26f463d6c5b437', 'from': '0xab959f743f4eaefa26474125d644c4bda856b314', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2733.14, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x9429efdd3423220000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T00:04:06.000Z'}}, {'blockNum': '0x6a2ffa', 'uniqueId': '0x494159fab393c28ebe556969068bba0263f43ee245ada7a4418f056f60ab3a99:log:13', 'hash': '0x494159fab393c28ebe556969068bba0263f43ee245ada7a4418f056f60ab3a99', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x92dc9f3b997b4a9f5d42d4d2270b2f5e0e4b48f2', 'value': 983, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x3549dd8bd7c0fc0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T00:14:02.000Z'}}, {'blockNum': '0x6a302e', 'uniqueId': '0xb75e746d37a7836d524bf0b89ae4e56eefd6918eafb2fdd4a22292156b35f435:log:126', 'hash': '0xb75e746d37a7836d524bf0b89ae4e56eefd6918eafb2fdd4a22292156b35f435', 'from': '0xa54badc85cbde1493228d6c68d497e41c0e154d1', 'to': '0x03c7cd29ed8d2ca11ac864d1e862ab3ae6e0ba17', 'value': 1.4680064e-11, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xe00000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T00:28:35.000Z'}}, {'blockNum': '0x6a317a', 'uniqueId': '0x6c18aeaa3b7c2a0e110bb3c085e4c60e484567c5c24931280a0cf16db5a2a829:log:32', 'hash': '0x6c18aeaa3b7c2a0e110bb3c085e4c60e484567c5c24931280a0cf16db5a2a829', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xbf6e86e2ebc86aa5e14f5835279f8eb146546102', 'value': 4127.85, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xdfc56d28b6a0310000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T01:49:09.000Z'}}, {'blockNum': '0x6a3289', 'uniqueId': '0xe18b58858f7578caa2a2316ea2e73ffbd15455993a6c4dd66f37270395cf9a7c:log:83', 'hash': '0xe18b58858f7578caa2a2316ea2e73ffbd15455993a6c4dd66f37270395cf9a7c', 'from': '0xa54badc85cbde1493228d6c68d497e41c0e154d1', 'to': '0x03c7cd29ed8d2ca11ac864d1e862ab3ae6e0ba17', 'value': 1.464467e-12, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x165893', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T03:02:38.000Z'}}, {'blockNum': '0x6a32b9', 'uniqueId': '0x53fbac3eb79ef42d52455072310040bff614f030579f654678b20e0773962b6d:log:3', 'hash': '0x53fbac3eb79ef42d52455072310040bff614f030579f654678b20e0773962b6d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7d36862d287fb1fec3a38b0a3f8788966722ad8c', 'value': 77, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x042c96f40959140000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T03:14:30.000Z'}}, {'blockNum': '0x6a3395', 'uniqueId': '0x964b8b0cf048dd2e113407a2f0f839dcfab5ee17efd16352b4ab199630dfa28f:log:7', 'hash': '0x964b8b0cf048dd2e113407a2f0f839dcfab5ee17efd16352b4ab199630dfa28f', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x7d36862d287fb1fec3a38b0a3f8788966722ad8c', 'value': 584.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x1faa040f4e39aa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T04:11:54.000Z'}}, {'blockNum': '0x6a34c0', 'uniqueId': '0xcdae0e65f4041c5f4aa721552f6a15c1bcb8ece95145a6d87da98ba903dbf03d:log:99', 'hash': '0xcdae0e65f4041c5f4aa721552f6a15c1bcb8ece95145a6d87da98ba903dbf03d', 'from': '0xd028f1a8847e1f05480b1aaa359c4ad25a62b3ea', 'to': '0x6f45c0d960042339dccdda2a4dada3e054300bbf', 'value': 5030.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0110b6fcb435859e0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T05:26:41.000Z'}}, {'blockNum': '0x6a3506', 'uniqueId': '0x6723663f4ce247a377961a53065127d5a8665dfb661d1e07def5d45f8a5e80e3:log:9', 'hash': '0x6723663f4ce247a377961a53065127d5a8665dfb661d1e07def5d45f8a5e80e3', 'from': '0x6f45c0d960042339dccdda2a4dada3e054300bbf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5030.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0110b6fcb435859e0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T05:44:21.000Z'}}, {'blockNum': '0x6a3705', 'uniqueId': '0x795a6bbe4985f1b57ca93baebf8a8a4d6c7ee548172083ed84590b4d8bafd1d2:log:5', 'hash': '0x795a6bbe4985f1b57ca93baebf8a8a4d6c7ee548172083ed84590b4d8bafd1d2', 'from': '0x5e56f5f909c12b99596fc5a2583d669a889f5b66', 'to': '0x07a05bad8570ab71d53b1500fd247a87693f6e8f', 'value': 150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0821ab0d4414980000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T07:48:06.000Z'}}, {'blockNum': '0x6a374e', 'uniqueId': '0xb31b8b34f9df91654b14c430e260a17c16c690923c7ef1621298f9d3259eb1c1:log:12', 'hash': '0xb31b8b34f9df91654b14c430e260a17c16c690923c7ef1621298f9d3259eb1c1', 'from': '0x5e56f5f909c12b99596fc5a2583d669a889f5b66', 'to': '0x07a05bad8570ab71d53b1500fd247a87693f6e8f', 'value': 69829.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0ec97c41dd707a4c0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:04:55.000Z'}}, {'blockNum': '0x6a3771', 'uniqueId': '0x27220746af5406c4a2907aab6f6332d39e367c8277953f3feee6cfe9d1f34683:log:22', 'hash': '0x27220746af5406c4a2907aab6f6332d39e367c8277953f3feee6cfe9d1f34683', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd20be7d7fd5de701f52bbecba38dfd662df06f16', 'value': 17, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xebec21ee1da40000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:13:39.000Z'}}, {'blockNum': '0x6a3790', 'uniqueId': '0xe7e7d92cd339b960e6eeb5914431301e6308120b50d86b73b95d5ad26cc85aca:log:7', 'hash': '0xe7e7d92cd339b960e6eeb5914431301e6308120b50d86b73b95d5ad26cc85aca', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xd20be7d7fd5de701f52bbecba38dfd662df06f16', 'value': 17104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x039f35aec31fc9400000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:22:07.000Z'}}, {'blockNum': '0x6a379c', 'uniqueId': '0x0e0f65a4f047c9fbe90f5f86c959353ce89c0dafe87d9971f8fc14c43080cb2c:log:33', 'hash': '0x0e0f65a4f047c9fbe90f5f86c959353ce89c0dafe87d9971f8fc14c43080cb2c', 'from': '0x07a05bad8570ab71d53b1500fd247a87693f6e8f', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 69979.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0ed19deceab48ee40000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T08:24:42.000Z'}}, {'blockNum': '0x6a38b9', 'uniqueId': '0xf7c73fd07dcd7a023f42de06db1570b844d9ce505ffecb50127840bf91d5938c:log:3', 'hash': '0xf7c73fd07dcd7a023f42de06db1570b844d9ce505ffecb50127840bf91d5938c', 'from': '0x75b8d82b6c41ac1f83f61e8341c57bd429712fd5', 'to': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T09:40:20.000Z'}}, {'blockNum': '0x6a38bc', 'uniqueId': '0x5abc01e6457d4ac28e27acd7f5a6d5145c6b25b27cabcf91801a175cb75a9253:log:2', 'hash': '0x5abc01e6457d4ac28e27acd7f5a6d5145c6b25b27cabcf91801a175cb75a9253', 'from': '0x75b8d82b6c41ac1f83f61e8341c57bd429712fd5', 'to': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'value': 1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0de0b6b3a7640000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T09:41:40.000Z'}}, {'blockNum': '0x6a38e6', 'uniqueId': '0x49af2270cbd5ca1419cddcfa9d1bf249b076d596cf1354e50244815ce96c12cc:log:9', 'hash': '0x49af2270cbd5ca1419cddcfa9d1bf249b076d596cf1354e50244815ce96c12cc', 'from': '0x75b8d82b6c41ac1f83f61e8341c57bd429712fd5', 'to': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'value': 28934, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x062083e9951910580000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T09:49:56.000Z'}}, {'blockNum': '0x6a392e', 'uniqueId': '0xe4eadc555170343011b2f875fa4f2302eb36b67f6dac520bc230549121338d4b:log:6', 'hash': '0xe4eadc555170343011b2f875fa4f2302eb36b67f6dac520bc230549121338d4b', 'from': '0x158e982c51a13e0d75a6899e185a620aa569d155', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 28936, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x06209fab02805f200000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T10:04:20.000Z'}}, {'blockNum': '0x6a3a30', 'uniqueId': '0xd20bc1fd7de5158a6ca482e639a7c70b06db4b0660dd0e359e5424dd912a05ea:log:5', 'hash': '0xd20bc1fd7de5158a6ca482e639a7c70b06db4b0660dd0e359e5424dd912a05ea', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8fd849b0b3a109c895c135d4ea0848fc06a5aee8', 'value': 137.84, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0778ea0db13fd80000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T11:07:33.000Z'}}, {'blockNum': '0x6a3be3', 'uniqueId': '0xb469909c672c165914c8e4ae2c218c16bd15e821818cfa1302d28e137080b156:log:14', 'hash': '0xb469909c672c165914c8e4ae2c218c16bd15e821818cfa1302d28e137080b156', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6057fb4f60f9242947fe3b2d6c1c8a95bf88a8e6', 'value': 3210.76, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xae0e3ef8aa19340000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T12:49:27.000Z'}}, {'blockNum': '0x6a3c49', 'uniqueId': '0x1dd0ab32333ec6681e3c04d2f4d392ce0b23855c05ffd46dfda17b5674e51891:log:0', 'hash': '0x1dd0ab32333ec6681e3c04d2f4d392ce0b23855c05ffd46dfda17b5674e51891', 'from': '0xc8f33a3833f532241e8d0598b2387355688d39c3', 'to': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'value': 5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x4563918244f40000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:16:48.000Z'}}, {'blockNum': '0x6a3c4b', 'uniqueId': '0xb53b648ed0483a5da0fc6445424db856b95befd308188d3c2e02f3266d3d6659:log:20', 'hash': '0xb53b648ed0483a5da0fc6445424db856b95befd308188d3c2e02f3266d3d6659', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x5bb5717c3e9170001c70770b7d724e97f8589fc3', 'value': 5.009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x45838af60fee8000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:17:51.000Z'}}, {'blockNum': '0x6a3c74', 'uniqueId': '0x27baf974d44f7bd2515b6d8f55523c068216a5c8b8a84133f4884de988bb8f58:log:3', 'hash': '0x27baf974d44f7bd2515b6d8f55523c068216a5c8b8a84133f4884de988bb8f58', 'from': '0xc8f33a3833f532241e8d0598b2387355688d39c3', 'to': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'value': 34285, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x074297f47a48eb940000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:26:04.000Z'}}, {'blockNum': '0x6a3c92', 'uniqueId': '0xcee2171942a5d804c33794a9cca534d16023d9b30c3bea0ee93f5a0a74247c88:log:18', 'hash': '0xcee2171942a5d804c33794a9cca534d16023d9b30c3bea0ee93f5a0a74247c88', 'from': '0x3c56278cb1ab1c5893471a561b1d23b73d0b6b1c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 34400, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0748d3e68cfd1d800000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:34:08.000Z'}}, {'blockNum': '0x6a3cf2', 'uniqueId': '0xba6e81cfc36b5ba210120e7fa008da698102d818743aa008c957b84066cc9e97:log:6', 'hash': '0xba6e81cfc36b5ba210120e7fa008da698102d818743aa008c957b84066cc9e97', 'from': '0x48e61bc4c144936296b2f3747587ec2e2d4c2307', 'to': '0xb6973537713aa1b4a1ccbd847d99e3c0e100463a', 'value': 379.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x149425a3bd72090000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T13:56:30.000Z'}}, {'blockNum': '0x6a3d5d', 'uniqueId': '0x4e028d924fac75266ea7290067647481a1ea44ae81d5b5132a3093b96e438f67:log:3', 'hash': '0x4e028d924fac75266ea7290067647481a1ea44ae81d5b5132a3093b96e438f67', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x6e02d5770e12c63582758668516eb05f05eacaea', 'value': 8752.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x01da7573b6c045560000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:19:47.000Z'}}, {'blockNum': '0x6a3de3', 'uniqueId': '0xd3bd49cf92bada03c470dc7b3e9b68bbfadc72ebfbc96ec9a449880bc5c99304:log:55', 'hash': '0xd3bd49cf92bada03c470dc7b3e9b68bbfadc72ebfbc96ec9a449880bc5c99304', 'from': '0xe81e8aa3af684e2940176afb096c813605966b38', 'to': '0x13f1620a7ba8a8a742513e812280e0ab1689e976', 'value': 1426.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x4d5271a0ed42aa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:53:01.000Z'}}, {'blockNum': '0x6a3de4', 'uniqueId': '0x5e6d03ff37a10248a9ec2782a21688f214c1e77ecea882c39fb13786c0daddaa:log:48', 'hash': '0x5e6d03ff37a10248a9ec2782a21688f214c1e77ecea882c39fb13786c0daddaa', 'from': '0xe81e8aa3af684e2940176afb096c813605966b38', 'to': '0x7ed0679b11c6b341210e1f66209952d726853ef3', 'value': 218.99, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0bdf18c4bdc2cb0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:53:12.000Z'}}, {'blockNum': '0x6a3df8', 'uniqueId': '0x69f48e53049a23cc8421c3751d5ca215ab0116c570e4a63b879f27c3ec44264f:log:18', 'hash': '0x69f48e53049a23cc8421c3751d5ca215ab0116c570e4a63b879f27c3ec44264f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa2f34db3ec5dd7f09b5972cc76bc44582d2b189b', 'value': 2930.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x9ed69cb6ee054d0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T14:59:51.000Z'}}, {'blockNum': '0x6a3e3a', 'uniqueId': '0x546868b082d7139e8c132b490fe9371e683c41e1a22b35ef6eb9d1d3a48a0af7:log:30', 'hash': '0x546868b082d7139e8c132b490fe9371e683c41e1a22b35ef6eb9d1d3a48a0af7', 'from': '0x13f1620a7ba8a8a742513e812280e0ab1689e976', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1426.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x4d5271a0ed42aa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T15:14:29.000Z'}}, {'blockNum': '0x6a3f11', 'uniqueId': '0xa9a99560a2f40329ec29ade9843d3346cc1363987e87c9a8f61af867ebd31fdf:log:2', 'hash': '0xa9a99560a2f40329ec29ade9843d3346cc1363987e87c9a8f61af867ebd31fdf', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x232015ce5fcf93373a4958bb2a1f258461f27e14', 'value': 15065.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0330b95d0370d59e0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T16:08:54.000Z'}}, {'blockNum': '0x6a3f70', 'uniqueId': '0x22e20eb4069eb45d62db0c6b0a8d301060c5574aabe68c622f65cf77786a918a:log:38', 'hash': '0x22e20eb4069eb45d62db0c6b0a8d301060c5574aabe68c622f65cf77786a918a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd028f1a8847e1f05480b1aaa359c4ad25a62b3ea', 'value': 5009.67, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x010f932322a17b270000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T16:29:57.000Z'}}, {'blockNum': '0x6a3fa7', 'uniqueId': '0xeebe8c56d7eb77855dbacbc849e9054588b1df3bb67978431ca78f196d98829c:log:20', 'hash': '0xeebe8c56d7eb77855dbacbc849e9054588b1df3bb67978431ca78f196d98829c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x233c2bc75e0a6320b705c9e1bd25e64b6dbedf79', 'value': 21730.23, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x0499ff855d4ea09f0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T16:41:37.000Z'}}, {'blockNum': '0x6a404c', 'uniqueId': '0xd9613230e4019086d98b036fddbeaf25a2a3ecc37b872a20f3defcd00bf68b00:log:68', 'hash': '0xd9613230e4019086d98b036fddbeaf25a2a3ecc37b872a20f3defcd00bf68b00', 'from': '0xe81e8aa3af684e2940176afb096c813605966b38', 'to': '0x0945f63b9ff06bbb34146dd7f31a36d3a15294e3', 'value': 803, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x2b87dd15860eac0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T17:24:26.000Z'}}, {'blockNum': '0x6a4165', 'uniqueId': '0x7efd4ce3671106ffde5e4a113eb408d53586da06b81509f240989f09ad75862d:log:4', 'hash': '0x7efd4ce3671106ffde5e4a113eb408d53586da06b81509f240989f09ad75862d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x3f1713187d101ec36feae66179b26586e407a286', 'value': 4560.21, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0xf735a071f8d0150000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T18:32:22.000Z'}}, {'blockNum': '0x6a41bd', 'uniqueId': '0xec84662e62feb16ba48fe9c29962e209266a422f0bbc1b169b17ab3ac1933677:log:4', 'hash': '0xec84662e62feb16ba48fe9c29962e209266a422f0bbc1b169b17ab3ac1933677', 'from': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'to': '0x864bf5de2f20c879631ab8ce67a239aeba6d2dcf', 'value': 1536.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x5348fc94a08adb8000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T18:55:24.000Z'}}, {'blockNum': '0x6a41ef', 'uniqueId': '0xf3cfe0083c737672ec5e0deedccb9acac911f34b9856e981dc6f5adfe93cd933:log:10', 'hash': '0xf3cfe0083c737672ec5e0deedccb9acac911f34b9856e981dc6f5adfe93cd933', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x233c2bc75e0a6320b705c9e1bd25e64b6dbedf79', 'value': 40072.87, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x087c5ac965d5d7b70000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T19:07:45.000Z'}}, {'blockNum': '0x6a41f7', 'uniqueId': '0x02b7cbd279824fcc6c793fe62ca69dcc3c192e9c86aea36b0446f37bee0e2f70:log:3', 'hash': '0x02b7cbd279824fcc6c793fe62ca69dcc3c192e9c86aea36b0446f37bee0e2f70', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4c4e867210f1b0a2b0d52d7cde71cbb2c8c52d60', 'value': 1089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x3b08e9323b10640000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T19:09:43.000Z'}}, {'blockNum': '0x6a4208', 'uniqueId': '0x3162921893f365fb020b122625c4b28bdbeb37df63301e545f3ff8ebdc31098c:log:9', 'hash': '0x3162921893f365fb020b122625c4b28bdbeb37df63301e545f3ff8ebdc31098c', 'from': '0x864bf5de2f20c879631ab8ce67a239aeba6d2dcf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1536.339, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x5348fc94a08adb8000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T19:14:18.000Z'}}, {'blockNum': '0x6a4302', 'uniqueId': '0xc1350ed16c6b7bd2222321e37dde0c50fd80928772c68cd1b243c8a64bef8ed0:log:146', 'hash': '0xc1350ed16c6b7bd2222321e37dde0c50fd80928772c68cd1b243c8a64bef8ed0', 'from': '0xbedf42770ff6a30c184c331b7961eaca6afe7f9e', 'to': '0x4cd13f456a66d0420856584d1d59564d57de0920', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T20:09:46.000Z'}}, {'blockNum': '0x6a4338', 'uniqueId': '0xdc0f93fcaafceb45e459d5d3e414201c961ac6ed3b0cd5fb4f2e1fa67f82ac73:log:1', 'hash': '0xdc0f93fcaafceb45e459d5d3e414201c961ac6ed3b0cd5fb4f2e1fa67f82ac73', 'from': '0xbedf42770ff6a30c184c331b7961eaca6afe7f9e', 'to': '0x4cd13f456a66d0420856584d1d59564d57de0920', 'value': 894.64, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x307f9fc3fe7f780000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T20:22:48.000Z'}}, {'blockNum': '0x6a438f', 'uniqueId': '0x1af2c32e4e96a7505dd2516f912d6934cd7d0c508cb2a49cdc9437f3207ecb85:log:8', 'hash': '0x1af2c32e4e96a7505dd2516f912d6934cd7d0c508cb2a49cdc9437f3207ecb85', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf39fef1c0eadb9403b85a1a36221bac5b130bee9', 'value': 318.66, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x11464bbdaabdfa0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T20:46:53.000Z'}}, {'blockNum': '0x6a44b4', 'uniqueId': '0xffc226f409d48887123c377f8e1c3798e6d2fabc2a03303d5e26bbb2dae59ca4:log:6', 'hash': '0xffc226f409d48887123c377f8e1c3798e6d2fabc2a03303d5e26bbb2dae59ca4', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xac3e744bd9f449d45c6d10efeb94546868b7bdfe', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T21:51:24.000Z'}}, {'blockNum': '0x6a45c4', 'uniqueId': '0x7df6b846d9728b3d5768bcd30beb1aee671ebfa6742c617bcd0e1f6275c15a4b:log:2', 'hash': '0x7df6b846d9728b3d5768bcd30beb1aee671ebfa6742c617bcd0e1f6275c15a4b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x47ee340afe92d4b8caabd7abd0f6abc3d0927358', 'value': 1482.86, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SUB', 'category': 'erc20', 'rawContract': {'value': '0x5062d1017893be0000', 'address': '0x8d75959f1e61ec2571aa72798237101f084de63a', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2018-12-27T22:52:42.000Z'}}]}}
Number of returned transfers:  46
Answer is complete
 
symbol             VIB
group              CCS
date        2019-08-21
hour             17:59
exchange       binance
Name: 1097, dtype: object
HERE
 Symbol: VIB, Contract: 0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724
Datetime timestamps:  2019-08-21 17:59:00 2019-08-21 05:59:00 2019-08-22 05:59:00
Unix timestamps:  1566359940.0 1566446340.0
Hex Block Numbers:  0x800ae8 0x8023f5
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x801136', 'uniqueId': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc:log:72', 'hash': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15450.667732554415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03459516999cb8078c63', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T10:01:06.000Z'}}, {'blockNum': '0x801136', 'uniqueId': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc:log:76', 'hash': '0x57a8f73e19eba8f5f5373137b0aa7c5c44ddb9617bc2f40ac340393f55cab7dc', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 15450.667732554415, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03459516999cb8078c63', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T10:01:06.000Z'}}, {'blockNum': '0x8013fa', 'uniqueId': '0xeb52eda3b7bf3dc6906d79f04b3d7308ace9ff3901a6edf6104a3175c4f36e48:log:27', 'hash': '0xeb52eda3b7bf3dc6906d79f04b3d7308ace9ff3901a6edf6104a3175c4f36e48', 'from': '0x4fdfc48853f2be633e649d0d6e68847583c7021c', 'to': '0xeae051d6b2fbee50e1b530cb46faa9b9f1ccd629', 'value': 12321.254485100213, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x029befc1596502be855e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T12:44:18.000Z'}}, {'blockNum': '0x801467', 'uniqueId': '0x32796b686dd768d909f34e483688bef138fc680c00e26c452070a7711730f2ad:log:74', 'hash': '0x32796b686dd768d909f34e483688bef138fc680c00e26c452070a7711730f2ad', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:04:14.000Z'}}, {'blockNum': '0x80146b', 'uniqueId': '0xebd8e56010fab780cd2bb3012f8d83b6abddfdd12d31926d34c22bb50123bfa0:log:111', 'hash': '0xebd8e56010fab780cd2bb3012f8d83b6abddfdd12d31926d34c22bb50123bfa0', 'from': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'to': '0x7d7ee7e4bb24a05c6da953dd51ca9625fae49ed1', 'value': 20118.90768765859, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0442a5ee8b6255d769e5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:05:25.000Z'}}, {'blockNum': '0x801477', 'uniqueId': '0xf71a915a9fa976cf2a476a25c6505a42e33c90da8fb5836fd745f982b6a28486:log:7', 'hash': '0xf71a915a9fa976cf2a476a25c6505a42e33c90da8fb5836fd745f982b6a28486', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'value': 19928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04384c8e30ee50600000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T13:08:15.000Z'}}, {'blockNum': '0x801648', 'uniqueId': '0x8e4178fdaebb3b2ad6e9cbbc057d3e87a7c63b558c8c58f02338f7c43c154a8d:log:1', 'hash': '0x8e4178fdaebb3b2ad6e9cbbc057d3e87a7c63b558c8c58f02338f7c43c154a8d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1876630571b6aca916b03854e1068baca4ca4dde', 'value': 6484.15, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x015f81a866803d1f0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T14:58:44.000Z'}}, {'blockNum': '0x8017eb', 'uniqueId': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f:log:87', 'hash': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:30:43.000Z'}}, {'blockNum': '0x8017eb', 'uniqueId': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f:log:91', 'hash': '0xb9b47092f19c913ad270acda1a53f99ec9974c4874fe156dca482fcab00a2c5f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:30:43.000Z'}}, {'blockNum': '0x8017ed', 'uniqueId': '0x2751b73aef3672359525af49cabba1cce0cdaa8d6a66348cd2fafcf5f3bcf3f0:log:27', 'hash': '0x2751b73aef3672359525af49cabba1cce0cdaa8d6a66348cd2fafcf5f3bcf3f0', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:31:21.000Z'}}, {'blockNum': '0x8017f1', 'uniqueId': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7:log:146', 'hash': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5733.27142830672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136cd1fd3defe740b28', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:32:55.000Z'}}, {'blockNum': '0x8017f1', 'uniqueId': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7:log:150', 'hash': '0x93858189049b829840c97eb4dcc4509ceea3d773148572c4f510bc817b0f0bd7', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 5733.27142830672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136cd1fd3defe740b28', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:32:55.000Z'}}, {'blockNum': '0x8017f4', 'uniqueId': '0x539bff25bfb56e2daa9fcd11a62fc9bf9368b2fd5efe5de15056b6650e805823:log:93', 'hash': '0x539bff25bfb56e2daa9fcd11a62fc9bf9368b2fd5efe5de15056b6650e805823', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 5733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0136c95b8543a2740000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:33:23.000Z'}}, {'blockNum': '0x801800', 'uniqueId': '0xd3b4079803364df17c394bf0a462eaac84a80ac1a36dd42ef47d310eb0f5d156:log:14', 'hash': '0xd3b4079803364df17c394bf0a462eaac84a80ac1a36dd42ef47d310eb0f5d156', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 15057.813668417197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0330492497b59ca3fd4e', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:36:36.000Z'}}, {'blockNum': '0x80181b', 'uniqueId': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250:log:79', 'hash': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11370.810185051509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026869b0e22b84f4bb54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:08.000Z'}}, {'blockNum': '0x80181b', 'uniqueId': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250:log:83', 'hash': '0x6e9e7cb44333960751a43cf978d504d50e98d54c00f5f9791a370dfa97d64250', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x839e279e912416ebe17860319f177cb10a145070', 'value': 11370.810185051509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026869b0e22b84f4bb54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:08.000Z'}}, {'blockNum': '0x80181f', 'uniqueId': '0x3e08c5cb3695bc5bcfbcc3e589a811257c739cdec278feda38e6f8b55651c660:log:106', 'hash': '0x3e08c5cb3695bc5bcfbcc3e589a811257c739cdec278feda38e6f8b55651c660', 'from': '0x839e279e912416ebe17860319f177cb10a145070', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11370, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02685e7287287f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:42:50.000Z'}}, {'blockNum': '0x801833', 'uniqueId': '0x53afefebdc731e6d88e473897f1415e3f19a9b6a1ad4df0bda35825b2635add6:log:24', 'hash': '0x53afefebdc731e6d88e473897f1415e3f19a9b6a1ad4df0bda35825b2635add6', 'from': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x039f27ce0c6c21dc0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:47:23.000Z'}}, {'blockNum': '0x80185a', 'uniqueId': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb:log:88', 'hash': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11262.53923172772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02628b212fc41f8ded8a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:56:37.000Z'}}, {'blockNum': '0x80185a', 'uniqueId': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb:log:92', 'hash': '0xc4981a71a69e00a474d70b311ef406ec3a055589658fa8c12c742566d17227eb', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'value': 11262.53923172772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02628b212fc41f8ded8a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:56:37.000Z'}}, {'blockNum': '0x80185d', 'uniqueId': '0xfa4ba4c86059525ebe71d9e5933acf647707d2a11b5515e13743a534e419ca2e:log:117', 'hash': '0xfa4ba4c86059525ebe71d9e5933acf647707d2a11b5515e13743a534e419ca2e', 'from': '0x3ed3487ec330f4ff0793b7abab9dd0da040851a0', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11262, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x026283a5735de1380000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T16:57:18.000Z'}}, {'blockNum': '0x801915', 'uniqueId': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1:log:14', 'hash': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11136.192841754739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025bb1b8a37f5f16a7fa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:37:50.000Z'}}, {'blockNum': '0x801915', 'uniqueId': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1:log:18', 'hash': '0xcf74cacf623671a546cf4daf8bdda9c4941cf014a43abd182b4b8b77fb185ef1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'value': 11136.192841754739, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025bb1b8a37f5f16a7fa', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:37:50.000Z'}}, {'blockNum': '0x80191a', 'uniqueId': '0x281f5bd01f3588c2881635f15a36dbce1e9a454776c6db7afe78da8b36166437:log:4', 'hash': '0x281f5bd01f3588c2881635f15a36dbce1e9a454776c6db7afe78da8b36166437', 'from': '0x37a7d5a1951c0b234156a1e25e94ab90a668c39e', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 11136, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x025baf0b86f17e000000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T17:38:08.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0x81853b630d2abbc784dc233d103a0535353a956f93212f84d311f5002ae1fe19:log:5', 'hash': '0x81853b630d2abbc784dc233d103a0535353a956f93212f84d311f5002ae1fe19', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'value': 20586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045bf823cab28f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8:log:41', 'hash': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801980', 'uniqueId': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8:log:45', 'hash': '0xf336c41318cccb20f857972357ec6eb2ef61d1461a02883ed2f168413e0131c8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:17.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355:log:56', 'hash': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355:log:60', 'hash': '0x6f4a31969f11dec0405bee5426077603ce9dc86456667845ebb82226dd694355', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c:log:87', 'hash': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 33870.74030911024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x072c22f2684334360117', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801981', 'uniqueId': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c:log:91', 'hash': '0x1d5c7d6b3cdbfe97cbf3456333ccf34a4045dd342668f399344f72702494a86c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 33870.74030911024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x072c22f2684334360117', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:22.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x58233ca3fea49b11b95e71fb35adfe763895899ba3e081c86306db6d5f7abebb:log:1', 'hash': '0x58233ca3fea49b11b95e71fb35adfe763895899ba3e081c86306db6d5f7abebb', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'value': 21865.3738692269, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d65899b95f14', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca:log:62', 'hash': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801983', 'uniqueId': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca:log:64', 'hash': '0x6930e3fdabf6a5abf9fa2c852e637d494b7b34d8d749b4d87342a03dc9c03bca', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 34719.74201245043, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x075a29365f3f21a36aad', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:00:42.000Z'}}, {'blockNum': '0x801984', 'uniqueId': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e:log:111', 'hash': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 6251.3567305123715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0152e300914b2538c57a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:08.000Z'}}, {'blockNum': '0x801984', 'uniqueId': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e:log:115', 'hash': '0x544a34db7df471e90bb52f984dc0e8494f1f76f97f7ebb77a9f250dee542530e', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 6251.3567305123715, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0152e300914b2538c57a', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:08.000Z'}}, {'blockNum': '0x801985', 'uniqueId': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91:log:21', 'hash': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:29.000Z'}}, {'blockNum': '0x801985', 'uniqueId': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91:log:25', 'hash': '0xba2469cc09bd49e5e08d3eef80f7aee90d297e5f505cb9d39516c65bb33daf91', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:01:29.000Z'}}, {'blockNum': '0x801989', 'uniqueId': '0x034de49815fa919bc66ac1e6e2a43a2371be63571b52fce9935d701ea8350f31:log:5', 'hash': '0x034de49815fa919bc66ac1e6e2a43a2371be63571b52fce9935d701ea8350f31', 'from': '0xe1caca299fb4ef116096a053f3a9e1bc773c75ef', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:02:13.000Z'}}, {'blockNum': '0x80198a', 'uniqueId': '0x59be7b9280a3484668323f1d477f188bd03a5960bc69ffd37270436ba24bbae1:log:0', 'hash': '0x59be7b9280a3484668323f1d477f188bd03a5960bc69ffd37270436ba24bbae1', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'value': 5930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x014177481d8372680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:02:17.000Z'}}, {'blockNum': '0x801990', 'uniqueId': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175:log:11', 'hash': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 1023.926950635287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3781d7489af5358fc5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:03:22.000Z'}}, {'blockNum': '0x801990', 'uniqueId': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175:log:15', 'hash': '0x0c41fb210711264bb74f955d97f60210b85b0d3e489efd235fed23f1fc824175', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 1023.926950635287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x3781d7489af5358fc5', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:03:22.000Z'}}, {'blockNum': '0x801993', 'uniqueId': '0x8aac85ba992630ef6e9d8e4a076063e9cf81fe01e4af76dcf15a8a29e1a4abfc:log:18', 'hash': '0x8aac85ba992630ef6e9d8e4a076063e9cf81fe01e4af76dcf15a8a29e1a4abfc', 'from': '0x9652b6a35a516154cdf1ff31cb3af0d0534e8658', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 21865.37386922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x04a15304d656fe916800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:04:23.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5:log:61', 'hash': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5:log:65', 'hash': '0xfa4c0535927e89c1718a98ca77ae523f07b37da2a32df6e62d718631b9c575f5', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93:log:76', 'hash': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 29830.81939708991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065121c81f32c856c085', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801995', 'uniqueId': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93:log:80', 'hash': '0x9baae2013db6a3995d8174f9869f7977cf83213d7687ab12f80d905ac12b9b93', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'value': 29830.81939708991, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x065121c81f32c856c085', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:18.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8:log:83', 'hash': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8', 'from': '0x2926a3b8c2cc2da7e9e3c9166aecacc3c5529df3', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8:log:85', 'hash': '0xfb5070085b1b48faa4c9bcbfb1d13a39f6c3a3f428bd3dd53f5b0670807948e8', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 12875.652606096428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02b9fd93231d0e1c5778', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x801997', 'uniqueId': '0x70d638344a7a1f4d66a78eac4d0df0d2d0bedec3d130b4683f4a0479e72f8d3c:log:116', 'hash': '0x70d638344a7a1f4d66a78eac4d0df0d2d0bedec3d130b4683f4a0479e72f8d3c', 'from': '0xb1debef06e45178f53cd15741e21163461d30ffc', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 29830, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0651166909e2ee580000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:05:41.000Z'}}, {'blockNum': '0x8019a0', 'uniqueId': '0x672e673884ee989a996995bb2220f57f0dc5e38a5f15eca1843e942e8a6b2ef6:log:5', 'hash': '0x672e673884ee989a996995bb2220f57f0dc5e38a5f15eca1843e942e8a6b2ef6', 'from': '0x054c7bf24e2ae8cce104cacc9819bb637bce106b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 20586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x045bf823cab28f680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:07:02.000Z'}}, {'blockNum': '0x8019a0', 'uniqueId': '0xc475fb3d654c5da8737e98197c93448eaeac11f7ade9a6c6a417ebfa847f4f2c:log:6', 'hash': '0xc475fb3d654c5da8737e98197c93448eaeac11f7ade9a6c6a417ebfa847f4f2c', 'from': '0xbd8e4e8acd6a346f01bd95f68aea58da855c47c3', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5930, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x014177481d8372680000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:07:02.000Z'}}, {'blockNum': '0x8019a8', 'uniqueId': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27:log:78', 'hash': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10021.857923497268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021f4937bb57808f09ca', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:10.000Z'}}, {'blockNum': '0x8019a8', 'uniqueId': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27:log:80', 'hash': '0xe4169b96083f671b8b8325d20b3ae0d08ade6729e0676e480ff3150670d16c27', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 10021.857923497268, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x021f4937bb57808f09ca', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:10.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0x06553aa38fa6d529d9f94dde985efbd5461dd47d9fa4610d2577b9adea2989d8:log:10', 'hash': '0x06553aa38fa6d529d9f94dde985efbd5461dd47d9fa4610d2577b9adea2989d8', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'value': 3890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd2e09835e58d880000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d:log:85', 'hash': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 29028.248587570622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06259fdfd424998850fe', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019a9', 'uniqueId': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d:log:87', 'hash': '0xcafb33c4dd058df7a7e25a9151640a926df16e2cb7b36f12768c0529cd02171d', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 29028.248587570622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x06259fdfd424998850fe', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:08:16.000Z'}}, {'blockNum': '0x8019cc', 'uniqueId': '0x025c22125137e56e29ad301c98edd26db95efe429b001164ee1b237ba0e5b351:log:1', 'hash': '0x025c22125137e56e29ad301c98edd26db95efe429b001164ee1b237ba0e5b351', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'value': 12570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a96bcaf14924280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:37.000Z'}}, {'blockNum': '0x8019ce', 'uniqueId': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3:log:124', 'hash': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3', 'from': '0xda7ea1e36b2de20afb5a0457e8204d4db19a0fc6', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5878.359064379703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013eaa9ea82c15cb4fab', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:59.000Z'}}, {'blockNum': '0x8019ce', 'uniqueId': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3:log:126', 'hash': '0xc89ab6e1ec22daee7c8d910e275ea274c851bf6d00f201b9ff00efd82e8c2ae3', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5878.359064379703, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x013eaa9ea82c15cb4fab', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:14:59.000Z'}}, {'blockNum': '0x8019d6', 'uniqueId': '0x4bcc5a5dda2e351949e5fb353fbc066779b02b70ac2bcf8564d76fabadac6ee8:log:6', 'hash': '0x4bcc5a5dda2e351949e5fb353fbc066779b02b70ac2bcf8564d76fabadac6ee8', 'from': '0xa69b20b8ca2eb5a47d82470a6b27104fe16c9495', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3890, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xd2e09835e58d880000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:03.000Z'}}, {'blockNum': '0x8019d6', 'uniqueId': '0xc888e454ffdc2b2804fcc99d83c0c9dbaad1973f51d03691966cba2b34397b38:log:7', 'hash': '0xc888e454ffdc2b2804fcc99d83c0c9dbaad1973f51d03691966cba2b34397b38', 'from': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 13409.463700038674, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02d6edb11ccd34565057', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:03.000Z'}}, {'blockNum': '0x8019dd', 'uniqueId': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b:log:126', 'hash': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 13796.531791907515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ebe9573794e6e383b3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:59.000Z'}}, {'blockNum': '0x8019dd', 'uniqueId': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b:log:128', 'hash': '0xc9eac9fc0fa8311bbce141218261189be6575fa759b017150ec783ced3e9020b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 13796.531791907515, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02ebe9573794e6e383b3', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:17:59.000Z'}}, {'blockNum': '0x8019e3', 'uniqueId': '0x4182b592fdf5e7e58f550423c6acd55a1350b1f73f371fc1e3c02d9f542e7599:log:5', 'hash': '0x4182b592fdf5e7e58f550423c6acd55a1350b1f73f371fc1e3c02d9f542e7599', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xccf499e50baa6f2e67b47b979c96214d4da09a17', 'value': 1766.044433, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x5fbcca36e8b9261000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:20:04.000Z'}}, {'blockNum': '0x8019ee', 'uniqueId': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313:log:88', 'hash': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4294.736842105263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe8d17253675b1af286', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:23:51.000Z'}}, {'blockNum': '0x8019ee', 'uniqueId': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313:log:90', 'hash': '0xa5467d864e82d2e7192789d1fb340ea304b7d255d1e86f5558d7812e0cd7f313', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4294.736842105263, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe8d17253675b1af286', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:23:51.000Z'}}, {'blockNum': '0x8019fc', 'uniqueId': '0xbc124efddc26fb0c4ca0365590438e9878bdfe6c029f6e736c26b3c257ca957a:log:96', 'hash': '0xbc124efddc26fb0c4ca0365590438e9878bdfe6c029f6e736c26b3c257ca957a', 'from': '0xd285e34998278c899379c63f20ad1a094749319f', 'to': '0x66abd916b01aa58a966015f595f476d2059d89c2', 'value': 14466.766401532586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03103eb6e1fb01defd00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:26:55.000Z'}}, {'blockNum': '0x801a10', 'uniqueId': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c:log:115', 'hash': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 5397.058823529412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0124933cb5282639e1e1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:30:46.000Z'}}, {'blockNum': '0x801a10', 'uniqueId': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c:log:117', 'hash': '0xc0052b027f258a8eda482caaa75e2dd375f005489824325b1974948ac896bc6c', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 5397.058823529412, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0124933cb5282639e1e1', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:30:46.000Z'}}, {'blockNum': '0x801a23', 'uniqueId': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1:log:53', 'hash': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4478.2217956814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2c3cfd48949c448bb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:35:11.000Z'}}, {'blockNum': '0x801a23', 'uniqueId': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1:log:55', 'hash': '0x453dc8bf800def045f6143b7d03e1ff23395bc9ae1bbd74e11c7f9a4ab1e7ba1', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4478.2217956814, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xf2c3cfd48949c448bb', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:35:11.000Z'}}, {'blockNum': '0x801a2e', 'uniqueId': '0x3e9ff58e6ccfcc4df08de4af207a29967675029c4a26cf836363db5bdb016605:log:5', 'hash': '0x3e9ff58e6ccfcc4df08de4af207a29967675029c4a26cf836363db5bdb016605', 'from': '0x66abd916b01aa58a966015f595f476d2059d89c2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14466.766401532586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x03103eb6e1fb01defd00', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:36:59.000Z'}}, {'blockNum': '0x801a6b', 'uniqueId': '0x43455dd81ce5917111457a8e6732b48bc9d717f1e91e1d2ec5d5f4ab9783a620:log:11', 'hash': '0x43455dd81ce5917111457a8e6732b48bc9d717f1e91e1d2ec5d5f4ab9783a620', 'from': '0x5c0bc2fd366e9178ffe7f1ed66faef793b4b04aa', 'to': '0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', 'value': 12570, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x02a96bcaf14924280000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T18:47:51.000Z'}}, {'blockNum': '0x801b58', 'uniqueId': '0x7f358cc20454203411f69501bed378fafd98fdbb4aca66efdd5d8e6edb393e77:log:38', 'hash': '0x7f358cc20454203411f69501bed378fafd98fdbb4aca66efdd5d8e6edb393e77', 'from': '0x7ef832d6e1d1ad4c3fd5f20d2bc234d2e5718264', 'to': '0x0a2c144387b2592a80a79e2239e2c89096340d37', 'value': 21.91428434, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01301f2d80189b0800', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T19:43:27.000Z'}}, {'blockNum': '0x801be9', 'uniqueId': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b:log:72', 'hash': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 11698.994024001135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027a342818e6f55a7f54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:14:12.000Z'}}, {'blockNum': '0x801be9', 'uniqueId': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b:log:76', 'hash': '0x45119ced570426a87062fea0c682fc93f0876560410b3e448ca333d0f711611b', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 11698.994024001135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x027a342818e6f55a7f54', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:14:12.000Z'}}, {'blockNum': '0x801bf2', 'uniqueId': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a:log:52', 'hash': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 4308.235294117647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe98cc675fdbae78787', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:16:56.000Z'}}, {'blockNum': '0x801bf2', 'uniqueId': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a:log:54', 'hash': '0xefc9591f861141cdf952288c034bc7a2cf6c4c01306b10211d04d7123257991a', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 4308.235294117647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0xe98cc675fdbae78787', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:16:56.000Z'}}, {'blockNum': '0x801bf5', 'uniqueId': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87:log:48', 'hash': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 7390.758729883487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0190a761a2e93a72f7cd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:17:24.000Z'}}, {'blockNum': '0x801bf5', 'uniqueId': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87:log:50', 'hash': '0xad9ce10bc4a440560a1666c2ee8fbf3335b4078f0487d950661baefe0e3f5f87', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 7390.758729883487, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0190a761a2e93a72f7cd', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T20:17:24.000Z'}}, {'blockNum': '0x801e4c', 'uniqueId': '0xaa940ea0fe8f0565a61fe6b6ea8d104ff0a3df65385c26d028bb997594d7b10d:log:3', 'hash': '0xaa940ea0fe8f0565a61fe6b6ea8d104ff0a3df65385c26d028bb997594d7b10d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xb5d47502a7334d7d42a4380ab97b3b0dc05d8cff', 'value': 690.5756742, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x256fa9a4dbb0e37000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T22:30:44.000Z'}}, {'blockNum': '0x801ef3', 'uniqueId': '0xb02b286106e33f526aef0cc9d3dd236206f6eb256bf8af594753ef52dd02bd4d:log:1', 'hash': '0xb02b286106e33f526aef0cc9d3dd236206f6eb256bf8af594753ef52dd02bd4d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xab9b3cf6ca4d61cd31b37a0bfac5d24017331511', 'value': 427.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x172cc11902077e0000', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:07:39.000Z'}}, {'blockNum': '0x801f99', 'uniqueId': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45:log:113', 'hash': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:42:34.000Z'}}, {'blockNum': '0x801f99', 'uniqueId': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45:log:117', 'hash': '0xff6a9d4d64aa261ff7462a30662fbe8d692f9ce6f7552f2230f01fe654c20d45', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-21T23:42:34.000Z'}}, {'blockNum': '0x801ffe', 'uniqueId': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f:log:58', 'hash': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f', 'from': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:05:16.000Z'}}, {'blockNum': '0x801ffe', 'uniqueId': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f:log:60', 'hash': '0xb40a677cdc315eb2e59613e2bb569220b301fcf93d66d1d3f4bc4c91c7654b3f', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'value': 8516.49661989356, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x01cdae220975d2952bd8', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:05:16.000Z'}}, {'blockNum': '0x80208f', 'uniqueId': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4:log:37', 'hash': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4', 'from': '0xbe1daf05bf9e054b3e28b7e9c318819ef5dacb58', 'to': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'value': 10636.338596417807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024098d99fb4744f7bf9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:39:13.000Z'}}, {'blockNum': '0x80208f', 'uniqueId': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4:log:41', 'hash': '0x259f88c0dafbd92501b071703d20fa2f85e42d1d62ef5ec45172624c7b162ab4', 'from': '0xeee90e509a639e95e3bb502b17a0eed6e014bfc0', 'to': '0x00e541a6e7d9ab69e9343c9ba357d5f6e367dfc2', 'value': 10636.338596417807, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x024098d99fb4744f7bf9', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:39:13.000Z'}}, {'blockNum': '0x802094', 'uniqueId': '0xa443462860b1ffe4f086f62b9bd8ad363b25c91dd80f1b165e619b652ec77148:log:81', 'hash': '0xa443462860b1ffe4f086f62b9bd8ad363b25c91dd80f1b165e619b652ec77148', 'from': '0x5964100d70fcbca9a4f454f6ce4a656d296ce4bb', 'to': '0x4b0bd28395fa9bd4cb9a110a06ac4af6161a9446', 'value': 20118.909272016324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'VIB', 'category': 'erc20', 'rawContract': {'value': '0x0442a5f42c595dd1d955', 'address': '0x2c974b2d0ba1716e644c1fc59982a89ddd2ff724', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-22T00:40:48.000Z'}}]}}
Number of returned transfers:  90
Answer is complete
 
symbol             QSP
group              CCS
date        2019-08-29
hour             18:00
exchange       binance
Name: 1098, dtype: object
HERE
 Symbol: QSP, Contract: 0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d
Datetime timestamps:  2019-08-29 18:00:00 2019-08-29 06:00:00 2019-08-30 06:00:00
Unix timestamps:  1567051200.0 1567137600.0
Hex Block Numbers:  0x80d3a5 0x80ecfc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x80d3a6', 'uniqueId': '0x514b473654fc8e8b7857be6403b717c1a2fd0cf66d79717cad7e2f1b0015a167:log:9', 'hash': '0x514b473654fc8e8b7857be6403b717c1a2fd0cf66d79717cad7e2f1b0015a167', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa64b6689d9392e9d8ef575cb44a499e5b7d1bb08', 'value': 917.982, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x31c38f3552aaa30000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T04:00:20.000Z'}}, {'blockNum': '0x80d3c4', 'uniqueId': '0x594b998a453f5d423fadcc645bc424744da6fc9bee367442eb652523d6bacf1b:log:93', 'hash': '0x594b998a453f5d423fadcc645bc424744da6fc9bee367442eb652523d6bacf1b', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 36368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07b383631213ee400000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T04:09:38.000Z'}}, {'blockNum': '0x80d4c8', 'uniqueId': '0x20b68017b08860bb57fe6f1a5c8c97c9f3559424e0b9f5358e53d51ba2dd6c79:log:2', 'hash': '0x20b68017b08860bb57fe6f1a5c8c97c9f3559424e0b9f5358e53d51ba2dd6c79', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x55b85bd29c089c592fcd4f3424d2d0ca46c9a23a', 'value': 2098.024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71bbee903144240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:05:00.000Z'}}, {'blockNum': '0x80d4ff', 'uniqueId': '0x7729d8dd8e249b0b3b8b1ae60d03120c448b54bd0a75580ef75aabc20700eb5f:log:15', 'hash': '0x7729d8dd8e249b0b3b8b1ae60d03120c448b54bd0a75580ef75aabc20700eb5f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8ed2968e68d9fc21e805903d378ccbcadfa608fe', 'value': 2102.79599999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x71fe281ce674421c00', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:16:44.000Z'}}, {'blockNum': '0x80d565', 'uniqueId': '0xadc5201e608d20ebca9e56bef5b43e2309ad91fb826cd0dfcd3861af8acca407:log:14', 'hash': '0xadc5201e608d20ebca9e56bef5b43e2309ad91fb826cd0dfcd3861af8acca407', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd88afb3593ae07e9cb5969f97339e3ecb487946d', 'value': 6687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x016a80c45ec16d1c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T05:40:17.000Z'}}, {'blockNum': '0x80d7cc', 'uniqueId': '0xe17beb762f6c704f3c81673272c1e2b03e040a6ca82d305a24802a2675ac5d47:log:30', 'hash': '0xe17beb762f6c704f3c81673272c1e2b03e040a6ca82d305a24802a2675ac5d47', 'from': '0x4495a4eb51cc2ce89a7b0bd61b4ac2e22a54894a', 'to': '0xea92d72a913e41fe29ab075991d5e41eb53f69ca', 'value': 2790, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x973f0729f24bd80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T07:58:48.000Z'}}, {'blockNum': '0x80d810', 'uniqueId': '0xf0f83a0ba08ac8c991ed36cbd1db2d95a7211c1affed43bea43a5531ef804fbe:log:32', 'hash': '0xf0f83a0ba08ac8c991ed36cbd1db2d95a7211c1affed43bea43a5531ef804fbe', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 5144.4681089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0116e1d6387bfe12e800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:15:02.000Z'}}, {'blockNum': '0x80d813', 'uniqueId': '0x26dc926fc4de0f679922c4a25aaa8d403d869d9d5501d877d90cbf9d0425cfcb:log:90', 'hash': '0x26dc926fc4de0f679922c4a25aaa8d403d869d9d5501d877d90cbf9d0425cfcb', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x11f64d9b7f2c762beb7334df2c07d92894eb5f31', 'value': 5144.4681089, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0116e1d6387bfe12e800', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:16:01.000Z'}}, {'blockNum': '0x80d853', 'uniqueId': '0x5c76c348936c4baa7069bdc06c8c31ff432cd16a74cf119852d99794c91aff15:log:8', 'hash': '0x5c76c348936c4baa7069bdc06c8c31ff432cd16a74cf119852d99794c91aff15', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x00ac1b8d981d577ee2b3d345b2658279a03b0128', 'value': 9940, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021ad935f79f76d00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T08:29:03.000Z'}}, {'blockNum': '0x80d8dc', 'uniqueId': '0x776857ae415c3695605e3749b345cecd650897028cb49a668928d8c9bcc32571:log:8', 'hash': '0x776857ae415c3695605e3749b345cecd650897028cb49a668928d8c9bcc32571', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xf6c1ef77e3f8e514e28da2dc11ced5bb4af41e59', 'value': 1583.316, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x55d4ec693b78620000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T09:00:14.000Z'}}, {'blockNum': '0x80dc77', 'uniqueId': '0xe479bcb17de8402c692bad5f6890cab814dd7c483dcda9171554ba0e0c72e88c:log:4', 'hash': '0xe479bcb17de8402c692bad5f6890cab814dd7c483dcda9171554ba0e0c72e88c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8cfdf2dbd3e5ff1c72741e89394fe4068c860392', 'value': 17448.0544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b1dc65890bbb680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:20:18.000Z'}}, {'blockNum': '0x80dcb1', 'uniqueId': '0xeb192fa1c9a1502ca2df8b05d64dd405b34822b4c92e5771f71d209d3c24b78a:log:34', 'hash': '0xeb192fa1c9a1502ca2df8b05d64dd405b34822b4c92e5771f71d209d3c24b78a', 'from': '0x8cfdf2dbd3e5ff1c72741e89394fe4068c860392', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 17448.0544, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03b1dc65890bbb680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:32:27.000Z'}}, {'blockNum': '0x80dcda', 'uniqueId': '0x02f5b9d5c68fa9c122b135d020344fcb24bfa5131a1c3cab3137296986f26904:log:3', 'hash': '0x02f5b9d5c68fa9c122b135d020344fcb24bfa5131a1c3cab3137296986f26904', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x2db99de600731a23e3639e5d1ee1ec152e54414d', 'value': 105867.927, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x166b1ca0662ee2158000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:41:12.000Z'}}, {'blockNum': '0x80dce6', 'uniqueId': '0xb66afdf3c9bd7850bfec28304c339426907631baac5268991a14af33f3f04df6:log:20', 'hash': '0xb66afdf3c9bd7850bfec28304c339426907631baac5268991a14af33f3f04df6', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da900bafe10e600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:43:16.000Z'}}, {'blockNum': '0x80dd0e', 'uniqueId': '0x1a912752e1f1819d1df5e5b465e1053cb7e8e715a6dcaa4524ae69945b748877:log:15', 'hash': '0x1a912752e1f1819d1df5e5b465e1053cb7e8e715a6dcaa4524ae69945b748877', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84312, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da900bafe10e600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T12:52:04.000Z'}}, {'blockNum': '0x80dd66', 'uniqueId': '0xfa4c221e21a61b063991f914b3f1f6c408fb79e1cdeac64aaaf2b5837a462091:log:35', 'hash': '0xfa4c221e21a61b063991f914b3f1f6c408fb79e1cdeac64aaaf2b5837a462091', 'from': '0xa1d45bae46ed9051bcfb0eb4ebc1eee949d7a264', 'to': '0xedeb12f1b9ce972d3f03d398c4135e52c39f61f4', 'value': 26751, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x05aa2cb39f20aa9c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:13:07.000Z'}}, {'blockNum': '0x80ddc2', 'uniqueId': '0x6f24512a1eaf25f876bc6f2fb1081d163ffcefdcfdfe9f10c1c0b1b80d6e619b:log:33', 'hash': '0x6f24512a1eaf25f876bc6f2fb1081d163ffcefdcfdfe9f10c1c0b1b80d6e619b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xfca551dc2ec3b1caa96f48142c073e17efdf2fab', 'value': 1806, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x61e748e766e3780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:35:56.000Z'}}, {'blockNum': '0x80ddee', 'uniqueId': '0x8f3236d2c3a2184eff561776c3310930fae260f5c0d81367b4477a060baefb10:log:16', 'hash': '0x8f3236d2c3a2184eff561776c3310930fae260f5c0d81367b4477a060baefb10', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x25c5d50a79fec2dc36d0030f1c3ebfadaff1fa3e', 'value': 4962, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010cfd95463280480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T13:46:16.000Z'}}, {'blockNum': '0x80de3d', 'uniqueId': '0x63e785379f1223494c7b03a1a70ec004f430690a47e2fe2f525485fbb97686fb:log:39', 'hash': '0x63e785379f1223494c7b03a1a70ec004f430690a47e2fe2f525485fbb97686fb', 'from': '0x98571ac60f03f64a7cbd05dace6c3e0f6c2a51dc', 'to': '0xedeb12f1b9ce972d3f03d398c4135e52c39f61f4', 'value': 4072.902, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xdccadea5d722070000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:03:02.000Z'}}, {'blockNum': '0x80de41', 'uniqueId': '0xbfbc3eaf9f9296b41cf4e469669b76aab683fcc538886ed60a964d165abf3e7d:log:0', 'hash': '0xbfbc3eaf9f9296b41cf4e469669b76aab683fcc538886ed60a964d165abf3e7d', 'from': '0x24d337fd8f6506978834f6418d3d7ed4d02d9d06', 'to': '0xaed319f7416564fb209d8ac4ba76595006b3292e', 'value': 11057, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x025766b32580d6240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:04:05.000Z'}}, {'blockNum': '0x80ded9', 'uniqueId': '0x0fecde5ce6c154388117d929008f90efb89c3d89eae7d4279d625a82d205d9a6:log:6', 'hash': '0x0fecde5ce6c154388117d929008f90efb89c3d89eae7d4279d625a82d205d9a6', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 88111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12a881c2f3ea1b5c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:34:24.000Z'}}, {'blockNum': '0x80def8', 'uniqueId': '0x77625e18db5c7d576bd51b5178d3c8729a8ebc27efb44501d0e4a7d461bbc8c1:log:51', 'hash': '0x77625e18db5c7d576bd51b5178d3c8729a8ebc27efb44501d0e4a7d461bbc8c1', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 88111, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x12a881c2f3ea1b5c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T14:42:11.000Z'}}, {'blockNum': '0x80e022', 'uniqueId': '0xb97b96e2816fc0b4fcea4b7ce3f8454e472a5a52cef0ec9fe56e7f98d3e2da20:log:7', 'hash': '0xb97b96e2816fc0b4fcea4b7ce3f8454e472a5a52cef0ec9fe56e7f98d3e2da20', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc613e9c7ba85f38ee8618c4452c598dc8c02103e', 'value': 50352.3282, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aa99aed27d4e4088000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T15:47:09.000Z'}}, {'blockNum': '0x80e062', 'uniqueId': '0x7ef02ba61cf48daebbac9255632914585fbe2120c7fee97e634c6d3a1fcb7713:log:2', 'hash': '0x7ef02ba61cf48daebbac9255632914585fbe2120c7fee97e634c6d3a1fcb7713', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x150f5ba17f6c4bd40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:02:41.000Z'}}, {'blockNum': '0x80e096', 'uniqueId': '0xeb4232eef99e912d6926e102c33acc489ae27786afb04705d2e97c4f4422290f:log:35', 'hash': '0xeb4232eef99e912d6926e102c33acc489ae27786afb04705d2e97c4f4422290f', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x150f5ba17f6c4bd40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:12:26.000Z'}}, {'blockNum': '0x80e10e', 'uniqueId': '0xa3b276172a491b44e0ea8f9d538b20d74b427884b595c56a492ff3a2b5606193:log:11', 'hash': '0xa3b276172a491b44e0ea8f9d538b20d74b427884b595c56a492ff3a2b5606193', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x6cd7b903e5f90d121a232d1acc10daa62e8e3fa9', 'value': 24901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0545e2cb50d901f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T16:37:09.000Z'}}, {'blockNum': '0x80e196', 'uniqueId': '0x4d530f79831385a413b2f190c2e79524ece6195af7fa5d9ed552c45e483fb667:log:10', 'hash': '0x4d530f79831385a413b2f190c2e79524ece6195af7fa5d9ed552c45e483fb667', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x07a0628bc69881689a86b694d139a631c231a882', 'value': 4381.8, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xed89b0cc3a86a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:06:40.000Z'}}, {'blockNum': '0x80e1a9', 'uniqueId': '0xb29179927a834c772f95e6b550d1df0d306bc56fc482f56acf10e5fcec13a4fc:log:72', 'hash': '0xb29179927a834c772f95e6b550d1df0d306bc56fc482f56acf10e5fcec13a4fc', 'from': '0xadb2b42f6bd96f5c65920b9ac88619dce4166f94', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14cbcfe84103931c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:09:51.000Z'}}, {'blockNum': '0x80e1ee', 'uniqueId': '0x13dd23bc805e11bc4e79b5f7f191c773131237d35ff786c9cd0b4fa9e36d2703:log:19', 'hash': '0x13dd23bc805e11bc4e79b5f7f191c773131237d35ff786c9cd0b4fa9e36d2703', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14cbcfe84103931c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T17:22:02.000Z'}}, {'blockNum': '0x80e2b1', 'uniqueId': '0x4be77895e0f49502357e4019c0c71ebee3c63d4f12da2f78c3f15cfab377a06a:log:119', 'hash': '0x4be77895e0f49502357e4019c0c71ebee3c63d4f12da2f78c3f15cfab377a06a', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'value': 2412.43881099649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x82c7505cf3e38017c1', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:01:44.000Z'}}, {'blockNum': '0x80e2b4', 'uniqueId': '0x16a209cdf37d78e95c9de6464bfdb8b835ec1937f500e1147518efd2a72b313d:log:12', 'hash': '0x16a209cdf37d78e95c9de6464bfdb8b835ec1937f500e1147518efd2a72b313d', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 36645.364, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07c28c95f28a57b20000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:27.000Z'}}, {'blockNum': '0x80e2b4', 'uniqueId': '0xc0e8bb88c9ddfbf4378b19ac771855a86315a37ff9c969bec8f0fb179004d261:log:62', 'hash': '0xc0e8bb88c9ddfbf4378b19ac771855a86315a37ff9c969bec8f0fb179004d261', 'from': '0x9096410692868ea33f77ff1ca3ae3d9948faf82c', 'to': '0xca6854361b6083134cd347e1d4b5e7e607fbc4a2', 'value': 2412.43881099649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x82c7505cf3e38017c1', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:27.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0xf2dcc89826386190d23336ef8a31f0db7c6772cafcc477586d3a0e7875868bb9:log:7', 'hash': '0xf2dcc89826386190d23336ef8a31f0db7c6772cafcc477586d3a0e7875868bb9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c329d2cc427a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0x8d4043ea16f6d249978f306eb1cdc7863a6efb6750261bdece1ec3cf7dc0d5eb:log:8', 'hash': '0x8d4043ea16f6d249978f306eb1cdc7863a6efb6750261bdece1ec3cf7dc0d5eb', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 50336, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0aa8b853bc712e800000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b5', 'uniqueId': '0x740f0f8aeb93c8be5ac124a4a32e1845da802a6ce09bc6e59f20461f16d8bf84:log:9', 'hash': '0x740f0f8aeb93c8be5ac124a4a32e1845da802a6ce09bc6e59f20461f16d8bf84', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 59614.471, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c9fb4fa937ef1ed8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:02:55.000Z'}}, {'blockNum': '0x80e2b8', 'uniqueId': '0x5c2a6d3540b6a537d36e455d8ab12e05557862b76ec56c83f8e84c1c9dda0458:log:18', 'hash': '0x5c2a6d3540b6a537d36e455d8ab12e05557862b76ec56c83f8e84c1c9dda0458', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 147616.976, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1f425511dbbdd3480000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:03:30.000Z'}}, {'blockNum': '0x80e2b8', 'uniqueId': '0xa223bb9aea1890728eb405e9fcebdf9ad89d59af63380105c70713dd2ebdbc2a:log:20', 'hash': '0xa223bb9aea1890728eb405e9fcebdf9ad89d59af63380105c70713dd2ebdbc2a', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 82701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11833aedf352ac140000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:03:30.000Z'}}, {'blockNum': '0x80e2d2', 'uniqueId': '0x83bca3ad9f285699d68cdcd04a8fa545fe4fb77bb4f1474804af81e13164abd6:log:3', 'hash': '0x83bca3ad9f285699d68cdcd04a8fa545fe4fb77bb4f1474804af81e13164abd6', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb3a3fa926a2b3b8aca4d698b0a1eaa350ffe0276', 'value': 8071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01b587a01a0261bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:08:51.000Z'}}, {'blockNum': '0x80e2d2', 'uniqueId': '0x3169ad437e5d28b879d465a09cdc1ff924cea3256ccc82e90fbed1d9ecc1c13d:log:20', 'hash': '0x3169ad437e5d28b879d465a09cdc1ff924cea3256ccc82e90fbed1d9ecc1c13d', 'from': '0xe81bb573d3ac91bd7e7e15eee28a5a77c07481ac', 'to': '0x7234481e013dcab884fad86ffab011939010d78d', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:08:51.000Z'}}, {'blockNum': '0x80e2d3', 'uniqueId': '0x3cff55bc240c5294eadfa3c60b23ca1bc7d689f441d8c959704b7c9dacd69691:log:2', 'hash': '0x3cff55bc240c5294eadfa3c60b23ca1bc7d689f441d8c959704b7c9dacd69691', 'from': '0x8116ce6d7a783fb86c2659e992e748765760e3fe', 'to': '0xf9f508544165e2cc8993ec4defe62e2d461f281a', 'value': 7529.205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x019828b5980feef88000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:09:15.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0xe1405cca9a96031ed508c1f608250b53251c97ea86b33451fede5e1c0c9e81ec:log:20', 'hash': '0xe1405cca9a96031ed508c1f608250b53251c97ea86b33451fede5e1c0c9e81ec', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 184262.34, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2704e1a7ce482afa0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x475b85e87c40041fce4075142a017d4c376990f910f44cc6f1b8779085deb3b7:log:21', 'hash': '0x475b85e87c40041fce4075142a017d4c376990f910f44cc6f1b8779085deb3b7', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 99985, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c329d2cc427a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x109f37ea4491843b0278748a8367a6e753e830b80d388d42898bc92a42c7b7a9:log:22', 'hash': '0x109f37ea4491843b0278748a8367a6e753e830b80d388d42898bc92a42c7b7a9', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 82701, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11833aedf352ac140000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2dc', 'uniqueId': '0x208a7608631e1077c90977b4310e4d4fc16f3f1985cd3a2b30f0473adcb861a9:log:33', 'hash': '0x208a7608631e1077c90977b4310e4d4fc16f3f1985cd3a2b30f0473adcb861a9', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94438, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13ff7e86660823d80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:12:14.000Z'}}, {'blockNum': '0x80e2e5', 'uniqueId': '0xdf9197a69355830d86a01ed061d06ed425919c83dc3de0884a6e4fc0a0b1c6f1:log:5', 'hash': '0xdf9197a69355830d86a01ed061d06ed425919c83dc3de0884a6e4fc0a0b1c6f1', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 59162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c872daeaa4a3c280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:13:40.000Z'}}, {'blockNum': '0x80e2ec', 'uniqueId': '0x0dee99a869c8938093861ceafd166b3047df54ca3f1bda0416faa76adf5ad696:log:14', 'hash': '0x0dee99a869c8938093861ceafd166b3047df54ca3f1bda0416faa76adf5ad696', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 92077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x137f811167255a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:15:37.000Z'}}, {'blockNum': '0x80e2fb', 'uniqueId': '0x17968c69d6fac49c5ab97fb47f9efff4901ced956e8d770682f4e0ad85acaf94:log:14', 'hash': '0x17968c69d6fac49c5ab97fb47f9efff4901ced956e8d770682f4e0ad85acaf94', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'value': 44482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x096b5fc1dc436dc80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:19:09.000Z'}}, {'blockNum': '0x80e310', 'uniqueId': '0x9a8d0a0466ab629064bcd69b617c99b93090e3d55a35ccb752ad06eebb04ad5b:log:5', 'hash': '0x9a8d0a0466ab629064bcd69b617c99b93090e3d55a35ccb752ad06eebb04ad5b', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 92077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x137f811167255a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:21:47.000Z'}}, {'blockNum': '0x80e311', 'uniqueId': '0x901747e6005d8b22b7229c57c381bc6e70cea36df71efb248cba58da5d09a7a5:log:2', 'hash': '0x901747e6005d8b22b7229c57c381bc6e70cea36df71efb248cba58da5d09a7a5', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 59162, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c872daeaa4a3c280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:22:06.000Z'}}, {'blockNum': '0x80e318', 'uniqueId': '0x67c5e6761f1d6af4d68f4ac926337d9a529e7ef100212361906e0ba7acb60766:log:60', 'hash': '0x67c5e6761f1d6af4d68f4ac926337d9a529e7ef100212361906e0ba7acb60766', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 79000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10ba993ca00fb3600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:23:58.000Z'}}, {'blockNum': '0x80e326', 'uniqueId': '0x14f0158ba00b7684228c9974f2810a6de54331d9964f5f047f674f5a2aabed70:log:4', 'hash': '0x14f0158ba00b7684228c9974f2810a6de54331d9964f5f047f674f5a2aabed70', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9bddad1f150ff5d5911b4afd0e67b81b5a2e720d', 'value': 4901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0109af09bd639d740000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:26:53.000Z'}}, {'blockNum': '0x80e33f', 'uniqueId': '0xaeb8fa3083282f95edfbfe5647e101531dd5edf725b261895f89e9c0e17c4c9e:log:14', 'hash': '0xaeb8fa3083282f95edfbfe5647e101531dd5edf725b261895f89e9c0e17c4c9e', 'from': '0xcf0697240463c242f2fa3e4101fab6f7d29b44fc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 44482, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x096b5fc1dc436dc80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:32:09.000Z'}}, {'blockNum': '0x80e351', 'uniqueId': '0xd795ea8935caace057dd4d3920cd67d487cd30f3f9de90fb6576c539bfd25d56:log:48', 'hash': '0xd795ea8935caace057dd4d3920cd67d487cd30f3f9de90fb6576c539bfd25d56', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 79000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x10ba993ca00fb3600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:35:41.000Z'}}, {'blockNum': '0x80e360', 'uniqueId': '0x96332c91e29eb62832122746e24814eb9edda1bebf045a4bb317b4f03cf9da37:log:43', 'hash': '0x96332c91e29eb62832122746e24814eb9edda1bebf045a4bb317b4f03cf9da37', 'from': '0xe81bb573d3ac91bd7e7e15eee28a5a77c07481ac', 'to': '0x7234481e013dcab884fad86ffab011939010d78d', 'value': 159681.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x21d054bdeda6b9c38000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:39:12.000Z'}}, {'blockNum': '0x80e39d', 'uniqueId': '0x6a463c7ff6ebe6a2400dd9d9b00008e5a05ab82c4bacbfe2a3f1f806b449ea99:log:10', 'hash': '0x6a463c7ff6ebe6a2400dd9d9b00008e5a05ab82c4bacbfe2a3f1f806b449ea99', 'from': '0x7234481e013dcab884fad86ffab011939010d78d', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 160681.123, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x22068a879b6c98638000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T18:51:49.000Z'}}, {'blockNum': '0x80e402', 'uniqueId': '0xde1d99b3b7a7b5777d3379f2d52d9359f2e94091b5e59ca44366602a0952c106:log:1', 'hash': '0xde1d99b3b7a7b5777d3379f2d52d9359f2e94091b5e59ca44366602a0952c106', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x84321c7b6dd9e35e1c714571fe398edd98e9344f', 'value': 733.167, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x27bebc6e03c6d18000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:15:02.000Z'}}, {'blockNum': '0x80e439', 'uniqueId': '0xfb1f826e1f74997f7e4268030329c436edd19d9aee76b095c8299a4b317626d6:log:95', 'hash': '0xfb1f826e1f74997f7e4268030329c436edd19d9aee76b095c8299a4b317626d6', 'from': '0x2a0c0dbecc7e4d658f48e01e3fa353f44050c208', 'to': '0xf18e46d5dfab23959e70242dd7ec258f94fb3ff8', 'value': 19865.865834554697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0434ee454aa8c9de4878', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:26:34.000Z'}}, {'blockNum': '0x80e446', 'uniqueId': '0x715bf32582959cdc3cbdc5aab6190c330754a69e840232931e12708c72ba34dc:log:0', 'hash': '0x715bf32582959cdc3cbdc5aab6190c330754a69e840232931e12708c72ba34dc', 'from': '0xf18e46d5dfab23959e70242dd7ec258f94fb3ff8', 'to': '0x4e2f6edad3e8b29aed837fb0f7d3f4504ed8389b', 'value': 19865.865834554697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0434ee454aa8c9de4878', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:29:33.000Z'}}, {'blockNum': '0x80e46e', 'uniqueId': '0x0254ecfff645099ac53f5cdc655a80106dcff927fe04ce57b8ca35282c58cdb9:log:0', 'hash': '0x0254ecfff645099ac53f5cdc655a80106dcff927fe04ce57b8ca35282c58cdb9', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5d8512fe175509b85fc68930014879975f2ad28e', 'value': 1524.375, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x52a2f3ea03de158000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:40:27.000Z'}}, {'blockNum': '0x80e4b0', 'uniqueId': '0x19ce5526d70531a53773500c534fada3a835494c1e52d3d97c26cffd3a998591:log:29', 'hash': '0x19ce5526d70531a53773500c534fada3a835494c1e52d3d97c26cffd3a998591', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xaef3bb2cdc8aab67cac498e98b9666e463f4ca02', 'value': 33768.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07269c84bb1faa720000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T19:58:02.000Z'}}, {'blockNum': '0x80e4e7', 'uniqueId': '0x230c6a47d886c421d647303f5cd992c46e1f583495960c86461f16be7cea4750:log:30', 'hash': '0x230c6a47d886c421d647303f5cd992c46e1f583495960c86461f16be7cea4750', 'from': '0xaef3bb2cdc8aab67cac498e98b9666e463f4ca02', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 33768.82, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x07269c84bb1faa720000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:12:18.000Z'}}, {'blockNum': '0x80e54b', 'uniqueId': '0xa042af5d1d045ac76bda23dc991f1687e05264a79719ed5c554f211676782997:log:7', 'hash': '0xa042af5d1d045ac76bda23dc991f1687e05264a79719ed5c554f211676782997', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x26f78afdc096e4b2c57d61e9b52bd08ba4581987', 'value': 501.755, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1b333fda168c1f8000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:36:48.000Z'}}, {'blockNum': '0x80e565', 'uniqueId': '0xfe48ac91bd5f1fddad8baa65c5a0a60447a46d41fa04f75f03c2727868ae6f46:log:1', 'hash': '0xfe48ac91bd5f1fddad8baa65c5a0a60447a46d41fa04f75f03c2727868ae6f46', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 57180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbbe8276043f00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:43:02.000Z'}}, {'blockNum': '0x80e577', 'uniqueId': '0xb58c4c3fb81a4e46266d256d00069d036017d9e2c3275d65ff5582d7545fda4d:log:2', 'hash': '0xb58c4c3fb81a4e46266d256d00069d036017d9e2c3275d65ff5582d7545fda4d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8fbb649462c0c88e0b0895b12b10d21faf358e6f', 'value': 9901, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0218bbfa2240f6940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:46:32.000Z'}}, {'blockNum': '0x80e58f', 'uniqueId': '0x2f64c591fddb5f143aa2d413adea77f079096148b6201a368fcc009a4eb050c6:log:1', 'hash': '0x2f64c591fddb5f143aa2d413adea77f079096148b6201a368fcc009a4eb050c6', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 57180, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c1bbbe8276043f00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:52:02.000Z'}}, {'blockNum': '0x80e596', 'uniqueId': '0x6ea608f5d34d07a06efe21fad6d15d88e7d0be1d440cf1b4cafeb0866129ba11:log:0', 'hash': '0x6ea608f5d34d07a06efe21fad6d15d88e7d0be1d440cf1b4cafeb0866129ba11', 'from': '0xa2dd64ab784c0d24b93003b345e5fad633d4bf56', 'to': '0x99f849b1aa652b5a80e78e8ca63ecb8338ad7031', 'value': 874.103, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2f629daf4dc7458000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:54:28.000Z'}}, {'blockNum': '0x80e5a8', 'uniqueId': '0xba11058506029dfae9ae15c0a634cb86ee234a66789a6518534311476a02ea09:log:0', 'hash': '0xba11058506029dfae9ae15c0a634cb86ee234a66789a6518534311476a02ea09', 'from': '0xac42907ebf4ea6d472deea118474eca9b877dedc', 'to': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'value': 100, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x056bc75e2d63100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T20:58:59.000Z'}}, {'blockNum': '0x80e5b3', 'uniqueId': '0xec7f9a6882c488c9313bccd3e5fec37768000dc4b5dcf47d3ac3dd8b0c9013e1:log:1', 'hash': '0xec7f9a6882c488c9313bccd3e5fec37768000dc4b5dcf47d3ac3dd8b0c9013e1', 'from': '0xac42907ebf4ea6d472deea118474eca9b877dedc', 'to': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'value': 4903, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0109cacb2acaec3c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:02:00.000Z'}}, {'blockNum': '0x80e5db', 'uniqueId': '0xa1784f9e94d043f1d559d5a34379054c548bbcf4abf1b7a0b718d08663e9d95f:log:56', 'hash': '0xa1784f9e94d043f1d559d5a34379054c548bbcf4abf1b7a0b718d08663e9d95f', 'from': '0xc495ea0e928bee4028f472a77c1e35345f57bfe2', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5003, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f369288f84f4c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:11:47.000Z'}}, {'blockNum': '0x80e611', 'uniqueId': '0x9c9a674f7f2fee4666ea64c65ffe1baefaa14646d01b749c80660c17657f43f1:log:6', 'hash': '0x9c9a674f7f2fee4666ea64c65ffe1baefaa14646d01b749c80660c17657f43f1', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11e870c2638872600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:25:45.000Z'}}, {'blockNum': '0x80e635', 'uniqueId': '0x391a41489bbf80940ffd9f8434243391ef81e10ed3671084e5f35c51b9dbab67:log:4', 'hash': '0x391a41489bbf80940ffd9f8434243391ef81e10ed3671084e5f35c51b9dbab67', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 84568, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11e870c2638872600000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:32:08.000Z'}}, {'blockNum': '0x80e662', 'uniqueId': '0x02979fb9b0592c150b4d0af817f9a1a6be1b01864c2eac8f7e73c379fcc89881:log:0', 'hash': '0x02979fb9b0592c150b4d0af817f9a1a6be1b01864c2eac8f7e73c379fcc89881', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x77b6bedb35c3712878f516da8e410c58881f5618', 'value': 4051, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xdb9aeb1ce1d36c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:40:33.000Z'}}, {'blockNum': '0x80e67a', 'uniqueId': '0x7f14e48ce28f89e613c024384c2aea1ae9264d32a323144b3b574cceae57c991:log:0', 'hash': '0x7f14e48ce28f89e613c024384c2aea1ae9264d32a323144b3b574cceae57c991', 'from': '0xe567f9e9d6d0f9c9bdd1f14b838d8a6a05c0c80c', 'to': '0x046744a209929cddedab376c4a4167d506199db2', 'value': 1733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x5df234ce2c27f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:46:14.000Z'}}, {'blockNum': '0x80e687', 'uniqueId': '0x3bf9f7fe30e3fa38bf43521660589bab0d03b310f56bf86ae24e63c96dd01be4:log:33', 'hash': '0x3bf9f7fe30e3fa38bf43521660589bab0d03b310f56bf86ae24e63c96dd01be4', 'from': '0xbe4b4d98914957ea3226a714f0fe17958f4f1268', 'to': '0x40bbc730b54068d27846fa085f54b1ba332bec7a', 'value': 6965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017992cac5d933b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T21:48:33.000Z'}}, {'blockNum': '0x80e6d6', 'uniqueId': '0x834958c1c8b5f0e6ab9274dde030367b0e0892289a89eecb6a21bda138141441:log:15', 'hash': '0x834958c1c8b5f0e6ab9274dde030367b0e0892289a89eecb6a21bda138141441', 'from': '0x40bbc730b54068d27846fa085f54b1ba332bec7a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x017992cac5d933b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:01:52.000Z'}}, {'blockNum': '0x80e6f5', 'uniqueId': '0x538e3c43f8085d1b9bc92bba9c8176b077dce167ad9c20ba65e170ab1f404a7d:log:100', 'hash': '0x538e3c43f8085d1b9bc92bba9c8176b077dce167ad9c20ba65e170ab1f404a7d', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x22b3df1c89088d6b5936f5d30c60d4c54f8b31b7', 'value': 58349.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c5b21facd1977460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:08:18.000Z'}}, {'blockNum': '0x80e726', 'uniqueId': '0xf81d62dd537812ecc26d901070ca048bc8946ad7767f2f5a921064aea2862fdd:log:1', 'hash': '0xf81d62dd537812ecc26d901070ca048bc8946ad7767f2f5a921064aea2862fdd', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x14acd610d1d2f15c06b123e61cb4e9ce596e572f', 'value': 401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x15bcfe2f6933a40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:21:05.000Z'}}, {'blockNum': '0x80e731', 'uniqueId': '0x3b665c488bba45dd4bffa7a4d66f84d25b9bdc5b753893ea2a36b0599c838a9c:log:4', 'hash': '0x3b665c488bba45dd4bffa7a4d66f84d25b9bdc5b753893ea2a36b0599c838a9c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xfa190caf921888a53781364748f4f37a67181e32', 'value': 118598.184, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x191d386e93e410040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:23:00.000Z'}}, {'blockNum': '0x80e737', 'uniqueId': '0xa677c5b4d0181e6bf576398ac77e7350d24c2a8beb561dec7b8b439c51b9497a:log:48', 'hash': '0xa677c5b4d0181e6bf576398ac77e7350d24c2a8beb561dec7b8b439c51b9497a', 'from': '0x22b3df1c89088d6b5936f5d30c60d4c54f8b31b7', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 58349.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c5b21facd1977460000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:23:45.000Z'}}, {'blockNum': '0x80e74a', 'uniqueId': '0x18a5c93c44c7816b58b5738015e5d840f456c6cf1928ad1ec0337d3f590b950b:log:0', 'hash': '0x18a5c93c44c7816b58b5738015e5d840f456c6cf1928ad1ec0337d3f590b950b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x14acd610d1d2f15c06b123e61cb4e9ce596e572f', 'value': 4401, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xee9424e680ae240000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:27:39.000Z'}}, {'blockNum': '0x80e74f', 'uniqueId': '0x7ce5889ec98ec936b0765c860098b2e68e70841a8a26526249741d34fa7449b5:log:0', 'hash': '0x7ce5889ec98ec936b0765c860098b2e68e70841a8a26526249741d34fa7449b5', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 2347.54136744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7f42ae53e123f5a000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:28:56.000Z'}}, {'blockNum': '0x80e750', 'uniqueId': '0x76a1bb72aec439e3798bd932a6133cfc69755488f4791fac2d0f07d4841874ee:log:80', 'hash': '0x76a1bb72aec439e3798bd932a6133cfc69755488f4791fac2d0f07d4841874ee', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x242f62a2dbfaeb1b350b4531fb02d363bb976638', 'value': 2347.54136744, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x7f42ae53e123f5a000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:28:59.000Z'}}, {'blockNum': '0x80e759', 'uniqueId': '0x02d75847b9f6f0f467bb38b06245ead16f547f88837dbe580b12ab42c5ac73e2:log:2', 'hash': '0x02d75847b9f6f0f467bb38b06245ead16f547f88837dbe580b12ab42c5ac73e2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x6fbbb3878ab27bfa0c174832b9d89ecc0bc93f3a', 'value': 19881, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0435c04ca5f295040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:30:50.000Z'}}, {'blockNum': '0x80e779', 'uniqueId': '0x68c848dd42382cbc8f3ff727d1cdac7da69042b3fdd6ec093c87b775452cb343:log:5', 'hash': '0x68c848dd42382cbc8f3ff727d1cdac7da69042b3fdd6ec093c87b775452cb343', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x4ef59167a212404fe6bb64930437e1d6432f6554', 'value': 212341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2cf70757452a54b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:39:45.000Z'}}, {'blockNum': '0x80e7b4', 'uniqueId': '0xe487208cb2dee95f647acb58aa385eaa18960e4cff484fe356178ad210f8d5d2:log:36', 'hash': '0xe487208cb2dee95f647acb58aa385eaa18960e4cff484fe356178ad210f8d5d2', 'from': '0x4ef59167a212404fe6bb64930437e1d6432f6554', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 212341, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2cf70757452a54b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T22:53:00.000Z'}}, {'blockNum': '0x80e7f7', 'uniqueId': '0xe9dc776fff1f0cbcc101ee55fb0fc482a5d66b05e9854b8fcd2c905989e2a761:log:105', 'hash': '0xe9dc776fff1f0cbcc101ee55fb0fc482a5d66b05e9854b8fcd2c905989e2a761', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x98b08fd35f2324e7b284770d33ee9fcde21cb00a', 'value': 108600.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16ff443ef5c587ba0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:09:10.000Z'}}, {'blockNum': '0x80e815', 'uniqueId': '0x1b6c0cb48e8aecbe8ae9525995f7a59809f028970f40d471d07341f080bb4e9d:log:28', 'hash': '0x1b6c0cb48e8aecbe8ae9525995f7a59809f028970f40d471d07341f080bb4e9d', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 51990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b026230292cae980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:17:40.000Z'}}, {'blockNum': '0x80e82b', 'uniqueId': '0xfb0481df5de8fe804e2ec64a522d08891185494fd79142c6f888cf4cfb5e9588:log:29', 'hash': '0xfb0481df5de8fe804e2ec64a522d08891185494fd79142c6f888cf4cfb5e9588', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 51990, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b026230292cae980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:22:25.000Z'}}, {'blockNum': '0x80e831', 'uniqueId': '0x5e08cc3034a8ee4be93c20e48947630e6cb70531187e46d86a42eef2f576395e:log:91', 'hash': '0x5e08cc3034a8ee4be93c20e48947630e6cb70531187e46d86a42eef2f576395e', 'from': '0x98b08fd35f2324e7b284770d33ee9fcde21cb00a', 'to': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'value': 108600.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16ff443ef5c587ba0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-29T23:23:39.000Z'}}, {'blockNum': '0x80e8fc', 'uniqueId': '0x8ef28e6e4dcdc4f813cf78daaa22ed5526b898cce62ed9477898705f8fb2424f:log:0', 'hash': '0x8ef28e6e4dcdc4f813cf78daaa22ed5526b898cce62ed9477898705f8fb2424f', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0e4335f6edc4c4633c384a29d6ffd2d917fa5d1b', 'value': 7212, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0186f69b0d2fb5300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:10:48.000Z'}}, {'blockNum': '0x80e91d', 'uniqueId': '0x01a36e4f0b725fa423acafef30b1a8f3e45e66a54aec09beb79849f3d1c79069:log:2', 'hash': '0x01a36e4f0b725fa423acafef30b1a8f3e45e66a54aec09beb79849f3d1c79069', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 55530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bc2498e957361680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:18:53.000Z'}}, {'blockNum': '0x80e961', 'uniqueId': '0xceabb5ab8fd4001f998ade0e112d52bf71db12042b3c14983942d91cd0388937:log:8', 'hash': '0xceabb5ab8fd4001f998ade0e112d52bf71db12042b3c14983942d91cd0388937', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55530, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bc2498e957361680000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:32:02.000Z'}}, {'blockNum': '0x80e965', 'uniqueId': '0xf0bac80df4a24a6df2e0b8d67c853a14c6947db46cb41070f917ad9485dea60f:log:119', 'hash': '0xf0bac80df4a24a6df2e0b8d67c853a14c6947db46cb41070f917ad9485dea60f', 'from': '0x3fb83b3ec48a0a0a21a793960892422ca39e4cc9', 'to': '0x02bd432d0c1516d846822355d03de6e81e83f8b7', 'value': 56961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c0fdcabdbb011640000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:33:00.000Z'}}, {'blockNum': '0x80e980', 'uniqueId': '0x631ae09ca228c86fd123725628714e2c9fbae043d25d2d98bb54c26cfaa8e117:log:3', 'hash': '0x631ae09ca228c86fd123725628714e2c9fbae043d25d2d98bb54c26cfaa8e117', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x18dc9b4077b973421998b173673bfd5defb9e62b', 'value': 4149, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xe0eaf10da7e7b40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:41:18.000Z'}}, {'blockNum': '0x80e988', 'uniqueId': '0xf6a5f4fa2c6bf37731d4f06a2cfe72935418a6c57fee29d9e93d3ee16722fc11:log:4', 'hash': '0xf6a5f4fa2c6bf37731d4f06a2cfe72935418a6c57fee29d9e93d3ee16722fc11', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x3ec82921c72584c440bf459d6754f764828d4e2b', 'value': 102588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x15b94e7ee17b2d700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:43:05.000Z'}}, {'blockNum': '0x80e9b7', 'uniqueId': '0x227860af4e7e3447f59b0c713f61f0ebd311d9211374de87820a27a4b7baa1a9:log:8', 'hash': '0x227860af4e7e3447f59b0c713f61f0ebd311d9211374de87820a27a4b7baa1a9', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14d8c4b2d2bcd9780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:54:09.000Z'}}, {'blockNum': '0x80e9ba', 'uniqueId': '0x5783cace9ffded909a50ca08ce71c3657e4501a382fa21df174e8bb6f3b936e5:log:68', 'hash': '0x5783cace9ffded909a50ca08ce71c3657e4501a382fa21df174e8bb6f3b936e5', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 55687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bcacc5ea1a109bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T00:54:57.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0xf69e91328a94832af12b2fc7abe9e458d90293a814ed453d15137c2c4b72d932:log:12', 'hash': '0xf69e91328a94832af12b2fc7abe9e458d90293a814ed453d15137c2c4b72d932', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 55687, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0bcacc5ea1a109bc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0xfc2524bf12d05767c3c8b8b7332fe517f6b9254ffe361e24c41b41fbb30a52fd:log:14', 'hash': '0xfc2524bf12d05767c3c8b8b7332fe517f6b9254ffe361e24c41b41fbb30a52fd', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98446, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14d8c4b2d2bcd9780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9da', 'uniqueId': '0x406966530263e63cc85cce999f6308fca02e3fdc9dc1668012b9b569b30dad44:log:68', 'hash': '0x406966530263e63cc85cce999f6308fca02e3fdc9dc1668012b9b569b30dad44', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 20246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x044989b124183e980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:02:06.000Z'}}, {'blockNum': '0x80e9e9', 'uniqueId': '0xa8bd4bf4d3c0696f33290178b727f0da5422bfed8c90d97a50b5805a3933ec0b:log:17', 'hash': '0xa8bd4bf4d3c0696f33290178b727f0da5422bfed8c90d97a50b5805a3933ec0b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x519cb0540e1c4e8a0c1ae9f981e0934e3bba89c1', 'value': 7778.126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x01a5a72ea2b8e5fb0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:04:25.000Z'}}, {'blockNum': '0x80e9fe', 'uniqueId': '0x9a98c96e7e7e8cf6681bd2a84e9cba28666e6af1d7dc2769a2733cac0797e6ca:log:40', 'hash': '0x9a98c96e7e7e8cf6681bd2a84e9cba28666e6af1d7dc2769a2733cac0797e6ca', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b5910c5554f38340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:10:22.000Z'}}, {'blockNum': '0x80e9ff', 'uniqueId': '0x5ee5dfa5f0781c7bc4d840460ef5f8ccfd0c8068b179a9b2620f8cd4d60dd185:log:31', 'hash': '0x5ee5dfa5f0781c7bc4d840460ef5f8ccfd0c8068b179a9b2620f8cd4d60dd185', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 20246, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x044989b124183e980000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:11:03.000Z'}}, {'blockNum': '0x80ea33', 'uniqueId': '0x39b1638f93dde69d02efb202dac6a87aea057061ffeb0649b9ff1430ba3c240d:log:32', 'hash': '0x39b1638f93dde69d02efb202dac6a87aea057061ffeb0649b9ff1430ba3c240d', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14eb4ee6e6be79100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:21:59.000Z'}}, {'blockNum': '0x80ea34', 'uniqueId': '0x36eec5fa3d8db7b5acb888a182d9198aae992041e2c74649b5f5129b9954905a:log:17', 'hash': '0x36eec5fa3d8db7b5acb888a182d9198aae992041e2c74649b5f5129b9954905a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53589, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b5910c5554f38340000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:22:17.000Z'}}, {'blockNum': '0x80ea6b', 'uniqueId': '0x54ebf58af0108346a242e5948075a12222d507ba929e2e565ea44a557aefcd56:log:9', 'hash': '0x54ebf58af0108346a242e5948075a12222d507ba929e2e565ea44a557aefcd56', 'from': '0x6748f50f686bfbca6fe8ad62b22228b87f31ff2b', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b63e85411a9fe540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:30:21.000Z'}}, {'blockNum': '0x80ea7a', 'uniqueId': '0x86e392464f6a882e5d7401634181b39ca36973b42121c7b80eefdc588f2a8a5b:log:11', 'hash': '0x86e392464f6a882e5d7401634181b39ca36973b42121c7b80eefdc588f2a8a5b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xd0aed7b3544dfb4624f64963fee9dd53911b620c', 'value': 16812, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x038f615e5e34db300000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:32:17.000Z'}}, {'blockNum': '0x80ea7a', 'uniqueId': '0x91a768e38f118cda5c40987bc3a9fd9e504f919f9b6300e2a2f082fb66b20352:log:36', 'hash': '0x91a768e38f118cda5c40987bc3a9fd9e504f919f9b6300e2a2f082fb66b20352', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 98788, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14eb4ee6e6be79100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:32:17.000Z'}}, {'blockNum': '0x80ea8b', 'uniqueId': '0x06158cac5dfc81bf5164d53185a10900ed9aa02f2a5387dd274489722e0b9301:log:43', 'hash': '0x06158cac5dfc81bf5164d53185a10900ed9aa02f2a5387dd274489722e0b9301', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x4bb1b4cd34c9345c47289b59078802233217c5e6', 'value': 150063.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1fc6f522159b978c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:36:19.000Z'}}, {'blockNum': '0x80eaa9', 'uniqueId': '0xf7542dcfdb5db593ffd53da5d0894969caeb8b7a8cca2428244030b724db959a:log:40', 'hash': '0xf7542dcfdb5db593ffd53da5d0894969caeb8b7a8cca2428244030b724db959a', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 84305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x11da2ee6b0f77aa40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:42:25.000Z'}}, {'blockNum': '0x80eaa9', 'uniqueId': '0xbd16bfe5b77d5e69fec273859bb4e9124530fbdb3357a24e1e8a83f02870637a:log:63', 'hash': '0xbd16bfe5b77d5e69fec273859bb4e9124530fbdb3357a24e1e8a83f02870637a', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53789, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b63e85411a9fe540000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:42:25.000Z'}}, {'blockNum': '0x80eab0', 'uniqueId': '0xe19437ad30aef6bab93264c6472da5a2081fa3625ce26050282af3cd463b9e06:log:12', 'hash': '0xe19437ad30aef6bab93264c6472da5a2081fa3625ce26050282af3cd463b9e06', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x54b6e9b833e62c22b290a97c6e561f42f6bdb20d', 'value': 72176.9521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0f48b86d051184664000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:43:27.000Z'}}, {'blockNum': '0x80eab6', 'uniqueId': '0x9be6a86d67ec266ccb0b865dc584f0b1eb2559782d860f16e591e77619095169:log:119', 'hash': '0x9be6a86d67ec266ccb0b865dc584f0b1eb2559782d860f16e591e77619095169', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0xce081e75e5026d012d744921fbdf419badfc1514', 'value': 16700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03894f0e6f9b9f700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:45:03.000Z'}}, {'blockNum': '0x80eac1', 'uniqueId': '0x9a11aa8c4d50f51400a120b38f8c8ca060f842f62b4220b5ea013d4eefebd665:log:8', 'hash': '0x9a11aa8c4d50f51400a120b38f8c8ca060f842f62b4220b5ea013d4eefebd665', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x519cb0540e1c4e8a0c1ae9f981e0934e3bba89c1', 'value': 9872.03, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x021729f004be4f830000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:47:56.000Z'}}, {'blockNum': '0x80eac8', 'uniqueId': '0x78cc1720dfb03cc70b461e4454744637c8ae121c955e6328775d99f9ccc9fdc8:log:118', 'hash': '0x78cc1720dfb03cc70b461e4454744637c8ae121c955e6328775d99f9ccc9fdc8', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 94651, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x140b0a7e69826a0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:49:59.000Z'}}, {'blockNum': '0x80ead3', 'uniqueId': '0x0eeff1ebddf72f16382a08f2cbb16f68e91c3f32acfbbce446e3745b367e112e:log:110', 'hash': '0x0eeff1ebddf72f16382a08f2cbb16f68e91c3f32acfbbce446e3745b367e112e', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 178956, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x25e539651a79e4b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:52:04.000Z'}}, {'blockNum': '0x80ead7', 'uniqueId': '0x528996869a1bbbf1dbd229005748c4c8083ccd934ac2a6c7736f5e8bb4e1592f:log:37', 'hash': '0x528996869a1bbbf1dbd229005748c4c8083ccd934ac2a6c7736f5e8bb4e1592f', 'from': '0x54b6e9b833e62c22b290a97c6e561f42f6bdb20d', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 72176.9521, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0f48b86d051184664000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:53:05.000Z'}}, {'blockNum': '0x80eade', 'uniqueId': '0xd1ae4a0c36ccde99bec15acf8c7659bbb7a61024306e1ec28c9c7f32a720b1ac:log:7', 'hash': '0xd1ae4a0c36ccde99bec15acf8c7659bbb7a61024306e1ec28c9c7f32a720b1ac', 'from': '0x3c0ee32b03816b787ce85d2e594ae4f3a7e062ad', 'to': '0x185aa96c350c9bca88b98670264642d167dd6f60', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:55:08.000Z'}}, {'blockNum': '0x80eae3', 'uniqueId': '0x23e91a20eae28bb11ce655a3037297db64afb281707dcf6a66e5bf37ac180c3a:log:94', 'hash': '0x23e91a20eae28bb11ce655a3037297db64afb281707dcf6a66e5bf37ac180c3a', 'from': '0xce081e75e5026d012d744921fbdf419badfc1514', 'to': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'value': 16700, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x03894f0e6f9b9f700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:56:26.000Z'}}, {'blockNum': '0x80eaea', 'uniqueId': '0xa792573bfeefc106e77ca19a4fe8ca3c22957f9eabccea157e0f1926ddc895c1:log:19', 'hash': '0xa792573bfeefc106e77ca19a4fe8ca3c22957f9eabccea157e0f1926ddc895c1', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 122852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1a03d1fcde3531100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T01:57:32.000Z'}}, {'blockNum': '0x80eaf8', 'uniqueId': '0xb7d002bf0f9aa770c8d8c878e1d501ea2690e6c646873fdd8b380b839e4edffb:log:15', 'hash': '0xb7d002bf0f9aa770c8d8c878e1d501ea2690e6c646873fdd8b380b839e4edffb', 'from': '0x2bee5f35b94cad8ddfce41c683b9899e53c568f1', 'to': '0x95e3181243425ee70e68575456ef2f1c0a7ce9dc', 'value': 68879.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e95f43ef42705828000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:01:10.000Z'}}, {'blockNum': '0x80eafc', 'uniqueId': '0xd96e9ec0d44c39f86ef89ecfc990adf5a545d32572cf9d8491cbd833503b0368:log:30', 'hash': '0xd96e9ec0d44c39f86ef89ecfc990adf5a545d32572cf9d8491cbd833503b0368', 'from': '0x185aa96c350c9bca88b98670264642d167dd6f60', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x010f0cf064dd59200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:02:01.000Z'}}, {'blockNum': '0x80eb14', 'uniqueId': '0x90a567f7b6d5c8ba92b05876978032e27a66786b0b99cc23a12871dca1094214:log:10', 'hash': '0x90a567f7b6d5c8ba92b05876978032e27a66786b0b99cc23a12871dca1094214', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x1978e53ef0faf74c811b53767551f8e549423157', 'value': 14193.704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x030171365a8881040000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:08:05.000Z'}}, {'blockNum': '0x80eb16', 'uniqueId': '0x248d467db3aff926e9eac036e792bbde0af21dcc55646c55150bfa7f27cd675d:log:17', 'hash': '0x248d467db3aff926e9eac036e792bbde0af21dcc55646c55150bfa7f27cd675d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 53906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b6a400791c57f080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:08:42.000Z'}}, {'blockNum': '0x80eb25', 'uniqueId': '0x70fa478e1fc107d924d9bbeb92b9b467eea13319846241bb4cdab62460a20e8a:log:72', 'hash': '0x70fa478e1fc107d924d9bbeb92b9b467eea13319846241bb4cdab62460a20e8a', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 122852, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1a03d1fcde3531100000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:12:11.000Z'}}, {'blockNum': '0x80eb36', 'uniqueId': '0x5eba7630aa6df42a3ead54d02ca1a43cf9db94d2b37ac3a9a2c903bc34bfef86:log:29', 'hash': '0x5eba7630aa6df42a3ead54d02ca1a43cf9db94d2b37ac3a9a2c903bc34bfef86', 'from': '0x95e3181243425ee70e68575456ef2f1c0a7ce9dc', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 68879.2954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0e95f43ef42705828000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:16:42.000Z'}}, {'blockNum': '0x80eb52', 'uniqueId': '0x395a3a7c70c3d8590c4d8890dc245e179a0280f655810ed06eb671a96ee3d899:log:15', 'hash': '0x395a3a7c70c3d8590c4d8890dc245e179a0280f655810ed06eb671a96ee3d899', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b6a400791c57f080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:22:02.000Z'}}, {'blockNum': '0x80eb7c', 'uniqueId': '0xf847c95633907cc2ee28b0b17854cc6397c86326233aaffd6190187cd0168802:log:26', 'hash': '0xf847c95633907cc2ee28b0b17854cc6397c86326233aaffd6190187cd0168802', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 52600, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b2373a381418ae00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:30:50.000Z'}}, {'blockNum': '0x80eba0', 'uniqueId': '0xc4d81865ef6b526f72b9c530d5c45148a897e4d52bcb46bacf8364fbb5a42db6:log:20', 'hash': '0xc4d81865ef6b526f72b9c530d5c45148a897e4d52bcb46bacf8364fbb5a42db6', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 61423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0d01bf5c4affa25c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:38:53.000Z'}}, {'blockNum': '0x80ebb2', 'uniqueId': '0x61750ede45dce43fb6d5faecbfb6104c326d2c226be1d1b4ee7f14b5ed9c1cd9:log:10', 'hash': '0x61750ede45dce43fb6d5faecbfb6104c326d2c226be1d1b4ee7f14b5ed9c1cd9', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114023, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x182532ffcc412d3c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:42:08.000Z'}}, {'blockNum': '0x80ebbf', 'uniqueId': '0x4e3a7b4bccd792457b38c9f0df05d71abd03255f03d12f8ba46284660cd7de6e:log:66', 'hash': '0x4e3a7b4bccd792457b38c9f0df05d71abd03255f03d12f8ba46284660cd7de6e', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 99986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x152c407de377cf080000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:46:24.000Z'}}, {'blockNum': '0x80ebd0', 'uniqueId': '0xfd84a55d8e0d2bf36221dd5bc7155784246ad3c2bea2787cd5a67110969e1fb4:log:75', 'hash': '0xfd84a55d8e0d2bf36221dd5bc7155784246ad3c2bea2787cd5a67110969e1fb4', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 54860, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b9df7706b4349b00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:49:09.000Z'}}, {'blockNum': '0x80ebeb', 'uniqueId': '0x4920edd61962a643f840aa25ffc4f4168ae60904974edebe9b86972070b2c095:log:20', 'hash': '0x4920edd61962a643f840aa25ffc4f4168ae60904974edebe9b86972070b2c095', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 98613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14e1d24a01ef0bb40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:55:36.000Z'}}, {'blockNum': '0x80ebee', 'uniqueId': '0x83907d2352ce5993f955bbb6ad0eddebfd5e00f0d48649c8364e9814a21f10d8:log:23', 'hash': '0x83907d2352ce5993f955bbb6ad0eddebfd5e00f0d48649c8364e9814a21f10d8', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56910, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0c0d18e775e5b8780000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:56:30.000Z'}}, {'blockNum': '0x80ebee', 'uniqueId': '0x4b585de0a9e7160807910f03939dc1ac9a2a417f353769b1efeb09821baabffc:log:24', 'hash': '0x4b585de0a9e7160807910f03939dc1ac9a2a417f353769b1efeb09821baabffc', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 113797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1818f29e81a766f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T02:56:30.000Z'}}, {'blockNum': '0x80ec00', 'uniqueId': '0xbda7e7ff4404bea68c6c83161daa6279177c25b7607238eb30702a802b51b17d:log:99', 'hash': '0xbda7e7ff4404bea68c6c83161daa6279177c25b7607238eb30702a802b51b17d', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 51731.406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0af45d79b843a73b0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:00:13.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xa1c76940e9751349b02e2f7aa772baa4fe0c90e1a9c8ad4f7078907540fcf7d4:log:52', 'hash': '0xa1c76940e9751349b02e2f7aa772baa4fe0c90e1a9c8ad4f7078907540fcf7d4', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 113797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1818f29e81a766f40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xc183cc85d9e952f4ab68bf10d8b67bb233253a9bb487179dfd66f46bcf8bd7a7:log:75', 'hash': '0xc183cc85d9e952f4ab68bf10d8b67bb233253a9bb487179dfd66f46bcf8bd7a7', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 111770, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x17ab1057e12902280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec06', 'uniqueId': '0xd32c35b5d62736c86b69661b8ec10290e24a1bfb1f4ee5b7514db30b440041d1:log:76', 'hash': '0xd32c35b5d62736c86b69661b8ec10290e24a1bfb1f4ee5b7514db30b440041d1', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 198599, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2a0e12c7e566dabc0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:02:06.000Z'}}, {'blockNum': '0x80ec0b', 'uniqueId': '0xbc773a7a581e6180aee7e139f43a19259c92313eb88f12fd2fa10109d16a3b43:log:70', 'hash': '0xbc773a7a581e6180aee7e139f43a19259c92313eb88f12fd2fa10109d16a3b43', 'from': '0x560a5a98b65bf6f564b25d0b1359508411a3ec74', 'to': '0xc2e5a9fa08845c253f42f889a137f848b970690e', 'value': 3863.34966, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0xd16ebf2eddc225c000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:03:24.000Z'}}, {'blockNum': '0x80ec2e', 'uniqueId': '0x1e7c753bbd42e2000f256b4a27655264389312a54b994b4caaa606afcce7a5bd:log:21', 'hash': '0x1e7c753bbd42e2000f256b4a27655264389312a54b994b4caaa606afcce7a5bd', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'value': 114235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1830b1171907cc0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:12:02.000Z'}}, {'blockNum': '0x80ec39', 'uniqueId': '0xe419cc4fbf45f066ff15bccf957e677d7d08b62725ed77538d2a17179742fb6c:log:4', 'hash': '0xe419cc4fbf45f066ff15bccf957e677d7d08b62725ed77538d2a17179742fb6c', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'value': 214619.1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2d7287973e57b82b4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:13:59.000Z'}}, {'blockNum': '0x80ec41', 'uniqueId': '0xac0c3a48fbea57b6a50ccd145cdb619ec91dcdde28f346bb73f4ee75f23981f9:log:22', 'hash': '0xac0c3a48fbea57b6a50ccd145cdb619ec91dcdde28f346bb73f4ee75f23981f9', 'from': '0x4cf5b6035eb8e71262da447456e585e1b9b43eac', 'to': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:15:32.000Z'}}, {'blockNum': '0x80ec41', 'uniqueId': '0xd3419ba15b7ca6936db3d82ebcaa3223bddac1188d97039c56c0ec40dde56593:log:26', 'hash': '0xd3419ba15b7ca6936db3d82ebcaa3223bddac1188d97039c56c0ec40dde56593', 'from': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'to': '0x4cf5b6035eb8e71262da447456e585e1b9b43eac', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:15:32.000Z'}}, {'blockNum': '0x80ec49', 'uniqueId': '0x255b3d5610b166b1d1a700ee5b29faa77fbd6c52e6f908ec727f12a8fb3ae227:log:67', 'hash': '0x255b3d5610b166b1d1a700ee5b29faa77fbd6c52e6f908ec727f12a8fb3ae227', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0becf3603fbef9d40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:18:53.000Z'}}, {'blockNum': '0x80ec4f', 'uniqueId': '0xbec336e7a239014be36bdb99c518a033241bdc4bfe66d1a123a27095c0db0ee5:log:1', 'hash': '0xbec336e7a239014be36bdb99c518a033241bdc4bfe66d1a123a27095c0db0ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5e9679a877aaefee7a0077ce89804034bd85ca71', 'value': 23612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0500025362432b700000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:20:24.000Z'}}, {'blockNum': '0x80ec57', 'uniqueId': '0xc0f673c11369bbd5261d4792801f18bf3ffc8cc1c5760e5fadcd5a3b23017d49:log:95', 'hash': '0xc0f673c11369bbd5261d4792801f18bf3ffc8cc1c5760e5fadcd5a3b23017d49', 'from': '0x1d0ae8d51bb3a468a179336e61038c6bc71a88bc', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 214619.1909, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x2d7287973e57b82b4000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:22:54.000Z'}}, {'blockNum': '0x80ec5b', 'uniqueId': '0x16ba4b4c6736fbd564d6fefad02cbba2c49ef065bcbb8158ca445dfcedbcc011:log:22', 'hash': '0x16ba4b4c6736fbd564d6fefad02cbba2c49ef065bcbb8158ca445dfcedbcc011', 'from': '0xe93381fb4c4f14bda253907b18fad305d799241a', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 93615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13d2e11b0a79015c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:24:59.000Z'}}, {'blockNum': '0x80ec72', 'uniqueId': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09:log:93', 'hash': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09', 'from': '0xfcbc318314aae617cf58c2d13a9ee48be0e4c370', 'to': '0x59523b19e6614f9e6acede42100619458ee01eab', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:29:51.000Z'}}, {'blockNum': '0x80ec72', 'uniqueId': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09:log:94', 'hash': '0x0cca324952711e0cb945eb998dccd1ab88c3fd40263be2c163b1ddae4de71e09', 'from': '0x59523b19e6614f9e6acede42100619458ee01eab', 'to': '0x66013071e12cf90df02f1b3c8149e00a16936f80', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x02b5e3af16b1880000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:29:51.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x9cb10db6ccaf8b0a739c01dc0d97043e6f75b683446b9ca3ad89bcddd93a189d:log:92', 'hash': '0x9cb10db6ccaf8b0a739c01dc0d97043e6f75b683446b9ca3ad89bcddd93a189d', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 93615, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13d2e11b0a79015c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x6f51d8f9d835a49179fd48b8730bd8321cc10dfbb0bcce10387bc83bd2625125:log:110', 'hash': '0x6f51d8f9d835a49179fd48b8730bd8321cc10dfbb0bcce10387bc83bd2625125', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 56317, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0becf3603fbef9d40000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec7b', 'uniqueId': '0x1de467c16c632f3043046fbba2c34f5069ce833ad70fcef563daf534d3340fba:log:116', 'hash': '0x1de467c16c632f3043046fbba2c34f5069ce833ad70fcef563daf534d3340fba', 'from': '0xcbb98c8497621f54f1f7e375aeece56e5ae6b005', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 114235, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x1830b1171907cc0c0000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:32:07.000Z'}}, {'blockNum': '0x80ec91', 'uniqueId': '0x3045bdeff466c877cc88d856c72b3b173955f0dc8f9180ae0641d785207e9d54:log:50', 'hash': '0x3045bdeff466c877cc88d856c72b3b173955f0dc8f9180ae0641d785207e9d54', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:36:48.000Z'}}, {'blockNum': '0x80ec93', 'uniqueId': '0x04b2991812aa302c2a37294a5556561d4bd9566f8596d2f990438530f57abb31:log:49', 'hash': '0x04b2991812aa302c2a37294a5556561d4bd9566f8596d2f990438530f57abb31', 'from': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 56254, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0be989134988c8380000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:37:48.000Z'}}, {'blockNum': '0x80ecaa', 'uniqueId': '0x6f17d55bc279e064951a1fe263066bae92efaedeeae6131894350cd46de3ecd8:log:20', 'hash': '0x6f17d55bc279e064951a1fe263066bae92efaedeeae6131894350cd46de3ecd8', 'from': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 90029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x13107b5bc9ea3a940000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:42:01.000Z'}}, {'blockNum': '0x80ecb2', 'uniqueId': '0x79e1e71dd207946a88e65a6e68f4ca0405791b6ffb7154407c95973151f8a4ef:log:1', 'hash': '0x79e1e71dd207946a88e65a6e68f4ca0405791b6ffb7154407c95973151f8a4ef', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8164980bf4a83e54992a2733938b5d8401fb3912', 'value': 19912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x04376e82c5b3da200000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:43:26.000Z'}}, {'blockNum': '0x80ecd0', 'uniqueId': '0x67ec7f71367185e6ffb2daa482d454d8df95df665833d7aaeaaaee53d31f2a57:log:155', 'hash': '0x67ec7f71367185e6ffb2daa482d454d8df95df665833d7aaeaaaee53d31f2a57', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'value': 52072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x0b06d42aaeb84ca00000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:50:49.000Z'}}, {'blockNum': '0x80ecd2', 'uniqueId': '0xde0fe8ca7ee563f64fb96be4198d41760ceef73ca7972014613c49535ace4212:log:87', 'hash': '0xde0fe8ca7ee563f64fb96be4198d41760ceef73ca7972014613c49535ace4212', 'from': '0x2a3e8b070fb0691b090e9326ae95e029a4776ce4', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 108326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x16f05d3df84114d80000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:51:50.000Z'}}, {'blockNum': '0x80ece7', 'uniqueId': '0x8811d79136c1090aa214b12575be9ca66e7e7aadb51221f7b96e5833e1cdb3fb:log:20', 'hash': '0x8811d79136c1090aa214b12575be9ca66e7e7aadb51221f7b96e5833e1cdb3fb', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6514020c42ea76097491e0f96d16cbb07de34b3e', 'value': 97754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'QSP', 'category': 'erc20', 'rawContract': {'value': '0x14b34144f51c5f280000', 'address': '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2019-08-30T03:56:42.000Z'}}]}}
Number of returned transfers:  160
Answer is complete
 
symbol            DATA
group              CCS
date        2019-09-08
hour             18:00
exchange       binance
Name: 1099, dtype: object
HERE
 Symbol: DATA, Contract: 0x8f693ca8d21b157107184d29d398a8d082b38b76
Datetime timestamps:  2019-09-08 18:00:00 2019-09-08 06:00:00 2019-09-09 06:00:00
Unix timestamps:  1567915200.0 1568001600.0
Hex Block Numbers:  0x81ce7b 0x81e777
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol             BRD
group              CCS
date        2020-01-20
hour             16:00
exchange       binance
Name: 1100, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2020-01-20 16:00:00 2020-01-20 04:00:00 2020-01-21 04:00:00
Unix timestamps:  1579489200.0 1579575600.0
Hex Block Numbers:  0x8e25bd 0x8e3f3a
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x8e2882', 'uniqueId': '0xa572d94157c52264fc2356e14dc5945de9fd0ab71326086ec313a9873edaa956:log:149', 'hash': '0xa572d94157c52264fc2356e14dc5945de9fd0ab71326086ec313a9873edaa956', 'from': '0x0da6c6466ca0d6467e743729c58b6bc3b9c87bc9', 'to': '0xe0beebec3f0c5c64df0ecae7b198975e17df843d', 'value': 1149.1541207, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3e4bb7904c13dcd800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T05:41:58.000Z'}}, {'blockNum': '0x8e2935', 'uniqueId': '0xa4ac1f47a69be8f0dc186d509115ea43484f70d6ec811dfdb34a6e13514ef345:log:28', 'hash': '0xa4ac1f47a69be8f0dc186d509115ea43484f70d6ec811dfdb34a6e13514ef345', 'from': '0x5087ba8368240163c01e43e8f9dd5521cdb71e32', 'to': '0x190c4f6971e5339aa67133829412213650a3ffb8', 'value': 335.60448, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x123172a07385b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T06:24:38.000Z'}}, {'blockNum': '0x8e2a65', 'uniqueId': '0x249c99b938f31d59a2fd24dce8c4fac8e9a2772ed856eb06e6ad9be7b3c0db95:log:76', 'hash': '0x249c99b938f31d59a2fd24dce8c4fac8e9a2772ed856eb06e6ad9be7b3c0db95', 'from': '0xf5ba312ac4e1387dc0df053381dc196a0b52ab7d', 'to': '0xc18842d634a683e6ea5392e3f9f23a6966c88371', 'value': 12.88, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xb2bef3c243080000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T07:25:37.000Z'}}, {'blockNum': '0x8e2c36', 'uniqueId': '0x031cc4b6fefb69ef6446a4c0b4da69b1f1b52d1e36523eface1949b5140529ab:log:14', 'hash': '0x031cc4b6fefb69ef6446a4c0b4da69b1f1b52d1e36523eface1949b5140529ab', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x99c84069aa46a128c1f7398931de1d27265a22bf', 'value': 2177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x7603f1adc279640000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T09:08:14.000Z'}}, {'blockNum': '0x8e2e55', 'uniqueId': '0x90bf9061898700d330b9f93ab64b754934116a1005927af0257293fc33fdb4f5:log:80', 'hash': '0x90bf9061898700d330b9f93ab64b754934116a1005927af0257293fc33fdb4f5', 'from': '0x5f25e34a5d52ef934c3206180a60ce72e36089cb', 'to': '0x37bf0bb626399516fede2d37e11113cdb1ec2623', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T11:07:33.000Z'}}, {'blockNum': '0x8e2e92', 'uniqueId': '0xa8314cbb66830e8ec5d299a83407d9b7388d000f9b2929f0fb66ccfe816aae4a:log:12', 'hash': '0xa8314cbb66830e8ec5d299a83407d9b7388d000f9b2929f0fb66ccfe816aae4a', 'from': '0x37bf0bb626399516fede2d37e11113cdb1ec2623', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T11:23:56.000Z'}}, {'blockNum': '0x8e2fec', 'uniqueId': '0x5129c66768aecbabccf2f5255f133e3781ebd6946e3a6bfb338e74b13f0e6a28:log:56', 'hash': '0x5129c66768aecbabccf2f5255f133e3781ebd6946e3a6bfb338e74b13f0e6a28', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xaed927b9189ef8fa7119f84ee05886d56a35ec76', 'value': 94.27163284, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051c481e98703fd000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T12:37:45.000Z'}}, {'blockNum': '0x8e3332', 'uniqueId': '0xd793cff83d1fdc35d56284facc13333f40b1194e5d58f1e607dd116928ce453e:log:135', 'hash': '0xd793cff83d1fdc35d56284facc13333f40b1194e5d58f1e607dd116928ce453e', 'from': '0x50b30b3fcdae176c0a4572db5ab82ad932061464', 'to': '0x50b30b3fcdae176c0a4572db5ab82ad932061464', 'value': 181.13920783, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09d1cfbdce02ce5c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T15:47:20.000Z'}}, {'blockNum': '0x8e339f', 'uniqueId': '0x8bed6b79c9996a4fd454b341f9c38ec5c8bd733ccf575b820a90e02f3b668679:log:61', 'hash': '0x8bed6b79c9996a4fd454b341f9c38ec5c8bd733ccf575b820a90e02f3b668679', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xb49cfc7064ee90ea416dec0653874df23b355f9c', 'value': 205.37837047, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0b22328bcd1cecfc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T16:10:53.000Z'}}, {'blockNum': '0x8e33c7', 'uniqueId': '0xccdfbcb2affaade3e6170cde6f39621b0e2173d70e649a001df9e59355122199:log:179', 'hash': '0xccdfbcb2affaade3e6170cde6f39621b0e2173d70e649a001df9e59355122199', 'from': '0x48cfb301a563d6e0d1795b12f7f4b989d426ec6a', 'to': '0x0ed9764a7ded038396988d4b3cd3a65fe66a089d', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T16:18:52.000Z'}}, {'blockNum': '0x8e33d7', 'uniqueId': '0x64d820afaf3fe34c938abf9c0e585b792f50d8ac09edf402d225d2caf1c4555c:log:99', 'hash': '0x64d820afaf3fe34c938abf9c0e585b792f50d8ac09edf402d225d2caf1c4555c', 'from': '0x6058585a7350dbc5e92b060ac459d6a4e2120672', 'to': '0x76f40ac7a7a32ff07c8b762adb267471eb1f32c9', 'value': 1900, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x66ffcbfd5e5a300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T16:22:43.000Z'}}, {'blockNum': '0x8e34ad', 'uniqueId': '0x2bac343676c746063cd27243f94808b91913a6a8c33deafaec9d51efb4ac30e8:log:16', 'hash': '0x2bac343676c746063cd27243f94808b91913a6a8c33deafaec9d51efb4ac30e8', 'from': '0x32f20cce59da8bab16921e04de482d07c73e9ede', 'to': '0xae700e1e8115c3e686ee34753dd387e905f2ecd3', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T17:06:01.000Z'}}, {'blockNum': '0x8e354f', 'uniqueId': '0x970a92af685d11a1a77afc627097345f09e89403770cf1fbfffe6128c7193496:log:3', 'hash': '0x970a92af685d11a1a77afc627097345f09e89403770cf1fbfffe6128c7193496', 'from': '0x429701e9c55f69e6efdee8ab9920f825da2b9bb3', 'to': '0xd6269ff8b8e1d9eedf3fe435ed2e8123e517c9f5', 'value': 92, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04fcc1a89027f00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T17:38:12.000Z'}}, {'blockNum': '0x8e35a0', 'uniqueId': '0xd81eca0233cc05c930bacda0f82b8e7f5abce24849fa54c562eb8990b462312f:log:158', 'hash': '0xd81eca0233cc05c930bacda0f82b8e7f5abce24849fa54c562eb8990b462312f', 'from': '0x6a544e267913dc9a0172f1c7111a66467ae73d08', 'to': '0xdf6156e1e5b0e7a26d26658597faf5684be713f9', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690d9db80000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T17:53:52.000Z'}}, {'blockNum': '0x8e3738', 'uniqueId': '0x02edf40d3080280a912aeca5945c21903d76d270594bdacaf2dcb1b05a772f30:log:172', 'hash': '0x02edf40d3080280a912aeca5945c21903d76d270594bdacaf2dcb1b05a772f30', 'from': '0xd5176ccdfd0f88bb065b01333468bb3143ae52a3', 'to': '0x4ec85bd869dc657a0f54c2ac72185e7329ddbdb1', 'value': 200, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0ad78ebc5ac6200000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T19:29:57.000Z'}}, {'blockNum': '0x8e37af', 'uniqueId': '0x325e8bdff8c48a85bd535120bf664a2e5394ed8552fa6e87158683c24a67c939:log:1', 'hash': '0x325e8bdff8c48a85bd535120bf664a2e5394ed8552fa6e87158683c24a67c939', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 156.81224326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x088035006b08715800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T19:59:07.000Z'}}, {'blockNum': '0x8e37c7', 'uniqueId': '0x57f5811c672005b0b2bc0bd5473bc8c353740016d0d2a406500aa4ddd88bfb4a:log:53', 'hash': '0x57f5811c672005b0b2bc0bd5473bc8c353740016d0d2a406500aa4ddd88bfb4a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x73d361632c8da76159e65e917242735cdca8e8a9', 'value': 156.81224326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x088035006b08715800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T20:04:50.000Z'}}, {'blockNum': '0x8e39cb', 'uniqueId': '0x993411dc64cadffffff0177ec76685632fd4a2cc181032a174d4b29b1f8c5a4c:log:25', 'hash': '0x993411dc64cadffffff0177ec76685632fd4a2cc181032a174d4b29b1f8c5a4c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x66c060b745850516853be76532f1249496c84e84', 'value': 47.47820418, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0292e47726c25dc800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T21:53:51.000Z'}}, {'blockNum': '0x8e3aa0', 'uniqueId': '0x883e55c53ed7295fc751ebe9b838578c6b43ddcd005d3e797117b89784656fc3:log:3', 'hash': '0x883e55c53ed7295fc751ebe9b838578c6b43ddcd005d3e797117b89784656fc3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xcc68b68e4cab4375601242d72580df365def28db', 'value': 100.74, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x05760c6041b0da0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T22:40:49.000Z'}}, {'blockNum': '0x8e3ba1', 'uniqueId': '0xa883d026c64162dbc2b311792c278227bfab42b27cd931850044ff87a8916d72:log:25', 'hash': '0xa883d026c64162dbc2b311792c278227bfab42b27cd931850044ff87a8916d72', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x02b3217f80d7d0a0548458f08fbf9cd7bf648d7e', 'value': 93.87841075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0516d31d301ff66c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-20T23:37:09.000Z'}}, {'blockNum': '0x8e3e33', 'uniqueId': '0x756f701c7a5871e37c3e224269012910c67795992cbd1eed51298807265a2409:log:113', 'hash': '0x756f701c7a5871e37c3e224269012910c67795992cbd1eed51298807265a2409', 'from': '0xf7e1aa050035fc99bcaff7a95d052127dc618621', 'to': '0xfb439895a2e9261d25236c8ede0195b769f443bc', 'value': 1034.0147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x380dd62b34901ac000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:02:49.000Z'}}, {'blockNum': '0x8e3ed1', 'uniqueId': '0x7ac36e5493200c802f907494905cf3aa3a3f94be675d4df19e0d84b37a19c59b:log:164', 'hash': '0x7ac36e5493200c802f907494905cf3aa3a3f94be675d4df19e0d84b37a19c59b', 'from': '0x50b30b3fcdae176c0a4572db5ab82ad932061464', 'to': '0x7d059de737bf54d4ce2816c5a39c4971a13bfa77', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:35:25.000Z'}}, {'blockNum': '0x8e3ed4', 'uniqueId': '0xed33c56cce2250bf46cd6e9535d9aa48ffee384708e051e7d9b61952983af248:log:68', 'hash': '0xed33c56cce2250bf46cd6e9535d9aa48ffee384708e051e7d9b61952983af248', 'from': '0x7d059de737bf54d4ce2816c5a39c4971a13bfa77', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 288, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0f9ccd8a1c50800000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:35:50.000Z'}}, {'blockNum': '0x8e3efc', 'uniqueId': '0x4f40c24ee4592aa75383ec7847f2b7f344ed32b051636fa416ec515f3134700e:log:13', 'hash': '0x4f40c24ee4592aa75383ec7847f2b7f344ed32b051636fa416ec515f3134700e', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x12290f15180bdc0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:43:33.000Z'}}, {'blockNum': '0x8e3f01', 'uniqueId': '0xcd9c13066777560f7adf9bd8c9f71d3678a4955ebb776b3c079fe669e748c3be:log:24', 'hash': '0xcd9c13066777560f7adf9bd8c9f71d3678a4955ebb776b3c079fe669e748c3be', 'from': '0xfb439895a2e9261d25236c8ede0195b769f443bc', 'to': '0xd55e158ba7d2fb70c06b39ce81be23faecd5e56a', 'value': 1034.0147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x380dd62b34901ac000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:45:20.000Z'}}, {'blockNum': '0x8e3f20', 'uniqueId': '0x133ffae5df2ba64f526634ef91fba639e28975d3d807c629f5502a04af4acc87:log:46', 'hash': '0x133ffae5df2ba64f526634ef91fba639e28975d3d807c629f5502a04af4acc87', 'from': '0xd55e158ba7d2fb70c06b39ce81be23faecd5e56a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1034.0147, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x380dd62b34901ac000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-01-21T02:53:05.000Z'}}]}}
Number of returned transfers:  26
Answer is complete
 
symbol             NAV
group              CCS
date        2020-02-20
hour             16:00
exchange       binance
Name: 1101, dtype: object
HERE
{'binance-smart-chain': '0xbfef6ccfc830d3baca4f6766a0d4aaa242ca9f3d'}
No contract for ethereum specified
 Symbol: NAV, Contract: 
Datetime timestamps:  2020-02-20 16:00:00 2020-02-20 04:00:00 2020-02-21 04:00:00
Unix timestamps:  1582167600.0 1582254000.0
Hex Block Numbers:  0x913a16 0x915379
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             NXS
group              CCS
date        2020-03-03
hour             15:59
exchange       binance
Name: 1102, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-03-03 15:59:00 2020-03-03 03:59:00 2020-03-04 03:59:00
Unix timestamps:  1583204340.0 1583290740.0
Hex Block Numbers:  0x926b08 0x928440
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol           SNGLS
group              CCS
date        2020-03-08
hour             18:59
exchange       binance
Name: 1103, dtype: object
HERE
 Symbol: SNGLS, Contract: 0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009
Datetime timestamps:  2020-03-08 18:59:00 2020-03-08 06:59:00 2020-03-09 06:59:00
Unix timestamps:  1583647140.0 1583733540.0
Hex Block Numbers:  0x92ed76 0x9306ca
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x92fb6a', 'uniqueId': '0x9c9c89914d37383994eb348c182ed8a4033376e669f07f3f345097aba978e620:log:10', 'hash': '0x9c9c89914d37383994eb348c182ed8a4033376e669f07f3f345097aba978e620', 'from': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'to': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'value': 94961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0172f1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-03-08T19:16:30.000Z'}}, {'blockNum': '0x92fb9f', 'uniqueId': '0x989d08025983a63b5c17f4f5f9f6d3e837b2ac92c647ec0b0c1dbbba2f61be05:log:1', 'hash': '0x989d08025983a63b5c17f4f5f9f6d3e837b2ac92c647ec0b0c1dbbba2f61be05', 'from': '0x94e509b0f855297c0b99ab61bff027e0ad114121', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 94961, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x0172f1', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-03-08T19:29:11.000Z'}}, {'blockNum': '0x9304ea', 'uniqueId': '0x1fafd90a33530d41c22af7233704b1031dbb0d76ce1718d5036ef5976c373edd:log:9', 'hash': '0x1fafd90a33530d41c22af7233704b1031dbb0d76ce1718d5036ef5976c373edd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x896bafa0d6d455fa1b7ca5c080da601638759d31', 'value': 113029, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'SNGLS', 'category': 'erc20', 'rawContract': {'value': '0x01b985', 'address': '0xaec2e87e0a235266d9c5adc9deb4b2e29b54d009', 'decimal': '0x0'}, 'metadata': {'blockTimestamp': '2020-03-09T04:15:09.000Z'}}]}}
Number of returned transfers:  3
Answer is complete
 
symbol             RDN
group              CCS
date        2020-03-13
hour             16:00
exchange       binance
Name: 1104, dtype: object
HERE
 Symbol: RDN, Contract: 0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6
Datetime timestamps:  2020-03-13 16:00:00 2020-03-13 04:00:00 2020-03-14 04:00:00
Unix timestamps:  1584068400.0 1584154800.0
Hex Block Numbers:  0x9368d5 0x9381cc
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x9368e2', 'uniqueId': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73:log:131', 'hash': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1481.0782059449944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x504a16cd37e438aab3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:02:50.000Z'}}, {'blockNum': '0x9368e2', 'uniqueId': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73:log:133', 'hash': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 1481.0782059449944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x504a16cd37e438aab3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:02:50.000Z'}}, {'blockNum': '0x9368e2', 'uniqueId': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73:log:137', 'hash': '0xd7b2846f70f69e0354ada37a86c105f40c04a6bd970671d152f596ecd39b3e73', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1481.0782059449944, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x504a16cd37e438aab3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:02:50.000Z'}}, {'blockNum': '0x9368ee', 'uniqueId': '0x29ef14024615974579136e2233dcf2718c96de1da6d8204051525c3383d106a1:log:128', 'hash': '0x29ef14024615974579136e2233dcf2718c96de1da6d8204051525c3383d106a1', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2560.25, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8aca9b3236d1d90000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:03:56.000Z'}}, {'blockNum': '0x936915', 'uniqueId': '0xbc1bd2b9bdda3c53b99a3a24183cffb6e1b574d26da7dbf1a8e02fd17ce2029c:log:17', 'hash': '0xbc1bd2b9bdda3c53b99a3a24183cffb6e1b574d26da7dbf1a8e02fd17ce2029c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xd61362514d21940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T03:11:29.000Z'}}, {'blockNum': '0x936add', 'uniqueId': '0xe66b8bebe9dd4b49608e019eaf52aefa85ae43c8ea8bf4bb0e5da146ec3e3aae:log:85', 'hash': '0xe66b8bebe9dd4b49608e019eaf52aefa85ae43c8ea8bf4bb0e5da146ec3e3aae', 'from': '0x905fefe230a46ae461fc6429b0497e938ca8af01', 'to': '0xda19aab62842835846714d3fbb4e335b0a19552c', 'value': 66417.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e1081388186d09f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T04:52:43.000Z'}}, {'blockNum': '0x936b0f', 'uniqueId': '0xe760a5ed467362866eb5fbeeefb4599e6954cbcf6f0b507891a41a2df2e9790a:log:106', 'hash': '0xe760a5ed467362866eb5fbeeefb4599e6954cbcf6f0b507891a41a2df2e9790a', 'from': '0xda19aab62842835846714d3fbb4e335b0a19552c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 66417.59, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0e1081388186d09f0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:04:30.000Z'}}, {'blockNum': '0x936b9d', 'uniqueId': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3:log:127', 'hash': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1622.150958530425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x57efdde6426164ef9b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:36:12.000Z'}}, {'blockNum': '0x936b9d', 'uniqueId': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3:log:129', 'hash': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 1622.150958530425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x57efdde6426164ef9b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:36:12.000Z'}}, {'blockNum': '0x936b9d', 'uniqueId': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3:log:133', 'hash': '0x5acb40b855d5438792e637ae574e5cac618041d818d3370e808dd764fac240f3', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1622.150958530425, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x57efdde6426164ef9b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T05:36:12.000Z'}}, {'blockNum': '0x936d3b', 'uniqueId': '0x8157480b188bc7434db68f8f0afcf3d8a2917ae7c8b6dad6553cb1464c0f01cc:log:145', 'hash': '0x8157480b188bc7434db68f8f0afcf3d8a2917ae7c8b6dad6553cb1464c0f01cc', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x6db418fcc3e8077e1f1159e7b7fed66f20b6fbe5', 'value': 1682.852546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5b3a454273bbb62000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:10:32.000Z'}}, {'blockNum': '0x936d72', 'uniqueId': '0x7e5be4906c35fc71cda15b290f426b5f5bebf39a7d061e40b0efcb270e20b40a:log:118', 'hash': '0x7e5be4906c35fc71cda15b290f426b5f5bebf39a7d061e40b0efcb270e20b40a', 'from': '0x6db418fcc3e8077e1f1159e7b7fed66f20b6fbe5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1682.852546, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5b3a454273bbb62000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:24:45.000Z'}}, {'blockNum': '0x936d83', 'uniqueId': '0xd3ee711909ddd4077c58215a7021f0bdaa0b11f20cc23d4ca9264cc8ebd9fcf5:log:25', 'hash': '0xd3ee711909ddd4077c58215a7021f0bdaa0b11f20cc23d4ca9264cc8ebd9fcf5', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2071.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x705178c992507d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:29:33.000Z'}}, {'blockNum': '0x936d8a', 'uniqueId': '0x53f43fc8850a76f9e602556a095e9a253f1be3527c1d3a7e6358e75244bd4309:log:12', 'hash': '0x53f43fc8850a76f9e602556a095e9a253f1be3527c1d3a7e6358e75244bd4309', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 2071.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x705178c992507d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:30:39.000Z'}}, {'blockNum': '0x936d8a', 'uniqueId': '0x53f43fc8850a76f9e602556a095e9a253f1be3527c1d3a7e6358e75244bd4309:log:13', 'hash': '0x53f43fc8850a76f9e602556a095e9a253f1be3527c1d3a7e6358e75244bd4309', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 2071.906, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x705178c992507d0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:30:39.000Z'}}, {'blockNum': '0x936de3', 'uniqueId': '0xdd5ce34ac486a3d59aa2347be2b4aad6bdeb1abc28f4aa015b5e5527f609ef28:log:33', 'hash': '0xdd5ce34ac486a3d59aa2347be2b4aad6bdeb1abc28f4aa015b5e5527f609ef28', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'value': 18772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03f9a1d52dae70d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T07:53:41.000Z'}}, {'blockNum': '0x936e1d', 'uniqueId': '0x74b57085e3d510e3047ebb75e1db90fcf28de761f6398e878d54871d561495c9:log:137', 'hash': '0x74b57085e3d510e3047ebb75e1db90fcf28de761f6398e878d54871d561495c9', 'from': '0x77cdc9a4f33f8cf2392a651553519923ef23808a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 18772, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x03f9a1d52dae70d00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T08:04:24.000Z'}}, {'blockNum': '0x936f02', 'uniqueId': '0x7788cef70ce44faf2e8fb5cd1889ffc0d299455f7301f7464b8a5164ee3356cf:log:100', 'hash': '0x7788cef70ce44faf2e8fb5cd1889ffc0d299455f7301f7464b8a5164ee3356cf', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 3455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbb4bc1c2a01e9c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T08:58:41.000Z'}}, {'blockNum': '0x936f1b', 'uniqueId': '0xacc7883bca73a7bfd7f0124f77a27a8265ee0e9b4a3223e8eed5d828a43d11dd:log:72', 'hash': '0xacc7883bca73a7bfd7f0124f77a27a8265ee0e9b4a3223e8eed5d828a43d11dd', 'from': '0x8540f80fab2afcae8d8fd6b1557b1cf943a0999b', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1285.509, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x45b0056894d7a08000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:04:01.000Z'}}, {'blockNum': '0x936f1b', 'uniqueId': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e:log:136', 'hash': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1815.4877254653784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x626af41371cdc7d8bc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:04:01.000Z'}}, {'blockNum': '0x936f1b', 'uniqueId': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e:log:139', 'hash': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1815.4877254653784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x626af41371cdc7d8bc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:04:01.000Z'}}, {'blockNum': '0x936f1b', 'uniqueId': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e:log:141', 'hash': '0x3c775ec5fe6933bc10c63bed293c298241d811d5323ebf44ef5f11e512d2932e', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1815.4877254653784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x626af41371cdc7d8bc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T09:04:01.000Z'}}, {'blockNum': '0x937286', 'uniqueId': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151:log:100', 'hash': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 1677.6572622001922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af22be75ca8d3e818', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T12:21:52.000Z'}}, {'blockNum': '0x937286', 'uniqueId': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151:log:102', 'hash': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1677.6572622001922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af22be75ca8d3e818', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T12:21:52.000Z'}}, {'blockNum': '0x937286', 'uniqueId': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151:log:103', 'hash': '0x235f5f4865483c7ff02120b5a4f8ac3afa99cee2726b831f66ff8f8b34bf9151', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1677.6572622001922, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5af22be75ca8d3e818', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T12:21:52.000Z'}}, {'blockNum': '0x937302', 'uniqueId': '0x4ec3d6f11557f5c5f21ec0fa0dbabc20373387c264fe54603a280a4e597ae11a:log:138', 'hash': '0x4ec3d6f11557f5c5f21ec0fa0dbabc20373387c264fe54603a280a4e597ae11a', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x1bdbf63d173ade5836944b981bbfefcf9c62c337', 'value': 205, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0b1cf24ddd0b140000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T12:51:53.000Z'}}, {'blockNum': '0x93744a', 'uniqueId': '0x211a30cab5ff97edaad75a1133922029e7328c0d036628c79654363acd3a7203:log:115', 'hash': '0x211a30cab5ff97edaad75a1133922029e7328c0d036628c79654363acd3a7203', 'from': '0x0d0707963952f2fba59dd06f2b425ace40b492fe', 'to': '0x460b94fe8b7899b4a5f7ea74e90536e2c5f70fcd', 'value': 919, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x31d1afdeede7fc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T14:06:26.000Z'}}, {'blockNum': '0x9374d4', 'uniqueId': '0xc69a9b2909868f0ce817bc38ddd6d410ee2b425c071a4251d2fd4d848f2bb6ec:log:13', 'hash': '0xc69a9b2909868f0ce817bc38ddd6d410ee2b425c071a4251d2fd4d848f2bb6ec', 'from': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x79a5c17ec748900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T14:35:44.000Z'}}, {'blockNum': '0x937503', 'uniqueId': '0xff01ea2293909078053be98bd47dfcc19d754d3335066e96e4eacf86ede95f38:log:146', 'hash': '0xff01ea2293909078053be98bd47dfcc19d754d3335066e96e4eacf86ede95f38', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2244, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x79a5c17ec748900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T14:46:48.000Z'}}, {'blockNum': '0x9375f7', 'uniqueId': '0xa9b8f83e28c0ee55a6c02cd078b2513a68cdf819405a375f1e47933091022ec4:log:5', 'hash': '0xa9b8f83e28c0ee55a6c02cd078b2513a68cdf819405a375f1e47933091022ec4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'value': 8531.7385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ce81a812a9800c4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T15:42:03.000Z'}}, {'blockNum': '0x937634', 'uniqueId': '0x939661b23e0324eeeb5f4b2e247ea9719bae4bc39420ab85fb766e57c5e7d010:log:31', 'hash': '0x939661b23e0324eeeb5f4b2e247ea9719bae4bc39420ab85fb766e57c5e7d010', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1fe919d72f733a5ca865dea0b0984b0cc2849c39', 'value': 2406.72523763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x827805ac3f67bd6c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T15:58:12.000Z'}}, {'blockNum': '0x93763c', 'uniqueId': '0xbb9b17ce1886ae034c5e27f00c762e0637bfb0d5c0f1ab70c5fe67a8389c7683:log:35', 'hash': '0xbb9b17ce1886ae034c5e27f00c762e0637bfb0d5c0f1ab70c5fe67a8389c7683', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 4357.887616655287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec3dd6f2451411522d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:12.000Z'}}, {'blockNum': '0x93763c', 'uniqueId': '0xbb9b17ce1886ae034c5e27f00c762e0637bfb0d5c0f1ab70c5fe67a8389c7683:log:40', 'hash': '0xbb9b17ce1886ae034c5e27f00c762e0637bfb0d5c0f1ab70c5fe67a8389c7683', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 4357.887616655287, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xec3dd6f2451411522d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:12.000Z'}}, {'blockNum': '0x93763d', 'uniqueId': '0x47ca2163c15d15fb140d3b1c4bcdf3c0e6ce9a33601f88e91fce145eafbaa9f5:log:4', 'hash': '0x47ca2163c15d15fb140d3b1c4bcdf3c0e6ce9a33601f88e91fce145eafbaa9f5', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 4820.847401169012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x010556b2816b44079f6f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:25.000Z'}}, {'blockNum': '0x93763e', 'uniqueId': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa:log:73', 'hash': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1419.6461384569764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4cf58c4151ab180d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:35.000Z'}}, {'blockNum': '0x93763e', 'uniqueId': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa:log:75', 'hash': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 1419.6461384569764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4cf58c4151ab180d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:35.000Z'}}, {'blockNum': '0x93763e', 'uniqueId': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa:log:80', 'hash': '0x5d507a3c9c5737afcf3b04a48b21ef86be8feb0c98d925137cd28e7ed9b0e1aa', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1419.6461384569764, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4cf58c4151ab180d97', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:00:35.000Z'}}, {'blockNum': '0x937640', 'uniqueId': '0x4582c2ae729ac1359956778992d40036ddb69ec4fd20c16d692837d810ac269d:log:59', 'hash': '0x4582c2ae729ac1359956778992d40036ddb69ec4fd20c16d692837d810ac269d', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5368.377562965068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123053466a22620ea15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:19.000Z'}}, {'blockNum': '0x937640', 'uniqueId': '0x4582c2ae729ac1359956778992d40036ddb69ec4fd20c16d692837d810ac269d:log:64', 'hash': '0x4582c2ae729ac1359956778992d40036ddb69ec4fd20c16d692837d810ac269d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 5368.377562965068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123053466a22620ea15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:19.000Z'}}, {'blockNum': '0x937641', 'uniqueId': '0x6ae8dfb4c40e8cf21e33719b23caf89e97129247819f2ddf14b4812fe81eef70:log:150', 'hash': '0x6ae8dfb4c40e8cf21e33719b23caf89e97129247819f2ddf14b4812fe81eef70', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x1f8ad723a8e141a07805a39ff828f6e9d46865d4', 'value': 14110.472595331794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02fcee2500f763d1ee79', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:22.000Z'}}, {'blockNum': '0x937641', 'uniqueId': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b:log:167', 'hash': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 8419.793557663243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8701bbeb76ffd9dc2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:22.000Z'}}, {'blockNum': '0x937641', 'uniqueId': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b:log:172', 'hash': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 8419.793557663243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8701bbeb76ffd9dc2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:22.000Z'}}, {'blockNum': '0x937641', 'uniqueId': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b:log:174', 'hash': '0xcbc3009b928cbc4b36b96a94e0935dde10748f1a629b7069da64ae9c0dfb853b', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 8419.793557663243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01c8701bbeb76ffd9dc2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:22.000Z'}}, {'blockNum': '0x937643', 'uniqueId': '0xf9609ab5897f6130dfe30d9870edca380622cf592067ccba31fd239eb6916d66:log:31', 'hash': '0xf9609ab5897f6130dfe30d9870edca380622cf592067ccba31fd239eb6916d66', 'from': '0x1f8ad723a8e141a07805a39ff828f6e9d46865d4', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 14110.472595331794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02fcee2500f763d1ee79', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:33.000Z'}}, {'blockNum': '0x937645', 'uniqueId': '0xc48595b20258d5270d7939ca080f3c7db70c49cedbac3f14bf06816a80437f5c:log:8', 'hash': '0xc48595b20258d5270d7939ca080f3c7db70c49cedbac3f14bf06816a80437f5c', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5073.672622917954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01130b5a211301195dac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:49.000Z'}}, {'blockNum': '0x937645', 'uniqueId': '0xc48595b20258d5270d7939ca080f3c7db70c49cedbac3f14bf06816a80437f5c:log:10', 'hash': '0xc48595b20258d5270d7939ca080f3c7db70c49cedbac3f14bf06816a80437f5c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 5073.672622917954, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01130b5a211301195dac', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:01:49.000Z'}}, {'blockNum': '0x937647', 'uniqueId': '0x59a88375279db6f240bd242cc0188fe6f32de8a96eef948f8c402ac3c0a0b4b8:log:3', 'hash': '0x59a88375279db6f240bd242cc0188fe6f32de8a96eef948f8c402ac3c0a0b4b8', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 4071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xdcb07962eae73c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:02:19.000Z'}}, {'blockNum': '0x937647', 'uniqueId': '0x4c7892eb5747751fc40c7da22cf14b39763231b581ceb8b43698b874eef74fa5:log:36', 'hash': '0x4c7892eb5747751fc40c7da22cf14b39763231b581ceb8b43698b874eef74fa5', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 4105.062394906345, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xde892f529d56ff93f0', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:02:19.000Z'}}, {'blockNum': '0x93764d', 'uniqueId': '0xcad313eeacea8bd5c15ee9e946fc26bd1e8233e135024fd2eaf30bdb7431e9ea:log:3', 'hash': '0xcad313eeacea8bd5c15ee9e946fc26bd1e8233e135024fd2eaf30bdb7431e9ea', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1206, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x41609cb25691180000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:03:14.000Z'}}, {'blockNum': '0x93764d', 'uniqueId': '0x7225133eadecc53fd4ff2b7360b6f6506ab72f7c83c7ac7bf68688f648bba5a9:log:35', 'hash': '0x7225133eadecc53fd4ff2b7360b6f6506ab72f7c83c7ac7bf68688f648bba5a9', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 5368.377562965068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123053466a22620ea15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:03:14.000Z'}}, {'blockNum': '0x93764d', 'uniqueId': '0x7225133eadecc53fd4ff2b7360b6f6506ab72f7c83c7ac7bf68688f648bba5a9:log:37', 'hash': '0x7225133eadecc53fd4ff2b7360b6f6506ab72f7c83c7ac7bf68688f648bba5a9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 5368.377562965068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0123053466a22620ea15', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:03:14.000Z'}}, {'blockNum': '0x937650', 'uniqueId': '0x66407615da84f17d3875337f4d6ba3e0581c114b4998ba7e953fc7ec0a98019f:log:105', 'hash': '0x66407615da84f17d3875337f4d6ba3e0581c114b4998ba7e953fc7ec0a98019f', 'from': '0x0602625932b3225953bf7f56cca521fdfa71e225', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 8531.7385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ce81a812a9800c4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:04:08.000Z'}}, {'blockNum': '0x937650', 'uniqueId': '0x9f8290c2da7b528a17f96dc5fef45f37eb24bd707113549b88fc7161707b0e01:log:109', 'hash': '0x9f8290c2da7b528a17f96dc5fef45f37eb24bd707113549b88fc7161707b0e01', 'from': '0x1fe919d72f733a5ca865dea0b0984b0cc2849c39', 'to': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'value': 2406.72523763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x827805ac3f67bd6c00', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:04:08.000Z'}}, {'blockNum': '0x937656', 'uniqueId': '0x4457966f0d28980c83fcdceab38489256cf09277faaa5ff490db880ec6871eb3:log:3', 'hash': '0x4457966f0d28980c83fcdceab38489256cf09277faaa5ff490db880ec6871eb3', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2672, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x90d972f32323c00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:21.000Z'}}, {'blockNum': '0x937656', 'uniqueId': '0x13f3a7151ba43487d63f80536ce6498249f9b0e3eb9089cfc8c43426249a73a3:log:52', 'hash': '0x13f3a7151ba43487d63f80536ce6498249f9b0e3eb9089cfc8c43426249a73a3', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 3074.3121029293034, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa6a8a6a935e942a789', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:21.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26:log:16', 'hash': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1764.559975097864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5fa8305c4fe450e5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26:log:21', 'hash': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1764.559975097864, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5fa8305c4fe450e5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26:log:22', 'hash': '0xdef4c6f79087d96c7dd5708ced28d6860b82d066e81bda10875e4f58332e3f26', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1764.88124043994, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5faca5b97045640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0x9de4df049f4ef83f84441040bfe59dd677aef8988315da877f40fd69a5fa77f2:log:110', 'hash': '0x9de4df049f4ef83f84441040bfe59dd677aef8988315da877f40fd69a5fa77f2', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1196.6884478105344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40df636af4e07b3182', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x937658', 'uniqueId': '0x9de4df049f4ef83f84441040bfe59dd677aef8988315da877f40fd69a5fa77f2:log:115', 'hash': '0x9de4df049f4ef83f84441040bfe59dd677aef8988315da877f40fd69a5fa77f2', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'value': 1196.6884478105344, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40df636af4e07b3182', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:37.000Z'}}, {'blockNum': '0x93765c', 'uniqueId': '0x7e26730a74100d1e94707d479d21dcd2801d0f594182ddd4c6ff940257cbd938:log:13', 'hash': '0x7e26730a74100d1e94707d479d21dcd2801d0f594182ddd4c6ff940257cbd938', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 1019.0125527988931, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x373da3d5cf8a0244f2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:05:58.000Z'}}, {'blockNum': '0x937660', 'uniqueId': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3:log:214', 'hash': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 3299.281712199125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb2dabb44e6c36e8d36', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:06:51.000Z'}}, {'blockNum': '0x937660', 'uniqueId': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3:log:219', 'hash': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'value': 3299.281712199125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb2dabb44e6c36e8d36', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:06:51.000Z'}}, {'blockNum': '0x937660', 'uniqueId': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3:log:221', 'hash': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3', 'from': '0xce5702e94ad38c061e44a4a049cc29261f992846', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3299.281712199125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb2dabb44e6c36e8d36', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:06:51.000Z'}}, {'blockNum': '0x937660', 'uniqueId': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3:log:222', 'hash': '0xc83134831fbc7d826f2ba2390827ea302560ec77925a22e793a1ce14bb364cc3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3299.281712199125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb2dabb44e6c36e8d36', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:06:51.000Z'}}, {'blockNum': '0x937661', 'uniqueId': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71:log:2', 'hash': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 1457.3991784962964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f0179ff35e9db03a4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:10.000Z'}}, {'blockNum': '0x937661', 'uniqueId': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71:log:4', 'hash': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1457.3991784962964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f0179ff35e9db03a4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:10.000Z'}}, {'blockNum': '0x937661', 'uniqueId': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71:log:5', 'hash': '0xd82d1dcf93039654e1f9eea02d7cd4a8bffd90ef967fd45cb739eaa18364ff71', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1457.3991784962964, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4f0179ff35e9db03a4', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:10.000Z'}}, {'blockNum': '0x937663', 'uniqueId': '0x194d1d899b42cfab356f3ffeb8ef878a97de0d04a7563854798316b6623505ee:log:6', 'hash': '0x194d1d899b42cfab356f3ffeb8ef878a97de0d04a7563854798316b6623505ee', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 3372.463033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb6d2538c7045789000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:22.000Z'}}, {'blockNum': '0x937665', 'uniqueId': '0x7ba8ea127bdbce721e79b2a242cef6b47531cb1ded967e160c65c76785804019:log:3', 'hash': '0x7ba8ea127bdbce721e79b2a242cef6b47531cb1ded967e160c65c76785804019', 'from': '0x1062a747393198f70f71ec65a582423dba7e5ab3', 'to': '0x63d118842d21a96b03bdc01672164afea93fd937', 'value': 1075, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3a469f3467e8ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:07:52.000Z'}}, {'blockNum': '0x93766d', 'uniqueId': '0x9a288a78472cabff1dab7f31492082b13fe6394bddd9211f1722f82f56f508c5:log:72', 'hash': '0x9a288a78472cabff1dab7f31492082b13fe6394bddd9211f1722f82f56f508c5', 'from': '0x00000319b4bf231cfb44d365863c878d2ff39d64', 'to': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'value': 1197, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x40e3b64605ae940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:09:57.000Z'}}, {'blockNum': '0x93767f', 'uniqueId': '0x03969566a81f40164eb1f58073a073d39024ba1082b7d7290edac78478f106f8:log:2', 'hash': '0x03969566a81f40164eb1f58073a073d39024ba1082b7d7290edac78478f106f8', 'from': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2419, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x83225e6396b5ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:12:42.000Z'}}, {'blockNum': '0x937693', 'uniqueId': '0xa9135052d77cbcaec92946e67ef5c01919d385c2b7b80e2abc6dd5382226af18:log:31', 'hash': '0xa9135052d77cbcaec92946e67ef5c01919d385c2b7b80e2abc6dd5382226af18', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 3372.463033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb6d2538c7045789000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:17:06.000Z'}}, {'blockNum': '0x937693', 'uniqueId': '0x49d1b19d0c65515732fd547de5b4b196e03c9f8b3d849d4701b71a03fdedbe55:log:33', 'hash': '0x49d1b19d0c65515732fd547de5b4b196e03c9f8b3d849d4701b71a03fdedbe55', 'from': '0xafb9875ea1ab955528c6c86b2273b911b7650d7e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2304, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x7ce66c50e284000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:17:06.000Z'}}, {'blockNum': '0x9376a7', 'uniqueId': '0x16b2fca42d5f10cdfb06f59433c710e673d434db9dc56a89d46cbe9f7f6f9b16:log:2', 'hash': '0x16b2fca42d5f10cdfb06f59433c710e673d434db9dc56a89d46cbe9f7f6f9b16', 'from': '0x46705dfff24256421a05d056c29e81bdc09723b8', 'to': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'value': 2398, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x81feef66d9fab80000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:20:56.000Z'}}, {'blockNum': '0x9376b0', 'uniqueId': '0x2093772a8a2e1babd7dd6f0e9ae9cbc897497b2e144cf9a59da007d871d6f5bf:log:171', 'hash': '0x2093772a8a2e1babd7dd6f0e9ae9cbc897497b2e144cf9a59da007d871d6f5bf', 'from': '0x63d118842d21a96b03bdc01672164afea93fd937', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 6352, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x015857b549a961400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:23:57.000Z'}}, {'blockNum': '0x9376b0', 'uniqueId': '0x72835387ec7acb3868b08e1ba3c2009f31f6c4d610a51913c1e545ca0a947eab:log:174', 'hash': '0x72835387ec7acb3868b08e1ba3c2009f31f6c4d610a51913c1e545ca0a947eab', 'from': '0x6a41d3597e780de1994859bb56d2492e700b8e6e', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 7489, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0195fac0bd93d4640000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:23:57.000Z'}}, {'blockNum': '0x9376b1', 'uniqueId': '0x9dbc2b3f87b31341f036fce77225f3f0a90727e27174182503862eafe671f463:log:70', 'hash': '0x9dbc2b3f87b31341f036fce77225f3f0a90727e27174182503862eafe671f463', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 669.9002200914208, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2450bbace3c1227eae', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:24:22.000Z'}}, {'blockNum': '0x9376b2', 'uniqueId': '0x6ad5e940eed2f089fd0d9ceebba5ba7d731a0b4ac76a250ac99add762db96739:log:0', 'hash': '0x6ad5e940eed2f089fd0d9ceebba5ba7d731a0b4ac76a250ac99add762db96739', 'from': '0xb9c764114c5619a95d7f232594e3b8dddf95b9cf', 'to': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'value': 2409.0979649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8298f34b20e4f8e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:24:56.000Z'}}, {'blockNum': '0x9376b4', 'uniqueId': '0x6650125b4ba63334eae07aa24d8bed8f275efeadc3ea5a5b65c75b5bec1cfd24:log:16', 'hash': '0x6650125b4ba63334eae07aa24d8bed8f275efeadc3ea5a5b65c75b5bec1cfd24', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1729.1804453323407, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5dbd33057069efaff5', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:25:06.000Z'}}, {'blockNum': '0x9376b5', 'uniqueId': '0x819a97b51eb11189b9bc9ee71cd505377ba11df6cdddfecb3145c6983e858623:log:35', 'hash': '0x819a97b51eb11189b9bc9ee71cd505377ba11df6cdddfecb3145c6983e858623', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1694.2439903044349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5bd85bccb14832bdd8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:25:38.000Z'}}, {'blockNum': '0x9376b5', 'uniqueId': '0x819a97b51eb11189b9bc9ee71cd505377ba11df6cdddfecb3145c6983e858623:log:37', 'hash': '0x819a97b51eb11189b9bc9ee71cd505377ba11df6cdddfecb3145c6983e858623', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1694.2439903044349, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5bd85bccb14832bdd8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:25:38.000Z'}}, {'blockNum': '0x9376e3', 'uniqueId': '0xc8b04e794e047331db1767b8ce1a2d55df4b31827ed2e1821dd6a47083f14a31:log:130', 'hash': '0xc8b04e794e047331db1767b8ce1a2d55df4b31827ed2e1821dd6a47083f14a31', 'from': '0xd9bef735923dffbfbd08d38115047c4c609bb6dd', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2409.0979649, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x8298f34b20e4f8e800', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:07.000Z'}}, {'blockNum': '0x9376e7', 'uniqueId': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b:log:21', 'hash': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.535785458645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a28171f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:59.000Z'}}, {'blockNum': '0x9376e7', 'uniqueId': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b:log:23', 'hash': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.535785458645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a28171f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:59.000Z'}}, {'blockNum': '0x9376e7', 'uniqueId': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b:log:28', 'hash': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:59.000Z'}}, {'blockNum': '0x9376e7', 'uniqueId': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b:log:30', 'hash': '0x88cbec64db14c0445839c1e96a35c978585cc6bc4e5c56084eb916ad45b18a8b', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:34:59.000Z'}}, {'blockNum': '0x9376f0', 'uniqueId': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6:log:21', 'hash': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1701.3014195409198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c3a4cd330f4569a09', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:37:25.000Z'}}, {'blockNum': '0x9376f0', 'uniqueId': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6:log:23', 'hash': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1701.3014195409198, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c3a4cd330f4569a09', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:37:25.000Z'}}, {'blockNum': '0x9376f0', 'uniqueId': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6:log:28', 'hash': '0x372d9ae279cd53e0e3ad299c42aab0cfd37828c960bb9807ec6267a9c82878a6', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1701.3014195409196, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c3a4cd330f4540000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:37:25.000Z'}}, {'blockNum': '0x937702', 'uniqueId': '0x623f6f0127dda4fe89d65ea73d5bd7fbca5dddc7b8957687bf2f6399f0344d09:log:10', 'hash': '0x623f6f0127dda4fe89d65ea73d5bd7fbca5dddc7b8957687bf2f6399f0344d09', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3388, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xb7a9f1f19b4f700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:41:26.000Z'}}, {'blockNum': '0x937711', 'uniqueId': '0x96fa617ae84e343a3e6a52d117fa45bf2d7808d85a53c692481439f561ecc100:log:165', 'hash': '0x96fa617ae84e343a3e6a52d117fa45bf2d7808d85a53c692481439f561ecc100', 'from': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 14110.472595331794, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02fcee2500f763d1ee79', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:44:26.000Z'}}, {'blockNum': '0x937727', 'uniqueId': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c:log:117', 'hash': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2b3086', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:50:13.000Z'}}, {'blockNum': '0x937727', 'uniqueId': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c:log:119', 'hash': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2b3086', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:50:13.000Z'}}, {'blockNum': '0x937727', 'uniqueId': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c:log:124', 'hash': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:50:13.000Z'}}, {'blockNum': '0x937727', 'uniqueId': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c:log:126', 'hash': '0x90d5cee4374be4db5e21dcccaf4821e4d9e5bac3f5bf8157151fd5174554595c', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:50:13.000Z'}}, {'blockNum': '0x937733', 'uniqueId': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774:log:125', 'hash': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.5357854586455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2cbb2a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:52:11.000Z'}}, {'blockNum': '0x937733', 'uniqueId': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774:log:127', 'hash': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.5357854586455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2cbb2a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:52:11.000Z'}}, {'blockNum': '0x937733', 'uniqueId': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774:log:132', 'hash': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:52:11.000Z'}}, {'blockNum': '0x937733', 'uniqueId': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774:log:134', 'hash': '0xb496dcdeef580e8c49d339ff4d000b96acf07a88d5848fcb28e306dc3c0c3774', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:52:11.000Z'}}, {'blockNum': '0x937736', 'uniqueId': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558:log:53', 'hash': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1139.3115216312697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dc31fa097ad98562f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:53:13.000Z'}}, {'blockNum': '0x937736', 'uniqueId': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558:log:55', 'hash': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1139.3115216312697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dc31fa097ad98562f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:53:13.000Z'}}, {'blockNum': '0x937736', 'uniqueId': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558:log:60', 'hash': '0xc62c405abb4dc9f9fab626583ffee69675825b045b37ce2f93fb13029a947558', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1139.3115216312697, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3dc31fa097ad98562f', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:53:13.000Z'}}, {'blockNum': '0x93773a', 'uniqueId': '0x6744c117c6c92f132d623a339ea2b02ca0c731bf6c7e518832a1406083c8fd4c:log:14', 'hash': '0x6744c117c6c92f132d623a339ea2b02ca0c731bf6c7e518832a1406083c8fd4c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'value': 9117, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x01ee3bca9c1054540000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:53:40.000Z'}}, {'blockNum': '0x937744', 'uniqueId': '0x734cca5626f7d4883241bf6f108c592698c473730713c970205ef13c2d031b08:log:5', 'hash': '0x734cca5626f7d4883241bf6f108c592698c473730713c970205ef13c2d031b08', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1780, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x607e765927e3500000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:56:04.000Z'}}, {'blockNum': '0x937758', 'uniqueId': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b:log:25', 'hash': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1132.4579681678613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6402ea077a004b38', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:59:38.000Z'}}, {'blockNum': '0x937758', 'uniqueId': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b:log:27', 'hash': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1132.4579681678613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6402ea077a004b38', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:59:38.000Z'}}, {'blockNum': '0x937758', 'uniqueId': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b:log:32', 'hash': '0x19e8f29cf85e846879d49c53d84fc64bbda01ff9f31e53c650021f6804770a8b', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1132.4579681678613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x3d6402ea077a004b38', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T16:59:38.000Z'}}, {'blockNum': '0x93776d', 'uniqueId': '0x2c004afe2d1656ca59dba939268c0bbde16de66ad1ac0f056bc8ccd35b3a13aa:log:55', 'hash': '0x2c004afe2d1656ca59dba939268c0bbde16de66ad1ac0f056bc8ccd35b3a13aa', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2969, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xa0f326e99056c40000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:04:50.000Z'}}, {'blockNum': '0x937778', 'uniqueId': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93:log:95', 'hash': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1722.7213803886134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5d638fd01829e5146b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:08:25.000Z'}}, {'blockNum': '0x937778', 'uniqueId': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93:log:97', 'hash': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1722.7213803886134, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5d638fd01829e5146b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:08:25.000Z'}}, {'blockNum': '0x937778', 'uniqueId': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93:log:102', 'hash': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:08:25.000Z'}}, {'blockNum': '0x937778', 'uniqueId': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93:log:104', 'hash': '0xd7f296d493c9de45350f29d4342a9782afbd696be8b565750bf40deeaaabbf93', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:08:25.000Z'}}, {'blockNum': '0x937788', 'uniqueId': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed:log:47', 'hash': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1385.0491445202736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4b156b0aa2e594d12d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:11:39.000Z'}}, {'blockNum': '0x937788', 'uniqueId': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed:log:49', 'hash': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1385.0491445202736, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4b156b0aa2e594d12d', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:11:39.000Z'}}, {'blockNum': '0x937788', 'uniqueId': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed:log:54', 'hash': '0x3e9fa90f956bd48365d2ec28146f1dd5c8e51732650f1070b779025e72de89ed', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1385.0491445202733, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4b156b0aa2e5900000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:11:39.000Z'}}, {'blockNum': '0x9377a1', 'uniqueId': '0x5c27a3d2695754ea7e3dba52faea511233112102dbb2030ee46f89d859fdec89:log:13', 'hash': '0x5c27a3d2695754ea7e3dba52faea511233112102dbb2030ee46f89d859fdec89', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2855, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9ac5158d8fcc3c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:16:57.000Z'}}, {'blockNum': '0x9377d9', 'uniqueId': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0:log:51', 'hash': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2b7f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:31:08.000Z'}}, {'blockNum': '0x9377d9', 'uniqueId': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0:log:53', 'hash': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2b7f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:31:08.000Z'}}, {'blockNum': '0x9377d9', 'uniqueId': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0:log:58', 'hash': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.535785458645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:31:08.000Z'}}, {'blockNum': '0x9377d9', 'uniqueId': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0:log:60', 'hash': '0xd9217af8749207c220105ed9f2b8d440ffb671c5001f9dac6a24b95776a774c0', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.535785458645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a280000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:31:08.000Z'}}, {'blockNum': '0x9377e4', 'uniqueId': '0x90f9f760e3e24f11c6a61ad2fb9886887ebaa9cc9d2f36bd45e67d0b17545125:log:118', 'hash': '0x90f9f760e3e24f11c6a61ad2fb9886887ebaa9cc9d2f36bd45e67d0b17545125', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef5004a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:33:27.000Z'}}, {'blockNum': '0x9377e4', 'uniqueId': '0x90f9f760e3e24f11c6a61ad2fb9886887ebaa9cc9d2f36bd45e67d0b17545125:log:120', 'hash': '0x90f9f760e3e24f11c6a61ad2fb9886887ebaa9cc9d2f36bd45e67d0b17545125', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x4e7ff3aa1713f2ec10c315382d4ed8e99a193589', 'value': 500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x1b1ae4d6e2ef5004a2', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:33:27.000Z'}}, {'blockNum': '0x9377ee', 'uniqueId': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b:log:15', 'hash': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1315.3891368900222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x474eb0fac5697222f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:35:12.000Z'}}, {'blockNum': '0x9377ee', 'uniqueId': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b:log:17', 'hash': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1315.3891368900222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x474eb0fac5697222f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:35:12.000Z'}}, {'blockNum': '0x9377ee', 'uniqueId': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b:log:22', 'hash': '0x51570ec913ccd3b9efc9b60ed186d7e5c99b751e13b1f9399a46406970048b4b', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1315.3891368900222, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x474eb0fac5697222f1', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:35:12.000Z'}}, {'blockNum': '0x9377fa', 'uniqueId': '0xab816b35f5ebe7b0ba3a709e6dd2411c96a60a778b13ed538ef5c7eee0b09e0b:log:7', 'hash': '0xab816b35f5ebe7b0ba3a709e6dd2411c96a60a778b13ed538ef5c7eee0b09e0b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x49ff2e2beb88340000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:36:44.000Z'}}, {'blockNum': '0x937809', 'uniqueId': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849:log:81', 'hash': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1707.5357854586455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2d69cc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:41:20.000Z'}}, {'blockNum': '0x937809', 'uniqueId': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849:log:83', 'hash': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1707.5357854586455, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2d69cc', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:41:20.000Z'}}, {'blockNum': '0x937809', 'uniqueId': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849:log:88', 'hash': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:41:20.000Z'}}, {'blockNum': '0x937809', 'uniqueId': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849:log:90', 'hash': '0x60ac205b1b0887e5cd1d134805dd54430246dd758f45b12d2555db5dec58d849', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1707.5357854586453, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5c90d1bdf65a2c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:41:20.000Z'}}, {'blockNum': '0x937823', 'uniqueId': '0xd8b36562229e80e15114fe5c2e05adb6add3d1e1fc129cfbd3ebcd61001388fb:log:6', 'hash': '0xd8b36562229e80e15114fe5c2e05adb6add3d1e1fc129cfbd3ebcd61001388fb', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3523, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xbefb724a58952c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:46:50.000Z'}}, {'blockNum': '0x937841', 'uniqueId': '0xdcb9c83de23bd10fac815dfa7fed30504a318e609977499b50166e6bdbc33be8:log:156', 'hash': '0xdcb9c83de23bd10fac815dfa7fed30504a318e609977499b50166e6bdbc33be8', 'from': '0x0a59d2b32dc7613596a4d46d069344d8a528dfcf', 'to': '0x976576fd6bd95fa72345f51efece3f0a4804725e', 'value': 237, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x0cd9092451f7940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T17:52:39.000Z'}}, {'blockNum': '0x93785c', 'uniqueId': '0xca499081288473c3a671384f882eab977e640b7062f292f6378b39cb3a6a1fc9:log:13', 'hash': '0xca499081288473c3a671384f882eab977e640b7062f292f6378b39cb3a6a1fc9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'value': 1971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6ad91ea931c6ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:00:36.000Z'}}, {'blockNum': '0x93787f', 'uniqueId': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7:log:28', 'hash': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1298.1914591840848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4660068e03c96324aa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:08:08.000Z'}}, {'blockNum': '0x93787f', 'uniqueId': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7:log:30', 'hash': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1298.1914591840848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4660068e03c96324aa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:08:08.000Z'}}, {'blockNum': '0x93787f', 'uniqueId': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7:log:35', 'hash': '0x91d83b5f6a98d93e807ef6caacb0a181aa082d41585f8213eade9d85e78cb2f7', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1298.1914591840848, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4660068e03c96324aa', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:08:08.000Z'}}, {'blockNum': '0x93788c', 'uniqueId': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22:log:155', 'hash': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1499.5111140031704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5149e5a56f7d3da981', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:10:41.000Z'}}, {'blockNum': '0x93788c', 'uniqueId': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22:log:157', 'hash': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1499.5111140031704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5149e5a56f7d3da981', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:10:41.000Z'}}, {'blockNum': '0x93788c', 'uniqueId': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22:log:162', 'hash': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1499.5111140031704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5149e5a56f7d3da981', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:10:41.000Z'}}, {'blockNum': '0x93788c', 'uniqueId': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22:log:164', 'hash': '0xbe7f811f6d2b05451ccb36a4801e5f110fcfbde22a65f173d9d6deb75324ab22', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1499.5111140031704, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5149e5a56f7d3da981', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:10:41.000Z'}}, {'blockNum': '0x937891', 'uniqueId': '0x5ddbca8b869375815c2e1f0ceac0b349d143a2c8e1812b4381464d1ededcbedd:log:8', 'hash': '0x5ddbca8b869375815c2e1f0ceac0b349d143a2c8e1812b4381464d1ededcbedd', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1728, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x5dacd13ca9e3000000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:11:58.000Z'}}, {'blockNum': '0x937933', 'uniqueId': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989:log:168', 'hash': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989', 'from': '0x99b856c2644277b24a335122abcef34a7f0f0abb', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 394.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x155e4e050f8d268000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:49:03.000Z'}}, {'blockNum': '0x937933', 'uniqueId': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989:log:170', 'hash': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 394.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x155e4e050f8d268000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:49:03.000Z'}}, {'blockNum': '0x937933', 'uniqueId': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989:log:171', 'hash': '0x4b0f989dcacc0b2504be38e79dbfdc7e42d9c67d454a4f4100a1067d6720d989', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 394.177, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x155e4e050f8d268000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:49:03.000Z'}}, {'blockNum': '0x93793f', 'uniqueId': '0xf7cb59259552f2c03a64bf1f2d05725ec180453d11bb1b637626a9a1cca735d3:log:8', 'hash': '0xf7cb59259552f2c03a64bf1f2d05725ec180453d11bb1b637626a9a1cca735d3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x668038452aa00635b53f13c67cebd169aec268ff', 'value': 77723.179, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x107561c93172ec578000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T18:51:59.000Z'}}, {'blockNum': '0x937968', 'uniqueId': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f:log:20', 'hash': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 795.1555720566533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b1b0013dee957dbf3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:02:33.000Z'}}, {'blockNum': '0x937968', 'uniqueId': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f:log:22', 'hash': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 795.1555720566533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b1b0013dee957dbf3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:02:33.000Z'}}, {'blockNum': '0x937968', 'uniqueId': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f:log:26', 'hash': '0xf7b76c41b0a599de809cc5a85da2520aacaa4db9b22088f9633b12f8ec6b792f', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 795.1555720566533, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b1b0013dee957dbf3', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:02:33.000Z'}}, {'blockNum': '0x937970', 'uniqueId': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9:log:120', 'hash': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1628.6871341214696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x584a930f54472ee7c8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:05:09.000Z'}}, {'blockNum': '0x937970', 'uniqueId': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9:log:122', 'hash': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1628.6871341214696, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x584a930f54472ee7c8', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:05:09.000Z'}}, {'blockNum': '0x937970', 'uniqueId': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9:log:127', 'hash': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1628.6871341214694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x584a930f54472c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:05:09.000Z'}}, {'blockNum': '0x937970', 'uniqueId': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9:log:129', 'hash': '0x6eb1f19dd87e0b9b0b554f2b8111be535e2a9e6c2402f5721912e9ebf47fa3d9', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 1628.6871341214694, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x584a930f54472c0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:05:09.000Z'}}, {'blockNum': '0x937977', 'uniqueId': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c:log:23', 'hash': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 802.3515500843154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b7edd53c2cfa76c6b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:17.000Z'}}, {'blockNum': '0x937977', 'uniqueId': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c:log:25', 'hash': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 802.3515500843154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b7edd53c2cfa76c6b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:17.000Z'}}, {'blockNum': '0x937977', 'uniqueId': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c:log:29', 'hash': '0x152d026b6930059af46c38b26f71539d7a6bf3170c5fde3fbd0c3e84a284c60c', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 802.3515500843154, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2b7edd53c2cfa76c6b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:17.000Z'}}, {'blockNum': '0x937978', 'uniqueId': '0x1203b1c150ed8ecb67d6f482e272c39a0e5e19c3a3de1bb8f0b6101d31cef070:log:0', 'hash': '0x1203b1c150ed8ecb67d6f482e272c39a0e5e19c3a3de1bb8f0b6101d31cef070', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2797, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x97a02c28dbdf940000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:20.000Z'}}, {'blockNum': '0x937978', 'uniqueId': '0x10b4193eb9eb0b02edeb01631ba127277848e04726a51bc4aa1efc0268cb368b:log:1', 'hash': '0x10b4193eb9eb0b02edeb01631ba127277848e04726a51bc4aa1efc0268cb368b', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'value': 2110.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x726e2a10a5b67b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:20.000Z'}}, {'blockNum': '0x937979', 'uniqueId': '0xdaa724e6953f54fe7908812880ffac0a587921dfd1f49c750588aebdbc5c008d:log:71', 'hash': '0xdaa724e6953f54fe7908812880ffac0a587921dfd1f49c750588aebdbc5c008d', 'from': '0x5ab9d116a53ef41063e3eae26a7ebe736720e9ba', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2110.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x726e2a10a5b67b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:28.000Z'}}, {'blockNum': '0x937979', 'uniqueId': '0xdaa724e6953f54fe7908812880ffac0a587921dfd1f49c750588aebdbc5c008d:log:73', 'hash': '0xdaa724e6953f54fe7908812880ffac0a587921dfd1f49c750588aebdbc5c008d', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 2110.867, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x726e2a10a5b67b8000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:07:28.000Z'}}, {'blockNum': '0x9379e8', 'uniqueId': '0x76e36579ef31aa62ca74f53cc36970f63fd125098b55696dd806e7d2012570f3:log:0', 'hash': '0x76e36579ef31aa62ca74f53cc36970f63fd125098b55696dd806e7d2012570f3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'value': 2138.839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x73f25a9271ffb58000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:35:01.000Z'}}, {'blockNum': '0x9379fb', 'uniqueId': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b:log:181', 'hash': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1001.9927058397598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x365171312d27594f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:39:36.000Z'}}, {'blockNum': '0x9379fb', 'uniqueId': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b:log:183', 'hash': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xa54da2581dd4828e4aa00638aab835119500a284', 'value': 1001.9927058397598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x365171312d27594f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:39:36.000Z'}}, {'blockNum': '0x9379fb', 'uniqueId': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b:log:188', 'hash': '0x264411791ad857b0cddbe1cd91189e71e2ddffdfb0a5c1f714c336d9cda9064b', 'from': '0xa54da2581dd4828e4aa00638aab835119500a284', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1001.9927058397598, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x365171312d27594f8a', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:39:36.000Z'}}, {'blockNum': '0x937a0b', 'uniqueId': '0x07e1c3b678710a211d6eaa2f66a7f87885ab2e2ee043aac8979ecb04f320d860:log:8', 'hash': '0x07e1c3b678710a211d6eaa2f66a7f87885ab2e2ee043aac8979ecb04f320d860', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 2832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9985e5236bc2400000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:44:01.000Z'}}, {'blockNum': '0x937a1a', 'uniqueId': '0x88cf3049fc6e6dbc8c9012a310a989e5cc637eda94628016742498a4bb7a98bc:log:4', 'hash': '0x88cf3049fc6e6dbc8c9012a310a989e5cc637eda94628016742498a4bb7a98bc', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x3195c3f94154364e897711e501e104f40d8e23fb', 'value': 1405.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4c32c1dfc250d10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:46:12.000Z'}}, {'blockNum': '0x937a36', 'uniqueId': '0x6c5a7043a7dec2d6292beec158414f110983bd0ce1003c618f117ef31635e226:log:85', 'hash': '0x6c5a7043a7dec2d6292beec158414f110983bd0ce1003c618f117ef31635e226', 'from': '0x3195c3f94154364e897711e501e104f40d8e23fb', 'to': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'value': 1405.61, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x4c32c1dfc250d10000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:51:10.000Z'}}, {'blockNum': '0x937a43', 'uniqueId': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4:log:68', 'hash': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 826.4997694141875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2ccdfd094c7ae8e009', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:54:12.000Z'}}, {'blockNum': '0x937a43', 'uniqueId': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4:log:70', 'hash': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 826.4997694141875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2ccdfd094c7ae8e009', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:54:12.000Z'}}, {'blockNum': '0x937a43', 'uniqueId': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4:log:71', 'hash': '0xf8d093d54f2cd6fe41c08efb9f6f0e188e17586fd87e5872773c666017bd17f4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 826.4997694141875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2ccdfd094c7ae8e009', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T19:54:12.000Z'}}, {'blockNum': '0x937ab1', 'uniqueId': '0x9d66f8af8da5908d91396c96ca4f5c20b2791fe186dea74d681ff2c200dabf24:log:86', 'hash': '0x9d66f8af8da5908d91396c96ca4f5c20b2791fe186dea74d681ff2c200dabf24', 'from': '0x36cedc3a9d969306af4f7ca2b83abbf74095914d', 'to': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'value': 12572, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02a9878c5eb072f00000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T20:17:45.000Z'}}, {'blockNum': '0x937ab3', 'uniqueId': '0x280f90ec3877a3ed22ebea91ee5ef4691e543c4c1290b4156047fca882392ca1:log:18', 'hash': '0x280f90ec3877a3ed22ebea91ee5ef4691e543c4c1290b4156047fca882392ca1', 'from': '0x460b94fe8b7899b4a5f7ea74e90536e2c5f70fcd', 'to': '0xab5c66752a9e8167967685f1450532fb96d5d24f', 'value': 1833, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x635dfc2c598b040000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T20:18:16.000Z'}}, {'blockNum': '0x937ab3', 'uniqueId': '0xc82ec2adf3fceffc699dea742f9a78fabf4b612bb868e4da07178c9e9def45af:log:27', 'hash': '0xc82ec2adf3fceffc699dea742f9a78fabf4b612bb868e4da07178c9e9def45af', 'from': '0xd3086890c26e34cb80602902dd3d27a733b117bd', 'to': '0xfdb16996831753d5331ff813c29a93c76834a0ad', 'value': 2138.839, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x73f25a9271ffb58000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T20:18:16.000Z'}}, {'blockNum': '0x937abd', 'uniqueId': '0x2578cf5973f928d6f138a9d02870355c061aca541fed3a1c142c6f95145664b3:log:114', 'hash': '0x2578cf5973f928d6f138a9d02870355c061aca541fed3a1c142c6f95145664b3', 'from': '0x45cee5decbd2840a5881534b2d07afe7f67c5705', 'to': '0xeee28d484628d41a82d01e21d12e2e78d69920da', 'value': 1971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6ad91ea931c6ec0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T20:21:45.000Z'}}, {'blockNum': '0x937bcc', 'uniqueId': '0x6d6d4c86ddc59d0f260fb5bb8d14ad53578b1d048bc3bf14f431bf03de7cb278:log:55', 'hash': '0x6d6d4c86ddc59d0f260fb5bb8d14ad53578b1d048bc3bf14f431bf03de7cb278', 'from': '0xc0606ca09ede5b17f9d1feefd86aee4185d1c321', 'to': '0x1baab4ad98dd56dd3d1c8f9ce961e01c7a9f3b2f', 'value': 11.094799686074442, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x99f8a5881e952346', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T21:19:21.000Z'}}, {'blockNum': '0x937bfc', 'uniqueId': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c:log:27', 'hash': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'value': 822.3352953907452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c9431da3d1f4900fb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T21:30:42.000Z'}}, {'blockNum': '0x937bfc', 'uniqueId': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c:log:29', 'hash': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c', 'from': '0x498aa5830da490c85dc4d92b410aab86edb26c17', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 822.3352953907452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c9431da3d1f4900fb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T21:30:42.000Z'}}, {'blockNum': '0x937bfc', 'uniqueId': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c:log:30', 'hash': '0x741f44d40861254a6d7ace4dac30912f695e9e64ca6a4c6960fe85594144088c', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 822.3352953907452, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x2c9431da3d1f4900fb', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T21:30:42.000Z'}}, {'blockNum': '0x937c82', 'uniqueId': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39:log:107', 'hash': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 622.8214360731127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21c3623c42548beadf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:02:14.000Z'}}, {'blockNum': '0x937c82', 'uniqueId': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39:log:109', 'hash': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 622.8214360731127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21c3623c42548beadf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:02:14.000Z'}}, {'blockNum': '0x937c82', 'uniqueId': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39:log:110', 'hash': '0x79089acdaec210f4072937e781249d42ccc6ccac2696627215f989d239abfd39', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 622.8214360731127, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x21c3623c42548beadf', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:02:14.000Z'}}, {'blockNum': '0x937c8e', 'uniqueId': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4:log:62', 'hash': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 1252.3909169451445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x43e46a578299139e5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:21.000Z'}}, {'blockNum': '0x937c8e', 'uniqueId': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4:log:67', 'hash': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'value': 1252.3909169451445, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x43e46a578299139e5c', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:21.000Z'}}, {'blockNum': '0x937c8e', 'uniqueId': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4:log:68', 'hash': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4', 'from': '0x8018280076d7fa2caa1147e441352e8a89e1ddbe', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 1252.5144620589613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x43e6214322f7dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:21.000Z'}}, {'blockNum': '0x937c8e', 'uniqueId': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4:log:69', 'hash': '0x08e96d360a37307652657b46bebd214d23ff37ad71774bb8e933b2b5e417afb4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 1252.5144620589613, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x43e6214322f7dc0000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:21.000Z'}}, {'blockNum': '0x937c8f', 'uniqueId': '0xef1a02f6d3d171c0a504c2e605a226997f47027ba07733835679e459e1df2932:log:0', 'hash': '0xef1a02f6d3d171c0a504c2e605a226997f47027ba07733835679e459e1df2932', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 2695.54893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9220418e34664a2000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:05:22.000Z'}}, {'blockNum': '0x937c9b', 'uniqueId': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a:log:183', 'hash': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a', 'from': '0x7d03cecb36820b4666f45e1b4ca2538724db271c', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 717.710576630642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26e83c2eda1a306b1b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:09:05.000Z'}}, {'blockNum': '0x937c9b', 'uniqueId': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a:log:185', 'hash': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 717.710576630642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26e83c2eda1a306b1b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:09:05.000Z'}}, {'blockNum': '0x937c9b', 'uniqueId': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a:log:186', 'hash': '0x8bcb239159a742dd0d4ec441a854732c99c0ba0ca1b78db133061bbab890b88a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 717.710576630642, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x26e83c2eda1a306b1b', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:09:05.000Z'}}, {'blockNum': '0x937cb4', 'uniqueId': '0x58b2b334b0beb2e11aa5a0880e3c6b75b446f3de0882f10bc9cf6a058dc5bbf3:log:9', 'hash': '0x58b2b334b0beb2e11aa5a0880e3c6b75b446f3de0882f10bc9cf6a058dc5bbf3', 'from': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 2695.54893, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x9220418e34664a2000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T22:14:05.000Z'}}, {'blockNum': '0x937d9d', 'uniqueId': '0x40c193421aac1e240e60ae6a41d358e068c02027bba381b5afede00a2cf3fea3:log:7', 'hash': '0x40c193421aac1e240e60ae6a41d358e068c02027bba381b5afede00a2cf3fea3', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x52de72e85d022281c05d5214cfcd54e6faa614e1', 'value': 1980, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6b56051582a9700000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T23:02:47.000Z'}}, {'blockNum': '0x937dc9', 'uniqueId': '0x2710365a991feee75b984d742cf58e1d853500852b093cfed18af76cb5268b3d:log:13', 'hash': '0x2710365a991feee75b984d742cf58e1d853500852b093cfed18af76cb5268b3d', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x52de72e85d022281c05d5214cfcd54e6faa614e1', 'value': 18891.05, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x040015fbbded6f110000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-13T23:13:07.000Z'}}, {'blockNum': '0x937f93', 'uniqueId': '0x22cba893e100f3d324114d1c2f65af4f767204b5def1afb12f1b599f2c1214e8:log:0', 'hash': '0x22cba893e100f3d324114d1c2f65af4f767204b5def1afb12f1b599f2c1214e8', 'from': '0xdaab399b7ca18ab5466f9c9c27686794a2a11049', 'to': '0xd328195291025563481dfb47978f70693251f5a5', 'value': 53.8625, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x02eb7e0a5fce7a4000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T00:47:09.000Z'}}, {'blockNum': '0x93800a', 'uniqueId': '0x65a2a50cd7dd930908d567be324a025a05a75250ab2b1b7ead9d23ec86b37825:log:140', 'hash': '0x65a2a50cd7dd930908d567be324a025a05a75250ab2b1b7ead9d23ec86b37825', 'from': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2021.2777493452847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d92dd1bd74ec0b5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:15:08.000Z'}}, {'blockNum': '0x93800a', 'uniqueId': '0x65a2a50cd7dd930908d567be324a025a05a75250ab2b1b7ead9d23ec86b37825:log:145', 'hash': '0x65a2a50cd7dd930908d567be324a025a05a75250ab2b1b7ead9d23ec86b37825', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'value': 2021.2777493452847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d92dd1bd74ec0b5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:15:08.000Z'}}, {'blockNum': '0x938015', 'uniqueId': '0xa4f12359f4e1c7a3221a158f51b572390aac9001ec41b4187001c69075d19a49:log:71', 'hash': '0xa4f12359f4e1c7a3221a158f51b572390aac9001ec41b4187001c69075d19a49', 'from': '0x0ce34f2d35b9553499a75bb5100f72326201747a', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 2021.2777493452847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d92dd1bd74ec0b5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:18:06.000Z'}}, {'blockNum': '0x938015', 'uniqueId': '0xa4f12359f4e1c7a3221a158f51b572390aac9001ec41b4187001c69075d19a49:log:73', 'hash': '0xa4f12359f4e1c7a3221a158f51b572390aac9001ec41b4187001c69075d19a49', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xb7246144f53ec44e0f845fd0deea85208acfc2c9', 'value': 2021.2777493452847, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0x6d92dd1bd74ec0b5ff', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:18:06.000Z'}}, {'blockNum': '0x9380a6', 'uniqueId': '0x0db27526311422ea9c49e640f2c675a22c23f8cc18f5e1f11c82d6224e2aea80:log:18', 'hash': '0x0db27526311422ea9c49e640f2c675a22c23f8cc18f5e1f11c82d6224e2aea80', 'from': '0x5c985e89dde482efe97ea9f1950ad149eb73829b', 'to': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'value': 4194.3638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe3607da5687d918000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T01:54:11.000Z'}}, {'blockNum': '0x9380e3', 'uniqueId': '0x29bd255a9037720aca925fb588c94cb4b0e258df9ac3c55b4a4a8daae5306e8a:log:39', 'hash': '0x29bd255a9037720aca925fb588c94cb4b0e258df9ac3c55b4a4a8daae5306e8a', 'from': '0x0b011e9f15402bd4f9445f586808b3c161c412f5', 'to': '0x876eabf441b2ee5b5b0554fd502a8e0600950cfa', 'value': 4194.3638, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RDN', 'category': 'erc20', 'rawContract': {'value': '0xe3607da5687d918000', 'address': '0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-14T02:08:15.000Z'}}]}}
Number of returned transfers:  199
Answer is complete
 
symbol             BRD
group              CCS
date        2020-03-24
hour             16:00
exchange       binance
Name: 1105, dtype: object
HERE
{'binance-smart-chain': '0x4950c48ccf576d185eb3a0820728a6cfe435d493'}
No contract for ethereum specified
{'algorand': '1054801592'}
No contract for ethereum specified
 Symbol: BRD, Contract: 0x558ec3152e2eb2174905cd19aea4e34a23de9ad6
Datetime timestamps:  2020-03-24 16:00:00 2020-03-24 04:00:00 2020-03-25 04:00:00
Unix timestamps:  1585018800.0 1585105200.0
Hex Block Numbers:  0x947e4d 0x9496f7
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x947f00', 'uniqueId': '0x43fa59f725694c612d62ddc116f087c04f8dd401aec4bd31013d4c59af6c9f6d:log:185', 'hash': '0x43fa59f725694c612d62ddc116f087c04f8dd401aec4bd31013d4c59af6c9f6d', 'from': '0x8e1e964b172e97556bef8c49b921e4f7be3b8b02', 'to': '0xc11098e261cf77704616a84e7b0d28673639f8e7', 'value': 29.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01a055690b49ac18c6', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T03:37:10.000Z'}}, {'blockNum': '0x948049', 'uniqueId': '0x19a23c059b9b13384d48adda778691c8b41c12498f3719d14a48e3ca569695ea:log:74', 'hash': '0x19a23c059b9b13384d48adda778691c8b41c12498f3719d14a48e3ca569695ea', 'from': '0xdb6ebefcc8ffdb1a9b775ff58d073345c1091358', 'to': '0x0d81ff2512d6c4d1b1c1765cd6562499d2617636', 'value': 1035, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x381b82a855c14c0037', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T04:45:17.000Z'}}, {'blockNum': '0x9481d4', 'uniqueId': '0x465cc598ab343eadd33ba28afbbf987cbba52a2b2a6cdde45a0d98fae1a180d7:log:30', 'hash': '0x465cc598ab343eadd33ba28afbbf987cbba52a2b2a6cdde45a0d98fae1a180d7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 466.35230293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1947f034aca802b400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:16:40.000Z'}}, {'blockNum': '0x9481fe', 'uniqueId': '0xeff6b8418d228f52cf625f57ab4da3a5ee1899fff47e614a73b66c66d6403479:log:135', 'hash': '0xeff6b8418d228f52cf625f57ab4da3a5ee1899fff47e614a73b66c66d6403479', 'from': '0x7c4711436386050706428174a5516a09c68e32f3', 'to': '0x6d727cf78ca5f13a1e2e7b922df9c9951096c808', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:25:33.000Z'}}, {'blockNum': '0x948202', 'uniqueId': '0xac1c5ad8c583c6f652a46a74ee37472bd76d6d0f3bfca4e7788bf738a526a5c2:log:9', 'hash': '0xac1c5ad8c583c6f652a46a74ee37472bd76d6d0f3bfca4e7788bf738a526a5c2', 'from': '0x6d727cf78ca5f13a1e2e7b922df9c9951096c808', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:27:44.000Z'}}, {'blockNum': '0x94821a', 'uniqueId': '0xbeda9e5c911ca5508c0853272f6e218eb9cd0fca4f832bef314b390f1792031b:log:79', 'hash': '0xbeda9e5c911ca5508c0853272f6e218eb9cd0fca4f832bef314b390f1792031b', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3635c9adc5dea00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:34:12.000Z'}}, {'blockNum': '0x948225', 'uniqueId': '0xd11674a48f07024d09bc0fdc49bb7a2c5d76dd5e4097154324b8331e5ff22736:log:119', 'hash': '0xd11674a48f07024d09bc0fdc49bb7a2c5d76dd5e4097154324b8331e5ff22736', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x6b9e834ac5ded49c4486078a117f5b87032d84ed', 'value': 466.35230293, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1947f034aca802b400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:36:34.000Z'}}, {'blockNum': '0x948273', 'uniqueId': '0x51bceca0d5721ed92cc899f6b2959db58d3d19029a2109807c38d1105f408041:log:36', 'hash': '0x51bceca0d5721ed92cc899f6b2959db58d3d19029a2109807c38d1105f408041', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2bb340c1aa2bbfbfa8e24db15e768391aec47e78', 'value': 502.83978031, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1b424dc4085902dc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T06:57:53.000Z'}}, {'blockNum': '0x9482a7', 'uniqueId': '0xf9f6ccd8fcdb0390e9bf950c3e26b7f423aac0ef48e551a2a7498260a4c582e1:log:44', 'hash': '0xf9f6ccd8fcdb0390e9bf950c3e26b7f423aac0ef48e551a2a7498260a4c582e1', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x2bb340c1aa2bbfbfa8e24db15e768391aec47e78', 'value': 1040.50518986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3867e905584bade800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T07:11:49.000Z'}}, {'blockNum': '0x948328', 'uniqueId': '0x30453df62776b70893ca00688919de4a701069890db4a1214b7a3925dee3aa4d:log:147', 'hash': '0x30453df62776b70893ca00688919de4a701069890db4a1214b7a3925dee3aa4d', 'from': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'to': '0xf9f175dea38e8fa8fb8fe8954835b99dcff49397', 'value': 170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x093739534d28680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T07:42:03.000Z'}}, {'blockNum': '0x94834b', 'uniqueId': '0x1817d124d8364e01a6dc9d5e7ccbd1447f5a91d605caae208e4317745288a94b:log:95', 'hash': '0x1817d124d8364e01a6dc9d5e7ccbd1447f5a91d605caae208e4317745288a94b', 'from': '0xa749dcfb3f58706726b8233b622762179679e5ca', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 4999.99987, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cefeea15d4de000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T07:51:23.000Z'}}, {'blockNum': '0x94836c', 'uniqueId': '0x37022461c7820f6ef206ad670a067674d060eccc6ce52903a8696965091544ea:log:66', 'hash': '0x37022461c7820f6ef206ad670a067674d060eccc6ce52903a8696965091544ea', 'from': '0xf9f175dea38e8fa8fb8fe8954835b99dcff49397', 'to': '0x7a8044be44e114ee073b384733252255871a5f06', 'value': 170, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x093739534d28680000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T07:56:57.000Z'}}, {'blockNum': '0x9483a5', 'uniqueId': '0x1d14b774d01ca96f9adb95c8fd263cbba4b145d57c9274f9f776f3b357c36b22:log:44', 'hash': '0x1d14b774d01ca96f9adb95c8fd263cbba4b145d57c9274f9f776f3b357c36b22', 'from': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'to': '0x2bbe23f7f801423f5612416fe75905b20d40f5a7', 'value': 4999.9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cefaef7382b8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T08:08:53.000Z'}}, {'blockNum': '0x9483b6', 'uniqueId': '0x70a5bc2bd7122638987822b11d73f065127d54cfea5ca580dbcc629565972699:log:51', 'hash': '0x70a5bc2bd7122638987822b11d73f065127d54cfea5ca580dbcc629565972699', 'from': '0x2bbe23f7f801423f5612416fe75905b20d40f5a7', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4999.9998, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x010f0cefaef7382b8000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T08:13:20.000Z'}}, {'blockNum': '0x948516', 'uniqueId': '0xee02d57a31a6eec81a3b55d58783a43245593d983f2e85d687ea2ff49fb9f184:log:80', 'hash': '0xee02d57a31a6eec81a3b55d58783a43245593d983f2e85d687ea2ff49fb9f184', 'from': '0x153fccafff5b409c2b38cd3fc12afc2aa2516606', 'to': '0x8605c8e295bcfc320f1fd03168fd24c97ce57a6c', 'value': 569.31530718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1edcd64784b84bb800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:31:04.000Z'}}, {'blockNum': '0x94851f', 'uniqueId': '0xf78652b008627673efff3deb1fc59b920e3494655aabbbf02f0f73eee13a865b:log:28', 'hash': '0xf78652b008627673efff3deb1fc59b920e3494655aabbbf02f0f73eee13a865b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xaf636f66ccdd6536aa7ef7a58c23c049e0aac621', 'value': 6.44778673, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x597b23de7d20a400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:33:42.000Z'}}, {'blockNum': '0x94852f', 'uniqueId': '0xe29d7a16dd503c15397a71325a77f24e9a838f57a8cb10abed3174cc588addc3:log:11', 'hash': '0xe29d7a16dd503c15397a71325a77f24e9a838f57a8cb10abed3174cc588addc3', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 14.44499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc876f2f540789c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:36:13.000Z'}}, {'blockNum': '0x948542', 'uniqueId': '0x39a5ef82b9346aa67c3741680135d1b6b20fc144185e1622d90dcba531baa9f3:log:24', 'hash': '0x39a5ef82b9346aa67c3741680135d1b6b20fc144185e1622d90dcba531baa9f3', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xaccd89e6b33330c50627a33e93235e86c0942056', 'value': 14.44499999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xc876f2f540789c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:42:14.000Z'}}, {'blockNum': '0x948564', 'uniqueId': '0x89c36d18fd1e34a3ae5e84b6c6cb0dbf62e9cd610c0036ce6d715a267d172a6c:log:87', 'hash': '0x89c36d18fd1e34a3ae5e84b6c6cb0dbf62e9cd610c0036ce6d715a267d172a6c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 94.15846348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051ab60fa981fdb000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T09:48:04.000Z'}}, {'blockNum': '0x9485a2', 'uniqueId': '0x16c17f0e65954ad483b77da4cd5af652f966ff146bc2a94c467e2ca93884f274:log:110', 'hash': '0x16c17f0e65954ad483b77da4cd5af652f966ff146bc2a94c467e2ca93884f274', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x02937a7ffc9e82a8dc2b2de3521ed26471b33225', 'value': 94.15846348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x051ab60fa981fdb000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T10:01:26.000Z'}}, {'blockNum': '0x9485c6', 'uniqueId': '0xe6bb3ad089b7363edea72fefcb04101aa1a4f947bbe2ae8fda0c578a87fd5f76:log:30', 'hash': '0xe6bb3ad089b7363edea72fefcb04101aa1a4f947bbe2ae8fda0c578a87fd5f76', 'from': '0xb117b8fe4037015af6c835d534c20906d5eec939', 'to': '0x591b1b182dfc7bd1557963b87c73f49dd0ff8198', 'value': 1025.63300104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3799846468cb0b2000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T10:10:10.000Z'}}, {'blockNum': '0x9485e3', 'uniqueId': '0x5d3ced0349816488f2982b459d15003a24cae5aafa64aca097a48325c5779768:log:92', 'hash': '0x5d3ced0349816488f2982b459d15003a24cae5aafa64aca097a48325c5779768', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xbf6351fe35421637e70ec64fe07b3947c84f4c49', 'value': 47.62040128, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0294dda6a913f50000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T10:17:48.000Z'}}, {'blockNum': '0x94866b', 'uniqueId': '0xd266ebf6b9fbbfa0cd6d4c21f2bd8d049e99afee9a58db50989f25dc6ff3308c:log:47', 'hash': '0xd266ebf6b9fbbfa0cd6d4c21f2bd8d049e99afee9a58db50989f25dc6ff3308c', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xead341283955bc1b299df7018a23a1debd3e58b5', 'value': 1153.04432365, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3e81b45744deca1400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T10:49:20.000Z'}}, {'blockNum': '0x94872f', 'uniqueId': '0x21c5ae07c96886be605f92a9746c95ced3eff26b7d0abcea08513bf1182f74f7:log:60', 'hash': '0x21c5ae07c96886be605f92a9746c95ced3eff26b7d0abcea08513bf1182f74f7', 'from': '0xbf7a1be23f0dc414ae8cd0d8ef10a0b3cf8b7e61', 'to': '0xf004514ed12a020a8144b0e06b181bf04872a1f5', 'value': 933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3293f9dcc10f740000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T11:35:14.000Z'}}, {'blockNum': '0x94878b', 'uniqueId': '0xd957f5359df69d699cc26e0dea779480f919ade3c631cda0b6b110ec8f29b592:log:85', 'hash': '0xd957f5359df69d699cc26e0dea779480f919ade3c631cda0b6b110ec8f29b592', 'from': '0xf004514ed12a020a8144b0e06b181bf04872a1f5', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 933, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3293f9dcc10f740000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T11:54:05.000Z'}}, {'blockNum': '0x94894b', 'uniqueId': '0x3b427e285563af772f93dde7dec60e834ba4a3df5362b4a79ad65032b1b35286:log:58', 'hash': '0x3b427e285563af772f93dde7dec60e834ba4a3df5362b4a79ad65032b1b35286', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc57a3a439abb586d2a7f4d4d8a3820efdd6b9a4d', 'value': 32.36955071, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01c137bede988b1c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T13:37:15.000Z'}}, {'blockNum': '0x94894b', 'uniqueId': '0xfa6ad49ba359913a56d6d83b6390ff25adc01881800402e5a13c12026fc95ead:log:59', 'hash': '0xfa6ad49ba359913a56d6d83b6390ff25adc01881800402e5a13c12026fc95ead', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc57a3a439abb586d2a7f4d4d8a3820efdd6b9a4d', 'value': 33.15119824, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x01cc10b7281dc14000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T13:37:15.000Z'}}, {'blockNum': '0x9489d3', 'uniqueId': '0xc16acccf038c08acc73c4e463deb065cf728942a4981ca2ffd2772da50960bc9:log:14', 'hash': '0xc16acccf038c08acc73c4e463deb065cf728942a4981ca2ffd2772da50960bc9', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 87.35099526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04bc3d136231215800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T14:10:27.000Z'}}, {'blockNum': '0x9489f1', 'uniqueId': '0xc0e3067c1675eb2bcb27979414ae6118c59a33af535511d54e2fc75c751131bf:log:105', 'hash': '0xc0e3067c1675eb2bcb27979414ae6118c59a33af535511d54e2fc75c751131bf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x02937a7ffc9e82a8dc2b2de3521ed26471b33225', 'value': 87.35099526, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04bc3d136231215800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T14:16:06.000Z'}}, {'blockNum': '0x948a12', 'uniqueId': '0x8ad41f938d5808bd041ef923cbd4aafa6c6ac97a91fec0fd2d41c0a95c30081b:log:176', 'hash': '0x8ad41f938d5808bd041ef923cbd4aafa6c6ac97a91fec0fd2d41c0a95c30081b', 'from': '0xcaa19d40a6bf34eb0080edd42ff4374b623581fc', 'to': '0x932c2071fa44afb6bc9eb8611e2aef7f09216e96', 'value': 835.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2d4ae44754cede0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T14:24:04.000Z'}}, {'blockNum': '0x948af1', 'uniqueId': '0x81e24743460abd0e772581ef7eb5936f04daa0d1fbeb3080897aed12e6f168f4:log:196', 'hash': '0x81e24743460abd0e772581ef7eb5936f04daa0d1fbeb3080897aed12e6f168f4', 'from': '0x60f0045a7777c4981651af3216164b6fd6bd2f4d', 'to': '0x428770c89cb740052d1b6fe95c3e8de52d08fce6', 'value': 1009.55, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x36ba52182cc39b0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T15:16:20.000Z'}}, {'blockNum': '0x948b63', 'uniqueId': '0x7a9088b9d5812958d20ed13622ee89bc516633a3cf8d6d5da7c2ad1feafd555f:log:110', 'hash': '0x7a9088b9d5812958d20ed13622ee89bc516633a3cf8d6d5da7c2ad1feafd555f', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x510aa333f5459499f4fcbbebc316e497bc280df5', 'value': 933.0297858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x329463aec80bcdd000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T15:42:39.000Z'}}, {'blockNum': '0x948b96', 'uniqueId': '0xb5a466e1c84feaf30f452571b5a922f16a5a463eb3e63d86d208689a4383222e:log:159', 'hash': '0xb5a466e1c84feaf30f452571b5a922f16a5a463eb3e63d86d208689a4383222e', 'from': '0xe6a054abd78099361b3b6b380f6d09e86b560cfb', 'to': '0xa749dcfb3f58706726b8233b622762179679e5ca', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T15:56:01.000Z'}}, {'blockNum': '0x948bb5', 'uniqueId': '0x16fac66f602ec9b152db8ef7e918ac23f10f8ae5d05f90402c27b91a7626e70b:log:17', 'hash': '0x16fac66f602ec9b152db8ef7e918ac23f10f8ae5d05f90402c27b91a7626e70b', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'value': 1260, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x444e033c3be0300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:01:38.000Z'}}, {'blockNum': '0x948bba', 'uniqueId': '0x1a87f86407b56069f9fbedd55203b5f59c70e3fd5c1cb9f5dc1ea57239274d09:log:61', 'hash': '0x1a87f86407b56069f9fbedd55203b5f59c70e3fd5c1cb9f5dc1ea57239274d09', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'value': 4045.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdb51a4c8db555c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:03:53.000Z'}}, {'blockNum': '0x948bdb', 'uniqueId': '0xaa5b6a01ccad599659fee06303752158c5d3101f125b4f30c70265c6b1291a44:log:6', 'hash': '0xaa5b6a01ccad599659fee06303752158c5d3101f125b4f30c70265c6b1291a44', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 74.39474714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04086f3c5d12b52800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:12:12.000Z'}}, {'blockNum': '0x948be2', 'uniqueId': '0x1be5906664327af522545e0005f19b624aaa223d33f1459d27fa954faa0be6df:log:19', 'hash': '0x1be5906664327af522545e0005f19b624aaa223d33f1459d27fa954faa0be6df', 'from': '0xc045ff958c6aa9832c0db1c2c4863788e8600c91', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4045.72, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdb51a4c8db555c0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:14:03.000Z'}}, {'blockNum': '0x948c09', 'uniqueId': '0xced051cd74e5e17cd6fbc3b42af63d63d962364e1474e0dd4806ab7e13ed350d:log:28', 'hash': '0xced051cd74e5e17cd6fbc3b42af63d63d962364e1474e0dd4806ab7e13ed350d', 'from': '0xa2e2ceb0d5b2ebbb5fb8a948cfe1917cfe890721', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1260, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x444e033c3be0300000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:23:52.000Z'}}, {'blockNum': '0x948c1e', 'uniqueId': '0xc1741c0f686353befad3870031519a620d953c670e7797ee760a8532e59d18ae:log:66', 'hash': '0xc1741c0f686353befad3870031519a620d953c670e7797ee760a8532e59d18ae', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x7b892f5ff5fd8f5d48bc6da88c95a03fbe76f708', 'value': 148.34535854, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x080ab4959feea8f800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:29:18.000Z'}}, {'blockNum': '0x948c41', 'uniqueId': '0x9b45d69c73493acb1a4b2c4211fee38252667a2f83fdb2ce74ddca4b8f4231ee:log:143', 'hash': '0x9b45d69c73493acb1a4b2c4211fee38252667a2f83fdb2ce74ddca4b8f4231ee', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x02937a7ffc9e82a8dc2b2de3521ed26471b33225', 'value': 74.39474714, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x04086f3c5d12b52800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:38:11.000Z'}}, {'blockNum': '0x948c49', 'uniqueId': '0xdec8cabba3b2ac1791a229d57761eec7c40d16a676623805c33bc7b56167ff96:log:93', 'hash': '0xdec8cabba3b2ac1791a229d57761eec7c40d16a676623805c33bc7b56167ff96', 'from': '0xeefb83507f4d7c5c9357e2803d3e68db08effe4b', 'to': '0x41d76effb5e82c81514b9a85cfe3d3f42e621065', 'value': 1020, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x374b57f3cef2700000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:40:02.000Z'}}, {'blockNum': '0x948c5d', 'uniqueId': '0xf4680b4824d0ae17216ce2dc5b52e47421c1d23a32c66af2363259e778b1af5c:log:4', 'hash': '0xf4680b4824d0ae17216ce2dc5b52e47421c1d23a32c66af2363259e778b1af5c', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1271.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x44e971a0e4cc900000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:44:22.000Z'}}, {'blockNum': '0x948c5d', 'uniqueId': '0xaaae420f62ea73ea613695174a7d6ed9b215ba57c4e22a1f25336d5fcfa3f57f:log:6', 'hash': '0xaaae420f62ea73ea613695174a7d6ed9b215ba57c4e22a1f25336d5fcfa3f57f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 858.595, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2e8b663377fe838000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:44:22.000Z'}}, {'blockNum': '0x948c60', 'uniqueId': '0xeaf123962bd92f548a23fbb01f760fdbe82c4ef283e33335f2ef4e7127a149cb:log:10', 'hash': '0xeaf123962bd92f548a23fbb01f760fdbe82c4ef283e33335f2ef4e7127a149cb', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 479.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x19fdd819b648ca0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T16:45:10.000Z'}}, {'blockNum': '0x948cb9', 'uniqueId': '0xfc4199d11e6c9cf3ed3d70ace57a0a4361717323028c7e7e9b872f20e924567a:log:7', 'hash': '0xfc4199d11e6c9cf3ed3d70ace57a0a4361717323028c7e7e9b872f20e924567a', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 329.5980949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11de17a906a7fd0800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:03:21.000Z'}}, {'blockNum': '0x948cde', 'uniqueId': '0x06a123cf3ce67cf8c97bc37d4cad6d57c2e5ac24ec042458c5a7dcf06c5e090a:log:20', 'hash': '0x06a123cf3ce67cf8c97bc37d4cad6d57c2e5ac24ec042458c5a7dcf06c5e090a', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1273.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4505330e4c1b580000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:13:15.000Z'}}, {'blockNum': '0x948d03', 'uniqueId': '0xb6b7cca8001d982f1d1a4fd6bb51a0cd9977198621e465aa73cec245193014aa:log:248', 'hash': '0xb6b7cca8001d982f1d1a4fd6bb51a0cd9977198621e465aa73cec245193014aa', 'from': '0xa749dcfb3f58706726b8233b622762179679e5ca', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 6000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x014542ba12a337c00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:22:22.000Z'}}, {'blockNum': '0x948d30', 'uniqueId': '0x6eaae03fc86edf7c5a8fbf61b44ee6a9e9f857a8888aeef88749ea44105193f9:log:7', 'hash': '0x6eaae03fc86edf7c5a8fbf61b44ee6a9e9f857a8888aeef88749ea44105193f9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x4588f61e1447302905056ed0cfa84286bab5d0fe', 'value': 2082.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x70e3f020a76ff60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:34:12.000Z'}}, {'blockNum': '0x948d40', 'uniqueId': '0x3f8e406fdb62f493ab8595726956d1d105f6a51f8867f07db9ad9ffef680b078:log:19', 'hash': '0x3f8e406fdb62f493ab8595726956d1d105f6a51f8867f07db9ad9ffef680b078', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1270.37267068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x44ddf65d42b5b27000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:38:29.000Z'}}, {'blockNum': '0x948d4d', 'uniqueId': '0x75a8c9d42860912871c90fc1417a04d8bc53a53451181811ca869aab31da5c2d:log:25', 'hash': '0x75a8c9d42860912871c90fc1417a04d8bc53a53451181811ca869aab31da5c2d', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1705.11668749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5c6f3f612d40329400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:40:31.000Z'}}, {'blockNum': '0x948d5f', 'uniqueId': '0xa653f54c6c1789ad39ba5feedd2baadcbe7f91371101ff579730e36718ad00f2:log:17', 'hash': '0xa653f54c6c1789ad39ba5feedd2baadcbe7f91371101ff579730e36718ad00f2', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 26048, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0584109de7c7ff000000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:45:13.000Z'}}, {'blockNum': '0x948d60', 'uniqueId': '0x1da6f226604aeb79c6d76cabab2a24c697959df2206438d57e2861c21d92ab3f:log:89', 'hash': '0x1da6f226604aeb79c6d76cabab2a24c697959df2206438d57e2861c21d92ab3f', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xa100ed87c1b73620f022d83e017f0a7bf9c39384', 'value': 1705.11668749, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x5c6f3f612d40329400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:45:50.000Z'}}, {'blockNum': '0x948d65', 'uniqueId': '0x9f14300ff600464295d0307d156638ea5bb368e65116cdbfac0f52eb2cc0d1f5:log:23', 'hash': '0x9f14300ff600464295d0307d156638ea5bb368e65116cdbfac0f52eb2cc0d1f5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 521.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x1c44b6132fbf320000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:47:15.000Z'}}, {'blockNum': '0x948d65', 'uniqueId': '0x452a23fea0c60b4f2c7875114e94b787695cd0fc8fe8314a37539c4c3c97b29f:log:30', 'hash': '0x452a23fea0c60b4f2c7875114e94b787695cd0fc8fe8314a37539c4c3c97b29f', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 892.122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x305cae0855c7090000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:47:15.000Z'}}, {'blockNum': '0x948d70', 'uniqueId': '0x45b824d518555000b56cbf64708d4aa021f64422ad87d86a0a2f456d71378a76:log:40', 'hash': '0x45b824d518555000b56cbf64708d4aa021f64422ad87d86a0a2f456d71378a76', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1004.7181072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x367743c34612d68000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:50:04.000Z'}}, {'blockNum': '0x948d77', 'uniqueId': '0xc85edc158467c65eaabfde4ed3d8598543e1a780e780d91d10b457778f8bd896:log:21', 'hash': '0xc85edc158467c65eaabfde4ed3d8598543e1a780e780d91d10b457778f8bd896', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1314.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x473ccd0b998cd20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:52:09.000Z'}}, {'blockNum': '0x948d8a', 'uniqueId': '0x913516c00da9e8e2aeb323592e885001af99e6107e998a536a3425eabc0b7864:log:55', 'hash': '0x913516c00da9e8e2aeb323592e885001af99e6107e998a536a3425eabc0b7864', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x02937a7ffc9e82a8dc2b2de3521ed26471b33225', 'value': 329.5980949, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11de17a906a7fd0800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:56:54.000Z'}}, {'blockNum': '0x948d8c', 'uniqueId': '0x47fa4275ed9a0b9f5e42ca754792a9de567c0cf9cf409a0ee00fa4c2644ac55a:log:35', 'hash': '0x47fa4275ed9a0b9f5e42ca754792a9de567c0cf9cf409a0ee00fa4c2644ac55a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xac4b2fdb32470318c38cd74735a6c9d09477da90', 'value': 1270.37267068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x44ddf65d42b5b27000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:57:06.000Z'}}, {'blockNum': '0x948d92', 'uniqueId': '0x70952e07f35cdcb54b25fe17fde61e875d83ca7e4c2d04c5a2165293f9403ecb:log:4', 'hash': '0x70952e07f35cdcb54b25fe17fde61e875d83ca7e4c2d04c5a2165293f9403ecb', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x32f20cce59da8bab16921e04de482d07c73e9ede', 'value': 2883.56618311, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x9c518505c0088c3c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:58:34.000Z'}}, {'blockNum': '0x948d96', 'uniqueId': '0x199e6167b1a1d140d0c05e3d6676266ca802b9ac0ccbc7511850871f554f3d85:log:18', 'hash': '0x199e6167b1a1d140d0c05e3d6676266ca802b9ac0ccbc7511850871f554f3d85', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 448.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x184fa1f9f503ae0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T17:59:23.000Z'}}, {'blockNum': '0x948da2', 'uniqueId': '0x8026fdba08af247e2f06d50bc05e6684e0fdb1e32476256800b87952246f07ee:log:3', 'hash': '0x8026fdba08af247e2f06d50bc05e6684e0fdb1e32476256800b87952246f07ee', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x945dd0eaca3ca61a60cf61ec7939466d673a75b0', 'value': 890.563, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x30470b5a1852338000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:01:32.000Z'}}, {'blockNum': '0x948ddb', 'uniqueId': '0x43fc349ece14fd193baa480c434f5560c7d8c9e07ffc1f6dc5b047ed6399040d:log:1', 'hash': '0x43fc349ece14fd193baa480c434f5560c7d8c9e07ffc1f6dc5b047ed6399040d', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 781.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a5cefa1a5c0c20000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:12:28.000Z'}}, {'blockNum': '0x948de0', 'uniqueId': '0xbb04d6c3a0a015b7bb870189a80ce0ca7134e0787f21ac885eb06bdc9773f8d4:log:16', 'hash': '0xbb04d6c3a0a015b7bb870189a80ce0ca7134e0787f21ac885eb06bdc9773f8d4', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xb86b578fadce0dd2129e121092166797b4cbb9eb', 'value': 422.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x16e6cf6bb603860000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:13:24.000Z'}}, {'blockNum': '0x948dea', 'uniqueId': '0xcd508d545d04727a7a0cdf2cae3d351b915a43f552ad84976b0c4da25056c02d:log:0', 'hash': '0xcd508d545d04727a7a0cdf2cae3d351b915a43f552ad84976b0c4da25056c02d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8e7727792b07362c7603bb47c04cddd4ee2a6802', 'value': 1358.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x499f6c727a52020000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:15:46.000Z'}}, {'blockNum': '0x948e00', 'uniqueId': '0x0f46e5ccf361032ddd8634c3a4a9f604d19d78fb8a03aa450081e33654923e6b:log:19', 'hash': '0x0f46e5ccf361032ddd8634c3a4a9f604d19d78fb8a03aa450081e33654923e6b', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1309.45711862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x46fc5e37956fa51800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:22:35.000Z'}}, {'blockNum': '0x948e01', 'uniqueId': '0x49cf5676a5897a910f9a070b38dabee52fd956a51d7a01e5dd6245952135d5db:log:34', 'hash': '0x49cf5676a5897a910f9a070b38dabee52fd956a51d7a01e5dd6245952135d5db', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5de57fe19fbdc61f6c280414365c4690293632f4', 'value': 1004.7181072, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x367743c34612d68000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:23:25.000Z'}}, {'blockNum': '0x948e9a', 'uniqueId': '0x985d73c30947c95ab70ee518f2bfb6cf66ff590ddc207853b5458d2175b63443:log:8', 'hash': '0x985d73c30947c95ab70ee518f2bfb6cf66ff590ddc207853b5458d2175b63443', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xbeeaf538337cb491d65a66b09e27712e7f489db5', 'value': 1309.45711862, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x46fc5e37956fa51800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T18:57:10.000Z'}}, {'blockNum': '0x948ee2', 'uniqueId': '0x3ef5929c4a7b8c3f352e0161b5fedf56876ce7fa719cd597500c5435084935e9:log:23', 'hash': '0x3ef5929c4a7b8c3f352e0161b5fedf56876ce7fa719cd597500c5435084935e9', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 313.60549333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11002686a169c8b400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:13:57.000Z'}}, {'blockNum': '0x948efd', 'uniqueId': '0x614aebdaca7e0ddc7a6acce02840d38f39793b61951bae4068828b950feea05e:log:56', 'hash': '0x614aebdaca7e0ddc7a6acce02840d38f39793b61951bae4068828b950feea05e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xade13fb86b28817deef095cfab204c4e472974f0', 'value': 313.60549333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x11002686a169c8b400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:22:08.000Z'}}, {'blockNum': '0x948f02', 'uniqueId': '0x8118ea89c2249b3a25e3dd5fd63e9302193cb1f86ee96177383160a225194a8d:log:2', 'hash': '0x8118ea89c2249b3a25e3dd5fd63e9302193cb1f86ee96177383160a225194a8d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 256.742564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0deb04d1ad76fe4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:23:14.000Z'}}, {'blockNum': '0x948f16', 'uniqueId': '0x3fcb6cab9eb0bd5faf647bc4b0631f99f6a0397c8079cd06960a487ad774181e:log:111', 'hash': '0x3fcb6cab9eb0bd5faf647bc4b0631f99f6a0397c8079cd06960a487ad774181e', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5a5f1208d28dffcaf68b64f24eb7e009b88b4e25', 'value': 256.742564, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0deb04d1ad76fe4000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:28:22.000Z'}}, {'blockNum': '0x948f3b', 'uniqueId': '0x7403bc16a9b70eed2595b9cf11f6398c63d52b9d362830d7b8d9adfdbfe2b694:log:3', 'hash': '0x7403bc16a9b70eed2595b9cf11f6398c63d52b9d362830d7b8d9adfdbfe2b694', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0c78dd23d11bd1899b4b31b233105b3a98d9f3e8', 'value': 1051.46413938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x38ffff07deceb78800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T19:37:28.000Z'}}, {'blockNum': '0x948ff2', 'uniqueId': '0x264b12a997d3e447d9b941479e0fdca9a6363e1238008f9d9a1498f6c6dfd6c8:log:4', 'hash': '0x264b12a997d3e447d9b941479e0fdca9a6363e1238008f9d9a1498f6c6dfd6c8', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 156.95054706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0882205afdce878800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T20:21:05.000Z'}}, {'blockNum': '0x94900e', 'uniqueId': '0xfed43b7e99e7203e8ab2f2febef9f0fc3e3e854025cbaae0f4ae8400a9662ec9:log:172', 'hash': '0xfed43b7e99e7203e8ab2f2febef9f0fc3e3e854025cbaae0f4ae8400a9662ec9', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0xd67a404f3e1d69c38590c11418b4691e3d4804ec', 'value': 156.95054706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0882205afdce878800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T20:26:18.000Z'}}, {'blockNum': '0x94909b', 'uniqueId': '0xbee5e1625bf15461bc3fe88e95df15fb0b3c9317dd2e80a68aa915f7ce0e9afb:log:0', 'hash': '0xbee5e1625bf15461bc3fe88e95df15fb0b3c9317dd2e80a68aa915f7ce0e9afb', 'from': '0xd941a3c75a0df5924561d8bb9aa63d0bee9d4f89', 'to': '0x27dc29f2d763b5a7c60e8a19d38fbe6644f8434c', 'value': 49.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x02ab109138a4ba0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T20:56:30.000Z'}}, {'blockNum': '0x9490bc', 'uniqueId': '0x86f4a95b42ffb2cc644d008718d837d2e2cbd914823f1dc89e4583d31d61a0b0:log:42', 'hash': '0x86f4a95b42ffb2cc644d008718d837d2e2cbd914823f1dc89e4583d31d61a0b0', 'from': '0x5de57fe19fbdc61f6c280414365c4690293632f4', 'to': '0xe5a7a575c192380ab95b48780763fbbf000f10b8', 'value': 1004.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3677036edf0af60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:02:15.000Z'}}, {'blockNum': '0x9490c1', 'uniqueId': '0x7317994cde37450a6190170cb715a180c871d5389981e5247bc7a7e41a0622e8:log:105', 'hash': '0x7317994cde37450a6190170cb715a180c871d5389981e5247bc7a7e41a0622e8', 'from': '0xe5a7a575c192380ab95b48780763fbbf000f10b8', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 1004.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3677036edf0af60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:04:32.000Z'}}, {'blockNum': '0x9490dc', 'uniqueId': '0xf4e43ff01d09799b1b74913cb60915a2d0b90be14b76fc9b46650f7c44501759:log:13', 'hash': '0xf4e43ff01d09799b1b74913cb60915a2d0b90be14b76fc9b46650f7c44501759', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x912a555c1736d6d9bbdd022a48acc02dc9725752', 'value': 94.66872009, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0521cadb5871560400', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:09:25.000Z'}}, {'blockNum': '0x9490f0', 'uniqueId': '0x00c75c6497d896d645ba7ab2dd8bff8e5fd29504d9de3b153bab41e1768408a7:log:4', 'hash': '0x00c75c6497d896d645ba7ab2dd8bff8e5fd29504d9de3b153bab41e1768408a7', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 1004.7, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x3677036edf0af60000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:14:03.000Z'}}, {'blockNum': '0x94915d', 'uniqueId': '0xfba58b5d12c0bc1617d3ac690583339b8ce87308d98b551b4b3eb0048a96a4b4:log:0', 'hash': '0xfba58b5d12c0bc1617d3ac690583339b8ce87308d98b551b4b3eb0048a96a4b4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x33bb0137200268624289f43d34b6dd84efd8a0a3', 'value': 686.767, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x253ace83da3cb18000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:37:28.000Z'}}, {'blockNum': '0x949177', 'uniqueId': '0xd8e3f53343d5d8cdec489df306bf4e015b8e1cb4b92e1279623263ccf95b8fe5:log:16', 'hash': '0xd8e3f53343d5d8cdec489df306bf4e015b8e1cb4b92e1279623263ccf95b8fe5', 'from': '0xcaa19d40a6bf34eb0080edd42ff4374b623581fc', 'to': '0xac7e628efe4b428d61fc83b33c25a8b45260e52d', 'value': 780, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x2a48acab6204b00000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:42:25.000Z'}}, {'blockNum': '0x94917a', 'uniqueId': '0x0ecc176afdd805afaf5793f55a643f554590898ff4d7ce8144f2607b32ed478e:log:6', 'hash': '0x0ecc176afdd805afaf5793f55a643f554590898ff4d7ce8144f2607b32ed478e', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 182.38928898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09e328ebfcc8f7c800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:43:00.000Z'}}, {'blockNum': '0x949190', 'uniqueId': '0xfab59c3d0140892ddbb46fea17221b2e7e710cfbe144a8d47505580c40723baf:log:151', 'hash': '0xfab59c3d0140892ddbb46fea17221b2e7e710cfbe144a8d47505580c40723baf', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x5a5f1208d28dffcaf68b64f24eb7e009b88b4e25', 'value': 182.38928898, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09e328ebfcc8f7c800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T21:49:39.000Z'}}, {'blockNum': '0x94931b', 'uniqueId': '0x010d500b4cc969544a40171ba2eb6730402cd70a3d55dd1d9cbf656344991709:log:54', 'hash': '0x010d500b4cc969544a40171ba2eb6730402cd70a3d55dd1d9cbf656344991709', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xa97dac8cf8438e8120ec2ebf5b35254eefcb4c03', 'value': 1423.46, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x4d2a79d02f898a0000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:05:33.000Z'}}, {'blockNum': '0x949357', 'uniqueId': '0x45140515218e3f668a20cad840c9aa717c1330675e99653ba1d84756795e7d8e:log:56', 'hash': '0x45140515218e3f668a20cad840c9aa717c1330675e99653ba1d84756795e7d8e', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x98eb052fef3d0de70d8f2944e03930a071e601f3', 'value': 29.24296059, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x0195d3ddb883b28c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:20:03.000Z'}}, {'blockNum': '0x949366', 'uniqueId': '0xa7bad498604956e7696f1927b23fb77b97d230aac886575f7b8cc77c46c549f2:log:24', 'hash': '0xa7bad498604956e7696f1927b23fb77b97d230aac886575f7b8cc77c46c549f2', 'from': '0xd1bccd0e7926cc44d96c54dbe2042afa5dc85308', 'to': '0x5d1c239b0a50f1ea7554167f7463c7a2d7a6b628', 'value': 4056.9999999999995, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdbee2f6517bfbd107f', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:23:53.000Z'}}, {'blockNum': '0x949369', 'uniqueId': '0xe43ee040132f5b4549ca9682785ac5e93bf31c3c35ce5a1541d9b653407c7f21:log:111', 'hash': '0xe43ee040132f5b4549ca9682785ac5e93bf31c3c35ce5a1541d9b653407c7f21', 'from': '0x5d1c239b0a50f1ea7554167f7463c7a2d7a6b628', 'to': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'value': 4056.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdbee2f65156bb81c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:25:42.000Z'}}, {'blockNum': '0x949389', 'uniqueId': '0xf8709501ab54465de4e067881402bb4dcc0ef7a92ad9a22a96987ced69ac037b:log:16', 'hash': '0xf8709501ab54465de4e067881402bb4dcc0ef7a92ad9a22a96987ced69ac037b', 'from': '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 4056.99999999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xdbee2f65156bb81c00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:33:38.000Z'}}, {'blockNum': '0x94938c', 'uniqueId': '0x7f6874ee1eb2df01c2aa4c0c5fec059b1f99e9e0e7dbdb784ee3a799d2b2fa31:log:50', 'hash': '0x7f6874ee1eb2df01c2aa4c0c5fec059b1f99e9e0e7dbdb784ee3a799d2b2fa31', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xae2216ed4a4e1bf920b5136e786174d98f75cace', 'value': 606.54259274, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x20e1782a7f241fe800', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-24T23:35:34.000Z'}}, {'blockNum': '0x949485', 'uniqueId': '0xbb7a44717bd29db6552671070cc6e006aea6c834fd4a7ace3079a9f147396476:log:37', 'hash': '0xbb7a44717bd29db6552671070cc6e006aea6c834fd4a7ace3079a9f147396476', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0xc05b054f597b55dbe3e3fdb456084ac763313a4d', 'value': 177.97505547, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x09a5e669ff69cacc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-25T00:30:22.000Z'}}, {'blockNum': '0x94964b', 'uniqueId': '0xd2d068ba386934dcf3f07afa26e67e3e25769868b7ccc92df962f3f951d00fe3:log:48', 'hash': '0xd2d068ba386934dcf3f07afa26e67e3e25769868b7ccc92df962f3f951d00fe3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 17.23349999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xef29b0ef14a5dc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-25T02:15:36.000Z'}}, {'blockNum': '0x949665', 'uniqueId': '0x5e93be3a18dd5349a0afe9a5e6791e62f17904a652d26322827e5f81fef80010:log:121', 'hash': '0x5e93be3a18dd5349a0afe9a5e6791e62f17904a652d26322827e5f81fef80010', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x7b8393e91bd4355fb52b9fe3800f6726dbeef4f3', 'value': 17.23349999, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0xef29b0ef14a5dc00', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-25T02:21:47.000Z'}}, {'blockNum': '0x94969b', 'uniqueId': '0xee38a2a057376d6939d30f83d373b08b3f8440cffcf6fb06c8e14977bd1fbaa2:log:19', 'hash': '0xee38a2a057376d6939d30f83d373b08b3f8440cffcf6fb06c8e14977bd1fbaa2', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xc91c9b43b00a236bc4af8275b63adef1c8714307', 'value': 148.2617, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'BRD', 'category': 'erc20', 'rawContract': {'value': '0x08098b5ea037884000', 'address': '0x558ec3152e2eb2174905cd19aea4e34a23de9ad6', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-03-25T02:34:46.000Z'}}]}}
Number of returned transfers:  93
Answer is complete
 
symbol             NXS
group              CCS
date        2020-03-25
hour             15:57
exchange       binance
Name: 1106, dtype: object
HERE
{}
No contract for ethereum specified
 Symbol: NXS, Contract: 
Datetime timestamps:  2020-03-25 15:57:00 2020-03-25 03:57:00 2020-03-26 03:57:00
Unix timestamps:  1585105020.0 1585191420.0
Hex Block Numbers:  0x9496ee 0x94aff1
{'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
ERROR:  {'jsonrpc': '2.0', 'id': None, 'error': {'code': -32602, 'message': 'Invalid address in object param: contractAddresses'}}
 
symbol             RLC
group              CCS
date        2020-04-20
hour             16:00
exchange       binance
Name: 1107, dtype: object
HERE
 Symbol: RLC, Contract: 0x607f4c5bb672230e8672085532f7e901544a7375
Datetime timestamps:  2020-04-20 16:00:00 2020-04-20 04:00:00 2020-04-21 04:00:00
Unix timestamps:  1587348000.0 1587434400.0
Hex Block Numbers:  0x972966 0x9742b7
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0x972974', 'uniqueId': '0xe2da40f7f460e2afedb6339c00d1da383359b33c7b08e22f7ed68f765981efa8:log:165', 'hash': '0xe2da40f7f460e2afedb6339c00d1da383359b33c7b08e22f7ed68f765981efa8', 'from': '0x22fc579c3845b7f4016fd3a0f5aaff31205db66c', 'to': '0xe8b7bcb65f76fdc2933f405f59619cf2a1a5ae9f', 'value': 370.59833603, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x564961d61e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T02:02:11.000Z'}}, {'blockNum': '0x9729e1', 'uniqueId': '0x5b7776b3ceec074e9ba493b17d78e6750ce0ff717a82a0d160da6504d1a46aa7:log:30', 'hash': '0x5b7776b3ceec074e9ba493b17d78e6750ce0ff717a82a0d160da6504d1a46aa7', 'from': '0x753af971b906bb6dc7bdff46db3812a809b370cb', 'to': '0x69a3e8aca3e25ef6a81859968725709fe60438ee', 'value': 50000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2d79883d2000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T02:27:55.000Z'}}, {'blockNum': '0x972ae2', 'uniqueId': '0xcf4abcfc4518fa959610e96af09b74bc0175b518d611487b60cff778b572938c:log:111', 'hash': '0xcf4abcfc4518fa959610e96af09b74bc0175b518d611487b60cff778b572938c', 'from': '0x086dcf5b47d4570f1a91989de6cfbaad9eb6335f', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 341.181673913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4f700331b9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T03:25:24.000Z'}}, {'blockNum': '0x972b37', 'uniqueId': '0x40605ccc00e6c31300b304b5362bae4688c5ed169e09f3e82961983e1d26341b:log:146', 'hash': '0x40605ccc00e6c31300b304b5362bae4688c5ed169e09f3e82961983e1d26341b', 'from': '0x6dfc8b224035b4eb4021e70e36f742350fd71994', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 125.476749122, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d36ff3f42', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T03:43:31.000Z'}}, {'blockNum': '0x972c04', 'uniqueId': '0xdbd18851e11ab4021e014950ada429c69b1b7b7c5713446dbc45803440c27917:log:58', 'hash': '0xdbd18851e11ab4021e014950ada429c69b1b7b7c5713446dbc45803440c27917', 'from': '0x65a5286725c72509be4c53f8029a6b32b6f18123', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 3102.021741747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02d23ee76cb3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T04:30:43.000Z'}}, {'blockNum': '0x972c04', 'uniqueId': '0xdbd18851e11ab4021e014950ada429c69b1b7b7c5713446dbc45803440c27917:log:59', 'hash': '0xdbd18851e11ab4021e014950ada429c69b1b7b7c5713446dbc45803440c27917', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 3102.021741747, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02d23ee76cb3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T04:30:43.000Z'}}, {'blockNum': '0x972cb4', 'uniqueId': '0xf0dff622c62840b123bb08274a28e07d174e138f1ac6b8a3b14505b28f9f7dda:log:54', 'hash': '0xf0dff622c62840b123bb08274a28e07d174e138f1ac6b8a3b14505b28f9f7dda', 'from': '0xb16b8c44d715d5c116ecc95ef4412d3d767dd94b', 'to': '0x6b33491625ad09285922005aeec8e88d615ee707', 'value': 0, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T05:12:21.000Z'}}, {'blockNum': '0x972d4e', 'uniqueId': '0x0e38f195dcf529b5aa05318d3f532ec17c32805c8baaea0155d244065327409f:log:18', 'hash': '0x0e38f195dcf529b5aa05318d3f532ec17c32805c8baaea0155d244065327409f', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x02c3045b288b363d1f7b40bcfe744667c4bccc0d', 'value': 398.97393774, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5ce4b3284c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T05:48:43.000Z'}}, {'blockNum': '0x972d6a', 'uniqueId': '0x1b88fae087ca8f57cd1a1ef9dad351ea13a8d1aeb73711124a83ba0cd6ef3148:log:0', 'hash': '0x1b88fae087ca8f57cd1a1ef9dad351ea13a8d1aeb73711124a83ba0cd6ef3148', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xdfc38f8b82216416e3bea505ddb6d1bb4a3be15f', 'value': 2205.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0201656f0f00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T05:55:13.000Z'}}, {'blockNum': '0x972dc2', 'uniqueId': '0xe785326bc955a2d284db77b18012bd42c1ae3442ce228456dfc356768689f7c5:log:189', 'hash': '0xe785326bc955a2d284db77b18012bd42c1ae3442ce228456dfc356768689f7c5', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xfd9ce79fd7f62ca88ace958cd2716f4cce25e2df', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T06:14:21.000Z'}}, {'blockNum': '0x972eb8', 'uniqueId': '0xf01dcacc314e91c5f6937e75f18d63f8bd57396ab3d40be8af7e5c5f983a0dc0:log:64', 'hash': '0xf01dcacc314e91c5f6937e75f18d63f8bd57396ab3d40be8af7e5c5f983a0dc0', 'from': '0x8a3b27ad6301a860e0b348b88738d18f64138c30', 'to': '0xa91ac30cb51dd424346889b558faf56f32de2004', 'value': 0.3644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x15b84d80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T07:10:32.000Z'}}, {'blockNum': '0x972fb5', 'uniqueId': '0x4fab5804c877dd82264f626a18fdbf1cdb69214e5319e1fe8a3861ab7c342a5d:log:68', 'hash': '0x4fab5804c877dd82264f626a18fdbf1cdb69214e5319e1fe8a3861ab7c342a5d', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0x648c9ef315efffdd89b057f963547ddbcd499166', 'value': 1634.6897647, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017c9b1a4d5c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T08:08:42.000Z'}}, {'blockNum': '0x973031', 'uniqueId': '0x838f1bd09059f7b00ff70426b9c2da637f9c6328dd3bf3bcf76fcefb58640911:log:84', 'hash': '0x838f1bd09059f7b00ff70426b9c2da637f9c6328dd3bf3bcf76fcefb58640911', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'value': 885.633736404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xce33e25ed4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T08:37:12.000Z'}}, {'blockNum': '0x973031', 'uniqueId': '0x838f1bd09059f7b00ff70426b9c2da637f9c6328dd3bf3bcf76fcefb58640911:log:86', 'hash': '0x838f1bd09059f7b00ff70426b9c2da637f9c6328dd3bf3bcf76fcefb58640911', 'from': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'to': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'value': 885.633736404, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xce33e25ed4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T08:37:12.000Z'}}, {'blockNum': '0x973036', 'uniqueId': '0xdbb7c6fe0dbf4365f5e2812aeaabad5e0286995ece5f4f95d77428a1ddcccad1:log:94', 'hash': '0xdbb7c6fe0dbf4365f5e2812aeaabad5e0286995ece5f4f95d77428a1ddcccad1', 'from': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'to': '0xdab35e0e1532a20045f69557d0b23b4fe36952c3', 'value': 885.634, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xce33e66480', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T08:38:26.000Z'}}, {'blockNum': '0x973089', 'uniqueId': '0x2ec6d204cf92f5404698358c7534ba734d8f6a9a41ed09dff928b4dce7a92979:log:14', 'hash': '0x2ec6d204cf92f5404698358c7534ba734d8f6a9a41ed09dff928b4dce7a92979', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x10efc9375926a9af12239c24bf14ee3e5515ef5d', 'value': 119.43348663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1bceca6126', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T08:59:07.000Z'}}, {'blockNum': '0x9730dd', 'uniqueId': '0xa9ca9466a5333af3f213841ba7ff92bc11c1d84476d40950b286bce0deeea53b:log:138', 'hash': '0xa9ca9466a5333af3f213841ba7ff92bc11c1d84476d40950b286bce0deeea53b', 'from': '0xc0a3b90dbfeb3d4d494031187c539a4886ddb5e1', 'to': '0x9c15e6235242a9454693934218aa8cf3befd8215', 'value': 207.49131974, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x304f7247bc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T09:19:51.000Z'}}, {'blockNum': '0x973216', 'uniqueId': '0x877fdd284ba37ccf8cd5881902395505e1162345d75db0746a2e2ae32d6064ce:log:12', 'hash': '0x877fdd284ba37ccf8cd5881902395505e1162345d75db0746a2e2ae32d6064ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe8f7212a5f18a61f021755d436302e09e6faf0bd', 'value': 409.607, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5f5e7acfc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T10:28:06.000Z'}}, {'blockNum': '0x97322b', 'uniqueId': '0x4b87bee57c43af4dd2631c90aa7b7003090242104eca1334c65ed9c2b87397c3:log:155', 'hash': '0x4b87bee57c43af4dd2631c90aa7b7003090242104eca1334c65ed9c2b87397c3', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 11.759958972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02bcf2bbbc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T10:33:08.000Z'}}, {'blockNum': '0x97322b', 'uniqueId': '0x4b87bee57c43af4dd2631c90aa7b7003090242104eca1334c65ed9c2b87397c3:log:157', 'hash': '0x4b87bee57c43af4dd2631c90aa7b7003090242104eca1334c65ed9c2b87397c3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1e7420a37182424817c3ebd04159b3cf64132d12', 'value': 11.759958972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02bcf2bbbc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T10:33:08.000Z'}}, {'blockNum': '0x9732ec', 'uniqueId': '0xde862e070d1b5e59c980446fec4256a8430c1c254074ae0239ddcab990fb239b:log:5', 'hash': '0xde862e070d1b5e59c980446fec4256a8430c1c254074ae0239ddcab990fb239b', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 416.470530457, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x60f793f999', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T11:14:20.000Z'}}, {'blockNum': '0x973311', 'uniqueId': '0xd00859f63977abdd662cd8f5519bfb171214f90bd9a0b73b2f90b8a13fca6003:log:107', 'hash': '0xd00859f63977abdd662cd8f5519bfb171214f90bd9a0b73b2f90b8a13fca6003', 'from': '0x1e7420a37182424817c3ebd04159b3cf64132d12', 'to': '0xd5462a7a8712ae3353fd89b32ab8c2258a348538', 'value': 11.759958972, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02bcf2bbbc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T11:21:20.000Z'}}, {'blockNum': '0x9733c7', 'uniqueId': '0xf0f62fc72a8ab2106e36a63026ffde354a44ace6b8ce6a20537530d68bb826a5:log:147', 'hash': '0xf0f62fc72a8ab2106e36a63026ffde354a44ace6b8ce6a20537530d68bb826a5', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x7fba132343356b5a8e41a9da2d28160857811395', 'value': 150.29555876, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x22fe503a68', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T12:01:26.000Z'}}, {'blockNum': '0x97349c', 'uniqueId': '0xb10a26ce587050b27a781912fdab5fa9ae11143e5ed7f57e7e5ec9b8132ec4b7:log:37', 'hash': '0xb10a26ce587050b27a781912fdab5fa9ae11143e5ed7f57e7e5ec9b8132ec4b7', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 391.432222012, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5b232db53c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T12:52:53.000Z'}}, {'blockNum': '0x9734a0', 'uniqueId': '0xeb0ad233602458916b1e9603f00e2ee2a92cef5197d839801aaaad5ddd95672b:log:0', 'hash': '0xeb0ad233602458916b1e9603f00e2ee2a92cef5197d839801aaaad5ddd95672b', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1490.872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015b1ee55e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T12:53:47.000Z'}}, {'blockNum': '0x9734c0', 'uniqueId': '0x39a3174d931dfb1ab2d444eefd8fcca003ff62934f19ec041742cc1ee383cdd4:log:180', 'hash': '0x39a3174d931dfb1ab2d444eefd8fcca003ff62934f19ec041742cc1ee383cdd4', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 490.617235711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x723b10e8ff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T13:01:35.000Z'}}, {'blockNum': '0x9734c0', 'uniqueId': '0x39a3174d931dfb1ab2d444eefd8fcca003ff62934f19ec041742cc1ee383cdd4:log:182', 'hash': '0x39a3174d931dfb1ab2d444eefd8fcca003ff62934f19ec041742cc1ee383cdd4', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x156256067566de2f94aedbc25fb420f54b2f3d93', 'value': 490.617235711, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x723b10e8ff', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T13:01:35.000Z'}}, {'blockNum': '0x973518', 'uniqueId': '0xb875db38d9ec066be2fb54c18b4a4eac763483c1de3d9e31390e92d60aeb4aa6:log:151', 'hash': '0xb875db38d9ec066be2fb54c18b4a4eac763483c1de3d9e31390e92d60aeb4aa6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 50.50074808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0bc2144330', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T13:19:13.000Z'}}, {'blockNum': '0x973518', 'uniqueId': '0xb875db38d9ec066be2fb54c18b4a4eac763483c1de3d9e31390e92d60aeb4aa6:log:153', 'hash': '0xb875db38d9ec066be2fb54c18b4a4eac763483c1de3d9e31390e92d60aeb4aa6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xe6a9834538a8ec240b33938f39c292d3f96cdc3f', 'value': 50.50074808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0bc2144330', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T13:19:13.000Z'}}, {'blockNum': '0x973531', 'uniqueId': '0x0d0ba2cc72cd7b0852dd5825c4b87280eb5d6afa658e5a48c1ae5a6bb620953b:log:16', 'hash': '0x0d0ba2cc72cd7b0852dd5825c4b87280eb5d6afa658e5a48c1ae5a6bb620953b', 'from': '0x880692b001cb31010de135bed861b2db6d4032a3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 170.470275033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x27b0d1f7d9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T13:25:55.000Z'}}, {'blockNum': '0x973531', 'uniqueId': '0x0d0ba2cc72cd7b0852dd5825c4b87280eb5d6afa658e5a48c1ae5a6bb620953b:log:17', 'hash': '0x0d0ba2cc72cd7b0852dd5825c4b87280eb5d6afa658e5a48c1ae5a6bb620953b', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 170.470275033, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x27b0d1f7d9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T13:25:55.000Z'}}, {'blockNum': '0x97355b', 'uniqueId': '0x2c2102b37f7c0f01f50eb9c56fc254e03dde0e12e7860b1b85919645cd4b8fa5:log:126', 'hash': '0x2c2102b37f7c0f01f50eb9c56fc254e03dde0e12e7860b1b85919645cd4b8fa5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 583.518062271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x87dc6306bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T13:36:54.000Z'}}, {'blockNum': '0x97355b', 'uniqueId': '0x2c2102b37f7c0f01f50eb9c56fc254e03dde0e12e7860b1b85919645cd4b8fa5:log:128', 'hash': '0x2c2102b37f7c0f01f50eb9c56fc254e03dde0e12e7860b1b85919645cd4b8fa5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x95689a3ecfc4e980e9d2d7642bd4eb3220b5387a', 'value': 583.518062271, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x87dc6306bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T13:36:54.000Z'}}, {'blockNum': '0x973654', 'uniqueId': '0xa98892778541d5dc4b8cf8d3e790ff0955772237c65680698fea23e730e5c940:log:52', 'hash': '0xa98892778541d5dc4b8cf8d3e790ff0955772237c65680698fea23e730e5c940', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0a2311594059b468c9897338b027c8782398b481', 'value': 1588.73865732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e8340c28', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:31:55.000Z'}}, {'blockNum': '0x973671', 'uniqueId': '0x71747294cfc7af4cd87e9686495813a3be14ba264dfe158d7392e796e2ddb71a:log:161', 'hash': '0x71747294cfc7af4cd87e9686495813a3be14ba264dfe158d7392e796e2ddb71a', 'from': '0x0a2311594059b468c9897338b027c8782398b481', 'to': '0x7200fc6cdfcacff162be0c71a2693ae24cd4ef4c', 'value': 1588.73865732, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0171e8340c28', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:38:16.000Z'}}, {'blockNum': '0x973688', 'uniqueId': '0xdad0acb3ef07ca63557066ed2f91d594aece7f7e90094aeff23fdaa6ea370507:log:34', 'hash': '0xdad0acb3ef07ca63557066ed2f91d594aece7f7e90094aeff23fdaa6ea370507', 'from': '0xa12431d0b9db640034b0cdfceef9cce161e62be4', 'to': '0x59a5208b32e627891c389ebafc644145224006e8', 'value': 24478.6, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x16435e41f200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:42:18.000Z'}}, {'blockNum': '0x97368b', 'uniqueId': '0xb07368cb551c6d6956a339a7c78c292e9233f6f22fef09e3080ebea5fc771e47:log:5', 'hash': '0xb07368cb551c6d6956a339a7c78c292e9233f6f22fef09e3080ebea5fc771e47', 'from': '0x59a5208b32e627891c389ebafc644145224006e8', 'to': '0x0686a8dc57715502bcfe6704c7cfb4bfdf8bfed3', 'value': 18829.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1120248f5980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:42:41.000Z'}}, {'blockNum': '0x9736a2', 'uniqueId': '0x8b60d8ecf2074c98c572d3c36d87cf031f335f82cec8d74edd990325ed13e56b:log:29', 'hash': '0x8b60d8ecf2074c98c572d3c36d87cf031f335f82cec8d74edd990325ed13e56b', 'from': '0x0686a8dc57715502bcfe6704c7cfb4bfdf8bfed3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 18829.75, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1120248f5980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:47:34.000Z'}}, {'blockNum': '0x9736aa', 'uniqueId': '0xa2acf739dfa831fe01fe2f83b72bd220628be6e6799662b1caead2096fd20b22:log:102', 'hash': '0xa2acf739dfa831fe01fe2f83b72bd220628be6e6799662b1caead2096fd20b22', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 326.090740456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4bec85d2e8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:51:06.000Z'}}, {'blockNum': '0x9736aa', 'uniqueId': '0xa2acf739dfa831fe01fe2f83b72bd220628be6e6799662b1caead2096fd20b22:log:104', 'hash': '0xa2acf739dfa831fe01fe2f83b72bd220628be6e6799662b1caead2096fd20b22', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x5805c8c77187aaaace20bd2af4f8412c7b9a9275', 'value': 326.090740456, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4bec85d2e8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:51:06.000Z'}}, {'blockNum': '0x9736ce', 'uniqueId': '0x068f8276127f6ef9e2c3c50ba71af6f765536e99bb897f7dd72cc9a6ce25e5c8:log:56', 'hash': '0x068f8276127f6ef9e2c3c50ba71af6f765536e99bb897f7dd72cc9a6ce25e5c8', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 148.628290332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x229aefbb1c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:59:25.000Z'}}, {'blockNum': '0x9736ce', 'uniqueId': '0x068f8276127f6ef9e2c3c50ba71af6f765536e99bb897f7dd72cc9a6ce25e5c8:log:58', 'hash': '0x068f8276127f6ef9e2c3c50ba71af6f765536e99bb897f7dd72cc9a6ce25e5c8', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'value': 148.628290332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x229aefbb1c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:59:25.000Z'}}, {'blockNum': '0x9736ce', 'uniqueId': '0x068f8276127f6ef9e2c3c50ba71af6f765536e99bb897f7dd72cc9a6ce25e5c8:log:64', 'hash': '0x068f8276127f6ef9e2c3c50ba71af6f765536e99bb897f7dd72cc9a6ce25e5c8', 'from': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 148.628290332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x229aefbb1c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:59:25.000Z'}}, {'blockNum': '0x9736ce', 'uniqueId': '0x068f8276127f6ef9e2c3c50ba71af6f765536e99bb897f7dd72cc9a6ce25e5c8:log:66', 'hash': '0x068f8276127f6ef9e2c3c50ba71af6f765536e99bb897f7dd72cc9a6ce25e5c8', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 148.628290332, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x229aefbb1c', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T14:59:25.000Z'}}, {'blockNum': '0x973798', 'uniqueId': '0xe1dd87e3fae831d9a9f9dd695477816ea47ea15982aab664998a8f4eb9730841:log:78', 'hash': '0xe1dd87e3fae831d9a9f9dd695477816ea47ea15982aab664998a8f4eb9730841', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x74d947044f81b534e787702a68c0ebfb52f2cc10', 'value': 10, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x02540be400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T15:40:18.000Z'}}, {'blockNum': '0x9737b5', 'uniqueId': '0x0f6efe70b86d02975fa168f07645e8ad1736a2fbc3a4e65167eb258df9206663:log:197', 'hash': '0x0f6efe70b86d02975fa168f07645e8ad1736a2fbc3a4e65167eb258df9206663', 'from': '0xb137203d2c28f3bc9b8fdf619db9c62c07eebf49', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 415.361916065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x60b57fdca1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T15:48:20.000Z'}}, {'blockNum': '0x9737b5', 'uniqueId': '0x0f6efe70b86d02975fa168f07645e8ad1736a2fbc3a4e65167eb258df9206663:log:198', 'hash': '0x0f6efe70b86d02975fa168f07645e8ad1736a2fbc3a4e65167eb258df9206663', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 415.361916065, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x60b57fdca1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T15:48:20.000Z'}}, {'blockNum': '0x9737c6', 'uniqueId': '0x184b40c1e03efef2ad5071d238f8c9efd4a48c02fa669ec2de5daf1b3f31aaa5:log:136', 'hash': '0x184b40c1e03efef2ad5071d238f8c9efd4a48c02fa669ec2de5daf1b3f31aaa5', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T15:55:32.000Z'}}, {'blockNum': '0x9737c6', 'uniqueId': '0x184b40c1e03efef2ad5071d238f8c9efd4a48c02fa669ec2de5daf1b3f31aaa5:log:138', 'hash': '0x184b40c1e03efef2ad5071d238f8c9efd4a48c02fa669ec2de5daf1b3f31aaa5', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x9cc0bd1f4e9ee7082821ee9da13c4c192b7afb15', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T15:55:32.000Z'}}, {'blockNum': '0x9737d3', 'uniqueId': '0x5246b2e005f64a1b4221c951c021b758d853e81dcfdee0d53045d6b79fd08897:log:111', 'hash': '0x5246b2e005f64a1b4221c951c021b758d853e81dcfdee0d53045d6b79fd08897', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0x679506cd305e45f13ecfed301cf83945c043d775', 'value': 6.4388586, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x017fc92f68', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T15:57:53.000Z'}}, {'blockNum': '0x9737df', 'uniqueId': '0x2dbe2763b12cf65ad7b7114066eac8e41d59413c6151addbceff56dcef6bbbb1:log:6', 'hash': '0x2dbe2763b12cf65ad7b7114066eac8e41d59413c6151addbceff56dcef6bbbb1', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 708.493573791, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xa4f581fe9f', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:00:29.000Z'}}, {'blockNum': '0x9737df', 'uniqueId': '0xc7b4b645e03a2c7dcb8fac616c68a168c3abaf9c587e7ed760ce7356fd5cc1f8:log:9', 'hash': '0xc7b4b645e03a2c7dcb8fac616c68a168c3abaf9c587e7ed760ce7356fd5cc1f8', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x84c4b427c73fa3c8fc068df420e8910c7b1d851c', 'value': 585.563295524, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x88564acf24', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:00:29.000Z'}}, {'blockNum': '0x9737df', 'uniqueId': '0xb0cb383baeaa39e545967fef4eb2b4a357d16a9fe8a3118512e5f35b72d9439e:log:11', 'hash': '0xb0cb383baeaa39e545967fef4eb2b4a357d16a9fe8a3118512e5f35b72d9439e', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 4678.863100289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x044161f91981', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:00:29.000Z'}}, {'blockNum': '0x9737df', 'uniqueId': '0xb0cb383baeaa39e545967fef4eb2b4a357d16a9fe8a3118512e5f35b72d9439e:log:13', 'hash': '0xb0cb383baeaa39e545967fef4eb2b4a357d16a9fe8a3118512e5f35b72d9439e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x3911c614be43ac656d818092236be68e413d2708', 'value': 4678.863100289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x044161f91981', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:00:29.000Z'}}, {'blockNum': '0x9737df', 'uniqueId': '0xe50db752cd462d3de00efa6e84c8339a9aea18798f12268e8c5e612d2706c817:log:50', 'hash': '0xe50db752cd462d3de00efa6e84c8339a9aea18798f12268e8c5e612d2706c817', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'value': 203.915233125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f7a4b8765', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:00:29.000Z'}}, {'blockNum': '0x9737df', 'uniqueId': '0xe50db752cd462d3de00efa6e84c8339a9aea18798f12268e8c5e612d2706c817:log:52', 'hash': '0xe50db752cd462d3de00efa6e84c8339a9aea18798f12268e8c5e612d2706c817', 'from': '0xf92c1ad75005e6436b4ee84e88cb23ed8a290988', 'to': '0xef422dbbf46120de627ffb913c9afad44c735618', 'value': 203.915233125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2f7a4b8765', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:00:29.000Z'}}, {'blockNum': '0x9737e0', 'uniqueId': '0xcd89435ca838a77b6900c142ba72d6dbf1b94a45293e7c775307b72dbbae5d39:log:103', 'hash': '0xcd89435ca838a77b6900c142ba72d6dbf1b94a45293e7c775307b72dbbae5d39', 'from': '0x3911c614be43ac656d818092236be68e413d2708', 'to': '0x6d0f784b6ca8f2aa662960a3fa3aa915713f6c99', 'value': 4678.863100289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x044161f91981', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:00:32.000Z'}}, {'blockNum': '0x9737e1', 'uniqueId': '0xabb5861ee22dd9338433dac28e63a1ad8c66a77f03ac4a07c0067e004b1df0c6:log:85', 'hash': '0xabb5861ee22dd9338433dac28e63a1ad8c66a77f03ac4a07c0067e004b1df0c6', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 876.582536808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcc18640668', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:01:25.000Z'}}, {'blockNum': '0x9737e1', 'uniqueId': '0xabb5861ee22dd9338433dac28e63a1ad8c66a77f03ac4a07c0067e004b1df0c6:log:87', 'hash': '0xabb5861ee22dd9338433dac28e63a1ad8c66a77f03ac4a07c0067e004b1df0c6', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'value': 876.582536808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcc18640668', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:01:25.000Z'}}, {'blockNum': '0x9737e1', 'uniqueId': '0xabb5861ee22dd9338433dac28e63a1ad8c66a77f03ac4a07c0067e004b1df0c6:log:92', 'hash': '0xabb5861ee22dd9338433dac28e63a1ad8c66a77f03ac4a07c0067e004b1df0c6', 'from': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'to': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'value': 876.582536808, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcc18640668', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:01:25.000Z'}}, {'blockNum': '0x9737e2', 'uniqueId': '0xd21383e72d85e5f7d04cd21b1e76fe2fded75b5cda93f54457eca4c273e1860b:log:134', 'hash': '0xd21383e72d85e5f7d04cd21b1e76fe2fded75b5cda93f54457eca4c273e1860b', 'from': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'to': '0xdab35e0e1532a20045f69557d0b23b4fe36952c3', 'value': 876.582, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcc185bd580', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:01:32.000Z'}}, {'blockNum': '0x9737e6', 'uniqueId': '0xe2fa25f01ef97c18f761d3500a6ff36217553d1f4d1e23df003b7f2f18f434fc:log:150', 'hash': '0xe2fa25f01ef97c18f761d3500a6ff36217553d1f4d1e23df003b7f2f18f434fc', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 410.494026729, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5f9359c3e9', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:02:09.000Z'}}, {'blockNum': '0x97382a', 'uniqueId': '0x62ca4d356ecace405310bd718d858844824a51e07b31274d153b98a132a62786:log:24', 'hash': '0x62ca4d356ecace405310bd718d858844824a51e07b31274d153b98a132a62786', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:17:11.000Z'}}, {'blockNum': '0x97382a', 'uniqueId': '0x62ca4d356ecace405310bd718d858844824a51e07b31274d153b98a132a62786:log:26', 'hash': '0x62ca4d356ecace405310bd718d858844824a51e07b31274d153b98a132a62786', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x9cc0bd1f4e9ee7082821ee9da13c4c192b7afb15', 'value': 250, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3a35294400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:17:11.000Z'}}, {'blockNum': '0x973879', 'uniqueId': '0xef77e514d7488651b4a0f6fc806b39f7552dce3cdf06eca1b71c98ab27d29aa0:log:57', 'hash': '0xef77e514d7488651b4a0f6fc806b39f7552dce3cdf06eca1b71c98ab27d29aa0', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 208.74741577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x309a50c8da', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:36:07.000Z'}}, {'blockNum': '0x973879', 'uniqueId': '0xef77e514d7488651b4a0f6fc806b39f7552dce3cdf06eca1b71c98ab27d29aa0:log:59', 'hash': '0xef77e514d7488651b4a0f6fc806b39f7552dce3cdf06eca1b71c98ab27d29aa0', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x744db0e7e8b57ef9aea0550f9d08410c323ed848', 'value': 208.74741577, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x309a50c8da', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:36:07.000Z'}}, {'blockNum': '0x973891', 'uniqueId': '0xe57ab114029182efbe36ea4589e2054fe723d594986c9473d6c455a280c78a66:log:39', 'hash': '0xe57ab114029182efbe36ea4589e2054fe723d594986c9473d6c455a280c78a66', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 224.165920203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3431547dcb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:42:34.000Z'}}, {'blockNum': '0x973891', 'uniqueId': '0xe57ab114029182efbe36ea4589e2054fe723d594986c9473d6c455a280c78a66:log:41', 'hash': '0xe57ab114029182efbe36ea4589e2054fe723d594986c9473d6c455a280c78a66', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x4a3baaade8508e23b609948d493d8a4897930bab', 'value': 224.165920203, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3431547dcb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:42:34.000Z'}}, {'blockNum': '0x973898', 'uniqueId': '0xaebbb517f174565576613e4379e82e53b47d94be61686cc64c4cd84dc130bcd4:log:69', 'hash': '0xaebbb517f174565576613e4379e82e53b47d94be61686cc64c4cd84dc130bcd4', 'from': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 291.288092938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43d21f910a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:44:11.000Z'}}, {'blockNum': '0x973898', 'uniqueId': '0xaebbb517f174565576613e4379e82e53b47d94be61686cc64c4cd84dc130bcd4:log:74', 'hash': '0xaebbb517f174565576613e4379e82e53b47d94be61686cc64c4cd84dc130bcd4', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'value': 291.288092938, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43d21f910a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:44:11.000Z'}}, {'blockNum': '0x97389c', 'uniqueId': '0x7e44a80b9a5009525d1794263eb74bd6cf7ef8f35f40b84781bb5bbe8326f0fd:log:29', 'hash': '0x7e44a80b9a5009525d1794263eb74bd6cf7ef8f35f40b84781bb5bbe8326f0fd', 'from': '0x90a3d8c8a9247e409f455c4f7dc4092596c223a2', 'to': '0x34ebb9092b9fc46c7c0b285ec89b9811e8d6a1f1', 'value': 291.28, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x43d1a41400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:44:24.000Z'}}, {'blockNum': '0x97389e', 'uniqueId': '0xf2a928b07b9c2a55d3ceb03003935d218b722177f064bd61b6c2b7fe29927787:log:91', 'hash': '0xf2a928b07b9c2a55d3ceb03003935d218b722177f064bd61b6c2b7fe29927787', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'value': 872.479686348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcb23d77ecc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:44:52.000Z'}}, {'blockNum': '0x97389e', 'uniqueId': '0xf2a928b07b9c2a55d3ceb03003935d218b722177f064bd61b6c2b7fe29927787:log:93', 'hash': '0xf2a928b07b9c2a55d3ceb03003935d218b722177f064bd61b6c2b7fe29927787', 'from': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'to': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'value': 872.479686348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcb23d77ecc', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:44:52.000Z'}}, {'blockNum': '0x9738a0', 'uniqueId': '0x82a89e6d5d0c2051dfbcf1090b9067c251a2c113986f6686264fd86d81083af8:log:49', 'hash': '0x82a89e6d5d0c2051dfbcf1090b9067c251a2c113986f6686264fd86d81083af8', 'from': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'to': '0xdab35e0e1532a20045f69557d0b23b4fe36952c3', 'value': 872.48, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xcb23dc4800', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:45:23.000Z'}}, {'blockNum': '0x9738a3', 'uniqueId': '0xb6880f3815134908b3451723936ac9c47eaf36fc5b643842e4165bfe37834a55:log:8', 'hash': '0xb6880f3815134908b3451723936ac9c47eaf36fc5b643842e4165bfe37834a55', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5003.96, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048d13421e00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T16:46:21.000Z'}}, {'blockNum': '0x9738df', 'uniqueId': '0xd4b7869c1b395656039eed17a66e0b8cb8dee0e65a9897b611cf3bd0a034916f:log:145', 'hash': '0xd4b7869c1b395656039eed17a66e0b8cb8dee0e65a9897b611cf3bd0a034916f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 448.898156883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x68846a4953', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:01:08.000Z'}}, {'blockNum': '0x9738df', 'uniqueId': '0xd4b7869c1b395656039eed17a66e0b8cb8dee0e65a9897b611cf3bd0a034916f:log:147', 'hash': '0xd4b7869c1b395656039eed17a66e0b8cb8dee0e65a9897b611cf3bd0a034916f', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x744db0e7e8b57ef9aea0550f9d08410c323ed848', 'value': 448.898156883, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x68846a4953', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:01:08.000Z'}}, {'blockNum': '0x973923', 'uniqueId': '0xa67b5a53ec374b2327aefbc67e04ad34ce61efb39b121294ca877d966a4ef2be:log:32', 'hash': '0xa67b5a53ec374b2327aefbc67e04ad34ce61efb39b121294ca877d966a4ef2be', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 385.815027126, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x59d45e1db6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:16:30.000Z'}}, {'blockNum': '0x973937', 'uniqueId': '0x05fb05b3b46ab4413f49dc3a383c1dc219bc3541aa1512b30b38e2bcfd0728c8:log:12', 'hash': '0x05fb05b3b46ab4413f49dc3a383c1dc219bc3541aa1512b30b38e2bcfd0728c8', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 362.619734914, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x546dd20b82', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:21:16.000Z'}}, {'blockNum': '0x973956', 'uniqueId': '0xb443be3c6482e607076e66e16bc53f21ee7888444e1e81722270df9902fbb729:log:40', 'hash': '0xb443be3c6482e607076e66e16bc53f21ee7888444e1e81722270df9902fbb729', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 354.238736623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x527a4628ef', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:27:48.000Z'}}, {'blockNum': '0x973991', 'uniqueId': '0x62d54fb47c02f2f027277566ffe7501df11569501b66bfba09f58865956866a1:log:13', 'hash': '0x62d54fb47c02f2f027277566ffe7501df11569501b66bfba09f58865956866a1', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 534.142357038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7c5d5d8e2e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:39:49.000Z'}}, {'blockNum': '0x973991', 'uniqueId': '0x62d54fb47c02f2f027277566ffe7501df11569501b66bfba09f58865956866a1:log:15', 'hash': '0x62d54fb47c02f2f027277566ffe7501df11569501b66bfba09f58865956866a1', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 534.142357038, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7c5d5d8e2e', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:39:49.000Z'}}, {'blockNum': '0x973995', 'uniqueId': '0x76cfc752b11053ae15bdb38d39ade7ace9b1f39a5c1314e2843422066760bd56:log:68', 'hash': '0x76cfc752b11053ae15bdb38d39ade7ace9b1f39a5c1314e2843422066760bd56', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 475.517429578, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6eb70c274a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:40:53.000Z'}}, {'blockNum': '0x9739b2', 'uniqueId': '0x2b25d7369f26dd3b5c1d24409cd245f967284ac9ae81a9763beeeeb8b667eef4:log:3', 'hash': '0x2b25d7369f26dd3b5c1d24409cd245f967284ac9ae81a9763beeeeb8b667eef4', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 840.541117376, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xc3b4279bc0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:48:02.000Z'}}, {'blockNum': '0x9739c3', 'uniqueId': '0x2ffffd555ece84e75a1f38733b9f5740fb2465750f996b228cf75fbaea421375:log:3', 'hash': '0x2ffffd555ece84e75a1f38733b9f5740fb2465750f996b228cf75fbaea421375', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'value': 907.805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd35d650140', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:51:03.000Z'}}, {'blockNum': '0x9739c5', 'uniqueId': '0xdaf9dce4037954c851a39a26b210a9c1134cb879b0995c0fd0c769f66cd4ae69:log:91', 'hash': '0xdaf9dce4037954c851a39a26b210a9c1134cb879b0995c0fd0c769f66cd4ae69', 'from': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'to': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'value': 907.805459571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd35d6c0473', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:51:14.000Z'}}, {'blockNum': '0x9739c5', 'uniqueId': '0xdaf9dce4037954c851a39a26b210a9c1134cb879b0995c0fd0c769f66cd4ae69:log:92', 'hash': '0xdaf9dce4037954c851a39a26b210a9c1134cb879b0995c0fd0c769f66cd4ae69', 'from': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 907.805459571, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd35d6c0473', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:51:14.000Z'}}, {'blockNum': '0x9739cb', 'uniqueId': '0xe53d2c506ea411769d1ee2255647be6ddd79e72f333a203fd030ca89df3c4c95:log:141', 'hash': '0xe53d2c506ea411769d1ee2255647be6ddd79e72f333a203fd030ca89df3c4c95', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'value': 240.594495827, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x38048ca953', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:52:15.000Z'}}, {'blockNum': '0x9739cb', 'uniqueId': '0xe53d2c506ea411769d1ee2255647be6ddd79e72f333a203fd030ca89df3c4c95:log:143', 'hash': '0xe53d2c506ea411769d1ee2255647be6ddd79e72f333a203fd030ca89df3c4c95', 'from': '0x85c5c26dc2af5546341fc1988b9d178148b4838b', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 240.59394077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3804843122', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:52:15.000Z'}}, {'blockNum': '0x9739cb', 'uniqueId': '0xe53d2c506ea411769d1ee2255647be6ddd79e72f333a203fd030ca89df3c4c95:log:145', 'hash': '0xe53d2c506ea411769d1ee2255647be6ddd79e72f333a203fd030ca89df3c4c95', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 240.59394077, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x3804843122', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:52:15.000Z'}}, {'blockNum': '0x9739e2', 'uniqueId': '0x091f15edd66a237c6c7d4b978d90aa980dad0265371d0d9f55cf423374e4c8d7:log:61', 'hash': '0x091f15edd66a237c6c7d4b978d90aa980dad0265371d0d9f55cf423374e4c8d7', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9259dd7224d01522ac4efdc5f5a3d22e6fa8f3a3', 'value': 1498.882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015cfc544480', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T17:56:15.000Z'}}, {'blockNum': '0x9739f8', 'uniqueId': '0xc41e28945833e63a98d6a3b687f13efc35faf79b8b780ce6e1428ce0a65745c5:log:5', 'hash': '0xc41e28945833e63a98d6a3b687f13efc35faf79b8b780ce6e1428ce0a65745c5', 'from': '0x9259dd7224d01522ac4efdc5f5a3d22e6fa8f3a3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1498.882, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015cfc544480', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:02:12.000Z'}}, {'blockNum': '0x973a18', 'uniqueId': '0x0f29c577d2be37c792216332678c4b94895928d0e2c44873987d42e1f122b637:log:114', 'hash': '0x0f29c577d2be37c792216332678c4b94895928d0e2c44873987d42e1f122b637', 'from': '0x0d3aaeb12aaee17d87da1f527bcf973633b583e2', 'to': '0x76fd1ea17e5870168c5c468d2b931fd0dfbe97e3', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:07:37.000Z'}}, {'blockNum': '0x973a18', 'uniqueId': '0x0f29c577d2be37c792216332678c4b94895928d0e2c44873987d42e1f122b637:log:116', 'hash': '0x0f29c577d2be37c792216332678c4b94895928d0e2c44873987d42e1f122b637', 'from': '0x76fd1ea17e5870168c5c468d2b931fd0dfbe97e3', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1d1a94a200', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:07:37.000Z'}}, {'blockNum': '0x973a32', 'uniqueId': '0xe1ccb78d7fb15df72d219e5b7db3f8d65708cda7bc5762f6cb803e746e396ec2:log:91', 'hash': '0xe1ccb78d7fb15df72d219e5b7db3f8d65708cda7bc5762f6cb803e746e396ec2', 'from': '0x48c0192d1e478695fb5034ecc85b44c0951015e2', 'to': '0x84b716016d9b0ae448c534d87dfa3954c22d6951', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:13:19.000Z'}}, {'blockNum': '0x973a40', 'uniqueId': '0xe594d418fb024be71a2f140829557daf06bcf0e461091a6ef4073f12fba5f033:log:7', 'hash': '0xe594d418fb024be71a2f140829557daf06bcf0e461091a6ef4073f12fba5f033', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6683e5e1573dcfd4cd55becce569966ae49672d1', 'value': 919.536, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xd6189ddc00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:16:03.000Z'}}, {'blockNum': '0x973a44', 'uniqueId': '0x7c4e334dc2a695c03218cb49521006bf3657e823293030f15b9f5665fba4398b:log:3', 'hash': '0x7c4e334dc2a695c03218cb49521006bf3657e823293030f15b9f5665fba4398b', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 490.318541503, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x72294332bf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:17:15.000Z'}}, {'blockNum': '0x973a93', 'uniqueId': '0xbc1ad498be45715c231609a9e0efe813cb80846422466b7c38e032217b71bf37:log:9', 'hash': '0xbc1ad498be45715c231609a9e0efe813cb80846422466b7c38e032217b71bf37', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 18.096003348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04369b1914', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:32:15.000Z'}}, {'blockNum': '0x973a93', 'uniqueId': '0xbc1ad498be45715c231609a9e0efe813cb80846422466b7c38e032217b71bf37:log:11', 'hash': '0xbc1ad498be45715c231609a9e0efe813cb80846422466b7c38e032217b71bf37', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x1e7420a37182424817c3ebd04159b3cf64132d12', 'value': 18.096003348, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04369b1914', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:32:15.000Z'}}, {'blockNum': '0x973ab0', 'uniqueId': '0x29019127533119aa1c3a3b8579a20ede7dabf72244aff9c2d190990899e4198e:log:29', 'hash': '0x29019127533119aa1c3a3b8579a20ede7dabf72244aff9c2d190990899e4198e', 'from': '0x48c0192d1e478695fb5034ecc85b44c0951015e2', 'to': '0x84b716016d9b0ae448c534d87dfa3954c22d6951', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5af3107a4000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:38:42.000Z'}}, {'blockNum': '0x973ac7', 'uniqueId': '0x9ef9f8400bac18a0e77845350c9a034ad94828862642037517b7d9f0d631c7ac:log:13', 'hash': '0x9ef9f8400bac18a0e77845350c9a034ad94828862642037517b7d9f0d631c7ac', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 370.270375843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x5635d58fa3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:43:19.000Z'}}, {'blockNum': '0x973ac9', 'uniqueId': '0x864564a19028f47e8d315aaeef8efb5e808389e612288239f265dcef698336a6:log:40', 'hash': '0x864564a19028f47e8d315aaeef8efb5e808389e612288239f265dcef698336a6', 'from': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'to': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'value': 523.402337929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x79dd35de89', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:43:43.000Z'}}, {'blockNum': '0x973ac9', 'uniqueId': '0x864564a19028f47e8d315aaeef8efb5e808389e612288239f265dcef698336a6:log:42', 'hash': '0x864564a19028f47e8d315aaeef8efb5e808389e612288239f265dcef698336a6', 'from': '0x3ab6564d5c214bc416ee8421e05219960504eead', 'to': '0xa5ee22c4ec7e4c0f2b037147697dde1fb79aa6fb', 'value': 523.402337929, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x79dd35de89', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:43:43.000Z'}}, {'blockNum': '0x973acb', 'uniqueId': '0xd4508e4e601218db382a0ed4dd905daf9f97930d44d001369a49ac0f543e5a13:log:23', 'hash': '0xd4508e4e601218db382a0ed4dd905daf9f97930d44d001369a49ac0f543e5a13', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 50.000046885, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ba43c2b25', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:44:09.000Z'}}, {'blockNum': '0x973acb', 'uniqueId': '0xd4508e4e601218db382a0ed4dd905daf9f97930d44d001369a49ac0f543e5a13:log:25', 'hash': '0xd4508e4e601218db382a0ed4dd905daf9f97930d44d001369a49ac0f543e5a13', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', 'value': 50, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0ba43b7400', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:44:09.000Z'}}, {'blockNum': '0x973ace', 'uniqueId': '0xf164ccbdc708fc906a97012cb269895bcf5c9934377d68e9c6cda7dd5f0a9e7c:log:6', 'hash': '0xf164ccbdc708fc906a97012cb269895bcf5c9934377d68e9c6cda7dd5f0a9e7c', 'from': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'to': '0xb45cec59e139462ff25b9d9eb01276a54c28925a', 'value': 1495.832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015c4688f600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:44:34.000Z'}}, {'blockNum': '0x973ade', 'uniqueId': '0xc8678af9408b472ee0724cbca29c4a590a32ecb2c7a1e65e30168e05a866a669:log:1', 'hash': '0xc8678af9408b472ee0724cbca29c4a590a32ecb2c7a1e65e30168e05a866a669', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'value': 1727.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01922655a500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:48:08.000Z'}}, {'blockNum': '0x973ade', 'uniqueId': '0x43c8b740d1950a5ac1488b2c2eac539702880e3393df17231d9b04e0b27ac9a3:log:3', 'hash': '0x43c8b740d1950a5ac1488b2c2eac539702880e3393df17231d9b04e0b27ac9a3', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd7016954ec76535ff8653cdff432aec2429b38f8', 'value': 1795.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a1ef878b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:48:08.000Z'}}, {'blockNum': '0x973adf', 'uniqueId': '0x5557417cc91805834e0eca2af73d24ffc0d6afa06ff528d73341f98a3089ee56:log:45', 'hash': '0x5557417cc91805834e0eca2af73d24ffc0d6afa06ff528d73341f98a3089ee56', 'from': '0xc892a4dc36ffd6244d29f0cec1dd222eb92cfb71', 'to': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'value': 1727.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01922655a500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:48:28.000Z'}}, {'blockNum': '0x973adf', 'uniqueId': '0x5557417cc91805834e0eca2af73d24ffc0d6afa06ff528d73341f98a3089ee56:log:46', 'hash': '0x5557417cc91805834e0eca2af73d24ffc0d6afa06ff528d73341f98a3089ee56', 'from': '0x745daa146934b27e3f0b6bff1a6e36b9b90fb131', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 1727.22, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01922655a500', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:48:28.000Z'}}, {'blockNum': '0x973ae0', 'uniqueId': '0x7fa5ddfb4cdf4f627d8800c26afc56766c92f4ad11416ab5af870d4c1a523b0d:log:16', 'hash': '0x7fa5ddfb4cdf4f627d8800c26afc56766c92f4ad11416ab5af870d4c1a523b0d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 619.394937551, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x9036d0b2cf', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:48:40.000Z'}}, {'blockNum': '0x973aed', 'uniqueId': '0xe36781fab763eb21bd56a6a2a08974a8da2dac46bafe507dc698d276c44eab0a:log:20', 'hash': '0xe36781fab763eb21bd56a6a2a08974a8da2dac46bafe507dc698d276c44eab0a', 'from': '0xd7016954ec76535ff8653cdff432aec2429b38f8', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1795.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01a1ef878b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:50:19.000Z'}}, {'blockNum': '0x973afb', 'uniqueId': '0xd51086d31f4f7558ba400ce35040b79d3e3e3c829631d7c2d9fa337fb535059e:log:32', 'hash': '0xd51086d31f4f7558ba400ce35040b79d3e3e3c829631d7c2d9fa337fb535059e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9259dd7224d01522ac4efdc5f5a3d22e6fa8f3a3', 'value': 1492.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015b987d4c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:52:59.000Z'}}, {'blockNum': '0x973b10', 'uniqueId': '0xb6b2dab796a5faf08800a57320b3bae3e0506d3b65a67a2f5c02956081a3d1ee:log:27', 'hash': '0xb6b2dab796a5faf08800a57320b3bae3e0506d3b65a67a2f5c02956081a3d1ee', 'from': '0x9259dd7224d01522ac4efdc5f5a3d22e6fa8f3a3', 'to': '0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98', 'value': 1492.912, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015b987d4c00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T18:58:05.000Z'}}, {'blockNum': '0x973b4e', 'uniqueId': '0xe700bc76a5c2277ea46212966ac3006b96436b2e95196127384710f08b42ca1a:log:167', 'hash': '0xe700bc76a5c2277ea46212966ac3006b96436b2e95196127384710f08b42ca1a', 'from': '0x7efcb86b2defe7336f9143e77bfa3c563ba067e7', 'to': '0x1c4b70a3968436b9a0a9cf5205c787eb81bb558c', 'value': 17000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0f761ef61000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:12:35.000Z'}}, {'blockNum': '0x973b6d', 'uniqueId': '0x69c235053d8c8df8398885909bbf81797e59168e281ecaaadcee0352f90521d4:log:119', 'hash': '0x69c235053d8c8df8398885909bbf81797e59168e281ecaaadcee0352f90521d4', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 492.102959608, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x72939f41f8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:18:19.000Z'}}, {'blockNum': '0x973b76', 'uniqueId': '0xd2985d5ee061445045bc2d876dc479272e4f4a6a4d070ef845be0dcc8788bf4b:log:10', 'hash': '0xd2985d5ee061445045bc2d876dc479272e4f4a6a4d070ef845be0dcc8788bf4b', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 610.909417481, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8e3d09f009', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:20:48.000Z'}}, {'blockNum': '0x973b8a', 'uniqueId': '0xc9741c3c94d7afefa7261652eeaed8f0f640edc821770496ed732db98191dfed:log:94', 'hash': '0xc9741c3c94d7afefa7261652eeaed8f0f640edc821770496ed732db98191dfed', 'from': '0x744db0e7e8b57ef9aea0550f9d08410c323ed848', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x96dfcf5000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:23:57.000Z'}}, {'blockNum': '0x973b8a', 'uniqueId': '0xc9741c3c94d7afefa7261652eeaed8f0f640edc821770496ed732db98191dfed:log:95', 'hash': '0xc9741c3c94d7afefa7261652eeaed8f0f640edc821770496ed732db98191dfed', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 648, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x96dfcf5000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:23:57.000Z'}}, {'blockNum': '0x973bb8', 'uniqueId': '0x1b38279f1c40211c2db84df7bb771cebb5b1b5679c6ad4a83a9c945e703325e3:log:85', 'hash': '0x1b38279f1c40211c2db84df7bb771cebb5b1b5679c6ad4a83a9c945e703325e3', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:35:26.000Z'}}, {'blockNum': '0x973bb8', 'uniqueId': '0x1b38279f1c40211c2db84df7bb771cebb5b1b5679c6ad4a83a9c945e703325e3:log:86', 'hash': '0x1b38279f1c40211c2db84df7bb771cebb5b1b5679c6ad4a83a9c945e703325e3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:35:26.000Z'}}, {'blockNum': '0x973bbd', 'uniqueId': '0x4372bf8244e63378e960d468b40ce583c8f77d949de7fbdc46b37c8672cabb5f:log:169', 'hash': '0x4372bf8244e63378e960d468b40ce583c8f77d949de7fbdc46b37c8672cabb5f', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5178.018201, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04b599ef7da8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:36:24.000Z'}}, {'blockNum': '0x973bc5', 'uniqueId': '0x0c8bd55fba5849f4f911e7cb6a6c82295c9eb12b37e5c275d91a08d8d8a0f61e:log:79', 'hash': '0x0c8bd55fba5849f4f911e7cb6a6c82295c9eb12b37e5c275d91a08d8d8a0f61e', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:38:06.000Z'}}, {'blockNum': '0x973bc5', 'uniqueId': '0x0c8bd55fba5849f4f911e7cb6a6c82295c9eb12b37e5c275d91a08d8d8a0f61e:log:80', 'hash': '0x0c8bd55fba5849f4f911e7cb6a6c82295c9eb12b37e5c275d91a08d8d8a0f61e', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:38:06.000Z'}}, {'blockNum': '0x973bc7', 'uniqueId': '0x20032dc99f914015b1e6afcbf519c04e6338ca0fb276824a66c6448326fb8ced:log:85', 'hash': '0x20032dc99f914015b1e6afcbf519c04e6338ca0fb276824a66c6448326fb8ced', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:38:41.000Z'}}, {'blockNum': '0x973bc7', 'uniqueId': '0x20032dc99f914015b1e6afcbf519c04e6338ca0fb276824a66c6448326fb8ced:log:86', 'hash': '0x20032dc99f914015b1e6afcbf519c04e6338ca0fb276824a66c6448326fb8ced', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:38:41.000Z'}}, {'blockNum': '0x973bd2', 'uniqueId': '0x3ab552fb14c6f92b9a766928e7c1880054b75b98b0dd082979487e032fe3212b:log:23', 'hash': '0x3ab552fb14c6f92b9a766928e7c1880054b75b98b0dd082979487e032fe3212b', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:40:53.000Z'}}, {'blockNum': '0x973bd6', 'uniqueId': '0x71fb021d946f961a45572fe52c26de7783edf3f87271cd528849e3e34e1209b3:log:28', 'hash': '0x71fb021d946f961a45572fe52c26de7783edf3f87271cd528849e3e34e1209b3', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:41:40.000Z'}}, {'blockNum': '0x973bd6', 'uniqueId': '0x71fb021d946f961a45572fe52c26de7783edf3f87271cd528849e3e34e1209b3:log:29', 'hash': '0x71fb021d946f961a45572fe52c26de7783edf3f87271cd528849e3e34e1209b3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:41:40.000Z'}}, {'blockNum': '0x973be8', 'uniqueId': '0xc751c81db332095fda66f96908f4171a451ee3ea14b79d1791b979c825a62500:log:154', 'hash': '0xc751c81db332095fda66f96908f4171a451ee3ea14b79d1791b979c825a62500', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T19:46:03.000Z'}}, {'blockNum': '0x973c29', 'uniqueId': '0x059041bd247ddaa10d72fe677557b5e1cc14bca27212c15b6d2e9f700bc819a8:log:159', 'hash': '0x059041bd247ddaa10d72fe677557b5e1cc14bca27212c15b6d2e9f700bc819a8', 'from': '0xa4c603fffb822bb8767d141e2c0df30c2c4125f5', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 158, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x24c988ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:00:07.000Z'}}, {'blockNum': '0x973c36', 'uniqueId': '0xd4eec2c4212eead7ebbeef25360501e56c124fbf16dbf4d6680d26c418417420:log:101', 'hash': '0xd4eec2c4212eead7ebbeef25360501e56c124fbf16dbf4d6680d26c418417420', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:03:16.000Z'}}, {'blockNum': '0x973c36', 'uniqueId': '0xd4eec2c4212eead7ebbeef25360501e56c124fbf16dbf4d6680d26c418417420:log:102', 'hash': '0xd4eec2c4212eead7ebbeef25360501e56c124fbf16dbf4d6680d26c418417420', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:03:16.000Z'}}, {'blockNum': '0x973c36', 'uniqueId': '0x5e35e308ff0bb0f9204bbc12710561e5cf6b22a94099a91dc6c30a77841aa176:log:109', 'hash': '0x5e35e308ff0bb0f9204bbc12710561e5cf6b22a94099a91dc6c30a77841aa176', 'from': '0xbb95d62b37adff69fd6738a0171b1feb0e03e8e3', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:03:16.000Z'}}, {'blockNum': '0x973c36', 'uniqueId': '0x5e35e308ff0bb0f9204bbc12710561e5cf6b22a94099a91dc6c30a77841aa176:log:110', 'hash': '0x5e35e308ff0bb0f9204bbc12710561e5cf6b22a94099a91dc6c30a77841aa176', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x048c27395000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:03:16.000Z'}}, {'blockNum': '0x973c39', 'uniqueId': '0x4234fb8e02d28211af132d6b705f4e5c64bd041191e297d9d4f47dd88fcf3555:log:62', 'hash': '0x4234fb8e02d28211af132d6b705f4e5c64bd041191e297d9d4f47dd88fcf3555', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x44d34a119ba21a42167ff8b77a88f0fc7bb2db90', 'value': 10000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x09184e72a000', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:03:43.000Z'}}, {'blockNum': '0x973c3f', 'uniqueId': '0x63311c9446c1ac4887a57b8475c1b03132c17c6d6e5537fc250c76e194f736bb:log:49', 'hash': '0x63311c9446c1ac4887a57b8475c1b03132c17c6d6e5537fc250c76e194f736bb', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 536.100881624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7cd21a44d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:04:25.000Z'}}, {'blockNum': '0x973c3f', 'uniqueId': '0x63311c9446c1ac4887a57b8475c1b03132c17c6d6e5537fc250c76e194f736bb:log:51', 'hash': '0x63311c9446c1ac4887a57b8475c1b03132c17c6d6e5537fc250c76e194f736bb', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x09e5811da57a079fbd6493deebc75f534d02a24d', 'value': 536.100881624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7cd21a44d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:04:25.000Z'}}, {'blockNum': '0x973c3f', 'uniqueId': '0x63311c9446c1ac4887a57b8475c1b03132c17c6d6e5537fc250c76e194f736bb:log:56', 'hash': '0x63311c9446c1ac4887a57b8475c1b03132c17c6d6e5537fc250c76e194f736bb', 'from': '0x09e5811da57a079fbd6493deebc75f534d02a24d', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 536.100881624, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x7cd21a44d8', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:04:25.000Z'}}, {'blockNum': '0x973c46', 'uniqueId': '0x34bb9d2e3c07d3b1ab639202bbc5f75d57013c75df3220a6d9b5be9150795c6e:log:97', 'hash': '0x34bb9d2e3c07d3b1ab639202bbc5f75d57013c75df3220a6d9b5be9150795c6e', 'from': '0x6e519e8e21e04b0403eba093262f159900d3f503', 'to': '0xed8fc56918a701f7f62d2aa65e90561c64231cc8', 'value': 119, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1bb4f3e600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:06:36.000Z'}}, {'blockNum': '0x973c66', 'uniqueId': '0xf9fd197bb75f125ed0ac6d19c58e7bd719ddd6659315efa85e86cda01240f056:log:2', 'hash': '0xf9fd197bb75f125ed0ac6d19c58e7bd719ddd6659315efa85e86cda01240f056', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xd9a2b37757dd4d1f9c99a4b8fa6058a6a69b8780', 'value': 69.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1011e99f00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:14:08.000Z'}}, {'blockNum': '0x973c9a', 'uniqueId': '0xe1bf86d17752d645526c65a22bdc39d68cea8c38bb79ea2824f647baa79ae125:log:72', 'hash': '0xe1bf86d17752d645526c65a22bdc39d68cea8c38bb79ea2824f647baa79ae125', 'from': '0x90730f29af95d15a3c722080c2799f897c32fe98', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 956.246714612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xdea4bee8f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:24:07.000Z'}}, {'blockNum': '0x973c9a', 'uniqueId': '0xe1bf86d17752d645526c65a22bdc39d68cea8c38bb79ea2824f647baa79ae125:log:73', 'hash': '0xe1bf86d17752d645526c65a22bdc39d68cea8c38bb79ea2824f647baa79ae125', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 956.246714612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xdea4bee8f4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:24:07.000Z'}}, {'blockNum': '0x973c9b', 'uniqueId': '0x52f47af96b1dafb22bed0e6016331b505e7723222008ea2b2a40bc44ae97f625:log:26', 'hash': '0x52f47af96b1dafb22bed0e6016331b505e7723222008ea2b2a40bc44ae97f625', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 987.818160362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xe5fe8cf0ea', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T20:24:11.000Z'}}, {'blockNum': '0x973d88', 'uniqueId': '0xcb4d883c145703d8a3e2b6720f7ff988a1936d5267612ef07b05ddda90f542c0:log:13', 'hash': '0xcb4d883c145703d8a3e2b6720f7ff988a1936d5267612ef07b05ddda90f542c0', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0xe67fa67b516acb9d5eac25c0b673dd4a66298c91', 'value': 1022.456930499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xee0f2ea0c3', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:14:55.000Z'}}, {'blockNum': '0x973d8c', 'uniqueId': '0xabb72a49a249714133a4a345f1a9ffcc222283b16d134ed3c4973cc970b7d1d1:log:87', 'hash': '0xabb72a49a249714133a4a345f1a9ffcc222283b16d134ed3c4973cc970b7d1d1', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 468.391984325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d0e567cc5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:15:50.000Z'}}, {'blockNum': '0x973d8c', 'uniqueId': '0xabb72a49a249714133a4a345f1a9ffcc222283b16d134ed3c4973cc970b7d1d1:log:89', 'hash': '0xabb72a49a249714133a4a345f1a9ffcc222283b16d134ed3c4973cc970b7d1d1', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'value': 468.391984325, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d0e567cc5', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:15:50.000Z'}}, {'blockNum': '0x973d8c', 'uniqueId': '0xabb72a49a249714133a4a345f1a9ffcc222283b16d134ed3c4973cc970b7d1d1:log:94', 'hash': '0xabb72a49a249714133a4a345f1a9ffcc222283b16d134ed3c4973cc970b7d1d1', 'from': '0x693c188e40f760ecf00d2946ef45260b84fbc43e', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 468.391984326, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x6d0e567cc6', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:15:50.000Z'}}, {'blockNum': '0x973d8d', 'uniqueId': '0x8fd65813152b54cf8c16b32eead6098bb399786e9aa0880579bea1ec5fe5e5b9:log:90', 'hash': '0x8fd65813152b54cf8c16b32eead6098bb399786e9aa0880579bea1ec5fe5e5b9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x26f849ce5bd550d43fd8273796668e999b2a5ffa', 'value': 2190.27350986, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x01fdf67979e4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:16:00.000Z'}}, {'blockNum': '0x973d8d', 'uniqueId': '0x6daf15a4e2148552884361735fd7c10946fcc61149a67722f00ccedc1c1e8799:log:94', 'hash': '0x6daf15a4e2148552884361735fd7c10946fcc61149a67722f00ccedc1c1e8799', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 2598.837545621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x025d16c9ea95', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:16:00.000Z'}}, {'blockNum': '0x973d8d', 'uniqueId': '0x6daf15a4e2148552884361735fd7c10946fcc61149a67722f00ccedc1c1e8799:log:96', 'hash': '0x6daf15a4e2148552884361735fd7c10946fcc61149a67722f00ccedc1c1e8799', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'value': 2598.837545621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x025d16c9ea95', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:16:00.000Z'}}, {'blockNum': '0x973d8d', 'uniqueId': '0x6daf15a4e2148552884361735fd7c10946fcc61149a67722f00ccedc1c1e8799:log:102', 'hash': '0x6daf15a4e2148552884361735fd7c10946fcc61149a67722f00ccedc1c1e8799', 'from': '0xf6fb09a41fa6c18cebc1e7c6f75a8664d69e4d48', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 2598.837545621, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x025d16c9ea95', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:16:00.000Z'}}, {'blockNum': '0x973da2', 'uniqueId': '0x552504ba30f0a1f8719b6860fd08ffecb6699fdaabffdc1e9689da2597522024:log:12', 'hash': '0x552504ba30f0a1f8719b6860fd08ffecb6699fdaabffdc1e9689da2597522024', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 359.475447368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x53b2680648', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:18:55.000Z'}}, {'blockNum': '0x973da2', 'uniqueId': '0x552504ba30f0a1f8719b6860fd08ffecb6699fdaabffdc1e9689da2597522024:log:14', 'hash': '0x552504ba30f0a1f8719b6860fd08ffecb6699fdaabffdc1e9689da2597522024', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xdda8eb019afc55edeed22f19aa673519d7e9c491', 'value': 359.475447368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x53b2680648', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:18:55.000Z'}}, {'blockNum': '0x973db7', 'uniqueId': '0xd4c95cd1db8723457afbadff44b8d89a4ecac1a305b29b267e737d9bff737fa3:log:60', 'hash': '0xd4c95cd1db8723457afbadff44b8d89a4ecac1a305b29b267e737d9bff737fa3', 'from': '0xf97e8fc6aa023f66e3cc0a740bea334c1ffea79b', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 16.170926858, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03c3dcc30a', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:22:46.000Z'}}, {'blockNum': '0x973db7', 'uniqueId': '0xd4c95cd1db8723457afbadff44b8d89a4ecac1a305b29b267e737d9bff737fa3:log:61', 'hash': '0xd4c95cd1db8723457afbadff44b8d89a4ecac1a305b29b267e737d9bff737fa3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xf97e8fc6aa023f66e3cc0a740bea334c1ffea79b', 'value': 0.485127805, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x1cea767d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:22:46.000Z'}}, {'blockNum': '0x973db7', 'uniqueId': '0xd4c95cd1db8723457afbadff44b8d89a4ecac1a305b29b267e737d9bff737fa3:log:62', 'hash': '0xd4c95cd1db8723457afbadff44b8d89a4ecac1a305b29b267e737d9bff737fa3', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 15.685799053, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x03a6f24c8d', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:22:46.000Z'}}, {'blockNum': '0x973dcd', 'uniqueId': '0xceff5a55c411d50444c4fd303a83244769386c086e4e23679f5d343a1e25b58d:log:113', 'hash': '0xceff5a55c411d50444c4fd303a83244769386c086e4e23679f5d343a1e25b58d', 'from': '0xe67fa67b516acb9d5eac25c0b673dd4a66298c91', 'to': '0x3200c1055f50dc93aa9a3200bbc3730135d9cf45', 'value': 1022.456975073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xee0f2f4ee1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:28:35.000Z'}}, {'blockNum': '0x973dde', 'uniqueId': '0x7083cf96d736802a093865ebf1222a15ba4321192bc651ac9a1392d08627b490:log:1', 'hash': '0x7083cf96d736802a093865ebf1222a15ba4321192bc651ac9a1392d08627b490', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x6d840cc45084a6e1c353f0b329d50b8625fc6fe8', 'value': 184.92191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x2b0e346af0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T21:32:58.000Z'}}, {'blockNum': '0x973ea5', 'uniqueId': '0x6e2d322253da2f5971f23a0d8ed8ff3c871133e6f8f7e32a60d5d9fbf8948b1d:log:106', 'hash': '0x6e2d322253da2f5971f23a0d8ed8ff3c871133e6f8f7e32a60d5d9fbf8948b1d', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x6c5c60e97a9215d02071562d0e1691981ff17cf2', 'value': 5.723512763, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x015525dfbb', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T22:19:25.000Z'}}, {'blockNum': '0x973eee', 'uniqueId': '0x0dd12351702b688526feec92dbab8adb49fbca76237f30f036a77779196cee70:log:146', 'hash': '0x0dd12351702b688526feec92dbab8adb49fbca76237f30f036a77779196cee70', 'from': '0xdfc38f8b82216416e3bea505ddb6d1bb4a3be15f', 'to': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'value': 2205.02, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0201656f0f00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T22:35:21.000Z'}}, {'blockNum': '0x973ef7', 'uniqueId': '0x02fdbe0beed5ba5d7129245d484c909753c4e9fe64648c3d330de2b53dd47449:log:136', 'hash': '0x02fdbe0beed5ba5d7129245d484c909753c4e9fe64648c3d330de2b53dd47449', 'from': '0x3200c1055f50dc93aa9a3200bbc3730135d9cf45', 'to': '0xcdacba1f649ee0c18f1e53813fde185c135eba3f', 'value': 1022.456975073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xee0f2f4ee1', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T22:39:17.000Z'}}, {'blockNum': '0x973f11', 'uniqueId': '0xdb94aaa0f3dd41c8637c3de298d2386c922855c9248dd5571269965f16b305fd:log:13', 'hash': '0xdb94aaa0f3dd41c8637c3de298d2386c922855c9248dd5571269965f16b305fd', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 735.998523659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab5cee390b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T22:45:24.000Z'}}, {'blockNum': '0x973f11', 'uniqueId': '0xdb94aaa0f3dd41c8637c3de298d2386c922855c9248dd5571269965f16b305fd:log:15', 'hash': '0xdb94aaa0f3dd41c8637c3de298d2386c922855c9248dd5571269965f16b305fd', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x84634eed44d11b863e17e85d3f0d9ea8e921673b', 'value': 735.998523659, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0xab5cee390b', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T22:45:24.000Z'}}, {'blockNum': '0x973f69', 'uniqueId': '0x1b903fa8a6d947c65d81b23e5074d93677ef3b590b571337596b30ef8d64af4f:log:15', 'hash': '0x1b903fa8a6d947c65d81b23e5074d93677ef3b590b571337596b30ef8d64af4f', 'from': '0x8bf3af4ef2609199a01d1bcf74f8324db56a00a8', 'to': '0x2fcf8b2e33b5ccb4a8de3bc1aacc28a4c9e40862', 'value': 215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x320effa600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T23:03:07.000Z'}}, {'blockNum': '0x973f6e', 'uniqueId': '0x60c72cfdcd7b792d7e1e4928c282566dc13f906c223cc79fb49dcf4b042eacdb:log:0', 'hash': '0x60c72cfdcd7b792d7e1e4928c282566dc13f906c223cc79fb49dcf4b042eacdb', 'from': '0x2fcf8b2e33b5ccb4a8de3bc1aacc28a4c9e40862', 'to': '0x7d3cd5685188c6aa498697db91ca548a1249863e', 'value': 215, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x320effa600', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T23:03:59.000Z'}}, {'blockNum': '0x973fa4', 'uniqueId': '0x0d0c8d8cc5990097ab54f67da1a38f0cf7597abbc5afb0d0315dbf35f1b3c4d8:log:2', 'hash': '0x0d0c8d8cc5990097ab54f67da1a38f0cf7597abbc5afb0d0315dbf35f1b3c4d8', 'from': '0x9239df3e9996c776d539eb9f01a8ae8e7957b3c3', 'to': '0x52e81e783c31af343dfd01084f35decbced9fc18', 'value': 5465.9156705, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04f8a1f63fe4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T23:14:10.000Z'}}, {'blockNum': '0x973fad', 'uniqueId': '0xc465df6a516ddd42fe751cc055c51bc3ec2ff892cf7ad95c00ab7ef398a6abf7:log:240', 'hash': '0xc465df6a516ddd42fe751cc055c51bc3ec2ff892cf7ad95c00ab7ef398a6abf7', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T23:15:34.000Z'}}, {'blockNum': '0x973fad', 'uniqueId': '0xc465df6a516ddd42fe751cc055c51bc3ec2ff892cf7ad95c00ab7ef398a6abf7:log:242', 'hash': '0xc465df6a516ddd42fe751cc055c51bc3ec2ff892cf7ad95c00ab7ef398a6abf7', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0xe1fbc646c5de68b41433c8da96f03bfed9a05f2b', 'value': 30, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x06fc23ac00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T23:15:34.000Z'}}, {'blockNum': '0x974013', 'uniqueId': '0x13a9638571355382662b731cbec5d0bf8fa77c77ea354e4cf64234d952fa1728:log:13', 'hash': '0x13a9638571355382662b731cbec5d0bf8fa77c77ea354e4cf64234d952fa1728', 'from': '0x6193e8e85f00f25801df906a4c1aaf511a2c7789', 'to': '0x59db2e1df65b844573e98d396b22c802f6ca17bb', 'value': 5.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x012f633c80', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T23:35:04.000Z'}}, {'blockNum': '0x974061', 'uniqueId': '0xf677a914999c8a5726efa63d66b0018af6fdf3a317c243407ee4a6d929077153:log:222', 'hash': '0xf677a914999c8a5726efa63d66b0018af6fdf3a317c243407ee4a6d929077153', 'from': '0x46df35921ca8b63259853aa24dca0770778f4696', 'to': '0xa825cae02b310e9901b4776806ce25db520c8642', 'value': 486.10704784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x712e3ce7a0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T23:49:37.000Z'}}, {'blockNum': '0x974063', 'uniqueId': '0x0cf4224280ec117385808311a894a7fe16f02577b9cbcb32e248338a5f8e12f9:log:49', 'hash': '0x0cf4224280ec117385808311a894a7fe16f02577b9cbcb32e248338a5f8e12f9', 'from': '0xa825cae02b310e9901b4776806ce25db520c8642', 'to': '0x005fde5294199d5c3eb5eb7a6e51954123b74b1c', 'value': 368.803303588, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x55de63d0a4', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-20T23:49:53.000Z'}}, {'blockNum': '0x974196', 'uniqueId': '0x71dbf727d78516126b20098dd62331b5fce59adf6f9c27d357ec7aa0be7fbe4a:log:83', 'hash': '0x71dbf727d78516126b20098dd62331b5fce59adf6f9c27d357ec7aa0be7fbe4a', 'from': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'to': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'value': 607.192642558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8d5f8073fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-21T00:52:35.000Z'}}, {'blockNum': '0x974196', 'uniqueId': '0x71dbf727d78516126b20098dd62331b5fce59adf6f9c27d357ec7aa0be7fbe4a:log:85', 'hash': '0x71dbf727d78516126b20098dd62331b5fce59adf6f9c27d357ec7aa0be7fbe4a', 'from': '0x65bf64ff5f51272f729bdcd7acfb00677ced86cd', 'to': '0x84634eed44d11b863e17e85d3f0d9ea8e921673b', 'value': 607.192642558, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x8d5f8073fe', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-21T00:52:35.000Z'}}, {'blockNum': '0x9741a8', 'uniqueId': '0xb2194b58294ad90caf8da41f260dc9dc04a247cfd59bc2456de3882443e960f1:log:36', 'hash': '0xb2194b58294ad90caf8da41f260dc9dc04a247cfd59bc2456de3882443e960f1', 'from': '0x84634eed44d11b863e17e85d3f0d9ea8e921673b', 'to': '0x53710f4279a240c63bfbed47a818e42322b1f090', 'value': 1343.191, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0138bc6c23c0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-21T00:56:13.000Z'}}, {'blockNum': '0x9741ad', 'uniqueId': '0xd3f730a4687352f940655871ce0b7fc57d4bc6a1c51af300d5dedd19b571d245:log:2', 'hash': '0xd3f730a4687352f940655871ce0b7fc57d4bc6a1c51af300d5dedd19b571d245', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x63825c174ab367968ec60f061753d3bbd36a0d8f', 'value': 5317.33, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x04d60990d880', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-21T00:56:44.000Z'}}, {'blockNum': '0x9741e9', 'uniqueId': '0x58171502c9c9421dd10fe636b5393bafd95c471df98ce584aa251f8e302c2077:log:30', 'hash': '0x58171502c9c9421dd10fe636b5393bafd95c471df98ce584aa251f8e302c2077', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x90b6f787bd9cfabecad428246e763b7cc3e72803', 'value': 23.5, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0578b58b00', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-21T01:12:10.000Z'}}, {'blockNum': '0x97423b', 'uniqueId': '0xcb270ec32df0ae6aad715563425405239f83db0d97aecc03c6e2edf08966d2ce:log:3', 'hash': '0xcb270ec32df0ae6aad715563425405239f83db0d97aecc03c6e2edf08966d2ce', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x1ecbee60a873744cd4428fe00f4e6120c8847974', 'value': 81.585188, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x12fedb2ca0', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-21T01:33:01.000Z'}}, {'blockNum': '0x97423f', 'uniqueId': '0xa5ee622bfafb15ff8551cf34aae6e51946450766726716ecd380c00301d05a98:log:14', 'hash': '0xa5ee622bfafb15ff8551cf34aae6e51946450766726716ecd380c00301d05a98', 'from': '0x9bc2f223026c252c8ef5f7f33f00f4bee21434b8', 'to': '0xfd339a84194c8e8a41297d89bf299de8c8e196cc', 'value': 14.2603908, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0351fc4b90', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-21T01:34:25.000Z'}}, {'blockNum': '0x9742a3', 'uniqueId': '0x9808dcaab3a33877ccc715996cd83428a7f7c37f8bc9950b7293ab845ffe05d8:log:41', 'hash': '0x9808dcaab3a33877ccc715996cd83428a7f7c37f8bc9950b7293ab845ffe05d8', 'from': '0x42b2fab1c961f98ac1012fc683581623c6e97f11', 'to': '0xbc77f2b01b30eeb339ed2ff280062e0e6fae7a7a', 'value': 330.27, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x4ce5a04380', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-21T01:56:34.000Z'}}, {'blockNum': '0x9742b1', 'uniqueId': '0x470c986081a1ef4c1a3162e5dc5fbc9d505a6e7eb6052fec4294057b601a7111:log:28', 'hash': '0x470c986081a1ef4c1a3162e5dc5fbc9d505a6e7eb6052fec4294057b601a7111', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x9a8d27dc8c56efb440b21a57b552ccced5fce0b4', 'value': 8.95, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'RLC', 'category': 'erc20', 'rawContract': {'value': '0x0215762980', 'address': '0x607f4c5bb672230e8672085532f7e901544a7375', 'decimal': '0x9'}, 'metadata': {'blockTimestamp': '2020-04-21T01:59:35.000Z'}}]}}
Number of returned transfers:  181
Answer is complete
 
symbol             ADX
group              CCS
date        2020-07-07
hour             16:00
exchange       binance
Name: 1108, dtype: object
HERE
 Symbol: ADX, Contract: 0xade00c28244d5ce17d72e40330b1c318cd12b7c3
Datetime timestamps:  2020-07-07 16:00:00 2020-07-07 04:00:00 2020-07-08 04:00:00
Unix timestamps:  1594087200.0 1594173600.0
Hex Block Numbers:  0x9ed635 0x9eef98
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': []}}
Number of returned transfers:  0
Answer is complete
 
symbol            IDEX
group              CCS
date        2020-12-31
hour             17:00
exchange       binance
Name: 1109, dtype: object
HERE
 Symbol: IDEX, Contract: 0xb705268213d593b8fd88d3fdeff93aff5cbdcfae
Datetime timestamps:  2020-12-31 17:00:00 2020-12-31 05:00:00 2021-01-01 05:00:00
Unix timestamps:  1609387200.0 1609473600.0
Hex Block Numbers:  0xb062b6 0xb07c45
{'jsonrpc': '2.0', 'id': None, 'result': {'transfers': [{'blockNum': '0xb064be', 'uniqueId': '0xf6f88ecc5db86d5cc957b546aa2d11c8ed8319c0f466890231b5861e3b7e4477:log:153', 'hash': '0xf6f88ecc5db86d5cc957b546aa2d11c8ed8319c0f466890231b5861e3b7e4477', 'from': '0x8645fb015e160c3f9c085c2f2a57065d7321afc3', 'to': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'value': 197119.9880523943, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x29bde55deb320e427f0f', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T05:55:11.000Z'}}, {'blockNum': '0xb06500', 'uniqueId': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6:log:228', 'hash': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T06:14:04.000Z'}}, {'blockNum': '0xb06500', 'uniqueId': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6:log:233', 'hash': '0xdb686fcc2797ad7cf1174a3e4a72163cf6a1a5d457e742a398124abfc65451f6', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 30000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x065a4da25d3016c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T06:14:04.000Z'}}, {'blockNum': '0xb06670', 'uniqueId': '0x716b0f3533b84222302943eab7cccf09c99dd2db2933e2a0197866328b1d0802:log:89', 'hash': '0x716b0f3533b84222302943eab7cccf09c99dd2db2933e2a0197866328b1d0802', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 69831, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ec98bcce7815ebc0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T07:35:28.000Z'}}, {'blockNum': '0xb0674e', 'uniqueId': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc:log:62', 'hash': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 32150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06cedae0c5ffe8980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:25:30.000Z'}}, {'blockNum': '0xb0674e', 'uniqueId': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc:log:67', 'hash': '0xef69d76cb809c25c198f2b431cd4522e0f43cb4ac5e98b84aa35c79c916ad6bc', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 32150, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06cedae0c5ffe8980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:25:30.000Z'}}, {'blockNum': '0xb06773', 'uniqueId': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883:log:252', 'hash': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:32:44.000Z'}}, {'blockNum': '0xb06773', 'uniqueId': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883:log:253', 'hash': '0xbaf97efb02b6898c1d950760a4bcc74f7cade3370e81b5486ed419e783180883', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x6632eda2685eabfb7b3b45669cfa5441349485d3', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:32:44.000Z'}}, {'blockNum': '0xb0677d', 'uniqueId': '0xbacb5695f9be72ac8c2c8cfd048fec0b6d5f02f43b3ef98f406e622880494b3f:log:319', 'hash': '0xbacb5695f9be72ac8c2c8cfd048fec0b6d5f02f43b3ef98f406e622880494b3f', 'from': '0x6632eda2685eabfb7b3b45669cfa5441349485d3', 'to': '0xdd4c4ad3dff94841bd8b9020a2238e2864fc1a22', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T08:35:02.000Z'}}, {'blockNum': '0xb06806', 'uniqueId': '0x061b54e2c575b5e2d839dbcc6dd46053e0a53886ca6732213d534af8217ac4aa:log:49', 'hash': '0x061b54e2c575b5e2d839dbcc6dd46053e0a53886ca6732213d534af8217ac4aa', 'from': '0xdd4c4ad3dff94841bd8b9020a2238e2864fc1a22', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 16676.17065968879, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0388045b9cd91db5bc24', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T09:00:32.000Z'}}, {'blockNum': '0xb06a70', 'uniqueId': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71:log:90', 'hash': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71', 'from': '0x8b91c0dd24c4fd4f973e49ed8568921e31cf38b7', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T11:13:54.000Z'}}, {'blockNum': '0xb06a70', 'uniqueId': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71:log:95', 'hash': '0x2d14008af8b60b9bcdc159e552eb5fff78caa0693492f020fdca07afb3e85d71', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T11:13:54.000Z'}}, {'blockNum': '0xb06bd3', 'uniqueId': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a:log:208', 'hash': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:28:09.000Z'}}, {'blockNum': '0xb06bd3', 'uniqueId': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a:log:209', 'hash': '0xc537a245a4ced2a03b4801a6afdd2b7c600b24babcad4e2331ab06779793461a', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xccc18ec56dcefec8c39ea8022a099798e31e5264', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:28:09.000Z'}}, {'blockNum': '0xb06bd9', 'uniqueId': '0xcb49191614cc10f05cea4d85da79ae734f291c33036bceeb0463b680fa4d5cf0:log:175', 'hash': '0xcb49191614cc10f05cea4d85da79ae734f291c33036bceeb0463b680fa4d5cf0', 'from': '0xccc18ec56dcefec8c39ea8022a099798e31e5264', 'to': '0x9ea39651739f6c025d0770695a822b7187605f42', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T12:29:37.000Z'}}, {'blockNum': '0xb06c72', 'uniqueId': '0xc5cc9e8ee1a15fdd662718843b23419e8a9fcdbb7e28cb766431a25a10d7b4fe:log:46', 'hash': '0xc5cc9e8ee1a15fdd662718843b23419e8a9fcdbb7e28cb766431a25a10d7b4fe', 'from': '0x9ea39651739f6c025d0770695a822b7187605f42', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 65982.66825412362, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0df8ed7811f75a89ac75', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:01:19.000Z'}}, {'blockNum': '0xb06c76', 'uniqueId': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97:log:144', 'hash': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:02:03.000Z'}}, {'blockNum': '0xb06c76', 'uniqueId': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97:log:145', 'hash': '0xa3bb6eb8e540551876c59d77cbea932f62f00155333ee6613a64f6ce354afb97', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x6521a235cb318948a40c27c60f4e5d637998fe08', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:02:03.000Z'}}, {'blockNum': '0xb06c80', 'uniqueId': '0xbc952c6ccc2728f471560576958bab591891284e872d685e98cb2d282c6b9322:log:198', 'hash': '0xbc952c6ccc2728f471560576958bab591891284e872d685e98cb2d282c6b9322', 'from': '0x6521a235cb318948a40c27c60f4e5d637998fe08', 'to': '0x7594530b7d298c28de863010f0ff25e15aef9ccf', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:04:08.000Z'}}, {'blockNum': '0xb06cf4', 'uniqueId': '0xa849f6e941a05933f6991b1b3fe817e9c74ce49c92201fc9482c0eeb64d89e1a:log:32', 'hash': '0xa849f6e941a05933f6991b1b3fe817e9c74ce49c92201fc9482c0eeb64d89e1a', 'from': '0x7594530b7d298c28de863010f0ff25e15aef9ccf', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 53759.98442551044, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0b6255a80a659a121fb0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:30:30.000Z'}}, {'blockNum': '0xb06d17', 'uniqueId': '0x8bd9f421ea52c659ab3bd69ffe01f7734b58b50e29c2eea44962988dbc4cd8eb:log:29', 'hash': '0x8bd9f421ea52c659ab3bd69ffe01f7734b58b50e29c2eea44962988dbc4cd8eb', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 41984.80376968497, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08e40032a7812a1770eb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T13:40:42.000Z'}}, {'blockNum': '0xb06d95', 'uniqueId': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc:log:179', 'hash': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 20954.836775318676, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x046ff6c73fab39b7ca10', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T14:07:48.000Z'}}, {'blockNum': '0xb06d95', 'uniqueId': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc:log:180', 'hash': '0x7d54f4832bf80e7bdf120ca19ef0ca2ca2da70ce464eea408ddca931e3f5b4cc', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 20954.8359520322, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x046ff6c452e4e7c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T14:07:48.000Z'}}, {'blockNum': '0xb06f67', 'uniqueId': '0x0d3d3f167e21dfcb07398c592d58bbc9dcef6a642703c29e30facedd43313cd8:log:233', 'hash': '0x0d3d3f167e21dfcb07398c592d58bbc9dcef6a642703c29e30facedd43313cd8', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T15:51:03.000Z'}}, {'blockNum': '0xb06f83', 'uniqueId': '0xe35a04ecfe7d87e1168f8d110b781d3f701dd3b655ecdbefd62ddf1bbd5376e0:log:60', 'hash': '0xe35a04ecfe7d87e1168f8d110b781d3f701dd3b655ecdbefd62ddf1bbd5376e0', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 140000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1da56a4b0835bf800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:00:38.000Z'}}, {'blockNum': '0xb07076', 'uniqueId': '0x7fc1b3ecd48c0ba53f47197ff0d4eb89b8885d650c8b7eb3e74c88da066ead1e:log:88', 'hash': '0x7fc1b3ecd48c0ba53f47197ff0d4eb89b8885d650c8b7eb3e74c88da066ead1e', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 32843.69407889556, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06f475d137680a7d8339', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:30.000Z'}}, {'blockNum': '0xb07078', 'uniqueId': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc:log:94', 'hash': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 25732.384259344133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0572f4918bdbcc3dad48', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:59.000Z'}}, {'blockNum': '0xb07078', 'uniqueId': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc:log:95', 'hash': '0x72dbaead5d42cf37be6d4e3254cff79b8441617d7744a1b8145e85cb6810cfdc', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 25732.383010734346, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0572f48d1c412d800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:52:59.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0xde064d44427b04772fbc6242f25c0d690dc91d8f356c7fc97607b4b563f7b1fd:log:7', 'hash': '0xde064d44427b04772fbc6242f25c0d690dc91d8f356c7fc97607b4b563f7b1fd', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 45336.95216870385, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0999b89a1ff80484e7ac', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa:log:14', 'hash': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 35552.304501192295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07874b5683a6f815d8f1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb0707c', 'uniqueId': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa:log:15', 'hash': '0x414c18c15a4edac05197a3cfe028e420fd03d50b443fbf0115e9f1d611437afa', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 35552.304501192295, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07874b5683a6f815d8f1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:53:49.000Z'}}, {'blockNum': '0xb07083', 'uniqueId': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d:log:309', 'hash': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:25.000Z'}}, {'blockNum': '0xb07083', 'uniqueId': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d:log:310', 'hash': '0xa47f651c69ada1d9fed65065b02e01566b29b59039c891b4cc3ed97767b46a7d', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:25.000Z'}}, {'blockNum': '0xb07085', 'uniqueId': '0xb7b24216f8194d799b442930e5d157a9e50bef165c9641c4d1f84595a182983b:log:143', 'hash': '0xb7b24216f8194d799b442930e5d157a9e50bef165c9641c4d1f84595a182983b', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:55:35.000Z'}}, {'blockNum': '0xb07088', 'uniqueId': '0x2eb8e3627eddd10d74f1f4da15d9d9c0ae14d03552a3f37b4d27ee7c6b44dce4:log:61', 'hash': '0x2eb8e3627eddd10d74f1f4da15d9d9c0ae14d03552a3f37b4d27ee7c6b44dce4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 12499.909064288897, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a59f15ea9d39290f9d', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T16:56:20.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081:log:7', 'hash': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 374743.80349516025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcb91564dc0a4c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081:log:8', 'hash': '0x24789bad5b2b18ffba8f636bba1d67ea0d73ff1dfe0950eb2e4d0e6748258081', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 374743.80349516025, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcb91564dc0a4c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210:log:11', 'hash': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xfe7f0897239ce9cc6645d9323e6fe428591b821c', 'value': 78979.55866239427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x10b97d8e67cfcf57e8fd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210:log:17', 'hash': '0xb3db2a968c7940bc1553608a28951dcee9f260beb8108b402e9e134c98188210', 'from': '0xfe7f0897239ce9cc6645d9323e6fe428591b821c', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 78979.55866239427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x10b97d8e67cfcf57e8fd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xdfbd384ad1e0c29b856f35f18e7891887488e9d84bccbb8b22a25ae7db398a22:log:72', 'hash': '0xdfbd384ad1e0c29b856f35f18e7891887488e9d84bccbb8b22a25ae7db398a22', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 11179.942543947493, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x025e10decdd89344a4bd', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07094', 'uniqueId': '0xaa89b82a4783e661e56df4ceaf1f9ef6d90e9d9b538e53d3eb3c465fdbd50dc1:log:185', 'hash': '0xaa89b82a4783e661e56df4ceaf1f9ef6d90e9d9b538e53d3eb3c465fdbd50dc1', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 27790.868296863675, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05e28bc5f1aab04ac588', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:00:10.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xf01029d76553f7294f294c02ee8aa8c7693b9356681d1ead15f845ab381eeae4:log:16', 'hash': '0xf01029d76553f7294f294c02ee8aa8c7693b9356681d1ead15f845ab381eeae4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x97f0b8d84194f1b1c57655e0dcc8ee6af1d6248d', 'value': 18207.23707430216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03db042c35005ea598a4', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09:log:23', 'hash': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 26178.254195504018, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x058b2041c479d0481c04', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09:log:24', 'hash': '0xfe39ead4c314f0628a0f83ded4783a577b82cf5f84af3072dc0c7052650e4b09', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 26178.25286121645, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x058b203d06f2c7c00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0x2acd2f5eacfe3edd1cd924fe44a5b1edd08807e86eb24bd79854e563a07267f4:log:84', 'hash': '0x2acd2f5eacfe3edd1cd924fe44a5b1edd08807e86eb24bd79854e563a07267f4', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 88444.99698166132, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x12ba9ce69924c2542f8e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b:log:91', 'hash': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'value': 101702.17356914104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1589492f33ecace102dc', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b:log:92', 'hash': '0xe41130186c204b20fe46f81653b3356b2c4e1965b510b23c4a5d6fd988d7905b', 'from': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 101702.17356914104, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1589492f33ecace102dc', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07095', 'uniqueId': '0x78a18ccccee32349fa5453e5e4113813e9ffdaadffdb99395b4079ec41d3291e:log:335', 'hash': '0x78a18ccccee32349fa5453e5e4113813e9ffdaadffdb99395b4079ec41d3291e', 'from': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 61181.11887644872, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cf4a295eaab783fb64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:32.000Z'}}, {'blockNum': '0xb07098', 'uniqueId': '0x48583e3f53f32a87c8462e2bddedd9939e2c96821671c3f2865432c7a1bc3401:log:142', 'hash': '0x48583e3f53f32a87c8462e2bddedd9939e2c96821671c3f2865432c7a1bc3401', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x639fc46a3cd1c1deff7f123f651350712e8e2b5a', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:01:51.000Z'}}, {'blockNum': '0xb07099', 'uniqueId': '0x5902cb2c417688c449b2c9312b5405f2945148c848199ab506c15bae905a69e3:log:0', 'hash': '0x5902cb2c417688c449b2c9312b5405f2945148c848199ab506c15bae905a69e3', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'value': 374743.8035042302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcc1552afcd64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:17.000Z'}}, {'blockNum': '0xb0709b', 'uniqueId': '0x535754ca07b45c5a28e5852ba3f3971698d3cc9ad021655d39b0675d528fb616:log:1', 'hash': '0x535754ca07b45c5a28e5852ba3f3971698d3cc9ad021655d39b0675d528fb616', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:40.000Z'}}, {'blockNum': '0xb0709b', 'uniqueId': '0xab3acf638f62a5166e4c4f294ad8da3292a1371dbb943654f2409c855d0d4f4b:log:56', 'hash': '0xab3acf638f62a5166e4c4f294ad8da3292a1371dbb943654f2409c855d0d4f4b', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 11830.020825450492, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02814e84ce9c51ff432d', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:40.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x746ef6db20e3e1e4ef660e790053757afb1a7e5d7e2e71e489ab6bc0403bd1f3:log:11', 'hash': '0x746ef6db20e3e1e4ef660e790053757afb1a7e5d7e2e71e489ab6bc0403bd1f3', 'from': '0xc191637e72c59c2060e73e89b6e26e64204d8105', 'to': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c:log:305', 'hash': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 21507.8676843016, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x048df19fb94e342f2641', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709c', 'uniqueId': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c:log:306', 'hash': '0x10b6e2a8b51219e8eaa817d3d361621bac5e47d897d0464ed1fd385750d2943c', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 21507.866779279437, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x048df19c82314fc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:02:51.000Z'}}, {'blockNum': '0xb0709d', 'uniqueId': '0xe5b6e409159c9a547c63bf05ff540769de7122be00fb63802ec6d9b3d5977392:log:17', 'hash': '0xe5b6e409159c9a547c63bf05ff540769de7122be00fb63802ec6d9b3d5977392', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x61fd0d043d519f5a2bd05785000f30db96809429', 'value': 16638.047790046825, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e471f3a1f7', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:00.000Z'}}, {'blockNum': '0xb0709d', 'uniqueId': '0x50b7ab79dd533e1d7c0fa5af577b83cbaecbd7704d5a7402342ab09b8972dc9b:log:264', 'hash': '0x50b7ab79dd533e1d7c0fa5af577b83cbaecbd7704d5a7402342ab09b8972dc9b', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xb4fee33a0edef5a7fb0da42a9b8fe3b4f73dfb8b', 'value': 22863.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d773f85871ae58a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:00.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x70f520061e1187cfb90a9efa3fb4ff0423d747460fc7376351aab05a69a33a46:log:43', 'hash': '0x70f520061e1187cfb90a9efa3fb4ff0423d747460fc7376351aab05a69a33a46', 'from': '0x639fc46a3cd1c1deff7f123f651350712e8e2b5a', 'to': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880:log:160', 'hash': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880:log:161', 'hash': '0x0f57603dd2b3b050a80c354c92332ddd9db5829ed9785035edeed3422550d880', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x78b566c3611eb6de644439ad72f1755b859499fb', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3:log:164', 'hash': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 38478.786317350125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0825f06e7e48573c4117', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb0709e', 'uniqueId': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3:log:170', 'hash': '0x4b0db0e5ddc10245c54b60999430c7e71ec4856010a2642d048626a3277d19f3', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 38478.786317350125, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0825f06e7e48573c4117', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:03:30.000Z'}}, {'blockNum': '0xb070a1', 'uniqueId': '0x6d1d097e7747a19c77855d4463ec4012328ce1554958086d96366f0f59af38b6:log:19', 'hash': '0x6d1d097e7747a19c77855d4463ec4012328ce1554958086d96366f0f59af38b6', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 59036.44045169382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c805f318a5937d6d141', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:04.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:242', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 47331.97522324073, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a05df1bd1fc266ccf54', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:249', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 96595.32833061428, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1474717844b5cab574e8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:250', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797:log:252', 'hash': '0x03c5ab78909605a943c586a0199cda07d3077488be64509ce245840848570797', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0xfe744aef67324ccb15819206c3d91f2e58d53e4e', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598:log:265', 'hash': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'value': 41615.53925688159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cffb9f918e9ec99265', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a2', 'uniqueId': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598:log:266', 'hash': '0x40a8c04ce08c1316dd7e478b0f5bedd5ab1e9be17de18a11e8c23020d8f64598', 'from': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 41615.53925688159, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cffb9f918e9ec99265', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:42.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x3c82755756bb035bcdc3f6ab445f79153beee4b0017d0257d539f75943f1af80:log:22', 'hash': '0x3c82755756bb035bcdc3f6ab445f79153beee4b0017d0257d539f75943f1af80', 'from': '0x61fd0d043d519f5a2bd05785000f30db96809429', 'to': '0x94b521f9ee971ac9b8f158ce6e25ff06d6b6c7df', 'value': 16638.0477900468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e470883400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29:log:239', 'hash': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29', 'from': '0xf81521e83369fd9b661b804ba342993b2bcef430', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 2333.156600233402, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x7e7b0d5e519dfe3780', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a5', 'uniqueId': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29:log:241', 'hash': '0x8b0b2ad9e3cbf769c5807e4cc74f64374eda9f148ca273d7e4d9822e37d76e29', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 2333.1523688657467, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x7e7afe55e98ffc0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:04:59.000Z'}}, {'blockNum': '0xb070a7', 'uniqueId': '0xf57e370cf999fdc57dd35f6e0a1b62802e08084bf2a0032794d686a277042f5b:log:34', 'hash': '0xf57e370cf999fdc57dd35f6e0a1b62802e08084bf2a0032794d686a277042f5b', 'from': '0x78b566c3611eb6de644439ad72f1755b859499fb', 'to': '0x2e4ba6698b2c6549ca554785adb6e58186aff6c6', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:11.000Z'}}, {'blockNum': '0xb070a7', 'uniqueId': '0x6e10470cf2c38062ae9eaea6d12612db91d162a236584540f066c25bcbc67c8b:log:38', 'hash': '0x6e10470cf2c38062ae9eaea6d12612db91d162a236584540f066c25bcbc67c8b', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0x9cb1f0bc01da8beac4d9cb13933e5b6742dea2dc', 'value': 59036.44045169382, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c805f318a5937d6d141', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:11.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x4a0cd84d82083dd03e26c398b233d4b0a2637342880dbb43e9121d66875d5125:log:61', 'hash': '0x4a0cd84d82083dd03e26c398b233d4b0a2637342880dbb43e9121d66875d5125', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 21978.707620276513, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04a777d73475309e8ac1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67:log:68', 'hash': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 26286.437447768243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0590fd99e33b0fd9e109', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67:log:69', 'hash': '0x0f8b693f45e3d5fefb5b5f427f8b48a9a1ada40b7746cfefb02a4c2788a64f67', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 26286.437447768243, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0590fd99e33b0fd9e109', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070a8', 'uniqueId': '0xb385af39dd61b0e1d3c3abea8ab107bb6ac1ce98a4468ad8a2e432ab9d1dcd05:log:95', 'hash': '0xb385af39dd61b0e1d3c3abea8ab107bb6ac1ce98a4468ad8a2e432ab9d1dcd05', 'from': '0xfe744aef67324ccb15819206c3d91f2e58d53e4e', 'to': '0xf6e8eb93a97aaaf8b16c82f50223045def46d196', 'value': 143927.30355385502, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1e7a509416b1f122443c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:05:30.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0xb33dcefaa82b528a18bf08836317b19e4c8c07c6371c95ac1c6d295b2eb9ca90:log:39', 'hash': '0xb33dcefaa82b528a18bf08836317b19e4c8c07c6371c95ac1c6d295b2eb9ca90', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 44125.16523853139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x095807ae1f4c9df105a5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e:log:46', 'hash': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'value': 35447.41641643528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07819bb92e495eadec9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e:log:47', 'hash': '0x3691d43f6e8de1446aa469f16c52b4ba575bad3101687cdcb64f0ec165e7676e', 'from': '0x86debf1adf201883d467cc9b636cc8a8658fb989', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 35447.41641643528, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07819bb92e495eadec9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070ac', 'uniqueId': '0xca2cabd7bc5c07ae8316f92ff384f007adfeae874c659caa77aac6930489a9a9:log:132', 'hash': '0xca2cabd7bc5c07ae8316f92ff384f007adfeae874c659caa77aac6930489a9a9', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x6faa5a80097158dbe98ef3f0136586b3f2857052', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:06:37.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xa385162b082da58de8c72757f56931bceaa77d116d2b52058cba87da05d10caf:log:27', 'hash': '0xa385162b082da58de8c72757f56931bceaa77d116d2b52058cba87da05d10caf', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3:log:35', 'hash': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'value': 32243.752777417754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06d3eff58c566c21cef5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070af', 'uniqueId': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3:log:36', 'hash': '0xf0c8891072cf9f91d9a63b85680a478da58c1b9e521d13c828897c6a6744f3b3', 'from': '0x860bd2dba9cd475a61e6d1b45e16c365f6d78f66', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 32243.752777417754, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x06d3eff58c566c21cef5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:04.000Z'}}, {'blockNum': '0xb070b0', 'uniqueId': '0xe6781c705556ada8299e5e9494d935608a6a8050a6cdf9e2be1a7ae232b744fc:log:120', 'hash': '0xe6781c705556ada8299e5e9494d935608a6a8050a6cdf9e2be1a7ae232b744fc', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:09.000Z'}}, {'blockNum': '0xb070b1', 'uniqueId': '0x0bbd25e0aa999cd6b65e8fc0dc983714db103a097226f7cae3a6233059b724be:log:35', 'hash': '0x0bbd25e0aa999cd6b65e8fc0dc983714db103a097226f7cae3a6233059b724be', 'from': '0x6faa5a80097158dbe98ef3f0136586b3f2857052', 'to': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:43.000Z'}}, {'blockNum': '0xb070b1', 'uniqueId': '0x816479eba873edbe7180415bfda935d7cf0f05fcd5ed8b10f01b779708d99cc8:log:192', 'hash': '0x816479eba873edbe7180415bfda935d7cf0f05fcd5ed8b10f01b779708d99cc8', 'from': '0x94b521f9ee971ac9b8f158ce6e25ff06d6b6c7df', 'to': '0x0211f3cedbef3143223d3acf0e589747933e8527', 'value': 16638.0477900468, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0385f34bf8e470883400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:43.000Z'}}, {'blockNum': '0xb070b2', 'uniqueId': '0x1c1cc36598e967a0e2cc2a7c8bdb337e917c75060fd205aab72c61e36e511949:log:25', 'hash': '0x1c1cc36598e967a0e2cc2a7c8bdb337e917c75060fd205aab72c61e36e511949', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:07:56.000Z'}}, {'blockNum': '0xb070bc', 'uniqueId': '0x5edd02b6e35e9d33c65b5929e14da80dc574d71fecd59889d22d21bdbb424642:log:151', 'hash': '0x5edd02b6e35e9d33c65b5929e14da80dc574d71fecd59889d22d21bdbb424642', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0xd5d21b9232ab1e6c7622bf2375f0365bc3a6b10d', 'value': 45817.84679395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b3ca5b09bdc3f72c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:10:14.000Z'}}, {'blockNum': '0xb070bd', 'uniqueId': '0xf132bfabeb777ea76a0ce1d5ee118deb2ab06a0ac845ed8ef5ffb6a954fa1ff8:log:283', 'hash': '0xf132bfabeb777ea76a0ce1d5ee118deb2ab06a0ac845ed8ef5ffb6a954fa1ff8', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:10:51.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x94f032c67307de4061954fdd45dedb35030be7ce988acd11510c79e804539a53:log:316', 'hash': '0x94f032c67307de4061954fdd45dedb35030be7ce988acd11510c79e804539a53', 'from': '0xd5d21b9232ab1e6c7622bf2375f0365bc3a6b10d', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 45817.84679395, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b3ca5b09bdc3f72c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2:log:324', 'hash': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'value': 41604.26901791843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cf5f37a2eeb19d19e6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c0', 'uniqueId': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2:log:330', 'hash': '0x0085a0b460596ee83ed50600a53f907335d6e0c329f0356d2cd8be840ea1bbc2', 'from': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 41604.26901791843, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08cf5f37a2eeb19d19e6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:09.000Z'}}, {'blockNum': '0xb070c1', 'uniqueId': '0x8484dc69cd8f52aa2e32a589b492daf9eb2e15dfe93410142e0eed2689be4e9b:log:181', 'hash': '0x8484dc69cd8f52aa2e32a589b492daf9eb2e15dfe93410142e0eed2689be4e9b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:19.000Z'}}, {'blockNum': '0xb070c1', 'uniqueId': '0xef2b2ee229e0daead0b206647728614dd8867678380887c5441b65147afad96a:log:187', 'hash': '0xef2b2ee229e0daead0b206647728614dd8867678380887c5441b65147afad96a', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:19.000Z'}}, {'blockNum': '0xb070c2', 'uniqueId': '0x7d7dbeec8b707dbf5316e9ebbfa179b98125c7dc27a1bcaf97022ccb269c188d:log:230', 'hash': '0x7d7dbeec8b707dbf5316e9ebbfa179b98125c7dc27a1bcaf97022ccb269c188d', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:12:54.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51:log:6', 'hash': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51:log:11', 'hash': '0x18aca929fcf270c5ecccb772541b41d64a12f00126861d44973e5739c754ec51', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 299561.80350423, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x3f6f4724f4a3e3b07c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04:log:22', 'hash': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 45212.07594751183, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0992f398aa6ad1452c19', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04:log:23', 'hash': '0xc39dc1de29c1058309be3a92f4937503c8571499d980739e5e234fc261d10f04', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 45212.071874338406, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0992f38a31e33a000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x9ba48c941388f27f70887109e596c09de6d895c8788aae21095a7afd62f1caad:log:118', 'hash': '0x9ba48c941388f27f70887109e596c09de6d895c8788aae21095a7afd62f1caad', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 24770.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x053ed4e954b99c44a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c5', 'uniqueId': '0x5881d0d427b23db168727a3430d4566d857c1cee62871ec89821a4236119544c:log:119', 'hash': '0x5881d0d427b23db168727a3430d4566d857c1cee62871ec89821a4236119544c', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'value': 58867.44045169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c7735d8edbed317a400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:13:35.000Z'}}, {'blockNum': '0xb070c8', 'uniqueId': '0x098af8b5f794660179c8662f20bf03f3518110c015d60a2875ee97c8f9d89fa4:log:146', 'hash': '0x098af8b5f794660179c8662f20bf03f3518110c015d60a2875ee97c8f9d89fa4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 65006.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dc40601e9edfb7d8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:14:23.000Z'}}, {'blockNum': '0xb070cc', 'uniqueId': '0x3ba52a8956772a550b21332389ec8d23867be96fa597d08f2da2c6e71245c86f:log:69', 'hash': '0x3ba52a8956772a550b21332389ec8d23867be96fa597d08f2da2c6e71245c86f', 'from': '0xf05f2aa4a4f883b2458ead1d082808ec8b371045', 'to': '0x11e0205ce7e4c6dceabf3019a38de4344c69ec06', 'value': 12522.210342336253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a6d493f8d74af59ef8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:35.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xaec9441f8a5c9ffa38bd09a136d5d8317724f10f26887b82baf859642a43bcab:log:101', 'hash': '0xaec9441f8a5c9ffa38bd09a136d5d8317724f10f26887b82baf859642a43bcab', 'from': '0x8ebd10fe696288c6ed1e024064fdf54541aa63e0', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 58867.44045169, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c7735d8edbed317a400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37:log:109', 'hash': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'value': 40718.85917455671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x089f5faff97f501330a2', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37:log:115', 'hash': '0x86bfd817ee5af0c5c1c40bb08abdd0de424383ba2cf6f687e1a3b260fddfbe37', 'from': '0xeb5d3a91b5e721fa251e03bda2c9578e90f30f84', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 40718.85917455671, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x089f5faff97f501330a2', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:187', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:189', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cd', 'uniqueId': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e:log:193', 'hash': '0xbd02177a04ea5c203c73201d4efb545ac8bdfcee3389afcbf61dbb3b7f829e7e', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 47912.98887644, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0a255e4af93a3893f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:15:58.000Z'}}, {'blockNum': '0xb070cf', 'uniqueId': '0xb7f02a1e51e83e308b607b294d7a3cc818adaed69ba5378f280dc23bc3ccd5fc:log:221', 'hash': '0xb7f02a1e51e83e308b607b294d7a3cc818adaed69ba5378f280dc23bc3ccd5fc', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x92818156fb6f4d496ac7d2c97496d6daaee88c21', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:03.000Z'}}, {'blockNum': '0xb070d0', 'uniqueId': '0x8ace6e7e55bc1bdf2c6aac385d38215120aab498f88172437b4b572f26edd0c1:log:226', 'hash': '0x8ace6e7e55bc1bdf2c6aac385d38215120aab498f88172437b4b572f26edd0c1', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xd859ecc3db5bd54d6e670100606f62d03c095436', 'value': 3960.072549134777, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xd6ad0bea131207d4ea', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:12.000Z'}}, {'blockNum': '0xb070d1', 'uniqueId': '0x2d820a43cfd52e533aa9f5c0f88d6284b9990d089616d35f1683de6966e21164:log:59', 'hash': '0x2d820a43cfd52e533aa9f5c0f88d6284b9990d089616d35f1683de6966e21164', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:16:18.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:1', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65006.759, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dc40601e9edfb7d8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:3', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 22752.36565, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d16880ab79b19f2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d3', 'uniqueId': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be:log:10', 'hash': '0x1b6448fa2e91bb40523563c974042f1a9578911063a10b0b42bfb43799d124be', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 42254.39335, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08f29d813e7449de6000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:00.000Z'}}, {'blockNum': '0xb070d7', 'uniqueId': '0x24bec413f41fa5b9d06d7f6979eb9ea14db853c7b5bba66e202c3dd5fc61838d:log:137', 'hash': '0x24bec413f41fa5b9d06d7f6979eb9ea14db853c7b5bba66e202c3dd5fc61838d', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x597cb045431f8da34e0ba935d0083e24710e5d62', 'value': 173487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x24bcc28c896b9c700000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:33.000Z'}}, {'blockNum': '0xb070d7', 'uniqueId': '0xbcdd861946ecfa86e19036916830f98fe5e360f49f0b26f2b17385435055730c:log:145', 'hash': '0xbcdd861946ecfa86e19036916830f98fe5e360f49f0b26f2b17385435055730c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:17:33.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972:log:0', 'hash': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972', 'from': '0x7565b9c674332512cb45c9c8df26323ab3b5bc66', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972:log:5', 'hash': '0x889724d90b1d3deff11553e65756e49e9ea1cf1822a06e8a6162adb17d464972', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 306601.3286, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x40ece42e0e3d96358000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764:log:13', 'hash': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'value': 63950.222731398106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d8abf9f0f67beaad9de', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070da', 'uniqueId': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764:log:14', 'hash': '0xd8dd3f05f6757e4b16d8919bb69f68eb77f04ec1cbae389a1d2dccd1afa5c764', 'from': '0x00000000000017c75025d397b91d284bbe8fc7f2', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 63950.222731398106, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d8abf9f0f67beaad9de', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:15.000Z'}}, {'blockNum': '0xb070dc', 'uniqueId': '0xbe4bdfed166a5dbd31bcb2bac441e20a4baa71268c26d48626fc173f9580fc4e:log:48', 'hash': '0xbe4bdfed166a5dbd31bcb2bac441e20a4baa71268c26d48626fc173f9580fc4e', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 28191.09682218131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05f83e0f4cf10876b0ad', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:19:50.000Z'}}, {'blockNum': '0xb070dd', 'uniqueId': '0x5b6d5d054d5033f7f6c92ed668dafb755eb82a8bb01078ad79efceeb36e80978:log:19', 'hash': '0x5b6d5d054d5033f7f6c92ed668dafb755eb82a8bb01078ad79efceeb36e80978', 'from': '0x92818156fb6f4d496ac7d2c97496d6daaee88c21', 'to': '0x672c890388d818c77b407606faa7b5abbe8c7313', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:01.000Z'}}, {'blockNum': '0xb070de', 'uniqueId': '0x17a31ccb257257331e6dec79f83216e0b41579edddd063dfc5f4bd7c7be6e82d:log:52', 'hash': '0x17a31ccb257257331e6dec79f83216e0b41579edddd063dfc5f4bd7c7be6e82d', 'from': '0x597cb045431f8da34e0ba935d0083e24710e5d62', 'to': '0x5655fc94e524636d846bf64e287f24830666b603', 'value': 173487.2, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x24bcc28c896b9c700000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:09.000Z'}}, {'blockNum': '0xb070de', 'uniqueId': '0xe7ad7eb476328dbc058cf9488e6f5775ef63bd81b86a4c61f8c82621d6f5e949:log:230', 'hash': '0xe7ad7eb476328dbc058cf9488e6f5775ef63bd81b86a4c61f8c82621d6f5e949', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 24770.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x053ed4e954b99c44a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:09.000Z'}}, {'blockNum': '0xb070df', 'uniqueId': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005:log:41', 'hash': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 65419.64483571896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dda67f311f3fe6f24b1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:54.000Z'}}, {'blockNum': '0xb070df', 'uniqueId': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005:log:42', 'hash': '0x1594a7f900039d859b6c365320ec7dec85e59b765fd8ea901637440041bde005', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 65419.64483571896, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0dda67f311f3fe6f24b1', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:20:54.000Z'}}, {'blockNum': '0xb070e6', 'uniqueId': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d:log:182', 'hash': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 63894.824060845305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d87becf720d5e3e0599', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:21:55.000Z'}}, {'blockNum': '0xb070e6', 'uniqueId': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d:log:183', 'hash': '0x54dbcf8da5f04e998e78c4ad37a58666433b5e02c0b54fe6213884900af7bf4d', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 63894.824060845305, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d87becf720d5e3e0599', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:21:55.000Z'}}, {'blockNum': '0xb07100', 'uniqueId': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf:log:88', 'hash': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf', 'from': '0x2ce5c5197b4605faf0cf1d1c3f9cf58fbd5db77d', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 45753.70145139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b05029008a1f6b6c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:27:53.000Z'}}, {'blockNum': '0xb07100', 'uniqueId': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf:log:90', 'hash': '0xdece272dcb2ece7926dda01a9316191748f1aa4047ac4325519ab4e824656fcf', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 45753.70145139, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09b05029008a1f6b6c00', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:27:53.000Z'}}, {'blockNum': '0xb07108', 'uniqueId': '0x3907760f75742b122c224680ec3256fdeeda9248ba14eef8274a0c5ae6b91524:log:81', 'hash': '0x3907760f75742b122c224680ec3256fdeeda9248ba14eef8274a0c5ae6b91524', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 33649.52020544156, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x072024e6b80cd97d04f5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:28:47.000Z'}}, {'blockNum': '0xb0710a', 'uniqueId': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351:log:200', 'hash': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 19178.027247771606, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x040fa497bc4e1cd11db0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:29:05.000Z'}}, {'blockNum': '0xb0710a', 'uniqueId': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351:log:201', 'hash': '0xc89e04b8df87a9285943f7fe173220d27274c9e0234df22606931d52ff6d1351', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 19178.026527283888, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x040fa4952d067e800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:29:05.000Z'}}, {'blockNum': '0xb0710f', 'uniqueId': '0xea8231350efacd7ae535ac23dd1f57c2e9a75bf802c8739658f28ca511e11456:log:128', 'hash': '0xea8231350efacd7ae535ac23dd1f57c2e9a75bf802c8739658f28ca511e11456', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xdd75cd55c1367b3d2d928c6181eea46999d24a72', 'value': 26478.493994819706, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x059b66ebcf36fe7d194e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:08.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xbd3212208c096fd18bc1604f1e74381cb26db2296afc9f0eb00972854e6b58d8:log:124', 'hash': '0xbd3212208c096fd18bc1604f1e74381cb26db2296afc9f0eb00972854e6b58d8', 'from': '0x11e0205ce7e4c6dceabf3019a38de4344c69ec06', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 12522.210342336253, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a6d493f8d74af59ef8', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xb81e4d1f5432e2b7c1b4699358d64f97a874ab4f52544a030454a1d6856c9fa4:log:125', 'hash': '0xb81e4d1f5432e2b7c1b4699358d64f97a874ab4f52544a030454a1d6856c9fa4', 'from': '0xa79aad710199b16f1aa2845b2ae76d94ab4213ac', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 130101.01059426, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b8cca37f6c877a94800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xfd52af0604358a430ce2eeb0600d664520691f372fd5fa25d0d64ba545ba4caf:log:127', 'hash': '0xfd52af0604358a430ce2eeb0600d664520691f372fd5fa25d0d64ba545ba4caf', 'from': '0xf6cdd9b34d0fc01f47caa2a08292d74ffd7df22a', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 374743.8035042302, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x4f5ae6fcc1552afcd64c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x182c07a719870fcfb997ff2294d777b356a780363f92df0076a9e2b1b4ca0d69:log:129', 'hash': '0x182c07a719870fcfb997ff2294d777b356a780363f92df0076a9e2b1b4ca0d69', 'from': '0x672c890388d818c77b407606faa7b5abbe8c7313', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 27225.48126612, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05c3e573b4c116cbd000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xd6f3727c5f7083e2218d0b58402054d360394b0c45b9ae79b30746cd56205751:log:131', 'hash': '0xd6f3727c5f7083e2218d0b58402054d360394b0c45b9ae79b30746cd56205751', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 400000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x54b40b1f852bda000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x5af9247d670f382fee5c3f00c5e54a900341abb2af889921f8f19b47ab8c3c71:log:135', 'hash': '0x5af9247d670f382fee5c3f00c5e54a900341abb2af889921f8f19b47ab8c3c71', 'from': '0x2e4ba6698b2c6549ca554785adb6e58186aff6c6', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 317988.5568706787, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x435631b7b24d3d474bb6', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0x5335adfd68da59fba3e5f89921184aeafe7a99bd0101a32d926358daf4a7e8a8:log:136', 'hash': '0x5335adfd68da59fba3e5f89921184aeafe7a99bd0101a32d926358daf4a7e8a8', 'from': '0x591c9304c2ceca8b4e8a6ce97d30dbe5d4dd640b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 40265.38825538779, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0886ca83a31ae6dbcd35', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07111', 'uniqueId': '0xaee7eea28fe7b4c9bf8dcf614cde2c47d7b83ce3eb8264d9ba17fdcb0c5c14f8:log:138', 'hash': '0xaee7eea28fe7b4c9bf8dcf614cde2c47d7b83ce3eb8264d9ba17fdcb0c5c14f8', 'from': '0xd001717bf6efa603787424902d54daf1a19c06ca', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 42825.15072105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x09118e5ac36c0cf08400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:30:28.000Z'}}, {'blockNum': '0xb07112', 'uniqueId': '0x200183da79ae67572a75d5a9a942fe7ea3a26ed6de62bc21716667a47f588ce7:log:162', 'hash': '0x200183da79ae67572a75d5a9a942fe7ea3a26ed6de62bc21716667a47f588ce7', 'from': '0x924cd9b60f4173dcdd5254ddd38c4f9cab68fe6b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 36914.333, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07d12147cafb47bc8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:06.000Z'}}, {'blockNum': '0xb07113', 'uniqueId': '0xdfae12e1c25aac5fa4f56b96242f812fa46ae33166b2528abdc48e0440756b71:log:54', 'hash': '0xdfae12e1c25aac5fa4f56b96242f812fa46ae33166b2528abdc48e0440756b71', 'from': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'to': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:13.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3:log:60', 'hash': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3', 'from': '0x7d7a48a2d34450ecd084a89ff9055bed8faeb2ae', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3:log:62', 'hash': '0x9585140beb29a5e7212d69e3d5116891054f6159aba69824b5021370b5ffcae3', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 14442.32035784, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x030eeb7516c3459e2000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6:log:116', 'hash': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 21028.194797765216, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0473f0d34c6aa0e97896', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07114', 'uniqueId': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6:log:117', 'hash': '0x4fc356d8413ed376de0081a7ebbcd5d6c8ec7f6429fc05d05dd86551fc3c7ad6', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 21028.193931490907, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0473f0d0388b6c400000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:40.000Z'}}, {'blockNum': '0xb07115', 'uniqueId': '0x49003ef73afbb2762b674bfbee7c7fb1d5edecdc6c966838637c46533fa4b147:log:65', 'hash': '0x49003ef73afbb2762b674bfbee7c7fb1d5edecdc6c966838637c46533fa4b147', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 12499.841773292255, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a59e26d9cf29accd6a', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:31:47.000Z'}}, {'blockNum': '0xb07119', 'uniqueId': '0xad77eb98320b1428d8b8cc80a7635980dbb8adacd738de0f73484b6b7dcf141c:log:304', 'hash': '0xad77eb98320b1428d8b8cc80a7635980dbb8adacd738de0f73484b6b7dcf141c', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:06.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:10', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 129314.46889656427, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x1b6226c284015cad2a4a', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:12', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 38794.34066896928, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x08370ba0c1339bcd8caf', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb0711a', 'uniqueId': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c:log:19', 'hash': '0x31778b4bef343eaf90166758fb9b2dbf265ea44e60e30a6568677e04d5d09f5c', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 90520.12822759499, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x132b1b21c2cdc0df9d9b', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:32:27.000Z'}}, {'blockNum': '0xb07120', 'uniqueId': '0x96b79000261b5a8235ecfe6a60658ac5a2b73ec4770509905787e03712b884e2:log:224', 'hash': '0x96b79000261b5a8235ecfe6a60658ac5a2b73ec4770509905787e03712b884e2', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x50490a0beb4fa6505025d08cd51f6e1bedb7f3a7', 'value': 17510.051400537875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03b538c7208f931d9a1c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:33:16.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x98fd72652d7da886769bb4fe89e2a6f6dd585ade334cd2eca796350fcbc15080:log:254', 'hash': '0x98fd72652d7da886769bb4fe89e2a6f6dd585ade334cd2eca796350fcbc15080', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xeaebc5aa6dc6309a91cb8aebb434668b2412b6de', 'value': 25691.540293606475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0570bdbea16bb8ccdb14', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942:log:261', 'hash': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0xb8db34f834e9df42f2002ceb7b829dad89d08e14', 'value': 22467.90133903241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04c1fcc46bce8e1d0943', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb07129', 'uniqueId': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942:log:263', 'hash': '0x5f9677e4f4a8c7a2d6cd9e557aeb1d9c9673cf0ad8d2449ef35882a293ec3942', 'from': '0xb8db34f834e9df42f2002ceb7b829dad89d08e14', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 22467.90133903241, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04c1fcc46bce8e1d0943', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:34:53.000Z'}}, {'blockNum': '0xb0715d', 'uniqueId': '0x6e4a8bbf08de75320a78654cf112432c6500c9aedfef1e008d1e8d1b5631b350:log:293', 'hash': '0x6e4a8bbf08de75320a78654cf112432c6500c9aedfef1e008d1e8d1b5631b350', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:46:03.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x1a74605f5105b7c510d3c5aec91ade539b05cbd297c8840e65463b12974583aa:log:119', 'hash': '0x1a74605f5105b7c510d3c5aec91ade539b05cbd297c8840e65463b12974583aa', 'from': '0x50490a0beb4fa6505025d08cd51f6e1bedb7f3a7', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 17510.051400537875, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03b538c7208f931d9a1c', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35:log:128', 'hash': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'value': 17358.283368010663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03acfe92c3142ebef7c0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb07166', 'uniqueId': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35:log:132', 'hash': '0x4b21ef06aed07a591875353690e11a9ba40bdf15afe2725776b5873f59fb0e35', 'from': '0x4f92e5038e400383d5827681ef9951e7f3beb33d', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 17358.283368010663, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03acfe92c3142ebef7c0', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:47:53.000Z'}}, {'blockNum': '0xb0716e', 'uniqueId': '0x68faa4d2bc0632a10f6e01c9a4c3a39bec8dca121ca3ee45c8ff6ad8cbd3098e:log:13', 'hash': '0x68faa4d2bc0632a10f6e01c9a4c3a39bec8dca121ca3ee45c8ff6ad8cbd3098e', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:48:56.000Z'}}, {'blockNum': '0xb07171', 'uniqueId': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01:log:24', 'hash': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:50:08.000Z'}}, {'blockNum': '0xb07171', 'uniqueId': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01:log:29', 'hash': '0x11422b45ecfab78ed26c4ced0685417257e1dd89bee9337f50975a344bbffb01', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 56174.98825538, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0be540912e6cb13cc800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:50:08.000Z'}}, {'blockNum': '0xb0717a', 'uniqueId': '0x1114f74a81757b9b51532ecd3e442a101ae4fa5928a4149e4966fad75b8d4b86:log:126', 'hash': '0x1114f74a81757b9b51532ecd3e442a101ae4fa5928a4149e4966fad75b8d4b86', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:51:24.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0xcf6dc6b2381cd1a970d5d2da7114fe5651776c43cbb3850a055ae044c68b2bc7:log:24', 'hash': '0xcf6dc6b2381cd1a970d5d2da7114fe5651776c43cbb3850a055ae044c68b2bc7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0x2d3fd09426a96b354c9a5396b0230deeca2424065fc0d88ac49567278e0c46ae:log:25', 'hash': '0x2d3fd09426a96b354c9a5396b0230deeca2424065fc0d88ac49567278e0c46ae', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 36703.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07c5b1ff3d0d70440000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07180', 'uniqueId': '0x2499ab99ed39169fc932073f01030a29f92a3e462fe616898fbb2fce86a3b848:log:26', 'hash': '0x2499ab99ed39169fc932073f01030a29f92a3e462fe616898fbb2fce86a3b848', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'value': 24832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce4000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:52:55.000Z'}}, {'blockNum': '0xb07184', 'uniqueId': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900:log:106', 'hash': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:54:06.000Z'}}, {'blockNum': '0xb07184', 'uniqueId': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900:log:111', 'hash': '0xe23762cea816b6398a5454882cf16687b6170953449d44fc6069453add579900', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 57027.746, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c137af5490d639d0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:54:06.000Z'}}, {'blockNum': '0xb07187', 'uniqueId': '0x98544ee0f200eea4e9ed6ded50041b2ad2e2b0d4686c8d0230c23d4014c76e68:log:58', 'hash': '0x98544ee0f200eea4e9ed6ded50041b2ad2e2b0d4686c8d0230c23d4014c76e68', 'from': '0x5adcc957cc8611c90059ed8ae5cbd101016b28ec', 'to': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'value': 24832, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0542253a126ce4000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:55:25.000Z'}}, {'blockNum': '0xb0718b', 'uniqueId': '0x63f98776d808a02d3c68e7c1fd3643db205a48be5739b254f3e4aa1669f52a37:log:100', 'hash': '0x63f98776d808a02d3c68e7c1fd3643db205a48be5739b254f3e4aa1669f52a37', 'from': '0x541e0950fad1688bfc02897d7bb66066f5333100', 'to': '0x233c09204a9bd98d2a80c3bf91a0fb37e9a96b16', 'value': 500000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x69e10de76676d0800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:03.000Z'}}, {'blockNum': '0xb07191', 'uniqueId': '0x88dcf35ca8575863106cce7e2dc5b11e167687f347de2acd3f979aeff1a95f6d:log:6', 'hash': '0x88dcf35ca8575863106cce7e2dc5b11e167687f347de2acd3f979aeff1a95f6d', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 36703.4, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07c5b1ff3d0d70440000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:44.000Z'}}, {'blockNum': '0xb07193', 'uniqueId': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784:log:15', 'hash': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'value': 14858.682853402133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03257da5d27e55b42bbb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:56.000Z'}}, {'blockNum': '0xb07193', 'uniqueId': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784:log:21', 'hash': '0x03fde64147a9e4a7655d287142e7190819a19a6a80efedde273655bb370c9784', 'from': '0x000000002605006ff4ad30ac969f0726821ebd7c', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 14858.682853402133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03257da5d27e55b42bbb', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:56:56.000Z'}}, {'blockNum': '0xb07198', 'uniqueId': '0xf8af9784d3705c35bb98caa2233c9b895a39ed55d1ce50740cc846f27798b629:log:24', 'hash': '0xf8af9784d3705c35bb98caa2233c9b895a39ed55d1ce50740cc846f27798b629', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:57:38.000Z'}}, {'blockNum': '0xb0719b', 'uniqueId': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa:log:18', 'hash': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:58:00.000Z'}}, {'blockNum': '0xb0719b', 'uniqueId': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa:log:23', 'hash': '0xf94ac3f70ede32c833214afb0ea3c32f2f3d849e9e4850b5d0d8555da47b00aa', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 58736.036, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0c70163e8924dbaa0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:58:00.000Z'}}, {'blockNum': '0xb071a0', 'uniqueId': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c:log:178', 'hash': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c', 'from': '0x233c09204a9bd98d2a80c3bf91a0fb37e9a96b16', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:59:29.000Z'}}, {'blockNum': '0xb071a0', 'uniqueId': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c:log:183', 'hash': '0xbe5b8c5f039367d2ff77301618a9ffa49fd47f5a22ea8f8c7967b97571e7844c', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 40000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0878678326eac9000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T17:59:29.000Z'}}, {'blockNum': '0xb071a5', 'uniqueId': '0x93f635e6a7e2fc17cd98a585accd70be02c2cd2e193bd679fd66cf124a54bd8e:log:230', 'hash': '0x93f635e6a7e2fc17cd98a585accd70be02c2cd2e193bd679fd66cf124a54bd8e', 'from': '0xb87e0a567891449ebf5cfe94fe6e133329ac183c', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 70000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ed2b525841adfc00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:00:59.000Z'}}, {'blockNum': '0xb071aa', 'uniqueId': '0x4cb9a09cec9ff17841d7d536c610bbbd60d2874313694d46a649d1dc7dc970a2:log:74', 'hash': '0x4cb9a09cec9ff17841d7d536c610bbbd60d2874313694d46a649d1dc7dc970a2', 'from': '0xeaebc5aa6dc6309a91cb8aebb434668b2412b6de', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 25691.540293606475, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0570bdbea16bb8ccdb14', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:02:15.000Z'}}, {'blockNum': '0xb071ee', 'uniqueId': '0xd49d98e356bac6e9afea08bf2f507dd4d4945da8543d779a7ec803131b5c7341:log:90', 'hash': '0xd49d98e356bac6e9afea08bf2f507dd4d4945da8543d779a7ec803131b5c7341', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0xb038c7996493d4818a6df1c9db2b3f835a7f14c5', 'value': 28091.404705658024, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05f2d68dc127b31d0f8f', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:18:42.000Z'}}, {'blockNum': '0xb071f2', 'uniqueId': '0x4442fbf3729f45deca8058432a8acf32e8cc7d8e5205464950f043496557029f:log:19', 'hash': '0x4442fbf3729f45deca8058432a8acf32e8cc7d8e5205464950f043496557029f', 'from': '0x32cd1f7bdae90b87e9b58d25d2ef7b09f6a9b548', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 12500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x02a5a058fc295ed00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:19:26.000Z'}}, {'blockNum': '0xb071f7', 'uniqueId': '0x29d9177a4ba781737dd6b4629fccdc2347c53fdceb814b7886e8b1ec048788da:log:14', 'hash': '0x29d9177a4ba781737dd6b4629fccdc2347c53fdceb814b7886e8b1ec048788da', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 69366.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0eb0580450a6afa20000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:20:43.000Z'}}, {'blockNum': '0xb071f7', 'uniqueId': '0x0a842e7c14245472bd028e853e3634424882fc68162125a33833a2d92adb5588:log:22', 'hash': '0x0a842e7c14245472bd028e853e3634424882fc68162125a33833a2d92adb5588', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'value': 798658, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xa91f5641489035c80000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:20:43.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:25', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 69366.1, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0eb0580450a6afa20000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:27', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 24278.135, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x05241ece4f6d8a458000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb071fb', 'uniqueId': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9:log:34', 'hash': '0x3974086518ad65dc48bf981fac0caa4438ab63d754edb666e649570a2ba14ba9', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 45087.965, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x098c39360139255c8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:21:33.000Z'}}, {'blockNum': '0xb07202', 'uniqueId': '0x74600e4010d71114761714f1910e8bed013117cdd03fc2a30bee1dcd992391c0:log:1', 'hash': '0x74600e4010d71114761714f1910e8bed013117cdd03fc2a30bee1dcd992391c0', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:23:23.000Z'}}, {'blockNum': '0xb07206', 'uniqueId': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0:log:69', 'hash': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:24:03.000Z'}}, {'blockNum': '0xb07206', 'uniqueId': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0:log:74', 'hash': '0xb1abde9914b0c317f5b3db31768393a154fb2ec85f8c94fb04bcc006c36bb9f0', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 69627.9, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0ebe8938c19344e60000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:24:03.000Z'}}, {'blockNum': '0xb0720a', 'uniqueId': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66:log:262', 'hash': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'value': 1938.7009858124068, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x6918e182eb1820f7b5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:25:10.000Z'}}, {'blockNum': '0xb0720a', 'uniqueId': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66:log:263', 'hash': '0xb6d06029115daba6f9ec3b650ca7d2953b53b833b4f1b01db8a5f3c6488b0c66', 'from': '0x0000000000007f150bd6f54c40a34d7c3d5e9f56', 'to': '0xf81521e83369fd9b661b804ba342993b2bcef430', 'value': 1938.7009786893623, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x6918e17c70a1980000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:25:10.000Z'}}, {'blockNum': '0xb0722e', 'uniqueId': '0xabd8e07a1199f6562562f7ae4e0704885e43712fade8af3bf3df51577f75ca8b:log:0', 'hash': '0xabd8e07a1199f6562562f7ae4e0704885e43712fade8af3bf3df51577f75ca8b', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0x8541390869ce254d4470ec3c8a1506d7c38b54e5', 'value': 14803.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03227a6447c5bf2a0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:34:28.000Z'}}, {'blockNum': '0xb0723a', 'uniqueId': '0x142d7a635881d3ea46fe0f319cf5698e1d834d4a3d6e3f2f4cc7ce3659839d05:log:258', 'hash': '0x142d7a635881d3ea46fe0f319cf5698e1d834d4a3d6e3f2f4cc7ce3659839d05', 'from': '0x8541390869ce254d4470ec3c8a1506d7c38b54e5', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 14803.108, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03227a6447c5bf2a0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:36:28.000Z'}}, {'blockNum': '0xb07259', 'uniqueId': '0x343e972e5f789cf612b3dff3c108327e005341e89ef426edef985993ec03c4c7:log:1', 'hash': '0x343e972e5f789cf612b3dff3c108327e005341e89ef426edef985993ec03c4c7', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'value': 83976.0842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x11c85a4707898d368000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:43:10.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:28', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xbcb6de60d4a497a34a0a33c17e084520edbefac5', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 83976.0842, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x11c85a4707898d368000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:30', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 20994.02105, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04721691c1e2634da000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb0725e', 'uniqueId': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922:log:37', 'hash': '0x57a8b55c371bea3612c21207c68d944aa4c40ce8c91920f3c6059124c0d3c922', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 62982.06315, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5643b545a729e8e000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T18:44:08.000Z'}}, {'blockNum': '0xb072c5', 'uniqueId': '0x10904e8533f6dc42eab3961cc88a9f0d70392e88127719138bdb05ffaa122697:log:15', 'hash': '0x10904e8533f6dc42eab3961cc88a9f0d70392e88127719138bdb05ffaa122697', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 397794.289, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x543c78bbe1076e5e8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:06:30.000Z'}}, {'blockNum': '0xb07336', 'uniqueId': '0x5fda6100732dc6638f1b22be81ee258e554de76d10de97514e3f1dd3ff547720:log:18', 'hash': '0x5fda6100732dc6638f1b22be81ee258e554de76d10de97514e3f1dd3ff547720', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 884160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xbb3a68de3f8d5f000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:33:28.000Z'}}, {'blockNum': '0xb07336', 'uniqueId': '0xa832e459a97ff90401e67b9c7adf6adceb25e31380d28e72bce4ebba91ebd8f4:log:19', 'hash': '0xa832e459a97ff90401e67b9c7adf6adceb25e31380d28e72bce4ebba91ebd8f4', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0x564286362092d8e7936f0549571a803b203aaced', 'value': 884160, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xbb3a68de3f8d5f000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:33:28.000Z'}}, {'blockNum': '0xb0735b', 'uniqueId': '0xcf7654001053893082cfcbc8e673a8d2494a274798c095a9f9012f531933617c:log:10', 'hash': '0xcf7654001053893082cfcbc8e673a8d2494a274798c095a9f9012f531933617c', 'from': '0x0681d8db095565fe8a346fa0277bffde9c0edbbf', 'to': '0xa4f59c5fea4f76a09a91e8aa2afc49c328cd8230', 'value': 4709, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0xff4680b6a612740000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T19:42:17.000Z'}}, {'blockNum': '0xb0750d', 'uniqueId': '0x40cb2bb42ed0b0c4a4c3054258551e0d8d7650edf87658caa3b7a7869a1641c1:log:48', 'hash': '0x40cb2bb42ed0b0c4a4c3054258551e0d8d7650edf87658caa3b7a7869a1641c1', 'from': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'to': '0x13edf543ea6e777c51b55b09c2a1d63f118f6dee', 'value': 10669.26445413, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x024261c9c4d8709cf400', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:20:47.000Z'}}, {'blockNum': '0xb07521', 'uniqueId': '0xa05230501dc76af3bc371bf85be59d53005c5d4d5f890abd0e51e7b1764787d8:log:1', 'hash': '0xa05230501dc76af3bc371bf85be59d53005c5d4d5f890abd0e51e7b1764787d8', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:25:47.000Z'}}, {'blockNum': '0xb07523', 'uniqueId': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e:log:198', 'hash': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:26:13.000Z'}}, {'blockNum': '0xb07523', 'uniqueId': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e:log:203', 'hash': '0x855d18b55aae0b6b84544b2c180ab2222e872cfc521f045d2f6394d24b137c0e', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 63382.622, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d6bfa942d79eae30000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:26:13.000Z'}}, {'blockNum': '0xb0754c', 'uniqueId': '0xa3d383ec169ee4e0ae4ff62c91d2b44c7a3bad29738fbb0e5d34f3991653d58e:log:7', 'hash': '0xa3d383ec169ee4e0ae4ff62c91d2b44c7a3bad29738fbb0e5d34f3991653d58e', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xccadda1e00206e7578e0f6e9d6b1b353e814dc43', 'value': 390350.09, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x52a8ebb84395f0410000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:34:43.000Z'}}, {'blockNum': '0xb07563', 'uniqueId': '0x8dbaf47b5af8c1ca4dc9be3db5331f9ec81e8403f28342c57f013e5ed6914339:log:25', 'hash': '0x8dbaf47b5af8c1ca4dc9be3db5331f9ec81e8403f28342c57f013e5ed6914339', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:38:58.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:97', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:99', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 64308.458, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d9e2b22662fd7710000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:100', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 28938.8061, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0620c69c479587594000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb07565', 'uniqueId': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14:log:107', 'hash': '0xc68e5555044dc2b77dd4143a982343b515a53d180c03d66dbd1be1254d1edd14', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 35369.6519, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x077d64861e9a5017c000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:39:24.000Z'}}, {'blockNum': '0xb0757f', 'uniqueId': '0x3f99ed5a27a7e0d7d6b652dfa7aa69a02cc93162d9f66e72f7aa19df8e7eec0b:log:5', 'hash': '0x3f99ed5a27a7e0d7d6b652dfa7aa69a02cc93162d9f66e72f7aa19df8e7eec0b', 'from': '0xd551234ae421e3bcba99a0da6d736074f22192ff', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:46:45.000Z'}}, {'blockNum': '0xb07585', 'uniqueId': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe:log:179', 'hash': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:47:26.000Z'}}, {'blockNum': '0xb07585', 'uniqueId': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe:log:184', 'hash': '0x402f5faac0cdcccd6cc59450c1e45ae0e7db3347728a9c26728ac897506b62fe', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 67791.971, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0e5b0296af3e76c38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:47:26.000Z'}}, {'blockNum': '0xb07588', 'uniqueId': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639:log:252', 'hash': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 837.5136115324192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2d66d61059f85704ec', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:48:03.000Z'}}, {'blockNum': '0xb07588', 'uniqueId': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639:log:255', 'hash': '0xf4f026ca43304c39aff88795736ff2006154a8d711b8a477129b9b399c0f7639', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x63945320845eb2d8208d848c5b528d9a5e4ec33d', 'value': 837.5136115324192, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2d66d61059f85704ec', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:48:03.000Z'}}, {'blockNum': '0xb07599', 'uniqueId': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46:log:136', 'hash': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46', 'from': '0x93972cb878afe60e66d14ad98c779ce9fdc1f356', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:51:56.000Z'}}, {'blockNum': '0xb07599', 'uniqueId': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46:log:138', 'hash': '0x84ab3af7834f797eebd91d8443e3b0e0499e624903dd4395438c073f6a7f7c46', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 200000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x2a5a058fc295ed000000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:51:56.000Z'}}, {'blockNum': '0xb075a0', 'uniqueId': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003:log:131', 'hash': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:00.000Z'}}, {'blockNum': '0xb075a0', 'uniqueId': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003:log:132', 'hash': '0xb43b4ad696b544c69e26a5d70f26881eb0834c46bd47fe1d6d6d69d2a472d003', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:00.000Z'}}, {'blockNum': '0xb075a3', 'uniqueId': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6:log:17', 'hash': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6', 'from': '0x86adc7a944356512c62dfe17356bbf65c43922bb', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:29.000Z'}}, {'blockNum': '0xb075a3', 'uniqueId': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6:log:19', 'hash': '0x73c33c4cbc4e64f8d5716ab0b75efa32ce03b96a22766555de85852245b010c6', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 63131, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0d5e569f41a0718c0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T21:53:29.000Z'}}, {'blockNum': '0xb075c4', 'uniqueId': '0xee120afc7beea5fe015e66152bcbe6633f7f4eacac65211a096cffec31df01b4:log:184', 'hash': '0xee120afc7beea5fe015e66152bcbe6633f7f4eacac65211a096cffec31df01b4', 'from': '0xb4fee33a0edef5a7fb0da42a9b8fe3b4f73dfb8b', 'to': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'value': 22863.87243368, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x04d773f85871ae58a000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T22:00:22.000Z'}}, {'blockNum': '0xb076f0', 'uniqueId': '0x2c75e5d81215ce25312ad865d60c3697e8d6815b8deb8c64c0056a2ebeec4630:log:15', 'hash': '0x2c75e5d81215ce25312ad865d60c3697e8d6815b8deb8c64c0056a2ebeec4630', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:11:29.000Z'}}, {'blockNum': '0xb076f6', 'uniqueId': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9:log:236', 'hash': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:13:02.000Z'}}, {'blockNum': '0xb076f6', 'uniqueId': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9:log:241', 'hash': '0x050fa4856e969015ecc62a84cd78f01d1ea3acdd314a3b1e759cd3859e8f23e9', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 65540.225, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0de0f155de8170068000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:13:02.000Z'}}, {'blockNum': '0xb0770b', 'uniqueId': '0x484f7eddcdc67ff80f81c0d71eba63a312296c9edfb89dcebe7900fdbcef3ee5:log:0', 'hash': '0x484f7eddcdc67ff80f81c0d71eba63a312296c9edfb89dcebe7900fdbcef3ee5', 'from': '0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be', 'to': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:24.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:212', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0xe086a9f63c184a90ac3a9dd62782b082724b45b1', 'to': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:214', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x11111254369792b2ca5d084ab5eea397ca8fa48b', 'to': '0x728bbe9bbee3af78ad611315076621865950b344', 'value': 111347.372, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x179427339a56dc5e0000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:218', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 72375.7918, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0f537fe18ab875a38000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb0770d', 'uniqueId': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9:log:221', 'hash': '0xc5116b9a73e43d0a6f7bef7bd0fa8e14a89d5c2a7a2f63a9e80c07345263a3c9', 'from': '0x728bbe9bbee3af78ad611315076621865950b344', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 38971.5802, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0840a7520f9e66ba8000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:18:56.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:87', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x8a2b589bfd3db6659deda06006e6d65951103360', 'to': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'value': 17186.281028565863, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x03a3ab8fb2a9476509b3', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:89', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0x11ededebf63bef0ea2d2d071bdf88f71543ec6fb', 'value': 150.37995899995133, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0826f0eff699e79aa5', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb07758', 'uniqueId': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9:log:90', 'hash': '0xa72ba065f54e176242526d0f0f9b285dcebf9248d781fe6a98bbc457861926c9', 'from': '0x74de5d4fcbf63e00296fd95d33236b9794016631', 'to': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'value': 17035.901069565913, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x039b849ec2b2ad7d6f0e', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:35:29.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea:log:235', 'hash': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea', 'from': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'to': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea:log:236', 'hash': '0x3292fec94e85918f24415cf1be49685be17b6162e52ee275458f8207e6524bea', 'from': '0x3e66b66fd1d0b02fda6c811da9e0547970db2f21', 'to': '0x0489076a0d17394835af93cd62acff703b6814a9', 'value': 100000, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x152d02c7e14af6800000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79:log:240', 'hash': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79', 'from': '0xfcfe058efa0be5bccfdd45e2c079997935fe0a64', 'to': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'value': 33353.990790631324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07101f9b530fee5c4187', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb077c4', 'uniqueId': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79:log:246', 'hash': '0x1b3a4b11c69bd12915edeeba78e585406171f22d4aa45fcc6ffac8c998fb5a79', 'from': '0x000000000000006f6502b7f2bbac8c30a3f67e9a', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 33353.990790631324, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07101f9b530fee5c4187', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2020-12-31T23:56:09.000Z'}}, {'blockNum': '0xb07819', 'uniqueId': '0xa029bfd55bdef7b354c0a6e9826be2f36eb8a3b7e63561ac92f08caf166d8838:log:23', 'hash': '0xa029bfd55bdef7b354c0a6e9826be2f36eb8a3b7e63561ac92f08caf166d8838', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0xae20a4f057acdd672bb51071d52321d8a7565d1b', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:13:24.000Z'}}, {'blockNum': '0xb07828', 'uniqueId': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4:log:241', 'hash': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4', 'from': '0xae20a4f057acdd672bb51071d52321d8a7565d1b', 'to': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:16:33.000Z'}}, {'blockNum': '0xb07828', 'uniqueId': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4:log:243', 'hash': '0x2f76aa665b61bde8471845a4958d099fcb5216ffbbb50a20cda55ead878d08f4', 'from': '0xa36972e347e538e6c7afb9f44fb10dda7bba9ba2', 'to': '0xe5c405c5578d84c5231d3a9a29ef4374423fa0c2', 'value': 60477.97744718, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x0cce8489be27216f7800', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T00:16:33.000Z'}}, {'blockNum': '0xb079ca', 'uniqueId': '0xdb2d54f076de629c3d9eb0c1a79cc7c8db814293b868495ff806668669abeacb:log:8', 'hash': '0xdb2d54f076de629c3d9eb0c1a79cc7c8db814293b868495ff806668669abeacb', 'from': '0x564286362092d8e7936f0549571a803b203aaced', 'to': '0x44742ce969585e16640cc4bf81308618ed4fec1b', 'value': 7214.977391, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x01871fecde86a5a1f000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T01:48:13.000Z'}}, {'blockNum': '0xb07af2', 'uniqueId': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5:log:161', 'hash': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5', 'from': '0xdfcb9a376701ccfbed3bf9610fdee2e978691f4b', 'to': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'value': 36500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07baab4146b63dd00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T02:47:14.000Z'}}, {'blockNum': '0xb07af2', 'uniqueId': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5:log:166', 'hash': '0x86fa88a4755cbe3f57d97f1f8cce4618c23dcab409e9dd04a1ef9073b63f4fa5', 'from': '0xe069cb01d06ba617bcdf789bf2ff0d5e5ca20c71', 'to': '0x98a48026355cffaacf1dade7928442aa856a5e63', 'value': 36500, 'erc721TokenId': None, 'erc1155Metadata': None, 'tokenId': None, 'asset': 'IDEX', 'category': 'erc20', 'rawContract': {'value': '0x07baab4146b63dd00000', 'address': '0xb705268213d593b8fd88d3fdeff93aff5cbdcfae', 'decimal': '0x12'}, 'metadata': {'blockTimestamp': '2021-01-01T02:47:14.000Z'}}]}}
Number of returned transfers:  250
Answer is complete
No description has been provided for this image
In [ ]:
plot_hourly_quartile_areas_with_mean_median(file_paths)
No description has been provided for this image